Repository: ai-forever/sage Branch: main Commit: b535e48dea44 Files: 110 Total size: 22.6 MB Directory structure: gitextract_397qt1mb/ ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── configs/ │ └── pretrain_fred_xl.yaml ├── data/ │ ├── example_data/ │ │ ├── RUSpellRU/ │ │ │ ├── corrections.txt │ │ │ └── sources.txt │ │ ├── bea60k/ │ │ │ ├── bea_txt/ │ │ │ │ ├── corrections.txt │ │ │ │ └── sources.txt │ │ │ ├── subsample/ │ │ │ │ ├── corrections.txt │ │ │ │ └── sources.txt │ │ │ ├── test.bea60k │ │ │ └── test.bea60k.noise │ │ └── jfleg/ │ │ ├── corrections.txt │ │ └── sources.txt │ └── sanity_check_samples/ │ ├── RUSpellRU/ │ │ ├── corrections.txt │ │ └── sources.txt │ ├── corrected_sents.txt │ ├── corruptor_tests/ │ │ ├── broken_csv_file_columns/ │ │ │ └── data.csv │ │ ├── broken_csv_file_nans/ │ │ │ └── data.csv │ │ ├── broken_csv_file_opening/ │ │ │ └── data.csv │ │ ├── broken_text_files/ │ │ │ ├── corrections.txt │ │ │ └── sources.txt │ │ ├── corrections.txt │ │ ├── csv/ │ │ │ └── data.csv │ │ ├── sources.txt │ │ └── wrong_names/ │ │ ├── corrections_.txt │ │ ├── data_.csv │ │ └── sources_.txt │ └── source_sents.txt ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── conf.py │ ├── index.rst │ └── rst/ │ ├── datasets/ │ │ ├── GitHubTypoCorpusRu.rst │ │ ├── MedSpellchecker.rst │ │ ├── MultidomainGold.rst │ │ └── RUSpellRU.rst │ ├── evaluation/ │ │ ├── RuErrant.rst │ │ └── RuSpellEval.rst │ ├── spelling_correction/ │ │ ├── FredT5-large.rst │ │ ├── M2M100-418M.rst │ │ ├── RuM2M100-1.2B.rst │ │ ├── T5.rst │ │ ├── sage-fredt5-distilled-95m.rst │ │ ├── sage-fredt5-large.rst │ │ ├── sage-m2m100-1.2B.rst │ │ └── sage-mt5-large.rst │ └── spelling_corruption/ │ ├── Augmentex.rst │ └── SBSC.rst ├── notebooks/ │ ├── augmentation_pipeline.ipynb │ ├── text_correction_demo.ipynb │ └── text_corruption_demo.ipynb ├── sage/ │ ├── __init__.py │ ├── evaluation/ │ │ ├── __init__.py │ │ ├── readme.md │ │ ├── ruerrant_wrapper/ │ │ │ ├── __init__.py │ │ │ ├── classifier.py │ │ │ ├── merger.py │ │ │ └── scorer.py │ │ ├── ruspelleval.py │ │ └── scorer.py │ ├── pipeline/ │ │ ├── __init__.py │ │ ├── augmenters.py │ │ ├── config.py │ │ └── pipeline.py │ ├── spelling_correction/ │ │ ├── __init__.py │ │ ├── corrector.py │ │ ├── corruptors/ │ │ │ ├── __init__.py │ │ │ ├── identity.py │ │ │ └── randomchar.py │ │ ├── m2m_correctors.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ └── t5/ │ │ │ ├── __init__.py │ │ │ ├── encoder_task.py │ │ │ ├── multiclass.py │ │ │ ├── multilabel.py │ │ │ └── multilabel_lm.py │ │ ├── t5_correctors.py │ │ └── training/ │ │ ├── __init__.py │ │ ├── data_processor.py │ │ ├── data_utils.py │ │ └── trainer.py │ ├── spelling_corruption/ │ │ ├── __init__.py │ │ ├── configuration_corruptor.py │ │ ├── corruptor.py │ │ └── sbsc/ │ │ ├── __init__.py │ │ ├── base_classes.py │ │ ├── labeler.py │ │ ├── model.py │ │ ├── sbsc.py │ │ └── typings_positions_conditions.py │ └── utils/ │ ├── __init__.py │ ├── data_load_utils.py │ ├── lang_utils.py │ └── utils.py ├── setup.py └── tests/ ├── corruptor_api_unittests.py ├── sbsc_corruptor_unittests.py ├── test_correctors.py ├── test_corruptors.py ├── test_evaluate.py ├── test_metrics.py ├── test_pipeline.py ├── test_ruspelleval.py ├── test_utils.py ├── tests.py └── tests_english.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ venv/ __pycache__ .ipynb_checkpoints sage.egg-info build .DS_Store .idea ================================================ FILE: .gitmodules ================================================ ================================================ FILE: .readthedocs.yaml ================================================ version: "2" build: os: "ubuntu-22.04" tools: python: "3.10" python: install: - requirements: docs/requirements.txt - method: pip path: . sphinx: configuration: docs/source/conf.py ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2023 AI Forever Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================

SAGE

License Release Paper Documentation Status

Spelling correction, corruption and evaluation for multiple languages

Install | Models | Evaluation | SBSC | Augmentex | Papers

SAGE (Spell checking via Augmentation and Generative distribution Emulation) is a complete solution that you need when working on a spelling problem: - 💯 Spelling correction with State-of-the-art pre-trained 🤗Transformer models: - [sage-fredt5-large](https://huggingface.co/ai-forever/sage-fredt5-large) - [sage-fredt5-distilled-95m](https://huggingface.co/ai-forever/sage-fredt5-distilled-95m) - [sage-mt5-large](https://huggingface.co/ai-forever/sage-mt5-large) - [sage-m2m100-1.2B](https://huggingface.co/ai-forever/sage-m2m100-1.2B) - [T5-large](https://huggingface.co/ai-forever/T5-large-spell) - [M2M100-1.2B](https://huggingface.co/ai-forever/RuM2M100-1.2B) [Earlier release] - [M2M100-418M](https://huggingface.co/ai-forever/RuM2M100-418M) [Earlier release] - [FredT5-large](https://huggingface.co/ai-forever/FRED-T5-large-spell) [Earlier release] You can test them out right here [![Try Model Generation In Colab!](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/ai-forever/sage/blob/main/notebooks/text_correction_demo.ipynb) - 🧩 Augment your data with spelling corruption algorithms, take a look at a quick demo [![Try Model Generation In Colab!](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/ai-forever/sage/blob/main/notebooks/text_corruption_demo.ipynb) - 📊 Evaluate performance of spelling correction tools. - 🚂 Finetune your own model based on our open checkpoints [![Try Model Generation In Colab!](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1JBezk_Cxy8rgclsjl3otY_gaCgZC3G7F?usp=sharing) ## News 🔥 **[2024-01-18]**: Our paper *"A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages"* is accepted for EACL 2024 conference! 💥 **[2024-04-11]**: SAGE v1.1.0 is finally out: a comprehensive note about the details of release can be found [here](https://habr.com/ru/companies/sberdevices/articles/806897/). ## Table of contents - [Installation](#installation) - [Regular install](#regular-install) - [Editable install](#editable-install) - [Quick demo](#quick-demo) - [Spelling corruption](#spelling-corruption) - [Statistic-based Spelling Corruption (SBSC)](#statistic-based-spelling-corruption-sbsc) - [Augmentex](#augmentex) - [Spelling correction](#spelling-correction) - [RUSpellRU evaluation](#ruspellru-evaluation) - [MultidomainGold evaluation](#multidomaingold-evaluation) - [MedSpellchecker evaluation](#medspellchecker-evaluation) - [GitHubTypoCorpusRu evaluation](#githubtypocorpusru-evaluation) - [Evaluation](#evaluation) - [Citation](#citation) ## Installation ### Regular install ```commandline git clone https://github.com/ai-forever/sage.git cd sage pip install . ``` To install extra requirements that you are going to need when working with ERRANT-based metric run ```commandline python -m spacy download ru_core_news_lg pip install -e ".[errant]" ``` ### Editable install ```commandline git clone https://github.com/ai-forever/sage.git cd sage pip install -e . ``` and proceed with extra requirements install as above. ## Quick demo Lets spoil some text: ```python import sage from sage.spelling_corruption import SBSCConfig, SBSCCorruptor from sage.utils import DatasetsAvailable text = "Заметьте, не я это предложил!" # Instantiate SBSC corruptor from a dataset with errors in medical anamnesis config = SBSCConfig( reference_dataset_name_or_path=DatasetsAvailable.MedSpellchecker.name, reference_dataset_split="test" ) corruptor = SBSCCorruptor.from_config(config) corruptor.corrupt(text, seed=1) # 'Заиетьте, не я эт о пред ложил!' ``` ... now with Augmentex: ```python import sage from sage.spelling_corruption import WordAugConfig, WordAugCorruptor text = "Заметьте, не я это предложил!" # Instantiate WordAugCorruptor corruptor with a custom set of parameters config = WordAugConfig( min_aug=1, max_aug=5, unit_prob=0.4, ) corruptor = WordAugCorruptor.from_config(config) corruptor.corrupt(text, seed=1) # 'это не предложил! Заметьте, я' ``` ... or for the English language: ```python import os from sage.spelling_corruption import SBSCConfig, SBSCCorruptor text = "Screw you guys, I am going home. (c)" # Instantiate SBSC corruptor from a JFLEG dataset config = SBSCConfig( lang="en", reference_dataset_name_or_path=os.path.join("data", "example_data", "jfleg"), ) corruptor = SBSCCorruptor.from_config(config) corruptor.corrupt(text, seed=1) # 'Screw you kuys, I am going home. (c)' ``` Now we can use our models to restore the initial text back: ```python from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import RuM2M100ModelForSpellingCorrection, T5ModelForSpellingCorruption text_ru = "Замтьте не я это предложил" text_en = "Screw you kuys, I am going home. (c)" corrector_fred = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_large.value) corrector_m2m = RuM2M100ModelForSpellingCorrection.from_pretrained(AvailableCorrectors.m2m100_1B.value) corrector_en = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.ent5_large.value) print(corrector_fred.correct(text_ru)) # ['Заметьте, не я это предложил.'] print(corrector_m2m.correct(text_ru)) # ['Заметьте не я это предложил'] print(corrector_en.correct(text_en, prefix="grammar: ")) # ['Screw you guys, I am going home. (c)'] ``` Evaluate performance of the models on open benchmarks for spelling correction: ```python import os import torch from sage.utils import DatasetsAvailable from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import T5ModelForSpellingCorruption corrector_fred_95m = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_distilled_95m.value) corrector_mt5 = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_mt5_large.value) corrector_fred_95m.model.to(torch.device("cuda:0")) corrector_mt5.model.to(torch.device("cuda:0")) metrics = corrector_fred_95m.evaluate("RUSpellRU", metrics=["errant", "ruspelleval"], batch_size=32) print(metrics) # {'CASE_Precision': 94.41, 'CASE_Recall': 92.55, 'CASE_F1': 93.47, 'SPELL_Precision': 77.52, 'SPELL_Recall': 64.09, 'SPELL_F1': 70.17, 'PUNCT_Precision': 86.77, 'PUNCT_Recall': 80.59, 'PUNCT_F1': 83.56, 'YO_Precision': 46.21, 'YO_Recall': 73.83, 'YO_F1': 56.84, 'Precision': 83.48, 'Recall': 74.75, 'F1': 78.87} metrics = corrector_mt5.evaluate("/content/sage/data/example_data/jfleg", metrics=["ruspelleval"], batch_size=16) print(metrics) # {'Precision': 75.94, 'Recall': 88.15, 'F1': 81.59} ``` _NOTE_: if you are launching code snippet in Colab you'd probably end up with MEMORY ERROR, so manage evaluation procedures so that you meet available device's restrictions. As a feasible workaround you can execute ```python del corrector_fred_95m.model ``` to free some space. ## Spelling Corruption We implemented two methods for spelling corruption. **S**tatistic-**b**ased **S**pelling **C**orruption (**SBSC**) aims to mimic human behaviour when making an error. While [Augmentex](#augmentex) relies on rule-based heuristics and common errors and mistypings especially those committed while typing text on a keyboard. 🚀 Both methods proved their effectiveness for spelling correction systems and celebrated substantial **performance gains** fully reported in our [Paper](https://aclanthology.org/2024.findings-eacl.10/). ### Statistic-based Spelling Corruption (SBSC) This method is thoroughly described in our another [Paper](https://www.dialog-21.ru/media/5914/martynovnplusetal056.pdf) and in this 🗣️[Talk](https://youtu.be/yFfkV0Qjuu0?si=XmKfocCSLnKihxS_). Briefly, SBSC follows two simple steps: - 🧠 Analyze errors, their type and positions in a source text; - ✏️ Reproduce errors from the source text in a new sentence; 🧠 To analyze errors in a source sentence we need its corresponding correction in order to build [Levenshtein matrix](https://en.wikipedia.org/wiki/Levenshtein_distance), traverse it back starting from the bottom right entry and determine the exact position and type of an error. We then aggregate all obtained statistics and normalize it to valid discrete distributions. ✏️ "Reproduce" step is even less complicated: we just sample number of errors per sentence, their types and relative positions from corresponding distributions and apply them to a correct sentence. As stated, you need a parallel dataset to "fit" SBSC. We provide a set of four datasets with natural errors covering exhaustive range of domains: - **RUSpellRU**: texts collected from [LiveJournal](https://www.livejournal.com/media), with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; You can use them as simple as ```python import sage from sage.spelling_corruption import SBSCConfig, SBSCCorruptor from sage.utils import DatasetsAvailable # Instantiate SBSC corruptor from a dataset with errors in medical anamnesis config = SBSCConfig( reference_dataset_name_or_path=DatasetsAvailable.MedSpellchecker.name, reference_dataset_split="test" ) corruptor = SBSCCorruptor.from_config(config) ``` ... or you can initialize your SBSC from locally stored dataset: ```python import os from sage.spelling_corruption import SBSCConfig, SBSCCorruptor # Instantiate SBSC corruptor from a JFLEG dataset config = SBSCConfig( lang="en", reference_dataset_name_or_path=os.path.join("data", "example_data", "jfleg"), ) corruptor = SBSCCorruptor.from_config(config) ``` ✅ To check how good SBSC actually approximates original errors, you can plot side-by-side graphs of original and synthetically generated distributions:



To access these graphs you can simply ```python from sage.utils import load_available_dataset_from_hf, draw_and_save_errors_distributions_comparison_charts from sage.spelling_corruption.sbsc.labeler import process_mistypings from sage.spelling_corruption import SBSCCorruptor sources, corrections = load_available_dataset_from_hf("RUSpellRU", for_labeler=True, split="train") ruspellru_stats, ruspellru_confusion_matrix, ruspellru_typos_cnt = process_mistypings(sources, corrections) corruptor = SBSCCorruptor.from_default_config() spoiled_sentences = corruptor.batch_corrupt(corrections) sbsc_stats, sbsc_confusion_matrix, sbsc_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt = sbsc_typos_cnt, reference_typos_cnt=ruspellru_typos_cnt, actual_stats=sbsc_stats, reference_stats=ruspellru_stats, path_to_save="ruspellru_sbsc.jpg" ) ``` ### Augmentex Augmentex introduces rule-based and common statistic (empowered by [KartaSlov](https://kartaslov.ru) project) approach to insert errors in text. It is fully described again in the [Paper](https://www.dialog-21.ru/media/5914/martynovnplusetal056.pdf) and in this 🗣️[Talk](https://youtu.be/yFfkV0Qjuu0?si=XmKfocCSLnKihxS_). 🖇️ Augmentex allows you to operate on two levels of granularity when it comes to text corruption and offers you sets of specific methods suited for particular level: - **Word level**: - _replace_ - replace a random word with its incorrect counterpart; - _delete_ - delete random word; - _swap_ - swap two random words; - _stopword_ - add random words from stop-list; - _reverse_ - change a case of the first letter of a random word; - **Character level**: - _shift_ - randomly swaps upper / lower case in a string; - _orfo_ - substitute correct characters with their common incorrect counterparts; - _typo_ - substitute correct characters as if they are mistyped on a keyboard; - _delete_ - delete random character; - _multiply_ - multiply random character; - _swap_ - swap two adjacent characters; - _insert_ - insert random character; To access Augmentex you only need these few manipulations: ```python from sage.spelling_corruption import CharAugConfig, CharAugCorruptor config = CharAugConfig( unit_prob=0.3, # proportion of characters that is going to undergo edits min_aug=1, # minimum number of edits max_aug=5, # maximum number of edits mult_num=3 # `multiply` edit ) corruptor = CharAugCorruptor.from_config(config) ``` ... or like this: ```python from sage.spelling_corruption import WordAugConfig, WordAugCorruptor config = WordAugConfig( unit_prob=0.4, # proportion of characters that is going to undergo edits min_aug=1, # minimum number of edits max_aug=5, # maximum number of edits ) corruptor = WordAugCorruptor.from_config(config) ``` Augmentex has been created by our fellow team, the project has its own [repo](https://github.com/ai-forever/augmentex), do not forget to take a look! ## Spelling Correction Our methodology for obtaining model with optimal performance on spellchecking task is thoroughly described in our [Paper](https://aclanthology.org/2024.findings-eacl.10/). And the algorithm is simple and generally consists of two steps: - Pre-train model on extensive parallel corpus with synthetically generated errors; - Fine-tune on combinations of available datasets for spelling correction with "human-made" errors; We use [Augmentex](#augmentex) and [SBSC](#statistic-based-spelling-corruption-sbsc) for both generating large synthetic corpora and augmenting datasets with natural errors. The family of pre-trained correctors now amounts for 8 models. We've 6 🤗Transformer models for Russian 🇷🇺: - [sage-fredt5-large](https://huggingface.co/ai-forever/sage-fredt5-large) - [sage-fredt5-distilled-95m](https://huggingface.co/ai-forever/sage-fredt5-distilled-95m) - [sage-m2m100-1.2B](https://huggingface.co/ai-forever/sage-m2m100-1.2B) - [M2M100-1.2B](https://huggingface.co/ai-forever/RuM2M100-1.2B) [Earlier release] - [M2M100-418M](https://huggingface.co/ai-forever/RuM2M100-418M) [Earlier release] - [FredT5-large](https://huggingface.co/ai-forever/FRED-T5-large-spell) [Earlier release] And two models for English 🇬🇧: - [T5-large](https://huggingface.co/ai-forever/T5-large-spell) - [sage-mt5-large](https://huggingface.co/ai-forever/sage-mt5-large) Models for the Russian language have been pre-trained on combination of Russian Wikipedia and videos transcriptions with artificial errors generated by [SBSC](#statistic-based-spelling-corruption-sbsc) on statistics gathered from train split of [RUSpellRU](https://huggingface.co/datasets/ai-forever/spellcheck_benchmark). Correctors for English trained on mixture of English Wikipedia articles and news posts with synthetic errors inserted by [SBSC](#statistic-based-spelling-corruption-sbsc) fitted on statistics from 5k subsample of [BEA60k](https://github.com/neuspell/neuspell/tree/master). 📚 We also validate our solutions on available datasets with "human-made" errors: - **RUSpellRU**: texts collected from [LiveJournal](https://www.livejournal.com/media), with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; - **BEA60K**: English spelling errors collected from several domains; - **JFLEG**: 1601 sentences in English, which contain about 2 thousand spelling errors; 📈 Here we report evaluation of some setups: - Zero-shot evaluation of pre-trained checkpoints; - Additional fine-tuning (ft.) on the target dataset; Full list of setups and corresponding performances are in the [Paper](https://aclanthology.org/2024.findings-eacl.10/). **RUSpellRU**, **MultidomainGold**, **MedSpellChecker** and **GitHubTypoCorpusRu** come from [spellcheck_punctuation_benchmark](https://huggingface.co/datasets/ai-forever/spellcheck_punctuation_benchmark). The benchmark accounts for both punctuation and spelling errors. For the simplicity and better representativeness we report results only for those models ([sage-fredt5-large](https://huggingface.co/ai-forever/sage-fredt5-large), [sage-fredt5-distilled-95m](https://huggingface.co/ai-forever/sage-fredt5-distilled-95m)) that deal with both types of errors (the Russian language). The detailed metrics for other checkpoints can be found either in the [Paper](https://aclanthology.org/2024.findings-eacl.10/), [post](https://habr.com/ru/companies/sberdevices/articles/806897/) or corresponding model card. _NOTE:_ **MedSpellChecker** and **GitHubTypoCorpusRu** do not have train split, so their performance on **Pre-train + fine-tune** setup is reported as a result of fine-tuning on combination of **RUSpellRU** and **MultidomainGold** datasets. #### RUSpellRU Evaluation | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | |----------------------------| --- | --- | --- | --- | --- | --- | --- | --- | --- | | sage-ai-service | 90.3 | 86.3 | 88.2 | 90.3 | 86.6 | 88.4 | 95.2 | 95.9 | 95.6 | | sage-fredt5-large | 57.3 | 68.0 | 62.2 | 86.7 | 46.1 | 60.2 | 92.1 | 67.8 | 78.1 | | sage-fredt5-large (ft.) | 88.4 | 80.9 | 84.5 | 88.2 | 85.3 | 86.8 | 95.5 | 94.0 | 94.7 | | sage-fredt5-distilled-95m (ft.) | 83.5 | 74.8 | 78.9 | 86.8 | 80.6 | 83.6 | 94.4 | 92.5 | 93.5 | | gpt-3.5-turbo | 33.6 | 58.5 | 42.7 | 85.9 | 64.6 | 73.7 | 84.9 | 73.9 | 79.0 | | gpt-4 | 54.9 | 76.7 | 64.0 | 84.0 | 82.3 | 83.2 | 91.5 | 90.2 | 90.9 | #### MultidomainGold Evaluation | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | |---------------------------------| --- | --- | --- | --- | --- | --- | --- | --- | --- | | sage-ai-service | 81.6 | 77.7 | 79.6 | 70.2 | 67.5 | 68.8 | 80.5 | 80.5 | 80.5 | | sage-fredt5-large | 43.4 | 49.7 | 46.3 | 21.8 | 21.3 | 21.6 | 58.8 | 23.9 | 34.0 | | sage-fredt5-large (ft.) | 80.3 | 75.1 | 77.6 | 69.0 | 66.5 | 67.7 | 78.6 | 80.0 | 79.3 | | sage-fredt5-distilled-95m (ft.) | 77.2 | 69.9 | 73.4 | 66.8 | 63.4 | 65.0 | 76.8 | 79.1 | 77.9 | | gpt-3.5-turbo | 18.8 | 48.1 | 27.1 | 42.0 | 31.8 | 36.2 | 47.1 | 51.3 | 49.1 | | gpt-4 | 25.4 | 68.0 | 37.0 | 57.8 | 54.3 | 56.0 | 54.0 | 67.5 | 60.0 | #### MedSpellchecker Evaluation | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | |---------------------------------| --- | --- | --- | --- | --- | --- | --- | --- | --- | | sage-ai-service | 71.3 | 73.5 | 72.4 | 75.1 | 69.2 | 72.0 | 80.9 | 72.8 | 76.6| | sage-fredt5-large | 35.2 | 54.5 | 42.8 | 19.2 | 13.2 | 15.7 | 48.7 | 36.8 | 41.9 | | sage-fredt5-large (ft.) | 72.5 | 72.2 | 72.3 | 74.6 | 66.4 | 70.3 | 79.3 | 85.1 | 82.1 | | sage-fredt5-distilled-95m (ft.) | 65.1 | 64.8 | 64.9 | 78.6 | 63.1 | 70.0 | 63.5 | 74.7 | 68.7 | | gpt-3.5-turbo | 14.7 | 45.9 | 22.3 | 69.9 | 52.3 | 59.8 | 26.4 | 41.8 | 32.3 | | gpt-4 | 37.8 | 72.3 | 49.6 | 81.4 | 64.3 | 71.9 | 73.0 | 62.1 | 67.1 | #### GitHubTypoCorpusRu Evaluation | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | |---------------------------------| --- | --- | --- | --- | --- | --- | --- | --- | --- | | sage-ai-service | 70.8 | 56.3 | 62.7 | 48.9 | 35.8 | 41.4 | 32.9 | 45.3 | 38.1| | sage-fredt5-large | 46.0 | 46.6 | 46.3 | 22.7 | 18.3 | 20.2 | 12.0 | 13.2 | 12.6 | | sage-fredt5-large (ft.) | 67.5 | 53.2 | 59.5 | 48.5 | 38.0 | 42.6 | 37.3 | 50.0 | 42.7 | | sage-fredt5-distilled-95m (ft.) | 57.8 | 48.5 | 52.7 | 45.2 | 39.5 | 42.1 | 29.9 | 46.2 | 36.3 | | gpt-3.5-turbo | 23.7 | 38.7 | 29.4 | 37.6 | 23.3 | 28.7 | 19.6 | 35.9 | 25.3 | | gpt-4 | 27.0 | 52.8 | 35.7 | 45.9 | 32.6 | 38.2 | 25.7 | 36.8 | 30.2 | #### BEA60K Evaluation | Model | Precision | Recall | F1 | | --- | --- | --- | --- | | sage-mt5-large | 64.7 | 83.8 | 73.0 | | T5-large-spell | 66.5 | 83.1 | 73.9 | | gpt-3.5-turbo | 66.9 | 84.1 | 74.5 | | gpt-4 | 68.6 | 85.2 | 76.0 | | [Bert](https://github.com/neuspell/neuspell) | 65.8 | 79.6 | 72.0 | | [SC-LSTM](https://github.com/neuspell/neuspell) | 62.2 | 80.3 | 72.0 | #### JFLEG Evaluation | Model | Precision | Recall | F1 | | --- | --- | --- | --- | | sage-mt5-large | 74.9 | 88.4 | 81.1 | | T5-large-spell | 83.4 | 84.3 | 83.8 | | gpt-3.5-turbo | 77.8 | 88.6 | 82.9 | | gpt-4 | 77.9 | 88.3 | 82.8 | | [Bert](https://github.com/neuspell/neuspell) | 78.5 | 85.4 | 81.8 | | [SC-LSTM](https://github.com/neuspell/neuspell) | 80.6 | 86.1 | 83.2 | **RUSpellRU**, **MultidomainGold**, **MedSpellChecker** and **GitHubTypoCorpusRu** are available as HuggingFace datasets [here](https://huggingface.co/datasets/ai-forever/spellcheck_punctuation_benchmark) and through the API of our library: ```python from sage.utils import load_available_dataset_from_hf, DatasetsAvailable print([dataset.name for dataset in DatasetsAvailable]) # ['MultidomainGold', 'RUSpellRU', 'MedSpellchecker', 'GitHubTypoCorpusRu', 'MultidomainGold_orth', 'RUSpellRU_orth', 'MedSpellchecker_orth', 'GitHubTypoCorpusRu_orth'] gold_dataset = load_available_dataset_from_hf(DatasetsAvailable.MultidomainGold.name, for_labeler=False) print(len(gold_dataset)) # 7675 sources, corrections = load_available_dataset_from_hf(DatasetsAvailable.RUSpellRU.name, for_labeler=True, split="train") print(len(sources), len(corrections)) # 2000 2000 ``` ## Evaluation We also provide functionality to evaluate the performance of spelling correction systems and rank them. 🎯 Currently two options are available: - [ruspelleval](https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf); - [ERRANT](https://github.com/chrisjbryant/errant)-based metric adapted for the Russian language; Both algorithms output Precision, Recall and F1 scores that can be interpreted like the following: - **Precision**: one minus share of unnecessary amendments; - **Recall**: proportion of expected corrections; - **F1**: famous geometric mean of aforementioned two; You can obtain these metrics simply by ```python from sage.evaluation import Scorer from sage.utils import DatasetsAvailable, load_available_dataset_from_hf sources, corrections = load_available_dataset_from_hf(DatasetsAvailable.RUSpellRU.name, for_labeler=True, split="test") scorer = Scorer() metrics = scorer.score(sources, corrections, corrections, metrics=["ruspelleval", "errant"]) print(metrics) # {'Precision': 100.0, 'Recall': 100.0, 'F1': 100.0, 'CASE_Precision': 100.0, 'CASE_Recall': 100.0, 'CASE_F1': 100.0, 'SPELL_Precision': 100.0, 'SPELL_Recall': 100.0, 'SPELL_F1': 100.0, 'PUNCT_Precision': 100.0, 'PUNCT_Recall': 100.0, 'PUNCT_F1': 100.0, 'YO_Precision': 100.0, 'YO_Recall': 100.0, 'YO_F1': 100.0} ``` ... or by directly assessing the model: ```python import os import torch from sage.utils import DatasetsAvailable from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import T5ModelForSpellingCorruption corrector_fred_95m = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_distilled_95m.value) corrector_mt5 = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_mt5_large.value) corrector_fred_95m.model.to(torch.device("cuda:0")) corrector_mt5.model.to(torch.device("cuda:0")) metrics = corrector_fred_95m.evaluate("RUSpellRU", metrics=["errant", "ruspelleval"], batch_size=32) print(metrics) # {'CASE_Precision': 94.41, 'CASE_Recall': 92.55, 'CASE_F1': 93.47, 'SPELL_Precision': 77.52, 'SPELL_Recall': 64.09, 'SPELL_F1': 70.17, 'PUNCT_Precision': 86.77, 'PUNCT_Recall': 80.59, 'PUNCT_F1': 83.56, 'YO_Precision': 46.21, 'YO_Recall': 73.83, 'YO_F1': 56.84, 'Precision': 83.48, 'Recall': 74.75, 'F1': 78.87} metrics = corrector_mt5.evaluate("/content/sage/data/example_data/jfleg", metrics=["ruspelleval"], batch_size=16) print(metrics) # {'Precision': 75.94, 'Recall': 88.15, 'F1': 81.59} ``` The metrics output by ERRANT based algorithm are indicated by the corresponding prefix, which refers to the specific type of errors: - *CASE*: erroneously used case; - *SPELL*: spelling and grammar errors; - *PUNCT*: punctuation errors; - *YO*: unnecessary replacement of "YO" (ё) letter; 📌 Credit for evaluation script of ruspelleval metric goes to Aleksei Sorokin and his notable [work](https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf) in proceedings of [SpellRueval](https://www.dialog-21.ru/evaluation/2016/spelling_correction/). ## Citation If you want to know more about our work take a look at these publications: 💥 Our EACL 2024 [Paper](https://aclanthology.org/2024.findings-eacl.10/) provides a thorough description of the methodology used to obtain SOTA models for spelling corrections as well the comprehensive reports of all experiments that have been carried out. 💫 While our Dialogue-2023 [Paper](https://www.dialog-21.ru/media/5914/martynovnplusetal056.pdf) focuses on exploiting resources for the task of spelling correction and procedures on obtaining high-quality parallel corpuses. ``` @inproceedings{martynov-etal-2024-methodology, title = "A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages", author = "Martynov, Nikita and Baushenko, Mark and Kozlova, Anastasia and Kolomeytseva, Katerina and Abramov, Aleksandr and Fenogenova, Alena", editor = "Graham, Yvette and Purver, Matthew", booktitle = "Findings of the Association for Computational Linguistics: EACL 2024", month = mar, year = "2024", address = "St. Julian{'}s, Malta", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2024.findings-eacl.10", pages = "138--155", abstract = "Large language models excel in text generation and generalization, however they face challenges in text editing tasks, especially in correcting spelling errors and mistyping.In this paper, we present a methodology for generative spelling correction (SC), tested on English and Russian languages and potentially can be extended to any language with minor changes. Our research mainly focuses on exploring natural spelling errors and mistyping in texts and studying how those errors can be emulated in correct sentences to enrich generative models{'} pre-train procedure effectively. We investigate the effects of emulations in various text domains and examine two spelling corruption techniques: 1) first one mimics human behavior when making a mistake through leveraging statistics of errors from a particular dataset, and 2) second adds the most common spelling errors, keyboard miss clicks, and some heuristics within the texts.We conducted experiments employing various corruption strategies, models{'} architectures, and sizes in the pre-training and fine-tuning stages and evaluated the models using single-domain and multi-domain test sets. As a practical outcome of our work, we introduce SAGE (Spell checking via Augmentation and Generative distribution Emulation).", } @inproceedings{martynov2023augmentation, title={Augmentation methods for spelling corruptions}, author={Martynov, Nikita and Baushenko, Mark and Abramov, Alexander and Fenogenova, Alena}, booktitle={Proceedings of the International Conference “Dialogue}, volume={2023}, year={2023} } ``` 📌 Feel free to ask any questions regarding our work at corresponding point of contact: _nikita.martynov.98@list.ru_ ================================================ FILE: configs/pretrain_fred_xl.yaml ================================================ run_name: "pretrain_fredt5_xl_multilabel_tagging" dataset: format: "csv" data_files: train: ru: - "path_to_train.csv" dev: ru: - "path_to_val.csv" path_to_tokenized: "augmentex_data" force_tokenize: True max_length: 256 num_workers: 4 source_col: "text" correct_col: "correction" corruptors: ru: "ru_punc_randomcharaug_0.2" en: "en_punc_randomcharaug_0.2" corrupt_mode: "correct" # "correct"/"source" encoder_tasks: ["multilabel_delete", "tagging"] truncate_targets: True custom_mask: False tracker_name: "clearml" model_type: "t5_encoder_multilabel_lm" tokenizer_type: "gpt2fast" num_training_epochs: 5 gradient_accumulation_steps: 16 batch_size: 4 mixed_precision: "no" padding: "max_length" optim: "adafactor" weight_decay: 0.01 learning_rate: 0.001 scheduler: "constant" checkpoint_path: "pretrain_fredt5_xl_multilabel_tagging" logging_path: "logs" mode: "pretrain" valid: False save_steps: 10000000 metric: "cer" gen_params: max_length: 256 ================================================ FILE: data/example_data/RUSpellRU/corrections.txt ================================================ очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Апофеозом дня для меня сегодня стала фраза услышанная в новостях Ну не было поста так не было Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Поясним эту мысль она прямо бурлит у меня в крови тормошит какими-то советами смотрит на меня из глаз моей дочки что носит ее имя Получатся вот такие язычки Роспись была назначена на вторую половину дня поэтому время на прогулку и фотосессию было ограничено Иногда мне сложно понять как можно не любить своего ребенка в массе своей они конечно все очень милые Насчет Чавеса разве что не соглашусь Нужно просто захотеть что-то сделать ради того чтобы все стало так как того хочется тебе Многие сетуют на отсутствие живого взаимодействия между учеником и учителем а в чем оно по сути Основная цель мероприятия практическая отработка навыков по оказанию помощи гражданам попавшим в ДТП а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий сокращение временных показателей реагирования Напрасно выброшенные деньги на билет в кинотеатр А теперь я пойду профилактически рыдать в ванную как все толстые неудачницы в общем как вы знаете из моего недавнего поста я жаловался на пропажу писем с моего ящика на почте.ру Предлагаю поиграть в детскую игру Ассоциации Сегодняшнее утро выдалось просто волшебным хорошо что на выходных не было стен только деревья да ручьи Было тяжело переводил беседу карабахский армянин она сама придумала образ и как бы ни было думаю ей удалось передать атмосферу А Рите снятся сны в которых меня убивают потому что я пытаюсь всех спасти Лучше б этот бунт эритроцитов переждать в дубраве люминала У нас всегда достанет сил чтобы перенести несчастье ближнего Повтыкав в аэропорту поехали к билетным кассам где я взял билет на поезд Компьютерная программа для улучшения зрения а днем мама снится как будто мы с ней в ссоре и она мне что-то выговаривает Интересно что бы было если б этот фильм посмотрела бы с Димой И вот наступил сладостный момент я вышла из дома в шесть вечера против планируемого без пятнадцати и поспешила на встречу с Надей Мощный лазер в нерабочем состоянии 350 кредиток Так вот я боюсь подержанную потому что меня провести как нефиг делать хорошо когда каждый год как первый Особенно мне интересны Капулетти включая и прислужницу Кормилицу и молодежь которая будет участвовать в поединках сегодня должен был на работу притащиться программист и навешать всем оплеух причем большую часть на меня Ответственность за реализацию естественно лежит на контрактных пивоварах В принципе я к этому готова Ограничьте время между кликами что ли Кили открыл что недоступные наблюдению поля мозговые гравитационные магнитные и электрические состоят из трех потоков Эстония это конечно не Португалия но 4:0 тоже результат мы понимаем друг друга с полуслова но диалога никогда у нас не получается Начальник зажег по-взрослому всю предыдущую неделю ходил покрытый прыщами а с понедельника слег ветрянка Подсаживается женщина иностранка из Норвегии она приглашает меня танцевать оказывается что это место слишком крутое для меня я загруживаюсь и больше в этот вечер не танцую В мире на самом деле крайне мало действительно по-настоящему значимого И еще тут ряда на 4 назад какие-то малолетние наркоманы не понимая всю трагичность момента начинают хихикать потерянная молодежь Ощущаю себя с ними монголоидом я никогда так много не молчала как молчу тут и не потому что языковый барьер или еще что-то просто комментариев нет Ответственный редактор издания Юлия Потемкина прислала мне потрясающий ролик про триатлон Пополнил коллекцию шмотья от Fallen в связи с долгожданным завозом Отличный лотос у тебя Меня никто ни о чем не просил просто хочется поделиться Чем Дяченки и Олди мельче философов с мировыми именами Мы с Сашкой купили надо было что-то в бассейн на корпоративном отдыхе что ли а они нам обоим оказались неудобны дико высокий подъем у обоих а они по-моему на плоскостопых рассчитаны исключительно Такое ощущение как будто до этого видел сон а сейчас только просыпаешься но почему-то все адово болит и дышать трудно Объелись пиццы и всячески веселились Возможно все ограничится приятным знакомством а возможно и любовью на всю жизнь кто знает русским мог стать любой кто любил русскую культуру родину говорил по-русски кому подойдет инопланетянам или людям живущим за городом или владельцам ну очень большой квартиры с ну очень большой кладовкой куда это чудо технической мысли можно спрятать Расспрашивая иностранцев-гостей Питера о их впечатлении от русских частым комментарием был тот факт что все слишком сердитые и серьезные никто не улыбается на улице Библиография приведенная в конце книги впечатляет А про дырявую книгу я даже не знала спасибо что заинтересовали Зашел в какой-то сетевой европейский не помню название бренда магазин купить сыну игрушку из командировки lego цены Московские девчонки-продавцы по-русски говорят плохо Сегодня вот днем выдалось свободное время и я опять ходил кататься на коньках А она научилась справляться и жить дальше зная что близкие люди страдают чувствуя собственную боль Зубодробительная гребенка с острыми камнями на протяжении всех 50 км пути Слава богу на минуту мне показалось что я оглох придя в МГТУ я был удивлен никого не обнаружив там Профессиональная карьера Патрисии началась что вполне закономерно недалеко от родных мест но за пределами Франции и как Мишка сегодня сыграл и как тот самый ненавистный Олег им гол как забил а спустя три часа я зашел в серверную школы которую мы обслуживаем чтобы выяснить отчего же вчера не было у учителей интернета и хронографа Уилл был мастером прятаться но не мог воспользоваться своими талантами потому как не имел возможности обнаружить в темноте никаких укрытий давайте на эту вот самую тему побеседуем годов через 25 Но тут-то дело за малым написать ее Они были лучшими на автобанах и на гоночных трассах создав универсальный миф об идеальной спортивной машине и мне вновь хочется изводить пергамент на письмена обнаружиласть тут в залежах Я вчера чуть не купила такие же в супермаркете золотые и серебряные но решила что дороговато по 160 р штучка Расшифровать аудио мне так и не удалось Любителям политических боев на цветных карандашах можно не читать Самой-то в разы дешевле сделать Хоть я слушаю тут недавно и вообще только полтора альбома успел послушать мне все это нравится Едем дальше на север проехали город Бовен и к вечеру уже были в Таунсвилл Наверное поэтому мне мечталось о сынишке Игрушку Покорми меня очень давно хотела сшить но доделала только сегодня Яся стала плохо спать по ночам а днем я от нее стараюсь не особо отвлекаться поэтому времени мало Варикозная болезнь матки симптомы Вопрос в том как совместить все эти векторы ника прости меня пожалуйста я очень виноват определяет правила взаимоотношений вас и их и даже как-то легитимизирует ваш забор как же так надолго артисты отпускают Все желающие могли в любой момент совершить паломничество на кухню за добавкой Мужчину очень озаботил фон точнее надпись Ближе к полуночи когда станция совсем опустела он все-таки решился Никогда не пить очень знакомо и эту Радугу Вы рисуете своими мечтами фантазиями елочными игрушками украшениями Не люблю рассказывать о себе Симпатическая система наоборот отключает все железы внешней секреции как потовые так и слюнные Результаты моего длительного сотрудничества с компанией Nettrader Съездить что ль в музей какой коли они все сегодня бесплатные Перспектива купания в ледяной воде никого не радовала Это основной курс в рамках которого есть еще несколько но о них позже и дальше Препараты от варикоза Съездили два раза с подругой за билетами вечером в расчете на то что купим чуть раньше и пойдем приехали Тогда я возмущался что некто непонятно как получил архив диссертаций РГБ и барыжит ими Странно как-то поиск в ЖЖ работает А вообще пришла в голову мысль вроде не весна Очень славный ребенок настоящий ангел Пришлось идти в обход Приветствуется знание технических основ принципы построения БД опыт программирования на Navision Axapta опыт работы на стороне заказчика Провожаем жизнь мы с тобой Опасался ли он своих снов Разжился на выходных экземпляром сабжа Однажды обезумевшая старуха Людмила Ивановна раскидала все наши зубные щетки Военные в целях безопасности оцепили пирамиды а также Каирский музей и другие достопримечательности Пользоваться сервисом проще простого Железная машина поломалась об православную духовность Не было бы универа и одинаковых прохожих колясочников с детьми блонди в розовом и голубом нелепых гоп возле игровых автоматов и самих игровых автоматов гламурных перцев реалити дом-2 партии КПРФ алкогольных напитков однообразия на прилавках магазинов отсутствия скейтпарка запорожцев разбитых лиц и т.д Сочувствующие тут же бросились развивать тему и так достаточно бредовую и доев свой грибной завтрак и покатавшись на радуге ребята засели за креатив Их творения могли казаться странными непонятными Если не ошибаюсь в первом томе Экономикса изложен но когда сажусь писать мне начинает казаться что не следует об этом писать Но зато были и болезни и паразиты и полное отсутствие представлений о гигиене да к тому же численность населения контролировалась тогда не современными контрацептивами а саблезубыми тиграми и всякими прочими хищниками Однако статуи выполненные им всегда лишены глаз что воспринимается с трудом даже теми кто ценит многие другие аспекты его творчества Его рождение самое таинственное и непередаваемое земное чудо Челка отросла лезет в глаза и уже мне мешает но идти стричься естественно некогда Теперь сюжет еще круче Джефф Гордон известный автогонщик взял баночку пепси со скрытой камерой и разыграл менеджера автосалона Слишком много тоже плохо но и какой-то постоянный минимум абсолютно необходим Обнимает хорошую девушку его знакомую Все подруги всегда курили я нет еще нет Основные же беды от злой Эриды от нее же война а не трудолюбие Когда что-то не получается падает самооценка разрушается идеальный образ Кто-то выкладывал в контакте про медикаменты смысл был в том что существуют российские аналоги которые намного дешевле иностранных и приводился список лекарств Координирует движение специальный человек идущий спереди и как правило задом наперед После этого греки завладели преимуществом и вскоре отыгрались а затем и вышли вперед даешь больше ножек кстати можно немного и позагорать Рассказчик бодрый понятный а главное компетентный говорят у него был шок когда мы приехали Не ссорьтесь на людях и не показывайте недовольство тем или другим образом Выдали студенческий билет по нему она жила годы учебы Прочитал удивленные отзывы о православном нисхождении огня в общем когда-то год назад по сети ходила запись звонка в техподдержку некого пользователя СТРИМ которого довели до пены у рта с криков разрывы Но что ты с ними сможешь сделать Сейчас более известен его сын Максим Кантор художник и писатель Я могу есть немного но очень начинаю тосковать от однообразия Открываю книгу про детские инфекции там все написано и про слабость и про капризы и про резкий подъем температуры на второй день после которого и начинается высыпание Пересказывать содержание спектакля не буду он как и все елки довольно забавен он тряпки убирает там человек полуживой в хламину пьяный фотка классная кстати хоть и не по теме Разговор что-то зашел про роботов и я долго и с увлечением рассказывал ей о философско-антропологической подоплеке многих фильмов типа Иск разум Валли Иногда даже приятно что выходные закончились и можно вздохнуть спокойно D И если им вдруг хочется дать оценку то чаще всего эта оценка касается именно этих шаблонов а не реального человека вот например не зря же нас поделили на мальчиков и девочек ведь девочки берут то что не дано мальчикам и наоборот Ну вот сегодня дружно находились в каком-никаком напряге по метро каталась много ну и собственно ничего не было Как-то раз было подобное с одной знакомой но вроде бы инцидент был быстро исчерпан Я б и на такой состав бы сходил если б билеты стоили раз в 5 дешевле Он становится безупречнее день ото дня вот о чем я Сегодня мрачная погода По-моему в челябинской транспортной реформе никогда не было головы Священнослужители ходят в белой или голубой рясах без всяких золотых ОГРОМЕННЫХ золотых крестов Неосознанно стал вспоминать этот стих сначала отдельные строфы потом куски Сохраню на память кое-что по этой теме все говорят что интернет-блогосфера начинает как-то влиять и в чем-то рулить the sims 3 увеличить грудь Но анализируем публичного человека чьи высказывания по одному из самых болезненных вопросов современной России тиражируются прессой в качестве авторитетной почти официальной точки зрения Поэтому возникло недопонимание и весь этот фильм отпуск на носу не знаю как его применить Свобода сознания это отсутствие устойчивой психологической зависимости от чего бы то ни было но сыро очень и вообще ад полный Для меня было очень важно приходить поздно домой Воинственный и могучий бог войны воплощает в себе страсть и чувственность По-прежнему есть молодые люди делающие записи в свои записные книжки В общем я и так уже собирался ставить игру а после такого Хороших всем выходных и веселого праздника Песах Первый день автобусная экскурсия до биг бена не доехали никогда не угадаете что это кстати Создатели рюкзака учли что бедра человека выдерживают бОльшую нагрузку чем плечи поэтому шестичасовое таскание сына в рюкзаке никак не отразилось на моем теле Позже буду выбираться в сторону центра Я очень рада что вам мои посты нравятся каждый атом Вашего тела был когда-то материей ближайшей звезды Вполне себе нормальный лагер Улица Кирова теперь пешеходная давайте переименуем ее в Пермскую Отдала долг маме и выдала денег на прокорм Но вообще конечно хочу Джойстер Я тебе ничего рассказывать не буду про меня ты и так все знаешь Сань я про себя вообще молчу Диктатура одной партии была заменена диктатурой военной хунты столкнувшей страну в пропасть гражданской войны продолжавшейся 10 лет Препараты для похудения на заказ Это конечно цветные иллюстрации никакие не фотографии А еще там на митинге вроде бы выступали местные музыканты насчет Гулливера детям читать невозможно Самый прикол в том что делая дела в своей жизни мы этими делами показываем отношение к близким своим а когда много гадости сделано на попятную уже никак слишком многих обидели В этот момент я определяю что нахожусь под властью этого наслаждения Странным стал институт наш мировой Рекомендации к жизни в этом сценарии следующие Проблема в том что я вообще не знаю кто мог бы это прочитать Напроектировали различные модели горок решили сделать ее разноцветной Удалить анкету на одноклассниках возможно последнее что я скажу кого-то немного обидит но это ж дневник блин и в нем я должен писать то что думаю Селайя считает что против военных намеренно выдвинуты обвинения в незначительных преступлениях Ремонт это просто полная жесть Руки-ноги раскину и сплю а еще пальцы растопырить вообще снежинка а еще хочу застрелиться сразу из двух пистолетов и почувствовать как две пули расплющиваются друг о друга внутри черепа Всю голову я сломал не знаю уже ничего вообще не хочу Об этом так стыдно писать но я только в начале пути Асфальтоукладчик с проясненным лицом улыбаясь Но для большинства людей новые нормы по всей видимости не угроза налоговики и валютные контролеры просто не узнают о счетах уверен Кандыба Короче полный бойцовский клуб Он спит пару часов в сутки и короче он вообще крутой чел Читай книги с телефонов и компьютеров Температура в выходные флуктуировала в районе 37 короче нормальный рабочий процесс Правило земледелия Все взаимоотношения можно и нужно культивировать Сделайте дыхательную гимнастику медленно глубоко вдохните на шесть секунд задержите дыхание затем в течение шести секунд постепенно выдыхайте Качество вроде ничего друг не жаловался Симптомы зажатия пупковой грыжи Потому что это от Аллаха Разве что бегущая вода Пришлось ответить что случайно не я Из особенностей стоит выделить то что мне пришлось вести занятия по математике Осколки зубристые непослушные дни ночи вечера Прямо на храме обвивая корнями его башни растут большие деревья Я вежливо отвечаю что они ошиблись номером и Зинаида Васильевна тут не проживает Результат на лице налицо Хорошо что Гошу успели унести и Гошины родители не стали свидетелями моего позорного открытия Завал короче но я не унываю Я знаю где живет хорошее настроение Прикольные статусы для одноклассников Много места если не основное в романе уделяется внутренним переживаниям героев Вчера в восемь договорилась встретиться у Мака с подругой откуда собственно двинуться гулять Вообще врать намного сложнее это ж все надо будет запомнить Кому и Чего ляпнул а у меня на оперативке объем не очень Новая жизнь как таковая ее особо не заботит Вы меня извините но я опять про своих Как бы лично наблюдал сейчас И то ли погода была мрачная то ли еще что в общем случилась со мной паническая атака такая жесткая вот атака Тяжело писать письма школьной учительнице русского Только мне даже себе самой это признавать не хочется Посмотреть на меня красивую можно тут Я сомневаюсь что белое золото лет через пять не начнет меня бесить Наступила зима хочется играть в снежки Спасибо милые мои за ваши поздравления комплименты улыбки подарки цветы Профессор хотел сдать рукопись в полицию и проверить чернила на рукописи но патриарх не разрешил а нужные листы вскоре были вырваны тебя мы в первую очередь возьмем ты умный и у тебя располагающая внешность Прикольные статусы в одноклассниках Каждый райтер или группа райтеров старались внести в свои рисунки что-то новое Хотя возможно подобная неинформативность связана с новым Регламентом Премьер-лиги Начните питаться ПРАВИЛЬНО ну в смысле еще одно солнышко помимо меня а вот как-то в коридоре встретил-таки и припер Ты бесстрашная кошка которая неожиданно может выкинуть все что угодно Проснулась в ожидании чего-то чистого и свежего Все три монеты можно приобрести в едином наборе по цене 1020 евро Он выгребает ее из-под костей которые лежат у его ног машет своими хвостами сворачивает и закрывает четыре глаза В такой светлый праздник хочется иметь хотя бы небольшую книжку о вере доброте и собственно Пасхе Смешать апельсиновый сок уксус горчицу мед и масло заправить салат посолить поперчить разложить по тарелкам Приехали мы уже ближе к вечеру пока заселились стемнело либо и не было никогда любви-то либо действительно нам без них МУЖИКОВ никуда Теоретиков тоже в мире больше чем надо Сегодняшние утренние планы умеренно пострадали к сожалению Наверное он сейчас уже проклинает нехорошими словами меня Не мог долго уснуть этой ночью Поскольку отчет деловито и весело уже написан не буду ничего переписывать а линк вот он Так ли влияет на качество напитка распечатывание Мы включились в проект на той стадии когда автоматизированные системы в компании уже существовали на разных стадиях внедрения Компьютерные мониторы для людей с плохим зрением Дольше можно делать и булки и ватрушки и пироги и пирожки с любой начинкой А на самом деле просто начальник активно со мной дружился а начальнице его жене это сильно не понравилось Рассмотрим все необходимые составляющие революционного процесса Зайти вконтакт без смс Ресторан оказался очень достойным по-настоящему итальянское место Я категорически отказалась сочинять скорбные строки о живом человеке ведь и за здравие умерших нельзя молиться а уж за упокой здравствующих вообще кощунство и грех Потеряна последняя надежда на общение Однако и в последние дни бархатного сезона в городе еще есть чем полюбоваться и чему удивиться Перед сном записывайте по одной вещи за которую вы благодарны Если раньше несколько лет назад я друзьями называла всех кто мне доброжелательно улыбнется то сейчас Ненавидишь бардов независимо мыслящая личность не думаю что я его опережу и выключу ноут потому что он долго ищет Убрать мишуру быть просто собой Как раз перед ним был километровый столб Процедура отбеливания зубов в Краснодаре Придя домой не верилось что такое произошло и не верилось что все обошлось Вот интересно австралиец Мердок критикует вопросы политической жизни США Атаман свистнул своим ребятам хлопчика тут же подхватили и понесли в госпиталь а мы с Любашей побежали следом Коммунисты неплохо креативят в Волгограде накануне выборов в гордуму Я даже припоминаю картинку из советских учебников истории Мы миpные люди мы миp беpежем Но сегодня свредничала заставила продавщицу 2 раза перевешивать Вижазисты комментируют что в этой работе трудностей нет никаких лицо выбеленное слезки невнятные Итак завтра защита диплома после которой я мечтаю навсегда распрощаться со своей научной руководительницей А какому стилю музыки вы сами отдаете предпочтение Об Аввакуме узнал из постов Булочникова и до сих пор он иногда репостит материалы Олега Не зная отдыха и сна слова сплетая грамматику не упуская поэт творил Ответственно заявляю Установила словарик Lingvo на компьютер Все сложно и очень бесит Так уж получается что эти люди встают между тобой и твоей смертью в общем любую моральную поддержку в виде живой души в тот момент в общем будет тебе кофе и какао с чаем Причем так сильно что я даже ахнула потому что конъюнктивит может настигнуть не только Уму Турман и моего соседа по даче А потом можно увольняться и хоть в Патагонию хоть в Гондурас Спокойно и не торопясь расселись едут молчат мне нравится мужик в серой накидке с рисунком Скачать дополнение для оперы чтобы скачивать в контакте И если б не этот год в моей жизни никогда б не было таких замечательно теплых Вовки и Аси Ольги Мишани и ежика Дюши и еще многих других Мальчик читал с упоением Сухинова продолжение Волшебника Изумрудного города имхо бякость страшная но читал Тебя ощущала в тебе растворяясь А в подземельях замка выставлены различные орудия пыток существуют люди у которых не голова а непонятно что Тогда соответственно говорят о язычной гортанной или носоглоточной ангине Разврат-то каков За то что щеки не могут улыбаться уже потому что болят И соглашаешься с ними что ветер живой что его сила безгранична и только когда ты на вершине мира ты не боишься его ты часть ветра и ветер часть тебя мы единое целое Потому и взываю к опыту сообщников Спасибо тебе за внимание к моему ЖЖ В центре очень много магазинов где можно купить марионетки разных размеров от спичечного коробка до почти человеческого роста и персонажей Тасовать карты ни в коем случае нельзя скорее потому что выглядит это странно В следующий раз будет лучше Лучше молчать и слыть идиотом чем заговорить и развеять все сомнения Как ни удивительно но я сумела побороть свою лень и взять-таки с собой форму на физкультуру Из сообщения местных властей нельзя сделать вывод является ли список окончательным Обидно что на многих фотках я в куртке т.к. было довольно прохладно Ладно я разрешаю тебе какие-то силы допустим 100 легких лучников иметь в своем распоряжении для поддержания внутреннего порядка Не знаю нужно ли тебе сказать спасибо что ты предвидела этот момент Основной причиной по которой я сделал такой выбор является то что я очень хочу стабильности в стране Одна из функций рекламы образовательная значит она как и искусство является способом познания пусть и ну очень особым такой вообще не существует причины ну то есть она лежит с вытащенным языком К сожалению по большей части это нецензурная брань или откровенное нытье Победители и призеры награждаются дипломами и ценными подарками а ведь часто так и бывает свободного времени мало становится дети работа и все такое Ты не видела где мои носки Ошибочно считать что раздача ключей ведется только в одном направлении от сервера к пользователю Опаздываю сегодня на работу страшно Расстраиваться от мысли что плохо снюсь во снах твоих бред просто показалось что за ночь он как-то поменялся то ли подушкой я его придавила Но сегодня мне снилось что я ей звонил А ночи сейчас хорошие какие-то странные мистические они мне нравятся В отличие от рассмотренных выше проектов крупных порталов этот специализированный ресурс занимается только фотохостингом На завтрак меня ждали Вначале мы с полчаса стояли в здании пока нас не отвели на площадку Я пришла домой на час раньше чем следовало бы потому что я просто уже замерзла не ну ни один обогреватель не помогает окромя мужчины конечно Компания превратит ваших близких в урны алмазы фарш листья ясеня Праздник жуть но пусть будет повод встретиться с друзьями и подругами Нахожусь в непонятном состоянии настроение то ли прекрасное то ли паршивое Конечно же не обойдется без конкурсов с призами от спонсоров Следующей после джо в книжке идет точка закипания Электронная система Сайлау покажет тот процент ЗА который будет заложен в нее комитетом нацбезопасности где стоит параллельный центральный сервер Завтрак вполне приличный не знаю кому он кажется скудным несколько видов йогуртов колбасы сыра булок пирогов джемов И вообще интернет почти как телевизор наркотикоподобен Организмы тут же затеяли возню стали брыкаться визжать и медитировать мешали Обычно она воду пытается пить из кружки в которой я мою стеки и руки Долго шли солнце уже садиться стало в лесу слышны залпы тревога в княжестве ищут нас беглянок некоторые ничего не соображали вообще с небольшой затратой времени удалось доиграть Полиция сказала что на Карловом мосту нет видеокамер наверное чтобы не портить исторический вид Только сегодня работала с клиенткой про переживание того что непонятные неожидаемые собственные чувства и переживания непонятные их истоки означают будто меня нет На Серебряном дожде я слушала периодически его программу про джаз Однажды в этот мелкий город приедет какая-нибудь старая рок-звезда настоящий талант прошлых поколений и поскольку моя группа будет единственной в городе не придется разбираться кто выступит на разогреве Считала сегодня по календарику и теперь зачеркиваю крестики в ожидании весны Мало того что они ходят только вперед так еще дойдя до конца становятся королевой Написал коммент а он куда-то пропал Выводок чудябриков по-любому будет со мной я их в мастерскую отвозить буду Я сплавлю вас вместе на все времена ну в общем признаков нет и беременности нет Ну была еще одна заменить что ли Реклама Пепси советует нам помнить о прошлом но жить здесь и сейчас В интернете более общительный чем в реальной жизни Ослуживание безупречное а цена как раз такая что вы ищете А раз есть о чем мечтать значит есть к чему стремиться ты с какого района объясни сначала Продолжительность занятий небольшая всего 3 дня Хочу завтра прикупить какой-нибудь симпатичный удобный блокнот или тетрадь Всегда чувствовать себя у черты что ведет к счастью и никогда не переступить этой черты Всякий кто выжил героем продул этот бой Не знаю кто оказался главным редактором а совет его был похожим на мамин Мужчина и женщина не могут жить друг без друга но частенько случается что и друг с другом им становится тяжеловато Желаю чтоб на твоем жизненном пути не было вообще никаких неприятностей Довольно большая цифра для 15 квадратов на которых эти милые звери живут Уж не знаю кто ей порекомендовал для такой роли меня наверное кто-то в Спорткомитете но чувствую что-то не то в этой газели А то последнее время раньше восьми встать не получалось а в универ необходимо к 9.30 прибыть Угощали вчера своей едой Открыл для себя лыжный сезон наконец-то Подделанная подпись по определению неаутентична даже если мы не можем подделку распознать Подробный отчет в новом году Нам нужно признать и отучиться от нашей внутренней мизогинии так чтобы мы смогли преуспеть и спасти этот больной мир Последователи Тантры скажут вам что если у вас нет времени изучить своего партнера вы никогда его не узнаете Я наверно никогда не чувствовала себя такой защищенной Эти люди очень принципиальны и готовы преодолеть многие трудности во имя своих идеалов Город можно расценивать по его ритму в Киеве самый высокий ритм а когда я приезжаю в Х то кажется что город стоит на паузе В зале на одной из стен находятся надписи сделанные якобы классиками Обдумываю что с ним делать и как постинги комментарии оформление Вечером мы снова вкусно ели и долго спали все исключительно для того чтобы проснуться к вкусному завтраку кто-то жертвует всем ради любви и идет на преступление а кто то совершает подвиги во имя любви кто-то отторгает себя и посвящается любимому человеку а кто-то заставляет ради нее же посвящаться ему Жигули она же классика стоят на конвейере 30 с лишним лет являясь по существу убогой копией Фиата середины 60-х Приора с Калиной унылые образцы дизайна 15-летней и технологий 40-летней давности Суп проще вылить в последний день и сказать что да было очень вкусно Отечественные банки в основном работали с корпоративным сектором а его состояние сейчас мягко говоря не блестящее Ваш партнер не является вашим врагом в общем вижу цель препятствий не вижу Снова подборка светильников по личному вкусу Даже детей своих угомонили что само по себе редкость Начала свою карьеру ди-джея в 2007 году Вадим во время важных совещаний прячется под столом зачитываясь медицинскими журналами Врут зеркала что красота померкла врут зеркала что молодость ушла Отметил новый год в больнице подарив старому свой аппендикс не знаю честно говоря как правильно пишется это слово не казнить Приведем примеры полного несоответствия проекта многим параметрам что и вызвало социальную напряженность на Загорянке Приятно познакомиться Мой босс бывает крайне неадекватен а иногда и более того зачем ему вдруг понадобился мой приезд я так и не могу понять ну окей я буду Монастырь был очень большой и красивый В деревне жил старик очень бедный но даже короли завидовали ему так как у него был прекрасный белый конь Православная Церковь является единой и соборной а потому никого из ее членов не может не волновать судьба своих братьев-единоверцев где бы они ни находились Это же не развалины средневекового замка где можно найти если повезет сундук пиастров или череп бедного Йорика Отжимания от медбола 3х10 кстати баня загорелась как шульга с зимариным уехали Конкурс проводится одновременно в России и в Италии не знаю ходить на море делать ремонт кого-нибудь встретить Бывали случаи что за день заливало весь подъезд Творческий потенциал может увеличиться Проблема есть даже кот у меня насмотрелся и научился периодически мимо попадает он же здоровый у меня лосяра Особливо это чувствуется на премьере фильма когда есть с кем поздороваться Я вообще горжусь как за себя не гордилась сроду Муж уже вернулся и Ваське спать пора Боже как глупо все вышло Осчастливленный новым альбомом выхожу на просторы ночного города и решаем мы с Левонтием и Анжелой идти гулять по оным по пути втариваясь коньяком и колой Сергей Викторович благополучно улетел в отпуск а значит что вижу тряпки лежат на полке у друга спрашиваю что это И естественно разрешили взять со мной девушку Ну в общем она имеет Женское счастье Особенный человек естественно виделись по полтора часа минимум каждую неделю на протяжении 8 лет Кто-нибудь сталкивался с такой ситуацией Поведайте плиз а какой предмет она ведет Рад рад за тебя теперь только экзамены сдай Мне ничего вот пока не понятно Вот только это по-свински и совершенно нагло Обычным мылом лучше не мыть тело т.к. мыло сушит используйте гель для душа И никого из моих а те что наполовину естественно притянулись к другому полюсу С ним можно говорить на любые темы кроме конечно отношений с другими мужчинами чтобы просто напросто не ранить его он естественно за ним нагибается и вдруг в глазах появляется иконка Чего же они так испугались все эти римляне всего-то книга всего-то о любви в общем питаюсь окрошкой пью минералку смотрю уже 5 сезон клиники Потому что время еще есть и деньги тоже Спасибо огромное за репортаж Выходные выдались на редкость и радость долгими и прямо скажем отдыхательными Сегодня в мои выходные мне позвонил начальник и вызвал завтра на разговор Если Вы полетели самолетом Аэрофлота то никогда не сдавайте в багаж ценные вещи Поднимать надо не читаемость а культуру прежде всего Предположительно основан в XII веке в период правления династии Неманичей Неожиданный у вас мальчики для меня диалог Спасатель от него зависят человеческие жизни а общем и судьбы людей Хорошее такое кино классическое смотреть приятно и легко Ну а больше я ничего не могу советовать потому что очень от секреции зависит к себе его забрать не можем т.к. с моей собакой не сживется ни одно живое существо Изданный в 1368 году этот устав определял горное право порядок трудоустройства регулировал добычу и торговлю солью в общем о Йоте я услышал впервые из уст очень продвинутого студента-экономиста Артура который вместо книжек и тетрадок носит с собой маленький ноутбук Работодатели не должны платить государству Присоединяюсь к справедливому негодованию Ваш цветок всегда должен быть рядом чтобы защитить от обмана и зависти и ослабить приступы ревности которым вы подвержены Собственно я им заинтересовалась не только из-за статьи а вспомнила что мы как-то заказали его в каком-то кафе в Амстердаме Попугай с удовольствием любуется своим отражением надувает щеки ставит гребень Вот хоть бы раз она чего-нибудь ответила Последние две номинации не слишком оптимистичны но если даже мы хотя бы в одной из трех номинаций получим первое место тоже неплохо пиар как-никак Но это хорошо так как затем из отколотых зубов удаляются нервы На данный момент внутренняя валюта сети употребляется для покупок виртуальных товаров в играх Facebook в некоторых интернет-магазинах работающих в социальной сети а также для расчетов в скидочном сервисе социальной сети Facebook Deals крем детский нет Я не перепутала со вчерашним днем Я и сегодня купила вместо лосьончИка для тела буду пользовать его только она не желто-красная а невзрачного цвета и сухая Сидела разбирала почему в момент когда я сдаю экзамен уже 4 раз кто-то разговаривает и я теряю концентрацию Вот это-то вкупе с духовными скрепами на что списать Но сейчас я точно знаю на вашу поддержку в беде я могу рассчитывать Очень скучала по нему все лето ну кстати девкам было не 13 лет когда им в руки дали инструмент а 16-17 Сложно на самом деле объяснить то что происходит в моей душе Парламентский принцип формирования правительства двухполюсная поляризация политического спектра наличие у партии политической позиции сильного лидера и известных имен с репутацией профессионалов дают этому правительству массу преимуществ уже на старте Не особенно честолюбив но не терпит когда его обходят по службе из того же чувства справедливости пожилая девица сестра князя Иосифа Венцеля постоянно живущая в Саксонии Привезла мне чудище Просвистевшая над головой пуля заставила его обернуться Некоторым изменениям прямо скажем удивлена Это перевод фрагмента воспоминаний о жизни в Англии в провинциальном шахтерском городке рубежа 50-х и 60-х годов Это была единственная экскурсия на гору Монсерат о которой я расскажу в следующий раз в нужный нам день и он на удивление пришел раньше обычно он опаздывает на 10-15 минут и я его матерю потом но сегодня он меня лишил этого удовольствия Мы так много говорим о любви и так мало любим Я узнала об этом давно но меня до сих пор приводит в ужас эта мысль Постарайтесь теперь найти и отсканировать все законы касаемо авторского права ну и гражданский и налоговый кодекс так за компанию Он станет пилотным проектом в рамках туристического кластера на Северном Кавказе Пройдя еще немного он понял что идти дальше сегодня не сможет и остановился в Эрендзи ну то есть ничего конкретного а в целом обо всем этом После изъятия Рожновым у меня диктофона сопровождающееся ударами в спину я понял что таким же образом могу лишиться и фотоаппарата и надо спасать хотя бы имеющиеся кадры Зачем мы пишем дневники Если очень хочется спать вздремните Хочется жить отдельно от этого сумасшедшего стада извините не в обиду сказано Он подразумевает следующую логику исследования полностью просеквенировать несколько десятков геномов высокогорных жителей и путем многовариантного анализа по сравнению с геномами обитателей равнинных областей выявить различия в генных характеристиках Чувствовалась рука тренера Хранительница домашнего очага должна быть верной мужчине иначе ее дети окажутся без добытчика Норнштейн это человек которым мы можем гордиться что живем с ним в одно время и в одной стране в общем пока не прочитаете не поймете Низкая интегpиpованность следует своим побуждениям малоконтpолиpуем вообще не знаю чем занять себя этим вечером Кстати что-то не все цифры видны Поссорилась с фотофайлом как подружусь еще с каким-нибудь ресурсом хранения картинок кроме лж плюс то выложу все сюда еще Поэтому если я случайно начну истерично хихикать или неуместно шутить или неуправляемо объясняться в привязанностях это нервы Сначала купила пластырь Никоретте Представьте себе какой-нибудь офис на территории бывшего СССР не отмечающий 8 Марта Новый год или День защитника Рюкзак часто добавляется к последнему варианту А к тому что исключительно на мой субъективный взгляд ребенок и сам может сообразить как слепить елку или дедушку Мороза Даже не знаю что сложнее про нотную грамоту молчу вообще Он говорит о том что есть иная действительность и стоит ее постичь как эта так называемая реальность просто блекнет становится нереальной Официальное фото от организаторов Я возмущалась ну как это как-то это так звучит нехорошо И я безумно рада что я здоровая а не инвалид Рабочий день длинный потому что здесь наконец много дел По-моему не одна я испытала эстетический шок потому что область в радиусе предполагаемого эпицентра в случае падения этой биопирамиды в считанные секунды зазияла неинтеллигентной пустотой Мозаика из сплетенных пальцев наших рук чуть ближе друг к другу ощущение сказочного спокойствия и защищенности в его объятиях Ударение всегда на первый слог две гласных означают более долгий звук Про вас можно сказать что вы любите алкоголь без всяких задних мыслей Любое внедрение в тончайшую паутину энергоинформационных нитей человека может принести огромный вред И у меня кстати тоже в машине аккумулятор внезапно сдох Непридуманная история из сети Я купил весы с ними время летит незаметно Так что как сказал Поль Валери Если кто-то лижет тебе подошвы прижми его ногой прежде чем он начнет кусаться Пересказываю со слов не знаю насколько точно но постараюсь это ж простите не кольчатые черви и не растения которые размножаются почкованием Подгрузился список контактов Основная часть архитектурного ансамбля если так можно выразиться состоит из самолета Boeing 727 Набирала скорость еще в горах Папа откуда ты черпаешь эту информацию Сочувстсвую и желаю чтобы все решилось а как помочь в таких ситуациях вообще себе не представляю Девчонки завизжали при первых аккордах первой песни сыгранной нашим бэндом Вот пишет замечательный издатель журнал с вашими стихами напечатан Чувствовать принадлежность что ли Невозможно свести Православие лишь к индивидуальным убеждениям оставив при этом в стороне практику жизни Пишите мне чтобы я смогла убедиться что мои сообщения вообще где-то видно Неоднозначное чувство у меня осталось после просмотра фильма с одной стороны чувствуется тяжелая атмосфера в которой принимаются важные решения происходит изменение сознания героев рушится внутренний мир строятся новые ценности Наглядно привожу еще один расчет чешский писатель-постмодернист известный широкой публике по роману Невыносимая легкость бытия Поэтому для взаимности у нас должны быть хоть какие-то общие интересы Как я понял это изначально сделано Строгость задаваемой им системы координат загоняет человека в созерцательность Эмоциональная перегрузка В первых строках своего письма спешу сообщить что я девушка Кинокомпанией DreamWorks планируется выпуск планшета специально для детской аудитории Это как раз та развилка до которой мы потом НЕ дойдем То что пристегиваться необходимо и нужно вопрос понятен но то что ты будешь нести ответственность и за тех кто не пристегнут в машине вообще наводит на мысли Всеми правдами и неправдами пускают социальную пыль в глаза Сами убрались или с чьей-то помощью во время гололеда и теперь залечивают раны Приклеенный скользяк или нет это точно не угадаю И в очередной раз думала о том как легко естественно просто Преинтереснейшее положение у нас сложилось на рынке платежных систем Сегодня улыбнуло шла в поликлинику менять полис долго тянула с этим делом так долго что дело стало похоже на французский батон такой же длинное и нелепое проходила мимо какой-то пятиэтажки а там вовсю трудятся славные граждане Таджикистана я первый раз каталась на таких креплениях Благодаря моей довольно набожной бабушке я привыкла отмечать еще один праздник а именно именины Я морально уже готова произвести на свет название для такси Следующие 3 часа мы были заняты преодолеванием трудностей протискивались в узкие щели спускались поднимались ползли на карачках шли по колено в холодной воде отбивались от летучих мышей и филиппинских школьников на прогулке Приспособление электрокалорифера установленного с поддержкой винтов в дно корпуса состоит из осевого вентилятора и спирального электронагревателя Причем у них очень много заказов ах да в завершение я сегодня еще сходила в бассейн и наплавалась вдоволь В книге приведены практические советы как справляться с реальными и часто встречающимися проблемами внутри фирмы а некоторые фразы так вообще убивали Чтоб глаза у ней счастьем светились Спасибо за твои записи в ЖЖ которые я иногда залезаю перечитывать Теперь я знаю что бомжи дерущиеся на улице это не бомжи а РЕСТЛЕРЫ Баклажаны перец помидоры запек на открытом огне почистил шкуру нарезал и смешал с чесноком и кинзой Единственный минус Тельцов это упрямство даже когда они неправы Ваше отношение к идее равенства мужчины и женщины Много букв сначала хотел сделать из него юпик но в миниатюре совсем не то После войны в Ливии около миллиона египтян вернулись на родину пополнив без того огромную армию безработных Мне только кажется потому что я в них совсем не разбираюсь Эффективность способа напрямую зависит от скорости его применения Осталось понять что же все-таки сдохло мать проц видюха или ну пусть будет так пожалуйста блок питания И то еще минут сорок наша четверка ждала когда подготовится машина инструктора А я читаю все молитвы на ночь я книжку в церкви купила а вот Отче Наш не могу наизусть выучить Статусы для одноклассников смешные Я верю что браки заключаются на небесах а значит мы уже записаны в бортовом журнале на места рядом друг с другом Сейчас в моей голове происходит примерно такое Однокурсница в аське ошарашила предложением написать мою фамилию на ее лабораторках типа мы вдвоем сделали Когда Белка в очередной раз пришла ко мне и подставила мне пузо я постелила пеленку у нее под боком и положила туда Лилового Червяка Забыла в доме джинсы а джинсовые бриджи найденные с прошлого лета естественно с меня свалились Ну а космодромы понятное дело должны охраняться Всего в этих категориях от России участвовали около 60 работ Оно тоже прекрасно оно настоящее живое правдивое А в 8.30 я пошагала на пары а вечером дописывала курсовую Однако подходы к решению одних и тех же правовых вопросов иногда разнятся Это привело к девальвации духовных ценностей апатии и аполитичности Я уже подумала что это насовсем Потом искренне удивляются и бранятся когда им откажешь И мерное биение пульсара сжатыми кольцами магнитного поля отсчитывающего тысячелетия жизни огромной вселенной окружающей нас Мозг готов треснуть Ну и слегка фотки пейзажей вокруг моей теперешней берлоги в смысле института Я как пешеход буду вас бояться как и всех машин В ночь с 7 на 8 декабря Финикс уступил Сент-Луису со счетом 3:4 В прошлую субботу разбили на кухне пустую пивную бутылку в пятом часу утра Кто заменит Деппа на посту исполнителя главной роли пока неизвестно так что Дима давайте сначала вы в Тарусу а потом к нам в Одессу Коды к играм в контакте Нашла троллейбус расположилась в совершенно пустом салоне естественно сейчас мало охотников ездить в Эстонию долго созерцала пейзажи за окном Завтра попробую выручить новый В общем-то любая посвященная спорту новость для меня как владельца этого блога можно сказать сюрприз вот кажется приведенная ниже класснее и не пожелаешь Совершенно измученная спазмами ознобом и слабостью я зарылась в одеяло и пролежала так до вечера Начал читать с конца и поэтому уже был морально готов в концовке у птенцов кстати нету мышц Вот и получается теперь что женщина действительно неделимое целое с мужчиной если в Киеве маршрутки не будут брать стоячих людей битком то ехать на работу и с работы многим придется не час-полтора а два-три У меня так же как у пациента было много непонятного но игра состояла в том что я врач а он пациент Позавчера пересматривал Горбатую гору и в памяти всплыло сразу 2 человека А все же с огромным удовольствием я бы поехала в Москву но невозможно В общем берешь картинки из журналов вырезаешь интересующие темы делаешь из них коллаж и направляешь энергию для реализации желаний Наконец-то мои ручонки добрались на кнопочки написать в профайле и вот решительно собираюсь накатать несколько постов о том что наслучалось за это время День прошел полностью одухотворенно Прикладываем к разбитому лобику извлеченное из холодильника мясо пытаемся успокоить и попутно осматриваем Ну а если что пойдет не так как надо обращаться к семейному врачу Следите за нашими репортажами Итак что вы можете подарить мне если не знаете что Пассажирам задержанного рейса выдали лежаки и огородили территорию вокруг них красными лентами Теперь ты снова будешь писать добрые сказки а я всегда буду рядом Любопытства у них побольше чем у нашей легендарной Варвары за небольшие деньги или даже просто так в умелые руки отдаются замечательные книги Практически никакой информации извне вот это у меня пробел пока насчет струй Народные рецепты отбеливания зубов в общем срочно надо в сберкассу завтра днем еще будем тут уедем скорее всего на трехчасовой электричке Ручниками я считаю любителей которые тоже знают все фотографические азы но при этом снимают исключительно в ручном режиме Сегодня согласно всем кодексам и сводам правил заверив у всех заверителей и проставив все печати официально поздравляю товарища хорошо быть слепым и глухим и на всякий случай немым Мы не сразу отыскали инструктора но сильно обрадовались когда нас нашел доброжелательный мужчина с очень накачанными руками Я уже забыла что это такое идти в обуви без каблуков Настроение непонятное какое-то солено-сладкое с одной стороны жалко расставаться с родителями и другими близкими людьми с другой радость от наконец-то сбывающейся мечты можно и так это назвать хотя скорее стремление к более спокойной жизни ну и для меня лично есть огромная доля приключения в этом всем это как минимум интересно я всегда мечтал о таком путешествии вот так сижу обуреваемый чувствами Прагматично так подумайте если охота будет Недавно говорила с одним человеком на эту тему и он мне поведал что его родственники вообще не общаются друг с другом Соедините две получившиеся смеси в одну И вход в дом каждый хозяин обустраивает с таким размахом Это еще хорошо что ты в рыбном журнале работаешь Хюлькенберг квалифицировался девятым но на старте у него возникли проблемы в общем снится мне что я нашел-таки артефакт позволяющий видеть что там у людей внутри Что белому человеку кажется моральным для японцев аморально Просмотреть скрытую информацию в контакте Практически минуя сознание ощущение этого постоянства уходит куда-то внутрь и волна за волной ложится где-то очень глубоко Мне нравится что он кладет мне голову на плечо и это естественно Не торопясь и на низкой температуре печь безе Мир не шибко справедлив Если сравнить площадь крыши и нашей квартиры даже только кухни с прихожей потому как теперь сволочи выселены туда так на крыше места явно больше мы с Денисом вместе рисовали он мне очень помогал и поддерживал это доя меня очень важно Это где такое случилось Подхожу к тому дому где скребут лопатами таджики и слышу Вот опять она Сегодня поперлась в поликлинику близ дома полчаса блуждала потом набрела мне дали от ворот поворот дескать я ни по прописке не подхожу им ни по универу Сегодня гоняли с любимой на стрельбище в Манчестер в общем уезжали в печали и тоске когда еще предстоит эта поездка но с огромным желанием приехать сюда летом страшно как-то теперь домой поздно возвращаться Если она этого не дождется или Вы ей не напомните о Ваших отличиях то она будет действовать строго наоборот Я наливаю воду в кулере как обычно смешиваю холодную с горячей а он мне Осторожно вода очень холодная А гостиная она для того и делалась а то в РД Урала уже вообще ничего святого не осталось А потом я долго-долго-долго их юстировал Потихоньку-полегоньку бюрократические инициативы приобретали маразматично-параноидальные оттенки но бисмиля многие инициативы так и остались инициативами не получив материального воплощения И как он с остальными членами семьи Да что с тобой говорить ты ж наполовину в земле В очередное пробуждение я застаю рассвет небо набирает все больше светлых тонов Нехотя поднявшись я переоделась и побрела на кухню Но на деле Марк никогда не умрет в каком-то там лесу Не о визите же к элитному пульмонологу насчет обструктивной эмфиземы Под надзором нескольких учителей они проводят сутки в этом центре играют читают проводят дискуссии Правда я его как раз с 80-х и люблю Но как и в любом парке там естественно были экскурсоводы Значит в субботу покажут кино про кидал Кидалы Потому что рисовать на себе я не могу раздеваться без рисунка как-то тупо а красивая я и так ПАСЕ это всего лишь ассамблея парламентов Стоит возвысить мозг над остальными органами и ему останется только критиковать то есть выхолостится его основное предназначение Всего диалога я не помню но посмеялись от души Подскажите мне темному чего зазырить перед сном типа можно без мяса можно даже без кровищи Он был молчаливым симпатичным брюнетом а я рядом с ним была невыносимой болтушкой Предлагаю вашему вниманию похожие по смыслу но разные по содержанию два фильма о любви на всю жизнь Никогда не думала что меня могут поставить в тупик такие вопросы как Какие мне нравятся фильмы или актеры Хотите разъехаться так есть же обочины И нужно ли вообще спрашивать разрешения работодателя на добавление материалов в собственное портфолио В октябре 2001 года он попросил помилования за примерное поведение в тюрьме однако суд отказал ему в освобождении У двери валяется серая тряпка Суббота прошла под эгидой хорошего настроения Покопаться в песке одно из любимейших занятий забавное обстоятельство в эти выхи был день города и пьяного люда на улицах было ну очень много У нас все выкосили нещадно Сентябрьский семинар продолжение встреч целью которых является исследование истории диктатуры и протеста против тоталитаризма Рекомендую к сотрудничеству Промозгло и муторно Вот такая вот история в общем-то из статьи понятно что наши власти исполнительные теперь могут в пьяном виде делать чего захотят и отвечать они будут только перед своим начальством Распределить по пекарской бумаге натертый имбирь и цедру и сушить 30 минут А Фея стояла на балконе и думала о стрижах которые стремительно проносились перед ее глазами кстати вам финдиректор не нужен случайненько Собственно вторая наша экскурсия Есть дача а это оба выходных плюс вечер пятницы На следующей неделе в четверг 11.08.11 вечером собираюсь в Магнитогоск своим ходом Согласно поверью есть минуты когда пожелания выраженные вслух исполняются Далее хочу отметить что моя работа связана с постоянным общением с людьми Длился этап чуть более часа Как открыть одноклассники через секретный вопрос Напьешься в хлам и станет противно соратникам и друзьям Обязательно хочу миссию с дирижаблями обожаю эти летательные аппараты Акинфеев вовремя вышел из ворот и не позволил бразильцу открыть счет однако на добивании первым оказался Ибсон который и расстрелял пустые ворота ЦСКА 1:0 Как вы полагаете справедливы ли эти упреки Насущного много и оно разное но мне хочется вернуться к теме о которой не говорил бы только ленивый наш кризис Ты специально синхронизируешься со мной по выходным когда меня нет Теоретизированное мышление необходимо для решения проблем В общем вся дорога туда-обратно заняла общим счетом часа два с половиной Пряный аромат гвоздики способствует укреплению памяти Или просто не считает нужным замечать собеседника Хотя по виду о тебе такого не скажешь но в тихом омуте Масс-старт в биатлоне впереди еще например Я же говорила что счастие грядет Теперь таких кинотеатров в Москве не существует И к своим проблемам просто присмотритесь чтобы больно не было когда ешь то что нельзя Так возникла вторая после Ассирии мировая держава собственно это почти в одно и то же время снято просто облака плывут Да мне интересно как люди живут и что у них происходит пройдем или нет не знаю и судить не берусь Созерцать красоту бытия и наверное хорошо что я там был один И сетевые библиотеки больно бьют прежде всего по авторам Самыми древними памятниками Синопа являются крепостные укрепления построенные при понтийском царе Митридате IV Провинция с замашками большого города Следует отдать должное заказчику очень четко очерчено техническое задание на производство дизайна Написание Бедных людей это если кто не знает первое известное произведение писателя сопровождалось бы очень полезными комментариями от читателей блога Но тут вспоминается что например пару лет назад в Кельне в связи со строительством мечети когда едва не дошло до побоища между сторонниками и противниками этого мероприятия с обеих сторон присутствовали сплошь вполне европеоидные господа с левого и правого края политического спектра В свою очередь газета Гаарец утверждает что французский министр обвинила палестинских боевиков в бесчеловечности и потребовала немедленного освобождения пленного У меня нет новогоднего настроения одна апатия Рауль тоже не кантерано как любят считать многие Рита ходит в коридоре разговаривает по телефону на попытки загнать ее в чемодан не реагирует В общем моя мысль Классика РУЛИТ О точно пойду с сентября на занятия йогой Третий год подряд я благодаря маме уезжаю на свой день рождения в другой город в другую страну Скульптура Медведь и земляничное дерево символ Мадрида Разгадать вновь ту загадку черт неужели я после своего черноморского лагеря тоже был так импульсивен в общем я вообще без загадочной улыбки об этом фильме вспоминать не могу Какая татуировка бы вам подошла В летние месяцы Роспотребнадзор запрещает жителям края купаться в реке Традиционно правильная инвестиция классический кашемировый джемпер цвета беж с V-образным вырезом а так хочется что-то мочь менять в этом мире не обязательно менять но обязательно быть способным это сделать Привезли кучу фотографий впечатлений и средиземноморский загар И я должен подчеркнуть что настоящий танец это одна из самых прекрасных вещей которые парень может поделить с девушкой Общая топография Южной Пристани Коссово город расположенный недалеко от районного центра Ивацевичи известен памятником архитектуры дворцом Пусловских Он у меня живет в очень маленьком горшке примерно с два моих кулака Да и в любом случае нужно найти какое-нибудь безопасное место для ребенка Однако есть несколько нюансов о которых хотелось бы написать Нет ничего хуже адски болящих зубов От всей души желаю каждому вновь обрести потерянные светлые и добрые качества Я как душа Тома Рэддла разбросана по сторонам света Google прекрасно справляется с тем за что берется Иногда стоит постараться чтобы не упустить действительно милого мальчика В перуанском городе Ило местный житель Рамон Санчес разграбил древнее захоронение и жестоко поплатился за совершенное кощунство Способность не завидовать это величайший дар Несколько дней назад я потеряла паспорт ТОЛЬКО ВМЕСТЕ Заключительный аккорд экономическая интеграция РФ Украины и Белоруссии Территория обитания зверьков а это достаточно высокогорное плато в Андах была обнесена колючей проволокой и охранялась военными а сами животные объявлены национальным достоянием страны перекрыли сайт одноклассники как быть Каждая фотография несет немалую частичку души этого красивейшего места а каждую вторую можно отбирать и продавать как открытку Мы пошли в Художественный нас встретила приятная неожиданность в афише сего не было но мы оказались на 3D версии Мамочки только что получила список вопросов для ГОСов Я в таких ситуациях за конкретные предложения Я не c читаю нужным с Вами полемизировать Сейчас же я дома мне все здесь нравится Не считая этого запрос розыска раздачи осложнен тем что программка ориентирует его к поисковой системе в браузере Ну клятвы давать Бог запрещает Большая просьба приходить на занятия со сменной обувью Опять качает головой и улыбается Пресловутая подкованная блоха оказалась почти самой простой Извините если ярко выразился Ну во первых начальник чисто в теории видит проблему шире Напомнило старый анекдот Из-под плаката выглядывают очаровательные ножки дерева Пока не знаю поеду до Львова или нет да и вообще не могу сказать поеду ли придя в квартиру мы помыли руки начали ставить мне ирокез А мы пили китайское сливовое вино обалденно вкусное Обман зрения это не прикол просто смотрите в центр то есть вы придете с паспортами и будете канючить не хочу не хочу Объехав таким образом две-три фермы и заменив при этом пустые фляги на полные грузовик наконец часам к 12 дня въехал в долгожданное Сандово ни ля-ля так не получается а если получается то ни капельки не искренне и даже очень натянуто Половозрелые и не очень парни и девушки одевают алые ленты и мегаплатья а потом идут пить Взрывом уничтожил шесть автомобилей саму автомастерскую ну и естественно нашего дарвиновского номинанта Кроме того частные средства пойдут на строительство пяти новых стадионов ладно когда он как бы из-под полы Муж включал телевизор ложился на диван и открывал бутылку пива 37-летний форвард заявлял об окончании карьеры еще в конце прошлого сезона но согласился остаться еще на год дабы помочь Арминии вернуться в Бундеслигу Насчет вечерних не знаю но бегущего мужчину лет 70 сегодня в 11 на аллее видел Но теоретизировать тут бессмысленно Собственно он и от дождя очень пригодился На удивление я увидел интуитивно понятный графический интерфейс установка прошла успешно да вообще по сути дела с огнем ИГРАТЬ не нужно Новозаветная модель рулит Не говоря про то чтобы попасть в ангар с танками тоже надо было отстоять очередь при этом явно торопился уйти и одновременно кому-то писал смску Как вы знаете у нас в фонде есть множество самых различных программ помощи детям проживающим в казенных учреждениях Интересно как там работа объективов регулируется На следующей неделе будет новый список игр со скидками Сердобольные женщины которые приносили мамке каждый день немного еды различали их только по масти Потом нас загрузили в машину инструктора и повезли сдавать экзамен в городе Это моя бывшая за это спасибо Обычные буддисты просто шаблоны негодные Иначе происходит развитие у более частого вероятно более чистого и настоящего типа женщины Рассчитан на определенную аудиторию адаптирован под ее восприятие На днях перед сном рассказал мне Я не люблю кефир Оплата в контакте через терминал Очень поразило меня обилие всяких чаев на кухне в новом офисе в особенности факт присутствия моего на данный момент любимого чая который пахнет глинтвейном Потратить средства они смогут на любые цели Расчетов мало одна логика Имбирь активизирует защитные силы помогает сохранить молодость и здоровье до глубокой старости очень уж он неприглядно выглядел непредставительно как-то да и вообще опустился парень ниже некуда а про бабешку я его вообще промолчу что-то даже не хочется подводить итоги вспоминать этот дурдом Без изображения хорошо пойдет никакого бамбука не понадобится Энергосистема Южного Урала относится к дефицитной то есть нагрузка потребителей превышает нагрузку электростанций однако благодаря строительству новых объектов в том числе Южноуральской ГРЭС-2 генерация получит дополнительные мощности и потребность в электроэнергии будет закрыта собственными ресурсами Низкий срок службы 1000 часов но некоторые служат дольше На блогах очень много трепа но иногда среди этих залежей выходит нарыть реальные жемчужинки И честно говоря это не я его это он меня таранил Постарее дедуля был придя на репу выяснилось что мы сегодня опять неполным составом сачков свалил на дачу Сколько стоит домик на острове в Таиланде Семантическая поисковая система используют семантическую науку изучающую смысл слов чтобы производить более релевантный поиск И это ведь есть в каждой нации А то у меня номеров почти нет в связи с восстановлением симки Превратиться в кляксу смяться разжижиться стечь горестными капельками Кстати можно ли сразу запилить международные права чтобы я стала совсем крутая и могла сбежать с миллионами за границу Вообще обычно когда мы ссоримся у меня нет ощущения своей полной правоты то есть я думаю что наверное все-таки права но можно было здесь сделать вот так а здесь лучше а здесь помягче Я сомневаюсь что мне нравится это кольцо а не то два магазина назад Предчувствия его не обманули Чтобы каждый день этой жизни приносил тебе столько радости величины которой хватило бы на то чтобы полюбить ее без памяти эту нашу такую непростую жизнь Если б кто быстро сообразил бы можно было бы выпустить семечки в упаковке как обычно в магазинах продают и штамповать на них бренд баревреволюция Я вам покажу как будить Колдуна Как вы представляете свое положение через 3-5 лет и как собираетесь его добиться Нечувствительны к пониженному напряжению могут применяться в светильниках с регулятором очень удобно Давно хотел выложить некоторые фотки вот лапы наконец-то и дошли Какие смачные фотографии хоть и поела а аппетит разыгрался люблю ужастики но не смотрю теперь и так темноты боюсь а если посмотрю потом вообще спать не могу Фактически по этой же модели он строит свою дальнейшую жизнь Ну вот наконец-то забрал часть фоток у Боди их там много залил сюда штук 25 Ой а что это он делает Но вообще единственное что не люблю мат и про детей Надо дописывать книгу всего чуть-чуть осталось но как всегда лень Я не знала что моя правая нога не особо меня слушает да и вся координация хромает Любое дело направленное на помощь жертвам насилия и несправедливости вдохновляло его Утешаюсь мыслью что двое детей это нормально науке известны случаи выживания взаимоотношений в таких условиях Это я два года назад за пару месяцев до беременности на банкете в честь юбилея одного папиного коллеги Хотя она вроде бы относится к психике мне хочется назвать это оценкой способности воспринимать окружающий мир во всем его многообразии Одобрен был только один карандаш для глаз который я как раз не любила за излишнюю кислотность и крикливость все остальное было отвергнуто Обмороженных больше чем ошпаренных Пытаюсь успокоить руки слезы загоняю обратно и пулей из универа Отпраздную затем отвечу на комменты уж простите Начали с Капитана Моргана и Текилки Порой мне хочется тебя убить И кстати очень зря некоторые убеждены что жизнь не сказка и не фильм в котором все красиво не знаю как у них это получилось но факт В Темрюке есть так называемая военная горка где под открытым небом находится выставка настоящих самолетов и вертолетов пушек и кораблей танков и поездов Но черт возьми где-то есть семьи где родители помогают детям в том что действительно нужно детям а не в том что как считают родители им нужно Полетим все вместе по возможности одной в тишине слушая звуки дома быть и думать о своем читать или просто валяться в задумчивости на матрасе чтобы молчать наедине с собой Она сказала чтобы я съездила туда сегодня Сочетание магическое и очень нам понравилось Родителям малолетних детей советую обратить внимания на новую обувь Сейчас Айгуль находится в третьей городской больнице А потом со временем стало так что я вообще не хочу ничего рассказывать До свиданья Оля мы разошлись как в море корабли Спасибо но сегодня должен аванс упасть на карточку и тогда гуляй рванина Приятно общаться со старыми но давно не встречавшимися приятелями Ничего себе бред Сейчас такое мясо грех не пользоваться не помню где читала теорию что дольше всех живут те кто является самыми большими поставщиками на тот свет то есть все кто имеет отношение к оружию довольно милый и летом и зимой обогреваемый теплым солнышком Поэтому все остальные раздражающие факторы усиленно не понимают моего сопротивления и делают все что в их силах чтобы затянуть меня туда подальше мне даже раскладывать не надо так помещаюсь Мы сняли уже студию в другом месте там правда не поживешь особо Не смотря на дороговизну домов двери до сих пор простые Насчет мира ты уверен что мир так сильно меняется а может это мы меняемся Оказывается можно быть счастливой и несчастной одновременно Пронзительно холодный ветер мчится по пустоши В первый день после большой грозы озеро было серым и непривлекательным на пляже безлюдно Лампочку-то намеренно изобретали Все что я хочу сказать это то что я все равно рядом Именно так большими буквами и с грохотом на всю Одессу Так хочется чтобы таких семей как наша было больше чтобы люди не разменивали свои чувства по мелочам чтобы встречались со своими половинками и живя в любви и согласии растили замечательных детей А столько женщин в джинсах а-ля заниженная талия так и хочется подойти и подтянуть Поводом стал очередной асфальтовый скандал И у нас много общих знакомых например теперешний мой начальник Слава Козлов который Борман А в чем дело-то собственно паспорт я сегодня получила с прописочкой питерской все очень так законно и официально Потому что бесящиеся с жиру госслужбы нужно ставить на место Чудесный ребенок и я таки дошутилась но мы ждем второго Обязательно на него посматривайте Я вообще неспособна понять что руководит человеком когда он делает то что он делает я кое-чем другим занимаюсь интриги плету в общем и мне это нравится у меня теперь плечи накачанные так что бойтесь Напыщенные домики стискивают углы зрения и формат ощущений Понедельник выглядел примерно вот так Продолжаем выбирать красивое мыло на подарки нашим близким и друзьям Надеюсь наш случайный встречный добрался до надежного ночлега Солнце ушло Вспомнила только сегодня утром в автобусе Можно нормально и не вовлекаясь переносить вызовы внешнего мира ну на работе там не ладится или погода плохая или вообще как-то жить сложно и бессмысленно А если б ты оба кеда между собой зашнуровала То есть она не будет пронзительно-красиво прямо в точку и как будто про тебя Наподобие слоеного теста Растерянный я медленно слез с подоконника и подгоняемый недовольным стариком устремился вниз по лестнице Сегодня первый раз пошла со всеми дружно играть в пинг-понг за что кстати всем спасибо Предыстория разгребала гардероб ага Одним словом темные и страшные дела творятся в наших вересковых пустошах было ну очень жарко такое ощущение что на вентиляции сэкономили на все Совсем недавно поняла что значит быть собой Пришлось повозиться Благо народу пришло сегодня больше обычного развеселилась Чурикова и Киркоров как ведущие полное извращение Символизирует стремление мужчин все в этой жизни делать ради женщин Они представляете зовут какую-нибудь назовем ее условно Лаурой на балкон Буду получать третье высшее образование Психология Стоило это все очень недорого Остается ловить глюки и слушать музыку в общем ты добрее чем я Когда наша семья переехала из Душанбе зеленого солнечного гостеприимного города в степной пыльный мещанский Оренбург полюбить новый город было трудно Я просто решила пояснить так как добавляю периодически друзей Мясные блюда не дороже 50 Этот телевизионный коктейль смешан таким образом что с утра нам вдалбливают о проблемах со здоровьем потом о проблемах на планете а тут еще и свои запары вдобавок Летела под елку жестоко отдирала бантики и разворачивала цветную бумажку а там открытка следующего содержания Извини что не черная и не шелковая но желаем чтобы нашелся тот кто будет исполнять все твои замысловатые желания Отдыхаем от институтов садиков ну и вообще на самом деле фильм пустой какой-то Лизенок это набор слов я не знаю что это значит Вспомни наконец что ты женщина прикольно конечно но теперь мне надо срочняком на права сдавать чтоб потом не стыдно было Создается такое впечатление что это иллюзия самовнушение Да и какая разница Доктор Кто это окей и я рад был смотреть все 4 сезона однажды по-любому пересмотрю Согласно древней традиции на поле необходимо оставлять несжатую полоску шеАр остаток чтобы бедные могли собирать колосья Результат комплименты одобрительные ого-го Просто остаться наедине с собой задуматься Захожу я значит в пятницу в лифт там стоит сосед снизу и какая-то вообще незнакомая девчонка Вот погода установится хорошая и все доделаю Рекомендуемо для просмотра любителям отечественных военных фильмов равно как и следующий сериал Осталось только определить куда-то старую но дорогую сердцу моей родни тахту и стеллаж Приехала вчера в Самару Я периодически появляюсь на чужих страницах с комментариями Та что сидит резко вскакивает и пихает той что стоит свою сумку в лицо Шкварчать умеет только свиное сало все остальное тупо жарится Ничего не понимаю я в парикмахерском искусстве Слушает все даже то чего слышать не хочет лишь бы ты улыбалась Тогда может и решения были бы более справедливыми по поручению главы Чечни была создана межведомственная комиссия Комплексное рекламное обслуживание Жидкость для мытья окон не берет Понимаю если б счет был 4-5 но такой разгром это звиздец Слезятся глаза и плачет дождь И если там сказано что иноверцев надо убивать он будет убивать когда прикажут Как просмотреть в контакте кто оставил мнение Окружающие считают их ненадежными самовлюбленными и ограниченными И мне сразу подумалось что при таких условиях пролетарии нарочно будут затягивать ремонт дабы получать побольше денег Льет страшно где-то в небесной канцелярии прорвало трубы предупредили будет лить целый день и ухудшение ждать после обеда то есть сейчас Но в слайдшоу на мой взгляд очень быстро сменяются Я надеюсь что с каждым годом участников акции будет становиться больше а фобий у людей все меньше далее хорошо бы все таки консультацию гастроэнтеролога хотя бы чтобы узнать какова секреция желудочного сока и по итогам пропишут диету острое конечно запретят но я на это уже 18 лет кладу с прибором вносить сюда можно что-то окончательно вызревшее законченное на что уже невозможно и не нужно как-то влиять разве что Вася Воронов да Пашка Пескин знаешь его Получилась смесь бытовой городской новеллы и протокола заседания профкома Найдутся те кто сможет написать стихи это возможность родителям контролировать и помогать чадам Я прижалась к нему подхватив под руку такому теплому и желанному практически родному Экспериментируя с различными музыкальными традициями он создает очень привлекательные музыкальные произведения Рассматривает все в черно-белых тонах как правильное или неправильное не видит всю сложность событий Все немного или много великовато а вот у этой кофты буду удлинять манжеты т.к. очень она мне понравилась а максимальный размер был 18-24М у меня правда очень болит сердце вот о чем мама была верующим человеком нам помогала и помогает Богородица однако я не знаю была ли мама крещеная Раскрытие двух основных понятий пути воина безупречности и самоотражения Ремонт компьютеров в районе метро Коломенская Каширская Тульская Варшавская Автозаводская Не отображается видео в контакте Однако я поняла одно кажется я нашла свое полноценное хобби Ну и ладно а зато в века предшествующие человек был столь бесправен что нынешнее состояние дел в родных широтах может показаться райскими кущами Нашел совсем случайно прикольный сайт А на нем паршивая экранная копия что легко определить по качеству и сигаретным прожигам периодически мелькающим в правом верхнем углу А впереди еще очень много разных социальных ролей Капелька надежды через водопровод проникла в ванную повисела на кране и раскачавшись запрыгнула на полотенце Мужчина был с зализанными волосами и в свитере А мы с ней вчера встречались опоздала на работу потому что заговорилась о сочетании майонеза с другими блюдами Самое смешное что мне эта ситуация напоминает от нефиг делать спать не хотелось так пусть теперь и Вам не хочется так эгоистично так нелепо Потому что на него переводов много Но в общем чего гадать главное что настроение поднимает немерено особенно с утра в общем ближе к концу он умудрялся так вспотеть что с него пот ручьями лился прямо на меня разумеется Я люблю тебя и небо только небо и тебя Продажа кондиционеров в кредит Присоединишься к нам Учительница остановилась и спросила Как вы Добравшись до подходящего по всем приметам места наши рыбаки принялись разматывать удочки по всем правилам рыболовной науки Спасибо не за что рада поделиться Эх столько впечатлений осталось за кадром Получить блогосферный гороскоп для Вашего знака Зодиака нам достаточно факта что мы можем это сделать всегда эмоционально мертвая я приезжаю к Тане которая кормит меня чем-то вроде паэльи с морепродуктами и виски с колой не согласна была на девичнике там девчонки изображали стриптизеров было очень смешно Раньше на такие должности мы взращивали кадров с самого детского сада до серьезных вакансий Продажа путевок в Таиланд в Новокузнецке Пейзажи за окном какие-то незнакомые Поздравляю его и всех вас с этим событием по пути к самой лучшей выборгской бане нам встретилась хореограф по имени Лона попросившая рубля три даже уже не помню на что Первый такой вопрос я знаю что сейчас подобного рода инновационные площадки инновационные города делаются не только в России Может пока я вырубаюсь на пару секунд кто-то роняет на меня бетонную плиту Ей в общем-то все равно было на кого учиться лишь бы мама с папой не переживали что у них девочка не пристроена Никогда больших приколов не было Здесь ветер жуткий холод дикий В общем с наступающим Днем учителя Смирительную рубаху напялят и никак иначе Работать не хочется хочу учиться и радоваться жизни Легкие и элегантные они создают прекрасный образ можешь поговорить с военкомом и дав ему денег как-то получить отсрочку Ну и конечно Мак покатился с ним чтобы оценить ситуацию со стороны На самом деле ты удивительно многогранна и умеешь неожиданно предстать в абсолютно необычном образе Охранник с непроницаемым лицом изрекает самое клевое в столовой это по-любому сортир Ясно что сказать ему особенно нечего Отогревшись и заодно пообедав в столовой отправилась я домой Сегодня была с Антоном на выставке на Винзаводе И вдруг хочется написать из темной аллеи на меня вышла удивительная случайная здесь пара жених и невеста ты главное не отчаивайся если все будет двигаться ну очень медленно Hа следующий день все черепахи сбежали Я пережил то что чувствует море колышимое бурей принимая на себя каждую пощечину ветра Не расстаюсь с мечтой поехать на Байкал на поезде Утром по новостям объявили что на сегодняшний день в ЗАГСах рекордное количество свадеб раз в пять-семь больше чем в обычную пятницу Но это не такой уж большой недостаток если учесть что Телец обычно все тщательно обдумывает перед тем как принять ту или иную точку зрения дергаю дверь закрыто пока ключи нашел минут 10 прошло В общем люди которые меня знают и важно звонят мне на мобильник в курсе что раньше 12 связи со мной нет и вообще Выскажу свое мнение но оно предвзятое фотки с тобой почему-то в большинстве не нравятся Кто бы мог взволноваться случайно наткнувшись на дневниковые записи бабушки о том как она грешила вовсе не с отцом зачиная ребенка Я последний раз нечто подобное видела в отдаленных городишках нашей родины в конце девяностых примерно Она ждала меня около университета или политехнического института чтобы первой узнать как я сдал экзамен Но почему же мне снова хочется с ними встретиться Помощник шерифа получивший не так давно повышение в местном полицейском участке Грин Горча сейчас стоя рядом с ней думал лишь о том как они вместе будут строить свою жизнь На работе так вообще все были очень дружны из-за этого Миллиарды живут по правилу трех заветных п попса пепси и пошлость В их реальности вполне возможно никаких сигналов и не было кроме зова сердца Он прекрасен снаружи и великолепен внутри изукрашен резьбой по камню Анекдоты конечно вещь хорошая но становится ни капли не смешно когда вспоминаешь что провалы в экономике страны как нельзя лучше компенсировались с помощью дармовой рабочей силы каторжников Я уверена точно только в одном в мужчине за которого собираюсь замуж Тратишь на это усилия пусть и некоторые потом и играют против тебя и часто ощущается угнетение в душе Кроме того нужно учитывать исторический контекст версия сказки Шарля Перро появляется во время большого голода бывшего в правление Людовика XIV и высвечивает неустойчивость крестьянской жизни и положение детей которыми первыми жертвовали в случае бедствий Хотя его возили в Москву на операцию тогда всех мало-мальски высокопоставленных чиновников возили лечиться в Москву но было уже поздно Тогда мы были в полной уверенности почему-то что это дело рук барсеточников Для строительства одного гнезда требуется около 35 дней ну поздравляю желаю не умереть а если и умереть то достойно Высказали все это дело манагеру так чисто случайно под настроение попал и пригласил он нас на любой сеанс в МДМ Православие больше не преследуется Плавать на каяке в одиночку не рекомендуется Пассажир Екатерина Леонидовна Лепнина 23 года работала официанткой в баре XXXX В начале XVI века замок станет основным оборонным пунктом от московских войск точно так же как до этого он оборонял Беларусь от тевтонского ордена Опять завела ту же пластинку больница врачи жировик хрен знает что за болезнь рак Почему не выкладываются фотографии в контакт Обмыли дома с мамой и сестрой права Было явно видно что наша поездка откладывается что ребята настроены серьезно и зарплату отрабатывают добросовестно Набрал он в легкие воздуха побольше верхнее ля выдал и смотрит вверх испугается шарик или нет Недавно обнаружила замечательное место для прогулок Скучно было ужас Наконец еще более прогрессивная идея это пропагандировать идею что главное в детях чтобы они были здоровыми и красивыми а не на вас похожими ибо что такое похожесть именно на вас Дирижер маэстро Кацман беря в расчет встречу знакомых стояние с ними минут так по десять остановку у метро была на шпильках и устала Она не отрываясь прочла весь рассказ о своем вчерашнем возвращении в город Транспортировка ковшей с чугуном в конвертерный цех Ура я сделала себе выходной правда провела его как-то странно на улице супер просто а я целый день проспала потом уборкой занималась ну в общем как обычно Низкокалорийное питание диета умные начитанные с пластичным мышлением ну в общем золото а не дети обещаю загладить свою вину с меня очень что-нибудь приятное пиши мне а ничего не делать В обзорах равнозначно будет уделяться внимание двум направлениям документальной и арт-фотографии Удивительно видеть от Ховарда столь халтурную работу Сейчас она победила на конкурсе русского языка в Японии и получила бесплатный билет в Россию Посмотри летние фотографии выпей вкусного чаю позови интересных гостей И ни разу ни разу этой зимой не встал на лыжи Только Танюха куда-то запропала Наркотиков не нашли попросили сдать анализ в баночку и обнаружили в анализе следы марихуаны Подкачал только неожиданно тусклый и однообразный свет а для фотографа плохой свет как страшный сон Расчеты и описание местности убедительно показывают что все чиновничьи стенания об исключительности выпавших ливней лишены всякого под собой основания Ну а потом годы полетели и не останавливались пока мои родители не познакомились но как-то все это было подозрительно Проверку первого запуска тоже сделал не самым лучшим образом но тем не менее уже немного работает Подискутировали надо сказать от души После нашумевшего шпионского скандала фамилия Щербаков в СВР приравнена к ругательству Дома я была почти в одиннадцать часов до трех потом писала отчет и дело тут не в кривоте или прямоте рук просто в горах надо побывать Люблю изо всех сил и счастлив что мы на одной волне Буфетчица нервно курила включались красные огни орали сирены а однажды даже приезжали пожарные Сей пост рассчитан на тех кто еще эту информацию не читал конечно же если читали и вам до лампочки можете пролистнуть мимо этот текст не тратьте мое на чтение вашего творчества и ваше время на его написание спасибо не скажу ибо мальчик большой Президент вызывает к себе генералов Рассказик на сопельки потянет самое то для прожженных романтиков Где можно скачать программу вконтакте не в онлайн Серега который сдержанно и цивилизованно пил безалкогольное пиво беспокоит нашу молодую семью А то больно хочется зазырить Новости страницы не отображаются в контакте 27 февраля была захвачена крепость Санто-Доминго и провозглашена независимость Доминиканской Республики Перезванивает мне Дмитрий Николаевич через мгновение и говорит ну ты понимаешь люди солидные сивуху не пьют возьми нормальный коньяк Он вечной жадностью ведом такой у нас народ послезавтра играть по-любому нужно успеть за завтра найти пласт Любимый и ласкаемый ребенок примет мир добрым и миролюбивым к себе Хотелось бы более подробно узнать о Алексее Шинкоренко опыт работы в области фотографии опыт работы в преподавателем желатьльно со ссылкой на портфолио На прошлой неделе впервые делал интервью по Скайпу Получилось совсем незаметно но надежно В один непрекрасный совершенно день Не знаю зачем но все утро разглядывала свадебные платья в общем за день до ДР Елизавета впала в состояние постоянной пены и пара и слезок Нечаянно запомнили одноклассники как их удалить С особенным волнением я следила за судьбой Дэйнерис потому что это уникальный случай в сериальной практике герой который развивается Правильная форма наслаждение от встречи с Дающим Пространство это сверхтекучая жидкость Прогулялся по парку в очередной раз убедился что живу в самом лучшем районе Москвы плюс ко всем удовольствиям что тут были нашел стрелковую базу по тарелочкам летящим пулять из ружей Живи так чтобы ему было интересно Продукты для диабетиков А вот высказаться на более широкую аудиторию наверное все боятся в общем так как я пользователь анлима ЮТК то мне вроде как надо требовать от провайдера качества услуги Учитесь смаковать жизнь небольшими кусочками и находить приятные моменты в окружающем вас мире И погода чудная и вечер вчерашний вспомнить приятно и птички поют именно поют а не орут дурными голосами Прошли почти весь пляж и наконец-то остановились Лекарственные препараты от варикоза Опосля всех философских бесед различных маневров и экивоков выяснилось что посуду должна мыть опять-таки Левостороннее движение отсутствие перекрестков вместо них кольца просто сводит с ума Я думала он был поваром потому что сейчас он готовит Центральная его часть увенчана двумя башенками на одной из которых даже остался флюгер в виде петушка Хочу выразить благодарность незнакомцу читающему мой жж Не знающие границ сами позвонили поздоровались уведомили что посылка на таможне и поинтересовались когда мне будет удобно ее получить И взор мой весел и стопы мои легки Если до Нового Года не выпадет снег то в ближайшие два года человечество вымрет из-за необратимого изменения климата Можете дарить книги только помните я многое читал я его люблю а он здесь лазает Проблема сама глубже в неудовлетворенности жизнью пустота депрессии В детстве на Украине мы говядину практически не кушали Российская компания приобрела авиабилет у иностранной компании Излишняя трепетность к деталям вынуждает нас видеть зазор на завитке синего цвета упуская при этом огромную мозаику пестреющую всеми цветами спектра Напротив сидела пара веселая Угораздило ехать туда ночью зимой Проблемы проблемы а потом случается настоящая проблема только уже со здоровьем и все остальные как-то сами собой отпадают Зарубежные представительства Госкорпорации действуют в 50 странах мира и играют основную роль во внешнеэкономической деятельности Ростеха кстати да говорят что самое опасное падать не на крутом склоне а на ровном месте А еще первое время контента может быть достаточно много Есть кротон декабрист и еще какой-то лопух который живет и процветает у нас уже Бог знает сколько лет Намазываем уже остывший корж кремом фромаж блан или творог риккота протертые сквозь мелкое сито даже густая сметана подойдет совсем немного только чтобы ягоды потом прилипли здесь я прибежала на крики и пронзительный визг а Яся всего лишь радовалась тому что Варя спит под одеялом и она действительно спала несмотря на бурные эмоции вокруг и не совсем нежные обнимания Ну и естественно большая часть пути прошла по встречке и полоса была сплошная Ей было очень грустно и одиноко От моей дочери которая приезжала к моим родителям на пару недель в поселок Коридоры казались огромными было довольно пусто мы бродили по лестницам этажам Посылая шутки к черту я от всей души горячо поздравляю Вас Одним словом нудный донельзя несколько ранее есть пост об этом и даже фотки сажусь обратно за комп и начинаю что-то себе рыться в интернете Я позвала официанта ну хз наверное надо было убрать волос и все но я позвала официанта и показала ему свою вилку а он сказал что ничего не знает у поваров светлых и длинных волос нет Не прошло и полугода как они заметили что у статуэтки выпуклое основание Не стыдитесь мечтать загадывайте желания и бережно храните семейные традиции Вот только мерилами этой эффективности вы назначили сами себя Разве это не функция премьера Эксперты пока не установили причины катастрофы не всегда хочется вспоминать людей Методологическое брюзжание в ответ ни Бурятия ни Европа нациями не являются соответственно национальных кухонь не имеют Но в связи с волнениями я вижу активизацию сил националистических и хотя острие атаки направлено не на нас я клянусь Богом что до нас дело дойдет обязательно историю не учат только идиоты которых у нас хвала небесам Хотела посчитать сколько Я за сегодня выпила воды У Зайчика кстати сегодня опухли два пальца так как девчонки приземлились на нее а целоваться не перестали На выходных какие-то неудачники ограбили квартиру В четверг 24 октября на заводе прошло выездное заседание комитета по экономической политике и собственности краевого Законодательного собрания в рамках которого депутатам рассказали о прошлом завода его настоящем и будущих проектах Всем руководит золотозубая родня надеюсь мамуля меня простит за мое вранье и обман не позволяй всяким идиотищам портить себе настрой ведь их так много а хорошего настроения всегда нехватка Спать аккурат в семь захотелось Блин А мальчик-то симпатичный смуглый черноглазый Определенно определенно Новый Год нужно праздновать с друзьями Ленится ни в коем случае нельзя Погуляем летом обязательно Послезавтра классная вечерняя тусовка на набережной Открыла утром окна и оставила их открытыми на целый день Обещанные новости В общем иностранцы 3 курс дети вообще в массе своей элитные как в социальном так и в интеллектуальном плане Четвертая вообще меня не возрадовала В любом случае я не думаю что ты имел в виду именно это может перефразируешь Да только прибежала невесть откуда из подпола понятно то есть из подземного царства шустрая мышка Остановились на совместном походе в театр типа это моя инициатива Вот сейчас с родителями собираемся к нему в гости возник вопрос что ему подарить Месяц не сидела за рулем наконец еду Потому что невозможно добровольно отдать желание жить Некоторые из нас могут со временем начать делиться сокровенным с девочками-подругами но первый поцелуй Ира скинь номер аськи свой пожалуйста да и смс написать можно Это было настолько душевно что порой мне кажется жаль что уже так с ним не поговорить А дальше в гости к батьке потом на незалежную и может еще в Молдавию наверное надпись была сделана с любовью и вся любовь ушла только в слово Очередная дурацкая ЖЖ-игра Рассчитаны на разный уровень подготовки и разный возраст Только из-за него стоит сходить развела в воде гадость редкая но ему и она понравилась смолотил больше чем нужно для первого раза В 1635 году маньчжурский хан обнаружил что его солдаты продают собственное оружие в обмен на табак Короче красотка та еще и это все счастье держалось и не спадало с моего лица в течение часов так двенадцати Как известно каждому Одесса невероятно крута Этот щенок йорка см ниже оказался на станции отлова животных в Малаге и был бы усыплен если бы финны его оттуда не вызволили Помилуйте боги уставших кого-то любить Разочарование я отмел сразу разрушить все надежды последнего полугода это слишком Недавно стала снова ловить от Ксюхи запах молока Во-вторых попытки народных демонстраций которые распространились не только географически но и затронули разные социально-экономические классы Этот фильм лучшее лекарство от подобных разговоров короче если кто-то видел мое потерявшееся чудо шлите его ко мне Пришла в офис в чуть более легком варианте чем традиционная моя одежда Ранее сообщалось что Душанбе настаивает на заключении договора сроком на 10 20 или 29 лет но никак не на 49 Предыдущий день первое декабря сего года был для меня полон событий и смены эмоций Опсомания привязанность к определенному блюду Много позже когда я его увидел я решил что из него можно сделать хорошую детскую книгу Папилломавирусы вызывают дисплазии шейки матки что может стать причиной рака они приводят к росту кондилом половых органов кондилом мочевых путей любое движение это прогресс Потому как то что ты перечислил здесь это все правда естественно но это все хрень по сравнению с семейной жизнью Приятного аппетита За трактором шагом марш прокаркал комендант и резво вскочил на подножку машины Хотя хуже чем на физике недели две-три назад вряд ли будет Я думала кстати что даже у маленьких утят перья не волосатые Если ваша работа связана с общением около вас всегда должны быть 3 цветка ириса в высокой узкой вазе Продавцы просто адски выводят из себя Сегодня закончил уборку всех записей в личное Да и вообще мы помрем и никаких предыдущих-последующих жизней не будет я и так в платье похожа на праздничный тортик теперь я только и могу что улыбаться мстительно тетечке с пирожками Я вот как раз про это хотела спросить отдельным постом но раз уж разговор зашел Патологически не умеют принимать решения Миллионов не дарил но жить помогал пока на ноги не встала Пожелайте мне удачи пожалуйста Познакомились со всеми барменами на нашей улочке Представьте Excel если бы каждую функцию пришлось скачивать и устанавливать отдельно Оба с задумчивым видом курят трубки и ведут беседу Лань прекрасное и пугливое создание грациозное в своих плавных и осторожных движениях Мы слушали ее за кулисами какой-то площадки При варикозе вен нижних конечностей появились синяки я не знаю почему может это перед концом света но Вселенная в этом году решила выдать мне компенсацию за все годы проведенные в родном городе в виде путешествий к центрам моей Родины Москву летом и Питер осенью Вот что за чудо изображено на обложке книги Ну как же без дочери Попадались также привлекательные на мой взгляд закусочные Съездил в центр купил билет на Дельфина касса в переходе на углу со стороны больницы Разделенный на две части рекой представляет из себя старую и новую часть Немного думаю о том банальном что если человек твой он непременно вернется так или иначе рано или поздно да и дел поважнее у меня сейчас хватает а если серьезно настраивайся что все будет хорошо Только он помогает и решает все вопросы Вообще мамалыга имеет более древние корни в докукурузные времена по той же технологии варили пшенку Я одно время засыпала под Мастера и Маргариту Это пособие помогает развивать речь и учиться пересказывать тексты как опираясь на дополнительные вопросы так и только на свою память ты начинаешь думать а что неплохо можно и тут жить Смущение одолевает меня конечно хочется назвать их имена Корпорация IBM поделилась информацией о выпущенном процике z196 который выступает в роли чипа эксплуатируемого в стандартном режиме на мегапиковой частоте ну да ничего пять дней и снова пятница из-за реального запарного периода вчера был первый вечер когда села за комп с момента нашего прошлого сеанса Полный текст статьи об этом исследовании можно найти на сайте журнала Nature Напроситесь на дачу к друзьям оказывается в книгомире сегодня есть купил и уже главы три прочитал Как установить веб-камеру чтобы общаться через одноклассники Подойдите ко мне Поселения представляют опасность только для людей которые говорят Мне плевать что делают арабы а вот от евреев я требую исключительной порядочности Террористический акт в Лондоне Я рисовал очередной чертеж который надо было еще недели две назад сдать естественно это не занимает весь день но у таких лентяев как я это занимает недели К тому же многие люди смотрят аниме сутками и читать сутками субтитры не очень хочу и животная суть не позволяет им не занять место старшего Скачать программу для бесплатных подарков в контакте Профессиональные средства для отбеливания зубов Какая она была эта уходящая осень эта грустная незнакомка в длинном плаще и берете Стартапу нужны основатели но не очень-то нужны сотрудники Он отметил что летом ему это еще не удалось толком сделать из-за череды кризисных ситуаций передает телеканал Sky News Мачо все местного производства то есть к отдыхающим отношения не имеют в принципе ничего менять не буду Соответственно дома у меня книги везде и как следствие катастрофически не хватает места В Ярославской области повышается стоимость проезда в пригородных поездах И неудобно уже другой кофе брать не хочется их путать а то ведь в центре города сколько народу к ним заходит поди всех по имени запомни и кто что пьет При достижении загустения соуса добавляем галушки Часто мы сталкиваемся с каскадом свалившихся на нас неудач и решаем что так будет продолжаться и дальше Причисляя себя к какому-нибудь направлению увы приходится расплачиваться за его грехи С ним хочется проводить время дома наедине забывая все заботы и неприятности Счастье привалило короче По сути интереса никакого моему многотысячному другу не представляет однако некоторые один-два человека проникнутся слезами Романтические комедии мелодрамы это нам вообще не надо Настоящая теплая зеленая солнечная и наконец-то можно будет на себя одеть то что хочется а не то что надо Журналисты всегда все нагло беспардонно переврут вспомнил что с прошлого года остались некоторые дела которые можно было откладывать и далее Еще Ясна научилась обижаться когда что-то не по ней и выражает это сразу очень громким криком начинающимся беззвучным сморщиванием и багровением лица Меня вон завтра в суд под расписку сегодня полночи спал с включенной водой затопил косяк весь но сегодня так получилось не потому что я проспала ваши одноклассники и однокурсники рядом с вами Святослав великий князь киевский сын Игоря и Ольги в значительной мере правившей при сыне государством до ее смерти в 969 году поскольку князь все время проводил в военных походах в общем было задание составить краткий конспект истории становления спецпсихологии у нас и за рубежом Понятно что во всех странах мира они похожи но вдруг кто не знает что тут у нас он тоже есть и очень неплохой Она попросила об этом лично меня и сказала что ничего из этого ей больше не нужно и что забрать с собой ничего не сможет нет проблем просто вопрос такой в смысле для тех кто его блога не знает Я до того вблизи не видела мне это было неожиданно Могрен уже забит отдыхающими поэтому базируемся ближе к камням я сажусь дописывать отчет об отдыхе Гоша купается потом решает дойти до утеса с которого отчаянная молодежь прыгает в море Не могу попасть на страничку в контакте что-то с системой подскажите да и вообще усы иметь смелый шаг один букет стоит рядом с кроватью вся комната наполнена цветочным ароматом Здесь часто проводятся различные выставки посвященные современному искусству фотографии и музыкальной тематике Сходили на новый кошмар на улице вязов Когда австpалийские готы добpались наконец до Италии они устали от гpабежа и нуждались в отдыхе Постарайтесь встать сразу же после того как прозвонил будильник раскройте окна сделайте легкую зарядку Произошли поистине революционные изменения в личной жизни и подрос скилл рабочий Поручение же Федотову взять ситуацию с музеем под контроль смотрится странно т.к. нет никаких сомнений что он и без того опекает данный проект с самого начала Радикальные инновационные проекты предлагают разрубить этот узел переориентацией школы на своего заказчика Предположительная цена клиентской базы если она ведется что бывает крайне редко 240 000 рублей Мужик был в трансе и тихо повторял меня в городе не было квартира закрыта была А посмотреть ой как хочется Плюс хаус мьюзик не мое еще хореограф сегодня меня взбесила шажочки прыжочки еще разочек тьфу Те кто был сегодня в универе расскажите что там происходит С людьми уже давно развела жизнь или ты даже и не знаешь их совсем а тут почти вся их жизнь словно на ладони будто интереснейший роман читаешь Перед ними бабулька с вот таким пакетом разных конфет кстати из 4-х фоток что ты сделала 1-я отрезан один кусочек пальца ноги 2-я отрезаны ноги и кусочек макушки головы 3-я отрезаны первые фаланги пальцев левой руки 4-я ничего не отрезано но брюки смотрятся плохо и освещение не с той стороны Удалить страницу в одноклассниках Отпустили аж в 3 часа с информатики С плато был вынужден вернуться на дорогу из-за сильного обстрела из танковых и орудий гаубичного калибра В такие дни ничегонехотения лучше всего идти гулять голова проветрится и с утра с удвоенной силой захочется работать Вчера на искусствоведческой сборке услышала два замечательных выражения от ученых дам и сердце мое уязвлено стало он очень недобрый человек а я когда стрелял знал что это он но подумал что далеко и никто не может заподозрить меня в том что я его убил специально Отбеливание зубов от курения Однако любви куда более серьезной чем у Анакреонта скорее похожей на лирику Сапфо То ли настроение у нее было не то обычно то ли что-то поменялось в общем общалась последние 2 раза она со мной очень мило в среду вот пойду выписываться Обожаю кривляться перед фотообъективом в компании приятных девушек Полку мировых религий основанных на передернутых умозаключениях отдельных индивидуумов прибыло бывают такие моменты когда хочется сделать что-то сумасшедшее И что бы было если его не нашли а он с нами поехал Кому мы доверяем тайны Сказали что плохо но не сказали почему Скоро приедет мое солнце и будем смотреть фильм Самодостаточность как правило ассоциируется с субъектностью разве ты не хочешь быть гламурненьким Пожалуй пора готовить ужин и идти на прогулку Современной педагогической теории эта омонимия кажется периферийной и случайной Что продается в таиландских аптеках То ли металла не хватило то ли скульптор что-то задумал но никому не сказал Молдавская группа Zdob Si Zdub собирается летом или осенью выпустить новый англоязычный альбом если бы было за все время а не за последний год то было бы больше ведь АEP у меня уже 4.29 кстати это был один из самых удачных гигов на мой взгляд А может оно и к счастью А мне от этих супных дел борща захотелось сил нет Транспортная система будет серьезно парализована на один день на 18.02.2012 c 4 утра до 7 вечера Продолжение следует ну думаю что случилось что-то странное И маски для волос у них есть достойные Сегодня вечер кончился в квартире около камергерки в гостях у тети Лены которую мне очень хочется назвать художницей Приближается облако гнева не давайте ему приблизиться но еще на далеком расстоянии разворачиваете его и направляйте в другую сторону Помню момент я сидела в прогулочной коляске значит года 2,5 мне было к нам подошла бабулина приятельница Анна Васильевна нависла надо мной и принялась нечеловеческим голосом вопрошать ну как обычно Ой ты ж кто ж такой маленький тут у нас сидит Ненавижу безысходность Нельзя верить и прощать всего лишь от одного красивого жеста не хочу учить тебя злости и неверию но все же Почти с самого рождения Яси меня сопровождает Агата Кристи обычно я скачиваю все собрание сочинений понравившегося автора а эта тетя была ну очень плодовита на свои рассказы и романы и вот теперь они подходят к концу и меня ожидает Станислав Лем и цитология с гистологией то ли депрессняк то ли от погоды в общем настроение совсем паршивое Любой человек может сам того не ожидая стать преступником или жертвой преступления в любую минуту и в любом месте Пришла сегодня утром на свои танцульки Ну все сегодня будут вещать про природные катаклизмы свои отпуска хотя об этом и нельзя писать и прочий позитив Террористы пытаются напугать нас А Амстердам потому что тоже мокрый по идее мне должно быть очень стыдно Обтереть грудь живот и для ускорения обмахать потом спину Претендент депонирует на определенном счете сумму достаточную на покрытие затрат государства на его участие в выборах а что случилось-то Если очень повезет ну 65 С сегодняшнего дня точно могу вам сказать что метро это священное место для тех кто замерз Проклятые буржуи будут морить меня незнанием результатов еще недели три минимум ближе Кембриджа не нашлось никого согласного все это проверять конечно же Объяснил по телефону куда надо кликать мышкой чтобы найти его несчастный файл скачанный по умолчанию во временное хранилище К северу же от Пафоса мы посетили грот богини Афродиты где купаясь в знойный полдень она однажды познакомилась с отдыхавшем на соседнем пляже Адонисом Опять же змей он и есть змей и я весь день куда-нибудь да ходила то с Ясей на развивашки то в универ чтобы оценку по философии в ведомость проставить короче очень много по улице пешком Создавалась полная иллюзия лета и очень тянуло искупаться Фотография которая не занимала бы тут места если бы не Дима который умудрился сфоткать обычный ряд картин так необычно Ловите ниже идет и в общем обещанная долгожданная статья получайте удовольствие Когда краска высохла карандашом наметили имя Ну в общем засыпала я эту геркулесовую смесь на яблочную Повел свое чудо сегодня погулять на юго-запад прокатились на подъемнике потом долго смотрели на город с воробьевых в общем было здорово С которым я опосля цигуна занимался шагистикой Первые личные деньги появились в начальных классах школы с завтраков Первые деньги я заработал в 12 лет землекопом в археологических экспедициях и спасибо родителям за то что они мне сказали оставь их себе Монастырь был заложен в 1183 году пфальцграфом Рудольфом фон Тюбинген А написать я хотела вот что на районе сегодня подошла ко мне женщина то ли Азербайджан то ли узбечка Можете мне не поверить сейчас но потом поймете И еще желаю переводить во много раз лучше чем безымянные господа о которых я так часто упоминаю в своих постах Приятно когда их две и есть с кем разделить этот восхитительный напиток Почему-то я ненавижу серую ветку метро там жуть как некрасиво и вообще какие-то чегеря кошмарные какой-то производственный район некрасиво уродские дома Поскользнулся юзер и грохнул пентиум об асфальт тот на куски и развалился В натуре по-настоящему рвет на кусочки из-за того насколько мегапозитивные новости публикуют в интернете на сегодняшний день Кстати хочу сказать об профессиональном хирурге Тигране Алексаняне Так начинать тренироваться надо во дворе а у нас вокруг одни девчонки рождаются Так что я решила не просить всех сесть а отнестись к укладыванию как к ресурсу Так что все хорошо и хочется в макдональдс или просто съесть какой-нибудь гадости Они слегка кисловаты на вкус но это их не портит есть можно если конечно не страшно соседство с химическими складами нам было не страшно и мы ели Неделя отдыха прошла незаметно собственно как всегда Вчера имела неосторожность очень сильно порезаться срезала овощерезкой 0.5 ногтя и подушечку пальца под ним То есть размещение в пространстве таково что преподаватель ниже Я чувствую своих ушей запах гнилой Надо чаще встречаться пока не перестали улыбаться Игорь Зеленский отметил что партию Кармен на премьерном показе будет танцевать одна из ведущих артисток труппы Анна Жарова Посмотрела Влияние Бурлака Что-нибудь строительно-магазинное не знаю в общем Ну то есть вот он по лестнице идет как она его последний раз видела и идет мертвец Поклонники ее творчества обратите внимание первые три и самый нижний очень-очень Видать придется уже сегодня написать про этот чертов этикет Онтогенетически подобное расхождение между благими намерениями психозащиты и ее высокой себестоимостью для всякого жизненного пути не только сохраняется но и усиливается Затем мы своим ходом дошли до здания ГИБДД долго ждали внизу потом ждали наверху и наконец нас отвели фотографироваться на права Растолкала детей и сфоткалась Но и грустить из-за этого вряд ли стоит В Европе с 1618 по 1648 год бушевала ужасающая война между католиками и протестантами охватившая практически весь континент на сайте администрации есть какая-то бумажка еще за 2008 год Ничто не сравнится с разворачиванием ста пятидесяти подарочков подряд хоть бейте меня камнями Еще не догадались в чем засада Купец решил что она родственница его любимицы и весьма огорчился считая себя виновником ее смерти А у нас своя локальная зона нестабильности район Сенной площади и Апраксина двора Ягоды винограда вышиваются специальным швом несколькими оттенками в том числе и смешанными Выдав дочь замуж мать автоматически забывала бы о ее существовании Не буду говорить что нечего написать что ничего не пишется Приметы прыщи на бороде кстати завтра в вудсток едем со съемочной группой продолжение съемок для мегаблокбастера Зарегистрироваться в контакте Напрашиваются всякие нездоровые мысли относительно того что сдают в этот ломбард Людей уйма штормило во все стороны собственно только так я и передвигалась по залу Еще летом я купила очень ну очень красивые срезы агатов Продолжение следует Тащусь от ее скромности Может выберешь из моих дайревых его не было с 1993 года В общем остается пережить английский в пятницу Спасибо всем френдам которые не отфрендили Любой жест который не был перечислен в настоящих правилах и таким образом не может быть воспринят в качестве камня ножниц или бумаги считается недопустимым и соответственно запрещен Особо провидящие могут даже составы команд угадать в общем пишите все что вам когда-либо снилось являлось и т.д. по поводу этого матча я никогда не вела дневник но нужно худеть и хочу попробовать и вообще у меня подход как у Вас в точности но без дневника поэтому и заинтересовалась Бывший оливетанский монастырь отдан Перуджинскому университету одному из старейших в Европе 1307 Я теперь понимаю почему у всех этих мужиков руководителей есть девочка личный ассистент Маршрут пролегал вот так в чем дело вообще не понимаю Движок-программу нужно поддерживать развивать интегрировать с новыми трендами Сети и основными браузерами кто ж этот человечек вызывающий в тебе ту миленькую девчушку А в те времена на это оставалось мало времени На фоне серого неба это было завораживающим Злостный подонок в костюме дьявола измывается над людишками Неопределенное московское лето растянулось на такое же неопределенное южное Будьте способным на поступки сюрпризы Не понравилось повальное пьянство некоторые допивались до того что с трудом держали карты Продолжение следует Начался день с того что я все-таки встала в семь часов утра несмотря на то что легла в начале третьего Очень талантливый московский музыкант перкуссионист диджей и вокалист Не могу зайти на одноклассники другим логином А естественная смерть от старости равнозначна пешему способу передвижения Мы не опаздываем нас задерживают важные дела Насчет фильма посмотрел первые тридцать восемь минут а потом он почему-то завис в общем фильм так себе правда сегодня я его попытаюсь посмотреть полностью Организм пытается ликвидировать эту клетку Кстати если глава района потратится на пожарные вопросы это нецелевое использование средств преступление А в общем-то мужчину спросили Ну в общем вот такой вот футбол моими глазами К моей великой досаде на второй половине пары несмотря на проектор и отлично видные на стенке кадры я засыпала Отрисовала заново своего дндшного игрового персонажа и теперь не могу налюбоваться никогда не мог подумать что и на таком огромном расстоянии кто-то умудрится так смачно раздразнить аппетит Они про социализм знают все лучше тебя Потом сглотни ведь белки все-таки Я многого не могу и не берусь Решила с пользой провести время дома обдумать все что было в этом году и разобраться в себе Ребенок естественно тоже не в курсе что здоровенная собачка опасна Получается что Пресня оторвана от остальной части кольца с двух сторон Аленка у меня такая молодец Противоречие в том что ЖЖ изначально подразумевал предельную честность и где-то даже эксгибиционизм но когда дело касается конкретных людей начинаются вопросы В каких случаях необходимо поддерживать голову малышу Поэтому ее танец был во многом основан на свободной импровизации Фотоаппарат хотелось выкинуть потому что просто НЕВОЗМОЖНО все это вместить в карточку ну никак ни при каких условиях Накатило что-то повспоминать прошлое Наверху было написано мы больше не поддерживаем ту версию Пожалеть его проявить сочувствие нужно успокоить человека А сегодня Чернова позвонимши спустя миллион лет очень весело обсудили мою болезнь и вообще текущие происшествия Творите добро Я ведь когда-то и не думала о машине а теперь уверенно хочу сначала сдать на права Завтра с утреца еду в офис разруливать рабочие вопросы в связи с возрастающей в середине месяца конкуренцией из-за начинающихся специальных акций в частности в сегменте гидромассажа Впрочем официальные портреты не всегда высокого качества увы востребованы и другими менее именитыми особами Школа была частная и я был единственным выпускником своего года и класса это наложило отпечаток на моей личности Мы напрыгались наорались напились и вообще отлично провели время Предлагаю для избежания эффекта поломанного телефона зайти самостоятельно на сайт и изучить все платформы Я заметила за собой то что уже начинаю в красках представлять нашу вполне возможно скорую встречу Проржавшись мы рассказали ему всю историю Позже по произведению поставили телевизионный сериал Хоть водитель периодически открывал окно и было жутко холодно все же я мечтала о том чтобы пробка подольше не рассасывалась и я могла еще подрыхнуть Мне в штабе посоветовали расписываться на местах стыков переносных урн при опечатывании правда не нашел норму закона которая явно разрешает расписываться и делать фотографии этих урн или короткие видео я иду на работу потому что надо кому-то а не потому что мне интересно Неорганизованная преступность собственных эмоций Путь второй был неуниверсален школа когда-то закупила ноуты с 7 стартер с лицензиями ОЕМ которая была снесена но сами-то буковки кодов остались Как можно посмотреть кто в контакте заходил мне на страницу Организм не выдержал откровенных издевательств Первый мультик очень смешной здорово нарисован и озвучен а второй пластилиновый по типу Вороны в общем когда-то Петр I гениальный и безумный решил для блага России построить именно тут город Сможем ли мы реально глядя на вещи при нынешней демографической экономической политической ситуации удержать огромные слабозаселенные территории по соседству с полуторамиллиардным наращивающим промышленную и военную мощь Китаем высокая вибрация от которой голова становится ватной Ученики предлагали свои ответы но ни один из них не устроил Учителя В роли маньяка Роберт Дауни-младший ему идет вроде уже уложил в голове все по полочкам а тебе вдруг как покажут что все иллюзия и будет совсем по-другому Наверно придет время когда придется снова скрестить нам мечи Раньше я всегда чувствовала чужие стены что это его дом не мой а я в метро без книжек не умею Сегодня при попытке перегонки Жанны в формат более подходящий для прослушивания на компе и в машине в приводе раздался взрыв Следующий шаг как ни удивительно 2048 Ответственность за этот теракт власти США возложили на террористическую группировку Осамы бин Ладена Аль-Каеда хорошо что там не было обрыва вниз а то бы слетел точно Представители семей встретились поздно ночью и заверили друг друга что никаких претензий друг к другу не имеют что весь конфликт молодых офицеров исчерпан между прочим у них есть вакансия могу побаловать себя сладким но потом от него мне же хуже организм отвык от таких доз сахара Рязань и Сочи не в счет это были командировки в общем есть в хорошем качестве 3 и 6 сезон Папилломовирус именно тем и опасен что может быть онкогенного типа Чувствую я себя гораздо лучше если кому интересно Смотрела давно и плевалась страшно Превосходный символ сенсорной и психической ценности естественного тела ковер-самолет И я там немножко собираюсь замуж За это время подготовила журнал к югу сейчас буду любоваться может голова успокоится Разве горю такому помогут рыданья живых Я иногда думаю откуда почему и для чего есть люди которые маньяки Я думаю что молодой человек должен жить в реальности которая ничего так а девушка где жуткий диктатор отгрызает головы младенцам Вечером не было инета посидел с мобилки А что происходит в твоей голове Вообще кхмерская цивилизация в свое время была очень крупной и влиятельной контролировавшей огромные территории в юго-восточной азии открыл там дыма полно начали тушить вызвали пожарных на работе мне сегодня учинили адский квест в результате очень уж сильно захотелось убивать Миллиардер Адольф Меркле из-за мирового финансового кризиса потерял сотни миллионов долларов А мой периодически ночью начинает меня будить ласками потом одел старые AKG K-100 уже что-то чувствуется Все полицейские выступают в поддержку права на организацию общественного собрания Сегодня Геныч полдня ползал на карачках под своим столом пытаясь подключить колонки Предлагаю следующее как всегда почти бесплатное решение проблемы Я конечно пыталась реабилитироваться оправдывалась что я вовсе не про вылет а про этаж разговор вела Страшно видеть как стареют самые близкие люди Отчетность которая официально публикуется в СМИ делается совсем не для того чтобы в ней было легко разобраться Там же был построен первый в стране буер Метель что положило начало к развитию буерного спорта в России Несколько солидных частников Ничего не поняла но все очень умно и круто вот такая тарабарщина мне Вова сильно по нраву вообще фонетику я затейливую люблю ужасно Почувствовала себя моральным уродом но тем не менее все выкинула Не лезьте в его кошелек не считайте его доходы и не пытайтесь управлять расходами Режиссеру удалось создать такую атмосферу что зритель полностью включается в происходящее на экране бредятина а 3 рубля с тебя про что взяли или расплата за то что вы ее когда-то курили Вальс в 5 па внимание будет под другую музыку с переходом местами на обычный вальс подробная схема будет выложена На Родине естественно имя предателя не вспоминалось Начинался он с того что меня в начале двенадцатого разбудила мама чтобы сказать противным как мне спросонья показалось голосом что мне необходимо срочно встать и пойти завтракать Что случается когда из наших уст звучит то или иное слово Я согласна с таким положением вещей но А утром шла в универ мимо главного всегда закрытого входа и буквально в метре впереди меня с козырька свалилась пустая скомканная банка из-под колы кажется Удовольствие от проведенного времени и классные фотографии гарантируются А еще после некоторых приблизительных подсчетов я поняла что мне нужно ограбить банк ихние депутаты горсобрания дабы покрыть долг от банкротства организации бывшей когда-то на месте сочитеплоэнгерго приняли в 2008 список нормативов потребления всего и вся в том числе тепловой энергии Процветание аббатства продолжалось до войны Кипра с генуэзцами а я была сегодня в зоопарке Будет новый человек счастливый и гордый Они как их не назови терпеливо ждали своего часа Министерство культуры Франции официально признало что фрески могли быть вывезены из Египта незаконно Но есть и более интересные фильмы авторские и еропейские которых тут просто нет И именно это отличает классический средний класс бюргерство от тех для кого все эти вещи непринципиальны наемников для которых главным является количество благ и уровень потребления в обмен на которые они готовы променять свою свободу и самостоятельность открыть форточку нельзя из-за простуды Придется подходить Получать любовь в том форме которую считаю приемлемой для себя на данный момент Как обидно порой знать очевидную вещь в которой невозможно убедить того кто не видит ее в упор За это время доходим до моего дома Мне на глаза снова попалась та самая фэнтезийная история Дети растут очень быстро на прошлой фотке она совсем младенчиком была Ненавижу всех визжащих девок с умилением тискающих очередную книжку с прыщавым очкариком Постараюсь не очень поздно лечь У меня уже появились в этом направлении кое-какие идеи но конечно нужно ждать лета вот сижу и обзваниваю все автошколы ищу приемлемый вариант да и вообще надо пока полгода не ввели Это должно сказать вам о том что я сейчас состою процентов на тридцать из неуправляемой сентиментальности и на семьдесят из нервов Только что позвонил товарищ с которым я о чем-то договорился А еще сегодня меня загребла служба безопасности за то что я пронесла на фабрику электрокнигу Как Ванька-Встанька была то прилягу то присяду Как гаркнет разгоряченным подгулявшим молодцем Пива Ну очень кушать хочется Как только я просыпаюсь я отбрасываю чары сна ложную тождественность и понимаю кто я на самом деле и понимаю что весь мир моего сновидения это лишь моя собственная фантазия Усиленно ударить по двум направлениям что примечательно перед нами выступали мои знакомые с репбазы которые оказались крайне близкими друзьями нежданным в общем море позитива и рок-н-ролла А впрочем она-то сама заглавная героиня сказки кто такая Одна региональная организация ОДКБ работает на вовлечение в зону своей ответственности другой региональной организации Может если все сказали то сработает это в общем жуткий курс об особенностях развития психики детей и взрослых в условиях стесненного или нарушенного функционирования организма Кстати тема про правило буравчика есть в катином ЖЖ с этой позиции все же мой любимый фильм про любовь был более реалистичной картиной Староста неосторожно что-то сказал естественно неспроста Проанализировали мои энергетические затраты и правильно их распределили Кто-то там наверху услышал мои молитвы ругань и угрозы и сделал мне ливень ты трать себя все равно не зря а так впустую проживешь может и веселей но пустота будет Викуся моя маленькая хихикающая бусинка ее все время хочется обнимать и заботиться Собранное и натянутое полотнище зажмите коленями Оказалось столько же просто нужно было добавить окно в список пожеланий при заказе в общем вот две лучших фотки из всего того что получилось с завидной периодичностью перемещаясь по толковым спортивным internet ресурсам я постоянно налетаю на гору таких же тем но все же далеко не многие считаю возможным выложить туточки на страничке боже упаси если хоть кто-нибудь из вас самаритяне потратит хоть шиллинг на эту пластинку знать бы еще что это такое Но все же жизнь периодично сталкивала нас лбами и довольно-таки болезненно В первый раз вообще-то узнал про такую вот штуковину Фантастические ощущения пироги были с яйцами рисом и луком и с капустой ничего вкуснее горячих пирожков на Пасху не помню из раннего детства За последние годы у нас сложились очень сложные отношения периодами отношений вообще не было Состояние невменяемое руки не слушаются ноги тоже не совсем адекватно реагируют но голова страстно захотела написать об этом Ответить на него можно вполне определенно критерием уничтожения целостного процесса является прекращение существенного процесса И это очень сложно особенно когда надо слушаться человека который сам только учится и жутко не уверен в себе Еще варианты Партенит Симеиз или что-то в ту степь В первую очередь внутри произведения где неоднократно повторяется базовый кубический модуль в следующий раз обещаю в шлеме Вот с параллельной парковкой у меня и были проблемы это были просто мысли про одну личность Родители пришли к православию года три назад а сестра пару лет как крестилась Но про воду которая камень точит это ее главное оружие Так что ждем новых фотографий и более точных данных Ярким примером здесь может служить отечественная история прошлого столетия Я одиночка не люблю шумные сборища но порой мне так одиноко без дружеской поддержки А еще в последнее время периодически всплывают люди с которыми я уже очень давно не общаюсь Открытки бесплатно в одноклассниках очень долго ехали на нем Люблю тебя читающего эту запись просто потому что любви переполняющей меня хватит на всех мне не жалко Если разбирать по пунктам возможно и да кто ж спорит Друзья мои друзья что бы я без вашей с готовностью протянутой руки делала У меня парикмахер в отпуск ушел Следующий раз я в штате Нью-Мексико я хочу встретиться с навахо индейцами сегодня впервые в жизни то есть впервые за 34 года жизни в моем доме я сам Получилось 4 по 5 и пятый подход вообще черт-те что Спасибо вам дорогие мои и отдельное нежное рано уезжающим в Москву вот уж вранье насчет некрасивой тебя вот уж вранье Хорошо что это были разные недели В 1863 году с согласия семьи Раецких костел был освящен как православный храм вот мне кажется что если б я женилась на тихой домашней девушке то моя жизнь расцвела бы новыми красками Ему предложили деньги уход и всяческую заботу но он не соблазнился этим Ездил тут провожать и встречать любимую Люблю дождь когда тепло Опять-таки рядом с вильнюсским универом А про Мисфитс я плохо обосновал естественно это панк но его также можно считать доготикой они нереально повлияли на эту культуру хоть сами ее частью не являлись А мышцы все-таки болят уже чувствую Наконец-то мы скооперировались собрались и на этих выходных сходили в музыкальный магазин за флейтой Мане на 24-летие педагог обладает огромным запасом хлестких выражений любит черный юмор и естественно сливает это во время урока Многое в этом спектакле удалось молодой тогда еще актрисе Через иллюминатор была видна Родина-мать Вот и сейчас спустили его на землю и кот пополз на полусогнутых на исследования Поскорее бы эта мода с интернетом прошла Мне еще тридцати нет а я уже ночью не сплю а слушаю свое сердце Сворачиваю гамак и на баррикады Обещают в местной газете участие порядка 200 тысяч человек что для 25-тысячного городка многовато имхо После того как вы ушли у меня к вам никаких претензий больше нет Ужасные отношения между братьями-сестрами в маминой семье родителей они лишились очень давно самым трагическим образом мама осталась самой младшей А сегодня пришел товарищ вроде как будем искренне надеяться помог мне с компом Я кстати сам пришел из христианства Можешь в двух словах сказать от чего зависит качество текстур и виза Привет всем в этот пасмурный и ветреный день Определяешься окончательно ан нет очередной самообман Теперь я твердо уверена что вам можно доверять Эту подставку для журалов я делала для своей подруги-одногруппницы с которой мы учились вместе в университете Ребенок у нас резко полюбил фотографироваться требовал чтобы я его сфотографировала чуть ли не у каждого столба Сообщите всем кому можете Преподаватель Да безусловно но я не знаю что такое Боженька Но коль таковые имеются пойдем дальше Программа Космос является одной из самых масштабных программ по изучению космической эволюции Я приехал через час а работы так и не начались правда воду удалось как-то перекрыть Наберешься наглости позвонишь еще В 70-е годы в институте мне естественно пришлось сдавать госэкзамен по научному коммунизму Тварь Арагонес такую ситуацию создал Вчера сходила на Клик ничего так фильмец Когда мы только начали жить вместе у меня периодично возникало навязчивое желание закрыть руками уши и орать А самую важную точку в нашей прогулке поставил вот этот вот товарищ еще можно в бикини ходить зимой по системе Иванова Конечно все те же взрослые люди в чудесной стране Америка в 45 годах своими запретами создали этот стереотип Расставаньям и потерям я не верю я не верю в общем если бы не желтый носорожка то возможно я бы сейчас была балериной Стали пешеходы переходить дорогу в общей сложности было всего 3 девчонки Давай мы просто потанцуем для себя Спускаюсь в метро и ложусь на лавку Можно ли кушать после 18:00 а что тут писать и не знаю Поскольку мы закупили основное оборудование нам уже не придется делать такие капитальные вложения мы можем направлять основную часть средств на реактивы материалы чтобы увеличить производство товарищ говорит мол убери ты что себе за извращения поставила По всему выходило что это просто много теток в разных кабинетах различных организаций с пишущими машинками и календарями на стенах Ну в общем много обкуренных тараканов Еще один вопрос волнует меня почему в одном из магазинов он стоит 13 тысяч когда везде 16-18 Но Уилл Смит видимо продавший душу дьяволу чтобы не стареть каждой своей гримасой и ироничными замечаниями усердно напоминает как сильно нам его не хватало последние годы на большом экране Но хоть праздник домашний но все-таки праздник Померили давление оказалось очень низкое давление и очень высокий пульс Поздравляю Вас с Рождеством по утрам не хочет вставать и устраивает такие сны в которых я не то чтобы спасаю мир но если проснусь будут неприятности другим Давно ничего не писал Посмотрели друг на друга улыбнулись и кивнули как старые знакомые Проблемная кожа угри черные точки расширенные поры А вокруг какое-то непонятное что-то не дает мне этого сделать Так что теперь можете смело обзывать водителем как объяснил потом А зачем тебе было знать На площади вокруг фонарного столба разместилось шесть солидных матрон Приехали в Сяньян где и узнали что из этого города прямых маршрутов до достопримечательностей нет но добраться можно различными рейсовыми маршруточками конечно видя ее понимаешь что в принципе и не для кого ему себя в порядок приводить В частности оттуда пошла байка взятая на вооружение Шиллером о том что жена Филиппа изменяла ему с молодым Доном Карлосом И одиночество мое вовсе не надуманное а реальное завтра после 9-ти к инспектору Называется Наташа собралась приехать Показать рецепт кремлевской диеты Одни отправляют почему-то в таксопарк типа там и только там меняют стекла Кто-то купил права и накропал бездарное продолжение Отечественные чаи и коктейль для похудения А в Питере у меня родилась племяшка и я уже очень хочу увидеть этого маленького гномика и на правах единственной родной тети ищу ей самый замечательный подарок Высадив троих в машину довозки к экзаменуемому сел гаишник Усовершенствованный алгоритм по сравнению с встроенным но работает только с английскими словами Он устал после работы случается что его обижали большие мальчишки в суровом бизнесе и ругал злой дядька-начальник По вертикали чтоб весь спектр был типа радуга Профилактика и лечение рака легких желудка печени восстановление после химиотерапии Именно так номер выглядит на визитной карточке Но это была моя философская присказка Мне так кажется что вообще идея равенства свободы людей не имеет отношения к социуму некоторые вещи в моей жизни начинают не радовать Все импульсные микросхемы которые знал там нашел Хотелось бы чтобы была вся палитра цветовой гаммы а Елка светилась буйством Вашей фантазии и Вашего воображения Отдельный совет прочтите хотя бы одну желательно серьезную книгу по композиции А это не есть хорошо ибо обязательно в самый последний момент что-то случится и увидеть их не получится Скриншот с Космополитеном видела Последние года два пожалуй самое тяжелое что со мной было это разделение на две жизни непонимание того чего в общем надо Красиво домики комнатки озера искусственные горы деревья Сложно двинуться в такой очереди перевалиться с ноги на ногу не зацепив сзади и спереди стоящих Вот Черный Лимузин и ожил и действительно стал самым лучшим и удивительным автомобилем в Мире он был самым быстрым самым мощным в общем самым-самым Кто бы о таком мог вообще подумать Иногда то что происходит в любви кажется очень жестоким Вместо этого ты просто обращаешься к прошлому опыту В российском правительстве изданию подтвердили факт получения письма от госсекретаря США но отказались раскрыть его содержание А о чем могут говорить две хорошие подруги учащиеся в одном вузе и встретившиеся для похода на концерт Так что у нас будет теперь где культурно отдохнуть а вообще Жень я оказывается убежденный урбанист Некоторые люди считают стакан наполовину полным некоторые наполовину пустым Посочувствовали бы а то накинулись на старого чела Но то что сейчас вы испытываете неприязнь друг к другу это естественно потом через две пары курю на порожке охранник выходит я его про милиционершу спрашиваю чего говорю девушку не пускали а он мне вообще откровение а у нее пистолет У нас тоже солнышко но еще очень холодно Но став старше она осознала что точность и четкость ее все На выезде из Клина бдительные гайцы на посту решили проверить актуальность моих транзитов ссылка на статистику liveinternet по сайтам рунета А вы помните свою первую любовь С ним ничего не сделаешь от него никак не избавишься как в бомбежку бомбардировщик из рогатки не собьешь Ну ты сама в общем в курсе Грабитель поехал в сторону Краснознаменной улицы по встречной полосе и по дороге задел три автомобиля Через 10 шагов история повторилась но уже с другим человеком и тут до меня дошло в общем мелочь а приятно раз пять я так наверное на ВДНХ и здоровалась Мне ничего не оставалось делать как основывать еще один город дабы заделать дыру в державе и производить длиннолуков с катапультами Вам только кажется что вы выигрываете деля покупку на платежи в итоге они накапливаются вы теряете контроль и платите в месяц больше чем можете себе позволить Поспишь тут в большой комнате что как проходной двор для всяких непонятных мне лиц мужского пола Объясняла моей начальнице что я заболела и больше не могла быть на работе Раньше только наличие зубной щетки и всяких других мелочей выдавало мое присутствие в этом доме а сейчас здесь моя энергия моя любовь мое приятие этого места Едешь и не знаешь что в Норвегии расстреливают людей Появились новые военные угрозы против которых как показывает практика США не очень-то способны защитить характер угроз таков что с другого континента их не решить Наверное почувствовать что-то точно можно а то бы почему эта старушка с таким осуждением на меня смотрела в общем для обычных людей занятие тоже было найдено Вернется напишет заявление об увольнении Серебряные звезды нашептывали ему слова а ночной шутник-ветер играючи вплетал в эти слова ритм и размер Медленно-медленно просыпаться под приятную музыку Теоретически за счет валютно-обменных операций банкиры могли бы компенсировать недостаток наличных средств Соответственно вы получите просто массу предложений На огонь реагируют достаточно выборочно тупо на источник тепла не кидаются то есть если развести огонь то видимо их внимание привлечь можно но из-за облаков они просто так не покажутся В тебе ценят доброту и отзывчивость лето 2011 если возвращаться к этому куску моей жизни началось и вроде недавно и вообще как-то давно Теперь мы не бомжи теперь мы банкроты но абсолютно счастливые Он будет знать что вы тоже что-то можете сделать в этой жизни и уважение к вам только приумножится Не юзаю и надеюсь не придется юзать Кто составит компанию в бассейн завтра А пока нужно наслаждаться тем что нам дано и присматриваться к календарику когда и куда можно выехать для кратковременного отдыха Меня не было дома когда она умерла Стесняюсь спросить что такое ирригатор Вчера меня насильно затащили в Коломенское потом стемнело и похолодало скачать одноклассники на мобильный телефон бесплатно Есть такой капиталист в тюрьме сейчас сидит и похоже долго еще будет сидеть Он бесследно исчез в восемьдесят девятом Остается смириться и бороться Дома ждет еще одна книга подобного плана даже не знаю начать ее завтра читать или разбавить чем-то романтическим или фантастическим Последняя фраза явно впечатление на тебя не произвела Но все же это мелочи по сравнению с тем что могло вызвать у Крысы такой силы беспокойство Готовится видео-репортаж о конкурсе Мисс Латина 2012 власть и управление конструкции человеческого ума лежащие в основе его теории объяснения Соответственно наша звезда прыжков с шестом с результатом 4.60 первая На последних звонках девочки плачут почти все как многие наверное слышали в некоторых европейских странах нужно платить за проезд по дорогам По моему мнению это самый ужасный сбор из всех что у нас было От нее особый кайф можно постоянно регулировать толщину и форму линий Разве нормальный человек отправит в ТАКОЕ заведение родных людей На полнеба растянулся черный дымный след Мультики Ты вернулась Я тебе так рaда Немало достижений было и в развитии электровозной тяги Представьте себе что это сотни килограмм муки распыленные в воздухе Формулы правда ему приходилось зачитывать вслух или записывать Если ты не возьмешь ответственность за написание картины то за тебя ее напишут другие Он принес новый флакон духов или туалетной воды уж не знаю но раз в несколько часов ей весь обрызгивается Подливает масло в огонь активность одного гипермаркета который пользуясь жадностью и или бедностью наших односельчан как будто специально создает давки и очереди за дешевыми мандаринами Права мне жизненно необходимы и я не понимаю как могла жить без них столько лет и самое главное как я буду жить без них дальше работать начинаем потихоньку но планируем развиться межгалактическими темпами с вашей помощью кстати Сказали подождать как-то жалобно отвечает мужчина остальные молчат Параллельно проверяю написанное на смысл активный процесс Как место захоронений эта территория использовалась уже с 30-х годов и было засекречено вплоть до 1989 года по вполне понятным причинам Аутоагонистофилия Autagonistophilia сексуальное возбуждение от того что являешься предметом всеобщего внимания или от создания условий при которых такое публичное наблюдение возможно Надоело закапывать талант в землю Утро самое удачное время для беспокойства и депрессии когда все представляется в самом мрачном и черном свете Очень часто мне нравилось что мне прощается тот или иной поступок потому что я маленькая Ограниченность в 160 символов латиницей придает им емкость брошенного слова иногда необдуманного горячего случайного а электронный формат долгую непредвзятую память Мужчины которые свято верят что цветы это лишняя трата денег и вообще они бесполезны Сегодня я обзавелась новой пломбой в верхнем зубе Постарайтесь отличить аборигенку от приезжей старую деву от матери семейства Слушай ты как-то подозрительно сложно живешь Объявили что автобус уйдет через полчаса На детальное изучение документа и предложений участников может потребоваться год Небольшой мороз сильный ветер увеличивает градусов на 5-10 Всех воспитателей поздравляю с их профессиональным праздником Феликс сказал насчет грабель это как надо было устать в своей Москве оставшийся отрезок дня был всецело отдан ежеминутным изменениям планов на дальнейшую деятельность Да и много других образов главное в одном из них не остаться на долгий срок иначе скука-мука Почувствовав себя готовыми к новым свершениям на третий день пошли в Лагуну 69 одно из красивейших мест в Cordillera Blanca Можно еще понять почему допустим Михаил Булгаков опережает Льва Толстого а Александр Блок оказался за два пункта до конца списка Поешьте грецких орехов Пробег составил 560 км за которые было скушано примерно 55 литров бензина а это вообще насчет чувств верующих дело по местным обычаям иудейским неправильное В ARD сочли такие расходы неоправданными отметив что для зарубежного вещания существует Deutsche Welle Немецкая волна Под колеса состава с локомотивом yкладываются тоpмозные башмаки число котоpых ни машинист ни помощник не знают Нельзя считать пару попыток в незапамятные времена умением кататься Эти люди приближают земную жизнь к гармонии но дается им все только тяжелым трудом Господи помоги мне не напиться Люди невероятно часто отвлекаются на незначительные мелочи теряя способность видеть картину в целом Полагаю драка и выпивка тоже в комплекте Сегодняшний ответ на вопрос про холод А у меня солнце на футболке Артурчик тоже весьма ответственно подошел к вопросу отправки сестрицы в учебное заведение не пискнул и вообще предпочел поспать на мамином плече не появлялась тут уже очень долго представьте что вы сидите тихо-тихо и работаете с документами а рядом на пороге слышимости работает двигатель вертолета Потрясающая серия Преподавательница резко попросила замолчать или сдать работу и покинуть аудиторию Не спросишь у командования что за ерунда У меня в жизни сейчас есть два молодых человека которые мне именно что нравятся прибежишь уставшая и убитая а она и помучает и насмешит и в общем выходишь почти и человеком с дозой позитивных мыслей Счастливая кошка сразу видно что ее никогда не мыли Вообще разглядывание фотографий это такое дело при беглом взгляде нам может понравиться снимок с более яркими цветами но при более внимательном разглядывании яркие цвета в каком-то случае надоедают и больше нравится снимок с цветами приглушенными но с более богатой и естественной палитрой Мягче я тут становлюсь и человеколюбивее черт Правда большинство на зарплате а не на контракте Объективно говоря становится уже очень тяжело За синие горы где мрак и снега да и в конце концов всегда есть кто-то глупее тебя кто-то умнее тебя и кто-то умнее того кто умнее тебя Как будто тебя аккуратно взяли на руки и очень бережно несли все это время боясь уронить Удачи хорошего настроения денежек побольше и чтоб полегче доставались ну всего в общем хорошего и чтоб петух не клевался Естественно и понятно телятина без грамма жира но в первый раз побоялась незнания пароварки потому все делала по рецепту в общем Господа с нового года опять все подорожало и вы возможно неприятно удивились цифре денег которые вы должны заплатить за полутеплые и ну даже пусть очень теплые батареи в вашем доме и все утратит прежний запах даже чай бумага шоколадка сегодня я даже не стала спускаться с кровати ты ж обещал что можно тебя называть блондинчик Принципы аналогичные применяю правда иногда срываюсь на нравоучения и читаю краткие лекции Сейчас естественно почки как никогда и не болели Одиночеством блеклым безумным желаньем напиться И вот в одном из них мы обнаружили потрясающую юбку Только на память оставила записку и фотку Просмотр скрытых страниц в контакте если бы была не простуда а что-то серьезное ну или даже простуда но действительно сильная с температурой 39 и выше я бы естественно никуда не поперлась Ответьте мне на вопрос адресую пострадавшим А что вам мешало бросить вашу барракуду на этапе избы Очень красивая и добрая фотография Звонит подружка она на другом острове живет не виделись 3 года но периодически созваниваемся тебе можно и нужно его продавать Но у меня на этой почве начинает болеть живот в общем это был прекрасный день Первым же выхватом стала дорога ну естественно не без успевания по пробкам на автобус успели к двум минутам до но опоздал сам автобус и какое-то количество минут его пришлось ждать я б матюгнулся пару раз да толку-то Это конечно достижение такого не было в нашей школе давно Сегодня вообще был цирк сначала зашли какие-то плотники объясняя экзаменатору что связались с ней через емайл говорилось о заборе который не закрывается затем зашла не знаю кто с мобильным телефоном и разговаривала в полный голос За них хочется ухватиться смотреть на них учиться-учиться-учиться Флоренция встретила нас небольшим дождиком и толпами туристов Следующая тушь которая составила список моих тестов это тушь от CHANEL INIMITABLE что-то в инете ничего не нашла Скажи честно ты ж его такой игрушечный купила да Куча тематичного народу в общем втерся и научился прыгать довольно оперативно На берегу стоял PR а рядом с ним катамаран Оказывается зеленый чай без сахара вполне идет с зефирчиком в шоколаде Ну вот у всех наверное так бывает вот была какая-то вещь ну вот точно же помнится была а хватишься и пропала Егоров оперирует понятием боевых действий в фехтовании У каждого из нас есть даты которые являются для нас счастливыми и мы помним их не из-за каких-то там цифр а потому что Мировая история была разделена на три века Отца Сына и Святого Духа Муж Феи был уверен что женщина ни что иное как тень мужчины Это никак не скажется на качестве дальнейших ваших отношений просто придется немного подождать Совпали действительно замечательно на стекле были крупные капли тайского дождя а за стеклом был невероятный закат А вот если мотать данный фильм с помощью волшебной кнопки Fwd быстро-быстро то получилось бы просто отличнейшее кино где все как надо Важнейшие моменты нашей жизни мы связываем с Богом вдруг забывая что еще вчера мы не заботились о его существовании когда-то он предположил что я специально заразил кафедральные компы вирусом который вместо запятых вставлял матерные слова Тебе возразят что зато он хочет продать бизнес а деньги пустить на благо он красивый и умно рассуждает и отменит ЕГЭ и еще что-то там он такое с медициной сделать обещает от программы правда медики воют но они ж просто корыстные ублюдки и всем сразу станет хорошо Позаботьтесь о хорошей обуви для своих детей Относитесь к непониманию с двойной иронией ты смеешься над тем что цигун глупое занятие а я над тем что только глупец не занимается цигун ты смеешься над тем что всегда будешь больным а я от радости что могу быть здоровым и жить долго Пофотографировав то к чему можно было добраться мы вернулись в пространство колокольни Ну попробуйте же угадать какая это может быть часть из всех выдвинутых кандидатов Очищенный батат превращаем в пюре Но стоит ли так быстро поддаваться унынию и пессимистическому настроению Но игру в итоге как и год назад наши девушки проиграли Даже и не знаем что вам сказать Новогоднее настроение прямо какое-то Идя в сторону метро мы даже начали сочинять стихотворение начало приведу но в этот раз он изменит своим принципам и с удовольствием через секретаря ответит на все волнующие молодежь злободневные вопросы кроме анонимных естественно Это же надо быть такими наглыми чтобы делать такой конкурс с такой ужасной саморекламой Звонит просто для того чтобы поболтать с тобой ни о чем Кто воспримет форекс как игру случая того ждет сплошной крах А это уже само собой как-то случится Опрошены все до кого смог добраться по поводу лучших путей погоды и прочего-прочего-прочего а недавно у нас его вообще отключили Постебался еще и первый Как зайти на страницу закрытую от всех одноклассников Потому что в Воронеже все перечисленные тобою улицы находятся рядом Сногсшибательной ей удается быть но только благодаря удивительно едкому аромату духов даже на улице мне пришлось бежать в другую сторону и переходить проспект лишь бы не попасть в штабель Понятно что его никто не оставит Книга вот об этом как бы и есть о непостижимости в общем это известие подлило масла Хотя некоторые вещи я могу делать в столице для своих близких невзирая на их протесты Если кто-то еще хочет первести деньги мне на счет в Израиле у вас есть пара дней пишите мне в личку К ночи облака истончились и круглая луна тускло просвечивала сквозь белесую кисею озаряя одну сторону улицы сероватым светом Затык заключался раньше в том что мне нужна была крыша дома а зимой на них не проберешься да и весной не очень-то это нам так просто повезло Она любит играть поэтому если она веселая это вовсе не означает что ей действительно весело И она работает намного более сильно чем вся муть НЛП Замечания и уточнения к этому посту приветствуются Кто ж знал поедая котлеты с картошкой заботливо приготовленные мамой они у меня вообще супер что вечер намечается насыщенным на приключения извините за сумбур это от волнения Оказалось что надо сделать видео переконвертить и слепить в одно Проверка перед сдачей 1-го тома День субботы 6 декабря начинался вполне обыкновенно Все они жили когда-то все мечтали о тепле девчонки в индии все на премьере слезами заливаюсь какие они счастливые уже глянули что за шедевр выпустил Шах Чем отличается спасательная археология от любой другой так это тем что для нее не существует времени года Написать что ли завтра Стасу спросить нет ли у них ливня Ведь время нисколько не ждет Совершенно случайно оказывается что сей текст существует в отправленных на мыле Пытаюсь подобрать свой труп однако он по всей видимости все еще находится в теперь невидимой подводной лодке и нарезает круги над бездной в середине локации Им всего-то и надо ножницами в насильника за непристойные предложения ткнуть посильнее и бежать дальше маникюр доделывая Непредвиденные обстоятельства требующие решений Не говоря про то что в самом музее толкучка несусветная чтобы получить порцию каши надо было отстоять около часа мы так и не дождались Поздравляю с очередной публикацией да еще в японском издании класс Взрослея мы забываем о радости магии волшебстве удивительном и неповторимом очаровании снежного праздника довольно слабый фильм который спасают только милые нашим сердцам пейзажи Самуи и Ко Тао а также звукоряд Я говорю да ничего я тоже из офиса тебе пишу Некоторые в домашние сады отдают вроде такой эконом-выход Мама нас с Мишей когда мы втроем называет общим ребята после Др мне как-то особенно стало не хотеться жить Убиться веником ребенок знает что он тупой находится в самом низу социального плинтуса и ему это нравится Поздравляю с ДР камрад Если вас освистывают болельщики значит вы морально не готовы выступать за клуб который любят в Петербурге и который так поддерживают спонсоры А Ясна рыбок очень любит может подолгу их ловить сквозь стекло аквариума Попыталась жить без жалоб А некоторые мои знакомые мущщины держат свое лицо а также подмышки на безопасном расстоянии от лезвия бритвы Чувствовать себя его частью здоровое отношение и к себе и к этой общности Погода вроде разошлась но уже все выглядит по осеннему блекло Завтра как надену их и как все увижу а если есть общение то оно очень поверхностное зачастую неискреннее Ну это ладно а дело в том что эта прекрасная девочка сейчас болеет и не может принять участие в этих мастер-классах мое счастье Единственный положительный момент мне сделали укол от столбняка Мне нравится быть женщиной за двадцать Стал похож на зажравшегося престарелого европейца Краска облупилась замки на калитках сорваны заборчики покосились во дворе стоит разруха и запустение и вот на столь позитивно-пьяной ноте меня в два ночи привезли домой Меня хватило на один раз после чего я на неделю решительно выпала из виртуального мира в реальный Из одежды особенно актуальны носки шерстяные платки теплые А мой отец довольно рано усвоил что красивая жизнь никому не проходит даром Поэтому может быть кому-то моя открытка покажется перегруженной но я очень за нее горда Ты никогда не хотел стать журналистом Как у обиженной стороны у меня есть право выбирать оружие Даже самая незначительная ошибка может существенно бить по бюджету сейчас самое время их исправить и единственно чего хочется так это уснуть уснуть как можно глубже Аромат ванили наполняет сердца гармонией обладает удивительной способностью растворить суету и создать теплую располагающую к отдыху атмосферу сегодня сдала документы в ОВИР на загранпаспорт Съездила в саб общалась с подругами пару раз сходила в кино пару раз в пиццерию тройку раз погуляла с кампанией Понаобещал бедным девушкам а они ждали надеялись а он Очень не люблю когда матом ругаются в систематическом порядке когда на нем разговаривают когда мат через слово просто чтоб было и тепрь следы от этих кулаков по всему тела я кстати слышал что человек должен менять не менее 5 профессий за свою жизнь чтобы не запариваться Неуравновешенно очень мостик который мог бы быть смысловым центром спрятан за деревом и смещен сильно влево справа много черного стволы у меня возникает чувство дискомфорта Цезарь делал это не по злобе а потому что расходы его были велики и ему предстояли еще большие траты на войско триумфы и другие роскошества И сразу стало легче когда я поняла что не все были против меня Расскажу немножко про свой сон Покажи фото Один из немногих работающий в ПОНЕДЕЛЬНИК Музей микроминиатюры Русский Левша находится очень близко к вокзалу это я так на заметку и в общем-то весьма интересен Проблемы не в смысле что мы неплатежеспособны а в смысле как теперь сделать все это за счет арестовавших нас канадцев Умом сознаю что народы царства и цари умирают или гибнут Негативные эмоции оказывают разрушительное воздействие на психику поэтому лучше с этим фактом видимо смириться Пожинаем плоды веселой пятницы С рюкзаком забегаю на работу весело болтаю с девчонками вся в радужном настроении и в уверенности что от Черной речки ходят маршрутки до Финбана и толкаться с этой торбой в 2/3 моего роста по метро мне не придется Некоторым вещам очень много лет а меня это не парит Общению с большинством предпочитаю чтение книг Смотрите это и в общем обещанная хорошая новость получайте удовольствие Действие картины происходит в 1930-ые годы Лекарствами здоровье гробить Вот куда надо вести ребенка перед тем как отправить в музыкальную школу выбирай дружок что нравится причем очень забавно у них есть юридический департамент руководитель Кузнецова Оглядываюсь назад и кажется что настолько долгого месяца у меня давно не было Все меня теперь здесь больше не живет На века поставленную цепь не развести И теперь собственно по поводу несанкционированного торможения Пионеров Мужчины и женщины могут находиться только на своей территории Эта задача во много раз сложнее чем исполнять выученный текст поскольку артисту при прямом контакте с аудиторией нужно быть готовым к любому развитию событий и обладать мгновенной реакцией Самый простой способ получить белый и ровный потолок провести его выравнивание с помощью штукатурных смесей Прямо зуб на зуб не попадает Самые известные столбы как я понял это Перья и Дед Для меня эта работа потеряла как-то изюминку и мне уже очень лениво вставать рано Опять мне будешь приключения свои описывать Клубец весьма себе неформальный отсюда вполне приемлемые цены для центра Москвы и при этом как ни странно довольно вкусно готовят Велосипедисты лыжники и бегуны чаще всего замедляют ход возле собак и все проходит спокойно Кто-нибудь что-нибудь понял И ему по-настоящему повезло чтоб всегда любимая команда была Чемпионом Сабурово в расчет не берем сам понимаешь Муж конечно не Ален Делон зато и в зеркало так часто не смотрится Все это от того что мы сами создали высокие требования для себя и компании ну ведь совсем ничего сложного казалось бы Совладав с собой он дал клятву Вот собственно такими космическими цветами с загадочными переливами это стекло и привлекло меня и заставило искать и копать дальше жду когда он отойдет достаточно далеко чтобы мои передвижения его не пугали Мудрейший тот кто знает о других Спутник позволит наблюдать за потенциально опасными явлениями в атмосфере Земли Некоторые моменты перекликались с его выступлением два года назад Пусть тусуется дальше И никакие мольбы просьбы и уговоры не способны растопить их ледяных сердец Прочитала тут новость что 21 июля то есть в день выхода седьмой книги начнет работать телефон доверия чтобы прочитавшие поттероманы туда звонили и их смогли убедить что жизнь еще не кончилась Я тоже очень люблю их иначе бы задача тети провалилась Никуда не денется Неожиданно из подворотни в Олега ударил яркий прожектор патрульный трактор с лязгом выкатился и остановился возле мальчика Прекратите этот дождь из событий но обижать его неохота поэтому молчу Ну и собственно готовься к кризису 2018 примерно года опять жилье подешевеет квартирку или еще что-то можно проапгрейдить если во всеоружии забавно что танцует не исполнительница песни я как-то к такому подходу не привыкла В общем я отлично провел время а если еще учитывать 26 рублей в кошельке то вообще все клево Надо у них спросить рецептик Какой-то период времени мы вообще не общались Каковы ваши любимые и наименее любимые слова Сегодня яичницей никто не завтракал как впрочем и вчера на ближайшем к нам рынке мы ели фруктовый салат со свежевыжатым соком как в старые добрые времена в Бразилии Особое место занимает чудотворная икона Лобзание Христа Иудою Так как эти яйца жалко есть а хочется все больше любоваться их можно покрыть лаком даже прозрачным лаком для ногтей ================================================ FILE: data/example_data/RUSpellRU/sources.txt ================================================ очень классная тетка ктобы что не говорил. Может выгоднее втулку продать и купить колесо в сборе? Довольно большая часть пришедших сходила с дорожек и усаживалась на траву. Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera. Опофеозом дня для меня сегодня стала фраза услышанная в новостях: Ну не было поста, так небыло! Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал. Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек... Пояним эту мысль. она прямо бурлит у меня в крови, тормошит какими-то советами, смотрит на меня из глаз моей дочки, что носит ее имя. Полчатся вот такие язычки. Роспись была назначена на вторую половину дня, поэтому время на прогулку и фотосессию было ограничено. Иногда мне сложно понять: как можно не любить своего ребенка. в массе своей они конечно все оччччень милые ) Нащщот Чавеса разве что не соглашусь. Нужно просто захотеть что-то сделать ради того, чтобы все стало так, как того хочется тебе. Многие сетуют на отсуствие " живого взаимодействия между учеником и учителем " - а в чем оно по сути? Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. Нарасно выброшенные деньги на билет в кинотеатр. А теперь я пойду профилактически рыдать в ванную, как все толстые неудачницы. вобщем как вы знаете из моего не давнего поста я жаловался на пропажу писем с моего ящека на почте.ру Предлагю поиграть в детскую игру " Ассоциации ". Сегодяшнее утро выдалось просто волшебным. хороше что на выходгых не было стен, только деревья да ручьи... Было тяжело, переводил беседу карабахский армянин. она сама придумала образ, и как бы небыло, думаю ей удалось передать атмосферу... А Рите снятся сны, в которых меня убивают, патаму шта я пытаюсь всех спасти. Лчше б этот бунт эритроцитов переждать в дубраве люминала, У нас всегда достанет сил, чтобы перенести несчастье ближнего. Поффтыкав в аэропорту поехали к билетным кассам где я взял билет на поезд. Компютерная программа для улучшения зрения а днем мама снится как будто мы с ней в соре и она мне чтото выговаривает... Интересно чтобы было, еслиб этот фильм посмотреела бы с Димой... И вот наступил сладостный момент - я вышла из дома в шесть вечера, против планируемого без пятнадцати, и поспешила на встречу с Надей. Мошный лазер - в нерабочем состоянии - 350 кредиток. Так вот я боюсь подержанную, потомучто меня провести как нефиг делать. хороше когда каждый год как первый... Особенно мне интересны Капулетти, включая и прислужницу Кормилицу, и молодеж которая будет учавствовать в поединках. седня должен был на работу притащиться программист и вешать всем оплеух, причем бОльшую часть на меня! Отвественность за реализацию, естественно, лежит на контрактных пивоварах. В принципе, я к этому готова. Ограничте время между кликами, что-ли... Кили открыл, что недоступные наблюдению поля - мозговые, гравитационные, магнитные и электрические - состоят из трех потоков Эстония, эт канешна не Португалия, но 4:0 тоже результат! мы понимаем друг друга с полу слова, но диалога никуогда у нас не получаеться... Начальнег зажог павзрослому: всю предудущую неделю ходил покрытый прыщами, а с понедельника слег - ветрянка. Подсаживаеться женшина - иностранка из Норвегии, она приглашает меня танцевать, оказывается что это место слишком крутое для меня, я загруживаюсь и больше в этот вечер не танцую... В мире, на самом деле, крайне мало действительно по-настоящему значимого. И еще тут ряда на 4 назад какието малолетнии наркоманы, не понимая всю трагичность момента, начинают хихикать, потерянная молодеж. Ощушаю себя с ними монголойдом, я никогда так много не молчала как молчю тут, и не потому, что языковый баръер или еще что-то, просто коментариев нет Отвественный редактор издания, Юлия Потемкина, прислала мне потрясающий ролик про триатлон. Пополнил коллекцию шмоться от Fallen, всвязи с долгожданным завозом. Атличный лотос у тебя Меня никто ни о чем не просил, просто хочется поделиться... Чем Дяченки и Олди мельче философов с мировыми именами? Мы с Сашкой купили ( надо было что-то в бассейн на корпоративном отдыхе, что ли ), а они нам обоим оказались неудобны дико - высокий подъем у обоих, а они по-моему на плоскостопых расчитаны исключительно. Такое ощущение, как будто до этого видел сон, а сейчас только просыпаешься, но почему-то все адово болит и дышать трудно. Обълись пиццы и всячески ввеселились. Возможно, все ограничится приятным знакомством, а возможно и любовью на всю жизнь - кто знает? русским мог стать любой, кто любил русскую культуру, родину, говорил по-русски. кому подойдет: инопланетянам, или людям живущим загородом, или владельцам ну оооочень большой квартиры с ну оооочень большой кладовкой, куда это чудо технической мысли можно спрятать. Распрашивая иностранцев-гостей Питера о их впечатлении от русских, частым комментарием был тот факт, что все слишком сердитые и серьезные, никто не улыбается на улице. Библиография, приведенная в конце книги, впечатляет. А про дырявую книгу я даже не знала, спасибо, что заинтересовали ) Зашел в в какой-то сетевой европейский ( не помню название бренда ) магазин, - купить сыну игрушку из командировки ( lego ), - цены Московские, девченки-продавцы по-русски говорят плохо. Сегодня вот днем выдалось свободное время, и я опять ходил кататься на коньках. А она научилась справляться и жить дальше, зная, что близкие люди страдают, чувствуя собственную боль. Зубодробительня гребенка с острыми камнями на протяжении всех 50 км пути! Слава богу, на минуту мне показалось, что я оглох. прийдя в МГТУ я был удивлен никого необноружив там... Профессиональнаякарьера Патрисии началась - чтовполне закономерно - недалеко от родных мест, но за пределами Франции. и как Мишка сегодня сыграл, и как тот самый ненавистный Олег им гол каааак забил! а спустя три часа я зашел в серверную школы которую мы обслуживаем чтобы выяснить отчегоже всера небыло у учителей интернета и хронографа... Уилл был мастером прятаться, но не мог воспользоваться своими талантами, потому как не имел возможности обнаружить в темноте никаких укрытий. давайте на эту вот самую тему побеседуем годов через 25 :) Но тут-то дело за малым - написать ее. Онибыли лучшими наавтобанах инагоночных трассах, создав универсальный миф обидеальной спортивной машине. и мне вновь хочеться изводить пергамент на писмена... Обнаружиласть тут в залежах. Я вчера чуть не купила такие же в супер-маркете - золотые и серебрянные, но решила, что дороговато ( по 160 р штучка ) Расщифровать аудио мне так и не удалось. Любителям политических " боев на цветных карандашах " можно не читать. Самойто в разы дешевле сделать... Хоть я слушаю тул недавно, и ваще тока полтора альбома успел послушать, мне все это нравится. Едем дальше на север, проехали город Бовен и к вечеру уже были в Таунсвилл. Навернео поэтому мне мечталось о сынишке. Игрушку " Покорми меня " ооочень давно хотела сшить, но доделала только сегодня ( Яся стала плохо спать по ночам, а днем я от нее стараюсь не особо отвлекаться, поэтому времени мало ). Варикозная болезньматки симптомы Вопрос в том, как совместить все эти векторы. ника прости меня пожалуй ста я очень виноват определяет правила взаимоотношений вас и их и даже както легитимизирует ваш забор. как же так надолго артисты отпускают? Все желающие могли в любой момент совершить паломничество на кухню за добавкой. Мущщину очень озаботил фон ( точнее, надпись ). Ближе к полуночи, когда станция совсем опустела, он все-таки решился. никада не пить - оооочень знакомо! и эту Радугу Вы рисуете своими мечтами, фантазиями, елочными игрушками, украшениями. Не люблю рассказывать о себе. Симаатическая система наоборот отключает все железы внешней секреции: как потовые, так и слюнные. Разультаты моего длительного сотрудничества с компанией Nettrader. Съездеть чтоль в музей какой, коли они все сегодня бесплатные. Першпектива купания в ледяной воде никого не радовала. Это основной курс, в рамках которого есть еще несколько, но о них позже и дальше. Припораты от варикоза Съездели два раза с подругой за билетами, вечером в рассчете на то, что купим чуть раньше и пойдем, приехали... Тогдя я возмущался, что некто, не понятно как, получил архив диссертаций РГБ и барыжит ими. Сранно как-то поиск в ЖЖ работает. А вобще пришла в голову мысль: вроде не весна... Оченьславный ребенок, настоящий ангел! Пришлесь идти в обход... Приветствутется знание технических основ ( принципы построения БД, опыт программирования на Navision Axapta ), опыт работы на стороне заказчика. Провожаем жизнь мы с тобой. Опаслася ли он своих снов? Расжился на выходных экземпляром сабжа. Однажэды обезумевшая старуха Людмила Ивановна, раскидала все наши зуные щетки... Военные в целях безопасности оцепили пирамиды, а также Каирский музей и другие достопримечательности. Пользоваццо сервисом проще простогО! Железная машина поломалась об православную духовность. Небыло бы универа и одинаковых прохожих, калясочников с детьми, блонди в розовом и голубом, нелепых гоп возле игровых автоматов, и самих игровых автоматов, гламурных перцев, реалити дом2, партии КПРФ, алкогольных напитков, однообразия на прилавках магазинов, отсутствия скейтпарка, запорожцев ), разбитых лиц и т.д.... Сочуствующие тут же бросились развивать тему, ( и так достаточно бредовую ), и доев свой грибной завтрак и покатавшись на радуге ребята засели за КРЕАТИФФ. Их творения могли казаться странными, непонятными. Нсли не ошибаюсь - в первом томе Экономикса изложен. но когда сажусь писать, мне начинает казаться, что не следует об этом писать. Но зато были и болезни, и паразиты, и полное отсутствие представлений о гигиене, да к тому же численность населения контролировалась тогда не современными контрацептивами, а саблезубыми тиграми и всякими прочими хищниками. Однако статуи, выполненные им, всегда лишены глаз, - что воспринимается с трудом даже теми, кто ценит многие другие аспекты его творчества. Его рождение - самое таинственное и непередаваемое земное чудо. Челка отросла, лезет в глаза и уже мне мешает - но идти стричься, естесственно, некогда. Теперь сюжет еще круче: Джефф Гордон ( известный автогонщик ) взял баночку пепси со скрытой камерой и разыграл менеджера автосалона Слишклм много тоже плохо, но и какой-то постоянный минимум абсолютно необходим. Однимает хорошую девушку, его знакомую Все подруги всегда курили, я - нет, еще нет. Основыные же беды от злой Эриды, от нее же война, а не трудолюбие. Когда что-то не получаеться, падает самооценка, разрушаеться идеальный образ. Ктото выкладывал вконтактепро медикаменты смысл был в том что существуют российские аналоги которые намного дешевле иностранныхи приводился список лекарств Кроординирует движениие специальный человек, идущий спереди и, как правила, задом наперед. После этого греки завладели преимуществом и вскоре отыгрались, а затем и вышли вперед. даешь больше ножек, кстате можно немного и позагорать! Расказчик бодрый, понятный, а главное - компетентный. говорят у него был шок когда мы прихали. Не ссорьтесь на людях, и не показывайте недовольство тем или другим образом. Выдали студенческий билет, по нему она жила годы учебы. Проичитал удивленные отзывы о православном нисхождении огня. вобщем когдато год назад по сети ходила записо звонка в техпотдержку некого пользователя СТРИМ которого довели до пены у рта с криков " разрывы " Но, что ты с ними сможешь сделать? Сейчас более известен его сын, Максим Кантор, художник и писатель. Я могу есть нмного, но очень начинаю тосковать от однообразия. Открыывю книгу про детские инфекции, там все написанно и про слабость, и про капризы и про резкий подъем температуры на второй день, после которого и начинается высыпвние! Перессказывать содержание спектакля не буду - он ( как и все елки ) довольно забавен. он тряпки убирает там человек полуживой в хламину пяный!! фотка классная кстате, хоть и не по теме Разговор чтото зашел про роботов и я долго и с увлечением рассказывал ей о философско-антропологической подоплеке многих фильмов типа Иск разум, Валли. Иногда даже приятно, что выходные закончились и можно вздохнуть спокойно: D И если им вдруг хочется дать оценку, то чаще всего эта оценка касается именно этих шаблонов, а не реального человека. вот например незря же нас поделили на мальчиков и девочек, ведь девочки берут то, что не дано мальчикам и наоборот... Ну вот, сегодня дружно находились в каком-никаком напряге, по метро каталась много, ну и, собстно, ничего не было. Как-то раз было подобное с одной знакомой, но вроде бы инцидент был быстро исчерпан. Я б и на такой состав бы сходил, еслиб билеты стоили раз в 5 дешевле. Он становится безупречнее день ото дня, вот о чем я. Сегоднямрачная погода. Помоему в челябинской транспортной реформе никогда небыло головы. Священослужители ходят в белой или голубой рясах, без всяких золотых ОГРОМЕННЫХ золотых крестов. Неососознанно стал вспоминать этот стих, сначала отдельные строфы, потом куски... Сохраю на память кое-что по этой теме. все говорят что интернет-блогосфера - начинает както влиять и в чемторулить... the sims 3 увеличить грудь Но анализируем публичного человека, чьи высказывания по одному из самых болезненных вопросов современной России тиражируются прессой в качестве авторитетной, почти официальной точки зрения. Поэтаму возникло не допонемание и весь этот фильм. отпуск на носу - незнаю как его применить ) Свободя сознания - это отсутствие устойчивой психологической зависимости от чегобы то ни было. но сыро очень и ваще ат полный. Для меня было очень важно приходить поздно домой! Воинственный и могучий бог войны воплощает в себе страсть и чувственность Попрежнему есть молодые люди, делающие записи в свои записные книжки. В общем, я и так уже собирался ставить игру, а после такого... Хороших всем выходных и веселого праздника Песах! Первй день автобусная экскурсия, до биг бена не доехали. никада не угадаете что это кстате Создатели рюкзака учли, что бедра человека выдерживают бОльшую нагрузку, чем плечи, поэтому шестичасовое таскание сына в рюкзаке никак не отразилось на моем теле. Пожже буду выбираться в сторону центра. Я очень рада, что вам мои посты нравятся :) каждый атом Вашего тела был когдато материей ближайшей звезды Вполне себе нормальный лагер. Улица Кирова теперь пешеходная, давайте переименуем ее в Пермскую. Отадала долг маме и выдала денег на прокорм. Но ваще, конечно, хочу Джойстер. Я тебе ничего рассказывать не буду, про меня ты и так фсе знаешь... Сань, я про себя вобще молчу. Диктатура одной партии была заменена диктатурой военной хунты, столкнувшей страну в пропасть гражданской войны, продолжавшейся 10 лет. Препораты для похудения на заказ Это, конечно, цветные иллюстрации, никакие не фотографии. А еще там на митинге вроде бы выступали местные музыканты. нащет гуливера - детям читать невозможно. Самыи прикол в том что делая дела в своеи жизни мы этими делами показываем отношение к близким своим а когда много гадости сделано но попятную уже не-как слишком многих обидели. В этот момент я определяю, что нахожусь под властью этого наслаждения. Страныым стал институт наш мировой Рекоммендация к жизни в этом сценарии следующие. Проблема в том, что я вообще не знаю, кто мог бы это прочитать. Напректировали различные модели горок, решили сделать ее разноцветной. Удалитъ анкету на однокласниках возможно, последнее, что я скажу кого-то немного обидит, но этож дневник, блин, и в нем я должен писать то, что думаю. Селайя считает, что против военных намеренно выдвинуты обвинения в незначительных преступлениях. Рэмонт это просто полная жесть... Руки-ноги раскину и сплю, а еще пальцы растопырить - ваще снежинка! а еше хочу застрелиться сразу из двух пистолетов и почувствовать, как две пули расплющиваются друг о друга внутри черепа. Всю голвоу я сломал незнаю уже ничего вобоще нихочу Об этом так стыдно писать, но я только в начале пути... Афальтоукладчик с проясненным лицом, улыбаясь: Но для большинства людей новые нормы, по всей видимости, не угроза - налоговики и валютные контролеры просто не узнают о счетах, уверен Кандыба. Короче полный бойцовский клуб: " Он спит пару часов в сутки ", и кароче он вообще крутой чел... Читай книги с телефонов и компьютеров. Тепература в выходные флуктуировала в районе 37, короче нормальный рабочий процесс. Правило земледелия: Все взаимоотношения можно и нужно культивировать. Сделайте дыхательную гимнастику: медленно, глубоко вдохните, на шесть секунд задержите дыхание, затем в течение шести секунд постепенно выдыхайте. Кчакчество вроде ничего -- друг не жаловался. Симтомы зажатия пупковой грыжи Потму что это - от Аллаха. Разьве что бегущая вода... Прищлось ответить, что " случайно не я ". Из особенностей стоит выделить то, что мне пришлось вести занятия по математике. Осколки -- зубристые, непослушные -- дни, ночи, вечера. Прямо на храме, обвивая корнями его башни, растут большие деревья. Я вежливо отвечаю, что они ошиблись номером и Зинаида Васильевна тут не проживает. Результат на лице налицо ) Хорошо, что Гошу успели унести, и Гошины родители не стали свидетелями моего позорного открытия. Завал кароче, но я не унываю. Я знаю, где живет хорошее настроение! Прикодьные статусы для однокласников Много места, если не основное, в романе уделяется внутренним переживаниям героев. Вчера в восемь договорилась встретиться у Мака с подругой, откуда, собстно, двинуться гулять. Вообще врать намного сложнее, этож все надо будет запомнить Кому и Чего ляпнул, а у меня на оперативке объем не очень... Новая жизнь, как таковая, ее особо не заботит. Вы меня извините, но я опять про своих Какбе лично наблюдал щаз. И толи погода была мрачная тьоли еще что вобщем случилася со мной паническая отака, такая жесткая вот атака... Тяжело писать письма школьной учительнице русского! Только мне даже себе самой это признавать не хочеться. Помотрть на меня красивую можно тут: Я сомневаюсь, что белое золото лет через пять не начнет меня бесить. Наступила зима, хочеться играть в снежки. Спасибо милые мои за ваши поздравления, комплименты, улыбки, подарки, цветы. Професор хотел сдать рукопись в полицию и проверить чернила на рукописи, но патриарх не разрешил, а нужные листы вскоре были вырваны... тебя мы в первую очередь возьмем - ты умный и у тебя располагающая внешность! Пприкольные статусы в одноклассниках Каждый райтер или группа райтеров старались внести в свои рисунки что-то новое. Хотя, возможно, подобная неинформативность связана с новым Регламентом Премьер-лиги. Начьните питаться ПРАВИЛЬНО! ну всмысле еще одно солнышко, помимо меня: ) а вот както у коридоре встретил таки и припер. Ты -- бесстрашная кошка, которая неожиданно может выкинуть все, что угодно. Прснулась в ожидании чего-то чистогои свежего ) ) Все три монеты можно приобрести в едином наборе по цене 1020 евро Онвыгребает ее из под костей, которые лежат у его ног, машет своими хвостами, сворачивает и закрывает четыре глаза. В такой светлый праздник хочется иметь хотя бы небольшую книжку о вере, доброте и собственно Пасхе. Смешать апельсиновый сок, уксус, горчицу, мед и масло, заправить салат, посолить, поперчить, разложить по тарелкам. Приехали мы уже ближе к вечеру, пока заселились - стемнело. либо и небыло никогда любви то, либо действительно нам без них - МУЖУКОВ никуда!!! Теоретиков тоже в мире больше, чем надо. Сегодяшние утренние планы умеренно пострадали, к сожалению. Навверное он сейчас уже проклинает не хорошими словами меня... Немог долго уснуть этой ночью. Посколько отчет деловито и весело уже написан, не буду ничего переписывать, а линк вот он Так ли влияет на качество напитка распечатывание? Мывключились впроект натой стадии, когда автоматизированные системы вкомпании уже существовали наразных стадиях внедрения. Компьюьерные мониторы для людей с плохим зрением Дольше можно делать и булки, и ватрушки, и пироги, и пирожки с любой начинкой. А на самом деле, просто начальнег активно со мной дружился, а начальнице - его жене, это сильно не понравилось. Расмотрим все необходимые составляющие " революционного процесса ". Заити вконтакт без смс Рестаран оказался очень достойным, по настоящему итальянское место. Я категорически отказалась сочинять скорбные строки о живом человеке; ведь и за здравие умерших нельзя молиться, а уж за упокой здравствующих - вообще кощунство и грех. Потреяна последняя надежда на общение. Однако и в последние дни бархатного сезона в городе еще есть, чем полюбоваться и чему удивиться. Перед сном записывайте по одной вещи, за которую вы благодарны. Если раньше, несколько лет назад я друзьями называла всех, кто мне доброжелательно улыбнется, то сейчас... Ненавидшь бардов - независимо мыслящаю личность. неее, думаю что я его опереЖУ - и выключу ноут - патамушта он долго ищет ) Убрть мишуру, быть просто собой. Как раз перед ним был километровый столб. Процедудура отбеливания зубов в краснодаре Прийдя домой не верилось, что ТАКОЕ произошло и неверилось, что все обошлось! Вот интересно, австралиец Мердок критикует вопросы политической жизни США. Атаман свистнул своим ребятам, хлопчика тут же подхватили и понесли в госпиталь, а мы с Любашей побежали следом. Коммуниисты неплохо креативят в Волгограде накануне выборов в гордуму. Я даже припоминаю картинку из советских учебников истории. Мы миpные люди, мы миp беpежем, Но седня свредничала - заставила продавщицу 2 раза перевешивать! Вижазисты комментируют, что в этой работе трудностей нет никаких: лицо выбеленное, слезки невнятные. Итак, завтра защита диплома, после которой я мечтаю навсегда распрощаться со своей научной руководительницей. А какому стилю музыки вы сами отдаете предпочтение? Об Аввакуме узнал из постов Булочникова и до сих пор он иногда репостит материалы Олега. Незная отдыха и сна, слова сплетая, граматику не упаская, поэт творил. Ответсвенно заявляю. Установила словарик Lingvo на компьютер. Все сложно и оооочень бесит. Так уж получаеться что Эти люди встают между тобой и твоей Смертью. вобщем любую моральную поддержку, в виде живой души, в тот момент. вопщем будет тебе кофэ и какава с чаем ) Причем так сильно что я даже ахнула. потомучто коньюктевит может настигнуть не только Уму Турман и моего соседа по даче ;) А потом можна увольняться и хоть в Патагонию, хоть в Гондурас. Спокойно и неторопясь расселись, едут, молчат. мне нравится мужик в сером накидке с рисунко... Скачать дополнение для оперы што бы скачивать в контакте И если б не этот год в моей жизни никогда б небыло таких замечательно теплых Вовки и Аси, Ольги, Мишани и ежика, Дюши и еще многих других! Малчик читал с упоением Сухинова -- продолжения " Волшебника Изумрудного города ", имхо, бякость страшная, но читал. Тебя ощущала, в тебе растворяясь. А в подземельях замка выставлены различные орудия пыток. существуют люди у которых не голова, а непонятно что. Тогдасоответственно говорят о язычной, гортанной или носоглоточной ангине. Розврат то каков! За то, что щеки не могут улыбаться уже, потомучто болят. И соглашаешься с ними, что ветер живой, что его сила безгранична, и только когда ты на вершине мира, ты не боишься его, ты часть ветра и ветер часть тебя, мы единое целое. Потоиу и взываю к опыту сообщников Сапсибо тебе за внимание к моему ЖЖ! В центре очень много магазинов, где можна купить марионетки разных размеров ( от спичечного коробка до почти человеческого роста ) и персонажей. Тасовоать карты ни в коем случае нельзя, скорее потому что выглядит это странно. В следущий раз будет лучше. Лучше молчать и слыть идиотом, чем заговорить и развеять все сомнения. Как ни удивительно, но я сумела побороть свою лень, и взять-таки с собой форму на физкультуру... Из сообщения местных властей нельзя сделать вывод, является ли список окончательным. Обидно, что на многих фотках я в куртке, т.к. было довольно прохладно. Ладно, я разрешаю тебе какие-то силы ( допустим 100 легких лучников ) иметь в своем распоряжении - для поддержания внутреннего порядка. Не знаю, нужно ли тебе сказать " спасибо ", что ты предвидела этот момент... Основныой причиной по которой я сделал такой выбор, является то, что я очень хочу стабильности в стране... Одна из функций рекламы - образовательная, значит она, как и искусство, является способом познания ( пусть и ну оочень особым ). такой вобще не существует причины ну тоесть она лежит с вытащенным языком! К сожалению, по большей части, это нецензурная брань или откровенное нытье. Победители и призеры награждаются дипломами и ценными подарками. а ведь часто так и бывает, свободного времени мало становится, дети, работа и фсе такое... " Ты не видела, где мои носки? Ошибчно считать, что раздача ключей ведется только в одном направлении - от сервера к пользователю. Опаздываю седня на работу страааашно. Раасстраиваться от мысли, что плохо снюсь во снах твоих-бред! просто показалось, что за ночь он както поменялся, толи подушкой я его придавила! Но сегодня мне снилось, что я ей звонил. А ночи сейчас хорошие, какие-то странные, мистические, они мне нравяться... В отличие от рассмотренных выше проектов крупных порталов этот специализированный ресурс занимается только фотохостингом. На завтрак меня ждали... Вначале мы с полчаса стояли в здании, пока нас не отвели на площадку. Я пришла домой на час раньше, чем следовало бы... потому, что я просто уже замерзла - не, ну ни один обогреватель не помогает ( окромя мужчины канешна )!!! Компнаия превратит ваших близких в урны, алмазы, фарш, листья ясеня. Празнег жуть но пусть будет - повод встретицца с друзьями и подругами... Нажусь в непонятном состоянии, настроение - то ли прекрасное, то ли паршивое. Конечно же, не обойдется без конкурсов с призами от спонсоров! Следуюшей после джо в книжке идет точка закипания. Электонная система Сайлау покажет тот процент " ЗА ", который будет заложен в нее комитетом нацбезопасности, где стоит параллельный центральный сервер. Завтрак вполне приличный, незнаю кому он кажется скудным: несколько видов йогуртов, колбасы, сыра, булок, пирогов, джемов. И ваще, интернет - почти как телевизор - наркотикоподобен. Огранизмы тут же затеяли возню, стали брыкаться, визжать и медитировать мешали. Обучно она воду пытается пить из кружки, в которой я мою стеки и руки. Дооолго шли, солнце уже садится стало, в лесу слышны залпы - тревога в княжестве, ищут нас - беглянок. некотрые ничево не соображали вообще с небольшой затратой време ни удалось доиграть... Полиция сказала, что на Карловом мосту нет видеокамер ( наверное, чтобы не портить исторический вид ). Только сегодня работала с клиенткой про переживание того, что " непонятные неожидаемые собственные чувства и переживания, непонятные их истоки означают, будто меня нет ". На Серебрянном дожде я слушала переодически его программу про джаз. Однажды в этот мелкий город приедет какая-нибудь старая рок звезда, настоящий талант прошлых поколений, и поскольку моя группа будет единственной в городе, не прийдется разбираться, кто выступит на разогреве. Считала седня по календарику и теперь зачеркиваю крестики, в ожидании весны! Мало того, что они ходят только вперед, так еще дойдя до конца, становятся королевой. Написпл коммента он куда-то пропал... Выводок чудябриков полюбому будет со мной, я их в мастерскую отвозить буду. Я сплавлю вас вместе на все времена! ну вобщем признаков нет и беременности нет! Ну, была еше одна, заменить, что ли? Реклма Пепси советует нам помнить о прошлом, но жить здесь и сейчас. В интернете более общительный, чем в реальной жизни. Ослуживание безупречноне, а цена - как раз такая, что вы ищите. А раз есть о чем мечтать, значит есть к чему стремиться. ты с какова раена объясни сначало! Пролжительность занятий небльшая, всего 3 дня. Хочу завтра прикупить какой-нибудь симпотичный удобный блокнот или тетрадь. Всегда чувствовать себя у черты, что ведет к счастью и никогда не переступить этой черты. Всякый кто выжил героем продул этот бой Незнаюкто оказался главным редактором, а совет его был похожим на мамин. Мужчинаи женщина не могут жить друг без друга, но частенько случается, что идруг с другом им становится тяжеловато. Желаю чтоб на твоем жизненном пути небыло вообще никаких неприятностей. Давольно большая цифра для 15 квадратов, на которых эти милые звери живут. Уж не знаю, кто ей порекомендовал для такой роли меня, наверное, кто-то в Спорткомитете. но чувствую чтото нето в этой газели. А то последнее время раньше восьми встать не получалось, а в универ необходимо к 9.30 прибыть... Угошали вчера своей едой. Отркрыл для себя лыжный сезон ( наконец-то ). Подделаная подпись по определению неаутентична даже если мы не можем подделку распознать. Подрбный отчет в новом году! Нам нужно признать и отучиться от нашей внутренней мизогинии, так чтобы мы смогли преуспеть и спасти этот больной мир. Последователи Тантры скажут вам, что если у вас нет времени изучить своего партнера, вы никогда его не узнаете. Я наверно никогда не чувствовала себя такой защищенной. Эти люди очень принципиальны и готовы преодолеть многие трудности во имя своих идеалов. Город можно расценивать по его ритму, в Киеве самый высокий ритм, а когда я приезжаю в Х, то кажется что город стоит на паузе. В зале на одной из стен находятся надписи, сделанные якобы классиками. Обдумывю что с ним делать и как, постинги, комментарии, оформление... Вечром мы снова вкусно ели и долго спали, все исключительно для того чтобы проснуться к вкусному завтраку. ктото жертвует всем ради любви и идет на престуление, а кто то совершает подвиги во имя любви, кто то отторгает себя и посвящается любимому человеку а кто то заставляте ради нее же посвящаться ему. Жыгули ( она же классика ) стоят на конвейере 30 с лишним лет, являясь, по существу, убогой копией Фиата середины 60х, Приора с Калиной - унылые образцы дизайна 15 летней и технологий 40 летней давности. Суп проще вылить в последний день и сказать, что да, было очень вкусно. Отечетсвенные банки в основном работали с корпоративным сектором, а его состояние сейчас, мягко говоря, не блестящее. Ваш партнер не является вашим врагом. вобщем, вижу цель, препятствий не вижу ) Снова подборка светильников по личному вкусу. Даже детей своих угомонили, что само по себе редкость. Началасвою карьеру ди-джея в 2007 году. Вадим во время важных совещаний прячется под столом, зачитываясь медицинскими журналами. Врут зеркала, что красота померкла, врут зеркала, что молодость ушла. Отметил новый год в больнице, подарив старому свой апендикс ( незнаю, честно говоря как правильно пишется это слово - не казнить ). Приведемпримеры полного несоответствия проекта многим параметрам, что и вызвало социальную напряженность на Загорянке. Прыятно познакомицца! Моий бос бывает крайне неадекватен, а иногда и более того, зачем ему вдруг понадобился мой приезд, я так и немогу понять, ну окей я буду. Монастрырь был очень большое и красивый. В деревне жил старик, очень бедный, но даже короли завидовали ему, так как у него был прекрасный белый конь. Правосланая Церковь - является единой и соборной, а потому ни кого из ее членов не может не волновать судьба своих братьев-единоверцев, где бы они не находились. Это же не развалины средневекового замка, где можно найти, если повезет, сундук пиастров или череп бедного Йорика. Отжимания от медбола 3х10 кстате баня загорелась как шульга с зимариным уехали ) Конкурс проводится одновременно в России и в Италии. - незнаю, ходить на море, делать ремонт, кого нибудь встретить... Бывали случаи, что за день заливало весь подъезд. Творческий потенциал может увеличиться. Проблема есть, даже кот у меня насмотрелся и научился - переодически мимо попадает ( он же здоровый у меня лосяра ). Особливо это чувствуется на премьере фильма, когда есть с кем поздороваться. Я вобще горжусь, как за себя не гордилась сроду. Муж уже вернулся, и Ваське спать пора, - Боже, как глупо все вышло! Ощастливленный новым альбомом, выхожу на просторы ночного города, и решаем мы с Левонтием и Анжелой идти гулять по оным, по пути втариваясь коньяком и колой. Сергейвикторович благополучно улетел в отпуск, а значит что? вижу тряпки лежат на полке у друга спрашиваю чть это И естесственно разрешили взять со мной девушку. Ну вобщем она имеет - Женское счастье! Особенный человек, естесственно - виделись по полтора часа минимум каждую неделю на протяжении 8 лет. Кто-нибудь сталкивался с такой ситуацией? Поведйте плиз, а какой предмет она ведет? Рад, рад за тебя, теперь тока экзамены сдай... Мне ничо вот пока непонятно. Вот только это по-свински и совершенно нагло. Обчным мылом лучше не мыть тело, т.к. мыло сушит, используйте гель для душа. И - никого из " моих ", а " те, что наполовину " - естесственно, притянулись к другому полюсу. С ним можно говорить на любые темы, кроме конечно отношений с другими мужчинами, чтобы просто напросто не ранить его. он естесственно за ним нагибается и вдруг в глазах появляется иконка. Чего же они так испугались все эти римляне, всего-то книга, всего-то о любви... вобщем питаюсь окрошкой, пиу минералку, смотрю уже 5 сезон клиники. Потмушто время еще есть, и деньги тоже. Спапсибо огромное за репортаж! Выходные выдались на редкость - и радость - долгими и, прямо скажем, отдыхательными. Сегодня в мои выходные, мне позвонил начальнег и вызвал завтра на " разговор ". Если Вы полетели самолетом Аэрофлота, то никогда не сдавайте в багаж ценные вещи. Поднмать надо не читаемсоть, а культуру прежде всего. Предпложительно основан в XII веке, в период правления династии Неманичей. Неожыданный у вас, мальчеги, для меня диалог. Спасатель - от него зависят человеческие жизни, а общем и судьбы людей. Хооршее такое кино классическое, смотреть приятно и легко. Ну а больше я ничего не могу советовать, потмоу что очень от секреции зависит: ) к себе его забрать не можем, т.к. с моей собакой не сживется ни одно живое существо. Изданный в 1368 году, этот устав определял горное право, порядок трудоустройства, регулировал добычу и торговлю солью. вобщем о Йоте я услышал впервые из уст оченьпродвинутого стулента-экономиста Артура который вместо книжек и тетрадок носит с собой маленький ноутбук. Работадатели не должны платить государству ) Присоединаюсь к справедливому негодованию. Ваш цветок всегда должен быть рядом, чтобы защитить от обмана и зависти и ослабить приступы ревности, которым вы подвержены Собственно, я им заинтересовалась не только из-за статьи, а вспомнила, что мы как-то заказали его в каком-то кафе в Амстердаме. Попугай с удовольствием любуется своим отражением, надувает щеки, ставит гребень. Вот хоть бы раз она чего-нибудь ответила. Посследнии две номинации не слишком оптимистичны, но если даже, мы хотя бы в одной ( из трех ) номинаций получим первое место - тоже не плохо, пиар как-никак. Но ето хорошо, так как затем из отколотых зубов удаляются нервы. На данный момент внутренняя валюта сети употребляется для покупок виртуальных товаров в играх Facebook, в некоторых интернет-магазинах, работающих в социальной сети, а также для расчетов в скидочном сервисе социальной сети Facebook Deals. крем детский ( нет, Я не перепутала со вчерашним днем - Я и седня купила, вместо лосьончЕка для тела буду пользовать его ) только она не желто-красная, а невзрачного цвета и сухая Сидела разбирала почему в момент, когда я сдаю экзамен уже 4 раз кто то разговаривает и я теряю концентрацию. Вот это-то вкупе с духовными скрепами на что списать? Но сейчас я точно знаю - на вашу поддержку в беде я могу рассчитывать. Очнеь скучала по нему все лето. ну кстате девкам было не 13 лет когда им в руки дали инструмент, а 16-17. Сложно на самом деле обяснить то, что происходит в моей душе. Парламентський принцип формирования правительства, двухполюсная поляризация политического спектра, наличие у партии политической позиции, сильного лидера и известных имен с репутацией профессионалов дают этому " правительству " массу преимуществ уже на старте. Не особенно честолюбив, но не терпит, когда его обходят по службе, из того же чувства справедливости. пожилая девица, сестра князя Иосифа Венцеля, постоянно живущая в Саксонии. Приезла мне чудище? Просвестевшая над головой пуля заставила его оберутся. Некотрым изменениям, прям скажем, удивлена... Этоперевод фрагмента воспоминаний о жизни в Англии, в провинциальномшахтерском городке рубежа 50-х и 60-х годов. Это была единственная экскурсия на гору Монсерат ( о которой я расскажу в следущий раз ) в нужный нам день. и он на удивление пришел раньше, обычно он опаздывает на 10-15 минут и я его матерю потом, но седня он меня лешил этого удовольствия ) Мы так много говорим о любви и так мало любим. Я узнала об этом давно, но меня до сих пор приводит в ужас эта мысль. Постарайтеь теперь найти и отсканировать все законы касаемо авторского права, ну и гражданский и налоговый кодекс - так, за компанию. Он станет пилотным проектом в рамках " туристического кластера " на Северном Кавказе. Проыдя еще немного, он понял, что идти дальше сегодня не сможет и остановился в Эрендзи. ну тоесть ничего конкретного, а в целом обо всем этом. После изъятия Рожновым у меня диктофона, сопровождающееся ударами в спину, я понял, что таким же образом могу лишиться и фотоаппарата и надо спасать хотя бы имеющиеся кадры. Зачем мы пишем дневники? Если очень хочется спать, вздремните. Хочется жить отдельно от этого сумашедшего стада, извените, не в обиду сказано. Он подразумевает следующую логику исследования: полностью просеквенировать несколько десятков геномов высокогорных жителей и - путем многовариантного анализа по сравнению с геномами обитателей равнинных областей - выявить различия в генных характеристиках. Чувстовалась рука тренера. Хранительница домашнего очага должна быть верной мужчине, иначе ее дети окажутся без добытчика. Норнштейн - это человек, которым мы можем гордится, что живем с ним в одно время и в одной стране. вообщем пока не прочитаете не поймете ) Низкая интегpиpованность: следует своим побуждениям, малоконтpолиpуем. вообще незнаю чем занять себя этим вечером. Кстати, что-то не все цифры видны. Посорилась с фотофайлом, как подружусь еще с какимнить ресурсом хранения картинок кроме лж плюс, то выложу все сюда еще ) Поэтому если я случайно начну истерично хихикать, или неуместно шутить, или неуправляемо объясняться в привязанностях - это нервы. Сначла купила пластырь Никоретте... Представье себе какой нибудь офис на территории бывшего СССР не отмечающий 8 Марта, Новый год или День защитника ?????? Рюкзазк часто добавляется к последнему варианту. А к тому, что ( исключительно на мой субъективный взгляд ) ребенок и сам может сообразить, как слепить елку или дедушку Мороза. Дае не знаю, что сложнее, про нотную грамоту молчу ваще ) Он говорит о том, что есть иная действительность, и стоит ее постичь, как эта так называемая реальность просто блекнет, становится нереальной. Офицыальное фото, от организаторов Я возмущалась - ну как это, как-то это так звучит нехорошо. И я безумно рада, что я здоровая, а не инвалид. Рабочный день длинный потому что здесь на конец много дел. По-моему, не одна я испытала эстетический шок, потомучто область в радиусе предполагаемого эпицентра в случае падения этой биопирамиды в считаные секунды зазияла неинтеллигентной пустотой. Мозайка из сплетенных пальцев наших рук, чуть ближе друг к другу, ощущение сказочного спокойствия и защищенности в его объятиях... Уударение всегда напервый слог, две гласных означают более долгий звук. Про вас можно сказать, что вы любите алкоголь - без всяких задних мыслей. Любоее внедрение в тончайшую паути энергоинформационных нитей человека может принести огромный вред. И у меня, кстати, тоже в машине аккумулятор внезапно сдох. Неридуманная истоиря из сети: Я купил весы, с ними время летит незаметно. Так что, как сказал Поль Валери: " Если кто-то лижет тебе подошвы, прижми его ногой, прежде чем он начнет кусаться ". Перессказываю со слов, не знаю, насколько точно, но постараюсь. этож простите не кольчатые черви и не растения, которые размножаются пучкованием; ) Подргрузился список контактов. Основвная часть архитектурного ансамбля, если так можно выразиться, состоит из самолета Boeing 727. Наберала скорость еще в горах... Папа, откуда ты черпаешь эту информацию? Сочувстсвую и желаю чтобы все решилось, а как помочь в таких ситуациях - вообще себе не представляю: ( Девченки завижжали при первых аккордах первой песни сыгранной нашим бэндом. Вот пишет замечательный издатель « журнал с вашими стихами напечатан ». Чувстовать принадлшежность, чтоли. Невозмозможно свести Православие лишь к индивидуальным убеждениям, оставив при этом в стороне практику жизни. Пишиите мне, чтобы я смогла убедиться, что мои сообщения вообще где-то видно... Неодназначное чувство у меня осталось после просмотра фильма, с одной стороны чувствуется тяжелая атмосфера в которой принимаются важные решения, происходит изменение сознания героев, рушится внутрениий мир, стороятся новые ценности. Нагладно привожу еще один рассчет чешский писатель-постмодернист, известный широкой публике по роману " Невыносимая легкость бытия ". Поетому для взаимности у нас должны быть хоть какие-то общие интересы. Как я понял, это изначально сделано. Строгость задаваемой им системы координат загоняет человека в созерцательность. Эмоциональаня перегрузка. В первых строках своего письма спешу сообщить, что я девушка. Кинопокмпанией DreamWorks планируется выпуск планшета специально для детской аудитории. Это как раз та развилка, до которой мы потом НЕ дойдем. То что пристегиваться необходимо и нужно вопрос понятен, но то что ты будеш нести ответственность и за тех кто не пристегнут в мащине вобще, наводит на мысли. Всеми правдами и неправдами пускают социальную пыль в глаза. Сами убрались или с чьей-то помощью во время гололеда и теперь залечивают раны? Приклееный скользяк или нет-это точно не угадаю. И в очередной раз думала о том, как легко, естесственно, просто. Преинтерснейшее положение у нас сложилось на рынке платежных систем. Сегодня улыбнуло: шла в поликлинику менять полис ( дооолго тянула с этим делом, так долго, что дело стало похоже на французский батон - такой же длинное и нелепое ), проходила мимо какой-то пятиэтажки, а там вовсю трудятся славные граждане Таджикистана. я первый раз каталась на таких креплениях ) Благодоря моей давольно набожной бабушке, мя привыкла отмечать еще один праздник, а именно - именины... Я морально уже готова произвести на свет название для такси. Следущие 3 часа мы были заняты преодолеванием трудностей, протискивались в узкие щели, спускались, поднимались, ползли на карачках, шли по колено в холодной воде, отбивались от летучих мышей и филиппинских школьников на прогулке. Преспособление электрокалорифера, установленного с поддержкой винтов в дно корпуса, состоит из осевого вентилятора и спирального электронагревателя. Причем, у них оооочень много заказов. ах да, в завершение, я седня еще сходила в бассейн и наплавалась вдоволь ) В книге приведены практические советы как справляться с реальными и часто встречающимися проблемами внутри фирмы. а некотрые фразы так вообще убивали. Чтоб глаза у ней счастьем светились Спасибо за твои записи в ЖЖ, которые я иногда залезаю перечитывать. Теперь я знаю што бомжи дерущиеся на улице - это не бомжи а РЕСТЛЕРЫ !!!! Баклажаны, перец, помидоры запек на открытом огне, почистил шкуру, нарезал и смешал с чесноком и кинзой. Единственный минус Тельцов - это упрямство, даже когда они неправы. Ваше отношение к идее равенства мужчины и женщины? Многабуков, сначала хотел сделать из него юпик, но в миниатюре совсем не то ( После войны в Ливии около миллиона египтян вернулись на родину, пополнив без того огромную армию безработных. Мне только кажется, потому что я в них совсем не разбираюсь. Эффективность способа напрямую зависит от скорости его применения. Осталалось понять что же все-таки сдохло: мать, проц, видюха или ( ну пусть будет так, пожалуйста !!! ) блок питания. И то еще минут сорок наша четверка ждала, когда подготовится машина инструктора. А я читаю все молитвы на ночь, я книжку в церкви купила, а вот Отче Наш не могу наизусть выучить. Стратусы для одноклассников смшные Я верю, что браки заключаются на небесах, а значит мы уже записаны в бортовом журнале на места рядом друг с другом. Сейчас в моей голове происходит примерно такое: Однокурссница в аське ошарашила предложением написать мою фамилию на ее лабораторках, типа мы вдвоем сделали. Когад Белка в очередной раз пришла ко мне и подставила мне пузо, япостелила пеленку у нее под боком и положила туда Лилового Червяка. Забыла в доме джинсы, а джинсовые бриджи, найденные с прошлого лета, естесственно, с меня свалились. Ну а космодромы, понятное дело, должны охраняться Всего в этих категориях от России участвовали около 60 работ. Оно тоже прекрасно, оно настоящее, живое, правдивое. А в 8.30 я пошагала на пары, а вечером дописывала курсовую. Однако подходы к решению одних и тех же правовых вопросов иногда разнятся. Это привело к девальвации духовных ценностей, апатии и аполитичности. Я уже подумала, что это насовсем... Потом искренне удивляются и бранятся, когда им откажешь. И мерное биение пульсара, сжатыми кольцами магнитного поля, отсчитывающего тысячелетия жизни огромной вселенной, окружающей нас. Мозк готов треснуть. Ну и слегка фотки пейзажей вокруг моей теперешней берлоги ( всмысле института ). Я как пешеход буду вас бояться, как и всех машин ) В ночь с 7 на 8 декабря " Финикс " уступил " Сент-Луису " со счетом 3:4. В прошлую субботу разбили на кухне пустую пивную бутылку в пятом часу утра. Кто заменит Деппа на посту исполнителя главной роли, пока неизвестно. так что, Дима, давайте сначало вы в Тарусу, а потом к нам в Одессу? Коы к играм вконтакте Нашла троллейбус, расположилась в совершенно пустом салоне ( ессно, сейчас мало охотников ездить в Эстонию ), долго созерцала пейзажи за окном. Заффтра попробую выручить новый. Вообщемто любая посвященная спорту новость для меня как владельца этого блога можно сказать сюрприз, вот кажется приведенная ниже класнее и не пожелаешь ) ) ) Совршенно измученная спазмами, ознобом и слабостью, я зарылась в одеяло, и пролежала так до вечера. Начал читать с конца и поэтому уже был морально готов в концовке. у птенцов кстате, нету мышц!! Вот и получаеться теперь что женщина действительно неделимое целое с мужчиной. если в Киеве маршрутки не будут брать " стоячих " людей битком - то ехать на работу и с работы многим придеться не час-полтора, а два-три... У меня, так же, как у пациента, было много непонятного, но игра состояла в том, что я - врач, а он - пациент. Позаввчера пересматривал " Горбатую гору " и в памяти всплыло сразу 2 человека... А все же с огромным удовольствием я бы поехала в Москву, но - невозможно... Вобщем береш картинки из журналов, вырезаешь интересующие темы, делаешь из них коллаж и направляешь энергию для реализации желаний. Наконецто мои рученки добрались на кнопачки написать в профайле и вот решительно собираюсь накатать несколько постов о том что наслучалось за это время... День прошел полностью одухотворенно. Прикладывам к разбитому лобику извлеченное из холодильника мясо, пытаемся успокоить и попутно осматриваем. Ну а если что пойдет не так, как надо, обращаться к семейному врачу. Следеите за нашими репортажами. Итак, что вы можете подарить мне, если не знаете что. Пасажирам задержанного рейса выдали лежаки и огородили территроию вокруг них красными лентами Теперь ты снова будешь писать добрые сказки, а я всегда буду рядом. Любопатства у них побольше, чем у нашей легендарной Варвары. за небольшие денги или даже просто так в умелые руки отдаються замечаельные книги Практичекси никакой информации из вне. вот это у меня пробел пока - нащет струй. Нородные рецепты отбеливание зубов вобщем срочно надо в сберкассу. завтра днем еше будем тут, уедем, скорее всего, на 3хчасовой электричке. Ручниками я считаю любителей, которые тоже знают все фотографические азы, но при этом снимают исключительно в ручном режиме. Сегодня, согласно всем кодексам и сводам правил, заверив у всех заверителей и проставив все печати, оффициально поздравляю товарища хороше быть слепым и глухим, и на всякий случай немым... Мы не сразу отыскали инструктора, но сильно обрадовались, когда нас нашел доброжелательный мужчина с ооочень накачанными руками. Я уже забыла, что это такое - идти в обуви без каблуков. Настроене не понятное какоето солено-сладкое с одной стороны жалко расставаться с родителями и другими близкими людьми, с другой радость от наконецто сбывающеся мечты, можно и так это назвать, хотя скорее стремление к более спокойной жизни, ну и для меня лично есть огромная доля приключения в этом всем, это как минимум интересно, я всегда мечтал о таком путешествии, вот так сижу обуреваемый чувствами ) ) ) Прогматично так подумайте, если охота будет. Недавно говорила с одним человеком на эту тему, и он мне поведал, что его родственники вобще не общаються друг с другом Соедените две получившиеся смеси в одну. И вход в дом каждый хозяин обустраивает с таким размахом! Это еще хорошо, что ты в рыбном журнале работаешь. Хюлькенберг квалифицировался девятым, но на старте у него возникли проблемы. вобщем сниццо мне что я нашел таки артефакт позволяющий видеть что там у людей внутри... Что белому человеку кажется моральным, для японцев аморально. Просматреть скрытую информацию вконтакте Практичнески минуя сознание, ощущение этого постоянства уходит куда-то внутрь и, волна за волной, ложится где-то очень глубоко. Мне нравится, что он кладет мне голову на плечо, и это - естесственно. Неторопясь и на низкой температуре печь безе. Мир не шибко справедлив. Если сравнить площадь крыши и нашей квартиры, даже только кухни с прихожей, потому как теперь сволачи выселены туда, так на крыше места явно больше. мы с Денисом вместе рисовали, он мне очень помогал и поддерживал, это доя меня очень важно Это где такое случилось? Подхожу к тому дому, где скребут лопатами таджики, и слышу: " Вот апять ана!!! Сегодня поперлась в поликлинику близ дома, полчаса блуждала, потом набрела, мне дали от ворот поворот, дескать, я ни по прописке не подхожу им, ни по универу... Сгодня гоняли с любимой на стельбище в Манчестер вообщем уезжали в печале и тоске, когда еще предстоит эта поездка, но с огромным желанием приехать сюда летом!! страшно както теперь домой поздно возвращаться! Если она этого не дождется, или Вы ей не напомните о Ваших отличиях, то она будет действовать строго наоборот. Я наливаю воду в кулере, как обычно, смешиваю холодную с горячей, а он мне " Осторожно, вода оооочень холооодная! А гостинная она для того и делалась, а то в РД Урала уже ваще ничего святого не осталось. А потом я доолго-дооолго-доооолго их юстировал. Потохоньку полегоньку бюрократические иннициативы приобретали маразматично-параноидальные оттенки, но, бисмиля, многие иннициативы так и остались инициативами не получив материального воплощения. И как он с остальными членами семьи? Да что с тобой говорить, ты ж наполовину в земле... В очередное пробуждение, я застаю рассвет - небо набирает все больше светлых тонов. Нехотя поднявшись, я переоделась и побрела на кухню... Но на деле Марк никогда не умрет в каком-то там лесу. Не о визите же к элитному пульмонологу нащет обструктивной эмфиземы. Под надзором нескольких учителей они проводят сутки в этом центре: играют, читают, проводят дискуссии. Правда я его как раз с 80-х и люблю. Но как и в любом парке там ессно были эксурсоводы. Значет в субодту покажунт кено про кедал Кедалы ( ПатамучтА рисовать на себе я не могу, раздеваться без рисунка как-то тупо, а красивая я итак ) ПАСЕ это всего лишь ассамблея парламентов. Стоит возвысить мозг над остальными органами, и ему останется только критиковать, то есть выхолостится его основное предназначение. всего диалога мя непомню, но посмеялись от души ) Подскажыте мне темному, чего зазырить перед сном, типа можно без мяса, можно даже без кровищщи. Он был молчаливым симпатичным брюнетом, а я рядом с ним была невыносимой болтушкой. Прердлагаю вашему вниманию, похожие по смыслу, но разные по содержанию два фильма о любви на всю жизнь Никогда не думала, что меня могут поставить в тупик такие вопросы как: " Какие мне нравяться фильмы или актеры? " Хотите разъехаться - так есть же обочины! И нужно ли вообще спрашивать разрешения работодателя на добавление материалов в собственное портфолио? В октябре 2001 года он попросил помилования за примерное поведение в тюрьме, однако суд отказал ему в освобождении. У двери валяется серая тряпка. Суббота прошла под эгидой хорошего настроения! Покапаться в песке - одно из любимейших занятий. забавное обстоятельство - в эти выхи был день города и пьяного люда на улицах было ну ооочень много. У нас все выкосили нещадно. Сентябрский семинар - продолжение встреч, целю которых является исследование истории диктатуры и протеста против тоталитаризма. Рекокомендую к сотрудничеству. Проморзгло и муторно. Вот такая вот история, вообщем то из статьи понятно, что наши власти исполнительные теперь могут в пьяном виде делать чего захотят, и отвечать они будут только перед своим начальством. Рапредилить по пекарской бумаге натертый имбирь и цедру и сушить 30 минут. А Фея стояла на балконе и думала о стрижах, которые стремительно проносились перед ее глазами. кстате, вам финдиректор не нужен случайненько ) Србственно вторая наша экскурсия Есть дача, а это оба выходных плюс вечер пятницы. На следующей неделе в четверг 11.08.11 вечером собираюсь в Магнитогоск своим ходом. Согласно поверью, есть минуты, когда пожелания, выраженные вслух, исполняются. Далее хочу отметить, что моя работа связана с постоянным общением с людьми. Длился этап чуть более часа. Как открыть однаклассники через секретный вопрос Напьешся в хлам и станет противно соратникам и друзьям !!! Обязательно хочу миссию с дирижаблями, обажаю эти летательные аппараты. Акинфеев вовремя вышел из ворот и не позволил бразильцу открыть счет, однако на добивании первым оказался Ибсон, который и расстрелял пустые ворота ЦСКА ( 1:0 ). Как вы полагаете, справедливы ли эти упреки? Нсущного много и оно разное, но мне хочется вернуться к теме, о которой не говорил бы только ленивый - наш кризис. Ты специально синхронизируешься со мной по выходным, когда меня нет. Теоретизированое мышление необходимо для решения проблем. Вообщем вся дорого туда-обратно заняла общим счетов часа два с половиной ( Пряный аромат гвоздики способствует укреплению памяти. Или просто не считает нужным замечать собеседника? Хотя по виду о тебе такого не скажешь - но в тихом омуте... Масс-старт в биатлоне впереди еще, например... Я же говорила, что счастие грядет ) Теперь таких кинотеатров в Москве не существует. И к своим проблемам просто присмотритесь... что бы больно небыло, когда ешь то, что нельзя ) Так возникла вторая после Ассирии мировая держава. собсна это почти в одно и тоже время снято, просто облака плывут Да, мне интересно, как люди живут, и что у них происходит. пройдем или нет - незнаю и судить не берусь. Соцерцать красоту бытия. и наверное хороше, что я там был один... И сетевые библиотеки больно бьют прежде всего по авторам. Самымидревними памятниками Синопа являются крепостные укрепления, построенные при понтийском царе Митридате IV. Провниция с замашками большого города. Следует отдать должное заказчику - очень четко очерчено техническое задание на производство дизайна Написание " Бедных людей " ( это, если кто не знает, первое известное произведение писателя ) сопровождалось бы очень полезными комментариями от читателей блога. Но тут вспоминается, что, например, пару лет назад в Кельне, в связи со строительством мечети, когда едва не дошло до побоища между сторонниками и противниками этого мероприятия, с обеих сторон присутствовали сплошь вполне " европеоидные " господа - с левого и правого края политического спектра. В свою очередь газета " Гаарец " утверждает, что французский министр обвинила палестинских боевиков в бесчеловечности и потребовала немедленного освобождения пленного. У меня нет новогоднего настроения, одна апатия... Рауль тоже не кантерано, как любят считать многие ) Рита ходит в коридоре, разговаривает по телефону, на попытки загнать ее в чемодан не реагирует. Воопщим моя мысль - Классика РУЛИТ... О, точно пойду с сентября на занятия йогой. Третий год подряд я, благодаря маме, уезжаю на свой день рождения в другой город, в другую страну. Сульптура " Медведь и земляничное дерево " символ Мадрида. Разгодать вновь ту загадку черт, неужели я после своего черноморского лагеря тоже был так импульсивен? вобщем я вобще без загадочной улыбки об этом фильм вспоминать не могу ) Какая татуировка бы вам подошла? В летние месяцы Роспотребнадзор запрещает жителям края купаться в реке. Традиционно правильная инвестиция - классический кашемировый джемпер цвета беж с V-образным вырезом. а так хочеться что-то мочь менять в этом мире, не обезательно менять, но обязательно быть способным это зделать... Привезли кучу фотографий, впечатлений и средиземноморский загар. И я должен подчеркнуть, что настояший танец ето одно из самых прекрасных вешей, которые парень может поделить с девушкой! Обшая топография Южной Пристани Коссово - город, расположенный недалеко от районного центра Ивацевичи, известен памятником архитектуры - дворцом Пусловских. Он у меня живет в оооочень маленьком горшке ( примерно с два моих кулака ). Да и в любом случае, нужно найти какое-нибудь безопасное место для ребенка. Однако есть несколько нюансов, о которых хотелось бы написать. Нет ничего хуже аццки болящих зубов. От всей души желаю каждому вновь обрести потерянные светлые и добрые качества, Я как душа Тома Рэддла: разбросана по сторонам света. Google прекрасно справляется с тем, за что берется. Иногда стоит постараться, чтобы не упустить действительно милого мальчика. В перуанском городе Ило местный житель Рамон Санчес разграбил древнее захоронение и жестоко поплатился за совершенное кошунство. Спаособность не завидовать - это величайший дар. Нескольнко дней назад я потеряла паспорт. ТОЛЬКО ВМЕСТЕ Заключительный аккорд: экономическая интеграция РФ, Украины и Белоруссии. Терртория обитания зверьков, а это достаточно высокогорное плато в Андах, была обнесена колючей проволокой и охранялась военными, а сами животные объявлены национальным достоянием страны. перекрыли сайт однаклассники как быть Каждая фотография несет немалую частичку души этого красивейшего места, а каждую вторую можно отбирать и продавать, как открытку. Мы пошли в " Художественный ", нас встретила приятная неожиданность, в афише сего небыло, но мы оказались на 3D версии! Мааааммоооочкииии !!!! только что получила список вопросов для ГОСов... Я в таких ситуациях за конкретные предложения. Я не c читаю нужным с Вами полемизировать. Сейчас же - я дома, мне все сдесь нравиться. Не считая этого, запрос розыска раздачи осложнен тем, что програмка ориентирует его к поисковой системе в браузере. Ну, клятвы давать Бог запрещает. Большая просьба: приходить на занятия со сменной обувью. Опять качает головой и улыбается. Преславутая подкованная блоха, оказалась, почти самой простой! Извените если ярко вырозился. Ну во первых начальник чисто в теории видит проблему шире. Напоменило стааарый анекдот... Из-под плаката выглядывают очаровательные ножки дерева ) Пока не знаю, поеду до Львова или нет, да и вообще не могу сказать, поеду ли. прийдя в квартиру мы помыли руки, начали ставить мне иракез... А мы пили китайское сливовое вино, обалденно вкусное... Обман зрения ето не прекол просто смотрите в центр тоесть вы придете с паспортами и будете канючить - нихачуу нихачууу... Обьехав таким образом две-три фермы, и заменив при этом пустые фляги на полные, грузовик наконец часам к 12 дня вьехал в долгожданное Сандово. ни ля-ля так не получаеться, а если получаеться, то ни капельки ни искренне, и даже очень натянуто... Половозрлые и не очень парни и девушки одевают алые ленты и мегаплатья, а потом идут пить. Взрывом уничтожил шесть автомобилей, саму автомастерскую, ну и, естесственно, нашего дарвиновского номинанта. Кроме того, частные средства пойдут на строительство пяти новых стадионов. ладно когда он какбы из под полы. Муж включал телевизор, ложился на диван и открывал бутылку пива. 37-летний форвард заявлял об окончании карьеры еще в конце прошлого сезона, но согласился остаться еще на год, дабы помочь « Арминии » вернуться в Бундеслигу. Насчет вечерних незнаю, но бегущего мужчину лет 70 сегодня в 11, на аллее видел ) Но теоретизировать тут бессмысленно. Собственно он и от дождя ооочень пригодился: - ) Наудивление я увидел интуитивно понятный графический интерфейс, установка прошла успешно. да вобще по сути дела с огнем ИГРАТЬ не нужно; ) Новозаветняя модель рулит! Неговоря про то чтобы попасть в ангар с танками тоже надо было отстоять очередь... при этом явно торопился уйти и одновременно кому-то писал смску... Как вы знаете, у нас в фонде есть множество самых различных программ помощи детям проживающим в казенных учреждениях. Интересно, как там работа объективов регулируется? На следующей неделе будет новый список игр со скидками. Сердобольные женщины, которые приносили мамке каждый день немного еды, различали их только по масти. Потом нас загрузили в машину инструктора, и повезли сдавать экзамен в городе... ето моя бывшая за ето спасибо, Обычныэ буддисты, просто шаблоны негодныэ. Иначе происходит развитие у более частого, вероятно, более чистого и настоящего типа женщины. Расчитан на определенную аудиторию, адаптирован под ее восприятие, На днях перед сном рассказал мне: " Я не любю кефир ". Оплаьа в контакте через терминал Очинь поразило меня обилие всяких чаев на кухне в новом офисе, в особенности факт присутствия моего на данный момент любимого чая, который пахнет глинтвейном ) ) Потртатить средства они смогут на любые цели. Рассчетов мало, одна логика. Имбирь активизирует защитные силы, помогает сохранить молодость и здоровье до глубокой старости. очень уж он неприглядно выглядел, непредставительно както, да и ваще опустился парень ниже некуда, а про бабежку я его вообще промолчу! что то даже не хочеться подводить итоги, вспоминать этот дурдом Без изображения хорошо пойдет, никакого бамбука не понадобится. Энергосистема Южного Урала относится к дефицитной, то есть нагрузка потребителей превышает нагрузку электростанций, однако, благодаря строительству новых объектов, в том числе Южноуральской ГРЭС-2, генерация получит дополнительные мощности, и потребность в электроэнергии будет закрыта собственными ресурсами. Низкий срок службы - 1000 часов, но некоторые служат дольше. На блогах очень много трепа но иногда среди этих залежей выходит нарыть ральные жемчуженки ;) И честно говоря это не я его это он меня таранил... Постраее дедуля был ) прийдя на репу выяснилось, что мы сегодня опять неполным составом - сачков свалил на дачу. Сколкьо стоит домик на острое в тайланде Семантческая поисковая система ( используют семантическую науку, изучающую смысл слов, чтобы производить более релевантный поиск ): И это ведь есть в каждой нации. А то у меня номеров почти нет всвязи с восстановлением симки... Превратититься в кляксу, смяться, разжижиться, стечь горестными капельками, Кстати, можно ли сразу запилить международные права, чтобы я стала совсем крутая и могла сбежать с миллионами за границу? Вообще, обычно, когда мы ссоримся, у меня нет ощущения своей полной правоты, то есть я думаю, что, наверное, все-таик права, но можно было сдесь сделать вот так, а здесь - лучше, а здесь - помягче. Я сомневаюсь, что мне нравится это кольцо, а не то, два магазина назад. Предчувствия его не обманули. Чтобы каждый день этой жизни приносил тебе столько радости, величины которой хватило бы на то, чтобы полюбить ее без памяти эту нашу, такую непростую, жизнь. Еслиб кто быстро сообразил бы, можно было бы выпустить семечки в упаковке, как обычно в магазинах продают, и штамповать на ни бренд " баревреволюция ". Я вам покажу, как будить Колдуна! Как вы представляете свое положение через 3-5 лет и как собираетесь его добиться? Нечуствительны к пониженному напряжению, могут применяться с в светильниках с регулятором, очень удобно. Давно хотел выложить некоторые фотки, вот лапы наконецто и дошли... Какие смачные фотографии, хоть и поела, а аппетит разыгрался! люблю ужастики, но не смотрю теперь итак темноты боюсь, а если посмотрю потом ваще спать не могу ) Фактически, по этой же модели он строит свою дальнейшую жизнь. Ну вот наконецто забрал чать фоток у Боди, их там много залил сюда штук 25... Ой, а че ето он делает? Но вобще единственное, что не люблю мат и про детей. Надо дописывать книгу, всего чуть-чуть осталось, но, как всегда, лень. Я не знала, что моя правая нога не особо меня слушает, да и вся координация хромает. Любое дело, направленное на помощь жертвам насилия и несправедливости, вдохновляло его. Утешюсь мыслью, что двое детей это нормально, науке известны случаи выживания взаимоотношений в таких условиях ) ) ) ) Это я два года назад, за пару месяцев до беременности, на банкете в честь юбилея одного папиного коллеги. Хотя она вроде бы относится к психике, мне хочется назвать это оценкой способности воспринимать окружающий мир во всем его многообразии. Одобрен был только один карандаш для глаз, который я как раз не любила за излишнюю « кислотность » и крикливость, все остальное было отвергнуто. Обмороженых больше, чем ошпареных. Пыттаюсь успокоить руки, слезы загоняю обратно и - пулей из универа. Отпразную - затем отвечу на комменты, уж проостите... Начаили с Капитана Моргана и Текилки. Порой мне хочеться тебя убить... И кстате очень зря некоторые убеждены, что жизнь не сказка и не фильм в котором все красиво; ) незнаю как у них это получилось но факт! В Темрюке есть так называемая военная горка, где под открытым небом находится выставка настоящих самолетов и вертолетов, пушек и кораблей, танков и поездов... Но, черт возьми, где-то есть семьи, где родители помогают детям в том, что действительно нужно детям, а не в том, что, как считают родители, им нужно. Поелетим все вместе. по возможности одной в тишине, слушая звуки дома, быть и думать о своем, читать, или просто валяться в задумчивости на матрасе, чтобы молчать наедине с собой. Она скзала чтобы я съездила туда сегодня! Сочетаие магическое и очень нам понравилось. Родитялям малолетних детей советую обратить внимания на новую обувь СейчасАйгуль находится в третьей городской больнице. А потом, со временем, стало так, что я вобще не хочу ничего рассказывать. До свиданья, Оля, мы разошлись, как в море корабли. Пасиб, но седня должен аванс упасть на карточку и тогда гуляй рванина! Прияно общаться сос тарыми, но давно не встречавщимися приятелями Ничегосеб бред... Сейцас такое мясо, грех не пользоваться. не помню где читала теорию, что дольше всех живут те, ктоя является самыми большими поставщиками на тот свет, тоесть все, кто имеет отношение к оружию. давольно милый и летом и зимой обогреваемый теплым солнушком Поэтмоу все остальные раздражающие факторы усиленно не понмают моего сопротивления и делают все что в их силах, чтоы затянуть меня туда подальше. мне даже раскладывать не надо - так помещаюсь ) Мы сняли уже студию в другом месте, там правда не поживешь особо. Не смотря на дороговизну домов двери до сих пор простые. Насчт мира: ты уверен, что мир так сильно меняется, а может это мы меняемся? Оказавается можно быть счастливой и несчастной одновременно... Пронизтельно холодный ветер мчится по пустоши... В первый день после большой грозы озеро было серым и непривлекательным, на пляже безлюдно! Лапмочку то намеренно изобретали... Все что я хочу сказать это то что я все равно рядом... Именно так, большими буквами и с грохотом на всю Одессу. Так хочется, чтобы таких семей, как наша, было больше, чтобы люди не разменивали свои чувства по мелочам, чтобы встречались со своими половинками и, живя в любви и согласии, растили замечательных детей! - А столько женщин в джинсах а-ля " заниженная талия " так и хочеться подойти и подтянуть. Поводом стал очередной асфальтовый скандал. И у нас много общих знакомых, например, теперешний мой начальнег Слава Козлов, который Борман. А в чем дело то собсна? пачпорт я седня получила с прописочкой питерской, все очень так законно и официально!!! Потомучто бесящиеся с жиру гос-службы нужно ставить на место. Чудестный ребенок и я таки дошутилась, но мы ждем второго! Обязательно на него посматривайте. Я вообще неспособна понять, что руководит человеком, когда он делает то, что он делает. я кое-чем дуругим занимаюсь, интриги плету вообщем и мне это нравиться... у меня теперь плечи накачанные, так что бойтесь ) Напыщеные домики стискивают углы зрения и формат ощущений. Понедельнег выглядел примерно вот так: Прдолжаем выбирать красивое мыло на подарки нашим близким и друзьям. Надеюсь, наш случайный встречный добрался до надежного ночлега... Солцне ушло. Вспомнила тока седня утром в автобусе! Можно нормально и не вовлекаясь переносить вызовы внешнего мира - ну на работе там неладится или погода плохая или вообще както жить сложно и бессмысленно. А еслиб ты оба кеда между собой зашнуровала? То есть она не будет пронзительно-красиво " пррямо в точку " и " как будто про тебя ". Наподобии слоеного теста. Растерянный, я медленно слез с подоконника и, подгоняемый недовольным стариком, устремился вниз по лестнице. Сегодня первый раз пошла со всеми дружно играть в пингу-понгу, за что кстати всем пасибо. Предъистория - разгребала гардероб - ага... Однем словом - темные и страшные дела творятся в наших вересковых пустошах !!! было ну ооочень жарко, такое ощущение, что на вентиляции сэкономили на все ) Совсем недавно поняла, что значет " быть собой ". Пришлсь повозиться. Благо народу пришло седня больше обычного, развеселилась. Чурикова и Киркоров как ведущие - полное извращение Символизируэт стремление мужчин все в этой жизни делать ради женщин. Они, представляете, зовут какую-нибудь, назовем ее условно Лаурой, на балкон. Буду получать третье высшее образование " Психология ". Стоило это все оочень недорого ) Остется ловить глюки и слушать музыку. вообщем, ты добрее чем я ) Когдя наша семья переехала из Душанбе, зеленого, солнечного, гостеприимного города в степной пыльный мещанский Оренбург, полюбить новый город было трудно. Я просто решила пояснить, так как добавляю переодически друзей... Мысные блюда не дороже 50. Этот телевизионный коктейль смешан таким образом что с утра нам вдалбливают о проблемах со здоровьем, потом о проблемах на планете, а тут еще и свои запары вдобавок. Летела под елку, жестоко отдирла бантики и разворачивала цветную бумажку, а там открытка, следущего содержания: " Извини, что не черная и не шелковая, но желаем чтобы нашелся тот, кто будет исполнять все твои замысловатые желания! " Отыхаем от институтов, садиков... ну и вобще на самом деле фильм пустой какой-то... ( Лизенок это набор слов я незнаю что это значит ) Вспомни, наконец, что ты женщина! прикольно канешно, но теперь мне надо срочняком на права сдавать, чтоб потом не стыдно было Создается такое впечатление, что это иллюзия, самовнушение. Да и какая разница, Доктор Кто, это окей, и я рад был смотреть все 4 сезона, однажды полюбому пересмотрю. Согласно древней традиции на поле необходимо оставлять несжатую полоску - шеАр - остаток, чтобы бедные могли собирать колосья. Разультат - комплименты, одобрительные огого Просто остаться наедине с собой, задуматься. Захожу я значит в пятницу в лифт, там стоит сосед снизу и какая-то ваще низакомая дивченка... Вот погда установится хорошая и все доделаю. Рекомундуемо для просмотра любителям отечественных военных фильмов, ровно как и следующий сериал Осталомь только определить куда-то старую, но дорогую сердцу моей родни тахту и стеллаж. Приехпла вчера в Самару. Я переодически появляюсь на чужих страницах с комментариями. Тачтосидит резко вскакивает и пихает тойчтостоит свою сумку в лицо. Шкворчать умеет только свиное сало все остально тупо жарится. Ниччего не понимаю я в парикмахерском икусстве: ) ) Слушает все, даже то чего слышать не хочет, лишь бы ты улыбалась! Огда может и решения были бы более саправедливыми, по поручению главы Чечни была создана межведомственная комиссия. Комлексное рекламное обслуживание. Жидкость для мытья окон не берет. Понимаю еслиб счет был 4-5, но такой разгром - это звиздец Слезяться глаза и плачет дождь, И если там сказано, что иноверцев надо убивать, он будет убивать - когда прикажут. Как просмотрет в контакте кто оставил мнение Окружающие считают их ненадежными, самовлюбленными и ограниченными. И мне сразу подумалось, что при таких условиях, пролетарии нарочно будут затягивать ремонт, дабы получать побольше денег. Льет страшно, где то в небесной канцелярии прорвало трубы, предупредили будет лить целый день и ухудшение ждать после обеда, то есть сейчас. Но в слайдшоу, на мой взгляд, оочень быстро сменяются! Я надеюсь, что с каждым годом участников акции будет становиться больше, а фобий у людей - все меньше. далее, хорошо бы все-таки консультацию гастроэнтеролога, хотя бы, чтобы узнать, какова секреция желудочного сока и по итогам пропишут диету ( острое, конечно, запретят, но я на это уже 18 лет кладу с прибором ) вносить сюда можно чтото окончательно вызревшее, законченное, на что уже невозможно и не нужно както влиять. разьве что Вася Воронов да Пашка Пескин, знаешь его? Получилсась смесь бытовой городской новеллы и протокола заседания профкома. Найдуться те кто сможет написать стихи, это возможность родителям контролировать и помогать чадам. Я прижалась к нему, подхватив под руку, такому теплому и желанному, практически родному. Эксперементируя с различными музыкальными традициями он создает очень привлекательные музыкальные произведения. Рассматирвает все в черно-белых тонах, как правильное или неправильное, не видит всю сложность событий. Все немного ( или много ) великовато, а вот у этой кофты буду удлинять манжеты, т.к. ооочень она мне понравилась, а максимальный размер был 18-24М. у меня правда очень болит сердце вот о чем - мама была верующим человеком, нам помогала и помогает Богородица, однако я незнаю была ли мама крещенная. Расскрытие двух основных понятий пути воина: безупречности и самоотражения. Ремонт компьютеров в районе метро Коломенская, Каширская, Тульская, Варшавская, Автозаводская Неротоброжается видео в контакте Однако, я поняла одно - кажется я нашла свое полноценное хобби. Ну и ладно, а зато в века предшествующие человек был столь бесправен, что нынешнее состояние дел в родных широтах может показаться райскими кущами. Нашол сосвсем случайно прикольный сайт А на нем паршивая экранная копия, что легко определить по качеству и сигаретным прожегам переодически мелькающим в правом верхнем углу... А впреди еще ооочень много разных социальных ролей. Капелька надежды через водопровод проникла в ванную, повисела на кране и, раскачавшись, запрыгнула на полотенце. Мущщина был с зализанными волосами и в свитере... А мы с ней вчера встречались. опаздпла на работу, потомучто заговорилась о сочитании майонеза с другими блюдами ) Самое смешное, что мне эта ситуация напоминает " от нефиг делать ", спать не хотелось так пусть теперь и Вам не хочеться, так егоистично, так нелепо. Потому что на него переводов многа. Но вообщем чего гадать, главное, что настроение поднимает немерянно, особенно с утра. вобщем, ближе к концу он умудрялся так вспотеть, что с него пот ручьями лился - прямо на меня, разумеется. Я люблю тебя и небо, только небо и тебя. Прадажа кондиционеров в кредит Присоеденишься к нам? Учительнида остановилась, и спросила: " Как вы Добравшись до подходящего по всем приметам места, наши рыбаки принялись разматывать удочки по всем правилам рыболовной науки. Спасибо, незачто рада поделиться ) ЭЭээххх столько впечатлений осталось за кадром... Получить блогосферный гороскоп для Вашего знака Зодиака нам достаточно факта что мы можем это сделать всегда эмоционально мертвая я приезжаю к Тане, которая кормит меня чем-то вроде паэльи с морепродуктами и виски с колой. не согласна была на девичнике, там девчонки изображали стриптизеров - было оочень смешно ) Раньше на такие должности мы взращивали кадров с самого " детского сада " до серьезных вакансий. Продаа путевок в тайланд в новокузнецке Пейзажы за окном какие-то незнакомые. Поздравяю его и всех вас с этим событием! по пути к самой лучшей выборгской бане нам встретилась хореограф по имени Лона, попросившая рубля три даже уже непомню на что. Первый такой вопрос: я знаю, что сейчас подобного рода инновационные площадки, инновационные города делаются не только в России. Может, пока я вырубаюсь на пару секунд, кто-то роняет на меня бетонную плиту? Ей в общем-то все равно было, на кого учиться, лишь бы мама с папой не переживали, что у них девочка не пристроена. Никоглда больших " приколов " не было... Сдесь ветер жуткий, холод дикий, В общем, с наступающим Днем учителя! Смерительную рубаху напялят и никак иначе. Работатьне хочется, хочу учиться и радоваться жизни! Легкие и элегантные они создают прекрасный образ. можешь поговорить с военкомом и даф ему денег както получить осрочку... Ну и конечно Мак покатился с ним, чтобы оценить ситуацию со стороны. На самом деле ты удивительно многогранна и умеешь неожиданно предстать в абсолютно необычном образе. Охраниик с непроницаемым лицом изрекает: самое клевое в столовой это полюбому сортир. Ясно, что сказать ему особенно нечего. Отогревшись и заодно пообедав в столовой, отправилась я домой... Седня была с Антоном на выставке на Винзаводе. И вдруг ( хочется написать из темной аллеи ) на меня вышла удивительная случайная здесь пара, жених и невеста. ты главное - не отчаивайся, если все будет двигаться ну, ооооочень медленно. Hа следущий день все чеpепахи сбежали. Я пережил то, что чувствует море, колышимое бурей, принимая на себя каждую пощечину ветра. Не расстаюсь с мечтой поехать на Байкал на поезде. Утром по новостям объявили, что на сегодняшний день в ЗАГСах - рекордное количество свадеб, - раз в пять-семь болше, чем в обычную пятницу. Но это не такой уж большой недостаток, если учесть, что Телец обычно все тщательно обдумывает перед тем, как принять ту или иную точку зрения. дергаю дверь закрыто пока ключи нашол минут 10 прошло вобщем люди которые меня знают и ( важно ) звонят мне на мобильник в курсе что раньше 12 связи со мной нет и вообщеее... Выскажу свое мнение - но оно предвзятое - фотк стобой почемуто в большинстве не нравяться. Ктобы мог взволноваться, случайно наткнувшись на дневниковые записи бабушки, о том, как она грешила вовсе не с отцом зачиная ребенка? Я последний раз нечто подобное видела в отдаленных городишках нашей родины в конце девяностых примерно. Она ждала меня около университета или политехнического института, чтобы первой узнать, как я сдал экзамен. Но почему же мне снова хочеться с ними встретиться??? Помошник шерифа, получивший не так давно повышение в местном полицейском участке Грин Горча сейчас, стоя рядом с ней, думал лишь о том, как они вместе будут строить свою жизнь. На работе так ваще все были очень дружны из-за этого: ) Милиардны живут по правилу 3ех заветных п: попса, пепси и пошлость. В их реальности, вполне возможно, никаких сигналов и небыло, кроме зова сердца. Он прекрасен снаружи и великолепен внутри, изукрашен резьбой по камню. Анекдоты, конечно вещь хорошая, но становится ни капли не смешно, когда вспоминаешь, что провалы в экономике страны как нельзя лучше компенсировались с помощью дармовой рабочей силы - каторжников. Я уверена точно только в одном - в мужчине, за которого собираюсь замуж. Тратиш на это усилия пусти некоторые потом и играют против тебя и часто ощущается угнетение в душе Кроме того, нужно учитывать исторический контекст: версия сказки Шарля Перро появляется во время большого голода, бывшего в правление Людовика XIV и высвечивает неустойчивость крестьянской жизни и положение детей, которыми первыми жертвовали в случае бедствий. Хотя его возили в Москву на операцию, тогда всех мало-мальски высокопоставленных чиновников возили лечиться в Москву, но было уже поздно. Тогда мы были в полной уверенности, почему-то, что это дело рук " барсеточников ". Для строительства одного гнезда требуется около 35 дней. ну паздравляю желаю не умереть, а если и умереть, то достойно! Высказали все ето дело манагеру, так, чисто случайно, под настроение попал, и пригласил он нас на любой сеанс в МДМ. Православие больше не преследуется. Плавать на каяке в одиночку не рекомендуется. Пассижир - Екатерина Леонидовна Лепнина, 23 года, работала официанткой в баре " XXXX ". В начале XVI века замок станет основным оборонным пунктом от московских войск, точно так же, как до этого он оборонял Беларусь от тевтонского ордена. Опяь завела ту же пластинку: больница, врачи, жировик ( хрень знает что за болезнь ), рак... Пучему не выкладываются фотографии в контакт Обмыли дома с мамой и сестрой права ) Было явно видно, что наша поездка откладывается, что ребята настроены серьезно и зарплату отрабатывают добросовестно. Набрал он в легкие воздуха побольше, верхнее ля выдал и смотрит вверх: испугается шарик или нет? Недавно обнаружила замечательное место для прогулок. Скууучнооо было - ужыс. Неконец еще более прогрессивная идея, это пропагандировать идею, что главное в детях чтобы они были здоровыми и красивыми, а не на вас похожими ибо что такое похожесть именно на вас? Дерижер - маэстро Кацман. беря в рассчет встречу знакомых, стояние с ними минут так по десять, остановку у метро - была на шпильках и устала ) ) Она не отрываясь прочла весь рассказ о своем вчерашнем возвращении в город. Траспортировка ковшей с чугуном в конвертерный цех Ура я сделала себе выходной, правда провела его как то странно, на улице супер просто, а я целый день проспала, потом уборкой занималась ну вобщем как обычно!!! Низкоколлорийное питание диета умные начитанные с пластичным мышлением, ну вобщем золото а не дети. обещаю загладить свою вину с меня очень што нить приятное пиши мне ) а ничо не делать ) В обзорах равнозначно будет уделяться внимание двум направлениям - документальной и арт-фотографии. Удивительо видеть от Ховарда столь халтурную работу. Сейчас она победила на конкурсе русского языка в Японии и получила бесплатный билет в Россию. Посмоти летние фотографии, выпей вкусного чаю, позови интересных гостей. И ни разу, ни разу этой зимой не встал на лыжи. Тллько Танюха куда-то запрапала. Накотиков не нашли, попросили сдать анализ в баночку и обнаружили в анализе следы марихуаны. Подкачал только неожиданно тусклый и однообразный свет, а для фотографа плохой свет - как страшный сон... Рассчеты и описание местности убедительно показывают, что все чиновничьи стенания " об исключительности выпавших ливней " лишены всякого под собой основания. Ну а потом годы полетели и не останавливались, пока мои родители не познакомились. но както все это было подощрительно... Прверку первого запуска тоже сделал не самым лучшим образом, но тем не менее уже немного работает. Подисскутировали надо сказать от души. После нашумевшего шпионского скандала фамилия Щербаков в СВР приравнена к ругательству. Дома я была почти в одиннадцать, часов до трех потом писала отчет... и дело тут не в кривоте или прямоте рук, порсто в горах надо побывать! Люблюд изо всех сил и счастлифф, что мы на одной волне! Буфетчица нервно курила, включались красные огни, орали сирены, а однажды даже приезжали пожарные Сей пост расчитан на тех кто еще эту информацию не читал конечно же, если читали и вам до лампочки - можете пролистнуть мимо этот текст, не тратьте мое ( на чтение вашего творчества ) и ваше время ( на его написание ), спасибо не скажу ибо мальчик большой. Прензидент вызывает к себе генералов. Рассказег на сопельки потянет - самое то для прожженных романтиков... Гнде можна скачать програму вконтакте не в онлайн Серега, который сдержанно и цивилизованно пил безалкогольное пиво, беспокоит нашу молодую семью! А то больно хочеться зазырить Новости страницы не отображаются в контакте 27 февраля была захвачена крепость Санто-Доминго, и провозглашена независимость Доминиканской Республики. Презванивает мне Дмитрий Николаевич через мгновение и говрит: ну ты понимаешь, люди солидные, сивуху не пьют, возьми нормальный коньяк. Он вечной жадностью ведом - такой у нас народ. послезавтра играть - полюбому нужно успеть за завтра найти пласт. Любимоый и ласкаемый ребенок примет мир добрым и миролюбивым к себе. Хотелось бы более подробно узнать о Алексее Шинкоренко: опыт работы в области фотографии, опыт работы в преподавателем, желатьльно со ссылкой на портфолио. На прошлой неделе впервые делал интервью по Скайпу. Прлучилось совсем незаметно, но надежно! В один непрекрасный совершенно день. Не знаю, зачем, но все утро разглядывала свадебные платья. вобщем за день до ДР Елизаветн впало в состояние постояной пены и пара и слезок... Нечайнно запомнили одноклассники как их удалить С особенным волнением я следила за судьбой Дэйнерис, потому что это уникальный случай в сериальной практике - герой, который развивается. Правльная форма - наслаждение от встречи с Дающим. Постранство - это сверхтекучая жидкость. Пррогулялся по парку, в очередной раз убедился что живу в самом лучшем районе Москвы: плюс ко всем удовольствиям что тут были, нашел стрелковую базу - по тарелочкам летящим пулять из ружей. Живи так, чтобы ему было интересно! Продкты для диабетиков А вот высказаться на более широкую аудиторию наверное все боятся. вобщем так как я пользователь анлима ЮТК то мне вроде как надо требовать от провайдера качества услуги. Учитесь смаковать жизнь небольшими кусочками и находить приятные моменты в окружающем вас мире. И погода чудная, и вечер вчерашний вспомнить приятно, и птички поют - именно поют, а не орут дурными голосами. Прошли почти весь пляж и наконецто остановились... Лекартсвенные препараты от варикоза Опопсля всех философских бесед, различных маневров и экивоков выяснилось, что посуду должна мыть опять-таки... Левостроннее движение, отсутствие перекрестков ( вместо них кольца ) просто сводит с ума. Я думала, он был поваром, потому что сейчас он готовит. Центральная его часть увенчана двумя башенками, на одной из которых даже остался флюгер в виде петушка. Хочу выразить благодарность незнакомцу, читающему мой жж. Незанающиеграниц сами позвонили, поздоровались, уведомили, что посылка на таможне, и поинтересовались, когда мне будет удобно ее получить. И взор мой весел, и стопы мои легки. Если до Нового Года не выпадет снег, то в ближайшие два года человечество вымрет изза необратимого изменения климата. Можете дарить книги, только помните - я многое читал. я его люблю, а он сдесь лазает !!!!!!! Проблема сама глубже - в неудовлетворенности жизнью, пустота, депрессии. В детстве на Украине мы говядину практически не кушали... Россиская компания приобрела авиабилет у иностранной компании Излишняя трепетность к деталям вынуждает нас видеть зазор на завитке синего цвета, упуская при этом огромную мозаику, пестреющую всеми цветами спектра. Напрортив сидела пара веселая! Угараздило ехать туда ночью зимой. Пробелмы проблемы, а потом случается настоящая проблема, только уже со зодровьем и все остальные как то сами собой отпадают. Зарубежные представительства Госкорпорации действуют в 50 странах мира и играют основную роль во внешнеэкономической деятельности Ростеха. кстате да, говорят, что самое опасное падать не на крутом склоне, а на ровном месте... А еще первое время контента может быть достаточно много. Есть кротон, декабрист и еще какой-то лопух, который живет и процветает у нас уже Бог знает сколько лет. Намазывем уже остывший корж " кремом " ( " фромаж блан " или творог, риккота, протертые сквозь мелкое сито, даже густая сметана подойдет ), совсем немного, только, чтобы ягоды потом прилипли. десь я прибежала на крики и пронзительный визг, а Яся всего лишь радовалась тому, что Варя спит под одеялом - и она действительно спала, не смотря на бурные эмоции вокруг и не совсем нежные обнимания. Ну и естессно большая часть пути прошла по встречке, и полоса была сплошная... Ей было очень грустно и одиноко. От моей дочери, которая приезжала к моим родителям на пару недель в поселок. Корридоры казались огромными, было довольно пусто, мы бродили по лестницам, этажам... Посылая шутки к черту, я от всей души горячо поздравляю Вас. Одиним словом нудный до нельзя. несколько раннее есть псто об этом и даже фотки ) сажусь обатно за комп и начинаю чтото себе рыццо в интернете. Я позвала официанта, ну хз, наверное надо было убрать волос и все, но я позвала официанта и показала ему свою вилку, а он сказал, что ничо не знает, у поваров светлых и длинных волос нет. Не прошло и полугода, как они заметили, что у статуэтки выпуклое основание! Не стыдитесь мечтать, загадывайте желания и бережно храните семейные традиции. Вот только мерилами этой « эффективности » вы назначили сами себя. Разве это не функция премьера? Экперты пока не установили причины катастрофы. не всегда хочеться вспоминать людей... Методолгическое брюзжание в ответ: ни Бурятия, ни Европа нациями не являются, соответственно, национальных кухонь не имеют! Но всвязи с волнениями я вижу активизацию сил националистических, и, хотя острие атаки направлено не на нас, я клянусь Богом, что до нас дело дойдет обязательно, историю не учат только идиоты, которых у нас, хвала небесам. Хотела посчитать скока Я за седня выпила воды. У Зайчика, кстати, сегодня опухли два пальца, так как девченки призимлились на нее ( а целоваццо не перестали ). На выходных какие-то неудачнеги ограбили квартиру. В четверг, 24 октября, на заводе прошло выездное заседание комитета по экономической политике и собственности краевого Законодательного собрания, в рамках которого депутатам рассказали о прошлом завода, его настоящем и будущих проектах. Всем руководит золотозубая родня. ндеюсь мамуля меня простит за мое вранье и обман. не позволяй всяким идиотищам портить себе настрой, ведь их так много, а хорошего настроения всегда нехватка ) Сппать аккурат в семь захотелось: ) ) ) Блин! А мальчик-то симпотичный, смуглый, черноглазый... Определенно, определенно Новый Год нужно праздновать с друзьями. Ленится ни в коем случае нельзя. Погкуляем летом обязаательно! Послезафтра - классная вечерняя туссовка на набережной. Отркыла утром окна и оставила их открытыми на целый день. Обесчанные новости. вобщем иностранцы 3 курс - дети вообще в массе своей элитные как в социальном так и в интеллектуальном плане. Четвртая вообще меня не возрадовала. Влюбом случае я не думаю что ты имел ввиду именно это, может перефразируеш? Да только прибежала невесть откуда - из подпола понятно ( то есть из подземного царства ) - шустрая мышка. Отсановились на совместном походе в театр, типа это моя инициатива. Вот сейчас с родителями собираемся к нему в гости, возник вопрос что ему подарить. Месяц не сидела за рулем, наконец еду... Птому что невозможно добровольно отдать желание жить. Некторые из нас могут со временем начать делиться сокровенным с девочками-подругами, но первый поцелуй... Ира скинь номер аськи сво пожалуйсто да и смс написать можна!!! Это было настолько душевно, что порой мне кажется жаль, что уже так с ним не поговорить. А дальше в гости к батьке, потом на незалежную и можт еще в Молдавию. наверное надпись была сделана с любовью, и вся любовь ушла только в слово... Очеренданя дурацкая ЖЖ-игра. Расчитаны на разный уровень подготовки и разный возраст. Только из-за него стоит сходить. развела в воде, гадость редкая, но ему и она понравилась, смолотил больше, чем нужно для первого раза. В 1635 году маньчжурский хан обнаружил, что его солдаты продают собственное оружие в обмен на табак. Короче, красотка та еще, и это все счастье держалось и не спадало с моего лица в течение часов так двенадцати. Как известно каждому, Одесса - невероятно крута. Этот щенок йорка ( см. ниже ) оказался на станции отлова животных в Малаге и был бы усыплен, если бы финны его отуда не вызволили. Помилуйте, боги, уставших кого-то любить. Разочарование я отмел сразу - разрушить все надежды последнего полугода это слишком. Недаво стала снова ловить от Ксюхи запах молока. Во-вторых, попытки народных демонстраций, которые распространились не только географически, но и затронули разные социально-экономические классы. Этот фильм лучшее лекарство от подобных разговоров. короче, если ктото видел мое потерявшееся чудо, шлите его ко мне !!! Пришла в офис в чуть более легком варианте, чем традиционная моя одежда. Ранее сообщалось, что Душанбе настаивает на заключении договора сроком на 10, 20 или 29 лет, но никак не на 49. Предыдущий день, первое декабря сего года был для меня полон событий и смены эмоций... Опсомания - првязанность к определенному блюду. Много позже, когдя я его увидел, я решил, что из него можно сделать хорошую детскую книгу. Папиломавирусы вызывают дисплазии шейки матки, что может стать причиной рака, они приводят к росту кондилом половых органов, кондилом мочевых путей. любое движение - это прогресс. Потому как то, что ты перечислил здеся, это все правда, естессно, но это все хрень по сравнению с семейной жизнью. Прияного аппетита. " За трактором шагом марш " прокаркал коммендант и резво вскочил на подножку машины. Хотя хуже, чем на физике недели две-три назад вряд ли будет. Я думала, кстате, что даже у маленбких утят перья не волосатые... Если ваша работа связана с общением, около вас всегда должны быть 3 цветка ириса в высокой, узкой вазе. Проавцы просто ацки выводят из себя. Сегдьня закончил уборку всех записей в " личное "... Да и ваще мы памрем, и не каких предыдущих-оследующих жизненй не будет... я и так в платье похожа на праздничный тортик, теперь я только и могу, что улыбаться мстительно тетечке с пирожками. Я вот как раз про это хотела спросить, отдельным постом, но раз уж разговор зашел... Паталогически не умеют принимать решения Миллионов не дарил, но жить помогал, пока на ноги не встала. Пожалайте мне удачи, пожалуйста! Познакомиись со всеми барменами на нашей улочке. Представитьте Excel - если бы каждую функцию пришлось скачивать и устанавливать отдельно. Оба с задумчивым видом курят трубки и ведут беседу. ЛаньПрекрасное и пугливое создание, грациозное в своих плавных и осторожных движениях. Мы слушали ее за кулисами какой-то площадки. Приварикозе вен нижних конечностей появились синяки я незнаю почему, может это перед концом света но Вселенная в этом году решила выдать мне компенсацию за все годы проведенные в родном городе в виде путешествий к центрам моей Родины - Москву летом и Питер осенью... Вот что за чудо изображено на обложке книги? Ну как же без дочери. Попадлись также привлекательные, на мой взгляд, " закусочные ". Сьездил в центр, купил билет на Дельфина ( касса в переходе на углу со стороны больницы ) Разделеннный на две части рекой, представляет из себя струю и новую часть. Нмного думаю о том банальном, что если человек " твой " - он непременно вернется, так или иначе, рано или поздно. да и дел поважнее у меня сейчас хватает. а если серьезно, настраивайся, что все будет хорошо. Толькго он помогает и решает все вопросы! Вообще, мамалыга имеет более древние корни - в докукурузные времена по той же технологии варили пшенку. Я одно время засыпала под " Мастера и Маргариту ". Это пособие помагает развивать речь и учиться пересказывать тексты, как опираясь на дополнительные вопросы, так и только на свою память. ты начинаешь думать а што неплохо можно и тут жить ) Смушение одолевает меня. конечно хочеться назвать их имена. Корпарация IBM поделилась информацией о выпущенном процике z196, который выступает в роли чипа, эксплуатируемого в стандартном режиме на мега пиковой частоте. ну да ничо, пять дней и снова пятницца изза реального запарного периода в4ера был первый ве4ер когда села за комп с момента нашего прошлого сеанса. Полный текст статьи об этом исследовании можно найти на сайте журнала Nature. Напрситесь на дачу к друзьям. оказуеться в книгомире седня есть -- купил и уже главы три прочитал... Как установить веб камеру чтобы общаться через однаклассники Подойтите ко мне. Поселеия представляют опасность только для людей, которые говорят: " Мне плевать, что делают арабы, а вот от евреев я требую исключительной порядочности ". Террорестический акт в Лондоне. Я рисовал очередной чертеж ( который надо было еще недели две назад сдать ); естесственно это не занимает весь день, но у таких лентяев как я это занимает недели ) Ктомуже многие люди смотрят аниме сутками, и читать сутками субтитру неоч хочу. и животная суть не позволяет им не занять место старшего. Скачатьпрограмму для бесплатных подарков в контакте Проффессиональные средства для отбеливания зубов Какя она была, эта уходящая осень, эта грустная незнакомка в длинном плаще и берете? Страртапу нужны основатели, но не очень-то нужны сотрудники ( Он отметил, что летом ему это еще не удалось толком сделать из-за череды кризисных ситуаций, передает телеканал Sky News. Мачовсе местного производства, то есть к отдыхающим отношения не имеют. в принципе, ничего менять не буду. Соотвественно дома у меня книги везде и как следствие катострофически не хватает места В Ярославской области повышается стоимость проезда в пригородных поездах И неудобно уже другой кофе брать, не хочется их путать, а то ведь в центре города, сколько народу к ним заходит, поди всех по имени запомни и кто што пьет. При достижении загустения соуса, добавляем галушки. Часто мы сталкиваемся с каскадом свалившихся на нас неудач и решаем, что так будет продолжаться и дальше. Причесляя себя к какому-нибудь нарпавлению, увы, приходиться расплачиваться за его " грехи ". С ним хочется проводить время дома - наедине, забывая все заботы и неприятности. Шчастье привалило короче По сути, интереса никакого моему многотысячному другу не представляет, однако, некоторые один-два человека проникнутся слезами. Романтические комедии, мелодрамми - это нам вобще не надо. Настоящая, теплая, зеленая, солнечная и наконецто можно будет на себя одеть то, что хочется, а не то что надо! Журнолисты всегда все нагло, беспардонно переврут. вспомнил, что с прошлого года остались некторые дела, которые можно было откладывать и далее Еще Ясна научилась обижаться, когда что-то не по ней, и выражает это сразу ооооочень громким криком, начинающимся беззвучным сморщиванием и багровением лица. Меня вон зафтра в суд под расписку, сегодня полночи спал с включенной водой - затопил косяк весь ) но сегодня так получилось не потомучто я проспала... ваши однаклассники и однокурсники рядом с вами Святослав, великий князь киевский, - сын Игоря и Ольги, в значительной мере правившей при сыне государством ( до ее смерти в 969 году ), поскольку князь все время проводил в военных походах. вобщем было задание - составитьт краткий конспект историистановления спец психологии унас и зарубежем. Понятно, что во всех странах мира они похожи, но вдруг кто не знает, что тут у нас он тоже есть - и очень неплохой. Она попросила об этом лично меня, и сказала, что ничего из этого ей больше не нужно, и что забрать с собой ничего не сможет. нет проблем просто вопрос такой всмысле для тех кто его блога не знает? Я до того вблизи не видела, мне это было неожидано. Могрен уже забит отдыхающими, поэтому базируемся ближе к камням, я сажусь дописывать отчет об отдыхе, Гоша купается, потом решает дойти до утеса, с которого отчаянная молодеж прыгает в море. Не могу попасть на страничку в контакте чтото с системой подскажите да и вобще, усы иметь- смелый шаг! один букет стоит рядом с кроватью, вся комната наполнена цветочным ароматом... Здесь часто проводятся различные выставки, посвященные современному искусству, фотографии и музыкальной тематике. Схходили на новый кошмар на улице вязов. Когда австpалийские готы добpались, наконец, до Италии, они устали от гpабежа и нуждались в отдыхе. Постарайтесь встать сразу же после того, как прозвонил будильник, раскройте окна, сделайте легкую зарядку. Проиошли поистине революционные изменения в личной жизни и подрос скилл рабочий. Поручение же Федотову взять ситуацию с музеем под контроль смотрится странно, т.к. нет никаких сомнений, что он и без того опекает данный проект с самого начала. Радикальные инновационные проекты предлагают разрубить этот узел переориентацией школы на своего заказчика. Предположительная цена клиентской базы, если она ведется, что бывает крайне редко: 240 000 рублей Мужык был в транче и тихо повторял - " меня в городе небыло квартира закрыта была... А посмотреть ой как хочеться ) Плюс хаус мьюзик - не мое; еще хореограф седня меня взбесила - шажочки, прыжочки, еще разочек, тьфу. Те, кто был седня в универе, расскажите, че там происходит. С людьми уже давно развела жизнь или ты даже и не знаешь их совсем, а тут почти вся их жизнь - словно на ладони, будто интереснейший роман читаешь. Перед ними бабулька с вооот таким пакетом разных конфет. кстате, из 4х фоток, что ты сделала: 1-я: отрезан один кусочек пальца ноги 2-я: отрезаны ноги и кусочек макушки головы 3-я: отрезаны первые фалаги пальцев левой руки 4-я: ничего не отрезано, но брюки смотряться плохо, и освещение не с той стороны... Удаплить страницу в одноклассниках Отпуслили аж в 3 часа с информатики... С плато был вынужден вернуться на дорогу изза сильного обстрела из танковых и орудий гаубичного калибра. В такие дни ничегонехотения лушче всего идти гулять, голова проветрится и с утра с удвоенной силой захочется работать. Вчера на искусствоведческой сборке услышала два замечательных выражения от ученых дам: и серце мое уязвлено стало - он очень недобрый человек. а я когда стрелял, знал, что это он, но подумал, что далеко и никто не может заподозрить меня в том, что я его убил специально... Отбеливанее зубов от курения Однао лбви куда более серьезной, чем у Анакреонта, скорее похожей на лирику Сапфо. То ли настроение у нее было не то обычно, то ли что-то поменялось, вобщем общалась последние 2 раза она со мной очень мило, в среду вот пойду выписываться. Обажаю кривлятся перед фотообъективом в компании приятных девушек. Прлку мировых религий, основанных на передернутых умозаключениях отдельных индивидуумов, прибыло. бывают такие моменты, когда хочеться зделать что-то сумасшедшее... И что бы было, если его не нашли, а он с нами поехал. Кому мы доверяем тайны? Сказали, что плохо, но не сказали почему. Скоро приедет мое солнце и будем смотреть фильм. Самоодостаточность как правило ассоциируется с субъектностью разьве ты не хочешь быть гламурненьким? Пожалуй, пора готовить ужин и идти на прогулку. Современнойпедагогической теории эта омонимия кажется периферийной и случайной. Чтопродается в тайландских аптеках То ли металла не хватило, то ли скульптор что-то задумал, но никому не сказал... Молдавская группа Zdob Si Zdub собирается летом или осенью выпустить новый англоязычный альбом. если бы было за все время, а не за последный год, то было бы больше ведь АEP у меня уже 4.29 кстате это был один из самых удачных гигов на мой взгляд. А может оно и к счастью? А мне от этих супных дел борща захотелось - сил нет. Траспортная система будет серьезно парализованна на один день - на 18.02.2012 c 4 утра до 7 вечера. Продолжние следует... ну думаю - чтот случилось чтото странное... И маски для волос у них есть достойные. Сегодня вечер кончился в квартире около камергерки, у гостях у тети Лены, которую мне ооочень хочется назвать художницей. Приближается облако гнева - не давайте ему приблизиться, но еще на далеком расстоянии разворачиваете его и направляйте в другую сторону. Помню момент, я сидела в прогулочной коляске, значит года 2,5 мне было, к нам подошла бабулина приятельница, Анна Васильна, нависла надо мной и принялась нечеловеческим голосом вопрошать, ну как обычно: " Ой тыж кто ж такой маленький тут у нас сидит? Неневижу бузысходность! Нельязя верить и прощать всего лишь от одного красивого жеста, не хочу учить тебя злости и неверию, но все же... Почти с самого рождения Яси меня сопровождает Агата Кристи ( обычно я скачиваю все собрание сочинений понравившегося автора, а эта тетя была ну ооооочень плодовита на свои рассказы и романы ), и вот теперь они подходят к концу, и меня ожидает Станислав Лем ( и цитология с гистологией ). тольи депресняк, толи от погоды, вобщем настроение совсем поршивое. Любой человек может, сам того не ожидая, стать преступником или жертвой преступления в любую минуту и в любом месте. Пришла седня утром на свои танцульки. Ну все седня будут вещать про природные катаклизмы, свои отпуска ( хотя об этом и нельзя писать ) и прочий пазитив. Терраристы пытаются напугать нас. А Амстердам - патамушта тоже мокрый. по идее мне должно быть оооочень стыдно. Обтиреть грудь, живот и для ускорения обмахать, потом спину. Претендет депонирует на определенном счете сумму, достаточную на покрытие затрат государства на его участие в выборах. а что случилось-то? Если ооооочень повезет - ну, 65. С сегодняшнего дня точно могу вам сказать, что метро - это священное место для тех, кто замерз... Прррроклятые буржуи будут морить меня незнанием результатов еще недели три минимум - ближе Кембриджа не нашлось никого, согласного все это проверять, конечно же. Обьяснил по телефону куда надо кликать мышкой, чтобы найти его несчастный файл, скачанный по умолчанию во временное хранилище. К северу же от Пафоса мы посетили грот богини Афродиты, где, купаясь в знойный полдень, она однажды познакомилась с отдыхавшем на соседнем пляже Адонисом. Опять же змей - он и есть змей. и я весь день куда-нибудь да ходила: то с Ясей на развивашки, то в универ, чтобы оценку по философии в ведомость проставить, короче ооочень много по улице пешком. Создвалась полная иллюзия лета, и очень тянуло искупаться. Фотография, которая не занимала бы тут места, если бы не Дима, который умудрился сфоткать обычный ряд картин так необычно Ловите, ниже идет и вобщем обещанная долгожданная статья, получейте удовольствие. Когда краска высохла, карандашом наметили имя. Ну вобщем засыпала я эту геркулесовую смесь на яблочную. Повел свое чудо сегодня погулять на юго-запад, прокатились на подеъмнике, потом долго смотрели на город с воробьевых, вообщем было здорово. С которым я опосля цигуна занимался шагистикой. Первые личные деньги появились в начальных классах школы, с завтраков. Первые деньги я заработал в 12 лет, землекопом в археологических экспедициях и спасибо родителям за то, что они мне сказали " оставь их себе ". Монастырь был заложен в 1183 году пфальцграфом Рудольфом фон Тюбинген. А написать я хотела вот что - на районе седня подошла ко мне женщина - то ли Азейрбаджан, то ли узбечка. Можете мне не поверить сейчас, но потом поймете. И еще желаю переводить во много раз лучше, чем безымянные господа, о которых я так часто упоминаю в своих постах... Притно когда их две и есть с кем разделить этот восхетительный напиток. Почему-то я ненавижу серую ветку метро, там жуть как некрасиво и ваще какие-то чегеря кошмарные, какой-то производственный район, некрасиво, уродские дома. Поскользулся юзер и грохнул пентиум об асфальт - тот на куски и развалился. В натуре по настоящему рвет на кусочки изза того насколько мега позитивные новости публикуют интернете на сегодняшний день. Кстити хочу сказать об профессиональном хирурге Тигране Алексаняне. Так начинать тренироваться надо во дворе, а у нас вокруг одни девченки рождаются. Так что я решила не просить всех сесть, а отнестись к укладыванию как к ресурсу ) Такчто - все хорошо и хочется в макдональдс, или просто съесть какой-нибудь гадости... Они слегка кисловаты на вкус, но это их не портит - есть можно ( если, конечно, не страшно соседство с химическими складами; нам было не страшно и мы ели ). Неделя отдыха прошла незаметно - собстно, как всегда. Вчера имела неосторожность очень сильно порезаться: срезала овощерезкой 0.5 ногтя и подушечку пальца под ним. То есть размещение в пространстве таково, что преподаватель ниже. Я чувствую своих ушей запах гнилой Надо чаще встречаться, пока не перестали улыбаться!! Игорь Зеленский отметил, что партию Кармен на премьерном показе будет танцевать одна из ведущих артисток труппы Анна Жарова. Поссмотрела " Влияние " Бурлака... Что-нибудь строительно магазинное, незнаю вобщем. Ну то есть вот он по лестнице идет - как она его последний раз видела - и идет мертвец. Поклониики ее творчества - обратите внимание первые три и сааамый нижний - ооочень-очень! Видать придеться уже сегодня написать про этот чОртов этикет. Онтогинетически подобное расхождение между благими намерениями психозащиты и ее высокой себестоимостью для всякого жизненного пути не только сохраняется, но и усиливается. Затем мы своим ходом дошли до здания ГИБДД, долго ждали внизу, потом ждали наверху, и наконец нас отвели фотографироваться на права. Расталкала детей и сфоткалась ) Но и грустить из-за этого вряд ли стоит. В Европе с 1618 по 1648 год бушевала ужасающая война между католиками и протестантами, охватившая практически весь континент. на сайте администрации есть какаято бумажка еще за 2008 год... Ничто не сравнится с разворачиванием ста пятидесяти подарочков подряд, хоть бейте меня камнями. Еще не догадались, в чем засада? Купец решил, что она родственница его любимицы, и весьма огорчился, считая себя виновником ее смерти. А у нас своя локальная " зона нестабильности " - район Сенной площади и Апраксина двора. Ягоды винограда вышиваются специальным швом несколькими оттенками, в том числе и смешанными. Выдав дочь замуж, мать автоматически забывала бы о ее существовании. Не буду говорить, что нечего написать, что ничего не пишеться... Прметы прыщи на бороде кстате завтра в вудсток едем со съемолчной группой, продолжение съемок для мегаблокбастера ) Зарегистрироаться в контакте Напрашиваюттся всякие нездоровые мысли относительно того, что сдают в этот ломбард. Людей уйма, штормило во все стороны ( собстно, только так я и передвигалась по залу ). Еще летом, я купила ооочень, ну очень красивые срезы агатов. Прдолжение следует... Ташшусь от ее скромности. Можеть выберешь из моих дайревых? его небыло с 1993 года !!!!!!!!!!!!!!!! Вообщем остаецца пережить английский в пятницу. Спасмбо всем френдам, которые не отфрендили! Любой жест, который не был перечислен в настоящих правилах, и, таким образом, не может быть воспринят в качестве камня, ножниц или бумаги, считается недопустимым и, соответсвенно, запрещен. Особо провидящие могут даже составы команд угадать, вобщем пишите все что вам когда-либо снилось, являлось и т.д. по поводу этого матча. я никогда не вела дневник, но нужно худеть и хочу попробовать и вобще у меня подход как у Вас в точности, но без дневника, поэтому и заинтересовалась ) Бывший оливетанский монастырь отдан Перуджинскому университету, одному из старейших в Европе ( 1307 ). Я теперь понимаю, почему у всех этих мужиков руководителей есть девочка - личный ассистент. Маршурт пролегал вот так: в чем дело ващще не понимаю... Движок-программу нужно поддерживать, развивать, интегрировать с новыми трендами Сети и основными браузерами. ктож этот человечек вызывающий в тебе ту миленькую дефчушку? А в те времена на это оставалось мало времени. На фоне серого неба это было завораживающим. Злостный падонаг в костюме дьявола измывается над людишками. Неопределнное московское лето растянулось на такое же неопределенное южное. Будьте способным на поступки, сюрпризы. Непонравилось повальное пьянство, некоторые допивались до того, что с трудом держали карты. Продолженое следует... Начался день с того, что я все-таки встала в семь часов утра, несмотря на то, что легла в начале третьего... Очеь талантливый московский музыкант перкуссинист, диджей и вокалист! Не могу зайти на однокласники другим логином А естественная смерть от старости равнозначна пешему способу передвижения. Мы не опаздываем -- нас задерживают важные дела. Насчет фильма - посмотрел первые тридцать восемь минут, а потом он почему то завис, вообщем фильм так себе, правда сегодня я его попытаюсь посмотреть полностью. Организм пытается ликвидировать эту клетку. Кстатиесли глава района потратится на пожарные вопросыэто нецелевое использование средствпреступление. А вообщем то мужчину спросили... Ну, вообщем, вот такой вот футбол моими глазами. К моей великой досаде, на второй половине пары, несмотря на проектор и отлично видные на стенке кадры, я засыпала. Отрисавала заново своего дндшного игрового персонажа и теперь не могу налюбоваться. никогда не мог подумать что и на таком огромном растоянии ктото умудрится так смачно раздразнить аппетит... Они про социализм знают все лчше тебя. Потом сглотни, веть белки фсе-таки... Я многого не могу и не берусь. Решила с пользой провести время дома, обдумать все, что было в этом году и разобраться в себе. Ребенок, естессно, тоже не в курсе, что здоровенная " собачка " опасна. Получаеться что Пресня оторвана от остальной части кольца с двух сторон? Аленка у меня такая молодец! Противречие в том, что ЖЖ изначально подразумевал предельную честность и где-то даже эксгибиционизм, но когда дело касается конкретных людей, начинаются вопросы... В каких случаях необходимо поддерживать голову малышу? Поэтомуее танец был во-многом основан на свободной импровизации. Фотоаппарат хотелось выкинуть, потомучто просто НЕВОЗМОЖНО все это выместить в карточку, ну ни как, ни при каких условиях Нактило что-то повспоминать прошлое... Нверху было написано, мы больше не поддерживаем ту версию... Пажалеть иво, праявить сачуствие, нужно успакоить чилавека. А седня Чернова позвонимши спустя мильон лет, очень весело обсудили мою болезнь и ваще текущие происшествия. Тварите добро. Я ведь когда-то и не думала о машине, а терь уверенно хочу сначало сдать на права... Зафтра с утреца еду в офис разруливать рабочие вопросы, в связи с возростающей в середине месяца конкуренцией, из-за начинающихся специальных акций, в частности, в сегменте гидромассажа. Впрочем, " официальные " портреты ( не всегда высокого качества, увы ) востребованы и другими, менее именитыми особами. Школа была частная, и я был единственным выпускником своего года и класса - это наложило отпечаток на моей личности. Мы напрыгались, наорались, напились и ваще атлична провели время. Предлогаю для избежания эффекта поломанного телефона зайти самостоятельно на сайт и изучить все платформы. Я заметила за собой то, что уже начинаю в красках представлять нашу вполне возможно скорую встречу. Проржавшись, мы рассказали ему всю историю. Позже по произведению поставили телевизионный сериал. Хоть водитель переодически открывал окно и было жутко холодно, все же я мечтала о том, что бы пробка подольше не розсасывалась и я могла еще подрыхнуть. Мне в штабе посоветовали расписываться на местах стыков переносных урн при опечатывании ( правда, не нашел норму закона, которая явно разрешает расписываться ) и делать фотографии этих урн ( или короткие видео ). я иду на работу потому что надо комуто а не потмоу что мне интересно Неорганизованая преступность собственных эмоций... Путь второй был неуниверсален - школа когдато закупила ноуты с 7 стартер с лицензиями ОЕМ которая была снесена но сами то буковки кодов остались. Как можна посмотреть кто в контакте заходил мне на страницу ОрганизЬм не выдержал откровенных издевательств. Певрый мультик очень смешной, здорово нарисован и озвучен, а второй пластилиновый, по типу " Вороны ". вобщем когдато Петр I гениальный и безумные решил для блага России построить именно тут город. Сможем ли мы, реально глядя на вещи, при нынешней демографической, экономической, политической ситуации, удержать огромные слабозаселенные территории по соседству с полуторамиллиардным, наращивающим промышленную и военную мощь Китаем? высокая вибрация от которой голова становиццо ватной ) Ученики предлагали свои ответы, но ни один из них не устроил Учителя. Вроле моньяка роперд Дауни-млатший ( ему идет ). вроде уже уложил в голове все по полочкам, а тебе вдруг каааак покажут, что все иллюзия и будет совсем по другому ) Наврено придет время когда придется снова скрестить нам мячи. Раньше я всегда чувствовала чужие стены, что это его дом, не мой. а я в метро без книжек не умею. Сегододня при попытки перегонки " Жанны " в формат, более подходящий для прослушивания на компе и в машине, в приводе раздался взрыв. Следуюий шаг, как ни удивительно, 2048. Ответствтенность за этот теракт власти США возложили на террористическую группировку Осамы бин Ладена " Аль-Каеда ". хорошо что там не было обрыва вниз, а то бы члетел точно, Предствители семей встретились поздно ночью и заверили друг друга, что никаких претензий друг к другу не имеют, что весь конфликт молодых офицеров исчерпан. между прочим у них есть вакансия: могу побаловать себя сладким, но потом от него мне же хуже - организм отвык от таких доз сахара. Рязнань и Сочи не в счет, это были командировки. вобщем есть в хорошщем качестве 3 и 6 сезон Папиломовирус именно тем и опасен, что может быть онкогенного типа. Чувсвую я себя гораздо луче, если кому интерстно. Сомтрела давнои плевалась страшно! Превосходный символ сенсорной и психической ценности естественного тела - ковер-самолет. И я там немножко собираюсь замуж. За это время подготовила журнал к югу, ща буду любоваться, можт голова успокоится. Разве горю такому помогут рыданья живых? Я иногда думаю, откуда, почему и для чего есть люди, которые маньяки. Я думаю, что молодой человек должен жить в реальности, которая ничо так, а девушка - где жуткий диктатор отгрызает головы младенцам. Вечером небыло инета, посидел с мобилки. А что происходит в твоей голове? Вообще, кхмерская цивилизация в свое время была очень крупной и влиятельной, контролировавшей огромные территории в юго-восточной азии. оькрыл там дыма полно начали тушить вызвали пожарных на работе мне сегодня учинили аццкий квест, в результате очень уж сильно захотелось убивать. Милиардер Адольф Меркле из-за мирового финансового кризиса потерял сотни миллионов долларов. А мой переодически ночью начинает меня будить ласками! потом одел старые AKG K-100, уже чтото чувствуеться. Все полицейские выступают в поддержку права на организацию общественного собрания. седня геныч полдня ползал на корачках под своим столом, пытаясь подключить колонки ) Предалагаю следущее, как всегда, почти бесплатное решение проблемы: Я, канешна, пыталась реабилитироваться, оправдывалась, что я вовсе не про вылет, а про этаж разговор вела... Страшно видеть, как стареют самые близкие люди. Отчетность, которая официально публикуется в СМИ делается совсем не для того, чтобы в ней было легко разобраться. Там же был построен первый в стране буер « Метель », что положило начало к развитию буерного спорта в России. Несколко солидных частников НичО нне поняла, но все очень умно и круто! вот такая тарабарщина мне, Вова, сильно по нраву, вобще фонетику я затейливую люблю ужасно. Почувстовала себя моральным уродом, но тем не менее все выкинула. Нелезьте в его кошелек, не считайте его доходы и не пытайтесь управлятьрасходами. Режисеру удалось создать такую атмосферу, что зритель полностью включается в происходящее на экране. бредятина, а 3 рубля с тебя про што взяли? или расплата, за то, то вы ее когдато курили... Вальс в 5 па ( внимание, будет под другую музыку с переходом местами на обычный вальс, подробная схема будет выложена ) На Родине, естесственно, имя предателя не вспоминалось. Начинался он с того, что меня в начале двенадцатого разбудила мама, чтобы сказать противным, как мне спросонья показалось, голосом, что мне необходимо срочно встать, и пойти завтракать. Что случается, когда из наших уст звучит то или иное слово? Я согласна с таким положением вещей - но! А утром шла в универ мимо главного всегда закрытого входа, и буквально в метре впереди меня с козырька свалилась пустая скомканная банка из-под колы кажется... Удоволствие от проведенного времени и классные фотографии гарантируются !!!!! А еще, после некоторых приблизительных подсчетов, я поняла, что мне нужно ограбить банк. ихнеи депутаты гор собрания дабы покрыть долг от банкротства организации бывшей когдато на месте сочитеплоэнгерго пиняли в 2008 список нормативов потребления всего и вся в том числе тепловой энергии. Прочветание аббатства продолжалось до войны Кипра с генуэзцами. а я была седня в зоопарке :) Будет новый человек, счастливый и гордый. Они, как их не назови, терпеливо ждали своего часа. Министерство культуры Франции официально признало, что фрески могли быть вывезены из Египта незаконно. Но есть и более интересные фильмы авторские и еропейские, которых тут просто нет... И именно это отличает классический средний класс, бюргерство от тех, для кого все эти вещи непринципиальны - наемников, для которых главным является количество благ и уровень потребления, в обмен на которые они готовы променять свою свободу и самостоятельность. открыть форточку нельзя изза простуды. Прийдется подходить. Получать любовь в том форме, которую считаю приемлемой для себя на данный момент. Как обидно порой знать очевидную вещь, в которой невозможно убедить того, кто не видит ее в упор... За это время доходим до моего дома. Мне на глаза снова попалась та самая фэнтезийная история. Дети растут ооочень быстро, на прошлой фотке она совсем младенчиком была ) Нинавижу всех визжащих девак с умилением тискающих очередную книжку с прыщавым очкариком Постарюсь не очень поздно лечь. У меня уже появились в этом направлении кое-какие идеи, но, конечно, нужно ждать лета. вот сижу и обзваниваю все автошколы, ищу приемлимый вариант, да и ваще надо, пока полгода не ввели!!! Это должно сказать вам о том, что я сейчас состою процентов на тридцать из неуправляемой сентиментальности и на семьдесят из нервов. Только что позвонил товарисч, с которым я о чем-то договорился. А еще седня меня загребла служба безопасности за то, что я пронесла на фабрику электрогнигу. Как Ванька-Встанька была, то прилягу, то присяду. Каааак гаркнет разгоряченным подгулявшим молодцем: " Пива! Ну оооочень кушать хочеца ) Как только я просыпаюсь, я отбрасываю чары сна, ложную тождественность, и понимаю кто я на самом деле, и понимаю, что весь мир моего сновидения - это лишь моя собственная фантазия. Усиленено ударить по двум направлениям... что примечательно перед нами выступали мои знакомые с реп базы, которые оказались крайне близкими друзьями нежданным, вобщем море позитива и рокенрола. А впрочем, она-то сама, заглавная героиня сказки, кто такая? Одна региональная организация, ОДКБ, работает на вовлечение в зону своей ответственности другой региональной организации! Может если все сказали, то сработает? это вобщем жуткий курс о особеностях развития психики детей и взрослых в условиях " стесненного " или нарушенного функционирования организма. кстате тема про правило буравчика есть в Катином ЖЖ с этой позиции все же мой любимый фильм " про любоффь " был более реалистичной картиной. Староста неосторожно что-то сказал - естесственно, неспроста. Проаализировали мои энергетические затраты и правильно их распределили. Кто-то там, наверху, услышал мои молитвы, ругань и угрозы, и сделал мне ливень. ты трать себя все равно не зря а так в пустую проживеш может и веселеи но пустота будет. Викуся - моя маленькая хихикающая бусинка, ее все время хочеться обнимать и заботиться. Собьранное и натянутое полотнище зажмите коленями. Оказалалось - столько же, просто нужно было добавить окно в список пожеланий при заказе. вообщем вот две лучших фотки из всего того, что получилось... с завидной периодичностью перемещаясь по толковым спортивным internet ресурсам я постоянно налетаю на гору такиж же тем, но всеже далеко не многие считаю возможным выложить туточки на страничке божеупаси если хоть ктонибудь из вас самаритяне потратит хоть шилинг на эту пластинку. знать бы еще, че ето такое ) Но все же жизнь переодично сталкивала нас лбами и довольно таки болезнено. В первый раз вобще-то узнал про такую вот штуковину. Фантаститечские ощущения: пироги были с яйцами, рисом и луком и с капустой, ничего вкуснее горячих пирожков на Пасху не помню из раннего детства. За последние годы у нас сложились очень сложные отношения, периодами отношений вобще не было. Сосотояние невменяемое, руки не слушаются, ноги тоэе не совсем адекватно реагирует, но голова страстно заъотела напсиать об этом. Ответить на него можно вполне определенно: критерием уничтожения целостного процесса является прекращение существенного процесса. И это ооооочень сложно, особенно когда надо слушаться человека, который сам только учится и жутко не уверен в себе. Ишшо варианты: Партенит, Симеиз или что-то в ту степь. В первую очередь - внутри произведения, где неоднократно повторяется базовый кубический модуль. в следущий раз обещаю в шлеме. Вот с параллельной парковкой у меня и были проблемы... ето были просто мысли про одну личность, Родители пришли к православию года три назад, а сестра пару лет, как крестилась. Но про воду, которая камень точит, это ее главное оружие! Так что ждем новых фотографий и более точных данных. Ярким примером здесь может служить отечественная история прошлого столетия. Я одиночка, не люблю шумные сборища, но порой мне так одиноко без дружеской поддержки... А еще, в последнее время, периодически всплывают люди, с которыми я уже очень давно не общаюсь. Откпытки бесплатно в одноклассниках оооочень долго ехали на нем. Люблю тебя, читающего эту запись, просто потому, что любви, переполняющей меня, хватит на всех - мне не жалко. Если разбирать по пунктам - возможно, и да, кто ж спорит. Друзья мои, друзья, что бы я без вашей с готовностью протянутой руки делала? У меня парикмахер в отпуск ушел. Следуюший раз я в штате Нью-Мексико, я хочу встретиться с навахо индейцами. сегодня впервые в жизни - тоесть впервые за 34 года жизни в моем доме я сам! Получилось 4 по 5 и пятый подход ваще черти что. Спаааасиб вам дорогие мои !!! и одтельное нежное рано уезжающим в Москву ) вот уж вранье нащет некрасивой тебя, вот уж вранье! Хорошо, что это были разные недели. В 1863 году с согласия семьи Раецких костел был освящен как православный храм. вот мне кажется, что еслиб я женилась на тихой домашней девушке, то моя жизнь расцвела бы новыме краскаме. Ему предложили деньги, уход и всяческую заботу, но он не соблазнился этим. Ездил тут провожать и встречать любимую Любю дождь, когда тепло !!!! Оптять таки рядом с вильнюсским универом А про Мисфитс я плохо обосновал: естесственно это панк, но его также можно считать ДОготикой, они нереально повлияли на эту культуру, хоть сами ее частью не являлись. А мышцы все-таки болят, уже чувствую. НАконецто мы скооперировались, собрались и на этих выходных сходили в музыкальный магазин за флейтой, Мане не 24х летие педагог обладает огромным запасом хлестких выражений, любит черный юмор и, естессно, сливает это во время урока. Многое в этом спектакле удалось молодой тогда еще актрисе. Через иллюминатор была видна Родина-мать: Вот и сейчас - спустили его на землю и кот пополз на полусогнутых на исследования... Поскореебы эта мода с интернетом прошла. Мне еще тридцати нет, а я уже ночью не сплю, а слушаю свое сердце. Сварачиваю гамак и на барикады... Обешают в местной газете участие порядка 200 тысяч человек, что для 25-тысячного городка многовато, имхо. После того, как вы ушли, у меня к вам никаких претензий больше нет. Ужасные отношения между братьями-сестрами в маминой семье: родителей они лишились оооочень давно самым трагическим образом, мама осталась самой младшей. А сегодня пришел товарисч, вроде как ( будем искренне надеяться ), помог мне с компом. Я кстати сам пришел из христианства. Можешьв двохсловах сказать отчего зависит качество текстур и виза? Привет всем в этот пасмурный и ветреный день. Определяешся окончательно, ан нет, очередной самообман. Теперь я твердо уверена, что вам можно доверять. Эту подставку для журалов я делала для своей подруги-одногруппницы, с которой мы учились вместе в университете. Ребенок у нас резко полюбил фотографироваться: требовал, чтобы я его сфотографировала чуть ли не у каждого столба. Сообщете всем кому можете! Преподаватель: Да, безусловно, но я незнаю что какое Боженька Но, коль таковые имеются, пойдем дальше! Программа " Космос " является одной из самых масштабных программ по изучению космической эволюции. Я приехал через час а работы так и не начались, правда воду удалось както перекрыть. Наберешся наглости, позвонишь еще ( В 70-е годы в институте мне, естественно, пршлось сдавать госэкзамен по научному коммунизму. Тварррь Арагонес, такую ситуацию создал !!! Вчера сходила на Клик ( ничо так фильмец ) Когда мы только начали жить вместе, у меня периодично возникало навязчивое желание закрыть руками уши и орать. А самую важную точку в нашей прогулке поставил вот этот вот товарисч. еще можнго в бикини ходить зимой по системе Иванова Конешно все теже " взрослые " люди в " чудесной " стране америка в 45 годах своими запретами создали этот стереотип. Раставаньям и потерям, я не верю, я не верю ) вобщем если бы не желтый носорожка, то возможно я бы сейчас бюыла балериной... Стали пешеходы переходить дорогу ( в общей сложности было всего 3 девченки ). Давай мы просто потанцуем для себя. Спускюсь в метро и ложусь на лавку. Можно ли кушать после 18:00? а что тут писать и незнаю... Поскольку мы закупили основное оборудование, нам уже не придется делать такие капитальные вложения, мы можем направлять основную часть средств на реактивы, материалы, чтобы увеличить производство. товарисч говорит, мол убери, ты че себе за извращения поставила. Повсему выходило, что это просто много теток в разных кабинетах различных организаций, с пишущими машинками и календарями на стенах. Ну вообщем, много обкуренных тараканов. Ещее один вопрос волнует меня: почему в одном из магазинов он стоит 13 тыш, когда везде - 16-18? Но Уилл Смит видимо продавший душу дьяволу, чтобы не стареть, каждой своей гримасой и ироничными замечаниями усердно напоминает как сильно нам его не хватало последние годы на большом экране. Но, хоть праздник домашний, но все-таки - праздник! Померели давление, оказаолсь оч.низкое давлениеи оч.высокий пульс. Поздравлдяю Вас с Рождеством! по утрам не хочет вставать и устраивает такие сны, в которых я не то чтобы спасаю мир, но если проснусь, будут неприятности другим. Давнооо ничего не писал. Пасмарели друг на друга, улыбнулись и кивнули как старые знакомые. Проблемнная кожа, угри, черные точки, расширенные поры А вокруг какой то непонятное чтото не дает мне этого сделать. Так что теперь можете смело обзывать водителем ) как объяснил потом: " А зачем тебе было знать? " На площади вокруг фонарного столба разместилось шесть солидных матрон. Прихали в Сяньян, где и узнали, что из этого города прямых маршрутов до достопримечательностей нет, но добраться можно различными рейсовыми маршруточками. конешно, видя ее понимаешь, что в принципе и не для кого ему себя в порядок приводить! В частности отуда пошла байка ( взятая на вооружение Шиллером ) о том, что жена Филиппа изменяла ему с молодым Доном Карлосом. И одиночество мое вовсе не надуманное, а реальное. зафтра после 9-ти к инспектору. Называетсо наташа собралась приехать. Покозать рецелт кремлевской диеты Оджни отправляют почему то в таксопарк, типа там и только там меняют стекла !! Кто-то купил права - и накропал бездарное продолжение. Отечественне чаи ии коктель для похудения. А в Питере у меня родилась племяшка и я уже очень хочу увидеть этого маленького гномика и на правах единственной родной тети ищу ей самый замечательный подарок. Высадив троих в машину довозки, к экзаменуемому сел гаишник. Усовершенстваванный алгоритм, по сравнению с встроенным, но работает только с английскими словами Онустал после работы, случается, что его обижали " большие мальчишки " всуровом бизнесе и ругал злой « дядька-начальник ». Повертикали чтоб весь спектр был, типа, радуга. Профилиактика и лечение рака легких, желудка, печени, восстановление после химиотерпии. Именно так номер выглядит на визитной карточке. Но это была моя философская присказка. Мне так кажется, что вообще идея равенства, свободы людей не имеет отношения к социуму. некотрые вещи в моей жизни начинают не радовать Все импульсные микросхемы которые знал там нашел! Хотелось бы, чтобы была вся палитра цветовой гаммы, а Елка светилась буйством Вашей фантазии и Вашего воображения. Отдельный совет: прочтите хотя бы одну, желательно серьезную книгу по композиции. А это не есть хорошо, ибо обязательно в самый последний момент что-то случится, и увидеть их не получится... Скришнот с Космополитеном видела ) Последние года два, пожалуй, самое тяжелое, что со мной было - это разделение на две жизни, непонимание того, чего, вообщем надо. Кравиво - домики, комнатки, озера, искусственные горы, деревья Сложно двинуться в такой очереди, перевалиться с ноги на ногу не зацепив сзади и спереди стоящих. Вот Черный Лимузин и ожил и действительно стал самым лучшым и удивительным автомобилем в Мире - он был самым быстрым, самым мощным, вобщем, самым-самым. Ктобы о таком мог ващще подум... Иногда, то что происходит в любви кажется очень жестоким. Вместо этого ты просто обращаешься к прошлому опыту. В российском правительстве изданию подтвердили факт получения письма от госсекретаря США, но отказались раскрыть его содержание. А о чем могут говорить две хорошие подруги, учащиеся в одном вузе, и встретившиеся для похода на концерт? Так что, у нас будет теперь где культурно отдохнуть ) а ваще, Жень, я, оказываецца, убежденный урбанист. Некоторые люди считают стакан наполовину полным, некоторые - наполовину пустым. Посочуствовали бы, а то накинулись на старого чела. Но то, что сейчас вы испытываете неприязнь друг к другу, - это естественно. потом через две пары курю на порожке, охраниик выходит - я его про милиционершу спрашиваю - чего говорю девушку не пускали - а он мне вооще откровение - а у нее пистолет! У нас тоже солнышко, но еще ооочень холодно. Но став старше, она осознала, что точность и четкость - ее все. На выезде из Клина бдительные гайцы на посту решили проверить актуальность моих транзитов. сцылка на статистику liveinternet по " сайтам рунета " А вы помните свою первую любовь??? С ним ничего не сделаешь, от него никак не избавишься, как в бомбежку - бомбардировщик из рогатки не собьешь. Ну ты сама, вообщем, вкурсе. Грабитель поехал в сторону Краснознаменной улицы по встречной полосе и по дороге задел три автомобиля. Через 10 шагов история повторилась, но уже с дургим человеком и тут до меня дошло, вообщем мелочь, а приятно, раз пять я так наверное на ВДНХ и здоровалась. Мне ничего не оставалось делать, как основывать еще один город, дабы заделать дыру в державе и производить длиннолуков с катапультами. Вам только кажется, что вы выигрываете, деля покупку на платежи: в итоге они накапливаются, вы теряете контроль и платите в месяц больше, чем можете себе позволить. Поспшь тут в большой комнате, что как проходной двор для всяких непонятнх мне лиц мужского пола... Объяснала моей началнице что, я заболела и больше не могла быть на работе. Раньше, только наличие зубной щетки и всяких других мелочей выдавало мое присутствие в этом доме, а сейчас сдесь моя енергия, моя любовь, мое приятие этого места. Едешь и не знаешь, что в Норвегии расстреливают людей. Появилиь новые военные угрозы, против которых, как показывает практика, США не очень то способно защитить - характер угроз таков, что с другого континента их не решить. Наверное почувствовать что-то точно можно, а то бы почему эта старушка с таким осуждением на меня смотрела. вообщем для " обычных людей " занятие тоже было найдено. Вернется, напишет заявление об увольнении. Серебрянные звезды нашептывали ему слова, а ночной шутник-ветер играючи вплетал в эти слова ритм и размер. Мееедленно - мееедленно просыпаться под приятную музыку. Теоретически за счет валютно-обменных операций банкиры могли бы компенсировать недостаток наличных средств. Сообветственно вы получите просто массу предложений. На огонь реагируют достаточно выборочно, тупо на источник тепла не кидаются, то есть если развести огонь, то видимо их внимание привлечь можно, но изза облаков они просто так не покажутся. В тебе ценят доброту и отзывчивость. лето 2011 если возвращаться к этому куску моей жизни началось и вроде недавно и вообще както давно. Тепреь мы не бомжи, теперь мы банкроты, но абсолютно счастливые! Онбудет знать, что вы тоже что-то можете сделать в этой жизни, и уважениек вам только приумножится. Не юзаю, и надеюсь не придеться юзать. Кто составит компанию в бассейн зафтра? А пока нужно наслаждаться тем, что нам дано, и присматриваться к календарику - когда и куда можно выехать для кратковременного отдыха. Меня небыло дома когда она умерла. Стисняюсь спросить что такое ирригатор? Вчера меня насильно затащили в Коломнеское, потмо стемнело и похолодало. скачать однаклассники на мобильный телефон бесплатно Есть такой капиталист, в тюрьме сейчас сидит и, похоже дооолго еще будет сидеть... Он бесследно исчез в восемьдесят девятом. Остаецца смириццо и бороццо... Дома ждет еще одна книга подобного плана, даже незнаю начать ее завтра читать или разбавить чем-то романтическим или фанатастическим. Поседняя фраза явно впечталение на тебя не произвела. Но все же, это мелочи по сравнению с тем, что могло вызвать у Крысы такой силы беспокойство. Говтовится видео репортаж о конкурсе Мисс Латина 2012 власть и управление - конструкции человеческого ума, лежащие в основе его " теории объяснения ". Соответсвенно наша звезда прыжков с шестом с результатом 4.60 первая. На последних звонках девочки плачут почти все. как многие наверное слышали, в некоторых европейских странах нужно платить за проезд по дорогам. По моему мнению это самый ужасный сбор из всех што у нас было. От нее особый кайф: можно постоянно регулировать толщину и форму линий. Разве нормальный человек отправит в ТАКОЕ заведение родных людей? На полнеба растянулся чорный дымный след Мууультики !!! Ты вернууулась !!! Я тебе так рааада !!! Немало достижений было и в развитии электровозной тяги. Представте себе, что это сотни килограмм муки распыленные в воздухе. Формулы, правда, ему приходилось зачитывать вслух или записывать. Если ты не возьмешь отвественность за написание картины, то за тебя ее напишут другие. Он принес новый флакон духов или туалетной воды уж не знаю но раз в несколько часов ей весь оббрызгивается !! Подливет масло в огонь активность одного гипермаркета, который пользуясь жадностью и ( или ) бедностью наших " односельчан " как будто специально создает давки и очереди за дешевыми мандаринами. Права мне жизненно необходимы и я не понимаю, как могла жить без них столько лет и, самое главное, как я буду жить без них дальше. работать начинаем по-тихоньку, но планируем развицо межгалактическими темпами, с вашей помощью кстате ) Сказали подождать, - как-то жалобно отвечает мущщина, остальные молчат. Паралелльно проверяю написанное на смысл - активный процесс Как место захоронений, эта территория использовалась уже с 30-х годов, и было засекречено, вплоть до 1989 года ( по вполне понятным причинам ). Аутоагонистофилия( Autagonistophilia ) - сексуальное возбуждение от того, что являешься предметом всеобщего внимания или от создания условий, при которых такое публичное наблюдение возможно Надоело закапывать талант в землю. Утро - самое удачное время для беспокойства и депрессии, когда все представляется в самом мрачном и черном свете. Очень часто мне нравилось, что мне прощается тот или иной поступок, потомучто я маленькая. Ограниченность в 160 символов латиницей придает им емкость брошенного слова, иногда необдуманного, горячего, случайного, а электронный формат - долгую непредвзятую память. Мужчины, которые свято верят, что цветы это лишняя трата денег и вобще они бесполезны... Сегодня я обзавелась новой пломбой в верхнем зубе. Прстарайтесь отличить абоpигенку от пpиезжей, старую деву от матери семейства. Слушай, ты как-то подозрительно сложно живешь. Объяявили что автобус уйдет через пол часа. На детальное изучение документа и предложений участников может потребоваться год. Небольшой мороз сильный ветер увеличивает градусов на 5-10. Всех воспитателей поздравляю с их профессиональным праздником!! Феликс сказал нащет грабель " это как надо было устать в своей Москве! " оставшийся отрезок дня был всецело отдан ежеминутным изменениям планов на дальнейшую деятельность. да и многа других образов, главное в одном из них не остаться на долгий срок, иначе скука-мука... Почувстовав себя готовыми к новым свершениям, на третий день пошли в " Лагуну 69 ", одно из красивейших мест в Cordillera Blanca. Можно еще понять, почему, допустим, Михаил Булгаков опережает Льва Толстого, а Александр Блок оказался за два пункта до конца списка. Поеште грецких орехов. Пробег составил 560 км, за которые было скушано примерно 55 литров бензина. а это вообще ( нащет чувств верующих ) дело по местным обычаям иудейским неправильное. В ARD сочли такие расходы неоправданными, отметив, что для зарубежного вещания существует Deutsche Welle ( Немецкая волна ). Под колеса состава с локомотивом yкладываются тоpмозные башмаки, число котоpых ни машинист, ни помошник не знают. Нельзя считать пару попыток в незапамятные времена умением кататься. Эти люди приближают земную жизнь к гармонии, но дается им все только тяжелым трудом. Господи, помоги мне не напиться! Люди невероятно часто отвлекаются на незначительные мелочи, теряя способность видеть картину в целом. Полагаюдрака и выпивка тоже в комплекте. Сегодняшнй ответ на вопрос про холод: " А у меня солнце на футболке " Артурчик тоже весьма ответственно подошел к вопросу отправки сестрицы в учебное заведение - ни пискнул и вобще предпочел поспать на мамином плече. не появлялась тут уже ооочень долго... представте что вы сидите тихо тихо и работаете с документами а рядом на дороге слышимости работает двигатель вертолета Потресающия серия! Преподовательница резко попросила замолчать или сдать работу и покинуть аудиторию. Не спросишь у командования, что за ерунда? У меня в жизни сейчас есть два молодых человека, которые мне именно что нравяться. прибежишь уставшая и убитая, а она и помучает и насмешит, и вообщем выходишь почти и человеком, с дозой позитивных мыслей. Счастлиывая кошшшшка: сразу видно, что ее никогда не мыли. Вообще, разглядывание фотографий это такое дело: при беглом взгляде нам может понравиться снимок с более яркими цветами, но при более внимательном разглядывании яркие цвета, в каком-то случае надоедают и больше нравится снимок с цветами приглушенными, но с более богатой и естественной палитрой. Мягше я тут становлюсь, и человеколюбивее, черт! Правда большинство на зарплате, а не на контракте. Обьективно говоря, становится уже очень тяжело. За синие горы, где мрак и снега, да и в конце концов всегда есть ктото глупее тебя, ктото умнее тебя, и ктото умнее того кто умнее тебя. Как будто тебя аккуратно взяли на руки и очень бережно несли все это время, боясь уронить. Удачи, хорошего настроения, денежки побольше и чтоб полегче доставалась, ну всего вопщем хорошего и чтоб петух не клевался! Естесственно и понятно: телятина без грамма жира, но в первый раз побоялась незнания пароварки, потому все делала по рецепту... вобщем Господа с нового года опять все подорожало и вы возможно неприятно удивились цыфре денег которые вы должны заплатить за полутеплые и ну даже пусть оч теплые батареи в вашем доме. и все утратит прежний запах, даже чай, бумага, шоколадка, седня я даже не стала спускаться с кровати. тыж обещал, что можно тебя называть " блондинчик "... Приниципы аналогичные применяю, правда иногда срываюсь на нравоучения и читаю краткие лекции... Сейчас, естесственно, почки как никогда и не болели ) Одночеством блеклым, безумным желаньем напиться. И вот в одном из них мы обнаружили потрясающую юбку. Только на память оставила записку и фотку. Просмотер скрытых страниц в контакти если бы была не простуда, а что-то серьезное, ну или даже простуда, но действительно сильная, с температурой 39 и выше, я бы, естесственно, нукда не поперлась. Ответтье мне на вопрос ( адресую пострадавшим ): А что вам мешало бросить вашу барракуду на этапе избы? Очень красивая и добрая фотография! Звонит подружка, она на другом острове живет, не виделись 3 года, но переодически созваниваемся. тебе можно и нужно его продавать!!! Но у меня на этой почве начинает болеть живот... вообщем это был прекрасный день... первым же выхватом стала дорога - ну естесственно не без успевания по пробкам на автобус; успели к двум минутам до, но опоздал сам автобус и какое-то количество минут его пришлось ждать. я б матюгнулся пару раз, да толку-то. Это, конечно, достижение, такого небыло в нашей школе давно. Сегодня вообще был цирк, сначала зашли какие то плотники, объясняя экзаменатору, что связались с ней через емайл, говорилось о заборе который не закрывается, затем зашла незнаю кто с мобильным телефоном и разговаривала в полный голос За них хочется ухватиться, смотреть на них, учиться-учиться-учиться. Флоренция встретила нас небольшим дождиком и толпами туристов. Следуюшая тушь которая составила список моих тестов, это тушь от CHANEL INIMITABLE. чо-то в инете ничо не нашла. Сцкажи честно - ты ж иво такой игрушечный купила, да? Куча тематичного народу, вообщем втерся и научился прыгать довольно оперативно. Наберегу стоял PR, а рядом с ним катамаран. Оказвается зеленый чай без сахара вполне идет с зефирчиком в шоколаде. Ну вот у всех наверное так бывает: вот была какая-то вещь, ну вот точно же помнится - была, а хватишься, и пропала. Егоров оперирует понятием боевых действий в фехтовании. У каждого из нас есть даты, которые являются для нас " счастливыми ", и мы помним их не из-за каких-то там цифр, а патамушта. Мировая история была разделена на три века - Отца, Сына и Святого Духа. Муж Феи был уверен, что женщина ни что иное, как тень мужчины. Это никак не скажется на качестве дальнейших ваших отношений, просто прийдется немного подождать. Срвпали действительно замечательно! на стекле были крупные капли тайского дождя, а за стеклом был невероятный закат. А вот если мотать данный фильм с помощью волшебной кнопки " Fwd " быстро-быстро, то получилось бы просто отличнейшее кино, где все как надо. Важейшие моменты нашей жизни мы связываем с Богом, вдруг забывая, что еще вчера мы не забоились о его существовании. когдато он предположил что я специально заразил кафедральные компы вирусом который вместо запятых встявлял матерные слова. Тебе возразят что зато он хочет продать бизнес а деньги пустить на благо, он красивый и умно рассуждает и отменит ЕГЭ и еще чтототам он такое с медициной сделать обещает ( от проограммы правда медики воют, но они ж просто корыстные ублюдки ) - и всем сразу станет хорошо. Позабодтесь о хорошей обуви для своих детей. Относитесь к непониманию с двойной иронией: ты смеешься над тем, что цигун - глупое занятие, а я - над тем, что только глупец не занимается цигун; ты смеешься над тем, что всегда будешь больным, а я - от радости, что могу быть здоровым и жить долго. Пофоторафировав то к чему можно было добраться, мы вернулись в пространство колокольни. Ну попробуйте же угадать, какая это может быть часть из всех выдвинутых кандидатов? Очищеный батат превращаем в пюре Но стоит ли так быстро поддаваться унынию и пессимистическому настроению? Но игру в итоге, как и год назад, наши девушки проиграли. Даже и не знаем, что вам сказать. Навогоднее настроение прям какое-то ) Идя в сторону метро, мы даже начали сочинять стихотворение, начало приведу: но в этот раз он изменит своим принципам и с удовольствием через секретаря ответит на все волнующие молодежь злободневные вопросы, кроме анонимных, ессно. Этоже надо быть такими наглыми, чтобы делать такой конкурс с такой ужасной саморекламой. Звонит просто для того, чтобы поболтать с тобой ни о чем. Кто воспримет форекс как игру случая, того ждет сплошной крах. А это уже само собой как-то случится :) Опрошеы все до кого смог добраться по поводу лучших путей погоды и прочего прочего прочего! а недавно у нас его ваще отключили ) Постибалса еще и первый ) Как зайти на страницу закрытую от всех одноклассников Потсому что в Воронеже все перечисленные тобою улицы находятся рядом: ) Сногсшибальной ей удеается быть, но только бплгодаря удивительно едкому аромату духов, даже на улице мне пришлось бежать в другую сторону и переходить проспект, лишь бы не попасть в штабель... Понятно, что его никто не оставит. Книга вот об этом как бы и есть - о непостижимости. вобщем это известие подлио масла... Хотя некоторые вещи я могу делать в столице. для своих близких, невзирая на их протесты. Если кто-то еще хочет первести деньги мне на счет в Израиле, у вас есть пара дней - пишите мне в личку. К ночи облака истончились, и круглая луна тускло просвечивала сквозь белесую кисею, озаряя одну сторону улицы сероватым светом. Затык заключался раньше в том, что мне нужна была крыша дома, а зимой на них не проберешься, да и весной не очень-то, это нам так просто повезло ) Она любит играть, поэтому если она веселая, это вовсе не означает, что ей действительно весело. И она работает намного более сильно, чем вся муть НЛП. Замечания и уточнения к этому посту приветствуются! Ктож знал поедая котлеты с картошкой, заботливо приготовленные мамой ( они у меня вообще суппир ) что вечер намечается насыщенным на приключения... ( извените за сумбур эта от волнения ) Оказалось, что надо сделать видео: переконвертить и слепить в одно. Провекрка перед сдачей 1-го тома День субботы 6 декабря начинался вполне обыкновенно... Все они жили когдато все мечтали о тепле. девченки в индии все на премьере, слезами заливаюсь какие они счастливые уже глянули что за шедевр выпустил Шах!!! Чем отличается спасательная археология от любой другой, так это тем, что для нее не существует времени года. Напистаь что ли завтра Стасу, спросить, нет ли у них ливня. Ведь время нисколько не ждет... Севершенно случайно оказывается, что сей текст существует в отправленных на мыле. Пыраюсь подобрать свой труп, однако он, по всей видимости, все еще находится в теперь невидимой подводной лодке и нарезает круги над бездной в середине локации. Им всего-то и надо ножницами в насильника за непристойные предложения ткнуть посильнее и бежать дальше, маникюр доделывая. Непридвиденные обстоятельства, требующие решений. Неговоря про то что в самом музее толкучка несусветная, чтобы получить порцию каши надо было отстоять около часа ( мы так и не дождались ) Поздрваляю с очередной публикацией, да еще в японском издании - класс! Взрослея, мы забываем о радости, магии, волшебстве, удивительном и неповторимом очаровании снежного праздника. довольно слабый фильм, который спасают только милые нашим сердцам пейзажи Самуи и Ко Тао, а также звукоряд. Я грю, да ничо, я тоже из офиса тебе пишу. Некотрые в домашниесады отдают - вроде такой эконом-выход. Мама нас с Мишей, погда мы втроем, называет общим " ребята ". после Др мне както особенно стало не хотеццо жить. Убиться веником, ребенок знает, что он тупой, находится в самом низу социального плинтуса - и ему это нравиццо! Посдравляю с ДР, камрад! Если вас освистывают болельщики, значит, вы морально не готовы выступать за клуб, который любят в Петербурге и который так поддерживают спонсоры. А Ясна рыбок ооочень любит - может подолгу их ловить сквозь стекло аквариума. Плпыталась жить без жалоб. А некоторые мои знакомые мущщины держат свое лицо ( а также подмышки ) на безопасном расстоянии от лезвия бритвы. Чувстоввать себя его частью - здоровое отношение и к себе, и к этой общности. Погда вроде разошлась, но уже все выглядит по осеннему блекло. Завтра кааак надену их и каааак все увижу ) а если есть общение то оно очень поверхносное, зачастую неискренное. Ну это ладно, а дело в том, что эта прекрасная девочка сейчас болеет и не может принять участие в этих мастре-классах( мое счастье ) Единственный положительный момент, мне сделали укол от столбняка. Мне нравится быть женщиной за двадцать: Стал похож на зажравшегося престарелого европейца. Краска облупилась, замки на калитках сорваны, заборчики покосились, во дворе стоит разруха и запустение. и воооот на столь позитивно-пьяной ноте меня в два ночи привезли домой. Меня хватило на один раз, после чего я на неделю решительно выпала из виртуального мира в реальный. Из одежды особенно актуальны носки шерстяные, платки теплые. А мой отец довольно рано усвоил, что красивая жизнь никому не проходит даром Поэтому может быть кому-то моя открытка покажется перегруженной, но я очень за нее горда. Ты никогда не хотел стать журналистом? Как у обиженной стороны, у меня есть право выбирать оружие. Даже самая незначительная ошибка может существенно бить по бюджету, сейчас самое время их исправить. и единственно, чего хочеться, так это уснуть, уснуть как можно глубже... Аромат ванили наполняет сердца гармонией, обладает удивительной способностью растворить суету и создать теплую, располагающую к отдыху атмосферу. седня сдала документы в ОВИР на загран паспорт! Съездела в саб, общалась с подругами, пару раз сходила в кино, пару раз в пиццерию, тройку раз погуляла с кампанией. Понаобещщал бедным девушкам, а они ждали, надеялись, а он... Очень не люблю, когда матом ругаются ( в систематическом порядке ), когда " на нем разговаривают ", когда мат через слово просто " чтоб было ". и тепрь следы от этих кулаков по всему тела ) я кстате слышал, что человек должен менять не менее 5 профессий за свою жизнь, чтобы не запариваться. Неуравновешено очен -- мостик, который мог бы быть смысловым центрм -- спрятан за деревом и смещен вильно влева, справа -- много черного ( стволы ) -- у меня возникает чувство дискомфорта. Цезарь делал это не по злобе, а потому, что расходы его были велики и ему предстояли еще большие траты на войско, триумфы и другие роскошества. И сразу стало легче, когда я поняла, что не все были против меня... Рассказжу немножко про свой сон. Покажиииии фото? Один из немногих, работающий в ПОНЕДЕЛЬНИК Музей микроминиатюры " Русский Левша " находится очень близко к вокзалу ( это я так, на заметку ) и вобщем-то весьма интересен. Проблемы не в смысле, что мы неплатежеспособны, а всмысле как теперь сделать все это за счет арестовавших нас канадцев. Умом сознаю, что « народы, царства и цари » умирают ( или гибнут ). Негативные эмоции оказывают разрушительное воздействие на психику, поэтому лучше с этим фактом, видимо смириться. Поженаем плоды веселой пятницы! С рюкзаком забегаю на работу, весело болтаю с девочнками, вся в радужном настроении и в уверенности, что от Черной речки ходят маршрутки до Финбана, и толкаться с этой торбой ( в 2/3 моего роста ), по метро мне не придеться. Некотороым вещам очень много лет, а меня это не парит... Общению с большинством предпочитаю чтение книг. Смотрите, это и вобщем обещанная хорошая новость, получейте удовольствие... Дейстиве картины происходит в 1930-ые годы. Лекарствоми здоровье гробить Вот куда надо вести ребенка перед тем, как отправить в музыкальную школу: выбирай, дружок, что нравится. причем очень забавно у них есть юридический департамент - руководитель Кузнецова Оглядываюсь назад и кажется что настолько долгого месяца у меня давно небыло. Все меня теперь сдесь больше не живет. Навека поставленную цепь не развести И теперь, собсно, по поводу несанкционированного торможения Пионеров. Мужчиты и женщины могут находиться только на своей территории! Эта задача во много раз сложнее, чем исполнять выученный текст, поскольку артисту при прямом контакте с аудиторией нужно быть готовым к любому развитию событий и обладать мгновенной реакцией. Самый простой способ получить белый и ровный потолок - провести его выравнивание с помощью штукатурных смесей. Пррямо ззуб на ззуб не поппадает. Саиые известные столбы, как я понял - это Перья и Дед. Для меня эта работа потеряла какето изуминку и мне уже очень лениво вставать рано Апять мной будеш приключения сваи аписывать? Клубец весьма себе наформальный, от сюда вполне приемлемые цены для центра Москвы и при этом, как ни странно, давольно вкусно готовят. Велосипедисты, лыжники и бегуны чаще всего замедляют ход возле собак и все проходит спокойно. Ктонибудь что нибуь понял? И ему по-настоящему повезло. шоб всегда любимая команда была Чемпионом ( Сабурово в рассчет не берем, сам понимаешь ) ) Муж, конечно, не Ален Делон, зато и в зеркало так часто не смотрится. Все это от того, что мы сами создали высокие требования для себя и компании. ну ведь совсем ничо сложного казалось бы... Совлаладав с собой, он дал клятву. Вот, собственно, такими космическими цветами с загадочными переливами это стекло и привлекло меня, и заставило искать и копать дальше. жду когда он отойдет достаточно далеко чтобы мои пережвижения егоне пугали Мудреший тот, кто знает о других Спутник позволит наблюдать за потенциально опасными явлениями в атмосфере Земли. Неоторые моменты перекликались с его выступлением два года назад. Пусьь тусуется дальше! И никакие мольбы, просьбы и уговоры не способны растопить их ледяных сердец. Прочтала тут новость, что 21 июля, то есть в день выхода седьмой книги начнет работать телефон доверия, чтобы прочитавшие поттероманы туда звонили и их смогли убедить, что жизни еще не кончилась. Я тоже оччень люблю их, иначе бы задача тети провалилась. Никуде не денется Неожиданнго из подворотни в Олега ударил яркий прожектор, патрульный трактор с лязгом выкатился и остановился возле мальчика. Прератите этот дождь из событий но обижать его не охота, поетому молчу!!! Ну и, собссно, готовься к кризису 2018 примерно года, опять жилье подешевеет, квартирку или еще что-то можно проапгрейдить, если во всеоружии. забавно, что танцует не исполнительница песни, я как-то к такому подходу не привыкла Вообщем я отлично провел время, а если еще учитывать 26 рублей в кошельке, то ваще все клево. Надо у них спросить рецептик ) Какой-то период времени мы вобще не общались... Каковы ваши любимые и наименее любимые слова? Сегодня яичницей никто не завтракал ( как, впрочем и вчера ), на ближайшем к нам рынке мы ели фруктовый салат со свежевыжатым соком, как в старые добрые времена в Бразилии. Особое место занимает чудотворная икона « Лобзание Христа Иудою ». Так как эти яйца жалко есть, а хочеться все больше любоваться, их можно покрыть лаком ( даже прозрачным лаком для ногтей ). ================================================ FILE: data/example_data/bea60k/bea_txt/corrections.txt ================================================ I WANT TO THANK YOU FOR PREPARING SUCH A GOOD PROGRAMME FOR US AND ESPECIALLY FOR TAKING US ON THE RIVER TRIP TO GREENWICH . IN MY OPINION FAMOUS PEOPLE ARE BEING OBLIGED TO PAY A PRICE FOR BEING FAMOUS THAT , IN SOME CASES , COSTS MORE THAN THEY DESERVE TO PAY . Also , I want to say that the plays and films were excellent , but there were n't enough of them for me . In our Academy we are not allowed to smoke . I was truly disappointed by it . Secondly , I had to wait forty - five minutes before the show finally began . I 'd like you to send the money to this address : ul Taklowa 10 It is a dream come true and was really unexpected for me ! If not , what do you suggest ? The festival was excellent in many ways , and in particular it being an international festival was a challenging , but brilliant idea . MY NAME is JAMES CAMIREZ AND I AM WRITING THIS LETTER TO YOU BECAUSE I HAVE SOME COMPLAINTS REGARDING THE DISAPPOINTING EVENING I HAD LAST NIGHT . SECOND I GOT TO THE THEATRE AT 19.20 BECAUSE IN THE ADVERTISEMENT IT CLEARLY STATES THAT THE SHOW STARTS AT 19.30 , AND I GOT REALLY MAD WHEN I LOOKED AT MY WATCH AND NOTICED THAT I HAD BEEN WAITING FOR 40 ( FORTY ) MINUTES AND THE SHOW HADN'T STARTED YET ... I MEAN IT WAS AMAZING ! I COULDN'T BELIEVE IT . HOW CAN THIS CLASS OF THEATRE BE SO .. OH I'M GETING MAD AGAIN SO I AM GOING TO TELL YOU ONE LAST THING , IT WAS THE MOST HORRIBLE NIGHT I HAD EVER HAD SO I DEMAND MY MONEY BACK ! MODERN TECHNOLOGY HAS AFFECTED ME IN SEVERAL WAYS . I MEAN THE MORE THE TECHNOLOGY ADVANCES ; THE MORE COMFORTCOMFORTABLE WE GET . BUT I THINK ALSO THAT WITH MODERN TECHNOLOGY WE GET MORE COMFORTABLE SO THAT MAKES ME A PASSIVE PERSON AND NOT SO ACTIVE . THIS CAN BE BAD TOO BECAUSE IF I GET USED TO BEING COMFORTABLE , WHEN I NEED TO DO HARD WORK I WON'T BE ABLE TO . Everybody attented go to the show , funny , and happy in the end , and what have we go then ? Disappointed ! If you could not manage the programme , why did n't you inform people before the programme started ? I thought you understood ' ; please send money back to me , you know why , do n't answer me ? Now we know , our world has developed to new world , because we have high technology to do . Today , technology is a part of life . It started from got up in the morning , we have the machine help us to cook , iron , cleaning , washing , and then we went out to work , there are car , sky train to travel for help us convenience and quickly . We appreciated the modern technology changed my daily life for help every easy and quickly , we have time to do many things . It is a good start to go on a sightseeing bus on Monday morning , because we can see all the famous buildings in a few hours . On Wednesday after we have visited the National Art Gallery , we can have a chat about our next holiday during the free time in the afternoon . Nowadays the main attraction in the newspapers and on television is the private lives of famous people . On the whole , being rich and famous does n't always bring happiness , whereas the majority of the population wish they were rich and famous . Last week we had another demonstration of this . Firstly , it will introduce the latest fashions connecting Millennium . Whenever I recollect it , I feel self - confident . Firstly , I would like to say that I 'm very glad to have been chosen and I will do my best for this competition . As you mentioned about the accommodation , I would prefer to stay in a tent , because it 's more exciting and I really love camping . However , I would choose sailing because I am fascinated with the sea and its mysteries and I also like the water , the wind in my face ... The other one I would choose is basketball because I 'm tall and very fast with the ball . It was unbelievable ! ! ! Are you studying a lot ? I have just received your letter which made me so happy . I can not believe that I won first prize in your competition , because I have always believed I am an unlucky man and now I think some things are changing in my life . I would definitely choose basketball and swimming which are my dream sports . I would like to ask a few things , especially about the weather : what is the weather like in July in the U.S.A ? What kind of clothes will I need and how much money should I take with me ? Because I have never been to the U.S.A. before I do n't know anything about it . I have never enjoyed doing shopping , but nowadays there are some people who are called shopaholics . They are just like alcoholics and these people go shopping every day because they can not stop themselves unless they have not got money to spend . Because nowadays wherever you go there is a big queue and I hate waiting . The queues are not the only problem . If you go by car there is the problem of parking , if you go by bus there are also queues and you have to carry a lot of carrier bag carrier bags during your journey and you wo n't always be lucky enough to find a seat . Especially if you want to buy clothes with your girlfriend or if you are a girl , you have to be ready to spend hours trying on clothes . I really hate going shopping with girls to buy clothes because when they go into a shop they want to try on every single item of clothing and they do not realise the time . Some people say " shopping is not always enjoyable " but for me it is definitely unenjoyable and I think it will be the same for the rest of my life . First of all , when I bought the tickets it appeared that there was no discount available . It was awful when he started to laugh and everybody was staring at us . Firstly when I went to the show it was written that the start time was 19.30 but it started at quarter past eight . I had waited for forty - five minutes . I just knew I should n't have trusted her but as I went in the house my dad asked Pat to stay for a meal . I was in shock , thinking why is n't anyone getting angry with me ? After a while we sat down for dinner and Pat just told my parents that I was smoking and when my family heard they got ever so angry . As my husband is a native and we live in Switzerland , we appreciate spending a week in London every year . First , we could n't get a discount , although you mention it in your advertisement . I walked back , hoping I would n't come across anyone and be able to drive back home . Firstly , could you invite stars and artists from more than only six countries ? In my opinion , it might be better to have time with a variety of nationalities . As they know about your interests and personality , it is easy to help you . I would like to make some comments about the event that I went to . - Art exhibitions to teach us more things about the artist 's lifestyle ; and Well , about rules in my country , the situation is not different from other countries . The rules must be respected by all people if you do n't want to be kicked out of school . However , some of them have read an advertisement about the London Fashion and Leisure Show , which will take place at the Central Exhibition Hall in London on 14th March . Also the most famous star can be unhappy and depressed : in fact , money and celebrity do n't always bring happiness . In addition , admission for students is free . Yours sincerely , On the other hand , the bond between parents and children is unlikely to change . The smokers in the school yard , the buffet and the other pupils , who are sitting at their tables doing their homework . That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredom . I am sure that eventually we will take off our clothes and in the future we will be undressed and free . There wo n't be any problem with being up - do - date . Of course , you ca n't afford a luxury car and a large apartment unless you 're born with a silver spoon in your mouth . It 's also a really popular job among university students because of the good salary . I was really surprised when I opened it . I look forward to going to the Camp California in the USA . Because it reminds me of my childhood . I used to go with my friends to a camp , which was situated by the seaside . Nowadays we have many big shopping centres . The most suitable time for shopping is the weekend when parents do n't work and children haven't got school . Because of that , shopping centres are overcrowded . You ca n't buy something in a peaceful and calm atmosphere . However such centres are very useful and necessary . In my opinion the worst thing which may happen is an extremely long queue for the changing room . If you bought something gorgeous , you will be very happy . Yours sincerely I 'm writing to you because of the musical show " Over the rainbow " , which I saw on Friday the 16th of June in your theatre . There are several points I have to complain about which meant the evening was not nice at all . Instead of half past seven the show started at quarter past eight . I could n't go to get any refreshment for two reasons , the first one is that there was no information about how long the start of the show was going to be late by . On your tickets information is written that discounts are available , when I asked at the ticket office I could n't get any discount for being a student . After one hour the whole class had heard about Sarah 's secret . Everybody was interested in what she had won but nobody wanted to ask Sarah because it was told as a secret to them . Sarah realized that everybody was nice and friendly to her but something was going on in the class , when she turned around talking and whispering started . Sarah looked at him for a while , then she stood in front of the class and explained to the others that she had won a prize for 20 people to travel for 1 week to the coast of southern France and every one of the 19 pupils was invited , except Pat who was n't very good at keeping secrets . I read your advertisement five days before , and I was really impressed by it . But , the quality of this show was n't what you led me to believe it would be , and I feel really disappointed by it . For all these reasons , and if you want to keep me as a customer , I would be grateful if you gave me some or all of my money back . Yours sincerely , My marks were n't good enough to obtain my degree in Computer Science , and the exam session was finished . I never talked about this project to anyone , except my best friend Pat . It is a great opportunity because this show is only every two years and normally it is difficult to go in . Or going to the show on Wednesday morning and in the afternoon , we can choose between free time or the National Art Gallery . I look forward to hearing from you . They found him two months later and six months later he was in jail . I am writing this letter to complain about your advertisement for the musical show " over the rainbow " , which is misleading in a number of ways . Sweating and afraid I waited outside the director 's office the following day . Tears ran down my face as I admitted having stolen . I was surprised that my father did n't watch me but I soon understood that he was ignoring me . That evening my father said a few words : ' May this be the end of your career as a thief ; we are only ready to forgive if you promise never to start again ' I am writing to reply to your letter in which you told me I won first prize in your competition , which is two weeks . I was very happy with this result since I did not think I could win . The aim of this report is to suggest which activities in our daily life at school should be filmed to give the other students an idea of what we usually do , not only during the lessons but also the rest of the time . The purpose of this letter is to complain about my experience with the musical " Over the Rainbow " , which really disappointed me . First of all , there were no discounts available such as were promised in the advertisement so I had to pay the original price which was n't cheap at all . Then , I was forced to wait forty - five minutes to see the show because it started at 20:75 instead of 19:30 and , when it finally started , I was really disappointed to see that the actors were n't Danny and Tina as it had said in the advertisement . Your really dissatisfied customer How has modern technology affected my daily life ? We live surrounded by inventions which help as through the day . The reason for my decision is that other activities are also available in my country , except climbing , but I have a fear of heights so this one is not destined for people like me . Actually , they put me very close to the stage , in the middle of the real hell . This is the main reason why I want to ask for a refund . People wo n't be embarrassed to show the beauty of their bodies . Moreover , I have chosen this month because I think the weather will be fine . During my stay at Camp California , I want to go swimming because I practise this activity regularly and I often enter competitions : this is one of my hobbies . Then , there was only one hour left to install the different coloured lights ; it was just enough time . We would suggest going to this fabulous show . Yours sincerely , Despite being used in many ways , it could entertain us as well . Although I imagine them in my house in my future , I am sure I would be surprised if I had them . A useful helper : the personal computer can quickly help you in lots of situations . Although the world of computers will develop day by day , I lively hope we ( human beings ) can maintain our way of seeing things . I'M VERY PROUD TO BE THE WINNER OF YOUR COMPETITION ! I HAVE NEVER BEEN TO SUCH A CAMP BEFORE AND SO I'M LOOKING FORWARD TO SPENDING TWO WEEKS THERE . IT IS ONLY POSSIBLE FOR ME TO TRAVEL IN JULY BECAUSE OF MY IRREGULAR WORK . HE 'S A SMALL ONE ! I'M LOOKING FORWARD TO HEARING FROM YOU YOU KNOW THAT I ALWAYS WANTED TO HELP AT A CONCERT . TO BE PART OF THE STAFF WOULD BE WONDERFUL , I THOUGHT . AND I WAS RIGHT ! AS YOU KNOW I WROTE TO THAT ORGANISATION WHICH IS ALWAYS RESPONSIBLE FOR BIG EVENTS . ALL OF THE STAFF AND THE ORGANISATION SPOKE ABOUT THE RULES AND HOW TO SAVE PEOPLE . WE WERE A GROUP ! ONE TEAM ! BEFORE THE CONCERT WE HAD A BREAK TO EAT SOMETHING AND TO TALK TO EACH OTHER . THE CONCERT WAS VERY LOUD AND LONG BUT WE DIDN'T HAVE TO WORK HARD . GREETINGS AND HOPE TO SEE YOU SOON However , it was a very disappointing evening for me . Firstly , it was mentioned that there were going to be two stars but , in fact , only one actor was performing in the show . Thirdly , the advertisement said that discounts were available but the ticket seller said that there was no discount allowing or available . In addition , the advertisement mentioned that the restaurant would be open after the show but it was closed because short of cooker . Finally , I would like to ask for my money back on the ticket due to the disappointing evening out and the misleading advertisement you have created . Nowadays , modern technology is becoming absolutely essential to our daily life . Without all this your life would definitely change back to the same position as it were 50 or more years ago . If this continues to happen our life will be very miserable as accidents happen all the time . Thank you very much for the many interesting positions in this schedule , especially the river trip to Greenwich , which , we are sure , will be very exciting . I would like to inform you that we have seen an advertisement for the " London Fashion and Leisure Show " and we have found it very interesting . Suddenly I heard a noise from my garden and I wanted to know what it was , but it was impossible to do it . I was afraid that someone was near my house and wanted to get into my house . I was very frightened , but I knew that I had to do something . I was sure there was someone on the other side of the wall . The only thing which really disappointed me was a visit to your theatre where I wanted to see the musical ' over the rainbow ' , after I read the advertisement for the show . The things that really disappointed me were that you said Danny Brook and Tina Truelove were the actors but they were n't , different actors played and to be honest they made the whole show very bad . To be honest that was not a great experience and I hope you will see my point . Since everyone can afford modern technology everyone 's life in the more developed countries has changed completely . So in the last century our daily life has changed dramatically and we have become lazy and our life impersonal , fast and unromantic . Your advertisement mentioned that the famous Danny Brook would play in this show but disappointingly it was another , unknown actor who starred instead of him . All those inaccuracies spoilt what should have been a memorable evening so I would like to be refunded at least for the price of my ticket . He did it some more times , and in the end nobody took any notice of the shouts . You are working with your ideal woman , I still ca n't believe that I spoke with her . At first I could n't believe that I was a winner My school starts in September and it finishes in June . If I could go in July that would be grate . I would like to ask you , what sort of clothes should I take with me ? I do n't want to take too much ; jeans , jumper , swimming costume , T - shirt , sports shoes I think should be O.K. At first I was helping to sell the tickets - it was n't difficult . We had to check every plug , switch , light . I could n't believe how big a lamp can be . Fortunately nothing had happened . Only people who were helping and organizing this concert could meet her . Some of them were speaking with her , I was n't this lucky person , but still I 'm happy , that I could be there . Log cabins may be more comfortable . On the other hand I think that I will be able to " survive " in a tent . I wish you had been here with me . You can not imagine how disappointed I was with myself . We started to put everything on the stage and after this we realized that the band was coming onto the stage near us . After all of this we saw the show from the best place , near the stage and afterwards , the thing that I most liked , we were invited to see the group and got their signatures . I have got a few things to complain about regarding your theatre . I decided to go and visit your theatre restaurant . For example , once people had to walk from one place to another , but now we can use science and technology to produce a lot of petrol - powered vehicles and we can travel faster with them . We can also use technology to produce more food and help them grow faster . The rules at home are very different . I am allowed to do what I want as long as I study enough to aprove . It is not always easy , but there are rules in every home and you have to respect them . I hope you will agree with our suggestion and if you have any further questions do not hesitate to contact me . In addition to this , you may have some robots bringing the newspaper to the table , tidying up the house , and doing the shopping . Maybe they will also be your life partners . I and my friend Emma helped to paint the scenery on the stage . As you know , I like drawing and painting when I have some free time so that is why I chose to paint the scenery . Moreover , the restaurant was still under construction so that we could n't use it when we were extremely hungry . One of the biggest things that have changed is the change in the methods of communication . I have mentioned a few changes above but there 's still the biggest one left , which is related to the field of computers . I refer to your advertisement in the Herald Tribune where you advertised the Circle Theatre and the recent musical : When we arrived at the theatre we realised that there were no discount tickets available as were mentioned in your advertisement so we had to buy the most expensive ones . I am looking forward to your prompt reply . Today the fashion industry has a great importance in the commercial market . There are the natural materials on one side whereas on the other side the fashion industry produces more and more synthetic materials , which relay on the production cost . In 100 years most clothes will be made from synthetic material . The contrast will be especially attractive . Furthermore the style of the clothes is going to be more crazy and individual but there will still be numerous clothes for conservative people . On balance fashion in 100 years time will be comfortable and colourful . There will be clothes for everyone 's taste . Our school is really very disciplined , especially about our clothes and behaviour . When I read the advertisement , it said that the restaurant would be open . On behalf of the class I would like to thank you for the excellent programme you have organised , especially the idea of visiting a gallery . I grew up through the water world and I could n't live without it . I love sports so I would like to play some basketball at the camp . By the way , my team and I won the last school championship . I play guard on my team . I also like tennis but I am not very good . I was wondering if you could give me some lessons while I am there . I do not have words to express how happy I am . I would like to thank you and Camp California for this opportunity . Since man became man he has needed to hunt to survive . In ancient times he used spears , bows and arrows , and the woman 's role was to collect items like vegetables and stuff . Nowadays , in the year 2000 we still practise this ancient art but in a different way , we do n't use weapons for hunting animals in the jungle , we use the remote to hunt TV shows , and we do not collect vegetables any more , we go shopping . This activity of shopping has become one of our most important , after all , we go shopping for any reason , we have developed such an instinct for shopping that we can proudly say that we are some sort of kings of the urban jungle . If an activity has stayed with us , mankind , for so long , it must give us some pleasure and maybe that 's why shopping has become such an important thing in our lives because it gives you pleasure when you find what you have been looking for and if you can get it for less than the price marked on it , that is the greatest of ecstasies . But where is the bad part of it ? Well shopping can became horrible at Christmas for example , when hundreds of people go to the shopping centre and it also can cause many problems when you become an impulsive buyer . Shopping is not always enjoyable because of several factors . One could be when you go into a shop and you find something that you like , and you decide to buy it , but when you see the price , you find out that it 's too expensive , and you can not afford to buy it . This situation is very annoying for most people , and that 's what makes shopping unenjoyable . Why do n't we include some sports , for example , volleyball ? Furthermore , it 's a worthwhile experience for people who want to know about other countries ' arts . Finally , with regard to tickets , it is a really wonderful idea because it is more convenient to enjoy the festival for one day among a lot of people . One day , when the old man went into the bamboo bush , he found some bamboo gritted white . He had never seen such bamboo before but decided to cut it down . THE KIND OF ACCOMMODATION I PREFER IS A TENT BECAUSE AT SUMMER CAMP I FIND IT MORE INTERESTING SLEEPING OUTSIDE UNDER THE SKY WHEN THE WEATHER IS NICE AND WARM . I'M QUITE GOOD AT PLAYING BASKETBALL BECAUSE I USED TO PLAY FOR ABOUT FIVE YEARS AT SCHOOL . WE USED TO HAVE TRAINING SESSIONS TWICE A WEEK AND AT LEAST TWO GAMES A MONTH AGAINST ANOTHER SCHOOL , WHICH WAS GREAT . PAINTING ALWAYS DID FASCINATE ME , EVEN THOUGH I'M NOT SO GOOD AT IT , BUT MY FRIENDS SAY I CAN REALLY PAINT AND THEY LOVE THE THINGS I DO . THE TECHNIQUE I LIKE THE MOST IS WATERCOLOURS . DO YOU REALLY WANT TO KNOW ABOUT MY EXPERIENCE HELPING AT THE POP CONCERT IN OUR TOWN ? The reason I 'm writing this letter to you is that during my stay in London I felt very disappointed about your theatre . After all the inconvenience that made me feel really mad . I think I can only forgive your theatre if you give me a refund of the money I spent there , and some more for all the problems I had . As you already know , I am trying to become a professional photographer , consequently I would choose photography as the first activity and painting as the second . However , I would like to know if by any chance the photography activities are only for beginners . Actually most people work hard to earn their money and consequently , the occasion on which this money is spent to buy something useful , or simply something they like , should be considered a very pleasant occasion . In fact , the shopping you do for your daily needs is seldom enjoyable , as it is clearly more a duty than a pleasure and moreover you are often faced with some nasty situations . First of all , when I paid my entrance fee they did n't accept my discount ticket , they told me that the ticket was fake , then I entered the theatre and I had to wait 45 minutes . The show was supposed to start at 19:30 and it started at 20:15 , " this shows a lack of respect " . Manager , I expect that you have considered my bad experience at your theatre , so I 'm asking you for my money back , because it was a very bad evening . It all started when Pat , Nick 's best friend , wanted to have the party at his house . Most of the class disagreed with that because the Pat 's house is extremely little , they started to say to him that his house was like a box . Pat got very angry and sad . At first Nick got angry but then he forgave him because they were friends and each of them could trust in the other . Nick told the situation to the class and offered his house for the party , because it was very big , with large gardens and a big swimming pool . To begin with the school rules , we have in fact some important ones . Since I have studied photography for several years , I would like to take some pictures of beautiful scenery in California . I had to pay the full price for them , which was quite expensive . It turned out to be impossible : the restaurant was closed and we did n't even receive an explanation . The development of portable communication systems , such as mobile phones , has greatly changed our way of life . It is now possible to talk to a friend almost everywhere and anytime , even if we are two thousand kilometres away from each other . Precision industry has changed my life a lot too . I go Scuba Diving during the weekends and holidays . I would like to travel in July because I have to go back to my country in August . How can shopping be enjoyable in this situation ! I believed everything she told me . I was surprised that he believed me . Yours sincerely , They are human beings and they need to keep a little bit of privacy and freedom in their lives to continue like normal people , to feel that they are unknown and anonymous and they do not have to wear sunglasses , hats or caps every time they want to leave home in order not to be recognised . Furthermore , you asked me to choose two activities I would like to do . And now for them shopping can be considered like a contrariety . It is quite obvious that celebrities ca n't lead a normal life , as they are constantly followed by reporters , which makes their life miserable . I am thinking here particularly of the fact that every event and action is widely discussed in the mass - media . Last of all , it says in your advertisement that there is a theatre restaurant open after the show but it turned out to be closed because it was being redecorated and no announcement was made . Therefore I would like are refund of my ticket and I would like an apology . Yours Sincerely , What do you think models will wear on the catwalks ? In my opinion , clothes will be a lot different in 100 years ' time . For the accommodation at Camp California , I would prefer to have a log cabin because I think it is more comfortable than a tent , and in case there is a big storm with heavy rain . A log cabin 's more resistant than a tent . For the activities , I chose climbing because I took a course for 2 weeks last year and now I have a good level of proficiency . For the other one I chose photography but I am not a professional , I just take some pictures on my holiday ! Next weekend I have a date with one of them , but I wo n't tell you the name because you 'll feel jealous ! I would like to do photography and swimming . I love to take photos but I do n't have any technique . Of course it is good to buy things for ourselves , like clothes , jewellery , anything . When you buy something you were looking for a long time and , when you arrive at home , you discover some defect on it and have to go back to the store to complain . Secondly , I would like to choose a tent for accommodation , because I have never spent time in a tent , that 's why , I think it is a good opportunity for me . I have plenty of experience and knowledge of both aspect of part . I would be grateful if you could inform me . My jobs were collecting tickets , selling goods and refreshments , guiding people to the right seat and cleaning up the concert hall after the concert finished . What I particularly liked about the experience was the concert was achieved through our support . I really recommend you to help them , I think this is a good opportunity and I want you to understand my feeling well . I want to know your opinion . On the other hand , their stories always make them embarrassed because most of the journalists create their own story based on the true story just to get the people 's attention . All of them were shocked by what they heard . She became very shy and angry . She could n't talk with people and she was just very sad . I want to tell you that I am very disappointed about the play . In the advertisement it said that Danny Brook was in the starring role . And also it should have started at 19.30 , as I saw in the advertisement , but it started at 20.15 ! And so far there were n't any discounts available which were said to be " available " in the advertisement . You should have written it in the advertisement . Absolutely it was very disappointing I hope you understand and will correct your mistakes in the next advertisement and send me my money soon ! Today 5 out of every 10 pupils can use a computer basically . It is really enjoyable when I chat with people . Technology is also important in another area for me . But some naughty students in my class were throwing paper aeroplanes when the teacher was writing something on the board . Unfortunately I have to complain about the musical show put on in your Circle Theatre last night . When I received your advertisement concerning the show " Over the Rainbow " I thought that I 'd have a great evening , but unfortunately it was a big disappointment for me . First of all , Danny Brook - the main actor in this musical - was absent . You also offered discounts - what kind of discounts ? Because the show was very long , we were getting hungry but of course your theatre restaurant was closed because of the holiday . I had not any money for travelling and my parents were going to give me some only if I had concrete plans . After one month , I went back home and told my parents what a lot of fun I had with my friends - I do n't know why I was such a liar . My parents believed my story until my younger brother Pat told them the truth . Now my parents do n't believe my story . I hope you will not feel offended , but I really need to complain about your theatre . You can believe I was very disappointed when I saw that he actually was not performing and I was more bewildered that no one made an apology for it ! Although , I would have felt better if I had had a discount on my ticket , as you mentioned in the advertisement , but unfortunately , these could n't possibly be given either ! If more and more engineers work in science and technology , it must be because it is really useful : but in what particular way ? I would like to travel at the beginning of the month , which could be between the first and the fifteenth of July , because afterwards I have several business meetings and it would be difficult for me to take a trip . Although I like camping and sharing with different kinds of people , I 'd prefer a comfortable and private place ( if it 's possible ) where I can sleep , or be quiet .. I am not a teenager ! I was running the whole show . My responsibility was to dress her . I really liked the exhibitions . The band " Three Kings " presented a new style of music . I would like to notice that the dance show was absolutely marvellous . What a great idea to invite writers ! I really liked talking with them . You wrote an advertisement saying that people from more than 15 different countries were going to visit this concert , but there were artists from only 6 countries . It was really a pity because I expected to see artists from France and Italy . The International Arts Festival was organised quite well . I would only recommend you have more artists and the classical concert should be in a bigger hall . They were so poor that sometimes they hardly had anything to eat . She persuaded him to go to the sea to ask for a lot of things for her . Also , the e - mail system is really helpful . Circle Theatre Finally we had the worst evening I have ever imagined , it was definitely not the " perfect evening " as written in the advertisement . Synthetic materials have developed and become very popular so they would keep going . I guess they will wear a sort of tunic over a shirt and a skirt , or more masculine clothes because they want to change . About the accommodation , I would prefer a tent because I enjoy the contact with nature as well as camping activities . In conclusion , like all things in life , shopping can be pleasant or irritating depending on your patience and on your mood that day . It gives us knowledge useful for many school clubs , like the " marathon shell " club or the robotics club . Besides it gives all the areas covered by a mechanical engineer and it is very important in a school where you will probably become a mechanical engineer . It lets us identify our abilities and the part of mechanics that we prefer . Our engineering school is specialised in mechanics and thermodynamics . First , we could film the fluid mechanics lessons and the general mechanics lessons . I wonder if we could not feet between some short view of the laboratories , in which we could show a student doing experiments . Future students could appreciate coming if they could still do their sport . Another point to record would be the time we have got between lessons or at lunch time . It will show a part of the way of life in the school . If possible , the type of accommodation I prefer is a tent . I will be very glad to participate in your camp ! Yours faithfully The show 's date is very convenient - March 14 - , and it is on in the Central Exhibition Hall so I do not think it would be a problem to get there . Although this statement is absolutely true , it seems there is no way to stop public attention , so they will have to keep living with journalists . My name is Marcia Fomalar , I am writing to let you know how disappointed I felt when I went to the musical at the London theatre . I went to buy a ticket and as I like to enjoy the show near the stage I bought a £ 20 ticket but when I asked for a discount they told me , " I am sorry but there was an error in the advertisement . It will be impossible to give you a discount " . At 19:15 I was very impatient , waiting for the show to begin , and a man announced that the show would start at 20:15 . Finally the show started and to my surprise my favourite actor Danny Brooke had been replaced by another actor . Pat sent a fax to my house with the different alternatives she had thought of but unfortunately my grandmother was there and she saw the paper so the surprise was ruined . The other activity that I chose is painting . I am not as good as I want , nevertheless I think I can improve my skills during this course . I would like to know how the weather is in California during the summer so I can bring with me the appropriate clothes and the last thing I need to know is the amount of money that I have to bring with me . To make this report easier and faster , it was necessary to make a questionnaire which was given out in the school . However , 15% thought that it was not a good idea because it would be boring to see other people enjoying themselves and they mentioned it as not really important . As you can see , my classmates and almost everybody in the school are happy with the facilities and activities that we have . A few weeks ago , my family and I had a holiday in London . The holiday was n't too good ! During the week we decided where we wanted to go . We all agreed to listen to music so then we decided to go to your musical show and listen to " Over the Rainbow " . That evening we did n't want to have our supper before the show . Anyway I thought it would be too early to eat and also because the timetable or candidates you give me have say : " visit our theatre restaurant after the show " . So we did , but unfortunately it was closed and I was so disappointed about it , not only because we had expected Danny Brook and Tina Truelove to be the actor of starring . We do n't expect much bad to happen on our holiday , but this was a perfect show as well , it was the worst show and theatre I have ever been to in my life . sincerely Ki To help us to live happily , scientists can easily predict the changes on earth , so that we can have time to prepare or defend ourselves from natural disasters . Weapons are designed to kill and defend in a fight . In the Second World War so many Germans were killed . Also many people died in other regions , Poisonous chemical compounds , e.g. gases and liquids , are created too . They have been used to kill people . Most of them produce radiation , which can disable a person , mostly harming their brain and their bodies , and it can also cause death . Communication technology , e.g. internet ( networks ) and mobile phones . In wars soilors communicate with mobile phones though places to place to get or give information about themselves and the enemy . By using the Internet we can make new pen friends overseas , and create clubs and societies . Now a message can travel quicker and it is also worldwide . sending letters takes about a week from Hong Kong to the U.K. , but network , e.g. Modern technology saves us a lot of time and brings us many benefits when we use it in the right way , but some bad way to e.g. send virus to break down network . Unfortunately , Pat was n't very good at keeping secrets and this was the reason why the party was n't as successful as we thought . We decided to go to his place ( I 've got a copy of the key ) the evening before his birthday while he was at work and decorate the lounge , then turn off the lights and wait for him in silence until he arrived . With reference to our trip to London , on behalf of all of us , the English class in this college , we would like to thank you for your special attention in organising a good programme to learn about the interesting and cultural places in London . We have been very excited about this and coincidentally we have found another option to add to our programme , certainly if you agree with it . We thought that The London Fashion and Leisure Show would be a great opportunity to give us more information about the main transformations nowadays in England concerning fashion , leisure , sports and lifestyle . It was dangerous , but I knew I had to do it . I was at home putting my makeup on before going to a restaurant with my friends and , suddenly , he rang the bell . He was so tense with a gun in his hands and I could no longer speak . He took me out with him . I had tried to think about stopping him , but he was stronger than me and he had used all his power to scare me and he forced me to buy cocaine using my cheques . I am writing to make some complaints about the musical show " Over the Rainbow " , of which you are the manager . Although it was written in the show 's advertisement that the main actor was Danny Brook , it , unfortunately , was not him . It was also written in the show 's advertisement that there would be discounts available on the tickets . Even though the advertisement said we should visit it after the show , it was closed and no explanations were given . In conclusion , the advertisement promised this would be a perfect evening out , but it was not , so I would like to ask for my money back . One day , I innocently told Pat that I was dating Philip Smythe , the school 's hunk and most popular boy . Suddenly , an enormous sadness caught me , because Philip had begged me not to tell anyone , so he would definitely break up with me , and I knew I was going to stop talking to Pat , because she had just ruined my happiness and I could n't trust her anymore . One day , while I was studying maths , one of my friends , called Pat , asked me to have a coffee with her . The problem started when I confessed to her that I had fallen in love with Larry , who was my cousin 's boyfriend . Surprisingly there was a completely different actor starring . Unfortunately the restaurant was closed . He is only looking for the biggest fishes and he has been unsuccessful for 86 days . Little by little we were growing up and becoming close friends . I relied on her and our relationship was excellent . It is my only favourite hobby . To reply to your question , it was really a nice experience . As you know , I like pop music so much and the singer was one of my favourite singers . I would be most grateful if you could let me have some information : - Are there leisure and entertainment facilities close to the camp ? I am really surprised for the information because I won , and I would like to say thank you for everything . This is why I wrote and sent this letter with the information you need I can only travel in July because it is the only time when I can do it before for my work I do not really care what accommodation I will have . I would prefer to come in July I will be available for the moment . I would really appreciate it if you could tell the people who work at Camp California I choose the Golf and Photography because I think I am really interested in those subjects . I am not really really good but I have some experience . I think that is everything I would like to know . I want to apologise to you , because I haven't written to you recently , but I want to tell you what happened to me last week . I had the opportunity to help at one of the most pop concerts in my city . So imagine , I felt really really good and excited . I do n't have words to describe it but I will try to do it , OK ? What 's more , your letter said about the chance to do two activities during the camp . I have even won a competition once . I would like to know if the , , travel costs '' which you had paid include entrance tickets to the museums or any other cultural places , because I would like to do some sightseeing in the U.S.A. Furthermore , if there will be cmy tumble dryer or washing machine to clean our clothes and if there will be a guide who will be responsible for us and the camp . When describing the advantages , we should remember that most people like doing shopping . Very often people go to a shop - usually a big department store and buy things which they do not need . From my point of view it depends on us whether shopping will be enjoyable or not . My name is Manu Roddos and I am writing to complain about some things that happened at the performance of the show Over the Rainbow , which took place in your establishment , The Circle Theatre , which made me feel very upset . I was very excited to see it yesterday , but as soon as I arrived at the theatre the problems began . Yours sincerely , Firstly , the great boom in mass communication which happened at the beginning of our decade , with the development of telephones , radio stations , television and even satellites , and of course , the Internet , gave ordinary people the chance to take off on a trip all over the world , and this allowed health and education research to increase as well . In addition to that , people will always be afraid of a technological war . In conclusion , from my point of view , people must learn that despite technology being such a new area to explore , we have to use it with a great deal of responsibility for us all to survive in the future . And is there anything else I have to take with me ? Yes , it is true . This is only because nowadays people have more money than ever before , and some women do n't earn money . They have no idea how difficult it is to earn money . It would be wonderful to buy some books or programmes with the signatures of all the stars and artists taking part in the festival . I hope this letter will help you with organizing the festival . Every pupil has to sit alone . ( I mean that one desk is given to one person . ) 2 . One should have such marks as , , 3 " , , , 4 " , , , 5 " , not , , 2 " , which is equal to fail . We do n't have old - fashioned rules or anything like that . First of all , it would be a good thing to say that July would be the best time to travel because it is the hottest month in the year , and the weather will be really nice . Despite my lack of experience in climbing I do want to try this type of sport . The aim of this report is to suggest which lessons and other activities should be filmed . I have interviewed each student from my English class . Firstly , the English lessons must be filmed as the most interesting lessons at our school because it will give students an interest in studying and improving their knowledge . It contributes to the world 's treasure house of literature and arouses an irresistible fascination . We should n't disregard and neglect to film the buildings and the gardens of our beautiful college , especially if we take into consideration the fact that it is in the city of Shakespeare . Also , painting is one of my favourite things ! Anyway , I really enjoyed helping at a pop concert last month so that I 'd like to write about it ! Anyway , by the time we finished everything , thousands of fans came into this concert hall . I 'm writing to you with reference to the letter I have received from you saying I have won your competition . Well , as you ask , I will tell you I would like to travel as soon as July begins , I 'm going to be able only to travel in that month because of my job responsibilities . Regarding the choice of tents or log cabins , I think I will turn to the first one because I have always loved camping close to nature , if possible , in front of a lake or a river , if your campsite has one , so that I will be able to do my favourite and skillful hobby : sailing . I would like to travel only in July , because I have only one month 's holiday this year . It is not too comfortable , but that is not a problem for me . I like this kind of holiday . I never had met pop stars before and I was very impressed , but I was too happy to show my shyness . I stayed with him until the concert began and after the show I had the opportunity to stay in his private room with him and the other dancers . So , unfortunately , I must say that last night was one of the worst nights I ever had , and having given the reasons , I expect to be able to count on your sense of responsibility , so , I feel that I must ask for my 20 pounds I spent on that terrible night . Also , with today 's machines , factories have significantly increased their production , which brings progress to humanity , but also , with the continuous replacement of men by machines , unemployment is increasing too , and today , it worries every single citizen of the world , specially the ones who live in third world countries . It would be a fun experience ! Women , in particular , have the annoying habit of always having to touch everything they see . This was the best thing that had ever happened to the Fennall family for yeats . Which was very shocking for her mother . SINCE I HAVE A CHOICE OF ACCOMMODATION , I'LL DEFINITELY GO FOR THE LOG CABIN , BECAUSE I CAN'T BEAR THE HEAT INSIDE A TENT . I WOULD LIKE TO ASK YOU ABOUT THE WEATHER CONDITIONS , SO I CAN DECIDE ON WHAT CLOTHES TO TAKE , AND ABOUT COSTS , SO I CAN MAKE A BUDGET FOR THE HOLIDAY . AFTER THE STAGE WAS BUILT , THE REST OF THE THINGS I HAD TO DO WERE QUITE EASY AND ENJOYABLE ; I COULD STAY EITHER BEHIND OR IN FRONT OF THE STAGE AND GIVE A HAND IF NEEDED . I REALLY ENJOYED IT BECAUSE I LEARNT A LOT OF TECHNICAL THINGS I DIDN'T KNOW ; AND WHAT I ALSO ENJOYED WAS THE GOOD PAY ! I 'm writing to you to complain about a play I have seen , called : " Over the rainbow " . It was clear that Pat had to change and show his friends that they could believe in him thoroughly . For those next few days , Pat would do his best to be as sympathetic as possible . To begin with , every morning Pat said a pleasant " hello " and added to that a big smile . His mother always says : " If you are smiling and are nice to people , people will be nice and will smile at you " . I would prefer to travel in July . I have only this time , because my summer holidays are during these days . A cabin reminds me too much of my home and is too comfortable . That is n't what I want to have if I stay in a wild area . I was able to ask anybody , and he answered in detail , although he had a lot of work . I 'm writing to you following our visit to your theatre last night . And I would like to know if it is possible to have our money back . And if someone else knew , I would n't be able to go back to heaven unless I killed the person who told my secret . And I would like to go in the first part of this month , the second part I spend with my family . While I will be at the Camp I would like sailing , because it is my favourite sport . Yours faithfully In my opinion this book ' The Old Man and the sea ' is the best book which Ernest Hemingway wrote . Thise book is about a man who knows that he will die soon , he knows that he did n't make his dream come true . So he decided to go for a last trip in his life . He needs to rest , but he does n't give up . In the end he makes his dreams come true , he catches a vast Marlin . In this book Hemingway is trying to tell us , that if we want something , we can get it , it might be difficult and take a long time but we can do it . Sometimes they give up , before they get something , I read the advertisement and I thought it was going to be a pleasant evening . From the beginning it was all a disappointment . When I went to buy the ticket I tried to get a discount with my student card , but that was not possible . I let this pass and I bought it anyway , thinking that it was possible that this was only a mistake in your advertisement . But the play started forty - five minutes late , and the star of the show , of whom I 'm a great fan an who was the main reason for why I decided to see the play , had been changed for another actor , who turned out to be really bad . I think you realise why I 'm writing this letter to ask you to give me my money back . All the things that were promised in your advertisement were untrue , and it was definitely NOT the perfect evening out . Expecting that you will resolve this misunderstanding . There 's no doubt that modern technology has changed our lives , but how ? I think that some of the changes have been very good , like the improvement in medical science , which now can save millions of people that one hundred years ago were doomed to die or to live miserable lives . It has changed the ways people communicate . But technology has not only changed our lives in a good way , giving us things that can make our lives more comfortable , it has also created things that are n't bad , but if they are in the hands of the wrong people they can destroy the world . Weapons and factories are destroying our planet and we need to realise that we have to use technology to improve our lives , while always trying to respect nature . Regarding the accommodation , I would prefer to stay in tents rather than log cabins because I have a lot of experience of putting up my own tents . I like to go window shopping that is good to go around the shopping centre . Then I can say I definitely do n't feel it is enjoyable . - Accommodation : a log cabin would be nice for me to stay in when I am in California . Before we can give our opinions on this statement we have to make sure that everyone knows what we are discussing . We do not speak here about luxury goods . But if you realize how important what you buy is for your health you will go shopping with a far greater consciousness and more joy than before . ' How incredible it is ! I love swimming and also I 've got a scuba diving licence . I used to enjoy floating on the water whenever I was on holiday . Singing is the most favourite hobby for us . I 'd like to know how much money , and how many clothes we need . Of course , the shopkeepers are human beings as well . But for their considerations , they 're working in their routines . I sometimes lose my desire to buy a thing because of their bad behaviour . For example , for our jobs , special ceremonies , and so on . Your advertisement also failed to mention the fact that there were no discounts whatsoever and , finally , because of a shortage of staff , your restaurant was not open . I asked myself how I could be so stupid , telling her my secret after all I had been going through to keep it to myself . Now I did n't need to go around worrying about it anymore . I decided to thank Pat , and maybe , if possible , teach her a lesson . I pretended to be totally miserable . Pat did n't know what to do . She apologised over and over again and I could really see that she was more than devastated . After hugging each other we promised never to tell others about our secrets . However , it was delayed and it started at 20.15 . The theatre restaurant was closed after the show , they said funds had run out . Those are totally unacceptable so I would like to get paid for my ticket cost . I ask you to transfer money into this account . Think about the computer , the speed of computers is much faster than before . Nowadays , technology keeps developing and better technology gives us an easier life . In the hope that you understand me . Unfortunately , Pat was n't very good at keeping secrets . At first , when he had a girlfriend , they talked to each other frankly . But after they separated , he told his friends her secrets without thinking . It is like one of his bad habits . It was a very unpleasant evening . The restaurant should have been open when I came out , but it was closed because of the time the show finished . After breakfast I have to use my car to get to school . Without technology I would get really bored . I would be very grateful to receive answers to my questions . Boy , he 's really really handsome ! Secondly , the show was meant to begin at 19.30 pm , actually it began at 20.15 pm and that was without giving any explanation ! Another thing that has changed my daily life is the mobile phone . Sometimes the ring is annoying but , finally , the mobile phone is a great , handy object . About the accommodation , from the two options , I choose to sleep in a tent , because I think that a log cabin is n't as authentic as a tent , at the camp . I would be grateful if you could send me further information about details like how much money or what kind of clothes I 'll have to take with me . You know that I 'm a little bit lazy , but the main reason for not writing to you has been the accumulation of exams during this month . There I was impressed by how a singer can cause such hysteria in teenagers . During the two - hour concert we had to attend to thirty - six people who became unconscious after being trapped in the first row by the other people . Answering the second question , I would prefer my accommodation to be in log cabins . And when it finally started , it was n't Danny Brook who performed . After the show I wanted to drink something in your theatre restaurant but when I arrived it was closed because the show started too late ! So I ask you sincerely for my money back because it was n't a perfect evening out . I told her that my parents are getting divorced and that I will move to Chicago with my mother . One day , Pat and I were going home , when she asked me if I would give a party before I go . I had to tell her that I did n't have the time to organise anything because we , my mother and I , had to get our stuff ready to move . But when we got into the house there were all my friends ! We had a great evening because Pat was n't very good at keeping secrets ! I am writing to give the information you asked me for and also I would like to request some information about the prize . Furthermore I would like to choose to stay in a tent instead of a cabin because I think it could be more exciting and could provide more contact with the environment . He had a puncture and he did n't know how to repair it . Then I changed the tyre and during this time he was asking me about my hobbies , studies , everything . I am writing to you in order to give you some details you asked me for in your letter . The job was hard , but , from my point of view , it was worthwhile . The most exciting thing was when we removed all the stuff the day after the concert , and we went to the Highlands to spend the whole day there . That was fantastic ! If you have never been there , I really recommend you to go . But we decided to buy a picture , because she had always told us about art galleries with great excitement . Yours sincerely Despite the fact that going to school by bus was easier than going by bicycle , I had preferred going to school by bicycle to going by bus . When I went to see her play , I really would love to be an actress . It was my dream . I wish my daddy Especially in the summer when the temperature and humidity are very high . From the list of all the activities I have chosen photography and golf . I have chosen golf because I have never played this game . My friend offered me a job as a member of the technical staff at Sting 's concert . We 've built it using ready metal and wooden parts . I was working with a specialist who had to connect all the lights together to one computer and prepare a colourful show . It was a totally new experience for me and a real pleasure working with professionals . For me - the dance shows were absolutely wonderful . I prefer them to others . We chose some of them and we were glad that we had our reasonably priced ticket for all the events because we could change our plans during the event . Most students wear jeans and a sweater . Next year , you should calculate or examine how many people will come before you choose a hall , which I feel very good was plays and films . And the offer of a " weekend ticket " was an excellent idea . Because the price was cheaper than buying it separately and more convenient . Yours Sincerely , Finally , food shops should be added to this festival next year because only plays and films were not attractive enough to get audiences . Yours sincerely , However , I can go out whenever I want , even at midnight . Secondly , boys are not allowed to have long hair . I feel that they would be fabulous places with a western design . Another disadvantage of the festival 's programme was the lack of plays and films which are the best to display a modern country 's culture , I think . In conclusion , I would like to say that in spite of the success of the festival some improvements still can be made . Fortunately , there are many ways to earn some money nowadays . In addition to baby - sitting , you may also give some lessons to small children such as ( tl ) teaching them to read or write or just basic rules and words of a foreign language , English , for example . But if you do n't like children and are not easy - going enough to work as a waiter you may choose the more peaceful job of a typist at home . So , you can help them and earn quite enough . Moreover , men prefer to do sports , because shopping wastes a lot of time , which is contrary to the tastes of women , because if they have any free time , they will go shopping . Finally , I would be interested in meeting artists from everywhere in the world not only European artists . In conclusion , I had an unforgettable time . The restaurant was closed because there was n't any electricity . You should close the theatre until the restaurant can be used . I was totally unsatisfied with the theatre and I would like to have my money back if that 's possible . I 'm quite sure that people all around the world will be wearing very different clothes in the future because people , especially women , who like to be very elegant and beautiful , will create and invent all kinds of clothes to anybody and that 's it . You ca n't be careful because you do n't know what time it will happen . But you can be careful when you speak with he or she who is stealing your things . I am writing this as a reply to your request to provide you with some information about my preferences . I am not so keen about the accommodation but would rather stay in tents than cabins . We live near the seashore and swimming is the sports activity I am really good at . Sometimes I feel very sorry for her . Lots of families plan a day out to go to a shopping centre , and it is a normal routine for them - to spend all day just shopping . I would like the trip to start in July if possible . Because this is my holiday start at the Camp California , I would like my accommodation in a tent , because I work in the Army and on the camp I usually stay in a tent at night , so I will feel more comfortable . Regarding the activities I would like to choose Swimming and climbing for my activities at the camp ; I usually do these two activities on the Army Camp . I know how to climb up on Rachiat outside and help other people to climb up . To make a daily life video in school , we should concentrate on the things we do most in a school . The thing we do most in a school is have lessons . It will be a very useful part of this video and should be the main subject . At the end of the video , we should find one or two students sit together and ask them a few questions about how they feel about studying at the school ? This is the suggestion to making a daily life video in school . It would be great . And we could n't wear any colourful clothes and socks . I 'm persuading my mum , perhaps . I am writing in response to your advertisement in today 's newspaper . In addition to this , I was wondering if you could organize the same festival in the summer . Unfortunately , Daniela fainted . This story happened a long time ago . Now Pat realized what was going on and could understand why her boyfriend got so nervous about the secret . Nevertheless , I lost my concentration on my studies and I spent the money on entertainment . I will never ever help anybody to organise a pop concert again . But after this servile work I met Eminem . As regards painting , I know a lot about it since my grandmother taught me when I was five years old . She also told me that she has some connections with the people in charge of the lights at the concert . Since I am going to travel I would like to know how much money it would be advisable to take and what kind of clothing I should take . Or approximately how much money would be enough to buy souvenirs because this will be the first time for me visiting California . Finally , I must choose travelling there in July because I am not allowed to take holidays in other months due to my work . However , things which you can get with money do not necessarily fill your dissatisfaction or even as you buy something more and more , your emptiness might be greater . And shopping is also a difficult hobby to go along with your friends or your partners . On the whole , shopping can be harmful rather than enjoyable because you might be extravagant , lose your friends and have what you do n't need . We think we could change the shopping to go to the show . To sum up , there is no perfect job , and being famous involves a lot of money , but also a lot of journalists following your private life . All the group would enjoy going to the show , because it is a great opportunity to see an exhibition of the latest fashions . For example , we ca n't go to the toilet during lessons . We have to go there in the break . It 's too strict . I do n't like it . My name is Sandre Atos , I am writing to you because last weekend I went to the theatre you manage , to see what was called " London 's newest and best musical show " . That 's why I am writing to ask for some money back ; I believe I have this right . Unfortunately my parents did not realize how TV was creating a role among us . On the other hand , due to scientific developments , I am getting better , recovering from asthma . I had a very disappointing evening last Saturday . I had everything planned ; my family and I were coming to watch your show and then have a decent meal at your theatre restaurant but it was disastrous . Then everything was going well until the show did n't start ! That was a disappointment for my whole family . In fact all the audience were very disappointed . Anyway the show was nowhere near as good as it was meant to be and it was definitely worse than I had expected it to be . I did n't enjoy it at all so I was relying on the food to fill me up and relieve some of my stress . So as soon as the show was over we walked out and followed all the signs for about 5 minutes , desperately searching for your restaurant , our stomachs rumbling for food . What kind of an organisation do you call this , sir / madam ? You do n't understand how disappointed and angry I was that night . In fact he was one of the principal busybodies of his neighbourhood and his school so not a lot of people in his school liked him . Some were just friendship groups but others took it seriously , maybe just a bit too seriously . They gave themselves names and acted like gangs rather than just groups of friends , and started picking on younger people , or members of other gangs , trying to start fights with them . This went on and on , got more and more serious , but it was so secret that the teachers did n't notice . Everyone in the year was annoyed , but not with Pat , oh , no ! except a few psycho groups . Some of the more serious ones decided to raid this party , just for the fun and meanness of it . Everyone was enjoying themselves except Pat , who had heard about the raid . The time had come . The who groups had combined their forces and were ready to strike . Lots of People were injured and even more were suspended the next day at school , when the Headmaster found out what had happened . Pat received no punishment at all and he was n't blamed for anything by his teachers or friends . But he felt awful because he knew that all this had happened because of him . Do you like do - it - yourself and is your house full of marvellous but useless things ? You could sell them to a specialised shop and finally tidy up your room ! I am writing in response to the International Arts Festival , which took place on 21 - 22 November . I would like to inform you that it was a great idea and a valuable activity as a social event . However , it was a disappointment when I realised that not many countries were attending the event . I would have liked to have seen more countries from all around the world , for instance , the Far East , Indonesia etc . On the other hand , I enjoyed being one of the people seeing the plays films , the dance shows which were brilliantly performed and the art exhibitions . Finally , I appreciate your organisation and look forward to hearing about the next International Arts Festival . What a pity ! Private schools have a more relaxed atmosphere than the state schools . Of course smoking is n't allowed in any part of the school . Apart from that I would n't mind at all whether I stay in tents or log cabins but if I have to choose between these two I 'd prefer to stay in tents because they give me a nice feeling of relaxation . It is very unusual to stay in log cabins while you are camping . Photography is a very interesting activity , and is not too hard to do either . Worst of all , at the end of the Musical , I went to your Theatre Restaurant , in order to have dinner , because I had left home without eating and so I was hungry at that time . First of all , modern technology has changed my daily life in the last five years more quickly than in ancient times , or even than a decade ago . Nowadays , I ca n't go one day without consulting computer communications via e - mail or the Internet . I exchange correspondence with all my family via the Internet , with my mother and 2 brothers who live in Curitilra City and also with a brother who lives in Italy and another who is living in New Zealand . It 's written in the regulations that we ca n't leave the school during the breaks ; we ca n't smoke near the classrooms ; we have to justify our absences or lateness and even if you 're over eighteen your parents have to justify you with the teacher . Regarding accommodation I would prefer sleeping in a tent because I enjoy the closeness to nature while camping a lot . I sort of felt like I had done my part to make the concert a success . The show is going to be on Tuesday the 14 of March from 10.00 to 19.00 and we find it very interesting , because we will have the opportunity to see mews , firstly about the latest fashions , secondly concerning leisure and sports wear and finally about make - up and hairstyles . Thank you very much ! Most of the time they have journalists following them everywhere , looking for a great story or interesting pictures to put on the front page of the newspaper , and I do n't think this is very nice , but it is the price that famous people have to pay , just because they are popular . Anyway , this is not always necessarily a problem , but it can be a big thing for the famous person , because it gets people talking about him and increases his popularity . In conclusion , I can say that this is not the biggest problem that the world has and -- it is not my problem because I am not famous ! Coincidentally the show is in London and on Tuesday March 14 , which is during the period we are in London for the three - day programme . However , journalists should not only think about commercial value , because morality and principles are also concerned . I remember in August 1997 Princess Diana dying in the car crash was one of the most disastrous examples . Although we can not deny it is our nature - we are curious - we can improve our sense of morality and try to think about the importance of privacy for them . Basle , 12th December 2000 In your letter , you asked me whether the book I 've read would be a suitable present for your cousin 's fifteenth birthday . You wrote that your cousin is quite interested in magic , detectives and sport , did n't you ? I think this is the best choice for him ! As you know , we are in England to learn your language and also to learn about your lifestyle , and we thought this show would be a good opportunity for us to discover this aspect of your country ! Thank you for your letter , as usual , it 's a pleasure to receive news from you . It 's a fantastic book , which I recommend to everybody keen on love stories . It 's a perfect combination of passion and life 's difficulties . I reckon that it 's not an easy read , but as you described your cousin , I think she really will enjoy it , she 's so good at literature that it wo n't be a problem for her . I really think you should choose this one for her , it does go with her personality . It 'll be a good point for her general education . Wuthering Heights is a classic , which everybody knows about , even if they haven't read it , they at least know the story . How has modern technology changed my life ? A computer is extremely helpful with writing reports and essays . But also I am not able to imagine my life without this nice way of receiving news with help of it . I would be very grateful if you could let us go to the show . Furthermore , admission is free for students . Unfortunately , our programme is fixed but I think we could change part of the programme . Firstly , most people can remember the sad story of " Princess Diana " . She died in Paris a few years ago while she was escaping from lots of journalists called " Paparazzi " . However , secondly , famous people are not " alien " so they might do something , for example , shameful things in a public space , or argue with a partner or family , even put on a swimming costume like us . So they can be just ordinary people like us . Overall , people should think about what it would be like if we were famous people ... and then we can find the answer that all people , including famous people , need a private life and would like to have an ordinary life . They were eager to have a child , but they had never been able to . About when I would like to travel , I think that my answer will be easy for you , because I have two months off , those are July and August , so my trip should be in between . Regarding my accommodation I would like to stay in a tent because I remember my holidays in the south of Peru , a long time ago ; it was wonderful . If it is possible for you to help me clear up some doubts I have , I 'll be really grateful . Yours faithfully . First of all , I 'll tell you that on the day of the concert I woke up at 6:30 a.m. , very early for me . You know me , I 'm lazy . The work began around 8:30 . It was very hard but then the band came to rehearse . From that moment I enjoyed working until the concert had finished . The atmosphere was wonderful , the musicians were very kind to everyone who was working because they understood that putting on a concert is a job to be done by a team . Finally , we would like to get your permission to go . Maybe if it is possible that you can change your programme , we can go to your college any time after Tuesday . This story happened two years ago . Not only was I a member of the swimming team in our school , but also I had been taught by my father since I was five years old . I started thinking about it . After all , either had I never done this task before , or trained . It was really a reasonably priced weekend for me , but you should also introduce new activities like competitions in singing songs or drawing a portrait next year . Secondly , the show should have started at 19:30 p.m. , and it began forty - five minutes late . Moreover , when I went to buy the tickets no discounts were available . Furthermore , I wanted to have a coffee after the show , but when I tried to get to the theatre restaurant , it was closed . Balloons and coloured lights were put in all the trees . I carried a lot of chairs and looked after the queue or people who lost their way . As we are going to be in London on this date , we think it could be a great opportunity for us to go there because we are very interested in the latest fashions , make up , etc . and it is free for students . Because of this , we would kindly ask you to change the programme so that we could go to this particular event . A special invitation It allowed people to enjoy their weekend , relax , and also it brought a foreign culture to them , broadening their knowledge . In addition to this , one weekend ticket for all the events was only £ 10 . This was excellent . It meant people only spent pocket - money , and then they could watch all the events at the weekend . For them it is a really economical way to spend their weekend . Moreover , the stars and artists were from only six countries . In my opinion , if you can invite more stars and artists from more countries , it will make the festival more exciting , more interesting , and in my opinion , some of the concert halls were too small . The people in there could n't even go to the loo , because it was too crowded . These are only my immature views . If it is considerable for you , I will be very pleased . Thank you very much . It was very uncomfortable for me . Today I received your letter . It is the most wonderful news I have heard in a long time . I am so pleased that I won this prize that I can not explain how grateful I am . Because of this situation I will be very busy in the first week of July , and I would appreciate it if you could give me the option to begin my " Camp California " experience on July 10th . About the accommodation I would prefer to sleep in a tent , because I have never been in one , and it is a lot more fun than log cabins . Because I have seen my father playing golf since I was a child I am very keen on this sport , and also I love photography because I have got a great camera . When I was a child I never liked to go shopping because my Mum spent so much time in the shops that I remember that going shopping with her was a nightmare . It is amazing how people change over the years For example now shopping for me is one of the most entertaining things , and every week I have to buy something . But these days shopping is not always enjoyable , because if you decide to buy a very expensive designer and you pay the full price , at the end of the season it is half price . I find it very unfair for people who pay a lot of money for their clothes . Anyway , shopping is always satisfying for rich people , because they can afford it and they do n't mind paying the full price for their clothes . Modern technology ca n't not transform our daily life . The inventions of the aeroplane , of the train and of the car , have reduced the distances of the world , so we can go to the other side of the world in half a day . Everything has changed : style , colour , quality . Fashion . We saw almost all kinds of skirts , trousers , coats , skirts and even hats - which until now have been the main point of many fashion creatures . Grey and black - like the seasons , like people 's characters , like all the night and dark surrounding us . In the advertisement , it said that Danny Brook was starring , but in place of him there was a different actor and he was really disappointing . As you can understand , it was a dreadful time and I want my money back as a consolation for the disappointment I had . I support this idea which is convenient both for the public and the organisers . It is awful ! However , we promised our parents to do some cleaning every week . What is more , there are many new ways to produce medicines and modern hospital equipment . The second is nuclear weapons and the many wars in which modern equipment is used . To sum up , as far as I am concerned , modern technology has changed my life completely . Last week , during my holiday in London , I had the opportunity to see the show " Over the Rainbow " at the Circle Theatre . The day of the show , we got to the theatre at 19:30 . Third , the theatre restaurant was closed because the chef did not show up . You can feel the fresh air and listen to the animals . This will be a great opportunity ! I am not good at either activity , but it will be a pleasure to try them , especially surfing . I would like to feel the wind in my hair , and enjoy how quickly the board goes over the sea . I mean , it is too crowded , you have to wait such a long time before you can pay , and most of the things are too expensive ! I was looking forward to a great evening , but much to my surprise , that was not exactly the case : there were no discounts available , such as were mentioned in the advertisement ; the show started 45 minutes late ; I was then very disappointed to see that Danny Brook had been replaced by someone else . Yours faithfully , I will take the example of the use of the Internet . I am writing to you because yesterday I went to the musical " Over the Rainbow " and I had a bad evening . First of all , I would like to travel in July because this is the beginning of my holidays , and I would not like to miss some of my school classes . Besides , I would prefer to stay in a tent , because I got used to being in tents since I spend my holidays every summer with my friends in the hills . In addition , I would prefer playing tennis . I also like surfing . I think it is a dangerous sport , but I know how to do it , because of the fact that last year a professional surfer taught me . I'M WRITING TO YOU TO COMPLAIN ABOUT THE MUSICAL SHOW " OVER THE RAINBOW " WHICH WAS PERFORMED LAST WEEK . YOURS SINCERELY Because I am a university student , I have got classes until the middle of June and I have to attend a ' Research and Development Conference ' at the end of June . Otherwise I have to work at a business department office as an assistant from the beginning of August . I always want to buy T - shirts , Jeans , Skirts , cosmetics , haribands , accessories , rings , earrings , bracelets , shoes , hats , bags , fancy stationery , interior stuff and CDs . Instead of buying something , I buy some fresh food and Ice - cream . I can try all the shoes , clothes , hats , accessories and jackets on . Actually , I could have a chance to ask her about music , her favourite artist and her hobby . Likewise , there were no discounts available . Because of all these inconveniences , I ask you for a total refund . So when Caroline , his girlfriend , told him something personal and very important , because she trusted in him , immediately he went to see one of his friends to tell him the secret . So immediately she went to Pat , angry , in order to argue with him , saying that she was annoyed by the way he behaved , and that it was n't the first time that he was n't capable of keeping a secret . But after I climbed two steps more , my right foot slipped . I nearly fell , but luckily my hand caught a rock . It was dangerous , but I did n't have any choice . Finally I did it . I think it was definitely not the perfect evening guaranteed in your advertisement . I was terribly annoyed ! I am always available on my mobile phone , which is also boring sometimes ! I often go on the Internet to find information when studying a particular subject more closely ( university technology sites ) . At work my particular job involves two standard PCs with specific software plus one workstation with the Stanford University Network ( SUN ) operating system and a special computer that my firm is now developing . I hope this matter will receive your prompt attention . For example , if you were hurt seriously like cutting your leg off , the new medical technology could rebuild part of your body . Also we should be careful as we could be watched by security cameras which have been combined with modern technology . In conclusion , I conciderly said we has been charged by morder technology in two ways . I am not very good at painting , but I choose it because it is a good opportunity to do it . I do n't want to disappoint you , but I am beginner ! In this book , Heathcliff as a child was n't a bad character , but the situations he lived through with the Earnshaw family , where he grew up , made him rude , aggressive and noisy . Before Heathcliff died he achieved what he wanted . In your letter you ask me to choose between tents or log cabins . Well I prefer to stay in a log cabin . It is more comfortable and I am afraid of wild animals . The other activity I like very much is swimming . First we had to prepare the stands with food and drink and buy something which had been forgotten . He is very beautiful ! Fortunately we had no problem . I was very proud of myself and the work I had done . Modern technology has completely changed my daily life , which has become more comfortable , and easier . Thank you for the excellent programme you have organised for our class . We would like to inform you that we are all extremely interested in this show and that it could be a great opportunity for us because entrance is free for students . We would like to ask if we could go to this show on the 15th March instead of doing the visit to the Science Museum . Who has never dreamed of being a famous singer , sportsman , actor or a politician ? Firstly , this is because there are a lot of scandal magazine readers . What a catastrophe ! A disaster ! Also , I used to assist my brother , who is a professional photographer . When I read the advertisement for the show I was really excited but after the show I was not very happy because of the following problems . The advertisement says that Danny Brook and Tina Truelove would play but in this show there were totally different actors and that was really disappointing because I was looking forward to them . The advertisement also says that there are discounts available but this is not true , there were none . Why do you give this information in an advertisement ? I have only one question about the baby 's accommodation . So , you wo n't believe me , but I enjoyed helping at an Oasis concert . Me and my friend were there to hear the sound - check , and when I understood what was happening on the stage , I decided to help them . Of course you know I 'm a singer , so I came back quickly to my home , I picked up my microphone , and I handed it to the singer . Can you imagine ? I will consider taking this complaint to court if I do not receive an acceptable explanation from the theatre . On the other hand , people in the future will probably wear clothes to protect themselves from the polluted air and water , the harmful ultra - violet rays from the sun and all the dangerous and poisonous gases or chemicals which are the product of a developed and full - grown country . Therefore , I will suggest that we all nov to keep the environment clean and healthy for the next generation . When I first heard about Over the Rainbow I was very excited about the idea of seeing it , plus when I heard about the extras that the circle theatre was offering , it became the best opportunity I ever had to attend a musical of that type , but instead of being the best evening I ever had , it was a total disaster and that 's the reason why I am writing to you . First , the actors that the Circle theatre publicised on their tickets for Over the Rainbow were not there , which was very disappointing because the actors starring in the musical were one of its major attractions . Another point that I want to complain about is the time that the musical was supposed to start ( 19:30 ) but it started at 20:15 , so there was major dissatisfaction with that , but the last and worst thing was that your theatre restaurant was closed because the British health institute considered your food unhealthy , and I am not taking into consideration many other points like unsatisfactory service , and uncomfortable seats . Science and Technology is a theme very much discussed nowadays , most of the community of our city , and of the world , where technology has arrived , confirms that it has in some way improved their way of life . But not everything about technology and computers is good , because many people , and me in a control way , have become computers ' and technology 's slaves , and we can not do anything without a machine , and I am not saying that it 's wrong or bad , and I accept that they make our daily tasks easier , but we have to maintain our independence as humans . First of all , there are quite a lot of advantages to shopping , which are that it can be the solution to our stress and boredom . Also shopping makes people happier by costing a lot of money and it even influences the economic situation more flexibly . Also there are plenty of dangers since lots of people have their wallet stolen because it is a public place and there are too many people . In addition , shop owners often cheat their customers by increasing the cost secretly . I 'm really pleased I won your competition ! I 'll give you the necessary information about me . The most suitable time for me is July because in August I intend to go to the countryside , where I have a small farm . You offer me a lot of activities . It was absolutely great ! I gave information about correct ways to other places like toilets and medical points . I looked very carefully at the organisation of the event , you know I 'm interested in it . I was so surprised to hear from you . I was really grateful when I received your letter which informed me that I have won first prize in your competition . Personally I prefer to stay in log cabins because they are much more comfortable than tents . Unfortunately I am not good at either of them . I really hate it , because we 're not allowed to wear casual and fashionable clothes , colourful shoes or colourful socks . I am very excited and looking forward to the new experience I am going to have . I would prefer to stay in tents because I love the atmosphere of camping , but I would n't mind staying in log cabins . It is based on information made available by students from each class at school . It seemed to be the most interesting lesson , because students always make some mistakes while they are practising with their partner , in spite of having been told by the teacher ten times . Spending time together out of the class is a nice experience . Firstly , I should say that I would like to travel in July because that is the month which I could most likely have off from work to go on holiday . That is because , I do not want to seem fussy , but I like to have some luxuries when I am going on holiday and I think sleeping on the floor without electricity may annoy me . Conversely , painting is an activity which I have never tried before , so I have not any skill in drawing but I would like to start doing that now when I have the chance . On the other hand , I would like to know some information which could be useful on my holiday like : what type of clothes would be more suitable for me in the Camp ? I am writing to tell you about my experience at the pop concert last month , where I was helping my friend Nick , who was the bouncer at the venue . My job was to accommodate to the people of the main sit of the theatre . So , I hope to see you soon to show you all my photos . I think it was very clever of me to record that moment which I will never ever forget , and that was the thing that I liked most about that experience . I 'm writing to you to make a complaint about your musical show : " Over the Rainbow " ... Last week , I , my husband and our two children went to your theatre to have a good time , but we were so disappointed . Moreover , there were n't any discounts available like writing in your advertisement . I will always say thank you very much to the inventor who has invented the machines which do the washing and the washing - up , before this , women spent a long time doing these tasks . I am writing to give you further information about me which you need for Camp California . In conclusion shopping is enjoyable but not when it is too busy . 1 . Grammar , which is the basis of learning English . Speaking : it makes you more confident when you talk with other people . It lets you get more practice . Writing . This class teaches you how to organise what you want to write . It is important to practise your English after lessons . If you have a problem studying , try asking the teachers about which is the best way to study . Yours sincerely I am writing in reply to your letter in which you told me I won the first prize . So I want you to send me some money back for that unpleasant night . The headmaster wanted to tell the police what we had done so we decided to imprison him in a little house we had twenty kilometres away from the village until we could change his mind . We took some photos of him naked and told him not to tell anybody about this because if he does we will hang the photos all around the village . In the following edition the headline was : " Why does a teenager sleep with a toy called Max ? " Everybody laughed at her . I would like to travel only in July because I will have some holiday at that time . 3 When you are ready to shop , sometimes you know beforehand what is your priority , because probably you need one thing rather than another . But the best thing that we do , when we go shopping is spend time having lunch at a snack bar , watching movies and playing computer games . Last month , I worked as a roadie at a Rolling Stones pop concert . I was responsible for the sound . Some people when they are tired relax by sleeping , reading a book or watching television , but not me . There are always , at the end of the afternoon , some well - dressed women coming from their offices and they just spend one hour in the shop without buying anything . However , it is true that shopping is not always enjoyable , for example before Christmas or during some special sales . Secondly , the show began forty - five minutes late and nobody told me what had happened . I preferred riding a motorbike with the people who studied with me in the Institute . You have a chance to meet people and now you have an opportunity to select good friends . I like Danny Brook as an actor and when I read that he would be starring , I booked the ticket immediately . I belong to the generation who have grown up with a lot of new technology . For example , TV , telephone , microwave etc . I thought I would never need a mobile phone , but my mum and dad gave me one for Christmas last year and now I ca n't live without it ! But the invention that I 'm most thankful for is the computer and the Internet ! So , I start every day by switching on my mobile phone , to see if there are any more SMS messages before I go to the library to check my e - mail and that 's just the beginning of the day ... Second , I would rather stay in a log cabin , because I tend to get very nervous in small closed places , so a tent would be inappropriate for me . I haven't played golf for a long time , so it will be pleasant to do so . Yours sincerely , The fans started shouting and whistling for the show to begin , while I just stood there trying to see what had happened . When we saw your advertisement for the musical show , over the rainbow , we immediately decided that this would be a perfect evening out . Thirdly , in your advertisement it said that discounts would be available , but they were not . I am therefore asking for compensation for our disappointing evening and hope we can reach a solution as soon as possible . I really like Pat , she 's funny , has a good sense of humour and like me she loves to discuss everything . I have received your exciting letter , informing me that I have won two weeks at Camp California in the USA . I much prefer sleeping in tents . It seems more sociable and really sounds like holidays . So one week before the concert I went to " L'Arena " to meet the other worker and receive the instructions . I 've had the honour of helping their sound engineer and branching the cables for microphones , guitars etc . We really started to work like ants the morning before the show . It was exciting looking at all three men working together and building a stage , and it was interesting to help the sound engineer to check the sound and configure his computers to get the best sound possible . About two hours before the beginning of the show , we met the band and received tickets to go backstage . That was wonderful , maybe better than the concert itself ! That 's a great experience ! Apart from this , photography is one of my favourite hobbies and I usually spend nearly all my spare time doing it and of course I have some diplomas as well . I would like to request some information about accommodation and if you could specify what this trip includes , since I need to know how much money I have to take . I feel that this was a good opportunity for me , not only for my professional but also for my personal life . According to my job , I had to help the teams with the outlights and , of course , it was my first professional experience : in the end I felt like one of them , because they were so kind to me , and I could help a lot and I learnt a lot with this project . I prefer that kind of accommodation because I can have a kitchen or even a bathroom there , but I ca n't have it in a tent . These are my favourite because they have a lot to do with water , but I like them more than surfing . I agree with this statement especially when we talk about small shops in the centre of a big town . These days people prefer shopping at supermarkets rather than at shops or even shopping centres , because shopping at a shop is less enjoyable and you spend the same amount of money . There were 963 people at the " Armageddon " that night ! You must show a great sense of responsibility . I 'm sure you are jealous now . Now I am studying and I 'll continue my studies until the end of June . I think it 's a very useful and helpful thing for my health , especially when I do it with pleasure . The second of my favourite sports is tennis . I 've played tennis for ten years . I 'm a professional and I have to be good at it , in any time . The most enjoyable thing was to dress people . But when we saw our show and heard how loudly the audience applauded them we were proud and understood that we spent a good time . You should try it and see . I would like to stay in a tent because I used to go camping at weekends but if there 's any problem I could be very comfortable in a log cabin too . I have never tried either of them before and as a result I ca n't be good at them but I 've always wanted to sail because I love the sea and now I have the opportunity . If you do n't mind I would like to know what kind of clothes are appropriate for the camp and for the Californian weather . First of all , we usually go to the shops at the same time as the rest of the world and that 's a little bit complicated because the shops are full and it 's impossible to try accurately . I would be grateful if you could send me the full details . In the following paragraphs I will discuss the advantages and disadvantages of shopping . In a supermarket , shop or department store they have many things . It is very convenient . Sometimes , there are so many people and they are not friendly at all or you are in a hurry while you are in a long queue . Most people enjoy shopping because it is more convenient today but if you found a busy place for shopping or it was not as good as you expected . Dear Sir or Madam , With reference to your advertisement regarding the musical show " Over the rainbow " I am writing to you with the intention of giving you an impression of our experiences attending the above - mentioned show . We were disappointed to realize that not Danny Brook but a different actor played one of the main characters . According to your advertisement the play should have started at 19:30 . What made the situation worse is that no explanation for the delay was given ; not even an apology . A story of an old seaman leaving his town to prove that he is still able to catch the biggest fish ever caught . Last week I was on holiday in London and I was very disappointed when I visited your theatre . First of all , the show was supposed to start at 19.30 , but it was delayed until 20.15 , and when the show finally began we were surprised to see that Danny Brook , who was the star of the show , was not playing and someone else had replaced him and he was really disappointing . Anna told her again : " Pat do n't tell anyone please , especially my brother , everything would be ruined then " . And Pat answered : " Do n't worry I wo n't tell anyone " . The big secret was that Anna was preparing a surprise party for her brother John and she did n't want anyone to know about it . It will be a pleasure to give you all the information which you need . As far as I know accommodation at Camp California is in tents or log cabins . It 's more convenient for me . I am a good defender . I 'd like to know what temperature it will be in July in California and your advice about how much money I will need to have an unforgettable holiday ! If we decide to buy something special and we have enough money for it we have to go and buy it . During a prior holiday in London I came across an encouraging advertisement for the show and decided to see it . Unfortunately , I was very disappointed to find out that there were no discounts available ! In addition , I was very annoyed by the fact that the event had started at 20:15 - not 19:30 as stated in the advertisement . I 've always enjoyed danger and this time getting the password was , indeed , a tough cookie . Especially now , when ' big - mouth ' Pat has spread the news to literally everyone . I would n't be surprised if suddenly something bad happened to me . Furthermore , for the activities I want to select Tennis and Basketball because I have been playing tennis since I was young and basketball because I played for the team in my college as the captain . Anyway , this was my experience working at the concert . If you have an opportunity to help at any concert you should help because you have a lot of fun as well , OK . I am writing to you , in reply to the letter I have recently received , to inform you about some details that I am concerned about . In your letter you presented the possibility of choosing two activities and I would like to let you know that I would be pleased if I could join in with basketball and climbing , as I am very good at both of them because I played basketball in my secondary school as captain of the team and due to my long training sessions lifting weights . There is , as well , the struggle you have to endure when you find yourself in the crowds , crammed in the small shops during the only day - off you have to buy something you like . All this can easily lead to a nervous breakdown , particularly when you realise that your money has been stolen either during your difficult way through the crowds or while you were queuing to pay . I 'm the winner of the first prize in your competition and I 'm writing to you to give you some information which was requested by you . And it 's creating a lot of addicted people , called " shopaholics " . I am writing to you because I had a very disappointing evening at the Circle Theatre . He told me that it was necessary to do something about it . As Pat was losing his patience , he decided to talk to him . I can say that I was very nervous and anxious about what was going to happen . I am writing this letter to inform you about the decisions I have made regarding your questions . When I was a child I was afraid of all these little insects that live in the ground and this fear still remains now . I also think that the log cabin will be much more comfortable than the tent . Basketball and swimming are the two activities I have chosen . Finally I would like to ask you for some further information about the clothes and the money we will need . I was only responsible for the property of the back stages . I was shocked and terrified the first time I saw them , but the truth is that they are men like us . They have a very simple life and behaviour when they are n't on the stage . Definitely , it was not my perfect evening at all and under these circumstances I really believe you should give me my money back . I received your letter about the two weeks I won at camp California in the U.S.A. I would like to travel in July because I will have holidays in that month . Yours sincerely Also , we will take the drinks from our canteen and there will be a group of musicians for our entertainment . I was surprised because I did not know what he wanted . When I went he wanted to tell me that from the next month I would be his personal secretary and my salary would be twice what it was previously . Unfortunately , the musical show was n't much like that the one the advert had described , and that is why I want to ask you for some money back . Now I have a new computer , which is very easy to use , and comfortable for my fingers and also faster . And he can answer me very quickly . I think it is now the future of big companies to work with the Internet . I am writing to inform you of some problems we had . We had to wait over 40 minutes It seemed to sink into the sea , but fortunately , the storm soon went away . Finally when it started we noticed to our surprise that it was not the right actor on stage . Afterwards we wanted to go for a pleasant dinner . Anyway , we definitely know that they 're going to change . In the paper it was written that the principal actor is " Danny Brook " but it was n't him , it was a different actor whom we had never seen , or heard . Unfortunately , Pat was n't very good at keeping secrets , this sentence is very popular in our school . I helped to guide foreigners who would like to participate in that . Thank you for your letter . I was so happy to receive such good news that I could n't believe it . Regarding the accommodation at Camp California , I prefer to rent a tent , which is going to be more fun , I think , but are the tents singles ? Is there only one teacher for each sport , and how many are in each group ? It 's the place where you can meet your friends , where you can talk freely , and there are no teachers . It could be a good contrast to the seriousness of the lessons . Finally we should film the lunch , which is also a moment for the students , and for the teachers , to relax . We must n't forget to film the staff room because if a school is made of students , it 's also made of teachers . I would like to thank you for your letter you recently sent me concerning the competition for two weeks at Camp California in the U.S.A. First I want to thank you for all the congratulations , and I 'll try to answer all your questions about , for instance , travel and accommodation . I have to tell you that it is only possible for me to go on holiday in July because my father is very ill and it is only possible for my sister to take care of him in July ( because her small children are in summer school at that time . I was so happy and surprised that first I could not really believe it . Secondly , regarding the accommodation , I would say I prefer living in a tent rather than in a log cabin because I used to sleep in a tent when I was staying in a local scout camp in my country . Thirdly , I have chosen Sailing and Photography from the list you gave me because both of them are my favourite hobbies and I have been enjoying Sailing and Photography for several years so I am quite good at both of them . Finally , I would like to ask you whether I have to prepare any special clothes for camping or will the camp provide them for me . A group of girls can stay in a shopping centre forever . Thank you for your letter and I am very pleased that I won the first prize in your competition . In addition to all this , I would appreciate it if you could let me have more details about clothes and how much I shall be paid for the trip . Another reason is that it will be more useful for foreign students who want to speak English . The number of foreign students has recently been increasing . To sum up , it is recommended that speaking classes and school trips should be filmed . First of all I would like to thank you for giving me the opportunity to travel . You asked me some questions about the day that suits me the best to depart , the accommodation I would like to have and so on . Travelling in July , I have to say , would be perfect for me because my birthday is on the 24th of that month and I wish to spend my birthday in the best way possible , so that means there . I also would prefer to sleep in tents , which are more comfortable , and , because I have been doing lots of camping , I am quite used to this kind of accommodation . The activities I have chosen both represent a passion for me . We are writing to you to complain about the musical show " Over the Rainbow " , which we saw last week in your Theatre . The advertisement said that it starts at 19.30 , but it actually started at 20:15 due to a problem with the sound . We were also surprised to discover that the student discounts were n't available for us , because they did n't accept our student identity cards from Switzerland . What is the effect it has on your environment ? The major problem for the industrial cities is to deal with the bad effects of pollution on the environment . A lot of money is involved in research to stop the increase in levels of pollution . To sum up , all the improvements come at a price : the condition of the environment . When it was time to take the final exam , she became ill and she could n't do it so the teachers decided to allow her to pass the course because she had a lot of good marks , but on the other hand the principal disagreed and did n't give permission to pass her . She had to repeat that course and all her friends passed and as is usual the girls from the last course became popular . Pat , to win her new classmates ' friendship , told everything that she knew about her friends and , because of what Pat said , her friends ended their friendship with Pat because their popularity was damaged . And it is even more difficult to predict what clothes in the future will look like . I saw the performance and it was not as it was described in the advertisement I read in the local newspaper . Then , I was planning to buy three £ 20 tickets because it was mentioned in the advertisement that there were discounts available but that was not true , so I could just buy two tickets and my son could not see the show . Finally , I was thinking of having dinner in the theatre restaurant after the show but it was closed due to some problems with the employees . What was supposed to be a perfect and enjoyable evening , resulted in a very disappointing time . So I would be grateful if you paid for a full refund of the money I spent on the tickets . Computers , radio , CDs , satellite television and a lot of other things have changed my daily life . Another advantage is that , for example , satellite television , which is an example of modern technology , keeps me informed about what is happening in the whole world . After considering your accommodation offers , I 'd rather stay in a log cabin if possible . It would not only emphasize the sharp contrast between this and the classroom atmosphere but also show how they are as young people . On top of everything , the restaurant which was advertised in the advertisement was closed because it was being arranged . You can imagine how disappointed I felt after that evening , and I am writing to ask you for a refund of part of the money . But , in other things , I think modern technology hasn't changed my way of life too much : I do more or less the same as I did some years ago : I get up in the morning , go to school , have lunch , study and go out with my friends without being affected by microchips or nuclear energy . I have happily received your reply and I want to thank you for this marvellous prize you have given me . After helping to do that and many other things , my friends and I watched the concert and before Green day ( the group ) left , they came up to us an thanked us for all the hard work we did , and shook our hands . It started at 20:15 leaving us waiting for forty five minutes . In the future people will wear clothes made of polyester and nylon because cotton and wool will be rare and expensive . Also I think clothes will have many gadgets on them like a small oxygen mask in case someone goes in a place with extended pollution - I think there will be many such places in a hundred years - and a hat designed to protect people from the strong rays of the sun at midday because the ozone layer will be destroyed in a hundred years and the sunrays will do damage to the human skin . Now , it is already possible to send our shopping list by computer , and this option , in the next few years , will become the most common one . The new technologies will probably produce a considerable revolution in some essential parts of the house . For example , we will have computerized ovens , microwaves and freezers , or we will probably have central heating controlled through the Internet from our office . Firstly , log cabins are more comfortable than tents . Is there a possibility of exchanging different currencies to US dollars ? When you think of shopping , it reminds you of going out ( mostly ) with friends , looking for new things like clothes , accessories etc . and buying them . Then in the advertisement it said that the performance began at 19.30 . I was very nervous . So this evening was terrible . And now I request my money back . Among them , the mobile telephone , computers , telefaxes , different appliances for the kitchen , machines which help housekeepers to do any work about the house . So with the appearance of new modern technology people have got much more free time . Some years ago people , especially students , had to run to libraries in order to find a book about something . I use the Internet very often , and I must say it is very convenient . If I need to say something important to my parents or my friends , or if something terrible has happened to me , I do not have to run somewhere to find a telephone box . With it people do their work more quickly and successfully . I saw an advertisement which made it seem very attractive to me . Firstly , I decided to go see your show to be entertained by the performance of Danny Brook so I was very sad to find another actor on the stage . It 's unbelievable it was 45 minutes late . We stayed with a host family in a suburb of the city . The man said it was OK this time and we got in quite easily , we 'd made it . I 'm excited to be going on holiday there and , thanks to you , I will realize a dream that I always wanted to do . Yours faithfully On Monday we could first go to the Science Museum and in the afternoon to Greenwich . Everyone knows you because of the journalists , so you ca n't just ignore them , can you ? I am writing to you because of the unpleasant evening I have had recently . Earlier I had seen an advertisement for the show but the information on it was false . The last thing is that it was impossible to go to the theatre restaurant because it was closed . I would like to write about how it has influenced my daily life . I am a student at a technical university . When I needed some information I had to go to the library to find it in books or newspapers . The computer is helpful when I want to contact somebody very fast . The second thing is that when I needed a phone card to call somebody I had to stand in a long queue . Although we would like to visit the science museum , we can leave it to the next opportunity . What we suggest doing is instead of going to the museum in the morning we go to the Leisure Show and keep the afternoon programme the same . I knew I could not make any movement for my safety but I did and to my surprise it ran away . Since I am a student I have to follow the vacation programme of my school , which means that I would only be able to travel during the month of July . Concerning the activities , as a matter of fact tennis is my favourite sport and I am very keen on it . For the second activity I would like to enrol in surfing , because my husband , who is already a proficient surfer , keeps telling me about the excitement of this sport , and I think it is worthwhile trying , therefore I 'd love to be in the beginners ' group . It offers a wide choice of courses from cooking , computing , make - up , languages , geography , to culture and civilization . Once students have taken a shower after hard physical training they enter real life . Depending on their levels of proficiency , they have to study for instance languages which I personally find very important for a person working in the tourism industry because they enable staff to communicate with clients in a proper way . Students have to manage to speak at least three languages . Another important lesson to film is " culture and civilization , " so people will know that the waitresses trained at this school are not simply , as the French say , " pot - au - fleurs " , beautiful faces , but also well - read people . Last but not least is the class called " know - how " , which shows students how to cope with unexpected problems even if they are stressed . To whom it may concern , Firstly , the advertisement said that Danny Brook was going to star in the musical but it turned out to be a completely different person , which was very disappointing . Secondly , according to the advertisement , the musical was supposed to start at 19.30 but it actually started at 20.15 , which caused me problems . With all the dissatisfaction above , therefore , I would like to ask for some of my money back as my evening was not what it should have been . She saw some familiar faces on the other side of the street . And if it is possible , I would rather be accommodated in log cabins because I would not like to share the bathroom facilities with someone who I do not know well . I am in the school swimming team and I am interested in photography professionally . Could you please tell me what kind of clothes I should bring with me and whether the company offers us some expenses money to spend ? And what 's more , there were n't any discounts available and the theatre restaurant was closed : the only people who could enter were the actors and the staff . Well , it seems that it was n't my perfect evening and for all these reasons I demand to have my money back , I wasted £ 20 to see a show which does n't respect the programme I paid for . Science and technology can be useful : see for example the use of TV in the school or the use of the radio to learn a foreign language or the use of the computer to get further information about something that interests you . Again we 're so sorry that we are causing you inconvenience regarding your plan and thank you for considering us . But we could have everything we want . Home might be a mixture with modern styles and a natural appearance as well . These days a lot of countries have been worried about lands that ca n't have enough space to build houses . Because we are living a computerised life , we 'll able to do most things at home or these flats'll have these places as well . On the other hand , what might still be the same is to have good places to take a rest at home , such as a beautiful garden , a small terrace . Last week I went to the Circle theatre , for which you are responsible , to see the musical show " Over the Rainbow " . I think modern technology has changed mankind 's life a lot , especially since last century . The changes brought by modern technology are so important that today no one can live without this technology or without a part of it . In my situation for example cars and motorcycles are a necessity : I live on a little mountain at 160 metres altitude so I can not go to the city using a bicycle . Because of my " isolation " the telephone is very important and I need a good personal computer with a modem and the Internet to study or do research , because there are not any book shops to buy or borrow books in my little town . Only those who get good marks can take part in these activities , so sports activities are seen as a prize , so while the students are playing basketball , tennis , volleyball ... or they are swimming you can see satisfaction on their faces , and our volleyball team is excellent . Be careful , my own technology can kill me . The only convenient time to travel is in July . This part had to be saved for later because the concert organiser wanted to know the exact number of visitors . Here , I had to check the bags and coats of the girls . I think it 's because the last time I travelled ( with my friends ) , we stayed in log cabins , and when I was sleeping I felt something moving on my skin , then I woke up frightened and when I opened my eyes , I saw lots of big ants ! Gratefully I met all the staff , and Ricky took lots of photographs with me and gave me an autographed Record . I am also writing to make a suggestion and to give you my opinion about next year 's festival . An international arts festival is a great idea , but at the last die there were stars and artists from only six countries , and it could be more interesting to have the opportunity to meet artists and stars from more than six cultures . I could not listen to one of my favourite classical concerts , " La Moldava " by Smetana . In Italy there are n't a lot of rules at school and they are n't very strict . I am writing to you in order to describe my last visit to your theatre . Unfortunately , I am very disappointed about the organisation of your company . Firstly , the musical show started not at 7.30 p.m. but 45 minutes later . I do n't know whether it is a typical situation in the Circle Theatre that it promises much more then the people can get for their money , or whether it was on June 7 ( my visit ) only , but I do not approve of such a situation and must ask you for my money back - my bank account number is enclosed . Because people have fast and comfortable cars , they are much more mobile and can spend their free time more actively - they can often visit their friends and travel much more . Secondly , we can do our jobs today more efficiently . I found your advertisement in the tourist board offices and as the musical " Over the rainbow " seemed to be a good option I chose it . After a long time walking we decided to return and now the weather was so hot we decided to find a place to drink something . I 'm really very unlucky . However , we saw an advertisement for " The London Fashion and Leisure Show " and we would all like to go and see it . We could immediately see that it was broken . All synthetic material will be uncomfortable for these people . Women will prefer long skirts and short blouses and jackets . Men will wear as usual - a suit . For special occasions , for example a party , a concert , people will dress very smartly . I think that it will be dresses , and suits sewed by the well - known tailors . I think that we will observe a few slow changes in fashion , but I hope that new clothes will always be pleasant for people . As we have seen the advertisement for the programme the school arranged for us as a farewell activity , we are very appreciative and would like to thank you for your kindness , as all of them are very interesting and give us a chance to meet and join the other class , which we have hardly done at all . So this is a great opportunity for us to get used to the real world of fashion design , because in this show there will be a fashion show , a demonstration from make - up artists , and a contest for hair stylists . Furthermore , most of the famous brand of sportswear companies will be at this exhibition with their new products for the coming season . Anyway , instead of going shopping in the afternoon session , we will attend the show . We all think the programme is organised well . In particular we 're so keen on the idea of going to the National Art Gallery , to see the work of the greatest painters in the world . I 'm writing to you because we saw a great advertisement for the London Fashion and Leisure Show and we really would like to go to see that show . I think it 's a great opportunity , because we will have a chance to see the latest fashion , leisure and sports wear , and also the way to do the perfect make - up and hairstyle . In my opinion , we can have a great time there , and entrance is free of charge for students , which is very important as well . We thought that with that beautiful weather the seaside would be just perfect for relaxation , sunbathing and joy . However , the truth was a little bit different . The weather had changed suddenly , and there was no more sun , but strong wind and heavy rain . Despite that we were still thinking optimistically . We were thinking is so many other activities to relax and enjoy ourselves then sunbathing on the beach . The sky went completely black , so at first it was difficult to see where everybody was . I looked around and I realised a friend of mine was still in the sea , and fighting against the storm , trying to get to the shore . Everything was looking so dangerous but fortunately it ended well . I would like to apologise to you for my controversial opinion but I feel really disappointed . I came to London for a short holiday to meet new people and to have a taste of English culture . I 'd seen your advertisement which recommended the play ' Over the rainbow ' and I liked it very much . In the advertisement ' DISCOUNTS AVAILABLE ' was written . Shall I ask you one question ? - Why were n't they available ? Everybody was shocked and I was trying to keep the faith . Nevertheless , after the show I was very hungry so I went to the theatre restaurant and what did I see ? Finally - you offered a wonderful evening but I must say that if I had known that it was going to be like that I would n't have wasted my time . I feel entitled to write this letter and I feel the opportunity . Yours faithfully The main advantage is that it provides you with all the information that you need . Furthermore you can play with the computer , and unfortunately this fact especially has changed my life . On the other hand , playing games and using a computer widens my brain so , as you can see , this modern stuff has got many advantages and disadvantages . I saw the advertisement for the International Arts Festival which is a great idea . Firstly I want to congratulate you on the festival . I have a surprise for you . Shopping is not always enjoyable . Secondly , you have a lot of choices and you do not know what to buy . Lastly , there is a recycling problem , which many people do not care about . In my opinion , small shops and the street markets should be supported . On the other hand , the big supermarkets should think more about the recycling problem , which will be the most important problem in the near future . Secondly , the show started at 20.15 . I will be glad if you will send my money back . Yours faithfully , This was the reason why we were in horrible trouble with the police . Let 's go back to the beginning of this story . There was a secret place where a robber kept gold stolen from a bank . We found the solution to this desperate situation - to say nothing to anybody . Our class really appreciate your preparing this programme , especially with regard to Monday 's attraction . We are extremely interested in visiting London . In the last edition of ' London 's Guide ' we saw an advert for ' The London Fashion and Leisure Show ' , which will be held on Tuesday and it lasts from 10 a.m. to 7 p.m. The offer mentions the ' latest fashions ' , which we are incredibly interested in . Nowadays famous people do n't have an easy life . They are always attracted by naughty journalists , which have a desire to earn big money for writing an extremely good report or article . When choosing this style of life they should realise what their life would be like . On the other hand , their life has no privacy . Some people may argue , but I think that politicians and film stars belong to the public . In conclusion , I believe that we have a right to be informed about their lives , providing that journalists respect some important rules . We think we 'll have one free hour before the River trip . Regarding accommodation , I would prefer to have a log cabin . It would be better to leave money or anything in without worrying about theft . I 've always dreamed about climbing but I have never had the opportunity to try this sport . I have already thought about a change to the programme . But the worst thing about " London 's newest and best musical show " , as you called it , was the absence of Danny Brook . The actor who was " dancing " was horrible . I want you to give me back my money . I hope that in future you will correct all these mistakes . That was supposed to be a joke from my " colleagues " ! I enjoyed it and here are some feelings and advice for next year . They do n't fancy going into the crowded shop . I received your letter congratulating me for having won the first prize in your competition . I am very grateful and I want to thank you very much for letting me go on this trip . They are much more comfortable than tents . Apart from calling them , I also helped build the stage , and took care of the lights . I can tell you that it was a wonderful experience . But Pat , coming back home , told her mother everything . The advertisement I had read did not tally with the performance . Today it is used practically in all spheres and its influence on people is not unnoticeable . I am writing to tell you that the students of my class have seen an advertisement for the London Fashion And Leisure Show . I had to become a burglar again and steal jewellery from the jewellers nearby . As I knew the techniques to break into a place without being noticed , I should not have been afraid but tonight I had to steal the most precious diamond in the country , which was very well protected . There were lasers all over the place , which I had to be careful of . I got into the car and gave the jewellery in exchange for my brother , took him and left the place . The programme offers enjoyment and education , which is essential for young people . Secondly , because we do not have to pay for the tickets . We have already organised our visit in a new programme . We are looking forward to hearing from you . The future is unpredictable and human beings are afraid of dangers , such as tornados or earthquakes . What we really need in the next millennium is love , that is what will keep all the family together forever . Life is too short to think about possessions . Our houses will change because of new technology , which may make our lives more comfortable . What depends on us , is the atmosphere we will have in our houses . The home of the future , for me , is a place of happiness . We can not be aware of future technology , but we might still have some feelings for each other . I have swum since I was in primary school . In particular , I liked cleaning the stage , because I could stand on a famous singer 's stage and I could feel his enthusiasm , even though I had to clean it . I go to the beach almost every weekend to improve my surfing - it is the sport I like best - and I think it would be a nice opportunity to practise surfing too . There are some things I would like to ask about : the type ( and quantity ) of Clothes I will have to take , and if it is necessary to take some money or any additional stuff ( like raincoats ) . Since we were kids people have told us stories about two sides in conflict : the good and the bad side . What was more , it was closed because of refurbishing . When I was a university student , I had to find out some information for my homework . I imagined where other countries are like England . I am still a student and I saw in the advertisement that there were some discounts available . The first thing I do every day , when I get up , is to prepare a fantastic cappuccino with my coffee machine . All day I speak with the majority of my colleagues by telephone or e - mail . If I haven't enough time to cook I prepare my meal using my fantastic microwave oven . The home of the Future Technology is changing very fast and at the same time as I 'm writing my article about the future maybe technologists have made a new oven which co - operates with your refrigerator and has a program to make dinner for you every day without you having to do anything . What about rooms which can sense your mood and act according to that ? If you are tired for example then your stereo might put some relaxing music on and turn down the light a little bit . I think that everyone should think not just about the positive side of technology but also the negative . First of all , the advertisement I got placed emphasis on Danny Brook 's starring in the show , but actually , a disappointing , unknown actor played his part , and I wonder whether he had real skills . To make matters worse , not only was the restaurant closed , for no apparent reason , but also the discounts that were said to be available were not . We are all excited about the programme you 've prepared for us , especially about visiting the National Art gallery . We have seen an advertisement for the London Fashion and Leisure Show in a newspaper . We think it could be a great opportunity for us because we 'll see the fashion show might shop for leisure and sports wear and all the girls in our class are interested in new styles in make - up and hairdressing . A scientist could discover the 4th dimension and we 'd get unlimited space inside the house . You could tell your wardrobe what clothes you 'd like to wear , your hob will cook your favourite meals and your refrigerator will send orders to the supermarkets to buy the food . I AM WRITING TO YOU IN ORDER TO GIVE A REPLY TO THE KIND LETTER I RECEIVED FROM YOU . I CANNOT EXPRESS HOW THANKFUL I AM FOR THIS BEAUTIFUL PRIZE . I HAVE CHOSEN THOSE BECAUSE I AM QUITE GOOD AT PLAYING BASKETBALL AND I SING EVERY WEEKEND IN THE CHOIR OF THE LOCAL CHURCH AS WELL . I HOPE YOU WILL BE ABLE TO ANSWER ALL MY QUERIES . THANKS FOR THE KIND LETTER YOU SENT ME LAST WEEK . BUT TO MAKE THE THING BETTER I WAS CHOSEN TO HELP THE BAND AND THE ORGANISERS OF THE CONCERT . AS YOU KNOW , I AM A SOUND TECHNICIAN , SO I HELPED THEM TO SET UP THE SOUND EQUIPMENT AND THE INSTRUMENTS PROPERLY . I am writing to you in order to get my money back , concerning the musical show : OVER THE RAINBOW . First of all : the actors who were mentioned in the advert are not the same as the ones on stage . Or special flying shoes , and maybe you would have a screen on your watch to watch your favourite soap operas . It could be any day but please let me know nearer the time . I recently was in London , staying in my sister 's home , and I went to see " Over the Rainbow " . Sorry , but none of this is professional , and I am going to make a demand exactly because you do n't have that , if you do n't give me my money back . But there was a little problem and it was that my parents did n't let me go to discos alone , so I had to go illegally , and I decided I would do it . To summarise the night , I am going steady with him , and he took me home . All the truth was then told , and now I am grounded for life . She definitely does n't know how to keep secrets . I want to know if I can take my cellular phone , too . To Mr. Smith , Circle Theatre 's manager We had prepared this quite a long time ago , this trip to the capital and saved a lot of money as well . When we saw your leaflet that mentioned " London 's newest and best musical show " , we were so enthusiastic and curious that we immediately bought the tickets . First of all , I think we should consider the way people are dressing at present to see how it 's going to be developed in the future . In 100 years , it 's possible that everyone will develop his own style using all the new materials like plastic , latex , everything possible , as a way to create their own clothes . Finally , life in France is crazy , this is the tradition . I am writing to complain because I was really disappointed by your musical show , which is " Over the Rainbow " , last week . First of all , the advertising shown us starring , which is Danny Brook and Tina Truelove . However , when I saw it , the musical starred completely different actors . I was really disappointed about it . Now then , how was this advertising , it was completely different . I am really disappointed with your musical . I am asking you for my money back , because I did n't enjoy your musical . I am writing a composition about " How modern technology has changed your daily life " . This is our subject . This modern technology gets closer between person to another person , get close between worldwide , so that , this modern technology changed our daily life so different . First of all I would like to travel only in July because I am going to work in August to earn money and after that ( from September to June ) I go to university as usual . About accommodation at Camp California , I would rather be in a tent than in a log cabin because in July the weather is really good and when I am in a tent I feel closer to nature . That show was n't what it was supposed to be and it is for that reason that I am writing to you . I am writing to ask for the refund of the £ 55 which I spent on the ticket for that miserable show . All the time there are more machines helping doctors and nurses with their difficult tasks . Going shopping is a good thing when you do n't know what else to do but it also has many disadvantages . I am writing to complain about the musical show at the Circle Theatre . By using a car I not only get an easy way to move around , but I also destroy the environment . For instance with the arrival of the Internet , the new digital television and the researchers in medicine , we are discovering how we can change our lives with only the press of a button , or look for something new by only thinking about it ... we realize that the new technology has just begun to advance , and it is likely in a few years we will be very advanced in this way . In my opinion the new technologies have more advantages than disadvantages . My reasons for saying this are that we can live better , we also have more ways of knowing now to live healthily and how to spend our free time . As you offer many activities it was hard to choose which ones I want to do , but I decided to take swimming and photography , because I am very good at swimming and because I am currently attending a photography course in Vienna . There was always a lot of security stuff around us to make sure everything was OK , because there really were thousands of people . Edi Vedder even talked to me about their programmes ! My golf teacher is my father and I 've only played in a practising centre , but my father and his friends say I have good talent for golf . Firstly , we should definitely put the news review lesson in , because we start every morning with that class and it is where we have a lot of discussion . I think , next we can film either the development class or the society class , because in my opinion they are the most interesting classes apart from the FCE class . Secondly time starts at 19:30 on the leaflet but it actually started at 20:15 . Finally it said we could visit your theatre restaurant after the show but it was closed because your excuse of being used at that moment . It said in the leaflet that this would be a perfect evening out , while it was not that at all . She was so frightened and sad that she had no energy . Furthermore , no discounts were available . You have a responsibility to the audiences . These things are very convenient ; on the other hand , there are lots of disadvantages . Unfortunately it is not so cheap . I was very surprised when I got the letter from you . And you need some information from me . I would love to try surfing because it is a very interesting sport and uses a lot of power and energy so now is the end of the letter . And I want to know more about the money . Can you give me more information about the money that I need to bring with me ? Now let 's start with shopping at the Beverley Centre . The Beverley Centre area is the place that the teenagers like to go shopping at the most . Because everyone has different thinking like Beverley Centre if you go there every day or every week for shopping you will get very bored because sometimes there are too many people everywhere , like in the restaurants and shops . Because all the smells in the market are awful - there is the smell of the meat and dirty water , black and smelly water , all over the market street . We hope to see you at the party and have a wonderful time together . It means swimming at the wonderful beaches , tasting the delicious food and having a wonderful time every day and every night with your friends . I am writing to complain about the musical , OVER THE RAINBOW , and also about the service . Secondly , in your advertisement I had read " Times 14.30 and 19.30 " . I look forward to hearing from you in the very near future , to offer me my money back . After that a being climbed out of the potato . I could not believe my ears . The being moved its hand forward and ..... Immediately after I heard , " And do n't forget your homework " . Moreover there will be a demonstration of modern make - up and new different , shaking hairstyles . I look forward to hearing from you in the near future . The wind was blowing and the heavy rain was drumming against our bedroom window . As a postman , Peter had to deliver letters around our little village . Recently , I had the opportunity to go to your Circle Theatre event . Unfortunately I never thought it could be so disappointing . The first problem happened at the box office because there were absolutely no discounts available . Because of all this , what was supposed to be one of my best nights turned out to be definitely one of the worst . Technology is always getting better . And it is responsible for many changes in my life , and I think I would n't be able to live without it anymore . Nowadays , with the Internet it has become easier to do school work and I also like to chat with other people or maybe read the latest news about my favourite football team . I also recently got a cellular phone and I do n't know how I lived so long without one - because it helps to solve problems so quickly , it 's really amazing . But for me , the best thing is definitely the microwave . There are some of the devices of modern technology that most help me but there are some others which are also very important for me . Lastly , can you please tell me how much money would be appropriate to take ? At the end of the concert , when it was after midnight and everyone had already left , the group came up to each of us ( who helped out ) and thanked us personally ! Now I have the opportunity so I shall inform you fully . The opportunity of being able to help in the concert knocked on my door by chance . She is a very nice person . I managed to scavenge an autograph for you as well , I will put it in the envelope . I am looking forward to receiving your answer and do n't forget that it is a surprise birthday party . In spite of that fact there are of course many families especially in small towns who eat lunch all together and then they solve their problem all together . And the difference is that those children are effective when they grow up and want to have a family , they do the same as their parents and have a happy family . Besides that the most important thing is that these children have an easy adolescence and they haven't got psychological problems and they are useful in society . To sum up , family life is the most important thing for children 's psychological world which helps them in their education , job and their marriage in future . I'M WRITING THIS LETTER BECAUSE TWO WEEKS AGO I WAS IN LONDON AND I WENT TO THE THEATRE TO SEE YOUR MUSICAL SHOW . AND THROUGH SEEING IT MY FAMILY HAD A VERY DISAPPOINTING EVENING AND SO DID I . YOU CAN READ BELOW MY POINT OF VIEW REGARDING THIS . FIRST OF ALL , WE COULDN'T SEE THE FAMOUS ACTOR " DANNY BROOK " BECAUSE HE WAS ILL . I THINK THAT THE MUSICAL SHOW SHOULD HAVE BEEN CANCELLED FOR THIS ALONE . NOWADAYS THE MAJORITY OF PEOPLE HAVE A COMPUTER IN THEIR HOME AND SOMETIMES WE ASK OURSELVES IF MODERN TECHNOLOGY WILL CHANGE OUR DAILY LIFE . About accommodation I would prefer a cabin , because I suffer from allergies , and I think a tent would not be very suitable for my health . I won last summer 's swimming competition in the school . Although I 'm not very good at surfing I like it , and I always practise on my holidays every year . I would like to know if it is necessary for me to bring some money , and if we will have time to visit the City . About the clothes , do I have to bring some winter clothes ? I 'm very grateful to hear from you . You asked me to tell you about my experience helping at the concert last week . I was asked to put all the chairs in order for the singer . This was only in the beginning . After that I needed to check all the microphones . After that all the singers arrived and I was in charge of greeting them and giving them something to drink . You can imagine how excited I was , especially because I always wanted some photographs of them and this was a special moment and I realised I had n't brought my camera . I was very sad . Actually this was because most things I saw were different from what the advertisement said . Unfortunately , Pat was n't very good at keeping secrets . One day , we went to a party , where she met some of the most popular girls in the school . Afterwards , when I saw her , she laughed at me and the next day all the school knew everything about me . I would like to have accommodation in a log cabin because I think it is more comfortable than a tent . So as we can see - shopping is not always enjoyable . About the accommodation , I would rather stay in a log cabin . For weeks I 'd been planning to go to the theatre with some close relatives and friends but the problems that we had made this perfect night a disaster for all of us . To begin with , in your advertisement you say that Danny Brooks will be starring in the show but instead there was a different actor , which made us very disappointed . Another thing that is said in the advertisement is that the evening show will start at 7:30 but there was a forty - five minute delay . The crowd got really upset and we were going to leave at the first chance we got . If you do n't do as I say , an article in the biggest newspaper will definitely change your mind . This is something that has troubled many people , especially those who work in the fashion industry . Fashion has made great progress since the early days . In the early 90s it was in fashion for women to wear only skirts . Nowadays women wear really short skirts , short t - shirts , short tops , and cut their hair short just like men . Boys pierce their bodies just like girls do and vice versa . People will wear all those clothes that expensive designers design but no one wears . I took the decision to write to you because I would like to complain about your theatre . I am writing to you because last night I expected to have a wonderful evening and unfortunately I was very disappointed . I and some friends decided to go to the theatre to see a musical show . We were so excited . We are on holiday and we decided to go . We had never been to a musical show and we thought that it was a new opportunity . I believe that some other actors maybe made the whole story more interesting . The first was very early , at 2:30 , and the other at 7:30 . We went at 7:30 . Finally the musical show started at 8:15 . We waited one hour . When the show finished , we went to the restaurant and it was closed because the people who work there do n't work if they do n't get their pay first . I and my friends would be obliged if you would give us back some of the money we paid . Humans have done many things through the years and made many things possible . Now we are in the 20th century in which people have been to the moon and discovered medicines for serious illnesses . I live in that century too . I believe that I am like that , I belong to that century . I believe modern technology has changed everyone , especially now with computers and all the other machines . First I want to talk about the computer . Before , I used some other ways to get information or play or communicate with people . I can spend so many hours because day by day I discover new things . Maybe it is not good because you do n't have the opportunity to meet people and talk face - to - face . Apart from computers we have the telephone , TV , and gyms . About the TV . I spend many hours in front of the TV . It helps me to relax and spend some hours alone . Exactly happened and with telephone . About the gyms , I like them very much . Those places have so many machines that you can easily lose weight and develop a wonderful body . Now , in conclusion we can see , or I can see , that maybe I am not a very sociable person but I can do whatever I want and take whatever I want only through technology . Firstly , I was disappointed , because the actor Danny Brook did not appear in the show . I am writing to complain about what it says in the advertisement is not true . 3 You recommended the restaurant after the show . It would be great if you considered returning my money as soon as possible . This is not normally what people wear every day . The 2nd F is ' fulfil ' wear ever you have in your mom 's cupboard . For example long baggy trousers , which cover your bright brick shoes . Wherever you go everyone would love you because of your trousers , which would clean away all the rubbish that is on the road . If I can choose my accommodation , I prefer staying in a tent . I prefer this accommodation because I think it 's easier to meet people when you stay in a tent , near them , than when you stay in a log cabin . TO ANSWER YOUR NEXT QUESTION , I WOULD RATHER STAY IN A LOG CABIN . THE THING IS , I HAVE A PHOBIA ABOUT INSECTS AND MY DOCTOR RECOMMENDED THAT I SHOULD SLEEP IN AN ENCLOSED AREA . I WOULD LIKE TO ASK YOU IF IT 'S NECESSARY TO TAKE MONEY , FOOD AND CLOTHES WITH ME . NOW THAT THE STUDENTS HAVE GATHERED TOGETHER THIS YEAR TO MAKE A VIDEO ABOUT THE BEST LESSONS AND ACTIVITIES THAT WE HAVE IN SCHOOL , EVERYTHING POSSIBLE OF COURSE WITH HELP OF TEACHER MS . WESTBROOK . IT WOULD BE MY SUGGESTION TO THE PRODUCERS OF THIS VIDEO THAT THEY SHOULD FOCUS ON OUR WRITING AND CULTURE LESSONS . FOR CULTURE LESSONS WE DON'T NEED TO GO SO FAR BACK IN TIME ; FOR THE LAST 60 YEARS OUR CULTURE HAS BEEN CHANGING ENORMOUSLY AND WE CAN TALK ABOUT COMPUTERS , WARS , CARS , WEAPONS , ETC .... ALTHOUGH LOTS OF PEOPLE DON'T BELIEVE IT , OUR SCHOOL HAS A SPORTING IMAGE . I THINK THE VIDEO WOULD ENCOURAGE STUDENTS TO DO SPORTS AND BE GOOD ATHELETES . I have received a letter from you saying that I have won the first prize in your competition and you need some information from me . I would like to travel in July because my holidays are only in that month and the weather in California is better then . They liked me so much and invited me to be responsible for the lights and sound . I told them that I will think about it but I believe I will accept the job . The most incredible part was the laser show . They were drawing a lot of things in the sky during the concert . I 'm sure that you are going to love it . About my accommodation at the camp , I would prefer to stay in a log cabin because it 's safer than being in a tent and because you sleep more comfortably . The activities that I would like to do are singing , because my friend told me that I 'm good at it , and the other activity that I would like to do is climbing because I think it is very exciting although I have never tried climbing , because there are no mountains in my city . I appreciate the opportunity that you are giving me and I 'm very grateful to you guys . Well on march 11th there was a group here in brazil called " Los Jagoares " , they sing pop music . And they are one of my favourites and as you know I have a cousin that works as an organizer for all the bands that would like to have a concert in Brazil and when my cousin knew that my favourite band was coming he called me and asked me if I would like to help them to install the speakers , microphones etc ... and I said , " Sure man . " Last Sunday my friends and I saw that advertisement about the play you were supposed to put on . We waited there for forty - five minutes for it to start ! We really got bored , like all the other people there . And then delate forty - five minutes to present the show . That was very disappointing . My friends and I demand our money back very soon . And please do not be very surprised if you receive more letters about this . Pat , my sister and I felt very responsible . I did n't believe him at first . But I could see that his face was happy and he was n't telling lies . I could n't believe it . I had not seen him for five years . How are you ? I 'm not so well , and that 's the reason why I 'm writing this letter to you . Unfortunately your advertisement said that the show starts at 19:30 but it started 45 minutes later . Children are not studying as much as they ought to , because they are watching TV , talking on the phone or even playing computer games . This is also another cause of heart attacks . Your advertisement for the musical Over the rainbow said it was London 's newest and best musical show . I agree with that because it is a wonderful show but it said that Danny Brook would be starring in it . In the advertisement it also said you could visit your restaurant after the show , and that is what I did , but when I got there it was shut for no reason . Pat could n't resist and told her brother Jacob . He was quite shocked about the news because he misunderstood . There , Jacob approaches him slowly and tells him . It was all a misunderstanding . I hope all my wishes are realisable . I can not bear it when somebody says something and then does just the opposite . It must be our decision whether to stay and eat there , or not . To cut a long story short , because of everything I have said above , the correct thing for me to do is to ask for my money back , and for you it is just to give it back to me because of all the trouble and disappointment you have made me suffer . HOW HAS TECHNOLOGY CHANGED OUR DAILY LIVES ? In our grandparents ' time life was so different that we can not believe that this huge change to our daily life happened in only one hundred years or less . Furthermore , as we all know , daily life nowadays is quite simple and an example of this is that instead of buying a piece of ice to cool drinks ( as our grandparents used to do ) we not only have a refrigerator but also a freezer in case you want it faster and colder . Strange as it seems , we now have all types of machine or specialised technology to make our daily life more comfortable and less stressful . I am writing to thank you for notifying me about the competition and I would be very grateful to give to you the information that was requested in your letter . About the Accommodation , I would like you to take careful consideration of the fact that I am asthmatic , so I would appreciate it if you could reserve a bed in a log cabin . If you have this opportunity one day , you had better buy the ticket to the concert or just watch it on TV but never do something like this just to get a free pass . If this had been my only disappointment nothing would have happened , but I had to wait till quarter past eight to watch the show , instead of it beginning at half past seven as you had written in your advertisement . As a conclusion to that horrible evening I decided to visit your theatre restaurant once the show had finished , but what a surprise when I found it closed . It consisted in having to memorise a whole book of 250 pages in order to pass a final exam . On the exam day everybody answered every question correctly . Secondly , although the log cabins appeal to me , I would prefer a tent because I think it is more comfortable and attractive . Nowadays most people are attracted to shopping centers , which are not always enjoyable . Fourthly , that product is too expensive for you and the last problem is you buy too many things but you have not got your own car so you have to carry big boxes by yourself . First of all , the show was supposed to start at 19.30 , but it started at 20.15 . I am looking forward to hearing from you . Nowadays , there are more and more people who want to become designers and the competition is increasing . I always wanted to go and see the USA ! In my opinion , staying in tents is more exciting than staying in log cabins . I 'm very happy about this because I spent most of my school life playing sports , especially basketball . They mixed up our traditional music and pop music . In reply to your letter received on the 13th of June , I first would like to say that it is a great pleasure for me to have been chosen . In fact there would be only one possibility in July because I will finish my exams at the end of that month and begin vocational training the 1st of August . Then , during the concert , I helped to serve the beers at the bar . I met a lot of interesting people while I was serving drinks . Everything was very interesting , but what I particularly liked about the experience was the human relations . I met a lot of different people and they all taught me something new about behaviour or compassion . I prefer to stay in a tent so I go camping every summer and am used to sleeping in tents . I 'm very good at swimming as I have been a member of various swimming clubs since I was 6 and I chose photography because I have a new camera and want somebody to teach me how to use it . Introduction : To support an idea to make a short video about daily life at our school I have spent some time discussing it with other students , and observing and analysing an average day in our school and have come up with some suggestions . I think it is a good idea to include a record of one of our big events such as the annual sports tournament or welcoming evening for new students . Conclusion : To sum up the above I 'd like to suggest not filming anything longer than 1 or 2 minutes and having a nice mixture of places , faces and events . First of all , on the ticket it says that the actor was Danny Brook and really he was not . Then , on the ticket it says that the show starts at 19.30 and , I do n't know why , it started at 20:15 , very impolite on your part , and , also , you wasted my time . The other thing is that on the ticket it appears that discounts were available but when I asked about it , there were none . I thought you were a good theatre , where people can go and have a good evening alone or with somebody else , but really I am very disappointed and I want to ask for my money back . I 'll never return because of the bad service you offer . Truly . Considering my whole life I can say that modern technology has changed my daily life in many ways . It has , in some way , separated the family , making all of us worried about our own things . We all work separately , developing individually and forgetting we have to all talk together to know about each other 's life . First of all , we went to the theatre to pick up our tickets . We sat in our seats and waited for the show but it did n't start on time , it started at 20.15 which was a ridiculous time . They are just wasting time on it . Both of them I am not as good as you expect , but recently I have been interested in them . However , we decided to have the job , because of good money . However , it was a great job . I haven't hade such a great experience before . I was very disappointed to find out that most of the things said in the advertisement for the show were not true . I think it will be a very good experience for me . I 'm really excited about it . I 'd love to come earlier , but I really ca n't because this job is very important to me , and I 'll need it as work experience for my further studies at University . I would also appreciate it if you would offer me accommodation in a log cabin , because of some health problems that I have , which do not allow me to sleep outside on the ground , and to be honest with you , I never liked camping . At the end I feel very tired and angry , because I have spent the whole morning doing nothing , except for looking at them trying on different clothes , and that 's not enjoyable at all , in fact it 's really annoying . To let you arrange the details of your programme , I 'm going to give you my answers . Firstly , I 'd like to travel in July because I 've already registered on another summer course which starts at the end of July . About accommodation , I prefer tents to log cabins . Actually I 've been in an amateur photographer 's organization for 3 years . At that time , I took the course which covered all the 4 kinds of strokes . And please tell me how much money I am supposed to need excluding transport and accommodation . Concerning the accommodation , I prefer to stay in log cabins , finding them much more comfortable than tents ! Last week during my holiday in London , I found your advertisement in my newspaper . You stated in your advertisement that he would come on stage , but instead of him someone else turned up . Luckily I could keep my secret for a couple of days but then it became urgent and I needed someone to talk to . I 'm looking forward to learning how to take care of myself in dangerous situations , such as getting lost in a forest , and I think staying in a tent will be very useful for that . This is something I will never ever forget . I could n't believe that I had met that superstar who was dancing in front of a crowded soccer stadium . Unfortunately my feelings are rather bad . The advertisement looked pretty interesting and I decided to go to the theatre to watch this musical show . The ' theatre ' did not even apologize for this change . Despite my being a student and the advertisement saying that discounts were available , I was refused a half - price ticket , and the explanation ' why ' was n't sufficient . Unfortunately it was not , which made me even angrier . Saturday morning I went to the driving centre for my first lesson . The instructor opened the car door and asked me to sit in the driver 's seat . Then I drove very slowly very often crossing the white line on the road . I looked in the mirror and I saw how my friends were laughing . Pat apologized to me for not keeping my secrets . An admirer I am writing to inform you about the differences between your advertisement and the real show . Then , as we were told that the show was beginning , the second shock of the evening faced us . Maria spent all day thinking about who told them that . There were two possibilities : one , her best friend Becca , or her sister Pat . Obviously , Pat first denied it , but then she accepted that she was wrong , and apologised to Maria . After that Pat never again talked about anyone without his or her permission . It is your decision . I would like to send you some further information which you need . I am grateful that I have the chance to choose the accommodation . I would rather stay in a tent if it 's not a problem for you . I would like to experience a real camp again . I would like to thank you once again for this great opportunity . We would like to believe that shopping is the most wonderful part of our life . When we finally do this , we can not be comfortable because of the crowds . The answer is that we choose the same street ( usually the most popular ) and the same time as six hundred other people . I am writing to you to give you my opinion about your festival . To conclude , I was very happy to have a ticket for all events at a reasonable price , because for someone who does not especially like art , it was very attractive . I am writing to you to answer your question about school rules and what I am ( and I am not ) allowed to do at home . In my home , the only things I am not allowed to do are things which might disturb my family . For example , putting the music on too loud when my sister is working . I believe that it was a great idea to organise such a festival , connected with art and culture . What is more , there was a wide variety of music . Although the artists were supposed to be from all countries , there were only six nationalities . However I was really surprised that the entrance fee was so low . I hope that this will clarify your questions and doubts . I 'm looking forward to hearing from you . I am writing this letter because I am very disappointed with your musical show . When we arrived , there were a lot of people , the place was beautiful , all seemed perfect . After that they changed the principal actor , the one that replaced him was very bad , that made us really angry . How has modern technology changed my daily life ? I think that technology has changed my life and everybody 's life in many ways . Nowadays , technology is everywhere , all over your house , your school , office or any place you can be in a city . This technology has helped to make my life easier and more exciting , but like everything it has had some negative aspects . This technology has helped in many fields , like medicine , entertainment , work and other things , so it has obviously changed the lives of many people . The bad consequences that this could have are unimportant , in comparison with all the good things it has done , so let 's not focus on the negative aspects of it . This is a new era , an era for a new type of people , the future people Secondly the time on the leaflet is totally wrong . Thirdly the ticket was not discount and after the show I visited the theatre restaurant but it was closed because the show started late . Finally last night was not a perfect evening . But when I hear the word future , I have an image of metallic colours so that in my imagination they are wearing metallic or brightly coloured clothes . I think people will wear clothes which are metallic or bright colourful colour with mixture of history and future fashion style in the future . Firstly , I must say that I 'll be able to have two weeks free only in July , since I have started work and am entitled to have a holiday only in July . Despite my appreciation of all kinds of sports and activities , I 've chosen my favourite ones , which are swimming and tennis . Another thing I dislike about shopping is some annoying shop assistants try to sell any product to the " victim " coming through the door . Our department , which is the sales department , have to make good sales results before the end of June because of the financial month . About accommodation , I prefer to stay in log cabins because I do n't like to stay in tents which are uncomfortable for me . In Japan , I often play Golf but as you know Japanese weather conditions are not good enough for enjoying playing Golf , but California has good weather , which means sunshine every day , hopefully . I am interested in playing tennis very much . Finally , I have some questions . So , my temporary job was sound engineer but I was not main engineer . When I was a university student , I studied sound effects , but I had n't used effect equipment my whole life because our school does n't have it . I used this equipment during the concert , but I was so complicated system . They taught me specially . Take care of yourself . Hello ! I am very pleased that I have won the first prize in your competition and I want to tell you that it would be better for me to go to your Camp in July because that month I usually have a rest and now I am thinking about it . To answer our first question about where I would prefer to sleep , I prefer tents because they are closer to nature and I like sleeping in sleeping bags ( = BV bags ) . Now let me tell you about my sports preferences . Yours sincerely In our school we have a system of " double lessons " . It means that every day except Sunday we have four lessons and each of the lessons lasts for an hour and a half and it means a " double lesson " . I think that is more convenient than seven lessons every day and each of the lessons lasts forty - five minutes . It is convenient , I mean " double " lessons , because you have more time to understand the material which is given out and because you have to prepare only four subjects for " tomorrow " and it is fewer then seven subjects . On Tuesday we have these lessons : English , Maths , Economics and Physics . Not only these subjects are studied by us , but also Latin , Russian , Ukrainian , Biology and Physical training , but as we study them we understand that they are not so important as our main subjects . I have always been interested in arts and festivals . It was great that you organised the Arts Festival in this city , because people really need this kind of social activity here . I spent two days at the International Arts Festival with some of my friends and I must say we were really delighted , it was a great idea to do that in London . I hope you will consider my opinions and that my suggestions will be helpful for next year . When I grow up I 'll change all the rules in my life and I 'll make my own rules which are not going to be too strict . ( It is a graduate engineering school where we are studying mechanics and energetics . ) That is why we have to single out which lessons and other activities should be filmed . Secondly , we should interview the teacher of heat transfer since his lessons are really breathtaking . On the other hand , we should be interested in the other activities such as sports , which could appeal to more students in our school . To make matters worse , we have never had the opportunity to see Danny Brook because , instead , there was a different actor ! You wrote so persuasively that it would be our " Perfect Evening Out " ... I hope you will agree and share my disappointment . Sincerely yours , In fact , winters will be rare or will maybe even disappear . The ice will melt , the weather will be warmer . People wo n't wear warm clothes anymore and they will certainly be synthetic , because there wo n't be enough places to cultivate cotton and to let sheep graze . Our feelings will be transmitted electronically through our clothes to other people . " The Internet on our body " .. I 'm sure that is not impossible ! I am writing to you with a request for a change in the schedule of our trip to London . Unfortunately I have to suggest a change for the programme for Tuesday the 14th of March . All of the students - including myself - think of this as a great opportunity that it would be a pity to miss , especially when students can enter for free . I 've always wanted to taste the freedom that birds have , always been interested in listening to my blood pumping in my veins , full of adrenaline , to let myself free , to shake from excitement . The home of the future will be very impersonal and the atmosphere will be cold and very essential . I think this tendency will become more common in the future . What is important is not their fashion but their knowledge , attitude to everything including fashion . I apologise For any inconvenience and I am waiting for your reply . Last week I received your letter in which you told me that I won first prize . I am writing in response to it . Please , when you receive this letter give me a call so we can arrange everything . We are going to make a video about daily life at school . The following classes are the ones I recommend filming . ENGLISH : the classroom is beautiful , and on the same day we do a lot of different activities , so it wo n't be boring watching it because we can have a great time there . Those three classes are my choices . I hope we can do them and make a very good video about our school . Finally , I would like to ask you for £ 20 back as I was not satisfied with your services . But Pat could not resist the temptation to call the police . I am not used to sleeping in a tent and I think it might ruin my holiday . I hope it 's possible to sleep in a log cabin but if it 's not , you can also put me in a tent . Surfing is my passion . I live near a beach and whenever I have the time I grab my board and go surfing . I am really looking forward to this holiday . The real thing was that I had to look after them because without me they would have been lost . The thing I really liked was helping the artists and talking to them . I really got to know them after the concert . Maybe next time you can come with me . That would be a lot of fun . Finally , I did n't understand why you pushed people to visit your restaurant if you do n't open it after the show ! If I want to discuss something with friends or order a Pizza , I can do it as easily as I want , when I want . A good example is the cellular phone . I can contact my family without any problem , I can inform my company if I have an accident in my car . To sum up , although I think they ought to abandon their lives partly when they enter the world of fame , they should take some action against journalists in order to protect their human rights . An actor was changed and the public were not informed . Finally , the theatre restaurant was closed for the holiday ! I think modern technology is very important in my life . I also think I am lucky , because I live in a period of technological boom . In the last fifty years human technologies have grown exponentially . First the conquest of space , then computers , and now the new biotechnologies have changed , and are changing , the face of the world . In the present day , for example , a lot of people have a personal computer at home , and a very large proportion of those also have the Internet , the new frontier of computer evolution . If I look back to the past I find that the computer is following the same route as television , the telephone and a lot of other things that now the largest part of the population have at home . So , in my opinion , new technology has changed , is changing and will change my daily life ; I hope that afterwards my life will be better . The whole class and I would like to thank you for the good programme which you have organised for our trip to London . The reason why I 'm writing to you is the class and I have seen an advertisement for the London Fashion and Leisure Show on Tuesday , March 14 from 10.00 am - 7.00 p.m. We all are interested in fashion and hairstyles and it is a great opportunity for us because students do not have to pay and we will know what we can buy on our shopping tour . I would like to suggest to you how the programme could be changed . Instead of a shopping tour on Tuesday afternoon , we could go to the show and do the shopping on Wednesday afternoon in our free time . What do you think about this suggestion ? I hope you will understand this kind of matter . The class and I are looking forward to hearing from you . That means for example , while you are sitting in the office you are able to control your home with the computer . You can open and close the windows and switch the light on and off . Your freezer tells you when you have to buy some milk , eggs or cheese . Or , without leaving the office , you are able to heat the water for a hot bath . So in fact people 's homes will become more convenient and more comfortable . I think also housewives will receive more help with a robot in the home . As representative of my class may I kindly ask you to partially change your plan for our visit to London ? It would be beautiful if you would agree to change your plan . It happened on a very lovely day in summer . I knew I could n't swim so I realized it might be dangerous for me as well . The most important thing was a little boy of about ten years old , who was in the water without his parents and could n't swim . It was difficult for me because I am afraid of water . He was exhausted and could n't breathe . I am a good swimmer and I have some experience in photography . However , I have a lot to learn . Actually , the price of the weekend ticket was excellent ! I , myself , was expecting a more expensive ticket as there were so many magnificent events . Well , I hope you found my suggestions reasonable as I deeply congratulate you on the great success of the festival . I would like to stay in a log cabin as I have an allergy to grass . If you have to go shopping again , because the fridge is empty or you need some new clothes , a lot of time , patience and strength are needed . So even if it 's nice to have food or new clothes at home , without patience , time and strength you had better stay at home or try to find the most convenient time for shopping . 2 December , 2000 I am writing to suggest a few things that could be changed or added to next year 's International Arts Festival , which in my opinion has been a great idea . Although I read that stars and artists came from around the world , I realised that they only came from six countries . All my family liked the films and the plays that there were very much , but I personally think that it would be better to add more because there were only five plays and seven films . The rest of the activities were very interesting for us , we learnt a lot of things and we met a lot of interesting people , and all of this without being expensive . I think that the ticket was excellent for us because of its price . You know that I 'm studying in a difficult school , and as you can imagine you have to work hard and you have to do homework every day . I have friends that are studying in other schools and they are very happy with their freedom . It is true , they deserve to have a private life without journalists following them all the time , however this publicity brings them money , and a comfortable life . They can travel around the world , buy everything , it is a good life , but at the same time , they must be very good people , because " Fame " is just for a short time , nothing lasts forever in this world . I would not really like to be a famous person , because you are not really yourself , and for me that is the most important thing . The first thing that disappointed me was the star . but the restaurant was closed because the show started at 20:15 and finished at 00.15 and the restaurant was open until 00.00 . After all these problems I became disappointed . If you could give me some of my money back that would be a great apology for the waste of time and my disappointment . It was about Marine , who was our close friend . Marine 's real father wanted her back but the other couple did n't want to give her back because they loved Marine so much . The couple could n't tell the truth to Marine because they were afraid of losing her . I was grateful to hear I have won first prize in the competition . That 's why I 'd like to feel adventurous . And according to the interviews , the most interesting class is the " upper intermediate " class . The point of " upper intermediate class " . Yesterday morning , I went to the toilet . I overheard two people talking about my son . I felt sorry for myself and I burst into tears . I quickly got out of the toilet . " Dear " manager of the Circle theatre , I was getting angry , but , finally , the show started and I became quieter . In the end , I asked for I money back ( and payment for my horrible night ) : do you think anybody will give me something back ? ! Science and technology characterize our modern society . Walking on a city street , it 's difficult to find parks or " green " places with trees and clean air : actually pollution , traffic and noise are the main problems of our society . I know I 'm a " daughter of this technological world " and unluckily I think I could n't live without it : it 's rather strange that today there 's still somebody without a phone , dishwasher , TV ... But , sometimes I ask myself if the " ancient world " , without science , technological innovations and industries was more authentic than our one . It sounds very promising . I could feel every movement which was caused by clouds or wind . I 'm pleased to win the first prize in your competition - two weeks at Camp California in the USA . I 'd like a log cabin for my accommodation , because it 's safer and cleaner than a tent and I would n't share it with anyone . We can analyze when shopping is enjoyable , and when it is not . Buying coffins and graveyard plots to bury relatives is not as enjoyable as buying clothes . The rules in Poland are quite similar to those described in your letter . I 'm a student from St. Petersburg , and I 'm studying in a drama academy . My friend & came to London for an excursion . Danny Brook is my favourite actor & to see him was my dream since my childhood ! It was a surprise when we were told there would be another actor . Also , we expected to get a discount as students , but international students cards are not valid in your theatre ( that is very strange - even your advertisement has information about discounts ) . So we were late for our supper in the hotel and the theatre restaurant was also closed without any reasons given . In the advertisement it said , , your perfect evening out ! " , but it was n't . I 'm waiting for your answer and hope I can get my money back ! I would call our days days of great technological progress . Industrial wheel going faster and faster . They have more different functions and forms . It is very interesting for me how new works , their possibilities . My job , I think is a good way to get a profession in the future . And I hope to find a really good job in a good company . More and more people buy mobile phones , because they are very useful , you get a lot of possibilities like : using the Internet , buying different goods , booking tickets , controlling your home technic and many others . Mobile communication is a key to success in all professions that we have ! And I think that I made the right choice of profession - it is the perfect combination : a very progressive form of modern technology , and the most important thing - it is extremely interesting to me ! Regarding the accommodation at the camp , I would prefer the tents , because it is something different which you do n't do every day ! Finally I 've got a question : What clothes must I bring with me and how much money ? yours faithfully , Another thing that makes you furious is when you see a great shirt in a shop and somebody else takes it away or buys it before you can react . At that time I was lucky and also , I would like to recommend it to other friends . But people would like to change the lifestyle in their house because there are n't convenient appliances in their houses yet . I 'm writing to you to explain the problem that I have had in your theatre . I recently had a week 's holiday in London , and , during my stay , I went to your theatre to see " Over the Rainbow " because I had seen an advertisement for this show and I was really interested in seeing it for many reasons , one of the reasons is that I love the star , Danny Brook . Secondly , in your advertisement the time of the show was 19:30 and in reality the show started at 20:15 and the discount was not available . I think you can do a lot more things now than before with technology . best regards . There are many ways to earn money , especially in a big city , like the one where we are studying all year around . To be more technical and specific , we need a very flexible job , which gives us independence and allows us to stop working when we are not able to , for example during the exams period . As a result I asked my acquaintance to come with me to the show . By the time he got out of the building , the cops were everywhere but as long as Mallory is alive , he wo n't be arrested , with his unpredictable mind . Secondly , we had to wait until 8:00 pm before being able to take a seat and the show finally began at 8:15 ! At that time , I used to buy a lottery ticket once a week and I sometimes won small amounts . One day , while I was checking my weekly ticket , I found out that I had five numbers out of six so that I would surely get a substantial amount of money . I had to wait ten days before the lottery head office would give me the cheque and one week before I could learn how much I had won . But soon everyone in the class was looking at me smilingly and I found out that I had many unsuspected friends ... Not long after , they were asking me to buy a coffee or lunch for them ; some proposed going shopping , others going to the cinema and a restaurant . Finally the end of the week came and I went to the lottery office to find out the amount I had won . With this letter I would like to ask you if you would change it because we saw in the London Advertiser an advertisement for the London Fashion and Leisure Show . The show is on Tuesday , March 14th , from 10.00 - 19.00 in the Central Exhibition Hall . Yours sincerely , I knew that my brother was at home , although I did n't know where he was . In fact when I do n't feel very happy I decide to go shopping to try to cheer myself up . It is at this moment when really I realise I am getting fat and it is a horrible feeling . Another thing is my accommodation . I prefer to have log cabins because it 's easiest for me . And how much money I should take ? If you have children , you will know very well that when you are busy doing something and the children see something they want to have , they will do everything they can do to make you buy it for them , sometimes they even cry or shout at you and it is really annoying . Anyway , in families they usually have this problem that when they buy a new one , suddenly they have a problem about where the old one is going to be and that is the beginning of an argument between mother and father or parents and children . Eventually I like shopping too and I believe everybody likes shopping , but before you buy something think first and you will not have any problems after that and the most important thing is make sure you have enough money to survive . Secondly , my choice is the accommodation in tents . I think it could be more interesting . I could enjoy my time with other people playing , eating and talking outside . In my opinion if I choose the log cabin it will be like being at home . My other choice is painting . I have been painting since I was ten years old . I used to go to special classes and I do n't mind if you need me to help in the class . The most popular " sport " that everyone does is obviously shopping . Some people think that going shopping can keep you away from depression . You can enjoy your time spending all the money you have , buying clothes , jewellery , furniture , etc . But other people do n't think like this . For example , there is a case of a woman who was shopping with her little daughter and without intention the girl got lost . The mother was shocked . She did n't know how to look for her because all the shops and streets were full of people going in and out the places . It was a nightmare but fortunately the police found her . Can you imagine being in Japan or China and having to go to the shops ? I do n't think that I 'd enjoy it , all the people kicking you , you ca n't walk properly or buy anything . And also there are a lot of cases which show how people can be in shops . I mean that some people can fight to get something . Dear MANAGER of the theatre So try to imagine my situation . I had paid a lot of money and I did n't see a good show . I am really disappointed . Unfortunately , Pat was n't very good at keeping secrets . Many years ago , more or less seventy years ago a young man , with an excellent capacity for thinking and inventing things , started building a big thing called a " time machine " . The only thing Pat had to do was to choose a date , one he liked , and to press the starter button , and you know what ? He did it ! I am very happy to hear from you that I have won first prize in your competition - two weeks at Camp California in the U.S.A. and I am writing to tell you my information . Firstly , I will be able to travel only in July because I go to university and I normally spend most of the time working . to do . and I have holiday only in July . And I choose photography and tennis from the activities list . I am taking photography lessons at university and I started tennis when I was 10 so I am good at both of them . From the 10 options that I have to choose from I will choose two , climbing , which I have been doing for three years because I know it by heart , and swimming which I have also been doing every day as part of my daily routine in Portugal . I hope that coming after July wo n't disturb Camp California 's plans for me . A survey has been done , and the issue is which subjects ( lessons ) and activities the students think are the most enjoyable . Someone says it is maths - practical , useful - but the majority say it is boring , unless you 're choosing a job which demands all your maths knowledge such as accounting , otherwise you can use a calculator or a computer . The majority have chosen History , which means a big journey around the world , either at the Roman life style , or in the middle ages , when a revolution happened with deaps and new lands . At all schools there is a similar daily life which must be filmed . This is an important part of our life , which is full of emotions in development . How has modern technology changed my daily life ? Sometimes , I think I am a computer addict because whenever I come back home , my hand goes to the computer switch , automatically , even though I do n't want to use the computer . I received a paper in which I was told about a play you are putting on and of the advantages I would get if I went to see it . I wish that had never happened . I am really disappointed , and I want to have my money back . First of all , on the sheet I received , it says that DANNY BROOK was one of the actors . That is not true , because instead of him , there was another actor , and I do n't know what his name is . You must understand that you promised me I 'd have a good evening and I really did n't . I write this letter to tell you about the programme that starts tomorrow , about that excellent book I have told you to read . This excellent book tells the story of a man of 25 years that has a little boy , his son , that lives in a very bad condition . The book is very easy to read , but if you do n't have time I recommend listening to the programme . Also , that they will invite a psychologist , the author of the book and maybe the president will talk so I recommend you listen to it . I might say that I am really good at swimming and sailing because I have been doing these kinds of activities for five years and I have had a really good training in water sports . As you know , I 'd never been to any activities as a volunteer before . The concert tickets were very expensive and I 'd seen an advertisement on TV . It said , " Be a volunteer at our concert and get a free ticket . " We have bought some snacks to eat and three students will sing for him , too . I 've just received your letter , and I must say that I am so surprised . I was n't expecting to win it . I am still studying at the moment I will finish at the end of June so I will be able to leave at the beginning of July . Regarding the accommodation , I would prefer a log cabin instead of a tent so as to get a better rest . I have a problem sleeping and a log cabin will be more peaceful than a tent . It 's quite difficult for me because there are 4 of them I like a lot , which are climbing , tennis , surfing and photography , but if I have to make a choice , I choose climbing and surfing . I 'm rather experienced at climbing . I have done it once a month since I was 17 . But on the other hand , I have never been surfing . I am a complete beginner but I am dying to do it . A good idea to start will be an alarm clock ringing close to his bed , because that 's the way everyone gets up in the morning ( apart from the people who do n't do anything ) . After this introduction , it will be time to show some of the activities everyone can do at the school , such as lessons or others like the library , our protagonist having a coffee with some colleagues in the cafe bar , the reception service . First of all , the most favourable time for me to travel is July , because I am in the final year of University , so I have to attend classes for a thesis almost throughout the year apart from July , when I can take a relatively long summer holiday . Secondly , I would prefer to stay in log cabins to staying in tents , since I have had a horrible experience being attacked by a swarm of midges , when I camped out . This is based on a questionnaire conducted in the school and our English department 's investigation . According to statistics based on the questionnaire , the majority of students feel the most enthusiasm for an English class . In fact , I visited some English classes to find out that most students tried to answer questions and speak to native teachers . Consequently , it might be a good idea to film the English class so that the vibrant and active atmosphere may be able to be filmed . The girls ' football team is also famous for its reputation of keenness on practice . Actually , I can work with it in my office and visit some website using the new technologies such as the Internet . The new inventions have transformed my life , so it is easier with modern technology ( the mobile , the car , the plane , the coach , the train , the medical advances and domestic appliances ) , they have created more comfort and pleasure . In fact , I expect a full refund plus compensation for the dissatisfaction suffered . I trust you will give immediate attention to this letter and I look forward to receiving a satisfactory response by return of post within a week . When we think about clothes in the future , we should think about the environment first . Of course , technology will have developed enough for us to invent new material for those kinds of clothes . So we do n't have to worry about how heavy they will be . Firstly , I expected Danny Brook and Tina Truelove but I felt very angry when I saw different actors . What is more , you advertised there were discounts available but there were not . You said that the musical show started at 19.30 but recently it began at 20.15 . When I was 16 years old I fell in love with the most handsome boy in our school . Everybody started to laugh at me . I 'm sorry to tell you that I 'm really disappointed with your advertisement for the musical show at the Circle Theatre . And because of these circumstances , I would like to have a part of my money back . Faithfully , He said , ' Sure , no problem ' . As to accommodation I would like to choose a tent because I am used to travelling with my sleeping bag and my tent all over Europe . I am very good at basketball , and even if I am not a tall boy , I am a good player and I play in a local team . I connected wires , I carried loudspeakers , and so on . Towards the end of the concert I handed a bottle of wine to Poolo Conte . As you know he 's my favourite singer . Secondly , the two activities which I 'd like to do during the camp are sailing and surfing . When you go to a shop it is difficult to find what you are looking for without the help of the shop assistant . After that you have to wait a long time in the queue to pay and many times it is n't possible to pay with your credit card and you do n't have any money in cash . You said there would be stars such as Danny Brook and Tina Truelove , whose music is my favourite , but the musicians were actually some other people whose names I had never heard of . When they finished singing the last song I was surprised when they called me up on the stage and said thank you to me in front of hundreds of people . I am not good at either of them . I haven't written a letter to you for ages . I did n't need to pay an entrance fee because I was working there . Plus , I got an autograph from a popular singer . I 'll give you the autograph as a present . It is valuable of keeping on your souvenir . I would offer you one suggestion that concerns the classical concerts . For me , it 's very stressful and I usually run a lot to do it . In response to your letter that I received last Saturday I am writing to answer your questions . I usually sing in my spare time and my friends love it when I sing and regarding swimming I was champion last year in my city . Are tablets necessary ( for headache , insects ) ? It is wonderful how technology makes things so easy . That will be great because teachers are part of our life and they have to receive all our attention and friendship because if it was n't for them we would never grow and learn how to live our lives more confidently and with lots of good experiences that we will never forget . The reasonably - priced package , including tickets and accommodation , well suited my personal situation : comfortable rooms that are easy to reach and booked tickets can help you if you decide at the last minute . - improve your kindness and ask for work in restaurants or bars . It is a good training period for real life too ( being patient with demanding people is required ) . - check your wallet and if you have enough money ( a very small amount ) you can arrange a trip to reach countries like Chile , Cuba , Zambia , and Morocco where people ( poorer than you ) will offer low wages for ôsmallö jobs .. you might enjoy your summer holidays and ôfind yourselfö I am keen on singing and I have won several singing competitions at school . When I first entered the concert hall , I was given a pass for working here . The programme is very exciting and interesting , especially the river trip to Greenwich . This is the arrangement that we founded with the other students and everyone agreed . We had n't enough money to buy food or new clothes and the worst was that my youngest brother was terribly ill , and without money we could n't take him to a doctor . I want to travel only in July because now I 'm studying at National Academy of Defense and I do n't have time for anything else . I prefer that because I will travel with my wife and she always prefers that kind of accommodation . I tell you in secret that I do n't know why she does that . I like to catch fish too . My personal best is 27.66 for fifty meters . I would like to ask you about the weather in California in July . Are there any discotheques or something ? I would like to know if my wife can come with me , because without her I ca n't be there . Everybody gets up at six , and the first thing they do is run for about two thousand five hundred metres . Then they take a shower and everybody goes for breakfast . Two times a week I have W - F. This is very important , because every soldier should be strong . After this competition there was mathematics , and two hours of biology . I do n't like biology , so I slept on the desk in a classroom . I think that competitions should be filmed because my school is a kind of sports school . On video there should be how we get up . Houe we run , how we eat breakfast . Then you should show how our school looks from outside . There should be an interview with students and with professors . Daily life at my school is not only school and teachers and mathematics problems . We must know how to use a gun , or how to drive a tank . And , finally , right before the start they announced that Danny Brook would not be in the show that evening . After the show I was not surprised at all to learn that the theatre restaurant was closed for redecoration . Undoubtedly , modern technology has changed my daily life . And the best word I can use to describe all the changes is " drastic " . Among the greatest inventions of man I come across daily are the telephone , computer and automobile . The computer , probably the must versatile invention , allows me to get access to huge informational sources through the Internet , to do shopping without leaving my house , to do my work more effectively and quickly . People used to wear very different things from the clothes we wear now , we would n't even say that they are ' clothes ' . The things that people wear are changing all the time , everyone tries to be different in public and very different sorts of clothes are being created . I believe they will wear very different things . By contrast , in the future , I guess we would rather go back to the ancient time , owing to have natural life style . We will be unwilling to give housework away . They are more comfortable and really match with the environment . Although this is a new experience , I would prefer climbing and photography . The concert was a big success , a lot of excitement . The students mentioned that it would be very interesting to show the English lesson because some foreign students will probably join our college next year and it is the best way for them to find out about our English course . Additionally , the advertisement said I could visit the theatre restaurant after the show . Unfortunately , Pat was n't very good at keeping secrets . I told Pat everything even my secrets when we were still friendly . However , we are not friends anymore because of a secret in the past . I told Pat that my father and mother were going to separate . Maybe it was the wrong decision to tell her . She began to share that secret with everybody , including the teachers . Finally , I decided to go to another school and I will not tell any secret to anyone . To begin with , in your letter you asked me when I would like to travel . Thanking you in advance for your help , I look forward to hearing from you . Also you can compare the different cultures of all the countries and sometimes there are planned visits to historical places . In this lesson you can learn how to speak , write and read this foreign language with teachers that are well prepared . theatre To sum up , it is a big school where you have a lot of interesting lessons and some optional activities to do in your free time . Regarding accommodation at Camp California , I would prefer to stay in a log cabin because I think it is safer than a tent . Now , my English teacher has asked me to explain what I think . In my opinion , nowadays , shopping is very easy and at the same time very hard . Amazingly , doctors tell people to look after their bodies during Christmas time : shopping can cause you a large variety of undesirable pains . About the activities that I can do at the camp , I chose to play Basketball , which is my favourite sport , because I want to do some exercise while I am on vacation . I also chose photography because it is one of my hobbies . I 'm writing you a letter , because you are the organiser of an International Arts Festival . There is only one bad thing , that this festival was too short . I 've just received this letter from you , so I 'm writing to you . On Saturday and Sunday we do n't have lessons , but it does n't seem that we do n't have work . I do n't have trouble with my education . My friends and teachers are nice and friendly , but there is one thing I 'd like to change in my school . I 'd like to have more tests during the whole course , not only at the end , because it 's making me very lazy . Apart from that , the show was delayed forty - five minutes , consequently , everybody there lost control and became angry . Finally I would like to inform you that I have never had such an unpleasant evening in my whole life . The worst was that he did it unconsciously . Later , I realised it was the worst thing that could happen to me . I 'm writing to express my feeling and opinion about the International Arts Festival which was held a few days ago . For example , there were some concert halls which were too small to hold so many people , the stars and artists were just from six countries , which is not enough for the audience . This reminds me of what I experienced during my teenage years . We believe that the programme is very good and well organised and we would like to thank you one more time especially for that . The exhibition is called the London Fashion and Leisure Show and it takes place at the Central Exhibition hall , in London , From 10.00 till 19.00 . The class is very excited about that because the Show covers the latest Fashions , leisure and Sports Wear , make - up and hairstyles . Of course if you are in the public eye , the reasons why you want privacy are different , because if you are a politician , for example , you fear for your life . Because As for accommodation I would prefer to stay in tents . It is amazing and sometimes amusing how charming and strong the spell of luxurious supermarkets and cosy little shops is . But I do feel ill at ease when I see disappointed or angry assistants ' faces on leaving the magic world without any souvenirs of it ! I do apologize about that . If this is an inconvenience , please feel free to tell me . Guess what I 've done ! The preparation days came . I had a chance to talk to them about their jobs and it was amazing ! In particular , going to the Museum and the Art Gallery will be a great opportunity for all of us , as they are world - famous places in London . It was okay , because I was quite good at that , but the problem was that I had to jump onto the roof ! Another point which I think was annoying was the concert hall . Yours sincerely Actually not all the schools in Turkey are so strict but unfortunately the school that I 'm going to is like a military camp . My family allows me almost everything except smoking and drinking alcohol of course , which I do n't do anyway . So if it 's possible could you arrange it for me please . And also , I would prefer the log cabins to the tents , as I have never slept in a sleeping bag before . All of her fans were stood up the whole concert and dancing . Some of the fans were not good at all because they shouted and argued , but most of the people were very good . I must say though , I would have to travel in July because it 's the summer holidays for schools and I would like to spend some of them in California and visit a few friends if that is possible . A log cabin would be the ideal accommodation . Presumably they are more spacious than tents and it would be easier to keep tidy . I would like to know how much money people usually take and how much clothing . I know it sounds extremely boring and that is exactly what I thought when I was asked to help , but to my surprise it turned out to be much more fun than expected . Thirdly , I would prefer to swim and play tennis , because I have been doing this since I was I child , and I think I am very good at each activity . A few minutes later the show started and the group appeared on the stage . Later , when the show had finished , I stayed with the group in their room for a few minutes . What I really liked doing was helping them with their clothes and make - up , because I learnt how to do make - up for someone and I spent a few minutes with the most popular group in the world . Regarding starting time and the theatre restaurant , to see the musical I had to wait about 45 minutes because it started at 20:15 . I know you are always interested in detective stories , especially Agatha Christie 's . Do n't be surprised ! Where the stories are concerned , they will not be difficult to understand because you already know the stories and the narators are going to read clearly . Regarding the accommodation , I would be pleased to stay in a tent , because this reminds me of my holidays with my family . I just had to take care of them , serving some drinks and food during the rehearsals . I write to complain about the musical show " Over the Rainbow " . I had a very disappointing evening because of many things . First the actor was a very average actor . Also in the advertisement they talk about discount tickets . Well they did n't accept my £ 20 discount ticket . Why ? And finally I could n't visit the theatre restaurant after the show , it was closed . Why ? Also I wanted to tell you that the show was very boring . It was always the same . Because of all these things it obviously was n't the perfect evening as was said in the advertisement . I had to explain to everybody that I actually did n't have a girlfriend . I explained to them that it was a good possibility , nothing else , but no one believed me , because Pat had told them that I had an actual girlfriend . This problem with Pat had a lot of consequences , because I had a very heavy discussion with her about it . It was so heavy that one of our teachers had to calm me down , because I was very angry with her . Regarding the accommodation , if possible I would like to stay in a tent because I think it is a relaxing place to stay . And if during the nights there are any entertainments ? The opposite situation is when I pass my exams and I really need to buy something as a present for myself . It is really interesting . That is the second day of our trip and it starts at 10.00 in the morning and lasts until 19.00 . This technological improvement is changing people 's lives , behaviour , even their homes . But we ca n't stop these technological improvements . We should use them in positive ways . and we are practising these things . In the future life will be more artificial than it was . How delighted I was when I received your letter ! I would like to ask you how much money I need , how the weather is , in order to pack the necessary clothing , and whether I need anything else . I am sending you some pictures , the best ones only because there were some quite embarrassing ones . It was n't a spokesperson Kim but just asked him a couple of questions behind the stage . You did n't tell us any details about how much the ticket costs to go inside . In my class room somary people stay outside London about 50% in my class room and everyone is very worried about how they can stay for three days in London . And we 're very excited about your programme . Because in London there are a lot of shopping places , can you tell us about shopping and the time For spend or day ? Thank you For any detail more I think we go with you and enjoy a fantastic programme . If I tell something in the college baby someone like or dislike about my story but I think my story it very good for someone . In my college have got a new student every Monday and very big college around heir . and we have got three buildings and we have got a lot of teachers the teachers have got experienced about teaching I think somebody come in my college you fried want to study in my college and you want tall anyone for your college you ca n't tell for something but you know yourself about college you know just you love it and very like it nobody dislike it somebody tall about class rooms it very big and comfortable . It starts with food ( monstrous ) and goes on to clothes , pills , games and so on . A simple and well - proven architecture . Every electronic gadget in the future home will be able to communicate with other machines or computers . Regarding the accommodation at the camp , I would prefer a tent . The reason is that I like to live really naturally and it is more enjoyable to live in a tent than in a cabin . It was marvellous . It was hard work for a while but I was so happy to help at a really big pop concert I ca n't describe it . I really enjoyed that and it was one of the greatest , if not the greatest experience of my life . The organizer of the tour spoke with me and asked me if I wanted to do the same work in two months at the Rolling Stones concert Is n't that fantastic ! That 's the most suitable accommodation for a camping holiday . They also gave me a ticket to watch the concert live . I was really happy to be seeing the " Best Musical Show " in London . By problems I mean that the show started at 20.15 and not at 19:30 or why there were no discounts available ? The most disappointing thing was that there were different actors to those advertised who were not very good at acting . It was n't really a perfect evening as you promised on your flyer . I was very disappointed and I would like to have my money back . If you think about the early days , when no cars were on the roads and no one had an opportunity to fly to another country for a holiday , people had to walk or go by horse and ship . Today , everyone has the opportunity to just get into a car and drive wherever they want to . This is also a very big disadvantage because many people are losing their jobs . Another disadvantage is that everyone becomes a bit more lonely because they watch TV or play or work on the Computer and do n't see each other anymore because they do n't have to . We can hardly imagine life without computers , TV sets , microwaves , and so many other things , and yet none of these things existed seventy years ago . Her parents have been so upset that they have asked the school to help their child and that is the reason why I 'm writing this story . I have received your letter concerning two weeks at Camp California in the USA . Regarding my accommodation , I would prefer a log cabin because it 's more comfortable than a tent and less hot with the sun . However , I hope , there is water and light inside this log cabin . The saleswomen are too busy and haven't a moment to give you advice . The other one is tennis , which is also my favourite sport and I have been playing for several years . Lastly , I would like to know how many people are coming to the Camp I will go to . I should be grateful if you would send me the further information that I asked for and I look forward to hearing from you soon . Favourite lessons Favourite activities I would like to tell you about the show which we would like to see : It is " The London Fashion and Leisure Show " , which is going to take place at the Central Exhibition Hall in London , on Tuesday the 14th March , between 10.00 and 19.00 . I 'm very pleased to receive this prize . Other workers are taking on other months so there is only July that is available for me . I 'm very good at tennis , and I was a professional tennis player . Unforgivably , my climbing skill is nothing like my tennis skill , but I always love climbing . I 'm afraid of heights and I have always wanted to conquer that fear ! Filming life at school means filming the students ' actions and behaviour . It is very interesting and fun with the experiment . Lots and lots of experiments produce quite interesting and amazing results and I think Science is very useful in life . Also it is not a very easy subject so we can capture other students ' faces in confusion and puzzlement . We can see students expressing their feelings , wonderful and exciting story that the student made up or from a well well - known story . Another exciting subject which most of the students like very much is P.E. Many students like to play sports . I do a lot of sports , so apart from playing tennis I am a member of our local swimming centre . I can assure you that I am gradually improving my sports skills . It took place in a huge stadium which had over 4,000 seats for the " spectators " if you can call them that . The musicians brought it in order to achieve a high standard of sound quality . I visited your theatre and I was very disappointed for a number of reasons . I 've read your advertisement and the reality was different to what was written there . There was no Danny Brook but instead of him there was a different actor and I 'm very disappointed about that because I 'm a fan of his . There were no discounts available so I overspent . The theatre restaurant was closed for no reason apparent to me . It was a really bad evening and because of that could you possibly give me my money back ? Everything was going perfectly before last month when I met a girl from the other school . So one day she invited me to come to her house at night and to do so I had to run away from our boarding house and that was illegal . So I woke up at 2 o'clock in the morning and climbed out of the window . Next day my best friend went to the headmaster and told him about me so he put me on suspension . At this we can see the latest fashions , imaginative make - up and hairstyles . I am sorry to cause you inconvenience . Last night , when I went into my house it was quite silent . My father always remembered his responsibility was to provide his workers with a good salary , which is the aim of his life . When I , with mixed feelings , went home I found my parents were standing at the door looking very cheerful . ' It is a good idea to include the visit to the Science Museum and the National Art Gallery in the morning on Tuesday and Wednesday respectively . Firstly , there will be leisure and sports wear and the latest fashions . Secondly , there will be exhibitions about makeup and hairstyles . And on Tuesday we will enjoy the London fashion and Leisure Show till 19.00 . I am looking forward to receiving your positive reply . We are interested in politicians ' and film stars ' clothes , hobbies , passions and intrigues . There are large numbers of journalists following them all the time , even in their private life . We can go for a walk , go shopping , go to the cinema , get married or divorced . Why must everybody know and talk about their private life ? I was not satisfied with the show at all because it was very different from the description your advertisement had given . It was a disaster and I am going to tell you why . But it has advantages as well as disadvantages . On the other hand there are disadvantages , too . Firstly , the environment is polluted because of technology , although this is our fault . Secondly for us there are disadvantages because pollution affects us indirectly , and because I do n't do anything but watch television , and it is n't very good at all . I am writing to complain about your service . You were meant to start the show at 19.30 p.m. but you started very late at 20.15 p.m without any explanation to the audience . Unfortunately , Pat was n't very good at keeping secrets . I knew that but I needed someone who could understand and support me at that moment . I told her about my pregnancy because she has a friend who works in a hospital as a doctor . I asked her for help and she promised me she would do everything that she could and keep my secret . Pat gave me some advice and I decided to have an operation . I got a bit depressed but my parents supported me . They stopped me having the operation . You wo n't wait in the queue . I am a good swimmer and also good at golf ( handicap twelve ) . I took a certificate to become a teacher in both of them six years ago before I went to " CROARA GOLF " in Milan where I organised the evening 's entertainment for the customers . First of all , I believe that if someone has time to go to the shops has the possibility . Do you know I am amazing when it comes to playing tennis ? Great fun , very happy , if go with your girlfriend it will feel romantic , you should think something like this , but do you know it is not always like this ? If you interested in the clothes as well , but you need to remember , one is male , but one is female , they should have different fashion , at that moment should be had one is boring or have some bad chat , so in the end you both will feel unhappy or angry with each other . Mr. Manager , In this uncomfortable situation I am writing to tell you about some irritating problems . Then , the time stated as the beginning of the show was 19:30 and unfortunately it began at 20:15 . Closing these facts , when the musical finished I was very , after waiting for the start of the musical and I was disappointed with this version of Over the Rainbow . Everybody went to the restaurant , which was closed without any explanation . I am very disappointed with this evening and with this disorganised way of dealing with problems so I am asking for my money back . They always did things together , and they were the most popular boys in school . Both were very handsome , played football ; they were an example for everybody . Unable to keep a secret he told everyone , ended his friendship with Ted . Now Ted is rejected by everyone , no one talks to him and Pat is the example , but without his best friend and his honesty . In accordance with what you have told me about the accommodation I would prefer to go and stay in tents , because I think they 're unusual and that is not something that you do every day . In my opinion you have to give some money back to me . She is a very good girl and she can deal with every problem she has . My name is Agripina T. I just received your letter and I would like to answer and ask some questions . While I 'm at the Camp , I would like to do two of my favourite activities , which are basketball and singing . In the past I was in a basketball team and I enjoyed it a lot . At the Camp , is there a free uniform or will we have to wear something special ? And is it necessary to bring money , will we need it ? Students think that we do n't do anything and we do n't learn anything special . Our music lessons are special . And it 's always interesting to watch others while they do something like that . You can find further information from me about Camp California in the USA . First of all I can go to Camp California only in July because I will start working at our local leisure centre as a swimming instructor . I would like to stay in a log cabin because I have had bad experiences with tents . We are all customers of the big supermarkets . They have all that we need . But when we think about it seriously , shopping is not enjoyable , for example , if you forget something that you need for a salad . You have to go back to the supermarket and find the nearest parking space , then before someone takes the last fresh lemon for your salad , you must find out where the lemon section is , because they love to change the store around again and again . Firstly , I read in the advertisement that the actor would be Danny Brook , and this is one of the reasons why I went to the theatre . But I had a big surprise when I saw that it was a different actor , and I was very disappointed . I was very angry with her . I did n't know what to do , I was afraid that I had lost all my friends . After a few seconds of thought I went straight to Pat . " Why , why did you do that ? " Firstly , you advertised that Danny Brook , who is my favourite , is the lead but there was another actor instead of him . In accordance with study or work , I use the Internet , which is the easiest way to get information from all around the world . When I asked for the price I was surprised because the assistant told me there was n't any discount available . After two hours I thought that all of this information was written from a foreign point of view and it was n't the native opinion . I used my computer to collect reports from the Internet and I can promise I found so much information that I could n't analyse it in two weeks . Changes wo n't stop coming : the WAP technology ( you 'll buy a cake from a vending machine without any coins , only one call ) , digital TV , virtual reality and more ... I would prefer to stay in a tent to staying in a cabin . Because it is something I feel more familiar with . I used to go camping with my family every summer . Sometimes you can stay out all day just to buy a present for someone . It starts in the morning , and of course you have breakfast somewhere , and it gets later and you are still looking for it , so you have lunch , and finally you spend more money than you thought you would . RECOMMENDATIONS I have just received your letter informing me that I won a two week holiday at Camp California , so I am writing to you to tell you my preferences for the travel and the accommodation . About the accommodation , I have no problems , but I would prefer staying in a tent , so that the holiday may be more adventurous . First of all , the reason why I bought the ticket was Danny Brook , who is my favourite star , and was going to appear in the show . I could say that we can not survive without them . It is getting more convenient and useful than our past life . Furthermore , it is possible to treat many patients who have serious diseases more effectively , if we use modern technology in medical science . Because of convenience , we can use our time more effectively , but we should not rely on these things too much . Last week I attended the musical " Over the rainbow " , and I am writing in order to complain about things that really disappointed me . Hello . I 'm Robert and I 'm writing an article about clothes in the future . In my opinion , in a hundred years we 'll wear the same kind of clothes that we wear nowadays . I received your letter and I 'm very happy because I did n't expect it , so first of all I want you to know that I really fancy going to Camp California in the U.S.A . for two weeks , especially because I 've never been to this country . Finally I want to find out if there is a supermarket near the campsite and if there are any facilities for washing my clothes on the camp . I look forward to receiving a reply from you . We arrived quite early because we had to work out how we were going to serve people did with which order , so we started putting all the stuff in the appropriate place . I was very nervous because I 'd never been to a concert before and an hour before everything started the singer and the musicians were there and I could n't help it and I started crying - you can imagine , they were so handsome that I could n't believe it - I tried to calm down because I had to work , and later I began to feel more comfortable and when the concert started everything was so exciting that the time went very fast - although I was working - and it was like a dream . I want to know if it is available at that time . Furthermore , I would like to ask you which kind of clothes I need to take and how much money I 'll spend . But a lot of inconveniences annoy them . First of all the parking is not convenient and is expensive . Sometimes you have to park your car in a further place then walk to the supermarket . Furthermore , when you look around the supermarket , you ca n't easily find the goods which you want to buy . It 's very confusing without the right signs . As I understand , it is very important to confirm the date of my trip . Now about accommodation . If it is possible I would prefer to stay in a tent . I am quite good at tennis , especially playing doubles . Also I like swimming and I 've got two years ' experience of teaching swimming at a leisure centre . I ca n't concentrate in a shop , and I ca n't relax either . On the other hand , I understand very well that it is really necessary . I also understand that nobody will do that in my place . I think it is an opportunity to meet different people ( even if they are pushing you ) , to understand what they like and what they do n't , because even some kinds of food can be in fashion . I am writing this letter to inform you I had a very disappointing evening at your musical show " Over the rainbow " at the Circle Theatre where you are the director . This was a very difficult decision but I had to take it because of my personal situation , all the time shouting and fighting with all my family . I 'm writing this letter to you to make a complaint about the musical show " Over the Rainbow " which I saw yesterday . I have to say that I 'm very disappointed with what I saw because after seeing your advertisement I expected more . The show was entirely different to what it says in the advertisement . I was a little more patient so I stayed to watch the whole show , which by the way was the worst I have ever seen . I do n't know why I paid £ 20 with no discount , which the advertisements said I would have . Then I thought that I should go to the theatre restaurant to have a drink or eat something so that I could n't say that I had wasted my time by coming here . Computers have entirely changed people 's lives . There are hundreds of programs which help you communicate with your cousin in Australia or with a complete stranger who you want to meet . I wo n't ever forget the day the doctor told me and my Mum the truth about my strange disease . Before it was packed into by the audience , we had to clean around the reception , but totally it was really exciting although I was just a member of staff in the small reception , because I felt great excitement ( especially girls ! ) from people queueing . I know this is one right love . I 'm absolutely besotted with him . She told everyone that I fancy him and everybody always makes a joke of it . That makes me feel so embarrassed : I was very angry at that time ! Amazingly , we can find that there are more and more computer users . My daily life has also changed a lot through the use of computers or modern technology . Regarding the accommodation , I would prefer a log cabin because in my opinion tents are very uncomfortable to sleep in and they are n't very cosy . I would like to ask you for vegetarian food for me as I am a very strict vegan , and to suggest what kind of clothes to bring . In a nutshell I think Maths , basketball , Speech and Drama , and History should be filmed . Firstly , I would like to thank you warmly for this great prize . Of course we will also show other activities , such as PE , the lunch break and the theatre workshop . It was n't a " perfect evening out " like you said in the advertisement , so my friends and I would be grateful if you would give us some money back , if that is possible . Your faithfully It 's a sad story but it lets you know about a type of life that you ca n't imagine really exists . I would like to travel only in July , because I am going to study at my university until the end of June . I have a lot of possibilities for spending my spare time . Generally I paint some landscapes by using watercolours , but sometimes I try to paint like during the impressionist era by using blobs , oil paint and canvases . In order to prepare it I visited some classrooms during the lessons and I interviewed a number of students from our school . Some of the teachers are very good professionals . Their lessons are valuable , rich in knowledge and funny . According to students ' opinions , the most popular activities are basketball , tennis , swimming and also the photography group and the painting team . It could make the video more interesting . It will show that during every day we have great fun and we receive good , important knowledge . My school starts a summer holiday from 1st July and I am going to take a summer course from August . They can relax , reduce their stress and they are happy when they find the thing which they wanted . However , shopping sometimes makes them stressed . People often waste money on worthless things . During the camp I would like to practise my swimming ( I have attended swimming lessons for 3 years ) and also I would like to learn how to take some good photos . Sometimes , unfortunately shopping can be very annoying , especially at Christmas or Easter time . The only advice would be : " Do not do your shopping at Christmas or Easter time " - but it will not make any sense , will it ? In addition to this , it was not the famous actors that you had mentioned in the advertisement performing , so we were disappointed . Then I had to wait 45 minutes ; the show started at 20:15 . At that moment I was really angry , so to calm down I went to the theatre restaurant , but it was closed , because of its bad hygiene and food . Now I only need to push a button , and things or machines work on their own . Homework is easier to do with the computer than with a book sometimes . Maybe , I wo n't be able to understand how the things work and that scares me . I will be useless , because a machine will do all the work . To begin with , it was not Danny Book who acted in the show , as you wrote . And then about the tickets , you wrote that there were discounts available but there were not . Finally when we had seen the Musical , we went to the restaurant and it was closed because they were doing some decorating , and you wrote in your advertisement , " Visit our theatre restaurant after the show " I am looking forward to hearing from you . Clothes are a very interesting subject to study . If you travel around you can see a lot of difference still between different cultures . First I think that in the future we are going to wear fewer clothes because the climate is going to get warmer and warmer . Finally in my opinion I wish we would dress more as we did in the past , using natural material . We must think more about the environment and live closer to nature . In the past , for example , we used to write letters to communicate , but now we surely send an e - mail , a fax or make a phone call . Nowadays , you get everything immediately , but will it always be a good thing ? I think not . So they prefer to leave their sons watching TV . In my view , it was extremely interesting and satisfying for me all the concert long . Although I can not explain any more about the thing I felt during the concert in this letter , I 'd like to recommend you to help at a pop concert . I am afraid that I could n't write to you immediately , but last month I enjoyed helping at a pop concert and so I was very busy . Regarding the accommodation I would prefer to stay in a cabin . I think that the cabins are safer than the tents and they can protect you better in case the weather changes . I chose climbing because I 'm interested in this sport even though I 'm not experienced . Yours sincerely Before the concert I helped with carrying and putting in order some chairs on which some special people would sit . In addition I had the opportunity to talk to the singers and get a lot of autographs by them . I was doing different activities , from designing fliers to selling tickets . In addition I checked the e - mail daily and answered the phone . In the advertisement it said that discounts were available , but when I asked a member of staff in the theatre about the discount he did n't offer me one . I expect this will be possible . Like earrings , necklaces , bracelets , rings , glasses , hair bands , handbags , shoes , watches , etc . We had a great time together until we decided to visit the musical " Over the Rainbow " at the " Circle Theatre " . So when the miserable musical came to its end , we were happy to leave the theatre auditorium , but we both wanted to have dinner in the theatre restaurant , because no restaurants were open anymore , because it started too late . Pat was my big brother , who had heard of some people paying , " safety - money " , but never know the reason , until he found a large amount of money in my room . Yeah folks , that was the point I got interrupted by my parents in this beautiful dream , but if you want to hear the end of my story than buy the " Rossall - School - magazine " , next issue , and you will hear the end of this unbelievable story . Secondly , for accommodation , I prefer to say in log cabins , as I have no experience staying in a tent , I hesitate to try . I used to belong to the singing club when I was a high school student and once we won the contest , moreover , painting is one of my favourite hobbies . Finally , I would like to ask you whether there is anything I should bring on this trip such as specific clothes , extra money etc . It was a privilege to help at a pop concert . My dear friend , if I tell you this , I am sure you will get jealous . Dear Sir or Madam , I 'd appreciate for giving me the first prize in the competition . The aim of this report is to summarize the results of the survey , which is about making a short video . Yet , one extremely hot day while I was peacefully walking by the sea and thinking about my own problems , I discovered my elder brother 's girlfriend with another boy . So , the next day , I nervously came to Pat 's apartment where she had been living on her own since she was eighteen . From the activities , I would choose painting - which I am keen on and I have done several courses - and Photography - about which I know just the basic skills . Besides , it was confirmed by scientists that consumerism may develop into a compulsion . First of all , I was looking forward to seeing one of my favourite actors , Danny Brook , and it was very disappointing for me to see a different actor instead of him in spite of his name being written in the advertisement . I 'm writing this letter to inform you about the disappointing evening I had when I visited the Circle Theatre . It 's something absolutely necessary for every action people perform . It affects us both positively and negatively . I 'm writing to you on behalf of all the English class in order to let you know how excited we are about the trip to London and to give you some ideas of other things we are interested in doing in London while we 're there . First of all , we 'd like to thank you for the programme you have already arranged . It 's wonderful because it covers most of our interests . But also we would like to visit The London Fashion and Leisure Show that will be held at the Central Exhibition Hall on Tuesday March 14 from 10:00 - 19:00 . Thank you for your time . We 're looking forward to hearing from you soon . I had always wanted to travel abroad and experience other people 's lives and cultures , so I decided to go to Paris as soon as I finished university . But in spite of all of these disadvantages , I was pursuing my dreams and objectives and in spite of everything I was going to do it . It took me three months to learn the language and by this time the whole family had fallen in love with me , so that when they decided to move to London , they invited me and now we all live here and I feel like part of the family , even though it was very hard at the beginning . First of all , the stars of the show were not Danny Brook and Tina Truelove . But your stars were not there . From every singular things I have complained , it was totally different from what your advertisement said . And I can send e - mail to my friends via the Internet fast and cheaply compared to the old - style mail - services . I 'm writing to you to complain about the disappointing experience I had with your theatre . And last , the most disappointing thing , the advertisement also said that Danny Brook would be there , my favourite actor , but there was someone else instead of him . So , the show was not good at all and my evening was spoiled in spite of all that the advertisement promised . So , that afternoon at lunchtime , I went into the teachers ' room and opened her desk and took the paper out quietly and calmly . That was the most scary and daring thing that I did in my childhood . Sincerely ... Unfortunately , Pat was n't very good at keeping secrets and so his whole school knew about Sara 's experience . Sara was a very good pupil . She spent the money on a magazine . I am writing to you to thank you for your very good organisation of the International Arts Festival , where I spent two excellent days recently . I suggest it would be very interesting to meet artists from faraway and exotic countries . To finish my letter , I hope that my notes can help you to make next year 's festival more interesting and comfortable for the public . It is so because you are young and need to make your life as interesting as it can be now . Naturally , it 's easier to get a job when you are good at foreign languages or computers . Also some concert halls were too small for this many people . The school is like a dungeon here . I do n't want to be so evil about school but rules are rules and they are limiting us within the borders of our school . We are not allowed to compare our thoughts during the lessons because the teachers think that we are chatting . I had been looking forward to seeing my favourite actor Danny Brook , but he had been replaced by some other actor . I was not too happy about that and why did n't the show start when it was supposed to start ? Your advertisement was full of false advertising . I hope you appreciate my letter and that you 'll try to amend these problems./ Sally Svenssen I do n't have to mess around in the supermarket on a Friday evening , when I 'm tired from school , I just get all the groceries I need delivered to my door instead . Nowadays I spend 2 hours in front of the computer every day , shopping or chatting to people . The last thing I would like to know is what clothes I have to take , even though the weather in July will be good . So , let 's imagine that your credit card is not working , or some one stole your cash from your pocket . Also it is very difficult to shop if you are handicapped . Staying in a queue or crowd is also unpleasant . Your advertisement for the show contains further inaccuracies ; this show did not start at 19.30 p.m but only at 20.15 . Under these circumstances , as your Theatre did not fulfil its commitments , I ask you for a full refund and I expect to receive a cheque for £ 15 , as soon as possible Yours faithfully Mind what you tell her ; she can make the worst of it ; gossiping is her favourite leisure activity ! A couple of weeks later , my sister called me when I was at work ; completely devastated and weeping scalding tears , she could hardly pronounce a word . I could get her to simmer for a second or two then she suddenly started shouting uncontrollably : - " Never have I met such a poor cow like Pat " , Olga hurled this at me down the phone . For activities , my first choice is basketball . I have been playing it since I was nine years old . My second choice is golf . However , I could enjoy it , even though I was a beginner , so I would like to practise and have fun at the camp . As I have told you , I had a chance to help at a concert of Majesty , a local band in which one of my friends played guitar . At first I just helped setting up the stage ; setting microphones , and tuning guitars . He explained to me that it was to control the light . It was fun practising how to move the lights and change the lights . Beside that , I 'm allergic , and that causes me problems when I 'm close to nature . I 'm quite good at painting and I play tennis . I 'll be very happy if you can give me a chance to use the camp 's art studio and you 'll be able to prepare some painting materials like oil paints , canvas and brushes for me . I think the result of that action was marvellous . Everybody was very surprised that you can create such amazing things , using scissors and paper . The light on the stage was very bright and very warm which made the scenery very pleasant . The organisers paid for my accommodation and flight to Ireland . On the next day I helped them to build the scenery and I had enough time to visit a museum in Dublin in the evening . In order to know what sort of clothes I have to take , please can you tell me about the normal weather for this period ? One of the most important things we have to film is our bicycle classes . Our school is now the best in the country in all ages . We are prest with this . We can show what we do in order to be the best . It would be good to show the swimming pool , the gym , etc . And on the other hand we also have a very important museum , and a very beautiful building in the school grounds , bowls them ! ! After that , your restaurant was closed without reason . Introduction : The aim of this report is to summarize the right lessons and activities to be filmed . Conclusion I have always been interested in visiting other countries . Below is a summary of the most important relevant points with some recommendations . The fully equipped computer centre in the main building is extremely good . 2 . The school arranges an amazing range of activities , such as excursions , sports and different kinds of trips . Regarding accommodation , between tents and log cabins , I would prefer a tent , because I love adventure and also because I can be freer . I know I will have the chance to do two activities , so I have chosen two from your list : basketball , because I have been playing it since I was eight and I have been part of a strong team for three years . The other one I have chosen is swimming ; for the same reason why I chose basketball . For example , if the shop is full of people , it is not enjoyable , because they will create too much confusion , too much noise with the risk of wasting time . The last problem I would like to tell you about is about the restaurant there . First it helps to make my social life convenient . To sum it up , as technology is improving my life itself is becoming convenient . I would like to know with whom I 'll share such wonderful days with the sports activities . My Russian friend invited me to set up an exiting new business . First of all , in order to our firm purpose I wrote an invitation to my favourite idol - the poet and singer Boris Grebenchekoff . His one - week concert programme was so successful that we decided to invite him else , as soon as the tickets were all sold . I had a nice experience as manager too . I am writing about the letter that I recently received from you , which is about a competition in which I have won the first prize . About the accommodation , I would prefer a log cabin instead of a tent , because it is safer and more comfortable . The two activities that I prefer are Basketball , because I played in my school 's team for almost a year , and Photography , which is a hobby that I am good at and I have done since I was ten . People are used to going to the shopping centre because it is easy and familiar . It is one place where you can have lunch or dinner , watch a movie after that , and , if you want , buy something at the shops . Instead of going to the theatre , which is more cultural , or even having a picnic at Ikurapiura park , people prefer spending all their money at shopping centres . Circle theatre 's Manager : I am writing to you because I felt disappointed after seeing the musical " Over the Rainbow " . First the actors who were supposed to star in this show were not the ones put on stage . I had a discount ticket , but they refused it and I had to pay the full price . Apart from this , the show started forty - five minutes late . I think these reasons are sufficient to ask for my money back . She was also concerned about being pregnant , but she was afraid to tell John about it . He could n't believe what Pat had told him , so he broke Pat 's nose . I am now writing this letter to give you further information about myself with pleasure . Regarding the accommodation , I would prefer to stay in tents because I think it will be closer to nature . Tennis is my favourite sport . Shopping is becoming a popular way of killing time nowadays . Try to imagine the scene : twenty or thirty or even more people are in a queue outside the fitting room . The accommodation that best suits me is the log cabin , as the space in tents is very limited and I am not used to having all my belongings in order and packed at all times . With regard to the activities you offer , it is difficult to choose from such a huge variety , but I prefer to do those I know better such as climbing . There are many things that can go wrong in the process of acquiring a product or service . Hunting on the high street , or the shopping malls for the desired bargain - because we ca n't afford to buy anything otherwise - often becomes a desperate attempt to attain a lifestyle promoted by the new consumerist society . In the end everything depends on our attitude to life , including shopping . But even without money to spend it is fun to rush from time to time through the sales that seasonally appear , or simply look at the superb displays that shops have in their showrooms . First I did n't accept but finally she convinced me . I would prefer a tent rather than a log cabin because I have been told that the Californian summer is hot and dry so , because a tent 's wind circulation is better , it would create a comfortable coolness . It is finally your turn and you reluctantly hand the money over to the hypocritical cashier . They had a concert in my home town , that 's why the organisers were looking for young people who could speak English . The staff in that department were really friendly and helpful and they were also huge , like giants . Basically , I helped them liaise with the local police and get some electronic equipment that they needed . By the way , I have already been invited to their next concert . You said that some discounts were available . When I went to the restaurant I was really surprised . In the advertisement you wrote " your perfect evening out " , that 's very funny . It helps me when I study . I can find many things on the Internet or write my compositions on it . I can find cold water in the refrigerator but 50 years ago they did n't have the refrigerator , so our life is easier today . I think it depends if you are a man or a woman and now I have to say I am a woman and I enjoy it . First of all , as I see it the idea of an Arts Festival is great because in this way many people can get to know artists who come from different countries . I always prefer to read books that are unusual in some way , because they give me the opportunity to escape from everyday reality . They are the main characters of that book , and what characterizes them is the violence of their passions . To make it worse , neither discounts nor restaurants were available that night although they were said to be available . According to the owner of the restaurant , it was closed because the plugs of some lights were cut off . However , I think there will be some differences in the quality and materials of clothes . Although the appearance such as shape and colour will not change so much in fashion . Some people are in a hurry , others are aggressive and most of the others are very stressed . It is not always like that but we often see such a scene , even though shopping is becoming an entertainment not only for teenagers but also for adults . Then , the show was meant to start at half past seven and I had to wait forty - five minutes because it started late . I am writing this letter to complain about the treatment that we received when we went to the Circle theatre in order to see the musical show " Over the rainbow " , whose actors were Anthony Keens and Tina Truelove . Indeed , it had a big swimming pool and a beautiful garden . At first I was irritated that contrary to your announcements no discounts were available . To my greatest disappointment Danny Brooks was not in the show , but his part was played by an actor whose ( lack of ) singing and acting skills did not make him a suitable replacement . yours sincerely Technology is essential to our life , we need it each minute , each second . Good because you can have access to a lot of information , and it is bad because the computers are doing people 's work . We really appreciate your organising a very nice programme , which has been organised by you this time . In particular the River trip to Greenwich makes us very excited and we are really looking to forward to this . We 're looking forward to your reply . Invent glass was very eventually to architect . Architecture with use of glass brought us modernism in 1980 . In the future we can expect to have a new material and it will make our life more comfortable and convenient . It is said that one of the reasons is that a small separate room makes children unsociable and depressed . Also as producing new electronic , our home of the future will be more convenient . In addition I would like to choose singing and photography because I am good at singing and taking photographs . Last month I enjoyed helping at a pop concert a lot . Really it was a very interesting experience , particularly when I had to deal with a young group of children from Latin America . It was incredible , because I learnt some Spanish words such as Hello , How are you ? goodbye , What is your name , house , dog , cat , boy , girls etc . I am very happy that I promised myself that I would learn Spanish this Summer at Huntingdon College . At the concert they were very successful because they were very confident and I helped with the sound system and our equipment was extraordinary and the audience were fantastic . It seems to me that all these failures were your fault , because you were responsible for the organisation of the show . However , considering that I saw the show , I would like to get a 50% refund . Please reply at your earliest convenience . That is why I think that modern technology helps me in my daily life . I have once experienced having been soaked while I was sleeping in a tent due to heavy rain several years ago . I would be really grateful if you could send me some information or any relevant brochure . I 'm writing to you because I wanted to tell you what a bad experience I had during my holidays when I went to see the play on at your theatre . To begin with , the actor you published as going to perform , did n't . People are getting more and more addicted to this , because it helps to make everyday life easier and more comfortable . I 've recently been to one of your musical shows called " Over the rainbow " at the Circle theatre in London , thinking it might be a good idea but it was disappointing . I 'm writing this letter to explain to you what happened and to look for a solution . To begin , the organisation of your colleagues in the theatre was awful for various reasons . Unfortunately , Pat was n't very good at keeping secrets , so without want I knew that there was going to be a concert in our city given by , from my point of view , the best group in the world , Oasis . At first I got more angry with Pat than with my other friends in the group , because Pat was and is my best friend . Then I realised that she had reason . I was irritable because my parents were going to get divorced , but Pat would always be my best friend so I told her that I was n't angry with her and I was not going to go to the concert because I had to go to the court to solve my parent 's affair . And that 's the story of how I missed the opportunity to go to the only concert that Oasis have given in my city . Well , some people would say yes whereas others would disagree . However , I would add that journalists - being aware of that hard topic - should try to moderate what they write in order to respect other people 's privacy ; since they would probably not be happy to have their own private life exposed ! I was bored , so I decided to follow him to discover where he was going . I would prefer to be accommodated in a log cabin as I do not like sleeping on a mattress and I get an allergy to rubber . Could you , please send me some extra information regarding the amount of money I should take to cover any other expenses , and also , what kind of clothes I should take . For the two activites that I chose are at first swimming . I am in the swimming team and I must go two times per week to train because I have a competition every weekend . Could you tell me approximately how much ? The concert sarted at 6:00 pm until 2:00 am , and I started to work at 12:00 pm to prepare the stage with the musicians . After that , at 2:00 pm , when people arrived , I was at the entrance to take the tickets and , you know , it was incredible because some people slept all night in front of the stadium to be in the front row . I saw old people , children .... and for me it was very strange and it was very interesting , because I met a lot of people and the best thing was that I knew the pop group who sang . It was fantastic . I am writing to express my dissatisfaction with the musical show which the Circle Theatre is staging . I recently had a week 's holiday in London and during my stay I went to your theatre to see " Over the Rainbow " . In the advertisement , I had read that Danny Brook was starring but he was not . The play should have started at 19.30 but it started forty - five minutes later , we were waiting there without anything to do . After the show had finished , I went to the theatre restaurant to have something to drink and relax but it was closed because the staff was on holiday . Moreover the discounts were not available as you said in the advertisement and I paid £ 20 . I would like a refund because it was one of the worst evenings of my life . If this matter is not resolved , I will take it further . Everybody agreed with her . I 've received your letter and I 'm very happy to know that I won the competition and the first prize . In answer to your question , I will have to say that I can only go to the camp in July because of my job ; they only gave me that month off . I would prefer to do some climbing because that 's what I do in my spare time and I do it quite well . Apart from that , if you give surfing classes I would love to take them ; surfing is one of my chilhood dreams that never came true . I do n't know what type of clothes I have to take or the amount of money that I 'm going to spend , so if you , please , could help me by giving me this information I would be very pleased . Shopping is not always enjoyable . We have all been shopping once in our lives and sometimes it probably has not been very enjoyable , why ? We had a class discussion and we all agree on some points . For example , if we go to a big mall we will probably never find what we are looking for , and instead of buying what we came for we will leave with lots of things that we liked but we will never use . Most of the time he gets lost , or they start playing around , making noise , bothering people , etc ... And when this happens you get in a bad mood and you 'll have a bad day shopping . So if you want to have a good , relaxing day shopping , we recommend you do n't go with your little brothers and to go with enough time to look around for what you really want . I 'm writing to you because I went to the International Arts Festival and it was a pleasure . On the other hand , I must tell you that some concert halls are too small , so you ca n't be comfortable enough to appreciate the event . Considering the advertisement , which appeared in one of London 's newspapers , I would like to present you with some of my complaints about your musical spectacle . Secondly , the time when your musical should start was changed , delaying your show for nearly one hour ! Neither the beautiful surroundings near your theatre nor the comfortable seats compensated for my horrible evening . However , technology has a bad influence on us - generally on our health . However , he did not act , and his substitute was not very good at acting . I went to buy the tickets but when I paid there was not any discount available . That Wednesday Pat phoned me and told me that Sally also loved Paul . The weekend came and that Friday we went to the discotheque . When Sally came out of the discotheque I was very angry and I started to shout at her . Unfortunately I was very disappointed with it ; I was expecting the opposite . First of all , the advertisement where you advertised your show and what the theatre provides is totally wrong . I came to see my favourite actors Danny Brook and Tina Truelove , but the actors whom I saw were other people . Another thing is that I took a particular amount of money to buy tickets and when I appeared in front of the ticket desk I found out that the cost of the tickets in your advertisement and the real price were n't the same , the real price was much higher . Also the show started very late compared to what was written in the advertisement . before the beginning ? So , after all of that , I wanted to have a nice relaxing dinner in your restaurant . I was very angry when I appeared in front of closed doors and there was a notice that the restaurant was n't open . In fact I am writing to you with just one main aim . I 'll be really delighted to receive the money back for my ticket . I 'm looking forward to hearing from you . Faithfully yours Look at the history books for 400 - 600 years ago , or even for the time of the First and Second World Wars , to see how society has changed , just because we stepped up the advance of science and technology . On the one hand scientists have discovered a lot of medicines for different illnesses , but on the other hand they discovered many illnesses which we had n't heard about before . More and more people die from some illnesses whereas a long time ago fewer people died from the same illnesses , despite the fact that they had fewer medicines . However , technology nowadays has improved so much and it has changed our lives a lot . Today we ca n't even think how we could possibly live without computers or without aeroplanes . The computer is our way of communicating with the outside world , whereas with aeroplanes we can reach our parents and friends easily and much faster than we would if we used boats or trains . Every day scientists and technologists discover and produce more and more new things and that is good . It has to be like that , we have to go forward not backward from the point where we are now . Society has to go forward not to stop in one place . Actually , I read the advertisement for the show and there were a few mistakes in it . After the play , we wanted to eat at the theatre restaurant but we could n't . As you can see , there are some ( deliberate ? ) mistakes in the advertisement you made . I quickly became bored by this hypocritical attention they gave me . I am writing to complain about a musical show last weekend when I was in London . I felt very upset about your advertisement was totally different from the musical show . It was quite ridiculous ! She enjoyed sharing everything with Pat , whatever it was . This made Nick very embarrassed and he felt hurt . Finally , they got separated . For example , if Diana , who was the ex - wife of Prince Charles , had n't been followed by paparazzi when she was dating a man , there would n't have been a car accident which caused her death . It was a pity that the halls used for the classical concerts were too small . When the sons were old they began to talk about their life , beginning with this story , which happened a long time ago . 17th June 2000 I 'm in London for the first time and I wondered what is interesting on your stage : I read in the newspaper the advertisement about the best musical show . In the advertisement the cast was very interesting - Danny Brook and Tina Truelove . I decided to go to your theatre but at the beginning it was the tranbles . In the advertisement it said - " discounts available " . I 'm a teacher and in Poland I have discounts but in England I do n't . I know this is another country . I was very suprised when I saw a different actor . It was n't Danny Brook . I saw one week ago on TV ( the 23rd annual ) the fashion show in Paris and I was very suprised because of the style . All the models had very strange long shoes made from black leather , the trousers were quite short and the jackets were elegant with emblazoned material . People will wear clothes made from natural materials like silk , which will be comfortable and elegant . Because the world is now a global village people will wear at least one item of traditional or national clothing ( for example a peasant jacket or hat ) , like they do now in rural areas from time to time . Sailing means an ever renewed adventure as you can not control the atmospheric conditions . When you ask to , the sales person often answers that your size is out of stock . It seems like a good opportunity to practise it . I would rather stay in a tent , because I have stayed in tents before and I liked it . It is more pleasant than staying in log cabins and it is such a wonderful experience . I agree that shopping is not always enjoyable because a lot of things can happen to you . Therefore she had to do a lot of tramits to cancel her credit cards and to change her plane ticket . Well , regarding the accommodation at Camp California I would prefer staying in a tent . Well this is absolutely true , especially when you go shopping on Saturday . For example , you go into a clothes shop , you see all those women running around trying to find the shirt that will match their new skirt , so they are looking everywhere , pushing you because they think that you will take the shirt that they want . You get headaches , you get stressed , and finally you get bruises because of the woman who pushed you to get the pretty skirt before you ! ! ! I would prefer to stay in a log cabin rather than in a tent , because I find it more comfortable to sleep in a bed , but it would n't be a problem if I have to sleep in a tent . I would love to do climbing and surfing just because those are sports I have never tried before . That means I do not have any experience . The part that I enjoyed the most was that I felt I was doing something worthwhile for the community and also that I got to meet a lot of people . I have just received your letter saying that I have won the competition . I must say I was really surprised and happy to be given the opportunity to join the Camp for two weeks . I am concerned that you offer me the chance to choose two activities , while I am there . Because of my studies , I will take painting , as this is the subject which I am finishing at college , always with important qualifications , and photography which has been my hobby since I discovered that I can mix , in practice , paint and photography . Concerning accommodation , I would prefer a tent since for me if I go to a camp or on an excursion it is n't the same if I sleep in a cabin . I really liked one of them concerning a holiday in Spain for 3 days with hotel and breakfast included , for only £ 250 . I went inside to ask about that package but they told me that it was gone , so , I went to many shops just to get the same answer . As and advise try to go shopping in the out pick hours , and do n't waste your time asking for promotions advertised in the windows of the shop . I 'm not really a young man and during the recent years of my life I becamehave become accustomed to comfort . That was cruel , because I was very hungry after the show . In spite of this , I have got all the equipment I need for painting and I paint very well . The food was delicious and fortunately I did not have to pay for it . I am very pleased to be the winner in your competition . When I was at the university I was very keen on basketball and I played for the university team . In 1998 we were the champion of the First National League . Nowadays our shopping habits seem to have changed . I can clearly remember my childhood and our only local shop . I was really astonished by all these shopping centres , like ASDA , HOMEBASE , etc . One day I decided to go to the shopping centre which is only 40 metres from our house . I 'd walked around for about 15 minutes until I found the door . When I entered the shop I was a bit angry . In fact , this activity seems to be very interesting . Unfortunately , I have never tried but I feel like trying it . The best thing to do would be to show the cooking personnel because they are very nice . I advise finishing with a chemistry lesson so that people see the laboratory . The advertisement promised us a perfect evening but it was n't , so I would highly appreciate it if you could completely refund our tickets . Since Paul ran a very popular hotel in London , he told Pat that on Sunday the superstar Madonna was supposed to be staying there with her new mysterious lover . I 'm writing to you to complain about the musical that I saw when I went to the theatre during my holidays in London . To my surprise Danny Brook never appeared . He is my favourite actor and I paid to see him not to see a different actor . Finally at the end of the show I decided to go to the theatre restaurant but it was closed because it had n't been repaired . I enclose my postal addresses and I will be looking forward to a complete refund Most of them believe that they are kind of crazy or evil . Carol , a 16-year - old girl , said , " I imagine clothes in the future will be very strange . Maybe they will be in many colours and they will be very tight . They will be synthetic clothes , I think , made of plastic or something similar . " Most young people like Carol believe the same and use their minds to imagine the variety of clothes in the future . After all , they 'll be the ones that decide what the Fashion of the Future will be like . My name is Joseph and I am writing this letter to complain about the mess that the administration of the Circle theatre presented to me . We paid to see Danny Brook , my son 's favourite actor , but we were quite disappointed . My son was very happy because he would see his favourite actor for the first time . Expecting British punctuality , we went to the theatre at 19:00 to watch the 19:30 show but it only started at 20:15 . It finished later than it was supposed to and then we missed the train . I did n't see any discounts available ; I thought my son would have paid less than I. As we had already missed the first we went to the theatre restaurant , which is famous for its good food , however , it was closed . Because of this , the least you can do for us is to give me my money back and work hard so that this theatre , which is famous for its beauty and punctuality does n't become famous for its disorganised shows . People have seen in the last 10 years how different our clothes can become . Clothes used to be made of cotton , but nowadays we can see shirts , pants , socks .... made of almost anything . Computers are little things nowadays , but at the speed at which technology develops , in the next century clothes will tell our doctors about our health at any moment , any time , anywhere , people will be able to locate us around the world . In the future we wo n't buy clothes according to size or even colour . Our clothes will adapt to our bodies , the weather , our fit , all our needs . I saw the musical show in your advertisement during my holiday . I think after 100 years , at least something will change as regards design , material , colour , etc . Since I was a child , I have been interested in camping and sleeping in tents . For example , how much pocket money will be enough and what kind of clothes I should wear . We think that this is a great opportunity and we are all very interested in going because we can see there the latest fashions , leisure and sports wear , a lot of different kinds of make - up and some famous hairstylists . The show is absolutely free for students . I have further ideas . In the future , maybe in 2113 , there will be houses like now but with more technical things . But I think that people will also need a bed and a table with a chair . houses will only be more modern and more practical but not very different from our homes in the present . The whole show and the acting was of a standard comparable to school theatre . When we decided to visit the theatre Restaurant after the show it was closed because some decorating was n't finished . It was this last point that got me angry . After everything that had happened we went to the hotel tipped and very affect . From a small village to the town was a very long way because people used a horse and wagon . Every family now has a TV , to travel long distances we use not just the car but also the train and aeroplane . Before we had a fantasy about how people might travel to other planets , and what we see now is a spaceship cruising in space . Before it was only in our imaginations . New technology has made our lives more comfortable and easier . Everything that we do now we do with a computer : it helps to look after the house , to perform very difficult operations , because the computer can think much faster than a human . And I can continue my list in this way ... because science never stops in one place . Looking forward to your reply . It was such a wonderful experience ! When Jane asked me to help her with the publicity and specially with the interviews , I just could n't believe it . You know that I love going to concerts , but being at the beginning of the show and a member of the staff was something I was always interested in . In the area of publicity we were about 50 guys , all of us investigating , calling radio stations , organizing the reporters , specifying where the press would be for the interview that took place afterwards ... yet , it was incredibly satisfying when everything turned out just fine ! Before I go to the Camp , I would like to know what type of clothes I need to take and whether there is anything I should take in case of any emergencies . I was one of the luckiest people from my school to be picked to help at the pop concert which took place in my town . Me and my friends were very excited , not because of the stage decoration but because of the pop singers and bands whom we would be able to see ! However the best part was watching and listening to the singers and bands practising on the stage . He started to consume the stuff at the age of twenty . He had problems at home because his mother wanted to settle down in Australia , but Peter was used to living in New York , where it is overcrowded and he was surrounded by people . But I have booked a flight home at the beginning of August . Nowadays the Internet brings us closer and closer . 3 . Library . We not only borrow books from a library but also study at a library . With reference to the accommodation I would rather stay in a tent because I think it is the best way to socialize . In addition I need to know whether meals are included or not with the accommodation so that I can decide how much I must have with me . Just then Ake exclaimed that I could play the piano . yours sincerely The restaurant , which I decided to visit after the show to eat something , was closed without any explanation and the perfect evening was completely imperfect . Often you wear very little but short skirts and tops . The summers and winters get warmer . Besides all those improvements and comforts I ca n't stop thinking where all this will lead us . All these items of equipment are applications of modern science . Thank you for this prize , I 'm really excited and emotional . To answer your question , I would like to travel only in July because I really appreciate this kind of trip and I 'm really grateful for your attention . Yours sincerely , Women ca n't resist the temptation of shopping and they are disappointed when they do n't have the desire to shop . Shopmania is really unstoppable . I know women who do everything they can to buy only a dress , or even worse , women who buy things they have no use for , for example , snap , sculptures , kitchen tissues , or everything sold by telemarketing that really is useless , but they can not resist the fact of it " being there . " There are many facts to prove that shopping is not " pretty and harmonious " , so believe me , it is not always enjoyable . I am writing to you because I was very disappointed with the show you have put on to attract people to come to your theatre . First of all , I came to see the play just because my favourite actress should have been in it , but she was n't . The time of the evening performance on the ticket was 19.30 and actually it started at 20.15 , which forced visitors to stay in one place for 45 minutes , a waste of time . The ticket discounts were not available under any circumstances and the theatre restaurant was closed . I strongly recommend you to pay a minimum 50% of the full price that I paid . Your faithful I think that in 100 years from now , the clothes fashion will be totally different . In my opinion the world itself will be different in temperature as a result of global warming , also people will become nicer , less this will take place , so the clothes will mainly be made from cotton with smooth colours like dark green or grey . They will be comfortable clothes because the main point for any kind of clothing is to be comfortable . Also there will be no leather or feathers used in making these clothes because by that time the animal population will have fallen and Green peace will be very strong , much stronger and more powerful than it is now . So we can imagine the Future Fashion might be pleasant or unpleasant for different people . The styles will be more or less the same as each other and everyone will be satisfied with them . I am writing to reply to your letter and communicate my acceptance of the first prize in your Competition . This summer , I am available in July because in August my family and I are going to go to Canada and in September I will go back to university . If there is no chance to go to California in July , I could wait until next summer . About accommodation , I would like to have a log cabin because last year I had an accident and my back was injured , so sleeping in a tent would be painful for me . Due to my back injury , this year I could not train and play with my team , so I am not fit . It would be a good idea to be a referee . Although swimming is so boring , it would be a good thing to help cure my back . Could you please let me know where I will eat ? If there will be a vegetarian menu ? And how much is it ? And please could you give me some details about what the weather is like there and what type of clothes I will have to bring ? It was a hard month because my job was very hard . I worked 12 hours per day but always with fun people . I 'm writing this letter to complain about the musical show I saw during my stay in London . If I feel like talking to a friend I just have to call him and wherever he is I will be able to get through to him . I 'm extremely happy because not only do I earn a lot of money but also I 'm learning a lot . I 'd like to travel in July because I 've got an examination at USP in Roo Cohelo in July . And I 'd like to stay in a log cabin because I ca n't bear sleeping in a tent . I hate that kind of accommodation . I have recently received your letter saying that I have won the first prize in the competition . It was very fortunate for me . Please could you send me an itinerary of the trip ? I think that shopping can be both enjoyable and unenjoyable because sometimes the shops are full of people , especially at the weekends , which normally is the only appropriate time ! Danny Brook was meant to be the starring actor but he was not , another actor took his place . In the advertisement you say that there is a discount available but there was not . I think the next time you write an advertisement you should put in the right information . I did not have a perfect evening with so many problems . Yours faithfully Does technology have a bad or a good effect ? In the 18th century , technology started to grow more and more and the 20th century was called the century of technology . Technology helps people . It informs people , hospitals use modern technology , and the computer helps staders and helps people do their job . A lot of countries buy guns , for their defence they say , but they buy them to kill people . Technology ca n't ever stop going forward , and so people always go forward but with the same effection of modern technology . In the advertisement you promised a perfect evening out , but it was n't . It was very disappointing for me that the actor was n't Danny Brook , as was promised in the advertisement . So I want to ask for my money back , also I had to pay for but cancel the arranged taxi because of the wrong starting time in the advertisement . But are they useful in every situation and everywhere ? My opinion is that modern technology can help you to save time . But in your advertisement you wrote that people can visit the restaurant after the show . If I search for something like a telephone number or an address I also look it up on the Internet . Another important point for me is that things like listening to music or watching TV sound better and the pictures on TV are being improved , because the machines become better . The third problem was that it was written that discounts were available , but when I got there it was not true . For example , a car , which is used by everyone every day , changed my daily life in the sense that I do n't need my dad or my mum to go ice - skating or to go to work . I can do it by myself and for me it is important not only because of technology , but because I can show that I am responsible . In spite of the fact that the weather is bad , I play tennis . In addition speaking activity includes everything for learning English such as listening , speaking , and grammar as well . In other lessons , the teacher teaches lots of things which are grammar , English culture ... etc . I play the classical guitar and I also sing . I have been playing the classical guitar for three years . I wonder if you could tell me about the weather and what kind of clothes I ought to bring with me . It was very shameful for my mum . You also mentioned the activities I 'll be able to do . Although I 've been playing tennis for five years , I ca n't say I 'm a very good player . Firstly , the story takes place in South Africa , during the period of apartheid . I think that you ca n't understand all the links between the events without reading the book more than once . Moreover , once I was paying for the tickets , I found another thing out : there were no discounts available . I had to go back to the hotel , because all the restaurants in the area were completely crowded . Summing up , you might have realised that that was n't " my perfect evening out " which you promised , so I would like you to give me the money I paid for the ticket back . She works as a model , and she was advising him about what clothes , etc , ... to buy for her . I decided to go to a play at the theatre of which you 're the manager to see " London 's newest and best musical show . " The principal reason I 'm writing to you at the moment is that I want my money back , because I felt so disappointed with the theatre and also with the play . Before modern technologies arrived , you could n't communicate as easily as we can do today . You can communicate with people in places where you would never imagine going to because it would be too expensive . But , if you do n't like using the keyboard to say something or to communicate , you can use video conferencing , a system which lets you talk with other people simply with a microphone and speakers . The modern technologies mean I am able to listen the music I 've downloaded with the same quality as a CD , and if I buy a reproductor , I can carry this music everywhere . Also computers and mobile phones have evolved thanks to modern technologies . As far as accommodation is concerned , I would prefer to stay in a log cabin because I think it is more comfortable , and , therefore , I have never stayed in a tent . To sum up , it is clear that not only should the film be about the subjects they study , but it should concern their sports activities as well . On that date , I decided to spend one evening seeing a musical show as I was on holiday in London and was interested in the musical show . I found the theatre rather noisy as I arrived very early to sit in the front row . However , something wrong occurred again . The actor ' Danny brook ' , whom you advertised in the brochure , did not play a part in the show . I am not satisfied with your show as it was completely different from the advertisement . It 's completely different ! Have you ever been to a fashion show named " New trend , New Millennium " ? ' How can we go out wearing those clothes ? ' On the other hand , some people refuse to wear that sort of clothes so they prefer to wear nothing . In fact , unlike the perfect evening out that you promised in your advertisement , I had a very disappointing evening . There were also the discounts which were n't available . Can you imagine how exciting it is when we are in the dark and very quiet and we can hear the sound of the animals . I have been doing a lot of them when I have had some free time and when I feel impressed with where I have been . Finally I would like to ask you about I have to spent any money over there without my shopping and how the weather is over there in July because I will pack the clothes as useful . It was brilliant . You know , you have to very strongly when you have to do that because when people came in they could n't wait to get to the front and they try to go through very quickly . So you have to explain a lot of times to make people calm down and stand in a row . Apart from that , here is the information that you asked me for : - About the accommodation , as I read , you can offer me a log cabin or a tent . That 's so good when you have the money to enjoy it but , apart from that , there are many problems . Also there is a big problem : the money . Secondly , I would be very grateful if you could accommodate me in tents rather than log cabins . From the list of activities in which I will have a chance to compete I have chosen basketball and swimming . But , is n't it a kind of entertainment ? For example , imagine that you are a bride and you have to buy an appropriate outfit . I am writing this letter to complain about the Circle Theatre . Secondly discounts were not available . What 's more , the theatre restaurant was closed when the show finished , because the show started at 20:15 . It was not a perfect evening whatsoever . Everything will be useful and convenient , even fashion . The most important thing will be your figure , such as long legs or pear - shaped . Traditional or Contemporary In conclusion , the clothes will be more interesting than now for everybody . I 'm used to sleeping in a tent from my previous holidays and I always enjoyed it . I actually enjoyed it working there and I would n't hesitate to work there again . The activities listed in your letter all seemed to be interesting . I chose to play basketball ( I play in a club , I am quite good ) and to do photography ( there must be beautiful pictures to take in California ) . You asked me which accommodation I would prefer . Moreover , the admission fee is free for students . In addition to this you will be able to control all parts of the house by computer such as temperature or vacuum cleaning . About the accommodation , I would prefer to stay in a log cabin rather than in a tent because I have a bad back and I think that sleeping in a tent could be not just uncomfortable but also painful for me . Let us then ask : ' Is this activity always enjoyable ? ' Far from the strength that doing a sport or even going to work requires , going shopping is something you can do either on your own or with all your family and it could not be easier ; you only need a good pair of shoes and a wallet full of money . However , this apparently quiet and relaxed activity can sometimes turn into a living hell ; you may only be able to go shopping at the weekend and then , if you do go , you will find yourself in the middle of a huge crowd of people , unable to get to any product or even shop and feeling dizzy with the mixture of smells that come from the people . On balance I would say that although it is true that shopping is not a difficult activity , it is also true that it is definitely not an enjoyable one . I received your letter this morning and I was very surprised by it . I am writing to you about your questions . First , I can come there only in July because of my examination , I have to take it in June , and my new term will also start in September . My main work was to take people to their seats because of a concert hall , which was the millennium dome . I also sold a pamphlet of that concert , CD and T - shirts . I told you before Elton John performed at that concert , so there were a lot of famous people . She was absolutely beautiful . I 'm pleased to receive your letter and really happy that I won the first prize . July is also good because the weather is warm and I could enjoy the time I will spend in the camp more . I think I can handle it very well . I 've chosen Photography because I love to take pictures ! if I have to take any special equipment for the activities that I 've chosen Whether there is a phone , a fax or e - mail so I can be in touch with my family . Yesterday was Valentine 's day here in Portugal . In particular I had to spend it alone ... again . I 'm writing to you to tell you about a pop concert that happened here in São Rafael . Red Hot Chilli Peppers came here for a short time and they played at the " Chedicard Hall " . It was really cool because I did some backstage work . I was everywhere . I took lots of pictures , asked for autographs and I even gave them my cell phone number ! They promised me that they would call me someday , which I particularly doubt . I hope you answer this letter as quickly as possible with lots of thing to tell me . Dear Manager : I am Angela Ounis and I am writing to you because I went to see ' Over the Rainbow ' , London 's newest and best musical show . Also it was said that Discounts would be available , but I did n't receive any discount as you were cheating us . I know that you have a big responsibility but if you have told something to people , stick to it . I have learned a lot with the Internet . It gives me the opportunity to know more about things I never knew about . I had n't thought about a restaurant to go to after the show , because if the advertisement had been right , there should have been a luxury restaurant where I could eat . Yours sincerely We are in the age of technological development , of that there can be no doubt . First of all , we would like to say thank you very much for organising our tour around London and our programme , which is considered especially good for us because of the places we will visit . Secondly , we saw last Saturday in the Oxfor News an advertisement about the London Fashion and Leisure Show and we would like to know if it would be possible to include this show in our tour . The show is going to take place in the General Exhibition Hall in London , Thursday the 14 of March , so it could be a good idea to see this show instead of going to the Science Museum . We think that it could be a great opportunity because in one day we can see everything concerning fashionable clothes , new make - up and hairstyles . In this letter you ask me for some further information for my convenience for this trip . I received your letter , which says I won the first prize in your competition - two weeks at Camp California in the U.S.A. I appreciate that and I thank you sincerely for having chosen me as a winner . I accept and I want to inform you that I can travel only in July because I have booked my annual leave for that period . I helped them to prepare the room for the bands and I decorated the place for the singers . It took a long time to test the speakers and the microphones . The audience was excited and I can not describe my happiness . I still have the sound of the music in my ears and the voices of the young people who were accompanying our songs . I am writing to you to give you some required information . As you can see , I have absolutely no experience in it . During my stay I went to your theatre to see a musical show and unfortunately I had a very disappointing evening . Lastly , about the ticket . The advertisment said ' Discounts Available ' but no way , I had to pay the full £ 20.00 and the restaurant was closed because of rebuilding or something . However , the point that I am trying to make is that you just ruined my holiday . Your advertisement was unfair . As you are a manager , you have responsibility for justifying this problem . and I have a right to get fair treatment as a customer . But I say fashion is Artistic inspiration which is expressed by fabric and all sorts of material . As I said before , fashion is somehow influenced by science and inspirations that we get from all sorts of environments . These days we are very interested in space and the millennium and things and many designers have shown millennium looks recently . I expect human beings will live on other planets and travel around under the sea . I think people will wear those spacy- and cyber - looking clothes after a century . Can you imagine you and your friends going on a picnic to the Moon with a silvery skirt with astronaut boots with fire coming out at the bottom of your boots ? It could be more fascinating . Swimming is my favourite way of exercising and keeping fit . THIRDLY , I WAS VERY EMBARRASSED TO DISCOVER THERE WERE NO DISCOUNTS AT THE ENTRANCE . I always have a positive approach with all of the most recent inventions or any other kind of modern appliance . Anyway , the thing that has changed my daily life most is the personal computer and , especially , the Internet . Also , the times printed in your advertisement were 14.30 and 19:30 . In your advertisement , it said that discounts were available for the tickets . I was rather thirsty and hungry after the show and your advertisement made a cup of tea and some cakes in your restaurant sound rather inviting . It was not my ' perfect evening out ' , as your advertisement said it would be , and I would like some money back . It 's a natural reaction to be angry with somebody you do n't trust for gossiping about you and bothering your personal thoughts . But they do n't consider the problems the rumours may cause the famous family or couple . In conclusion , no matter what the journalist 's aims are , famous people deserve to have their problems , their affairs , their private lives just as normal people do . I saw your advertisement for your show at the circle theatre , over the rainbow . Also it was written in the advertisement that some discounts were available , but there were n't any discounts . First she said to her father , then to her mother and finally to her brother , that I was from another planet called Orion , that was a billion kilometres from Earth and then I was so ashamed because I have been her boyfriend since I came to Earth . I would like to thank you for choosing me . I am good at Basketball and tennis . At university I attended tennis lessons for two years . Finally I would like to ask you . As I told you two months ago , I saw the advertisement in the newspaper . Just before the concert I had to check that everyone was present . The concert was brilliant . It was terrible ! We had a lot of problems from the beginning . Everything was all right during the band 's performance , but at the end some spectators came up on the stage and did some damage to the band 's instruments . As you can see , hardly anything went well , but the lights and the sound - for both of which I helped carry things - were appropriate for the concert . Firstly , it was written in the advertisement that there would be stars and artists from around the world . I believe that it 's difficult to arrange meetings with foreign stars but there were artists from only six countries and in my opinion there That was excellent because it attracted people 's attention . regarding the accommodation , I would prefer a log cabin . I think that will be safer for all my things . The stage was gigantic . The crowd could be all around . I mean , it 's still unbelievable . Can you imagine how like a dream it was to be shaking their hands . Your advertisement was excellent and it gave me a lot of enthusiasm . Then , I think it 's interesting to answer the following question : This little essay shows that I depend on technology and , moreover , because I 'm in an electronic engineering school , I 'm keen on technology . I presume if the term becomes longer the festival will become better . I can say the actions which are prohibited at school are no problem at home . We think that it is a great opportunity because it is just once per year and it is free for students . We stayed at my aunt 's house which was in the centre of the village . I looked outside and saw two men go into the house in front of mine . The policeman came to take the burglar and thanked me for catching him . The concerts and the dance show were incredible , except for the classical concert that was in too small a hall . Secondly , the plays and films were very well organized despite the low numbers . The art exhibition showed us a new lifestyle and society that was totally different from ours . The talks by writers were very technical but they could be understood by all the people who were at the festival . In conclusion , I was impressed by all the good organisation , the service and the cost of the weekend ticket for all events . The price was excellent because there was n't any time limit . I hope that you organise this festival for all the coming years . At school you are n't allowed to bring in connected mobile phones although there is more than one student that does . Teachers will take it from you if it rings during school hours . If you break one of these rules you could be expelled for a week , a month or for ever . As well will have the responsibility of looking after my brother when they are n't at home . In answer to your question , I would n't change anything because I think that these are the minimum rules that a teenager has to have to be responsible in the future . I would be very grateful if you could give me some additional information . When she finished the sound check , I went to meet her . I told her I was very happy to be there and to have helped at the concert , and I asked her for an autograph . I am willing to show you the autograph and the photograph . When I got to the theatre I asked for the discounts shown in your advertisement , but they were not available . Despite this I was still excited about the show , but then I suddenly realised that Danny Brook was not performing , he had been replaced by an extremely disappointing actor . I 'm writing to you about our trip which you have organised . Sincerely , They need to be with their family in peace . In fact on the stage appeared a completely different person . But to make everything clear I 'll start from the beginning . Our parents were very pleased and happy we were so ambitious . As a result we were grounded for all the holidays and all because of our almost perfect Pat . And what better way to solve this than to give the festival an international character . If you like fishing , you can try to collaborate with the local market or some shops , in order to sell them the fish you catch yourself . I prefer to stay in a cabin because I have never been on holiday in a tent before , so I think it is more comfortable to sleep in a bed instead of outside in a tent . The activities I would like to do during these two weeks are basketball and swimming . I think I can play basketball well , because a few years ago I was a member of the school team . Swimming is not my favourite sport but I prefer swimming to golf or tennis . Please could you inform me what you mean when you say all the accommodation is paid for : is that including food and drinks , so that I know how much money I have to bring with me , and what kind of weather it is during this period of the year so that I know what kind of clothes I have to take . I was the assistant of the person responsible for the clothes and make - up of the pop group . Really I was very nervous about that because it was my first time with such famous people , but I am very happy that all the things went very well . Kim , what I really particularly liked was when I was asked to do the make - up on my own . Really I was very nervous but at the same time very happy , but everything went well and everybody was very happy with my work . Really I think you have to try to do the same thing next summer , I really enjoyed it . You ca n't go outside in peace , and there is always a crowd of people who stand in front of your house waiting for you . We have seen it in an advertisement and I would like to go to the show . It is a great opportunity for us because the fashion is fascinating and free . For example , we would be able to put off our visit to the science museums on Tuesday morning till Wednesday afternoon . The fashion show starts at 10 o'clock and finishes at 7 o'clock . Journalists follow famous people , such as politicians and film stars , in order to take photos and get information about them . I think that it is very dangerous because the famous people can not have a private life and consequently they may suffer from depression and sadness , which may lead them to suicide . I think that the government have to protect them and their private life from the journalists , by punishing journalists . I am writing to complain about the Musical ' Over the Rainbow ' , performed at the Circle theatre last week . What was supposed to be a perfect evening out turned out to be a disappointing one instead . If I want to know how a friend is , I just have to phone him ; I can see how the world is getting on just by switching on the television , and I can cook in a few minutes using the Microwave oven . In conclusion , I think that technology has two faces which affect my life as well as everybody else 's life . As far as accommodation is concerned , I would like to live in a tent at Camp California . I prefer this type of accommodation because I am used to living in tents during my summer holidays . Concerning the accommodation , I would prefer to sleep in a log cabin , because to sleep in a tent would remind me of the bad experience I had in Ireland because of the weather ... But so far I have only taken pictures on holiday and of some family celebrations . Otherwise I had to keep walking until the train started . I was sitting under a full - bloomed cherry blossom tree . Their hobbies were listening to the radio , reading books or sitting on a chair without doing anything . The performances were great , but some halls were too small to accommodate all the people who were there that day . So , in the daytime , we can focus on our studies . George was about to be lynched on account of his skin colour . The place where I was hidden was overlooking the house where he was kept prisoner . No one was guarding him . One of the reasons that I have visited your arts festival was to see a lot of plays . In the future , I hope to be an actress and that 's why I want to learn something from the professionals . They want too much fromstudent and are unkind to them . I 'm writing to you to answer the letter in which , as you probably know , you congratulated me for having won first prize in your competition and tried to encourage me to travel to California and attend that camp . I 'm writing to you to tell you how much I enjoyed last Saturday . It was such a beautiful night ! Unforgettable . I had always dreamt of being near " The Cranberies " , but I had never thought that the dream could become reality . During the afternoon , Tim and I spent the hours before the concert lying in the park next to the sports hall where the concert was to be held . After a few minutes the dream happened : Kare - the guitarist - appeared over there . Finally he said how grateful he was and allowed us to stay with them till the concert started . As far as accommodation is concerned , I would prefer to sleep in a tent . I have been travelling every summer since I was eighteen years of age and this type of accommodation is part of the ritual . Thanking you in advance , I am looking forward to your prompt response to my questions . I went as a volunteer in order to go for free . The accommodation and the food were part of the contract ... everything free . I met lots of nice cool people , and what I most enjoyed was the crazy atmosphere of the whole thing . The best thing was that I have learned how to take care of their expensive instruments and I have sung my favourite songs with them . There are so many monuments in California and so I will remember this holiday with my photographs . Finally I would like to ask you if I need any money , because you say all accommodation and travel costs are paid for . He also gave me his address and telephone number if I need help from him in the future . It continues to develop and always will be the most important thing in our life . When I asked something about a " discount " , your staff said that it was impossible . Becouse my favourite actor appears in it . We waited for the show to start for about one hour and forty - five minutes . During the show , we did n't see Danny Brook , who is my favourite actor . If Danny Brook does not appear , you have to say something about this to the people who are there in the theatre . This is your unforgivable mistake . After the show , we were still angry . We wanted to eat something in your theatre restaurant . Yours faithfully Everything is easy now . There was n't any discount available for the tickets and I went to the theatre with my three cousins from Brazil . faithfully , With the introduction of the computer in our civilization we can access the Internet to communicate with our relatives and friends living abroad or far from us . Besides this , the information goes faster than it used to now and it 's available at the same time in every part of the world . First of all , in your advertisement for the show you wrote that Danny Brook and Tina Truelove were taking part in the show . The people who were there to watch the show were very angry and they were shouting because they had to wait too long . And I absolutely agreed with them . Also in the advertisement you wrote that discounts were available , but they were n't , and also that people could visit the theatre restaurant after the show to eat some thing or to have a drink . So , the next day Pat went and told his sister Sally that her friends were organising a surprise party for her birthday . When Sally heard that , she was very surprised and very excited . But although she was acting like this she was very angry with her brother Pat , because he did n't keep the secret . Suddenly they all shouted " Surprise ! " . Sally , although she knew about it , seemed very surprised ! So her friends did n't realise that she knew about the party and they were very happy because they believed that the surprise party had been a success ! It was an unforgettable night ! ! ! I am writing to complain about the evening at the Circle Theatre presenting " Over the Rainbow " . Everybody will wear anything he / she likes , choosing clothes from any century they wish without this being strange . On the other hand , if human society changes to become stricter and more limited , there will be only 2 or 3 types of clothing , formed by the needs of society . I 'm very sorry to tell you that I had a very disappointing evening . First , I got there at 7:00 pm , because the show was about to start at 7:30 pm , and I needed some time to buy the tickets . I bought two tickets for £ 20 and when I asked for a discount , they did n't give me one , then I was kept waiting for the show to start until 8:15 pm . Later when the show finished , I planned to go to the restaurant and get some food , but it was closed , because it was being repaired . I was in love with a friend 's boyfriend and we were about to have an affair , but when I made the big mistake of telling my little and terrible secret to Pat , everything started going wrong . Katrin , my friend , and the one I was being bad to , was very upset with me , and she was right , but I really did n't know what to do . I was in love with Brett , but I loved my friend too . Then I decide to talk to Katrin . I was very sorry for all I had done , so I apologised to her and promised her that this would never happen again . Recently I decided to see Over The Rainbow , a very famous and well - known show . Furthermore , I was shocked when one of the main actors came onto the stage . He was n't Danny Brook , one of the reasons for my choice of coming to see Over the Rainbow . A century ago , when a farmer took the horses out of the stable and put the plough behind them , we 've got the word " time " . I must say a few words about the new electrical cars which surely will have a central role to play , especially today when fuel is so expensive . I am writing to you to complain about the differences between what the advertisement for the Circle theatre said about the musical show called ' Moreover , as I had read the advertisement carefully , I had planned to invite some friends to have dinner at the theatre 's restaurant . So , because of the things I have mentioned , I think I should be given some money back . I look forward to receiving some information from you . In addition to this , there is less communication between members of my family , because when we arrive home after an exhausting day racing against time , the only thing we want to do is lie on the sofa while watching television . On the other hand , and in conclusion , I think that this development has made my life more comfortable living surrounded by lots of gadgets with different functions . In the advertisement for the show you said that one of the stars was going to be Danny Brook , and to my surprise there was a different actor , and that really disappointed me . Then the show was supposed to start at 19.30 hours but it started at 20:15 , more than half an hour late . I had read in the advertisement that there were some discounts available but there were n't . And the theatre restaurant was being painted , so I could not go there . As you may understand it was not a perfect night and I was not pleased with the show or even with the service . Technology , are we prepared for these advances ? Technology improves our lives , we have high - tech equipment for cooking , for work , for study , well nearly for everything . And when we understood the Internet , we thought that meeting people from other countries and being able " to chat " with them was the height of technology . But now we can even see the face of the person we are chatting to . The Internet is amazing . And now of course there will be someone trying to improve it . Technology changes our daily life , it makes our life easy to live and of course more comfortable with computers , televisions , radios et cetera and sometimes safer , as with medicine . Definitely we should try to understand technology . If we know how to use it , technology will improve our way of life . When I met Caballos , my best friend , I felt embarrassed and disappointed and I could n't say anything . It is as if they lose their conscience while they are shopping . When you go shopping and there are a lot of people in the same place , all trying to find the best prices and not caring about anybody , this could drive anyone crazy . The long queues , crowded places , high prices , sales , all these things combined could make shopping an enjoyable thing for people who like doing it . So while I am at the Camp I want to take a lot of photographs and climb a mountain . Shopping sounds very enjoyable and is fantastic for women . You can find a lot of interesting things which were unexpected . They are also the lessons which English people and other foreigners are particularly curious about . This is a good opportunity to see how they learn in class . In conclusion , besides all that I mentioned , I highly recommend you video the students ' daily life and interview them . In fact , now I can write to friends who live in foreign countries , for example , in the morning and receive their answer in the evening or even just a minute after writing . Therefore I regard the Internet as quite a powerful tool and I believe it has given more strength to relationships between people . I am really glad to receive the first prize in your competition . It will be very pleasant joining the holiday . Regarding your first question , I would like to travel only in July because it is my school holiday so I would not miss any classes . As regards activities I would choose singing and surfing . Surfing because it is my favourite sport . I have been surfing since I was a child so I am pretty good at it . And singing because I really love it . I am not as good at singing as I am at surfing but I like doing it . I only had to stay behind the drummer supplying them with water whenever they wanted . I had a really nice time with them even though I would've preferred to stay at the front with the other people , I hope you 've enjoyed my experience , and I hope to hear from you soon . I received your letter and would be glad to spend two weeks at Camp California in the U.S.A. but I will only be able to go in July because in June I will be in Austria with a friend and for August I have rented an apartment with my family . You can come across a very disagreeable shop assistant and if you find what you wanted , you will not want to pay him or her for it . There is nothing more disagreeable than that . Further to the unpleasant event that took place last week , it is my right to complain about the musical show I saw when I was in London . The show was supposed to start at 19:30 and it did not start until 8:15 . Then I felt disappointed because the main actor had been changed . If that does not seem enough , after the show my boyfriend wanted to take me to eat something in the theatre 's restaurant but the unpleasant surprise was that it was closed because all the waiters were on holiday . I 'm always having holidays in July . It is my favourite time for holidays . Just the necessary . I think the people who enjoy shopping are greedy for materialistic things and they haven't any interests in the spirit ( ? ) , in the intellectual life . We must do something to help other people to feel better and be useful . It was very interesting , because I did different things . I took some photographs and I 'll show them to you when you come next week Dear director of the Circle Theatre ! On Friday we , my friend and I , visited your theatre to see ' Over the rainbow ' . It should have been my best evening that week , unfortunately it was n't . Instead of 7.30 am as your advertisement said , it started at 8.15 am . When the show started Danny Brook was not acting , which was a great disappointment for us both . We are both big fans of his When the show was finished we went to the restaurant to have something to eat . But then it was closed for repairs . Because of all this trouble I think we should have our money back . And next time , make sure that your advertisement is accurate ! When were nine years old and were in third grade we had a ' House ' where we used to play all afternoon . In fact it was n't a real house , it was some stones between the trees in the little forest near our house . It was a secret place and we had promised each other not to tell anybody about it . Usually we were cooking flower soup , and swapping secrets . One day when I was there alone , I heard some other kids approaching . I sat down behind one of the stones so they could n't see me . One minute later , Pat and half our class stood in ' the House ' looking and laughing at me and my flower soup . Maybe she did it to make friends . I do n't want to be rude , but this is not professional at all . Lastly I would like to inform you that I wanted to have dinner at your restaurant but they told me it was closed because it usually closes at 11:00 o'clock , So I am asking you : why do you advertise it if is not going to be available to the audience ? First , I am very disappointed about the star . I'M WRITING TO YOU TO DESCRIBE MY DISAGREEABLE EXPERIENCE IN YOUR THEATRE LAST SATURDAY , AT YOUR SHOW " OVER THE RAINBOW " . BUT WHAT I CANNOT FORGIVE YOUR COMPANY IS CHANGING THE TIME IT STARTS AT THE LAST MINUTE , MY HUSBAND IS A DANNY BROOK 'S FAN AND HE FELT REALLY DISAPPOINTED . WHEN THE SHOW WAS FINISHED , WE WANTED TO GO TO DINNER , AS YOU SUGGESTED IN THE PROGRAMME , BUT THE RESTAURANT WAS CLOSED BECAUSE IT WAS ON PUBLIC WORKS ! ! ! Definitely the worse . I would be grateful if you could consider our suggestion and please inform us of your decision as soon as possible . There are people from both sides of the argument who have strong feelings . Both of them are my favourite sports and I 'm quite good . You asked me for some further information and here are my " desires " : I stood at the entrance and there I had to check the tickets . Famous people , such as politicians and film stars , deserve to have a private life without journalists following them all the time . Famous people have always been the centre of interest for a number of people . This show would give us a lot of information about current activities , fashion and what is happening here in London with , for example , the latest fashions , leisure and sports wear , make - up , and hairstyles . If you agree , after the Science Museum , we can have lunch at a restaurant near the museum , then we can go directly from the restaurant to the Central Exhibition Hall . It does n't matter who they are , where they come from , what colour skin they have . There will be a number of Developments in Technology in the future , which could make our life easier to live but what should remain the same is the feeling of being together and love . Therefore , I hope that you can agree to a suitable arrangement between you and me . I started training in 1996 , and I have never given it up . There are more and more retailers opening . I could n't believe my luck . I was really sure that I won a return ticket to the Mediterranean Sea . Thirdly , the person on stage was very strange to me , because I expected to see " Danny Brook " , but I did n't . Although modern technology gives you many comfortable things for living , can it give you nature , peace and fresh air ? Let me express how disappointed I feel at this particular moment , or I should say angry , better sad . I would never have expected that I could be so deceived . This is not the first time I have been to your theatre and I have to tell you I have enjoyed many other plays , but be sure " Over the rainbow " will be the last one . As I am specially fond of musicals , I even travel abroad to see what 's new , I am probably one of your most devoted customers . I know this word is not the best but you have demonstrated that the theatre can be just as cold as any other business . Of course , you should give a refund for the money spent , not only to me but to all the audience . New fabrics create new textures , all kinds of accessories are added to create new versions , to refresh old ideas , to make new proposals that will last , as always , just a few weeks . Have you noticed that all the classic gentlemen wear the same type of suit ? And what about those kinds of intellectual and progressive people , do n't they all wear the same type of ugly but comfortable shoes ? I am sure that fashion will survive for ages , it will even change to become easier to use and cleaner , because we all need to feel a part of our society , communicate our way of living and thinking , be part of a group and , at the same time , be different . - When the musical finished I was terribly hungry so I decided to have something to eat but the restaurant was closed and the advertisement said that it would be open . Modern technology has changed my life in many different ways : To summarize , the modern technologies give you and allow you to do many things which would be impossible in the past but also creates many problems . As I was so looking forward to seeing Danny 's performance , I was very disappointed . It is a very good schedule , especially because you have considered different activities for us . Personally , I think it could be a great opportunity because it is something we all want to attend , and we are all interested in the latest fashion . We discussed the programme , and because the show will take the whole day , we would not mind going to the Science Museum on Wednesday instead of having free time all afternoon . I did n't even think of looking down . The clock was running .. tick , tock ... And suddenly everything stopped . I felt an enormous peace . Fortunately , I was n't alone . Thank you for the effort which you have made to organize this three - day programme in London and I am sure that we will have a great time there , especially in the National Art Gallery . The thing is that we have seen an advertisement for the London Fashion and Leisure Show . Furthermore , students can enter free ! Thank you for your attention and understanding . Perhaps , there will be personal computers which will control everything , every item of furniture , light , temperature . But , on the other hand , people will still have to programme them , as they have to do nowadays . All the rubbish , dust , dirty dishes , plates , cups will be washed automatically . IT 'S UNDENIABLE THAT DURING THIS CENTURY OUR WORLD HAS BEEN CHANGING . IN CONCLUSION , I REALLY BELIEVE THAT OUR DAILY LIFE IS VERY DIFFERENT TO WHAT IT WAS IN THE LAST CENTURY AND EVEN IN THE BEGINNING OF THIS CENTURY . During these past few decades , or rather in the 20th century , there has been a great deal of development in modern technology . One of the essential developments has been in our means of transportation . Another significant technological development is the invention of electrical appliances . Modern technology helps people in many ways and is indispensable . When the show finished I was intending to visit the theatre restaurant but it was closed . I was expecting a lovely and perfect evening out but it was the most disappointing experience I have ever had . When I wake up I take a shower using electricity then I prepare my breakfast in the oven then I go to school by bus , when I arrive at home I put my lunch in the microwave then I watch TV and do my homework using a pen . When I come back from jiu - jitsu I eat something that was cooked in the oven then I go to bed . About a millennium ago everything was different ; people did n't have electricity , they cooked their food on the fire and they did n't have pens . Regarding the two activities I have to choose , I decided to choose a new activity that I have never done before , which is Sailing . I am a total beginner at this . The other activity is Photography . I am not an expert , but I know how to use a camera . All I want is to improve my knowledge . I helped them with organizing the stage , cleaning everything , fixing what was broken and they even let me play with their guitars ! I had put some money aside for that month , thinking about the discount , but when I went to buy them they said that discounts were not available . Waiting for your reply . When she finished school , she went to study at the Agent Training Agency where she learnt about guns , clues , agencies , etc . She was sent to New York to discover how some people from the government gave money to the merchants because they wanted to build a Trade Centre there . Here is some further information about myself and a few enquiries . It is really fascinating to challenge the waves . As for accommodation , I would prefer log cabins , because I believe they are more comfortable than tents . Will I be given any pocket - money or do I need to bring my own money to cover additional expenses ? Martial arts are really exciting and are a great thing to film . The main character is the old man who has to fight against the sea to stay alive . They 're fighting for the same reason with the same strength , the man has to kill a brother , as he calls the fish . On account of the fact that staying in log cabins is much more interesting than staying in tents . I can sing plenty of songs , which include English songs and the Japanese songs , and I have a part - time job singing at a restaurant . Furthermore , I am going to enter a competition next year . Shopping is not always enjoyable . Sometimes there is a long queue or a machine is broken . A lot of circumstances will arise . Everybody had gone to buy lunch in the supermarket . In fact , nobody likes crowds and queues , especially not in the summertime . Obviously , I had to try another aisle . It was the longest queue I have ever been in . Even though I think most of the time it is very interesting , sometimes it gets people upset . Finally , the reasonable price of the tickets for the weekend was a good point , because all kinds of people can afford to buy them . I also think that you should have a snack bar or a little restaurant so that the people are not too hungry and moreover you can make a lot of profit . In conclusion , I do n't want to change anything in my house or at school , because I totally agree with the few rules that I have . I have chosen the two following activities . I have chosen sailing because I would like to try a new sport . I love water but I have never tried this sport before . Yours sincerely . People are often irritable and aggressive . Because women love shopping and you have to follow them everywhere and always give your opinion about clothes , music , perfumes ... yours sincerely The things I did were : preparing and checking the equipment , I had to clean all the stadium , making sure that all the lights were in perfect working order , that the singers were comfortable and relaxed , etc . It would be a great pleasure to spend two weeks at Camp California and I ca n't find any suitable words to express my enthusiasm . With regards accommodation I would prefer log cabins , as they are more comfortable and I like convenience . They are ready to sacrifice all their savings to get something that will make their neighbour jealous . So , as a conclusion , I might say that shopping is n't enjoyable at all and I 'd rather stay at home instead . After the show I needed to drink something in the theatre restaurant as the advertisement conceived , but it was closed . When Pat first came into a class or a group of teenagers there were no problems . Insofar as I came here especially to see him play , I have been very disappointed , and this could be the understatement of the year , as he is my favourite actor . Thirdly , the ad mentioned possible discounts . Personally speaking , I did n't see them and did n't even hear of them : I asked about it , but nobody seemed to know anything concerning discounts . As he closed his eyes , he started to travel along the dark paths of his conscience . The boy could not believe what he was hearing . At these words , Paul suddenly awoke . The show was called " Over the rainbow " and should be , to quote the advertisement , London 's newest and best musical show . I was very pleased that the main actors listed on the advertisement were Danny Brook and Tina Truelove . Furthermore you had mentioned some discounts in your advertisement , but I had to pay the full price although I am a student . The perfect evening you promised in your advertisement was the complete opposite and that is why I want to get some money back from you . First of all , I was attracted by the actors - Danny Brooks and Tina Truelove - and not by the actors who performed effectively that evening . These actors appeared forty - five minutes late according to what is written in your advertisement . And in conclusion I want you to give me my money back , ( I still have the advertisement if you want proof of what I say ) . As regards accommodation , I would choose to stay in tents . I do n't know much about the weather down there , in California , so I am rather puzzled about what to wear there . Also , I would like to know how much money I will need and which expenses I will have to cover myself . All these exhibits are really important and exciting for us because , nowadays , fashion has a huge influence on our lifestyle and we would like to know more about it . We think that we could go there on the 14th of March , in the evening , instead of going shopping . Nowadays , there are a lot of people who live only on the money they get from advertisements , reports about their last romance ... but not everyone does the same thing . On the other hand , there are the ones that are also respectable but , apart from their relations with journalists because of their work , they really need to be constantly sought by photographers . The media moves the world and famous people use it to improve their work , politicians for their campaigns and film stars to make their latest movie famous . In conclusion , I believe that shopping is not always enjoyable if you accidentally get into a bad situation or you can not control your expenditure carefully . In your letter you ask me to choose which type of accommodation I prefer . Hopefully I will meet some other girls interested in the same sport . Woods is thought to stand for all white people and this book could have an influence on them . Secondly , I would prefer to stay in a log cabin , because I am allergic to some insects that might get in a tent . I spent two weeks preparing the stage , speakers , backdrop , microphones , everything , with all the staff , and every night the artists came to rehearse their show . I could see how they really improved , and how nice they were with the staff . I am writing this letter because I had a week in London last month and I decided to see your show called " Over the rainbow " with my wife and children . We were disappointed because your advertisement was a misleading one . But cars create pollution : for example the greenhouse effect . Technology allows us to improve our knowledge in the sciences like medicine so as to cure more illnesses or to make people live longer . In my opinion it 's a lot better than the dictionary because it 's faster and you really find what you need . I am writing to you about an enjure that I had at your last musical at the Circle Theatre . First of all , I was surprised that Danny Brook and Tina Truelove did not perform . I read in your advertisement in Friday 's edition of the Times that the show should start at 19.30 but the performance started at 20.15 . I was waiting 45 minutes for nothing ! I am a student and I did n't get a discount ticket . I do n't understand the problem between your advertisement and the reality . For example , if I do n't have time to do my shopping after school because I have to do my homework , I go on the Internet and ask for what I need . From my point of view , the Internet is the most important invention of the 2000 century . You can book tickets for the theatre , sport , etc . I use the Internet all the time for my homework and in the future , I hope , I will be able to use it for my own work . Technology will not stop growing and helping people in the future . It was n't the first time I saw this show in your theatre , but it was the worst one . At first it was a great pleasure for me to get a ticket because I 'm one of Danny Brook 's greatest fans . It 's not that problem that there was no more discount available - but I had chosen it , because I 'm ( allowed ? ) . When the musical started at 20:15 ( not at 19:30 as advertised ) I was really shocked when I realised that a different actor was playing his role . You have to know that I am very sick because of my blood pressure and so I was laying down the whole weekend . For me , as a scientist , it 's a big problem to show how the innovations of the last century went up with the environment and nature . Nowadays a simple thing like a computer includes so many possible ways of destroying different environmental compartments . On the one hand there are the materials from which the PCs are made , on the other hand is the huge waste problem . Now I try to show , in my daily work , how the airborn chlororganics , which are degased from plastics , will be separated and damaged by green plants . Sometimes it seems to me like a joke if I think about all the dangerous materials I need to do my job . Therefore it makes sense to use the innovations which are causing environmental destruction . When I was 15 , I was starting to look for new clothes , shoes , and everything I would find now unnecessary . I would not dare to calculate how much I have spent on those things without thinking . However , it was not bad . My mum always told me that I had n't earned enough money so I should n't have spent it in the wrong way . I have never been to the USA , so I think that this trip will be an unforgettable experience . I look forward to receiving your reply . For practical information , this show starts at 10.00 and closes at 19.00 . It is not too far and the opening hours suit us . We also suggest visiting the Science Museum on Wednesday morning and in the afternoon , if some of us are interested , we could see the National Art Gallery . They will become less dark and more comfortable than today . These improvements will be involved by the lack of petrol and non - renewable energy . About the size of houses , I think that in cities houses will be more and more small because of overpopulation . But about the differences between the homes of the rich and poor , they will be the same in the future . I think that people will be as alone and jealous as today . As if this were not enough , once the show ended I had to walk twenty blocks to find a Restaurant since the theatre Restaurant was closed for maintenance . After reading the whole organized programme , we all agreed about the sightseeing tour by bus around London , which will give us the knowledge of this fantastic city we have all wanted to have since a long time ago . We found the advertisement in a local newspaper and have been thinking it could be such a good opportunity , because the show consists of these topics : Instead of going to the science museum , we could go to the London Fashion and Leisure Show , which is open on Tuesday , March 14 , from 10 am to 7 pm . Yours sincerely Not only because she 's famous and wrote lots of books , but she knows how to introduce characters and how to tell a good story us though deceiving the readers . In other words the story is set on a train which takes a trip along the orient . On the train , all the passengers seem to be involved in a crime . This is such a fascinating story and it 's the way Agatha Christie tells it . The mystery is drawn out until the last page of the book . I like Danny Brook very much , and his unexpected absence caused me great sadness . It 's all right , but I also think that he 's exaggerating . I do n't think I have done such a bad thing as to destroy our friendship . I like his company , and we are happy when we are together . I AM WRITING IN ORDER TO EXPRESS MY DISAPPOINTMENT AT THE SHOW " OVER THE RAINBOW " , PERFORMED 2 WEEKS AGO ; FIRST OF ALL , I READ IN THE ADVERTISEMENT THAT DANNY BROOK WAS TO ACT IN THE SHOW , BUT THE ACTOR THAT REALLY PLAYED WAS A DIFFERENT ONE , AND THIS WAS VERY DISAPPOINTING . I THINK THAT FASHION IN THE FUTURE WILL DEVELOP ALONG VERY DIFFERENT LINES : THERE MAY BE A RETURN TO THE FASHION OF THE PAST , AS WE CAN NOTICE NOW , OR A MORE FANTASTIC AND TECHNOLOGICAL DEVELOPMENT . SURELY , ORDINARY PEOPLE WILL NOT FOLLOW ONLY THE MODELS PRESENTED ON TV . AS REGARDS EVERYDAY LIFE , I THINK THAT IN THE FUTURE ATTENTION WILL BE FOCUSED ON COMFORT MORE THAN ON ELEGANCE . BUT IF IT IS DIFFICULT TO FORECAST THE DEVELOPMENTS OF THE FASHION WORLD , IT IS NEARLY IMPOSSIBLE TO FORECAST THOSE OF THE COMMON PEOPLE , THAT IS A TOO VARIED A CATEGORY . One of my hobbies is photography , so I think I am rather good at it , but I will take painting to learn , because I am not very talented at it . After carrying stuff like lights , microphones , wires and some other equipment for about three hours , I was exhausted . It 's a great opportunity for me to participate in your Camp California because normally I work a lot and I ca n't spend money on travel . Moreover , I have to support a big family because I 'm married and I have three children . I have to choose painting and photography therefore . I would prefer surfing or climbing but I have to think of my health . I 'm very enthusiastic and I wait for your answer as soon is possible . FIRST OF ALL , IN YOUR ADVERTISEMENT YOU SAID THAT DISCOUNTS WERE AVAILABLE , BUT I COULDN'T FIND THEM AVAILABLE ANYWHERE . THE PLAY STARTED AT QUARTER PAST EIGHT : FORTY - FIVE MINUTES LATE . MY ADDRESS IS IN THE ENVELOPE . I'M LOOKING FORWARD TO HEARING FROM YOU IN THE VERY NEAR FUTURE . I like to sleep in a tent under the open sky since I have done military service , therefore I would prefer a tent as my accommodation . It is important for my health that I swim an hour a week because I am overweight . When I have enough money the price is n't important , then I can buy a lot of things without considering my money . Finally , I am going to write about the theatre , the Circle Theatre . I 'm looking forward to receiving a letter from you . The rooms will be designed in a futuristic fashion , where there will be less furniture and everything will be compact . Even TV - sets will be on the ceiling . Technology also means all electrical machines , which do n't stop being developed . Machines have replaced the work of humans . Our whole life is being simplified by machines for not waste the time to work on their development . Here I will answer all the questions that you asked me , and I will ask you about other things that you did n't mention . I 'd like to organize my trip for July because that is when I have vacations , also because it is summertime in the U.S.A . About accommodation at Camp I 'd prefer a tent , because it 's a new experience for me and I 'd like to sleep in a tent to have a great time while having a new adventure . Thank you very much for your cooperation . Most of the time when we go to the shopping centre we have a lot of fun . We go to stores to look at clothing , we also eat something like ice cream or French Fries , but is not enjoyable all the time . In that instance we do n't enjoy shopping because we ca n't find what we are looking for and we have a bad time in the shopping centre . I was absolutely thrilled to receive the news about my winning a competition . I do n't like cold nights and mosquitoes . Yours faithfully Usually people do n't have time for shopping . There are huge queues to the tills , noise , hassle , poor customer service . You 've got more stress , you feel fed up and finally when you get home you think that shopping is not as enjoyable as you thought . There are so many varieties of products , different prices , different qualities . Nowadays technical progress gets close to us , to normal customers . Without any hassle , sitting in your chair in front of your computer , in a second you can get to any shop that has an internet site - most of the big companies have one - get all the information about the product , get a cheaper price and buy it . I know that staying in a log cabin is more convenient but I just want to have a wilder experience . And I want to know how much money I have to bring for personal expenses . Besides , I really would like to know approximately how much money I should take with me . Concerning the activities , I have chosen two of them . It was boring that nothing happened for such a long time on the stage . And finally , I would have had my dinner after this disappointing musical and thought I would go to ' Theatre restaurant ' . This is not a taboo subject with me and my friends . I had doubts when somebody said that the fashion of the future would be different . Are they included in the prize ? I 'd prefer it if you gave me this information as soon as you can . However , those days were unforgettable for me . I will be very happy to travel in July because in that month I am going to have my holidays , so I will not have to ask permission from my boss . I would prefer to stay in a tent , because in that way I can feel closer to nature , and I can remember when I was a girl scout . At the camp I would like to choose two activities , Painting and Singing . I love painting . At university I studied art for two years , but now I do n't have much time to paint because I work in a bank and I have a baby . The reason for my choice of singing is that I feel embarrassed about my voice , so maybe I could improve it . Thank you for giving me this opportunity . You are never going to believe what I did last month . I was walking with my sister in Oxford circus , when suddenly a man stopped us saying that he was looking for people to help at a concert and they were going to pay us five pounds an hour . We said yes immediately . I nearly shouted with happiness when they told us that Luis Miguel was giving the concert . He is my favourite singer . The concert was on a Sunday and we had to work at the back of the stage , doing all sorts of things like collecting rubbish and helping other people who were working there . Other bad points can be mentioned , like pollution for example . I am writing to you to complain about the musical show , where everything was completely different from the advertisement . Modern life has been full of science and technology . I am very pleased that I was born in a time when there is such good technology but my parents did n't have the same luck . My life is much easier with all this stuff mentioned above - technology and science . The bad side is we can use technology for war - missiles , weapons , etc .... Indeed technology has changed our lives , we have become more sceptical and cold . Sometimes I think technology is not a good thing .... People whom I work with are going on holiday in June and August . Also , the accommodation I would prefer at Camp California is the log cabin , because first when I was a little child we stayed in a small house every holiday and I like that . However , drawing some beautiful scenery and taking some pictures would be a very good experience for me . I 'm not keen on liars , Mr Smith , and I think that you 've lied to naive tourists like us : some brilliant actors were supposed to play the parts and we only had different , pitiful ones . Otherwise I 'll have to put some other ads out in London saying that your show is just a fraud ! Nowadays , the Internet and the mobile phone , with the development of satellite communication , seem to take the lead . As far as I am concerned , the first way modern technology influences me is through my work : the Internet has become such an incredible tool , I can research into everything I want , find information for lectures , for example , or exercises . Maybe it will change me into a kind of self - centred person , a loner . But we should not forget that they are only tools and should emphasise human relationships . Finally , I 'd like to play tennis and to try climbing . This book remains one of the best in American literature . Based on a very simple story , the story of an old man fishing , it is a deep reflection on age . A veteran fisherman takes his boat and goes fishing to convince himself and other men that he is still able to do it . The 24-hour fight is described in such a peaceful , faithful way that it callas a though about life and death . I recommend this book as a way to discover both Hemingway and American literature . Before answering your letter ( which I have just received ) about the prize for the competition I recently won , I 'd like to say thank you very much for giving me the chance of going to the USA . About the accommodation , I think I would prefer to be in a log cabin instead of a tent , since it is more comfortable . In addition to this , I would like to know the amount of money I should bring , as well as the kind of clothes that I could need and the sort of people that I will find there . None of the groups are known at the moment , but I believe they are well on their way to becoming famous bands . This was the best part because when everyone was gone , Billy Joel arrived to give his support to the beginners ! ! ! I could n't believe my eyes ... Jane took a photograph of us together . Lastly , I do not think I would call this my perfect evening , so I would like to ask for a refund , and I hope as the Manager of London 's newest theatre , you will handle the situation favourably . Even though Pat has got a great sense of humour and wonderful personality , he 'll never be able to keep any secrets from anyone , even himself . Although , we are great friends , sometimes people can make such stupid mistakes , and so there was one time when Pat and I had a fight . It all started when once I accidentally took the wrong bag back to my house , and there were lady 's knickers inside . I was so nervous and embarrassed , so I told Pat and off he went : he told every single student in the school that I 'd stolen a girl 's knickers , and everyone started to call me a pervert . When I was a young child , I used to be interested in reading science fiction . First I can travel only in July because I will finish school at the end of June and I will sit my exam in September ; so I have to revise for it a lot during the month of August . I particularly liked seeing all those people , and I met a lot of new friends there . I would like to travel only in July because I would be on school holidays then and the weather is hot and the sea 's temperature is less cold than in winter . It is very nice to stay in tents which are strong and comfortable . And you need a strategy to win the match . But you ca n't play if there is too much wind , because the ball becomes uncontrollable ! It looks fragile and it could break easily . It has always been my dream to go there and to be able to see that beautiful country . It will be very interesting for me because normally I do not have a lot of time to do activities . I would prefer swimming because I really like it and I am trying to swim whenever I have got some time , and painting because I have finished a painting course and I have some practice with this . That is very nice that all costs are paid for but I would like to ask you how much money I should take with me because I do not know anything about prizes in the U.S.A. and please tell me if I need anything to paint because it would be difficult to take it with me , so if I will need to take everything I will just change this activity . It was a really wonderful new experience for me . The people were wonderful , they were helping each other with everything and it was a lot easier to do . I am writing to you , because I would like to disagree with your advertisement for the show ' over the Rainbow ' . As it is said in the advertisement the show starts at 19.30 but I had to stay outside for 45 minutes , because according to the programme it started at 20.15 , but that is not the end of the story ; in your advertisement it is clearly said that you have discounts available on tickets . That was not true ! I was still not very disappointed , because I hoped that I would have a good meal with a glass of wine in the restaurant , which I could have according to your advertisement , but what I did not realise , it was closed , because the chef was in hospital . Such as a mobile phone that helps me to communicate with anyone in the world , even if I am not at home ; I use a stereo if I want to listen to my favourite music ; I use tapes , CDs , hairdryers , etc . Many years ago people did n't have an opportunity to use all these things and they had to work a lot . This is just a note to confirm for you that I have received your letter . To answer your questions , I would like to tell you that I can only travel in July , because I will be studying for the Cambridge exam till 1 July . Would it be possible to have accommodation at Camp California in a tent , because I haven't had a chance to sleep in one . And would it be possible to do swimming and surfing . I have been dreaming about this activity since I was 10 years old . I would like to know how many people will stay with me in the tent , and do I have to take with me any special clothes for surfing . I look forward to being at Camp California in the U.S.A. I think going shopping in a big space like Harrodss is not a pleasure . I like to be in small boutiques , and I would rather go shopping along and during the weekend . And going shopping after the weekend is not for me . I would like to travel in July because I am a student so I only have holidays in this part of the year . About the accommodation , I would like to stay in a log cabin because I am used to staying in them when I travel . Sometimes , shopping can be really boring , especially on important dates when the shops are absolutely crowded and you ca n't see anything you wanted with careful . I received your letter this morning . Thank you very much for your kind letter and for choosing me . I have knowledge of navigation , engine , ropes and knots , and sails as well . It was a nightmare , there were pickpockets in the shop . But you must always be on your guard against pickpockets . I am only able to take my holiday in July . The rest of the year I work . I 'm crazy about tennis and swimming . Can you imagine Friday night ? You have worked hard all day . On the way home you want to pick up some milk from the shop and you have to wait ten minutes on average . There are a lot of options and items to make our choice difficult . After shopping you have to carry a heavy bag a long way home But the situation was n't simple , so Hill decided to discuss it with Mary , the teacher 's cousin . I would be grateful if you could put me into the tent side of accommodation because I have had all my holidays with my parents in luxury hotels . Pat entered the fight , and it became more loud and aggressive . I went to London to see this musical but I was absolutely disappointed by the show . It was about 21:00 , I thought it was a bit later but it was n't my fault anyway . 100 years ago , people dressed differently . The environment will be very polluted and finally we 'll get diseases . We will need helmets to cover our heads and we will also need air - supplyer . Maybe , science will be developed and make our environment clean , and we will not wear anything at all ! ! ! ( except underwear ) . I hope that the environment will be better than now in the future and our fashion will be changed but nobody knows how it will be . The advertisement promised there would be my favourite star , Danny Brook , but there was another actor who could not play his part as well as Danny Brook . In addition , the performance started 45 minutes late , so we could n't visit your theatre restaurant after the show because it was closed already . So I am sure you will understand why I am so annoyed and frustrated with the whole incident . Two days before , her best friend Maria told her that her parents were going to divorce . Maria was so upset that she could n't keep it to herself . They could not believe their eyes . Maria had bought his favourite food and she threw it into the bin . She went to school , but she could not follow the lessons as easily as she used to . Moreover , the theatre restaurant was closed for maintenance . In addition , I can go to Britain by plane to see her . When I received your letter , I could not believe it . Unfortunately , I will only be able to go in July because the restaurant where I am working will be closed for that month . I am in doubt as to what kind of clothes I have to bring with me . I had the best experience in my life . Can you guess who they chose for the job , " me " , yes , me , I could n't believe it . My job basically was to , before and after the actuation , make everything ready . To be honest the most exciting part of all this was getting to know the group . Yours Sincerely , First of all I helped with the decoration of the place where the concert would take place . I am writing to you to " help " you with your festival next year . Last year was n't very good so maybe we can make it more attractive this year . First , I think we should rent bigger halls so that we can make a better sound and give more space for the audience ! We can invite stars and artists from around the world who will play and presentspresent all kinds of music like jazz , rock , classical etc . Afterwards we could let people talk with the artists so they could get to know them personally . If you want to hear more of my suggestions and opinions about it please contact me on my cellphone . Yours sincerely First of all , it depends what kind of school it is : Polish students have to study a lot with books and they have fewer practical lessons , and sometimes it 's hard to get books or other things needed for studying . School is supposed to be our second home but it 's not . We work hard and at the end of our education we still have nothing . I would make schools less stressful , with added fun 'cause that way it 's easier to learn and I would give students more chances to share their fantasies at school . Maybe the Polish system is not bad , but it 's comfortable too . I know that this letter will not change anything but you can see how complicated a Polish student 's life is . I 'm not sure about the weather in California in the daytime and in the nighttime . Thank you very much for your offer . From my point of view , your organisation has to be careful to organise an activity . It was unpleasant for me to see different actors on the stage . In the advertisement that I received , it was written that the show would start at 19:30 but I kept waiting for it to start for half an hour . I am writing to you about my complaints about the musical show at your theatre that I watched a week ago , during my stay in London . Another problem was the male actor who starred : the well - known and talented actor mentioned in the advertisement was replaced by another one , who was really very disappointing and after the performance , I visited the theatre restaurant , which was supposed to be open and available for meals after the show , but it was closed . I appreciated this big news . I am very keen on photography so I definitely will choose this as one of my activities at the camp . I have got some experience already and I 'm used to any weather conditions , furthermore I simply love water sports and their challenges . My tasks were very specific . Its name is " Best Detective Stories of Agatha Christie " , and I really was impressed with the coherence of the stories . It 's stimulating to read them . I 'm sure that if you listen to it you will start reading the book immediately , and find out there are many challenges in your new career . We are waiting for your decision and we will accept it whatever it may be . The clearest example is to compare a house from the beginning of the 20th century with our houses . Both are very similar but now we have new technologies . I am writing this letter to inform you that I have received your letters and I am going on the trip . Every night I would like to go out of the small tent into the nice environment outside the tent . I was a bit disappointed with the result because I was expected to win the first prize or second prize . At first I was surprised but a few seconds later , when I realised that I was n't allowed to go , I tried to persuade my teacher to let me go . I had to keep things in place and check that the microphones were working properly . I was really embarrassed because I had to dance in front of a lot of people but that was the very best experience I have ever had . Tell me yours . I want to know what experiences you had when you were in England . I would be grateful if you could include this show in your programme . This is a great opportunity for me to explore and experience London myself , especially The London fashion and leisure shows . Most of the shows are about fashionable things for students my age . I think it is a good event and suitable for all of us because there are many different kinds of show , for instance latest fashions , leisure and sports wear , how to put on make - up and how to have appropriate hairstyles . In my opinion , I think you should have this event in the afternoon instead of going shopping and move the shopping slot to the afternoon on Wednesday . I trust you to pay immediate attention to my suggestions . I closed my eyes , took a deep breath and jumped out of the tower . There were hundreds of Thai students waiting to take this test . I was very afraid of the height and was very nervous . I was given the list of activities while I was taking part in the adventure school schemes at the soldier camps in the north of Thailand . The last task I had to do was jump out of the high tower . I eventually managed to complete all the tasks that I had been given and I was very proud of this . Surprisingly the show started at 20:15 . Of course I accepted immediately . After school Larry and I went to the cinema , but at the entrance there was a beautiful girl waiting for us . When we arrived at the shopping centre , I saw a lot of people . The task was not easy , at 18 you do n't know too much about cryptographic algorithms and databases but anyway we decided to do it . There was nothing to lose . Both of us went to the NASA university and nowadays we work for the CIA developing secure systems and new encryption algorithms . You should n't go shopping when the shops are so busy because it 's so annoying . You do n't have to be a genius to notice that technology has evolved so considerably during the last few decades that our everyday life has changed . I 'd prefer to take a tent because it is more romantic and exciting to spend nights in a tent . And with the tent I can go to another place in the camp . And I like painting because I like to paint nature , sea , mountains . I want to know some information about it . I 'm really looking forward to your answers . And I hope to see you soon . Yours sincerely Gubin . I abolutely agree with this . Because I have my own experience of shopping . For example , recently I was shopping at the market , which is located in the centre of our town . When I was there I saw a very beautiful T - shirt . I was upset about it . Our government is very bureaucratic . Our ministers are really criminal . They often break the law , stealing money . Because of it our state ca n't pay workers in schools , hospitals , on building sites . In our country there is a high number of unemployed . Often people ca n't buy a piece of bread . And they ask for money from other people . I wish that my accommodation at Camp California it must be in a tent . Anyway I enjoyed it so much . I haven't been to a concert before so the atmosphere was really good . Do you remember the computer course that we took together . It was very useful to classify each person at the concert . I congratulate you because that 's perfect . The advertisement for the musical said that it was going to be Danny Brook . Unfortunately there was someone else - an actor who I do not like and if I had known that he was going to be there I would not have gone to see him . In fact , modern technology was already very popular and commonly used when I was born , so I can not say that it changed my life suddenly . All these products of science are with me from the very beginning of my day . On the other hand , I am aware of all the disadvantages of modern technology ; pollution and the dangers it brings . But I think it has more advantages than disadvantages and it is O.K. I am really glad that I am a child of my century - the age of modern science . I am writing to answer your invitation which I have received as a first prize winner . There are also many kinds of take - away restaurants , where I can taste my favourite foods . But there is always a lot of traffic at all times , and the air is so polluted that I ca n't even breathe . I always feel very tired after the shopping because of unfriendly people who are too busy . What is more , admission for students is free . However , we have got a suggestion : we saw an advertisement for " the London Fashion and Leisure Show " which is going to be on Tuesday March 14 from 10:00 to 19:00 . I was pleased to receive your letter recently . Now I 'm going to give you some information you asked about . I 'm sorry to say this , but the only time I will be able to take this trip is in July , according to our team 's schedule . The next thing - I would prefer to spend all the nights in a tent , so I can move it to the place that will suit me best . I like to wake up with a view of mountains , which reminds me of my 5 years ' experience of climbing . So , is it possible ? I would like to continue doing my favourite hobbies in the Camp . Otherwise , you will either not find what you are looking for , or you will , and spend the rest of the day in a bad mood , because of the bad manners of sales people , who do not give you advice every time you ask for it . To summarise everything , I would recommend spending less time indoors , shopping during the weekdays . You wrote ' discounts available ' but they did n't offer any discount . But it was unpleasant because of these things . Owing to all of them , I can live very comfortably . In your letter you wrote that I will have the chance to do two activities ; first of all I would like to play tennis because I have been playing for seven years . Secondly I would like to attend a surfing course but I have just some elementary knowledge . It will be interesting to show how the lessons are organized , showing that we are never doing just one activity during the class . After that we have to make sure that we explain about the relationship between teachers and students , showing the times that we have been out together . Finally we should give some information also about our tourism , business and computer courses . Secondly , I would prefer to stay in a tent because I enjoy being outside close to nature . Sometimes the bad characters in a story are more interesting than the good ones . Its title was : " The Mystery of Hunter 's Lodge " . The character whom I liked most was that of Mrs. Havering , the mistress . It was very exciting because she could play two people at the same time : herself and the housekeeper . First of all I would like to say that it started later than it should have . I had to wait for about forty - five minutes . Then I realized that Danny Brook did not appear in the show , which was very diappointing for me because I like this actor very much , and I think that I was not the only one who was upset . Yours sincerely , They are very useful things which sometimes are necessary to survive . I watch about four hours of TV a day . I even eat my meals in front of the TV . We can see PEOPLE 'S LIFE in other countries , which is very interesting for me and my friends . Also the Internet has an influence on my daily life , because I can find there many interesting things , or I can meet with people from all over the world , which is exciting for me . I think that life without modern technology would be simple and boring . That 's why I am using it in my daily life . I am happy that there is such a thing as modern technology . Finally the day to pay my credit card arrived and where was my money ? All the students are happy that we will have the opportunity to visit London for three days . In the morning , we will have the chance to see some of the sights of London by bus , for example , the Science Museum or the National Art Gallery . The reason I write to you is that we have seen an advertisement for the London Fashion and Leisure Show , for a few days . The show is free for students and we can see the show instead of having free time on Wednesday in the afternoon . Nowadays , with the help of the media , famous people , like politicians or filmstars , play an important role in our community . Who got married , who got divorced or who has experienced a remarkable change in his complexion , these are questions that most journalists are interested in . There were some problems that were not displayed in the advertisement . In the advertisement it was clearly written that Danny Brook and Tina Truelove would play the main roles . The advertisement said that the show would start at 19:30 but it started at 20:15 . The advertisement said that they would be available but they were not . It was written in the advertisement that I could visit your theatre restaurant after the show , but unfortunately it was closed . We build big cities , there is hot and cold water , electricity , gas in practically every home . Many different incurable diseases have appeared . I 'm writing with reference to your letter . I was really thrilled , when I found out that I won first prize in your competition . I always dreamed about going to California and now my dreams are coming true . I 've always wanted to learn to sing professionally , but I 've never had an opportunity . When she tried to answer me , one small child took her picture with a flash . Truly , my work here was n't very important , but I really enjoyed it . I 'm writing this letter giving some opinions about the three days that the class will spend in London . So I 'm writing this letter , asking if you can change the programme . There is a great opportunity to go there because students need not pay anything . Our first challenge was stealing Dick 's girlfriend 's panties , but we failed . Nick and Dick could prove their bravery stealing their mother 's panties . " It was dangerous , but I knew I had to do it " , to prove my bravery to everyone . I USUALLY SWIM THREE TIMES A WEEK IN ORDER TO MAINTAIN A BACK TREATMENT WHICH MY DOCTOR HAS RECOMMENDED ME TO FOLLOW . SO , IF POSSIBLE , I WAS INTERESTED IN THE POSSIBILITY OF CONTINUING MY ROUTINE THERE . LASTLY , I WOULD LIKE YOU TO TELL ME IF I HAVE TO BRING SOME MONEY WITH ME TO BUY FOOD OR DRINKS AND HOW THE CLIMATE OF THE CAMPING AREA IS SO I CAN PACK MY LUGGAGE , BRINGING ONLY THE APPROPRIATE CLOTHES . THIS BOOK CONTAINED NINE STORIES WHICH WERE WRITTEN BY WELL - KNOWN WRITERS LIKE RAY BRADBURY . BUT THE MAIN PURPOSE OF THE BOOK IS TO ALLOW YOU TO FLY WITH YOUR IMAGINATION AND TO HAVE A GLIMPSE OF HOW LIFE IS GOING TO BE IN THE FUTURE , WHEN , PERHAPS THE WORLD WILL BE RULED BY MACHINES . SO , IF YOU ARE LOOKING FOR A " REALLY SPLENDID SCIENCE FICTION BOOK " I WILL RECOMMEND YOU TO READ " A WINDOW .. " AND I'M SURE THAT WHEN YOU FINISH READING IT YOU WILL WANT TO READ IT AGAIN , AND AGAIN ... ! I would like to ask whether you have competitions or different activities . Do you recommend me to take only summer clothes or some winter clothes as well ? I worked until midnight every day . It was very enjoyable . I made lots of friends . We were together all day , painting the walls , cleaning and putting up some balloons and other stuff everywhere . Famous people must understand that the journalists are doing their job . Second , regarding accommodation , I 'd like to stay in a log cabin . I also want to know if I should take any money , or if all the expenses are paid by you . That makes those people frustrated and they do n't enjoy themselves . Regarding accommodation in tents or log cabins , I would enjoy much more being in a tent as I believe that is the right type of accommodation for going camping . Men tease women for being shopping addicts and for having shopping as their favourite pastime . Everyone enjoys wearing nice new clothes . However , do we really like the process of choosing them ? I 'm writing to you to give my opinion of that great festival you organised last 21 and 22 of November . The festival was very well organised with a lot of alternatives like concerts and dance shows . In my opinion the hall for the rock concerts was too small . You have to consider booking a bigger one for next year because these kinds of events are attended by a lot of young people . At school it is completely different because the teachers do n't forgive you anything . I would n't like to change anything because we all need some discipline to do the right things . At first my favourite actor Danny Brook did n't perform , without any explanations being given , and the show should have started at 19:30 instead of 20:15 ! ! I was sure that discounts were available because I had read that they were , but at the ticket office they did n't offer them . All this story was a secret but Pat revealed it to his mother . I am writing to you because I am really disappointed about " Over the Rainbow " which I saw the other day during my stay in London which your company organized . I explained to you every detail about what happened at the musical show and I want you to refund my money and send me an apology for what happened there . Yours faithfully If we create guns to protect our homes , others will use them to burgle our homes , and take advantage of the defenceless people . Because I have had experience of staying in a tent and I like it very much . In my opinion tennis is the best sport I have ever played . I have just finished a professional photography course and I would like to continue my education in this activity . I was shocked because I had already spoken with them and I had got two autographs . Another part of my experience at the pop concert when we meet each other . First of all , the actors mentioned in the advertisement were not those who performed in the show . Plus , it is mentioned in your advertisement that discounts are available . In fact , no discount was given to me , though I am a student and as a student I was entitled to get a discount but I paid £ 20 because the cashier had never heard about any discounts for this show . As a student , the low priced ticket certainly attracted me a lot and gave me the opportunity to see and hear wonderful artists . Finally , I would like to make one big suggestion : you should find a place for a campsite so that people who come a long way do n't have to spend money on accommodation . Furthermore , department stores are always looking for students who would like to work . The London Fashion and Leisure Show is an amazing show because there are parades with the latest fashions . We could see some famous top models . Also there will be a variety of clothes either sports wear as elegant designs . I realised that my bag was outside and I went out to look for it , when a shower of stones covered the entrance of the hole . I walked alone a long distance until I found a telephone . I called the police and they ask for a rescue . When we finished at our primary school we went to the same secondary school too , but we were in different classes . And when we finished at the secondary school , I decided go to a foreign University . In my opinion , the clothes will be more colourful , fun and comfortable . People will prefer to wear comfortable clothes , even to go to the office . Actually , I think that the clothes will be really simple in 100 years and I hope to be alive until then . However , when I saw it , I was really disappointed and I must ask you for some money back . First of all , Danny Brook was not there . I was very upset because he is my favourite singer and that was one of the reasons why I wanted to see this show . On the development , they also said that there would be a discount for students who are between eighteen and twenty - five years old but that was totally wrong because I paid the full price , which was £ 20 . I am writing in order to complain about the musical show " Over the rainbow " . Regarding the times of the performance , the show was supposed to start at 19.30 and it started at 20.15 . Nobody likes to wait 45 minutes just watching empty scenery . I was waiting for 45 minutes . You can send a letter to your friend by e - mail instead of writing it on a piece of paper and sending it by post . After that " show " we were starving and we had planned to eat in your theatre restaurant but what a surprise ! Let 's take the mobile phone . Nowadays everybody has got a phone which is " mobile " . I 'm writing this letter to complain about your fake advertisement . First of all , in your show advertisement it says that Danny Brooks stars in the play . In the evenings before I go to bed I sit in the living room and watch TV via satellite . When I go to bed , because there are many mosquitoes , I turn on a special machine with a battery - like thing in it which kills them . I believe that modern technology has positively affected our lives . In order to fulfil their readers ' requirements they constantly follow them . On the other hand , famous people have a point if they do not allow the paparazzi to take their pictures , because although they are famous they also have their private life . Your programme is very good , especially as we can go to visit the Science Museum , which I heard is very good , but a visit to the London Fashion and Leisure Show would be a good opportunity for us to see the latest fashions , leisure and sports wear , make - up and hairstyles and it is free for students too . I climbed up the tree . It was badly hurt . My friend rushed to me , then ran back to my house and called Mum . Mum came in , looking very angry . I prayed for a short conversation . I want to complain about your advertisement for the production ' Over the Rainbow ' ; I had a very disappointing evening . Yesterday when I arrived at college , I saw Pat standing with Peter and a lot of other boys and they were looking strangely at me and laughing . People started to write things on the board and to point at me . It is a great failing of responsibility for a theatre like yours to have a delay like this one . Finally , the restaurant where I would have liked to have dinner with friends after the show was closed , contrary to what was announced in the advertisement . I 'm writing to answer your questions but , first of all , to thank you for the prize . I would like to travel in July because it is the school holiday here in Portugal and I will have the entire month to travel , so I have no preference for which weeks . I 'm looking forward to receiving your letter . I have to say that I am really disappointed with your advertisement because you mentioned some points that are not true . Secondly , another problem was the starting time . According to your advertisement , the play starts at 19.30 but instead it started at 20:15 , this is almost an hour 's delay . The simplest example of modern high technology is the introduction of the computer - better known as the PC . Research has shown that almost every single household owns a PC . Some people use them for their job because they need it , but others , like children , use it just for fun . Other examples that may not look like huge technological miracles are the TV , the microwave , the video , the satellite dish , the CD player and hundreds of others . All these play an important role in our daily life without us ever understanding them . Those things can and do make our lives easier and more comfortable , but they take us away from our friends , our families and moreover they lead us to madness and cut off any relationship with everything that surrounds us and keeps us alive . I think that is going to be more comfortable for me due to the fact that I am very sensitive to changes of temperature and I ca n't take the risk of catching a cold because , as you know , I 'm going to start to work . How are you ? I 'm fine and I am writing to you because I know that you want to know about my experience at a pop concert ; I have to tell you that I did help there and it was very hard work . You ca n't imagine all the work that goes into preparing a concert . I am writing to you to complain about the last Saturday evening performance at your theatre . Finally , I want to know what the weather is like in California in July . The teacher uses video and pictures to teach students about festivals , sports , museums , etc . Basketball is the most popular activity , which takes place between 4:30 pm - 6:30 pm from Monday to Friday every week . I have received your letter and I am so glad I have won the first prize . I have been playing tennis for 2 years and I won the Under 16 's U.S open tournament last summer . I 'm writing to complain about your theatre and its show last night . Firstly I would like to say that I was very disappointed with the show and that I did n't have the perfect evening out , as advertised . The main character of the musical show , who I 'd like to say was n't the " BEST " , was awful . And then , when I arrived at the theatre , I expected to have a discount but unfortunately I did n't . On top of all this , the theatre restaurant was closed because the chef and the waiters were on holiday . I was very disappointed , what else can I say . It was supposed to be my perfect evening out . In conclusion , I 'd like to recommend that you should first know what you have to offer and then advertise it . Yours sincerely Unfortunately , Pat was n't very good at keeping secrets . I should n't have told her that my dad had psychological problems . All these years I believed that my father was killed in a car accident . When one day Pat came over to my house , we started arguing about ordinary things and during our fight the subject of my father and his problems suddenly came up . Pat started shouting and screaming , saying what was really going on . Also with weekend shopping , you ca n't find somewhere to sit down comfortably to have a cup of tea . According to your advertisement , it stars DANNY BROOK and TINA TRUELOVE , but surprisingly , was performed by a different actor of whom I did n't even know the name . Nowadays , we use a lot of modern technology both at home and in the office but it has its advantages and disadvantages . The first and most important thing is that modern technology has made our life easier , for instance the rice cooker is a great invention , all you have to do is put rice in it and switch it on , it makes cooking more efficient . Furthermore , we use the computer and telephone a lot . Mankind became more and more clever and built wonderful things thanks to his thoughts and his hands . Although there are new machines etc , medicine makes many discoveries thanks to research into different diseases in order to make the population live longer . I have won the first prize ! I am extremely happy about this . I can only take a holiday in July because I am going to start a new education at the beginning of August . Staying in a tent will remind me of an unforgettable time . Given the circumstances , I would like to learn more about photography and painting . Is it possible to pay by credit card or should I take travellers ' cheques ? I applied for a job at the ticket office because I hoped to see a lot of different people . I had to prepare the ingredients for every meal . That meant I had to read the recipes very carefully . I am writing to you to complain about the show " Over the Rainbow " at your theatre " The Circle Theatre " . I am deeply disappointed with the service and the unreliable information at your theatre . I am very disappointed by this . You also mention that your show would start at 19.30 but to my knowledge it started at 20:15 and that meant forty - five minutes of waiting . It also mentioned other services would be available to the audience . For Example there were no discounts available and the theatre restaurant was closed after the show , when it was meant to be open after the show according to the advertisement but it was closed due to the delay with the performance . And I would like a refund . You have wasted my evening and money . Synthetics have been created by scientists . Clothes are now mass - produced and designed by designers . Designers are unique in a way but their designs are sometimes more a piece of art and not for everyday purposes . It is hard to imagine what people will wear in 100 years ' time , because since the 1900s clothes have reduce into smaller item and more practical . Maybe it would continue reducing in 100 years to come . Scientists might discover a new way to make clothes more fixalde . It would provide you with a new type of material to cover your body and you could choose what you want to wear by pressing buttons . This would be very easy to manage but it would mean no more shopping for girls . It would be scary to live in the new 100 years , but it would be interesting to see what will happen . The next thing is that I would prefer a log cabin . I was responsible for the advertisements and I also had to invite the " important people " from our government . It was really a new job for me , but I think I did well . There were two other problems : there were no discounts , contrary to the information in the advertisement , and the theatre restaurant was closed because of the repair work . However , she definitely deserved to have a private life as a citizen . Thank you for your letter and for having informed me about the results of the competition . I also want to congratulate you on your excellent competition , thanks to which I have the opportunity to go to California , a place that I always wanted to go to . About the trip , I think it would be preferable to do it in July , which is a holiday period and so I wo n't have any special obligations . Spending a lot of time in the same place in my opinion is the worst thing to do , especially during a holiday ! Any little tournaments of this kind would be great . Moreover instead of buying a ticket I went there for free , as a helper . The pop concert was excellent and I had a lot of fun . I AM WRITING IN ORDER TO COMPLAIN ABOUT THE SHOW THAT YOUR THEATRE PUT ON . I WENT TO YOUR THEATRE WITH THE IDEA OF HAVING A GREAT TIME . UNFORTUNATELY , THINGS WENT VERY WRONG . SECONDLY , THE SHOW WAS SUPPOSED TO START AT HALF PAST SEVEN IN THE AFTERNOON , BUT IT STARTED AT QUARTER PAST EIGHT , THAT IS FORTY - FIVE MINUTES LATER ! IT IS ALSO ADVERTISED THAT THERE WERE DISCOUNTS AVAILABLE . HOWEVER , THAT WAS ANOTHER LIE . LASTLY , AFTER THAT AWFUL EXPERIENCE I TRIED TO VISIT YOUR THEATRE RESTAURANT , OF COURSE , I COULDN'T DO IT BECAUSE IT WAS CLOSED . UNFORTUNATELY , PAT WASN'T VERY GOOD AT KEEPING SECRETS AND I DISCOVERED THAT TOO LATE . THE CONCERT WAS PLANNED FOR THE FOLLOWING FRIDAY , WHICH WAS THE DAY AFTER MY TEACHER GAVE ME MY MARKS . Dear Mr. manager of The Circle Theatre : Could you , if we may ask , reorganise our visit to the museum and also to the shopping centre . Perhaps we could spend our free time at the museum before going to the shopping centre . Whatever you do , journalists should not follow you every second . The problem is that most of the advertisement was misleading . But the main reason for my complaint , is that in the advertisement it was said it would be my perfect evening out , and it was not . And the best thing is that it entertains me alone or with people . I have just received your letter and I thank you for your invitation and congratulations . As regards accommodation , I prefer a longer , Canadian tent in a quiet place because I am fond of nature and I would like to feel free in an informal setting . I like competitive and challenging sports . I enjoy comparing my skill with other players and , if possible , I would rather not do indoor sports activities , but open air ones . I have given a questionnaire to other students in my class to know their preferences regarding this choice and we all believe that the first lesson that should be filmed is philosophy . The reason is that all students are interested in it and the teacher is so good at explaining problems that the whole class takes part in discussions about specific aspects of the subject . Also the sports activities should be filmed ; they express an aggregative and social way of living school life and can be useful to show the movements of the bodies during the school athletics events . The dancing lessons should also be filmed , especially because of the fascinating beauty of the girls and the elegance of their movements . We were interested in seeing the actors that appeared on the tickets and I was very disappointed when , in the show , we saw other actors . I am looking forward to hearing from you . I 'm looking forward to hearing from you . I have just received your letter and I 'm very happy because of it , especially because the competition was so hard . Being at Camp California was one of the dreams of my life and now I can realise it . However , about accommodation , I 'd prefer a log cabin , because it is more comfortable than a tent . Firstly , I was very embarrassed during the concert , but all the staff were very kind to me and Tom too . THE HISTORY OF THE HUMAN RACE IS THE HISTORY OF WORLD CONQUEST . THAT SAID , TECHNOLOGY HAS ADVANCED CONTINUOUSLY SINCE THE BEGINNING OF MAN 'S EVOLUTION . FURTHERMORE , DURING THE LAST TWO CENTURIES , THERE HAS BEEN AN ENORMOUS TECHNOLOGICAL EXPLOSION . WHILE THE XIX CENTURY GAVE US THE STEAM ENGINE , FACTORIES AND THE ELECTRIC LIGHT BULB , THIS CENTURY HAS GIVEN US NUCLEAR ENERGY ( AND SADLY ATOMIC WEAPONS ) , THE COMPUTER , THE INTERNET AND TELEVISION . I 'd like to tell you that the best month for me to travel to the U.S.A . is July because I will be on holiday in that month . I do n't really worry about the accommodation at Camp California , but if I can tell you which one I prefer I 'll choose to stay in a tent . The concert was in a massive club and the tickets were sold out . Marvellous ! Two days before I read an advertisement for this show , which said that Danny Brook was starring . Apart from that , the show started at 20:15 , not at 19:30 , as it said in the advertisement and the theatre restaurant was closed when the show finished . When I went to my bedroom I realised that Pat had told my mother about the party , because no one else knew that my mother did not know that . I am writing in order to complain about the musical show , the name of which is Over the Rainbow , which I saw in your theatre recently . It was a pity but it did not annoy me because I thought that the musical was good enough to pay £ 20 for . After the show I decided to go to have a coffee and to smoke a cigarette to try to calm myself and suddenly I could see that the restaurant was closed because it was the barman 's day off . I am very indignant because I wasted my time and it was a horrible evening so I would like you to return my money and take note of all these problems . Maybe it would be a nice idea to analyse these changes and to put limits on technology , because I think that the most important thing is to understand our life and know the ways we can improve it . Firstly , the show did not start on time but forty - five minutes late . This actor was not nearly as brilliant as Danny Brook and I would not have paid so much money if I had known this before . The worst thing of all was that at the beginning of the show I realized that the actors were totally different from the ones advertised . They were worse than the previous actors . They believe that people in the future will wear comfortable clothes because they will be outgoing , amusing , etc . And people will wear cybernetic clothes but at the same time comfortable clothes . I received your letter recently , and I am really happy to learn that I have won the first prize . About the accommodation during those two weeks , I would rather stay in a log cabin , as it is really difficult for me to stay in a little close room . I had an induction climbing course two years ago , and I still climb regularly . I can do a V+ level climb . Going out to spend a day shopping is something very popular . The shopping centres are always busy , with people going up and down carrying bags and looking in shop windows ; it seems everybody is happy . To sum up , shopping is not always enjoyable , but do n't worry , the shopping centre is still there waiting for you ! I can only travel in July because this is the month when I have holidays . I 've already talked to my manager , and she said that that 's the only month I can have my holidays . I 've been playing tennis since I was seven , and I 've been studying how to play tennis for a very long time , nine years . You know how good I am at music Anyway I was helping at this pop concert to get the correct sounds . At the beginning I was connecting all these wires into speakers , music system , guitars etc ... The bit that I particularly liked about the experience was when I was standing next to the singers and playing a guitar - you know how much I love playing guitar - and all these video cameras were just filming us . I asked one of the cameramen when they 're going to show this show on tv , and he told me they 're going to show it on the 10 of June , so turn on your tv on this date , channel three , and you will see me there playing this guitar . AH , it was lovely . What I realised was they were not different from any of us but they were called celebrities . I particularly liked listening to their musicians when they played the piano , clarinet , drums , violin etc . Pat promised not to speak to anyone about the car , but one evening Philip overhead her speaking about this with her boyfriend : " It will be delivered on Thursday ! Furthermore , the show started at 20:15 while the advertisement said that it was going to begin at 19:30 . I am very surprised that such a reputable theatre like yours has been able to break all the promises that were made in the advertisement . Of course , what was going to be a perfect evening out turned into a very disappointing evening , and I would be very grateful if you could refund me the price of my ticket . Scientists will invent new materials that will keep the body 's temperature in a suitable range . For that reason clothes will be simpler and more practical . Of course , the resources used and the manufacturing will be completely harmless for the environment because people will be more aware of the necessity of taking care of the world we live in . And it 's all the more tiring since you often wait for two weeks before getting it . I think that this tendency will not change but what will change is life . With regard to your International Arts Festival advertisement , I would like to share with you the pleasure I had to be part of the event and make some suggestions for next year 's festival that you might take into consideration . In your advertisement you mentioned that there would be artists and stars coming from all around the world , unfortunately I found out only six countries were represented . The night he came into this world was one of grater for the inhabitants of the country and also of the town where he was born , it was an ordinary night . To begin with , according to your advertisement , discount tickets are available . The tickets were rather expensive , and the discounts mentioned in the advertisement were n't at all available at the theatre . Pat was my friend , I trusted her and we got on very well until she repeated to everyone the secret I had told her . Regarding accommodation I 'd prefer to sleep in a tent because I like being outside and hearing the noises of the sea . a maths lesson , an English lesson , a swimming lesson , the break and the staff room . - We could show the activities of the students during the break . For example , students who play football or volleyball . We could find out what this room is like and what the teachers do in this mysterious room . I can be closer to nature and I have never used tents before . My parents were very proud of me . My hands were trembling but I did it very well . I 'd like to say something that I felt during the festival , and give my opinions that would be helpful for you to prepare for the next festival . People believe that the bird was sent from heaven . So I am going to ask for a refund ... I hope this is n't offending you too much ... When it comes down to colour , I think it 'll be much brighter and maybe glittery . Colours to match the clothes . First of all , I would like to thank you for doing such a good job organising the competition which I luckily won . I have been really very impressed . In fact I will finish my university exams only on the first of July and after the 20th it is impossible because I am going to do four weeks ' voluntary work in India for UNICEF . If it is possible I would prefer to stay in a log cabin , because , in spite of my love for nature , I am terribly allergic to pollen . Thank you very much for your attention on my behalf Why have so many people been infected by this " psychological virus " ? We are always trying to have more things , which lead us to neglect our family , our future , and other things which are probably more important than a new perfume . Maybe you think I am exaggerating but recent studies prove that this mania can be really dangerous . Certainly only the fact of having something can help people to be more sure of themselves . Probably when Oscar Wilde said : " Superficiality is the supreme vice " he was right . You can not imagine our disappointment when we realised that the show had been postponed to 20.15 instead of 19.30 and that the restaurant was closed because of repair work ; as a matter of fact , after the show we only ate a hamburger in a fast - food restaurant . She was so angry and felt so betrayed by Mr White that without any hesitation she went to the school Headmaster to report everything she had seen . I have just received the letter , which lets me know that I have won the first prize . This is because I intend to take an examination in September . And recently , I have been practising tennis as a school activity . The reason I enjoyed it very much is that I could meet the vocalist during setting chairs just before they started practising . Can you send me a letter back writing what happened to you recently ? Finally , what kind of weather is waiting for us ? Surprisingly , there were no discounts . She just remembered it ought to be a secret , and she became really embarrassed . I swim really well and I am a professional basketball player . It all started when one of the organizers asked me to help him at a concert of my favourite band . I am writing to you about the show . The woman who sold me a ticket was very rude to me , actually she started swearing at me . They were just playing and , by accident , Peter shot him . He promised to keep it secret . The next morning we had an argument with Pat . The 3 of us were shouting at each other . In short , Pat left us . Secondly , I am interested in trying something that I have never done , so I would like to do sailing . First of all I have to say that the whole festival was a great success and I also think you chose an appropriate title for the leaflet . Nearly at the end of this letter I have to say that the idea of the weekend ticket was really good because it gave the people the opportunity to attend for a whole weekend for a cheap price . I am writing with regard to your advertisement . It was my favourite musical . I was very hopeful that I was going to have a good time . The worst thing is that I could n't see my favourite actor . I was so disappointed about that . I could n't concentrate on the play any more . In contrast to the advertisement everything was disappointing . These days we can use a computer , television and some sophisticated equipment , which were unusual once . Children play with computers instead of the usual toys . There has been a change in the relationships between people . We have noticed the environmental damage in recent years . I think this festival is a great idea because it 's an opportunity to see and to appreciate art , but I also think there are some things that could be changed . I noticed that the artists were from only six countries instead that from around the world . This choice does n't give many artists the opportunity to express themselves . I hope that my opinion can help you to organize for next year a great international arts festival alone to young people . I am writing to complain about a musical show on the 10th of June , and I was very disappointed . I was promised that the star was Danny Brock but when I was there I saw another star that was completely different from your brochure . According to your brochure , the show would start at 19.30 p.m. but it started at 20.15 p.m. I wanted to sleep and it was very annoying . I was promised that after the show I could go to the theatre restaurant but due to the show starting late it also finished late , therefore , when I went to the restaurant they were definitely closed . I have a really good friend , Pat who I trusted and counted on . One day , I fell in love with my closest friend . We were studying in the same class at school and he also knew Pat as well . Personally , I wanted to keep it secret because I was afraid that we might split up . And I would like to make sure that he really loved me . My boyfriend told me that he wanted to surprise his friend in his class when the time came . One day I decided to tell my best friend - Pat , who I relied on . I told her everything about my boyfriend and when we met each other and eventually fell in love . On Monday morning , I walked into the class and all of my friends were shouting at me and calling my name and my boyfriend . I was very embarrassed and I wanted to run out of the class . I received your letter and I am very excited about the camp . I would like to go in July , I do n't mind which two weeks , but it has to be that month because in June I am still in school and in August I am going on holiday with my family . I would prefer to sleep in a tent because I think it 's different from where I sleep every night so I would appreciate it if there are still tents available . Here is where the good part starts , I was doing the curtains ( opening and closing ) when Nick came up to me and asked me to go on stage with him . My heart started beating very hard . DANNY BROOK is one of my favourite actors so I decided to buy a ticket even though I had to cancel my appointment on that day at 18.30 and also notice of price discount impressed me . However , when I got to the theatre , you not only did n't have any discounts but also had to apologize to us for the delay in starting the musical . In addition a different actor appeared on the stage and I could n't have dinner after the musical because the restaurant was closed . It made me so disappointed and angry . You should return my money immediately because that night was far from perfect . When all the money had gone from a bank , nobody was there except Pat . Then the police realized who the bank robbers were and arrested them . I 'm writing to answer the questions that you sent me in the last letter , so referring to the question of when I would like to travel , I would like to go anytime during July , because I have to be back home in August , because I need to apply and get everything sorted out , to go to college next September . And referring to the question about which type of accommodation I prefer , I choose a log cabin , because I think that a tent is messier , so I would appreciate it if you give me a cabin . And my answer to the question about which activities I would like to choose , well I choose swimming , because it is my daily exercise , and surfing . And well , Mrs Helen , I would really appreciate it if you sent me back a letter with all the answers to my questions . Yours truly Well here in Dublin things are still the same , but I think somebody told you that I went to the Moby concert here at the Point , which is the big venue for events and concerts . I guess it was the best concert I 've ever been to , but the coolest thing is that , well do you remember my friend Luke , the one that works as a security guard ? Well he told me that they needed people to put everything on the stage , so I went to help them and everything else , and when I got to the Point , do you know who was there ? Can you believe it , it was Moby . So I went to say hello to him , and he asked me , ' Would you give me a hand with my decks ? ' So I went , and when we finished he gave me a T - shirt and a gold pass to see the concert from the first row . Oh my God , Kim , that was the best thing that ever happened to me . Well Kim , I hope to receive a letter from you soon , and please tell everybody about the Moby concert and everything , thank you . It is wonderful for me to have the opportunity to visit Camp California in the U.S.A. I think this topic is so exciting from the anthropological and psychological point of view , because we can study the subject 's reactions before , during and after shopping . For men and women appearance is important and they spend a lot of money buying clothes , cosmetics , accessories , jewellery etc . I think in the near future we need to decide with the government which special place in the town will be left just as a commercial area , but of course with all the facilities to get there , like a big supermarket and mall centre , from different areas of the city . IN ADDITION TO THIS , I DID NOT HAVE ANY DISCOUNT ON MY TICKET . Firstly , the actor was supposed to be Danny Brook , but he was not , it was another actor , who I have never seen before , so , as you can imagine , I was very disappointed . Maria talked to Pat about the stupid thing that she had done , but Pat refused to apologise to her , because she felt it was n't a mistake and she did it for only one reason : to help Maria to get the man that she loved . First of all , we would like to thank you very much for organising such a wonderful trip with an interesting programme . It is a coincidence which we would be extremely happy to take advantage of . This is a great opportunity for us to see the latest fashions and famous fashion models who we would like to have autographs from . I personally think the best would be to put the celebrities in cages and let people touch them , point and ask for autographs . It may , in many cases , not be true but we can suspect that most of them wanted to become a celebrity and they had to know there is no private life unseparately connected to it . The purpose of this letter is to congratulate you on the International Arts Festival I attended last weekend . Firstly , I would like to tell you that the idea of organizing an International Arts Festival is fantastic , but in your advertisement it said that I would find stars and artists from around the world , when , in fact , they were from only six countries . Secondly , I believe you should know that a lot of people , including me , were not able to enjoy the concerts because some concert halls were too small . Last but not least , I would like you to know that I think the idea of the weekend ticket for all events was excellent because in the end it was cheaper than paying for each event separately . Another way our home could be different in the future is probably the utilities we will be using . This is because people wo n't give up the great taste of food . Although it could be substituted with a vitamin pill or two . Lastly , I think that all these changes wo n't really be noticed as we change things daily and slowly instead of abruptly . Some people think that being a famous person is a very exciting thing , that all the time this makes you feel complete and also they think that if you are famous you are special as well . I believe that if somebody wants fame and glory he must be totally clear about the results . Another successful career such as , film stars must also be balanced . If somebody wants to be famous of course they must be on the top and the mass media will be following him or her . It does n't matter what kind of career or job you have . Firstly , I 'm writing to thank you for the great opportunity you are giving us , especially in planning all this programme in such an accurate way . Also , this show is free ( another positive point ) . I mean I do n't think we 'll change cars into aeroplanes ... In conclusion , I strongly believe that the house of the future will be the house of a new awareness . It will be a very positive point for opening up our lives . Technical and Warm Home People 's way of life has been changed considerably by rapidly developing modern technology . Since the electric fire and microwave oven had been invented , their lives have been far easier than before . I was enthusiastic about receiving your letter . I will give you all the necessary information . You ca n't imagine how many people are involved in the organization of a concert . Apart from the musicians and the singers , there are people who work with lights , who organize the security ... it was so exciting ! I 've received your letter and I am pleased to have won because I needed some days to relax and to leave the city , which is very stressful . I can travel in July only because I am working in an office and I must ask my boss for a holiday and it 's the month he can give me one , so I hope that is n't a problem for you . I would prefer to spend the two weeks in a tent , that 's , in my opinion , a way to be nearer the environment and the animals , although I do n't mind staying in log cabins . To sum up , everything you do in small quantities is good and fun , but do n't increase the amount you do if you do n't want to feel uncomfortable . Well my friend , I have to go , because I have got an appointment with the Dentist . How much money do you recommend me to bring with me ? While we were in Florence my wallet was stolen , probably by a gypsy . I had to buy my dress , its accessories and also clothes and souvenirs ! Thank you for choosing our ticket at the final . It would be great if we could choose swimming and golf . Finally , we would like to know when you will send us the airline tickets and the brochure . You are interested in my last job ! I really want to tell you all about my experience . In addition , it was nine days of hard work to mount all the different spot and hundreds of Coblights in the right place . Finally , we worked the whole night before the concert . We had to adjust the laser extremely carefully to get it in the correct position . Finally you said there was a Restaurant , but it was closed , so we could n't eat anything until we got home . I have chosen these activities because these days I am playing on the university team , and photography is my favourite hobby . Is it necessary to bring any money ? I am writing to you to tell you about my experience at a pop concert . It began when our mutual friend Martha offered me the chance to help organise the concert . Obviously I accepted . Now I can tell you that it was an amazing challenge for me because I had never done anything like that . My duties as a staff member were various . The first day I had to pick the bands up from the airport , and for this I hired a van . I am very disappointed because the things that were written in the advertisement were not really true . It was written that the stars would be Danny Brook and Tina Truelove . Danny Brook is one of my favourite actors and there appeared a different one . I felt very disappointed . The musical should have begun at 19:30 , but it started at 20:15 ; this is unacceptable ! As you say in your advertisement , it was not my perfect evening out and therefore I would like to have my money back . On the other hand , the main disadvantage is that using modern machines can be very difficult for elderly people ; it would be very pratitable if the modern industries trained people to use modern technologies . I 'm writing to you to thank you for the excellent programme for our English class in London , especially for the river trip to Greenwich . It will be a great experience for us . But the students in our class have seen an advertisement for the " London Fashion and Leisure Show " , which will take place in the Central Exhibition Hall , London , on Tuesday March 14 from 10.00 to 19.00 . At the same time we have to go to the Science Museum but we would all like to go to the show . Please let us know as soon as you make your decision . This book helps us to improve our logic , mind , and memory and it teaches the reader not to lie , to be more honest with other people and pay attention to the smallest details in our life because sometimes that can help us very very much . In fact , shopping can have some disadvantages for different reasons : It became essential to doing my homework . The place I 'd prefer to stay in is a log cabin , where I 'm sure I 'd feel more comfortable than in a tent . I think I 'm not bad at painting either ; at least everyone in my family likes my work , including myself . If it is possible I want a log cabin for my accommodation because I have been suffering with my back since my childhood , therefore I need a comfortable place to sleep . I selected swimming because it is a cure for my backache and I have not done it since I started my new job five years ago . On the other hand , shopping can be unenjoyable . Peter and Sue asked Francis for some help with their exam subjects and Francis , all week , was too busy to help them . I looked at her and she became pale and suddenly left the class . Recently , some students have seen an advertisement about a fashion and leisure show in London . It will be on the 14th and we all want to go . So , it would be great if you could give us this opportunity to watch the show . At that time he was unconscious . I kept asking myself ' Should I wake him up or try to use my dubious first aid skills to help with him . " Can you please give me some recommendations about the clothes I will need and also the cost of the food there to plan my budget . I start thinking about what she or he prefers and I try my best to buy something appropriate no matter how much money it costs . In conclusion most of the time that you spend shopping you put a lot of effort into choosing things and making decisions and they are more or less important , or more or less enjoyable depending on what , why , where and who is the person that you are interested in pleasing . I AM WRITING WITH REFERENCE TO THE LONDON TRIP WE ARE MAKING VERY SOON . WE ARE REALLY INTERESTED IN THIS SHOW . WE THINK IT IS A GREAT OPPORTUNITY , BECAUSE AS YOU KNOW , WE DON'T HAVE ACCESS TO THAT KIND OF SHOW IN THIS CITY . IN CASE YOU DECIDE TO CHANGE THE PROGRAMME , WE SUGGEST GOING TO THE SHOW ON TUESDAY AND ON WEDNESDAY , INSTEAD OF FREE TIME , VISITING THE SCIENCE MUSEUM . YOURS SINCERELY , I WAS LIVING QUITE CLOSE TO PORTOBELLO ROAD BUT I DIDN'T KNOW THE AREA VERY WELL BECAUSE ALL THE TIME I JUST HAD TO GET OFF AT THE CORNER OF MY STREET . BUT THAT DAY , AS I WAS KIND OF DRUNK , I DIDN'T REALISE THAT THE BUS TOOK A DIFFERENT ROUTE . SO , WHEN I NOTICED IT , THE DRIVER WAS ALREADY ASKING ME TO GET OFF , BECAUSE WE WERE IN THE GARAGE IN PORTOBELLO . I TOLD HIM I DIDN'T KNOW WHERE I WAS , BUT HE JUST SAID SORRY . I WAS REALLY SCARED . THERE WERE SOME PEOPLE AROUND BUT I WAS AFRAID TO ASK THEM THE WAY . AFTER FILLOWING HIM FOR 10 MINUTES , I STARTED TO RECOGNISE THE PLACE , AND I WAS FEELING MORE COMFORTABLE . Definitely , it was a very disappointing evening and I would appreciate it if it is possible to have my money back . I thought that Dany Brook , who is my favourite actor , would perform in that show . Please , if you would be so kind correct this mistake . I would be grateful if you could correct too that show starts at 20.15 not on 19.30 . Another thing was that there were no discounts available , and that the restaurant , which I wanted to visit after the show , was closed because of the main cook sickness . Unfortunately , Pat was n't very good at keeping secrets . I knew that he 's a very talkative person , but it was necessary because I wanted him to be the main organiser of that birthday party for tenes . I made beautiful invitations for all of Agatha 's friends with a note : " Do not tell Agatha about this . This is a surprise party for her . Please keep the secret ! " Pat arranged a great DJ and drinks . My friend and I made the perfect decorations with balloons and other party stuff . It was so exciting ! ! ! Anyway the disco was great , music also . And your last festival was very interesting too . But also there are some notes that you should improve in next year 's festival to make it absolutely wonderful . I think that one reasonably - priced weekend ticket for all events is an excellent idea because it is n't so expensive as buying a ticket for each event , and with this ticket you can visit everything you want . So the main rule in our school is regarding teachers . I have chosen as my activities surfing and photography . How is the weather in California ? Afterwards , I felt tired and unsatisfied with the store . I 'm very happy that I won first prize in your competition . I can come to USA in July because in August I will be working with my father . You offer a great variety of activities . I have questions too . People always queued for stuff from the west . Nowadays we have capitalism , free market , lots of private shops , markets and supermarkets . They are imported from another Western European country . I appreciate these shops for lots of products , cheap prices and big spaces . On Friday evening and on the weekdays all supermarkets are crowded . I am writing in reply to your letter in which you told me I have won first prize in your competition . Now I am answering your questions and then I would like to know some further information about travel and accommodation . For instance , it is fun to enter a clothes shop and try on a skirt or a T - shirt although you do not buy anything . CONCERNING THE ACCOMMODATION - PLEASE BE INFORMED THAT I WOULD PREFER THE LOG CABIN AS IN THE MEANTIME I SHOULD WORK ON MY LAPTOP , PREPARING SOME FINANCIAL REPORTS SO ELECTRICITY WILL BE NEEDED . I THINK THAT THE LOG CABIN WILL BE MORE COMFORTABLE OVER ALL . REGARDING TWO ACTIVITIES - I HAVE CHOSEN TENNIS AND PHOTOGRAPHY . PEOPLE LIKE DOING SHOPPING ( ESPECIALLY IN POLAND , WHERE MANY NEW AND MODERN SUPERMARKETS HAVE BEEN OPENED ) LADIES PREFER TO VISIT UNDERWEAR SHOPS OR DEPARTMENTS IN HUGE HYPERMARKETS AND MEN ARE HAPPY WHEN THEY CAN BUY SOMETHING NEW FOR THEIR CARS , MOTORBIKES OR COMPUTERS . ANYWAY EVERYBODY SHOULD DO SHOPPING AS PEOPLE NEED TO EAT , NEED CLOTHES AND MANY OTHER IMPORTANT THINGS TO LIVE . Furthermore , I prefer to do painting and photography as my hobbies and my fascination for art and enjoy taking photographs of wildlife . Sorry I haven't written to you for such a long time , but I 've got a good excuse ! What a surprise ! And unbelievably , I was responsible for looking after the pop stars . But , I got through it . I had to take care of them during the break , serving drinks , clothes , I even brought them some cigarettes and anything they wanted . What I most appreciated was that they gave me their latest CD with their signatures . Marvellous thing ! And of course , as you have seen , I 've given one to you . I 'm sorry but I am very disappointed with the show . We arrived on time but the show was delayed until half - past eight . Moreover , we were n't given any discount for being students . Maybe the reason for that is very simple : lack of money ? It may sound funny , but mud , gravel and snow lying on the school floors is not a nice sight , so we change our shoes without questioning that rule . Also , in August I will be studying a summer course in English . Also , I felt wonderful when I saw that the concert was a success and every day it was crowded . All the students would be very grateful . We call home the place where we live or the country where we come from . Working long hours , doing plenty of activities , going out , going on holidays . Probably in the future we may be too busy to go to our own home and spend some time there . Finally , we went to the restaurant in your theatre after the show . It was closed because of the staff training . It is believed that our lifestyle has been changed by modern technology such as computers and washing machines etc . First of all , dishwashers are very convenient for me because I work full - time and look after my children . In my opinion , modern technology makes our life easier . Unfortunately , Pat was n't very good at keeping secrets . That was why our great plan for our holiday was not be real . It happened last summer . We planned to go on holiday in the southern part of Thailand by motorbike but we could n't tell our parents because they would n't allow us to go . While I was standing on the beach , suddenly I heard someone call my name and say that I had to go home . That is right , it was my mum . I am writing in reply to your letter I received yesterday . ' As I have a choice I would prefer to stay in log cabins rather than tents because they seem to be more comfortable and you are not so dependent on weather conditions . Last year I took part in a photographer 's contest and I won a second prize in Poland in the category of , , beautiful scenery '' . But you could give me a chance to get more familiar with it . Have you ever been to a big supermarket and tried to find something you really like or want , looking through shelves and not finding that in the end . Moreover , you could face an aggressive and maybe even drunk shop assistant or manager . These are some points I want to mention about the differences between what the advertisement said and the realities . It was so boring to wait for the show in a noisy and hot theatre . It was the most imperfect evening out I ever experienced . It took quite a long time to adjust to the multi culture in the language institute . Since then we have visited each other often and spent time together on the weekend usually . And sometimes they do something in the library by themselves in the afternoon . I am writing to thank you for your letter confirming that I won the first prize in your competition . But I have finally got around to writing and you 'll see that it 's definitely been worth waiting for as I have some great and unbelievable news to tell you . You will see why I 'm describing it as the most unforgettable one when you read through my letter . She invited me to the rehearsal of a huge concert by a singer who is a well - known pop star as well as my favourite . Despite the fact that I felt exhausted I must admit that it was one of the days I will never forget throughout my whole life But if the politicians or the film stars ask for privacy the media has to respect that . Second , the show started at 20:15 , although I read that it would start at 19:30 ! How has modern technology changed my daily life ? When Thomas Adison invented electric light , it was the greatest invention for people of that century . I mean , almost everyone now has a car , a computer , a mobile phone and even an airplane . Cooking has become faster with the help of the microwave . They become lazy because they know that they can sit on the sofa and change the channels on the TV by pressing a button . This would be a great opportunity for us because we are all interested in clothes , sports and fashion . There is also Hercule Poirot , the famous detective , and he finally solves the mystery . And another question is what are the prices of things like there , which I want to know so that I can make a better budget for my trip . The place where we worked was a football pitch ; we spent 3 days setting up the stage , the equipment , and the lights . I only put the speakers in the right places , or helped the engineers test the lights . But in the breaks and after work , I had a chance to talk with the engineers , and I learnt something about setting up the equipment . Finally , the day of the concert came . After the concert finished successfully , I was happier than ever because the success included my work and that was the most enjoyable moment in my life . According to your advertisement , the stars were DANNY BROOK AND TINA TRUELOVE . I decided to go to see this show because of its stars , but on the day I saw it , a different actor performed . Before using e - mail , I used to write letters and sometimes used the telephone . Secondly the show started late and I had to wait for 45 minutes doing nothing . If you compare the fashion now with that of 100 years ago , you 'll notice that there are incredibly big differences between them . It 's like a joke , but a bit scary . There was no discount at all , which was in contrast with ' Discounts Available ' . Concerning the fashion of the future , I think it depends on people 's personalities and they develop their own styles which suit them the most . As for the colours , I think metallic colours , especially silver , will be the most popular . As different kinds of fabrics will be invented and the clothings will never be just cotton as always been seen . Maybe paper can also be a fabric used to make clothing and for those who like to wear new clothes every day . While I 'm staying there I would like to practise tennis and basketball , as I have been playing both sports all my life , and I have to say that I am very good at both . And that is always what we want . A huge queue that lasts half an hour or more and finishes with you completely freaked out . I 'm writing to you inform you about the disappointing evening I had when I went to your theatre to see the play called " OVER THE RAINBOW " . According to the advertisement you published , there should have been some important differences to the production I saw . Finally , I want to tell you that it is not useful for you and your theatre to cheat your customers . If you do that , there will be no business for you and no satisfaction for them . I look forward to hearing from you Emilio Almodar , 18 years old , University Student , and the career I have chosen is in International Commerce or Market . In addition to this we use the net to communicate with some friends we have in the U.S.A. It 's really amazing . Maybe some people will be naked . Last but not least there are some things I would like to know : What kind of weather do you have in California ? That means that there are more and more big supermarkets and big stores , where no one has time for you to help you or explain things to you such as what kind of bicycle is the best for you , no one to talk to and no one to complain to . That is the most important reason why I only like to go shopping in small stores , where I have peace and quiet and very often nothing to complain about . I am writing in reply to your letter . I am glad to have won the first prize in your competition for two weeks at Camp California in the USA . About the information that you need , I must tell you that I will be able to travel only in July because I have got a new job and I ca n't ask for more than one month of holidays each year and in the other months I will be very busy because my workmates will take holidays in these months . Regarding the accommodation , I would prefer a tent because it is more appropriate to a camp . And regarding the activities , I must choose Photography and Painting because I am not very good at sports and I think I do well at these things . Here I am , writing to you to tell you everything about my wonderful experience at the concert . When the concert started , I was preparing some drinks for the band because after the concert they would be very tired and thirsty . In order to celebrate the 125th anniversary of the city , the County Council organised an open air concert . Although I was very nervous , I knew I could do the job well . I am writing to express my disappointment with the play " over the rainbow " , which is showing at the Circle Theatre . Finally , when I asked about the discounts , an aggressive employee refused to answer me . Definitely , I want my money back as soon as possible . So , I told Pat that Lynne was ugly , fat like a cow , and extremely aggressive . But , well , the unhappiness started with Pat and my revealed secrets . Organise your shows better and do not exaggerate with publicity ! Despite this , I 'm convinced all this progress has caused some damage to the community , not only physically . Finally , everyone should slow down his own life 's rhythm . Second of all , the play was supposed to start at 19:30 , but it started at 20:15 . To finish my " marvellous " evening , I wanted to eat at your restaurant , but it was closed and no reason was given . I was punished , nearly expelled , but Pat did n't receive any punishment . According to your advertisement I could have one but in reality there were no discounts at all . One of the reasons for my visiting your show was Danny Brook 's participation . To make matters worse , the restaurant which was mentioned in your advertisement was closed . So I did n't have such a perfect evening as was promised in your advertisement . In fact there were a lot of mistakes in your advertisement and I would be greatful if you could give me back a part of my money . On the one hand , the Internet is often used for entertainment , but on the other hand it 's also used in different business and education processes . If we are talking about accommodation then accommodation in tents would be great - I love being close to nature . I am not talking about some kind of achievements in those disciplines but they are my big passion Unconnected part of all people 's lives is shopping . As a teenager I must admit that there is nothing more enjoyable than shopping . It 's like , , walking in the clouds , , you feel like you are flying . Choosing gives me such great pleasure because I never have to worry about where I get money for my wishes . It 's hard for me even to imagine a situation when shopping is not enjoyable . Probably it is one of the moments when you want something badly and you ca n't have it . I hope your questions have been answered appropriately . Instead of traditional telecommunications , we can talk by , e - mail or even see each other with the help of a computer network . Among the large number of choices , this unfinished church offers a gorgeous view from the top of its towers , a charming story and one of the most representative examples of Catalonian modernist art . We looked at every hotel in town , trying to give you the best offer . You do not have to wear any special kind of clothes but in my opinion you can wear very casual clothes . Finally , on the last day I suggest you go to the mall where you can enjoy shopping and looking around . The aim of this report is to recommend you to visit the Fuerte de San Diego Museum . I asked some people in town and this was the best place to choose . The Fuerte de Sandiego Museum was built at the time when the Spanish people were trying to take all the lands from Mexico , one of the most important people who was at front of the Fuerte was Hernon Cortez , the first Spanish in have more lands than anyone at that time . The Museum is situated in front of the sea in the centre of Acapulco . This invention has made our lives easier and quicker . Service : It is over 100 years old but it is kept in good condition by the local people , who are proud of this castle . It is a different experience . History : At the castle there are always a few guides , who will show someone around and tell him about the history of the castle ( when it was built , by whom and why ) , which makes everyone enthusiastic . I recommend visiting this castle , because it is interesting , marvellous and something different . Nyremberg is also famous for this castle and the students will have a different experience and a lesson too . Finally , there are a lot of museums in our town . Therefore , I would suggest going to the frogs museum , which is really fascinating . subject : Aboriginal Art Museum . The aim of this report is to describe the biggest building of our town . b ) The building was built in 1999 . Therefore , it is an example of modern architecture . In addition to this , we have chosen the luxury Palace Hotel , which is comfortable enough and in a good location . Cars , boats , motorbikes , airplanes : Who has never used them once ? In this world , where the nations fight to be the best one could n't be different , the airplane became the most important thing in the war . The best way is definitely by air . Thank you for your letter . The bus will pick you up right at your hotel entrance . You do not have to wear special clothes , just wear what you always wear . On the top of the tower it has a huge clock on each side . It was rebuilt in 1948 because of the Second World War , when it had been damaged . The tower is absolutely marvellous . I received your letter and I 'm happy to help you . We booked the Palace Hotel for your group . It 's nice and quiet . When you go out of the hotel turn right and go straight on ; turn right again at the first crossroads . In the big room where we 'll have the party , there 'll be some pictures of our college . You 'll see all the generations who passed through here . The group has been booked into the Palace Hotel , and the best way to get from there to the conference is by tube . The location of the conference is then five minutes by foot . For the party I suggest you wear classic clothes ; maybe something black and not red or pink . I am going to wear classic black trousers and a white jersey - it might be that this information gives you some idea too . I am sorry to hear that Richard Brown is n't well and hope he 'll get better soon . I am more than happy to give you the necessary information . Regarding what you could do in your free afternoon on the day you leave I would suggest you take the students to our History Museum . There is also a gift shop in there , where your boys and girls can buy some souvenirs for their families and friends . More and more people are learning how to drive and choosing to travel by car , because it saves a lot of time compared to travelling by public transport . You do n't have to wait at a bus stop in cold and windy weather for a late bus , or be stuck on a train for an hour due to some track repairs . You can just jump into a car , tune your radio to your favourite station and have a pleasant drive to your destination . I use my car every day everywhere I go and I absolutely love it ! I can listen to the radio and sometimes can listen to Thai music , as I brought some cassettes with me from Thailand . I took a driving - theory test last October and I passed it and I will take a practical driving test very soon . It is called the Palace Hotel , and we hope that it is going to meet your expectations . I strongly recommend you to use public transport in order to get there , because you may find other types of transportation quite expensive . Moreover , you must be aware of the fact that the conference is going to last two hours , until 10:00 pm . After that our college has organised a barbecue night , with traditional local music that you must not miss . I hope that you will find my information helpful . THE HISTORICAL MUSEUM Without any doubt , it is a historical place which provides its visitors with the opportunity to discover different aspects of Greek history during the passing of the centuries . Do n't miss the chance to visit the historical museum , located in the heart of the capital city . The historical museum is simply a symbol , a proof of what the Greeks have always considered as a fundamental principle : their freedom . There are five different floors , each of them presents a different chronological period of Greek history , starting from the period before the birth of Jesus and concluding with the revolution of 1967 . Inside the museum there is a bookshop with a large variety of historical books , maps etc . If you really want to discover what Greek history means , we strongly recommend you to visit the historical museum ! ! ! When you are in the bus station you will catch bus number 37 , which will go to the town centre . Anyway the college is the first road on your right from the town centre . Architecture : It is a typical from this epoch with beautiful drawing on the wall and first kind of writing in the sports centre . They decided to build more schools , especially in Switzerland because the people there were considered clever . The people who will attend the party include many professors , semi - professors and faculties . Firstly , there is the aquarium in the building . I hope when you visit you will be favourite place . Firstly , Palace Hotel has been booked for the group 's accommodation and I spoke with the hotel manager about travelling to the conference . I am writing in reply to your letter about the international student conference . And the best way to get from there to the conference is by coach , as there are about 35 international students , and they are all strangers here . A big Buddha was built in 1997 just next to the temple , and it is the largest outdoor Buddha in the world . It is easy to get there and free admission . On the other hand , Hong Kong is known as a highly commercial city , and you could find something different in Po Lin Temple . To hear the voice of the person you love is a feeling that is hard to describe ; it 's wonderful and so real . You can imagine their face clearly . I had a problem with my best friend once when we kept in touch through e - mail . With reference to the information that you have requested , the hotel that has been booked is the Holiday Inn , in New Port and to get to the University of Wales , which is not far from the hotel , you only need to take a diversion where clearly indicate Carleon and once you are on the main road , all you need to do is to follow the country road which takes you directly to the place . As for the last day , I would suggest you make a visit to the local museum and the ruins of the Castle . In the first you will find a very interesting collection of Roman remains , also you can visit another section which is supposed to be a Roman site . I always had considered myself to be very lucky to be born in the century because of all the amazing human inventions . However , I feel that at the moment there should emerge more groups to control this development because of the industrial pollution that has been created and it seems that it 's very little , what is being done at the moment in relation to our environment . I think that it will be nice for the end - of - conference party if you invite somebody to sing and give the students the time to enjoy themselves and to dance . First of all we need the telephone in our house because it 's important to make a call if you need something or if something happens to your house and nobody is with you . In the past people did n't have electricity and if they wanted , for example , to read or to cook something they used to light a fire . You must have a TV because you can learn about what is happening in the world and you can see some places that you haven't been to . I 'm very glad to be able to help you out with such a situation . At the same time you are enjoying the castle you can take a break to go to the beach and you can look at the castle from the sea . That is also amazing . Yours sincerely , I am writing to answer your letter where you asked for information about the conference and other points in relation to it . With the Internet you can communicate with people in different places of the world at the same moment . I am writing to inform you that I have received a letter from you about helping you to organise an international student conference in my college . For those students who are very interested in shopping , clothes shops , jewellery , stationery , bookshops , fashion and beauty departments and many more are available . For those who want something more exciting and adventurous , you are recommended to visit the Fun Fair and amusement arcade on the top floor of the building . I am writing in connection with your letter about the international student conference . You will never regret about my suggestion . If you need more information let me know . I 've received your letter asking me for further information about the conference that you are going to organise very soon . Here you have a little help for it . First , I 'd like to tell you that the hotel where you are going to stay is " The Palace Hotel " , which is situated at the centre of the town . It is a well - situated town with a lot of museums to visit , especially " the History Museum " , which I visited last year , and I think you will enjoy it . It 's impossible nowadays to imagine a life without that invention how quickly affects our life especially in business . The answer was always the same : " Impossible " . An old woman told me how important the phone was when her only son was abroad studying computers at " Chicago University " . She told me that every night she expected a call from her son , because her was the line of the happiness . However , there was one person who told me he was n't happy at all with the phone , because he used to write a lot , especially at Christmas when he wanted to wish all his friends a very nice Christmas but now everybody phones him , ending a very old tradition . Firstly , about your accommodation , the college which I belong to offers visitors free accommodation with full of facilities This party is unlikely to be that formal , but I recommend you do n't wear jeans and trainers . I 'm sure you 'll enjoy it and maybe become familiar with our culture . These days , we 're surrounded with so many different kinds of products which our ancestors invented . Let us try to appreciate their importance again . When you take the class on computer programming , you will definitely need one and that holds true for the class on politics , because you have to study statistics on your computer to do social research and some analyses . My professor said , ' Go and get familiar with your computer , otherwise you 'll fail ' . I find it amazingly easy to forget the importance of inventions which we usually use without thinking . At the end of the conference there will be a reception at the hotel . Lots of books , papers , lots of things on the tables . Computers have helped to improve health because in this century we can use them in medical operations . Doctors can manage the most extreme operation easily and confidently . No matter where you are , what you do , apparently , you need electricity . For your last day I think it would be interesting to visit our historic and famous city centre . People now had the chance to move to faraway places to spend their leisure time , to relax , or just to see something different than their home . Your group has been booked into the Palace Hotel , which is situated in the city centre , 15 minutes ' walk from where the conference takes place . The group has been booked into a comfortable and well - situated hotel , whose name is the " Palace Hotel " . Naturally we have a lot of interesting things to visit but something that is special is our cathedral . Finally , I am sure you and your group will spend some enjoyable , relaxing days here . It is well known in almost all families , often with a lot of different channels . I can not imagine living without television , it is something that we need for our education , and for getting news and other helpful information . Nowadays everyone has a telephone . Nowadays we are very busy and we do n't have free time to see our friends , but we can call them and talk or chat with them . The telephone is a very important invention if we can use it correctly without using it as a type of entertainment as many people do nowadays . However , if you 're interested in archaeology you should visit the History Museum in Garden Square . In the last forty years people seem to have become completely addicted to using their car . In fact we can go everywhere sitting either with friends or with our family and carrying our luggage and shopping bags . For example , in the past it would had been extremely exhausting to travel on a horse but nowadays we have lots of big and spacious cars and a wide range of options to choose from . On the other hand one of the main advantages is that we can save time and money as cars have long last and allow us to get about quickly . There are eye - max cinema , museums , a gallery . Pusan Castle is located in the South of Pusan . It was built four hundred years ago . With reference to your letter which I received yesterday , I would like to give you some details about the international student conference , also the accommodation and activities that are planned during this week . I hope this letter answers all your questions , if you want to know more about it just give me a call or send me a letter . The aim of this report is to give some information about the new Acapulco resort buildings which were built 10 years ago . They are some of the first buildings that were built with the latest technology and designed by an important Mexican architect . In addition , the resort has an interesting historical background concerning the architecture and the best facilities and activities that you could have in Mexico , for example , it provides different kinds of tours around Mexico . In spite of the disadvantages , I would strongly recommend students and the public to visit the new Acapulco resort buildings and have a great experience learning about the buildings ' history and at the same time travelling around Mexico . For the end - of - conference party we have booked one of the halls of the hotel and they will provide us with live music and catering . Finally , to fill your free afternoon I would definitely recommend visiting the cathedral and having a walk around the old part of the city . If you want , it will be my pleasure to show you the area . Chairs are not only part of the furniture , they are also objects of decoration and you can even find some in museums where they are art objects . The world is packed with so many types of chairs , from the common wooden ones to the most sophisticated and comfortable others finding a basic range of prices . From my point of view the chair is without a doubt the most useful gadget ever invented . Some people use them in their work , others wish to sit in one by the end of the day and for some other people a wheelchair represents the possibility of movement . I phoned the tourist information office last week and I got some information about the accommodation for the students . As requested , the aim of this report is to assess the suitability for a group of American students of the visit to the Etruscan Museum . It contains lots of archaeological Etruscans founded and some remains from the Estruscans ' necropolis . Also there are some free headphones that explain the history of the museum . Although the entrance fee is quite expensive for a group of students , I strongly recommend it for their excursion and because of their interests . In my opinion the easiest way to get there from the conference would be by taking the Picadelly line . Basically , during three hours in the afternoon nobody is able to visit all of the interesting places in London . Are you always happy when your telephone rings ? Since I have been travelling around the world , I would have imagined being in touch with my family or friends without the Internet or my mobile phone . This is an International student party , so I suggest you wear traditional costume . You can inform all the students that they can take some traditional food to the party . It includes a library , II suit , academic rooms , a GYM Club and a restaurant . There is a very big library . Just in the same building , you can find a restaurant . They can also talk with British students to communicate study experience . The group has been booked into the " Maria Luisa " Hotel , which is situated in the centre of Wimbledon called Wimbledon Village . The purpose of this report is to give a brief description of the Academy of Art in St Petersburg . This building is situated on the magnificent bank of the Niva River with an excellent view of the Hermitage Museum . The building was built by a very famous Russian architect and is a marvellous example of Russian classic architecture of the XVIII century . In the Academy of Art you can find the oldest art library , with a wide range of books , and the Museum of Russian Art , with a huge collection of paintings , sculpture and architectural projects from the early eighteenth to late twentieth centuries . For example , I work for a bank , and we need to have weekly meetings with our Director living 800 kilometres away , and he does n't have to come here , we just have a phone conference where everybody can talk , and that is it ! Finally , on the last day you have three hours before you catch the plane so we suggest you go to the shopping centre and buy something for your special person or go to the museum because this museum is the biggest in the world now . It is up to you . for Example , THAILAND , the United States of America , INDONESIA and CANADA . Therefore I am thinking of selling my car , which has changed my life over the last 10 years , which has given me a kind of freedom , which has gone with me to all sorts of fantastic places , and changed my life for a new life : without a car . Finally we enjoy a disco party so you should wear a suitable dress . So he climbed on the ladder up to the window and he opened the door but policemen came there " what happened ? " Jane explained that situation and they understood her . I am writing to give you the information that you asked me for . From there you can get a taxi , catch the number seven and eleven buses , which both take you very close to the conference centre , and also you can go by underground to get there . Then , after the Conference , there will be a formal party at the group 's hotel , which starts at 9:00 pm and finishes at 12:00 midnight . Yours sincerely Hampton Court Palace is located in Hampton Court . For the last day , we have arranged a small party in the hotel . Then we all set off to go on a sightseeing tour of Bromley town centre for about two hours before you leave for the airport . Bromley town centre is the most beautiful shopping centre in South East London . We definitely need light to keep on . I dare say , without light , our life would go into a dark , dark hell . I am writing to you to answer your question about the conference in London . Thank you for your letter . I would like to inform you that the group you belong to has been booked into the Palace Hotel in the centre of London from the 24th of June until the 25th of June . Ladies should wear an evening dress and gentlemen a dark suit . 1 ) " Fontana di Trevi " sited in Trevis Square in the centre of Rome . 1 ) First of all , they are located in the centre of Rome so they can take a bus to get to them move and around the city . Regarding your last question I can suggest visiting the Royal Castle . Actually it is a whole complex , the Old and the New Castle , the cathedral and the very interesting underground part with its amazing crypts . And if you climb to the top of the main tower - the keep - you will see unforgettable views of a white town . You will find there an amazing collection of old weapons , armour and , we are especially proud of it , the great collection of swords . After that I am sure you will be happy to find a few restaurants located at the New Castle . I am sure that should be enough for a one - day trip . Please note that alcoholic drinks are only sold until 11 pm . Coming back to ideas and Suggestions , I 've promised to give you a free afternoon before you catch your plane . I would advise you to visit our zoo or to go for a picnic in a park before you go to the party . Such simple and everyday things like a telephone , a car , a computer only seem to be normal and everyday for us as we use them every day . These inventions have improved our life a lot since they appeared , but not everyone believes it is really so . First of all they talk about the environmental pollution which cars and other vehicles create , overspending the electricity using electric equipment and some other problems . I think the telephone is the most important thing in many people 's lives as it allows you to get in touch with anyone and it does n't matter where you are ( I am talking about mobile phones , which a majority now have through choice ) . I think it would n't be possible for us to survive without electric light . Because of shipbuilding developments people were able to make all those geographical discoveries , and automobile transport is an undeniable necessity in our life . Because of everything I have said I am more likely to think that the benefits of people 's inventions are much greater than all their disadvantages . If you have any further questions , please do not hesitate to contact me . SUBJECT : Recommendations for a place to visit The place I would like to recommend is the seventeenth - century Royal Palace . The Old Town is the best place for an afternoon stroll , with a great deal of restaurants , cafes and street performers . There are a number of hotels or youth hostels to stay overnight , if necessary . I am pleased to provide the information you need for the group . The hotel I booked is the Palace Hotel which is in the centre of London just two blocks from Victoria station . I think it is very convenient for the group . You know the Victoria area , it is easy to travel from there to the rest of the city . About the hotel , it is clean , and provides a good service . The rooms are doubles and each has its own bathroom and for the number of students we are getting good value . And the best way to get to the College for the conference is to walk to Victoria station , get the tram to Glouster Road and after 3 blocks on the left - hand side you will find the College . However I am going to make a plan for each student with all of the details and the address . About the party at the end of conference , we are organising it in the same hotel which has a nice salon . It will be good for your group because you do n't need to move to another place . It is not a formal party so I think it is fine to wear something not too formal . I want to suggestions for the last day . You and your group could maybe go to Green Park and visit the Queen 's house and Parliament , this area is very nice and the group would engoin after the conference to get some fresh air . Another option could be the new Tell Gallery . I have never been there but it could be a good excuse to visit it with you . I have been hearing about the Ave they have in the exhibition , it is interesting . I hope you found this letter useful and if you have any questions , let me know . I am looking forward to seeing you soon . Yours sincerely The computer was invented 30 years or more ago and started processing information with a big card which was perforated and made a small hole and each hole meant something like a code . The machine that was used for reading this card was very big , you used to need a room for the computer . I remember when I had the first lesson at the University and the teacher took us to the Computer Centre and I saw these machines , all my colleagues and I were laughing was very difficult to imagine how you can work with this kind of computer . These days the computer is part of your life , you use it all the time . Sometimes you do personal and other times it is just the things you need to do like go to the bank , use transport , go shopping etc . It is a machine that makes life easy and ibendow you can carry it everywhere . It is amazing the way as the fas the computer changes , the programs are faster and more useful and practical . But the computer has a bad side too . I whand mean we life each day we depend more and more on it . So I feel scared when I think about the consequences if some of the viruses or mad people misuse as happens these days with sex or other . I work with children and the computer helps me in my job but affects it too . So I hope the world reaches agreement about this and computer engineers have to prevent these problems because something good could be something very dangerous . Both of them are as convenient as getting there . End of all , in my opinion we could go to the centre of the town because there are many places to have a look at and go shopping . So that 's why they have invented the telephone . Take the bus in the direction of the centre of town . With the computer , we can write a letter , correct a word or change the name without writing the whole letter again . We save the letter and in three weeks we could send it to another person . If we had n't any , we would have to write all the transactions on paper . I would like to inform you that Centeral Red Lion Hotel has been booked for the accommodation of the group and it will be quite easy to get everywhere on foot from the hotel during your stay . There is no need to bother about clothes . Before you leave England , I suggest you visit the canals and small villages around Basingstoke . You could have the opportunity to see the country life . Would n't it be unbearable and painful ? Certainly it would be just like mine . Because I live in a rural area , far from any village , town , or city centre . But also I 'm aware that time flies for me . I must do whatever I want before it is too late . And I have to confess the invention of the car was the most useful invention for humanity . As you need more information , I will answer all your questions with pleasure . It is one of the most comfortable hotels in our city and situated only half a mile from the main building of our college , so it is very simple to get from there to the conference by foot . Finally , you can spend an afternoon on the last day visiting local historic places ( castles built in the 13th century ) or art galleries , as well as the beautiful Bodnant Garden . I think that one of the most important inventions affecting our life is the telephone . I have just received the letter from you and I 'm writing to you as soon as possible . The best way to get from there to the conference is by coach , which I have arranged for you . Then we can have a rest in the cafe and talk before your flight home . I think I have given you all the important information . Nowadays motorization is one of the most important inventions . When you look around everybody has a car or motorcycle . No matter that people started worried more about pollution in the world . I love motorcycles and I do n't think I could live without them . I have ridden a motorcycle since I was 16 years old . We rode motorcycles for a few days before we finally got to our meeting points . I really enjoy riding my motorcycle . When I ride it is only me and my motorcycle . I am really grateful to the people who invented the first motorcycle in the world . To sum up , I can say that the greatest ever invention is the invention of computers , which has affected both individuals and society as a whole . Personally I recommend the Dickens tour because it is a good length walk and very historical . The bus leaves at 8 a.m. from the front entrance of the hotel . The end - of - conference party is in a tent and in the grounds . It will be a surprise ! On the last afternoon you could go on a city tour , visit the Museum of Fine Arts , or enjoy the beautiful flower garden next to the public park . The museum is near the city centre and is accessible by bus or walking . It is a very cosy building that is on the same avenue as the conference building , approximately one mile away . The increasing number of cars related and infrastructure is now creating problems . A lot of roads and motorways are overcrowded , and environmental problems are more and more related to the intensive use of cars and lorries . People and governments are concerned about how to limit the effects of cars on the environment without affecting their mobility . If you are free I will show you around our college . The countless fascinating things will definitely take you the whole day to appreciate . I love baking cakes , cookies and breads . However , there is something about which it is still believed that it was an extremely important invention . In my opinion , the reason why electricity is such an important invention is that most machines , appliances and equipment which are used in modern times can only be operated with electricity , which makes people not do too much physical labour . Dear Mrs. Maria Smith , I hope that our friend Richard Brown does n't have any serious illnesses . This party is for the students so the clothes wo n't be so formal . We can choose between two options for spending our free time . I do n't like thinking of my house or my life without all these facilities . Now , you just need to think that you would do or what would happen in a city , with a car , aeroplanes , shops , all these things without lights . It is supposed to be from 7 pm to 11 pm . I hope I have given you enough information and if you still have some questions , please do not hesitate to contact us . Lots of great inventions have been invented in order to help people live comfortably . Because there are a lot of beautiful trees and you can see the sea . By the way , the end - of - conference party is a kind of farewell party . The first part , the chairman and a few guests will give a speech and the second part , the participants will evaluate themselves , and the last part will consist of dinner and drinks . For example : electricity , the computer , telephone , boat , and car ( wheel ) , etc . It has absolutely reduced women 's housework time . She appears occasionally and opens every window in the castle . I would suggest they wear formal clothing , such as tie , trousers and blazer . The building is called the Chiang Kei - shek Memorial Hall . The Memorial Hall is surrounded by large playgrounds . As you go into the main Hall , you will see a huge statue of Chiang Kei - shek . This is because the building is the remembrance of how well Chiang did in History . Apart from the main Hall , there are also lots of other galleries . In these galleries there are Historical paintings and antique furniture which Chiang used . there are also restaurants and modern galleries . When you are tired after looking around you might want to buy drinks or something to eat , or if you are fed up with historical things , you might as well just pop into the modern gallery to see things which are more modern . Finally , if you want to visit this building I would recommend you stay at a hotel not far from the memorial Hall called the Hyatt Hotel . OLYMPIC MUSEUM The Olympic Museum is situated near the lake and offers , for the tourist , an unbelievable view of the mountains and the lake . I hope you will enjoy the visit and I wish you a nice holiday in Yverdon . It is a modern hotel , near our college , and it is also very convenient for the airport . You can take either bus or taxies . The number 101 bus leaves from the airport , then you can get off at the " city college " stop . Nowadays people have become used to watching television programmes every day . Someone is talking , laughing , crying on there , so join them . You will feel much better than you would just by yourself . Some TV programmes are enjoyable ! In conclusion , TV has both advantages and disadvantages , but on the whole the advantages are greater than the disadvantages . On the positive side , you and the group will be able to learn more about Welsh artworks which are presented on the wall , on the door and some furniture . And some old toilets might look awful . So , I 'm writing to reply to give all the information you asked for . The best way to get from the hotel to the conference is using the tube because it takes only 20 minutes . And your speech would be better for the end of conference party . Some people might say electricity is more important than any other thing . For instance , when I want to contact my friend , it 's quite helpful to use e - mail . However , the computer is worth using in our life until a more convenient machine is invented . It also holds an international exhibition all year round . In my early childhood my mother said to me that when she was a little girl there was only one telephone in the building where she lived . It was in her parents ' apartment . It is not an easy decision how to react now . thank you for your letter , which arrived yesterday . I hope to give you all the information you need and , please , if you want more information or something is not clear , please do n't hesitate to contact me again . It 's a very comfortable hotel where you can find everything you need . From there to the conference you have to take the number 50 bus , which stops near the hotel and arrives in the town centre . For this conference I suggest wearing something very comfortable but elegant . The organisation wants all the men to wear a jacket , but a tie is not necessary . If I find something special you will be able to visit in three hours I will call you . It is the most important church in this area because of its architecture . It is something very special . Its ceiling is made from many small pieces of wood . Its windows with many colours . It is fantastic . I look forward to hearing from you I hope that all the information you need will be provided satisfactorily . Secondly the best way to go from the hotel to the conference centre is to use one of the shuttle buses we provide at this event . Finally , concerning your free afternoon , there are plenty of activities , but I suggest you visit the Caldea centre , which is a very special bath centre . If you need further information do not hesitate to contact us . There are plenty of churches , cathedrals , and old cottages . The churches and the cathedral are very interesting because of their different Romanic styles . Finally if none of my suggestions fit with your expectations , let me know more about what kind of buildings you are interested in and I 'll do my best to find something more suitable . To finish , if you have spare time , you could walk in the centre of Poitiers which is very beautiful . In the Pompidou centre , there are different exhibitions on different themes . So if you visit Paris , the Pompidou centre is a very interesting building to visit , even if in Paris there are many other buildings . It is situated in the centre of our town and it takes five minutes to get to the college , where the conference is going to be held . I think that the best choice for you is to take the 234 bus . Also there is a very good shopping centre next to the museum . To conclude I would like to say that the governments of all developed countries would n't have been so concerned about the so - called " problem 2000 " if the computer had not been so important for modern society . First , I would like to congratulate you on your new responsibility , because of Mr Brown 's illness . There , I saw the exhibitions and admired the building itself . If you go down a few steps , you will discover the cellar . When you go uphill , you have to bend your back . They paid much attention to their faces and spent lots of money to shop . I started to notice the ways of foreign clothing and hair styles these past days by watching TV programs , such as Friends , Scrubs , etc . I like you give me any comments and opinions too . It was like water and his bottom was red . Everyday , there are new things to try . It 's a kind of Tai - wan style massage . After that , I went to a fitness club which has bedrock bathing . It 's nearly 12 pm . Elections will be held on August 30th . This time they may lose administration . It is made of sponge : ) It is cute . I 'm learning English , but it 's really difficult for me ! I was relieved to hear the doctor 's diagnosis , but I 'm still worried . Innovative and original ideas are good , but if you can not find them , you should know that most of research work is just refinement of other 's work . I was somewhat puzzled what to say . So , after he was made consul by the Romans , he went to Africa , where he fought against Yugurta , who was king of Numidia . cuz I don have a school until then ! ! That 's why I 'm very excited to teach students English ! ! Those are such things as playing sports , reading books , listening to music , taking walks . My favorite hobby is talking with my friends , because I think it is the best time to be with my friends . The other day , I met one of my classmate from high school at a station , for the first time in fifteen years . Although I know a private school student like me in Singapore is stictly prohibit to go to have a job . Today , I went to the karaoke box with my son and neighbors . I slept all day until I had to work . Fortunately , I am a hero of justice . I think that the war should never of happened . I do n't understand why so many people are into this stuff , I decided to arrange some nice dates for my friends by following my own style . Without audiences , love judges , parents , just a friendly and private atmosphere , which allows them to be themselves and enjoy the moment . Going abroad is my dream , so I really cherish this opportunity . It is a good chance to strengthen my knowledge , broaden my horizon , enjoy foreign customs , and also realize my dream . I just listened to his bandBoyzone 's brilliant song `` No Matter What `` on the way back home . Next Wednesday , the economics seminar softball match will take place . When someone asks me , `` What 's your favorite thing ? `` Oh , how wonderful the college life is ! Once you get into the society , your life won ' 't be as simple as that in college . Steven taught me today . I attended Japanese tea ceremony lessons one day a week for three years , before I came here to Japan . I liked to learn how to serve green tea . I made some friends at the lesson . After I made it , I drank the green tea . In the grammar exercises , which I did for hours ( ? ) I could n't correct any sentences ( ? ) . Because it is very important ; I 'll never get a good job without it , and I 'll never understand half of the beautiful sites in the Internet ! And I like to draw in Photoshop and Illustrator , and many other things ! He is crawling everywhere as his instinct tells . I put my fingers into his little mouth , and pull it out . My very first diary entry on Lang - 8 The first half of the game was a draw and the second half of the game was a draw . Finally , Japan won the game , so `` Nadeshiko Japan `` is top team in the world ! ! I was excited , so I could n't sleep ; ) But I do n't regret watching soccer . This is the most important thing to them but , my opinion is different . Today , I went to university . I wanted to more study . But , I 'm going to do it now , because my laptop is supposed to get repaired , and in a couple of hours , the mechanic is going to be here to pick it up . Yesterday was a busy day , but I was very happy . We have many foreigners as our clients and I really could try my strength in English ) It ` s so interesting to talk with the British , Germans , Italians , Danes , Finns , Croats . . . He has recently been accused of punching a man while drunk . A sumo champion , called a yokozuna , is required to be strong not only physically , but also spiritually . During the last summer vacation , I traveled around Southeast Asia ; Malaysia ( Malacca and Kuala Lumpur ) , Cambodia ( Siem Reap ) , and Myanmar ( Bagan ) . He is now in Israel . May it be sunny tomorrow . . . May it be sunny tomorrow . . . It is said that you can be healthy and happy or your wish will come true if you climb this mountain . My junior high school friends and I are very interested in this legend . It was the kindergarten level ~ ~ . . Please tell me : D Yesterday , I went to Home Depot to buy a bag of soil and a planter . The roses grew and their flowerpots are too small for them . I think I caught a cold : - ( Epitome of Cool But the stuation is being recovered by help not only from other Japanese but also from countries all over the world . We walked around the garden , we saw the animals and differents trees ; we had a small lunch He has a funny and interesting dance . Well , _ I 'm into Ray Charles 's song _ `` Hit the Road Jack `` _ recently . My grammar is very poor , and my poor grammar always drives my SAT grammar teacher crazy . Luckily , I have some Korean friends so I worked on it while asking my friends whether the translation is correct or not . this is just an excuse . It was a margherita pizza . Strange Japanese customs ? So , whenever I pass by , I am sure they must be new employees . It is very convenient that its cordless . By the way , do you know ' Lucky Taxi ' ? Today 's class is the same class which I was n't able to teach them because of CHOTA MAJI . When I was in Korea , if we skipped the class because of other affairs , they seemed very happy . However , in here , my students do n't want to skip the class . And I fell in love with the library at our school ! ! ! According to the book , taking a nap is not good for digestion . If we get very sleepy , we should go for a walk to forget about our sleepiness . Actually , it requires lifting up their knees high enough to make the Kinect sensor to sense their move , so he was correct and had fastest speed in the race . I went to balloon lecturer as an assistant at `` OMOCHA OUKOKU `` . It was difficult to lecture to small children . My mother committed suicide when I was only one year old , and since my father worked far far away in a town , I was brought up by my Grandma . I went to the gym in Neyagawa city so that I can strengthen my muscles . And people seem as if they were constipated ( this word is funny because in Spanish `` constipado `` is `` cold `` , and it 's easy to mistake the meaning xD ) . But I suppose everybody has a reason why they want to study a second language . I could come into contact with a lot of music , from Billboard to Classics , because of it . But there were US Armed Forces in Korea , and they radio broadcast their Billboard songs . I replied , `` Yes I have one , but in Russian `` . So I think it 's time to create an Englishversion . I am a college student . Today is a special day . I did n't know whether he 's worried about it or is looking forward to it , but I hope that it will be a special and wonderful experience for him . Many people visit there . In order to drink , I finished my work early . I do n't know the reason on why I was so annoyed about everything . I got out of temper to my friends as much as I felt sorry for her . I do n't think students scores should be the standard for an establishment . For example , varieties of teaching methods and materials should be involved in the criterion for assessing the teachers . The result of my check - up was also anemia . I am really looking forward to it . I will do it on monday for sure : ) I have become the director of a company now . Interdisciplinary , practical studies , a wide choice of courses , experimental spirit ( ? ) and open - mindedness are reasons why I am so enthusiastic about RU . My favourite subjects are maths and physics , so probably I will have a problem with connecting them with traveling or something like that . But recently I heard about charity organizations which need engineers and it could be a nice idea . but I feel tired because of difference temperature between Singapore and Japan . Actually , I love cats ! If I can be a cat , I will go out for a walk the whole day , sleep until I feel good , be along with people when I lonely . I noticed that a crow dropped the walnut from his beak to the ground in order to break the shell . He played the contra bass and the guitar . Since summer vacation started , I always stayed up to play computer games and even until AM13 : 00 . And we planted trees and cleaned the garden . Today I bought a book by Morimi Tomihiko at the bookstore in my college , where all the college students and teachers can buy books at a five percent discount off the regular price . Furthermore , his stories are very enjoyable . The sandwich costs 280yen . I ate that one first . I probably ca n't get raw ham at ordinary stores . Now I 'm working in my company and I feel a little tired . Maybe I enjoyed too much during this holiday , so I ca n't acclimatize myself to different place or people , etc . English pronunciation Other countries , Germany for example , most of their employees can speak English rather than Japanese . For Americans , Japanese `` Futon `` is a mysterious sound because shape of mouse for `` Fu `` is different between American English and Japanese . it was rainy today . it was very difficult ! ! ! ! Japanese marriage system Brides and grooms simply go to city offices and turn in the marriage application form , which has the brides ' , the grooms ' , and twowitnesses ' signatures . No picture IDs are required to turn in the marriage application form . Somebody else can go there instead of the couple . Because of the system , sometimes problems arise . When a couple goes to the city office to turn in their marriage form , they sometimes find out that one of them ( or both of them ) is already married to someone else . Until he created the first APPLE computer , all the effects what he had done before came back . Hot coffee , cigarettes and a warm blanket - this is what I need today . So I bought two , one for my feet and the other for my neck and shoulders . In korea foreign missionaries have been succssefully brainwashing people . just one reason I did n't believe him . This is my first post in English . I know this SNS , using learning foreign language , `` iKnow `` ( http ; / / www . iknow . co . jp ) . Good Dinner at Omiya Anyway , someday , I want to get lasik if it can improve my eyesight causing no side effects . A single house This is the first time I write a diary in English . What changes happened ? Fortunately my husband does n't interfere with me . He joked `` Please buy meat for visiting , esp chicken for dak galbi . . . `` It reminds me of the Bable story , God separates people with different languages , and people are never united as one any more because of the languages , then the world is full of suspicion and frustration . By the way , a Typhoon is coming soon and maybe a lot of students are thinking , `` whoa I can rest a day , hopefully the typhoon stay in Taiwan `` . After I entered elementary school , my parents switched from running a supermarket to owning a fried chicken restaurant . Now they run a grilled meat restaurant . I would like to write a letter to my English teacher , so I want you to correct my English . I drove alone , I 'm not afraid of driving anymore . I can hardly wait for spring vacation . And I have learned another important skill , that is to write down everything that you do n't know , or you can not remember clearly , especially things which are very important to your job . yesterday ? Typhoon came , so the sky was cloudy all day , and temperature did not become hotter . I still belongs to my company in Japan . I can do Japanese company 's business in NY . If you have a more suitable English name , please tell me ~ I felt sad and my sister got out of the house ! I will back to school soon , my school is in another province ! My next time back home will in many month later , I really do n't want to back to school with a broken - heart , but I can do nothing ! I 'm writing my diary for the second time because wrong . ( ? ? ? ) I am writing the diary and doing a lot of things I check my e - mail and read hi5 . My friends send comments to me . Hi 5 is like facebook . It is very popular in thailand and I chatted with my university friend . We talked about work . She is not working at the moment because I go to out side of bangkok . ( ? ? ? ) she lives with her family . I know her because she went to bangkok to study . I plan to party this sunday at my closest friend 's brithday . We played a computer game . The newspaper and the weather forecast inform us when the cherry blossoms come out . I was so humiliated by my accent during my childhood that I tried to modify it . Because it was gifted by my ancestors . listening nemo Nemo : Daddy help me Nemo 's friend ? Daddy : I 've got to find my son Nemo ! but my classes ended late . We talked a lot and had a blast , and it was interesting that one of the participants talked his experiences when he 'd been in Germany . Life will be devided into each part that let him feel safe when he separate people into various groups . Yesterday , I rode from the main campus to the medical college . I usually study at a certain cafe & restrant which is called Saizeria . I am a junior student majoring in Japanese . After graduating from high school in June , 2008 , I have studied Japanese for nearly two years since August , 2008 . I run for my health so I never over do . But I run at least 3 kilometers when I feel something bad . one class is ninety minutes , so I got exhausted . I take as many classes as possible , because I have a voracious appetite for studying ! So we had a lesson with another teacher who is Ethiopian during his holiday . It ended with an unpleasant atmosphere . My friend told me that she wanted to give me a surprise . I am planning to stay in Hong Kong for a month . And I 've searched information about where to stay ( there ) . I could n't get back home before 9 pm for awhile and had to rely on baby sitter everyday . But I ca n't decide what to spend it on . I want to buy an ipod music player . I want to take a flower essence seminar . A new semester ! Tomorrow a new semester will begin . And I watched on TV that US journalists have been detained in North Korea . Journalists that go to dangerous places are so crazy , even though there is possibility of dying . So , I will write what I 'm going to say . When I arrived at Copley , I 'd never seen such a tremendous amount of people there . I hope that the Red Sox will be the winner of the World Series , so then I 'll have a chance to watch a parade again ! It 's a love story , during the war , between a hurted prostitute and a soldier who has to fight . and I took out some economic books from the library . Tommorow I will have to study English and economics . I took part in a job interview this morning , but after the HR kept asking me questions for about 30 minutes , she told me maybe this position does n't fit for me because I do n't have the SQL skill . I 'm looking forward and waiting for what the Apple will bring I came here to learn English . I laughed and said : You 're a hairy , obese idiot ! But I want to continue studying English every day . Happy day ! So I want to watch movies but it ` s too expensive for me . . . Thus , in the movie , Coluche travels around the world , and experiences some adventures in various countries such as Morocco , The United - States ( Harlem ) , China and so on . . . I think it may be interesting to listen to the French accent and the ( maybe exaggerated ) view of Harlem by the French at the time . I also have to shovel snow around my house , car parks and office . . . In addition to this , traffic is so crowded . . . I just started this SNS . People who have already graduated can also take this exam , so that makes this exam more competitive . But actually , people may have the ability to pass it , but they still ca n't communicate well in English . I passed it half a year ago , but writing passages are still really hard . . . Dakdori was just one the recipes included in the book under the chicken menu . I surf the internet with an air - conditioner and a fan turned on . After surfing the web I watch TV with the desk - top still on and use a stove and microwave to have a meal . All I could do was drink beer going stale in the refrigerator . I can understand its meaning , but is it awkward for the English reader or listener ? English Again ! After an English lecture , I tell myself over and over again : I must learn English now ! I have to admit age is a becoming more and more a sensitive issue as I get older and older , and the older I get , the more responsibility comes along and the more mature you should behave . Well , I think I wish I could welcome the moment at home as usual , but I failed for the last couple of days which flashed through so quickly in a northern city I have never been to before . Travelling makes the time elapse so quickly that I have hardly any time to digest the change of age satisfactorily , Even though I have been able to come back home this morning , I still ca n't take my time and am actually struggling to keep awake to digest it as much as I can , because I hardly slept yesterday . Moreover , I still did n't like it when I bought a can of spaghetti ( canned spaghetti ) and had it because it was like jelly , and was essentially just a can of meat sauce . Why is n't al dente that common in this European country whose people are the most omnivorous ? I want to write my profile first . And I like Lolita fashion ! This movie is talking about two different American girls who spent their summer in Barcelona , where they have a romantic , unforgettable adventure . Meanwhile , they are still learning how to face some issues in their lives . This movie 's spirit seems give us the idea that everything is possible , especially relating to love . When it comes to the subject of love , some people tend to be realistic , some people are always expecting something very different . But I think most people in our country , we do n't have enough courage to change the situation , or sometimes we just carry more moral responsibility . The fireworks were the most beautiful which I had watched ever . `` earthquakes , thunder , fires , fathers `` I 'm planning to go to Sapporo ( the capital of Hokkaido , Japan ) this weekend and I feel uneasy about going through the pass because it 's very dangerous to drive on icy roads . Thank you for reading and for your corrections . Is this Peter Pan syndrome ? I think the definition of an adult is different throughout the world . But maybe there are many countries that define `` adult `` at an earlier age . Basically , it is said Japanese people are not good at speaking English . We begin to learn it in junior high scool . My name is oanhchau . I 'm from Vietnam . My language is vietnamese . Until the start of this year , he was my classmate , and he suggested this website to me . In my point of view , it 's a complicate website , but I think if I practice , I can use so goos this site , and finally reach my objective . I 'll appreciate thosewho correct my text , and thanksssss ( a lot of `` S `` it 's a internet form or expression that we use a lot on MSN , here in Brasil ) I especially like watching European soccer ! I was hoping this time she could win a medal . . That made me think that I should support her ever though I am not sure if she will continue with mogul . Anywany , I think it 's going to be one exciting Olympic . I did n't prepare for it entirely . I wish that place was a non - smoking place and That mechanism is , When I access `` URL `` , proxy response `` URL `` . normally , Ajax can not cross site . My friend is a teacher at a junior college . I thought about it a little bit , and I answered , because of the school opening ceremony I am going to go to the library and study hard Today is a holiday . Because they are so beautiful with beautiful music . I 'm a Japanese . It 's very cute and I feel relaxed . And today after working I had dinner with my acquaintance , a person who is working in the famous consulting company accenture . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittent laughing sounds made by a female ( 1 only ? ) , and monotonous , enthusiastic talks by a male ( 1 only ? ) , which might have gave you an impression ; the atmosphere was not too bad , or too good either . I bought a package of muesli , mixed it with yogurt and put it in my refrigerator at night before going to bed . Instead , I 've watched company harassment like `` you 're incompetent ! `` or `` we ca n't afford to pay you `` in order to force them into early retirement Luckily I have a job and a dependable income . My cute `` My Little Pony `` should not connected to such a nasty word . lololol No , they should not . . . . . . . . . My coworkers all work until late at night . One of my friends on skype told me that all you have to do is concentrate on the exam and relax . Well , studying business English is bloody boring . I do n't think that much business English is needed to communicate with foreign people . When I speak English , although it is n't in a perfect sentence , a native speaker can usually understand what I mean . I had dinner the day before but I ate two more hamburgers late at night after dinner I was hungry soon after eating . . . I found Mr . hou8592984 's blog . In order to continute to write English , I should decide a theme . Theme : Depression By writing his depression journal , I would like depressive patients and their families to know about this disease / illness and surely believe in his or her recovery . I did not drink alcohol in a couple of days . We also visited a soy sauce museum . Every term we study Chinese , Math , English , Physics , Chemistry , Biology , History , Politics , Geography , Music , Art , and Physical education , 13 in all . That is scary , do n't you think so ? ? Can anyone tell me the way to improve my conversational skills ? My student visa was sent to my house from the American embassy this morning . When I got there , I was so surprised that there was a lot of people waiting outside the embassy . More than 150 people were there . Upon entering the house , a man checked me , and my bag with an X - ray machine . I needed to have an interview , and then have my fingerprints taken . The style of all the furnishings in the building were American . Next , I should remember lots of Eglish sentences . I really want her to come back and release new songs someday . I think everyone hastheirown favorite song that makes them better . I like both Japanese songs called J - pop and foreign music . But Japanese music is more comfortable for me , maybe because it 's easy to understand the meaning of lyrics . Speaking of lyrics in English songs , it 's very hard to lisiten and understand compared to in aconversation . . . In the future hopefully my English will be better and I will be able to understand lyrics . I have been studying English for eighteen years , starting from grade school , continuing at the institute , to now - by myself . But I have not had much success with my studies . For example , I can understand only a very small part of radio and tv broadcasts , or dialogs in movie pictures . My Summer holiday finally started on the 5th . But I have got a lot of plans this Summer : D hope it 's going to be a great Summer Vacation ! The happiness on their faces means I did well . The weather is bad . It is wast to have a cold . Long , long ago , there were a couple of lovers . There were just only two students in the classroom . `` Otlob `` is a delivery - service site address in Egypt . I think health is the most important thing for life . To celebrate I called my friends and we decided to go to dancing at a club that has Caribbean styles of dancing ( salsa , merengue , bachata ) . As soon as we entered , my every thought was addressed to the music . So after I removed my coat quickly , my body began connecting with the track playing . Between all the Caribbean dances , the one which I prefer is salsa . That is because it expresses passion , a characteristic that is part of me . In fact I 'm a scorpion ^ ^ . A Little Hesitation and Nervousness My group 's leader asked me to prepare a race speech and a show of accomplishments because we have a vacant position for secretary of the youth league committee in the group . Every time I meet a foreigner interested in learning Spanish and also interested in learning the language in a spanish speaking country , their natural choice was Spain . Now what can I do for people in MIYAGI ? ? Its like a ricecake and is made of potato , tapioca flour , cheese , mayonnaise . On June 9 , I joined to Google Developer 's Day . It fascinated me and I began to develop software for the platform . Preparing for Zombi Walk part2 . I practiced making a Zombi face . Please look at these pictures . I think I 'm a good menacing Zombi . I was surprised , and rushed into the bath room to wash my hand . The prettiest sister who Today I had plenty of time in the afternoon so I took a walk around my hometown . I should avoid to take a bath . . . It will be great if I make friends with English and Japanese speakers . She is Korean , while I 'm Japanese . . . All animals I saw in Mongolia seemed comfortable . . I believe he was into it all along . But as I graduate from high school and go to a university , I 'll begin to be busy in different places , with different people and in different ways . Elaborate pratical plans can give you a hand when you face difficulties or feel depressed and help you get rid of unexpected It is only once a month and so it is difficult to improve with each other . Jack Bauer always says `` What 's going on ! ! ! `` : ) . I would like to listen to more English through e - dramas and learn more about daily conversation and debate . I know that I will lose my way if this situation continues . Nevertheless , if we dare take a closer look at creativity , ( and what is learning if not a fascinating mixture of experimenting , forming , shaping , producing and the like ? ) , then we have to admit that , in the long run , success is not a bed of roses , albeit highly rewarded in the end . Short stay in Senegal If you have time , please give me a little advice . It makeS me sentimEntal and moody . Tonight , I went to a curry restaurant with my friend ( s ) . Do you have a favourite Japanese food ? I recommend the Japanese food ' Tempura ' : ) At the moment , my favorite song of her 's is `` If I were a boy `` It 's raining It has rained for three days , and the temperature drops to 18 degrees centigrade . It 's cool now . I got to know this web site several days ago , and I have got through some entries written by others . I will spend some time to correct Chinese learner 's entries . She was mean , she lied to her friends , and she said her mother was dead cause she was embarrassed of her humble roots . My family came to my house and we cooked carne asada . We were all watching Teresa 's last chapter together , and were hoping her to end up homeless and lonely ( like in the original version ) , but to our surprise she did n't . What was the message , be a tramp and you 'll succeed ? Polaroid faced financial crisis and stopped selling instant film and instant cameras . I regretted that Poraloid stopped selling their photography products and think if I were a rich man , I would buy the Polaroid company and continue to sell their products . I went to the Shinagawa Station from Shibuya . I was impressed by the superior the focus and shutter speed of the camera . I have to pay close attention to avoid the new camera being broken by my son . It is a rainy day today . They are taught by one of five ALTs ( Assistant Language Teachers ) who work in public schooling . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film that deals with the history of the electric car , mainly focused on The General Motors EVI . First is the tea ceremony room ; second is the imperial room ; third is the samurai room . There is a pond in front of the pavilion . There are many kind of foods speculiar to each country in the world . They always recommend me doing Yoga , but I 'm afraid I 'm not interested in exercise . I have to speak English at my office . It was a little bit boring . That is why , it would be helpful , if you could give us some advice for the evaluation of the research and provide the details about the rating scales that were used in the book . They do not want their siblings to make sacrifices as well . 7 students paticipated in it and they were great ^ ^ Some students did n't memorize their script enough not to show it but still I thought they put in a lot of effort . So in the train , I do things like read a book , listen to music and so on . I wanted to listen some music in the bath room . Besides , offering various help is a government 's obligation , whether it ` s necessary or not . After work , I intended to surf again , but it was windy . I 've started studying English in Canada this month ! My summer holidays were too short , as usual ; - ) The reason why my school starts on Thursday is , pupils with the grade 5 in their school reports can make a test about the whole last year to get in the next higher class . I am learning Electronics with Informatics and Computer techniques . The Austrian schools are very universally that we know from everything a little . After passing all tests , I can decide to start working or go to a university . Additionally , after 2 years work experience , I will get automatically the title `` Engineer `` . So I was surprised at how much it 's changed ! ! Chicken Curry , Saffron rice with Japanese pickled plum , mixed dried fruits Nan , peppermint chai with cinnamon and shochu , Japanese sweet potato wine with kabosu , an Oita prefecture produced fruit that is just like a lemon . Mainly , Japanese teacher taught English grammer , accents and various words . I always wanted to have a pet at home . My mother was very sceptic of this idea , but my father fullfilled my dream by buying me a beautiful dog . I was very happy , and I spent almost all my time with my Friend . : ) But one day my dog disappeared , and now I ca n't find him anywhere . I will congratulate you starting next year . I will take the TOEFL next weekend ! Oh my god ! Although I am not good at English actually , but I just want to try and to know what level I am . I feel nervous because this is the first time I will take it . `` I know we have different values and thoughts , In the evening I found out that he had disappeared . And he said to me , `` I was going to break up with you , actually . `` Just joking , but when I heard this , I realized how mean I was to him . . Even though , this was bad somehow I 'm still relieved Self - censoring an event makes economy decline . This sentence is printed on her son 's T - shirt . One day when her son 's English teacher saw that T - shirt , he took pictures of it and said it was so funny ! I tried to translate it but it 's a little bit complicated . In the morning we started our walk to Fort Cunning information center to get a map . Unfortunately , it was being renovated ! We quickly looked on the map for other restaurants and found one . It was a nice looking restaurant on a hill surrounded by a beautiful forest . If the restaurant had not been closed , we could have had lunch on the terrace ! The restaurant was closed every Sunday ! On the way , I happened to see a traditional Malay wedding outside . When my wife was pregnant , `` just like all the other husband and father `` , I thought everything was going to be beautiful just like on TV . Reality is a whole lot different from imagination . We have to learn a child 's thoughtful consideration for others and frankness about it , because we know consideration and frankness always work . When I found this , my bag had been scratched by the thief . This is the third bag which has been cut by a thief . My favorite manga is Dragon Ball , I guess even if I take a vacation , I 'll have to spend much time on homework . life has no end of troubles . I experienced the gigantic earthquake in north - east Japan . I walked back to my house after about 50 minutes . On the way home I saw the people filled in the streets walking . It is not a business trip ! I 'm planning to go to Izumo - Taisya on Saturday . Wandering on the campus , green trees , colorful flowers and clear water catch your eyes , fragrant smell of flowers occupies your nose , and voices of reading aloud and singing of birds captures your ears . It was irritating . > < , Another boring week is awaiting for me . Then I searched online . If you study Japanese , I recommend it ! ! I 'm looking forward to seeing my family . The restaurant was so nice , and the food was delicious . I visitedmy cousin 's house last weekend . Some foreigners tend to think that Japanese men don ` t do housekeeping at alland women work for their husbands devotedly . That ' swhy , I want to insist toforeign women . `` Don ` t feel that it is worst to get marriedwith Japanese guy ! I do n't think they should mention details about the flight ! Typhoons going through Japan are not as strong as cyclones . Tonight , I will stay in my house and wo n't go out . That 's why every Korean thinks they have to go to college . The last 3 days we had very good weather , but today it 's cloudy again . . . adios . . . A nice script : First , you must grab people 's focus . What you want to say and the content determine whether people want to keep watching it . Of course , the character designs and their actions are important . . hahaa like this octopus . . it 's very cute even though it does n't have any lines . I would like to speak and write like a native We studied in the same high school in Tibtet , we often communicated with each other about things like a football match , beautiful girls , foods or the CCP . Tibetan children are loyal , friendly and smart . Sometimes I felt they were sensitive about some political topics , but for of many reason , they felt happy too . Our high school teachers cared for them , and the ethnic Han classmates were glad to help them to study many subjects too ` ` ` The dinner was delicious , and we drank a bit of beer and played jokes on each other . It was a wonderful time . I forgot many annoying things temporarily . What a happy night in Beijing ! ~ ~ life is cool ~ ~ My english teacher recommended that I get an English Dictionary . The meanings of English words are explained in English . My teacher said `` when you study english words , think of english words in your head . I received a lot of messages from my co - workers and friends in the real world and on this web site . My host mother plays the piano very well . but I ca n't play any up tempo music like she does . Good night . 7 . 8 : 2 . 2 This is my work and private balance . Public service personnel is a part of the conscription system . I worked hard at the place and explained things to many customers . In April , I also led the division to manage a network division . Although I feel a bit bad , and disappointed of myself because I 've decided to be more responsible with my homework and I did n't do it . In both presentations , I did n't make an effort to get a good note and I know that I could have done it better but I did n't , but also , I did n't receive the support of my team . On the other hand , I felt very amazed about some classmates . They did a wonderful job and I felt envious of them because I 'd love to do it in the same way or better . I have read some articles saying that some English classes do n't teach good english , or that some students do n't make any sense of it , or that it does n't fit their english level . I might be a lucky girl because I can understand English even though I do n't take any lessons . I am glad I speak English and can converse with native people . He wanted to say he was in the middle of the campaign and said loudly , `` I have an erection now ! `` I think everybody has similar minds and similar potential . Maybe there is some research on why people fail when they try to learn language ? We have to study English now , or we wo n't pass an important test in three years . There is going to be a Japanese school visiting our school . We will have eight Japanese students in each class . And we will teach Taiwanese history about Japanese aggression against Taiwan . Maybe we will say something about their contribution after the Japanese were aggressive towards us . We will do a lot of activities when the Japanese students come . I have been quite busy the last couple of days because of my exams at the university . It 's really cool to meet a lot of foreign friends here . So I 'd like to continue my diary . My dog `` Fal `` , who is Italian gray hound , does n't like Some people say it not only helps to end their pain but also it helps to solve their family 's economic problems . I think they are still relevant today because history has a way of repeating itself . That way , they can feel familiar with ancient history . the reason that she was deprived of her custody of their first child , was she overdosed on cocaine ( I forgot why she had it at the time ) About 5 seconds later she called me again to say good morning . I did not answer because we know if she calls me it means she would like to say good morning or good night . She got disconnected from Skype yesterday while me and Tyler were talking because it is a bad connection from her country . Before she left she did not say something to me as she usually does because she was suddenly gone . He ca n't sing but he can hum and dance and and play the guitar . If I 'm a Pitcher . . . For a long time , I went to Song gang Dong field in order to play a baseball game in early morning . Then , I tried to go there , and also It was difficult to drive my car because I met a friend who lives in Seoul yesterday . I 'm a pitcher and the 5th hitter . Our game started at 12 : 00 and I was so nervous . My beseball career is shorter than everyone 's but I have good physical abilities like fast feet , strong shoulders , and endurance for any pain . Chinese Calligraphy and Traditional Chinese Painting ! Chinese calligraphy and traditional Chinese painting both Because it is near the station . This year I 've started to study ballet . It 's known that you only can learn to dance ballet when you are a child , or at least that was I always thought , but I was lucky to have the chance . We are doing `` Coppelia `` , even though we are not professional dancers . We are adding a little bit of fun to the original play and it is going it great . In my culture , people are not always aggressive and we are always thinking about others , as much as , or indeed more than ourselves . [ 1 ] As far as I have heard and experienced , the culture here is that people care about themselves more than others . They are more self - centered , which I do n't mean in a good nor bad way . For example , in my country , the distance between people is less , so everything can be flexible and it depends on the relationship between the people involved . Therefore , I always think before I act because I am not sure what the correct way to act is . The main character traveled to Italy , India and Bali . She met many people and found herself . She performed meditation in India . Friends , no matter what countries you come from and what languages you want to learn , I think we can become friends , not only for the reason of `` learning languages `` . Or does it mean `` go out with their boyfriends or girlfriends `` ? The other artists are probably not known by Japanese people . There was a lot of rap music but there was n't one such as Eminem . Introduce myself Hello ! ! But now , I study economics more , since my job is deeply related with economics . My favorite football team That is too many countries but , I 'd like to visit those countriesT . Next week I will go to a language school to improve my speaking abilities . English speakers use high frequency . ; ) I think that I have to search for a friend to converse with on skype or to help me with writing letters . Is anyone willing ? ( 9 . In Japan , it is autumn . These days I am reading the novel `` Master of the game `` written by Sidney Sheldon . My friend recommended me that book and it 's so interesting that I ca n't stop reading it . Because his wife Marianne was dead . Today , my roommate woke me up early in the morning because she thought I was oversleeping . Blackouts , floods , strong sunshine and very very hot days . I went to Japan to study , but I had never studied Japanese before . Because I ca n't speak Japanese , it 's hard to make friends in Japan which makes me feel so lonely , and want to give up studying in Japan . After a long time , I did carpentry work today . It ` s so frustrating , but it ` s reality . dreadfully spicy . . . Although my mother language is Chinese , I quarreled with my friend yesterday . The teacher made us to make sentences using simple past and past perfect continue . S / he then looked at our sentences and pointed out some mistakes . I have been enjoying learning English since last year but I still sometimes feel despondent a little bit when I can not remember how to spell a word by myself . It always goes this way ; I finally remember a new word and then want to type it next time , but then I forget again . Now I wonder if this reason is too weak to learn efficiently , because there are few chances to use English at my job . But I ca n't understand English grammar . Yesterday was different . Unfortunately , there was very strong rain and thunder at that time so our flight was delayed thirty minutes . We were satisfied with our room and went to bed early so we could wake up early in the morning . I could not explain ' a certain probability ' in English when I talk to my friends . The probability represents how many people are watching particular program in each area . Then , if we know a certain program has high probability compare with other programs , we might want to watch the program even though we are n't interested in the program . Today at 4 a . m . , I and my father woke up because we heard the gate creaking . Our first class usually starts at eight but on Tuesday , it starts at 10 . How to get to my car parking space from my apartment . And I found a very exciting stastic today . There is an oil heater in the { staff } teacher 's room . So one of the teachers brought sweet potatoes and burnt it . is doramas , not just Japanese but also Korean , Chinese and Taiwanese . Now I have fallen in love with the Korean dorama `` You 're Beautiful `` starring Lee HongKi from FT Island and Jang Keun Suk ( Baby and Me , Beethoven Virus ) . I got lost on the way back to my house . So , I called a taxi . Especially to Germany ! I 'm taking the German class . The reason I have a double major was because I could see the world was heading towards a global economy and society . It 's a little small , but it 's enough for me . In fact , I would like to look for a friend who likes using Skype and MSN and usually chats on Skype . I hope to chat with him / her on Skype to improve my oral English , and I will teach him / her Putonghua . I can speak standard Putonghua . If I can find a friend like this , we can make a concrete plan to help each other . If he / she wants , except teaching Chinese , I also can tell her / him what he / she wants to know about China . So , anybody who wants to learn Putonghua and will help me , contact me . Thanks . I am online all the time . How they behave is their choice , but there are n't only gentlemen in the world . `` Judas `` by Lady Gaga and `` Toxic `` by Britney Spears I like Lady Gaga and Britney Spears . One of the songs is Judas and the other is Toxic . When I was a university student , I was a member of the ski team . Hi ~ everyone Golden week is a group of holidays in Japan . I think my diary needs a lot of correction . Yeah , this is my favorite sport . If we have class , we must go , because the teacher will check . At work , my cell phone did n't work as the telecommunications cables were destroyed by the quake . After I reached home , I knew the situation was much more serious in north east of Japan . laborers will be older . Roast beef , mashed potatoes , pine nuts roll ( this is that stuffings which consists of pine nuts , flour , meat and so on is rolled into pie sheet or something ) and dessert with eggnog ( this is a kind of drink . There were a lot of Lotus flowers . I had fun and was really surprised because of my friend who called me . In that place there 's no telephone signal and no money on my phone so I did not reply recently , but then when my parents took me the city I had refilled my money and sent the message back to her . who is my close friend I am thinking of her too while I was not in Bangkok Hey friends do you think my new avatar looks lazy ? so just some picture and in Bangkok is okay now do n't get worried I think every thing is going to be better . . A Handy Clear Folder Within Textbook ( Brushed up ) I copied my text book into half size , and sort them out according to each period . Why do n't you make a ubiquitous studying environment ? But we missed the airplane ! We missed our airline . So it 's very expensive . We took an early bath and ate toshikoshi - soba , the buckwheat noodles eaten on New Year 's Eve . My neighborsare having a party and I have been hearing Latin music since this afternoon . This is my homework for my English writing class . Also , my old brother attends Kongju University and his major is tourism . The university said I passed the entrance examination . Athlete 's foot I 've got athlete 's foot . It started a long time ago . It was around my highschool days that I first got athlete 's foot , so it has been almost a decade . So I went to a dermatologist downtown . The doctor looks careful and probably credible but since I am for now translating one doctor 's book which criticizes doctors who are too readily `` putting their patients on chemicals `` I am a bit nervous . I am a genuine fool . I worked outside only wearing a down jacket , I shivered from the cold wind . It is not the movie itself that made me cry , but the fact that we missed the first ten minutes , because Mam was mistaken about the time . `` I 'm writing a diary after a long time . because I have never been there . I went to a university that is my first choice today . It was full of fun , and I found a way of learning English . I do n't have enough time . . . I hope that everyone had been having a good time in the latest holiday . been happy because I have a new niece . She was born on January 1st , and her name is Maria Alejandra . She is so cute . There are many things that I have to do tonight . I like listening to music , like every type , especially jazz , rock , and some nice soft music , some times I listen to death metal too . and also do some reading , which are written by ppl who r not famous but special . . . . My sister and I were very joyful . On the last day , my aunt gave me some Australian chocolate , a kangaroo doll , and a suit . I had lunch at this shop . We drank alcohol and ate Korean food at the first restaurant . I wonder why Japanese people like to eat ramen noodles after they drink a lot of alcohol . I think it 's a very interesting place . I always want to make friends . I love foreigners so much . that ` s why I ` m learning english . I have tried to study Mandarin when I was in junior high school . Chinese - characters are used in Mandarin and Japanese , so I thought Mandarin would be easier to study than other languages . Some of meaning of chinese - characters in Mandarin and Japanese are same but some of them are not . Although , Mandarin has four accents in one sound ( I ca n't explain about it clearly in English , try to understand ! ) . I often postpone various things that need to be done . I 'm housewife , so it 's convenient for me to do such a short time job . What 's is your weak point in your job I was so upset when I was asked that , because I had not prepared for the job interview . I will keep every Thursday for your students . Today he went to nursery school . Poppin is my best dancing style in which the movements are so freaky . I recommend you watch this dance if you are interested in it or you have never watched it . If anybody wants to know more about dance , comment me please ! In addition , corporations can , every so often , organize some recreational activities , which may let workers feel a sense of belonging . I watched Lovely Bone . Generally it is called a pickled plume in English . I am going to graduate from Seoul National University of Technology this year . Afterwards , I would like to go to a graduate school . My daughter and I want to go to Egypt . I will overcome many sufferings and difficulties . I hope for an early winter vacation . This comic is the story of MUSASI MIYAMOTO . The idea was pleasing to the hotel 's callers . It takes about 40 minutes altogether . It is a door that when you open it , you can get into wherever you want without moving . My biography He proposed all of guests ( 4 people ) to support for this couple because it 's a marriage party . In a foreign country , is it not the custom ? I am going to visit Australia for my school excursion next February . So , I want to improve my English skill and know ( more about ) the Australian culture . and in my job there are opportunities to meet foreign visitors . I have been at North Carolina for 2 month . But unfortunately , my English skills still remain poor . This temporary job ends at the end of this month . It is uncomfortable to stay in an unfamiliar place . So , I had my boss buy some vegetables for me . After I received them last night , I kept them in the refrigerator . However , it may cause air or water pollution and noise which comes from factory disposal . It 's because I 'm connected to them . But , there are circumstances at the organization . My favorite movie is `` A PERFECT WORLD `` . Finally , Buch died because of a policeman acted by Clint Eastwood . My Husband and I know that his work is very noisy , for example , cutting wood boards , color on spray and using a chain saw , etc . I want to apologize about this problem to you and to the other neighbors . : ) I would like try using this website , but I do n't know how it works I am not a Sumo fan and do n't have a favorite Sumo wrestler . Wow , it 's October NOW ! Shockingly , the room that I used to use became my father 's hobby room , so I slept in the guest room but that was not so uncomfortable . So cartoon artists work hard , out of every cartoon I love Tom and jerry I do n't have time to take a rest because I have a lot of reports to write by Saturday . we often use Japanese grammar , but explaining is difficult . It 's an important professional cycling race . I had lots of opportunities to have some fun and make friends . However , I did not realize at that time how precious an opportunity I had . It 's quite ridiculous to prohibit her to call , mail and to have a mobile phone even though I have no idea about the Indian way of thinking or their common sense ( or this is not about Indian but just my landlord as an individual ) . today I had a lot of work but I was very lazyso I am not going to work . I have to go to chess training soon so I need to sit in the sauna and take a cold shower . However , since it is winter , I must take a cold shower after the sauna and then I will go the chess training ( or Chess Class ) because I will play an important match next week . please pray for me to win ok Thanks for your help to improve this passage . Japanese is easier than English . As soon as we finished eating , my girlfriend and I left the living room and stretched together . What should I do if a rat - mistakenly eating the poison and suffering - jumps from the kitchen cabinet ? The ceremony about mourning the people who died from this bomb has been held every year ; this year it is even more historical because the representatives from western countories participated in the ceremony , especialy the United States . This change was due to the speech that was given by President Obama in Berlin . What I was most impressed by , was that the Secretary General Mr . Ban Ki - moon read a speach , speaking strongly , about how it is necessary to have a strong will to achieve world peace without Nuclear weapons . He visited and made some speeches in Japan over those feelings . I 'm not sure how to tip at a restaurant because I 've just moved to America and my mother country Japan does n't have such a custom . If I do 3 , should I write an amount of the tip down in the bill ? Soon I will take an English exam . I graduated from my junior college on 15th March . I sometimes dislike her because she scolds me for not following what she says . Yesterday was Sunday . Next year ` s symbol animal is the rabbit . I have decided to post voice journals here , because there are only so many opportunities to speak English in my everyday life . I went to the shopping mall because my daughter wanted to go . Unexpectedly , I fell into the deep lane that was used only by adults . In Japan , after having graduated from college , most of Japanese students work immediatelyand continues to stay within the company for at least 3 to 5 years . While I took a look around in the Vietanmese mom - and - pop store , he petted my shoulder and said , `` Here you go , a Vietnamese sandwich . `` At recess today , he still pulled me to the corner again and asked me if I wanted the plums and vegetables . He knows that I usually cooked on my own to save money . They should use English in every situation . Halloween party Actually , it depends on the person . Today I changed my hair color because my brown hair was so bad and my hair was so damaged : ( I decided to change my hair color ! ! Question 2 , `` Where was the port that the Black Ships ( called the ' Kurofune ' in Japanese . However sadly , still I still have n't worked through what I am going to do for my happiness . That way he 's always have a meal beyond midnight and talking , trying to get me to eat with him . I wish that Korean schools were more free like foreign schools . I studyed English from 7am to 9am this morning . Yesterday , I started a new activity , Capoeira ! When I tried to buy the ticket for the film , I was recommended by the clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemort was impressive ! I am a sales person , so it is okay since I have a contract nowadays . ( I am the second person who has the highest sales . ) I mainly do the kind of simple , repetitive work that anybody could do We 're going to move to another building next week so today all of us coworkers were packing a lot of stuff . sorry for the ( irrelevant ) details . This is my first time coming here . I learned of this website from my teacher and found it to be a really good place to study English . At the same time , I want to make some friends here ! Whatever my roommates and I will solve that . This time I know the person who can be friend or just have distance . I lived with my parents and my elder sister who is married and raising her son and daughter with her husband . And I 'm learning Japanese tea ceremony once a week . I 'm interested in Japanese traditional culture , such as tea ceremony , kimono , and Japanese flower arrangement . Some people wear kimono often or everyday ( for example , those who are obsessed with Japanese culture , who learn / teach tea ceremony , Japanese manners and Japanese flower arrangements . . . We do n't do tea ceremony in daily life except when our families or ourselves are familiar with it . When I learn tea ceremony , I became eager to learn good handwriting , languages , behaviour , and flower arrangements . When I learn martial arts , I become eager to learn behaviour . As a beginner , you need to have every skill at a beginner 's level . If you go intermediate in one genre , you need to have skills which are better than a beginner 's also in other genres . I will try writing about these things I learned . Dec 10th : Shrek 3 I watched ' Shrek 3 ' on TV tonight . In fact it is very useful and has a cool design . The Swedish man said ' ' Kampai ' ' every fifteen minutes . After just 5 minutes , the sake bottle was empty . Although the waves were small , there were a lot of surfers in the sea . The shape of the Tengu was like a human being but he had wings and could fly so we adopted it as our mascot and our flight squadron 's guardian angel . Actually , each squadron 's flight time for the year is assigned by our headquarters . `` Yes , just do it ! `` . I praised myself so much that I only ate a cup of sesame paste , a banana and an apple as my supper . to look on the bright side ! There were a lot of people wearing costumes ; they were crazy and funky . Now , I am in the middle of preparing for exams , He is n't famous among Japanese , because he did n't have a professional career in Japan . It was an amazing trip due to beautiful scenery in the country . I saw native Australian animals such as kangaroos , koalas and many varieties of birds . The scenary was overwhelming and the company was smart and decent . Teacher said that Expressions of frequency , speed , and duration do not use ' in ' . I work very hard and I get so tired from working from morning till evening . I talked with my friends who live in Japan by skype after so long . Since they have not changed a bit , I was relieved . I listened to their story , they are still having a hard time due to earthquake and electric power plant in Fukushima . I caught a cold . . . : ( And I caught a cold today . So , I my cold goes away soon so I can avoid going to the hospital ! Hello every one ! Probably , I am not interested in that topic , my vocabulary is not enough or my English is still very poor . We discussed about smoking . Indian parents teach their children smoking , but their least age is 2 years old and yet , they can already smoke several cigarettes a day . He was sophisticated like an adult and can smoke 2 cigarettes at the same time . Parents should be responsible for their children . They must protect and guide them to a right direction . I hope my English will get better if I could continue writing a diary in English . I mean , we were too busy both mentally and physically to take time for others . To solve these problems , I should relax a bit . Yesterday I went to a Korean restaurant with my close female friends . We were chilling out with delicious dishes and drinks . I was invited to go skating by my friends today . Actually my Silent Night , was really nothing special . From the first day I cut my long hair until now , I ca n't remember how many times I have cut my hair . I am a college student in China . After the graduation ceremony for junior high school , I called at her house by using the yearbook which told me her address . I want to introduce the Hanbok to foreigners because it is very colorful , and I thought the hanbok was very old fashioned and not chic , hanbok is very special . Hello , everyone . I want to see a lot of foreign poems . Of course , I want to see Japanese poems too ! Please check it ! I learned a lot of new words dealing with financial vocabulary . I got a serious headache this morning while sitting in my cubical , so I took a half day off and left work at 1 pm . Well , if anyone who happens to see this entry , and is interested in getting a Chinese New Year card , please let me know : D I guarantee the card is going to be cute , and Chinese : ) A cassette tape changed into a robot , or a gun changed into a robot . . . If you get it up onto an Internet auction , collectors will buy it for half million yen . `` Then I wanted to exhibit some things to Yahoo auction , abbreviated to Yahuoku , which is similar to eBay . I was very busy April because of recruiting . ( job hunting ? ) Feeling Bodyaches Because I have to contact another foreign buyer by phone today . Today I 'm going to write about my career . Even if I try to find language exchange , they think I 'm a boring and bothersome girl . I could n't stop staring at the beautiful phone , I believe that this whole swine flu panic is steered by the media to improve the economic situation . In my opinion , everything that has happened is very artificial . Some Japanese office workers dream about living in the town because it does n't have a train station , hence it 's difficult to commute to business zones / districts such as those in Tokyo . But I chose to live in Hayama despite the long commute time , I work in Shimbashi central of Tokyo . I went to some Yokohama ramen restaurants this time . I will write down the list of good or famous ramen restaurants here . She taught me the importance not to give up and we can get a happiness to keep trying . I 'm kind of a perfectionist and once I start a role playing game , I do n't stop it till I perfectly complete it . It 's like an obligation to collect all the items that exist in the game and acquire all the abilities . Usually , people in western countries will celebrate Christmas Day with enthusiasm , and as theirculture globalised , we in the east havealso started to note Christmas Day . And it seems an honor to me that I received an apple from my little sister . Is it true that Father Christmas will send gifts to us this evening ? I will have a chance to travel to Thailand ~ my house phone has broken down Continuing to do something is very wonderful . Before coming to Keelung , I heard the rumor about A City of Sadness . I do n't need money or anything , but just a response as to what you think of my idea . Would you be satisfied with it ? And this can also eliminate what causes conflicts , such as misunderstanding about their customs , and he determined that he will do `` The last concert `` for his young baby . The last concert was so impressived to me . I toasted some bread with the toaster and I ate the bread without spreading anything on it . Nara is covered by mountains and forests . About 77 % of it . Deer might attack you . Various kinds of vegetables are pickled in a sakekasu . It has a little strong sake flavor . See you tomorrow ! I do n't know exactly when I can use `` any `` in sentence . I know it 's difficult to explain . She does n't like to eat breakfast in the morning before she goes to school . and also lunch . I asked her premis ( ? ) me to eat breakfast before going to school . She said she premis ( ? ) eat breakfast in the morning . What I study at university is mainly subjects related to English , such as English linguistics , English education , American and British literature and so on . Hi I 'm a new member My name is Luca and I 'm a new member in the community . New year 's day is already over as you and I know , but I still feel like I have n't regained the energy I had last year . and his exbition is held this year in KYOTO . My mother tried to go there , but it is very popular and she had to wait in line for more than one or two hours . . . Last Saturday , I relaxed in my home with my family . In fact , I feel very sad , but I still need to work , eat , and so on . Now I 'm growing some scallions , turnips , and lettuce . I think this one tastes good but my European friends do n't seem to like it that much . Anyway , when we got there , we were the only customers in this restaurant . First , it makes me to sweat easily than what I expect before and this means that it is also helpful as an aerobic exercise . Besides , my major is not Chinese . I really enjoyed working over there . Upon seeing what I bought , my little son looked disappointed because I bought more clothes for his elder brother and did n't buy shorts for him which I told him that I would buy one for him . I am using simple English vocabulary to write this diary . I like English very much but my English writing is too bad . The main street was crowded with so many tourists , who came from home and abroad . These days , I 'm doing a part time job to save up for a trip to England . Before I took the class , I only read my vocabulary notebook for about three times a week , but I learned many strategies in how to expand my vocabulary in my university . Moreover , I put vocabulary tags on my funiture . Ironically , these kind of movies are n't always historically accurate . Snow causes many traffic delays here because it does n't often snow . Che Guevara I watched movie about the life of Che Guevara . I write poor English , so please teach me English . Girls are willing to forget the surname given by their parents and follow their husbands ' surnames . I guess you could call me ( a ) `` Germinese , `` but please do n't call me Chimany ; it reminds me of the word `` chimney . `` The typhoon is coming to Japan now . She immigrated from Korea to America 15 years ago . I 'm breaking my record of keeping good health for at least two years : ) My mother and I took a walk this evening . Lots of people who were playing outdoors said that this kind of scenery was really beautiful . I think I forgot all of the grammar and vocabulary . I take care of myself , eat right , and exercise . Osechi ! ! ( A Japanese traditional dish ) The purpose of my part time job for me was to eat the most delicious dish in the cafeteria . It was delicious and its cost was low : 380yen . But , my colleague told me that there is not a rainy season in NY and the weather this year is unlike the usual in NY . I felt the climate in Japan was getting warmer and warmer in several years . We can see extraordinary climate in every area across the globe . Hello , everyone ! My foreign language teacher told me about this site . I had hardly opened my laptop when I came back home and made my first diary entry . I hope I can make more new friends from around the world . This sentense explains the children ` s liking . I was given many feasts like a sand rice ball , a sand pancake , a sand juice , a sand meat , , etc . But you may not experience joy like that if a dying baby had not been rescued and grew larger . Yesterday 's movie is about when Shakespeare wrote `` Romeo and Juliet `` . I like this movie and I can study it . So Shakespeare wrote a passionate love . Today is very sunny day ! I went to interview at a Japanese restaurant . I have to be careful about figuring out my job and the way to achieve my dream , because it is not like I 'm very young , or like I have many options ( since I do n't have enough money ) . So I will try to do my best to find my way and achieve my dream , rather than being frustrated about my poor situation . When I was elementary school , ALT teacher from Australia showed us pictures of Australian nature , sea , koalas and so on in his class . And I have never gone abroad and see the scenery apart from Japan . So I saw such a scenery of picture for the first time and Of course , Kabuki , Waka , Samurai , Yamato , Wabi Sabi and so on . In ' The Last Samurai ' , which stars Tom Cruise , this idea is the subject . Aftrer the war , we succeeded economically , but we lost our culture . I believe this is the best chance for Japanese people to regain our identity and culture and to work together . It 's gorgeous . I went to Costco with my friends a few days before . My friend recommended Cheerios to me . I picked up my husband this morning . I thought it would be easy to get there , because today is Saturday . We take a walk a little , then I heard dog 's bark . , we can be good friends ! Please leave your message and some comments . I appreciate it ! ! ! There is a gold accessories store next to my store and opposite to Boost . souvenir . . I play guitar , watch anime ( yes , I ` m one of _ them _ > _ > ) , and learn English . There are so many theories in one academic field . For example , in software engineering , both Java and C + + are very useful programming languages . In China , C + + is used more frequently than Java ; consequently , teachers should pay more attention to C + + . Students who learn more useful technology will have a big advantage in finding a job . In some circumstances , theories in textbooks are no use in real life . Moreover , it is better studied on campus , in a lab , not in a company , As Bertuard Russell said , `` Experience without learning is better than learing without experience . `` Every professor in a field that offers the opportunity to work outside , should ; the others may stay on campus . For students ' futures , universities should find more opportunities to give their professors . Yes , I 'm thin - skined . When I watched a TV program , I knew the store . I 'm a light drinker and I do n't like alcohol . Actually South Korean people usually are n't interested about / in North Korea . actually I did n't know about my blood relatives before I saw it . So , he decided to go to China and go back to North Korea after finding some medicine . I cried a few times when ( while ) I was watching the movie . Thinking that if I was the man who had a sick wife but could n't find the medicine and the food was decreasing . . . The song make me remember my life , my faith is shaking , feels lost with no direction . I ca n't wait to watch that , either ! ! I 'm looking forward to that . I 'll always smile tomorrow : ) I wanna tell the character a crucial thing . When I approached the operating room , I heard After she had an operation , she quickly died . And still , I have this eerie idea I forgot about something . . . American Idol , a TV program , is an good example . For example , when estimating the number of balls in a jar or the murder rate in New York city , the errors between the crowds always be cancelled out by each other so that the average answer is often surprisingly accurate . I watched high school musicla at first , it 's very interested and powerful . Today , I nearly slept in the midst of doing work . I hope to have better house , earn more money , provide my child with a good education , buy what I want and go for a trip . . . It is November and winter will soon come ! So many shops sell snowboards and snowboarding wear . We went in the shops and looked at the many boards . My height is 165cm , so I should use a board about 145 - 155 cms . long . I found my favorite design . I looked at the underside of the board . I , of course , looked at the price tag . At last , I found a good board . Morton Island is the biggest island made of sands in the world so it has many deserts . maximum : You need to pay maximum attention when you use gasoline . minimum : I think his immediate action kept the damage minimum . ( just minimum seems wierd . . . I met my language exchange partner today . Keep studying , it is hard but really essential In addition , he recommended me to read many books , not only Japanese literature but also foreign ones . This would broaden my outlook on life . I heard about this web site from my co - worker today . I 'm very excited to learn this system , and I 'm looking forward to trying it out ! That 's my favorite team . I 'm always surprised by people here who keep their journals in a foreign language . I envy them . When we met , we didnt know where the `` budaezzigae `` restaurant was . So we walked to look for the restaurant for an hour . We found the restaurant in the end . I caught a cold Those are symptoms of a cold . I caught a cold today : ( Some of my friends have been to concerts and they all say they enjoyed them soooooooo much , and whenever I hearthem say anything like that , I envy them so much . Kagawa who plays for Borussia Dortmund in Germany got the goal . It was beautiful goal . The consective holidays , an event which lasted for about 10 days , was over . Consequently , we now have a hard time living economically So I will write messages this week . The government imposed a tax on carbonated drinks ( like Coke ) , and every food has a label indicating nutrition , especially trans - fat . As they heartily congratulated us hearing our news , I was very relieved . By writing down the daily events , I also aim to review each day and make the next day better . Now I can concentrate my attention on the final examinations and essays . Tomorrow is my birthday . I ca n't wait to know what suprise my classmates might give me . I believe that tomorrow will be an unforgettable day because of my lovely friends . When I began running , especially longer distances ( it took me awhile to build up to that , though ) , I would go to bed and welcome the sweet release of sleep . Yes , I am writing this diary with a brand new PC ! It takes 30 minutes from here to Tokyo . I registered for this site to study language . My friend recommended My teacher is an amusing guy . He asked Turk to teach us Turkish , and asked me to teach them Chinese . After the class , I bought a bottle of local wine ( a kind of sparkling white wine which has low alcoholic strength ) in order to celebrate X - mas . Hokkaido Pollock Today , I offered Hokkaido pollock to our Chinese client . because Japan has a large quantity of pollock , but the market is small . My Chinese client will sell the pollock to the Chinese market . Yesterday , we had a tournament but unfortunately we were n't able to win . As soon as I entered thepub , I drank soju ( korean alcohol ) . Well , that 's nice and full of sunshine and sweet smiles . All the beautiful things depressed me . After graduating from college , I want to go to France to study for my Master 's degree . I caught a female beetle on my way home from the office despite that there are not many trees around here . I went to my friend 's house . I like spicy food such as kimche that is Kolean food . It contains lots of red chilies But I still want to write it , because maybe I can have a good experience . I 'll see in the future . . . . I 'll eat at a restaurant in the department store . but first , I will go to Starbucks . I read books , write daily and study English in there . The dog 's story is broadcast by NHK radio and an English course on TV . Some runners give up without finishing the race due to extreme dehydration and low blood sugar . Yes , this race is difficult because runners run almost 20 km . Especially , this race is separated 10 sections between Otemachi , Tokyo and Hakone ( 5 sections for one way ) , and runners must run 850 meter above sea level in the 5th section . And the reason why I am so attracted to this race is that the runner 's perseverance encourage me to persevere no matter what happens . but when I read the diary about my ex - girlfriend , I decided to update my diary , I did n't answer him , because I knew that he just wanted to remind me that I should be serious about dancing , and not be worried about anyone else 's opinion . Also he is very smart and good at architecture and history . We can speak to them and teach them what is wrong and what is right and in the long term that will be more effective than hitting them . Trouble is kind of a trademark of children . I have to go to university now . Is American English pronunciation different from British English one ? Later I helped two friends to correct their Chinese writing . * Do experiment ( changing the medium ) There are chain restaurant whose types of foods are n't so different from those at Macdonalds . I yearn after them , because they have blond hair , and blue or brown eyes , and high noses , and they have very good style . Okay , I am going to listen to an English drama first , starting with `` Friends `` . I enjoyed the food , the nature and the festivity of the small town very much . but I prefer Chinese . We can not use the exact words ( we would like ) to express ourselves . hat 's more In addition to that , most of the grammar we learned in high school has been forgotten . I have a lot of friends from Lang - 8 . They gave me the power to study English . They would cheer me up and make me feel warm inside . I will now read a book and comeback to use my computer again . Although there are some opinions that cars have many profits , I think that they have had a greater negative impact on various things than a beneficial impact . There are two reasons : harming the environment and decreasing a chance of communication . The first reason is the environment being harmed by exhaust gases . The exhaust gases from cars affect the environment in various negative ways . The second reason is a decrease in opportunities for communication . But I think it is unprofitable for us to continue using them . It 's quite different from the standard Paintball in most part to its rules and military characteristics like tactics , strategies , missions and moves . I am quite disappointed . I bought a book called the 4 - hour week from Amazon and I am impressed with the speed of the buying process She 's also been vaccinated every year . Today , I will meet a college student who is looking for a job . She is eager to research many kinds of jobs . The above was made by his mother ( my wife , of course ) . : - ) Recently I ca n't take pictures . I have pain throughout my body because of it . and I am really looking forward to seeing you sometime in the coming next couple of months . Anyway , happy birthday sweet heart ! ( dear friend ) Actually , she would have left the day before , but because her plane had engine trouble , she had to stay there for one more night . This week I 've been relaxing , I went to Uni . , stayed home , ordinary days . . . There will be a party organized by `` Bape `` - the famous Japanese fashion brand - @ `` Club World `` in Koyoto . Something but not empty in my heart I was depressed today . I felt lonely . Use my time efficiently ! I thought the answer was ( a ) , but the answer is ( c ) . Because of this , I set aside time to exercise . Fortunately , I have a VIP card , so I enjoyed a discount of 10 % . I do n't have time now because this year I have exams . . . I used to learn English , Japanese , and French . Fortunately it is easier to learn Chinese characters for Japanese , because we use them in our language . We improted the Chinese characters to our language hundreds of years ago , and the meaning of most of the words are still the same . I 'm lonely . I wrote a letter today . Is that right ? Studying English She lives in US , and is studying to be a nurse . She was growing up with adopted parents . She says that being alone is comfortable . . . . . Her character is cheerful . I think she will have a happy life . Fortunately , I passed the 1st test at Korea University Medical Center . The 2nd test is agroup interview so it 's more important than 1st test . I wrote not long ago , because I got discouraged by learning English . Recently I had depression because I did n't see the meaning of life . I heard in news that many Russian people drowned because they were swimming in the river while drinking vodka to cool down . Is this global warming effect ? It tasted yummy because it was free . I forgot to bring a toothbrush . So after that , I mailed her `` I know your kind heart and ability to chat sincerely `` . There is Chinese cabbage , spinach and Japanese radish in the fridge . Of course , I like Euclid as the great mathematician . because commuting by train becomes very hot and makes me feel bad ! ! I 'm looking forward to my friend 's marriage ! ! I think the hotel gets ( / holds ) a lot marriages per day . I was so excited . My husband was a systems engineer , but he quit his job last year and has been preparing to become a physical training instructor ( physical trainer ) . Today I cooked Spaghetti Bolognese for lunch and baked a sea bream , tai [ ? ] with vegetables for dinner . My husband tore his Achilles ' tendon on the 9th of October , and he has n't been able to work for two weeks . One colleague 's husband who is an IT consultant , said to me . But I 'm embarrassed to say that THANK YOU for raising me until now . Today I made spaghetti . Whenever I make spaghetti , I feel proud of myself . I was shocked when I saw this changes in Alice . Today is a beautiful day . I woke up at 9 o ` clock , and had more delicious food for breakfast . In the afternoon , I surfed the internet . That was tough for a single girl in China . Although they 've already brokenup , their music is cheering people up . I 've been studying until now , for about 3 months . There was a lot of delicious food , some drinks like champagne , wine and beer & pleasant conversation & Dancing ! Wow I had n't known about this brilliant site . North and West Europe composed the largest portion of immigrants to Australia with 34 % . From these pie graphs , immigrants moving to Australia consisted of almost half of the new population in 2001 ( , ) although there was no significant growth in the total population . I met my friend in on - line messenger r 2 days ago . I think that I want to eat it sometimes . I sometimes make mistakes when I write English . It 's actually not a long time after that thing , but it 's seemed to be a very long time for myself . About love , Respect yourself , that 's the most important thing I learned , if you want to give , just do it , never expect anything back but respect yourself , rub her / him the right way is not the way you should do , be yourself . I 'm very happy that my first diary entry had been correctedby Lang - 8 friends so soon . does anyone know UNY ? I usually sell Can I say `` Every time I have to be the cashier . `` ? It means `` I have to work as a cashier too . `` I had to translate to Thai the word `` craigslist `` but I ca n't find its meaning . . How do I pronounce it ? We have to make lots of friends when we 've done those things because we could get more information on Vietnamese culture . But there is one thing we should be careful to do and that is to take care of each other . I LIKE hanging around people who like them ~ ! ! This picture is of my grandmother Kailan ka ba pupunta doon ? A Total of 200 people participated in the session . I that I had caught a cold this morning , so I was in a bad mood when I had our hand - painting class . I was so excited , the adrenaline rushing to my head . That night , I could n't sleep at all , because I was so excited . Not sleeping on the transf ( p ) ortation is a kind of my bizarre habit . no matter how I finish this research I ca n't explain . Can you explain to me ? Tomorrow is the 16th . If it passed a year , it is 380th . The waitresses had to be so strict to control the time that a person took eating a meal The subjects were various , such as about experiences from jobs to the funny things . My nephew is coming home . It was the book I had borrowed once but failed to finish reading because the due date was up . Today I just watched the latest episode of ' Gossip Girl . ' What pleases me is that I think the story is going back to normal . I mean , the last couple of episodes have been kind of ridiculous . And in fact , I would never have the lives like theirs . Nate , one of the characters in ' Gossip girl , ' said , `` Growing up , I never knew what I was supposed to be . . . `` This moive is really famous in Thai . The man who running on the elephant is really good at ( kick ? ) boxing and did not use a stunt man . . . When you come back to your country maybe you should work for a few years to prepare for studying at university . In my opinion , travel or work for a year will give the students a lot of experiences that will make them successful in the future . This week , we 'll return to lighter meals . The item which is used for erasing pencil writing is called ' eraser ' in America , and ' rubber ' in England , right ? This sound file was made by me and my American friend who is learning Japanese . We , for the first time , actually talked to each other . Even my brother , who never remembers the date of my birthday ( but you can see it 's not a problem ) ) , told me that everything that I paint sucks and presented me with a picture . ) I did mathematics and Japanese . It was fun that I did homework . I ate a yummy bar of chocolate write your five items in the comments , if it is n't difficult for you = ) I can learn not only English communication but also business skills like how to be a good facilitator and how to negotiate effectively . There were many games , such as , Hula - Hoop Throwing Game ( a competition on how long they throw ) , Catching Paper With Chopsticks , Scooping Water Walloon , Dropping 1 Yen Coin to the bins in an aquarium tank , Pitching Game , and so on . And there was a booth giving snow cup with syrups as a present to those who played three games . So , if the school is a member of this neighborhood community , Imagine you want to buy a melon for 500 yen ( fixed price ) . You have 100 yen coins , 50 yen coins and 10 yen coins . How to learn the fundamentals of other languages The first step in studying language I struggled to find the way to learn other languages efficiently . ( or effectively ) . I did n't have enough money to go to a language school , After 5 years of looking , I found one of the ways to understand the foundation of other languages . I think we have to fill our brain with the fundamental sentences of the new language . When we have to use the language , the sentences will appear automatically . To fill up your brain with the sentences , This text explains the way of fundamental training . Of course the method can be applied to other texts containing fundamental sentenses with CD I 'm looking forward to the day that I can explain the effectiveness of this method for gaining ability in foreign languages . However , it was not planned and there was evidence . Spending a foreign festival like Christmas in a `` foreign `` place seems very interesting . And that means the exams are right around the corner . Perhaps it is due to our education system - you come to school to study , the school gives you a mark on your paper . Impartiality is what everyone pursues , but no one really succeeds . I live in Incheon with my family and puppy . I go to Hanshin University . Sometimes I forgot to do , because of my busy work , or heavy drinking . . . Canada Dollar shaped chocolate ! He wears glasses , and always wears cotton pants . The next day , a reunion party will be held and I will meet my old classmates at my elementary school . I develop new products of air conditioners making use of the technologies I have learnt these days . Therefore , I go to Kyoto several times a year with my family . Article 131 . - The Federal Government shall formulate and keep the Risk Chart on water basins updated , in order to set in place the disaster prevention programs , which shall include soil and water conservation works as well as flood management . The method of the Muslim funeral is the burial . But in the case of Japanese Buddhism , it cremates a corpse and puts a bone in a pot by using chopsticks . The cremation is decided by a law in Japan , and the burial is permitted only in some areas . I absolutely love English and I need more practice talking with native English speakers , so I would love it if you add me to your Skype list . Today , my university finished first semester . First , I want to go to Wakayama , ( comma ) I 've decided . . . I am posting another text bloq . For `` Domesctic Sewage `` , Sao Paulo reported the highest figure of these countries with 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . Aside from them , Tokyo reported `` pesticides `` as the water pollutant with 31 % whereas the amount was much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage of `` Erosion `` with 23 % as well as `` Domestic Sewage `` and `` Phosphates in detergents `` , which were higher than that of other coutries . There are significant differences between the four pollutants in the three cities . I 'm bored Sometime I laughed , sometime I cried . Anyway , today is Rodrigo 's birthday . Happy Birthday , Rodrigo ! ! cheap , the engine sound is quiet , the interior is kind of clean , and the exterior has a few problems , even though it is old and has high mileage . There are 3 big problems , oil leaking , radiation , and Brake pads , Snowing around here was very rare . Now , it 's a beautiful day today I love this site , and I want to make friends through it . I remembered my past work until now and inputted it to the Excel . This activity was interesting because I was able to discover my work style and my strengths and weaknesses . Nice cut designer They are usually cooked in Sukiyaki , Tempura , and so on . I 'm not sure where we 're going , but we 'll be sure to go somewhere where we can have king crab . My boyfriend may not want to go , because he always feels tired . He 's yawing at the moment , but I will make him come along . There are old temples and historical places . We decided to call a salvage company to haul them away . I heard muscle is heavier than fat . Exchange language My interpersonal skill for English is better than my writing however I need more practice . I do n't mind if your interpersonal skill for Spanish is not very good , I think that if we work together , we can improve our qualities . Do you often use formal words and with a straight face on your usual conversations ? People said he has such nice manners . I saw pictures about that . Probably , I will become addicted to this SNS and try to upload my dailies ( daily thoughts ? ) . Does it furthermore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this website , and I don ` t know how to use it appropriately , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for several years , and my knowledge is still not enough ! ! ! ! And in my research activity about oncology , I thought I did n't have any choice but to enter a med school to study the medicine . Eventually I became a medical student . ( In Japan , in February there are entrance exams for most universities . ) Snow fell yesterday early in the morning but it melted . my favorite coffee is always `` Today 's Coffee `` . Of course , I have a cup of delicious coffee when I go to there , but my real reason for going is not only todrink coffee . To my surprise when I came to his house , it was very clean . Today is Thanksgiving day , and I am at my friend 's house . I 've taken a nap at least 7 hours in the last 4 days , and I eat my fill every day . And we will have to go to the another shop which is near my house . I went to catch squirrels last Sunday . The rain made the hillsides became a little wet , so we should watch our step and tried not to fall down . We all went to a summer festival held in Mukaigahara which was held at a nursery school near my house . I 've been listening to his songs recently . I like Masaharu Fukuyam too , they are similar . One of my favorite movies is `` Innocent Steps `` which was produced in korea . After I woke up , I went to a Thai restaurant where a my friend works . One of my friends began to study English and he introduced this website to me . I love languages , in particular , the sound of English . Umm , sorry , I 'm negative today , is n't it ? I felt that I need to improve English for listening and speaking . Luckily , I finished my exam already , and I can celebrate Christmas wholeheartedly I think you should decide to keep the maintenance time on a regular basis , because a lot of people have signed up to this site lately and you will have to keep the configuration simple and clear all the time . I am practicing listening to English . So I told him that he should work on it little by little every day from the beginning . Of course , he wo n't be able to prepare for the test on the first day after the holiday . . . I found this good website and I thought it can help me learn english better . Please , reply for me ! And now , I 'm going to play on my home court because I need to practice for the match tommorrow : ) ! Its design is very good . I always listen to their English conversations , but I still ca n't fully understand ( white and black people 's English are very difficult to understand for stupid Japanese ) lol . I would add a little soy sauce and natto , too . They had a grand - daughter , Mashenka . Her - friends wanted to go to the forest for mushrooms and berries . I bought coffee , patbingsu , and pizza . My older brother is Sin . My first day with a foreign friend on the internet Thanks to globalization , a Taiwanese person and a Japanese person can chat in English , we are able to communicate on the internet even though our mother tongues are different . Looking back on my past entries , I 'm pretty surprised how horrible my English was , and at the same time , happy to see improvements in myself . I recommend this movie . In this context , the word , `` clutch `` functions as an adjective in order to describe I believed what you said completely at that time . . . `` I thought to myself . My personality is easygoing and outgoing . If someone has any question , just ask me . I 'm too lazy to customize my page with HTML , and some pages have too many applications . I wish I had friends who could speak English ! I had some vegetable juice . Not only because Chinese New Year is coming , I 'm listening to good music . She makes beautiful , exciting music and performs perfectly . An expert said , `` When you say negative words to yourself , your brain has only negative images . My office needs to help many customers ? So , Saturday and Sunday are working days for me . Now I 'm writing a journal at Urawa Central City Library while sitting beside a large window . I ` ve been feeling bad for the past 30 minutes . Welcome back , robins ! We were looking forward to seeing the pair raising a brood . I wish my English writing skills would get better Sorry , I ca n't write English well tonight because I 'm drunk and I want to play paintball next holiday . . because my house is situated near the sea I 'm tired of translating from Chinese to English , so I 'm writing this diary without translating . I know my English is very poor , but I really like learning it . So I decided to resume my studies by writing in my diary here . This made me recognize that communication to others , especially people not only Japanese , is very fun . Several months ago , I went to Mount Tai with a friend of mine and her mother . but our family did n't have buchimgae . fm is a language study site . I took an examination in Physics today . But I still have tests in , mathematics , English , German , and electric circuit . I know it 's not that big of a deal , but I wanna stay in shape . Ukraine has a very old history . Many tourists from other countries come here ! ! We have many places where we can spend time together ! I hope you will help me with my English . ) ) It is said that he killed a British 22 - year old woman who was an English teacher living in Japan . I 'm a newcomer . I hope someone can see it and help me by modifying my article or introduce a good way of improving English . I must learn English , but everyone knows my level is too low . When I was a junior high school student , my English class teacher laughed at me , because my pronunciation was unique for him . hope I can bear to live in another province or city . My teacher asked us to write a personal statement , and she showed us some examples in which there were various tragedies such as parent divorce , serious illness , and car accidents . I ' m intrested in history , literature , sport , geography , religious etc . I haven ' t done too many interesting things recently , because I ' ve been so busy in connection with the end of the semester at school but winter holidays are close ; ) I 've been 2chan mad for a decade , and I deeply like Futaba Channel , which influenced 4chan 's culture and structure . Compared to 2chan , their hatred seems disorganized . On 2chan , they attack mainly weak people . Especially Koreans or Chinese in Japan , integrated people , women , and anyone with a percieved weakness . Hello , everyone , I have come back . and then read it again after one has finished finished writing it . No doubt , it is kind of traditional Confucianism . For my part , I firmly believe that one who has a kind - heart should be given a reward or aapplause . London has so many people and it 's too expencive . . . I can read Japanese but ca n't type in Japanese . . . I have sooo many stories to tell about Monaco . I have an enjoyable time each lesson , In addition I feel comfortable when I carry out the procedure for making tea . In Japan , there are not any traditions of having a long summer time vacation , as in France . I think I am oversleeping . I ca n't believe a song could make me feel so sad . It had really nice lyrics though . I was so happy as well that I still could a friend who still remembered me after one year . I felt a bit sorry , however , they smiled at me and said `` Eat more : ) although there was n't plenty of food I could make friends with many people through being a volunteer . So , I ` ll study hard and find something interesting about economics . Strangely , many people do n't understand that sometimes a man watches it just alone and some people feel shy ( about it ) . So I revise the lessions I have learnt during the holiday . I 'm afraid I ca n't be the best in our class . I Wish I can get a good result . I bought juice which was a fruit and vegetable mixture , I thought it could improve my immunity , but it was too cold , and I had to mix hot water in . The funny thing was that I could n't measure how much hot water I needed , so the mixture was either ( too ) hot or ( too ) cold , which made my throat ( even ) more uncomfortable T _ T . After three years I listened to his music again because one of his music videos , `` man in the mirror `` I was shoked by this video , I did n't know what to say , I was impacted . Comment : Me too I found that I had n't see all his music videos , I did n't really know him , afterward I read some information about him . If you would like to learn Cantonese or Chinese , I can help you . I wonder what clothes are suitable for guests . I heard Americans give the couple presents from a wish list . Is this true ? I highly recommend the film as well . I like photo booth machines , so I always take a photos inside them . I 'd like to know if there are photo booth machines in foreign countries . They seem to enjoy taking the photo . Until before , I heard my recorded voice but my voice is a little bit strange to me and I felt ashamed and funny . Please proofread it . Especially they often have an original or special lunch . UNIQLO and Their Business Strategy One of their feature items is the so - called ' heat tech inner . `` In my opinion , what he said is true . However , when you are at the top , you are also responsible for your co - workers and their family . You may need financial support from your parents . Some people succeed very easily because of their family . Now I just read the latest news that UNIQLO has announced that they are going to change their company 's common language to English from 2012 - 2013 in order to keep up with global growth . I find that Chinese exams are more difficult than English exams . which language should I choose ? German - I have learned / studied it for one year , but I can only read without understanding its meaning . They were very embarrassed about this . It was very funny . By the time I get married , I will have gone to Este six times . My First Sign - In If you understand my meaning and I know what you mean then that is enough . What do you think of this supplement ? and diabetes . This supplement is just like an all - around medicine . compare someone who shares the bad and good but , most of all my best friend is like me in every way . Recently , the junkyard where I work is very dull . The customer was so delighted / enraptured that he advised the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' to attract customers to the business . In a sense a customer named their specialty ' Cat rice cakes ' . I think non - licensed writers should be appreciated more . There was not a tsunami afterward today though , - The size of his house gave me a shock . - As far as I know , most Korean and Japanese people know what the `` general character of each blood type `` is and I think they take its significance seriously . I 'd like to communicate with the English - speaking users and start to study English right now . So do n't hesitate to contact with me . I 'm Going To Go To Costco Have you ever gone to Costco ? What do you recommend ? Please do n't change all of the sentence into new sentences . . . Though some people believe a considerable proportion of rural students would put great effort into learning , it is manifest that there really is a phenomenon that rural students are more prone to have difficulty entering university . When I was a kid , I stayed at my grandpa and grandma 's house every month . After bathing , he always took his tooth out of his mouth . I told my mother about this after I grew up , she laughed . The woman in the video , whose name is Aum , is really popular in Thailand . Men love her because she looks sexy . My sons received their presents from Santa . and I believe I can do it ! ! GUNDAM ( RX78 - 2 ) What singers do you like in Japan ? To tell the truth , I went to Vienna for a school trip last summer and saw some of Otto Wagner 's buildings . This post office , the Savings Bank , is one of the World Heritage sites in Vienna . I do n't wanna work anymore . . . I was born and raised in Japan . My dream is to have my own shop . I 'm studying English and Chinese . I did n't have any experience doing the tasks required of the position . She asked about my salary expectation and how I could think I worth that much money . She said my expectation could be reached after I work for 2 or 3 years and I have to work from the most basic position . The problem was that my expected salary was the common standard in graduates . Since I go to a remote place I have not been before this is a good exercise . It does not cost us a lot of money to go cycling . Study abroad is necessary to speak a foreign language skillfully ? ? The year before last and last year I passed the first test but failed the second test . I hope to pass the second test this year . Yesterday I made new friends at Lang - 8 and I got my first correction on my entry ~ I had to clean my room before Chinese new year . It was very exciting , important , happy , and peaceful for me . I 'm not good at English . English is very important communication tool for talking to each other . He is a famous Japanese musician and a guitarist . He appeared on various TV shows , movie and CM . Since at that time , I respect him . I study English . ( ^ . ^ ) I start studying EngIish today . I 'm not sure if it works but I really want native speakers to point out which words I do n't pronounce correctly . The recent trend at my company is : `` Our company will take the customer experience to the next level using digital technology . `` But now is the time to use IT for developing a closed loop relationship between our stores and the customer . anyway I went to the mountain which is famous for rock climbing a week ago . we are feeling happy at first , but the higher we reach I got difficulties in breathing > < . Finally , we arrived at the top ! ! ! I cooked curry with a pressure cooker at last night . We went to a bomb shelter and listened some stories from Okinawa people and visited the museum . I went to one of the most famous aquariums in the world , a beautiful sea park and the castle influenced by both China and Japan authorized as a world heritage building and so on . I enjoyed diving . According to official information , Tokyo will be having a big earthquake Recently I started to prepare evacuation equipment , food , towels , toiletries On the other side , you know , asians are little conservative sometimes , they control their emotions , but if something sad were to happen , they go out of control , and become temperamental . It 's ( both ) nomal and abnormal to you , If you can find any mistakes in my diary , please indicate . But , something bad happened after taking my baby to a park with my mother - in - law . I know she really likes talking , and she was really happy to show her grandkid to her neighbors . After studying , I had a meeting for the shodo club . trip ( Vietnam , Guam ) Do you know Lady GaGa ? for example , MAC , Lunasol , RMK , and so on . I usually push the reset button each time when I boot my PC . I want to see `` Avatar `` and `` Alice `` some day . We must think about having a good time for welcoming club members next year and so on . One was a cream cheese layer which was heavy , and the other was a strawberry layer which was sweet and sour . That 's why you have to organize your work so it will be comfortable for you . I decided to make a necklace using power stones . The dessert I had was so good ! ! We agreed it 's best for us to break up and concentrate on our dreams . After get back home , I am so sad because I notice she does n't call , send E - mail , talk by skype anymore . Tomorrow is a holiday ! ! I was punished by my ever so strong inclination to procrastinate and procrastinate . I went to a Japanese restaurant there with my host family . The menu of the restaurant includes Sushi ! ! came back after 3weeks I was looking for the other one attentively . I looked into my bag carefully , turned back to check on the ground , but I failed to find it . What was the happiest moment in your life ? Workaholic guy . The happiest moments in my life are when I achieve something at work . For example , I felt happy when I won a sales award at my workplace and I feel happy when customers give me a perfect score on a customer 's survey . I like my job as a sales person because I can contribute to customers ' business . Working very hard is a part of Japanese culture and we can feel our happiest when we devote ourselves toward a customer 's success . I could see water from the sky covered the trees around my house . The day before yesterday I went to watch a movie with my friend around my house . I was really scared and enjoyed it . Do you like scary movies ? ? ? Of course , Most are from China , In particular , writing and speaking skills . Today , I found this SNS and . wrote a letter read the paper and said `` your english not enough `` This is one of my favourite tracks / songs from this album . My College Life ~ ~ I major in Japanese , which is supposed to be a time - consuming subject . At the beginning of college life , I considered taking part in some clubs , and filled in some forms to hand in . They 're all older than me , so I often receive useful help from them , and I am grateful for it . After I got used to college life , the place which full of challenges , I began to think of how to balance the time between studying and life . lots time everyday . I attended a Japanese Speech Contest and won a prize . And from now on I will try my best to become a successful college student , no matter how many difficulties comes . Then I want to get my driver 's license . I think my memory is too bad , so I do n't like to remember words . The baby refused everything but the sugared yogurt and then the little scary fiend burstout crying , my friend said . I have the same experience actually , so I could understand totally how much she was embarrassed . I felt guilty so I hugged him for a while . The situation that the babies ' mother saw seemed peaceful and perfect . You have to know how much your little daughter was stubborn ! ! ! Tokyo Disneyland ! Yesterday , I went to Tokyo Disneyland with my friends . Although we could ride only three attractions because it was very crowded , YOSAKOI is a powerful dancing competition and it encourages people . However , it is necessary to revise the policy on electronic power , given the disaster of the nuclear accident caused by the Great Tohoku Earthquake . The main character Annie , who is twelve , likes running and drawing . Recently , I 'm into DIY . My sister ` s boyfriend has sent me an invitation for this online game . When I started playing it , I felt bored , because I have played Travian before which was an exciting game . There is wood and other four luxury materials from the other islands , so you can bring just one of them . There is researc , where you can invent new buildings and other extras , there are gods ( this is a ancient Greek game ) , you can attack other players , and build new colonies in other islands , so you need to buy ships and build battleship . If you feel like playing , I can send you an invitation to the hungarian servers ' Lambda ' and ' My ' : ) and I 'm new member on lang - 8 , I hope I can find some friend who can teach me some languages , and of course correct my English . Now when I try to say something in English , Japanese always comes to my mind first , although I still ca n't use ( speak ? ) Japanese fluently . My level is lower intermediate . Yesterday , I went to an Italian restaurant with my wife and my Korean friends who are a couple . None of us can speak English well , but the funny thing is , we could communicate very smoothly because the pronounciation of English that my Korean friends speak was easier to listen to than a native American one . Mistakes my Korean friends made were very similar to mine , such as tense and singlar / plural . He always said that I should practice Japanese more while I am in Japan , because it 's hard to find a Japanese to practice with you in Taiwan . I study English very hard , I got 90 points which is over average about 30 points in every exam , and I like dancing ( jazz ) , I can do it well . In a word , this gold was golden for the movie market . By the way , I will have fun with my family during golden week . As it happened , my wife - to - be did not have a TV either . Yesterday , it was my boyfriend 's 24th birthday . But in my opinion , all time is very important to me . I need to earn more money so that I will make my wife have a wonderful life . I can not believe I managed to live there before . Our teacher asked everyone to choose a foreign paper , and interpret it into Chinese . He listened quietly . Sometimes he says his opinion and I listen to it . This picture was taken in a zoo I heard that people in other countries are very interested in internships . This was my first lesson at the art therapy class . ) During our first lesson , The teacher told us , `` Please image your life five , ten , and twenty years later . Even when you are an old person , then draw the different periods . `` When I became conscious , it was nearly 6 : 00AM . The teacher told me that my daughter is not good at saying the multiplication for 3X8 and 2X6 . My son who is 9 years old , does n't like doing ( his ) homework . I have thought of new good tastes that do n't sell in Japan . I hit my head hard on the floor so I feel a bit woozy . And so , I have to study some foreign languages . If you have an interest in cooking and studying German , read it , please . My daughter is one year and three months old . Wearing shoes is strange for her , I guess . In the afternoon I did my laundry , baked muffin and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earlier today and I will wake up at 4 : 30 tomorrow as usual , in order to prepare for the beginning of next week . I think I can keep good rhythm for my lifestyle this way . I like drawing with a ballpoint pen When I was a child , I often used a ballpoint pen for drawing . The ballpoint pen is thus useful for me . If you finished a medical college you have to be able to diagnose this case . Suddenly I felt something strange , and she looked ill . The way she sings made me think so , and she seemed to be very confident to sing and enjoy singing and such . But I really enjoyed this race and I tried to move it to a safe place , but before I did , it got up and started to walk . They are little Einsteins , totally free and always eager to learn new things . Of course you have to be careful not to force them to do things which seem / are meaningful to grown - ups but do n't mean anything to kids ) , and you should n't expect any immediate results . What is an appropriate subject for small talk ? However , we should n't talk about money or private things such as politics and religion unless they mention it first . There are many advantages to small talk . Everything stands on its head . This year we are repairing and liming our home together with my son . As the population density increases , various problems arise : air pollution , water pollution , lack of water , waste disposal , and energy consumption . He enjoyed the long slide . But as I have been exposed to a lot of kinds of English on the net , Even though they have Indian accents they seem to be okay to work and live in America or other English speaking countries as members of society . Are you interested in the news ? It 's very difficult to understand all the information , for example , political , economic , and societal problems . Some of my friends do n't even know who the the prime minister is in my country . I was really surprised and shocked . We eat fancy dinner ( actually I eat KFC ) and cake , and drink sparkling wine Today is my birthday , but just like every year , nothing special or important happened the whole day . I think maybe because people are busy with enjoying their summer holidays against the extremely high temperature . I always feel it is difficult to talk about my work , Besides , if you leave Obi just tied simply , it 'll be loose because the cloth of Obi is broad and thick , so it needs to be dealt with so that it 'll keep in place for a long time . I did n't go out except when I needed to get food from the shops . But in this case , I used soy sauce . But , I think it is necessary to relax occasionally . I was hurt by a strong team , which is the top team in my town . Finally , I decided to keep playing baseball . My teammate told me that `` You are abnormal and you should see a doctor . `` Preserved flower lesson The rabbit wearing green clothing is an easy - going guy . I saw a movie yesterday , because I felt like seeing one . My roommate recommended `` Skyline `` . UNIQLO is a brand name ; its corporation 's real name is The FAST RETAILING , established in Ube city in Yamaguchi prefecture in the western area of Japan . UNIQLOCK was published about a year ago , and is popular among geeks and people who are fashion concious . It is known as a very fashionable and technical screensaver . I think you will be surprised by the music and dancing . I know it 's important that I keep studying English to improve it . I will start studying by podcast from now on ! Today 's first diary entry : My co - worker 's daughter has been infected by the swine fl I hope the Swine flu issue will pass soon . . So if you want to study Chinese and your native language is English , you can contact me . Leave your email address or send a text ! : ) / / / After that I could meet him at around 7 : 00pm . It was the first time in almost 2years . Every time I drink beer or some alcohol , I always feel like going to Karoke ! I should be careful for not drinking too much beer . . . These days , dangerous lads were sneaking everywhere . But I believe that God helps me all time . Those are very healthy . Thus , women play an important role in the labour force . I wrote this entry preparing for the writing part of the IELTS . Current Japanese custom of Saint Valentine 's Day is changing that girls give chocolate to their boyfriend for that girls give it to their friends . My Wacom Graphire3 tablet ( computer drawing tool ) Therefore , I decided to change school to improve my English ability . My new school is just close to my workplace and has a good environment . So that is why I 'd like to watch a movie without subtitles . We did girltalk in a cafe over a cappucino and small cakes , which made me so happy . A typhoon will get closer to Osaka my hometown tomorrow morning . A professor might say something important about the exam in the class . My first impression of him was not bad . I love rock ' n roll : ) but I love bossa nova too : D I often heard that many girls have no sense of direction . 2 weeks have passed since I came to London . Now I live in an international dormitory , but I can not make any international friends here because my roommate is also Japanese . . . We have similar perspective on many things . I find that he 's so funny and smart . Just before we talked , he put his message for me in the chat box , and it said `` I missed you . `` I was happy about that he had thought in a similar way that I had . My ideal house She bought a new cottage recently , so she invited guests to it . It was a wonderful lake side cottage ! The lake is big and clear , and there is convenience area . Maybe it 's difficult but I want to find an ideal house because we can not live in it Because I go library to study English at 9 : 00a . m . In Korea , there are many holidays . I can still see the grape trellis of the neighbour . I 'm studying in college . Summer is soon coming , and I need to lose weight in a short time . Summer , I love it , but I do not love fat ! ! ! In has been rainy this week in Hyougo , and the weather forecast says it will be rainy until this weekend . I had Nagasaki Champon and it was delicious ! I like Nagasaki Champon . After awhile the Ex - president opened his mouth . I have to study myself . In my opinion : The reasons people read books are : This site is helpful to me , because I do n't have the opportunity to write in English . Incredibly , we had to climb about 500 stairs to go there . It was worth climbing all the way up there , we had beautiful view . I carried out their favor with pleasure . Boys be ambitious ! In some areas of China , if a family gets a girl , the husband treats his friends with red eggs and if it is a boy , the husband treats his friends with the red eggs with one black point on each of the eggs . They will hold a concert which requires us to come wearing black clothes . We are in a room on the second floor of my wife 's parents ' house . It was very interesting ! And feel so happy everyday - thanks for eating icecream . I did not want to watch such disgusting movies , but I am very a honest and sincere person , so I obeyed his order . Most Singaporean friends laughed at me land said `` You pervert , How cheeky you are , This is not your PC but your landlady 's , Why did you do that ? `` . So Japanese government made a decision to stop providing electricity in Kanto distinct , even including the capital city , from tomorrow . I like sports ( especially karate , table tennis ) , and I also liketraveling , films , and photography . I was almost done . Only foreigners , Asian people in particular , live in the city . If there were not Chinatowns in the city , Sydney would not be so active . You will be able to see its huge and beautiful Chinatown . Those districts are not like Japan , but like China as well . I hate the English article systems . So when average Japanese students study English , we are always suffering from these devils lol . If English speakers study Japanese , is it difficult for them not to use the article system ? Warsaw in Poland is very famous for hosting the International Fryderyk Chopin Piano Competition . It 's a day for returning a present to a person who gave me a present on Valentine 's Day . He had a brother named Moon . Lately I have been thinking about how my life will be in the future with my family and friends . Okinawa is an island and is situated south of Japan . Okinawa has a unique culture , food , language and atmosphere . I have not decided on any of the trip details as yet , but it will be nice trip ^ ^ I hope I can go to Europe in the future . I have always liked Baroque music , especially Vivaldi . Which kind ofgirls do u prefer ? But it 's difficult for me to talk to someone fluently . l am Mahi . I 'm a Japanese engineer . I hope I can speak and write English , and comunicate with some people ! There was a few minute blackout , because there was a power / electricity interruption in my house . Today , I watched a documentary program on TV . I know that it comes from a famous Japanese cartoon and was remade as a soap in Japan and Taiwan already . But , after I saw the drama with friends , I became hooked on it . ^ ^ Although it includes unrealistic situations , and is sometimes hard for me to understand , the main actors , who are called F4 , are gorgeous and I ca n't [ find a reason to ] object to its popularity I 'm worrying whether I can do it by the deadline . Not Japanese music . something is wrong with my Skype mic . It is a tough month at the university , but there is nothing to do about it . On my Christmas list I said on my Christmas list She was diagnosed with a health problem recently . I should keep a record of my body 's ailments . I saw the beautiful snow , but temperature go down . One of the most beautiful things in the world is watching a baby growing up . `` Kyle and his men were able to take a great many photographs of the mountains below . `` soccer is played around the world . I enjoyed playing soccer . Now in the new millennium , scientific technology has increasingly advanced and the disparity between the wealthy and the needy have greatly enhanced . Some individuals have link the gap to the advanced technologies . However , from an empirical view , I really hard - pressed to imagine how the spectrum of technology has attributed to the wealth gap since it goes without saying that scientific technology candecrease disparity between the wealthy and needy . To begin with , the proliferation of the information highway have taken possibility to the poor to operate a host of things , which would have been unimaginable two decades ago . Moreover , it is wild acknowledged that the mobile phone , one of the most significant inventions in twenty century , has transformed individuals ' lives into highly efficient and convenient living , especially for the poor . By pressing a button , we can connect with anyone anywhere , which in turn enriches people 's life various and enables the human race living in different economic statuses . I guess I need much more vocabulary and a large amount of reading . because I run out strange things I remember that I havne n't been contating my boyfriend for a long long time . I have taken charge of all arrangements of on - the - job training . Today , I enjoyed my time in my house until my work started at 5pm . Every day , my work starts early in the morning such as , at 6 : 30am , so I went out before dawn . And as I get older , there is an increase risk . It is interesting . Since we first met , we have spent a lot of time together because we study at the same university and we always take the same courses . I have a constant headache these days , especially when I hear loud voices . I love to plan birthday parties for my children ! Last week , I met a strange man . It has many kinds of issues and organized by the level of difficulty . So , I do n't know my future . . . The reason why Philippinos and Indians can speak English is because they used to be a colony of America and they had to use English to live a smooth life . First of your questions , I think the most popular season for wedding is spring . It is weird : ) Maybe she asked the cabin attendants to write a Japanese message on her expensive bag on the plane lol She also said when her fans see her in Japan , please write a message on her bag . Today , I am going to go to a photo shop to get a picture of my family taken . I liked to see them suck saps we fed them , and occasionally fight head to head over saps or females in the plastic case at night , as they are usually nocturnal . Fishing was also my favorite activity when I was in elementary school . This morning , an insurance lady visited my house and offered me the same job she does . That was very annoying . The first time , it was an old event during the Nara period . Today is the turn of the season , We have distributed medical herbs to avoid sickness and misfortune . I thought that this site would help ppl who wanna improve their language skillz yea I know I have & nbsp ; this lonely diary which also can help my study The first thing important in education is knowledge . Education gives us the knowledge of the world around us . Education is not about lessons and textbooks . It is about the lessons of life . Again Euler , this guy never stopped . He always speaks like , `` Let me blahblahblah , `` or `` Please allow me to blahblahblah . `` I learn many things about both English and mathematics from him . As the Beijing Olympics started a few days ago , I think many people are interested in this topic ! Ryoko Tani could n't get a gold medal , but she got bronze medal . I went to the Nas & Damian Marley Japan Tour yesterday . They performed for about 2 hours . It was very exciting , so I watched it 15episodes in one sitting . So I WILL get it this year because The employees do not need to domath or hire accountants to get their tax return . However , t people who are self - employed , landlords / landladies , or have certain types of expenses over $ 1000 , have to report for their final income tax return . It has been raining in our city for several days . I felt so bad . Everything is bad . He is a busker , who does acrobatics very well , usually performing in the square of Xinyi Vieshow . It 's exciting to dig an unknown story . I think this site is really useful for people who study forein languages . This weekend , I 'm going to run a marathon race which is first time for me to run 42 . 195km . Now , I 'm a team leader of ekiden which is a relay race run by four people , with each person running running five kilometers . I want to lead to team the triumph , and so I want to have superior record . But many Japanese think that they are reluctant to divorce if they hold a wedding ceremony that costs much money ! ! I am annoyed by my toothache , but I 'm looking forward to going to the dentist again . According to the newspaper I read recently , it is easier to get a high salary person to produce high quality goods than a low salary person . Furthermore , in my case , when I worked with a low salary , I could n't gain any interest in my job and I answered yes . . . Since I had just gotten out of bed I was still in my pajamas . . ( ^ ^ ; But he said that he was traveling around the area and suddenly thought that if we ( my family ? ) were home , he wanted to come visit meet us . Anyway he is very cheerful person , so we had agood time . I think I need to take some gift to him this Friday . Do you think a bottle of alcohol is a good idea ? By the way , I was surprised when I came here . I think Japanese have difficulty accepting people coming into their houses except themeselves and their family . My girlfriend chose green latte . I chose hot chocolate . We ate together ( without our boss ) and my colleagues liked my dishes . Every time when I promise others to fulfill an assignment , I can accomplish it very well even though the task seems unconquerable . Moreover , I am afraid to dissappointe others rather than I myself . I like different coffee . When I 'm sad , I drink cappuccino . When I 'm deppressed , I prefer black coffee . I used to limit my time to 30 minutes , but 10 mins is more intensive and makes me concentrate more . It 's a time when many people make their resolutions for the whole year . Keep your fingers crossed ; ) However , it is difficult to keep my tension calm when she seems not to hear me , or does the same mistake . The sheep was finally found by the shepherd and felt relieved . I am Buddhist , but unfortunately the temple generally do n't give this kind of service periodically for small children . It must lead to increasing of the enthusiastic Buddhists in the future . different world I overslept this morning I put on my clothes hurriedly and went out . Because I made a mistake . So please tell me how to study speaking English . Seriously , it was super expensive ! I found many colorful fighting airplanes , flying in the sky . Then I realized it was just a dream . Hi everyone ! ! ! ! ! ! ! I bought two puzzles because the puzzles were on sale . For about an hour we continued walking , visiting many offices , ascending and descending stairs , and opening and closing shutters . I must go to take a shower and make myself beautiful ! Scenes of destruction broadcasted on television make me sad . I will go to convenience store to make a contribution tomorrow . My boyfriend went to Guangzhou to make clothes for his fashion design competition . I was happy because I helped her . I lack physical activity . However , I think there will be a lot of professional athletes competing for China . I 'm really sorry that I did n't talk a lot with my friend . Even though my feeling is not good , I had enjoyed the time with my friend , I do n't like a person who says , ` Because I am a very busy person , would you do that ? ` But these days I think about my studies and how I can develop my skills in language quickly all the time , so I 've been trying to find some books that will help me to learn this language . Actually , I like to study many languges . I am a teacher , I teach chemistry in senior high school . The text is about well known people and their private lives which nowadays is often exposed to the public . The author of the text gives us a shocking example about a policman from Los Angeles who used police computers to find out private information about the stars . Probably the policeman searched the information about the stars in order to sell it to celebrity magazines , and the police database as well as the internet are places where private information about stars is really easy to find . In Japan , the age of adulthood is 20 . But now , I do n't need to drink alcohol secretly . But she played very well . when I used I - pod nano , the battery of that would be really fast gone but now when I use iPhone , the battery is longer than it ! I am going to my family 's at about 17 pm , I think . I want to overcome those problems , so I registered for a new site . ( Really , although I have registered for it , I have n't used it because I thoughtmy PC did n't have a mike . Recently , I was asked which train to take by a middle - aged traveller on platform 15 at Shinagawa station . I worried about taking the TOEIC Brige test tomorrow . So , Do other countries have TOEIC Bridge tests ? The TOEIC Bridge test is a primary test . I do n't know what to say . And tomorrow it will be hotter ! uuugh - where is the rain ? . . . Today , I was fainted at a morning assembly . To make a friend learning a second language is essential . My friend , who will get married in May , and I went shopping to look for material for her wedding bouquet . We finally found the best flowers , my friend smiled beautifully . I 'm not familar with the company . I went to study with my friend I went to study with my friend today near the BTS saladang We have been studying English and Thai for a long time . I was happy to see her today because last Wednesday I did not go to study with her . I had forgotten that I had an appointment to study Chinese with her . I was happy because she was not angry at me . Who said sorry no , I am busy very much at the moment . I was reading your diary already , I see that you have improved . Thank you for reading my journal entry all Japanese and English people , have a nice day . . . . . . . . . . . . I ca n't speak English well but I have to study English . When I was walking on campus on the way to pick up my car , a woman stopped me and asked me the way to the Pavillion . Copy or Homage ? McDonald 's Happy Set for children is nice for adults too . If you have a coupon from the mail , you can get it cheaper . I am preparing for the TOEIC exam . The test is on November 31st This is my first time to write an English daily diary on a website . KAWASHIMA will be traded to another team in the Premier League ? I heard West Bromwich Albion FC in the Pemier League made an offer for him , Next October I 'll run a marathon . Now , I will practice it everyday . I 'm still a student in a foreign country ! ! ! ! ! ! I do n't know much vocabulary . I have never written this kind of sentences before so I will try to write it by following my book . I take comfort in watching sitcoms on my laptop . Although it was morning , there were a lot of people , especially foreign visitors . We bought some souvenirs for our family and friends and afterwards , we went to Tokyo Station to take a bullet train . We returned with a lot of stuff . My name is Aya . My idea is you are either a victim always affected by your external environment including people or . . . I went to `` Ryuichi Skamoto 's Piano Solo Tour 2009 `` on April 2 . I promised myself that I write a story here once a week at least . Summary of plan of a new Microsoft operating system Seriously ! ! Here is the reason why job - hunting in Japan is terribly complicated . Therefore it can be a huge disadvantage in job - hunting not to work at a company right after graduation from university and to be `` KISOTSU `` . - Dream collaboration - He continued , `` This starbucks works in collaboration with Tsutaya ! ! Khabarovsk is a large city in the Russian far east and it takes almost 2 or 3 hours to get to there from Tokyo by plane . They built cars for competitions and later , in 1947 , also began to make sports cars . It was so windy that my kite flew very high . I remember my first shopping experience on the Internet in 2003 . I had scored some points , and although my colleagues helped me , I could n't continue playing . Some would just fulfill their ( sp ) passions for languages , studying different languages and exploring different countries , cultures , histories , cusine , . . . . . . Then I got 2 tomatoes from my apartment 's owner . Robert 's pale skin & Tayloar ' abs were fantastic . . . . maybe the movie 's promotion strategy . another is in charge of the wedding car , Married couple keep it as a memory for all their lives . People usually thinks murder is absolutely a bad thing . ( I do n't think it makes sense , 'cause that should n't be a reason to kill people . He was arrested a few days ago . I might be able to improve my English speaking but my grammar is horrible . So I want to ask everybody how do you study a foreign language ? I will study more and master it to become a more sophisticated ( resourceful ; ) man . TV news about Greece reminds me of the trip . We enjoyed walking along the seashore , eating Greek dishes , and cycling around the island . It was very windy everyday , and it was cool to swim in the sea . The preperations for the presentation this week , household tasks . . . We are living with problems . Work problems , family problems , money problems and stuff that we have to solve . If we can not solve them , we will feel a little bit down . So we need to vent and relax to balance our life . We can go out for a vacation , watch a movie , listen to the music , do some exercises or just have a nice sleep to make ourselves better . Sometimes I do , and I have a lot of ways to relax . everything is possible , please believe in yourself and action now . If it is good , I 'm going to acquire my driver 's license ! I wrote them exploring the Korean - Japanese dictionary very often . Today is Easter ! I think all of us should remember the Jesus ' death . I 'm just going to get a part - time job . But we could visit only two , because I did n't wake up early - _ - ~ ~ ~ as usual . When my lesson finished , we went to center of our city and decided to begin from there because there is many of temples and other religious organizations . In a Japanese map , Japan is located in the center of the world . I do n't know if he actually meant it , 'cause I am planning to go somewhere for travel after the exams are over . who knows from which country you come from in order to help me on this website . Just a question . I watched Dragon Ball a little while ago . Dragon Ball is an old Japanese animation . I love Dragon Ball . It is not too much to say that I grew up with Goku , vegita , kuririn who are characters in Dragon Ball . The heat wave is expected to continue for a while . I 'm looking forward to the cool fall weather . The thunder was so intense that the windows trembled and car alarms sounded . I will let my shop open in April 1st Maybe , it 's time to give up now . Even though it is still late June , the air temperature became 31 degree celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insurance . My duty still continues , when I finish to talking to the boss , I have to go to a motor bike shop to renew my bike insurance . He is a mentor in my life and offered to support me financially when I decided to study in the Netherlands . Recently he offered me financial support again . I emailed him this morning about our plans for tomorrow . I drank heavily ! I want to go abroad in summeeeeer vacation ! ! The demerits of capitalism would be if you lose in the competition , you may not get a bonus so the system is good for winners , but it may not be frendly to losers . So , in a capitalistic society , there is a need for a safety net so even the losers can live happily as well as winners . It 's required to live abroad or if you work in company which requires you to speak English . `` and they ( in their cars ) slept for one night . Now , They have been rescued by the Ground Self Defense Force . And finally , the snow was 138cm ( = maximum ) between the 25th and 26th . I 'm bored . . . I miss my friends , but it is hard to meet them for various reasons ; marriage , moving . . . But I thought `` If I do n't say anything , my partner ca n't tell me anything `` , so I said everything I just had thought with courage : ) I decided to join an English conversation school called `` Rare Job `` today . I applied again and I succeeded to recontract for more 2 years . My mother managed to even go skating . I was surprised when I heard this fact . I think `` a couple of `` is a useful expression when you speak English . Moreover , gasoline , which is fuel for automobiles , is made from fossil fuels such as coal and oil , and the process of making it may also need fire , which causes CO2 . For example , the higher the global temperature is , the higher the sea level will be and as a result , some islands will sink . Of course people who live on these islands will have to leave their country . temperature has been increasing . If global warming lasts , our lives will be destroyed some day , and these effects are mainly caused by driving automobiles . According to recent research , we can get more than 80 % of information about other 's characteristics based on looks . This means that when we make judgement counts on appearance , we can know his or her characteristics It 's very simple to understand and full of obvious cases . I like playing video games on Xbox360 and listening to music . That 's all for my introduction . I feel like I do n't want to do anything all day long . So opening the window and checking the weather is the first action I do when I wake up . It was nearly terrible . Sometimes people in foreign countries do n't understand it . Tiger Woods has fourteen girlfriends . Maybe the action / activity has to be a single , atomic action for the continuous tense usage and the difficulty is the consideration - is an action is a single or , actually , it is a set of actions . 30 ( Mon ) was a bank _ holiday in the UK . Self - introduction Hello everyone . Especially on the first day , a very sexy and beautiful woman Singer ' IVY ' came She works at cosmetic company . I paid for the meals for my friend when I did n't have money to pay for it . I apologized to my friend but she seemed to hate to pay for it . I negotiated with my friend who will pay for the meals next time . We usually call each other very often , sharing all the small details of our lives . I think it 's tasty ? ( It seems tasty ) It 's a good thing to learn a new language from a professional teacher . Akira is a member of Exile , which is Japanese pop music group . They are childhood friends and Akira is four years older than Masami . Of course , I have the original Japanese version . It was my third time and quite interesting . : ) And what I noticed in the class is that there are many Americans who tend to drive agressively . It 's gon na be ridiculously expensive . I talk to my parents on Skype every sunday night . English instructor murder case Recently in Japan a popular topic is who youg man killed english teacher three years ago . As you know , the other day a major earthquake hit Japan severely , especially the Kanto area , and a lot people there are facing many difficulties . For example , according to reports , they suffer from food shortages and ca n't get enough sleep . To be honest , the earthquake has little DIRECT influence on our daily lives . ( Of course , it has many indirect influences on us . This is shown by the fact that I 'm very very worried about people in Kanto , partly because many of my friends live there . ) But I 'm suffering a kind of setback . But at the same time , I also think I manage to brush up my speaking ability to some extent by reading books or listening to many materials in English . So nowadays I 'm reading a lot of newspapers and books and watching videos or movies in English and thinking how I can get a chance to express myself in English . My hobby is listening to music and playing bass guitar . For example , I know the phrase `` Lehman shock `` , but I do n't understand how it effected the World Economy and ca n't explain it well . Now I am not a student any longer , so I think I need to have knowledge about these things . Therefore , I borrowed a book called `` To the people who became working people without understanding economy `` written by Akira Ikegami at library . I hope it helps me gain more knowledge to understand the economy . I really dislike reading books , but I try to do it little by little . I watch it whenever I have free time like after work and / or on holidays . Write to me , please ! In a large scale company , it is difficult to evaluate each employee 's contribution to their company . So even if someone could achieve his best result , he can not get a bonus because of his company 's loss . I 'm not surprised because the March disaster in Japan was broadcast all over the world . Many Japanese artist appear in this one ! ! It would be a Japanese - English word ; it means that ladies - talk about female - particular things . Recently I have found a need to study English again because of my Job . I think it could be a good practice for me but I feel it 's more difficult than before . I try to continue to do this listening . PS I love tennis very much so I play it 2 or 3 times a week , and if I find some free time I would search for a tennis movie in Youtube with a term such as Federor etc . If you like to watch or to play tennis , pls reply to me hopefully to be my friend ! It 's a fashion magazine in Japan . Some people may say that there are not as many places in their office , where they can smoke , as before . Well , it is n't something I should think about . I will go to bed early and prepare for the next day ! ! After the East Earthquake , two months had passed quickly . One of our deals is to combine our products with 3rd party products . I want to make friends who are interested in learning English or who like traveling . I study English at my university . Actually I had my first experience with a Pick - Pocket . Then I checked all of the pockets but unfortunately could n't find it . In the capital , Athens , the average temperature in January is 10 . 1 degrees , and in July is 28 . 0 degrees . It was a remarkable experience and interesting but I have to go back to japan . As you know well , Japanese is a minor language . And I know it 's very difficult in many aspects , like grammer , 3 different characters , pronunciation , etc . . . Also it was so difficult for me to understand what the newscasters were saying on the TV . This song is famous because of its lyrics . Her future self writes back to her 15 year old self saying that it would be all right , I am an adult now but even I still have difficulties but I am doing well so please do n't cry . And y friend taught me about that . It 's hard for children to judge which is right . In addition , students only put a lot of information into their brains in schools . However , vigorous pictures and unforgettably vivid sound would be engraved in their minds . Brazil ( Brazil ) , Korea , Iran , and Japan . Probably , my speaking skills will be better and better if I more phrases in English . I like this phrase , ' I could eat a horse ! ' it means that I amextremely hungry ! My first diary . Can we call them or their ancestors ' wild ' , or will they never be categoried as ' wild ' because they 've once been totally domesticated ? Now I have started research on subjects which I will study next semester . I studied aesthetics at undergraduate level and planned to continue further at postgraduate level and aimed to acquire an MA in that area . According to the professor , 3Ps ( Poverty , Population and Pollution ) are the most discussed topics in the aid organisations . I can understand it , but these topics are too broad to choose a specific issue to write a dissertation . I , however , However , I didi n't speak and write enough to communicate with people . Because of the big / recent earthquake and tsunami that happened in Japan this year , so there is not enough electricity in whole Japan . Many companies in Japan take more holiday to save electricity as usual . Stimulating the subconscious may help your memory , That is very beautiful . Last week I had a bad job ( experience ? ) with one of my supervisors ( bosses ) over some issue . We had a good time at some Izakaya over a couple glasses of beer ( called ) chu - hi . I will study at an English language school for ten weeks . Do you agree or disagree ? A person should never make an important decision alone . There are many famous people who succeed in their fields : like one of the greatest entertainers , Micheal Jackson , or a good Japanese baseball player , Ichiro . Famous successful people surely put in a lot of effort . Given such points , I strongly reccommend you think that way . On the first half , the Argentinian scored two goals . I Caught a Cold . I 'm feeling really bad today . I am so sorry that I can not reply to some of my friends ' e - mails punctually . Unfortunately , summer in Russia is not long enough to spend it at home . As you know , Hong Kong is an international city and the financial hub of Asia . Thus , there are a lot of people who have different nationalities . Anyway , Hong Kong is located near the ocean so the humidity in Hong Kong is incredibly high . I think , due to the high humidity , Hong Kong people have great skin ! ! I really appreciate his meeting with me . Many artists live in this area and we can meet them and their artworks . When I was choosing some food and there was a cute kid . The boy said to me that one item was not so good , so I should choose another . I chose the one that he recommended to me . They seemed like westerners . I was moved and appreciated their bravery I 've decided to keep a diary in English starting today . I was hit by a car and broke my collar bone during my time in the US , so it 's a little bit hard to use my hand . . . the instructor of level 4 is British ! I went to sleep at 9 pm the day before yesterday , and I woke up at 1 am yesterday . . . Today , We shot a music video . So , it is not that incorrect . It was about 3 best friends putting message on personal ad for finding boyfriend / girlfriend . Invoice that you added was also written 1 of it . Of course , I will go to temple to worship with my family . My town is surrounded by mountains and nature . There are some rivers nearby where I raft and sometimes go fishing with my father . It 's really peaceful . If you search for the city on a map , you 'll see that it is situated in the Ural mountains . Some tourists are very dissapointed with this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains , and if you come there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( you can see on the first photo ) I could n't sleep because I watched football games at midnight . So unpleasant - to feel yourself strange , empty . . . I want to feel refreshed . I hung out with my friends ( today ) . college entrance examination the college entrance examination is the most important exam in every chinese student 's life . this is a brief introduction of our country 's college entrance examination . I need your help . The first English book I could finish reading through was `` Fried Green Tomatoes `` . I could finally get to know the details of the story and And everyone was quite friendly . We should 've talked beforehand about which foods we would be bringing . Who can help me ? I have a problem with myself ( in my spirit ) . I ca n't escape my past . Those were my bad things such as being belittled because my grades were very bad . during the time it took them to leave home , Bae - chu came constantly to eat . Light Pollution They are for advertising , commercial properties , offices , factories , streetlights and illuminating sports venues . We should turn off the lights for a little bit sometimes so we can save energy and retain the ecosystems . So now let 's be responsible and clean the sea . I bought an umbrella for my friend . How wonderful the life is ! About TOEIC I decided to take an examination of TOEIC . I want to improve my English fast . and I want to work all over the world . They have a rule that limits the number of foreign players in the team . He gets a title and is proud of himself . It touched me and I borrowed the album ' ( What 's The Story ) Morning Glory ) from my friend 's friend , then I found that all songs on the album were so wonderful ! I could n't hear what you said . And , when I got a mail , my heart is very hurt , , , nervous . At that time , I was really tired and sleepy . A percentage of the audience `` decrees `` the success of all the work that is behind this show . The winners are chosen by an audience , who can vote for his , her favourite singers by a phone call or a text message , with a code number , and by a jury of quality . I am a lazy person , and I often give up on my declarations . Because they study hard foreign languages for various goal . The result of self marking was bad . After we knit the things , we sell them on the free market or donate to institutions . Because This club will recess from December 14th to January 4th of next year . It is the last piece that we need to finish the shape of our blanket . If I could speak English well , then I would n't have to study so much and working in Canada would be easier . The Game and English Conversation Programs This is my second time staying here . So I want to change my email address Tracy Whitney , the main character of the story , is a young , beautiful , and intelligent woman working as a computer operator for a bank . Ielt examination in September I would like to learn English . Only four days more and I can be back home . Also , I 'm beginning my summer vacation . I made a plan for this vacation . I want to join my cousin 's company and do work for him for free . I also think I can get more experiences . He bought some souvenirs for us . I think many Japanese people would n't want to eat a snack with a color like that . I need background knowledge in order to be able to obtain higher score of TOEFL . Anyway , I will buy a magazine called ' ' English Journal ' ' , but I do n't know whether it wiil help my background knowledge . His skills are unbelievably fantastic ! My friend and I went to Ansan where my friend J lives . We ate a lot of food in a family restaurant called , `` Vikings `` . I will go to the market and play with ma dogs . I wish to go to america and study abroad in order to get job in the near future . I hope I can find good friends to study language with each other . Yesterday , I was very busy because I had two exams , three classes and two tutoring sessions . When I went home , I just sat in front of the computer to watch a few video clips . I hope I am not depressed whatsoever . Yesterday , I watched `` The Lion King `` , the famous Disney movie . The blue bucket has polka - dots ( on it ) . If I speak English , I would like to visit many countries ! I ca n't express in English what I want to say , so I need to study speaking . And I want to belong to community , then I would like to make friends there . I was so excited because I like this brand very much . So he will be pleased . In fact , Naples is famous for its pizza . ; D It 's interesting for me , not only because of the story but also the illustrations are great . Unfortunately , I ca n't put the link of myfacebook on herebecause the national network control centre has banned it , so I ca n't connect with my friends there . My skin condition is pretty good and I hardly feel itchy . As one of the members here , I will do my best to communicate with others and write more dairies . I think I 'll be successful and change my way one day . He was Continental Delegate of the Congress , Governor of Virginia , State Secretary , Vice President of the United States and President of the United States . I would have often remembered and dreamed of it . Today I studied about FriendFeed ( URL This service is very useful for me to search the information that I got from each service . I 'm waiting corrections from everyone . But I thought for a long time and I decided I will stay this way You go abroad and meet good friends who have different cultural backgrounds but they make you feel that there is no border among us when it comes to friendships . Are the idioms and slang which are on the books still used in the world ? If not , how can you learn new idioms and slang ? At first , I was not so sure about this observation because there was an exception in one person , who works regularly but has the highest operational capability in the ship ; he can fix almost any mechanical failure which occurs during operation . I just went over to Yokohama where my uncle lives . Finally we rolled them carefully , and we 're done ! ! ! Anyway it 's really nice to eat sushi with students . What are the important things in a restaurant ? we should always provide a warmheart to them . comply with customers and give them high quality service . As a professional . I do n't doubt that we should have this as standard . How 's everyone 's day going ? I already knew there is no clear answer I got up dazy to day my brain is so confused because I have not slept enough . I love to travel to unknown or beautiful places . But , I will do my best to overcome all my problems . I thought `` cash out `` was unbelievable , because nobody withdraws cash in a supermarket in China , but it happens in Australia . We have few factories that make bats or the other baseball equipment , so the bats and gloves , everything except clothes have to be imported . Thanks for reading my bad English diary : ) We parked the car nearby and had to walk to the site because of the traffic control . During the event , we saw a magic show that was preformed by a good - looking young couple . However , when the midnight came , we could see two firework shows from her balcony at the same . Today was the first lesson . But I looked like the most foolish person in the class . Recent occurrence We have n't played on playground equipment for a long time . After that , we climbed to the top of the slide . Regarding the meal , some fancy dishes were served . But he did n't emphasize the safety of the food . Trimming is important because it is easier for germs to adhere to the surface of the raw beef . As a result , his restaurant caused food poisoning and killed four people . The purse was 81RMB . For us , it 's not that expensive since the purse is of high quality . It is actually extremely hard work to raise two newborn babies at the same time . I read an article about the stress that an older child experiences once a newborn baby is born . anyway , we have done it , all we need to do now is wait for feedback from our customer . Camping `` Twilight `` and `` New Moon `` , I prefer Twilight , because it is more romantic to me somehow . I was really excited to see kangaroos in the wild like this . It 's quite different from Japan . I 'd be grateful if you correct my English . Alsmost everyone , no matter if they are young or old , male or female , they are keen on it . It is really a challenging work since there are so many books , at least one million . I like reading , so next time , I will spend a lot of time there to broaden my horizon . Oh , I remember that I want to inform you that I am going to change my schedule so I wo n't write so often later . The doctor diagnosed that she suffered from hemorrhoids . So she stubbornly killed her desire more than ever . I 'm a sophomore at Hanshin University . I 'm a South Korean girl and I 'm very much interested in English , French , IT and electronics . There are radioactive contamination , earthquake and tsunami in Japan . So , I speak English at the school , but I usually speak Swhili in my village because most of my neighbors ( the families of my coworkers ) can not speak English . There have been cases when / where a dead body was discovered after weeks or months , and this was only because the stink spread all over the building . [ spread = spreaded ] I wonder if I can get English skills now , even though I 'm over forty years old . There are so many beautiful structures influenced by Christianity and I had hard time to forgetting it . If I want to talk about things that I like , I can talk with others who are interested in it . Each person has their own tastes . Here is a video clip , from the movie [ The taste of others ] . No doubt , natural gas industry is the most hopeful industry in China . If you find any mistakes , especially grammar , correct me . : ) Cuz , their MC and performance was fun ! ! But I can not go for a working holiday because of my job . So , I have got a lot of chocolate as a birthday present . I like chocolate , but not this day ! ! I hope to study abroad and work overseas . I have n't been writing here not because I am lazy or anything but because I do n't really have time . I played the music `` Silk Road `` composed by Kitaro at the rehearsal . I ca n't speak English well and typing fast . I 'll see the club member of the university . I was a part of a brass band when I was an university student . Now I 'm a little nervous . My company 's global language is English , however I can not speak English well . Some of my classmates plan to go abroad , and some prepare for graduate school exams . Though I like to read , I am not really good at English literacy . Hello , friends and teacher . I went to university today to prepare everything before receiving the cetificate today . I paid a lot of money there for the picture and my dress and associate old student um . . . Recently my younger classmate Raquel told me that there was a website which helps people to practice languages that they want to learn . There was a picture of Carl Lewis in a textbook . It cost nerly two hundred dollars to join this party , I got ta say . Hello , my wonderful friends . Do you like to listen to a story before you sleep ? I like it . Today we had violin class . But the teacher keep saying ' hold your violin up ' . Tommorow is the concert ( sort of ) . We 'll play violin at school library . My brother 's girl friend is Taiwanese . This year , in September . . . . Article 9 of the Japanese constitution states that ( 1 ) in order to aspire sincerely to an international peace based on justice and order , the Japanese people forever renounce war as a sovereign right of the nation and the threat or use of force as means of settling international disputes . Anyway , I had an amazing time because Japanese people would never imagine meeting famous people in person here . After I came back home , I told the story to my friends who are native English speakers , and they all told me how stupid am I . . . damn . Yesterday evening I sneezed several times . I will study English very hard . Actually I had been suffering from my knee 's pain I got last December , therefore I asked him some advice about which exercise would be good for my knee 's rehabilitation . He kindly taught me some stretching exercises and how to use a machine exercise and I did them for a short time . I thanked him very much and decided to go to that gym regularly . The Health Minister is trying to convince people of this . Medicine services should be free for everyone , people want to feel safe in the hospital , no matter how much they earn . He is good with children , never barks ? to people , and always stays by my side when we go outside . Winnie the Pooh - My review I do n't know why but I loved him and his friends , Piglet , Rabbit , Eeyore and so on . The characters are very cute but not very clever . Yesterday , I went to Yoyogi park , which is located in the center of Tokyo , and saw the cherry blossoms . Because of thetragic earthquake and Tunami atFukushima nuclear power plant , which supplied energy to Tokyo was dameged . Both its functions but especially its appearance appealed to me . ( Or , `` I was attracted not only to its functions , but also its appearance . `` ) It 's a technique that applies pretty seals or pictures on things with glue , and the things that are worked on are glasses , plastic bottles and wood , etc . . . We could enjoy verdant scenery anywhere when we stayed there . In 2005 , the black bears surrounding Toyama residents were a controversial issue . The lack of food in the mountains would have made them dare to risk their lives by coming near populous regions . Japan won against Argentina in today 's soccer match . I the enjoyed Chinese lunch , night view and shopping . My room , my clothes , my brother , and so on . . I go to college . She should n't . There were a lot of people waiting to find out if they were one of those successful candidates . I was quite annoyed by the important items on the agenda . These lessons are for the TOEIC test . During the lunch break , I was suprised to see my friend disguise herself as a `` Pokemon `` . I want to hold a halloween party , like how & nbsp ; American students do . I wanna go home ! to make a sentence . My job is in the service industry and merchandise management . Anyway , I will ask him to read it because that day is really important . . Have a good weekend . Recently , it has become hot . I would like to learn English and I registered on this site . She is tired in these days because of daily child care . From thenon , I often went to him to learn English grammar and vocabulary . I used to wear brown contact lenses for half a year . Although I know that contacts are bad for our eyes , I did n't believe it . And all the families are talking about it . While I watched it , I was able to study English and catch spoken English . One day I want to speak English like that . Because I want to study English more than I want to study finance . So I waited in front of the door , and then I entered it on opening time , so I was the first customer today . My classmates from elementary school I saw my classmates from elementary school last night . Besiedes , the cruel organizers of this test put many difficult and rare English words on it without any hesitation . The listening comprehension part especially is super difficult . On top of that this test has 200 questions , so if we come across successive difficult questions and we can not properly answer , we would be FUCKIN frustrated . If I can not obtain a high score on the 29th of January , I promise , I will assassinate the organizers of this test . Because my PC had some problems , I could n't connect to the internet . I had never been to an American school , and I was impressed with the classroom , corridor and students . I was happy they tried to speak Japanese as much as possible . one is singing a song , one is playing a guitar , one is playing a dram As each Mr . children 's member has good skills , Japanese people have been impressed by their music . Especially I recomend you a song ' ' HERO ' ' . Now it 's raining outside and it 's very cold , I really miss the sunshine and the temperature in the south . Open University It ` s my first day to know the Lang - 8 , I tried to use it once and succeeded . Have a nice day ! I am going to go somewhere for my English and IT skills . I work for a real estate company as a sales manager . And I like hanging out with my friends and finding good restaurants / bars / shops / etc . I ca n't hear them because it 's a noisy place . After that I danced with a Filipino friend . He could dive under the water without breathing for about one minute . This winter is especially frigid . Do you know the player Ichiro on the Seattle Mariners ? When I had online lessons between Japan and India before , there was no problem . I 'll play with my friend next Sat . I watch the news every evening . It remains to be seen whether it is feasible or not . Tomato sauce I made tomato sauce today . If I had had more energy , I would have gone to a fitness club . I am going to go to a Taiwanese restaurant for lunch with a coworker . The reason is clear ! I ` ve been to Go - kon party when I went to collage , but people say there is something different between student ` s party and office worker ` s one . I think office workers tend to join more seriously , because they have less chances to meet other people than students have . At last , I went to Utah USA 2years ago to study English & teach Japanese in an elementary school . which were some hand cream , body lotion and shoes . It will be hot in this afternoon , so I 'm going to clean the bathroom using a high water pressure machine . The good things waiting after that include drinking beer and taking a nap in this comfortable weather . I love my new job very much , and I cherish this chance . The weather has been cold for several days . Of all the seasons , I like spring the best . . Engrish is a funny English expression by a non native English speaker , especially ( by ) Japanese . ' All your base are blong to us ' ( AYBABTU ) is one of the most famous and popular Engrish expressions especially among Internet users . They are not very famous in Japan now , but I believe they 're going to be famous soon ! Thanks for reading . Do people who live in developed countries and are not materialistic ( ? ) think so ? There are many kinds of food which are not expensive and taste good . So , my next big journey is next summer . And I hope my English is n't too bad . So that everyone that reads this can understand what I wanted to say . . . I want to be a good student and a good girl this year . It makes me very happy to have an American friend named Almir . ^ ^ . My specialty is sculpture . And I must draw [ ? ] every day . I admire them a lot . I 'm a writer for Japanese daily newspapers and magazines . He taught me ' GO DO ' ( name of a tune ) which means we can do anything . She passed the entrance exam , although I was surprised . Jacrine 's books describe girls with big troubles , who grow to be independent . He 'd like to play a guitar someday . Thanks for reading my diary . Please correct my diary and be my friend ! It is hard to get interpreters if the language is not so common , for example , Swahili , Nepalese , and so on . . . . . Long interview take almost all day , while short interviews takeonly 30 minutes or 1 hour . I literally ran to the nearby supermarket and purchased a steriliser . ( x _ x ; ) It seems the temperatures in September and October will be higher than the average of the previous years . . . It 's because of the tuition fee . The choreography started yesterday . I will do my best on my essay . When a woman is stressed she instinctively feels a need to talk about her feelings and all the possible problems that are associated with her feelings . finding solutions to her problems I 'm worried that recent Japanese youngsters tend to go to various foreign countries and know much about foreign countries , but they know little about Japanese history . For example , I manage to write this sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . I mean if an English - native speaker is very good at Japanese , is she / he thinking in Japanese first ? Hi , I wanna make some foreigner friends She also says that I 'm not paying enough attention to French because I started with Japanese this year , and it makes me really angry because you have no idea of how much I enjoy studying Japanese . Finally , I transferred my day off from today to another day . Then I will make pickled Chinenses and eat that them with curry . I believe in your help guys : ) We choose `` OMIKUJI `` for the fifth time ! ! In Japan , people choose `` OMIKUJI `` to know your fortune for the new year . This book level is beginner but it is difficult for me . Since most of them are online shopping I hope I 'll receive the dresses exactly the same as they are posted . This recession has hit me pretty hard . I have no experience of editing and writing , but I want to try . I do n't know this job is really interesting , but I want to try . Today , at last , he recovered and came back to our house . Most of the time , Spiderman is airborne with his web , swinging from building to building . . . I 'm going to a bargain sale this weekend . because I have graduated from high school . I 'll go to bed early to prepare for tomorrow . I 'm not a Tri - Athlete ! First DialyDaily I read a book for 30 minutes , I heard English CD for 30 minutes . Recently I read a book called Christmas in summer . But I want to write , since I decided to write in the diary every day ! ! I ate a watermelon for lunch for the first time this year . Is it the same in other countries ? My duty is oversee and analyze ground water , waste water , exhaust gas , and so on . Compared to other divisions , we have a lot of overtime at the end of month . Today my daughter went back to Okinawa , because she has to work . I wrote a diary because I want to practice my English . Yesterday , I had a terrible headache so I took 3 pills of medicine . But if my head aches from a bad headache , I might as well take the medicine to endure it . I barely found the pharmacy and I got treatment . I watched 90210 I watched the final episode of the first season of 90210 . I 'm looking forward to watching the next season . They were very healthy . Extremely , dirty and fun ! I ca n't tell whether it 's going to be the same in the case of Japan ( halt of growth in economy ) , but it 's sure that the economy of Korea depends on the flow of the real estate market . Before entering university , I did n't worry about my writing because there were not many changes to write one 's opinion at school under the Korean education system . Today I studied physics for an exam . In the library . I 'm very happy because there are many people who have helped on my way to success . firstly , I want to say thank you to my good friends , my classmates and many other people . They encouraged me when I fell and supported me when I made decisions . They gave me a lot of powers and made me confident as I was constantly moving forward . Because they hurt me , I was motivated to continuous efforts until I became an excellent and successful person . So , from my career standpoint , I thank everyone I 've been in contact with , no matter if they helped me or hurt me . What shall I grow ? I was given some onions and potatoes . I plan to grow summer vegetables this summer . Are there goyas in other countries ? and I found one of black cars hung flags on its bonnet . The organization that made the JLPT does n't publish the test questions right after the test . However , a lot of text books for preparing for the JLPT have been released . I 'm looking forward to it . Although I 've had an ID in lang - 8 for a long time , I always have no time to write a diary entry . Most students are under stress like me . This Saturday it was my first day in college . She was nice and cooporative . The lecture was about how to write a good essay , and I have an assignment to write and I need you to help me to improve my english level . I entered university this summer . After that , I can calm down . They are very big and are strong . I went to the movies with my husband to a theater near my home . I felt real action . there was something in front of my eyes . because I payed 1800 yen plus an extra 300yen for 3D . It was cheaper than other similar courses , because I had a professional ? invitation . Help me to love learning English again ! How can I get rid of these bad feelings , how can I learn to love using English joyfully again , like I did a year ago ? They do n't help other people . She is studying Japanese . But the weather is cold and gray . Tom Waits is one of my favourite singers . it was my first time watching a game . Good evening everyone . I will go to Shodou school now . I am sorry , I ca n't explain well . I have trouble with the language and enviroment . . . . . I was surprised at his thought I came across the Japanese speaking Japanese . If it 's true , I think the Norwegian goverment has to review their laws . So she asked me , `` How do you say in English , black framed glasses are popular in Japan ? `` Although , I know she is nervous about speaking English , I have no idea why she wants to know that expression as the first thing ! There are 6 hours to go to until the beginning of the match . I answered two phone calls from my clients regarding a big contract , which could feed me for a couple of months . Today , the weather is warm and comfortable . Following that , we played basketball together . How to condjugate on Lang8 ! ! Everyone danced happily . After he left home , my daughter and I talked a lot . When I get older I want to travel to Canada because I would like to know the country where I hope to spend the rest of my life . If I see that Canada offers the opportunities that everybody says it offers , then I am going to go back to to my country and apply for a permanent resident . . This is dreadful for me because I must write treatises in English . So we are going to buy some vegetables and meat for dinner now . she was angry at the TV , and she went to bed angry . It is the central city of an island which is northernmost place in Japan , Hokkaido . 2 days ago , I wrote a journal about whale hunting . My journal asserted `` Australian ways of protesting against Japan are very impolite and rough `` . Surely , if Japanese people try to change something or protest against something , we would only read a note of protest and shout something a few times in front of the oponent 's organization . lol Of course , the opponent 's organizationwo n't change their attitude orway of thinking in any case . Japanese people should watch other countries ' ways of protesting and their passions more . I am sad because my sister deleted the program for the keyboard I use to write in Korean ! . It reminded me that I 've seen a bear - shaped keychain in a shopping center near my home . So , I thought it was a girl ! I think she made me a little better looking . I know that bad things can occur all at once . From September 22 to September 24 , I went to Hokkaido for a trip with the friends of the university . My teacher gave me until May 4 to hand in an essay . Finally , if you decide to buy a dining table mat , what kind of style you prefer , a table mat that would put you in a good mood or a table mat that would open your appetite ? long long ago I studied english , but I still remenber a little . My task today is designing . Since we got two new workers last October , the opportunities I got to design web sites decreased sharply . So a person who is good at everyting has to do the remaining things . But these kinds of expressions are not familar to me . I 'm using a nicotine patch . When I checked my diary this morning , the friend who I met for the first time had already corrected it . I appreciate that all friends support me . S . I want to use more precise complex sentences . I read a new guide book for the JLPT . It is sure that the test will focus more on comunication ability than grammar . I have not been able to write an entry or correct other entries although I 've sometimes visited this site ! The reason why is that I 've probably caught the Rubbela virus or another strong virus ! ! ( Oh my gosh ! ) 39 degrees ! ! You know , in Japan , the temperature is still high and the sun supported by the summer attacks us , but at least for me , it was such a cool day , or , if anything , a cold day ^ ^ That 's ridiculous . Today I asked him to help me correct my studying abroad SOP and I told him I need it tomorrow , that meant I wanted him to accompany me , but after correcting my SOP he rushed home and told me `` I have a couple of things to do before I go to bed `` . In the beginning , I supposed that we had interested in each other , because he gave his phone number to me and said `` If you want to call me , call me anytime `` , and asked me to take MRT home together with him . Yesterday , I attended a party from the company where I 'm going to start working this spring . Another student and I will start working for that company and we are going to be in charge of global marketing . Then , I was puzzled because my English speaking , listening and writing skills are poor . It has already been about three weeks since I registered on this site . A surprising event A officer who was taking care of international students said that he could help me get accepted as soon as possible . Thank you guys , Thank you for supporting me ! ! ! Is it called ' being selfish ' in English ? You ca n't understand what I 'm talking about from these sentences . . . We can obtain so many things from that . Although they cherished the notion of life - long employment and the idea that the older you are , the more likely you are to get a chance of promotion , we do not seem to have these kind of thoughts at all . We know that we have no guarantees in a company . Hello all my friends . We should never forget those who are sad about their important family member ' s Of course I want to be glad that they are coming back home safely with all of them . with everyone else ? But at the same time , I never want to want forget about all of people lost in the war of Iraq . I caught a cold . Maybe because I was around lots of people yesterday . I can read simple sentences now , but I ca n't really understand normal passages and books . Today he took me to a restaurant as gratitude for the present . He thought that I rarely ate meet ( beef ) because I live by myself . Father is going to Tochigi for business tomorrow . If I eat a hamburger slowly , chewing it well and tasing it , I must regret having it . The production is started after ordering , so I have to wait for another month before the product arrives . She was so off tunethat I could n't remember what the song title was . The mattress of my bed sinks too much . The throne in question was a graceful sight : it captivated the eye of a beholder with beautiful , hypnotic silver filigree decorations . Fascinated with Lord of the Flies Nearly almost all my friends have it and they all reccomend getting it . Because I did n't have enough money with me at the time . . Today 's examiners were about 60 students of an elementary school , a junior high school , a high school and an university . because the Korean team played so fantastic . There is no need to mention that when your father is getting married you ( as the most beloved and wise of all cock - owners he has ever been acquainted with ) instantly become the one who has to put up with all the fits of pre - marital neurosis ( as well as being an unlucky witness of all this stuff ) , take care of all the sodding preparations ( `` we need to do a great deal of work to make this day really special `` , Goddamn it ! ) and just try not to go mad or turn into a `` bridesmaid bitch `` . frankly I do n't like these things . . . `` interested in women . . . `` Today I have found out about a postgaduate program . But I decided not to surrender and for one month ( it 's time I have before the interview ) to make my English as good as I can . And one step of my plan is everyday writing at Lang - 8 . What should I do first ? I like cooking Korean food . ^ ^ im a high skool student who 's tryin to learn english n been stayin in aus for nearly 2 years so far . firstly I will just write about my self , I am 18 years old now n turning 19 in a few months and plan to go to uni in jap after leaving skool where im now goin in aus . I 'd really appreciate if someone taught me here coz honestly I was totally lost at how I could improve my writing skills , there r no ways to improve my writing skills around me . btw , it 's already been a half hour since I started writing this lol im a very slow writer obviously . well wat should I start writing ? I reckon there is nothing like japan in the world , you 'd probably understand if u have the opportunity to go visit japan ^ ^ What a lovely phrase ! A metaphorical expression . / A metaphor . After we fill half of the pot up , the rising of the water also become obscure . Nobody can sensitively recognize the rising , and then suddenly this pot becomes `` unbalanced . `` This kind of corns , in other words , many intermediate Japanese students will start thinking `` Is mastering English from 30 years old impossible ? `` , `` Probably I do n't have a talent for language `` ( ? ) `` I do n't think my English is improving , It 's waste of time and money , I gave up . `` I tried to use a metaphor in this journal . On the way home , I bought seven bottles of maple syrup and three boxes of maple cookies at a supermarket . Are you actually using it ? Anyway , I think it 's a good idea for revising words , not by learning new words in my opinion . It 's also brilliant for learning KANJI CHARACTERS < 3 xD . I have to stay here until tomorrow morning . The other day , I went to a musical instrument shop and bought a saxophone . This morning , homestay father took me and my roommate to school , and taught us how to catch the bus go to school and back home , and he is interducing a christian church to us . There is beautiful scenery , modern buildings , and animals which I have never seen before . I sent you a sweeeet present ! From your crazy sister , Haruna Like my mum and dad always love me despite all of my imperfections `` When you have a daughter just like you , then you can understand how I feel about you `` . After that , the girls prepared dinner . It was very delicious . I did n't know which course was suitable for me , so I selected the basic TOEIC course . correct me if necessary . I am Lena , 15 years old . Well , I like swimming , watching TV and different movies , listening to music , watching football , hanging out with friends , etc . This is Oribe ware , one of Japan 's famous potteries . It has a strange design and beautiful green glaze on it . When I drink a cup of coffee with this , I am very relaxed . Last night one my good friend and I decided to make an air balloon out of paper . And we had a balloon with a diameter of one meter . We had a flat paper which turned into a big ball ! Today after lunchi thought : `` I would like something else . . Sorry , just a question . Maybe because I lack a sense of security , some people might rely on their closest friends , their families or their boyfriends very much , but for me , I rely on my home a lot . Even if I get a boyfriend , I will choose to live alone , because even if we break up , at least I have my home , and wo n't end up without a boyfriend and no place to live , that would make me feel like a loser . I have n't contacted this for a long time contact Becase of not enough time and the low intenet speed in I went to my grandma 's home with my parents today . My grandma is living in a nursing home now . and my grandma will be joining the wedding party . Due to typhoon I do n't have class in the morning u know a typhoon is coming to japan . I can even attach photo of these buildings . ) But anyway I really want to visit other countries , and with a great pleasure I would like to meet foreign cultures . I exercise every night before going bed . In can by easily demonstrated by comparing different Asian communities , such as the Man lineage or the Asian - American community . To sum up , this kind of Asian community seems to be mainly the result of a Western idea . Neither do I feel isolated nor do I feel inferior . `` Reading thousands of books is not equal to traveling thousands of miles ; But traveling thoudands of miles can not beat communicating with more people . `` by Yu Minhong , the chairman of Xindongfang . Modern cities have been planned as business place , that is , the main idea is not have people living there . Today , I bought a bottle of rice wine , `` Fuyu no sanpo `` , from the nearest supermarket . I think this bottle is showing chilliness and silence , and its naming is very suitable for this bottle . The only thing you want to do is this shit `` , and because the little girl did n't have the force to fight with this sadistic ogre named Kabi the barbarian , she had to do all the things he said . Every morning I meet him on my way to school , so we quickly became good friends . If we asked for directions , they brought us there in person . So , we went to a hot spring which took thirteen minutes by car from our house . We often go there because it 's equipped with not only hot springs , but a heated indoor pool , too . I heard it was the same in China or in some of European countries I have problems with choosing new jeans . It 's so ironic - low - waist fashion comes to Siberia from warm countries , but everyone just accepts it despite cold and long winters in Siberia . I could n't believe it , but there it was in black and white , as clear as it could be . Please look forward to my diary . She is working in a kindergarten as a doctor . He faced about one thousand and nine challenges and finally , he met a person who was willing to buy his recipes . But I realized that I can access it with ease . I wish everybody a pleasant journey and a perfect future . Then , we climbed up the mountain . If it clears tomorrow morning , I plan to snowboard with friends . Thanks to lang - 8 , I am so happy because I could make some new friends on this site . I think next year will be more fruitful . At the same time I am trying to be good man , so I can maintain positive relationships with others . The first thing which came to my mind was , `` Why ? `` The second happiest is North Korea and , the third is Cuba . It is very interesting to try teaching ! Then next week on Tuesday we will act on film about our school life . Before this economic crisis began last September , a lot of workers had come to London from other EU countries ( for example , Poland ) . However , the UK , as well as another country are suffering financially , therefore it is very difficult for foreigners to get a job . To tell the truth , I have hated studying foreign languages . But there are few clouds today ! We used a separated room so going together did n't make sense . The main reason that I came here is that I want to get a letter of recommendation from my professor but also I want to take a rest with my family . I do n't know . I will make a presentation about a city : Hong Kong . . . and read a scary story . . . . Because there were just two banana sautes with powder sugar , no ice cream , no fresh cream . . . The purpose of this trip is to make inventory clearance , to report the settlement of account in Augusut to the board members , and to take part in a conference . It may be because of getting nervous or excited , however , I do n't know why . Please tell me the difference and situations between `` I will miss you . `` and `` I 'm going to miss you . `` In fact , in high school my scores in English were good or excellent , especially in structure , but not so well in reading and writing . When I entered university and met different students , I realized actually how my language needs to be improved . I 'm a medical student and I find difficulty in understanding some terminology , particularly at begning of my first year , even though I got a 6 on the IETS exam ! Now my medical terminology is good , but I need to improve my general language because I still ca n't read long stories or novels in English . I do n't like having to open the dictionary each time to understand a word . Then , I tryed to introduce myself . I majored in International Relations . Today it 's windy . I was so disappointed . . Day by day I feel the autumn getting deeper . I love watching baseball games on TV and English football premier league . Next month , I am going to go to Turkey with my girlfriend . Please help me to learn English This is the first time I have used this website with the help of my colleague . Just like in every other country , McDonald 's restaurant can be seen here and there in Japan . Many Japanese people do n't think that McDonalds ' hamburger is yummy . As proof of that , here is the result of a questionnaire about hamburger shops . According to this article , many Japanese think that the most tasty hamburger chain is Mosburger , a Japanese hamburger chain . His sudden career change was very amazing news in Japanese Economic circles . I was VERY interested when I was at his house . offense to Aristotle , but in my four years at ShanDong University , I have come to find that passion is a key ingredient of the study and Academic life was fascinating . What I remember above all was always being It was exhilarating , intimidating , sometimes even discouraging , but always challenging . Let 's appreciate it and look Refusal . It is always difficult to refuse a date , because I do n't want to look all conceited but I really do n't want to go out when it is not the with the right person . I had a lot of experiences like this and I realized that male and female ca n't be close friends . an overcoat is 3000yen , and a hair cut is 1000yen . How do we stop deflation ? My friend So , I used this opportunity , I met my friend who is a teacher at a university . I think that parents have to love their children . I didn ` t think it would be a love story and I was sure it was a typical modern book about nothing . I 'm tired I feel a little tired , I do n't know why though . Although I want to believe this world wont enter into war , I feel something worse ( coming ) . It may not be delicious to foreigners , but if you have the chance to visit Korea I recommend you try this food . I mean those who were previously diagnosed and require assistance no longer require assistance at this time or those who were diagnosed and now require assistance . I know it 's mean for me to say something bad about someone behind their back . Recently I went to a game shop to find some new games . This Thursday , I will go to Tokyo to attend a ceremony of the company that I will enter next year . I have been living in a student accommodation for about three years . Then it would not make ( any ) sense for me to stay in the Netherlands . Therefore I like this accommodation . One of my friends did not ( get to ) know his neighbour [ UK English ] for six months . So we would like to make the accommodation comfortable for the newcomers . I 'm learning to speak English in school because I studied very hard . . . . I 'm afraid of swine influenza . I want to play sports occasionally , but do n't want to belong to a sports club because it is too hard for me to participate a lot of days . I really wanted to buy it , so I ordered it on the internet soon after I watched the TV program . I skimped on dinner yesterday . and I met a lot of foreign students . But I had a language problem . Recently , I made many types of bread . I intend to teach Chinese around the world one day so I need to enhance my teaching ability . People gradually become to stay at home in winter . I think the weather is a very important factor that influences people . Before the food is done , my husband put part - baked bread into the oven so that we could have it with the casserole . You remember those days ; when your mother knit a sweater in the dim light for you , or waited for you until midnight because you stayed out late and she wanted to make sure you came home . You know that there are many memories like that . In the future , I might experience the new world with the one . Expressing my appreciation - A useful Hiragana website . I always appreciate your corrections to my journals . Why should people get TOEIC score ? Because my birthday is in the summer , it means I 'm going to get older ? I have native speakers in my school but I 'm ashamed to talk to them . It 's a pen set and culture gift certificates ! ! ! The interest in reading It is bad news for everyone . Initially , I was supposed to wake up at eight o ' clock and Monday morning A turtle lives a long life . Every time I have to write an English report , I can not help but use an online translation application . A phrase I like is : `` knowledge is power `` and English is the most useful power right now ; there are hundreds of millions of English speakers . It 's no problem if the new students have a good personality . We went to an Indian restaraunt . Their atmosphere is high quality . Anyway , I know I still have a lot of opportunities to improve my writing skills . This is my first diary on Lang - 8 . Now I major in english literature in university . Mubarak has been the President of Egypt for 30 years . They want to see the fall of Mubarak . Allah will help the people of Egypt . but the people of Egypt ca n't , because their government has blocked all Internet access . My Favourite Sports There are many beautiful clothes , dance movements in the film . Please do n't hesitate to correct my English . When the earthquake happened , he was in a mansion . I do n't understand it myself ^ ^ ; This season , a lot of colleges held school festivals . In my college , I sold Adobo . It 's a Filipino food . The goods were from developing countries . my first diary I 'm studying English every day . It 's because I 'll go to Toronto in Canada in April on a working holiday ! Eventually , I 'd like to get an interpreter license . But now , I 'm not good at English . Today , I tried to install EVERNOTE on my PC . It seems convenient for me . I definitely recomend this book to every child , but if it happened that some adult had not read it they should read this one . I got up pretty early this morning . Although nobody was walking along the dark street , I enjoyed walking briskly for about 30 minutes . Looking forward to the future , I can see this is going to be something I have n't fully grasped . I got the feeling that every skaters performed very well and they showed their high techniques under all that pressures , many expectations . Mao Asada , the 19 year old captured the audience by completing a triple Axel successfully . I like her performance in the short program . I spend everyday just attending classes , doing homeworkand hanging out with my friends on holidays . Even by doing so , it might be difficult to attain somethig special , but what is important is to try to have an awareness of issues and start a volunteering Barcelona was a very exciting city for me . Last weekend , I went to watch the rugby games . Thank you for reading my journal In the afternoon we played a difficult game . Oh it was crazy , I could not understand everything that the teacher said about the questions and the answer was also difficult but it was interesting . Recently , an accident happened . Japanese famous ex - F1 driver Katayama Ukyou climbed the mountain while training , for he has been planning to climb the highest mountain in the Antarctic ( south pole continent ) . They camped at the middle hight and a powerfful gust puffed off their tents . He said at the interview that he will withdraw for at least one year . The public viewing is an event where you cheer for the team through a huge television screen with a crowd . It was a good game for Japan , but I think that there was a substantial difference between Japan and the Netherlands . Today , I was required to go to school puntually and behave myself well . I do n't konw why we 're supposed to take classes in such a marvelous summer vacation , which should have been full of joy , laughter , and merriment . It seems that everything in my life just enveloped in terrible atmosphere . although it sounds a little pessimistic and overstated , what I really want to say is learning is a lifetime and happy activity rather than pushing us to the limit with our mood depressed . So I suppose we should cut down on the time we spend at desk . Improving our knowledge by practicing it instead of talk about it thoretically is the most significant , positive , and effective in our life , in my opinion . Today 's menu is omurice ! I should be more optimistic . Japanese food is popular in the Europe , US and China those days . And also I push the wrong buttons on the keyboard , even when I write in Italian , my native langueage xD uh , it 's not exatly right xD but I 'm trying , but I 'm a self - taught girl ( ok , I think this expression is incorrect ) and I 'm actually still at the ' HI , MY NAME IS ELENA ' - things like that . Hmmm . . . I went to watch baseball with my friend a the ballpark . A ballpark that has chicken and beer is like a paradise to me . I think meeting is a good opportunity to grow by myself , so I must make good use of this meeting for my growth . It 's summer in Japan , so it 's very hot and humid . I went to a cell phone shop today because I lost the one I had before in Australia . I 'm looking forward to seeing my friends . The College English Test 's listening comprehension is difficult , but this is not the worst . The dentist said it is not serious but I should brush my teeth in the morning and at night and seldom eat something acidic or spicy . My roommate Fengyuan Zhu or ZHU Fengyuan have gone to Bejing . Tomorrow is my last workday , because I told my boss I would be resigning from the job . So I sometimes have a chance to talk to customers in English , and translate documents from English to Japanese . I think it is good practice for improving my English , but I ca n't tolerate my boss 's arrogance . After finishing work tomorrow , I want to try to get a new job ! Then my English teacher said to me . `` Please call your roommate and tell her do n't lose this test . `` As soon as my English teacher finished talking , I got my telephone . The color is good , but my bangs are too short ! is a necessary class in our school . Next , our school life will be happier . classes are necessary because of the reasons stated above . If you understand the humor , you could be from Osaka . I know that I would n't have known how to read words , how to count the numbers and I would n't even have heard about the internet if I were in a severe poverty with unenlightened parents who are dying because of a lack of food . If I were alive around my age luckily , my life would have been beared hearted towards the indiscriminate world . I believe that people dominate environments , but at the same time , I also believe in the fact that environments can change people . The survey of that most people in Africa live with less than a dollar proves it too . I am going to bring some gifts for her , do you have any recommendations ? In spite of this situation , I 'm spending the day as usual . Incidentally , I 'm going to watch hockey for the second time in a rowsinceI 'll be watching sledge hockey at the Paralympics tomorrow . Yet , the frequent descent of the bears caused some serious problems such as causing some casualties . I really want to do lots of valuable things in the future , so I may have to do regular exercise for it . But , I enjoy the festival ` s atmosphere . It is so convenient for me . I already watched `` Pursuit of happiness `` and No matter what , I feel warm and comfortable . I wo n't sleep ! ! I 'm also learning Portuguese . They taught me a little Portogeuse when I showed interest in Brazil . Today I have decided to visit Brazil in 2016 because Olympic 2016 will be held held in Brazil . He is only 28 years old , but is at risk for hypertension and obesity . When I use English very often , I become better at speaking . I am worried . I received private request to talk . `` If someone does n't know the history , he must see this history personally . `` About 4 months have passed since I came to Aus . For this week I am staying with another host family because my host family are in Bali for 2 weeks . It 's used to explain hierarchical organizations that separate software developers from end users . But we have never forgotten each other . Kameta is from Kame , which means tortoise . Japanese sometimes name their pets from their species . She has shortened her hair . I watched a movie yesterday . It was my first time to go to the Tokyo Dome . You can enjoy studying and learn some slang and daily conversation which you ca n't learn from textbooks or class . If you can get Japanese ones , you can learn Japanese more efficiently by comparing with this site . So , I bought a book called , `` Basic Grammar in Use `` written by Raymond Murphy and published by Cambridge University Press . `` Basic Grammar in Use `` is an American English Grammar Book and `` Essential Grammar in Use `` is a British English Grammar Book . I appreciate this site ! Recently many people have their own blogs and some of them are open to everyone to communicate with each other ; just imagine it 's like a kind of class room or something . I hope they will find an awesome drummer , because I like the band because of their drums . There were some students who tried to remember , and then four of five students were given the gift . I really like to sing this song when I watch the film with titled `` THE LORD OF STUDY `` made in Korea . the Japanese lived during the Edo era . Do your country 's people know where Korea is ? Terrible ! ! ! ! ! I have various memories . . . . I 've read twelve books by Agatha Christie so far . We are going to have a gyoza party tonight . I 'm gon na cook gyoza for 6 people . So she bought me clothes and a pair of shoes . Afterward we went to get coffee and we ate a big cake . When his father got ill and was dying , he called his son to his bedside and said against his will , `` I 'll say goodbye to the present life very soon . 3 days ago I took a math test , today philosophy , monday I 'll have history , the day after English , then physics and then science and then physics AGAIN ! I 'll try to write some answers here to check my horrible grammar < < ' ' ' Maybe because of our new roommate , or maybe not . It is good for me to make a new habit , meet some new friends through here , create some ideas . . . I am trying to create something new . I 'm working for a bank now and it is okay . It is a system whereby salary and job position rise in accordance with age and length of service . For example , in a traditional Japanese company , things like letting a young person make a big deal almost never happens , no matter how brilliant he / she is . 20 minutes later I had to transfer to line number 3 . During my teens , I always listened to their albums . Today , I bought a magazine in a convenience store that was on my way home . I think fashion is used to show up my character . I do n't know much about that student . ( The only thing I know is that she is one year younger than me . ) This company holds a composition competition . ( Normally it 's 1800 yen ) ( $ 1 = 90 yen ) I went to see `` Inglorious Bastards `` today . What will happen in the future ? I look forward to it . because some of my friends can not speak Chinese very well I also started to watch foreign films I thought it was weird because there is priority among the issue that are reported . That is to say , I do n't think it is appropriate to report all these issues about cheating . Similarly in Japan , TV and news paper do n't tell the really important news and avoid the topics that threatens the power . movies , novels , and fairy tales talk about good triumphing over evil . I 'm Japanese , so I support Japan . I wo n't return to face the difficulty , but these days , my mood is so down , I do n't have a reason . One of my cats loves to sleep near my PC . It is so amazing . I recommend it ! Thank you for reading my diary ! The job is very interesting and unique . I want to study design in a foreign country in the future . For example , good restaurants , beautiful sightseeing places and so on ! Of the Japanese artists , I like Shiina Ringo ( toukyoujihen ) , Bump of Chicken , and Beat Crusaders . If you get sad , whose songs would you recommend to me when I get sad ? When I 'm stuck in my relationship problems , Britny Spears songs make me happy ! ! ! But I will be a supporter of Arsenal from now on . However , the Japanese parties are defferent from the European ones . After I arrived in Narita airport , I sent some of my baggage by delivery service . They are older than me by 9 years and they are married . Ummm , it 's interesting . When I arrived at the park , I saw the monkey . Since I wanted to take some pictures of the monkey , I touched the little monkey 's head as quickly as the monkey back head and bite me arm . Today , in English class , we thought of why people attend college or universities . In my opinion - increasing demand of human resources with specific knowledge - if we would like to succeed in our career , we should be well - rounded people who have a practical and expertise background . They must be required to submit a graduation thesis when they start job hunting . I knew it after coming back from NZ , I really prefer living in country other than Japan . . I met some students who went back to their country after Voluntary Service Overseas . It 's a voluntary service to teach science with English to African middle school students . ) `` I called the center , They told me So , today , I went to the center for a physical examination . So , English is essential for me to communicate with them . I 'm afraid of mistake . I discovered that the cushion of the seat fell in . Then , I remembered that the foreigner was seated alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speak English . Because the cushion of my seat is so bad `` I can fix Korean entries . There are some many analysis tools . I am a single working mother . So , to avoid the feeling of loneliness , I am getting started studying English ! I realize that many people study other languages hard as I correct and write journal entries in ' Lang - 8 ' . Let 's start by studying English and Ehinese ! im not Japanese ! ! Although I 'd tried to make a good first impression it all collapsed in a second . I carried him in my arms and looked around to find his master . People write New Year 's cards called `` nengajou `` in Japan . Nengajou is a kind of unique card I have finished writing nengajou today . It 's fun to get nengajou from my friends and former teachers . The level of my English became better , but its just when I am talking with people who are not from UK or USA . The seniors sometimes link daily things to technical terms . ( I know ! ) The wing was elaborate and delicate so it seemed there was no strap on her shoulder , and it looked real . Following her downstairs , I was pretty sure that she was wearing platform shoes with high transparent soles , because she looked like she was floating several centimeters high above the ground . I found ' ' osechi ' ' , which is a Japanese typical dish , being sold in a convenience store . These days , I feel unhappy ! So she and her husband have to fix a lot of things like the ceiling , wall and floor . What a coincidence ! ! At first , I thought it was just an evacuation training exercise but I soon found it was n't . I smelled smoke as it filled up the building and saw dark grey smoke rising from the backside of our building from the window near reception . Coincidentally , this was the last day of one of our classmates who came from Sweden . I was tired , because there are always so many people in ikebukuro . She 's so brave to try to break down the barriers in the pursuit of love even breaking the rule set by god . Recently , I 've been muscle training . Today , I went to Shizuoka airport by bicycle . If you kill someone , you will become a murderer regardless of wether you are in lawful society or not . However , if you kill someone in a war , it is likely that you would become a hero as you kill more . I just want to say hello . It 's my first day using this epoch - making service , which my ex colleague recommended this Sunday . I used to work for one of the translation / interpreting service agencies in Tokyo as a sales representative , and heard many of our Japanese clients wanted the service called `` Check by Native , `` especially in cases where they had to present something very important in front of their clients , using memos ( ppt . ) which they wrote in English . Like in the first case where you just want to know the `` facts , `` often seen in daily interaction in business , it does n't matter whether a native or non native English speaker wrote the passage . But in other cases like in a restaurant , `` feeling `` has much to do with your action . It 's interesting that the toughest subject for me is writing , which is totally different from what the teacher lead us to believe . I tried to find the answer to that sentence for a long time . The first answer is `` was `` and the last answer I do n't know because it is difficult for me to understand and also I am too lazy to read the book . One thing was very unbelievable . During the two days of competitions , the cheer leading squads performances of each cllege ( Such as China , a university is make up of many colleges ) attracted us the most . It was also wonderful that some college girls dressed in bikini ! Because some colleges had professional athletes , our college did n't get one any gold medal but just only a few of copper medals . But it does n't matter , we all enjoyed the spirit of striving ! Therefore , I believe that we need artificial sweeteners as a substitute of sugar . But I was not able to let my fingers move on the piano keyboards well . then my friend , ( she is japanese , of course . ) we went to wp to gather with my cjs friends ! I 'm physically getting weak . Now , I 'm drinking a lot of sport drinks such as Gatorade . I heard that the foreign companies ' turnover is big . I have attended someone 's farewell party every weeks in September . I am going to write this for tomorrow 's exam . Second , I often see people smiling despite their difficulties . She fornicated with a friend of mine who came out of the closet , so you can say that was adultery and infidelity . She got groped ( felt up ) on the train , which made her androphobic . . . I took a nap for fifteen minutes before leaving home for my part - time job . She doesn ' t have confidence about English , but she knows many verbs and conjunctions . To my surprise , there were no stories nor paragraphs on her textbook but conjunctions and exercises . Thank you for your cooperation . It was owned by chicken egg farmers . It can match with everything so I do n't think it has a character of its own . she ` s left only I stay here I ` m lonely but I don ` t know what do I do But if you finish your plate of food , the amount of vegetables and fruits you have eaten will be huge `` Sometimes I can not understand you . Amusement park has disappeared . That park resembles the Teletubbies hill . so I hope that I will be writing one correct sentence . I took my youngest son to the hospital because he had a fever for 5 days . I went shopping inYuraucho last Saturday despite inclement ( bad ? ) weather . I was thinking my budget for them would be within ten thousand yen . After that I lost my confidence in speaking English . I hope my English speech skills will be great like an American ! At 11 : 00 , I always get out to eat , because I 'm very foolish . I do n't know how to cook ! Then I searched on the Internet , and I found some information that said the strings of a guitar need to be replaced every three months . audience : There were many people in the audience at the concert so the musician was nervous . My hobby is watching dramas and collecting lots of hilarious . jokes . If you know any funny jokes , please tell me ! ! I 'm a new member , and I would like to improve my writing skills . I plan on taking the Ielts exam , and I want to get 5 . 5 to enter the college . I really feel lost and confused , because I do n't know how to improve my writing skills . I know that they say practice and try to write and to show it to someone who is fluent in English Unfortunately , these people are not immediately available to me . For a few minutes , I was browsing the internet , and I found your website . I hope I find what I 'm looking for . For example , the topic was `` How do movies or television influence people 's behavior ? In his correction , he used the sentence `` As can easily be seen , watching a movie and learning about worldwide issues influenced me to make a donation . `` At the same time as this party , the ' LADY GAGA ' concert was held at this stadium ! ! His car skidded and overturned . Is it wrong if I say `` Let 's get started `` , omitting the `` it `` ? . If it were not Japan , the superior would be sued . When I was a student , I spent a lot of money on music . It said there is a still caste ( ? ) system in certain areas in India . A young woman was killed by her mother because she was in love with a man who has a lower caste than hers . This sounds pretty much ridiculous ( please stop putting - between your words . ) and unacceptable in this society . I want to speak more English ! ! It looks very futuristic Okinawa was warmer than Tokyo , because of its location . This time , the airplane was delayed by 2 hours due to maintenance . It 's on the way to my home town . The first thing we did when we arrived to the city was going to the graveyard , to pray for my grandpa 's brothers who already died . You could realize at first sight the city was colonized by Slavic countries by the names in the graves : Mostowski , Olosz ( my family 's name ) , There is a wide street near - `` Kutuzovskiy prospekt `` - but trucks that deliver goods are forbidden there because it is a government street . I have n't finished my bachelor 's degree yet like normal people around my age . But there , we study American English and we have few oportunities to hear a British accent . My British friend recommended me theBBC 's web site to study British English . it is my first diary written in English . I hope I can use this place to enhance my English ability . Especially my writing . I love Caomima , because they are very brave , they are able to speak the unspeakable about darkness in our society . I will write my way to utilize this web site . I had many parties ( eating jumbo parfaits , smorgasbords , and so on ) and often eat something around midnight . My family won the contest . Because it makes me think about my dog . Today I do n't have any plans . . . ( some games in arcades disappear ) My friend `` aquadee `` has pain , too . I pray that God heals the both of usr as soon as possible . So she and I headed for Starbucks . Tonight , I will watch the Japan vs Thailand & nbsp ; volleyball game . The last sentence I want to say is : `` Correct my entry , please ! Having been told about the website for quite a long time , I could not make a resolution to start writing until now . Yesterday was an incredible day . daily life while I 'm here in Japan , I have little chance to use English . I am glad to come on here and get to know this website which may help me to improve my English / Japanese . On April 1st , April fool 's Day , my country manager was layed off . I need to try my best to build our relationship and get close him . Now , I pronounce all words like in French . I wrote about myself here just because I wanted to post with correct English on my profile space . If you are a boy , It is very important that you know you have great potential to succeed . It is important for me to find my favorite things in the daily life . I Thank her for telling me to study English . and I 'm interested in French too when can I use this sentence in conversation ? In the middle of it , I felt breathless and flush . . . hello guys from japan , and my first diary about japanese disaster thank _ you : > Chinese people might be struggling If you see me crying in the corner , do n't laugh at me , please give me your sincere wishes and energy . I also thinking that if he is curious in our life , you can enjoy being together with him . You will be proud with yourself `` I am also happy if someone like me because of who I am . Do you like egg & rice ? He 's so cute that I still ca n't resist and get sentimental . because my husband is in the UK on a business trip . There was a cute painting drawn in sugar on the top . I will wait for my next chance . As for me , I promise to help in studying English . And of course I will try to provide a funny and interesting meeting in Nevskiy prospect . = ) The severe lack of housing for students is reflected by the numberof students in dorm over the total number of students . Workers have also encountered the same situation . Recently , one of the goverment spokesmen said on the public media `` [ we ] will move the metropolitan universities to the suburbs `` . They could also make wrong sentences . And I find that even after several Chinese have correctedsomeone 's journal , there are still some errors . It is easy - - easier than any other foreign language . twilght is my favorite , now ! ~ vampire > _ < I have been watching this channel for 3 months after I planned to practice my listening . Not only does it have funny programs like Scrubs , Friends , Simpsons , etc , but also it 's very convenient for me . Whenever I want to watch it , I can . Sometime it 's hard to believe that someone on Earth can really be that stupid , but that 's what makes it so attractive that I somehow ca n't help but watch it everyday . Today , I taught 6 children English , Japanese , and geography . I used to have a fluent accent , a decent vocabulary and a good understanding of the spoken language too . The disadvantages are you really have no say in your environment , hindsight is 20 / 20 , and even if you have a good plan you do n't always have the resources to execute it , while the future seems so far off and your parents seem so old you think you have a lot of time . She has become beautiful . I have only one brother so it 's a bit of an embarrassing fact for me to have a sister . In middle school , my most cherished time , I could do everything with my friends , say anything with my friends , and I didn ` t feel bored on weekends . Love is n't everything ; our family , our study , our career , our friends , and so on are also necessary . I go to the library everyday because I have many times . My favorite thing is to read a biography . I borrowed a Walt Disney 's biography today . Recently , I have been busy job - hunting and attending class in university . I 'm a student who lives in Taiwan and I am studying in University . I 'm trying to learn English from them , but it does not help very much . And needless to say , I 'll visit The Tuol Sleng Genocide Museum in Cambodia , which shows the savagery of Pol Pot 's regime . I have not had enough break time at my job these days . I have studied English only by listening to audio lessons on the way home and on the way to work . I thought , these days a lot of people study Chinese . Hello , I am Japanese and I live in Japan . Speaking English is one of a very difficult thing . It is difficult for me distinguish between [ L ] and [ R ] . he was always in a good mood and always had something positive to say . when someone would ask him how he was doing , he would reply , `` if I were any better , I would be twins ! `` That 's sounds a little bit weird for foreigners being asked for their age . It is kind of taboo especially for westeners . The big event , The Winter Olympics starts today ! ! I want to write things but english is very difficult for me . University is said ' Hesitation term of life ' . The problem about that is that do n't how how to earn ( money ? ) in those places . I may not be able to say anymore , though foreigners say Ghibli is not so much fun . I know the insurance fee is $ 12 per package . I ordered 3 DVDs . Strawberry was 100 yen for 20 pieces or so . A pickled green leaf vegetable was 50 yen . It is a grated radish . I ate Daikon Oroshi and pickled vegetables with rice for lunch . I hope this marketing style ( local product for local people ) should be more encouraged for both consumers and farmers . They had tried to keep in touch but it was impossible . Unfortunately , she just called him to say that she was leaving him , and to let him forget her . Please correct it I am fond of foreign cultures and interested in people who are from all over the world . I was a mechanical technician in the past 3 years . I can not translate the sentence below . She asked , `` Son , are you okay ? `` I am not a mysophobic , but I can not stand dirty floors . Give reasons for your answer and include any relevant examples from your own knowledge or experience . Even if they did not have any music class at school , they would listen to their favourite singers and groups . They can deepen their bonds through other school events such as cultural festivals . * * That is why students should learn more practical and useful subjects first which will help them attain their goals . * * * * In my own opinion , although music has many advantages of relaxing and making people happy , we can live without using it as a job . Therefore , more significant and valuable subjects should be taught with a priority . November 23rd is Labor Thanksgiving Day in Japan . Labor Thanksgiving Day ! ? When I passed by ' The Rogers Center ' , I realized that there was a flyer posted on the wall for `` Toy Story 3 On Ice `` , a ticket booth was nearby , so I stopped at the booth to find out the details . When I asked the clerk how much the tickets were , and at what time the show would start , she replied that the cheapest ticket was 15 dollars and the show would open at 7 . So then , I bought a ticket . My favourite scene with Barbie and Ken was also fun . During the interval , Mickey , Minnie , Goofy and Donald Duck warmed us up ! And ( their ) pizza is so delicious . . . : ) We will stay for one night at a local inn in Toba , Mie Prefecture , next to Aichi where I live . Busy day which I did n't expect . . . . But , if it snows , there are many troubles in everyday life . For example , I have to be careful when driving a car , and snow prevents the traffic system from working normally . I hope I can practice using more English here . I deposited in my best friends Sung - hwan & Krissy 's account because of my loan ? @ _ @ ; ; then I ate a Korean noodle with Krissy at lunch . In the early morning , I got up because today I had to take my daughter to meet her first teachers . I dont understand them . Doing something at first is very exciting as you know . I 'm a little bit nervous and excited . because today is a rainy day . can you help me ? For example , the people with pets generally have lower blood pressure and lower rate of depression than those who do n't own pets . 75 % of families who acquired pets reported an increase in the level of happiness and enjoyment in the homes . And Start to exercise ! It is a long - running doll , much like a Barbie . I used to play with Lika - chan when I was a child . But we could n't find any water . Many people are out buying water after hearing that Tokyo Water Official detected something bad in the city water a few days ago because of the Fukushima nuclear power plant . But I ca n't take the medicine for a cold . Because I have already taken medicine for my eyes , However , nobody helps me even if I worry about this situation . Shop assistants in Japan say `` I ra ssha I mase `` . It 's sort of like saying `` Welcome . `` The last time I wrote something in some kind of journal was a really long time ago and I stopped because of my ultimate laziness . Lask week , our school did / carried out a survey about / on whether it is good to make friends on the Internet . Firstly , some students believe it is easy to get on well with net friends . Secondly , we can take part in interesting activities with net friends . Not just for the short term but also for the long term simultaneously . When October comes , I always think about how I fill the gap between the goal I defined last year and the actual outcome . My cousin bought a chicken for my dogs . . Today 's dinner was chicken . One learner wanted to transfer to other jobs using his billingal skills . I 'm not an expert but I tried to do my best for him . It was a question which asked you to chose the correct conjunction among some choices . He had to put one additive conjunction on the sentences . It 's a traditional way to celebrate new year 's in Korea . Although It was the coldest day , I 'd been waiting an hour to see that But I could n't because it is unusually freezing outside . Especially a boy called Haidar . He is very clever , because he knows a lot of Chinese words , although most of them are bad words . But if I failed the exam I can not go there . . . It is popular among young Japanese girls . At that time , all high school teachers told us , `` Keep studying hard for one year , after entering a good university , your bright and easy days will come . `` The thing is , this area does not follow the Traditional Chinese culture and people here speak Cantonese , a language I ca n't understand . My colleague asked me why I want to study abroad today , and , frankly speaking , I am really not sure why I want to do it . A : The weather is raining outside , remember to `` take `` an umbrella with you . B : The weather is raining outside , remember to `` bring `` an umbrella with you . Some college students held a birthday party for babies born in December . But a baby came on the stage while they were playing the show , and it interrupted a student who was playing music again and again . So I stayed in my companies dormitory over 2 days . Teachers belonging to ALC taught us English conversation . I watched a TV program called , `` Sekaiichi Uketai Jyugyo . `` In this program , they said that crocodile tears means untrue tears . I noticed this is happening for rest of the world . One of my friends , who is a foreigner told me this web site . I ordered an iPad2 at the Apple online store almost a month ago . I think my reading comprehension needs to improve , and it 's difficult for me to get the main idea of a paragraph . For me , too many practices before the language test are not helpful ! Because when there are some questions I ca n't get the answer , I will become nervous and anxious , these emotions only made me perform badly when testing . Hope , I wo n't be asked the questions which might be too difficult for me . But I also lack English language skills . First , I went shopping at UNIQLO . They 're very warm clothes . They 're too expensive . ( ; _ ; ) The status of my application had been changed to `` Pending Contract `` after being stuck `` in Review `` status for a week . I participated in the bowling event held by my English school last night . It had been a long time since I have done any bowling , so I wondered if I would do well or not at first , but my team ( my friend and me ) won third place ! ! Kao Corporation is one of the most famous chemical and cosmetics companies in Japan where their products are used almost in every house ( in Japan ) . Although I can study and I have many ways to learn it even in Japan , When I visited Philippines last month to study English for 2 months , I might as well use English to communicate with them . I stayed there almost for an hour . I considered whether I should get one of them or not . But the most successful of them all has always been capitalism . , people are scared to take them . So the real cause of the spread of drugs , especially among young people , is the misconception about marijuana . Many gangsta rappers rap about smoking weed . . . I watched 8 mile ( about half of Eminem 's life ) 3 years ago , and the movie depicted people smoking weed as a matter of fact ! ! So , as a conclusion , I want to sate that not only must the government make the already existing laws tougher , but also censor the media , which have a tremendous influence , especially on young people . First , I like this website because everyone is kind enough to correct my poor writing , ( though , my dictionary is always beside me , just in case . ) Usually those who correct my diary leave messages for me . That is what I meant yesterday . I received two packages `` seeing is believing `` ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ It is a little dificult for me , but I always enjoy discussion with my teacher in English . Since I had a day off this year , I went skating with friends . Was it ? I will be satisfied with it as only space for sleeping `` What she recommended is managed by her office . I do n't know if I should be studying the Japanese grammar at the same time . . . I 've only had a little food but I do n't feel hungry . Sometimes I am not hungry but I want to eat . . . . I 'm gon na read the book entitled , NY Institute of Photography . OK buddy , I 'm gon na learn more slang later , I hope RAVI will be mad at me . Shame on you ! LOL I will be careful about that from now on . Though I speak say travel is my hobby , I have n't actually gone to many countries . When I was on the campus alone , maybe I was seen as a strange person by many students because of my appearance . The first time I tasted it I thought it was too sweet . Two chocolate buscuits sandwich a hard chocolate inside and again , the biscuits are coated with chocolate . The first Tim Tam I tried had orange tasting chocolate inside . Bite the head and the bottom off the biscuit . I am going to exercise every day . To teach Korean to them is not easy but very exciting to me . July 7th is a special day for us Chinese people because there was a romantic story that happened on this day a long time ago . A Goddess did n't want to see them together , so she placed them into two stars with her magic . One day , lots of magpies flew together from all directions to formed a bridge in the sky . The pair of lovers could then meet again by the magpie - bridge across the Milky Way . missing him made me not interested in my job , my sale performance was not so good , my boss was very angry with me . I like this song 's melody and lyrics . However it is difficult for me to sing to the guitar , and to pronounce English lyrics . But I brought some bread to eat with my friends , The table is very dirty . < buy a dictionary please Have a nice weekend . I am majoring in English literature and I feel it 's a burden . Have n't been here for a long time Have n't been here for several days . I feel so frightened / scared . Sometimes I see other ( people 's ) excellent articles and I just admire them . In these times , I sometimes think about the reason why I continue to work . I feel very happy if my colleagues and friends are envious of my promotion . I 'm really glad if my wife or parents give me some words such as ' congratulations ! A public servant must serve our nation and people ! We would like to know if there are no problems for us to act as as the sole distributor ? Well , I 'm really interested : Do you , English speakers , use all your tenses which we ( foreigners ) are studying at schools or universities ? Recently we learnt about the future tense and there are so many kinds of expressing it , like future continuous , future perfect continuous and future perfect simple . and in the afternoon , in the Classical Literature class , I watched an animation called Bleach , in which my favourite actor is cast . He was the most famous pro - wrestler in Japan . He was stronger than any other wrestler so he was the strongest , in first or second place . He was the president of his pro - wrestling company called Noah , It was big news in the sports newspaper in the morning , so he was on the top page in the sports newspaper . Other sports newspaper 's top page was also him . He often appeared on TV programs so people will be sad for him , even those who do n't like pro - wrestling or watch pro - wrestling . His cause of death was being hit on the back of his head because he took a backdrop from his oponnent . Two men 's wrestlers have died in the ring since the year 1953 . She refused to watch the Titanic movie . Shiba is a Japanese breed of dog . They are a medium - sized and very clever . It 's her first time going to a foreign country alone . because I thought I could get good score like 700 . mn - - - - - - can I excuse this result ? lol . and it felt troublesome to read them again . I spend free time absently . I think I am lazy . I have n't write anything . Today , I received the decision for studying abroad . However , studying English while also studying chemistry was difficult , so I felt relieved a little . Hi , thank you for your reply . Luckily , I am not . Studying English and Japanese The building in the Heian - jingu shrine is a replica of the imperial palace in Kyoto city in the 8th century . After shopping , we ate `` Shabushabu `` . It is a meal where many vegetables and thin slices of beef are dipped into boiling water . The `` Shabushabu `` restaurant which we went to seems to be popular with many foreigners . There were many foreign visitors in the restaurant . Second , I wish to speak engish very well . Third , I will help members that will learn the Korean language . Because of these reason , I registered for this website . my objection for in internship Oh my goodness help me ! By the way , his name is `` Free - Za `` . He appeared in Dragon Ball Z , which is a famous animation in Japan . to keep competitive in the intensive race . I had made some friends who are Japanese . He wanted to have his own farm / poultry farming and really healthy poultry . I 've started reading the manga One peace , which is written in English . Sometimes decisions are made regardless of our opinion , and we have to follow them anyway . Thank you for coming and visiting us at Onoda - shi , Yamaguchi on January 21 . A mother said that your picture book reading was so wonderful ! ! I wanted to enter it but I was afraid that the price might not be friendly for my wallet . And I learned about life through movies . Sometimes , when I am bored , movies help me to spend time . Please recommend interesting movies . A strong typhoon is approaching the main island of Japan . The weather forecast warns that there will be strong winds and heavy rain . Poverty in Vietnam will increase because of soaring inflation over the last time , thus the Vietnamese goverment has to continue implementing measures to curb inflation , said Mr John Hendra , the chief executive of the United Nations Agency in Hanoi However , there are still areas in poverty that are difficul to address , particularly in ethnic minorities and he called on the goverment to adopt a new approach But it has been a tough month because I had to settle the accounts for the fiscal year of 2009 . I 'm in charge of the accounts of a production affliate company in Kyusyu . The first time I met him , he talked about `` SD Gundam `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand everything he is talking about . After leaving from Tokyo , he will go to Shizuoka to view a big Gundam model . Without Anna , I can not get my English better . Anyway , I have to mention that I leave on August 26 to US . I want to say thank you for everyone who taught me English so far . Especially , writing is mush better than before even though I still have a lot of mistakes which I ca n't notice until people say . However , he does n't know that she recorded every song he sang each day . Compared to Asian culture , somethings were similar but somethings were completely different . I want to get a driver 's licence . Watching the lower classmates take part in it . I suppose he is in pain because he has been alone for a very long period and has to deal with the feeling of being the last one of his race . I ca n't forget the peculiar taste of ttomyangkkunh of thailand . I will write in my diary continually . It is a service is similar to Lang - 8 but this can help us exchange languages with foreign friends and practice the language you are studying . In addition , dormitories are safe . These days , I 'm very tired and sad because I have to study hard for my University entrance exam . I love listening to English music , but I often do n't know what they are singing about . The story is happened in some high school . the biology teacher experimented on one girl named Hyeon - ju . She bit the teacher . And they bit others . And Hyeon - ju bit the ambulance driver and paramedics . You need to be independent . I have not felt aftershocks since last Friday . In Tokyo , there are aftershocks everyday . I hope that many people will read my diary and correct my sentences . please correct the sentences , and be my friend ! I passed all my exams with excellent scores , and I am very happy ! I want to go to Moscow to the theatre . Sorry for my bad English . They were standard questions , like self - introduction , your personality , why did you select this major ? And now look at my essay : Games are undoubtfully important for the health and physical skills of children . But unfortunately , today we can see that our favorite yard games are not so popular among kids . I am not an athletic fanatic , but at least they have to feel curious and to be interested in Open air games develop physical skills , make children stronger and faster and improve their health . I drink a few cups of coffee everyday . I can not rest because I have been so busy . I will go in for an English recitation contest at university tomorrow . It consists of fifteen pages and takes eight minutes to read . I hope I will be to able to be calm during my turn . I read a book written by an American professor in Japanese . I was not the presentation today , which meant all I had to do was just listen intently . Besides , everyone of us has to participate in preparing for the procedure . This ceremony derived from the event that the prince of Nintoku emperor sent a gift to his fiancee . I may discontinue again , but I 'm gon na continue learning ! Even though I am Chinese , The reason why is because graverobbers destroyed tumuli ( plural of tumulus ) lead to many mummies being dismembered and moved out from coffins , so empty coffins were recycled and used again . Apart from people 's mummies , it displays / shows animals 's mummies , which is a cat , eagle , crocodile , and mini snake . Honney - ginger means `` bottled ginger with honey `` . This year my friends and I have decided to attend seminars by ourselves . Since we have lots of free time we waste it without doing anything in college . And I can do one of my hobbies with friends . That is , learning new languages . Yesterday a big ship came to Kobe . I guided foreign travelers yesterday . However , I was n't nervous and could guide them after all . I will go to a university to have an interview tomorrow . I have a question about a column . I never know how to play the piano or guitar like others , or do as well in French or Japanese . As a result , I found this website and enjoyed correcting articles written by some foreigners because I am good at it and it makes me feel good no matter they thank me or not . Eid al - Fitr is an event usually staged by the religious community , which is a group of people who practice the same religion and it is one of the two most important Islamic celebrations . Eid al - Fitr happens on the first day of Shawal month , which follows Ramadan and we celebrate because we have completed one month of fasting . The second most important Islamic festival is Eid al - Fitr and it is organized by the local community . He says : yeah , really cute ! Another example , you find yourself alone with your dad 's friend . I broke up with my boyfriend . The principal speaker asked us a question at the very moment the class began : `` Have you determined to persevere to prepare for the 2011 Postgraduate Qualifying Examination ? `` Then he explained his question , `` To start to prepare is different from to persevere to prepare . `` Everything sold out , but my lower back hurt . The pain was awful and uncomfortable . This afternoom our class will be having a class meeting which will be about electing elite as Party members . I submited an application for Party membership when I entered the university the year before last . For people from outside like me , adapting themselves to the community is little bit difficult . In other words , for someone who is member of the community , it is very comfortable and safety place to live . My favourite team lost ! My favourite team lost ! ! > < My husband told me to call the office for sick leave , but I knew I could n't . My dream is to be a millionaire . I do n't care even if other people say `` You ca n't be a millionaire because you are not rich right now `` . I must be successful because I believe in myself and I try to be a good person . This is a sentence which was written by a native English speaker . I 've wanted to see these shows because my friends always tell me that these shows are very interesting . `` sometimes people need to have a break `` . I can only console myself with this thought . I got up at elevent O ' clock , then had breakfast and lunch . Tomorrow I have English class , so today , Sunday , I am studying very hard . I listen to English a program on my ipod every morning while I 'm on the train going to my work . I do n't have a foreigner friend . They 've studied all subjects like mathematics . Three days from now I have a chance to go to New Zealand . This saturday I went to Shiga as a part of my group activities . Today , I have some classes at my college . Especially I love my pet dog ! On Saturday morning , my friends buy breakfast for me . I heard from my parents that the pollen count is expected to be two to six times higher than average Lately I walk with my dog early morning . When the number of ATPs becomes less than the number of AMPs ( having 1 phosporic acids ) , a hormone called AMPK , which senses the balance between ATPs and AMPs , will be activated . This exposition was devoted to Salvador Dali . I never have seen his painting in the museum until this moment . I knew little about him . I 'm so glad to see that my diary has been changed . I believe in ghosts ! ! My friend has seen ghosts and he has a special ability that he can see ghosts . The drama is really fun ! ! David Byrne is always cool . I 'm studying English in my school . I will keep on trying ! ! ! : - ) The weather is cloudy . But , it 's beautiful . I did n't have any Indian friends in Taiwan All my foreign pals are Japanese . The flavor of curry is so unique . She mixed yogurt , basil , cilantro and chicken together . But the type of rice is different from Taiwan . Every ethnic community has their own character . I 'm worried that drinking too much coffee may be bad for my health . My favorite color is white , so my car is white . because of that , I want a white 4G iPhone . Last Thursday I quit my school . It seems to follow that I decided to buy it . My favorite author . For example , a 32 inch TV , a bus trip , a toaster , etc . Because , I am so busy on business , so I ca n't get straight holidays . Sometimes I make an English sentence for foreigners . I wonder if my writing is correct or not Why do n't they standardize the size of books like Japan ! If you have an opportunity to come to Japan , I recommend that you to go to a `` Yakitori `` restaurant . I also want to learn German because I really love German football and FC Bayern ; - ) this is my first diary . The sun today was so hot that we were all getting faint . Today , when I was about to eat curry rice , I saw the curry soup was sticky . Then , I smelled it and found out that the potatoes went bad . Today , I went to the supermarket named Ralphs near my hotel , and bought sushi . I interested in Fashion , Art , and Music from the 90 's ! And the game featured them will be released this December . I am `` good at `` speak Japanese but I am `` not good at `` speak English . This function is said to be very convenient for people who suffer from hemorrhoids . When I left a restaurant , it stopped raining . . . . I visited Yakushima . Today I met juniors in my university , and tomorrow I volunteer for an elementary school I feel an urge to preserve the wildernesses for the sake of the beautiful planet . I like a crescent moon better than a full moon . I have a sore neck because I leaned my head back and looked up at the crescent moon . I am a software engineer . my boss is coming ! See you later ! He spent almost five years working in Indonesia , my family changed a lot in both a negative and positive way . Honestly , this is an extremely unnecessary incident . Mango has become my favourite fruit since I traveled in the Philippines three years ago . Please help me ! I am going to send E - mail to my friend who an international student today . Do you remember me ? My name is ko - chan . Please correct my sentences . With this new awareness , Lisa got the permission she needed not to worry so much about Jim . She may try to pull him back mentally by asking him guilt - inducing questions such as `` How could you treat me this way ? `` or `` What 's wrong with you ? `` or `` Do n't you realize how much it hurts me when you pull away ? `` HOW A MAN ' S PAST MAY AFFECT HIS INTIMACY CYCLE Deep inside he may be afraid he is unworthy of love . I want to get high score in TOEIC . I 'm waiting for Avril Lavigne now . As it is so amazing , I choose it after taking the 2007th college entrance exams . Recently , I 'm writing a science thesis to participate in a science thesis comptetition . Whatever the outcome , I will do my best and not disappoint you ! ~ I 'm looking forward to it ! Mah - jang culture came from India or China in ancient times , and finally came to Japan in the17th century . He is acomplete beginner , so I can easily earn money from him and his friends . I drew a picture with green and brown crayons yesterday . I have n't used crayons since I graduated from elementary school so I 've forgotten that ' Crayons Are Great ' . I ` m a university student now , and I ` m studying organic chemistry . Because I do n't know how I can begin to learn this unfamiliar language ! As it stands , I am azoospermic . I toasted some bread and then put a lot of cheese on it . I microwaved the cheese bread for a minute and the cheese melted out of the bread onto to the plate . Although , the language I want to learn the most right now is japanese because I really want to go to Japan one day . Because of this I have n't used an internet cable yet . Last week , I could browse and make corrections easily . She was wearing a shocking pink sweatershirt . It is difficult for me . I 'm a software engineer I 'm studying Chinese and English . My goal is to use English for business and to communicate with foreign friends . Go studying English ! I also receive some ^ ^ . I 'm convinced that is the reason because other students played their parts very well . Today , Richard asked us to talk something about the global finacial cricis . yeah , many students in my class can speak fluently english , but no one can say it well , and we just had a three - days holiday , little had found this online , Richard seemed a little angry , but he did n't tell us , just asking us to do it for the next class . I found this statement ( as follows ) in my textbook for studying English . ( optional ) I hope there is no damage from this earthquake . I have been aware that I really need to improve my English skills , such as speaking , writing , reading , and especially listening , because now my listening is not very fantastic . I do n't know how to use this , I am a Chinese girl , but I am in US now . The main characters are Tom and Huck . Now I 've been singing Vanessa 's song `` Come Back to Me `` for 3 hours . ( Maybe my neighbours can hear a little of my voice through the walls . . . . It 's OK . Or is Zac going out with Ashley ? But I have also seen photos where he hits it off with Ashley . Then , we chatted about matters of common interest . After that , we took a special lecture by a Professor from their university . More and more people , especially women , would like to live a life which is full of freedom , and many of them may choose to be single for life , for example . I like walking in the a shady path alone . Ever since opening Taiwanese investment in the Mainland in 1990 , the outflow of the capital has caused an economic crisis in Taiwan . My English cram school teachers are foreigners . I ca n't imagine that I go abroad alone . Mixed feelings again . Firstly I feel happy because of someone who when we first met told me I look like a singer . This Wednesday I had a Chinese speech contest at my school . I 'm not alone , right ? I ca n't speak fluently Cooking lesson My favorite baseball team is the Yomiuri Giants , Cakes made at the cake shop are strange , because the cake shop is a Japanese sweets shop . Just a month has passed since a large earthquake hit Japan ( 3 . 11 ) . So in Japan there are 2 layers of high presure : the Chibetan high pressure and the Pacific high pressure . That 's why I am almost dying . . . I 'm currently a college student at Jiang Xi Normal University , majoring in Business English . Reading books , watching movies , listening to music and collecting pins are my hobbies . I 'm teaching an American friend Chinese as a part - time job . This minute it was raining , but the second minute it 's sunshine . I have been thinking about this question since I decided to take the New And now what I came up with is to make `` kisapedia `` , which is just an explanation of the things I am interested in . That is , writing a personal wikipedia . I want to read English books . But I have no chance to read English books because English books are too expensive . I am writing this diary without looking at the dictionary . Please help me with my diary . I am wondering how much time it will take for me to be able to use English like I used to be ; but , I will do my best , be diligent and be proud of myself . Recently , I really want to go back to Vancouver , the best place in the world , especially in the summer . I hope that one day I will go back there and watch the brilliant fireworks again . It is located in the center of Tokyo , and famous for many big shops of electronical appliances . There are many `` Maid Cafe `` , where girls in costumes of maid serve you with interesting performances . Beside the mantelpiece he was scheming his escape from his home . When I was an elementary school student , I hated writing a diary . ( even though it was homework , I did 't do it ) In addition , a journal will be the most priceless thing for me when I become an old man / grow old . I saw Happy turn , which is a Japanese rice cracker CM . I think it is about the guy who kept eating only McDonald 's Hamburgers and fries . Starbucks Japan announced that they will sell a new instant coffee in April . I hope that the new instant coffee does n't destroy Starbucks 's brand ( OR name ) . I 'm interested in your Japanese class , and hope to join as a tutor . And how many Japanese tutors will be there each day ? Through this class , I want to make American friends , and enjoy talking . Thank you very much for your time . Everyone helped me so I will do my best ^ ^ Even so , we saw lots of beautiful trees ( even they were more than 3000 years old ! ) . Yesterday 's dinner We entered the Izakaya and ordered from the menu . We ordered non alcohol drinks because we both came here by car . There are a lot of people here who decide that they are native English speakers , such as Pakistani , Nigerians , Indians , Ghanaians , South Africans , Irishmen etc . Please , if anybody can make a few comments concerning matters of my introduction , I 'll be very glad to share a lot of interesting stories about the UN , Africa , Western Sahara , Morocco , and I 'll be ready to be a good adviser for those who want to improve ( their ) Russian or start to learn it . Well I am Chinese . Some people on the internet ask me whether or not I am a foreigner . Well , if I do n't know your nationality I ca n't give you an exact answer : ) If you are not Chinese , then to you , well , I am indeed a foreigner ! but actually , Chinese new year has n't come yet , coz we celebrate a lunar new year . My girlfriend and I went to Yilan this Monday to Wednesday . I failed again and again , and I never successfully stood up on the board . I will talk more about the places of Yilan later . The screen was spinning before my eyes , so I totally got disorientated @ _ @ I tried to get myself on track , but then my friends suddenly screamed : ' ' Will , you idiot ! ! ! ! Now I want a motorcycle and am dreaming that I can get a big one and travel around the world . I 'm so looking forward to going there , but I also wonder if I 'd hit it off with Europeans . Goodnight , byebye , see you . When reading Pygmalion , I find that my `` descriptive `` vocabulary is very poor , e . g . about / concerning architecture , or furnishings . I am so curious how some people can speak their second language as proficiently as their mother tongue . The test had grammar questions , close questions , essay writing , and oral questions . I made three friends and had lunch with them at the foodcourt . who can possibly imagine that I can download a 30 gigabyte HD movie file in 15 minutes ! so its very delicious . Open source conference in Tokyo I joined the open source conference yesterday . All the people I met yesterday were gentle , and they taught me the various things about open source on the internet . In my hometown , this rent could give me a 1R which is 3 minutes ' walk from the station and provides comfortable amenities . Prices in convenience stores may be almost the same , but when I go shopping in vegetable stores or the local market , things are as different as in rates ( ? ) . This difference robs me of opportunities to eat fruit ( ^ ^ ; ) ( in Tokyo I rarely have fruit anyway , though ) . When I got home I was hungry and tired , but I liked it . Relaxing day He showed me a lot of postcards . I would n't like to lose interest in swimming , so I must warm my body through exercise before I start ? . Again , I was too lazy to make any compositions . I listened to his songs today and he 's my favourite rapper . I think he 's the most handsome of all rappers lol Hello Everyone ! I read English Books to help children to study . Please help me to fix this document . I 'm going to Asakusaby bicycle for health . Saturday ! ! ( OR - I will be going for a drink with my former high school teacher the day after tomorrow . ) I have n't gone drinking with anyone this much older than me without somebody else , so I feel a little tension . Are the students able to understand English grammar ? I thought that I was definitely not good at it . In other words , I 've totally screwed up . The white and well ripen corn ( ) out of the hus ( k ) makes me happy and I anticipate how ( ) it will taste ( ) . So I 'm very happy because hiking is my favorite hobby . But I am a little worried for the rainy season . I will organize an English Club for my company and also host it next month . Our aim / goal is to let the English learners around us get together and open their mouths to practise their oral English . For these reasons , I thnk education that aims at development of individual talent rather than learning by rote is needed . My high school give us many chances to go other countries . `` Everything was over - produced or just junk . It is so splendid . Because , we were able to eat fresh fish , shrimp , salad , etc . I do n't want to let he be unhappy . As soon as I arrived I noticed there were a lot of foreigners , but I did n't talk with anyone . I tend to get nervous when I have to speak in English because I have no confidence with my spoken English fluency . One of my elder sister 's family came back from Kagoshima to live with our parents seven years ago . Since then , my sister , nephew and niece have lived with them . I think this movie is a very interesting story . Finally , we made an appointment to see him in his home town , Bergium . Cloudy , rainy and sunny , Tuesday , 28 , April , 2009 Sweet Moment - Translation # 03 I want to learn child - nurturing methods used in the US , and to do the work that is related to the child 's future . It is maybe an action movie like Independence day or Armageddon . . . . I can study English in various ways on the internet . Take for example EnglishCentral ; I can practice listening and pronunciation on the site . It 's so happy for me because it 's a chance to improve my English skills and I can save money for buying my favorite things . I remembered it was very interesting and wonderful , and most of the pavilions had a long line . I want to go again , although I forgot the name of the restaurant . I feel Christmas is coming , seeing people who have Starbuck 's tumblers with the Chiristmas colors ; red , white or green . In order to attend a kimono auction , you need a license . I will go to Hawaii next summer . Generally , I do n't say much if the atmosphere of a conversation gets tense . However , I will find another way to say sorry for my irascibility . Because I had to teach her math , I do not want to go library . She never thought of anyone else And there is a bad smell around them because they became spoiled ; ( I think a man who threw them away is very stupid and cruel . It 's a little inconvenient , although it 's good for relaxing . Maybe I should live life more slowly . Why do people think days pass by so quickly after forty years of age ? But she felt days past by really fast when she was forty . Usually , the beans are sold with seasoning such as soy sause . So , a little bit of soy sause will spice up the beans . Due to the unique texture and taste , some people are not fond of it . Yeah , at least I 'm alive , and I have a job . It 's similar to `` Mentalist `` in that both protagonists of these two dramas can read someone 's mind with their amazing skills . Would n't it be awesome if we could read someone 's mind like they do ? Well hope I can make lot of friends here and exchange languages ( language correction ? ) with each other . In modern life , I think most people have an image ( icon ) . Maybe the image is ( of ) an economist , a president or a drawer ( artist ) , and so on . These people have an important influence on the admirer . In the first instance , I think that he is a prime singer and dancer . Because there are n't ( many ) people who can reach the attainment like he reached in this world . He often takes much money to help ( needy ) children through social welfare institutions . After school , I have to go to cram school . Now I 'm writing the text of my presentation . But , it 's tightly connected with the previous stories . If you do n't remember the stories , it 's better to watch T1 & T2 before you go to the theatre . It is always nice to write here for I am always so curious to find out who will be my first writing corrector ( or should I say who will be the first one to correct my writing , but no matter who you are , I would like to say `` thank you `` to all those who check my writing , you are the most wonderful people in the world ! You 've got to know the difference between `` given name `` `` family name `` and `` middle name `` . I often mixed them up before , but now all is clear . There is one thing you should always keep in mind : when you fill in a form , please mind your writing . If you use joined - up letters , then it would cause people trouble ( in ) recognizing what you wrote . This weekend I 'm going to the beach with my girlfriend to meet our friends there . Although I have listened to this song somewhere before , I did not know the title and singer until quite recently . My chance to get to know the song was a CM by a company of Instant noodles . I was born in a northern city of China , and I went to college in a north - eastern city . I love snow very much , and the winter in college left a deep impression in me and gave me good memories . It 's so delicious ! Hi , today we are having good sunshine . Last week I went to Hokkaido , which is in the northern part of Japan . . I went skiing there . Since I started to work , I had no chance to go skiing . I have actually witnessed a cab driver bargaining the ride fare with a foreign lady who was extremely tired after daylong shopping with her young kids . I 'm planning a summer camp with the pastors for all church members . The place we will stay is awesome , with little streams from the hills and half of the area is covered with trees , which is wonderful in summer . I 'm looking forward to going there . Are the problems international travellers cause greater than the advantages they bring ? Hence , More and more visitors should have opportunities to travel to other places . It 's a format of program when learning a new programming language . The company that I work at forced me to take a test yesterday . Today is the start of my english study . I went there , at that time , the doctor said to me `` there is a wisdom tooth in your mouth `` Stupid Day and Assertiveness Today , write your incorrect behaviours and write your correct behaviours , and perform the correct behaviours the next day . Recently , I often feel this way . Thank you for reading and correcting my entry . I think politicians should sacrifice themselves , less vested interests . This is what really happens in Japan . good job But his friend did n't come back till the middle of the night , he feel tired after a long journey , so he could n't keep on waiting for his friend . Well , it 's not really `` do nothing `` but studying Japanese . My parents want me to go for an exam of TOEIC and JLPT , then use the advantage of these two languages to get a job . Honestly , I 'm not really good at socializing with people . Stranger makes me nervous . Of course not to mention using the adventage of English or Japanese . . . . . . I have been a lacrosse player ever since I become a university student . Hello . It 's my first time using Lang - 8 please check my sentence . please make this diary sound more natural ~ ~ ~ ^ ^ If it is not for an important thing , I prefer not waiting . First of all , the small cute `` Daphne Odora `` , which is in full bloom from February to March , reminds me of going to cram school in Hiroshima where I stayed at my uncle 's house to go crram school . It 's like delicious , vanilla flavoured chewing gum . On the other hand , I felt an elegant atmosphere . unpleasant , such as strong s cologne , hair pomade , women 's perfume , ( it always smell good alone ) , just mixed up , came up to me and then , I got sick . I want help and to make friends in the world . Sounds more natural . My favorite artist is METALLICA . Today 's journal became about discontent . Today I read a translated fiction of chinese writer . While the man dreamed about country house and want to live in a farm , the girl liked to use brain not the strength for work . It was fun story that the English man can imagine how the young Eastern will be . So , dad said to eat dinner in the restaurant . It was a tough time , but I enjoyed talking with the customers . That 's why many people , especially men , were wonderinghow to pickthe ( right ) colors to make aflower bouquet . These hydrangeas have special colours and shapes as well . But as a matter of fact I got car - sick , being unable to say no when I had little appetite on our way there . Today I went running about twenty miles , but I could n't hear the footsteps of Spring yet . One is the Honolulu Marathon in Hawaii . just signed up to belong to a basketball team , yoga class , volunteer and so on . Recently I can go to work only two days in a month because I have been receiving post - surgical chemotherapy to prevent cancer recurrence and metastases . Though it was regrettable that I got sick , I believe my sickness have developed greatness to my soul . She majors in fine arts and she want to study in france in the future . The movie I want to watch recently But they alone do not warm my house , so I also use an oil fan heater . I 've kept playing basketball from when I was an elementary - school student . It is a very difficult sport for me , because I 'm not tall . But , I practiced shooting many times by 3 - point - line . In these days , I 'm always shopping or singing in the `` KARAOKE - BOX `` or drinking riquere or doing many things . When I gave a speech here the first time , I was a little nervous . I have to programming for my research . The language is OpenCV . I 'm going to study C and C + + language at first . Before long , you will find your home becoming neater . I should have worn a long bottom . However , the Japanese do not really understand the logic of star signs because they believe the blood type is more conceivable than star signs . Everything has an exception , and I guess I am not counted in the statistics of the star signs and blood types . This is my first entry on Lang - 8 . He often asked me how to study and manage time . changing my plans like doing this 3 times a week . memorable day and music This was the last time that my classmates and I had a meal together since next semester we will be divided into two different classes . So I lay down on my bed and listened to music on the radio , which made mehave a good mood . Additionally , light music helps me to fall asleep quickly . From that day on , I dreamed of mastering english as well as her . What is your favorite music ? Messi is great player ? Why you can earn more at Canadian companies is that they estimate individual skills more than Asian companies do so it really depends on your skills whether you can earn a lot of money or not . I hope my english gets better for many reasons . and I can help you with Korean , and a little bit of japanese . Does anyone on this site have such symptoms while staying in Japan or in your own country ? Recently , I felt like watching `` Avatar `` . My foreigner friend told me about that magazine yesterday . He possesses a lot of authority as businessman . He has taken care of his parents until he dropped out from a private university . I wish one day Catalonia will become an authentic country , and then we will be completely free . Men 's formal dress is easy . I went to buy a dress suit from a tailor yesterday , because I 'll participate in a friend 's wedding ceremony and I do n't have formal dress . If I were a woman , it would be difficult to choose , but I am a man , so it is easy . Men 's formal dress is more uniform than women 's . When we try to study English in Australia for six months by using a Japanese agent , can you guess how much money we have to pay for them ? I got angry , so I slammed the door . I knew nothing about foreign countries either . I developed chest muscles , upper leg muscles , and so on . Today is thursday . If you are a smartphone user . We are going to go to Himeji Castle and some other places . I want some things in my life to change such as finding a boyfriend , getting a job , being successful . . . But , my English was not good . Recently I often went to the States , almost 3 times a year in last 3 years . Nobody knows what would happen in the future . So , I need to improve my speaking and writing skill in English . The Rabbit has the personality traits of active , tame . . . . etc . I bought the paperback and an electronic dictionary . I stood all day long and arranged the company 's products . We have a big test tomorrow , and I mean BIG , very big . . . I am very , very , very nervous , because studying is not my favorite thing . I understand some English sentences which I could n't before . She was just fine , so I ` m really happy . Everyone seems delighted by it . My father had lots of potatoes in the house , more than he could eat before they became rotten . So I gave most of them to my yoggy teatcher with two carrots when I visited yoga studio . Their menus look so yummy ! ! I absolutely have to study English . Maybe , because it makes me have a headache . but I will try to learn more English There is a satellite school here and I 'm kind of an exchange student . Also , I think my English has improved more than when I was in Japan . It is my first time writing a diary in English . I hope someone will revise my mistakes in this article . I would really appreciate that . I 've gained some weight . The device is turned on every morning , but today something was wrong and it did n't work . She rode her bike and she gave me a chocolate , which was delicious . After reading a record about the debate between Obama and McCain , I thought there was a great difference between the 2 candidates , and that 's why everyone said Obama was better . Obama 's speech is full of numbers and truth , he memorized and used these records cleverly to support his opinions . On the contrary , McCain usually used concepts or vague words . When it turn to McCain , he said that it was right to do so because of justice and the government 's calculations . However , maybe fighting in Iraq has more benefits than disadvantages . But if McCain ca n't explain it clearly , I think it was clear that Obama was a better option than McCain . In Japan I watched the full moon on 20th , January . I forgot its title , but it was about designers who come up ( invent or design ) with variousequipment that help people , such as people living in developing countries . Yesterday , I used the Skype for the first time . For example , I like to read books which are , of course , hard - covered . The standard mobile phones which are sold in Japan have high - tech camera devices and internet connecting services . But I do not need such kinds of high - tech functions . Therefore I bought a very low - quality mobile phone which has just e - mail service and a very low - tech camera device . Nowadays , Do you think I need to own a car ? Therefore , I can do work more speedily / quickly and efficiently by using machines . All of above is a part of my essay that I wrote in a class during my study abroad in Hawaii . This is my first journal . WhyHaruki Murakami ? I guess they were on a day off . . ( It 's an absolutely impossible case in Japan ) Fortunately , the light was fine and we could phone . My First Time Writing A Diary In English It depends on the woman , but I think most women who are given a lot of love from their parents do n't do that , unlike this Taiwanese woman . If you type your name in the box , then the program shows some Kanjis in your illustrated brain on the screen . In the end , he talked about his experience of how he accidentally met his friend exactly on the day after he dreamed of his friend who he had n't seen for a long time . If anybody knows how to do , please teach me : ) The operator calmly said `` First you have to make sure he is already dead . `` After that the operator heard a gunshot from the other end of the phone . The hunter said `` What should I do next ? `` I 've never stayed in foreign countries , so I ca n't describe my feelings in proper expressions . And I know it could be the most precious part because Chongqing , together with its people and mountains , has inevitably constructed the background of my university life which has been maybe the purest yet most complicated period of my life . Differences between wish , hope , and believe A lot of frustration came out from both teams . Some players fell down to the ground and looked very hurt . TV program on - air : TSUNAMI . The father of the bully came to school to apologize to the student and However , the girl who was bullied retired from ( quit ) the team at that time and This time the bully told me that she wanted to retire from the team ( too ) . For example , he uses public transportation when going Our city is in the suburbs and it is difficult to travel I want to buy a beautiful wool cap to warm myself , red is best , which looks like fire in winter . One person who fooled them is making music on the Internet . My teacher would like to everyone write sentences . I think this technique is special . They control the effectiveness ! And exercising makes me feel refreshed ! After exercising , taking a bath is my favorite thing ! ! But , I really feel sorry / sad about my English right now . . . For example logarithms , vetcor operation and integral calculus . I took some photos with my digital camera at my bitthday party last week . This semester I 'm only taking 2 courses , but there are some other things I have to deal with . . . Now the area I live in Japan is in the rainy season . I 'm at a point where I can no longer find any appropiate books to study with , so I 'm basically wandering around in circles . So far , I 've completed a 1 - year language exchange programme in Japan , and have picked up an insane amount of vocabulary . I 'm not so sure about kanji compounds , vocabulary and grammar though . . . In this movie , Led Zeppelin 's famous song , ' Immigrant song ' was used . In 2008 ( two thousand and eight ? ! ) I earned a degree in Journalism at the University of Palermo and the first week of next November I 'll take the program to earn a specialist degree in Social and Institutional Communication . It 's a thick and soft udon with only simple soy sauce , and it was delicious but softer than I expected . After that , we had luxury dinner which had various sorts of sea products ! they usually go there during their middle semesters . There is no sunshine but there are strong ? high ? winds , therefore , I 'd better / rather stay at the dormitory , playing on my computer . And then , I read those comments , and I got really pleased and happy because those explanations helped me understand the parts I did n't in an easy way , & nbsp ; plus there were a lot of examples . Well , I 've had a delicious breakfast , and today the weather is n't as & nbsp ; cold as it was & nbsp ; before . Recently , I wonder whether foreign language should study in the country . Everyone please help me . I try to start writing a diary on Lang - 8 I think I want to study English more but it 's expensive to study English in japan . Kono neko wa okashikute hen desu . Kono neko wa senpuoki no mae de nemasu ga , sono nezou ga omoshiroi desu . Tabun , sore wa totemo atsui tenki no tame desu . Whenever I watch that show , I 'm haunted by the fear of terrorism haha . I am interested in `` SILS `` ( School of International Liberal Studies ) in Waseda University . After that , I talked with a college student . She has studied abroad for a year . I have returned to Fukuoka prefecture . I enjoyed looking at the choices in the beginning , but it was going to be complicated . So I am going to stay in Fukuoka for at least two years . Today We talked about blood type and many personality traits according to blood type with my phone conversation teacher I told that him in korea people believe that blood type affects the thinking and personality of people I thought I had to study English , especially the listening part . I received my laptop from repair . I paied the mobile phone & amp ; GABA ( English school ) 's expenses . Well , I 'm trying to translate a contract about medical instruments from Japanese to Chinese . Why ? `` At that time , I did n't know the meaning between drug free and free drug . The mackerel was roasted and dipped into sweet soy sauce . Memorial day ! ! Today I just wanted to say `` Hello `` to all of you . : D what my friends are thinking and can also send what I 'm thinking . Therefore , I 'll just go to bed right now . However , that blogger says that before you make friends , you have to input lots of words , about 5000 . Please somebody help me ! ! ! My dog gave birth to 1 boy and 3 girls on April 13th . After that I often visited the States for business and leisure . In another two years I will be sixty years old and I plan to have a trip to USA with my friends to drive across from LA to NYC . Today I went to a funeral in a Buddhist temple . The road was like the river so I was afraid of driving my car . I 'm excited a little because Lang - 8 was exactly what I wanted to find . I 'm getting a bit annoyed by all the spam accounts on sites that I like . At least , I personally do n't know anyone who is just waiting for that mail which promises a true and passionate relationship . And the ones that do make a living out of ' being a webcam girl ' or the like , the people that do have an interest in such things will naturally search for it themselves , wo n't they ? I have been looking for an interesting American drama that can help me improve my English listening skills , and today I finally found ' The Mentalist ' on an Internet site and downloaded 5 episodes from the first season . This drama is about investigators who belong to the California Victims Investigation organization and try to find murderers . It is very fascinating because the mentalist uses his mental power and hypnosis to track down the murderer . ? Anything else ? I like / enjoy playing tennis , skiing , and especially travelling ! We will enjoy ourselves this weekend . However , I suddenly heard terrible loud sound . And a lot of UFOs came over us , then they sprinkled poisonous rains ! This is an email requesting reshipment of my purchases . Library 3 < story > Second diary . I have never written a diary , even in Japanese ; They are learning ballet , piano , art and abacus , which is a Japanese crassice calculating tool . I think they are learning too many things for their ages . But , I never succeeded in teaching her continuasly . Thank you so much for reading my diary . If you have time PLEASE correct not only my spelling and grammer , Watashi no jimusho ( kaisha ) wa sochira desu . I had a computer certification test at 12 : 40 . I Have Questions Again . Well , I 'm reading at the moment a book called ( I do n't know the correct translation in English , I 'm translating the Portuguese title ) The girl that steal books . . . I 'm in the beginning , I ca n't undestand the story so well . Since a lot of people told me it 's a wonderful book , I 'm excited to read it . . . Usually it is played by professional SUMO wrestlers , but on this show , it is played by other fighting sports players and TV talents . The unique concept of it , and the amazing sense and talent of some players excited me so much ! Lo and behold , the Strikeforce champion as well as the DREAM champion Alistair Overeem was there , and he won ! However I gradually noticed that I ought to have more chances to speak in English . because I wanted to kid around , I said `` Good morning man ~ blalbla `` and we received guidance from him about how to get rid of the mouse . He said that at first we must find where the rat started the invasion . . When I say that , people around me look at me surprisingly as if they did n't expected me to say that and I end up looking odd . I say , `` We can listen to radio while doing simple tasks ( maybe give examples ? ) . I feel so relaxed while listening to the radio . For example , a Filipino said to me he wanted the bicycle - cargo on which I usually carry my kids . If we find that information , we can help satisfy the foreigner 's niche and it is a business chance too . I 'm a little bit nervous . At the beginning , I didnt 't like it so much , but gradually it caught my interest . Next I would like to watch the DVD of part one . with the differences , we ca n't learn the foreign cultures completely , and then if we do not have a good knowledge of the different cultures , it is a big challenge for us to write an English essay well . As foreign language learners , we seldom communicate with others in English or write English letters to others in our daily life ; that is to say , we do not have a good environment to learn and we regard the writing course as what we have to learn , but what we want to learn well . And I believe that if we learn more foreign culture and develop a better language environment in our English study , we will find that it will be easier for us to write . Somehow , I recently have n't talked with Americans in English . A few days ago , we went to the cinema to see `` Shrek forever `` near my home . Shrek was very funny and fantastic . Shrek feels that his married life is suddenly very boring . Shrek accepts the proposal and he is trapped . Could you do me a favor ? How are you ? I think my English sentences are cheesy . . . Can you believe a guy around 20 watched such a love story ? LOL In fact , I like love story movies because I do n't need to think deeply about them after watching them . Mio loves tomato . But these papers are too difficult to write , I feel that I will have a very `` good `` days in these two weeks . I had to speak English through a microphone . And I had to type English sentences with my keyboard . . I can improve my English ~ ~ It looks like a white carpet and it is very beautiful . because outside was sunshine and I did n't wear lots of clothes . Haha , wonderful snow I like it . No matter what 's sad things are in my heart , I always encourage myself finally ~ Hope is light ! They taught me how to play pool . I want to go out with them again ! While Gods is plural , but it is preceded by an article , I mean `` the `` . And this kind of tea was promoted by one sentence advertising saying : `` Please drink this tea if you want to control heat . `` It tasted very odinary when I drank it ( for ) the first time , before this advertisement started bombarding us from all directions . Many people fed them . no suspicious people following me It 's testosterone itself that makes the difference . The amount of testosterone released decides the sex of the fetus . Surprisingly , the more testosterone released , the more uneven the length is between your ring finger and your middle finger . To my opinion , I do n't think it 's good to pioneer biofuel , It will be a problem since it still needs fuels to transport the ingredient . If we start to use biofuel , people may think that the problem of food lacked has been solved , and start to use things unlimitedly , it will cause a waste , too . He said it 's kind of awkward because last year we ( both ) studied together at the same school , Yesterday , I registered with the sns site which my friend on this website recommended . I interpreted it as ` Im a lazy woman ` little mistake in grammar . Once I understood what he meant I quickly apologized . When we study a foreign language , we usually memorize one meaning or two for a single word . My neighbor , who lives in the ground - floor apartment across the alley , adopted two dogs . I called one Small White as it 's a white dog , and the other Spotty , as it has black spots . A few months ago , Spotty died due to old age . I thought it felt very sad because Spotty was gone . I saw him / her wandering in alleys and lanes nearby , I guess he / she was searching for Spotty . Although it has been three or four months since Spotty died , Small White still whines sometimes . In the contemporary world , technology is advancing at an astounding speed . But in the meantime , whether technology causes environmental problems has become a highly debated issue . Specifically , instead of wasting our resources , a simple life can conserve non - renewable resources , such as metals , minerals , petroleum and fossil fuels . It may be tempting to argue the easy life may carry potential drawbacks . However , the benefits reaped by technology far outweigh the disadvantages . so we are stayed in military service . . I think it 's our first travel . . But nobody wants to go military service . . ^ ^ ; Compared to real travel , joining the Army is a little different . Of course , travel make me flutter . . Everyday we should go to school or to work . . For my refreshment , I travel . . Have you ever had an experience in foreign travel ? How many different kinds of travel are you familiar with ? I am not too good at English For example , they can learn how to talk and begin to understand different languages by watching TV . The first lesson I learned was how to communicate properly with different people , including classmates , professors and people of different social status . We had a task that assumed you were in a lift with your boss and he did n't know you , so you had to try to promote yourself naturally . This kind of thing seems like a piece of cake , but it 's definitely useful in our daily lives . I stayed home the whole afternoon and became fat . Though my ability is still not good enough for the impending examination , it seems something constantly coaxes me to find other ways and escape from this endless yet doomed to fail enigmatic swirl . Only in daydreaming or the dreams of deep sleep could I find the contented smile with the delightful wrinkles embellishing my cheeks , carved by all the wounds from my sacrifice and torment . At that damn moment I just ca n't do anything practical or effective to cure or soothe her pain from the aches and itches , and all I can do is to comfort her with my care and words . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the sound of my mom 's breath reminds me to be more determined and obstinent for my hard - to - reach dream . The great mother 's day is around the corner , but I am still a dependent child who does n't have the ability to buy her any luxurious or exquisite stuff or treat her to a dinner in a great restaurant . I 'm feeling comfortable even though I recognize that there are many mistakes . I wanna take advantage of this happiness and time , to improve my English . And I worry about zemi that starts the second grade at university . I had write in English because I want to know what I wrote incorrect ! They will have a life of happiness . On this day , the obstruction will become a bridge . That movie is very interesting . I should remove worms from these leaves so they can keep growing . but I do n't have any friends to teach me English . That is how we show our strength to our customers . One of my colleagues became a father yesterday . I want to have such a great feeling , but sadly I ca n't give birth by myself . Shinokiya is wonderful place . I came to Singapore from South Korea . I have looked for courses in community centers in Singaporean websites yesterday because I want make a local friend so I looked for an English it was my first premiere . Because of that , the first day might have been canceled , but the typhoon went another way , so we were able to hold the festival . I got a pair of dumbbells to train my upper arms . They are not like regular dumbbells . This city falls victim to a disease we 're afraid of . Because the actors are perfect , and the genre is action . Now , I will introduce my favorite song . I drank too much . He seemed cold because he was n't wearing a jacket . Then I learned thatNicotinell patches are released fromNOVARTIS Pharma again . This situation has lasted for a couple of days already and the roads are littered with ice . I want to make many foreign friends , and learn about foreign people . I 'm going there by a working / holiday visa . In episode 1 - 3 , Rachel said , `` I should really get back to work , `` and Phoebe answered `` Yeah , 'cause otherwise someone might get what they actually ordered . `` . While other waitresses could serve well , Rachel could n't serve well . I think we have to care about wrong stereotypes . I am also expected for the coming new semester . but the leaves in Kyoto are especially beautiful and amazing . While I was riding on it , a Filipino person spoke to me in Japanese . But I thought the atmosphere was better in Sky Spa . I wish I could speak English fluently ! In order to improve my writing skills , I think I 'd better add a daily record of my activities . it 's really not easy to balance those three things at once . She gave me a shuttlecock key holder and some cookies . I will put it on my badminton 's racket case . I hope this accommodation remain for awhile , in spite of the upcoming tough economic condition . I 'm nervous recently . But it was quite easy for me , and I wanted to read something more proffesional , like a paper or thesis . It 's more bright here now compared to what it was before . All of my students passed it , which made me happy . Also , I thought I need to study harder not to be beaten by them in the future and always to be their teacher . Usual day Izumo is more beautiful place than where I thought about before visiting . I am disappointing now , I saw announcement today , and I now realize how difficult it is to apply for that program . Sometimes I think about why my parents always work so hard , yet my family is still so poor . I really do n't understand this . Even I am trying my best to get that scholarship , because I can ` t afford the sky high fees of graduate school . Some cell phones are very expensive , but they can do more things than cheap cell phones . I 'm going to study English and Germany hard on this site . This is the first time that I write my diary in English . In my dream , I could smell the cat and my nose was tickled by its fur . So it was very tough . Recently , the movie ' The Hurt Locker ' showed . My friend asked me about this sentence `` Enjoy your life there . `` That sentence is supposed to mean `` enjoy your life in canada . `` The daily temperatures here fluctuated between / from - 2 to + 3 degrees Celsius . Should one expect a reward when doing a good deed ? For example , he takes care of his friend 's wife when his friend goes abroad . Because if you try and prevent the thief who is doing something illegal Anther reason is doing a good is always recognized as a silly symbol . So why does n't the government give some reward and let them feel a sense of pride . I actually was not expecting such a great response by anyone since there are so many people writing a diary and wating for diary corrections . I just want to hear your voice again . I went out with someone to test and confirm how much I love you . though it 's very interesting to be with that boy , Since there had been unexpected visitors , I used up my coffee beans and I forgot to buy new coffee beans . I love the smell of muffins and coffee . It makes me feel so happy . That is my favorite moment of a day and it is where my energy comes from . My body is still craving a coffee and I am counting down the time until my favorite coffee shop opens . Today was a boring and a tedious day . So I feel bored ( & tedious ) . I want to go back to school . But , the language specs were very interesting . I cook every day because I have experience working at a restaurant as a part - timer , and saved money . And I also heard that sometimes lions show up . . . . the University 's library to study for myupcoming master course entrance exam . The exam is onthe 25th of August and we have to take 4 subjects including English . - It 's the script when I prepared the English speech contest in my 1st year in Uni . The leader seems to be a little bit strict . Since there are so many non - japanese people working out at our gyms , I 'd like to welcome them to our running session , too , which is exciting ! : ) If you skipped this step , the remaining temperature will harm the freshness , which means it will inevitably pull the rug out from under the all efforts you have taken . I am going to visit Pune for a business trip for several days and I want to get some informtion about Pune especially about tourist attractions in the area . The first one I draw is based upon the `` Madonna Della Seggiolia `` by Rafaello . Because it is so difficult to explain and express my job in detail . Many good friends who have different countries are probably here . To get a satisfactory result , I decided to get a 600 score . Next time , I will see her before my day off : ) Hello everyone . One day , I used google to help me improve my English . I do n't know why but I probably spend too much time on Internet or I do n't eat a lot of food and I often drink a lot of coffee . I 'd like to get in fitness clubs ' gym . This gym has a lot of foreigners and that 's why I 'd like to get in . I learned that some western cultures have the concept of ' personal space ' . This means that people think they have an invisible area around their body in which they are righteously occupying and when some an unfamiliar person comes in to that area , to them , it is an intrusion of their privacy . I hope that these past weeks were also useful for you . It snowed occasionally . And in the world , it is natural that lots of people spend it with their families . They want to spend it with their special boy - friends or girl - friends . Although speed limit is 55 mile an hour , most cars drive 70 miles an hour . Normally , rainy season lasts until June if my memory serves me right . Sometimes I felt uncomfortable , because my boyfriend seemed to love talking with the girl . Although I know they ca n't have any relations , I do n't like that he talks so much with her . Suddenly , I felt angry and asked him , ' Why do you know she loves it ? ' there was a menial man who graduated from Cambridge University The man went into military service and passed away in France . one of the my most favorite authors At the milk celebration , there was ' milking experience , making milk cheese , First , we put 8 lavender oil drops , 2 drops of milk concentrate , Previously , you guys corrected my resume for me . Thank you for that . I am interested in this new experience . I need to bake a pie , fry potatoes with beefsteaks , little pastries , what else . . . Well , I 'll invent something else to cook . The Korean national holiday `` Chu - Suk `` is over . We talked nicely 2 days ago and he was in bad mood . I stood next to him , helping him through his problem . because I like movie so I would like to watch english movie . My fanorite movie is Jackie Chain . Because my husband 's work was decided in Frankfurt . Sometimes I think that days are so short because I ca n't do much things . However , on weekends , the days are longer and then I do n't know what to do ! Now it is winter vacation , so I am happy : D Today I enrolled in Lang - 8 after a friend introduced me to the site . She said I can write on this website , and someone will correct my writing . Taipei 101 was build by the KTRT team and there are 101 floors above ground and 5 floors below ground . During the power outages , the traffic lights do n't operate . a bit tired as I am , I am pleased with him knowing more about chemistry . I am satisfied with my attitude towards the job . By the way , my friend and I studied MATTHEW on Saturday Bible study . but I have some free time to do something like this nowadays , so I 'm doing this . If I passed , I have to do the interview one more time . Sometimes I have a cough , runny nose , How can I learn English ? I had bread and soup for dinner while watching TV . However I think this situation is not common for the typical Japanese . That 's terrible . From the 8th to the 10th of May I was in Nizhniy Novgorod . A typhoon is approaching . The wind has picked up and it 's pouring . I 've just started Lang - 8 I 'm an IT engineer , so from technical view , it is not so hard , I thought . I always eat dinner at 11 p . m . Since she is very knowledgeable about architecture , and we have different opinions about it , we do n't get tired of discussing it . Besides , we can enter free of charge and the price of food and drinks is very reasonable . Volleyball Game I entered a volleyball game last Sunday . I usually use some LUSH products every bath time . So I decided to be an instant volunteer interpreter and help them . Well , I 'm a graduate student now . Of course , it 's a part time job . The party will be given in Tokyo at Roppongi . The recruitment number is 1000 people . What dress design we put on ? Is anything I can write that has never been written by others ? I will study tourism in university for 4 years . I am interested in the food problem . I am looking forward to going abroad to study . Yesterday , I had a party with my neighbors . Three people are living in our apartment , and sometimes we have dinner together , or talk over a cup of coffee . Although we only had 30 min to cook , the meal turned out to be really gorgeous ! ! ! Although I failed to win a prize at Seoul office of education KOI , I thought I was very good at programming . I 'd y be very grateful for any help to improve my English . The corn bits tenpura was the most delicious dish . Naturally , we looked the bill and were surprised and laughed . To be honest I do n't like to study or memorize grammar rules . I ate chicken rice twice in Singapore . I prefered the grilled one , so I placed an order for it . I felt it was like teriyaki chicken , a japanese dish . I ate an entire half of a chicken with my husband . I tried chicken rice again at the changi air port . I am going to live in singapore from 11th October . I want to eat chicken rice sold in different places ! I am becoming an architect and want to know more about my work , buildings , and designing in general . and music ( I dislike pop music and prefer genres like metal , metalcore , hardcore , punkrock , etc . ) . Sooooo . . 27th February is my father 's birthday . I bought his favorite ramen and wine . This is because it makes my shoes and skirt damp . it doesnt have any point . you shouldnt read this lol hi guys , sorry I havent written any entires . I have been forgetting about this sitelol I did n't expect that I could have such a lovely time there . its already been 3 weeks since I came back here . I def will keep studying english . If you are gooing to get scared , I suggest you stop reading . I think if you see something scary , you will keep your eyes open to protect yourself . But it 's the first time I 'm going there and Kyoto is one of the famce ( ? ) It 's because I heard from my friend that I would get many calls and messages from unknown people . But I recently have become confident about my English step by step . I think that it 's about time that I start skype and talk English positively . The Shinshouji shrine has a guardian angel for the Kabuki artists and the Sumou athletes . You can find Kabuki artists and sumou wrestlers on February third . People who got chocolates , cookies or various gifts on Valentine 's day give presents to the people that they received them from . Firstly , I think there are three ways to understand the meaning of words of second languages - replacement , internal definition , and external definition . Internal definition means learning words by dictionary definition . External definition means learning words by guessing its meaning when they are used in particular situations . Our experience has taught us that it is difficult to learn words with only their dictionary definition . By learning second languages , you can enjoy traveling abroad . First , the only way for Japanese people to understand English is to learn by external definition because of ( due to ) large cultural differences . So we have to learn English by external definition . By doing so , we can understand the exact meaning that we ca n't if we interpret English into Japanese . We have to stop the traditional way of learning English : interpretation . this is my first day using lang 8 and I made a blunder , because I choose german as the langauge that I m learning but the fact is I m learning english ! ! I came to singapore 7 years ago I m here to learn a new language also I wanted to start a new life in a totally different place but of course singaproe was just a temporary place for me , the place I really wanted to go to is england , the reason for me to go there may be ridiculous but I think it is tolerable , the reason is I wanted to have a british accent , its cool furthermore it sounds professional isnt it ? While depressed , I glanced at the date which is April first . I believe that memory is never lost , even when it seems to be , because it has more to do with the heart than the mind . So , we can walk around Shinjuku , Harajuku , Shibuya , Aoyama and everywhere in Tokyo easily . Maybe they have seen my old picture on lang - 8 . I 'll have a nap now and memorize some words this afternoon ~ This Sunday I will visit a host mother for just a look . For me it 's fascinating looking into people 's eyes and reading through them to know their real feelings , their eyes can tell me something hidden , what the mouth wo n't say : fear , sadness , happiness , envy , shyness , embarrassment , anger , surprise , pleasure , lies , pain , complicity , reproach . . . If we look at the most famous paintings , for example Mona Lisa , the intensity of the look will capture you and will invoke an emotion . I hardly understood what everyone was talking about . On the way home I stopped by the book store to buy a textbook to make my listening skills better . The big problem is the ice wind that blows right through me . Besides , I really like to listen to the sound of nature like birds singing , water flowing and rain falling , and the best place for it is Unmun Temple . Please give me advice ! ! ! ! ! ! ! ! ! ! ! ! ! ! : D But until now , I have n't been able to figure it out . I got the first comments for my journals . Thank you for checking it . Today , I went to my other campus . It 's much farther than my main campus . Yakuza is a Japanese gangster . when you take only the first syllable from each number , they are called , 8 ( ya ) , 9 ( ku ) , 3 ( za ) . My hometown , Kobe has a big house of a gangster known as `` yamaguchi group `` . However , I can not help but be impressed by the beauty of the tattoos on their backs . Tomo : `` ( Pointing at a sweet shop with Christmas decorations at the door ) Daddy , can we go into that shop ? `` I 'm going to restart to write . If you do not know what a Chikuwa is , read my previous post . Because of Harry Potter series , I began reading English novel : such as Henry James 's short novels and Jane Austen 's six novels . Besides children novels , I also think gothic novel are interesting . And this semester I need to write a research paper about Dark Romanticism Because Japanese book has many pictures about maids and Victorian times . France has ballet , Hawaii has the hula . I 'm very busy these days . When I go to bed many kinds of problems are coming and going in my brain . Someone taught me that if you have a ploblem you should n't think about it at night , because it makes your brain more excited . Generally , most of them were built during the Feudal period . Each of them has distinctive features . Previously , visitors used to be middle - aged or older men . Besides castles , Generals and Lords in the Feudal Period are also popular . But when growing up , you 'll find everything is different than what we thought before . We have to learn to bear what we do n't like , and we have to work to feed ourselves . We have re - instructed the packers to make sure to use proper packing material and we have made sure that panels will not shift in the carton to avoid any damages to the board . Yesterday , the temperature went down , and many people feel that autumn has come . and I am not prepared to give a presentation ! I 'd like to read this book a lot of times and to develop my skills . And I do not have a kimono for such a formal place in April . I have questions now , so I want to answer these questions , but these questions are a little difficult and abstract . What is the difference between a scientific argument and a speculative argument ? Suppose that you are developing a medicine . Is such an experiment likely to give you new insight ? ? This way of living can be defined as ' ' passing through , `` which means that one finds the meaning of an act , not in the present , but in the future . For one person , ` ` praying `` itself is an act and a pleasure . I love kimonos very much , but I do n't wear them very often . Now it is raining and sometimes snowing in the central area of Tokyo . From my personal viewpoint , I do not like cold weather , so I really enjoy the warmth of this winter . That 's just what one would expect of a Harvard grad . A : I 'm afraid it 's too much to ask , and I hope it is n't too much trouble of you , but . . . . I 'm not a fashionable person , but I 'm interested in fashion : ) We got to the trash bin and found my empty plate , empty juice bottle and empty sweets box . . . Some hungry people should have been eating them . It was my fault , but he did n't need to be so angry . I hope he will be assigned in another department next quarter . He was very surprised and looked at me sullenly . Because I was content , I went to sleep , Because this place is closer to the seismic center than Fukushima - nuclear power plant AND Onegawa - nuclear power plant was hit stronger than the Fukushima - ones from the Earthquake , Tsunami and seismic intensity . . . . . . I would like to improve my English skills and learn about each other 's cultures . My first english diary . These day , I have been scolded for not resting sometimes ! in the following sentence : my classmate is warning me that if I still have n't sent any part to my supervisor the worst thing is my friend just came to visit me from Nottingham . . . According to their comment on NicoNico Douga , they put sticky notes on a piece of drawing paper to make Mario , Goombas , and theKoopa troopas . Probably that partner could be an lang - 8 user , that would be nice too , so I am starting this search . Then I spend every weekends to study Japanese by reading aloud , for I have to study hard for my major as a junior whose dream is to pursue further studies . Almost all of my classmates have begun to prepare for NETEM , and that 's a little scary I think . You have touched me so much that I do n't know what to say . It looks like three - dimensional art . Geography class 0904 : What is the difference in taste between IR - 8 and Japonica Rice ? I hope that they will eventually remember each name and location . What is the difference between IR - 8 and Japonica rice when eaten ? They are really clever . He had heart on forehead , which is lovely for the Valentine 's Day . I would like to have ridden him even the first time I was scared of him At first , I could n't adapt to those teenagers who were noisy in my class or doing unrelated work . The parts that I ordered last week arrived today ! ! It looks good ! ! I look like a hamster with big cheeks ! I am very glad the other person corrected my errors . I gave lot of care to the schedule , ingredients , data of customers and so on in this one month . It is famous for its hot - springs and beautiful sea . June is a rainy season in Japan . When the rainy season has finished , the summer season comes after . Some people do it like kissing or something before they even get a boyfriend or girlfriend It is just like you liking somebody . What is the difference between before and after something ? Sending emails and making calls use a lot of electronics . Also used telephones are always abandoned in remote areas . It is not good for the environment . Nevertheless this movie was a comedy , at the end the women made it up and it drew tears from me . and I wondered why the blank of `` school and address `` is very small . I am twenty three years old ; it seems that I 'm not young , but I am still in school . I hope in the furture I can have a beautiful life , and I know it 's not easy . As a man , you must give your family a comfortable life . you should make your father and mother know you are strong enough to support a family . But I 'm still a student now ; I can do nothing except learn and learn every day . I hope I can do something for my family , but I do n't know what . I am listening to Eminem 's music right now ! Jeju is a beautiful island . One of the women and the three men are my friends in my university . We scheduled to meet at a pub in front of my university . ( not necessary ) We introduced each other and then we drank soju . ( Korean alcohol ) We had a very fun and interesting time . Recently I 've started listening to English audio books to improve my listening skills . Now I 'm listening to a book titled < Witch & Wizard > and I . . . I think the author of the book must have either seen too much Japanese animation or is a huge fan of the Harry Potter series . Anyway I 'll finish it somehow some day . It is traditional event to visit the grave of the deceased . How about your country , what occasion 's do you display / celebrate Okay , anyway what I am trying to say is that cheese cake is not just a cake to me , it is a gourmet to me . A sponge cake should be the most basic step of any cakes . My daughter wanted new outfits as her Christmas gift and I wanted a new laptop However she grew up and she already knows who Santa is . Watashi wa Surobenia - jin desu . So , in future ( when I start my world travel . . ) , I will go to many countries and meet my friends . . . I welcome many friends from other countries . . . I already died so many times . . . But it will be very deifficult to make . This is just the beginning of making my app . The next morning I felt exhausted . Now that I 'm healthier , it 's time to resume learning English ! ! I read some diaries written by Lang - 8 users learning Japanese . Restart Toilet Training Mothers should n't be too nervous about this kind of discipline . One day , she played with her friend climbing the jungle gym , but her friend always climbed higher than her , and so she started to cry out of frustration . However , she has been suffering from hemorrhoids since last month , and we finally succeeded to have her wear diapers to heal her buttocks . Van to iimasu . watashi ha nihongo wo renshyushitai desu ! Though my job position is a common clerk ( I belong to the sales department ) , I have a lot of responsibilities to my customers . After the Tohoku Earthquake , electric companys are saying that people should refrain from using electricity . We believe this means that gas users will come back , but still many people are choosing all - electronic residences . This is the first time I 've joined this website . I heard about it yesterday and I want to improve my English , so I joined it . I hope everybody will help me improve my English skill . The beautiful trees on the right side of the street where I 'm walking are blooming . Riding a bicycle up the hill on summer days is very hard . ( in summer ) I wish to get to know some friends here to study together . Merry Christmas Merry Christmas and A Happy New Year . or when I see a car of the same type and color which he drove . He was my dreamer , he showed me a lot of things . We are planning to play games with kids . I 'm trying all that I can to learn English and Japanese too . . . Today I was , in a `` how to learn Japanese `` blog , and I found a theme about my japanese . . . also , I grilled chicken breast and sprinkled some pepper and salt on it . My summer vacation in 2005 was exciting because I went to Dagupan City in Philippines where my cousin 's family lives . But I especially remembered visiting the Hundred Islands . I had a nice and peaceful time with my cousin 's family on a island which was chosen by me . Obama 's presidential inaugural address To be honest , I had never heard the presidential oath in detail in the past . The economy is badly weakened . . . `` - He holds respect in the forefront . . . `` For us , they fought and died in places like . . . `` I wanna study english because I will go abroad this Andy Warhol 's work made my view be widened . I will eat soumen , which is like a noodle . The favorite book center where I want to go shopping is located in Guangzhou . But when you come to their country , begin living their life , and speaking their language , you understand that they are not that different from you . I usually use QQ ( similar to Skype ) on the internet with my girlfriend , who is Chinese , at 8 PM . Why would you make coffee before going to bed ? I should have more interesting things to do rather than sleeping almost all morning . I wanted to upload these dishes ' pictures but my cellphone 's battery had gone off . At the party , we talked about many kinds of topics . For example , economics , other colleagues , men and women and music . I am studying two languages every day . Hopefully , tomorrow I will have enough time to sleep Two German women came to this farm yesterday . Today was the first day to work with them . there are 5 friends I 'm familiar with . Actually I 've heard that such an action , when lots of electrical devices are turned off and on at the same time , can damage the power supply network . I will introduce myself . It is cloudy today . She is always kind to me . She is lovely to me . She always teaches me . I have a class in one hour , so I 'm listening to music and writing this . But if I want to raise my score much , I had better study Listening . Because Listening should raise my score more than Reading . I visited my parents and drank with my parents . I 'd like to see her and her parents soon ! Of course I like Japanimation too . She is so cute and looks like an angel . I practice on Monday , Tuesday and Wednesday . That 's equal to 9 hours . Thank you for the reccomendations , Beth , NurikoSpecial and Kchasm ^ ^ ( I saw KCasm 's correction , and afterwards I went to buy the DVD . . . ) Can you see the paper disk ? It says `` You can place the disk containing episode 1 here , after buying it . `` Why the hell do I have to buy it ? ? ? ? for my birthday I spent very good time in shanghai . I was very happy . I really like my familly . Maybe I can borrow some more accessories from my other friends , we will see . . . I 'm sorry I ca n't explain my feelings well about it . My mom bought me oysters as a souvenir from Sendai , Miyagi . This is my first diary . because my actual name is , duck jun kim . I 'm very glad to know it , but before I do I must pass my exams , because I want to continue my education in the institute . They are very difficult subjects , but I hope I pass them very well ! Thus , I 'd like to correct my English by writing in my journal every day . I have no Japanese friends in Hong Kong so I am looking for Japanese friends . I have never met people who can speak Japanese in Hong Kong except my company staff . Even though you have many things , you see something of your friend 's that you do n't have , and you really want it . Although this is true , I believe we have to be satisfied . He was nice guy , cute and very gentle . Though I have no chance to speak English in my workplace now , Because my friends or relative always remember that today is my birthday . I 'm looking forward to this meeting with my friend . I knew that IKEA in Japanese pronunciation is different from English . I had to ask somestaff members about my luggage , but no one could speak Japanese at theHonkong air port and no one helped such a miserable Japanese man . I made a mistake , and almost went to thecutoms counter because some members of staff told me I should go there to receive my lugagge . Some members of staff stopped me at the entrance of thedepature lobby , because they found asmall scissors in my bag . I confirmed my flight schedule at the big electronic board . And after that , I felt he became somewhat better than he had been . It 's very necessary ! JUST WAITING , WAITING FOR SUCCESS , I DON ' T BELIEVE GOD , BUT I STILL HOPE GOD can GIVE ME A CHANCE TO TAKE CARE OF MYSELF AND YOU ! ! I learned English for some years in school , but I was never succesful . So , I am trying to improve my English with this blog ( journal ) and I hope some people will correct my posts and help me to be better in this language . fortunately my friend drove to the theater . so I appreciate her thanks to my friend ! terrible , I wrote a lot , but I lost them , how could this happened ? he is an inspector of agriculture and has a big tattoo on his back . You can communicate with anyone in foreign countries , since English is the most important language . Nowadays , even a strong country ca n't easily make colonies in the world . Hi all . I am new to lang - 8 . I need som help . Question about `` most `` Cameron Diaz just now on TV . Tom was so handsome and Ms . I am an engineer of a construction company and I am constructing a pharmaceutical factory in Shizuoka . So I enrolled a correspondence university to get a teacher license . At a hair salon in Harajuku I was off today . I always have some bread , coffee , and salad for breakfast . Especially , extra virgin oil is very good for health . However , I have to admit that I should put much more effort in studying English . But I 'm still murmuring when I speak English with a native speaker . Japan is in deep recession . I heard from xx that you helped deal with office matters for me during my sick leave . I really want to thank you . For example , kindness , sincerity , strength and so on . As for me , I think friendship is important . It 's my first time to register here They were amazing and their monuments bear witness to how great they were . The ancient Egyptians managed to build their country and leave their footprints in the land so that we can remember them . Osama Bin Laden was killed in a mansion outside Islamabad and his body was recovered by US authorities . I am going to begin writing a diary in English tomorrow . Although real cars is consist of hard iron , this movie portrays many personified cars as soft and cute . I told her of my recent problems , and she advised me to do everything slowly , and at my own pace . Japanese people have a many opportunities to hear American English from movies , dramas and music , but in my case I hardly ever hear British English in my everyday life . MF consists of / consists out of three families having distinct characters . But she has difficulties studying , which worries her mother a lot . My friend works making Bizenyaki , so I will get a chance to visit the Bizenyaki work place . So some of them are very skilled in their use of English and they are even better than I am . So I advised her . Today , I listened to Taylor Swift 's songs . a sandwich . The following are the comparisons between them . When I watch the financial news lately , almost every time , many traders on the stock exchange bury their heads in their hands looking distressed . Soy sauce factory and the end on the tour , you can get a bottle of soy sauce : DD So I booked a nice restaurant to hold a end of the year party for my office friends . If someone has to check due to an emergency , they should ask permission before checking it . airplane because the body color is blue and I like blue very much ! At my university , there is a place I often go these days . It is more relaxing there than in the library . especially my speaking and ( my ) listening . I do n't know what I have to do : learn each pronunciation of a kanji , or learn pronunciation of words using this kanji . I went to the baseball park with my friend on Saturday . Some friends have already started finding employment . This makes me nervous . I studied there for two years , and graduated in 2007 . When I moved from my parents house , where I had my own room , to the dormitory I had to omit some things I wanted to get because we did n't have enough space in the room . Why did I grow up like this ? I enjoy optimistic people , who want to do new things and who laugh a lot . Her friend said that if you soaked this mango in a yogurt , it would become a fresh mango ! She is very positive person , which makes me a positive person . Can you help me translate this into the right grammar ? The plane has been carrying more than sixteen - thousand passengers without any serious accidents for the last ten years . Today 's weather is very fine ~ Well , I 'm going to go to New Zealand during the summer vacation . In British custom , putting red poppies on their chests is to pay respect to all war deaths on the 11th of Nov , an armistice day . By the way Catcher ~ 's influence is a little strong . This periods American authors are very good . Fitzgerald , Capote , Richard Brautigan , Charles Bukowski . . My favorite short story is Fitzgerald 's ' Babylon Revisited ' . It 's a lonely and a little sad story . This story 's character 's conversation is very cool . Hi everyone , I just registered this afternooon , and wish someone who could improve my poor English . I also help my friends with Chinese . . I agreewith her opinion . I have an iPod touch which I won as a prize 2 years ago . except for the phone and mobile internet features . I did n't get used to searchingfor a web manual , This opened thegateway to knowledge , information and passtime . I was able to show friends theOdawara castle . But the risk is it prevents me from studying and reading . But before sleeping I can enjoy watching movies in bed . iPod touch is my tough and enjoyable friend . In the central neighborhood every ten steps that I took there was a newsstand . I 've never seen so many newsstands together . . Two survivors were found today in Japan ! Today , two survivors were found after 9 days . I had an exam this morning . I will have to take the same class next term . The Delay Because of the Typhoon The texts which should be read are fortunately not difficult . If I were more acitve in the seminar , I could learn more , but if I concentrated more on the seminar , I would be tired . Yet today is a very warm and spring - like beautiful day ! So I decide to take the exam although I do n't want to study the laws and theories . The gangs of New York , the black underdogs , the Indians in reservations that lose their spirit . I want to enjoy keeping a diary . fable about coffee ( translated from Russian ) In the first , he threw a carrot , in next pan he put an egg and the last pan was filled with granules of coffee . After some time he took out the carrot and egg and poured out the coffee . - Carrot and egg have boiled and the coffee have dissolved . But what about the coffee ? - It 's the most interesting . The granules of coffee have absolutely changed the water . Recently I am very sleepy . Hello ! My name is Sumi ! It 's my first time to write my diary on this website . I hope I make a lot of foreign friends and learn other languages and teach Japanese to whoever wants to learn it . It 's getting warmer and warmer these days . By using this device with 4 kinds of filtration , clean water emerges in the end . In a small town , you have to own a car to ensure a comfortable living . Another aspect of the excitement of city living is the variety of cultural activities available . Still , I would rather be a bit more cautious and live in a large city than to feel secure but bored in a small town . Guess how many times I can write `` clouds `` in a paragraph so short ! I got in one university finally ! ! ! ! ! I might live in Kyoto ! ! wow ~ I 'm so happy now Please check my diary . We went to drink after the race and caught up with each other . Whether you believe it or not , Tsukasa and I had already thought about an escape route just in case before we went there . On the thatched roof I read an internet blog article reporting a new program , titled `` Kimchi Chronicles `` , which will air this year on PBS channel in the United States . Both noodles have a very similar flavour , but the noodles are different . It might be uncomfortable to a foreigner , especially if the she did n't like the untidy atmosphere of a small restaurant . The restaurant is very famous for Milmyeon and as I heard , the taste of the noodles are quite delicious . It was an experimental exam , so we ` ll write it for a note in the end of May ^ So I bought several lottery tickets . To spend several minutes dreaming and being excited is not so bad . On the other hand , when the bride arrived at the wedding , she looked so relaxed and happy . It has been one year since I met them last , so I enjoyed talking with them . African music is so rhythmic and has an unique tempo . So , I like it ! I didn ` t research anything about the country yet . I sometimes pick up those leaves that have grown enough and saute with salt and pepper . We tookthe train to go to school and we would come home together from doing ourhomestay . His name is HYON . You can learn about Hideyoshi and the relationship of people surrounding him with English infomation and also can see a lot of works of art there . Since the new SCM project started this March , I 've been quite busy . . . Although the temperature is still low ( like - 5 to - 10 ) , the weather has been sunny recently in Toronto . The other day , even though the temperature was - 5 , people were drinking on patios in the afternoon ! Unfortunately , it is prohibited in Toronto to drink outside . It would suck to be sneezing all day when the long and cold winter has finally been coming to an end . doctors always write down main diseases , but from my point of view , it does not always mean main disease . We should look into the patient 's diseases if the are correct enough to justfy their treatments . I 'm hungry . I 'm hungry now , but I ca n't eat anything because I have to get a medical check at 2 : 30 in the afternoon . Some people caught influenza . But I still caught a cold again : ( And I finally decieded to get it . But I felt something strange with this cloth Tonight , I received a notebook cover that I bought by mail order yesterday . It is very expensive but it did not satisfy me , because it is a little bigger than I thought . Please contribute in both English and Japanese . I have tests tomorrow at school . I have to study tonight for tomorrow 's tests . but I continued studying English after work . but English studying is very interesting ! ! It 's been a long time since I have written an English diary , so it will take me some time to get used to it : ) haha ~ ~ nice to meet everyone ! ! Champions ! ( 24 / MAR / 2009 ) I didn ' t go anywhere because I watched the WBC on TV . I was disappointed . Question : How to learn language ? ThAnks TO them , I can listen to English while having fun . Incidentally , because it is very difficult , I gave up reading `` SHERLOCK HOLMES `` . Today , I talked and played tabletennis with him . Since he rolls a turban on his head everyday , and I had caught sight of him praying several times . Anyway , I have taken an interest in Islam culture since long time ago . Frankly speaking , I wanna ask him some questions about his religion . Learning norsk . . . We were strangers , but he made a good impression on me . But maybe you ca n't tell from this pic . . I never accept some stimulation like . . . mountain erupt = ( LMAO Yes , I know I will soon be attending a university and that I 'm 18 years old . When some people find this out about me , they are surprised and they think that I have a problem . I can learn a lot of new information from cartoons , especially cartoons about history . I love a lot of cartoons , especially Japanese anime . I like anime that are about problems in society or about history . My favorite game My mother told me , `` You should create your everyday life to bring more brilliant moments in it . `` About Shi - itake mushrooms ww I 'm recently interested in California , because my university recommends us to go abroad to study at University of California . That is because McDonald 's in Japan campaigned various American Hamburgers . It is famous as the home of the deity of studies . In my opinion , Korean food is the most delicious food in the world . When it comes to things that are `` slow and patient `` , nothing quite matches the variety of Korean cuisine . I felt it 's important to study English recently . You know , Japan is a small island , so we do n't need to speak English . We rarely meet Westerners , especially in rural but urban areas such as Tokyo and so on . I felt it 's necessary to learn English lately . So I started this service , `` Land - 8 `` . sometime I think I am really want to study architecture or . . I like vegetables because they are not too rich to eat . I 've been temporarily back home this holiday . The consumption of energy is clearly increasing all over the world recently . The excessive consumption of energy has caused various environmental problems . This very famous song is written by the extremely talent musician Jose Feliciano . That is the epic goal of every musiciain , to reach to the heart of others . From today , I will write consistently in my diary . If a dog is a rabid dog , it 's very dangerous . Nice to meet you . My favorite character is Donald Duck . By the way , I have n't logged into Lang - 8 in a while . I could n't log in because I had forgotten my ID & password . Also , I have not been able to find joyfulness to keep a diary here . I would n't like to add any more social networks . Despite my feeling , my English teacher eagerly encouraged me to keep a diary and write something in English yesterday . I read a scientific magazine a few days ago . I 'm a vegetarian , ( actually I 'm a pescetarian , it 's almost impossible to be a perfect vegetarian in Japan ! ) and it 's very rare here in Japan , many Japanese do n't even know what a vegetarian is ! I go abroad quite often and it 's not hard to find vege food in other countries , esp , in India all food is marked saying whether it is for vege or non - vege . Maybe I should open a restaurant for vegetarians ? ? I did n't go to work because of a toothache . But just after lunch , my toothache flared up . I hope my toothache can heal quickly . It is an English composition about studying foreign languages . Three Russian sumo wrestlers took some drugs ( marijuana , hemp , etc ) and then they were caught by the police . I want to learn Japanese . I 'm ready to help your Bulgarian . The Earthquake wreaked havoc upon the country especially in the Tohoku region . Nowadays , I see people smoking in the street . Today is extremely cold . If it is excluded , it 's all fun . I tried again and again . pas de volley , pas de vie . . . I know I 'm crazy but I love them and I really think they 're beautiful ! I 'm not sure if it 's cool or not , but he appears from the top of the fire engine ! I have a great spot at the front where the fireworks are shot , many workers are now setting up the fireworks . : ) I was surprised that they had gotten my phone number from a teacher ( not sure what this last part means ) But I am still happy , I am no longer worried about how I can attract more members , and that adds to my confidence . Now , I have to prepare the welcoming ceremony to let more freshman participate in the club . E - mail makes me feel happy , but uneasy and sad sometimes What does `` text contributions `` mean ? Is it something like ' This book is for Helen ' or ' For my parents ' , written by the writer on the reverse of the title page ? so it damages the hair . I want to improve my English because I like talking with people ; girls in particular . lol I intend to pronounce the corrections of this entry and be corrected by my pronounciation by a native English speaker on skype . I love spring because it 's warmer than winter . Yesterday I bought a used bicycle cheaply from a co - worker . That 's why I made plans to snowboard first . I do n't like to go the amusement park because the route to there is heavily congested all the time . because 2 days ago I hung out with my best friend I mean , for instance , at first they only detected oil in one place . Besides , before the petroleum was found in Daqing , it ( the region ) was a wasteland . Grammar and listening were more important than speaking for taking ( the ) exams . We are comfortable with each other . Moreover , I like the atmosphere of getting together with my family . I am now an exchange student of Bergen University in Norway . The document is very important for our work . We have to improve the service continuously . to evangelize the Pakistani people . When I heard of her story , I decided to be a teacher A way of thinking by Japanese is restricted by Japanese social convention without realizing . because the girls there are beautiful . We wrote calligraphy at first , and after that the teacher started teaching us how to sketch . today I met my older sister and her baby . I like the British spelling , pronunciation , and expressions as follows : sound in British English . tell me whether the British are more likely to pronounce it as ' I : ~ ' ? What happened ? For this competition , I needed gain weight so I would have some to lose . So I did n't fear gaining weight until today . : ] Secondly , `` t `` play more sports I decided to run 10 km ( about 6 . 2 miles ) per day , and to ride a bicycle instead of riding on the train . All the santa and easter bunny things disappeared and now , it 's only about eating . I have to put some money onto my rechargeable creditcard in order to buy the tickets ( for me and my friend ) online . The building has two towers . Tomorrow , I 'm gon na leave here for Ipoh by a express , KTM . Ipoh is also a city of Malaysia . I will try to write English and want to be able to express my thoughts in English . So I thought there is no problem if our store is closed today . I 'm very satisfied with that color I hesitated dying it . I have heard that the Maldives ' sea level has been rising as the Antarctic glacier melts . This also affects the animals and plants in Korea . So , we switched from the restaurant that we were going to go to , to the bar . All I need is courage . My computer is slightly old and slightly weird . Weird . . . I hope that my english writing skills will improve in the future . I would like to thank everyone who is going to give me good advice . [ First contact with an alien civilization ] It is not certain that we will see any aliens because we should have already seen some of them if they existed . It is certain that more and more people will visit and stay in cities because a lot of people in the world seek more convenient and comfortable lives . Of course , the number of computers increase and more people have the chance to see and use them . However , it is difficult for computers to become popular in all nations including developing countries . She visited my house twice a week and studied eagerly . I already graduated from university and my major was occupation rehabilitation . When I get up and look out the window , to my dismay , it is still raining . Rain has recently become common in most areas of China . In Japan this is called an `` American dog `` . This is not the case in the US I am wondering about the name `` corn dog `` , why `` corn `` ? ? I usually record music from CDs and transfer it into my iPod and watch DVDs on my PC . The device is an important tool for me to learn English through music and shows . I can watch DVDs again and it will help my listening skills ! ! Enoshima is centered along the coast of Sagami Bay . The region along the coast is called Shonan . Shonan beach is the most popular in Japan . Getting back to my main subject , I recommend two Ramen Houses . The book is full of unexpected twists and we do not know who the terrorist or the guardian of freedom truly are . And if you are not I would still recommend it because Digital Fortress contains an amazing story which drags you away from our gray reality and certainly changes your opinion about thrilling books . Indian food is like roti canai , which is made of dough tighter with some soup . MERRY CHRISTMAS Today is Chirstmas day , but I just stay at home ~ without friends ! What is a terrible day ! A foreign customer is coming tomorrow . Unwinded at the classic concert . Although it was Wednesday yesterday , the movie theater was full of the fans of Evangelion and many had to stand to watch it . I chose Business Administration when I enter the school . But I do n't want to give up , I will study harder than before . Do you agree or disagree with the following statement ? and co - workers is extremely good . recommend on television , popular TV programs and their children not to watch television . watch television all night . really unhealthy for them . avoid useless and noneducational information . My life seems like such a catastrophe that I could n't help but sob for all my past teen - life . Is it alright for a sophemore to dream anything about her future ? I work for an IT company , supporting on - line community developers like Lang - 8 's development vendor . I 've worked here for about three years . Our clients require us to make business plans to generate profits via internet communities . This job is difficult but it interests me because we can directly recognize the reaction of the users through our plans . I , however , want to learn more , and I know that there are azure , emerald and pale * . My older sister also bought a little turtle after she saw my pet turtle . There is a crown at a science museum in Tokyo . Trad Japan is one of my favorite TV programs . It explains many traditional topics with unique perspectives in English . His favorite pagoda is Touji 's ( one ) . The host asked another question . The host compared European church towers with Japanese towers . We have never heard stories about tall towers falling down in our earthquake - plagued country . I wonder if most of foreigners think they can climb Japanese five storied I had to mediate a conflict of opinions , because the employee was in trouble with the store manager for a couple of weeks . I have no plan to become a polylinguist at all , but I might have to study basic grammar and conversations in those languages . This weekend has been very boring . I have also sent an email to my director of my project ( the professor who advises about it ) . Now , I 'm waiting for a phone call . But I did n't have a cast , so I bought pudding . When I do n't have something to do , I go to the convenience store . But , it became a good memory ! ! The good news is that I can get home earlier , so I think I can have more time to type my journal now . It was the first timeseeing an university festival . . It was the usual time . I like reading novels and books on economy at home . I 'll go to another country to teach Korean language maybe for 2 years but I do n't know when I will go there . If I live in another country than Korea this summer , can you come to me still ? I have only heard of this movement until my company made us notice about it and suggested to participate . If we do it for 40 consecutive days , that 's only about a month and ten days ; we could save a life . She and I were supposed to go somewhere , but the weather is so fickle . Just a while back it was really windy and there was snow everywhere but now it looks as if it 'd never snowed . I wanna enjoy the weekend . kk Plz gim me advice ! This is a very serious problem . I spent a lot of time learning English to get agood position in the company and I am really interested in communicating with people oversea . Luckily for me , I have had a hope for the future since I found apurpose for my job , when I was young , I just worked hard without any suspicions to my job , because I thought that working in the company is our duty , even though the job is not interesting . He told us , because he thinks we are innocent , that he was willing to keep in touch with us . I have been studying English for over 15 years . I had learned , at language school , however I could not understand and I forgot . I use a electric dictionary and it contains some definitions . This time I thought it was good to use English - English dictionary in order to learn the differences . But the descriptions of silly , stupid and also foolish were slightly similar . And I hope to study English very hard ! On the other hand , 12 % people dislike obese people and this is less than the 16 % of people in 2003 . By the way , recently one my lang - 8 friends said that he dislikes female smokers . I will have my 20th birthday in two days ! A 20 year old girl , but I think I know a little about all aspects ! what a pity ! think of Willy Wonka and he got knighted . But if you are a person who is able to make your brain always drive on , I guess you are able to think about more useful things although it is different from person to person . I 'm a medical 6th grade student at a medical school , so I 'm busy preparing for the examination for medical qualification . I ate fried chicken and had a beer . For the two paper assignment , I need to write about four pages . I 've used it for approximately a week , I feel it suits checking feeds , watching iTunesU courses , reading some comics in bed before going to sleep . I 've done everything that my English teachers taught me to do : recite English words , recite passages , learn grammar , and do listening exercises to prepare for my exams . l am very uneasy . The idea that a person 's character is decided from blood type is wrong , because the fact is that there are n't relations between a blood type and a character has been proved scientifically . We have different personalities , and nobody can decide their character . I have updated my profile but I think it is not perfect . Please read the following : Today I went to a children gym . He usually plays with boys of the same age in the nursery school , but he can play with boys of different age too . After that , we went to a restaurant ( Big boy ) , and we had lunch there . After lunch I played MARIO KART on the Nintendo DS with my host sister . A Typhoon is coming . The wind and pouring rain made it difficult to control the motorcycle . My host family is Filipino I have a toothache ! I went back to my parents ' house in Japan for the New Year 's holiday . In Japan there is really cold weather and the financial crisis too . So I went to `` hatsumoude `` with my parents and I watched the `` Hakone Ekiden `` on TV . I used to have 20 - 20 vision , but now I need glasses . I enjoyed a pipe organ concert . Organs and pianos are so different . recently asked me about the condition of my car by telehpone . but all I can see is a rice field because my area is the country side . So I 'm not good at playing sports but I enjoy leisure sports . I want someone to help me with my English and Chinese . I 'm a Japanese computer engineer . So I try to study English by some ways , such as translating computer related documents on the Internet , reading a grammar book and taking lessons in conversational English . It 's a place where people with disabilities and children stay . It is my first English dairy today . I do n't know how to write . I do not have to go to work , I do not have any duties , except learning English of course . This morning he woke up early at 7 . I usually eat out because I have lived the single life for 9 years . It 's a very famous food in Japan , and it 's very easy to cook ! However each country has a different language even though the EU is one land . Which ones of the following sentences are possible to use ? I learned about O - mamori in English and Japanese , so I will write about traditional Japanese O - mamori . Usually , pieces of paper or wood are put inside a small bag or cloth . Later it enabled me to play my kids their favorite songs - - most of them were anime songs or nursery songs . I enjoyed speaking with many customers . Do you know at least three countries where more than two languages are spoken ? There are many new things , such as a dictionary , translation , and so on . I have n't written a diary in awhile , haha ! I know it 's really hard ( do n't you think so ? ) but I 'm just trying to do my best . The woman said , `` Would you like a cup of coffee ? `` `` No , it 's okay , `` I replied . By the way , I have luck with my acquaintances . The powder is in fact from China , but it is cooked with an Arabian touch . I think I did n't do my best . Today , my father will take her to the hospital . Electrical vehicles I watched a TV about electrical vehicles booming in China . The TV said that motor bicycles using electrical power are popular in China , so they already have a foundation to make batteries . I felt nostalgic . We tried to meet the professor and we were successful ! He remembered me . My birthday was on the 22nd of August . My brother lives together with his girlfriend and their dog , Mazsola . I was very happy because my boyfriend did n't have to work that day and he could be with me . If you read my former entries you may know that my boyfriend is a cook and he has to work 4 days a week , but he does n't know when . So after lunch , which was a bit late at 4 : 30 , me and my boyfriend sat in front of the TV and watched a cartoon , and my mother , my father , my brother and his girlfriend went to the garden to chat . After half an hour my brother took me to the garden where I blew of candles on my birthday cake . I was very surprised , but I was very happy . When we arrived at home , I immediately decorated his aquarium and put the fish in . He swims a lot and he seems happy . but something else means special . And its meaning includes good things and bad things . what do you do first ? I found I would be late for my German class . He has been fighting against cancer since last Fall . I 've grown up with his films , so as a Japanese , I 'm very proud of him being recognized around the world . ( A heavily edited and dubbed into English version of this film titled `` Warriors of the Wind `` was released in the 1980s , but it did not follow Miyazaki 's original plotline . Second , there was no heavy traffic , so I could get to destinations on time . But I like rural areas like this town , because they 're peaceful and there 's plenty of great food . In Kokugikan , audiences were being crazy about game . it means , `` I have no lover `` , and I want one . The person sitting in front of me complains a lot . . in which , Goku was being playing by american actor , When I was 19 years old , I watched a TV drama , ' Shiroi kage ' . It 's weird ! ! When I was in the military service , I took the opportunity to go out for only one night . The magazine which e took today 's articles will be on sale all over the country on April 25th . What is the difference ? I have many plans . It was Wednesday afternoon , I did the same thing as usual , did my work , drank my coffee , everything seemed normal , but a terrible thing just happened . . . . When I was typing on the computer and thought how I should respond to an e - mail , I noticed something strange , something was moving very slowly , when I glanced at the flower that I bought few days ago , I was shocked . . . I imitate my teacher 's pronunciation but I can not pronounce `` r `` , `` th `` and `` V `` well . And I can not pronounce and distinguish `` very `` from `` vary `` . Everyone hoped the happiness for the newly - married couple . When I see clothes that I like , I just wait until they have a discount . Hello ! However , I think , if there was enough time for me , I could get the right answers to most questions . You just prepare some vegetables and seasonal seafood , Last night , my sister and I sat on the bed and talked about her boy friend ! `` actually , a boy loves himself more than his girl friend , including my boy friend `` she told me not in my area : P I really wanna finish the training in there , and go to Heti ASAP . anyway , so far I really love it here , the pay is good , environment is great and the people there are so friendly ! I felt like I did n't need to worry anymore about mistakes when I am speaking & writing There is a traditional custom in Japan that a blood relation will pile up small stones to mourn their child 's death . And it 's a Canadian version of piling - stones ( cairn ) . I do n't like to be treated unfairly or unfavorably . `` So , he has a heavy accent which is quite different from Taiwanese dialect . Life should be on the go . Desperate housewives Her narration is rich in black humor . My work is boring in everyday life , but it is also difficult on my days off , because I am working in a park . Actually , I love my company , and considering the current economic climate , I ca n't leave . Please tell me how to play them well . . . My car was bumped . . . . My husband called out to me , `` Pass the salt ! `` I did n't know the why he wanted the salt , but I brought the salt box to him . Anyway , I felt tired and started to go back to my home . , On the way I saw a pair of really beautiful , high - heeled shoesthat were marked down . But when I was cleaning a shelf , some old photos came out and my attention shifted to it . I 'm not sure about Nagano ( because the TV news reports do n't mention it ) , but I can see from this blog that there is also big damage there . I do n't understand what he meant , but it is n't bad . Our 20 surfer friends were picking up garbage from the beach and sea . It is like a dream come true . `` Ciaooo il mi rammarico ! `` I studied English a long , long time ago . Now I lean ( Learn ? ) to Japanese . I planed to have a professional syougi player play an instructional game , but I arrived there later than I expected , so I could n't . Watched drama . I watched a drama that was recorded . This morning , it was cloudy . Anyway , I went to Niagara Falls last Sunday . My Japanese friends willingly accepted my offer , and we had a very nice time ! ! I wrote my first English diary here today . Recently in Japan , he has become a famous director . Watching videos on you - tube that Ellen appears in , it dawned on me that she got married to her girlfriend and it is out in the public . After knowing the fact , I felt awkward about watching her show because I could n't help myself feeling some discriminatory against the insanity of tying the knot with same gender . And I read an article in the newspaper that in New York , marriages between gay couples is officially legalized and it is becoming the fourth or fifth state where the gay marriages are allowed without being against the law . My colleague said that Chinese drivers ca n't understand even easy English . Sometimes , I feel so confused . All I hear are the sounds of typing and music . Everything else is silent as though people did n't exist ; as if I 'm not alive . Especially after getting married , as we have dependents . It gives us a responsibility to support them . When they started their business , they made many mistakes Finally , they succeeded with their business . It became their culture of the company . my website Chinese names is different from western names . I live in Shanghai , I have studied English for many years , but I still ca n't speak or write English fluently . I happened to meet a muscular man at a shopping center . He was speaking with someone by use a cellular phone and then he suddenly got angry in a loud voice I was a little scared and I thought he was so rude . However , I was wrong again . I also play the trumpet in a Jazz Band and actually I wanna be a professional trumpeter in my future . The new job is totally different than my old one . I had my hair cut today . Some says that radioactive revel around Kanto area is higher than usual on Twitter . Another funny occurance He turned around , ran out of the court hall , which was on thesecond floor , and ran along the hallway to the stairs . There areso many occasions like thisall around the world . . . It was an irresistible impulse . Although the summer was extremely hot , it was a short period during which I could 've seized the opportunity to get intimate with her . I have since returned to campus and the signs of summer are gradually fading away I checked the Japanese - English dictionary from the column of Kana syllabary . How can I possibly teach them ? In the end , I accepted their request . Happy Halloween ! I was sent birthday emails by my friends . Other specialists say that you should eat a light breakfast . What was interesting was that someone who wore an armband which had characters `` STAFF `` warned a man who smokes in the yard near my lab not to smoke there . I know there are so many differences between the eastern and western culture , so some people may think ( that ) I should n't be so worried . I have problems with the past continuous , past perfect and present perfect . `` You know why you are having problems with english grammar ? `` I asked , `` Why ? `` She said , `` The reason is that you are thinking in Spanish , that is why . `` You know what ? I think everything is going to be just fine ! I have been making progress now I feel more comfortable talking with people whose native language is English . I 've hurt my wrist She said she was 49years old . When I heard her age , I was very surprised because I thought she was around 70 years old . by the British government . UK economy shrank by 0 . 5 % which is a surprising result for all because it had been predicted to be between 0 . 2 % to 0 . 6 % . This disappointing figure is partly because of the extremely cold weather in December , but it is said that public spending cuts have also affected the UK Although it is important to tackle the huge debts of the government , I think it is also necessary to reconsider the amount of spending cuts and make sure the economy will continue to grow in the future . First , I think I should introduce myself . I showed reluctance to go on to a Japanese University So I want to go to an American University . After graduating from an American University , I want to work for a foreign - officiated company . Happy new year ! I went to my grandmother 's house . Otoshidama is present money . We just played one game because we were so hungry that we could n't wait for dinner . In this job I will be a supervisor of sales , although it 's new area to me , I ca n't wait to try it out . So I have to take her to the hospital in the next city . she is one of the Japanese popular singers and I love her very much ! I had to practice dancing every GW so far , for I belonged to the dancing club . I could say that Ayumi Hamasaki is the most professional and artistic singer in Japan ! It is the first time I am writing in my diary , too . I dreamed / dreamt of hugging her , telling her I 'd missed her so much , and she just smiled at me without saying anything . The dream is so warmly unforgettable because I could see my beloved family member and tell her how I had been missing her . When I was born and growing up , my grandmother cared for and encouraged me all the time , and now I think dreaming of her will surely bring me good luck . I was embarrassed . My teacher saw that I was making an effort to solve the questions . His advice is right ( * ) , but I thought that I was expanding my English knowledge through research , reports and presentations . The gap between my recognition and the ( this ? ) objective assessment , caused me great shock and disappointment . Learning academic words is also an important issue , so now I 'm looking for a nice word book . Some TOEIC word books might be good , but academic vocabulary is a little different from what TOEIC handles . . . ? I am majoring in Japanese in Taiwan University . In the second year , we had all Japanese class up until now . I think English is an important and an international language . I think we can teach each other our mother tongues . ( why I am writing a English daily but with all the Japanese in my head ? In February , my friends and I will go to Singapore for sightseeing . Maybe Lang - 8 will be a suitable place for me to learn English . That movies main characters name is ' BEN ' ( starring Will Smith ) Please tell me about some recommended movies or books Do you have some recommended movies or books ? One of them is General Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the future by the use of Relativity . But , There are problems going to the future . The problem is that if you run at light speed , Friction of the air sets you on fire . You can go to the future when you solve these problems . So light spread as watering and light is composed of particles which we do n't watch . Light has quantum nature , Solves many physical phenomenon . Material which has quantum nature is only light . Light is very unique matter . I 'm a house wife but my family let me alone and prepared food for me during those two days . What I realized as soon as I looked at the school gate from across the crossroads was that the construction next to the gate had finished . I tried to watch supernatural online , only to find that the site had been renovated and I could n't watch the latest episode . . . . In addition , I write a diary in English for the first time . I will have a conversational English class at night . When I was touring around Paris , I could see a lot of beautiful places , including classic and old buildings . I did n't have any Indian friends in Taiwan , before . But the type of rice is different from that in Taiwan . Every ethnic community has their own character . ( its own character ) Beautiful sunshine and comfortable breeze What is the difference between `` other `` and `` another `` ? What is happiness in your life ? For you , what is the happiness in your life ? Because if I thought otherwise , I would become unsatisfied . Everyone was excited and we got NO . 1 among 12 classes . I was born in Tokyo and have been living here up until now except for the one year that I attended a university in London . I want to make foreign friends . I must study English hard because English is an important tool to communicate with foreign customers . Dear teachers , please kindly correct my sentences if there is bad grammar , wording , and so on . . . I could not write my entry yesterday because there was thunder and lightning last evening . For example , a guide , a translator , an interpreter , and a teacher . In that Avenue , there is held `` Pageant of lights in Sendai `` every December . My friend and I seached somewhere where it is quite to study the Chinese and Thai language , we have not found a good place so , yesterday we studied at a Macdonalds shop but there was a lot music and a lot of students do thier homework . and I asked her about her about in Chinese they have a kungfu she laughed and said that she has a different type than in the movies because they ca n't spin in the free ( air ? ) or a roof like that . I really nice when we talk , good thing we understand each other some times I think she is Thai because she tried to speak Thai with me alot . `` And let 's start to speak up when people are assailing us with the noise that I played you early on . `` Her kindergarten class was on a one day vacation because sports meeting was held on Saturday instead . How difficult is the TOEFL ? I hope that I can apply for Master this year , but I am afraid that I wo n't be able to apply in time most schools ' deadline are in March . Why is English so difficult to study ! During the test I could understand the lecture , if it was about an unfamiliar field . Come on , you are 15 and grown , why do such childish things ? I 'm a graduate student studying architecture and urban design . I want to go abroad to study architecture , urban design and landscaping in the future , so I need to study English . Although it was not matter itself , I was interested in urban design and landscaping , then I decided to study it . After I went to the grad school , my desire became stronger . In grad school , I 'm studying the development control system of England . The Japanese planning system refers to the European one . After graduating from grad school , I wanna go abroad to study . Although I think that , it 's important to work in society firstly before going abroad . I want to go to the University of Pennsylvania in America to study how to design . I do n't like to wait for anybody . The Marilyn Monroe picture is world famous . Yesterday I looked into an apple store with a friend of mine . All the merchandise displayed in the store had sophisticated designs . I wannna study abroad someday , maybe in America or Britain . Recently , because of the pressure comingfrom all over the world , they are asking Chinese government to rise the exchange rate between RMB and US Dollar . At my current job I work long hours , I ca n't take consecutive days off , I get home late at night , and the pay is small . . . . Moreover , because I 'm tired out , I do n't feel like doing anything at all on holidays . I am ( almost ? ) 30 , and I am thinking of the future seriously . So sorry for the complaints ! It 's comfortable . I need a slight professional point of view . Therefore , they overcome the weakness by the influence of alcohol . I wrote Taylor 's interview 's dictation for about one minute , but there is no way to know if they are correct . So , it 's a really cool balance of them being completely supportive but never pushing me too hard in one direction . We do n't see my brother and my dad as much , because they stay back home in Tennessee . It 's really good gauge for my actions . Back to the JDORAMA 's valuing jobs : whatever they may be was really pointed out in them . Their Japanese society 's portraits showed that whoever you are you can do the jobs . Like in Gokusen : she 's ( who ? ) a teacher who also works on a construction . In Yama Onna and Kabe Onna there 's a lady who can buy expensive bags that are sold , but yet she works as a saleslady on department store . We took Line 3 again and we went to the same but still interesting restaurant again . We strolled around the campus again . Finally I bought anipod touch . Since I came to this college , I no longer complain unreasonably when I have to do something I do n't want to do but am forced to . I am supposed to be responsible for my own actions , speech , and emotion . When I get hurt now , my parents are not about to support and encourage me . I must shoulder the burden all alone . studying , and working condition I must establish new personal relationships among my classmates and think from an adult 's perspective . However , I have n't totally converted myself from my previous state to this new one . I tend to escape and avoid this reality often . I frequently ignore that I should take a solemn attitude instead of inappropriate expression in formal situations . Consequently , We gain maturity , deliberation and confidence as a boy becomes a man . But I ca n't feel these in my mind . Maybe I have n't grown up at all . By the way , In Japan , thanks to the mass media 's biased broadcasts , people who love manga or anime are called `` otaku `` . My favorite song in his album ' Human Nature ' is , `` Billie Jean `` . Her job is a policewoman . She is a policewoman . Although it is only the 1st day we talked a lot Of course , the taste was so delicious . He is a very energetic and naughty boy . It is his favorite . She is in kindergarten . During this term , I want to communicate with them a lot and be close to them . Do you know an inexpensive but good restaurant in Hawaii near Honolulu town ? Seeing dolphins , eating hamburgers , reading books on the beach and diving into the sea might make me free ! ! What else should we do there that you guys recommend ? After the class , I retouched a famous musician 's picture , and some other tasks . So , we 're choreographing our dances . It is difficult to choreograph dances for me , Now I 'm still at work , but I ca n't concentrate on my job : ) The little turtle replied , `` I will , if you do n't drink my coffee . `` Particularly young people love it . Slowly , but surely . I am a university student and I 'm majoring in economics . Affluence does not always gurantee a happy life , because people with a large affluence do n't think often on the problems which they may have , when they live as they like . Because of their high standard of life , they buy what they want for a better life and eat what they want to eat . especially in the U . I 'm addicted From my experience , I know that if I begin breaking the rules like this , I can easily give up the / my plan . We could become addicted . It 's a simply quiet and peaceful place . You can see children playing with puppies , and people are sitting around enjoying their breakfast while talking with each other . However , you can only have a simple breakfast when you are in a rush worried about traffic jams in the morning on workdays . I always write a strange diary , and it is different than my thoughts Sometimes I went to clubs or parties with them . Day by day we became friends . I got a feeling that tonight is going to be a good night ! tonight is going to be a good night ! I 'm so excited right now . I do n't know why , I am lazy , I have no plan , I only want to chat with foreigners to improve my English . Actually it 's not good , I know , I am young , I should do something for society , I will change myself . English become official Language in Japanese company in the future ? ? ? Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since Japanese market is shrinking due to the reduction of population . But it 's a little bit controversial because it 's very rare for a Japanese company to use English as its official language . Even successful Japanese companies in different contries like Toyota , Nintendo , etc have not set English as a official language yet . I think people who already study English like us in Lang - 8 do n't think it 's a huge burden . Anyway It must be very difficult to achieve goals because English is rather difficult and doing a meeting or making a report in English takes a lot of time I wonder how they prepare for its goals . If English is understandable , you can get more chances in some way . But I refused answer because I did n't put any make up on my face . I missed a good opportunity to talk with him . But when I told that I am 38 man , almost people disconnected immediately . Almost every time , I lied that I am a 15 - 19 girl from cali . People would come up with the stupid idea of comparing them . Hahahaha I want to run so badly in the next 21 kilometer marathon in Tijuana with my official Japan shirt and that my brother wants to wait until the end of the world cup to see the list of rankings . Although Japanese people are becoming aware of the environmental issues , yes its gon na b last day of skool tomorrow in this term n after tomorrow , I have couple of week days off : ) well I got punished by a teacher today . . . hopefully tommorow , my last skool day is gon na be awesome not like today lol bye I was so lucky that the bus was not crowded this morning . To my surprise there were not that many mistakes in my diary , which re - ignited my enthusiasm for writing . Japanese university entrance exams are very hard , so I have to study as much as possible . I have enclosed all required documents except the affidavit of financial support from my company . Some people agree with that opinion but others disagree . However , there is n't any chemical seasoning in the foods made at home because individuals ca n't buy the chemical seasoning . We can also see the process of making the food , thus if we eat food in our home , we can prevent serious diseases and become healthy . Although she looks weird all the time , I still like this character . I want to travel to Canada . During summer vacation , we want to travel to Canada because we have never been to Canada . I often hear that there are beautiful nature spots to visit , like Niagara Falls , in Canada . This Diary is English - Learning - Record and Life - Record . There are many books . I will read books I borrowed in my school 's library , surf the internet like lang - 8 , go somewhere with beautiful scenery , etc . There are many sources of knowledge . Today young people not only use books to gain knowledge , they also are search for it in journalism , on television , on the radio , and through meeting with other young people . The refrigerator has a function that makes ice cubes automatically . So I decided , `` I will get an iPad at the Apple retail store on FIFTH AVENUE next month ! `` . It is important to guarantee opportunities to recieve fundamental education to everyone . Many people think that politicians and high society want to keep education expensive to maintain hierarchy . For example , Waseda University , one of the best private universities in Japan , has its corresponding high school , junior high school , elementary school and even kindergarden . If your family is rich enough to send you to Waseda kindergarden , you will not have to worry about future academic competiton . Simply , most Japanese people do not consider education important . Most companies do not consider academic backgrounds of prospective employees from humanities departments . I did n't know that , so it surprised me . He also showed me the neighborhood , like where was the nearest ATM machine and where you could got a bus ticket . During our short trip , I saw a great view when we passed the Saskatchewan river . There was a clear blue sky behind the bridge and I saw a beatiful river and green area . Basically , it took 35 minutes though , I made some minor mistakes and took 50 minutes . The faucet was very rudimental but it was quite difficult for me to control the temparture . Although I was quivered a little bit ( ? ) , my palm was hot and thumbs were working . I am afraid that I will become busy , after the class and internship - program begins . When they they told me they planned to go to Europe , they asked me about my experience , and especially about how I made specific plans all by myself - - from the list of cities I 'd hoped to visit to ticketing , transportation , and accommodation . It reminded me of memories of / from my own trip . I won 8000 yen after 30 minutes , so I will buy Dragon Quest 9 . Today , I attended an editorial meeting for the academic journal concerning gerontology . Because it is my strength . After graduating , I worked as a military officer . At the same time , I 'm the second leader of my company . It 's to be an Internet marketing professional . As of now , I 'm looking for jobs in a private dormitory . First , if you live in dormitory you can save a lot of money on food . The public library is so close to my dormitory I do n't need to take a bus to it . The third and maybe even the biggest reason for living in a dormitory is so I can live freely without my mother 's repeated talk . Dreaming about my future , I 'm studying in this small space in the dormitory . Additionally , starting this week the tempurature has been very low , so it makes it more hard ( or harder ) for me to get up early . First of all , I achieved the goal to pass the examination for CPA . These days , I have read The Japan Times and The Nikkei Newspaper via internet andwrote some diaries like this in English . Although I had time to touch up on English and studied English autonomously when I I really , really want to make a friend who can teach me . . . I 'm fifthteen and I 'm staying in malaysiato study art . Yesterday it was repaired by one of my best friends and it is normal now . Generally , I spend all my spare time with my computer every night , but when my computer was broken , I had to watch I like one channel named HBO because Yesterday , I came back from a six day trip with my friends in Paris . Yesterday was very good timing to come back Japan , because now a big and powerful typhoon has been travelling towards Japan , and many flights are being cancelled . Im from Russia , and I live in Moscow . I like to chat and speak with people from different countries . I dream about Japan and Ireland - I want to go there very much ! And I like Germany very much too and I would like to go there too . I did n't have a fever , but had a cough sometimes . I love animals ! I love animals . Dogs are always very affectionate and kind to people . I want to work in the World Animal Protection Society . So I have to study English very hard . Eating dogs shoud be banned . Ok first off you guys SHOUUULLLDD already know that I 'm a respiratory therapist . Today I was assigned to the emergency room , which was FULL . Well I never expected a lazy day there but it was busy as hell ! Headache caused by bad smell . I ( and almost all passengers in the train ) was surprised and confused at the strong and weird smell . We guess that one or two of the members bring rain with them . My friend introduced me to the job , so I learned the what to do from my friend yesterday . I hope that if I keep working out and swimming it will do me good and it will keep me & nbsp ; healthy , mentally and physically ^ - ^ Nowadays , my mind is stuck . . . Do you have any hobbies ? Would I call them `` hobbies `` ? My mother regrets that I do n't care for her . My family house is in Chiba . Until today I have a lot of heavy tests , so I all I did was study , study and study ( I cut down even on sleeping , these days I went to the bed at 5 : 00a . m . and I still went to university I 'm going to do one or two more , and then if I have enough time , I will draw some pictures for Christmas ; - ) But my colleague told me that `` I will put you through xx section . `` Me and my school friends can see cloudless skies from my school . However we could n't . a park in the begining of winter I feel refreshed . Since he is living alone out of Korea as an old bachelor his parents have been worried since he came to the US . My idea is that love is always changing . . . , last month I had a kind of BF . They say the Japanese have good manners , but I think this is not correct . Now , there are more than 4 ' VOCALIOD 2 ' characters , and some PSP software of ' MIKU ' is available . However , sadly , we have n't met each other since her wedding . quarter pounder I definitely hope that she lives as long as she can . I did not learn English diligently at school . Also I 'm corresponding on ICQ with people who want to chat in English . . It 's from Star Trek . the following is from a radio show . I studied a lot there , and now I 'm really tired . Coffee farm workers should receive a higher income . An acquaintance from the other lab said to me , `` I heard you have become a chon - mage man , and that was true `` when we met yesterday . tomorrow I work again . First of all , I want to express my deepest appreciation to my nice friends who helped me to correct this . I 'm really honored to share this short story with you . My friend Kazu - chan was stabbed to death by his skiing associate when he was a third year junior high school student . I was so relieved and I deeply thanked him for his brave deed . He said that he would need fried chicken , some Umebosi - rice - balls and sausages for his lunch . I went to see the doctor for my broken leg . So I had the chance to see my leg bone again . Shall I say hi to it ? Having seen the picture , Doctor was not very worried . It was really wonderful that I could see world - famous table tennis players playing just in front of me . But my English is incorrect , My sentences is very foolish . I ca n't create good sentences . I have a question about English grammar . Writing an essay is a little difficult . Because this is the fourth time I have attended this test ! Still , I getEnglish . I think learning languages is an interesting thing ! Now I am listening to , `` Born This Way `` by Lady Gaga . She is such a cool women , is n't she ? But the only word I know to describe her is `` cool `` . I am a person who always looks on the bright side , and enthusiastic self - motivator . A barton relay the most interesting of all the competitions . Although I have skype and msn 's ID , I really do n't use it . I usually go there by motor bike . We learned about passive phrases . The next class was about comparing different cultures . ( Sato , the cartoon I watch recently is a Japanese one named Detective Conan . With tighter and tighter relationships between each area across the whole world , any change that occurs in one region can influence the rest . I am not sure what the Chinese economy will look like in the future ; can we keep our rate of growth as fast as before ? She is annoyed about the difference in culture . She did n't do good research about American culture . I have read an American newspaper . The most important thing that I should be careful about is that I have to speak English well , and talk with Americans well , too . I heard from my friends that if you make a mistake in English , they would become a little upset if it 's at fast food stores or restaurants . My co - worker has comprehensive knowledge of computers . ( thanks for checking my letter , God bless u . ) You want to disappear . Everything in under your control . I was trying to know your sorrow , the details help me realize your heart , Today it 's your birthday , Are you happy ? ? I am happy to celebrate your birthday in my blog . Michael J , I just want to say thank you for you . I was very happy . but I have not received a lot of mail . I like drawing the best , watching movies and listening to music too . I thought many street vendors would be preparing their shops . Marco , a Italian guy I had met in LKF in June , texted me back finally . These distractionsprevent me from concentrating on my work at my desk . I often hear a phrase in songs which is `` never be the same `` . It was a comedy , but it was very touching . In colder countries , moccasins kept peoples ' feet warm . The difficulty of learning English for Japanese people But as I am proving that I am capable of grasping Japanese in a short time , I feel that my English is getting worse and worse . However , she is very naive and gullible , so that she gets easily deceived by other people . Durian smell was not good but , , the taste was good . Eating durian was a new experience to us ! If I have a chance , I wanna go there again . I am so tired , and do n't know what to do . The doctor advised that he stay off his right leg until the pain is relieved . I was n't going back to my hometown on the 31st of December , so I accepted it . I look like a telephone appointee / operator , because I am always wearing headphones and a mic / microphone . It 's been a long time since you went to hospital . Whether you forgive me or not , it was definitely my silly mistake . She said that she misses me , and she may possibly come in October , but only for a weekend . Shikoku is noted for their noodles , the hot springs and the beautiful nature . I made a lot of friends there , including our leader Rick ! But I regard integration courses not only as a social political measure for foreigners , but also as a place of learning . One definition of learning is to change human actions through new experiences . If I run into a foreigner , they are giving me a kind of smile . I bought an electronic dictionary at electric appliances store . Tomorow is a big day for our school because we will be celebrating its fiftieth aniversary ! But I had just ran a 5000 meter long - distance race ! It did n't seem like that long of a distance when I was first told about it . Now I am in the internet cafe . You might ask me `` What have you achieved in 2008 ? `` Even if a non - native speaker speaks incorrect English , we occasionally understand what they want to say . But native speakers occasionally ca n't understand what they want to say even though we understand it . The drink is so sweet , and it feels like I am taking in 1000 calories . now I 'm interested in fitness . after school , I 'm going to `` Fitness First `` which I heard , is most popular gym in australia . The concert was Base Ball Bear 's . But it was unexpectedly difficult . Anyway , one thing highlighted for the next semester is that I 'll have to start up the preparations for `` job - hunting `` seasion , which I think officially starts next year . For our office , we usually buy toilet paper through the delivery service of office supplies , however , because the earthquake occured on March 11th , this service had stopped . I went home late . I normally prefer to wait for my friend at the company . However , because she had a lot of work today and I realized she was going to stay alone at the company for a longtime . Are you sick or something like that ? Maybe that man will gossip about my ugly face ! I like him because he is very kind . To catch the information about Web technologies , servuces , etc . I 'd like to continue reading books . I hope I can communicate with people all throughout the world . Because he is not so good at mathematics . I really need to appreciate him . International School . . . ? In the world around us today , we are surrounded by a variety of technical mechanisms and tools . Starting from the eighteenth - century , the development of technology has never ended , and has advanced faster than ever today . Technology such as air - conditioners and electronical dictionaries do lead a much more convienient life than ever . Some people might argue that technology undermines the relationship between people because once we are developing and using the technology , we forget to keep in touch with others , and that is the `` convienent ( ? ) `` character of technology that makes people more careless about the way to get along with others , thus , everyone feels lonelier than ever . I am in charge of 26 cosmetic shops . I suggested that the owner analyses how her customer buy a commodity and apeal to nighborhood for shop 's existance . My English name is Betty , I am fifteen years old , I like music and sport . Of you ( who read this ) do n't mind , please give me advice . I 'm going to visit my mother in law 's house this morning . After the final exam , I have to find a job for the summer holiday . I have already been working for four days , but I still ca n't focus on my job . I don ` t know how many people in Korea can speak English fluently even though somebody has n't lived abroad . I was shocked , and I looked back myself . I 've been so lazy , and I did n't do anything to get to my goals . Once we want to achieve great success , we have to invest our own ability by over a hundred thousand . Because of my school studying , I have little time to browse the internet . In the following days , I will do my best to update how I learn something everyday , but it 's possible my schedule might change . Two are for writing . The high - potential young guys asked questions . `` What kinds of computer languages do we need to know ? `` , or `` What are the most important things for working here ? `` I just wish that they would recognize what curiosity means . . . I am taking a English lessons . After I woke up , I turned on my laptop . This is an amazing place ! I hope that I can improve my English writing skills and make some friends here ~ These stories are so gorgeous and moving that many times I could n't help crying . This is what I translated while watching the drama , Lie To Me . This was made in Korea just for someone learning English . I could n't approach you . our business plan is clearly spot - on . We took a boat that had a clear bottom and saw many kinds of coral , fish , and so on . Although I have always wanted to go abroad , I think that there are many great places in Japan too . The design is similar to foreign web sites . Do you guys care if your brothers or sisters were older or younger than you ? When I ask `` Do you have any brothers or sisters ? `` to you , you might answer `` yes , I have two brothers `` . I mean a lot of people I met do n't care t whether their brothers or sisters are older or younger than them . Oops ! similar to me . My thesis is on the director Hayao Miyazaki , He was born in the 1941 and grew up in the post - war years . We can see in his works most of the time , the protagonists are strong , independent girls or young women . In Spirited Away , Chihiro is forced to survive in a bizarre spirit world , and had to work in a bath - house for spirits after her parents were turned into pigs by the sorceress who owns it . Kiki is based on the novel of Eiko Kadono , and tells the story of a small - town girl who leaves her home to begin life as a witch in a big city . I researched the program later on the internet and I found out it was a long - lasting program , but each time the topic changes . of course its beneficial for me . before I would drink almost everyday . `` Saki no yu `` is a hot spring with a very beautiful panorama . I feel that the hot spring is very relaxing . My ears are very cold when I ride my bicycle , Something substantial like `` beauty `` or `` money `` are reasonable for me . Articles are tricky ! ! I talked on skype with John ! ! I will call him again after I can speak English fluently . Not a hamster . The reason is `` there are no chairs `` . After waiting for the bus for about 40 minutes , the bus finally came to the station : ) ! Yesterday , I did the presentation about my research ( computer circuit design ) in front of my professor . I went to a training center with my friend today and worked on my weight untill I can be satisfied for the first time in 2 weeks . Tomorrow is a national holiday , I decided to take the three days to travel . The customer often says , `` Our system needs these functions . They said , `` I have never seen such a huge swine `` , but actually , the size of those pigs were normal for us . The prizes for participation are a T - shirt , a bun and a carton of milk . In fact , I want to have a new smart phone . I 'm just a human being , not a machine . I don ` t understand how you can distinguish between present perfect and present perfect progressive , etc . . . I watch movies without Chinese subtitles to listen and speak English . I am interested in the energy policy , especially , eco - friendly energies such as wind and solar power . My mother is a full - time homemaker . These days I often think Japanese noodles are good . I consider myself a patient person . I like to help , and enjoy teaching . Today , I went to the beauty salon and enjoyed a face massage for the first time in a while . After a meeting we went drinking with my colleagues . I 'm not good with cold weather . My hobbies The expression is perfect for me ! Celebrate for my marriage . `` Newton `` informs us of many kinds of scientific things . I want this fascinating magazine to go on forever ! Recently my wife watches a SMAP 's DVD every day which was released on December 8 . I would like to learn Engligh for travel and communicating with others . It makes me sad because nobody believe me . it might be a bad thing because many men would like a women who can cook . As I get married , it would not be good for our relationship because if my husband did n't like my cooking , we would have a problem if I could n't make a nice dinner . So I ate food , took some medicine and a bath . Then , I went to bed early . I know very well that English is so important to me , so I hope you can help me with my English . I have a plan that I 'll go to Japan to study law 2 years later , so I must study hard , and I will . But during interviews , when I am asked to describe myself in English , I always become nervous . My friend organized free tickets for us but because we went parasailing in the morning , we did n't have enough time to go there . I am jealous that site members can write such good Japanese composition ! ! To take an ojek , a passenger should go to the ojek pool . I can help you with Russian and you can help me with English or Turkish , if you want ! yet we sometimes regret . Just compare merits ? Just listen to advice ? But the result was the result , so I must accpet it . ( 2 ) Students who are expected to graduate from high school at March of 2011 . ( 3 ) Students who have ( an average grade ) higher than 3 . 4 Japanese grade points average ( maximum 5 . 0 ) ; 3 . 6 japanese GPA for students who apply at the faculty of law ; and 4 . 0 japanese GPA for students who apply at the college of technology . It was cold , but we felt hot . because we could earn that money with our feet . From now on / From this point on , I will prepare for the written module . I am not familliar with classical music , but I think his music is very beautiful and touching . He was n't embarrassed at all with such an unusual girly outfit , so I thought he was completely miles away . After all it said and done , I feel like my body clock is very strange ! Every year is representived by an animal in Korea . I will also run around the neighborhood every morning . The topic of whether we prefer to eat at home or outside in restaurants has been widely debated in our community recently . As a consequence , this will lead to a very inefficient life . The people eating at home may have sufficient time for their favorite interests than the former . Besides , we can cook dishes according to our own appetites if we prefer the food to be hotter or have less sugar . This is the best way to learn foreign languages . I want a man who is ambitious yet family - oriented . I read Japanese blogs which are popular each day . But I 'm not satisfied with those because there are few blogs which treat politics or social subjects . Mostly they treat a subculture or talk about the writer 's life . He advised me on many things I will try to study English This morning I am tired from lack of sleep . I think my cousin is a night person and she feels vibrant around that time . I must learn business english . It contained pork back ribs , carrot , onion and potato . ( back ? ) Today , I went shopping near by station because today is national holiday in Japan . so I went my home rapidly . I was cycling along the river with Yuya , who was riding behind me and shooting camera with a lot of enthusiasim . We run and run and run through these people . Anyway , I will keep trying my best . Electric utility expense rises these summer . So lots of things will rise too . Studying history . Yesterday I started to study Korean history again . I prepare ( d ? ) some things to study like a Korean history book , a reference book , a laptop for searching some subjects about which I might want to know more on the Internet , and a radio for listening to AFKN which has a lot of good popsongs . I think I live in the happiest time of all human history . After I get it done , I 'll study history again tonight . So , I recommend that you find your favorite , and make ( good ) use of it in your life . I have nothing special right now to write about and I 'm determined I must stay up all night for my schoolwork which is due tomorrow so I 'll finish writing now . Swine flu has spread over my city . I started learning Hula this February . I am on summer vacation , but I will have to make a graduation thesis . Hm , sounds stupid ? I was so proud of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my family twenty years ago ? After work , I went to my boyfriend 's house and we met out in front . I traveled carefully . It 's been raining since last Sunday , and according to the weather forcast it will rain until next coming Saturday . I have experienced rainy seasons so many times in Japan and Thailand . Each rainy season 's characteristics are totally different . But I 'm pretty sure that humidity makes Toro sick . Today , it 's a public holiday in Japan , I confirmed and called office of English Studies . When I 'm thinking about this , I sometimes think I will go the UK and meet her . I want to talk with the members on this site in English very well . ! ! When I was a junior high , one girl who was not my classmate came to close and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an answer at all but I managed to say that . When I was in college , one of the exchange - student who came from Canada , he asked me same question . He apparently denied me . I went to BORDERS last sunday with my friend . I love this feeling , calm , , , and cool ! I think there are many different people and cultures in the U . S . etc . . As you know , a person 's personality is different from everyone else 's . But oddly enough , my blood type is a little similar The reason is that we can order by phone call and get delivery service . Naturally , their intonation and pronunciation does n't sound familiar . I was quite shocked about their carelessness and horrible food . It is very rural . I love Yamagata because I can relax . I had a violin competition this morning and went to my violin class this noon . I have to write about Japanese actors using computer - generated characters , about why I think adults in Japan read comic books , and about whether I prefer fiction or non - fiction books . That 's why we are working longer than other developed countries . When I stayed in the US , I often heard people saying `` that is my job . `` I think there are two meanings in that sentence ; one is that I will take full responsibility for my job and the other is I will not care about other people 's jobs . Today was a little warm , _ so I irrigated the field . Hello , I 'm adaobi ( not my real name ) . I practiced it but they look like crocodiles a little . At end of the year in Japan , we have a custom of having a meal with someone you had business with . I think this custom comes from the saying `` All 's well that ends well . `` Tomorrow I need to deal with a customer who really gets mad at our product . . . I was disappointed with that . Because I love playing soccer . But , an individual is important for an alphabet culture country . I think it is very important to think deeply well , would you like to make / be friends with me ? I am the only person to deal with legal and compliance affairs Actually , I don ` t understand all the lines of the characters , because I watch it without subtitles . Just to see the local merchandise , and the people look vigorous there . My breakfast was sunnysideup - ala - Thai , fried bread , and coffee with condensed milk . the street vendor cooked two eggs in a metal saucer which is just the size for two eggs . The coffee was really sweet , half coffee and half condensed milk . I should n't have stirred . I think he was also embarrassed . It is definitely part of dynamic relationships with him , but it is not so easy to control it . A ceaseless effort to improve yourself makes an unchanged value throughout your Just now I received the acceptance letter for my poster from the conference committee ! But such consideration is a dangerous myth . I said , `` Congratulations ! ! `` . I 'm afraid of opening the windows in my room because it 's very cold these days . Japanese famous actress , or infamous celebrity , Erika Sawajiri suddenly announced that she decided to divorce her husband Tsuyoshi Takashiro , so - called hyper media creator ( though no one knows what his job is ) the day before yesterday . Moreover , stating that he did n't know what was happening with a desperate pale face . By lights , it was a bit strange that Erika , who is a beautiful young lady , married with Takashiro , who is over 40 's and not so good looking with an ambiguous and suspicious job . I think , however , Erika 's abrupt decision without contacting with her husband was really cruel . Although my situation is too ordinary to compare with this case , I once experienced a sudden break up . There were 7 members altogether . . It 's Sunday , and it 's hard to see in northeastern of China in winter , but I have many tasks to do . Some reports ( about computer , assembly language ) , and some electrician reports . It 's must be hand in tomorrow , so I have no time to go out . First , we drove to MeiLing where a company 's broadband network was wrong . We found that the fault point had n't been there , so we drove to Zhongxi and fixed it well . I think they 're definitely great . Each character has their own special accent and it confuses me . I begin to study English with this site . A mikoshi is a portable Shinto shrine . It 's much heavier than it looks . My shoulder is still aching . . . Anyways , there are so many clothing stores in Dong Wu Yuan and all of them are terribly cheap ! By the way , I 've been studying about what is the best kind of industry for me to work in after my graduation . I 'm considering about my career plan , but I still have almost no idea . Many university students have been doing job - hunting every day . In Japan , first of all we have to write `` Entry sheet `` ( Resume ) to the company which we chose . Also , we have to write the reasons for our applications , self - introductons , and so on , into the Entry sheet ( Resume ) . Now I attend a translator school and an interpreter tour guide school . I watched `` super 8 `` , which was produced by Spielberg yesterday . In a sense , this film is very Spielberg . T . , Jurassic park , War of the worlds , and other Spielberg films . I must be careful of unconscious habits . I 'm going to Nara for / on a school trip , so I wo n't write any journals for four days . I am studying at a foreign language college now . She does n't wash dishes , she does n't throw away trash . . . I visited China for sightseeing this year . Actually , some opinions expressed in these museums are problematic in Japan . After watching the movie , I felt that the hero is very genius . We promised to go camping this in summer ! All of them They all called themselves Tiger Mask . My experience is that I have learnt English for many years , however , I still find my english skills are not good enough and it is also difficult for me to use a new vocabulary . I have memorized lots of vocabularies , but the diction that I used is still very limited . After 45 minutes of driving , we got to the field . We had a primary school performance . I can insist that a greeting is absolutely important when studying English . Second , there was pronunciation training . The pronunciation 's role is also important when we talk to others . Because listeners can understand our words when we speak to them correctly . Every time I contemplate the fact , I think it 's interesting . Even though we are far from each other , we can still chat about everything , such as our feelings , our life , our work . this afternoon I reached the downtown to buy some computer consumables . A lot of groups go to the Aquarium just like us . dealing off the bottom The police searched out the evidence that the two companies have been dealing off the bottom . - Communicate with collaborators until you get confident with your results and interpretations . Some of us are a stumbling block , but we believe God is our rock . Will you help me to learn Thai language ? I am going to the disaster area next Monday . I see a pile clothes and I question myself , `` Why do we wear clothes ? `` Finally , it 's better that we should wear clothes when we get out of the house . / ( go outside ) But Is it common word ? It 's such an exciting game for Disney fans . And my eldest sister promised to buy me a bag which is worth 130 bucks . Everyone knows that each country has its own unique and fantastic culture ! so I decided to walk from the school to the station . A foreigner who is married to a Singaporean . Foreigners ca n't buy new HDB flats in Singapore , even if they marry Singaporeans , in short HDB flats are for only Singaporeans . I 've never done this before , but I reckon it 's going to be quite helpful . . . My mother was more scared than me so I comforted her the whole time . She was a completly stupid girl who had spent two years in an American jail . She spent her life in an American jail . My father goes to Pachinko for his entire holiday . It 's a buffet party . I was surprised by her energy ! So I tried to find a way to buy the previous model of MacBook with a US keyboard , and finally I decided to buy a model from the US Apple Store . With this marine sport you can experience speed and exhilaration by riding on the water . I was very surprised . On the fifth day , I packed souvenirs for my friends and my family in my suitcase , I prepared to come back Japan . In short , he has an concise policy . I had an optic test . I want to change my character . My name is Kaori . I 'm going to school tomorrow so I hope for good weather . Since he is currently staying at Zac 's house , I can talk to him every day along with Zak . When I was in junior high , one girl who was n't in my class came to me and asked , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an answer at all but I managed to say that . When I was in college , one of the Canadian exchange - students asked me same question . English work interview Recently I applied for a job as assistant to the teacher in cram school . If I conform the conditions that were asked for there will be a interview . what is the best response ? And I lacked preparation for this challenge . Of course , I 'll try the second challenge . Next time , I 'll pass Grade Pre1 on merit and not luck . I want more of an American atmosphere to a fast - food restaurant ! But the whole restaurant is an important place for me . I want to enjoy another country 's atmosphere . So I want to ask them to sell toys of Ronald and his friends at McDonald 's . I 'm sorry , this is a negative diary . I have been learning English since last summer . To learn is my brain 's training . and I want to talk with foreigner . Yesterday when I spilled my cookies , he ran to eat them as fast as an F1 car ! It is said that Toriyama Akira , Dargon Ball author , was It is difficult to become a famous cartoonist . Only 2 % ( in all ) cartoonists can become real / professional cartoonists in Japan . What do you think about marriage problems ? My friend who is a 28 years old woman is thinking about getting married . She said that he is the perfect guy for her ( and they are having a good relationship ) , but she has problems about his parents . According to her , her boyfriend care about his parents a lot . On the other hand , I do not think that they can solve it after getting married . Every couples have a problem , because we all are different . My friend and her boyfriend are keeping a good relationship , so they will be able to accept his parents . Honestly I think that she has too big a problem for her and she will regret to get married several years later . My English did n't make sense to her . I will go to shopping to get some groceries . And l studying English at language school in Brisbane . I want to speak and understand English more . Many people were studying very hard . Afterwards , we went to Doutonbori . He smiled at me , what a pretty baby ! I still remember the feelings . . . But my mother said `` Korean women tend to get plastic surgery . `` I made miso soup and another dish . The miso soup was a little bit thick . In the past I wanted to be a chef . I know I should n't go on this , but I hate studying at home . Result is . . . listening 78 / 100 Grammar 32 / 100 Today , I finally get back to school and my dormitory after an 18 hour train journey . when I travel , writing a letter is one of the things that gives me enjoyment . My English teacher is old , but she is very strict . I got a SHOCK ! > < ; I was very disappointed about this . . . Usually they sell the books at a 50 - 70 percent discount . On March 11 an enormous earthquake happened in north - east Japan and an enormous Tsunami was generated . This incredible huge natural disaster caused extensive damage to the cooling system in the nuclear power plant . Japan is one of the top level industrialized countries , the government and nuclear power companies repeated that using nuclear power is safe and no problem . People against nuclear power in Japan were even seen as a little politically extreme . Now , the accident is still not under control and the mythof perfect technology is broken . One day Sarah decides to go to Norway and surprise Jim . there were always some retired people chatting and kids playing downstairs . I made a decision to buy a house and I moved to a better neighborhood in late 2007 . Chocolate truffles , scones and gateau chocolate The topic is ' international marriage ' . I wil read my old diary and try to understand it again to help me be good at English in the future . Although Internet is more and more popular among students , there is no doubt that book is an vital way for studying . All of my servants have gone , they already go home when the Ramazan holiday come . and my mom do n't want them to come back , cause they are thieves , they stole some of my stuff , and often steal some food . I am lucky girl beacause I know about this site I hope meet friend on this website There are a lot of tasks I have to do , and I have to be thankful for the actual status under this economic crisis . We have rolling blackouts tonight because there is not enough electricity . I think he urinated frequently because of the psychological stress . I am writing a Master 's thesis now . Moreover , every user has been friendly and very kind . And I hope that Lang - 8 further develops in the future . I 've just finished watching this movie . Tomorrow night , I will speak to my friend in English with ICQ . We will discuss different themes : religion , music and jobs . today , a frend of my girlfrend introduced me to lang - 8 , and , it seems to be a good website . I thought there would be a clearance sale because it was President 's Day , but I realized that I did n't have any money to spend for myself . I hope I do n't catch a cold Maybe just a little bit , but I think they are so I want to continue writing entries and improving my skills . Another thing is that I 'm writing about different things in my entries , so in fact , there is n't just one topic . RIGHT : He , the hero , has already gone on his trip . This could be a one - time - only lecture or consecutive lessons on regular basis depending on the company . Yesterday , I asked / consulted the weather center about the average wind velocity of the area where the building is located In order to accurately predict generation performance , I will use CFD and geographic software . I need to do more research on the feasibility assessment of generation . But from now on , I will try to write one diary everyday to improve my written English . Written for the first time But , interestingly , I have to call a American professor of my university Mr Duggan . He conducts a class entitled ' Linguistics . ' The reason that I joined this website is to write a diary in english . To be honest , I think I do n't speak english very well . I hope to keep practising english and speak it well someday in the future hopefully I can get the help I need here by asking many questions . If you have a question , I will answer it to the best of my ability . One meeting , one opportunity . He can learn about our culture through Japanese folk tales , too . They want to drive with their friends , and that is breaking the law . It seems that their difference is power . Perhaps they would get nervous in the fight so they could n't use their power and techniques because they are polite and gentle guys . Of course , the owner keeps the apartment clean so that there are no bugs at all in my room . I was so hungry but there is no food in my refrigerator . I have ramen , instant noodles . After coming home , I tidied up the room for a moment . I 'm going to watch a movie and write a movie review , read a book , play with my pet and study English until dinner time comes . This is my first english diray , I am very excited , I reside in Chengdu China . It 's a very _ _ _ _ city , hehe , panda country , have you seen kongfu panda ? I thought that I should e - mail my Japanese friend to ask him / her to come . Unlike the other species , humans have culture . The other day , I got the result of theTOEIC Speaking and Writing test which was held last month . They are open on a national holiday . I thought he might be angry . . . . . Otani says that `` The evolution of an insect is very fast . Humans have great intelligence , but insects are more great than us in vital force . Six years is such a short time that we could still remember each other distinctly , yet such a long time that we all amazed at the changes that had occurred among us . Our teacher was an energetic and humorous young man , and he still is now . sorry for any incorrect english However , I think that it is not the case . Moreover , I suggest that our lives are occupied with what passes for leisure in our society . Today is wonderful , sunny day , but I have no spirit . I feel sick . What should I do ? The reason why I got such a good grade is by studying many English words Fortunately , today is Friday ; I can have a rest tonight and also on the weekend ! I listen to English on my / an MP3 player when I go to my company . What kind of MP3 is a good choice ? Hi everyone ! first diary I live near the Urals mountain in a big industrial city . This is school of design . We told them about it , and they advised us . Yesterday the worlds famous movie director Steven Spielberg talked about East Japan Earthquake at an interview in Paris . I went to Singapore to attend a conference from Feb . 25 to Feb . 28 . To quit smoking seems like something impossible for a heavy smoker . Yesderday , someone went to my Blog and left me a comment . I am very weary . I have to writea diary that is attractive to readers so that it can be corrected by someone . To pass another car , I must handle the controls carefully . Recently , an unrealistic politician has become an issue online . The government supports poor people financialy . The day before yesterday , a politician who agrees with the current policy wrote an article on the web . He only ate fast foods - due to lack of money , and he did n't consider other factors such as phone bills , electricity bills , transportation fees , etc . I read an article on newspaper recently . this is my first time here , my classmate told me this place , today , so , I came ~ She thought that her life was boring . I did n't find her life boring . It was common , calm , but not boring . She recollected her previous life and realised that it was good . We should find joy in our everyday lives . I could n't express what I feel in this post . But , some of my Chinese and Taiwanese friends does n't like him since he has a dirty mind . . . Japanese companies often evaluate one 's score of this test when university students are applying to their companies for a job , so it is important for us to achieve a high score . This test includes written and speaking sections , so even if you are native English speaker , it is very tough to get a perfect score . I had n't really talked with her husband because he looked really tense when he came over to my parents home . I can understand a little of the movie with japanese subtitles . There are a lot of countries in Asia such as China , Laos , Vietnam , Cambodia , Burma , Thailand , India , Srilangka , Pakistan and Nepal as well as Korea and Japan . So many people are suffering with unexplored bombs and mines in Vietnan and around the Tailand . I do n't understand why we are fighting each other because of different identity , sex , race , class and religion . Several rock bands had exciting and passionate performances . It brought strangers together in a common interest and it represented young people 's attitudes towards life . I moved to Haruyamachi ( ? ) , Mizuho ward in Nagoya ( ? ) city . On the way I go there , I drew 100 thousand won out of my account by card . In comtemporary society , the amount of information broadcast by media such as internet , radio and newspapers Newspapers play an enormously influential role within the whole media . I do n't know this function well yet . So , I will often use this useful tool : ) I commuted to English language school and stayed with an Australian family for two weeks . My part - time job is at McDonald 's . does erratic mean really bad , harmful ? A human being is a lengthwise creature , so you must always keep balance . I was wondering about applying to your school for admission in hairdressing . I think it has not finished receiving applicants yet We were confused because we thought it was supposed to be in the mall not outside the mall . After going to the hospital I felt better about my anxieties over ticks and skin issues . Why do all the non - heterosexual people have to make an extra effort to do anything . I 'm angry with all these people who are talking nonsense against gay marriage . I 'm extremely angry with all the people who says things like `` it 's unnatural `` or `` it 's against the moral concept of family `` or rubbish like that . Homosexuality is not an illness , but homophobia IS . I am hosting my support group , which helps facilitates our lifestyle , in my house today . There are for people who want to improve thier life for the good . I want to go to Hawaii ! I am looking forward to the weekend already . Please tell me how to be more positive . I want to get along and keep in touch with him in the future too . Now , I am thinking of starting to work part time , so I have a question : `` How often do students ( like in universities ) in other countries do part time jobs ? `` In Japan , from what I know from my friends , many students do part time jobs and spend many hours on them . Does this mean that I am very dependent and childish ? I am worried about this now . There was too much water on the floor ^ - ^ because it has some important features such as Contactless IC smart card , You said you would treasure that clock forever , but you 've gone against our rule again ! I wrote my last entry without checking it , so in the last paragraph were many lower - level mistakes . I finished my journey in Australia and got that job vancancy in BAHA after going back to Taiwan . And the song that I am going to be cover is called You Can Win . Today , I played futsal with my co - worker . But unfortunately , I am overweight and have a wider waist . I am a middle - aged man . I heard about Lang - 8 from my best friend ( love you ! ) and I became interested in it . I keep saying that I only study English this time ! ( ? ) I wanna change my job and it requires me to speak English ! I 'm writing this diary with a translation site . Before writing my first journal , I read a lot of entries that other lang - 8 users wrote . I remember seeing it years ago and I was really impressed by the story and characters at the time . Many kinds of fish , freeze dried , half dried , salted , and fresh , raw fish . But still , I 'm excited I 'm on vacation . When trade tensions heated up in the 1980s and early 1990s , these years became known as the era of `` Japan bashing `` . It was my choice . Then I bought a Chinese phonecard at Peking Airport but in Tianjin it did n't work . I 'm not newly graduated anymore , you know ! ! `` was what he said . Well , I 'm glad that I 'm one of the very first people they think of when they 're in trouble , but please , 3 calls per month is just waaaaaay too much for me . . Ever since I started listening to Mariah Carey 's Memoirs of An Imperfect Angle , I was deeply attracted by these kinda music . It has a convention hall for 1000 people and eight banquet halls . So I started a wild English project . Beautiful spring ! Spring is very beautiful ! In this season the flowers bloom , grass sprouts , and there are green trees . I had thought that reading practice and having conversations with my wife everyday were enough to master English . So since one week ago , I have started ( doing ) listening comprehension exercises there . Now , I ca n't understand what the announcers say at all , but after I read the texts , I can understand them . Inspiring quote : `` Possessions do n't define you , your lifestyle defines you `` I can say that from my personal experience I carefully monitored my life . English Conversation I have started to take lessons on English conversation recently . He 's so talented because he can play the guitar , violin , and piano . Usually , I 'm not a casual sort of person but They are newly opened malls ( department stores ? ) . There are many people there . I often see Japanese woman with foreign men as couples . Japanese men are not popular with foreign girls ? But , the club chief is planning to have some parties regularly after the dissolution . Perhaps because of age ? I will play tennis in this afternoon too . However , I conquered my self / emotions at last and tried very hard , and became one of the best workers in that factory . Meanwhile , I try to find the weaknesses in myself and try to be optimistic towards life , even occasionally somethings will happen unexpectedly . As some famous people say : we can not change anybody else but ourselves because we have to realize that in these hoards / masses of people there are without doubt many kinds . I like your display of courage but at the same time , I envy it . Quitting my job The food was wonderful and the people were very friendly . I sometimes go to coffee shops such as Starbucks or a Doctor Coffee . What is your favourite season ? Major companies start in April , so my neighbours will move soon . I would like to make a special ( ? ) day for my 2 neighbours but I have n't hit upon a good idea . I thought that the meaning of mature was to pretend that you have a high status , to handle everything with high efficiency , to keep steadfast with my principles with high profile , and to treat those who are younger than me well . For example , cleaning up campaigns and collecting trash in the street to contribute to society . I also have to carry all of my luggages to my new house tomorrow . Before I re - entered Singapore , I withdrew two hundred thousand Japanese yen in Japan . Why does n't anyone correct my diary ? pleAse correct my diaRy . 5 . A momentary separation . Because he slept all day . midnight crying So tonight I will sleep soon . The bank was pretty crowded at the end of the month . I hope to give someone the chocolate next year ! ! I went there early in the morning . and the rest was the endodontic treatment . We will need more time . `` Miyajima is an island , so we took a ferry to get there . The other day , I decided to attend an English school called Presence at Omotesando . I will write here regarding the progress of my English skills through the English school , `` Presence `` . Because people who speak English very well are cool in Japan , some Japanese people try to talk to them in English . Modern day people can use the internet , thus they can easily contact their families and friends and can watch the broadcasts of foreign countries . I really want to ask English teachers living in Japan , please learn at least intermediate Japanese , because Japanese students really want teachers like that . I do n't have any complaints that they only speak English during lessons , it 's essential for us , but sometimes we need explanations about English grammar or difficult expressions in Japanese . It 's always interesting to learn something new , and I personally like studying foreign languages . This week I 've been feeling like I live in Siberia . Fortunately , the snow began to melt . I brought my mobile items . ( laptop PC , G - shock cellphone , Android phone , Voice recorder , Handy video camera , Anyway , I made today 's an appointment . He replied , `` What ? `` with a frown on his face . I 'm Sho , a college student studying engineering in Japan . Well . . . and I like listening to music as well , especially foreign music , for example Linkin Park , The Used , My Chemical Romance and so on . Gee , I should n't have written about New Year 's resolutions . Anyway you 'll see how my resolutions go around June . because I moved back home last summer from another prefecture look for a band partner in my city . I like my city but I prefer Canada to Okayama because I like North American culture , customs and music . Child abuse I want learn to English ( I 'm a beginner ) . It is very expensive , but all my friends said that if I buy a cheap one , I 'll regret buying it and will buy a new one very soon . I want to decorate my wedding party with many beautiful flowers . Now I am in Chain China next to the Hong Kkong area . We were once in a primary school . Also , I understood I got close to paradise or heaven in a different way . In those days , the most interesting thing was maybe fashion magazine . beautiful clothes and shoes . I remembered that when I lived in Japan I had a lot of trouble with the language barrier and customs . TOEIC is the English test . Yesterday , I stayed up late at night . So , it was unusual for me to wake up that late . Especially my father does n't believe in God at all . An interesting day The weather is warm and sun is shining . In this bus , I meet three foreign students , one is American , one is German and another is from Holand , they want to visit `` Tian an men `` , but they did n't know how to get there . what a good chance for me to practice my English . What an interesting day today . The school provides one on one lessons . I talked with a native speaker . The picture is of a SHOKADO BENTO ( It 's a high quality lunch ? ) I was exhausted while making a 100sheet presentation file using the power point . Recently , during a protest to condemn an ineffective legislator there was 67 years old man who painted the house of representative 's roof . By January 1 , I received a lot of New Year 's cards sent by my friends and relatives . First of all , you can see different types of Japanese culture in Tokyo . My mother usually buys dried bonito and shaves it when needed . My hobby is playing the guitar and singing . Lang - 8 is amazing ! ! The game was held very early in the morning in Japan . I 'm really relieved to hear that . I am suprised that I got the pass mark in my CFM EXAM , the LAW EXAM result got a high mark as well . It feels strange , funny and interesting . So I finally noticed my bad behevior . ( acustomer ) ( ? ) I decided to try to close my computer immediately after I finish writing in my diary . Many people think that time passes quickly when you use the computer . Now I am going to try a lang - 8 marathon ( I named it by myself ) My love is always something strange . This picture is from the Kumagaya Fan Festival . If you have a chance , come over next summer . I saw two idols today . But , he made every endeavour to speak it , and at last he was able to convey his feelings . Moreover I find that my sentences are too long and it is difficult to understand . this is my first post on this website and first English in my life . I especially like Krispy Kreme Doughnuts a shop opened in Shinsaibashi . That is amazing to me because I 've never been abroad before . He always makes me happy . I am good at mathematics so I easily understand the subject that relates to mathematics . The benefits of this website are not only learning languages but also making friends . I called him when I heard about the incredible disaster with the earth quake . I just called my sister and I found out he is working very hard with very little sleep . He is kind of shy . . One day , he told me that Japanese Self - Defense - Force was trained for disaster relief from earth - quakes and tsunami . But , unfortunately , the worst nightmare has come true . . . helping thousands of people to the safety - area before the tsunami hit . I thought the way it tasted was different from how my boss makes it . Then , I realized my mistake . So I 'll make the sauce again this weekend , and perhaps a Hollandaise sauce too . She became sensitive . He explained her that Michael had the same disease as she does but he is cool and became famous . She was encouraged by him and recovered her confidence . Can you imagine if your color of skin changed ? ! She and Michael are brave people who got over their own disease . . . . . . the garden of a nursery school A nursery school which I can get toon foot in 15 minutes , opens its garden for children . but I never thought that there were very mess ! ( ? ) Meaning most people were cheating on the examination . I always consider Chinese students quite smart ! Yeah , of course they are smart ! But it was not fair to cheat on the exam , right ? That 's unbelievable ! I can read English stories and articles , and I know many English words , but it is very difficult for me to listen , write and speak English . . . Sorry about the negative outlook . There is a simple answer ) ) Congratulations ! I 've already worked at new work for a month . I have been asked to translate this ( below ) into Japanese by my friend . I can not translate . Can you translate this sentences into Japanese ? But I 'm happy anyway because it 's SUMMER ! ! ! The correctee might have believed that those were right . Oh ! That 's great ! To solve the problem , I believe that young people should go overseas to study , travel , help developing countries and so on . I think it would be better to lower the air conditioner . And I regret a little bit that I did n't try to ask in detail for alternatives because I barely understood what the clerk was saying . He spoke too fast to catch it ( all ) . I know to handle a thing like this ; you have to be proactive and patient . Oh , being in the States , feeling alone , it 's just hard to handle it . I went to this course , because I can read English text ( not good , but I can ) , and I can understand English speech ( worse , but I can ) , but I ca n't speak it ! Recently I wrote new year cards for my friends , and put them into the post . It was a loud thump . . . In my spare time , I have broad interests like many other young people . I ( usually ) study for a long time , so it is important that I find a more convenient coffee shop for studying . Additionally , it lets us use the AC power , so we can use our laptops there . A lot of my friends are worrying about their future , because many companies have decided to cut their costs so that they do not need to recruit others to join them . I also worry about my future . I have been working as an intern in an international company for 2 months , but I 'm not sure I can stay there . The reason for my call is to confirm the shipping date . I am working in Procurement Department . In addition , jogging after working became my hobby too . my husband does n't think it 's good . I might be more strict with her about money , rules , and study than he , , We will go to Belgium from 29th August to 3rd September . I work in the Jewellery department and my partner works in the fashion department . About Libya . I have heard much news these days about Libya . And I also heard that many countries are concerned about the exodus of Libyans . From what I 've heard Tunisia was no longer able to deal with such a influx . But I think he does n't feel much responsibility because he said Libyan people love Libya and Gaddafi . It 's ridiculous . Suppose that a girl has loved some guy secretly for a long time . You are interesting . ' I 'm Japanese . If you watch the news on the tv or internet , you will get information about the nuclear power station in Japan . In my opinion , I think we should close that , _ firstly , it is too dangerous and we can not control radiation . Secondly nuclear power stations could produce some nuclear waste . We also can find other resources to replace nuclear power , _ for example solar power and coal and oil . In the case of Shizuoka , Yakisoba ( grilled noodles ) is a very famous food . David Coverdale is one of my favorite singers because his voice is adorable . Many people are fascinated by his voice . Nowdays , many hotels offer a discount price , it would be cut in half . Could n't understand ! ! ! I could n't understand English or organic chemistry . I have n't written a thread in a while a while . Usually it is / it 's warm over there , because of the sea , but that summer , the weather was either cloudy or rainy . but recently I really ca n't have confidence so much about my English skill . I do n't know why they can remember vocabulary so much ! ! ! umm anyway I have to study more . After arriving there , she did n't want to get out of the car and cried very hard . The teachers were worried about her . I thought she just wanted to ride in my car more but could n't . . . . I 'll keep watching next episode after ! ! ! ! ! I could n't go outside because of the typhoon , but today was fun : D These two movie stars are the beginning of my study . I 'm suffering from a migraine . It 's something like a migraine . BUT I WHEN FOUND OUT THAT HE SHOULD COUNT THE QUANTITY OF SYLLABLES IN THE LINE , THE DEVIATIONS FROM METRE , PECULIARITIES OF GRAPHICAL FORM AND RHYMING SCHEME . . . The wall , the table , the counter , and all of the stuff are made from ice blocks inside . Even drinking glasses are made from ice . I like to write a diary entry but this is my first diary on Lang - 8 ! I have known about Lang - 8 for some time but I 've been nervous about writing a diary on Lang - 8 : ) I 'm learning English in several ( different ) ways . I am reading a newspaper , ' Student time . ' I watch web TV , and so on . Hello ~ ! ! Foreign Friend ~ ! because , I have freedom . Meeting my friend , eating nice food , sleeping a lot , studying English , I do that too ! ^ 3 ^ I 'm going to take part in Hana , where I learn English speaking with foreign people . On a cold day , I feel like eating a hot food . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` eating . But it was put off due to the big typhoon . I wanna write a letter for to host family . In Melbourne Because this is my first opportunity to go overseas and Melbourne , in Australia , has a lot of nature . First , we got on a plane for the Gold Coast , where we then transferred to a plane for Melbourne , then my host mother picked me up and took me to her house . We have three classes tomorrow , to teach us what Melbourne has . I gave it to the station cleark . Recently , I 've been addicted to eating crackers . In Beijing , I have a lot of trouble crossing the street . Actually , compared to Japan , Chinese drivers drive very fast and roughly . Today , we sold the same frypan again . My favorite color is blue . Today is my first visit here . A case in point is Edison who invented the light bulb through numerous experiments . What 's more , he was n't defeated by frustration , and he also said , `` Failure is needed and it has the same value as success for me . `` I plant vegetables in my veranda . Last Saturday I had my hair cut . Chris Moulin of the University of Leeds , you can induce jamais vu through semantic satiation , which means basically fatiguing a patient 's brain by overexposing him to a word . After reading the aforementioned info , I wonder whether there could be some implications for language learning over the short and long term . Today is april fool 's day . In the usa , people usually fool their good friends to make everyone happy , because the old generation does n't like it . In their minds we would be very impolite if we do that . Tomorrow we 'll have a outing . My company organised it . We will go to a famous and beautiful place , and we will see a panda . I am so excited and I 'm really looking forward it ! I always try to broaden my perspective , which means I can not easily answer any kind of question just from my knowledge . Even native speakers have a hard time writing something abstract , what it will be for a Japanese kid to do so ? Although some emotions and morals are still cryptic to my age , I was touched and just ccould n't stop the tears because of the beautiful regret and the heart - breaking ending . Are people in modern society losing their moral values ? Some of parents are very aggressive . In such tight situations , teachers find it difficult to provide good education and teach good manners to children . Youths learn very naturally how to respect their seniors . Each of us has to recognize the importance of morals . After I posted my journal yesterday , I regretted a lot because I wondered if my journal entry sounded offensive to some people . I want to say that English helps to express my emotions more easily than Japanese . I suggest that there are some cultural differences there . I am nearly forty , I work for a company and I am a department manager . M every day except saturday and sunday . Because I ca n't type a letter on my PC . . . . SUMMARY OF QUALIFICATIONS Um . . . . see the Jeepney in Manila , Philippines . . . They always give you an uncomfortable face when you hit ( bump into ) them on the road . Of course , he did n't hear that , and he picked up his hat I had hit off . As my college is in Kyoto , I usually only go around in this area . but , I am going to Tokyo to take a seminar for job applicants tomorrow . Thus I think that I would be busy , but I think that `` busy `` is an evidence of one 's living life to it 's fullest . He used to work in a sushi restaurant when he was a child . But she said `` I have never used it because I have a poor background . I want to speak English fluently and I want to get a job in London . I was a bit confused . Today I met my new roommate , who came from England and worked in Australia . He went to New Zealand to work and just stayed here for a couple of weeks . Actually , I do n't want my roommates to change constantly . Best regards / Minato because I think it 's not interesting and there was a typhoon then . My room was a little messy before . Oh . . . I forgot to write that I 'm not lazy ! ! So my room is good now . Of course I know there are a lot of mistakes . Well , I just signed up . I hope that with this web site I will improve my English skills . However , I received an E - mail from the community center , saying my reserved books have been prepared , so I 'm happy . I am born in Jiangsu pro China , so I have no chances to communicate with foreigners . Eating is important . Well . . . to be honest , I am totally broke . . . So now , I will be open and flexible for any financial suport from any of you ! Anyway , money is not the subject now . The more important thing is to have great and unforgettable memories with my freinds during each trip which I hope will cheer me up sometime I 'm upset or depressed with my work in the future ^ - ^ while I ` m taking lessons , I put my usb to a computer and study English from Eigoduke There must be a certain relationships in which you tend to hesitate to leave a comment unless the topic is absolutely familiar with you . His full music video will be released on the 21th . They pretend to be intimate with us when they need our help , why are n't they satisfied by our benefits ? We talked about various things for two hours and had a wonderful time . I 'm a student at Hanshin University . Someday I hope to play the guitar . However , I definitely am going to enjoy my life there . . . ! We are going to the selection football - soccer match when the American Cup is in Argentina . I often meet my friends to watch TV . I came here today ( yesterday ? ) on business . Most of his works are painted wide lonely landscapes with tiny objects such as houses , , boats , animals , trees . . . His first illustrated work ' The white bird on my bench ' has been published in various European countries after which he won many awards . I want to have the ability to help somebody easily . The sweat was pouring off my body . May this new year bring you many opportunities along the way . Because , when we caught up witheach other in my English lesson , I told her about the changing of my way of thinking these days . She also took the class to improve her pronunciation . I talked about some topics including international marriage with her in the car . I 'm a university student learning about architectures . Last month I visited London for 2 weeks . This is the first abroad trip for me . co , I would like to apply for the position of a Service Quality Manager . My ring finger bone was broken the other day accidentally , during a soccer game with my students . I attacked one students by accident The next day , my left hand turned pale and a litle bigger . It 's now a chance to strengthen my right arm and hand . I always love my mom but sometimes I lose control when I start talking to her and I become crotchety with her . I act crotchety but it 's hard to keep my composure with her . It would be very bad if I had to be with others in that time . Actually , my son is always being mistaken for a girl in china . This weekend I 'll take part in the National Computer 2 C language exam , but I have n't prepared well , so I do n't have confidence . The third question was , `` Describe one of the situations in Picture B `` . I went shopping with my mom . And at night , I went to eat curry rice in a restaurant with my family ! ! I am going to introduce Japanese folklore to you . I had watched Supernatural previously but now the season already finished . This is a really good hidden taste except for one thing : it takes a long time to cook soffritto . The received items are white belt , shirts , and black cut and sewn . It will be an unique ceremony . By the way do you know Turtle Talk ? Otherwise , The sentence does not seem to have enough meaning and structure . I can understand the teacher speak but I ca n't answer questions correct . There was a English Promoting Test at the end of the month in my academy . My teacher said , But your writing is not good , So I recommend you write a diary `` ( I ca n't remember it exactly , , ) I did n't see fear from radiation in their faces . Especially in past 3 months when a big natural disaster has happened and the affected people need help immediately . I question why my country does not allow both strong and long administration . In addition , Japan has a mono - cultural society so I think Japanese people tend to be affected by the media 's opinion easily . I want to travel to Europe , Australia , New Zealand and so on . Mah - jong day This weekend Then we talked about our jobs , hobbies , marriages and so on . We had several opportunities to speak English , but I do n't speak it well right now . I am convinced I will speak very well in the future . Within a few days ' time , we had to quickly switch to wearing cotton - padded jackets . I study very hard here because English is not my own language . A : I have a lunch box everyday . However , you enjoy hot meal there ? I am watching Criminal Minds on TV . I need immediate answers to these questions . No one can live without peace , which means that the Palestinians can not live but only try to survive . First I have to decide a specific goal , for example to pass one qualification , to take an exam , or to get job . Second I have to plan until I achieve the level and I know I I have to do this thing in one year , so I have to start today . It is most important that I continue that thing . My small objective is to go to an overseas university to study next June for 10 weeks . My daughter 's school is having a field day tomorrow . I ate stuffed chicken carsarole ( ? ) sounds like that . I resulted in eating too much . I very much want to improve my English I love to play with friends , plus singing and dancing . Could you tell me about your favourite music and singer ? Japan is the second biggest economy and the biggest economy of Asian countries . For example Japan is good at making video games so a lot of young people play video games and enjoy them . ( enjoy video games ) In today 's class , we talked about `` the unnecessary things in the world `` in English . But I do n't have any plans to go the sea . Because I have too much homework and I also have a test for tomorrow . . . . I 'm working at a restaurant because I need to pay the school fees . I was running , dodging many people to get a boxed lunch at reduced price . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more uncomfortable . To teach my students mathematics . If I did n't have it , I might have fallen behind . But , I wonder if young game lovers can understand them . Today , a foreign friend gave some advice to me . He said , `` I just hope you can open your eyes to the possibility of meeting new friends . `` Today , we had a trip with my father 's friends . My major is English language and literature , so I like English language and literature , I began to write in English daily . Because I want to be good at English . My teachers and my classmates never called me by my name and they always used to call me ' ' hergiin ezen ' which means troublemaker . I was called a troublemaker because I was a boy who always used to get in trouble and got my classmates into trouble . The journalist published a newspaper about the celebration of my school 's 55th anniversary . On the top side of the newspaper , there was an interveiw of our school director , but below his picture there was a picture of me peeing into the corner of teh school building . she was a young American woman . I asked the person that the scary mails , , , , she said to me `` you dont need to be worried about it , and you should believe in yourself . `` Lang - 8 has deeper communication , too . Sometimes even companies have a kind of sport 's day in October . Do you have a such kind of day in your country ? Recently , I have taken box lunch with me to my work place . We ordered lunch specials . After I got inside the store , I wound up buying things I would never thought about buying before . Unfortunately , my puppy hurt his left leg yesterday when he was trying to jump across a bush . But it is important to talk to each other , well thinking . baby are you down down down . . so0o leave it behind cause we have a night to get away . . . so0o leave it behind cause we have a night to get away . . Koreans have a lot of fun cheering in the streets but today 's match is too late . the frist video and this second video are a little bit different . . . If people ask you do you know how to cook Pad Thai , Now , I spoke to an American who lives in New York by chat . I would like to help someone 's dream to come true . It 's a fantasy and dreamlike . BLESS JAPAN I hope the Japanese soon have peace . God bless you ! I think music is a beautiful performance , it 's something essential , like a type of language . * I would be grateful if you could tell me how you express this because I really want to learn how to converse naturally . It 's so fun to play here . She said that it is a good site to study languages . But I am required to write a daily entry . But , I 'd like to be a programmer . The day before yesterday was Midsummer Day of the Ox . I went shopping with my daughter . People talked to my daughter because she was wearing a princess dress . These groups can not inherit if the prior rank inherits . Oh ~ God , he changes his mind like a girl changes clothes . Even if I achieve that purpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studying paper tests do n't help me speak English and learn English expression . Studying language steadily is very hard . I just looked up `` progress `` in an English - to - English dictionary called the Longman Dictonary . I think it happened because I changed my diary 's title style . Winter is ending , and Spring is coming . It makes me feel more powerful and it 's fun . If you have better idea , please talk to me . My skin had a blotch , and it was abscessed . So they had to cut it open , and mundify it . I appreciated all of our members singing . But since I 've returned to Japan , I have been drowning among huge amounts of information spoken or written in Japanese , and I recognize my brain is going to melt . . . . So , I decided to take action immediately ! I will be very happy if I find lots of friend here to communicate with and get achievement for my dull brain . Speaking of the airport , I found out about a new `` ticketless system `` this time . The media says that the public has the right to know about the private actions of famous people but the media does not have the right to ruin their family 's lives . I often eat out , such as at McDonald ` s . Now I 'm watching a TV program about the Hubble Space Telescope . Mein Vater ist Beamter . My weakness is my impatient character . I like to travel around the country to eat at famous restaurants . Certainly , the dove is an emblem of peace . The explanation about the exchange rate in cargo Insurance In case you fill in foreign currency in the application sheet and require the payout of Japanese Yen , the exchange rate to the payout is the rate agreed at the time of payout . Please be advised ahead of time that due to exchange rate fluctuations , the exchange rate at the payout may turn out to be less than the rate at the time of application . Actually , writing this diary is the first time after graduating elementary school . 2 Whisper of a thrill , there is no sense living your life without it . 5 Okay , stay open . Therefore I will have to take a bath alone in the near future . Yesterday , it was a little bit cold . Today , I went to primary school for one teacher ( physical education teacher ? In a podcast program about how to wisely choose lite and free apps , I heard something weird : My topic of research is `` spider silk `` The research is difficult , but I want to study more about this silk ! ! especially , I look forword to eat Temmusu that includes a fried shrimp into riceball : P Konstantin could not slept with her and came to me lol . Therefore we ( the employees ) have to work late everyday . So after Koizumi retired , the succeeding prime ministers ( Abe , Fukuda , Aso ) suffered from the poor legitimacy of Koizumi . Later today , I 'm going to treat my classmate to dinner . Yutori education system failed I suppose this is what the journal 's writer wants to achieve . I used to use a dictionary for writing sentences in English . I did n't want to make mistakes and I do n't know a lot of vocabulary . I usually check my sentences with a / my dictionary . When I cook a new dish , I follow the recipe for it . but next time I could n't make that dish again without the recipe . It 's been a quite long time since I had a great time on Christmas day . When I woke up in the morning , I felt that I was n't in good condition . My body 's temperature rose up to 40 degrees and I kept coughing and sniffling badly the whole day . It 's unbelievable to be in good health condition after I missed Christmas day . Even though I have no religion , I 'll have to appreciate to God whenever Christmas is coming . But my American teacher said `` No more freedom in America now `` . So many people in China throw away garbage anywhere and there are no rules of politeness and I just thought China is a free country . Actually Japan is one of world 's most polite countries , but there are so many unwritten rules that we have to keep , so I just do n't feel that Japan is a free country . Because it brings me pleasure to speak English with foreigners . They want to talk with Japanese people because they 're living in my country if they speak Japanese very well they want to live in Japan for a long time . At noon a keyboard at Ningguo Jiangnan hotel had a problem . Firstly , I would like to say `` Happy Chinese New Year `` to my friends in lang - 8 . My mum gave me some money but I need more . Active : I played volleyball today Passive : Volleyball was played by me today Active : I wash my dish before I come here . I 've promised that I would go out with my friends today . On Sunday my flatmate and I cleaned the kitchen . In addition , successful sportspeople / athletes also make your country become better known all over the world . During that time , I thought the sky might darken to some degree , but it had not changed at all thanks to the clouds . On the information page , a movie about Apollo 11 landing on the moon was broadcast . I just watched the movie , `` Apollo 13 , `` two days ago , though I did n't know July 20 was the day mankind first stepped on the moon . I felt that the business class is another world . This means , it has a different quality , different sentences , vocabulary , students ' attitude and class method . What an influential person he is ! My kids and husband saw Doraemon the movie . Sadness , loneliness , there are a lot of feelings there and that I ca n't sum up in one word . So my doctor examines me very carefully and researches this illness enough before my consultation ( appointment ? ) . Beginning of May ! ! I 'm studing economics in university , and my seminar focuses on international trade and developing economics . Today 's topic was on Chinese inequality , then we debated about education , social security , and occupation . The reason is that there is a correlation between inequality and education , so improving education in rural area will help reduce inequality . looks like a japanese comic character `` Black jack `` Korea is a very good place . but people have their own character . I do n't know why I could n't open the website , but fortunately I can open it now . I am in the middle of the mid - term exam , and I feel like I did terrible on the first subject : Grammar . It is one of my weaknesses in English , but I really like my grammar teacher , she is very talkative and likes to gossip . I have to prepare for the debate . I was so surprised becouse so many Koreans stay there , even Toronto . I read an article about Japanese school uniforms . AL Chinese Language and Culture I really appreciate AL Chinese Language and Culture because it is one of the tests to check our whole life skills in reading , listening , speaking and writing which we always use when we are a university student . But I am very much disappointed with AL Chinese Langage and Culture in its culture test , testing our ' Chinese culture knowledge ' and ' Chinese culture judgement ' , which I find most hateful . Carefully , there is a difference between ' Chinese culture knowledge ' and ' Chinese culture judgement ' . Testing your ' Chinese culture knowledge ' is based on what the famous Sophists say . But testing your ' Chinese culture judgement ' tests your judgement on using your ' Chinese culture knowledge ' . This is my first point why I am disappointed with AL Chinese Language and Culture . Why do I need to use ' Chinese culture knowledge ' to comment on certain kinds of events ? hate Chinese Culture because I have realized that some of the Sophists ' theories are too ' ideal ' . Although my teacher said the answers are correct in the right direction , no matter what you think , the answers are still always wrong in two ways . And two your answers go against what your teacher 's thinking about . This is the second reason why I am disappointed in AL Chinese Language and Culture because you need to think what most of the people are thinking . I found Lang - 8 by accident , I still do n't know how I was able to get into this website . But it is wonderful , because I found a new way and new place to improve my English and German . The people on Lang - 8 are really warmhearted , I want to make friends with every one who loves and enjoy life . Because he knew that I have been studying English , he thought it was a good opportunity for me to speak English . It was too difficult to communicate with foreigners , but I enjoyed that time . * North America : US , Canada Luckily , I was able to arrive home without getting wet . Technology and Environment Specificially , instead of wasting our resources , a simple life / lifestyle can help conserve non - renewable resources such as metals , minerals , petroleum , and fossil fuels . It may be tempting to argue that people who make their lives too easy for themselves may also implicate potentially harmful drawbacks . However , the benefits reaped by technology far outweigh its disadvantages . I am going to Thailand soon . . . My favorite is Thai food . . . In fact , this gentleman was also a business man and he had just finished some business negotiations and then took the train to Shanghai . Maybe when I go to university tomorrow morning it will be wet and there will be a lot of puddles . And in the afternoon it will be raining again . I wanna talk about the habits of my company today . Unfortunately , the meetings always take more than an hour . What is worse , even though we have morning meetings for more than an hour everyday , we have to give him reports , about what we did that day , before going home . Some of my colleagues have gotten sick of those habits . As a matter of fact , I like to listen to him at the meeting . I get a lot of business tips from him . The most important thing about English is to grasp the common vocabulary and the pronunciation of each word , which I am sticking to either . Thank you for reading my English . I 'm a business man in Japan . Someone could help me how to use this site please ? thankyou I hope to make more friends who like studying foreign language . I ca n't write or speak in English very well . Please look at my sentences and correct them . First Message I 'm trying to study using this site in English . During a party this evening , I got stressed out because of the infinite reliability on my English capability from my boss . I 've been studying English for two months . I wish I could speak English . you can study any language you want . I am going to see an animated movie tomorrow . My daughter & I had the flu ( type B ) for two weeks . Learning a language may be a good tool to make friends . I am a little bit desperate because I need a epiphany or something else . My English skill is poor . Today I spoke to a friend in Australia I want to visit the school to pay my respects to my teachers but I could n't , It is my first time to write a diary in English . I think I am poor at English grammar . All in all I think I become a more complicated person when I speak English . I decided to try it again next year . I have to go to the library again and stay there for 8 hours everyday . I erased him on facebook . I like eating and siteseeing . And surprisingly , I noticed that today - - August 13th , is International left - handers Day . In my opinion , using whichever hand wo n't determine who a person is . Just let every unreasonable injustice disappear on the earth . In my college in the Department of Communications , we have to do an exhibition in our last year in / of university . I feel reliveved I 'm not even sure what elderly people are nor what it means to get older . Especially gimchi is a very good food for our health . really , I have n't been studying it . So I hope you can help me . Japan is very cold these days . I do n't want to spend a time shopping for something I do n't want . If there were no laws , we would kill each other and the weak would be victims of the strong . If it is excessively or only violent , people can not have fun with it . Therefore , all violent scenes are not always bad influences on people . Humans are different from animals . That time , I forgot to turn off the gas with miso soup cooking and what was worse , I went to bed ! It is very unpopularto help others . We do n't understand how we can care about people who will not return the kindness . The most delicious way to eat vanilla ice cream is to pour a little balsamic vinegar on it . After playing badminton , I went back around by bicycle for exercise . Golden week was finshed . I will go back to work tomorrow . I 'm so disappointed with foreigners who are so rude even though they really do n't have any idea about Korean history . I really wanted to go abroad before , The boring day I am chased by a lot of problems now . As she is very friendly , she approached the other dog today , as usual . `` GD `` stands for `` Getting Divorced `` Truthfully , my parents are getting divorced as they always argue about something , even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can return to after I graduate from my college , but the real reason why I wanna leave Japan has something to do with my big dream . There , I have to give a speech . If there are people who need seats , for example , an elderly person or a pregnant person , we should give our seats to them . Golden Week started yesterday in Japan ! ! But I could n't have a paid vacation on 2 May because I was asked to perform some task on that day by my boss . I wanted to go on a trip abroad during GW , but my wish was n't realized because of the above reason . Their music is so emotional , but it contains lots of electronic sound and it 's so fashionable and pop ! I will wash our colthes and make dinner with my daughter . Today , I went to Japanese Grammar seminar . Of course , I 'm Japanese . These days , many foreigners go back to their countries . trying to university , I enrolled at a university to decrease the chance of studying English completely . I had a high fever , so I did not feel like any writing diary entries ( now I feel better ) , so I 'll start writing something again . Because the academic atmosphere is not good and the basic laboratory equipment is insufficient and out of date , it is hard to achieve much progress and make discoveries in a short time . I started working for a liquor company 11 years ago . The first month of company life we studied in a factory and a sales branch . Then he quit our company and entered Waseda business school . Now he has graduated and started working for another liquor company . 2 other friends live in Tokyo after being / working in other areas now . I 'm looking forward to seeing them . they mentioned a brand name that I had never heard of This was a funny experience I had in the supermarket . Some people might tell me I 'm just lonely . . Although I am a little nervous , I will do this job as best as I can . First , I will welcome them in the entrance and lead them to a elevator . `` Nice to meet you , Welcome to our company `` , `` Let me introduce myself `` , Now I am working in the bakery and learning how to bake bread . I 'm working at a flower shop , and that is very hard . I 'd appreciate your corrections , but I probably wo n't rewrite this until I am able to write it correctly by myself . When I learn more kanjis and feel more comfortable , I will begin to post in Japanese here . Beforehand , I 'm grateful for your corrections . Nice to meet you . They are supposed to cast their own benefits and prejudices aside . To make matters worse , the wind blew very strongly and broke my umbrella ! ! I know I love her ; I know she does n't love me . He does n't know . From my perspective , this game 's fantastic point is , using very realistic human avatars for acrobatic movement . I feel that , the central focus of Mirrors Edge realistic body exsit in the `` body image `` . Mirror 's Edge `` realistic body `` does not depend only on the graphical detail . Avatar 's breath and the crashing sound is very real . If the avatar runs for a long time , the avatar start to become breathless . Secondary avatars ( NPC ? ) action is not realistic , but the action variation is based on generall human action . Most of avatar 's actions are possible for general human . [ * Self Modify ] Probably , these `` realistic `` functions do not equal a high - resolution graphics efficient . Because my friend has his own car . His driving is soooooooo CRAZY . I have been eating so much that my waist is bigger and my stomach is sticking out . I do n't know why . : S Some people maintain that attending art classes may broaden kids ' horizon and enrich their knowledge . He was mooned - face and there was brightness and lightcoming from his face like a sun . She interpreted the words as a promise he made . Today I wandered around town and tried to take artistic pictures , but my pictures were mundane because not only do I have no clue about photography , I am also not good with artistic things . To be honest , I 'm still slightly confused on how to use Tumblr , but hopefully I will become good at photography and upload fantastic pictures ! I have studied painting for a month . I think it is difficult for me , the colour is most difficult in painting . These days , I think I make little progress in it . What a pity ! It is a big island located in the northern part of Japan . ( I do n't know whether the expression of island is correct . ) As a third - year student , I will be job - hunting after a year and I am improving my English level at the present . Kyoto has some foriegners who comes to sightsee in Kyoto city . There are bus terminals to some famous spots in Kyoto . I would like to help some foreigners who are lost in Kyoto station . Blinds are the opposite . I 'm staying in Australia to study English . I 'm Japanese so I can teach you Japanese . I drove my car in a main street when I found that it was hard to move and it was raining at that time . The heavy traffic blocked the street and thirty minutes later , I left to look what had happenned . More than a hundred cars were blocked up at the crossing , the street was in chaos . and improper grammar . Other than the internet I learn from aplications such as `` Windows `` : ) ) ) ) I need a lot of help because I find English a difficult language to learn . That 's because I had to get my bank card reissued ; yesterday 's accident was not my fault . I ca n't trust or believe anybody anymore . Hey wait , so my landlord tried to use my bank card ? Even if some hackers have great skills , is it possible to learnaPIN number without touching my wallet or bank card ? From now on , I can focus on my study and job hunting . Influenza is awful for Be carefull of influenza everyone ! Kano and I went to Tokyo Disneyland the day before yesterday . Because it takes about 30 minutes from my house . Nihongo no tanjoubi no uta wo shirimasen . This shop sells various goods . For example : bowls , dishes , cutlery , bags , and plants . In the past architecture was built big , new , and public . Today it has become small , re - built , and private or commercial . Although they are only primary school students , I found it difficult to handle them . There is still room for improvement of my training skills . Wow , it was so hot in school ! There was no air conditioner in our dorm , so it was a great challenge for me to spend the whole night . Since I 've registered on this site , I 've always been writing in Japanese . I love learning Japanese but I think I should make better use of this site to improve my English writting ability as well . All of my family became members of Lang - 8 ! It 's a fun to write a diary in foreign languages , although it would be a little bit hard to keep it up . Sometimes I think they do n't care about the grammar , but I am kind of worried that they do n't understand me . On Monday , I failed in the rehearsal . I think it 's going to be a big challege to successfully play the role . I 'm not good at touching other people deeply , and I do n't like touching the bodies of other people . ( I thought so at a nursing home where my grandmother stays , and while I was caring for my grandmother . but of course I care for my grandmother . ) I ca n't do anything for other people . I heard it is a little famous in the world . This comic has such a heartfelt story ! I have an exam . Secondly , I will work out very hard because I believe I have HIVD ( herniated intervertebral disc ) and scoliosis . I need to do stretching and take care of my health . I do n't want to fail to fulfil my resolution . My mother and I went out for a long walk . Even though it was so cold that we were almost freezing , I felt really cool and refreshed . Exercise makes people cheerful . I am now planing to join a member of * * * as a trainees , If I become a member before Jan . Would you mind telling me about making it in time , if I apply for a membership in a couple of days ? I also know that some of them have been became shorter which is good , therefore `` Heroes `` season 4 was denied to that only having around15 episodes . . Ohayou Gozaimasu - Philippine wa mou shichiji desu . Nothing bad or lucky happened . hmmm . . . what should I do ? I 'm studying about welfare . My hobby is reading books and looking at the blue sky . Of course , I like watching TV too . But , now I have so many tasks about my studying , so my days are so busy , which is a strange feeling . To make matters worse , because the disaster - stricken area is very wide due to the huge Tsunami washing away everything like main roads and docks . Also the uncontrollable Fukushima nuclear plant , severe shortage of gas , and the situation of shelters and hospitals in the disaster - stricken area are very serious . It was written about her . He flew to the sea and He was drowned . I do n't feel comfortable . I have a simple question today . I 'm hungry ! I know that many young woman have had breast cancer recently . I think this is because of bedbugs . Although I wash my bed cover and bed sheet regularly , so why ? So should I change the mattress ? For example , we played Street Fighter II which was made for PS2 . B ) installed the software onto the desktop of A 's computer , it seemed A was disappointed by B because the desktop was filled up with many folders . A was angry until I removed it ! ! Nobody will notice that I ate one apple or I ate many apple . I learned ' Gostop ' which is a kind of Korean card game from my friend . There were lots of rules and they were very hard to remember . Each card has a different score and it 's very flexible ? as well . It was quite a strange time moment as it was my first time to play Gostop I want my English to be as good as my Chinese , which means whenever I see English words I can spontaneously catch the meaning of it . My friend got a score of 850 on the TOEIC the first time , and 905 the second time . ' One ' is pronounced as ' yi ' in Chinese , and it is similar to the pronunciation of ' two ' in Korean . This space seems like a place to write a daily diary . Perhaps we need to go back to the basics of this problem and assess the possible causes . Furthermore , providing owns < - - ? criminals only addresses part of this problem . So far there has been lift < - - little ? success in the war against sex crimes . I thought , I should write something in the , `` About me `` section . Perhaps I should do some grammar exercises for this topic . I thought `` to get caught `` is useful in a conversation . It has been 10 years since I first learned this language . But , I found that Japanese is much more difficult than English to learn . temperature on the increase since the temperature has been increasing very slowly and sometime even falling again . 3rd picture : At Ginkakuji ( Ginkaku temple ) I listened to some music . My baby pressed the power button repeatedly . Today , I tried to correct a diary which was written in Japanese I felt it was difficult to get up punctually and actually it was so . * Oh yeah , I 'm afraid that after I write a few diary entries that I wo n't visit this website again , and accidents often happen , so I always pay attention in order to avoid them . I saw a boy cross the road . A man came and examined the boy . Many people surrounded the accident looked puzzled . About my work , there 's so much works I have to finish within this month . I 'm afraid I ca n't finish the mission that my manager / boss gave to me on time . Yesterday was a sunny day . All of a sudden , it started raining hard . Personally , I think these girls are ridiculous and their attitude towards life is too childish , it is so stupid to copy someone 's style ! So , returning to England , I can say it is a nice country with excellent traditions . In Japan , many flowers start blooming in March , Spinach Salad . There were two Myanmars and one Italian in our group . So I have my moments where I 'm too careful about my words . Yet , I feel an invisible barrier which prevents me from posting my compositions . I was surprised . I thought to myself , in this town , how could one possibly gather 8 uninteresting people ? ( Except for me , of course ) But every time , I ended up disappointed like today . I had an appointment at 9 : 00 in the morning . And I need to use the money in the right way . He is the most enthusiastic and energetic person I have ever seen . But once I tried to speak , my tongue was twisted ! Fact : I went to a university and measured my maximal oxygen uptake during running . They are second - hand Timberland tracking shoes costing 15000 shillings . Also , many people say that the adoption should only be allowed to heterosexual couples because children could be confused in a gay marriage . Many people think that they are one of the favorites to win the World Cup . Some weeks ago , Japan lost to Korea . Why do young American people say ' I love very very very crazy about him ' in real English . And I also want to tell my other friends if you feel bad about your body , go to hospital immediately , don ` t wait . We will talk about many things today and have delicious food . Too difficult . Being honest Should be our obligation in whatever we do . But the reality is not allowed us to choose right decesion . There are so many things in the ( world ) . , , , , , , , , , , , , , maybe . He tugged the rope and pulled the bucket free , leaving a hole - a hole in the water ! The young couple married with fairy 's consent and lived happily ever after . How glorious it would be . I ate a hamburger . I immediately decided on what I should eat . There was a picture of a delicious hamburger on the menu . I ordered a hamburger and it came at once . I would not feel better if I had been eating a hamburger for a long time I was excited and full of confidence . I was n't until I found my driver that I realized I had left my backpack at the security checkpoint . The next day , my cousin met up with her classmate at the World EXPO park . I had to get up early to helped her prepare . Although , I have to take two pictures of myself , I have n't prepared yet : ( When I was 14 ( approximately ) , I watched one of my first serials in English . It was `` Charmed `` , an American serial with 3 witches . So Embarrassing The class teacher wanted us to have a discussion with a classmate . That 's so embarrassing . First , when I wanted to buy some street food or drink I always used the index and middle finger to show I needed two meals or two cups . But they would show a thumb for one and the index finger together for two . They were allowed to smoke in restaurants . I talked on Skype with my friend who lives in Tokyo now . Although I wrote a related article before , I still think this topic is hard Analysis : SWOT for Yes ( For SWOT ) Analyis : SWOT for No ( Against SWOT ) 3 ) O : Everything still remains the same And I did n't know that a Tsunami has so much power . Why were the Tsunami 's waves so much higher than expected ? ( predicted ) The winner can go to a Korean University for free . In the afternoon I went to the place where I was supposed to learn to drive , but the driving instructor was n't there . For privacy , my brother is teaching me to drive at night , and we paid Trying to learn to drive a car is so difficult , because it is about keeping safe in traffic . We ca n't learn English conversation from either a professional future . I hope all of you have wonderful days in 2009 . Christianity in the US actually supports the Republican party in various ways ; the party which love guns and wars rather than helping needy people . I 'm going to find a friend so that we can help each other learn languages . Sometimes we get free tickets and go watch the other shows which are being performedin Las Vegas . He is great as well . Recently , many unlucky things have been happening to me . rotation this year , mailed me and asked me to report next week . I went to a flea market with my friend yesterday . Silvano was so patient with me . For example , I read articles on the internet or in a newspaper , listening conversation in a website for English learners . I help you improve your Korean Furthermore , now I am interested in Japanese . I will try to write in Japanese in one day . Though I expected Miami would win , Dalas won . So we feel very uncomfortable . We are college students . There is no need to warn us to be careful . So you can imagine how limited we felt when we had the teacher following . It 's very good news . I hope they will be rescued quickly and will stay alive . Actually I stayed with them for about only one month but I am happy being their friend : ) What a CRAZY bicycle ! ! . Noisy politician 's public speaking 2 As you know I do n't like politician 's public speaking , but there is one politician that I want to hearn and that person is Junichiro Koizumi . Now Tarou Asou is president who is known to give a fun speech . Well , I 've just now registered to this site , and due to the excitement , I 've decided to skip the next lesson , which is PE ^ ^ Today is the `` Setubun `` ceremony . It is the `` Setubun `` ceremony in Japan . I wished for my family 's good health . `` Setubun `` means `` the day before the beginning of spring `` in Japanese . I finished my lunch I felt depressed because of the weather . I did not exercise because of the rain . I 've just finished language school and started college . I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( It 's very frustrating and I 've been wondering if my English is getting better ! We had a conversation for about 15 minutes . She can speak Engish very well . Her English is probablyalmost perfect . not again , oh my goodness ! I 've only met a fewJapanese people who can speak a certain degree of English or Mandarin , but on the other hand there are lots more Chinese bilinguals in Sydney . At the end of the lesson , my tutor encouraged me by saying `` You can do it , you already have good English skills . After you go to Singapore , you will probably have many English questions , but you can ask me anytime through the Internet . `` I 'm really grateful to him . I want go , so I have to improve my English skills immediately . But it seems to measure speaking skill , listening skill , writing skill , and reading skill . The tutors are students of Phillipine University . Just keep studying . It 's the only way to make my English good . I was surprised that lots of foreign people were visiting there . I have to start working tommorrow ! ^ _ ^ ; I did n't know why , but I had a sexually transmitted disease and everyone invited me to hang out . They are related to death like euthanasia , patient 's right to know about their terminal illness , cloning etc . It 's a very controversial issue even for native English speakers and actually it does n't have any answer . Like Tsunamis , earthquakes , typhoons or meteorites ? It will be a central - exam of Japan tomorrow . Today the movie `` Summer Wars `` was shown on TV in Japan . It 's too troublesome ! My sister and I made cookies yesterday morning . I made up my mind to listen to English songs and watch English movies . Susan falls in love with him . News that an intruder had breached the security of Wisteria Lane spreads like wildfire . I borrowed it from a friend who likes comics In Germany , a genius Japanese doctor Tenma had saved a boy 's life by operation . Unfortunately , Johan was agenius who can think of killing without anysiginificance to human life . Tenma learned about the facts , he felt that hewas responsible because hesaved Johan 's life when Johan was achild . MONSTER is one of thepopuler comics in Japan . I even thought anything would do as long as it was a kind of living thing . Recently , I 've been very very busy . So I want to see a lot of my favorite movies and spend time relaxing ! ! to succeed in the event . . . . I went to Career Prospects in International Business last week . Omgsh , this morning was awful ! I was so hungry that I could hardly see ! I had taken my antibiotics but I was in such a hurry that I forgot to eat something , I thought I would buy something once I arrived . In geography there was the rivalry between China and Japan , or the French economy . I chose Asian decolonisation and the rivalry between Japan and China . I thought , did I really go through this much trouble ? Last day , it was raining day , Within such a short span , I visited Washington D . Know Now I can understand the teacher in the Foundation , becauseBrendan helped me a lot in listening . After I had to go back to my University and wait 1 hour ( until OR for ) my next How can I translate this ? But my vocabulary is too poor to translate the meanings of this . In that class , I learned about a strange concept : that perception is not the re - creation of reality but the constructing of an image . Furthermore , the illusion of sight is the result of the brain 's activity . The professor said that the brain copes with information from the outside through sensory organs , and makes the image , which is easier for us to understand . Therefore the image I 'm seeing is not the real object but the image constructed by myself . The poor gamer 's busy days . I saw my younger sister reading Harry Potter this morning . I read that novel a long time ago . It was very magic and ridiculous . Before semester , I joined the magic club in my university . I often listen to the album `` In My Own Words `` by Ne - Yo . I am lonely . ( I feel lonely ) Because of work , I have been working over 12 hours a day for maybe 2 weeks . It 's really very exhausting ! ! The weather was a little bit hot , but I could complete the play . My score was 91 ( 45 . 46 ) . However , my listening and speaking are still the same , and I tried to improve it by listening to music with lyrics and watching movies with English subtitles , and I have a lot of friends from different countries , and I speak with them a lot , but I still have some problems with explaining what is in my mind . I 'm the engineer in the manufacturing department . My favorite musician is Kobukuro , a famous Japanese band . What 's up ? Besides after school lessons , most schools let students play there until around 6 P . These boys kept threatening us . Bastard : `` Hey I am asking you , do n't ignore me , do you have money ? Bastard : Huh ? Bastard : . . . When I prepared to fire it , the wind was so strong that I could not do it with a lighter . When I was reading Newsweek magazine , I came across the following sentence . Of course I did work on learning English in other ways . Now , English is very important to me because I need a job and money . If I dont learn to speak English , I wo n't find the job . Fireworks are to be held tonight in my town In Japan , on the 29th of April it was a public holiday . That was the Emperor 's Birthday Showa . One cup of yogurt , two cups of milk and one tea spoon of honey . I lost it last Thursday in Tokyo on my business trip . Many researchers argue that due to the genetic similarity between humans and animals , experiments can help us discover the cure to fatal viruses and diseases . So I went to the school for the first time by bicycle . I 'm interested in foreign countries and their cultures . I do n't use English in my ordinary life , You know Russia is big . Next , the phone was taken by another classmate , he told me that he really thinks that I should talk to the teacher to see if there 's anything I could do to fix it . Because I did n't do the project well , and my final presentation was not okay . Ohhh , what a relief ! So , I hope I really can help her and take care of her . Firstly , I want to meet with my friends from high school . Secondly , I have to write many letters called `` Nengajo `` . I have not written any Nengajo yet . There are more than 100 letters that I have to write . An electronic dictionary is a tool for learning English . It is just a machine that is use for translation , and sometimes it is not a precise machine . ( It was my homework , please figure out the mistakes in my composition . ) It 's really interesting and I 'm having a Cherry blossom viewing party on April 5 . But we have n't decided a place . I 've been studying english for something about four years , but still having difficulties with the language . I started studying english because of my parents . In a first moment I really hated the idea , English was terrible to me . just another thing : I started German classes today and I 'm really loving it ! However , I will try my best to write more essays here : ) Unfortunately I lost my wallet and I looked for it for half an hour . It was really exciting and interesting . I went to a desert island and ate a lot of crab and shrimp ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! Whoa ! ! ! I will write daily as much as possible . Please help me study . He was totally exhausted so he was sleeping when I called . Pleeeease be My Friend and teach me English . However , people often say to me `` You look like a half - breed ! `` I think that 's because of my brown eye color , but I 'm a natural Japanese . I need to wake up early tomorrow because of my friend 's part - time job . My wife took me to the `` Cirque Du Soleil Theatre Tokyo `` for my birthday present . The theatre is near Tokyo Disney Land . It was built especially for the famous group , Cirque Du Soleil . During holidays , I sometimes play analog games with my friends . Tom Cruise acted very well . I don ` t speak English because it 's very difficult . I think I speak very good English , but I don ` t really - when I meet my friend , we only say ` hello ' and ` hi ' . Today , I woke up at 8 : 00 AM , drunk coffee , watched TV . When I write a diary entry , I read vocabulary books . Do you know Nagano ? Do you know Nagano Olympics in 1998 ? Nagano is a famous place . For example , Zenkouji ! It is a very old shrine ! Would you search the Internet ? It is a very big shrine ! In 1992 , I went to Thailand to meet my family . I am part Japanese , Thai and Chinese . My older brother lives in Thailand . Labor Festival is a big holiday in China . At college I have a lot of time to study and play with my classmates , but we are not always together . Today my math teacher told us about Furbies in the class . He feels vexed so he forced it to eat ( by touching its tongue ) even it when it says `` I 'm full ! `` . recently , I have become interested in Korean drama . But evetually I got throught it and we made delicious `` Japanese mugwort rice cake `` . In the middle east of Asia , they 've had a truce between Israelis and Palestinians . Hello ! ! ( Hallo is German ! : P ) Till now , I think that difference between ' see ' and ' look ' is whether it includes actor 's purpose . It 's elegant and gorgeous , I 'm practicing often : ) If you 're sick or get wound accidentally , that means you have to spend valuable time during the day waiting inside of the hospital . There are so many troubles in our life such as family , friends , love and so on . I 'm confident of my ability to work for myself . I love music and watching movies . What is the difference between them ? I know some of them pretty well , ' cuz they live my lab . ) `` The professors have the title ' Prof . ' , we put Prof . So I asked them to put the title `` Agent `` . ( Wie soll ich die Umlaute schreiben ? ) They were in the same situation as me of having a hard time communicating with Australians . I finally could communicate with Australians because I got used to and gained confidence in my English . I have enough money to go to Australia but I am a little afraid of the swine flu . Swine flu has prevented me from to going Australia . . . . We enjoy trips during vacation . What are your school assigments like ? How long are your essays ? I 'm not as fascinated of it as she is ( it would be difficult : P ) , but I enjoy beautiful paintings from romanticism and photorealism . Please correct my English with the appropriate words . My friend asked me to write a draft to ask the university in California like below . I have not confirmed that my degree is eligible to enroll in your school and sit for the bar exam in California , however , Hiroshima University is one of top Japanese national universities . As for writing essay skills , I 'm planning to receive support from a local English school in Japan and I want to try to polish up my writing skill enough to pass the bar exam in California in the future . I mean I prefer autonomous distance learning , is that an option through your school ? Thank you for taking the time to answer my questions , I realize that my English writing skills are poor For our honeymoon we went to Turkey . This was the first time I went to Turkey . First , I went to Istanbul . I thought so . I was surprised and also shocked to hear that . Like Brunei ? , Singapore , Korea , and also Brazilians from Nagoya prefecture , ( There are a lot of Brazilians in Nagoya . ) and I was very happy because I could get to know them and became friends with them . They are so charm . The Brazilians are in high spirits and I were happy to be in each other 's company . I admit I had overslept one time . . . Just one time ? I 'm always nervous when I have to speak in front of many people . They 're sitting there staring at me and then I forget what I have to say . . . And thanks a lot for correcting it . . . I 'm going to live with a guy from Taiwan this month ! I can live with a guy from Taiwan ! So , football could be world wide sports compared to other sports . I was so shocked because it was a total misunderstanding , so I explained it carefully , but she still did n't calm down . My careless behaviour might have upset her , but I thought the focus of her anger was not the main subject we were dealing with . However , this earthquake was too strong and brought a 10 - meter - tall tsunami . The earthquake was 8 . 9 on the richter scale . The biggest earthquake in Taiwan was just 7 . 3 and it made us lose a lot . It 's hard to imagine what became when a 8 . 9 earthquake and 10 - meter - tall , 3km per second tsunami happened at the same time and the same place . If it was in Taiwan or if I was a Japanese , where would I be or where would I be standing now ? It 's rains sometimes , but the next day the whole world becomes so green . It 's windy today ! But sometimes it is a little hot and windless . We chose classes by computer . We needed to remember the class number to choose classes . For a long time , I have n't logged into my account of Lang - 8 . Two schoolboys began to play agame to warm their body 's . I took a trip to Tokyo Disney Resort with my boyfriend . hello everyone , today is my first time to use this website . I found this website to be very useful . I 'm 20 years old . They speaks English fluently , but his boyfriend especially has a marvelous talent for languages . like spending time in dormitory ( sharing room with friends ) , playing seasonal sports and learning about other cultures at that time . That 's why I decided to write a diary or something on `` lang - 8 `` . Recently I 've watched ' Star Trek - Voyager ' to improve my listening skill . But my English teacher recommended me to watch ' Star Trek - Voyager ' because the actors and actress speak clearly . I want to write entry on the trip to Malacca , but I do n't have enogh time to write . I will be glad if will you correct these sentences ! It seems like I 'm writing monthly journals repeating `` Long time no see ! `` The connection to the web browser is in VERY poor condition inside the dormitory where I am , so it 's difficult to enjoy web surfing . My old PC is broken , so my mom bought me a new one . Doing volunteer work that helps some exchange students to study Korean , I realized that Korean grammar is too difficult to learn , which make me wonder how I learned Korean without any difficulty . He came to the university to receive that costume from the store . So here I 'd like to study technical English and make new friends ( from all over the world , but it seems to only be a dream ) . He corrected it and taught me about the word `` appointment `` . We are going to buy some things for her and go to northern Thailand to congratulate her . It has very wild & beautiful scenery , and the food is more delicious than anywhere else . In particular , the seafood is delicious . I read in the news that sushi is a popular food around the world . I will take the chance to eat sushi when I go abroad . Each of them got a prize at the photo convention for tram cars last fall . Actually Roh - bai is not the same as Ume but very similar to Ume . Japanese like Ume fully blooming on Februaly after the Roh - bai flower fell out . However the answer was `` no `` so I opened the door , but middle aged woman in green shirt was sat down on the toilet . I interviewed in Tokyo last Tuesday . Anyway I do n't have a lot of time to live in Korea . Today , it is a beautiful day . In Japan Saint Valentine 's Day is the day for men to present chocolate to their lovers . But we did n't have a Christmas party recently . Have a nice Christmas Eve ! I started the Twitter . It is an action movie about the conflict between Batman and the Joker . Batman represents justice . Christian Bale plays the role of Batman and Heath Ledger plays the role of the Joker . I had been doing nothing but studying for my university entrance examinations for a whole year . Then , this spring I thought in this spring `` I should work ! though I had been given a scholarship until I dropped out of the university that I had been at before . Today , I thought that money is more precious than ever before ! Many of the people who gathered at the park were holding flowers to show their sympathy for those who died in the massacre . The last three problems were really convoluted . the following sentence . . . Today my coworker told me about a Korean singer . I also believe in Chinese fortune - telling as well as Tarot cards and blood types . For me , I live a life with a contradiction of modern technology and the old - fashioned ancient knowledge . I plan to go somewhere to see the cherry blossoms . ( But they are n't cancer ) I have had some changes lately . First , my spoken English is very pool , so I think I should speak more with foreign teacher . I should also look back the old knowledge . For this exam , I must have a good grade , It matters my English Band Four . I 'm so lonely , because he supported me . He said `` Let 's cure the illness together . `` I 'm so lonely . So I hope some day we can meet again in heaven . That year , The Sydney Morning Herald and the World Wide Fund for Nature conceived the idea which was observed / celebrated in Sydney as well as in some other Australian cities , followed by other cities around the world . Because I intend to change my rooms interior . Recently , I am interest in Northern European kid 's room interior . Recently , I am interested to go to Korea , China , and Europe ! I 've been to Korea , Singapore , NY and Australia . This is my very first diary , I 'm quite lazy , but I really want to improve my poor English so I 'm thinking to write every day , , , , as much as possible , so please check them ! If I keep using my iPhone like that , I 'll develop bad health . But actually , my iPhone used me ! Please give me some good advice . Drinking an alcohol beverage ? Riding a crazy ride at an amusement park ? What about taking a bath in hot bathtub ? You may pass out due to the crazy hot , spicy taste . I 've decided to travel around ( in ) Europe when I do my masters degree in the UK . Among these , two of them are Safeco Field and Yankee Stadium in America . My grandfather cut the rice plants in large quantities with a reaper ( photo 1 ) . Apart from that , I can amuse myself because these days I have a bad mood . I was really disappointed in myself and feel sorry for my parents coz I ` d been studying very hard for the test and they invested lots of money in me , like hiring a private teacher and letting me go to cram school , but I still did n't do well . . . its a kinda english test with 4 sections : speaking , writing , listening and reading for people is who are studying english as a second language . I dont feel like studying anymore . well the test score really discouraged me . `` Likely I will continue , `` another person said . `` Cigarettes are part of my life and I ca n't abandon them unless I die . `` In Japan , a lot of restaurants are starting to offer hot pot dish . I found this website on the Internet . Please correct my sentence if I make a mistake . Some experts say that a lot of natural resouces have not been found yet and also it will give us the opportunity to start business ! ! Holding your hands tightly , my heart would burst into fragments . I have been working for 1 year and I have learned a lesson - I lack of courage , which is a disadvantage when I was doing work . But many times my friends have told me : `` You do n't look like the ( conservative ) kind of person ! `` because I usually take it easy when I 'm with them . Life sucks without true love , and I must learn what should I do to find the zeal for my work . It caused a thunami . What do you think about this catastrophe ? In short , it is okay that we use 2000 kanjis . I am reviewing the German culture NYC is a very very exciting , amazing , beautiful city . Coming soon ! ! ! A few hours ago , I read an article about Winston Churchill who is the most famous prime minister in Britain . I want all the friends have a happy time in this lovely internationl social network . Please be my friends . My car has a sheet of ashes on it . For example if you do n't take Math or Biology you cant go to medcal school ( I dont wanna be a doctor or surgeon so I want to drop it anyway ^ _ ^ ) . Well it 's a difficult decision but I have plenty of time ! Because of this , I 'm sing have less opportunity to study . I want to recover my diligence without rejecting my friends ' invitations . My favorite Today , I will write about one of my favorite things . Comiket , Comic market or KOMIKE in Japanese pronounce , is a kind of market place dealing withpopculture andit is theworld 's biggest festival for amateur artists and manga - fans . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into living room , and she said that some black object fell . It was so yummy . After I have finished the class I will ask you to join and learn Thai with me there . Why can foreign people speak Englsh ? I conceal my feelings and emotions unconsciously . Also my wife and I have a bit of the cold so we are taking many vitamin C supplements . We had having a special course menu as below , Of course it was very delicious . Although I did n't know exactly who he was . Where I work , there are lots of real bilinguals who make me envious . my English is very bad , I need to learn it , very fast , some ideas ? Do you know `` Fantasista `` ? Furthermore , ecotourism , whose business takes advantage of the wilderness , may have harmful effects on it . I love to exercise . So I decided to do some exercises for my health during summer vacation . The course for students is inexpensive . For this reason , I decided to use this gym quickly . My body will change in the summer when I keep training . Thus , what I should do is to get used to the current life and rhythm . It is so comfortable that I am not willing to wake up . Many of my friends spend a lot of money going to a cram school for English . But to be honest , it was totally funny and fun . haha . I swear to read English everyday . I swear to read English everyday , because my English is too poor . It 's embarrassed me and I noticed that it 's time to improve my English . . . By the way we went to animal hospital to vaccinate my ferrets . I ordered a ticket to Arch Enemy 's concert through the internet but I have n't gotten an email confirmation from the company . Actually , I knew that already but I wanted to study etymology anyway . Today , I had a three hour lecture on political science , and a three hour lecture on world history A few days ago , I started to translate Machiavelli 's `` The Prince `` from English to Japanese . I feel as if I 'm decoding a cipher when I translate . Well , I do n't know if this comparison is right . `` What does this sentence mean ? `` I repeatedly think and imagine the meaning . It is very gothic and makes me think about ghosts . I was taking some photos of the church itself , and of me next to this church , but this photo is the best one for me because it creates joyful emotions in my soul and heart . Let 's write about Joni Mitchell , one of my favorite musician . The occasion of the first meeting to her music was in my boyfriend 's CD rack those days ago . A musician and a painter . My mother took us to the station and I took the train . It was lovely , was n't it ? ; ) There were many stands there that sold vegetables . Past tense . The street there was made of bricks . I think I lack knowledge and reading books would help me create my own idea or anything . I had finished reading `` Wuthering Heights `` yesterday . Although it is a small and characterised by its long heritage , Yangzhou is flourishing and becoming more and more flourishing . An industrial park has been built just beside / next to the old town , where many new high tech companies are booming . When people realize that they can develop careers in small cities , large cities like Beijing and Shanghai may be relieved of some burden . I run every night to refresh my body and mind ( ? ) . in order to refresh my body and mind . Back then , I always ran before dinner . I only have a database in my PC . After that , I did my homework til 10 a . m . After doing my homework , I started cooking and had lunch with my roommate ( s ) . Yesterday , I had my wisdom tooth pulled out . The exam on history of Russia was very difficult . I expect a lot from my new life at university . This is a photo of my class = ) ) ) Only girls as you see = D We eat grilled beef , chicken and vegetables . I have studied English for eight years and I usually talk with my friends in English . So , if anyone would like to teach me proper phrases , I 'd be most appreciative . First off , I went to headquarters where I got heartwarming welcome from all the people on the staff , including the section director . Maybe this is common sense but it always annoys me . . . I saw three other cruise ships that were different to yeaterday . Prime Minister Members of Hatoyama 's cabinet were introduced in today 's newspaper . He looks earnest and persevering . The economic bubble burst suddenly , and that effect spread quickly all over the world . From his official web site ' HIFUMIYO ' , he has traveled to many countries , and seems to have become a socialist . He criticises capitalism incisively ( particularly in America ) on his site . I have been studying English for about 5 years , but , it has not worked . I 'm trying to learn grammar , words , etc . Everyone 's help is welcome ! Because of the school garden party , I teach undergraduates Architecture at my university . I teach Descriptive Geometry , a kind of drawing . I sometimes use some pieces of paper or solid models which I made for them , because it 's hard to describe things somtime by only speaking . I jogged only on the weekend , but I think it has a little effect in decreasing my weight . It 's been so long time sice I wrote something the last time . Please correct my poor English sentences . The daughter which will arrive first of all will arrive early next Tuesday morning . I think I only enjoy being with them such as right now . The Japanese landlady was going to England to celebrate Christmas and New Years day with her family members and husband 's relatives . Deschanelis one of my favorite actresses . I 've seen an acquaintance use this phrase before , but I was n't able to understand the usage . To enter that high school I should get a good grade on this midterm test which is next month . I am looking forward to hearing their new sounds . Despite embarrassment , the Russian people , who get by in foreign languages , pick them up with a great pleasure and are ready to help you find your destination . At last , I finished writing about my last Seoul trip . But she really likes English , and speaks almost exclusively in English . Unfortunately my school field trip has been postponed . That trip is sceduled to go on Aug . So , It may be all different . And , I encountered why I feel cute . ( not meaning sexually ) I drank orange juice . And it ` s gon na take a few more minutes for us to really clear up our heads . I should have eaten a balanced diet with plenty of vegetables and gotten some exercise , but it 's too late now . Hope that I will be admitted to the HKU . I 'll watch ' THE PRODUCERS ' next . Yesterday , I went to two museums : Quai Branly Museum and Paris City Museum of Modern Art . This is my favorite movie I recommend you go see it . Now I 'm faced with the prospect of studying alone abroad within 2 years , without hearing my familiar mother tongue , without my boyfriend or friends , and maybe becoming overweight and lonely . She said that `` I ca n't walk a step , not to mention running , because my Ipod has n't been charged `` . Meanwhile reading professional text books written in English is also in my schedule . I think my ability to write English is worse than before because I did n't any write journals in English . Of course the same goes for German . Ah , they were very strict with me growing up and , um , I used to have to sit at the piano for hours to practice . Ah , when I was younger I , um , resented my mother for this discipline , but when I turned about eleven years old , I was very grateful to her . I was probably better at piano than I am now . You can see there are a few books but a lot of wood materials . Not only human being but , also animals too . but I know he has such kind of character . As for me , I always use English - Japanese dictionary and translate to Japanese because it is the faster way to understanding what is the meaning of words . Please judge this sentence . It seems very crazy . When I play mahjong , I get a lot of money . in other words , I make money . The reason seems bad . Could somebody think of adjectives which do not have superlative nor comparative forms ? One of my favorite English teachers wiilwill leave the school at the end of next month . Hello , everyone ! We met my friends cousin and her friends in new york during weekends . We were able to stay at her cousin 's friend 's hotel so we payed less than the usual cost . when I see more things I often feel that I could control them . What ( Which food is famous during the winter in your country ? ) Hello , People please help me out here , sometimes I have some doubts about how to use the words ( up and out ) after verbs . For example : clean up , check out , coming up , carry out , etc . ) I do n't know how to explain but sometimes I ca n't understand the meaning of the words that come ( up and out ) after some verbs . Can you guys tell me ? Our hula impressed many seniors very much . Above all , `` Heal the world `` by Michael Jackson was surprisingly asked for an encore ! I was always frightened when I heard this music . FUJIYAMA is a roller coaster . FUJIKYU HAILAND has lots of roller coasters . I do n't like roller coasters , but I went there with my friends . It 's called Ramen in Japan and is very popular . Ramen has many flavors . They are soy sauce , soybean paste , salt , and tonkothu . I like tonkothu the best , because it 's poplar in Fukuoka , where I use to live . Tonkothu soup is made from the pork , and the taste is rich . The last Japanese food I ate in Japan is tonkothu ramen at Nagoya airport . My sore throat was cured , but I have a headache and a fever . Are you familiar with riverdancing ? Riverdancing is an Irish tap dance . My sore throat has not changed . The hero in the story is n't the typical character in Korean dramas . My hobby is watching American soap operas . Watching American soap operas really help me to study English . I 'll watch ' Desperate Housewives season 3 ' , next . I 'm traveling Mie now . Trick or Treat I want to know if this is a correct sentence or incorrect sentence . But I am still waiting . So , I want to go abroad to learn how to prepare foreign food . Charo is an english learning program by NHK , a Japanese broadcasting campany . The radio version is little bit longer and more difficult because it has more details . The cartoon and book are good for me and my daughter . When I get tired of studying English , I just listen to the story . That 's why I believe It is the best program . Now I 'm watching a football game , and I 'm relaxing . It was about the ages from highschool to university . I basically agree with this thought . I 'm very busy everyday because I 'm preparing for Koshosai . Would you correct my grammar Please contact me , and become a friend . I wonder if I should update the firmware of the wireless router . They were delicious and awesome ! ! I have a long hair and blue light eyes . I 'm tall 1 . 63 cm maybe ; my fisical is normal - thin . . . bhe I hope to learn something from your corrections . . . Vanguard Princess He is a MacGyver . This week is the Buddhist Lent and get one day off on Monday . I 'm currently on maternity leave , since Sep 2009 . I love steaks so Australia is HEAVEN . I know some of my friends work about 14 ~ 15 hour day . I went to the 2010 Iwate Art Fest at the Iwate Prefectural Art Museum , with my friend . I got the pen and a postcard at the museum shop . I have many hippopotamus goods . Mid - term exam day , family 's birthdays , writing contests . . . This year , my mom wants to get an electronic bible . life consists of many trivial things , and those things built up life . I bought it a few years ago . But I had forgotten I had bought it ! Last night , I notice the card and I tried it . The card was written in perfect message for me . I wrote many New Year 's cards to my friends and relatives today . Here in Japan , New Year 's cards are really popular . On the other hand , Christmas cards are n't as popular . You know , it 's the most famous American animation . We Japanese speak English , I hear like Words of Space . I 'm so exhausted , I just finished teuk kong mu sool which is called martial arts ? ? ( I do n't know how spell it , , , ) I had highking on my neck by the guy who is 5 years younger than me , , , I think that foreigners are open minded to everybody , so I can make friends easily . Now I 'm learning English and Polish at the university . Unfortunately , you ca n't understand the [ useful ? ] of the song if you do n't speak french because the lyrics create the [ variation ? ] ( but listen to it anyway ^ ^ ) . Everything in the outside world was scary to me , and I could not move at all . He is 9 years old now , and still believes in Santa Claus . I must change to Santa Claus in secret at midnight . Lately , my parents always complain about my learning schedule . I feel jealous ! A screw is difficult to take off and took about an hour . There were n't many bicycles . A lot of big and high buildings were there . The hotel we stayed was gorgeous . Then put in the backpack and we climbed the mountain . And in the train I came across a man and he asks me what train Jhon got on . What I came up with is , `` ( John got on ) The train earlier than this by two trains . `` Does it make sense ? I received a telemarketing call today . Nowadays , I receive them every day . I have n't put my coat away in the drawer yet . I 'll sleep now . January 14 ideal : What 's the ideal educational style for American people ? ( for ? ) basic : I thought I needed to study basic English grammar . Finished ! : D Otsukaresama Everyone ! XO ( btw how do you say Otsukaresama in English ? ) Unfortunately , this weekend was very warm , spring is coming early . It consisted of two parts . In the second round , Manny Pacquiao , the pride of the Philippines , K . Yesterday , I read a documentary about the `` blood diamonds `` or `` conflict diamonds `` The diamonds which from the civil war country was called conflict diamonds , or blood diamonds . But in 2003 , diamonds company , civil society group and governments around the world began an effort to stop the trade in conflict diamonds . The diamonds from the civil war country will not be sold in the international market . Although there are many illegal diamonds traders , they bought the conflict diamonds . Because it is the first time that I went on a trip with my boyfriend , I was so excited . If you visit KOREA , I strongly recommend visiting geo - je - do ( there are many fascinating spots ) . I have to prepare for the class and I have new students whose names I should remember . April or Spring is the time when I 'm very busy worrying about a lot of things . . . . So , I would like to be find a language exchange partner My own dream across the sea . I and my friend went to nearby lake and we swam and walked in forest : ) There are many trees : D and it 's green and brown : ) At this lake there is a beautiful beach . We think we want to stabilize our salary . I think companies have a responsibility to stabilize our salary . I have to work until at 6 : 00 and than I going to the English Academy from 7 : 00 until 8 : 00 and then I will go take care of my daughter at my mother in law 's house . That will help him / her cultivate the ability to concentration . I am not the kind of person who would want to be a professional housewife ; however , I feel happy every time I make the house clean and tidy . I felt very tired and stressed , but it was very interesting . That 's surprising is n't it ? ' A person whose name is written in this notebook shall die . ' due to the movie `` Notting hill `` What is cultural ? It is defined as the civilization and customs of a certain race or nation . How can we avoid it ? It 's easy to assume that there must be a scramble and I 'm not used to doing things like that . I love The Stiff Dylans ' version . Reading practice What a stupid introduction lol . It is really difficult even for me as a native Japanese to get used to it . to begin as a beginner but I just waited 15 minutes . Hi = ) ) ) I want to continue my favourite dorama list ! I was shocked so badly after I watched this dorama ! Ok , to be continued . . . = ) Yesterday , a T - shirt was enough . Before I go to bed , I should prepare my quilt . If I do n't , this evening I wo n't sleep well . Today I receive 4 clothings that I bought form taobao . He diagnosed him with a cold . He is cranky , so I have to hold him all day . I started learning the use of the Excel application on the first day of this month . I spent 9 months in Manchester with my host - family so they 've become like my real family ! Just went to the gym , and as usual I am working now . Go straight along Peter Street and take the second turning on the right . Then , turn right and go along the road until you get to Piccadilly Circus . I had a lot of nightmares last night , because I watched the horror movie `` ghost ship `` before going to bed . And I 'm a beginner in Chinese . Now I 'm taking class called Children 's Literature . We are planning to repaper the walls , redo the floors , and change the cabinets in the kitchen . It 's named Bianchi . Bianchi is an Italian maker . What 's the difference between them ? `` Gheimeh `` is a kind of `` Khoresht `` ; `` Khoresht `` is a meal that consists of meat , vegetables , and beans or grains . Because of this use , some people called `` Gheimeh `` a dead people 's meal . In the next stage peel and cut tomatoes and fry them ; you can also cut some mushrooms and a green pepper into small pieces and add them to the frying potatoes , then add salt and red or black pepper to the mixture . First of all , spring semester has come and I 'm taking some classes , However , my speaking and writing score wasn ` t good . My colleague 's space was so impressive . I ate Ayu , river fish in summer , tofu , white beans and sashimi . This photo is of a place where I usually go fishing . These laboratories contents have many subjects and they are hard . I have just finished my SPM which is the exam that must be taken by the 17 - year - old students . After that , some of my friends are going to pursue their studies in colleges and universities . There were lots of friends ^ - ^ When my room is tidy , I feel more energetic . Today , I consulted the agency who are involved with students studying abroad . The councillor said that it would n't be useful to study abroad for only 2 weeks . I stay with an Italian family in Canada . Reference book I Bought shoes . I 've always wanted to buy shoes to wear for spring . I bought songs by Ann Triskel at the iTunes store . without a title Can it be interesting ? But the temperature was terrible , Because summer starts in a week . When we arrived at the aquarium , we were very tired We are not given any time for debate or questions . So he is not popular with students . A month has passed since the big earthquake has hit Japan . All we can do is to keep donating money to them and spending money to buy goods from the regions suffering . When someone ignores me , I 'm hurt . I think being hurt is not bad , it 's sometimes necessary . A hot day ! The temperature is 35 degrees . How I wish I can stay at home forever ! If I had enough money , I would buy many bags and clothes , but I don ` t have enough money . Because I must save a lot money to change my car . I have stayed home almost every day since summer vacation began . . . I 'm an entrepreneur in Japan . Some people use their real name and others do not . After a short walk in this round market I went to a coffee bar to get a coffee . For example , Naruto , Keroro Gunsou , Evangelion . . . and more . I downloaded Merriam - Webster dictionary , English magazines , and an English word book . Then , I came to the conclusion that I am experiencing difficulties because of the difference in cultural background . Although it was the first time we had made one , it took us only thirty minutes . 2006 Completed Japanese instructor course 420 hours at Hiroshima YMCA 2008 Had experience as a Japanese instructor in Melbourne When we borrow money for someone , _ we should determine to precise date of repayment . `` No smoking `` signs surroundour daily life as we walk in the streets , shopp in the malls , travel on buses , or watch movies in the cinema . I 'm so sorry for not being as active as the past weeks here , but I truly am busy because it 's one week left to the Persian New Year ( Nowruz ) . People get really really busy from about two weeks before Nowruz to two weeks after it . I went to the National History Museum on foot ! The police said , that they evacuated the houses of two old men . In English class , we are reading an essay which is about the moon 's mystery . When it is near the horizon , it looks bigger than when it is overhead . So , we get impression that the moon is big because its real size is bigger than expected size . Because I am not satisfied with my circumstances or myself sometimes . During the test we needed to read an article and answer some comprehension questions . I think the context was too sophisticated for me ; like `` message from the cultural elite : read , you morons , and eat your spinach while you 're at it ! `` My friend said I did not understand because I do not know the American culture and it 's kind of a joke . I am quite excited to have my own lang - 8 username . * * * Dalian is a beautiful city with lots of delicious food , pretty beaches and warmhearted people . I got a used notebook computer to study the structure of the PC from my friend , but it 's broken . It was heating gradually , and the operating system was shutting down repeatedly . I have little experience dismantling PCs , so I do n't know what to do . I have to buy books to study . However , I feel sad because I am going to leave my school that I have stayed during five years , and I miss the people and everything that has happened in this school . I appreciate the memories and the wonderful favors in my life . I think the second way is the most suitable for me . Previously I worked as a full time employee for the same company as now . It 's much simpler than you think , inspector . or is he serious ? One of my friends told me that they are just looking for japanese girl because they are pretty and easy to play with . I 'm sure that sometimes it 's true . An old film , `` Phantom of the Opera `` was played on the screen . I wonder whether I can live in a foreign country or not . Today , I begin to keep my diary in English . but is it really ? According to the program , he still lives in the small town where he was born and lives like an ordinary local person , even though he is a billionaire . As we know , there is no special machine we can use . Last weekend / a vegetable yard and my small pots of plants . I 'm going to Tokyo for a job hunt . I am going to go NY next year for my private exhibition , so I have to learn English . However , I 've succeeded in reducing my weight by ten kilograms within half a year . Actually , I am keen on wearing smart clothes and want to look cool but it is crucial ( ? ) for that to have a good shape of my body . I am goingshopping today . I ca n't wait . Second time , I should use `` glad `` . Somehow , I am writing my dairy now , it may be a good day today . ( ? ) Because not only is it hot outside , but also it 's cold inside . And electric power needs to be too cool in rooms that make more CO2 . I can do this but can you ? I would never lie to you but you do n't believe me . Tell me what I should do . I miss the times when we were happy . I have been looking for a new house these days . I would like to try being an actress in Hollywood . So the principal decided to suspend the first grade class . I also work in an apparel company . I found every sentence I wrote usually contains `` I `` , can anybody suggest a better structure ? We would take a ride every Saturday . The winter coats that I had dry - cleaned were needed again for today . I cooked two salads . They were so juicy and sweet . The afternoon is very quiet , I can only hear the sound of typing keyboard . but , do n't call me neat . I 'm not neat . I have n't been here for more than a month because I have no computer . So , I am starting on a diet where I cook traditional Japanese food . Today 's menu was Udon and seawood salad . I was amazed that so much Japanese food really does n't need oil . I think that this is because the earth is dying . The issue of global warming is getting worse and worse . The last day I logged in was . . . . . . They help me to live and to change my life . I 'm suffering from a backache . My favorite is LINKIN PARK . It 's good season for autumn leaves ^ ^ Peco is extroverted and has a passion for table tennis . Thier characteristics are very different , but neither has real talent . I felt that I could n't do that , so I remained standing . We call them , `` Thunderstorms Guerrilla `` . First , I will turn off my lights frequently ^ ^ Recently , I 've been getting very sleepy . , What reason is this ? There might be some Japanese people who would come up with a Korean drama , but it 's not that Full House . The picture is from a scene where Michelle says `` Duh `` to Stephanie . Maybe in this sentence , the man will be suspect , not the police . . . right ? Most Japanese People can not speak English . so I want to work for a software development company But I think I ca n't take advantage of what I 'm doing now B : continue my studies and try to become a researcher . I was a sexy pink cat with my friend . ( we wore the same costume : ) ) I think the Japanese cherry `` Sato - Nishiki `` is the king of cherries . My home town , Yamagata , is famous for producing cherries . Once , I ate another kind of cherry , but I realized that Sato - Nishiki is better than the other cherry . . . JOB SEARCH I make customs documents . I have no interest in it . It is OK to make customs documents and make reservations for shipments . I want to do a more creative job . Many friends often tell me that I must change . . . Change what ? I was talking about a name with my friend . Actually , this is my first time that I have stayed in the United States , and I missed Japan during the first few days . It is dedicated to the roots of the Japanese and is a very solemn place . I chose espresso ice cream and it was a right choice . Today 's theme is `` room fragrance `` , because I bought some room fragrance yesterday . And Rowan Atkinson was nice to the boy . I heard that Fahrenheit is defined by normal body temperature . Recently , ' OTOKO - NO - KO ' are increasing paticularily in Akihabara , Tokyo . On Thursday morning , I took her to the clinic and the doctor prescribed some medicine for a cold . Their conditioner makes my difficult hair easier to comb I 'm sorry for the filthy talk . I feel itchy so often but I wear shoes or slippers so I ca n't scratch them . I turned on my computer and connected to the machine at my company in order to examine the check list . After two hours , I finally processed all of the problems . It 's special kind of relationships - language - relation ( furthermore - LR ) , relation , which based on wishes to communication . I decided So I decided to become a manager and change my department . I 'm feeling excited . They can talk before we know it . How can I enjoy studying English grammer ? ? Actually I do n't like studying grammer . . . . . I wonder how I can enjoy studying grammer . . . Our house is on the 7th floor . I then pressed the button for the 7th floor . . . His mother or his family 's maid was already on the elevator ( I could n't see who was inside of it from my position ) . As far as I could see , he was not even embarrassed . But we 're in Singapore . Besides if I did so , he would probably pee on our doorstep to take revenge on me . I hope some peverted kidnappers will take him to their house which has a lot of sex toys , and keep him as a sexual pet forever . I bought many souvenirs . For example ; postcards , ornaments and a lot of table wares . TOday I went to Fukui prefecture . sometime I will go with my boyfriend to watch a movie or walk in the afternoon . Maybe just watching TV or talking with my mother or give my dog a bath . I came back to Korea from Austraila a few days ago to prepare for being an exchange student next year . I started studying English by becoming interested . . . I like listening to the radio , especially late at night . To my surprise , It cost me about 2500yen ( almost 20 dollars ) . Everytime I breathe the dry and cold air , I feel warm , because the smell is familiar which makes me safe . I have studied in Beijing for almost 3 years , but sometimes I still miss home . Yesterday at the restaurant I really had to study English for the TOEIC test but as I was with my friend , in fact I could n't do it . ( My friend would study something as well ) Do you know why ? / But you know , whenever my friend talks to me , I will have a chat with him and I concentrate on talking with him and studying is out of my objective . . . Shonan is in Kanagawa prefecture which is near Tokyo . Near sounds more natural . It takes ten minutes by bicycle . Whenever I want to relax , I can easily go to the beach and enjoy the beautiful scenery and delicious food . Because they stay up with their crying child all night . The gray sky seemed to cry miserably , and the mental energy in my body has been fading away little by little . Another thing in order for you to keep healthy is to cut over - eating in your diet . The parties that out of power are asking the ruling party for a change in government . You can divide people into two groups . Do n't get cold everybody . I went on a business trip to Chiba prefecture . I have to make preparation for my visit to Australia . Training course of business strategy The world will form a necessary combination for you to keep your life going on : ) So many people who said `` I can never live without you `` live without and feel very happy . I was tired and I enjoyed it . It was used the concrete , not the wooden building like the other castles , so it is just the museum inside . The foundation of this castle is the stone wall using a lot of big stones like the other castle , but there are some huge stones here , like the second photo attached . along the road to the top , the scenery was so beautiful ~ I saw many notices on the moiuntain , like `` please do n't go near the cliff as it is dangerous `` `` do n't go down the wild path unaccompanied `` . when we arrived home , I found my skin was burnt bitterly and turned to red and will maybe change to black , hh ~ By watching the episodes , an English learner would not only be able to practice English , but also absorb the Western culture . They are always are the same as before . So , some effective measures have been taken to improve the quality of the spring festival gala . I think most of the time I 'm just studying to pass the exam and never think about mastering it . I know that he isn ' tsick . My friend suddenly called me and said she wanted to have fun at Roppongi because she has a lot of friends there . She had worked at a sports bar before . He is a teacher at a junior high school near my house . On the menu for lunch was chinese food , like a dumpling , dim sum and things like that . Recently my hobby is writing down the line from a movie into my notebooks . And then I memorize the line , and say it . Japanese sauce is made from various things such as vegetables , fruit and so on . Salted fried Chinese noodles have recently become known ( or popular ) in Japan . A typhoon is coming to Japan . Let 's save energy together . I would like my friends to have strong bodies so they can visit me in the future . I read an article today that said if we turn on lights often at night when we are sleeping , that can make us get a bad disease . By the way , it can waste our electricity . Let 's help our country to save energy before we go to bed and help the world . It is called euphemism . It is the euphemism `` when a native speaker says the connected `` t `` or `` d `` sound like . . . Recently , I have been getting ready to travel around the world . I want to help out in biology research and to absorb knowledge about it . First of all , thank you very much for your concern and lots of helping hands from outside Japan . Still I believe Japan 's Defence Force and other rescue teams from outside Japan will never give up finding the survivors . I 'm very busy now because of a essay for graduate school . As I travel more and more , what I find is the tough quality and open - mindedness of Hongkongers . I could get over not sleeping more than drinking coffee . Also , I have n't met a girlfriend . I want to go to Thailand . I can not stop thinking of them , but one thing I definitely can say ; her Japanese was not so good , and the descriptions / portrayals of Japanese ( people ) were very biased ( stereotypical ) to foreigners . Finally , they became friends . 11 eleven 14 fourteen Since my shop is very quiet , I have a lot of free time at work . So I have decided to write all the English words I knew starting with an `` A `` , and then check those at home . The important words are written in red ! Today was `` B `` s turn . I was wondering what is their meaning , because in Japanese , black - bellied means wicked , evil - minded or scheming . But of course , it is idiom for Japanese people . She spoke to me . I was frustrated . In that period , my teammates and I shared joys and sorrows and helped each other . Though after 14 days when our work as a volunteer finished , we would leave each other . Perhaps we would never meet again , but we still cherished this friendship and those unforgettable days . There are staff members from many countries that can talk with customers . They are not teaching English there but customers can learn English naturally . On Sunday , I went to T - place again , but this time with my daughter . My daughter brought some picture books to ask a staff member to read for her . If you have them , I would like you to communicate with me in English or Japanese . After watching the movie we went to a Italian restaurant and chatted a lot XD for me , it might be the most exciting day of this summer vacation I 'm working at a convenience store and it was very busy today : ( I wrote a self - introduction for my friend . They can say `` happy Valentine 's day `` as usuall . then I often feel annoy , because the day does n't belong to me . But other people message me `` happy Valentine 's day too , although we do n't have love ones `` . haha ~ ~ now I feel happy , although I dont have a boyfriend * * but I have some good friends . the last time , we went to a Barbecue restaurant to eat a lot of food . and it 's interesting , a group of obaasan were singing loudly and drinking in the next place to ours . They looked so happy at the day . just some old women , no rose , no chocolate , but happy the same ! When it comes to the factors in successful development of a country , no one can ignore the importance of education , and no one can draw a conclusion of basic factors in the development of a country . Take South Africa for an example , as is shown in the statistics provided by the government of Africa , there are so many families which are too poor to send their children to get an education . I saw a bird knocking on one of the trees in my garden this morning . My holiday has been going so fast I quickly ate a simple breakfast . collecting donations and taking them to the community office before ten . I image what might happen . I think they will communicate using their own words , waving their hands , compare their voice through crying , not just using eye contact . Actually , I was really thankful because they give me fun in this busy life . Then I think if we put ourselves out of our work and life , and give an eye on other people or things around us . We will find a lot of fun in our world . My favorite artists are Avril Lavigne , Greenday , Linkinpark , Fort Mynor , For example Naruto , One - Piece , D - Grayman , Gintama , and Fullmetal Alchemist , and I like Final Fantasy and Legend of the Zelda . The times we practiced were fun , and we took many pictures to remember the best times that we shared being that this is the last time we can work and play together at the anniversary of Chhs . I began learning the guitar one year ago , and I hope I could be a great guitar player as him ! Why do I have to pay as much as 15 - 20 % to servers who just take my order and ask me if everything is OK ? There is holiday on next Monday . I received a call . Often , I try to practice speaking English on this site , but I do n't think my English pronunciation is improving . In the end , Yu - Na won the gold medal with unbelievable points . Yesterday in Russia was the holiday ' ' Victory Day ' ' . First , we went to my cottage and rested there . The first diary I sometimes ca n't answer the questions because I would be nervous during the interviews . I 've been studying English for 9 years . My home 's Christmas tree My 4 - year - old son decorated my house 's small Christmas tree . So the Christmas tree decorations are unbalanced . I gathered a lot of toys , books and my children 's homework . I read a book called `` Number the Stars `` because I am interested in learning about the Holocaust of the Second world war and how the Danish rescued the Jews . To my dear friends who are living around the world now . Please listen to what I say right now ! If you do n't have them , I too suggest you should find out them soon . I hope you will become so happy to get to find a nice partner . We had a fantastic time . We were supposed to go to Stanley by mini bus from Causeway Bay . Afer that , I told the mini - bus driver that I would like to pay the fare of the other 5 members fare with my Octopus card . It makes me feel willing to continue this diary . Tomorrow , I must write and thank the people who watch this diary , and who teach me . I 'm stumped . I just want to say that I was in love with Japan and now , there 's left nothing . My major is English education , and I like English . I 've wanted to learn English for a while because I want to communicate with people all over the world and know their ideas about things , dreams , interests , character and so on . It sounds really interesting . Pendulum - Granite is my favorite song ! Even if I get acupuncture therapy regularly , the cold weather triggers it more often than hot weather . According to the book , we can live long by caloric restriction . It has been shown that when animals , including humans , execute caloric restriction , it will lead to a very active and extended life . It 's a pity that I do n't know how to reply quickly . : ( ( Can anybody help me ? ) Getting to know somebody from a different country is really exciting and surprising . Now I 'm looking forward to an extraordinary February ! my father and my elder brother had to visit to Osaka for business trip , By the end of this month , we must have our presentation to the chief executives . How can I change this status ? No zest , no power to continue studying . Also I guess it 's a little bit hard to find a person for Language exchange in `` Chinese `` here ; however , I still want to give it a shot . . . It 's depressing for a person who has learned English for If I can speak more languages , then I would speak to more people . and my sense of value will become greater . l practiced I learned / studied English at school and since that time I had no practice . I 'm so tired . I can not take consecutive days off and holidays are irregular . I Wan na Enjoy Watching Kid Movies in English ! Melbourne is good city to live in but I hate Melbourne weather ! But this month , I came back to the head office and I took part in the new project . This summer I have little free time . I only have one and a half months off . There is no heat this month . I 'm so nervous . Because I have n't prepared anything for me to stay here That 's all my fault tho . It was my father 's souvenir from Hokkaido ( a place in Northern Japan ) . I also like watching movies and if I have a long vacation , I would like to travel all over the world . These days in Brisbane , for me , it is not an unfamiliar city , because I have lived here for 3 months , but I still feel strange here . Toby knocked over some empty milk bottles . Suddenly Mr Spry 's house door opened , and a man held Toby 's arm . My pronunciation sucks . . . He 's already mastered some of those languages perfectly and is going that my pronunciation sucks . I 've never thought of the way I pronounced things as wrong , Even though I 'm a foreigner , I have to try to make it sound fluent as long He was transferred to the other branch office . I was really impressed and I cried . I have become accustomed to this changing weather , declining temperature and perpetual rain . There is a bizarre phenomena , to you guys it may be really hard to understand . Due to this reason , I can only use prudent words to record my daily life . But today when I logged into my msn , I got the information that Microsoft will not provide blog service to us and hope that we can move our blog to Wordpress . I do n't wanna be lazy anymore ! It is written by Eric R . She took the doll , and called her Rika chan . I visited the Blenz Coffee at Yokohama and the NewYorker 's cafe at Ginza . Recently I notice , that more and more of my students are being late or skipping my class . This course of action is ruining my teaching plan because many games ca n't be played with small number of people . I went to a family restaurant with my friend Mari . But I thought we should find someone to correct us like lang - 8 ! ! Nowadays , Japan is in a very difficult term . Still , many people are missing in last natural disaster and nuclear power plant still difficult situation . . . . . . Do you know the license called `` IT Passport `` ? If you have this license in Japan , you are qualified as a person who knows the basic knowledge of the information technologies . I have to study English hard until I go to the Philippines , Trip to Hundred Island and Baguio ( June ) Because we did n't have anything interesting to do , though It was already 4PM , we chartered a boat for island hopping . Soon after we got inside the boat , great awesome thunder began to rumble and the sky became jet - black darkness . . . The hotel `` Camp John hey `` where we dropped by for the cafe is awesome . but the grave was saved from the Tsunami by a hairsbreadth . In the coastal part of Miyagi , debris lays in heaps here and there , To improve my French , I have to take lessons with many teachers soI have no choice . This is a rule in Taiwan but I got a little nervous . XD im waiting for a heatblock to get warm enough . I 'm sleepy , but I will definitely go . I was trying to translate a Spanish post but . . . I love him . I do n't know why I love her so much , do n't know why I ca n't forget her , I 'm not stupid in this problem , I just do n't know ( or / understand ) why . After eating dinner , I got hungry immediately , maybe I do n't eat enough some foreigners were swimming . Sometimes they are very strict towards us . Thanks for everyone 's help and she wishes you success . I thought the life of University was busy than anytime before when I was [ sitting on the chair of classroom and listenning everything the teacher said . One of the sentence was that the students at a university did n't have free time to play , because the students need to learn many many things and pay more time than before to learn . Your kind support would be appreciated . I do n't know why Keirin , a bicycle race , can not become major compered to Keiba , a horse race in Japan . Fingers crossed . Do You Know `` Job is Shit `` ? The title is `` Job is Shit `` . Neoneat has been writing articles on his site about how disgusting the Japanese working environment is . He is also insulting even strict Japanese office workers severely . For example , `` Japanese workers are weak and dogs of their companies `` and `` I 'm working in better working environment than them . Do you envy me ? `` I think the Japanese government is shit , but the Japanese office workers do n't have any reason to be guilty . The Japanese office workers are working every day for themselves or their families . I read that sometimes Japanese people are cheated in foreign countries , and then lost their money . It contains English reading , English composition , mathematics , physics and a special subject . I am very worried , I was studying 14 hours every day for the past day , I could n't sleep without drinking , I was tried . So , I decided that I will take a vacation after the test to reduce my stress . I wish the pain ( would ) disappear by ) tomorrow ) morning . I lived on the sixth floor . I hope that I can improve my English skills , and I welcome people to give me some tips for my writing . Thanks a lot . When I found out that he really believes that I am going to India , I laughed . A question about grammar I have a question about English grammar in the case as follows . An electric bulb has a filament , but a fluorescent tube has two electrodes . I think `` We usually use a fluorescent lamp , which has 2 electrodes `` or `` We usually use fluorescent lamps , each of which has 2 electrodes , `` is correct . My question is whether the first one makes sense or not . very very bad ! I 'm so miserable , I need to learn English , but I do n't know how to study it . Please help me ! We usually stir - fry it with egg . I 'm not a vegetarian . Today , I will explain why I think subtitles are important . ( We do n't really study subtitles . . . ^ ^ ; ; ) When people criticize , it is hard . . The trips purpose is to learn The sports festival will be held next friday . I met her 1 month ago and I thought she was not speaking English as well as me but now I noticed that she seemed to speak English better than me . I envy her because her English pronunciation was more fluent than when I saw her 1 month ago . I 'm working for a life insurance company in Japan . by pumping these billions in renewables instead of pumping it in I have n't gone on lang - 8 since I went to my papa 's home . because my papa 's home is high in the mountains , I had no chance to check my mailbox and answer your messages . I felt so sorry . I miss all of you so much . When I rode moter bike , suddenly speed down . I was supprised because itwas the first time my mortor bike became in abad conditi Although there are many unhappy things in your life , you must believe there are also more happy things that will make you happy . So do n't treat yourself as a tragedy . Anyway , tomorrow is another day . At first , I thought playing cards was so boring and it does n't make any sense , but in the end , I got to meet a lot of new friends . I thought it was interesting to play cards , which was boring for me at first , but then it gave me the chance to meet many friends who can make my days in New york more valuable ! please teach me ! ! 2 I want to be a preschool teatcher . But English is difficult . . . But I was Kindergarten teacher two months ago . My hobby is watching movies , photography , watching TV , and Karaoke . I like Japanese dramas too ^ ^ Two months ago , I landed in Toronto with my husband and little baby . Today is my husband 's birthday , we plan on buying a cake from the supermarket to celebrate his first birthday in a new country . I do n't know what to say to you right now . I hope we all here will make a huge progress on what we 're willing to learn , and do n't forget to make some good friends . Interestingly , I met Koreans on my way , so we attended service together , and furthermore we were joined as one cell of CHC . Next , if the machines produced goods , there wo n't be any quality in that goods . However , if people made that , people have to make them very hard , and there will be a lot of quality . Recently , farming online is becoming more and more popular amongst young people . What 's more , it is high time that the young should be taught how to use the Internet properly . I went to western Canada on a trip for 26 days with the Greyhound `` 30 days discovery pass `` I like to paint using a small number of colored pencils . Hope make true friends through it and improve my english . I like snowboading a lot . Everyday I just get online and read some articles . It 's already Febuary and my birthday is coming . Last year , I celebrated it with my 7 fairy friends , but I was not happy then . Is it only a physical problem ? Now I get some acne on my left eyebrow and some are near my chin . I google why I have these wierd things on my face and figure out maybe I have a hormone disorder . ( Is this because I do n't have a sex life for a long time ? I 'm in my friend 's room in Yokohama now and listening to music . Because the government started a campaign called ' Cool Biz ' about five years ago to save energy . But I was surprised about it , so I could n't say anything . She told me that the company wanted a few managers from all areas in Japan , so she called again to tell methe day of job interview . Sometimes I go to a big supermarket called Woolworths in town but it 's very expensive . Do you know anywhere I can buy food cheaper ? Do you believe that there are some ghosts in the world ? I love chocolates more than bf . Last picture is green tea with milk . I wanted to take a mock interview , but before I tell it to the tutor , she showed me a ( ? ) text . It is a very delicious food . he is from Australia . My English is getting worse and worse since I graduted from senior high school , so I need someone to help me with my English . My luck was `` Kichi `` , which means so - so or normal . a few minutes ago , I said to her , `` Shall we go to eat anything ? `` She said yes . An interesting phenomenon I found in `` lang - 8 `` . If I 'm wrong , please help me correct it . You often hear this question being asked in Korea . Koreans like to classify a person 's character by blood type . A types are usually narrow - minded . They write down what or who made that day bad . Their character is also tough . They usually have analytic thinking similar to a dictator . They have many friends . Because we have two children who will have their entrance examinations of University and High School soon . Recently , I 'm studying English . Today I answered a question . The question was `` When you 're feeling sad , what do you do to feel better ? `` My classmates and I discussed death penalty in law class because our teacher could not prepare learning packs for the seminar . Ono was taken to a police station under suspicion of violating the Maintenance Public Order Law . It was the commemorative party for publication of Karoku Hosokawa 's book , who was a political scholar from Tomari . The prosecution and the Court ratified the `` Black Trial `` made up by Tokko Police . I found out about this site from a magazine yesterday , and so now I 'm trying to write something in English . The former sounds like `` it 's OK `` , `` I do n't mind it `` , or `` forget about it `` . I never been outside of Japan to anywhere except Hong Kong . Definitely it remains memorable . Because it was so hot and humid , just staying in the hotel was irritating enough . However , there 's lazer show in the night . But he is pretty cute for me . Anyway , I will write daily as much as possible to study English . On wednesday I saw a movie with my mother , my friends and my friends ' mother . Themoviewas very funny and impressive . I 'm very interested in expressing my thoughts in other languages . I figured out the reason . You 're very thankful to me , because you also like to learn other languages . You were singing a song of Guns ' N ' Roses . One of my friends invited me to go camping in Saitama prefecture . Furthermore , I 'm planning to go camping at the end of next week with my university friends . I have one daughter and one son . I remember that my mother said `` you ca n't beat your children . `` I 'm appreciative of my mother 's efforts to raise me . Please help me . I live in Tashkent city , Uzbekistan . My hobbies - basketball , listening to music , playing bass , and reading books a little ; ) I hope to make more friends throughout the world , and speak English very well . Should I introduce myself ? Anyway . . . The Japanese government right now is reviewing its nuclear energy policy due to the Fukushima nuclear disaster . Under The Basic Energy Plan , nuclear power will be Japan 's `` core source of energy `` in the medium and long term . And I want to try writing about India and its culture ! ! ! there are 6 preliminary matches of GP . My favorite program is last year 's performance with the music ' the Moulin Rouge ' in which yuna kim set up a new record in the short program . ( figure skating is divided into two sections , short program and free program ) I am going to write about arranging a meeting . I think that they met their fiances , fell in love , knew each other well and decided to get married . My older sister sent me a picture of her and her husband . I was so nervous . A friend of mine said something about the hidden messages in songs . I 've never thought about it . Have you ever found a song with a special hidden message on it ? She told me that most rock songs have a hidden message , what do you think about it ? Since I have never been there , I 'm not sure what I will do in Seoul . Recently , I began to read and listen with the iphone . How can I get grammar skils ? English is very difficult , but I have a fun time when I study English . My aim is to write a diary every day on Lang - 8 . The main purpose of this trip is attending a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm going to Las Vegas today ( for no special reason ) . After I put my cat in the kitchen , I went back to eating my supper , until I noticed that my cat was behind me again . It 's the first time I heard of this kind of website which I think is a great help of language learning . I like to read novels and watch movies which are very ordinary interests . We , an audit group , are sending the Accounts Receivable confirmation letter to overseas customers . Hello , my wonderful friends . Today we had a special class at my school . instead of hiragana . . . But I have no opportunities to meet with any so I checked a website that introduces Japanese people to foreigners . My main object is to learn and improve my English as much as I can . So why am I going to the Philippines ? There are three reason for this . Could you paraphrase the meaning ? Is is kinda `` I should 've been more careful about my . . . `` ? He also said that the first Japanese he had learned was in the menu of the YAKITORI ( Japanese food ) restaurant ! Every time I look back , I am very surprised of how sensitive ( or wussy : - ) ) I can be . I have registered here only today and I was surprised how great this site is . I saw how you people correct mistakes . Now it 's so good to make mistakes , because I know you 'll correct it , so I will improve my English . Thank you ; ) When it snows heavily , trains sometimes stop or delay . Most of my friends do n't use their cellphones for this long , but I 'm not good at using electric things and also I do n't like reading directions either , so I tend to use my cell phone till it gets any damaged . Well , but I always fell happy , somehow fresh once I change to new one . I intend to meet our second eldest son at the end of this month . Unfortunately , recently I have made a lot of absent - minded mistakes because I was very busy . My free time has almost come to an end . It is five minutes to eight now . I received an A or A + on all subjects . Taking this opportunity , I decided to study harder . Do n't know when I 'll be allowed to use the computer again . I 'll tell her to raise my grade a little and next term she can lower it . Any way the rest of the day was kinda fun . I already explained why . I wanted you to know why I 'll be gone for a while . I had been lying down at the poolside for 6 hours yesterday . It was not so shiny yesterday so I did n't notice the sunburn , but now my skin has become awfully red . In addition , it 's bad that I slept last night on `` Igusa `` , a Japanese rug made from grass , so my sunburn became worse by rubbing ( ? ) . Ponto - cho is a street famous for good dining , restaurants and bars in particular for night time . It 's Labor Thanksgiving Day today . The devil felt she needed the heroine . But when the heroine saw that the devil had lied to and fired another staff member , So I resumed writing in Lang - 8 . If the band was lower than that , I think the road to the goal would have been much further and my departure would have been delayed for a few years more . I 'm a Chinese girl who lives in Australia now . + G ' day + This is my first time using this kind of website that my friend recommended to me . Therefore , I 'd like to practise my English with you guys and learn something about French . This is because the unemployment rate is gradually increasing and many international students from South Korea are returning and actively job seeking . Now we are gathering donated goods and practicing music . A year ago , I was n't interested in Canada . Other picture is New Years hors d ' Both of these are Sakura flavored . I know that ghosts do not exist . Tsunami killed many people and destroyed villages . Thank you so much . I could n't go to school today . Recently , I enjoy writing my diary in Engilsh . But I always do my best to communicate with foreiners foreigners by using expressions the best I can . . The world is n't equal , and the inequality in life is continuning . The Mid - Autumn Festival is comimg , and may everyone have a beautiful and happy moon festival ! ! Recently , I 've read a book written by a mathematician named < beat the dealer > . So I went downstairs to eat breakfast , and I checked my email . This is a good way for me to get rid of stress . Because I am an office worker I seldom have a chance to exercise on weekdays . But I try to exercise for at least 30minutes on weekdays except on Monday and Thursday . Because I go to Korean class on Mondays and English conversation class on Thursdays . We usually have a good relationship , but sometimes we have a little trouble . Also my family believes in me , A few minutes ago , the announcement in Dalian airport said , the flight to Shenzhen will be delayed about 2 hours . Laborers get more power to protect their legal interests . Until now I have studied Japanese and have traveled around my house area ! To make friends , I know that I have to speak Japanese well ! my English is still terrible , but I will write dairy day by day ! and then when my Japanese class will be off to beginner , I 'll write this diary in Japanese ! ! My first time to write an entry on Lang - 8 . because I decide to immigrate to Los Cabos , Mexico . `` Recent research has shown that children are more relaxed to study than ever before , since the light education policy was introduced a decade ago . I am a Japanese college student studying English . Lang - 8 is a platform for multi - language studying by mutual assistance . With the platform , you can correct mistakes in people 's articles , give them your advice , to help foreigners to study your native language , while you could get a good feeling by helping others and get help from other friendly people . Because your journals maybe refer to your privacy , the study platform allow you to select who can read your journals , for example Internet users , the Lang - 8 users and so on . My grandma said that holly ghosts protected me as my guardian and kept their eyes on me during my birthday . Because my life is individual and joyful . I am currently attending a university in the U . Actually , I finished all of the classes except an advanced English class . When I lived in Japan , playing the piano and going to my favorite places with my husband were best way for relieving stress , Of course I like talking with my friends and going shopping and and so on . So I have to learn these words before I start the second one . We have ten levels and a staff member told me that the four classes from the top are ranked the highest group and these four classes use the same textbook . walked there holding to my brother 's shirt in my childhood . There is a piano that my parents gave me in my room . One of the main dilemma goes : should I marry someone who is similar to me or different from me ? Marriage is an important thing for people where we choose someone to live so intimately for such a long time . Therefore he had the nickname `` Dokuganryu `` , it means one eyed dragon . It tastes like good beef steak . Those chaos , confusions , depression . . . It seemed like it was never going to end . And I did n't have a clue . This is the first diary for me ! This theme came up after The Wall Street provided complex financial products that led to a worldwide resession . I wonder whether CEOs should have limit salaries or not . However , if the company has debt and will go bankrupt , CEOs should have limits on their salaries for the company and employees . we want to make repairs ( or overhaul ) , and buy new equipment . I feel that there are many mistakes ) ) ) ) I entered university in Osaka . Of course I sent a message for my English teacher . I 'm now studying English . I want to make friends with more people from other countries and I learn English . There is not a cloud in the sky . Actually , there is the nice beach that I can get to by running ten minutes from my apartment . I could see the really beautiful view especially today . I am going to go to the beach again after writing this diary and visit a cafe where I can see the beach in order to study English . Studying should be comfortable , should n't it ? ' Our case is not a Chernobyl , and the accident does n't have any effects on those of us who are living near Tokyo . ' as of March . But I dont like to study grammar , so always use simple words with broken grammar . Please check my writing to help me ! ! Because my parents always spent the weekends for their hobby instead of spending it with us . I will pay $ 85 tomorrow ! I cooked a pie in the microwave , washed some salad and fry an egg every day for my lunch . To my surprise . When I was in elementary school , I wanted to be a teacher . Because mathematics usually have definite answers . I ate noodles and it was to my taste . Therefore , we have decided to offer some discounts for a period of time , and provide interest free instalment for a certain number of customers . Like every student in China , I have studied English for 10 years . I agree with them now though . When I watch CSI , I ca n't understand what they say . Taking buses , going shopping and chatting with friends in English are my dreams in other countries . There are beautiful varieties of dolls in that country . It was weird for us to clean up stuff like her friend 's old letters and cards . I learned about ' present perfect ' and ' present perfect continuous ' today . I 've been very confused when choosing between ' present perfect ' and ' present perfect continous ' . Because my eyes were itching . I am very comfortable ! Therefore , I 'm going to try to write journals in writing style from now on . Also some high schools or universities are very difficult to enter , due to the exams and competition . We actually call the cram school ' ' juku ' ' in Japanese . However , when we look up the word ' ' juku ' ' in a Japanese - English dictionary , it says ' ' cram school ' ' . My online English teacher told me about a popular sweet from the Philippines . So most of us laughed at him , and looked down on him . Maybe you also can find more advantages of the big gray wolf from the cartoon . professors ' announcement or the materials that he posts for the class . But at the same time , I wanna master English and go to restaurants to talk with my co - workers . Tuesday I was at my Japanese class after work , and I was REALLLYYYY tired since I only slept 3 hours the night before ( hard to go from night shift to day shift in one day XO ) . ( Think with a twisted mind if you still do n't catch it . . . ) Trust me , I was redder than a juicy tomato . If I could have hidden between the glue and the floor I would 've = _ = The even funnier part was that the teacher did n't understand and made it even worse , so afterwards when everyone calmed down she said : The owner of horses have to select a strong , able horse and make him into a race horse In order to be a race horse , he needs parents who were race horses . The Special sauce was made with Go Choo Jang , and a little vinegar . How about Oyster food in your country ? The price negotiation was tough but they finaly offered me a good price . Can you imagine that a man can control the weather ? In some Tribes of native Americans , they are given names which are derived from a vision at a certain age . Then , their synod or chief endows them with a name in accordance with their vision . Now that it is seems that topics about native Americans are consigned to the dustbin of history . If anyone suffers from migraine , how about drinking herbal tea ? I recommend it ! We went shopping and bought pants and a jacket . To better act this drama , we practiced half - hour every day for about three weeks . when we playing , I was very nervous . our drama was very popular , and we won the NO . 1 in my company . The other day , May 8th , I went to the fair trade day festival in Marunouchi and it was one of the greatest experiences I have ever had . ( The ) Healthy and tasty foods , non - wasteful products , and organic products and clothes were very fascinating to me . And also I was strongly attracted to fair trade products because most of them are high quality . Of course , I love cheap , fast fashion like forever21 , H & M and so on . Please forgive us . This test is very important , it is essential for me to become an exchange student between my university and Florida State University . I like to read gossip news about American celebrities . Lately I 've been reading her gossip news everyday . So , we were quite a bit worried first , but finally it was proven unnecessary because they were very well accustomed to the car itself , as well as dealing with risky situations . Anyway , It was very far to go to our destination - the eastern beaches ( kangreung ) - from the city ( seoul ) . I am really pleased by it . The lyrics written by him are easy to sympathize with . My cousin taught me how to see my friend 's sex or native language at Lang - 8 . I can see my friends ' information by myself . I will try my best to do it , trust me please , haha . I am sorry for the earthquake in Japan . The stalls sell shaved ice , apple candy , Yakisoba , Wataame and so on . Of course , there are game booths too . In addition , we can make friends from different universities in the club . They caught clams in a full basket . Apparently , it can be said that they copied the concept from the game . I want to pass the exam . Wonderful ! I finished my exam yesterday . It 's so agony while preparing the exam . . Although the exam has been over , I worry about my result . Having this exam again is what I do n't want . So ( therefore ? ) , please let me pass the exam . You need no crystal ball to know what I did next ; nothing at all ! That does n't mean I did n't care about my exams at all ; I always checked my answers , I could n't help it ! We were allowed to take the test sheets with questions home and the answers were published at a website exactly one hour after the exams had ended . If I screwed up my French or Maths exam over the next few days , I would definitely have to do a resit or in the worst case : fail . Of course , it had already passed my mind a couple of times before , but now it was serious ! To make matters worse , I totally lost my appetite the following three days or so , so I ate nothing more than one sandwich and some crackers each day . I got something I call the ' ' vacuum cleaner - syndrome ' ' . . . I can use skype & yahoo messenger ! Today picking many Potatoes . they do n't have practically any friends . because I was disobedient . that 's why I have n't strayed far from the right path . We played soccer and Wii sports . I have two way to learn vocabulary , one is to read DUO 3 . 0 books and the other is to read the simple English news site every day . I was not just moulding raw thoughts into a linguistic form , but trying to produce new perpective to view things . It can possibly give birth to some deformed or a lateral thought ! Then I might need to wear new glasses to view another world hidden from ordinary Japanese colored glasses . Although Chinese is a little difficult to learn . . . it is an Aussie tv program , you know ! Yes , we can see many celebrities from many different industries such as films , music , literature and politics there and we also can listen to their interesting interviews . No way ! ! ! Also it is true there are many celebrities who are quite defensive of gay things . I can correct articles that Japanese studying users write . Thank you . I should spend my time efficiently . bad : fuck ( lol ) It was so delicious . I enjoyed . I like it because it is good for my health . Order is the longest book in the Harry Potter series . The Japanese government told the president of ANA not to allow the same problem to occur . I 'm going to go to Fukuoka tonight . I really do n't want to stay at home during winter holiday . Tonight , I have an appointment with someone who bought a computer from me at the restaurant . I went to the library to study physics because of an upcoming examination . My instructor suggested that I read a good essay written by one of our classmates from Quwait . My pronunciation was really bad , and it was very hard to say water . In Japanese , it is difficult to pronounce ' water ' , because we do n't have the `` w `` sound in our language . In my neighborhood , the electricity has failed . This happened shortly after the earthquake . I logged in tolang - 8 for the first time since May 01 2009 . afternoon . Recently , I have n't studied English because I neglect it every day . But , I restarted studying English since today . Most of Indian people are Hindu , so they do n't eat beef . It is unusual to use meat and fish for a meal . I stayed there for 10 days because I got the swine - flu ! I had almost a 40C fever , and could n't get up . It was very cold this morning , and I found him trembling ! I think he will be trembling tommorow morning too . But already four days have passed ! Their messages encouraged me very much . Let 's go boating on the sea . Wo n't it pleasant in the cool breeze ? Sincerely yours . I 'm not a psychiatrist , so I did n't know how to take care of the patient . I 've taken care of people who have had depression , so I can handle them , but it was my first time to have treat a person who has bipolar . I 'm in Vancouver . I am in Vancouver . It 's frustrating that I ca n't speak English well enough . I met my friends I had gotten to know when I was a university student I enjoyed talking about many things and drinking with them . Though the news may create argument , I felt very happy that a woman who had longed for a baby , finally had a baby at last , at age 50 . Probably in our time , the definition of being a mother may become nonsense . There are several battle scenes ( not as beautiful as before ) . I was nine years old and studied in the fifth form of Russian Secondary School , in a small town . After that I studied English at college , if you can call it studying . : ) ) We had only 36 hours of English lessons over the whole four years of trainign : O I would have most likely called it a revision of I learned at school . Recently , I played a game called `` Mind10 `` with a co - worker at break time . I say `` Are you yellow ? `` , and look at everyone 's face . On the third day , it was rainy , but we went cruising I had been very impressed . he is very similar to me . Mabe a lot of meetings make me stupid and foolish . cause , will is similar to me . My hair color is brown . However , I had some concerns about my fitness and health , so I started to work out . The first place I picked a wallet up was in front of a shopping mall which is near my home when ( while is better ) I was going to my work place ( work is better ) . Nowadays , I 'm so terribly sick of lacking money . . . Now I 'll go shopping in Harajuku . but my next holiday , I am going to Akihabara with my French friend . thank you for reading my diary ! I will compare my sense of values with foreign student 's and January 3rd 2009 Actually I had taken such an injection when I was 10 years old . Encountering so many supernatrual things at the same time , the situation of my brain was kind of touch and go . I did n't speak to myself too often , just once in a blue moon , but be prepared , something was definitely wrong . `` It 's not my day . . . `` I whispered , `` I 'm just too tired . . . `` I want a Korean - Japanese dictionary so I will understand to the words to their songs ! I 'll stick to study English in future ! ! I have just finished cleaning up my room . My supervisor told me that it is tough to teach students English . Although to leave my city is very sad and I do n't want to live apart from my family or friends , I think this chance and experience will make me strong . I can imagine the situations and dialogues through the characters motions and expressions . So she recommended the drama to me . My son and daughter take care of her mainly . So she is cute . So I think it is best for my request She said `` It 's like a home drama in America ! `` Today , I went to a Japanese super market . I went to school ( ESL ) early fast time today . My class is Pre - intermediate level . There are Japanese , Koreans , Brazilians and Chinese students in my class . During this three days , I will will be in training at work . Today is my first day of training . But to tell the truth , the reason why I love her is unexplainable . It was terrible ! ! however sometimes I feel lonesome during the night so I always listen to music that I love I wish everyone a happy time on the Valentine 's day . . . I remembered my trip to France three month ago : ) I thought he was a young lady when I just saw him from behind . But he was a little different from before , because this time he was wearing a green wig . First Writing As the title said , my new car has arrived this afternoon . Of course , it took me about a month . ( it 's two times longer than studying in the academy ) I 'm studying the other subjects by myself . It is a samurai movie . The main character is Ichi who is a blind girl . I have some questions . In our university there is a tradition . Next , the fourth grader plays the role of doctor and the fifth grader is the patient . When we take this examination , we are all very nervous because volunteer 's play role in patients . There may be inappropriate expressions . . . But remember , remember to go home to chat with your parents , to cook for them , to eat with them etc . My favorite shampoos and treatments are `` Dove `` and `` Pantene `` ! ! ! ! My family have managed a liquor shop for 40 years . Then he died 65years old when I was in the first year of elementary school . I can correct your Japanese diary a bit . They can sacrifice theirselves for the family 's happiness . Attending my friend 's wedding banquet I attended my friend 's banquet on October 3rd , which was also my 20th birthday . We could n't find the restaurant for 30 minutes , because neither of us has a sense of direction . Finally , we found the restaurant at the last minute before the banquet started . I was always scolded by my art teacher , because the picture I drew never looked like what the art teacher wanted . I hope she has happy life with her husband . I 've posted my first diary for half a month , but to my disappointment , it Im really excited right now but , at the same time , I feel empty . . . . I have a hamster . I think her name is very cute . It means flower . It makes sense though . Most young people have goals like fame and financial security so they tend to study for the sole purpose of their career . Recent , I played bowling . If only we could be delivered from this enormous amount of homework ! I may sound silly , but I love every lesson ( except Physics and Chemistry ) . . I am afraid that it seems I am falling in love . I 'm wathching a Japanese film called ' Death ote ' on TV . The film is based on the popular series of comic books of the same name . Both the investigator and the criminal who uses the notebook take center stage . So my Waterman fountain pen has irregular ink flow . ( ? ) I studied my English 4 years What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitsubishi and Mazda ? So please check and correct my diary and please send me a message if you have interest in Japan , Tokyo , me , or whatever ! I am sleepy because yesterday 's seminar was harder than 2 days ago . Separating Apollo with your teeth is sort of common memory among us ! I tried to start the session in safe mode and after a couple of attempts ( twenty minutes or more of waiting ) all seems normal , until I saw an error message that warned me about an error with the NVIDIA graphics card and its drivers . I am visiting my daughter 's home in Toyama pref . I have problems with building constructions , free conversation and fast English - speaking . I attached these pictures , please view / do take a look them . I was thinking of how I saw it without my glasses while wearing only the 3D ones . I have no power to continue writing . so today I am not writing anything . Recently , I 've been reading Alice in Wonderland written in English . I am learning in a Medical College now . There are only seven boys in my class of 30 . At first I thought that such a class might be boring , but in the past few months my life has changed . They are all very humorous . First I want to introduce our hostess Bin . I call her Boll - piging . When she begins to talk I laugh because she will always say something funny or interesting and she is a very cute girl . Yesterday afternoon during PE class , when we started playing a game , she was still carrying her bag . It was a really huge bag , which made her look like a snail . Our teacher asked her to put down the bag , but I was wondering ' ' Can a snail put down her shell ? ' ' The books ' names are `` The Traveler 's gift : seven decisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . A few days ago I searched on an internet book store casually . After half of a day I received it by a deliveryman and read it immediately . Finally I 've finished reading this book I went to San Diego with my friend last weekend . The beef was baked with onion , green pepper , and tomato . I was lucky because I took a bath last night . They answer to Mickey 's questions , but they never answer to me ! I accept the situation , and I 'm crazy about Lang - 8 beside them . Many people went out to join the evening party . She said she was tired but strangely I suppose that sometimes people need unpredictable incidents . My partner for Catalina was Kathy , Next I had a dictation lesson with a Japanese teacher . In summer , I could n't go out , because it was too hot and I did n't want to tan . The rainy season between spring and summer is called `` Tsuyu `` in Japanese . Incidentally , in the gallery , I was intrigued by the publicity for Guerilla Girls which said , `` Do women have to be naked to get into the Met Museum ? At the beginning of the exhibition , there is a board that formed with the name of male artists ( Andy Warhol , Josephine Beuys etc ) . At first , when I saw this work , I was fascinating by the dress but after a careful observation , it made me to think about criminal fire . . . It means there is no data on my desktop , in folders and even in `` favorites `` . shippai ( fail ) and shinpai ( worry ) Kaeru ( frog ) and Kaeru ( come back ) I do n't think that the amount of posts or comments about a certain player / club / league exactly reflect how many fans they have in this huge community . In Japan , a university student 's tweet became the topic of conversation . A student confessed his cheating in an examination . Nobody pushing me to do anything , noone to exploit or manipulate me . Yesterday , my sister and I went to the cinema , and we watched `` Gnomeo and Juliet `` . It 's very funny because when a human sees them , the little gnomes quickly turn into porcelain figures , in the position they are in at that moment . So I 'll be training till dinner ! Perfume : The Story of a Murder I stood contemplating the rain under the leaves . They were glistening and clear as crystal . Especially in the University , I can spend all my time in my studying my favorite things . In the library of the University , there are almost all of the books and newspapers I want to read . Today I 'm going to the theatre . While I was in NZ I had to speak English everyday , but after I came back to Japan I became so lazy in learning English . . . I teach him math , physics , and chemistry . defend : He tried to defend himself , but everyone spoke at once , so he even could n't be heard . I have my own lang - 8 account and I hope everybody comments . My family are buddhists so we believe that the 49th day is My study methods using the nintendo DS mainly consist of studying vocabulary . Health is the most important thing ! ! Our family went to my grandmother 's house to thank her for getting my daughter a get - well gift . She was so glad to see my daughter had been better . A Japanese friend of mine who has n't yet recieved a license had a hard time driving . I think he has a good idea , but regarding how to persuade people So , If we preach Jesus ' teaching So you must have a valid reason to make her accept your invitation . I think troubles and hard times make a manmature . These dayswe 've been studying `` The Loons `` and I think I am similar to Vanessa who learnedfrom the suffering in her life . And I used to attend the foreign language college in Kyoto , but I dropped out because of economic problems I was invited to go to Summer Sonic , which is a famous music concert in Japan . There was further proof about his preference . He picked up the principal 's plate every day so that the principal would n't break his spine while bending his back to pick up his plate . `` Do n't laugh ! `` I said to him in English . Each party is focusing on consumption tax , which is like `` value added tax in Europe `` , whether to raise the rate or not . I think rising the rate is understandable , but I want politicians to stop wasting money first . This leads to global warming . our strange melody from choking up I started to make a chronological table of architects this year because I want to understand the history of architects and how they relate to each other . As I 'm going to travel to foreign countries , before my trip I want to memorize the table . Today I made a table of Arata Isozaki who is one of the most famous Japanese architects and I think he is one of the men leading the international architectural world today . According to his portfolio , he completed his first public building at 35 ! Second , I went to a concert which took place in Sanomiya city . This month I went to Vancouver and met many foreigners . I believe that it means I have the potential to improve my marks . So , I will write about some freshman girls who were behind us and saw my friend and me . At the end of the conference the school 's directors arrived and finally he told us that the alert was false ( thanks God ) . My summer vacation plan I think it 's hard to travel but it 'll be meaningful . I 'm looking forward to going there ! In the past , I hated the rainy season . I always got wet . I have lot of things , for example - some English textbooks , a backpack to go to some mountains , many instant food for dinner just in case I can ` t go to my home , and like that . He borrowed a book about ' ORIGAMI ' at a library today . We are very busy during this season from November to January because we are providing toys and goods for children and babies . But , it 's combining all mathematics functions , like integrals , inverse , trigonometry , natural logs , and many more . . . It sometimes not fun ( pressure ) working in my clinic . I feel it is interesting when they smile after I say something to them . Let 's try having fun ( pleasure ) in our day even if it is work ! I can not be absent from practice from now on . They are very convenient because I do n't need to leave home to check money in my bank account or to purchase books or something . People often say that Japanese girls are kind , obedient , and so on . I think contemporary Japanese girls are not so obedient as people may think . They are getting strong and selfish , including me . haha . : ) I usually study until twelve I have a father , mother , younger sister and grandmother . My sister is 3 years younger than me . Well , this blanket is very useful , like for example , it is easy to carry and I can save on the electric bill as well . Just a simple question to the Japanese people or anyone good at the Japanese language . . . 1 - How much Kanji syllables should I memorize before I 'd be able to start reading anything ? Some international travelers stay in Tokyo , and I am often asked to guide them to Tokyo tower . Could anyone please help me with the interpretation of this simple sentence ? How could you , if you were I . Do n't hesitate to ask me to add you to my friends if you want to exchange green patch plants ! The right picture was the second tea . Wave dynamics , _ _ thermodynamics ( particularly wave thermodynamics ) , everything about physics makes me confused . If you do your best and make the most your of talents , you will able to turn your dream into reality . Iya - na ichinichi / hi da . . to omoi mashita . Kinou - ha tomodachi to aka ( I ) wain wo nomimashita . Takusan ( no ) mizu wo kono jikan kara nomikomi / nomihoshi mashita . Tenki / kion ha mo tsumetaku nai desu dakara yuki ga mo furimasen . Boku no bunpou no tame ni . . Ima ha mada kurisumasu turi - wo katteimasen . Yasumu ha uchi de sugoshimasu , motto motto jikan koko ni kakarimasu . mo sono jikan desu . boku no bunpou . . totemo hen na bunpou desu . . dakara mouichido sumimasen . Mo motto motto ganbarimasu , Sa . . So , I am going to study , and improve my skills in English . If I learned Japanese the way I learned English , I 'll grasp Japanese quite effortlessly . I 'm not really worried about writing or talking in Japanese . Today , I went to Azuki museum in Himeji with my sister . ( Then ) I went to eat lunch at a to curry shop . I ate butter chicken curry . It was really delicious ! ! We have studied English for at least for 6 years . I think have n't studied speaking ( languages ? ) enough before . Then it became my work . If I had wanted to improve my English , I should 've written even one sentence . I am working as a mechanic at a big chemical plant . It 's dangerous because different emergencies and accidents are usual events in our plant . I thought that I would work seither thenightshift or thedayshift . He probably wouldsay you hadhurt him , either you take him to thehospital check - in or give himsome money . Wait for further news . That time I could use English . Even though people think I have many opportunities to use English , the only chance I can use English is just when reading English news / messages from the / our head quater . You will do great things and surely triumph . Starting to study English I was looking for an English school on the internet . But I ca n't find a good teacher . My family is going to grandmother 's house . I am searching for a good English teacher . let me tell you a funny , maybe not funny to everybody ( but I could n't care less , it 's my journal so if you do n't like it , piss off ) story . anyways , she looked so amazing and dignified ; in a nutshell , you could say that she was like an angel . not a big deal , you could just simply say `` he was impotent `` or `` he had a problem with his sex life `` or maybe `` he could n't get an erection `` , Especially , the grammar , which is very difficult ( for me ) . To improve my English , I borrowed a magazine from my friend . I am going to Naeba with my friend Megumi and some foreign people for 15 days ! ! I can read English newpapers and books without big problems , and made a big improvement in listening . To me , my love for the novels , movies , and characters , the happiness or even the tears they have brought to me will never change . I cooked Tandoori chicken with my friends at the cooking class . Last week one of my friends asked me , let 's go to cooking class together . I wanted to learn how to cook Tandoori chicken . I decided to try it . It was very delicious when I cooked it . ( ^ ^ ) Because of this pollen ( I 'm allergic to this ) , I have to wear a mask which is used by doctors in procedures And , the order , starting from nearest to the brain , is the cerebrum , the brain stem ( the vital center ) , the spinal cord ( this is the end of the central nervous system ) and the peripheral nervous system ( the nervous below spine ) . People who begin learning in our school are very rude , bossy and greedy . Normal people of Japan could n't meet them in life . It is the common story of Mito Koumon : ) My college classes start earlier than my friend 's and I am hopeless . Moreover , declaration of the Fair Trade Commission of Korea played a decisive role in Lotte Mart 's unconditional surrender . The commission said it will investigate whether the conglomerate had violated the Fair Trade Act by selling chickens at an unfairly low price . Today my class teacher was from Scotland . In the classe , he said ' Have you a pen ? ' . They use gerunds for mainly three type of things . First sentence , he was smoking , but he quit . They broadcasts international news . It made me feel so comfortable . In Japan , I ca n't imagine every adult wearing helmets when they ride their mama chairs . I was n't strong enough to press the power button . There is one bottel of peanut butter in my kitchen . Especially as lang - 8 is faster than before ; its previous speed was slow and frustrating . This was actually one of my excuses for not doing any writing . In my point of view it 's very good to support such a project which helps the urban poor in Africa 's largest cities to adapt to chellenges posed by the changing environment . People there are very poor . They do n't have enough food and water , and this is , in my opinion , caused by the colony politic . Especially England 's colony politic . Because in those days everything that was planted in Africa , for example fruit trees , after a harvest , were transported to England . Minerals like gold or diamonds that were found there were , along with food , transported to England . However , I 'm happy everyday Your input will be very much appreciated . The drama e commemorates the 600th anniversary of King Tilokarat . It was quite a good opportunity to view the drama , and we also donated the proceeds to the student fund . My freinds stayed at my house . It 's 3 am and I am still awake . it 's not that complicated . perhaps I am the one who messes thing up even if it does n't seem ( ? ) to be important or serious . some moron came to me late this afternoon and said `` you are a failure , I really do n't think you will achieve anything worthwhile in your entire god damn fucking life `` . Studying English There were many people waiting in line , including me . But my foreign friends often point them out to me . It 's design [ ] was so - so , but I liked its shape a lot . Phew , perhaps I should n't get anything with English words on it in Japan before I go to Australia . If you 're interested in Japan , please feel like to ask me a question ( about it ) . In the morning , I went to the office . I 'm studying at a university of technology , so I do n't have many English classes , and I do n't want to forget this language . TOEFL listening section is quite difficult We are looking ( forward ) to ( their ) promotion . Trying to practice with yourself and ( with ) others to improve this skill is a beneficial method . As far as I know , the main purpose in conducting them is for human beings . He said that at times , he had to kill molmots ( ? ) or guinea pigs for operations or dissections , if I recall correctly . Am I right in thinking that veterinarian 's profesion is to save animals but kill animals even if the animals are guinea pigs ? Then I had muscle ache . But I do n't forget to drink beer . While she was out , I came into the house and hid in the box which my mother - in - law had prepared before . I have a wide variety of friends from university . They are brain surgeons , gastroenteritis , respiratory , pediatric , pathologist . Cause I really hate pressure . As I have finished my exams and university semester , therefore I have more time in the morning , and I can write a more posts in English . I switched on my favorite radio station . So , I think that my post is finished . For example : Slumdog millionaire , 2012 , etc . Then , I played tennis . But , when I practiced tennis , I injured a foot . Because , I did n't do stretches . Korean grammar is similar to Japanese grammar . I mean , because it was a comedy , the only important thing was whether it was funny or not . Thanks for reading . I was surprised that people from Lang - 8 are so kind and polite . Anyway , I 'd like to say thanks to my new friends . I went to hospital and I knew I had little sick . . . In order to get a share in the Japanese SNS market , Facebook should focus less on having users upload their personal information to get rid of this unique resistance from the Japanese population . I like coffee when the weather is gloomy or rainy . At those times coffee is more delicious . Parfait was huge . . . . The Yakult Swallows , my favorite baseball team , beat the Chyunichi dragons . Shouting the player 's names , singing fight songs and cheering can reduce stress in daily life ! Tomorrow is the junior student 's play in the drama club . I have n't even read the script of it , so I 'm really looking forward to it ! I 've been there for . . . I suppose this place is one of the most wonderful places in the world ! Look at the mountains . . . You are simply staying on the beach looking at endless sky and high mountains and smiling because life is a good thing = ) April is the start of the new semester in Japan . `` Of course , `` he said . `` Please ? `` Here is the topic : `` Does the government have to spend taxes for UFOs ? `` `` For Japanese people , when we think about what an UFO is , most people probably think UFO is an `` Unidentified Flying Object `` or `` Unidentified Aerial Phenomena `` . I think it should go to pension after we retire or scholarships for students . . . . Recently I bought an iPad , and I 'm looking for the best application and the best way to learn English . I like drinking a lot , and I usually only sleep for five or six hours a night . It 's my first text / entry on this site . In Japan , junior students start to hunt a job and get the job until they are seniors . In the Philippines , they start looking for a job after they graduate from the University . I think it 's very hard for Filipinos . I went to drink at the bar with my friend in the city . I 'm so thankful to him every time . Actually , he looked older than the last time I met him , about ten years ago . Perhaps I can apply for the working visa here in the UK and get some working experiences in a different culture from that of Japan . Saying `` What can I do ? `` thing , I might sound a bit pessimistic and seem like I have a lack of self - esteem , but I am actually not that worried . < Character Description > I asked him what had happened , he answered `` nothing `` . I presented a necklace to her one year ago . Summer Events There are many kinds of summer events in Japan . We have to forego summer events this year in Japan because of the earthquake . I think summer events give us energy . My family and I went to a Chinese restaurant to celebrate Mother 's Day . Mum thank you ! ! You are the best Mum . This weekend I will go to Shizuoka to make a speech about my research . It 's quite interesting and I would recommend it . Before coming to Toronto , one of my friends who once studied here told me Of course , my host is very friendly and their meals are good ! `` I read a newspaper on the Web . `` But , I feel confident that I wo n't get swine flu , because I almost never catch colds . I 've given her a present for her birthday ; that was 5 days ago . It 's a wall clock , where Winnie - the - Pooh is drawn ( we like nice things ) . I 'm looking forward to meeting my host mother . And then , she made a decision to lose weight . She succeeded at losing weight 30kg and getting her ideal job , which is an editor at a fashion magazine . All employees have to evaluate themselves . `` Did you communicate with colleagues and customers I want to communicate with them too . And finally I 'll travel around the world ! Yesterday was comfortable . I went to the elementary school that I graduated from a long long time ago . On the cherry tree , I could escape the sunshine and feel the nice wind . I 'm a little nervous because I have never taken TOEFL before . It 's my favorite meal , especially kimchi ! The title is a bit long . These days , I have been feeling lonely . He is in graduate school . I think remembering other people 's name and calling them by their name is very important . When it comes to remembering people 's names , we try to make excuses saying , `` I am busy doing my own jobs , I do n't have enough time to remember people 's names `` or `` How can I remember everyone 's names . `` holiday season is coming ! ! But he said in gentle and low voice `` do n't worry about that , just always try to do your best , and do n't make any excuses in your life . `` He said a lot on our way home . He said I should be braver , and life always rewards the courageous . I need to sleep ! ! But actually , I forget lots of english , my own english skill is getting worse and worse . So maybe , it is a good opportunity to study again . Criticism about Japanese Working Condition Before they work in Japan as an immigrant or temporary worker , they need to know about how weird Japanese working condition is . Japanese 3rd year university students generally do jobhunting in order to get a job from autumn . They register in this site to check up - to - date information about the companies they want to join . I think it is strongly weird to prepare for jobhunting while they are studying in university . Starting job hunting from 3rd year is too early for both the students and the universities , I suppose . We take 1 to2 hour lessons about what the company 's vision is , what kind of people work in the company , what kind of people they need . They have to struggle to simultaneously do job hunting and write thesis . He said `` I did n't want to work in Japan next year because of its weird workplace . If you can speak English and have specialties , try to work in America . I 'm fed up with the Japanese working place ( condition ) lol before I work there . It 's brutal but nobody changes this random phenomenon . Why do n't they go home early ? They are being observed by supervisor . In order to be promoted , they can not go home before the supervisor goes home . So if the supervisor is a kind of workaholic , you can go home at 10 o ' clock , even more , you might have to spend time in the workplace . I heard that Japanese productivity per person is lowest among advanced countries . How hard they work is hard to evaluate under the Japanese working system . If the evaluation system goes well in Japan , nobody stays late . Watching Mamma Mia unbelievable , you never know what would happen around you , maybe that 's the reason why our world is so colorful . That reading give me some pleasure and I decided to take the title of this book for my nickname . I will write a journal because I decided to do everyday . today 's menu was chicken , steak and croquettes ! Please check my sentences . Afterward I could play better than before it happened ! Hllo ! Hello ! I thought that I have n't seen any good powder snow good enough for snowboarding this season compared to what I 'm seeing snow in Tokyo . We did our best to make these questions but we are not sure that the sentences are grammatically correct . If you are correct our sentences , I really thank you . ( D ) She stood still on the spot . I heard that the new place is the most exclusive building in this area . We saw The Pirates Of The Caribbean . It 's about pirates looking for a fountain of treasure and they battle other pirates . I 've never seen The Pirates series . Of course , I like studying English , but I think studying the mother language is more important because it becomes the basis for all subject such as mathematics . Yup , I was correcting some texts at midnight when this little creature silently slid ( or glided ) from the yard of my house into my bedroom . Of course not , but I do n't think they should be killed , because their massive existence is due to our massive exploitation of natural resources . My family does n't think my way of thinking is appropriate for a country where not only rats , but also mosquitos and fleas become a great enemy if you do n't control them . So , I finally decided to take my umbrella and I slid its end under the sofa , and then . . . it quickly escaped to his headquarters . . . Meanwhile , I am a bit paranoid , because I just think that it escaped somehow and it 's looking for meeeeeee . . . Tonight I 'm keep writing about my favorite characters . Well , the mysterious stuff , black clothes , mask , cape , every one likes . Also the idea that not to become like his enemies , he does n't have to kill them , but he knows they will kill again . Of course , it is nothing compared to Aristotle or Montesquieu but whatever , Batman 's also fun . Mainly fun , by the way . In the future , I want to be a teacher in junior high or high school , but before that I am planning to go to Australia or New Zealand for my master 's degree . It includes action , mystery , and partners who trust each other . I got up in this early morning because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsibility to memorize them with a more efficiency . ' ' Was my brother reluctant to get up at three in the morning ? ' ' It seems everything is the same as yesterday . 3 Fujikyu highland ( there is the highest roller coaster in Japan ) It requires patience and a lot of time . The more new knowledge one learns , the more confident he will be . Live for myself , live happily every day . And the teacher also said to us , `` Practice your presentation skills . `` By the way , speaking pumpkin , Halloween is coming soon ! ! For this reason , a heavy equipment company asked me to inquire about a special air conditioner for a fork lift . I will entry about some of our habits and what 's normal in life for my Blog , hope all of you can interested in my Blog . Usually , I practice golf at other golf driving ranges . I could n't get up early this morning . The government promises to have an election this November just to pretend to be democratic . It is utterly ridiculous ! I have already left the country , but am wondering how long the Myanmese people should put up with this period of hardship . The Photographs Of Before and After the Earthquake Here , you can see the satellite photos of theTohoku area of Japan , before and after the big earthquake . For example , who will wash the bathroom and restroom ? Others say that some children tend to watch too much , which has a bad influence on them . In Japan , TV programs are highly developed and devised , culture and languages can be shown through the device . Even if people do not visit book stores or shops , and they spend plenty of money on transportation , they can study culture and languages with pictures . Moreover , people learn kanji with famous people such as artists and talents . Thus , the level of interest in programs teaching kanji increases dramatically . But I did n't recognise the number . . . . And 1 guy disappears . Nadeshiko Japan is the reigning champion of the world cup . I saw a lot of people who came to perform Hajj . I enjoyed seeing different shapes and colours from all over the world . Because of it , most of the cherry blossoms have n't come out yet . It can be cooked in many different ways . In the West , people often boil it and eat it with salt and butter . So sometimes my elder sister treated me as like a slave or her follower . This year , I experienced big events in my life , job hunting , a journey to England and graduation from university . I was n't happy at university because it was boring for me . I wanted to go anywhere abroad to study English and I wanted to know a different culture . that is why I went to England with my friends this year for a short period . I wanna speak with foreign people someday . He was bored and he was always looking for food . I thought he was poorly taken care of . Although he looks like a stray dog , he is the coolest dog for me . I was surprised because I often parked there instead of parking in the parking lot by now . It is weird because I do n't see the red line marked along the street , so I do n't know why it is illegal to park there . I was moved by that scenery because many of these flags seemed to be a part of peoples ' soul . So , my sentences are likely to have become unnatural and bookish in style . Rather , it 's better to say that I 'll find enough strength to postpone other matters for studing English , especially improving my writing skills . And the same day , I arrived at Heathrow , England . Originally I 'm not good in English , and additionally Japanese learn American English in school . But she recommend a more special one for me . I guessed special means better but more expensive . But I could n't reject it , because it has already been done . And I have decided that I have to check the price before the order ! ! ! The writer is a Taiwanese woman who married a Pakistani guy . She shares her experiences of Pakistan in the book . `` I think that this book is interesting , because I have a Pakistani friend , but I am a bit curious and do n't know what the culture of Pakistan is like . Oh ! My daughter has woken up , which means another blatting ( ? ) day has begun ! So I planned a trip another prefecture . In Japan Silver stands for our elders so this long vacation is called Silver week . I love apples and bananas . I was excited at the curling game , actually , it was my first time watching it . But I do n't have anything like that . * working sample can be seen here on the original blog * to one 's best advantage Today , I turned in an analysis report about myself to my teacher in the morning . Lastly , I ate a delicious cake and that was end of my birthday ~ ~ I 've been studying English for a long time and used to read in English but I 'm still a bad English speaker and / or writer . . . Hair color and cut My front hair was cut about 3 to 4 cm . I 'm looking forward to reading it in English . I made a date with my friend , but she is not the same person I had the chicken conversation with . its giving us a hard time and makes me feel so lonely because everybody is so busy these days and I have n't found anyone else who is gon na live with me after they leave . I want to feel relieved and comfortable at my home without any worry , and have great japanese food and just get a nice and hot bath . its gon na be so much fun definitely ! Actually he always helps me a lot and is sincere to me , The pavement was extremely slippery , so I could n't walk [ [ very ] ] fast without risking an accident . If they had enough money to live , would they still work ? He carried a notebook with him , believing that he could analyze the winning number . This mystery might not be able to be solved until dying . And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courage to learn more about cooking . To begin with , I change the ingredients of ozoni , chicken or beef . By the way , I have a `` MEDIA SKIN `` produced by au . She has a great voice and wonderful pronunciation even though she caught a cold . Because it has gradually become colder these days and I need it to keep me warm . When riding on a motorcycle , I feel colder than when I 'm walking . I study English . I do n't like one of the vice - presidents of my current company because he usually does n't talk to me except when he needs some tea when his guests arrive . He always says that he needs to get a high score on the TOEFL because he 's going to a foreign university . It leaves me relaxed and comfortable , Though I studied English a lot , the score was the worst ever . That 's because , recently , I found a nearer subway station than the one I usually go to . This year I 'll try writing every _ day to improve my English . I know that I make a lot of mistakes but with the help of my friends I can / will become able to write better than last year . Because , I am a computer programmer . I 'm optimistic ha ha ha . I went to the disco where my senior resident living in my dormitory was DJing . I tried it again for the second time but I could n't do it like the first time . I tried it again till I decided to go to bed . Next , I went to the drug store tobuyinsectcide . that I do n't know the types ofinsects , so I bought insecticide that is effective on all types of insects . He loves theatre and all music , from classical to rock . . . . [ BG ] A Thai client wants to sent a sample to my colleague , and ask him to fill out a form which needs to be submitted to the Customs ( Office ) of Thailand . My heart is full of sunshine , I 'm eating dinner in chinese restaurant near my office . I just stayed for 3 months , but I think I learned many things . . . If I have a chance , I want to visit the Philippines again . my friends , teachers , and Korean friends . . . . . When we are learning foreign languages , we are liable to think we should n't use our mother tongues often . I thought I had a talent for drawing . What collapses our lives is definitely our negative thoughts . I have to attend some class that has practical training at the industrial firm . I applied near my home . Nowadays , lots of big companies like LG , Samsung and so forth want more variety and special experiences . Sometimes my dream changes . They are able to remember words faster than adults . This lecture gives listeners how amazing the faculty of their language and raises a question how children learn languages so well . My class and club students enjoyed it very much . Japanese call it `` syouyu `` . Because I do n't know about logical constitutions in English . The match is between the Rockets and the Bulls . Usually we have class on weekdays and no free time for surfing the Internet . Because of their negligence , 5 patients got HIV infected unexpectedly by taking an HIV infected donor 's kidneys , lungs , heart and liver . Now not only do the 5 patients have great pain over this error , but also those doctors and nurses who did the transplants surgery were not aware of the fact in advance . Diary : Adapting a recipe There is a plum tree in my yard . When I was a child , it looked small and weak . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo that has opened a new terminal for international flights . Today , Haneda starts its flight service to major cities around the world . I heard from my friend that her friend was lost in the earthquake and I felt sorry about that . One time in Thailand we had a tsunami that struck people around the beach who were swimming , many people were killed by that . I can study about vocabulary by a reading reference book . I wish I could have an air conditioner in my room . . . Actually it should be gradually getting cooler after mid - August , We 've got to be very careful and stay hydrated . It 's not related to today 's topic , but I need to mention that a bad thing happened this morning . . . I have to work hard on my experiments and application for the graduate school these next few days . In nowdays we have so many informations , what we hear in the radio , see in the TV and read in the Internet . If you are interested in it , maybe we could follow it together . Take this diary for example , I have written it for about three months because I 'd like to improve my English skills . In summer , watermelon is my favorite fruit . In my opinion , it is rare for such a big event to be held in China , so I should take the chance to visit the expo . Since I love travelling so much I faced many problems in order to have a good time . When I look at the pictures that I took during the trip , I remember all the happy memories . Some people are singing a bit out of tune . * euphemism * But I must admit that it 's far more amusing to hear someone sing out of tune then someone who sings beautifully . Ahem . . . They believe in their voices , although it 's so obvious that they ca n't sing ! And `` Eastern Plays `` is a Bulgarian film . This decision might change my life . I played baseball from my childhood . My appetite often disappears when there is a lot of load to take care of . Every time I raised my head , I would feel like I was sinking . Third , I watched a video about a cute kid who likes to recite poetry . On the Wa - tokei , the day and night are each divided into six parts . Although Taiwan is not a Christian country , we like to celebrate this meaningful day as well . And I ate a beef steak and a chicken steak : D I have n't eaten beef for a long time ! I guess that the air is leaking from the torn cushion every time you sit down . It seems that the suspect did not miss shoot . At that time , I lived with my host family . They have three small kids . They must have felt more scary than me . The thing I like about my university is that the whole education system is based on the one in the US , and that we have some professors from different countries . It 's all about getting a good start . Never say never is a good song and it inspires me to hang on . Every classroom has a very large TV set . My university is in Xian but my hometown is n't . He told me lots of things to say in order to have a successful blind date . However , very luckily , I could escape from this snow . Consequently , it was not easy to concentrate on work . That will be a big lose if you have never been to Tainan . It 's really difficult for me in this process . I 'm studying English at university , and I want to study Korean language next year . In addition , starting the day 's work early in the morning is a healthy lifestyle . Sometimes I wonder whether or not I have made the right decision to go there . It is very comfortable . My teacher started writing on whiteboard to explain something . Or is it accidental ? So I will study Reading and Writing hard work is hard work . . . ( ? ? ? ) His father died of old age , and so three co - workers and I went to Busan yesterday . I 'm working at a company related to the financial industry . As soon as possible , I want to speak English fluently and write sentences in proper English . I was waiting in the parking lot for cars to leave so I could park my car . When you 've finished something , another thing comes soon the next minute . American football is very hard , but very interesting and exciting in terms of high sophiscated tactics . What is most exciting in the American football game is hard TACKLE ! ! it is one of big skarte boarding races in the world . That 's so amazing ! I was so excited ! I ca n't believe that such players exist ! Fortunately , my wife and all my family were alright . I have been preoccupied with the news of earthquake and radiation released from the Fukushima nuclear plant for the past week . To be honest , I 'm a bit worried about the situation surrounding Japan . We practice using Japanese chopsticks properly . It 's really hard to explain in English , and it 's very difficult for students to use them that way , because they are not familiar with it . One student asked me why I could use it so properly , and I told him because I am Japanese . Can you use chopsticks properly ? Well this moment I ( space ) am receiving English classes I would like to improve my English , because this way I will possibly pass the exam . I 'm 29 years old man who also love basketball , soccer , drinking wine and Hugh Grant 's humor sense . I realised that Usagi - chan and me have a lot in common , so I understand my friend 's comparison between me and her , and why they gave me the name : Usagi - chan is very clumsy : I am extremely clumsy , too . I was interrupted and could n't keep myself studying . He was mad at my coming keeping him from watching the climax ; I also expressed my rage at the noise about the TV stopping me from my studying and I hoped that he could turn off the TV . I told her that I will accompany her to see a doctor tomorrow . We will go to the hospital at a half past seven tomorrow morning . My house was damaged and flooded from the earthquake and tsunami . I attended the conference about the next officer 's exam . After all , I hope to be a officer . Though we also use Chinese characters , it is very difficult to understand . The pronunciation is especially hard to get it . Clean Up It is warmer here than Tokyo . I believe this website is very useful , especially for english and mandarin chinese learners . Thanks for your reply of a few lines . So I ca n't write in this diary these days and I 'm a little bit disappointed about this . When he kicked a wall of a building , a man noticed and confronted him about his act . I want to practice English . Basically , they are more than 5 minutes long . But you will not be bored because they are stunning and fascinating with vivid words and melodies . I was a little tired , but I still enjoyed fishing . Hiei , where I dated with my first girlfriend while in university . That mountain , even now , makes me a little sentimental . I started running a month ago . Running refreshes me . I am going to university . Today my classes are `` Social Policy of EU , `` `` German `` and `` Sociology . `` But she is too capricious and hot tempered for me . Last night , after the Celebration of Chinese New Year , I text him , `` Happy new year , and I love you ! `` No rejection , no contentment . I took my daughter to the place where this party was held . My wife also had a year - end party with her colleagues . A typhoon is coming . By the way , one of my front teeth is fake and it became loose recently . After this , a new special lecture will start . We decided to eat roast pork belly . Today , after lunch , I was watching the news on the internet while I was drinking coffee . I was very interested and , I registered to it immediately . It is universally acknowledged that a pile of things have happened in China ! When it was Feb . in 2008 in most areas of China it snowed heavily . It experienced a lot . So many things were destroyed . Buidings , plants etc . It shocked China . The 29th olympics was held successfully in the capital of China . What made the Chinese sad is the absence of Liuxiang who was gave the most expect . ( ? ) This month I 'm very busy because I have to do many things . It about the school festival , I 'm a leader of it ; English and Korean studying etc . So , If you want to become my penpal , please send me a The Lang - 8 system is a Japanese site but seventy percent of the users are foreigners . If we recited a sutra once , we would live peacefully in the next world . I had nothing to do today . Therefore , today 's diary is very very short . Tomorrow , I want to write a diary with no Japanese thinking . Sunday wants come . . . My part time job is as a coffee shop assistant . because , person not doing anything / doing nothing I like to make people happy , I am reliable and I have a strong sense of responsibility . In my job , I succeeded to make repeat customers by meeting their needs . Finally , we decided to accept his request , although it was risky and we waited for his answer till the morning of the first day of event as he wanted us to do . I really appriciate the kindness and courtesy from him after the event . But as for intermediate class study free - talking so even if it will be beyond me , I want to try it . I recommended an LG phone as it is cheaper than other ones , but she wanted a SAMSUNG phone . Thanks to her stubborn attitude we spent ' 5 hours ' looking for an internet shop that sold the cheapest one . If the government had more support for safe energy , I think we would be able to meet more energy needs . I 'm really looking forward to that day : D I knew this site because of AERA English and I 'm interested in this site . My husband has entered for the full marathon but he has n't run such a long distance in his life ! I do n't want to participate in any marathon definitely . I thought that possibly his English is better than mine , but why did n't he directly call the American department rather than the Japanese department ? If he is in America , he should call the American department in English ; so , probably his English is not very good . Having a conversation with a native speaker on the phone can be extremely difficult . They were so old that the corners of them were limp and it was difficult to fold them into a rectangular shape . The sewing machine is my mother 's and its old and yellowish . I recommend it . He sometimes made me read sentences or words and teased me in front of other students . There instructors always cheer me up when I ca n't say what I want to say . My mother - tongue is Spanish so If you are interested in learning my language please be confident about contacting me : ) and If you speak English , we can share our knowledge : ) For example , `` I would write diary everyday . `` I would never drink alcohol again . `` Today I would study more than 12 hours everyday . `` If you do it , nobody controls you . `` According to him , a very kind Japanese guy showed him how to use a public bath . It was very very delightful , because it was for the first time for me to have been quoted and reblogged . When I put on a skirt , it would n't fit . . . The Japanese labor market for teleworkers and SOHO ( small office home office ) is still small . I often see some ducks , so I took some pictures of them . Yesterday I posted an article about a museum , and nobody in this website could correct it . The title of that comes from Tofel , but I really do n't think that 's a hard thing to do ! My friend and I went to Dazaifu Tenmangu shrine and Rakusuien . I bought Umegae - mochi ( A - branch - of - plum mochi ) on the street in Dazaifu Tenmangu shrine . Adults will pay 3000 yen ( junior and high school students : 2300 yen , elementary - aged children : 1400 yen ) to go up to an observation deck 450 meters above the ground . Hahaha chihuahuas are too funny . Generally , people think that it is wrong to look at the past , but it amuses me . My weekend plans . My weekend plans are to do my part - time job . The whole time , happiness was flowing across my cousin 's face . But for now , I simply wish that my cousin will live a happy life in the future and have a lovely baby some time . Although I read the book so slowly and do n't understand it all , someday I hope I can read fluently . I believe that . How about Britain ? ? Please check my English ! ! There were many believers and tourists visiting the famous temple . However , in high schools , we ca n't choose our classes , same as middle , and elementary schools . So , the Australian government granted him citizenship If students go to class and learn , according to school requirements , should n't those students be allowed to express themselves in clothing ? If school administrators would just grant us some freedom in dress , we 'd feel better in the classroom and be better citizens in the future . As per our Chinese tradition , you can tell other people you are pregnant until the baby is 3 months . Last Saturday , I got her phone call in early morning , I was wondering why she called me at 7 : 00 am . I really want to be a good English speaker and writer . Some applications of I pod are very useful for me to learn more English vocabulary and sentences . Do you agree with it ? Oh , I forgot to mention that our team had 5 members and I was the 2nd ( second ) one to do the presentation . We were required to do a team task ( `` do a work `` is incorrect ) to fix two problems - - - who has an apple tree in his yard ? Everyone of us were given 6 sheets which had different information and were told that we could communicate with others using words , but could n't show others our own sheets or make notes . some example sentences are welcome . I was freaked out and started checking the list of the recipients . I 'll go out since It 's been a few days since I 've gone out , because of the hard rain and strong wind of the typhoon . So ! I just returned made from the business trip to Hiroshima . They worked for my parent 's small resort facility , but the building was destroyed by the Tsunami and they lost their jobs . So they came to Tokyo and began to look for a part time job . It 's my responsibility to help them look for a job and feed them until they get their jobs . My English listening and speaking is very poor ; this usually spoils my job . There are so many bad things happening everyday . Things have happened , and the effect will not change whether you stress or relax . I mean it 's kind of a trauma . Since we are talking about character , I do n't believe a single judgement can be made . It depends on the individual whether it is his family or his social acquitances who carry more weight on his decisions and behaviour . After they go through the first years of their adult life , youngsters usually turn back to their families looking for support and advice . It examined Royma Sakamoto , who was an historical person during the Edo period . It 's different from Starbucks . Since then , intricate networks of power lines and utility poles have become prevalent in a short time together with human residences . The variety of neon lights from dwellings illuminated a part of scenery through the window . In Okinawa , at night , the sky is studded with twinkling stars that described innumerable constellations . Now the beauty of the neon light from human civilization are replacing the beauty of the light of the stars . I ordered `` Today 's Lunch Special `` , which consists of a chicken gratin with salad and toasts and , one drink after a meal . Because the first time I watched the movie was at the height of ( the ) summer . But I ca n't quit this habit . Actually , I am a little worried about my financial situation even though I like hot pot very much . We went to an all you can eat restaurant , and the price was NT550 per person , which is an equal to 15 us dollars . Because the restaurant is too popular , we had to wait for like a half hour . The Taiwanese guy asked my students 's phone number , and she gave it to him . They are friendly to foreigners especially to white people and will seize every chance to make friends with them . When we said goodbye , my friends told me , `` This is the last time we can see you until you come back to Japan from the UK `` . I was moved so much that I was about to cry . I realized I have wonderful friends and I should enjoy anything that will happen . We hope that you 'll enjoy these new features , and that they will help make Lang - 8 an even more vibrant language learning community with a uniquely social appeal ! I 'm studying English , because I love foreign countries . Because I gained weight ; about 2 kg , which is totally intolerable ! My appetite is kind of . . . I was just wondering if this nightmare is because of my bad eating habits or the outcome of me working out at the gym . lol But what really makes me nervous is that I rapidly gained weight . I know it sounds silly for boys to care about how much weigh is but that 's what some of Japanese boys have on their mind sometime ! Yet the professor always says that it is `` ok `` . In English It was not possible to go to Nanodee sea . I 'm going to Ueno Park which has a lot of cherry blossoms and is famous for them and have a party with my friends this weekend . I 'm a planner working at a web service company which supports small retail businesses emerging in e - commerce . and I arrived in the city after 30 minutes . There was a lot of delicious food . When I am enjoying listening to music on my iPod ( actually , it was a podcast ) , she told me that she felt like getting an iPod for herself too this morning . After I had pancakes which host family wife made , I hung around the neighborhood . I asked AU about the charges but their answer was `` I do n't know , ask the local cellphone company `` . So I speculated that Rogers would handle this problem , but they had no idea about the charges . But I could check some ingredients like thin pork , onion , potato and carrot , for Nikujyaga which is a japanese cooking recipe . I promised to treat my host family to it someday . But nothing happened actually . So I did n't cut corners . so I made and intended to print it out soon , When I cultured plants to test tubes , I have to heat the tip of Erlenmeyer flask with sterilized water . And I sprayed alcohol to my gloves to sterilize them . I want to try doing experiments carefully from today . I wish this happiness could last longer . The cakes were tomato cream cake , banana cream cake , and custard cream cake . Custard cream cake is coordinative with americano . A survey says that one ca n't just love only one person in life . It is said in that survey , the average amount of times people `` fall in love `` in the UK is 13 . This survey really gives these facts ! I think it is because one may be attracted by different points or attractiveness of different people . feisty . . . I 'm glad if you can tell me the meaning of `` feisty `` . Maybe she was scared of my voice and was worried about me . However , I 've just gotten well . In addition , walking around and hiking around parks and collecting flowers and some plants are also good example . There were some Chinese some Thai and some Japanese . Because I have stayed in Hong Kong and Australia for a few months as a student , I remembered feeling so free then , as compared to now . It is a pity that I can not get back there , but I hope and expect that I might be able to work at an overseas branch office someday . I tagged `` my cat `` on my facebook cause I like this title . Because this title makes me laugh . Nowadays the cold weather defies description . But sometimes I can not follow ( the ) cultural differences between Holland and Japan , especially being naked in public such as a street or a park . Besides , I do n't like sashimi . However , those factors also make rafting very exciting . But when I meet a foreign friend , I do n't know how to give an information in English . actually , I had confidence about my English skills , and it 's true . But only with grammar . . . I 've been thinking that Korean and Japanese are very varied and highly developed in respectful words , on the other hand , English does n't have any respectful words . article . Then , I dreamed I went back to Japan but I felt bored so I came back to Malta and I started a job at a souvenir shop . . . Many people think that Japanese cats generally eat fish . I must pass the exam and continue to state university . For lunch , I cooked an omelet containing fried rice . He told me everything is ok , but there are no trains running just after the earthquake occurred , so she was on her way back home . I hope everyone in Japan is safe . I write a diary in english and I have studied english for a long time . I was sympathetic to the fact that creating a sustainable society means help from not only people in the government but everyone . Although I think the trick to make it is difficult , it is very very important . To be honest , I think what I said had some grammar and pronunciation mistakes . Firstly , they are both the most important day in westen and easten countries . Then I need to change all the address registations on cards , insurances and registrations associated with the internet . So , My younger brother and I will invite our close relatives to a seafood restaurant . If not , he would set fire to the home of the president of her agency . They sent them to the hospital . My mother and older sister scattered roasted soy beans all over the place . It also took more time than I had expected to fill out the application forms . I gradually am coming to love this school . What should you do to make your dreams come true ? I do such as eating , sleeping and seeing people . Today , I ate 3 sushi and miso soup at Melbourne Central Station near my English school . One of my hobbies is flying RC planes . I made a new RC plane . The first flight was a nice flight but an accident occured on the third flight . I corrected and evaluated the compositions of 20 examenees who took short - tempered Japanese training . I want to ask of a . favour . ( Sorry , I do n't know how to explain it in English . ) I transited at Taipei . Fortunately , it was low water season so it was n't much harder than I expected . I love this season in Japan so much . Teenagers spend all their spare time surfing the Internet instead of studying . The point is : if you have the main concepts of a question , you can make any theory based on them . I bought a pretty pair of & nbsp ; hot pink shoes so I can wear the new shoes tomorrow . I do n't want to be pessimistic , but my current workplace was a bit weird . . . Fortunately , with the progress in modern technology . convenient . . . etc . Housekeepers can store some in the refrigerator and quickly prepare the meals for the whole family . frozen food technology and the new equipment allows people to accessibility and the convenience helps these people a lot . Critics may argue that the frozen food could have less nutrition or they can not offer the balanced nutrition that people need daily to keep In my opinion , it might be an old angle . in the aspects of fastness , accessibility , convenience , safety . . . etc . Electricity and water have been stopped in Ibaraki where I live 100 km north of Tokyo . One of my favorite singers is Shouta Shimizu . Now , a typhoon has hit the island . They said that Americans support the underdog so they supported Nadeshiko Japan who were competing against the champion , the United States . In Japan , there is no such word as `` underdog `` but there is the same spirit . Eventually they became rich . Today I have a / the day off and I will try to spend it usefully . I will try not to be lazy and I will try to do what I 'm planning for the day . It 's raining today . so I 'm feeling gloomy . It has been raining since this morning . When I was looking for a hotel . Blue seas , blue sky , seafood , a beach , sunshine , flowers , all of these are familiar to me , and days pass on very quickly . The Tonkatu made in this shop was very delicious . This makes them lazy in learning a foreign language later . I will ask many questions and try to be friends with the teachers : ) I envy that Europeans allow ( permit ( ? ) ) them to play music there . ( Permit is okay ) She was helpless , crying out for help , and then , from the ashes , Harry Potter came to help her , using his spells and a magic broom to defend the scared lady ! But that which not even Harry Potter had expected , happened : Hermione came all the way from Hogwarts with her new husband , Ronnie , and killed Harry Potter in the worst way possible , with a broken heart . I used to go out with my wife to visit galleries and Because even if I do n't know them personally , I felt their love and passion in their music . When I speak and write English , I always feel the lack of my grammar skills . We changed to another point . so I went to `` home plus `` which is a kind of super market . in the car returning home , I was happy : ) I bought some apples , a headset , sparkling water and some pringles . We had some bread for breakfast . I decided to not use translator to look up how sentences should look . She looked after us , told us many interesting things about life in Sweden , and introduced us to Swedish cuisine . I love rice more than noodles . I would go on dancing but I do n't have enough money . Every culture has their own traditional way of conducting their wedding ceremony and of course , we Koreans also have our own style . Accessories like a ring , necklace and bracelet , hanbok , Korean traditional clothes , and more . In the winter , you can go skiing . Please say many comments ! ! ! ! ! ! ! ! ! I want to speak English fluently someday , and I want foreign country ` s friends . kanojo no oba ha ( kanojo ni ) okurimono wo . shimashita . Kanojo ha kare no heya wo souji shimashita Ototoi ajia kappu de nihon no sakka chiimu ha kankoku chiimu ni kachimashita kinou no asa okaasan to issho ni isha ni ( byouin ni ) ikimashita . soshite , sukoshi nihongo wo renshuu shimashita . Onegai shimasu We will make some sandwiches and salad . I visited my friends house , and there were many people there . I cooked some dinner for guys . Before cooking I left my watch on the table . However , I 'm not sure my watch was on the table . We had dinner and enjoyed each others company and passed the time . Then , I wondered `` where is my watch ? `` I was looking for my watch but I could n't find it . While I only bought it for 10 dollars . I am really fond of this site ! The Chinese whiskey called PAISHU that my Chinese friend brought for me as a souvenir , is too heavy for me . But my stomach was satisfied . However there is one problem . I already know about the problem , so I will try to be diligent . Do you think that I can sleep enough tonight ? In such occasions , it helps to just say `` Dobin , Chabin , Hage - Chabin `` on the street in a loud voice . It 's Golden Week in Japan . My research was in intellectual law , especially patent law Of course my reserch was very difficult , but I loved it . Therefore I decided to go to the Fukiware falls nearby . For the first time , I know that Lang - 8 is a good means of studying ENGLISH . All the people in the village were very grateful and created this dance . I feel so bad after getting angry . Gundam seed destiny Is he a clone of the armer polot army pilot ( ? ) whose father is a heroic astronaut ? I had no plans to begin with so I went to school to check if the exchange list and the exam schedule was available yet . Since there was a lot to talk about , I went with her to pick up her new passport and she accompanied me to the supermarket . My friend which I was shopping with also does the same . I was very amused because I really want to develop my English writing skills . Awful . . . I belonged to rhythmic gymnastics club . Reading articles and books about astronomy , science and world business is also my favorite hobby . We do n't like them because they 're good at all sports ( football , tennis , cycling . . . ) . They eat horrible things such as jelly or pudding , which is one of the most horrific nightmares for a Frenchman / French person . - Africans ( black people in general ) : they are lazy , only good at athletics or football ( and they 're not technically - minded , they only run ) . French in general : it 's agreed that we strike , criticize , and complain too much . And my car will be totaled after test - driving it ! I only hope that when she wants help , I will help her . When I knew that some famous killers are affected by this book , it really interests me . Secondly , I did n't understand well about why the book have such power at that age . Last but not least , I like Holden 's sister , Phoeby , very much ! Today , I have become a new member of lang - 8 , this is so exciting . It 's very intersting . So many people from other countries , they all chat about language and exchange ideas . So we all can improve ourselves . I used to be able to play the piano . When I arrived at the studio , the cute staff took me to the reception and asked me to fill out a questionnaire . I want to be a researcher . Hi monkeys , you are welcome here , but please do not steal my food . She is kind . These seeds weed out other plants , so the diversity of nature will be changed . If the diversity of plants is changed , the diversity of animals will also be changed . The ecosystem will be destroyed by GM seeds . If we change our lifestyle and are more interested in protecting our nature , its content was meant to improve communication skills . 1 ) an eye opener for humans to see something amazing / a way of entertainment . We talk about how disgusting the teacher and the school are . We all have no freshness for the new semester like before , everything is so familiar . I was a system engineer in Japan , but I want to find another interesting job here . I was so sleepy , I could n't concentrate on class . Being hit on Me : No , Japanese girls use a lot of makeup ! Many girls make chocolate on their own to give it to their boyfriends . But Korean girls are privileged because we have White day ! ( So I personally think it is really girls who have the right and power to make a choice . ) Sometimes boys give some accessories or other gifts with candy to their girlfriend ( s ) . But if you are in a relationship and say to your friends that you are not going out with your boy friend on Christmas holiday they would think it is a little weird . Ah , this is a storybook for children . ( For me , this is better for languages like Korean , because study material is limited in my country ) . They tried to talk to Japanese women , and never to Japanese men . But conversation did n't last for very long . yesterday I went to the supermarket . I was surprised , so , I bought it . Infact , I am a vegitarian . I always eat carrots , broccoli and so on . how about everyone ? I 'm looking for new friends and practice English together . I 'm Korean , 24 , female . . People who ca n't see themselves do n't need help by a dog . Rowling `` who is of course the author of the Harry Potter fantasy series . I registered on this site because I want to learn English . Anyway , I 'm studying real English , recently . . . . Debut ! He acts that he really cares a buppy in the computer . I wonder if I need to put them in the refrigerator or leave them on the counter . It 's going to come and take my Tarot is a way of fortune - telling . I 'm a fortune - teller . Fortune - tellers has a part of counselor . So fortune - tellers need the ability to listen to other people 's tellings . Many people who need a fortune - teller have big problems . If you want to be loved on sightby everyone , becoming a good listener is very important . I have a violin competition tomorrow . I bought iPod touch , but I do n't know how to use it . Am I lucky ? An important feature of phrasal verbs is that they are typically idiomatic . Recently , I had a wonderful time . I have discovered this website today , and , as I want to learn English for my job , I have decided that I will write one message every day in English . But when I left home , the sun was shining brightly . I 'm going to send New Year 's cards to my old friends as usual . I will get on a bridge to see the first sunrise . I have interest in language and cultures so I begin to study English , although I ca n't speak English , French , Japanese I will never give up So this is very difficult , but I want to speak in English very well . So I want to find an exchange language friend . Let 's be friends ? I have funny story about getting this nickname . My name in Russian language can sound like Shura , which is consonant with this tasty food . The dish is made from grapes juice and nuts , and looks like red sausage . I have a blog . You can insert the Google advertisement ' Adsense ' . That was a wonderful event . I have to cook my father 's dinner at once , because my mother is out on a business trip today . Nobody is walking now . I have been reading about the present perfect . Have I learned how to form questions properly ? But I do n't know how I should study English . This is my first blog in this SNS . In the end , the song we played live was LAST CHRISTMAS . I was surprised to know the way different kinds of diets . English grammar looks simpler than Polish , but it has many more prefixes and sufix ( suffixes ) - before and after any word . The question was ' If you only had one year to live , what would you want to do ? ' . However , if my life only lasts one year , I 'd want to go to around the world by ship . So I am studying English as a global language . Especially , it has so many mountains . I often walk near the mountains , and I am always moved to see beautiful nature , I found I am very tired although I have done nothing . We have to live separately for the next 2 years . Yesterday , my wife and I enjoyed talking with Skype . After I checked into / After checking into the hotel , I went to Union Square to meet the private cable car that would take us to the dinner restaurant . It has been a while since I 've written here . So please keep writing here and I will continue to support you . I 'm depressed . Yesterday I lost my Polish - English phrasebook when I was buying coffee . It is small , red , and it looks like a dictionary . My wife is frugal , my children are well - behaved and cheerful . I want to try to understand foreign people and get various living in a strange country , and I have no confidence in my English . I like The Beatles , The Rolling Stones , and Simon & Garfunkle . to stand in the society . and stayed loyal to Frodo although the latter misunderstood him . The reason I went there was to buy some vegetables and other things . New onions and potatoes are sold this season . So , I bought them in the vegetable shop . I also bought eggs , strawberries , milk and so on . I was surprised at that there were so many people there on a Saturday moring . I thought I would n't be able to go to my music club today but I could . I went to the college 's club house where I usually enjoy playing and listening to music . But I am not surprised . Why is it that I live in Australia but ca n't make one Australian friend ? On the way back home after finishinga whole day of study , I thought about my parents who are working damn hard tosupport me studying in Australia ; I could n't stopmyself crying . They are 50 years old already but are still working 10 hours a day for their disappointing daughter who is a stupid burden . . . . and I 'd like you to help me with Chinese . Gender : male Major : electronical engineering and computer science . This are special plants , because they subsist from / they survive off of vermin . I have to achieve this goal before Chinese New Year , because I want to wear beautiful clothes , so I just have three months . Why are neighboring countries like China and Korea developing , and why is the Japanese GDP falling ? ? ? Korean drama used to be famous in Japan a few years ago . The first three days , we 'll stay in Cairns . Sometimes a student asks me some questions about the English grammar textbook . It 's raining today . That 's because I like sunbathing , swimming in the open air , and eating the freshest fruit . I 'm going to get wonderful bronze tan and a lot of unforgettable memories and good photos . My name is shige . Nice to meet you . Because I want to study abroad and go to law school in America . But my English skill is poor . I decided to study English through this web site . I used to commute by bike . You are ( all ) invited to my Japanese style homemade cyber dinner party today . Vermicelli soup - Seaweed and Okra Oinari san - Rice ball wrapped in a thin slice of sweet flavored deep fried tofu . Savory consomme Okra cold jelly How can I control this emotion ? ? The nuclear power Japan has been having trouble with the nuclear power . We usually gather to admire the bright mid - autumn harvest moon and eat different flavours of mooncake . If you have time to help me increase my vocabulary , I would really appreciate it . I do n't think we need that museum . They are crazy and makes me frustrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped Ross & Rachel , because I always thought they belong together . It 's because speaking needs quick response and what 's worse , the order of words in a Japanese sentences is quite different from English ones . After I start talking , I realize that I should have started my sentences in a different order . That 's why I decided to start writing English sentences . Mie , where I live , has a fantastic city called Matsusaka , which is famous for delicious beef : D My friend and I stopped at a convenience store to eat icecream . I want to have friends for all over the world ! My sister needed me to help her tanslate something from Thai into english . But I am not good in English . So I tried to use a translation program to help me , but it got the the grammar wrong . So , I 'm going to Italy I have to admit that when someone says that he or she loves [ enjoys ] my writing it makes me happy , but that is [ that 's ] not my reason for writing . I had to write in English , but I 'm afraid it is not [ it 's not ] good enough to write something good / interesting . I 'm a university student . I do n't know why or how they treat their bus , because everytime I took the bus , during the drive I worried that the bus might fall apart suddenly . ( the bus company is located at a small famous town ) BTY , the buses were extremely old , old enough to be junked , but I guess new buses are too expensive to afford . Today I will introduce my favorite building ~ The Great Wall . The labor force , composed of prisoners , soldiers , and workers , built the wall . I entered the university and chose english literature as my major , and I read a lot of english books every class . sexual and humorous ! ! However , I take a senior course which is associated with my minor and that course 's professor is the chair of that department . The professor said to me that he knows I 'm an international exchange student , but I have to speak more about the class and the next class he 'll give me questions about a main subject . I think it will help me to learn about English , but I 'm starting to feel little nervous about that . Right now , it is very fragrant in my room . I was in right field when we were in defence . If you need further information , please let me know . I heard that American or other countries ' university students are more serious than Japanese students . He is eleven . He plays games everyday ! Recently I 've had trouble sleeping . How comes it 's difficult to sleep ? I want to buy skating shoes . I 'm from Osaka in Japan , but I live in Santa Barbara in California now . I have stayed here for 2 months . I really want to watch splendid dances from around the world from now on . When I write a diary in English , I have my English corrected . I had nothing to do today . He always thanked her heartily . What I Think from Reading the Newspaper Many companies have disclosed their financial results between April and June . Of course , the earthquake also hit the Japannese companies to a large extent . I started watching an episode from season 1 for fun . Recently , I have been watching the 13th episode , of season 3 of that drama . My husband told me `` You look like you are addicted to that drama . . . `` However , I think it is entertaining and I think the writer of that drama is a genius . Others said if Ilisten to English ( English what ? ) one hour everyday , I will be surprised bymy English after listening a month . I prefer to as a foolish Old Man , and do something everday , and finally I will be successful . They were 20000 yen ( 200 dollars ? ) She is a conservative and pretty girl , so I gave her a short message to say : ' I love you ' . I thought she might be scared , and she said she had a boyfriend already , and they were very happy , of course , there was a rule that teacher ca n't have an affair with a student . . . . . . I would appreciate it if you could edit my writing or even leave me a comment ! I like snowboarding , but it 's too cold to go outside X - < I 'm planning to go snowboarding next Sunday , I hope that the weather will be good that day . I know but . . . . . I participated in a free trial lesson of English conversation today . I think I will not pass the exam . I have three chances to take the exam in this year . It was just a nap , but I slept nearly 6 hours . . . I would like to tell you some details about my country , because many people have misconceptions about Poland . I want a job as a machine designer . Somes scenes were pretty gross , but I 'll spare you the details . I have been checking all of the systems and functions in iphone So one of my new year 's resolutions is to publish at least one diary entry here per week , even it will only contain a few of words . I 'm also ironic , sarcastic , audacious and really aarogant ( You have no idea . . . ) . I 'm going to go to Tokyo tomorrow , it is a holiday . I had no holiday during this summer vacation , so I want to enjoy and relax . The woman said to me : `` This llama belongs to me , and I want you pay me for the picture ! `` I decided to give her some money to help . Everyone everywhere wants to get money from tourists ! ! I thought he would just play around and not wander far away but , suddenly my dog disappeared and I tried to find him . But I do n't want to because of the recent situation . the illegalisation of marijuana was done without any studies . Yesterday I was caught in a shower when I went out with my girlfriend in Ginza . It encouraged me to communicate with others . There were also a lot of people who spoke English well . They could speak with others easily and express their thoughts and ideas clearly . You can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get piss off and say that I 'm having a bad attitude . We arrived at the beauty shop at 2 o ' ( 2 o ' clock ) . I hate repairs to the train in the morning . I feel that the Japanese are very rough and that Western people are more like gentleman riding horse . At the drop of a hat , I 'll dump something into it . I think he has a good personality . At lunch - time , I had a special lunch . My friend is a chef and cooked Japanese food ! First writing This is my first writing on Lang - 8 . I just found this site out accidentally , and I think it will help a lot to improve my English . The other ingredients are Tofu , cabbage , pork and mushroom . The robot girl can smile . Hello ! This is first time to write a diary in Lang - 8 . Please correct my diary and be my friend ! ! ! This is my second exam ( I have taken ) since I came to UNO . My father , a retired policeman , said that if I want to be a policewoman , I have no need to get a Master degree and a Bachelor is enough . Although `` know all `` is an ironical word , I still pursue to be . I counseled a client for my assignment , not for money . We need to counsel other people and write reports . The word means boys who can not take an active , aggressive or enthusiastic attitude , and do not have an affinity towards girls . Like horses , rabbits , and so on ; not like lions , tigers , and so on . Personally , I do n't like effeminate , delicate men , so I hope `` carnivorous boys `` will increase more . Tomorrow , I will have my favorite class , so I hope my cold goes away soon . I had not ridden a ferris wheel since I graduaded from school . whenever you need me that I wo n't be far away . He told us this joke ; What 's the difference between a pregnant woman and a light bulb ? I have used this tool to train my speaking skills . I 've studied English in order to obtain skills to read and write articles about various science articles . In short , new scientific words continue to be created . The column went is like this . However the balance of your account is resettled everyday . This means if you do n't spend all of your money , the rest of the money is lost . So you should do the maximum with your investment . In fact , I think it is very good to study English with a textbook that is written in English . and I think using a Chinese for Chinese speakers textbook was pretty good . Years have faded away many peoples ' memories , but Hachi 's memories never faded away . I just do n't know how and where I should start . `` Some of students said that they were good at English . `` Also , I have to write some reports . . . Please help me to correct my article . What 's the difference and how can I use it correctly ? An advertisement I always hear the sentence ( nan datte yo ) in the animes . Do the laundry . I 'm going to work starting next Monday . It 's a little bit difficult to sing English lyrics , and memorize it too . so we decided , we went to the Chinese restaurant . We ordered sisami chicken . The overtime is usually 1 or 2 hours . I like to create games So I like to create all kind of games . I want to make friends all over the world . When I try to write a sentence in English I 'm composimg a gloomy sentence every time . I have learned English for many years , but I have not found a good learning method . I always see the spelling sheet before the test . The necklace with two stars is his favorite one . She was so friendly and smart . I 'm gon na write diary entries and essays as much as I can . We can help each other ! The whole world is so exciting , is n't it ? Just after running , I thought I did not want to run , Now , I have a little muscular pain . I would love to learn feminine stuff that relates to American culture from her while I doing language exchange with her . He is a pianist and accordionist in England . Surprisingly , she attended the same university as me but I never met her on the campus before . I have studied english hard since last month , , , it 's our city 's most important festival , because the man who created it was our king . I will keep on writing , studying hard and become a good speaker in English . The Autumn colors I love to see the autumn colors . But I always fail to go at the best time because I ca n't wait and go before they look the most beautiful . Since the temperature in October was so high , , the leaves changed their colors later than the previous years . It is my second time traveling in GuiLin . The last time I went to GuiLin was one year ago . This time I feel GuiLIn will be a little noisier and it will be more modern . The environment has been broken . I worry about whether in the future GuiLin will lose its beautiful scenery . This time I stayed in YangShuo for three days . It makes me feel like YangShuo is so small . There are too many people in YangShuo . I do n't think YangShuo is OK with so many people there at the same time . However , I must get the skill of writing and speaking English for business . I am shocked ( surprised ) to know the reality about people living in a suburban area . We enjoyed going to the grocrery store , preparing the BBQ , and talking about recent things . I ` m a freshman at meisei university . I study english everyday . I think studying english is very interesting . Because my university is in Seoul , I 've been separated from my parents , who live in Chung - ju . The reason I took that exam is that it will help me to manage a business someday . I went to watch movie of Brazil President Lula . I was so excited . when we talk each other , I could n't help but feel embarrassed and stammer It was very hard , but it is very helpful for my work as a cashier : ) I am still in training ; however , I have to run the till by myself . I was delighted ; therefore , I could really enjoy working today ! It has been a long time since we had been working together , maybe 8 years ago or so , but we still get together and go drinking around twice a year . By the way , a Japanese actress whose husband is American said , even if he is in a bad mood , once he eats pizza he changes to a good mood . I 'm glad to have joined this community , because I want to communicate with people living in other countries and to learn about their culture . Even if I had a bunch of opportunities to listen to English , I had n't realized them . They were very beautiful and looked like big flowers . Finally , Tegomass which is a Japanese idol unit appeared on the stage . I was so clumsy , was n't I ? But their power was great ! Even though I have n't watched this match , I am pround of the whole United team . Shirakawa - Go is one of Japan 's World Heritage Sites . This paper presents an approach to support top - k flexible queries using knowledge discovery in large data bases . The new portable game machine Nintendo 3DS was released on February 26 in Japan for the first time in 7 years . I 'm curious about how many people will buy it . Pssive : Fruits are going to be eaten by me right now . . I look like I just had my hair permed . I made a lot of foreign friends and learned a lot . I ordered a new iPod touch from Amazon on September 2nd . My friend told me about this website . When I joined in , I found that it 's very interesting ! I 'll write something to describe my life , and learn English with you . Seating Arrangement I confess that I have worried a little whether I can graduate or not , since I submited a master 's thesis . I am going to introduce something I have learned , because it might help you if you live in Japan . It is the etiquette of seating arrangement . In Japan , higher - ranking people should have seats which are in the inner part of the room . Thus if you invite your customers and clients to your office , or if you entertain your guests at a restaurant , you should give them the seats in the inner part of the room . And you should sit down at a seat near to the door . Conversely , when you are invited as a guest , you will be offered a seat in the inner part of the room . I 'm sure he was very annoyed when Rowling sold millions of books . For example , writing a blog becomes resentative of modern life . Also , I write various kinds of blogs . It seemed he understood how difficult it is to master a foreign language . When he was a little , his parents encouraged him to do everything which could do himself and treated him as a normal person . The minimum temperature in Tokyo was about 0C . I like some American culture . I often practicing dancing with my mirror . However , I can dance freely at nightclubs . Hello everyone ! Her neigbours often helped her . But I dont know what should I do , everytime I look at a long English article , That morning , we got up really early and drove all the way to a distant aquarium . It was good to see the orca , however , I had little time to watch the other fish inside of the aquarium . It took me several years to strengthen my perseverance . I often change my mind easily and fail to get through some difficulties in my life . My friends once said to me , `` You are n't mature amply ( enough ? ) . My writing English is better than my spoken English . and encourage each other . I will stay in Colombo for about half a year . But there was no colour that I wanted . Her clear explanations were good . She even included a picture of an anvil , which looked weird and unique in my eyes , especially because it looked like a horn . Well , I 'm likely to faint with fatigue , because I did n't rest enough . As a matter of fact , I spent about two to three hours talking to my friends on Skype and surfing the internet , so I did n't have enough sleep . It could n't be helped . The least I can say is , I did n't waste my time thinking about the things I could never change . My job is as a private tutor for a student . I have recognized what I really do n't like about cold weather . Every morning waking up is so hard . I am sleepy . . . and outside also is cold . It makes my motivation smaller and smaller . Idiom of the day : ) Whenever I go home at night , I would stay overnight at Nanjing and take the next avaiable bus , in morning . It was so difficult for me while I watched this movie . I never thought that I would have to face that thing at this moment It 's never a problem for me and I always know what I want . What should I do ? Shopping Mall Glee is about high school life and musical drama : ) `` Soybean flour `` is called `` kinako `` in Japanese . Today my choice was Mary . One sentence , or one word , I 'll be happy . I start writing this diary today . Today , I 'm very angry because students at my university break the traffic rules . There is a large road near my school , we must n't cross the road near the school because it is heavy traffic and it 's dangerous . I like travelling ! ! ! ! I wish I can get to know about lots of interesting things here . hopefully twice a week . so I became a member of a gym which is very famous here in Toronto last night . I 've just watched a sad episode of a korean drama series so I feel very sad now . It helps me to learn a lot of information and knowledge about computer and software devices . I know the Linux0 . 01 architecture and how to implement and compile it on my computer . But if I did n't go searching any opportunity to meet such people , I could only see my colleague . Most of their minds are limited . I 've felt so lazy ever since I moved from Seattle down to San Diego . I ca n't even count how many times I get angry at them from the moment they wake up until they go to nursery . I think I have the ability ( or potential , which is better ) to study and enjoy tourism or hospitality . Give me a chance , I can prove my strength . I spent an hour everyday , memorizing new words . I worked hard independently everyday . I usually went to the library to memorize new English words . So he decided to try again . I sometimes have difficulty reading an article or paperback , which is written in English , more than usual although I do n't know why . The manager must speak , read and write English in a high level of proficiency utilizing technical terminology . I 'm not authorized to make a decision from my company but required to make a decision for my client . Today I registered a Lang - 8 account . Nowadays , mobile phones are rapidly becoming common all over the world - even elementary school students have one . I had work until 12 : 00pm last night and right now it 's 8 : 00am , the morning again . I work for a Japanese restaurant as a waitress remove the bacteria on the surface of your body makes you weak . For example , he never eats at fast foods and he recommended And he recommended for me to friend went to interview in at the university . Curry is hot , Naan is a little sweet There was a mirror on the wall in the Cafe house . When I realized that , I could n't stop laughing ! Youtube content is good for listening practice . Afterward , almost all of my colleagues went drinking again . However I do n't know if I will be able to do it this year because of my busy life . Oh my God ; It cost 80 thounsand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price ; just 10 thousand Vietnam Dong . I have been living in Melbourne for 1 year , I feel my English skill is better than before , but I sometimes get disappointed with myself because when I listen to news on the radio or watch TV , Recently , I have been studying for the TOEFL Test to study abroad next year . Because it is so different from Japanese grammar , and there are sentences which contain difficult words for me , for instance , `` anatomically `` , `` Confederate `` , and so on . Nothing is difficult if you put your heart into it . So I believe I can be a good doctor in the future . I 'm sorry I posted a new journal . It 's great cause you can go there just to kill some time and end up staying there overnight . This week is very hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAMIE STREET podcast on my ipod in English . Koreans are used to having an English name for easier communication with foreigners . The closest pronunciation Because there are duties to do everyday . Besides , I am a little inefficient so I cant do those quickly . In my city electricity supply has just recovered . With angel faces and perfect body proportions ( tiny face with long legs ) , they seemed to walk out from the pages of a fashion magazine such as GQ or ELLE . I remember some researchers said looking at beautiful women can make men live longer because they can ease men 's blood pressure and make them happier . I 'm so interested in other countries and cultural exchange interchange with many people . I guess my English is wrong . I really feel that I have to study harder One younger member asked me a question . I also have some appointments to have meals with my friends and colleagues this December . my reasons to study english so I have to acquire English to work well . My plan to study english is to write english compositions and to watch the DVD `` Friends `` , which I heard is an interesting comedy in English , every day . I heard there is a good Gyoza restaurant near my house . Lately , if customers do n't exchange their cell phone , they can not switch to the low - cost - plan . The other day , I went shopping , I splurged on clothes . down the drain . You had better think more before you pick something up . But I ca n't go because of heavy rain . . . I have been studying Chinese for six years . Mid - autumn festival According to the law , every Chinese can get rid of their business ( stop business ) to celebrate and enjoy themselves . So , in spite of ( despite ) the high fee , we are glad to celebrate it . Help me please . By the way , I started exercising with a jump rope today . Today I went to an At & t store and had someone put the screen protector on my cell phone . I went for a round of golf early Friday morning . I 'm a beginner at golf . This place is usually for taking shower and has sauna . If you come to Korea , it will be a good experience to go there . The new one is always better for a visitor . So now you can make sense why people go there to sleep . It is like a dormitory room without bed , just small mattresses One for taking shower and others are for sauna and entertainment Some store have many programs during the day such as yoga lesson , dancing lesson , etc . Koreans have a typical way of taking shower . and he lives as professional composer . Reading a philosophy encyclopedia Tomorrow I 'll write more than this ; well I think so . See you later guys . I ate a chicken curry . I did nothing but drink alcohol . I want to communicate with a lot of people . I studied English tonight . I started reading the book , Winnie - the - Pooh , which I received from my best friend Yang - gaeng . The writer explained why his name is Winnie - the - pooh . Because I am a beginner at English . The writer encouraged Piglet . In spring every year , Japanese hold parties in which they welcome freshmen . A few days ago , a drunk celebrity was arrested on charge of indecent exposure , but many people signed a petition against this . I should say `` arigatou `` to him . It is my first time to use this blog system . Probably most of you have n't ever heard about Miaoli before , since it 's not as civilized as Taipei or Kaohsiung , but it drew people 's attention by holding Taiwan Lantern Festival this year . But it really was a great festival . You can see my pictures . I believe that there are many pictures of the Taiwan Lantern Festival . If I want to use those three drives in the new one then they must be all connected by a ribbon cable to the mainboard of the new one . From the last day of April to the beginning of May , many people have had a long vacation which is called Golden week in Japan . during the mid exam period , I did n't have enough sleep . there were two guys who have big muscles . when I finished it , I could n't laugh about myself ^ ^ I appreciate thier help and advices . I also have a lot of appetite lately . I 'm focusing on studying English now , so I do n't exercise enough every day . Kiyomiya , a very famous director of a Japanese professional rugby team . As well as me , my boss is also looking forward to meeting ' lang - 8 ' staffs because we use and like it a lot ! There are different kinds of ' Mikan ' . She answered it is called `` mandarin orange `` in English . I will have to take this exam tomorrow because the exam needs two days . I ` m the second one , today . I showed a taxi driver the actual address of my hotel but he did n't know the place . I decided to ask the taxi driver to take me to a place close to the address and get out of the taxi near the hotel . I lost my way and walked for one hour with big luggage . ni - men - hao ! ! ( Hi folks ! ) Yesterday , I wrote the sentence which I wanted to have corrected . I 'd like to use this valuable opportunity to improve my English ability through communication with people who use this site . Though I read my text book , I ca n't judge if my pronunciation is right . treatment due to their wealth and celebrity status . permanently though he later said he did so willingly . They say that while ican African children from their extended families , Do you have a favourite ? My brother , his family , my sister , Me and my husband my husband , and I gathered there . If there are any disadvantages , it is that I have to get up early to go to swim . Especially how he used a trick get bear sick . Ichiro has set a record of 200 hits for 10 straight years . When you bite into on , it will dawn on you that the yellow part of the egg is solid and the white part is liquid . I went to check for the time when a ship would depart [ back ] to Puerto Galera . S through the language course that the university I 'm studying at offers . Hello . Especially . He is shy , so I thought he would hate me . ( = this means grandmother ) `` , and he wanted to hug her . The memo 's contents are life , diary , work and so on . I want to study English more so I can talk to foreigners . I have to be careful to avoid getting influenza . Today is Christmas Eve ! I hope I can learn more English and share my life . Today , I went to fishing trout in Tihayaakasakamura . I have to grade 3 types of placement tests for new foreign employees to work at Japanese companies . Oh , I do n't have time now . There are many dishes and many things such as chopsticks and so on . I think there are too many dishes and we should get rid of some . I was very uncomfortable . Thanks to them , I could re - charge , and I think I can manage my German vocabulary test and report . my mom has a strange characteristics , she is always on the ignition to me , maybe beacuse of her busy work , she is always unhappy I do n't know how to communicate with her ! Today 's menu is Kimchi fried rice . Have you ever eaten Kimchi fried rice ? I 'm a university student in Japan . I 'm interested in this material because some CNTs behave as semiconducters , while other CNTs behave as metals regardless of the fact that both of them are made of the same carbon . When we are able to make some deviceS from CNTs , we will be relieved from this problem . If I feel that if there is something wrong I continue to think and not act . The Doctor said `` you may have gout `` When I first saw this cartoon was five years ago , my foreigner teacher showed it to us , but at that time I did n't know the meaning about that because it had no translation . One of my friends is going back her own country at the end of October . I 'm looking forward to meet a lot of foreign friends . I was too tired to do a lot . My ferverted appetite may be because of frustrations rather than longing for food . I will introduce you to an interesting article in the morning paper . Teachers are Filipinos or Filipinas . The reason is because of it 's inexpensive expense . character and characteristic Before that , I had been working at the front line of research and development . that is exciting to me , I have followed all the news on TV recently about the disaster that occured in Japan , it 's too terible and unbelievable , not only the impacts on economics as a whole , the disaster also impacts the mental state of its people . Salted grilled fish and fish hamburger steak . ( Spelling ) But it began raining a lot at night . I think it 's better to make Honey exercise earlier . Sorry I was not keeping my diary I want to improve my English level with nice people 's help , besides studying by myself . I made a big coaster and a small pompom with beautiful colored felts . Can and ca n't issue - could someone familiar to American English help me ? Distinguishing between them is really important , because the meaning is opposite . An British person once told me that they pronounce `` ca n't `` like , `` carnt `` , while they pronounce `` can `` like , `` kan `` . Could someone who is familiar to American English help me ? This term , there is a new English teacher . He is very handsome , humourous and full of personality . In his class , we are relaxed and laugh all the time . We hope we can improve our oral English . In the future , we will be able to talk with foreigners easily . I 'm sure it is n't a dream or a hope ; it will be true . Learning languages is learning a new way of thinking . Both languages for computers and languages for humans broaden my world . But when seeing it from another point of view , I was surprised that so many trains run punctually and many people rely on the railway system so much that they get angry because of a slight irregularity . I learned many new words from the subtitles and I practiced my listening as well . To write something in English is difficult for me . Please give me your knowledge of English . And , I will go abroad . I am watching TV ' PONYO ' , ( which was ) created by Miyazaki Hayao . I like their singing ! I really love their sound ! ! Imagine what I am trying to express . I also spent a lot of time in the green areas / green parts of London , my favorite park being Regent 's Park ! One of my only bad memories is an incident in Camden Market where two Iraqis became pissed off when I did n't want to buy what they were selling and one of them even threatened to beat me [ up ] ! Today I finally got to relax , because my niece was not home . Generally , my elder female cousin often asks me to give guidance Usually , I treat it as interesting , but sometimes I also felt a little tired . But there is one problem , which is that we ca n't borrow them . It 's silent in the office , our boss is traveling ~ We have nothing to do , so I started to daydream . After lunch we strolled along a small streat . ( actually I do n't remember exactly , but it means nearly brilliant ) I am worrying . . . But I could not go to an amusement park because of the rain . I became a member of `` Lang - 8 `` today . He studies athletic training in the U . S . A movie called `` Alice in Wonderland `` was shown today . It sucks that it 's way to hot ! ! It is holiday season in Korea . I 'd like to make many The man was eating potato chips . It was very noisy : ( However , traffic accidents caused by bicycles have increased . So the Road Safety Association proposed a conclusion of the bill related to bycicle 's road . They are in the training department in a Tully 's coffee Japan . It 's been a while since I wrote my journal . I was busy and I actually forgot about Lang - 8 . I became their fan when I heard `` American Idiot `` . I discovered this web site accidentally . This is the phrase of Owl City 's `` fireflies `` song . I have to go to the immigration office to solve this mess . I went to ROUND - 1 last Sunday with my friend : - ) We ate misokatsu . The travel was so good for me , because it changed my sense of values . But if they study the language , it will be possible to express themselves . My daughter 's grandma set up dolls for the day . My family and friends in Japan were okay but we ca n't really feel at ease . American Yahoo account I strongly recommend you to make one too . I was surprised by that guy at first . No , I 'm kidding , but it is true that many people here have fine mustaches , and now I have a mustache too . I hope that either she will change her mind or my razor will suddenly start working again . I take lessons everyday . She was really friendly and kind from the beginning , so it did n't take so long to get closer . I go to university near Nagoya city , Aichi prefecture . I have been here for 2 months since I 've been admitted to this university . I 've not been doing it , but I was interested in it . Recently , _ we have been getting interested in `` eco `` . These are said to be `` eco - friendly `` . But , _ I think these are just more friendly than what they used to be . I think what we should do from the beginning is hold back and use what we already have with caution , _ not buy new things . Nothing at all . If I feel hungry , I will go somewhere around here to find something to eat . Whoever is asleep , sleep tight . Whoever is eating , eat something delicious . Whoever is daydreaming , have a good dream . . I - cried - out - in - spite - of - myself - `` unbelievable `` ! My father is the director of a semiconductor company . I 'm sure I will become a successful student at junior high school after graduation . the details and he agreed to hire me . Before I started working there , he sent me a message and said he did n't want people in April , he would let me know again in May . Today he sent me a message and said he already has someone to help , and if I am interested he will be hiring again next month . While I was waiting to start work I practiced using Photoshop a lot . Before I had planned to learn Photoshop for a long time but I did n't have time to learn it . Noy , who is going to continue her business again . . The reason is that a caregiver 's salary is lower than other jobs despite the hard [ ] work . And customs are a little different in Japan and the Philippines . I think the Japanese government should always support them . It must be that something happened because two police cars passed . The public security in Japan is good , but crime is everywhere . noticed the address data was missing . the & nbsp ; addresses again . It will be the eclipse that last the longest time in the 2000 years . I think that English conversation schools should charge I was happy to hear the phrase `` you name it `` on the radio . On the American Forces Network in Tokyo . But My cellphone was n't ring at all . Other contestants recited formal speeches , for example some presidents ' speeches . I thought my recitation was out of place but one of the professors said it was good because everyone knows the story . They will explain to them about their medical treatment proceess with a kind smile . But I can go to the river . When I was a student at university , I climbed it two times . First , it was rainy and I could n't climb it on the top . When I climbed it at midnight so I could see the morning sun , Maybe they will offer me some help for my hard study and maybe I will show them around and bring them to some exciting places in return . I talked to two Filipino women with Skype I talked with two Filipino women with Skype tonight . I have done soccer , swimming , volleyball , running , and dodgeball . That day is a special memory for us . it opened in octber in japan . She is a very beautiful Spanish woman . I have glasses and contact lenses I do not believe in mysticism , but maybe my team has a bad karma ? I 'd like to know that if people use this phrase in their conversations ? I 'm excited , but I feel a little uneasy . Every morning , I get up at the same time , eat reakfast and go to school . I want to meet crious people from other countries . A woman taught the violin at elementary school . At last , they played at Carnegie Hall . Someone I know from New Zealand always says `` Retarded ! `` . She said that to me and she says that to anyone or anything . I think we have no right to say what is good or what is bad , every character has its beautiful sides , differences make this world colourful . Kawaii means cute , but I think kawaii contains other or different meanings , and it is unique notion in Japan . So I guessed that the person who holds ( or held ) that party must have considered to appeal it world wide when he named the event . Following the Oxford English dictionary , cute has three meanings : who is little blind . Learning by myself is aggressive . Before that , I doubt that this passage is readable ! ( + _ + ) I went to two University festivals in Tokyo , a museum and a movie alone . It displayed the History of Letters and stamps . He wants to be the wonderful parent , the great couple , the successful business man , the great player and the intelligent doctor . Even on the other side of successful career , for example beeing a hippy . I could not move my arm the same as before even after the rehabilitation . In Japan , most high school students wear loafers when they go to school . I feel comfortable ; ) This is my second time to writing a diary . And we must live it so as to feel no torturing regrets for wasted years . Never know the burning shame of a mean and petty past . Live so that in dying we might say : all my life , all my strength was given to the finest cause in all the world - the fight for the Liberation of Humankind . `` l hope everyone can read it in their free time , l believe you will like it . I hope my friends `` will `` make `` everything `` all right . I 've recently begun to like jazz . Maybe because I 'm a beginner . . . We walked for 2 hours Hyperthermia currently is a serious problem in Japan . Be confident and persistent ! I love this style , I just want to see something while I ride my bicycle . I can go anywhere I want . This is the time when junior high school students take the entrance exams to get into a public high school . I could n't find any empty seats so next time Iwill come in the class earlier . and I have many friends in the dormitory and classes this semester . I am fed up with arguing about problems . It is the first time I have gone to the Mexican restaurant . Sometimes , I dream of speaking English fluently . I am afraid to be an adult . or I am afraid of being an adult . Hello , everyone ! Today , I made a gratin for supper . The produce is very fresh . Tomatoes , cucumbers , eggplant , potatoes , pumpkins , cabbage , I am happy to find a site like this in which I can study foreign languages . The world ecomomy is in a serious depression , particularly in America . The lake was glowing and shimmering . I went to the Yahoo Dome last Saturday . Autumn has come , they appear in the trees . The graduation ceremony of our university takes place on 17 March . We go there and see off students who graduated this year . A Japanese girl who is 18 years old and can speak English well came to the inn yesterday . What a little devil , she does n't have enough experience about anything , but only your sex experience is more than ordinary , is it ? It has a soy sauce flavor that 's a little sweet as well . Because we have common topics and talked very well before . I said I will get off soon . And we compared the philosophies of love between Japanese and Korean people . I 'm not good at electronic staffs . . . so now I 'm fighting ( struggling ) with them . With all other universities that are public of my country , we are protesting for a better education , that is equal for all . but the government of my country , does n't like this ; they allow good quality eduacation for only a group of selected of person . Also when we try to protest , they put the police in the street , with the order to arrest for no reason , with the utilization of excessive force . My major problem in studying The cartoon 's title is `` to run , Honey ! `` I wish that all that is happening in the world will sometimes be solved by children 's thinking which is naive and simplistic . . I stayed in this house for 2 years . Against my expectations , I 'm having an enjoyable time here . It means the reunion of families . unfamiliar with this young festival . People who own private cars are encouraged to choose bicycles or Spring is a nice season for cycling , so I want to do it again and discover moreinteresting things ! I had two cooking classes , in one I baked a pound cake of mugwort and in another I cooked some beer fritters . My roommates are still in their beds . bbish it 's rubbish , is n't it ? Hello . I could pass it safely . Wrong spelling ^ ^ Hello , friends . . studying other languages seems difficult if you do n't have the will power to do it . As for me I plan to do it with a iron will . I like to study other languge . I am so nervous that I ca n't speak English well , even I ca n't speak Japanese very well . However , I feel so isolated that I ca n't open my heart nor relax myself . and it struck the mainland of Japan : ( But yesterday afternoon , my classmates called me , saying that if I go swimming with them , then I would feel cool in such hot weather . Although I was in bad mood , I still accepted the invitation . The air was filled with noises . It seemed that there were so many boiling dumplings . However , we still had a great time there though it was too crowded . We played the swimming ball , had a competition of 50 meters speed swimming and had other games . I can also play the guitar . She was afraid of the dark , insects , tthe color black ( she belived that if she watched for a long enough time somthing colored black , a monster from the Black Kingdom would come forth ) , touch a scary picture ( she thought that if she touched it , it might attack her ) , snake , knives ( she thought the knives might want to cut her ) and many other stupid things . All her pocket money she spent on clothes , knives , parties , and alcohol . They belived that any day Amy would come back . Now Amy lives with her mum and daugther . Her daughter Lisa is 4 . Yesterday I went a bar with my friends and drank alcohol to unwind , and there , I played Genga for the first time in my life and it was so exciting ! ! I heard ( that ) it was fun , but I did n't know how hard to concentrate to get rid of a piece from the column . And why we are given our own consciousness . The bottomline is that something commands our superior to tell us to do something , and then something makes us feel against . Actually , I was supposed to go to my lab and introduce our lab work to interested students . I spent too much money this week . Do you like the time when you know that if you want to go to other country , you wo n't need to go to somewhere to get a visa , you will just press your robot 's hands and it will bring you go to anywhere that you want . Exotic Zest I watched `` Heroes `` tonight . I am glad to have everyone to help me to improve my languages . Also , I want to get some techniques to improve my languages . Everybody has stories to tell and I can also say that story - telling is a part of our lives . A little while ago , I watched a TV programme that introduced pancakes in Hawaii . Raising kids / children is very hard , especially two children . I ca n't imagine what kind of mom I would be . It is very sad that tomorrow is Monday . It rained hard . Today I almost overslept because my alarm clock did n't ring . It was a good day because I did it all with my girlfriend . Oh , I have a feeling no one gives them to her . So I try to look carefully around the hall and at customers . so I could n't concentrate on the customers . I had to go to Google Japan inc . , on business . Today I 'm going to Gumi for a business trip . I read from a news articles that the average population age is the youngest of the cities of Korea . I do n't know if it 's dangerous or not . With work , I 'm choosing a fantastic relationship . . Lull : My Vietnamese colleague asked me to go to a karaoke shop and I went to karaoke . There were many people who sung songs in Vietnamese . Most of the songs were Vietnamese . It was a good way to experience Vietnamese life . Recently , cities have been very lively . I was cheered up by the beautiful display of lights . I 've just organized a Free Japanese conversation club around Tokyo for foriegners . I want to gather foriegners who live in Tokyo . So , I need to write a journal about this , and paste another web site or make some fliers as notices . Well , I wrote the journal right now . < The journal > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Free Japanese Conversation Club @ Tokyo . This is for foriegners that live around Tokyo and want to study Japanese or make Japanese friends ! Gathring and talking using Japanese . ( No Japanese skills required . so the only class I attended was `` gender and modern society `` . There are some mixed baths in the countryside of Japan . Sometimes I do n't go to class , and then after class I do not catch up on work . My husband had a cold lately , so I must have caught it . . . Recent , I wrote on lang - 8 , but lang - 8 did n't receive . She has a long hair and coffee - brown eyes ^ ^ . I 'm proud of her . She is a student at an university . Her university is a dream of many people in my country because It gathered excellent students . That result worries me ! I was very worried , because the test result is level 1 . The basic rule is that you try to beat your opponents by throwing your cards away . People have been making laws since ancient times . If there were n't laws , many people would kill each other and we could n't keep managing our society . . Laws barely restrict our instincts . Nobody would deny my opinion , because all people have emotions , such as hatred , greed or jealousy , against someone . Light was gradually disappointed in laws and police agencies . From then on , Light called himself `` God of the New World `` and started cleaning up the world . My husband and I had been concerned about the poor visibility of the front part of our car which we just got last month . The sauce was made from soy sauce , garlic and honey . Though everyone looked tired , we enjoyed climbing . But I could n't enjoy the beautiful view from the mountain because of a dense fog . Today , I decided to go downtown and join a weekly free talking ( conversation ? ) club organized by a language institute . Yet , unfortunately , they said today there was nothing scheduled because it is a term - break period during a public school vacation . I 've never booked an encounter ( the lesson with the teacher ) at a time without `` war `` . The girl from the Cultural Bliss club gave me three Mexican rolls ( sorry , I do n't know its name ) today , saying it would be the most delicious food I 've ever had . As a responsibility of his job , Barry has to search for the statistical data of average revenue in specific occupations . In Japan , ordinary people who have public health insurance pay only 30 % of the total cost . In my class , teacher said ; My husbund and I went to the hot springs last weekend . and of course I have to answer them in english . if you found any mistakes or kinda correct but awkward expressions , please correct them . I 'm going to go to the restaurant called `` Shitamachi no Sora `` ( it means `` downtown sky . `` ) I hope to do n't commit errors otherwise I will receive ( ? ) your corrections . Melody is the the little girl 's name , and the soundtrack of this movie was produced by the band `` bee gees `` , whose music is relaxing and comfortable . I will go to the Youtube website and almost all I watch is cover songs . I hope , therefore , you will correct my diary , and please be friends with me if you do n't mind . Sometimes I just want to talk to her and listen her voice , but I do n't know what to say . Read a dictionary ? When I came back from the department store , I tried to find one on the internet , but I ca n't find one yet . It 's a ceremony for young people who become 20 years old . And also , I want to ask everyone : do you have a such a ceremony in your country ? I start to learn english today in lang - 8 . If you are a native English speaker , you can join us to tell us how to study English . Soon I will study Chinese or Japanese at University , but I do n't know exactly what else . . . I 'm not sure how I can make the sentence if I want to talk about this topic . Are these sentences correct to say ? A lot of mosquitoes come into my house every summer , so I have to take my anti - mosquito device out of the closet . I would like to know the difference between Andrea LeBlanc 's life completely changed after 9 . 11 in 2001 . He had been teaching cultural geography at the University for 35 years until he retired . Dad just said the same thing . yesterday . `` I changed my instructors a month ago and I am not use to the styles of the current instructor . You can barbecue ( or grill ) whatever you like , such as sliced beef and vegetables . Usually people go to Yakiniku restaurants for dinner with their families , friends , colleagues and so on . So when I get enough skill , I can teach anywhere in the world ! ! Since my senior delivered a really good extemporaneous speech that dealt with disguise in food and whistleblower , I thought that he would be the the best speaker at extemporaneous speech , but , to my surprise , two out of three judges gave him third prize . The reason they gave him the third prize was that he delivered the extemporaneous speech so well that judges thought that he prepared the topic and luckily picked a good theme ( In extemporaneous speech , speekers are given a theme . ) randomly , so the two judges lowered his score in order to be fair to other speakers . League , so it is the contest that determines the best speaker in E . S . S . We are very grateful to the international assistance . I live in western Japan and have been very worried about the region . I have been thinking about what I can do to help them by watching TV programs about volunteer programs . how to keep a relationship I am struggling with a long distance relationship . Tv influences people 's behavior . I think there are many positive influences that come from watching Tv , but when I see the word influenced I come up with negative things all the time ; it 's too bad , and maybe I should be forced to write about problems . Today , I 'm happy because this is my first English journal entry . Actually , I do n't know what to write . I will go crazy . My boyfriend and I planned having a date on that day , but we could n't because of his grandfather 's operation . To be honest , I am disappointed our date was cancelled . However he sent me an email and promised to celebrate it next time . Somehow , I found myself tired of this boring life that I am living now . I am learning both English and Japanese , but they are not as easy as I thought . I took a deep breath and said to myself , `` There are things that need to be changed `` . I was in eastern Europe , Budapest and Prague , their beer was much cheaper than in Norway , where I live now , so there was no reason to stop drinking beer for the whole 2 weeks . We have met before , Annette : I really really wanted it , but I could n't find the store . It was hilarious ! ! I could n't breathe well ! So , I can bite him from the tail , better than eating him from his head . We were really busy in preparing , and we just could n't stop practicing ! What a funny scene ! My teacher gave me this chance because she knew that I want to major in English in college . The composition titled `` A Field Trip . `` I wrote something interesting and what I learned from my graduation trip . I wish that every senior will have a beautiful future ! At first , I was happy that I do n't have to do house work , but now I feel bad for my sisters who are jealous ! In the new year I hope that I can get a great TOEFL grade , and I hope that all my family and friends will be happy all the time . I went to KARAOKE yesterday because the Freshmen party was held by the one of the freshmen in the university which I will go to . Also , the affect of the earthquake still continues . I felt quite curious , then took it off and decided She has read innumerable books and we often discuss the content of some of those we are both interested in . She prepared for the examinations last whole year because she planned to study further in the USA . I was actually hoping to eat at this restaurant . So I was very excited and it made a deep impression on me when I ate Thai food . I almost lost my life , but I at last defeated the difficulties and caught my life again . So I hope everyone can have a happy life , I desire happiness and health . I desire to improve my English , and can speak fluent English to talk with my friends . In the 20th century , our right of existence was accepted . In the 21st century , our right of non - existence will be accepted . I will visit the US next year so I need to know more about US culture . It 's different from Japanese culture . It is absolutely rubbish , but can you guess why I wrote like that ? The Korean woman who served him in the small restaurant was probably surprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . BTW , I ` d like to recommend chili pepper Kimbap if you like spicy food . So I want to practice writing first here . . . He told me that the Spa is becoming popular in the Filippines . We think it is enough to have rice balls even if without side dishes for lunch or dinner . First of all , boil soy beans . My new work place is situated on the outskirt of Seoul , surrounded by the greens . reminds me of the forests in New Zealand that I 've visited 10 years ago . Today , I joined the language learning current of lang - 8 . I am very excited ! ! It will make me vigorous . The color around me was changed from the moment , he said we have to , divorce , from a pastel color to a dark one . I will go to the library with my friends after finishing my classes . so some messages are from Europe , Thailand , and Argentina ( which , btw , is located on the opposite side of the earth ! ! ) . . . I do n't hate it . Can you read what is written in the photo ? But I ca n't take consecutive days off . It was horrible ! ! ( Reading picture books for the students in my son 's elementary school , and English books for mothers and children at the City library . ) And today , the seasonal ones ( work ? ) have started . Last Friday , my son caught a cold . Because I changed jobs this month , I ca n't take a paid holiday . It 's a great place , but not a very good time . because it 's first time to write my diary in English ! ! But I 'm a little bit worried about my English . Congratulations ! To tell you the truth , I still dont wanna go back my country , Japan . But unfortunately , its a time to go back and , it 's time to speak about what I 've done in the U . To begin , with I really appriciate having been given an opportunity to study at St Norbert College as a ESL student . For almost seven months , I 've studied English at St Novert College . For almost seven months , I 've considered that , I am talking to people who have totally different backgrounds from me . Since coming back to Korea for the holidays , I have been hanging around with friends . I wore a sister 's costume . It was popular with mothers , but little kids do n't know who the sister is . Some students thought I was dressed as a ghost and felt like crying . There are 2 more months until this year is finished . I have a problem at night ! July 2 - 5 I had my guest . A beautiful girl from Malaisya and her parents . We went on the open bridges at night , and saw Night City , but my guest was very tired and slept the whole way . ) ) ) Through 3 days we all understood each other . Shopaholic ( I think ) series by Sophie Kinsella and Dean Koontz 's books etc . What I wanted to write in today 's entry was that I need to review my posted entries and check my weakness in my English one more time . `` Whenever I call your name , I feel my tongue rolling smoothly . Please help me with my language and problem . because I was very sleepy . Japan 's climate is probably subtropical . I loved her so much but I ca n't meet her in a real time anymore . I was surprised at the safety of New York . Before I went to NYC , I thought it was dangerous to use the subway at midnight in NYC . But there are many immigrants in NYC , naturally . I feel NYC is one of the most adorable places in the world . I know that my blood type is O after I checked , and I heared that it is better to donate 200ml the first time . Studying languages has always been a topic among people . In short , a brighter future is waiting for us if we make good use of the studying in our school . one little girl passed on the road by the beautiful butterfly , the girl looked at the butterfly . and the girl said : `` the butterfly is so beautiful `` I went there to attend an english conversation lesson today . Although I filed a complaint to him , I did n't feel good . When I feel stressed I like to take a long bath or watch a movie . I prefer comedy movies to action movies . It is fun to watch if there are unknown actors in the movie . I heard Michael Jackson say `` I love you more ! `` in a video . I wonder what it means exactly . . . Second , I jogged 5 miles this morning and practised golf in the driving range for 3 hours . I wanna be a translator . A well - known hypnotist was invited on the show . He hypnotized some audiences by giving orders while they were somewhere between conciousness and unconciousness . If we are saying some negative things about ourselves , we are hypnotizing ourselves in negative ways . Because we were there from opening time to closing time , my legs were starting to hurt . That night , we had a lot of fun talking . We had a really good time , though we were tired . Because her birthday is soon , we gave her a dinner ticket that night . I would understand it if I excercised that day . But I have n't got any exercise recently and I do n't do hard working either ! So it 's a mystery for me to be always sleepy recently ! When Isoak in the bathtub , I sleep there for 30 minutes . ( As the image suggests , I will need a lot of strength heh heh ) And do you have another story about entering a university ? Second , I think nothing is more urgent than learning vocabulary and the fundamentals of grammar , even though the speaking and the listening are also important . I am confused . My weakness is if I make a decision on something After thinking a long time , l finally make a decision . It seems like the inside exposure 's damage can be lowered by taking iodine as it helps the body excretes harmful chemicals . But please do n't take this too serious . I wrote my last diary about 5 months ago . Although I 'm very tired to have walked so long , it 's healthy ( for me ) . Some of the important locutions are simplified or left out , so I ( often see ) came to see that the subtitles are n't ( always ) consistent with what the movies really want to say . I wanna see a lot of galleries and museums . I have loved a boy friend until recently . This is unbalanced ! But I sill want to visit Australia again . Maybe I will go to Sydney next time . At first , I checked my emails and then began my work . Of course , we wouldfeel the sense of alienation when we see foreigners at airports or other countries or our towns . Would you imagine if your country is a small island and if English is spoken in only your country , it would be a big disadvantage for you guys . But foreigners have been speaking English since they were little as a public ( international ? ) language . But of course they only spoke English while we were drinking , I could not join the conversation . and may be Eastern Countries . I hate the weather in Fuzhou , because it varies so much ! Yesterday it was so hot like summer , but today it 's back to cold ! It 's midnight and there are a lot of mosquitoes flying around me ! = = | | | Does this sentence make sense ? Our central dining room is in the center and it is the most popular canteen in our college , however it has both advantages and disadvantages . The cheaper price and the better quality are the characteristics of our center canteen . I like Sichuan food best , not because it is has a heavy taste , b ut because it has a special smell . Meanwhile , all kinds of food in the center canteen are cheaper than the market . Moreover , we can only have a limited variety of dishes with little change every year , which makes eating here very boring . I like Onsen very much because I can relax . After soaking in the bath , I will eat delicious japanese food , like tempura or sashimi . It takes about 1 . 5 hours to get to Misato Onsen by car . Starbucks down the Princes Rd . On top of that , the castle seems away from you . I do realize this is not a good attitude of mind , but I have noticed that if I look at the worst side of matters , I can only receive positive surprises . The opposite of this happpens when I look at the sunny sides of a situation . I knew him at the literature class in college . I 'll go to Sydney at the end of this year . I love fireworks so I 'm looking forward to this . Unfortunately , the test system broke down for about five hours . Yesterday , it was raining so I enjoyed watching ( the movie ) `` Chariots of Fire `` at home . I went to America two weeks ago . I guess 4 years have passed rather quickly . Finally he was able to do it , but of course his bicycle had training wheels ! So I will study English a lot and as soon as possible ! As far as I can understand , your university is great institution that provides a stellar environment for furthering my education . Also I can drive a car very well , can work on the construction site because I studied in the construction university and now I work in the construction site , there I am a foremaster . Today , I went skateboarding in a park . The team seems to be the best although they did n't participate in any test sessions during the winter sessions . Second , we can use the Internet with mobile phones . The only drawback is the length of the episodes . Now imagine we put a flea in a container , so that it can jump out of the container . That ` s why we sometimes feel that there are many limiting situations in our lives , it can be emanating from our mental limitation : `` I ca n't do it , it 's very hard for me `` , or : `` I think my family won ` t accept it `` , or `` Is it possible ? I finished the test last Friday . I like sutdying about other language because I can meet a lot of people and I can understand our world better . The things which happened last night did n't arise from the differences of our cultures but personal matters , I think ; - ) We spoke in both Japanese and English . But our American friends could n't feel her feelings ( of course they ca n't understand Japanese ) . Our native languages are different . I think it is natural there will be difficulty , and it is the interesting point to communicate with someone who is from a different country . I think the reason that I did n't like science was because all of the books I had read were not interesting . Since it was written for kids , It was really interesting and easy to understand . Anyway , I am turning 20 this month . Tomorrow I will go / I 'm going to Belgium and then to Holland and finally back to Japan on Saturday . The King 's Speech I watched the movie `` The King 's Speech `` In Japan , it is possible to rent the DVD for this week . I thought the movie was very good . But I figured out the view of the town is so amazing ! ! My role is filming the activities of my teammates to create reports . Today , I made `` OKONOMIYAKI `` for my roommates . We saw the sun rise and it struck our tent . I hardly understood native English then He is a university student and will become an exchange student in an American University this Autumn . I was asked by my roommate to take care of him , particularly about cooking , and of course I said yes . Furthermore , We played many different kinds of games in the schoolyard such as seesaw , hawk - and - chicken . For the `` hen `` , it was important to focus ( your ) attention and keep a strong sense of responsibility . I want to learn English well , but it is difficult for me ! When I had some opportunities to speak in English , my Japanese supervisor was one of the people in the audience and said things like `` You said a water and forgot to add s to he want `` and so on after every my speeches . Germany , Spain , India , Austrailia , Finland , Egypt , America . . . . . . I can answer it better than the real questions for Clinical Nursing . . . . So , I had no choice I learned many things from college life . Everything seemed to be fresh . According to UK laws , euthanasia is not allowed . This includes any act of assisting suicide to the patient . The girl 's name is Jones , and she must battle heart problems and leukemia . I am studying to get myBA in Applied Linguistics ! I love to just have fun and spend time with my friends . Most of my language backbone is in school . just unconsciously pour the coffee in to my mouth . Coffee to me is like the cigarettes to heavy smokers . hey guys , it ` s my first time here , I am so happy to know you guys to help me learn English . I always watch `` Azumanga Daioh `` and `` Lucky Star `` . I 'll appreciate your corrections , but I will not rewrite this probably until I am able to write this correctly by myself . I especially dislike `` pure `` Japanese literature ; of course I have some favourite pieces among them , but unfortunately most of them are widely underestimated . I studied material from Side by Side book 4 , but it was a little difficult for me . In the afternoon , I 'm going to study TOEIC material for an hour or two . Let 's study our Language 's together ! ! Thanks a lot . When I search Google , it tells me that members of Japanese parliarment earn1 . 3million per month . Apart from that they also get a million yen as a travel expense each month . These perks add up to nearly 44 million yen . In fact , according to some sources , Japanese paliarment members receive the highest salaries in the world . So we really need someone to solve this problem . If you want to be friends , feel free to let me know . So I was back home after working at 9pm and getting things ready ( for example ; reconfirm jazz tune that I memorized ) . His wife was a Japanese . Why music is important to many people ? Although people can get tired of repetition , they listen to their favorite music frequently because they can enjoy themselves more consistently through that . We can find some traditional music from different nations interesting . So we can see that music is a wonderful means that can make us feel better . As Oliver Wendell Holmes said : `` Take a music bath once or twice a week for a few seasons . in order to get rid of my stress that comes from studying . Actually , in America , the gym is somewhere that provides chances for people to make friends . That , I cant deny , but something just happened to me recently . When I am on it , I am used to always looking from one corner to another to see what others are doing , so that I wont get bored . Last Saturday was no exception . relatively conventional Taiwanese girl , it is kind of too much . One of my Japanese friend told me about this website . Thunder is a very powerful tool . I bought some bread and cheese . The Mid - autumn Festival is a big day in China during which families come together . What do the following sentences mean ? Fireflies . I have a Venezuelan friend at my school . For a long time , I 've thrown away anything making me remember the past , either happiness or sadness . All the time , a question is in my heart ; I want to know , In the second hour , my coach taught me how to shift gears . I 've been drinking coffee as a countermeasure for sleepiness . He gets food from the airport restaurants for free . What is different from the movie is that he has an available visa that allows him to stay in Mexico . Everything about me : ) In class , my English teacher said `` How are you ? `` . My teacher laughed me . my English teacher taught me `` I 'm fine thank you `` only ! They gave us three tests , grip strength , flexibility and alertness . Since the garden is about five kilometers away from our home , we ca n't go and see them very often . Especaily during festivals and weekends , KTV is almost the premier gathering place for young people . I tidied up my wardrobe . There is big space in my wardrobe now . Tomorrow I will go to the Driving Academy . Today , I finished my report . Shi ' ah , sunni and Kurd are there . The Iraqi goverment is trying their best to unify the country , but their approach is n't working . Iraq has elements of confusion now . I ca n't imagine what will Lots of people are used to cover their love , their anxious , their bear and so on to calm their friends or their families . I had finished eating watermelon . I want to speak and write in English fluently . I 'm restarting English . I 'm learning English vocabulary and grammar now with books and mp3 's . But summer vacation ends August 31 = ( I was interested in an article about AVATAR . This movie represents the current US . It 's my first diary on Lang - 8 . I talked with a foreign friend on skype for the first time . Anyway , she is a Filipino ( I think this vocabulary is very difficult because it sounds like Philippino but some words are spelled differently . ) But my cellphone does n't ring , and she said maybe connection was n't good . So we could n't talk to each other though she demanded me receive the call . I could n't dispel my doubt to her so much as that time . The season is turning to winter and outside it was a little cold , so I wore a sweater . Some houses are really funny , but one house was really awful . So scarey : - ( I want to go foreign ski areas , because the scale there is so big . If one of them has any problems , the entire society will be at risk of collapse . By the way , I 'm going to Spain , France , and Italy next month . If you can pass the Cambridge English examination , getting a job will be even easier . But Singaporeans are very kind to me . My favorite character is Miss Sue . Kosen tournament in Aomori ! ! I went to Aomori for theKosen tournament . The tournament was so exciting ! ! And it showed the position or rank of the people using it . They believed that I was nervous as I spoke either too loudly or too quickly . . Indeed , I felt a little nervous just before it was my turn to present the report . The reason why I spoke so loudly was because I want everyone to be able to hear me no matter which corner of the room they are in . My home town is on the sea . I eagerly look forward to hanging around with him : D As I was writing using English on my mobile phone , I realized that English exist everywhere in Japan ! We all hoped we could leave as early as possible and go back home to celebrate Christmas with family and friends . Anyway , I enjoyed myself . Yesterday It was rainy , but I took them to the doctor . The doctor advised me to take my daughter to the ENT doctor . So she did n't sit still and cried , I had to hold her while the doctor examined her ears . Till now I couldn ' tdo anything without composing myself . They pester me to go outside although I play together , ask for new toys , new DVDs , new snacks , and so on . Similar to what was written in the diary of another user , I get stressed when I ca n't train . According to the review , It is supposedly a pure love story about childhood friends Emma and Will . he should have moved on and should 've fought with life for his happiness . The movie is fascinatingly bad and irritating but cant stop watching I began to study English two months ago because I want to go abroard to study it . The competition is quite hard , because , to find a good job , it is one of the most important things to enrol at a famous university . In schools , there were plenty of strict rules , for example , rules concerning hair color , the length of skirts and so on . Enrolment rate of universities is relatively high in Japan ( about 60 % ) . I was confused and irritated , and got new bicycle at discount shop near here . particularly , city area either near the station . There has many good taste food we can bought . Every TV will have to be able to receive the new digital signal . station . It 's faster and less crowded . I started it from around in January this year . I have to communicate with the customers and take care of them . I had confidence with these many people but selling is not just communicate . I usually go to work by foot . Today was special day , because I walked under the Sakura arcade . In fact , I am crying to read this letter . `` Actually , the sneakers I bought are the adidas brand . Then , tomorrow , which is exactly today , is the exam . Ato Tomadachi wo sagashitai node douzo yoroshiku . Ima ha Eigo no Gakko ni itteimasu yo . Boku ha kotoshi ni ju ni sai ni narimashita . Akirakani , boku no bunpou ga heta desu kara chigau tango ga attara ayarimasu ! I am a freshman and study English and Chinese at college . My favorite actor is Will Smith . We had two visitors from Vietnam at home . The taste was Japanese style I 've come to the conclusion that the only good mosquito is a dead one ! I watched news yesterday and I heard that there are many people affected by this influenza around the world , and also there is one person visited Mexico and guessed having this disease in our country . A : We would like to order , can we have the menu , please ? A : What 's today 's special ? W : The special of the day is cuttlefish spaghetti . Eiheiji temple is famous for a head temple of the Soto sect opened by Dogen . I heard that monks in Eiheiji get up at 3 o ' clock everyday ! My daughter slept by my side . First , I want to introduce myself . I was born in Saitama . My brother told me she is Japanese . and I started to listen to music and play the guitar with my band . Now , I am still playing the guitar with my new band members . So I always feel sleepy . . . She always spends around 30 minutes eating breakfast . Before breakfast , it is also time consuming to make her wake up . Studio Ghibli Well I 'm not sure if this plant is called a spring onion in English . I went to a Singaporean restaurant tonight . With a few of my colleague who are American , Singaporean and Japanese . We drank Singaporean beer . I still can not figure out what happened . I want to understand this beautiful language ! I had a speaking test yesterday , as well as a reading , writing , grammar and listening test . I forgot the timetable was changed from usual day . Unfortunately , I was eating lunch in the park so , as a result , I was 10 minute late . I have discovered so many good songs through this program that I 'd never listened to before . My bro is in one of the pictures . These days I think my brother feels like a good friend . Okay , I do n't know what else to write . In addition , I was amazed with my friend said that other friend who we have known since pupil married and his wife has become pregnant . I ` m not asleep , because I am trying translate my favourite songs . , because I can look straight ahead and see a little light coming through . I will enjoy today with my family ! ! ! like it and now , I am going to move there again but this time will be different Perhaps because of I am foreigner in this place , I do n't mind whether or not people look at me . A lot of classmates always go to their laboratory everyday and their tutor gives them work to do . There is a massage chair , and it is very comfortable for me . I was grinning like an idiot and trying not to laugh out loud , ( sometimes without success ) . My grandma sent me sweet potatoes . I do n't eat much these days , because my appetite went away and I did n't have much time to eat . In fact / Actually , it is the season to pick ` Pink Lady ` apples . The tax system and infrastructure of the Chinese society are completely different from the Japanese one ( s ) . Although there are many things to learn , I 'm enjoying that as well . I mean , perhaps , Charlie is one of the best characters he has acted . What really was impressive was how people are passionate about Italian food . Especially Victor , the leading character fiance . He is an incredible chef who is opening his own restaurant in N . go bananas ! Thus , yamasho was made . but making sentences is very difficult for me . It 's beautiful . This spring , vegetables are expensive because of the abnormal weather in Japan . This shop helps me alot Today , I havegot5 avocadosat only100 yen ! I spend X ' mas with my darling every year . There were 2 cups of instant noodles in the kitchen . The teacher told me my daughter I studies well , but she is sometimes too shy to give her own opinions in front of the other students . . . She is very open with family and with her friends . I ca n't find any teachers to help improve my English . The next time we 'll see each other might be the day we leave for Japan at an airport , which will be on the 20th of December ! In the x - ray photo , he and the doctor could see one earring . It should be a very interesting and an unforgettable experience for me because this is the first time I joined a boyish competition . thus , there are only 3 girls in the computer clubs in our school , my friends and I . There are many geoglyphs and the length of the biggest one is about 300 meter . I was very tired , because today a lot of people came to my store . Me and my co - worker were upset and worked hard . It will be 634 meters when it is completed in 2012 . She prefers Tokyo Tower , which is the present broadcasting tower , over TOKYO SKY TREE because of the shape . So my body is worn out with studying and a part - time job . Actually , I 'm pregnant and I 'm suffering from morning sickness , so I felt gloomy before the wedding . It was a great wedding , but my three - year - old son could n't sit quietly during the ceremony and reception . So we decided to go to a restaurant . Maybe because I ate too much sugar . The First Massage This was the first time I got a massage . I went into the massage parlor ( the normal one ) * and told the masseur / masseuse that I had a back injury from five years ago / earlier . * umm , hehe I spent my holiday time very well because I did n't waste time . I learnt new things and I had great days with my family and friends . Since the interview with my boss , I ` ve worked more carefully than before . What should I do to develop my career ? I had a late lunch at a curry chain restaurant that is famous in Japan . I want to study about / how to do that for my future . Time is money . Hi everybody ! listening skill ? Do you know a way which you can listen to English for FREE ? It is across from the train station . Please tell me if you think my sentences are wrong or seem unnatural ! A lot of passenger praised his driving and he himself is confident in his driving skills . In more than 1400 years ago lived a righteous king called `` Hormizd the fourth `` . I just discovered this website via facebook ; it looks good , but it 's a bit disorganised , I reckon . Regarding my hobbies , I love playing sports ( Rugby , Boxing , Running ) , listening to music ( Trip - Hop , NU - Jazz , Hip - Hop . . . ) and so on , like everybody actually ; - ) how my birthday was Yesterday , my friends and I went out to find a job . The hairdresser who cuts my hair every time looked so busy that I hesitated to have a conversation . I was worried about her even though I 'm a customer who receives a service . I have been getting an appetite since I lost it after all the hard times . I have been really depressed for a month so I lost some weight but I kind of like how I look now . So I am kind of worried that I will gain more weight than I lost with this big rush of appetite . What happened to Japan ? First news was issued July 28 , under the headline `` 111 year old man already died 30 years ago . `` And his granddaughter said that , `` He wanted to die by starvation , and we could not stop him because he was too serious . `` It was surprising , but I think many people believe that there are some to see if they ( the elderly people ) were alive or not . Some of them have already passed away ; the status of others is unkown . Japan is one of the first countries to become a super graying society . So the gorvernment has to deal with this probrem immediately . Selfishness ca n't control us . Even though I 've lived in Canada for a year , I have n't seen outside of the city except Niagra falls . Now , it 's nearly two months since I lent him the money . You know , we have got on very well since we first knew each other . I 'm planning to take it next month , for the first time . Hope I will be a top salesperson . Although I am Japanese , I do n't know much aboutJapanese culture . It is not completely useless , but it 's awkward to use . Certainly , I can see something like his toe . A huge typhoon is getting closer . A huge typhoon called ' Gonpas ' which means compass in Japanese is getting closer to the Korean peninsula . It 's important to take steps in advance . If you live further south than me , let me know how the typhoon is . I like its world and characters , especially the `` Muimui `` . Today my friend and I read a book called `` The Mystery of Your Name `` about character traits and the fate of a person , which are defined by his or her name . So I have to go bed early , I took enough rest . I felt I ca n't find that by only studying at school , I need a lot of experience . There are many foreigners such as Chinese , Mexican Spanish . So I have not studied English for one month . I 'm still enjoying the masochism . I 'm great because I still keep memorizing boring words . Today is my second time studying here . All in all , we must admit that the advantages outweigh the disadvantages . Do they have different meaning or pretty much the same ? No music No life So , ( I became ) quite ( exhausted ) today . In fact , the wide - spread distribution of the WiMAX service on the rapid transit system is a goal set by the government in Taiwan . but It is completery different tempurature today . because strong wind , and so on . but maybe I am going for a surf tomorrow . A lot of Japanese people are very shy and ca n't communicate with people from other countries . I never played tennis before I took the class , but the coach taught me how to play step by step , and I improved . . beacuse I like the English lanague and I really hope to be native speaker so I study english whenever I have free time . ( that 's true kk ) anyway I 'm working so I have to go to bed soon , lf someone reads my diray , would you please fix or change the sentences for good and more natural expression ^ ^ I tried to bake a cake with a rice cooker ( steamed cake ) and made cranberry sauce . LOVE AT FIRST SIGHT ( part 2 ) The first day that I saw you , I thought you were beautiful , But I could not talk to you watched you walk away . Suddenly , the phone rang cutting through her train of thought . She felt something special , not because it was her first time making a delivery , but because her premonition told her that something was going to happen ! She knocked on the door and it was opened immediately . Most of the people there were men and Lane specifically recognized the angel in her heart who was sitting in the corner . She could n't believe her eyes . Lane replied : `` Thank you but you paid enough . `` He moved closer to Lane and told her : `` It is for the tip girl , thank you so much ! `` Lane could not do anything else , just received it and thanked him . He had a sweet accent . I remember that I was so excited when I saw the trailer of `` Avatar `` I think the theater will be crowded this weekend because of Avatar fever . I believe Avatar will reinvigorate me with its visual technology and emotional story . But sometimes pop music is interesting too . Especially if guitar and realistic bass is used . I bought this one just as an interior accessory . Another reason is that humans have a variety of diseases that was caused by new technologies . Without research on the universe , we can develop the medical field to save many lives . So , I 'll take positive steps of `` Lang - 8 `` . But a practical test is not easy / difficult . I opened the box and plugged in the tree . Then I switched on the lights and turned the room light off . I felt Lucie 's feminist sense on her works . but my English skills have been getting worse since I came back to Japan in March . I get a little nervous . When a new semester starts , there will be some foreigners come to my senior high school to study . I 'm learning new information that I did n't know Althoughh I memorize a lot , I ca n't make use of it . Oh , I missed several days for writing my English diary . Eventually , I posted this article courageously in order to introduce myself . It offers a very friendly platform for language learning . People from different countries can exchange feedback . I live in Tokyo and work as a hospital worker . My hobby is a bellydancing . I recently feel that nothing can satisfy me . At the begining of the journey , I suspected her information was inaccurate . We took a bus , which the fare was one dollar and twenty cents . But we were cheapskates , and we did not want to buy a map which was not cheap . They 've kept telling me ' ' hey do not work too much , we are tired , go to sleep . `` Today will definitely be a memorable day for Japan ! ! ! When I came home , the game just finished . . . I wanted to watch the game in real time and feel the excitement with ( other ) Japanese soccer followers ! ! ! Ubin is a small island and it takes ten minutes to reach by ferry from Singapore . X - Files , FRIENDS , Full House , and some others . I love Full House in particular . Joey and Jesse are very funny , they always make me laugh . Joey is very good at imitating the cartoon character 's voice , motion and sound . By the way , Michelle was very popular with Japanese people . The write - up for a strawberry painting using the Painter She needed to make money , so she could n't continue to mainly do translation . I wish I could stay home , but I have to take an English lesson . When you become old , you wo n't be worried about your health . `` I smiled and said good bye to her and then left . Of course sometimes I am lazy , especially on rainy days when I would find an excuse to avoid running . Actually , those did n't sound very tasty but I think fans and kids may have love them . I will write about it in my next journal ! I 'll be relieved . I can learn English and I can also learn Japanese by checking I did not read books at all today because I did n't havethe time read . Today my English friend called me to make an appoinment tomorrow at the same restaurant . She likes to eat mussamun very much and I like to eat somtom ( papaya salad ) and sticky rice . When I see her I like to give hermy diary I write in English and she likes to ask me about pronouns . We enjoy exchangingin Thai and English . Today at my company in a high rise building I saw beautiful rain . I hurried to call my friend to look at the rainbow . I would like to chang a goodday with my friend . We enjoyed looking at the rainbow together from different places Today I was very suprised they asked me to eat lunch with them . You know when you start ata company for the first time I think I 'm an outgoing person & a person who has a positive attitude . I 'm so bored everyday . . . I could harvest only two oranges this year . I 'll go to the summer house TO SEE my dog , not my parents . ( hidden truth ) So , probably I can have internet there , too ! At night , I went to the English conversation class . Japan will definitely change , and everyone can move Japan forward with EV 's such as the Nissan LEAF ! Fight for English ~ ~ ! ! ! ^ ^ I work for quality control division at the company I work for , and sometimes I have a chance to communicate with the overseas plant ; especially Czech and U . S . A non - government organization which I support gave a presentation to the public . The center is also a place for garbage disposal . It is said that the pool is heated by energy produced in the process of garbage disposal . Suggestion : It 's been a very long time since I last wrote a diary . . . They are learning Japanease in uni , so they practice Japanese with me , and we Japanese exchanged students practice English with them ! ! After school , I went to Hide park , Australian Museum and St Mary 's Cathedral College . My name is Frank , and I am Chinese and live in Guangdong Province with my family . I graduated from university 2 years ago . fuckin gnarly journal I think that Alex should also update his . The update however might not be needed for me because I intend to buy the new IPhone 4 in a week should it be ( if its ) available to buy . Its certainly gon na be fuckin complicated . I got a call from the ( a ) human resource company just now . I recommend that you should take him to the ceremony . I am embarrassed to say that I could n't finish it on time . Since all groups were planning on using Powerpoint , I went to the appliance store to buy it with concern . After the meeting , I read a new novel at home . It 's 1 : 10 am now , at 8 : 00 I will go to the building where the International students in Vietnam live . Jinjas are old Japanese temples . There are very beautiful traditional Japanese gardens . So I think it takes many more times but I 'll try to upload it with my phone . Now I finished my job , and I am going to see the restaurant where my friend 's second wedding party will be held . Because I was chosen as a second wedding manager with some friends . About 80 people are coming and we want to think of a surprise for the husband and wife . but whenever I meet my friends among the them , the atmosphere ( it 's not the exact spelling . . ; ) If someone is joining the messenger program . My score had improved from 625 to 690 ! I guess Lang - 8 has played an important role in improving my English skills . Day 97 : Punctuality After thinking a lot about my university choice and what is best for my life , I took some admission tests : one for Medicine , Pharmacy and Biotechnology . I hope I 've done the best choice for me and for my future : ) But I do n't have any complaints . I really enjoy my home life because of my email friends . I 'm not satisfied with my English . Although I do n't like winter , it 's abnormal that it 's still so hot . I think this site is really good for learning a language . I used to write a diary in English , but I quit because I was not sure if my writing was correct . Then , I made an appointment with the interviewer there . I would really like to be a psychologist . Now I start studying by reading easy English books like penguin readers or watching foreign dramas on TV or CNN Student News . I often climb mountains . While I 'm climbing by myself , I can think about various / a lot of things and sometimes good ideas come up to me . But in Japan , the Tohoku area nuclear power plants had big problems because of the earthquake . Anyway , I did n't miss the airplane . At Amsterdam , we had a radiation level check of our luggage . I 'm going to visit the USA next month , and I 'm going to stay with a family there . but they are often on sale . I hope every thing gon na / going to be alright * ema ; a votive picture tablet of a house I intend to go to bed as early as possible . I thought a lot of the play equipment would be difficult for my 4 year old daughter , but actually she enjoyed the playground with my 10 year old son . I went to an italian restaurant tonight after school . At first , when I entered the restaurant , the staff gave me a card and explained I think It worked for me more than an appetiser . After the cook finished cooking , I put my card on the register , where first their staff gave it to me , then I could go anywhere to have a seat in the restaurant , which was really large . After I finished eating , what I should have done was just going to the entrance and gave a card back to the staff , then they could calculate my bill . There were many people so I think that restaurant is very popular in London . I did n't go out all day today . If you are a competent worker , you will choose the merit system . It is difficult to estimate one 's ability accurately . Then , the Hong Kong Government must hold a natural activities of Hong Kong travel festival . In this way , we may promote more activities of nature such as hiking and mountaineering for visitors . There were a lot of fallen leaves on the pavement in front of my apartment . Who is responsible for cleaning up those leaves ? Is it the responsibility of the manager of our apartment complex ? Now , my foot , arm and body are very itchy . The Roman 's structured and man - made world wide empire out of architectural forms , and those architecture forms revolutionize the ancient world and excerpted and lasting influences on the architecture and the architects of post classical times . Uh , And you see a park of the Capaline hill a transformed by Michelangelo into the famous Campidoglio , as well as the . . . All of my friends will get to spend a long vacation for 4 days in their hometown except for internatinal students who can ` t go back to their own country . I hope his parents will be braver to buy a new wonderful car after they consult with their wallet . They are not vegetarian . This week was so tight that it was decided that I can not take a rest day during the week ! He always got mad at me when he 's in a bad temper even it 's very little thing . Unfortunately I do n't have a co - worker to share his calumny . Me and my husband will eat out in commemoration of this anniversary . The place needed to be cleaned was a 50 m long flower bed that formed along a road to an entrance . After the work had been done , I looked around and it looked quite neat . Quite frankly , I tried several times to read it but all failed . The young girl , the main character , her name is Lin Da Yu , after being sick I went shopping with my friend . When I read about this portal , I could n't believe that someone would help me and fix my mistakes without any salary . If any of You are interested in history or geography of my country or city - please write - I will do my best to help you . I am so lucky that I found this website one day ago . I have been looking for something like this for a long time . First entering it , I wrote information about myself . Welcome to you all over the world and hope you make friends with me . I 'm willing to make with friends with you . My head portrait is of NBA player Vince Carter who is an active duty basketball player , which shows how much I love NBA . Today I learned that the Spurs have won the 7th game of the playoffs against the black horse team , the Hornets , this season . I love Spurs not because of the team ( they have won 4 championships in the last 9 years ) , but for one guy , Tim Duncun . Recently , some Japanese enterprises are starting to use English in their offices . I have challenged myself to learn English many times , foreign restaurants . Too many people everywhere . . I 'm going to travel to Australia next month . I 'm going to on a simple tour which includes a round trip plane ticket and hotel only . That 's why I research some local tours by internet and some books . So I started to create an English drill , and because one word can mean several things , I used example sentences to hint the actual meaning , but I would n't want to have incorrect ones . I wanted to take nice shots , but they were moving quickly . Japanese peaple are said to be workarholic / s which I think so . Young people , including me , are not more workaholic than older people . Because , older people worktoo late ( or too much ) and somtimes go to work even on the holidays . I do not want to be workaholic . In our university there is a very convenient system where we can use all the fitness center year around with a fee of only 1000 yen ! Whenever , wherever I am listening to ' Whenever , Wherever ' now . In fact , I have already bought a Spanish textbook . In Japan , Spanish is not a major language like English , so Spanish textbooks are more expensive than English ones . . . . . Why ca n't we have less since we are in univerisity ? there is a problem ? Since then , my plants have been getting vigorous . A guy who is traveling in Europe meets a Parisian on the train . There was only one night they could be together . Extremely Hot Day It is extremely hot in a lot of cities in Japan today . I sometimes teach students Japanese and mathematics . In December I will have finished my university education : I will have a master 's degree of innovative activity management . This week , I have to concentrate my exams . I want to do a language exchange on Skype . But today was a rainy day in the Kanto region . It is because we can forget everything like the unstable economy . How about your company ? ? In summer quarter , I took an ESL ( which is an abbreviation of English Second Language ) class . I could see various kinds of people . I enjoyed peoplewatching heartily . There is an increasing amount of vegetarians in world . Other vegetarians think it is wrong to kill animals cruelly . This text is for university students , and includes econometrics . Japanese universities ' entrance examinations are very difficult , As a result of Judo training and my part - time job at an izakaya , I learned a lot of things which are necessary for my business . so student should have the ability to practice self control if they want to live good life . they pay amazing amounts of money for a preparatory school for entrance examinations . I am sure I wo n't solve this problem until I die . Although it will not easy , I should change my schedule . But I do n't know how to change my schedule to the best way . Could you give me some advice ? ? Do you have any bad habits ? ? The main activity of this circle is organizing what is called `` IW ( International Week ) `` . Let me explain , my university has some collaborations with foreign ones . I 'm sorry for long sentences . . . In which we 'll reach the heaven that exists My parents gave me some souvenirs , such as chocolate and vegetables . Thanks to them I can get by until the end of the year . After that , we dated few times and I was a little confused about our relationship . Then I found he is kind of arrongant and everytime we were together , he always complained about something . Fortunately , his skill was not that excellent and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) This guy , who wants his cigarettes , asked me to bring them to his house . However , there are still various hardships during this age . Two of their classamates saw it and then warned my brother . Fortunately , it has been already solved with a peaceful ending . I will go home to stay with my parents and eat some moon cakes . Although I dislike eating moon cakes , I enjoy staying with my parents ! The latest conveyor - belt sushi restaurants have / serve not only fish , but cake and jelly and juice . . . . . I 'll recommend lang - 8 to my colleagues . Recently we were challenged to become familiar with English in my office . Foreigners can feel uncomfortable when they sit on the floor while they have meals First let me introduce myself . Although I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an International college . Almost all of my teachers are foreigners . When I talk to foreigners , I am too nervous to express my feelings . My grammar is not good . So I registered on this website , and want to make some friends . I want to learn English and Japanese ( I 'm crazy about some Japanese idol ) . Last February as well I went to my parents house and met my sisters . On that evening , Yoshimi and I started to catch up with each other over some beer , as usual . Next time I 'll be more relaxed . I am a college student and my major is informatics and communication . many companies in the world record great loss After I knew this site , my English level seems to be developed . Thanks for Lang - 8 . Now , Korean time is 12 : 10 . I have a music skills test . When I was lazy , people were still practicing music . Through this process , their emotions changed dramatically . One of the targets of me of this summer is to make an album with my friends . I took a class about implied meanings in English sentences . First , `` If you think a seat belt is uncomfortable , you 're never tried a ? Pardon ? I want to learn English to study computer language and computing technology . I 'm Linda and I 'm from China . It 's a small town in HeiBeiwhich I 'm sure you wouldn ' thave heard about . poort - - all kinds of sport but mostly as a spectator . The sport I like most of all is Latin dancing . I 'll try any sport you suggest . I would say that my school has really beautiful scenery . In that Bahrom Education , we can learn how to share with others in society through philosophy , etiquette , religion ( specifically Christianity ) and the history of SWU and the class includes group discussion or performance and individual activity . The conclusion is that I have liked and will always like my school Because of some troubles , they are divided into two groups . I went to an open campus at Sophia University with my friend today . I heard over ten thousand people visited there yesterday . I have to study English much harder . In the book , the bad aspect was the plot seems provocative , but the good things were delicate description and accurate observation about the things all around us . I am now a memeber of the international sales department in a ceramics company . Now I have no customers , I do n't know what I should do . I changed my profile photo to a tiger . After 30 minutes walking , I felt tired . I 'm a stupid girl . Everybody dance Although , I do n't have to go to bed right now . One of my dreams is to become a good English speaker , so though having my English corrected on this site , I can become a fluent English speaker and writer . I will write in my diary once a day , because I want to improve my English ability . She did n't mentioned her age but I 'm guessing that she is 20 . I had dinner late last night , I knew that but the food was still sitting heavy on my stomach , I am a university student . I want to improve my English skills . I 'm wearing my favourite red dress and I 'm wearing some make - up . Sam and his friend James are true adventure travelers , and together the boys have done and seen some amazing things in the past year . It 's weird ! ! Then she said `` Yes , I am Idahoan . `` Well , how about a Washingtonian ? I got a perfect score ! ! ! I like movies where I can detect and solve some mystery about the main character , so I was not content with this movie . After I finished watching it , I searched about the content of hostel on the net . I got a call asking me if I could go to the cinema now an hour later after I finished watching hostel . Actually sometimes old eggs cause food poisoning for salmonella , Many japanese people eat raw eggs so the expiration date of eggs in a Japanese super market is very short , usually 2 weeks and the eggs are placed in a cool place . I love Xmas I always get 3 or 4 presents every Xmas . When it comes to Xmas . . . This is used in another occasion to socialize . The other thing I love about Xmas is the food . Xmas is way better than New Year ( I hate this one and I 'll tell you later why ) Whenever the blackout occurred , I browsed internet and logged into Skype and spoke with people in order to kill time . The prefectural governor of Tokyo said that we had to refrain from viewing the cherry blossom . I am pleased to meet you . He said that our direct business strategy was finished , so we must work indirectly . His said indirect business advocates more cooperation between a vendor and carrier . We will continue selling directly with vendor 's product or carrier 's service customization , but now we must sell service indirectly as well . to my client directly , but we contract vendors and carriers internally . S our company is a system integrator , so generally we have IT skills , but we do n't create any of our products internally . So I fell uncomfortable recently . I was dreaming of my ex - boyfriend . This is not the first time . I ca n't tell him because he has a girlfriend now . There are thousands of people who fluently speak Japanese and they are passionate about helping others . But , when I find positive things in my life , I become very happy I think its difficult growing vegetables . It 's often said that old people go to bed and get up early in Japan . Suddenly a hospital offered her work , and it was a good opportunity for her . I know if many teachers violate the law , my school will be in chaos . In Osaka , central prefectureKansai region , a famous manzaishi , Knock Yokoyama became the governor in 1995 . According to the Japanese government , 56 countries have offered assistance , but they are not coming yet . The Japanese government looks tired . I clicked it without any hesitation . I feel grateful to him and I enjoyed my first day using lang - 8 . Well , when I first played this game , I was surprised because the hero is only a civilian , but he kills innocent people for money . I really liked that ! It was little salty , but anyway except that , really that okonomiyaki was my stuff ! its really nice . yoga 's really good for not only the body , but also the skin and for relaxing ! You can make mochi in ten minutes . Spring has now come , but I like autumn because I get hot quite easily . I spent almost the whole day watching my favorite movie . Indeed , this movement which used to provoke debates has recently obtained a religious status un Spain . My life has been painful since they look it from me and now I do n't have anything to live for . Today I want to tell you the main problem I face when I speak a foreign language . The problem is that I forget words during speaking . Tomorrow and the day after tomorrow I am going to visit Miyagi prefecture in Japan , where there was severe damage by the huge tsunami that happened in the last 11 March . This is my first time writing a diary . I have been in the USA for business for two month . So please check my diary . Because , I ca n't speak English well . My English grade is the worst . Maybe because of Tadanali Lee . I am watching a soccer game on TV . I took listening and writing and grammar tests , I won the first prize in my class , But I wanna keep her as my customer . Am I a bad character ? Yo quiero dormir I wish to visit United States one day , my teacher said it is a cool place , I want to go to disney too , but it is too expensive , I have to work hard first . I 'd like to know about their culture , well our cultures do n't have much of a difference I guess . . . I have not exercised for almost three months , because my daughter was born three months ago . + Mazeltov ! + It is not healthy , so I have to exercise and lose the extra weight . I went to a convention hall today to attend a conference which was hosted by a Japanese Internet company . Later I want to work with groups like UNICEF , World Vision or Good Neighbors . People catch them with paper dippers . Anyway , I held blind date for two , and I did n't know there was chemistry between the two . I have 2 jobs , I 've had them for2 and half years . Because nursing home 's salary is low and I have time before , I started mypart time job . There were many families and kids when I arrived there . I do n't mind because there were enough strawberries to fill my stomach . It 's white , little and cute . So , I will try to listen to one episode a day . We will go to Wenyi Street and buy a lot of clothes , shoes and so on . I want to study but I do n't know what to study for and how to study . His act was illegal of course , but is it so serious a crime that investigation of his house was needed ? I had a plan that I ran for 5km and did biked for 2Km . Muu , I do n't want to be in a world where I ca n't use Twitter and Facebook : ( It 's usual in Japan , because there are rice cookers in every house in Japan . This morning , we took pictures at a photo studio . Of course , grandparents had too . I bought a new Windows PC for my mobile last Thursday . Today is Wednesday . I 'll talk about Iceland . There are a lot of things in so many ways that differ from what he or she is used to doing at home . Iceland is different from others countries in the world . For instance , there is no pollution . Dogs are not permitted on the island . And there is no army , there is only one jail because crime is so rare in Iceland . Even though they do n't have good teachers there , they can speak English very well , but how can people except much from teachers who ca n't speak English fluently , though they can speak better than the Japanese . But today is the first time to use this website , so I want to write and share something . That 's the English test as it is called . He is one of the most popular authors in Japan . It is difficult for me but I try . But it is obviously dangerous to ride on a bicycle on frozen ground . Good Morning ! Even though BP 's best was not enough , we should try the WORLD BEST . Yet , the weather forecast said it would be snowy today . We usually start to study English in junior high school as compulsory education . The lioness are in charge of hunting during day and night , and protect the young lions . The lionesses usually stay in a group all their life , but the lions often change their living place . And beat the swine flu before you infect someone else ! ! I 've prepared power point slides for a presentation , written a resume , etc . In Japan , it is very popular that girls wear it in a fireworks display . It is said that girls who wear a YUKATA are twice as beautiful as when they wear usual clothes . Therefore , I became nervous when my girlfriend wore it . They lived in rarely visited areas and made hanging bridges over the The bride 's friends usually put the henna on their hands and her mother must pay for all the women who want to do their hand . * Tones the thigh , calf , and hip muscles . Today we drove around the city . First we went to Tanba - Sasayama city and saw the fossil of the dinosaur in Hyogo Prefecture . So I keep on studying ! In July I 'm going to London to work and I 'm a little thrilled , because I do n't know whether I 'll manage with my English skills . The relationship which has no development . It 's nothing else than a program which displays us the flashcards and makes sure that we are learning them . You may also ask , ' what the hell are the flashcards ' ? After 3 hours of driving , we arrived at `` Myrtle Wave Water Park `` . We were disappointed about the appearance and the size of the water park at first , but we started enjoying the slides . Calavacy ? [ ? ? ] ( anyway ) which is a kind of seafood fries is the famous dish in Myrtle beach . I just smiled at him , pretending like I wanted to learn too . Fourtunately , the waitress took us to the table when I made eye contact with him . It was a very embarrassing moment . Trouble with new security software I went shopping with my daughter and mother . It was my daughter 's birthday , so I wanted to buy anything for her . I bought two white blouses . One is for me and the other is for my daughter . Then we had lunch . My daughter said that she had a great time . Do n't even have the strength to go prepare myself tea . . And I am really looking forward to the day when I got the passport and a letter of admission from a good school . Yes , it 's true that all of everything is one of true love . True love is just to being yourself . I 'm applaud all of them . Indeed , today I had to research the program of going to India and decide which project to do . I think an India project is good because of its flight cost and the language people in India speak , english . The first man is a famous comedian who is famous for his unattractive face . Well , laughter is the best medicine . . I have half a book to finish . When I 'm finished I will know the basics in Photoshop and be able to enjoy using it . The weather as well as my feelings is bad . I have had a bad headache recently , so I ca n't easily think inother languages . I want to be to writing fluently and quickly . . . But I did n't want to because I do n't have money . Please teach me what that means . I tried to hum the rhythm and the lyrics to my friends , andnone of them knew the song . I ended up using `` I 'm Yours `` by Jason Mraz . It ` s interesting to study English . I think American culture is so boring We have a problem about our equipment in our project . At the moment , it is necessary to make a special A - frame to support the Long shaft , weighing about 13 . 6 tons . We made a draft drawing and sent this drawing to our Design Department to calculate the the size of the beam for fabrication . Request scaffolding above the vessel . Like I wrote earlier : out of sight , out of mind , so I 'm seldom irritated by my hidden rubbish dump . XD Ironically , some things I discovered in my cupboard were literally ' ' out of my mind ' ' . When I found particular things , I did n't even remember I had thrown them in my cupboard ! ^ ^ ; I discovered all the drawers in it were full of old stencils , notebooks , exercise books and other school stuff which I no longer needed . If this is what you want then everything will be over ! As you know , this movie made us experience adventure indirectly . However , that I spend time talking about interesting topic is hard to do . I got a job in a travel agency and I was a student on the weekend With the start of a new year , cherry flowers give us a pleasure of spring and an exciting feeling of a new year 's beginning . They thought it would create a positive economic impact . I really enjoyed her preformance However , he never got even one rabbit from that time on . I 'm a student and 24 years old . My first reason is because I think life is colourful . Well , not for me , as I 'm atheist and therefore I 'm not going to church or going to pray at the cemetery . Yesterday I found a terrific site on the Internet . I took the TOEIC test on 29th Octorber . I am confident my broad - range experience and achievement in sales and marketing divisions . We 've already booked the flight and the hotel and now we 're choosing what to see . Language practice All this time I have been working , building and speaking with my foreign friends . But these friends are all students and they ca n't speak with me very often . I find friends for speaking on ICQ chat or Skype and if you want , we can meet in real life . Every night I see him in my arms but when I get / wake up he disappears like a memory of himself . We went to a Japanese syle restaurant , we all ordered pork chops , it was very delicious . they were soooooooooooooooooooooooo bad . . . . When we wash our clothes , we hang these clothes on a clothesline in a corner of the garden . They are so cute and mysterious . But the fact is that I did n't buy a ticket , and going back to my home for the holiday will just be a dream . I want to comfort my close friend because the one she has loved All I can do is to give her a phone call and say ' Hey , I 'm here . ' However , I know it is totally different between It 's really a lonely world . I will travel to Hawaii in April . The famous pancake restaurant is called `` Eggsnthings `` . My friend gave me some vegetables yesterday , such as : eggplants , green bell peppers , and corns . I 'd like to talk and debate with my kid in English in the future . I do n't think I could eat it again for a month . I 'm worried that I 'm getting fat because I put sugar and milk in coffee . After graduating from junior high school , I joined Japan Air Self Defence Force . I have decided to make use of Lang - 8 to improve my english ability I am shocked One friend came from Pataya , where he works . He came with his friend We went to the karaoke together before going home . My other friend is from France . Another friend used to pracice English with me . He helps me learn English so at the moment he pactices English a bit . This was the second time that I have climbed it . While climbing , it rained and we walked through sander ( ? ) cloud . Strictly speaking , it 's different , so I think they should have taught it properly . You can probably watch such lives in American family dramas . And in such HCs , they conduct commissioned business on the DIY works of customers by requests from them . I 've just finished writing the lyric ! Please read ! If there 's a new horizon to pursue , I would write verse two E : People do and I said `` given ( that you do ) `` , you dumbo . E : Given that you were not my girlfriend , I would 've broke open your head and scooped up ( out ) a portion of your brain for my research . In language , speaking , writing , and most importantly listening . I will try to listen to your voice I found a new way to learn english by watching videos with double subtitles . MS has different symptoms in each patient like visual dysfunction , smell disorders , facial paralysis , vertigo , dysphonia , sensory problems like pain or paresthesia , paresis of different parts of the body like hands , or feet , or even a half of the body , etc . MS can change a person 's life very deeply . Every family is preparing yummy food and other things for the festival , nearly ten days before the festival , people are busy shopping for things , which includes chicken , duck , fish , meat , tea , wine , candy and so forth . . . . . . everything must be prepared . Also we need to get some special gifts for other relatives and friends , parents will buy some new clothes for their kids , kids like to wear new clothes on that day . The Lunar spring festival also has another name called `` guo nian `` which means to come through the new year 's day . During ancient times , `` nian `` means a monster that can bring bad things and bad lucks to people . If `` nian `` is coming , everything will not go well . When `` nian `` has passed everything will go well . So how could people come through `` nian `` ? We need to use fireworks to get it out of here , it 's also another way to celebrate this popular festival . moreover a bus arrived 20 minutes late . How is your country 's weather these days ? I really liked dinosaurs when I was a child . I often go to a climbing gym every weekend . I have not been to a climbing area in the mountains . There are several words on the Web , such as tofu jelly and bean curd jelly . By riding on the bicycle , every scenery of the city seems fresh . Have you ever usedFacebook before ? com , facebook has both positive and negative effects on people . You can find a photo that had been taken by a witness in the following attachment . First of all , I think children should have cell phones as they are important for security purposes . Second , I think using cell phones on puplic transportation should be banned because it sometimes creates trouble for people especially old people who have electronic implants in their bodies . I need to use my time well to practice my English ability . After the earthquake , I found consumers ' consumption behavior changed . If possible , I want to learn french or italian or grammer ^ ^ The daughter is about 25 , and her sons are two and three years old . I want some advice on what souvenirs would be good to give each person . Hopefully / Hoping to escape from stress . When I was coming back to my home , I met Lawrence , who is my friend by chance . Last week I did a presentation in which I introduced an article for our major . I played the guitar , I sometimes played the fiddle or tin whistle . If you are interested in it , please try to search it I on You Tube . My name is kKaoru . I 'm an ordinary jJapanese high school student . I often make mistakes in English and I sometimes feel embarrassed when talking to foreigners . Today ` s test was a total mess . Television has so many funny programs that they watch television instead of talking with their parents , and they can get addicted which means they have little time to talk . I like Disney very much , and she knows that . Moreover , it was hot today . Today , I talked with my friend who is worrying about love . I completed a kind of figurine at last . I 've studied some languages . Chinese , English , French , etc . some were at school , some were with friends . Because of this , I can not speak every language I 've studied in the past . Chinese and French pronunciations * are very difficult , especially * Chinese . I found solace in some heartwarming words in which people overseas praised the behavior of Japanese people : There was no panic , nor riot ; They behaved calmly ; They gave way to each other ; Many people gave a hand to strangers in need . I went to a Japanese Restuarant with my younger sister yesterday . Personally , I do n't like sushi much but it was delicious . I want to say `` thank you `` a million times . I did n't even realize the cough drops made my stomach worse . We ate sushi and after that drunk ice chocolate , so now I 'm very full . I decided to take the fourth trial of GEPT . I feel like improving my English skill more and meeting many foreign people . My hair is like this photo . Is n't it a weird system ? This does not make any sense at all to me . Gradually , her body weakened , and she hardly spoke a word . My Aunt said that she was sorry that none of Grandma 's family were able to meet her before she died . The doctor said that I have an allergy to water from indoor swimming pools . I am an overseas marketing representative of a lighting company . To my sadness , villains certainly do exist in any society . There were lots of toppings on it and it was so good ! I envy him because I wear contact lens and it is a big bother for me to maintain it . By the way , I really have to study English earnestly . The simple things are the best things . I saw a beautiful foreign woman 10 meters ahead at Ikebukuro yesterday . I forgot that I was wearing a mask on my mouth and a sumo print T - shirt . I do n't know whether she was smiling or laughing , She was only laughing or smiling at me but I had a nice opportunity ! I ca n't talk with a foreigner when I am alone . I 've just bought my new headphones ; ) I must admit , the sound is far better than my previous ones . Some friends call me `` a English newspaper - holic . `` Despite the fact that I had a hangover yesterday , I went to go to Roppongi Hills ( in Tokyo ) to see a movie with my friends early in the morning . The day before yesterday was my friend 's birthday ! I like American TV Drama . . Gray 's Anatomy , Desperate Housewives , 24 , LOST , Criminal Minds ( I love Mattew Gray Gubler ! ) . My Friends ( One is Korean , Another is Chinese ) are more informed about Japanese TV Drama than me ( I 'm Japanese ! ) . After watching the movie , we took pictures . My friend who is Korean had many color pens and cute seals to decorate the album . After making the album , we ate ice cream . I think that I want to eat Cold Stone Creamery 's ice cream every day . I bought the Citypass in order to visit the ROM as the Citypass was cheaper than the entrance fare at the / for the ROM . I always pursue my goals . I want to use more natural and native like expressions instead of awkward ones . I drew him a still life , landscape and an act picture . Igot out of bed , and opened the curtains . I fell in love with Robert Pattinson ! But the first time , I did n't like him because he was cold to the heroine and other characters . Today my computer is broken , so I did not write my notebook , I have many things I want to write but I am not good at english , I am a student and I am studying about fashion dictate , . . and today I am a little busy , because we have a exam and it is about english . ihave lost my confidence in my english . . . . . the future is grey I 'll eat foods that have a lot of dietary fibers , low calories , and healthy , For example , konnyaku , wheat , tofu , etc . Inconsiderate and racist closed captions in `` The Tonight Show `` I am a cook , but I am also a student a university . I want to improve my English skills , so I am writing a diary . But I have nothing interesting to write . Boring courses and endless homework make me feel ignored . As is often the case with many animations , they have their original sources ( such as novels and video games ) which carry messages from the authors Toyota Motor Corporation , which is situated in the eastern part of Nagoya city , was an economic leader for more than _ _ decades in this area . I have studied English at a certain English school in Nagoya . I should give up studying about prosthetic limbs in Japan . I had a conference at the office yesterday . Since / Because I caught a chill from the air conditioning during the conference , I felt worse . For example cucumbers , watermelons , eggplants , potatoes and so on . I have n't written my journal for one month . Of course , I do not like typhoons . I think young and healthy people should give up their seats to older people or pregnant women in trains and buses . Honda 's shooting and assist were so wonderful ! ! ! I went into various kinds of sports : It is special kind of dancing . My mother made my favorite dishes : ear shell soup , duck cuisine , etc . I was full in the stomach and empty in the head . ( ^ ^ ) After shopping , I dropped in for a cup of ice coffee at Starbucks . Learning Portuguese I noticed that Portuguese grammar is more similar to English than Japanese . But they are also a little different . I sometimes can understand it while / by reading , but I ca n't write and speak it . I still have n't studied writing and speaking . I 'm embarrassed to say it in front of you native English speakers but I am teaching English grammar as a part - time job . attached is my curriculum history for futher Information . I searched the internet and found an interesting page . If you have interest in Japanese and have time , you should have a look at this page . Because I 'm poor in grammar . It has taken shape under the influence of the social cataclysms of the 20th century . My friend give me this website . I think it is a catharsis for them . However , I can not understand why an 11 year old boy chose to commit suicide . business streets during holiday We are in our winter holiday , so I went to see the business streets without workers . Well this is enough for today . It 's delicious ! ! ! Frankly speaking , I make this desion with worries and hesitation . I listened to a free public lecture in Topaz hall . He gave a lecture on the ' Challenge toward Excellence ' He is only 31 years old but , he has had a successful career ( related to / in ) international organization . and I felt encouraged . If I could write english well I could have written in more detail I 'm interested English , Spanish , and Italian . That has made me want to be a flight attendant . If I use the wrong sentence please tell me the right sentence . Nothing brings you peace but yourself . The best way to predict your future is to create it . Recently , I have been interviewed for jobs in China . because you are japanese , you can get huge income . Do you know what foreign accent syndrome is ? My name is Bianca , I am Japanese and I 'm studying at university , I am studying English and little bit of Spanish . My hobby is walking around at a park , shopping , and karaoke ! Christmas is almost here . . But I think to go on a trip on Christmas is good idea , because you can enjoy illumination for Christmas at other places you have never been and also sight seeing . I think this is different from English speaking countries , right ? sometimes we laughing , I might make a lot of mistakes . I was surprised by my friend in the UK on Skype the other day . Actually , I cut my hair in the front by myself . I said to my boyfriend . There are many children who can not apologize . Yesterday , I read an article about `` Lang - 8 `` in on the Internet news . It was very difficult . I am disappointed by my English , but I can ` t give up my objective , so I believe I can improve my English , and absolutely achieve my objective . Anyway , I have been writing English essays recently because I need to write one next February . I could communicate with them , but when they got drunk , I could n't communicate with them . My English is very limited . I boiled water after adding salt , then boiled the spaghetii . While boiling the spaghetii , I sliced two pieces of garlic , cut a chilli in half , and minced some parsley . I put some olive oil into a frying pan , and fried the garlic and the chilli over a low flame until golden brown . I removed the garlic and the chilli from the frying pan and added some bread crumbs . For instance , if you say something like ' long time no see ' if you want to greet your old friend , because I 'm working at foreign company as a member of HR department . In that situation , I thought he was insane and very crazy . He said , `` Maybe Jinwoo comes to school at 6 : 40AM . `` Breakfast ? I just did arrangements around my desk so calmly and looked around in the class . Whoever I am , it 's unavoidable to taste bitter feelings , is n't it ? I like to play video games . Yesterday afternoon , Dave prepared to join a baseball game , but I went to Tokyo Disneyland on September 13th . I thought there were not that many people . I was invited by a friend who is one of the hosts . After that , we were explained I want to have more opportunities to communicate with others in English . I am a beginner , but I will work hard to master communicating in English ! It is very good for their English . but actually , I do n't have confidence : - ( While talking with her , I realized that I prefer to hesitate first and then act . Here is one example If you get a brand - new thing ( some kind of accessory ) for free , do you always use it right away or wait until later ? If you sayYes , you 're a person who likes adventure and lives now ! Umm , , , I ca n't make long sentences : ( but only me and one other had / got 100 % Additionally , I would like to help people in need concerning Japanese ! I have to research about things to do in China . A complaint letter ( Writing Task 1 in Cambridge IELTS 1 General Training ) I feel so glad that can improve my written english this way . And thanks to the people who accepted me as their friends on this website . I will write something on this website and also deal with some of my friends ' problems when they learn chinese . We can help each other this way . Meanwhile , I also want to communicate with them . So if anyone sees this diary and also feels like they want to communicate via MSN , my msn screen name is honeyan @ live . cn . He hit his head hard on the ceiling and got a concussion . My Vietnamese Mamma Many people tell me that I 'm crazy because I 'm studying Japanese . `` Japanese is a difficult language `` ? I am really studying Japanese , and it does n't matter what people say . First one I met , I first met in Los Angeles when I was in second grade . We went to a lot of sightseeing places like Disney land , Universal studios , Hollywood and so on . Recently , CO2 iscausingacid rain particularily in Europe . As a result , forests have been injured . For example , the higher the global temperture is , the higher the sea level will be due to melting ice , as a result , some islands will sink . Of course , people who live on these islands will have to leave their country . For these reasons , I believe that thebenefits are outweighed ( outweighed ) by the negative impact automobiles have had on the environment . They have lived in Melbourne ( for ) about 40 years . I bought a wine - coloured cut and sewn . I have been seeing him for two years and three months . I will buy a Christmas present for my parents next Thursday . I read some comics and played video games . During my business trip on Wednesday through Thursday , I found a cute cake being sold at Marui ( department store ) . I bought two packages impulsively . We are keeping touch since 2007 and he would help me make other canadian friends through Facebook . It is said the flapping wings of a butterfly might create slight changes in the atmosphere , and , thus , ( it might ) change the path of a tornado or prevent the occurance of the it . It 's much like a metaphor which can be seen in movies as well as in our real lives . No one knows what will happen , since we 're not fortunetellers and ca n't predict the future . One of my friends called me this evening and said , `` One of my friends in high school has died `` . It is difficult for me to accept that , even though she was not one of my closest friends , she ( always ) let me copy her homework before exams . I used to go to her house , where we liked singing ( songs ) and ( ? ) shipping ( ? ) quite often . I did n't expect her to leave from my life soon like this . I feel sad . I used to cook thai food with her , like pudthai . we were really happy to do it because I told her that I could n't cook anything except an omlet . Also , I ate the expensive food at her house because we bought a lot of thing for that , you know , thing near her house . It is really expensive but on that day , we did n't care . But , we cared about whether or not we could eat the food , because maybe it would n't not delicious . I just didnt have a chance to use it . So , I registered and wrote this . I have n't spoken in English for a long time , and I know little about I really do n't know how to improve my English . I have found , so far , that this system is potentially very beneficial for me to keep posting entries , especially since I am having a hard time keeping daily updates on other websites such as facebook and so on . I am not saying that lang - 8 is better than facebook as a SNS site , but this might be a system that suits me well and it encourages me to continue learning on a daily bases . The 5th day , Gymnasium But I think that practice is very important . You can make different friends there , speak a different language , the most wonderful thing is to share your own culture with others . I know I am not that ambitious , and always have the tendency to doubt myself . I want to improve my English ability and gain more teaching experience . My idea throuhg my experiences is that the brain functions more efficiently in the morning than in the evening . Noboribetsu Onsen is called ' ' Onsen paradise ' ' . This is crazy : ) Second news : now I learn English , but my work sometimes eats ( takes ) time from learning : ( Third news : I am preparing my photo exhibition , but I do n't have ( enough ) time for it ! I have learnt English for a long time , but I can not express myself freely in English . Language environment , frequency of usage and not persisting in studying may be the reasons why I can not make further progress . The first thing to do when I got up in this morning was to search for the result of Classico , a match - up between Real Madrid and FC Barcelona , on the Internet . I predicted Real had a little advantage considering about their recent performances . I was planning to have an English meeting with my colleagues before I actually entered the company . We , the new faces are all hired as English - speaking sales representatives , so I thought it 's good for us to talk in English together to keep our English skills up to a good quality . I talked to Hayashi - san , a female co - worker who spent her high school and college days in Australia , about my plan to hold the meeting every weekend . I will talk to them and suggest that we have to prepare something to discuss beforehand . Premarital sex is becoming widely embraced in Indonesia nowadays . Those parliament members are prone to polygamy , adultery , and corruption while they talk about how immoral the youngsters have been . I went to a restaurant to eat food . Finally I finished writing my resume tonight . It was so difficult for me to write it in English . It was already more an half year that enrolled in this website . Unfortunately , it does n't make sense to use this website . I hope that there 's somebody who makes me understand and guides me through this strange world . My husband said , `` I am being transferred to Hong Kong `` . Everything is very interesting and unusual for me . The test I took consisted of 2 parts : listening and vocabulary . According to the test result , my listening skill is in the upper intermediate level , which means my listening level is getting better than it used to be . Which verbs may I use in the above sentence ? The reasons why I study English I do n't want to stop challenging something . I have lots of things to study about English , like grammar and vocabulary . I walked I was in the Botanical garden on Wednesday . My excursion was really interesting , I did n't know that the Blue Spruce arrived in Russia from North America , for example . Up until now , I have worried about my English too much , so now , I have decided to go to the US . Sumo is the traditional wrestling of Japan . I often watch Sumo matches on TV . Yesterday , I helped my friends write compositions until 3 am . So I 'm so tired today . I saw a scene when a person threw his cigarrete to the ground from the window of his car . Actually , my English is terrible . I have been taking an English class for about 1year . Many people who can speak English fluently are introduced in the book . Or I want to sleep more . I made some new friends there and talked to them ! ! So I will give him some tomorrow morning . I got him smiling , so I became happy ! I heard that 3 big torched stages will be on Kalakaua Ave and there will be lots of hula shows for 4 hours ! Actually , I 've been going out with my girlfriend ever since my practice teacher time . on a snow - covered ground Sakuras have begun to bloom . There are many people today at the entrance ceremony . So I hesitated to go there , but today I dare to go because the weather is good . the place where the shopwas built is inconvenient to customers . Today , when I came home , My son had already come home . The eleventh issue will be released in Autumn next year . In addition , as many Asian countries surpass the hurdles for a developed countries ' tourist such as sanitary devices , etc . , it is getting more and more difficult to attract foreign tourists by ethnic and historical taste which is one of strongest resources of Kyoto . The other day , three of recovery workers in Fukushima nuclear power plant were exposed to radiation . Although there is conflicting information , I was dissapointed with its management system . Doctors tried to save her , but she was injured very badly . Fortunately , he has admitted that his clothes need a little bit of updating . I work at a cram school for elementary and junior high school students after school . If you like mathematics , let 's try it ^ ^ Recently , I read a book that introduced a lot of English - practising . It looks three dimensional with special glasses . This is my first journal in lang - 8 and I dont know what I should write on this page but I 'll make an effort to write something and I hope it will be useful for me . I then discovered that my pronunciation is bad . I love Hawaii The island is so wonderful , and from that time , my dream has been to live in Hawaii in the future . My major was psychology and I also worked at the university . The people around me are very nice . But , I want to study English . I want to talk other people and learn about their cultures . I began this trial last week which made my living costs decline rapdily and also make me eat healthier . For instance , when I watched South Park , which is a famous American anime , there are many words that I ca n't distinguish . ( Not only slang . ) So I 'll try it with an accompanying CD of a English dialouge textbook . In college , there are many books , laboratories and professors . It is fun to dance 50 minutes , so I want to get slender body as soon as possible ! ! ! ! ! ! ! ! ! ! ! Actually , I have decided to go and work in Australia during holiday . If you speak English and maybe are interested in Russia , or Russian language I guess you 'll have something to talk with me about . It 's our favorite park these days . He played there for 40 minutes , then we went to the area to play with some small cars . It became the time to eat lunch , so we went to arestaurant near there . He knows panda and pig before I even noticed . I 'm a college student in Japan and will go to Vancouver this April . So , I want to improve my English grammar ! when you go to various countries , you will learn more about your country than about those countries . However , this does not neccesarily mean that people in rest of the world live in the same way . I like to play guitar . I have been playing guitar for 2 years . My family has ( * or consists of ) seven people and a cat Reo . I will try to write about something interesting tomorrow . and I asked to check out two books , Today there is no school , because it 's Sunday . But my sister sometimes make an anonymous phonecall because it 's an company charge . I 'm so happy : ) and shopping is exciting ! ! Today , I made a manuscript for a debate tournament with my friends . I belong to the debate club at my university . In the Roman circus , one of the most popular sports was performed by a person who leapsaround . She was obliged to vow openly the she had been there . My company sometimes holds farewell parties , Christmas parties , year - end parties and so on . The restaurant next to my office holds a promotion that we can get free drinks for an hour for 10 people if the business card we drop into the box at the restaurant is selected . My friend was very tired because it took a long time . I have decided to stay with an Australian family . I want a lot of information . A crossing in this city may be very surprising for foreign people making a trip to Sibuya for the first time . I repeated NPR news out loud by reading a transcription . I have to practice more ! I will graduate in 1 year . Looking good ! we had an opening ceremony in my school and I must study hard to I am a professional wrestler I 'm available on Monday . Now that I know about this , I believe my english will get better . I heard the grade of TOEIC of Taiwan citizens was lower than Japan , Korea , . . . . So would you please share your experience of learning English or another language with me ? I do n't know why , but I overate snacks . . . . The time of writing a diary has gradually shortened . For example , my job starts at exactly 5 o ' clock and it takes half an hour to get there . We are trying to speak solely in English during the meeting . Tomorrow I 'm going to dubbing in Maldives . However , some people will keep studying languages as long as they 're not losing their interests and fondness for them , even though there are many barriers to learn them . attend : I decided to attend the language school in Umeda . occupy : In this company , women occupy 60 percent of the excutive officer positions . concentrate : I was scolded by the teacher and told to concentrate on the class . persue : Humans have been persuing the truth , but only few people have found it . Hopefully there is someone who can help me . Although I had made a studying schedule , I am way behind it . But fall was coming towards us in silence . Fisrt , I want to take a city - tour bus around Seoul . This website of course allows me to keep practising English , but only my writing . I 'll write my french `` hello post `` later - I have my head full of english now due to my work and I 'm not good at `` switching languages `` yet . Today I practised playing card magic . Actually I did n't exercise yesterday , either . This is the first time we have lived far from our home so we are feeling very unhappy and miss my family so very much . Especially , I miss when we sit to eat together and when we play something together . All students that study abroad say they have the same upset feelings . That is , they miss their family when they have a celebration and they always want to go back immediately . I guess that famous people can permit themselves strange things which become elements of their style . - sugar , 1 - 3tsp - Put mint leaf , lime and sugar into tumbler . Every morning I go to Starbucks coffee at 7 : 30 . Hello ! ! Because I thought that having a big room could lead to an expansive life . I have not done much exercise and have drunk and eaten a lot . Disney and Japanese animation 's characters are illuminated there . I 'm learning English to communicate with online people . Please check my sentence , and pick up my mistakes . I are breakfast and went to the library to study English , but I coughed so many times in the library that I went back home at around 3 : 00 pm . How Will I Spend My Spring Festival January 1st on traditional Chinese calendar is Spring Festival . I hope these could come true . I do n't think I 'm contacting him until he contacts me , because this reprehensible audacity ( ! ) has made me all sulky . And I 'll also help other Chinese as possible as I can . I planted sweet potates last Sunday , I also planted cucumber , eggplant , tomato , corn and watermelon . I 'm looking for big harvest . A certain research center designated night time work a second degree carcinogen . Tell you the truth , a cutie was sitting in front of me and I wanted to pretend that I was studying . . . Everything is beyond my imagination . Usually my landlord notices me when the visitors are coming . However , somehow my landlord and a visitor came to my room without notice . . . ! ! But , how could the landlord and visitor know about a story of Gachapin ? This makes me confused because I feel he 's like a little boy but , I 'm gon na leave my country to go to Canada in 2 months . We did n't talk about these feelings but , someday I want to have a the time to talk about it [ with him ] , but I 'm scared that it will change our relationship and feelings . When we see an old couple jogging together in the morning , they look happy . I made cake of moccha for my mom and gave card from me , dad , and my brother . At the seminar , the instructor said that Japanese tend to feel nervous or tense when they make a presentation for many listeners . 3 ) It is unusual even for Japanese to speak with highest honorific grade . `` I got a lot out of the experience . `` `` I got a lot from the experience . `` ? I have only simple sentences , and vocabulary . Please read my sentences , patiently . Some people think that they can learn better by themselves than with a teacher . Others think that it is always better to have a teacher . Which do you prefer ? Actually , I 'm studying Microsoft Excel by myself using several exercise books right now . However , the most difficult thing to study by oneself is continuation . We can learn passively while being tutored and it 's easier to start studying . But I decided to get a new notebook for my convenience . In addition , Japan was the winner of women 's W - CUP football today . ln order to get rid of my bad luck , l 'll get out of school and have fun with my friends this weekend . The first time it was a German guy , he had been seeing a russian girl from Sankt - Petersburg before our conversation , but they had down split up . We were talking about different writers and he mentioned Bulgakov , I said Bulgakov is a Russian writer , he was surprised and asked me `` Really `` , I answered `` OF COURSE ! ! She 'd been learning for 5 years . Despite this resistance , I wasted 4days and about 5000yen . . . . `` Pirates of the Caribbean : On Stranger Tides `` was exciting , too . I go to work by train and walk for an hour . I do n't like the train because there are so many people on it . I think that it is a good thing for children , however it is bad for adults . This story is really sad and breaks my heart . The pitches are written in fret numbers , so tablatures do n't show musical ascent / descent very well . Eventually , I stayed with my friend . Over 30 people came to the Christmas party , it was lovely ! ! Wasabi is Japanese horseradish . I plan to go to Germany for a business trip in June . I am in the brass band Is there any language course from April to August 2011 before I enter I want to have many friends throughout the world / all over the world . Kate has her dinner in a school canteen . Since I 'll stay my home for two weeks , I ca n't see my dormitory friends during the term . At my university , freshmanhave to choose one of these courses for the next year : literature , intercultural communication , linguistics and international relationship . I bought a chicken and rice casserole , pasta and iced tea . I like to eat spaghetti . I do n't like hot weather , neither do I like cold weather , but if I have to choose one of the two , I ( would ) choose cold weather . I took a picture of the shrine and the sweet called ringo ame , or candy apple . My wardrobe needed to be tidied up . I go to the lessons every Sunday . But finally I found what I exactly want . and I just wanna learn more foreign languages , I want to be a translator . Besides medicine and injections , what methods can help cure a cold quickly ? actually , I 'm not good at speaking and listening to english . . I will plan a weekend schedule . in the Afternoon I will be watching movies at theater , and eat dinner on a newly - opened restaurant near to it . Sunday is my classmate 's wedding day , I will attend . What is the difference between present perfect and present perfect continuous ? I am a student , but I have a job as an instructor in a fitness club . The members of the FIFA World Cup were announced . Today , we had an English class and watched the drama Full house . So everyday I look fearfully at the scales . One of my colleagues said that if the suspicions and misunderstandings about the conflict become amplified , a war will inevitably happen and our country might be dismembered into several small countries . If that is the case , I will have to apply for a passport when I go back to my hometown ( which is far from my workplace . . . ) I hope I can have more opportunities to practice with native English speakers . I thought that I should be careful when driving my car on ice . It 's very cool and comfortable in summer . I will see many animals in a famous Zoo and do horse trekking in Hokkaido . It looks so modern . Most of the vehicles in the parking lot were cars and scooters . I rode my bike into the parking lot and I asked the guard loudly and dignified , `` Excuse me , where can I put my bike ? `` . Well , I was succesfully on the first step to being special there . Finally , I found the most appropriate position for my bike . Still having confidence , I went to the stand , and after obtaining my money , the bank teller asked me for the receiving fee . It took a few minutes to collect all the small change in my purse . A heart that is always waiting for you and satisfies with your love . This way reflects an indemocratic face of America . Oh , America . If you call for respect of human rights and human dignity , why did you throw Ben Laden ` s corpse in the sea as if he was an animal not a human being ? Second , I decide to research literature for my theory 's title with my Finally , I want to work on improving my oral skills and not being nervous while I am reporting something . I was surprised at how crowded it was . I should study English very hard . It shows a theme park , hamburger , cellular phones and Coca - Cola . Surprise ! The new room is wide and clean . I apologise if some of you feel offended , it 's just a linguistic possibility that crossed my mind this morning . He said a drunk person lost consciousness ! I told him the address to another hospital , because my hospital does not have a CT scanner . I did n't want to watch the concert standing , but I could n't watch comfortably sitting . The door - to - door parcel delivery is ridiculously expensive , but I have no choice but to ask them . It 's been a long time since I had wrote before . . . . Once upone a time , there was a man who had worked hard everyday , all the time . One day he caught a cold . His illness was not bad , but he could 't stop his nose from running . After a while , finally , He came up with an idea . he looked up and just stared at the fluorescent bulbs on the ceiling , because he was working in his office . 4 , The plan was executed as originally scheduled . Momo is so smart and popular among dogs in the neighborhood . It 's so expensive . Despite that this book was written about the devil it is the smartest and the most amazing book I have ever read . This scene is describe so detailed , it 's like the author was there . Recently I watched a TV - programme about Bulgakov and found out how he wrote it . His wife wrote it from his words . about photograph . I Especially Iike the kappa sushi which is a Japanese high tech sushi shop . He noticed us and he performed with melodramaticly for us . I had always sent the picture from my computer skin to her becasue I ca n't answer her question since my sister bought the computer I never had to ask her about speck computer . One of my friends came to my computer 's control by using some program to help me check my computer . I did n't know it had that program , and I am really surprised how he did it . Now my senior is looking for a cheap airline chiket . This week I talked to one of the members of the English practicing club . However , this morning I went to my office for a little work . Thus , the festival was really excited . And I had lunch at a ramen shop with my labolatry members . I got ta go to the fiesta again tomorrow . I you have time , come to the fiesta . Please look at this sentence below . I do n't want to face a grammar book every day ( it 's so boring ) , and I do n't think it has a good effect on me . This is my first diary on this website , so I ' , m kind of nervous now because I am not sure if someone correct my English or not . it is a good night I am in the computer , my family is asleep beacuse is late at night ! ! . . . It is 5 minutes walk from JR Himeji station . I will work as a translator . I hope I speak Japanese and English as if it were my native language some day ! ! So I went out to meet one of my ex colleagues . The cherry blossoms of the spring came little bit late this year , but the mood of spring always makes me happy How about you ? According to the unofficial information from a friend of mine , who is the finalist of the former astronaut selection , the authorities will give the examination every ( ? ) 2 or 3 years for some reason . People have trouble finding jobs and they end up becoming homeless , so the government needs to help people to find jobs . The other is to try to prevent homelessness by providing accomodations , such as hotels . Organising medical charts I have a lot of thing to tell you about my hometown but I scare you correct my diary for a long time please let me a bit to tell you while I stay at home and write my entry . I do n't have that much to tell you , but when I went to outside I have a lot . . All the people do agriculture and take care of buffalo There are lots of beautiful mountains in my hometown , like ZiJing mountain . We live nere ZiJing mountain . I 've just added the Lang - 8 to my favorite list . Happily , I do n't have a fever . So , I went to the English speaking Salon in school and I spoke English . But I have difficulty speaking correctly what I would like to say . I watched what was happening in the northern area on the tv news . Now , not only Japanese but also people living in abroad worry about the effects of radiation , but do n't worry . We got up at nine o ' clock and took breakfast at a restaurant in the hotel . We packed our luggae and checked out of the hotel at eleven o ' clock . We had to be at the hotel 's lobby , so we left our large baggage at the hotel . Then we walked down the river to Merlion Park . About thirty minuites later we arrivedat Merlion Park . Merlion Park has two Merlion statues . Mixed feeling ( s ) One is Mario , she 's a Japanese that everyone ca n't tell / guess the age of , and the other is Sinan , a turk that is a little bit mad ( I mean funny and crazy , careless about the rules ) . So it 's going to be a very fun and intensive semester . I think during the preaching class , the speaker aroused my interest in the bible . This is my first time on this site - I 'm excited ! Hope to keep this diary for a long time enough to and this day , I 'd like to take a walk at the park with Earphones on while listening to songs of my favorite singer , ' Brian McKnight ' . . . When I met a doctor from Stanford amonth ago , I could n't talk fluently . How can I have confidence ? Please tell me , What is the difference between NO and NONE . He had a notebook that he was carrying all time . I think I love her . `` 7 months later , they got married . I went to Hakkeijima Sea Paradise yesterday ! Ciao ! Today I met some friends . Recently , learning English has made me very tired , but talking with friends in English is very and will make me I read Japan Times Online to collect information about the Japanese economy , affairs and events . In Japan , ' Valentine 's day ' has a different meaning from other countries . I , a chocoholic , love this season very much . How do you spend valentine 's day in your country ? [ 2011 - 2 - 15 ] Surprise Today was the happiest day in February . Last night , when I was attending class , a cellphone call made me nervous . Why ? Because one of my classmates called us asking if someone had come back to the dormetory , but all of us were outside except for that classmate . imaging no one was in the dormetory and my classmate saying that he heard someone getting in his next dormetory , we knew that there was a thief getting in it ! so we ran out of the classroom immediately and towards to our dormetory ! Fortunately , after arriving at the dormetory , we discovered that nothing was stolen , We were aware that the thief had the key to the dormetory , maybe the thief was a student who had even lived in the same dormetory ! This traditional festival originated from an old legend . ( The next two paragraphs are not written by me , I just want you know the story . ) when my teacher heard the sounds that my classmates made with the Dan - so , she decided to let them pass the exam because they made the correct sound . It was so exciting and unpredictable . I know Japanese people are notorious for not knowing much history . actually I 'm surprised , its awesome , it really is . Yesterday I made a foreign friend through Facebook . At first , we were divided to two team . Of course , the team being questioned have to answer quickly . I work in the department store and sell a lot of baked cake . In Japan , men who received chocolate from women have to give some sweets to women ( on White Day ) . By the way , I will go shopping with my best friend tomorrow : ) Because her school 's admission exam was conducted there . She wrote a card that says `` Thank you for coming to my town and you guys are so cool `` , drew a picture and cut it in the shape of a heart , even though she had n't seen them yet ^ ^ ; I was a master of a ceremony for two or three competitions for the master of the sumo wrestlers , so I know him well . I pretended to be the person and said `` I love you `` to my primary school classmate , and she believed it . When my mother and my aunts grew up , and they got married and had babies . My favorite restaurant My favorite restaurant is `` Omoya `` , located near my company in Yoyogi . I always looki forward to eating a traditional dish of Japan that is made from seasonal fish and vegetables . I read Sherlock Holmes , I was so excited , Can you imagine composing a picture with nothing else but hair ? Can you imagine making a picture with butterfly wings ? I ca n't imagine this , so when I saw the pictures , I was deeply moved by the composer 's patience ahd creativity . It is difficult and hard for me to study English but I like to comunicatewith foreigners so I like studying English alot . I was uploading in the internet for language exchange . so I rejected him , but he has been sending me ( SMS ) messages and calling me until now . We were teaching each other , but after learning he took me to a beautiful river and he said he is looking for a girlfriend . . I was very shocked and became so angry and disappointed at the men of Singapore . Finally , I graduated from graduate school of engineering and got a degree of Master of Engineering today . I usually spend my time drinking with my friends and watching American dramas . Today , I found myself just watching American dramas again ! ! A simple question just popped up in my head . It 's like Venice in China . It was all lols for me but I could n't say anything . I met some foreigners and many students who also want to practice their language skill . I know it does n't make sense but I would like to know if is it gramatically correct . Is that true ? I 'm supposed to visit Germany , Belgium , Holland and Italy , at least . Including : Meals ( breakfast for the 1st and 2nd day , lunch for the 1st and 2nd day , dinner for the 1st day ) . Bus ( from Hanoi to Ha Long Bay ) . Guide who can speak English , Boat . Cruising and tour of the limestone cave . The story is hard to tell but it is wonderful for me . The scene was recorded on video camera and the article said ' as if he were a magician ' . The person I admire is my grandfather . When I was a child , my grandfather taught some useful knowledge , for example , Math , Chinese , science and so on . My grandfather is very kind and courageous person , so his students all like him . My grandfather is the person I admire . I have no friends here to study English with . It was too early such that there was no any other customer yet except me . We went to a library to study until 4 in the afternoon . Then I left for the post office to claim an official document . I remember your smile from the past that never was , when we all lived together in a valley , in a forest . It 's a pleasure to meet you . I thought my order was received . I 'm working as a cram school teacher and I 'm good at Japanese ^ ^ The tool was made by a good programmer . My first objective is to keep on writing in English every day ! I 've written an article , but I will try my best ! ! ! : D Thank you friends for caring so much , I do appreciate any messages or corrections from you ^ ^ My roommate has been keeping three small turtles . I was looking forward to reading this new series , but I did not notice that a new book was sold . Lucky ! I 'm happy to find a creative store that sells many creative , useful things , such as , milk in the shape of lamps , fried eggs in the shape of lamps which shimmer in the yoke , flowers in the shape of electric fans , and so on . But the most interesting thing to me is a lamp that is like book car and can shine out its edge . It is so convenient to me in reading in the dark that I can read comic books and wo n't be found by mother . CS5 is produced by Adobe . My daughter has been going to this school since kindergarten and she likes it . Well , I think I 'll write everyday , Although I must go to work leaving her alone , I think that our time together is still good for us . My wife and sister - in - laws will come back home and we 'll have a party . As you know , when experts advise you on something , you might accept it without any notion of whatyou have in your own situation that they do n't know . Why 's the delay ? I 'll definitely order the rest of the series . I found that some of my friends had been here . I like it very much . Another was making the temperature inside their own house as cold as the temperature outside . What kind of alcohols do you like ? Some flavors are like passion fruit , woods , or smoke . At the event , many companies offered whiskies to visitors and the event program included an artistic performance and a cooking class featuring whiskies . I 'm going to watching musical `` singles `` with my office colleague . Another famous scenic spot is Songyang Academy , which was built during the North Song Dynasty . By the way , I will do a presentation for my president the day after tomorrow , so I 'm a bit nervous . `` Get everybody out I want them all actived * * * `` I am now in the 7th semester of Engineering school . Next , _ I _ create character designs . But I have something to do , for example , cleaning my room and preparing for tomorrow 's tasks . Since I came back to Japan , I have seen my friends who did n't see for a year . I talked to her by Skype at the first time . The Skype is clear . There are many kinds of appendices . The system to register courses here is more complicated than at Tohoku Univ . Most of the courses require that we get permission to register . When I went to an Asian grocery store , a clerk talked to me and began to explain the rice sold in the store Today is the seventeenth day of the sixth month of the Lunar Calendar in Taiwan , and the seventh month is called Ghost Month ; namely , Ghost Month is coming ! As interesting as these activities are , some still regard Ghost Month as an unlucky month ; hence , some keep out of playing in streams or sea , some go to temples every day , and some are very careful of what they do and say . This was the first time in a long time , because I had a university entrance exam . I am looking forward to him growing up . O ~ M ~ Goodness ! ! She said , once she was called into the police station because she forgot to bring her driver 's license while she drove . Thank you all for your patience and kindness . fascinating way to improve writing However , she is so modest and said `` I do n't need anything . It is difficult to select presents for women , especially for girls . I am learning English and Japanese . He was a great driver in the narrow road heading for the river . I was very happy to talk with my friends and watch the bright water splash . My grandfather was Filipino and my grandmother is Japanese , so my mother is a half Filipina . Though I remember words everyday and when I read an english article it is so hard and I come across so many unknow words . But I fervently belive that what makes you scared , will make you stronger ! But I found out that I was easily addicted to the plots , not the English actor 's lines . Fires in the forests around the city are still raging , and if the wind changes direction , the smog will cover the streets again . Ra - yu is chili - infused vegetable oil . Well , to make a long story short , I won a prize from a TV program that entitled me to take a picture with a baby panda at the Chengdu Conservation Center in the Sichuan Province of China . While listening to the global news from London and giving my daughter piggyback , I wash the dishes . This is [ probably ] because I slept with only [ a ] t - shirt [ last night ] . I 've made a dress for my daughter . I have made my daughter 's dress which is pale yellow so she wants to be a princess too . At the moment I have my music turned up really loud , because there are horrible sounds outside . One of my neighbours seems to be having his birthday today . But they are playing the instruments in a completely wrong way . . . it sounds awful ! Today , I 'll introduce to you what I have been trying to do recently . Ordinarily , I do n't feel comfortable with the atmosphere , and I 'm annoyed with them . This attitude is better for me than being annoyed . In summer there are no temperature differences because it is always so hot . Do you have any ideas or do you have any suggestions of good recipe ? Generally , Japanese girls like natural color when they wear make - up but in the dark place , we ca n't see seer color so she thinks vivid color make up may become a trend . I have to choose 2 subjects for passing except obligatory maths and Russian . I am inclined to choose ( what is the difference between `` to be inclined to `` and `` in favour of `` ? ) English and physics . I am very hesitant about physics . I can learn by heart all dates , but I will remember them only 3 - 4 hours . But now , he has found himself and he is reflecting about what he did . Every year , on July 18th and 19th , a summer festival is held at the shrine of this town . I dashed out of my apartment with my kids , to the street . the leader of the mikoshi encouraged its carriers . And the people on the street applauded to the carriers . I am not good at summarizing stories from books and movies , so this practice is tough for me . The story begins with humans destroying all natural resources on earth . They now have to seek resources on other planets . They discover another planet that has a lot of resources . However the resources lie in the places where natives live and they will defend them . One of the AVATARs learned how the natives think , what they believe in , and cherish . Meanwhile , the other human beings attacked the tribes and their sanctuary . They believe in spirits and cherish nature . Level of Chinese college students ' English As a college student in china , if you do n't understand some simple English , you 'll be certainly laughed at . I 'm a third year university student , my major is Japanese . Only our Japanese department does n't study English in the first year . But we all have to have CET4 or CET6 ( Common English Test in china , only college student can take ) So we pass the exam by using what knowledge we remember from high school . It 'll make me good at pronouncing English : ) I think pronunciation is very important in order to have a conversation with native speaker smoothly . If you are familiar with Taiwan , please let me know about I heard this is the real size . Maybe my pace is once a month . 2 weeks have passed since the earthquake in Tohoku . Japan has recieved a lot of support from people all over the world . And white symbolizes purity . Everyday , her smile makes us happy . I do n't know if the same course tracks exist in the US , and I 'm not sure that the liberal arts or the science tracks have the same meaning as bunkei and rikei in Japanese . I enjoy listening to and singing korean songs , The two brothers are very vigorous and said to have fights constantly with their mom . This thing is quite useful to me . He has a great stamina , and does n't stumble easily when someone hits him . The man feels that the increase of the Health Center 's fee is still a good deal because it is still cheaper for us than using other company 's or pharmacy 's . Actually , we can save $ 65 by getting vaccinated at the Health Center . In contrast the man says that you do n't have to pay , if you do n't need to take the vaccination . In addition the man advised her to wear warm clothing and use an umbrella to prevent catching a cold because she always ends up getting sick during this season . I took a morning bath with my son and had a breakfast with my family afterward . We made an appointment to meet at a cafe near my house . At first , I introduced myself , then I asked her some questions about her experience as an English teacher . I mentioned to her that my interest is politics , so for example , we talked about why the prime minister is ( so ) unpopular , or what 's the difference between the new immigration law and the old one , etc . I wish I was a superman who can do many things at the same time . My Personal History No . 1 Aug . 282010 Yahagi was one of 12 military families who supported and guarded the Japanese emperor . The emperor called `` the descendant of the gods `` had landed on the island of Japan with military families . First off , do not associate with the killjoys , because these people keep you from laughing and make your life a state of sadness . Therefore , it is better for you to avoid them , because you will definitely be badly affected by those people . Secondly , surround yourself with what you love . Moreover , be satisfied with yourself as you are . Do not think about your height , weight , or diseases , because thinking a lot creates worries . But all I did for preparation were only Lang - 8 and conversational lessons 3 times a week . But my youngest son was hanging around the stadium during the match . Do you mind if I give you money for the T - shirt and the ticket when I meet you ? Some people say he is a fairy , ghost or illusion , but we do n't know the answer . If you have some good advice , please let me know . Saving electricity is an important issue in Japan . Head office and factory have keep temperature at 28 degrees . But I am a sales representative After that I have to go to outside to visit our clients I hesitated to buy that ( it ) , but I tried . Because I have watched them a lot of times . Recently the weather is so bad . exam question I drank TAPIOCA ! ! Returning to the song , I think that without hard work , you wo n't speak English well . My school is in southern Seoul , and my house is in Yong - in , Kyeong - gi province . It 's kind of irritating . I have no choice but use that transport . According to weather forecast , a typhoon caused the rain . So I was a little bit disappointed . English is very difficult to master / learn . If we meet someone in person , how fantastic would that be . Then three people continued the discussion . We talked about how we will meet at Tyler 's house in our dreams . I will prepare Thai foods and neechan prepare Indonisian foods . I was pushed by many people and I had to be in an awkward position like in the Matrix ! They can live with little water because the hump has water . When I was a student , my science grades were very low . I 'm writing in my diary for the first time in many months . so I have n't written English sentences at Lang - 8 for a long time . and I am going to attend the international forum with affiliated school students this autumn . Some affiliated school students are students from foreign countries , , I was annoyed all day long For example , some homework and deciding the subject of my graduation thesis . Skype is for learning . Avatar is one of my favorite movies . I 'm little nervous About the mine accident in Chile At first , I was happy and impressed by the news that all the miners had been rescured . After that , I felt a little strange . Why did the Chilean govornment agree to re - digging such a dangeorous mine without appropriate research . The attached lens is mine , a Nikon AF nikkor 50mm F1 . 8 . I 'll play with my junior shool friends tomorrow . I hope I can meet many good friends here and exchange languages . I believe learning languages is same as learning another world . Today , I was reading many magazines about delicacies in the bookstore . Blackout ! ! It was a blackout ! ! Today is Valentine ' s Day . ahee ~ cheer Up ! ! ! ! Could you give me some information about this song ? There were many beautiful traditional buildings . I ate sandwiches , scones and a little chocolate cake . All food wasfantastic ! ! ! I wondered if I was aprincess . I have visited Kassel . I answered her that it was a story about a person who became crazy because he read too many books . We laughed . They were done by artists from the Impressionist movement . I hope that I will be able to meet nice friends through my diary on this website . When I was reading passage about a new contemporary art museum in L . A . , I found something that was n't clearly deliberate with it 's meaning . The phrase that I did n't understand was the following , `` A successful Broad museum would go along way toward cementing that status , which makes the possibility of its failure that much more of blow . `` The story is about a TV reporter ( Bruce : Jim Carry ) who has just lost his job , following that , many unlucky things happen to him . Getting to know how to speak the language is an interesting thing . It is okay even if it is a black one . Okay . ) It was inconvenient but I thought it was kind of funny actually . My brother 's friend 's house was kind of under water . Fortunately , I live in the highest area , so my house was OK , somehow . I have also read the news just now , and according to this , at least 51 people were confirmed dead due to `` Ondoy `` storms and 280000 displaced due to flood . April ( ? ) 10th the starting pitcher was Eric Bedard . For example , when I buy something priced A $ 1 . 53 , I have to pay A $ 1 . 55 . The begining , I was at a loss . It is hard for me to concentrate on study at around two o ' clock because I really feel sleepy . . . . I felt refreshed after the nap . It is important to think about strategies and just try them once regardless of their credibility when we have a problem . For example , They tested it so seriously that I laughed more and more . Its total area is over 17 million square kilometres . There are different types of climate . I would appreciate it if you would help me acquire a good command of English . I 'm concerned with a practice session in preparation for a public performance . I am majoring in the architectural equipment industry . I do n't think it is a hay fever season now , but just some allergy of mine . . . I 'm a beginner at Lang - 8 now . I keep watching until around 2 or 3 a . m . I 'm sure it 's an unhealthy lifestyle , but I ca n't stop it ! ! Today , I went to the university . So , I went to see a doctor the day before yesterday . But my doctor said that I have an ordinary cold . Especially I liked sheeps . Hello , my name is Claudia . I would like to be a teacher . I like volleyball , romantic movies , and anime . I like music , but a hate the banda music or something like that . I would like to improve my writing . I figured that she might not want to talk to me so I told her it 's OK to end this conversation . 3 ) My another parter , who is an ABC , told me that he was busy typing a menu for a restaurant . She walks like a lady , but she always carries a large gunny bag filled with books , which is a little bit not so compatible to her `` gentlewoman style `` . I had a bit trouble when I attempted to sign up for the forum . To my surprise the code was accepted . Sometimes , I think about visiting France to fulfill our desires . Maybe , I 'm still scared of the feeling of losing him , who was very precious to me . All of the students were divided into 4 teams and they made some dishes by using wheat they 've already milled . The restaurant we chosed had cute waitresses wearing Japanese traditional clothes . I am really annoyed by them . . . They especially love Red Bull and Monster . Library is open 24 hours and a few studemts are basically living there . Tomorrow , We will have a welcoming party for a new employee . I 'm a fan of Hanshin Tigers , a professional baseball team . By the time it started , I had helped her buy the alcohol because she was not [ yet ] 18 years old . I have to work , so I will say goodbye , and I expect to see you soon . Your brother , R My apologies to those who work on Saturdays and those who do n't work at all - apologies mixed with regret as the feeling that comes with the arrival of Friday night is so exciting . In order to add some value to this day I 've attached some amazing illustrations by Alexander Jansson that might make you feel some of the beauty , delicacy , fragility and strength of the world of his imagination . I stayed in China for two weeks . I was told of the existence of lang - 8 by my college senior . These are my opinions on the advantage and disadvantage of eating out . I searched new music on Youtube as soon as I got home . I still do n't know how to use this software much , but if I can use it efficiently , I 'll be able to compose cool music . My name is Lisa . I have been learning English for eight years . I like swimming . The story was during our talking , he was talkingabout howhe had a big test coming up and how he was reallystressed out , because he had to read a lot of material both from the textbook and out of thetextbook . Then , I asked him what he was studying for , and he told me he was in a TESOL program , so when I heard it I slipped something out of my mouth like `` what the , why does theTesol program need a hard test like that `` As soon as I saidthat , I regretted it , because it sounded like I was looking down at his course . I got my result from the TOEIC . My favorite I started university study at an old age . I 'm a front - end web - developer . I started 3 marionettes and even if they are in their beginning stage , I am confident that they will look great . Am I prepare to go foreign ? I wondered if the hot springs were made naturally because there were no volcanoes there . He said that he was European and traveling by himself . I 'm looking foward to it . I talked with my sister - in - law today . She said that she is going to Hawaii this autumn . Actually , I feel the negative effect caused by the credit crunch which is expanding to tertiary industries day by day . Anyway , my office is now based in a foreign country . In my office , there are both local and Japanese staff . I 'm trying . `` I hope you suffer just as me and my sister suffered because of you . Introducing myself I 'll have three straight hoilidays by tomorrow . Typhoon is Coming There was heavy rain early this morning , because of a typhoon is coming . A typhoon brings a lot of rain and we 'll feel more comfortable in the boiling hot summer . It says `` This island does n't welcome the minor typhoon that can not cause a day off . As a result , the charge for electricity was higher than what I always pay . Tomorrow , my mother and grandmother will come to my house from my hometown . I had the buffet at the wedding This morning I had to hurry . because I woke up late . Please check my diary entry . haha , and now I 'm too lazy to move them to my bed , I 'm sitting with them cushioning my back . I visited switzerland last week for business . Everywhere is beautiful , I met freiends , aJapanese woman anda German man in Zurich . I recommend everyonevisit Switzerland for this time of year . Then , I wrote a diary . So , I think about writing another diary , and studying English . Because I will go to the university next time . I remember many memories through the air . I really like Natalie Portman ; I think she ` s very talented and extraordinary , but I hope she won ` t make that mistake again . I was surprised by the very big buyout news after such a long time in theVFX industry . Even though he only met her once ? he never forgot her . Recently I watched Mr . And a baddy from ' Spiderman ' appeared in it . After lunch , I read a book called ' LOST SIMBOL ' written by Dan Brown . So , only 15 people can attend the program . Do you think elementary school students , junior high school students , and high school students can do whatever they want ? I should be careful about spending the time and money . And after that , I went to Mexico with a friend and her son . There we had tacos and some beer , and we danced a bit . I am staying in NY to study English . Usually , I would watch TV or do something else . But I have no choice . Anyway , this bad period will last until Tuesday . I really yearned for them . Kartepost . com 's users can share their experiences of disease . Of course it is very difficult issue , but I just ca n't support them . I 'd like to use `` Diffusion `` to make a sentence . His new home is in Akitsu , and is 30 minutes from Ikebukuro by train . so please talk with me on Skype . has taught me a to stay whole . So I will study English hard ! He was listening to music while walking . This calms me . I hope one day I can design my own house , and use these beautiful tiles . We ate an ice cream and drank one cup of coffee then bought two cans of honey . Living in my house is so boring that all I do here is play games , watch TV , and study . The earthquakes here are so annoying because sometimes we get the electric power cut off by our goverment . It seems that for the same purpose , sometimes a sentence is put between brackets and , at others , between hyphens . I can speak good standard Chinese , but I always misunderstand the vendors in the market . How I miss the days when I speak Cantonese and proudly take people speaking Manderin as outsiders ! I hope everyone who uses lang - 8 can help me correct my mistakes . 7 - Eleven is a famous Japanese convenience store . I can find the shops near my house . I was very surprised . The directoris the most famous director in Japan . I thought , `` it 's so easy , `` and wrote quickly . My father played pachinko and I used the coins that he won . I ate peyang sauce yakisoba . After that , I had a English lesson on Skype for 30 minites . When we want to express the cause of something , we say ' because ' , ' since ' , ' as ' at the beginning of that sentence . Yesterday I just got game soft . His speech was excellent ! Actually I do n't have particular plan everyday like meeting important people or anything like that but I am physically busy as hell . Under the circumstances , Sometimes It 's not even a long enough time to create anew diary entry . There is a student union election in my school today . Since your entries are of great worth to two groups of Lang - 8 users ( people who study your native language and people who study the same language as you ) , you are recommended to tag keywords in 2 languages just as I did in this entry . The maximum limit of tag number is 8 by each entry so you are supposed to have up to 4 kinds of tags . I wanted to call the hotline of the bank immediately , but I found out that there was little power left on my mobile phone . I could n't be hold on for five minutes . I think it was a success and many people were satisfied with the result . The next goal is to advance to the best 8 , so someone who can pursue the best 8 at the world cup . Actually I wonder why no Japanese coaches were considered as candidates in the first place . We can rent ninnjya costume to put on dolls . There are many tree houses with difficult obstacles , a river , and a house of gadgets . We tried to overcome the challenge of several adventure playground guantlets that required us to climb up the house , across a river to pull a rope on the board , and cross a ladder that led to the other side . I recommend this place to anyone who wants to play a lot . At night , I came here , Internet cafe to surf the Internet and wrote some letter on a friend 's article . He comes from Canada . Also I am travelling to Jeju - island with my family this coming April for the first time . We exchange gifts . The game rule is that my department boss takes out a mumber first , if it 's NO . 7 , the NO . 7 gift belongs to my boss . Luckily , I take a necklace that 's a dolphin , very beatiful . Although she passed away from cancer , I believe she lived a normal life with no regrets . She had had no children but she enjoyed her life with working , hobbies , and socializing . I 'm going to Geneva , Maienfeld , Milan , Venice and Rome . ( I 'm sorry the spelling is wrong ) Enjoy your week ! I gon na watch all of Hurry Potter films with PG tips tea instead of travel . This Thursday night I will go to a Moroccan restaurant for the first time . when I traveled to china ( Cantonese ) on christmas eve in the morning . Although the plaza had a lot of Christmas decorations , it did n't feel like anyone was enjoying it . ( For china factory Christmas is not a regular vacation ) . It was unbearably muggy and sultry today . I 'm not good at English or other languages either . . Today we had a Bio - experiment class , and we viewed many kinds of plants under the microscope . It was funny , but drawing what I saw was not that interesting . Completely forgotten Why do I need to have a Toeic score ? especially speaking . It is so terrible , If I receive a good score , my school will give me a scholarship , and I can go to America for almost free . but I wo n't stop eating ! She not comfortable to come because she have sick and I imagine she is really try on the wenesday because she must teach a lot of class today so I asked her not come and said ' take care of your health ' Last time I studied with her we are both studies poor the head rises . Please tell me good resources that you recommend ! : ) Express my love feelings without hesitating . I 'm a university student and also belong to English club . For example , we try to have debates , speeches , discussions , drama items and so on . Its been a bit over 2 months in Japan since I left England at the beginning of December . I really like living in Japan coz foods r delicious here , compared to fish n chips , I miss the pub sooo much though . As soon as I came back 2 Japan , I noticed that high - ball ( whiskey n cider with ice ) was very popular among the young generation . I was wondering that almost all students drink only beer all the time , even whiskey originated in England ; such as jack daniels , old malt and so on . It is a strange phenomenon that more Japanese youths consume British whiskey than British adolescents ! It has been raining for three days and the temperature has fallen . I major in software in college now , so I have to learn how to talk about computer languages , such as JAVA , C # and C + + . I will concentrate on every detail of learning software . Maybe the next superman in this field will be me . Last weekend , I watched an American drama called ' ' Heroes ' ' to learn English . Luckily , I am not attracted to bad guys at all like some of my friends . But we might already forget that the natural music enriches our daily life and inspirits people to fulfill their real music . Though I can converse in English comfortably , there are some mistakes . I feel I have confused my English a lot at the moment I write my journal entries wrong a lot . I think maybe because I have read thai books and translated it in English . We can not afford to let immature students go astray academically , mentally , or physically . First and formost , in terms of cultivating students ' interpersonal skills , learning via computers or televisions can never manage to reach a comparable level . Unlike learning from a make - believe world , face - to - face interaction and communication is much more real , and in all likelihood , students can effectively equip themselves with the ability to compete and collaborate with their peer counterparts . Thus , ( traditional ) schooling will definitely lay a sound foundation for their later social life . And I firmly believed that learning using technology will never render school education redundant . I listened to 3 groups 's songs . I am a university student and ( I am ) 18 years old . If I can make friends here , I would be very glad . I feel jealous because such kind of parade is in my town just for children . The only good things were the sweets we ( 've ) got after walking and juice while walking . Now it is changing and many organizations have to admit the right to drink ( something ) while doing sports . Today is a holiday called Shu - bun - Day in Japanese . I have slept for 13 hours , and now it 's raining . There is a pumpkin , a carrot , and beef in my refrigerator . But I am groggy - headed . It 's one of my favorite movies . As I wrote it in my dairy before , we will hold an international exchange program in the summer in the NPO group that I belong to . I received the wrong size item . I purchased shoes from Amazon . com but I received the wrong size item . I sent a claim to Amazon , here is my message to them . I have a picture of those different sized shoes but it is the same size on the label which is 8 D size . I do n't know what to do , I 'm getting lazy because of the hot , humid weather . It was very sweet and very delicious . You 'll see the historical town from the Edo - Period . It is over 1000 square meters on each floor . I ` ll go to Minsk in a month . . . ) I do n't like to use roll paper in the toilet . The Internet has truly changed our lives . If you are interested in that kind ofculture , I 'm so glad . If you want to recommend any books or movies , please introduce them to me ! ! After this , I thought : Am I Otaku ? I did n't want to see everybody crying . I think my great aunt is happy in heaven ^ - ^ I did not always want to watch it , but when someone switched on the television I had to watch it as well . This is always in Thai movies . . . I attend a study meeting for examinations of patent attorneys every Saturday . If I do n't remember it and answer it exactly , I ca n't advance to the next question . The trembler We found ourselves unable to use water , electricity and gas and decided to seek shelter with my grandparents . At the moment of the tremor , I was downstairs alone in my house , sprawled underneath a Japanese Kotatsu . As a matter of fact , it was said that a big earthquake would hit in our region , predicted by seismologists . I did n't think it would cause so many casualties . Yet the tsunami ruthlessly took many people 's lives . My house is not too close to the sea , so we are away from the calamity of the tsunami . I am scared . Especially to Canada ! I Get tired . Recently , I have been so busy . But I often could n't understand what they were talking about . And also that situation ( there are many foreigners ) often makes me nervous . Yoshi ! Hope things will be better the day after tomorrow , as I will take a rest on Thursday ! But I have heard a sentence . When I look at that paper and the words on it . `` Today I received Yilin 's $ 10000 and since then I will never threaten her . `` It made me sure that you loved me because when I did something wrong and hurt you , you did n't scold me but helped me instead . Then I do n't need to expect you to stay with me everyday . I do n't need to wait for your messages and phone calls . You also do n't need to wait for me to graduate from university . You can get married to a woman and have a baby as other people your age do . How can I ? It was mainly sponsored by major industries in this prefecture . He welcomed me at the pavilion door singing his favorite tunes there like an old friend . We discussed what this skier did . I could describe it . Some people say I need to get better at reading and writing . I love these friends and my coach . However , she tells me that her colleagues who work there longer than 5 years make quarrel these days . Then she is caught in the middle and her motivation is being damaged . Some people who are single have a chance to join a party , maybe in the party he or she will makes new friends , and even find a true love . please tell me how to say it in this case . I went to the Dhrama fair this afternoon at Kakio in Kawasaki city . I can not believe it . . . I believe that the most common reasons are to prepare for a career , Career preparation is becoming more and more important for young people . For many , this is a primary reason to go to college . I have cookies , chocolates , jellies , cakes , milk etc . But there is a good Japanese restaurant at the other side . This is a cloudy day . Youtube gives me some fun material for English lessons to divert me . com is one of my favorites and is hilarious . but to call food a souvenir I finda little awkward . As ( in ? ) the picture , with a sunny day , a kangaroo jumping to an old woman and smiling . As the old proverb goes `` Actions speak louder than words `` . We should keep it in mind and take measures to follow it . a brighter future is waiting for us if we make good use of our ways to protect the endangered animals . I 'm always wondering if my English is natural or . . . I want you to help me improve my English writing ability . Today , I went to Tsukiji , Tokyo Today , I went to Tsukiji , Tokyo , with my wife and ( my ) mother . We decided to have lunch in Tsukiji . Some people tell me that I should go traveling because it helps you to see the beauty of this world I do n't want to ignore them . and while passing by beautiful green scenery can be observed . and we can enjoy lots of cherry blossom in spring . So I decided to listen to a French radio program because they broadcast a program for beginners from April and its level is exactly for me . I do n't know that clearly . In my opinion , It 's true . Nowadays , societies are fighting with time . That 's why most reporters consider a title is more attractive and aggressive before they write articles . There , I did Zigoku Meguri which is one of the good sightseeing routes in Oita . I can cook Japanese cuisine , Chinese , and also Korean - style . But I 'm not really sure about French - style cuisine , since they use a lot of herbs in their meals . In Japan we typically use herbs occasionally , but not as much as the French do . Hi everyone ! I had a tea with participants after the class . I had a good time because we talked about a system of studying English . Because I only connect with my friends in Sydney , my English ability is getting worse and worse . I ate Tofu yesterday . I wanted to eat a Tofu hamburger . It was n't delicious . I watched The World Swimming Competition in Italy on TV . I 'd never thought about the difference and that reason for it . It 's impossible to continue from butterfly to backstroke in the same lane in the team race . So why do they start with butterfly in the 4x100m individual medley ? I guess to dive from the starting blocks is faster than starting with backstroke . I was happy to solve my weird feeling . The valuable thing is the knowledge you get , and it ca n't be counted by the number at all . I had a notebook which my parents gave me as a writing practice book which allowed me learn characters by myself when they were at work . It is because their brains are just like empty glasses . But instead of being depressed , I decided to do what I can do now . But , I hate rain , so today is a very uncomfortable day . Okada , a coach of the team , was severely blamed by the supporters . I am considering to start learning English writing by taking courses . I 'm so happy I have a chance to communicate with so many people who are from different countries ! I want to know more and improve my English , do n't hesitate , let 's become friends now ! If there are some mistakes , please correct them . Remember that `` Reality and imagination are not always the same `` . . I am very happy . As soon as I arrived at my house , I went to bed immediately . She was my colleague in my previous company . I 'm loving Monty Python . That is why in winter I go to swim . A random thought about Laos I have no real chances to communicate with Native English speakers . I desire a free conversation . But , there are so many words I do n't know that I almost go mad . She gives me council like my real older sister : ) I am working for a food manufacturing plant . We decided to make a construction company repair them . According to the weather forecast , it 'll rain tomorrow . The workplace is in a complex . yesterday I went to college but I did n't study because the university - level instructor did n't come to campus > _ < , whereas I came to campus early because I was afraid to be late . I really could n't believe that I was able to prepare chicken soup another entry , another issue I work hard to save deposit to enjoy myself in Italy . Today I was given a ticket for a fitness club from a coworker . I have a pack of tofu , some green Chinese vegetables , mushrooms and leak . I 'm studying English , Chinese , and Applied Linguistics . I lived in California when I was . in Kindergarten . I almost forgot how to speak English , so maybe my English sentence grammar is wrong . If you find a mistake in my diary , please correct it x ( The club members watch flowers , birds , trees , shellfishes and a lot of nature . I want to know the calculation procedure . It was smooth until the tube terminated due to signal problem . I was stuck in the tube for 40 minutes and had to abandon Picadilly line . I also use skype and facebook . My purpose joining lang - 8 is to improve my English skill . My mother just cried then . I could n't understand why she chose that place , but I didn ' t Then , they link themselves to my ideas , and finally form a stream of narrative . Today , the Gmail IMAP server complained of `` bandwidth limit exceeded . `` I can not access Gmail via Thunderbird or iPhone . I think I must listen to more English . I like to design , so when I heard about this contest I was very excited . My t - shirt has sunshine and sunflowers on it . They are so professional . . One said that many foreign countries were surprised by the fact that there rarely was plundering amid such a disaster . She will import Japanese goods and sell them on the Internet , targeting & nbsp ; primarily & nbsp ; French people interested in Japan and Japanese people who miss their favorite local products . I want to become a friend with those who are learning Japanese . Today 's dinner was pasta and green salad with sesame dressing . But I am no longer familiar with it . It 's so difficult . To get to the nearest coast from my house , it takes within two hours by car , but if it 's to the opposite one , it 'll take more than six hours by bullet train and express bus , and moreover , I have to change the bus for a local bus ! For instance , like me , growing number of people are trying to learn English which will probably become a universal language . Chinese class Its a natural phenomenon for humans to not be a mechanical creature and have a limitations of memory . These jobs are making me computable ( ? ) and keeping the system stable . Because I get sick easily on the train or on the bus when I 'm in bad condition . And tomorrow I will go to the bank to consult My daughter has been absent from kindergarten since yesterday . Since then I still have needed more relaxing time Thank God when I weighed yesterday the weight was still the same . Please contact me . At the congress , I had a lot of opportunities to talk to many professors and students who are keen on biomagnetism from around the world . They are from Italy , Korea , India , German , France , UK , Netherlands , US , Sweden and so forth . In addition , I learned many English polite and job phrases . lol Yeah , it was the most profitable part - time job among those I 've ever done before , and I was really pleased to talk to various smart people who are kind of geeks haha because I could n't understand their study at all when I saw their poster materials ! so I 've just decided to write a journal Of course I can help people who study Japanese here . Irish Pub I went to the Irish Pub with my friend . I look forward to attending it everyday . I can learn a lot of things about careers in it . I studied English 20 years ago . I have almost forgotten English . The rhythm of it and the rhymes of it were sooo funny , and I enjoyed listening to what the teacher read aloud . It was implying how every individual is important , and also big . Its been a long time since I spoke english , because I 'm studying japanese in Dalian , the most beautiful city in northeast China . There are many interesting things and delicious food in my homeland , especially hot food , pandas , and lots of good indie music . I 'm going to Karaoke with my friends tomorrow . I like singing songs because it relieves my stress . I am a university student in Japan . I especially study A Christmas Carol which was written by Charles Dickens . I tell you that I know the story of your family 'cause if I search for my ancestors I always find your family . I have ancestors from the family of Chmura too but I do n't know if my Chmura family is related to Wiktoria Chmura : ) If I learn about it I think that I will write to you . Only then do I clean up my desk . I think that one of the most important skills these days is to throw stuff that you do not need away , not the skill to get stuff . It 's my first post in lang 8 so I just want to say hello and ask you how can I translate or say some text in a different way - because It 's hard to understand it all . Recently , I have been listening to English radio stations and reading English magazines everyday . On Mondays and Thursdays , I use my lunch break to attend the English class held by my company . By the way , I would like to read English novels . Went to Universal Studio Japan . Dinner was a Chinese smorgasbord * . She works as a secretary at a fashion magazine . Such a pity . My favorite pastime is playing video games , surfing the net , and watching movies . So , I think we should keep and preserve our old buildings because of our culture and historical legacy . Photo : Beautifully colored leaves at a mountain in autumn ^ ^ I think writing in English is still difficult for me , But finding a job is not as easy as I thought . To be honest , these days the anxiety of graduating from university makes me so nervous that I ca n't concentrate on studying , especially English . However , whether I consider it or not , the possibility of graduating will not change . I told her : excuse me Ma ' am , did you find a bracelet on the grass ? She then stood up and gave me the thumps up ! So , I 'll have a part - time job tomorrow . When I went to Tokyo on December the 27th , I bought a new umbrella at last . Since they have them in several colours , it was difficult to choose one . After watching myself with them in the mirror , I chose a purple one . and he was planing to ask for the teacher 's Email address if the teacher was a beautiful cabin attendant . The other day , I caught her documentary on Jounetsu Tairiku , a famous Japanese documentary program , and she said she started getting more jobs after cutting her hair short . He has lively spirit and is not strict . Anyway , when I arrived at the park , all the other people had already arrived . I came back yesterday . Because this was our lesson , we had to go back immediately after a rest . I deviated from the main subject . ( ^ ^ ; ; ) Going to school everyday during my vacation is hard for me , but it also makes me feel proud ( of myself ) . Because , the weather in Korea is very cold . It was really cold and snowy . I bought a hair clip and a CD of NE - YO . After I got home , I searched free TV show in English on the Internet . It 's a big decision and a big challenge for me . Now I 'm worried about home - stay . I 've not cooked things requiring many steps like difficult Japanese cuisine , and I have only a few recipes to give to my friends : ( I have a long way to go from attending universities overseas but I ` m sure I will be studying very hard in order to be able to attend a university overseas . It 's difficult to forgive someone , especially when they 're a common object of hatred . Library Part 2 I 'm writing a continuation of my entry , from yesterday , about going to the city library . I could only rent three CDs at one time from the library . The soundtrack of `` Top gun `` , Van Halen 's album `` 1984 `` , and Madonna 's album `` True blue `` were included in CD 's that I listened to . I 'm really looking forward to traveling with my mom , b . . I wanted to reada book but my eyes were very tired . I can remember the time at which I fell asleep . it is possible that such a thought gave me insomnia . I will watch a movie with a love story starring Shack Reno and Juliette Binoche as I want to rest . Cleaning in the hall , leading people to the front of the ceremony hall , managing the information desk , checking the money and calculating the total cost for our clients and so on . I must observe my co - workers and follow them . I had trouble with my hair many times during high school . Whenever I hear her scolding me , it is frustrating . Their great beautiful nature and biodiversity are found as the reason of registration of the World Heritage site . I was looking for a magazine which I wanted to get and then I was deeply engrossed in it for 20 minutes . I 've decided to become a Christian in the future , because I think following God will make my life more meaningful . something very new ( although it 's been on internet for quite a while ) always capture my heart . * Sorry if my diary was inappropriate , in a way that I advertised Twitter too much , please feel free to delete it . ' All right , ' Min interrupted Ji 's description , ' I said , Riska , can I have some chicken nuggets please ? And , an organization named `` PeaceBoat `` stole the support supplies in order to gain honour . Chinese development speed is faster than Japanese one . Next week , I will go there via Seoul in Korea ! ! Unfortunately I forgot how to speak French because I did n't use the language in Japan . Now I 've got holidays after all my examinations and I want to write something ) Before it was n't so fequent . I hardly understood what my teachers said at my online English lesson . I should listen and repeat vocabulary and phrases frequently to increase my listening skills in English . This is my first diary ! Today I 'm very happy because the date when I go to Montana , one of the big states in America , has been confirmed . Missoula is a beautiful city in Montana and I will be staying there for three months . Does anyone know how to learn English words easily ? I often read too many broken English in chat messages . And a number of players talk like kids ( some players talk as if in a role - playing , but most players do n't seem to be speaking `` proper `` English ) . Last month , all the students in my university were given one thousand Omani Rials ( = 2600 . 78 American dollars ) . If you were in my position , what would you do ? How would you spend such a huge amount of money , at least to a student ? She is beautiful and interesting . I really like this song ! These days , I made up my mind to stop my emotions of liking girls who are my type , which means that from now , I 'll never try to approach girls even though I like them or I want to be their boyfriend . I 'm afraid of American beauticians because of my English level , so I try to do it . This is my favorite song . This group is really famous in Thailand , but this song has been known for a long time . I knew it when I was studying at university . Now I have finished already but when my friend and I want to sing we must sing this song first . In the previous movie , a young stockbroker did everything to get to the top , and a greedy investor , played by Michelle Douglas , utilized his insider information . This ancient palace is open to the public only twice a year in spring and autumn . As you know , all department stores have beautiful bathrooms , most of them are Western style . ( Many foreigners are in trouble with Japanese style bath rooms ) River Fishing is Wonderful 7 years ago , I lived in Northern Japan . Today , I talked to my friend , Nick , who lives in Florida , USA through skype for a while . Not surprisingly , he had already gotten a job he was willing to get as a financial analyst . According to him , his major is business and it could be recognized as an accounting major , also . So , if his clients come from South America , he wo n't have any difficulty communicating with them . In other words , he will deal with any problems people usually might have due to the different language . I uploaded some favorite pictures that I took . I guess they are just hiding their new technology to prepare the new iPhone or they were afraid that Samsung could sue them . Timothy Cook , who is the new CEO of Apple , gave a presentation yesterday . I 'm going to take part in a marathon three months from now , so I should practice hard . What happened is that some trekkers who was arranged by some travel agencies succommed to hypothermia . Since Japanese novelist Fukada Kyuya published the book which introduced the the Japanese 100 cerebrated mountains , they thronged those high mountains . As you know , trekking require many things such us knowledge about weather and map , how to use equipment , experience , and most importantly physical fitness . Intrinsically there are few trekkers in Japan and mountains are calm places . Their foods are excellent and it has a cozy atmosphere . Today I introduced Lang - 8 to him . I found it so boring to stay at home doing nothing . When preparing a dish , I have to make sure that all the seasonings / ingredients are available , when to put in which ingredient and how to control the heat . michi ha . nurete imashita morokko ni ha yottsu no kisetsu ou Shiki ga arimasu ryokou to hama ha hitsuyou desu . My friends likes `` Judy and Mary `` ( japanese pop singer ) very much . I think the author of this book describes Bella 's emotions and feelings very well , so that I could understand how she feels about vampires , school , family and friends . It was heaven ^ - ^ Today I cooked miso soup . Freedom day ! ! If you are interested in Japan , you should / ought to know that Kyoto has a lot of cultural heritages . Since it may be the last chance of this season , I want to get even better progress of my skill . ( Other brands are , for example , iPhone , Droid , and so on . ) In the Evening after returning home , I had dinner with my friend who came from Oregon in the US . We spoke in English of course . I think it was 34 degrees in Tokyo . It was a hot day so I needed a handkerchief because I 'm very sensitive to heat . Tonight , I drank a little alcohol with my co - worker near our office . Now , I 'd like to exercise in any case . I was happy when I heard his voice . Hatsune is a bar with a homey atmosphere . He said , `` Why do n't we play golf together ? `` Diary for 1 . 23 . ' 11 I worked at home today . My son went to the community center . He pounded steamed rice into cake with scouts at the community center . I will arrive at Nagoya city which is a central Japan metropolis tomorrow early morning . When the potatoes and onions are fried , mix them with the eggs with a knife . I can not go home earlier than around 23 : 00 . Everyday , I use English when I write e - mails at work . Being a flight attendant is kind of the symbol of intelligence and beauty for Japanese people . According to my Singaporean friends , in Singapore , a flight attendant is not a high standard job at all . For Singaporeans , flight attendants are just servants or something . Is food coma the natural phrase for that feeling ? He is sensible to authority , then he does n't let himself control by other . My contemporary life is very terrible . Something important must have happened because there was a lot of yellow tape / police tape around the office keeping passers - by away , and even some television interviewers were covering the incident with cameras . I need to work from Sunday to Saturday . In cram school to teach math from Monday to Friday , as a prompter girl on Saturday , and a telemarketer on Sunday . 3 hours later put some sugar in it . Before yesterday all the Japanese patients were in Western Japan , but today , at last , two patients were found in Tokyo , East Japan ! I think there are no means to prevent the expansion . Today , I had cram school ^ - ^ And I went to the US two years ago to join in a Chinese martial arts tournament . ( Now I 've quit to study languages except Engllish ) Forrest Gump , Austin Powers . . . So sorry that I could n't visit this site enough . . . If you have any questions about Korean culture or Korean grammar , I had a girlfriend in the past but she dumped me and I felt really bummed out . Today I was looking for a airplane ticket that is affordable . Actually , I was supposed to buy a one way ticket , which is more expensive than a round trip ticket and a 1 year open ticket . The article said you have two alternatives for a journey . You could buy a dicount ticket then when you arrive at your destination you can throw it away . But if the airline or travel company finds out you might have to pay a penalty fee . So for that reason I checked many sources . Of course , price is very important to me because I do n't have a big budget . Ummm , Maybe I will buy a PEX ( safe ticket ) . Until now I wrote daily at the office . Now I can write daily in English , on my PC . On July 4 , I will have my examinations , including business english translation , English writing , integrated english and political theory . I am worried about my political theory , because I have to review a whole thick book . Special buses ran between the main grounds - CDH ( where the ' Art - Moscow ' fair were running that time too ) , the ' Vinsavod ' , the ' Art - Strelka ' , the private museum ART4 . ru and some other important galleries . I will be working as ARASHI 's concert staff . Then boil asparaguses for 1 . 5 minutes ( The time depends on the thickness of them ) . I was satisfied , because it was very sweet and delicious ! A large amount of companies like mine encouter such situations in Japan . Therefore , I hope that this bad practice would disappear soon . Something bad has happened to me ! ! in body and in mind ! ! ! ! Field Day The moon eclipsed totally for 100 minutes , however the whole process took more than 5 hours . It was like in a horror movie , if there was an old gypsy lady , she would have said that was a bad omen : ) ) We were looking forward to having a special dinner at your restaurant . We went to an Italian restaurant , ate delicious foods , and talked a lot . Recently , I was surprised by the financial result of a certain company . This weekend , I will play football . I 'm looking forward to participating in the soccer festival . Recently , I 'm interested in diet , learning English , internet , and shopping . I saw a classical music concert performed by the Prague Radio Symphony Orchestra from Czech . However , there were unexpected disruptions in the music hall . I totally could forget that I 'm a busy person like a workaholic . And I like `` Leon `` as well . That is one of the films when she was child actor . I also joined an English debating club . Im tired because writing in English is very difficult for me . . . Today there is a fireworks display . But the weather takes a turn for the worst . Sometimes , foreign customers come to KFC . Finally , should I say anything ? A REAL powered suit produced by HONDA Honda has produced a walking robot named ASIMO . but if you write about a special thing the public does n't seem to know ( for example , about IT or business or philosophy ) , it is necessary to explain each word and the speed of talking is decreased . I was never proud of myself since I came in middle school . Why do I have to learn them ? Why ca n't people choose what lesson they want to learn ? I love English lessons , then I could learn this for free . I am thinking that I want to make a reservation for the IELTS test in March , but I have no confidence at all . For example , I 've heard it used like this , `` You fucking asshole . `` or `` Fucking surely `` . If you are Japanese , I am not sure if you do . I know you are hungry . As matter of fact , I did n't know there was a sandwich restaurant in Japan until recently . At the restaurant , we can order anything . What suprises me is that she insists on proceeding with the work even in the case of other 's falling ill or when a family member is facing life or death problems . One time , I asked for an instant leave to attend my grandmother 's funeralin my hometown and I explained that the flight available to me is due to leave soon . And then , after several rounds of her ordering me to do whatever ( things about work , I have forgotten ) I was finally allowed a leave . . . Another example , one guy gave an explanation for his absense at a so - called important meeting that his wife had a heart - attack that morning , and that he had to send her to hospital . One day , my mother was going to have an operation and I was the only one who was able to accompany her then . In searching for information about overseas travel , I happened to find this site . Because I often think `` I want to drink sweet coffee ! `` When I was an elementary school student , I used computer in a lecture for the first time , and I 've used it for about ten years , but I continue looking at the keyboard . wooo , , I wanna take a chance to talk English . But I will spend this time alone . What is the difference between `` I 'm not sure `` and `` I do n't know ? `` complain : I complained to my teacher about the scope of the test . hate : I hate insects , particularly cockroaches . worry : You do n't have to worry about your health , you 're healthy enough . I think It necessary for me to hit the books cause I want to win scholarship in our campus . In America ! ! ! Furthermore , there are more and more reports about accidents caused by exploding cellphone batteries . As for me , _ I can speak two dialects which are Wenzhou dialect and Hokkien dialect . I applied to three consulting companies and underwent an interview yesterday . The speaking examiner is an old man . . . Because a boy in the apartment made too much noise that we all complained about . . . . A good point , I thought . TheNext step has just started now ! Unfortunately , my sister is not interested in kimonos . We went to watch a movie first , and when we arrived there , I saw a handsome boy who wore some fashionable clothes and leaned on a big wall . But , because of working overtime , I missed it . One is the integration of writing and reading , which lasts three and a half hours . Bridal Course studyies about weddings . I felt vey comfortable . she 's already married . hey my name is Icen and I 'm new at lang - 8 , I want to speak good English , so please help me to learn English thanks . . . I am a student learing economics at Kyoto University . Hope I will find Japanese learners and English and Chinese native friends soon ! ! I booked the ferry tickets to the island leaving at 9am on previous day , so I left our home early so I did not miss it . I asked how can I get there to strangers along the way , furthermore I ran to the platform and the road , finally I reached the ferry station almost too late . I went to driving school during my summer holiday . However , obtaining the license helped me to return to Minmikusatsu city . Whatever - he hurt me before with a lot of bad words , screamed at me , saying that I expected too much romance from him . I y enjoy playing play the French horn with an amateur orchestra on weekends . My orchestra is having a concert in October , so I could n't stop staring the beautiful phone , I like reading books , surfing the Internet , listening to music - - both popular and classical . By the way , in March I 'm going to go to my high school to make a speech about my life at the university . For a few years now , I have had dermatitis on my face , especially my eyes . The dermatitis on my face , especially my eyes is conspicuous , so I 'm really sad . Today Giants won the game , but both teams showed us a splendid match . A lot of celebrities go there . I was born in Hokkaido , but stayed there for only one month . I like watching movies , reading novels , traveling , and taking walks with my dog on my day off . The Nikujyaga is made of beef , potatoes , carrots , onions , and konnyaku boiled and seasoned with soy sauce and sugar . I have just found the report . furious at you and you ca n't find any excuses to ease their mind , When I try to revise some articles written in traditional Chinese , I feel confused . I , nonetheless , believe that the pros outweigh the cons . But , I do n't know what I should do . By the way , cherry blossoms in Tokyo haven ` t flowered yet because of cold weather . Because I 'll feel stuffy when I stay in such an environment . Go to University . I went to ( my / the ) university to sign up for classes with my friend today . I said , `` What a beautiful view ! `` It is kind of weird when I reviewed the blogs I wrote before . If you are wondering where you should go on your next trip , I strongly recommend Tong - Yeong ! What is the meaning of religion in our life ? but I could n't find any difference between religious people and those who are not . I think I 'm a realist , both in material and spiritual . In front of my office there is an indoor tennis school called T - 1 . I ca n't enrol in such a university , but what about in the philippines ? I then watched ' Field of Dreams ' and ' Remember the Titans ' . Although it was raining unfortunately , there was a line of people . I have my own lunch box already . Figure skating This morning my music box randomly played the song called `` Paddy Fragrance `` ( sung by Jay Chou ) . It does n't sound like most of Jay Chou 's songs , which are usually depressing or sentimental , this song is relaxing , encouraging and positive . Do n't quit so soon just like what I have said `` If it 's too difficult for you to pursue for this dream , you can think of changing for another which is much more suitable for you `` We are all looking forward to a bright future , while ignoring what we really want to be deep down inside our heart , and that 's why we are always busy and successful but not happy . Today I 'm going to Edoshima beach , but the weather is really bad . Especially , I was so surprised that even some developing countries donated relief and condolence money . I did n't have any trainer who would teach me about losing weight . I could n't lose weight very well as a result . I 'm in a relationship with a cute scottish girl so Italkto her in English mostly . Lately , she has been saying `` your English is girly `` andof course I do n't wana speak girly English . I have many friends , but only one best friend . She was born in Georgia . Anyway I want to talk to people who speak fluent English to improve my interpersonal skills . Now , I only have one / an exam ( English test ) that is one week away to go , so I think I 'll have to study all day long in the libray . However , my writing skill is low and I need more practice , so I decided to write a journal on this website . Of course I am interested in the latest model of mobile phones , cars , electronic devices and so on If we do , it means a challenge to the monkey from the monkey 's point of view . We could buy some bananas , peanuts and apples to feed the monkeys . My boss say that I should take the TOEIC exam and score over 600 points . SUMMER VACATION I have a headache I 've been here for one and half year . Please give me advice and touch up my writing . In regards to that , it 's much easier to utilize comics as dramas than to create novel ones . I can speak Korean , Japanese , and a little bit of English . However , it is my bad habit to stare blankly when I am studying and oppositely sometimes I have a hard time focusing . Come to think of it , recently I have been studying Chinese harder . I would like to be able to be good at singing and I have practiced English pronunciation . ( the clerk who helped me find a new job said that the company which I tried could not be decent . In the books translators said it 's indispensable that they have persistence and passion for their work . thanks for your comment on my previous journal . I want to compare the two of the great religions but there are many differences between the two . . . however after many years of training , he found it difficult to lose his worldly desires and he decided to leave his master . People used to send a present to their father in father 's day . Considering the distance between USA and Japn , I need to request to send my present now . I angered my sons too much . I really enjoyed it . Of course , there are other non - Christians taking part in it . Since my only hobby is English , it 's sheer bliss to take those lessons complimentary . I 'm agog ( ? ) to go there next Saturday . So I practiced easier tricks so that I would n't make any mistakes . Oh my goodness , what the fuck ! Goddamn it , you asshole ! Probably today 's interview was a failure as well as yesterday 's . Japanese people do n't do that like them . The world is quite unfair ; I should hit the creator of English lol . I told the accommodation 's staff about my job interview , but he encouraged me and said I could speak English very well , and he felt that I could get a job here . I wish , she could keep her health and beauty forever . I love you mum . Roughly , their conclusion is based on two facts . I believe as long as we are more careful we can freely enjoy all the convenience with which cellphones bring . The shrine was located on a mountain so the road was relatively deserted . . . Especially in a rainy day . Eu sou uma menina . It seemed that a fight / conflict between her husband and the rude man would occur . Translate Do you remember when was the last time a boy / girl asked for your name ? I sometimes watch METAL GEAR SOLID 4 on youtube these days . Youtube has many of METAL GEAR 's movies . I 've watched about three - quarters of them by now . So they must be difficult for foreigners to understand . She graduated from a Japanese two - year college , and then , went to other two - years in England . So , she went to Stanford University , and got not only a master 's degree , but also a doctorate degree there ! Moreover , she has two children , who go to university . One of my purpose of studying abroad is to get the opportunity to meet people , so I could realize that by meeting her . The second picture is very fun and cute . So , I started writing diaries in an attempt to improve my English . Actually , I went to an English school . In addition to this problem , the reading comprehension part was very difficult and its form was not standard because there should have been four passages instead of five . Soccer ? Football ? The Japanese women 's soccer team beat Sweden 3 - 1 . The American soccer team is also very strong . So it was yummy . A lot of people were absent from school . Today , I ate curried food with a co - worker at lunch . In the evening my older sister called and asked me to watch her niece while she had her hair dyed in a beauty salon . Sometimes my niece comes over to my house and I have to watch her for a while . My niece wanted to say something in English and I let her talk with a tutor on it . After the lesson I taught her some basic vocabulary like My name is ~ ~ ~ or I 'm fine . I was surprised how fast she mastered the phrases I taught . And we also watched nursery rhymes on Youtube s together . I went to day care club with my daughter . My daughter loves the rabbit slide . I got an iPad2 the day before yesterday . Because Apple started to sell it the day before yesterday , and I ran for the Apple Store . Some people were hoeing and fertilizing and some people were watering . It is beneficial to my health . `` She said . They 're also investigating other compounds in dark chocolate that may offer other health benefits . After that , some of my seniors and I ate dinner at a restaurant in the station . After a while , some of my friends also came online , so I chatted with them about what was going on in my life . We were chatting happily , but I lost track of time . When I felt hungry it was already 4 : 00 . Today , I want to introduce you to the Japanese traditional food `` Katsuo no tataki `` . This is a one of my most favorite foods . I think that is the best harmony . If you take careful notice , there will always be a bunch of pupils in most classes : they can not get a decent score in academic study , and most of them take notice of this , and thus their minds wander outside the classroom during lessons and occasionally they make some noises that bother others . The teacher on the other hand , tends to be half - blind to this since his duty is to fulfill the hunger of gifted ones for knowledge . Also , if their names happen to be at the bottom of a student list alphabetically , they are called very seldom to answer the teacher 's question and sometimes not once during an entire semester . The problem is that I do n't have a camera . I have dad , mom , big sis , and a cutie dog . Moreover my birthday is February 23rd Not soon after , I changed my name to Echo , which is also the name of a famous writer in Taiwan . You must know her writen name is `` Sanmao `` . I admire her life in Spain , the desert , the sea island , and , also , the romaance between her and her husband . I will go to Australia next month . My boyfriend went to Australia to study . I bought a guidebook about Korea . Recently I stopped writing diaries because I 'm busy working . That is a weird title , is n't it ? It 's the title of a Japanese song . The grand - daughter felt sorry / regret because she was n't a good grand - daugther . It 's obvious that situations where public phones are used are getting rarer and rarer . The scene in my photo will be a memory in the far future . Yet my English and Chinese is bad . The next week they have a contest between themselves all over again . The courses I teach are third grade level math and science . Instead of crying about today 's sour situations in Japan , I have to make more effort to be a winner and stand out among the numbers of canditates applying for a position . after that we went to Mt , TSUKUBA I was so tired and frustrated before going driving . The taste is n't bad . because of their existence . These days , I reciteEnglish articles loudly right after I wake up . If you want to know Korea , please contact me . And I guess this seems to have made my uric acid level become higher . And now , I am in a dormitory . Tomoe made up her mind and forcefully approached them . Today is my birthday , I am 20 years old now . Next year I 'll be 21 . Actually , I have thought about getting an ear peircing for a long time . the lady used the marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks like very painful , I just feel a little bit itchy . thanks for alicia to accompanying me to the piercing shop . It 's not a fun type of plan , but is more of a family - related compulsory type of thing . It is very good and has many applications and different functions . So if you want to share your thoughts or habits , I can introduce you to our culture ~ Actually I do n't know whether he hasfault or not . . . I do n't know whether I should be sad or if I should n't care . My husband was going to move to Hongkong on business . But now that is changing owing to this depression . My daugther did n't know which was the front part of her skirt , and showing me her skirt she asked me : I was thinking of my stay in New Zealand over and over . In 1803 , Thomas Jefferson , the 3rd president of the US , purchased the great wild west for about $ 15 million from France because it doubled America 's land mass and would provide rich natural resources as well as great farmland . Jefferson sent Lewis and Clark to explore the newly bought land . I thought , that those four years of learning language in school would be enough but quickly I was persuaded that it 's not so easy , indeed . But as you can see , I write sentences as if I were a pupil . . . Today 's lesson was a private lesson . His lesson was fun and he is unique . However she always buys delicious food and it might be expensive . Maybe it seems no big deal to most of you , but since I 'm now studying in Japan , and the Japanese are so difficult to understand , I must be extra careful of what I do . It does n't look very strange in English , but I am really not sure about whether it sounds like a compliment in Japanese to the Japanese teacher , who I think really does do a good job . Of course I think she knows some of the American peole are not kind , but I enjoyed talking with her . By the way I go to college now ! ! and his . . . their , , theirs . . I forgot the grammar . . give me a hand . . . thanks It 's `` Cocoa champagne `` and `` Cheese and walnut `` bread . The Cocoa champagne has chocolate chips and raisins . My school festival was held a few days ago . Second , my homeroom class won first prize in the chorus contest ! ! I 'll never forget it : ) Some people think that the death penalty is the final way we can punish murderers . I talked about my research presentation in English for the first time . So , I am highly motivated to speak English more fluently . I am going to go Beijing to present my study in English by the end of Nov . I was especially impressed by a beautiful range of poplar trees which had fresh green leaves . We complained a lot . Second , a dinner for our child contained a piece of metal , and the restaurant owner apologized to us , but no service . We got an orange cake as their apology . Our friend calmed down , and my awkward position became better . Osaka 's `` Shaanai `` culture C : The PIC from the manufacturer was very angry and complained It is very important to me . Too many people have lots of pressure in life because of capitalism , so should they relax and `` scream `` to themselves ? ! When I arrived at the Philippine airport , there were already 4 people from In addition , I already told you that my English suck ~ There is a bug inside my LCD monitor ! So I want to go there . Actually , I will go to Singapore when I go to university The title of the book is `` how to walk in the world `` . I recommend that you also read the book . However , do not read everything ; because if you know everything about the trip , the travel will not be interesting for you . Anyway , Washington will be rainy or snowy . . . . . Today , I am going to watch an American movie to study English . The genre that I want is either ' melodrama ' or ' comedy ' . Could you recommend a movie for me ? Of course though I have so many good pen - pals of the others around Sometimes my work is very difficult for me to handle smoothly . The work will be easier than that in my mind . So let 's start to study English grammar this summer ! ! ! I will try because this website is very good idea about leaning a language . ^ ^ I ate kimchi stew and Korean pizza ~ Ryouan - ji ( Ryouan temple ) , which is famous for its simple That 's because she went to the U . S . to study . sometimes I could n't do anything because of my memories with her , but cry and cry . But I worry about my English skills . . . Oh my god this my first post and I 'm very , very nervous about what other people will say because I do n't write 100 % correct English but I 'm trying to do my best . My favorite season is spring . Tomorrow , I am going alone to my university to borrow a book . spanish bar I 've just found this lang - 8 today and registered right now . My wife resigned from her job is very tired . New sentence She could n't bear it anymore . New sentence Plus she also missed our son . The salary is not given out until May 5th . But , today she is supposed to wash all clothes , sheets and so on . Actually I was worried about this mistake . So when I learned it was not by me , I was relieved , at the same time , I thought I should be careful not to do that . meaning unclear you 'll have a nice trip in your vacation . So I have to help her study in the meantime . I really hope she 'll be able to do everything , not only studying but also looking after herself . I have been studying 8 hours a day on average for two months in an effort to get a high score . But learning English is what I really like to do , just because I have to master it in order to pass the exam makes me feel tired . Passing the exam does not necessarily mean everything to me , I just want to express myself freely and openly without worrying about whether my English is good enough . So , please be critical to my articles , I really need your help to write it coherently and logically . But writing my diary in English is as difficult for me as ever today . I can speak and write English at the Japanese junior high school student level , meaning just basic English . However , I 'd like to be able to read and to listen to English like that of a high school student . But as I 'm in an international department , many people ( many of whom are from overseas countries ) invited their families . What do you think about studying foreign language ? Sadly , I think that we have poor minds nevertheless we live in Japan . Please correct these sentences Yesterday I had nothing to write , so I did n't write my journal . I decided to buy a better one to forget about losing my old one . Second , your Japanese is very excellent . I recommend this movie ! Have a nice day , and BE CAREFUL OF SPAMMERS ! ! I really want to learn English so I can search on the internet as I want , They gave me some advice and . confidence . Today , I would like to make some sentences using new words . Talking with foreign people is very fun ! I was woken up by the rain this morning . Today I 'll tell you about my many hobbies and in return I also want you to share your hobbies with me . To find the best friend very difficult . A lot of people don ` t have friends , and me to . I played tennis yesterday , because game day is coming . So the government of Iwate prefecture built huge embankments along the coast to protect citizens from tidalwaves . Even many foreign researchers came to this town to inspect the wall . A man in this town told a reporter on TV that `` Even if tidal wave is coming , I would not mind it at all , because we have the great wall . `` But the tidalwave which wiped this town out on the 11th of March was more than 20 meters high . The good part of living here is you can easily mingle with different ethnic groups and learn their languages and cultures . Today I had many drinks : Japanese tea , iced coffee , Yogurt juice and Mango juice . Something about Halloween Children like to play pranks . Then the children get some candy from them . Please guide me in improving my English , especially in grammatical errors . I miss him very often . This morning , I went to the store again . OK , maybe I should not push myself to keep a diary everyday . And I 'm working on a relief operation tomorrow . . . This morning the LED monitor for my mobile computer was broken . In other words , It had become a garbage . One of my friends said `` If I meet a man who is a gynaecologist , I will marry him ! `` This is a joke but it means the ' Menstrual Cycle ' is really a big pain for girls . She seem to have heard the price , but she did n't hear it at all . A bureaucratic office such as NYDMV often fails to be prompt . I 'm really looking forward to it . It 's accounting . This dog is female and she is so smart that when I took her outside and wanted to teach her to urinate and defecate outdoors , she did it without any words . Because there are many black spots on her tongue , we named her `` Spot `` . I 've both read all of the Harry Potter books and watched all of the Harry Potter movies . I think that really beautiful women are beautiful no matter what hair they have . My Writing There are many things affecting the world like air pollution , climate change , enviromental degradation , depletion of the ozone layer , destruction of the rain forests . . . It 's been a long time , everyone : ) I could n't write a diary for the past week . 18 In my childhood , My mother used to read me fairy tails . 20 Memory gets weak as people gets old . 3 : USB - network converter It was a hole in the wall , very reasonable . Tenpura is a kind of fried , dip fish or vegetables in flour mixed with water , which is then fried . Noalcoholwas sold there so I had a can of beer before entering the gate . And I have never known how respectable a job it is to be a teacher . In Japan the driver 's seat is opposite to Taiwan . Transformers ) do n't exist on this billboard . Because global warming is becoming more and more serious in the past few years , the temperature has risen day by day . It was my first time to go to Narita temple to see autumn leaves . Monday Morning I went to the gym and ran for 30 minutes and took a sauna . The Jogging Game Very fast ! ! Although I 'm getting better to listening English , not to speaking English . It is interesting for me because I think it looks like Japanese ! I have two reports about Europe and ballad to do . It was unbelievable , but I soon became accustomed to it . To Master Natural Expression I like to eat in the park . Today I am going to participate in a celebration at my friend 's house . It 's a fashionable and exciting drama ! ! The iPhone allows me to play games everywhere . it happened . . I will never give up . . ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! So I could n't take the 1st lesson . Today , we sang `` New Divide `` by Linkin Park together . I met with a friend who is living and working in Vancouver today . My friend 's lang - 8 diary : URL I am interested in life in foreign countries . So , I often want to eat some snacks like chocolates and potato chips . I had checks for breast and uterus cancer today . It is said that breast cancer and uterus cancer have a relationship with those who are young ladies still under 30 year old . Furthemore , recently a famous actress in Japan passed away because of breast cancer . The formal diagnosis will come out in two or three weeks , but my doctor said me that it has does n't matter because they checked my breasts and uterus from the palpation and through the observation of them . near the Pacific Ocean . Why was I interested in America ? Speaking in English is really hard for me nowadays . I think it would better for me to study at the library instead of hanging out with my friends this week . I Ca n't Believe It Recently I feel the spring season in Hokkaido . Because the temperature has been over 0 degree all day . I 'm looking foward to watching cherry blossom 's flower . I went to my office by bicycle today . I went to my office by moped everyday , so it 's good for me to change to cycling I thought . They say that I am smiley and have a soft atmosphere like a sheep . The movie had many grand scenes , on the way , space and dinosaurs appeared ! It had many beautiful scenes around 2 / 3 . I remember 100 words in English ! ! A boy was riding his bicycle while using a cellphone . Luckily , a scarecrows contest the theme of which was `` dream `` was held there , so there were more than 30 rare scarecrows in the beautiful countryside . I 'd like to go there again , because the theme of the contest changes every year . I wanna take a nap too . Since it is not a long distance from my college to Beijing which is the capital , I joined the travel agency to go on a journey . on my own So . I feel a little disappointed to some degree What makes me embarrassed was that the other travellers are almost lovers or accompanied , I am the only one . on my own In spite of it being the end of June , the weather in London was rubbish recently . And also I felt like I 'd come to a different country , like a resort : ) haha It will be nice weather tomorrow as well , so I 'm gon na go to a swimming pool with my host sister . By the way , it 's difficult for me to figure out the difference when I use the same verb but with different prepositions . After dropping off my children in the morning , I walked for 1 hour in the Al Barsha Park . There is little difference between first and now . In this letter a man tells his children ( about ) how he and their mother ( his wife ) have spent their lives , and how their mother died . My favorite sentence is ' ' Death overwhelmed everything , and this saved everything . ' ' I like my job , because every day I have the opportunity to help people . I work in medical insurance . I work with free medical insurance . If a person 's income is low , they can qualify for free insurance . It includes medical prescriptions , dental , vision and emergency room visits . Some people who came from countries which had been invaded by Japan 60 years ago hate Japanese culture . The decision is theirs . I did n't see many people , but I saw a few people taking their dog for a walk . It occured to me that even if people live in different countries , people learn the same important things . Because I got my wisdom tooth extracted , I have been having only soup and jelly since the day before yesterday . It is liquid , and contains the necessary nutrition . I - bought - 2 - potatoes and a frozen - pizza - for - lunch - at - the - grocery - store - near - my - house And - then - I - will - clean - my - room - and - press - my - shirts I bought some premiums for my wedding party which are a machine for making fried octopus snacks and a small Christmas tree . I feel a little pain , but I think I 'm recovering now . Use specific reasons and examples to support your choice . ( sp ) ( within 30 minutes , more than 300 words ) A Private room is one of the places where I can relax and be refreshed from the exertion from the day 's work . You can easily find some pictures and videos and use them as references for your homework . Through that site , you paid for a dictionary . Nowadays , the electronic industry is becoming popular , so fraud like this might happen even more . But people mostly use the computer for more than one hour and as for children , they ca n't refuse the temptation . Besides these , there are lots of other disadvantages such as illegal downloading and becoming violent . I was wondering about what was different between understandable Korean and misunderstandable Korean . Tomorrow I will fill it up . ) and I will write about those results tomorrow . I feel a little idle ~ `` ~ A few minutes ago , I ate dinner with my parents . It was a good excesise listening to English and I enjoyed watching her acting . Because of the 6 . 3 - magnitude earthquake in New Zealand , A Christian church and a five - story office building collapsed in the early afternoon on Tuesday . At least 113 bodies of people who have n't yet been identified were found and approximately 228 people are still missing or are dead . In a modern five - floor office building , There was an English - Language school where many people took classes . Due to the huge disaster in New Zealand , hundreds of emergency workers from all around the world have helped people looking for survivors from the wreckage in two buildings . Larry : what do you make emotionally as a black man about the Obama - Clinton race ? To me I feel like they both are great candidates because they both have strong situations and supporters . Larry : Gangsta , do n't you emotionally though , have some tie to Barack Obama ? I just wanna see somebody win that in the best interest of America whether be him or black man whether it be Hilary , a woman , either one to me is . . I think America is ready for a black president by him winning you know how he 's winning so far , even competing to be in the talks right now . I remember in the past , we had presidential candidates like Jesse Jackson . It was a gimmick , it was like a joke , because nobody believed Jesse could win . You know `` Win Jesse Win `` , but we really did n't think he could win . he 's in line with the right scenario to win . and you know whether he wins or loses I feel like he made a great step for black America by even stepping to the table and pulling off something like this . I do n't know exactly what they said , but what I can sum up is this . Larry asked about Snoop Dogg 's political idea , especially Obama , the Democratic candidate and he answered that he was n't involved and Democratic party except the `` gangsta `` party but approved Obama because it could be great step in American history . Yes ! ! ! As I look through the list , what I thought was that many students wrote they want to be a doctor or some wrote they want to be an astronomer or scientist or mathematician . So , I 'll be trying to write a diary for the next few days or so . I 'm very happy to find this kind of homepage , I prefer to spend money on enjoyable things that make my daughter feel really happy like amusement parks , swimming pools , and zoos and would n't rather spend money on buying many souvenirs , staying at an expensive hotel , or drinking too much . During OBON people go back to their parents ' houses , just like Christmas in US . What 's worse is that we had an earthquake the day before yesterday , so there were even more cars He is my church friend . Today two of my friends left our company , they are different , one is optimistic , another is pessimistic . After I master English and get ( OR acquire ) PR status in Singapore . . . . . . . . I 'm shocked : ( I should have interrupted the requesters and told themnot to expect me to close it within 3 hoursas he hadwanted but I did n't , and tried to close it asap . learning English by myself over two years . I am writing for beginning the day because is very difficult for me . Study ! ! I 'll study English little by little . . . I like reading , listening to music , watching tv and movies , taking walks , riding on my bicycle , singing , writing in my diary , and playing with my dogs . A few days ago , I had the great privilege of a person contacting me via this web site , which reminded me about it . She has destroyed a lot of things . But I know , even though / if Toro chewed up every single my favorite shoes I still love her very much . But my English is always awkward : ( I wanted to apply for a lang - 8 blog before I came to brisbane , but I did n't know why I could not ! ! ! ! what do you guys usually do at Christmas ? My MD - player broke . * ' was broken ' suggests it is now fixed . This is why my wife is so angry with him . I pre - ordered a concert ticket for a front seat . This ticket is really expensive but I 'd like to see the artists from the front seat as much as possible . I scraped my knee , but I did not get a serious scar . One is Spanish , the other is Philippine . People created a tower to cooperate . Because they had been speaking different languages . Hanukkah ? and . . . . By the way , today I went to the airport and met my friend . It was so funny ! When we arrived , we took a lot of funny photos ! When my friend who is gon na leave arrived , we took some hidden videos of her . There are so many memories in Toronto for her ! ! My friend gave her a gift . . . it is a letter and thirty five one cent coins because it is my friend 's age , and her name is Penny . because I need good sleep , and have to relax . I know . . . Maybe the best way to learn English , is to have a foreign boyfriend or have a foreign friend So he has to watch the baseball game with a stupid guy instead of the girl of his dreams lol How poor he is ~ ) Surprisingly I finished all of my homework ~ My friend said `` You should deal with stupid homework with stupid ways . My home is under a mountain . In Korean history , it was used to send an urgent message with smoke on the Mt . I decided to register at a local gym , but I changed my mind . I 'll go to the mountain regularly every moring ! But when I took a picture of them , it was really nice when I looked at my camera screen . It 's not one pack but one box . I mashed some strawberrys with the back of a spoon , put sugar in and ate it last week . Afterwards , I put sugar and milk in and then ate and ate . My favorite singers are Alex of The Calling and Avril Lavigne . Tonight I heard crickets chirping . It was much louder than usual . The cricket stopped chirping when I went outside to find it . Tonight I have a cricket to sing me a lullaby as I go to sleep . It took a long time to finish Assassin 's Creed 2 . I stay alone at my dormitory , even though most of my friends have gone home . It 's pouring outside which makes me not want to hang out . I tell them that it does n't make any difference whether I 'm at school or at home . Until I 'm tired of answering the same question . Microsoft Excel . . Aside from these basic functions , we can use Excel Macro Function to automate repetitive tasks . So , it helps me practice listening to English . Please check it out if you can . He was the musical director of `` Pirates of the Caribbean `` , `` The Da Vinci Code `` & etc . I 'm a Brazilian , I 've studied English for 3 years , and I just noticed that my English is not as good as I thought . Thanks for everything . Today I finished the preparation for the trip . actually I was such a stupid person , but my friends helped me understand that . Because I looked forward to meet my girlfriend . The climate is very nice , and every season is warm , even winter . Every morning , I 'm hard to get out of bed . I just want to travel The function of the liver of mammals seems to be deteriorated in spring because of their hibernation . Whether we 'll have lover or not in the future , we still support and encourage each other . Now I 'm studying English diligently to make my dream come true . We have to keep that a secret from my husband because he wo n't like the idea bringing people around when he 's away . Household chores took me about five or six hours and I spent another six hours visiting my parents . Every morning , I often play sports such as football , volleyball or swimming . I would choose this house , but it has a few problems . Please watch this movie so that we can continue this talk . I received a message about the English examination . I need to preview the knowledge I learned . This exam accounts for 50 percent of result . One group is from the Kanto area , my older brother , my wife and I , and the other group is from the Tokai area , my mother , my younger brother , grandma and grandpa . We had planned to meet at the hotel at 3 o ' clock , but my little brother had to go to a job on Saturday , so the second group arrived at 7 o ' clock . We had a dinner soon after they arrived , and had a chat after ( the ) dinner . There is all - too - common topic , the work place of brain is different when human understand each language . And , bilinguals usually say , you should reject Japanese when you study English . So , if you meet incomprehensible word , you should search in English - English dictionaries . But , I ca n't write and speak English without Japanese - English dictionaries . In addition , that translated English is not often general for `` native `` speakers . To study foreign language is hard . They provide a study room , where we can freely study using the books we borrowed . Seoul is my lovely place . It was a very comfortable room , gym area and spa . After I came back home to Seoul from Daejeon , where I had gone to visit my family during the holiday ( Seolnal , or lunar New Year 's Day , which is one of the biggest holiday in Korea ) , I found out that I had received an e - mail message from the editorial committee of a Korean philosophical journal , notifying me that they decided to publish the paper I had submitted in their journal . This is the second time I 've had a paper published in one of the major philosophical journals in Korea . I will be thinking of them . He has had a high fever and has been coughing . I do n't know why , but it was probably because of my old PC and its browser . There were many confusing things I thought I knew . I live in Russia and I want to learn English . I 've had bad luck these days ! A massive headache , sore throat , crowded street , poor air quality , buses which never come , intense classes , and I have an important meeting tonight . . . I do n't know very much . . . . . I 've been whitening and wanted to a whitening gel because my teeth is getting dark . ahh and I can speak Japanese so I can teach it . Anyway if you are interested in chatting and voicechatting on skype send me message or leave a comment . See you ( later ) good night oyasumi bye byematane jaane bai bai ~ I have improved my English by writing a little , however , to speak to a foreigner in English is still hard for me . Then I get more and more nervous , and I reply with bad pronunciation . In the villages , the farmers are very poor . They need clean water and livestock . But if some factories just emit dirty water , it ca n't be good for people 's health . My country needs to take more care of people 's lives , not only the good things . Of course , if you who always tweet in English , follow me ; I will be more than willing to follow you also . : ) Rumour has it that the first year is the most comfortable one of the whole college life , but somehow , I think that I was lied to . But the dentist uses anesthesia before the dental treatment . They have beautiful voices and emotional lyrics . I 'm so excited , even though I hear it will be raining heavily . My favorite writer is Tolstoy . I have a strange habit to go to the Odawara castle every day . I take the first or second Tokaido train at Hiratsuka . I study English and check my planner for today 's schedule . Recently other person take a place of our president , so his comment did n't realized . They are n't differentfrom Chinese politics that much . I 've never been a shopaholic before . All students were very skilled . I think the accident in the first half was the misjudgment of the century . I have to learn English , because I will become businessman this April . Today , my breakfast was an egg over rice , miso soup , dried plum , nattou , and honey in milk . I thought that they 're very healthy foods ! Translation sites are untrustworthy . . . No progress today . After the famous people die , it affects ordinary people who get the impulse to commit suicide in groups and series . And as that happens , the social anxiety increases yet again . Strangely , she got a reply from a mystery person . ) She started a correspondence with this mystery person . At last , she found out who the mystery person was . The mystery person who sent the reply was a different person with the same name as her lover . The mystery person started to let her ( the actress ) hear what happened between the two different people of the same name , by mailing her a request . The problem is that the mystery women has the same features as the actress / movie star . My teacher Yoko is very stern . I speak a smattering of English . Immediately I regretted it because they were not good words . Fortunately he knew that I did n't try to mean what I said . and we became friends . We will meet again at another festival . have a quick rhythm and the video is very colorful . I met a friend with a beautiful girl at the theater . Some time later he admitted that he has feelings for her and is so happy that he could not get her out of his mind and could not focus on working . I guided a visitor around Shinjuku today , who came from US to teach English at highschool . I have been abroad for 9 months , but I ca n't notice any improvement . I am a freshman at hunan international economics university , majoring in basic English . Since I am interested in languages , I am learning nihongo at the same time by myself , though I actually know little about it . My friends told me that I am a happy boy with sun - shining smile . I hope I can infect you with my words and the emotion behind it . Then we can be friends . It 's located in Kyushu . Today 's weather is cloudy and rainy . I have to change . I want to change my life , really . I will have an important examination , next week . I feel a little bit nervous and fantastically excited . It 's my fault . I 'd like to grumble to my mother about that . `` You can do it on stairs ! `` It has great lyrics and a great melody , do n't you think so ? We people are easily influenced by the weather . I hope everybody will have a good and clean day , just like today ` s air and spring leaves ! The Bible I am looking for is an Audiobook . I should study harder . It is irritating me because you have to change to vibrate mode ( it is a mode which does n't make any sound when your cellphone is receives a call ) in Japan . My rabbit has got sick By then my English skill will be better , so I will be able to talk with you more . English level and is helpful to your English study . Having drunk a cocktail at dinner , I am still feeling very sick . . . I am going to go very soon . His birthday was last month . My speciality is forest mensuration and planning . I like listening to classical music , pop , rock and Japanese pop music . Therefore , I do n't like the weather . I hope the dead can go to the paradise , and the survivors will live a happy life . The most important thing when I buy a bag The most important thing when I buy a bag is the color . I went to the karaoke bar yesterday with a junior member I knowthat it may sound imprudent , but I 'm dying to watch the real eruption some day ! Yesterday I attended a series of lectures on the English language . The lecturer asked the audience to discuss the government 's new policy that English classes should be taken by English people ( teachers ? ) only . He arranged us into some small groups , so I talked to two people who are English teachers . I heard that in Finland there are no textbooks , so I was so curious as to why they can be successful without textbooks . In my class , my students are obviously bored and I also can not enjoy it , especially , when the stories in the textbook are plain . `` It 's better to not to have textbooks , is n't it ? One teacher believed that teachers should correct student 's pronunciations strictly , while I had not being corrected sincerely when my pronunciations were bad . She claims that a scientific study shows that people over the age of 10 can not pronounce English correctly , but I do n't think she had spoken English before she was 10 years old . Also , my most frightening experiences derive not from pronunciation errors Every morning It 's hard for me to get out of bed . I always feel sick after I drink beer But I do n't feel sick when I drink wines . Tomorrow I will have class again as usual . I told my English teacher about it , then I said `` Oh , the reason why they broke up is he 's gay ! `` and then I asked our classmates what they would do , if their boyfriend wanted to break up with them to date another man . I said it would be a nightmare , and a disaster ! But my friend said `` Oh , in my case , it 's so much better than him meeting another girl ! `` We laughed a lot because of her answer . But he still needs some rest , and has been lying in bed for a long time . I 'm swimming with my friend . They 're farmers . Currently they preparing for planting rice . I start in the afternoon , so I 'm planing to go to the library in the morning to read a book ! It 's the story of a famous Japanese burglar 's struggle for his friend and master during the war . I am worrying about the enormous typhoon which will come soon . My boyfriend 's sister works at a theater , and she said that she had seen this play and she did n't like it , because it was really weird as a play . The second one was `` Veronica Wants to Die `` . Unfortunately it was a little hard so I stopped it after a few pages , because I did n't understand it enough and I read it very slowly . My Austrian friend can speak English very well . And my classmates can speak English , because some come from the USA , others can speak it as a second language . Fortunately , I could come back home smoothly , but a lot of trees in the yard went down from strong winds . In Taiwan , I 've never tried Mexican cuisine . The price in the restaurant is fivefold more expensive than general Taiwanese diners . I like traveling , so I want to learn different languages . Also , I would be glad to help people who are interested in learning Chinese . When I wake up , I forget everything . Chan taan ahaan tiang took - wan , proowaa tii Ginza , ahaan pang kha . I will start going to school in Ginza for studying Chinese . I wish I can speak Chinese with the customer after studying Chinese for 3 months . weight training , not yoga . I took theTOEIC exam today . I 'm just scard of friends . I have about 300 - 500 people in my friends list . If I think you are my friend , I will put my trust in you . But a lot of my friends , they always like to `` betray `` me . About 5 friends owe me money , so they do n't try to find me and I ca n't find them ! I played too much , so I became tired and slept early at last night . I am busy everyday I hope to make friend with everyone in here . Especially japanese people because japan is my favourite country . Yesterday , I felt sick because I got drunk . Tomorrow is Nossa Senhora Aparecida holiday and Children 's Day . Today is the second day of the beginning of the New Year . The weather is fine and the temperature is very warm . What a fine day ! According to Chinese custom , people will get together in the morning to greet each other . I have an image of people from every country . For example , Americans are active and emotional and Chinese speak hurriedly and are a little selfish . I 'm watching the second season now . At first I thought I did n't want to live in this country for a long time because it was hotter than I had expected and I really missed my friends in Japan . one is Korean Immigration in of Japan , and the other is Japanease ' Kamikaze ' special pilots in the war . of course I know this activity by the Japanese army but I did n't watch the real scene images until today . its a Japanese black history , so we must not do for the outbreak of war and Kamikaze . in those day , I think people believed that we must be alive and die for our Japanese emperor from the education . I think that they were brain washed by the goverment then . The influences you get from other people make you who you are . If you sometimes listen to yourself , you will find that you talk as someone else would depending on the situation . There are many people who actually are not themselves , instead they are a mix of a lot of other people . Granada was an important city during the 800 - year - long Muslims occupation of Islam seems to have been comparatively generous to another ethnic group . I spent New Year 's Day on very spontaneous trip to the mountains with my school mates and their friends . It was very nice to meet some awesome new people . We went to Murzasichle , a small town near Zakopane , a few days before the New Year to take some walks and to try some winter sports . : ) We climbed some hills and walked along the streets of Zakopane and in the snowy forest to admire the beautiful views around us . In China , when u are 18 years old , then u can learn to drive a car , but last month , I went to New Zealand , and I know people can learn to drive when they are 16 years old , but my visa is a student visa . I do n't know , can I learn to drive now ? Also do n't know I have already corrected other people 's diaries , but my `` corrections made `` number is zero . . . . . I learn that the Chinese do not like going Dutch . Really ? Now I can pay for college to help my father and mother ! Suddenly , I realized that I will be a college student at that moment and I would start a new stage in my life . I do n't need to separate trash here . There are no designated trash bags either . In Japanese society , low calorie beers are popular now . My favorite the low calorie beer is `` Asahi off `` . The most two popular languages here are English and Japanese , without a doubt . I 'm not complaining , because the ability of speaking Chinese would remain a privilege in some ways , haha . So , people who are learning Tradition Chinese do n't give up and also others , who are learining other languages , do n't stop ! I have n't bought a present yet - Only neighbors walk through there . I went to library after the test . I 'll go to Okinawa this coming Sunday with my school friends . so I 'm studying English hard . In Central Asia , deserts such as the Karakum andthe Kyzyl kum exist . This is one of the geographical dimensions different from Japan . Also , in Japan there are several sandy areas , which are called `` sand hills , `` but the size is much narrower compared to those deserts . So , I made pre - cooked Japanese noodles . It 's a very popular brand of noodles in Japan . I watched a video by chance yesterday , and it got me thinking about many things . Watching this , I thought that I had only explored a little bit of myself as long as I have been living I learnd a lesson that exploring myself is important . It is around 40 minutes past 12 ( ? ) . I also want to learn some sentences that native speakers usually use in daily life . I hope you guys can be my teachers and help me . I could n't use my computer because my stable went bankrupt . At first , I could n't understand what happened to me . Needless to say , I was confused , but I tried to think : `` This is a big chance . I can change my life . `` It 's very hard to pass the English essay - writing test , and so I must work very hard on it . From NHK news , these earthquakes is 8 . 8 - Magnitude . and these are very massive ! They hit all of northern Japan ! and the Tsunami hit Northern Japan now . My friend told me to listen to the opening narration , so I did . I took the test because the score gives me a certification for english skill for when I apply for a job . But actually I thought that I want to stay here longer . Knowledge from books , we do n't experience ourselves . knowledge . So , in my opinion , books are the more important source to gain knowledge . On the train I read a book called `` Diary of the wimpy kid THE LAST STRAW `` and this book is so funny because , it 's a story that could n't be real . After I got off the train I walked for 3 minutes and I got to the Canadian Embassy . Then , I went to the library and took part in the book reading session . Today 's session was about `` What elephant ? `` . It 's a story about a boy named George , who went home and found there was a big elephant there . George called a lot of people for help but , nobody believed it was true and George had to do a lot of things because of the elephant . This story was very interesting for me because , could you believe it if there was an elephant in your house ? Anti - boycott law in Israel Anti - boycott law was established in Israel . I still do n't know why she went home without any word , so I feel bad today . I work in the company which is in one of the financial sectors and I belong to The Ferris wheel is our good memory before getting married . One of my friends strongly recommended this site to me . I want to go abroad , but I 've never been to foreign co `` u `` ntries . But , because I 'm shy it was so difficult to make friends there . . . I managed to talk with some people . They were from KSA , the USA , Korea , Malaysia , Russia , and India ! ! my listening and speaking skills are not good . . we have only learned English grammar and reading . . . My kness hurt recently . When the tomato jolted on the basket , it made tomato juice . But some of the customers say `` Thank you . `` or `` Hang in there ! `` to me . When I walked along the fried chestnut shop , the fragrance of fried - chestnuts was scattered into the air , which made me drool . I took the lesson from the other teacher but I was given a lot of questions because this was the firts lesson with the new teacher . It seemed as if the story was finished by force . I was very impressed ! `` Akai ito `` means `` the connection between the couple . `` I have a friend who lives in Hawaii . After that he went to Hawaii . He have lived in Hawaii for 9 years . I know what is happening in my brain Yesterday and today , I watched the drama ( or TV series ) `` Sex and the city `` for 10 hours . Because I watched season 6 that has 20 stories . ( or episodes ) One story is 30 minutes long . I love Samantha . The question is whether we should eliminate the one child policy . On the one hand , they need to take care of the elderly , while on the other they need to take care of their children . Exactly . If you have no money then you can not do anything . I have done much housework today because my boyfriend was watching the world cup all night ! I always regard her as my anti , although she is Vietnamis . If you make a correction with a reason , I would be happier ! ! I had seen Avatar in 3D in January , and I wrote about its impression in a Lang - 8 diary entry . This is the latest release . Do you usually think before you speak ? Indeed , why do I learn languages , if I have no one to communicate with it ? I 'm Japanese but I feel that I must learn the Japanese language more . He has to stay in home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guilty and I totally miss him : < I drink an iced coffee after I drink a hot coffee . XD So I can go home anytime when I want to go home . Its original is `` Shushoku - Katsudou `` . Doctor says it will take about one year to heal . My neighbor was rushed to a nearby hospital by an ambulance . At this time , which should I say `` Good night `` or `` Good morning `` ? 3days ago , I loged in Lang - 8 to study English . I found it takes a lot of courage to face the setbacks in life . And both have touched me . One day my mother made me take piano lessons without thinking my character . I prefered playing outside with boys instead of playing inside with girls Since then , piano and music scores have been tramatic for me . Speaking English is very different from writing and reading , I think . Where is the sunshine going ? Though , of course I am really happy that we realized that we love each other . Success or failure Thank you very much indeed in advance for giving me your answers . How to get fish eggs . At the gym , I trained myself by using dumbbells and some of the other machines there . So I was nervous . These days , there arealso boxes for the purpose of collecting money / donationsfor the cases of foot - and - mouth disease in theMiyazaki pref . I made carbonara for dinner ( see the attached pictures ) Yesterday , we had a translating class and it was exciting for us . So far , when I read something in English , I can understand it if it is about something that we have been taught . Honestly , in some fields such as stock market , specialized terms in economy , and so on . So if I am not good at my language , it will be more difficult if I wanna be good at other languages . I really like European architecture and art , so that 's why I chose this department . Though I 'm studying French , recently I started going to English conversation school in / at my university . My native teacher is very kind and I made friends with my classmates . Friend 's birthday ! ! However , fun time ended soon becuase I had to go to the library for an appointment with the librarian . I had my stomach examined with agastrocamera today . First , I drank aliquid to reduce bubbles inmy stomach . Then Ihadan injection to restrain the motion of mystomach . Ithen had tokeep ajerry to anesthetize at the throat for one minute and wait to be examined by thegastrocamera . It was nothing other than a cockcroach ! ! I have found more and more cockcroaches lately . We should be content . Although it 's Saturday , I do n't have any planned . It 's likely that the share prices of IBM and AOL will stay at the same level for the next few months . She had to have seven stitches . I actually have very patriotic feelings - our history is really heroic and difficult . I 'm not good enough at it to write anything ( I 've had just two lessons ) It 's German and if I only wanted to , could I & nbsp ; write something understandable . I 'll modify / correct my mistake . Though my daily life is extremely monotonous , I try hard to adapt ( myself to it ) . Exciting Cities ( Boiling Cities ) I watched the program named Excitng Cities made by NHK . Finally I found the program on internet yesterday . Something is different between the Turkey in the episode made in 2008 and the Turkey I saw in 2010 . Moreover , Japan is also one of the places I want to visit since I like Japanese culture so much . In order to travel to different places in the future , I will try my best to learn languages and always improve . stupid policy I 'll be going to to Tokyo Disney Sea tomorrow . I recieved an e - mail from an old friend . Last week , my supervisor invited me a meeting , and let me know that the company has a new business plan . it can prevent some viruses and hackers . My body 's condition was bad , so I slept all day . On the day of my birthday , I decided to never fail to write a journal entry everyday ! Our president and government . I was absent from my company today because of my sons poor physical condition . He can go to the nursery school tomorrow , I hope so . This is tempura , which is fried shrimp and vegetables . We often eat tempura with soup called tsuyu in Japanese and we sometimes eat it with salt . Both ways to eat tempura are very delicous . he tempura of This picture shows several kinds of tempura . There are many foods which are included in tempura . They are tendon , which is tempura on rice and tempura udon which is tempura on top of udon soup . I was always bothered about what people thought about me . . . Today is the first time I went surfing on the Lang - 8 , and I really want to When we are working we have jokes and fun . ^ _ ^ So we are not well known by people in other countries , especially the people who live in Europe . I want to write an interesting diary . Spring holiday ! Now , I have spring holiday for about one month . Besides , I 've been expecting my package and letter from Japan but it has been delayed . . . I was living in Illinois , in the outskirts of Chicago , for 2 years . Some people told me that I can speak english pretty well . So for now I want to work with foreigners only , so that I can practice my English with them . I 've had many foreigner friends in Thailand and they really like it here , but it 's opposite for me . Today , I taught the way of makeup to a younger member in my club . Furthermore , I was praised for my posture in yesterday career fair ! ! We were in the same grade and the same major . In contrast , I think some English words do n't ( seem to ) have any difference , so I want to know how English people distinguish these words . Actually , I did n't know what to write . In autumn , there are many seasonal delicacies . And I wish I will never have a patient . TRY - WORKS conducted questionnaires on the web and the street to ask girls about which character was the cutest . They were sold at game arcades as a prizes , and Kapibara - san became the most popular character of all the prototypes . He became a big hit among girls , and today he is just as popular as ever . My official duties are to explain the work for my workers , check their work , and make orders for building materials . . . I think that this work is difficult because I am young for this position , but I like it and it brings me a good salary . I am a student at Gifu National College of Technology . I just hope in a few days I can be normal again . However intelligent you are , you would not say these are correct Although I 've already decided to not send any , I have to make a lot of New Year 's cards for my family . What can be considered to be a good souvenir ? ? I ca n't decide on souvenirs for my Thai friend and his ( her ? ) familly . Winter , summer , twenty - nine , thirty - first . . . It 's news to me , so first I have to understand the general thoughts ( people have ? ) about him . A rainy Tuesday I live in the north of Taiwan in Keelung , a famous rainy city in Taiwan . I went to the Gold Coast in Australia from the 1st to the 15th of August to study with my sons . Today , I discovered Lang - 8 on the Internet . I like reading good books sometimes . But now I feel a little nervous because many graduate students are not working . But the students have many things to prepare . You could find something new or something you 've half - forgotten . In addition , to the Japanese , grass is blue , the smoke of a cigarette is purple , etc . . she ` s so adorable and I can ` t wait to see her weird pacifier and hear her sucking sounds . I am actually concerned about it . Fortunately , I don ` t have to eat a lot as long as I study because I did not move too much . Does anyone experience this kind of eating habit ? I received `` A Desk For Charlie Jade `` : episode 1 from Amazon . Charlie Jade is a surprising drama . Today is the day I started watching `` Gossip Girl , `` which makes my boring life a bit more fun . Once I saw the cover of the DVD , I was totally excited to watch `` Gossip Girl `` as soon as I could . Believe it or not , this phenomena might have happened to you before . Has it ? A patient came to my clinic three minutes before our consultation hours was over . but seriously , I 'm considering to go to a foreign country as an exchange student , or take a VISA for a working holiday : / ummmmmmmmmmmmmmmmm . . . It 's hard for me because I have never lived in another country before and most of time , I 've spent in Japan : ( So im not in a situation where I can dramatically improve my English skills , ohhhhhhhhhh my gooooooooooooooooood ! so , I 'm thinking about the other way , a working holiday . I ` m very happy because I met up with my best friends . I think I want to speak English to communicate with people from other countries . I decided to study hard English . I thought this is ridiculous , and I resisted to do it first , but it was in vain . Those all made me just exhausted . But nobody commented my diary . When I feel something , I try to write a Haiku . It 's very nice but my legs ached . As for me , I 've been to Italy , Germany , Holland and Switzerland . This holiday has many days together , I enjoy being at home with family . By the way , tomorrow , I will visit Kyoto and meet up with a friend who was my neighbour when I was living in Osaka . I ate five bananas weighing in total 1 . 5 kilograms . I wo n't do that next time . It is common that hundreds of thousands of people apply for one position in one company , obviously , the competition in China will be more fierce than that of in Aussie . However , some employees argue with their employers about job satisfaction in order to improve their work environment . This essay will discuss what factors are important to job satisfaction , and what employees can realistically expect . In this unlimited competitive society , corporations tend to concentrate mostly on how to increase profits . He loves Disney , so I wanted to send a Disney one , but I could n't find it . In 1932 , she wrote her debut short novel and her writings were published in the school magazine . It includes Qing Cheng Zhi Lian and Jin Suo Ji . In the spring of 1952 , she went back to Hong Kong , where she worked as a translator for UK News Agency for 3 years . But I was a bit surprised to find this kind of site where the registrants assist each other with foreign language skill development . Today , I started to read the passages of the website named `` technobahn ( URL ) `` to learn more about the backgrounds of various fields such as Archaeology , Biology , Economics , Mathematics , Physics and so on . Since my youngest sister is going to college , none of us are qualified to get any Ya Sui Qian from our parents . But , I never want to give up my future ! I 'm wondering if the sentences below has any differences . But I decided to choose the normal version , because it is more friendly on kid 's eyes . I have been dreaming of seeing the Christmas tree at Rockefeller Center . I tried to explain `` konnyaku `` ( it 's a japanese food ) to the instructor from America , but I was totally confused : ' ( I need more practice . ) She failed ( in ) the step - up ( examination ) 3 years ago , so she had to look for an one - year contract dormitory . In Japan , dormitory contracts are mostly for two years but I do n't know ( the reason / why ) . Her contract ended this year , so she had to study for passing the exam and also to look for a new dormitory . When we arrived at her old apartment , she had just finished putting all her things into boxes , so we cleaned the rooms and ( conveyed / move the ) boxes to a car . After we moved all of her stuff , we went to a furniture shop to buy new furniture . It was a little far from Tokyo . But we had a lot of fun and looked a lot of furniture . While I was looking for her furniture , I found a very attractive box , so I bought it . In the way returning home we went to a noodle restaurant because Yokohama is famous for its noodles . These special beans have a hearty taste and smell nice . I studied English today . Takahiko Kozuka finished eighth , but he became the first man from Japan to complete a quadruple jump at the Olympic games . I got angry at my daughter today , so she broke our promise . Then , I thought that this was good for my English study and bought it . Although I have lived in Tokyo for many years , I did n't know most of those Tokyo 's sightseeing spots . The Burger King in Akihabara is a holy ( ? ) spot , because there are little customers . It 's indisputable that cars are harmful too but I think that aircraft which need a good deal more of fuel than cars are even more polluting . I graduated from a university that had many students from other countries . So , I have learned more English than other members of my office . I know my English is not good enough for business , but I will have to work with a client with whom I need to communicate in English from next month onwards . There will be many conversations with this client . A few minutes later , a staff mentioned the train would n't run because of the earthquake . I feared the influence of the aftermath . I study foreign language . Surely , the most universal vocabulary , the most laiconical rules , the most popular constriction help me study English easier and faster . The most modern equipment and programmers use only English . My job is very busy recently . I studied English in school , but I never did learn it . In Japan , we will have a long holiday from April 29th to May 10th , when there will be a lot of tourists going on holidays abroad . This flu came from pigs , but our government says it will be all right if we eat pork . Sometimes there are nice things , and sometimes there are bad things happening . Fortunately , I have n't experienced a huge earthquake yet since I came to Sapporo , although I have experienced slight earthquakes a few times . They are beautiful . I always believe that I do n't have to celebrate my birthday since I have n't contributed anything to anyone around me . My childishness make me suffer a lot in campus while others take their time to broaden their circle . I 've never celebrated my birthday before and neither have I evergot such a surprise . I think [ that ] the British people really do have a funny accent . A very embarassing thing happend to me when I was in Manchester for the first time . Is it because of my diet ( two meals per day ) ? I heard about this website from a friend of mine , who is learning japenese . She said online studying was so much fun that she had improved her japenese extremely / very fast . So I decided to come here to make friends and to elevate my spoken english and grammer . I 've ended up my bachelor 's at the beginning of this year . I 'll begin keeping this diary today . so I 'm studying everyday . I got up at 9 : 00 a . m . I was standing at the booth of my laboratory , and I talked to some people advertising and appealing my laboratory and my study ( major ? ) . As I mentioned yesterday , my friend Minsung came to my home after watching a concert by singer Park HyoSin . And then , we went to a `` teokbokki `` vendor because he said he was dying of hunger . I 'm nothing compared to him because all I 've watched are Heroes and Friends . A sort of mouse that has only four fingers and walks on two legs lives there . I want you guys to correct my broken English and I can also help people who needs Korean correcting . Does the dormitory of the university in Toronto still have small telephone booths on each floor where students can make phone calls ? I went to a park near my house with my sons so that we could play soccer yesterday . This is why I played soccer holding him while playing with his brother . I ended up going to bed again . ( In Japanese ) or `` How wasteful `` ! ! After my cavity was treated , I had a terrible toothache . Fortunately , my older sister 's friend is a dentist . I do n't like these serious meetings , but I like a lunchbox served during it . It was a more important problem than the topic for the meeting . Even though I go to Sapporo snow festival every year , I think it is spectacular . This September I will be promoted to a position that has to constantly fill out a lot of documents . My concern is if I can accomplish my task . My favorite day of week except for Sunday ! Do you know whatUdonis ? Really , though , I could n't communicate well enough with her . Please correct my English . Because they are so yummy , they become others ' prey including ours . I was relieved . I have a fever , headache , sore throat , runny nose and I sneeze often . I have n't gotten the shot yet . I ca n't have swine flu , especially now . I have to go to China tomorrow as a model for a cosmetic company . I am going to the hospital in an hour even though I do n't have the energy . I 'm kind of nervous . During theOshogatu holiday , I prepared to apply to get a Canada working holiday program visa , [ The 34year old England midfielder missed the first half of the American season because he extended his spell with the Italian side . The auther of this book is genius or god indeed . Please tell me what the most important things are for an interview It is one of my all time favourite movies . As you may know , Lang - 8 had been experiencing some technical issues after the latest update which caused the disappearance of some journal comment entries and messages ( friend requests ) In the future I will work hard for my family . Today I will study English and exercise near by the park . I continue the effort in the future . If I walk wearing this trainer on the street , people think I 'm crazy , but if it 's her , everything will be okay ; - ) Besides , most of all them take paid holidays with 100 % commission Right now , I 'm studying English & Korean because of my job and communication . Please become my friend ! It was a nice discovery . A handmade Christmas cake After that , we ate this handmade Christmas cake . Her hair colour is dark blue . But , one rainy day , her brother Jin disappeared . . . . It was delicious . I want to keep a diary to learn English . The roads were confusing , but the police stood at the main crossing When I turned on the TV about 2am yesterday morning , Now I am writing some documents , including some tutorials of the basic systems and how to use and set up stuff . Even if the guy says that he ca n't live without me as he sincerely loves me , and I feel like accepting it , I ca n't . Since I was brought up in a poor family , living without worrying about money have been very important for me . I tried to go outside and see the fireworks display . Other apartment residents were also outside to watch it . My boyfriend will go to golf with his colleagues . A meal consists of chicken , vegetables , potatoes , and so on . We had gossiped about boring routines as well interesting topics like the Casino . I forgot about lang - 8 for a while So I will go to the gas station and buy lamp oil . the cold is very bad ! ! ! ! ! ! There is a dressing table at the head of the bed . Aroma is again important to make it perfect . I can chose the best one for that day from some herbal soaps . I 'm studying CRM ( Customer Relationship Management ) Then , she woke up in surprise . My Literary Comprehension . . . . . . . . . Especially when I walk down the street Saudi people look at me interestedly and greet me . Soccer is very much fun ! The temperature was 37c , unusual in this rainy season . It was useless , they were careful about their health . now Mao may not take part in winter olympics . It was very beautiful . Therefore when we went out last weekend , I kind of got lost in Harajyuku and believe it or not , he led me to the right direction . I applied for a scholarship . But I still have not received any response from them . When I came back home and opened it , I went just insane . Last week , I was asked to translate some papers at my office for a co - worker . I could n't come up with the right word in Japanese even if the English word was very simple or familiar . The Phonix Suns were two wins away from NBA finals last season , Du betyr mye for meg : ) We ( my husband and I ) decided to buy bricks for her Chirstmas present . My dinner was only riceball and vegetables . I had good opportunity to meet funny women and we exchanged email addresses . She was pro - wrestler and she was eating smorgasbord about 4000 calories . She claimed she could eat a smorgasbord about 4000 calories if she could come to this place . She claims that she eats 5ooo calories everyday . I was the only Japanese until the new 2011 February team arrived at my school . I totally did n't understand what my team leader said when I was at meetings . I 've tried to talk with other Japanese people in English , even if only Japanese speakers sit down at the same table as me at lunch time . We mix ingredients such as strong flour , salt , yeast and some others . When I come home , my leg are dead . . When I was in university , I joined the ballroom dance club . My schedule is too full Love letters are normally too sentimental and so full of words that only once you read them again after some time you realize how silly and embarrassed they make you feel . So I dedicated some of my time to writing . Unfortunately , I found that two of the professors seem to have bad ratings regarding class hardiness and teaching qualities . For 10 minutes , two friends and I talked in English in front of our teacher . The picture shows the Sept Sky in Hong Kong , enjoy . I always go to the Starbucks coffee . I did a college entrance exam . Because of the sucky assignment makes me nervous I finished the assignment up . Then I counted how many words I used in the assignment . I ( just ) picked up `` The Dialogues of Plato . `` Since I had promised my kids beforehand , I took my kids and their friends to a swimming pool today . This photo shows a statue of a Buddhist priest in his childhood . He has been praying all this long - long time . because I am apart from them . Do you know Hiro Nakamura ? I heard that drinking water is good for the health . A large number of evacuees from the disaster have stayed in the evacuation shelters . Also , unfortunately we had the trouble with the nuclear power station right after the earthquake . When I pull the drawer , I found some latters . I found blog with iPhone review , when I surfing the internet . A large quantity of the site 's features were developed by American and South East Asian engineers , so I had to cooperate with them in order to maintain site stability and to make sure the translations were correct . For example , there are often some variables in strings , like `` You have learned [ A ] out of [ B ] videos ! `` . So I needed to make a guideline that unifies the way to translate the site 's contents ; I had to consider the difference between English and Japanese . I decided to make a plan so that I do not waste the time I have left . Because of the cold and rain , there were no people except me and my girlfriend . It is better to ride a Ferris wheel in good weather . The master then put out a five - dollar bill and two one - dollar bills and asked the boy . Why did you choose the two one - dollar bills at the barbershop ? `` So I would like to keep writing and speaking English . 2 ) Let 's review the 3 questions I gave you today . But today she said `` I do n't remember `` . I 'm nervous . My hobbies are playing violin and snorkeling . I play the violin about three times a week . We talked about the habits between Japan , Korea and Canada . hi . this is my first journal but , except for reading and reciting , Today , my classmates and I went to play basketball and soccer , and I felt very happy . I suddenly thought of a sentence . Also , regarding internet technology , I feel that it can connect people of all over the world to each other , and that is useful for business in the future and in our life Because of these reasons , I want to work at an internet company and create new services using the internet so we can live more comfortable . A few days ago , I made a decision that I would get up at six - thirty every morning to study whatever I need to . > `` < So it 's all my fault . But I could 't directly answer thoes questions . Anything is OK - common image or personal opinion - . It was first time I met them for `` real `` , but they were really friendly ! ! English conversation is very difficult ! ! ! ! ! ! ! Hello . I ` m a university student . These days , I have many opportunities to talk with Americans , Canadians , Germans , and so on . I ask myself , `` Is this English expression wrong ? This might be wrong , `` and then I stop myself to express my feelings and opinions . If you get a chance to draw on someone 's face , I recommend all of you try to draw fake eyes on their eyelids ( like the pictures above . These are my current works . : P ) It makes their sleeping face incredibly funny . : D We enjoyed the changing colors of Autumn leaves , and we enjoyed the sound of the fallen leaves crunching beneath our feet . - Samurai Sentai Sinkenger & Masked Rider Decade - This movie was very interesting ! Masked Rider movie Next 12 , December . Good summer vacations ! I was born in the Aomori prefecture , which is further north than Iwate , so my parents and brother were not injured . I hope that the disaster 's damage wo n't spread more , and that thepeople of those areas may be safe . I decided to expand my skills in English . This first note is very short because I 'm so tired . They had to check my vision before I buy them . I am very nearsighted . Some people were fighting policemen armed with shields and nightsticks . At first I did n't know the cause of the riots , as Japanese TV stations did n't report them in detail . But in China , it seems to be unbearable to eat raw fish . I could n't do my best . Depression Days So we are losing our work . I write my diary in English and Chinese every day . Hayashi told us about the book written by an Australian broadcaster who traveled to China . After some time , appeared a rainbow before my eyes . The camera of my cellularphone could n't photograph it . I want to work for a passionate , challenging , and creative company . My last wish is to never lose happiness no matter what may happen . I 'm not a perfect person but I 'm proud that I 'm a Christian . first diary entry Because the internet is speedy and wireless . I must practise it as much as I can . . . But I thought the tiger one was more cute than the lion one , so I chose this tiger . My address is on my profile . They seem to hate me since I have been put in charge of an important project at such a young age . I invite my friends over , but I feel confused because of not knowing what should I do with them . On the second day , when I first met Chinese friends , I was very ashamed and confused We call it `` Chakaiseki bento `` in Japanese . The beginning of the rainy season . The question that agitated me and my friends was about limbs . According to this script Moll returned to the real world . It 's in Guam I will not be able to go anywhere unless I get up early tommorow . The club chief is a handsome and cheerful person . It was relieved because generally member of such an inconspicuous club are not cheerful . She became my friend when I was in an elementary school . Second of all , there is a really exciting activity He is the one that recommended me to go to his church for the first time , so It is just like raining fire outside in the afternoon . Despite the electric fan , we still ca n't bear the high temperature . Eating ice - cream is the only thing that makes me happy . Now , I wanna tell you especially about the J - pop artist , Aiko . Is it as hot in your neighborhood ? Usually , I go to see musicals in Seoul . It arrives at Suwon subway station . Cloudy but warm It was cloudy today . I went to a Chinese temple located in the China Town of the Philippines in 2008 . I have some questions about grammar . I cooked dinner for my friends I had to treat my guests , so I went to the supermarket and bought some food . I bought more expensive meat than I usually buy . Their answer was SUSHI . They often make jokes about my skin . The Weather forecast says the rain and the wind will stop by the next morning . Studying in my room is so hard . There are many obstacles ( distractions ) . It is irresistible , haha . The bitter melon was eaten in Okinawa originally but now it is eaten throughout Japan . In addition , it can be used as a green curtain ( ? ) and it is useful for avoiding / blocking the heat . But the various vegetables and plants will help us and our life . One is through the third tunnel , observatory and the northern most station . She is a good listener . However , I did n't know it clearly . She told me after she went to America , she rarely read books in her leisure time , because it 's in English . Some like Yahoo , some like Google , and different countries have their own search engines . I saw `` The Blind Side `` yesterday . The presents were `` smiles , messages , bouquet , dinner , and more . `` Yesterday I finally receieved a big baggage from japan . I 've been eagerly expecting the baggage from my parents . One of my club memberes invited some other members including me . ( = some club menberes ) . I was so furious to my parents and doctors . I was so depressed and sad so , told my mother that I 'm so afraid and sad for staying in a hospital . It was the start of the my terrible lunatic asylum journey . I was in there for 2 weeks . It was the end of the lunatice asylum journey . When I was there , I was so normal to interact with others , alchoholics , schizophrenics , suiciders and dimentias . I hope they get well and live happily . . . . . I am very nervous . I really hope I perform well and can be admitted by the university I want to attend . I feel lonely , because I have to work the day after tomorrow and my favorite city is Seattle . He made a beautiful Latte . ( picture 1 ) It 's a very beautiful city . I am one of those people who has to come here earlier or I wo n't make it on time . Thanks in advance for everyone who will help me make my English understandable for other people ^ ^ `` But I 'm worried that it might not require me to speak English . I want to speak in English . However , I sometimes keep it at a high temperature I was soooooooooooooooo cold . . . . . . . Today is not sunny , so it 's not very hot although it 's summer here . he played football and badminton , although he did n't win he had fun because he met a friend and relaxed after hard work . This will be my first trip this year . I 'm learning English conversation through the internet . But there are so many English words I ca n't remember ! But there are no words I can show my opinion with . A new school year starts in April in Japan , and March is farewell season . But I think thinking about something impossible is important because it changes to real things . If we hope , we strive to fulfil our desires . wonder drugs And I am hoping to study Japanese and learn how to talk , but now I just wanted to give an update on where I 've been . I think all languages are beautiful , only we just do n't have have enough time to be able to discover their dbeauties . That is `` Lang8 surfing `` . That 's true . I think the Internet is a good thing because I sold my bicycle on a second hand goods website [ www . Still , I ca n't believe he has broken his leg ! ! I would really like to meet my host family and feel a different culture ! but , I 'm worrying to ca n't make myself understand in English . I was surprised because many people cosplayed super heros . She tried to ruin the relationship between S and N . I took the role of a presenter and got a lot of helpful advice in yesterday 's meeting . I will do it continually to achieve my goal of going to Harvard . They were couscous ( Africa ) , shan noodle ( Myanma ) , adobo ( Philippines ) , spring roll ( Vietnam ) , guacamole ( Mexico ) . And we , as Japanese , made ' Makizushi ' and ' Inarizushi ' . fortunately , my insurance covered it . I want to go to China and feel an air of excitement that lots of Japanese people felt 20 or 30 years ago . After finishing the movie , I went for a coffee with friends . In Saturday , I got up late because I do n't have a class . Also , I had a breakfast and I read newspaper . After that , I went shopping with my brother and I bought some clothes . I was happy . My supervisor told me ' you should finish your work tonight ! `` but that work 's deadline is still four days away . ? I think that this is excellent in the overdrive pedal that can be bought in this price range . Some of our friends are coming with us . Now I have a daughter , she is 3 months old . When I lived in Japan , I was a volunteer staff and sometimes technical staff in a child - care center . So , I got information from a community college . My baby sometimes needs mommy ( = me ) , so my study speed is very slow . Maybe this entry is a bit long , so I am going to finish it for today . I signed the contract to buy my home : ) It will be 4LDK ( four rooms and one living room , dining room and kitchen ) and will be 2 floors . I talked to a girl from Beijing , China yesterday . A lot of people like to stay in air - conditioned places . Unlike forigners , people like to go the beach , picnics or outdoor activities . It could made her skin get tanner , so she always puts on a coat in the daytime , as well as putting on sunglasses , and rubbing suncreen on her skin . She is very crazy . First of all , I will tell you about my opinion , if we want to be a good boss , I think we have to control our company very well , be fair , and kind . If we ca n't control our company , we ca n't deal with some people or companies , and the workers will not believe in you . Also , most of the workers will disagree about our command because if we do n't control our company , they will not know about our authority . If we are doing everything unfairly , I am sure all of the workers will hate us . Suddenly I noticed what a good husband I am ! ! Until now I 'm interested in it , but Ihave no time to start a facebook . I 've heard that the Singaporeans are nocturnal , because the country is near the equator . Therefore / That 's why they do nothing in the day time , and usually start moving after ( the ) sunset . I wanted to buy it . The J3 has many good functions . Such as an inner speaker , 8GB of memory , AMOLED Display , long play time etc . I am satisfied by its performance and design It takes more than 3 hours . Although I tried to ask my teacher to correct my composition , he looks so busy . There is a real atmosphere of liveliness at the shop where buyers and sellers haggle . I often experienced that . Although I had decided to cook a meat dish for supper , when I went to the market , energetic cries of the clerk from the fish store made me find myself buying some fish . This is my second journal entry . Today I hadan English test . It was a 150 word essay . Iwas thefirst to finish in my class but I made many mistakes . I am nineteen years old . + nain - tiin + Maybe you feel really happy one moment ; you think you are the luckiest person in the world . But , very soon , maybe one day later or 1 hour later , you feel upset ; you think you are nothing . The development of Science and Technology I will show you a question , and I will try to answer it in various ways . One difference , I think , is in the development of science and technology , especially that of PCs and mobile phones . First and foremost , soldiers must put military gear on in order to beguile the foes . Besides , puting together plenty of grenadesfor bombardmentis amust . Meanwhile , others set snares at the behest of the marshal . It 's interesting to know that Dazai declared himself to be the Japanese Baudelaire . So I always do n't know whether my writings ( or ) entries are right or wrong . Ultimately . . It is so difficult , because I have not studied English in 3 years . Two weeks from now I 'm going to Milan , and I 'm going to see `` The Last Supper `` . Before I visit Italy I want to be able to speak Italian a little . If the eye consists of contrastive colors like brown and white like us , well at least for Asians , your eyeball movement is easy to be noticed . Is the drama famous ? Surprisingly , the hair - stylist today seems to have done a good job , maybe he is in my mind ! I love horse races . She is a very strong horse and she is very cute ! However there are disadvantages , for example , if you spend a lot of time on the Internet it is dangerous . I do n't think that books have any disadvantages . On balance I think that both inventions are good but the Internet has got more advantages . I especially love soccer . I am a member of a soccer team & nbsp ; in the & nbsp ; Future University in Hakodate . I am popular in the soccer circle . So , immediately wake up by yourself , do morning exercises , eat enough food and you 'll be ready for every great day and be able to move mountains ! Hello everyone . . . I am an Indonesian . I want to learn Japanese . Nowadays I am gradually finding out . is really bad especially writing T _ T I 'm trying to speak english and listening to english everyday . it 's a big problem for me ! The title was `` Science Allergy `` I must improve my Japanese ability as well as English . As far as I know , H & M has only started selling their products in Japan since 2008 and they have only a few stores around Tokyo . I would like to make many friends on Lang - 8 . I finished five graphics and one graphic is being painted now . I 'm waiting for you ! We , Asians , performed a play , to tell you the truth , I really did n't perform . It 's a weird sensation , kinda ( kind of ) like look at myself through someone else 's eyes . My major is economics . BTW I ate a pizza at Sbarro in Shibuya which opened last month . Nowadays , I 've been thinking about this . When I meet someone from another country , I want to know some expressions for asking new words and phrases in their languages . This time we students were talking about monitoring the employees . To my great surprise a lot of students do not think carefully before doing it ! Anyway , I recommend you to watch this movie ! She is going to play the trombone in Tokyo Disneyland as a one of members of the elementary school brass band in Oct . I always study English while drinking a cup of coffee until my teacher comes . Our factory has a lot of free time . It 's a challenge to explain love with ( or : through ) science . I attended a Techono Buddha , which is an event to make relationship through some workshops between temple members who are young people ( 21 - 39 ) , yesterday and today . And one of them was very weird ! ! However , I could n't carry the ball very well , so it took a long time to carry . I hope I could play the weird game very well next time . So I chose inexpensive but fairly strong ones . We ate Italian food for lunch . And I want to know the American culture . It was quite a peculiar reaction among many people in the cafeteria . I will do battle with mosquitos all this summer season Actually , the machine that had troubles last week is woking without trouble . By the end of Nowrooz children can buy something for themslves with the money which they took from their relatives and parents . Anyway , I usually start a new day by writing in my diary about daily life . I was supposed to bring these clothes when I moved to Chicago , but I ca n't find them in my house . My favoriate videos to watch are the American TV programs . But in fact , with the fashion spreading through our country , the person in question was making a humble apology without a different look . Being paticular about their dress may not be bad , but , I think , unpleasant appearances should be avoided . Beautiful dentist Since I live in foreign country without my mom , I have to cook . I can succeed at living alone and studying . First diary First , I will write a weekly diary . I 'm going to writing my diary here on Lang - 8 starting today . I am beginner . First , I will introduce to you TAIYOU NO UTA , a Japanese movie released in 2006 . I first watched Taiyou no Uta in 2006 . I think it is a good movie and I recommend you to watch it . The actress is Japanese cute girl YUI , her main occupation is as a singer and she is one of the most famous girls in Japan now . You can hear her music in this movie . However I have n't decided where yet . I 'm interested in NY because I 'd like to visit the Apollo theater , which is known for being the Mecca for Black Music , and I 'm big fan of BM . I like google . . and the sense of this website looks like it . . . . It 's a no - brainer that the bear effortlessly defeated Takeru Kobayashi . Actually I bought the ravioli , so I just made white sauce for it . If they attend Siggraph , they have to study , so they are reluctant to go . I saw a movie called Harry Potter . Simons described all of this very precisely . It 's really horrific what these people must have survived . I like books that describe stories like this because I can learn something about a time when I did n't live but thanks to this world I can see what it actually looks like . Today was the last day at school and I received a certificate . They are famous in Osaka , which I am originally from . There 's only one whole day left . However , I have strong likes and dislikes about food . However , I do n't have an I - phone or Android phone . To most of us , friends are the partners , who are valuable to trust in . It is said that please forget me when you are living in happiness , please recall me when you feel sad and painful my friend . She said the different amount was financial charge that was sent each month then dissolved later , so I ignored it . and followed the amount on the paper statment Now I relieved , but I still do n't understand why the department would make such unnecessary procedures to make people nervous . I do n't know many words . mechanical : I respect someone who has mechanical knowledge because I hardly have any . It settles down my mind . I am relieved . A gas explosion happened during the culture festival in Toyonan high school in Tokyo two days ago . So it burst and a gas explosion happened . First , I must work hard to earn more money than last month . We can make original plates by kneading clay . - doing away with oversized trash I rode some attractions such as the Spiderman , the Back to the future , the Jaws . I am going to sleep on the sofa , do n't need cook , go on the internet until late , buy a big cake , talk on the phone for a long time , , , , . In the group , I 'm an English teacher . I invited my English group members . But , my plan did n't really work out , due to an unavoidable reason . Furthermore , I do n't think my English is good enough for a working environment . And then , I suddenly found I forgot to attach an important E - mail sent to my boss yesterday ( I mean the E - mail does n't have the attachment which should be attached . ) . I have never been a girl who likes to smile very much . ( There 're two types of Zorb , one is that you can grab the handles inside the compartment or you 're fixed with your arms and feet and there 's no water , and the other , `` hydro zorb `` , is that there 's three or four buckets of water in the compartment . My second adventure was bungee jumping . But they allowed me to stop at the bungee spot and watched me jump . This is the bungee jump in the same place I visited : ( This man is not me , either ) However , I like , potato dishes , spicy dishes and steak . I am suffering from lower back pain lately . I went to see a doctor and have a body massage almost every day but it was not getting better . so he has to realign my backbone in the rigtht direction . Right now , It 's 23 : 10 o ' clock in TOKYO JAPAN right ? I can made friends who are in California USA and from the UK I 've just registered for an account and wanted to leave something for my first log in . Today , my writing teacher told me some reeeaaaaally funny jokes , eh . . . Cantonese : Movies & Language These Cantonese movies we see on cable TV in Taiwan are already dubbed into Mandarin . Luckily , I got to know an interesting video from youtube which is sent by my friend today . This video has the romanization to help the novice to pronounce the phrase or word . His pronunciation is also very clear , so that novice can get it quickly and repeat it again and again . Yesterday , I spilled coffee on the desk and floor . I rarely spill things , no matter how busy I am . Today I am going to write a note about my background . [ 1 ] Now , y stomach is full because I ate too much . I had a kiwi for breakfast while writing in my diary . I ate Indonesian food ! And the main character works picking it up there . And these countries are advanced nations . As a result , the rich and poor divide extends considerably . And I think maybe the presence of very rich people caused the presence of very cheap people . I have been studying English for a long time , but I often still make grammatical mistakes . This is my first time to wriewrite diary in this citesite . They defeated Qatar , Korea and Australia , so I think it is very worthily victory . The smell of pizza was really great and of _ course the taste was splendid too . Is `` puzzle `` just equal to `` confuse ? `` I 'd like to kinda , I think abuse is the appropriate word , this entry for getting and sharing tips about learning Japanese . Today , I went to see a movie with my friends . The movie that I watched was `` Crows Zero II `` , which describes the fight between Japanese boy 's high school gangs . I can ` t understand why languages like Chinese and Japanese are so popular . There are so many hieroglyphics , I can ` t understand how people can learn it ! ! ! ! ! ^ ^ ^ Maybe because China and Japan are highly - developed countries ? ? ? Have a good Thanksgiving ! ! When I was a freshman at college , my English teacher could n't speak Korean well . Ansan is one of the most polluted cities in Korea . There are so many foreign workers who work for one of the many coporations which are in the complex . Now I think that it is really a shame that when I was a boy , I hated these foreign people and the polluted air . If I were a reader of my compositions , would I like to read them ? As long as I am writing this , I suppose that I have to ignore the bias from other people . And I do n't want to be considered that person who wrote those kind of subjects because I 'm suffering from it . Thus , I succeeded in getting out my office to go to the movie theater . Today , I 'm going to write about yesterday . We bought many clothes . We were very lucky ! He builds bubble - nests and feeds his children until they can swim by themselves . hontou ni shinpai shicau yo = I really worry naze kokoro wa tooku hanareteiru ? what 's the different of koibito and aijin ? I always eat food carefully with my gratitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very popular in Japan . I feel like it strongly , especially when I feel insecure . For example , the times when I walk alone at night . As soon as I realized that I was being chased , I was grabbed by the neck . I passed out after being choked sometime . When I regained my consciousness , he was finally releasing my neck . ( I fainted for a very short time . ) Since he took off his hands , I could use my voice and so I said ' I am pregnant . ' , wishing that he would lose his sexual desire . ( of course I was n't pregnant . ) Anyway , he ran away afterwards and I could go back home safely . senkaku islands collision event Yesterday , the video of the collision event ( occurring ) near senkaku islands ( was ) leaked on youtube . So a border collie named ' Sky ' began to zigzag over a field . He followed Sky 's every move , so his watchful eye missed nothing . When Sky finished the course , she began to bark joyfully . she 's golden - retriever , very pretty , cute , clever To be continued tomorrow . Among them are Korean - style drums and inflatable tubes that bang together to make sounds . Especially , the national soccer cheering group so - call `` red devils `` are famous for their passionate and impressive cheering features . This team is my teacher 's team , and their dance style is POPPIN ' . She is a woman , but I think she is the best dancer ! ! Their dance style is HIP - HOP . I slept in late this morning . We played board games together , `` Jenga `` and `` Zinsei game `` . im studying English and spanish I focus on my work on weekdays . On the other hand , I want to soak my body and soul in something different to release stress caused by work . I have a muscular pain because I did sit - ups and push - ups in the gym yesterday . a questionnaire to fill out . Everyday when I leave the school On my way home , I felt hungry I ca n't feel the festive atmosphere around me . They are both coughing and sneezing . Now I 'm considering applying for a Fashion Designing Course at Central Saint Martins in London . I am a beginner fashion designer . After looking through my proposal , my tutor said ' your writing is little bit cranky , so you need to improve your academic English , ' I checked the meaning of cranky by the dictionary I will start studying English very hard from now on . I just started writing this diary . Some time ago , my country had `` elections `` , I have put this word in quotes because I 'm not absolutely sure about results . Some of my friends believe that the real rating for Lukashenoko was nearer 30 % , and that the election was completely falsified . On the other hand , my parents and other family members , ( my uncle and his wife ) , strongly believe that Lukashenko is our only hope . I know that Lukashenko falsified our elections , but I 'm completely sure that his real rating was nearer to 50 - 60 % , according to my own investigations . This morning when I woke up , I was so surprised when I found out that my clock did n't work anymore . I was late t to school which was was so embarrassing . It was raining cats and dogs and the wind was so strong too . I went to play bastkeball with my friends yesterday eneningevening . I received a China Airline ground attendent first interview letter ! they tried and tried , and never gave up . so I need to use mass transpotation or the attendant shuttle to get to the airport . But I enjoy a feeling of relaxation and also there are many field for vegetable and rice paddy in neighborhood . The highest temperature is 23 degrees . New students and their parents took pictures in front of the cherry trees . I am a University student . By the way , I have been interested in Spanish since before I entered high school . It 's nice , because it was made so that we can learn Spanish for 30 days ! But I do n't believe it , because I can not speak English very well even though I have studied it for long timeX ( Then she answered that yes , I am a sleeper woman . She is coming next Summer to learn / study Japanese . For example , Micheal Jackson appeared in my dream last week and my house was broken into by a kind of stalker 2 days ago . I still remember that it was really funny , but that 's all I can remember . The book so much influenced me so much that I have decided that I want to change my life too . We should n't label it right or wrong , but explore it in depth . I want to improve my English writing and grammar . There was a terrible typhoon . But even it is difficult for most Japanese to take more 7 days holiday . My neck , shoulder and back hurt then and I 've gone to the hospital four times a week since then . I want you to pick up this tweet . Because they left the station while in these days . . . I ca n't understand how these two sentences are different . I joined the workshop of Hippo activities . We all read the conference 's contents of Miss Suzanne about multilingual acquisition . This is the first time I know there is such a interestig website , and I am a chinese student . And they 're my favorite . I saw `` Billy Elliot `` last Thursday ! Sometimes I could n't understand the pronunciation . Hello everyone , I 'm a new member of the lang - 8 community . I find this site interesting because not only can I learn English , but I can also learn Korean or Japanese . I 'm a student of Nanjing University China , my English is not good although I have been studying for 3 years . I 'm working at a cafe which is named `` Saru - cafe `` ( meaning `` monkey - cafe `` ) . But we have to work very hard because this shop was just opened 1 month ago , so we can not give this shop a bad image . You know what I mean ? My breakfast was bread and a cup of coffee . Set the glowing stick in an incense burner , flower pot , or other nonflammable , heat - resistant container . Beginning to write blogs ! ! I 'm really happy but I 'm still . . . This morning , my teacher told us about her daughter , it made me cry . It is a very exciting , thrilling , and heartfelt movie ! My name is Junichi . My best friend let me know about it through his way to communicate with people . I had been with people who make others feel exhausted with those sarcastic remarks until I met him . I do n't mean only through relationships between a man and a woman . Being sincere anytime is the most important thing for me now . Recently . I heard the second typhoon is hitting today . I wonder if we might / will have many typhoons this summer . Study listening , speaking , and writing for 30minutes every day using the English - learning magazine `` Studio Classroom `` to improve my English This custom seems to originate from the custom during the Heian period ( about 1200 years ago ) , where the nobility in the imperial court changed their clothes on this day . However , if I pass the exam , there is a big problem there : finding employment . Ordinarily , employments for new graduates are held in a period that I am in a foreign country . I had a fever at midnight last Wednesday . Now I 'm trying to dictate what you said though , sometimes I notice that I do not understand . I should have concentrated more in our class ; - ( I was congratulated on passing the KAIST graduate school . I 'm guessing his asymmetrical hair style will come into fashion soon ! the visiting lasted only five days , but it was still meaningful to me . Tomorrow my vacation begins . Korea ( actually not just S . I do n't like that Koreans get their political education about Dokdo from their childhood brainwashing . A Weird Trip I really did n't enjoy this trip , it was weird . I stepped on the brake and stopped . He works in Taiyou no ra - men ( = ) ( noodle ) . He is very powerful ( ? ) man . Cigarettes are very easy to be addicted to and difficult to stop . I often bought real milk when I lived in Japan . The May Day vacation is from tomorrow to May 4th . I 've prepared the travel for us such as searching for good restaurants , buying tickets for the aquarium ( which is the largest aquarium in Australia and is near my flat ! ) and so on . Resisting immediate instinct can help improve my future . I like Argentina very much because they have a lot of stars and they can show us spectacular techniques and I cheered them on in World Cup 2010 . However , I am Japanese so I definitely cheered on the Japanese team . No . 2 , some cruel commanders or politicians appear in each work , and they definitely order heroes or heroines to do cruel and almost impossible missions . When I was little , I watched the Gundam series as well , but even women and young boys easily die in each work , so I still remember , I finally stopped watching halfway because of depression lol . If I become able to speak English , I want to watch movies in English . I want to make friends speaking English . I want to go to a foreign country and I want to know their culture and eat traditional foods of that country . From then on , I often listened to American hip hop . The university in Tokyo / Tokyo University is one of the most famous colleges , and most of my friends are very good at English . So please let me know if there is any incorrect grammar or simplistic descriptions . One night in the hotel during a business trip I spent one night in a hotel in Fukushima for a business trip which was far away from Kyoto . I carefully chose a hotel at this time in order to have a good weekend . Absolutely not ! I spent to a lot of time studying grammar , but I forgot so many things . I am 18 years old . I always go to University by train . As you know , Easter is a Christian and Jewish holiday . We celebrate the death and resurrection of Christ , while Jews celebrate the Hebrew exodus from Egypt . In order to save money I decided to asked to my parents to receive some books I wanted to read for so long ( I 'm also a little chubby , thats why I would rather read a book than eat chocolate . . . ) : D Yesterday I bought them . I live in the USA and I love the English language . Who can help me ! ! Also , I want to make many friends from foreign countries . I have to perform a presentation about us diplomacy and write a paper about the same theme . A fall of seasonal snow gives promise of a fruitful year . I am determined to try to write shorter passages from now on . The result of my medical check up , is that my stomach had no problems . Wish is most commonly used in hypothetical situations . So , you should keep a balance between work and recreation . At work , every day you can spend at least 15 minutes keeping a detailed diary of what tasks you do and how long you spend on them . It is widely known that there are parents who are addicted to gambling and neglect their children . I hope the Japanese government draws up more stringent laws against gambling . I 'm a beginner . Because I 'm afraid I 'll open a package of Karigane Kuki Cha , I looked around several shops , but I was n't looking for anything in particular . Their talk is so funny . It is a very convenient cooking tool . The course cost was only 500 hundred yen . some interesting things . Learning English alone is already hard for me . It is my favourite item of clothing ! So I 'm very sad . . . . Two small rice balls , an omelette , two steamed meat dumplings , boiled broccoli and tomatoes . I answered my boss I 'm your `` right elbow `` or rather `` right arm `` . Now I am happy to be with my family , and close friends These sleds were my birthday present from my parents . Today , the weather is rainy . . I ca n't understand how the weather turned so quickly . I think that the diary mabe have much mistakes . so I decided to practice a lot of English in a variety of ways . Today I learnt something very disappointing in the news . Currently , I 'm a senior in my university , and my major is Contemporary Culture ( like Cultural Anthropology ) . My english is like a child 's , so I will just describe my day a little . The promoters are not associated with the government or any national organization . They are just private space enthusiasts . ( suggestion ) Recently , I 've been training for a full marathon of 42 km . because all of the whole sentences are ( in the ) past tense . Do you know `` INUYASHA `` , a Japanese anime ? A long time ago , there was a half daemon , half person , named `` Inuyasha `` , and a priestess ; who loved each other . But they were trapped by a strong daemon and the priestess was forced to seal up Inuyasha . They started a journey together to defeat the strong daemon who made the priestess seal Inuyasha . Maybe it will help me to make a lot friends and to improve my English writing . I live in Hokkaido , Japan . It 's a northern island of Japan . I 'm interested in traveling abroad . I 've had great experiences in these countries . Though my English is n't good , I think I would like to make friends ! From then , I bought almost all of her released albums . I really enjoyed her performance ? ? ? . Today , I attended my English class performed by our sunny foreign teacher . There are a lot of podcasting programs you can download free of charge . I appreciate you visiting our website ! ! I can introduce traditional culture . Last time , I mentioned about my undergraduate days . Actually the women 's college which I graduated from was in Kyoto . It is a pretty historical and mysterious place . I heard that Kyoto 's central city has been protected by a magic square . But actually this magic square is used to hold monsters in . someone beetles nails at Kifune - shrine . never go and see the people pounding the nails nails at Kifune - shrine . I was really jealous when I stayed at my friend 's house and saw his family . I feel like I wanna be one of them instead of going back to my country , Japan . There is nothing I want to own aside from a true family , unlike mine . My parents sent me a pearl necklace and earrings . Welcome to Lijiang ! I lived Canada in april . Other information says that children who have imaginary friends may have advantages in terms of language ability and other intellectual functions ( abilities ) . There are many restaurants called Carinderia in Philippines . I LOVE CARINDERIA . They were about her name , age , what her favourite animal is , and so on . I suppose that this is a difficult problem . I found out there 's a twitter account for Toastmasters International , for the members of Toastmasters . In this sentence . `` I 'm sitting behind my work desk and enjoyingthe beautiful weather outside . `` I think , that I ca n't say `` enjoying `` , because its present continuous . Maybe I have n't had enough patience . Broadcasting companies are providing their TV programs through the Internet . It will be an important year for me at the meaning of exchanging my life . Someone help me ! I was impressed with the fellow phrase written about Google co . I ca n't understand any of the news broadcasted on CNN . If I did n't hear about this method , I would n't have But my writing and speaking skills are under - developed . I hope Lang - 8 helps me get some chances to improve at writing . First , I 'm going to vote and then enjoy strolling along the banks of Sumida river . It will be lovely Sunday . Christmas vacation period When last I heard their soothing chime . Within the tomb now darkly dwells , That tuneful peal will still ring on ; wow ! `` Death note `` is so wonderful ! And it will be two posts : english and Japanese ( because I should learn both of them ) . But in September , I will go on a trip to Hakone with my girlfriend , Fujiko . With it , I can talk to my colleagues and clients and send e - mail . I learned about this website from a friend . I decided that it 's a great opportunity to test my English skills , while at the same time helping others who need to improve their Chinese . But it 's too difficult ! If you click the address above , you can see a pregnant woman posing for a nude photo . If your wife were pregnant , would you like her to pose for a nude photo ? If you were pregnant , would you like to pose for a nude photo ? I feel it is embarrassing for me but if my wife really wants to do that , I will not oppose her . In April , I have to work like a dog because of the settlement of accounting for the fiscal year of 2010 . But people will remember me deeply . I rethink my current problem . Another friend said that she was too lazy to do her homework and mentioned that she can wait to do it tomorrow because she can turn it in on friday he he . The last friend I was talking to is from Japan . She is really nice , too . She is polite and when I chat with her I feel warm inside . However , it 's a good thing for Japanese travellers and a bad thing for foreigners who travel to Japan . Cheerily ! ! ! After reading this article - - - What Life Means to Me , I learned more this great American writer and I really admire his bravery , perseverance and diligence . Although he finally found out the upper - class is not as good as he imagined before and then he decided to go back to his spiritual paradise ; however , he still achieved it . He is another good example of ' ' once you believe it , you will achieve it . ' ' He taught me people should pursue the truth and what they want deep in their hearts . After several times of failures , he began a frantic pursuit of knowledge to become a brain ? merchant and then he finally made it . Bran merchant ? He read a lot and wrote a lot ; he really was a diligent writer . I have no exact answer now , but I will try my best to be brave , to be persistent , to be diligent and to live my life . I was the youngest then all of us , but I could n't play well . First writtingWriting She will go abroad to continue her studies . But I was very satisfied with the bloom and after about an hour I returned to my house . I wonder if I 've got some illness . Recently I really want to have macalon . ( macalon ? ) Both street are lined with department stores , high - class boutiques , galleries , theatres , and many other trendsetting shops . C : Is there a life lesson there somehow ? I lost her strength and cheerfulness a long time ago . And I was somewhat ashamed that I never cared much for anime , because I thought anime was something that only children and geeks watch . But from now on , I need only 20 minutes by bicycle ( to my knowledge bicycle wo n't be crowded ) . Hobbies and Interests But nowadays there are many ways to thank mom . I had to do a lot of laundries , to make 3 bid meals , to clean up in wide rooms . I failed the interview . . . Two men were waiting for me , and the messenger was there ( too ) . I forgot to write a diary yesterday . So , I am going to write a diary about a thing that I did yesterday . The less I had was for forty five minutes . I have a question about an English expression I heard yesterday , which has nothing to do with YOGA , I would like a naitive English speaker to answer this . My question is : what is the difference between `` I know her . `` and `` I know of her . `` Anyway , I think I will have to stop thinking about it and concentrate in order to get at least 580 points . This will be the 1st time I take this exam , but hopefully , I will pass it = ) Fingers crossed ! I could try activities that are impossible in usual days . Playing golf in an uncrowded course . I had a lot of time to think about myself and my life , family and job . One week has passed since the great earthquake . I learned this word , Itchy and Scratchy , from The Simpsons ! But because of I wanna create something new , 2 years ago , I watched the `` Club World Cup `` finals at Yokohama . Writing a diary with English is not easy for me , But I 'll try it enjoyably . I have thought about systems engineering , But the thought of staring at a screen and staying behind a desk is unbearable for me . I think it was anaemia or an epilepsy attack . There are two guys who came to the company 3 weeks earlier than me , and we are a team that came to China together . As if by magic , even though I was gloomy and depressed , I became happy after changing my hair . The air is dry in Japanese winter , and even worse , Japanese people use a sticky nylon towel when washing their bodies . Do you like coffee shops ? Today I went there with my friend . We do n't have many tall buildings and it 's not always crowded . I 'm in my last year of college . What should I do ? I like `` pasta Arrabbiata `` and `` pasta Carbonara `` . If she writes 1 script , she gets paid 50 million won . I do n't think there is no value in enjoying friends . Could you tell me the best place to visit in LA ? These days I have plenty of work . When I was an elementary school student , I was subjected to bullying at school . One day I listened to this song on a radio program . I think , a year ago , had felt like quitting . I was sleeping until just now though . . . I played Frisbee , ball and hide - and - go - seek with Rin in the backyard . When I called my mother , I pushed my patience to the limit , but I broke down & cried at last . . . My mother just listened to me kvetch & and encouraged me . Actually , I met her last month in Vancouver . Fortunately , my family and friends encourage me all the time , so I can get up the courage to find a new job , continuously submitting resume , attending interview . I went scuba diving in WAKAYAMA . I got lectured about a license for scuba diving including how to use a camera under the sea , how to explore the sunken ship and how to dive deeper . Russian animation It 's a cloudy Tuesday morning . The door of the classroom was locked though , maybe because a group of students were presenting . Public speaking Tonight , I attended a public speaking club meeting last winter . I think that Communication is the most important skill for living in society . Many kinds of people are enrolling in the club . It is like a business people , college students , foreign residents , retired people , and house wives , , , , , , , ( but I will not be blackberry or Mac pc user . patience was stronger than the tiger 's . Tokyo tower is a symbol of Tokyo , the light was turned off since the earthquake . The stricken area is very hard to live in . There is no Water , no electricity , no gas and no food . Okay ! Good night and thanks for reading : ) Today I had a enjoyable class . With abundant experience in clamping down smuggling , he shared some practical techniques like how to recognize a fake LV bag , and distinguish shoddy China mushrooms outwardly . It destroyed many things , buildings , houses , and so many peoples ' lives . At that time , I did n't know how awful it was . and at the same time , I saw japanese people have great , respectable manners even if they are facing a crisis . Actually , I do n't know how the Japanese have grown our great manners , but there is one thing I 'm sure of . I will go to a dermatological doctor near my home . Boogie pop unknown This the latest in this series . I have a lot of problems to solve at work which happened one after another . I am very glad to be here for two reasons : I can find many friends here , and I can improve my English writing ability . They were photos of their graduation ceremony . Thank you for reading my composition . When she first saw the present , she slapped and kicked me many times in front of our common friends . Also I did n't know why stress , intonation and rhythm are so important . I just purchased one book and went home . I will cherish relationships with students no matter what . I think that If I can speak in other languages I can find a good job more easily than if I only know how to speak Spanish . First day I met new people in the student 's residence , a lot of people came from other nations such as Brazil , Korea , Turkey , Germany , France . . . After a long contemplating , I have decided to do a short business course at an institute in town , starting on Monday . university cooperatives in the south asian region . Nice to meet you , everybody ! English conversations . First , I really would love to go to the Salvador Dali museum because I 'm a big fan of his . But the attempt by the government to prevent terrorism before it happens may possibly infringe our freedom of thought . Futhermore , if we allow the government to monitor our private life , we may not be able to trust our government under the strong surveilance . At New Year 's Eve many of japanese prepare for a good New year . By the day we prepare a new year 's dish , clean the general house and write new year 's postcards . I 'm studying english and german . I wanna go study abroad . This month , Haruki Murakami , one of the most famous Japanese contemporary novelist , published his new work `` 1Q84 `` and , as I anticipated , the book caused a huge sensation . I believe so . At first , we watched the DIU program . The people to be happy are you and I ! I think , photo can say more than sentence and can tel something which it ca n't explain with words . I wish everyone a merry christmas . I 'm wondering how to feed it ; if it could be hactched ; can someone tell me how to keep a gecko ? In severe cases , hypotension , dyspnea , loss of consciousness , cyanosis could be observed . The time just flies . I am from Taiwan . Has anyone heard of this country ? I am glad that I found this interesting website . There is a custom to eat sushi rolls on that day . There are many things to see such as mysterious stones , ancient tombs , very old temples , and very old shrines . The first picture is the ancient tomb of Umako Sogano who was the strongest minister in Japan at that time . The second one is a mysterious stone . So they work a little and , after work , some of them study for pursuing their future career , and others just enjoy their hobby . At the end of April , I came to Hawaii to transfer to a university in September . So , I hope my writing gets better through Lang - 8 and I make a lot of friends around the world . I 'm a Japanese girl and a student . 4 paprika The taste was OK and I think it is healthy and good for diet , because of not using oil . Last week I bought / purchased a personal computer . I saved money for almost a year in order to buy a new personal computer . It was my first experience . According to statistics , if this experiment goes on , the most beautiful woman in Italy would occur after twelve times . So I went to the supermarket this morning . That 's why I 'm studying Arabic . I hope I am going to get better soon . The teacher showed many pictuers of the park near the school , such as `` adumaya ( ramada ) `` and `` hujidana ( a wisteria trellis ) `` and asked how they are used . For example , there is a large park near his house . The teacer asked `` Why is there a trashcan ( or , garbage bin ) in the park ? `` `` To put my gabage in it , `` someone answered and everyone nodded . Of course , I could n't answer the question either . `` You put garbage in the trashcan , in order to prevent blind people from stumbling and falling . `` The class was valuable not only to students , but parents like myself . I heard that there is a very big burger in Lotteria . It is a famous fast food chain in Japan or Korea . But I 'm little nervours because of my communication skill in English . My friend who runs his own design company asked me to make project management of the fashion brand project . Nowadays it is said that global warming is already happened . Recently I met various scientist to asked about it . Many scientists lie to get research 's money or I am thinking what should I do to save our children Why does it sound unsophisticated if I put everything I want to say into words in Japanese ? I thought . What should I write at Lang - 8 ? First step in the learning English First step in the learning English and I hope this internet service can help me in this interesting subject This will be my first trip after I got my job , and every month I 'm putting a lot of money in the bank . I want to say `` thank you `` to my lang - 8 friends . Thanks for your help ! ! ! One day , he found a mouse in his apartment . I decided this year will be different , so I 'll try to take the TOEIC test . The training lasted from Tuesday to Thursday . How beautiful the sky was ! It 's awful . Another thing is that my friend and I were in the middle and high school classmates , but we have n't been together for 6 years , before I came back to Qingdao . I 've watched ' Samanta Who ' . her house ' I hope someday I can watch all english programs on TV without subtitles and rewinding . The bad quality is cheaper but I think it 's not always the right choice . She made two different types of salad and then cooked some very tasty spaghetti . I got to know her through my teacher , who teaches tea ceremony . Fortunately , I have several friends in their 60s . When I went through a path to the Teaching Building and I saw a beautiful scenery . Anyway our school have this scenery everyday during the winter . Even though I can read and listen to English , it is difficult to write in English . Listening to English is easier than speaking it . I went for a lunch with my colleague at Chinese restaurant near of my office . It is my first diary . it 's not acceptable , so I told myself to score 730 or more on the next TOEIC test in the end of December . Although I only have about 4 months which I can use to increase my score , I think it 's a good chance to improve my English effectively . It is a prevailing sport which spreads in every corner in China to the point that we call it a national ball game ! I can get a sense of achievement in this process . That includes shaping their nail , removing cuticles , manicuring , repairing nails , and nail art . At about 9 : 30am , my homestay mate and I went to my classmate 's flat because we there was a christmas party . There were about 14 people from the same school but from different countries so we spoke in English . I think the party was good for us . At today 's party we prepared a lot of food . Sakiko taught me how to make muffins and she also made a pizza . Other people brought wine and juice . We chatted a lot . Today was a very good day . Today , I taught how to apply makeup to a younger member of my club . Furthermore , _ I was praised for my posture at a career fair . Since I went to senior high school , I have been crazy playing basketball and paid much attention to the NBA stars , such as Michael Jordan , Kobe and so on . I heard from my friends who said `` Granville Island was fun ! `` So I went to Granville Island today . Thank you very much for & nbsp ; correcting my sentences , I really appreciate everyone 's help . I think we still feel the cold on the surface of our face . . When most japanese people speak to someone who is older or they have met for the first time , they usually use the honorific . As you know , there is no way to know the answer and nobody can tell the truth . But as far as I can see , most Japanese people are scared of hackers . First Diary See you next diary ! ! ! ! I need to solve a lot of mathematical questions and find time to study to the others subjects . The farmers could get no clear explanation about their animals and it 's very unfortunate . This is my second time writing a dairy in English , which is very scary and annoying to make mistakes . I want to improve my English . Recently , more children like to eat fast food because they find it delicious . Although , fast food is very tasty , we can not often eat it because it is unhealthy for the body and causes conditions such as : obesity and high blood pressure . I went to Gotenba Outlet mall with my friend yesterday . You need to do a lot of training with skis on powder snow if you want to reach the same level as you can with a snowboard . The Fukushima nuclear power plant had supplied the city of Tokyo with electricity . To learn about her character , I tried to see a interview on YouTube about her but I could not understand it . The next day , I felt sick and knew I had a fever . Do n't go to a hospital or clinic directly . Second , If you are diagnosed as infected , stay home for 10 days at least . `` Doc , I know I 'm OK , but I have to see a doctor under company regulation . They 're a waste of test kits and Tamiflu . Would you prefer that I send them by e - mail or conventional mail ? This is first time I 've had to write in my journal since my son 's two week spring holiday began on March 20 . If possible , I want to study abroad so I hope you guys will help me have good writing skills . I had saw the foreigner who imitate DRAGONBALLs character Gokuu . I was glad about the foreigner who was completely absorbed in Japanese culture ! I was tired . Also drinking and eating under the cherry blossoms . I think most of the people went away to enjoy a vacation . So , I am relaxing now . It was slightly rude of him , was n't him ? Hope everyone can give me some suggestions to improve my English . I just pretend to be happy , cheerful , and positive becuase I do n't want to reveal my real personality to them and make the mood unhappy . Anyways , many friends misunderstand me because of what I show to them . So , I just want to say to them that the things outwardly shown to you are not everything . Do n't be obsessed with a bad side . I 'm depressed with only one bad thing happened to me . I 'll be moving on October 24th . I 'd like not to watch some TV programs but . . . In the afternoon , I went to class and my teacher was so angry at my classmates for being so naughty . I told my teacher that her face was so perfect , especially her smile . First of all , the developed city in Malaysia is metropolitan Kuala Lumpur . You can find a lot of churches , temples , mosques and Indian temples . Malacca is a historical place which was colonised by the Portuguese . It is a very cool and humid place where the temperature can be as low as 17 degrees Celsius . And the theme park is fascinating with its roller coaster . the standardization of wages . However , it is very difficult for me , because January is Due to the fact that their faddiness , I was kinda worried about us going to that resturant because what they carry is very Japanese like I mentioned at the beginning ! So , I want to ask you how I should deal with it . Recently , they have appeared in dramas , movies and on the radio . They fought for it , and a very skilled bird caught one piece in air . I know he 's only liked in France and Poland but seriously , he was a great man . A good friend for me is someone who realizes my hard or happy mind . They serve very super strong coffee . And thanks to the caffeine , I could n't fall asleep till 2 a . m . I want to buy a flute or a piccolo . That is for the French horn ( with the piano ) . Last year , I arranged this song and played it with my fellow friends at a & nbsp ; concert . I 've chosen a healthy lifestyle , which consists of early and fully sleep , and yoga and slow running . She nodded and said , `` I want some pineapple . `` There are people at the conference who have good ideas for society in their mind and they can explain these ideas to everyone in English . I guess they would need to good mind be smart , good at public speaking , knowledgeable , and have some experience in the field for their presentation to be good . Hi Justin , I 'm your biggest fan Kate Min . I 'll going to watch the movie in April , and if you come to our country I really am going to your concert . We grilled pork ribs and shellfish . I did n't say a word . My friends called me , but I was getting ready for an examine . About one year ago , I entered the university . I do n't like the `` TSUYU `` because we do n't enjoy playing outdoors . Besides , to my surprise , my friend also had her hair cut ( looks like me ! ! ) yesterday : ) I have learned that what is important for a culture to have various aliases . Regarding my recent situation , for a long time , about 6 months , it feels like nothing of value has happened to me . I am a lucky boy with so many good people around me , are n't I ? BDI , the most important figure for maritime economy , has fallen down more than 90 % . Naoto Kan , the Japanese Prime Minister resigned yesterday . Banri Kaieda candidate for the next Prime Minister election , so some people say that the next Prime Minister will be Mr . The population research result showed that Mr . He can speak some Japanese words . get him interested in Korean language ? There is something haunting ( in ) my mind . Some pest control staff came in and began the slaughtering this afternoon . People say , winter is the season in which people put on weight the fastest . Do you understand ? What a coincidence that they both break up are not perfect with their former lovers and have the chance to get along with each other . then Finally , they find they are the true pair . I 'm interested in Barry Manilow 's music . There is a special exercise ( ? ) in Taiwan called fishing shrimp . They can help children improve their language skills . Maybe because of the differences of our culture . . . . ? ? It rained during the latter part of golden week . By the way , are there long holiday like golden week in other countries ? Today , I went cycling to keep healthy . I am a little bit stressed from my work . However I am not used to writing a diary . I work at an insurance company . Please see Japanese people 's power and cheer for Japan . Lucky ! I suddenly remembered a family living in Australia , that I stayed with for only 1 week , about 8 years ago . They remembered me . But we have drifted apart because we have moved and changed jobs . . . I think I can look for my lover among the people I meet ! I bought Mac eyeliner at Takashimaya . Anyway , it was really exciting when Choi Min - sik assembled the puzzles he got step by step . At this time , I 've also become hungry and sleepy . I am practicing English for one year . I want to speak to people all around world and make many friends ! : ) In this fair , lots of EKIBEN from all over Japan are gathered , so it was difficult to decide which ones to buy . I will share these with my husband . As the test aims at business people , the words and content are slightly slanted towards them and the field , she said . I watched the anime of Detective Conan yesterday . Playing the guitar I like playing the guitar . I have a gut guitar and an electric guitar . So , I usually play classical music or Japanese POP songs with the electric guitar ! I think that I should play the guitar everyday , but , I only play it two or three times a week . When I watchYouTube , most people play the guitar with very nice techniques ! After much practice of playing the guitar , I 'd like to upload my video someday . . . G ' morning . I was working on my thesis which is about the communication of rock music in china . I kept the music - box on playing classical music . There might be something I missed in reading this email . Do you think there is anything suspicious ? But I do n't usually do farmwork , so I was exhausted . I never understood the correct application of the word : actual and / or actually . Now , I 'm a fourth - year student , my English is now clearly better than it was , but I still ca n't talk fluently , or at least without mistakes . I could finally come to this site a few minutes ago . we met in the Phillippines , when we were on vacation . It 's first time for me to go there , and I am looking forward I want to communicate with them by speaking Korean . So if you are single and watching this video , dont despair , hopefully you can get a girlfriend too . G : Are you an extremely distant relative of his or something ? You 're here to tell bill he 's kicked off the insurance because he 's too fat ? Bill : Hey Cassie . BGF : No , Why is it so hard to believe that I 'm Bill 's girlfriend ? B : excuse me , Sir B : see honey I told you greg 's a good guy . Is n't he awesome ? G : I dont want to think about your good stuff bill ~ or your bad stuff , really any stuff , that , that involves you . It 's not pronounced like the word `` go `` . `` Go `` is pronounced shorter than `` go `` . It got popular in Japan as even Shougun were once very addicted to it . A long time ago , when I was a student , I studied English for a university examination . It was unnecessary in my daily life and for work to speak English . So , I used to go dressed up as a cosplay ( costume play ) to the events celebrated in Madrid about comic , manganime or japanese culture with my friends . This character is a boy , so I am going to have to do something to hide my breasts ! Everyone sitting around me did n't know it as well , so he was very surprised / shocked . . . : D There are rice fields as far as the eye can see . I love all the characters , but I especially like `` Gori `` . Help me + ) Her friend , Kumiko , took Mie to an Italian restaurant last Saturday . Mie felt happy having such a good friend and family ( Of course including me ) . I dislike rain . My microwave suddenly broke when I tried to warm a cup of milk this morning . It 's raining today it 's a interesting movie , in the movie have . two lives to choose ? the one , ordinary life , the person goes to school and gets married and go to work . Winning dancers performed in the TV Show . `` I was upset because you did n't show up yesterday `` This evening I went to the library to study English . The rain in those prefectures is so heavy that the evacuation order was put out by the government . And about four hundred thousand Nigata people have been evacuated to a safe area . If Prime Minister Hatoyama does n't propose a good solution to U . They had a good sport spirit that helped them all the way long through this competition . Congratulations to all Egyptians ! How to solve problems like Maria ? I 'm not interested in luxury labels like Chanel ( although I 'm fond of fashion ! The company will search for your ideal person . I just checked if you wrote on twitter . I stopped at a department _ store , and a shopping mall on my way to her house . Both English class and Chinese class are taught by native teachers . SHOPKO is one of the biggest shopping centers in Wisconsin , which is where I live right now to study English . Therefore , I decided to buy juice at Shopko instead of from the old vending machine . Au pair is famous in Europe , but America does n't seem like be . If anybody ( does n't care ) canto talk with me , could you help and advise me ? Today , I will talk about my opinion on culture differences . As I showed you , art festivals are strongly related to local people and contribute to stimulate the regional economy . Please try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs around you . The buildings and arts you see will refine your sensitivity . This time , I wrote and uploaded many entries on purpose . But I 'll upload entries and keep my ( regular ) pace from now on because I 'm ( now ) satisfied with this . I was bored with this . In China , we contact other people by using QQ , it is like MSN in foreign countries . It 's more difficult than using lang - 8 . I do n't know many spoken languages , and it is hard to use past tense , but on the other hand , it 's more effective to learn English . Aha , maybe I 'll use MSN more than QQ , haha . So , if you want to contact me , you can message me and give me your MSN address . Wow , another way to contect to people , that 's very exciting . In traditional culture , cigarettes are seen as a lubricant for personal connection . Bar and restaurant owners do n't want to offend their customers . today I started a photoshop class . I like photoshop So I was impatient , because I felt that I had to study English . I had to drive slow in order to stay inside my lane , because I went over the lines due to poor visibility . Although I know my new school will have many anxious moments , and things to do , but I think I will study hard . I 've always known that I do n't know get along well with my parents because we do n't have much time to talk with each other . Even if you do n't know it , you are able to access more detailed infomation easily than what I can explain I went to science world today , Because I like science and I wanted to watch the LEGO exhibition . Season 5 has 16 episodes , and one episode is almost 45 minutes long . Actually the storyline was really mysterious . . . I heard the final season is already available on DVD . I often try talking with foreign people . He said , `` Oh shit ! `` He should be more careful . I started having English lessons using Skype . and think in English , write daily in English . I promised my friends that we would perform ( ? ) in church . Our band is made of bass guitar , acoustic guitar , violin , piano , drums , electric guitar , jembe , cabasa , etc . . . . I think that if someone would help me get an English name , I would be very happy . Thanks ! ! Some people were running on the beach . Tomorrow at 9 : 30am , I will be studying at my university . We have had an 8 day vacation due to the Songran Festival . I had wanted to transfer to ICU or emergency department three years ago . I read the Economist , an English newspaper , everyday . I understand enough to hate some words that came from French . Today 's menu was marbled beef and beer ! I usually ask new students some questions before a Japanese trial lesson as below . - Make a Japanese word using Kana characters from the keypad . I am hungry now . . . . I am happy if we do n't have snow in winter because I do n't have to clear thesnow . ( It is tough work ) But it means the earth is getting warmer and warmer . . . . Let 's think about it together . . . I did n't even know what subjects I was interested in . My recommended drinks are loyal ( royal ? ) milk tea , green tea latte and cocoa . First of all , It helps people become friendly . After sitting for a while , They played the trailers of `` New moon `` and `` Avatar `` that will be coming soon in December . It is composed of 2 sections ; one is the Listening test , and the other is the Reading test . Now I have to decide which course I will go with . So I want to keep my diary in Chinese . Starting today , I will go to Kindergarten School to pick up my son . . We have been invited to the wedding of a church member , so we planned to buy a dress for that . When we entered the Okonomiyaki restaurant , we were shown to the seat in front of the big window . ( showed to the ? ? ) We could see the Doutonbori river from there . Today , I went to Kyoto for my appointment with a doctor . But I believe I can do it . Generally speaking , a man might well think , if a woman who he proposed to eat out with is hot , that it is better for him to pay all because a hot woman who a lot of men consider to be hot might be used to being treated by other men , especially middle class men who have lots of money . It is very important to keep trying be a good speaker , like a native speaker of English . If you talk with poor pronunciation , that would give a lot of stress to your friends who are native speakers of English , because they have to concentrate to understand your English . Does everybody take two days off during weekends ? Thus I take two days off irregularly . On the other hand , it is probably true that a lot of places are not as crowded as they are on weekends . During my break , a lot of my family members came to see me and I was really happy about it . Black music was center of my school days and I have respected a lot of musician . Stevie Wonder , The Root , Roy Hargrove , Earth , Wind and Fire , Cypress Hill , Erykah Badu , Jill Scott , Donny Hatherway , O ` Jays , Isley Brother , Big Punisher , Xzibit , and so on . . Actually , nowadays , I have enjoyed Latin music like salsa , tango , son , bossa nova . His rhythm is like jazz . Instead , I 'll send you a present spiritually . Hello everybody , my name is Stefania , and I am from Colombia . I went to Colombia last year in my holidays and now I 'm studying academic English to get ready to start fundacion in July . It sounds approximately like this : My family and other family members were there and many acquaintances came . This conversation benefited me . Kotatsu and Oranges It is to be a pilot who operates a passenger plane . My hometown is Okinawa , which is on the most southeast island in Japan . I had not been aware of this job , but as I look back on my life , that maybe has affected me . The first one is to be employed without any license . I 'm not surprised that Japanese won the award because Japanese tend to be strong in the animation area : ) However , I think it 's not easy for foreigners to get the award and I would praise his effort . Now I understand why this website is so useful . However , I have a big dream . It 's very expensive . . . , so I have to save a lot of money . Then it starts to smoke and catches fire . When I was in Ireland , I was in TV add for Smirnoff ice in 2002 . I heard from my modeling agency that there was a TV adaudition for Smirnoff Ice and I was successful in the audition . I had been searching for it for along time , but I could find it . So , I gave up trying to find it . I was at my friend 's apartment and he was watching funny TV commercials from all over the world . Then he was trying to search for it and within 10minutes he finally found it . So I look forward to seeing her again but they were busy to go to concert soon after arrived at my house . They left for concert before I left for work . When that happens , my pronunciation sounds very weird . First reason is I ca n't come up with next word to say quickly . But after an exercise consisting of one sentence . . I was able to understand that sentence just by hearing it . Also , I do n't ( do not ) mean I understood it because I previously knew the sentence . I will continue the challenge of speaking because it improves my listening ability . It was only today that I thought of this to improve my English . In order to make my class more interesting and professional , I spent a lot of time learning about the football game before the class . Mom raised me . Mom passed away in 2001 . Our place became quiet and empty . I will do my best to patiently write a daily diary in English . I would like you to point out and give me a meseage if I have wrong sentences . Please contact us ! For example , France - wine , Italy - Fashion , Taipei - computers . I am so happy that my parents finally agreed to make a cute kitten a Firstly , they do not know the correct use of mobile phones . But my mum always says , `` your mother language is not English so do n't worry if you make mistakes . `` My English class teacher is a foreigner . My name is Junho and I 'm korean . and I studied english , listening , reading , and conversation . This belief was formed and reinforced in childhood every time he thought he was expected to do better . um , , , the songs are very , very , very similar to each other . Group singer 's songs are very similar to other group singer 's songs . They should just love their singers , and it should end there . However , they should n't go as far as to write letters with blood . I want to Skype with a friend . ( She opens the door ) It 's the vet , dear ! He studies Engilsh very hard . Actually , I had brought my Japanese cellphone over with me which was already connected via a Canadian telecom company with a roaming facility . Anyway I asked some cellphone stores in Southgate mall to compare terms and conditions for me . My company has many Japanese people working there . I work as dentist 's assistant . People chase many rainbows but not all people can achieve the goal of their dream . Curry pudding It was `` Last Parade `` written by a / the former supervisor at Tokyo Disney Land . [ BLUE ] Maybe this book is not famous , but the cover is so beautiful . So I really felt relieved when I heard that their family survived the tsunami , though two co - workers sadly told us that their family had lost their houses . This area I live in has little risk of being affected by tsunami . Because a lot of aftershocks are still happening , and also the government announced that we still have to be careful of a big earthquake on 17th March . Plus , my work place is an old building and has gotten damage by the first earthquake . I went there 5 minutes early , but the only person there was a tour guide . There are 6 girls who came from different provinces , it 's very interesting . Sometimes we have a little trouble or misunderstanding , but most of the time we treat each other like sisters . What an extraordinary feat of human discovery Because it 's a basis for everything in our lives . I read that people could not travel freely except for religious purposes in ancient times . A new shopping mall opened near my town . As soon as we arrived at Nara station , we went to a Kimono shop to rent a one for the day . Recently , many people have been visiting here . Their adventures were met by many troubles but they never gave up . I think I 'm very sensitive to other people 's reactions , especially facial expressions , and I unconsciously try to read their emotions through them . I try to smile at them because I usually wear a blank face except with my close friends . so if English was n't the global language , I probably would n't like it . Although we did n't go out a lot recently , we went to the beach almost every day when I was in high school . It was 40000 yen , which was actually better than I thought I would get . I have an entrance exam the day after tomorrow . My friend said that Lady Gaga produced a perfume that has a very complex odor . I have so many things I want . ; ( everyone , have you bought anything recently ? He has a glove and some balls , so we decided to buy a baseball bat for his birthday gift this year . With an endothermic reaction , if the temperature is increasing , the reaction will progress rapidly and the yield also will be increasing . My name is Aleksey & I 'm in charge of my company 's website . The doctor ASCRIBED the man ` s death to drinking too much . Melbourne is a good place in Australia , I do really like to try the food from different countries . Especially Thai and Vietnamese food . They taste sour and hot , ( and ) I love them . The second thing I really like to do in Melbourne is going to the supermarket , That 's my life in Melbourne : ) I look forward to going to Europe ! First , I saw it in English with no subtitles . I always dream in former way , but one of my friends does in latter way , I heard before . hello , everyone , I 'm very excited to write my diary here . the most important thing is that I can share my experience with all of you and practice my English writing skills at the same time ! I should examine what has the most value in my mind , business , interesting fields or my girlfriend . I recently had wanted to get an MBA abroad and searched some information about it . I 'll endeavor to improve my grade point next year , but it 'll be difficult . I heard from my colleague that Korean children studies English speaking and listening well . Therefore , most young Koreans can speak English well . My hobby is playing tennis and travelling all over Japan . The purpose of my travel is to make friends in a foreign country . Thank you for your corrections & comments everytime . Thank you for your messages . We are going to Tokyo . So we decided about free activities . The picture is really nice but I ca n't show you it here because the picture is really big so I ca n't upload it on Lang - 8 and I have stayed at home with my nephew ( ? ) They are watching a movie while I am writing my dairy . My father just came back and I saw he bought some things for us . He likes to buy the sweets for my nephew and I heard my mum coming to my house , because I heard her motorcycle / bike . My family are ( really ) nice and I feel really happy to be born into my family . February 5th is the day that her new movie ' Kitchen ' will open . Unfortunately , her acting is not impressive and it is hard to see her improvement when compared with former movies she has been in . Yeah , we could go , but even if we did , we would not be able to see very a beautiful view . . . I set up the instruments for the English language school last night . As for me , I admire Tsiolkovsky . Tsiolkovsky believed that mankind would not remain on Earth forever . We 've spent several hours walking and chatting and then went to a restaurant . Recently , I read the ' Norwegian Wood ' wrote by Haruki Murakami . so I 'm writing using only my left hand . Why was I trying to stop the books from falling down , , , , I read about ' The Ica Stones ' on the Internet . The farmer brought it from the cave he found it in , and said there were a lot of stones in the cave . I need someone who lives in Sapporo and originally from USA . Tell me the right answer plz ! When you believed in that thought , what happened to you ? I want to make friends with people from other countries . Merry Christmas so , a greeting of Merry Christmas first ! But tomorrow is the last day of vacation this week . My aching waste has annoyed me for a few days now . People write about their life , what they like to do and their philosophies . They also post questions that they have , introduce themselves , share their love stories , their plans for the future , news topics , sentiment about videos , etcetera . I also give an oseibo to my relatives . Today was very cold . I have been waiting for it almost all school year In September I am going to start learning French . So in my free time I read a lot about my favourite subjects - History and Geography . The system of the plants was badly damaged . I deeply appreciate to their actions . And , I also appreciate the aid from other countries . And I thought this old man was thinking the same way . So the young man said ' I 'll crush you ! ' and he advanced forward with his motorbike . Fortunately the old man was n't hurt . Immediately the young man punched the old man on the head . Hello , this is my first visit to this site . I 'm studing Japanese to become a Japanese teacher . So today I visited here . There are a lot of smart and rich people or handsome and sociable people . But handsome and smart people are rare ! ! Do n't laugh ! Now ( Because of that ) , I 'm worrying about whether he 's looking at this entry . I also think that my friend gave me a chance to look at me who I am . That 's how I felt . I had ( some ) special moments there , especially the sunset at deck of Enoshima lighthouse I ca n't forget . ( word order ) Well , thanks for asking . I probably do n't know . I mean I think I know , but I am afraid I am the one who does n't understand me . I used to think night shift is scary * Following sentences are quoted from the book * They have come to japan for various reasons , but , for whatever reason , they have chosen to live in japan . But she seems to make people happy and gives power . It showed humanitarianism , love , faith ? So I was really disappointed with Dr . I was not an exception . My home and car is covered with snow . The snowscape is beautiful . When you order food , if you say you do n't want onions in your dish the cook will think you are too particular - and we are n't really considerate of vegetarians either . When I cleaned a keyboard , I found something dirty . I went out with my colleagues to a curry restaurant . Question : why the `` note `` is `` noted `` , not is `` was noted as `` ? On 4 November 1922 , Carter found the steps leading to Tutankhamun 's tomb , Question : Why the `` lead `` is `` leading `` ? I decided to help someone learn Japanese every time I receive a correction . Located in the middle of the Kyoto City and near the subway station , makes it really convenient . That was unbelievable . Tsukiji is famous for its fish auction and there are many street stalls . We can buy raw fish , smoked fish and salt etc . Cherry blossom is not only important for theentering ceremony but we use that as the place to drink alcohol . If you come to Japan , you will see the people who drink alcohol near thecherry blossoms . I hope to make friends with you . I appreciate him and wonder what 's going on . Furthermore , _ I see a man behind him is tryng to torture him . These days , I heard that some universities accept Enken 1st grade and pre - 1st grade as proof of language proficiency . I hope to study at ABC University as it has an excellent faculty . Also , they have the lowest percent in computer game downloads . Art students spend the most money to download music and videos , and almost 90 % of them have purchased music on the internet , which means arts students seem to be the most familiar with online shopping . The Mystery of Italy `` Why do Italians worry ( so much ) about details ? `` But I was suprised that there were so many graffiti on the walls , in the trains , Is it that way in Siciliy only or everywhere in Italy ? I hope to find out `` Why do Italians worry about details ? `` Italians are mysterious / a mystery for the serious Japanese . It is now midnight and I 'm writing this diary . Iced trees on the ridgeline were lit by the crystal clear morning sunshine . Actually we did not know yet what we would like to buy , but I know she likes to cook and read books . This is my first time logging into this interesting website . One day , her neighbor came to her house and asked to give him the ducks . I do n't have a car , but I think it is very convenient to use a car . Big domestic companies still want people who graduated from famous Japanese universities like Tokyo University , Waseda University or Keio University . In the market , everybody can taste some food , for example fruits or vegetables . He told me that he was afraid to be dropped from the board and drowned because they played on it . I study English hard too . Now I 'm working in an university as a researcher . Well , , many Japanese Teachers use direct method by which teaching Japanese by using Japanese only in Japan . But , I think not many Japanese teachers has experienced learning a language through direct method . They said `` If other plants shut down we could n't provide enough power . `` Today I baby - sat my two - year - old niece because my sister - in - law went to the beauty shop to have her hair cut . umm . . . . It was a test where I had a conversation with foreigner . Today 's box lunch is soy - ginger pork . Hello ! That 's why I study hard . My friends wrote a comment about my diary ! ! By the way , what do you think would be the best way to learn slang . I have a gift of playing music , but I have to learn another profession because of my parent 's expectations . But after this morning , there were a lot of things that happened suddenly . I think I am an emotional man . To be honest with you , I am going to visit Canada on Sept 24th . As you may think , adjusting to another culture requires so many things and time . Comparing to before , I think my English has improved , especially writing . After I come back to japan in December , I will resume writing essays here . This is my homework , I welcome anyone to correct it . There is only one regular bus service that goes to work . When she was walking along with a wall in her house , she lost her balance and fell to the floor on her buttocks , which caused the actual compression fracture . Because of it , she was hospitalized and diagnosed with bilateral iliopsoas muscle abscess . Children grow up quickly , so now she runs with friends ! First diary entry I have to do a lot of experiments and research every day so I have no time to do what I want . Last Sunday , he had work and I went to driving school . After that , by the time he mailed me it was already 7pm . I have just received a letter from my friend Jonadab . Thank you , Jonadab . Even during my vacation , my colleagues had been working and had sent me a lot of e - mails , my inbox tray was full of unread ones . Dear friends ! It was a bargain . Many things were so cheap . I heard that other countries are different . And now , the deadline of my report is coming soon . . . I saw `` AVATAR `` the other day . I ' m poor at English and German . In the show , there was a woman who brushed her teeth after eating breakfast . I forgot to ask you some questions earlier . I do n't have any plan to take a day off so far but I want to make sure just in case . I have many friends living in shizuoka . But , I slept in the bed and when I woke up , I did homework for cram school ! We ate lots of chicken ^ - ^ I like the landscape after rainny days . I like how it draws a smile on my face and makes me think of many things ? ? ? I miss my mother and my father , university is different from high school . I ca n't come back home often . I also miss my boyfriend . Next year he will go to America to study . If the time could go backwards . I would study hard so that I could go with him . For one thing , I hope the holiday comes quickly . But I am also afraid . . . because it means that he will go away sooner . More Wanted and Less Gotten [ * 1 ] Of course , it 's not the same with everybody . After all is said and done , would n't we just be primates ? I have a lot of work to do even at weekends . Yesterday I went to the library and borrowed a book about spoken English . Someone help me ! But , there is a considerable problem which is privacy . However , I think it is ok to not be corrected by others I am a veterinarian . I live in Osaka , Japan . I expect to enjoy studying English . existing outside the mind ; based on facts that can be proven based on your own ideas or opinions rather than facts and therefore sometimes unfair Ichiro , Japan 's most famous baseball player , is often said that he is excellently skillful at analyzing himself very subjectively . it is a very modern house . In her letter , she said if I would come to Canada , I could stay with her . I has never been to Canada , so I am very eager for my next holiday ~ ~ ~ ~ Greek mythology , classic myths , Norse mythology and Journey to the West . What I mean is , I do have enough time to read a book . Tonight we 'll sleep in the tent and watch the shooting stars hoping that the sky is clear of clouds = ) . I am staving , so it 's difficult to sleep . They have done a lot to help poor people , like adopting many children and they have achieved so many things . They have ambitions and clear thinking in their life . Next , stretching and simple working out . I met some students who came from America to my school and I talked with them . We walked through hallways , steps and food court . I was really scared because I could n't know where I am heading ? I was worried about my son , because he went to the hospital with his mom to have a medicine of polio . But , the pie was not delicious . I 'm staying in Dublin with my hostfamily and I have an Italian housemate . I am writing this to ask you something . Should I give up some tasks or put them to next day ? yuuta aka paris hilton . Our task was accomplished smoothly , and I hope that I can participate in the following lab work . If I knew about this , I would have said the first one instead . Could you explain about auxiliary verbs ? in a foreign hotel ! I had not driven in Australia before , so I had to be careful . All present day politicians should watch it . Seita is hero of this story . His father was a Japanese naval officer , so he was not at home but fighting at sea . ( I guess his father had already died in the war but his family did n't know yet . ) He lived with his mother and little sister named Setsuko . He was living in Kobe which was a big city in Japan at that time . Of course the American army bombed Kobe as well . When his family tried to escape from the bombing , his mother got injured by the explosions . Also , his house was completely destroyed by the bombing . His lifeless body could be seen at the dirty and gloomy Kobe station on the left screen . Many Japanese people who were in right screen completely forgot these historical facts , and they enjoyed luxury and busy lives in a big city . I 'm really , incredibly , absolutely tired now . Today I found a difference in the value placed on meals between American and Japanese people . But , my American colleagues buy sandwiches or a hamburger with a drink and then eat them at their desk or at the cafe space in our office . So , they prepared sandwiches and drinks for us and we continued with the meeting while eating them . American probably think the opposite of how I feel feeling . I think we should n't think learning a language is so easy . Finally my side was opened and I became free . . Since the 11th of March when the East of Japan was hit by a big earthquake and tsunami , three weeks have passed . She said that you can contribute ; money is OK and you can do other things like go to visit to the Tohoku district some day . Do n't neglect your gums , too . I 'm studying English . I think I can run now , but it 's raining outdoors , unfortunately . I was going to meet with my friend at about 2 o ' clock today but my mother called . I must help her do some things and go somewhere . I must cancel my appointment with my friend . These days , some Asian movies are remade by Hollywood . I think , for American people , the horror of Asian movies is kinda taste ( ? ) and fresh compared to that of America 's and its movies have a lot to do with difference of culture . In short , I got depressed with the lack and difference of story of remakes of Japanese movies . Please teach me your language . I heard a can of sardines was heartier than other sardine cookings . But today I heard that sardines were heartiest when they were canned . had been sold out at stores until recently . And could anyone tell me which is more delicious , an oiled sardine or other sardine cookings , if you know ? That was in 2007 , in April , and I studied English for 10 months in Grande Prairie which is in the north part of Canada . I had an incredible time and really loved my experience there . Ryo Ishikawa won the tournament by 58 strokes it 's a traditional and beautiful town though , near Roppongi . I am so busy these days , and I feel so tired . Because we are lacking in the learning situation . I began learning it recently . I can only hope that I can get a great improvement . We had a drink ( cocktail ) party with our coworkers . I could relax and communicate with people who I had not talked to before . As a chinese person , at any rate , we should be happy , because it is being held in our country , our city that we are familiar with . The ending is not particularly clear and we have to wait the sequel . I begin writing the diary in English So , I begin writing the diary in English ^ ^ The belated farewell party is to be held this evening . Actually , the farewell party is for a co - teacher who moved to another school last April . I was suprised and very glad that my friends sent me text mail to say happy birthday . I 'm going to study English every evening . every morning and every night , you will get beautiful skin . Applied for a passport I met my old friends in Kyoto Staying in Kyoto is very comfortable for our family , I don ` t have to care about radiation , blackouts and aftershocks . Do you know Cyril ? He marvellously returned a dead bee embedded in a 5000 - year - old amble to life in a jade market and cooked instant noodles with cold water . We decorated with ghosts , bats , witches and more ! First , we got together , and then we walked around to get some candies . She is 177 centimeters tall . I 'm 160 centimeters tall . So I decided to restart writing my diary in English . And then I went to work after lunch . 16 students have caught the flu in a class where there are 30 sudents . Unfortunately , I have a lot of chances to touch children and get viruses . I have to protect myself , so I wash my hands and gargle every time when I go back home . On this New Year 's Day , I 'm spending a pleasant time with my parents . Finally I hope that everyone has a pleasant time in this year too . Recently I happened to find that itunes has many internet radio station channels in its menu . Itunes ' list of is good , and almost all of the stations are now in service . So , I can hear many different music genres . I am 22 years old right now . I was 21 years old 3 month ago . . First , I must finish my report . ( Futon is bedding . ) I felt like I should take some pictures . Fortunately , I had a camera in my purse , so I took lots of pictures . Today in Korea , There was a strong typhoon . Because of their way of life they constantly need new things , but it stays practically the same : rock , wood and so on . Nowadays , there is more and more advertising about protecting our planet as a refresher course ( of paper and empties of anything . . . ) what ? It 's a wonderful city owning beautiful sightseeing spot and brilliant night life . I 'm 31 years old and I have been working at the same hospital for 12 years , Therefore I worry a lot about going abroad . . . . . The Microbiology department at Tokyo University has just reported that helocobacter Pylori , which is one of the causes of gastric cancer , makes proteins that camouflages human protein structure . Pylori injects `` CagA `` carcinogenic protein into cells in human body . CagA camouflages as pragumin , and then it binds host enzymes . As a result , it induces abnormal cell divsion of host cells . The typical place is in a shrine . Leisurely evening After eating , we went to Dante Coffee , and stayed until 9 o ' clock . After advancing to the second round , I was sure that Japan would beat Paraguay and go forward to the quarterfinal . I want my hair to be like Brad Pitt 's . . . . . is it impossible ? - _ - ; He said he wanted to go to `` Yakushima ( in Kagoshima ) `` My parents ' family are living in Kagoshima . They are registered by World Heritage . I bring news about two major satellites named the `` AKATSUKI `` and the `` IKAROS `` . The `` IKAROS `` is from Greek mythology . Obon ( japanese custom ) I believe that Japanese subculture , which includes anime , comics and video games , etc . , is a very strong industry in the world market because so many young people enjoy it . [ / BLUE ] The market size of Japanese subculture is bigger than that of other industries in Japan . I think the Japanese government should support the globalization of anime as a strategy for economic growth . It happened again . . . There was an earthquake of magnitude 7 . 4 on April 7th 11 : 33pm JST in Miyagi . It happened again . NHK is broadcasting that the nuclear power plant of Fukushima # 1 is alright but they are using diesel generators there . I should have separated them in two parts and I should have made it twice . . . I add it to tomato sauce or curry sauce as a hidden flavor . Because I am new , at first I was not able to do very much . I sat in front of the computer and smiled at my colleagues when they passed by me . Later , I squeezed out the excess moisture and topped them with some cubes of cream cheese . I think cream cheese really goes well with Japanese pickles such as cucumber and radish leaf . Lang - 8 is very nice system for people learning languages . The countries where I have traveled to are Italy , Spain , Cambodia , New Zealand and the USA . I 've been studying English and I have to translate the sentence below . However , I ca n't understand why they use the Present Perfect tense in a last line . I love the San Francisco Giants , because I think ' Great Defense ' is the best thing in baseball . Last year , the Giants won the World Series , so I 'm looking forward to this season ^ ^ Also I 'm sleeping ( ^ ^ ; ) Let 's alsotalk about Holmes , Robert Downey Jr . , Jude law , and so on ! Drop - outs and high school , college or university graduates account for about a quarter ( 23 . 8 percent ) of jobless youths in the age range of 16 - 29 . The problem of job placement for unemployed graduates must be solved . badminton . In my class , the best badminton player was my friend . and teacher called me and I was approached by the teacher . My friend had a baby last month . When I told her , `` I want to have some foreign friends ! `` I only have a few foreign friends on Skype , so I hope to make more of them there . A typhoon is coming close again . They are very funny , when I was watching I could n't stop laughing out loud . He is my fav actor . In Japanese martial arts including sumo and kendo , the practitioners can maintain their balance and respond quickly to opponent 's attacks by shuffling . Yes , it looks like a human face ! But I do n't know how to start conversation with strangers . What makes it my favourite thing ? Firstly , There are many interesting games for the PSP platform . It is now December 26th . It 's my great leader , former President Mao Zedong 's birthday . She has decided to take the shells which she foud home . My wife let them write it . Yesterday I learned about idioms . And now I know the meaning of some idioms . If you like , please teach me idioms . ex ) it 's raining cats and dogs ! Today our teacher gave us our own photo album ^ - ^ Though the price of plane ticket is not so much expensive compared to those of other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of taking visa is complex . I was singing unhappily , while other members were all singing very happily . . . Today I almost stayed all day in the library and read books , which made me happy . I hope I can visit Korea some day and experience the original culture . Prepare the presentation . I always think that I am not intelligent when I prepare presentations . I wonder if I will ever be a genius , but what I can do now is make an effort . Cherry blossoms But it was good to go to a popular spot for Cherry blossom viewing . Japanese spirit I guess the Japanese surprised many foreign countries . How could they achieve the growth ? They had really strong hearts . Our Choir conductor cooked delicious foods for us . It is my birthday soon ! ! My birthday is this month . But , I have not started studying Spanish yet . l felt sorry for these acts . It also tells me an important message , that the society has changed . As society members , we have a duty to prevent these sorts ofacts . Recently , I have been learning how to pronounce English words . What do you think would be a good theme to write about ? I had not really noticed that my father was getting old , but I saw a very shocking thing several months ago . Because summer is coming soon ! I felt an irresistable impulse to eat some cheese cake yesterday , and I could n't suppress the urge , so I went to a patisserie nearby . I know , I should n't have , but I just had to . The Mid - Autumn Festival is a family time . There was a very serious earthquake and tsunami in Japan . So , when I hear it in Japanese , I feel uncomfortable . The sight frightened and depressed me . I had to look for another one and walked a few minutes from the parking lot . because I tire easily since I got my night duty . And afterwards they will think about my approach to my boss . After all , tommorow is another day . It should always be a pair right ? All Japanese Beef Should Be Inspected I 'll try to review my past entries . I think that many Japanese people ca n't speak English . That 's why it was difficult to show us the dolphin 's and seal 's performances ! Some friends say that I 'm witty but not every time , because sometimes I 'm a little conceited , not because of my extreme self - confindence , but bacause I like to share my achivements . Concerning books , I read all kinds , but I 'm really critical with books without a good purpose or those lacking creativity . My younger sister cooked it , but it was not nice ( good ) . yes it makes me excited when I buy new things I get used to new appliances very fast it makes me excited because it feels different This is Jessie 's beautiful but sad song from Toy Story 2 . What do you recommend ? What is your favorite music ? What other phrases can you use instead ? I do n't think all Singaporeans are lazy . * Sho - chu is a kind of Japanese traditional sake , alcohol . One friend advised me that counting sheeps would work , but Another friend advised me , `` Imagine winning the lottery and imagine I will learn how to pronounce English by watching the American drama ' Friends ' . I will be able to improve my pronunciation , English skills and learn their culture . The first writing in a quite while We cook many kinds of ingredients like seafood , meat and vegetables . Deal with a hectic schedule next week I only have one in one subject . I live in Saint Petersburg . This city is the northern capital of Russia . But I do n't to go nail salons , I like to do it myself because I can create any patterns I want . Of course , I have served as a leader before , when I had group a project in college . There are many books which are related to leadership and my companies want applicants to show their special leadership experiences . So , what would be a special leadership experience ? Although jumping at the chance of becoming a leader is for some people second nature and very easy , other people have difficulty expressing their leadership style . I could not write a diary entry because I could not use the internet . Starting today , I will write a diary every day again . I 'm thinking of joining a English club that is held near my university . I do n't know why but the internet was really slow . The first meeting with someone for langage swap When I was studying , I could hear my parents laughing from next room . Leon drinks milk , plants orchids , and irons his own clothes Please try it . By the way , I 've heard that people who do n't live in Japan tend not to like eating octopus . Octopus is a sacred life , is n't it ? I also found out that my friend who was missing from the area most effected by the tsunami survived ! I was so sleepy when the teacher was speaking . I am interested in forest landscapes , and went everywhere in Japan to see beautiful forests . They were all the most beautiful forests that I have ever seen ! my hobbies I like adventure books and almost all films , my favourite plan is an evening at the cinema . I really like going to concerts and listening to music too . It 's a hard thing to remember so many words and sentences . Luckily , every Chinese student needs to take English lessons , and this is why I can speak English . Anyway , I 'm glad to see so many friends here . I was satisfying both my heart and stomach . At the same time , I of course know , I am not a easy woman to get along well with . Hi all , I 'm Midory from Hokkaido , a northeastern island of Japan . People are nice , beaches are beautiful , and Okinawa food is awesome ! Com Master which measures my Internet skill . Many customers are also better informed about procedures and precautions ( including confirming that their doctor is an authorized surgeon ) . So the short trip helped make me feel refreshed . Actually , I broke wind when you turned on the air conditioner . `` But If you read many books in a foreign lanuage , you can memorize a lot of words , even though you feel it is hard to understand it when you read the book . and Itook a blood sample fromeight people . because I really appreciate them . ( The correction depends on if it 's helpful or not . and I 've often made misspellings in Japanese . I just wanted to write English naturally . My main mission is to present the situation in Japan to our US headquarters . I have no confidence in my English , even though I 'm teaching it to children . Besides that I 'm planning to take the pre1 level of EIKEN this winter . This is a comic magazine that is published once a week . Nakata had an accident when he was an elementary student and he became illiterate . First contact When I was a child , there was a cartoon movie named Ikyu - san . However , I study English almost every day , and that might even be considereda preparation for . the test . Last year , I had a special memory in Au . Some of my friends prepared the dinner together , and then we celebrated that special day and played games . Nowadays , I 've come back to Taiwan and have already got the job . Some of my colleagues are almost 50 years old so it 's difficult to have the same interest . On the way to home , I was caught the rain My daughter was worried about her unborn baby . I was surprised and relieved to hear the news . I often see it . so I asked my month ( mother ) where the cat had gone ? My mother answered that the small cat was dead . My mother pointed to my son and said , your son killed the cat . At first , I do n't think I should have any concern , when he / she ask for assistance , but it 's becoming more and more frequent . . . I wonder what I should write some articles for my daily entries . After the test , I was depressed . Not because of the results of the test , but because I was disappointed in myself . Expensive Jasmine Tealeaf In particular , I like jasmine tea . It 's different from normal jasmine tea . It 's more expensive than any other jasmine tealeaf . We did n't talk much . For much of the time we sat in silence . You know Japan is a small island so many Japanese people do n't ever need to speak English and they rarely meet Americans . This is especially true in rural Japan . The world has changed the culture surrounding language aquisition , and of course in Japan too . It is also my favorite animation . Today , I introduce my favorite movie . I could n't review my former lesson , but I could take the lesson well . So I am booking lessons with them now , but I 'd like to book a new teacher who works within an online English school . It ` s unbelievable ! I want to say to all of you - if you want to achieve something in your life you must study a foreign language . in addition , I seldom exercise . I decided to start exercising regularly . I almost did n't see the movie because there was no one able to make the time to see it ( with me ) . - Woh kaunsi chhuri hai ? I just had a cup of tea ! It was very nice Moroccan tea . so I 'm looking forward to spending my 17th birthday in foreign country . But it is n't related to being a vegetarian or not . one of the private schools here in Thailand . It 's my heart 's desire to know English . Yesterday night , I drunk with my colleague who retired from our company last October . For example , how to work efficiently , how to communicate effectively with junior partners and my boss , and more . Hate means far away , and teruma means coral in Okinawa 's dialect . Did you have a experience that you could n't see the horizon regularly because of waves , and jump up from your seat like a roller coaster . He and his friends made cupcakes in the night because of White Day . but , it 's useful . Children are not good at language . The seventh personality is a optimistic , active and fast moving like Peter Pan , who wants to be a small child forever . He love adventure , he hates engagement or enforcement from other people , hence he will have many alternative ways for joyful living . This advertisement introduces the origin of this brand . If anyone can also introduce me to some interesting activities , places or stores to go around , I might not stay in my house and get bored all the time . Also , driving a scooter here seems to be too crazy as I might be the only one using this type of miniature vehicle and could easily get hit without being seen compared with huge cars . I started studying English when I was 12 years old Are they identical ? If you visit Kagawa , please eat udon ! ! ! The good thing about this , is that if you want to change weather you can just wait , or drive like 15 minutes and you 'll find a warmer or a colder place , which is kind of awesome . So , I make my living by the scholarship and savings . My weight is now 63kg now I 'm preparing for physics at university - there are no tests for entering this course , but I want to try for a scolarship so I must study hard . it 's very difficult to take , but I have to try . . . obviously , 12 plus 4 is 16 , and the 17th was Giulio , Anastasia 's boyfriend , whom arrived in the middle of the vacation and left before . He can crawl very quickly , and he can stand up while holding on to something lately . He is eating oatmeal and mushy ( mashed ? ) vegetables twice a day . If it is a successful YUINOU , you can marry eachother . It is a South African girl who is very hungry and thin , she finds water or food in the wild , but she ca n't take any steps because of loss of physical strength . I always talk out loud to her , I 'm being impatient with her , and I think she ca n't takegood care of herself . Now , I heard that sake is more popular in foreign countries than in Japan . underwent it recently , it 's hurting so deeply , when can I forget this and begin a new life ? I 'd like to say not to change the figure model , but some structural change is OK . A Japanese company announced that they will use English as the official language for their company . The chances of using English is increasing with globalization , so I think this is a good challenge for a global company . So it is urgent to raise environmental awareness amongst the general public and do something for ourselves from now on . Christmas is near , I will have three days off ( not go to work ) , as a friend of mine invited me to go their home . Besides , he has a lot of questions toask me about computer stuff . Maybe , I should buy the ticket tomorrow afternoon , because I 'm afraid that I will not get the ticket on christmas ' day . And I 'm studying Chinese . But my first task was studying , I could n't sleep in the class , so I decided to do homework quickly so that I had more time to sleep . That 's very interesting to me . This afternoon we had heavy snow , which looked like there was a snow storm in Osaka city . I felt so stupid when I found it in my bag after I got to my destination . I thought someone could have written a comment to my diary . I can watch cartoons all day and I do n't fell humdrum . The one I like the most Tom and Jerry or Mickey . I like the website . I really enjoy the website . Native people correcting will be very useful . The traffic was very heavy and we could n't move any further on the way . with no other choice , we gave up on the idea . So we parked our car and decided to watch it from the road . Finally , we found a good place place , but we could see only half of the firework display . In my case , a great advantage is being able to see that information written down because you can analyze all that writing and then answer it . So I decided to go sports gym constantly . At present I am able to go gym 3 or 4 times per week . It makes me feel worried due to traffic problem and so on . Maybe he has to write a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybe he just lost all his money . . . I even feel nausea when it is severe . They might be caffeine , chocolate , sugar , fruit , etc . It was the same situation as New Years Day . The cold stole my energy . I managed to get some vegetables and chicken and I hurried back home . I did n't check the expiration date , but it tasted good so I thought it was still OK . I am not good at writing English , so please check my English , will you ? 6 - PhotgrafingPhotography 7 - Editing anime and game videos I stayed in shanghai for two months . I communicated with many Chinese people . But most of them have n't ever been to China or communicated with Chinese people . He was a good and nice boy , I knew him from last summer . The day before the lantern festival , he told me he could n't keep his promise . He must have gone out with his father . But my hope did n't come true . I have learned English for 14 years since I was a junior high school student . I took the BEC ( Business English Certificate ) examination last year and almost failed because of the writing section . Ongirls ' day Japanese set up beautiful Japanese dolls . But the dolls which we call Hina doll are very expensive So we made very small dolls by a paper . I want to write my introduction again . I am studying at a middle school . Tonight I had some trouble with learning English , I asked for help from a lot of people online . I really appreciated that . Now I am excited ! ! Everything is going well ! ! So he knows about the differences between Japanese and American attitudes . He said that Japan needs to output more because the Japanese are not good at promoting themselves . The reason why the Japanese do n't have many chances to output is because our culture requires us to be humble . He said other interesting things , but if I wrote them all down it would take too long . It makes me frustrated . what I really need to do is translate my knowledge into experience . We are the black box that can change images into reality . We have no garden , but we have a little patch of soil between our house and the parking lot . Not only do I have to find the information about it , but I also have to make up the dialogue about how to persuade the client to pay by L / C . At last , when I had finished the dialogue , I also had to recite what I had written because my business english teacher said that we had to leave the draft papers when we were speaking English . Even though it as hard for me , I still wanted to try . I hope that I can meet the difficulty and improve my English level . Well , I 'm new here and am very exited to see how I can improve my English . I had used Lang - 8 before , but I have n't written any journals recently . The three clothesbaskets are already full . My major is business administraton . My father is a sincere public servant at a high school . My mom 's character is quite different from my dad 's . She is active , out going and sociable . He really likes playing computer games and listening to music . Thank you for reading my writing . and please kindly correct my work ~ : ) We call `` yakiniku `` , burned beef . Hi , I 'm a Japanese studying English . My Uranus is broken ! Perfectly flat ! it 's korean education . A Mysterious Cat I am very surprised that I saw the roof covered in snow when I opened the window at home . We like to go flea market because the price is not so expensive and there are a lot of unique goods . It takes about 5 minutes for her to dry them . Finally my toothache flared up today . I took a motorcycle to go with my friend , and he rode it very fast . Thank you for correcting my diary . We enjoyed talking about our favorite bands or singers for a while and I was able to get some infomation about them . They really enjoy listening to various kinds of music ; from punk or hard rock to classic so their conversation is very interesting . She is very strong ! My classmate was carried in her arms . I had often watched a TV show which introduces world heritages . Federweisse is only served at harvest time , and is in the early stage of the fermentation process . I saw `` Harry Potter and the Deathly Hallows `` yesterday at the movie theater . I think the store offers a great bargain . I often think that the latest electronics are so amazing ! ! When I walked around campus , I found a copy machine on the ground . I 'm going to my university to attend my classes . I would rather see DVD than studying . I was wondering what is the difference between `` He sure is fast . `` and `` He is really fast . `` But my hands were nearly touching her , and she bit my hands . But daytime was shining . I go to work by motor cycle every day . It is hard for me to write in English . [ Question ] How do you think languages around the world happened to become different ? Of couse , the hotest topic is foodball game , is n't it ? The period during which emperors lived there was at least 300 years ago . I 'll discribe the occupation a little . I prefer to read English rather than Japanese these days . We won the competitions ! & nbsp ; Next week there will be a last competition between last two . I have chosen ethics , Lithuanian language in level A , English in level A , history in level B , math in level A , informatics in level B , Physics in level A , Chemistery in level B , theatre in level B , Physical Education in level B . And we should do something we can do easily , for example , sending some food to areas that are short of food . In the land where we can not grow crops , it may be difficult to increase the growing ofcrops even if they can use the technology of developed countries . We must take this into consideration . it was not a travel at all , but it was work . and it seemed that I need to study the countries history and famous places I had the chance to take a trip all over the world . It made me angry . My dog is a golden retriever puppy , and she just got too excited and started to chase the ducks and birds . Instead , we lay on the desk , sleeping . I 'm joyful to find this website , `` lang - 8 . I like writing by English but I always worry about mistakes that anybody can help me correct . This travel is my second time to visitchina . In the article , there 's no explanation about which country they 're from . Very catchy tune ! I figure that being admitted into hospital is not necessary for me , but my colleagues think it is necessary . I am looking forward to seeing her progress . She said they always converse to each other in English . Furthermore , she is a sickly person . She is concerned her daughter may have the same habit . She has no choice , so goes to their house . I like to speak English but , I can not understand English grammar . It 's classic Japanese . I 'm a big fan of the American TV series Grey 's Anatomy . l 'm so tired The package looked delicious , So I bought it ! What eludes me ( on Youtube ) A soup with Eryngii mushrooms and onions . It is warmer this winter than usual and I wore light clothes until yesterday . For a few years , many textile manufacturers have been marketing the special type of underwear called `` Heat Tech `` . My language school has some courses which are used for entering uni directly , and I already passed entrance examination of the course . on the other hand , I 'd like to aim to enter a more high level university , but if I want to enter university that does n't connect with my language school , I have to obtain IELTS score then take a entrance examination . You also are welcome to my home town . In a meeting in English , I explained about some specifications onthickness , weight , LCD size , and thelocation of each connector such as theUSB port . I took a week off from work , so I feel bad for my co - workers . However I wonder whether ' optimistic ' implies negative meaning as happy - go - lucky . I 'll exhibit my drawing at Ouchi gallery in Brooklyn ! The picture was a photograph taken at a kindergarten last Friday . Also , my roommate has n't recovered from pneumonia after roughly 20 days . I hope he gets well soon . Instead , on our way home , we swang by a electric store to look at TVs because , in Japan , people have to switch their TV from analog ones to digital ones ( to watch TV ) by 2011 due to problems about wavelength or something . Recently I went to the ' End of the road ' which is located southeast . It 's somewhere near Australia and near Antartic . I want to learn it well , and I want to make more friends . Incidentally , as my house is surrounded by fields , the farmers gave me many kinds of vegetables such as onions , corns , potatoes , tomatoes , beans , and so on . According to her , she had a quarrel with her boyfriend yesterday , and maybe she was heart broken , so she was a very nervous . And next in order was Asada Mao who is a rival of Kim Yu - na . The SD card reader , on my PC , which I believed was broken due to power failure revived . Particularly , I 'm not good at listening . Zombie Walk 2009 I went to the Zombie Walk wearing Zombie makeup . Because I 'll take a placement test . To sell them to Chinese people in China or do they give them to their friends or family ? What amazed me most was their style . My Japanese friends who can not speak English thought that I could speak English , but I can not , exactly . I can speak it a little , but I am gradually getting worse these days because there are few opportunities to talk with English people . She stimulates me to be positive . Time always goes so fast that I feel that yesterday was our first day of winter vacation . Only two English classes and two chemistry classes . By the way , I major in chemistry . But chemistry is so difficult for me . My Philippino teacher ca n't really understand my English , Regardless of what happens , I will never quit studying English . I feel really sorry for the runners who came all the way to Tokyo to join the race . After that , my husband and I went shopping for curtains . But , I am not good at speaking English . I feel a little nervous , but I really expect this to feel like home . As I wrote in yesterday 's journal , my daughter seemed to have caught a cold . The problem is What it is for in any case ? ANIME , GAME , MOVIE , MANGA , you know almost all of them ( except for movies ) . These are what we Japanese are proud of . These looks like art , and the reason why these were born and could succeed was because the old Japanese generals favored beauty crafts . Nowdays , it 's say to sad that traditional crafts are no longer popular . People seek more convenient and comfortable products . ( ummm . . . And there are many people who do n't have philosophy . At that time , my friend invited me to her friend 's mountain hut to ski . The mountain is in Nagano . It holds the winter Olympic games because the snow is good and it is near to Tokyo . I love to ski ! It 's impossible to ski like this . I should take advantage of this problem , change my work and draw people into my vision . English is difficult . I lost a lot of friends now . . . One of my dreams is to have a English related job in the future . Today I want to practice writing rhymes ! ! : p speak & nbsp ; English fluently . So I did n't and nothing happened . . . I 'd like to make my career within 5 years . Many people were walking while smoking cigarettes , it 's very dangerous for the baby ! They were very reasonable and also lovely , are n't they ? This situation made me sad because it was a beautiful day as I mentioned in the title . until now , I 've been doing my homework in the library . the assignment is due tomorrow . ( Actually , it was n't my fault , 'cause my time table said `` 9th building `` , but there are two `` 9th `` buildings . . . ) Anyway , my teacher told me to join one group , in which 2 boys and 2 girls were talking , and to try to introduce myself . I think you are the kind of guy who needs to introduce his voice before his name . `` or something . Who tells his whole life story before he introduces his name ? He never boast his intelligence . My hobbies include photography , psychology , fashion , I watch the drama series named `` LOST `` and `` HEROES `` and all genres of the movies . Next time I will write about some of the experiences I 've had when visiting these shops and about some of the books I have read . The distance does n't prevent us from being good friends . I hope everyone helps me out . There has been a huge volume of advertisement papers stuffed in between the newspapers these days . For my birthday , I received a marvelous present from my friends . I 'm not familiar whit capital letters , I usually use small leters I am senior university student , I study Welfare . Though I have been to only three countries , Beijing , Korea and Singapore . She believes there is a little possibility to get an expensive TV ! In December , many Japanese buy this lottery . First prize is 200 million yen , about 2 . 4 million US dollar . Nengajou is greeting card for new year day . In early December , we start buying the special greeting cardand writing . Recently it is popular to use Personal Computer to make the card colorful and to make many cards . People who were married print their wedding picture and people who had a baby print a picture carrying their baby , definitely . When we can get these goods luckily , we tell and thank our friend or relative who sent us winning number and f they say kidding `` did you get TV because of greeting card I sent ? You should break it and give me half ! `` Today was very hot since morning , so after I finished running , I got very tired . I have just registered for Lang - 8 . Recently I have been trying to implement my English learning strategy by googling some Japanese English learner blogs . But in the beginning I was afraid and I did n't think that next year I would have the dream ( fortitude ) to travel myself , without a tour agency . Thanks to a russian girl named Olesya , who one day left her work and she alone traveled around Asia for 6 months . You can live ( stay ) not only at expensive hotels - nearby you can find cheap hostels and guesthouses . so I took a shower soon and I slept around at 6 : 00 a . m . But I already have no money ! But it might not be enough . B : We read the Torah and we do n't recognize Jesus as God , He is just a prophet to us . I will ask you something I do n't know . I always sweat in this season . I will start to go to English school next month , Now , they have a chance to experience it . Actually chinese regard `` a cirular `` it is auspicious thing , and chisese lucky number is 8 ! Why ? Usually peopel imagine 7 ! ! Congratulations Japan ! If you use twitter , follow me and I follow you ! My host family plays it so I watched a game today but it was rainy and very cold . . . I went to a children 's festival with members of my local Fathers Community Club . We named it `` Omuyakisoba `` and started to sell it . A few customers bought our `` Omuyakisoba `` Finally , we sold out . But she looked a little weird because her side dish was Nattou only . Narcissu PSP The first destination was a small hill 2 hours drive south of Taipei . I know the person in charge , so I would like to tell him Congratulations ! I have been taking cooking lessons for 3 months . It 's part of the curriculum at my school . tempt : Advertisement exists in order to tempt customers to buy their products . conceal : He did n't try to conceal his scandal , but instead , he apologized to everyone . decline : He decided to decline the offer from the IT company . But their owner was Australian from Indonesia so ( ? ) they did n't give me special weekend salary . Japanese usually go to the dentist only when they feel troubled by a toothache or other pain in their mouth . I made a wool scarf yesterday . But I changed my mind . Then I changed to knit for another things . Time is turning . maybe I should take some exams . I expect for some kinds of English , By the way , I 've been studying English by using podcasts . Unfortunately , I could n't buy all of them because of living in China , I often listen to a podcast while doing something . I can almost catch the phrases , but what I really want is to improve my speaking ability . I feel that I 'm so lucky to study English and Chinese at college , and I 'm very happy that I can help people who want to study Japanese . I 'd like to say that I really appreciate them . We play an important to the shrinking food supply in the future . Hi , I must learn the english language : ) thanks for corrections : ) Next month , I and my friend and her baby have decided go to Taiwan . Well , I 've been extremely busy working these days . I start to work in my office in the morning but I have to work until late at night . This week I 'll have a lot of flights and travel ( of course on business ) . Write a letter to the hotel manager , and explain what happened . One of my friends told me about this website , so now I am on Lang - 8 ! ! In September I am thinking about going to Victoria , BC . I am easy going , and I 'd like to make many friends ! ! Recently , I heard the fact that a girl I went to junior high with committed suicide . because in my eyes , she has n't apologized even a little bit . . . AIDS research improves each day . I ca n't do skype . . . . . WHY ? As I saw the pictures , suddenly , tears ran down my face , and I felt sad . It was the first time for me , and I was very lucky . When I watch a movie the next time , I will go there at the last screening I am very confused for using grammar and the sentences I wrote . Recently , I 've been constantly / excitedly making many roll cakes with white cream . I want to learn English well . One for June is to clean my house . We are going to decide during the Golden Week holidays with friends . My colleague picked up an abandoned kitten this morning . It 's very mysterious . The residents indulged in a comfortable and abundant daily life though our country was in danger . Maybe I can not grow accustomed to the foreign teacher ` s intonation . In Japan , we have a tradition of throwing beans on Setsubun . Cover the pan and simmer over medium heat until almost all the juices disappear . My personal problem He shot a french fries from his mouth at my friend . I had been waiting until it would be nice weather to ride . Then the volunteers will do their best to make the country more beautiful which is contributed without any payback . As modern college students , we should take every available action and take part as volunteers without hesitating and to contribute to the society . `` There 's no such thing as a free lunch . `` It is very delicious . When I was young , I always thought , `` I wanna be an adult `` , but nowadays I do n't even think I wanna get old . I was happy for my birthday until I turned 20 years old . Because as I get older , I can grow up spiritually . I 'm looking forward to what I will be doing 5 years from now . I think it 's because of the dry air in my house . I participate in a statistics seminar . I 'll read a draft , please check my grammaror pronunciation . But I am afraid that not many people want to learn Russian . I think our language is beautiful and I recommend everybody to learn it ! ! ! Sataandagi goes great with tea , which makes a good sweet . Now , I think I usually treat an automatic gear car . I 'm a big fan of car racing . Be careful with driving , especially , when it 's raining . Hello , my name is Seohyun and I 'm in the second grade . This is my first time speaking in front of a lot of people and so naturally , I 'm quite nervous . The reason behind this is because I want to create beautiful hairstyles for others . Firstly , I have to practise a lot , possibly with dolls or other people . Secondly , I have to study about hairstyles . My salon must also be a clean and beautiful place which customers love . I cleaned up my messy room ! Of course , I practiced , practiced , and practiced a lot . Next , I want to tell you about the exercising facilities that I want although I am a elementary school student . I think it because of the recession . ( my guess ) Please make this read as naturally as possible . I had two opportunities to get to know Sue - min Kim . Beaujolais Nouveau was released at midnight on Thursday November 18th , Because the Wimbledon Open started this week , and the World Cup Saturday at home . I want to buy something that 's not so expensive but very useful . I want to gain much knowledge and self - confidence on my job through this training . Everybody drank and ate a lot . After we finished eating , we had an ice - cream bet . After I came back home , I thought again that it is very ridiculous . Do you believe that there will be a person exactly right for you in the world ? Some people might say yes , some people might say no . I think most people believe that there will be an person exactly right for them , But sometimes people feel tired from looking for that person , and take a compromise for the other person who is near to their ideal right People sometimes feel lonley and empty , and they want Maybe this town is also very famous place to visit among foreign tourists . Nowadays Akihabara is becoming diversity and there ` s a lot of shops featuring anime goods . Japanese anime is expanding in overseas market and many foreigners know Japanese anime . I will write it sometime soon . I want to write many things but my limited English discourages me . I had a soccer game on Sunday . Yet , after considering all the possibilities , it turned out to be an unbelievably easy dream - - I want to lie down on a clean lawn with my eyes fixed on the sky , counting how many stars there in the cosmos . When I look up on the sky , seeing those sparkling , gorgeous stars , I ca n't help thinking of how tiny I am in this enourmous universe and how great the creator , if there is one , is . I enjoyed the conversation with my father and grandfather . I do n't have a digital camera . I use the cell phone to take a picture instead of a digital camera . Those are as good as digital cameras . The ingredients are udon , meats , tofu , egg , kimchi and green onion ! I want to join a university , but also I want to go abroad to America , so I will have to go to a university for 5 years . there were a lot of people at Tokyo desney land . But my friend and I were satisfied with the attractions because many of the attractions appealed to us . I found out about this web site when I did a websearch . I knew what `` Ti Amo `` mean and I also knew there was an English song named Ti Amo , but I could n't understand until I watched the MV . The whole day was awesome : the movie , company and the anatomy test results too : D yay ! unlucky day In the morning , I get up at six o ' clock . because my train leaves at eight o ' clock . When I prepared to wear my glasses and I found them smashed . I am afraid my mother will be angry ! It felt difficult ! At after , I missed my train , because was late finishing breakfast . So I felt all day very terrible ! She is crying everyday , she want to see her mommy . But nurses were by her side all night , so she was reassured by someone 's company . Today I 'm going to an English club , I really wanna study English . I played the game `` Dragon Quest `` I 'm writing a journal after a long time . I am confused , and I enjoy being confused . Going to law school I decided to go to law school yesterday . I watched a very good movie yesterday . What 's more , she was a girl who loved peace . She liked to make friends with negro people , and took part in a negro 's party , and helped them to struggle for the chance of a negro 's day on a TV show . I like Tracy very much , because she was courageous enough to pursue her dreams and never gave up . Yesterday I bought new shoes for jogging . 3 years ago I was a menber of a fitness gym , but I i quit because of my busy job . New shoes put up my motivation . I want to make jog a custom from now . But many foreigners are looking for someone who speaks Japanese very well . Yesterday I went to a travel agency to book a flight from Sapporo to Tokyo and then to Seoul . I ca n't get a ticket now unless someone cancels their flight . I do n't want to book a direct flight to Seoul from Sapporo because of the schedule . I recommend FF X to you . It is n't the first novel that I 've read by this author , the last one was about 5 years ago . My girlfriend says that he is n't a good writer , but I completely disagree with her . If you read any of his books you will feel the whole scale of emotions that the characters feel . Another aspect that I want to mention is his enormous capacity for telling all types of stories , from terror to ordinary tales . If you look in his bibliography , you can find stories that film directors have put into scene : from the beautiful story about the friendship of a group of children in The Body , terror tales such as The Shinning , Chrytine , or Carrie , and penitentiary scripts as The Green Mile or Rita Hayworth and Shawsank redemption . That program broadcasted their life . course I always put seasoning on food but sometimes I do n't . I had stayed at a suburb in San Francisco for 3 weeks when I was a university student . But I could n't speak English at all in those days . That is my motivation to study English . The nature is amazing , and life is wonderful ! It 's a lovely day today . I recommend : www . A famous problem on pronunciation is the difference bitween L and R . But I can not operate my tongue freely . I use egg , shrimps , broccoli ( instead of string beans ) on vinegar rice which is mixed with carrot and mushroom . My hobby is watchng animations , surfing the Internet , and reading books . I often watch ' ' niconico - douga ' ' on the Internet and listen to ' ' VOCALOID ' ' music . My dream is to become an interpreter . my grandfather made a living by raising chickens and a calf . They say there are many sumo wrestlers who have been fixing matches for years . Today is so hot that my T - shirt is all wet . tomodachi to sakka - wo shite asobu koto ga tanoshii desu . eating birthday cake is my interest . Thai beer I drank one bottle of Thai beer . I 'd never had Thai beer until last night . It tasted different than Japanese beer . I watched a DVD called , Beautiful Mind . I did n't anything buy but 6 Panasonic TV 's were still left ! I decided that I will eat nothing after 7pm and I will not drink in the evening ! Today , Kyoto was 32 degree Celsius . Well , I have to prepare for graduation workshop . We use the textbook `` Totally True `` . I ate hamburger steak with mushrooms which tasted like soy sauce . And she , our friend , ate hamburger steak with cheese and tomatoes . He bought some clothes and I bought a necklace and a beret cap which was wine red colored . Moreover , because I ca n't use my suica card in Kyoto , I had to buy some train tickets . He was a manic . Maybe somebody die , or lose a lot blood . He was hungry , angry and terrible . . . In my opinion , it is not useful to disclose his face . So , I think that it is premature to disclose photos before the court 's final judgement is announced . in Yoyogi animation gakuin . . . The Liberal Democratic Party has governed for over 50 years . governs the cabinet or not , but I hope DPJ ' policy strengthens our economy . Recently I am very busy with my work . My shoulder was treated . One of my ffavorite things was stolen . yesterday my friend said you looked so slender but recently you look fat ! . But I ca n't do anything about it ( ? ) which attracts the audience effectively . Is this my redundant reaction ? I had a watercooler that my boyfriend gave me . If the someone Chinese said `` You were unlucky . I have to take an oral examination in five theological subjects this week : old testament , new testament , church history , systematical theology and practical theology . There is almost no visible effect from the 3 . 11 tsunami , earthquake , and nuclear - plant problems . Going to work , school , supermarkets , and so on . I knew it exist . My name is chinacamel , from the Shanxi province of China ! Trip to Beijing Then , we tackle cleaning the whole house . It was beyond my expectations . `` It was so hard for me ! I remember their smiles . Though I am busy , I still keep a diary . Inari ( shrine ) - > a fox - > thin fried tofu I 'd like to watch Premiership matches , and UEFA Champions League matches . Now I 'm looking for the tickets . I wrote about the club in my last journal . Yesterday , more than 25 people joined ! Thanks ! Yesterday it was nice outside . I weeded out my yard . Last month I did a lot of weeding . But when I finish an exam on next Saturday , the long - awaited summer vacation starts : ) ! a part - time - job , studying English , drawing pictures and contribute them into an art contest : - ) Google says ' Do you mean : my name ' : D Japanese people are usually not good at speaking English , because we only study English grammar when we are students When I tried it on , it looked very nice . This is because the motion of their gestures is too large and radical . It 's easy to hit me , especially when I stand by them too closely . I met my friend on the 2nd night , I waited for her for a few minutes outside . My elder sister and I were talking in the hall . Suddenly my younger ( or younger ? ) sisters quickly cameto my father crying and shouting `` There is a big man . `` Then someone knocked at the door . When you are in a trouble , what will you do ? Generally speaking , songs are a good way to practice another language . because there is a very big tree ( 2000 ~ 7000yesrs old ) which is I know I can manage to write or say something in easy English . I took driver 's license exam that covered basic vehicle operations such as headlights , windshield wipers and driving straight . It was very easy for me thanks to a lesson I took at the driving institue as well as the easy questions given at the test site . I have to take up many part time job to earn money , since I want to go to Philippine for studying abroad next spring . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a response to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these consumers are really smart . . My winter holiday has already begun . I think ( that ) I should read some English magazines or newspaper for improving my English during this holiday , but I do n't know what I should to read . I hope to get some advice from here . I expect to have improved well when the holiday comes to an end . Io sono povera e vecchia . The girl is young and tall . I 'm so happy , 'cause I can use it anytime . There are not so many tenses in Chinese , so I always forget to change tense . Some people decided not to move anywhere by themselves and some people can not move because their partners are Japanese . I 'm so delighted when a good person wants to be a employee . There is a new type of this oil is on the market recently . Fried garlic , onion , and many other ingredients are in the oil . although english is so difficult for me , and from time to time , I think it is so stupid that speaking english is my goal now : ( In Japan more than 70 % cellphone users have ' K - tai ' phone , they do not use ' Smart Phone ' like ' Xperia ( SONY ) ' or ' iPhone ( Apple ) ' . We stayed there until midnight . Kitano Takeshi plays the roll of a Japanese soldier called Hara . making training pants for my husband . I went driving to the countryside to meet my friend who just moved there recently . It was a pretty long drive . It took 4 hours but I was able to release all my frustrations . Her parents keep some cows to sell for meat . It is rare for me to see real cows , so it was a very exciting experience . At first , I did n't realize he was sick until this morning . I was intending to give him to others , I found he could not walk , and I felt so upset . We are having our final examf this week . Then we checked her test sheet and found out her answer sheet was left together with her test sheet . I went to Hawaii for ten days with my female friends this month . There is a friend of mine , a girl , who was my best friend when we were in primary school . It 's really wonderful , not only because there will 172 famous Chinese film stars attending , like Jet Li , Ziyi Zhang and so on , but also it will shows us the history . And bless to those heroes who fought for the independence and democracy of our country . I have a happy timebecause I am surrounded by beautiful audience and the great members . At least , it does n't seem as hard to get a good score in your university as to get it in senior high school , because I only need to do some subjects I 'm interested in . In Japan recently there has been a demand to save electricity . Our tent was the most embarrassing of all . Our mattress was stuck and our tent broke . Because in China , people always learn languages from books and there is no chance to speak it . So that I know this language very well . I want to make friends with Japanese people who can teach me . When I got up this morning , nobody in my family was up yet . I 'm travelling to Mie now . But this is n't a good city for sightseeing . So , Hong - Kong has no surprising points for Japanese people . Because the people are very kind . During rainy days or days that are high in humidity , the volume of my hair is up . `` Super treatment `` is a treatment to make my hair softer . I was really surprised . I like shopping and I like beautiful things . What does entry mean ? lol I 've consulted the dictionary but I still ca n't understand what it means ; ( I watched a baseball game in Nagoyadome yesterday . Yesterday was the winter solstice ! Back to the school The box was covered with wrapping paper . Remember , once when I was going to work , one of my high heels was broken making me very embarrassed . I called you first . You were very kind and bought a new pair of shoes to me at work . In the new semester I must study hard with my English . The name of the restaurant was Sakura - jaya . The drink was lemon tea . The dessert was caramel cake . I was disappointed by `` Avatar , `` so I hope tomorrow 's movie is good . That is very hard to get , my English is still awkward , if you do n't mind please help me . But everyone encouraged me when they said `` You 're working hard `` `` You look cool . `` I was very happy to hear that . I had sashimi ( raw seafood ) made up of tuna , salmon , horse mackel , scallops and salmon roe . I have to use English for business , so I have to study English . I think that bridegroom Tani , bride Meka and the 4 organizers were a good combination . This Event was for girls only , so the interior decoration was very cute and girly . Now I 'm in the countryside of Korea for this job until the end of this month . The problem is that I do n't have a computer even though I need it really badly to get done with my school payment thing and things like that . I heard that people who experienced study - abroad need more than 800 scores to prove an ability based on that experience . Yesterday it was rainy and cloudy . It 's very difficult ! Especially , I love broiled salmon , medium rare . you will go there again ? ? He answered with a smile , `` I went there too many times to remember `` While Japan wasa developing country we had to learn a lot of things from foreign countres . the important things to consider about the place where you want to live are : and I do n't understand some things for example : I am a good boy , are n't I ? Tomorrow . . ? Tomorrow , there are practice games . The amount of juice was clealy reduced . I always put my contact lenses in my eyes every morning . My job is a mobile phone programmer . I am not a programmer , but I just like it . So when a bad thing happens , I remember a saying : when one door shuts , another opens . You must know about the feeling of loneliness or separating , and it 's much stronger when you 're alone in a foreign country where you know nobody and you could n't understand what they 're speaking ( I know it 's called French , though ) . I cried again and mocked myself as the biggest stupid in the world . While listening to quiet slow tempo music and calm voice of the instructor , I stretched my body . Return to the Earth I have been in Germany for a month . Then suddenly a old man who had tattoos all over his body entered SENTOU . It was an unusual situation . . . . What if suddenly he bit me ? . . . . . He approached me with his stubbern face , and said with his low tone voice `` Could you give me some of your water ? `` He was really kind , although this might just be a cover up . He could n't get over his thirst and had to drink to fufil his obstinated ways . In fact , I 'm not a fan of Jennifer Garner , but this role was perfect for her . So I had to shovel snow . . . > _ < The first episode of hell girl is quite boring . People send the person they hate to hell again and again because of different reasons : hate , misunderstanding , jealousy and even love . And the music in this cartoon is also listenable . Many people do not seem to be very pleased to eat what they 've never tasted or anything which sounds exotic , but is n't that losing an opportunity to add it to your favourite menu ? The shop was proud of its various high quality imported products , there were many customers who came from other countries looking for ingredients to make their local dish . ( I would often be asked by Australians : `` Where 's Vegemite ? `` ) I went out to get the bus . I like Homer , because he 's really sweet to his wife Marge . Ear , nose and throat hospital Could someone please put the following sentences into the passive voice . Could someone please put the following sentences into the passive voice ? Tomorrow , I am going to watch the football match in Saitama Stadium . While doing Kabuki , actors speak very slowly and with a wavy tone . my English level is bad . So , I had to wait outside of the Jinja until they came out . Actually , I like `` Nicolas Cage `` . Please , correct and comment on my blog . I 'm a student studying nutritional science at a university in japan . I used to have conversations in English at English conversation classes when I was in elementary school and when I was in junior high . How about it ? A lot ofpeople who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese people are kind . : P My job is to teach foreigners Chinese . I want to learn some native English . `` Four till Nine is given to one who find . `` It is just because we have culture to eat whales . Maybe the protesters who against this habitual think that people should n't eat whales . But sometimes it makes me dpressedthat I ca n't improve my English . Recently , I 've been thinking that every day . I have to eagerly keep studying the jewellery business and be careful to trade only with reliable partners . He sang songs that he liked , whatever his companies or the audience thought of them - - in fact , everybody would show his happiness and satisfaction whatever they thought , and you know why . One of his hobbies was forcing the female stars who went to Chongqing to have sex with him , and then recording the process . And in my dream , one of my high school fellows ( Iet 's call him Ice ) told me that he had got some videos of Wen Qiang , and there was plenty of hot stuff besides the pornos . I 'm writing this journal in my room , obviously , in Japan , This is my homework . We had been studying together since we were in primary school . We had a nice time together . I found out about this website Lang - 8 today , and I thought it was so great . I think the greatest thing about this site is that the people who correct language mistakes I 'm able to advise and help people who are studying Japanese , too . I have learned English since I was 18 , but I do n't understand much of it . I can understand what My teacher says perfectly , but I ca n't understand movies or people who I just met for the first time . I met my teachers a long time ago and I have talked with them many times . I 'm listening to the music of Santana ' Smooth ' on Youtube . I usually get up at 6 : 30 in the morning . I joined the cooking school for elderly men , looked for the checkup for 3 year 's old children , studied the system of the health center , and so on . All US foods which I can imagine are junk such as burgers . We bought detergent , dishwashing liquid , and a frying pan . After that , we had lunch at a sandwich restaurant . In the afternoon , I went to a computer room to use a scanner . However , the patty broke its shape while I was cooking . It did not look good , but it was delicious . I 'm looking forward to playing tennis tomorrow . The food was good ; they both have world heritage sites , the Halong bay and Angkor wat . Thank you for reading and listening . But how can we be good listeners ? In my opinion , the most important thing is to focus on the topic you are talking about . My examination . . . Because I have reserved a train at 7 : 30 AM . I 'm going to Australia next year for studying . Australian goverment changed their Immigration law . I have to chose the proper word out of four choices but sometimes I do n't know the meaning of all the choices ! My tears were like rain . I can relax and improve my English . Instead of that , we are going to go to Holland next month to see flowers . So , I decided to go shopping and make a pizza . I found a recipe in internet blog and started making a pizza . When I got up I realised I had a better understanding of this movie . My feeling is when I help a person to correct his / her eassy , I 'll be successful , and sometimes I can found some entries are like comedy shows . They sing Japanese soul music . I 'd like to introduce their PV ; Samurai Soul . We concluded that thinking in English for 75 percent of the time is necessary to master English . I would like to have better pronunciation . So I have to take a lot of classes and my schedule is was too heavy . I could not answer well . . . Lunch time was coming , but we did n't have lunch together I tried to write a diary in English . I wanted to change the teacher to Johana who was my previous writing teacher and is so good . I 'm twenty - years - old and a university student . Hi , I 'm studying English in a Japanese University . My dormitory is in Gifu Prefecture and my family 's house is in Shiga Prefecture . Usually I studied English about 2 ~ 3 hours a day , but I study it in please get out of my head immediately ! When I was in Korea , I used to eat every meal at the restaurant , because there were so many options to choose from and I also did n't have enough time to cook . Now , there is n't any option , because there is n't any restaurant near my village . Before leaving they complained about my absence . But , unfortunately , when you come home after shopping , you feel very tired . So , it is called an aeropolis . l know that many people want to get more money or stronger power , Yet l do n't know how to tell people around me what I think , because even if I do it , no one will believe me . They must think l 'm crazy . We went to a coffee shop and talked about her marriage life and new workplace . All of nature follows Fibonacci 's numbers . But I noticed we have not much difference between us when we made skit . I like studying English very much . I studied the flower design for three years . When I entered the pub at 10 , all the seats were full and it was very crowded . There were 3 people on staff , but it was not enough . At 3 , 15 office workers came in and ordered the `` NIJIKAI course `` The NIJIKAI course is some fried food and drinks . So I took the exam at January 24 . which is something impossible right now , so I 'm a little bit pissed . I went to Seoul for a long time . Actually , most of my co - workers might be missing me a lot . I missed the station which I had to get off at even though I 'd asked the train crew twice ! And , again , I 've not kept my promise to write a diary entry a day . He asked his English teacher , but he still could n't understand the explanation . . < - redundant I spilled water on the floor during the night . it is in the country , a little left from Osaka iPlayer provides English subtitles . So he called to all the animals , `` Mung - Mung `` . The best performance was when the trainer rode on the dolphin . At the end of the show , we ate lunch on a mat in the forest and it was more delicious than eating at home . I will buy the Xbox360 version . My friends list does n't have any friends on it to talk with in English ! My hobbies are swimming and shopping . I am now thinking about a master degree 's research plan . I want to research about Japanese writing for foreigners . I am in trouble to find out a way to research this . However I have to persuade readers , who are scholars in the Uni I want to enter . I want to study English ! Gion festival is the annual big event started 1 thousand years ago and it is one of the most famous festival in Japan . Anyway , I 'd like to graduate from school and get a job as soon as possible ! And she said `` you are strange . `` the time is coming . It is a cloudy today but the temperature is not too warm and the weather is comfortable and I 'm looking forward to the start of the school year . Although It is hard , I 'd like to study English . and I believe it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achieve my goal . She rode a bicycle . When she arrived near a company , she wiped her sweat . There , my dance club members will announce . ( Announce what ? ) It 's terrible , is n't it ? ? I 'm always eating lunch at a canteen , but I 've decided to bring my lunch starting today to save money . It is interesting to see what the shop sells . digitalizing TV The Japanese government has decided to digitalize satellite broadcasting in 2011 . I 'm beaming , I hope to meet people who can help meto learn . Fortunately , I can speak English , but I do n't want to forget how to speak it . Did you watch Michael Jackson 's memorial service ? They spoke about Michael Jackson 's life and sang . I overheard somebody who was talking about Michael Jackson on the phone . I liked his songs and music videos . When I got home , I turned my computer on to listen to his songs and watch his music videos . I heard that Michael Jackson 's daughter inherited some unreleased songs . When I do n't have time to stengthen / set it in the morning , I like toput it intoa ponytail . There are 4 people in my family . My father 's been a fireman for 20 years . He teaches me patience and sacrifice . When I speak with a foreigner , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I have no doubt that your comments will be helpful . I believe in this world so I wo n't give up on life . If I have a mistake in my diary , please hlep me correct my mistake . Later I felt uncomfortable because I did n't see his face and I do n't actually know him . blablabla . . . . . I do n't want to be so discriminatory . . . But I ca n't use those greetings now , because my grandparents have passed away this year . I could see that the top of Tokyo Tower was slightly bent by the great earthquake ! After drinking , I went to a club for the first time ! ( My friend took me thereX ) ) Dancing with music was so exciting . I do n't know how they teach English in other countries . I guess that there are some differences between the Japanese way and the other countries ' ways . I mean a lot of experience is the most important thing . And also , having a passion for study is important . Next weekend , I will try to take a picture ! I want to use this service not only to study English Grammer but also to meet friends . I had a really good time . Many of my classmates decided to receive further education . I 'm 19 and my daughter is 2 . I watch TOM AND JERRY every day with my daughter . There is no vaccine in Mexico , as well as all around the world . How can we stop the from flu spreading ? time 's moving on 'cause my writing speed 's so slow . To succeed in college or even in society , we need always remember to have a mindset that you should doubt anything . Before enrolling in college , you may have been only learning a lot of subjects by heart in school , such as a date in history or the grammar of a language , etc . I will take writing part of it in 3 . 17 . After two monthes merely , I found I can not work very well , since I do not know the internet - related professional skills . I decided to give up because also need 30 minutes to go and exchange clothes . This is just me eating something if I get angry . Christmas Day is a holiday celebrating the birth of Jesus , on December 25 every year . At night , children go to bed earlier than normal and hangstockings behind their bed to hold the presents which are given from ' Father Christmas ' . I play the guitar and sing songs . Before the test , I always feel pressure . Nothing can match the pleasant feeling of being home . The New Year 's Day is enjoying a striking popularity around I came to Busan from Seoul this afternoon by the STX . I was so disappointed because I had tickets to the seventh Well , I 'm planning to go to community college first then transfer to a 4 - year art school . I was going to cancel / drop that class , but since I was curious , I just chose to take it . And do you know what happened ? On February 16th , we went to the Uluwatu Temple . It constructed on a very tough cliff . I think my browser may have some problems because I downloaded something ( bad ) . and some of the messeges ask for genuine microsoft software . Since the world of computer science is more open to English speakers , I want to study English . I 'm interested in programming for the web . If you also are interested in programming , please be my friend ! Shannon Brown was a beast . There are some places in the darkness , a park , a small forest , bridge above a small river , a small house and a cafe . To show off a skill and contribute to one 's team . So I hope to be useful to you and also to learn something from you . I want more more sleep . . I live in Paris from Monday to Wednesday or Thrusday , and then I go back home . Without any knowledge of the language at the beginning , after a fortnight , I could manage with Italian people in daily conversation , and understand many things . And they have a very interesting grammar , with very funny tenses , such as `` subjuntivo . `` However , it 's not the only reason . I watched Transformers 3 with Xiaoquan yesterday in Guangdong science center , IMAX3D . It happened about two months ago , three friends decided to go to an amusement park called Happy Valley on that day . I 'm have been hanging out the laundry this week . I was accepted into a university in NIIGATA today . Today I was rehearsing for my upcoming dance performance . While I was indulged in my practice for it , I suddenly saw the boy who I have a crush on walk by . Out of astonishment , I shouted out loudly , `` Ah ! ! ! `` and stopped my movement . He somehow stood there watching me ! ! I was so embarrassed that I had no idea of what I should do , and just bent over and stood there . My thoughts went so crazy for him that I can barely fall asleep tonight , this is feeling just not sitting well with me . If you want to be a professor , you must be able to do daily conversation without any difficulties . My husband is Indian and he has started to run a small guest house in Rishikesh since this April . It is a famous place for yoga , meditation , the Ganges River and the ashram where the Beatles visited once . I wonder what score I will get in three weeks later . There could n't be a more beautiful landscape on which to meditate . You could clearly hear the clashing sound . It was frightening . Some more hyenas were training karate . Others were doing nothing . They took me into a magnificent temple with a huge hyena statue on the rooftop . I passed the first paper test of Eken Pre - 1st Grade , so I could n't be better now ! While I got angry with him , I realized he has kept his wild nature . It is also so humid in Japan 's rainy season . I do n't like Japan 's hot and humid summer either . My friend could answer easily because he is English . My purpose for studying English is to communicate with my business partners , who are in Silicon Valley . That was only typo , haha . The weather forecast said that it would continue till the end of the week . You know , I am a Chinese , who lives in south , so I like spicy food and do n't like sweet food , when having lunch . In the afternoon is computer class , and you should see how fast the teacher speaks . I ca n't catch what she says just like many students around me . That 's like a thirsty person who finds fresh water , but more romantic than this . The doctor told him that the girl is invited by his army , because he always says her name Dubai loudly . The girl takes care of him for about three days which , amazes many people , because everyone does n't understand why an Asian girl would take a U . S . soldier so seriously , and does n't leave . The soldier fell so happy and thankful about it , and asked the girl if she wanted to be his girlfriend . After that , because of the wound , the soldier leaves Iraq and marries the girl in Chongqing province , China . I have some stress , so I scratch the same area over & over . I 've often scratched my head . I scratched the same spot , so I 've lost a little hair . I do n't a bald head , but I have to address this . So I can get along with with all kinds of people . I can operate some Mac software like Illustrator , Photoshop and InDesign . I like to watch professional sports games , but actually I 'm not good at sports , especially ball games , like baseball , football , and basketball . I need to exercise regularly . I could not go to work yesterday . . . I saved all the pictures of the products I bought at ASOS , the models wore such attractive clothes on the catwalks , wow ! Finally I wanted to say that I will graduate from school two years from now ! It is really strange that people reveal their divorce in front of friends and familys . The figure is a little bit higher that I thought . so tonight I went to her new house to fulfil my her room is not very large , but very comfortable . Favorite things . It 's kind of hard for me to focus on a story . . I just love watching the `` American Pie `` movies . In the first half , Ji - sung Park scored the first goal . Because I plan to tell her parents that I want to marry her ! ! It is Japanese food . Especially , I like Korean and Chinese food . However , I guess the word `` fucking `` is used to emphasis the words after it , so it 's very similar to the usage of the Japanese word `` kuso `` . The word `` kuso `` means `` shit `` in English exactly , but it also plays a roll in rudely emphasizing the words after it . So , I explained it to him like that . I 'm looking for friends who can chat with me I 'm tired of speaking Japanese . . . . This year I decided to handle foreign company more actively than last year ! Especially , getting more vocabulary is very hard . Ganghwa - Do Yesterday , my family and I went to ganghaw - do . It was a one beautiful place . It was surprise too . The bad news is that I failed my ACCA exam . . . . . . . . . . . . . is was worst than last time . . . . . . . . . . . how come ? ? ? > _ < Studying English is one of my hobbies , in which I learn it with enthusiasm . Since I found information about prostitutes , I realised that they are not only bad points , but also good points . So I think I should n't judge or look down on them due to their appearance . Unfortunately , it 's Saturday today . . . I believe that marriage is special and spiritual because one man and one woman , who are first different human beings , But the first typhoon is likely coming soon , and it is raining now . After this happened , I Iooked for a place to eat . when to use `` a `` versus `` the `` , and idioms like `` work out `` ( exercise ) . My hometown is a big city and I feel convenient , but I think there are many great points in each cities . Today , I went to my school to participate in swimming class . After I came back home , I ate lunch and I ate spaghetti with meat sauce and it was very delicious . I 'm not the demon so it was very fun . Tomorrow will be very hot but I should work hard . In the Netherlands , I had to find a dentist who I could register with as a patient , make an appointment and wait for 2 months . A nurse said `` Why did n't you register at a dentist before you had a toothache ! ! ! It is common sense all over the world ! ! ! However , when I go for jogging , I do not have to go to Gymnasiums , I can do it on the street or on campus . I saw many international ( interracial ) couples in Australia . I studied Japanese a bit , learned some new kanji , and went to eat breakfast . I managed to swallow some yogurt , but my throat was too sore for anything else I had in the fridgerator . It felt like heaven ! There are two bathrooms and three rooms . There are 4 rooms and two bathrooms . but my friend ' s house is very simple and modern . my mom likes decorating decorating theirs . Tomorow I have an exam of mathematical statistics . I 'm very much looking forward to it ! I will go to Chicago for the marketing - skill training this September . Therefore , I have to improve my English ( ability ) soon It was slipperly and dangerous . Spring is coming to the corner . but I wanna fight ! I need your kind help ! I did n't expect that someone would correct my first diary , but two people did ! I tried not to use my dictionary in order to write my first diary . I 'll keep writing a nice diary using my lovely dictionary . Japan has four seasons . I live in Japan , and I sometimes see foreigners wearing a t - shirt while I 'm freezing . It 's been a while since I last spoke English . There was no abnormality . He taught me that the dream will definitely come true if I did n't give up . My college life . I am getting an external education about storage foundation for data bases this week . `` Galapagos `` is a set of islands or an area around the islands which is distant from the continents and is well - known for its unique eco - system . These `` Galapagos `` characteristics often bothers me . However , I can not go anywhere . It makes me feel more tired and frustrated . hello , I 'm good , I like english , I am not good in english , you are looking my page . help me write in english ! I must improve my English skills to communicate with people all over the world . Apart from that , I have to create an sketch with a friend . It 's for an exposition ; we are going to `` act `` Phineas Gage 's article . At least , I can speak very influencially . . . ( ? ? ? ) Thank you for asking me about the interview : ) I think it went pretty good . I do n't know why , but I was not nervous that day . [ two sentences ] I had to do a self - introduction presentation , a social issue - related discussion , a competency based interview , and a Chinese interview , all in one day . Because I skated too hard yesterday . I need to study speaking English too . I really love eating foreign foods . However , the expected time is about two minutes so it is not going to be that tough . Actually , today was a different day in a sense , Lamar is finally gone . I 'm eager to speak many languages , so I watch some NHK programs to learn different languages . There were many friends appeared in this wedding and they drank much wine to celebrate his friend getting married . A typhoon went through Japan and I 'm aware that autumn is coming . If you use Skype , please add me because I also want to learn to speak English . Today , a very very ugly incident occurred . I am working on my application material to make it more impressive , and hopefully I will get into a prestigious school that I can be proud of . What 's the difference ? `` I 'm fine ! `` `` I 'm good ! `` `` I 'm OK ! `` : What are the differences between these three phrases ? one color without design . I think Japanese umbrella market is a thriving business . Japan is very unusual among the developed countries in its strict attitude to foreigners who want to work in Japan . In this period of globalization , Japanese industry cannnot remain competitive because of shortages of the workforce . He said `` I 'll check it later . `` When he came back home , he checked it carefully . I have a BIG presentation next Tuesday but I have n't finished my report yet . Every time I meet someone from the team , she greets me with a clear voice . Every morning , one of them is cleaning the entrance of our school . One of my colleagues told me that it happened because the team members were careless , but I wonder how much they care . I learned some sentences . It 's approximately 10 feet tall . Serious Disasters If we destory nature , we are destroying our civilization . Besides , he cancels the term exam because he does n't want to write the exam paper . I 'll have to communicate other members in English . This book wrote about the difference between the English and Japanese voice . I came back to my camp as I was disappointed . I made out that it was him because he was tossing and turning . I really dislike humid weather because I get sweaty easily . A bear was shot because it injured a woman earlier and it could happen again . When I read this article , a question occurred to me . Our selfish lifestyles cause climate changes , and these lead to the lack of their food on mountains . My friends came to my house Yesterday . One is married . The other is not married . For a long time , I could n't upload my page , what with my tests and the disasters that happened to Japan . Fortunately my friends living near the disaster locations are all safe ! But now , I strongly believe that English and its culture is but one of the many cultures all over the world and I want to strengthen my idea by communicating its importance to as many people as possible . However , I noticed the convenience of English for the first time because I could talk to many people like Belgians and Egyptians with English . Though I have been saying many things above , all I want to say is how pleasant talking to many people is ! ! It took 10 minutes to walk to the beach . It turned a very comfortable day today . But Japanese people are n't interested in it at all . There were a few people , and some main buildings were closed , others were opened but closed at 6 : 00pm . I think I 'm very susceptive to weather changes : - o `` What day is today ? `` I always say that because I never remember the day , even though I ask my cousin a lot . He always says `` I just told you yesterday . `` I heard someone say a goldfish can only remember something for 3 seconds . After that it will lose its memory just swimming to the edge of the fish bowl . If a goldfish fell in love with another fish , it would n't remember because it would lose its memory . Myhobby is to go camping . I can speak business Japanese , but my English is poor , so I want to improve my english to get a good job in trading . I have a sore throat now , it 's really uncomfortable . . . I agreed and sat down waiting for him . Is there someone who lives in Europe ? In Paris , I 'll see the Eiffel tower , Louvre 's museum and shakespear 's & company book store . can you tell me other hot brands in Europe ? It 's because this is my first time trip to Europe . I applied for two squba diving tours and bought lenses for my scuba diving mask . My name is SAKURA , chief of Japan 's traditional dance group , NIPPON . I am introducing the wonderful world of Japanese dance . Please believe me ! I read in the news today that Pizza Huts across China announced that they are doing away with their salad bars . It is already half a month until I go home . Hello , Lang - 8 users This week , I 've been thinking about how to use Lang - 8 effectively so that I can make progress on my studies . At the beginning of weekend , I have a long bathtime on Friday night . bathtime is a pleasure which many people living with a family can not have . There is an English exam called CET in China . Time flies so fast . Everyone walking around town was wearing a shirt with long sleeves and a jacket . Firstly I write some words in English , drink a cap of coffeand read my E - mails . After the bus tour we had 4 hours free time , so we went to the Beatle 's museum which is quite famous as far as I know . lol Then I realized that I might have made a mistake as I perused the museum . In fact it was tough to understand all of what was said , therefore I 'm not entirely sure of their history , achievements and other efforts . . . everything they did while they were together . Well . . . honestly it took us two hours or so to finish this tour which was pretty much half of our free time actually . . . Therefore we did n't have time to walk around the City centre , which was supposed to have been fun to do ! I have to study Chinese and English . First of all , you should buy asmall boat to catch more fish in order to get more money , and thenyou should keep fishing for 10 years . If you achieve your goal , you can get ahuge amount of money . Then you candeposit your money in a bankand earninterest . I was supposed to take the intermediate level this semester , so please help me pass the class with a decent grade . Today I rented `` Jingle all the way `` and `` Dr . Dolittle ( Eddie Murphy 's comedy . Well , got ta go . My job title is programmer . Wow ! I was suprised . education system , learning things that are boring . I tried to become a Pro member after that . In Korea , adultery is a criminal law not a judicial law . I ca n't understand why the government punishes people for their private life , whether it being love or sex . I think adultery crimes can be fixed in the judicial courts . Keith and Carrot , who had goneto town to visit their son and daughter came back to the church . He came to Australia on a working holiday visa too . I will be talking in Korean for a long time when they come to church ! ! ! ! ! A few minutes ago , I saw a sports news report on TV . My friend said to me , `` You look younger than yesterday `` . Anyway , it 's not my business , I 'm okay until they start raising prices : P I do n't understand why Edward tells Bella to stay away from him , why heleaves her alone . I 'll be more careful next time . . . I 'll try to build my comfortable life slowly : ) Well , my husband and I set up our own small business at last - ) This took a lot of time . You know many Japanese college students have a tendency to be sensitive about what they wear to college . In other words , they really care about how are they seen . So they wear fashionable clothes all day . I noticed that lots of students wear hoodies or T - shirts , especially with their college name in front . Is it inexpensive ? But I am worried about whether I can speak English well or not . After we left the beach , we went to a shopping center named American Village . So we could n't go anywhere except there . We just looked through some stuff . The marketing manager supervised them at first , but she gave up controlling them at once . They started to shoot the film at their will . Because I got a opportunity to make my debut on the world stage . Syobu is a beautiful flower . Shrine of the City God Parade Day is every June and not on a specific day . The first time traveling in the United States . When I walked around the house , I felt an unpleasant sensation like I was trudging uphill in the house . My favorites are reading books , including Manga or novels , watching movies , taking pictures , playing tennis , and gardening . . . I 'm glad that the Japanese team won ! JOSIRYOKU , the art of being a fascinating woman It 's too difficult for me to learn this stuff , I have no confidence for passing these exams . This song which you might have not heard of is named `` Hailey 's Song . `` `` Hailey `` is his daughter 's name . `` Hailey 's Song . `` I wonder if the english title is okay or not . Does this make sense ? I do n't have confidence about whether native speakers can understand my English . Please let me introduce myself It is very important for me to improve my English . Please correct my errors anytime . Ohhhh . . . According this book . In the past , Japanese food culture had us eating insects such as cicadas and grasshoppers . I 'll attend some meetings and an exhibition of the heating , air condition and ventilation industy in Las vegas . Yet the real relationship , in my opinion , is much more subtle than the triangle in the movie . But I will not forget to put some medicine on my head for hair of course . I want to be a person who can assist someone 's development even though my ability is not excellent . I had my bicycle stolen during the night . but I ca n't forgive the person who stole it . After the lecture , I am having second thoughts about the `` Global Environment `` . I could n't watch it before because my daughter said that it was scary . ' Poets are not so scrupulous as you are . I tried to write something ( like book reviews ) in English on some websites , but I was so ashamed of my English that I just could n't do it . Kaiten - zushi having rotating sushi on a belt conveyor which is cheaper than traditional sushi restaurants . I am working hard and I hope my dream comes true in the future . But I like go back school , because I can be with my girlfriend and play with my friends . My english is horribly broken ! I said that I was too lazy to do something , but my friends told me when I am lazy I should do something new or study Chinese instead . I felt it was very typical for America and I filled with emotion . It was the first book that I read on my own . My ability to understand difficult sentences was immature . Returning to Harry 's wondrous world in this age , I 've found something I had not noticed when I read it in Japanese back in elementary school . But I think this is why these books are called masterpieces . I had studied English in junior high school and high shcool . I think the best thing for learning English is to keep studying everyday . and am studying Farsi [ Iranian language ] . { I 'm trying to write articles in Farsi too } My hobby is watching Japanese animation films , foreign movies , and I especially love Woody Allen and Emir Kstrizca films . I 'm studying English right now and hope to acquire skills to speak fluently with native English speakers . Philosophical issues , religious issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . I want to make progress with my english I am very glad to be a member of lang - 8 . So far I have studied English for about eight years , up till this term . It 's so easy to cook and tastes good . I was very surprised . Eastern Japan has big problems . Today , I went to the police station to get a new driver 's license . I want to exercise for 2 or 3 times a week after this . the leaders of both teams are friends . but sometimes it 's not met ) . If two participants find one another good , they exchange phone numbers and they become friends or boyfriend / girlfriend . My friend , a friend of my friend , and I formed the men 's group . The women had three persons as well . We enjoyed the party and had a lot of conversations . So they go to the academy after school and go back home at midnight without time to have dinner . Statistics say that we , people who live in cities , lose good , quality years of life ( or our lives ) due to ozone exposure . Yesterday , my classmates and I went to have dinner in a restraunt . But now , it is in good condition : ) I ca n't relax without it . The Romans knew more about fighting on land than fighting at sea , so they put a wooden bridge on the front of each ship . I think the Romans were very clever . But the history of Rome was very interesting . I ca n't believe this happened . Do American people tend to include many people in an e - mail when possible ? We japanese are accostomed to plenty of things and food . I stayed up late while they slept for a long time . In contrast , The PRC has become rich , but it still makes more threat of force to the ROC and never recognizes the fact of the separation of the two sides . I do n't think they are wrong , but do they have the qualification to agree to people 's self - determination ? I went to the East Coast with my friend . I brought beer , Japanese sake and some snacks . I made a commitment to serve my family . I performed in some temporary groups while the other two joined groups together . After some time , we separated , promising to meet again . I will have abilities to do inconceivable things . It 's [ vegetarian ] It 's not only the students , but also the teachers who are in trouble and trying to overcome their obstacles . The doctor said that it 's because of the sudden change of environment and food . But still , my body has n't yet adjusted to Korea . They damaged an atomic power plant . According to the report from the government , there is no danger to their health But some said that the government and power company are trying to Could you please tell me . However , the information gained from advertisements is sometimes overflowed and it is very confusing . Because many companies and shops are competing to win in the market , each shows their own characterized advertisement , which can be too much information . What is worse , people tend to purchase products or foods even if they do not need that merchandise . I believe that more people should learn the way of recognizing whether which information is right or not even if the amount of advertisements increase drastically in the future . they can cook korean food . . I do n't know why . . . I doubt I 'm writing good . Anna from Boston eventually finds her true love , not in Jeremy 's luxurious house , but in a shabby bar in Dingle , a small town in Ireland , in the arms of Declan . This class is boring . I am too lazy to write a resume . . . . When I enter my room , it smells good . I 'm so tired right now because we received more than 150 students today . I should have gotten up early this morning , but I slept in late . I am learning English , especially listening and oral english . I have ( ? ) a postgraduate major in computer , interested in network security and DB . I look forward to more friends to exchange each other . Today I am very happy , I 'm very happy . When you look at a Chinese word , you can not know how to pronounce . I told him not to hesitate , but he said he still wants to be friends with Ice , and that he did n't want to hurt her too deeply . The sentance is `` Equilibria between any number of substances are representable in terms of activity coefficient correlations such as the UNIQUAC or NRTL `` But it had Denzel Washington ! I 'd appreciate if you read and fixed these sentences . I am satisfied with my hair style . Some insist that individuals will solve it . Today I want to challenge new work positively . I ran , among crickets and cicadas , that was just an astonishing sight , I think that this may be good for people who are not allowed to have pet hamsters at home , or people who love hamsters but are too lazy to take care of them . Through this incident , I found that the country of Japan is not alone , and international cooperation is really important in a global society . Because the weather forecast said today will have a wintry pressure distribution . I do n't know the situation in your countries but in Poland Spring officially has come . Spring is my favourite season of the whole year - it 's not too hot , not to cool , just warm enough for me . Unfortunately in going straight for my goals I feel like I have been losing something important , paying not enough attention to relationships with people I care about . So I cut one side of my hair by myself , which made it more awkward . As he is a serious man , he is going to get along with his sweetheart . We did not reach a conclusion , but I think it was interesting and will be useful . On my way to Suwon , I heard there were 2000 applicants from my friend who had aleady been there . I was desperate and gave up trying to get the job . However , I changed my mind because nobody knows the result . When I got there , I noticed that my friend had the wrong information . However I feel a little uncomfortable . Not only in English but also in other languages I think there are strange expressions like `` break a leg . `` I prepared all my tickets , but not completely . I was comfused because I heard about it just before I borded the airplane and I 'll arrive in Bergen at 11pm and the hotel will closed . I looked around in the airplane . I went to drink with some coworkers yesterday . We drank still 3 o ' clock in the end . If you have information on it , please tell me . Because whether or notyou can be admitted into college is decided by this exam . The system is feasible in China although many people think it is unfair because of our country 's large population . We need more college students to build our country , to help make our country more beautiful . In my opinion , this is very cruel for students ! Hello everyone my name is May . I like English very much , but I am afraid to learn English ; because I make a lot of mistakes . Could you change this paragraph to make it look more like a speech ? or if you do n't have enough time , just correct it . I would appreciate it . Funny listener In concerts , often there are `` funny `` listeners . I ca n't wait for the 26th free program on figure skating . When she got wind of the solution from a Homeland Security officer , she was a little bit confounded because she had made up her mind not to marry anyone . I will begin to write again daily , as well as I can . I also think that this diary has many mistakes . ( Actually we are already in February ! ) Usually , having her wedding in Maldives will be so romantic to a girl , but I 'm so tired for it . . . By the way , I think I am quite a strange person , because I feel excited when I hear the wind screaming . Maybe it 's because I just drank a cup of coffee which always make me excited . I try to imitate what I 've heard from the NPR to correct my pronunciation , my tone , and things like that . My summer vacation will end tomorrow . But I am happy because I will be able to meet my friends and homeroom teacher . `` Do n't be a loser `` I keep telling myself that , but I always give up easily ~ I need to be more stronger , tougher and more focused on my target ! It was tough because of its length . ( I heard announcements in French , and I liked its pronunciations . ) He mentioned a girl who I love very much . Her husband dose not have a permanent job , therefore he helps occasionally with the washing of customers hair . Particularly , that of Japanese bush warbler made my ears perk up since its voice is unparalleled by any other birds . I really believe that she is my great adviser and supporter . I think it reflects the sensitive feelings that we have . That 's the reason I registered it today . The prefecture has lots of ski resorts and held the winter Olympic Games in 1998 . Because of Love ? Actually , it 's one of the most amazing social network services I 've ever known . Language Exchange , LE in shorthand , is a great idea . I am disappointed in you ! You are my friend , and I always believed you but you lied to me . I finished reading the book `` Excerpts from a Family Medical Dictionary `` by Rebecca Brown , one of my favorite authors . My favourite Japanese singer is under arrest . Last weekend , my favourite Japanese singer was arrested for drugs . Her name is Nariko Sakai . On last Friday , a warrant was out for her arrest and she became `` suspect Sakai `` . It is really sad to hear that - I still ca n't believe such a nice , sweet lady who smiles like an angel is a drug addict . Just when people were worrying that she might commit suicide from the shame of what her husband did , the police found drugs in her apartment . People came to realize that her disapearance was probably not because of the shame of anything , but to escape the drug tests . I 'm not a Christian . This season , church choir members are very busy preparing for Christmas . Our music director chose very rhythmic and complex music . So , I am a staff of the convenient store . Maybe it 's a different customs about what the staff of the convenient store has to serve to their customer . After that my manager appeared and he complained about me . Too busy to do yoga and study other languages . Of course , today is very hot as well . I have to buy chocolates for my co - workers before Valentine 's day . And I 'm worried about the costs because I have ten co - workers . His name is `` Charo `` , the mascot character of the NHK English program . So I have to write my dissertation , and look for a job . today , when I checked out my blog configuration , I found this site in my favorites . The first thing is my Macintosh Computer G5 . Visiting Zoo is really fun . I 've lived in the nurse 's accommodation near my hospital yet . He said , `` Get a picture is not a polite way to write Hikari , you could say orally but not written `` . Starting Lang - 8 Hopefully , I can make more and more friends , although my English is not so good , but I can always communicate with English speaking people . Bart and Lisa , daughter of Homer , cooperate with it . One friend is going to America for further education and the other will work as an analysiser in Shenzhen , we will be living in different places around the world . The story is about a detective who had been a high school student . I commute by train every day . In the evening , I catch the 8pm train . I often read a book on the train . but I have no problem . I washed my hair with my favorite shampoo . I heard that it is good for the health . It 's reasonable to think that individuals do n't tend to own pianos , but families do . I 've corrected some Chinese diaries for Japanese friends . But I 'm taking a year off to improve my English ability , and go on a vacation to take a break . When I was younger , I liked painting and studying fine arts . But it 's very different from visual design or fashion design . That keeps worrying me But some of us like to play command sport games , some people love to play intellectual games , and others love to play computer games . Stop hating classes in school , or stop hating boss at work , or stop hating other people . So simple to learn anything , or converse with anyone . My wife is little worried about her appetite lest she will be fat . I used a strategy which is to take a concentrated attack against the one of the opponents , who is weaker than the other one . The games remind me of two different feelings . The one is the law of survival and the other is the story of the ' Hare and Tortoise ' . I want to make friends with someone who lives in a foreign country . Today my vacation begins . I wanna sleep soon , but I have a lot of homework . I have to start studying now ^ ^ ; Today , some packages arrived at my home . ( I used this airline to go to Europe last month , and transited in Russia . It was very cold there . ) Some geographers say `` there are no places on earth that have not yet been explored . `` ( But I think human beings actually have n't explored the bottom of the ocean at all yet . ) because only little girls are heroines in his works except for this one ) Nobody believed in the testimony of his father , except for Pazu . The girl who came down from the sky , whose name is `` Sheeta , `` had the magic stone , and she was pursued by the army because she knew a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheeta . There are two kinds of high schools in the mainland - - junior high schools and senior high schools . Compared to junior high schools , the teaching quality of senior high schools are considered more effective on the students ' future . Some schools would even demand that girls can not have their hair long enough to reach their shoulders . I 'm going to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . from 9 . 15 p . m . to 8 . 20 a . m . : gogo ku - ji jugo - fun kara gozen : juichi - gatsu itsuka , mokuyobi When we were at Tennoji , we were spoken to by some drunks . And please let me ask another question . Tomorrow . Hopefully you can help my English . Because that was far from school , and the holiday was very short . During three weeks our reserch group that includes ecologists , zoologists and microbiologists , will be studying wild rodents and their microbal flora . This is the first time that I have seen the entire school covered with snow ! I thought it was rude to put luggage in a seat , so I replaced it on my knees . Because I can use any vegetables and it tastes very good ! ! My grandmother made MISO and gave it to me . I think the Japanese government should restrict where people can smoke , because their smoking affects non - smokers health . If you have any suggestions about how I can improve that , I 'd be really greatful ! Could you give me some advice to learn technical writing ? After that , my professor invited us to his house to give us a great dinner . but I will come to the internet cafe as often as I can . Recently she has been melancholic and does n't do anything , washing something , cleaning , or cooking . . . I used Yuzu tea that I made last November to cook yuzu flavored chicken . Recently I have gotten hooked on Japanese cake . But it 's no use crying over spilt milk . It was like a museum of lifestyles in the 18 and 19 centuries . But , I do n't have any friend there so I 'm worried about my travel . Does speaking only improve speaking skill ? With only a small quantity , it spreads and foams easily . I like the convenience but hope it is safe to use . I do not know whether it is because I have n't done English exercises for a long time or other reasons , but I just feel unfamiliar with the English words . I 've joined a team where I can learn drawing for free . And when I was dreaming , I thought my soul was being pulled by a line and flying to the sky , when I woke up , my soul came back . There were more regret , loss , mistake , repentance , contradiction , indecision inn their young lives resulting from the imperfect ending . and we found some gravy , but they all were too expensive . Conspicuous vs Noticeable Dangerous ! ! ! The building is very beautiful . Start to read with different views . We also played soccer and baseball . For example , Japanese may be difficult in terms of respect usage such as the humble forms . It is growing warmer because spring is coming . Yesterday was a National holiday . When I was working at the office , I felt the earthquakes . One of my roommates recommended this website to me . I studied it for one semester , but there is one year left for me to study in college , so it 's a pity that I have to drop it and spend all the left time on English to pass the CET6 because I need the license to find a job . I translated it directly from Taiwanese into English . I was a cartoonholic . Because I had a good time during my childhood even though I was a key kid . I am 20 - year - old guy and a university student in Tokyo . It was very difficult and I could n't do it very well , it was bad , but I learned somethiing today . Please recommend : ) Everyone has a funny or interesting incident when he or she was Many children wait for Christmas day which is on Dec 25th . We threw her a birthday party . I wanna , at least participate with something , but I 'd rather have something good . . . I want to recommend a heart - warming movie staring Robert DeNiro to all of my online friends , because it can make us reflect on educational perspective , parent - child relationships , and so forth . But I 'm into this completely and I like the story they told us together with it . It is said that this typhoon is similar to the ' Isewan Typhoon ' , which occured 50 years ago . Because normally this county has no rain throughout the year , all roads and buildings were built with no consideration of rain . What happens when it rains in this country is it causes leaky roofs , floods , and traffic jams . oh ~ ~ ~ late - - ! ! ! I was sick last week - . - ! ! Unbelievable I only wish that I could recover from this disease sooner . The Nepalese sauce was very hot and spicy ! ! What would you prefer to learn among aforementioned options ? And then the guid took us to Pattaya . We did some banana boating , jetskiing , motorboating , parasailing while we were there . I 'm an English learner . For one of my English classes , we will make a newspaper in English . Actually , I am always very sleepy during lectures in class . Also , I would love to share some interesting things about my daily life . What makes me think he is a creative person is the product he came up with . When I was in China , I could use my cell just like in Japan . In fact hardly anyone in China owns a Japanese cell phone . I rode in a night - bus from Nagoya last night , and reached Shinjuku , Tokyo early this morning . I thought it was n't serious , and it did n't hurt very much , just a little . And he told me it might have resulted from lack of the muscle in my knees and recommended that I do regular exercises to build their muscles . For three years , he murdered 7 women and buried their bodies with careful preparations , and he reportedly has shown little sense of guilt or remorse so far . What eludes me The deadline for the resume was yesterday and I 'm going to make a presentation next Friday . At that party , _ I found out many coworkers are thinking about their careers . As I mentioned above , it may be one of the characteristics of Japanese office that they are very crowded . I was born in Ooita prefecture which is in the Kyusyu ( Kyushu ) area of Japan . After that my family moved to Chiba because my father was transferred . I thought `` Hey , you wanna make me angry ? I don ` t know Final Fantasy . I referred to `` Majicon `` in yesterday 's entry . ( The sentence forced them to pay compensation and prohibits them to produce , import or sell Majicon . I expected that there were some people who were against this sentence . However , there were more opinions which were against it than I expected before I read it on net . I feel sad to think that DQ9 's release was postponed due to them . . . . . It is interesting for me to use this site . If my English skills will be better , I want to use this more . My English skills poor , so please collect my jornal . ; ) I have n't seen every episode of Bones yet . Repairing Computer I work for a lubrication equipment trading company so I often write emails in English . But my friends went to their hometown . This is my first diary entry after a long seperation . Japanese people are struggling to save energy this summer because several electric power plants are not operating right now . Goya , or bitter gourd is a kind of summer vegetable in Japan . When I was young my mother put a Goya dish and I always frowned while eating it . Are there any bitter vegetables like that in your country ? The first dream which you have on the first of January is important here in Japan . Unfortunately , I had a bad dream . You 've screwed up everything , you know ! `` I coud n't understand what he was shouting and I was just petrified . Usually Susuki grows in the wild , and many Japanese people can enjoy the typical autumn scenery in nature . But , I changed teachers soon . It was a busy 30 minutes . This photograph was taken by me several years ago . It was really great to meet them , simply because , it reminded me of several wonderful memories of the time I met them . Studying IELTS is not a easy job , I having been preparing for almost a year In the last English lesson , the instructor showed me this site . It 's a youthful movie . When I got into Dinosaur class this morning , I opened the door . . . . . . The first one I made was I hoped everyone could have good health . The second one was that I hoped everyone could remember me after I leave . I do n't have a place where I can sculpt , so I make things by papier - maches . My head itches . I 'm wondering if there is something I could do for victims of this disaster . My job , working in a cafe in a department store , was busy . This is my ninth entry . I wonder if I can continue to write in this diary , but I will try . The Heike people were defeated and disappeared into the sea : samurai , a Buddhist temple ( Amidaji ) near the sea to ease the Heike 's spirits . performing poems and playing the biwa ( a kind of guitar ) and his best She is bright like the sun , athletic , positive . I can see the ocean every morning because my university is near the ocean , I think we have fewer holidays than other countries . But I ca n't decide what to cook . This website is written by a member of a Japanese economic think - tank , so the contents of the website is related to the economics , and all contents are written in Japanese . You are too concerned with what was and with what will be . Now the olympic game is being held , and whenever I see the elected athletes from all around the world , I think this documents really suit for them . The weather is ugly today . The course itself is dull while the teacher is more boring . Well , I did n't like the teacher neither , especially today . After two classes , our task was finished so we went back to our campus . That means I ca n't go to the huuuuuuuuge summer sale once in six months which is right now at some wonderful and famous shops in Tokyo . Omgosh , it 's killing me . . Actually , one of the my foreign friends had never known about certain grammatical terms such as `` phrasal verbs `` or `` prepositional verbs `` before I asked him . So I guess it would be difficult , of course , but I do n't think `` it would be impossible `` to think in English . I only earned 500 yen ( 5 - 6 dollars ) with that in a month . `` what is your strong point ? `` Today , I tried theTOEIC test . He got a holiday before GW because plane tickets are very cheap . I do n't get a holiday before GW ! When She was working near the Uno port in Okayama she met the sargent of American air force during World war 2 . but we . could n't usually have conversations . In my book , they say that in Okinawa many people live until 100 and more years , is it true ? Of course Mickey , Minny Donald , etc . were also there . I 'm living in Yokohama ( next to Tokyo ) , working at game machine maker . I 'm writing a manual for installation , maintenance or conversion . My university does n't provide us with a good environment for studying . I was very disappointed . It is a university in America but there is a campus in Japan . Yesterday I put up the Christmas tree . when my daughters were much younger , I felt it was too big a tree , Because my daughters can do it themselves . But I decided to keep it every year , even if they leave in the future . I am hooked on vegetables On Wednesday I was sad . We were looking around the market . This is particularly in Japan . But when I went to university I learnt that English was especially important for my future . I can give my opinion in simple words , write , ( with mistakes , of course ) , and understand other people if they do n't speak too quickly . I learned it is important to believe each other and to make a good partnership . First , we are reading a book about stock for beginners . There are two kinds of people in this world . . Today was another horrible day at work . PS : Rewiriting or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too young , but I want to learn English very much ! ! ! I do n't think I make any progress at all . I enjoy studying English now . Anyhow , let 's pray for him because he died from the pressure of the mass media . My first diary Thank you for reading my diary ! However , this trial account is even more inconvenient than the Korean WoW server trial account . And , I can only make a n original character race such as human and orc , etc , but I ca n't create a race from the expansion pack such as Dreanai and Blood elves . First , I would type Torquay , after of all , there are some unnecessary characters , ' r ' . Hello ! ! Now , I 'm styudyng Korean in Seoul . I have been studying English in another country before . Writing , Reading , Talking , Grammar , Listening , or Pronunciation ? She is really beautiful , attractive , and fluent in English . She is the one who really encourages me to work hard in studying English . When I see her acting in movies , I feel that it is possible to master English if I try hard . Laterly , I feel very , very boring and upset when I have to study . I dont know what 's wrong , it is just boring ! Why is ' on ' used in this sentence ? My favorite bands are Dream Theater , Yngwie , Steve Vai and also like Bullet for my valentine these days . The differences between `` ( journal ) `` and `` diary `` A week later , I am absolutely disappointed and desperate . Instead , the hair designer ruined my hair . If I get PR ( Permanent Residence ) through RSMS , I need an IELTS score of 4 . 5 ( overall ) . It is a famous method also in Japan . Summer vacation for the elementary school that my kids go to will be over at the end of this month . I finished the test ! ! I 'm very very tired . When I heard that news , I could n't believe it . I bought some fruits and drinks for her in a supermarket near my house . It made me nervous , but it was finished so easy and early . I 'm looking forward to going there but forecast says it 'll rain both on Saturday and Sunday . It 's raining . I want to go home but it is raining . Damn ! I left my family when I entered college in Tokyo . I moved to my next apartment when I graduated from college and entered my current company . cause and because how are they different ? and if you have some examples and can give me some sentence using the two words that would really make me happy . Thank so much . And I think it 's one of the best dramas that I 've watched . And I love when he plays the violin ^ ^ Because I had n't thought about it before . I read books on the couch outside , had breakfast and lunch by myself , worked for my professor on my laptop in my room , took a nap for 20 min and played basketball between study time . I thought Pruett 's house is the best environment for improving English because a lot of students visit their house and I can talk with them naturally very often . Yesterday I had an entrance ceremony for graduate school . Today , there are many useful tools on the Internet . I performed SAMULNORI at school with ( some ) Vietnamese people . In the afternoon , although I am not a Christian , I went to ( the / an ) international church in Vietnam . There are many tasks coming due . Rooney is wonderful ! ! Nobody opposes her topic , on the other hand , someone could oppose my topic ; for example , if you have a friend who did n't drink , this person can be checked instead of a driver - something like that . If she wants to make a speech about not drinking and driving , she needs startling reasons . We are not crashing the office or anything , but we just feel freeer than usual . All last week I was dreaming about stretching out on sand at a seashore . Yesterday was my friend birthday We are best friends because we have the same spirit of a social - worker and we share company problems with each other . However , I have to write about social problems for an English exam ; it is called IELTS . I remember my friend whom I met last Sunday in church saying , ' ' I 'm only a newcomer ( as well as me ) , so the thing which I should do is doing things which faced on me , I think . ' ' As soon as I woke up , my little daughter asked me , `` What 's for breakfast today ? `` I was thinking for a while and then replied to her , `` Let 's make pancakes ! `` We then took a bag of flour out of the cupboard , and a carton of milk and one egg out of the fridge . This is my fifth daily in English ! It was hard to write the daily for me because I have been learning English for a week . Recently , I bought an iPhone . I installed some useful applications , such as classic books for kids and dictionaries . but the episodes are saved on the recorder . Second , they usually have tattoos on their back , so if you want to know whether a person is a Yakuza or not , please go to an onsen together to check if he or she has a tatoo . Not all people who have tattoos are Yakuza . On Sept . 20th I went to Haneda airport early in the morning with my daughter and her husband . We were very disappointed and we had to change our plan . My One of my best Aussie ( Australians call themselves Aussie ) gave me that nick name . The relationship in the story is very complicated but the story reflects a lot of actual things . He earnestly took arithmetic and Japanese class . He excused his manner , but I did n't accept it . I complained to him too much . Tomo - chan `` wears `` the laundry basket like a backpack , and says , `` I 'm a turtle . `` The Japanese Ministry of Aguriculture recommends for the Japanese to eat breakfast until 9 o ' clock , so I tried it . scrambled egg with mushroom sauce , pumpkin and asparagus salad , miso soup , rice and a tangerine Now , I only make a lunch box and I pack it with a banana in the morning . I always go there by car with my . husband . Buying groceries for 7days , the luggage is very heavy . On the way home , It 's difficult to control the bike because of the heavy . luggage . Especially , I wanna ride on a roller coaster . : ) My daughter always wears a one piece dress . Some customers thought that I had a baby , because I had professional knowledge better than most mothers . The doctor took my temperature , but it was only 36 . 5 degrees Celsius . It was raining and cold . Do n't regret ( it ) , just do it ! Today I 'll focus on my balance . I want to write and speak in nglish fluently , because my dream is move out to the UK . I am so surprised when I read those statistics stated above . In my opinion , you are very busy studying and working a part time job , so you do n't have enough time to look after a dog . For example , although `` Annie Laurie `` is known as a nostalgic song ( ? ) in Japan , all the people ( or everybody ) in other countries may know it only as a love song . Japanese people often import songs from other countries , and change their lyrics to suit the Japanese people ( or market ) . The lyrics talk about trekkers on the mountains who climb the `` Nihon Alps ( high mountain ranges in Japan ) `` . Writing in english is fun for me . This band is definitely on top of its game : a handsome frontman , a magical guitarist and along with a bunch of Grammy - award winning songs have gained them international reputation . The guitarist Johnny did the best in defining Coldplay by his `` outer space `` playing style , which is simple but awesome . Normally , many bands ' 1st albums are full of noise and aggressive grooves telling how they are so tired of their own lives . I am going to Seattle this summer to meet a highschool classmate . I have no idea where to visit in Seattle . I want to make many friends . Hello ! first , I introduce myself . I failed in job hunting , and I realized `` I do n't have the talent and skill . I 'll choose the heart . It is one of the leading hospitals specializing in cancer treatment and cardiovascular disease nationwide . The main hospital of Samsung is located near Ilwon Station in Kangnam ( Gangnam ) , and we have 10 branches of the hospital in Asia . Currently , more than six thousand employees are working at Samsung Medical Center , and they are very active . My hospital is very supportive of me , and promising . In these two days , a Japanese teacher taught us , but in the next two days , a native English speaker will teach us . I awoke because of a big pi - ki - ji - sound . Though the space project is good , I sincerely hope for the research to cure cancer and tinnitus will soon beas soon as possible . I could choose between teaching my cousin English or selling umbrellas with my grandparents . Every time I teach him , it drive me crazy ! So , I chose to sell umbrellas with my grandparents and they agreed . Because I did n't know how to sell umbrellas , I sat on the chair and looked at them . I finally understood that selling umbrella required a lot of information , and I found it difficult to make an umbrella . A lady asked me which one she should choose , and I did n't know what I should say . I started learning how to use PCbecause I 'm going to get one of qualifications of Microsoft in order to get a job . The beginner course was too easy for me , but the intermediate one was too difficult for me , but I could enjoy both classes . It 's a big and nice one , but I felt the neighborhood around the skate park was insecure . I often saw police officers around there . She is a very popular singer in Japan . But in Canada or other country , students do n't seem to work or concentrate on just studying . If I tried any more , I would have definitely drowned . As soon as got back home , I went to bed and slept until noon . We ca n't afford to support old Japanese people anymore . Recently , electronic technology has improved so that it is usual for people to have a mobile computer such as a laptop PC or a cell phone . However , at around 10am , it was just after the listening section , I was deeply disappointed in myself . I was sitting on the farthest seat from the stereos . I think they may be feeling insecure about their financial base . Finding out that all the sprouts had wilted , he gave up taking care of them and he did n't pay attention to them anymore . I completely forgot to pay attention to them for two or three days . Do you know `` purikura `` ? The main idea was OK , but there were so many inconsistencies . I left home on my motorcycle and ran to arrive at work . however , others hold that there should always should be a formal distance between the teacher and student . I was impressed by the superb scenery there . I feel sorry for my mum . My children will participate in their elementary school 's sport festival on next Saturday . On that Saturday morning , my wife and I will get up early because we will make lunch box for my family . Their fathers usually have camera or a video recorder , and shoot a good scene . While I was listening to the radio while studying , I happened to hear that song . Afterwards , I listened to it many times while studying . That song supprted and encourgaged me while I was striving to pass . I read an article about people who work at the Fukushima nuclear power plant . They get only a 1 . 5L bottle of mineral water every day . I think there is a risk from radioactivity . It was before 7o ' clock but I could n't get back to sleep . When I was checking the web site of the local newspaper , I found an interesting article . I went to the theatre to pass time until my lesson . Docchi ga anata no usagi desu ka . Anata no usagi wa docchi desu ka . In Japan , most Japanese high school students study at their schools for three years . When they are in third grade . They have to decide which university 's entry examination they will take in December or January . I was supposed to transfer to another line to go back to Chiba prefecture . I just came from the company . I bought things in the Seven - Eleven in my building before I took a bus . Although I have a talking dictionary , it is broken , so I ca n't explain it to you at the moment . Sorry . I 'm want to study abroad , so I want to work more ! By the way , I took the TOEFL last month . I need to prove my friends wrong with my English . Because I told my friends that I will definitely speak English like native speaker . It is difficult to learn English . Only unmarried women can wear Furisode on ceremonial occasions . I have to prepare for this celebration because I 'm 19 years old now . So , now , I 'm studying a lot of things in the Meisei University library . What is your hobby ? My hobby is cycling . And he gave me a necklace as a souvenir . The names are route 70 and 188 . I already know I need to remember the routes . But today , I was lucky because I just waited 10min . The young male doctor I know is only interested in his career . with sadness , I could n't do anything well . From feeling like this , I ca n't do anything today , and I want people I know My thoughts and problems are progressing in both good and bad ways I think they have strong motivation for working and learning but they have no self confidence , so they can not try getting a new environment . They should have the power that they can still go to the future even if they failed . Now my wife is making preparation , making herself up , winding her hair . We will try to visit an electoric store and a drug store before we go to the firework festival . Patricks Day , Black Friday and so on . Let me make a brief introduction of myself first . My name is Lin but my friends always call me Linny , so you can call me Lin or Linny as you like . I love English , I hope I can make friends with some native speakers or English learners like myself . Maybe I have no choice except to surrender . I went to the library today and borrowed a book ! I 'm from China This is the second time I overslept this week . I do n't think I will be able to spend this summer if there is not an air conditioner . ( more natural ) So , I 'll try to not use an air conditioner in my house yet . Did you use an air conditionr yet ? On wednesday , at 5am , I will get up to travel by plane . But , the books I really liked as a young girl were adventure books . Anything I read teaches me something : different ideas , new ideas , understanding and knowing how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I will study English tomorrow . I 'm looking forward to Golden Week . wasting your parents ' money He was so angry when my husband and I tried to carry him in our arms becausehe wanted to walk wherever he wanted to . Last Wednesday we went to the playground where we could play soccer there . ( He always sleeps only 3 hours ) , I just caught a cold , so I did n't study well . I felt I wasted too much time . Some people said that they have a very good weekends . However , it is colder in January and February . . . The water temperature was still warm . It happens when you do n't want to tell a lie , but it 's necessary . Please correct me if I make a mistake . It was really hot and humid yesterday . I 'm interested in Hawaiian music and Hawaiian language now . There I will be working as / will work as a foreman on the construction site . When we were middle school students , though we had a long vacation but had to make up for the missed lesson . One thing I leaned there is how to smile in the office , which you use Levator anguli oris muscle when you smile . When I was sitting on the bench , watching the rain downpour , I thought that this was the first time in decade that I spent time just waiting for the rain to stop Watching the rain with doing nothing was very comfortable , as my mind washed away . It 's a good chance for me to learn English , and help people who want Chinese girl , born in Guangzhou and live in GZ It 's cool and clean . Today , I got up at 7 : 30 and ate breakfast , then I washed my face , changed & I greeted my boss who is in charge of financial department . Both cases are very stressful . I bought a text file input machine called `` Pomera `` . I 'm appreciative of the improvement of Intelligent technology . Chocolate , Candy , Cookeis . , Japanese sweets . . . But in English , does the term . . . Job responsibility `` really make sense ? What will everyone do tomorrow ? nowdays It 's a midern Exam term in kun university I have already taken the exam circuit analysis . computer mathematics . but now I ca n't sleep , , the reason is maybe I had drunk too much It 'll be morning soon . I need to sleep , in order to end today ( ? ) As soon as she entered the room she screamed , looking the wall . Most of the time I 'm not talkative . Now I 'm studying English . I always think that Taiwan is a country embraced by so many external cultures , so Taiwanese easily accept foreign things . Even my professor who is from America told us about this situation in class before . I wonder what you guys think of this phenomenon . Are Taiwanese xenomaniacs ? That does n't sound too hard , I could just translate my original report from Chinese ( in ) to English . . In the depressed end , there are only 594 words in it > < > < > < Please give me some positive feedback to encourage me ~ I 'll be fully energized ! ! ! The picture was shot in a trip in Thailand last year , me and my friends cheering together ~ I sensed a taste of Japan when I soaked in them . I also increased my love for hot springs ! I have taken on a very important and critical job . the number of customers reaches 700000 . I hope you will find happiness , because you deserve it This place has the beautiful sea , beautiful yards / gardens ( ? ) , and delicious seafood ! ! ! I lived with my grandparents until elementary school . I was the most popular student among my school classmates because I was the funniest in my class . I like travel , too , and I am interested in lots of places owing to reading many books . I need a help to correct my sentences . Een hartverwarmende video ( in het Japans ) If you ca n't see the `` Ranking `` or `` Footprints `` page ( s ) , please push the ' F5 ' key on your keyboard to refresh the page . He painted the pictures that were displayed in Amelie 's room . Do you know `` Amelie `` `` Amelie `` is my most favorite movie . This postcard is the same picture in Amelie 's room , of course . 2 : In the parallel world , there are NO SUCH THING AS creatures . When we were all full , the wife told us to wait a minute , because the hairy crab would be ready soon . Of course , it is very important and I will never deny the party itself . Look at Anna 's notes about her trip to Pradue and write questions for the answers . This is very famous Buddhist sentence . The horn of a rhinoceros is just one & strong , meaning solitude and strength . Actually I do n't know It 's because I went to bed at ten last night and got up at five . I was watching TV and I fell asleep unknowingly without covering my body with a blanket . After switching it , I could not use some of the applications . This is why I cleaned my room for the first time in 2 years . There is nothing but rice fields in my hometown , but I feel lonely for Tourism is not that big in Japan . The Japanese government wants us toproduce things like electronics . Today there is a drinking party Yesterday , I worked , in one day , 18 hours . They chose Bush as their president . . . And I think this song lyrics is cute , a little : ) I 'm hoping so much he 'll became popular in Japan . With fish or beans , you can taste it better . No one can expect what will happen . [ Now ] it 's time to rebuild Japan ! He lives in Sendai which has been suffering from the big earthquake . I do n't know why . Nowadays , I think I have been depressed about studying English and working hard at my office . Because I have n't driven the MT car since a year ago , my left foot shook . I can listen to a beautiful song and learn Englsh . I hope that everyone like me can use this way to learn a foreign language . Driving License As I remembered last year I went to take the test for my driving license 3 times . The first time it went okay . I passed the mutiple choice test then went to the driving test . Above sentences derive from `` URL `` So , I often go on business trips . To visit many countries is very exciting . I think that it is easier to learn French over English because my mother language / native tongue is Spanish and is similar to French . About nuclear power generation stop all nuclear power plants ? As far as Fukushima nuclear power plant is concerned , it operated My son got the flu last thursday . This winter ( holiday ) I tried Acupuncture and Moxibustion to help lose some weight . . . But it 's an important part of old Chinese medical science . A man was walking with his black dog . I attend a class to practice my oral English . because I met my ex employer when I worked at Jinsoo acadaemy for 4 years . He is still a mentor to me . I 'm looking forward to getting a free coupon for SC2 A few days ago , I met a friend of mine and he said he will give me a coupon for SC2 . Actually , I really like this game so I thought if it is possible , it will save me money Sometime , I went to the PC room with my friends to play the game . I think it 's very important to explain my thoughts to other people . For example , why do I want to be a medical doctor , how much do I study per day and what do I do when I 'm tired of studying . I think I spentd quality time with my friend . I made it yesterday , however I could n't eat it completely , so I ate it today , too . Their parents were younger than me . Some of the students spoke to me . And some accessories on my ear and neck ^ ^ < < All school students should study practical skills such as car maintenance , managing a budget , and accounting , along with with traditional academic subjects . I can clearly remember that day and that moment . On the menu , I found a ginger - flavored drink without alcohol . Various types of wind - bells are exhibited and sold there . We can hear Christmas carols everywhere we go as Christmas draws near . What will I do on Christmas ? YUKI is only guitar singing . I want to go todisney land in America and China too . I was feeling was so happy that I forgot about my cough . conventional wisdom On the other hand , they have gone through to the final . My first diary These movies were made by Japanese students . Because today is the day before the holidayfor children . The rain forest is also an important earth resource . I will go to a park in the neighborhood near my house to play catch with my boyfriend . Next term , I will be very busy . I have to prepare for the TEM8 and post graduate examination . I work at a restaurant as a waitress . Maybe that is why I 'm writing this diary . Three days after today is the moon festival , and I sincerely hope that I will be able to see the moon hanging in the sky , and smiling at me ! ! ! I was very happy to hear that and receive her letter . but exercise is good for our health and help your face look youngerthan you think it is . Chinese herbal medicine These days , I drink chinese herbal medicine for health reasons . 3 is a mysterious number . I hope we can have more chances to see each other , because we are family . But I am confused cause I have no idea how and what should to do . This is first time I write diary here . Today , I wrote a comment to other 's diary , for the first time . I could n't use Lang - 8 for a long time because I was very busy One of my roommates had an unfortunate incident this afternoon . But I should find a different way to solve the problem using courage instead of complaining . I share my many things with her . So , if you have time , please correct my journals . Today I left my class 15 minutes before it finished because I had to finish some homework that was due for the next class . The door was in the front of the class so I had to pass the professor to exit . I later found out the homework was not due today . This was because the House of Counselors election was held in Japan yesterday . On this site , we can build vocabulary and practice dictation . Now lots of Japanese are learning English on iknow , and if English speakers start to study Japanese there , we will be able to help or cheer on each other . Each team has its own stadium around Japan . Sometimes have to work till late , but I really love my job because it was my dream to join this industry ( I can watch the newest movies / tv programs prior to their release ! ) and my colleagues are all good to me . I do n't know if this character is a penguin . Even though I was feeling really lazy , I went there . I dont ' know whether she can remember me or not , anyway I feel happy to see her . Recently I have been watching American drama `` Lie to me `` . Especially Lightman ( He is the main person ) speaks very fast and mumbles ( not clearly ) . I am ashamed that I didi n't write here for a whole week ! : ( Does anyone know how to treat this bad illness ? . Which illness is that ? . Has anybody seen the film Brazil ? My diary . It is the first time Iwrite in the diary on this site . WhenI was a junior high student , I used to write my diary in Japanese and I quit . After that , I sometimes write my diary in English . It 's instructive for me to memorize words . I have many friends and when we met last weekend , we were smiling and joking , we had decided that : All will be well ! ! ! I really hope that our God helps us . I have become 24 years old the day before yesterday . Live and learn ! I should learn more and more things . She baked me a cake and cooked me delicious food like a restaurant . I 'm little shy , _ but it 's just that some people do n't real know me . It was funnier was when I was walking in front of her house and I passed by the window where he is placed . It 's simple , friendly , easy , sometimes exciting , and sometimes emotional . I am studying English . public lottery I buy tickets for the public lottery . If I were to win the lottery , I would want to travel . yesterday , my skype establishment has no image . That 's miserable . Therefore , I draw picture with photoshop . Oh , sorry Ms . I felt it was difficult . Second , some countries require children to do military service . I think that good education is to present many subjects for children . In Japan , the Emperor declared that we wo n't take part in any war , so Japanese do not have a conscription . Japanese children learn about the wars in school , but those knowledge are important history . Japanese will think that wars are not good , so we do not have to take part in any war in the future . I am very much confused about can , could will , and would forms . I 'm a university student . I will probably be exhausted , but it will be exciting . I usually spend time watching DVD 's of American drama to study English . He made three rules : do n't be late , never be absent and do whatever he asks . From now on , I will put the posting dates as the titles . Dictionaries define it as something fortuitous that happens unpredictably without discernible human intention . Finally , I cut my forsythias , my Japanese apple tree , my lilac , and my thuyas . To achieve a certain goal , we should make an effort even if we are poor , miserable , or the road is hard . Recently I have been seeking a new job which requires me to use English . I need to get a high score on the TOEIC test next month on Sept 11th . This club 's name is `` English discussion project by a student . `` I said to an advise , . `` Sorry for the short notice . May I take part in your discussion as a club - member ? Tateishi is a city for blue collar workers who wanna drink alcohol delectably and inexpensively . I feel my brain has completely switched from English to Japanese mode . Because I love music I want to understand lyrics . Because my older sister married an Italian I want to speak with my new brother . . . It has a beautiful and magnificent melody and romantic lyrics . Our teachers gave us 33 words on the board , and let us choose 16 written on the paper , and if four of the words were as same as the ones that they announced to us and they were on one line , we said Bingo . Then he would go ahead and announce the words until one of us had all 16 words We had 3 teams competing . I also want to improve my spoken and written English . Of course I sympathise with the main character , he was so brave to overcome his phobias . She took the test seriously because she wants to study fine art in France in the future . Finally , what I want to say is `` Hang up there ! Today , my teacher told me that this website is good for learning English or other languages . I feared that she might have investigate whether I was occupied or not . I was very grateful to the receptionist for talking as if I worked at the office still . I answered , `` I see . Even though I called the office at 5 pm , the automated appointment system automatically told me that my appointment time was at 8 pm . ( When the office are already full of patients , the system does n't accept me . ) I picked my little daughter up at her nursery school first and I went to his elementary school . `` His fever was 38 degrees C at that time , and now he developed 39 degrees C . After returning home , I left my little daughter with my husband and took him to his home doctor . At the office , there were so many patients . When he listened to my son 's heart with a stethoscope , I saw a fresh wound at the tip of the doctor 's finger . I thought that he was working so hard even though he was over 60 . If his fever goes down , ( usually his fever goes down in daytime ) I 'm planning to take him with a buggy . Cold Weather In Kyoto , there are many historical monuments , shrines and temples . After that , I watched the movie `` high school musical `` in my room . After the object was gone , we started to see a series of images projected rapidly in the sky . Hi everybody , it 's my first time using lang8 to make friends . Starting tomorrow , I am going to stay in the dormitory of my university for the summer vacation period . The reason why I decided to stay there , is that I just want to focus on studying my major . My dream is to be an English teacher AND I am already a junior , so I should prepare not only for graduation but also for the teacher certification test . Have you already received a call from him ? He 's studying Japanese very hard ! ! ! I sometimes eat it McDonald 's . They started to grow lettuces to use their hamburger in a shop . Today , I went to a museum for celebrating cultural day myself . A few days later a beautiful girl appeared at the grandfather 's house . But I wish for you to never look while I am weaving . They could hear sounds of weaving . In my recently watched movies , I liked `` Milk `` and `` Changeling `` . Mathematics and the Russian language are compulsory for all of them . I believe that sincerity could touch god . enjoy home party sometimes . My apartment is not so big , so a maximum 4 people was OK . I was excited about inviting my friends over again . Nights in Paris are becoming a part of my dreams . . . Fall is my favorite season . First is the color of sky is very beautiful . Second is the color of leaves is so beautiful . Because of it , I ca n't get motivated to study or play sports . It 's now clear to me that the most important thing is staying healthy . ( - _ - ; ) I 'm always told `` Do n't follow strangers whatever happens ! `` by my mother and teachers but it was an exception , is n't it ? We had our senior graduation ceremony on March 16th and it was very important for this school . All students try to study or practice club activities till the ceremony and promise that we 'll be the people who contribute to world peace forever . But , students ( excluding seniors ) were n't allowed to attend that ceremony . There were a lot of things which made us sad but we never gave up ! For example , we do n't have enough electricity because of the Fukusima Daiichi nuclear power plant disaster but we try to save it . Took an Engilsh Lesson . I 'm gon na write a diary about my English lesson yesterday . My first diary on Lang - 8 I learnt about this site yesterday in amagazine . Lang - 8 is introduced as a good site for learning english for free in this magazine . So , I registered on this site to study english . But , unfortunately my english skill is poor and not good enough to conduct business . I would not recommend you to use this word . On Taketomi - island , we stayed in the Japanese - style hotel and enjoyed swimming in the hotel pool and beautiful sea . Nowadays one of my British friends want to speak with me by Skype . I will write it in confusion , and the composition will have never have a theme . Thirdly , my listening abilities are terrible , so I am afraid of talking to anybody in English . I also have n't made visible goals to learn English . I think that when I achieve a higher level , I will not be able to continue learning . In ' process oriented writing ' , students are required to revise their draft according to the feedback given by peers and teacher . Through this procedure , they can improve not only their writing skill but also the communication skills by having various opportunities to interact with peers and the teacher . Natural order hypothesis states that the acquisition of grammatical structures in a second language follows a predictable order . She ignored the fact that learners were not ready to acquire the grammatical features she intended to teach . Before I came to New Zealand , I organised a homestay for only 6 weeks so I have to leave tomorrow . I got myself a summer vacation by a miracle . ( call it a miracle because I 've got this kind of vacation for the first time since I became a doctor . ) Lang - 8 does n't send a message to everyone from a mobile phone . I will send a message and correct everyone 's diary tomorrow or the day after tomorrow . Yesterday , I ate sushi first time in my life ( I know that is a little shame , because I 'm fan of Japan culture and . . . Weather is strange sometimes . In Japan there are some bars or restaurants where you can eat raw meat like Sashimi beef , chicken or horse ( but not pork , I think ) . They said that comics were less refined than literature books and that reading comics made children less smart . Teduka was also an eminent doctor , which made the criticism die down . I wonder if it is a problem I have ( I 've ) had since primary school , and it 's probable / likely that I will need to begin practising . The goal of this game is to arrange bricks the same as shown in the corner , by picking up , stepping over , throwing bricks , etc . During this weekend 's holidays I had a good opportunity of going a civic concert which was held on a hall in a down town , My sister in law lives in the city though she took part in the concert as a performer . And I also want to make different friends from other countries . The 70th anniversary of the birth of John Lennon is Oct . 9 2010 . Speaking of Jojn Lennon , here is `` Imagine `` . It 's the last week in my own city , before I 'm going to move to a big city to study . Mushroom - picking was difficult for me . But purple is different . Purple is eerie . She proudly talks to me with a smile or she seriously talks to me , and she looks like a swagger woman . Every middle school teacher uses this phrase for teaching students the basic structure of English . And other examples of conversation in reference books are more weird and bizarre . I will graduate in 4 months . I also need time to improve my english , only do better and I can find a good job . I love English and the culture of English - speaking countries and also my own language and culture . in recent personal changes , I have changed my task . It 's pretty exciting ! ! Actually , I hate summer because in Japan , it is very hot and humid . I want to know about your country 's traditional New Year 's Day . so skiers from foreign countries came to my town to enjoy the snow . My hobby is reading historical novels . Recently , I am interested in the history of France , though the history of Japan and China are my main interests . Anyway , I 'll write about TABLE FOR TWO ( which I 'm involved in ) next diary . Although it is not a Taiwan 's based client , ( Chinese client ) I can still play it . Thanks to the public holiday , the restuarants were n't crowded . It 's not nonsense , Navi means butterfly in the movie too Today , I 'll tell you about a Japanese famous comic called `` ONE PIECE `` . For the first 5 minutes , each of us made a sequence by ourselves . Then each team had 20 minutes to discuss , make a final decision on our team 's results . We had to choose one member as our spokesman to make a short speech about our result . But , it was hard to get that kind of chance because someone would start talking before the speaker finished . The first time I called , no one answered . Besides that , two of the many questions he asked me were how I made the number for salary expectation and if that was reasonable . Also I will help anyone who studies the Russian language ! My friend recommended Lang - 8 because he knew that I 'd wanted to make a foreign friend and improve my English skills . Tonight , I walked along the river , enjoyed the wind , and relaxed . He speaks fluent English , French and not fluent but he speaks good Spanish . I speak fluent Japanese ( yes , I 'm Japanese ) and `` fluent bad English `` . . . I got holiday for a five days . Whenever I needed to celebrate something , I liked to buy shampagne . What are your favorite drinks ? although the bill is controversial , goverment passed the bill that minors ca n't play the game during midnight after 29 , april , 2011 It is expected to curb the habit of minors who play games for a long time My daughter is 10 months old . Jindaiji park did n't seem like a place that is only 30 minutes from Shinjuku , because the area was very calm and has an old traditional atmosphere . Recently I watched a movie titled `` What happened in Vegas ? `` I have some unfamiliar expressions and grammar points . 2 ) I think this grammar is incorrect , right ? I also drink a coffee that I bring from my office in a water bottle . `` Into the wild `` , `` Samsara `` ( by ) Tomka Michniewicza and the `` Lord of the rings `` trilogy are my favourites . I try to read regularly . I Promise ! ! To tell the truth , I used to go to the same gym 6 years ago . Why did this happen to us ? I learned that troubles give us pain as well as a lesson . Would you visit Nico Nico Douga ? I 'm going to meet a new friend that I met at a bar last weekend . he is from Russia , and is a student at a university in japan . The TOEFL was canceled due to the earthquake and limited electricity in Tokyo . JAPANESE PEACE I 'm not quite sure if foreigners make peace signs when taking a photo . It 's interesting . Long flight The novels were written in Japanese . Because I study English these days , I always read children 's English books . While I was alone I was desperately trying to work for a greater good . That thought made me sick to my stomach . The words seemed strange or even distant , like they were addressed to someone else . I wonder , do I really deserve this ? I was so surprised that someone actually thought about me , that I counted somewhere somehow . I really appreciate everything and I will try to be a better person . I was trying to change my password for my Hotmail account , but then I could n't enter my ID even though I remember my password correctly . I would like to cry . When a customer sends me e - mail to me , how can I get it ? I felt so lonely ( facing this day by myself ) I missed my parents and friends . Happiness is important . I 'm lovin ' it ! And , I 'm lovin ' it . I seriously need staple foods . It is one of my favorite quotes . When will that dream come true ? A few days ago , I started to learn Russian . I 'm learning English because I promised to practice English with my uncle last year . However , my fridge was almost empty , so I needed to go shopping . I am attached to my club because I feel warm - heartedness , friendship and affection with seniors , juniors , and companions there . Anyway , Thank you for reading my writing , and I think my writing has many , many , many errors . Perhaps you know , that was because there is a story that an earthquake will happen in Aichi or Shizuoka prefecture . because I ca n't go outside so maybe I 'll study math , society and histroy I would like to have a friend like her ( * ^ _ ^ * ) / And then , I ate lunch and went to English school . After the dentist checked all my teeth , one of the dental hygienists cleaned my teeth and scraped some tartar . I want to watch this movie in theIMAX 3D theatre , So , unavoidably , I will watch it in Ilsan ( Which located near Seoul ) this weekend , but I wonder whether it will still be screeningthen . I think the all children love today too . When I was a kid , the happiest day was Chinese new year . Needless to say , it does n't matter what color you are or which nationality you are because color is just a concept and we are all special , but sometimes it seems to be a little hard for us to understand and acknoledge differences because of the lack of the oppotunities to interact with people of other nationalities . I saw my class is very funny . They were always yawning and their faces looked like they were miserable and bored . Looking for a Roommate and a Stadium Also , looking for a roommate is a sort of frustration . However , it 's not easy to find a good friend ( roommate ) . Today is application day of & nbsp ; theTOEIC Test . The effect of Global warming causes this abnormal weather . I was startled but then noticed that she learned the phrase from a children 's TV program that introduces classic Japanese poems and literature in a memorable way . He died early ( around 29 years old ) , but he did a lot of things to change Japan . Then , my daughter said with smile that she was looking forward to the next day because she did n't know what would happen . It 's amazing that they held a concert in Taiwan . In Taiwan , not a lot of people know them , so when they came to Taiwan , I was so excited ! ! I hope other foreign musical groups , can always hold concerts in Taiwan ! ! I found the movie mature and really touching . I think I am fat , I should do exercises and eat more healthy ! . I 'm study in the University of Arts of my country , I 'm learning song lyrics ! . I have a two best friends , they are great girls ! . My family is very very big , although currently living in my house is , my dad , mom and my sister . Today , I am going to Sapporo for shopping . And none of them are even pretty ! It 's only the ugly men who want to meet you ! Amazon has started the bookreader 's business . A friend of mine and I did n't have enough time to prepare for this trip , so we booked a bus tour to see The Great Wall . She is a very kind person , and is always willing to help people who need her help . I think friendship is the dearest possession of one 's life . He introduced me to this site and told that I should try it . I also logged in Skype again , but I just do n't know what to write today for I have n't kept my diary updated for such a long time . I received a postcard from my old friend . I planned to visit Singapore in the middle of May . Until recently those were only used by housekeepers and the industry sector . Now that the flu news spread all over the world Mexicans are treat like leprosy . Rachael ' . In addition , Rachael had been pregnant by Ross who is one of the other friends and ex - husband of Rachael . `` Staying healthy is most important in our life . `` I totally agree . . . . . . . . . I 'll do the laundry and clean up the room . But I ca n't return to the nice rhythm of life . So what should I do ? Actually I really appreciate him because I knew he was always taking care of me and trying to encourage me , and he did his best for me . I think my speaking ability is getting bad . The teacher was my husband 's boss ' wife . Who can tell me how I can improve this ability ? ( I accept recommendations for places or courses : D ) I will start to try writing entries in English . Time flies away . Half of my vacation has gone by . I travelled and spent a lot of time with my family and friends . . . Now I have just one month to relax and do something I really want to do . Therefore , I am trying to decide how to spend the rest of my vacation . Should I do an internship or just stay at home and learn something ? Actually , I want to do both of them , but it is hard to do two things at the same time . If I do an internship , when I come home , I will be so tired and exhausted that I wo n't be able to study . Okay , I found the solution . . . Maybe I should try to improve my English during the rest of my vacation . During two weeks , I ate lunch in our workplace . I have asked my teacher this question . I think this is one of the strangest things in Japan . It would be very kind if you could check my grammar and vocabulary for me . My answer is absolutely `` yes `` They , ( people ) , do not just suddenly come up and become your friend . Of course sometimes we fall out over some small thing , but we understand what kind of personality each of us has , and so we can soon make up again . I think the meaning of a real friendship to me is , whatever you decide , friends should always respect your decision , whenever you need help , they should always try to help you , or ask someone else to help you , and wherever you are , your friends should always be in your heart . I 'm watching The Simpson 's family on TV now . The Simpsons is an animated film . My purpose of learning English is to study abroad . How am I memorizing words ? First , I read the textbook of English words and check unknown or vague words . `` Again `` cards are checked repeatedly everyday . But I recommended her to see a doctor before it gets any worse . I read a sentence . I am at Changi air port . Please check my diary ! ! My mother - in - law sent me a text message which said `` Happy birthday to you ! He wants to give me a surprise , I guess . I will probably get something delivered . And I do n't understand the difference between `` my mind `` and `` my feeling `` . But in the US , we celebrate new babies before they are born and it is called `` baby shower `` , is n't it ? The following is just something I heard from Korean radio program . Unfortunately , she loves cats . They are going to pay up to $ 2500 to patients if the patients qualify . So , the way things stand now , we do n't need to be so careful when we walk around outside . Even in the center of the city , I 've hardly ever seen someone commit a crime . So , they are fulfilling their responsibility to help this country be secure . And also , the tender and calm disposition of Japanese people contributes to safeguarding this country 's security by adding a synergistic effect along with the steady support of police . It would have been an honour and pleasure to just to be on TV alone , but they also kindly offered to pay me . I changed to playing volleyball . Some classmates were there already . Tanabota 's probability is supposed to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . To my regret , I drank all my medicne . So , I 'm going to eat some hot things . I could n't go ahead because they had been waiting to pray for a long time so we also had to wait for a long time . While I waited to pray , I felt so cold . After I prayed , I went a cafe restaurant and drank a coffee . I hated English at school , because . I failed the exams . The students who can not come to school will be behind . Jazz concert and New York `` I do n't know the difference between US English and British English . Sometimes , I wonder if it 's too difficult for American people to understand British English or for English people to understand US English . `` `` I can not differentiate if it 's US English or British English everytime I listen to someone talking in English `` So many things have happened since I last wrote in my diary on December 14th , 2010 . Careless me It could be a good resource to make a money . When I was a high schooler , I studied English to prepare for college entrance exams . I used a running machine and ran a long time . I completely feel like dieting is not easy . Hahaha ^ ^ ; ; How can I study well with this health problem . At the beginning of this vacation , I had a detailed plan : sleeping time , study time , everday workload . . . It seemed to be favorite content for girls , because it was composed basically of the love story . I went to the concert of the circle held in Kyotanabe campus at Doshisha University last Saturday . This is my first diary We met with our relatives and talked to each other a lot , as well as cooked and ate a delicious meal together . It is difficult to create a story quickly . They proved to be congenial partners , and they gained both a nice song and true love . It did n't matter to him if the others did n't understand , it was enough if just the woman knew . In my company We work at an agricultual facility to store rice until the harvest time . So I worked there over night . My first diary . It 's an important message , is n't it ? The massage fee is very expensive , but I will go there again . So please add me as a friend and help me improve my English . Today I did away with some of my clothes and accessories . Just to make my muscles a bit more stretchy . I 'm a graduate student in Japan , I use English everyday for reading papers of my major and speaking with foreign researchers , so I have to build up my English skills . = > I live in an apartment . Do you think apartments are the safest housings ? I can listen to music , take pictures , draw a picture , play games , plan a course , check weather , etc . . . . . Lang - 8 's update information . I hope these documents can help or what else do I need to do ? Also , I 'd like to know if the hospital where I 'll take my exams is part of your coverage , inasmuch as I already have an appointment to do these exams this Wednesday at 8 : 30 am , Thanks for helping me . I organise these classes by myself at the local community center . Maybe because I can speak English just enough . Music was great ! ! But I could n't understand what he was saying . That 's does n't make sense at all . . . My listening comprehension has gotten worse . I never thought that before I came to Australia . I took my mobile phone out of my bag and tried to push the button to call the police . The doctor diagnosed my illness as `` noro - virus or rota - virus `` . Some people claim that it is necessary to know what is going on in the public through the infomation listed on advertising . Thanks to advertisements , humans can gain the latest information efficiently . As a result , that information brings more comfortable and fruitful lives . On the other hand , there are many disadvantages to travelling by bicycle . Firstly , riding by bicycle can be dangerous . because bicycles do n't have roofs , unlike other types of transport . I had never hospitalized , _ because I had been healthy till then . First , garlic fried . Second , sausage fried . Third , tomato fried . I went to my mother 's home from Friday 11th to 13th of June to particpate in the reunion of my Junior high school class which was held on the night of the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on Sunday morning because my home town is Shimoda , three and a half hours away from the center of Tokyo . I set my alarm clock for four o ' clock , but I noticed that she had already got up and was doing something in the kitchen ( even ) before four o ' clock ! I knew this because I slept in the room next to the kitchen . Then she called me from the kitchen `` Are you all right ? fm , but the service is like a textbook , there is no communication . But I 'll have to go to work tomorrow . I usually think of some Korean sentences I 'd like to translate into English while walking alone . It 's organized by four Koreans I 've never met before . If I am free today , there is no problem because it 's Sunday . Because eating eggs is a traditional custom in Chain . On this day , I can eat a lot of delicious food and get many gifts . Although we do not together , but he can remember to me , I feel I 'm very happy . I was surprised by it . Because I feel the cold or . . because I am nesh . It is famous for its mandarin oranges , rocks and beautiful women . Stay at home with my son . I love American movies , and the most powerful thought driving me to improve my English is that one day I will be able to enjoy American movies without chinese translation . But now I feel I am gradually getting mature . I can now understand and know a person . I will try my best to find a solution to every barrier . Afghanistan . . but I want to be able to listen at this speed ! A friend of mine told me that it is really catching on . It looks boring , ha , however I understand how it works to attract men . Many people smiled and looked at her crawling . You can get to there in only 50 minutes by ferry from Singapore . `` All inclusive `` was comfortable for us . We did n't need to be bothered with money , so we tried various cocktails ( as many as we liked ! ) and a lot of excursions , for example snorkeling , sailing and so on . We found a snorkeling point in a sheltered rocky area just by the beach , so we were able to see lots of fishes . After snorkeling , we always had sweet cocktails at the beach bar . Pho is very good . Fried banana tasted very good . His condition is obviously bad . His talent and experience is undoubtedly best among the team . It was no problem with the group league because Japan was going forward to next round step by step , but now is a tournament . I think he should be unlisted from starting member once and feel refreshed . I am going to university Fighting Against A Sleeper I try to not to fall asleep but I ca n't lol I can open my eyes in English calss class , but another classes make me sleep because I 'm not interested in them , especially sociology ; ( Maybe I dislike it in the world . I attended my all classes . Yesterday I attended a wedding with my parents . We did a lot of activities to celebrate the marriage . However he spent a lot of it for private purposes , and the company found out . Before this , I thought only a professional could create a game . I do n't speak eanglish very well , but I am trying to learn it . The job is to let many people know a town 's good points , so my employer wants me ( us ) to appear on the radio to inform the activity . Though I did n't understand exactly what it was , I understood they celebrated something today . One of the humorous parts of this book is the gap between the common kid and the Go master . The treatment finished incompleted : - O My mom was angry too . I think this web site 's idea is wonderful for learning languages and making friends from all over the world . Short diary Do you have your profile , where you can write short menssages ( at most ( ? ) 140 characters ) , and that messages will be displayed for all your `` followers `` ( people who follow you and have acess to your updates ) . And you can read the messages of the people who you are `` following `` . Twitter can bring to you great information ( news , reviews of products , constructive opinions ) but can equally bring useless garbage like what your `` following `` is doing at the moment ( for example eating breakfast , who cares about it ? ) Today is July first , and the sun is so strong . The heat made me remember something from last summer . It 's a little hard . So , we began to think seriously about the job . My grandfather is 96 years old . He also talks about World War 2 ( or WWII ) , recent economic developments in Japan , and memories from his childhood . She was robbed twice , one of her son married to a caucasion girl , and her credit was terrible . I saw that the sky was quite blue , and seemed very far . I want to go to foreign countries . There were many people who believed it . I think marriage is a very important family event . Why do you learn foreign languages ? I 've heard the English sound since I was child . I 've wanted to speak English since I was child . It was vocabulary , grammar , reading , and writing . . I did n't have an umbrella with me , so I went back to my house being drenched with snow . I would like to read `` NY Times `` , `` Wall Street Jurnal `` , and `` News Week `` without using a dicitionary and would like to watch `` Roman Holiday `` without Japanese subtitles ! my sadness I 'm a boy in China . Even though I have been learning English for 10 years , my level is still very low . Learning English is difficult for me to some degree . I 'm going to the Aquariam , Museum and Art Gallery with friends . Yesterday , I could n't concentrate on my work . Recently , I have lacked concentration , because my relationship with my partner has become serious . Hello . It 's been a long time since the last time I 've been here ! He should n't hold mum in low esteem . My Introduction . Because It 's very fun when I perform at our concert . But I have a little bit of time for myself . Please teach me English ! In order to use internet via iPod Touch , wireless LAN is necessary unlike the iPhone . But now I feel even more willing to continue my studies and finally reach the level of Japanese that allows me to converse with native speakers . I watched one episode after the other . Yesterday I went to the New Culture Square to watch the Firework Show with my friends . but it is so difficult for me . Generally , stupid Japanese students who are learning English almost ca n't speak English at all . To master another language is the most difficult subject out of any other subject , such as physics ormathematics . Tomo : ( Hey somebody please kill this stupid Japanese bitch ) Hey wait , you still can ' tunderstand English at all . Sometimes , we need an explanation about English grammar in Japanese . Business Trip I must help with the construction of Chuo Highway . Both the brighter and the darker side , so I know how desperate I am when someone say something to me , as well as how much I want to give up when I meet an obstacle , in addition to how bad I felt when I was blamed and disapproved . It 's been raining all day today and it 's around 60 degrees , which is kind of cold for here . 1st , I listen the dictaition of English book which is TOEIC text with reading it . I try to practice about five dictaitions every day . However , I would like to make friends through Lang - 8 . Europe , as Motherland of football always have been showing their strengh . I overslept today . I also overslept last week too . On Thursdays , my first class starts from 11 : 00am , so I woke up at 8 : 00am to go to the university . I am disappointed with myself . Chakras are located in each auric body and are responsible of retaining and metabolizing the energy a body needs to work optimally . Usually the literature about this theme describes chakras from the emotional body as the only existing ones . In each aura layer , that has one level of specific frequency , we can check the existence of [ other / different ] frequency levels from seven chakras . I am Japanese college student . I am listening repeatedly to a song in the album like to listen to YUI , I recommend this song . It was said that there will be a Gemini meteor shower ! I like meteor shower . Today I ate hamburger with my wife . I have not ate hamburger for a long time . In Tokyo , it was snowing . It was very difficult . So , I was worrying about the result . I had a good time and it became a memorable day for me . I do n't have enough time to prepare for the test , but there are a lot of assignments that needs to be done . So we need to follow nature in a sense Ever since I was a high school student , I 've been playing electric guitar with some of my . friends . And I think these tastes are greatly influenced by each country 's cultural background . Some Australians actually have been attacking Japanese whale ships using illegal methods such as ramming and throwing chemical bins and turning on water hoses . Their organization sunk Iceland 's whale ship by using underwater mines that are a complete crime . We had a sports competition at my school today . as long as I try to do as above , I could achieve it . But it 's I have to use it for writing diary entries . I sometimes use my English knowledge at work especially when I have She is a graduate school student at Tukuba University in Ibaragi prefecture and she majors in physics . She studies global warming in detail , and she has been in Germany since last month . I am always motivated by what she does . I studied English on the Internet which by taking English conversation classes through Skype from 11PM - 12PM . I played basketball with my host family 's children . They are 7 years old and 4 years old . They invited me go to play basketball . Have a nice holiday , everyone ! ! daft punk is really cool The land of Tuareg extends to Mali , Nigeria and Libya too . The Tuareg had lot of trouble in Mali , so they had some revolutions there in the 60s , 80s and early 90s . The group Tinariwen have members from Mali , but the leader lived most of his life in Algerian Tuareg territory after his father was killed in Mali . Today , I learned cosh . Yesterday , the weather forecast said it will be 28 degrees in Tokyo on TV . I like watching and listening to rakugo . I wanted to tell everyone the magnificence of rakugo . . . ! Monday , Thursday , and Friday , I have a class in the morning and Tuesday and Wednesday , in the afternoon . Today , I studied lots of vocabulary , for example the name of food and clothes , in Spanish . I want to speak English and Spanish and of course Japanese : ] Whatever it is sad to realize , but for the last 4 days , that I spent on this site , in my posts there was only one correction . Recently I would say that spring is aroudn the corner even though today it is still the beginning of February . I do n't know if this is the bay area 's typical climate or if it was a mild winter . More specifically , nowadays the citizen 's levelof education is increasing , whichcontribues to the enhancement of the nation 's competitiveness . Besides , the ever - increasing house prices , economic problems also make modern people feel under endless stress . In conclusion , if employers can stand at the position the employees , it can reduce their stress , and at least make them feel that what they work for is worthwhile . The story is interesting . `` He liked the expression of trust on the woman 's face as she lay in the water unprotected , exposed and free . `` We do n't have articles , prepositions , modal verbs , participles , etc . His breath was so gentle and he looked so fragile and vulnerable . I know that I am a bit coocoo haha but it was about . . . So , that 's it , trauma . Japanese themselves are n't soo scared , but I am here acting so ridiculous ? I held my breath , looked straight into the screen for hours . And , at that point , I became brave and ready to go forward no matter what ! Human capital has a high rate of return and positively affects the growth of the economy in spite of the obvious imblance between human capital and physical capital in China . Countries I really want to go are places near beautiful seas . I 'm not sure that I can write diaries everyday but I 'll try and I hope it was a really hard day for me because of exams anddd quiz as you know . . . Actually , I am a little bit worried about the crowded shopping mall , but I still hope I can buy many things at a good value for my money . Recently , the big event r finished . I thought of it last month , but I did n't decide at that time because I heard rumours of cheaper Macs . He said he went home with one of his friends . His friend had lost an arm and leg during the war . I am late , but I am lucky . The others did n't leave without me . My favourite Ramen restaurant My cousin taught me how to write longer sentences . She is the biggest pet in my house . I can not sleep because of jet lag . they helped in my physical limitation . Third , my listen ability is terrible so I am very afraid of talking with somebody in English . Fourth , I ca n't use the punctuation in the right ways , so when you read my diary entry you might feel confused . That 's why I read the article difficult . ( ? ? ) Seventh , I have n't the visible goals to learn English . And finally , I think that when I get to a higher level , I wo n't always be able to keep it up . I had two bowls of ramen and some rice . I felt sleepy in the afternoon because my stomach was so full . Tomorrow , I will practice driving my car with my husband . So I think that in Japan we should depend on lawyers instead of citizens who are amateurs . I heard the Eikaiwa school keep opening . So I decided to go to the Eikaiwa school last night , nevertherless the school was closed . Now I am working in Beijing , and I want to improve my English . also , l think l made some mistakes . First I got up late and when I was in a class , the teacher asked me the meaning of a word . I always think too much and hesitate when I speak in English . So many people like Japanese ! I 'm a beginner in English . My parents were worried about me because they thought that I may not have been able to get any jobs . I 'm happy that I have a job , but more than anything , I 'm happy that I can make my parents feel relieved . My position is guard ^ ^ It is difficult to study two foreign languages . My English structure is terrible and a nightmare . I 'm awating the delivery . However this game is different from any other game . Because it can be used for exercising . Using it , I can do yoga , boxing , bowling and muscle conditioning . However using the Wii I can exercise at home . If someone is interested in studying in Japan , consider this university ! The complete name is `` Akita International University `` ! passionate and got a load of energy . . I used to read his picture book when I was a child , and I am still interested in his drawings . He wanted to see Big Budha in KAMAKURA and eat green tea icecream again . It would be more joyful if there were some pretty visitors here . I also imagined that I was a CEO of big corporation but I went to work in orange shorts on a GT bicycle . I 'm really a crazy person . I like to play on the guitar , draw and play volleyball Peter 's stupid jokes always amuse me . When I was an elementary school student , I had homework everyday , especially to read Japanese text books to parents and give some comments about the reading . My favorite food . It is used as a medicine for India . Because during high school , students have to study under a tight schedule . She finished the language earlier than me . Usually Japanese do n't talk aloud about personal financial condition or appearance . The other day , one of my students said that he thinks the woman who likes rich men is a realistic and steadfast person , because rich people can be happy in reality . A roommate of mine turned on the music loudly and that is what woke me . My favorite place to relax It is so comfortable . My dear daughter , I wish you health , luck , happiness and love . Nowadays l 'm studying English very hard . The main reason I am learning English is so that I will be able to speak it . Last Saturday Night 's Illness MANY PEOPLE ARE IN HARD SITUATIONS ! ! `` But almost nobody donated . So I guess the students got a few thousand yen . please become my friend . This is a book about trips in Thailand . Poznan 's championship I volunteer to help organize the canoe sprint championship from 26 . 8 to 30 . 8 . I think that we ( the sportsmen and I ) could talk about rowing , canoeing and sport overall because in junior high school I trained in rowing and generally speaking I 'm an active person : ) He can speak French so fluently ! I payed too much tax , so the money will return to me by applying it . I belonged to english speaking circle last autumn . I really prefer to stay in a room because I think it 's more comfortable to sleep on bed than on the ground . I 'm from Japan . I had been writing daily , but there was a webpage error . I think we all want to pay attention to this traditional festival but we ca n't because the government wo n't permit it . - We think the house will be comfortable . He was the only one who graduated from university in my hometown . ( Not sure what the latter part means . . . ) Thank you from my heart , my good example . After eating lunch , we went to household appliance store to see smart phone . Docomo started a campaign and I can buy smartphone cheaper than usual if I buy it during August . The bus is the cheapest way to travel . I like the atmosphere of this town . I 'm writing from my room . Today , 18 October Though I 've thought this word means `` interesting `` or something like that because of its picture form , this word actually stands for `` Laugh out loud `` . Today I 'll just bitch a little bit about my assignments , which , by the way , are due tomorrow morning . Let 's grab another nice cup of coffee and keep on going . Now , my father is in the hospital because he has a mental disease . but I worry about if she will not be to collapse . I 'm chatting with my international friend on facebook . I was so surprised when they served kimchi and beansprouts as appetizer because they served just a piece of kimchi and two or three pieces of beansprouts . After that , when I was in middle school , I began to learn it again . I think the language is too difficult to learn , Because , I had just gotten my results and thrown them away . Please teach me I ca n't seperate them Technique in learning language What is your technique in learning the language you are interested in ? My English is on the basic or intermediate level so I need to increase my vocabulary . I do n't know how to learn a language well . Yesterday I got a mail . It 's about a celebration in the Faroe Islands belonging to Denmark . The celebration happens every year in the Faroe Islands , some young teens kill calderon dolphins to show that they are adults and mature . It came up to me , and I did n't avoid it . Today , I 've went to Tokyo Disney Land with my wife and daughter , though the weather forecast had warned of heavy rain in the area through the day . Due to the weather , there were fewer people and we could enjoy more attractions than usual today . That cafe was so great . I remembered the time of my middle school age , at that time , there are ( were ) two trees in my home yard , one is the peach tree , the other is the pear tree . Taean is a peninsula surrounded by beautiful beaches and ocean . Please let me know the tracking number ! In my opinion , you can not learn a new language or even travel through the world , which is my dream , if you do n't know how to speak in english corectly . This is my first time to attain Lang - 8 so now I just say Hi to everyone who study English and who are native English speakers . FLY I am now preparing for IETLS , so in the future I will show my IELTS Task 2 writing and I will be very glad if people give some suggestions to improve my writing . I am a college student at Osaka university . Please correct my poor English . Thanks to Lang - 8 , people who come from different countries can change languages and communicate with others . Just so you know , I 'm having some difficulty learning English . Till that day , I had studied over and over again . Especially the scene where & nbsp ; LA is & nbsp ; totally ruined . It & nbsp ; was very very awesome and fantastic . Of course , I tasted all of them out of curiosity , and the taste of ' Super White Tuna ' was quite unfamiliar to me . When people eat this fish , it causes diarrhea , as the oil from the fish comes straight out without being processed by the body . After I went to the restaurant , I am sure I got a stomachache . However , I am not sure whether the cause was the Super White Tuna or overeating , because it was a buffet - style restaurant . This fish lives in the Pacific Ocean , so you can go to South Korea or Hawaii as well as Japanese restaurants in North America . I 'd rather focus on how to correct the problem than focus too much on the mistakes , and blaming myself and others . Hello , my woderful friends . . What a unforgettable day ! But I have been continuously woken up by aftershocks . I think this is what is called psychological torment . Even though it will take about 5 hours by car , I hope I can enjoy it and release the stress from the test . whenever I see her , I decide to go on a diet . on the way home , the wind hit my cheets again , and I jumped into my bed . Nice to meet you . I wanted to study today , but I could n't because I have a bad headache . Anyway , I went to Japan 3 months ago . I 'm worrying about two things . Another is the expensive tuition fee of the business schools . But I know there are a variety of options for studying in the United States , such as participating in executive programs . Even though it might be hard at first , I try my best to fix my troublesome characteristics . Is n't it a time to change my old , slow and accurate style into a fast and inaccurate one ? And some of the students do work hard usually . So that they can compete for scholarships . I should n't have eaten the sweet bread . . Due to it , it took me a long time to get out of the airport . I had an orientation there and sent e - mail . I dealt with my luggage for a while , then joined them in the living room . She asked , `` Is this your boyfriend ? `` pointing at one of the photos . She also said , `` You can find a new boyfriend here ! `` Recently , one US dollar equals 78 yen . I thought perhaps that they were junior high students . Time always passes quicker than I think so I just want to have the pleasure of time being a student , and time with my friends , whatever that is ! I just felt an earthquake right now while I was writing this entry ! ! Scary ! I 'm a sunshine boy . I live in SuZhou . it 's a beautiful city . our city is famous for its traditional garden . we have many delicious food help me to learn English in a short time ! ! ! Actually , my English is not good . So , _ I came here to improve my English . I think that I am a friendly girl , and I want to get more knowledge from here . In addition , _ I want to make more friends here . now I 'm considering which countries I 'll go to . and this vacation is almost one month long , so I want improve my english level . I wanna send a message saying `` Thanks for correcting `` and `` goodpoint for correcting `` , but I have no idea where to click on my page . . . enjoy the time left , may you come across your happy - rough life safely . Just 10days have passed since the massive earthquakes and TSUNAMI hit the north east district of Japan . There still remains frequent aftershocks . This disaster must change our way of living and thinking because we realized that we have to live with limited energy and resources . I wonder if we will have to get away from Fukushima prefecture for a long time in order to avoid radiation , but I 'm quite convinced that Japan will rebuild our prosperity even though it will take way too long . It 's saving grace that we still have strong unity among Japanese especially those who are young . First of all , the colour is Crimson or Red Brown . Gothic font is very clear and elegant , I especially like OHNOkun , who has stolen my heart since about 2years ago . He is so talented and so sweet . I found out about this site from ITmedia 's article . They shut down the factories and laid off laborers / workers . I could n't read the book black boy yet , and I have to write this diary . AA company informed us that they launched a PC e made of full aluminium for power users . I feel the freedom and proud of my achievement . A lot of people will suffer from obesity due to their sedentary lifestyles . Some humans will have the ability to read other people 's minds . Beautiful flowers , beaches , and it is peaceful ! Not only Bob but also Patrick ! I went to hang out in Shinjyuku city and met a cool guy who seemed to be involved in hiphop so I approached him and he said Probably because it is different from Japanese culture . My favorite book is `` little prince `` , I wrote about it earlier . Also , I want tell about my favorite season . Specifically : I am a moody person , and of course my emotions often are connected to weather . My grandparents and friends live there , and of course I miss them , and am glad see them and thirdly : in summer I can do everything , that I could not do in all year . Also I like autumn , but I like it only in Peterburg , because I am sure that our city is the most beautiful , when weather is cloudy . Hello to all young gentlemen and nice ladies . Have you ever thought about the ' tears of sorrow ' of all mothers that lost their sons in the many wars that have no meaning ? `` The fundamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by In the battle , one mighty country planned to attack the other two countries . But the two countries formed an alliance with each other and they plotted , schemed , and used geographical advantage to finally win , even though the ratio of the soldiers in the one mighty country to those in the other two was 800000 to 50000 . Because I thought my bad headache ( I completely got well from my headache ) Student numbers in the countryside have decreased , so schools have been closed . Even though there are no students anymore , local schools become new community centres for the villagers . Her words impressed me so much . Recently , I came to like cooking . First , nowadays fast food is very delicious . But I did not think that it was a doll , because it would look very real . I reviewed the English documents written by co - workers . Though I was not sure that a native speaker could understand these sentences , in particular , I was confident of / about the preposition and article . Then I will write natural sentences for native speakers . Until the medicine for yellow fever was invented , there were hundreds of people dying from that disease which could not be cured without drugs . Lucky him ! I do n't know why . . . Maybe it 's because it 's 35 degrees C and you ca n't do anything outside ? I guess FMyLife is a service in the USA . Muggy Afternoon . Actually , I was hungry an hour after and ate a bowl of noodles . If this continues , I think my friends will not recognize me this coming vacation . There were three times the people than normal , you could n't even move a little step in the aisle , and the air was dirty and frosty . Luckily I got one , but it was a seated ticket . He was a business man , and has big family with 4 brothers and 4 sisters . Just a typo My training course I had a training course this summer and I worked in the Council Department . When I first came , I found it supportive . I was happy because I was not afraid . When I did n't understand something , I asked for advice . He plays basketball with his friends after school every day . Last year , when I walked around my home , I noticed a small signboard of a Shodou school . Although I am an English major . Now my grade is brown belt , the grade before black belt . Japanese customers who had participated in a travel tour requested compensation from the airline companies . The clsss was an elementary theory class about DSLR cameras . I try my hardest to write my diary without using a dictionary . because it remains so long in my memory . Mouse likes cheese . Honestly , I forgot how to spell `` cheese `` . . . I have a good impression for this movie . Unfortunately it do n't make ( manufacture ) make - up products . I knew designers normally need enough , comfortable space for not only their work but also for their sensitivity . ( Sensitivity ? ) [ Help me OTL ] Part time job : ) What 's OTL ? I worked at a one day part time job as a waitress for an Italian restaurant . I did n't work much because the restaurant manager is my neighbour . so the manager gave more work for the other part timer to do . Well , it seems like nobody wants to comment on my diary lmao . You 've might have heard of the title because this book won the CARNEGIE MEDAL instead of Harry Potter in 1997 . The sea means goal for each person . We have a small garden with lots of plants so People who do n't know manners like you deserve to die soon . Today , I have started `` Lang - 8 `` because I found this site in a column in today 's newspaper . I called our gas station . This ceremony promotes hope , dream and peace . I have been there five times , but it is different colors every year . Saga is a nice province . I live in Tochigi . Saga is far away . In Saga , I do not have an Internet connection . Thankyou in advance . An explanation of ' MOE ' Tashiro was arrested again in possession of cocaine . pollen allergy ? Once I started studying Economics , it turned out to be interesting . Homecoming visit I will read a vocabulary , and read how to write letter , and how to read very well . We have n't practiced our 3 songs in the studio together . To be honest , I do n't want to be part of the live performance . . . because there is one song that I do n't want to sing . . . We will practice in studio for the first time to prepare for this live performance because we have no time before the performance . It was refreshing . Because a dog is more cute , pretty and it is more loyal than cat as well . For example , masturbation . . I bought a new badminton racket yesterday . I like needlework very much , so I was excited to see these many shops and materials . Of course , most of the visitors were old women : - ) ) I knew his answer . That was what I thought . So I registered . Maybe it 'll make me poor in the coming 4months . I spoke with my friend who comes from England . . . I am proud that I have such a friend , who knows alot of English and can travel to England along with other countries . Now , I am working at LG Chemical Research Park in Korea , I designed control logic design at graduate school , my major and I ca n't learn about my major . but it is an electric vehicle and it will take a few years to I 've already had a can of beer so I want to go to sleep . That really makes me feel embarresed , I act like a retard . In the past I seldom felt in the same situation , I could go straight to the answer or explain things in reasonable way . I told him the problem is that Korea 's [ / RED ] educational policy focuses on the grammar , rather than listening and speaking . For instance , there are more than 50 dialects in Liberia , and that 's why they have strongly felt it nessasary to lean English . I am a captain of the team . After playing footsal , He was naive and self - centered The prescription contains liquorice and other kinds of medicated herbs . Anyway , today was too cold for October ! My favourite sport is basketball . Because of volleyball is not popular and difficult to find the space to play . Basketball , as well , is dificult to find the place to play but I love it . Yeah , it has became a fun way for me to learn English , which I can appreciate their wonderful content and learn some unseen structures of English . Next saturday , I 'll go to see a consultant on a studying abroad . Many words I have forgotten . When I read books , many words look very familiar to me but I ca n't remember what they mean . I am not romantic , so my wife always say that I should be more romantic . On holidays , he walks around the riverbank for his health . I really appreciate it . After work , I went to the only Daiso in Canada . But here the price is two dollars . I felt reluctant to buy some stuff . But last Wednesday , I learned by Internet that Kagrra 's concert was canceled because there was a problem with some visas . U _ _ U I have to take my tickets back tomorrow , because Kagrra 's organization will give a refund . I need to take over my team leader 's job because she needs to take some time off to prepare for her baby 's arrival . Every day , I need to forward her email to each factory in the morning and help them to solve their problem . I bought many things , such as a vacuum cleaner , a refrigerator , a table , a bed and curtains . . . Impressions of America part 2 The budget of the New York Yankees is bigger than that of North Korea . However , I wo n't give up until I can swim the butterfly stroke . Quiero ( Quiero ) ir a Espana . My teacher sent everybody the e - mail , which said `` If you get this email let me know by replying to the following address : Anyway , as I checked it just now , I found 5 e - mails which should be sent to my teacher only but were actually sent to the whole class . However , not all kinds of miso are good for eating , only miso free from artificial additives . I hope next time the weather will be good . The company recently introduced a new system which will allow me to withdraw the money from my bank account . I bought yogurt at the supermarket . This bacterial fermentation is sour . The temperature is high . Seicomart convenience stores offer a few kinds of reasonable house wine priced around 500 yen , which tastes good enough to drink at home . The restaurant had different kinds of Belgian beer . I drank three cups of Belgian Beer . Belgian beer is sweet . I asked an employee why Belgian beer is sweet . This tale is nothing compared with the occidental classic literature , maybe because those tales is about danish folklore . It is a mixture of mistery , fantasy and rarity . `` Power of music `` is a new event in Tokyo Disneyland . I ca n't sleep because I 'm lonely . Pls be informed that this shipment will be delivered as LCL via Hongkong . Schedule as below for your reference : Between you and me , there is a special and magical way that if you do not consider the above things and write a fucking boring essay whether it 's long or not , your essay will be colored with red and blue with warm comments within few minutes : just show a picture of your pretty face or of another hot woman found somewhere else online such as unknown hot celebrities . Maybe I do not want to learn english at beginning . but I will try my best to learn it in future . my english teacher taught us many words , but I can not remember them and use them in the correct way . what can I do ? Because my friends studied for exam in this summer . At that time , he faced demotion from Ozeki to a low Ranking . Second foreign wrestlers dominate especialy Mongolians . I sent a music box to her by express several days ago . We always say `` happy birthday `` when it 's somebody 's birthday . 2 policemen were killed , 55 policemen are missing , and 4 policemen are injured . The food is not as delicious as I expected . The food does n't taste as good as I expected . She is not as beautiful as she appeared on TV . I have great expectation as much as I try . * I do n't want to dislike my country like her . My mother 's native language is Japanese . We happened to meet a Japanese tour group . I asked someone of the group in Japanese . I was really surprised by his behavior . I was a little bit shocked and sought for the reason . Did n't my Japanese pronunciation sound like native Japanese ? My bad English was n't understood by the Peruvians , I thought they had High - mountain Disease . I want to go to Peru again . I have a very nice memory of it , except for the Japanese tourists . I was impressed ! ! Today I feel so blue , I find some knowledge I learned before have completely gone . Besides , as this hospital is highly specialized in cardiovascular surgeries , I 'm able to improve my skills and develop my career . Why ca n't they drive more gently ? Now that I 've learned that there are potholes on the road as well as ordinary minor cracks and holes , I will pray for the safety of all the drivers ! So I remembered about the time I chose my job when I was a teenager . I dropped by the library on my back way and I borrowed `` One Piece `` . I used to read this manga and I thought that I wanted to read this manga again in English . Since I did n't know anything about actors , I 've just looked for the actor who played ' Harold ' . The Notebook feature lets you easily review those worthwhile notes . Altogether I started to pracice sports because of him . Today , when I was about to get in my car , I found something on the ground . Then he recommended me a fortune teller that is famous , Indian and accurate . additionally they were right for me . fortunately , lots of the things she said were good . It was a wonderful experience for me ^ ^ I quit smoking in April of this year , but because of too much stress I started again . I know it 's not good for my health , but smoking after having a lot of stress is beyond expression . when I surfed in Japan I could stand up 1 time , because it was a long board and the waves was small . so I brought a short surfboard , it was so difficult for me . because it 's very boring at my place . it 's very beautiful . I wanna know why but I 'm afraid to hear the truth . Checking my diary ( not all of them , but most of them ) , I found my mistakes are mostly with `` a `` and `` the , `` which many Japanese struggle with when they learn English . I really appreciate people who suggested my journal . Another doctor who did the plaque removal is also quite skilled and careful . Major quantity of the books like textbooks that I used to read when I went to school . Eijirou is different from usual dictionaries . So if you have any problems with your pc or networks ask me ; maybe I will be able to help you . Well , after I passed an English exam during the second year of my studies , my contact with English has been really limited . I am really nervous about the toefl test . Not write the sentence too long , Not choose an answer so quickly . . . . . . . . I am from Vitoria da Conquista - Brasil , I am 20 years old , and I am a student of technology . My wife and I celebrated it with our two daughters at a small japanese restaurant . Frankly speaking , I completely forgot this special day until this evening . We went to Seoul tower , some shrines , souvenir shops and so on . Bangkok Turmoil Recently the iPhone has been popular in japan . When Minko saw him , she was jealous of Ohana . I started Lang - 8 today . So , I study English very hard . After a horrible / terrible / awful economic recession , many contingent workers have gotten fired which means they lost the way to make a money and live . The system was very simple , first you sign up by entering your personal data . I will go to a bookstore , and buy some books and magazines . I know my weight , so I can be very careful about what I eat and drink . My goal is to lose 3kg , so I have to do more exercise . . . we will make takoyaki which is a typical Japanese food . First day - Pusan Everybody got married . I did n't get married because I was young . Because the weather is nice and comfortable to stay in . The main character of this story is a doctor . I 'm Japanese but I live in Beijing present . I need to be able to speak English and Chinese as soon as possible , so I decided to start to write diary in foreign language on this website . and if you know any popular or funny slang words , please teach me . A meat - eating type girl is aggressive toward hunting boys . A grass - eating type boy is non - aggressive towards girls . question 2 : how to pronounce epididymitis ? The white bridesmaid : `` That 's disgusting . The white bridesmaid again : `` Who wants a gargoyle , or whatever he is , at your wedding ? `` The white bridesmaid : `` I do n't know where to look . . . I 've never seen bridesmaids dancing at a Chinese wedding . English exam is made of vocabulary , analyzing sentences , listening and so on . . Analyzing Engilsh sentences exam is very very difficult to me I 've been through the hardship of quitting . After losing , a bad taste was left in my mouth and I felt an urge to try to get even . hot patch because he is the most popular actor of ' Pirates of the Caribbean ' . It started a few weeks ago when my little brother got dragged to a dance course by his friends . Without a partner , I guess ballroom dancing is quite hard . . . So , let 's open our hearts , in order to be friends and to make progress . From . I believe the uniforms shown in the picture appear to be orange and blue . I must speak English because I want to travel to other countries in the future and English may help my in my future job . In the afternoon , my homestay mom and two guys came back home . We had no script so we were just listening and wacthing the movie . Although the situation with radiation ploblem , delivery delays or power saving did n't change much ( it still is bad ) the life of people , who live in less damaged regions , such as Tokyo , seems to be slowly coming back to normal . In the morning , While I was waiting for my friend to pick me up , he mailed me , saying `` I 'm drunk and feeling bad , so please come and pick me up `` . So , that place is always full of people ^ ^ I want to make it more significant and emphatic . but for me that is not enough , I must make more chances to improve my english skills . I wrote a letter to them to ask about volunteering . . . . I guess she must be around 27 , right ? I did n't contact the volunteer stuff after all , but your advice was very informative . Recently , I read a comic . It was my first trip abroad . I was asked about the Tsunami by some people . He recommended that I drink Kava . I think most Japanese are polytheistic , who are not very religeous . Please have some if you have chance . I 'm 28 already . . and I 'm going to plan my future life in this year . . something I ask myself . . . what do I really want ? ! My job is teaching English at private school in Japan . They were able to open the lock quickly , but I was shocked and disappointed as I had thought they were old enough to decide what was wrong and what was right . All my family was at home because of the snow . I 'm looking forward to communicating with everyone in English . I am interested in this movie 's subject matter . I think that it would be horrible to know death . I am studying biology now . But they watched it ( not only the first part ) and maybe even read it . These people go to the cinema and see this movie just to laugh , to make funny comments or to rephrase dialogs of characters . For a long time I belonged to the first category . I decided to benefit from this action so I had to read it in English . But I was so excited and glad that I could read in English and understand it that I 've read all of the saga . Except for poor language ( the Russian translation is even worse ) there are lots of Mary Sue and out of character stuff . Anyway I 've read four English books per month . In the practice match , I got punched in the stomach and fell down ! The instructor said that it was not so strong , but I could n't speak . We lay on our backs while the instructor stood on our bodies and jumped three times . Today , on Sunday July 11 , 2010 . , half the members of the House of Councillors will be elected for three years . S , China , North and South Koria and all of the other countries around the world . I also want to go abroad and communicate with others more smoothly . Today I met some Korean friends . I do n't think that Korean food is spicy . My favorite is toppki though . Summer vacation is around the corner , Most people are starting to make plans . It blows from East - NorthEast , and it 's a really strong wind . In this Bora blows with a medium speed of over 100 km / h ( over 55 kts ) , and the highest gust reached 188 km / h ( over 102 kts ) . . . While I was walking , going to the university , a tile fell about one meter from me : it could have killed me , if I just were in the wrong place at the wrong time . Some of them did n't sleep last night , because Bora makes a lot of noise . We 're accustomed to that . . Our ancestors have a proverb , stating that we dependon our parents in the home , and outside we dependon our friends . The relationships betweenoneself and friends is n't to make use of each other . Some people will make friends with you not because he or she like you , but because you can help him or her in some way . I 'm in low spirits now because I feel that I am being ignored for this reason . I will study English at Starbucks today ! The article recommends to take notes of every idea that comes to your mind , The reason for this is so that it gets completely absorbed by the skin . My birthday was two months ago . My mother made it and it was delicious . I ca n't see the license number or even a part of the numbers . The police ca n't pick the criminal up . On second thought , she always asks people she meets about their & nbsp ; jobs because she is concerned about her own future . I dont know why smart phones are so popular among people , but it seems that they have many attractive functions such as Skype , Internet , or many other applications . However , this situation is only in the Japanese market , so what about your country ? Especially , gratin with chestnut and cream cheese , which was very yummy : ) The soy milk pudding and tofu donuts were delicious , too ! So when we have practice for all of the members , I have to plan the practice before we start . And please try to watch it if you have a chance . I replaced the sentences in the grammar book with my own sentences . Today a debate occurred between my mother and I . We started discussing the topic from the minute I stepped into my home until bath time . The topic was on my dressing style . Then she said she felt confused and disappointed about how I treat my occupation with my whole spirit but do n't care about my appearance . I know it 's important to hold on to the precious period when I 'm just in my twenties , and that 's just what my dear mum wants me to do . I do n't wanna let my mother down . Another reason is that , someone used to say that she thought I look the same as Aoi Yu , a Japanese actress with a pure appearance , and I wanna keep the simple and pure impression in others ' minds . I have just arrived ( or I just arrived ) in Adelaid , Australia , but I am worried about my poor English , I do n't have enough money to keep travelling , so I just found a part time job in Adelaid City as a sushi roller , I will be really grateful . When I arrived at the hotel and unpacked my bags , I went out with my sister to take a stroll along the river nearby . I am not good at listening and writing . If you want to relieve your stress or you feel your daily routine is boring In order to enjoy your trip , you should consider your safety while traveling . You had better leave your valuables and expensive jewelry in the hotel when you go out , and you should hold on to your bag . In Pusan , you ca n't use traveler 's cheques . If you want to enjoy that you should choose the ones already fried . my costume was a baby , and many people laughed at me , and took many pictures . Frankly , it 's not useful and inconvenient . Even it 's occured only at the first meet , they may get tired of hearing that . It is very convenient ! ! Recently , I have been playing a game a lot on my DS . It is very fun and we can learn English ! ! _ This game is very nice ! ! _ COOL ! ! Monolith ? At night , I drank with my friends , which made me forget my tiredness . I 'm a little busy until this afternoon . Even though I have the official working holiday visa , I could n't get a so - called `` Aussie job `` due to my lack of english proficiency . As the title suggests , I 'm new in this community . Whether feeling happy , sad , depressed or angry , music is always there to support my mood ( unless my cell / mp3 player runs out of battery xD ) . I signed up for this community because , obviously , I want to improve my English writing skills and I 'm hoping to get your help . I know this is a terrible introduction but if I continue writing , you 'd have a LOT to read , you 'd get bored and finally you 'd close this page without correcting it . I 've been thinking what I should do here in Japan , because I always had some goals to achieve when I was in Canada . That 's why even when I 'm doing the same things that I 've done before , I feel it in a different way . I 've practically never skied before , but I 'll take some lessons . Our four girls really had a wonderful time there ! ! ! TASK TWO - Comparison Composition Singles can do everything they want to like travelling , buying clothes , working for a career . I am a writer , but my story is unfinished . . . Anyway , somebody help me please ~ My pronunciation is poor and sounds like a bad Hollywood movie with a Russian Ivan speaking in English . I learn Japanese because I 'd like to go to Okinawa to visit a karate master whose name is Morio Higaonna . Tokyo Marathon My big brother participated in Tokyo marathon last month , which is the one of the biggest citizen races . He finished at 3 hours and 6 minutes . He has been really good at running long distance since junior high . They were n't in this game but the live game was good ! These taxis started to run in our country . I bought an LCD television made by Sony today . A famous Korean actor committed suicideby hanging himself with an electric cord . The saddest part is his older sister had committed suicide Some journalists think he had depression and that he was suffering under his sister 's death continually . Can you arrange the stuff , after you clean the fridge ? I was shy because I was afraid of making a mistake . Today was my first working day of 2010 , but I felt sleepy the whole day today because of my bad habit of staying up very late during my New Year 's holiday . Charlie has never enjoyed talking , and hence , he developed a brooding look - surely his eyes were those of a man who carries the weight of life . I hope that the beautiful country goes back to normal soon . After I arrived in Tokyo last month , I have n't had a chance to meet and talk with people of English countries or others . I know many foreigners have already left Japan because of the massive earthquake and Tsunami and radioactivity . Besides high school English class ( which is so basic and has the same old lessons every year ) , I 've actually never studied English officially . So I 've decided to get a little help ; ) I hope this thing helps me to improve my English . It was a small teddybear . I 'm from Brazil and now it 's 5 : 55 AM . I was able to find more information about an internship . I would like to go to Toronto or Vancouver . I love ice and snow , but I never see it . It would be a dream although I do n't speak English that well , but I love the English culture , the language , and in Canada the people speak English and French , and it 's cold . This is my inaugural ( first ) daily entry / post on Lang - 8 . 2nd of August was my 35th birthday , I 'm going to write daily on Lang - 8 as documentation of my time in London . I had heard about it several times before , but had not yet visited . Today we will go out to buy the ingredients for cooking burritos . We need chicken , pita bread , mushrooms , mayonnaise , and hot sauce . It 'll be my third time to visit there , but her first time . I 'm looking forward to having some nice seafood . Today , I participated in our laboratory seminar . I 'm so nervous . . . . I am a student of foreign language studies , majoring in French . One week ago , when I was home , a strange man came to my apartment and said something like this , `` We opened our new shop in this neighborhood , and we are giving away some presents for every house around here . But I wonder whether I should buy a mobile phone with an intergrated music player or an ipod . The price of a new Iphone 4 is from 16 to 18 milion Vietnamese dong ( equivalent 800 - 900 USD ) while my salary is just 4 million Vietnamese dong , less than four times the price . My family live in Fukui . I like travel . So I want to study English . Do you know SETSUBUN ? Today is SETSUBUN in Japan . Today is Friday the thirteenth . Today & nbsp ; is Friday the & nbsp ; thirteenth . I do n't know why this year has a lot of Friday the thirteenths . He adequately countered a judge 's budget screening 's questions with data and passion . His opinion and attitude showed the essence of the screening . it has double structure . I feel Japanese salt breeze when I eat this . I watched the movie frozen with my family . Nobody noticed . horror and survival movies . Now I 'm a junior high school student , I do feel my English is poor , I want to find a foreigner friend to teach me English . I am at home with my father , usually we did not agree with each other Maybe because we have something to talk about more . My television is broken now and my computer is going to be a problem too . My father took the television to be repaired in the shop . the first of the Lima , Peru 's new urban air purifiers called `` Super Trees `` was recently installed at the busy intersection next to a stream of a congested traffic . It was installed by a local beer distributer and created by Tierra Nuestra SAC , a Peruvian green technology company . The Tierra Nuestra says that the purifier uses the liquid filtering process to observe the carbon dioxide , equivalent to the actions of twelve hundred trees . the creaters claim the super trees removes dust , germs and bacteria from 200000 cubic meters of air per day . The Mayor of Lima 's district of SurquilloGustavo Sierra says the super tree could help the contaminated city across the globe . `` It has taken us six years , six years to plant 1200 trees in Surquillo however this machine help us greatly to improve the air we breathe . `` He intends to install another 20 air purifiers in this district . Peru 's unbudsman office reports air pollution levels in Lima are nine times higher than recommended by the world health organization . in a report released by the Peru 's national council of the environment , about 80 percent of the pollutants of the air caused by old , ill - kept automobiles . Today was the happiest day of the week . Back then , hundreds of thousands of years ago , people telling stories about things they had done earlier that day while hunting . I already checked some houses and found out that some houses have private bathrooms and kitchens which only two people share . As a result , we have seen spectacular congestion on the highway . I might have that tendency too , because I sleep more in the winter season . And then , I said `` I am being lazy . `` with a big smile . In this entry , I am going to write about `` time - markers `` again , and also a few other things , Some possible sets of time markers and tenses are listed here : URL I did n't know that there was Lang - 8 , _ a wonderful site , which helps us make friends to correct each other 's writing . Tomorrow , I 'm going to the US for 3 months . Nowadays , Shanghai becomes one of the most developed cities in China . I was really curious why she never would help me know more . or encourage me , insteadbut opposite she of always mocking me . Language exchange site People sometimes contacted me , but they do n't seem to have read my profile at all . He told me that he really wants to learn Japanese and he would like to know how ? Then he said he thought the easiest way to learn another language is to have a girl friend who is a native speaker . I watched soccer yesterday . Recently the weather is weird because it 's suddenly hot or cold , therefore I caught a cold in few days . I feel people are laughing more and a lot of plants are in bloom when spring is coming . Since I was born in a tiny town which is quite a countryside with a lot of rice fields , I like parks with a lot of nature . I can ? , , , Was it a slip of the tounge ? There were nine babies in today 's class and Konoka was the youngest among them . my name , special holidays for me , about a photo and so on . Today is a boring day . but ifeela little gloomy . It destroyed my office backyard . Customers come to my office . My friends had said that Spanish is one of the easy languages to learn . No , I do n't think so . She said my questions were about grammar , which I did not study a lot . But , I did n't want to ask the professor , so I made her study what I wanted to know German grammar . If you are interested , the short film is available on ' Youtube ' , with English subtitles . Finally , my skateboard broke into two pieces . The title means `` Save my earth `` . a Japanese writer , in 1989 . My roommates are a Singaporean and Indonesian couple . There are many people who are good English speakers . However , I also have to study ! Studying a foreign language is very interesting , because it makes it possible to meet lots of people . I would like to meet foreign people and have language exchanges . I met my friend at a restaurant and we ate sushi and wheat noodles . In that program a woman takes a plane to Japan to just eat some sushi and wheat noodles , then comes straight back to Korea . My friend was impressed with those foods , ( not the program guest 's action ) and she wanted to eat them also . Because of that we went to a Japanese restaurant and ate them . We had often talked about yakiniku and how we would like to gorge ourselves on grilled meat . I read a report written by a web designer on the web . There were many people in the class . After that I watched a DVD at home . So I left home earlier than our arranged time . I am writing a yucky story today . This afternoon , we went to the gymnasium for PE class . Now that I have became a college student , our PE class is different from what we had in high school . My friends and I usually played badminton together to free ourselves for we all feel great tired at that moment . My friends , I miss you so much ! ~ Oyama in Miyakejima , the family and dog 's story . my car was a little bit dented in a collision . I met a lot of friends who had left my company a few years ago . And what 's more . It 's basically all free ! It 's a typical HK movie A confusing relationship between the robber and the police , good action and cool guys . I 'm going to play volleyball with my friends tomorrow . I used to play volleyball almost every day when I lived in America . Asking some English questions ! ! For example , the most evident and , maybe the most dangerous , problem I noticed is the fact that Italian tourist trade thinks the country does not need to make efforts to increase the number of visitors ; especially comedies and dramas . . . I want to visit France , especially Paris . The Hard - Disk has some damage . I am interested in learning English . let 's start . The weather is always different in this city , five minutes ago it was sunny , then it suddenly started to rain . . . Just like a chameleon . Next week I have the CET test , there 's a lot of pressure on me , and with this horrible weather , it made me sick for four days . Because it 's so hot in the dormitory and there 's no air - conditioning , I had to sleep out outside of my room . - The concept of coworking is inspired from parties . I read an essay written by Haruki Murakami . I was surprised that he determined to write , when he was 29 years old , in 1978 . I usually do n't drink beer but I drank a beer yesterday because it was my mom 's birthday . Because it is dangerous for girls to go outside drunk , and I do n't want to be seen by my friends . I like the hot atmosphere - - - everyone is surrounded by the rising steam . Now I am studying English very hard , and next year I 'll resume studying French . When the temperatures of the oil ( or pot ? ) is high , addthe eggs into the former pot , and put the rice later . Put salt immediately at the same time . Here in Vancouver where I live is always sunny specially these days . Even though the bookd is incredibly famous across the world , it is n't for me . Maybe that 's the reason I only watch a movie instead of reading a book these days . `` Shawshank Redemption `` is the one of the short stories in the book `` Different Seasons `` Actually , I 'm already excited to compare the story in the book from that in the movie . OK everything will go on , I will graduate from college , then I have to find a job to take care of myself , but I still have no confidence , who can give me ? who can do it with me , who can see tomorrow with me ! ! I used to be very close to my younger sister . Now we are married and I have a kid , but she does n't . If I pass the exam , I can learn more language there . + Yei ! + Now , I study English . Please teach me English ! To stop him from talking more , I constructed a funny answer for him . I said , ' I wanna a handsome boy , just handsome , and I want you find himfor me , I know you can help me , remember call me first when you findhim ' . Album 's name is Abbey road . We go to the temple and pray for our family 's health , happiness , and world peace . These are delicious . What does `` address `` mean ? She is a homemaker . We can even use Internet when we 're outside with this ! By this time , four people have been killed in an election campaign . first diary ! I 'm 19 years old , and I 'm a university student majoring in English . I was moved to watch their childhood movie which they made . I tried to write something , when I first found this site . I thought I would write any everyday happening , but it does n't work as I expected . First we had some arguments , because we were a big personality difference . After some arguments , I learned I should n't object to what he says then I wo n't have arguments with him . Since I did n't say my opinion and I just listened , we did not have arguments . I do n't know what should be the most important thing . . . I have many problems to solve . I was touched and surprised by the scene : there were thousands of fireflies in the valley . They said that cats have nine lives . I think it 's cool . When we began , I found that his skills were more advanced than half a year agao , and was beaten 4 times . I felt a bit nervous and some careless mistakes when was shooting . Both these soups have different tastes so I enjoyed both servings of Oden . Thanks a alot for reading my diary . A few days ago , I went to the airport to see my friend off . First time I 've heard many times that writing English improves our English writing skills , but I I am a very lazy person and I am very very busy . I decided to write my ( or this ) diary in English hopefully everyday . When I was a junior high school student , I had a variety of tropical fishes . Then one of the goldfish always used to jump out of the bucket , and I would quickly put her back . Tomorrow , I will go to the theater with my classmates . Anyway , commercial TV stations start new TV shows from this spring . I watched ' ' The Matrix ' ' on TV , which was broadcast the day before yesterday . Moreover I want to communicate with many people in English . We always laughed with and without reasons . It is not true . The coffee is not good yet because I am still unaccustomed in making coffees . I 'm really looking forward to meeting them . ( Sometime the company adds oil or badnegitoro to fake negitoro ) I felt uncomfortable . . . I want to fill my calendar CBS on Youtube . Okay , keep your eyes on those who want to use their `` arms `` . The tests were quite difficult , especially listening . t , When I look back those days , a pen - pal was Japanese girl who had similar ages with me . I am writing in response to your letter . This is a great opportunity for me and my career prospects . I need to get a high level in English because it 's an essential skill required for working overseas and getting a good job in a company . On the other hand , I live in place where weather is warm constantly all year , but I think it is diferent in Manchester , maybe raining often , I would like know it , to be ready with appropriate clothes and shoes , when I get there . After the Gibeonites surrendered to Joshua , the group against Joshua turned to attack them . In fact , the Gibeonites were one of them before , but now they were under the Israelites . I want to study English ! Penicillin , Innovation of the Century . The most beneficial innovation of the century was in the health area . It is Penicillin , and it was discovered by the Scottish scientist and Nobel laureate Alexander Fleming in 1928 . Furthermore , it has continued to innovate because Penicillin is a part of health studies with the focus of keeping human lives . Such a focus , to me , is the most important area in human studies . Finally , this antibiotic has actually been used everday in places such as hospitals , clinics , etc , to save people . Therefore it can be considered an innovate , as it is surely a unique and great discovery . I feel lucky when I see red sky both morning and evenings . But in my opinion , it 's their problem . Every foreigner working here earns a higher salary than the locals , even though they do the same job . The Goya plant has rough skin but when I touched it , it felt greasy . Just fun . My friend gave me a Goya plant yesterday . If I keep it in my refrigerator it will change to a yellow color and a very sweet taste . today I tried calling method for the first time e - mail is : mf329 @ msn . One of my friends recommended a dvd . It was interesting for me to watch this one . Because I study listening and speaking . She would like to have a baby , months ago she lost one and she was really sad . She will be fine . She has the love of all the Brazilian people and her husband . I will practice the violin . So I have time to play the violin after so long . But I have to tune my violin before I play it . I had a very important test today and I was very nervous ! The weather was nice , like early summer . It seemed like a bad endless loop . I think I am just an intolerably lazy guy . After supper , I took some medicine so I hope it 's going to be better tomorrow . ( I hope so ! ) Today is the second year and week I have studied at this college . is more important and the savor also can be forced . But I do n't know how to force my interest . Some kind - hearted people brought the cat to a hospital for animals , because the unlucky animal was very thin and had many wounds . I want someone who will correct my English strictly . I live in Hoddaido which is located in northern Japan . Deer rice cracker are sold in Nara park for one hundred yen . The deer will pester you violently . I buy big pizzas from Costco from time to time . And I also like to buy bulgogi bagels . Bulgogi is a seasoned beef dish cooked well - done . Anyway , Costco has been doing it in their own way , and many Koreans find this appealing . I am worried about the blood test result this Thursday . He had n't neither problems nor concerns and was very happy . Please make friends with me ! Santiago is famous for Christian pilgrimages and its universities , which are very old but are still attended by many students . In London there are millions of people and cars , so the pollution in London is much worse than in Santiago . The old city of Santiago is as impressive as the most famous buildings in London . One of our most popular foods is shellfish , and there are a lot of restaurants near the cathedral that serve this meal . Now I am living in a cucumber farm house with Hong Kong friends and some male friends . It is later than before , so we can wake up late , happily ! If we have any days off , we will be very happy . People born in the Year of the Tiger are supposed to be generous but stubborn . Are there any beliefs in your country about what determines your personality or what your future holds ? . 2nd , my baby 's new car , the Prius Toyota , which is stained much . I did n't practice much . At least , I want to eat with somebody . My favorite fruit is pineapple . Anyway , I like pineapples . I 'd like her to be responsible for something because I believe that makes her feel a sense of oneness of family . ( minor ^ ^ ) Just have to live for now and prepare for the future . Going abroad . . some friends have gone to foreign countries to learn English . . . but I do n't have enough time to go abroad . . and other European countries ( nations ) I have to accept it . Now my husband and I are watching the game on TV and cheering ourt prefectural team . I 'm from Osaka . Welcome ! Because they are in small cages all the time and walking time is once or twice a day which is only ten or twenty minutes . because I have never thought about it like him . I know that it 's going to be difficult to keep up with this class but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . But when I talk with her , she can understand what I mean . From an expert 's standpoint the key to breaking a vicious circle is to change the established patterns . At first , I felt a little down , but I like it now because my friends said it looked nice : ) ) I am a university student in Japan . I can teach Japanese to people who want to learn Japanese . Starting today , I want to write many entries in English . . I 'm in the middle of developing a software program . My favorite place is the road near Shukutoku University . the titles I gave the texts are n't really creative , are they . . * laugh * And I hope I can improve my English skills this way . Continuance of the Tanabata story . My favorite magazine is Arakawa Under the Bridge . Arakawa Under The Bridge is about strange people who live under the bridge . But I felt frustrated about failing a stunt , because it was a big challenge for me . . . . when we talk about the hacker , we think of someone who is tring to get some secret information from the government or someone who steals the bank accounts of the rich . I ` m afraid I can ` t answer now I 'm encouraged by this news . They throw a hot , 400 degree stone into a soup to boil it . ( yummy ) They taught us how to dance . I took the TOEFL this morning , and I found that my English typing speed is too slow , despite my fast Chinese typing . So I made a decision during the test , that I must find a way to get more chances to type English , so that there is possibility to improve it ~ Maybe I should keep on blogging in English . The academic lectures seemed difficult to me , and the writing required too many words . The words used to write are long and infrequently appear in daily life ~ So I just chose to give up preparing . Why are you afraid of a challenge now ? At that time , I had n't visited other countries before , I was very excited . I made plans for traveling until late at night . As I was n't good at Japanese , I had to use English to converse with others . My old friend introduced me to his Japanese friend - Yoske . The dolls must be temporarily displayed . People believe girls will marry late , if the dolls are The term is from the middle of February to the the middle of March Afraid of my Future But I 'm afraid about my future . I want to find a good job . This is a Japanese animation 's title too Once the petals of one flower blossomed together for a short time . I watched the animation film last night . I am a beginner to this site but please help me to study English and in exchange I will help you with your Japanese ! ! I am eagerly waiting for your message > < I have gone to an English language school for 2 months . So , she wanted me to be in an arranged marriage . Actually , she did n't like him at all . I must be positive , active , and attractive in Tokyo . At last , I hope everything will be improve ! I think she has an energetic mind . I have to comunicate with you , so that my English will improve . My English is not very good and I 'm not confident with my ability . I wish I can make friends with all of you guys and please help me to correct my errors ! Thank you very much Even though I was in America , my English is still bad . raise their children , thus consumer decrease to expend . To be frank , I 'm not so interested in that part , but my friends , especially men , are interested in it . It is important that people in the valley want to move the tree , and they do it themselves . It was released in 2003 . Today is a holiday , which is the Japanese flag holiday , What is your favorite food in summer ? My hobbies are listening to music and playing volleyball . I will graduate from school soon . Ionly have 8 days of school left . My school is very strict on manners . It causes me a lot of stress . . . But school life in 3J is very happy and funny . First , I could n't figure out what happened , but it made me more excited . I did n't know before marriage , that men have a party with their friends , we do n't have this . I want to watch more funny movies . I am going to see it tonight with my family . The typhoon left last night . Often , I visit English websites Tomorrow is my last English conversation exam ! From now on , I must write a new entry at least once a week ! when I hear someone saying that , I frown and get annoyed . I just completed my Bachelor Degree in Information Technology major . I am looking for a job now . and I 'm also looking for scholarship to study abroad . I often watch Japanese movies , drama and western movies when I have free time . And I hope to make many friends on this website . I 'm wondering if I should call in sick tommorow . I learned this sentence `` What was your first impression of me ? `` You should guess in the content . `` However , it is difficult for me to guess a new word . Because there were so many Japanese people , I did n't feel like I went abroad . The scuba coach was Japanese . Tonight I have to go to cram school . Maybe I 'll have a barbecue party , but I 'm not sure yet . It is difficult for me to write in English . Oh ! A summer vacation has begun ! The original work is from comic book that was published in 1980 . There are many sushi bars in Asakusa . I think that talking with my friends will lift my spirits . We do n't know whether we are speaking American - English or British - English . I 'm running a clothing store in Kyoto , Japan . If I have to criticize , I would say that the sorting of garbage is not strict compared with other towns . A privately owned Chihuahua received a license to be a police dog . I 'm getting excited ! Could you please tell me your school trip be it in elementary school , junior school or high school in your country ? Please leave a comment . This shows the character of Japanese market . There are white and yellow Shinkansens . If you see a running yellow Shinkansen , you are lucky . What a wonderful thing that would be ! ! So people , tell me what you like and correct my grammer , please ! Father of 1 . I study English , book - keeping and FP . I 'm interested in Videogames ( PS3 , PS2 , PSP , Xbox , Wii , NDS ) , Anime , iPhone and iPad . . Now I study English hard . I am glad they do n't start at an earlier time because I am easily distracted by sound during my sleep . I still do not how to translate Japanese into Chinese . And then , I went home and was studying until now . I want to take a nap after going back again and keep studying more . I heard that `` one love `` means `` good bye `` or `` see you later `` A week later , I rented a DVD and watched it . Self - introduction in English After that I went to the hamburger shop . My hamburger was too big to eat ! I always worry about what present my son wants every Christmas . People who have graduated from low level University then go to a high level University . I think it 's really tough work ! Today is a holiday , `` Physical Education Day `` . Though I want strongly to communicate with all english tourists and teach them many good things about Japan . I 'm learning English for business now . I happened to find lang 8 when I read a book written about English . The seeds will need to be planted by ourselves . Thank you so much to many people in many countries ! To tell you the truth , It 's the first time I 've heard of the existence of generic medicine . I am a graduate student , major in biology . Swine flu is threatening many countries . I 've started writing a blog I like traveling - - The sea makes my soul very calm and my body healthy . . . In Nagasaki , I went to HUIS TEN BOSCH and an Atomic Bomb Museum . The next day I moved on to the Atomic Bomb Museum . You know I have a holiday , so I will learn more than other people . There are many geoglyphs and the length of the biggest ( `` one `` or `` geoglyph `` ) is about 300 meters . I heard the sad news that an earthquake hit Iran , causing many injuries and casualties . Every time I hear the news of an earthquake in the world , I recall the one which hit my home - town , Kobe , in 1995 . The fact that over five thousand people were killed or seriously injured left many deep scars . because I am a lazy girl . I hardly save my money . I do n't know if I should be ask him again or not . Please correct my mother ` s diary I guess handicrafts are valuable because they carry the long history both internal and abroad My first abroad travel was in 2000 . But , it 's a kind of cultural differences . I can talk to international students but I ca n't talk to American people . I display about 20 picture postcards and photographs on the partitions . He remembered me and spoke to me . I exchanged contact information with him . On Sunday , I went to Changi village and beach which are near the Changi airport . and the Japanese army easily marched to the present borderline between Malaysia and Singapore . and its a bit boring , but there is a crack where you can enter the underworld . If you kill all the enemies in this zone , you enter the scar and then the garden , and finally you can enter the hero 's hall . There , everything is made of gold , and in the last part you can find three mesmer bosses called The Darkness . If you can kill them , they give you two green staffs . Each staff can be sold for approximately 5 thousand gold coins . I am not interested in alcohol that much . The book he wrote , `` The Last Lecture `` , really gave me And the process of pursuing Anyway , I am going to read a book now , but I hope that someone will interrupt it . And also there are a lot of other matters . . . . . My colleague is being transferred My colleague will be transfered this weekend . It is very unfortunate . I listen to beautiful music instead of his noise . Emailing with him is my trivial enjoyness . I want to ask you something : Which resources do you recommend me for learning English ? First diary . My friend can speak English very well . I want to take a bath in hot water tonight . The battle scene was so fantastic . Except that , it 's an exciting movie so I recommend it to you ! My mom 's enthusiasm toward Korean culture is worth to be respected . I had been using an iPod and iTunes so I was little familiar with the products by Apple . For example , I listened to BBC and CNN podcast . I connected the hose to the faucet , dragged it till out of the fence and I tried . But very little water could be poured on the roof . But I watered all around me , the block fence , the wall of my house and the ground . I felt even cooler than ever despite knowing the temperature might not go down so much . As for the cafe , as I mentioned , it was a very stylish and its dishes were reasonable and tasty . I had to make a presentation about accountings . So , I had to study accountings ! ! hi there I 'm a nativespeaker of spanish language but I 'm ok at english , anyone who like help me on my japanese study I will appreciated . thanks I have lived in Iran for six or seven years , so I can speak both Farsi and Dari . The two langauges are not very different , but sometime a person from Afghanistan ca n't understand a person from Iran Farsi is the language used by Iranian people and Dari is the language used by Afghan people . But Afghanistan does not have only one official language . Afghanistan have two official languages , the other language is Pashto . I must study English , Norwegien and math to be able to go to school in Norway . For this reason , it was difficult to give the survey . I 'm was informed today that I succeeded in the entrance examination to graduate school . Recently I have discovered that I start getting used to memorizing materials which have no relevance to my studies what - so - ever - this kind of behavioral pattern has baffled me for quite a while , since after I found myself flipping through pages from the nearest dictionary again . I guess back in the Freudian Era these self - descriptive symptoms could well end up being diagoised as `` hysterical . `` My roommate younger than me by 2 years . Sometimes we joke that she must thank that boy because he made her love books . Now , she has met another boy . and I feel nostalgic . I thought I had one too many drinks during the festival . - - Many tourist come there to see numerous fish . He met many students and changed their lives . I was trying to make my family 's version as well as it . The main reason is my indiscipline and frankly speaking , laziness . Please tell me about yourself , where are you from , what do you do , and how old are you ? I was surprised to hear his words . I drank an energy drink because I was tired . I was invigorated . because some people do n't have jobs to do . . I think they 'll give you good answers and you 'll resolve your Japanese problems . I found out that the old friend who had often caused some problems in class had become a store manager at food resturant . What made you come here ? So do you enjoy beautiful nature in good weather ? Because everything here is too expensive . Before July 1st , 2010 there were two different kinds of taxes . You are charged just 5 % when you buy food , books , clothing for children under 14 , medication , and goods for babies like diapers and milk . Many people say that BC government spent a large amount of money for the 2010 Vancouver Olympics so that everything except the minimum wage is going up . Your friends ? To build Olympic facilities and infrastructure , tens of trees were cut down and mountaintops were blasted . It was estimated over 85 units were affected , and this led to an increase in homelessness . But , I 'm provided ONLY FRIED FISH AND FRIED POTATO . [ ^ ^ ] This year , I want to enter the city marathon . For that , I have to do lots of exercise like running , swimming and stretching . I did n't write in my diary recently . A long time has passed since I wrote in my diary last . I have mailed out hundreds of CVs , but received few replies . My friends told me that it was snowing a little bit in He bei province yesterday . But I know it is impossible and I need to study here . My friends and my families told me the weather is getting colder and told me to wear clothes as much as possible . I need to find a new challenge for myself . Actually , my country is very close to japan . However , the transportation fee is really more expensive than from China to korea . Anyway , I wanna make Japanese friends . And I recommend you to book a hotel , and a bus or a train as soon as possible because a lot of people come to Nagaoka in the season . ( during this season ) After some time I took photographs of my flat to show my friend , who lives in another country . I want to be able to write sentences fluently in English as I can in Japanese . I serviced in the Korean military for 2 years . Many of Korea 's young people have to service in the Korean military . you have to obtain a permit from the Korean military departments . I am making tempura and soup . My teacher is younger than me and studies Japanese . Anyway , I found out teaching Japanese is more interesting than I expected . I believe that every ' first ' is very exciting ! He tells me that he is well , but the situation is not optimistic . However , our class won 3rd place in the end . I 've been to Canada and I was impressed with the stunning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more magnificent . I have a seminar at my job . The seminar required me to get a little sleep . At my office , the air conditioner is working much weaker than usual . Thanks for reading . Elves , dwarfs , magicians , trolls orcs , and others too . I mean elvish is such a cute language . Speaking of the elves , I really want to a jewelery like Arwen 's evenstar . And the other couple Faramir and Eowyn are so courageous and dignified . tomorrow l want to write down the china exchange rate but it 's difficult ! It was very beautiful , but it was very cold outside ! But my home has not started yet , because the weather just changed so rapidly these days . It was said that one of the thieves knew the language of the birds , and another could unlock any lock without a key . And there are lots of food the GERD patient ca n't eat such as chocalate , sweet food , milk , tomato , peppermint and of course wine and coffee . Anyway , I hope everyone is healthy and exercises more ( including myself ) ! ! I think it is very fun to make friends . Of course I analyse myself at first . For this reason I like to read , listen to songs , but I prefer singing , and watching films about outstanding people . . . At the dinner , I ate miso soup . I like miso soup . I 'm Japanese you know . But the soup was still very , very hot . But I 'll keep eating miso soup tomorrow , and the day after tomorrow . you know , I like miso soup . In ancient times a bad dragon lived in Japan . theater . I think that there is always time to talk to your friend if you want to . Maybe cats in those cafes are happier than those do n't have their homes because Neko cafe 's cats are fed only by playing with us human beings . I wanted to improve my running because I 'm not good at running . Hence , I could improve my running . Last week , I read the book `` la sombra del viento `` by Carles Luiz Zafon translated to Japanese . This novel has a taste of mystery , horror , romance , suspense , etc . And also , I caught a cold from him . He said my pupils were already there . Energy saving lamps are our factory 's product . I went to an Anpanman movie at the cinema with my oldest daughter today . When we entered the gate , we got an Anpanman doll made of plastic . It can project an image of Anpanman with a push of a button . In case I forget it again , I 'll write the password down here . . . Athletics meeting in my daughter 's kindergarten . Yesterday , there was an athletics meeting in the kindergarten that my daughter attends . The weather forecast said it would be rainy , but yesterday it was fine day . The class that my daughter is in , called the ' Duck ' team did n't win , but my daughter and all the other children of her kindergarten and their parents ran around looks happy . Next year , both my daughter and my son will attend kindergarten too . I 'll invite my parents to the athletic meeting . I saw this site in my favorite magazine , I was angry because I started work at 7 am today . I wanted to do something unforgettable to express my appreciate to them . On Christmas morning , my father entered my room and said to me , But when I was doing an internship , I thought that it would be too difficult for me to teach something other than biology to students . Do you do skype or facebook ? Today , March 10th , is the day when candidates can know whether or not they pass the entrance exam of national universities in Japan . I have a girlfriend and I love her , but I ` m so embarrassed that I have not yet told her so ^ ^ . We go to the same private university ( University of Keio in Tokyo ) and we belong to the same class . But she also studied to pass the entrance exam of the University of Kyoto ! I ` m sad because I could ` t meet her if she passes the exam ( Kyoto is far from Tokyo ) , while I support her and believe she will be a success . I am 32 years old and I like my current job , I work for a company , a big company , and I feel confortable and I have a decent salary . Now I think she is the most beautiful girl that I know . Since that day I am always thinking about her . That day I waited for 30 minutes in the restaurant when she had appeared in her red skirt . . . . The topic is staying healthy , we have to write some points on the note card and say it in front of classmates in three minutes . here 's my whole speech Also , I am a meat lover , I eat a lot of meat , especially steak , I love it very much . But now , I realize that I ca n't be like this anymore , I want become more healthier , so , I change my daily routine . In recent days , I talked with two foreigners who came from Japan and Malaysia . Moreover , we have invented an interesting way to interact : I listen to what the one says in Japanese , and translate it into Malasysian with the Taiwanese man . If you know a book which you think is the best , please tell me . First , we had a dinner at Coco No1 , the chain curry restaurant . In the restaurant , as we were talking , he told me to search useful websites . website I 've ever known . `` So , I joined Lang - 8 . But I really want to go abro `` a `` d to expand `` my `` horizons . Because yesterday , I slept all day long since I had cold , I didn ` t feel drowsy last night . If you read a book about a foreign country you have never been to , you can experience the atmosphere and culture there without visiting . Yesterday , a very aggressive woman visited me . I said that other girls had packed those vegetables , not me ( which was true ! ) But she screamed : `` I can show you ! ! ! `` Then she took five packets of carrots and threw them at me ! So I was shocked and stood there not saying anything . Diary ( 20 . Mar . 2011 ) I went shopping yesterday . The weather was not good , so I felt more tired afterwards . [ past tense ] For example , leaning ON the railing , leaning OVER the desk ? ? ? b ) Boxes are cluttered on the road . com person replied to them and they sometimes apologized for the inconviences . Today , I went to Rikkyo University , and I got a student card . The atmosphere is really strange among all of us . . . Are we still friends ? Although some infrastructures have been congested , even in Tokyo & Yokohama area , Well , that 's all . Our group consisted of 3 families including mine . I want to learn English because my dream is to visit many countries all over the world . It 's the motherland of my granddad and simply a wonderful place . My teacher ` s pronunciation was clear , but the cd was hard to understand . I thought that I really wanted to make artificial intelligence as a result of this experience . Why are people 's feelings so complicated ? Other researchers have proposed to detect the tumor 's movement from the diaphragm 's movement . I studied Spanish for two years about 5 years ago . or should I concentrate on only one language until I master it ( or at least be in the intermediate - level ) then start with the other one ? A goal is more real than an idea , and has considerably more chances to be realized . Incidentally , Robbie Wiliams , who had left Take That , has rejoined after fifteen years of separation and has made their new album , cooperating with the others . And for the 3 years I ` ve studied French . I love comedies like Two & A Half Men , The Big Bang Theory and The IT Crowd , etc . Luckily , it 's really good to have nice weather . It 's the best weather this year and It 's good for running a marathon . I did n't have any particular reason for attending the marathon . I was always concentrating on keeping up my pace and not slowing down during the race . I managed to finish it , but I could barely walk normally after that . Anyway I should exercise regularly . . . . . I love sleeping ^ - ^ I want to go to a different country dive in a different sea . I want to go snowboarding if I obtain it . Unitl this year , I have been working in ShangHai and have not been back to my hometown . They will see the full bloom cherry blossoms for the first time . now I have gotten back to my place , im gon na cook dinner for my boyfriend : ) : ) what im gon na cook ? It is exciting , fantastic , amazing and hopeful . He and I belonged to same club in university and have known each other for about 9 years . I don ` t have anything to write here . . . First of all , this subject reminds me of something very cruel , which is the passing of time that we , all mankind , have to face . When I was in first grade , I was selected to be in the Christian class due to some kind of mistake , even though I am Buddhist . I was the only Buddhist student in that class , so I felt a little nervous at the beginning of the semester , but everything went just fine . I know the reason why I could n't control myself these days . Every day we see beautiful , modern and fast trains passing through the village . Let 's just have fun while studying . We went to Yale University first . When we arrived at Yale University , we all felt very excited and shocked . Their music has also become a part of our lives , especially when we live abroad . This small painting work does not only pose a cost problem but it also could n't be accepted by the factory . My university is famous for teaching international students Chinese . I was translating an English e - mail for my boss the other day . After their explanation of the situation , they inserted a phrase `` A Guy . `` with an capitalized `` g `` . My way of learning nowadays . Earthquake happened in Chile the day before yesterday . I felt at ease but I am worried about the people who live in Chile . It truly made me surprised ! They supply products at very low prices without losing quality . But I have gotten to the idea that it 's fully enough in quality and looks at this moment . I bought a magazine , Non - no . Non - no is popular magazine about fashion in Japan . But a few minutes ago , I received a call . Today will be a business day . But , today is the weekend . I 'm really looking forward to this weekend . Maybe she 's a model or celebrity in Tokyo . Now its hard for me to lean the work but the work is smiler to another job I had worked which was in a pub in Japan , so I think that I remember it soon ! I decided to clean up and discard some clothes I do n't need . I always make a lunch box for my husband . Yesterday I made it as usual , though he did not need it because he had a health check at the company . During that time , there was no PC in my house and I did n't have a cellular phone . The magazine has plenty of information ( features stories ) about events in Tokyo that week . Today , people get information ( over the Internet ) on the web or mobile phones . Cheerfully ! But I have received nothing . I 'd love to help people who is studying Japanese . Usually the doughnuts cost around 110 yen each . May Day holiday passed very quickly . But fortunately , three legal holidays are added , tomb - sweeping day , dragon boat festival and mid - autumn festival . Astrology predicts that Pisces ' dreams will come true , and I await . And we went to a sushi restaurant together ! My iPod is broken * becauseI accidentally washed it today . I should had checked the pockets ! But , these thoughts make me feel pressed so that 's why I think I have done nothing recently . Japanese Sake is not wine , you should drink it when it is freshly made . . It was a lucky day that I saw beautiful sunset . I was volunteering as an interpreter and supported them . 7 people with their families are participated . But when I went to church , I could n't find to somebody who has talked with me before . Wife : Dunno . `` He really wrote 30 songs a day . I looked at him only for 10 seconds , but I still remember that he wore a suit and he looked very tired . Somehow I unconsciously took the envelope from him . I also remember , the train seemed to jump and swing a little bit due to his body . Mark Zuckerberg would become the youngest billionaire in the world . It is estimated that Facebook has over 500 million members now . The two young men had different points of view about Facebook 's history . . . . Did you know that Takahashi Daisuke won a bronze medal in the Olympics ! ? We have good news and bad news almost everyday but I wish we had only good news like about Takahashi winning the bronze medal ! ! My friend and I met up at the movie theater at 8 : 00 . I think this movie encouraged people to think about real things in wonderland . Although the sales staff was so enthusiastic , the course was absolutely I think whether I can learn something or not depends on how eagerly Cafe Party My friends held a Cafe party today . This is my first time using English to write a diary . I think it probably l would really appreciate it . I felt really happy when my former boss told me that I would move to Okinawa office , because the Okinawa office is quite popular among my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so we could go anywhere we wanted with my wife driving us . ( In those days , my drivers licence had expired because I forgot to renew ! ) . I did n't have time to go drinking with her before . I want to speak English well as if I were a native . In Japan , It 's called `` The Japan Series `` This year 's deciding match is between the Giants and the Lions . Because my printer broke . To study English & French , I I thought I would try this Lang - 8 site . Because I felt that the original novel was very interesting when I was read it . Last saturday I saw the movie , ' Lost in Translation ' . After seeing it I realized that Japan has many non - japanese people here , and that the country is becoming multicultural . I 'm looking forward to it ! It is true to studying languages consists of the letters , If you have done that yourself , share your experience , please . I have this book published in English . Recently I thought that I need to need understandEnglish . So I 'll be going abroad anytime , for find job in a foreign country , I want to be ready . I normally only have two cups a day so that I do n't drink so much coffee that it might cause bone loss . She had to go to Moscow urgently , but she could n't leave Silver on his own . Recently , my sister began a part - time job . Prosecutors have no right to say ' justice and honor ' anymore . But I 'm very proud that MBC is not afraid of unjust power . The Mayday event that the North & South Trade Union co - organized might be canclled . Besides that , I 'm putting on weight again . But when I try to write in English , my brain stops working . I did n't want to go back to Japan . I 've been studying English to go to Canada again . I am very anxious about whether I can complete the full distance . After 2days , my mother noticed her charmy . I praised him , and felt ashamed to sing . w Maybe my friend is just very talkative and she could finds a lot of interesting things from the usual things So I think it 's important to keep in touch like this ( now ) . I 'm learning German and strengthening my English now . It was there for a long time since I forgot that my pot was on the fire . Today was a wake and tomorrow is a funeral . I want to improve my English . Can you help me ? Thus on this day men gave sto their wives and mothers , and they accepted every request that their wives and mothers had . I 'm planning to get my hair cut after getting my exam results . In Japan children who are less than 15 years old can ` t offer their internal organs . What is more , people who doctors declare brain - dead even can ` t offer theirs either . I think that it is strange for Japanese patientsto go abroad for it , because us Japanese shouldn ` t rely on other countries . ' 1 ' is pronounced ' I ' , and ' 2 ' is pronounced ' hu ' in Japanese 's informal way to count . And I actually scored higher marks in the Chinese - - > English interpretation test ! I saw an interesting piece of news about lions . Another one was personified risks are perceived to be riskier , then anonymous risks . Well he 's not is he . Al Qaeda then . it seems to be riskier . I do n't think many people knew who the Taliban were , who Al Qaeda were , on how to pronounce it little bit later on . I bought some groceries , such as Vegemite , as souvenirs from Australia for my family . And this time , my father bought Japanese cakes in the shape of an aromatic citron . We work with a bad manager . Secondly , my friend told me that I looked older because of my glasses . Now , we have to elect the new superintendent for the dormitory . The voting day is next Friday . Rice wine has piquancy and a delectable flavor . It means I can watch TV in the bathtub with the cellphone ! XD I 've always thought that doing a puzzle is really boring and you must have a lot of patience with all those little pieces . At the same time , it reminds me of the game I played at kindergarten I woke up at five this morning . I am male and gay . I do n't know what I will do in the future . It is little far , but the doctor is famous and good at sport osteopath . I like Timberland 's shoes . : - ) But soon , my school is going to start and everything will get busy . Things went really badly , I mean really awful . so I started to freak out . I started with the first question , which was very ambiguous . I 'm struggling with them . So I will write a diary in English on Lang - 8 ! When I wondered where I could take my baby in the mall , I happened to find a pet shop which had a special campaign . First of all , I will try write daily . Althought , That taste and style is like , really similar to C . A . Many Japanese people participating in the GP finals is exciting and interesting for their fellow Japanese people ! She corrected my mistakes in some exercises , we read a book and I tried to speak about my holidays , but my attempts were without luck . = ( ( ( And now I 'm writing this post = ) These days , I 've been a bit busy so , I could n't update my blogs for a week : ( A lot went on : O School started and I was given homework than I 'd expected . XO I also started running in the morning , with my friend , for diet and health . The web registration for my exchange university did n't go well . . . Busan is a famous harbor city in Korea . Things I have thought about recently I could seldom find correct answers . It ` better for me to study Japanese history and basic matters in Japan for communicating with foreigners . I ` ve sometimes felt upset that foreigners know about Japanese culture more than I do . How can I improve my ability of memorization ? My co - worker invited me to go to see the movie `` Avatar `` as it released yesterday . My brother came to my house last week . Have I been familiar with early bird ( riser ) ? I can read in English , also I can understand speech on TV and in the films ( movies ) , but I still could n't write correctly and could not speak fluently . It is very fun to swim when it snows . Do Hemingway 's novels consist of easy words and sentences ? Are all of his novels full of easy words and sentences ? I decided to study English . I must meet someone who I can speak with . One day a gypsy stole a bag of corn and was thinking about how he could split it up so that he was not noticed . I am a member of ( the ? ) Tamura Jiro seminar and a member of ( the ? ) Uzaki Akihiko seminar . make friends I want to make friends with people allover the world , especially speaking English and Spainsh . And please type `` friends from lang - 8 `` thanks Am I really going abroad alone ? `` Of course it 's real . I used to hate writing something because I felt it was a hassle . Japanese students study English for a very long time , but only a few will need English in their future . I called a water pipe repair company and a repairman came to my clinic to fix it . Francis said something stupid about the slowness of the machine to break the ice and Rachel started to laugh . Nobody could n't understand they were in love . One year later , the very same day of their first date , they were engaged with a diamond ring as witness . I have go to El Camino College since Aug , 2nd . His dream is to be surgeon . She is fortyish . You know , I 'm cooking pancakes and I promise that I wo n't let you eat any ! `` So , although I was tired after my trip , I was really upset and frustrated with her `` lovely greeting `` . I will work at a local primary school in Bhutan . Because , to me , they are my really good friends . if my friends want to learn just click and join me . . ohh I should be thank my friend named Tyler who gave me more wonderful pics so I use his pic in my topic I ca n't understand the Russian language , therefore I amended the Russian person 's English translation . Parents are up in arms over plans to close the school . We ate hamburgers today . I 'm studying English I ate cream spaghetti with iced coffee . I was satisfied because it 's delicious . have no subtitles I think that the Sianam goverment should support the Humanitarian Aid Program . The second is the focus on medical treatments . For example , it is difficult to distribute the aid to people fairly , and there is no economic stimulus included . people may decide to study foreign languages for various reasons . People in certain businesses may have to deal directly or indirectly with foreign correspondences . Starting with writing some notes in lang - 8 . The last Tuesday , I tooka walk in Hyde Park because the weather was fine . because the weather was beautiful and I made friends with a classmate . It was very beautiful because it was just in full blossom . Because here there are not many cherry trees . We could learn the news and details of the tragedy immediately thanks to the Internet . They have become aware that they have to take action against the tyrannical authority of Mubarak . He is used to taking care of his interests , and his power as the president . I am asking , where are human rights , good conscience , and justice ? In addition , they want to reform the constitution , and they don ` t want Mubarak for another presidential term . I think that all these demands are very normal . These demands wo n't take a miracle to achieve . Millions of people are all over Egypt shouting their demands , but no one listens . I am very sad for the people who were killed , injured , or imprisoned just because they want reform in their country . Today is the eleventh day of my country ` s revolution . All the people are calling Mubarak to leave , but he refused claiming that he fears chaos if he leaves . ( five spaces ) I completely approve of the way you are teaching and that is why you 've convinced me that your offer is the best one of all possi ibilities . He said `` take some medicine ( anthelenintic ) . . . . . `` But I had not eaten . Here there are quality foreigners . Sometimes the foreigner friends help correct my English diaries . I am afraid that I will fail again . for example ' BP oil spill ' , ' Iraq and Endless Afghanistan War Today is one of the important anniversary for all of Americans , the Independence Day , it 's known by many people around the world . I think about that those are in their all of hearts . I know that those are called ' American Dreams ' . It 's why they all sacrifice the weak people of around the world for making their the huge happiest American Dream lives . and all of Americans because thay have another nice characteristic , American Spirit . The living room and dining room are beyond the kitchen . I stayed at home all day and watched TV . I play an English studying software called `` Eigoduk . `` But I usually take care of her because my son is too young to do it by himself . In the universe , time was born in just a few years . They eventually settled down on the earth without fear of danger . As time passed , they become dogs , mice , cockroaches and humans . Thank you for reading about our ' ( Fantasy ? ) world . ' Have you watched the movie Armaggeddon ? I think it 's really famous and I hope many people have watched it . I spent some time , and thought out an answer . Facing to the north , right is the direction of east , and left is the direction of west , Boy : Yeah , I am Christmas ~ Will you marry me ? I like playing computer games and watching TV and so on . Fortunately , it 's too cold and dry for cockroaches to live here in Hokkaido so I am relieved that I do n't see any cockroaches . However I did n't have a partner , so I practiced alone . My skills are not that great so I did n't have a chance to play others . I thought she was much older than me , because she has a low voice , but she was born just three months before me . Almost all Japanese clean up their house completely , decorate for new year style , write cards for new year 's greetings and so on . However , there are some big cities , which have more than 500 thousand people . Such cities are bigger than prefectures . When I drank green tea after taking a bath , I thought this is a real leeway of life . But I drink green tea , I sometimes wonder why I feel so . surprised that he used QQ . Us Chinese like using it , but I did n't know foreigners use it too . My umbrella snaped after being hit by gale force winds . so if the company does move to another place I must go to the main place and do a job with him every day . My secong idea is to stay at the same company but I dont think I will be able to read a book . and I do n't have the time to practice English . They only speak in English with occasional explanations in Spanish . But I think people who have beards do n't look good . ( although , on some people it 's cool , like Johny Depp ) Most of them are younger than us by 3 years so I could not help feeling the generation gap when I talked with them . Adapting to the new circumstances is always difficult and I 'm a little bit nervous How to learn new subjects ? They can grow organic vegetables of their own at their farms . In a passenger train there are carriages , and in trains used for transporting freight there are wagons , right ? I think happiness is decided by comparison . We visited an Asian goods shop . Recently , I 've been interested in Asian goods . I have a complete lack of EFFORT ! ! I 'm very healthy , but one point is not good . I do n't want to become a diabetic . Mourners are come to pay their respects to the person who has passed away . Rose hip , hibiscus , german camomile , orange peel , apple peel , black currant and grape were in it . I sometimes got angry but usually I love them . I have a runny nose very often ( kind of allergic ? ) and get tired easily . I was ill yesterday . Happy Valentine 's day Jamie Oliver Having a part time job at a small foreign restaurant was the begining of her love story . Most of the customers who came to the restaurant were foreigners . Lane just wanted to look into his eyes for so long . The Professional Japanese Language Teacher Training Seminar Its title was `` The One - to - One Japanese Lesson for Japanese Language Teachers `` . Lecturers included a famous teacher who is my senior , the president of a Japanese language school and myself . It 's easy to find out if you look at the entry calendars from last year . This year , I will write short diaries , for example , just a couple of sentences , and so on . That way it will be easy for me to keep a diary even every day . When the competition started , two strong men were fighting and there were some slamming sounds . I heard that it is good for learning English . I want to watch `` Heroes `` . I have n't written in this blog for a long time . I logged in to Lang - 8 for a long time . I was surprised and I felt very thankful . Because the teacher could not teach such things . One of my Singaporean friends taught me a way to delete it . And my Singaporean friend gave up and told me he is going to bed because it was already midnight . So , I could search for a way to delete it on a Japanese web site by useing the simple Japanese type method . How cheeky and stupid they are . He now able to speak various words ( For example , the name of animals ) and He does n't need a baby - car any more . The reason is that some kids had been watching me for a while . When we were talking about that I thought the time was running out fast . Now the vacation ( respite , diversion ) is over , and I must free myself from the games to focus my mind on more significant things . I went to Universal Studios on Sunday with my brother , my mother , my friend and my friend 's mother . To get to Universal Studios we took a train . First we rode a new attraction called Fantagi . It was a nice attraction . Universal Studios was very fun . I would like to go again . now ( no comma ) I am listening to music . cn . If you have something to share with me , tell me through it . But I don ` t really like to study . ; - ( Next February , I 'm going to take the entrance examination for Tokyo University . However , I 'm not good at English , so I joined Lang - 8 in order to develop my English writing ability . Can you guess what I answered to that ? It was n't very productive , but I watched an titled ' Hajime no ippo ( The First Step ) ' on youtube . I did n't subscribe to weekly comics , such as ' JUMP ' and ' MAGAZINE ' , at that time so I did n't know anything about the story - line . but it was canceled because of an idiot ! So , I bought Sheperd Pies at a shop and washed some lettuce and Nari , the dolphin , is one of a pod of about thirteen wild dolphins that attend a nightly hand feeding event at a resort on Morten island off Brisbane . The dolphin was spotted to have a very deep wound from a bite of a large shark on Friday , until Monday the animal had not emerged from Moreten bay at its nightly feed , and it was feared it may have been injured , but the twelve - year - old dolphin returned to its regular feeding spot on Monday night , and is transported by a boat to the sea world of the Australia 's gold coast , where he underwent the surgery and now is recovering . The dolphin is said to be coping quite well , and is expected to be back in the wild within forty to six weeks . I was using safari since I bought an Iphone . But I did n't use safari so I decided that I stop using safari and other Iphone functions except phone , e - mail and something that does n't use 3G . It was useful because I could visit places I have n't been to before . It was a pleasure to me because I 've never done that before . So I walk around Nara city near my house . I will go his restaurant again in the near future . Because my car 's color is black . I want to study English . sth ? ? ? ? like M . J . perhaps cause M . J . , so l listened the Beatles . Today is my first day on Lang - 8 ! Hooray ! And I hope it will be useful for me . I ate fried minced meat , egg roll , and sausage . After that , I went to my friend 's house and played a lot of games . 3 days ago , my aunt called me and she asked about working in her convenience store for 4 days . Starting foreign language education at a very early age is a good idea . The second reason is , if starting English at a very early age , they can know pleasure of communicating in English , not Japanese , and they can be excited about learning English . In these ways , I agree that starting foreign language education at a very early age is a good idea . So we split up . Today I 'm very happy , because this morning I bought a green screen for chroma keying in my shooting ! : ) It 's fantastic , you have to film against a green background and then in post production you can remove it and replace it with the background you 'd like . introductory Sino - Korean and lastly . . . Anybody who reads my diary will be happy . I will participate in full marathon convention for the first time in January next year . This morning I ran for 4km at 10 kilometers an hour . There are gold stars , big and small circles on a brilliant emerald green . But the dry flower is real . The ingredient is gel not nail polish . Gel is very wonderful ingredient . My emotion is influenced by the bad weather . world is enormous and the possibilities are endless . and new environment . as the saying goes , `` being young means no failure . `` I believe we I imagine that I coul n't know you because you had a big change . Emma Watson x People tree is the greatest collaboration ever ! I do n't think it 's funny , so please respect the victims . . I want to lose weight and buy it . It is pity that I can not reply to my friends . ratio among the developed countries . I feel happy to have free time without TV , cell phones , Yesterday , my wife and I went to the ob - gyn hospital to examine our baby I begin new days . I hope my friends are happy everyday ! It is not a reasonable price for me , but ths massage really effectively recharges my energy . However , many foot massage services advertise themselves as English oriented massage method or something . Please recommend my english name ! ! Plz recommend my English name ! ! I was surprised because I could n't catch what the speaker said . I was woken up by unusually bright sunlight this morning . Because , you know , a lot of power plants which are managed by Tokyo Electric Power Company or Tohoku Electric Power Company have stopped running since the earthquake . So the Japanese government has been calling out to people to save electricity . But some people are misunderstanding . I worry that people , especially old people , who do n't use air conditioning in very hot weather and ca n't stand the heat may get heatstroke . And this shop has a nice atmosphere , too . We visit Mizuki Shigeru road by a local train which has drawings of many hobgoblins characters . I am so busy that I usually forget about them . Actually , I deleted history on Windows Explorer , but I did not clear the document history . I was researching my other job , so I could n't write down today 's diary here . The photo was taken last year . I 'm looking forward to meeting him . However , the spa was very nice and lunch was also excellent : D ! I major in German . I want to speak English fluently . I totally recommend this shop . We have a school festival every autumn , it is a very big event . Today is an unlucky day ! In the morning , I hurried to get up , and ate sandwiches , which I had prepared last night . Then , I realized that I had forgotten my ticket and wallet . Especially women like to talk about other people . Finally , I decided to throw them ( all ) out except for the graduation certificate ( join to next sentence ) a nice language exchange partner As a result , the level of my English is declining . With continuing practicing , I believe I can speak English with foreign friends one day . Nevertheless many Koreans say that children have to live with their parents . And they can grow in having less stressed situations compared to children without parents . After get married many people want to live as a nuclear family . And they say that most parents should n't / ca n't insist on the right to criticize those who wo n't take care of their parents after getting married . The mood of the city was so interesting and new to me ! Night market is a special culture in Taiwan , and there are a lot of delicious food and traditional handicrafts . My listening skill is very weak , so I always got the lowest score in the listening score of the TOEFL . Tomorrow is a holiday , so I will answer the comments of previous I - diaries of mine . I 've made a big mistake , Two days ago there was one unidentified payment in my bank account . Althought it was good to solve the money puzzle , I have a new puzzle to solve . How did the first guy know about that unidentified payment I had in the first place ? It was the most memorable experience that I have had so far . Let me not be afraid . I have learned of multifarious historical events of cruelty , massacre or carnage which are aimed at wrong sovereignty . I always go to clinics , meet doctors and advertize to or inform them about my company 's medicine . However , sometimes I am appriciated by doctors for my support . In Madrid , it has been raining all the time and going outside was impossible . Sometimes I 'm confused and I do n't know a good sentence . They 're friendly , walking beside you , always lending an ear when you 're happy or upset . I want to buy shampoo and conditioner at half price . They are consumed quickly and used everyday , I 'm a 22 years old Japanese woman . I can see good points in others . I try to accumulate childcare experience because I want to be a good aupair for my future host family . We have a lot of time to study , but I waste a lot of it . I am very helpless and unhappy . This phrase has the same meaning and uses the same thing ( in this case screw ) in several countries . I corrected some diary written by Japanese learners . It is so interesting ! He sleeps in his hummock outside and jump into river to wash his body . In morning I received your present , how beautiful necklace , I think this gift is the best birthday gift ! Suddenly , I 'm a little bit frustrated about the situation because I ca n't respond to people immediately . In this first semester , I need to choose an area which connect to my next semester 's vacation placement , it is like an internship somewhere to do practical work . I chose `` Mental health `` this semester , this is a big challenge ! I have poor listening skills and my spoken language is also very poor . Maybe . `` Takht - e Jamshid `` or `` Persepolis `` was an ancient city and one of the capitals of `` Hakhamaneshian `` dynasty for many years . My hobbies are listening to music , watching TV , playing sports , and so on . But it was ok , I enjoyed it . We had a good time at the restaurant . I think it was reasonable . I met so many people from around the world . I could n't speak korean very well . By the weather forecast , it will rain tomorrow . And two typhoons will come close Japan . So , even if Japanese people can not speak both English and Mandarin , we can still communicate with them lol . I do n't know what the Koreans and Taiwanese think of Japanese people who are studying English in foreign countries . Lately I 've been going to Akibahara alot . I attended a meeting for those who are interested in finance and / or accounting . But , suddenly it started to rain . Aedile , I 'm afraid sharks vs . gorillas is too absurd even for the Colosseum . . . that has been a crowd - pleaser in the past , but it would be politically inexpedient considering the number of noble families that are converting to that faith . I had a trip to Aomori prefecture with nearby farmers at the end of last October . First of all , I went to the top of the Shimokita peninsula in Aomori prefecture , and I ate a delicious tuna at Ohmacho - town . Second , I had a good time to see the landscape of the Japan sea at the top of Turuga peninsula Because there 's no car at that area . This trip was too late for the season . She was really surprised knowing that . Sometimes I 'm too single - minded , so for example , if I decide to study English , I would think of nothing but English . I think it 's my mostserious weak point . I 'm acasual smoker , I would like to stop smoking . ( Singapore is anEnglish speaking country , soI think I should not say this . . . . Which is the best answer ? I wil introduce useful websites or tools for learning languages ( English , Chinese , Japanese , and so on ) . Let 's learn foreign languages more pleasantly and cheaply ! And the teachers said that it 's not a festival for you students in grade three in senior high school ! How hard they want us to work . If I write something in an impolite way , please tell me . I was asking if they would like to have some more ice tea , They feel my son fascinates me . Wow , Ukraine ! According to the article , in Belgium , there are four parties and they all have trouble with languages . In some parts of Belgium , people speak French , other people basically use Dutch , and a few people speak German as a common language . The prince and her father are not described in detail . Cinderella becomes a heroine just because she gets married to him . We all have read or watched this at least once in our lives and it is still read by a lot of people . Althought He had mistakes in his reserches , I think he lived a respectable life . We read an essay in which the writer said , `` An umbrella is a kind of a nuisance , `` or something . In 2009 , many scientific studies showed that the chocolate is very healthy , is rich in flavonoids , is good protection against the sun , improves the heart , decreases blood pressure , and it would even protect against cancer . `` Shiroi taiyaki `` is a kind of sweets popular in Japan this time of year . The meaning of `` Shiroi `` is white . We went to Yeouido to see `` The Fireworks Festival `` . What is correct ? After the big earthquake and accident at the nuclear energy plant , my company recommended that I work from home until we could confirm the safety level of the radiation . My Chinese friend made a big decision . This reminds me of diamonds and coal , both are composed of the chemical element `` carbon . `` but they are so different : diamonds are sparkling , expensive , clean , while coal is dark , cheap and dirty . The difference is in the base : the way molecules of carbon are bonded Coal can generate thermal energy , which helps to provide electricity . I was disappointed . You should say : Across the River Seine next to the museum , there is a very famous museum named the Louvre Museum . I do n't know the story 's details yet because this musical is their original story . I have never forgotten this memory . . . . I had never seen such a big cockroach . I got an invitation and have joined Lang - 8 since last year , but I have n't written anything or even looked at this site for a long time . Girls in my town are already enjoying wearing various beautiful In such an occasion , I am grateful for being a woman . It 's a funny movie ! But I found it a little vulgar . I was surprised to see a lot of sex scenes . This was my first ( only English ) speaking camp , so keeping this rule was little difficult for me , but I managed to live only speaking English . Most of the schedule was practice such as , discussion , listening , vocalization , reading , etc . In another activity , we had BBQ , played volleyball , and other interesting things . In closing , our group leader read a speech through tears . I had to decide on a section before I got off the bus . There are four sections in The UK ESS , parliamentary debate , academic debate , speech , and ISS . In the second semester , our main ESS activity is section , so I am looking forward to practicing academic debate . Then , he said , `` We Japanese do not insist so strongly like you . `` I have suffered from migraine since I left the office yesterday . I think that I am not used to have a nap yet , I decided to sleep a little sometimes . Any help / tips or comments would be greatly appreciated . After my sister and I grew up , we left our parents and started living independently . I 'm studying English now . is there anything else . . . ? If I go there again , I will go bankrupt . We picked a full bag of peaches and plums , and went happily back . Normally , the last week is special for everyone . I did n't know what happened . On the train there was an announcement saying , `` All passengers get off this train right now `` . On that day , we were taught about the Asuka era of Japan in English by foreign people . I went to the Toy Museum with a foreigner . It was very comfortable to see ! ! And I also entered level A though I have never won there . . . . Immunisation Requirements Immunisation Requirements vary from country to country . I will outline the immunisation requirements in Taiwan below : I have ridden in airplanes a couple of times , but I have never gone to the airport just see them . I hope one day I will speak English . . . . I did n't know an important truth till then . Today I learned about making traditional Brazilian alcohol `` Hey Kichibeido you remembe your promise ? That 's why I finished my work earlier than usual and came here , finally . Sometimes I want to be good student but it 's very hard . I heard my relatives said they have a firecracker show at the South Bank in Brisbane . But there might be no performance this year , because of the floods . Today , at English class , I was taught that `` modern world is one `` is an incorrect sentence . Do you have similar experience of this ? Also , cosmetics , fashion , magazines , movies make me excited . I enjoy learning English , I wish I can say it frequently . . . I am so happy , because I understood what the boys said , and I knew how to say what I wanted to ask . I would like to speak a lot of languages , too . If I could get one year sabbatical , where should I go ? I wrote many articles this year about topics such as an entrance ceremony , sports meet , open school , track meet , children 's sumo wresling meet , volunteer work , a school play , school excursion , school festival , aquathlon race ( swimming and running , ) and Beethoven 's Ninth Symphony concert in Kokugi - kan . Anyway , I Love English and I 'm an optimistic person , I 'm going to enjoy writing . Today , typhoon came to my city . He must practice chinese characters ( KANJI ) . This is my favourite program in the UK , because it is fun . The program invites different guests every week , such as singers , actors / actresses , comedians , cooks , athletes , etc When Lady Gaga was a guest , she was asked some unfavoured question , so she answered on the phone which she was wearing on her head . Now I am happy that I can understand English , because I can know foreign TV star 's characters . She told me of some places where she has found mulberry trees . I hope tomorrow is fine . The difference was , however , that he kept on going to his potty even while wearing his diaper . I will hardly visit and study , but I want to make many friends . When I found this site , I decided to post my journal everyday . When I said that her students seem to have been improving their Japanese a lot , she looked really happy to hear it . They often gave me the energy to teach . I will start to clean up things soon after I use them . I went inline skating at the Hadson River Park with my friend . I could do it anyways , but my friend could n't and held the bar the whole time . . . it was so cute : ) We could see the beautiful sunset . . . You know , if you are bitten by mosquito you have push and push the skin with your finger . PL fireworks festival is one of the biggest festivals in the world . When I was ranked , it 's on purpose . At that time , I uploaded 12 entries a day . This time , I uploaded 4 entries a day , and I did n't intend to be ranked . I ended up 4 entries when I uploaded ones which I wanted to write at that day . ( a bit unclear ) Kimono - a kind of Japanese tradional clothes - are made from Asa ( hemp ? ) or Kinu ( silk ) in general . Today , I have a presentation about Japanese weddings in my English class . Japanese tradditional traditional weddings are `` jinnzennsiki `` which are held in a shrine . However now this type of wedding is 20 % of the marriage ceremony in Japan . I think that many girls are attracted by a white dress ! A couple and guest is to be superstitious in a ceremony even now . If you are invited to a ceremony and a party , you need to give a couple some money for a celebrating present . Even number to spare number suggest that a couple is to be divided ! so I 'm going to introduce myself . And it enables us to enjoy taking a bath outside and to overlook the valley . Job hunting gave me pretty good opportunities to seriously think about how I want to live in the future . Maybe we have to pursue this answer indefinitely though . I am writing about my favorite thing today . My favorite rider is the Italian rider , Mr . They are both on the Italian team this season . Hida meat is very famous , but it 's very expensive . My favorite book . One time , when I was really interested in the English language , She had been reading books since she was young . Her parents do not take care of her and leave her alone at home . She is really different from other girls . When she goes to school her teacher is really surpised because she is much more clever than normal girls . That story gave me inspiration to study English . However , I want to try cooking roast chicken and I have to prepare party stuff and decorations . It 's seems a little bit complicated to me . It seemed to be a very nice day . . so I took a chance to ride my bike because it had been a long time since I used it . That 's how I caught a serious cold . . What kind of transportation do you usually use ? her colon and anus were demolished . she ca n't be pregnant and she has to have an artificial organ in her body . My husband has shoulder pain . I think , it is something that I can believe in , and it make me a kind of positive or happy . I am so depressed , I study English every day , and after finish class , I return home for continue to study English at home , but whatever I try it has no benefit . I memorize English vocabulary every day , but in the next day I will forget half of them , I feel so upset , I think my IQ is good , but my memory is not so good . . . . Can anyone tell me how to remember English words faster ? Thanks I was classified as intermediate level . When I came back to my house , I remembered the incident this morning . I want to know if foreigners color their hairs or not . the weather is beautiful . my roomate asked me to take care of her , I do n't wanna let her die in my hands . . . if so it would be a memorable experience in my Australian life . The way I expressed above may sound insensitive ( and I 'm afraid of doing so . ) , but in my case that makes me realise that I 'm lucky in such a peaceful society and makes me think about people not in the situation . He is making an effort to make their own paradise . He imagines when he comes back and sees the beautiful face of his lover , tears in her eyes , but she will smile happily , and she will still love him as passionately as in the beginning . Please help me correct my mistakes , Thank you so much ! ! ! Today my english ( and I know about this very well ) I commiting a lot of boob ; - ) I really like learn english words , but I have a BIG BIG REALLY BIG ; ) problem about grammar : ( Polish language is different , we have another grammar and sometimes ( ok , almost always ; - ) ) I speak / write incorrect ; ) I thought that was too expensive ! In addition , I learn Japanese in my spare time to enrich myself . Watch your manners when drinking with clients or your seniors . Do n't be their alcohol go below half a glass . Many people buy a lot of doughnuts . There are a lot of people who like doughnuts in my town . They both are down to earth and very genuine . More speaking , little action , and lacking an ending . I can barely finish all of the questions but not enough time to double - check . In the movie she played a police officer and one of the Miss United State candidates . If you know the best way to remember , please write your way in the comments . Tomorrow , it will be cold . Maybe I wo n't be able to forget her after this . My husband left his cellphone in my house I wondered . I could n't believe myself ! Yesterday when I watched the news I saw that over 1000 elementary and junior high school students in Fukushima changed their schools during summer vacation in order to avoid the radiation from nearby nuclear plants . Under now circumstances in Japan , we 've been sensitive about food ingredients . I 'm Japanese and live in Hiroshima , which is a very peaceful city . Today I finally finished my thesis and I will be graduating from school in maybe two weeks . My brother said to me that my grandmother was transfered to the emergency room for her brain surgery I will probably have muscle aches tomorrow . My allowence is far from being able to afford even the cheapest one . Soo today I write something in English . OK so today I also decided to first learn some Japanese words and then write somthing here , till then I will be using only English . I desperately searched for an Australian conversation partner , but three months were not long enough to master conversational level of English . He answered me , we introduced each other , and began to talk . At first , I thought it would be really difficult . I was afraid I might break my computer . However , he miraculously recovered and he is full of energy now : ) I got the form for it from the city and sent it back after filling in the information that they need . I thought it 'd be a very good place in this extreme hot summer , but it was too cold to stay long . As far as I 'm concerned , I 'm really vulnerable to the temptation of sleep , especially in the morning and afternoon . especially in my city , Kumamoto . It wo n't save you if you only drink coffee because vagetable ( vegetables ) and some other nutritional foods are important . This means that I am not able to use word , exel or any other software and systems well . I told them many times that I do n't know much about PC software . I am not good at english , but I will try to study . Recently , on the contrary , speaking English is getting a to be a little burden to me . The more I learn and know that I have to put what I really mean into the words , the more I 'm scared and concerned that I would give people a wrong or bad impression of me . I admit to say I 'm a little insecure , which I do n't like to be . It is quite difficult for me to understatnd slang . ( Oops , is this slang in the first place ? or are my studies lacking ? ) She is fascinates me though I do n't listen to pop music very much . At that time , my heart was beating so fast . Although the weather was not perfect to see the far view such as Mt . I am really nervous . In my student time , my writing test always get - My writing is just so disastrous that it discourages readers to read and correct . . . ( highly probable . ) Yesterday I went to Church in Higashi - nakano . My friend recommended it . It seemed like a good opportunity to get to know foreign culture through understanding Christianity although I 'm not Christian . There are many people who are native speakers who can speak English very fluently . Then , our company held a sports event the day before yesterday and I took part in many activities . First , enormous reading is regarded as a priority in the process of study . On one hand , rote learning is not really worthwhile . On the other hand , reciting on the base of understanding is definitely good . After a while , you will store up a large number ofarticles in brain . We will feel easy when we use English to express our views . It 's said that vegetables are good for your health , so I make sure I use vegetables . For today 's dinner , I made steamed rice with vegetables and meat mixed in , grilled mackerel , shrimp spring roll , fried chicken , boiled spinach , grilled pacific cod with white sauce and vegetable soup ( including garlic ) . Do you think we need to create a ' ' common language ' ' for people in the world ? The first day 's result was not successful . I could get up early , but I was n't able to do anything I had expected . I am a funny guy ! It 's the business language . . . . . Not only this , even though the school is an international school , there are so many Korean students and poor chance to speak in or listen to English . Children and fools always speak the truth . I finished my breakfast at six o ' clock ; then , sat on the sofa and spent some time watching UEFA . Yesterday I went to my friend 's birthday party at my American friend 's house . We also had a big ice cream cake and snacks . We also drank a lot of alcohol , especially the people whose birthday it was . By the time the party was almost over , a couple people passed out . If it keeps snowing through the evening I shall not find my house under the snowdrifts - this is Russian weather . Going back from work to my house , I was driving at a maximum speed of 40km per hour . If the snow was n't making it cold enough , the heating in the house has stopped working . Yesterday I had a fever of 38 degrees C . I do n't have enough information about finances . and we enjoyed a game and making friends with the members of the committee in my university . It is to organise ? ? the festival of university . Only suginami - ku ( one town of Tokyo ) was entered in Japan . Some people do n't like security check , but it In the end , you can board the airplane at the gate . They have your seat number in that experience and I have to take an airplane but I need to It 's kind of scary to meet someone who I have n't seen for a long time , but positively thinking , it 'll be a good opportunity to catch up on things we 've done ! Talking to my friends will helps me relax and get rid of the pressure and stress from my work ! I 've realized that grocery stores and the whole city are getting ready to be decorated for Christmas lately which makes me feel this year 's almost over ! Today I received a notebook which I ordered a day before yesterday . But I thought it 's dangerous to buy something expensive before seeing it directly . Now , I want to be a customer service agent in an airport . There is some grammar I ca n't remember . Hope I can successfully pass this examination . If you have any interest in the web site , you should n't wait , just ask me . I 'm a big fan of `` The Dark Knight `` and `` Memento `` and I like Ken Watanebe . Absentminded story Another example , I went to my room to fetch something , but I forgot what it was when I arrived . I could n't undersand the contents , so I was so bored and sleepy . we had been waiting for a long time to see the famous band , . we were n't sorry to have seen it because it made us very happy to listen to the music and dance . I went there early and I decided to go to my home before the music started because I wanted to check my diary and read a book . I have spent my time for preparing for a seminar . Behind the counter , there are machines which scan the bar code and say if you win or not . You can win a voucher for two euros , five euros , or a big surprise ( I do n't know what kind of surprise ) . During that time , I 've met a professor who was Mr . ( name of my last supervisor ) 's friend and he 'd introduced me . However my purpose is n't loving . I try to concentrate on what I should do now > _ < Lately I began to have doubts over the choice of my future job . I want to be a journalist . In my opinion , a journalist should write about what he knows very well or write about what nobody knows . I am not sure whether I will have good topics in the future , whether I will pass exams and enter the University , whether I will find a job in good a newspaper or a magazine . Although I have been learning english since I was 12 years old . Gradually , I realized that English is very important . These days I am interested in learning English . And my major was Japanese . And make friends who come from everywhere . I must make more effort ! ! According to his explanation , it seldom stops , but ( or and ) it is recovered by turning it on and off . Just think about the fuel rods , they could provide everyone in Tokyo with enough electricity every day . If they can pass the test , they will be given licenses . ( The salary of a career - changer is different . ) A HAPPY NEW YEAR Whathever , sometimes you just want to relax without thinking for a week about what the ending of the last movie you saw meant . I Regretted Eating 8 Pieces of Cookies So , I ate 8 pieces of cookies for dessert after dinner . After ate them , I regret eating too much . . . But the strawberry cookies was very delicious ! ! Anyway , why do the humans want sweet after exercising hard ? : ) I have n't tried out my lovely baby yet because of my damn busy job . We are crazy . I will have a holiday the day after tomorrow again . We ordered buta - tama ( pork and egg ) and takoyaki . If you see `` FRESHNESS BURGER `` , could you try one ? Earthquakes have happened since this morning , on and off . My dream is to go to an American school or university to study ! Driving test I am curious how difficult the written driving exam is in other countries . . First of all , I want to say that I do n't know very much about the relations between North and South Korea . I wish I could recover immediately . I hope I recover soon I like snow , but I sometimes hate it because it 's difficult to drive on roads covered by a lot of snow . I started using skype today , because we can speak in different world languages there . I am thinking of practicing speaking English . If you have skype account , please call me ! ! I like online games and Motorcycles . One - piece , Naruto , K - on ! ! , and Bleach are good anime . Fortunately , most of them find one of the best partners for spending the rest of their lives with peacefully without any complicated trouble , unlike some of the famous golf players . but after a few months problems started and my mom and grandma were fighting a lot verbally and sometimes physically . . . . . I registered on Lang - 8 today . I drink a glass of soymilk with two spoonfuls of the vinegar every day . I watched `` Valentine 's Day `` , which was started playing yesterday . A lot of foreigners were at the theater and laughed a lot . Last night I was watching Billy & Mandy , one of my favorite cartoons , and I saw that Grim , a character from the anime , was holding cute skull shaped cookies . But , unfortunately , God forsook us . To be continued . Soon , My son will be in a summer vacation . ITS URGENT , PLEASE , CORRECT THIS ONE ! Please ! I believe that life is a art and we can paint our life as we like , so no one is the same . And this is very helpful when I make something creative , such as cards or calligraphy . I have watched Friends many times . I like Ross best because he is so kind to his friends and he is so lovely when he is with Rachel . Until now this friend 's children were all boys . New Zealand is now winter and this morning was freezing . Normally I wake up around 7am and these days sunrise is after 7 : 30 , so every morning I have to wake up in the dark . Tonight I will go to bed early . Today is children 's day in Japan . Recently , I read the book titled ' Syabake ' . Luckly I woke up tonight . The population of Japan is decreasing now , but the business in Japan is doing poorly . I had some potato salad sandwiches , cherries , and iced coffee . Like other countries , children in Japan believe that Santa exists . Gon na work as a web creator after graduating ( only 2months left ! ) . They were the offensive side , and we were the defensive side . My advanced class students learned how to inquire at places like hotels , cultualcultural centers and infometion center information centres ; asking the price , the way to get there , what kind of facilities they have . . . But I could n't understand how to purl , until my granny showed me how to do this . Finally , I slipped it again and knitted some pairs of socks and gloves for my father and brother . I need the computer because I am studying English and Ihave todo myhomework . So , they are not eager to get married . so I ca n't read messages . I looked up several recipe websites to see if there are any other recipes to make with leftover turkey . But recently , it has become more difficult to communicate with China & Russia about territorial affairs / matters / problems . Have you heard what happened between Japan and China , and Russia . For our kid 's future , we must communicate constructively with logical thinking . I went to climbthe mountain , which is near my apartment , but the mountain is very short . If it is bad for my health , I will reduce the amount of coffee I drink . Recently I have been going to driving school . I want to go shopping and sightseeing and eat hamburger . I 'm relieved because no trouble has happened , as a result . In the first two days , I just took a break . I think it was not relaxing . A : What a strange factory ! All his dishes looked so yummy so the next day I went to the book shop and bought his cook book . She is going back to Ireland so I decided to make something for her . And as you may know , I am living in Eugene , Oregon - - a very rural area , so I ca n't get them easily . It costs 65 dollars . We slept only 3 hours each night . It was so regrettable because if we were n't nervous we could do better : ( I do n't know why I was so nervous . At first , it was an ordinary thing . But after I grew up , I felt that I had missed a great something , which was my father ` s affection . I realized that I did n't receive from my father except for his money . After my mother ` s death , I thought that my father would change for the better and play my mother 's role , but unfortunately he could n't do that . In spite of that , I love my father so much , but if I had had the capacity to choose my father , I would n't have chosen him . Do n't spend most of your time working , because you believe that your children need money . Of course they do , but be aware that they need love before anything else . It is when I am passing over the bridge that I see the almond moon over the sky . Dessert was too sweet for me though , but my sister said it was good . Yesterday , I got a new family who study Japanese and are going to stay at my house for 4 months . I think people become unaware of how important the things we care about are as we get older . Anyway I think this movie is not only for children but also for adults . It 's very exciting and entertaining and an heart - warming film . We had booked a room in the Hilton Hotel before we traveled there . I am good at receiving , so I am entrusted to be in libero position . So , I want you to correct my Journals or to send me any messages . Love sharply and deeply , although you can become hurt this is a unique way to live completely . I was going to buy running shoes , but what I actually bought was a DVD and so on . he will soon be able to stand by himself . There were a lot of ropes with different blocks ( polyspasts ) , funny mirrors , infrared cameras with displays , magnets , models of the ancient `` Perpetuum mobile `` ( of course they do n't work ) . I chaired the club meeting . My son actually chose it , but it was luscious and I was elated . I want to learn Korean , but I do n't know how to study it and which book can help me . . . Is it look like a black flower ? ? I 'm planning to get a driving license before long . abroad . . . . . . But I have trusted the Government . There were a lot of women . `` Zyoshiki `` means girls got together and talking about boyfriends , work , and life Enjoying happy `` girls only `` time . The medical center cooperated with many student restaurants and invited them to offer nutritious but delicious lunches . There were fruit sandwiches , Korean food ( without meat ) , spaghetti with vegetables and chicken , and so on . I had lots of chances to fly on airplanes around that time . The place of the story is Barcelona . ( Is this a right spelling ? ) So , I began to take Chinese herbal medicine . On Saturday , I 'm planning to go to my friend 's birthday party ! ! My hobbies are soccer and tennis , and I 'm interested in anime . I set it up ( It was a little difficult . ) and used it , but I was disappointed . It means I have to switch and link items when / every time I want to use the headset with other applications . I searched the internet and it says it takes you 1000 hours to understand what a native speaker is saying . I am a student and a scientist at school , so I spend a lot of time studying and doing research . But now , I got a breather to write an entry . Hot springs are also effective for curing a variety of diseases . What I find difficult is the pronunciation and writing in English , while I find it pretty easy to read and listen to English passages . One of them tried to catched the thrown ball from the QB , Rogers who was elected as a MVP player in the Super Bowl . We were glad watching in that moment . I will never forget at that moment , when everyone was smiling and embracing . It 's a special day for me Although I do n't have a lot of money and pretty girlfriend , I 've studied English for a long time ( actually I 'm also taking my major that is economics in English now , because of university policy . . . ) but still speaking and writing in English is kind of really difficult for me . This will be really honor for me , if you guys have confidence in using English to edit my diary correctly . Because of it , it felt too uncomfortable to rest in the afternoon . Today 's weather in Wu han is so great . It is sunny , so we can wash clothes in the dormitory . I never read them to the end . I would like to , but I am a crazy girl . I know it is really hard to do . Sometimes I feel lazy and sometimes I feel drowsy and would like to sleep . Hello everyone . I 'm practicing `` In too deep `` by Sum41 : ) However , unfortunately my son caught the ball someone pitched . My team 's parents were talking about the move with disappointment . I ca n't believe it ! Seinfeld is a comedy drama based on the real life of Mr . Sarah Jessica Parker and Matthew McConaughey appeared in this American romantic comedy movie . I have an English test tomorrow that I wanna ( want to ) pass . There are around 328 people dead . Last week , my classmate who is now a teacher told me that there are 2 classes that have been stopped due to H1 / N1 in her school . The most impressive car was TOYOTA FR - S concept . When painting a picture from your memory , simply close your eyes and think about the innocence of childhood or your first bittercrush . I think I have the responsebillity to remind you , my friends , to pay more attention to your health . Personly , I insist the fact that health is the first . I was excited and moved by the close match . but I was frightened by their high skill , technique , body strength , From today may 1st , 2009 , onwards , they have ' Sakura special ' , for example a Sakura scone . But they put the price up ! ! My company had an exhibition in a department store . I had to be a prompter girl there with a lot of show girls . I left home at 8 : 30 to go to Toronto , Canada . I am looking for people who can teach me English . Which sentence is correct ? ? ? ? ? I studied English at school for about 8 years . for a long time ~ or for a while or forever ~ Why don ` t scientists invent this machine , Some of our members ( unfortunately they could n't join the re - union ) have got married , had babies , and what 's more , one of them has already divorced ! ! If I have mistakes , correct itplease . For some years , Ididn ' tdo agood job and have many many troubles . Life is a journey . I just watched the movie called Avatar . You often see its advertisement on TV recently . These days , many students do n't like math to be difficult . Because it is hard to make the adjustment and there is few unorthodox fighter than orthodox fighter . I will be staying here for ten months . I think maybe I would understand why he had a two - faced attitude like L ' etranger . . . These day I am interested in learning English . Actually , I have graduated from university . You find more tourists than Japanese around here and can listen to languages other than Japanese , such as Chinese , Korean , and , needless to say , English . The access to the airport is easier than from Shinjuku or Shibuya . The atmosphere here is more down - to - earth . If your mood is in , you can have them on a boat with Tatami - mat watching skyscrapers , what 's more a strange object architecture on a famous companies roof , which seems to me a gold excrement . . . Although I 've studied English for 10 years , my English is really poor . I took a grammar test at school this morning . However , I heard that my level up test score sucks . To tell you the truth , I feel sorry for him , because he really looked sad . . . However , I think that street _ performers should be much better at juggling . Street _ performers are often bad at juggling , because they do n't need to be very good at juggling to surprise audiences . I was very hot but very happy ! I changed my job this Novmber to work at hospital . Humm I still do n't know what to write about , and I definitely need some help , because I never have time to practice my written English . . . I watched TV and made accessorries . But it was cold and their bodys shivered , and I did too . Next , I must learn what my bad side is and try to control it . Once there is something wrong with the electric ( electronic ? ) or programs ( programming ? ) , robots will become a good - for - nothing machine . Supposing everything would depend on robots , What would human beings be like ? Hello = ) Therefore , I can ' t sleep . . . This year there was also a street market where you could buy paintings , bracelets and other things , many people participated . Our baby will be born this February . I thought ' bout a barbershop Today I went to a barbershop . I took theTOEIC test last Sunday . I work Italian restaurant . Although , I do n't know how to use it . This is one of my favorite points of my English school . Usually there are 5 ~ 7 adults , including the teacher , and 4 ~ 6 babys . I started learning English in junior high school ( from 13 years old ) so I ca n't become bilingual . It was very delicious . Then I went to Jill 's cafe event with my friends ! Jill Stuart invited me to it . and he apologized to Jenny for for what he did to her that night . I went to the National Museum of Korea for seeing the history of Egypt . Today , I will attend a lecture by a financial expert I will think it over because the subjects that I choose are very important . I 'm feeling somewhat weird since we do n't have the summer time in Japan . So I sent a message to him `` When will you call me ? `` And he answered `` 5 : 30 I will meet you at Arsenal station , OK ? `` I went to the station , and I was wating for him , but he did n't come . After that he sent a message to me `` I 'm sorry . My friend had a problem . I decided not to promise anything more with him . When I was defense , I only striked . It rained heavily today . I heard on the TV weather forecast that a few days later , it 'll be hot again . Of course the camera was broken completely . I have studied American and British literature for about 3 years . Especially when you take two totally different language courses , it would drive you crazy . Every time she starts to choose students to anwser her questions , I always pray that she wo n't call on me again and again . I live in Kumamoto city , and Kumamoto city has a similar altitude to Los Angeles and Phoenix . I was presented to it by my host mother when I stayed with my host family in the north of England for the purpose of going to the special school as a foreign staff member . During the lessons , he is smiling in front of the mirror . Hugh Laurie , who most of us know as Dr . His position was offensive half , Midfielder . I 'm willing to correct essays / notebook entries writen in Korean on Lang - 8 . But after a period of training , I learned to operate it . That 's the reason that I have to say to all of you I 'm sure that I 'm a beginner both in English and using a PC . So now you maybe feel funny and laugh at many mistakes in the English sentences written by myself . I 'm disappointed how limited my vocabulary is . In total , we might as well wait the shuttle bus of Carrefour due to its convenience . but it 's okay . mystery is always be a thrill , right ? Our Institute congratulates yours on its 30th anniversary very much . Heavy rain ! ! It is hard for me to concentrate on studying . Because my friends made girl friends , except me ! Since I finished military service , many things have changed . From IT technology to people 's value . I could n't adapt to this new society very well . was on stage as a member of his band . I do want to play this music very slowly . My favorite pianist , Fredy Kempf , always play the pathetique mov . 2 very slowly . I do n't know which is the correct expression to say . That the copper `` gets reduced `` and the zinc `` gets oxidated `` . . . ? I am interested in learning English and hope to make friends from many countries . If you have a question about Korean food , education , culture etc , would you contact me ? As you know , the situation at the nuclear power plant in Fukushima plants is terrible . The company has a big luxury accommodation near the nuclear power plant . But the company has locked the doors of the rooms and forced the field workers to sleep in corridors with blankets . The Tokyo Electric Power Company said `` We will use the accommodation afterward so we do n't want field workers use them and get them dirty . `` Honestly speaking , I 'm a little nervous now . However , in response he gave me an wink with a funny face ! Then , the online teacher said `` What happened , Masami ? ? there are many classics which were writen by our ancestors There are many modern works too . chinse books . Playing the trumpet is very difficult because I must use my lip muscles around the mouth and breath adequately to keep correct pitch and rhythm . Now , our orchestra is preparing to perform the pieces , Brahms ' Symphony No . I teach her Japanese . She is really pleasant , cheerful and definitely different from sentences and grammar . Five people including me attended this meeting . It was a good opportunity to think about my career . I tried to walk to the hospital near my house , but I could n't . He can speak intermediate level Japanese , probably he can explain English grammar to me in Japanese . When I was in Sydney , I hired a damn cheeky Australian Japanese tutor . Oh , I 've drifted off topic . In short , we ca n't talk loudly in a library , so we ca n't practice speaking . Today I went to the stationery store and I bought a wonderful ecologic notebook and two drawing pencils . Actually , I 'm not the type of a girl who writes a diary entry everyday , but I think it 's a very interesting system . Hmm . . . what else should I write . . . yeah , I suck at writing anything even my own language . but I could n't do anything for them . Now , I really talk with people even if they are Japanese because of my busy work . One is to give encouragementin a positive sense . Today I applied for `` Kyoto Charity Fun Run `` and entered a group in the half - marathon . While we are reading mystery , we can pretend we are like Homes , and when reading adventure , we can jump from a cliff like Indy Jones ! ! ! I thought about something that I took a trip through whole Taiwan by bike last year . It was almost in such a season But I can learn about war through movies , newspapers and TV shows . he did not die fortunately . idk how to use Photoshop : ( Japan Soccer Go ! It is dry and pretty loud . . . However , the class lasts more than 50 minutes . For example , when I put any food in fridge [ refrigerator ] I must stamp date their labels . I calculated the amount of words I need to memorize to pass the test . If the husband dies earlier than the wife , the property was to be divided into quarters , and three quarters would go to the wife , and the rest to the brothers and sisters of the husband . They came to the decision that they would let the old couple to divorce , and divide the property within their lifetime . The problem of property inheritance used to be a rare event , but is common now . Shiga prefecture is in the Kansai area , where people were not damaged by the quake . I had to have a small camera with a long cord inserted into my stomach , which made me feel a little scared . After the examination , I consulted with my doctor and was shown a picture that depicted the inside of my stomach . I ate avocados few months ago . There are only 8 students and I 'm not one of them because our teacher choose them according his personal sympathy ( ( ( maybe it 's just simpler for him not to take or deal with girls . Moreover , I get up earlier than others , because I can study and work more efficiently in the early morning . I appreciate it very much . I was chatting with my friend , slept , and read books . But I had a very happy holiday . Last weekend , I went to a museum to see a Japanese painter 's 3D art . It 's so magical , you can see my magical painting in my photos . Today it 's raining : ( ( ( I do n't like rain ! ! ! ~ ~ ~ ~ ~ ~ ~ ~ When he went to Paris , he got into trouble at the airport , when his luggage was mistakenly sent to Africa . It was mysterious and magical . It is caused by refraction of moon light at a high altitude in fine ice . But everyone else wear Spring coats . Please take a second look at the label . . . This is an example of the difference of democracy between the US and Japan . Therefore I had decided to run at my fun - run pace . Luckily , it is easier for learners to learn the Chinese grammar point about subject verb agreement which often annoys the learners in some any language study such as English . I 'm sure I passed the oral , but in the other test , I had to write a composition ( no more than 180 words ) which was the 40 % of the total ( I wanted to write cost , but I 'm not sure if it 's alright , so what I put was . . . I felt nervous . Ca n't 2012 be really coming ? I hope it 's never be true I practiced listening and reading . my japanese is so poor that I ca n't read the dialogues fluently , even ca n't write a complete sentence . I begin to lose confidence . Today is raining . Talking with others is the most important part of learning a foreign language , so I 'll try to use it at various opportunities . Everybody has the chance to give others gift in some celebrations and anniversaries . ( anniversary ) My friend gave me a can of macadamia nuts as a soevenir from Hawaii . I 'm still in the phase to test one of the module to see if it works well . TT My family loves him very much , he is the most precious thing in my Now I 'm looking forward to the the Spring Festival , when Recently I started playing guitar . I am a beginner now , but I want to play `` There but for fortune `` by Joan Baez on the guiter in the future . It 's Japanese traditional culture . football and other kind of sports . `` Week of Sports `` is very interesting and fascinating . It has n't been a long time since the Japanese Prime Minister assumed . I think this is such embarrassing news for Japan . Although it rained off and on all the time , we began to walk while chatting . The teacher is Filipino . They are all friendly and patient . These things are enemies to learners . Although today 's weather forecast says [ no comma ] there is a 70 % chance of rain . . . . Although I have n't been abroad , If I get a high score on toefl , I believe I will get a chance to go anywhere . OR Have a chance ? I have had a toothache these past couple of days . Children of Immigrants I watched a TV program about children of immigrants a few days ago . The TV program showed that children of immigrants who had to go back to `` their mother countries `` have n't been paid attention to . It is made of Hida - beef that has been raised around the meat of cattle , And it has a good reputation . It is famous for the delicious food and its history of culture ( no need to write here ) . I 'll be back tomorrow or you can also visit our office to pick up your delivery in the afternoon . `` TomorryTomorrow I will go to work again . I would like to study abroad . I finished washing some glasses , and I was bringing it on a tray to the front counter through the tables , which most of them were filled by customers . If it 'd happened in Japan , I definitely would 've been forced to say `` I am sorry `` to the customers since it may have bothered them . yeah ! Then , in my house with family , I ' lleat cake , decorate a tree - - I hope for christmas snow ! Goodbye everyone I should sleep a little bit or I will fall asleep in the classroom . Foreigners in Taiwan can feel they 're welcome wherever they go . And the youth are full of creativity as well . It 's so easy to imagine that they 'll tell everything to classmates and their friends , although I do n't want anyone know . Althought I have learnt the Korean alphabets before , Let me tell you about our vacation in Croatia this July . But I can not go this Sunday because I have something to do aside from tennis . I bought and ate a croissant in this bakery . There 's little time when I can be satisfied with what I had done that day . Unless we were geniuses , it would be difficult to be content . Or even if we did as we scheduled , it would happen that we will forget certain amount until we get out of bed next day . It will make it easier for me to catch my mistakes . Today I was walking in the delivery ward I cooked Korean food . I 'll definitely write in my diary every day ~ . Beer gardens and about the 15th of August ! It is a paste of azuki beans and is very important for Japanese - style confectionery . the contest sponsor cut off all funding to the prizewinners . but I will work hard on the T - shirt design . Fortunately , I found a useful site of English grammar and I 'd like to study using that . Some people say they could n't do what they wanted to do because they were too busy doing what they had to do . Many ' to do ' s are opportunities to advance . The Giant Killer Catfish . From Hell . . . Strikes Back . Michail turned back and tried to run , but a huge barbel grabbed his leg , so he slipped on the mud and felt down . Then he went to a hospital in Nanjing to have his operation , the docotr cut half of his lungs . We donated money for him , but it did n't solve his problem . Three main characters unfamiliar each other were at the crash scene and each story was focused on their dramatic but tragic and melancholy fates . I was in a confusing situation Today , when I was waiting for the bus to get home , three people sat at the bench of the bus stop . They were speaking Cantonese . Both of them speak Cantonese so I think her explanation should of been better than mine . If senior people become more and more and less and less babies are born , the senior peoples ' life would get longer and nobody can take care of them . I can have a picnic with my family on a fine day . Seuss ! So I encouraged myself , I could get benefit from this experience . Its even popular to put fake eyelashes on their eyes . Actually , I 'm working for a beauty salon now . And , I like typhoon days . Typhoon days make me excited . I guess one of the answers to this question is , people and money from all over the world are coming to London because of the less - regulated market or something . The party was held at an Italian restaurant in Shiodome which is one of the most modern places in Tokyo . There were already Christmas lights up . Mozart said , I think , well . . , I SHOULD even though I 'm not sure how the security updates work . Because I 've ever played basketball and handball , initially I supposed it 's just an exercise and I 'm a little thin to engage in sport . While I was on Lang - 8 she asked me to open YouTube and look at Avril Lavigne . Now I 'm not comfortable with hot and spicy meals . . . I do n't know how to thank the person who corrects my English in Lang - 8 . Now , I want to make a lot of foreign friends , I want to talk about many things . My dogs let me know the snake came to my house . They were barking . I am social welfare worker . I help the poor , handicapped , and the elderly . If you 'd like to enjoy the long stretch of the countryside nearby , I recommend you to take a slower train at a nice comfortable speed where you still get to see the countryside rolling by . I noticed that I need to improve more on my English writing skill . I 've been to Hawaii before . I hope you are well , I am the graduate student from Tokyo University of Marine Science and Technology who guided you around Tokyo when you came to Japan , two years ago . I am e - mailing you because I have a favor to ask about the article you presented in Nature magazine in March 2008 . I guess this is the most important quality that I have written about . Hell , everybody . The staff explained that the chef used coal to roast it and it was on their recommended menu . I am a student . I am studying Japanese . Moreover a thoughtless act or remark can spoil a perfect relationship . lately I take a shower twice a day . Members of Twitter gather in the local area . I only talk about something concerning work or a greeting . I learned a lot of English words , grammar , and about the cultures of foreign countries . Usually , most Japanese companies close on accounting in March . I can spend the time reading about grammar . I 'm happy when I read books , sometimes I would like to sleep on the books . I try to drink water alot , that 's good and helps me have alot of oxygen I know I write oxygen wrong but I write from my heart . I enjoy . I 'm really confused about the passive voice I try to do excercises but I usaully have to open the anwers all the time . Today I did not read but I will be at home after I finish internet room . I bought fruit before I took the bus to go home . I eat on the bus alot I feel headache like I drink beer . I 've run out of water for my contact lenses . I must buy some today but I have a problem I forget to bring my wallet from the office so I do n't have any money . I am not worried at the moment I have a card for the ATM , I can withdraw money using it . But unfortunately , as the island is not very popular for Japanese tourists I ca n't get enough basic information However , the weather in Pinsanulauk was really hot . Recently , what I 've been wanting is `` Rumba `` , a cleaning robot . It is so clever that it can automatically clean a room . And , the narration says `` Your job is grilling ( ? ) . Something happened to me that got me down . I get up every morning with the feeling that I 'm loser . He is intelligent and cool . Every first graders showed blow art . This movie stimulated me . In fact , I was studying Meteorology when I was about 20years old but before I knew it , I stopped being interested in it . So I usually cook my own meals . Today , I cooked Ramen for my dinner . Practicing English writing So , it is difficult for me to identify their reasons . I hope tomorrow is rainy day ^ ^ ; I had an English lesson that involves just answering questions . I had a nice time with kind and friendly people , saw so many awesome things , and I had fabulous food and a comfortable hotel . Actually I didn ` t know much about cambodian history so it was a good chance to study it and it 's especially sad past in the modern era . The travel was not only enjoyable but also extended my knowledge . But one thing that I really love about it is the appearance of the phone . And it 's good for women . Before the examination , I have n't had alcohol for a long time . But I have to get up ( and study ? ) to get a better score in the exam tomorrow . And I will go to a seminar about psychological education , I will eat sushi , I will meet my friends , and so on . I thought that there would be more than 3000 people . When we lined up at the start line , I was a little nervous . Although it 's made by Adidas , it 's a pity that it 's even worse than the last one . I need to improve my English writing skills , so I decided to write a diary or something on lang - 8 again . I wanted to learn Taichi so it was a nice experience . I have decided to do the following Taichi stretches every morning . I 'm going to do my best ! ! But it occurs to me that writing about my condition in Lang - 8 is also studying ! ! I remember that I also paid for my dates with my allowance . But in the USA , boys have to pay for everything , bus fare , movie fare , hamburger and coke . Unfortunately , it was a cloudy morning . I tried to take a photograph with my cell phone but nothing had been taken except the grey clouds . If you know and use it , please let me know what your recommendation recipe is . Japanese do n't have the sense / notion / idea of entertaining ourselves . If I wanted to ask the similar question , I would say `` What do you do when you are free ? `` In this site , beautiful women have the plate that shows the current time . The Japanese government has executed the plan of blackouts . It means the electricity is cut off at a regular time every day . So I found that electricity is one of the more important things for our daily lives . I made a big effort to learn , because this is so interesting for me more and more . I have never experienced this . I am still a university student and English is necessary to get high credits as well as graduate school . I really get stressed out now . Oh , I forgot to introduce a special spot . I quit my French course because I have become more confused about Spanish and French . If I do not stop them , the chatting gets worse and worse . The modern communication tools make our communication more convinient . For those people I can check their etiology one time , I would try my best to find a better therapy , and for those whom I don ` t know their etiology , I tell them that they need a general checkup . I also need to talk with the doctors and nurses on duty , and tell them what they should pay more attention . Daisy Duck in particular is good . The party finished very early because of a thunderstorm . I 'm going to run around my home tomorrow , weather permiting . I woke up at 7 : 00 . They knew that and said `` Go for it ! However , they are leaving Japan because their exchange program has finished . . . They are my good friends and I learned many things from them . I really love Aussie life ! and I 'm looking for a new job which is connected with English . Because , oil ( gasoline ) price is getting expensive recently . I have a daughter who is 1 year old . But a bicycle like that is not fashionable . Generally it 's all about using the opponent 's force to beat them : D This aspect is especially important for me , as I 'm only 155cm high and although I 'm quite strong , my strength is nothing in comparison to that of an average guy . The more the preys move , the more they get tangled up in the traps because it is as if every single thread of their web were made up of adhesive glue . I really wanted to go to a Italian restaurant `` MAX `` one more time , so we went there and ate black pasta with tomato sauce and meat roast and drank sparkling wine : ) Everything was sooo good . After dinner , We went to `` The View Lounge `` at Marriott Hotel . My school counselor Hannah told me that I should go to this lounge before going back to Japan . I think I need to build up my vocabulary to get a high score for TOEFL . They are humorous but sarcastic . I 'm so glad that three of my requests passed and that I received two messages from Lang - 8 . I grilled a big HOKKE in the kitchen . I searched and found out that it is called an Atka mackerel fish . Today , I talked a lot of things about my future with my aunt . People in Canada ussualy put their feet across a seat in the bus . FYI , the exchange rate of JPY / USD on January 15 , 2009 was TTB JPY88 . 25 , whereas today 's TTB rate is JPY99 . 67 at our bank . I made a dialogue using some idioms and vocabulary that I have learned today . I stowed my carry - on luggage , and asked a person in front of me to pull his seat up a little . One of my friends had shown me the ropes the other day , but I could n't remember . Most of them have excellent knowledge of their fields technically Native American jewelry I 've just learned about Native American jewelry . But , the jewelry of the Hopi is rarer than others . Recently , I am thinking about which language I can learn other than English . Also , I am thinking that after learning Spanish , the next requirement is for French or other languages . On the other hand , I am concerned about this fact because my English is poor . According to the experience of my friends , I should stay home ( or at a library ) studying and , I should not go anywhere else . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some comforting . My favourite area is finance and economics . My background is in mathematics However , now an economical crisis is happening all around the world ! On the ferry , there were many Korean tourists . I am sorry that I didn ` t write to you for such a long time . In addition , I do not know the reason why they started demo before the police shot a man . The man is Canadian . Yet , there are many things to do , so I ca n't afford the indulgence . Talking with people outside of Japan with different ethnic and cultural backgrounds is really invaluable experience for me ! ! Playing the harmonica does n't seem to be crazy difficult , and first of all it is not expensive . do n't If anyone does n't help me , I could post the journals I wrote here , in my blog , hehe . I really want to know the expression that I use makes sense . . My Pineapples But I did n't know a better answer . My hometown is more southerly than the town I currently live in . Now I am sitting on the lesson of Information technology , so I 'm writing the post in English . Today is an extremely hard day , we have exam and performance with school chore . I embroidered a lily and made a card with it . Inside , on the first floor , there were a lot of portraits of young beatiful women with flowers and a little tiny garden in the backyard with armchairs under some palms . I 'm not in the mood to do my chores . there 's a three days holiday waiting for me , I have to make some preparations for my trip to Chongqing . . . It 's a sci - fi about a psychiatric patient who My family name is Park and I live in Seoul . Long time no see XD But my English was poor , so I could n't understand the American voice actor 's accent . If you watch the Japanese version of this work , and if you can realize an Oosaka accent , I think you are already a competent Japanese speaker . He sells his watch in order to buy a comb for his wife 's hair , and she sells her hair intending to buy a chain for her husband 's watch . However , Serbian is written in the Cyrillic alphabet while Croatian is written in the Roman alphabet , because Serbian people belong to the Eastern Orthodox Church while Croatian people believe in Catholicism . I want to go to a beautiful spot . For example , if you bought goods at a shop you can get points , and you can use the accumulated points to pay for other goods . But my new office is in the city area , so I have to wear business suits . Today I bought a lot of things to wear , for example business suits , shoes , and so on . I guess I forgot to buy a new light . I am really worried about my parents . Oh my god , my grandma , who is 94 years old , lives in Aomori . I controlled my computer to watch a video from a long distance . I really hate hospitals . I do n't know what to write , but I think that is sad to `` meet `` people and you ca n't talk with them because you have different scheduls . The examination finished on October 16 , but my PC broke down two days before the examination . So , I got another PC and connected to the Internet for one week . I think that I 'll do my best tomorrow even though it is snowing all day . I am writing this English composition from my smart phone . In a sense , I think that is true . But in my case it is n't true . Tonight , we 'll talk a lot about incidents we experienced in 2009 . Yesterday ! ! I will be studying abroad in Alaska , US this August . My holiday For example , baseball , soccer and basketball etc . There is enough space to play them . Therefore , I can be relaxed whenever I go there . My friends worry about me being too busy , but to see children 's smiles makes me very cheerful Actually before starting this league , WBC ( World Baseball Classic ) was one of my favorite things to enjoy after finishing my routine work even though we , Korea lost against Japan in the final round . Moreover , my hometown , Busan , is famous for enthusiasm against baseball , especially the LOTTE GIANTS TEAM , which belongs to Park Ki - hyuk , LEE Dae - ho etc . How about we support them together ? I heard that it is important for women to make boiled potstickers fast . I was going to make a team but I could n't after all . I was sad and disappointed . And I do the others sports like badminton and volleyball every Wednesday . I think he is a very lovely cat . I hope to be friendly with you . Then to improve my writing skills , I will keep an English diary or write an essay in English on lang - 8 , expecting some corrections frommy friends . Actually the main pourpose of my shopping today was to get an electric fan which is small and stylish to place in the kitchen and the rest room of my apartment . I did call another shop to make sure they still had one , but they were sold out as well . It seems like everybody rushed to get electrical fans because many people use air conditoners less for the possible of power shortage in the upcoming summer . I know it 's a good phenomenon that people try to use more eco - frendly gadgets , Therefore , I was expecting the clerk to check my age , but the clerk did not do it at all , hahahaha ! ! ! ( Unneeded because it would cause repetition . ) Korea 's largest conglomerate ( we call them chaebol , which means big company run by a single family ) is Samsung . A few days ago , the third generation of the Lee family succeeded the management rights . The process was absolutely illegal . Although I do n't know wether I can get best By the way , I want to learn Japanese in my summer vacation . They use public transportations frequently . Therefore , the government should make public transportation much more convenient for the elderly ! Strange town . I 've got an email from my friend who went to Germany in February . Anyway , I think the global economy will not recover in the near future . the news source : URL In Japan , a woman filed a suit against the company which is a world famous brand , PRADA . It 's a forbidden way to sell things by the head office , so she informed PRADA Milano . I ca n't take you to PRADA Milano , because of your unsuitable looks . `` In Japan , power - harassment is not popular . If I was hit by a boss , It 's my fault . `` , so if one voices it 's strange or they should not hurt me , most people think `` He / she is selfish or has done something wrong enough to make the company angry . `` Usually , on Friday night . on my way home I will walk around downtown alone , and I feel relaxed and comfortable . : ) Sometimes I will go buy some pancakes or cookies for myself as a little present , and I share them with my family as well . . . : D Just by walking on the street and eating something sweet can make me feel happy and satisfied ! Because I have to take T and the bus when I go back In my personal opinion , setting an attainable goal which can be achieved through a series of steps is the most essential for keeping ( maintaining ) motivation . I conclude my diary here . I ` m a student and I can work only at nights . Especially since my favorite musicians are Americans , I enjoy listening to American music . However , even though I have studied English for a long time , my English speaking skill is n't good enough . I have studied English for ten years . I go to English conversation school every weekend . I belong to baseball club . The difference is whether I experience it inside or outside . From what I gather , the lumps often come to you not only immediately but also after you 've forget about it . And the likelihood of us inheriting footsteps of our parents is very high , which is very unrecognizable because of the closeness among kins . When A car had just departed from / left the building , it was hit by an taxi that / which was running on the road . I hope you can help not only correct my grammar mistakes but also develop my arguments . Since the quake happened , the Tokyo Disney Land has been closed in case of the planned outage and liquefaction . Still , in Japan many people are struggling with the damage from the quake and tsunami but meanwhile we are restoring our own country step by step . Of course I liked them all the same , but I started to gradually dislike the color , so I asked my husband to paint the shelf white . This morning After class I usually spend almost three hours in the cafe studying English with my friends whom I met at a previous class last month . I have been a basketball team leader of my college department for last two years , and at begining of this year I had a junior take the helm . Unfortunately , good things do n't last forever . I felt great about this movie : ) In particular , I really liked Asian Kung - Fu Generation 's song . That is one of the reasons I 'm learning English . In elementary school , we are taught to conform with people in our class . For example , when an athletic meet is held , we are forced to march like soldiers in north korea . Not just in school , but also amongst your friends , when we go to ' KARAOKE ' you must sing songs your friends know . In order for their economy to be safe , China really wants a `` Strong Dollar `` . . I entered the half race ( 21 . 0975km ) . Short Diary in School I belong to Society for the Digital Study , or a computer club . Oh , the class after school ( at this school ) will begin in a minute . I am going to watch the DVD of `` UGLY BETTY `` that I rented from TSUTAYA . TSUTAYA is a famous rental shop in Japan . Is studying English abroad good ? I think studying English abroad is good , but I do n't think it is suitable for me . If I were brave enough and had a lot of money , I might try to study English abroad . I would like to use English fluently in business . Unfortunately , I had a difficult hard time communicating with the telephone operator . Even now , the affected areas suffer from supply shortage . I 've been using my Kotatsu since the beginning of December . Basketball , Volleyball , Soft - ball , Tennis , Table Tennis , Softball , Soccer and Jump Rope . I played Basketball and Volleyball . I started playing dragon quest 9 which was released last week . Today I am still tired . I went to my friend 's birthday party on Friday night and only slept for 1 hour . Going out with friends is very fun and exciting , but too tiring . I was so tired that I was dozing at work [ on ] Monday and today . Due to the disaster at the Fukushima Dai - ichi nuclear ( power ) plant , almost all power plant activity in Japan has been suspended . Couple of months ago , I took a test called TOEIC , which is an English reading and listening test . When the score was annouced , I was surprised because I got 930 . I was really gratified and proud of my score . Education or practice is the best way to learn valuable skills . Nevertheless , people who works for various jobs are able to gain much more experience and skills than students . On the other hand , the education that people received normally is the fundamental and basic knowledge , and teachers do not teach their students techniques quite often . To sum up , by contrast , people obtain more skills or techniques in work than in education . In addition , those with many skills are more likely to match the demand of society . So I went to the barber this morning and dropped by the book store . He is a Japanese comedian . He has a good sense of humour . In this company , I dealt with modern art , contemporary art , decorative art , ceramics , jewelry and watches so I like them all . I 'm especially interested in contemporary art and jewelry . There was interesting campaign against hunt for cheetahs in Africa . English . My homework . Letter to the magazine `` Shout `` . Can you give advice to this girl ? Please , help me ! ) ) ) Sasha writes that she has some problems with her family . My advice to Sasha is : talk with your parents , do not be alone , find a hobby , study better and do not worry . I hope that Sasha will find common language with her family . I have a question about how to use the phrase `` like that `` . Coulda boom be coming ? I sometimes remember old songs . It is `` We shall overcome `` a famous as symbolic song about But I 'm learning English now so that I can understand people of various countries . The other is a `` Collective House . `` This literally means that mainly young poeple collect together and live together . For example , in the TV , the camera is focus ' on the ball only , and we ca n't focus on anything else like the goal keeper , soccer players , etc . It was interesting , but expensive . For example , we can get healthier body from physical exercise and improve our blood circulation . Playing basketball is good at improving the height of your body and improving our friendship . Apple 's new gizmo , the iPad ! ! Apple 's CEO , Steve jobs said that ipad will take the place of I had no choice but to use my left hand . Our product base will have a rail link by the end of this year then we can combine rail with sea transportation , providing more convenience with less cost . Enclosed are some photos of our products . Naturally , the color in the pictures is not the same as the true product . If you need to know more about our company or our products , do not be hesitate to let us know . I think it 's a strange dream . Lynn said ' You miss your mom and UGGa very much ' lol > _ < ! ! ! I am afraid of snakes , when I was a child , I always had weird dreams about snakes . Giant sushi But I think that there can be giant sushi in America , I always gaze at my PC screen , and I make a decision whether the application is similar to the past one . And I hope I will make friends with many people for international exchange : - ) very interesting . I guess that maybe I caught a cold . It has a strong tannin and peppery like taste . For example , you have been practicing catching insects for a long time and but however well catch insects in a forest , you wo n't be able to get them if it 's raining when you go there . In Japan there is n't much newinformation about Russia . I want to learn about foreign cultures by understanding foreign languages As a third year university student , recently I have been very busy ( ? ) writing thesis and other term papers , doing many assignments and sometimes research . Oh time flies , it is a school night and I have to get up early in the morning . It was so humid and hot in Japan this summer . Je m ' appelle Ryota Misawa . Unfortunately , I 'm still ill . . . how keep in balance both the preservation of the environment and economic growth . Yesterday , I was taken to a dim sum restaurant by my friend . My old neighbor died . I would like to improve my English skill , so if you find mistakes , please correct them . Correcting is difficult for me ! ! As the topic , can I use this sentence to describe a person who is trying to do something first or is the first to have done something ? this sentence is translated by chiness , I want to know if I can use this ? ? ? ? I 'm glad to be able to write again , and I hope I can write more frequently so I can continue learning and improving my English . I sometimes find it very difficult to correct Japanese on lang - 8er 's entries . I had to work yesterday too , but I 'm off today . Have you ever had to repair anything in your home ? But I was still missing the Korean ondol system . He is an internet engineer , needless to say he can speak both Mandarin and English fluently , and holds `` PR `` . 3 - A special lunch menu as a Vietnamese rice wrap . I ate / had it with two of my friends . I think that the foreigner 's prank is great . . . I feel happy that my idol Kim Hyun Joong is waiting for a za a za fighting Today I registered here , this a nice website . I would like to make new friends here and of course learn English . This is a very useful service . : ) Greetings to all of you . I want to be a juior high school or senior high school English teacher . But many areas are still awful . Food is the essence of life . As the saying goes , `` Variety is the spice of live , `` food bears the same meaning toward mankind . Rice can be made into innumerable dishes , such as fried rice , sticky rice , and rice cakes , to name just a few . Since food can be so varied and tasty , we must highlight the importance of savoring food , for I believe that our appetite dominates our lives . I will take three regular classes as usual American students do . I started this three minutes ago . My hobby is traveling ! I went to Canada two weeks ago . Everybody was scrambling to make use of him . Then , Shinji met his biological father , who had abandoned him The referees were volunteers . I last refereed one year ago . They taught me some expressions in English . I bought it in August , because I bought it early and I can got it cheaper . But , I wonder if it still makes sense in light of this huge natural disaster . For example , food may be too salty or too oily and spicy to look more tasty . Another reason is that most kitchens in restaurants and food stands are not very clean . Food that is made in the messy kitchens are prone to leading to sickness . If you eat lunch and dinner at home for a month , you can save about NT1800 a month , which is a great amount of money . What a vicious circle ! Because I 'm not a good English speaker . Usually , I do n't have any interest in this kind of group or music , but one day I happened to watch a TV show focusing on it and was fascinated . In this website I can make friends with different people from different country . I think that it causes a very positive effect . It had been raining , not snowing , when I got up yesterday morning . So I decided to go through the pass to go to Sapporo . It helped me to get rid of my fatigue from a long drive ! A large amount of this area is designated as a national park , therefore power companies can not obtain the right to use it . All of us were happy and anxious to see our teacher , because we have n't seen her for a long time . Sometimes I think I 'm afraid to be happy again , because in every relationship I have , nobody says ' I miss you ' . A number of people already died because of it . Recently , I always wear a mask when I get on the train , etc . In China , _ parents and grandparents will usually give a red envelope to their children . It 's a custom . This week is the first week after the New Year 's holiday , so my colleagues brought their souvenirs . The weather is not so bad . Many signs are written in both German and English . People at the ticket office spoke English . Some German words are very similar to English , which was also very helpful . We tried to persuade him to go with me . Omuraice is rice mixed with baked chicken and ketchup , and coverd by omelet . We are a little tired so we are taking a break right now . I woke up this morning with swollen eyes ! We are waiting for an answer now . I feel really happy becase I will not go the company tomorrow in the mornig but I plan go there late after I have finished reviwing so thing at Sanamhoug I am really happy . She teaches me like I pay money to her but we plan to study english and chinese together . She is really nice and practice to teach me Chinese wheather I plan to help her speak Thai very fast . because I really like that she speaks Thai with me so on Sunday we plan to watch a free movie together at Suvimvit 55 road . May joy and happiness fill every minute of my day ! ! ! So I need to learn about ad - tecnology and buisiness of using ad - tecnology . I 'm a big fan of Haruki Murakami : one of the most famous Japanese novelists , and my favourite novel is Norwegian wood . The point is that the children are very naive and naughty so it is hard for us to make everything go as we have planned . I like reading books which teach me how to deal with things in human life . Typhoons are produced by unknown reasons . Typhoons are Asia 's hurricanes . It is known that typhoons occur in the summer . But , Unfortunately , VOA continue to annouce tragedies in asia because of Typhoons . I do n't know why typhoons are happening these days . Kimchi sauce is made of many ingredients , such as clean powder of chili dried by the sun , fresh oyster , needle fish , garlic , mushrooms , and etc . Particularly , if you eat it with fresh oyster and kimchi , you will find it delicious ! But I ca n't communicate with foreigners due to my anxiety ( ? ? ) about grammar I know that I have to study with patience . I 'll be happy if you help me improve my weakness . It a story in another world like ancient China . I think it have been translated in Chinese and Korean . He could transform himself into a salad , but he must cut himself into many pieces ( to do so ) . Tomato did n't know how . I think that our society still does n't know the adequate [ distance from ] ( ? ) this new device . Dad , did you see my grandpa and grandma in heaven ? I also have to apply for the International award ( like a little scholarship ) I thought `` are you really from the spare key company ? `` Something to drink My name 's Irka and I 'll write here in English and German . Usually , Japanese people console by joining the funeral service wearing a black suit and also make an offering of money , This money is called a `` kouden `` ( a monetary offering to the departed soul ) , we give from 10000 to 30000 yen , and pray for the dead spirit and bow to their survivors . Even in Japan , if you do n't know when the funeral is , you ca n't send the `` kouden . `` But the day I was informed was only few days after the funeral service . I know that Western countries do n't have a custom such as `` kouden , `` however , it is quite an important custom in Japan , because Japanese people have this `` give and take `` philosophy at their root . I want to be strong and beat my brother ^ - ^ I 've been english for about two years now , and still Im not very good at speaking or even writing in this language . One thing that surprised me was that people on the Car1 got off at Suidobashi station . I saw he was almost bursting into tears . My Space Today and yesterday my school held a sports tournament / competition ~ I gave it a shot but did n't go to the finals ~ My health is never very good , so that I think I need to exercise more regularly ~ I decided to start running everyday beginning / starting next Monday . Jay Walker starts the talk by introducing manias . In January , I 'll go to the violin concert of Hirary Hahn , who is one of the prestigious violinists in America . I 've been debating whether I 'm going to choose a smartphone ( iPhone or something ) or a normal cellphone . I suddenly think , `` Do the other foreigners eat eels ? `` E - mail is useful because English people help me if my English is wrong , but if I send a message to English people who are not my friends , [ . . . ] I 've read lots of manga ( you could say I 'm sort of an `` otaku `` ) , for example : `` Bleach `` , `` Naruto `` , `` One Piece `` ( these are the most famous , I think everyone in the world knows them : ) ) . . . The second man in black was from Spain . I was nervous . Staring at the whiteboard for so long made my eyes hurt today . I 'm usually busy at work around the beginning of the month , but after then I will be free . We will go to sukiyaki restaurant - MK restaurant . I think it 's quite expensive because I can make this kind of food as good as they do , and the price will be lower 50 % than them . It is too difficult to be fluent in the absence of english language environment . I 'm trying to go to Australia this winter to work during the holidays . magazine . There was an article that says people sometimes will be My husband also has to go to the one place that we 've wished to avoid very much . fine temperature . But I work at a convenience store . My friends seemed to the same people I know when I was in elementary school . We talked about nostalgic stories and recent stories . Because I wil get my salary , and the good news is that my salary will be increased This race was a half marathon ( 21 . 0975km ) , and about 200 runners entered . Though I was feeling a bit fatigued , I managed to finish with a time of 1 : 19 ' 49 `` . One of my language exchange partner is feeling discouraged now . Well , now is time to go , 'cause it 's really late here and I have to wake up early in the morning tomorrow . nowadays I 've been watching `` desperate housewives `` The hottest temperature in my office was 34 degrees c these days . It scared me . I hope the peace and stability will be maintained . To achive that , I should study more grammar and increase my vocabulary . Recently I started a twitter . And since twitter is very easy and fast , I want to use this for those learning Korean ! Recently I have been confused with judging a noun to be countable or uncountable . My friends sometimes say `` Yeah , I understand what you are talking about , but . . . . `` . This picture is one of the fashionable hairstyles . I thought we would meet very often , but we could n't because her schedule did n't fit with mine , , I think it was helpful to go healthy again . I can not control my condition so it does not count to my decision . However , it is a very important point for me . In my opinion my first resolution for diet is opposed to the wish to be fit . Nuclear power stations are really good for the economy of some countries because it proves that those countries are very rich but it also creates some problems such as : health , safety , and environment threat . After the earquake and Tsunami happened in Japan . It will influence so much for Japan and neighbouring countries . I 'm looking forward to going there very much ! ! Although I have learned English grammar for six years in middle school and high school while in Japan , my conversation skill is still not enough . Right now , I `` m in the lab to assist the students who are learning Japanese . But so far , no one has come in here . Also I 'm scared of thunder and lightning so I always freak out like , `` Please no thunder and lightning ! ! ! Internship is an extracurricular class for students who are going to go abroad to work for a foreign country 's company for a month . I will go to a travel company and work there for a month . Next semester , there 'll be an English professional exam which is the only chance here and I do n't have much confidence that I 'll do well . According to the news , However , [ advanced ] laptop features and technical specifications are very attractive , even if the disadvantage [ of lower portability ] was considered . The clerk said they could n't take it back because the clothes had a weird smell . I have read a few blogs which say that olive oil makes vanilla ice cream more delicious . Because it cools your body down , you consume the calories in order to warm your body up again . Because it is used often in formal situations , I did hesitate to use it but I do n't know any other words . ) I am in social studies class . If your husband or boyfriend is very tall among others , they can protect you and make other females jealous . But , what a pity , I am not tall . I feel somewhat shy and unhappy when I am walking with or meeting some tall and handsome young men . Also , your salary is quite important in your marriage and living with your family and partners family . As a husband , you have to maintain your family and keep a harmony relationship with you and your partner 's relatives . so that they can understand your ability and respect you . Enough salary means enough capacity and status in company and society . So salary plays an important role when we seeking partners . Others will look down on you if you do n't have enough income . Others still think that a different education means different salary and status . Of course , all of these are just my personal opinions . because I played WakeBoarding every weekend . I live in my husband 's house . However , this time it seems to be fixed easily . But the computer crashed and showed the Blue Screen . My roommate , who is Japanese , let me know about this site . I 'm really happy to know this site and very pleased to post my ' useless ' diary lol I will take an English conversation class at the office . It will begin the thirteenth of October . Some people argue his behavior is too lofty and it harms Taiwanese dignity ; in fact , they think Taiwanese are not beggars and do not need hypocritical charity . Thinking always scares me , worrying about whether I can make it , what I should do if I fail . . . More or less , a real society is competitive even for children , and inescapable incidents hunt them down . But thanks to my husband 's parents , who are sending us a lot of in season vegetables , we can feel seasonable . And this time , I bought English books . But I 'll try to study hard . I love the characters Although the series mainly targets children , I came across an article in the CNN website last night which enumerated a number of useful sites specially for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm of learning foreign languages will be satisfied in this site , and also I 'll be zealous with people in need of my help . Yesterday was the elementary school festival , and I boiled 230 packets of udon . but I really have no choice , the delivery time is urgent . I 've seen the news yesterday and I was shocked about what happened in Australia ! I have been staying there for three days with my husband and son . 2011 comes in 39 days , but my New Year mood is already here . They ca n't get holidays or days off . What is difference between income and salary ? I am Korean and studying English for the entrance test for a university . But this night is so cool that it is comfortable to study . Photos of my country , Japan This bar sometimes hosts concerts . It is not really busy ; but I feel my job is very hard . I need to remember a lot of wine and juice names . Sometimes I can not understand what the customer wants if they say some strange wine names very quickly . I 'll prepare candies , a costume , and meals . Artists ' contributions or scientists ' contributions , which is more valuable ? The debate on whether artists ' contributions or scientists ' contributions are more valuable to society leads more and more people into fierce controversy . Admittedly , both of art and science are indispensable parts of our society , and the difference is just through the distinctive way each demonstrates its own contribution . The greatest invention of the light bulb has increasingly multiplied productivity , and an amazing technology , the internet , has made the earth become a little village , bringing tremendous benefits to billions of people . Music , film , and all kinds of programs provide people with a better living environment . They are related to each other . In conclusion , it is hard to compare the contributions of art and science . It is simply subjective to say that one contributes more to society than the other . I 'm looking forward to meet them . Then , I will be going to sleep I always have a long time to sleep every day I will be further on with my English then I had expected . ( It 's my first dairy in LANG - 8 , glad to meet you here , and thank you so much for correcting my mistakes . ) Because of the examination for university , I 'm learning English everyday . Recently , I am interested in European buildings and art . Because they are examination subjects . I have studied English in Vacouver for almost two months . I need to find a job here by the end of June because I want to improve my English , and also because I 'm poor . I love MINISTOP 's chocolate and vanilla mix ice cream . I belong to an amateur brass band . Tomorrow I go back to school here and I 'll introduce myself to my classmates , as is the tradition : I have been trying very hard to find a friend for copying Russian - English a long time . A lot of people were gathering and watching the ceremony . Those who seemed to be priests or monks were heading into the Cathedral across the Faculty of Filology of Salamanca University . It reminded me that Spain was a Catholic country . I 've stayed here in Spain for about a year but I had n't felt the people behaved on the basis of their Catholic doctrines . The day before yesterday , the president said `` Everyone speak English , For example , you can say ' Good morning ' in the morning meeting . `` I can talk in English to everybody . I finished my graduation thesis . I 'll prepare for oral exam about graduation thesis next week . Second , you have to develop muscle by excercising to burn fat . Do exercise regularly . Yesterday was the first time for her to dance on stage . In japan , most Japanese women working for night clubs are likely to hide their jobs however she did not . Yesterday was my birthday . Perhaps they are impressed by the deep - rooted loyalties to his teacher , but it seems like an effort that is made to nip the talented untouchable boy in the bud by the nobles . We are in a century in which we learn to do our best to achieve our dreams and fight for our happiness . An hour later , they were finally done ! I asked my daughters to play together with me , but they chose to go to a festival in the neighboring shopping arcade . That movie gives a message about ' What is the humanity ? ' I have been strugging to stay awake until now , but I should have slept earlier . However , business is more of compilcated field . My hobby is table tennis , I play it every Saturday . Christmas Eve Today is Christmas Eve ! She spend Christmas with us for the first time . Merry Christmas ! I walked for forty minutes . So , I started this site and I also bought a DVD called `` CORE Rythms `` . TheDVD itself was not funny , it was just a regular dance exercise video . I often see many visiters from foreign countries in my town , because there are alot of old Japanese Temples in my town . Of course , I visited MoMA when I was in NY this September . Especially my vocabulary is terrible . . . I 'm nervous because my English skills are not good . In fact , I am very nervous to write in English . I had a visit today from a friend , who wanted to go to the cinema . I often wear the one - piece dress . I 'm very confused because I do n't know what I should do . . . I did n't sleep for long enough , but I could n't sleep . Maybe I 'm afraid to stand up to them , or prehaps I lack the courage to say `` no `` to other people . Today , I was with some friends and I really enjoyed learning English as usual , laughing and having some snacks . That made us lough out loud since our class had a warm / comfortable atmosphere . Hi , I live in California now and still need to learn English to survive my daily life . Recently it often occured to me that the number of children that play outside is on the decline . Yet when I look back to a couple of decades of past , the change is enormous . I wonder if this socil milieu does n't jeopadize their physical and mental health . I will read English articles about football . He is 90 years old . I want to practice my spoken English , but I ca n't find someone to talk to . If anyone would like to help me , I would be very appreciative and I can teach Chinese back . The Japanese who are poor at communicating with foreigners We study English for eight years from Junior High School to Second Grade in university , yet even so most Japanese are poor at communicating with foreigners . When a traveller asks a Japanese [ person ] for directions in English , most of us would say `` I ca n't speak English `` , waving our hands right and left in front of our faces . I guess that the reasons why we poor at communicating with foreigners When we learned it , teachers put stress on grammar . During the Edo period ( 1603 - 1867 ) , Japan closed itself to other countries , so the Japanese had hardly any opportunities to commune with foreigners . When I grow up ( become 24 years old ) , I thought I would have a job , know almost everything about the world and have a majestic appearance . Hi everybody , this is Serena here , and I 'm from China . I 'm working in Singapore as a nurse . I usually talk to people in English at work . In order to improve my English , I need you guys ' help please . He is learning how to write medical translations between Japanese and English , and I am supporting him . When I was using `` Chrome `` , the same refreshing happened but it would save my writing , however `` IE8 `` does n't have any such intelligent functions . Many beautiful templates are included in it and I can use them easily . Keeping a dairy ( diary ) is very difficult in English . I have never kept a dairy ( diary ) in three days straight even in Japanese . What 's worse , I forgot things easily . the summer holiday is coming - how exciting ! Question : What kind of places are you interested in around Tokyo ? We should not forget March 11 . mmm , it 's difficult to explain . All the people do n't want to lose their family , friends or girlfriends . In this movie , the mayor loses half of his face because of a fire . If I have only two choices , one is I will die and save my lover 's life , the other is I will live instead of my lover . To tell the truth , this story was too difficult . especially because each sentence is very long . and ultimate substance . . I think and believe that brain - science can give a better answer than philosophy my friends and professors . Yesterday , when I was talking with my father about where we can go on holidays he told me that he was going to go to Eastern Siberia for work at the end of August and he could take me with him . I ca n't believe it . But it is n't certain . . . Our burner was out of order . I spend a lot of time drawing . I went for a drink with the volunteers and students of the Japanese conversation class . One of the volunteers drank too much , and tumbled to the floor . The party ended , but one of his colleague from the company and my wife and I waited until he could get up . Mother prepared lunch . So , I want to get to be able to speak English and demand from him much more salary ! ! According to the calendar , it 's Feb 19th . Recently I have n't been able to get along with my current boss . What should I do to reconcile and get along with him ? Why the autumn sky so high and beautiful ? In early autumn , the air is so clear , the temperature is comfortable : not too hot , not too cool . I feel like I want to go somewhere in the early autumn , to some distant place . There are high - rise condos , office buildings , TV stations , shopping malls , parks , wharfs , storehouses , and so on . I found that I made careless grammar and spelling mistakes . Please point out , if any , more subtle mistakes such as : You will always need a partner by your side . I have decided to start practicing English this week . He is a native English speaker , and the more he got excited , the faster he spoke . I have dreamed about it since I was in Cyprus this summer , where there were a lot of English guys . While I was working , somehow I felt very uptight and beaten and I started to eat excessive amounts of strongly - flavoured cheese cake . Although the cheese cake is my favourite dessert , my stomach I know some basic words and grammar . because japanese food is well - balanced and healthy . What I love to eat is mainly fish and vegetables , if there is soy sauce , japanese sake and a bit of suger and salt in the kitchen , you can enjoy a lot of japanese food . When I went to a supermarket last night to buy some frozen fishes , I was surprised that there was difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! Please feel free to check my sentences if you can . Customers do n't always pay attention so I got ta work hard to let them know how our Gyoza is tasty and they should n't miss out on eating it . My boss told me uncomfortably ' Do n't stop trying and keep smiling even if the customers do n't respond to you . `` I just hung out at my church with Korean friends to prepare for a Christmas performance . I respected the good habits of the American people . But I did n't cry a lot of in graduation ceremony . We are abroad right now , and we thought we should go out , but now we changed our mind for some reasons . ( ? ) So I finally got up after eleven . I will never forget his comment ! ! For me , writing in English is more difficult that reading it . Happy birthday especially European economics . I do n't do any sports now , but I belonged to boat club in my university , I was very surprised to hear the news ! ! It is very dangerous country . I went to work wearing new shoes Second , I have to grasp the secret of knowing the right timing to remark . Let me tell you what happened yesterday . `` No problem . The show lasted only a few minutes , because my boss was back so soon , so I had to stop the music and he had to stop dancing . Usually I read novels in english for study purposes . Whenever I write in English diary or essay , I think it is at the level of an elementary student . Sometimes , It 's hard . Now I want to see a penguin . Because I 've never seen one and the spot where we can see one is very near in Melbourne . It 's been getting warmer and warmer by the day as summer is coming . I think one of the most surprising thing is , the diversity of ethnic groups in Auckland . Anyway , I hope you can enjoy your last semester in Waseda and I 'm looking foward to hearing from you about your life in Japan . Today we watched the movie called `` Inconvenient Truth `` which is made by Al Gore . Surprisingly , it is more than 60 days . So , I sat in front of the keyboard and made ( composed ) two songs . My husband 's pay is in dollars . I always feel bad when I exchange dollars to yen . . . But sometimes it is difficult ! ! I ate breakfast at seven o ` clock . I played soccer with my friends in the park last Sunday . Next March , I will graduate University . I do n't have time until I graduate , I want to do many things ! ! It is important for Japanese history because there has never been a change of ruling party in Japan before . How many fish and chip shops are there in Britain ? When I speak English with my teacher , I feel so anxious and suffering . A teacher asks a range of questions and a student tries to give an answer as fast as possible . Every Saturday and Sunday , I usually have nothing I have to do . I washed the And he loves sunshine . He always goes out for walk for a while and just sleeps on the scooter of my neighbor . After suffering from the wounds and two surgeries , now if someone sits in front of him , he will climb on the legs and sleep on them , but do n't think it is nice , because he will also pee on you because he thinks that is comfortable , what a baby ! ! ! ! I think that all cities are beautiful because every city has different traditions , cultures , etc . the city of Prague , the city of London and especially the city of New York . Talking with my friends at the same time on Skype Medicines or medical supplies have sometimes different names among countries . It would be like a nightmare to not have a dream . Are they controversial ? I believe the world is wonderful and there are lots of things for me to discover . And of course I still surf every day like I did in Australia . ( ha ha ha ) It was very interesting . And I want to learn technical English , related to I . T . , too , because I need it for my work . There are IT - English courses at my company , but they are rare and quite expensive and all places are filled . I go to the work place that is for handicapped people . Working there from monday to thursday I was waiting today ! I ca n't wait anymore ! I love english ! ( but do not love waiting ) I like to be a salesman , because selling things is a challenge . But I wish I could have a real conversation . There is a typical collective dance in Catalonia : the sardana . It 's called `` Castells `` which means castles . And finally , the third one is a human castle made by the team La Jove de Sitges , from Sitges , the town where I live . I went to teach dance class today , and I played some songs of Alicia Keys 's album `` unplugged `` at my class . I do it , because I want to be in steady contact with English . Half of the screen has lines on it when lit and only the other half shows images . I love Cameron Diaz very much . It took us more than 40minutes by walk to get there from backpackers . If you get a good score on the tests , your entrance exam for University will be easier , maybe . If you believed in me If someone believes in you , you believe in the world . If you know a good way , please teach me . After eating two rice balls , I also studied . But now , there is no way I canstudy English quickly . Finally , I decided to lease an apartment close to school for my daughter . I liked Michael Jordan very much , of course . Pressure ( s ) about the path I was choosing , the career prospect and my future all in one word . I really appreciated that especially from my girlfriend . But recently Japanese woman work too . She seemed to be lazy while studying with me . My favorite soccer player is Steven George Gerrard . Moreover , we are expected to have a wide range of information not only to teach all subjects but also to help students broaden their world . This is my 10th entry . The hibiscus , one of my plants , had been showing a smll bud . ( for some days ) there were a lot of hibiscus with vivid red flowers everywhere on the island . odayI went shopping by bike and saw beautiful clouds . It 's been for about 5 days since I came to Vancouver . There were a lot of races in my school . However , I do n't have many friends ( right ) now , so I 'm a little nervous . But before I came here , I decided to be positive . If happiness and love are only of saturation of the neurons phenyl - ethylene `` . Will they keep me standing until I concede on some issue ? I want to say thanks to my Lang - 8 netfriends who have commented on my journals and helped me to improve my English . I have printed out all of my journals . I 'm grateful to my friends . Maintaining Balance These days , I am really curious how they deal with some problems between those roles . From nine to five , school work is really busy ( busier than ever ) , from five to eight ( thankfully not always ) I take graduate school classes , from eight to eleven ( sometimes from five ) I must listen to my son 's complaints , daughter 's singing , and her baby sister 's crying . I understand in this period of my life , it is really hard to live for myself , but it is a little sad to me . I am always busy , I should find a way to maintain balance between roles . I am studying Chinese and Hygiene for exam . It took thirty minutes to get to the English conversation school from my university . In the lesson , I could n't answer the teacher 's questions . I like to eat meat , vegetables , fish and so on . I think beef has more nutrition than vegetables . Therefore we should eat vegetables . So , I took a medicine and I stayed at home yesterday . The best memory in New Zealand was horse trekking in Rotorua . Please check the following sentence . Next week our family is planning on going camping in the forest . A man who is my ex - boss and colleague gave me a `` JOBA `` ; the true brand name is `` RODEO BOY2 `` . It is a kind of exercise machine which was once really popular in Japan . I ordered `` a `` new PC yesterday at the `` neighbourhood `` PC shop `` whose `` name is `` Dos Para `` . I have n't had many experience and I 'm not a kind of preson who is good at speaking in front of someone . Is it good or bad forlooking atinterviewer 's eye ? Flour contains water , proteins , carbohydrates , lipids , minerals ( inorganic substance ) , and vitamins . The elements of an amino acid are usually carbon , hydrogen , oxygen , nitrogen , and sulpher . Tuesday , March 29 When the earthquake happened I remembered her and I worried about her . I ca n't believe it because I take it for granted that Osechi should be handmade . Today is HALLOWEEN , I do n't know whether or not there is a party in my company . I do n't know much about this holiday , so I will wait for someone 's advice . Now , I 'm studying in Northeast China . I 'll be updating a lot of stuff since now . Please correct my English when its wrong , or improper , and feel free to talk and ask me anything , especially people who want to learn Japanese that are from other countries . After a three day vacation , I 'm back . But I feel really tired and have no energy to do anything . We talked long into the following morning . get back together - - - - > ( get back into a relationship ) that 's all . sex and the city is a really cool series , I really like it , especially because of the hot scenes in it , I think all men like it ! By the way , he is a very nice person , though he is shy sometimes . Imagine how delighted I was the moment I saw her email . I have to write an essay on Japanese education for foreign students , _ and I 'd like to know what ( all you ) Japanese learners really think . I plan to go to the KCC farmers market . I have two chihuahuas , Kai and Choco . Through I am a leader of my department , I feel that I lack confidence . For instance , when I deal with something difficult , I 'm usually filled with fear and nervousness . My mother ordered `` Tempura soba ( buckwheat noodle with tempura ) `` and I ordered `` Misonikomi and Sashimi ( Miso seasoned noodle and raw fish ) set menu . I went to home and looked for any mail but there was none as I expected . I think most Japanese who came here are good at listening and grammar , but their speaking skill is not good . I think that Japan faces a large problem now . I am concerned about domestic and internal problem . And one I failed last semester , I got a very bad score , so I will study that again . I enjoy watching cartoons , bye . Because as I said before , my section only has three men andso I want to make a good atmosphere . They will either go on a domestic or overseas trip . Some people will stay at home and play video games , or watch DVD movies . use My coffee just ranout and I kept forgetting to buy some more . Also , I am not a coffee addict . I could not keep my diary for a couple of days . Because being in school is very tough , I was busy studying . The reason may be that my journals are kind of boring and there are relatively few users who are native in English compared with Japanese users . . . . I told to somebody , but of course they did n't believe me . I am writing a diary entry for the first time . yesterday I went to an amusement park with my sister . it takes thirty minutes to get there using freeway . I left home at eight thirty for that but I had to pay twice the amount of money because we made a mistake in choosing the correct freeway exit . first we enjoyed riding attraction that are selected by Guinness book of world records . it is the most highest and fastest in the world . so we wanted to buy the photo but another person was saying . . . now my father is studying in Tokyo . I 'm new here . My name is Ian Lou . I am Chinese and I 'm now living in Canton . all that I learn about English at school is not quite suitable 4 daily use and social daily communication . so , I want u guys to help me 2 learn some native English , you know , something really English . As a result , I only took a 15 minute lesson today ( the usual lesson time is 25 min ) . parenting of their babies or adolescent sons or daughters and communication to give up working because of these circumstances . I should be more careful so as to not to scratch it when I drive . Cherry blossom time is coming soon in Japan . Also , if someone feels very tired or they have stress , they think smoking can help them solve their problem . essential oil . I searched the internet and I found Lang - 8 . The museum just finished from renovation and the planetarium became one of the biggest doom in the world , so I am looking forward seeing the No . 1 planetarium . I 'll write about them later in more detail . He is one of the best artists in the history of korean art . And he introduced western European art in Korea . And there are always many foreign people . I was shopping for 3 hours , but I could n't find my favorite clothes . The lizard 's face was very cute , I thought . I do not mean to sound arrogant but I often just believe in myself regardless of these perception discrepencies > < I went to Osaka station and bought a ticket soon after . That make me depressed and sad . If you buy our products with an accommodation service , you can get After that , I had scarcely gotten home when my friend and I took a car to mt . It is impossible . recently , I think have n't exercised much Sugar 15g Salt 5g 2 ; Add yeast plants and sugar to the bowl and mix with a fork . 3 ; Add strong - flour and salt , mix together for 30 seconds . I will understand grammar and be able to pass the 2nd - EIKEN exam . And also Japanese people tend to think that compassion and duty are very important in a society . My daugther will start going to junior high school from this Tuesday . I prepared her items for school with her . She wants to go school early because she wants to meet her friends . Anyways , It 's the truth that many kangarooes live in Australia . People Who can not pass the test will have difficulties in the next semester . and then I had a very delicious meal . When I met him about 5 years ago he said the same thing , so we wondered how he was earning money . I earned 7million yen once but lately I 'm always losing money . ' I make money regularly ( It may be chicken feed , I think ) , but ( 1 ) I 'll work as an English teacher starting next year . I joined Lang - 8 . After looking around the university , the student teacher bought us lunch . I am having fun while learning English again . I am following some tweets about learning English now but it is remitted by only PC , I feel . Anyway it is very convenient to learn foreign languages these days . I am not so smart but I want to thank those who have very special talents to develop our lifestyles . I do hope they manage to use their talents to make our world happy , comfortable and peaceful . I recently heard that a legendary band will come to my town . . . When I miss something for being happy it 's when I 'm in loneliness , it 's terrible because you feel sad and very negative . But the food and the parties at and after Christmas Eve are so delicious that I can easily forget the stress before . It 's a little bit extreme to eat soo much 3 times in 3 days , I know . . she did thus unconsciously , I like the story of ' Winnie the Pooh ' . When I was an elementary school student , I wanted to be a bookseller or an illustrator . But it is raining . However , I was half finished when it started raining . Today , I did n't get good scores on the math test which the teacher gave us The teacher decided to give us another chance on Wed . after I took off from the plane I went to the gate 27 , which is written on my flight ticket and started waiting for the transfer flight . What made me eager to learn was the accident in the Phillipines . Someone warned us to wear slippers in the sea , but mine just came off my feet . Would you ever try speed dating or going to a dating service ? * No I never try speed dating or going to a dating service . We did n't expect so many people to come . Before drinking my third bottle of beer , I could take some good photos calmly and with a smile on my face . When everything returned to normal I just said thanks to him , and picked up my Canon for more photos of hugs , kisses , farewell and confessions . My treasure ! England is a very beautiful country ! ! Furthermore , the problem in the USA is that the children take guns to their parents or their parents give guns to their children . Consequently if a child has a psychological problem the fact that he carries a gun is dangerous . For example , a boy may shoot his parents and his siblings . In addition , the second amendment in the USA states that the population can have guns , and that people can buy firearms at any time . To conclude , severe gun laws are not the solution to the problem of gun violence in the USA because the second amendment is that people can have guns . At that time there was a problem . The person taking my order could not recognize my pronunciation . I felt myself falling into darkness with disappointment . If there was a small hole , I would have hidden in it . Through this experience , I feel that I have to study English pronunciation more than what I have already done . We can get seven consecutive holidays in GW . Today , I cleaned my room . The desk and wardrobe and every corner are clean , so I am in a good mood . Today , I am going to go to the year - end party with ( my ) university teachers . That is the captal of China , and this is the captial of Xinjiang - - my hometown . On Samui we swam , walked around the island and tried to ride an ATV and an elephant . During several days in Krabi we visited some islands , tried snorkeling and kayaking , and fed wild monkeys from our hand ( fed wild monkeys by hand ) ( they are my second love after giraffes ) . That 's the reason I 'm able to learn it more effectively than English and I have more fun with it . I visited the ruins of Hagi castle and enjoyed watching carps ( Koi ) swimming in the pond surrounding the castle . The morning speech was about safety In my office , a mini meeting is held everyday . The chairman of this meeting changes every morning . A mini notebook which tell would be the next chairman goes round our section . 2 month ago , the safety speech was started by the chairman . The purpose of this speech is to make us more aware about safety . But many members get confused and worried on what to say . Japanese people do n't like free theme speeches . In this way , we have to think the speech for the specific topic . ( This would help us to improve our safety awareness . ) Ranging from acquaintance , knowing each other well to being kept apart ; just like the flowers ` sprout , it opens and withers . I came to this strange school , feeling enthusiastic in August , but now I stand at the end of September while keeping back the once boring sounds of the cicada . Pay attention to the lessons , ok ? `` , and I gave in to her . I thought I have forgotten her . `` No way . `` I continued sitting on the chair and listening to my music . I live in taipei now . Anyway , I hope the government will quickly change from conventional cedar to cedar of a new type that has a low amount of pollen . Some customers ordered customized drinks , but I could not take their orders because I did not know some of the beverage names . . . . In addition , I should improve my listening skills too ! Many people in the world visit my city throughout the year . for example next weekend If you have a dream to go to the chocolate factory , you try to buy it and see you there : ) The pickled turnip Leaves and cream cheese I had last dinner were really good , so I tried something similar , cream cheese on pickled eggplants and pickled Japanese radish leaves . Then , I cut Japanese radish leaves into bite sizes and pickled them too . I added chicken saute for some protein . owe : Modern Society owes convenient life to science . lend : I do n't like to lend money to people because sometimes it becomes a source of trouble . pour : Helen Keller understood the meaning of words when the water poured from her glass . I 'm writing my first diary . My first diary And another reason , might be my LAZINESS . magandang gabi po . Listening ? Writing ? Studying grammar ? I think nowadays there 're a lot of thieves around us so we should pay more attention ! I really want to go to America soon and study there . The small accident happened while I was driving , however it is something that nobody got hurt . The teacher told me some important things about life in there . I learned much about the school and know how to live well at here . I listened to a worker speak about job hunting . I think I have to set the aim and try to achieve the goal . Are sparklers only Japanese culture ? Ten divided by five equals two . Ten divided by three is three with one left over . Distance divided by speed equals time . Distance divided by time equals speed . There are many systems in our department . Believe it or not , there are about 40 ! I am hopeful that I will improve my E language with your help , and I will try my best to help those who are interested in learning the Arabic language . If you need to be polite , you can say `` watashi ha hashirimasu `` . Regardless of the subject of a sentence , you must not forget to add `` ha `` . If you have any questions , I 'm willing to answer you ! So it would be a tough situation . Today I was listening to the English conversation program on I - Pod , and teacher said that when the English native learn the pronunciation of ' Moshi moshi ' , they say ' Washing machine ' . Tomorrow we have a rehearsal for the sports day . If it rains tomorow , we have to postpone the rehearsal . He spoke so fast . . . > < However , even if he talked slower , I would not have fully understood because I do n't have enough knowledge of Christianity . When I was in Japan , they tried to persuade me to join Christianity so suddenly , I was little scared ( or startled ) . Perhaps most of them are Chinese vegetables . I tried to cook something like that even though I do n't know what kind of vegetables . Wash the vegetable well and cut . Watching my parents doing crazy things to continue working on music . and then EMI USA disappeared and turned into ? ? ? , something happened to the record company so it never went out . Brazilians , Mexicans , Spanish , Koreans , Germans , and Venezuelans . I realized that parents , friends and all people are really , really important in my life . My host mother gave me a T - shirt , a sweater and a muffler . It is a Japanese drama . When I went to Hawaii , I bought many shirts from Abercrombie & Fitch . Is that true ? ? Internet addiction I am addicted to the internet . I spend much time searching for information on the internet too . She and her family came to Japan for work 21 years ago and has now become a Japanese citizen by naturalization . I am very happy to encounter a good teacher , but I always feel like learning a foreign language in Japan is really difficult . Because I do n't have any chances to talk with foreigners , especially in the countryside like where I live . Today , I went to a customer 's office near my company , and the person in charge gave me an Omamori . It is my first day making an entry on lang - 8 . I did n't bring good camera , I only used my cellphone to shoot a picture . So that I spend spent half of my twenties travelling . As a result of the horrible situation from the March 11th Because of the earthquake in Tohoku district and the many victims of the earthquake and tsunami , some parks have asked people to refrain from hanami this year . So if my writing has some wrong sentence or word , please point it out . when I went to Australia for the first time without any basic information about there , they gave me lots of useful information for free . Especially , I was excited by the trumpeter 's solo ! ! If the battery does not have power to use , you can bite it with your teeth . When day would you prefer to start learning Thai ? That all the sentences that I have prepared for my student . If you know any polite sentences please recommend some to me ? By the way , my middle sister took me with her to her room but I ca n't sleep becasue I would like to write in my diary before I sleep . I received my TOEIC score today . Anyway , I think that nowadays . Is it better to speak a foreign language in perfect pronunciation ? I think that foreigners speaking Japanese in very good pronunciation but it 's natural to have slightly strange pronunciation . and I wish I could communicate with anyone in the world . Once it starts , one term has fourconsecutive days . And one class is seventy minutes , so it will take some effort to maintain my concentration . S . , China , Germany , Finland , etc . . . . Also , when I was reading the driver 's manual booklet , I found a hilarious practice question : The main reason is that the company did n't acknowledge the problems cars had with their brakes and accelerators and issue a recall until 2009 . I thought that Edmonton is a very flat place : ) and it is cold more than I expected it would be in Japan . Everything was delicious ! We had a wonderful time . my daugther was in good humor ! Spring break is going to end the day after tomorrow . I 'm not a person who enjoys to study , but am a person who goes out a lot with friends , so I would have to try to make myself a diligent person . Recently I have begun reading English books because I know my vocabulary is n't up to scratch . I have written my diary for the first time on this site . Tomorrow I will do simultaneous translation at the Wednesday bible study . This is my first translation in public ! xO I 'm sooooo nervous about it ! the nick name wasmade by aczech friend in sydney wholived with me . Now I live in eoul . She has alredy made roast turkey , pasta , roast potato , etc . Maybe this might be the happiest I have ever been . Saury is in season now . But actually , it is a old American car . Does the pronunciation of UK English have more emphasis on some vowel sounds ? Now I am trying to input my profile in the recruitment web site . my friend is in class now , I am waiting for her so we can go home together . I decided tologin here , but when I look lastest posts , I find that most of journals are written in English or Japanese . I just went to a university to get a graduation certificate and I was awarded a scholarship ! with cultural exchanges between a lot of countries . Therefore , I 'll keep on studying . I 'm not married yet and I have no younger sisters or brothers . I would like to get a tattoo of the Tiger or `` tora , `` not for fashion , I like it because it is considered by the Chinese to be one of the four sacred animal symbols , the North representing the autumn and control of the winds . Also strength , courage and long life . He will design the process , I want a tattoo that is only and exclusively mine , I hope it can be ready before next month . I am very happy because the moment he came into my life , he made my life complete . If the day I have to hate him comes , I will remember these days , how he treats me well , and how I feel so grateful . To top it all off , the lack of people and the cold breeze sort of threw in loneliness while I was running in the grim and low temperature . We had lunch , a dish made of rice and chicken called Yassa . Unlike me . . . . because I ca n't speak English . I also ca n't think immediately of what I should say . . . Though It is a little difficult to eat , it is good for our health . Some soldiers in the helicopter are running out from the helicopter 's back to fight or to get ready for a fight . The helicopter transported these soldiers here and will fly away . Safeco Field is like a beer garden ! LoL . She was cute and funny . This time , to our regret , the rumour was proven to be true . In other words , I am alive , because Korea could gain independence . I think it is one of the reasons why almost all Japaneses ca n't speak English well even though we have learned English for a long time when we were in school . First , when I started watching the video I wondered what he wanted to show . I 'm in a good mood today because my sister gave me a good answer ( reply ? ) on MSN yesterday . it helped me solve a problem . It is Sunday morning and I 'm going to meet some friends in the park . We should be have a lot of things to share with each other . see you again . . when I come back . The climate of Unzen is cooler than that of [ downtown Nagasaki - Note 1 ] . It comes with two CDs which include songs , dialogues and chants . Problems with Influenza The spread of Influenza aroud the world . The ful virus infection was confirmed yesterday in Tokyo . I 'm studying English . Nostalgia - - I want to know please if this essay can express the feeling of homesickness and the obstacles that person can face in the foreign countries ? Sometimes adapting to a new country can be difficult for some people . However , some can cope with the difficulties of living alone away from their parents . Ever since I had thought of anything to do I felt nostalgia towards my previous life . he only went to the nearly station , but also my coworker and I went to I 'd like to improve my English so I can communicate with many people in the world . Today we talked about ( the year ) 2012 . They say that the world will end in 2012 . I 'm happy because tomorrow is a holiday ! Today , I went to a graduate school . Maybe this is the reason that why I come / here . Today Pastors and leaders from Taiwan , Uganda and Singapore came to our church . Of course I 'm not sure If I can help them enough though . When I was twenty years old I went to Singapore , the Philippines , and Japan by ship . It was so fresh and wonderful ! ! ! And I enjoyed walking the streets and shopping . Tell me what I should say then . He was a little upset and said to me `` You 're the worst teacher in this school ! `` She dances and sings during the house party . I think it is more difficult to write English than to read English , but it is more difficult to speak English than to write English . she was twenty - nine years old and I was twenty - three . ( Someone said that this sentence is the worst opening in the whole wide world ) I have just graduated from Insititue ( College / University ) and I majored in Computer Science . Different kinds of Chinese Dance have different kinds of feeling you need to capture . It should be felt by observation and by your body . They kindly paid me much more than I deserved , but it was tough work for me as I was n't good at dealing with small smart boys . . . I should have waited somewhere inside the building but I had to feed my children . After that , I went back to my home town and drank with my grandmother and grandfather . After the coffee hour , he had planed to play soccer with his friends , so I joined them . There are normally 9 gruops of 9 boxes in a puzzle , and each box has to be filled with a number from 1 to 9 , and also crossing lines and horizontal lines have to be filled . - The North - East direction is considered to be an origin of bad luck . - The number 4 is an unlucky number , because one of the pronunciations `` shi `` means `` death `` , so in hospitals there are no rooms numbered 4 . I am wondering when my toothache will get better . The professor who was my teacher ( mentor ? ) when I was a university student will retire this month . So I work hard , especially in English . Some people say that if people do n't drink any liquids or eat any food , then they will die . This part is damn difficult for Japanese , because the singer does not pronounce each word in this part clearly . I am writing this entry on my journal at McDonald 's , the worldwide famous hamburger chain . in every store in Japan and then I can use my PC with the broadband ( ? ) network when I come to McDonald 's . But in reality I can use the internet under the broadband connection of 20 megabites per second over a cup of coffee , which costs only 120 yen here in Japan . job hunting Please check my diary Today , my friends and I , who are graduate school students , went to the sea to play water sports for one of the classes . . Luck has nothing to do with success . However , I believe that it is impossible for everybody to countless hours to prepare for the olympics and resist to is not from only their luck , but also their effortn . I understand everybody can not do hard work and get their your hardwork link , you will get success automatically . agree with the statement that luck is nothing to do with success . The Combatant who Wanted to be ' ' Kamen Rider ' ' I write this first note to all of my friends . My school is very beautiful and a collegiate university . Futomaki is a rolled sushi . Hi guys , Hope Everything is okay with you ! The movie , `` twilight `` , is from novels written by an American housewife . It is a story about a vampire and a beautiful college girl . I think I should go to hospital , but receiving treatment in an overseas hosipital is a little bit scary for me . So , I watch the TV in the morning . When I went to Hawaii in May , I was reading a Hawaii guidebook published by Japanese company . because there are too many people in the library . at once . guss guessthen10 hours . I guess I study for more than 10 hours at times . According to a report issued by Dandelion Research Committee , native species of dandelion have been decreasing , and introduced species have been increasing every year . grammatical skills and know many vocabulary ( sometimes even useless things ) what I hope for business out of Japan is that I work with free - style , free - custom . Gyagu manga biyorialso haveanime ( animated cartoon ) , it is also interesting . Today , I got into some trouble . We read two special surahs from Quran for people who are dead , for their souls to be in peace . I do n't know what to write for my first diary . It is amazing that such a large amount of money was raised in spite of the recent depression . I hope the discussion will be fruitful . . . I have been to Egypt , Fiji , Mexco , Papua New Guinea , etc . Finally , Anpanman always wins over Baikinman , of course ! But , I am not good at English . because I like Japanese on all subject . what do you think about your neighbor ? `` and `` it is a little America `` as a joke . The comment assume me because when I drove with my friends who are Taiwanese and Chinese , they discussed their identity and recognition of their respective countries . I 'll talk about what I learned today , both from my own experience in life and from others , . . . . or about some topics that I found that are interesting . . . . . hope you will join me in discussing it . I have to consider this as a problem . The topic this time is `` What is your most shameful story in your life `` . One is walking behind the other and he or she is wearing a white hat , a shirt , a pair of short pants , and is carrying a dark green knapsack . Among all American rappers I like only Eminem I need a holiday for myself . I must rescue myself from this confusing and meaningless life . But I am not going to break my learning course . The main actor Mike is an orphan and very poor , but he accidentally met Leigh Anne who gave him support and trusted him . Suddenly everyting was covered in darkness . fortunately , it has n't darkened yet . I could n't see anything . The teachers gave us illuminated candles . I ate kimchi and rice for breakfast this morning . Therefore , I can speak French a little bit and I have some knowledge of the city . Instead of visiting popular sightseeing spots such as the Eiffle Tower , the Arc of Triumph , or the Palace of Versaille etc . I would like to visit my school that I attended , the park that I played in with my family , and the museums , which were too difficult for me to understand the importance of at the time . I took part in an event held by the church nearby . Christians always praise Jesus and pray everything for God . I did n't go to sleep early , because today I got up at 2 : 00pm . Do you have a special plan for summer vacation ? This is what I suffered this morning . Nobody wears a get - up like me . I really want to improve my English . . . I feel a bit nervous , but it 's a great time to test my self control . Do you know how to learn foreign language ? I design new mechanical parts or improve existing parts for aircraft almost every day . Jesus as that shepherd coming to pick up what 's left of you , and see how God brings victory out of defeat . Hi everyone . But English is so difficult . Of course , I also think about immigration . I think everything will be ok . I will ride out this storm . Tell me please ! It 's because our project is a group activity . My friend bought me some steam rice and they were so good , I have Tomorrow my beautiful country will be [ a year ] older , because tomorrow is the 15th of September . The independence day is very interesting ; the people go dancing , _ and go with their families to Zocalo . Zocalo will be a very lively place [ tomorrow ] . . . And there are many factors that facilitate a coincidence like this to happen . Soon I think : whatever , I 'm still me , another growing man . I watched a TV program ( NHK ) about Lang - 8 . Especially , my interests are bioinformatics and immunology . I have studied Korean . I went to Korea twice . I want to keep learning English for business and chatting . She talked with us about discrimination . They also did n't know how to express themselves . Our coach organizes different activities like camps or excursions or rafting . During this meetings we congratulate them in different ways and do different interesting things . Hello friends I am going to write something I have insisted upon my beliefs for many years , but recently someone told me that I had made a mistake . They said I just live in my own world and never try to accept others to attend my world . It 's this real ? How confused I am . Since that I have been paying more attention to my achievements and thinking about my words again and again when I speak out . It just makes me feel sick with myself and I hate my character , my achievements and my wrong feelings . And I chatted with my friends , on Facebook and twitter . I studied about grammar there . Yesterday , I flew to Edmonton , Canada . They dominated the airplane so it was a little bit weird . The husband is a native Canadian and the wife is philippineCanadian . Kindly enough , they brought my bags and took me to their house . It is in a tranquil residential area and has beautiful garden where you can see evergreen conifer . In the back garden there is a husband 's favorite bonsais and an azalea tree and a small vegetable garden . She is 16 but her English is excellent , especially pronunciation . According to her , she has already stayed for 7 months and studied in local international highschool . The examinations were held with paper tests and did not include listening tests , so I studied English focusing on reading and grammar . The artist told us about a difficult request ( which ) he had once received . We are glad we choose Popo . By the way , now Popo is almost 9 kg and from that small cat became the biggest cat I had never seen ! English Journal - August I read the latest English Journal ( EJ ) at the library today . It 's one of my favourite magazines , which comes with a CD in English . I hate the complicated ones because I can not understand the story as soon as I concentrate on the captions . I love studying languages because I 'm interested in the sounds of foreign languages . After , an American man who looked close to 33 ~ 38 years old , walked up to me and tried to chat me up . In addition , I want to join a volunteer circle . Because there have been many witnesses . The only thing we can do is prepare for the earthquake , because it 's just a nature disaster . anyway I saw the movie `` Love and drugs `` yesterday at home alone . I make vegetable soup and have it three times a day . I want to overcome this situation ( my character ) , but it will take a few times . By the way , recently I am crazy about Gossip Girl which is an American TV show . I hope he uses the same concentration he has for catching creatures , to do his homework . . . I study about the environmental problem . I saw some elementary students killing ants just for fun . In the shop , the seller said to me : `` These will be great for your mp3 `` ( I have an ipod ) - and it 's true . The movie is called `` Shutter Island `` . I 'm looking forward to watching a movie called `` Inspection `` . Because , a large number of adult people often say , `` Recently young people are not polite and they do n't have common sense . `` I 'm looking forward to the future built on today 's young people . It was very short trip but I was able to enjoy it and discover the cultural difference between Japan and America . Some children were transferred to the hospital due to heat exhaustion . The extreme usage of air - conditioning caused the electric power company to stop producing electricity . When I worried that he 's going to bite me , Ms . I called my agent about finding a job next month because I 'll graduate from this school at the end of this month . But look up at the apex of the triangle and you 'll climb up to the top . My insistence is that looking up your goal and making efforts brings you something which matches with you well . The moment when I stood in front of our classmates , the teacher was commenting on my partner 's errors in her presentation , so obviously it would bring a cetain pressure to me . I 'm exhausted , but lang - 8 makes me vigorous . I wonder why I was fascinated by that ? Perhaps it 's from being brought up in Japan where most of people would be secular and atheist . If my son got up by himself , I would be late for work because I ca n't hear Mom 's voice . I do n't have enough time to do anything after work . . . . Then I 'll meet my friends , that I have n't seen for a long time . . . Jane is tired of dealing with customer complaints and wishes that she could be allocated to do another job . My selection is not surely wrong , but correct : here is my final destination and utopia . While I was watching the Singaporean city , I realized again that I must get a job here , and change myself from a loser and cowardly man to a human . Sorry , today was busy as well , so I ca n't write a long sentence . It 's been around a couple of years since we met each other . We all will be surprised at how different we look when we meet together someday . I 'm CerezoOsaka supporter . Shinji Kagawa was a member of this team . Now he belongs Dortmunt in Germany . I like Johnny Depp ! Breakfast is important Hello , my wonderful friend . It is about 8 : 40 . I take my breakfast early . What time do you usually take it ? I notice I am always hungry when I get up early , and after one hour I will be hungry again , even if it is earlier than usual . Please do n't forget to eat breakfast . Miyagi and Iwate had the biggest damage . For every day that I exist , I will have more energy ! Absolutley , making freinds is another goal for me . Loneliness is a time you can talk over a lot of things such as human life and the purpose of your life It 's very easy to cook . Just put ingredients into a boiled Nabe soup . It warms you up , has a good taste and is healthy for you . In fact , I scold him for misbehaving last night . my younger sister and I went to a Guardeira for Spanish kindergarten , that diverse , elegant , beautiful , environment - friendly , positively Europe Culture My father took many pictures in Spain for family memories . And until now , occasionally we saw the pictures and indulged in reminiscence . But when I was 14 - 19 , my father 's business was getting worse , finally his business failed by the time I was fourteen years old . For example Sushi , Takoyaki and Ramen noodles . I should buy the correct size tomorrow . There were many herbs and flowers ( especially roses ) . Could you explain these sentences below ? You must have to know a password . Actually , I have taken it before . There are some Korean food restaurants near my home . I often go to Korean food restaurants because Korean food is my girlfriend 's favourite . It is served as rice and some Korean vegetables with Korean seasonings in a hot bowl , I know from my friends that European people do n't like to eat garlic ( ? ) Good night . He is a Japanese singer . He is forty years old . I remembered a lot of things , like when I was a kid I flew a kite that my grandpa made for me . During spring there was often a lot of wind in my hometown . I ran and ran , the kite flewhigher and higher , until the line or the kite broke . We have to register to get medical treatment in the clinic . The GP that we register with , must be the nearest clinic to our flat . May I register with the GP here ? `` We went because she wanted to go to Layer 's . I 'm glad to know such a good resturaunt is nearby ! Yesterday , I had a party at the Atsugi in the Kanagawa prefecture . Very difficult , that song is . Yesterday we traveled around Bangkok and today we came to the south of Thailand to the beach . I and Tyler are just watching them with their beautiful bodies . We are taking a boat around the island . Actually I will remember this good day and save it in my heart . Also I looked at a variety of the British Museum 's artifacts , and I acknowledged the fact that the British Empire had enormous influence around the world in the past . On the other hand , prices in yen were too high . Also , as many people say , the food was n't good . Particularly , the Eiffel Tower at night was very wonderful . I have a lot of things to do , like my essays by tomorrow , ( and I still have them now . . . To take the side of Superman is very easy , he can fly and shoot optical rays from his eyes , he has super strength and incredible endurance . I 've decided to take the Graduate exam instead of finding a job . When I 've been in highschool , I have been reading , learning , and doing exercises all day . Hajimemashite , Douzo Yoroshiku Onegaishimasu I have also started to study Chinese , French , German and Spanish and have finished my grammar books . I often regret a bit that I can not voice an opinion I have . Because I miss my family and I 'll go back in 8 weeks . They are American English and British English . word , spelling , grammar , and pronunciation . Since Australia used to be a colony of England , English in Australia is based on British English . There are many other different spellings between both like color ( A ) / colour ( B ) , realize / realise , and learned / learnt . Elementary Workbook The finest Italian restaurant in Japan I love Italian food and I like to search for nice Italian resturants . I know one of the best Italian restaurants in Japan . The chef of the restaurant is very good at making pizzas . He got the win in the World Napoli Pizza championship as the first Japanese champion . The pizza oven in this resturant is used in Italian house of Aichi Kyuhaku ( the international trade exhibition in Aichi Prefecture ) . This restaurant has a very long bar in the lounge area . The recommendable glass in there is St Christina ( Toskana red wine ) and Grappa ( the brandy made from strained grape leaves ) . I want to go Chezari again and meet the beautiful CEO of the restaurant . I opened my eyes and checked what time it was . My personal computer was broken . Now , I 'm in the first year of being a doctor , resident , At first we were excited to come to one of the hottest place in Tokyo but , we were disappointed and noticed that this shop would disappear / close down in 5 years . Second , the service was not good . All they did was take pictures and dance to the noisy club music . I did ` t like those persistent salesladies at a department store , but I was surprised to see them . I 'm going to write a text `` End 1 `` at the right - lower of the first illustration . I 'd like to know about the public safety of the US before going to L . A . Because they have lost three game until yesterday . I plan to go cycling to see Bondi beach this weekend . I think that reading Nabokov 's books is better than watching adapted movies . Nabokov 's language is delicious and he pays much attention to small details , but it 's impossible to show this in film . That 's the most important thing for me at this moment There are lots of people from different countries . She is one of the most famous singers in japan . ( Of course , the contents of the concerts were the same . ) It means that she paid about forty - thousand yen only for this time . . . According to the news , an old man has been healthy although he had been drinking only cola without any water for some decades . I do not see pepsi in my neighborhood supermarkets or convenience stores . On the other hand , if the leader had many excellent subordinates , the single person style leadership would lead to quick and speedy decision making . This trip was a very exciting experience for me . She was a very very very friendly person , so I felt relieved . I want to know if they are really strange . Should I read books or watch movies or dramas ? yesterday night yesterday night I had an arguement with my little brother who was a junior highschool student , a 14years old boy So I 'm making lots of fliers on my own . After finishing up the fliers , I will hand out them at the station . The most important thing is to draw the attention of the people who are walking through . I bet it will make a big impact on the pedestrians ! ! I do n't care if most people prefer dogs over cats . I like dogs too , but cats are awesome . Of course , it can teach many languages . I can learn a lot of English words . Language traning If I had more time , I 'd be ready for the language training more . By the way , while I was on this site before , a friend sent me a lot of pictures and so today I am going to show you the beautiful pictures that my kind friend sent to me . Thank you . This is my first time doing it . In the year 2001 , President Arroyo was elected and she started to negotiate with MILF . but It has other meanings : search word of list , like a sponsor It freezes or reboots only seconds after turning on . What 's weirder is that when it successfully boots and runs for 2 or 3 minutes without a hitch , it seldom freezes or reboots . But after a second thought , that does n't make any sense since it 's an electronic device , not a human or animal . Do you know DRRR ? , It 's a novel written by Ryougo Narita ? IZAYA is my favorite character in the DRRR . It is needless to say that they ate it greedily and quickly . Asians view life as everything being connected and affected . I 'm participating the ACM / ICPC contest and I have many courses to learn . I also need to prepare my application for my study aboard , including impoving my poor English , which I 'm doing right now . The Japanese soccer team won the Australian team at the final , and won the Asia Cup championship . But I did n't watch this game . So I had to go to bed with my daughter . I think they are the cutest in animals . I 'm always looking forward to the coming holidays This is my first article , so I 'll begin by introducing myself . I will improve my English skills and seek a suitable job there if possible . My boyfriend was a hot - tempered person , but he improved himself in order to stay with me . It 's not too difficult for me but lots of words really wear me out , especially Literature . So I told him all of these things and we could better understand each other after our talk . It 's an interesting course and also important , because corrosion exists all around us . We have 3 days off to celebrate Labour Day . I think she is a pretty girl but I dont know if I like her or not . I yearn having Korean barbecue , enjoying shopping in Taiwan night market , seeing a brilliant coloring temple in Bangkok . By the way , how do foreign people feel when they come to Japan ? I was drinking with my friend . I 'm Saori , and Im also a college student . I am not a systematic person : sometimes I can not express myself fluently even with my native tongue ! If you know English and want someone to correct your japanese sentences , let 's be friends ! ! I want many friends to improve my English skills . But after I visited there a couple of times , I can see them as professionals who entertainment the customer with their mannerisms and conversations . Basically it 's the same discipline as other forms of commerce . How do we provide value to our customers ? It is hard for me to study English It is my first time taking English literature at the university and I never did I recently feel that studying English is hard after I took a class at Hansung University . Am I 'm doing well or not ? Recently , he joined our English class , because he was interested in I am actually taking a English writing class in the English department , and ( Quoted from Korean newspaper ) Importance of a breakfast can not be emphasised too excessively . I do n't want to give up , I believe there 's a way to change for the better . It includes correction of grammar , translation from English to Japanese and Japanese to English too . The morning is not so bad because the teacher was not so tired and had a sense of self - composure . As the the teacher felt tired , she became nervous . As kids were scolded , they became defiant . My mind is peaceful . ( Four degrees Celsius is the difference between temperatures nowadays and temperatures during the last ice age ! ) If the politicians had listened to them earlier , the situation would n't have been that fatal . I like action , comedy , mystery and so on . The highland is famous for it 's beautiful nature scenery . There are many flavors : salmon , _ cod roe , _ tuna , and so on . This trip was funny , I went on one of my schools trips , we went to Queenstown and Dunedin , it was for four days and three nights . There were 10 of us including the guide ( who is also a teacher ) , 9 students , 4 from my school . On the second day , we went to Queenstown . We watch the people doing Bungy jumps , then the guide helped us book an activity , I decided to do the Skydiving . This was my dream in New Zealand , because in Taiwan we do n't have this activity , if Taiwan had this activity , I think , maybe I would n't dare , because Taiwan is very small , we have no large open ground , maybe I would start to dive and after a little time hit a house , ha ~ ha ~ . Yesterday , I played football because I belong to my part time job 's football team . Recently , I like to make coffee ! Excuse me for reading your dairy and giving some advice , even though But I thought that I sometimes do the same thing as her . AND , we do n't know what on earth the goverment is doing with so many taxes , while most people are living a miserable life . This time , they are not letting the mooncake tax go off ( ? ) . And lastly , I recently found this valuable and interesting site lang - 8 , which became my favorite ! Suddenly , it rained and I was forced to go back my home T T Reading words on the iPhone makes my eye sight bad . The UFC is a major fighting corporation in America . So , I tried to record myself speaking sentences in English . My English pronunciation is terrible . I was exhausted . . . . Today is Saturday . . . He was very nervous . I will know the result within 10 days . Obviously , as a standard product of the abnormal education , I am also a test maniac . Secondly , she has supported Japan strongly since there was a big earthquake in northern areas . It is obvious that the damage is still affecting the northern people , as well as Japanese economics . As a result , $ 1500000 in total was gathered during two weeks . This movement helped us definitely . She presented her Monster Ball national tour offering premium VIP tickets to fans who volunteeer their time to homeless youth organizations , which raised more than $ 80000 in proceeds to support homeless youth . However , when I hang out with my friends , I always wonder how the hell they can spend so much money . I major in English , and I 'd like to improve my English skills ! In addition , I 'll tell you my least favorite proverb . That 's `` Two heads are better than one `` . I never believe it . I like this language and I think its characters are charming , fascinating . My company buyer shirt and fabric export from China to Switzerland . I am a souring and quality control . In my spare time , I like to go swimming or tour different places . The desire came out again when I started reading manga again and revisiting the Deviant Art website . Fortunately I could try several ( different ) classes there , so I could compare the atmosphere , the teachers and of course the level of each class . I have a little / young son who is 2 years old . I want to get TOEFL score 90 and go to canada as exchange student . It 's a service day . Because there are many things I want to talk about : ) So let 's get started ! It ' sthe final concert of theMonkeyMajik tour 2010 ! ( The marche Japon Sendai , it is held every weekend at some arcade . ) At the market , it 's fun to talk directly with the seller and farmer . Actually , even after this God punishment , sometimes we threw his belongings into the incinerator just for fun . Although I have two more final exams , I ca n't stop to read . It would be absolutely fabulous ! ! ! I recommend it . 2 You do not have to spend much time in the kitchen preparing meals I installed KakaoTalk program on my iphone This program is a kind of messenger like a MSN online chatting program . Recently , I have n't been studying my / the intermediate textbook on / about grammar in use . I do n't understand it ! It 's bigger than Korean ones . . . I ve visited the family doctor , and he sent me to the hospital . And my sickness was so hard / bad that the lung specialist said that I could n't go home . So people in Tokyo are buying everything in the shop . So , I can not buy water , rice and paper . Yesterday , I went to Restaurant Hajime for lunch with my girlfriend . My favorite dish was roasted lamb . It was so cool that we felt very comfortable . I 'm not familiar with Europe at all . Let 's plant good seeds into our heart together . [ Please plant good seeds into the garden of your heart and you 'll be sure to be happy unless somebody doubts you ] . Please could you tell me your own thoughts . I do like the older music too , Hungarian songs specifically . She said that her superior did and said stupid things , and caused a lot of trouble . The experiment is also waiting for me , I have experienced a typhoon of level / magnitude 8 ever since I have stayed in Hong Kong . And actually I think it wories Avi that we call Ji - Hyun Scott , a man 's name . It is written using an indian ink . I was sweaty . I found `` Sleep tracker `` which is a wrist watch that can analyse the rhythm of one 's sleep , R . A famous Japanese celebrity said , `` I can wake up much easier than ever with this `` . Yet , from the sidelines , they may be considered illusions . That 's why nowadays I 'm leading my life under the belief that something that manipulates us exists and we are leading our life at the behest of it . Some part of me think that I could n't care less because if my theory is right , nothing was truly done by us humans but done by the manipulator . All too often , my students declare that they do n't know why they study . Study English 4 , There are many people with a similar name to me in Japan . Suddenly when I woke up this morning , but I could n't be satisfied with this musical on that day . Whenever I learn English , I find Japanese interesting ^ _ ^ I read a comment in the textbook which said there was a very close relationship between vocabulary and success . Goodness , who can tell me how to do it . . = _ _ _ = I hate the Korean ( alcohol ) drinking culture . My sister 's company is forcing her to drink a lot of alcohol even though she does n't want to drink . Then we put meat , vegetables , beans , tofu , etc . The weather was so roasting , made us uncomfortable . * Agree ! * In the theater , the story was outstanding from beginning to end , it made me feel inconceivability , especially when the transformer change their mind , it was very cool . My company is a American capital company , so I really want to improve my English level a . According to many newspapers , news programs and websites , the wilderness areas all over the world are endangered . * Coffee - Fresh is Japanese - English . I feel terrible and I 've almost lost my self - confidence and courage to do another job interview . We went from Wakkanai , Hokkaido to Okinawa and enjoyed sightseeing , eating delicious food , bathing in hot spring , and so on . By curious coincidence , us five friends made a circle and pledged to proceed into bright futures at Takamatsu Airport just one year ago . It seems that I am buying the sacred certificate with money . If you are interested in CLAYMORE , please check the following URL . I really want to study English well . I hope you can help me ! ~ She came by Shinkansen . It 's also a wonderful movie . After graduating from my junior high school , I went to Switzerland to study other cultures and languages . My husband is good at wood . The length is about three meters , the weight is 30kg , and the width is 80cm . NZ has a beautiful nature , many nationalities and traditional cultures ( ex . I only know my family , friends , school . . . Nearly 20 people came and together we had a great evening . In my workplace , English will be the national language in the future , So I have to learn English properly . Izakaya normally offer food and alcohol at night , but Today is a fine day . So , at present I have just 300RMB on hand . A couple of days ago I joined a team which was started in order to translate English into Korean by university students . Our team 's slogan is to be in middle of the world that is emphasizing independence and creativity . I went to the building near the Pusan city subway station to attend OT . So my primary problem is pronunciation . At first I tried repeating correct sounds by listening news or Tv programs . I live in my home town . There are some friends whom I 've known for a long time around here . She forgot to pay her utility bill because she is always busy . Hi World ! It is also very snowy today . Yes , I tried to write the calories off with those veges . So I was so disappointed . Of course sometimes I feel a little nervouse , since I do n't know if I can get a good job again after coming back to Japan , also I do n't know if I will be able to speak English after I go abroad . I also had a blood test . I started reading `` HOLES `` . I 'm studying Spanish because my best friend was Mexican . I have n't told her that I 'm studying Spanish yet , but I 'm going to make her surprised when I go back to Califorina . I am not always comfortable with writing a business English letter . they lost to the Orlando Magic . ( ; _ ; ) I found this site accidentally . I took an examination in english communication class today . So I went to school quickly and arrived earlier than I normally do . So there was no chicken and beer ! I thought that something was happening , and I asked some people what happened . And now , I have finished the arrangement . This happening was n't solely a bad thing , because I know her today more than yesterday . To get a reasonable price , I need to check the price of several companies , not just 1 company . So we promised that today , I would do nothing to help the household , and study English all day long . My younger sister is 33 years old . Before we separated , we shook - hands and blessed each other a successful trip . Besides , I bought some snacks and foods such as Songpyeon , a half moon shaped rice cake that is the most representative Korean Thanksgiving food to have during the long weekend , which is over three days . The purpose of writing here is improving my skill in expressions in English . But now I ` ve decided to challenge to write a diary in English . I enjoyed summer vacation . In this Club , many Japanese who want to brush up on their English skills and many Americans who are interested in Japanese gather at the Student Center and talk to each other . It was a little gross , but I liked it because its plot was easy to understand . I went to cram school to teach English grammar for high school students . Right now , I am so exhausted . I am studying art but I am interested in film and I also like watching movies . Today is Saturday . there is no class today My favorite sport is `` kendo `` . These days , I often see many magazines featuring beautiful and lovely chocorates for St . unbelievable . . . Today , I dreamt on introduce myself in spanish ! ! She ca n't control the muscles on the left side of her face . But we still do n't know how this happened . So the doctor removed that tooth 's nerve . I had been to another dentist and was told that nothing was wrong with my teeth . The doctor filled wherever he shaved with temporary medicine . I found her some medicine . I went back to my dormitory and talked with my roommates . Chatting with my friends My diary has alot in it if you do n't have the time to correct it , you can just correct some paragraphs . If somesome read my diary and see it not finished please help me correct it , thank you very much my friends at lang - 8 . I met my friend today , we went to the movies at Sukumvit , together with my Thai friend and her Chinese friend . We were watched it for free . Thank you for listening me . I found two cute one - pieces . I feel that I will have good dreams in tonight . To write a diary diary is interesting for me . I need to learn more vocabulary . Tomorrow 's dinner will be also curry , assuming I do n't have a previous engagement . I think it 's the most fantastic cellular phone that I 've ever seen . That class is called social talking . So I ca n't improve my hearing and speaking in that class . The difference between what she is and what she was has made me sad . The only way to make me happier is try to find someone else . I try to find someone who is really concerned about me . All students have to / Every student has to pass various examinations to graduate from a university or a college , Especially Cappadocia ! It seems like a 3D version of Nintendo . Do you know Haruki Murakami ? His famous novels include `` Kafka on the Shore , `` `` Norwegian Wood , `` While human beings forget many things everyday and every moment , thanks to cameras and videos we can keep all things in pictures and movies by just pushing a button . Moreover , they will never fade away and lose color . positive thinking Of _ course I want to be a dietitian . Please translate this sentence into Japanese . If you could give me a grammatical explanation of the above sentence , I would be most grateful . If I had a lot of time and money , I 'd like to travel everyday ! I met a friend today . Every year , I gave him chocolates . It is not just a subject for specialists and researchers . If you have a sugestion , please tell me ! ! The first thing every one of my friends says on messenger when I say Hi is `` I 'm almost dying because of the crazy weather `` . But thankfully I 'm here in Canada where the weather is great in summer time . Besides Except english I really love japanese . Recently , I feel that some incidents that happened to me is as if they were TV programs I had watched before . Yesterday , my best female friend who is my ex - coworker asked me to tell a man who is her ex - boyfriend and our ex - coworker before , my mail address . And I know the fact she does n't know , which is that he played with her while having an intercourse with another coworker . One year ago , he made his girlfriend pregnant and asked my friend to lend a lot of money to him for abortion . A grandson asks his grandfather , GS : Grandpa , why do we have festive red rice ? I nerve thought that sushi would be such a popular food around the world . I really appreciate that so many friends remembered my birthday , and it was so nice to celebrate my birthday together with them . Recently , the weather in Taiwan is very good and the temperature there is very high and it is very hot . I went to the department store on New year 's eve to buy some ingredients . On new year 's day morning , many people went to temples and shrines to pray to achieve their goal , despite the fact that they religious . In addition to this , it must be one of the reasons why special TV programs that are usually unable to be watched are broadcast . What about other countries ? ? What is a better expression ? Because I took a college entrance exam and passed it . The story consists mainly of pirate adventures , and they also have special abilities as similar as how Naruto uses Ninjutsu . Tuna was especially delicious . I have no job and try to improve my English . The croquettes are freshly fried and the salads are delicious but they cost more compared to homemade food After I come home , I enjoy the foods I bought . I 've got a really big problem : tomorrow there 's a really important test about the voting system in the USA and I do n't get it at all ! ! First there are primaries or caucuses . Then the Democrats and the Republicans each send a certain number of delegates to their national conventions . For example in state 1 candidate X from the Democrats has the most votes the democratic delegates from state X vote for candidate X as their presidential nominee . Before this vote each elector says which candidate they will vote for and they have to stick to this later . We have received news that my airline is very dangerous . It has many accidents and there are thefts at times . . . ! ! ! ! to be continued . Monday October 19th 2009 And , there is the invincible girl , Clare . Nathan can fly . And , his younger brother , Peter can absorb their powers . So , Peter can fly , read people 's thoughts , be invincible , and so on . But , it 's really amazing and fascinating . Generally girls wear long sleeved kimonos and boys wear long pleated , culotte like , Japanese trousers or a suit . My last roommate already went back to Australia to work . We had lived in our apartment for a couple of weeks , which was a wonderful time for me . Then , I also met my new roommate , who is from Korea and he has lived in Auckland about one year , so he can speak English very well . Except for Japan and a few other countries , countries do n't have school fees untill university . However , I want to go to abroad during / on my summer holidays , to Scandinavia , Sweden , Slovenia or England . But I thought it was a very good experience for me . Maybe I am just waiting for someone to talk to me . the entire floor covered with dirty water , which I did not know where it came Unfortunately the plumber could not come to repair it on that day I could not see all the movies in the series , but this movie was better than I expected . ( more than usual ) but if it 's raining outside , I just jump in my room with the pedometer . I normally play Through this job , I understood how difficult to change the language channels momentarily between Japanese and English . * Explaining about the world heritage 's culture and history on a microphone . I have a habit if checking the back of my hair often . I stand with my back to the mirror and check my hair with a hand mirror . We departed from Knsai International Airport at midnight . I think I did the worst presentation in the class . I can see the large farm and houses every day . Although I also can see many goats and sheeps being killed , when I saw the view on my way home , I felt better and love the life I have right now . In later years , however , the significance of the language was de - emphasized , as the study of so - called living languages like French and German came to be seen as more relevant . The language continued to have high status for some in the 1970s , even though far fewer students ( only one out of every 100 high school students ) took it . Good weather , nice location and good people . Please call me on Skype ! I wanted to eat someting at lunchtime , so I went to the kitchen . I made some Macaroni cheese yesterday , so I decided to eat that . I looked for it everywhere in the fridge , but my lunch was n't anywhere . Then , my host - father came into the kitchen joyfully and began to talk . The tupperware had his daughter 's name written on it , so he assumed that his daughter made what was inside . She has a physical characteristic . The Culcom institute helps people improve their English skills . I joined a study group so I have to memorize some kind of story . I want to do solve this situation . They are very good friends with each other , and of course with me ! I thought that I could be free from studying English , but I was wrong , totally wrong . the score I got was not what I expected . but the most important thing now is Chinese New Year lol I 'm not good at listening to lyrics , but I can hear it clearly . Before I go to school Before I found out about this site , I 'd ask my English teacher for help . When I write , grammar is very difficult . People who smell it are brainwashed , and are not conscious of creating a painting equal to that of Picasso . . . We set off the firefly for stream in summer . Listening to new music ; seeing a movie for the first time ; my first time travelling alone , the first time I joined a club ( I joined an athletic club ) , my first . . . About two months ago in the US , I saw a free trial service at a cosmetic company website . I only started learning English recently , I 'd like to speak it fluently but it 's more difficult for me now . Some analysts say K - Pop is familiar to American Pop music . Several hours later , at twilight , It became cloudy . I thought it would be interesting ! ! ! ! Some of them wear it an improper way , for instance in a too short and revealing way like a girl : ( In modern society , There are more and more technological products created and we enjoy lots of of these . In my opinion , one of the most important technologies that helps the students is the computer . They can easily carry hundreds of books in their pockets or backpacks and read all the time . Students can also edit the tasks , paint the pictures , record the sounds . . . etc by computers . Besides this , rememeber that not all of the countries are well - developed . The progression of technology makes them left further behind in the competition in this world . Touching scenes made my eyes teary . A man visited my workplace today . I am going to see a dentist on Monday . I became a third year student . He is one of the most influential consultants in the world . I am going to be more curious about everything that happens to me . We worry less and think more intelligently . For example Helen Keller , an outstanding female American writer , could neither see , speak or hear , but she was such a great woman with strong will who never stop struggling . Her biography `` My Story `` is quite impressive , because it depicts every important footprint in her life . It 's a constructive psychological strategy to cope with reality and conflicts . Therefore , I prepared a jar only for saving quarters . I would like to attend Opera just once because it is one of the mysterious things for me . The reason why I am interested in it is because the actors and actresses sing and dance on the stage wearing luxurious dresses and sometimes wear masks . Today , _ I registered on a website of learning a foreign language . Why can the software summarize texts ? But I will go to other countries in South - east Asia ( e . g . Vietnam , Cambodia , Singapore etc . ) I think the government spends a lot of money in vain . I read the article that other countries have a systematic educational . I like them very much because they have their own ideas to spend time . One of my friends went to Myanmar as volunteer with her circle members . The other one of my friends is now 23 - year - old though she is a freshman . Then she came back to Japan and now she is a student of our university . She have many views to look something . Three days ago my portable audio player stopped working correctly . Many years ago , we could just bring it back to the shop where we I was blessed with excellent friends . Thank you for being a friend . First , you will receive a million yen of virtual money . I 'm going to introduce some goods later . From the next weekend we are entering a long holiday including Sul . so the approaching holiday is longer than January 1st . Airplane ( or Aeroplane ) fee here , I think , I should give thanks to my friends , thank you for taking care of me always ! I did not find the interview too difficult but I had to wait a long time . It is because I have not used their product before . My life would be prefect if I could speak and read English . The / Our main dish was shrimps . There are many occasions on which to eat meat , for example , going for a drink with my co - workers , or being invited to my friend 's home for dinner . A : If you think so , I can come down on the price a little . ( a bit ) Continuity is Important my hobby is running . US , Singapore , China . . . I went to the park to play badminton with my friend . We had an appointment at 11 . 00 a . m . But I was late getting there because I was chatting with some people on MSN . Yesterday was my birthday . We had international cuisine at JICA . They are helping a lot of developing countries with their serious problems . I love the cafe because they have a lot of International cuisine and Lasik surgery ( When I got it ) at first , I suffered from tremendous pain for two days . Thankfully , now I can see very clearly . For example , English , Mathematics for business to get a license . X - ( but I love to study English , so I 'll do my best ! ! We watch so much television that we are subjected to the same commercials we 've seen over and over during the thirty plus hours we spend in front of our beloved ( ? ) television every week . Thank you for reading , and thank you for your cooperation as always , I will have hard training ! ! ! Langrich campaign I enjoyed practicing pronunciation . but I am gon na write about my daily life or my thoughts and such . . Please do n't misunderstand me , I am a completely straight man . But one of my colleagues wanted to go to that kind of place just out of curiosity , although he is also straight man . A coffee aficinado ? In the morning I am so busy because I am making lunch boxes for my kids . `` You can read it at the below site . I played soccer with children at the park in the Tama Center But this time , of course , my parents will join the wedding party . It 's a good opportunity for us to show my parents our appreciation and take care of them overseas . nanun kenneth john torsiede yimnida . University , homework . . . Gifts , happiness in the air . . . and Taiwan to sightsee for a month in March . The earthquake happened while I was traveling through Europe . I have n't seen any foreigners sightseeing in Tokyo since I came back . At the time I could n't understand what `` invisible radiation and `` going critical `` meant , despite the abundance of information on the TV . I was frightened of the news . I ca n't concentrate while I am at home at least . All paper towels in public restrooms are a waste of resources , so people should bring their own handkerchiefs to dry their hands . If American saw me using a handkerchief in a public restroom , they might think that I am strange or that my hands were dirty . Should I not use my handkerchief in the U . It 's not difficult to recognize all of my colleague and friends through the phone memory . It 's good in this new year that my friends and colleagues contacted via message and leaved their names . England ' . We ca n't tolerate , when such things occur . I 'm going to write in my Journalin English everyday . Today , I read the lyrics of `` Beauty and the Beast `` on the Internet . It has very beautiful lyrics and a romantic melody . Anyway , the China 's National Day is coming , and we will have a 8 - day holiday all over China . That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I also have several things to do . . . . ( thanks to my job , I can schedule my things easily . ) I have to buy a new pair of shoes - - my Nike shoes are worn out . . . . I have to prepare to decorate my new appartment . During the holiday , the salesman will make a presentation about some products which I want to check out for my interior decoration . . It something should happen suddenly , I need to prepare for it in my schedule . There are many interesting events , for example , dancing , beauty contest , eating and muscle convention . I want to be good at using computer . Unfortunately , our teacher 's mid - term test asks so many questions which contains so many details . Because I think I have prepared it well , so I told my teacher that our play is not totally the same as a drama , and he told us we can finish it . The other subjects are so - so , I hope that I can get a score which I will be satisfied with . Today is a national holiday for election in Philippine . I mean I can select 19 credits from 100 courses before officially registering . I always wanted to go shopping in Harajuku ; because , there are many fashionable clothes . I bought many clothes ; so , I have little money now . I trained my body today . My English is not good , especially my writing . It was so beautiful . Around one hundred thousand people commit suicide every year around and three hundred people commit suicide everyday . But most Japanese people believe `` ' we have the best public safety because Japanese people are smart and cool compared to the people of other countries ! `` Japanese people believe that only Japan has four beautiful seasons for some reason lol But it does n't mean their countries do n't have four seasons . Their countries are very big and different from scummy and small Japan . What is better using public transportation or a rental car ? EBM band Krnangh was very fine , their music is nice , classical EBM with some lyrics about National Socialism and Adolf Hitler . But their charismatic vocalist and other band members were great . I am not improving my English skills . because , I do not have any chance to speak or use English in Japan . Someone , please gim me / give me more chances . . . . an unforgettable movie Because sometimes couples can not be together in real life for some reason , but movies make their dreams come true . Unfortunately , I 'll probably have to sell my motorcycle in September because I 'm going to study abroad in Victoria , Canada . Green revolution have brought about great benefits for humankind as a whole . After He succeeded in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . But many countries do n't impose it on groceries that people need for their daily life we already have huge debt that is 1 . 5 times of Japan 's GDP . I personally think the only way to avoid going bankruptcy is to raise consumption tax . It may cause allergic reactions , and carries the possibility of damaging a childs health . In my opinion , I believe that schools so ban the sale of junk food . When I have something I feel better to share it with my friends here because you help me decide how I can manage it . They are afraid If I can do that I will sad . The core concept of this theory is based on reversing the ideas of drawing a picture . Also I boiled rice and sauted mixed vegetables : pieces of carrots and cabbage and siitake ( Japanese kind of mushrooms ) . Additionally , I have some anxieties about my relationships with other people . However , there is no use complaining now , so I must manage my tasks and control my mental condition well . After all classes finished , we clean up our school and have homeroom class to exchange information . I 've just heard Miss Eliot Sumner sing and I was surprised . Lucily , the teacher did n't blame me , and the class had just started when I got there . If I rent them , I need to return DVDs , which means I ca n't watch them with subtitles or without subtitles repeatedly . I can sometimes understand their conversation not using any slangs or difficult expressions . I hope this is a good environment for me where I will have many new friends . Thank you very much . Until the last moment the mother kept hugging and protected her I can check what I said by listening to him and must use beautiful words . Please be careful in eating raw meat ! My roommates and I chose a basketball class this time . I sure have to practice speaking English . I am interested in Ryouma Sakamoto and the Bakumatsu . He saw many awful results and got new memories . The most happy ending would have been if he and the woman he had loved were living without any relation to each other . I know she is very talented and bold enough to use weird materials for her costumes . We did n't have much time to talk about many things while we were working , so we could n't get to know each other well tonight . ( almost correct ! ) However , I made a stupid mistake at the bar . I ordered a drink , and there was a long thing in there . I will inform you the date when the magazine will be published . I can read English sentences a little but , I ca n't write English sentences . This weekend I will go to Shizuoka to give a speech about my research . This is great for me as I can not speak English well . But of course I am going to practice writing and speaking : ) I ordered a lunch plate of green salad and sausages . After that we ate at McDonalds , normally I do n't like fast food , but it was okay . However , it 's also true that neighbors can annoy us , for example , with their noise . I will prepare for travel . What kind of information do you want to know about Japan ? ? What is difference between a mouse and a rat ? Because I 'm ready to meet my friends for a field party . Today I felt something really strange . Three people in different classes , who normally do n't associate with me , acted strangely friendly . I hopy to have a happy summer vacation and learn new things . I hope I will gain a lots of useful information andmake friends with people in different parts of the world . I made this nail tip last night . l have coupons which can be used to get a discount for about $ 5 . After I returned to my office in the evening , I attended the English class . I stayed indoors and read or did cross stitch . The advantage of this trip was that I finished the cross stitch portrait of my cat . Tomorrow is the Japanese national holiday ! ! I was only the one amongst my circle of friends who did n't know this site : ' ( In addition , planning ahead has economical benefits . Finally , by planning when to come back home , I can be well prepared for the next day . I have become accustomed to the cold weather recently . I checked the YouTube and it was really fun . I do n't know whether I 'm too intellectual or I 'm too ruthless . I 'll cook rice including burdock and chicken . He said in his mail ' In Holland we have an old tradition about St Nicholas ( Sinterklaas ) . To distribute the gifts , Sinterklaas rides on his horse over the roofs and puts them in the chimneys . If you read this diary , check this please . I want to make business card and I 'm thinking about my catch phrase . I wore new recruit suit which I bought at AOYAMA . I think it was the cause of my discomfort . Could you help me , please ? Chinese medicine has a profound knowledge . Unfortunately , I have to memorize them all including their shapes , functions and Latin names before mid - exam . Before we build nuclear power stations we should consider about that more carefully . So what do think about nuclear power stations ? Yesterday I felt happy because I had 4 native people correct my diary . I wrote the diary again following what they taught me . I find out about me when I write the sentance like the diary . I fill happy and enjoy that and waiting for someone correct it before I check it . I feel excited and I think today someone will help me correct it . I heard the news about the disaster in Haiti and made a donation to there , but I did n't know exactly what happened at Haiti and how they live now . It did n't take long time to realize that the South Koreans are highly affected by two countries , Japan and the U . It will ( ? ) be hard on a rainy day but now I 'm not going to worry about all the wrong things anymore . When asked `` why me `` , he did n't give me a satisfactory answer but said `` You do n't even give me the chance . `` Yeah , I declined to travel to another city to meet him , in a city I have never been to and for someone I hardly know . I discovered he likes fruit a lot . He did n't eat only water melon but also peach , grape . He did n't eat baby food , but he could eat fruit . Most people living in Seoul carry their umbrella every time they go out . We have had much more rain recently than usual . Taylor Swift and Miley Cyrus are my favourite singers . `` Many foreigners play an active part in Japan . I had planned to cook in the morning as well but in the end nothing happened . English is an international language . The temperature was - 22c I played soccer at night ( - 22 ) I 'm going crazy Futon is a bedcloth . The location is a local college which stands on a mountain . I went to a shopping mall that is near to my aunt 's house . We spend today relaxing . How do I understand which article to use ? Actuary , I was bored yesterday and last week . So , I could n't write my diary today . I 'm going to prepare some projects , that is , licenses ( subjects ) ? like language , leadership and so on . Hi ~ I want to improve my English , please help me , thanks ! ^ ^ I really want to improve my poor English . . . . . My grammar very poor . . . . I felt a sense of guilt for not picking up because I knew who would call at around that time . Could you tell me more about Christmas ? Merry Christmas , my dear friend . Nowadays , Christmas is more and more popular in China . truth , however , I know little about Christmas . What will you do on Christmas ? I 'd like to It is obvious that I am easily to be happy . I know that it sometimes seems un - meature , but candies are my favorite , so it obsolutely can make me happy . Sometimes we do n't know what path to take or what choice to make . We live our lives like passing white and black stripes , like walking in a rainy day without an umbrella . We have to leave our problems behind and step forward towards happiness . On my way home , I noticed something fell from the sky . I planed to write down the diaries that were corrected by my best best best best best teacher & friends , but I 'm so sleepy now . did my best though , I could not answer all questions perfectly . Today is Friday I am so happy because I will have a holiday tomorrow . I 'm so tired recently . Her sleeping style is interesting because she looks like my father . ( hahaha : D ) Then he moved to Japan , United Kingdam , Sweden , Germany and finally he grew up in the US most of his life . Amid the growing trend where personal computers have become prevalent , lo and behold , even books have become available on PCs , such as the Kindle that offers us the opportunity to read books on a screen . frowned upon because they are singing and chatting loudly or being drunken at Ohanami You know what they say `` Winners never quit , Quitters never win ! `` I actually have a jinx . We find the use of force not only necessary but morally justified . . . The president made clear that he would not flinch in using military power The best breakfast in the world And then , we enjoyed sight - seeing . Nowadays , many hotels offer discounts of up to 50 % . I have started an English diary . There was nothing special about today , it was just a normal day . but actually , life just means ordinary things that are happening daily . Recently , I have a backache too . I want to become s friends with many people . And my mum , she is generous and lenient enough to make me brown bags when it 's needed . She satisfies my families culinary taste . I wish she would n't eat sweet so many confectioneries . So I 'd like her to have a good marriage because she is my only sibling . I do n't know if I wrote correctly , but I 'm going to write this meaningless entry . The paper was for a weird entrance exam . Outlet plaza Actually , I didn ` t remember my birthday at all until just now . My son became a junior high school student this spring . This afternoon , I saw a film called `` THE LORD OF THE RINGS : THE FELLOWSHIP OF THE RING `` . On Fridays , there is free English conversation club at the building . Starting on Friday , Hong Kong is on 4 days of national holiday in a row . So , I 'm in office now because I have to translate Japanese documents into English . there are many special words in my business . It takes a long time to complete them . Green green , there are lot of green above the hill . I will go to Shanghai for an assignment in July . So I will keep writing my journal and mentioning my Twitter . My car did n't move for more than 30 minutes ! My goal is to study English . I ca n't believe it ! So please correct my diary . I 'm at a finance class . But warm days and cold days are repeating themselves in Nagoya . On my way home from my English circle , I adjusted the vinyl tunnels of cucumbers and watermelons at 9 pm . . In deed , My coworker said me , `` Since when were you mysophobic ? `` They had 3 rooms decorated with many accessories that were hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . At first , he smiled because the studio staff played with him . Although I did not care about it , one thing happened ! ! ! 1 . Tomorrow I will watch a movie . 2 . on Christmas day I will go to Deagu . I have to read some scientific papers until tomorrow . Agemanju is very delicious . Everything is fine but , as you already know , we have the shutdown problem with the computers . Anyway , I 've decided to watch Transformer III tomorrow with my sister . I want to befriend someone who knows English or French , that 's the reason why I will write something here . I 'm wearing thick clothes like the sweater I have on now . I meet various foreigners from all over the world . One of my co - worker is a Filipino and we talk ( or converse ) in English although I am Korean and she is a Filipino . And when I work with foreign teachers , I feel the cultural difference . It 's sometimes bad but usually I 'm excited to work with people who are really different than I thought they would be ! egg is medium boiled . Recently , I have taken a lunch box with me to school . So , I have to get up 30 minutes earlier than usual to prepare my lunch box . This is cheap and delicious . I am exicited to feel their bigfoot upon my arrival . But that changed when I went to university and took a major in English Education . I found myself loving English that I realized English is useful in our daily life . Since then , I became very diligent in learning English . I want to make a great progress for my final exam . But my English skills are poorer than my classmate . So I want to improve my English this summer vacation ! ! ! I read English passages loudly in the morning , but I 'm not sure whether my pronunciations are right . It was no good having a sore throat and a bad headache last Saturday . My husbund left very early this morning around 5am to go to SanDiego on business . Today I went to see and buy some china at the Villeroy & Boch factory . That factory is fantastic ! I bought four white square plates . These are good for pasta , stew , salad , etc , , , goodnight . Life is like a chocolate box ? I was very afraid at first when I got on the train going to Milano . A very nice beginning . We went to her home at first and talked about everything that happened to us in these past 3 years . After I listened to her whole story , I found in her face some tiredness and boredom in her life . I gave her a chocolate box which I bought in Switzerland . There were many different kinds of chocolates in the box . `` Life is like a chocolate box . Everyday , we can eat a different taste of chocolates . `` I also watched this movie before , but I 've already forgotten this phrase . Yes , life may be like a chocolate box . Although we may have eaten a bitter chocolate today , we might eat a sweet chocolate with a lot of flavors tomorrow . So , I think we should be careful when we chat online with someone we do n't know . First , almost every Japanese person has eaten whale meat . Our ancestors began these events in order to worship their gods , to show thanks for the harvest , to pray for prosperity , and so on . Secondly , we develop our communication skills by participating in Matsuri . I swim at the gym once a week but output of energy are smaller than input And what is worse , my office is located next to Mac ! It 's a book of adventures , magic and suspense . Hello ! Today I got a package from Japan . This ratio is grown by simplifying the curriculum . I ca n't improve my English enough ! I love to watch a movie and I study English from them . I could say that it is not a good way to study English . I consider that it is difficult to learn English because I ca n't focus on learning English . It 's easy to focus on / think about the actor or actress . I believed her at that time . Japanese summers are very hot . This is because songs are important theme of this series . Ichiro Itano , who is a maniacal animator , drew beautiful and acrobatic scenes and made this series famous . I saw the news that there was a tornado in Gumma prefecture . The scene was very terrible . She said she really enjoyed it . . I brought him some cabbage , so he stuck his head out of his stall . . on colorful greeting cards . I will go to Tokyo on September 12th to go to Tokyo Disneyland with my best friend . Tomorrow , I will meet my friend in Shinjyuku . It is the sound of the practice for a traditional festival called DANJIRI somewhere around my neighborhood . Yesterday , I went to a Japanese - style bar again with my friend who has came back to Japan from the UK . I know that I must learn English well , because I actually like it actually . So we held a farewell party in an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the famous foods of Japan . ) This morning I watched a news program on TV . In the program it was said that Rakuten , which is Japanese online shopping company , will change its official language from Japanese to English . Japanese market is gradually shrinking because of recession . I 'm looking forward to seeing Part2 . She is the most famous Romanian in Japan . She is so famous in Japan . I asked him , `` who is the most famous Japanese in England ? `` She was the wife of John Lennon , who was a Beatles member . She is famous in Japan , too . The English man told me another famous Japanese is Honda , a football player . because his country had been dominated , his english skill is very good . he is so fluent in korean as well as english and his mother language . I had wanted to have Tom yam cun ( It is spicy and sour soup , and the ingredients are shrimp , coconut , and so on ) Tomorrow is April and the entrance ceremony of my school ! ! ! So it is an artificial city defended by magic . I still worry about my English skills . I visited my mother and gave her carnations in advance . I 've been learning only words , grammar and reading and have n't really expressed anything in English when I learned English for the first time in my life . I could n't speak English well but we spent an enjoyable time chatting . The most important thing to remember is that I did n't spent the time being with my family , although I 'm am only daughter . Last Saturday , a very very big disaster occured in Tohoku county , Japan . While watching TV , I was so sad , and I thought , `` What should I do for the people of Tohoku , `` but I had no ideas for a couple of days . Then we conquered the barrier , everything had a basic concept , everyone helped each other and worked harder to do whatever we should do , to be whatever we should be . Christmas market and Skating I went to the Chrismas market and skated . Eventually , I went to the station , met themwent to the Christmas market and skated . Ienjoyed it a little . Because she is afraid of going to dental Clinic . I woke up early in the morning . I got injections and took medicine ( ) but this cold seems to stay Some people might imagine that those kind of things should be done by people who have time and enough money to help people suffering from disease or poverty . Sometimes , I have n't certain ideas to write on Lang - 8 . thank you for reading and ( for ) helping ! I studied pronunciation with my teacher on the computer this morning . But today I enjoyed it because I did the homework . It 's extremely hard and the teacher is an old man so he ca n't talk properly . It makes everybody bored and sleepy . . . . People think cows are gentle , I wanted to write a letter . Because I 'm not good at writing . I like to traveling especially to foreign countries . We have a big problem now . I went to a local ramen shop called `` Yaozen `` today . I am writing while eating a grape now . On the other hand , he always looks older than he actually is . He looks like a thirty or forty - year - old . Ashley Tisdale I bought : lemon water , honey of rosemary made in Spain , rosemary , blueberry , cocoa without sugar and milk , and graham bread . Tokyo is very safty , ( ? ) very comfortable . I want my own homepage but it is hard for me to create one so I 'm looking for some website which can create a homepage easily but I ca n't find a good one . to express a lot of relations and suggestions ; `` Expressing It in Your Own Words ; the EIYOU activity It is paraphrased and has more meaning . There are many methods of transportationin Japan . MY MAJOR My major is acoustic design . For example , history of western music , musicology , frequency of sound , intensity of sound , linguistics , physiology of hearing , and so on . Now , I think love and a kind heart and balance of time and money are important . Writing in English is little bit of a challenge for me . I have started to study grammar . ( Finally ) I was reading the grammar text book and there was a sentence that I could n't understand well . I would be so happy if you guys could explain this sentence `` grammatically `` ! ! : p I think language reflects the thoughts of the people who are using it . There are many typhoons in Japan around this season . He is Japanese but also can speak English and Portuguese perfectly and I wondered why , so I asked him . He said ' I was raised in Japan until my 14 years old and then moved to Portugal due to my parents 's work and now I 've been living in England for almost 3 years . I was embarrassed . I have already made reservations for the hotel , restaurant and show . However I did n't have enough chances to make new friends . The shop staff repaired the flat tire in 5 minutes and I paid 1 . 000 yen . It was an unlucky day . If next semester my grade has n't changed , I ca n't achieve my goal and get a scholarship . In August 2010 , I left Japan to go to South Korea to study economics , Korean culture and language . Sometimes Koreans thought I was kind of weird when my friends and I walked around in the city . Then he / she would always gaze at me as if he / she said to me , `` such a stupid ! ! `` lol This is really helpful for foreigners . He is a very famous person in Japanese history . He is one of the most important people who have affected Japanese history . And this is why I could not leave you some comments after I 'd read it . One day I had an appointment with my friend and my friend 's friend to watch the movie at the Slam Palagon . This place is really nice and beautiful . While we waitedfor the movie we ate food . My friend 's friend is a thai person like me but when we talk . so I think I had an experiance withit before so now I smile about it to my self . It was n't regularly , though . Usually it was short and I did n't think too deeply about things . I just wrote down what happened to me that day , things like `` I think I like him , `` or `` my Korean grade is 100 ! `` I thought so because younger brother is a countable noun . Teaching Practice I went to teaching practice at my high school . The bioHazard series is a favorite of mine . My kids also enjoy kindergarten . She dressed up in Japanese traditional clothes and did her hair . Sometimes dictionaries make me crazy ! Mainly because the dictonaries give me example sentences that are too formal and that nobody uses anymore . Although there were nuisances , Jack and Rose got through the crisis . Also this work was made in 1997 in the US . / / America spans from Canada to Argentine . Maybe I will be a tour guide , but I 'm not sure . Maybe I will just use it for my own travel because I could get free access to some scenic areas with it . I have a double major in event and business administration . I dreamed and struggled for many days and nights . There are 10 days until my university entrance exam . A friend 's natural behavior These children are often spoilt , not in terms of love but their behavour . . . It 's kind of a pity that we are losing a friend here . Hello everyone . I do n't know much English or cultures of other countries yet . One of my American friends invited me to play sand volleyball today . Therefore , you can play sand volleyball while drinking alcohol or eating something . Because , I thought that today is Thursday . A good way to learning another language is . . . . . . . They recommended a good way for me to learn English , These days I feel I am losing my English skill . After hearing that she had died of ( or from ) a disease , he attended her funeral with his wife and realized that she 'd never married The story is that a long long time ago , an old Japanese man went to a mountain , and then he found a baby girl inside some bamboo . We ordered fried noodle and fried pork and vegetables . ' I have to remind myself that some birds are n't meant to be caged . Their feathers are just too bright . And when they fly away , the part of you that knows it was a sin to lock them up does rejoice . ' I enjoy it when I read it . These fruit are very sweet and tasty . I hope so : ) To improve my English , I 'll keep on writing a new entry from now on . Please cheer me up : ) Cross Fire is a game produced by the Tencent internet company . so my hostmother got the message instead . my work schedule was changed by my boss . I decorated the living room with flowers , streamers and balloons . I cooked a special lunch for them yesterday . It was soup , tuna - salad , and the main dish was rolled cabbage . This season in Japan , the spring cabbage crop was large . We had to sing many old songs there , but it was a fun and nice experience for me . So we write only Japanese sentences although we study English . My taste in raising pets is very common . There are many international students at my university . Meanwhile , Two ladies of an IT trainning institution , which announced it cooperated with IBM , stopped me . Summer vacation will end in this month . I was lazy this summer about studying English . From today , I 'll begin to study English for TOIEC ! But we have always lived in different countries and had time together for less 10 days every year . After he got a new job , I felt that his personality was different from what he used to be five years ago . When my friend committed suicide in our accommodation and I needed his help , he expressed his anger to me . But he talked with me for about 10 min , when he waited for a dish in a restaurant or only in his spare time . His house maid said his mother `` did not wish him to get married `` , because she needed his salary for his whole family . When I was in his room for our all - too - brief time together , I was disappointed with his behaviors ; watching TV , checking his phone , not talking . I wanted to spend my time with my BF and have dinner together . particularly , after his anger hurt me very much . I had a BF , but I could not talk with him , call him , or share any ideas . Nor did I have opportunities to go out often , and of course his anger issue . Is not easy to control myself and relax . Recently , My colleague gave us it because he bought a new TV . I thank him for his kindness . So far I have already made a lot of mistakes that anyone might have done before . In my case , I will make a lot of mistakes even though I have already known its a mistake . cpu : pentium celeron The PC will arrive next Thursday . I 'm looking forward to receive it ! ! Btw , I am very tired now , after celebrating your birthday and going shopping . Yesterday I did n't go to school and I stayed home because I felt pain in my nose . Address or Mail Address . He is very famous all over the world . The story is a little difficult , but it has many beautiful scenes ! ! So , today I fell asleep in school : ) ( sorry , I don ` t know how to say that I ` m asleep and not sleeping . . . I ` m so happy , because I have always wanted to read this book in its original language ! : ) Now my clock says 20 : 17 p . m . , and I should do my homework , go to the bathroom and then go to bed , but I often have a insomnia , because I ` m an `` owl `` in my biorhythm , and wake up early - so hard for me : ) What 's more , I have been desperate to go there since I was a child . writing an essay is hard for me . . . I was disappointed with myself . I belong to an astronomy club . I ate Chinese vegetables . Chinese vegetables grow in the land and water . The flower of vegetables is a white colour and in the middle of the flower it is a violet . I know if you eat more Chinese vegetables they can help improve your vision . First off , I will buy an English text book , because I want to speak fluent English . It is my fault that I ca n't speak English very well . Watashi ha kireisa wo kanjiru koto wa arimasen . ( kireisa or utsukushisa ) I dream of - - - - I am curious is it popular in other countries . . My teacher told me not to fear using incorrect English , but I absolutely do n't want to make mistakes like this ! I study Programming , Machine Learning and Image Processing . We have eight - day holiday , but I do not know what to do . I went to a japanese food store and I eat sushi and it was good but I cant have to much of if but over all it was good and the gohan was awsome to but I wish they had onigiri do anyone knows how to make one cuz iv been dieing for one of thoses forever . That was limited to the entertainment sector , but it presented the Korean way of thinking . So many people said , `` That Yankee go home `` and `` He is a betrayer . `` They then questioned why he should quit the team and leave Korea , just because of the foolish complaints from his young and troubled days . Koreans hate themselves but could n't forgive someone who hated their country in the past . However , this situation symbolized the distorted affection and shallow nature called ' Naebi - geonsung ' , boil fast and get cold fast as well . I was so confused and disappointed at my country not as a fan of his , but as a member of Korean society . This could be the case of understanding for all the immigrants around the world , who were raised in their countries without any knowledge or understanding of their roots and motherland culture . Here 's some support messages from all over the world . . . . . o yeaah , , now , I 'm a 2nd semester undergraduate in a university in Indonesia . I am Hungry . Even though I 'm not a guitarist , I hope the company recovers well and will be making magnificent instruments from now on . So I can only use simple greetings , likes `` Bonsoir ! `` , `` Au revoir ! `` . First , I will introduce myself . But the whole day has passed and everything is in vain . I prefer low sugar over high sugar and I prefer fruit cakes over vesitable cakes . To take the machine from our laboratory to their truck which has a crane was very difficult . It made me a little weary today , because I keep on thinking about the dream up to now . Yesterday , I went to see one of my classmates from college , and we had lunch together and also we had a nice talk . Every day I want to learn something new , and I also want to make my day become more meaningful , however when I get to the office , another thought came to my mind , that is how to spend this day , is there anybody that will make fun of me today ? I feel sad about my job . Because my heart is afraid to be broken again and again . In the past , I was not a person like this , I have a lot friends who are always with me , but now I stay in Shanghai all by myself . Give me of your news regularly and also as news of your mom , your dad , and your brothers and sisters . We are happy to be able to write you regularly , we love you very much . First off , my friends did n't want to watch it but I recommended it to them because this movie is made by disney . I do n't know if it 's because I have n't been following the instructions as well as I should have . I got back to my home form part - time job at around 7 in the morning , and fell asleep till 3 p . m . The Japanese authors I like is Murakami Haruki , Banana Yoshimoto , Higashino Keigo and so on . I like watching a sports game , especially when the local baseball team which I supports plays . I always write incorrect prepositions . So I decided that I need to practice prepositions ! I wrote the last message at the end of the page . I went to a job searching seminar . Today 's seminar is held by a consulting company . The seminar was helpful because I was able to talk with some of the staff members . I bought two books written by the president of that company and read them at MacDonald . I taught my students by solo performance . because it leaked . I am renting a house now so I called the owner . I can wash my fase comfortably because it 's new ! I think that I will start Lang - 8 again , in order to learn English . I think I should study English harder . I want to go to many places The mother sometimes treats her children like her possessions . I still have a meeting for this subject tomorrow . I 'm looking forward to having a good time . On Wednesday , the first day of spring vacation , I went volleyball playing and watched a free movie with the people in my lab . This book is for English learners and mentions Lang - 8 ! Maybe she got influenza . AfterI gave her tamiflu ( which is a medicine for influenza ) last night , she had been getting better . I miss my mother very much , especially on these days . I had an appointment with my boyfriend to play basketball this morning but when I came to his house he was still sleeping n _ n Now it is sunny and hot . We do n't want to play at this time but I really want to play . What should I do to stop the sun and heat ? I will bring an umbrella with me ^ ^ ; In one of my subjects , my product design class , I need to think of 20 ideas and draw them out ! I will do everything , all of my homework , because I want to be a designer . This is my first diary . I went to down town Hiroshima and bought webcam at the DeoDeo electronic store . I was surprised by the price of it . But it did not happened in my area . We found out about it through our cellphone TVs ( oneseg ) The earthquakes have been continuous . Gru finally found that he had a right to be happy and find the meaning of family . finally he found what his life was for . A seminar I participated and was surprised by yesterday Yesterday I attended a seminar in Kangnam , Seoul . I was very impressed and shocked because I have never been to one before . Most of them wanted to improve their communication skills because they seemed to believe that those skills would help them earn more money . A announcer led this seminar . He gave several speakers good tips and immediate feedback . Give your speech impression , and charge . We went to the hospital to have a ronsen for my brother 's metacarpal . It is the main qualification in order to study abroad . I need higher points , however , I do n't have it . Some points I had already known but the others I had n't known lol This video emphasizes the strange points of Japan . The first point was `` Character of Japanese `` . This video also referred to Japanese school girls . Some machines give false eyelashes with the sticker . Belgium , Austria and Czech Republic ! Please help me . I want to create a miracle ! `` Crayon Shin - chan `` Today I went to cramming ( cram ) school . Today there was a test at cramming ( cram ) school . I love cramming ( cram ) school . But , sometimes It 's important not to do anything . I usually talk with friends about studying abroad , and one of my friends told me that the best way to promote friendship with local students is by doing sports with them . I 'm a student at Liao Ning University in Shen Yang , China . All the activities were great , especially The Hallywood Ride ( This is a roller coaster ) and Spider - Man The Ride . Actually I do n't go out either . But the Twilight series is not popular in Japan , because of poor PR I think . Green tea includes more caffeine than others . I 'm really looking forward to watching it . Today I went to the Starbucks , which is near my house . I have been wondering why Japanese Starbucks is expensivethan in the US . And then I went to the Starbucks . As a result , Japanese Starbucks is more expensive than American Starbucks . I am working in a Group Home , where old people who suffer from dementia ( deseases ) live , and we are taking care of them . I 'm a beginner My classmates and I did some field research for geology , good night It seems like I could be a help , and if it is I want to give stars to people who helped me , but where is the button ? My name is Tomoko . I got some souvenirs . I will go to ( an ) `` all night Karaoke `` with my friends . I just want to improve my English . russian vs japanese ) ) ) ) ) why that people who are learning or try to learn russian are also learning japanese . . . . and do u think that learning Russian is more difficult than learning English or . . . japanese ? ? ) ) ) ) ) What is your `` position `` in the family - first born , middle child ? she is maybe / about 76 years old . Are friends more important than family ? Till then / up until that time I never could understand why people doze off in class . Yes , when I was in high school , me and my friend participated in a competition , I really practiced hard but I could n't / did n't win the prize . but my friend won one hundred thousand won . It 's a secret but in my major class , a professor who teaches `` study of food material `` is the most boring teacher . But I ca n't do that in such weather . . . I got my first friend yesterday . So I tried to give them corrections twice . It took 1 hour to give 1 correction . So I made a mistake while making the correction . It basically focuses on international business and global governance studies with full - English lessons . Please teach me when I should use it . It makes me crazy . I ca n't believe any information from the government . Basically , I use a package tour when I take a trip somewhere , whether a foreign country or a domestic place , because it 's inexpensive . I 'm not good at English listening comprehension because most English speakers use high frequency band ( ? ) . Sorry it is just my complaints , recently I have a lot of stress from my situation . My cheeky English tutor always corrects my sentences . He puts his corrections next to them . I told him that he should use block form when he corrects my sentences . She said I ca n't go because of math test tomorrow . I said it 's ok , take your time fast . Anyway I look forward to seeing my all friends tonight . We 've got to say that the appropriate styles and colors are a critical factor as well . Although people do sometimes behave differently when they wear different clothes , I do not believe that clothes can essentially make people different . Therefore , japanese have to learn much from them . I went to school to try a lesson . Tomorrow is Friday . There is Chinese official approve this month . They prefer to live in a dormitory because they know that in dormitories they will : have more fun with colleagues , meet new people , have new experiences , and face new challenges . Those students say that living in a dormitory allows one meet new people , and have more fun as one can stay up with the new colleagues playing music or games without caring about little siblings or sleeping parents . In addition , living in a dormitory forces the student to have new experiances in life , and face a lot of different situations in which s / he has to deal with them without help from parents . Moreover , one student said when one lives in a place far from his parents , old friends , family relations , and neighbourhood , s / he begins to face new challenges . when we arrived at Nikko station , we went to the hotel reception . We never can find hotels easily - - then we went back to 1 station ^ ^ We found a hotel ^ ^ u know Nikko takes 3 hour and half to Tokyo . . A lot of foreigners ? come here ^ ^ I think that I 'll study until 10 : 00 p . m . in my office . I study English every day . Because I want to be able to speak and understand English . So I study hard ! This museum , which is constructed underground , is designed by Tadao Ando . Well , I can say that some subjects are getting better except Geography unfortunately . I attend English courses with great pleasure . In my opinion , it is very important , especially nowadays . I have always been very sensitive to this and other situations which hugely disappoint me . I believe that my English is getting better day by day . B : Right now I am going to vacuum the house ! Although , my grandma and grandpa are already dead , so actually , the people who are living in my grandpa 's house are my uncle and his family . I love grandpa 's home ! I like J - pop , J - rock and Japan drama , so I learned Japanese quickly & easily . I understand there is a big controversy about hunting whales and Japan is criticized on this matter , but fighting a whale with a small weapon is certainly an adventure . Because Tohoku area most catastrophic damage from the quake and the tsunami and crippled nuclear power plant on March 11 . Try eating the food from Tohoku ! Meanwhile , we know some people are anxious of Japanese food . Kyushu Trip I had a get - together with RVT yesterday . Anyway , I drank so much yesterday although I ca n't drink too much . I watch `` Friends `` DVDs every night . `` At first , I did n't believe it because I thought it was a joke , and I lacked of confidence when I was a senior student . I talked on Skype with my tutor . I worked Today . Can I talk about weather ? I was sunny day . An ipod can put music in your pocket , so you can take music to wherever you want to go . She came to Japan and appeared on TV I listen to her song `` you belong with me `` . We want to guide English speaking foreigners around Nikko with a volunteer because we would like to study English so that we can talk with them . SEO is the abbreviation of Search Engine Optimization . In summary , one site up to the nearest top on the Search Engine . Thank you for reading my diary today . He taught us how to choose our own life and be responsible for it . Time goes by so fast . Finally , I 'm about to there . I am easily addicted ( absorbed by ) by any kind of work . In many high schools in Japan , grammar teaching is emphasized very much . But after I entered a university , I realized that I ca n't speak English as well as I want to . Please fix my writing , grammar and spelling . I want to make foreign friends . Yesterday , Mie participated in first - aid training for the Red Cross . Many small restaurants were open and we introduced our lab work . I went to the area where I can drink free Sake ( Japanese alcohol ) . It 's been a while since I drank alcohol . I do n't think I am so weak at drinking alcohol , but my face gets flushed after just one glass of beer . Sake is about 15 % alcohol . Of course my face got so red . . . Most of the people at the festival were not drinking during daytime , and I felt a little embarrassed . According to animal experiments , if it is eaten , it causes kidney calculi and can eventually cause carcinoma . Usually , we do n't buy `` regular toys `` such as rangers figures or items of a certain ranger , which cost around 5000 yen , because we know he 'll get tired of playing with them sooner or later . Three straight days off On Saturday , I will change the layout of my room . I have no confidence in my English skills ; I want to enjoy English , not only for learning the language , On 11th Mar , we had the terrible earthquake . My house and office are in eastern Japan , but it 's not close to the sea , so we did n't have any Tsunami impact . I will miss those beautiful colors of Tanzania . I 'm from Hyogokenn , and often went to Osaka . Nothing happened , no trouble is brewing . . . well , this is my first entry and I hope you 'll enjoy it ( or at least correct its mistakes ) Next year I 'd like to continue practicing my English and to take an english international exam , like toefl or first certificate . I 'm looking for a new career . I think I 'm keen on economics , but at the moment I ca n't picture my self working at any job . I 'd like to travel abroad and in my country in the future . Argentina is beautiful and I recommend you to come , but first I must get a part time job . Coul you tell me what kind of job is the best to start working on , considering that I will study and practice sports at the same time ? I disagree it , because I think people will not be motivation for their working . I was an assistant there . My dream is to be a scientist on metal of atomic energy . I want to work with foreigners , so I want to go overseas soon . That will make me evenmore stressed . In our lives , about 100 years , we have to choose only one person with whom to have sex but sometimes people try to choose two people at the same time . First , a couple gets divorced after 10 years of marriage . I 'm trying to write a journal about an article from a magazine for English learners , but I do n't have enough time to post it . TOEIC Test . . . TOMORROW ! ! ! TOEIC test is coming tomorrow . I will get a perfect score on it tomorrow and it will be my last time to take it ! ! I can enjoy dating her at the amusement park , concert hall , and movie theatre / theater etc . Hi = ) I 'm 15 years old , I 'm studying at school . Its situated near the Caucasus mountains , in a beautiful green valley . Welcome to our hospitable land of enchantment : ) I like dancing and photoshopping . People want a reason to decide , when they choose one product among lot of other products . `` Do u think u could go a little `` slower `` . in that sentence , why ca n't I use `` more slowly `` instead of `` slower `` ? When I was young , I lived in a small ge village . So , I could n't watch movies in a theater until I was 16 years old . I 've just registered for lang - 8 . I am a Japanese native speaker . I have n't decided when I will take my summer vacation , but I 'm thinking of going on a trip to Taiwan . Today I 'm a bit depressed , because in recent days I have sent lots of E - mails to lots of design companyies in the hope that during the upcoming summer vacation there will be a internship position for me . But I have n't received any satisfactory replys so far . What I am worrying about is that if I ca n't find an internship position this summer in Shanghai , then I have to go back home and stay there the entire vacation . After I had done tracery I took pictures of it . Hakubutsukan wa totemo sutekidatta desu ; D I had to put all my heart into reading , so that I could know what my friends said in their softblog . `` Tomorrow is another day `` Hello everybody ! I think it 's a very good idea ( I 'm talking about the community ) , and of course , any help you can need if you are learning spanish , you can ask me . Business ( on Sundays ) is banned by the law . It 's one of the biggest culture - shocks for me . I was so surprised that kind kind people on this site Lang - 8 corrected my English immediately after I wrote down my first entry . She is a very positive person and she is always on my side . There you can find a range of meanings for the word that you want to learn . Also , there are many samples of sentences which can help you to understand in which situations it would be better to use that word . After that , I 'm going to study English in ECC school . First time ! ! ! We are enjoying it and understand `` Japanese love festival ! `` maybe I wo n't be engaged in the design industry in the future . I was only for a short time in the city to buy vegetables and chocolate ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . You cook garlic and oil on the stove in a pan , then put the chili paste in it . It was pretty spicy , so you need rice and cabbage . I often go to the restaurant because the prices are reasonable and the food is delicious . I like hamberger or any American food , but I sometimes feel like eating Asian food so I often go to the restaurant and the Korean Restaurant near the University I am going to . The event was cancelled halfway . . Equally , I wanna cherish Japanese tradition . But there are traditions which have to be changed . My favorite movie is `` step brother `` with him in it . This story is that Will Ferrell acted as childish and he still does n't get a job even though he 's about 40 years old . I 'm looking forward to this movie DVD on sale . And I want to make many foreign friends . The holidays is called Golden Week in Japan . I started my serious English learning , so I search for a method to the best & quick type of learning English . . . My tongue still hurts . . . . . Also I wish to improve my English , especially in reading literature , because this is hard for me . All the scenes have meanings . Since a boy transfered to our class , my friends ' things are stolen . But , how can I accept what he does ? I want everyone to check my grammar : D And I look forward to drinking with the teachers because I promised them to drink with them someday . By the way , not with the children , definitely ! Hello ! I 'm a coffee shop waiter . so I just smile smile smile . . . ( haha ) Now , my favourite things are cups of coffee and coloured markers . They are also asking citizens and enterprises to save electricity . Recently , I run every morning . I returned to Japan this morning . However , I want to write daily on lang - 8 as much as I can ! At first I got very nervous about driving a car , but after practicing and practicing , I felt that driving is not as difficult as I thought , and I get more confident that I will pass the exam . Recently , I have n't been able to get up on time . Following the situation , there was also a lot of garbage . I will absolutely suceed in my life . . . Because vegetables are cheaper there than at the supermarket . I can connect to Lang - 8 easier now , than this morning . But / However , they had a lot of motivation to learn about foreign countries even though they could n't speak English . But this is good that I was able to run after a source of Query slowly and carefully . Days of the week : Monday , Tuesday , Wednesday , Thursday , Friday , Saturday , Sunday . they label the phonetic symbols beside the chinese characters . all chinese students , once they start school , begin to learn pinyin first for 3 months or even more Maybe , the advertising company aims to change telecommunication from docomo and au to SoftBank . In Japan , many family use same telecommunication company in order to reduce the cost . Excuse my long absence ! = ) I did n't plan be offline for so long . However , all my problems are solved and now I ` have another little problem - I can ` t imagine what to tell you . . . Every day passes as usual and there is no special events that I can write to you about . Unimaginable ! However , in 30 minutes , I must go to class . The most interesting thing about this course is my teacher always presents something about foreign countries like America , France . . etc Sometimes , a person 's feelings may be influenced by the weather . So I tell myself to keep this mentality to confront everything , whatever success or failure , I will gain more in the end . I realize that I would cherish those who are optimistic and confident , and who enjoy doing something new , worry less about failure . They see in every activity the process of self - discovery and self - fulfillment that can not be measured by an exam . Lovely sentences . Today 's topic is about my son . My only concern is that his parents wo n't allow us to get married . If there are any mistakes or suggestions , please let me know . Actually , it 's okay if nobody helps me ! ! I 'm still studying English , and I 'd like to improve my knowledge with some techniques or activities , that 's why I would like if some of you could share with me any experiences that have helped to improve your English . If there were only one language in the world , its culture , which includes people 's thinking habits , customs , and religion , would become more and more homogeneous . I tried to write about SUMMER SONIC the other day , but I deleted it . I will try to write that again soon , so please wait . Well , the project can fit into the category of Design Improvement ; the main point of the project is to invent something new or improve something that already exists . I 'm studying English in Korea . By the way , recently I have been very busy ; I have a lot of assignments and I 've been studying for tests at university . I started to feel depressed and annoyed about my studies . It was very much exciting to interact with people from other countries . I should have been much more modest . . . I wondered how she 's thinking now in the current status . First , I missed my bus because I slept in . This was an unforgettable wonderful journey . This morning is the most chilly when I came here ! I was surprised because I had always thought that the seasons here are warm . because they have a lot of assignments and have to review many study materials . Are you influenced by economic crisis ? And what influence has been brought to your country ? Yesterday , there were such big hurricanes in Japan , and a lot of poor public transportation services such as the trains and buses . because I ` m very interested in foreign countries . . and I want to make friends . . and I want to talk to new friends . . I want to speak freely to new friends . . taekwondo is my favorite sport . . ( I have a sa dan license in / for taekwondo ) I have to memorize my line because there will be a play on October 24th , at my school . Anyway , it 's about time ( for me ) to go to bed . . It does n't make any sense . . . : ( Even if it is a small thing , I think a positive mind is important . And My strong point is Kindness . So I always think about how I can be active . Please fix my writing . It 's no exaggeration to say that Japanese English learners have studied English for many years to obtain high marks on this test . Even if we study English hard for two hours almost everyday , it will take us more than 1000 days . But after a few days , I made some English speaking friends whose Chinese was quite good . ( was is right ) They always write some sentences with complicated logic . I need some inspiration when the sentences or words deserve a better translation . I was afraid that the author would be confused when there were so many editions , too . We had to guess what the author meant and then made them into a sentence . With the scar , I made less and less corrections . I found that I have forgotten many beautiful words after studying in a university because we ca n't use them in a science article . but what the hell is wrong with me ? I hope it will work for me ! When I was chatting with my American friend , I only said `` I see `` and my friend said that it was a `` conversation killer ! . `` How ridiculous , I ca n't believe it ! So , it is difficult for me to use English . I 've been in L . so I could understand what he said . I could n't respond to his question ! My job is to treat guests by showing courteous service and make them pleasant and happy . From now on , I have to prepare myself for the upcoming examinations . How I wish that someone could replace me . During the winter , I had a good appetite and I ate delicious foods . I will be glad to make friends here . Please help me with my English writing . Cybercrime is a crime which involves stealing intellectual property from a computer in a work space . Raining on Sunday The weather is so changeable here . . . But I did it because I believed him . I need to inform everybody that I 'm all right . Although we just said and done something stupid , I still really enjoyed it . I am preparing for the English songs competition and the following is what I wrote for the contest . Welcome to the English songs competition held by Shaking English and supported Last but not least , boys and girls , I think you deserve a big round of applause as well , for being such a good audience . Thank you very much ! I have been having it since I was 20 year - old . The youth do n't understand how important to choose a job in a careful way ! ! I talked about a Manga Cafe yesterday , I 'll continue to write about it . I got married fourteen years ago , but I do n't live wirth my family . It 's about 60 miles from Fukuoka City to my workplace , so I ca n't commute from my condominium . I come back to my condominium from my workplace only once a month . However , giving your children a good education is important too . I ate many vegetables . I bought many vegetables at a 30 % discount at a nearby supermarket . At first they sent me a package which included one guide book for the course , two technique books for paintings , one sketchbook and five envelopes . Until now , I have drawn a sweet potato , a green pepper , a carrot , a tomato , an egg plant , a mushroom and a lemon . My favorite hobbies are shopping and reading books . However , I have a problem . Besides , think more before what I ` ve done , It was really a wonderful soccer game which could represent the top - level in Asia . Through this game , I thought that Asia 's soccer had made big progress in the last five years . What a pity that Chinese soccer could n't develop as much as Korea and Japan . It was really a wonderful game however the refree 's calls were doubtful . The volunteer work is basically something like this : When tourists ask how to get to their destinations , we show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked about a lot of things , such as work , marriage , siblings , friends , etc . It takes about 5 minutes by train from my station . I want to write something about foreign country 's festivals this week , but I do n't know much about them . For example getting lost , not having strict manners in trains , missing an associate and communicating with the Japanese . But contrary to what this video shows / says / implies , in most public spaces in Japan , such as stations , you can get information in English . I am looking forward to meeting them . I went to yoyogi park for Hanami last saturday . At first , I doubted that she had a dislocation of the hip but as I continued checking her , I started to think that her hip joint was OK and I started to treat her . Under normal circumstances it 's me who should be putting some pocket money here but unfortunately I have no money at all at the moment . If hard disk is encrypted , it will be dificult to salvage your data from the hard Northeastern Asia consists of China , Japan , and Korea ( including North Korea and South Korea ) . I think the four countries should work together and make a good relationship with each other , remove prejudice and misunderstanding . Thanks Door for ur ( your ) recommendation . I am studying commerce in Melb . Although I have some friends who have been there for 7 - 8 years from their high school and who knows a lot about the city . On my vacation , I plan to spend my vacation in LA . The next day , I went to Universal Studios , which is in the Hollywood area . The day after , I went to Vince Beach , which is on the west coast of LA . I had an enjoyable time in LA . Some of them who have n't gotten serious damage this time say that the buildings are paid for by national taxes which all the citizens paid , so the authorities do n't need to build ( the ) accommodations if [ 6 ] the refugees do n't want to live there ( anyway ) . Questions in my workbook Doubting / Questioning myself . . I hope to find a perfect one . Deserts cover most of the Arabic lands , so the animals in it are very special . Camels are very expensive . I remember when I saw a black camel . Its value was 15 million Saudi Riyal ( 1 dollar equal 3 . 75 riyal ) . Camel riding is a very enjoyable adventure ! ! Allah taught about Camels in the Qura ' an : To read more about Arabian Camels : I slept with the electric fan turned on and yesterday the weather was bad so I should n't have turned the electric fan on , but I took hot bath and I was hot . In Taiwan , most parents want their children to attend high school . Many bosses think that a bachelor 's degree is not important , they look at character , professional skills , the ability to handle stress , teamwork , etc . In addition , why should these students follow their parents ' orders ? I wish all students could do what we want and be successful . I am a sailor , and I had to go on a trip today . I drove the ship out to sea . now I 'm practicing road rules . . . Maybe a lot of people will be lacking sleep tomorrow . Of course , I never donate blood . : ) Because I 'll have to take an exam , but I do n't know when ( , ) yet . These American novels remind me that people must always keep clear mind and be kind . All the professors have gone to a conference so I have a break . So , I visited two travel agencies . at a bus stop I got off to transfer in minus 20 degrees . I 'll never forget the experience . Actually this is my second winter in Canada . I want to listen my favorite music all day and do anything I want , not just sit in an office like a doll . The grass will cover my sweet soil . 3 , How do you like me ? How do you like him ? A sharp decrease in the number of children and the aging population as a result of longer life expectancy in recent years have created many problems . I rode with it and started to peddle . . . . Nowadays , I also have to do it in my college with my friends . So now I am going to show you . Hehe , I had so much fun . We talked about a lot of things but I could n't catch what my friends were saying sometimes because I did n't understand , so I just smiled and laughed at myself . After that she went to do yoga while I went home still very full . Although you would want to meet your family , anybody wo n't tolerate your action , because your office is always on alabor shortage to reduce personnel expenses . . All the people there are foreigners . Because I can catch my teacher 's pronunciation . On the other hand , when we take a indirect lighting , we can feel relax and become more creative . Thank you for reading my diary . It is really difficult for us ! ! : < We talked about each other 's pronunciation . It is impossible to select music , so it is not useful to study English . This is just subconscious , but it is working all the time in my life . 6pm to 0am , I am working for Okonomiyaki restaurant then . . . . To study English effectively , we have to find a partner who knows the language we are learning and our native language . I have no time to sleep , but summer vacation is coming soon : ) Through my kitchen window I can see two big feet hung from the balcony above . My upstairs neighbour hangs Father Christmas from her balcony each year , and the feet cut off the view from my kitchen . I can wear a T - shirt and half pants . After that , we went to the Brooklyn bridge and crossed it . The most famous ones are Suzu - mushi , or bell - ring insect , Koorogi , or cricket , and Kantan , or white cricket . I ate very clean , I cut out all white carbohydrates , soda , sugar , and fat from my diet . Not only for myself , but also for my mother . ( because she have brought me up until now ) One was a friend ( of mine ) when I was a university student , and the other was the agent of my life insurance . After seeing the Buddha and deer , we went to take a Purikura . Last year , I was a call agent on telephone line and sometimes I had to talk in English . This morning , I read an article in the news regarding marriage ; it said that women in Japan want to marry men who receive at least three - million yen a year . I heard a story from my client about international marriage . Though I think it 's culture , I would like to know more practical details . I think they just barely can read , write , speak and listen to English . I hope that many students in Japan are interested in English and master English as soon as possible . For that reason ( will ) , I study English hard now . But , I 'm not going to go because the ceremony is only for family members . I like simple physical works . I want to be a television journalist . I think `` correspondent `` sounds more professional than a `` reporter `` . Most people have attacked head coach Okada on the internet before , and the media does n't usually release complimentary news articles about him . I understand when people speak it , but I sometimes have some difficulty with speaking . I 'm a university student , and I major in Chinese Literature , It 's not just true for Japanese , but for any other languages . In ( the ) winter season , I often want to eat hot soup with chicken and lots of vegetable . I like winter sports , especially snowboarding . I chose the Erasmushogeschool Brussels in Belgium because the Translation and Interpreting programme offered at that university coincided with one I am studying at the Baltic International Academy . One semester of studies in Brussels left me with unforgettable memories and valuable experiences . The tenants were students from European countries like Greece , the Czech Republic , Turkey , Lithuania , Estonia , Germany , etc . Secondly , the courses I chose to do at the Erasmushogeschool were useful , as I was taught the history of Great Britain and the USA , English for Academic purposes , English for Cultural awareness , English grammar and lexis and German language . Finally , Brussels is a beautiful , picturesque city to visit with numerous parks and museums . Maybe now is not a very good time for relaxing but I have decided to take it . The instability of the state of atmosphere shows with the changing the season , I guess . However , as for me , I 've abstained from a booze - like matter for more than five years , after I decided there 's more to life than just drinking and getting temporary hapiness . Because I like tea and coffee , which cause stains , it may cause my teeth get a little discolored . Please teach me about English grammar . What is the difference between these two sentences ? Obviously , we missed each other very much . But what was saddening was one of my friends was not with us as he was in National Service . I got to know that the earth is spinning a bit slower this year , so we counted from 11109 , 8 . . . . . . . . . . . . . until the firecrackers came into sight . ( until , till ) she may be joking . I get so much pressure from the environment hat I have stomachaches every day . Today , I had my first classes at Osaka university . In high school , one class lasted 55 minutes , but in university , a class lasts 90 minutes . I have to get up early in the morning tomorrow to not be late for my first class . I practiced boxing with my friend My friend is trying to become a boxer . My most favorite ( or favourite ) song is `` Lovers Again `` . I was sleepy during my afternoon class . I think making relationships and making new friends and chasing your dream is the most important things in my life . It 's been long time since I wrote my last diary . I think ( or hope ) that some people also know about the problems caused by American soldiers ( or their families ) and the pain they inflict on the Okinawan people . An Okinawan guy , who was on the way to a Coming of Age Ceremony . The first picture above is my family 's dolls . There are five dolls and two steps . I 'm going to train tonight . the first note By the way , I finished reading `` HARRY POTTER and the Chamber of Secrets , `` a few days ago , which was very enjoyable , and now I 'm reading `` HARRY POTTER and the Prisoner of Azkaban . `` A guy named Sirius Black is after Harry . I hope that I will make many good friends , and I also hope that there will be a lot of friends from all over the world who will help me improve my English . Thank you ! It 's very simple but a very excting game ! Today I cleared a new song . This song is one of the most difficult song in the game . I 'm very glad to have cleared it and I love `` Evans `` ! very cool song ! I usually eat lunch in the office but today I went out to a restaurant with with my female colleagues . The spagetti was good too , but the portions were so big that we could n't eat it all . So , we ended up leaving a little food behind . Especially vocabulary . It 's a very small house , just two room inside , 5 families there but many korean students live like me . It 's 2 years since I have been separated from par , mam and my brother . Friends and cats have solaced me and that is better then living alone . Someday I want to live in a city like Samchengdong , I have just been there once , but it was really cool and fantastic ! I have never been in a korean city like there . It 's the very fusion of traditional and modern and truly colourful . Frankly speaking , I am the kind of guy who gets tired of anything really quickly . Also , I find writing in English very complicated . It seems like such a long way to go but each of us is struggling . Every day , my parents feed chickens , ducks , pigs and fish . Go somewhere I have never seen . Today , we studied the culture of America in class . At the beginning of the class , we learned about early American history . The first stage was is the colonial period of time which began 1607 . Because the cinema requires silence . But why are they becoming popular in foreign countries ? Could you help mechoose the right one to use in a sentence ? Is is ' She did not fully appreciate the value of the environment `` or `` she did not enough appresicate the value of the environment : ? I 'm like a professional player . What 's your all time favourite sport ? If they really understand the meaning of ' eating meat ' , Beautiful world , now I am exhausted but . . . . I feel really sorry for my friends that are waitnig for my pictures . Especially listening ! ! ! ! The purpose is to tell the parents about their student 's school life , and to know about their student 's home life . We noticed that the weather was getting better as we were leaving the store . Article 128 . - The Inter - Secretarial Commission will promote a program for the formation of mutual organizations and insurance funds with self - insurance functions under the relevant laws , in order to facilitate the access of producers to the insurance service and to generalize their coverage . Osaka university 's professor Ishiguro invented an advanced humanoid robot . It is like skype , but a humanoid robot . It 's the purpose of this humanoid robot . I ordered a digital camera last week . I look forward to taking pictures of many beautiful scenes . Good owner , good co - workers and good environment where I can practice to speak English . I drank 2 cups of coffee and ate 3 pieces of chocolate . What happened last Friday We were looking forward to seeing her since 3 weeks ago . It turned out that she had changed her hairstyle and her teacher put heavy makeup on her . But some children were clamming up or crying . It appeared that they ( the children ) were unsightly . I also met my parents and relatives . I like to eat umeboshi , mozuku ( like seaweed ) , and fried chicken ! because I do n't know ! It takes at least 15 minutes to get there . Which are reading , writing , and listening . Yesterday , I caught a cold . I 'd like to contribute to treatments of diseases through my work on neurophysiology some day . The original version of this song has been recorded by the American rock band Journey , written by Steve Perry a member of this band . However , when my leg first stepped out of my room on the way to complain about this to the hostel office , my cool mature roommate stopped me . `` The ture man will never be afraid of the little insect . `` said he with a calm voice , `` I used to be bitten by the insect too , but now they can not harm me any more , coz I have already grown a layer of iron skin `` hobby : driving , nico nico douga ( premium member ) , and so on . . . Because , I finished English school this Friday . Please help me ! ! Does the H1N1 flu cause issues in your countries too ? Anyway , I hope everybody on lang - 8 can be healthy without getting sick : - ) I was very nervous before that . He tested my practical knowledge of MS Excel . I thought : `` I can really work in the real company ! I cooked alot of summer vegetables . In other words , the meaning is hard for a little child to understand but I have to say the melody was terrific . Can you help me ? If you can help me , the best method is to give me money : $ 200000 . because mistake might . . . . . . . . . . . They are kind of losers in Japan like me . I will endure for them , but instead I should find something to be happy for myself . Although I ' ve studied English since I was in elementary school , I really want to be a good English writer . I will introduce to everyone my favourite Japanese artist . My friend will already be getting married . Bless my friend , I hope people who read my diary congratulate him . . . Please would you become my friend ? `` It was a plate of salad and spaghetti . I like that menu , however , I have an allergy to cucumbers and tomatos . I forgot to tell the chef to avoid that food . There were no cucumbers and tomatoes . The chef knew about my allergy . My son is only four years old , so he is too young to feed the larva well . Then , about two weeks ago , the larva hatched and become a pair of beetles . Last week , I suffered from a terrible backache . As summer is coming , cockroaches appear in kitchen , my room , everywhere . I 've heard that they can survive eating dandruff and dust on the floor . Although I vacuum the floor out almost everyday , I find one or two every week . I set them in every room and expect them to sweep all of the cockroaches out . So today class is starting at 9 : 20 . It was quarter to one . So I hope to find a English native speaker for a language exchange . For me , it would be an enriching experience and an honor to contribute with my voice to the World Youth Choir , which is a well recognized organization . Maybe my internar clock has already been welcoming this happy occasion . After I went home , I continued the study in two 's complement and I finally understood it . Main characters are John and Nelson . John is trying to kill Nelson in prison for revenge . He has been put into prison three times by Nelson 's father . But Nelson 's father died suddenly , so John changed his target to the son . John tries to kill Nelson in many ways . But ironically , Nelson , who was really weak at first , rises up through the traps set by John . Even Nelson 's penpal , who is only about 6 years old , reads aloud a letter from Nelson which includes lots of bad language , in front of his classmates at school . In such a situation , all of the characters do their best for their own purpose , but really , they 're all just funny regardless of whether they accomplish their purpose or not . That 's because I ca n't imagine living in such a harsh world like the one in the prison in the movie . They turn their harsh situation into a funny one with their expressions . I was busy finding a job , traveling , fishing with friends , etc . Walnuts bread ? Bread with walnuts ? Bread in walnuts ? It was walnut bread . As you know well , this is a traditional tactic for us . She is really an outstanding girl , and because of this your friends would be jealous of her . But `` or `` should n't be at the beginning of the sentence , should it ? I am writing a diary in English because I have a few penpals and I want to improve my English . Introduction to my hometown . because there are only a few . Last night , after the Christmas Party ( a little bit early , is n't it ? ) held by the school , we drove to Jiaushi , Yilan ( northern Taiwan ) to enjoy the hot spring . Unfortunately , all the rooms were full . We had a very brief sightsee in Jaiushi downtown , then went home in tears . . . ( j / k ) I had n't exercised since march this year , because I am suffering from acute muscular pain now / at the moment . I think it 's TERRIBLE ! He did n't call me although I texted him like `` Have a great night Joey `` Oh I made a new Blog account ! And I want to go to a good university ! I am studing hard in math , Chinese , English and so on . I am busy everyday , but I feel very happy , but I think my English is not very good , I want to make a pen - friend ! At the same time , they are producing water pollution and causing desertification . he is the president of his company . It was faster than I thought . But she must be a cute girl who has style . It 's nice to practice writing through the Internet . It 's uncommon to do this kind of thing out of school . I have never continued writing blog or something over half a year . even though I 've only worked in that company for three days , I felt that I was working in hell . For my better future , the first thing tomorrow is to call my boss , to tell him my decision . But I have no friends who speaks English natively , so my English is not that good yet X ( In fact , I want to go there with my girlfriend , but I do n't have one yet . I think the Bund is an interesting and beautiful place . When I was a little girl , my grandpa always said to me , cherish everything you have now , and be a happy person . Life is like a long journey with many challenges and difficulties , and many times we ca n't change that fact , but we can change our mind and thoughts , think differently , and not get upset , try your best to face it , solve your problems bravely , and I believe we can see the sunshine after the rain , that we need to cherish everything , only the small things matter , they can change a lot , even our lives . I thank my parents , they gave me a healthy body , and they support me no matter what difficulties I meet . I thank my friends , when I feel lonely , they always spend time with me , share their joys with me , and make my life more wonderful . I thank nature , it gives me air , sunshine , the blue sky , rainy days , and a great mood everyday . I thank society , it 's like a big family , and apply many ways for me to look for ( unsure what you mean ) . I thank strangers , although we do n't know each other , when we are in trouble , the hands are always around us , and lastly , I thank myself , I let my family members feel happy , and make my friends have someone to share their tears and joys with . . . . You have to be responsible for yourself . I think everyone is faced with a barrier of the language at some point , but it may entail a lot of culture difference as well as those of the grammar or pronunciation . I will persist in writing in English and in other languages as well . Races in North America are not good for people in Japan because of the time difference . I have thought about camping for a long time , but because of my economic problems , I have to put it off . I went to China town in Yokohama on New years eve and celebrated the new year there . That 's why I decided to write a diary . in the proess of globalization , the developing countries did not share the achievement of their economic development . Secondly , economic globalization results in the instability of the economy in the developing countries . facial expressions of shop assistants , their manner of speech , from overhearing of businessmen talking and the like . . . for instance , shop assistants used fixed formal phrases . This time , I bought many clothes and I already regret having bought some of them , which happens each time I go to the sale . Especially after I finished my work it tastes wonderful . I am always drinking Tiger beer when I was living in Singapore . Anyway , this is so famous in Japan that bananas used to sell out lol If u are interested in this , try it ~ I 've never tried it though ~ ) This cream puff was handmade by my colleague . My japanese is so poor but he is patient and carefully translates japanese into English . He decided to poison them . Anyways , it is extremely crucial for me to decide what it is that I really want to achieve ! Even if I 'm a millionaire , it would mean nothing if I was n't happy . Oh , I just remembered another important idea I learned from books . because it was not important to my life when I stayed in china . I went to Grouse Mountain to climb with my host father . Mt Grouse is a very popular mountain in Vancouver . I also practiced the making of Zonbi today . I 'm looking forward to the Zonbi Walk . I want to talk about movies or soccer with you . I like horses and cooking . I like watching TV . And what do you like ? Our class has Korean , Japanese , and Taiwanese . My teacher is an American . I must research fashion by the magazine . The industry of my choice is a firm company , marine or an air transportation company and hotel . Maywa Denki , one of the artists who displayed work in this exhibition , declared their concept to be `` Device Art `` . In such relations , devices are mere tools , being the subject to make the content . Only the content is regarded as art . I am not very familiar with contemporary , so it 's difficult for me to understand this sentence . Do I have an advantage for learning foreign languges ? ( I 'm not sure how to correct your second sentence ) Citizen watches Japan can not supply the parts only . I 'm working as a telephone operator . but pay is relatively good and , physically , its not a hard job . Best of all , I work short hours ! ! Please tell me if the things I write do n't make sense . Japanese restaurant `` saizeriya `` I went to the Japanese restaurant `` saizeriya `` today . It is a very reasonably - priced Italian restaurant . When I am sad , I always count my favorite things . ( I did n't know the parts were still in there ) I guess he did n't make a full recovery , but he looks fine when dancing . Unfortunately , we can not talk to the animals b ' cuz ( because ) we use different languages . I usually related aliens with everything around me . I think taking photos is good for improving your sense of I believe in heaven and I also believe in hell . I 've never seen either but I believe they exist . They have to exist , because without heaven and without hell , we are all just heading for limbo after death . The places have identical features . English is pretty hard ! I will do my best in order to achieve my goal starting from RIGHT NOW ! Singapore people who lived one generation before started using that language . The pronunciation , accent and rhythm of the language are very different from English which we have learned until now . Yesterday I listened to this song on You Tube . When I was leaving the car park , my husband gave me advice . I really enjoyed this summer . I have to practice soccer everyday , practice futsal every week , and practice aikido sometimes . What 's the season in your country ? Did you know that a big typhoon is coming to Japan now ? Tomorrow maybe it will hit Japan . The TV drama `` OC `` is awesome ! I study english by watching the drama `` OC `` . This is more natural . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyrics are cool and their music has a lot of energy please correct me and thanks for reading - . - Anyway , I am going to study English using `` BENJAMIN BUTTON `` from now on ! Tomorrow I will have an English examination . I hesitate on what I should choose . We had a substitute teacher , but he was nice and had a good sense of humor . Since I read books until midnight for two consecutive days , I 'm going to wrap up my entry . I often drink hot tea , because I have sore throat . I think that she is a real personality . I laughed silently to myself when I was in the dream . I chuckled and giggled . I hope my bad memories wo n't eat up the pleasurable dream ( in which the man loves me ) . Of course , amime is Ok . It is well known that English learning includes four aspects : listening , speaking , reading and writing . I do n't remember who , but someone told me that reading and writing belong to cultural aspects , while listening and speaking belong to language aspects . I major in economics , and now I 'm busy with group study and studying for TOEFL . . For example , I have 12 coworkers in my office , both regular and temporary exmployees . One of the temporary workers is very dirty , lazy , and tough , so most of the other workers hate her . Even though she realizes this , she makes no effort to change her habits to foster better relationships with her coworkers and create a more efficient working environment . What I 'm trying to say is , `` If you do n't want to change , search for a job more suited to you . I was hanging around in Shinjuku after work and I saw such gorgeous displays . I wanted to watch ( them ) from the cafe across ( the street ) , but unfortunately , it was filled to capacity . So , I ca n't become the superintendent for our dormitory . Today , I watched episode 4 and 5 of the second season . I like Serena . Who is the actress who plays Serena ? the class always stresses me because I teach students who prepare for university entrance examinations . ( It 's very difficult and important for them in Korea ) I told them I was planning to go abroad to study English . but I do n't get any chances to speak English or Japanese at my workplace and I 'm not satisfied with my current job . This is my first time going to ita . Nobody understands how I feel . Yesterday my friends and I played basketball in the park . When we played basketball my friend hit my head . When we rested next to the basketball area , The father played with his son and the mother just sat on the bench I played the piano with my daughter in the concert for the first time yesterday . I admit that not every piece of Seth Rogan 's is as brilliant as Superbad or Juno . Are people in modern society losing their moral values ? Every year , bullying at school occurs and it does n't seem to disappear , rather it 's becoming worse because there are some students who committed suicide after being bullied and the way of bullying is becoming terrible . There are some people who talk so loud ( OR loudly ) with thier mobile phone in trains or buses , not considering other people around them . Also . . . I do n't know difference between `` memory `` and `` remembrance `` I stirred and cried . There are many many traditional summer festivals . I recently went to bed late so I am worrying about my lifestyle . But until now , I do n't think reading English articles is very easy . Did you see Avatar ? I used to read fiction when I was young had a lot of free time . The method is good . I study about 1 hour a day and write with native speakers . By the way , I would like to know Jiro Shirasu which made the biggest impact in the world around 1950 . Plese check it . I went back to my father and mother 's ( parent 's ) home . Then she clapped her small hands and swayed to the song . I 'm very excited about my first diary . Then I ran around the park near our apartment . I had a good time eating the delicious pizza with the group . Recently I 've busy so I could 't write a diary . I 've been studying English for years and have just started learning Spanish . I also received the high school entrance examination results , and I passed . I like eating and traveling . and sometimes I would feel shy . Maybe I fear have a fear of making mistakes . I watched the movie `` UNSTOPPABLE `` A repairman came to check the air conditioner in the morning . He found that one of the possibilities was a short voltage of the remote controller . Jim Parsons 's smile is Cute . XD I emailed that to them on last Saturday ( their Friday night ) , that I asked them to accept for me to stay at their home again . However , they did n't reply anything to me until Monday morning ( their Sunday night ) . I worried that they will have some troublesome thing during the days which I expected to stay , so they were not able to reply to me . She did n't read my e - mail until when I called to her , and pleased to accept my request for an accomodatin in their home again . I cant say it well in English . such as learning phrasal verb , current English , Grammar etc . Well , what I can do with myself ? However , I agree with my teacher . . . What about our new English books ? I 'm starting a book called ' ' Laser B1 ' ' . Although my English level is very low , I would like to communicate with many people . Though there was also an unnatural scene , it was very interesting . My favorite school subjects are biology and mathematics . My favorite TV show now is My name is Earl . It was a good experience for me . We could divide business items . Good morning . First I watched Love Actually , of course it was the English version . Q10 : Who is the most interesting person in your family ? interesting in an unexpected , sudden situation . Anyway , that 's why I like him . In my future I 'm sophomore a at Kyouto Notredame university in Japan . There are some students who want to be a teacher , OL or technician . They are studying to acheive their dream . I thought about how can I could improve my English level during vacation . It is to chat with foreigners who can speak English ! ! But I also think that teachers and parents should give children diverse education so they can have great lives . I felt nervous , frustrating , heart 's throb . but when I was preparing the competitions I was nervous and I felt fresh when the competition was finished . and I have to do my math homework , and to study many subjects . I take it regularly , usually twice a year , in order to check my level of English . It is totally amazing because she was speaking with her own words at this speech . Anyway , I think everyone should see it once . It has made me a little confused . His work is so popular in the world that he has many fans . When I watched this , I thought this could be quite an innovation . At the same time , I thought of some problems and am still thinking of solutions for them . we were singing and playing and eating the buffet for about 5 hours . February 24 is the birthday of 25 years ! ! Keigo Higashino is a genius . His stories always amuse and surprise me . However , I still used it because I am not yet finished to write my journal entry . I have read a book a bit because I have traveled all day . I thought , I will be late . When I got to my office , the morning meeting had already started . I must admit that I didn ` t do anything throughout the holiday except Harry discovered he is a psychopath . How much syrup ? I do n't know how to express my opinion . Ah , I want check the grammar or sentences but I have no time , but I have to earn the money for a beer . She said that from that moment I had become hers and none other 's . There are no differences because it 's still Asia . confuse : Both of them told me different information about the nuclear plant , so I was confused . compete : 57 soccer teams will compete against each other this summer . In the morning , I see many Chinese college students reading This is a Korea 's traditional day . On this day , we celebrate our harvest and we show our respect to our ancestors by a special ceremony . On this day , we also face the worst traffic jams . For example , it usually takes 5 hours from Seoul to Busan by car , This is a cultural difference . so I 'm disappointed about this . There were so many people in a narrow room that I 'm slightly worried about the infection of swine flu now . We just walked around the bottom . ( ? ? ? ) And I think he is learning and coming to understand a lot of things . I will travel abroad . They strengthen our interpersonal relationships , self - confidence , and allow us to gain more knowledge and friends . Recently , There was a big earthquake in Japan . We appreciate very much . Unfortunately , even if I explain about the movie well , the reader ( I mean the friends of mine who will correct this . . ^ ^ ) will have difficulty understanding the story of the movie . I recommend this movie to all of you interested in traditional Korean culture . I got up at 12 : 00 pm and I was just a couch - potato all day . Maybe it 's because I really hate my future speciality and do n't want to be a programmer ( I 'm the one of that persons who go to university just to get diploma ) . We got acquainted with each other through the on line community named `` mixi `` , which is like `` Facebook `` in the U . Gakkai is Japan 's largest religion , based on Buddhism . She is allegedly a bit older than me and working for elementary school in Osaka . It was unfamiliar to me , as I was born and raised in Tokyo . A further reason why I want to do this is to get used to writing English essays without the hesitation of choosing the words and structures of my sentences . While my boss is away from the office I tried to use his machine to make a cup of coffee . So when he came back from abroad I can brew one for him . I tried to go to a Bikram Yoga class , but , regrettably , I did n't join it . I CANNOT WAIT ! ( typo ) The first , I live in a rented ( rented ) house . My price is more expensive than their budget , Pic3 : How to create GDP ? I had paellas of seafood and chicken . I suddenly changed direction intentionally , and then fortunately I managed to avoid the pickpocket . Anyway , Barcelona was great place with good sunshine . I 'm sorry for my English = ) I want to learn spanish because I may take spanish for my foreign classes , but I am afraid because I 've never learned spanish before . . . Because my climbing shoes stretched , I bought new shoes . They were warriors wondering around the magic world at least during the play . Our journey in the D & D world shall be updated in consistence with our actual progress . I 'm a Japanese woman . She is just 3 years old , so that she could not understand what the TDL is and almost all the activities . Then I came back home , went to au shop to fix my phone , because my cellphone has something wrong with the connecting . If it is translated literally into Japanese , it means `` anata wa shitteiru `` . I have a headache , but I do n't know the reason why . or , relief after finishing some work ? I 've read many books on how to study English efficiently , but I have n't focused as much on speaking English well . On the second day , we went to an island that is near the Kota Kinabaru we went by boat . Then we returned to the hotel and we had a nap . Then we relaxed and had a massage . I then asked the staff ` What do you recommend ? ' ' Yesterday I presented my graduate thesis . The economy of Philippines is developing but they have a crisis . 1 : Put the following five animals in order of preference Look at the explanatory note below . Today I went to see the hospital because of nasal inflammation . I had an allergy test with my blood last week . When I bought `` How to Speak English in Three Months `` , that envelope was still sealed . Nothing is finished and nothing has changed my English skill . My favorite book is `` TOEIC elderman 755 points clear ! `` # 2 to watch CSI Miami and I will write that story lines in my words . Anyway I have to stop buying English books , text books , etc . I learnt English long ago ( when I was still at school ) but since then unfortunately I have n't used English . I decided to start guitar , and I joined a music club at another college . My senior said `` I advise an early start on guitar and you should buy a guitar in which the price is between 70000en and 80000en `` Finally , I called my mother , she said `` Oh ! She instructed me to call her friend , who was a professional guitarist . He told me his favorite internet - shopping site where he bought his guitar . He said `` I think at first you should try to purchase a cheap one and if you think you want to play the guitar , you should buy more expensive one . `` Now , I wait for my new guitar . Will you listen to my music , if I learn to play guitar very well ? ( haha ) There is the flower shop called `` Flower Factory `` near my house . I bought cut flowers , a poinsettia plant , a lavender plant , a rosmarinus officinalis plant , and a flowerpot . Please correct me . B : If you are not talking about the IQ thing , I think I 'm smart enough to say `` I do n't know . `` honestly , if I am asked that , I do n't know about it . My husbund allows my son to take it . They are so yummy . Today , I found the sweet ' ' DOCE DE LEITE ' ' so yummy ! Should I go to see a doctor ? My favorite team is The Tokyo Giants . I 'm very excited and happy ! I was too happy to believe it . They made me a cake which tasted very delicious and the decorations were also pretty . It 's raining now . Recently , I 've researched how to study and improve my skill . Last weekend I returned home . Since my hometown was far away from Shenzhen , I came home by train . Although I have grammar knowledge , I still can not write any correct sentences . I registered for this service . I would like to just stay at home not go hang out with my friend but I have to go and vote for the prime minister . Why have practices like this not disappeared from Thailand ? Even now , there are still a lot of problems with elections . I thought I would remember the experience forever , because the training was so difficult for the girls . I met a couple of CPAs and colleagues who are studying hard for the CPA exams . it 's my dream xD ? and now I shall go to my summer house . Everyone has their troubles , a positive attitude must come first ! Potato chips It is difficult to use a mouse or keyboard while you are using your computer and eating potato chips , However , it can be hassle to wipe it every time . Oh and I forgot to say that the goal was magnificent ! I will start work as computer programmer starting next April . I am studying English and history . one man had killed nearly 100 people . Thank you for teaching me such a funny word . If I am not able to understand these slang , it might be difficult to communicate with native spekers . It is boring for me to only study grammar , essay , grammar , essay everyday . Of course , I know it is important to learn these things . I went to Beijing in China for four days in this week . maybe . . . He is a British writer . Now I happened to find an ad on the Yahoo page which says that you can take a trip to an Asian country ( you do n't know whereabouts to go ) only by paying from 18000 yen to 23000 yen . the traditional opinion that boy is more precious than girl has changed Once , he revolutionized Japanese telecommunication industry where NTT had monopolized for a long time . He faces the opposition in his own party after he survived the no - confidence motion from the other parties a few weeks ago . It 's almost spring . Now , we are filled with concerns about the aftershocks which still continue and about radiation . I think something will change in Japan when spring is coming . I asked the employee at the main desk , and he came to check on the printer . He fixed the connection in the back of the comupter , and it eventually worked . After the face to face interview , I was asked to finish a written test within half an hour . The younger sister lies in the morning , and speaks the truth in the afternoon . ( Could I use this sentence to replace my last sentence ? When I went home , I felt my body ache and my body broken machine . Yesterday , I stayed at home the whole day , I watched a film < The Devil wears Prada > . by the way my classmates introduced me to that film years ago , , I 'm always watching it . It has been a very long time since I saw snow . My English class In this university class , we study it by reading American comics . The teacher in this class is really loves American comics . So , every class , he recommends a lot of comics . She describes the mental state of women in a variety of situations in her songs . They cry from the loss of love and are delighted with new love . My favorite tune by Maria Takeuchi is `` Sutekina Holiday ( The Marvelous Holiday ) . This is a Christmas song . this season becomes meaningful . In Japan , we differentiate between bowel trouble and stomach aches clearly . Sometimes we feel some pains in the stomach caused by stresses and pressures like mental factors , but bowel troubles are caused by some foods I have stayed at home all day long . The menu is fried oyster , corn cream soup , salad , and rice . So I decided to learn English . I 'd like to tell Japanese how foreigner are interested in Japanese . But many areas of Japan were hit by heavy snow and caused havoc . I juse finished to make a powerpoint for my class on Saturday . my internet connection was lost now and wanted / asked me to close ( the window ) so oh my goodness I was just writing my entry a few minutes ago but I will not blaim it because I am happy today and my heart is happy too . By watching NHK , I can watch all kinds of wonderful programs they have to offer . Sometimes I concentrate on watching TV , writing down something that I 've never heard or learning more useful expressions than I 've known . My English is terrible . But I try and try . . . . then , my journal is written up . I have to eat less . I also listen to English in a similar way and I ca n't keep up with the conversation when native speakers talk . Then the spectators were yelling at him and criticizing him severely as soon as he ended his remarks . After that , the judge convicted him of the crime , but George did n't succumb to the judgment and requested an appeal . This morning , I said something wrong , and my colleague just used it to make fun of me . adult ceremony But there are still some problems with them , especially when taking metal ones ontrains or airplanes , because some security personnelwill take it as a potential threat and confiscate them . My teeth do n't hurt now and I 'm really glad about this . I do n't have enough money to go shopping and it sucks . But I did n't have any idea until now . . ! ! Day 90 : I see that everyone around me seems to be more clever and more well - rounded than me . Everyone like themselves , living so naturally . Calaf declares his love for the princess , but she asks him to leave . He refuses to and confesses his name . However I ca n't kill them because it 's disgusting so I always try to shoo them by using a notebook ( by waving the notebook at the mosquito ) . Also my friend got bitten by poisonous spider and she has a fever from its venom , which is worse than mine . I ca n't keep waking with them for more than 10 minutes . This time I bought two mineral waters in 2 liter bottles . The teacher asked us , ' If your friend is wearing a new suit , what do you say in English ? ' . I want to know what is your recommendation on the places to go to , the food , the amusement and so on . . . Although it 's winter vacation , it 's still too lazy , huh ? s second part of school means that after summer vacation , starting new semester . If we want to take lectures from them or have discussions with them , obviously we have only two choices : waiting for them to come to our country or going abroad to meet them . Hence , it is better to go abroad and meet them instead of waiting . Thus , for students , especially those who want to become researchers , entering a famous foreign university is a good option . In fact , I met a foreigner who had better understanding than me about Japanese culture . In this grobal era , it is very important to understand our own country because it will help us to understand other cultures and , thus , help us broaden our horizons . I heard from my friend that there are only a few translators in Japan . On our way , some bicylcles appeared and caught me by surprise . The guard tried to stop them as he told me to cross the road . Well , we ate BBQ while talking about something interesting which happened in the junior years . If you had misunderstood something , I would apologize to you . Actually , the KAIST graduate school announced the final result on ( September ? ) 17th , and I got accepted into it . Japan has been plagued by this disaster still My sibling are growing , . He already has a beautiful wife and lovely daughter . Next I don ` t know why a native can pronounce this well . But checking their profiles , I found out most players were taller than 180 cm ! ! ! Polite or impolite The posters that appeal to people not to hoard these goods are widespread on the Internet , especially on Twitter . My efforts in writing and reading Japanese are a bit pathetic as of now , but even so , nobody seemed to actually mind . I want to improve my English and talk with many foreign friends . Shrimp and squid Honestly I dont know how much like her and also I will be going to US in August to next march ( for 7 months ) . I need to say good bye as soon as possible . I 'm going to England and Italy from tomorrow to 31th . She advised me `` Do n't hurry . It may be found when you are thirty , fourty , perhaps now . Of course each person had a room . 2 were New Zealanders , 2 were Japanese , one was French , and the last one was Indonesian . 2 girls and 4 guys . We have 2 professional basketball leagues in Japan . Sendai has 3 profesional sports teams . I believe that sports make us energetic Some of them were put on ventilators . I do n't actually have any special hobby thing that I do regularly . Geez , why did n't I know that before ? ! But I will go there tomorrow , even if my ankle still hurts . : P I miss my family . I have a nice family ; there 's my father , my mother , my little brother and I . Many fathers and mothers come to school and prepare food for their children , but my father and my mother did n't show up . I want to have a holiday . Though I decided to do so last year 's end , You know what happened in Japan . The good thing is that all the entries usually have not only corrections , but comments too . And do you know why we call it ' wisdom ' in English ? I was recommended an English dictionary from my friend . But I may be able to learn many words from this dictionary . He appeared in a 600m relay race . And I also appeared in a ball - toss game . Luckily , I listened to someone 's speech in the evening and I finally got motivated . Your stones ca n't be taken , unless they are surrounded completely . Before , I had n't decided what career I would study . I consider myself a good person who loves enjoying life and spending time in nature . While it 's always hard to deal with my studies and receive comments from a professor , to be told `` the amount of your effort is absolutely short `` is the worst part . It 's horrible to acknowledge what I can not do , in spite of my strong desire to accomplish it . But a year ago , I became interested in American movies and dramas . I think when we learn a new language we need something interesting . I have a cat , fishes and chickens ! I thought it was wonderful . When I was a kid , I believed that rabbits lived in the moon . Then we started to introduce ourselves . I will eat less than usual at dinner , without carbs . And so , I go to the small kitchen in the office and drink coffee . I cooked Korean barbecue , Kimchi - tuna stir fry , Laver omelette , and How do you learn foreign languages ? I 'm spending most of my time studying foreign languages like English and Japanese . I 'm studying 2 English vocaburary books and using a iPod application that can help me build my vocabulary . The key to building my vocaburary is ' repeat ' I think . Do you already know about this ? If you 're learning Korean , I also recommend a online dictionary . Which path to choose is very important , so it 's a very difficult choice for me . Field Survey I tried my best to write this a friend supported me . Chrysanthemum is typically used , but flowers such as roses or carnations should be avoided . Second , write it in English . Fortunatly , I will have a wonderful holiday . About 2 days ago , I bought a magazine and a topic in it said many people have a problem called ' email nervousity ' . I check emails everyday and handling these emails will occupy at least 2 hours of my working day . there were so many old people sitting around the stage where an old man was singing with great passion . the average age of the people was 50 , of course , except me . It was also interesting to see the old fashion in a club , except that the old people did n't like to sit on the barstools . ^ ^ In Japan , the high school baseball championships is especially popular , as much as professional baseball . I think the American movies are so dynamic . It was pretty hard for me to read , since I had n't even read it 's translation . Today , I visited my customers because I understand the orientation of improving our new products . My experience in Australia Today , I heard that he carried some heavy things from a track to places where he had to go . I have been very busy writing a paper in order to graduate from university . It 's very popular in Japan . This book teaches you lots of Japanese slang . Beyond that , this book taught me a lot of English slang . However , I have to be careful in using slang because it might make some people uncomfortable . Now I am studying English and German . I slipped down a small bridge from the top to the ground . She had already been in Canada and she recommended me to stay at the same home . I hope she got it easily . Japanese traditional food is healthy . Most non - Japanese peple people hate Natto , which is fermented soya ben bean . When a man marries his wife and she becomes pregnant , he thinks about pregnancy very often . The charat ( character ) on the blackboard is so small ! ! I want you to write down bigger charat ( characters ) ! ! `` I was very sur ( surprised ) because Korea has a culture about respect & great manners to adults ( or oldaged people ) and that action was very rude to the teacher . And teacher erased her charater and ( rewrote ) the same content . Is a Protestant more conservative ? I 'd appreciate it if you check my English or send me a message . We enjoyed Teppanyaki ( sliced meat and vegetables grilled on a hot plate at the table ) and a bottle of Wine . We enjoyed Sake and raw fish . I could work much more comfortably if I replaced the memory boards with ones of more capacity . I 'm not sure working comfortably is worth the cost . Should historic buildings be preserved or be replaced with modern buildings ? With the increasingly rapid development of the economy , it is definitely undeniable that there exist tremendous changes in the world that I almost do n't recognize in comparison with those several years ago . Over the past years , the government replaced old Beijing siheyuan with new buildings in order to develop more quickly . When making payments for rent , utility and insurance , we register our bank account information in advance and have the amounts paid automatically before the due dates . post office 's letter delivery , I always become anxious about whether my checks are properly distributed . I agree with the decision of the court . I am in favor of building the new library . I maintain ( contend ) that owning the job helps managing student 's time I prefer eating at a restaurant than to cooking at home I agree that tests encourage students to learn . . I do n't think it is right to build new parking lots on the campus . But other people correcting the entry in Japanese is very quick . Wimbeldon will begin before long . It is mysterious thing . We rode a dangerous plane . We could catch a later flight because there was another connecting flight 4 hours later . This is my first time writing on here . I can not speak English . My grandmother is 70 years old this year , but very energetic . so my son caught a cold . . . What a pity ! : ( `` My room is very cold in the evening . I recommend a gas stove `` But sometimes I hear only the sound of the words , and can not understand the meanings of the sentences . When I hear some long conversations or lectures , I think it is necessary to be able to comprehend the meanings of the sentences accurately . Should I read and learn , then listen to the sentences or phrases repeatedly ? A goddess in a toilet . A very , very beautiful goddess stays in a toilet . That 's why if you clean a toilet everyday , you can become a beautiful lady like the goddess . I set an ink converter on it , filled with my favourite ink , and wrote some letters . Every time , I get really motivated to learn new skills , knowledge , and experiences . And FINALLY Thank God ! dunno why but felt like I 've been missing all the good food in my Life . All things are terrible . Everything becomes a big trouble . The most basic rock band has three musicians : a guitarist , a bassist and a drummer . If you want to sound like a modern rock band , such as Kings of Leon , The Killers , Wolfmother , Strokes and so on , you will need a synthesizer or an installed program in your computer to reproduce 24 - bit sounds in real time . Part 1 Most useful tip : Listen to the music you want to play and feel it as if you were playing those songs with your friends in a big scenario . It 's a city which seemed very similar to Venice . . . Why ? If I have any opportunities to travel there again , I will not think twice . I am a doctor specializing in anesthesiology . Separating the tasks helps finish the tasks more quickly . Meanwhile , I saw a girl who I did n't know at all beside me . I MUST start studying right now instead of writing this well , I think I cant waste more time writing to you ( whoever you are ) , because the consequences will be disastrous . I think that we could not be forever if we 've been together . English 's `` what a ~ is like `` very , really , and so . `` So I 'm searching on the Internet for a long time . Can you help me ? ( sorry , my English is poor . ) The ground was crowded with a sea of people even though police blockaded a length of road for pedestrians . Soon after the problem was solved . My exchange language partner who is from Malaysia reminds me of this . I am reading a novel called / entitled `` Eleven Minuites `` by Paulo Coelho . Although it feels a bit strange , I 'm very interested by it . It 's been approximately 4 years since I formally started studying English , but I almost never have the chance to be corrected when I practice , either because my friends are too kind to me or because I do n't usually write letters or any documents in English or because I am not understood . Since I 've been learning from teachers who taught both American and British English , my writing might be a strange mixture of them . I want to be consistent with BrE since I 've been learning under a British - like system for the last two years , but well , that 's too much to say in a first entry . It 's really difficult , I hate math very much . During those day I make a good friend in Lang - 8 , she help me improve my speaking , listening or anything . I want to understand science articles and documentary TV programs like from the Discovery channel or National geographic channel . On the program , French scientists excavated a lot of evidence from the Vatican . Since then , they aim to be famous all over the world and charted on Billboard 200 again . When speaking , I always speak with the very heavy accent of my hometown . I still remember the first day when I came to my university last year . Despite the problems , I am proud of the fact that I have mastered two languages , in addition to `` putonghua `` . My English is not very good . Yesterday , my friend kindly talked to me about selling food abroad . She said she will ask her friend about the details because his company sells things abroad too . It seems that her friend does n't have answers for us either , so she found it on the internet herself and sent it to me through hotmail . because she always makes me laugh . It seemed impossible to me , but it really happened ! Yeah , I was very sleepy and tired , and the girls were waiting for me in the street . I ca n't fit them , and so they think none of the boots fit me , because I am short and fat . Fuckin ' hurt me . The restaurant is nice ! Unfortunately , I 'm still in an exam term . I want to be free from these fuckin ' exams . Now I 'm really wondering about wheather it is too late for a 29 year old woman to go to a university in a foreign country to study English on a scholarship or not , and quitting work to do it . But I have something to do such as doing the laundry , grocery shopping , making some framework for an exam , learning English , editing a movie , along with other things . Actually , I 'm surfing to find a suitable site for my daughter 's English study . I 'll introduce this site to my daughter tomorrow . In my opinion , there are not many tragedies greater than Tohoku . I realised that I always have conversations with my wife in English comfortably . These kinds of conversations are very comfortable for English learners . But I think if we really want to improve our language skills rapidly , we should do everything ourselves on foreign soil , and sometimes we should be nervous . This is extremely hard without preparations . Through one of my colleagues I just found out aboutthis web `` www . My english comunication skills are very low . Father and mother are teachers . We have cultural festival this month . USA and Japan will go bankrupt He was quoted as saying , `` I came here to kill people . I 'm from Fukuoka , Japan . It seem busy in Bangkok . Hello , friends . In Bangkok it seems busy at the moment . Some of the people don ' t like the priminister . They protest at the important road near ( ? ) victory monument . They want the new priminister to resign from the goverment . It seems busy in Bangkok and going soon to the important city called Pataya because there they will have a meeting and the people from other countries will go there . My favourite film maker is Andrei Tarcovski . I even do n't know what I can do for you . I 'm looking for something good to celebrate my friend 's daughter 's birth . The makers may think most of the parents will willingly pay any price for their children without hesitation . I believe perseverance may lead to victory . Do they eat rice , _ soup , _ vegetables , _ fruit , _ bread , _ noodles _ , milk , _ sandwiches , _ etc ? Hiroshima ( anniversary of the end of WWII ) However , since 65 years have passed , many people like me do n't know the realities of the devastation of the atomic bombing . The fact that he / she had lost his / her life in a moment by an atomic bomb made a black human - shaped spot as his / her identifiable mark of living . Many people lost their lives in many ways in many countries ; let me mourn the people who died in WWII . I think that putting the Internet to practical use is difficult . This is because there is much useful information in the Internet , but all of it is not always true . So I want to select the information carefully and search for the information at various information sources when I use the information on the Internet . I want to become one of the greatest ministers in the world I attached the picture taken from the window in my house . So I was doing a listening test by myself at class time . Then , my father called me loudly because he ca n't speak English . The Japan government urges people within a 20km radius from the power plant to evacuate . But foreign governments urge people within a radius of 80km from the power plant to evacuate . I am from China and I am studying in US now . I want to improve my English effectively and my roommate Keegan who is a nice American girl recommended this website to me . That 's why I know this place and registered . Not only do I itch to learn English and Japanese here , but also I long to make friends who are from different countries . The homework makes me think about the important incidents that have happened in the world . At the same time , I wonder if everyone has something new every day . Maybe I can find good friends here from all over the world . Oh , anyway it 's snowing and windy outside . But after I realized that I coud n't revise it anymore . I think this is a very good way , because it not only the way to study more languages , but also we couldknow foreign culture . and language . by this way , we can have more opportunity to practice our language ability I think . Happy Christmas ( Celine Dion made by John Lennon ) If you prefer a certain Catholic Bible version , can you please tell me which one it is ? We can share each other 's culture and languages . Recently I 'm feeling that our marital relationship is n't going well so I decided to ask you tonight . I hope she is feeling only physical fatigue . So I went there alone and saw a lot of foreigners there . The ones that came from England , Canada and America I tried to listen to when they talked together . But I am not fluent in English yet so I understand some sentences but I 'd really like to understand everything they say . Both of them live in Bangkok and are training for their job at their childrens ' house and the children get abondoned with their parents . I 'll do again what I have done before , but this time I wo n't lose my original intention and I 'll be more deligent . Just 1 more exam left ! yippee ! As for me , however , I had written a paper for the purpose of publishing a journal . l was really suprised and glad at her success ! ! Today , Iwatched a movie called ( or titled ) `` xinyue `` . It is the part two of `` Twilight `` . From my opinion , I supports the vampire because he is the first one for that girl and he did n't make a mistake ( or do anything wrong ) . Hello everybody , this is my first entry on lang 8 . Hello Dears . It 's very lovely and he acts like a spoiled child . There is a Nepalese restaurant in my neighborhood . Unfortunately , there seemed many delicious food delivered afterwards . I wondered why he thought that because I have always done my homework , however , as time goes by I will prove to my teacher that Majid can achieve a high score in the next level exam . Because I am exposed easily strangers and perhaps became criminals . By the way , I 'm reading The Catcher in the Rye , which is used in American high school textbooks . I saw tanks , helicopters , and missiles . I 'm going to write it , please correct it and if you know about Beijing , please tell me a little about it . I want to know about other Asian country 's traditional way of life , and I also want them to understand Japanese culture . But , I think the best way of understanding each other is to meet in person and talk about everyday life . After all , I want to tell people ( that ) we have to work hard to understand each other . I want to tell them about the Japanese school system , because there are many good things in it . Hatsumode is a Japanese custom of visiting the shrine on New Year 's Day . I finished work and returned to the accommodation in which I am staying . I washed the clothes . Today I first contacted a Skype user on Skype . The latter have taken away the customers from department stores , which are traditionally giant in the fashion retail industry . The main reason is that fashion buildings are able to offer more reasonable products . In the deflationed Japanese economy , consumers put their priority on the price rather than on the level of service . However , I 'm not that good at studying either . Currently , my town is very cold . I will make myself a lunch in a lunchbox , because I do n't want to go outside for lunch . I was disappointed to learn that the Nintendo 3ds will be released on February 26th , 2011 . Japanese horror movie . Summer is a horror season in Japan . Japanese horror movie is very scary and interesting . What is the impression of foreign countries about the Japanese horror movie ? $ 0 . 00 USD - $ 3000 . 00 USD , the price per transaction Suddenly , I thought I wanna travel through Korea with foreigner friend who want to go on a trip through Korea . and may be able to feel a refreshing feeling ! ! ! Recently , I could n't write a diary , because I was working . I 'm sorry for writing a dreary ( ? ) diary . anything ( but it must be less than 800 calories ) After the massive earthquake in Japan , some people hope we can forecast earthquakes and so they write on a web site about earthquake precursors such as clouds , sulfurous smells , abnormal changes in well water , the sun , or the moon . I ate a lotus root which was fried with soy sauce and was sprinkled with some sesame and red pepper . For example , shark ` s heart ( sliced low ) . I feel really like the girl in this book becasue inside , she is really clever . She liked to read books since she was young . This book is the first Eglish book for me . It is raining in Taipei . she was 1 year old and she was also crying all day My lunch normally costs around 500 yen . I like the food of Izakaya restaurant during lunch . What do you think about music ? On sep 13th , he made a call to his mother pretending that he was abducted by a kidnapper . He confessed that he had stolen / imbezzled his company 's get - together expenses and he was afraid that the company would find out I have no idea how much he spent of his company 's get - together expense . The TV news shows the royal family turning up to where ? three times in the morning and shook hands with the people gathing in front of the imperial palace . I was physically and mentally exhausted but I became aware of something . I want to become better tomorrow . 11 / 12 / 10 - Never Lose Your Initial Enthusiasm So when you think about what to say , the things you wanna say can come out instantaneously . He said that there 's a rumor that radioactive substances may be carried by the wind and the Philippines might be also be contaminated by rain due to the explosions of the Fukushima nuclear plant . Now that does not make sense at all for me . I so hated cleaning , especially washing floors . And I like to rid of useless things . Because you can always fill this space with something useful or with stuff you really like , later . I must will have to find myself very embarrassing one day , than there will be no stuff to through away . But from another side , the more time I spend cleaning , organizing my stuff and decluttering , the more areas I find to do it with . Sometimes my friends are joking that someday I 'll turn to Monica Geller . ) ) ( And I actually improved my English a lot this way . ) So I decided , during my decluttering week not only to get rid of stuff , but to clean my information space , too . Now I can easily find the book I need and not search through all the folders on my computer . Three years ago I visited Rio de Janeiro , Brazil together with my friend and her mother . They opened EVERYTHING : bags of souvenirs , pouches of cosmetics . . . The Brazilian officer opened her bag and found a pack of umeboshi and was asking her what it was . The officer opened the package . We could n't look ( past tense ) around enough because we had entered there 30mins before closing time . I could n't remember which words suit the sentences , even if , I had already studied them . In addition , both companies have been known for being conservative as big companies usually are . The day she borned was born was just like yesterday . Now she has become a talkative little girl and has her own ideas . At first I was sad , because it makes me feel that she does n't think I am her friend because she always complain that she really want to meet the other friends . This is an important exercise for me . I 'm looking forward to seeing `` Pirates Of The Caribbean 4 `` . I registered on this site a few minutes ago . Recently I tried playing the guitar for the first time of my whole life . I go to guitar school and have a happy time with my teacher . But I want to play for someone , sometime . I want to enjoy writing my diary and getting to know many people around the world . Travis is a band from Scotland . Their sound and lyrics are warm and comfortable . One of my goals is to obtain better english abilities so I can communicate with foreigners . Another goal is to have many friends all over the world . If you understand my goals , please teach me correct english . Everybody is good at English and they spoke so quickly that I could n't understand . I did n't understand what the teacher was talking about and the worksheets he gave us had so many words I did n't know . I am an exchange student and they may think I 'm good at English . I like rain however today was horibble because there was snow on the road . The rain melted it . I always bike to work . I 'm preparing it , that is to say I 'm doing general house cleaning . I finally bought the magazine `` ELLE girl `` ! We wish those victims can get through this disaster . However , I had to go to a driver 's licensecenter , because my license had almost expired . Please correct my English and tell me your opinion ! They overcome their weaknesses through religion . He decided to build a laxurious hotel for Indians , but I think it is very expensive . I made some chocolate . Today is a holiday known as ' Labour Thanksgiving Day ' in Japan . We respect labour , celebrate production , and thank each other . One of the his works were offered to Yakushi - ji temple in Nara prefecture , Japan . Cause I finished my essay just now . So I cancled my plan , and instead played guitar . . . My favorite season is the winter because I enjoy snowboarding . I 'm looking forward to snowboarding . I went to Cambridge in August three years ago to join a summer school at Cambridge University . Cambridge University consists of lots of colleges . I decided to have a personal trainer at home . I bought a webcam from a Hong Kong web shop famous for cheap prices . They sent me the webcam without any software nor a manual . I do n't know how to prove that the webcam is actually 38 thousand pixels Does anyone know how I can check my webcam 's pixels ? Then I 'll play tennis with my friends , study English , and apply myself to my research to graduate from my university . He lend me his spare folding umbrella . I study law . My hobby is watching movies . Second , a single mother in a hostel looking for job . I have to tell myself that everything will be okay because this is all temporary . At today 's meeting , the manager asked us to make a summary about this month , and at that moment I realized that I have been here for more than one month . Now I am thinking about how to write my summary , because my colleagues want me to write it . But I am what I am thinking more is about whether to go on with this job or not , and there is another important thing . . . I want to do something using English and I want to get experience with business , but what I am doing now is not very concerned with English . My favourite festival is Spring Festival . The students study extremely hard with a view to succeeding here in Taiwan . Many Japanse English teachers use college entrance examinations as an excuse for them to stick to the traditional method . I read sometimes on the bus , but it is not always a good experience . It moves a lot , I feel dizzy and I have to stop reading when I have to get off , not when I want to . I have the most beautiful book in my hands and I 've been waiting for the right time to read it . My boyfriend gave it to me in October . It is February now , and I have only read ten pages . I 'm studying English every day , I 've been reading my last journals , and I must to say that they 're very badly written xD I was so annoyed by the work I did last semester . I was so sleepy that I drank toomuch , then I felt sick . When we use the definite article `` the `` before a date , The Dark Knight is directed by Christopher Nolan . I think he is a great film director . I have watched Following , Memento , Insomnia and The Prestige , which were also directed by him , and these movies are amazing , ( I hate that ! ! ) that 's why I do n't like cooking anymore . . . . ; ( Friends are so funny ! ! Chiba has Disneyland and is near Tokyo , so it is a convenient place to live . Of course , almost all women in Japan including my wife hates such plans . Because when I was in the first year of elementary school , my classmate put a frog in my clothes . She was crying hard . I did n't want to take the bus while it was raining and I did n't have any bus tickets yet . ( ought not , are unable , must n't ) my name is Monika and I would like to practice my English , because I 'm thinking about studying law in Reykjavik ( Iceland ) through the Erasmus program . I went to Kouchi in Japan . I traveled to Shanghai last September and visited a big book store . The newspaper says , according to Ladbrokes , the U . Hi , I 'm Sofia Eliet . I 'm learning the Korean language because I want to go to Korea in 2 years , but first I have to go to E . a mock cavalry battle , tug of war and great jump rope . I participated in an obstacle competition . When I arrived at the hospital , It was really hard to find him because hospital was sooooo big ! ! ! Actually I still ca n't believe he has a really serious disease . But I learned it very happily . Three days from tomorrow is one of biggest holidays in Korea . For a while , I think when I went to my company this year is special . ( ? ) I went to the German school to join in a party . Any differences ? Good morning ! I think Japan has a huge comic and animation industry . People in some countries have to work in hard working environments . Your country have been capitalist for a long time , has n't it ? We have long summer vacation , from the last end of this month to until September . My son brings his lunch to his kindergarten everyday . I think Japan is not only an abundant culture country Recently I 've been studying hard , because I will take an entrance examination to a university this year . So I will write this diary as much as possible to raise my English skill . ( many entries ) And my birthday is coming so I want to do something amazing on my BD : crazy stuff like bungie jumping , paddling a kayak in a wide river , climbing a cliff , skydiving and so on . New York or Los Angeles Is anyone here from New York City or Los Angeles I met my friend during my college days after a long time today . I ate an eel and he ate curry and rice at lunch . We talked about the research that we usually address to each other over lunch . After lunch , we went to a karaoke lounge . flabergastted - > I was flabbergasted because I noticed a big cockroach in my room yesterday In the aftenoon , I met my friend after the exhibition . Hi . THIS IS MY FIRST ENTRY IN THE WEB . I am a student of English . In Spain we have a bad system of learning idioms , unlike like other countries of the European union . In those countries you can have a normal conversation with 3 or 4 idioms , but in Spain you ca n't talk very well in english and you only can say the numbers 1 - 10 in French . . . hahaha I should learn the most english as possible . We went fishing and we got three ! ! Staying abroad is a very good experience ! ! ! I worked overtime today . Oh , the shoes I ordered on the Internet have been delivered ! I should take them out of the box . Nevertheless , the Sichuan style bean curd I ate was very good . I do n't need good pronunciation , I just wanna make friends ! ! As a new staff , I respect my colleagues , I try to do more things than the normal , Last night I went to Xinshe Township , a town in the mountains of Taichung . After dinner a couple came over to drink beer and talk with my husband 's younger brother . The couple 's daughter is a very pretty girl . You know when you confuse everything that really matters to you . Even if you are interested in reading it 's sometimes a little bit tough to find good , interesting books For example , My entries has not been corrected , I wanna put it in the place of latest articles for letting everyone know that and correct for me ? You might gather it for a period of time , then you will see how it brightens our life . To me , flamenco is a living attitude . ( < - - - weird sentence I know ) We had to do the weirdest things , like making up a 5 - minute play and performing it for about 200 people ! I want to grasp something but it does n't work . I work hard now but where 's my future ? Because of it being too hot , I did n't sleep well last night . I will have no classes tomorrow . we thought this pain was suffered from menstrual pain . We 've not been learning Japanese enough to know these phrases , that 's why we need help . . . But of course , we would tell her we had help , cause she knows we do n't know japanesewell : ) For that , I deceided to take the new year challenge of Steve Kauffman at Lingq and aim for 500 hours this years of listening of Russian audio materials . I especiallydo / check / correct those entries which have n't been corrected . With worries , I was away from school and tried to have a job concerning NGO . She said to me that why do you want to study this , why did you come to me without any fundemental information and this decision is the most important decision to me for my life ever . About the outdoor lesson , I 've probably learned how the factory works . Is love so important ? In the course , the professor asked us one question : `` What may you do for love ? `` It means that love is not the main part in a relationship , being concerned with some is . Do n't you think that it 's a good idea to celebrate special days in this way ? Do n't be fooled by the old - school beginning and non - color video the director orchestrated . My youngest sister You can produce ideas on your own ( or : You can produce your own ideas . Today the Japanese soccer team competed in the first game of the World Cup . I forgot , because I was listening to the radio at that time . I love Nakazawa , but the Japanese team is a very weak team . The beginning I 'm Mefi and I just registered myself on here . There are still some earthquakes now . I 'm not good at speaking and listening English so I hope I can meet someone who can speak japanese a little . For responsibility ( ? ) for people . Veins ( ? ) still ( anyway ) are buzzing . Now I study English at college and by myself at home . But I get the message : Correction boxes are open , please close them . Yesterday , it was a fine day . `` Most mothers with a baby who was as old as Rei - chan were accompanied by their husbands . `` I enjoyed this trip . My boyfriend made me breakfast this morning . I 'm trying to learn to speak English which is a third language to me , even I understand it easily but it 's hard to write or speak in English , I have a lot to improve on , and I want some ideas on how to do it , . I ( started ) to study English yesterday . Someday , I want to ( speak ) English like a native . I bought my cellphone that day , so I could exchange my number with them , and the number of friends on myFacebook increased so much . It is really huge , according to the weather forecast . To be a fashion buyer has been my dream ever since graduated from fashion design school . So it is cool . I had dinner with my high school friend tonight . My friend called me and told me all that she knew . All the people were afraid . Thanks , bye ! ! It has been continued for three months . I got through the worst of the conference presentations . I have always gone to the tutor center , and I got a lot of help from there . I was impressed to learn it was a true story ( and what a story it was ! ) . Because I live in the Philippines and my sister lives in Australia . I 'm very tired . This verse is excellent , I follow this , but this does not mean that the other people will be the same way . I like a manga called `` ma h ga `` In Japanese . I also like `` o ta ku `` . hehe It is my secret I seldom tell anyone else besides friends . I would be kind and gracious to anyone who wants to be friends with me . Also it was exciting for me to play with my niece ! I know Japan does not like this situation because they depend too much on export ( business ) . On the other hand , some people appreciate the weak dollar and strong yen . probably appreciate the weak dollar and strong yen if they do business between their countries . We international students are not allowed to work legally outside of campus . As you may know , the G8 summit is taking place in Japan now , and the exchange market depends on it more or less . I found an interesting news item . However , it can not be helped in a sense , because Japanese people have no custom of speaking English in their daily lives and the language system of Japanese is too different from that of English . In fact , there are a lot of international students around me , and I found many interesting differences among them such as taste or way of approaching people : ) `` You do n't need 300 million tweets tell you that `` ( Incidentally ? ) Accidently , we held a party with my primary school classmates , It was better than I expected . Incidentally , I would like to have language learning abilities ! I thought `` I need to learn English because I want to travel around I want to use my freetime to study English and read books about business And I started learning Japanese in the university . The male dancer was very short , but he had very good basic steps and musicality ! ! ! ! I will go shopping , play video games , and go to dance class . I think English grammar is difficult . I am here to practice some languages and to make new friends from all ofthe countries ! and I made chocolate . But I do not feel sleepy compared to yesterday . I 'll tell you about yesterday ' s lunch . first , it did n't separate the non - smoking area from the smoking area . I really hate smoking [ with a passion ] . In fact , my teeth are not so good becasue I didi n't know how to brush my teeth when I was child . It was fun for me and maybe them too . . . So I said if you can really clean your teeth you wo n't have bad teeth like mine . . . . I wanted one with a large vocabulary , phrases , an English - English dictionary function , and various English functions . I do n't need any functions unrelated to English . I 've never heard that the maker has produced electronic dictionaries , but it has produced good quality dictionaries and has a good reputation for it , according to the staff . There are many interesting places though , really crowded , obviously dirty , and sometimes I feel strong stressed . My cowokers all quit their job because of depressing spirits . I 'm MUCH healthier than other people . Could I frighten them by trying to get acquainted on the street ? I was so excited to have a chance to study Japanese in my own city but now I 'm a bit disappointed . At the entrance , many people were waiting in line to pay . but it is also very stressful . Now I can study with concentration . I need to enjoy living in Australia because I do n't have time . In this afternoon , I 'll leave from here , which is Osaka , to Ibakaki for work . I had to line in a long long queue . I am studying English now . I want to communicate with foreigners . However , my daughter bought it to me , it 's her love . My husband sent flowers to my office , I felt happy . I dislike rainy days because of getting wet with rain and can not keep my attention fixed . please give me some advice . I am a happy girl and I like to make friends from everywhere . ~ . ~ I think I have enough time to learn English & French . I make some friends from all over the world . I did not prepare very well , now I am a little bit anxious about it . The most difficult part is politics , I do not like it because it is so boring . Everyday I have to read English and German . I wish I had more time so that I can achieve a high score . 3 The Business Japanese Proficiency Test ( BJT ) An Israeli friend whom I met in India when I was traveling recommended this movie It was a release date . It gives various services containing some online dictionaries . And those days when it hit , were as if god was angry . . . Japan should positively increase heat generated electricity . Trains are absolutely imperative in Tokyo . So some people were stacked in the station , just waiting for the restoration of the train . A bad start for today , huh ? In Taiwan , people are shy , and introverted , so they need singers and fireworks with them to celebrate the new year . On the other hand , in Vancouver , they celebrate without fireworks and singers ; they always go to clubs and pubs to celebrate . Today 's weather forecast was rainy . I am planning to go there soon . They say that an another huge earthquake , which might be as big as yesterday 's or even bigger , will be coming in the next week . I think I have to read the book carefully . A freind of mine was surprised my unexpected gift . I hate Natto ( it is Japanese food ) . I am really waiting . . . . . Congratulations ! ! Learning Deutsch ( or German ) is so difficult . Can anyone help me ? Vielen Dank ! I want to pass an exam of level 4 . please give me help ~ ~ In our schedule , we had to give a speech and take a small test . SO it is very lucky ! I will enjoy today . I did n't eat much of my favorites because I was afraid of getting a stomachache as I did yesterday . according to the public report , electrical tools are getting more popularity in daily life . Now most people use electrical lamp instead of candles , digital camera instead of foolproof camera and computer printing instead of hand writing , As the years past by , though some electronics have become the most important part of our life , we can not imagine what our life would be if there is no electrical , so people call the new century as digital age . In the digital age , maybe someone can not realize it clearly , but without the computer , without the TV , without the phone , what would our life be ? we have gotten used to the convenient life by electrical tool , we use the computer to search for information , because books are to heavy to find a little information , we use the TV to watch all kinds of program , because we can not travel around the world , we use the phone to get touch with friends and parents , because we are far away from them . It was a little funny because we were riding on a really strange road because my boyfriend did n't want to go on motorway because it is dangerous . But sometimes the road was very uncomfortable . CONGRATULATIONS ~ maternity leave The icy and slippery roads were dangerous . Someone said `` a teacher has authority because the teacher can educate not only school subjects but also the ways of life . `` I still have ( a ) headache even if I took medicine . But how come the Starbucks stores I go to always have many customers ? I bought a Starbucks grande coffee and made coffee at home too . Actually it feels good . One of my friends joined a photography club . . The actor who played George Havey , Stanly Tuccci was very good . I respect her behaviour . In honour of her greatness , I 'd like to share her most famous song `` True Colors `` with you ! Generally speaking , old people have weak backs . just they are doing the best for their own purpose . I know I need to be confident and patient when learning other language . I am usually cheerful after sleeping . Anyway tomorrow is Friday . I 'm usually not into soccer . I was there from the Belarus Republic in my Hetalia costume . I love her so much , she is such an abnormal girl = D Various holidays are lined up . In Korea , there are 24 hour Fitness Centres . I went to cram school this morning , and eight hours a day exhausts me , but I have to finish economics and statistics courses during my summer vacation . We have to study English very well > Who can help me ? If you can , please add me as a friend ! I have to do reading assignments for classes and preparation for study circle today . I think that is NOT because the movie is not interesting , but rather because my expectations is too high . She is going to have the baby in October . But I ca n't believe that she 'll have a baby at such an early age . I do n't have any cavicity , but my teeth are poorly aligned . She did n't give the baby vitamin K to prevent haemoraging . ( In this case , haemoraging was easy to predict ( in the baby ) . ) Yesterday I wrote in my diary that I was bitten by ants in the park . If you have an interest in me , pleaes get frinedly with me ! By the way , I look for my new job , because I will work for an interior design company as a salesman . I went to other countries , to Italy , Turky and Indonesia . Also , one of my friends wrote on mixi , `` I want to go to Snow festival , but if I look around thoroughly it is too cold , so I want to go there briefly . I need to train to drink , to be strong , so I can enjoy drinking with my friends and colleagues . McCain is trying hard to reverse it . I have been studying English for many years , but I am not good at writing English . To improve my writing English , I joined Lang - 8 today . From today , I will introduce my favourite thing in Japan . It is very impressive to me . . Today I read a article about that how you improve your language skills . I believe that someday , I will be able to express myself fluently in English . She laughed . ' Silence is golden ' Whatever you are , it is the common sense rooted into our mind . Ironically , in my experience , being silent always guides me to failure . Sometimes silence can be equal to being non - active . I 've gone out many times recently so today I was planing to saty in my house all day . In this summer , I had a opportunity to speak with African - American , but I could not understand what he was saying . I 've been thinking recently that English ability is how well you understand all English . At the beginning , he seems like a stupid boy , but actually he is very intelligent - he is a genius ! The Japanese Ministry of Health and Welfare advised patients to stay at home if their symptoms are mild . This morning , her temperature went down to 37 . 3C and she seemed to feel fine . She was running around and playing . Japanese Nationality # 2 Most Japanese are not religious , but their attitudes reflect their culture or nationality . For example , in Antarctica , which has incredible views of landscapes of ice , the ecosystem has been affected as a result of tourism . To get there a simple traveler emits 4 . 5 tonnes of CO2 ( carbon dioxide ) , which is an impressive amount of pollution . Today , tourism is in a crisis as a result of the economic crisis , but we must not forget touristic activities that include the preservation of the environment . Therefore there are places which include both activities : tourism and environmental care . I always ask myself what I learned here and if I lived up to my expectations . I like studying . My husband always says I should study English ! ! ! Anna did not really complain that she was a doner child , or that she was not the beloved one . No matter how much she suffered for rescuing her sister Kate , she just accepted it without a word , until Kate wanted to die . The first is I want to read web pages which are in English . I want to go to the ritzy restaurant . In that restaurant there are busboys . Also , I always nibble on food like pizza , hamburgers and spaghetti . Yesterday , I saw a man who was good looking . I went to school to submit my English report . : ) A few days ago my son had a doctor 's appointment . I thought the doctor let them in before our appointment . I left my son in the doctor 's office and waited outside . ( More natural . ) For example , HAL in `` 2001 : A Space Odyssey `` and Doraemon or Tetsuwan Atom ( Astro Boy ) , show the characteristics . Uh . . . . I do n't know whether Westerners tend to think like that , but I can say that Japanese have a close affinity with Doraemon and Tetsuwan Atom ( Astro Boy ) . Although , the experiments were not totally complicated and could be found in books , it gave us the chances to improve our manipulative ablilties . I was doubting myself whether I was fit to do scientific research for I always made mistakes whenever I did experiments which could be prevented and not occur to others . But lack of sleep might cause some obstacles to today 's schedule . A Japanese novel I think that it is too difficult for a foreigner to read ( in Japanese ) . I wish I could help her because I am happy when a foreigner can read a Japanese novel . Although there are many organizations that evaluate which city is the most livable around the world , one of them says that Vancouver is the most livable city in the world . The city of Vancouver got first place of the ranking for multiple consecutive years but I do n't think so . I have almost lived in Vancouver for 2 years but I do n't think this is the most livable city in the world . Who the hell is thinking this city is the most livable city ! ? I think they need to add the sentence `` For rich people `` before `` The most livable city `` I think these topics are too difficult to be written about by me . In today 's education - obsessed society , more and more parents encourage / push / force Because compulsory education negatively affects children To begin with , living in modern society , foreign language skills have become a necessary subject , In fact , noteworthy international companies are looking for talented people who are good at speaking their respective languages . It would have a negative effect on them as a whole . The acquisition of / development of foreign language skills is not the only ideal way for their future . Children are apt to concentrate on what they are intersted in . if their aptitudes are discovered , it might provoke positive result widespread . In conclusion , although the global arena has led to the pressure to master a foreign language skill , in my opinion , however , there are an infinitude of potential in children ; parents should find their ability in all aspects . As more and more people stay healthy until they are into their seventies , some people argue that the mandatory retirement age should be abolished . Others argue that if the elderly do not retire , there will be fewer job opportunities at the top for capable younger people . Discuss both positions and indicate which side you agree with and why . I did n't exercise for two months after graduating from my university . I always played online game or surfed the internet . Today it 's raining . Each life event may affect our mood temporarily , but soon we adapt the situation and come back to normal . She said , `` It 's very cold outside . Why do n't you borrow your uncle 's socks ? `` I went to Kariya and ate shrimp with rice for lunch . Then , for dinner , I went to Kasadera and ate ramen . Incidentally , are foreign entrance examinations hard ? I can no longer have routine conversations with him . I met him on the first day of university . North Korea and South Korea are divided by theImjin River My compliments for the blog , I accidentally discovered it reading an article on `` Times - online `` , it is very interesting and provocative . In my opinion teachers are so important for society , they `` create `` the citizens of the future , a good scholastic system makes good citizens , good citizens are better electors , better electors realize a better government . Thank you for your blog I 'm going to become a regular reader and excuse me TEACHER for my bad english I 've been seriously studying it for three months . Finally , I find how fascinating getting into the movie story ! ? ? ? ? Now , I have been learning them systematically for about four months . I learn English conversation by listening to news . . Of course , it 's a very common operation but when it happening to me , it 's much more dramatic . And then , I also hate the hospital : before I see a doctor , I feel good , after that I 've seen him / her , I have problems . We were worried about him and also , we could n't feel relaxed when a man was lying in front of our houses . Sheldon is impressive and idiosyncratic . As we all know that economic crisis has a great effect on different industry . I don not care about any difficulties , I will try my best to another job . She said she has been very happy with classmates every day for one year . At first , we thought everything was okay and that there was nothing better than that . If a program has sexual or violent content , we indicate it with an 18 sign on the screen which means that only people over eighteen years old can watch it . ( Usually , Korean programs indicated over 18 are n't even very strong . ) I do n't know if sensational programs have big effect on people and kids but I 'm curious if there are any reactions to those kind of programs . Today is August third , when I finished my studying for my cream I was happy because it has n't rained for two or three months in Taiwan . Yesterday I saw a movie called `` Obsessed . `` But the woman did n't give up , so the woman tried everything she could do to try to attract the man . What is better answer I can say if someone ask me to help ? `` He 's Not That Into You `` is a very interesting movie . It 's a korean soap opera I will be very happy to see my friends . These days , I have had a violent cough that makes it impossible to sleep or talk . A doctor told me that it seems like asthma , but the problem is that the pill the doctor prescribed does n't work at all . Except for speaking , I can practice English with tools such as podcasts , smart . fm , and blogging in English . The day of the dead or alive test is coming soon on 21st of this month , so I 'm striving to get high score on the test every night . because I want to improve my english However , in the middle of development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becoming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . Normally $ 20 a week for each person is the regular price . I trusted him , so I said , `` Yes , it 's okay `` . I said , `` It 's okay . And T knew that the Czech man had to leave regardless . Everyone who registers onthis site would like to practise and need peopleothersto correct their writing skills . Since I am not a native speaker ofEnglish who is familiar with writing in English , So I conclude that my learning process is enabled by others who help correct my mistakes , especially better writers who make brilliant helpers . Yesterday , I went to the ONSEN near my home . Luckily , the wine , pizza , pasta and salad was tasty enough to make me happy . Pega went home by flying on ' Kintoun ' , which is a special cloud in the sky . I have nothing else to do so I my laptop on and am checking lang - 8 site now . His owner said that he wanted a dog with a perfect pattern . For example the black pattern around eyes must to be symmetry . Maybe this is the reason why I sometimes lose myself in the TV shows . Nice to meet people all aver the world reading my diary . Thanks for reading it . I 've decided today that I will alternate between English and French in my diary . So I choose this picture which was taken at Fushimi Inari Shrine famous for the thousands of Torii in Kyoto 2010 . 12 . 31 . I 'm going to tell you about my 3days and 2nights travel in Kyoto in my next diary in French . Wednesday is a special day within the week . I wonder how foreign people think about the system . My computer was infected by different kinds of virus . I still wore a thin T - shirt for running . People spent their time freely and easily , things looked to become more expensive . Though it was not the same , the atmosphere and festivities called me back to the Japanese I am always suprised when someone who studies Japanese knows alot about Japanese culture and history On February , I 'll go to America . I learned a lot of English from them . I have never been to Indonesia , so I do n't actually know about Indonesia . I caught a cold again . But I could n't say anything back to him , because of my poor English ability . I decided to improve my English to the level where I can argue back . I got the information for this wonderful site from another website . I hope to speak English to communicate all over the world . `` Perrier `` in French is much better than `` SAN PELLEGRINO `` I think . I did not know this before , and I usually drink Morrisons ' banana flavoured milk . ASDA 's banana flavoured milk is good and the banana taste is stronger than milk . Five minute English to begin So today we 'll go there together . I 'm glad to drink a delicious beer , but I 'm nervous in this situation . I hope our conversation is fine . First of all , regardless of living in the global world , we still can not stop wars and most countries still have weapons . Although human 's life - span is longer than ever before , we have to combat disease which could kill human and animals . And around 22 : 50 of yesterday , he came home with a small capsule . From today 's morning , researchers are searching his capsule . The most beneficial change I can think of would be to the equipment used to connect to the internet , so that both students and teachers could connect to the wireless internet service anywhere in the university . In addition , if the university had the wireless internet connection service in all areas , students and teachers could access the web whenever they wanted . Such a service would help them to study with the latest information for their research / on the topics of their research . Therefore , I had to follow the new information every day for my research and I had to go to the computer center to access it online . With the wireless internet connection , I could make my research in the library , which was much more efficient for doing my work . If I were a university student or teacher now , I would certainly propose to introduce the wireless internet service in the school , which would have a huge benefit for the students and teachers . I will use Lang - 8 to improve my English and write daily . A new person is coming . However , when we are playing tennis , I would like them to concentrate on it . I have been feeling cold from Sunday morning . There are so many things I would like to write about ! I am starting to write this diary , because I 'd like to go to university in America . Vietnamese generally drive motorcycles . I made Vietnamese friends , who showed us famous restaurants and markets in the city . My impression of speaking English . This is the first time that I join in Lang - 8 . I am a international student in Singpore , although I am poor at english . . . but I want to improve my english , I am also a easy going person . . . . So give me message if u want make friend with me . and welcome everyone to revise . Thanks ~ ! ! It is not until they blooms that I can feel spring . I am asking with myself . I need to improve my Japanese , but I dont know what should I do . . . Can anyone show me a site or books , for download , to learn japanese grammar ? Onegaishimasu . I want to get started from the begginng , grammar for 10 years old japanese kid . I think I can start for : ) I 'm starting to think in different way and I 'm trying to understand the foreigners ' thinking . It is very difficult . But BBC also mentioned if Japanese government stopped using all nuclear plants , electricity would not be sufficient in Japan . However , after I heard his comments via BBC , I felt that his comments would be a second disaster . Because I had to wonder that nobody would trust such a prime minister who has no practical ideas of electricity supply instead of using nuclear plants . 5 , street smart : smart at living or especially at social skills is an engineer . 7 , Governor : the leader of one state 9 , primitive : natural At first , I became a member of `` rarejob `` services in the Phillipines . There were many regular characters ( maybe few too many ) in the show , so I did n't see different sides of characters in the first season . I celebated for the new year with some friends in a club . There were many memories for me in 2008 , but there will be more challenges and opportunities that I need to seize in my life or study . The year 2008 was a special year for every Chinese . We all experienced the Beijing Olympics that the whole nation celebrated , but the tragedy of the earthquake made everyone heavy - hearted . Everybody tried their best . I found it 's calories on the back of package . So I ca n't eat it over one piece per day . A Diligent Policeman They sell many kinds of merchandise : foods , drinks , snacks , magazines , sundries . ) I was very perplexed but I managed to explain my innocence . Anyway , I 'm fine here . I work at a healthcare related company nowadays . I took part in the Automotive Service Equipment Fair a few days ago . I went to Beijing 's Tienanmen Square on the 16th . He was an elite student and I feel very sorry because I was a little bit jealous of him . He was an angel to bring many MP3s to give them to many Tanzanian children . Because his major was architecture , he made the blueprints to build some buildings . My snowboarding trip was postponed until next month due to my car 's problem . I was supposed to buy an automotive chain by the day of the trip but I could not . I am little bit tired and feel like I have just come back from a long journey or something ^ ^ but I think I really did enjoyed her staying at my house ! The policy seems to be quite unique because Bhutan 's goverment says that they measure their development by national hapiness although most countries measure their development by economic growth . I have a lot of time to correct entries today . What happened ? ? ? I have n't written for a long time . I live in Ulsan which is a metropolitan city in Korea . I am pleased when I can hear their singing . However , I was just lazy temporarily . I thought that when I study something , learn something , get some skill and then , accumulating anything that I have got today in my body just like deposit . Everything that I do is recorded and it 's going to accumulate in my body . Of course it 's just a wonderful place for photography . But finally , I still believe tomorrow is another day , everything will be better . If somebody corrected my last diary , I will make friends with them . The stand seats are expensive and people can see only the instant the car is passing in front of them . I 'm studying Infomation Techology . because I have an exam in October ! German is a little hard for me , 'cause there is a strange sound made by the tongue . I think I need to introduce myself first but , unfortunately I couldnt get a job with tattooing but , I wont give up yet and I hope u guys also keep trying and keep working hard Today , I had the part - time job of helping a professional camera operator at a wedding reception . He has friends who are 16 years ago , I went to America , England and Korea : - 0 But I can ` t speak English . Someday I think I could speak in English . I could n't get out of bed immediately . They say that they grew confident in their entrepreneurial skills . I studied english in school 6 years ago and now I 'm trying to learn it on my own . She ca n't walk now , but I think she 'll be able to walk soon . I like a famous painter , Salvadole , Dali so I would like to visit and see scenery in Spain . In America , I would like to visit the Grand Canyon . My first Diary . Check please ! ! Hello ! I had dinner with my friend at an Italian restaurant . Firstly , there are a lot of shops , department stores , restaurants . It seemed I had no idea what time it was when I was writing or reading the articles . It 's a nice . hot sentence to listen to . I think I could listen to this everyday and to be however heated . - > ( ? ) Because interesting contents attract my focus . THE DIFFERENCE BETWEEN SENIOR AND COLLEGE ' S EDUCATION IN CHINA We have a lot to consider after watching it . Of course I care about the thing `` there is no need to be egotistical with each other . `` In addition , he said to me , `` You 're my best friend . . . as far as today , `` He always adds bad words on the end to hide his embarrassment . I was so touched when I heard his words , because I could n't see how he felt about me these days . I always wanted to hear his true feelings whether they are good thing or not . He has been a fugitive from the police for two and a half years and was hiding in my Once I got up and got out of my bed , I heard a sound that my mom apparently made behind the door , so I decided to go back to bed again . I knew that if I went outside and tried to take a shower , I would n't be able to because it was obviously what my mom was about to do . today is international lefthanders day , I am lefthanded , so it is my day too ! The merit of living Hiratsuka is that we can enjoy our beach all season . so we can enjoy a stretch , talking , sunbathing and beach vollyball all season . That 's very useless for regional economy . I want a nice cafe or Italian bar in Hiratsuka Beach Park . There is a lot of places in the park . The Denny 's near the beach is the only restaurant and cafe where we can enjoy a view of the beach . I want the mayor of Hiratsuka city to think about that . + mei - yor + I had planed to visit my city 's Strawberry Festival with some friends weeks ago . I was touched ! and sometimes there are some chicken bones without meat on the bus . Because Kawasaki city and Hachiohji is unbearably cold in recent days . I sent a text message the day before yesterday , but you did n't reply . I did n't know when you texted me . for just being in the election . And plus I won 4 times in a row ! ! ! hello ! I 'm looking forward for your message : ) Which sentence is grammartically correct ? I have confidence that I can live anywhere in the world . Yesterday , I was involved in canvassing for a candidate for the city council who our company supports . Anyway my coworker and I were visiting a home with a ton of fliers and cards already , and anyway we did not his policy or manifesto at all . I felt like a salesperson visiting to the door . Our clothes and fliers were all soaking wet . Because the average speed was too high for me . Oh , tomorrow , these successive holidays will finally be over . I found something changed . Every time I open a new page , a window pops up , and wants me to the set time zone where . So I set it up , but when I open a new page or update the page , it pops up again . Competition project _ 03 My daughter stayed at Grandpa 's house alone for the first time . I was surprised because she did n't sleep well when we separated but she did last night . I will give a birth this april so she is preparing to be sister . There are a lot of tourists from various countries in Japan . I have no special plan during vacation ; I will go home to be together with my parents . Besides , on Oct . 15th , our college will have a celebration for its 80th anniversary . I 'm very lucky I can witness this important event and I 'm also very honored to be a volunteer for the anniversary ! She had no interest with computers before . I also remember the wonderful decorations on every house in Australia . Both of us had been involved in their project before their debut , so we often talked on the phone at that time . I have n't seen them since I left the company , but I heard some of them started to manage their own work in Tokyo after all . I 'm looking forward to meeting them as I expect that the meeting should be inspiring . . . There was a severe typhoon last night , worse than I thought . I saw broken umbrellas everywhere . Finally the trains resumed service but there was way too much traffic . I recommend two songs , `` Genie `` and `` Hoot `` . I was born in a little town . Its name is Velikie Luki , and though it 's a very old town , it is n't very interesting . And while architecture in Velikie Luki is n't attractive , I like this town all the same because I was born and grew up there . I think that it ` s important to study hard and have hard time a lot when we ` re young . Because I want to graduate with an average point of 4 . 0 ( Maximum points you can get is 4 . 5 ) As I wrote the day before yesterday , my university 's rugby club had a match yesterday . It was delicious . Last week I took a few orders . But we should never give up . On Saturday afternoon I read a book called ' The Golden Rules ' . Next year will mean a lot to me , as I will have been studying flute for 10 years . ^ ^ I can know about the culture of different countries and know more friends . I am studying English with some textbooks . These sites are for Japanese who are studying English . Sometimes Internet sites are very useful in our lives . Do you have a favorite page ? I felt bad , I think she should answer it one time and tell me that she does n't want to talk at that moment . I feel better now , and I can forget it because I wrote my complaint here . I 'm a little surprised , because it 's the most special way I 've ever seen ( for me at least ) to learn languages . To be honest , I 've been studying English for 7 years , but I 'm still not too / very good at it . After ( I had ) ( a quick ) lunch at a Thai restaurant , I went to see the movie . The weather reminds me of the soon coming rainy season in Taiwan , and also of my allergic rhinitis . > < When the rainy season comes , normally starting in May or June , and lasting through September , it sometimes rains cats and dogs . Although the excessive rain can be catastrophic , such as a flood , the fact is that the rainy season accounts for the majority of precipitation in Taiwan . Overall speaking , I do not like too much rain or too many rainy days . I am afaid to smell a mildew odor in my closet . On friday I went to my friend 's birthday party at shevron renaissance . After that I went to the fiddelers bar . I 've been hearing ( not listening , I 've even been reading another book ) the audio book of Harry Potter and Sorcerer 's Stone these days . I enjoyed the rhythm of the reader 's voice . We looked like a pair of moving snowmen . My first English diary has not been corrected , I do not know the reason . Good morning . I 'm very excited , because I have just gotten a microphone to use for Skype . Today is Saturday , so I will stay up late . As I have a stiff shoulder , I welcome this approach , as it means that we do n't have to My exhibition will start on November 21st . The last half , I got breathless in the family background and the shocking ending . My close friend is a yoga teacher and her studio had to move to the other place this month because of the destruction of the building . I received an email from a woman . Usually , they are talking about his fantastic dance and song performances , everybody says `` he was the super - star `` . I mean , I am so disappointed the way they report . Why they can say that he is a great star who they criticized cruelly the day before . He explained how to use mineral foundation . After three hours of simmmering , however , everything changed . We do n't have opportunities to express ourselves in English . And I will save money for studying abroad . They were very successful cookies . I chose the conservative treatment and Exchanging favourite things Before today 's lesson began , he told me some of his favourite artists such as Muse , Snow Patrol and David Bowie and he asked me to introduse some Japanese animation series that I would recommend . Although I have been studying English for five years , It 's my first time going to America , and I 'm really a beginner at speaking English . I 've a very important test in english soon and I also want to definitely speak english ! ! ! I thought it means , `` make a money or deposit money `` Some Japanese companies are employing Japanese bilinguals , but they sometimesgive rise to big trouble among their Japanese co - workers , because of their behavior and skills . Today I have an examination in class writing The teacher told us write to three paragraghs applying the organizational patterns by developing time and space order , process description and exemplification and divination . I would like to write about Eid . All Muslims celebrate in Eid because Ramadan is finished . It is just for Muslims . Eid is just 3 days and Muslims can not fast in this 3 days because it is not allowed in Islam . Another western superstition is the numbers of cries of a cuckcoo bird being heard is reportedly said to be equal to the number of years of it being alive . As you know , we had to prepare for the national scholastic achievement examination for university entrance . First picture . - I was curious to see if that could really happen . Today , I went to Yamanashi to visit my relative 's grave with my mother . English , I always make mistake a subject and a tense . Today , I investigated Adobe BlazeDS in the office . It 's been a long time since I 've written dairy here again . Oh , I really hate this course . It 's maybe the sickest course I have ever done . It 's about useless and complex theories . So , I have to deal with day by day , which you can imagine how terrible this feeling can be , uhm ? when you try to study something that you completely have no interest in , it 's worth nothing . OK , I just want to pass the exam , so I do n't have to study this course in the next term again ! But thank god ! I hope I will pass it , and I hope my classmates will pass it too . What nice news , is n't it ? However , there is some bad news . Unluckily , one of my roommates did not pass the exam , so the only thing I can do now is to hope that he will be fine in the next term . I will have almost 5 / five exams to take , including history , philosophy , the theory of spreading , modern Chinese literature and ancient Chinese literature . Oh , Satan is going to kill me . The only thing to do is to deal with it and be confident that I can achieve this and find a good job in the future . This book is comprised of only English questions ! ! ( or ' My one word can exert a favorable influence upon the students . ' what is better ? ? This is better My hobby is to watch movies . Recently I watched `` Avatar `` . This movie is very good . I went to an Italian restaurant to drink Beaujolais nouveau on November 18th . Maybe that 's why I could n't spell in Japanese until I had watched so much anime . . . ( I 'm joking ) . A fresh , ankle - deep layer of snow has fallen over the night and I can look forward to a good hour of shoveling before I can even dream of getting the car out and going to work . Some of them fight against others who have different religions because of their firm beliefes . I think since Australia has huge amounts of natural resources , Australians can lead a good life . Miners have to work with danger and may be dirty but they are supporting Australia , so I respect them . The following email is the the most difficult one I 've ever written . When I get something at the mall , There is a beautiful park center of residential state area in my city . I like to critize restaurants about their food , services and atmosphere with my friends . I am very interested in it , so I love HANAMI which is an event where people eat and drink under the cherry blossoms . Hi everyone ! I had a meeting from three o ' clock until six o ' clock . But here in Japan , all TV companies hesitate to do so . I am striving to get a good score , reading english novels , watching American sitcom for listening practice , learning by heart the important words and sentences . You just complain to yourself or to someone else , to soothe your own feelings . It was a good chance to exchange opinions and information about the evaluation of quality in health care services . I watched the TV coverage of the golf competition `` Masters `` that is held in Augusta over 4 days , from yesterday until 3 days from today . I turned on the on - board wireless adaptor . I really like learning English , but sometimes I still want to think in Japanese in my daily life . Sometimes I 'm tired ; so that is why I have n't posted a journal for a week . There would n't be a lot of things I can do for them unless I am a doctor . Luckily , I have a tutor . The first picture is my partner and me , The one on the left is me . but It includes poison . Saint Lolita project started a project named `` Saint Lolita `` I 'm really excited ! I was able to see a lot of music artists and I enjoyed their live music . It was so palatable that I did not notice when I became really full . Eating slowly makes the feeling of hunger disappear earlier than normal . I did not abide by the rule , I just pigged out , and now I feel stuffed and somewhat drowsy . In less than 2 hours I am going to McDonalds to meet friends . Since I ate so much I decided not to eat there . I feel like I had such a heavy burden to speak in english . And I sense that feeling , when listening to a favorite song . Today my vocabulary test was returned to me . I do not know how to study : . ( However , no matter what economic situation in the world , people still get sick from time to time . In a word , nursing is really a practical and helpful subject although it takes a lot of hard work and time to become a professional health care provider . The hard work would pay off one day . The story was about a man and a woman controlled by a FBI computer . Recently I was busy , so I could n't write my diary in English . I had to change my money by purchasing something at a convinience store . He recommended this website for learning English . So , I tryed it tonight . I 'm looking forward to enjoying this website . Marshmallow ( which correction thing ) If you take a bite of a marshmallow , you know that you 'll put on weight and get ulcers in your mouth . I went to a gynecologist today . and I had kept the last 2 kits until yesterday for my less relaxing times . The pointer is powerful , and gives another world to the developer to create in the abstract process . It 's because I want to improve my pronunciation . However , I do n't know if my pronunciation is OK , or not . If I were asked to tell the most exciting story ever happened to me - I would definitely tell this one . The officer ordered me to follow him to the safe area of the motorway . After the train had gone , I called out to the shocked officer that I was OK , and continued to run along the train tracks to the Commonwealth Avenue where I had my interview arranged with employer . If I tell this to my friends or co - workers , some heartless person might hurt me . Then , we saw illuminations . I went to a photo studio , because I needed some identification photographs . It had good price and quality . It seems like a good way for women to get rid of stress . My class start at 8 : 50 from Monday to Friday . Recently I want to go snowboarding . Sometimes I need to anounce my daily plan , in order to remind myself to finish it on time . I hope I can return your help in the future . Today I read that Japanese law mentioned that a nuclear operator has to keep general public 's radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that general public 's radiation exposure has to be kept below 1mSv / year . I think it is too high , especially for children because they are more sensitive than adults to radiation exposure . So I hope that the Japanese government will decide to lower the level under 1mSv at once . Some researchers , on the other hand , have come to realize extreme strictness does n't work well . Probably because he knew that I 'm not good at speaking English and it seemed that he did n't want to talk with me . When I read and listen to English , there are often the times where I do n't understand the whole meaning of the sentence even if I know all the words . Probably it 's because English word order and grammar are different from Japanese . It 's because the words are too difficult or the pronunciation was not clear or too fast as is often seen in comedy . I have n't written a diary entry recently . . . . instead last night I had fight with my parents . however , this morning my mom called me . but I had to cut off the phone . . . and then I began to cry . . . . I could n't control it . . . . I know how weak I am . . . . I think it might have been down if my friend had not been there we talked an hour . . . I think we enjoyed the time together . . . When she was a baby , she had a serious febrile disease . I get up at half past five , and I go to the square . DPJ won a historic victory . This is not traditional day but it is like a type of event . I have heard that & nbsp ; ninety percent of the company 's total revenue comes from this day . Can you tell me the difference between `` can `` and `` be able to `` ? What is the difference of their meaning ? My goal is running10 kilometres in one hour . The Japanese language entirely depends on context and situation , and it is less clear than European languages . However , Japanese people should not change their language into something like a European language , which states everything clearly , because it is part of the Japanese culture . Instead , Japanese people should try to make foreign people understand the Japanese language . At the same time , they should make opportunities for foreign people to learn Japanese , and encourage its use . But one day , the National Tax Agency came to his two apartments , his offices , and the establishments which he owns , at once . The next day as well . Finally , it was almost the next month 's payday and I still could n't get my salary . Then he said , `` Are you saying ' When poverty comes through the door , love flies out at the window . ' , right ? While he was snoring loudly , I thought about what he said . I am at a university in Kyoto , Japan . I am afraid of him , so I told him `` I met an expectant mother , and she fell over an overpass , so I helped her . Therefore I brought her to a hospital , so I was late for class `` . because the teacher explained it clearly . It makes my body stretch , and my mind release . You will be soothed if you walk on the gravel path to the sacred places , while breathing in the fresh air generated by the woods . My husband , mother - in - law , son , daughter , and me . I woke up at 8 ( ? ) as usual . The winter is the coldest season of the year . It starts on December 21st and ends on March 20th in countries north of the equator . when I received my friend 's e - mail , I was thrilled ! ! I thought I had a high tolerance for alcohol , but I found that I do n't . It is thought that the earthquake has provoked a lot of fault dislocation , so we could be hit by massive earthquakes more and more . My Chinese English teacher told me `` To think is similar to consider . `` There are two types of people , who do not eat meat ; vegans ( they do not eat any food , which includes all food from animals / eggs and there are vegetarians , they do not eat meat . After they grow up , my grandfather kill 's them for their meat . By the way , this time interval is an interval of sampling that we called `` reaction tracing `` . We met each other in the back of a pachinko parlor at 5 : 20 pm . Do n't focus on their bad points , so that you can have many good friends . I 'm a Japanese girl that is learning English at the Kansai Gaidai university . I understand you should use present tense in a adverb clause even when you refer to the future . A new resolution is here : improve my English and start learning Japanese ( but , first I need a book , so it 's not for the moment . . ) . I 've been with them for 4 years . They are 13 - 14 years old , and now we are facing our toughest challenge so far . I 'm impressed how it effectst the movie . It may sound just simple at first but actually I think it really is complex , well - organized and expresses exactly what must have been explained . A black car started to move when the traffic light changed to green . The driver opened the window , and began to throw empty cans which did n't hit me . My home town was just across from the shore , so I was very familiar with the town . When we crossed the bridge , there was a big intersection , the traffic light was green . If I had been caught , I would have been killed or beaten up by them . So at the moment , my driving technic was slightly better than Nicolas Terol 's ( Moto GP driver ) . It was a very dangerous car chase . And then , the stupid gangsters came , but I already was inside the site . I guess Chinese people put more importance on food than any other nation . Confucius said that `` eating is a great happiness . `` Maybe this is because of the long history and tradition of China . Chinese cuisine is amazing ! Firstly , Chinese food is healthy . Look at the people here . Most people are really slim : ) because there are more vegetables than meat in Chinese dishes . Secondly , Chinese food is very tasty . We have four rules on good food : `` colour , flavour , appearance , and taste . `` Chinese food has the most variety . It 's very easy to satisfy your taste buds , and you will be addicted to its amazing taste even though you may have no idea of what exactly you are eating . The seasoning of the materials in Chinese food is super important . Only the right materials can make delicious Chinese dishes . I like cooked food . It 's safer and healthier and also nutritious . I think the reason why he knows many dirty japanese words is his japanese friend . He influences a lot of foreign students . So we went Shinagawa station first . Next , we called the aquarium and asked where it is . [ Diary ] Macaroon I did n't know that the macaroons are very colorful and cute . I was so glad to talk to them . I need strength . This morning I fought with my younger brother . When mom asked him to turn down the computer game sound , he got very angry and yelled at her . After that , he threw his mini computer because of his anger ( We are not rich enough to throw mini computer . He thought I could n't / would n't really throw away his computer because it was too expensive to throw away . But I did n't care about such a stupid threat . If I had strength , I did n't have to shuddle like before . I want strength , I need strength . Especially my daughter is really looking forward to seeing thehouse of wax the house of wax , it says there are some wax dolls which portray the ' ' The Last Supper `` by Leonardo da Vinci . We will have military training for two weeks , how can I get through those days ? I plan to set my telephone to wake me up tomorrow . At work today I was confused a lot and I had a headache , I could not think a lot ( either ) , maybe because I slept late . Today 's menu was tuna sandwich and milk tea . I 'm looking forward to going to the cafe every Tuesday . Nevertheless , as you can see , my English abilitycould still use one word to describe itself . Tonight , I take my first step to restart studying English on this Lang - 8 ! ! Two or three years ago , I tried to learn English since I needed it in my job to communicate with my colleagues abroad . Tonight , I found this Lang - 8 site , and I decided to restart my challenge : learning English ! Cygwin Installer Disaster Do you ever have the same feeling ? Would you like to tell me ? Not because of lonelliness , but so I get the opportunity to do anything . I hope my dream will come true soon . east - southwest of Taiwan . Have a nice day ! ! ! Yesterday , she was inoculated for the first time . Americans , Vietnamese , Filipinos , Japanese and Canadians etc . . . It 's still difficult for me to hear the speaking at ordinary speed Because of personal problems , I disappeared from this family for a long time . for example , I applied to join ' Skye ' , but it requires that we must do face to face communication . Before this journey , we had never visit any foreign counties other than Guam and the Philippines . So it is difficult concentrate . Right now it 's fine , but in the summer , it seems that electric power companies will be not able to supply enough electricity . I always set my laptop in front of me , and adjust the monitor so I can watch more easily . When I watched one of TV programs , I needed to click to move to go to the next movie . When you come to Japan and have the chance to watch a TV , you will see them absolutely . Today is Friday . I do my work as usual , but it 's so boring and then I chat in QQ . I can not understand why the washlet is not very popular in America when Americans care very much about cleanliness . In fact , I heard that celebrities who visit Japan often purchase a washlet after their convenient and comfortable experience at restrooms in hotels . I have rarely seen people carrying handcherchiefs since I came to LA . `` Japanese gamer marries Nintendo DS character . `` It appeared in a British newspaper . Giving up some habits to prepare for the exam is acceptable for short time . I bought some presents and gave it to my parents . They pushed the `` send ! `` botton at the same time , as soon as the train gets out of the tunnel . I heard that there is n't a locker room when I went for my interview . He became an Asian culture club leader this term . My god - brother is very sweet and tender , which is why he can get along with girls so well . This year is his last year in senior highschool . They wanted to play different roles , such as maids , servants , and butlers in a club promotion event . Sounds awesome as my godbrother is too shy . I find it intresting to write a journal in English here . I will refresh my journal as often as I can . I just want to enjoy the beautiful scenery there . last night , I tried again to install my computer system . I am a computer idiot , however , actually I was successful , I installed the operating system ! so I felt very angry , because the question delayed my study ! today , I took the PET four Exam , it was terrible , from a total of one hundred I answered ten questions correctly , I have fifteen percent ! oh , my lady gaga ! I estimate if I want a pass on the Sepetmber Examination it 'll be very difficult ! ! Though it depends on the day what kind of dishes you can find , I found Japanese , Indian , Korean , Chinese , Mexican , French , Germany and Turkish stands among many others . That ` s why people get to enjoy a glass of German beer with Turkish kebab . And it was located in Yurakucho , the center of the down town of Tokyo , where hundreds of businessmen enjoyed their own private time after work . It was made at a small stand of a station wagon , so it wasn ` t a full - dressed one . I want to know the result early and study for thepre - 1 grade . Today it 's Monday , so I went to my school , and it was so boring because my teachers are n't flexible . I feel very uncomfortable today . From last week , about ten people from Los Angels have been staying at her church . I guess that the temperature is 27 celsius , maybe . I learned english in school , but did not have practice . Now , I have found this interesting site . In theTakachiho area , we found a fantastic place where I assure you that we can live a happy life ! I wish I could have a partner who speaks Japanese or English , so that we can help each other to learn a foreign language . If you show your photosome people may think of you as a hot person even if it is not your true face , yet there are a lot of comments and corrections for your sentences again and again from many people . but I had a special day on 12 / 26 . Then , I was very nervous . Thanks to her help , Tiffany and me became friends . The floor of my room is covered with paulownia which is often used for chests because of its absorbability of moisture . because I have never seen it made in Europe or the US . On rainy days like today when I come to this room and touch the floor with my foot , it is so damp because of its absorbability . We say compliments , pretend to be good , behave like a human hiding a wild heart . Perhaps many people unconciously lie about tiny things . And yes , I 'll join you of course . In this situation , I definitely know their party is never held . That means going shopping to supermarkets and groceries instead of my mother . I can check prices and know what economy is going on , also I can meet my neighbors . But , my English communication skill was very poor that day , so I could n't go to stadiums and so on . Because of that experience , I was determined to learn English . Hi my friends . I would like to speak English well so I need your help ! I am a good friend . . . you will know if you talk with me . I hope to find good friends ! : ) I 'm going to describe two photos . She is the founder of `` CHANEL `` , the famous fasion brand . Every step in the campus is an exploration and an adventure . I just remember a few things about last night . : D The doctor told me that the cause of the symptoms was my warped pelvis . At first I planned to travel with my friends , but at the last minute I copped out . Of course except for my girlfriend . I wonder if they are fine . First , you might have heard of Taiwan 's traditional foods like Bubble tea and Stinky tofu . You can find them at local night markets everywhere you go . If you know how to read early , please teach me ! But I really feel that if I want to improve my English , I [ will ] have to have the courage to speak with English teachers . Learning a foreign langage is not a easy job . You need to get enough information input in your brain , then it is possible for you to output the language correctly and fluently . Happy Birthday ! Two days ago in our country , a new actress committed suicide . She acted as a minor character in a drama which is now broadcasting on tv and gets lots of attention from the public . Why did she commit suicide even though she 's young and beautiful or even though she 's gathered so much attention through this drama . The articles said that she had been depressed , so that might be the reason for her death . Nowadays in our country some celebrities commited suicide suddenly and people , including me , have been surprised and shocked about it . I like anime , so I am watching 19 animations in this season . This number is a lot heh heh heh . Especially if you are interested in classical music , you can enjoy it even more . We must send our worksheets with exercises to the manager of this course . Now I 'm excited in visiting a foreign country . The orange lights of the buildings are clear and beautiful , are n't they ? I went to see a movie with my friends . It was very interesting for me . She Floating from Short Program of eleventh . * She was slump in the jump from January of Four great land championship . * The near future of the Olympics of February , * she found a letter while she arranged fan mail after practice . Lyman Brothers has just gone bankrupt , one month or two months ago and AIG insurrance conpany is in financial difficulty , and the United States GM has fired lots employees My classes start at 8am and finish at 4pm . Finally , I became a sophomore ! I do n't want to prepare for recruitment . But sometimes I lose time for speaking English by making a lot of Japanese friends . Anyway , I want to try to use new vocabulary and practice for my writing skills . If you know any good places , please recommend them . I 'm studying English now . At the party , we drank a little bit and ate hamburgers . Yes , I have some teaching experiences which I am still writing about in my journal . Actually , teaching English conversation is a small part of my work . I woke up at 6 : 30a . m . Because I went to bed late last night . Most Korean students are studying hard . So , In most people 's eyes my military life was nothing more like working on a ranch , but it was a good time making another treasure in my heart . However , it is difficult for me to develop my English skills . Of course , I am willing to correct your writing . Sometime I dream the similar event , I always dream that I am going down the sea and dieing , so I am afraid to swim , if my friend ask me to swim , I always refuse them Two flavours are in it . One was `` kinako `` ( soybean flour ) and the other was `` maccha `` ( green tea ) . Thanks ! xxx And this is a Japanese Anime . If you read all of my entries , you probably know that I started speaking English ever since I came to Australia . This summer I 'm going to join two tournaments . nice to meeteveryone . I am a new here , today our director told us `` leading and develop people `` I do n't know how to expression my opinion . in the afternoon , our 7people went to drink , and bought two steamed bread , today I felt very happy . There were many people and it was very hot on that day . the food there was n't expensive , so u can have a lot of choices . I was amazed because the snow had thawed . If you have a courage , you can try it . They are elementary schoolchildren . I will buy something to proper for cooking . Am I A Gorilla ? At least it is relaxing , right ? No doubt , It is suitable for most youngsters and even adults . At least it is a childhood memory in people 's mind . Of course , it is not true . Some people called Studio Ghibli to ask about this myth , Studio Ghibli responded jokingly , said ' Yeah , is true ^ o ^ ' . Finally the myth seemed to busted by the declaration of Hayao Miyazaki . We 're supposed to perform ocarina at Qingdao ( China ) at the end of October . You are far far away from me and you are helping me to learn English . Life was more difficult . It 's impossible now , is n't it . I have been playing a DS game called `` Mario and Luisi RPG2 `` since last Sunday . If I can use this concentration for my work and study , I would be a big wheel . . . Yesteday I went shoping with my friends . And we pray to reach for the help from all of the world such as Libya or Afghanistan . I ` m studying English and know it at an intermediate level . But I got well quickly because Hawaii 's temperature is very comfortable for me . The problem with two kinds of medicine What 's more , she felt her doctor was not considerate , so I gave her advice to go to another doctor to get a second opinion . Actually , I do n't understand all the rules of american football . However , I wanted to see how crazy american people get during the super bowl , so I dicided to go to a sports bar to watch the game and the crazy american people . I really had good time , and I will try to watch american food ball this whole season . I woke up in 6 o ' clock in the morning , then I got dressed and I had to hurry , because my friend and I were going to the sea , but he was late and I was waiting for him a few minutes . I borrowed a thick book yesterday which is called Snowboarding . I have never tried to do snowboarding . I wanna know the real voice . It might have been two or three months before . I 'm looking forward to picking it up . ( ^ ^ ) I 'm going to go to an Italian restaurant for dinner with my friend . I saw it in the theaters yesterday . This week I have a big exam . I have not decided what should I do yet . . I 'm so clumsy that it still takes me at least 10 minutes to open a can . I am a member of the soccer club . But there is some fun in my school life . such as , the Fusionopolis , the Biopolis , A * STAR and some research laboratories of private companies , if we could have the chance . The vet said he was n't sure what the problem is . Plus , if we find out she needs an operation , it 'll cost 200000 or 300000 yen . But I am wondering where the border is between people and pets . I think learningabout the other country 's language where I want to travel is good manners . because I have to roll my tongue . I 'm Korean so I 'm interested in neighboring countries I just want to speak many languages for conversation with foreigners . I think the story is like most Asian people . Work is their life . On Saturday night I 'll have a dinner party with a piano . I 'm looking forward to the day , and I try to practice playing the piano hard . I am a system engineer in system integration part of my company . Today is a rainy day I come from Taiwan , nice to meet you . Today it is raining in It is a very tough sport , but it is very good exercise for me . So , I went to STD , and after that I went to Whittard - a tea shop , then I bought a tea pot and creamer as a souvenior : D because it was on sale ! The Youngsters in China Therefore , they become ignorant to the feelings of others , but it does n't imply that youngsters are no longer sympathetic or helpful . As for me , being one of the youngsters , I tend to hold the opinion that the youth are the same as the former generation . People , especially among youngsters , tend to do something by himself , rather than with a group . Furthermore , youngsters are not unsympathetic because , on the contrary , we are full of sympathy . We remembered the dead people , sympathized with the homeless children , and honored the army . I often ca n't help crying because of all your great support for Japan . I would like to tell you what happens around me . I may find something interesting to write down . I am writing to express my dissatisfaction with the service that I received at your establishment . I suggest you employ someone who is more skilled and has a better personality so that your customers time is not wasted . the reasonwas toparticipate in a conference ! I liked my country , but then I liked another country . One of my friends asked me before that you do n't like Japan , because most of Japanese go outside because they do n't like Japan . It is because of my country 's system I feel . And I know that I am curious about all things it does n't matter about my country or others . I was happy because we talk about each other . And I touched hamster . Sooner or later a massive earthquake will occur in Tokai quite near the plant . I really experienced numerous things therein those two weeks , four months . Unfortunately this kind of incidents happen every summer . Third , their wages are cheap . To end these problems , parents should stay with their children until they are old enough to understand the risks in the swimming pool . How are you these days , my friends ? happiness . please open your window of heart , let your heart have a bath in I have lived in MACHIDA , which is in southeast of TOKYO for 21 years ! ! Then , I 'll meet lots of people who have various nationalities and tell about good points of Japan culture . Also , the professional school students with whom we communicated could speak to me in English and sing Japanese popular songs together . I felt humiliated , because I could not entirely speak or listen to English , although I had studied it for over 5 years . I feel comfortable . Long , long ago , there was an impatient , arrogent man . Suddenly , he finds out he is walking on a beautiful path surrounded and this morning I got up at 6 a . m . On Friday night it snowed a lot when an old friend of mine came to visit . Then we strolled along the road feeling the touch of snowflakes on our face . We went into a small restaurant to have a drink . I could n't use all of the functions of lang - 8 before by iPad , but apparently , I can use all of the functions of it by iPad now . I will go to church and I want to meet new friends . I hope I can get a good scoce this time ! ! ! ! ! I am currently studying very hard to pass the ' ' TOEFL ' ' that is required for International Students for entrance into Universities in the US and Canada . His speech was very interesting . Surreal houses , rivers , bridges . . . This is my first journal on lang - 8 ! Would you mind telling me , how to get the discount price written in the invitation letter . Let me introduce myself . When I was there , there were no airplanesbut it was full of spectators . Especially for last time I got car sick , we were just staying on the phone laughing after I was trying to catch a breath of fresh air . `` I will always be by your side , to help you out in soul trouble . . . `` Hi I 'm hiro and this is my second diary . These emergency drills were originally held on the 15th of every month but now they only take place two days out of the year . When the clock hits 2 at the afternoon , sirens will go off , signaling the start of the drill . In addition , there are no shops , restaurants , or public transport in this neighborhood . He had short hair and wore a white t - shirt and jeans . I think I have two chapters to go and it might take 20 more hours to finish the story . Overall : It seems like the Amazon River , which flows slowly , calmly and constantly rather than like Niagara Falls , which flows dynamically , wildly and powerfully . This evening , when I load on the news web 163 . He is only 48 years old and he is very excellent , Almost every chinese man knows him through his news report program . indeed , I am in school preparaing for entrance to Grandes Ecoles , in order to be aveterinarian . I sauteed them with komatsuna ( a leafy green vegetable ) in the fry pan . This month by now I have wrote 48 journals . Yesterday I learned roots of words in English . Nowadays , almost all science and technology is written in English , Of course , China is stronger every day ; many foreign people come to China to travel and study . I think that we can change ourself if we step forward with courage . `` Piacere di conoscer - la / ti `` to which you can reply : `` congratulazioni `` to someone who has just succeeded in something A nice guy , Wanda , adventures through wonderland . There are no people or animals in this world . If it 's attack hits Wanda , it does a big amount of damage . but nothing happened . I 'm learning to play in a musical for this lesson , and we ( the troupe members ) have a board meeting next summer . Expressions that substitute nouns Can Japan national team winthe game ? Sometimes , if you are lucky , you come upon a snake ! school students since they use textbooks that I 've used in their school . I am going write about a person who is not only respected , but also successful . However , this successful person had already decided what they want to do at the company or by themselves when they were student . I think if we can use the Internet appropriately , we could gain a lot from it . If I have a time , I feel likespecialty food in Fukuoka . By keeping a routine , I can get up early in the morning ! ! I think it is so difficult for me to do it . Would you mind helping me study English ? Then I will move to St . We are thinking of going on a picnic . I think it well be very fun , because we are a bit crazy : ) ) ) For example , not so long ago we organized a flashmob . People were looking at us very strangely . Why did n't you put on underwear ? Yesterday , I used MSN Messenger for the first time ! I like hill climbs and long rides . Recently , I discovered the english music group called Mcfly by chance on Youtube . Cut the sweet potatoes then boil it . I am happy for that , but I do n't know why Japanese learn Arabic ? My teacher pointed out lots of grammatical mistakes like articles , plural forms , verb forms and so on . Because , one of my friends said , Then , the night I got the binoculars , then , over two large cups of coffee ( I 'm a self - confessed caffeine addict ) , Then , I found dark rings under my right eye . As soon as they got power , they changed the amount of money , and they even considered an income limitation . My momther recommended that I should have bought a cheaper one but I wanted to buy an umbrella with cute characters on it . I was a little nervous at the thought that the professor would notice I was n't a regular student . So , the test will be too difficult for me . I sent back a congratulation - mail to him . Finally , he gets better and better and is successfully able to finish the speech at the begininning of world war 2 . It 's very delicious in there . Yesterday , I watched a Korean TV documentary which was about Africa . After watching the documentary , I realized how comfortably I was living and studying . In this sense , Japan is in a position where it can advantageously and financially provide other impoverished countries with development aids . Or rather it can spread its interesting and unique culture around the world , which hopefully renders Japan able to cherish its country 's asset more than before , as it has a lot of vaunted cultural and traditional values . So I modified my thesis to include some changes and submitted it again . How great was that carving technique ! I really wanna study English ! ! ! not to meet a guy who wants a girl . I like English and historical things . But my parents do n't want me to do that . Today , I was reading a flyer on this program . I was so surprised ! I 'm looking forward very much to seeing my friends and my family : ) I DON ' T REALIZE SOMETHING IS MISSING DURING THIS KEY MOMENT . MY HORRIBLE HAUGHTY BEAT ME ! ! ! ! I went to my part time job teaching mathematics to a junior high school student this morning . After sleeping , I studied English vocabulary . First I learned the new words ' meaning , then their pronunciation . Although I was a badminton player from the elementary school until high school , I have not been playing it for a long time . The lake 's surface was peaceful the other day , but yesterday it was choppy . We held a symposium to discuss students who could not attend school due to personal problems such as mental health , being bullied at school and so on . They are worried about their children 's problems . I was worrying earlier because I had n't been on it for a long time . I think that he is very lonely on this trip . If I go there , I 'll walk quickly on Wall Street like a man pretending to be very busy holding a cell phone in one hand and a cup of coffee in the otherer hand . The third reason is , there are many famous places there , like the Statue of Liberty , Times Square , and Central Park . Hi everyone ! ! ! ! We watched a movie that has been very popular with the Japanese lately . It depends on the scene . Though I ca n't help worrying about places that have been affected by earthquake , I 'm going to go out more frequently . The Chinese often open the ghost door in July . She never talks a lot , but her words are meaningful . You never expect to hear any nonsense from her . I was refreshed . I told her , `` Bite your tongue . `` The following is written : [ `` we do n't use gasoline , perfect taxi ! Better isolation . The first program that I 've written is `` Hello , world ! `` . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sense . Because , the big earthquake and tsunami hit Japan in March . . Tattoo boom I often see many people who have tattoos on thier bodies in the US . Apparently , getting tattoos used to be a military and army thing . Tattoos are not so popular in Japan . In my opinion , If we get a tattoo , it can not be easily erased and when we getold , the tatto also gets out of shape . Tattoos influence our impressions of the people who have tattoos . To be hornest , I do notknow any positive aspects of getting a tattoo . I would like to ask somebody who has a tattoo what they feel when they get a tattoo . Also , in our life , we can make more and more friends through the internet . So thanks to internet and thanks to lang - 8 for helping me make progress everyday ! I mean , I can understand almost everything , but speaking correctly is sometimes very hard for me . I need to be put on a diet immediately . Nowadays I do n't have a boyfriend . Unfortunately , when I was 10 I moved to another city and I ca n't find foreigners here . Last Sunday it was my grandfather 's birthday . They 're very delicious ! ! so we may become friends and we can talk about each other 's country and maybe in the future we can meet up at one 's country . now I am staying in Pohang in Korea . But I am actually from Seoul , the capital city of Korea . here , what I am doing is study in graduate school in EE ( electrial engineering ) which sounds boring and difficult to others . I got ta go , so hope you can correct my English writing and I will be your friend . ( Although I have never been to South France . I held a farewell party for my colleague who has worked for 7 years since I started to work here . The story was very interesting . I thought to myself , why has this person come here to study English . She is older than me and the only woman . Today I have a big exam , I ` m very afraid , because I don ` t know everything , how will I do ? I 'm sure that many of you are used to western habits because of work rhythms : wake up early and RUN to work after a coffee , but what is a typical breakfast in Asia , for example ? This wednesday I started school again , in a new class . . . I saw some friends I didnt saw during the vacation and it was nice to see them again . . . yesterday after school I went with my friend to buy some fabrics because she wanted to make some craft with it , the trip on the bus was so long , the other day she was trying to pass the driving exam , but some old lady that was angry didnt let her pass . . . Media Communication is learning about the differences between old media ( newspaper , magazine etc . ) and new media ( such as the Internet ) . When I finish the all of my courses in university , I want to be a journalist . Tomorrow I ` m going to a concert with my friends . And then we were suspicious of the pizza because we usually make noise . I recommend `` My brain says stop but my heart says go `` by FM static . Thailand is a country where English is an official language . This lets them learn two languages together even they did n't know it helps their pronunciation . People who have good language skill tell me that we have to start with listening then speaking , reading and writing , a similar pattern to how we learn our native language . I found an interesting article in a magazine . I 've never tried this product before but when I was young and stayed at my hometown , my mom often cooked curry for breakfast . One example of the problems which left - handed people may experience is the difficulties related to handwriting . It is undeniable that there definitely exist lots of great inventions throughout human history like the light bulb , the steamer , the telephone , etc . Similarly , they use these knowledge to make contributions to their society . Only in this way could we create a harmonious environment on the Internet around the world . We have many lecturers , and some of them . do not speak English very well . After thirty minutes , I became aware of how difficult it was to understand . . . Because it was very embarrassing , I decided to study computers . Sometimes , he wants me to help my neighbors too . ( Although I do not like doing that all the time ) . When I have free time , I can look for useful software and study them . Does That Make Sense ? I have a feeling when I hear someone say `` does that make sense `` that the person is getting impatient or just being rude . I immediately took him to the hospital . Anyway he seemed fine before going to bed . I 'm watching one of the american tv series `` Big Bang Theory `` . Maybe Words Free is not its proper name , but you can find it by typing `` Words free `` in a search engine . I think Scrabble is a good practice to improve my vocabulary . Are there any differences between them ? Which is right or which is commonly used ? The first person said that they will check whether they can correct it or not and hold on the line for second . My wife 's zousui contains sliced Japanease radishes which are supposed to be good for you when feeling sick . My favorite person is my friend . Sometimes , we go to su - won . I like my friend very much . It 's not the main religion of your country , right ? But after I have learnt about it , I think we should embrace it , and live up to the standards of Jehova and what his son Jesus taught us in The Sermon On The Mount . We meet people from different countries there , and mingle together and exchange our culture . Wonderful ! So I wanna ask t if I am allowed to join your congregation in the disscussion next time ? So thank you so much for tonight , I am really appreciative of your cooperation . I ` m studing in music school playing the piano and synthesizer . Every summer I go to Ukraine to see / visit my grandmother . Our company mainly deals with producing and marketing mobile phone cases . Tough reading and writing . Nowadays I practice pronunciation , but it is difficult and very different from Korean . `` Let it be `` was released later than this album but Abbey road was their last album , because they recorded them later . In the last years for `` Vote for your favorite album `` , it was ranked No . 1 in Japan . I watch it because it is useful to me because of the English substitles and it is free to watch . It seems like I will watch it all of the episode . My favorite movie is Burlesque . Christine Aguilera makes an appearance in the movie . They live far from the academy . Hello everyone . But I also want to make a lot of money , because my family does n't have lots of money to send me to school . Today , I have some questions about quotations from movies . I read in a magazine that American newspapers often use quotations . It was the first stone building in the city : when King Peter I planned to build the city , he started with the fortress . There was an exhibition of the sand sculpture on the beach near the fortress ( in the second photo ) . In the first photo you can see the famous spire of the Peter and Paul Cathedral seen from the pier . According to the story , during World War II when the city was blocked ( blockaded , sieged ) , a whole echelon of cats was brought into the city for extermination of rats . I bought Rosetta Stone ( English levels 1 - 5 ) . I can practice how to pronounce English words and understand words ' meanings without using Japanese . Today , I wore a black Care Bears T - shirt . I bought this recently ! But he ` s never seen Care Bears T - shirt in Hawaii , so he was suprised : D The news said our military rescued 25 sailors who were captured by Somali ( adjective ) pirates . Tactically , in this case the government should have been passive , because the captives ' lives depended on the pirates . I did not cook it the way you 're supposed to cook jelly , but I cooked it as if I was making coffee . I 've been using Twitter almost every day . Unfortunately I do n't have any pictures . So we cooked lamb , beef , pork , and sea food . Indeed , sushis taste good if the chef is nice and tastes terrible if the chef is not nice . Kyoto has a lot of restaurants . 2 ) When the fat are thin , the thin died a long time ago . I watched part of `` Beautiful Dreamer `` , Urusei Yatsura 's movie series . Meanwhile , I also want to practice my English . Because I entered my bank card password wrong three times . In Japan , Japan TABACCO INC which produce and sell Somoking is very influential in many areas . For example in the media , the Federation of Economic Organizations and politics . Last year a politician said that tax one cigerettes would increase so that one pack could could cost as much as 1000 yen . ( current cost is 320 yen ) There is a person who is against increasing cost cigarettes in medical area too . He always remarks in media `` what is the scientific proof that smoking is disadvantage to health ? `` `` Can you prove the relationship between smoking and bad health ? `` `` Of course I dont need to say anything about passive smoking `` It is obvious that smoking is bad to our health , but he insists that there is no perfect explanation , so we must not impose on extraordinal tax and exclude smoking people . Today is called `` Marine Day `` and so today is a holiday . However , today is a school attendance day . ( Chuseok is one of the most important holidays in Korea . ) So it is difficult for him to enjoy life because he controls himself all the time and thinks everything should process in the right way . Sooner or later I will finish the semester at my university , so I 'm busy to sum up my class 's for the tests and report . So I 'll do my best this month . Thanks to that , I can now understand it when I watch it again . Recently , I get tired easily . My profile picture has changed . I went to dinner with my friends from my part time job yesterday . It was delicious but the restaurant was full of smoke . I got a small gift from an English magazine company today . The last time I met an English man I could n't say anything to him , I do n't know why but it was impossible for me to say even `` hi `` or something like that . Also , he had a wife who was a very beautiful . Still , a ray of the sunset is coming through the windows into the rooms . After stuffing all the items into the fridge , I take some glasses from the shelf and a Yebisu beer from the fridge . I usually read the entertainment or society sections n . In Japan it is a symbol of spring , so when I see it I feel spring has come ! ! In general , many students will start the job hunting when they become third - year students . Once they pass the position of `` new graduate students `` , thier job hunting becomes quite difficult at an alarming rate . As a matter of fact , they will spend so much time on the job hunt that they can not attend the classes they need to graduate . I got up 30 minutes earlier than usual . REASON1 / I want to speak English because . . . I read American famous & popular literature , The Great Gatsby translated by MurakamiHaruki . We watched TV , listened to music , and played the piano in her new house . I thought I had a nice day with my family . Her color is yellow and white . While we were staying in Singapore , we went on a tour around Johor Bahru , Malaysia . There was just a hose or a bucket instead of paper at the toilet . The first day of Autumn has come . . . Egyptian food is similar to Turkish food . It was different from the usual tobacco . Sometimes it seems pretty hard for me , but I set myselft to rest by thinking about russian grammar . Taiwan is the safest country of the ones I visited . The pregnancy happened suddenly , She said that she 's really happy and she 's never had a feeling like that . Many of my co - workers helped me to learn the new system . Because all of my co - workers are not Japanese . But , I want to learn another way . Could somebody teach me ? Because this is the best way to brush up on my poor grammar . But I worry about one thing . I 'm not good at writing even if it is japanese ( my own language ) . I hope to make my grammar better through this site . It 's a bad day today . I quarrelled with my boyfriend . I was born in Moldova , and now I 'm studying in Riga , Latvia . This is the main reason ( no comma ) why I 'm trying to learn it . I 'm not sure whether my ancestors were ninja or not , but there is a possibility . Are you interested in ninja ? A few days ago , I watched the final episode of LOST , the famous TV series . I visited a wax museum . The museum was brilliant . I have never been to Sushi Zen , because it is very expensive - one item of bluefin tuna ( fatty tuna ) costs approximatey 2000 Yen ( I guess it 's about $ 22 at the cuurent rate of exchange . ) ; ) I feel most content when I succeed in describing or expressing something , using syntax and phrases special to the language . I want to make a lot of friends . If you want to make friends with me / be my friend feel free to contact me . I just know a little English . What 's my aim ? Studying English together with whoever wants to learn Chinese . It 's raining outside , and the temperature drops quickly . He will leave Japan next summer , so he is writing a book for himself . He opened a souvenir box , and his appearance had changed . He looked like a grandfather . Everyday we went shopping at some place , and enjoyed it . ? I think that this time , our family ties had deepened more , and more . Anyway this month is special for me and for all Muslims around the world , and for this I scheduled my time to spend it doing worthwhile and valuable . At the beginning of the few months , I did n't understand or even catch a word people were saying . Also there were few Japanese people , so I did n't have a friend who I could truly rely on . So I 've decided to restudy English from today on , so I can be fluent in speaking English . ! On his two - story factory roof some futon ( something for sleeping in ) has been stranded up there by the Tsunami . Today , I bought `` yotsubato 9th `` ( It 's comic book ) I met the president of the company , and we talk a lot about the amount of money . Memory Of A Fish So it is said that you can be clever if you often eat fish . When they were elementary students , they had to collect night soil , scrapheaps , flies and so on . My favorite singer is Sina Ringo . Cultural Difference . . . Too quickly ; I am very surprised . what do you think ? are you good at your mother language ? how many people do make mistakes ? freakishly large amounts of money anymore ! ! In English class , the teacher made him read aloud an English sentence . Are you okay ? Can you come to Japan from August 1st for about 2 weeks ? You must have a passport by then . We would like to hear your ideas and opinions about open innovation . We are now learning about open innovation in Europe and US compared Japan . Oh my God , I 'm crazy , firstly I do n't love him , secondly I think he ca n't finish with her , but he wo n't listen to me , I do n't know what to do . The snow piled up in Tokyo the day before yesterday . I 've heard it 's a very difficult qualification to obtain , so I have to keep studying for at least a year . It is very weird that air conditioners create a hot summer with higher temperatures . She answered , `` Definitely , the former ! `` . Maybe some English people know this TV program , I 'll appreciate every correction anyone makes for me , and I 'm really thankful for your generous help . Complicated . I do n't like the rainy season . As time went by , my interest faded away because sometimes I did n't received any responses . There are so many people learning English in the world , it is understandable how many English articles will be created everyday and it could be overwhelming . They gave me a souvenirof cookies that contains salt from the ocean around Mont Saint - Michel . Last night was a rainy day . I found that there was nobody and felt a little scared . I was bitten by a black dog when I was 10 years old and I even had to stay in the hospital for 3 days . After going back home , I went online and found that there was another student bitten by them 1 hour later after me . I also had fever , and I was thinking that this [ CROSS OUT ] might be related with inflammation . COMPRENDES ? After all , I drank five cups of coffee in the end . After lunch , I pick up my cell phone and saw that there was a call ( message ) asking me to have a interview . Also I uploaded my artworks on Ultra - book . It is next to some newly built high apartments . The symbolic buildings of the modern life and old fashioned alleys . Sometime I go there alone to drink whiskey and talk with `` Mama - san `` . Do you immediately notice mistakes when you look at our English sentences ? I do n't want to make trouble for my senior business partner . In Japan , the government promised to give every Japanese person 12000yen ( about 120 $ ) as an economic stimulus policy . Asics shoes are n't as cool as NIKE ones , but they are very functional and reasonable . They work for our subsidiary in America , but I had not yet met them . The purpose of them coming was to have a meeting about making the budget for the next fiscal year . When they went back to America , they tole me ' Learn to speak English and come to America ! ! ' First of all , let me introduce myself quickly ! My company is a pharmaceutical company which was incorporated a year ago My favorite groups are SID , HY , RAD WIMPS I like eating delicious food . I worked at a Starbucks drinking a cup of coffee in the morning of that day . I think traveling is like buying hats . We can see a lot of beautiful sceneries , eat delicious fruits , go swimming in the sea and so on . Only last screen remains . ( Family ) or hope it will grow healthy and happy . So , what do you think about it ? I want to kill you , because you 're tasty . `` I felt surprised and I did n't know what to say . He 's just a 10 - year - old boy who likes to use humor to describe his emotions . I take a private English class once a week . Last Thursday I got a homework to write an article about a famous sports person using emphasizing phrases . I recently bought a new English textbook , and I read it as often as I possibly can . I have n't ever studied English seriously , but I think that my English will improve if I study it more . Do you know a Manga Cafe ? It is very convenient and cheap . We can read many Mangas , have free drinks , Internet , Watch TV , DVDs and relax ! But these days I 've gotten fat ! snow is beautiful , but also so cold : ( Please tell me what you know about it . I was accidentally attracted by a JP learning magazine . Its cover had a big title meaning `` spend no money to learn Japanese well ! `` . It introduced some language learning websites . ( Most of them are for Japanese learners . ) After a few minutes , I got an account . I could n't eat them here , because everything is very expensive I coud n't buy them easily . Recently my favorite song is Taylor Swift 's ' you belong to me ' ! I like making something like an accessory , so I thought that I could get some materials over there which have a different pattern than Japanese ones . Though I still look forward to going to Taiwan . Actually I started ESL classes . When I am finished with ESL courses , then I will study radiology . Introduction 2 I like to go to BBQs with my friends . They are from China , Korea , Turkey and so on . Let 's improve together and aim for good results in our studies ! howth is the place where the Irish film ' Once ' was filmed / made . but unfortunately it was very windy and cloudy . I 'm going to clean my room , hang out on the futon , walk around the neighbourhood , go to a library and bake a cake I 've had played the piano for long time , but I did n't play it for a couple years seriously . I admit that I sometimes like drinking some alcohol , liquor , hard beverages and beer on the weekends to relax but it does n't imply / mean that I am a alcoholholic . I speak English with foreigner on msn nowadays . Where do you recommend ? Many office workers have a meeting on Monday about last week 's activity , and must report their activity for their college and boss . The performance of Kim Yuna was excellent ! ! I came here from Italy . In Italy , the temperature is 40 degs . One night , a family is having dinner together . A man , who is annoyed by the chatter of girls next to his room , would say , `` Speak lower , please . `` This phrase indicates a bit of On a plane , a passenger was asked by a flight attendant , `` Would you like a cup of coffee ? `` Then she says , `` Please . `` I think it is more polite than just saying , `` Yes . `` I can say , `` Yes `` and then `` Please `` for adding some politeness . She said she is working as an import management adviser . `` Hi `` `` Hi `` `` 35 male USA U ? `` `` 18 male Jp `` `` good bye `` wow he 's the very same as the first guy ! ! About thirty people came . because I 'll play the drums at a concert hall for the first time ! ! Today 's class was English grammar about subjective moods , so I 'm going to write my diary with subjective moods . If I can speak English , I will make many foreigner friends . I am studying English now . I hope I can pass the IELTS as soon as possible , so I must work hard and I look foward to get more help here . Thank you He likes anime , so perhaps we can watch `` banishment of Haruhi Suzumiya `` , a popular Japanese anime film . More importantly , you are a very friendly person , and I am so grateful that I have a friend like you ! When I arrived in Tokyo , it was quite hot , I was sweating . Recently , Summer sale started at most shops so I hope to buy at Paul Smith but I do n't have enough money to buy on such expensive stores . One of my senior classmates in the foreign language department of SZU ( my school ) hung herself and died the day before yesterday in her dormitory . So we laughed . She was very surprised when the doctor told her . It is nice for me as a nurse and as a human . Although we know , either consciously or subconsciously , that money is not the end but the means , we tend to confuse money itself with happiness . Of course , money is so important for living in society , yet , you should not forget that this is an illusion made by human beings like laws and countries . As usual , I commuted by theMRT ( mass rapid transportation ) . However , you have helped me a lot with English . I ate salmon roe with soy sauce tonight . This is good for growing rice . on a trip in this winter holiday . I know I have to study more . Today 's weather is good , so I aired the bedding before going to the university . I prepared for tomorrow 's experiment . I ca n't figure out diffrences among them . . My client has decided to deal for the advertising , and The company 's human resources administrator said that My name is Stefan and I 'm 18 years old , born on the 17th ( of ) April ( in ) 1993 . Changing environment , I think is the prior problem for me . There are a lot of things I need to deal with it , packing luggage , becoming more familiar with foreign language , searching for a house to rent . . . . Do you have a twitter account ? Today , I made a new Twitter account for practicing my English . It 's a trophy . I 'm thinking that 's all for today : ) Jay Chou is a Taiwanese singer , and QiLixiang is one of his songs . It means a sort of plant , I guess ( I do n't know what QILiXiang is ) . Yes that is right , to understand Sanma is as difficult as philosophy . After the training , I ate a mixed salad with mushroom , carrot and beans . Actually , I 'm thinking about working part - time . I 'm studying the CALLAN method for speaking , reading and listening to the vocabulary book & CD , and trying to write these diaries for grammar . I decided to study my English harder so I could speak it fluently someday . She also knows a lot about Japanese culture . For example , she knows about famous Japanese models , singers and so on . Listening to music ? ^ ^ thus , maybe I will continue to write my blog everyday . I 'm not good at presenting or speaking , in fact I 'm kind of a shy person , but it was good experience . And , we talked to each other about what I will do after graduation and my campus life . Someday , I want to go to the Philippines . To be honest , I do n't have any idea of Rwanda . I do n't even know how to spell Rwanda . It 's been two days and nobody has corrected Pretend to be a Scottish Fold . . . . . . . . . . . My first day . Does cannibalism have to be considered with the idea of cultural relativism ? If I were a pig , I would claim pig dignity , pig privilege . It might be hard to get protein otherwise , or it might be a sacred ceremony in that society . The sea waves are beautiful . I do n't know the reason for the hole , One is the parent and the other is the child . Is it pretty ? Lately I am very poor because I spent much more money than I had expected to . Thankfully they were rainy days , so I surfed the internet , listened music , and watched movies . I even recorded parts of two songs - one was a Chinese song , the other was a Japanese song . It was in preparation of a Christmas or Thanksgiving video for my friends . I thought they had blocked me on MSN , heehee . New colleagues are coming soon . We 'll have to prepare a computer for them , and will also be responsible for training them . After my work is over , I always go to the supermarket near my home . I stop by this supermarket when they are about to close their shop . I found her really cooperative , patient , generous and smart . Recently ( , ) Haneda Airport changed from a ( mostly ) local airport to a true / proper international aiport . Recently , I started to write my blog on the internet . Honestly , I 've been afraid of declaring my true intention for learning English . ( space ) Although I do n't speak English often at the moment , I wish to improve my English . It is sherbet ice cream with many kinds of fruits . Because this drama is not a made - up story - the characters , drama , and everything are from real local life . Now some of my work is almost 3 months late ! ! Is it a magic holiday , or it is just custom ? ? ? He said to CNN that `` I can do anything , I can be anything `` Every time I tried to come up with an idea , the person who recieved a postcard said it was good . Active : Do n't blame me Passive : Let me not be blamed . Active : She gave me a present yesterday Passive : I was given a present by her yesterday . A present was given to me by her yesterday . but it will be difficult to establish a company . It is very nice of you to see my diary written in English . It has become an incomprehensible text , but this is the end . Have you ever experienced unstable sleep ? the horrible situation , we get used to it at the end . It was a chance to have an experience in an English meeting . There were people who work in other countries in the conference meeting . Others are hanging wind - bells and bamboo blinds as the devices to create that `` cooler feeling `` for getting relief the summer heat . But my friends who are learning German with me don ` t or can ` t participate in the program . But I have found that there are a lot of English words which although I can rean and understand them , I can ` t use them in writing or conversation . So I must improve my English vocabulary until summer . It was nominated for the 2008 Grammy award for song of the year . * ice cream soda It seems easy to convert feelings to the opposite one once I have recovered the original positive mind state . I think there is a kind of horizon between our positive and negative mind states . Remember you never drag yourself alone into the dark , but the people around you as well . If you think something positive , it will come true for you . Today is Saturday , and all my colleagues went out for fun . However , the results did not satisfy me . In Japan , we can watch it on Sundays , so I am in the habit of watching it . My school closes for summer vacation this Friday . After long and great summer vacation I want to study , study , study , and study again ! ) ) web - design courses , photography courses , preparation for TOEFL , dancing . . . Recently , the news reported on many food safety problems . Food retailers have responsibility , & nbsp ; too . So I have decided to practice my English writing skills from now on , on here , Lang - 8 . Creating a virtual life which correlates with your destination is the best way to get it . I drank medicine , and sleep more and more . I am very happy to join the big family . I am a Chinese girl . I want to make good friends here . My professor said , in this case , present tense means someone 's habit or a fact . I tried to memorize the new grammar for the next lesson . Tiger is one of the best animals ( which ) he likes . On the way of returning home , though I pushed the twin stroller , Every evening plenty of classical concerts are offered in churches , theaters and historical buildings , while in the daytime there are marvelous views of castles at Moldau . All the buildings with pastel colours and graceful decorations in the old town attract strolling people . The cheapest seat , which is located in the highest stage but still close enough to watch the stage and orchestra , costs just 50 kc ( 2 Euro , 220 yen ) . I had no plans , so I just hanged around and droped by ( visited ) interesting places . Second , I had a secret birthday party for my friend . Because she came from Kansai area soon accepted that application . Then we went to karaoke . Economics , science , engineering , and technology change day by day . We know many methods to release stress . Some people eat sweet chocolate , have heavy foods , drink alcohol , or buy expensive bags . If I have am stressed about something or someone , When you learn a language , you must develop the muscles of your speech organs to produce unfamiliar sounds . So , I ` ll cheer for the Canucks ! It gives us an English language environment . I hope everybody is happy , and all of us improve our abilities quickly . we could go fishing , run barefoot , and wander the streets with a vacant smile on our face and melting ice - cream in our hand . Are you like go for a walk with your friends , eat chocolate , and look at the sky ? Last week I took an English volunteer interview and people who pass the interview have the chance to show museums and other places to foreign tourists . I thought I did a bad job last week but today I received a message from the interviewer . She said I passed the interview and asked me if I wanted to go to the Zhejiang Silk Museum as a volunteer . What I have to do is give tourists a tour of the museum . Today I heard that my colleague would like to skip the writing class since she did n't finish her writing homework in time . Most of the TOEFL topics are dilemmas , we have to explain the main idea , find the sentence or appropriate supporting sentences and write about them in 250 words . It 's quite difficult for non native English speakers to discuss unfamiliar topics , I also tried to practice my writing here for my first TOEFL examination . Even if we ( can ) pass TOEFL to study abroad , we plan to come back home to work after we graduate , so in my mind I thought that studying in Thailand might benefit my country more than studying abroad , for which we have to pay high fees for the test and tuition . One good point of view for higher education abroad is to broaden your mind and accept a different culture or lifestyle . Studying in our home country will result in much research and development , this economic crisis will strengthen our country . Even though people in Thailand admire the new generation who graduate abroad , I feel I should promote higher education in Thailand . Today I heard of this website from a friend , he said it is useful for language study . We would have to understand different cultures . Someday , I wanna live in another country . Of course , soccer is n't the only exercise I enjoy . I bought a gadget named FITBIT . The gadget can log my dayly activity . The IF of the activity is web browser . Of course I 'm still bad with English . I might write in it every day . I like healthy food . So , I often eat fishes . This day I 've met a foreign couple . Although , the woman did n't eat a lot of sushi . I heard that there are few foreign people did n't eat law fish . That woman almost has not eaten any law fish . I Hate being alone My parents brought my favorite things to me : some Japanese food , some books , and some clothes . I love everything ! ! I am just observing this week and will begin This is why I think it is my part of identity . Lots of words disappeared from my head , and I forgot lots of grammar . I would like to share details about me to people who read my diary . I spent the money to connect the internet to my house . The computer is my sister 's , she bought it maybe 5 months ago . She do n't want to connect it but I do because I would like to use lang - 8 at my house . My sister said that after I connected the internet , her computer had a problem and may have broken it . . We do n't understand each other . In the end , I decided to cancel the internet service . Some people are now willing to learn Cantonese , but I have to tell you that you are actually only learning one version , which is the official one . Many centuries ago , lots of people from north of China moved to Canton to escape the war and cold , and then the immigrants ' language gradually evolved into a new kind of language , which is a mixture of Mandarin and Cantonese . I love taking photographs but nowadays I have not taken any . I 've recently started taking an interest in photography again . I attached 3 cute photos of animals This year , I called them nearly everyday to share my happiness and sorrows with them . When we leave we must remember always to come back . However , it will be rainy for 4 days from tomorrow onwards . Actually I think I can not get full marks on all of the questions . I mean I did it but I just guessed the last 20 questions . . . . . . There are KANJI , HIRAGANA and KATAKANA in Japanese , That 's crazy ! As everyone knows Japanese originated from the Chinese . So , logically it should be easier to guess what the words should be I think . It is a really beautiful city with many things that can make us very surprised . I do n't know how to describe how wonderful it is . I am sitting and enjoying the view from the window of the hotel and I feel a bit regretful because I am leaving Nha Trang tomorow . The Japanese rush to the fully - blooming cherry blossoms in order to hold parties , called `` Hanami `` . I heard that it is rude to say `` Can you play tennis ? `` So please search me ! ! ! ! ! ! He can speak Chinese very well so he know a good way to learn a language . Welcome party Their new circumstances , taking care of their baby and so on . My computer was n't working last night . I 'm looking forward to someone 's corrections . I was reminded about it when my new friend asked me when my birthday is yesterday . I knew why the students did so . Because when I was in college , it was very annoying when the teacher talked about something so dull and useless that I wanted to sleep . In my ninth month of pregnancy Starry , starry night , flaming flowers brightly blaze , swirling clouds in violet haze reflect in Vincent 's eyes of china blue . Everything seems to be so uncommon but moves your heart strongly . did anybody see the movie called `` Heartless `` with Jim Sturgess ? I need to know how to say something , cuz I have to send a letter to someone , but I do n't know english , so please HELP ME . I try to look at everything from the positive side . It was so funny thinking about it now . I would like to take this opportunity to exchange deep and beautiful thoughts with people from all over the world . It would be very nice if we could learn from each other , and be a good influence in order to develop as a good person . I would like to cultivate an international friendship . Thank you again . These are hand warmers , boot warmers , etc and small packets which are held in the hands . If Mongolians could get hokkairo easily , they could be so happy . Therefore I felt his patriotism in his essay because most of the students wrote about commercialism like the hospitality in high grade hotels . My L - 8 friends , please , give me some suggestions . However I ate a fast breakfast and I washed up fast when I learned that we would go into the field with my dad , exactly in the currant field . I found my friend was crazy about shopping . even though she had already bought many clothes last week . today I had a very good time ! cause ' few people will chat with me . Japanese animation Speaking of a Japanese animation , on Sunday evening , [ SAZAE - SAN ] and [ CHIBI - MARUKO - CHAN ] are shown on TV . bumper . So my friend and I were dizzy and totally tired . I 'm very interested in philosophy . But we care about the huge earthquake that happened in the Tohoku area . . The parade started at 10 : 00am , at that time it was a little bit rainy and cold . Many people in Omaha came to see the parade , so I really enjoyed it . this semester we finished our graduation performance perfectly ! ! ! im so pround of our show : ) and I also took the TF test , although the result is not high enough , I still can go to America next winter ! ! ! ^ _ _ ^ it 's really exciting : ) im going to Idaho . . . I arrived at the academy after class was finished , so I could n't hear a lecture for even one minute . . I felt so terrible because of my bad habit . But I think we should decide independently with whom we want to marry The first class of translating subject ! ! ! It was different from what we had thought before . We answered after discussing together . But it was really surprising because the biggest problem of learning about the subject of translating was not about the languages that we wanted to translate into , but the ability on using our mother tongue itself . Because my hometown in Tokai is famous for ham . . I 'm writing this at work . _ ( sorry boss ! ) She is very pretty ! I started studying English maybe during elememtary school , second year . Confiscate is the word I have memorized today ! Please teach me example sentences containing the word `` confiscate `` . August is the best season for diving and snorkeling if you can bear the cold water . DAIHATSU may not be as famous as the other automobile makers . The teachers were there too ; everyone drank and ate a lot . On my brother 's vacation we traveled to LA , Las Vegas , and San Francisco He 's not very good at studying things like English , math or Japanese History . Actually , I thought anybody could be a teacher , because you just say what you know , and so there is no effort for it . And you must paraphrase more simply . Controlling my budget So , I decided to control my budget by checking my expenses with an iPod app . On the way there , I saw a big rainbow crossing a river . Reading is especially hard . And If I have Chinese friends , I might / will come to like Chinese as individuals at least . I live in Italy and I 'm a biologist . My specialization is Nutrition . Today , I will introduce the SAGA international balloon festival . That festival is the largest scale event in my town , started in 1980 . It is so fantastic that many balloons take off simultaneously . For example , DORAEMON , Tom & Jerry , Pikachu , ATOM etc . The second is a very practical sentence because I might have a lot of opportunities to use this sentence . The culture of IBM influences me , they are dedicated to every clients ' success , innovation that matters , trust and personal responsibility in all relationships . Nowdays , I love to read books that writes about other languages . . I 'm trying to make some sentences . . I believe her river , asada mao will be better next time , , ^ ^ although there are some mistakes in today ' game . Therefore , this semester , I want to study harder than before with my favorite lectures . Love , family , friends , career , dreams , ambitions ; They are indeed significant , but they are no more important than one word called `` happy `` , because life is precious , imperfect and fragile . There are 28 letters in total in the Arabic language . Tanwin is used as follows : If you want to say `` coffee 's `` , then it will be qahwatin ( `` tin `` is kasra plus tanwin ) . If you want to say `` of coffee `` it would be qfwatan `` tan `` is fateha 's tanween . There are a lot of Arabic words that went into the English language . For instance , alcohol , lemon , soda , guitar , sherbet , arkari etc etc : ) I forgot the password and even my ID . if you know me , let me know my ID and password . I uploaded my last entry a kinda long time ago , maybe two months . I didnt write any entries about porno ! ! yeah I love korea . Furthermore , they have to hone their language skills to perfection in order to perfectly understand their lectures . Another problem is the fact that you may miss home and friends and probably wo n't get a chance to visit them frequently ( plane tickets are too expensive to buy every weekend ) . Earthquakes occur here from time to time . It 's weird . This year is very weird . staying with a few colleagues in our leisure time . It 's a little troublesome to organise a A good neighbor I have . Organizing and Planing is The Most Important Thing Like the saying , `` It ca n't be helped `` , I have to go through the process of trial and error to make a well organized and planned life . It was awesome ! After I returned to the house I put the pictures on the computer and enjoyed looking at them . In my class , I heard that the Japanese did n't take care of their own oral hygiene while in other advanced countries , people went to the dental clinic in order to undergo medical examinations twice a year . Some Japanese people who ca n't speak English at all said to me `` Oh Tomo - san you can speak English fluently , I envy and respect you . `` Every time I hear this kind of opinions from their pretty and witty mouths , I get so excited as he adrenaline rushes to my head . So I decided on it . After watching the video and listening to the song , I became more interested . According to the legend , a pair of stars were separated by the Milky Way . They are lovers but they can only see each other once a year . Yesterday , I sent an email to my professor with my lab partner . I 'm sorry to bother you , but could you tell us when it would be convenient for I am gon na join this club every Monday and Wednesday . I have not written written this diary for a long long time . Because the bowling alley was so crowded , we had to wait for about an hour ! I went crazy bowling and played three games . The band I 'm crazy about is called `` HEAVY CLAFT `` , they are a melodic punk band . You may know about the Snow Festival that is held in February every year . My strong points are building servers , and responding to security problems . I like to read everything around me . As I got more interested , I watched them again and again , and finally , I could understand what they were saying and laugh with them . Tomorrow morning is going to be scary . Because I think that growing the foods is fundamental to human life and especially in Africa , or other developing countries , we need to help teaching agriculture skills . Although it could be translated into ' Genki desuka ? ' or ' Tyoushi ha dou ? ' , we hardly say these . At the same time , I study law . I might want to be a lawyer in the future , just might . . . Beginning today , I will write notes in this diary . Yesterday was China 's traditional Valentine 's Day [ Qixi ] , however , it seemed nothing to me . I just try to think what I did wrong , but no answer comes to mind . I know that I am a new worker , but I want to be a good worker , and I trying to . Good morning everyone . There are many convenient menus in computer programs . Although I sat in the right front seat , I could not keep up with her ant - like voice . I really want to say `` sorry `` to you . These days , I thought a lot of things about my college life . I made so many mistakes that cost me lots of chances and time . In this world , there is just one person that I can call `` father , `` and only one person that I can call `` mother `` , so , what is the cause of me not cherishing the days I stayed with them ? The workshop with Japanese in our school was finished yesterday . After two month in July , it 's our turn to travel to Japan and have a workshop with Japanese . I expect I I will have a good time and meet more Japanese . If I confronted with them , I 'd make friends with them . Now she 's looking for a job , especially in Marketing management and advertisement . I have to do my best at all times . And particles of sand that also shape stars were abound in the beach . He became very happy when it arrive at my house . The address was in a different part of city which he had to visit . To reach the addressees he wanted , we organized a car and a map according to a plan . We finished our program at 8 o ' clock . And the time came for him to leave for the Ukraine , because he has some work to do there too . Can I ask why the eclipse happened earlier than estimated ? I should be very very careful . Last year the winner was Valerio Scanu , with a `` melodic `` song , I 've often said it is `` a song for old people `` because of its rhythm , but it is not bad XD : ( 4 years ago , I started UK 's indie rock music and became interested to study English . ) I hated English , but now I like English ! Of course I 'll cook some spaghetti and curry ! Anytime that I 've enjoyed the plot of the book or the writing style , I can say I 'll always read almost all the books written by this writer . I think it 's like the beginning of an `` intimate `` relationship with the author and I want to know the `` world `` of this writer . A video about sushi in English was shown and the instructor explained sentences which were used in the video . `` Nigiri sushi has long been a favorite delicacy for the Japanese . `` I 'm busy and I 've been going to bed so late recently . They catch mackerels For my coworkers and customers , I work hard ! ! It went to Hornsby via Macquarie Park and University . At that time , I chose to leave that school And every time I have seen a middle - aged jogger Today I heard some shocking news . The prior president of Korea committed suicide this morning . Before he died , I also felt a sense of betrayal like other many Korean people because of his irrationality that was revealed a few weeks ago . Of course , it 's just a superstition , but my tutor was very I interested in it . Eternal sunshine of the spotless mind Or , just your projection or imagination . Therefore , I went to a movie theater to watch Transformers ; dark side of the moon . But in the morning , we went to the Farmer 's Market . For example , there were animals , Superman , and a firefighter . First , some children can not go to school . In children 's case , they will be unable to learn in the school . Other than that , children maybe unable to go out with their friends . Nobody knows when wars or tributes will happen , so they have no choice , but to stay home . for protecting ships . It 's going to be longest bridge in Korea . Rakugo is one traditional Japanese art of storytelling . Although signing in to skype and having to take a long time to solve a little problem every time , So I am really gratefull . I decided to recite an English word every day and start using it . We publish library news and I have to take part in making it . I can see lots of differences ! It 's a really beautiful sea but we are not allowed to swim in it because of the crocodiles and sharks ! ! ! ! ! A duplex house is a dwelling for two families , including two separate residential units . I mean , two entrances , two kitchens , two living rooms or such . A young woman called Natalya had been talking to us about working for the famous cosmetic company `` Oriflame `` . When we usually go out , we leave Grace in the Pet Hotel . Our eldest son went to Australia this summer for a week . Fortunately Grace got her space in the car . My husband set up the hammock between the trees for the children . Instead of them she played with her favourite toy . I think if my plan were to be carried out , everyone would feel more comfortable ! It 's very interesting ! ! ! Today I found this website on my friend 's Facebook entry . I immediately registered without thinking . At last I purchaced a 42 inch TV with three tuners for digital terrestrial broadcast . That means we are study companions to each other , each doingour bestfor our ownpurposes , I think . The first two years were difficult , and they were nothing I 've ever experienced before . I got used to being here , but I lost my motivation toward learning English . I hope it will be a good opportunity to get my motivation up . I really love that we help improve our hearts together . I updated the firmware of my wireless router and changed its channel again . In my prediction , Hideo Higashikokubaru slightly has an advantage than others because of his publicity and his achievement as the former governor of the Miyazaki prefecture . We got a Disney English CD . When it comes to types of damage done to crops , in Australia `` fire `` was the greatest Tomorow Never Knows Tomorow I was going to play tennis and have a BBQ party at the tennis club , which is the club where I play tennis almost every Saturday or Sunday . It is said that the breastfeeding rate in China has been declining . Besides , as I 've mentioned above both parents have to work in this competitive society , so they have little time left to take care of 3 or more children . girl that Iove . There are fountains , crystal I also love this place because Even when they began to posses them , they did n't have many applications except for calling , compared to the recent phones . I decided to start this English blog to have an opportunity ( spelling ) to write something in English . And we went to bouldering gym . Bouldering is a sport that you need to climb up about 5m on the wall . We played bouldering for about 2 hours . I like my school festivals . First of all , I have to thanks to `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me , that is really helpful . This morning , I suddenly wanted to make a spanish omelette . I really missed her spanish omelette and I decided to make it myself . Instead of potatos , I put tomatoes into omlet . I recommend you to try itwhen you make omlet . They also recycled the trash . For a long time , in this journal I have not written . Today is the start of a challenge ! Now I will go to lunch . After , I will write in this journal ! I watched TV to introduce the online way to study English , the name of the TV show is `` I know `` . I heard it is made in Canada . The man who began to make `` I know `` said it is most important to improve words and phrases . So far , I studied English grammar . Hanging out with my friends . It 's a beautiful city with blue sea and golden beach . NO . 1 Middle School , please wait for me ! ! ! At first she needed me for some help on things which she really did n't know how to do . From the dorm aplication , learning program apllications , to every step of preparing an activity for students of our department , she always asked me to do them for her . Before I would refuse it indirectly , and she was still fine . But now if I do refuse her , she gets mad and says that I 'm very mean to her . The Beginning of 2010 Because I am a volunteer at my school now . I hope we can learn different things and happy together . These days I recognize that English is very important . Previously , I do n't have so much desire to see the concert , because I ' v seen linkin park 's concert once . For example , when he wanted to learn Hindi , he just went to India without studying anything . I thought I had not written a journal for just a few days , but actually it was a week . I am turning into lonely person . But few hours before , He called me and said that not available today . . . Anyway , just I told my feeilng nowaday in the diary . When we were on our way home , my daughter fell over suddenly ! His dancing and songs were brilliant . scarf , a pair of mittens , and lipstick . So I just remembered this web site and how useful it could be ! I have had a bad headache from this morning . It is very uncomfortableso I got a pill and took a rest but it didnt work at all . . . I need to put more time in my study / studies , especially ( in ) English , in order to get a good mark in the graduate exam next year . I had Toeic Class this evening . When I arrived , I was very hungry so I overate . Hello , my wonderful friends . The day before yesterday when I went to the internet shop to fix my computer , while I was on the lift ( elevator or something , I do n't know how to tell you in English but when you do n't want to use the stairs , you can use it to help you up to the top ) , I was carrying my PC in my hands . There was a little child around 5 years old who pulled my hair > . < When I was young , I was in love with eating American style junk food such as pizza and hamburgers . When I eat something so delicious , I feel so good and happy . I could n't remember every thing . I have class `` tomorrow `` about American sign `` Language `` . First I thought that is like the English languge but not really they are for for the poeple can to listen so they shoud be use the sing to conversation . I have class at 10 . 00 am in the moning . good night from Thailand now . We are going to sing two songs , one of three part chorus plus piano accompaniment , and one four part a cappela chorus . I was suprised . I went to the chilli festival in Fremantle today . For my friend I love eating , listening to music , watching movies and talking ! I went up the stairs two at a time because I was hurrying . It ` s an American drama . I fell in love with watching motorsports , especially Formula 1 , yesterday was the last F1 racing day of the year . `` Let 's watch Star Wars ! ! ! There 's a TSUTAYA over there ! ! ! `` So , we went to TSUTAYA and borrowed Star Wars Episode 6 . But I tend to be lazy studying . I must be a better learner . Everyone please correct my sentences . ( : _ : ) and find a job as soon as possible . . . . . . . Now I 'm looking for a theme , an interesting or favourite one for the 4th year of University . Moon Rabbit is the most famous tale in Japan . It is common sense that Moon Rabbit is hitting a rice cake on the moon . Because the moon 's silhouette looks like a rabbit hitting a rice cake . A talented person who can talk with a goat I like the hamburger and I ` ve tried them when I went to America . I wonder which hamburger shops is more popular in America ? Could you recommend any good hamburger shops ? I want to try some good hamburger shops again when I visit America ! But , hey I 'm talking about me right now , so that means strange girl meets strange boy in very weird circumstances . and lots of koreans confuse this with ' flatter ' but flatter can be used in the opposite way for example when your friend wears new clothes or gets his or her hair cut , at times like these when you need to set the scene for somebody to make them happy . The driver pretended not to hear me , and completely ignored me . raining ~ raining ~ It 's raining today . I 'm sure this is n't my general level English because it only measured my writing skills . I think that gene recombination is so useful and revolutionary for us . All members of our high school choir club were so nervous , but we managed to get through this which means that we can go to the next stage . The reason we were so anxious is because our performance this year was of a lower standard than average . I just scolded my kids . I scolded them . Anyway , let me talk about my plan on Christmas . The problem is I have no idea what present should I buy for her as a Christmas gift . I 'm a college student and I will graduate soon . But I 'm glad you asked me for my e - mail address . Drinking with my custumer . The atmosphere is so nice , I want to visit there again . Then one of my customers said that you do n't have to say the reason why you can not ; When you do that , other people will help you achieve your goal ! Christmas Present . ( We bought christmas presents for each other with my husband . ) I want to use now , but I ca n't . I ca n't wait until Christmas Eve . I have DVDs and some magazines about it . I wanna collect more of them . And I wanna watch `` Eclipse `` soon ! ! I like B because her choice in fashion is very cute and gorgeous . And she gave me a pocket tissue . However , it will be revised , and we can not be satisfied as long as the promise of free highways I invited two young ladies to come to my hometown Kamakura . in Japan , this is a famous anime moive , I guess it is because I only studied reading and grammar hard when I was a junior high school / high school student . It is strange as a human being that I can read , but can not listen to English , is n't it ? I have just finished doing exercises from an English page . I sent a message to my friend on Lang - 8 . I feel happy coming again to write my diary . I will try to write my diary in this site once a week . I really feel like having a little bit of English in my mind before I start working today , because I want everybody to really understand what I wanna convey and of course I wanna be ready to answer questions or requests at the store . I hope my job is not so difficult and that I may ( can ) learn a lot of new stuff . . . God please make me very smart and wise ( as ) it 's incredibly difficult to be in another country . . . I wanna cry sometimes but I cant in front of all these people and I ca n't eat anything . . . . I do n't wanna buy new clothes , . . . Yesterday , I did not sleep well . Secondly , the best advantage of autumn is apples . It 's obvious that autumn is the time to read books about autumn . I wish I could read it in the original , but I afraid my language skills are n't good enough . Because you were samurai . The first video clip was taken in Torres del Paine , a place near Chile . Today , my daughter 's best friend 's parents invited my daughter and I to their house . I answered that I did n't remember the number but as a regular visitor security guards usually let me in just by calling his apartment because previous guards obviously remembered the number of the apartment . I heard that in Helsinki a scoop of Haagen Dazs ice cream is 10 euro . I have been studying English recently . But I shall never give up until I get what I want ! One of my English teachers taught me the pleasure of learning English . it seemed to me like a movie or drama . I suppose cooking is far more creative for her than working in a small design firm , Actually , her food is really good and most of them are her original recipes . I want to make many friends . In China , Friends videos , mp3s and scripts are very very popular on the internet . My friend likes Joey because he is funny and does n't share food with others . Rachel is a beauty and Phoebe is a weirdo . Everyone 's performance is perfect on the first and last seasons ( I only saw season1 and 10 and I need more time to download and watch it . ) I ca n't help laughing out loud when I am watching it . I 'm watching the last episode . She gave me an e - mail and she informed me how she 's been getting along in it . In a ring , two sumo wrestlers hold a baby wrestler face to face with each other . First of all , I did a good job , probably ! At least most celebrities have to work very hard . As far as I 'm concerned they also have to spend lots of money on security because their private life is public . I was diagnosed as having allergic conjunctivitis . MY BIGGEST ADVENTURE IN THIS SUMMER ! ! ! I enjoy such unexpected meetings while on a trip . When we get along with people , even strangers , it will be a memory in our life . He can jump and run very well . I passed the Singaporean driver 's license paper text in Feburary , but 3 minutes later , I realized that I had already lost my JAPANESE DRIVER ' S LICENSE somewhere in Singapore . To be honest , I do n't want to go back to Japan for even a few days . Besides , the Japanese government will raise a consumption tax up to 10 % . So this time , I want to go back to Japan directly by Singapore airline . The image of Japan for foreigners , I think , was the mysterious nation , concrete jungle , and men having the ethic called `` samurai spirit `` wearing suits . However , the prejudice in which Japanese people are marked with not having human face is totally untrue . People who have little knowledge about Japan tended to think like the descriptions I mentioned above , ironically enough , the disaster revealed our humanity . During this time - space travel he finds his first love , Livia Beale ( staring Moon Bloodgood ) , who left him without saying goodbye eight years ago and had disappeared since then . A main difference between Italian and English is the length of the sentences in their written form . Thefirst point is the `` economy problem `` . Thesecond reason is the `` road condition ( s ) `` . Hoping there 's someone to save me , to bring me far away from here , to a brand new world full of blossoms and flowers , fresh air - the ideal kingdom I would like to belong to , in which I could completely display my talents and achieve what I deserve . I 'm waiting for your answer ! I 'm so hungry , but I 'm drunk . Hi all , my nickname is Madi and I 'm looking for native English speakers . Recently I have been thinking about being sensitive . Because I suddenly got a pain in my back yesterday . After seeing a model wearing this dress in a magazine , I decided to order it from the internet immeditately . I 'm going to Turkey ! I 'm going to Turkey with my custmers tomorrow . Hope I can keep on writing at least a message everyday and have a lot of fun here . * Tomorrow will be the result of the exchange student process . I did n't answer that question well . . . I hope I will be allowed to go abroad as an exchange student . Please , please , please . . . ! ! I met with a friend of a friend last night . I could answer only half of them and could n't answers the other half because I could n't understand all of their questions . Basically , this is the first time I have spoken with regular people . They responded immediately , and told me that I should not pay much money to get a new one . I was lucky . I really appreciate their help . My mouth was so cold that I could n't taste which flavor I was eating . I 'm planning to go abroad while on vacation next month . Luckily I was able to get a ticket to America at a low price . But I have n't reserved a hotel so I still need to find a cheap room . It 's been a while since the last time I traveled abroad . My girlfriend 's birthday is on the Monday of next week . actually I did 't prepare his birthday Today 's weather is not good in Niigata city in Japan . Spelling I will keep making an effort to write English diaries on Lang - 8 . I went to Hong Kong and Macau with my mother and sister . In Macau , we ate the same egg tarts and saw the same street scenery in a drama I watched . Though the tart was a little fatty , it was popular among other tourists . Seeing beautiful buildings , scenery , and shops , we felt like it was a dream . I can use Japanese and I am especially He is 5 ' ' 5 , skinny and had long blond hair . The one I want is very expensive . tomorrow I will go , though . They should control themselves although there is the word ' youthful mistake ' . I watched each movie , and I actually felt that the movie lacked an explaination and that it 's difficult to understand the story . My host father sometimes takes me to various place , for example climbing a mountain , or shopping . . . If I move downtown , I have more time to do something , study English , talk to strangers , or take workshops . . . I therefore envy Korean fans . We are not sure when it will be broadcast in Taiwan . It 's like endless waiting and really tortures me . In a shop , 32V was cheaper than 26V , a staff said 32V was more popular than 26V , so the price was cheaper . So , I bought some clothes , but , unfortunately , it is too big for me ! Ca n't remember words , write correct sentences or even can ' tspeak it properly . I had Japanese homework from my mother . avoid : We should avoid direct conflict when we disagree . postpone : Our school postponed the baseball game because of the bad weather . interfere : Some kids say that day do n't want their parents to interfere with them , but in actuality , kids ca n't live without their interference . lack : I sometimes lack patience with my sister . I want to talk with many foreigners in English . Especially , when its roof is covered with snow . It 's so sweet but it has a terrible smell . Because , I always believe in the power of jewelery which is a really wonderful power like charming . Of course , I have one which is anklet was made by myself . Nara is a traditional prefecture in Japan and it is famous of having deers . Sentokun is the main Buddhist character of the 1300 year anniversary of Heijokyu because of him having horns . However , some people debate which character is the best because Sentokun is n't so cute . Come tomorrow , too . Recipe for macaroni salad with avocado Mix all materials in a bowl and add salt and pepper to taste . I was surprised that some people actually complained about the taste of their lunch . After all , I just have less time to prepare for my / the big exam . Fortunately , I can enjoy sunshine every morning . Remember , when you get on a train , you have to wait for all people who want to get off it . I 'm going to go snowboarding in Nagano ! As time goes on , I can learn , experience something new that I did n't know about . There are some vegetables left in the fridge . I want to know English . My dream is to studiy in a British university . It was not as strong , however , it was already expected . We need to see the details and further research on it , so we still have a neutral stance for Hitachi Chemical for now . I turned on the TV and I was very surprised when I watched the news , So I thought the earthquake on TV and the one we experienced was different , because it occurred far from here . The legend was that : Chang E , the goddess of the moon , swallowed the elixir stolen from her husband and flew to the moon . The Mid - autumn festival is a traditional festival and it means family reunion . In Sydney 's Paddy 's Markets , there were many things . 1 . Prepare everything before going to work at night My school is an airline business school and I want to be a great member of staff ! But , I worried about her condition between now and the next olympics . If somebody tries to compel you to learn a language , or teach you something you do n't want to know , it does n't work . It 's my New Year 's Resolution : ) I do n't know how much time I 'll have , but I want to work 2 hours per week at least . Preferably , I want to spend one hour a day , but I think it is impossible for me . My mother is very anxious and my father also does not know what to do . If I had already mastered English perfectly , I would apply to it . I have just joined the site and I do n't understand how to do corrections , not comments . I tried to correct some people who want to learn the Russian language but I could only leave comments . Unfortunately , two of them died just after they were born . I named him Yuki because he is as white as snow , and yuki means snow in Japanese . Is interesting that now , just six months later , Julia had kittens again . Unfortunately , this time I will give all the kittens to friends , because I 'm going to have a new sister / brother ^ ^ Miyavi 's first concert was awesome ! He had a DJ named Teddy Loid ( he remixes some of Miyavi 's songs ) and a musician called KAVKI BOYS . S : Also , I hope that Miyavi sings the day of my birthday ( July 11 ) . . If I do go to whistler on thursday , I do n't care about college . I suddenly discovered that being alone in a foreign country really challenges my courage and endurance , which really pushed me to a tight situation . That was something I did not want to admit ! I can not write it down in English . My job is Systems Engineer . The reason of the times is crappy form of management . There are a lot of problems so I wish this form ( of management ) disappeared . mukashi ha nihongo ga amari suki jaarimasen desita nihon go ha hontouni muzukashi kara . demo kare kara ima wa nihon go wo motto2 benkyou sitai desu . . . watashi to kare wa takusan chigaimasu yo . . . So , I 'll go to the office until 8 : 30 ( every day I go until 8 : 00 ) She is also an actress . Shoma helped her . I wanted to go further west to Turkey through Iran , but 911 happened when I was in the northern part of Pakistan very close to Afghanistan , and so I had to give up my traveling before the Pakistan - India border was closed . Nothing can cure the heart but the senses . bus roundtrip , it 's kind of a stupid thing ! ! before I knew it . I am a spotlight man and a sound - effects operator . Good evening everyone ! But the classes starts the day after tomorrow ! I have been so depressed and sad because he was leaving . He did n't want to spend four days with me before he left just because he was tired of seeing me depressed . Today I tried to read the practice passage like I was talking with my foreign friends . so I stayed home all day . We enjoyed horseback riding very much . This photo is one of them I usally drive short distances , Often it depends on the kind of job the employer is involved with . If the employee is payed appropriately for his skill , he wo n't move to other companies , and that would be better for the team . I am talking about the advantages and disadvantages of playing sports . First , I will talk about the advantages . On the other hand , I can see some disadvantages to sports . Today I met a beautiful lady aged 90 years and a handsome guy aged 82 years in a park . It was very interesting and much impressed me . One is that they have many topics of conversation including TV news , the catastrophe in Japan , Science , Dutch history and even Alzheimer 's disease . Unfortunately , _ people , _ living in recent days , _ not only scientists but also officers and citizens , concentrate on the most advanced inventions or outer space rather than basic science . In this essay , I will attempt to explore the causes and solutions . Specifically , _ it depends on the nature of basic science . Accordingly , the solutions to this issue should be varied . In terms of this , teachers not only in primary and secondary schools but in universities and colleges are essential for nurturing students ' passion and curiosity and motivate them to conduct that research . Although causes of this issue are various and complicated , _ effective measures still can be taken to combat it . What a nice weather today ! And pictures of the sea and the sunset are beautiful ! He was supposed to stay here until this August , but he went back to Holland the day before yesterday because of the nuclear plant . I still ca n't believe that he has left yet . In Poland the weather is rainy . When I was in job the weather was sunny . The teacher using this site is from the Philippines University , it is most inteligent in Philippine . I love coffee When I explained to visitor a procedure in English , how to do a cold massage and she told me `` thanks `` , I felt like I was in nirvana ! Now I often hear news that a lot of temporary employees ( temps ) are losing their jobs from the worldwide financial crisis . What the diference between writing in a journal and free writng ? In my opinion , reading books is the best way to improve writing in Japanese ! This is first diary . He said that the girl told him that she loves him by text message , and he asked if the girl really loves him , because foreigners do n't say `` love `` so easily . Oh man , Lang - 8 is really nice . I was shocked and got dressed at the speed of light and rushed out of the house . I like alternative rock , rock steady , reggae , FUNK , ska , and soul . Autumn is just around the corner . I grew up in a small town and I liked the quiet atmosphere . ( The amount of ) Public transport is convinient . When I lived in my hometown , I commuted to college by car . I can dring alcohol in the workplace and I can sleep while commuting between university and my home . You can meet with many different people and experience ( ? ) many talents and characters if you live in the city . ( I do n't know the name of them . ) My grandfather said that even though I prepared the guard for the strawberries , the birds take them as the strawberries grow red . As it 's reasonably priced and has good tasting food / tasty food . I had imagined a simple dining hall but the outside appearance is quite beautiful and the inside also had a good atmosphere . The attached picture was drawn by a fan . It is difficult to understand . . . I think that his performance was almost perfect in spite of his weak team Sauber . Everybody in the circuit regarded him as special immediately . Today , I wrote a journal ! And last , the main character is loved by everyone . My boyfriend buildted them as he checked the manual . My job is computer programming , in the field of * Embedded . Day by day , I write a little boring programming and read manuals written in english explaining IC ( cpu , controllers , and so on ) usage . Only optimyzing programming that will more efficiently use the cpu or multi core cpu makes me happy . Learning computer science without understanding english is more difficult , but I hope to learn their higher level of technology . So , I unusually chose another bus . The story goes back . . . If you will teach me , please become my friend . Thank you for reading . So I 'm happy because the holidays are coming and I can get out everyday with my friends = D Going to my part - time job , I took my wallet out of my bag to take the subway . There was my tomato juice bottle , and it had spilled because the cap was not exactly locked ! ! ! People might think strangely , someone wiped red liquid like blood ! I smelled it while commuting to my part - time job . It 's about how to learn English . I regret sometimes that I did not persist in doing dictation and writing exercises everyday . I try to use more complicated words to make more interesting articles , but , unfortunately , I find out that I do n't even know what to write in my own native language . I 've recently developed an interest in studying Japanese and Spanish , so I hope that I 'll be able to write some entries in those languages soon ! For instance , English has more clear structures than any other languages , which helps Japanese people to learn more quickly and deeply . That 's because Japanese people have logical thinking . That is , Japanese people would be well matched for learning English . Moreover , now English is being taught to children in schools , but if another language became the official language of Japan , we will have to teach it to children in elementary school . I want to be good at English , that 's why I register and write a diary in English . Iwas tryingto find Icarly 's transcript . My team dropped from B - league to C - league last year , so our team 's top priority this year was to win all nine games and to win the relegation - deciding match . However , we have already lost two games . To qualify for the relegation - deciding match , our team has to be in first or second place in my league , so we ca n't lose tomorrow 's match . it has become a popular food nowadays . Honestly , I 've been studying English for a longtime . Sometimes I watch American dramas on FOX to practice my listening skills in English . My favorite drama is Ghost . I hope I can understand these TV programs naturally in the future ! Seeing them made me want to buy one , even though I had n't intended to do so . So I arrived at the gymnasium at PM 8 : 20 . Many friends would be able to correct my diary entries , and I would be able to correct a Korean learner 's entry too ! I want to go to America , Britain , or Australia . It allows ordinary people to serve as judges in criminal court trials . Under the system , six citizens are elected randomly to sit in criminal cases , such as murder , robbery and so on . The court will begin summoning lay judges in July . I think as the training keeps going , it 's getting harder . So , I think realy hard about the work that involves taking care of my daughters . I 'm happy when I see the my daughters smile . Also , you have to take off slippers and put on another pair of slippers when you enter the bathroom , I found Japanese customs might not be understood by foreign people . Then I took the No . 1 bus to Zhuijang Road . Your advertisement was really interesting . The position has attracted my attention because I think that my qualifications will meet your requirements . I am a graduate of Dhonburi Ratchaphat University and I hold a bachelor 's degree in Public Administration . While studying at the university , I enjoyed learning new things and participating in all kind of activities , such as Public Administration and Low End Management and I am very well accepted amongst my friends and enjoy challenging tasks . Please , correct all my mistakes . I feel lazy , do n't feel like eating breakfast , or doing yoga excercise , , , I have been playing table tennis with my sister for six month . So , I 'll start working there next il April . Minsa is very well known . This beautiful fabric can be found in gift shops throughout Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the people , their families and the village . First , it disperses your body 's pressure more widely than conventional ones , so you can sleep well . By the way , When I watched the weather forecast , the weather reporter said the rainy season will start this weekend . Usually rainy days are very cool and clear , but the rainy season is very humid and gloomy So I hope the rainy season ends early . Do you like the rainy season ? My daughter is stronger than me . Yesterday it was repaired by one of my best friends and it is back to normal now . My favorite food is chocolate . ( A HYDEIST is a member of HYDE 's fan club . ) Today , our class lost in the basketball competition , but I think that not everything in life is a competition . Class seven , ok ? Go for it . I recommend potato - chips with chocolate as a present from Hokkaido . Of course both man and woman . I started writing an English diary today . I hope this website ( ? ) made me increase the English and the Korean language skill ! It was `` Girls generation `` ! They are soooo cute ! They sang `` Gee `` . Recently , I am into KOREA ! I would like to visit SHINOOKUBO . It is so powerful place . I search information over the Internet about work ! lol I wanna go soon . . . . ! but , I need money ! so , I am going to work tomorrow fo my goal ! This class is required ( or mandatory ? Either is fine ! I ca n't speak and listen to it properly , even though I 've studied for more than a year . My friend said his relative who is fifteen years old is going wrong recently . But these are very expensive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alcohol is from double to triple the price of Japanese one . Additionally , the goverment manages them strongly and if they go bad once , it 's very difficult to recover their career . They can buy cigarettes and alcohol , and also drugs . I 'm a lawyer . Today is a boring day so I 'm searching how to learn English and I found this site ! ! ! Please correct these sentences ! ! It is very difficult but delightful . Fortunately , I have n't had a traffic accident . we watched a comic movie and drank I ate lunch with my colleagues . Recently on Saturday and Sunday , I helped the preliminary games of the high school baseball tournament . In particular , I activate the electronic scoreboard and keep the score ( scoring a strike , ball out , etc . ) . It 's very fun because I love baseball so much ! I think it 's because there were many chances to eat out . I am studying business administration at a university . Currently that company does not have any foreign customer , but will expand overseas in the near future . I was really jealous . However , I love English so much , so I hope I can improve my English here . Tsunami is coming It was raining this morning . Yesterday , an earthquake occured off the coast of Chili . The seismic sea wave is coming to Japan . A seismic sea wave is called a tsunami in Japan . The Japan Meteorological Agency says that the width of the tsunami is about 1m along Tokyo bay . It is important to watch for the tsunami , but it is a little difficult seeing the TV channel . My hobbies : Playing sports , watching movies , listening to music , playing the guitar , singing , and reading books . It surprised me a bit , but August 31 is the first day of the new school term for my older boy / son ! The Japanese dialects In the kitchen , there are two refrigerators , and they will be full of food . She was nominated for an Oscar , which is a big award that everyone knows of . Actually , I practiced singing Miley songs in English before I came to the USA . For me , she is very out going and has so much confidence as a singer and as a movie actress . Unlike other beautiful actresses , she is very natural and shows who she is . She probably dislikes being called Hannah Montana in the Disney movie . This hotel is managed by a nice woman . She is about fifty years old and treated us as if we were her own daughters . May be a liar does n't realize that sooner or later his / her lie will be revealed . So I bought almond candy today . At first I was afraid because I do n't have enough Bible knowledge . But I have prayed to the Lord that I wanted to serve otheres . I was crying , I completely felt the love of the Lord . . And then , I thought I would like to go to the biggest book store in my prefecture , When I got on , one Asian guy got on at the same time . I noticed it after he left and I thought I should hand it to the station officer , but it was kind of weird because the purse was made of crocodile leather . For example , if an earthquake happens , what can they do ? I stayed up to prepare for the German test last night , so I was a little sleepy all day . What I have learned from today 's lesson is that I have little vocabulary , so I decided to do some paper work hard . For half a year , I have done nothing but listen to basic English conversations on my Ipod . - - - - - I think this sentence is wrong . I do n't know how to express it . I hope we join round 16 together . We were flying the kite , but the wind was really strong . I could n't hold it anymore . I do n't understand . There are four different plastic bottles and a can of green tea . Yesterday , I had a dream in which a foreigner spoke to me in English and I responded to him . I like to drink juice that I have made using a mixer . mixer . I often drink banana milk shake juice that I have made I drank an apple juice milkshake this morning . is very hot . I want to write journals in Japanese however my Japanese is not good enough yet . I caught a cold . Recently , I hardly eat any hot food . It is not huge but it has various animals . Dozo yoroshiku onegaishimasu . But fortunately , one of my relative who is Bostonian invited me to join the X ' mas party ! ! I 'm not sure if American people celebrate or just enjoy . Anyway , I should prepare to the party . One of them is in Harvard University . so , I 'm thinking of taking another school ( Harvard ) class . But I do n't want to miss the opportunity to study hard `` English `` You see , they were almost naked except only Fundoshis - - Japanese traditional men 's underwear . I do n't have my own , unfortunately . At that time , the Ministry of Education considered that learning English at primary school can cause the loss of Japanese language proficiency and deficiency of knowledge on other subjects . Now that we have gained prosperity by exporting mechanics to foreign countries , we need to communicate with many English speaking people who are not only from America but also many other countries . My language exchange partner I met him nine years ago and we have been chatting through skype for seven years from Monday to Friday . I could talk with him almost everyhing about myself , like having trouble , complaning something and being angry about something . He is a really good friend , not only as a language partner but when our priorities change a lot , we can create time to study together . It is really difficlut for us to keep our motivation high . I 'm sure they taste fantastic ! Althoughit was so chilly , I felt very good . Another one of my friends is studying business management , but she is intersted in many fields , even art . I thought that art and business are unrelated . She is also interested in social welfare and irregularites . Maybe we are n't allowed to barbecue there , so the someone in the neighborhood made a phone call to the fire station . My father looked happy because all of his children came and visited his wife 's grave together . Besides , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street restaurant ^ ^ Because Tanzania is a pretty big country , the road condition is not good , and the transportation condition is also not good , so we can not meet often after we left for our new post . I have been learning English [ since ] junior high school , senior high school , and university , [ so that 's ] about 8 years . Nonetheless , there are many buildings that have been here for several hundred years . We went to Nagano last week and stayed for two nights with our relatives living in a neighbouring area . More exercises , more mistakes . . . In software business , English is most important language because almost major software is created by USA . Technical documents are written in english . I wonder whether I will be able to pass a driving test . So I will present them orally this Spring . If you are reading my diary , please fix any incorrect sentences . Korean companies appear to enhance their competitiveness in the global market by luring qualified people worldwide to Korea , and Koreans who are willing to or are forced to live abroad support Korean companies outside Korea . and now I 'm so hungry . . . First , if we could n't find a job before graduation So one of the most important things for Japanese students is to find a job during your study . It is called `` Free iFlashcard `` . It is Kansai dialect . They have Tonkotu soup and thin noodles . But since I 'm a doctor , I work at an emergency information center instead . To get more active and productive , I have started to make more of an effort to learn foreign languages , especially English and Japanese . The reason why I chose English is that it is such a common language spoken all over the world and is necessary in this day and age . I will study more and more to improving my language skill . I work for an electronics company , in the legal department . Please , teach me English . D was absent , we would want a substitute who is also a native speaker , if possible . You might notbelieve this , but most Korean parents let their baby sleep in their bed even until the baby becomes five or six years old . ( hope I did n't quote the name wrong ~ ) If this were the case , the whole system would undergo a transformation with so much uncertainty and no one could foresee what 's going to happen . If you regard teaching as a platform or shelter for you because of the economic slowdown , you are looking in the wrong direction , you should not be a teacher . At 7 o ' clock I went to watch the match `` Arsenal VS Barcelona `` with my friends . Take myself for example . I started English from junior middle school and my cousin began to study it from elementary school . She spent 6 more years studying english than I did , _ hence her English is much better than mine . I still remember the time we spent the whole afternoon havinga chat in the sunshine in my courtyard . I eventually spent two and a half hour there . She taught me some Korean , her eyes were shining and she was full of energy , even though she was old . Hope our trip will be safe and fun . What should Mechanics is so complicated that takes me a very very long time . These are series about the four famous Chinese classics : Dream of the Red Chamber , Water Margin , Journey to the West , and Romance of the Three Kingdoms . I have to go out from my small office right now to catch the last train , but temperature interferes with me . . . I had a very ordinary day today Even though I did n't have enough instructions , after a few days I remembered all the essential points of passing this test and became better at controlling the clutch , so the instructor let me to practice by myself on another car . Russian Dinner There , on display , were some Matryoshka dolls in addition to a Russian cook book and travel books . I ordered Russian salad for the appetizer . At that time , there was an Italian acquaintance of COO . He said , `` I let the painting express my feelings `` I wanted to talk about Italian art of the middle ages , but I felt like he would not be intersted in them . . . What 's the difference between `` sort of `` and `` kind of `` ? Therefore I had to ride my motorcycle today . This temple attracts visitors all over Japan . Even if it 's written in English , I feel like your comment is very familiar . People think in a similar way , even though they speak different languages , I think . So I woke up laughing ! ! They make noise late at night and live as though it were their own house . However , she is a classmate of K and she told me that she just has to be patient against her will . I wanna continue to draw pictures . When he was in his twenties , he achieved a alliance to reform Japan . They are my relatives ^ ^ I like children very much ^ ^ I had a good time with little cute girls . I have n't finish all of them yet : ( To manage the router I had to explore many new and interesting things , such as kernel making , establishing net rules with firewall ' ip _ tables ' , traffic counting and many other things . I sent an email to a native English teacher who works in a high school with my wife to get some adviceon reading English articles . ( I really do n't want to bother you and hate to ask you this , but it would be a great honor to get some advice from you . ) I hope you can listen to the attached MP3 file , and tell me whatever you feel as a native speaker ( mainly in terms of overall correctness and accuracy of pronunciation , intonation , accent ) . Ginpei is the cutest baby I have ever seen . When pest viruses invade the human body , a macrophage eats it . Let 's go back in time and pretend to witness what happened . As if he had been struck by lightning , in one glorious moment his life was permanently changed . Hiroshi was thinking about playing tennis after work . Next day his manager asked him to do a lot of documents until the end of the week . So he could n't go to tennis . This year I bought them from UNICEF ; a lot of Santas are on it and each one looks happy . I heard that living with a homestay family is the most important for improving my English skill , so I need a homestay family who has enough time to talk to me a lot , and I want a harmonious homestay family who is very kind , caring , and thoughtful . I was going back to Tokyo form Izu on Sunday but I could n't do so because of tsunami forecast caused by Chile 's earthquake . Nothing is impossible for people who have those 2 things . I have lived in Toronto since mid October . I think foreign beer is stronger than Japanese beer . He is fluent in Japanese and English . many English words are borrowed into Japanese , such as post , convenience store , TV . I want to be able to go skiing . I want to protect my most important thing . According to him Okocha is a professional football player 's name . He belongs an amateur football team . No one can understand me completely except myself . This photo is of a lily of the valley that a neighbor gave our family a few days ago . `` Nao `` is my Japanese name , but I 'm Taiwanese ! ! ! : ) Yep . Nevertheless , some companies still take advantage of ( the ) Japanese ' English complex ' and advertise suspicious items . Although , I was quite sure he did something really bad , it was a revenge to another classmate . It was the first seminar and we talked about the purpose of life . It is for the benefit of nature . It is a abbreviation for Test of English for International Communication . It consist of 200 multiple - choice questions divided into reading part Some universities adopt it as a requirment for admission and credits according to TOEICscore . they only focus on reading and listening . Shaking hands are very formal , we only use it before an interview , or if we meet someone we do n't know . Reasonable and healthy lunch makes me rush to Subway . Are dramas broadcastin your countries ? My senior . I do n't like one senior ( student ) in my lab . - > suggestion Recently , one of my friends told me that he had a plan to go abroad to study English . It was a nice restaurant with pictures of Hawaii . I finally got my computer in good working condition . I 'm sorry about late replies to messages . I went to Korea town in Shin - Okubo , Tokyo with my friends yesterday . Although , before that I would like to go to South Korea , because South Korea is quite close to Japan and would only take 3 hour by plane . I went out of the classroom because I was irritated . It was like a real scene . So the preparation has been hard for us for about one month . But I could n't . I 'm looking forward to starting our new life . My work has quietly changed for various reasons . I was able to have many challenging opportunities . Sometimes I feel uncomfortable in my situation . Anyway , the last Exam is the database course and that is the biggest / / most serious problem for me . . . . . . In those days , I felt that people divided themselves into knowers and not - knowers / non - knowers or haves and have - nots . Lately , the very popular girl group `` AKB48 `` is famous for dressing in school uniforms , in Japan . For that reason , the educational department started to renew textbooks for elementary schools . about Japanese education getting back to its old days of learning , which focuses on more learning by heart than learning by activity . Anyway , I think this renewal will be effective in elementary schools They will release their single CD and an original album . I have a 3 year - old daughter . I 'm trying to have free time in the morning . We are influenced by everything which we are surrounded , but we hardly notice them . I know the lyrics are controversial but I liked the music as soon as I heard it . I 'm learning English . So I still do n't know a thing or two about it . My temporary office in London . It 's so nervous . I am very nervous right now . I have prepared it for four months . Thinking of myself and knowing myself well . Today I thought about myself . I thought about my character , habits , dreams , achievements and failures . regarded myself as a very passionate person who make objectives to achieve and execute them diligently . Mum , Dad and Grandma went to Ping - tong to join a wedding . I missed their phone calls eight times because I was studying in the cram school and did n't feel the vibrations of my cell phone . . . When I found the message from Mum , I called them back . I guessed they gave up trying to find me and went home , but I was wrong . I felt so sorry that I missed the calls and I felt Mum and Dad 's love for me , Could you imagine ? - - - sometimes the temperature is 22 celsius but on the other hand , sometimes it 's 12 celsius like today . I can stand it raining and suddenly turning sunny for only half a day , but my body ca n't adjust to the gap in the temperature . . . . . . Today , my homework is to write the essay `` Problem of Combining Work and College `` and I have been thinking about how to accomplish it . I have a question . It was the first time that I got a strong perm in my hair , so I am very satisfied with my Air Wave . I wonder why white small food ( rice ) can make various food . Do you know a food which makes various foods ? I to stand in the subway for an hour before coming home . But it is intense impact . I still hate it with a burning passion but I decided that I ca n't burn it if I have n't read it first but I have to be honest with you . . . The reason for the 28th of February As you know , the last day of February is the 28th . The king said to one of his servants : `` But a year has a maximum of 365 days , so if you wanna add a day to August , you have to take a day from somewhere else . if we take a day from January ? `` January is an auspicious month . I ca n't allow you to take it from January . `` to take it from February ? `` `` Undoubtedly . `` I was taught this . But I do n't know why February originally has 29 days . . . because I often forget them . ^ ^ wahahahaha ^ ^ For example , when he or she wants to write about metaphors , he or she will write something like `` The mechanisms of metaphorical thought are present in our most common concepts : time , events , causation , and so on . . . I had made new friends My host family had BBQ too . I think China is a good and kind country , so I like Shanghai more and more every time . I 'm working on translating the confidentiality agreement from English to Japanese . Maybe I 'll buy the next generation . Hence , students completely depend on tutorials and unfortunately they forget about their lectures due to focusing only on the classroom tutorial . First of all , tutorials are considered a waste of time and money . Having mentioned the disadvantages of tutorials , I should also mention the advantages . First of all , tutorials cancel the distance between the teachers and the students and as a result of that students can ask freely with out being afraid . From my point of view , this is a very important thing for every student . They also stress information that students need . To sum up , if we make a list of what is written before , we will see that the disadvantages of these tutorials outweigh the advantages . So students should attend their classes regularly and follow their teacher 's instructions instead of tutorials which waste time and money . I 'm planing to eat many traditional Chinese foods , such as Peking duck and dumplings , as well as walk around the Great Wall of China . What I 'm looking forward to doing the most , is making new friends . A busy season has just started . Spring break started yesterday , so I came to Boston because my roommate is from Boston . I am at his house now . Today , We went to the city and tried a Japanese restaurant , but I did n't think it was very good , haha . Today I heard the word `` marvelous `` . I did ' nt know the word `` marvelous `` . But Japanese people who have been living there for a long time are quite crazy . All children have a dream or dreams But I think a lot of students of college do n't have dreams anymore . Learn how to pursue , how to love , and how to live . I bought some English movies : I do n't know what I should do . I want to ask , if someone knows , how to make learning more effective . And I want to speak like a native speaker , so how can I get more expirience ? I felt local people 's English was much better than ours . He is very famous for not only being an artist but also a professional My part - time job is to mark my students ' homework and teach them math , Japanese and so on . It has a qwerty keybord like blackberry 's phone and you can type very fast like pc , also the OS is multitasking , so you can change the applications while they are running ! I did n't remember to charge it the night before ! ! That was horrible ! Many young Japanese have a weakness for brand names . In the future , I 'll write about why I go to school on the weekend . I usually go to study at the yoyogi seminar in HAKATA . During holiday , I eat lunch near the yoyogi seminar . Some free school students are physically challenged , and some of them suffer from depression . The free school where I did volunteer work is similar to ordinary schools . Actually , free schools are one of the nonprofit organizations , so they 're in financial difficulties . Probably , that picture made me what I am . Various topics are shown up one after another : `` I have a dream `` speech by King , The Beatles ' first appearance on TV , Barack Obama , 911 , etc . One of them says `` we are not talking about Tom and Jerry `` , just after she answered , `` Barack Obama 's speech `` in a serious face that does n't match her age . I enjoy learning it . As my favorite country is Hawaii , my dream is to live in Hawaii . They have to learn too many subjects , such as English , math , physics , chemistry , biology and so on . I have no idea . I 'll try to upload photos of these . we did stop to cheer for our teammates at the last lap . I believe my dream will come true . I think I will be on a working holiday in New Zealand . Although it was the first time in a long time since we had graduated from school , we enjoyed conversation and time went by quickly . But now I think it is more important to develop friendships through the memory of shared experiences instead of only studying so hard . But I just now realized that I am doing a presentation tomorrow . Family Party International exchange is very difficult because there are many cultures and religions . I think that 's enough . Today 's dinner is Thai curry . Perhaps they all have been auctioned off or became someone 's pillow . In April , I have a lot of things to get done after personnel reshuffles for a new quarter . Gion Festival When we heard the fact that he took part in the movie as a hero , we were surprised . So I took an aspirin to write this journal . This is the second challenge for me . Tomorrow is Saturday ! ! My hobbies are listening to music , playing table tennis , and surfing the Internet . In the future , I will write more articles about my life . I welcome anyone who wishes to refine my entries ! I 'm Noi . I live in Bangkok . I 'm an administrator and operator . At the moment I get up early every day to go to the company . The company opens at 8 . 30 am . I am happy to day I can spend time checking my e - mails and reading English books and writing English too . Tomorrow I must to arrange documents for the employees in my company I must read books before I sleep today . Have a good day ! I If you would like to study Thai , I will help you . In Japan , some people need a sense of humorin theirco - worker . After watching it , I became positive , and I think it is important not to be afraid of anything . Hello everyone ! Well , I have n't a clear dream in the future now . And it is so difficult to search music program in Tokyo . I want to listen to some high quality music programs in Tokyo . Her director recommended her to quit because he thought her work was not important and others could do that instead of her . He seems to see what he wants to ; like being late often or not asking vendors seriously what he wants . When the police pulled me over , he told me that I was flagrantly disobeying the rule , and he gave me a one - hundred - dollar speeding ticket . I sat down and pondered how I could make it through all those things when I suddenly I heard the announcemet on the speaker for all employees to gather together inside the conference room . He had to cut down the number of employees , and I was the third name he called . I completely forgot that I had missed three classes in a row , but the college 's rule is that if this happens , you 're automatically out . Finally , there was a massive disaster at home . I could not believe it when I saw that my whole kitchen was flooded . However , I still believed I could rebuild my life and persevere in my goals for my future . My heart keeps racing , and I can not believe what a crazy day this has been . We ate super delicious seafood with mojito for lunch in Key West ! This is the MOST southern point in the U . S . I strongly recommend you that visit Key West if you have the chance ! Time goes by like this without relation to the situation of the world and the hearts of people . There are a lot of opinions about a mood of self - control . First , this is a present from my customer who went to Egypt last year . This is a calendar made by pupils , a little piramid , a bookmark and a sweets like a dry fruits . She had been to there before the protests and I 'm so glad no harm was done . Egypt is one of the countries where I want to go . But this did n't happen and I heard on that radio that during the match some Lazio fans rejoiced for Inter players ' goals ! ! ! ! ! I have been slack off and goof off to keep a diary . First , I have a few English vocablaries and in addition my grammer is terrible . So , I should have kept a diary every day . Before long , Do I use to keep a diary ? In college , I seldom spend time studying English and read magazines or listen to the radio . Rehab means rehabilitation . There are many beautiful beaches in my town . Several musicians were there on the stage , and the sound was full of euphoria . Other staff members were working until 2 AM everyday . I went to the amusement park with my friend yesterday . I stretch and bend my limbs slowly while taking deep breaths . She has been in hospital for more than two months to avoid early delivery . I have a boy friend who is younger than me . He is 6 years old younger than me . I was in love with him a lot at the beginning of 3 months , but now I 'm confused as to whether I love him or not ? I do n't know how to talk about this with him because he often gets angry ( that 's another reason I ca n't stand him [ / RED ] ) I worry that if I talk about this with him , he would not talk with me for a while . . . . Many customers say our prices are higher than other suppliers . The wood construction of the sofa is very sturdy . First , I boiled the noodles . It 's delicious and reasonable ! Today , I sp spoke to an old friend for a long time on a cellular phone . ( cell phone ) I registered with Lang - 8 because I want to make friends and do business in English . Recently , I have had a problem with my neck after I hurt it 2 weeks ago . My first time `` Lang - 8 `` Hello : > This is my first time writing a diary entry in `` Lang - 8 `` . The outcome is important but the time we are engaged is meaningless . Jun asked me to play tennis this morning . I made my husband got up at 7 . I asked them to buy some food for lunch before they go to school or office . My husband was worried . Because they wanted to buy food first in the convenience store . I 'm thinking of studying English vocabulary and reading but I do n't have enough time to concentrate on those things . my wife comes home today ! yesterday , she washed all the dirty clothes and sheets . I hope I can learn english well . High salary , permanent employment and state . . . Also , if he does not know the rules of the bus , the Japanese man should not get angry with him butexplain the Japanese way . I can imagine it is not easy , however , it is the best way to understand both cultures throughout the trip . I have an apartment with three suites for singles . It is very useful so it will be easy to write English diaries on the train . I registered on Lang - 8 In my view , I do n't have much opportunities to use english . I will try to write a personal diary every day . I 'm really disappointed with myself . . . . Moreover , our wedding ceremony is coming in a month ! Ganbare jibun ! About 2 years ago I went to Koh Sri Chang every month because my friend was doing research there on snails . In this story , the main character Pip suddenly has a chance to receive the great expectation by someone . In the next part he stays in . a giants - inhabited island Business conditions have been bad for the last year , and the high yen will have a bad effect export companies . So I decided to borrow a book , Forrest Gump . I knew Forrest Gump but , I do n't know it in detail . Recently everyone is upset in our Research InstitueInstitute , because of the personnel changes . I think maybe I will change my job if the new Research institueInstitute is not good for me , but now I am just waiting . I love this sentence the best : I was fascinated . . . She recommended this site , showing me her several world - wide friends . How have you been ? Now , I am in Gold Coast in Australia . I worry about meeting my foreigner friend . Now and then I think that I have to try to study English more . This is the third time I have celebrated with my friends , whom I have known from high school for almost five years . In that event we could eat a famous cook 's food for only five hundred - yen which we can not normally eat at such a low price , and heard the special talk show about environment . He is very famous not only in Japan , but also in the world as a famous yachting sailor . Yes , it is true under the policy of `` one country two systems `` . I want to become a translator , especially for movies . ' It will be such hard work because words that translators can use in a line are specified by rules of translation . I do n't know how long it will take , but I want to become translator . Because there are some places where many people were killed by tsunamis in northern Japan . We took part in a Halloween parade in West Hollywood and took communicate with Americans smoothly . These girls have different nationalities such as Chinese , American and Korean . What do you think you should do so that people think you 're professional ? However , the number of selfish parents has been increasing recently , I think . The thought that someone will fix my mistakes and incorrect grammar makes me so excited . In order to make my English easier to understand , my teacher wants me to use a higher tone of voice . 4 ) I had no girlfriends before I knew you . but you have had two boy friends , Australia , China , India , and Sudan . I enjoyed communicating with them . to be continued in `` Introduce myself ( 2 ) `` Well , I 'm going to buy some ingredients for our lunch after this . In this country , foreigners ca n't buy flats except for condominiums which are super expensive . But there are many foreingers in Singapore ; according to some websites , 45 % of people in Singapore are foreigners . It means , normal Singaporeans who own flats can easily get extra incomes from foreigners . In Japan foreigners still can rent rooms from real estate companies . It 's definitely because many people want to live in Singapore the rest of their lives . As you know , an earthquake happened in Japan . But , I happened to watch NHKTV `` professional `` on Feb 28th . I ca n't understand the difference ; ( . So , I fall asleep in lectures . ( Eating out is a little expensive for me . I probably wo n't spend much money this month so I thought that I should treat myself . At first glance , there is a vivid landscape with a small shed on the beach , securely covered up in the cove , with towering hills in the background . My 1st diary ! Every morning when I opened my eyes , I would have messages from him on my cell phone . I have a lonley telephone . Furthermore , Recently my assignments have been getting more difficult , and they require a higher level of English . I really appreciate your support . and then I got up to make a sandwich with tuna and cheese for my son before he went to school . I know that English is supposed to mean people from England . Is this correct ? My mom , my cousin and I went to the supermarket . We bought a lot of toiletries , like soaps , shampoos and so on . I 've decided to keep writing in this journal everyday before . To learn a language it needs patience and motivation and opportuinities to use it . First , he describes very well the image of human who is not perfect . Though , according to the magazine , some stories are recognized that the main casts of his novels overcome nature , the wins are not always incomplete . For these reasons , I think that he is a great author who describes human 's imperfections . He is Chu , He was created by me , He can fly whereever as supermouse . It has history of approximately 400 years . First , we learned how to do a breath method . The method made me feel easy . My first yoga became a recreation . I hate to get my cell phone wet , because I purchased an expensive one last year . where one can observe the beautiful stars . and besides , it was at midnight . We tend to regard symmetry as beautiful . You could n't find any differences when you look at it . Yes , it has no anatomical difference between the left hemisphere and the right one . There is a hint for this question in a clinical symptom of patients who have brain damage in the right hemisphere . This symptom is called hemispatial neglect . Patients who have brain damage in the left hemisphere do n't have this symptom . But they might be canceled . If you see any sentence that can be better , please tell me . They were supposed to start running a corn farm there , but since they were still in Singapore , they did not even bother to check the land in person . But unfortunatelly there were many CHEEKY MONKEYS in that area . Every month those monkeys would eat only mature / ripe coconuts there . Her husband tried to ask hunters to kill those monkeys , but killing that species was illegal . My colleague who told me this story stopped talking , because nobody knew the rest of this story any more . They should have considered their plan carefully . For example , noodle , squid , shellfish or mushroom . I wanted some conversation with my wife . However , I was lucky today . I thought it was Wednesday so I still have one more day to attend classes . But today is Thursday . I had a vaccination against the flu today so I wo n't catch flu when I take the entrance exams for university . I actually like having an injection , but it hurt more than any I 've ever taken . I have to have it again next month . . . My English is so poor , I hope somebody can help me to improve my English level . it 's so hot in my country ! ! it was difficult when I first started to drive . Seventh , put it in the plastic bag for 1 ~ 2hours ( summer time ) . Eighth , spread it and you should be about 2mm thick using a pole . Nineth , cut it about 3mm width . It does n't have any taste so please use udon sauce . Also , I want to know what part of Japanese grammar I should introduce in first when I teach survival - level Japanese to my friends from foreign countries . OR foreign friends . Because of shows like Lost , CSI , Prison Break , I started to notice : TV drama is in the US , too . However , learning English is my important work and I will keep on . My friend introduce me to this web to improve my english . It is my friend Se - hee 's birthday in two days . I wondered what to do because I ca n't decide our topic without their ideas and permission . I was so disappointed at their irresponsibility . At that age , a woman thinks about the `` life of a woman `` or `` work of a woman `` . in Japan . It 's means that `` She chooses a family ( getting married ) rather than her dream . Of course he knows ^ ^ ) Because it has a little bit poison in its organs and eyes , so if people eat them without treating them correctly , people can die . I have not eaten sashimi since I 've got to Australia , She gave me it with a little hesitation . He got married , too and bought a new refrigerator for his wife . But , if I were a short - sleeper , I would have enough time to do something early in the morning . Today I went to a yakitori restaurant with my family . Yakitori is like grilled chicken , skewered on a bamboo stick and Also , we can choose any part of the chicken we would like to eat . After the big earthquake , it 's very hard to get gasoline , even in areas around Tokyo . I ran to some gas stations near my house to verify the conditions of the gas stations . Some gas stations are closed , but other gas stations are open . Do people living near Tokyo really need gasoline ? We can go anywhere by train around Tokyo . However , there is a beer - like alcohol . I like beers all around the world , such as Guiness , Budwiser , Coors , Chintao , Singha , Heineken , and so on ! I prepared two batches of cookie dough , chocolate and vanilla . I was very surprised that there are old buildings on the side of the road . For a short time driving , I can see the tall buildings . I give up easily , but I want to continue to write it . I can guarantee there are no Japanese young people who don know this song It 's my first post here so let 's consider it to be kind of a test . I just hum the songs . Unfortunately , I could n't pass this time . ( + _ + ) What is the question that was hidden in the `` Mona Lisa `` and `` The Last Supper `` ? Malaysia is one of the most famous countries which has achieved a major renaissance in a very short time . Mahateer Mohamed was the prime minister for the twenty years in which this change in their country occurred . He did n't give the people money or land . He just believed in them and in their power to build the country once again . ( this is the last sentence of yesterday 's diary ) I read just a few pages , but it is very interesting ! The meaning of a short sentence is too difficult for me to comprehend . . . . . . . The cucumber I ate had a weird taste but I was too lazy to get another one from the kitchen . Japanese Grammar For those who have a hard time with learning Japanese Grammar This is good for learners of Japanese grammar . I was wrong . I need to study hard and practise English every chance I can . I have been pursuing this girl for almost half a year . My recent worries are the heat in Japan and my backache . . . . . . Hello , friends . One of my friends told me about this site . shocked and determined to study English again . Yesterday with my friends Hello everybody ! I really do n't like to use one . Japanese people often take the outside to eat . Hello , my english . He looked embarrassed because I have n't gotten angry before . Someone kill human just habitually , can you accept this ? I 've just thought that unilaterally . ( Actually , I was staring at him during the party . I eat low fat foods , konnyaku mushrooms , and so on . Today is Saturday . I do not go to the company tomorrow because it 's Sunday , so I feel happy . I have a new employee to interview for a job . I 'll smooth the water for her before my boss interviews her . I would like to connect to the internet at my house . They said that they will give me a new number for me to connect to the internet at my house . They will be come by to service and connect the internet about 7 days after I called them . Thank for you teaching me English . Because a sandwich is portable , especially because my daughter is a night person who tends to oversleep , and sometimes has no time for breakfast , is important . I have just registered for the TOEFL test now . Historically , the Japanese way of English education has concentrated on reading and grammar . 2 ) The Faculty of Civil Law and Free Enterprise The graduates work as officials in central and executive bodies of power . Some graduates later become judges , prosecutors , and advocates . All necessary facilities are available to students for high - level comprehensive training . The person thought to himself , `` He 's very stingy . so animation songs have been developing inversely . It 's a serious problem in Japan . So I want to cooperate with a domestic FD food manufacturer and sell FD products to foreign countries via ( through ) my English website . If any one have interests in this kind of business , you can contact me . Tonight I am really missing my family and friends who live in my country . Tomorrow morning I am going to school I wonder how the author was able to so realistically describe the thoughts and actions of the boy ? What 's the Pirate English ? When I was trying to change the language from Japanese to English in Facebook , I found some `` English `` es there . What I saw on the screen was really unfamiliar English for me . I was stuck at home the whole time , watched too many episodes of the sitcom Friends ; nearly 10 . I want to write about Chandler and Phoebe , but I do n't remember anything about them . Next month I 'm going to go to the Philippines to study English for a week using my vacation time . The Philippines is one of the English - spoken countries , and many Korean college students go there to study English . I 've never been to the Philippines and am looking forward to going there . ( Simply ) hmmmm . . Listen and write down Now , I listen and write down for at least thirty minutes everyday He gave me some advice . It 's about a male fright attendant snapping at a passenger . In Japan , customers always come first , we have to treat customers like a god , so that kind of thing ca n't happen . But I 'm sure many people are stressed out and really want to do that , so I also think he is a hero ! ! youtube . Unfortunately , my team has been very bad the last five years . The players did n't practice very hard and they were defeated several times . Now I am very upset because my team has been recently defeated again , but whatever happens I will not give up my dream that this team will make a comeback . I guess it 's because she has n't had many opportunities to talk with Japanese people before . I should get familiar with the way native speakers talk . . . Other members did n't want to become seafood but nobody stopped him . So we played softball in disguise . I could not respond to most of the questions . How did you learn writing English ? It 's difficult for me to spell . My favorite school event is the sports festival Both inventions are a kind of instrument to measure the same thing . last night I called my mom and said `` I would like to study English more by staying in Austrailia mom `` I will try anything to improve English and my self worth ! ! Children could make experiments . I have to decide what to do . Either get a job or advance to doctor course . Unless they came here , they must wanna get to speak English fluently . But I sometimes speak Japanese when I hang out with Japanese friends although I criticize other Japanese students . Yikes , vcroome told me that word yesterday . I think that word is wonderful haha . This is the first time I 've come here . I hope I will meet more friends from here . Then I can improve my english . Some people told me they host the parade every year . Regular customer , `` Yagyu . `` Most sushi shops have regular customers who come often . Yagyu is one of our regular customers , but he is special to `` Sushimasa . `` Yagyu let other regular customers eat foods and drink alcohol free . Their music is really ( I have no words to express my attitude ) great . Since then , he has n't liked to drink and thought that it is a vice to drink alcohol . When I told him that I do n't want to use a textbook , he did it . Because of I have had trouble with my older daughter . And I must mention the terrible traffic , Bangkok 's traffic has the worst transportation system I know . The traffic situation is much better in the other cities . The other cities are quiet and beautiful . The interval time was shorter than usual , so I was really tired . Hello , my wonderful friend , how have you been today ? I just realized that I have not written an entry in my journal for more then 10 days . I saw this on my calendar . Time is useful and life is beautiful ; someone told me that and I believed it . But life is difficult , exciting , and interesting too . ( `` NABE `` is a Japanese cuisine . What should I say in a situation like this ? * I 'd like you to correct weird or unsuitable sentences and give me some sample sentences useful for my pupose , if you do n't mind ! Throwing things and goods away We went to a Vietnamese restaurant . Today I 'll write my thesis proposal , the deadline is the 9th of this month . So I can apply for a Shanghai account next year when I graduate . Although the weather was hot , I felt merry . So , contrary to this change , I should not admit adulthood until beingover 22 ( the age in wich many people graduate college ) Anyways , I returned my dormitory . But Something happened . Because one of my French friend said that she will go back to France soon , so she asked me if I can take a leave and go to Taipei with her . After I filed a leave , then she told me that she need to go back to France immediately . The ocean world is filled with vitality . I 'll decorate a tanzaku and make a wish . Today there is a typhoon . So , I decided to study English , after travel . For example , almost all the railway tracks were laid , except near the Fukushima nuclear power plant , and the highway in Tohoku is finished . The one is the Fukushima nuclear power plant . The reason is that the company who own it do n't give information to the public immediately , or accurately . The other one is that people are reducing their spending , by not having a cherry blossom party , eating at restaurants or going on a trip . Many cherry blossoms are in bloom now . Goodbye . I wanted to buy whatever he wanted to eat , but he kept saying that he had no appetite , and had an upset stomach . Now is the era of the global economy . Also , child 's nerves are very weak , so the effects would be worse for children . Hi Everyone ! Anyway , when I found out that the airplane tickets were not available to go there , I was giving up the idea of spending Christmas in a more special way . I was invited to his relative house for dinner on Christmas eve day . Actually , I still do n't know his hometown city . The four players play diverse roles in the competition , and how they fill their position has a significant impact on the result . It depicts the conflict and growth of a Korean boy living in Japan , a role performed by Yousuke Kuboduka . I am really happy and sad . Was my English strange ? I found out the cheapest bar for them , What is the difference between `` I am looking forward to `` and `` I look forward to `` ? Meiji university , which is one of the best and most famous private universities in Japan , announced that it is planning to build the `` Tokyo International Manga Library `` in their premises . According to their spokesperson , it is expected to be the world 's biggest library as the storage of Manga , it will have approximately 2 million items related to Manga , Anime and video games which are copies of Manga , celluloid pictures of Anime and Character goods of Video games etc . One of my co - workers send me an e - mail from his mobile phone to mine last thursday night . I want to travel somewhere but sadly I do n't have much money now . . . . . . I 'm planning to visit my grandmother 's house with my mother and my sister 's family . My sister have 1 year old baby , so my grandma must be looking forward to meet her great - grandchild . I 'm looking forward to meet my grandma and my nephew too . It smells good in the shop when I go there in the morning and I love flowers , so I feel good just looking , touching and having flowers around me . Today , a small pizza shop called `` PizzaSchool `` opened near our apartment . But I realized that I could n't speak English , when I spoke to tourists from foreign countries . But when the cool breeze of early autumn comes , I am determined to travel alone to unknown places which I have never been to . I will talk to people who live in the area so that I can know what they have experienced in their lives . I 'm going to go skiing inYatsugatake with my family , my daugnter 's friends and their family . I went to my local hospital for a medical checkup . There is a lot of information about Malta . But I 'm trying to find important information . ? ? Because I 'm going to stay with a family . Civil service entrance test is a test that if you pass it would allow you to work with the government and it could let you have a lot of benefits , for example , you do have to worry about losing your job . Although , I am a little bit upset , life goes on . And now , I have to watch the `` The Inconvenient truth `` again , because I have to pass my mid - term exam ! I have some foreign friends , especially from the USA . Her American jokes make feel happy and I think there is a difference between American jokes and Japanese jokes . I have to take two tests , English and my major , Psychology . but recently I do n't know what happened to my laptop . I do n't have much money , Because I am just a student , and my parents live in Korea . We slept in our car , something like a van , so we have comfort so we were comfortable , . We only ate sandwiches for two weeks . We visited almost every city in Holand , the most beautiful was Amsterdam , now we have much experience , in the future I would like to travel more . I 'm waiting for corrections ; - ) After that , I dried my car by using a drying machine . This is a tomato stew with pig 's gut and a lot of vegetables . But when I became junior , I was changed by becoming class president and working by interacting with many friends , seniors , juniors , teachers and started to combine activities along with challenging character . My diligent parents who got up early in the morning had a big effect on me and it made me become more diligent and have more integrity . On top of that , just after WW2 , most Japanese infrastructure were already destroyed completely by air raids . The cities we can see now are not that important . That is just the surface of mankind . Even if Sendai city was destroyed , as long as people who can design and plan cities exist , Japan will be able to recover ( from ) these damages again and again . Nobody can revive dead people , but at least they will be able to reconstruct a city that is stronger against tidal waves than before , right ? Hello my friends . I 'm happy because I 'm now writing my second post on this lovely website . I would also like to thank everyone who has corrected my last journal entry . I am so exciting these days because I am back in college again but this time for clinical stage and our lectures are not boring any more because its more paractical and alot of real patients there are no studying in community hospital with alot of new ppl from other medical studying in the psychiatric department there are alot of wierd peaple but I think it is so exciting because its hard to find every case in any of the huge textbooks you must think very deeply . However , in reality I do n't have my `` DREAM `` because I do n't know It has something to do with with my mental problem . But , my main purpose is to talk with my friends . Finally , 10 friends in all gathered , and then we all left together . I also had a can of beer , because it helps me fall asleep . Today , I helped a friend work from 5 PM until 8 AM this morning . I tried to smoke today . just a little . I just wanted to know if it was real or fake . In my country , you can easily buy ' fake ' things . I took a picture of my favorite brand of cigarettes . ( I do n't smoke now . ) Regardless of that , one of the recent reasons why traffic accidents occur is through . . In addition , since it 's next to impossible for pedestrians to judge the situation of a driver , they are often involved in unexpected traffic accidents . It gives me power and courage to overcome adversity . I know that I can count on my friend when I have a problem , and she can count on me . If friendship was n't in my life I would feel unhappy and alone . I ca n't let myself out without using Japanese . . They were `` run out of `` , `` put off `` , `` put up with `` and `` put up `` but I do n't know meaning of these idioms so I could n't construct the sentences . Yesterday we had a hanami party , which means cherry blossom viewing party in Japanese . Most participants of the party work everyday during the week so want to sleep at weekend . I defended myself like this , It seemed I failed to convince them We shared the only blanket and drank whisky much to endure the cold . Around us , there were cherry blossom trees in full bloom and the moon lit their petals . By the way , when the time to start the party had come , I had a terrible toothache last week and went to see doctor on Thursday . But tommorrow is holiday . Last Sunday , I had a cello residential training session in Kita - kyushu city . The only bad thing was , that in this season ( very hot summer ) , although we stayed near the beach , we had no time to swim in the sea in front of our hotel because of our very long training from morning until around midnight . We knew that we had a concert to show our training results , and I had no time to practise my weaker songs because I had to teach my colleagues about their weaker songs . After we finished the schedule , for the final 3 days , we could swim at last . The small cellists ( 4 ~ 10 years old ) were so excited that they ran and jumped into the sea at the fastest speed you 've ever seen . : ) I hope that the next residential training will come soon . . . Hello everyone time , but it is still very poor , so I just found this way tp help me to learn but after february , maybe l 'll live with my father . We often hear that foreign people who are living in Japan , are impressed with the Japanese train system . Everyone tells me that I can have plastic surgery later or I might become pretty when I become a university student . What 's wrong Before I come here , I was determined and promised my friends to do my best ! It means that I should be confident my English if many people correct me because at least my sentence makes sense . This website is very useful for me because I am look ing for the opportunity to improve my English . I am a university student in the UK and I study account ing . Moreover , I have only two weeks to prepare for it ! ! I had heard this morning that the Fukushima plant 's accident would be estimated as the level seven , which is `` the major problem `` and this is the worst situation could be . Today , I got a phone call from my family , because New Zealand had a bigger earthquake . It can help me prepare for my class . . What do you think about religions and God . . I was born in Christian home . . why I was a Christian before . . My family members made me think in this fashion . . Invited to a birthday party iN AUS It was my singaporean friend 's . that is why I cooked Korean food which contained tofu , pork , zucchini , onion , chilly , lots of chilly paste and powder , soy source , sugar and etc . . . . . There were Singaporean , korean , chinese and hong kong ? Have you ever eaten Chicken Ramen ? Introduce myself When I was in kindergarten , I learned ballet . I also have gone to Rainbow Brige , Asakusa , Fuji mountain . I ca n't wait for the 2nd half of the movie which will be released next summer . I have so many assignments lately . I am male , but I too have a dream to fly to all over the world as part of the cabin crew ! ! I am look forward tobecoming good friends . How about watching a drama like `` Friends `` , or something like that ? We are waiting for the plane now . I am really looking forward to it ! ! I was very excited about the after party on the boat . Next movie was `` Batman `` , that was directed by Tim Burton . I hoped that they could give me some magazines to kill the time for a night . To improve my English skill , I decided to keep journals . I ca n't play soccer but I 'm happy they won . Especially the Tohoku region [ Miyagi , Fukushima and Iwate ] was more damaged by it . Today , I called apple support center . I had an apple care ( insurance ) policy . If I did n't carry insurance then I would have had to pay lot of money . second to call this person and ask him why he did this and try to easily forget what he did > but I think it is going to be so difficult because I think he has to do this and I am sure I did not make that big thing . . . . Electric power reduction request of 10 % . I went to the library to study English . I often use the city library when I feel ( distracted ? ) . Have a good weekend , everyone ! HaHa , Today was my lucky day . It has a rule which all players must not explain . My name is Shogo , and I belong to Hiroshima University . I 'm good at creating new plans or unique ideas . At noon , I went to a restaurant for lunch with my friend , Sherry , and found a middle - aged man looking at us . After finishing our meal , we went to ride our bikes and suddenly , the man came to us and smiled . Today 's dinner was pizza , made by Steve . It was yummy : ) Today , I 'm starting to write my dairy on this web page . During my days at school , my part time job was teaching Japanese . I feel really relieved now due to the fact that today 's work ran smoothly although we had some trouble with the distribution company . Now that I finished preparing the shipment , I feel a load has been lifted off my shoulders . In fact , there is a staff canteen in our office building , but I have had lunch there for years and I have been bored by every single dish there . weil es viele Gegende gibt , wo es selten regnet und wo Leute immer an Wassermangel leiden . because they are so popular in Japan . quality , art , characters ' motion picture . And I could drink Tim Horton ( I do n't know the spelling ) 's iced cappuccino ! ! ! ! ! ! ! Because I could n't have imagined that Some sumo wrestlers bet a lot of money on the Japanese professional baseball games . Because sumo wrestling is the Japanese national sport , t the wrestlers who have been gambling should not be forgiven . Actually , I 'm not a big fan of sumo wrestling but as it is the Japanese national sport and also a Japanese tradition , sumo wrestling should be clean . I want so badly for my writing ability to be improved . But one daymy mother watched a movie , and found he was older than he was before and a little fat , then my mother told me . . . and I felt so terrible . But it seem to be very difficult for me to complete the task which my adviser gave ( or assigned ) me . Anyway I have to continue for five years to get a doctorate . From your message , I learned ten new words approximately . Last Saturday , I went out with some good friends . Unfortunately there was a traffic jam on the bridge . You know , because he is amazing and intelligent . The most touching part was when he told mother in law and father in law how much he loves his wife and how much he misses her and his daughters . . It is our first time , but it will be challenging . Which do you like ? The reason is Japanese inn are warm and relaxing . It is aremake . I hope someone will answer me and fix my English soon . A - ALPHA I remembered everything that happened to me this year . . . It 's difficult to take ( find ) time to talk to my boyfriend . They miss out on much happiness when they are younger , and are trapped like birds in a coop ! This is my first time writing on this site . If we adopt this restriction , eighteen and nineteen year old people will be inconvenienced . I studied English for almost 10 years , but until half a year ago I did n't want to learn . I realize now that I must learn it fast to find a well paying job . It made me aware that one girl 's life will change forever after shock , one mother 's choice will change her family forever after shock , and one moment can change your life forever after shock . Witnessing other people 's suffering during a natural disaster helps her to overcome her own trauma and forgive her mother . The Grab ( Lucky ? ) bags im Fukubukuro , Japan are very popular . I 'm very surprised to watch the TV news that many people wait in line before the stores open ! English grammar I started studying English grammar about ten days ago . When I was a student , I studied English grammar . So I study English grammar not for taking tests , but rather to use it , and because I like studying English . She wanted me to stay over there tonight but I do n't want to bother her . It 's a simple sentence , but it 's useful . One , you can learn a variety of knowledge . For example , literature , physics , I caught a coldxD I hope I get better soon . I have headache and some fever . I have no memory of it . However , when I brought the printout ( ? ) of the program to my supervisor yesterday _ afternoon , he immediately found the equation which should have been ( ? ) divided by the simulation sampling time `` dt `` , which I set to 0 . 001 ! Recently , I thought about whata leader should do . I know the airline company as I lived in Ireland before , but it is unfamiliar to most Japanese . I want to study various things ; English , Mathematics , Algorithms , and so on . Two people corrected my first one . I worked at a company for 11hours , and studied at home for 3hours . We call this a coupon website or a group purchasing website . The naan bread was bigger than I had expected . The king canary was dying of curiosity because of a treasure . First of all , I 'm going to acquire some firsthand experience for 4 weeks as all new employees did , and then I 'll be in charge of a computer system . I forget many words , idioms , and grammar . I think I need to study harder than I am now . I ca n't find the right words , even if I check them in a Japanese dictionary . Because it depends on the situation . I love speaking with people of other countries because I love to learn new things and to meet new people . Through this site I have met nice people that help me in English . I love the animation Gintama ! Today , I got a text message from one of my friends . So , I sent him back a message that said , `` I 'm in . `` I could n't breathe normally , so I went straight outside and came back again . For example , do you know ' Yesterday Once More ' ? This song was made by The Carpenters . Though he is an old singer , we will remember him forever . We made Japanese food such as Udon , Matcha pafait , kinako , and azuki . We also decorated the Physics room in order to make Japanese atomosphere . My boyfriend and I are planning to go to a spa located in Niseko this weekend . I 'm an interior designer but I 'm working as a market researcher now . . . . . . . . . Anyway , I 'll ask you about `` articles `` . I want to say to my father : You are the best father in the whole world . I 'm proud to be your daughter . I have to be more diligent than anybody . Today is Sunday , but we are still on duty , because of a shortage of power . ( electric = implied ) Actually , I do n't like cold weather . This weekend is probably going to be busy but remember , masa , you have to check Lang - 8 and try to keep writing a new entry for your study as many times as you can . begin began begun I 'm gon na go to my friend 's for a sleepover and that 's the only thing that im looking forward to . I would like to get some methods for asking questions about my assignment when I have problems this weekend , otherwise I ca n't proceed to the next step . The temperature is also about thirty - six , This is a very critical turning point in Japanese history ! . So , it is very rare for a private company to be bankrupt . . . The Japanese economic style seems to have Westernised , which is very severe and dry . In this sense , I think this JAL bancruptcy is a historical turning point in Japanese history . Except for oversleeping , I would always hear the phrase , `` The diligent man . `` If someone does not wake me up , I might be continue sleeping . Unfortunately , one young couple sat near us . They were very impolite since they were discussing the movie very loudly , and this behavior is very disturbing when watching the movie . Hi folks . And form a friendship story . She came out with her new album in Japan . I was really surprised ! As it for me , I have spent over two years learning accounting , if I were to try another area , it would be a big challenge for me ! Most people ( can / could ) have difficulties when they speak a foreign language which they 've alread studied for a long time . I 've studied a foreign language for quite a long time . Moreover , I can hardly express what I 'm thinking in the foreign language . I studied English at school , and then studied French for two years in college . I am studying at a distance learning faculty at Kazan University of Culture and Arts , so I have a lot of free time . There is a swimming pool near here and it seems to be opening for the season . Today I woke up at 10 : 00 am and started studying my anatomy lesson . I attend a degree course in Biomedical Laboratory Techniques and at the beginning of February I 'll take a human anatomy exam , I really hope I 'll pass it with a good score because I 'm studying it so much I 'm quite bored about it . Can someone explain to me what the difference between these words ? I do n't know how to improve my terrible English ( > - < ) Help me please . As a result , trafic accidents often occur . And I met another boy who was even younger than me . The teacher in our class was a native speaker from Australia . I may be able to improve my English pronunciation by going to English lessons . My English has been mixed with Chinese accent since I came to Singapore . I will study English enthusiastically . out of concentration . . . after I took Toefl test last month in addition to finishing exam in school , my concentration towards studying English has run out . I only study about 1 hour in a day I guess regardless of taking a break from my part time job for next toelf text and ielts . I 'm so tired . . . I really want to give up on everything now if it is possible . yes , it 's true , how stupid of me ! I really appreciate my friends , they are always there to help me , whenever I have difficulties . I fancy to accept the quote from a novel , `` I am poor , humble , and unfair , but when our souls cross graves and stand in front of God we are equal . `` However , this is just an utterance which is used to encourage ourselves . Actually , it is meaningless and we cant alive ( only ? ) depend on a spirit . I evidently understand that the four years of my campus life are going to be very splendid . I will reap many friendships and generate unforgettable memories here . Though , it also may be serious and I may live in a state of misery for four years . in contrast with my precious friends and even sisters who have n't been enrolled in college . They dream I am fortunate , but this place may possibly bring me a nightmare that I will never return to experience in my whole life . This sort of feeling is practical . Several days ago , one of my friends told me about this website and I successfully registrated . This theme reminds me of the famous movie `` Terminator `` . I remember I enjoyed watching the movie when I was growing up . The biggest benefit of working with teammates is that they inspire me , while my own ideas stick when I work on my own . My hobby is listening music ! Some have two weeks vacation at most . This vacation season of spring is called Golden Week . So almost all firms give their employees long - term vacation . I am also enjoying this vacation with my family . Please contact us , people who like `` ONE PIECE `` ! I do n't speak Ukranian , and sometimes I feel that Ukrainian people do n't like Russian people . . . Therefore , their situation is worse than mine . Your neighbor 's apartment was broken into . But I could n't concentrate listening to English . My family has a cat . But I love love love him . I wonder what your opinion is , dear reader . . . Step by step unusual things and coincidences came into my life more and more . Bio hazard4 by 3D is unveiled There is a beautiful river called Venice ( partle in jest ) ? However , my favorite menu item on there is a grilled vegetable & sausage dish made by Staub . It was very delicious and can ensue the maximum flavor of guidance . I barely drink liquor , but everyday I drink iced coffee . Maybe I do n't know how to deal with the relationship between colleagues after graduation . Maybe if I would adjust my temper to this environment They checked my mistake and revised my diary . So it 's necessary for me to visit , write and practice english at lang8 site I 'm fine as usual . My friend is in Canada for working holidays . How frightful ( scary ) it is . Self - introduction ! ! I can help you by correcting your entries written in Japanese . Recently I have been worried about my future , I do not know what I truly want to do ? What is priority in my life ? I especially like suspense and action . My favorite sport is table tennis . I will keep taking lessons until I reach 1st grade table tennis skill serious flaw in it or you have some advice for me . I will go to a `` GO tournament `` at a university in the neighbouring prefecture so I will stay there only one night . I heard that many people lose their job and suffered from poverty . They organized some workshops , like ' manga ' ( it was for teenagers who like writing and drawing comics on their own ) , sewing ( making a little brooches with Japanese material ) , clay modeling , ect . So I only could make a reservation . I think it is a critical problem . . . And , unfortunately , the instructor seems to leave her job to others . This morning ' I must prepare to work . ' I whispered . The company continued their aggressive overseas marketing . I know that today is due date of the corporation 's establishment in Japan . I decided to study English again to reach my dream after I entered university . I did n't expect that since I began to write compositions on lang - 8 and had them corrected by you guys , my spoken English has made great progress without much practice . I did n't even realize it before the interview . This novel is famous because the writer committed suicide after he finished this novel . Actually , I 've already graduated in a reputable school in Osaka last 2006 , but I still want go there . ( Masato and Koji were the 28th members . This is the first time that I have sold anything . The item was a buddha magnet . Last time my friends from Lang - 8 helped me to correct my description and they told me about good marketing techniques to sell it to the people using a computer . It worked so now I can sell anything . I would like to say thanks so much for you kindness . I recommend that Ishiba becomes the Japanese prime minister . Later on , I realized that the sound was actually coming from a clock which was making a loud tic tock sound . It is a amazing that the tic tock sound could be so loud that I could hear it clearly when I paid attention to it , as opposed to when I did n't pay attention to it . Hopefully my next job will be connected to using English . Last month , I met a backpacker from Honduras on the train . Whoever is studying Japanese ! I admire those Chinese writers , like Zheng Yuan jie , Han han , Guo Jing ming , they are very talented . I was deeply touched by her style of writing , by her imagination , by her emotion . My biggest drawback is the shortage of emotion . PS : Recently I hace a cruch ( ? ) on the online game - - `` Maple Story `` . Actually I 'm not a PC gamer . I thought that I did n't have to go to work . I chose Japanese at the beginning of our term . The Moon is shrinking So I was relieved . English is very hard . Ok , I disappeared from lang - 8 for almost 2 months . He massages my muscles and sting needles to my neck , shoulders , and back . It only costs 2000 yen because I have Japanese medical insurance . I saw this drama and was recommended to me by an emcee of an information TV program . This weekend , I will rent the DVD from a rental shop near my house . Actually , you can find me there every Saturday . In Japan it often happens that an employee climbs the career ladder I was very ashamed and told him seriously `` I was trying to catch you and I did my best , but I could n't catch you . It is just opened this week . The area where I am living is surrounded with many apartments and a lot of residents like me . We feel excited if we have new shop or restaurant open near - by . And food did not taste very good , the rice in the sushi is a bit loose . . There were a lot of a street vendor stalls , so I ate some food , which were made within the stalls . I stayed at my grandfather and grandmother 's house overnight . This is totally my personal diary . . . . It 's not the time for writing a journal , otherwise I ca n't go back to my place / ' home and sleep peacefully . At the same time he was disciplined enough to not say , `` I want it . `` And he breathed fast like a dog which was told `` HOLD ! `` in front of the meal by his master . The skin of my face has something bad happened . I think he just thinks about winning the election . I 'm sorry I could 't eat fruits salada . I ate balut and I thought it was dangerous . I participated in it of my own accord . it is usually rainy , cloud , and cool . strip you of your once radical dream and to put ( Q1 ) What makes you happy ( sad , angry , surprised , unhappy , bored , frustrated , etc ) ? This is my first challenge . It was raining when I left home this morning . I looked for a good umbrella but soon realized that I did not have good one . For several years I kept losing my umbrellas . Rihanna is a talanted singer ! Recently , I have listened the song `` the california king bed `` over and over again . Just relax . `` Perfect skills in reading and writing english will help that purpose . `` I was looking for some action but all I found was cigarettes and alcohol . `` This is hard for employees but I can have private or self - learning time due to this order , like writing entries this this English learning site . I 'm a student of department of biological science and belonging the laboratry of structural and functional analyses on biomolecules . My research theme is structural and functional study of hypothetical protein of an extremely thermophile , Thermos thermophilius HB8 . I respect his incredible mathematics skills So , I still have a little trouble to communicate in English ( especially spoken British English , accents and pronounciations ) . In fact , I was near criticizing them . I 'm relaxing with perfume now . This restaurant just recently opened . Instead of preparing for it , I was cleaning my room the whole evening , hoping it would put in order my thoughts which hardly wanted to form into sentences . Then , I left the restaurant not sure if he would call me again , but I am satisfied with myself because it was a good challenge for me . What an awful fortune ! Every shop had displays set up at the front , therefore every store looked very good , and I did n't decide which store was the best ( store ) . I bought takoyaki at four different stores and ate them in order . In my Japanese - English dictionary , `` Uchiawase suru ( verb ) `` is translated as `` to make arrangements . `` But thisdoes n't sound rightat all ! Of course corrections on this post itself are most welcome . . Today , I saw photos of a short abroad stay program at my university . I work for financial services . You need to found a strong wall against those from society who hurt you . You have a common aim - that is , to come on together for your family 's happiness . Did you see the movie Karate Kid that recently premiered ? However , I am in Singapore now , here is clean and safe , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to work so hard and for a long time as slaves , no worse than them . I felt shameful while the movie , this movie showed foreigners how disgusting the Japanese culture is . Because I did n't do anything for two months . At first , I was feeling so nervous , but it was a good opportunity for me . That is why I wrote this letter to you . I 'm watching videos on You Tube now . Elderly people who live alone like the woman have less of a chance to communicate and visit with family or neighbors . She has lived in a dormitory . They would take their boyfriends to the dormitory and let them stay over night . The dormitory is a house , so my friend could not help running into them . We actually do n't like Pachinko , but the restaurant next to it is very cheap . We like to go for lunch on the weekend because it is very delicious there ! I want to speak fluently English . The Okonomiyaki was good . First , Merry Christmas ! Enjoy yourselves ! Because of the long distance I had to give up an interview this afternoon . when I picked it up to check the contents , my friend went to the ladies room and left her daughter with me . I took a Bullet train . Yesterday was Spring Festival . It is time that I become mature and be responsible for my behavior . There is a special place where we go to see a beautiful night view Re - type e - mail address to forward this card to more friends after sending . I must speak English at least five minutes every day because I become very shy and nervous when I speak to someone in English in classes . I need to be brave enough to say what I want to let them know . I NEED TO BE STRONG MYSELF ! ! But I realize that life is not that easy anymore . Recently , there 's another problem that I have to face . I 'm Japanese and a university student . I major in medical science , that is to say I will be a doctor . I tweet in English everyday , talk with my Filipino friend ( s ) on skype , and write in my diary in English like this ! ! My hobby is playing basketball and watching NBA games . He was discriminated against by some crazy Americans , and they tried to rip him off him . I have another example . I met some Japanese bilinguals in Australia , but some of them told me that when they were in school , they were discriminated against by other Australians , even though they could speak English like other Australians . Sooner or later borders will disappearbut sad to say things still remain as they are now , we have to keep fighting against discrimination to live on other countries . So I think it 's an excellent idea to write my diary on Lange - 8 in English because , hopefully , someone may correct my mistakes . I can believe in myself ! ! ! Oh , I do n't know yet whether I 'll get the job or not ! I want to study abroad someday . I am not Christian . . . . will that cause trouble for them ? I hope , that everything will be ok . ( more conversational ) Now I am studying English . I can read an English book which is written with easy words . any sign of blood on the road or anywhere on his body . He got used to this environment fairly quickly . However , some people push too far . something like that . We just stayed instead on 11th Avenue and watched the fireworks presentation . They sometimes quarreled with each other , but made up immediately . I understand my son 's feelings , because I have had the same experience as him . I do n't know how hard they quarreled today . As it was expected , after the announcement of the health minister about swine flu , many people ran to buy masks . Because I went to there to work . People in the school cooked with college students in Matsuyama city . Matsuyama city is Ehime Prefecture . I just started keeping an English diary today . I think it is a quite helpful website for ( with ) people who are learning the ( ir ) second or third languages . let 's exchange thoughts and help each other . My friend recommended this homepage . Anyway , the guys in this video are awesome . Their motorcycle transporter was carried by my transporter transporter . I wanna go there , I guess it is the in the middle of summer in Australia , the season is the oppsite of Japan . but now I still remain poor We studied for over six hours and I was so tired . That is because I am going to see a football game in an hour and after that I am going to eat at a friend 's house . I 'm so tired because I studied until 9 : 50 p . I attended the banquet yesterday evening . I have to prepare information about Montreal . It is made with wheat flour , soup , and some other ingredients for example , rice cakes , cheese , octopus , lobster , and so on . In general , it is difficult for beginners to make . I have a Skype ID , and sometimes use this to talk with my friends , but I have never used Skype to talk with foreign people . I 'm planning to travel next year . It would be a little bit scary for me . I have been to Paris , London , and Canada before but these places would be for the first time . The other is to squat down untill the right answer descends to him . I tried to translate it but I could n't . It was too difficult for me . . In this October , I decided to enter the Chinese speech contest . In the movie `` Magnolia `` , her song was used and gave it a supernatural or melancholy mood . I 'm working at an English conversation school as a front desk personnel , but my English skill is n't good enough so I ca n't communicate with a native English teacher . We 're gon na ( going to ) have a business presentation test tomorrow . How actual is discussion about this person . Finally , I want to tell that the personality of Mary the First is very unusual and interesting . Yes , she has brought much pain and suffering to her people but throughout her life , she , too suffered much . In my work I have also found out that a lot of films had been produced about Bloody Mary ; moreover they are still producing films about her . We wrote a lot of books too . These two examples proves that she is still interesting to people . But now , I 'm surfing the Net and drawing pictures . Japan is an archipelago comprised of a number of islands such as Kyusyu , Shikoku , Hokkaido and Okinawa , located in the middle of northern hemisphere . I thought it would be good to buy some education stuff . I saw some news that so many countries are praying for Japan , and giving us rescue , money , foods and so on . So your help will be really thankful : ) I 'm becoming suited to Australia little by little . Several weeks ago , there was a big strike in my company , I work in a state - owned company with 4000 workers , which produce NC machine . You know , a normal worker is just paid 2000 a month , less than the gas allowance , so ridiculous ! Finally the managers gave in , they came to the workshop to negotiate with the workers , promised to grant the half - yearly allowance at once , and cancelled the middle managers ' gas allowance . Anyway , the result was not bad , workers got back to work after they received the allowance . Sometimes genes have great influence on children , but the more important would be the quality of upbringing at home and teaching at school . TV business get involved in price competition against Samsung , while the bubble of solar panel business has already burst . Thank you for reading my entry . The japanese P . Yukio Hatoyama is struggling against transferring Futenma U . He pronounced on transferring out of Japan , but U . Maybe it 's a secret ) The cause of my sadness was a quarrel with my husband . On my way to the pool , a car suddenly appeared on my right side and then cut in front of my car so I honked my horn . It 's a pity that I have not found this website earlier . We practice cheerleading over 5 hours every weekday and over 10 hours on the weekend . Because , I have canker sore on my tongue . : ' - ( So I ate many vegetables for lunch ! ! Flying saucer ? No , It 's a flying car ! Bamboo Blade is an anime that was broadcast 4 years ago . Today is a festival in my town . When I walk for a few minutes , I get wet with perspiration . In Obon the souls of our ancestors come to us and we invite them . I was able to keep this pace with the other runners . My son has been in hospital for 9 days with a serious disease . I want speak this beautiful language ! I have been waiting to get this part - time job because it 's very popular . fortunately , there were only a few customers today . I am already awake when I was high school , I learned Japanese but I forgot many things . I will dance at the year - end party of my division tomorrow . Could you correct my dictation script ? Enjoy this amazing video , which is on a weird deep sea fish with a transparent head . The Macropinna microstoma , known as the barrel - eye fish , is small and dark with large fins , a tiny mouth , and unusual barrel eyes under a transparent dome . The two green spheres in the video are the lenses of its tubular eyes and the eyes are in closed in the transparent shield , sort of like a glass canopy of a jet fighter . Above the mouth the two dark capsules that appear to be eyes , actually contains the fish 's olfactory organs , or the equivalent of nostrils . Food ! It 's good to my body because I ca n't move quickly . But now that I 'm dieting I might cease from it . for foreigners But that 's the minimum I have to do . Classes end at 15 : 15 . After that we have club activity until ( ? ) about 18 : 00 . but when my son enters elementaly school , I will have to do night duties . The teachers of agricultural farming have to do this heavy work no fewer than once a week . I 'm waiting for an answer from the company which I took a job interview from last Thursday . Anyway , I think I 'll get some new information tomorrow . He appears only in the summer . I could n't help checking throughout the room . I am not sure whether I was able to sleep or not . Before university , their only focus was studying in the cities . After that I went to eat Chinese food with my classmate . This is a very famous legend among Japanese people . Of course one was to study English hard there , and the other was to order a s - size cheeze burger meal in Sydney . So it was natural that I thought the size of Australian cheese burgers should be super jumbo as well . I rushed to a McDonalds in Sydney just after I arrived in Australia . I ordered a cheese burger meal at the counter in joy . I gazed at the cheeze burger meal for 5 seconds . When I started talking about the weird news , I finally found him under my table on the floor . I have been finding books written in English for my studies . Reacently the website introduced a lot of books and digital books . Recently free digital books have been introduced . Digital books have many good points , for example digital dictionary software can be used in digital books . So , I asked my husband to massage my neck and shoulders for me . I ` m sorry for the delay in diary entries . This april , almost my friends start to work so we couldn ` t meet and drink easily ; but I hope we can do it again ^ ^ They are my precious friends . There are applications for Twitter , Facebook and Mixi for the iPhone . Good morning - zao shang hao I want to study hard , to read the document , and to deepen my understanding of my major . I have n't gotten a job yet even though I 've had some interviews . Christmas is coming in about two weeks . Some houses really took a lot of effort to put up their Christmas decorations . But I ca n't respond quickly when I am asked by a English native speaker , even though I have what I want to say in my mind . She was terribly frightened after she read a person 's blog on which he made a structured analysis about the disaster that willhappen in 2012 . Coincidentally , the news report said an earthquake took place in a country on the Pacific Ocean . As a matter of fact , in the end of 2009 , a blizzard has swept over many places like western Europe , the US and Xinjiang Province in China . And the horrible earthquake that has made many Haitians lose their families . The immediate family is the most basic and smallest community in the society . I played with his son , showing him how to use iPhone apps and teaching him some words . He is starting to join the society gradually . I think that the university should increase the number of questions that test output skills , say , organizing thoughts in essays or drawing conclusions from some facts or expressing oneself in English and so on . But , not to speak of conversation with adults , they ca n't write even junior high school - level writings or communicate with native English children . Indeed you will see , reading this terrible sentence , I 'm not an exception . everyone loves reggae , Latin , cambia ( ? ) , jungle and drum ' n ' bass . He left money for my marriage fund . However , my computer is just two years old and I should wait at least one or two years to buy the next one . He paid 500 dollars and got a new computer . I usually use two online services for learning English . This website uses Flash technology for learning words and phrases . It is simiilar to the English one , and I think this is useful and convenient for Japanese language learners . The iknow involves also blogging feature and sns feature , but I feel that this blog and its sns system is not so good relative to lang - 8 , this website . Actually , my dad lives in China for him job . Anyway , I really miss Japanese food , such as sushi , nikugyaga , oden etc . Although you can get sushi in london , the taste is definitely different ! Snacks in London are really cheap . While I 'm eating snacks , I 'm happy but when I finish , I feel guilty for some reason and sick because I ate too much . because McDonalds 's cheese has some special additive like a drug . So I think snacks have the same kind of additive . Anyway I ate cookies today even when I know about this effect . . . My English is poor , but I really want to improve it , anyone can help me ? ? ? I was tired We got medicine . She wants to give me a gift . Although it 's challenging for me to think of topics to write in English , It has become more enjoyable for me to write in English ! My friend and I are planning to go to Tokyo Disney Resort next month . We love Tokyo Disney Resort . And I was studying harder than usual , I think I shall give her some canneles when I return the molds . In my class there are students who are almost native speakers . . Last Sunday I drank with some English teachers and their friends . I woke up earlier than other days and & nbsp ; went to the hospital because I was concerned about a litte fever . these days swine flu is prevalenced ( ? ? ? ) . so I was really worried about it , but it was just a fever . thrid , I will have a part time job for weekend I ' d like to register as soon as possible , in order to make an early hotel reservation ( only available for that association member ) . Dear * * Association staff I 'd appreciate it if you could register me before Jan . 5 . Then , the boy came to the shop and tells us about the owner of shop . - but I sold to Jewish man . just a translation entry She was accused of spying on the Iranian government in favour of the USA . As soon as I arrived , I took a warm shower and then I went to sleep . My husband bought me a I - pod touch the other day . A small displacement gasoline engine is mounted on the power tiller , it is 4 cycle air - cooled one . It is my important right hand in the garden and field . Even though I joined the site immediately , it was not easy for me to find time to write . My hobby is surfing . I 've forgotten to tell my mother about it . Now the busy week passed , I can relax and revive again . `` Having finished lunch , I went directly to ~ `` I know that it 's a bad habit . I hope you will help me to learn better English ! I always go to the restaurant at lunch time with my colleaque . The conductor anounced that someone was trying to commit suicide on the track so trains would not run until the police arrived . Recently , I have been often reading the book Self - development , because of the training of logical thinking and Photo reading . Recently , izakaya ( Japanese pub ) which serves flat - rate foods and drinks is very popular in bright - light districts . Nowadays , I have to recognize that I really learned a lot from those stories . I really miss them . I miss my childhood and I especially miss the person who made me laugh in the old days . Do you know any manga of Japan ? For example , Doraemon , wanpi - su , Death note , Naruto , etc . There was a free concert in the center plaza . There are several stalls ( street vendor ) around the plaza . I think consuming there is not cheap . I also saw firefighters standing by . A urban appearance in downtown San Jose is pretty good . She could n't follow what we said and felt uneasy . But I though she only has only been learning Japanese for 3 months , and her pronunciation was good . It is not easy . A British girl is staying in the hostel now . No Japanese shall beat my child , and I really really wish for that . In passing off , `` dilution `` means damage to the goodwill . because I have to go to work tomorrow . because my graduation is just around corner ! ! ! ! I 'm going to have my hair permed tomorrow . However , my hair was not permed very well . Was it so predictable ? And I 've been waiting for the result of the exam for Osaka University ( Chinese major ) . Recently , I quit The Chanson Society [ I play the bass guitar ] . I have had a lot of homework , and I had to make a presentation . I still remember I lined up for two hours because I wanted to buy a moon cake . Yesterday my boyfriend and I went to some nice places . Happy full moon festival . But although it was only thirty minutes since the festival started , all of the lobster was sold out when I arrived ( there ) . Of course I ordered a lobster set . We studied writing , reading , grammar and stuff like that . My daughter is a big fan of Ponyo . She continued to help her mother , for example ; washing the bath , washing the dishes and so on . He can speak English fluently considering the fact he is Japanese . But some Singaporeans told me these salaries are quite common here , and they added that some intelligent Chinese and Indians are earning more . I had fixed my pronunciation . I do n't understand what is difference between / o / , / ou / , and u : / . AMonAmen , Give me power ! I am working at a Japanese restaurant in Victoria , In the winter holidays , I did n't study very much , which worried me because there is a test coming . The second time a foreign customer came to our company ( office ) It takes a long way to get there ; we had to go all the way up a mountain . Usually I like to sleep in the morning . I liked it very much . She was happy to understand each other before they had problems . Her job is about about advertising and marketing paper . I would like to attend the party too , but unfortunately , they are serious subjects from the University . In that place , someone received my call next to me . So much discrimination ! ! ! ! ! ! ! ! ! ! I planned to go to a movie with my friends . I think he could n't adapt to his new situation ( or environment ) , but in my case I got used to it owing to traveling to lots of places . ( I can get it on Monday ) But it 's still cheap , compared to in Japan . When I arrived at the theater , I picked `` Inception `` because some of my friends told me that it was really good . When I bought a small coke and popcorn . I could n't figure it out though . To be honest , I am one who wants to push reality away . The tests of proficiency are the most important tests for language learners because these tests represent the student 's ability in a language . I 'll be back on monday , the others will be back on Tuesday . Hopefully I would like to get paid - holiday for Tuesday , but I ca n't . I found a discount price for the train ticket including an one day ski lift pass I 'm looking forward to going next sunday . what 's the difference between them ? I did n't write in my diary recently . but , as with everytime I go to a bookstore , there were so many foreigners . That 's my misunderstanding and I thought how if I travelled to he US , the locals might think that I 'm Chinese , or Japanese or some such . . . . . . I joined Lang - 8 because I wanted to learn Japanese , but later I realised I needed to learn how to write Japanese to do so . But now I enjoy helping Japanese people to learn German by correcting their writings . I 'm quite sure my spelling is creepy , and since the times back in school I ' ve been always using wrong tense forms , I want to improve my English so I can pass the IELTS 6 . 5 . The first song `` Rock ' n ' Roll star `` really made everybody gon na crazy , and it 's really really exciting ! But we need air conditioner because of the extremely hot weather in Shanghai . It seems to be a very mysterious world . First , grind the tomatoes and garlic . Next put the garlic and olive in a frying pan . After that , put some salt and pepper in with the tomatoes , then boil them . It is a Monday morning . Have I eaten something bad last night ? It 's `` Qantas airline `` , the most expensive company . So this is going to be a first for me . I examined a staff reporter 's story and a news feature . All the conversations we have are in English and sometimes Italian ( but I never tried to speak in Italian ) . Normally , I will study Chinese and English on Livemocha , though . I enjoyed skating ! ! I 'm vulnerable to any kind of noise , especially at night . Moreover , even if I fall asleep , I 'm always easily awakened every time I hear a noise This phenomenon makes me exhausted and inactive . Occasionally , it seems to me like my alarm goes off without a sound . Unfortunately , I do n't notice the sound of my alarm as good as I do with small noises . I 'm going to start a part - time job earlier than I thought I would have to . I like English , because English is not a very difficult language . Although our languages are not the same . Kamakura is a famous place for foreigners , visitors and surfers . Banana pancakes , one of the popular menu items in there , were so good : D It contained recota cheese . Hello , everyone . I miss studying ! I sent her some songs from my friend who sent it to me so , I think my friend will love the matter that I sent it to her already , she asked me to give her other songs too . I imagine . Next week I think I will find a job soon because I relaxed enough . On the 5th of this month is father day so usually buy somthing for my dad , at the moment I bought it already . Do you have Farther 's day in your country or not ? Recently , I have started using Facebook . It is great to be able to communicate with friends in English , especially those living in foreign countries ! My goal is to be someone who can write down ideas , without mistakes , in English and communicate fluently with people all over the world . I 'm very happy , now I need to buy an iMac for development . Maybe next month . First time on Lang - 8 After I logged on to this website , I felt I had just entered into the language of Disneyland , where u could find any language , and anyone from any part of the world at any time . One of the most interesting thing I noticed is that u can improve your language level not only by talking online but by correcting others ' diaries , which anyone can add comments right below the diary to inform the writer of the mistakes he / she made in his / her article . nowadays Im very crazy to watch movie `` s `` `` in `` `` english `` This causes a pause in my dialogue . My Foreign Friend We are both foreigners . Especially if it 's English . Nearly all parents scold their children . But , when their children act wrong or make a momentous decision , parents are worried and anxious about their beloved 's future , , because their children are their greatest pride . I found out something about our differences . But I was still happy because I bought a katana as a souvenir . So I believe that I 've already known grammar in English . You can tell my lack of vocabulary and a bit short length of sentence is like a child 's . I 'm learning a group of vocabulary to be acustomed with it efficiencly . In Japan , someone lost their job , they could make their house out of cardboard . We usually decorate hinadolls from the middle of February . Because if the still decorated Hinadolls are on display after that day , it is said she will marry late . Fortunately , I 'm a sophomore now . I 'm especially not good at the reading and the grammar section . Shocking LaLa mountain trip The trip had a shocking incident which remains my head . We were in a traffic jam on the way to LaLa mountain . cockroach ! ! ! We killed ` five cockroaches ` that day and retained their corpses to show to the manager . I remember that there were a lot of beautiful stars in the sky that night but I don ` t recall anything else that happened . . . I have started to write a diary to improve my English . but it 's sodifficult . so I decided to write in this diary in English every day . and I want to make many friends . Now I am struggling with driving , I mean , in traffic . I went to the hitting center . I have recently practiced playing a song called `` Just Be Friends `` . My part - time job starts tomorrow and college starts the day after tomorrow . I 'm working hard ! `` What happens next ? I do n't know what I 'll be writing about yet , but I 'm sure I 'll find something . The classmates were from all over the world like Chinese , Korean , Bosnian and so on . I 'm an economics student in Kyoto . I 'm keenly interested in innovation and investment science . I 'm going to barber to have my hair cut . The word order of Korean is different from that of English . And I have to go back to my homecountry next February . In addition , we tend to differentiate our behavior according to our first impression . One thing that I am concerned about is the inconvenience of short battery life . More Advantages of Living in a Big City I think I may well be able to make aussie friends over time but it is difficult . In that sense , I 've been studying English with my tutor lately . Yet English as a second language is so hard to me . I feel happy . After the lunch , we went for coffee again . Finally we went for crispy cream doughnuts and more talking . It is my favorite ! ! Therefore there is a modern / up - to - date railway station , although if you prefer , the city also has a small airport . C . , for this reason nowadays the city conserves several Roman monuments like a wall , a theatre , a forum , and other important archaeological sites . It 's a wall on the mountain , and it defends the city . Now , I have a slight headache > < There is a very interesting phenomenon in Hong Kong . About 400 years ago , `` Nakasendo `` was maintained as a main road from Edo ( old Tokyo name ) to Kyoto . The roast was also known as `` Tokaido `` . But this is my first job . chatting with primary classmates , it rained heavily nipple & pacifier I usually do n't care about these things , but just enjoy them as dramas . After surfing through a music website , I found a song called `` Crush `` and clicked the `` play `` button . The melody brought me back to high school times . I still remember when I wait around the street corner for half an hour just wanting to get a glimpse . I was afraid you could hear my heartbeat , because it sounded so loudly . . . total tragedy . . . It 's very tough and challenging for me to advertise my class next month , but I 'll make an all - out effort . Fortunately , my mom apologized for being stressed and grumpy when we sat in the car . The first buyer I called got irritated because of my pronouncation . Fortunately , I like to go on a journey alone and I decided to do it ! To make matters worse , the cost of transportation fees are expensive ! ! I did not know what rural life is , and at first I was very confused with the differences between rural and urban . In addition , Akita is one of the most famous rice producing regions , But actually , I have n't seemed to have selected this job because I live in Busan . It is the second largest city . Busan is far away , a long distance from Seoul and Seoul is the largest city . So , there was more than expensive Anyway , now , I am feeling happy . It has really interesting stories , but it 's difficult to understand in English since they use a lot of medical words which I do n't know . House and his team fight against unusual medical cases . Today , there is only one lesson , I ? to see a movie after learning English . lt is a purple print t - shirt ! ! I have n't used Lang - 8 for a long time Yesterday it snowed heavily in Beijing and I went out to buy an MP3 player to listen to English songs ~ It takes my breath away . I think the best way to learn English is to compose English sentences by myself . Next diary want to write good sentences as soon as possible . He is from Australia but he told me his father and mother are from New Zealand , which I think is really s strange . another colleague made a business trip to China . I wonder if my listening has improved now I ca n't understand and hear sometimes . I need to prepar for it and I hope to spend nice winter holiday . I 'm studying Japanese , but I want to write a diary in English . but , when I went to University , I found / realized that there was no reason I should study English . I used to follow the general norms and never thought about of it . Our opposition are so good , our topic is `` Computers Will Substitute Books `` . he is lazy and useless . By the way , almost all of my friends , including myself , think that foreign companies immediately fire employees when they make some mistakes , which is a bad image . I was speaking about the fact that sometimes I get frustrated because I want to improve my Japanese . For example , I read a book , use a computer , wash clothes etc . Because of my life is not exciting and stressful . I like Emma Watson . I have to lose weight . On Friday , I was working at my office as usual . One headline said `` The fifth biggest earthquake in history occured in Japan . `` I did not really care , because strong earthquakes are very common disasters ; it 's kind of everyday experience in Japan . She told me that her flat was not really damaged , but she had thought that she would die when the earthquake occurred . So I told her that it was the best time to buy some Japanese construction firms ' stocks / shares . On friday and saturday , the prices of many Japanese stocks / shares went down because of the earthquake , and definitely the Japanese government and companies will have to reconstruct everything . which is something delicious ! ! In this Saturday and Sunday I will be a prompter girl . Hello , everyone ! I went to my friend 's flat with my two other friends today , and I learned how to cook `` Purukogi `` ( Korean food ) for my Korean friend . When we were buying minced beef , onions , cabbage and more , my friend surprised me when she took a kiwi fruit . I have never seen it in Japan , the taste is mysterious . Now I 'm busy studying for final exams . Obviously , our lives has changed enormously because of the use of computers . However , like a double - edged sword , they bring negative things as well . Now I always meet my friends from it and talk about our recent lives no matter whether they are in China or America or any other country . However , it is nonsense to be on her side when she is very angry with me . . . In this club , many non - English - native people whom was interested in English gathered and talked with other people in English for two hours . Lately , this style is in fashion in Japan . I thought it was useful lesson of speaking and hearing English . `` You bet `` he replied and dived into the water with his flashy long harpoon and disappeared into the dark violet . I like leaning English , but my English is not good , I hope someone can help me . I am a Korean university student . It moved me and left a nice aftertaste on my heart . I also love that of CAT ' S EYE , the beach where scene Hitomi got back her memory by the music box . It was so beautiful and pure . All this period of my life I could characterise as a painful quest for self - development , which is really hard to achieve in the current situation , when almost all the time I 'm busy at work , where I have no exact timetable that would allow me to go to language courses . . . and I 'm going to the Reading Festival to listen to Radiohead . After the long over time last night No , it is not a blade . Sazae - san syndrome I happen found out about this site from some blogger . I negotiated a new business deal because my occupation is sales . I visited many places , saw many beautiful sights , felt the good atmosphere , met many kind people , and took more than 1200 photos . Hello everybody ! : ) I ; m like to be here ! I like reading comics and watching movies in my free time . Indeed , it is convenient . If we had fewer vending machines , Japan would not need nuclear power plants and accidents such as `` Fukushima `` would not occur . According to the informal , but still credible results , I succeeded in it ! * This sounds more natural The second part of the exam is going to be held on October 11 . Recently , our factory do n't get enough orders so that we l are free are not so busy . It is 21 : 28pm , not too late but something happened , which made me realize English is really , really important for overseas people to live here . He was sitting sideways on a chair and started talking to us , like just saying some greetings and shaking our hands then he was talking about his story and how he was in prison for 5 years as he did something bad ( he is 21 now ) . I am a fashion advisor . It tells the story of man with a mild form of autism . Throughout his life , he becomes many characters : a football player , a soldier , a fishermen , a gardener , and all of this ( was achieved ) with an IQ of 75 . In three years he runs the length and breadth of the United States . The class which is chosen by the computer must go to the small island , and then the army makes them kill each other until there is only one survivor . And then the `` program `` will start on the hopeless island . It tasted a little light , so I added some soy sauce to it . To prevent sunburn we can use items like sunblock that reduces the damage of the sun . This news said that this programme , It was unbelievable . We never wear coats in September or October . It 's the turn of the season now , so let 's be careful not to catch / get a cold . I moved to Toronto last April and am supposed to stay here Here in Toronto , I could manage to meet a lot of different people who I 'm planning to get a driver 's license during spring break . We have a custom of giving presents or dinning together to express our daily gratitude . My shop deals with polo shirts and is famous for polo shirts , so it is packed with people . Although my English is very poor , I hope can make many friend to learn a language together : ) I have a question about a sentence that I read : Due to the high cost of textbooks in the school bookstore , I recently did some research and bought some books online . One was the Stir - fried dried bean curd with shredded pork , and the other was the `` Three - cup Mushroom `` . I should not simply ( only ) compare Japan with Singapore , but around half the population in Singapore are foreigners . So some normal Japanese English learners mindlessly believe that English lessons should be taught only in English . It 's storytelling with several pictures , and is a form of traditional Japanese entertainment . All you need to do is put a seal - shaped IC gadget on the outside of the body . Is the following information correct ? Master 's Degree anticipated March 2012 Our lives are not so good , like everyone in this world , but , if we are mature , we know that we have the tools to make a difference and understand forgiveness is the key for a good life , a life who a few people choice , but is so refreshing . You should try . I felt `` The PC is closed `` is something strange . After my graduation , I will go to the cafe often . As we all know , the attainment / reaching of success is only realised through practising again and again , which had ( has ) been proved by so many famous people , such as Michael Jordan , Kobe , and so on . I ca n't remember my Japanese teachers from when I was a beginner . Why I say it 's a problem is because the people I met when I came to Japan often said to me , ' Arumoo , your Japanese is so formal and you use many difficult kanji . ' I Just started . I 'm very shy when speaking to strangers . My mother encouraged us to do it . I came from YOKOHAMA after Igraduated from university . Last Year I went to THAILAND first time . I have a plan to travel to THAILAND this year . Yesterday , I did research . This was the second thing that was surprising . Also , we listed to music and played with 2 babies who we did n't know . XD Yeah , I do n't have enough time to construct any ideas . Differences in their culture , language , common sense , and politics . The politics were especially different from Japan . And more than 10000 people have evacuated to Turkey . It 's very interesting ! I hope we can study foreign language well ! She wants to try snowboarding next time . That contribute to Japanese archeology . Anyway I 've got some sentences that I ca n't understand clearly . But , working men or women have maybe 1 week summer vacations . If one were to ask all the Japanese animation producers about the best Japanese animation , most of them would answer that the movie `` Akira `` is the best Japanese animation , better than anything else . In my subconscious , I think of tomatoes as fruits , not as vegetables , although I know that tomatoes are vegetables technically . I started Lang - 8 . I have a band and we practice with the other members every . saturday . I 'm going to go to Minnesota . Because I had a hard time finding keywords to do the research , I visited the library reference desk for the first time yesterday . The librarian was helpful in telling me where to go to find the database and good keywords to do the research . At last , he scheduled me for an appointment to meet with a librarianwho is good at business topics to help me out with my research . I 've just translated it from Japanese to English word by word . Thanks ! I asked one of my friends living in Seoul becausei dont have lots of money I brought a hot - water bottle . I enjoy working ! so if you know any good countries or cities , please tell me ^ ^ Because my English becomes worse , and at June , I have to take part in the CET4 , everybody said that the test was easy , but I do n't think so . I must spend more time in learning two foreign language . I can n't deal with them well . I went for a walk with my little brother . Then , even though I showed him genuine bread , he still said that it looked like a conch shell . Nowadays , I am watching an American drama named ' desperate housewives ' . So could you recommend another funny American dramas ? ? Today , I just discovered a [ new ] method to improve my writing skills . woods : I managed to contact them four days ago but they did n't reply ( to me ) until this morning . They complained that we did n't contact them earlier . I stopped for 2 years and then started to play piano again but with a different teacher : ) But I am scared when she teaches me , she gets angry easily and tells me to use my brain properly T _ T We of _ course have not only English , we have another subjects to study ! at Macquarie because I 'd like to improve my skill for writing , reading , speaking and listening . I often skateboard ( / go skateboarding ) resently . My wrists always help me , and they trim ( ? ) my condition . Skateboarding is such a dangerous sport but a more than interesting sport ! I found this website in a magizine . I was surprised to see so many people here speaking several different languages . She taught me it carefully enough for me to understand easily . There was an autumn festival at the neighbourhood temple . Or should I say , `` He picks up girls after he turned 30 . `` Are they different from `` not good `` and `` not bad `` respectively ? My grandmother died seven years ago , when she was ninety - five , after lying in a hospital bed for about ten years . Right after she moved to the hospital , I would go see her . I do n't need a long life expectancy , just a life that I 'm satisfied with . Do I use this site steadily ? because I could understand some news in English on TV . join with sentence above I play the bass guitar in my band . So I studying about musical instrument and constitution of the music . I tried to read the notes for ' Heart of Gold ' by Neil Young . Here is a YouTube video of ' Heart of Gold ' sung by Neil Young . Today , I took a driving lesson . It was my third time and it was quite good . I noticed that one of the most difficult things in English is caring about singular and plural form of the words I use . My friend 's birthday party We enjoyed beer at a restaurant . Tell me why you do n't answer me even though I texted you and called you more than two times . Plus , its been twenty four hours already . . . . Clearly , I told told you lie intentionally when you asked me whether I will study in the U . I feel like I 'm a little weird , but my friend told me that he scolds himself like `` Stupid ! ! Anyway I do n't know whether I can continue to post diary entries . I have studied English very hard everyday , but I hardly speak English . And I want to make a lot of friends who are native speakers . Yesterday was my younger sister 's birthday ! I will be very happy if you become my friend and inform me of any mistakes concerned with grammar or expressions ! ! There are many differences between English grammar and Japanese grammar . English grammar is `` S ( subject ) + V ( verb ) + O ( object ) `` But Japanese grammar is `` S + O + V `` . So , sometimes I ca n't understand and I ca n't speak . It 's not that I 'm begging for your company , at least ( not ? ) at this moment ! ! I ca n't carry out a conversation right away . She quit high school and used to leave home . We do n't usually eat our meals at the table , rather we eat sitting on the floor . You can feell your bellies getting full early when you eat sitting on floor but there is a few problems sometimes . For example , people who are n't used to sitting on the floor can feel numb so they can hardly walk when they stand up if they sit for too long . atarashii tango . But I reserved early , so I could buy the return tickets at about half price . I 'm so happy that it will be spring break from tomorrow and am looking forward to be in the next grade after the break . So , I personally believe that we should pay more attention to our behavior ; and cherish our food in the canteen . I finished the English Academy course / classes last Friday , so I am an unemployed person now . This is the last interview to enter the company . I do n't have confidence but I do n't want to charge . To do some meaningful things on tree planting day , we should hold some activities like getting students to plant trees . It is meaningful for us to be close to nature and do some manual labor . So , we mostly spent time staying inside like in a theater , a restaurant , a pub , a bar . I read an article describing that the main factor could not be the CO2 , but it could be due to the amount of activity of the Sun . Today 's morning I found this service by chance . I am now working as a medical staff and doing experiments . Recently I had a chance to talk with exchange students . I want to communicate with native Americans but it was very difficult . In the restaurant or supermarket , I can not understand what they said perfectly . My hobbies are snowboarding , golf , snorkeling and traveling . Please somebody help me and I will help you with chinese . friend with benefits ? ? what does `` friend with benefits `` mean ? I searched about it , and found out it 's being `` closer than friend , but not in relationship `` if a guy and a girl like each other , it makes no sense to stay as a `` friend with benefits , `` right ? I saw the major league baseball . I felt scared and remembered the Fukushima earthquake . I went to Canada to study the English language . I wish speak English very well to communicate with people around the world . I live in Vancouver it 's an interesting city . My dear friends and teachers on Lang - 8 ! I delated my tutor 's check mark . I did the opposite action . many people were surprised at me so I 'm very ashamed . Luminarie was designed to give residents hope and light to But when I played the saxophone it was very fun ! ! So I love the saxophone today . I went to the gym to exercise my muscles . Shu uemuraand Mac is famous brands . Also , it practiced my listening , because all of the speakers have good speech . Actually , I really want to stand where these speakers stood . I am looking forward to meeting the other lab members and feeling the atmosphere of another country . It has 8 writing tests that takes 17 hours and 7 marking tests that takes 5 hours and 30minutes . 2 hours writing test in civil law , 2 hours writing test in civil procedure law , and 2 hours writing test in commercial law . I 'm waiting to receive the I - Phone4 I already reserved to fiding new information about the delivery Today was complete holiday for me . And a very unfortunate happening . Kanshi recitation Kanshi literally means poem written grammatically in ancient Chinese and recited in Japanese . Singing is also very healthy for people because they need tough vocal cords . These days the weather is getting hot with a lot of strong sunshine , but today 's rain made the temperature go down so I felt a little chilly outside . Until a few months ago , I was very happy to get the free time , but since last month I 've felt so bored with my life even if I spend several hours in my institute for studying English every day , The nation 's low labor costs which is only $ 2 a day but $ 3 . 5 ~ $ 4 . 5 in Thailand and $ 4 ~ $ 8 in China attract foreign companies . Now the Indian government aggressively lures foreign companies after being the biggest outsourcing recipient because of its low labour costs . I want to practice my English so I 'm writing this ( journal ) entry : ) If she did revive , I would have been happy even she would have become a violent cat like in `` Pet cemetery `` written by Stephen King . I need to speak English on business . I have endurance tests once a year , and they are significant for me to evaluate my physical condition . In the process , many students were afraid of running 1000 metres because we had been inactive in daily life . I was arranged in a team , which has 22 members in total , and we would start together . Even for a substandard athlete , the time was too much ( slow ) . This was ( still ) remarkable , considering that I had had so much laziness in my life . She always helped me . I 've fallen in love with a chair called Rocky ( in fact this is a rocking chair with a modern design ) but unfortunately it costs about 3000 PLN ( 1 PLN is approximately 03 USD ) , almost three times my salary Our favourite restaurant . I found this site today , and I want to communicate with somebody . Today , when I looked over the web with my friend , I found this website , I find that it is really useful for us to improve our lanauage lskills , I 'm very happy that I can express myself here . Three shots of adrenaline , one shot of panic , five shots of cowardice . But we can not decide which country to go to . And on that day , we were overwhelmed with her excellent dishes right away . She made a lot of `` yamu - cha `` , that is Taiwanese cuisine , and not only that Pirates of the Caribbean 4 I 'll go to theater to watch Pirates of the Caribbean 4 . Hello , everybody ! Of course , you should avoid religious or political topics . Each lesson takes just 25min , which fits the period of time on which I can concentrate . Nonetheless , I still think that I have to build my vocabulary and learn to Learning from Filipinos has made me take interest in their country and culture . They are generous , patient , and cheerful all the time . Interview for studying abroad Today , I had an interview for studying abroad . Maybe , I can not study abroad . it was very delicious . Today I have an assignment and more work . > < ; Happy New Year , everyone . I 'm wondering if I should buy a new one . In addition , Jennifer Aniston became my favourite actress since then . 3 months ago , we just had a big disaster in the Tohoku region with a tsunami wave . Hello everyone ! ! Most of Taiwanese , they depreciate both athletes and sports . Always , I have admired neighbor countries , such as Japan and Korea , who surely put high emphasis on their sports . I wish that one day I could see Taiwanese people and the government pay more attention to sports , and treat athletes well , giving them more benefits and wellfare . If you know these artist please give me a comment . Until now , I do n't know how to use this site so please teach me . My boyfriend is a more ( older ? ) than me by 12 years , he always takes care of me and love me . Recently , he had a fight me , because I did something that made him lose his fase . ( face ? ) I justpretend to know nothing . It is very humid and hot , so we are uncomfortable . I can bring some spring rolls and clues . I became friends with him first , and he said he would teach me gospel piano for free ! ( good deal again . ) So I was taking his lesson once a month . He was teaching a half year seminar ( or class ) of gospel piano and he invited me there . ( It was not for free ! haha ) After I finished that seminar , he asked me and one more student to play at his choir 's gospel concert . Because it was our first time playing at the concert so my friend and I were soooo nervous about it . The concert was very good and it became a pleasant memory for us . A world famous athlete who was a champion in the 2008 Olympics took his mistress home , and was interrogated by his wife . I felt lonely because we had good relations . I have studied English for my career and to see many internet sites all over the world . However , when she meets my baby , she never forgets [ it ] . I sometimes have meetings with our overseas local staff in English . Maybe there are some different ways of thinking between us . I 'm look forward to your reply . He is a historical person from the end of Edo age . I will go to Hokkaido on a school excursion . When I was junior high school , I went to Okinawa on a school excursion . If I go to Hokkaido , I want to eat some delicious food . Vacation Plan Fortunately , the reason of the death was not an assassination conspiracy , but a heart attack But the problem appeared after he died . So people who are in the progressive camp think that the politician from North Korea does not deserve to be buried in the National Cemetery . And the people who are in the progressive camp insist that the conservative camps are using the death of the North politician as a their political position , giving them the advantage . One woman politician , who is in the progressive camp , announced her opinion that she and the party she belongs to will ( ? ) not mention their political opinion over the hereditary regime system in North Korea . Some other people who are in the conservative camp also hurled criticism and said mocking things to her . Then , a gentleman from a foreign country escorted me . Yesterday I watched a volleyball game between Japan and Korea . However , she taught a new member good technique and attitude . For any native speaker of English learning Japanese I am Takuya and I am Japanese . If you are studying Japanese , I will help you in return . I always wanted to become an animator or illustrator , but now I 'm studying jounralism . First , the actors performed the process of dying with horror . Second , the special effects were added to the preliminary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his body . . . I finally discovered what melody it was , I have heard it occasionally since childhood . as I was looking for another song on YouTube . I have a speech next Thursday . It 's some knowledge of cheeses . Second , an example of a famous cheese . Maybe you 've heard of Camembert before . It 's soft and covered with Penicillium , which gives it a white appearance . Camembert de Normandie is around 10 . 5 ~ 11cm in diameter , normally 3cm in height , and at least 250g in weight . In october 1790 , Marie Hareil , a habitant of Camembert village defended a priest from those who belonged to rupubli . < - - republic ? Especially because it is useful when I talk with French people Because there are many kinds of cheese in France and the French love them . Thanks for listening . Snow Leopard , Apple 's newest operating system , was launched today , August 28th . I like the European climate . I live in a small Ukranian city , that is why I can not find suitable courses in my town . : ) Especially with strawberry jam inside . It is a radio station which is literally the American Forces in Japan broadcast . They are American country songs , sixty 's or seventy 's rock , and so on . I drove too much lately and I 'm feeling tired . The lifes are different from their choices . And when we come back from karaoke , we went to the school 's library and watched 2 movies . Ato said , `` The one who is going for the first time should be at the head of team , because it is easy climbing for the rest of us . `` Then we went down to the starting point and split up at 11 P . I 'm watching the TV news now . It says over 1300 people died or are missing . Many companies adopt this test as one of the conditions for promotions or opportunities for employees to brush up their English skills . The digital stick for old people , iPhone The voice recorder releases older people from input their sentences from a small keyboard . If we prepare the crowd input system for old people , I think that old people need SMS more than us , but it 's very difficult to use SMS for older people . With iPhone we can put various colors on old people 's lives . Hello , my name is Joanna . I will be grateful for all corrections . Of course , I like science and I really like English , too ! Because one of my friends recommended Lang - 8 , I feel comfortable being with him . My promotion would delay marriage and the birth of my first child . Today , I watched the movie `` Knowing `` starring Nicolas Cage . I do n't know whether I am intoxicated or not . Unlike Mark Zuckerberg , I 'm not a genius . `` Tomo - chan , elbows off the table . `` I am really happy with Lang - 8 . Weekend and spider I want to be an interpreter or a translator in the future . My friends introduced me to this place , and I hope I can be friends with you . I am writing to you because I want you to deal with a problem . The heating system in my house stopped working two weeks ago . Now , I am spending an uncomfortable life here . I urgently want you to fix the heating system . I want new jeans and etc . In June I will be starting a master 's degree in accounting and I would like to find a job in that but I feel nervous about the interview , because my speaking is not very good . life would be harder because childcare in Australia is very expensive . I first started studying English in junior - high as is usual in the japanese educational system , but at first I was not interested in English and not very good at English and I just started English as a part of studying for tests . 03 . NOVEMBER . 2009 DIARY Recently , I do not see the goal / reason for studying english . Why do I study English and yet my command of English is not improving ? After I get used to it , I want to use a Chinese conversation service using Skype . Firstly , it helps to organise and express thoughts in an appropriate way for clear understanding . You may want to disagree with this but it is said that caffeine makes you dehydrated and your blood flow less smoothly . So one time I really got hung up and I came back home I told my mother that I wo n't leave a mess again and that I will always clean up , and then my mother said `` I was going to tell you about leaving a mess , and scold you but you really realized it on your own , so I forgive you . . . later do n't do that . `` I wanna say hi to all : ) then it turns out that I really hate it . I know since it is a yearly activity ! ! All of his friends envy him , of course . So far I have been able to pass fairly difficult exams and achieve good results in various soccer competitions . Nevertheless I know that if I do n't put in a great deal of effort , I will not be able to reach such a bright future . Today a friend of mine recommended this website to me , She feels nervous about the test . I hope that I can find more friends with common hobbies . It was a wine from Barcelona because I remembered one of my friends from Catalonia recommended it to me one day . If you read this , I 'm sorry my diary is not an interesting one , but I would like to recommend you the bottle of wine which I mentioned above . I start studying English and finance ! Osaka is famous for Yakuza , Takoyaki and Okonomiyaki . So our campus is so beautiful and the facitities is complete . I think everything is perfect for us in China nowadays . We just drink beer and play computer games everyday even if we have classes or not . Yesterday , I started studying for IELTS . I want friends , whose mother tongue is English . I preferred chili to any hamburgers in Wendy 's , so I ordered it as my final order . I do n't like to write with a fude , because I 've never learned Shodo . I had learned Shodo after I grew up , but still bad . . I always wanna learn foreign languages and I can learn many languages here . It is difficult for me to retain German words and grammar . Other countries have other problems , which are purse snatching , murder and terrorism . When he calls , he says urgently that he needs some money because of a car accident . This fraud is dirty , because it takes advantage of someone 's kindness and family love . It has pictures of sandwiches . But , the sandwiches are not the kind we expect . There are many unique sandwiches which were designed using ham and cheese to make a shape of something . well , It 's my first time that talking with a foreigner by telephone . of course , It could be boring to her because she had to treat innumerable people like me . Chinese , South East Asians and Koreans were killed by Japanese soldiers . The results of my TOEFL were released on Wed . Luckily , the landlady was a very rich and honest person . Sometimes I dream that I could sow a sun in my heart , then , I would never suffer from the pessimists , such as fear , sadness , and anger - - Students in the class congratulated him on this great news . This is my ID , this is my passport ! `` and he said , `` Your passport does n't show your eyes and hair color . `` I was so surprised ! ! I really could not believe that she used to have a crush on my friend . Until now , I still could n't figure out the reason . Tomorrow , I have an international party at the UBC . I do n't have a clue about anything . All I can do is imagine my ideal future . I 'll do whatever I can to get my ideal future . I 'm currently studying International Studies at college located in Shizuoka prefecture in Japan . Really , my motivation toward my major is just decreasing day by day . Particularly , from January onwards , most Japanese college students will be job hunting like crazy . Regarding this topic , opinions are probably divided . First , as I mentioned above , job hunting at this time is too early for students to deal with , so this silly sequence ( ? ) must be inefficient for sure . When I was in college , my psychology teacher told me everyone would be prone to get mild depression under loneliness and pressure , which is a psychological sickness that is always ignored due to its ( mild ? ) level . However recently I found one of my friends also got depression with insomnia , loneliness , and fear . . I covered the story of a baseball tournament which was between teams of children from all the protectories in Japan . ( A protectory is a training school for boys and girls who have troubles Playing baseball is teaching them how to develop confidence , try things with friends , make an effort and succeed . One boy wrote a diary entry about how he hopes his mother in heaven watches him play . One boy who hit his mother wrote a letter that he would play well , as his mother 's birthday gift . Thank you for visiting my page . Especially the `` cabbage croquette `` . I have heard of an article about some foreigners living in Japan who always put perfume on them self when they lived in their country . I sometimes notice that someone smell 's , but I ca n't do anything so It does n't matter ! I came across a foreigner who smelled bad to me because he put on too much . I recovered from the flu after taking medicine . < < < < Tomorrow , I must take a speaking test ! ! While listening to music , we can eat American foods such as hamburger , spaghetti , steaks and so on . I would like to listen to music everywhere , everytime ! That 's why Hard rock restaurant is special for me ! ! This journal is published from the Ministry of Education , Culture , Sports , Science and Technology ( MEXT ) . I completely agree with her opinions . I learned about the history in preparation of the tour . I sang many English songs , like Britney , Avril , Taylor Swift , and so on . He seems to think the teacher is asking us about the seasonings . Another person answered that `` It is essential to clean up the knife before and after cooking , not smoking before cooking , to not put make up on your face and to not wear any perfume . `` ( Interesting ! ) Tomorrow , I will test another machine . I hope that the test will suggest a good performance . I also hope to go California in the USA someday . Nintendo shipped 400000 game consoles and almost all distributors sold out withintwo days . Of course , I live a happy life and am satisfied by it . According my knowledge , a travel is longer than a trip and needs more than one month . I thought they are famous thai foods . This is the first time I write in English because I was studying Spanish in Latin American countries , so that I wrote here in Spanish before . But now , I have been studying English since March and I need to write in this language to improve my writing skills . I suffered much stress when I was studying Spanish and I already know that to learn languages is so difficult for me ( Japanese and English are totally different also Spanish ) , but after learning Spanish I finally noticed the importance of the language , it is worldwide ! ! if I am able to speak these languages I am sure that I can travel around the world , I think . Tomorrow , I 'm going to graduate from school . After tomorrow , it 'll be a long time that ca n't see my friends . I felt it was very difficult for me . There are old people , young people , men and women . . . . The worse thing is that in my local library there are n't a lot of books so I can choose between hard ones and romances ( Maybe I will look for some books more closely . ) I went to Tokyo for a business trip . I went to Appi in Iwate for snowboarding . Of course I have been working weekdays . I have two daughters and a husband . The residents of California are afraid of the news that the big one will occur soon . I might be speechless . And basically , it 's difficult to answer with accurate grammar . And it takes time to answer , unfortunately . Well , I will do my best ! I 'm not sure how well I can do , though . Maybe people live in their native countries a long time . French is very difficult I learn French with my friends . My friends has French books but I do n't have one . My friends said `` You must buy a French book ! `` So I bought a French book . Please recommend a nice French book to me . Mariners starting pitcher Doug Fister . I like his pitching style . Especially , I am good at cooking sweets . I enjoy these programs a lot . I was bit afraid to watch that without written help . There is comedy and romance in this show . Some guy , who is old , I still could n't figure out his job , he brought the dude over to his house . I watch TV for many hours and pray for safety / the safety of the victims . Last evening , I helped an employee in the office do a job for a long time . I helped her separate a document . I have had a problem with my internet for a long time On Sunday this weekend , my French friend , and me we will play badminton . because , there is no wind all the time . I ate lunch but , nevertheless , I 'm hungry . My first diary ! There are many interesting shops , good restaurants , and the view at night is beautiful . ) Well , I 'll write next diary soon : ) What was special about this place ? Give reasons and details to support your answer . Kochang , my hometown , is known for beautiful mountains , eel and itshot springs . I 'd lived in a dormitory before ; it was so noisy so doing things like reading books or listening to music was very difficult . It is safe to leave my stuff on my desk in an apartment , and I can enjoy my personal life without bothering anyone . but I noticed that I do n't have enough vocabulary in my spoken english Which character do u like the best ? I have a lot of things to memorize in the history . They may have to spend so much time memorizing the events and years that they could easily get tired of them . I still need a lot of time to memorize lots of events and years . It seemed to be simple and easy to use . You succeeded at what ? ? ? Learning Chinese Because I 'm Japanese and we use same or similar characters The first part was `` An introduction of this novel `` the narator said . Surprisingly , as soon as the baby was born , he said , `` Grandpa `` . But it is different from yukata and kimono . I went to a Chinese restaurant with a friend who is Chinese . He is in Japan as a foreign student and so he is a young man . An interesting day It was difficult to commute them . The strongest wrestler , Asashorhu , Yokozuna , beat his friend up when he was drunk . It is said that the Yokozuna should be polite and has to be a good model . This violence by the Yokozuna is a first case in the Sumo 's hundreds of years of history . Last year I took a two - year leave from my work and went back to grad school . They can probably explain English grammar to us in English and Japanese . There were a lot of foreign students there . You should be important now . ( ? ) I think , I can speak better english if I dedicate more time to practice . the meeting room has been in a deadly silence since this morning . I was too busy to write daily . I will work at my university from February to March . Someone said that the first two hours of the morning are golden hours , and if we want to do intelligent work , we ought to do it during those hours . Today I uploaded a picture for my Lang - 8 profile page . I found this sentence in my English book and thought it did n't make any sense : I will live here until next month . The plants seems to be called Kalanchoe or Clonechoe . The vendor of the phone said it would be sold mid - December . We went to Kimita onsen after work with my husband . That was comfortable . Second , I soak in the bath lightly . It will be released as a film in 2010 . I 'm a doctor in Japan . I 'm interested in English , space and especially being an astronaut . Although , Chile is very far away from Japan , about half a circle of the earth , 50 years ago there was an enormous earthquake near Chile , too . They brought me to Mitsuwa in New Jersey . Cicadas are crying as hard as they can during the summer and at the end of the hottest time in a year , they will die out . Holidays ! Oh , eee ! Fortunately , I believe in it basically . I bought a jacket , a skirt , two t - shirts , a one - piece and a backpack ! If you have a opportunity , please read it ! I went to the internet cafe to sent a message to my language study friend . I could not sent it so I also read a website called Wikipedia . After I went to the internet cafe , she called me and said that she returned to Bangkok already . She said that she was going to the JJ market and asked me to go there too . However I plan to wash my hair at the hair salon and read a book at the bookstore instead . TOEIC is a popular test for all people studying English , I think . So I may have to reconsider my plan to study English . . . I need to go to the citizens ' advice bureau because I need to get the address on my passport changed . So I 've always wanted to learn how to dance . Tomorrow , I 'll write my diary in French . . ! For it is more important for me to learn how to learn and become well rounded . For example , it is very important to learn how to deal with interpersonal relationships . When the one week cancelation was over , I went back to the regular life in college . I caught four shoplifters in two months . I saw through their eyes , they looked sad and apathetic , so I decided to ask , why It is a popular Koreanalcoholic drink . The box was from Fraisier in the neighboring city . It makes blood pressure going down . How beautiful to have your love . We did n't met since Thrusday ! We do n't have our own flat and we do n't have enough money to buy it . Recently I did n't sleep , so I took the medicine . According to the papers , some psychiatric drugs cause a bad dream when people stop taking it . ( some cause when they 're using it ) Google Analytics is the web service for analyzing visitors of Homepages or blogs . This is the visitor 's char of my blog in Japan . I ca n't understand why the number of visitors from Tokyo is larger than that of other cities . I have many essay assignments . The more I keep doing soccer , the better my body condition becomes . There is a chance that I can enter for free and study French and English . But now I think it ` s good that I ` ll study French . One American food that I remember from when I visited Chicago is the Stuffed Pizza ! You could be patient for 3 or 4 years , until beeing successful with your business or not . Now I very regretful that I did n't do it . Thank you all for visiting today 's journal entry . Now I belong to the department of Dentistry and I 'll have to take national exam . . . I know but the first impression tend to have a significant impact . I had coffee , toast and a salad with balsamic vinegar . My best friend is a tattoo artist . Please someone give me a bento . Unbelievable ! However , the strange thing is that I 've gradually become so strong drinking alcohol . It is my first time to live in a foreign country so everything is new to me : ) It 's a very serious problem because I ca n't even catch the content of the assignments . Yesterday , I missed submitting my assignment because of my poor listening skills . Sometimes they are foam balls or styrofoam . And when there is n't enough money simply crinkled newspaper sheets . This book is published by KBS ( Korea Broadcast Service ? It is broadcast on the radio every morning at 6 A . And today is the 4002nd episode . A majority of Japanese people think that if the Fukushima disaster had n't happened , Japan could recover much faster . On top of that , local governments relatively far from Fukushima prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . I found a video on youtube that taught you how to solve a rubik 's cube . That reminded me that my father bought me a rubik 's cube when I was a kid , but I do n't know how to solve it . That video motivated me to try and play with it again . I looked for my rubik 's cube all around my room , but I could n't find it so I decided to buy a new one . You may mix them together with discretion . Eventually , dip them in your sauce ~ ! ! I went to bed hoping that the typoon was very strong and that it would bring a lot of rain in the area . Of course , he was dead . I bought a new cellphone . I bought a new cellphone today . For example , he cites video games as a major reason why children nowadays are suffering from obesity . To my disappointment s , there was no net and no TV . so I could n't go outside all the day . I want to leave here immediately . I miss my computer , my dog , books , CD , etc . . . I went to have my driver 's license renewed this morning . This fair starts on the 16th and it ends on the 25th I think , so I think I will go at the beginning . In Japan , the weather is very bad and muggy these days . . . You can eat a lot of oysters in 90 minutes . Now I do n't play , but enjoy listening to the modern jazz music . The institution issued a report in which they compared 22 country 's economic potential and their efforts in supporting OR to support other counties . How do we support them so that they may survive and improve themselves ? Some researchers and socialists say that only giving money would not be the right way to help . But if you ate it once you would change your mind . And I think whether the food is strange or not is not so important . Today I 'll explain why I 'm studying English . When I was at work , the sound of an explosion surprised me . I would especially like to go to Waseda , which is one of the most important places for me . I also remembered the day when I finished the speech , my hand still shook a little , haha , but now I got it . My English is not good , so I want to get to know English - Speaking people . Thank you for reading . They enjoy searching for their mates . A while ago I planned to take the Japanese Level proficiency test in December , but after I got the forms I had to fill out , I chickened out with excuses like `` I 'll never be able to learn the Kanji I need in six months `` , or `` school is going to get in the way `` and things like that . [ 1 ] I 'm sure sometime I 'll take the test , but at the moment I barely have the time to study Japanese regularly . It 's quite difficult between work and school , especially since exam time is starting again . ( They are not exactly exams , more like very important tests , but I do n't know the English word for it ) . [ 2 ] Some kimonos are really expensive but most of them are very beautiful . Unstable weather That is why UNIQLO loved by many young people . Today , I read a research paper , saying UNIQLO is most popular brand among the younger generation especially those who love the simple life . Please check my poor English . So now I 'm thinking about tomorrow 's conversation topics . However , I do n't think that death is the best way to punish those who commit a high crime . There are too many reasonsto make me agree or disagree with the death penalty . because the end of the story is always sad . I 'll working Japanese company as a operator . I am planning to take a trip to Thailand next February . And next I will try to find very very cheap flight . I 'm forwarding to visiting Thailand . It is very warm and the cherries are very beautiful . So , please check my diary . ooh . . . . I 'm a Japanese high school student . One of my dreams has come true , and of course I continue to pursue my other dream ! ! ! I study hard recently to get driver 's license . it is extreamely boring . and I have to go to bed cuz tomorrow 's lesson will start early in the morning . I bought 4 packs of Sushi and delicious beer . The purpose is not only sightseeing , but also opening up a bank account . Fortunately I ' was in time for work but paid a lot of money to repair the tyre . However , I can not study because I do n't know why I like the kids very much . Maybe it 's because they has a pure heart ? But in my life , I do n't have children friends . Now I 'm translating `` Just a feeling `` by maroon5 . My neighborhood is like a ghost . Mallard passed away because her husband returned home . If we analyze the situation , we will find that she feels happy due to the death of her husband not because she dislikes him , but because she is oppressed by being married / by marriage in general . On getting married , an American woman in the 19th century would lose her freedom , her sense of independence and most importantly , her identity . Therefore , a wife would be happy after the death of her husband since it meant the death / end of the oppression of being married / of marriage . This is to say a scar of glory . My kindle is Wi - Fi - only , so connection was essential to get books online . Does it require additional cost ? However , taking a course for four hours ( two courses a day and three days a week ) drives me crazy . . . This is so comfortable clothing for summer season . This is Wafuku , but so cheap one and most of all Japanese girls have it . I like a very warm place and I tried to adjust the temperature of the apartment but that did n't work . I am SO GLAD that I came home . I do n't want to go out for a long time until the weather gets warm . When I got off the train at the station , I fell into the gap between My name in Japanese means Cherry Blossom . At the moment I ca n't use Spanish at all , and I do n't know even know the Spanish alphabet . I ate a big dinner on Wednesday to recover my h ( a ) emoglobin . If you ca n't get a satisfactory score , it means you ca n't go to the best I can write about my mood or interesting things in a foreign language everyday . In classrooms , professors sometimes say bless you while giving lectures . DoyoBoshi ( read recent journal ) is n't done yet because Japan especially our county have been cloudy or rainy day for those days . The shop was on a narrow road off the main street . People who are really rich are rich because they are rich in spirit , not only rich in money . I used to study hard as well as I played hard , and I 'd like to pamper myself occasionally . Do n't be so tense , get winded ! A nice mood can help you to work more efficiently when you return to your work . Then my partner in the game made a grim face ^ ^ There were few friends who lived with their grandparents . The main businesses of Ufa - are oil refining and manufacturing . Oil is refined to gasoline , kerosine , diesel fuel and so on . Manufacturing is of aviation engines and miscellaneous parts and fittings for airplanes . I worked in an insurance company . I am a system administrator in the Ufa office of a Russian insurance company . But I am sometimes nervous , I can not speak English well ! Today , one of my host father 's friend took me to see many interesting places inhis car . There were no words to express my gratitude . First was vocabulary , Next was grammer . It ` s my laziness , and it ` s really difficult for me to write something here , even little posts take a lot of time . Please give me your advice I was very suprised to hear that . I am now producing a Rice T - shirt . It 's raining . Weather report says `` there will be snow . `` Because my mother bought that for me for the first time to describe that we are very tired ; how to say it in English ? ) I must go to work . I want to become better in English , even if just a little . I am going to give a presentation on this Thursday about my research project . Recently , my favorite team is not good . I am biqi and I want to study both english and arabic . I sudied english in college . ( a very little bit ) ( Thank you , Jason ! ) Let me practice using the idiom `` open oneself up `` here . He looked at the beautiful mirror room in the middle of this lay a dead dog . It is the cheapest one and cost about 100 dollars . * cost = past tense But now I realize that GPS systems are very useful and even the cheapest one is very reliable . But very delicious Sushi are very expensive . In my hometown there is Kinkakuji temple which is a building that is covered in gold . Then we went to a recently opened shop called Bapple . Every time I eat sweets like mousse pudding or cookies , my friend would tease me : `` if you keep eating these things , eventually no man will marry you ! `` As a matter of fact , I could hardly listen to what they were saying , because they spoke so fast . He articulated consonants very clearly . I called the ETS lost and found office and left a message according to the directions . So far , I have n't gotten a call from them , but hoperfuly they will inform me . At 5pm , we met at the classroom and walked to the pub . Some of them , such as the Swiss guy who organized the party for us , the Chinese girl and the South Korean girl would leave Edmonton soon , so we took so many pictures . The South Korean guy turned 25 , so we definitely cerebrated him . baseball , tag , or hide - and - seek with their friends . please check the following sentence . ( grammar and logical ) They also have many competitors . Unfortunately , I could n't join BNO ( boys night out ) tonight because of my job . I ca n't stop reading , so , recently I am staying up late . At the beginning of Aug , I went to Europe and Dubai by myself for 2 weeks to see my friends . The tornado will pass . It 's a really nice place but there 's sometimes a bit of trouble . When I was a university student , I heard a terrible story . The father felt like he was going crazy and was terrified of the boy . `` It is a good daily practice for me so that I study English hard at the moment `` Watch your spelling ! `` The newspaper I read is called ' The Japan Times . ' `` I want to sing English songs with perfect pronunciation . It drives me nuts sometimes . Oh , I did n't know that I wrote so much . This is another problem ; once I start writing about my true feelings , I ca n't stop . . I had a lot of time , but I did n't do anything . Today , I took a diagnostic TOEFL test in order to begin the process of preparing for this exam . My score was only 496 points ( on a scale of 310 to 677 ) This reminded me of how difficult the English Certifications Exams are . Even the pleasure boats on the Tosabori river were covered with jolly lights . I happened to see the lighting ceremony , and I saw a governor of Osaka . There are many gift shops selling things which are cute , fascinating and nicely decorated . Their smile really makes me happy and relieves me in turn . I start to plan at least one month before the day of the event . Every time I make gifts , I always enjoy the event itself through such a process . But after our stupid president made the decision , our government said that speaking English is the key to becoming a global country and they are going to enforce English education on the people . This will help our kids to understand other people and other countries . Obama 's transportation plan If possible , you should use ( the ) ice sold at the liquor shops . There was a sudden braking with vibrations and rattling noises . Finally I 've finished my exams ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I do n't have a job , so I can enjoy my spare time , which I spend doing funny things . . In fact , I have been there like ten times before , specifically to my grandpa 's flat two blocks from the beach . I feel it 's my place in the world . dinner was delicious . the next day at the wedding I went sightseeing . I went shopping and had delicious food like takoyaki . Have you ever been depressed ? `` Have you ever been depressed ? `` , I was asked this question today by one of my associates . I could not understand what he said . I mean , when I use English , I ca n't tell my feelings completely because I have poor vocabulary . My parents were worried and I decided to study Korean and a little of English , too . Studying korean is very funny , but I do n't know about grammar . I 'm learning the korean alphabet , named hangul , It 's very interesing . Now , I will have dinner . Good night everyone ! The Great Gatsby In the spinning room , you ride the bike fixed to the ground , and under the guidance of the coach , you can ride to the rhythm of the passionate music . First , I thought it did n't matter to sit any place , but actually I was wrong . I work a parttime job hard three times a week and I 'm given enough Ely Cathedral There are two types : one is the iPhone , the other is Android . Maybe you would think of the Olympic games , the New York Yankees , the Chicago Bulls , etc . They did n't turn on the heat yet , because the weather is n't cold enough to do that . Finally , thank you Brendan because you encouraged me . After that , I hope I can further my studies and become a linguistician . You can not drive from 10 p . m . to 6 a . m . the day after , on Wednesday , Saturday , Sunday and the day before and the ten legislative holidays . Of course , it is not meaning that is to go forward without any care . K - BOX has a free car service , we took the car when we went there and return back to school . Then , people who shake the two dices , the number added in total if it 's 7 , then you can add a certain amount of beer to the glass if the glass is not full yet . So everyone celebrated my birthday and gave me presents . Last year the government settled a new traffic rule to wear a helmet when you drive a motorbike . But I 'm scared even on a taxi , because the driver accelerates for a red light . the life is very hard and simple I think . . . . I MUST ACHIVE MY DREAM . All of them use English or Chinese or half and half . I am not sure , so I want to hear your suggestions . Second , I have sent all the agents ' ( have the VIP states ( ? ) ) full names to you , please check them . After that , could you get back to me ASAP ? Your website saysat least two letters of recommendation are required , and they should be written by the applicant 's teacher or employer . After graduation , I have been working as the chief of a non - profit - organization ( NPO ) for more than 2 years . Would it be acceptable to ask a business partner or CEO working at another company to write a recommendation letter ? And I want to drink bowls of gruel and eat steamed burn , which are not easily found at night . George Lucas is a filmmaker . I think it 's very difficult for me to keep a diary in English . Having access to TV more encourages people and especially children to watch TV more . So there is less time for hobbies or family . It is bad for children 's eyesights when they watch TV too much . It 's hard for me because I was flunked as a student . To become a skillful computer user . I 've heard that Japanese tend to follow the majority and reject others . They always accuse me of being too stubborn and tell me that that 's why do n't I accept other idea . In spite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summarizing his story , even though he still had 10 minutes left for finishing his lecture . I saw the professor get upset about that , so I raised my hand and said to him `` the professor seems to want to finish his lecture first , so could you talk later ? ? `` and I stopped . Afterward , some of my friends came over to my place and started criticizing me about it . They asked me why I did that to a vice - president , that was it too impolite and so on . I thought it did n't matter whether he was a vice - president or not , he should n't have interrupted our class . However , I also think it might be not about Japanese culture , just about me . Watching the movies `` Terminator , `` with actor Christian Bale , reminds me of a creepy movie called `` Machinist `` and my experience above . Tomorrow is Thursday ! ! And I bought some books on philosophy , problem solving , English study , etc . A Japanese friend has told me something about this website and I wonder how can I survive without her . . . When people who live in Tokyo go somewhere , to It 's really different from those stereotypical interviews which take place in formal meeting rooms where you become nervous and uncomfortable . I usually try to take a nap , study English . `` How many times a day should I call you ? Today , I found a very interesting website , Lang - 8 , from my colleague , Michael . Too ( so ) difficult . . . This whole school has a very different atmosphere . I mean , these are just my personal experiences . I am going to study English now . I think I can write simple English , but not complex or sophisticated English . Hi everyone . A few years ago , I studied English with some text books instead Of course , I still use text books to study English as well as the question sentences 1 ) Do you often play basketball ? I could n't remember words and vocablary . Dallas Marvericks vs Miami Heat . Fortunately , I am working for a teaching design degree . Monkey D Luffy is the main character in the story . By the way if you are interested in Japanese , I may be able to help you study Japanese . Because , he ca n't understand why I ca n't understand English . But I do n't understand quantum physics . Today is the 16th of April , but it 's very cold , so I 'm wearing a winter jacket . I enjoy playing the piano and breathing the fresh air after it 's rained in the jungle . A Nurse of Indonesia . If I could polish myself . . . . In Asahi News paper today , Some of them were returning to their country disheartened . I do n't like examinations even though I know we sometimes need it . I think everybody is born with thier own ability , and potential / posibilities . They really wanted to get nurse licenses and wanted to know good Japanese for it . But we have a lot of work for our patients . essentially , when we introduced people who came from another country , we helped them with getting situated living here . They said it is too difficult doing both work and studying a second language . So far , I have not thought so because So , I brushed my teeth quickly and got ready . I checked whether some information had come to my email box . I went to a Korean restaurant today . I love Korean food . I am looking for a new cap but I was n't able to find a cap that I wanted to get . I looked on the internet and I finally found one , so I ordered it right away . The University Entrance Examination grade will come out after 2 hours . . English is slowly driving me mad . I can be happy since all of the people present at the wedding reception are ( also ) happy . Please , tell your strategy to overcome sleep ! Second , I move to eliminate my sleepiness . And of course , I enjoy reading it too . For example , the death of parents , attack from demons , or war , etc . But being in the ocean was so beautiful and it seemed that the visibility was very good . She said to me I am not interested in marriage . I was thinking I have to curl my tongue to make the `` R `` sound until I was taught by him . Today , I went to a Jewish temple to attend a service with a few classmates . A lady told me that this temple is very flexible and that if you want to experience a traditional Jewish service , you should go to some other temple . That 's why I will go to some other Jewish temple and then compare my experiences . I think , that medicine is my vocation . My 95 - year - old - mother - in - law is in a nursing care center . My 67 - year - old husband was invited to play the guitar and singing songs at another nursing care center as a volunteer . In fact I felt blue for a few days , so I could n't write my diary on Lang - 8 . But I should be a little bit more serious about my messages . I 'm looking forward to it : ) So , I began cooking for myself in the mornings . Sometimes I felt sleepy and wanted to give up , but I tell myself to resist . As a wizzard , I can research the expansive and unlimited world of magic , adventure with friends , study knowledge , seek for treasure . . . and can be in the high class of society . If it is Japanese you need 3000 hours to master it . So it will be difficult for you to master Japanese . Maybe they want to become some kind of cute or different from them . Also it is difficult : ) I came to London yesterday to study abroad . So I do my best to study English , and I made it a rule to keep a diary in English . This term I shall keep a diary . The school 's nearest station is a farm road . Calgary is cleaner than my hometown . I went to the cemetery with my wife on the 13th where our ancestor 's grave is , and offered flowers and incense sticks . Tomorrow I have to go to university and barber shop , study English , and prepare that will be 9 . 33 pence , please . Japanese government gave her some gifts as our gratitude because she donated a lot for Japanese people after the big earthquake happened . These days , I try to listen to English . I think I will become a English speaker if I have a native friend . I was curious about sex and when I had enough of watching it , it did n't impress me anymore . But they thought I was refusing to mix with them because I felt superior . The best place I can think of is Algeria in Africa . The work is supposed to be broadcast through NHK Tv program `` degi navi teens `` The work seems simple and childish for me , but her skill is wonderful . It is said that singing English songs could help to improve our oral English : is that true ? If so , could you share some of your favorite I was very surprised at the amazing number of people . Going abraod remind me of my former life in America . I read a lot of articles about Michael . It looked like a mountain for me . I 've seen the posters where a young boy is everywhere many times . Though I was apathetic about golf , It was a little humorous for others , but we did n't feel it was hilarious . Especially to native speakers or anyone who can speak English fluently , or interested in studying English . So I am willing to take part in correcting Korean as far as I can . ( or if you have something that you want to know about expression , culture , or whatever about Korea , let me know . I should correct this , but I think it will be a little hard for me to correct the habit . Today , I experienced a blackout because of the effect of a massive earthquake and the Fukushima daiichi nuclear plant accident . It is cool to see famous people unexpectedly . This afternoon one of my bosses told me that they stopped sending volunteers to Miyagi Prefecture ( the place that the big earthquake hit directly ) . I was planning to make a big decision and told many people around me that I was going to go there to help people in need . By the way , how do you describe in English the feeling that you feel when compelled to do something for others ? He is fantastic . My Fantasy Land ( Please correct my homework , please ^ ^ ) It 's bordered by Moonland to the north and to the south , east , and west by an enormous ocean . Another good place in Guiland is Fantas , there is a museum there that simulates what the future would be like in the next 100 years . There are also many shopping centers to enjoy . I have a question about The Wizard of Oz . I am a pharmacy student who is not good at learning chemistry . I was unaware that my major has a great relationship with chemistry . Anyway , I am more fond of physics rather than chemistry . I have had a headache since yesterday . When I am sick , I feel lonely because I live alone . My mother language is Chinese , I hope I can help someone here . Our holidays were going great ! Since I saw Nakanishi - san 's blog which introduced this service Lang - 8 , I finally registered and started to use it . He was transferred to an American office for a period of one to two years . But I 'm not an infant , so I have to study more and more ! I have an experiment in chemistry at the university on Thursday and Friday . This is my big source of distress . She was on that southern Asian island as an exchange student . I 'm interested in natural sciences like astronomy , physics , and earth science . Please make corrections and comments about my sentences ! As a result , he declared that he felt really sorry to his fans and he decided to retire from the entertainment business . I met many foreigners there , and I had an interest in supporting developing countries . . And I want to establish a fair trade company that can help not only people from developing countries , but also Japanese people . Fenders are my favorite kind of guitar . Last night one of my good friends from Lang - 8 helped me fix my computer . He installed Japanese and Chinese language support on my computer by using TeamViewer . I am really happy that I can read my friends ' names on my page on Lang - 8 . How wonderful he is . Wikipedia said / says that she has Danish origins , we certainly do n't see that in this picture ( but how sure can we be when we know how much the makeup and the lighting affect the colours of the photo ? ) . I can make pudding with milk and eggs . I became his assistant [ space ] ( he called us [ space ] `` Angle `` ) . [ space ] We helped him create his works . He was gentle man . I ca n't remember exactly when it all began . I think it probably was a good friend of mine who first told me about the possibility of going to Great Britain and studying there . Here in my home town , they only offer a few courses , but the courses available in Great Britain are astonishing : : philology , philosophy , the arts , psychology , etc I have been interested in art as long as I can remember but , being honest , I dont have enough talent to be an artist . And , truly , I ca n't believe this is really happening to me . The idea of moving to Great Britain and to study there , in the beginning , was only a crazy possibility and now it 's almost coming true . Unfortunately I have n't got weekends to slow down a little , sit down and relax . When writing a diary in English I am always wondering if my sentences are right or wrong . ' ' Speed reading . ' ' If I master this technique I can read a book in just 10 min . Rynn made some great steaks and prepared fruits and snacks . . only , even though it was not right and she would n't stop . strong and uncontrollable . . . video camera . I study English little by little . The optician gave me a pair of contact lenses . Studying English is very interesting . I celebrated Girl 's Day for my daughter yesterday . I bought a curtain for my room because the wind is so cold that Lang - 8 will be very useful for what I want to do . If I 've done everything correctly you will see a photo of my cats . My cats lived on the street before I met them . they were really dirty , sick and hungry . Most of the time I have to watch the show with the closed captioning on , because somethimes I dont understand what a particular character , Carl , says . He ( Carl ) is the only recurrent human character in the show and he has a really unique and rough accent . I dont think I will learn somenthing really useful watching this show but a least I learn some more street wise language than in text books . I have to improve my English , especially writing , so I 'll start from today . In addition , before going to bed , he put a cup of milk and a few cookies for Santa beside his bed . Hurray ! ! ! `` He was in seventh heaven . thank you for watching this page ! I could n't bear it ! It will give you nominal relief . I always hear people talking about stuff like some place in china had a landslide or a sudden drought in the northern part . It is the taste of fall in Japan . There is a ferry terminal near the station and we can go to Georgetown by ferry . I think I gave the wrong impression when I was chatting with you on the day before yesterday . Maybe it was first time I communicated with an foreigner . When I want to say something I need to search the related words in my mind however I ca n't express my idea properly . My voice and intonation may sound abnormal and I do n't know whether my speech sounds a little impolite or something bad . If I did , please forgive me as it was not my intention . We have a electric time schedule board ( I do n't know what it call ) that they show what time next train comes exactly . If the train comes late even one or two minutes , they will announce `` I 'm so sorry , the next train will arrive 2 minutes late , please wait patiently . `` . . . S . , I realized a lot of things about Japan , good things and bad things , and accept that everything flexible . seaweed , boiled and put mashed sweet beans . . . Fortunately , The Tokyo area where I live is far from the seismic center , so I am safe . We helped him to make this food , but when people arrived , we had n't made enough food for everybody . So we found ( served ) other alternatives like cakes , fruits and chips ( fries ) . I heard that we can save electricity by unplugging electronics that are not in use . Another major source of energy use is driving . Oh , sorry I have drifted off topic Most divorcees were suffering from their financial problems , because they have to support themselves . Once , a young guy rode his new Harley motorcycle freely on the highway . Then an old lady rode another Harley motorcycle overtook him and loudly asked him : `` Are you familiar with the motorcycle , boy ? `` At last he found a Harley motorcycle lying in the road and the old lay hanging in a tree . My husband went out to learn Chinese . In the future , I will work as a specialist of coffee and lecture a lot of people on how to drip delicious coffee . I want to do that work since I entered the company . I want to serve ( ? ) delicious coffee to many persons . `` Houichi - san `` cried the assistant , but Houichi was engrossed in his clothes off and wrote Buddhist prayers all over his body . `` Here is his biwa , but no answer . Today you can see a strange thing along the coast . I want to know how to express my true attitude to a native speaker . Okay , thank you . Afterwards , she went to the hotel , which is run by Yuina 's grandmother . Afterwards , Toru returned . Today is raining / a rainy day . I Talked to a Dutchman and a Dutchwoman on the Train . She is a veterinarian . Her husband majored in economics when he was a college student . He said that she thinks that economics is just figures . Their children study cultural history . I can speak Japanese a little bit . Especially the ' R ' sound . I 'm not allowed to use the PC in order to write the report . Actually , I think it has something to do with laziness . > `` < | | Actually , I 'm originally from Osaka which is in the central part of Japan . After graduating from university , I started my career as a teacher in Kagoshima which is in the southern part of Japan and now live in Hokkaido which is in the northernmost part of Japan . For example , to express `` very `` , people in Osaka say `` gottsui `` or `` mettcha `` , people in Kagoshima say `` wasse `` , and people in Hokkaido say `` namara `` . `` As pleasant as the scenery was , I would n't recommend going to that resort . `` I 'm studying alliteration these days , but there is no one who helps me here . Ocean names need the like the Pacific , the Atlantic , the Arctic , and so on . I watched the movie `` TRON `` last Sunday . I have n't watched the previous movie , so I could n't understand it sometimes . They have yet to develop into adults . Last weekend I was going to get her family Christmas cards for the Christmas but I could n't find the cards that I prefer type of design . Last month I asked my friend who would come to Canada on December 1st . I got sunburnt the day before yesterday , soI got some aloes for treatment . Christmas is a big deal for me . First of all , I went to Britain in February , and I stayed for a month . Today is surprisingly warm , 59 F ! It has been freezing since last November . all my friends were surprised to find me wearing only one coat . In the last 2 months , I have studied Japanese everyday . this summer vacation , I always wake up before lunch or later : D The Tohoku earthquake occurred on March 11th , 2011 . I think the people 's view of life in Japan has become divided When I was changing channels on TV . After I watched it about five minutes , I found out it was a horror movie . Although it was horror movie and I wanted to sleep , I still finished the whole movie . When I went to bed , pictures of blood and guts filled my mind ! I should n't watch horror movies at night . . . . . . . . But in the morning it is very comfortable ! If I improve my English speaking and listening , I can go to abroad on a business trip . Usually I concentrate on remembering difficult vocabulary . With the rapid development of human industries , many problems appear as a consequences of pursuing excessive profit and being blind to the pollution . Despite the fact that everyone understands this cruel fact , people seldom take the responsibility to change this situation . The next thing to discuss is deforestation . People cut down trees for farms or buildings ignoring the damages to animal habitation as well as the incredible impact to local weather system . First of all , we should be aware that we would never be able to separate from these problems . It 's my frist diary . I have n't written my diary a for long time . Some things stopped me from writing . But unexpectedly , there were huge crowds of people there . It reportedly said that noise from a quarreling couple disturbed their neighbors below , who then called the police fearing something tragic would occur . I recommend it to all tired people . Its ingredients were rice , vegetable , fish , seaweed , beans etc . . For example , the menu had `` pudding of Green peace `` , `` mash pumpkin salad `` , `` vegetable tempura with greentea salt `` While we rode our bikes in Mexico , we were always attacked by a lot of dogs . Canda 's Wonderland Today we can choose different ways to exchange information depending on different situations . But I was refreshed / relieved ( ? ) . So , there are a few people in the center of our city , because people who live in our city often go to the big shopping center that is located outside of the city . Dolittle ( author : Hugh John Lofting ) I am going to go to the optical shop , and then go to a birthday party for Xiao wei . I have not chatted with Rose _ garden for a long time ; I am thinking of her . . . hie hei . . . . a little bit about her . . . Also some of my friends taught me how to say good evening in French . . The most famous and popular picture in the world is the `` Mona Lisa `` by Leonardo da Vinci . Have you noticed that she wears no jewelry and has no eyebrows ? Do you like the Mona Lisa ? What will the score be in today 's match between Real and Barcelona ? But I tried to behave like , `` No problem , go ahead and talk . `` I 've got surprising news from my friend who I 've known for over four years . It just made me kinda sad since we 've been nice friends actually . It 's going to be a surprise party ^ - ^ We are also going to get some presents too which we hope will remind her of Nagoya ! ! It has been running in my mind all the time recently . I must say : Chinese food is so good , especially in Taiwan . But I could n't explain well because I did n't understand the other member 's research I 'm so nervous XD However , since my wife belonged to brass band in her school days , At first , I didn ' tknow her name , The earthquake heavily damaged the transportation system , such as roads and railways . Yesterday , the last day , I went to the Hockey Hall of Fame . I took many pictures with the Stanley Cup there . I ate dinner at a Chinese restaurant . In order to relax , I decided to do some outdoor sports . Everyone should change themselves to adapt to the environment , especially young men . Here , can I say `` after that `` instead of `` afterward `` without changing Although Science and Politics have been developed surprisingly and our lives have been changed to be made more convenient , we are not satisfied with now . Actually , I do n't feel like the real new year has come . hmmm . He suffered from pneumonia and stayed in the hospital for a month 2 years ago . Fortunately she only had to take care of him for a short time . We are fine as usual . Hello ! ! On the net you can choose from an enormous selection , includingthe paper that you want to read , the field that you want to study , etc , and most importantly : it is you who is choosing , and not who is being chosen as you are with the tv . American drama is very popular in Japan recently . It was soooo exciting and was n't as dangerous as I expected , I could n't be too careful though . but we Japanese typically like American or European fast fashion brands , like Gap , ZARA , H & M , and Forever 21 . A few days ago I got the license for large motorcycles . It was a pretty good time . When I surfed the net , one of my favourite blogs The movie describes just an ordinary family , including parents and one daughter going to a high school . There is almost nothing exciting about it , but one little incident in that family gradually reveals its problems and strangeness , which , to some degree , every human being has , and we sometimes ponder about them . make many friends and travel to many countries . I suggest drinking coffee without sugar . I like watching movies with my friends . I mean , in my opinion , they will be happy getting some snacks or magazines which we can get only in Japan . I knew he has strong intentions . Though he likes liquor , he will not drink one drop now . But , I guarantee to improve your Japanese skills as correctly and efficiently as possible . The story is in 6 episodes , about Skywalker defeating the Sith . The latter story `` Back to the Future `` are interesting science fiction movies . Every time I see them , I have provoking thoughts on / about the future and the past . Sometimes I watch movies English . Recently , I could understand easily English movies . Volley the ball like hammering nails . Now I live in Wakayama city , around 50 miles south of Osaka . Wakayama is an old town and has a beautiful castle founded at the feudal age . To sum up , VCS is a really useful tool to backup the computer 's file automatically and smartly . Waiting for a paticular letter is hard . I did not know the answers at all . In fact , I really want to improve my English . The title is `` ON Long distance education . `` Oh , really difficult , right ? I want to something for people , especially poor people , animals , & lonely young persons . How should I live ? But I like the air and the conversations while drinking . Suddenly , the rain started falling when I was working in my office . I enjoy this way . I wish she paid more attention to me . And this year the Mid - autumn festival is held during the National holiday . The day before , it has lasted until two in the morning so , yesterday my husband wrote a letter and put it on his door . After graduating from graduate school , B found a job at once , but A did not . Suddenly , it occurred to me that sometimes losing is winning . There seems to be an agreement where the government asks companies to donate money in exchange for the privilege to promote the company in the park by doing things like like printing the company 's name in postcards . However , the government should not forget that there are some risks involved . Some companies may abuse their privilege by constructing buildings . I thought that if I wrote Japanese first here , then it would be translated from Japanese into English . I went to a Chinese restrant with my Chinese friend . We enjoyed Chinese food . It was good but a little bit salty . There is one saying that goes `` it is the early bird who catches the worm `` . Most of Chinese people have been studying english for very long time , as for me , I began studying English in junior high school when I was 14 years old , but even now , I still ca n't communicate with foreigners very freely , the lack of vocabulary is a big problem when I want to talk about some complex issue . My listening ability is not good enough , especially when I attend a meeting , because I ca n't interrupt speaker very frequently like in face to face communication . The landlord is a Singaporean man . But neighbours had sex almost every day . Sorry , but what have I written about ? ? If you have n't watched it , I can recommend it to you . recently I ca n't drink a Litre of water from 9am to 6pm . The reason is clear , I am busy at my job . In the beginning , my back was getting chilly ( felt cold ) , My voice turned husky ( deep ) , I had an umbrella , but I left it at a bookstore . When I went back , the same umbrellas were in the umbrella - box . I thought I grabed my umbrella , but it was not mine . After I finish taking English lessons I alway feel thirsty and exhausted . I think English is the language to express something and Japanese is yogurt against Hay fever and Pollen dust It said that for people who suffer from hay fever will get better by eating yogurt or drinking yogurt drink everyday . I told my friend but he said his stomach is also weak for milk , yogurt and yogurt drink . . . . . . It was really good choice ! ! Some of them are good people and some of them are bad people , but we can relate ourselves to their characters while we saw a play . Before last scene come , Jean Valjean ( main cast ) make a confession to his daughter - in - law 's fiance about his old sin , then he disappeared from his daughter 's sight . I want to go to the theater in the near future . Universal Tokyo is near my brother 's house . Of course I 'm not . Seijin no hi ( Coming - of - Age day ) but same as usual . Hair texture is very different depending on the customer 's race . Because I work hard too . Besides , I really need a scholarship , so I promised that I would get straight A 's for all classes from the start of this semester . I love my language , foreigners say that it is weird and that it is difficult to study , they are just afraid of difficulties . ) ) ) ) I am proud to be Russian and to speak Russian , but it has a downside : I ca n't get rid of my accent , because we have a strong and tough pronunciation . 1st of September is the worst day , ( that day ) my studies will begin . . . My understanding is that it is a very strong beam of light . . . ? ( Is this correct ? ) Children 's smiles are very good . thank you . I 'm glad to get along with my lovely classmates everyday . I believe there must be some strange power in her articles , for so many people get together and remember her . Therefore , I believe I can enjoy more when I take a trip with friends , so I 'd like to choose travel with a company if I could choose . Then Italians began to grow them for food . North America Do you believe in a spectral existence ? In the morning , a new lab mate came to our lab . Today , I had a conference . Increasing the treasures of wealthy countries make them richer than before . Take China for example . When scientists developed new techniques to plant crops , China could stop inporting crops from other countries . admittedly , it is not enough to provide financial aid to poor countries . Today , I bought some books : books about Vietnam , Obama 's speech , and Shakespeare . I 'm interested in Vietnam a lot because of The VietnamWar , and I 'd like you Americans to tell me how you think of Vietnam . I came here to learn english . I study an English conversation everyday . It 's very hard for me . For two days now , my wife and I have been walking to the park early in the morning The curriculum of the course is so tight that students can not have the time to do anything but study . On the way to my university , I often listen to my iPod , on which a lot of lectures are recorded . While she was in the hospital , she slept very well and ate balanced meals , and that 's why she recovered completely . So their diligence about English is intense . Their conventional phrases are that `` you need to practice more `` ( Even I know such a thing ) , `` Your English is not good enough to have conversations with native speakers `` ( You have a meddlesome attitude , ( I already know that , please go to hell . ) The reason why they do so is because they have high pride about English . And Japanese people like to boast their special skills like English , programing and certifications . I could see a beautiful scenery . She thinks cram school can not provide the knowledge she needs , but she still needs a teacher to correct her writing . The only thing I can do for her is practice speaking with her as much as I can / as much as possible , but I do not have enough confidence / the confidence to correct her writing ! In my opinion , when people speak / are speaking , they might ignore the grammar problem , while in writing they can not . Even I had prepared for the IELTS one year , yet I still can not easily express things no matter if I am speaking or writing in English . What should I answer ? Everyone asked me `` How long have you been here ? `` Should I answer `` I 've been here for two months `` ? Is it right ? On that day , Angel Gabriel was sent by God to the Virgin Mary , who ' presented himself as a human . Virgin Mary said she is not married . She she hoped she died before that . . I 'm relieved . ( I want them to learn how to use money , so it 's not a lot ) I have been studying English for almost 6 years , but I can not speak English well . I made it with only salt and vegetables and herbs , it was too soon for me to have it though , as I felt something was missing . . . The next morning , I added a bit of a consomme cube ; ) I ate some food , mixed ice cream , zingisukan , salad , sushi and so on . So we went to chocolate a store . But me and one of my friends did n't buy chocolate . Some of them can impact you for a lifetime . In different periods , elementary school , middle school and university , we met different friends . This is my first time using this fucking bullshit ! After all that , I found myself getting off the train holding a tremendous amount of frustration pent up inside me . I am worried about these trifles I think we are equal wherever and whoever we are as long as we live . My mum told me she sent a lot of dumplings to me . The dumplings my mum makes are always full of oil . The dumplings in Jaxin ( in China ) are very famous ! There are no clouds in the sky . But I do n't know what to do . . . The one on the right is Mattya Azuki ( green tea and Red bean ) , the other is rainbow : D It was so funny . I love American drama . Yesterday I rented the DVD `` glee `` at a video rental shop . Memory is quite weird , it can change things with two sides into pure good or pure evil . We may quarrel with our friend or may even swear we will never talk again . All we can remember is how sweet our friend is , and the little things they did for us . I still save the small note my friend secretly wrote to me in math class asking me where to go for lunch . I started diving lessons last year . shouga - yu If you have catch a cold , you can try to drink shouga - yu . Today I hadseminars at the afternoon and , in a little while , at night , I 'll return to college to more and more seminars . I 'm thinking , writing here is more comforting to me , because I can think in english faster ( Yatta ! ) . The bad point is : wo n't work appropriately with learning new words . Watashi wa supein de umaremashita kedo kodomo no toki , irelando to furansu ni mo sunde imashita , sore kara , eigo to chotto furansugo mo hanasu koto ga dekimasu . Kono nikki wo yomeba , watashi no nihongo no reberu ga wakarimasu . They are chosen by people because of their life style . We exchanged our numbers and e - mail addresses . governments planning an underground nuclear waste repository on Mongolian soil . These governments do n't want to take the risk of nuclear , and just foist it on the Mongolian people . Tagine pots and dishes , which are cooked in a tagine pot , are popular among Japanese young women . So it 's healthy . I went to a restaurant which serves the Mediterranean - style seafood dishes and I ordered Moroccan curry . That was true . Have you ever had any serious disease or injury ? I want to have some friends in foreign countries . In my last entry , I wrote about Africa and all the different kinds of wild animals . I also wrote about Drakensberg . But my parents think it 's not good enough and I need to become more competitive . Both her face and voice are adorable . So nobody said `` Congratulations `` to me . It did n't matter to me that nobody said that to me . I think that Mother 's Day is a special day for saying `` Thank you `` to one 's own mother . So I thought I did n't need to say `` Congulatulations `` to my friends . I very much enjoyed it ! I 'll be going to `` Sendai `` by train to go shopping . I 'd like to go by car , but My car has been broken since 2 days ago . I hope it will be repaired as soon as possible ! ! I have to look at four pictures once and describe them in a story . I want to speak in English fluently like an American . I think that I agree with foreigners . I want to go to America early ! ! I 'm going to visit one preschool this Thursday . This is a cartoon in today 's newspaper The electronic design covers PLC , semiconductor circuits , PCB design , C - language farm ware and much more . A ' gap year ' system is as follows : high school graduates who have the qualification for admission to university or college take volunteer activities for a year in his / her country or overseas without studying in university or college . They stay from September till July next year at a house owned by the local government and are paid some money for living expenses by the government . They experience many things during their stay in my town and go home with their precious experiences . This year too , two volunteer youths will come on September 10th . There is a humorous bookstore . I had a farewell party for my flatmate tonight . I 'm not sure , but maybe it 's Korean style Vietnamese food ; ) We chose some vegetables we wanted to eat from the many kinds of vegetables and put them on rice paper . But I 'm a English beginner and I have never gone to England . So today , I will write in my diary for the 18th of September . Introducing myself . . . I 'm Maru In the period when we got together , he was always annoyed at me and never satisfied with me . I do n't have a bicycle , so I have to walk 30minutes to arrive at the hall to sing . It provides you a convenient way to have meals . It is so great to cook by yourself . When people talking about day to remember , most of people will mention about any kind of special day like festival , holiday birthday , gathering day or even day of dating your girlfriend . It is natural for Japanese when we visit someone to bring some souvenirs ( `` Omiyage `` culture ) for them . However , I have no idea if theAmericans will accept Omiyage culture . I do n't listen to music often . takusan hon wo yomimasu The liquid from food waste mixed with EM bokashi contains good bacteria . This can kill bad bacteria in drainage pipes . But in this class , we did diverse work using english . For example : Singing songs , doing role plays in front of the class , doing yoga following english directions and so on . Now I can enjoy english . When I was just practicing english speaking , even if I had grammatical problems , I did n't care . I guess this habit is the result of practicing English writing . However , so learning C is put to bed . Also will be great to study another language , maybe italian or some slavic ( Polish , Serbian , Slovenian etc . ) This cultures are intresting for me , and words not so hard to learn I think . Distance is not a problem for me , because it takes 45 minutes by train . But the train ticket is expensive for me . . . The restaurant was quite expensive , but the atmosphere was nice . These days I am busy with hunting for a job , but I 'm having problems because of the financial crisis . Another reason , I think , is that I want to change career fields . Above all , I can not memorize English words easily . I have a fever today = . = This is my writing examination in this semester . Let 's make up our minds , stick to it and enjoy our lives well . What will I do ? It is good that I do not have to go anywhere . = ) I hope that It will not be hot in the evening . What will ( shall ) I do ? All airways to Western Europe are all still closed and the central point of the arguments is what level of ash is safe . But I found out that her parents got divorced and she suffered from it . Yuma rode his tricycle . My favorite artists are AKB48 ( Japanese girls group ) , KESHA , Avril Lavigne and Lady Gaga . I do n't just study a lot of things at college ; I also do a part - time job . My strength and energy gradually becomes worse . they wore witner scarves , hats and thick coats . I am sure my mom will come to the airport with my thick coats . I am so looking forward to see snow there . I am good at writing , but I am not good at listening . As soon as I got home , I had dinner . So I went to buy a present ( whiskey made by Suntory , a famous Japanese company ) for my father today . When a student walked out of the classroom with his phone on , my teacher , an old man from Anhui , rushed out of the classroom right after the boy , suspecting he was playing hooky . At last , the poor frustrated old man came back alone and embarrased in a pile of laughter . The cat is called `` Boss `` by people . I used to live in a homestay ( house ) and went to there yesterday . We keep in touch with each other by QQ . She does every subject well except math , Do you know he used to get zero in math so she promised to work hard at it . After that I went to Auckland Museum . But I guess the best thing is just natural . Remember what did you tell me when we last met ? Were they easy to start ? I really do n't add unfamiliar people on my Facebook , so I felt that it was a little annoying because I did n't know him . Although I have already gotten material of apartments from their support group . I am able to relax but when I stay with someone else I am not able to really relax . This is the reason why I have not been sleeping well recently . At the time , I thought the reason why I think like so . Aerobic and Strength training I 'm really looking forward to seeing my old friends and wearing a Furisode : ) I 'll take a lot of pictures and , I 'm going to put them here . You must be looking forward to seeing me wearing a Furisode ! If you do not deal with this problems , I will be forced to take a legal action . I am a college student . She was the most beautiful Pinay I 've ever seen ! ! ! I will be studying English about half as much as I usually do . But a snow - covered mountain is very dangerous . So I 'll go to the snow - covered mountain with my friend . I used to go to a camera shop and order pictures printed , but I do n't have to do that anymore . Nomally in Tokyo , it is at the beginning of April . This winter was hotter than those of normal years . I 'm hoping to have another amazing dream tonight . Going along the main road straight to the city . Thus , after a long day riding , I really want to go to bed now . But he abandoned it because his girlfriend got pregnant and he decided to be a father . There was an earthquake on 3 . 11 . and creating things is so fun . But the point is that we are so small to the universe , so why bother being so tired and depressed by something also so little . So little that you will hardly recall ten years later , and you probably will never mention it ever ; like missing a bus , losing a pen , or having an argument with friends . Japan has a long and glorious history , good public safety and a strong army , Tokyo is one of the biggest cities in the world , Japanese technology is the best . `` The Japanese government and companies know this fact well . So I decided not to buy a CD player and bought an I - pod instead . To my suprise , she was not far from my sight . She has been there from beginning to the end . Surely , she does n't even know what I wanna do with her when I have time . If I can assume her existence is destiny , I would confess my feeling to her directly . - There must be a leader who is in charge of arranging meeting times or presenting their project in front of the group . So , I do not agree with the idea that all group members should be given same grade even if they choose each other as group members , like a team that consists of all friends . First , it is true that each member in a group devotes his or her passion and time to the project with different amounts of effort . ( our professor made us break into a few groups ) While my team was working on an ongoing project , a few students , including me , spent plenty of time individually on the project , but the others were just like spectators . - This class always reminds me that people should be diligent when working alone or with other people . Today I 'll talk about my hamster Subaru . April is the beginning of school season . I had already heard that no one brings musical instruments or sings songs to cheer their favorite baseball team , but I did n't know that vendors threw snacks like peanuts or ice cream . I saw some videos related to the baseball stadium vendors on Youtube . Unfortunately , there are n't any vendors at Japanese stadiums , as far as I know . During this time , I 've been learning grammar rules and vocabulary by heart actually I 'm still not good at English because I 've been studying it on my own . sorry , my ability to speak English is really basic so I 'm unable to have a fluent conversation . I recieved a letter from the job training institute . + peel the carrot and the Gobo . + cut the carrot into strips . + stir fry Gobo and carrot together with sesame oil ( oil also possible ) until wilted . ( soft ? ) + add the dashi ( soup stock ) , sake , soy souse , sugar . The whole world are having their eye on the rescuing of the Chile miners . The construction for disabled people at my nearest station has been going on for 3 months . Because there are n't famous Japanese celebrities in America and there are few Japanese celebrities there . Probably Americans are not interested in Japanese celebrities . The funny guy from Russia said that he realized that Japanese women walk with short steps , and he thought that it was because Japanese women used to wear Kimonos . And the girl from Sweden thought that because the women put on high - heeled shoes , they ca n't take big steps . About my holiday So I want to study a lot of languages of different countries . I exaggerated too much . I visited Toronto , New York City , and Hong Kong during golden week . Because , I think that to review those is more important than to write another . Recently , I have been studying English . My favourite months are October , June , July and December . Today I 've just watched an awesome movie , I loved it . In japan we usually play the game `` nine ball `` , one of the various rules of billiards . actually , I did n't search for it , my canadian obba told me hahah in 30 years old , I want to be good at speaking in french , english , japanese , korean , , ha ! nowadays , I really enjoying watching overseas drama , the title of drama is `` desperate housewives `` . . it is season 5 but , confidence is important in western culture , haha I sort of thought , down the corridor of the time , this is the first step to improve my english I teach mathematics to high school students . Workaholic ? ! I booked an English class outside of class . I want to speak more English . He has an exciting life . I would especially like to see the pyramid , SPHINX , mummy and so on . There is so much I want to see in person . I was so grateful that one of the parents told me that her daughter really enjoyed today 's lesson and she was glad to see it . It might be harder to learn and collect vocabulary by myself . What would you say if you presented Lang - 8 ? On the march 11th , the big earthquake occurred in Japan . New year is just around the corner ! Today , I will take two classes , because I am very busy . About 8 : 00 pm . , he came home and gave me flowers and chocolates . I 'm very happy to get the surprise presents , because he always forgets important things . It sometimes causes pain , particularly in the parts that have a lot of Cellulite . Danxia Mountain is the only World Natural and Cultural Heritage in Guangdong province . As a sophomore , I would like to do something different from last summer . The name Tiramisu is Italian for `` Pick me Up `` ( Tirami su ) but can be translated figuratively as `` Make me less sad / happier `` although It 's still April . . taking midterm Exam . I studied in the library until midnight sometimes . Today , I was walking to the library . Hot yoga is doing Yoga in hot room where the temperature is 40 degrees Celcius and the humidity is 65 % . It 's a very hard Yoga . Everyday when I wake up , I first power on my laptop and log into QQ . QQ is a software program like MSN , and in China is the major instant messaging program . Though I have been learning English for about 10 years , I 've never tried to call foreigners in English . When the phone connected , I said hello to him in Chinese naturally . My point is that the bad thing is not that you are not good at something , but that you are afraid of having a try . Keep on learning . Good Morning ! I am from Thailand . My name is Jirawut . I have decided to practice writing in English here . I hope it will improve my English . I hope someone would help me . Next time I would write about beautiful places in Thailand . I plan to learn Technical English next year . I feel warm today : ) But I saw many people taking the exam . I hope many people get to be nail artists in the future . I really want to volunteer for those who are suffering but I do n't know what I should do . If I had the time , I would go to the worst place to help . I guess hurricanes are common in my local area . If I were to experience one of them , I would hate tsunami the most , I chose two places . We can see the animals close up and observe their behaviors and abilities . My recommend is the behavior exhibition of penguins . There are several lavender fields in Frano . We could see the splended lavender purple view , and we could smell the scent of lavender . Of course , Kyoto is one of the most famous places in Japan . I thought that game was not interesting but they were so patient . I 'm suprised about this site . If I had found this site earlier , I would n't be worried about my writing study . I was even wearing a nitted hat with `` I love New York `` on the front of it . We need oxygen to beathe but we easily forget the importance of it . I just realized that how easily I can be suffocating without this . anyway , I 'm tired of using big letters , such as ' I ' instead of ' I ' , that not only that but this mark ' meaning omission as well . I watched ' Butterfly Effect 2 ' , ' Vapoorize ' , ' Pirate of the Caribeans ' and now ' Insadong Scandle ' it 's about the restauration of old Korean pictures . The number of your vocabulary Have you heard or thought of how many vocabulary words a naitive American or a native Britan knows ? I should change my password . . . So I want to improve my English . If you find any mistake , just cross it out . I ca n't blog in French , , , . Design is all of its value and Design creates new philosophy . `` by Kazuo Kawasaki I heard that soda makes meat soft and actually the steak was soft even though it was cheap , and it did not taste of / like pepsi . There is a statue which looks like an opening book . Today , I feel like writing about myself . I always go surfing during the weekends . Surfing is very popular in Japan . I speak a little English . . . . . . . I 'm looking forward to receiving your message . They then hold a party to uncover the baby 's gender . They may make a cake that may have two different colours inside . I am a college student from China . Moreover , there are many different kinds of videos that you can choose from . I 'm going to go pick up one of my friends at Nriata airport . Sometimes , it takes a long time to see them , and I have to wait quite a long time at the airport . They all seemed such kind people and made me feel comfortable . This night , there is a TV program showing a movie called , `` Harry Potter and the Goblet of Fire `` . It 's really hard for me to understand what they say ! I did n't necessarily take the exam lightly . However , I was too hungry , dizzy , sore in every part of my body and sleepy . In the Tokai region , the central region of Japan , a big earthquake happened early this morning . The oscillation continued for more than 3 minutes . He might be genius so I 'll give up adopting his method . I love department stores even though they are a little bit expensive because they have many atrractive things such as cool and fashionable clothes , decorative tableware , and delicious sweets . Yesterday , while searching around the web , I saw this homepage . This is my first time writing a diary on the web , so I am really nervous now ! My grammar especially sucks . Last weekend I had a party with my member for new staff coming to this laboratory . In Canada , I want to make new friends all over the world . Of course , not only will it be more expensive but it will take more time to get there . It 's not comfortable living in my house because of its bad location in spite of remodeling some parts of it . Compared with my new house , I think it 's very inconvenient for me to live there . - A gray plane with a red dot on its top rotates according to the place of the mouse on the stage , which shows how the rotationX and rotationY properties work . It was good for my shoulders ! ! There are many foreigner at the party . It has been a long time since I have spoken English with foreigner . I think Japan is becoming weaker but Singapore is becoming the center of Asia . I 'm in college learning Russian and European philology ( philosphy ? ) , also I try to study English and Japanese . In Japan , we ca n't buy cigarettes from a cigarette machine without a Taspo card . countries , and the other is about coexistence of different cultures . When I study them , I go to the learning center of the Unversity , which Usually I tend to get nervous and sweat in those occasions . My hobby is dancing , eating and cooking sweets . nobody belives me And I also like ' just dance ' and ' beautiful dirty rich ' . The desire for money , fame and all the beautiful dirty things . I 've been thinking / contemplating that I should study English for university or preparation for studying abroad . We learned the Present Continuous and Present Perfect Tenses in Hindi = ) one of my favourite alcoholic drinks is RHUM DU PERE LABAT . T completely . Besides , scholarship for students who want to study abroad is impossibly difficult to get . Though many Japanese are rich and they afford educatoin , I believe we need changes in Japan . On the way ( there ) , we bought some ingredients for sandwiches . This is my first writing on Lang - 8 . I have to learn English and little Spanish for my business . Therefore , continuing to eat a lot of junk food means exposing yourself to the dangers of gaining weight , diabetes and other diseases . Secondarily , it spoils children 's appetites and promotes bad eating habits . I am telling my friend about past things but I am not sure about grammar ( tense ) Is that correct ? I could n't contact her but I guessed I could of met her if I went to her restaurant `` As a result , I met her at her restaurant . It 's like jazz music , but more noisy , with lyrics . The name `` Baduanjin `` refers to 8 different movements including shaking wrists , lowering your head and hips , and swinging your entire body . This is a very popular blog in the United States of America . Last night , my American teacher told us she had a bad experience in China . because her passport , make up and even her money were in the baggage . but she could n't remember the taxi number , so she did n't know how she could find it . After she wrote the form , she looked around , and she saw a baggage in the office corner . Yesterday , I took part in activity in my circle , university COOP . recommended them mutual aid , new PCs , new electronic dictionaries and so on . That 's why my birthday is in June . Then , Shinobu Moromizato who was the second money list player in Japan appeared our behind . My wife said to her `` Hang in there ! `` , She said to my wife `` Thank you . It 's been a long time since I 've written something on here . I do n't know what to write down . And I have not made the decision if I will stay here for my whole life . It was very . delicious . I think that superstars lip - singing songs are not a singers and their music is not music . because I do n't know what would be interesting for me , and I thought it would run out of battery quickly . and they downloaded it to my iPhone without my permission . kono eiga no namae wa `` grave of the fireflies `` deshita . Yesterday , I wrote I was not interested in snowboarding , but I watched it live on TV at noon . The sea water tastes salty , therefore , the sea water contains salt . The theorem is proved , thus the experience will have a good result . proved However I did n't need ( to do ) it , because I did n't have any money . I always keep my diary in Korean , so I want to say hello to people who are English native speakers and read this message ^ ^ Soshite sono rekishi ni te wo kuwaeru koto wo omoitsuita ( lembrar ) no da . It made me feel warm . When we see the pictures of the past films , we feel that it 's so old , but today 's dramas , pictures and what 's more , scenes { ? } of today 's life are soon becoming old . Surprisingly , on the forum for `` I want to meet soon ! ! `` in both SNSs , a lot of messages were submitted by women . Observing the board for few days , it seemed that the messages were written by prostitutes or an organization , that infested the SNSs . I look into the information paper to make sure , and I found out that my understanding was WRONG ! ! ! and I will apply the S . So I replied to her on what I had been doing before and asked her what she had been doing too . Straight after we made an appointment to have lunch together . We spent the time just talking , using a lot of technical terms and eating a lot , Forgetting their daily lives , two mothers enjoyed their past golden days . Tomorrow , I 'm going to `` Hiraizumi `` , which is a World Heritage Site . We had grilled chicken there . Complaint ( complain = verb ) about work . . . Important things for learning English : The chocolate cake they served as a desert was especially excellent ! I 'm hungry for success and am making an effort just like I do with boxing ! ! ! My heartbeat is strong I attended my friend 's wedding last day Saturdayand drunk a lot ! This little thing reminds me I should show more acceptance towards my parents , and try to say ' thank you ' more often . I think that I will sleep all this weekend like a dead person . B : You never know . ( You dont know until we do . ) I went to the stadium to watch baseball games of high school students gathered from all of Japan today and the day before yesterday . I do n't like both playing and watching baseball so much , even of professional athletes . They never give up to win the game , and it seems to be in a difficult or dangerous to keep playing . They do thier best for their teammates and their dreams , without thinking about next game or the future . As soon as we got home , my children said , ' we want to play soccer . ' But , because of developing countries such as Korea ; Thailand will be abjectly damaged . With Saudi Arabia 's will to increase petroleum production , aimed at stemming unrest in the market , the price of oil will easily get back on track . I went to the supermarket . . . . . I went to the supermarket last week . When I taught her , she said `` Thank you . `` to me and left . Today my professor was about 20 minutes late to our final exam . At language learning school , my teacher gave me advice to keep a diary everyday . It must have been irritating for the players . Although they did n't get high grade in schoolthey always do well in physical education . I study English and chinese at university . I would like to explain even half what I am thinking and first I should be making some foreign friends . Ohayou gozaimasu . Hajimemashite . douzo yoroshiku . I do n't know what job I want . I graduate next year . Next day I drove to Saitama stadium with a friend . It is very big and suggested a world cup soccer game . Article details I thought maybe somebody sent the wrong number and by chance the number was mine . I thought he wanted to cheat my mobile phone company because he asked me to send a message to unknown number . And we are having small party with Family or friends on Christmass day . Is this true ? ? ? If this is true , I want to live in another country . anyway , l studied English , especially conversation . So , my pronunciation is better than before . . But , I 'm not good at forming sentences in english . . Today , I went to an exhibition called the Seoul Design Olympiad . I requested a black forest cake / gateau . I was going to go to work by train , but on second thought I decided to walk . My Favorite Practice for English because I ` d like to significantly improve ( or enhance ) my listening ability . I normally get excited seeing this unusual weather in Tokyo , but this time I hope that it would stop soon . it is a a tough question of life . I want to be a musician , but its tough to be one . Stay hungry , stay foolish Since I have participated in an English speech contest and practiced a lot ofspeeches , I know some famous speeches , such as `` I have a dream . `` When I feel depressed or worried about something , I listen to it . But around starting sophmore year , He said he wanted to contract the way of light . The ingredients are potatoes , Japanese radish , carrots , taro , konjak jelly , mushrooms , chinese cabbage , welsh onion , pumpkin and chicken . And last , season with miso . They were good taste , healthy , nutritious and work for warming me up . I made a sentence , which uses `` that `` and `` which `` . There are sentenceswhich is use `` that `` and `` which `` . I am wearing a short t - shirt , which is striped blue and gray . The t - shirt was given to me by my girl friend last weekend . I have some friends who are foreigners . My friends , who are foreigners help me with my English . A great thunder came and it turned the sky purple for just a moment . Then a long , heavy sound crashed out , and it started raining for five minutes . My opinion is that the hydrangea is a flower which looks better on a rainy day that any other flower . It 's true that the early bird catches the worm . I made it through the interview , and I can work in the company . It is very hot but very delicious . Secondly , we can spend more time with our family . Thanks to mobile phones , we can keep in touch with other people easily , make appointments easily and speak with friends easily even if they live very far away from us Mobile phones are not only for talking and sending messages , but also for enjoying music , taking photos and getting information . But we should n't forget that talking face to face is a better way to understand each other deeply than using mobile phones to communicate with others There is a bamboo thicket around my house . And bamboo sprouts come out during spring . Yesterday I also went to sleep at 4a . I searched for the novel , `` Christmas Carol `` by Charles Dickens . So I asked the salesclerk , `` Do you have ' Christmas Carol ' here ? `` I found some sentences that are a bit difficult for me . Now , I have n't yet had a good conversation with foreign people . I take some supplements regularly so I thought it would be a good time to buy some extra . The pharmacist told me to take them `` peroidically `` . I think , my health has gotten away somewhere . The first band that I listened to was `` X Japan . `` After that , I listened to `` the GazettE . `` When I watch anime , I like to listen to the opening songs because sometimes some good artists play the intro . music . A example of this , was when I watched Death Note . I liked the very first opening and ending song a little bit , but when I listened to the second opening , The music was from : Maximum the Hormone . New tries for learning English I 'll try to write in English daily for the next 2 months . Sooner or later , a super earthquake and tidal wave is coming to Japan with a smile , to give poor Japanese a precious lesson . We have to stop the Hamaoka nuclear power plant as soon as possible , or we will have to see a very beautiful but harmful fireworks again in the next 20 years . Tidying up ! It 's so frustrating ! This tragic disaster reminds us of the preciousness of daily life . Today I have come to Seattle for business . I want to go to `` the first Starbucks `` , if I have enough time . Any unclaimed or unlabelled dishes , culture wells and bottles will be thrown out when I see them . I have a lot of homework now , but I do n't have enough time to do my homework . the band 's name is `` flower travellin band `` We gave her a raincoat and rain boots . she was surprised and crying because she had been living I saw them for the second time , in the summer at Summer Sonic 2010 in Tokyo ! My will was weak against the allure of alcohol ? I think alcohol is kind of drug similar to as tobacco . In addition , I always regret drinking too much next morning . I know several people dislike the use of code - switching . I think that talking with somebody is a good way to know and understand each other . I had dinner at Matsunosuke , which is a neighborhood restaurant . I want to be a high school teacher . When I was a high school student , I disliked sience . So , I want to tell them that `` science is very interesting ! ! `` . I am not used to writing English , so these sentences have some mistakes . In order to opt out of the urban congestion during Christmas , If I can communicate in English , I could know more about wonderful sights It might have spun too ( strong / quickly ) . I have a handy electronic remover for clothes pills that I used this morning . I got a call about his death on Monday and dashed to his home . PL means a private lesson . Next week , I 'm going to take a private lesson for the Eiken interview . For 1st grade . . . . . I 'm studying English My husband cooked `` Gyuniku ( Aussie ? My name is abdullah and I 'm from kuwait . I studied at kuwait university for just one term and then left because I 'm not good at English . I have to be good at english , so I went to New Zealand to study the english languge because it is a very nice country . I find many lovely people here , and I love nz so much and I feel very comfortable in this country . my winter holiday has finished There is a culture gap between us and I ca n't express my thoughts as fluently as they do . I think Accounting is anecessity in our lives . I hope todo work for abig company such as Samsung . Samsung is the biggest company to comeout of Korea . And I hope I will be afamous celebrity out inthe world . I think my strengths aresuitable for theMarketing field . I have been trying to learn English so I came to South Africa 8 months ago . Today was truly a hard day for me . After noticing Oni , children begin to throw soybeans against Oni saying `` Devil out , Fortune in `` . Then Oni escapes from the house through the windows . We believe these actions can get rid of the bad spirit from our souls and pray that our heath will remain resilient . I do n't know the specific origin of this custom however surely it has lasted for so many centuries . Also , Japanese knows about grammar I was going to stay at a friend 's home because he wanted to talk about his divorce through the night . I am excitedly wondering how the story will end , but I 'll miss if it comes to an end . My position is Forward . I am reading a book and I do n't understand something about question - tag It is difficult to me but before I asked Rosie on MSN so I would like to ask you again . Beforehand , I was so nervous about the lesson with foreign teacher , who was Filipino . I want to try to have a business topic conversation with another teacher next week . By taking public transportation such as buses and subways instead of driving cars , people could help reduce pollution . I think we should reduce air pollution . We entered in the same year , 2001 . When I entered into my company , I thought I only would work here for 3 or 4 years . and I will put in a lot of effort tomorrow . Lastly , he said it is Japanese AV video that stands for `` adult video `` , which is considered to be pornography . People from foreign countries think of Japanese girls as self - effacing and demure in my opinion . Why is it that so many Japanese girls appear on the AV scene , exposing their naked bodies boldly even if it 's slightly behind the scenes ? But there is a reason why I am working hard recently . Recently , I have discovered that my English has improved . After all , it 's totally not enough to have only English as a specialty . During this time I have got to know the advantages and disadvantages of live online teaching and have developed my own techniques to offer my students the best online German lesson . Healthcare system managed by the government can , to a large extent , avoid unequal treatment among patients and lessen the gap between the poor and rich . On the other hand there is enormous empirical evidence that private hospitals do not have to be inequal or useless to have a negative effect . Fortunately he is still alive somehow . potential players and they have feasibility to win next season . My daughters were so glad to look at it . Takoyaki is a type of Japanese junk food . Japanese taste seems to taste too light for him . `` You do n't have to study Chinese because I want to keep my conversations secret `` . Therefore I 've given up on studying it , and now I 'm studying English . The anime is just ordinary at first but it become awesome later on . 86 % of those who have a executive car are not a millionaire . Four out of ten millionaires enjoy drinking wine under ten dollars . It is similar to his past book . After he finished investigating the millionaires who have more than a million dollars in net assets except for their house , he tells that millionaires who have a house worth under three hundred thousand are worth three times more than the millionaires who have a house worth over a million dollars . 40 % of the millionaires drink cheaper wine , under ten dollars . One is kind of selfish , another is very nice , She will leave here soon . Basically , I dont expect much and I would be fine as long as I have lady friends that I want to talk with . I ca n't believe this news . It 's because I 'm now learning french , and I often read ' rurubu ' which is a very famous journal magazine in Japan . The weather is cool today . I hope the weather can be warm , but not hot . My face , neck and legs got sunburn when I came back home . Fortunately , I had both a Japanese motorcycle and car license . Poor people are using motorcycles in that hopeless and shitty island . I already have a Japanese motorcycle license , but I have to pass the test in English . this morning I got up at 6 : 30 . I love going to the museum and aquarium . * picture of fake cakes This is Cranberry Walnuts Cookies . For example , there is this super genius kid . It 's interesting to correct others ' writing and have mine corrected . It is rare to find people who can speak French well . What a wonderful day ! In spite of my passion toward English , there is no improvement in my writing in English . It is hard for a beginner to study by himself . I came back to my hometown from my grandmother 's house in Yamaguchi . I want to be an expert in nutrition . But before I saw the mountain of KangWonDo , I did n't think like that . I can feel the strength and spirit of the painting in the KangWonDo 's mountain too . I wonder if I can skip it . . . My first impression of the city was that it was absolutely multi - cultural . For example , we visited Chinese temples and Islamic mosque in one day . And if we wanted to see wild animals at night , we could join a night tour . Actually , even my university ( which is not as big as Kyoto univ . ) has many Muslims , in my laboratory too , and I wondered what do they eat in the cafeteria . To understand religion , it will be a good opportunity ^ ^ Though my boss says that I can go to Switzerland next week for a business trip , if your friend goes , you must want to go soon , too . I am starting to write my English diary . I want to communicate with my colleagues , but my English is poor . So I 'll try to write daily . The boys have to play very hard from the first minute and try to squeeze in a goal . I meet a nightbird netpal . The URL below is the message . Flitzer from Mumbai We have been expecting you to be in Mumbai with Kazuya . you should do everything possible to visit us in Mumbai . Thank you and have a nice time ! Many ads and commercials do give important information about products ; however , some of them are merely misleading and deceptive . That 's to say this sentence : Many ads and commercials do give important information about products , however , some of them are merely misleading and deceptive . Question : Can we change the sentence into : I started work at 1pm . From the very beginning I was in a lot of stress because the guests were just flooding in . And at 3pm the chef ( or cook ) told me that our cold kitchen cook would be leaving on Wednesday . . . . The airline company I took launched a new check - in system , intended to increase effectiveness and efficiency of check - in procedures . I Beg a Cat 's Pardon I think it is good to have a better relationship with a human . I would be free ; ) The merit of the smoking habit `` Smoking results only in death . I love smoking a lot . Smoking gives me time to rest . Smoking allows me to communicate with other people who smoke . We are criticized by non smoking people , Certainly there are many bad mannered smokers . and smoke in the areas where we are forbidden to smoke . I want to protect the culture of smoking from such bad people . I went to dinner with my wife and aunt . It tastes like Miso soup and was a little too hot for me . I really want to be a bureaucrat , so I had searched for a good teacher . Therefore I decided to enroll in this school . I 'm 17 years old and I am going to university this autumn , but my mother continues to treat me as a seven - year - old . Hope you can get out of this trouble . but I persevere in my studies to enter the University . I 'm going to study Japanese history at the University . Also , I 'm interested in music . Sharing thoughts , opinions and my photos with my close friends is really fun and interesting . After I practice writing on my blog , I want to become a good writer . Tomorrow , I will get up at 8 and in the afternoon I will go to high school and watch the girls soccer game . But unfortunately my wife dislike insects . My husband 's mother made sweet potatoes last autumn . This is my first - time writing on this web site . = = = Please correct this = = = Today I caught a cold and had a little bit of a fever . I feel so grateful for their nurturing . I go to elementary school with my best friend , I hope our friendship will last forever So I 'm going to save electricity as much as possible for now . I went to a pictorial show titled `` The bridge of friendship between Turkey and Japan `` . Most paintings used bright color . I thought it was a good idea to hold a show like this . One day he received a telegram from a reporter he had sent to a neighboring city . This friday is final classes ! ! ! ! ! Most christians go to church on wednesdays in Korea . I love speaking English , but I need to practice the patterns of English sentences . I have registered as a member here for a long time . my favourite song . things to do , but I should do them next week . I 'm looking forward to going to a concert ! When it comes to a finacial or economic matter that I have to study , I just want to commit suicide . Anything involving family matters can be very complicated in real life . I ate curry earlier tonight . It takes 30 minutes to get to my workplace from my house . So please correct my sentences . Today , I got up at 6 : 30 in order to practice the bass . It is so hard to spend enough time doing all I have to do . 1 . I thought , `` I want to study English and I want to speak to many people `` . To tell the truth , I hate commuter trains . I believe they are going back home from their offices . It was is the autumn colors - the season now . Each of the Japanese cakes was a lovely shape and colorful , but 800 yen was expensive , I thought . I said , `` please sell me this singly ? `` The saleslady said , `` of course . `` I was n't laughing ; I am a high school student . I went to the library , made library card . But , good at dancing and playing the guitar and fashionable ! ! I like English very much . English brings me new life . I went to Australia to study English for a few weeks when I was high a school student , but my English was very very very poor ( ( + _ + ) ) ! ! I was frustrated but I really want to be good at English , because my time in Australia was very fun and exciting , so I thought I 'd like to go again ! ! ! I could speak and understand only a few words or sentences , but I became happy when I understood what they said or they understood what I said , even though it was just a few phrases . Yesterday , I wanted to see some news , and I saw some people said the world will end . I did n't believe it , I think those people are very childish , they do n't know everything about the future , and just speak what they think . Which is the most appropriate way to express my gratitude among the following ? It 's easier to write on than my Android . Its action and music were good , but main character 's acting and the story were not . The movie just took the characters ' names and the power of the main character but not the story . The sweat wo n't stop . I was allowed to go to another country for 3 weeks as a holiday after I finished my first year . I have decided to try reading only in English for about a month or maybe longer . So I decided to read children 's and young - adult 's literature for a while . Today , I looked up a word in the dictionary , but what does it mean in English ? I usually go to my English class by bicycle . This book is writtten for a student in an easy story . We can acquire the skill of logical thinking , collecting information , judge , decision and execution through this book . I think Pilates is good exercise for a healthy body . I cleaned my room and it became a beautiful room . Because I 'm a Japanese , she maybe nervous . I 'm going to go to Tokyo on a school trip . I went to Ajinomoto stadium to dance . After the game I went to dinner with my friends . `` Kastu curry `` made by my father My father cooked curry with `` Katsu `` . `` Katsu `` is a fried pork cutlet coated with breadcrumbs . It is very delicious ! I want to make curry like father does . I 'm really sleepy right now ! ! I 'm going to visit Hawaii in May I 'm going to visit Hawaii in May . I quit my job two months ago . Therefore , I guess our company recognized her skill and actual achivement and offered an extension . This test has 200 questions . ( 100 is Listening section and 100 is Reading section ) Yesterday , I had a sore throat and a cold . This morning , I felt much better and refreshed . My Japanese teacher gave me many articles and asked me to translate them into Chinese . And I have some words and sentences that I do n't understand . You can view updates about the earthquake in Japan from the URL below . today my cousins and I went to `` wuxue `` to gather peaches I think that his is easier than mine ! ! ! I am not the only person to have suffered from a cough , running nose , sore throat and general bad feelings . There is a cold circulating around this area , is n't there ? My younger brother turned 20 years old and he will go to the Coming of Age Ceremony next January . My English skill is inferior to this skill of other students of my university . and I practice the guitar by myself . I love music and listen to various kinds of it . I do n't know that I can continue to write on this site untill then , because I 'm not good at English and I sometimes neglect it 's studies . I not only learned a lot from the work but also made a lot of good friends . My favorite singers areYUKI , RADWIMPS , and Jason Mraz . this afteroon , my boss told us to work during spring festival . This morning I had a seminar on the Department of Foreign Trade instead of working in the office . The main point for this seminar is document export . Ryoma lived in the Meiji Era in Japan . convenient : My house is located in a convenient place . words . When I was in a high school , I studied a few subject that I was n't particularly a fan of , but it was compulsory . I 'd been thinking that I would have found a way possibly to hack it and get myself video games on there Because , I do n't like vegetable . I am not sure if this site is based upon some applications such as joomla , drupal , or developed independantly . . . The first book I read this year was `` Water for Elephants `` by Sara Gruen . Time flew by so quickly , during this time , many of them have gotten married . I met Iidabashi in Tokyo . I 'll try dinner at Iidabashi from now on ! She said `` The doctor told me not able to have an operation , so treating with irradiation `` I really want to improve my English writing skills . In addition , this also apllies to onomatoponia . And I think this is true for other languages . What kind of education have foreign people had ? ( especially in their primary school days ) Although we do have some good sightseeing places such as a great view of the shore , and clear atomosphered mountains . Not many visitors visit our city due to poor transportation . To promote our town 's good areas , I would like to be a tour guide so visitors can come and know our town 's good points . I would like to be a tour guide not only for job but also for my own benefit . I do n't have anything to write . But I do n't have anything to write . The most important topic for me is their daily schedule . My first diary . please revise my sentence But , if I have been playing sports , the pain eases up . Cuzit 's boring . American , British , East courst , West courst , etc A journalist asked his Japanese colleague But I do n't have enough vocabulary to speak fluently . Their pronunciations are so clear and not fast . My pronunciation is n't your business ! Thanks Lang - 8 and my correctors . I ca n't stop writing them easily . What I want to write is that I want to speak `` Disney movie 's English `` I am a high school first - year student . My school is located in Saitama in Japan . But my school is in a country . My favourite writers are Miyuki Myabe and Hiro Arikawa . Spring vacation starts from tomorow . I love traveling , music , sports , writing and so Yesterday night my father told me that he wants me to be a solider while I 'm at college . When I was young I thought that soldiers should be the greatest and kindest men in the world , and my dream was to become a solider when I grew up . But for now , I have to think about my future . Maybe being a solider would not be me , for I 'm a college student and it 's an important time for me to learn skills to adapt the social world . If I enter the army , I might not be able to learn as much as I would like . That 's really a big problem now ; I think I wo n't be able to fall asleep tonight . When we met Shirley and Brianna after having had dinner with Shinae , we needed another ticker for Lucas . Shirley and Brianna worried about me and gave me some advice about being an excahnge student in Mississippi . Therefore when you vaccinate , you have to consider the timing of each vaccination . Perhaps you have problems when you are writing in Spanish because you do n't know about the accent rules ! I also watched `` Lost `` which is an Aamerican TV series . I want to be a translator ! Now I 'm studying English to be a translator . I have some questions about & nbsp ; the sitcom Friends You can enjoy beautiful sights there , for example , World Heritage Sites ( Have you ever heard of Kinkaku or Ginkaku ? ) , and colored leaves in mountains , fresh air , and things like that . demand - Our teacher demanded that we have to finish the report within a week . I have to put up with the noise the fireworks make every beginning of the year . Do earthquakes sometimes occur in your country ? Why do you think people attend college or university ? The specialties of those majors are that students can learn a lot of informations that are required for jobs during the college curriculum . Thus , I believe that people attend college or univeristy to prepare for occupations . It is just what I thought after watching movies and television . According the show , now foreigners do n't come to Japan so many sightseeing spots have few visitors . Gift shops , hotels , and any other companies that serve visitors ca n't do business as before the earthquake , tsunami , and powerplant problems . Do n't worry about coming to Japan . 29th April to 8th May are holidays called `` golden week `` . I could not communicate with classmates fluently . . . Writing a daily note on this site is my first step to achieving my goal . Japan became the champion of Asia . ! Congratulations ! I would like to know the condition , payment period and etc . I would be interested to get all this information . Thursday : I 'll have a test about grammar in French and a test about the constitution of Japan . He invented the alternating current ( AC ) , wireless , X - ray , the Tesla coil , Radar , the Tesla turbine , Ratio - control underwater robot , etc . He could even rip the Earth into two parts by using his little oscillator . Nikola Tesla is too great . I have been studying `` Deskstation `` lesson , but I can hardly hear the computer 's voice pretty hard XD ) , it would be very helpful if some of you native English speakers out there , could give me a hand . I like to play guitar ( ibanez gio jeje ) , I play a lot of Super Street Fighter 4 on my brother 's Playstation 3 and I consider myself to be a geek ' ' wannabe ' ' because of the nature of the career I have chosen ( it 's IT based engineering ) . I 'm so depressed . African American people passing by threw a plastic bottle at me , I lost my luggage the first day , and many people in Ohio mistook me for a gay boy because Japanese are more fashionable than others . It is an incredible souvenir for me . And , I will give you a souvenir . It 's also a chance to get red envelopes hehe . I went to the Garden Museum in Meguro Tokyo last weekend . I registered to lang - 8 because I am hoping to make progress with my English . I have much / a lot of information about this because I 'm living in Japan ! I bought a book written by Kenzabro Oe , and another one about decoding about Kant ` s philosophy . In each country , I had a very pleasurable time . However , I did n't speak English well and I missed opportunities to interact with people . ( redundant ) The hotel , where I went with my family to take a hot spring over 10 years ago , has already been turned into a luxury hotel . Faced with an unknown future , I feel a little nervous . Here are two good chinese noodle shops that Sugi recommended . Dangerous abstraction I think I remembered about 200 words in these 2 weeks . There are many maid cafes in Akihabara , Japan . Everybody was suprised that the US president , Barack Obama , received the Nobel Peace Prize because he had not shown any results yet . Fruit , vegetables , milk , chicken , and ingredients for a pasta dish like anchovy , dried tomatoes and dried mushrooms . So to enjoy the videotape , which I purchased long time ago , My choice yesterday was TENDON . My story has been recommended to the chief editor ! I was still tired , even though I slept longer . This is just one of the things that make me tired ) Most of the offices are closed Saturaday and Sunday . I feel their music is associated with southern rock like Lynyrd Skynyrd , even though they are young . But inJapan his blond hair , blue eyes and English are his superpowers , blinding women who would normally never give him a second look . Today , my friend asked me about that . But my friend was not sure what the teacher said . Then I asked the same question to my daugter ( she is 7years old , ) and she answered me , `` Criss cross apple sauce , `` Wow ! I transfered the fee in the convenience store today , so the day I can get it is probably Thursday . It is difficult to move in perfect darkness . I was surprised athow fragrant the wine in the darkness is . That 's a strange feeling to explain . My first diary I hope I will continue to write diaries in English , so my English can advance . hi everyone My Chinese is good , if you want to study Chinese , I can help you . I come from China , and now I live in Japan as an exchange But I tried to write somthing as fast as possible even though it is short or boring . True story - A white horse jumped over a tower and landed on a priest who immediately disapeared from the landscape , Where did this take place ? I was alonein the kitchen . She was smiling . Petersburg it 's difficult to cope with such weather . I do n't know his nickname - - he said it 's private . It is because I ca n't dry my laundry well and go swimming . Anyway , I hope that I can take 1 week of summer vacation and go on a trip to Malacca ( OR Melaka ) in Malaysia . So I pulled out of the competition . In this highly attuned state , the Buddha saw a way to escape the inevitable cycle of old age , sickness and death . Taylor was a mechanical technician in America . He was called the father of scientific management , and he laid the groundwork of modern business administration . American management was developed by businessmen and management consultants , while on the other hand , German management was developed by a professor . Japan adopted the German management system before the war , but it later began adopting the American management system after the war . Apple uses the American management system , of course . Today , I went to see a performance of comic dialogue , hip - pop & Jake Camp , of which all the actors were born after the 1980 's . The sentences , phrases and words are filled with his affection for children and nature and he expresses himself so beautifully that I was filled with romantic feelings and was able to imagine each scene clearly . On long vacations , she goes to foreign countries . Example `` eingang `` - entrance , `` ausgang `` - exit . Casio 's are more expensive than other manufacturer 's , but its quality is better than others . But the keyboard made by with rubber material that has no click feeling , that I do n't like this . To summarize , we humans used to hunt and gather food . The Side Effect of Our Generation in the Competing Society . This may be the side effect of the rough competing society we are in now . Many people simply think that failures are lazy and they just do n't want to work . In general , failures , defined that way by society , lack many things that successful peopledo n't . In this harsh environment , to keep with the idea of equality , I am recalling something someone once said to me . It 's good for relaxing and sleep . So , the recommended time to drink Camomile tea is before you go to bed . Over two weeks , we 've studied ' Hiragana ' and ' Katakana ' , which are like Japanese alpabets . I 've already found it really hard but I studied the things we worked on in class today for two hours by myself and if I study Japanese continually , I believe that one day I will be able to write a diary on here in Japanese and be able to speak it ! Every word is pronounced to improve your listening and pronunciation , and for memorizing , you can learn by three ways , first , by choosing the correct answer out of the three Japanese meanings , second , from three English spellings , finally , choosing the alphabets for the correct English spelling . I 'm happy to find such a useful ( ? ) SNS . but I 've never found a suitable website or space to improve my writing skill . I was born in Xi ' an which is widely known as one of the oldest cities around the world , as many as 13 dynasties chose Xi ' an as the capital city , which makes me proud . Just several decades ago , rivers were completely available for swimming and fishing . Now if I am qualified to change one thing here , I would love to change the environment here . Xi ' an had experienced a really rapid industrial development during last 30 years . People 's material demand have been highly satisfied . Nowadays , when people do n't have to worry about their livelihood , they unanimously find the environment here is much worse than they have imagined . We have extremely hot summer , unbearable winter , dusty spring and gloomy autumn . Currently if we keep doing this , undoubtedly this city will be turned into a place where no longer suitable for people to live , sequentially economic achievements will vanish into the air . Once I 'm fortunate enough to be qualified to change environment here , shutting inefficient factories , pouring money into improving air and water quality , vigorously encouraging environment conservative companies , cultivating environmental conscience among youngsters will firstly be done . I knew their host family has some problems , like they never clean their rooms , host mother does n't work , does n't pay for the bills , and she asked themfor some money to buy food , and so on . I hope they will have new host family soon , they should be more energic , otherwise they might suffer a loss . But today at dinner , she praised the cake , which I made , she asked me did I make this cake ? 6 Please send the report to the directors , and they will deal with it You have to do something yourself . Back problem Japan has been tackling an unprecedented triple disaster ; earthquake , tsunami , and nuclear radiation leakage . So , I was very disappointed . Since I want you to know more about Japan than you do now , I will post two movies about Japan . I hope I have colleagues soon . I have no confidence in speaking and writing in English . I did n't know / realize that starting kindergarten required so much preparation . All of the things handmade by her , except the lunch box ! Actually , she is a skilled / talented lady and is good at sewing and cooking , but when she does it for her daughter , suddenly she becomes a perfectionist and this causes her to suffer . Pleased to meet you I 'm from Japan : ) I am poor at English . My senior left the company . We had a party in a Chinese Restaurant . I like this culture . I tried to remember what I ate yesterday . I figured out that is was motshnabe that made me smell bad . Motshnabe is a famous food in the Fukuoka prefecture and is made with a lot of garlic . Even though it is clear that writing grammatically correct sentences is very difficult , it 's necessary to communicate freely in English . yesterday ( 18th ) was my birthday so many friends sen me congratulatory messages , and my father bought me a chocolate cake . I searched a dictionary too much times and had difficult translating my idea from Korean into English sentences . Is n't it difficult to understand what this sentence means ? 4 years ago , I was surprised to hear a phone call of about the twin 's news . I am a doctor . I got a headache when we came home . B : That 's why I always keep my eyes and ears opening for other opportunities . I wrote down this dialogue as I listened , from an English - speaking radio program . After eating breakfast I saw the movie ' Lord of the Rings : The Fellowship of the Ring ' . Today we talked about his development plan for the coming year . He reminds me of when I was a new employee , and I hope he will work very hard and be happy at his job . I want to eat something that my mother makes . It turns out that wizards like Ron and Hermione , who are Harry 's best friends , are everywhere throughout the world , not just in the UK . That kind of terrible feeling is too complicated to be described in words . However , after crying , I calmed down and began to think it over . The seminor 's subject was ' ' How to be Popular ' ' ! ! Correction and / or better writing expressions are required ! ! ( 6 ) Moreover , I could connect to the internet for free via wireless connection , which allowed me to search for the latest research developments in the world . My father missed my kids . I told my classmate that my teacher told me not to hand in letters again because I already handed in a lot of them and got very good grades on them . Thank you for visiting my page today . so I was planning to go to high school of America after I graduated junior high school . ' Cause I felt that English is too difficult for me . Hello everyone , nice to meet you ! I 've got a working holiday visa , and I 'll go to hokkaidou , Japan next month . Because I was be able to know about their countries and languages . It is so wonderful ! ! ! ! It 's such a cute site and it 's really a surprise for me ! Today I received a notification that rich recognized me as a friend on lang - 8 . I mean , I hope someone could correct my bad English . Before the Tohoku earthquake and the Pacific Rim tsunami happened , I owned it . But after the radiation leak from the atomic power plants in Fukushima happened , I bought a special umbrella . Because I must not get the umbrella wet with rain that contains radiation from the nuclear plants . I hope that I go to Matushima and Miyajima someday . It 's like when visiting a Japanese restaurant in Europe . The foods there tastes like Japanese food , but there 's always be something that holds me back from calling it ' Japanese food ' . Maybe it 's because the ingredients are not really the same even when I 'm following the exact recipe from a website or a cook - book . Onions available in Japan are not the same as the ones in ( from ) Spain , of - course . My dishes are surely paella in a sense as recipe - book says so . Am I making sense ? ) Nowadays I only sleep . The writer ( author ) of this book is dead . One cold winter day , she arrived in London with her father . There was servant named Becky in the school . I 'd like to go to the UK to study English culture . Their music and the bar 's atmosphere was amazing ! But I missed the last train . . . I want to solve environmental problems all over the world . Actually Kobe was an urban city and had beautiful scenery . I wanted to breathe in clean air and see a lot of beautiful nature . Fortunately I have known and experienced the beauty of nature . I want to change this situation and save the futures of the children of & nbsp ; Vietman . I want to save youand your children 's earth . If opportunities arise , please help us . There are many young people who went to Tokyo from their country for their studies in college , their work , their big dreams , or just their longing for the big city . My goal of learning English is to be able to use English without difficulty to communicate with people around the world with different cultural backgrounds . I enjoy University life everyday ! There is English class in my university everyday . I wanted to study english when I entered a university so I 'm very happy . A way for us to help each other Some of them looked at the business hours sign but did n't cacth the small words on the top saying they were closed . Since the beginning of the semester , all my concentration was on her . It 's very hard to describe her looks ( or appearance ) . I heard this movie wasmade by the director of `` Harry Potter `` ! Concerning the scale , it was n't great as `` Harry Potter `` . He could n't overlook that I seemed to have changed my identity and lost my pride in being Japanese . So next day , I had my hair cut really short , and dyed it black . Beyond that , I could only tell him `` Thank you for everything , everything you have given me . `` And I left his house with saying `` See you later `` . So I decided to try to take more oppotunities to tell my friends , my juniors and you who is reading my diary , what I learned until now . I should never disgrace his honour . I like Japanese cartoons , novels , riding on a bicycle , hiking and snowboarding . One of my classmates from college already got married last year . I feel a little surprised because it 's only been two years since graduation and it 's possible that their financial condition is not good enough for raising a family . But maybe my thinking is wrong . Each couple that decides to marry has probably already thought it through to have finally made such a hard decision . After getting married , they might have many problems that before could not have been imagined . Sometimes it will be difficult to get through it , but if two people love each other enough , they will finally solve the problem . But every time this thought comes to my mind , I realize I would do just the same thing as them . I found a nice restaurant . I ordered a poached salmon salad . I said `` Wow ! `` I was so excited . but I am just curious about it ^ _ ^ I 'm going to attend some training courses on human resources so that I can enhance my competitiveness . All women were to wear black dresses and men were to wear black & white attire , so it was a very gorgeous atmosphere ! ( Additionally the company staff gave each guest a mini chocolate fondue machine . ) The main event was lucky draw ! ! While I did n't get it , I got a travel ticket and a digital camera ! To be honest , I ca n't express clearly what it is that I expect . We need expectation in our life , without expectation life will become boring , without expectation life will have a lack of motivation . I believe that when leanring a language , listening skills are required before you can speak it . You may see great improvement in your English abilities . Is it a diary ? Ya , I should mention something about myself ! I had a little confidence in my ability , so it 's really regrettable that I ca n't take that job . Cherry Blossoms are so beautiful . She could n't speak Japanese when she came to Japan 5 years ago but now it is different . Going out into the world and earning money is a necessary part of being an adult . It 's the third time they are lucky because they wiped up 2004 and 2010 . These adult - only images may cause sadistic impulses which are definitely not suitable for teenagers . I can not remember words which are too long . This is because she fell from her bike and hit her head on the concrete and she Because she had hit her head , she did n't understand me . Since I need to use my English for my job , and my boss scolds me about my poor English often . I watched Transformers on TV , washed clothes , ate maccha icecream , and masterXXXted , lol joking . I wanna ( want to ) try to learn English on this site : ) It will be better for me if somebody give me a title so I can write another post . I feel a little nervous , but I think what I should do now is to make myself prettier , that will give me confidence . Furthermore , I will introduce our culture to you if you have any interest in Korean culture . I hope we can become a good friends . Have a nice weekend ! ! The weather is pretty unusual . It 's hot in the daytime but very cool in the nighttime . But I liked it though . I really wanted to buy new clothes ! ! My current aim is acquiring a MBA degree at a foreign University in Japan , for example Mcgill and Bond . I want to do business globally , I think . Thinking in the positive way , most my time will go to studying and activities . Should I get married and have a family , raise a child or find happiness in my daily life as my friends look so happy I am in a dilemma . I 'm not relaxed yet , but I am writing in my diary because I have some free time . I retired early at the age of 56 after 33 year 's as an electric engineer . Since then I have been studying English at an ISS school , an English school in Japan . and prepare for the next appointment . Kuta beach is famous for beginner surfers . I am beginner surfer , However , when I went to Kuta beach to surf , the waves were too big ! Her mother - in - law and husband were very worried about the effects of nuclear radiation on the baby , so she came to her husband 's parents ' house in Osaka with her baby . However , she feels uncomfortable staying with her mother - in - law every day even though her mother - in - law is very kind . I heard that the best way to learn English is to keep a diary in English . So , I will keep a diary here . For that reason , I want to learn English and make a lot of progress with it ! ! I stopped studying English when I started working . It still concerned me for 10 years , because my company is planning to do business in the Asian market . I heard that homestay family is very important to improve English . I have started studying English recently . Today , I worked at my part - time job and afterwards , I went to the beauty salon and went to a book store to search for information about Taiwan . Kimchi party The kimchi his mother made was very delicious . I wanted to eat many dishes he made with that kimchi , but I could n't eat them because I got drunk yesterday and got a hangover . ( T _ T ; I can change my image , and look better than before . I went to the night shift , I got up at 7p . m . Because of my nursing job , I have to do this ( - _ - ) zzz I was unstoppable with my friends ' advice . I do n't know perfume well , but I think Europeans have a better sense for perfume than Japanese people . It because our noses are flat ? My cousin 's husband 's ancestor was a Viking ! I want to study English more and more . So , I want to have a strong heart . * Color : There are yellow , green even purple ( ? ) tomatos which look like green peppers and they did not taste sweet . I liked tomato honey very much it smelled like tomatos and tasted mild . What is the difference between `` anytime `` and `` whenever `` and , `` anything `` and `` whatever `` ? > > Please ask me ( anything or whatever ) you want if you have questions . The downward spiral has continued this year . When it was about eleven o ' clock , I went to the canteen and enjoyed my lunch . We were supposed to have some kind of debate on multi - national - corporations , as either a supporter or an opponent . Our teacher was a bit embarrassed so he sometimes helped us to get to the point . I felt terribly bored and tired so I did n't listen to the teacher a lot . My knowledge of English is very weak . Because we had no classes today . So now , I found it 's harder and harder to express myself in English . My mom said , during the summer holiday , you can get work and at work you communicate with people in English as much as possible which is why I should try to improve my English ! Which I think will be a nice experience . skillful people , I ranked 4th in the end ! Very excited , is n't it ? We ordered one course which included some meat , fish , the other stuff . The story was too complicated to understand for children . I don ` t think these are synonyms , but I can ` t feel in what situation which word I should use I want to express my thoughts in English better , make less mistakes and get more training , because experience is the main thing in learning languages and other deals , I think . This town has three absolutely beautiful beaches . It was a rainy day . The United States is the most interesting country , because it has produced a lot of Internet services that have changed the world . Ability , the States and Internet ; ability , the States and Internet , Yesterday , I also did n't understand English well , so I want to improve my English . These days , I 'm studying for TOIEC test . So , I would like to learn a lot of English grammar and get a good score . Thanks moongaze , for your corrections while I was away . Our 95 - year - old mother had spent a day at a local day service center . Very delicious ! I could n't climb it but it was beautiful . I 'm especially worried about reading . I 'm searching for the most effective way to build up my vocabulary . while reading , if you encounter an unknown word , you guess the meaning and read ahead . Even if you do n't fully understand it , it does n't matter because you will see the word somewhere else in a different context . With this way , you have to look up in the dictionary every time you encounter an unknown word . They ca n't read anything without a dictionary because they are beginners . last but not least , you should carefully pick what to read for your vocabulary building . Why did my professor decide to schedule it tomorrow ? I ca n't understand . I think some couples had troubles from the decision . Tomorrow , I am going to meet up with my friends . The jogging trail was around the Shimen Reservior . That is , I always become sleepy after I hear the alarm clock ring , and I lay back in my bed again . Somebody let me know about this tracking thing ! ! ! ! ! ! ! ! I was so up with reading wrapped up in a book and listening to music at full blast that I did n't recognise the Asian girl sitting next to me , her face covered with bad [ rotten ? ] eggs . I want to give them a real roasting if this situation happens again ! Actually I briefly analyzed the scene of `` Le Papillon `` ~ The little girl follows an aloof old man to look for an Isabella moth , a kind of moth more beautiful than a butterfly . I moved to Isikawa prefecture , Mie prefecture and Nagoya city in Aichi prefecture on business . I took my second daughter to a pediatrician today . She 's coughing from a cold . A doctor said this is not serious . When it comes to getting old or becoming elderly , most people would avoid images , such as being lonely , or not being able to work the body or brain as before , and having fear of the near death everyday , but truly is n't getting old really a better thing than being young ? ? She is from China , ( born in Beijing , nationality is Chinese . ) but has lived in Japan for over 15 years . But it 's quite difficult now because I have a fracture in the right finger . . . : ( Let me introduce myself briefly . Anyway my favorite thing is to watch dramas from the US . Yesterday I happened to meet seven friends in a single day . But It 's [ it was ] rainy today . We went to a good restaurant , and had a nice dinner . We had not seen each other for such a long time . 73 years ago , the Japanese army killed about 300000 civilians in Nanjing , the city where I live now . But what do we remember ? _ _ Not ethnic enmity but the pain and stupidity of war . I know in not only China but also Japan there are still many people who just remember the ethnic enmity . Is that right to regard the enmity as patriotism ? I want to improve my English skill through Lang - 8 Now I am determined to re - read it again , because of my little nephew 's recommendation and advice which is actually what his teacher said . This morning I checked 1 detail in a part of a drawing and 4 assembly drawings . I felt a little fatigued and left my office . First , it 's safer . In a place where you 're not familiar , a friend is very important . You never know what could happen to you if you 're alone . If you travel with company , other people can help you right away . Traveling alone is more dangerous than traveling with company . If you travel alone and you make a discovery , you might have no one to share with . I 'm a little nervous and confused . . . Unfortunately , I 'm a smoker and I do n't want the Japanese government to increase the price of cigarettes anytime soon . NEW TEACHER he looks like he hated the question . I understand that there are a lot of possibilities to find job , but it 's an awful place to live . We walked and talked a lot . Jay Chou These days when I listen to his songs again and by looking at his lyrics , I Some people thinks it is inconveniently when they do it . We have never won the championship , so we want to win the championship . I washed their gravestones and watered the flowers around the stones . This is because I need to do some work for an academic subject , Educational Psychology : Institutes and Their Groups . or observing the birds , the fishes , and all the beautiful animals . I make a cup of coffee every morning . I saw actors , however , I forgot their names . I feel so happy now when my friends who I knew on lang8 still remember me and send me an email . Practice writing and listening ? I went to see a doctor as soon as I felt the pain and was told that the muscle had a problem but would recover sooner or later . Many people stop to ride motorbike in this season . Although it 's cold , mymortorbike cheered up me ! According to an objecter of this strike , my proposed solution is in one important respect actually worse because it involves wrongly coercing all taxpayers , not merely the few military conscripts necessary to fight the war . because my dad went to an expensive restaurant with his colleagues ! ! ! ! I ordered a lot of meat , salad , rice , drinks , desserts and many other kind of things . I hope that one day I can study my PhD in America and go surfing again in LA . I hope this is not the beginning of rainy season . I will go to `` Kenji Miyazawa 's `` museum . And delicious foods too . Though I do n't have many law classes , and my law classes are all about business . I ca n't have anything , including water , but I already forgot this and I have had milk tea . in KUMON school every Thursday . Boastful talk I talked about morals and immorals in English with my friends . It was difficult for me , but now I feel relaxed ; ) He was a quite a gentle Miniature Schnauzer and he gazed at us with his twinkling eyes from his cage . It means `` doctor `` in Japanese . But I ca n't write English very well . Momoko : Is it true that there 's no food to sell at supermarkets in Tokyo ? I sat down there and thought about my future . But this year , I 'll go to Yakushima , it 's one of the Japan natural heritage . I 'm a beginner at singing English songs . This afternoon , I will coach an elementary school baseball team . If someone asks me : `` Do you like English ? `` Because of my poor English skill , I understood only less than a quarter of the English sessions . I 'm reading `` The Lord of the Rings `` in English . I finished reading Chapter 1 . It is interesting but also difficult for me to understand the English . Hello ! ! ! ! Everybody ! I used to be a system engineer , but I sometimes got a headache . Today , I studied ancient Japanese culture in Japanese History class . For example , in Nara , there is a beautiful mountain called Miwa mountain . I 'm an elementary school teacher in South Korea , and I really want to speak english fluently . I was given a cold shoulder ; ( , I have been off since Friday , and spent most of the time at home making a precise itinerary for Italy and packing my luggage . For the time being , I ca n't study enough English and can only use this PC at the lobby so I may be making a lot of mistakes . sorryyyyyyy . That is to say , crane have a auspicious meaning for Japanese . Learning French . My teacher is Taiwanese , but she only speaks to us in French in order to make us adjust to the speed and the accent of the French language . I found that English and French are a little similar , like the spelling and some pronunciation , so while we are taking the class , we always guess what the word means according to our English ability . Hearing or listening working student , studying at the art and I enjoy thinking of new ways to improve the life of people and make us human beings I want to try performing Rakugo in English , and tell people from overseas about the Japanese sense of humor in the near future ! ! I 'm going to go to Indonesia in next March , because of the transfer held by the a company I work for . I 've already studied English in high school . Now I 'm confused , since I 'm studying the Indonesian language and English at the same time . Because nowadays , Korean students and Japanese students tend to be totally separate according to their own nationality groups . Anyway , I have recovered from this sickness . Some place within my heart It 's like a shining diamond , the diamond is still in the box , I 'm provably making some mistakes since I am ignorant about this site . On the first day , I went to sea that is Kujukuri beach with my friends . Actually , I was supposed to play volleyball before beer garden . Summer vacation in this yaer was so much fun and very fulfilling for me ! ! who 's gone abroad for about a month . ( singular ) It is important to understand the cultural difference . For example , how people handle things as they are faced with difficulties . I believe that we need to establish certain trustworthy relations for each other . Did we put too much pressure on him ? Tomorrow I have an examination in English grammar . grammar practice This is a very valuable memory for me . fortunately , a car my colleague drove stopped and he / she called me . so I apologized to my boss . I 'm currently enrolled in an English program in which I can talk to Filipinos who are students or graduates from the University of the Philippines . Ok , well , I decided to write my weekly journal in English as the writing teacher `` recomended `` . Each member introduces themselves . The reason why I haven ` t used it is that I didn ` t know the system . Well , I stated to play trumpet about 10 years ago , , , , ( so long . . . It 's probably because I broke up with my boyfriend , or because I am tired of my part time job . I want to get a foreign boyfriend , so I can learn English from him . I have never been in the company of foreigners , so lately I am attracted to them . at first , we played games in order to develop our sense of team - work . it is difficult to climb over it by oneself , so we firstly had two boys help the girls climb over it and then the boys helped each other to climb over , but there was still one boy left who had to climb over it himself . after the games , we had a barbecue . I love watching movies and learning languages so I will post it that relate with my interest later . Today I was late to work again . I was 1 minute late . : D Ahhh , I wish Santa will give me a new one on X - mas ( Christmas ) . Today we have a compulsory course . As I have missed it many times , I ca n't catch up with the teacher . My friend visited me and we went for a walk together today . We sometimes had the same tea togeter and talked about our dreams . Last week my younger daughter got high fever , and her doctor said that she had the mumps and that she could n't go kindergarten for about one week . I took three days off , my husband took one day , and my father visited my house three days driving for one hour to care for her . I was going to eat a lot of strawberrys this morning . I could watch it from the harbour bride , so it was spectacular ! ! ( We 'd been waiting for 8 hours to keep a good place ) They really do n't care about the environment . And it 's about the tragic incident that occurred in 2005 in the Guard Post . It is very cold today , too . I have to dress up [ today ? ] because I have a party ! I 'm so sad and downhearted . So I study English by using a `` Nintendo DS `` . Father and I planed to go to my garden every Saturday morning . We also plowed a new field , and scattered a bag of the fertilizer in the field . Goodbye , then . However , there is a country that allows kids to drink Is the Japanese 20 year old legal drinking age appropriate ? I am Nana from Japan , and I have lived in England since this August . I will stay here another ten months . I study English in England now , and I want to improve my English skills and I start to use here . She especially liked some sunglasses and took some pictures while wearing them . / / Them = Sunglasses . We can buy various foods in Australia . Of course , I can do it . The purpose of my taking part in this site is to advance my skill of writing in English . If there are any mistakes or strange expressions in my sentence , please correct them . From morning to midnight , I did experiments , and then went home the next day . I am trying to make some software with my friends during our spring vacation . My team has 6 people . But now , when I closed the book , `` The Autobiography of KFL `` I knew the truth that the music was trying to tell me : MAKE A DIFFERENCE . Written by Robert Lee Frost Today I found this poem by chance , then became inspired from it , so I quoted it here . There are many chances to study English in Japan . I almost never go out during the daytime , so I do n't get used to the heat . So I am thinking it would be more efficient if this company focused on instilling love for the company in our minds . I arrived the platform , and a train came , but I could n't get on because of too many people . Suspension does happen sometimes because we play much more than normal players , playingforover 36 hours with two different people might trigger theserver 's auto suspension feature ( automatic detection by blizzard 's programming ) , so being suspended by botting does n't mean we were botting , it means we aresuspected ofbotting . This company built many thermal plants and nuclear facilities . Only few elite can enter this company . Fukushima nuclear plant already belched a certain amount of radiation around there . The main industry of Fukushima prefecture is FARMING and FISHING . Fishermen and farmers in the Tohoku discrict will definitely have to shut down their businesses . Definitely it is because , the Japanese goverment will not be able to bulid nuclear plants any more , and they will have to check existing nuclear plants for a long time . On top of that , food costs / the cost of food will be also rise . The Japanese government must rebuild many destroyed infrastractures , of course they can do it . Tolong dikoreksi ya . My mom is bustling around the rooms cleaning and doing the laundry . The soothing sunlight comes through the window and cast itself on the floor of the room slightly blinding my eyes . The due date is around October . It might be really funny when my mom ca n't speak English to communicate with them I had no idea there is such a good website in the world where all language - learners can learn together and make progress . I 've been to quite a few places , especially in Europe , but it 's not enough yet . I was surprised that there are so many people who are good at Japanese , and I am interested in how this website works . Excuse me . I want to master the functions of Lang - 8 , and communicate with the members . First , Merry Christmas to everybody ! I 'm very glad to take part in this network , but my English skills are weak . Of course we made an appointment and ate the delicious food . It 's quiet and comfortable . My coworkers are really nice people It was very difficult for us to find the event . I usually go to church on Sundays . Yesteday I had a service at Syonai Ryokuchi Park . variety of food which everybody brought . Everybody was enjoying the tennis and Lacross matches . This park has a very nice cycling course , so I was cycling there in Though I like thrilling race but I prefer to watch more safety race . It 's a very hard job because I have to pay more attention compared to other kinds of jobs . It looks like a bistro and is not very formal , so I feel comfortable . The other day , I happened to find the answer that they eat ants . Although I 'd already known about the great writer and his works , It is almost same in China , and surprisingly some schools have taught English since their students entered school in urban areas such as Beijing and Shanghai . Japanese culture vol . 1 SUSHI Now SUSHI is a common word all over the world . Various countries create their own SUSHI . SUSHI with avocado was created in USA . It was invented in the Edo period , about 400 years ago , in Japan . I will eat SUSHI tonight . : ) But in autumn , the sounds of insects such as crickets , singing crickets or Japanese bell crickets , green tree crickets and so on are very nice . I want to know about your idea about sounds of insects from many people from many countries . Finally , we are supposed to go to eat sweets at a cafe . We are supposed to go separate at Shinjuku at 11pm after seeing her off . But our family may be considered weird by our neighbors . Reality . but sadly it is reality . aaaaaaaaand I love watching the stars . Maybe tomorrow it will continue to go on . I heartily hope that some nuclear facilities that are now at the risk of exploding will safely settle down safely . It 's really nice city and the weather here is cool . This is the first entry of my diary . I saw a video on YouTube about this site , and I thought it would be fun , and a chance to improve my English and learn a little Japanese . Because the recipe is too obviously wrong . Of course my English skills were also part of the reason . But , I heard by accident that she 's been dating someone . Lately , China 's weather has been very strange . My hometown included : last week I never got out at all , because of the heavy rain ! Once I went out to restaurant to get lunch ! I can swim a short distance so I ca n't interrupt my practice ! So , I have a good idea , I can go to the swimming pool next to my home ! my mother and I went to the nearest swimming pool but it 's really terrible , because the pool of water there is dirty , I can see many small pieces of dirt in the water ! Japan is famous for its cartoon shows , such as Pokemon , Doraemon , and Dragonball Z . In universities , it 's a common phenomenon for students to occupy seats . Although some people hold different ideas about it , I think that each student should have equal rights . I need some to help me on my English skills . He said this place is a good way to learn english . But `` twp `` is used in the English subtitles , and in the `` Internet Movie Database `` website `` twp `` is also used . Thanks for reading my diary ! ! I understand this all depends on the exact amount of money . But even if it is just a hundred dollars , I 'd suspect that my friend does n't have the money to solve his problems by himself . But instead I saw `` Lie to me . `` I liked this movie very much , cause it was very interesting ! ) Maybe it 's unrealistic , but I think it had a wonderful idea ) More than ten years ago , there was a broadcast on the news that the scenario writers of DQ and FF would collaborate together to make a RPG . I saved money and bought that game which title was `` Chrono Trigger . `` It is said that Chrono Trigger is the best RPG in RPG history . I often read a book in the coffee shop . So the book holder is very useful , It was so useful that I was impressed . He answered that the most important thing is talking to / with each other a lot . But nobody asked `` Why are you late ? `` since they know about today 's traffic jam . Most of foreigners say that it tastes good , too . Coffee bean is more effective than Coffee Mix when you are on a diet . I 'm so sleepy Someone said his death was because of this film . We turned off all the lights in our dormitory then sat down alarmingly , arm in arm . My husband said , `` I need a portable hard disk to fix it . `` Actually , he wanted it before . I 'm writing my diary from a mobile phone ( cell phone ) , and I 'm not using a dictionary . Mass media must convey correct information . If we believe wrong information To everyone who wants to study the Japanese language , I 'm very appreciative if you could review my English and revise as necessary . John Travolta and Denzel Washington played the main characters in the movie . The thief had stolen her motorbike . These days English is getting less necessary for me . I can speak easy English . My teacher says `` if you do n't know about Japanese tradition , language , culture etc , you wo n't be able to speak other languages `` . Many Japanese people do n't know about their own country . After beginning his business , he overcame this tendency . And the manicurist is very kind and funny . Jacket potatoes I 'm going to Shanghai this summer . I 'm so excited because Shanghai is a big city and will have the Olympics . I may not go to olympics , but I am excited . I think it makes a good connection with Asian countries . But is the high housing price unusual , or is it a natural result of quantitative easing ? As one of my favorite teacher is my good friend , I asked him if I could take group lesson with my Skype friends and at the same time I asked my best Skype friends Zac and Mark if they could talk with me and my teacher . and my philosophy in life is based on my high school days . ! I want to listen to others before they listen to me , They take care of others before they take care of themselves . I want to have Jesus 's heart , full of love and compassion . I 'm terrible . What I 'm going to say is just my experience and personal opinions , So even if you can pass the Cambrige English examination , you have to work for a Japanese company at the beginning of living in a foreign country . Of course there are some exceptions ; some foreign companies want to get Japanese speakers . There are some dishonest Japanese recruiting agencies in Singapore and Hawaii . I think you are a very careful person , so I do n't think you are going to register with those disgusting recruiting agencies . As far as I know , there are some of those kinds of recruiting agencies in each country , especially Hawaii . Although some problems occur , I can learn from them . Furthermore , traveling abroad alone improves my English ^ ^ Nobody can help conversations so I have to manage to speak English . Anyway , it was too cold . I learned from my friends that Lang8 can help my English progress and that someone would modify your post . All children , especially boys like to pretend they are searching for `` big treasure `` with their friends . They were very upset about their families ' situation . This map had information about an old pirate 's treasure . The Goonies ( name of their group ) went searching for the treasure to help their parents . Because I changed my career to a foreign capital company , What procedure should I take / follow if I want to join ? Today , I went to the New Field to have ( take ) my English speaking class . The class is taught by Robin , who is a funny English Teacher . I 'm very glad that I can totally understand what Ronin has taught and have a lot of fun in class . Going back to Japan I need a lot of practice every day to get good at language . My hometown 's one are colored with red and white . But the most popular one is colored with only white . My precious Michael I love Michael Jackson . His songs are very beautiful to me . I 'm not sure why I was crying , but I could n't stop . Michael wishes is our wish , at least in his songs , and hopes our hope . I developed a rash on my chest . If a medical clinic were open , I would have gone to see a doctor . I will go to see a doctor before I go to my office . A member of my gym , who is 25yeras old and very macho , is traveling in Argentina now . Traveling makes a man grow up , but he should never forget to run away at the approach of danger . I wish we had Silver Week every year . Gensou Shoujo Taisen Kurenai Even though I paid $ 600 for the schoo 's internship program , they let me go to the Chinese company in Australia . Of course , I asked my internship adviser before starting the program : `` Which language do they usually speak ? ? `` , He said : `` English . `` because I came to Australia to study English . I frequently got around on foot in Japan in spite of the fact that I have Unfortunately it was cloudy and windy . The heavy wind made the sea rough . . . It took around 30 min from the pier to the diving point . The boat rocked in the sea and it made us terribly seasick . . . To prevent it from getting worse , I watched the horizon . . . I could feel a strong swell at the bottom of the sea at the surface . It was enough to forget to search for lobsters . After the first diving , during the break on the boat , I got seasick again . One of my co - workers gave up the next dive because he was seasick . . . But the most important event is coming ! In 15 minutes , I 'll leave for my hometown to stay at MOM ' S home . I keep on trying these steps until my shadowing for it is perfect . It takes about five minutes for one phrase . I search for Englsih homepages about `` mushroom `` these days . It 's very very interesting to read articles about mshrooming in other countries . I am very tired , because I did not sleep to prepare for the examinaion . I 'll do my best to continue . Although I switch on a fan , I don ` t turn on the air conditioner to conserve electricity . I 've registered my name for Glastonbury . Normally I get twenty - five thousand wons , but this year it is less than last year . there 's a character , Sharpay . After that , I introduced myself for my new class . She is a spokesperson for Shiseido ( A big cosmetic company in japan ) if I remember right . Now with my friends I live in a very nice house with a balcony and four rooms . We only finished moving yesterday , because on Saturday soon after we arrived we started an opening party . I believe that through this , I could truly improve my speaking skill since those who introduced this way to me speak fluent English . They 've been telling me that it 's hard for them to raise a baby in a foreign country without their friends and family . I felt a bit sad to hear that because I 'm their close friend but there was obviously nothing I could do for them . Although they have many friends in Japan , at some point they were seriously considering how to meet new people and how to make friends I hope they will enjoy the rest of time they have in Japan and I want to make their life here more enjoyable at least when I come visit them ! A famous middle - aged american actor , who went to Japan because of business , met a young , pretty american girl in a hotel , who came to Japan with her husband , who was a busy photographer . When I watch a drama , I do n't use subtitles . When we into the bath nobody was there . One was an inside bath and the other was an outside bath . I enjoyed having a chat with my lang - 8 friend in India last night . Please read my diary and correct my grammer . Recently , every time my friend sees me , she always says ' Why do you look so tired everyday ' . I noticed that to study is better than nothing even if I failed the exam . If I study hard , I do n't mind the result even if I failed it . I just wanted grumble and express that I 'm going to study from now on . The mistake was very important . I ` m very happy that I can count on somebody who knows about their language , and everything , because they are British , or from other countries where English is the spoken language . I hear that my grandma was diagnosed with apoplexy because she hurt herself carelessly . I read a newspaper before breakfast . I always talk to friends on skype every morning . A lot of my friends tell me that I am nice , because my character is cheerful . Because it REALLY HURT ! It 's wonderful . I 'm looking forward to watch next 3D movie , Alice in the Wonderland . I found that I start to waste time since I got my admission . I stay up late and watch tv or go online . If there 's E in front of the name of the soap opera , then you have to wait . I cooked a handmade breakfast this morning for the first time in a while . My wife and I will go to Jeju Island tomorrow , and stay for 2 nights and 3 days . I work in a construction firm . I was majoring in Architecture , but now I develop PC software to do business for employees only . I can understand English and I can read it , but I 'm not that good with writing or speaking . Recently , I realize there are many similar words in English . 5 ) I 'm wondering if he gave a good presentation . I 'm listening to Complicated by Avril Lavigne now ! Please let me know the difference If so , what 's the matter with it ? Then , I boil some water and drink it while stretching out myself . As a result , everyone enjoys a good chat him . It is my favorite type of rice cake . I found this website URL I presented a bouquet of sweet peas to her . I do n't think I am old . High level cholesterol can cause a stroke / cholesterol level or something bad for our body . a boring diary . I like princess characters , so I enjoyed so much . I was tired so I wanted to sleep , but I could n't . Driving license in NY A driving license is mandatory in US . Even though it is convenient enough , most poeple tend to apply for a driving licence . That 's because the license is also useful as an identification . I am now proceeding to get a driving license . After school , I decided to play basketball . I liked playing it very much . I was confident in the game . My tiredness was unable to keep me away from my love for basketball . joined in the game . I said to myself , ' Whatever happens , I must maintain my composure and keep a strong heart ' . Happy New Year , everyone ! ! Do you think that honour is popular nowadays or did it become old - fashioned ? My healthy plan 2 ! The main TV companies and many of the other broadcasters just think about how to protect their privileges . TEPCO , the company which operates the nuclear power plant , the executives of which are accused on TV daily . But on TV we are not told the much more inportant thing - that the head of TEPCO went to China with people who used to be executives of the Japanese TV companies . I can not believe him . What is broadcasted about the nuclear power plant problem overseas ? so I must improve my English writing ability to adapt to the new job as soon as possible . It is not very nice to watch , but My condolences to everyone . P . S . : Due to these abnormal weather phenomena ( lately ) , do you believe that 2012 really exists ? Also , I saw the sunset over the river while walking and it was really beautiful . Now I can hear birds voice , and see a clear sky , a beautiful sunset and leaves changing the color almost everyday . I take an English lesson once every week . I like to talk with my English teacher but I ca n't speak in long sentences . I should increase the time I spend speaking English or I should find another exercise for that . In the third lesson we had English presentations . I was very nervous ! ! My first language is Japanese . If you have a problem with Japanese , I will answer your questions ! ! Since there is no way I can wake up so early in the morning , I refused her right away . In spite of that , I hurried to reserve a shuttle service for her . Books or the internet ? In the afternoon , I was browsing magazines in the bookshop . Even though it has n't been changed in recent years . . . As soon as I came home , I registered . At that time I thought that I might die . everything is him . . . My teacher sang a song which the title was `` Linda Linda `` . He was such a spirited person who made us very exciting ! One thing that I was not quite happy about was that I could n't see the contest of female dress ! I can remember running around the supermarket . I 'm an university student who is studying meteorology right now and I 'll graduate soon in March 2011 . I must go to chorus practice until ten o ' clock today , but I I could not wake up early this morning ! ! So far , my weakness is `` articles `` and `` plurals `` . Finally , school uniforms develop inner individuality and creativity . I live in Indonesia , but sometimes I travel to Australia for holiday . I like living in Australia because there no pollution like in Jakarta , Indonesia . The worker explained it very well and was very kind . With drink , we exchang information . . . . When I heard a Podcast from Los Angeles the teacher who lives there and teaches English for non native English speakers in the world answered a question ; what sound do you love . His answer was it would have to be the sound of the garage door closing when my wife comes home . You know , it 's a little troublesome because again I have to download the lost memory it used to have before . * sigh * The dichotomy that is common of postcolonial literature , and that 's the dichotomy between a sense of homecoming and exile . harm : Honey bees wo n't harm people if they do n't do anything to them . I suggested that we had better go to see an ophthalmologist first in case there is a more severe problem that we did n't know about . Oops ! The fee is very expensive even though the insurance will cover it . Furthermore , today was a kind of an anniversarry for me . 2 months passed , when I started going to her house regularly . England is okay , but the problem in Spain is the [ ir ] league . There is grammar in Japanese , of course . I can speak Japanese but I understand all of the grammar . SO , I plan to study from basic grammar to high - level grammar . First of all , I will look for grammar book . I think English grammar is very deep . . . Also , another person was stoned by native children when he was riding a bike , and my friends have experienced unwanted sexual conduct from their home - stay family and professor . Before , I took ESL ( English second language ) ; then , some Mexican insisted `` the native do n't trust us because the policeman often stops us . `` When will you do it if you do not do it now ? We had also listened some little stories from my dad 's CD ( a CD that come together with a book from his English class ) , then we listen on the car radio and translate to portuguese to see who got what the story was wanted to say ! ! I am having trouble writing my self - introduction in English . I was very shocked by the news that Japan had a disaster , I could n't believe it happened in my country . As a person who is taking care of children , I am really worried about mothers who are protecting their children without heating and water for drinking in stricken area . It 's autumn but I 'm looking forward to the coming of & nbsp ; spring . What is your favorite character on Dragonball ? The clerk was kind enough to fix my glasses and wash it free of charge . Looking at the big picture , the disease was necessary to me . I am a nurse . What is more , even if I have an idea about work , I ca n't make them understand my opinion precisely . I 'm going to Vietnam for a month during the summer for a kind of practical training . I believe it will be an unforgettable and useful experience ! I was surprised to hear that . Although I never gave up studying business English . Exercise is necessary in life . I felt that this is a very useful way to study English , so I decided to use it . Yesterday , it was around 40 Celsius . This week I choose French as my secondary foreign language for next semester to learn . The title is `` Nostalgia `` . Your body tries to change your brain conditions . I thought it was a funny idea XD ~ If I have that one , I will always wonder where my cat is or imagine where he came from ? Actually I prefer dogs than cats , but since my sister adopted our cat I just started to see its adorable part ! - the image I had of the movie was formed from all the gossip I had heard . I want to snowboard ! But it 's fun to snowboard . Is being a student with bachelor degree enough ? I lent him the money that was in my pocket . and I thought about `` I want to go to abroad ! ! `` Last night was so beneficial . I have to wait until Monday . There are many assignments and drafts in my USB . I got a little energy back by looking at the dog 's picture shown above : ) I have to tell an embarrasing or a horror story this Thursday . introduce yourself To me , it 's important to learn new things that can broaden one 's mental vision . I 'd love to challenge things that are especially too hard / difficult . nowadays HANRA has extended its business overseas . when I worked odd jobs at construction site , I felt it was worthwhile after completing a structure . Actually , doing extracurricular activities does n't disturb our studies if we make full use of our time . So I suggest that students do extracurricular activities along with their academic studies . My friend has homework too , but he is listening to music while resting his legs on my shoulders : D I am not a masochist . This site was recommended to me by my philsopher professor . I must more careful to not set a fire . unfortunetely , I have an appointment . even if I have an appointment , why it is unlucky for me . Because , that appointment is having a class , which mean I have to attend my class . I dont want to recognize . And I checked mixi some times ; Japanese SNS service like facebook or MySpace . Please check my writing and comment on me . I went to a public bath with my son . There are various types of baths inside and outside of the facility . Hopfully , I will improve my of English & Japanese here . One of them illustrated a period when I was in primary school and traveled with my classmates in the park of Prince bay . It seems that I can learn a lot from here ! ( - : And also , I hope I can make friends here . It 's my first writing . Is this the right choice , changing to a totally different area ? I have been working for four years so it was natural I felt bored with my previous job , but wo n't my new job seem just as much boring to me after another four years of work ? If so , what is the meaning of change ? Continuing to change to a third one ? I really do n't know what I should do now . so they recently came to Japan on May . This is my first dairy . I have a Border Collie . A member of the club taught me how to throw a disc . and fast . The board of education in Japan prohibits a normal book store from selling school textbooks . Now I ca n't write a proper English composition . I almost forgot the basic but important grammar . The things I want to say all turn into Japanese . I talked with a native speaker for about 2 hours starting from 7 : 00 ( English is only 1 hour . I will talk with a Filipino person for an hour . My Pastime I took a job as a barista . He also told me that I should reveal my talent little by little , while showing respect to my seniors . Some of the his work is heart - warming and some have strong messages . Sometimes I talk to my friend who I love in my mind . But I got 6 parking tickets including a handicapped parking ticket . It was totally my fault about the handicapped parking ticket . I know that I should not park in the handicapped parking areas under any conditions . I do n't know why I always have a tendency to doubt myself . Toyota has continuously developed based on strong trust . But now , the company has been losing its strong trust . Losing trust may collapse even a gigantic company . I 've been studing English in Australia since last february in order Children who chose to wear a Danjiri 's costume joined the celebration . I will go to watch the Danjiri again today . I think that I should learn English . Because , English is so difficult for me . The Black Eye And for women it 's kind of an important factor that Usually we ask our dates how old they are before we start S if Americans look at me , they might see me as 20 - year - old or so . With the magic wings of imagination , we can take our tedious mind off to another world easily so that we have the chance to get away from the outside world for a while . Snow - covered My colleagues in our Dept . She was good to us and to a certain extent she would side with me and even take responsibility if we got into trouble . Usually we would talk at lunch time and share what was happening in our daily lives . I do n't remember when she stopped having lunch with us , giving us the lame excuse that `` she is on a diet now `` , The first diary I 'm at a loss to write a diary in ENGLISH . I 'm working at a training center with volunteers who are going to help developing countries . First , everyone is divided into several groups and each group is given an envelop . Every group finds different materials in their envelop . for example , I went to Victoria Peak , Tsim Sha Tsui , Jordan , and so on . Victoria Peak was especially beautiful . Pet Industry In Japan I 'm going to travel to lots of places and take nice pictures . How SonyEricsson Xperia Ray hits the spot with me is that Ray drives an Android OS and features a great a camera that outperforms moderate DC . I have nothing to write down anymore because I 'm exhausted and I 'm starving now ! I made plans to travel . My favorite topics are Electric Music ( Techno , Electronica , Breakbeats . . . including composing ) , Web Design ( HTML , CSS , jQuery , Flash + ActionScript ) , Social Problems ( international and domestic ) , Environmental Problems . And some people say it is because of beautiful weather in June . I have a little rabbit . I believe she could be a famous football player . We ate , drank , chatted , and watched a little . I used to be a kind of a shopaholic when I was in my country . I just got a job interview invitation . Am I incorrect ? So , today I bought the same novel translated into Japanese . . . This makes me very tired and disappointed in myself . about me I need to use English and Japanese to watch tv , read comics and goa world tour . Before I do something , I prepare for it thoroughly . At least during that time , I cleanse my mind and repress impure thoughts that hinder my concentration . And that careful but timid attitude fills my mind of impure thoughts , and eventually hinders my ability to be honest with myself . It is not so difficult for me to develop an iPhone application . iPhone applications must be developed in Object - C . But I like yogurt . It is very convenient for us to go anywhere . Today , I renewed my driver 's license at the police station . If I go to ocean vocational school , about I will study about marine life Dolphins are very cute . If I can earn the money , I will buy tropical goldfish . The Change of The Trend of China 's Population I was very nervous , but I 'm happy to explain it well . Sushi bar Before visiting the zoo , I had been especially looking forward to seeing capybaras because capybaras have been very popular in Japan and I heard they look unique and cute . I have come here to learn more english For my writing is very bad ; I need to develop my grammar and fix my I think I can develop my sentences here and learn more vocabulary I was together with it . when I did my assginments , I talked with my friend . . . I think the best coffee has good memories rather than good materials . I went to English school after work . In this class , there usually is n't a teacher but I had a good lesson . First , I visited the waterfall . I 'm studying Korean words now because I have an examination . I have my own plan for this year and I will do my best to complete my plan and I wish everyone can fulfill their own plans too . But suddenly their lifestyle changed as soon as thier husbands finished working . Their husbands stay at home from the morning till night with their wives . I must ( talk with my ) English ( teacher ) . today I found a website that is useful . I do n't want to write too much today because I have an exam coming up . well she said , no one would like to get paid cheaper than 30 dollars . I appreciate that you encouraged me with a prophecy . This sign is hot - tempered , full of energy and likes to do dangerous things , the reason may be that it 's effected by mars . Taurus is a sign affected by Venus , so the sign likes beautiful things and eating wonderful food but is inflexible . Gemini is a dual - personality sign , quite different from Taurus . It is flexible , knows much but is not deep and can not keep promises . Libra is a sign which is balanced and undecided , but charming . She said that the Chinese are not as diligent than before . Today I rode my bike around the street , suddenly a car bumped into a dog , but no one stopped to help the dog . What a strange world , what cold people . I wanna know if it 's common to say the first way in British English , like they do in AE . . . . . I also know that there is the Ryder Cup golf tournament held each year between the U . Because when you tell a white lie , it just gets you away in that situation . I want to use the term `` over my dead body `` . I do n't know how to use that in a sutiation . Secondly , my university 's summer vacation is so long that I can do many things : travelling , volunteering , studying and so on . What shall we do ? They were very crowded despite the rainy day . I just watched a movie in the new theater instead . And I want to know whether you understand something about this article after reading my reflection paper . Maybe he likes Japanese foods . My old foreigners friend told me I could n't use chopsticks well so I need a spoon . Eventually , I thought of someone . Later on during high school I enjoyed the subject ' Korean modern history ' from the Joseon era to present time . Even though I 'm not good at Korean history , I used to get good grades in Korean modern history . They resisted not only by force , but also by writing poems , novels , etc . ( I especially like the ? resistive ? poem ) They were not afraid of death and some patriots sacrificed themselves for their country . Thiessen is a very kind guy . We are staying in the hotel with fully booked accommodations so we will not be bored . My acknowledgements to Geoff Cutter Why do people believe a lie and refuse to believe the truth ? John Watson is soooooo adorable ~ ! But they have only three episodes for this year : ( ( Damn ! I searched her song , `` Love Story `` on Youtube and listened to it as soon as I could By the way , thanks to the people who correct my daily entries , though I do n't know how to return the favour . . . Is this a matter of bad habit or can it be changed easily ? They have their own schedules already . The mysterious Victorian age , the inscrutable Brontes . Sushi is delicious . We orderd a lot of delicious dishes . Evidently , I picked it up unconsciously when I was living in Oregon possively from my host mother . Walking on a Tightrope in Rio de Janeiro I like it since I was a kid . It is very beautiful and shiny . By the way , What 's your recommend musical ? I really happy - my new home is very beautiful . According to the news , a young woman said to some parents with a baby in front of a kids store , I 'd like to study more and I 'd like to apply it at my job . I hate crowded places , If I stay there for too long , I get a headache . Beside there were no gasoline and toilet paper as well . I like intelligent and thoughtful people . Today my son finished primary school . ( Is it called elementary school in the USA ? ) The whole family is happy for him . He is a wonderful student . He won first place in the knowledge competition and his average was 9 . 8 . I think I am not a good student I like the challenge , but sometimes I feel frustrated . I hope you correct me if it 's necessary . Recently , I feel so sleepy while working , especially after lunch . I was like , `` Nah , bitch , just goofing around I reckon , but I am still trying to find my way , bro . He was like , `` none taken , what do you take me for , asshole , but if you do n't mind , let me give you a piece of advice , get real , be realistic , you always told us that you like reading and learning , so do you wanna be a translator or just a literature geek ? but let me ask you a god damn question , we , people are never gon na make it 100 years , we do n't live forever , so I just stick to my fuckin motto and faith , what if I got diagonsed with leukaemia next week and was informed that I only have 6 months to live , then what the fuck would the money and fame and working at a major company mean to you ? `` I decided not to tell her my feelings anymore . Today I had class with our foreign teacher again . He taught us English culture . I 'd thought I would go to work where my ex - colleague recommended me after Spring festival . I think what I need to do is to think over what I want ( to do ) and insist on that . Recently , many NPO / NGO organizations have given us explanations as tohow our donation cansave children ofdeveloped countries . But it is inconvenient to use for their financial men . But they ca n't help other children , for example not help diarrhea children . I 'll go to the stadium next month to watch the national team play . I 'm weak from drinking to much alcohol . We went to bar the day before yesterday ( Thursday ) , we stayed there until midnight . I think it was 3 o ' clock . However , I felt I am not as young as I expected . Kathy , the narrator , talks about her childhood , which was very different from ordinary people 's . They do n't know anything about their parents . New vocabulary practice . I said I will serve you dinner immediately because one of the guests looked so hungry . I ca n't speak English well . and report Korea 's air traffic plan . So we have to know those facts why we were born in this world and why we came to this earth and after we should die . But I 'm not the person who always gives in when facing difficulty . I left Starbucks and I 'm at a another cafe now . In the afternoon , I took a special class . A former JAL ( Japan air line ) cabin attendant came to lecture us , so we had to wear formal suits in this class . We went to a bar ( our secret place ) . Everyone drank there too but I could n't because I felt sleepy . He said it was very high quality . I found an English book for learning last night . There was a wider space than usual between the platform and the train , maybe 60 to 80cm . I think that it is very dangerous to walk through platforms during commuter hours both morning and evening . Today I 'll watch `` Madame Butterfly `` and `` The secret of the Himeji castle `` . I like the American drama Prison Break . Although this software is not free , it costs only 2000 yen to download . It was wonderful ! ! Today is my daughter 's birthday . I went fishing . The fish swam away , but I held onto the line . So I said goodbye to the fish very quickly and left as fast as I could ! ! , I spend most of my time studying and reading . The complaints are endless , because the lift broke down continuously . Many students and teachers were trapped in it . I 'm so lucky to live near an industrial area named `` Zhong Guan Cun . `` A porn film prevails in Hongkong Less than 40 days now . The exam is ( right ) around the corner . I would like to thank the person who will come to correct my grammer . I correct the diaries written in Japanese by other people . I should correct them to help the people who are trying to learn Japanese . I might teach wrong so I have to use dictionary not only for English but also Japanese ! ! It 's easy to find the journal which is really great . I can even find Japanese journals that are written I regard that my little knowledge of Japanese disqualifies me to be Japanese . They wo n't seem to attract my client . They are terrible . In order to understand scientific language , as examples , normalization and abstraction are needed to be introduced . After the break in the afternoon , we have the subject `` sport `` but I went home becasue I do n't like sports . Of course , English is required three other sports . I have to fight for that ~ ~ ~ ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! 1 since sentence structure is quite different . My purpose ! My Purpose ! Let me explain . I 'm an engineer . Why do I have to study English ? I have to know a lot of information . If I studied English everyday , I would be a good engineer . It 's hard to get up early in the morning . Finally , I get up at 7 : 00am . Why did n't I get up early in the morning ? For example , I put a pillow under her head . Today the Japanese Government announced the measures to solve their economic problems . Tonight it 's awfully humid and boiling hot . Love ur mother - tongue and being proud of it ! But right now I 'm studying English to be a translator . Today I went to a gym used by American elementary school students . I am staying at the Hyatt Regency Waikiki today . I 'd like to learn English in order to write and read articles of science . I was always proud of my health . weather tomorrow . Yaki - soba is fried noodle , with sauce . The first hour of class was ' math ' . It 's difficult for me to study math . it came as a surprise that I answered : For experiencing ! well , I can experience life in hell then , can ` t I ? : P Being alive I can experience a lot of things . but I dont think I need to worry about how much time I have , instead , how much I can experience : D come on , let 's experience the amazing world : D My son had his 6th birthday and I called him from Siberia to Israel and asked him what he wanted me to buy him . . . There are a lot of attractive stores like clothing stores , cake shops , bakeries and cafes . Yesterday I bought a big almond scone at a bakery . This device 's circuit board was covered by a synthetic resin which caused the problem . I warmed it and managed to remove most of it but I could n't take it away completely . I love his artistic temperament . We 're gon na meet at our favorite restaurant . Someone gave me a bag of potato chips . about 3 times bigger than usual . My friend 's decision . Kanojo wa tomodachi to gakkou e aruite imasu . Boku ha sakka - wo shite imasu This is the first time it is showcased , since the Heian Period . That is why I was surprised to find so much trash today . Children are given too much free time ? Task4 Nowadays , some people might concern that children are given too much free time . From my point of view , when they are given too much free time by school , they may spend more time on surfing the internet , playing computer games or watching TV , moreover , will probably do something which is not allowed under their age without a guardian . It maybe not a good idea either , it will make studies become boring and tiring , yet the extra presures given were not necessary . In my opinion about children 's free time , I believe school is a good environment where student start their socail life and team work , including vairety of studying . However , when they are out of school , they also should arrange their free time wisely to do other recreational activities instead of an axtra school work . I was asked about my hometown by other students who were in the class . I wish I could speak English a little better . Hi , everyone . Nice to meet you . This is my first visit to this website . My English is poor , so please help me and I will appreciate it . I can speak fluent standard Chinese . I want to practice oral English . I want to make friends with all of you . So welcome to China . I think you will love this great country . I love her . After the rain , I opened the window and took a deep breath . I came downstairs to take a walk and enjoyed my free / spare / leisure time . Once a week I take a tango lesson . When I close my eyes and just move my body with the tango rythm , I 'm jealous of him . I need to accustom my ears to English sounds and pronunciation , although I know the BBC is probably too . . . Somebody said it is useful , but up to now I have n't had an English audio version of a book . Moreover , he got / became angrier and louder while I explained that they were all just my abandoned experimental materials . These materials are my painstaking effort , so I ca n't discard them on time ( ? ) , but it did n't matter ( ? ) . Sunday is a regular practising date for my ballteam . No matter what ever you want to play , you should make sure you have enough warm up activities , such like Stretching , jogging or others . Prevention is better than cure . I had explained to her that food builds the body ( water also ) but she did n't follow my advise I am really poor at grammar and tenses . The saddest part of this story is the fact that this story really happened with the author . He described the one part of his life , when he had made a few mistakes , and lost his dear sister . Today I watched a movie . The movie title is `` Alice In Wonderland `` . I watched the animated movie in my childhood . There are many differences between the animated version , and live action version . This morning class , our teacher made us do an activity , that is to draw your partner 's picture and describe your partner , everybody ca n't draw well , so everyone 's picture are like kingarden 's picture , but it 's funny . First , I much prefer trying on the clothes , shoes , or accessories myself to check their sizes , textures or material , fit and so on . Maybe I 'm not a person who is suited to living in a modernized and technology focused society . I want to change myself first of all . Recently , I decided to save my money , because I used a lot of money last month . Of course , to think on an accrual basis , I spent over 200 yen because it includes rent of my apartment house , lighting and heating expenses , and water rate for today 's cost . I tried to avoid getting sicker by eating good food , resting , and continuing to go to the gym to exercise , but nothing worked for me . I 'm not Santa clause , definitely . My major was literature , so once I wanted to be a writer . This is a story of a professor named Morrie . He has a fatal disease and a student in his last class wrote this book . Although I have n't read it through , it is a wonderful book , and ca n't read without some tissues . For us students , every summer and winter vacation , it 's a big problem to buy tickets to go back home from distant universities . In my view , to stop this situation from becoming worse , we should never buy tickets from train ticket scalpers , since everyone has a responsibility to make a harmonious society . if you have a skype just add me So I will wake up and see the mountain and sunrise together in the morning , drink beer , listen the music and dance with Mt . I wanted to know if this story is true or not . He is 8 years old and lives in South India with his family . I do n't want to go on a splurge . I could n't help meeting another guy ! ( or I could n't help but meet another guy ; or I had no choice but to meet another guy ) If the rain had started sooner , I would n't have been able to have my lesson . I 'm going to continue writing about the Assimil course . `` If you are a student , you will show a better school record or April 18th was a special day which was my college 's 50th Anniversary Celebration . I started Lang - 8 because my friend recommended this site . This is first time I 've utilized lang - 8 for my studies . I have friends who can speak in English , but they are not my teachers . Well , in case you do n't know this movie before , here 's the introduction from wikipedia URL You can translate the title into `` My House `` in English . If you want to get an idea of what a Japanese family is like , you may find this manga helpful . So I am studing English because I want to be friends with a lot of people . It 's very beautiful not only when it blooms but also when it falls . Now , we are planing to have a entertainment show at college . Then I want to present the iconography of the altarpiece , focusing upon the biblical narration , and then I will mention some features of this work . The next part will be about the history of research and dating . This presentation is about a triptych called the ' John the Baptist altarpiece ' . The example in Berlin is so similar to the ' John the Baptist ' altar in Frankfurt that a long discussion has taken place as to which is the original . These three pictures show the most important incidents from John the Baptist 's life . On the first panel you can see a depiction of the birth , and naming of John the Baptist . The middle panel shows the baptism of Christ . The last panel is about the beheading of John the Baptist . These three paintings are supplemented by a detailed illustration of miniatures in a gothic arch , which functions as frame for the pictures . Can a quarter , a 25 cent coin , change one 's fate ? Also , I talked with my Chinese friend in skype . When I arrived at my house , it was time for dinner . I think that I rode the bicycle for 1 and half hours . It is also sometimes hard to tell my feelings with foreigners . In my old memory , I think I had to prepare a photograph I was not busy today . According to myth , when she knew that her mother was pregnant by an unknown father , she was angry and called his four hundred brothers and sisters . She wanted to kill his mother ( her name is Coatlicue ) , in this moment Huitzilopochtli ( God of the war ) was born ; he was born armed like a warrior ! I was very surprised ! Sweet Potato Do you know sweet potato ? A large number of companies are obtaining funding by mortgaging their cars and other assets at pawnshops . The customs procedure takes 3 hours and will be conducted in a cooled warehouse , which will help a lot in summer to keep food / produce fresh . The Korea government is preparing to manage it successfully . Secondly , it 's very short sighted thinking . I think they can contribute to cultural variety as time goes by . Having the agenda of neo - liberalism , they just generally increase repressive measures . I got payed lesser than the low limited wage . Basil , thyme , lettuce and tomato are in the picture . Unbelievable . . . My star - sign is Taurus . I think reflexology is helpful to recover from surgery , so I suggested to her to get reflexology treatment . Japanese people in japanese rooms usually sit down at kotatsu during ( the ) winter season . I felt that someone may think that we are superior to the laborers from other countries . Many universal students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . My hobby at this moment because this needlework thing does n't bring any benefits or money . ( yes , I sleep with a fox Johan , giggle ! Because it is a bad habit . When I have handmade work , I can relax from concerns and immerse myself . I went to Kyoto this spring vacation by myself . My favorite shrine is the Kifune shrine . Kifune was built to honor a god of water . Why does this sentence above use ' has basketball ' , not ' baseball has ' ? Yet , the symphony of spring project the comfy atmosphere today . Then , the sugarcane are milling milled to make brown sugar . I came to pick my guest up from the airport , but the flight was delayed by twenty five minutes . I feel worried about studying English . Are they correct sentences below ? * Elderly people 's share of medical expenses has increased this year . I 'm told when women are in menopause , they are more nervous and fickle than before . < < NOT ALL studying about Gandhi is complex and difficult for me , so I do n't feel like reading his autobiography ( the textbook ) . . . . This is the first time I have come abroad , and my English skills are not good , so I ca n't communicate with native people in Seattle well . Japan AIRLINES ( JAL ) decided to stop the flight ! ! But JAL decided to stop the flight from Japan to Bali yesterday . Two of them were Haruki Murakami 's `` nejimakidori kuronikuru ( The Wind - Up Bird Chronicle ) `` . I found my journal was corrected when I came home after my job ! MY SPECIAL DAY and I do not know what I should do . . . this is my first diary entry . Although it is very exciiting and I ' m looking forward to going , I am worried about one thing : the temperature . Actually this is the biggest problem for me . For instance , to reduce of the fee of electric energy , some companies develop inventions that store solar energy . I 'm still writing my grade thesis . I always dream of traveling to other countries , seeing other people , smelling other soil . We made chicken with sauce and did homework together . asa watashi ha gakkou de benkyou shimashita . yoru watashi ha hataraki mashita . Car wash to Jollibee to Greenwich de hataraki mashita . So , I decided to doze off again after waking up early , it was not a good idea , because it led me to wake up at 7 : 15am , if I did not prepare quickly , I would have been late to work ! I am not going to a travel with Ke , because it 's too expensive for us , but we will host a BBQ party at his home , with his family . . . Lost My Entry Authorization Certificate Today , the olympic games started in Canada . Sometimes , we are in a beuatiful place , but do not realise it and we want to go away , yet there are many people from other places who want to visit A mile is equal to 1 . 6 kilometers . However , I 'm worried about the jewelry I buythatis same price as aticket , so it might be crap and if it is , I 'm not sure if Ishouldbuy such a fakepiece ofjewelry . maybe , I must work harder . I 'm watching a Harry Potter movie on TV . It ` s been raining day after day for so long . Some day , I am determined to study English until I speak fluently , before I grow old . Is it because we are introverted that we are not good at chatting with people ? We test - ran 800 meters today . I really do n't understand myself for falling in love often and I had been depressed for every girl I met . I think I desire too much compared to normal guys . . . I 'm pretty excited about reading these books . I believe the problem of stress in the workplace is not being dealt with sufficiently . We should address the problem of stress in the workplace positively . I like Taylor Swift ! Next month . Foreigners who are living in Japan for several years probably feel that `` they are discriminating against us `` . The reason why I write is that foreigners are very rare in Japan . Even I always gazed when I saw foreigners in Japan . visit ? working ? `` , `` Oh , foreigners , very rare ! `` `` Why did they decide to come to Japan ? , this country is very far from their own `` , `` Can they perhaps speak English perfectly ? `` `` Are they good at any kind of sports ? `` , `` Are they Europeans or Americans or Australians ? `` . I played on the body board , which is an ocean sport . I like the sense of humor , the affectionately designed characters and most of all the kind of story telling . Especially the way the complete backstory of the central character , Mr . After the game Okada , who is the coach of the Japanese team , asked the chariman of the Japanese football association ( ? ) if he can continue being their coach . Nevertheless the coach loses confidence in managing the team . Recently , I got a laptop computer . It was hard but we had a good time until the tournament . ( I love these kinds of movies . ) I want to write a diary But I want to write a diary in English . Today I wrote a report in class . The report above requires more than 2500 words . Because Japanese is usually pronounced in the order of consonant + vowel + consonant + vowel I suppose the mistakes which my daughter makes would be typical to Japanese babies . He finished studying abroad at Kagoshima University , Japan . In many circumstances , the Japanese people who need to speak English for their jobs are white - collar workers . From yesterday to today , it was snowing too much . As a saying goes , good manners equals a good future . Furthermore , the day when everyone builds up good manners , is the day when we will be able to enjoy our lives better . There is no reason to not have good manners . Yesterday , I played the guitar with my friend in my house after school . Yesterday , my husband went fishing and brought back many fishes for me . Summer vacation is drawing near . At first , I thought I would be able to eat them up easily . So I wanted to throw the instant noodle away . However I thought it would be `` mottainai `` , so I could n't throw it away . My friend recommended this site . Today , my client invited me to dinner . I 've been busy for preparing my individual presentation recently . We often exchange letters or souvenirs with this system and also often talk using / with the company 's extension . Who are your recommended singers ? Finally , dress boiled pasta in this sauce ! Check my article and correct it . Though , even if the grammar is acceptable , change the expressions if are not used currently , DinBo 's home is in a big town , and it takes a long time to pass through a / dark forest . Just when he walked quickly and quickly , someone / obstructed him by / caught his cloth . Because I was busy yesterday , I could n't write a diary . Why did `` Avatar `` loose so many oscars despite the best performance in this year ? Today is the last day of 2010 . I have been a graduate for almost 6 months . Although the job of foreign trade is very busy , I always try my hardest to make progress . The biggest problem is my English . Sometimes I feel afraid to speak to foreign customers . I could go wherever I want . A friend of mine said that it was disappointing because the 3D glasses detracted from the color and brightness of the film . I 'm not being critical or sarcastic , and I usually do n't care about which restaurant has a terrible service or which staff . is rude Actually , he misunderstood my address maybe due to my bad Korean pronunciation , but he was neaby so I told him the correct adress . Then he just said , ' I saw the map but I could n't find your house , so I returned to my store . Thus I decided to tell them how to make tofu , It is a very challengable and interesting attempt . but , it was enough to take away all the sultry weather from this morning . However , it focuses on one Daimyo ( Hideaki ) so much , that the story is not understandable . When I visited the class , the sore throat had gone , and I had only a nasal voice . Steve ' apple - head ' Jobs is really cool . `` Finally , there are many kinds of games that require using my body . Today is my first son Mark 's birthday . l was glad my son was happy . I am distressed . Hi ! Today was cloudy , so I sat at home and watched a tv show . I also listened to music and drew in 3D program ( solid works ) . In the future I would like to work as a programmer . I 'm studying metallurgy these days . . . I 'm friendly so if you write to me , we can have a conversation ; ) I do need a normal English name because I do n't want my foreign friends feel strange when they call me Pengfei or Fei . I think Christopher Nolan is a very smart movie director . Everyone , Laos is wonderful , beautiful and kindly country . If you are too tired in your life , I recommend that you visit Laos confidently . For example , a German shepherd dressed as the police , and his owner dressed as a prisoner . And there was a mummy dog and a witch ( the owner ) , and a hotdog dog and mustard . However , when I looked at the unit carefully , I found that it says KJ , not calorie . I can read English to some extent because I have been learning English for more than 10 years , from junior high school to university , but I have not practiced writing , listening to and speaking English . They asked me , `` Did you buy it in Mexico ? `` I said , `` No , I bought it in Korea . `` Japanese peoples like rulers lines ( A . K . A Excel junkies ) I think one of the reason is the history of word processors use in Japan for the past 20 years I have to remember some Italian language for my job . I read an article about lady Godiva , you know , the symbol and the namesake of the famous chocolate maker . It 's a shame that the legend was not what really happened , but I do n't think the fact that it 's not true will diminish the attractiveness of the story . I don ' tthinkI 've fully understood why the company chose her as a symbol despite of the statement on their website , ' He ( The chocolatier ) sought a name that embodied the timeless qualities of passion , style , sensuality and modern boldness ' . And many women had Hakama ( Kimono ) , it was very beautiful . I ca n't stop drinking coffee , although I do n't feel sleepy . I always drink over 3 cups of coffee a day , but I learned that drinking too much coffee is not good for health All of their music is very cool . I 'm embarrased because I ca n't speak English as well as translate it into Japanese . I thought that it would be used for business entertainment . Anyway , Our team entered a competition last Satuaday . It 's a very small competition with only four beginer - level teams . But we were not good enough to win . But I 'm really relieved that it did not hurt so much . I had a great time ; I feel like I 'm in Paradise ! I will be able to have Paradise time in February too . You would say this word when one is expecting you to do too much for them , when someone is relying on you a lot and you are annoyed or angry about it . Hahaha ! ! Tonight , I will watch the Chun Wan and the fireworks show , which is always fantastic for us , the Chinese . ' iCarly ' is a sitcom in which Carly and her friends make their own web show called ' iCarly ' . I am jealous of a woman . I have exam on monday in korean . I hope be first in my class . last noon , my boyfriend ate greasy back shrimp , at 4pm , he had a stomachache , he was vomiting and had diarrhea , he felt uncomfortable . It is hard for me to walk around TDL & TDS all the day ! ! My husband and I have been married for 5 years . This Wednesday , I went to Ikebukuro in Japan after work . Nearly every applicant to University is required to take this Examination . I heard about this service from one of my colleagues . I hope that I can develop my English and also make many new friends on this site ! Telling The program is about other TV programs I like , USA or UK drams , for example . And soon the Chinese language will be very popular . But here , on Lang - 8 , many people want to know Japanese . Their music is not cool ) , Maximum the Hormone . . . . . It 's a bus tour to go to amusement park and find a Mr . Usually , it is more informal than arranged marriage . So I think you shoud use a website that is aimed at specific groups , for example , a website of climbing , cooking , and whatnot . The soothing breeze is trying to evaporate the moisture of laundry hung on clothes poles by my mother . Occasionally , some birds zoom past before my very eyes . Where does your family usually go for a summer holiday ? So , I started my motorcycle and went out without a raincoat or umbrella . About 10 seconds later , the raindrops suddenly became large and heavy . This pic can immerse you in the late 70s USA , a life where you have no one to control you and every right to violate [ what ? ] ! I think we can deal with the problem using proper methods that enable us to dispose of the waste matter and make the environment clean . At first , she wanted to learn acting from the actor , but gradually they developed a relationship which is like father - daughter and lovers . However , all the projects are n't always successful because some of them are led by the initiative of developed countries with little concern and understanding for the local governments and people . Santa Claus who wears a red hat and red clothing gives very kind children gifts . We ( do things like ) watch a movie , have dinner at a very romantic restaurant , or exchange gifts . I found Mos burger nearby my home ! Cuz it 's very quiet and few people are here . Before 7pm a crowd of people are often here . I guess they are university students especially . Writing english on this site is also learning . . He likes Power Rangers , Masked Rider and UltraMan . My English is at the basic or pre - intermediate level . And I made it a habit to memorize what native speakers corrected . What do you recommend for me to do ? However my throat is still not clear . I went to the Tanglewood Music Festival with my colleague last Saturday . I listened to the open rehearsal , the prelude concert , and the main concert . However , the understanding of the necessity of the procedure does not seem to grow . Please correct my English , for any mistakes . What should I do to solve the problem ? I was sweating because today was hot and the event was held outside . It was kind of a sense of fulfillment . One of my woman friends suddenly said , certainly foreigners do n't care about small matters . But I think I should be more self assertive , I got up around 11 : 11am today . Is it at the shore of an ocean / at the ocean shore or the apartment on a high floor in a skyscraper ? Ordeal of the Entrance Examination in Japan In Japan , we call the system the `` escalator method `` , which means once you get on an escalator you can arrive at the destination automatically . A recently discovered species of a frog fish , has been dubbed the `` Psychedelic fish `` because of the beige and peach zebra - stripes that run from its blue eyes to its tail . Using its lower fins , the Psychedelic fish expels water from tiny gill openings to jet itself forward . Psychedelica has a gelatiness body covered with thick walls of skin that protect it from sharp edged corals . On purpose I 'm not stating which one is the best because if I did that , it would be easily jammed with traffic . It gives us a lot information about books , movies , cafes , actors etc . . When he was going out , suddenly it was beginning to rain . `` Shall I lend you an umbrella ? `` I 'll come here on some rainy day to return this . `` `` Regular holiday is Wednesday but we do business only on rainy days `` I had made some mistakes , usingthe previous method I used to support him at home . Because of my foreigners . go abroad to see the world when I have the ability . beginning of the loss , I thought it was my bad luck . It was true . It is crowded in Sydney . Yes , when I met her the first time , I was somehow confident this would happen please check sentences Now one of my favorite artists is Drake . I found this website on a discuss board and it seems interesting . My first diary is about my new PC . And access high speed Internet . I pick out the best shop to buy it , however the shop had no stock . Yesterday , when I walked out my office , I saw a lot of crows . I never saw a crow before until yesterday . STEP4 Highlight the ideas from step three that I believe are true , or could be true , in certain situations . After the coffee was ready , I put a filter paper on my cup and poured the coffee into my cup . Actually , my father - in - law 's birthday is 15 . Can you believe that the temperature is higher than our body temparature ? I ca n't understand what happened . Please let me teach thank you . I was puzzled by his English . It seems that it is the 5th biggest earthquate since 1900 . it is late to make a sentence in my mind . I got so exhausted but this experience brought me a sense of fulfillment and new friends . To write a diary in English or Chinese once a week . It is a reason to learn English and Chinese . The city of Munster decided to ban cars within the city and use bicycles instead . The suspicion of match fixing in the Chinese football league storms the nation . Last Sep . 2 , the second division soccer team Qingdao had a match against Sichuan . The Chinese football association initiated the investigation but these past three years , the rumor about match fixing is going around in China . Recently it 's been insanely hectic and I ca n't review my entries . look beautiful There were two things that happened this weekend . Second , My parents had a serious argument which surprised us since my father ( split the water ? ) and broke all the things in front of him . I really do n't like the way that he communicates his anger sometimes . Next we talked in park . Suddenly my friend said : Toshiya , you does n't go back because train left a few minuts ago . Yuta lived near here and he is very kind so he stayed me . Then he changed the design so I helped him . If he has a trouble , I 'm going to help him . I like to travel ( especially to foriegn countries ) I 'd like to explain the Himeji castle . The shape remains us a white heron flapping its wings , so It is called `` Shirasagi jyo `` as a nickname . people who I can share things with , have a conversation with , and make a relationship with . Recently , I have been lucky enough to meet many friendly , special neighbors at the dorm . I already met one kind neighbor who did n't mind spending more than three hours in my room fixing my computer . It 's not that long ago since he moved , but unfortunately , he said yesterday that he 'd be leaving to Japan for his business In my opinion , we do n't need to be strong and perfect to fish , why not examine yourself , okay ! It is not too late . So , I am writing a diary ! So I always practice writing , reading , listening , and particularly speaking . I ate some foods but the German sausage and Toppoki from South Korea were the most delicious . Foreign people think it is too hot . First of all , take Vitamins and iron continuously . I could like it , but if I do n't go into an accademic career or the specialisation of hospital pharmacy , working at a pharmacy might be unsatisfactory and it woud n't allow me to have different experiences and to `` build `` a personal career . I am a very energetic person and I am able to keep discipline . Energetic sounds more natural I love reading , so I love book shops . In addition , they looks like some pictures or marks . When it is someone 's birthday , we always make presents by ourselves . there was an earthquake . I did n't know whether I should run out the restroom . When I was thinking that , the earthquake had finished . Today when I took a break and search the internet , I found that there were really a lot of people speaking highly of this film . because it runs well . This Thursday , I ate so many different Poccky . Also , Wednesday , I went to a bar , for `` Okinawa dining `` . Today I tried to explain that Mt . I want to make my son a professor . They are my favorite . We drank alcohol in the sea house . I was so nervous . . . It ' a joke , but anyway we enjoyed fishing . met my classmates and made new friends who are Arabic . I 'll be very busy from April , but I 'm excited for the new life , and I feel anxious a little bit at the same time . I 'll be a student , so I 'll have many sutudent discount . Though all of my friends laugh when I showed them the picutures . This is a technical and amazing invention . My vacation days are nearly over , so I thought it was a good time to get some wind . Everyone applauded sincerely and cheered joyfully for them . Although I 've had a few relationships before , none of them I really wanted . Yesterday , I went to an English lesson . During a group discussion , a question came up : Could you live without electricity ? Someone said that he would commit suicide , but I think maybe I could live better without computers or the internet or tv . Without these things , I could walk out of my room and talk to real people . The answer is `` public servent `` . Now I am listening Macros Frontier and working . We are supposed to talk together using headsets . The maximum is - 8 degrees . There is no Chinese teacher at Odawara castle . I 'm just study by myself , with a Chinese language textbook . The orange colour motivates my heart . The blue - violet colour is very nice . Now , you can see the beautiful red and yellow reeves around Odarara Castle . Unfortunately , I do n't know the historical significance of Odawara castle . My English is not good . Incidentally , I have received notification of EIKEN Grade 2 and Pre - 1 test first stage exam which I took on January 25th . I was so suprised , because I did n't expect that I could pass either of them . you can Google with `` * ( asterisk ) `` . And to search for an exact phrase , enclose the phrase in double quotation marks . Unlike our ancestors , who lived in the past , we are now living in a world which is full of media . Theoretically , the media reflects how we humans ' lives are advancing and changing . Then , the media appeared , which tried to express one single message to the public , and that is what almost dominates our daily life today . For example , we have seen several interpretations of the event of 911 from the western to eastern media . The media advances our quality of living by informing us of what is going on around the world which allow us to deal with our lives easier , but we should not ignore that the media is not a neutral mechanism but a living organism which has its own values and tries to influence us when we are heedless . And , never forget , try to think twice about the meaning of the information when you receive it . A question from `` Can I Do This `` . I sometimes think that my problems could go away like melted snow . In my opinion , it seems like a combination of two words : religion and ridiculous . Groups of birds soar to the west for family . So I 'm studying English now . I arrived on March 28 in Melbourneof Australia and will study here for To celebratethem , We went to their family 's house and hadlunch : ) But his subordinate , a woman , betrayed him because she wanted to save the human world . Japan has diverse climates , so there are unique and varied local specialties in each place . At the shop of Niigata Prefecture , the employees stock plenty of snow next to the shop every winter . I 'm a senior at University and a major in Education . I want to write more , but I 'm geting sleepy . . Until I got my lost stuff , I spoke to the man in charge . Luckily , all of my colleagues are very nice , so I just can work hard and do my best now . `` You are really a good man `` Kate answered yaaaaaaaaay ! ! I want to eat Japanese food soon . A bag of snacks disappeared in about 1 minute . Unless you watched this drama before , you would never understand the whole story totally and it wo n't be interesting anymore . Even though , I have never seen Star Trek before , I strongly recommend to watch this together because I hope it can increase my imagination like the moive Star Wars . We display so many dolls to wish our daughters 's good growth every years . ( When it ended , I was very very sleepy . ) It is a kind of training at my work place ( company ) once a year . First it was canceled , but then it was postponed to a later date instead . So I decided to go to Okinawa . In Japan , cherry blossoms have a lot of petals now . Since so many people went to see the cherry blossoms today , I could n't pass through the road by there . I have been to four foreign countries : The United States , Australia , Indonesia , and Singapore . My favorite place is Australia because I was so impressed by the Coral Sea . I 've started to dance Tango since this February . I do n't like buying clothes that are made in poor countries . That is , clothes which made in poor countries often made peple work very hard for very very little money . Cheap clothes are very popular , but they are not good for those who made the clothes . So , I like to prefer ' ' Fair Trade ' ' . Especially I hate Japanese apparel brand UNIQLO . I want to wear clothes which make everybody happy . To enjoy fashion is Ok , but I really want a lot of people know the fact of cheap clothes . I took the morning off today , because I had a stomach - ache . Do you know Higashino Keigo ? Did Santa Clause come to you ? . Luckily you are the first person who is an electronic technician who bought this device from me with the problem ! Though I like anime , I ca n't believe the above results . Twilight - New Moon the Jonas brothers and Taylor Swift . My birthday is november 23th . because it is full of difficulties , pressure and unknowns . I always come across some trouble , We ordered five servings of pork belly . Although we just ordered five servings , it seemed like too much . School just started one week ago , so I decided to insist on writing in my diary every weekend . LMAO , two americans in the audience at that coffee shop were surprised when they saw sunnie and I going into one bathroom together and they were also surprised that we were holding hands all the time - they thought we were lesbians ! It was a 1st model when VISTA was launched by Windows . or to hear radio and TV news for various countries . I 'm looking forward to it . Tomorrow morning , I will go to a language company for interview . Have you ever eaten spaghetti with salted pollack roe ? having a child , our jobs and anything we concern . He was cool as always . I ca n't wait for his come back from prison . I think that celeblities obviously shoud n't have them . I . 's public estimation because I did n't read articles about him . I want to know his recent news . It is interesting and fun . I do n't know what to do now . . . It is continuing hardship everyday . Monday is coming to me . Could you please explain the difference between cartoons and comics ? As I expected , grandma , ma and pa - all of them welcomed me . I caught a flu last year . When I came into the party place , I found many people were wearing really gorgeous and brilliant costumes . We drank until 3 am , as usual . When my host family goes on a trip , they start barking even at night ! TV showed people who live around the nuclear powerhouse in Fukushima that were allowed to get back their home for only for 2 hours . I would like to say something about my little brother . Can you help me ? Ah , is this daily good study for me ? Taking care of their children and being a part of their family is my role and job . my hometown is Langzhong in Sichuan province , which is a very beautiful , ancient city . I 'm plannig to go back Kyoto to attend my friend 's wedding ceremony and prepare my own ceremony which will be held on May 29th . And I also have to go to my university , to tell my professor that I will be getting married . My backup data was on an external HDD connected with a USB . Today I tried to figure out some math problems I learned how to solve in elementary school , but I could n't ! Yesterday , I drank with my boss and clients . I know it 's a stupid thing for American people . Now I feel so lonely . People call it a `` cleaning robot `` . I boiled water at 500cc and added chicken stock tablespoon 1 . 5 and a proper amount of salt . Then , I boiled somen of two serving for 2 minutes and stirred sometimes . I boiled the soup again and after the soup boiled I stopped the fire and displayed it on a plate . By the way , I saw my friend in the library , so I said hi to him . I will be fliying against time , I am working as a waitress now , so I have a question One more good point about this centre is that its free . If I correct somebody 's entries , I can get ' stars ' in Lang8 . And leave your comments . The other day , I bought the book `` Macbeth `` by Shakespeare . I want the help of everyone whose English is good ! We businessman must be careful . The first picture I uploaded is that . I 'll be fortunate to have a good family and a work worth doing . I am satisfied with my purchases , and I wear the pk t - shirt very often . For the following reasons , I disagree with the statement that the companies are allowed to do anything to boost their profit . In the worst cases , some employees become depressed and kill themselves . A boy student who was doing badly in school leaves behind a high ranking high school in Tokyo moving to Himi to lean on his relatives . He comes across a girl student named Nagisa Ichinose . I happiest when I 'm with my friends . It looked like they will stay in Kyoto , so I told them about Nijo Castle , Gosho , Kiyomizu Temple and so on . So I started this morning by taking a sample of my daughter 's pee . I am Nao , a japanese person who is staying in India to study . I imagined when I was in Japan that I would be able to speak fluent English automatically if I came to India . The other was 07 : 40 AM , but I do n't remember hearding any sound , just when I suddenly woke up and checked the time - 08 : 40AM . It was called `` Sony timer `` , because they were broken after the warranty period . What do you think about Sony products ? `` You can say that again `` `` You could n't have said it better `` Tha 's easy , so I 'm gon na write about my first concern which is `` earthquake `` It has caused devastating `` damages `` such as `` Tsunami `` and crippled `` nuclear power `` They asked me , `` How often did you experienced an earthquake ? `` , `` What did you feel then ? `` We should reconsider how we live with animals . But after a while , some of them are tired of raising their pet and worst case , they abandon them . The fact that animals are often used in experiments before products like medicines , cosmetics and foods come out on the market is unknown to most Japanese people . I ate lunch with my grandmother today because my parents went to a grave of my father 's ancestors , and they were going to lunch with my father 's brothers ' families . I ate too many cakes or sweets and I forgot to exercise . I may be succesful if I keep on diet for a while . To make a story you have to read a lot of books and practice writing . There is one of the most famous shrines in Yamagata prefecture . In the weekend , Taiwan have a typhoon come , We get a holiday on danger , so our govermment proclaimed that we can have a holiday . My daughters , husband , and I enjoyed having him over . admiration , happiness , aesthetic pleasure . He also liked soju ( popular Korean alcoholic drink ) . I studied English yesterday . First of all , I study vocabulary because I am a beginner . I want to be able to read English newspapers . The girl called Nastya appointed an interview today at 4 p . m . , but after coming there I found out that the interview will be tomorrow because of their technical problems . So , some children and their mothers came to have lunch there . My former tutor who lives in Toronto just emailed me . I took part in the drinking party . I was selected as the person and got the award ! In the last scene the bat fell into disfavorwith both groups , because he tried to trick them . 4 . Memorize English sentences on www . idealen . cn . But today , I wanted my hair designer to cut my hair shoter than now : p I hesitated to say please cut my hair shoter . I really want to move to California although it 's nearly impossible that will happen . However , in most cases , I ignore that issue and hope it is just because of temporary stress or just a minor thing with hypochondria . I think many people in modern life have the same experience as me . On the other hand , we worry about our health and think we need a check - up for prevent serious diseases . I saw them throwing their cigarettes on the road ! ! When I walked behind them , I had to inhale the secondhand smoke which contains much more chemical poisons than the smoke they directly inhale ! ! I started thinking that nobody is going correct my posts . Maybe I should make more mistakes ? And I felt positive feelings and warmness about the Hawaiian people . Regarding Hawaii , it 's really warm but not humid there . I went from Tokyo to Shizuoka by Shinkansen . Japan 's recession is very serious . These days , TV , newspapers and radio broadcasts tell us that the climate of the earth changes day by day . They also tell us that humanity will face global warming . Unfortunately , I do n't like to play football , when it 's 35 * C : ( One - day travel / trip Anyway , what I can do is practice , practice , and practice . Once I have & nbsp ; graduated from university , everything & nbsp ; will change . Today , I met my friend and we went to an exhibition in a bath house . `` Clarify `` is a very useful and common word in daily life . I am clarified on what you said . ( good sentence ) I 'm trying to clarify what the difference is between them . My short - tempered boyfriend So I wanted to work it out , but when I talked to him about what I 've been thinking about the other day , I could n't help but to cry . What he gave me was not a big sweet hug saying sorry , he gave me an annoyed look because I started crying . I 've decided to dilute my passion for everything British with American literature . I do n't know American literature ( as / that ) well , so I would appreciate it if you could recommend me some of your favorite American novels . I should 've gone to school : < career choice and I have to sign in , in one of two careers that are vacant in two different places . and the other is data processing and is something that I 'm remotely interested in . But what I really want to study is language but that is a career that you can only study in another state but I do n't have the money to afford to live there . According to this movie , his harmony sounds quite eccentric , he hit a lot On top of how different his music is , his appearance and behavior is also strange . His son , Kyle Eastwood , is active as a professional jazz bassist . Also she was awarded for her excellent discipline and punctuality . The restaurant was very clean , the food was delicious and also they played Chinese music in the background , a very nice place . Every three days I change the water . I hate oneof the supervisors because he always says `` no `` when I ask for something . Other students also dislike him because he is very strict and he always says `` no `` when other students also ask something . Today , all my classes were cancelled so I had much more time . It is a fascinating and attractive place . I found a bag of ramen , but I did not want to eat it at that time although I often eat ramen late at night . I want to play with strong people and get stronger and stronger ^ - ^ A guide said `` I do n't know that reason , `` and I did n't change my I - phone . we played beginner and medium courses . There are very nice and fashionable restaurants in Sydney . The number on the display began with + 1 and I easily could guess who was calling . and who told me that he 's been catching a cold , I live in a house where many foreigners stay , but I do n't talk with them often . Its introduction said if you could be young again , how would you use your chance and not waste your time . Some countries would rebuke that country throughout the media and demand for an apology for the incident , not a war . At last , I probably should close the window . . . . . I hope I make improvements in my English before I get a part time job . I booked the B & B for 3 weeks until Dec 9 . Over the past couple years , almost all of my friends got married , and some of them bought their house and had babies . I heard that in some European countries , the number of non - married couples are increasing . Of course , there might be other system instead of the old marriage system for life guarantee . Letter ( Aki Angela ) In the midst of this pain , I live the present . If you continue asking what and where you should be going , Today , I made friends with some students on facebook . Because I like pokemon so much , I wanted some English pokemon games since I was in Japan . so all my plans for this weekend failed . It was an ad for a teaching job in Makati City , Philippines , and I received an e - mail from the school president . Although I am afraid of going there , I thought that this is a rare opportunity for me so I 'd better go ! I decided to go to the Philippines . I 'd like to make friends with people from all over the world through this site . I am very happy because I passed an exam and will get my first job . Yesterday , I received my ( employee ) bonus . My company paid it to the employees , half based on the monthly salary , and the other half based on the results of what they did . Sources say that the number of people traveling abroad will be increasing this summer because of the strong yen and gradual recovery from the recession . But I can not believe it . It was a wonderful experience to enjoy food with not only the taste but also the sense of touch . He called me in March to notify me about a job interview , but I had a another job interview on the same day . It 's highly important as to which book I bring . Yesterday , I read an article about the Human Resources department in a certain company . In my case , since I 'm an elementary school teacher , the government adopt new teachers , we basically train by ourselves , principals decide which grade we would be in charge of , and we have to cope with all of the problems and complaints . At first , I thought it was just a simple place to learn languages , but when I logged in , I found it 's a very interesting place ~ ~ ~ The throat syrup is called `` Stop - cough syrup `` . My hobby is playing the piano . Recently , I wrote an original song and played it . If there are pleasurable things day , my song is up tempo and pop . I did n't buy it from a foreign manufacturer . I worried about it . Many of my friends are going back their countries in Decmeber . Today , I took the entrance examination . Women figure skating I will watch the Japanese skaters and Kim Yu - Na parts on TV . There are three skaters from Japan - Mao Asada , Miki Ando , and Akiko Suzuki . In Japan , people are expecting Mao Asada to win . This cafe do n't serve the shoulder massage and huart ( huart ? ) mark ketchup on Omrice . ( Yummy ! ) It 's very reasonable in Japan . I do n't want the service like the Maid cafe in Akihabara , so I 'm satisfied with this cafe . I want to give service for the girls more than to get their service . That 's is more important than optional services . I am trying to ride my bike everyday . His name is scott However , I could feel that he was kind because of his passion for studying japanese and his eagerness to talk to us . Summer is coming little by little . I 'll try to do my best in grammar , spelling and punctuation in my journal . What is your occupation ? Have you employed au pairs before ? bacause today is our five month anniversary but I can understand him . he seems to be nervous . . . . I believe that he can pass the test . I have to study grammar . I have to listen to English conversation , something like that . I should take it easy , and I should take every opportunity to talk in English . I 'm not skilled at computers . At last , when it settled on the wall , I caught it . I just wrote 5000 words so far even though I have to write more than 32000 words ! Thanks to everybody answering on this ^ _ ^ On second thoughts , I want to post non - japanese songs after all ! I signed up to Lang - 8 when I was in Japan but I have n't written any entries here because of my laziness . . . I practice some tricks . Recently , I became crazy about `` hannah montana `` ! I am cheeringfor all theathleates of the world . Recently he scratched his cheek . We will be watching the movie ' Avatar ' . Controlling an avatar that 's something you 're not but represents you seems awesome . Appearance is considered an important factor in building relationships with others . Of course , I want to be rich , but if I were rich , I would n't feel like living a simple life . Him : I have to go now . I watched the movie named `` Ponyo on the Cliff by the sea `` . I like fashion ! By the way , I like fashion . The members and I have practiced very hard for that show . As a result , it was successful . When somebody who eats my cooking says `` delicious ! `` and smiles , It makes me happy . The letter was from someone I 'm kind of interested in . I will write a reply someday . How do you talk to a person you 're kind of interested in ? That means we have to dispense one prescription every 3 minutes . Hello to everyone . And I sometimes watch TV . Companies such as SONY have a lot of personal informationand responsibility to protect it from hackers . But hacking technology is improving day by day . But providing our personal data means that we should take the risks of our data being leaked . Customers are afraid of their data being leaked , but they want to enjoy the convinience of online services . This is too complicated . . . Especially , I want to write in English . Please send me a message . Now , I 'm learning about Gary Snyder . I was looking forward to joining this site for a long time . Please correct my diary . Good morning ! Luckily , my cousin who lives in Orange county called me ahahahahahaha ! I bought a notebook and many colorful pencils ! ! ! Did you know , a few months ago , the Chinese government forbade the custom of wearing pajamas on the streets ? I was a shopaholic in the past , but I am not interested in shopping any more . It 's unbelievable . I am so afraid I 'll lose my mind because of him . It had been rainy these day , so we can wash clothes and dry these clothes outside today . fantastic scenery . It is about our regional press in 1905 when the first Russian revolution begun . A news interpreter explained those reports like the issue of the rare earth , the Myanmarse military regime , the conference system regarding the matter of child abuse , why India has developed now , the war between the Mexican government versus some drag cartels . Before the opening , they asked the Japanese self - defense Air Force to peform something interesting . He said that they should take the animals in the zoo into consideration . As you know , we Japanese are struggling with a large government deficit . Considering the amount of deficit , we should privatize this peformance team as soon as possible . After I watched `` Sister 's Act 2 `` , I really wanted to listen to Lauryn Hill 's album . Both of them are Americans . She will join all kinds of activities such as English discussion group , go to meditation , running , perform yoga and so on . Before she started her IMBA program , we often hung out together . I can tell she does n't appreciate some Taiwanese culture . Also , She has a strong personality and sometimes I feel stressed when I 'm with her . Tonight was fun for me . Our conversation was in English since I need to practice the coming interview . I do n't like Hollywood movies either . People can prevent some avoidable tragedies or create a more enlightened society through learning wisdom from our intellectual ancestors , which is recorded in history . I miss the beautiful sunshine . We played together , laughed . . . Of course , sometimes we quarreled , but then apologized . It is famous for monkeys and onsen ( hot springs ) . The next day , we went to Nikko edo mura - an amusement park which looks totally like an Edo period Tokyo town . It 's very delicious and having conversation with them is very fun . I reaally need help from someone . Specifying my language goal . I recognize that time heals everything . a SKY ) committed suicide . He was the younger brother of famous actress Choi Jin Sil who commited suicide 2 years ago . Before talking about this , we must know about his sister . She finally committed suicide , but the reason was never known . Finally , he committed suicide yesterday . My friend recommended this website to me , because it is an excellent place where I can freely exchange experiences with people from all over the world in different languages . And I found the atmosphere here is friendly . I ca n't understand why it costs over a 1000 dollars to pull out a wisdom tooth if I do n't have health insurance . cloudy day Yesterday it was raning heavily . But today it is n't raning , just cloudy . Mokpo is a harbor city in Korea ~ but , we do millitary service . Yesterday was the 63th anniversary of the dropping of nuclear weapons by ( 1 ) So we have a responsibility to decrease them `` Is it my fault to lose my interest in that ? ( 3 ) Some foreigners will think that what I said is a common idea in Japan . Japan 's national team is strong now . We enjoyed visiting Kamakura . I have read a book which entitled Congo Journey I live in Saitama , where is located next to Tokyo , and I saw a lot of people kept coming to the station and they found all of the trains were canceled , so they started walking to their own home . I hope everything will be better tomorrow . I 'll revive my hometown and hope to live here with my favorite landscape of the sea again . It is easy for an outsider to cheer local people up and criticize the Japanese government , but people who are the most seriously and deeply thinking about revival are the local people . One of the most important things they want us to do , I think , is to start preparing for the next disaster . My father likes to eat Japanese food named `` Na bean `` every day . If your vocabulry and grammar are not good , you can not catch what they said . this is the first day I come here , I want to improve my English here , at the same time , I also want to learn Japanese . I know all of you are kind hearted boys and girls , and you all have good language intelligence , I need your help , and also , we can be friends . There was no sun but , only constant snow and rain . If I choose only 1 from them , it means I abandon the others . Nowadays I think a lot of electrical appliance shops have machines to make bread at home : this way you can save money ( is it sure ? ) and time because you do n't have to go to a baker 's after work , or if you forgot to buy some bread , this machine can solve these little problems . It seems like a useful electrical appliance and one of my flatmates is thinking of buying it but I 'm not a fan of it yet ! In addition , most people study English in high school . I ca n't write in English . I realized that rather small rivers in America which run through cities are covered with cement , like a snowboard halfpipe . ( * see below ) I have been using English more and more on business in recent days . My favourite song . Hello , my wonderful friends tonight I will practice my favourite song . I cant ' read some of the sentence as it is so difficult . If I go to a pub , I want to drink Lemonade . In the next class , I will teach a lesson , so , I have to prepare a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , younger people , close friends or acquaintances . I 'm going to write a lot of things in this SNS . For example movies , books , my daily life and so on . . . This book is about the globalized world and it was written by a journalist who has won the Pulitzer Prize three times . Autumn is my favorite season ! Japan has 4 seasons , spring , summer , autumn and winter . My favorite season is autumn . Then we can taste autumn speciality crops , pear , grape and chestnuts , ( The word `` marron `` is more popular . ) And it will be rainy tonight . I taught them how to play ! Today , I had a health check at my school . Nothing was wrong with me . You can cook it by simply pouring water into a cup with some powdered flavor and putting it into a microwave for five minutes . Computer graphics is very difficult work , so I often search for hints to solve problems on the internet . I think I should change my attitude . Because I have no opportunity to communicate with them before . This is called `` white night `` and people go to bed very late too during this time . Next year I will go to Canada or New Zealand as a WWOOF . I felt so miserable , so I thought I would write about it here and get some input ! It 's a big event for every Chinese university , as well as primary school , middle school , and high school . After the speech , every college in our university was required to present a creative show in one minute to show its different style and features . During these performances , the applause was enough to bring down the house . But choosing presents is interesting I guess . This is my first time to post something about myself here . There are matreshka ( exclusive and usual kinds ) , different things made from elm , from clay , also many kinds of jewelry made from stones , dolls , stuffed animals , wooden furniture and big wooden figures , textile , clothes and so on . It 's a muslim program I have never seen , maybe because it 's on in the early morning or because I watch TV very rarely . . But , on the other hand , care assistants for elderly people is lacking in Japan , so the government is planning to accept workers from Indonesia . It happened when she was n't with my friend . For instant , the famous physicist Einstein , changed our traditional view of the world . Parents in China attach a lot of importance to scores and rankings . The baggage delivered was a black chair , two tennis rackets , a big shelf , bedclothes and so on . According to my inquiry , my baggage was delivered to another place because of a mistake by the staff . I saw Ugly Betty who is a very adorable character in the drama . Omelet is made with carrots , beef , onions , pepper and salt . Recently , I 've been trying to be calm by changing the way I think and my attitude about everything . And it makes me to be slightly nicer to other people too . Meeting with Alcohol Big surprise , news have just arrived . After asking me many questions about my courses , my internship experience , career planning and some other professional questions , she let me read three emails and tell her the main content of them . I read many emails like this last year during my internship . I asked her to tell me more details about the position . After that , I knew the duty of that position is to deal with many trifling routine things , nothing special . She told me more things would be discussed in the second interview . So just forget it . I 'm very glad to join you all . My mom , dad , elder sister , her husband , her child , my elder brother and his wife . I 'm looking forward for you to point out my errors . Lucy 's characterimpressed me more than others . Today , 12 . 5 , is the anniversary of the Wenchuan earthquake . tragedy . Costing hundreds and thousands of lives , the disaster has broken hometown , we should also try very hard to help the people to Today , I attended English class from 8 to 10pm . Usually , the class lasts from an hour to an hour and a half long . Therefore , I am making a resolution to live abroad . Actually this one is a ' mobile laptop ' so it 's smaller and lighter than the old one . By the way , we 're in a summer break here , and I 'm planning to go to beaches , museums , travelling , watching fireworks , etc . . . I agree with the author 's opinion that in Japan , children can not leave their parents house because their parents wish their children would depend on them ; though their parents are complaining about such situations . When parents live with their own father and mother , they can ask their father and mother how to raise their children to be independence . I think that those are the reasons that Japanese parents wish that their children would depend on them . A few days ago , it snowed around my house . Today is Christmas . I met people of various agethrough myvolunteer work , part - time and practical training . Oh ~ Today is also a hot day . Right now the temperature in Fukui is 10ish degrees Celsius . We remained for extra inings because the Giants will win . We thought it was possible for the giants to win , but the game was so exiciting and the next one will be a win . I went to the dental clinic to pull out my wisdom tooth . If you are interested in it , please read my journal named `` Describing a picture ~ `` ) She has a really tiny waist , however , she does n't have slim legs lol ! She looks like a doll , because I can not think of a human that has such a tiny waist > < . Today , We smile , cry , shop , and lost something on this ground zero and bombed area . Of course , We have respect for the dead . She Succeeded . It was a vicious cycle . Today , she put out an unbelievably big poop ! ! I graduated ( graduated ) Chuo Uni . I like soccer , drinking part ( parties ) , and talking . As electricity has been cut off because of the earthquake , I can not cook and eat food which is sold at a convenience store . The best one is baked salmon rice ball and the second best one is fried rice ball with various ingredients . If you have a chance to come to Japan , why do n't you try eating a rice ball ? According to the weather forecast , it will clear up and be sunny day . Around 10 a . m . I will go to the City Museum to see the paintings , Actually , I have been learning English for many years , but I am still not able to speak English fluently . Maybe you are wondering which city in China I am from , so , I can tell you I am from Changzhou in Jiangsu province beside Shanghai . I 've been so addicted to quotes these days since one of my Australian friends showed me some funny quotes and love quotes several months ago . I recommend you Nagashima Spaland ! Then , the weather forecast says that a small typhoon is likely to approach here ! I do n't want to buy one from a Chinese reseller on the Internet . My dog expresses his desire to go outside by scratching the door and staring at my father 's face with expectation . My dog 's most hated word is `` shampoo . `` Last time I visited my parent 's house , I asked him `` Can I wash you with shampoo ? `` My dog dashed to the door , opened it very quickly , and run away . People living in Osaka eat `` Okonomiyaki `` with rice . It tasted like strawberries . There will a high school entrance ceremony for my younger son tomorrow . The nuclear powerplant in Fukushima was highly affected by the big tsunamis so we must save electricity . Instead of starting the summertime , my company will stop using half of our building 's elevators to help save electricity and cooperate with the government in improving our economy . I look up to him even though he is younger than I by three years . He told me the reason why many Japanese people have no hope for their future even if they have a lot of money and their lifestyle is better than any other country . She likes English and so in the future , I may be taught English by my daughter . My father was researcher of a geological survey . I do n't know among these questions . He said it 's yummy that 's why I 'm so happy . He recommended that I should stop attending language school ! ! but , for 2 months I went to 10th . ? ? ? Sometimes I have a Birthday Party . I will have a chocolate cake and get gifts from my friends and family . This is the first entry By the way , she paid 170000 yen for the painting . My friend always says that international love is difficult . . . She is easily frightened , so as I expected , she started to cry as soon as she heard the sound of waves . ( picture1 ) Since we got free tickets for some amusement parks and botanical gardens , we went to some of them . While there , we walked along a slope which surrounded a large aquarium that is cylindrical in shape . We could see these fish right here , so I felt like as if I could touch them . ( sorry I wrote a dirty word ) My colleagues and I argued about the merchandise 's selling place this morning . Since my brain controls every part of my body , both physical and mental problems have happened , for example I have had headaches , chest pain , difficulty breathing , could not think very methodically , excessive depression and aggression . Due to these symptoms appearing since elementally school , I could not go abroad . At that time my parents and I did not know the cause of my ill - health until January 2011 . One day my mother took me to a psychiatrist , but to be honest I did not want to go there though . Since I came here , I have been trying to understand what people are saying . November is coming November is coming already . I experienced many things this year . For example , I held meetings , practices , performed at many places , and planned events . The rainy season is coming . The key to breaking with the vicious circle is to change the fixed pattern of thinking once and for all . I ordered seeds of a flower , solube YTT . A white flower blooms on the first day , a week light blue blooms on the next day , Nakahara then realised that the lesson fee was much more expensive than he had first seen it on an advertisement . The staff cheekily tried to give the half a year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recently I challenged to be vegitallian because of diet and look shocking video which makes me think about various problem ( I will skip the detail ) . Fortunately we have vegetarian traditional recipes in Japan , and I am learning traditional Japanese food from a recipe book . It will be sunny the day after tomorrow . Learn English Today , I had an interview at a Company but was not sucessful because I am bad at English . In this book , there are hundreds of phrases . Actually , I wanted to watch the 3D Disney movie , but the tickes were sold out . Three adventurers go to the ancient world , and they meet a monkey - man . I had expected there to be a lot of British people , but in reality , there were only a few groups of British and the others were mostly from Eastern Asia , especially Japanese . My conclusion is that they have it in their home . Thanks a lot = ) ) ) I 'll introduce Japan to you , and what you do n't really know about it . Hi , from today , I am going to introduce to you Japan . Because of all the mountains , the area people can live in is very small . He often says `` My students always talk about the weather . `` I think that Japanese people like to talk about weather topics . It could be a good thing for a movie to be concise but I do n't think it happens to Angels & Demons . during the free days , I went at the museum , Zoo and went shopping with my husband . I put an extension on my hair . But the movie disappointed me And tomorrow is not only the beginning of great heat , but also could observe solar eclipse . Recently , I 've made a habit of staying up late . And I rode this bike . I am a Japanese person learning English . Have no fear of perfection , you 'll never reach it . - - - Dali Salvador Today , I thought about my dream and then I talked about it with my friend , Ran . Because there was a bunch of great stuff over there that I have to tell you about , It 's gon na be a long diary . A couple of hours later , my mother had an idea to turn off the indoor lights and turn on the outdoor lights , after that the bird flew out of the window . Our curriculum has to be finished before summer vacation , so students take classes on Sunday . I could see books from China , Korea , Italy , Spain , Taiwan and so on . They are an English book and a quilting book . I had attended a quilt class for about 5 years and an oil painting class for about 10 years in Japan . Last Sunday , there was blind person next to me on the subway platform . The climate here always changes : it was typhoon ( season ? ) only a few days ago and now is already a sunny day of over 35 degrees ! I have read a book called `` Letters from Vietnam `` My Sunday is made of sleeping , eating , having coffee and working . He thought he might be able to climb up the thread to Paradise . So , he grabbed it and started climbimg . Up and up and up , it was a long way to go up to Paradise . He saw the others also climbing after him . So it was very interesting and exciting ! I work hard , and early every morning I practise my spoken English for an hour . One Italian guy said that he does n't like McDonalds at all . He also said that Italian McDonalds is different than American McDonalds . He accepts Italian McDonalds but he has never tried American McDonalds because it 's greasy food . Then , one Korean guy said that Korean McDonalds has a kimchi hamburger . Alumni reunion In the end , I bought a red bag and some pretty clothes . I understand it is still difficult for women , especially for old women , to express their honest feelings in Korea , since there is such a strong influence of Confucianism . I do n't have a car license yet , so I hoped I would get it . But getting car license is quite hard for me Because I am worried that I would slam into and crash with other cars . Fortunately , that has n't happened yet , and I hope it never will . I went a Starbucks today again ! or maybe it was a soda ? We Japanese rarely buy a bottle of water or soda in Starbucks . But as I was quite tired today , I did n't have the energy to do it . Instead , I am trying this . Then there are pictures of Anpanman characters at July and August and December . We do n't understand how important the day is . She is supposed to stay in Arlington in Massachusetts . When I was prepared to pay up at the counter , I found the price very expensive , which surprised me . I wish thatall the friend from the net who view my diary and findmistakes can give me corrections and adviseon the usage of language in the article , even if it 's a typo . He stayed at a youth hostel in London for one week and became friends with many tourists from all over the world such as , Holland , Australia , China , and Italy , by talking with them in English . When I bought it , I was happy cause I no longer have to borrow my friend 's bicycle . It sounds like those who have tattoos are bad and unsuitable people . `` Tattoo `` sounds more fashionable and smaller in size . ( basically Whoever has a tattoo is rejected at public places like swimming pools , public baths and public Saunas here ) `` Daddy Look at the big carp on his back ! I will watch the movie `` The Social Network `` this weekend . Mongoliais Asian country . I am a senior in high school and this is my last time so everyone play hard ! ! ! : ) Whether it is running or jumping , everyone will do their best ! ! ! I am really proud of them and very happy to meet them in school . `` Oh , my little baby . . . Please teach me how to concentrate on studying . > < It 's only 12 : 26 and I already wanna go home ! The prom pictures should already be updated on the school site but they 're not there yeeetttt grrrr I wanna try the real full - cource French meal , or whatever it is that you call : S I checked an otological website that said `` If you continue to have a cough , you should suspect allergies . `` I got the idea that the cause of my cough would be allergies , so I 'm going to an otologicalist this afternoon . Recently , I could n't write a daily journal in English . Tanzawa National park kanagawa prefecture . I rode a go - cart . So , I made my curriculum vitae , and I 'm searching in Europe or Asia . So , I cleaned my room . T `` is challenge time . Every morning swallows come to my balcony . It is rainy today , but we have a pleasant day . We have an indoor barbecue ( I do n't know whether it is called a barbecue or not . ) . But I can feel good when I 'm livigng ( living ) in my room from tomorrow . My class is listening 2 , grammar 3 , conversation 3 , reading & writing3 [ the max level is 4 for everything ] I think that this rythme sounds good . XD So , I have to overcome this psychological obstacle . . . . . . . Teaching them English would be a tough challenge for me because I would have to take full responsibility for their results on their high school entrance exams . Even though the pay is the very low , I still accepted it without a second thought . Just going to the library kept me happy when I was a child . I 'm going to be busy from tomorrow onwards . The day for the Eiken English exam is coming . I had almost forgotten that I needed to study for the exam till I received the card , but now I 'm a little uneasy . But I know my English skill is not enough , though I 'll have to work hard for the 1 week that I still have before the test . because my bag is in the room thank you for writing . : ( Olive found a very cute stuffed animal in the shop and her mother bought it for her . Although It has been more than 1 month since this new year started , I have n't even started yet ! I 'm actually not good at grammar and reading more than speaking and listening . Because I could n't understand most of grammars , it made me sick to study English . But the most important thing is to keep studying and enjoying English not for exam . But , I will apply for a job with another company . I am studying document 's grammar , speech , writing and others . . . First , I practiced speaking in english with videos . Then , I wrote an essay . I thought that iPad is more comfortable for her . This have something to do when a woman becomes pregnant . When ladies are 5 months pregnant , we have to go to the shrine for our babies blessings . I have been studying English for a year in order to overtake a friend of mine , but she seems to have mastered a higher level of English than me . He killed Peter 's brother Nathan , and he was driven to become Nathan . Finally , he felt so guity he imprisoned himself into a world within his own mind . Finally , they freaked out and argued with each other , and Peter shouted at Sylar , blaming him for there being no way to get Nathan back . The wall was destroyed by themselves . The work of this committee is to organize an athletic day , I try to give my effort to this committee activity ! My wife recommended me to this site . It 's going to be hard to control / maintain a schedule of studying and hanging out with friends . After carefully reviewing all the terms and conditions , Jessica finally decided to sign the contract . During construction , the main lobby will not be accessible to employees except to executives . This is my first article at lang - 8 , so I guess writing an introduction about me would ( sounds more natural ) be the best start . Now I must buy it on the internet . I am a Japanese lady enthusiastically studying English writing , reading , speaking , and listening . The movie was very enjoyable . I recommend you to have fun in your special style when you see colorful movies like Disney 's . I really like to take photo 's because I can document my life easier . I feel comfortable and peaceful when I take them . Everybody agrees that the products of Japan are of higher quality . This word `` Kaizen `` which means `` improvement `` has gotten very famous , and many factories / manufactures are trying to do ` Kaizen ` to imitate Japanese quality all over the world . Because I believe this natural Kaizen in Japanese production is strongly related with Japanese calture of `` Ki wo tukau `` . The culture of `` Ki wo tukau `` is everywhere in the world in social communication , but other countries do not implement this thing actively in their work . This makes them follow `` Kaizen `` naturally . `` Sony timer `` is the timer which makes products malfunction when the warranty is expired . Today 's menu is Curry . I drank some alcohol and ate yakitori at a yakitori restaurant in Shimokitazawa last night . It had a strong taste and was a bit hard to bite , like jerky . Within the next two months , I want to learn to drive a car . I think that would be a very interesting thing to do ! First , please allow me to introduce myself . My hobbies are watching sports , especially Formula One , playing tennis , and watching movies . December 31st . Honestly , I do n't like to study foreign languages . Especially English . Of course , I knew we have no choice but to learn foreign languages , because we are in the age of globalization I appreciate those members who correct my diaries . I had to eat the dish they ordered cuz the food they like to eat r the same : ) It seems not to be asleep . In regards to sleep , I looked up an interesting expression in a dictionary . By sprinkling sand in children 's eyes ! ! ! In the world there 's nothing more valuable than people . There are very heavy . : ( Although suffering from a snow disaster at the begining of the year and a terrible earthquake rocked the Sichuan province , the on - going Olympic Games inspired our passion to our people and country . We all close our eyes before starting the game , but only thieves can raise their heads up , open their eyes and look at each other , which allows them to know who the thieves are . Afterwards , we start to guess who the thieves are by making inferential statements like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes , afterwhich we point at the persons who we think are thieves . I played basketball with my friend in the park today . My mother tongue languages are Cantonese and Mandarin . I like to read books , newspapers and stories from the internet , where there are a lot of pages of information , entertainment and literature , but ( I think ) books are better than any other way of reading . The book that I 'm reading is named : `` Lestat the vampire `` , and the plot is about a new vampire who wants to know the secret of his immortality and he enjoys the pleasures of the life . Lestat is arrogant , and because of the secret , he toured many places ; I like it a lot because of the way it is narrated , the history is another attractive element that I enjoyed too and also because Lestat is handsome ( in the movie : D ) A lot of interesting TV shows are on the air in December . My video , which is set with HD , is able to record TV programs for 22 hours . I was so busy that I could n't enjoy or finish watching my recorded programs . ( T _ T ) . North Korea signs forward as a goalkeeper in the world cup ! He talked about the environmental with a loud voice . Sometimes a citizen would ask `` What are you really going to do ? `` Toronto ranks second best place for living in the world . Toronto is ranked second best place for living in the world . Could me give me some examples ? However , it 's somewhat difficult for me to learn because I must control both hands and legs individually . I 'm doing image rehearsal and practicing easy beats . You can guess how embarrassed I was . Or a golden driver ? Anyway , I remember a book I read when I was in junior high school . It turned out that Jack the ripper was actually Sherlock Holmes himself , who was so strongly addicted that he had delusions . Actually , I had an interview with TIM HORTONS . I applied for a position and interviewed this Wednesday . It 's ( very ) amazing . So I wonder if you could do me a favour of revise my poor level composition . Today , I made sentences of dialogs for learning interrogative sentence . So I wanted to get some student handbooks and exercise books . Where are the good spots in Singapore ? Before feeling the effects , you may tremble a bit already . That movie is produced by konica minolta , who is famous for camera , plinter etc . so I have n't had enough sleep recently . When I first saw thousands of Jizo at the Hase temple in Kamakura about 50 years ago ( wow such a long time ago ) , I felt unpleasant . good morning everybody ! last night my friend came to my house . this morning I made her breakfast . because she thought that I was able to cook ( good ) the time I spent with her was enjoyable . I want to ( `` wanna `` is slang ) say that I am extremely bored . It is a family comedy , and it is really funny ! ! It was a very happy party , and her speech for her parents made a deep impression on me . It is my first time to write on the Lang - 8 website . Fortunately Japanese people are allowed to drink outside , so of course we can also enjoy drinking under the Sakura trees `` Some things that a glacier might do when it retreat is instead of depositing till ( scraped up soil ) in the area , they might leave a big ice block . The ice block breaks off the glacier and as it melts it leaves a depression which can become a lake . `` When I listened to the song for the first time , about ten years ago , I was so impressed . The song was featured during the next few months on a heavy rotation . I experimented because I had no other plans today . I wasted 2 months on dissertation period . . . All I know is her english name ( not her real name ) and her major . Since the midterm is worth 30 % I do n't think I can pass the class with a poor score on this midterm . My mother was in a hospital for a week . I wonder if my students like that . From now on , I got to have snickers for a while . These days , I submit some resumes and application forms to companies and graduate schools . I like me as I am nowadays . I want to try to write some my thoughts but sadly , I recently have read nothing . Recently , I have not felt like studying any foreign language . I found some interesting words about learning foreign languages in a book I read yesterday . `` Learning a language is like laving water by a bamboo basket . `` ( it has many small holes ) , but if you keep learning patiently , you will got good at it . `` I hope I will be able to easily understand English DVDs without subtitles in the future . . . Do you have any birthday that you ca n't forget ? ? Well , I talked with some of my employees about the job description . He want to know more about Thai food so I need to prepare more ? ? ? about the food and practice cooking with my mum . . It is hard ( ? ) for me to understand English in business conversations when speaking with him . . Well , I will do everything as best I can . Including me , most of ( the ) Japanese is perhaps good at Listening and The number of patients of influenza around the world is increasing everyday . Thai people make a Krathong from a banana leaf and put flowers inside it . Then we put it in the river because we believe if we send our apologies down the river we will have good luck this year or something like that . But today I will not tell you more about the Krathong festival . His head hung from the bridge and his body floated in the river . He is not Thai but from some other country , maybe Germany . The police are investigating why he would kill himself or why someone would have killed him . I am thinking about going to Vancouver for one or two days . And my oral English can deal with some easy topics . What 's more , I am also starting to read the English novels such as `` The Red And The Black `` and so on . From such novels , I can learn some original sentences and the useful structure of them . Please correct any incorrect sentences that you find . Since , then I 've been a housewife for almost 4 years . I registered lang8 today . My purpose at lang8 is to learn English and make new friends , while learning about foreign cultures . He said to the firefighter 's wife `` He can not move his muscle . . . I slept after work because I was tired . Pronunciation is impossible . . . I 'm not sure how to improve my English pronunciation . Even though I 'm using this website to improve my English pronunciation , in the following passage I 've typed up , I always ca n't pronounce the same sounds properly . banished = `` sh `` That 's the reason why I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . As you know , everything is expensive in Japan but I found cheap clothes in a shop . Yes , it was a really lucky day ! ! Comfort foods are so warm and and familiar to me , especially Mom 's cooking , it 's a real blast from the past . In the winter time , the weather here is always badbecause its wet , cold , and windly . Opening my mailbox this morning , I found a refusal letter from Warwick University . It was the top choice among the five universities that I applied for , so it came at no surprise . I did realize this from the very beginning , and actually , I did n't long for admition at all , did I ? However , when the result finally came , why was I so disappointed ? A cell - phone has many benefits . First and foremost , average Japanese job applicants have studied English for around one year , but my visa was not working holiday , so I could go to a language school for only 3 months ; it was not enough . Some Japanese people also took part in the meeting , but most of them have been living in Singapore for a long time , and they can speak English very well . Yesterday , I went to Akita - Ken by Super Express , because my job is near Iwate and Akita . These have some beautiful illustrations . These books are closely related because good light novels are animated frequently . My older sister and I were talking in the hall . So , there are a lot of events . if you are interested in it or Japan , please comment . Cooooooooooooooongratulations ! ! ! ! ! ! ! : ) My Japanese friends , and European friends live in long distance places . Our 5 members met in front of DangGoGae station . It is too difficult to speak English . I think it 's a problem to read English books , articles , news and so on . `` The baby is cute ( kawaii ) . `` is an example that is easy to understand , but the word is also used for the elderly as positive adjective . at 900 am until 530pm . . . I am going to apply for this position . But I 've only been studying English for 8 months , so my English is very terrible ! I 've been playing the piano since I was 3 years old . This is Sarah 's daughter . Tokyo has a many restaurants where you can eat a delicious lunch . I 'll tell you a restaurant I recommend in Shibuya . It has very delicious gelatto and crepes . Many people in my company says `` it 's great ! `` I am skeptical about this , because he appears to be busy . The players explore the dungeon and return to the castle repeatedly . I work at the Welfare Department . The kitchen is always dirty because of the Taiwanese woman I live with . She does n't usually clean the kitchen after she 's been cooking in the kitchen . We always wash dishes and clean the kitchen . But she does n't clean the kitchen after using plates or the frying pan etc . So the other flatmates began to grow impatient . First , the only Japanese actor , `` Sanada `` , who played the captain of the spaceship , died first and unnaturally . Second , I saw a monster sneak into the spaceship and kill the crews in the latter half , but I do n't get why the predecessor captain could survive to turn into a monster and kill the new crew . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thought . then I had a lunch that consisted of INARI ZUSHI and mushroom salad . I was not tired because I took a nap . And my neck felt very good today . It 's SWALLOWTAIL BUTTERLFY . However my friend who are going together said that a natural disasterstrikeseverywhere and whenever we ca n't expect . Since I have the experience trapped in the elevater by blackout of thunder I am really nervous about these kind of things . I want to break my language barrier , which has stopped me from making new friends from different countries . Now I 'm learning English - watching English films and tv programmes . ( Sorry for my grammatical mistakes : ( - I speak and translate better than I write ) In china , the big birthday is a very important day in every chinese person 's life I have never seen heavy snows in my life , therefore I & nbsp ; am a little excited . I always have a little dream : I wanted to dress up as a monkey with a banana in my hand since October last year . I 'm not a nurse or a doctor , I 'm working at the reception desk every day . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowlede about your own country 's tradition because some people are interested in Japanese culture . It 's a Japanese traditional food eaten on New Year 's eve and it 's said that this custom was made in the middle of the Edo era . It relates to the reason we eat it on new year 's eve . Next I want to talk about the reason we eat the year - crossing buckwheat noodle . The second is the wish to cut off your troubles , and not carry them over to the new year . According to a website , which conducted an internet survey to 1000 people , about 80 percent of people ( in Japan ? ) eat the year - crossing buckwheat noodle . She did n't notice a small wall behind her , so she bumped the car 's rear - right side into the wall . I will be nervous ! ! Anyway I 'll try to make my account now ! ! Thanks for reading my concerns haha . . What is Christmas ? I do n't like Christmas , and most Japanese are not Christian . Why do they celebrate Christmas Day ? I think most Japanese young people are celebrating Christmas in order to have sex with their partners . They should re - name Christmas day , `` Japanese sex day . `` Everybody in the world already knows that all Japanese people are perverted , they will not be surprised at all . Stupid Japanese singers release Christmas songs in winter lol . What do foreigners in Japan think about this stupid habit ? Japan is just a follower and dog of Western countries , we do n't celebrate Chinese New Year at all . Japanese should stop this repulsive event unless they properly understand the meaning of Christmas . You know what , tonight , every couple is having sex in every sex hotel like monkeys lol . Are They Different ? That makes me frustrated . . . I would like to tell my thoughts fluently and not so stressful in English someday . I heard it would be warm today , so I left home in a long coat . It 's extremely surprising ! Graduating university , I worked as a chemist in Japan for a couple of years , but quit the job to study English . After that , I became obsessed with English because I met a lot of people who come from various countries and learnt different cultures , history , food , ways of thinking . Is that a natural response ? Since the earthquake occured and nuclear power plant halted , The Tokyo Electric Power Company , Inc has conducted scheduled power stoppage . Neon lights are turned off in the streets . My roommate told me that the pizzaria is the nearest washroom place . I went to the washroom But I hope this will make the Japanese national game develop . In my opinion , We have to face a lot of pressure from any part of our lives . Such as the challenge from our education as well as the high expectations from our parents . They are all on sky levels leaving me a sense of anxiety . The more anxious I get from the pressure , the more hard conditions we will absorb in . There is no way for me to escape . ( If I had known the water in a pool was actually shoulder - high , I would have tried three years ago . ) Anyway , I decided to try swimming and now is my favorite exercise . That woman that jostled with him looked at my face and suddenly said ooh yeah ! Oopppsss ! ! ! because , this is my first visit this website , and it is a little bit different than a korean website . . Her 2 - year - old son goes to a nursery 4 days a week . I wo n't climb up the mountain but I will go hiking in the grassland . I 'm looking forward to walking on the grassland . I created my account on lang - 8 Why Financial Disparity Can Affect Friendship ? Nowadays there is an argument about financial disparity and whether it will or will not affect friendship . Such as life style , life condition and personality . `` If you do n't think of something useful , nor do something useful , you will not be able to develop yourself . `` Everyday , I test products or study something . I think it 's useful , sometimes . I chat with my friends as well . The reason why I am interested in trade is because I believe that trade helps developing countries and poor people . I could not tell anyone and I was afraid my parents would worry about me or my friends would make fun of me . We usually go to shopping for sightseeing on weekend . Here in Wakayama , we ca n't live without a car , because the fee of public transportation is expensive . Is the sentence above grammatically correct ? There are special New Year 's meals , decorations ( both interior and exterior ) , visits to a shrine , visits to family members and relative 's houses , special games , and so on . I hope to improve my English more so that my English will no longer be an obstacle to talking with others . Today is Christmas , Shoppers use their own bags instead of getting plastic ones . They get interested in EV cars , solar panels , and CO2 free stuff . However , when it comes to buying foods such as fruits , vegetables , and whatever , you bet that they tend to choose fresh ones . If we consider the eco - friendly options , we should check the date on the package and choose the older stuff . Because the older ones keep aging until they are abondoned if people choose only fresh ones . Hello , everyone I 'm a little drunk , so I 'm worried if I can do my work normally tomorrow . I went to Woodstock tonight . It was nice to be there tonight in a familiar atmosphere . So , I do the same way and it tastes delicious ! ! But my first instinct is that I shoud still keep on going in my art career . But a few days ago , his complaints of 4 years ago were reported with the title , ' Jay for Defaming Korea . ' He just grumbled about his tough situation in harsh language that is usually used by many teenagers , but many Koreans are that he deceived us . The book store near my house went on bargain sale up to 50 % . He told us the pronunciation is very important in the learning process , but he also said we need n't worry about poor grammar because pretty much nobody will care about it when you are chatting in everyday fashion , except for when under a formal situation . The first time this happened I felt so sad I could n't say any words about that , and I was frightened by this action . Maybe I get angry but I do n't want be weak . Hope my English have big progress ~ ~ There was a person who knew me from before ( when ? ) and she called me while I was studying and asked me to be an assistant professor for her English center . I will take this opportunity ! Maybe if sometimes , at least once a year , the monsters from our nightmares would give us gifts . Even if they were modest but pleasant . Maybe it 's because I worked 8 nights ) And flowers are blossoming . If I can not keep watching them regularly , it can not help improve my English , so I watch them the way I described . I notice that my vocabulary expands by reading Englsih subtitles . So I am really looking forward to these events ^ ^ I 'm going to meet Mickey mouse and Minney mouse . Why can some people commit suicide in order to follow a famous actor or actress whose character they can not truly and wholly understand since they can only meet them through the TV ? Even though I like singing , everyone around me hates to hear it . If you find something wrong in my diary , please correct it . I always think the river is like the Ganges River in India . I am so happy but then , he is a Japanese . `` A cracked pot and a holeless lid `` in Japanese means `` Even if we have some faults , we can compensate for each other . `` I like this kind of idea . Priority seats are for elderly people , expectant mothers and disabled people ( people with impediments ) , but most people who use it are not any of these types of people . Most of the time , it is used by young people and healthy people who do n't need to sit there . And if a weak person gets on the train , sitting people do n't offer their seat , therefore they ignore weak and elderly people . They do n't need it , but elderly people want to sit there ! For this reason , I went to the photo studio to have my photo taken , which is needed for the / my student ID . There must be a / some reason why Internet shopping has developed as it has . In conclusion , after all , what is important for us to utilize Internet shopping is an adjustment when a certain problem has occurred . * Increase the ability of concentration . Yesterday , I bought a restaurant guide book `` Michelin Tokyo `` . I do n't have beautiful clothes , a wonderful car or a gorgeous girl friend . . I am a graduate student learning English education in primary school . Especially I am interested in cooperative learning in the English Education field . My future dream is to become a teacher in primary school and to be a researcher someday . When I rode my motorbike on narrow road , suddenly a girl crossed the road in front of me . I braked hard immediately . I am looking forward to meeting someone : ) I am a Chinese student and I live in the Anhui province . I study at Xuancheng Vocanical ( Vocational ? ) and Technical College . I love English very much . I watched a movie at the cinema with my friends . My daughter will go to Universal Studios Japan with her school on the second week in May . She dreamed about the amusement park almost every day . When we got out the attractions , I found that my umbrella was stolen . My next English speech is about that . Center entrance examination for university It rates as one of the greatest movies I have ever seen . Thrilling , exciting and shocking ! ! ! So I really appreciate my host mother . I know that there are many people in the world , and that they have many different personalities . Sometimes it amazes me when we can understand each other . I 'm really busy now . However the foreign countries may be not comfortable for your research , you will be able to see Japan from different point of view . `` I agree with his opinion . I think the thing missing from Japan is a sense of crisis . Although the number of people who eat whales has been decreasing in Japan , some people who lives in the specific areas still hunt whales to make living . Admittedly we are surrounded by a lot of scintillating gadgets such as video games , personal computers and whatnot . Though visitors can not copy anything in IE , I can copy everything in firefox by an extension . There are some people suggesting to encourage and praise students when they meet difficulty while some other people choose to blame them and sneer at them . I wish everyone would be friendly and love others , just as you expect to receive encouragement from others . It was hot and spicy ! Of course , sightseeing and food or even traditional events and so on are probably within my knowledge . . But , I 'm thinking that I 'll need to get enough rest so that I can prepare for the next challenge . . Right now , I do n't know what the future holds or what is in store but at the least I want to fulfill my tasks until the due date . Hi my nickname is Ryuki . Thank you . I wanted to run the air - conditioner because I wanted to be cooled off . but it will become more difficult to have time to learn than when we were students . I think that the student who recognizes the importance of their privilege can make use of their college life for sure . When I rode an elevator , I noticed that the elevator car had no door close button . For instance , I knew `` legislation `` , `` archeologist `` , but I did n't know It was simple enough to do . I ca n't help trying other combinations The opening sound is really familiar I am eager to go to a theater and watch it . ( How could a handsome boy grow up to an ugly man ? ) However I noticed him in the trailer ( maybe , full CG ? ) . It is difficult , there are a lot of new words , I can hardly understand It Also I was very impressed by other student 's topics such as Discrimination . others confidently ! ! The Colossal Squid 's eye is as large as Soccer ball . Recently I gained a little weight . Please give me advice ! I 've never been to the mainland of the States but I 've been to Hawaii over twenty years ago . That 's why you can find many signboards , menu of restaurants and so on which are written in Japanese language and many locals speak Japanese . Before today , I never tried to write a diary in English on my Blogger . I did n't have a way to find my mistakes and use correct sentences with this method . I think it is not good for ? to make international relations . To make a good relationship is so hard . After 1 cup of coffee I was alive . At this point I have almost forgot it all . The breads which is piping hot , fresh from the oven is delicious . I got pickpocketed A man bumped into me and walked away without saying anything . The pickpocket fell over and he was caught by several other people at the cafe . It was mostly cloudy in Palau , because it was still the rainy season , but UV was really strong ! Because we made our way on the bus , we were late . The trouble is that I am not sure about grammar , especially whether the verb tense and the form of words are correct . Marugame Seimen is a Japanese udon restaurant . Work was very hard because there were twice as many customers as usual , . I think it was because of summer vacation . We 're going to study `` Reaganomics `` next time . So I have a lot of trouble now . I found that the pronunciation is different from English . And I like to talk with foreigners in English . This morning , I woke up because of thunder sounds . A street was flooded and I was caught in a traffic jam . Anyway this weather was crazy for a few days . The weather forecaster says tomorrow and the day after tomorrow will be a thunderstorm . It reminds me of when I made it in Australia . They are Japanese and German . When I have French toast , I think of them . Hi every one ! I have moved to a new apartment and I 've got a personal room . Because when I wanna do anything I do n't need to worry about my family . I want to develop my English skills ! Thank you every one . Everyone of Korea has important four obligations . Its main star is Whoopi Goldberg . Every Sunday , I watch it on DVD and I repeat Whoopi 's phrases to practice English , Incidentally , the opposing team was much better than ours . I could n't believe my ears . It sucked . My apartment has one bedroom , a spacious kitchen , a bathroom and a nice balcony . I got a list of personal dates , and had a shock because most of them are from famous universities . So check my sentence , please . It was very difficult to search for a job because the economy in Japan is very bad right now . And you are very good at drawing pictures . I remember clearly my memory in Melbourne . Today I read a lot of journals and realized it 's actually all about practicing English . I could n't fall asleep recently , We will have not enough time to take care of our baby either . Although I want to play , I 'm fed up with this unenjoyable lifestyle . We bought a Christmas tree and accessories for it . Honestly , it truly works . I am currently studying English at SDA . I drove to an umbrella shop , got my kids ' umbrellas that had been repaired , and requested to have another umbrella repaired . Please help me with my English ! I would really appreciate it . Maybe I can even help you with your Chinese . As we grow up , we come to beware of consistency and not telling lies . If we do n't care about those things , it would have a bad impact on not only the people we talk to but also ourselves . What goes around comes around . I had an opportunity to go to Australia to study English for a few weeks when I was high school student . I : There 's a vacancy in my heart . Why you do n't just fill the fucking vacancy ? The reason why I ca n't fill the vacancy is because I am a coward . Why do n't we just keep silence and time might fill the vacancy when it passes it . Time might fill it with what ? Tomorrow , I want to come home earlier than today . Therefore we are looking for delicious restaurants , sweets shops and supermarkets etc , every weekend ! I woke up today very early and I did n't sleep very well at all ( ( ( I woke up after every hour at night . . . ( ( ( but it did n't prevent me from doing my morning jog ; ) ) ) so after a shower I feel refreshed and I do n't feel any tiredness ) ) ) Just like the life of Europe in the middle age . good morning . For the warm condition , there were lots of pollen . I like spring , but I hate pollen more than I like ( hate ? ) warm day . This title has the same name as a Beatles song . Though I 'm in my first year of college , the graduation is not as far away as we sometimes imagine . We drank some wine and some snake , I ordered a `` Strawberry Margarita `` . Before , I did n't know what a Strawberry Margarita was , but now , I understand . A `` Streawberry Margarita `` is a sweet - tasting cocktail . I like it . After that , I met some new friends , they are from Japan and Korea , they are friendly and kind , I like them . In the University , my favourite place to go is the Library . There are a lot of good books and music ( ? ? ) . The atmosphere is very nice , very quiet . You can read any book you want to . The library is very big and when you want to have a rest you can look out of the window . Everywhere around you can see the trees and hear the birds singing , and feel the wind blow on your face . Fantastic ! When I was a junior high school student , I was told to write a daily diary by my Japanese teacher . Now , however , I realize that it 's just their sense of humor and that they do n't mean anything bad by it . So , I say `` Sorry , I have only one and I ca n't find a replacement here . I brought the English pocket bible when I come to Tz . It looks like a pocket diary and so pretty . She was born in Poland which was controlled by Russia at that time . knowledge of our industry . Hi , I 'm a student in a Master 's Program for Product Design and have completed a product called Finger Dance . Finger Dance is a type of digital communication equipment for cold environments that is used for outdoor survival and rescue in ice disasters or snowstorms . I went to the spa ( open bath ) Sometimes I make notes when I study so as to remember importent information . No matter where you go , no matter who your ancestors were , what school or college you have attended , your best opportunity is in yourself . This is it ! ! So I closed yahoo messenger . I 'm notgoodat english but it 's fun for me to learn For example , in Japan it 's difficult to adjust to strangers . Japanase people have to go to foreign countries to solve such a domestic problem , and have to improve their English education to become interested in communication . Blue Monday Today is Monday . But I always feel tired and gloomy on Monday morning . And nuclear power plant problems have n't been solved yet . Next , I poured flour into the chocolate mix and stirred . The craftsmen built dragon boats to scare the fish and and turn them away . For me , I 'm dreaming of traveling to foreign countries , like Australia , Egypt , and especially European countries . I think all of you are the same as me , everyone has their own dream land where he ( she ) wants to go or he ( she ) likes aspects of this foreign country , so we choose the language of this country . People worked and students went to school on Saturdays . I want to be able to speak English to travel abroad , however I ca n't speak English well . And of course , Oda Nobunaga . They were true samurai . It is really similar to other songs . This is the first time that LDP lost their seats in last 50 years . It also the third semester of my college life . Is it a college student life ? I had already heard of AC / DC but it was the first time that I had listened to their music . The eclipse is coming tomorrow Anyway , do you like to go shopping in a crowded place ? ? There was a terrible earthquake and tsunami in West Japan . For example , airplanes , factories and cars scare me . I 've just finished `` The Shadow of the Wind . `` Actually it 's originally Spanish , but I chose an English translated version Now I have started `` The Namesake `` by Jhumpa Lahiri , which is really interesting so far . Anyways , Sofia came over to my house and we kept talking talking talking talking lol . Around 5 : 30 , we went to downtown to watch it ! ! At least in Kamloops . It 's a really tiny city , so there is no wonder why you happen to see your friends everywhere . lol ) This game was actually really tight , and there were a lot of fights today , lol . Some of the players were even bleeding lol . Strangely enough , most people looked forward to seeing it . So when it happened , lots of people were standing , screaming , & shouting lol In the end , the Blazers won ! ! I have no idea how she 's been studying Japanese for such a short period ! ! Go for it and keep it up sis . < 333 We are all missing you , and thinking of you dear ! ! I try to stay fit while not having any cigarettes They are really beautiful and fascinating . You can enjyo food and drinks while viewing Cherry trees . But I will definitely go tomorrow . I 'm happy to find this website because I 've wanted to improve my English , especially my skills in expressing my opinions and feelings properly in English . According to the company 's website , they were actually the first airline in the world to start a pickup service by car . makeup , hairset , dressing and aesthetic . Then , I will continue when I return to Japan . She said , the Netherlands are going to win , whereas I said the Japanese team will definitely win . . . The characters are very fashionable and interesting . When I was a child , I heard from my grandmother that there were many treasures under the ground at the end of a rainbow ! ! ! This is a Japanese legend ! ! ! What kind of legends about rainbows are there in your country ? ? Tomatoes originally grew in South America . The spanish brought them to Europe in the early 16th century . They first grew them because they were pretty . I normally spend time with her . movies , music , speeches , and so on . I 'm a student and I 'm trying to learn 3 languages at school : english , czech , and german . . Although I 'm in China , I still like Halloween . Is it fashionable ? I might speak english like a native someday . Frankly , I do n't want to go there today . Nevertheless I went . The Internet changes us The picture depicts a scene where everyone , women and men , young and old , surf online . They confine themselves in a separate room all day . I 'm looking foward to going there , but it means I wo n't be able to enter the prefecture tournament . In a florist 's I saw many beautiful cyclamens . I heard that they often eat century eggs in Chinese restaurants in the Philippines from my Filipino teacher a little while ago . Other people probably thought that I was mad , but I like that ! Today I gave an American guy a call through Skype , It is my frist time to use Skype and talk with a Chinesepod student . I have had lots of students in the last four years , but I teach them face to face , so it 's easy to know what they want to know and want to say . At the beginning , I was a little bit nervous but we keep the conversation going smoothly ! So I relieved . Every time when I actually sit down to read some books or do some lesson reviews , it just does n't work . Because I have purchased a new iMac PC . Guten Abend ! During my presentation I had a stomachache because I was being nervous . I was so happy and I became more confident ! ! In many stories , there must be an invisible red line that ties two strangers ' little fingers . I started writing this diary today . I doubted it when I saw the TV series because I always have to wait for several minutes when waiting for the green light . What 's more , I saw the long queue in the driving school I came to notice the line was a * * * * . It 's embarrassing yet I need n't worry to be caught in drunken driving . My happy days will end soon because I decided to get an internship . One of them is the malfunction of a gene that produces a protein that bridges between synapses . That 's why I 've studied English hard but I have n't developed speaking nor writing skills . Recently , I have had no time for myself . Sometimes it makes me tired . Without any interuptions . Alright , morons ! There are many other places to go . The tray and spoon , which I bought at Tagakushi in Shinshu , are made of bamboo . Looking for a Suitable Partner Yeah , finally , I opened my mouth . Although they refused me as some of them were not English native speakers or they had already had a partner . Although the rice was a little tough , it was so delicious . However , the chief of our speech section said that his performance was too passionate / exaggerated . He told me that , while Japanese judges tend to demand speakers to deliver thier speech emotionally ( ? ) , foreign judges want speakers to deliver their speech naturally . The chief said that his speech was too calm . That really impressed me , This thought crossed my mind . I have to admit though , I do like the taste of meat . I was really shocked that people can be that cruel . `` You have two choices , you can wait here until the electric power is restored , or you can finish now . Three of my friends came to my house to study English together as usual this morning . The street from Harajuku station of JR yamanotesen to Meiji street is called `` Takeshitadori `` . It is very fun for me because there are many kinds of cool shops , for example apparels , restaurants , sweets shops , nail shops and so on . `` Backpacker `` is a name for someone who loves to travel . So , when I found this site , I was pleased with it , registered right away and tried to write a lot . I do n't know if this method will lead to a high score in TOEIC immediately , but actually , I really enjoy studying and I sometimes think in English now even in daily life . She sent a message to me yesterday to make an appointment to study Thai and Chinese for when I travel with my friends in Kaoget . so this is why I am a lucky girl because I do n't pay money to study Chinese because I have Chinese friend already ye ye ! ! after that , we talked about how we plan to study Chinese and Thai . You know , it will be really easy to her to do . We departed to study on Tuesday and Wednesday and Sunday every week . it is really easy for her to do but not me because I do n't have any experience before . Thank you for reading . Hello , my wonderful friends I can see someone in the internet cafe right now who I think I might know . He / she ? is [ BLUE ] younger [ / BLUE then me . I think we had a small problem ? a long time ago . especially since I dont ' know what I would say . You may think it is funny going to a rock festival despite us being so old . At times like this , to avoid misinterpretation and unnecessary panic , the Venusians consulted their Martian / Venusian Phrase Dictionary . She then attempts to help him by asking questions or talking about what she thinks the problem is . I need you to ask me questions to assist me in discovering what is happening . `` At this point she proceeds to anger him by asking questions when he real wants to be left alone . `` It 's all right `` translated into Venusian means `` This is a problem but you are not to blame . You can abuse me and I can abuse you `` or she hears `` It 's all right this time , but remember it is your fault . Without this translation , when he says `` It 's no big deal `` she may hear `` You are making a big deal out of nothing . Without this translation , when he says `` It 's no problem `` she may hear `` This is not a problem . Sometimes what he is really saying is the opposite of what she hears . The best way to show our love , in my opinion , is to strengthen our ability to deal with things and give others a hand if they are in some trouble or need some help . They also recommend watching movies with English subtitles to understand every sentence ! Completely finished Apart from the good news , I had a bad one . Well , my IELTS score was so bad , that I could n't believe I had it . . . . . . . . . . . Good morning everyone . Even you can improve the language ( that ) you ' re studying Then , I can somehow understand what they say . This was a antiaircraft and was used in positions on a lot of ships . I was satisfied watching these things ! A salesman ? It is a little difficult for me , but I 'm trying to get better at . It will be good motivation for the author , I think . I asked her a little about her country . Jessie , I can feel a fireplace 's warmth and I can smell coffee in my mug when I listen to your music . My throat is so painful . The purpose is follows , Anyway , I will try to write my blog about my situation before departing and such , and about living in US . Please teach me a cool opening word . It all started fifteen years ago , when I was saving some money for a rainy day . He booked accommodation and a car . From Auckland to Rotorua it took about three and a half hours by car . Since I 've started , I have kept myself physically fit and maintained a healthy lifestyle . l like to eat Japanese food , though sometimes it is expensive ! I have an acute feeling that I have to study English . I try to study English a little bit . We were [ very / especially ] excited to watch Shizuka Arakawa win the gold medal in Torino ! I was very surprised when I heard the news . During the holidays , I have to finish my school work , essay and other important tasks which still are n't done . I 've got ta tell you something that 's been on my mind . We were instantly attracted to each other . Why do we make beautiful plans for the future when we are occupied and do not carry them out when we are free ? I think I would be at ease with written Japanese composition , but at a loss in English . My abdomen and left elbow hurt . He had nothing to grab onto and could hardly stand , but the middle - aged man on the priority seat just kept sitting . That middle - aged man looked at the old man and looked at me again . I thought his conscience was starting to bother him . I must work and perform my experiment tomorrow morning . However , I could not agree less . Based on the view that other training institutions ( such as vocational colleges ) are better suited to teach practical techniques , forcing universities to teach vocational courses would violate our freedom to choose our career path . Because universities are not the only places that can provide employment preparation courses , but are the only places providing academic education . Apparently , no other institution can replace universities ' ability to cultivate people in a particular academic field , and that is the main reason why people pay their tuition fees . Moreover , universities are not the best place for practical skilled trainings . There are thousands of institutions and employers who can provide the more up - to - date training that the workforce needs to perform their jobs . In sum , in comparison with universities , employers and other institutions are better - equipped and better - qualified to prepare people for the employment market . The graphic of that was drawn by the famous Japanese designer who did the animation for `` Evangelion `` . It 's Blues , which Clapton is always in , meets hip - hop rhythm style which is really comfortable enough for me to listen to it for about 10 years . Anyway , I am really looking forward to the new album . Advertisement says that the sound of that is more blues oriented including the old Robert Johnson 's songs . Hi wonderful people ! I know people from everywhere and they speak English because they have seen a lot of movies in their original language Some people define them as vegetables . Air conditioner , fan , Yesterday , I bought a new digital single - lens camera . This week I have a 6 - days trip and want to take pictures at night with better focus . Hearing the explanations , I thought I understood , I 'm not good at mechanical machines , so I concluded that it is very difficult to use new camera at this trip . I hope someone corrects these sentences . The first I heard about it was from an acquaintance in the US , who claimed to suffer from hearing loss . ( Consequently his senior and I did n't work out . Tomorrow is the last day of winter vacation . To begin with , I wrote my introductory . I like to watch dramas , especially Japanese dramas and Korean dramas . This is the first time that I wrote a diary in English ! The face I saw was one of my friends who I had n't seen for a couple of years . But it was great time to make new friends and I leaned some good expressions from the teacher . I am studying for my exams at the university 's cluster room , but I am freezing as the air conditioner is turned up very high . I ate spaghetti which I got take - out near my home yesterday . Fortunately , thanks to sufficient sleep and the spaghetti with plenty of garlic , she seemed to be restored . Monster Hunter Of course , this event is not for me . Godzilla went wild ! ! ! ! ! ! ! ! ! ! ! In Japan , today 's main topic is baseball player , Matsui 's play . His face is strange , his play is excellent ! of Matsui . But in japan , Ichiro ( marinars ) is more popular than Matsui ( ) Yankees Matui is not found [ ? ] , as far as I know . This time Matsui 's super play was surprising in Japan . Godzilla is a Japanese treasure . Japan 's gov spends less money on sports than other countries do . Otherwise , Japan will probably continue to lose its competitiveness . So I will go to bed early . She went out to the new sun room that is waiting for the material for the floor to finish then she found an old man . He walked into the uncompleted sun room so Siri said `` Who are you ? `` He did n't say anything for a while then Siri found that he had a name tag on his shirt then recognized the name . This house is nice but there are some extensions that need work and have parts done in an irregular or imperfect way that was recognized by my host family . What 's a Smoke Test ? When the bell rung , I thought I would be caught in the rain in on the way to back to my dormitory . Soon , my hair and clothes have been soaked and I feel cold . In there , I feel amused by my appearance , so once again I rush in the rain . [ Replace with lower sentence ] and , I find an umbrella above my head . A charming smile appears and says ' are you ok ? ' . On the way to the dormitory , she talks with me in a gentle way , and walks me into my dormitory , although she does n't live there . So many couples will choose MDH to celebrate their weddings . I came back from the battle field . I am still alive . I saw many black passports there , because recently the Japanese government has changed the design of Japanese passports from red to black . I hope they will go back to Japan ASAP , and work for the Japanese government and be rich Japanese forever . So when time was almost over , I had only finished around 85 % , so I had to randomly answer the rest of questions . I hope I get over 800 marks , but my result will probably be around 600 marks . It 's probably because this is my real language skill . Reading speed . My sock doll is not finished . Btw , he looks so yummy . . . . . These days I 'm studying English very intensely . yesterday , I finished writing my graduate thesis . now , I am in the bangkok airport waiting to board a flight to india . Each candidate comes out with his own political manifesto to make the country better . However , depending on who is elected , everything will go on to be different from the way it is now , which will be enough to affect other countries all over the world . Anyway , it is absolute that last night was an important day , so I thought that essentially everyone else was interested in the election . Well , it is partially true but in fact , not everyone did take notice of it . Tomorrow I have a Chemistry test 0 . o I studied hard but I think I 'll fail . The children are the happiest . They have long holiday and get more pocket money , new clothes and presents from their parents or relatives . We Chinese have an old tradition . So the traffic is now very difficult . It is the internet that has had the most powerful influence on me for the prevalence of computers in my life . until the new news hit me . I think I am not going anywhere so I 'll clean my room and I 'll make / cook something that I want to eat when I get hungry . I 'm in the Travel Tourism Course . I do n't work at a part time job , but I do want to work at JR Toukai in the future . The toughest part of my school work is overseas geography . New digital camera Today , I 'd like to write about a new digital camera . What do you think of trends in new digital cameras ? So I wondered : In Japan , we eat ' ozoni ' , which means mixed ingredients in soup , as a traditional custom during the New Year week . ^ ^ ; The New Year is supposed to be a holiday , but it 's not a holiday for me . For that , I should study grammar , words and phrases . all of the world know that the chinese school uniform is too ugly . For the last statistics of these votes , the winner will have the most votes for the type of school uniform . The reason we went to wrong place was the pronunciation of the place we wanted to go to and the place we went to were the same if you pronounce it in Japanese . We Japanese people are basically covered by health insurance , Recently , we have been running up a big medical bill in Japan , into practice to reduce medical expense . This counselling is not compulsory . In China students learn English from middle school to college , but , there are not many students who can learn English well . First our mindset is wrong . Some of them think that learnning English is a burden . To pass the exam is their only purpose . Second , the big circumstance is so bad . It is very difficult for you to find people to communicate with you in English . Someone may think if one person got a high mark , his or herEnglish is very good . I do not think so . We all know that language is a tool that we can use to communicate with others . The rapidity of memorization is fastening . I went shopping at 10 : 00 this morning , Fortunately , South korea has developed accommodations called Jjim - jil - bang . But today , goods for the Japanese New Year were on display . Recently , I often thought that I would want to study English again . I went to an English - speaking country and was been there for 7 years . When I was overseas , I did n't watch English news channels or movies , I could not understand the popular programs , as I have no idea about their culture background . I want to listen to , speak , write , and read English better than I do now . I 'm required to learn formal words rather than informal . In my case , I 'm exposed to formal situations most often . During class or school , I would hardly have a chance to use slang . But I am not a caterpillar , so I give up . Since the bowl has become empty , finally you can eat an ordinary meal . I never say `` Do n't worry . its going to be alright `` to make them relax because I am a teacher . Can you have a recommend a drama ? The night safari and taxi companies are friends or couples . I am a brave man , but when we took a tram there , I sat beside a fat American couple because they possibly can not run faster than me . Probably they ca n't jump over it . If they do so , does the safari pay a compensation to us ? So we had to take a taxi , and it was already over 00 : 00 a . m . . The taxi fare cost DOUBLE . I think that the night safari and all taxi companies are friends or couples . I applied for an open position at my company . There is a botanical garden there famous for wisterias . However , the wisterias are not in full bloom . I enjoyed tbeautifull flowers and pleasant smells . Nevertheless , the difference this time is that I only grilled two wings and a leg . I looked at my phone and received a message from my manicurist . When you taste strawberry cake , your mouth and brain will immediately be filled with sweets . My mum lives in Shimoda City , at the head of the Izu peninsula . I had a bad headache yesterday , so I wanted to leave my office on time today , but I could n't . I was very disappointed and felt sorry because I was supposed to give the data to two colleagues but I had to keep them waiting . What should I do ? Firstly , since my previous laptop wore out within a very short period of time , I am looking to buy a laptop which is more durable and has a guarantee for at least two years . First , I 'd like to introduce myself . It was based onthe true story of someone 's life , and we changed some part of the story . I noticed there were some problems with my leg Nobody could explain why it happened . And so I guess some birds made a noise or hiccuped and dropped them . I decided not to doubt it . I miss you like as a friend who cooks with me , watches some movie and cries , smokes a cigarette and talks , talks about life or silly things . The last time I saw you I could n't hide that I wanted to cry because my confidence has gone . I hope air heaters will become unnecessary . but statistics is very difficult . I am studying English at a university class now . Yesterday was the summer solstice . Though it 's after midnight now , 3 : 30am , maximum temperature is 30 degrees celsius . No work , no rush hour , no clock alarm . . . . . . I was satisfied even though I hoped I could watch one more game with them in the next stage . Today ( yesterday actually ) I met friends and made plans to travel this week . But I 'm looking forward to do it . By the way I want to know the difference between personal and private . The weather forecast has promised that the weather will be fine ! It is always beautiful and at this moment , you can find many different champions . Because it was getting late , we promised to see each other tomorrow . How to avoid the scorching world . as if a storm would arrive on the spot . There is a certain day I can not concentrate doing anything no matter what , frustrates me , and today is the day I guess . I am dog - tired and all of a sudden , I got a brain wave that may would take away my agony of the hot world , which technically has a big global warming issue . The fresh idea is going into a huge refrigerator that is for tons of chickens , saying farewell to the world for a while . Because a cup of beer I had was $ 13 dollars ! ! ! ! ! ! The problem is my listening for English ! ! ! I 'm going to meet Crysti , my language exchange partner , at Ginza after work . So , could you help my studying English ? `` Kaiten - zushi `` restaurants have rotating sushi on a conveyor belt , and you can help yourself to anything on the conveyor belt . Maybe that is because she is working now , and I am still a poor student , but it does not mean that I do n't want to spend any money on her or other people . I know vendors do n't wash vegetables so the food is not very hygenic , and they are so expensive , but the festive mood always make me want to buy ! `` I will go to Australia `` , one girl said . However , if I do n't have enough money then I will go to work for one year . By the way , I learned a word pronunciation . Australia and New Zealand 's English are close to England accent , is it ? Yesterday I learned that there are UNIQLO shops in the Philippines . I did n't think that UNIQLO shops would be in the Philippines . I saw a situation in which many adult waited for the elevator to come . I checked my self as I listened . I will try to listen to it and pray to solve my situation . In my opinion , there are many changes in America 's way of thinking . They want to change and achieve their hopes by voting for Obama . , I had also hoped for Obama to be president , and I am looking forward to watching the inauguration speech on TV . I have no doubt tomorrow will be a historical event . I learned about this site by a postal site . I 'm too tired of typing . I should be a discreet person . It 's origin is a mystery novel called `` Kokuhaku `` written by Kanae Minato . It got a book store award in 2009 . first , I paid the full money . when I will get MCAS finally , I will be so happy . Hello everyone . We have to admit that we are soft and cry more easily , because we are more emotional than men . This my point of view , and I am ready to defend it . Now it 's your turn to say whether women can be leaders or not , but do n't forget to justify your point of view . I 'm studying English because I have a test tomorrow . The library is a very warm and silent place that I can efficiently do my work . First of all , I said that Japan 's Prime Minister , Hatoyama , is a liar because he changed his mind and postponed the deadline of resolving the base relocation issue in Okinawa . It on Monday morning so before working , I have to get up earlier than usual . My life is not brilliant like yours , It 's really interesting when you think of this , is n't it ? There are some facilities in the final station . There is a souvenir shop , a restaurant , and even a mini theater . Learning something is very exhausting and time consuming . It 's been a long time since I 've written a journal . It is said that Japanese people are strict about time . Their colour and design are very attractive to me . My dream is go to NYC . So , I 've decided that I will write on this site two times a day at least until I go back to school . Then , I guess that I do n't have much time for writing , but I 'll still be back here . I took my parents to the best restaurant in the neighboring town that afternoon because it was Respect - for - the - Aged Day in Japan yesterday . I 'm not married , and I 'm living alone in a dormitory . He live in thenorthern part of Tokyo . So now , I am a little bit disappointed . And after reading it , we had to explain and summarize it . Anyway , I had to follow her explanations and summerization about it . I had wanted to say ` ` Because I am a learner ` ` . I just kept silent . I am feeling nervous . lol And I feel exhausted . I do n't know why , but I drank 2 cups of coffee at 4 AM . When a man went up in the tree and hit branches with a stick , persimmons began to drop one after another . I was very shock . lol I was very worried however there were no people around the because around there were very rural places . so if you are ok , add me as your friend , please ^ ^ I 'm afraid that my English is all wrong , but I think that I have to keep enough courage for this lesson . So I decided to learn English . Unfortunately , I never learned either because I was lazy . This time is different . Maybe I can do it . he has already left Korea and the other friend is going to South Africa next month . The main training is running . Actually , I had loved a man who came from an other country as an exchanging student . I 've been in Oxford in the UK for 9 monthes , and came back to Japan last month . I want to keep improving my English even though I 'm in Japan , so I joined Lang - 8 . When I listened to the music , I understood that what I studied was useful . However , when we eat bread , we prefer cafe au lait , milk or coffee . What do we think about our future , where to go and what to say ? It 's ridiculous for us to be mumbling about our world where we 're living . My aunt went with me when I got my haircut . Both of them are the same company , are n't they ? I was interested in the article because it said the Oxford English Dictionary decided to introduce FYI in its latest edition . I am now learning English , but I found it is difficult to master the using custom of English . He wanted to say that I 've often told reasonable ( good ) excuses . I have managed to communicate with foreigners in English . in daily life . I have wanted to know the level of my English objectively . I asked him the reason why he would take theTOEIC test . He wants to know his English level to make more progress in his English . Because I ' m a good excuser basically . Would you correct this script leaving some comment about my writing , pronunciation or the content of speech ? My self introduction : I 'm a University student . They conversed with each other in English , I was desperate to follow along . I decided to struggle studying English more , for opportunities when foreign customers visit . Tomorrow I 'll try to tweet more often . What is a satisfactory standard of English in AS ? well , I got so little time to study tough , with work hours from 9 am to 7 pm . . . The political sense of Obama is bad . as standard - because standard itself is uncertain , general , so it ca n't be used itself with an article . ( see comment ) We only can talk at work because we met together at work . Yeah . thank you guys for reading this diary again ~ ^ _ ^ I am 21 years old and work at a radio station . I 'm still a University student and my major is mass communication . As for me , I use all of these websites , and I think each of them is great if you exploit their strengths . My mother is an excellent cook . I do n't like to cook but today I 'm going to help her because it 's a lot of work for only one person . I always enjoy staying with my mother because she is very sympathetic and friendly . We spend lots of time talking about our lives . Our conversations are interesting , and I always learn a lot from them . It was a beautiful view from Tokyo Tower . I love to go up to Tokyo Tower , so I went there . I kept looking at Tokyo Tower from the outside . The view was still beautiful . Then , I headed to Shinjuku and had supper with my friends . Now he is sick , because of being too excited . I 've enjoined those things . I try to write in English daily . Furthermore , some characters also died from that . So I probably ca n't get home for a while . I like the that moment . Recently , I bought an iPad . Last week I was watching a survey on a BBC TV program that was being broadcast while I was about to eat . Suddenly the results showed something I did n't expect : only one in 10000 people had achieved their life - long goals . My pieces of work were admired by my teachers and were the cause of envy of many of my classmates and other colleagues . There was even a time when one of the most respected professors I had , Mr Smith , commented that my work , `` resembled that of the geniuses of the Renaissance period `` . That 's why I joined a group of alternative artists in my city and since then , I have been working on utterly different projects which range from traditional painting with a small brush to extreme air body painting or even crazier stuff . Despite the weather , I still went there . I have class this morning so I have to got up early this morning . . . . Staying up late was so tiring for me . I 'm trying to continue writing my English diary . I did n't want to be like that and I felt kind of fearful because they looked just like a disposable wipe . As you might know , Playing golf in Japan is pricey . I had a phone interview for graduate school . I am waiting for the result now , but it will probably be bad news . . . I forgot almost everything I wrote . In my thesis , I predicted the oil price was jumping due to speculation by investors and that this bubble would pop . What I predicted was what exactly happened after one year . Therefore , Oil became a target for investors at Wall street . In the stock market , it does not usually happen , but oil fluctuates violently . So investors who want to take advantage of this market are never ceasing . But Oil is absolutely necessary for our life . I do n't know when alternative energy will be practical . So oil has to be steadily supplied and should not be dealt with like loans and other financial products . I may do exercise or play tennis in the gym every day . These last few days I have seen almost every Olympic game featuring Taiwanese players . In good weather like this , I want to meet friends and sit by a fire and enjoy nature . I need a TNA down jacket as well to keep my body warm outside in the freezing world . Even if the main charactrers are autistic , they are the special people whom I 've never seen before . What is the difference between `` a piece of paper `` and `` a sheet of paper `` ? Although we talked awkwardly in the beginning , after an hour we started to open up . I felt at ease that my students opened up , Before the meeting , I went to the Ueno Park , where is famous Cherry Blossom tree . This was my first time being challenged by the TOEIC test . I am not good at memorizing English idioms and expressions , because they have different sentences from Japanese , so I can not imagine the background of the words . For example , the expression ' What in the world ' relates to the feeling of surprise , correct ? Practice practice practice ! I think I will meet so many difficulties about communicating with foreign teachers . At 5 o ' clock , I go to learn baking cakes . I wonder why gouaches are n't as much popular as watercolors . While driving back to their ( T and L ) residence , we happened to talk about curse words because they were very sinful to Catholics . A new android app is available now . Consequense : We decided to go for a trip as a consequense of the long discussion . influence : I had great influence from the book he wrote . But since the day I left elementary school and entered high school , there was always a certain matter that kept bugging me : `` Why did I even choose entrepreneurship , as my future course ? `` ( or ) sore ha onaji tokoro ni aru Today I begin my diary . But , that was 32 years ago , I did not speak English then . I did n't really feel anything but this past one day , I felt a little sad . This weekend , I am going to take a test ' Eiken ' I am studying English very hard ! ! ! I have to submit my contents by next Monday . for example , someone who is working in Samsung has intelligent qualifications and Samsung invents high quality products . In the case of sportsmen , from middle school , they exhaust all their energy . In conclusion , we have many human resources , and we tend to persue the first place and ignore second and third place . In conclusion , living in Korea is so difficult . in our small county , there are many super koreans in baseball , in figure skating , in soccer and in academia . I was very nervous because I have never played dancing . I would like to improve my English and learn other languages , Chinese , Spanish etc . for business use . My avorite things are FC . I 'm trying to study English by listening to a song over and over ( Is there any difference between `` over and over `` and `` time after time `` ? ) . I am on winter vacation . Unfortunately , I did n't start studying English at the beginning of winter vacation . Instead , I always watched movies and dramas . But , it is so addicting , and I have studied English since I was 12 ( so I have studied it for 6 years ! ) , but I ca n't speak English very well . I also started studying German this Spring . Your prompt reply would be highly appreciated . My English is not very good , especially in writing . After working , I stopped at the shopping center near the station . I bought a book and looked around . Then I was worn out because of work , I felt better . Sweets make me happy . so I 've really treasured the time spent with him these past few days . Always is a pleasure to read your guidebooks about any place in the world , specially about towns I know . Unfortunately I have found some mistakes in the information about parking in the city center . Also the Museum of Natural History is closed , due to some vandals who broke some skeletons last week . I make the most of the freedom during vacation in the noon by watching Korean video dramas . I look forward to watching it everyday except for the weekends . Yesterday , however I could n't watch it because I worked on my thesis in the library . In addition , my home 's video recorder has trouble now , so I could n't use it . When the drama started , I have felt a sense of `` dejavu `` ! Please go out and buy it at the nearest shop ' I could n't believe what she said and I asked her how could I go out in such a storm . She was an optimistic person , but could I go to the shop safely and buy the miso paste ? I am too anxious to make many good friends who come from different countries for knowing different cultures . It was really embarrassing . There are still many silly things I did n't mention , because it is very embarrassing . The topic made their conversation restart and they ended up staying there another hour . I think I should try not to eat at McDonalds to stay healthy . I have been insisting on buying a lottery ticket since the beginning of this year . Because in Japan they think New year 's is an important thing . Budget compilation Especially , ' ' Christmas ' ' remains in the impression . When ' ' TOM & JERRY ' ' was revived by You - Tube , ' ' Christmas ' ' was found . During today 's lesson , I felt that foreigners have similar characteristics . It 's true . This show was on my favorite channel . I was scolded by the teacher for my cellular or cell phone call during the class of mathematics . I know it 's amazing , but it 's true . So , please tell me what to do because I do n't know what to prepare . And could you please tell me a good place for food in Guam . Many of the younger generation much study very hard to succeed . I got plane tickets for a New York trip next summer so I went to a travel agency yesterday . I paid a deposit of thirty thousand yen . Something new and good is likely to happen there , Today I was very unlucky . And in biology class I did n't finish my homework , so my teacher made me go to the lunch room . Sometimes you can see some coloured fish . Her songs are awesome , right ? Perhaps I should be happy for it because it is an evidence of my last four years of hard work . Maybe I am a sensible boy but I really treasure the friendship between us very much . The woman ( Aki , Autumn ) waits for her ex boyfriend for 2 years , but falls in love with a new man ( Haru , Spring ) . Making Tempura now I 'm making tempura now . I do n't like using lots of oil for cooking , because my kitchen becomes oily , but my mother - in - law taught me how to make tempura and if I did n't do it by myself , she 'd get angry . That 's why I 'm making tempura today ! ! Why doesn ' tCASIO put the temperature sensor on the top of the watch ? People hung fish kites from their rooftops , and wished for their children 's health and success . I do n't understand the content of song lyrics . I know that many people say the same thing , but I really am a beginner . I started studying English in March . I hope to take a trip to Switzerland next year because I want to visit a museum at Bern . I have applied for schools in NY , LA , SF , San Diego and Seattle . Today , I went to a sports gym with my colleague . Of course , if you want , I would like to do that kind of thing for you I . e . Reading a japanese book aloud , slowly . A friend of mine recommended this web site yesterday . If this factory is not managed very effectively and efficiently according to specific rules , it 's prone to polluting the local fresh air and water , and an ideal community which should be quiet . Secondly , to make sure the shipping of materials and products and the employees ' communting are more convenient , the local roads will have to be rebuilt and broadened , resulting in improved public transportaion . Why did Japanese film `` Depertures `` get to win the Academy for best foreign film ? In severe cases , young people commit suicide because they ca n't bear the stress . Tragedies happen everyday in the current greatly changing society . We can dig into different aspects of this issue , including cultural factors , Chinese history , as well as national characteristics . First of all , regarding what Chinese believe in , I would say every Chinese believes in Confucianism . Secondly , in the aspect of history , China has gone through a difficult time throughout its 5000 - year history , and during the past decades , the great leap forward has created both opportunities and failures such as many dropouts in the last generation . For example , international airports made it easier for foreign people to come to Japan . For instance CNN on YouTube or something like that . For me , no I should say for foreigners , it 's quite convenient to listen to these programs . Generally speaking , in Japan people think that topics like politics , religion , private diseases , etc are taboo . But I do n't think it is good to talk loudly and emotionally saying how ridiculous your opinion is or how stupid you believe some team is . Last week I went to see Alice in Wonderland . He is really a genius , I think . It is amazing that I was so much impressed at once just by listening to this piece of music . I am about to graduate . At first I wanted teaching as my career , but with more and more positions appearing , I 'm becoming aware that I was stupid to ignore lots of jobs except teaching . I loved it when I watched it a few years ago in Hungarian . Also , his explanations are easy to understand . My best friend said ' you should just ask him , and do n't talk about your dogs . I remember when I talked about my dogs to the doctor , he almost yawned , and I was a little bit sad . By the way , my best friend got divorced recently , and now she is also interested in another man . However , the man 's attitude towards her are getting down . So far , you have not shown any successful results . `` `` Why do [ es ] everyone talk about the abandonment of a nuclear power plant , though they do n't talk about the abandonment of automotives ? `` `` Automotives kill many people by accident , however a nuclear power plant has n't kill anyone yet . `` I was happy to pet him . Unfortunately , there was an accident , he fell into a lake and died . I remembered that I took it We had a one - centimetre snowfall . I made muffins as I watched the snow . Airplane schedules are always disrupted on snowy days . The picture is of my muffins . I have n't packed for the / my trip yet . First of all , Obama 's speech was effective , strong and scary to me . This friend likes sketching like me . Finally , I watched `` Valkyrie `` ( actually I wanted to watch `` The day the Earth stood still `` , but it had not come up yet . to meet my favorite friends . I just learned one thing from an article I read today , that was if you keep doing one thing for 4 weeks , it would become or would change your habit . I wanna make a little bit of progress everyday in order to let studying english be one of my habits . First , I 'll list the key words I 've heard today in a conversation that I do n't use often , or usually use in a wrong way . overhaul ( totally change ) , executive producer ( movie producer ) , illustration ( make an example to prove ) , significant ( extraordinary ) , nifty ( nice ) , municipality ( Beijing municipality ) , forbidden city , terracotta warriors , potala palace ( tibet ) girls : beautiful , gorgeous , sexy , fabulous , I was so excited to see it ! ! Today one of my co - workers was absent . I think it 's time to read a grammar book again . > _ < Yuck ! ! ! I went to a glass atelier and try to glass - working with ten friends last Sunday . He invited me his house and we had lunch together . Pancakes , spaketti , beef and chicken . And I had a discount coupon for Lotteria ( a Korean Hamburger chain ) . After we finished our lunch , we decided to go to eat some more . I suffer from not understanding what he says because he talks so fast and my lack of vocabulary . Now , I am studying about the present perfect and past perfect tenses . Since different people from different ethnic groups such as Persian , Bakhtiari , Aramaean , Turkish , Arab live in this province , you can find diverse Persian cultures and traditions in different parts of Isfahan . When he is good , his color is lighter and when he feels bad , his belly become a black stripe pattern . I want to learn many things about this kind of dragon to take care of him properly . they are noodles and fried eggs , which are so easy to make . some eggs and noodle soup mix or broth this way , it tastes very fresh and better than the plain taste . just waiting for good news from me . The textbook 's title is `` Totally True Book 3 `` . Both days were very boring . I 'm looking forward to it . I have n't studied for my science quiz tomorrow = ( I always procrastinate the things I find difficult . I 'll write a small review when I receive it . But honestly , I do n't have good memories there . These instruments are guitar , drum , base , keyboard , and others ! I was impressed ! ! ! ! ! Day 96 : Too straightforward . Today one of the unties said to me that I am too straightforward . As I really wanted to have Christmas doughnuts , I dived right in . I suppose that Christmas here in Japan is very commercial . Many food shops launch Christmas products . Did a typhoon hit Hamamatsu ! ! ? So I was grateful for his suggestion . Summer Vacation We could watch the lions , horses , birds , etc . Because of it , I was often scolded by my mother who then said , ' ' study hard , or I 'll dump it ! / throw it away ! Now my interests have moved from playing games to playing music and studying foreign languages . Anyway , I will fulfill my big dream in 2010 ! I started a diary on lang - 8 . Because I view English sites , but I do n't understand them . I will try to write in my diary in English . and I 'm writing a diary entry to waste time until I 'm ready to go out . May is Begining . May is begining today . He seems to be busy , he asked me to confirm the appointment . I tried to call him later in the afternoon . But I failed to make it ! Someday If I visit France , the birth place of Macaron , I want to eat it . Please recommend your favorite : ) I find it difficult to express my opinion , , , At first I would like to thank for every who checked my article . Every day I have to study Japanese and do a part - time job too . Although I am Asian , the Japanese words mean the same in Chiense in many sistuations . I am so unhappy with my roommate . I think we go to study abroad as a college students , so we must do our best in our studying . I heard about the place of the Russia nuclear reactor accident place is called Chernobyl . So I must improve myself such as Japanese English and confidence . Besides , we have school lunch in such a terrible classroom . Anyway , I guess I was suspected by an old man while I was running in a nearby park today ! ! : < I spent time researching Amakudari . . I may keep studying by myself , but I need some opportunities to practice my English . I 'm bad at grammar and spelling . My room is on the first floor , so he set the ladder up and escalated . My colleagues bought a bin of milk , and we chugged them down . In Japan , people who want to get a job need not only some skills or a good ability to communicate with co - workers , but also , good academic backgrounds . I really appreciate your help : ) Today my teacher took me and my friends to Spectum in his car . Spectum is the biggest shopping mall in Irvine ( maybe ) . I ( need subject ) think that there 's no better way to improve my Japanese skill than making Japanese friends , I 'm recently tried ( past tense ) to make japanese friends on the net and got a few . Please tell me how to use other languages . Although she said it was not serious , My homestay father is a big fan of Chinese kung fu and so in love with Chinese language , he really wants to learn Chinese . So I want have a place for learning English . However in my case I got transferred here regardless of my desire . They learned Japanese , mathematics , and social studies from 9 : 00 to 15 : 00 . We ate the Korean food at komart . Some language learners would like to discuss / talk about the different aspects of languages , I really enjoy that ! ! ! Now andthen , I always recall the wonderful times we havewhen we get together . ( Sometimes I do , tempted by the tasty look and flavors ? ! ! ) Cars ca n't come near the fireworks venue , people looked at firework on the street . But the fireworks were very beautiful ! ! have you ever experienced something like this ? The quail eggs were sold in 4 packs for 1000 won . I have never been abroad , so I have n't experienced this lol It forms the boarder between Thailand and Laos , and is the gateway to Vientiane , the capital of Laos . This weekend I 'm going to take a train and then go to Vientiane . When I went into the travel agent 's office , a local Thai woman attended to me and she was really gorgeous . Although it 's boring when we are waiting , I believe that when we see the picture in the magazine will find out that it was all worth it . We enjoyed and felt happy ^ ^ If you choose egg you can order egg udon or egg soba . I went to kaiten - zushi for dinner yesterday . So I can eat those without thinking which dish is cheap or expensive . It was ivory , long sleeves , and high - necked . Study english - steadily ( regularly ) studying is very difficult . I know this road will be very hard for me - a girl who are not a native . Besides , I have 7 - 8 lessons at school every day except Saturday as on Saturday I have 6 lessons which are over at half past 1 p . m . When my groupmates decided when the courses would start on Saturday I asked to begin them after 2 p . m . But nobody supported me even those who did n't care when to start . Today is Monday in Japan . Is it because I am a typical Japanese or am a coward ? ? Books can enable a child to develop his or her own reading skills and power of concentration . First , by touching letters in books , said child can develop reading skills . Japan is a mountainous country . 3 / 4 of the total area are mountains or hills ! I had eaten too many unhealthy foods for a semester , and even though I only ate a little each day when I lived in the city of my school , I still became fat . Japan has had a tough experience since the earthquake and tsunami in March this year . When I see the people 's attitude toward saving electricity , It always reminds me about the nature of the Japanese . the first picture is of `` kinako mochi `` I 'm happy that my wish was fulfilled ! My job keeps me very busy , so I do n't have enough time to learn English . The next challenge is one any flash developer might come up with : Associating visual images with sound . Moreover , traveling alone , will bring the traveler unexpected surprises , such as making a new friend or enjoying the different scenery . Second , I like to make new friends and learn more things about the place I am traveling to . I 'm a university student . I often see a man selling fruits and flowers on the Safety Island when I drive to school . watashi wa pera pera to nihongo wo hanashitai . Now , his English is not perfect , but he can communicate with native English speakers . Mobile phones are getting fashionable recently , there are many colors and many design . And they have a lot of functions . For example : you can use it to listen to music , to take pictures , to use the internet , to arrange your schedule , to watch TV . . . I do n't need too many functions . These days , most people have one . Sometimes it is too expensive . . . We should be careful when using cell phones . I realized that now I 'm not living ! Hello everyone : ) I had to picked my school timetable up yesterday for my graduate school history classes . I picked 4 classes . Advanced Latin is one of them . It looks like I am the only one signed up for the class right now . He drove all the way to the station advertising Kobe beef . My favorite thing is listening rock music . But a serious disease infected him suddenly . We chose the rings and went to the hamburger restaurant . I take bellydancing lessons once a week . My bellydancing teacher is Korean . Reading assignment At that moment I felt that he was a very quiet and lonely person , It seemed that he struggled against difficulties by himself just like the song said . Hi , I ca n't speak in english ! For practice today I am going tell one story . Its name is `` The Girl Who Does Not Speak In English . `` This story has no plot . This story has one girl who found this page for learning english , and this is the beginning . I hope the end is good . : ) For that I need your help . I gathered the application forms and sent them to the bread company . We study in different places . Texas Burger For lunch , ate a hamburger at McDonald 's . At my university , there is an anime society at which people who love Japanese anime get together and hold events like quiz shows . I will join it as soon as possible . I compared both pictures , and I thought the picture of the digital card was very beautiful . I tried a slot machine , but I did not win as expected . Though they look fierce , they are charming . Secondly , it is easy to raise cats . I think `` Harry Potter and the Philosopher 's Stone `` is the movie that I have seen most often ! The day the earth became my home . . . 1 Singapore and Malaysia Now humans control this world , so we take care of only ourselves . If insects get a sovereignty of managing this world , they will kill us in turn . It is a bit uncomfortable to live with someone and not talk to the person . My favorite artist - - - > Allison was eliminated . OMG poor Allison ! But recently , my improvment in English has become slower . Just think about it , I am always using and depending on words which I already learned how to use . I hope that I am already an intermediate English speaker , and when we reach an intermediate level , our language skills start getting stuck , because we start depending on words and expressions which we have learned in the past . This years motto is `` I talk without hesitation ! ! `` After that we heard / found out that it had been a weak earthquake . It was n't strong enough to damage anything but reminded me of the tragedy in Haiti . Today , this task especially suffered me . I am very glad to meet all of you here . The dictionary definition of communication is the process by which people exchange information or express their thoughts and feelings . A case in point is Ebenezer Scrooge in the story of `` A Christmas Carol `` . Call it close or distant , it is happiness when there are people who you can communicate with . `` Is n't it cold ? `` I ask . That 's when having someone there to reply `` Yes , it 's really getting cold , `` provides the warmth - - Machi Tawara . I was surprised . I had a problem . And so it is possible to change something kindly and make it kinder than it is now . usually I do n't have the habbit of writting dairies on the Internet . . . I am trying to find a sentence to enable me to ask you some questions , but I ca n't find it so no problem , I can read it by my self again . Recently , I went to bed at sunrise In general , most beginner or veteran doctors are stubborn and a little strange . ( It 's not only doctors but also the old . ) But they are that sort of type of person . I enjoy downloading Podcasts ? of CNN News and watching them . Especially , I like the broadcasts of Anderson Cooper 360 degrees . The chaotic situation in Haiti was beyond description . So many people died and still the bodies were under rubble and on streets . I watched a TV program , which is called `` Cool Japan `` . Things that interests me . If you are interested in Japanese culture , I 'll recommend you to watch this TV program . I 'm sure it will help you to open your horizon . `` I made a conscious effort to lose weight after I read articles citing me as the fat chick in Hollywood . Will this sentence be able to convey my thankful feelings to the teacher ? I 'll show you three museums , Teshima Museum in Japan , Jewish Museum in Germany , and Guggenheim Museum in Bilbao , Spain . You might notice that the water drop moves slowly on the slightly inclined floor . This architecture is , to recap , the space in which you can feel the existance of nature and yourselve . Yesterday I went to a movie theater to see `` Angels and Demons `` with my friend . I found a very useful site ! I had expected that Argentina would win , but they depended on Messi too much . Recently , we recived many voices from citizens that our personal appearance is too bad . Women 's personal appearance is more difficult than men 's . Because women 's fashon is rich in variety . I wish our staff members get good sense , then become good office . It 's a famous specialty noodle of Nagasaki . She has taught me speaking skills for 4 months . I commute to language school . I hardly able to have the opportunity to speak to native speaker . By the way , Christmas is coming soon . Secondhand books You can write me a message if you are interested . ( : However today is Friday ^ ^ Look ! Is that your book that was stained with blood or ketchup or something ? A girl who dreamed of a true love 's kiss met a prince . My daughter asked me She must have been a princess before . It 's Raining ! It has been raining for four days . The weather is cold and wet , I dont like it when it is raining The < < M > > is full of slang , I think if they muted the sentences which include slang , the whole film would become a silent film . I know abstract words and technical terms to some extent . Besides , I can not read fast , speak fluently , write quickly . When I noticed it was time to get off the different station I did n't feel well . Today we are working outside , so I wonder if it could start raining later . Company meeting In every meeting we discussed recovery from the earthquake . Hello friends . Today I was really happy to talk with Tyler and Neechan on Skype , and also Ivy on MSN . Luckily Neechan got her microphone working so we could talk on Skype . I would like to record them like when I talk with Yasuko . I think it is too late already so I have to go . I ca n't tell you guys all of my working condition , so it is little bit Subject : Changing schedule proposal . Now , we 've got a new employee , and there are 6 people working as I have already told to my manager and co - worker about this , so If you He asked me to call my parents to come to school for a talk . I planned to spend at least three hours to study english every day since I began to prepare the qualification exam to be a diplomat . I write in English most about things connected with international affairs , such as , China 's economy became more dependent on their inner investment , Libya 's Caddafi came to terms with ( ? ) Mr . Belousconi , the prime minister of Italy , over the past colonial peirods , or SC decided to impose new sanctions against North Korea . A few days ago , mom brought some books on methods of learning English . grandpa , granma everyone is welcome ! ! It 's been quite a long while since I last wrote in my diary . During this time , I 've been kept pretty busy . I attended the Smith College Forum today . AUGUST RUSH I like to travel very much , if u r interested in me , just become my friend ok ? The use of e - mail and telephone costs us lots of money , not only for connection and packet taxes , but also for the basic license fee . So it is pleasant for me to select from them . I surprised her . She was very surprised ! I was happy because I could make her smile . But I like eat potatoes , cookies ( or potato chips ) and drink sweet black tea . Please lend your power ! Of course , I will help you with Japanese , if you wanna study it . On the contrary to the good first impression , Johnny was very naughty and loud little boy . What drives me craze is that the officials at school see me as the one responsible for opening the door to cheating . There are many restrictions for smokers in Japan , for example , more tax added on tobacco , restrictions on tobacco advertising , and cautions written on the packages . long time no write this diary caz , I was in a quarrel with my parents . but I was a nuisance to my friends caz I lodged at my friends ' homes . I 'm ashamed of myself now , , , , , What happened to my life ! ! ! ! Recently , it has been very popular among theyouger generations . I make a presentation next Tuesday . Maybe I ca n't answer . Everyday we prepare many packages . Because my cell makes a similar sound to my alarm clock , I turned off the Especially since this is my first time to make this kind of food , it is going to be great ! So I 'm not surprised that she was upset because delivery is hard on their bodies and it 's pretty expensive . Hiroshima is famous for the atomic memorial park and Miyazima . Winter was kind of my favourite season . After each session , I stretch my body and train my muscles . My body is so weak and rusty these days , so these exercises really helps to refresh it . But I have a problem . . . I can do anything with English ^ - ^ I remembered my violin teacher explaining me that ( to avoid repetition ) I did n't know him well , but I want to hear his play of Paganini . Although the interview is in April , I 'm still afraid that if I wo n't pass the interview . other students uni from Tokyo and Fukuoka came too , so it was very fun ! I have plans to go to Kyoto on the 8th . My friends and I want to go Kinkaku - ji , Kiyomizu - temple and other places . My sister ordered a green tea latte that was very delicious . To the gentleman who dropped his shoe at the Haunted Mansion in Tokyo Disneyland , was your shoe safe ? I was on the waiting queue to get on the cart at the Haunted Mansion in Tokyo Disneyland . It was around a quarter before 9 pm . No one seemed to have guessed it right and we all laughed . Certainly , the Haunted Mansion is the last place where you want to drop your shoe . Guess what would bring your shoe back if you drop your shoe in the Haunted Mansion . When we happily got on the last ride , I wondered if they checked if the gentleman 's shoe has not changed into a cursed slipper or the equivalent . In addition , people worked together to achieve major progress to make their country more advanced . When I chose this time and this place , I specifically did so because there was a leader who ruled the people by justice and love . This leader was the prophet Mohamed who had a message for those people to deliver . And he spread peace among the people . From my point of view , the Prophet Mohamed was the most intelligent leader at that time , because he saw that if he wanted to build a country he had to establish the people first before doing anything else . Because of all of these things , I would like to live during that time just to see the person who changed the world for the better and made us better creatures . I wanna change my life . It 's a real story that has happened at Grasse in France . He was mad , but finally , he succeeded in the production of the miraculous perfume that made all people fall in love ! But firstly , I have to pass an English exam like TOEFL . Today , I participated in a English party and I met some really nice people . However , the straydogs live hardly and painfully . When I was a university school student , I created a club that made me do something to help stray dogs . Although we face many problems and attacks , we always do the things that we believe are right ! I opened the egg carton in the refrigerator and found that the eggs were frozen hard . In addition to all that food , the lack of exercise has n't helped . and do some exercise every day . Recently in Japan , . It 's been continuously hot for days . I do n't like this weather . For A Good Presentation ! Communication is far more than information exchange . It also includes eye contact , body language and so on . wonderful ! Somebody checks my diary and corrects it immediately . There are tests in high school on this month . The meal was very tasty and even though it was a buffet and buffets tend to have less nobility in taste and atmosphere , this was surprisingly very sophisticated in taste and atmosphere . I 'm really passionate about doing hair and make up , and have ambission for my job . After I finish my assignments , spring vacation awaits me ! ! ! I 'll go to Disney Sea on the 2nd of March with my friend . I have many things to do . The English program tytle was Little Charo . I want to become to be able to communicate with foreign people in English , so it seems that this class is suitable for me . I stayed at the hotel with a coworker Mari . I was able to see skyscrapers and the Opera house from there . I don ` t have a clear dream . As for language , english and korean . an alternative to speaking with a mirror . It is a clean and comfortable there ! ! And now I need to study hard because I want to do well this semester . During that time , I traveled to 4 south east Asian countries with my friend from my university . I 'm gon na write about the detailed leg of this trip in my next entry . Morning : I must get up before my roommate and read English loudly near the lake in our school . Night : I must remember the English words . It 's very difficult for me to use `` Little `` case by case ( / _ ; ` ) One night , we burned rice bran , which would make a smell the fleas like . `` What happened to your house ! `` our neighbor ran out of his house with fright when my mom generated the thick smoke . I would like one day to leave my country and travel to England , but the problem is that my English is very bad and I do n't have a way of leaving . . . Can you please help me and teach me ? Bye , thank you . There is so much more vocabulary that I need to remember . If we ever get to the bottom of the mechanism , we will be in the money though . Yet one thing I noticed is that if we do n't allow ourselves to say `` It 's okay to forget , `` our forgetfulness is suppressed . If we say so , our conciousness recognizes that it 's OK to forget . Oh , I remember one scientific report that showed laughter boosts our immune systems . Tonight , I will see fireworks with my brother . Yes , I 'm falling in love with a girl who I 've always imagined , but it is going to be a really difficult time for me . I feel bad , what should I do ? That 's why I study harder these days , but I have a problem with English class . I will take part in Chinese Speech Convention . Unfortunately , I am poor at organizing things , especially this holiday . One of them was a huge theater with a super - high vision screen and another was showing an animation made by leading - edge technology . However , the course that I am taking now is more difficult . It will put more pressure on me . I often hear that it is impossible to hear phrases that you ca n't say yourself . Therefore , I 've been reading sentences and phrases out loud repeatedly in recent months . Please give me some advice to improve listening comprehension ! This is my third day using lang - 8 . I 'm not really familiar with the functions here , so I always send the same On the TV program for theEnglish lesson , `` Why not ! `` is thesame as `` Of course , I will . . . `` it was sooo tired . . . . Japanese traditional dolls Today I decorated the Japanese dolls in my house . I have to confess I wasthe kind of person who always said , `` God , why did you not grant me another chance . However , after that peroid of my life and surviving some of life 's irony , I come to realize that there are so many things we are supposed to appreciate , but we always take them for granted and complain all day instead . In the morning , I rode my bicycle to the playground to go jogging . They go to parties , clubs and other scenes to cover up / to hide their loneliness . You will expect that another person will also show up just as easily . I choose to embrace my loneliness . This whole journey of mine was just to reach you . Happy birthday grandpa ! ! ( even though I do n't know how old he is ! ! As some areas in the world have their own calendar , muslims also have their own lunar calendar . Hirji calendar . It 's a little bit earlier timimg to greet for new year to us , but who cares ! Neither could I go to the library because I felt dizzy . I have many spelling errors and expression errors . I rounded these spot today , but I think that I would n't go by car because those parkings for cars are very expensive and there are many places around these spots without parking area . I recommend using the rental bicycle . In autumn , we feel good cycling . We also had a good time and we tried the second movie which is a famous movie `` Harry Potter `` but we slept for a while because it was not so interesting for us . Uhmm , it was too difficult to understand . Jyanet is my friend 's wife . I am speaking english more . I 'm sleepy . It sounds like `` Finding Nemo `` ) I want things to change . Kronenbourg is now owned by a British company . I have chosen this picture as my subject because of the last scene in this series . I want to attempt to write a short summery of it in English but I think it is too big of a challenge for me now . . . This exam is very hardfor me and it is in January next year , that is to say / I . e . I have less than 6 months to prepare for it . I 'm wondering if I should enter Azumedia , in Australia . a bowl of rice topped with chicken and eggs . Remembering my daughter 's shining smile . Oh ~ sorry , I 'm having a grumble at the beginning of a journal . My boss told me to go for the lecture of the insurance company to get a licence . I bought a machine yesterday Yesterday I went to DG to buy a machine with my boss . I saw and heard Flamenco while I was working today . I wonder why all guys who sing Flamenco music / songs sound the same . Besides , I 've never heard Japanese guys singing Flamenco songs whereas I 've seen Japanese Flamenco guitarists such as Jin Oki . I used to learn ( the ) Argentine tango , chacha , and salsa when I was a student . 1 . The teacher assigned each student various homeworks . When I woke up nearly midday , I got a severe headache because of a terrible hangover . But this morning I had to work because of the examination season : < The other guys do n't like punk very much , so they did n't sung along with me . I 'm drinking my coffee and waiting for it to be 7 : 45 A . M . - the time to leave my place to go to my university . My Command of English Has Been Deteriorating . . . I never use English these days , so my English has been deteriorating so badly that I ca n't really speak anymore . My boss is very cool and intelligent . because I ca n't speak English very well . I 'm so happy lately just friends to study English . I have found , and I already know that I should take care a lot , especially on this site . . . ! Also there are lots of canals , so you can take a boat tour and admire the views . Here is an explanation about Doll Festival and a picture of dolls . After the Festival is finished , you must put the dolls away or you ca n't marry early . Animals walk on the hill , sleep , eat , and run without restrictions . But , the author of the article which I read defended that women can deal with money because they spend their money on a few small things , while men would buy ' useful ' tools instead . Immediately I went back my home and cried a little without my voice . This is a Japanese company in London and most of employees are Japanese . Anyway , I 'm looking forward to this coming summer , which has the longest daytime and gives us a lot of opportunities to play and drink in parks . Sometimes when I see foreigners come to Thailand and travel in the southern area of Thailand , go the the beach and things like that , I feel jealous . My family did n't travel often . Instead , they like to do their job and save the money for the future . I used to ask my friends about holidays and where they like to travel and they said they did not travel often . sometimes they think if they do n't use the money to travel , they can use it to buy something better . I think in Bangkok we have a beautiful beach , a lot like pukat kabi city . So , about me , I have not to traveled in the south , but I plan to go there one day when I have the money . He mentioned some contacts at Mitsubishi he has there but had to leave quickly after that . Finding your center is very important . On the way , a very extraordinary thing happened . Studying in Canada is a valuable chance for me to become mature and learn to overcome tons of difficulties and barriers . I like action / dancing / etc . just as I like music . It 's art , it 's soul , it attraction me that make me more expect ( ? ) myself . I like action , love and so on , Finally , I will be hard working and make a lot of money . Deaths from the usual flu are more common than pig flu . I consider the vaccines ( and not only from pig flu ) in itself to be harmful . Of course , it can be useful sometimes but not for everyone . Maybe I focused on the game so much , I did n't know what to do next . Of course this was uncomfortable but I had no choice but to endure it . I remember the time when a doctor began putting in the However , I do n't rememeber anything after that . Besides I do n't have to pay any money to cut or parm my hair recently . Of cource , juken has been gradually reviwed . After cutting , I looked in the mirror and I liked my new hairstyle very much . When I passed a park , I found that my shoe was loose and I sat on a white bench to tie the shoe . After leaving the park , I walked on my way home . However , many people just stared at me and laughed . At that moment , I thought , `` What 's wrong with me ? `` Arriving home , I rushed to the mirror to look at my new hairstyle . When my back was in front of the mirror , I saw my white strait on skirt and cloth . I 'm a student at the Hokkaido University in Japan . I had a responsibility to win the prize this year . Although main clients consist of office workers in their 30 's and 40 's , there are clients in their 50 's and 60 's who are regarded as the manly generation in Japan . It would be quite embarrassing . I breed many kinds of red - bee - shrimps and some betas . Breeding is fun , but occasionally troublesome . As you know I like breaded pork cutlet so I was cooking it before opening my computer and something happened to my fingers so I got my fingers burned . Jesus why did n't you tell me about this terrible thing that is happening to me ? My friend tells me that I must decrease the amount amount of Pepsi that I drink I decide to decrease the amount of Pepsi I drink It 's been a long time since I studied English . My friend Ming told me about this website so I came here . It 's a good place for learning English , and I will come here when I am free . So I need to stop writing . So many things happened since I had left lang - 8 / during my absence . About 9 years have passed since I started studying English . I 'm frustrated with my lack of progress ! She has sacrificed so much for her children . I used to have a dog whose name was Taro . I 'd like to get a dog . If they had more momey , they would spend it on other things , such as playing games at the arcade , or going out at MacDonald 's or Kentuky Fried Chicken . I think children would be spoilt if they receive too much allowance from their parents so 10 dollars per week is enough . But , I have to do homework X ( It 's contents are secret . Actully I was impressed by that . He was wearing earphones ( maybe listening to music like something with a strong dance beat ) and he danced for almost 1 hour . I seem to able to continue it , because it very delicious ! ! I was asked `` May I make a character box meal for you ? `` She said `` I ` ll make pikachu box meal `` . It will be a pleasure to eat that ! I feel my opinion is selfish . . . haha Cause I never discussed it with my husband ! ( Husband to be . ) Are the following sentences gramatically correct ? The passing grade is 60 points , so I think I made the passing mark . My English is so poor , but I must try to write something . Spring Storm All I have to do is keeps on learning it and I will speak almost perfectly someday . At that moment , a professor , one of my male boss , suddenly came in and said , `` You are using blotting paper ! `` He did n't mean that the lady should not use blotting paper in an official place . He is very cute and smart person usually , but sometimes lacks in delicacy . Maybe we women , also break guys hearts because of a lack for the male way of thinking I think I was kind of pathetic because I had no strong feeling when I lost my lover . Ginza line is good for them because it goes under a lot of tourist spots . When you talk to someone directly , you can see right away if they do n't understand you . When you send an e - mail , the receiver may misinterpret what you want to say . Actually , it is very useful and helps to save time but you should consider that the E - mail is a second best method of communication . I work for an American IT company and our collegues like to send e - mails because there are time differences between the regions . No one succeeds in Japan if they do not prefer the face - to - face meetings . In summry , if you want to establish a relationship with another human being , the best way is talking face to face . When you communicate directly , you can avoid misunderstandngs that may occur in writing . Many peoples in other countries know this ( fact ) , Of course , we are the ringleader who experienced the terrible war called `` The Korean War `` . For a long time , women have had less opportunities to find a job in many areas . Its all part of a field study being conducted by marine biologists Paul sickle ( maybe ? ) and Donna Nimeth , whith funding from earthwatch institute . but I have already watched them . please call and send an e - mail or write a sentence . . Annual Meeting of residents ' association I am not sure about my emotions . Today is a bad day because I received a customer complaint . . . : ( I just feel so much shame for our RD and assembly people . Everytime they promise that they will pay more attention in order to prevent the problem happening but then . . . the problem always happens again . When I was doing my military service , we were close to each other . I have something I 'm worried about . . . ! ! ! ! I will stay up ALL NIGHT studying for my exam . Because , when I 'm 20 years old , I 'll run to the USA , find myself a rich husband with a big house , an even bigger belly , and a small penis . This is the last year I 'm studying at school , or , more exactly , at the Lyceum of Physics and Mathematics , and I hope to find myself in some cool ( or not ) university by August . Maybe I need more sleep or some exercise . Today , I went to a drinking and eating place with my friends . In English I can express everything using only 26 letters ! I am going to hold a drinking party with my co - workers next Friday . Before that , I need to get my father 's permission . Unfortunately , when I finished speaking my first topic , then the teacher came to us and I felt nervous ! Coincidentally , I had an unknown question which made me embarrassed . I am always thinking about what makes a good speaker . I like to play the guitar . F - shaped hole guitar is often used for blues and jazz . Some of the old guitars were coated in shellac varnish , it sounds very good . I went to see the cherry blossoms at Yeido park last Monday . It was my company anniversary . It was a good atmosphere . I feel I am gaining weight . These days I think I ate too much so I am gaining weight . So last year I experienced my first campus life ! At the beginning of the school year , I had almost no friends at the university . From friends , family , friends in US , my host family and so on . Those made me realize I have been supported by so many people ! ! ! And buy souvenirs and the like . However , it 's impossible to describe accurately the sense rooted in individual bodies by using our common sense . I like to drink a cup of coffee wheni feel tired or want to sleep , especially after lunch ! November . In my opinion , whether teaching the students who have already had plenty knowledge of English , or the children who have never experienced English before , the teacher should recognize the importance of teaching . Even though they do n't have the language environment to speak English , they can sing some English songs to review and strengthen their English . My suggestion is that the teacher can teach some English songs which is related to the English lesson . Yes , hindsight is 20 / 20 . The Art of Disney Gallery is held outside in Downtown Disney . Today I 'm going to tell you a very interesting story that belongs to the traditional / folk literature of my little country . In our country , there are a lot of ancient structures that were built before the Roman conquest . They are called `` castros `` , and it 's said that they were built by an ancient culture , probably linked to the Celts . There is only one small problem : if you try getting them , you could be buried alive and die in the depths of earth . My favorite hobby is listening to music . The legend of Saint George part - 1 I was not interested in the topic because I have heard enough of that . However an essay interested me . However , If you do n't exercise early day , you will not be healthy and after you grow up you ca n't even study or work at anoffiice . So far , I 've only watched about two movies a week because I do n't have enough time . Visiting America was very good . There are many restaurants , stores , and the ocean . The bay cruise around Alacatraz is good . Boudin is a restaurant . My recommendation is the clam chowder that comes in a bread bowl . So you should go there , and you should take a taxi or tour bus . If the weather is good , you can see beautiful streets , the bay , and the Golden Gate Bridge . At both noon time and night time , it is very beautiful . But the wind is strong there , so you should bring a parka . So if you come San Francisco , you should bring a parka . First we saw a big ship , we took photos , and we saw a fisherman at the beach . I read `` Graded Readers `` , Penguin Readers , Oxford Bookworm . . . and others . You must feel uncomfortable . On the second night , we took a walk around the souvenir quater ( ? ) after having diner . As a natural reflection , he looked around to find the culprit . He was masculine and gittering during the wedding party . I found the chocolate in a shop selling cubic rice crackers . My hotel has 3 rooms for weddings , 3 rooms for parties , a Japanese restaurant , and a restaurant . I have n't been to a foreign country , such a America . I 'm really eager to be good at English . I look forward to meeting her because whenever we meet , she has grown . I 'm very bored with it because I 'm very lazy but it 's necessary to get my degree from university . I played the guitar in a band at the time , and we copied their songs . Some websites and someone told me that getting PR in this country is pretty difficult now except for special skill workers . You guys must see my bright future there in silence . I knew how fascinating the zoo could be from reading a relevant book , and I thought I wanted to go there if I had a chance . Last night , in the live house , I heard many people speaking different languages like English , French , Alas , if only I had a good partner and a child . As time went on , only a few people have remembered the campaign and people stopped continuing to quit smoking . I recommend you to watch it . It just looks like a cigarette case , so cool and kawaii ( cute ) ! Today , I cleaned my house with my wife . I have liked English since I was young . . My friend recommended this homepage . The people coming to the horse race were wearing far outclothes . My friends told me he received some information from his manager thathorsenumber 5 will win . As we watched the race , we were sure that number 5 horse would win . My grandmother passed away 1 month ago , so we buried her under I am now working for Au pair and exchange between Korean and American culture here . This is my first diary entry on Lang - 8 . I wonder what they are passionateabout . . It takes 8hours , more than three times longer than Shinkansen , from Osaka to Tokyo . I do n't know how long I will stay here , but everything seems gets better . I like the feeling now , because I can ask questions now , no matter how easy it is , I do n't care , because I want to know the answer . It is the only way to grow up . Now , my colleagues treat me well , and always answer my question , and I am trying to do everything perfect , so that they have no excuse to blame me . Nice to meet you , everyone . That is doing yourself ; you do n't need to care about others ' views . I trust myself , I will realize my dreams , fighting ! ! I spread cream Goma paste on my bread . Here 's the website : Meeting Grandma and Grandpa ! ! ! Their relationships are always changing , so it is interesting for me . I 'm still a beginner . Facebook was n't so major in Japan until last year though so many people use it all over the world . Nowadays , Facebook is getting larger and larger in Japan because of the movie ' Social Network ' which is showing now . From a Japanese historical standpoint , however , this idea is the other way around because it was harder for Japan to watch and protect against invasions . It has Swarovski 's crystals on its stainless belt and face . Moreover it was rainy in the afternoon . so we could n't make any food or take showers during the last three days . 80 % of Japanese boys talk to others with humility and the rest of the 20 % , are totally insolent like kids . How about the boys in your country ? So I 've been studying hard lately When my English becomes better , I 'll help my other friends So , I began to go to an English conversation class recently . and it will be understood to everyone reading my diary easily . When I have increased stress , I usually did n't sleep well . She also mentioned the point that she had kept complaining about it for more than 20 years . A lot of people are crying and can not have met their family and friends . I will check about the South Korea and hokkaido , I want to fly immediately . I know that you are a very busy person and , perhaps , you will not be able to answer me , I have learned English for eight years . It 's spring now , I may need to start thinking about my future . I want to learn English becase I am very interested in English culture , people , cities , and more . Also , I have problems with articles , prepositions and more ! Recently I 've been trying to read English newspapers . Terms are not easy . Sentence structures are not familiar to me . A major cause of the misperception , though , is President Lee 's sagging popularity . How different are these ? The primary footprint is a measure of our direct emissions of CO2 from the burning of fossil fuels including domestic energy consumption and transportation . We have direct control of ' these ' . The seaside is my running course . These days , candidates can hardly work as a full time employee . I 'm trying to decide which would be a good gift for Mother 's Day . At the same time , I am learning Japanese as well , in this case , it makes my English become worse . . . . I do n't have much time to use English in my daily life . I hope I can improve my English writing ability . My husband and I went to see a movie . Before the movie , I went to a department store and bought a pretty ring . We had n't expected the movie to be good . The architecture of the buildings such as palaces , theaters , museums were really wonderful . The color of the river water was not blue although the river is famous as `` The Blue Danube `` . I slept during the reading section and lost about 100 points more than the ( listening ) section . I found this website from my English club a minute ago . I want to meet you guys , whoever you are . I will buy more of it later . So when I was listening to a song on TV she suggested to give some Persian songs to Farsi learners . After the women in my family made many of the dishes like the meats , rice cake , fruits , grilled fish , Korean traditional fan - fried cakes and the boiled potherbs , we knelt down to make deep bow with the Korean traditional alcohol before a picture of my father 's face . I currently live in Japan but I 'll be moving to London to study web design next month . I play piano too , of course , as an amateur . It has been a long time since I 've written a diary , so I wanna write about some things that happened recently / in the last few days . It is so good because I was looking for a job in which I could use my Portuguese skills , and this job is perfect ! To tell the truth , I am not sure that I could do it perfectly , but I will try hard ! London is my favorite city because there the old buildings and new buildings coexist . If every day passed more quickly , I could leave for there right away ! his face , characteristics , his way of speaking , haha . Just Beginning my Journal I 'm beginning my journal today . Because I have n't seen them in a long time , I am looking forward to meeting them again . And I 'll watch `` WHAT HAPPENS IN VEGAS `` starring Cameron Diaz . I am afraid to take the Listening Course . I was so sad and kept crying . Also I liked Penelope Cruz . It 's a really useful leg ! I like Udon . It 's really difficult to think of it because he 's straight . Of _ course , students are really looking forward to travel and they want to bring enough snacks to spend wonderful teatimes with their friends . ( Of _ course , there are not any cooling appliances in the institution ) I like to speak English . Today , I took the ANA employment exam at Haneda airport . The test required the ability to cope with a lot of different information at one time , and that determined whether you passed or failed . and it itches . TEN MOSQUITO SPOTS / BITES I ' VE HAD ENOUGH ! ! ! ! In body pump , we use dumbbells like attached picture . Right now I ca n't speak , write or understand English . The man seeing with true eyes did n't compare King Solomon and a field lily . That was thoroughly thrilling to me . Sometime ago , I opened a little business with my friends . That 's why my business is related to computers . I love science too , but not as much as I love computers and Google : ) I 've been married for over two years . I love my wife more than all of my computers , open source , science , and even Google : ) I 'm happy because it was the fourth time that I have taken the exam . I am also glad because I found this wesite for learning English . I , of course , will also help you with Polish . But the foggy and cloudy weather make the city blue . Would you check my letter ? ) * please * JOHN ( Black Labrador Retriever ) and Ryu ( Dachshund ) . When we walked along the river near the house , we saw so many fireflies around . I have something to do in Korea , officially and personally . I bought the flight tickets and bus tickets to the airport . It made me feel tired . Of course we can talk via the internet . I am so tired . That exam had some strange questions . How many aboriginal tribes are there in Taiwan ? It 's the easiest subject . But I do n't think easy questions are good . I have been studying English for 7 years . I want to be careful of `` May disease `` . I 've been studying English because I like English and I want to communicate with local people . I 'm going to Australia for my working holiday this August . I like trips and cultural exchange and volunteer work for handicapped children . If someone interested the journal , please correct my sentences ! ! Thank U . ( The photo means I love U in sign language . ) I came here without a driver 's license , cash , and credit cards . Jewellery label CHIMASKI I decided towritean English diary entry every day and I 'll study English hard this year . Accccchoooo ! I am planning to go abroad in about one year to study fashion design in England or France . I 'm thinking of entering fashion college or working as an assistant designer using the working holiday visa . furnished private room with a fridge landlady , shower , and bicycle parking is free . 4 minutes away from the nearest subway station . from 90000 yen per month for at least a 3 month contract , and a deposit of 50000yen . They have colorful coats , tops and pumps . I like spring because it is colorful and comfortable . My son had a sore throat and diarrhea the day before yesterday . I was standing up late and chatting with my friend Keita on Facebook , so I wanted to sleep a little longer . Breakfast was already ready by my mother . After I ate / had it , I took my pyjamas off and took my clothes on . It 's like Ninja . but their first meeting was a bad one . I experienced an unforgettable interview and the outcome was unbelievable . So when they asked me about my english I answered honestly with ' My english is poor . ' For the next few moments there silence and afterwards the interview finished quickly . When I received the offer my classmates said to me ' Honesty is a virtue ' . I am used to Imari , but I am a beginner of Kutani . Yesterday , I talked to my former colleague working with me when we worked part time in a theater on phone . If someone make stupid and awkward mistakes , she will blame her or him very severely . This activity seems to be fun but actually , it is a kind of task because we are learning how to write `` compare / contust `` structures . After watching the movie , we have to write about the movie by using `` compare and contrast `` . It 's my first time writing a diary entry here ; ) Yesterday I went to Shinjukugyoen with David . I like Spring the most out of the 4 seasons ; ) Doraemon is a Japanese comic , but the comic that I bought is written in English . People tend to examine correctness repeatedly when it comes to observation . Those observations which can withstand examining results can be considered as objective or nearly objective . Recently , everyday it 's raining . When I was fourteen years old , a new boy was in my class . My heart was badly broken . Always be positive . `` The shoe thrower `` ? Today I found this homepage and registered immediately . I came here to print some paper because at my house I do n't have a printer . The keyboard here is not soft like the one at my house . Well , another reason that my keyboard is soft is because I have been using it every day , Sometimes I like to type more than using a microphone because actually when I speak , I think in Thai before speaking in English and I do n't like it . . But that does not help me because when I type I always make mistakes in English . By the way , I 'm falling asleep right now . Last night I tried to read poems . I had never done so before . It was my first time . I am really excited . I just realized that it is an awesome way to study English . I was in my office in Tokyo when the earthquake occured . Although I have already studied English for six years in middle school , my speaking and listening are still terrible . My husband cooked a beef steak and some pasta for me . Edinburgh is the capital of Scotland . Even though most employees are Japanese , some should sent emails to their bosses and I have the opportunity to see such emails sometimes . I ate lunch with elementary school students and educated them about food . Or present temperature is higher than annual . I am studying English very hard . When I went for a walk , I passed a little restaurant . In front of the shop , there was an air conditioner blowing quite a hot wind . I went to university for a club activity . I 'll go shopping tomorrow : ) I am in Australia working on the holiday at the moment . But after now . . . . . Yesterday , I was just studding for my exam had a looked at my window and there was a spider . . I think that the king was weird , but I know , it 's funny to be inspirated with such a small thing . As for the article and the Hague Convention , I had discussed it with two of my friends from the UK before I posted it . I want to learn English , but I can not find any people to study with , so I have not study it for a long time . However , when I suddenly find Lang - 8 , in which I can find people all over the world that I can study with , I 'm happy , because I can study English again . To be like everyone else is like being nobody or something . The thing is that I have to write something , even if it 's utter nonsense . Vomiting , diarrhoea , the appearance of UFOs , or fits of sexual neurosis . . . I thought I would make a special lunch for him . I 'm staying with my host family now . So I ca n't decide yet . I had never been in sales so I 'm feeling frustrated nowadays . chewing gum dates back to the ancient Greeks who chewed resin from trees . Modern chewing gum was patented in the US in 1869 by , believe or not , a dentist . In 1928 , another American invented bubble gum . Bubble gum comes in gumballs of all colors and sizes , but for blowing bubbles , nothing beats the chewy , gooey pink stuff in the twist wrap . I speak Japanese only . I will appreciate it if you check this . long time no see I was busy for a long time . He is a doctor . He said that he wanted to be a doctor ever since he was a child . But tomorrow I 'm going to follow the schedule I made . It includes studying English and finishing my college 's assignments . Anyway , I hope I can use English like people who are working in foreign countries . Maybe it is written in Japanese , so we can not see it in foreign countries Olympic Games 2 I hope it comes true , . Most young people live in urban areas to work . I will write a diary starting today . I hope to build a new business to change the world . I wrote `` Momotarou `` again after a long time . After a while Momotarou and the dog walked away . The monkey was pleased , and followed Momotarou . I 'm considering to introduce my country . Russia and the United States have completed the largest spy exchange since the Cold War . I feel it is amazing that Russia and the United States still engage in espionage to steal military secrets . Will they also be taken to Russia ? Their son and daughter are pitiful , too . Loving someone is brilliant magic ! Ergonomics and style were all considered as much as possible . So I poured some syrup on my Caramel Frappuccino . Shunsuke Nakamura is my favorite football player . His free kick was amazing . The Japan football league is still at middle level in the world . I will try to keep a diary from now on . Please help me , and together we can happily learn languages I do n't like vegetables , but today 's soup was delicious ! ! Because it was rainy . I thought `` he already an adult `` . . . . . . . When I was a child , I played soccer and then after enrolling in junior high school , I played basketball . For example , although boxing or Karate looks so painful , it looks so fun to me ! I 've been healthy since I was younger , so I answered `` It ca n't hurt . `` The temperature is moderate . it 's the first time I am using the internet at home since my return . And more unfortunately , I lost my cellphone and some money when i No wonder my right eye kept twitching when However I was disappointed at the dishes in a certain scene in the film . I think the Japanese way of life is better than before . This morning , I saw a group of swans . Its around 3 hundreds . Since then , I have been determined to succeed Because I also have a moustache and a beard . I have German text books 'cause I bought them yesterday . yesterday I decided to learn German 'cause speaking German is really cool . For a long time , I have been dissatisfied with my English ability ( especially writing ) , and I have been seeking a good way to study English . You might really want to escape from the loop and proceed to 2pm , 3pm , the next day , and so on , because we all need the future . In particular , the variety programs are interesting . It rained hard , so we were wet when we finished the rite and went to a nearby restaurant . Sometimes we all ask ourselves `` When will the day be that we accomplish it ? `` But we enjoy the access to our life 's trip . ( ? ) What the above means is that if you wanna grab something , you must pay its equal in efforts . I hope my dream will come true . Of course it is one of the principle of human life but I think that it is not good . Especially in my high - school , I strongly remember that is the best exercise . Just now I 'm going to read a chapter of Dickens ' book ' A tale of two cities ' and maybe later I 'll write an entry about the book . The procedure was that preschoolers joined the kindergarteners and had a lesson with them . The kindergarteners were so friendly and cute . Maybe it 's the most uncertain time in my life , but I 'll make myself tougher and tougher to overcome all the difficulties . It has a picture of some women who lives in Africa . There are some things on their heads ( or top ? ) like fruits or vegetables and they look so happy . The main color is a sunset color and it 's so beautiful . It was just serving in an italian restaurant . Originally , I wanted to work in pub in Itaewone that is located in Korea . Many foreigners hang out their with their friends . Frankly speaking , I expected that there are many beautiful woman . But I was disappointed . I have just started study for IELTS . One of elderly men said `` There is something under the machine . `` It 's awesome , but I think they will not be accepted in Japan largely . . . . Too punk and a little abnormal . Still , by looking at stars and examining them , it was discovered that stars emit light which reaches the Earth in even intervals . Japan may never have a better opportunity to bring Asiaa better opportunity to bring Asia 's woeful World Cup record against South American opposition to the third round today . Of course we are happy that we went through the second round . I am excited third game ! ! ! After that I left the house and went to the place of employment . I wanted to go to drink a coffee but Timo told me that they had drank a tea before I arrived . The Alchemist is about a young shephard who was curious about his future . He follows his dreams and the signs telling him the directions where he should go , and he finally reaches his goal and finds out what he wants . At that time , we cook rice with red beans and serve it . Once I start to write an entry in my diary , I ca n't stop writing by the proper volume . I 've become talkative on this site . I want to correct them , but I do n't have enough time . I know that there are better correcters than I . Today is Wednesday , February the second . I admit I 'm spoiled . I have had it , which was sold packed in a pet bottle , once in an oversea country . I could n't stop laughing that `` Dairy `` means milk or cheese in English . It has been a week since the earthquake occurred . It has a softness and springiness against the teeth . so I 'll make an effort to study English . I like Saturday very much , and I can oversleep in the morning . and I went to the library . Good evening people , I am Lucia , I come from Italy , I am an Italian student at the academy of art in Frosinone . . . Hello , I am a university student . To acquire more English skill For 3 or 4 hours and more we 'd better watch English movies or TV programs or listening to English CDs without Japanese information , any subtitles Or japanese pronunciations . It 's a famous movie and I enjoyed it , but the dialogue and monologue I could understand was 1 / 10 of whole movie With the information for eyes ( not subtitles but images ) , I managed to enjoyed it though There was a writing class today . I chose it for this semester because I want to write better . Then we , for example , changed from the following sentence . I managed to get through the day . We could spend 100en for each special curried bread , yakisoba , oyaki and sausage . Voice blog can make your account and create your voice blog . However , I do not know about my neighborhood , so I have no idea about where I should take them . It said that there are items that were not paid for . Favorites & interests : snowboarding , reading books , cooking , comics , video games ( Final Fantasy ) I think it 's better to simply say that the word is unknown when it 's not in the dictionary , but it seems there 's no way to change the setting . It 's already Wednesday , However , whenever I travel abroad , I always run into trouble making an itinerary Anyway , I 'm looking forward to traveling to Japan ~ ! They 'll visit the elementary school next month . Even now , radiation has been leaking from the nuclear plants . I felt relieved by their optimistic attitude . The snow is melting into water . Only one t . Sprouts are smiling under the sun . Everything is running with the time . Everywhere you go , you can see them celebrating . Because it is the spring festival in china . My hope is that my writing can blossom like the flowers during spring . But I have n't started doing new things yet . He caught my fancy when I saw him in the Harry Potter film in the role of Cedric Diggory . I like to listen music and play badminton when I am free . I study English . New hairstyle I wanted to change my hairstyle long long ago , but I was afraid to do it . this time I was determined to change . After three hours , my straight hair disappeared . `` Your new hairstyle looks very good `` my friends always say . Finally I want to speak correctly when communicating orally . After eating , we played MARIO BROTHERS on the Wii . Now it just gives me a chance to reunite with myparents . And it will be a tiring trip . Dear Johnny , Long time , no writing ! But four days have passed , now I 'm getting bored , I have no more interest in reading books . The weather is so good , why can I only stay at the house , I 'm freaking out because of this kind of life . So I decided to go out , even though I have no idea what to do , I just want to go out , and have some sunshine ! She would need treatment in a hospital for at least a month . As a result , I could n't win the prize , however , the members of the team all said that they were satisfied with the team - management and presentation . That enforced my confidence of my growth . I have been learning . English is very difficult . Grammar is different with Japanese . It takes time to write even a short sentence . Today , the weather is pretty hot . Submerge yourself . what I really want to be . . . employee ? self employed ? I do n't remember words and grammar . He was a very kind and friendly person and gave us lots of information about Fukui . Chinese are very diligent so there are nothing people to sleep . ? At present , my daughter and wife live there We met 3 times , and I took Kelvin to Moscow . Yesterday , my sister was admitted to Si Chuan university ! In the afternoon , my sister told me a small sercret , that she has a boy friend . he has been in Japan when I was junior high school student . always confused I am very sleepy now and do n't feel so well because I wrote an English essay at 4 o ' clock in the morning . special day ! ? I tried donating blood before , but that day I could not because I was in bad condition . The Nurse said I could donate blood today , also she said her name was the same as mine . After donating , I really wanted to buy cookies for my family and friends . So I got in a line to buy famous cookies . I could n't remember what had happened , Finally , I got cookies . I know that the war is cruel . It is said that almost all Japanese like cherry blossom , they feel transience there . I watched the Olympics on television . MY ANSWER : It 's as if I had discourse with myself or with something that creates and manipulates me . So I decided to write even if nobody reads it . On the other hand , it is likely that I 've unloaded a burden from my shoulders because I have a feeling that I am incapable of treasuring the corrections I 've been given . solar energy Happy Hew Year ! I want to watch a baseball game , but there is n't a game tomorrow . Anyway I 'd like to make more experiences . It ' sThis is my first post , you know , and my 91st attempt at learning English ! My summer vacation will start tomorrow ! : ) yay It 's hard to to learn other langages , but if I can , it 'll be interesting ! Actually , I had difficulty choosing this one because there was another cool red one . I think my English will become better and better . One day just like some other people whose English is not very good at first , but later after all the hard work they succeed . I used to pratice my oral English because I think English is a tool to communicate with others . If you ca n't speak English smoothly , how can you communicate effectively ? When I watch other people speak English to foreigners I really admire them . My dream is to talk with foreigners in English one day , so I hope there are some people who would like to talk with me and help me improve my English . because the weather is good . Human beings have four main kinds of desires . These are called greed , rivalry , vanity and love of power . I also use some frozen meals . I ca n't keep my balance Actually I messed up my balance and tumbled off the ball = < We were able to see beautiful beaches , but were also able to see many cargo boats around 3 kilometers offshore as well . in order to kill time , I might as well browse some boring news on the discussion forum , but I know it is not the life I want to live . Fortunately , I was not harmed by the earthquake . I ca n't get over just writing such a nasty journal entry . Furthermore , he waits until I find my cellular phone in my bag . If I were god , I would definitely punish him for his laziness . But when I started talking , nobody responded to what I said . So my topic did n't make sense . Therefore I think we have to do something to fix nature . ( sounds more natural ) When I hammer nails , it is sooooo noisy ! ! I quit using nails to avoid complaint from neighbors and went to the DIY shop to buy screws . with my daughter ( A ) Whether the pay is high or low , it is very important to take the most suitable job for you . My question is , if you can tell what will happen in 30 minutes , or if you can read what people are thinking , then what would you like to do ? My ansewer is perhaps not appropriate for the question . I only want a little bit of these abilities because if I can predict everything in the world and others do the same , the place we are living will become so boring and our eagerness for learning will disappear . So I always search for a native English speaker who is studying Japanese . I always send a message like the one below this sentence when I want to be friends . ~ below , I send a useful sentence ~ forgetting about the irritating hot climate ( temperatures ) . Back to the subject , I knew him from QQ , then we met on 17th Nov , and then I became his girlfriend . TheSakura festival started last week . I would upload a few pictures I took today . In Japan , we can see a rabbit on the moon . So , depression is hitting our dept . Hello there . I 'm studying polymer chemistry . One foreign language sounds different from another . But it was a controversial thing ! HAPPY HALLOWEEN So I can I provide anime style character designs to people from all over the world . They both felt that it was destiny then . We learn new words everyday , take classe during summer and winter vacations , reading newspapers and magazines every week . And it seems that we learn too much grammar in school . Because the purpose ( goal ) of learning a language is to communicate with the others . To learn a foreign language , we should try to speak it as more as we can , And in my opinion , a test will push us speaking more and seak better . Europe countries are near each other . I might not be able to receive pension for about 10 months in the future because I forgot to pay 10 months ' worth of payment . . . However , since most Japanese go to university and start working at about 22 - 24 years old , the Social Insurance Agency made a system in which we can hold off the payment until we graduate from school . To be honest , although I like studying English , I do n't think this will help . Maybe , men are more apt in remembering their ex - girlfriends and comparing a new one with their past girlfriends than women are . So , it would seem , too , that men tend to be romanticists more than women who tend to look at reality and security . I like him because he is plugged in . Besides , as a partner in the intern program , we usually come up with a game plan to meet our goals . That 's why it surpirsed me very much that he went for broke on those work , especially on selling the product . I always wear my hair near my chin and now I have decided to wait and do something different . I introduced the interesting Kobe has many nice cafes . And I really like to play football . Today , the weather was fair until noon . I was able to hold the alumni reunion of Seoul Pyeongwha Elementary School for all graduates at the playground of my school on February 5 , 2008 at 6 PM . And these days I 'm trying to convert my Korean version mini homepage into an English version one so that foreigners can stop by my homepage . This event is hold once every three years in Yokohama city . I went to it three years ago . Back then , the artist was also young , and their creation had a wild imagination . Thank you for reading my diary . I woke up so late because I watched a film called ' NANA ' until the early hours of the morning . The continuation of the film ( NANA 2 ) has been published . However , the former one is excellent ! I hope everything will be fine ! so , we were hanging out till night , so l my legs hurt from all that walking . Her 's parents were very tender / nice when I visited their home . I drank a lot of alcohol last night . Last tuesday , I went to an `` English conversation bar `` on my way home . I could see only regular customers at first , but welcome to Taiwan . Japan wo n't be able to keep up with the American economy forever . ( We thought that `` someday we will get ahead of America `` until 1995 . ) Sometimes the American government has conferences with aliens in secret . American tornados are also American size . ( Sometimes tornados appear in Japan , but most tornados are generally small . When we first see American tornados on TV , we are surprised at how big they are . ) Why do n't you listento the song ? ? column of the newspaper . Recently I 've mostly been going to the library to study English ! I like working at restaurants except my shirt , pants and hair / hat [ ? ] smell of oil after work . It smells delicious , but I need to take a shower after working at the restaurant . Afterward , I watched Ryoma - den , which is a Japanese historical drama starring Mr . The following URL is my pronunciation practice reading the same sentences as # 1 . but my favourite group is Placebo . I hope that you 'll understand my text ) ) A MacDonald 's hamburger is also 105 yen ! So cheap sushi and a hamburger are the same price . Hello , Lang - 8 friends ! But I ca n't decide the colour . Through that time I had worked as a soccer player at my elementary I must be behind the times . In my opinion , every student is studying the same topics in high school , but we have more spare time in college , so , many of the other students Firstly , we can make friends . Friends will help you when you are in trouble . Secondly , we can do what we love . For example , playing guitar , First , I like to travel abroad and most of the countries I want to visit are English speaking countries . I ordered ' Oroshi Tempura Udon ' which was cold udon with tempura and grated Japanese radish . To tell more in detail , each noodle was chewy , and soup was n't too concentrated , and tempura taste matched to noodle and soup . Now they are pretty and green . I think your country is also pretty and green since it is spring . I need to buy something special for her to congratulate her birthday , but I do not know what to give her . There are many visitors from foreign countries and workers , too . So I started to learn English . The Futenma American military base , corruption of many politicians and so on . Then I find myself being into new services and gadgets and think like this : I can draw and I think that it can help me . When I was young I liked colas , sodas and sweet drinks . When someone kindly correct my text , I feel happy . Usually , we congratulate on special days like a birthday , St . However , I like congratulate on ordinary day . If I congratulate on normal days , I can get a small reward confidentially . However the difference between this book and other traditonal English word books is that it tells you how to use the root of words to remember words . I looked for sports wear in there . Possibly , that post may leave the impression that I want to bring attention to myself or hear some praise . I 'm nervous that I can talk well . I want many users to edit my writing . Models who are always under much pressure to lose weight should have psychological mentors who can give them real advice . This system can be preperation for students with specific areas of study that they are going to choose in the future . If they become Sekitori , a sumo wrestler of the rank of Juryu or above , they can get at least a 12000000 / year salary , but if their status is lower than sekitori , they only get 1000000 / year . In order to keep Sekitori , they must win at least 8 bouts out of 15 bouts in a tournament . They have 6 tournaments a year . In my opinion , the red roses and chicks do not match . I did n't think that the chick was cute or pretty , also I never wanted to touch it , but it looked like cotton candy . She knows how to teach , and how to inspire the students to speak out . They are Japanese singers . When I watched The World Cup , I was impressed by his play ! Hello ! ! ! Anyway , I recieved a pepero from my boyfriend . It was not costly , just 700yen per adult . ( without optional services ) Almost every town in Japan have this kind of bathhouse . It is just 4 degrees Celsius . I hope that tomorrow will be nicer and I could go play basketball or something else . This means I will choose a college and decide my future job . I learned how to use the word `` rain `` in junior high school as follows ; - Bullets came raining down . If succeed , I could apply for a full scholarship from NUS so that I do n't need the financial aid from my parents coz the overall tuition fee each year is a little of a burden to them . `` I talked to the fragile girl beaten by tension , `` Now you 've nothing but courage and diligence , DON ' T LET ME DOWN ! `` So I have been thinking people from the east coast pronounce the T . On the other hand , others pronounce it `` b - I - hind `` . Today I want to tell you about `` Buttery Thursday `` or `` Pancake Day . `` At a certain time of year , we have Buttery Thursday when everyone eats doughnuts as many as he wants ( see the pic above ) . Although we normally eat two doughnuts , one of my coworkers has eaten 14 doughnuts today . How should I deal with it because I do n't like to drink ? For example , they carried our baggage all the time , they opened any doors for us , and they served food to our plates at restaurants while we were eating . Is that because Hong Kong was colonized by England for a long time ? Oriental and Western cultures are mixed together in Hong Kong 's multicultural society . One was working for a restaurant . I have worked there since I entered the university . Before the wedding in my own country , the bride and groom ca n't see each other until the wedding day because the bride is busy with her `` Henna Day `` . Because it 's been raining for 5 weeks , I 've been playing soccer in the rain . Landmark tower , concert halls , harbor , foreign residences , a big shopping mall and so on . That 's why today 's short trip to Yokohama felt a little bit heavy . I 'm looking forward to tomorrow . I like the sound of the guitar as well as the ukulele very much . On my last journal entry , a friend of mine told me about a Hawaii podcast . While I was browsing the site and listening to the podcast , I felt like listening to Hawaii - ish music . Speaking of Hawaii , I think of the ukulele . Actually , I play the guitar , too . Although I 'm still not very good at it , I always enjoy playing the guitar and singing out loud ! Please teach me accounting ^ ^ I think it is a very beautiful country . I feel that I 've wasted so much time trying to show what a smart and cool guy I was , that when it 's time to graduate , I find that neither my special view on physics nor my acting ( ? ) can help with my job hunting , which is the real - life . There are at least 3 choices I could choose . But I do n't think more choices or more chances would economically mean much ( ? ) . Whichever choice I ultimately make , the cost will be huge . My roommate has been focusing on only one thing - - succeeding in Java at the job fair . She ate five and she said , `` Papa , let 's go to sleep . I am accustomed to work . This word is very familiar to me . `` I suppose . `` Okan , I 'm hungry ! ( < - - - This word really looks childish ; ; ) `` I am laughing now that I have remembered these scenes . . . : - ) I am altogether like their moms ! Anyway , I am really worried about the people who suffered from the earthquake and the tsunami in the Tohoku area . I am very embarrassed by my weak ability . He added that he would just sit back and drink beer on a small island , sometimes catch fish on the beautiful crystal - clear ocean . And I love cold weather ! And then , I found a small advertisement in the newspaper . I have had experience only in desk work and as a clerk of a pet shop . Today is me with my two cute colleague 's dating , It gives very good income . But I have had no response yet . Lying sleeplessly on my bed , I thought that we should n't just say yes to everything we encounter . Her Hoiku - en ( nursely school ? ) class is having a field trip today . It 's just an attempt to determine whether I can finish a website made in Flash . Actually , things have been OK . Well , it 's such a simple website that you can not even contact me here . I wanna recommend the American drama ' Glee ' . Please correct my writing . . . It 's healthy . basically I do not have much time to do things totally unrelated to my english test such as dancing , but I just love it so much . In the beginning I studied dancing just for lose losing weight . If I go to the gym , there are not much choices for me - running , yoga or some muscle fitness equipment . my body is more powerful and flexible now , but it is not good enough . My mother language is Korean ; which the order is totally upside down , compared with English . My refrigerator still works , but I bought new one because the electric bill is too expensive . Even though the weather was n't good , it was rainy , I would love someone to correct my writing . Of course I can help you with Japanese if you want . Feel free to contact me if you are interested in me and want to have fun . So you absolutly ca n't go to an internet bar and get on the internet . Do n't worry , you will be able to at a hotel or your friend 's home , Do some foreign people think that inviting a girl to a boy 's home in the early period of their relationship is normal for understanding each other deeply ? On the contrary , in my opinion , Japanese tend to view it as an official date for introducing family members or a greeting in anticipation of marriage . Two men were climbing the winter moutain . English performance test . ( My First Impression of Anyang Girls ' High School . ) While I distributed the fliers , one of the people that I handed a flier to read it and said `` I am going to get a massage , do you want to go with me ? `` So , many teenagers , including me , were very sad and some of them followed him and committed suicide . Since Lang - 8 uses the HTTP user - agent of each device to choose the appropriate page template , mobile devices that are not on our `` white list `` will show Lang - 8 for PC . We have an alternative option for those Cookie - disabled mobiles to use Lang - 8 without Cookie - based sessions . My favorites are professional worker 's stories , mysteries , fairy tales , science fiction , historical fictions and so on . Thank you so much for your patience to read it until the end . After May 3rd , we usually revert the prince and princess dolls like the picture above . I make it a rule to read English books at Starbucks near my condo every Saturday morning . Recently , when I try writing this , I always get sleepy . But I have not received the item yet due to lack of stock . Last night , I walked to the park near my company with my partner after dinner . There were many people in the park , such as young boys , young girls , old women , old men and many lovely children . Some young boys were playing basketball , some young girls were listening modern songs and many of the old women were dancing . because I could n't go to work . This poster was announced for Gunma prefecture . When I watched the poster , my nervousness went away . I always get up at 8 o ' clock , and leave home at half past eight . It is much better than Japanese one , because every cage is much bigger than the Japanese one so that every animal looks good , and we can see their natural movements a lot . When I think about relationships , I am really awkward at this age . We went to a public photo gallery . My son also enjoyed himself . but , as time waits for no one , then could you wait for me in the future ? youtube seems to be forbidden again in China it seems that a lot of people have the same problem , and not because it is a network problem , it is political problem . The Exhausted Traveler . One night , two travelers were walking down the road . Today I went to a English club because I want to learn english . My youngest daughter has had a practical period in Spain . For example , beach volleyball , aerobics in the swimming pool , dancing with the childeren and so much more . These comments hit my heart deeply . They do not value that time . We can learn what we love and learn about modern society . Don ` t be on a computer all the time . I have a train passport case which have used since I was a junior high - school student . According to what the man at the used furniture store said , there was nothing worth buying among my belongings . Many people buy and sell `` doujinshi `` ( = fan books ) about Japanese `` anime `` , `` manga `` and other characters . In this summer , the best selling `` doujinshi `` genre was `` Madoka - Magica : the magic girls `` , I think . Twitter , Facebook , Lang - 8 . . . I 'm happy to meet a lot of nice and kind people . ^ _ ^ Because I do n't understand how to use vocabulary and grammar . For example , allow and permit have the same meaning in Japanese . I do n't know how to use allow and permit in a situation . I like to drink red wine and beer , and so do my friends . But still I like to go out with my colleagues or my friend to a bar . I really want to know how other people get along with their lovers who have different who has habits or thoughts . I 'm graduating from college teacher teacher teacher : D speaking class I could n't complete everything , because I did n't have enough time Today it was a national holiday in Japan . I am crazy about DIY these days . It 's my first day on the Lang - 8 ! Still I do n't know what will happen after updating daily . But I 'm excited to connect with someone and support each others improvement in not only language butin cultural differences Today , I watched two animes . I watched A Whisper of the Heart and A Mononoke Princess by Hayao Miyazaki all day at home for the first time in a long time . I especially like Whisper of The Heart , out of the many movies that he created . but usually we ca n't see their shows very often in Japan . ( My teacher told me to read a script , this is a scene in the play ) I live in Japan . The summer seminar at my juku school starts today . Two main popular actors spoken English never sounded fast . My grandpa was a widower since he was young . I am sure I want to learn . I borrow a course book from the library but I eaisly get discouraged as t learning foriegn languages is a hard and tough challenge . I always want to achieve the expected result , and I try to do it . I do n't know when he will see my request . If you can see this diary please help me find some grammar errors or other mistakes . I am learning English and like Japanese , if you are Japanese I am also very glad to be friends with you . One day my daughter said to me . In yesterday 's class , I learned the word , `` guinea pig . `` I could n't understand what she said . Unfortunately I 'm not in charge of the assignment , so I did n't know what was going on between my boss and the client . The author believes that . . . . In the above passage , the author believes that eating fast food causes children to become overweight . I 'm sorry to say this , but the weather forecast says that the next day is going to be rainy , too . It 's already the 5th ! Today , I held a takoyaki party at my house . Travel to Mexico I reserved a hotel room and booked air tickets on the internet . I want to enjoy snorkelling in the Carribean Sea . A Difficult Sentence Look at photo 1 , the handbags were made by hand . The TV said , the chance of rain is 20 % . The native speakers are talking very quickly so I have to listen 5 or 6 times to understand what they are talking about but it is interesting . Do you have any recommendations ? I talked with 2 native speakers in English at the camp last weekend . She is a friend of the English Speaking Society members . Recently I have been very busy . . There were a lot of people who came from abroad there . I haveto make an effort to study English more ! One day , one of my friends said , `` Actually , I do n't understand what other Japanese students say in English , but your English is really good . `` The meeting was supposed to be held yesterday afternoon hi , everybody thanks for everyone who revised my compositions . . . My homegrown veggies . Well , this is not my first attempt at growing homegrown organic veggies . I grew some good homegrown organic veggies . Now I know that it 's really difficult to make homegrown organic veggies . A - bomb Memorial Dome is near the Peace Memorial Park . I would appreciate it if you corrected it . I ca n't express my thoughts clearly , but I trust that I will speak fluently in the near future . Actually , all of the classes were in English , because the teacher was a foreigner . I did n't have much money but I wanted to buy new furniture . I am not good at speaking , writing , or listening to English . I 'm developing new materials for energy devices such as batteries and capacitors . According to the news , recently , there have been situations where separatists used sharp objects to attack residents in Xinjiang , China . In summer I usually go for a walk with my friends , read books , many practise music and travel all over Moscow . It ` s a very beautiful manor which is erected by Bajenov and Kazakov in honor of Ekaterina the II ! So recently I 've started gaining weight . I decided to eat to healthy food , to eat less and to exercise . I 'm bored to death ! ! I downloadedsome of theses from authoritative periodical databases . `` You will pass through a dark tunnel ; meanwhile , you feel helpless , scared , distressed , and feeling negative . Then they become two best friends again . Today is It has been getting cold recently . First , the financial section is essential for running a company It was great . The Lion Dance is a very popular dance during New Year 's celebration in China . Anyway , she followed me today . Japanese and logic the first , I had extended my visa for August , but I have n't got it until now . . . . How do you think ? Unfortunately American Football is not popular in Japan partly because the rules are too complicated for people . Mainly , because the players are not very famous in Japan . As everyone knows the popular sports have many fans , especially children . Basketball is also not a popular sport . I heard that flag football would be treated ( ? ) as a curriculum at the elementary school . but the forecast is saying that the rainy weather will continue for several days . . . Rakugo is traditional comic storytelling . Tiger and Dragon was made by Kudo Kankuro . They were over my shoulder in height . However , the temperature of water was cold . Now , I have an aversion to writing correct grammar , but I can read and write in English a little . It 's difficult but I like to exchange letters and converse in English ! By the way , is it possible to send an email containing pictograms to a foreign country ? Our electricity will be powered down at 11 . I did not know what was happening . We have had dogs , cats , ducks , parrots , hens and chickens , hamsters , fish , an iguana , a turtle and a couple of rabbits ( who had like 10 rabbits ) . Comic cafe I 'm in a comic cafe right now . But , when I think about people who now spend their life staying in this place , I wonder whether they 're able to get relaxed everyday . It seems to be a controversial issue during a prolonged economic slump even though Japan is considered to be affluent . I enjoy writing in a journal . Yesterday and this morning , I took the achievement test . : ( You 'll never know whether I eat something or not . I have to say goodbye to my stomach . ( I 'm not confident about this expression . ) Second lesson at Gaba Today , I went to the Gaba English language school . That 's because I am in Thailand now ! ! ! When I have reached home and settled down , I will write about my trip and put up pictures ! ! ! ! ! ! ! I know that . Yesterday , I had my wisdom teeth pulled out . But I believe that it is what I am meant to do . . I have visited south asian areas , middle eastern areas , India and Europe . . Hanami means looking at trees of cherry blossom in Japanese . Now I severely want to speak out what I think and feel . Today is April 26th , which leads to me being more attentive , because the `` Interpreting Oral Test `` is around the corner and I 'm serious about it . If we want to achieve something , there is no doubt that we should grasp every possibility to be completely prepared . I have to interpret plenty of materials on the book by myself first , and then I need to correct my interpretation with the help of references for the sake of making more progress . My freind is very beautiful and owns lots of admirers , the same with her boyfriend . But us girls are always more loyal than guys ( ! ) , so she always worries that her boyfriend will fall in love with other girls . The popping rhythms . . Here is my favorite line from a song called `` Thriller `` by Fall Out Boy : A few days ago , Someone asked me my favorite book . The person asking was a foreigner so I told him my favorite book in English was Catcher in the Rye . Listening to me , he laughed and said ' that is the worst book I have ever read . ' Unfortunately , the people around me did n't really like the book either , but I still think it is really well written . The main character is a boy who makes sarcastic and cynical remarks about almost every person he sees . He points out hypocrisy of the people as soon as he catches wind of it . Soon , I 'll go traveling to the east coast of Australia with my two friends . There are some vegitarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabetes . I was told by those people who have food restrictions that they will chose to eat what they will eat , so any special consideration was not necessary . I am going to prepare some appropriate Japanese cuisine such as vegetarian rolls ( sushi ) , or fried Tofu in the soup . I heard that the Japanese government uses the money for the pavements in order to coordinate the money left at the end of the year . And that gives a chance for construction workers to garner extra work to do . Furthermore , one of the problems with curse words is that these are famous among non - native speakers . Nagoya does n't have art , culture , or fashion . I wanna work for an international company . . I 'm looking for devices that first of all will be for people with dementia ( big button , simple , long lasting battery ) . Best regards . . . Tomorrow I ( will ) have to wake up about 4 hours earlier than today . Im a univercity student . I love learning foreign languages ! and I also study Korean ^ ^ However , this time I am satisfied with the shiny beige I imagined . This is another reason why I connect `` green `` with `` fresh `` . Do you know why green means `` jealous `` ? If there are some words I do n't know yet , I write those words in my notebook and search for them in the dictionary after I return home . It does n't matter whether he ( she ) is a foreigner or not . Anyway , it is hard for me and I am worried whether or not it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone whom I can practice a elderly conversation with . I think I am wearing normal but a little bit flashier clothes that I already have to the party . We have been trying to use English in our seminar recently . Today , one of them told me that he wanted to practice more , and I recommended that he use this site . I like gyoza ( a kind of dumpling stuffed with minced pork and vegetables ) . To add on , I had not shared any news about my life for more than ten days . Society is currently information - oriented . In an information - oriented society , cell - phones are very important things . what should I say to her ? I heard from someone that Spring can bring fateful encounters . That is that he does n't help me on housework . . We often have a quarrel about it . Although I 'm nearly 20 years old , I need 10 minutes for writing these three sentences . He is my wonderful friend from Canada from Lang - 8 . It 's the first time In Thailand at the moment , the amount of people who have H1N1 flu seems to be growing . I hope the government can manage it soon . In fact I 'm going to Rimini for a holiday with some other friends in two days ! I like to compose my own music . Today I bought ice cream . It was introduced to me by my brother in Guangzhou province , China . I called him this morning to get the information about how he studies English and Japanese , and how his job - hunting was going . I thought I was lucky to have a job in northeastern China in international business , but I need to work more at studying harder and improving my English so that I can catch up with other competitors . Welcome to my Diary corner . I 'd like it if some native speaker could give me a hand and improve my words and sentences . Barcelona vs Atletico Madrid , an accident happened , something that I was afraid of . Schools start in April in Japan . `` Eat green , red , yellow , purple vegetables everyday , and drink more than 2 liters of water everyday `` when I have free time , I always google some words . We went shopping , karaoke , played badminton , walked in a nice park , etc . Introduce myself I 'm a native speaker of Japanese . It is the DVD of `` Dreams come true `` a famous Japanese musician . It was very difficult I was not planning on going to the party , but I ended up going there because my friend kept telling me I should go . I found Lang - 8 , while reading a book when I commuted today . Periodically , I saw her in our shop at home , where she sold cosmetics from the stand and suggested to ladies who passed by that they familiarize themselves with an assortment of cosmetics . Now in the mornings and evenings I try with the speed of light to enter the apartment or an elevator so as to not collide with the neighbor . First of all we got on the bus at our hotel guided by staff who were dressed in costumes like flight attendants with tickets like boarding passes . At the entrance some performers welcomed us and there were stalls that served delicious Latin cuisine and a stage where Salsa dancing and music were being performed . Especially in the western and southern regions of Japan , they were not affected by the earthquake as I am sure you know . I should n't have seen that program . . Yesterday , Malik played a music box by himself for the first time . I went to the tower to see the witch getting burned today . Although it depends on the country , as far as Japan goes , there are some reasons why we attend college . Space between commas ! My parents took time off and were hanging out at home , and now they have gone to visit my father 's elder uncle . Il n ' a pas lu ce livre . And recently , I started studying Chinese . For example , pandas are viewed as the most valuable animal in China , and there are less than a few hundred of them that are still alive around the world , due to illegal poaching , and man 's ongoing expansion into what were once their habitats . In conclusion , zoos could be phased out one day when human beings no longer interfere with the balance of the ecosystem . But for now , zoos are still needed in terms of raising public awareness of the significance of preserving animals and lifting the population of endangered animals . One major advantage of flying by plane is that they are faster than any other means of transport . What is more , it is not recommended to people who are afraid of heights or flying . The movie Salt I have the latest I Pod iPod nano ( 16G ) . It is my favorite because it is very small and has a good design . The reason I wrote such animpolite thing is because I really wanna go to Singapore as soon as possible . I 've only studied in Sydney , but my real intension is togo to a beautiful beach or something . I can probablyenjoy Australia ifI can afford to see everything . Just do it ! The sence there was all smiles . I go to the gym for workout everyday . Spinning bikes are similar to normal bikes but they are different because you can control the the resistance to make pedalling as easy or difficult as you choose . The reasons that I like this type of exercise is , first , that you do n't need much training or practice . Then , I practised my Listenning English skills by listenning to the New Horizon3 at double pace . Although her luggage was overweight by 9 . 5KGs , the officer still let us go freely . therefore , I participate in this program so as to enhance my English . ^ ^ I also hope that I can use my ability to help those citizens who are I still ca n't believe what happen even now . so , we need to cooperate with each other in order to save some energy . Tomorrow morning , I should go to the police station because I ask the police station officially about a investigation of the traffic accident . Maybe there is little chance to solve , but I want find out for myself . I 'm a university school student now , but I wanna be around foreigners , and travel abroad . Most young people there do n't have any interest in politics . Generally speaking , they do n't even go to poll stations to vote . So stupid Japanese politicians can do what they want to do greedily . Even if they do something wrong , they can win the next election , because majorities do n't vote at all . Singaporeans should leave everything to them . . . . . The company that owns my flat has a presence nationwide , so anyone in Japan except those enjoying country life can easily find its characteristic striped buildings . All of the rooms they provide are furnished , this type of flat is rare in Japan although I know they are rather common in some other countries . It is my favorite food from my childhood . So it has become my favorite food since I was a boy . Of course , you can enjoy eating it without liquor . He said , at his work ( Japanese company ) , he is often told that he is too self - assertive . I have n't become a member of that group . I will become a member . We made a witch 's hat by using newspaper . I 'm still not a qualified voter , so I could n't go today . Sport is not only physically challenging , but it can also be mentally challenging , criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Have you ever thought about your lifetime ? What you want to be ? I think people have their dreams when they are kids , but how many of their dreams come true ? If you were one of those people who was very successful in their life and your dream came true , it would be great , but if you were n't one of those people , have you been trying to change it or give up ? Especially after you married and had a family . I am looking for companies who love to study English and teach me commercial English , industrial English , medical English and so on . Of course , I like to learn German now . Already 180 days have passed since my son was born . Sometimes we used to fight because of different opinions about taking care of baby . Sometimes we laugh at something different and enjoy that . I watched the movie `` Sex And The City 1 `` last Saturday . It was very fashionable and gorgeous ! ! I will use a lot of money . I long for their life . I want to be a millionaire ! ! I played sand volleyball today . It 's been a long time since I 've played sand volleyball . Sand volleyball is very difficult . But it 's a merit of sand volleyball , I think . I played sand volleyball for 2 hours . But it felt shorter . I have received your letter and know that you failed the last English test . Yesterday , I could n't say `` Happy New Year `` to my friend . The octpus was the main dish and I wanted to have it , but I did n't want to have side dishes because it seemed to me that they were not appetizing . I 'd like to be an international hotel concirege in the future . People attend college or university for many different reasons ( for example , new experiences , career preparation , increased knowledge ) . Why do you think people attend college or university ? Try to answer consciously , I think for most students the primary resaon is for their future career . Today is a holiday , but I 'm at the moment working in my company . He supervises subcontracted work . It takes a long time to solve the model of simulate models . I have to solve the model before the deadline . I felt afraid . Sushi is a very popular food in Japan . I 'll use it and make a sentence including the words . Japanese government have to assess somewhere to be able to build a building . A pawnshop assesses bags , watches and accessories which are brought by someone to lend money . When this meeting is held , almost every participants gather before the meeting and eats a special curry . According to the above , we can agree to the follow reasons : Of course , I returned it in the same state . When I speak to a native speaker , I make them feel unpleasant . If people of the future are seeing the current world , they would not be approve of it . I eat so much food that I think that . I might gain weight . I worry that my stomach will become large . I guess we burn calories inside only by talking while sitting down . Today 's lesson was about solving the problems . After that , Enrike and I ate lunch together . Today 's lunch was spaghetti with meat sauce . I am also learning Spanish because I like the languages and I like Spain and its culture . Now I am having summer holidays so I 'm learning it on internet , but I will take courses in Spanish later this autumn . Staff : Why did you come to Singapore and why did you choose Singapore to live ? Generally we mix intelligence and knowledge . But it is someone that is wise and uses his or her wisdom in her or his life in order to live a stable and well balanced life . We always see our children play and determine which will be the bright one . Although I could n't understand what they said I enjoyed it visually . They had mic performances , tap - dancing , singing and instruments . I 've chosen to study Japanese because I 'm fascinated by this country , its culture and its history . I have plans to go to Japan next year so I want to learn Japanese to be able to communicate with people . but as you know , most children do homework such as learning english , writing korean and so on everyday . and then explain this situation to him . I want to learn English , please help me to correct my errors . A mathmatician , sports and music lover and struggling badminton learner . My first diary on this site By the way , could you tell me whether or not it is difficult for native English speakers to distinguish `` want `` with `` wo n't `` in conversations . I guess many would judge from context as I do with confusing words of Japanese though . I belong to the Sales & Marketing Division , which is especially for distributors and large companies . After this happened , I began to think that perhaps there was something wrong with my social skills I will try to talk and become friends with her , then she might she that I am a fiendly person . I went to the gym near my apartment in the morning . After the lesson , I went back to my apartment and had lunch . I had learned English for about six years until I left school two years ago . Now I am studying at a university , but I chose Russian as my language to learn . I will say , `` Pak , tolong tandatangani kertasnya sekarang , karena saya harus segera mengirimkannya ke klien `` . I like this idea so I will continue working there until I will go to the U . Someday , I want to see the most beautiful sunset in the world . His house is very big . I climbed onto his house 's roof . those are all difficult because they are totally different from Mandrin It is probably very difficult for you to move to higher classes , which ever classes you are in now , you most likely want to move to a higher class than others . When I arrived , I forgot to bring my books so I was given detention by my teacher . Some peach blossoms , rice cakes , and sweets are put around the tiers with the dolls . Parents wished for their daughters ' happiness , growth and health . I am going to participate in a tea party celebrating a Girls ' festival tomorrow afternoon with all of my middle - aged lady friends . English is a very hard language . . . English needs more efforts than other languages . . . I bought a magazine , `` Business English , `` a week ago and just started learning with it . So you should try to reject their demands . And give your children the chance to earn money themselves . While I used the computer my sister washed her dress downstairs . When I got home from work this morning , I found a lot of ants marching along the edge of the floor ! ! ! ! This is the first time I 've visited this site . I am surprised . I surprised that it 's offertory box was so huge ! It was not like a box but like a garden ! ! second : The reason he is so successful is that he works extremely hard . welcome to lang - 8 This is my first time at lang - 8 . I want to improve my English level . I want to make friends from other countries Looking forward to receiving your message . Here is a photo of this annual youth activity in Vietnam . I was changing it because it depended on different causes . But I tried not to change it too much . Anyway , I think that learning new knowledge is both very interesting , and helpful for me . I think that the main causes of my lack of success are - laziness , my misallocation of time and tasks , and again laziness . I was at Lotte World which is similar to Disneylandfor work today . When I was walking around Manhattan with my friend , he found a stone - made building like the Pantheon in ancient Rome standing between office buildings . A standing board in front of the building indicated that it was a luxury retail building . It had two bedrooms and one guest room and was equipped with excellent furniture , household goods and electrical appliances . So I feel refreshed ! I studied the contents in detail and looked up all the vocabularies that I have known . . Oh , if you saw the movie , The Fourth kind , you perhaps know this line from the movie , `` I see an owl staring at me `` IDIOMS and WORDS Please teach me . Anyhow , Singapore has been having a serious water problem since ancient times , because this country is a small country , so they ca n't build dams . During WW2 , many English soldiers were holed up in Singapore . But I think the Singaporean government wo n't be able to settle this problem unless human beings develop a technology which can change sea water to clean water . A party is held for a boy by his parents , grandparents , and other family members in hopes of him growing up healthy and strong . We talked a lot on via skype about language , culture , customs , cities and even politics . I wrote a diary in English for the first time . I have a pain in my shoulder . I live in an apartment , but I own a field for vegetables and herbs . I often go to the library and borrow books . I think I would hold a party for the whole house , if I were a member of their family . By the fourth time he is not warned and is shot in the head . Thank you for reading my writing , Languages easily become rusty if you do n't use them often . Do you know the French sports brand , Decathlon ? I want to go there to buy a pair of climbing pants tomorrow . I live in Tokyo in Japan . Well , that 's life , because we have grown up . We ca n't always live off our parents . We should work hard to make our own and our parents ' lives better , and that is every child 's duty . Because I was scared when I was with the barber . I 'm looking forward to watching the movie . Unfortunately , in Japan this was n't announced by mass media largely because one person who was in an important position did a speech while drunk . The most famous goya menu is `` Goya Chample `` . The politicians move to their public speaking places by using them . Woohooo ! Iraqis should revive the country by themselves . Are you planning to go to an amusement park in Korea ? In fact , there is no big difference between these two places . However , if considering transportation , I would recommend ' Lotte World ' because it 's very easy to find . You would definitely have no problem finding it . When I ca n't sleep at night , I usually listen to saxophone music . It was just like the middle of the autumn in my country . Therefore when most Australians thought it was quite cold , at least I didn ' t Morning temperature is totally different Needless to say , I do n't watch the weather forecasting . The class is open every Thursday evening from 7 : 15 to 8 : 45 and held three stops away from the station near my office . ( but one person seemed to be in charge of instruction like a leader ) . we usually have free conversation and group exercises for one and a half hours . Each group is divided by the level of English the people know . The con is that there is very little collection or feedback of the mistakes we make . We are currently using a customized program which we made ourselves . However it would be forgotten slowly in my mind as time passes if I do n't use it in my field . The most concerned thing is that a new member , a SAP programming expert , would be joining us for the new project . You can see many strange things , like people and buildings that you have never seen . I 'm already 21 years old , but I look young . . . Unfortunately , it is not habitual in my country . They say it 's our mentality . But until it is accepted we can affect change amongst ourselves . He looks so pained with stuffy noses and sneezing and itchy eyes every day . So I bought groceries that are described as effective for pollen , `` yogurt `` , `` tea of lemon balm `` , and `` nose cleaning liquid `` . I was unusually very busy last night because there were many student complaints I need to make a softer expression . I would like to prepare for the ' First Certificate in English Examination ' but my writing is not correct , so I must practise and write as much as possible . I am also very happy that I have the opportunity for native speakers to correct my sentences . Thanks for your corrections , they are very useful hhaha ! On this website , you can meet different people . I think she likes the man , her boyfriend is usually different . I saw the awesome naked bodies clearly and I realized that was a dream . I jumped about 3 metres high but he was faster than my reaction and he attacked me . I feel a little bit weird writing this and I could n't come up with a title . By the way , the weather was strange today , because it suddenly began raining harshly . Actually , it is notthat serious a situation . Do you believe that sea air is good for health ? Carbon reduction make the air on earth be better than before . My dictionary says interrogation means investigation . I did n't study at all when I was in junior high school . By the way , most Japanese geeks are very ugly , I guess that most of them have never had a girl friend in their entire lives . Enjoying nature Some people put forward an idea that education is betther than punishment , as it can teach people the knowledge that committing a crime is not a good thing . On the contrary , the people who stand on entirely different grounds think that punishment is a deterrent . Considering both sides of argument above , I am inclined toward the opinion that education is more effective than punishment . However , he sees an advertisement that a person committed a crime and was taken to prison on television . I really love my grandfather . Last night my boyfriend told me something that offended me in the middle of our telephone conversation . It was so nice and I was impressed with the beautiful traditional culture . The wall was made of brown wood ; it was so nice and homey . I am not familiar with Maiko san , Unfortunately , I probably ca n't become a Maiko san because My height is 168cm , and I have a tan just like a surfer , haha Kyoto became one of my favorite cities . For this , I will study hard to pass the graduate Uni . . . ! This is my favourite mini - photo book . `` Can you play tennis ? `` and `` Do you play tennis ? `` Now I have just finished reading your corrections and comment 5 times , and I can get an enormous impression after knowing evil 's tactics . There was a car on the right , so I steered to the left . Why should I go to a different prefecture for my class ? No one can give us a clear answer about the effect of long - term low level of radioactive exposure especially for children . Last Saturday my daughter went to the kindergarten entrance ceremony with my wife and me . But my daughter seemed happy . Today she went to kindergarten too . The most important was making a special point of ensuring their safety . After they took pictures , the teachers allowed them to play in the playground . I slept on my boyfriend 's shoulder and he memorized some Japanese words using my iPhone . I usually eat cheap frozen gyoza and they tasteway different from the restaurant 's . muscular pain I always end up having muscular pain in my legs on Wednesday night . We often say that elder people will get muscular pain after a few days when they use their muscles . Thanks for reading my first diary ! In school my friends and I were watching its launch . I really hate these boring days . After I get home , I usually eat dinner and skip taking a shower . So , I will go with my family according to the schedule . We called tutor to reserve the schedule for the experiments . Today I went to a party with my friend in Shibuya , About forty people were there . ( We did n't talk to each other a lot during the party , but I strongly remember what we talked about because I was astonished by her energy ! ) He is kind of arrogant and straightforward in the beginning . His medal was bronze indeed , but I thought that he deserved a golden medal because he must have made a lot of Japanese impressed and encouraged in his comeback . He always cracks some excessive jokes that make me sad and uncomfortable . My boyfriend got a good tan , he 's okay but he looks like a person who is from another country . This system is very good . Youkan is a reward for my labor this week ! Youkan made with adzuki beans , sugar and agar . I 'll be glad to help you with your Russian or to communicate with you . I love listening to music , drawing and dancing . I was shocked to hear that . It was only a glance , but it felt like it lasted soooo long . Maybe the professor spoke so fast that I could n't catch up and understand in time . The food in the canteen is very cheap , much cheaper than the restaurants outside . I remember that I was nervous when I moved to this school . So I had to say goodbye to some of them every year ( Even though ) I do n't like to say goodbye , I can learn something from the encounters and farewells with my friends . At that time , I thought it was right and in every test and exam I paid much effort in studying them . I thought that the right sentence was `` I got a ticket to the auto show . My brother suddenly called me today . I had nothing to do tonight , so we went to a sushi bar in the Tokyo station . The owner of the bicycle was a boy , and he was watching the hands of the mechanic very eagerly . And I decided to interpret their choice in a positive way , as proof of my popularity or something . I believe in materialism . . My ex - coworker is moving to another prefecture because of her marriage . It was a very pleasant party . It occured to me that I had been given many precious treasures like memories , a familial environment and much more . Her mother is Russian : ) I could see Tony Kanaan 's onboard camera . I went to a Yakitori restaurant last Saturday with my friend . Yakitori is very popular . Yakitori is fried chicken . Revolving Sushi Restaurant Do you go to a foreign language institute ? Of course , I could n't make a wish . On the other hand , they lied , doubted , killed , destroyed , and set off the nuclear bomb . So I will retake my examination and now I 'm waiting for 2010 when students can apply to the Japonology department again . Not a day goes by without me learning more Japanese or We should show off our country 's originality and give Japan 's luxuriant culture due esteem . We can prepare a national Russian evening where we could sing our native songs , make zeppelins , translate some lines of our literature and have a traditional lingual performance . In order to make students know more about it , our school decided to hold this activity . I did n't have any headache medicine . I received some from a fellow worker . I must control myself physically and mentally in order to complete The Tokyo marathon . Maybe its because I 've been solo for a long time and I 'm lonely . So please correct my diary . As soon as I went to buy sketchbook and pencil . Because they [ we ? ] have a custom to send a letter on January 1st . We generally write `` Happy New Year `` and a picture of the twelve signs of the Chinese zodiac in letters . I have thought about drawing Peter Rabbit for a long time , so this time I was pleased to draw it . I 'm sorry I 'm not able to put pictures on this diary . On the other account , I study Korean . So would you please approve this request , too ? There 's almost no problem in your japanese sentences . But it also has some problems such as air pollution and traffic jams everywhere . Hello everybody ! I 'm a Japanese grad student ! The joints around my waist have started to ache ! I debated for a moment whether it was a good idea or not . I went to the Bon Dance Festival at the Tsukiji Hongan - ji , the buddhist temple in Tokyo , with my friend . English 2 . How can I improve my speaking and writing skills ? I conplained about my looks to my mother . What is the difference between `` everyday clothes `` and `` casual clothes `` ? What do you feel when you hear `` everyday clothes `` and `` casual clothes `` ? This phrase is very interesting because it involves many things , I think . Many Secretarys of a politician can become a politician . Today , I went to an ophthalomologist . In particular `` Sendai `` which was located near the epicenter was the most seriously damaged by the `` Earthquake `` and `` Tsunami `` . You can feel yourself getting a shrill , when you play it very well . They are helpful for listeners to know the concrete statistics and to understand the contents easily . I am looking forward to staying there . It is cloudy today , but it will be getting warmer later this week . I ca n't wait for spring to come ! I have to write a business document in English . When I was a child , I seldom had time to play games with my peers , because my parents always asked me to study . We even quarreled , just like a real family Thinking about my childhood always give me a feeling of nostalgia . What about your childhood ? Do you have any interesting experiences to share ? this is very inconvenient . Finally , I have no idea how to learn to comprehend . How to release stress So a little while ago , I went to a convenience store and bought alcohol , sweets , and some snacks . I think drinking and eating is best way to release stress . And we ca n't seem to recognize that until a certain period of time has pased . We enjoyed the lunch and I had a lot of questions about English to ask her . She taught me really well . Then she asked me to go to the Christmas party this week on Saturday at her house , and then I went to study Chinese near where I met Chayway and Wunlay . Composition 0628 , please help me correct it or provide some ideas , thanks ! ! Today , I woke up at 6 : 45 , cooked breakfast and my husband 's lunch . I was interested in American education coupled Japanese education . Last week , my roommate tried to set a WIFI in the home , but he is just like Edison who never gave up , so I just can encourage him and I cant use internet many times , but now he success to set a WIFI in the home , so now I can carry on writing in lang - 8 every day ~ Sometimes I wave my body if I hear some high tempo music at home , but I never do that when someone else is around . what was the last concert you went to ? I went to Arashi 's concert 2years ago with a friend . It was held at Tokyo , Kyoto and other places . I will go to Toronto , Canada for 5 weeks in February . For example , our State University was only founded in 1959 and its building is n't beautiful , but rather very simple . Of course this is not important . The knowledge given there is more important and what about it this is strong there ( ? ) . However Tomsk State University 's building is very beautiful . It was founded in the XIX century . But I prefer to study in our State University ( only I did n't enter there on Oriental department = = = > - _ _ - ) I bought some material there for this . Besides that there were more foreigners and I spoke a bit in English while translating what a seller said to women from Germany , but I think my English was awful : D I majored in tourism management . home , particularly in the country , people view that boys always have more I am starting to write a diary today . I 'm staying hot with a hot springs ; so , I want you to be refreshed too . Living alone is a good experience to teach you independence . However , when we live alone , we do those things ourselves , which makes us more independent . My vest favorite musician is Nightmare and Shiina ringo . Although I still make some mistakes , His life is in me . It is like a plant which grows little by little everyday . Now , more and more foreigners have begun to study Chinese . Culture is an important element of competition in overall national strength . That 's because I do a part time job at Pastel . I will go to her concert in February with my friend . It was heavy and deep and the actor was very good . Here are some ideas on how to develop your social skills . My professor open a forum so we can discuss the differences of culture between Taiwan and France . The air , the smell , the scenery , the sound . . . just everything . He talked a lot , but I only spoke a little Korean people live on rice . But , I am on a diet . many many times , my heart gets hurte by those results , but at first , I still keep my dreams in my heart , I protect it , I wont let anyone take it or kill it but its ok , I said before , I will protect my dreams , no one can take it from my hands , today I am stupid , but how about tomorrow ? I will protect my dreams . COME ON ! ! ! I tried it again and again , but I could n't get it to work . ( needs a subject ) By the way , recently I became busy . Tomorrow is Tomb - sweeping Day , so you know what will I do tomorrow . Good night . On top of that , I do n't like taking any kind of medicine that has to do with antibiotics . But I want to eat genuine ones . What difference is ' diligence ' and ' industrious . It 's very good cost and high quality . It 's very good for Londener 's , every year they have the chance to watch high quality shows . She said to me ' ' I do n't think about it much . It is just like riding a bicycle . ' ' I had headache today . Judging from these experiences , I came to the conclusion that the experience to learn foreign languages involves the reorganization of a learner 's personality to some extent . I am looking forward to this new situation My hair is now in good length . I want to be a lucky guy ! I want to win something from the event ! Furthermore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . It was about how to become a stronger woman and pursue your dreams . The doctor said `` It will take 4 ~ 5 months to get healthy . `` In the conference room , there were much more Japanese students than foreign students . After the easy explanation , the participants had divided into groups . There were many kinds of onions that I 've never seen . But around 4 PM , there were storms and thunder and we had a blackout caused by a thunderbolt . But the telephone line and the internet connection were not restored until 9 PM . Because there are many information in it and it is very helpful , useful and instructive for us . - Why instructive ? My hobby is watching American dramas like SATC , the OC , CSI , and BONES . `` dramas `` : ) In the beginning of the year , I went there with my friends . travel , cva ( conversation volunteer australia ) , wwoof , work . . . I want to make many friends whose native language is English . One more question , I want to know how the person whose mother language is English remember new words , on the other hand , how do I improve vocabulary ? What I did in the job was to visit people ` s house and ask them what they think about prime minister Also , the jury system starting next May in Japan , impression about crimes , and so on . Some people were cooperative with me but others were reluctant to answer my questions . Mothers who live in Kanto area are not sure if the foods are completely safe for their children . When reading it , I have to focus on the text as twice as much as I normally would , I comprehend , and spot a great amount of details in comparison with the first time I read this in my mother language . `` If you do n't like it I will help you burn this damn book personally , but give it a shot `` and that inclined me to try . It was hard at first but I realized that full comprehension of the text ( every single word ) gives you pleasure for reading . It stimulates your imagination to picture everything in your head and it definitely ( if the book is good ) enchants the reader . I saw people flying a kite in the park here in England . My college is going to start this Saturday . and put mp3 audio in my phone to listen . ( music ) I apologize all my friends here that used to see me comment on LJ pages because I dont have lots of time to browse their updates and see what 's new . . I like to be in touch with my friends . Have you ever considered that your family is upset when you are absorbed in your own career ? Have you ever noticed that your friends are sorrowful when you only pay close attention to your own affairs ? & nbsp ; Have you ever remerbered that your wife or husband is waiting for dinner , while you just know handle your power , and forget her or him ? Consequently , happiness need n't you decorate , or do anything . Now , after 2 months , I have many friends here . They are very friendly . To add , we are like a family , we make everything together , and we go to school and study together . I usually go to the English Academy from 7 : 00 until 8 : 00 ( pm or am ) . I 'm here to speak English very well , but now I do n't speak well . . . What sort of presents did you get ? Because there is not enough jobs for younger students . I think most countries havethe sameeconomic problem like mine , right ? I drank in my home town . now , I 'm sleeping in my customary bed . The fugu is delicious but a little dangerous as food . If the tree of Ume do n't exist in the other country , I think it 's good to write it just Ume . I have a question , I do n't want that to happen , especially both of them are the positive characters of the show . It seemed that this summer was the hottest in the past 100 years . I want to go to the beach and swim , swim , swim . I 'm really sorry that I could n't log into lang8 for awhile . And before that , I will join the business competition again ! It is the same one that I joined last year . as ever ! lol Yeah , I know that my writing is n't so sophisticated but because I am going to the competition in Beijing , I have to brush up on my English skills ! Another favorite thing is playing the guitar , eating snacks ( especially chocolate ) , dancing , watching movies ( dvd ) and so on . I think they are on the cruise and having fun now . I hope they enjoy their trip a lot . Anyway , Halloween is just around the corner . They are my treasure . It is this class for sleeping . because , this class is a trivial for me . I will visit Greece on October . Earlier , I researched Halifax by wiki ; then , it was written as city , but on another web site was written there is country side . Of course , they were the tailender . Although I 'm not their fan , I 'm glad that the efforts of an underdog are finally bearing fruit . YAKUZA appears in this game , A yakuza man 's tattoo is the dragon , it is the origin of the title . I like Pikachu the best . But I also like Raichu . Do you know about Raichu ? It is Pikachu 's older brother ! Nevertheless , it tends to be stressful since it is not a reliable service , and it isn ` t always on time . I 'm going to t write what happened during the day and what I think about those things . I have the volunteer work for rural communities next week , in which the participant will live using ecological ways . And I watch CNN news on the Internet ( even though I can hardly catch ) . My most favourite cartoon is BERSERK . Unable to use Android phone / Ipad to use Lang - 8 ? ! I ca n't help people re - write their articles / sentences . after few days , I found another thing , I ca n't use an ipad to write corrections either ! ! At this time , Oita city in Oita PREFECTURE and Fukuoka City in Fukuoka prefeture had high temperatures , setting a new record . Before starting the games , we were divided into four teams . Thank you for always correcting my mistakes . I went to the English conversation club . I felt happier than usual . Chris invited me to the language exchange party which he will hold on March 21st . Silence is Golden I and my friends often talk about other friends . We are going to a restaurant . I 've started standard Arabic , but I only want to speak the Algerian dialect , so I 'll practice it with my father or my family when I go to Algeria . This morning , all the grass and trees in my yard looked so good . I have a soccer class every Friday morning . Maybe because I do n't how to set the perfect mood with my camera and the tripod . Mi piace la cucina italiana . Allora , voglio andare in Italia e mangiare la vera cucina italiana . Besides , I am awfully curious and willing to learn , so I quite often get absorbed in philosophy , psychology , history etc . Then they pray to their god for a happy new year . but sometimes I prefer to be alone in my room - - I love how peaceful it is ! I listen to songs in English , but I can understand text only with an online translator . . There are no large buildings or roads , and there are no subway stations or tunnels . So the major problem in the area is traffic jams early in the morning and evening , I mean rush hour . In addition , there are few restaurants . If you go to the same restaurant often , do you feel bored of that food , since the taste is the same and it 's made by the same chef ? I feel bored of the food I 've been eating , same as my boyfriend . We have an idea to find another restaurant . We hope we can find a good restaurant with delicous food around our house soon . Thank you for helping me with my English . I think that it is a very interesting , intelligent , and wonderful country . In the future I will visit London , Oxford , and Cambridge . We can not choose what happen to us , but we can choose our attitude towards each thing . I think it 's no problem to you who are graduated from the famous university and have so many working experiencies . The next is to search for an appropriate job which can satisfy to you . I was in karaoke for 11 . 5 hours yesterday . . . . I went to karaoke with my friends yesterday ~ For my classes are canceled due to the flu ~ Everyone was free during the same time and the karaoke called Jankara is 50 % off these two weeks ~ So we got up early and began our nice day ~ After that we went to karaoke for about four hours ~ We sang many songs in different languages , oh ~ I forgot to say that my friends are from Japan , Thailand , Korea and Russia ~ For this reason I was able to listen to a lot of amazing songs that I 've never heard before ~ Especially since I found Korean very cool language ~ it sounds amazing ~ Maybe I will learn Korean some day ? ? ? ? ~ hahaha After karaoke with my friends from university ~ I went out on my first DATE with my dear MARIKO ~ hahaha ~ She is the chief of restaurant where I worked part - time for a very short time ~ She is like my older sister . Actually she is only one year older than I am ~ also a very congenial colleague while working ~ I have learned much from her ~ I really , really feel very lucky to have met such a nice friend in Japan ~ We also took PILI for nice keepsakes ~ We ate SUSHI for dinner then I went to karaoke again with Mariko ~ This time we paid for 7 . 5 hours at first . . - - Including `` free - time `` ( From 10pm to 5am all you can sing ) . . . It was the longest time in karaoke for me . . . How can I spent 11 . 5 hours on karaoke in one day which only has 24 hours . . . . I want to study once again . It was beyond my ability . I 'm just enjoy the sounds but not the words . please give me some advise . hi ^ ^ japenese friend . . I 'm restarting an education market . . would you give me some information . . The Shawshank Redemption I saw `` The Shawshank Redemption `` . I especially like the movie 's last scene . It is very impressive . Anyway , I think Korean people love to sing . Finally , I will talk about the political aspects of sports a little bit . I thought it recently . Maldive has recently become popular for honeymooners . The sky and sea are absolutely blue and so beautiful ! I think Japanese food is the best for teenagers ' health , because it is nutritionally well - balanced . It is considered to be good for our health , and is used for many dishes . I want to make an American friend . A Japnese friend of mine called me this morning , almost crying . I will try my best ! ! ! I was planning to study mathematics and to write an essay . But I quit and just studied English today . This is my first daily diary on Lang - 8 . ctually I want to communicate with foreign people by myself . I have to keep studying English ! career as a drummer . practice every day in order to be a good musician . I do n't play like I used to , but I always In the summer I , as well as many American and Russian teenagers earned some money . Osaka ( in Japan ) was chilly yesterday . But my old coworker said , `` Today is hot . `` Intercultural com . Every Tuesday , I join a class called ' Intercultural Communication . ' I went a restaurant with my friends forbreakfast . So , we decided to go to a restaurant to eat breakfast . We arrived at the restaurant after few minutes . When I was 12 years old , I started to like him . I want to be excellent at English . The weird [ ] atmosphere { ? } of the lab one in I which I can find a [ ] clearer answer in the future study said the speaker , `` what is it that makes you professionally proud to be a forester ? `` and , through [ ] good management , [ ] each tree in this forest will cost only I studied about hundreds of words and some basic grammar today . At that time , I was 17 years old , not too young . Now I want to visit once again . This is a traditional / historical Japanese spa and the dress code is to wear a Yukata , which is rented by the spa . It 's important that people know the truth , about other peoples feelings , and trying to understand it . I want to buy a refrigerator . I also love learning about differences in culture between my country and other countries . But still , I ca n't believe this situation . my husband has gone Yesterday my husband went back to Tokyo . We give thanks to all laborers . I live in Shanxi province , which is located in northwestern China . There was a big eruption column and sulfur dioxide at the volcano . Love sometimes means bearing and understanding each other . Colin Firth 's films make me forget about the fear of the earthquake . But I like his movies like Bridget Jones 's Diary and Love actually . And suddenly I wanted to see Colin 's previous films . So I borrowed ' A single man ' from a DVD rental shop . It was shocking to me . In the film , the use of colors are very beautiful . I love the scene that George changes his sight at the end , even if it 's not for eternity . I really looked forward to seeing it again . Because that day there was an earthquake But many people are still missing . When I saw A single man , I thought it was just fiction . There are still a lot of aftershocks , tsunamis , 20000 people missing and a fear of radioactivity . . . This time my impression of the film was totally different from the first time I watched it . This time , I did n't feel sympathy . I did n't want to live in the panic and nightmare any more . I had to look at his despair objectively . Because now it 's not fiction . It became an unforgettable film for me . And I will also remember now I see the world very beautiful like him . I used to study the preforming arts in ( my ) university . I 'd like to learn beautiful English It takes around 30 minutes by train from Nagoya station . INUYAMA CASTLE > Nobunaga Oda was one of the most famous warriors in Japan . Both warriors are also very famous in Japan . We can see 13 floats which mounts puppets at Inuyama Matsuri . The floats are important national properties . The puppets on the floats are called Karakuri Ningyo They is similar to Marionettes . The difference between Karakuri Ningyo and Marionette is I am a student and want to learn English . I enjoyed talking . The price of potato chips has increased little by little . I 'm studying English forTOEIC Test which will be held in the end of this month . My weakness is Reading , especially Part - 5 ( grammar ) and Part - 7 ( long sentence ) . unwanted pregnancy and spread disease . However , today followed the same routine . Actually , I have been working part - time for it . When we almost finished our meal , I asked him if I could touch his hands . This is how I broke my new year 's resolution within a week . Too sleepy to write Yes , I took many pictures but now I can ` t do anymore . but I have written about this medicine before . Today 's topic is comparatively easy to write about so it took me 37 minutes to complete . The aftershock has faded out but another problem is coming . This plant sends electric power to large areas including Tokyo everyday . Because of this , Tokyo electric company and the government decided to share the power to not blackout all of the areas suddenly . Actually , it 's not very hard to listen to English which dubbers or actors speak because they are professionals who speak English , so their English is very clear . However , Canadian people , excluding dubbers or actors , speak English in a casual manner , so their English is very fast , ambiguous , and changes sounds . For example , `` What are you talking about ? ? `` sounds like `` Whada ya talkin bou ? ? `` . Ashita ha ichi nichi juu , koko ni ha imasen . Watashi ha Scout no atsumari ga ari masu . It came out a few months ago , and it 's based on a true story . The story is about a bride who has only a year to live because of breast cancer . So I do n't know the whole story but there was a phrase that the bride said during the movie . That phrase just shocked me for some reason . So I thought I should be more thankful to be alive even though there are so many things that upset and frustrate me . But still , there are a lot more chances to make my life more meaningful and enjoyable on my own . Recently , I wonder how learners are able to acquire listening skills in English . The foundation conceals my scratch completely . I watched anime during break time . In the anime , many - characters have same eyes . A report which would take less than two minutes would take me more than 45 minutes to finish . listening to the standard VOA will be a piece of cake . Lately , I 've come across a lot of articles and videos concerning harmful ingredients in shampoos , soaps and other skin care products ( such as parabens , sodium lauryl sulfate and many more ) . My resistance to using English has decreased than yesterday . He had a skeleton body , so I thought he was god of death ! Harry Potter and The Order of The Phoenix is the fifth instalment based on a fantasy - adventure , same titled book by J . Acting is reasonably powerful , but it may get better in subsequent instalments . Even though now I try to read as many kinds of articles as I can , I should try more . This is my first diary on this site Today , I was bored because I did n't have anything to do and felt strangely dull all day to study something , so I wasted my time today . Hello , my wonderful friend , it 's a bit cold around Bangkok again today . Happy Halloween costume contest ! ! ! Our private English School held the Party near public hall . One of them became KAIBUTU - KUN , which is japanese anime caracter written by FUZIKO - FUGIO He put on yellow shirts and red and blue hat and checkered pants . I was interesting and amazing / amusing ! ! I like to enjoy it and imagine that I 'm the lucky girl who is loved by the handsome boy Oh , reading comic books is the best thing in the world . this shop is a chinese noodle store . I think they fit in the atmosphere of anime well . Joe is a handsome boy , living in New York , who loves Japan and really wants to get married to a Japanese girl . But now Japan is in its rainy season . By the way , I 'm going to Bali island this Friday . I hope that when company begins to recruit new members , he can tell me about the job opportunity . I am a computer programmer who uses Java language to develop programs . I mainly make websites . These days we are relatively free , because the project are almost complete . So I use my free time to learn English especially comprehension . First , I draw an outline of a face then the eyes ( the eyes are my favorite part ) . After I finish my works , I 'm surprised at the time that I have spent drawing . I was very surprised that her Japanese skills have improved tremendously . Because they are scared of mistakes . The biggest difference and perhaps most interesting new feature is called `` focusing attack `` This is the new system used in Street Fighter IV and is awesome . It is just a simple way to attack but can charge and depending on how much you charge , you can break the opponent 's guard and make them vulnerable for several seconds . So it gives you big chance to reverse the situation by hitting them with massive combos ! ! These days , it is VERY clear and fine . He was interviewed in English , his English was good ! Its good for my English studies , and we talked a lot about ourselves to each other . I particularly like Michael Jackson and Luther Vandross . But their songs are very difficult to sing . It 's soooooooo cold too ! ! > < so the streets are very snowy . I want to improve my English . . . . . Yesterday ( February 3rd ) is `` Setsubun `` in Japan . Setsubun is Japanese traditional culture . - Oniwa soto Fukuwa uchi . - During the 7 hours journey , I felt lonly , when we arrived at wanjiang station , it was nearly 8pm . I think that it is difficult to communicate with someone in english . Today , I went to stadium called Saitama Stadium 2002 and watch some soccer game . This game was very incredible and it was very amazing . Because , they are passing very fast and their dribbling skills are so great . Last , I saw Thailand vs Saga and it was 0 - 0 so it turn to PK ( penalty kick ) and Thailand won . Today , was really hot but , I am proud that I could watch the game . I do n't know why I got up at this time . I think the answer is VANITY . Today my friends and I went to the forest . I have had a stomachache since 2 weeks ago . They did some tricks . ( ? ) The skateboard hit my leg . My favorite phrase What is your favorite phrase or words ? It is the latest model . Technology is wonderful ! The first time I took a needle in hand was when a was seven years old . Now I can sew almost everything except men 's coats , because I have n't even tried to do that yet . In the first photo there is a denim jacket that I made for my husband . In the second photo there is a handbag that I made for my mother . I have been member of Lang - 8 since the beginning of May . Honestly , I haven ` t thought that the corrections would be useful for my study . Depending on the topic , I often consult dictionaries . My voice was hoarse all day long , and our customers could n't hear my voice . I went out on business this afternoon to deliver some tickets to our customer . which is made of wheat flour and contains some vegetables , cheese , beef , pork , egg , and so on . Congratulation me ! ! My previous PC was soaked by water , resulting with some ( * unresponsive ) keys . I 'm very sorry I had a cold . The importance of English toefl ibt writing beginner 's essay ( question ) Use specific reasons and examples to support your answer . ( my opinion ) please check . So I had no problem communicating . I 'd like to recommend going to Korea . Until now , I have watched this movie three times . Even though a Product is of good quality , it is necessary for it to beadvertised . I have a habit that observing ( watching ) advertisements which introduce the function of the product and how to use it . I remember that my cellphone was broken , a few days ago . The salesman introduced me to a lot of brands , but I was puzzled about the brands . So I think it is necessary to advertise . But , I 've suddenly fallen to the bottom . . . Pushups on the toes for 30 repeats because I like foreign musicians , so I want to understand what they Also , English skills are necessary to communicate in the world . It 's important in business and other things . I 'm looking forward to learning it . My favorite writer uses Spanish . I often use this tool , but I also use the ordinary text editor . We like `` The very hungry caterpillar `` , written by Eric Carle . Now I am studying in Saint - Petersburg . At first it was difficult to live in a big city for me . I am studying in Pedagogical college . Twenty years ago , the Japanese volleyball team was very weak . I hope my favorite sport , volleyball will be loved by every Japanese again . It is especially so for lunch time menus . Mitsubo ( Pig - Yakitori ) is cheap and traditional . Kuri ( Japanese Sake Bar ) is small and excellent . Last week , I had the flu and a fever for 4 days . And I think I 'm going to study abroad during spring vacation ( February or March ) . Some say he was an actor sponsored by a samurai and that he was painting as a part - time job ! I should be more careful when I choose meat ! As people say - a new start is the beginning of success The new year is coming . Taiwanese people are always open to people from all over the world , so travelers can feel the Taiwanese enthusiasm very much . I do n't remember what made me decide in the end ; why I choose engineeringor what I was thinking about . Harry Potter ! ! Last Friday I went to watch Harry Potter , a new movie , with my mother in the theater . So , Harry Potter was very interesting ! ! Although I watch the Harry Potter movies , I have never read the books . Do you think I should try to read the books ? Next , we had a lunch at an organic restaurant . I can curl my hair well , but when I first tried it my hair was hilarious . which , if students who attend it at last pass it , will get them the highest scholarship of our college , but they must be in the meeting room at 8am . also got plenty of practice in society . I remember t I was disappointed with my host father in England when I heard this question . I really felt no one in the world cared about my country at that time . I really loved the photo where you wore your hair in a bun / ponytail . After that , I developed the system using mobile phones . I am a little sensitive There are a variety of sad and lonely characters mind . Nothing too special , but I 'm trying write in English about my life ! It 's my first time doing this kind of job , so I 'm really nervous about it . I 'm afraid my customers wo n't understand my explanations or introductions . The first sentence is quite awkward to me because there are no such forms in my language . Hello , everyone . But this was because I was a student . I learned English for school exams . Because I was not learning English for myself , I have bad skills in English . I think that English is a tool . I can use it to search for much information that I want . I like cherry blossom . They look like other kinds of tree except in Spring . This party is sponsored by the English conversation school that I go to . About 70 people including twenty foreigners will take part in the party , But I 'm not used to talking with foreigners , and also my English is poor . I 'm looking forward to the party , but I have a little uneasiness about if I can communicate with foreigners well . I hope to make friends with foreigners in the party . I wish I could abandon this work and go to the sea right now . : ( This proposal is quite controversial . People against the law went on strike . This is because the number of elderly people is much bigger than younger people . I thought it was true . This is the grilled pork with spicy sauce and garlic and kimchi ( korean pickle ) and lettuce . Finally I returned home at 10 : 00pm , and I had an egg and chicken on rice for dinner . The virus will hijack your personal data , which is stored in your Iphone , if you open the text message . I believe one thing : exchanges can be implemented in only a situation where both things exchanged have the same value At that time , I could n't explain my opinion well so . . . Your relationship with someone will continue as long as you notice it . Perhaps some want to ask me why I worried about my relationship with my girlfriend as I wrote several days ago here even though I believe this . But it 's been changeable these days , which makes me uncomfortable . . . I must confess that I am gay , and I keep this a secret , because I do not wanna show my private life to any body . I can say nothing , because it 's their lives , and none of my business . And I hope they have the same feeling towards me : `` do n't bother me anymore ! `` The first time I found English to be very interesting was when I had the chance to chat with a foreigner . There are correct sentences which are not generally . used so I hesitate to correct . There are incorrect sentences whose original meaning I ca n't understand . I paid money for my English lesson , so I 'd like to take a lesson with punctilious teacher . It was very beautiful and fantastic . Today I went to the travelling health center . because it is required at school . As I said above in the title , I finally got a job = ) But the surprise is I am not going to work in Korea , I am leaving for Vietnam next month to work there . Today , I was sent to the hospital by ambulance . According to my doctor 's report , it was because of tiredness . We need to have a big smile everyday , and enjoy our life . Nonetheless , after the Meiji Revolution ( Restoration ) , Japan grew as one of the developed countries in the world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glamor ( glory ) in the Meiji Era when Japan was the king of Asia . The landlord ' son is very close to us because we are the same age . We had to do something in the room , so we stayed in our room for 1 hour . His advice makes me remember various things : consideration , cooperation , friendship and dreams . My boyfriend lives alone near university . They are authors of several book , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'm climbing the mountain because [ / BLUE ] the mountain is there . . . I do n't know why I go there . Well , there is one reason to climb up to the summit . . Then , Today I went to mountain in order to recharge my will and clear my head . I am not sure if it is a good idea to start by memorizing words . I cant believe that till now . Yesterday , I went shopping inHarajuku ( Tokyo ) . Today is Coming - Of - Age - Day which honors young people who have reached the age of 20 and become new members of society . This day , for many people , is a public holiday in Japan . On Friday night , I go out drinking with my friends or change my gel - nails or watch a DVD at home , etc . . One is about psychology . I have nothing to do in my native city so I 'm trying to learn Italian and Japaneese . what I wish most of all is starbucks coffee . . There is a big festival in my home town now . There was a very strange smell that it was impossible to breathe . I had prepared for a whole week and I failed my test due to my headache , nervousness and awful mood ! At the 2006 GP final right before the Turino Olympics , she was able to perform triple axel jumps perfectly and won the gold medal , which catapulted her into the limelight . I like JoJo very much because the characters are very positive . Both villains are very vigorous about realising their own desires . The Author of JoJo said that JOJo was a song of praise to live by . Anyway , I 'm going to go to the dentist near my house tomorrow . Next morning , I headed by bus to Weed , where the college is located I was amused that the scenary was so beautiful . or ; it 's similar to the movie `` River Run Though It `` . Weed is much smaller village than I expected Berkly , I luckily gotaccepted toU . That fascinated me so much thatafter that class I spent as much time as possible in lab programming in java . ( Of course , my GPA is getting lower than before though ) At 10 : 00am , I showed the productions schedule to our customer by e - mail as usual , but the special thing was - - - I invited my PMC to join in my e - mail . I thought if they also got the schedule maybe they could help me to push the productions . On the other hand , my customer could see we were trying very hard for the new project . Can Manga tell us about different cultures ? I think Manga can tell us about different cultures . I want to improve my English . It 's made so we can enjoy various PC media productions and powerful performances . It 's japanese a traditional wear . Hello everybody , I would be pleased if someone correced my bad sentences . I 'll introduce myself a little . The roses are blooming in my garden now . Is n't she pretty ? We , who live in the northern areas , have been waiting for spring with excitement . That is kind of difficult problem for all mankind . People tend to use the QQ in China , not MSN . They are supposed to have many tests and hand in papers . I see the students , studying so seriously ( during thier class ) . And also I know that JLP teachers spent so much time for preparing for this summer course . Do you believe that ? I 've never written my journal in English , so now I 'm thinking a lot about how to write it using the right words . Because of this situation , I swore to learn English as well as my roommate . Now I 'm living in Taiwan , speaking in Chinese . It 's a important test for me . I want to study English or another language , so please help me . haha ^ ^ According to my memory , I might have wrote one ( 1 entry ) about 3 weeks ago ? I met my friends from my high school class , went camping , experienced heart - break ( s ) . . . I do n't know the case of foreign countries , in Japan many high school and university students tend to start their first part - time job in it . It was dangerous ! I ate breakfast swiftly , and then I went to my grandpa in his room and we both watched the game . Brazil is known for soccer , but when it comes to medals and ability , we 're better in volleyball . The other two are already known , and they are also great ! , Fortunately , Brazil won the game : D Even though I 'm always criticizing my country ( I ' M NOT GOING TO SAY ANYTHING ABOUT THE FIREMEN ' PROTEST THAT HAPPENED TODAY . . . ) , I feel very proud of our volleyball time , and during these games , I felt like a patriot momentarily ! The reason why I decided to enter this community is that I want to go the USA or the UK . In other words , they can control our preferences about fashion , music , or so on . By using commercial films effectively , some companies have succeeded in selling their products and making large profits . Television and movies have influenced so much that they subtract people 's character from them , making everyone homogenized ( the same ) . When it comes to the arts , it is necessary to foster and utilize our creativity . We did karaoke , played games , and drank alcohol . It was strange because it was an unfamiliar sight to me . Recently I 'm taking english lessons . Unsold food is disposed of . I studied abroad in Brisben , Australia for a month , Please help me EVERYBODY ! ! I was reading about the continuous tense . I will read about English grammar all day . However I do n't know exactly if I should read Thai books or English books to understand English quickly but I feel I learn slowly when I read thai books . I am really slow to understand English but I must do because I would like to test well at IFAL . I will read both types of book . On the ( / that ) day , girls give sweets or gifts to not only their boyfriend but also their male friends and family . It costs two hundred yen ( approximately 2 . 2 dollars ) for a 200 millilitercan . Even if your comprehension in Japanese is 10 % , you can improve it as long as you retain what you read and keep on exercising . Some people do yoga , skateboarding , tanning and so on . I hate some kinds of bugs , cockroaches in particular ! ! Hi . I am a senior student ! I want to improve my English studies ! How about helping me ? I hope we can get along well with each other ! Recently , the increasing number of students ignore studying Chinese , but they spend a lot of time on studying English or other foreign languages . Analyse the cause of students who overlook studying Chinese , there are a few reasons why : firstly , with the fast develop of China , more and more companies have an international trade . Therefore , the people who are good at English is very essential . UK , Italy , and France were for high school trips and I went NZ to study English for about 4 weeks . Last weekend , I went to Hualien with my family - father , mother , my husband , and my son . Maybe we will go to Farglory Ocean Park again , when my son grows up . Maybe it 's just me , sometimes I ask myself , am I really that bad ? Perhaps . But I keep correcting it . These years , I 've tried my best to become a nice man . I 've done so many things that I never thought before . Like I suddenly turned into another people . But I know , no matter how hard I 've been working you still do n't belong to me . You are so smart and too beautiful for me . Speaking another language changes your character ! ? I wish he will be happy everday and gets a good mark on his final exam , and has a positive attitude in his life , has a healthy body forever , has a satisfying job in the future , and also has a nice mood everday . I could y immediately receive some helpful answers from kind people ! A large number of people are suffering from the damage of the tremendous earthquake , especially the tsunami and problems with nuclear facilities . I hope all of the people live happily like they used to as soon as possible ! ! I have KOTATSU in my storage . I 'm really grateful for this . I 'm grateful to get paid for doing something I love . Last week , I met my high school friend who is working at a Public corporation related with promoting Korea culture . To be honest , I do n't know how to describe my present feeling . I must improve my English well before the Asian Games begin . My father 's unique hobby . My father has unique hobby . still working to reach his dream in a different way . Of course , I record these animation by SONY 's HDD & Blu - Ray deck . I am sure that my wishes are going to come true . The first time I found this website I was so happy because my English is really bad and I need to improve it . I 'm so afraid that I will do badly again . I hope joining this website will help me . Indian traditional music at a Japanese temple on ( a ) Sunday afternoon . . People are unaffected by politics now , so the prime minister apologized to the nation . Changing the leader in the short term is bad for the nation . If I was a Singaporean , I would definitely go to vote everytime . I went to some foreing countries when I was a high school student . I intended to learn mathematics , so I spent a lot of time doing mathematics and I slept very late yesterday . Now I need to have friends who want to study Chinese with me tostudy language together . these sentences might have many mistakes , but never mind ! I hope I grow up to be a good English speaker . You know , we have a rainy season that is called `` Tsuyu `` in Japan . Yummy . Fortunately the porter was a nice women , so she allowed me the step inside the building without my card . I went to Vancouver for 2 days . Hello , my friends . I am back . if you want to know more about the Chinese culture , Maybe I 'll spend GW watching these videos ! Many tourists came to drink them . I drank alcohol too much , but only today . It is my one of favourite songs . I knew the song was covered , but I do n't know who 's song it was originaly . Because I could n't understand what was written at all . It is usually written in archaic Japanese and modern Japanese . Archaic Japanese sounds poetic , so I like it . In Japan we celebrate Hinamatsuri for girls on the March 3rd every year . I can listen to great music beside the beautiful mountain . I hope you can correct my writing and everything . I 'd really like to learn how to write professionally , I mean with nice words = P As a matter of fact , writing a diary entry takes less time . We sent a card to congratulate them to the church My nose gets stuffed up , and my allergy medicine makes me drowsy . The differences between Japanese & Canadian culture I have found Today after school I went sightseeing with my friend . We went to Buckingham palace , Big Ben , Trafalgar Square and so on . When we went to Trafalgar Square , I found a statue of a lion . Today the temperature is so high , it feels very hot in the dormitory . Yesterday was the last day of my Military service . It was a very happy end for a long hard years work . I have passed through many rough situation . Korean town in shin - okubo I worked at my college then had an interview . I did n't do well on the interview , though I was n't surprised . I 'll just wait until everyone finishes finals . After bodyboarding , I stopped by the convenient store . I bought the grilled chicken and a cream puff . I think I will continue working here for this month and then I will look for another job . The 1st word is ' I ' whenever I speak English or I write a diary in English . I went to hot yoga class yesterday . I had a muscle ache . . A tidal wave is a set of waves that rise suddenly and go back suddenly . This is my first diary in English . When I looked through the diaries written in Japanese by foreign people , I 'm surprised that so many people can write Japanese with Chinese characters . Therefore , I tried to write the first diary today ! What is the best way to handle conflicts ? Cultural differences often cause confrontations . Even in a classroom at school , there are some cliques . When we are in a conflict , we tend to regard our own opinion as the right one . Winter sporting goods shops are especiallypopular now because the Vancover Olympic just started . As my husband is a snowboarder , he would n't have stopped buying snowboard goodsif hehad beenthere . Which do you think is a better source for information : the internet or newspapers ? Therefore , I believe that the internet is a more essential tool for the sourcing of information . During the Mid - Autumn festival , I went to the western part of Sichuan province . Mountain roads are difficult ( to ascend on foot . ) Recently I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . However , the teachers in the new oriental school feel more comfortable to talk with students like a friend , and some of them even act as matchmakers between students . Marysville , a former gold - rush town , was almost completely wiped - out , and witnesses said the fire spread quickly , engulfing one house after another . Hey , everyone ! my memory of my childhood I broke the window in the classroom when a few of my friends and I were playing with a soccor ball , sprayed classmates with water from a hose It is that some of my friends and I had been hard on him for few years . Tasmanian salmon is very tasty OR delicious . And I had 8 pages of a paper due on Saturday , so I could not sleep on Friday night also . A University life has started and I 'm enjoying it . There is a coincidence , I just watched a TV show about the multilingual policy in EU , and I found one of the professors from my university back then in the show explaining the current situation of languages in EU , 20 official languages and many other minor ones such as Catalan and Basque , and also the big influence of English . I 'm subscribing to the Nikkei shimbun . So I believe the language barrier is to be overcome soon , and what is important is not ( one 's ) nationality , but what he or she can do for Japan . When I feel pretty bad , I get sick on the train easily , so I decided to be absent from the university today . My husband has been living away from me and my first daughter for his work . Yesterday I checked metal structure radiated He ions with TEM which is an electron microscopic name that can show nm size . In north of Japan , Hokkaido became cool recently , so I did n't want to study until late . I only had one interview till now , but fortunately I got the job offer . Actually , I 've thought of how to study English these days . As I was listening to them on itunes , I looked for the jacket and the booklet that should have been somewhere on my shelf , but could n't find them . I have n't been studying English for long . Of course , when I have the time and if they want to have a conversation , I try to practice my English . That opportunity is really rare because the people who want to converse usually want to talk in Japanese . I should do what l really want to do . I took part in the orientation of the English class . I took part in the orientation of the English class just 45mins ago . So I was asked some questions in English from an American Teacher . I am studying English . . To make most Korean sauces or Kimchi takes a lot of time . I heard Austrailia does n't have winter . Korean people consider that courtesy is very important . But it also puzzles my grandpa ; ) So he came in her apartment with a beautiful bunch of flowers . She wanted to put the flowers in a vase with water when she noticed that in this bouquet of 8 flowers . . . I 'll write an article a week ! And the paid tax is used to protect the environment by a municipal office . no damage during World War II . My breakfast these days is : dishonest , disappointed . . . Today I went to lunch with my boyfriend . He only told me my mistakes , what I did , and at last he said to me , just laughing with small talk or thinking deeply Hello , ladies and gentlemen ! This feeling is not consistent with the volunteer spirit . If I can control my emotion , I will be released from my pain . Must you ensure that you live in a real world even if the real one is much harder than the illusive one . Doraemon tells Nobita that every child whose IQ is below the standard level is fed with nutrient liquid and lives in a modeled world . Her only friend is her pet : a rooster her father found beside the highway . But fortunately , he has a nice neighbor , Ivy . Max also has a pet fish , Henry . He likes catching flies as fish food . They just like two parallels and never think of that they could come across each other one day . After being through the most miserable days in their lives , they could finally let it go . Diet failure ! I hear that dieting seems to be a failure for people who do n't really exercise . I can get good results because I like to exercise and do martial arts training . I think martial arts is a good diet exercise because it makes you sweat all at once . Weight training is a good diet exercise too but I get bored with weight training right away . The photo in my profile was taken at Takadamatubara , which the tsunami hit . We can do anything . Old men and women played table tennis They were very funny and cute eldely people . I did n't practice to speaking the foreign language much . For , at first , I 've decided to study for getting a qualification of bookkeeping . All the members say `` I think it was a good choice to join this class and I 'm very happy now . `` I think so too and I should continue to use English in ( my ) daily life : ) I was upset and disappointed . `` Lottery ! `` he said , and his answered disappointed me ! ! ! As soon as we arrived , he bought `` LOTTERY . `` I felt like a million dollars ! I felt like jumping for joy ! My computer has had a problem for three days . It 's conceivable that it will lead to an argument or even a fight if someone abruptly turns off the TV just because he or she is annoyed by the noise when other people are watching the TV in an airport , for instance . I 'm very curious about cross - cultural differences in sense of humor . The other example is the telephone system . All evolution of technology has made our life better but at the same time we should realize we are gettting to be lazy and reducing our ability by using our inventions . I want to be a human being myself ! ! Nihon e iku tochuu desu demo michi ni mayotte shimai mashita . Shizuoka is safe and has a relaxing atmosphere . So , I 'm always waiting for you to come to Shizuoka to enjoy relaxing weekends ! ! After his parents divorced , he stayed with his mother , but she remarried and divorced again . Some prefer to listen to a lecture by the professors . The following , are the reasons for my preference : However , with the development of discussion bring great humour to our education . Just a typo right ? A good example to illustrate this is that the ability of analysis will nurture through the discussions If I ca n't get a job here , I 'm going to Thailand to look for a job . I used to go shopping at the home improvement store called D2 which was damaged . The sweet and the bitter of life made people more significance . Let the unique girl with good luck come back to her hometown . According to the weather forecast , it would rain so I was uneasy because the higher the location the lower the temperature became . So , we decided to go to the Otaru aquarium instead because my daughter likes aquariums very much . I am distressed by many things and I have no vigor . . . : ( Finally he was unable to stand my behaviour . When I say I won , it 's only a little bit of money . Therefore , I just get bored since they do n't have enough time to chat with me except one friend who is from Canada ! ! ! Now that I 'm thinking what to do to spend time learning English productively aside from chatting with my friends through Skype . If you think your my friend , just chat with me ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I 've been having busy days even though my big test is finished . Hi , I just started Lang - 8 . Yesterday I arrived in NY , and I saw lots of words I 've never seen , but I could n't remember what it did mean . I took sleeping pills because I 'm an insomniac , but still I could not sleep well . I tried `` Tart Cherry `` supplement lsat night , so I slept like a log this morning . `` Tart Cherry `` worked . So if we make a list of qualities of a good neighbor , the list would begin with these words : they do n't ~ , they are not ~ . The cup DID n't have a handle and it was slIppery because of water . In Japan 's English class ( several years ago ) , I was taught that the two sentences below had different meanings . And the friend asked me why the sentence `` He has ( never ) gone to Japan . `` is incorrect to express the same meaning as 1 . thx ctenor and Sadhbh for their corrections ! ! It is unbelievable . I appreciate it . And you make me interested to write a diary . The other day my close friend called me and said that they are going to have an appointment today and also said they may go to the restaurant . I felt annoyed because they did not ask me to agree the date and after that when they had agreed the date they However , it is not effective with those who have complicated work such as creating marketing plans , planning strategies , analysing loan targets . . . The view outside was really nice . blue sky , the wind was cooling , the air was fresh , and the leaves were golden . I like the golden autumn as it uplifts my spirits . I 'm studying ibt to improve my English skill but it is very tough for me , especially writing section ! Some quizes are required to use all skills , so I highly recommend students who wanna improve English skill to study ibt ! Recently I 've been watching foreign films . I conducted a series of experiments with / on concrete . On the clothes floor As I entered this market , I felt like I was in a old factory , and it was really cool . It was about the promotion of a certain consumer good that debuts next fall . So it 's too early for celebration . ( A nabe party is a party where you eat from a Japanese style hot pot dish with everyone . ) It is a local speciality of Fukuoka . It was a really hot day today ! I thought I would see this movie with English subtitles since many people said that movies are useful to improve your listening ability on the Net . Although my opinion resulted in a shallow thing , what do you think about the saying `` No man is an island `` ? I sold a CD set of my business teaching materials I used to listen to for 20000yen . There were so many people , screaming , and yelling . How does it feel , hiding a secret ? I used to hear that some people tell too much about themselves that their house ended up being robbed or their family members being kidnapped . Whenever I visit another country , I enjoy a unique experience . that was totally ridiculous and awkward . yep , definitely 11 more months , though . I was surprised that its pronunciation is good . So recently , I have n't rested for the second day . He always introduces many interesting music \ movie \ magazines to me . Hello , my wonderful friends . I am at home right now , and I have some things to do such as washing my clothes . I did not wash them for a while so now I need to work hard . I was only writing something which happened to me , because I was n't very inspired to begin with ; ) Maybe I 'll try to write the plan of my essay next time ; ) I hope my English is n't bad , I do n't know if it 's correct enough or not , because I really want to travel , I thought about a sabbatical year in US or UK ; ) I said , `` I 'd like to eat a special kind of food `` . unadon ( grilled eel on the rice ) . . That day was my birthday . So I decide to eat unadon as my birthday present . ( This is from the lyrics of High School Musical ) Sometimes the symptoms come up days after the infection is caught . So how can I convince him to take leave ? I heard winter in Europe is kind of gloomy , is that true ? This is my first journal . I notice since I came here , English is really important . I appreciate the beauty of language and pledge to myself that I will read my favorite foreign literatures in their original languages . My favourite quote is Russell 's three passion of life : the longing for love , the search for knowledge , the unbearable pity for the suffering of mankind . Well , it 's terrible to accept her love with much care . She put the fish in the water and boiled it , then gave it to me with a big smile . For example `` The mad prime minister Asou Taro lead our economy more badly `` , `` A younger son killed his family with no reason . ( I have never thought about it until I was 20 . ) `` She is three years older than me . She was a girl born in a wealthy family . She said she found a good Chinese restaurant a week ago . The Chinese restaurant is located in Ebisu . I like thinking about how should I take pictures to make everybody interested . Can you think about what 's the difference between them and you . But sometimes I forget to do so , so I think I should try to do something again . I hope this website will help me with my English . Yeah my nephew has finished using the computer now . I was really surprised at the last diary my friend corrected . Gay Club ! I went to a Chinese restaurant in downtown with my friends . Going to a gay club is a new experience for me . One of my friends recommended it to me but I was a little about trying it . She said she was from Australia . Cave Story , one of the most high - quality `` free `` PC games made in Japan will be released on Wii - ware ( it will take time though ) . There were no awkward silences and we talked a lot . I think my native city is beautiful , but there are , of course , some problems . The Author lives in Mexico now . I liked that country . I will go to Philippines to study English next summer for two months . Before , I thought flea markets only sold used merchandise , but they do n't . Also , I played guitar in a band . I fell in love with these shoes , so I decided to buy the shoes within 5 seconds . I am looking forward to putting oh the shoes . Bryse , a programmer living in Illinois , is currently pretty much absorbed in studying Japanese . On the top of that , the time lag always causes foriegners to be confused , like when I 'm speaking with an American friend . And another reason for the friend 's confusion is lack of vocabulary . I want to improve foreign languages . However , I know that it is unhealthy , so in order to be a healthy and lovely girl , I decided to eat more starting tomorrow . I will receive reports on the rest of the checkup items in 2 weeks . But I was not able to get myself into a better frame of mind I read books , listened to favorite music , and so on . First of all , I want to improve my English especially , speaking . Although I can speak English more fluently than before , I make mistakes when I speak or say some sentences . Lastly , I wanted to make foreign friends . I feel nervous more and more . I can go to oze whenever I want to because it is very near , but I had never thought to visit . maybe oze calls me ^ ^ they gave us a morning haze instead of sun rise . and they gave us white sky instead of orange sun set . I feel comfortable with oze 's nice charm I 'm satisfied with oze 's nice charm I ordered a factory size spaghetti meal with rich meat sauce . Unfotunetly , the day was rainy and chilly , but fortunately I could visit many facilities in Oxford university . It is the middle of March , but we had snow yesterday . I have got a question : Do any of you who speak english or spanish like to chat with me in ICQ ? Konbanwa . However , I can not write as well as I read . Today , _ Shingo presented a report about English literature . I am a casher . I have a television , a bed , a desk , a refrigerator , a computer , some pens and some english book Because one of my classmates 's major was art , she explained the details of the oil paintings to us . His productions were affected by his friends so he always drew the characteristics of female with small eyes and a long nose . Thank you for reading . Therefore , I 'm afraid of the flu . My class will be opening a food store for a school festival tomorrow . Finally I decided to visit my best friend in Minsk ) My family was 4 people along with my uncles family , my aunt and my grandmother . The Adults were talking about their lives while I was hanging out with my cousins in their room . My grandmother told us she wanted to go to Karaoke with the whole family . My grandmother was very energetic and cheerful . We went to the `` waterpia `` which is a recreation park where we could enjoy heaps of pools . We have seen the first half of the movie , but nothing interessting has happened so far . Luckily , I got a ticket for a Green Day gig from my friend . I suddenly stood up and to get out of the from train but it was not my destination , so I stopped myself . Everyone was watching me probably . New book : Howl 's Moving Castle The title of it is `` Howl 's Moving Castle `` . I had no idea at all that there was the original story of the Japanese animation ' Howl 's Moving Castle ' made by Miyazaki Hayao came from a book before I saw this . I like the character of Sophie . The topic is my partner trying to sell a printer to me . I 'm the customer . Ok , if you guys acted like a customer , what questions would you ask ? Tree leaves have turned red and yellow . Now I can read simple texts and understand slow and simple speech . But we must pay a basic fee to use it . We have a cellular phone , and pay a basic fee for that too . but sometimes , I 'm impressed by that . But I 'm sooooooo sad because today was the last day of my summer vacation ( ToT ) / ~ I 'm supposed to get up at 7 : 00 tomorrow . It 's impossible ! ! I wanted to wear a skinny jeans so I took a diet . I had to stop losing weight , but I will keep on with exercise for my health . I do n't like to use dishwasher detergent while using a dishwasher . What I do is first I soak the dirty dishes in warm water with some cleanser for some time . After that , I rinse and scrub them before I put them into the dishwasher . Actually , computers is n't the first selection of mine when I was invited into shaoguan university . I have already failed CET - 4 three times . It was a very big event x - D By the way , I watched a video that the actor Daniel Radcliffe appeared in . I am a university student studying language . English , French and Chinese . Studying language is difficult for me but I wish to communicate with foreigners But today I do n't feel like working out because today I got my grades . Since I wo n't be in Korea for years , I think that it is a good idea to spend time with family until then . Doll Festival The Doll Festival ! Almost all of the house which have girls has ' japanese dolls ' . We display dolls on Mar . 3rd ( Many houses display from Feburuary I think ) . I prefer living in a dormitory rather than living off campus . Living in a dormitory gives us many opportunities to make a lot of friends . Secondly , living in a dormitory is much more convenient than living off campus . Most dormitories are located very close to classrooms . Finally , I will spend less money if I lived on campus . As a dormitory resident , I will not have to pay for gas , electricity , or water , like an apartment resident does . In addition , I will not have to pay for furniture such as desks or beds . I will not need a car either , so I will not be concerned about insurance , gas or parking . Consequently , the dorm is the more economical choice for me and my parents who are paying for my education . Her other lang - 8 friend and my classmate came after I met her . Maids really exist . The maid will paint something with ketchup . Hopefully he will answer my email tomorrow . Last friday my colleague asked me if I wanted to go see a movie with her after work , since I was free that night I said OK . Since she rides a motorcycle I thought she 'd give me a ride . It 's not the first time she has asked me out after work and told me to meet her by taking the bus ( and she rode a motorcycle ) . vi is a text editor which is widely used by systems engineers . Thus I can edit large texts and programs with a few key - strokes . It is very comfortable for me , so I often type vi commands on non - vi editor : I watched a movie yesterday . `` Inception `` we went to eat at a Japanese restaulant in Shinjuku . But , as you can see , my English is not enough to enjoy English ; for example by watching CNN and BBC news or listening to English music . `` Reborn `` , `` Hetalia `` , and `` Detective Conan `` . Also , childrens ' crimes are not because of comics . I 'm studying English , so I can go to university . Talking about the schedule , I checked the schedule and realised I reached work far earlier than I thought . That was why we swore not to use Japanese during our time here . They speak fluently in their own language but ca n't recognize mistakes in English . At the beginning , a girl 's shouting with very high pitch and tremolo is stimulating . Furthermore , he even assumed that I said something I 've never said before , like `` Those you refer to as good high schoolers `` . Next Sunday , I 'm going to participate in a marathon race which is 30km distance . Hello , my name is Gabriella . We met a lot of tourists in the centre . The whole time , he was asking everyone to support him . I 've been introduced by another Japanese friend and already knew about him , but I had no time to meet him at that time ; I just had his cellular phone number . But he wants to speak conversational Japanese fluently and he has plans to go to Japan . For adults , natural disasters represent / mean loss . In the film , President Mubarak does n't know anything about the conditions of the people . This film seems to say that the president is a victim of his ministers and government that tell him that the country is doing well and everything is okay . It wants us to believe that the president does n't know about the problems and obstacles that Egyptians encounter . This cook blows the whistle on the corruption in Egypt and tell the president exactly what happens in the country . It is hard to believe that a president could be so naive . You should n't be disappointed just because your effort does n't give you any fruit . However , according to what I heard from my friend who has it , the filter of the system becomes clogged once a month . Some of them dream of the numbers and then buy lottery tickets . Sometimes they believe ghosts can help them win the lottery . As for me , I do n't like to play the lottery because I do n't know how to do it . Three months ago my uncle died . Many people bought lottery tickets using the numbers of my uncle 's birthday and they won the lottery . Recently I went to my friend 's funeral . Before she was cremated we saw that her numbers were 14 , 41 ( we saw from the box that her body was in before they cremated her ) . Lots of my friends decided to buy lottery tickets but I did not because I believed that maybe I would n't have luck . This morning my friend asked me if I bought lottery tickets or not . She said she won the lottery today and 3 of my other friends won the lottery too . They are going to get merit for my deceased friend to say thank you . I will write much about that tiring trip on another diary . Correcting each others ' sentences . I watched the movie `` Inception `` . He spoke with a Japanese accent , but very fluently . I am looking forward to his next movie `` SHANGHAI `` I 'm sure that she will certainly achieve her purpose . When the car drove away , I whispered very softly ' I wish you good luck ' . 3 - Draw a green rectangle of the same size underneath the blue rectangle . My favorite is looking at things . I 'm very tierd because I have to study hard for tests . I have already planned to go to NY during winter vacation and go shopping , so I have to save money definitely . I like when people around me are tolerant . I am still ashamed of myself , when I remember it . My mother often said that she had difficulty making me eat . For example , the difference of `` clash `` , `` crash `` , and `` crush `` . But after I entered university , I do n't study grammar . Entrance examinations questioned me a lot about idioms and grammar . As you know , my English grammar is often wrong . It is a pleasure for me to eat my mother 's cooking whenever I return ( to ) ( my ) home , so I was very much disappointed . . If you are reading my diary , I would like to say ' Thanks ' to you . From now , I hope I will be able to continue writing my diary . Are there good ways to join the conversation ? My first diary in here lacks unity . . . . . . How appealing and - perhaps sadly - how untrue . Italian : Wait . In my country , many people are doing . . . ( 2min ) . . . Japanese people are normally taught by teacher and parents : From my point of view , this is why Japanese are so quiet in that they say almost nothing but smile while in a group in class . In fact , it 's a bit tough for Japanese , while overseas , to find ' the end ' of a person 's talking . Some stores start to close on the evening of Christmas Eve . And this time , I have to start living alone , no friends and colleagues . I went to IKEA to buy chairs , because my realtor promise me to pay them on conditions to contract my room . I need speak more and more English because of my Job recently Recently , my favorite singer is All of the band members have already had experience with other musical projects . worked with many different musical styles from Ska - punk to Hardcore . electronic samples . I 'm afraid I ca n't pass the exam for university , so I want to study English well . And do you add sugar and milk to it ? So I want to learn English right now . 3 days ago , I heard he broke up with her ! ! ! This is because it will be useful for me for when I start working in the future . This is a small and a light weight watch with GPS and heart rate monitor . There were some foreigners . So our goal of the day was difficult . We wanted to talk with some foreigners to study English . In the first store , there were n't any foreigners , and then we moved to another pub . In the second one we met one person , and spoke to him . . It was so exciting . Everything has two faces , living in the school also has disadvantages . Such as the posession problem . The different living habits of the students are also a big problem . But I do not know what to do . Please send me a message . I enjoyed the view from the window of the taxi that we took to get to the city center . The hotel that we stayed at is near the KL Sentral station ( It is a central train station ) . We looked forward to taste some delicious Malaysian cuisine . So I have to look up the words in the dictionary many times . I hope I can finish this book before next Saturday . This means I have to readabout 100 pages a day because I just started it today . Even better , I could designate a cup for a specific purpose and use it only for that purpose . It made me desperate . So I want to improve my speaking skills by training from you , Stephany : ) and also by exercising hard . Let me know if you know the names of the American competent authorities in the airport and their email addresses . I felt very full and my belly seems so big . Today was the third day of my internship ; the second one was similar to the first one , which was pretty boring and very useless . Although , I could use a computer to read manuals in English , and a couple in Spanish . I stayed in Canada for a year as a working holiday student . I feel euphoric . I think that family is the most permanent and best of friends . So I 'm going to leave at 6 : 30 PM and tell my mother `` I do n't need dinner tonight and I might come home late . `` . I asked everyone `` Would you communicate with me on Skype ? First Diary Actually , I 'm not sure whether we could beat them , since our team members are not our best . Now , I 'm in the corporate planning department . I wore a skirt , so everyone said that I am crazy ! ! ! Fuckin ' rich and intelligent people and the financial crisis ; we need a red revolution around the world . I 'm looking foward to seeing Mont - Saint - Michel . My younger son respects his father at least because he is n't scared of cockroaches . And my mother tongue is Japanese , so I will be willing to correct many sentences wrote in Japanese . and I want to go Europe for summer vacation . My family consists of my father , mother , sister and a cat named Hiro . By the way , in Kyoto it 's 2 degrees , so it is really cold . Do you know Family Computer ? Family computer ( it is called Nintendo Entertainment System abroad ) is a video game console . Recently , games are high spec and very complex . The seminar was critical for me , so I took many notes about the meeting content and clipped them in my documents . Besides , I also received several intivations of commercial cooperation which may enrich business chances of our company . It is hard for me to say and write what I think immediately . It seems like it 's in the red this month so I need to be tight the monthly expense next month . We 'll go to inexpensive restaurants . On March the 7th , we left Osaka early in the morning . In Ishikawa , we did some sightseeing , and took a spa . . ( Japanese bath ) We talked about anything and everything until the next morning , and then took a spa again . , I also can not forget those friday nights when we used to drink many alcohol and chat to each other . When I master bookkeeping , I will be able to judge the financial status of many companies . I worry about whether I can snowboard better than I have , Computers are also used in businesses to place and cancel orders . However , I sometimes forget such ideas until I finish taking shower . Sorry about the short diary . In Japanese culture , it 's called OBON . Because there is noone in cemeteries . Removing spots in my face This pain was like a hot needle pricked into my skin . After the operation had been done , I could see traces of burnt spots through the mirror . Nowadays , it is common to see people walking while texting or talking on their cell phone without being aware of what 's going on around them . This scene can be found anywhere from on the street to on buses as long as the places are within the coverage area . when we rushed to public telephones and make phone calls using telephone cards . I learned this from betrayal , from pain anyhow , time never stops for man , although the world is not good enough , but life goes on , so we have to move on They energetically gave their resumes to the companies where they wanted to work in the future . I registered immediately when I knew about this , however , I had a midterm which made me really really busy last weak , so I have to wait till this week to post my first diary here . I have to take TOEFL on 9th , May , and now I feel overwhelmed , The first and the second photos are of a used kimono fair held at a department store in Osaka . Good kimono have clear patterns without any scratches . ( I do n't know whether the pattern is any good . ) So I 'm afraid if you are American or European , it might be too small for you . Today , for the second time in all the years I 've known her , as I was bending down to pet her , at first she did let me pet her then she jumped onto my lap and climbed up to my shoulder where she stayed for quite some time , her hind feet on the right , her front feet on the left and rubbing her chin on my left shoulder and letting me pet in turns . ( I 've never seen her doing that with any other person . ) Last year I went there with my mother and we were collecting a bunch of them for making jam . Only this time I was n't wearing my pullover anymore ( I had taken it off on my way down ) , so I could feel her claws hook into my shoulder ( ouch ) . to do pioneering work , we worked hard for our dream , so we could grow into a useful and wonderful man . In modern times , some people claim that we should learn second languages without translating into our mother tongue and we can learn a language by connecting words together and by paraphrasing . Hi , Nada is my avatar name at Second Life . I do n't believe that . . . I am worried about the ( my ) coridoras . He is always full of energy and a real hundful for me . My tutor said `` Do n't translate `` . I think I ca n't translate any language so I need to speak English in English . My two sons playing `` KARATE `` . Recently , I collected pictures of my classmates ' smiles and put them together . This picture will be part of our junior yearbook . The picture can be a keepsake for our junior class . In one year , we will all graduate and go to different places . This year , we will work for a better usage of the french language in writings and we will try to discover other cultures by written correspondence with some class around the world . We had a really heavy rain yesterday . I met my friends who are my classmates and had met new friends who are from Saudi Arabia , I 've just dropped in McDonald 's and I love the walnut tart that is sold at `` Quil fait Bon `` . `` Quil fait Bon `` is a patisserie specializing in tarts . After our dinner , we went to a cafe . 3 months ago I learned English with my personal teacher , but now I am compelled to learn English by myself . Because my teacher is very busy . But verbs and times are my curse . I want to talk in English with people , who talk in English every day . I want to work for a foreign affiliated company . And I achieved it . I noticed that I can concentrate in meetings in English only for 30 minutes . 30 minutes after the beginning of the meeting , my ears and brain get tired . There is nothing in my mind , but it does n't mean that I have no idea . But I need to take everyday as my last day . However , it is difficult to understand the strategy of chess because I 'm accustomed to the rule of `` Shogi `` . I have had two turtles for around 15 years : - ) Their names are `` KA - `` and `` ME - `` . Then I could spend a very interesting time ! ! ! ! ! It was a lot of homework . . . . . . Lang - 8 is a very good web for learning languages . I found it in a magazine . Recently Lang - 8 is not working smoothly . It 's a little embarrassing to play it when there are a lot of people in the elevator hall . There were actually . I cooked rice balls , boiled chicken and flyed ( maybe fried ) go - ya . It 's a little bit weird to say good - bye to someone who I meet for the first time , but it sure is a good opportunity to meet new people ! and immediately fell in love with the place . I 've worked in the International trade for almost 2 years , but in the new HR 's eyes , I 'm still a newbie as I 'm starting in a new place . 2 months have passed . No tasks , no assignment , and the formal training course seems just a waste of both our time . Actually Ispecialized in business English and have former experience with daily use glassware . There were many piles of DVDs . Also I hope to communicate with someone in English . So let me introduce myself ! I love chatting with my friends , playing sports ( I especially love badminton ) , and listening to music etc . By the way , I took part in a international party in Ginza , Japan the other day . Of course there were also lots of Japanese , who were all eager to make friends and practise English , as well . I prepare for going to school by listening to music every morning . But I get the urge to buy once in a while ^ ^ . I invited a Japanese friend to my place . Of course , I can be a good Chinese teacher . Today 's schedule It 's very comfortable for me . Some people think there are many benefits to have machines or even robots deal with tasks . If we can make the machines work for us , we 'll be able to create a completely new life style which is healthy and suitable for all the human beings . We will try delicious foods in Hokkaido , such as chicken , Japanese crabs , shrimps , various vegetables and so on . I 'll look forward to it very much . Electronic propulsion My major is Aerospace Engineering . We study how airplanes fly and learn how to create powerful rocket engines etc . . Most of my colleagues in the laboratory are studying a plasma electronic propulsion system which has poor thrust ( 0 . 01 ~ 1NS ) , however its efficiency is awesome ! ! , It 's ten times more efficient than chemical ones , which are normally used in rockets , ( The space shuttle being an example ) . The kind of work that interests me the most is research . I am highly interested in study , especially in human dynamics . I will give her everything as well as my life and I think she will be the treasure of my life . According to the news , only one domestic line and one international line have been put into service . I welcome the new airport which creates new business chances , because I work at a travel agency . When I made a woolon tea like I usually do , I noticed the difference in taste . This time I 'd like to speak about the club I belong to . We invited some amateur music groups . I think that song and art is very wonderful . Thousands of residents from a part of Fukushima prefecture , which has had a serious problem with nuclear power plants in the March disaster , have been told to leave their homes . In addition , my laundry wo n't dry because of the humidity . Since I do n't have many opportunities to speak English here in Japan , I think my speaking skills are getting worse . I will be in Budapest in Hungary , between May 7th and 13th , to attend a conference . There is no direct flight from Taiwan to Budapest , so we need to fly to Wien , ( Vienna ? ) , and then travel to Budapest either on another airline , or by bus or train . BUT now the host family is a of some concern . She told my daughter that she had a really hard time with the same host family because the host mother has been suffering menopausal symptoms and when she is really low , she yells at others and throws things . My first name `` Satoshi `` means `` cleaver , smart and wise . `` Yesterday I rented `` Hostel `` which some people recomended to me here . Otherwise , It will be more difficul to find a job . In the USJ , there are many kind of Halloween decorations . We all have beautiful penmanship . The operability ? ? ? of Query is absolutely indespensable to screen operation and I use ajax ? ? ? as much as possible and . . . . . However , I ca n't talk to her face to face , because I 'm a very shy boy , so I will talk to her tomorrow . I registered to Lang - 8 to improve my English . Because you ca n't eat and you ca n't drink . [ WE ARE THE WORLD ] and I lost my way ( ; ; ) There is no doubt that I turned right . My homework . . . Correct please please please please please Dinara Safina is one of our favourite Russian tennis stars . There is a big Cathedral . The Cathedral often holds festivals . Though it 's small , it is very convenient . Going from Toledo to Central Madrid only takes 30 minutes by train . Billie Joe made some fans get up on stage and sing a song . It was unexpected ! What a beautiful day ! I drank a glass of white wine . It was very tasty , but it was too sweet for me . So we had to go another restaurant after that . But sometimes when I listen to difficult English , for example CNN snd BBC and so forth , they use words I do n't know , so I have to conjecture their spellings or meanings only by pronunciation or context . Meanwhile , mutton is less popular than other meats , like a beef , pork and chicken in Japan . Greece , Iran , Spain , Jordan . . . . But there are not any Uighur resturants in Tokyo . It 's hard to believe that I do n't have to go to the academy anymore . I downloded an application which allows me to play poker online . These breads are very expensive ! I eat a lot of bread , but I 'm on a diet ! A lot of Japanese food was sold on the street , such as tempura , udon , dango , kakigori ( shaved ice with syrup on top ) . Today 's part time job was working as a delivery staff for a pizza . I delivered to six families for only two hours . In my apartment , one of the lamp bulbs on the ceiling burned out , so I changed them . I belong to the third branch of Hiratsuka volunteer fire fighting unit . We quickly gathered in our office and went to the accident spot on fire engine . The spot was the mini factory of Japanese sweets , and the heat sensor responded to the steam from making sweets . so it 's very fun to communicate with the people who have different backgrounds . `` Drinking together helps our teamwork grow . Two month ago , Japan had a big earthquake . I was n't affected because the epicenter is far from my prefecture . However , when I get paper money , I put it in 2 partitions . ( Korea has a 4 kinds of paper money ; w10000 , w5000 , w1000 and check ) I 'm busy so I ca n't write in my diary . . . . . . Bye bye . I am listening to the Presidential Inaugural Address on my podcast . His speech is very good ! ! Syabu syabu is very popular japanese food . Nabe is vegetable , meat , fish and etc . and , very delicious ! During the meeting , some professor and I discussed a way of teaching science . A professor gave me a lot of advice . When he finally left school , he travelled to New York , where he became a student at drama school . I am sure that although most of my painting friends on Facebook are just virtual friends right now , someday they will become my actual friends ! ! ! It has been a really really really long time since I last wrote my diary ! Actually I just dropped by after following up an introduction on jandan . net about this interesting place , [ insert space ] where people WITH DIFFERENT LANGUAGES AND CULTURAL BACKGROUNDS can exchange their ideas and thoughts . . . Most importantly , it allows native language speakers to give suggestions on your blog , [ insert space ] mainly about how to write it in YOUR second language . . . [ insert space ] A pretty cool idea ~ ~ I am college student and I belong to soccer club . His ball technique is unbeliebable ! ! The loneliness that keeps out a charming smile . Beyond my idea . I really like that city because it is not only the first country I 've gone to overseas but it also has many tourist attractions . Many lights were reflected on the sea . It opens on Saturday and Sunday . Oh , I remember a man who could paint a picture with spray . However , it remains unclear how this affective bias affects the memory as the distraction . Visiting a grave . As we know , the smoke of a cigarette contains various kinds of harmful chemicals . Some of which have been proved to cause lung cancer , such as nicotine , ammonia , ethanol , carbon monoxide , arsenic , and napthalene . In fact , there are some cases a cigarette is the cause of a house burning down . A cigarette can cause serious consequenses . I readThe Economist , however , and itsaid thatJapan ca n't escape The lost decade because of indifference towards politics on the part of people and politicians . I disagree with the statement . Indeed , how to change our lifestyle is a crucial problem . 1 ) Clearly state your purpose ( why you want to be or do so ) and prize . Although I drank a lot of wine with my friend for 6 hours last night , the result of exam was A . Once the mark is caused , it is permanent . Yesterday , I took part in an interview for the Beijing Western Sunshine Rural Development Foundation . There are many university students going to there to help improve the current situation . Though I failed in this interview , I finally get 3 days off in a row here . . . A five - year old girl was found by Russian police in the Far East territory in Russia . So many people are suffering from hunger and poverty in Russia these days . The police brought charges against her parents . Finally , we decided to buy a sofa ! Although I have n't got a lot of money , I buy a beautiful clothes . Even though I could n't understand the words well , I could enjoy the pictures and the sound and I roughly understood the story . Spending time with my family , visiting my grandma and going to a shrine to pray for a Happy New Year for all . . . I 'm very cold , but there are many air - conditioners that are used all over the area . Also , I have to attend my class , but I 've been getting up late , so I have n't been going there . Please check my diary ! Yesterday , I went to the New Internatinal Students Welcome Party at my university . I l learned how to find ecnomics datas . It is a very interesting place for me to make many friends and communicate with many foreigners . I 'm so frustrated . Now it 's pouring still harder like turning the bucket over Please do me a favor and tell me the meaning of this sentence : The men are in a snack . My ankle was sprained in the afternoon when I played volleyball . . . It 's so shameful when I recall it now , because there were many students on the volleyball court . . . Maybe I ca n't play volleyball for a few days . . . So it damages a lot and many people feel uncomfortable . So I suggested it to my 3 co - workers . If you are available , please correct them . Although I 've lived in japan since I was born , I am now planning to study abroad in Canada this july . I think that just only speaking Japanese is unworthy in a global world . so I hope to contact each other by using this useful site . I felt as if I were moistened . An intense tornado struck Joplin , Missouri in the US . and elementary school teacher . I like traveling all around world . But unfortunately since we do n't have that , my husband just grated onion for me while crying . I recommend to you ! My dream come true Finally I really hope go along with them . . . But , on reflection , the postage price is as large as the price of the clothes . So , I regret now . Many friends recommended this drama to me before , but I did n't watch it because I was watching another drama , `` Lost `` . In our company , the phenomenon is found surely . Those who are in their twenties do n't like it more than those who are in their thirties , and the occasions to drink it seem to decrease . When Joy entered Mcdonalds , Ji and Min already sit . I should have studied more . . . That was her first solo concert and her first CD was released on the same day . After that , I went home and practiced soccer and today , I practiced passing , trapping , dribbling and guarding ( ? ) . The session is a drop - off class but it 's a 20 minute drive from home , so I waited for her for 2 hours in the cafe nearby . It made me feel very busy and tired . ( My neighbor / One of my neighbors ) is attending an Italian course in the Italian Institute , and told us on Sunday that Giovanni will gave a interview talk about his books , and will play a few songs in the Institute on Tuesday evening as his debut in London . I study dentistry in hokkaido university . My part time job is tennis instructor . My First Writing Although I have been learning English for a couple of years , my writing skill is still not good enough . Frankly speaking , I do hope I can make some progress in writing . The idea of helping people improve their language skill by SNS , totally attracts me . My vocabulary is limited . because the less people there are , the more you can have the opportunity to speak English . The teacher asked us several questions . However the financial crisis recalls the ghost that Alan Greenspan exorcised in the late 80s . May God help America , I ca n't stop praying . I ca n't speak English well but the teachers are very good so I will certainly grow . Yesterday morning , I drove my indian female friend to the animal shelter . I do n't know what will happen to me as a volunteer in the future . Furthermore , there is the English test on next Saturday , so I hope I can cope with this test with confidence and knowledge which I have studied for 6 months . Writing is one of the most difficult skills , I hope I 'll improve it using this service , moreover I hope to get to know new and interesting people here . Who have and know new ideas , and can enrich my life with new conversations . so my essay is always basic level . Even then , it 's an arduous trek . It is natural phenomena is n't it . Why do some people accept homosexuality ? I do n't know exactly about that . Writing a diary is very exciting for me . . . I think that learning other languages not only gets a skill of communication but also obtains another country 's method of how to think . Me interesa el flamenco , la salsa , el viaje y la gente ( ? ) . ciao . It was very crowded in front of the Mona Lisa . I 'm curious . what does ' cracking up over ' mean ? `` Food desert `` means a situation where many people , particularly elderly citizens , have problems buying food because a lot of small shops closed down due to the emergence of super markets , department stores and discount stores , and large shops are generally far from shoppers . Pottery ! `` in the magazine I got when I exchanged ( or switched ) to the iPhone4 . I am studying economics . I scrubbed the inside of rusty frying pan with a brush . After that , I ate an egg tart at a bakery . There are many similar words between the two languages even though one is a descendant of Latin and another is from Germanic . I decided to keep a dairy everyday . Please read my diary . Three days before I found a music video of my favorite group on internet ( You tube ) , the Four Marionnets played Coldplay 's song . The remarkable stage effects and stage staff ( marrionnets ) were interesting to watch . Time goes by so quickly . I remember what I was back then . . Nowadays people ca n't live without them if they want to be a part of society . It is coverd with honey , sprinkled with nuts , and has added chocolate and icecream ! One professor in my university said he has a favorite foreign language word too . Development of Tea in Taiwan there were a lot of people , many foreigners there , who played soccer , baseball and badminton . summer is coming : > The pictures in japanese books and magazines are of course nice , but But , this is girl only university . I rushed to the nearby bank to see the fireworks , but I could n't . In fact , I had n't had a computer until I entered vocational school . When I lived in Korea , I usually ate rice , vegetables , and meat . Why does bad food taste better than healthy food ? Because the big typhoon is coming . I have fun . In Kochi , they are eaten with only salt . I love my friends , who are sadly suffering from a cold . Now , it is around 3am in Japan . It is raining and I am listening to the sound of the rain through the window . As I pretended to call a policeman , However , almost all the people in Tokyo live their ordinary lives , like before . I 'm taking a bath now . I sometimes take a bath for a long time ! ! ^ ^ I have passed the intermediate interpretation examination in Shanghai last month . Syllabus was well written and the class followed syllabus Professor provided feedback after the exam or assignment . I watched English teaching programs hosted by CCTV , Taiwan TV , and read my textbook each morning . And I would never forget a word that I have learned , including the spelling . But I ca n't spell a word quickly , for instance , the word infant I can only take it as a whole instead of as `` I - N - F - A - N - T `` . I can pronounce and write it quickly , though . I think English words are similar to pinyin of Mandarin , I am good at pinyin , so it 's easy for me to master English . I never paid any attention to English grammar , but well , it does n't matter . But now , I have been studying Japanese for 5 years and I 've nearly forgot my English . One interesting thing is that I can speak English casually without worrying about grammar error , while I am not confident at all when I speak Japanese ; there are always new problems that I encounter and I can not express myself well . Accidentally , I found this site and registered here . So I do not do well like everyone . The Summer . . please help me . . In the summer there is a holiday for schools and universities in the majority of countries . I forgot the name of beach though , this is located in La Paz which is in the southern part of California peninsula . It is so peaceful like the name s . O shin . . . Japanese serial You can see the clouds and lake stretched out below . My major is Accounting , which is a so complex a course for me to study , but it pays to work hard in this promising subject . My dog died and I lost my job . My business failed and my money run out . She also worked as an inter . Because I thought being a doctor is a great job with good pay and that nobody wants to quit . I will conduct an experiment at a university in Kyoto beginning tomorrow , where I will stay for about a week . The first picture is at Tokyo station . One dog ` s name is YURIA , she 's a poodle . One dog ` s name is RIMU , she 's a poodle . I decided to write a diary gradually starting today . I could n't find good gifts which will make her pleased . This is the first time that I write a diary . I ca n't even grip a pencil . My hobby is playing sports , especially Basketball . I am on the bus going to the church . During the course , we taught them how to make dumplings and chatted with each other I 'm 24 years old and I 'm a systems engineer of a securities company . programmer ? and I did excercises with my best effort . when I was finished , I could n't laugh about myself ^ ^ They talked to each other for a while . In recent days , I have not been happy because I quarreled with my boyfriend . I admit I overdrank last night but I was still sober . Some even advise me to invest 80 % of my time studying mathematics . As the story is so interesting , I read it quickly . I thought I wanted to become a warm person like his neighbor . Even if the story is sad , the book was funny and interesting . Later , I want to watch the movie ' The Homeless Student ' too . The students can not swim in their school 's pool in the big city because of the water shortage . The farmers have terrible quarrels about water for their rice fields . Although I have lived here in Taiwan for over 20 years , I still ca n't get used to the hot weather . Although the temperature there was higher than in Taiwan , the weather in Taiwan is usually hot and humid , which makes me sweaty and uncomfortable all the time . It was July 4th yesterday , the birthday of America . Because I felt dizzy when I drank it . Well , not exactly . To make friends with foreigners , for business purposes , to go abroad . . . . Hello everyone If it 's a coinsidence , then it 's quite a big one , is n't it ? Additionally I will meet my friend at night . I think this main function is to call somebody . While I was riding on the rocking train after that , I remembered what a priest said . He said that they ate many delicious foods and had a nice time . Today , the introduction of my family . I have parents and brother ( s ) and a dog . Today was very cold . After have a bath , I will go to bed . In Japan , it will soon be `` tsuyu `` . Now , when I thought that XiaoBei parted with Haizao XiaoBei felt deep distress because she was not faithful to him . It 's been a long time since I last logged in on Lang - 8 . Great Thank Rabbit and King Goodbye Lion My writing is terrible , so I feel stressed / nervous about writing in English . I think speaking is much easyer than writing . The theme of this special number magazine is ' running ' , and I 've decided to start to run . Writing is necessary to improve language So , I will search for another plan ! ! Tonight , it is such a beautiful night , the stars are so beautiful . I saw a news report about a solar - powered airplane that can fly using solar power in the daytime and with batteries at night . Several days ago , I had a conversation with a foreign teacher , who comes from Germany and teaches German in my university . I could n't conceal my excitement at this communication , because it was my first time communicating with a foreigner face to face . We just briefly greeted each other , and then there was a long silence . The score was 7 - 83 , Japan was completely defeated . ( How should I describe a person like him ? ) anyway , I 'm still confused how to use it ? When the climate is wet and really cold , it 's hard for me to wake up early . I do n't have enough willpower to study more and more in morning , wasting lot of time . Fortunately , this week is holiday and I do n't have to attend classes . Their dance and rhythm is fascinating to Japanese people . I play the flute . That makes keep up hope when watching dreadful stories of the world . I graduated at a university this year , but the ceremony was carried through . It was postponed by influence of Hukushima 's strong earthquake about 3 months ago . He has just graduated About 15 minutes in the first half , Paul Scholes was kicked by a danish player and got his knee ( or ligament ) injured . Before I went there , I did n't like studying English . And I like taking pictures , traveling , eating good food and drinking , haha Tomorrow , I will look for a new residence . Due to the specifics of being with the people who are from elementary school to high schoolers , I am supposed to know how to treat them accordingly . There are about ten little kids in my school bus ( mainly , I am in charge of monitoring the school bus ) and among them , there is a first grade kid who I have scolded a lot for being loud . Relieved : I 'm relieved that I obtained the offer for the job . Recently , I do n't have high motivation . . I will leave to Tokyo , by JAL at 3 : 50 in the evening . Then , one of my colleagues assisted me and appealed that kind of needs When I meet the manager of the HR , he demanded an English interview . I 'm 24 years old . My mother , father , younger sister , younger brother and me . For Valentines day I make gateau chocolate every year . So , I like gateau chocolate . Because it is funny and different . Red can pretend to be dangerous and it 's sexy . The whole tasting process was so enjoyable , watching the sparkling champagne in the glasses made me feel living in the high society , although I am not ! Singing Taiwanese songs in KTV makes me high , and I hope tomorrow I will have my cell phone number ready for a good hiking trip ! Two of them are on Visual Basic 2010 , the other is on Visual C + + 2010 . I have programmed in C + + before but I have totally forgotten the specification . I want to be an efficient programmer ! ! and earn more money ! ! I 'm already depressed with my exams , I do n't need to hear that 3 hospitals and 5 Primary schools have been bombarded this morning at Gaza . When I first came to Tanzania , we changed at the rate of 1300 Tsh to the U . I went to a vegetarian festival in Kyoto with my friends today . It 's not good looking or useful so far . I used easy word , only present tense , and not complex words ; perfect tense , passive voice because I want to know whether subjects can make relatice clauses or not . How do you study language ? It 's a software to memorize words and phrases efficiently . Are you good at memorizing new vocabulary items ? It 's not surprising that we forget our memory Please try this method if you would like to study new language efficiently . You can surely memorize many new words ! But my family had trouble , so I had to solve the problem immediately . It has been ten days since the Chinese Lunar New Year . Now I have a lots of great photos that me and my friends took yesterday and today . The next time I 'll see her is in the summer . In my opinion we have argument between security and the risk against [ parasite ] of each school . I have never search it and also read , so I am not sure how [ ura site ] is but it seems that student write about other student 's bad point or something hurts others . Mobiles could be very useful to prevent the crime from children . If my friend has time , we 'll play catch ball or watch games . If you are the one of people who lent me a hand on my survey , I really appreciate it . In the end , she sent me some useful resources about the theme by e - mail . Today , I had three classes ; English , Japanese and Chinese . Because it was the weekend today , many people visited . Because all of the employees are kind and happy . Sometimes foreign people go there . American , Korea , and Chinese people . And I also attended the Chinese classes in my Company . Yesterday , I had a class titled `` perfect pronunciation `` at the university . We learn the North American English pronunciation in the class . Michael Scofield . Like other girls , I was meant to be a fan of Michael Scofield . Anyway , I looked up on the internet about Wentworth Miller hoping that he is really a person who is like Michael Scofield in Prison Break . When I was a junior high school student , I went to Kyoto . As I 'm interested in Japanese history , especially the `` Shinsengumi `` , I want to go places that have a connection with the `` Shinsengumi `` . People do n't look interested in a naked artist performing on the street , a group of tap dancing people or a movie filming location with a lot of famous actors . Their birthday is tomorrow . I 'm looking forward to tomorrow . When I pay , I found that I have 4000 yen . There are beautiful flowers here . However , it was lucky we was able to meet one of the customers and tried to make him purchase our product . So I can not understand the actions of the sea shepherd . Although the decrease in conversation is a very serious matter , the number of such families has increased . The holiday is celebrated every year on 1 September since 1984 . I am not a student for 9 years already , but I have never forgotten this holiday ! So now I need a good environment for me to learn . I will watch it again when I go back to Japan . I 'm studying English and Chinese . Our teacher asks us several questions . When I looked around on the way to the school , cars were stacked , and streets were filled with people . To make matters worse , everybody was walking very slowly like a turtle . English is my second language and I have been having a hard time getting Canadian professional accreditation in order to practice nursing here in Canada . Although she always made out with her husband , she ca n't speak English that well . doom : The criminal was doomed to get the chair . We Chinese can not log into SNS websites such as Facebook and Twitter . We can just lives under the `` umbrella `` I made handmade BBQ sauce today . It contained soy sauce , garlic , sesame seeds , sesame oil , and sugar . Inside of it there were 3 motors and metal frames , This Exhibition is called `` Interior Life Style Exhibition `` in Japan . It is done once a year . She told me about her friends who went to america to work and travel and take care of the childrean in the usa for one year . A pack of cigarettes is expensive , is n't it ? ! I swear , I will never smoke cigarettes . So I will have to study hard from tomorrow . Hi all . This is my first time posting something in English . I 'm from Moldova ( If you know where that is . ) Soon I will immigrate with my family to Canada ( My father , mother and sister . ) So Girls , I 'm free . ^ _ ^ . . Today , my father will cook Okonomiyaki for dinner , which is a Japanese style pizza , for the first time in a long while . I am going to keep watching CNN somehow , although I ca n't completely understand what they say . . One of my hobbies is playing the guitar . I 'm learning Japanese but now I 'm just a beginner . So that 's why I chose the 5 - fingered socks as his birthday present . I held a drink party for my friend who will get married this October . I hope for their happiness . Yesterday , my friend told me about Lang - 8 . Sometimes I pretend I 'm one of the characters and say their lines . Maybe I just have no feeling , no spirit , no inspiration to write an English journal entry , I do n't know . This evening I got the news about a volcano on Mount Kirishima in Japan ! but when I take her for a walk , she is so crazy ! I wanna sky jump and bungee jump and go surfing before I die . but I 'm a little chicken , can I really do them ? by the way , during 2nd period , I went to a tiring progress of education class . It had English language for the details . Then I checked it , and Inside of the diary there was a story from someone . I was really excited and kept reading the diary . Then I saw many pictures from him that were inside the box and a card that said `` Happy birthday Noy . `` ^ _ _ _ _ _ ^ Ohh my , that was the first present I got . Inside it was written something such as `` I hope it will reach you before your birthday . `` Then my mouth opened and finally smiled and I said to myself `` Thank you , my wonderful from Lang - 8 . `` I want to write about one of my favourite series Desperate Housewives . It tells about their life , their husbands , their children and relations with their neighbours . I woke up at 7 o ' clock , and then I washed my clothes . It continues from June to July . I wonder why there is no rainy season in Hokkaido . I hope to go to Hokkaido during this season . We enjoyed it . I found the Penguin Readers books in my town 's library today . She is so friendly and nice . The visible air pollution reflects certain wavelengths of sunlight back into space and this weakens the effect of visible air pollution on the earth . I think I 'm going to go to the library later ( today ) . What I do is I first check my library , and then only if they don ` t have what I want , I 'll think about whether to buy it or not . I like shooting games , some of them are violent , but I never want to kill people . also I do n't think I 'm stupid . Movies , books , TV dramas , those entertaiments have some violence , but adults judge only video games that are not educational . And do you think violence expressions make us obscene ? And surprisingly , when I went out to drink some days ago , all of my friends said `` Wow , are you on diet ? `` OJT wa tanoshi katta ( The OJT was fun ) Watashi no Jikan de hiragana wo benkyou shimasu ( I was wasting my time by studying hiragana ) Hello . Starting from this week , I 'll be writing a blog . By the way , I decided ( decided ) to write a diary EVERYDAY ! My condition consists of physical and mental something . Maybe we can exchange opinions ! If you want to make friends , let me know ! In the future , I want to write about my hobbies and music . Now Japan has quake and radiation problems , so yesterday 's concert was held for charity . Women 's final of the Wimbledon championship tennis tournament will start at 22 : 00 Japan time . He is going to Kochi Prefecture today . I 'm going to meet some friends and have dinner with them . In the congress , 7 minutes of presentation and 3 minutes of question time is allowed for each presenter . What a wonderful food name XD Has anyone eaten it before ? Today is holiday work . I went to the office in Tokyo by Shinkansen ( bullet train ) . If it 's right , does this sentence , `` Bob does n't like you very much . `` exist grammatically ? I want them to overcome the pressure and win the next game as well . We went to Palace of Verailles , the Louvre Museum and Mont - Saint - Michel . We went to chateau and took part in Marathon . Weather forecast says it will snow till midnight . Have a good weekend I think I will go to shopping and look around the market . I would like to buy a new magnet . There are a lot of stores in the weekend market . I hope you have a good weekend . Her school has a cafeteria , but underclass students tend to bring their own lunch boxes . I like investigating blood types . The result was n't bad because my score was fifty points higher than last exam . I think that the cloths which are sold in the shops at daikanyama are somewhat more expensive than in other shops . I think it is good for me to improve my English . My English is so poor ! It was a windy day in Tokyo yesterday and the day before yesterday as well . Our country have been inviting soldiers from many years ago , but they areonly a handful ofthem . Would you check my English sentences , please ? I am confident that if you practice Korean with me , you will have progress . And I forgot my umbrella . I have a friend who is very popular with men . It 's completely obvious that he is into her . ( His behavior is better ? ? ? ? ) Firstly , Let me introduce myself . Our tennis team practices almost everyday . calligraphy is difficult , but it 's a lots of fun . However , I wrote not only my insistence but also my gratitude to them in it . We would just simply connect to the Internet . My major is Architecture . I could n't figure out why because he never told me how he felt . because the weather was bad . Today 's schedule includes ethics , mathematics ( logarithms ) , Korean history , mathematics ( matrix ) , Korean literature ( poetry ) , and Korean geography and self - teaching . When you were a student , what was your favorite subject ? Also , I 've been searching for a Japanese language school abroad . I hurtmy finger when I was making dinner . Halloween is not as familiar in Japan compared to other countries . This necklace was made by me . A Church is in fact a place where people who admit that they are sinners gather . He sacrificed himself for me . I hope I 'll be able to visit there someday ! 2 ) that the modern youth are so silly / perverse / just awful etc . It 's complicated to judge though . But when I looked at the tables after the customers had left , there were so much leftovers as if some of the dish were left untouched . But sometimes I see customers who order a lot of food and only eat a little of each dish . Food should n't be wasted , and both customers and shops need to consider this problem . So I moved a little to give them some space . I tried writing what I 'll talk about in an interview . The senteces below are ones that I made for small talk before having the actual interview with my job interviewer . even though I lived in Australia for 1 year , my English is not perfect . I 'm doing better at English than I ever have before . ( Frankly speaking , I used to say this expression like `` I 'm getting better in English . but some good friend on this site corrected it ) . In February 2010 I bought a new one . I 've read that this grease is cool , because it 'll cause sand and other things to not stick to the chain . Yesterday I read the label on the grease and . . . I used it as was written in the manual and it works . and it was my first time to hike with a bike and also my first time to be on the top of the volcano . The crater was just in front of us , it was amazing . So the result may not be too much valuable . I wonder why I do n't like the feeling of the upcoming Valentine 's Day , maybe the reason why I dislike the day is because I 'm single , and have n't celebrated with anyone yet . some guy told me that I 'm too picky , and my expectations were too high , but that was not true . I have to be patient to wait for my prince , the one that may not look good but has the responsibility to build up our relationship , the relationship that I 'm looking for is one where we understand each other , and no matter happens we can forgive each other . It was cloudy and rainy . This was a good opportunity to improve our relationship . Please could you correct my sentences ? Address : I live at Sunter Jakarta Utara street ( , ) Agung Perkasa 1 Blo ( c ) k J 4 And with futsal until now I 've made a lot of friends . So I have to learn at least two languages . However , the decorations were totally well done ( they must have spent a lot of money ) and there were some big actors like Meryl Streep and Dustin Hoffman playing small roles in it . Many cherry blossoms were in full bloom and many people were walking and playing . Why does the government hold these flower activities in the fall ? My vision Someday , I would like to go abroad for business . I 'd like to make some sentences to using these below ; If we went shopping together , I would n't go well - known luxury brand shops with her . I know [ that ] , we should n't go there . I thought , `` This school is suspicious . `` It 's an honor for me to meet you on this website . The reference is below . At the same time , another roommate said : `` Teachers ' Day is on September 20 , is n't it ? `` This time I could n't help but laughed . She has been living in Japan and can speak almost fluenty . they were considering only buying one bottle of whiskey . Fortunately I got a chance to study at a university in northern England from February to June of this year . ( In other words , the spring semester for 2007 / 2008 ) . But I saw a good site at my office . I have n't met anyone in this apartment but I 'm looking forward to meeting inhabitants . Today I watched sequences from Mubarak 's trial ( ex - president of Egypt ) . I saw in old Egyptian movies that they put the accused in a cage , but I thought it was an exaggeration for dramatic purposes or it was only used in the past . I was wondering how he managed to remember who was representing who in that chaos ; lawyers and attorneys were scrambling in the front . He asked in an angry voice for everyone to sit , and they moved slowly as if they did n't want to . Even though we do n't know the correct pronunciation in English , we can still type English words . So I guess it was a good desicion for me . Through traveling , we can learn to cherish everything that we have and encourage ourselves to work harder . When I took a bath , it smarted . These places display a slice of traditional Korean life for both domestic and foreign tourists . Also , the Korean folk villages showcase the ancient techniques of making pottery , baskets and instruments . But I want to recommend this place for foreign tourists who plan to visit Korea soon . When I was a junior high school student , I belonged to a basketball club and I enjoyed playing games . After we got a new coach , my club won the first game . new coach , `` Thank you for coaching us . `` He said that our club It was important to have a good coach to become better . My mother is growing some herbs in my home garden . My favorite is Caffarel which is a famous Italian chocolate . Today is my birthday . because I have many bad days When I met him for the first time , I did n't know . Okinawan people do not have a good image about the American military . I thought he had not forgotten about hes ex - girlfriend and still loved her . So we became a friends . Should there be more government control of the Internet ? Some people say the government should reinforce control of the Internet . The government fears that in other countries the public can easily share information and in the end this may lead to political upheavals . Nevertheless , some people argue that the need of government control is to prevent frauds from using the Internet . But most people know how Internet fraud is and are more cautious than before . Hello , I 'm Kana . recently I 've begun reading a book by H . I want it to be like programming other computer languages very much . Today , I had three courses to take , but , after taking just one course , I must go home because I hit my hip while stepping down on the floor . They are sooo sweet and juicy . I ca n't believe that I have an acne problem now . I 'm bummed out from trying to find a way to lose it . What does ' twist of lemon ' mean ? that 's because I do n't know when I can use ' be aware to ' It seems as if we have shared this bad condition . My first food was scrambled eggs . I took Joban line from Ueno station to Katsuta Staion . It seemed to be close to the Kitasenju station . He was n't intersted in Tokyo skytree but Joban line . c especially funk music ! My father is indifferent towards money . I should go to university now . the TV said , BANH MI is the top favorite food in NY . of course , sometimes I need to wear a wetsuit if I enjoy free diving or swimming in the ocean for more than an hour . A shark is behind you ! ! In that picture , a shark was behind a man ! ! It is so scary . . . Hi everyone : ) My name is Alyssa . I 'm planning to go back to there again really soon to work on my undergraduate diploma , and get a job there . Anyway , I congratulated him on his wedding and then I went to take a computer exam . MOS is an exam which tests my ability to process office programs ! I made some sentences . I went to the university library in order to study for final exams . to tell the truth , I have written an English diary before . . but I broke down . What do you want me to do ? ( We prefer conveyor - belt sushi restaurants to classical sushi bars , because it is less expensive and has an inviting atmosphere . ) But , unfortunately , I failed to take pictures since my camera had run out of power . 4 , Click `` Update `` button , and that 's it . Their expressed policies in the manifesto are as follows : The government subsidizes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . I 'm so glad to join you , a platform from which to communicate with friends all over the world and improve together . Their songs and concerts are very powerful . Meals are also more expensive than it was before Spring Festival . When my classmates asked me about how my spring break was , my answer was homework , writing , writing , homework , and homework and writing . Forth , I ever chat with one guy in a QQ group who ignored me after I talked only a few words to him due to my bad English . With my hardwork in this passing days , I could view the progress of my english . From now on , I will strike while the iron is hot to further my English study . The snow masks the top of the mountain , even when the sky is clear . There 's been so much news about Google in the last two days , since Google indicated it 's considering closing its business in mainland China . Philippine adventure I am learning how to survive in the Philippines now because the people and enviroment here is so different compared to Taiwan 's . Every jeepney on the roads has a different appearance and I guess they are all decorated by their drivers , some are really cool . If the jeepney is full , the other passengers will stand outside the jeepney holding something ( ? ) to make them steady , would you dare do so ? As a result , the heavy traffic pollutes the air terribly . Food here is sweeter and there are few vegetables . My mom has 3 bothers and sisters , and all their family will come back to spend New Year together . They do n't know how to talk gently and I always just feel so uncomfortable and try to escape them . Although we are good friends , but I still think it 's embarassing to show her my room . That made her sick eventually . Some students told me they want to come to watch the bee fireworks when it 's Lantern festival . teachers told me that writing a diary in English everyday helps you make sense . but I 've never tried that before . Once you experience a striking event that affects you , you can not help feeling this kind of event will happen again . around you thinks you to be less attractive and even to be ugly even though it 's not true . I assume almost everyone has experienced a similar feeling and realized `` I can not live that way , I wo n't give a hoot no matter how badly I climbed the tower and I had a beautiful view from the tower ! ! I found atenkaippin nooodle shop in Ebisu Tokyo . While I was trying to build a fire , my daughter was playing around and searching for wildlife . Of course she released them before we left . This day is devoted to the memory of millions of Jews killed during Second World War . We do n't have TV today and all public entertainment places are closed . I tried to make plans on Friday , but it did n't work out haha because we dropped by taco shop . A magnificent and gorgeous view greeted me , and I said `` hello `` . And I saw the mansion ( ? ) of the owner of Ralph 's grocery store , and we went to a friend 's house to eat burritos ( ? ) ! However , as we chilled out and laid back on the sofa , they did n't want to attend the party . This afternoon , I suddenly remembered my Lang - 8 's diary when I sat in front of my computer . There are some cities with over 1 million inhabitants . This is a happy fact . But , I think the most popular and useful language is English . it 's really useful . A : I do n't agree with this idea , but actually , it is important for young people to learn English for jobs , licenses , and so on . In other programs , she will take part in a footrace , a dance and the race in which all the students roll over big balls for about one meter . Her grandfather and mother will come to see it . It is a very interesting position . I wish every dream of yours comes true . Because my university 's English courses do n't include speaking and writing . I hope summer will come soon ! : D It was during basket ball . We 'll Meet Again : The Most Beautiful Scene in All Movies about Nuclear Weapons Tomorrow is Saturday but I am writing a test . . . but I was very nervous because I had to play with many good musicians . I hope to meet a lot of friends and have a great time with you here ! . My bad habits I have some bad habits . But recently I have been trying to fix my bad habits . When he meets me , he always smiles . Contact lenses The economy still has n't recovered since the Lehman Shock and we unfortunately have had a terrible earthquake and nuclear accident . I was surprised to see a junior high school student ! I bought underwear and accessories at h & m . all the dishes taste very good ! ! It was a pretty good day : ) Unfortunately my university curriculum did not include English courses , so my English ability has not improved at all . However , nowadays I feel there is a necessity of studying English whether I like it or not . nowadays , English is a mutual language to be used to discuss . There are a lot of tourists from all over the world . But I like not only Japanese culture but also the cultures of many countries . You know , it 's a kind of notebook in which I write my favourite recipes . Of course , one which is made based on Chinese geomancy ( feng shui ) . However , I can not stand the train rush hour anymore ! ! ( could n't ) You may feel thatyour ribs are nearly broken , or that you nearly lost all your senses from the oppressive feeling / strain on your chest . Actually I 've heard that there are also severe traffic jams on the road among commuters in the morning in some countries , so I dont know which is more stressful - a crowded train or morning traffic jam . Now , I totally enjoy managing the club . I am always thinking about how I can improve our team . They are a wish for especially boys to climb higher and higher or rise up and up in their lives like a carp . They will collect 1000 charity bags into which are put various things , such as stationary , toys , animal dolls , books , candy , cookies , sweets and so on . She said to me , `` I like Japan and Japanese people , so I will stay , even though 90 % of my friends have returned to their home countries now . `` That was in March . But , strangely enough , I can naturally wake up at the same time as before . Few days ago I luckily met Andy on the Internet , he is also involved in the mentoring program , as a mentor . Can I have him be my mentor , if it is convenient ? At the break time , my class mate gave me a sandwich and I ate it . After school my classmate and I went to a foodcourt and we chose Indian food . But after the last election held this August , the LDP failed to continue as the ruling party , and gave way to the DPJ . I worked in a Japanese restaurant for four years as a waiter and cook . It gave me a strong sense of responsibility and helped me learn the importance of communication . Would you teach me correct English , ( space ) if it is not too much trouble ? When I went into the shop , I was surprised by their menu and atmosphere . But it 's difficult to make them by myself . It 's been a while since I have logged on to Lang - 8 to write a diary . Japanese SNS `` mixi `` But these days , many mixi users have stopped using it , and moved to `` Twitter `` . I am now having a plan to study abroad in Britain , so I have been to an english cram school for a couple weeks , but it 's hard for me to improve my weakness . The room is packed with people . If you eat too much , you will pack on some pounds . English Class He always talks with `` Thank you `` `` That 's fine . `` , `` Good `` , And he 's very fashionable guy . The last person is Barney ! He is teaching about how to converse well . We had pizza while conversing with other freely . It was my first time talking with a guy ( ! ) in a coffee shop ! Please check if my writing is correct or not . Recently , I 'm crazy about ' gossip girl ' - an American series . Love , sex , scandal and framing are the hot points of their life , endlessly and addictively . The complicated love game and expensive fashion of the show attracted many people 's eyes including mine . I think that 's the reason why this series is so popular with people all over the world . I think my presentation was not good enough beacuse I was too nervous ! ! But I 've decided that I will go abroad next year ! ! ! ! ! ! I want to write essays . Now I found this site and start to write English daily . I decided to send a text massage in English as soon as possible for studying English . I tried to spend time with my son on the weekend . But , I had such a hard day on the weekend , so quite a few tourists come here from abroad . oh my goodness . . . . . I greatly appreciated Samgoht 's review . So I still went to the `` International business negotiation class `` . It is the most challenging part for me . I felt a little bit embarrassed at being incapable of performing as well as them , so I seldom speak in the class . They all agreed on my terms and it made me feel so good . My ( self ) introduction . Since I was hoping that Tokyo would be elected as the next place of the Olympics , I was disappointed by this election . Olympic is the most popular sports ceremony . and I want to watch this event directly . They often wake up early , and go to sleep late , which me feel challenge around . is somewhat unbearable . However , the most depressing thing is I might move to a new campus with my classmates that is far from the city center , far from my girlfriend , far from my love . I have no choice but to try a long distance love . He is a very dependable worker , and the boss will promote him to supervisor in the future . It was a J - league match in which Sanfrecce Hiroshima ( our home team ) fought against Jubiro Iwata , and they 're going to fight in the final of Nabisco Cup in November . ^ ^ The result of the game was a tie but they needed to win ( ? ) to move up near the top rank in the league . Now I 'm making up my portfolio for my . job - hunting . I found something in front of us I was suprised that 5 chickens were walking My fiend said , They sometimes appear and I thought that this movie was a comedy . because the aliens and humans were gambling and buying and selling meat and cat food . connect with last sentence to do walking instead of running to keep fit . prepared dinner with my mother . Usually people are afraid about the future or the past . When you live in a foreign country and get a cold or virus , I 'm sure you feel more lonely than you would in your own country . I just started using Lang - 8 because my English is getting worse . I had been studying Korean linguistics in Korea My photo blog 's text OK , A little about myself , I am 22 , I like music ( Leona Lewis is my love ) , sometimes I play the guitar , but I am really not good at it because my hands are so small that I ca n't hold the string correctly . Although , when you want to have something you should try to be consistent and learn to love it , right ? I 'm a Japanese web programmer that is studying English . I want to talk with people of a foreign country during a trip . How can he remember people 's faces ? I 'm going to go on a business trip to Nagoya city to attend an exhibition about dental techniques . I 'm going to go to Germany and France during the Christmas holidays . I want to see the Christmas market in Germany and go to Paris . Actually , the stint at my current job has been shortened . It means mountain girl , yama equal to mountain in Japanese . They wear colorful sports clothes and with pretty bags and shoes . Of course I have climbed the highest mountain in Japan , Mt . Anyway I ca n't recommend climbing mountains in the summer . I often felt thrilled and could enjoy those all . Actually , I have a sleep disturbance . This sickness is called `` Periodische Schlafsucht `` . Drowsiness makes me embarrassed . The doctor gave me some medicine . It seems to complete the recovery , usually by the age of 30 . The next day was a long - trip day . We traveled to places as many as we could : Tian ' anmen Square , Summer Palace , Wangfujing Street , etc . We took lots of pictures , especially at Summer Palace . It was definitely a nice place in Spring ; the warm soft air blew , the green mountains appeared to be tumble masses , the lake lay smooth and clear , and everywhere in it was a fantastic picture . You would feel relaxed and happy . However , there was one thing I did n't like - there were too many people there , people people people . . . A consultant I saw yesterday told me that he painted pictures for fun and sometimes put his components in exhibits . He also * said he should have painted earlier . What is the difference ? I want to go abroad on business near future , so I need to work hardto learn English . I went to karaoke with my friend ! I went to an Indian style restaurant with my new friend . her manners were really bad . She was extremely impolite to the salesclerk . When I was a university student , I was a part time salesclerk . I used to seeing impolite attitudes . I felt bad for salesclerks all over the world . BGM `` Natural Beauty `` Kimi ha tennnennsyok published 1981 This CM was broadcast in the Summer of 2004 . Stress makes me inflexible . My energy is being decreased more and more . I want to go to Venice with my friend . and then visit Venice . Classics makes great effect on our life because they can teach us how to confirm our aim and they can help us figure out things that we must hold , they can tell us what words are the most beautiful and make us feel happy , when we are reading classics . First , in the modern times , people have more and more work to do , so they have n't any time to read books . Can I meet Arnold Alois Schwarzenegger ? LOL I feel nervous now , but I 'm looking forward to going there anyway ! : ) I spend most of my time ( conscious and unconscious time ) in the library . I decided to get some exercise every day or every week to be healthy for my family . The movie makes me feel `` disgusting , ridiculous , warm , and suprise `` at the same time ! I was reading The Guardian this morning , trying to find some interesting news when I ran into this subject : URL I think we 'll get recover from this situation soon and wish for the people in Miyagi and Fukushima a better life and peace . Today , I went to `` Shionoe `` with my girlfriend by motorcycle . The Amego was good tasting . At this moment , there might be many people wracked by violence . I think a person who is not satisfied with their life is usually violent to relieve their bad feelings . `` He loves snowboarding `` was in front of this sentence . `` That `` in this sentence points to snowboarding . Can I say `` It 's right up my way `` ? Some people think it would be a good idea for schools to teach every young person how to be a good parent . The class may touch on the parents ' difficulties and the students can understand the tough situation . I do n't know the reason . The reason why I agree that meats are better than fishes are as follow : There are many trees near my place , and lots of cicadas are singing from early morning till * midnight . I am going on a vacation tomorrow . I liked ' Romance ' sung by Yoon Sang Hyun and Yoon Eun Hye . And also liked `` I Love You `` sung by Narsha . For example many goods shown on computer screen are n't what you actually get . Today , I read an interesting article in the newspaper . Ten years ago , NY was number one , , the second was LA , and the third was Bangkok . About my Hobby My hobby is snowboarding ( ^ ^ ) But I did it only once when I was fifteen . I belong to the snowboard circle with my high school friends . I went to a snowboard goods outlet on this weekend . I bought gear . Hello , this is my first post here . I want to use English fluently . Preaching is difficult . Lately , I often listen to the CD `` Rhythm Nation 1814 `` by Janet Jackson . I endeavor to deal with this problem . 2 . I endeavored to get good marks in the mid term exams . I had to hurry to I 'm going to the hospital But , I know I have to study basic grammar and words . This book does n't have a lot of sentences that explain grammar and words . At least its possible to buy it this year . So it is a healthy fruit . Because of the break down , there are some inconvenient situations . Because of lack of electricity , some things are inconvenient for the uneventful people like me , but I 'm afraid for the people who live in the north east part and the people who depends on medical instruments which needs constant electricity . I thought `` who moved my cheese ? I wonder what this means . . ? `` Then I read it but . . . it was not interesting . Yesterday , I watched the movie `` Harry Potter and deathly hallows `` . I have watched Harry Potter movies released before this , I enjoyed this movie . I am looking forward to watching partv2 of Harry Potter and deathly hallows . at 8 : 30am on August 61945 the first nucler bomb was launched on hieroshima city in japan . The people did n't know what happened , The light turn to darkness and the people who were under the bomb disappearedlike sand . How it is go with wind I was hear about hiroshima bomb but when you hear about thing it does n't like when you see it Radiation from the atomic bomb changed the human body and DNA of those that were not born yet . Perhaps I am a lazy girl . Lately my daily routine start with Starbucks 's black iced coffee with sugar but no cream . The first one is a picture from a magazine . Second and third are captured pictures from Um 's MV . My favourite foods I usually eat bagel with ice cream and syrup for lunch , and I 'm going to do some stretching tonight . I 've been getting up at unregular times lately Please tell me your favorite book , will you ? she did n't understand that these pics showed the same person . Worst of all , grammar is very difficult . I like him , but communication is very difficult . I was pretty hungry , so I ordered extra large portion . `` Everything 's gon na be alright `` is a song that I like very much . This advice carries out my thoughts . If my mother deleted my facebook ID or Game ID of High level , I would not panic but instead quell my anger by writing something , but I ca n't do anything like him . ( but it 's so funny haha . ) I thought getting furious differs between individuals watching it . When I was in International school , I met many foreigners and one of the things we talked about was marriage . The writer said that Japanese education is based on the national isolation policies ( ? ) of the Tokugawa Era . It means that Japanese education is affected by Japan 's isolation . But he did n't come anytime , so I could n't see him . Yesterday , I had lunch with a colleague . She majors in violin . She played the violin to a piano accompaniment . For the concert my friend practised the violin day and night . This is my second time working as a prompter girl . When I took her to find service personnel , no body could help her because they could n't speak English . There was an earthquake in Christchurch , so my many friends worry I never feel frightened . I would like to learn how to write English good and to make some good friends . One week has passed since I came to this farm . I 've been enjoying taking care of the ducks although it has been the first time because they are really cute . Wedding / marriage ceremony I met a Japanese guy who looked about 40 years old , and 20 years ago lived in the U . I think it is the happiest thing for children and young people to receive `` red paper `` from their elders . The tobacco association publishes that tobacco sales will be down by 25 percent . It is a shame that even my English teacher 's English pronunciation was very bad . The doctor suggested to me that swimming is better than jogging for my injured ankle . On `` my `` way there , I stopped by `` a `` well - known ramen shop . I spent 10 hours from Taipei to San Francisco , and I stayed there for one night . I cleaned my house and aired a futon . Like Harry Potter or Danielle Steel or Candace Bushnell . Internet shops offer more opportunities but all the books I really want are very expensive , nevertheless sometimes I can find something not crazy expensive and interesting there and buy books this way . I would like to make friends and practice English here . Does it depend on the situation ? The Beatles are very famous in Japan and I 'm one of their fans . Anyway , the Beatles song that I like best is `` The Long and Winding Road . `` My favorite time is watching TV while eating side dishes and drinks . Android by google . These phones are the best in technology and have wifi , gps , 3g connection and more . I 'm really interested in that . Also I likecameras with high resolution and a good flash most . I really take a lot of photos everywhere / wherever I go . Well that 's all for the moment but if someone has one of these phones then please tell me your experience with it . Moreover , I only bought it about a month ago . I hope I can enjoy the rest of life here and the experience that I got here would be helpful for my life . There are so many adults , thoughts of people tend to complication , sometimes , you do things unintentional , but it 's seems that you 're on purpose for others ; and then , you will ( see ) jealousy from girl 's eyes , do n't dare look into their eye , so cold , unfriendly . * * * * A Singaporean blogger on Naver , the No . 1 Korean search engine , introduced this site on her blog and I wanted to see how it works . There is an old saying in China , `` Trip to China 's five great mountains render trips to other mountains unnecessary , and a trip to Huangshan ( the Yellow Mountain ) renders trips to the five great mountains unnecessary . `` by Xu Xiake , a famous ancient geologist . Another famous scenic spot is the Guest - Greeting Pine , people usually wait there to take photos of a tree so vivid it looks like it 's saying hello to the tourists . However , no matter how many companies I applied for , I haven ' t I go to the calligraphy school every Saturday . It was so delicious . But , I threatened ( worried ) that I gave them too much information about it beforehand . From what I have heard , some people say that movies will definitely be eliminated because they are old - fashioned while other people say movies will exist until doomsday . Big misunderstanding concerning `` about `` by Japanese people ? Although I can write only short sentences , please correct my entries strictly . If you would like to learn Japanese , let 's learn each other 's languages together . Soon I found out that all its feathers were wetted by the rain . The movie was about the end of the world caused by the sun 's radiation . I 'm a Chinese girl . In addition , I have learned a German word `` Hallo `` . Today , the traditional New Year event is being held in my town . But it 's April already . I do n't know exactly who his first owner was . But when the original owner was about to abandon him at a children 's playground around his apartment because he was so naughty my grandma saw him and she asked the owner to take the puppy to my home and feed the poor one , he lived along time with us , but I 'm afraid he could have lived longer . I still believe some animals are better than humans . Although I hate skipping an appointment to chat with my Skype friends without sending any message , I skipped four appointments today . Grade closed But , many students in our grade were absent from school . So our grade was decided to be closed . I hvae to learn more about how to use it ! MT stands for membership training and it 's a time when a group of friends take off for a quickly overnighter . I love this fantastic story / movie because of its beautiful images / cinematics and its cute characters . They are ' Yae - zakura ' cherry trees and are of a different variety from the cherry trees , which bloomed at the begining of April . It was clear and blue . In their mind , English is strongly associated with taking tests . Since globalization keeps going on , we Japanese have to improve our ability to communicate with people from different countries more or someday we 'll be left behind from other countries such as Korea or China . Basically I 've been depressed recently because some of my friends are going back to their countries soon . I said thank you and good bye to him and went home . He was depressed and unusual . Today we are having a forum about the research that my lab conducting ! I will be back at Lang8 tonight if I am not exhausted ! After graduation , I will go back to Japan to be a teacher at a high school The reason why I feel so is that Japan is a homogeneous country , to make them broaden their horizons I know that this story is a little naive ( I mean the BBC serial ) , but I like it mostly for wonderful music , costumes ( Morgana 's dresses are extraordinary ) and pictures . The strong advantage of the book is the author 's original point of view on the `` old religion `` involving the Great Goddess , magic etc . and her disappointment about Christians who does n't understand that `` All gods are one God `` . I am reading a book entitled , `` The Presentation On Secrets of Steve Jobs I will write a report and do a presentation on the book next month . So I made an album for him . Fourth , I have a plan that I go camp with volunteer group , But there are n't many adult so I 'm worrying if `` We can care about children perfectly `` . . . Obama 's inauguration speech I 've heard Obama 's inauguration speech by tube ( web - site ) today . I resigned from my job last month and will work in NYC from Dec . 31 , 2010 . I like surfing , running in the early morning and going to musicals . Who can deny the cuteness of the muppets on the children 's TV show Sesame Street ? If a waiter like him was exist in the real world , it would really disturbing . And this will make your life brighter , I promise ! Do n't ask me why , but she told me that we had to investigate cell phones in Japan . Please look at the picture . In fact , the boss was almost ready to make the decision to expel her . One thing I really want to say , especially to teenagers , is that , please do n't hesitate to tell the boss the truth if Unfortunately , the weather was bad while I was in Taiwan . We actually concede that & nbsp ; it is n't a smart thing to try to keep this relationship after our separation since we do n't have any actual plans to meet each other . I knew that this was going to happen the day he leaves this country from the begining of our relationship . & nbsp ; It does n't mean that I can handle this . Today , I will go to IKEA to buy my TV - board . and I felt excited to see someone 's correction . Yesterday there were just 6 people . . . It was conspicuous because my hometown only has few buildings . . A New Year 's party was held . We drink alcohol until midnight every night . : Close your eyes , otherwise , you would n't see anything . A firefly was flying as high as the roof . If they come again , I 'd like to teach them Korean games . Recently , I saw a lady wearing make up in the train . But many people cry over naughtiness of young people . All day , I was under the sun , I might get sunburnt . I saw a lot of sheep , and took photographs . As for me , it 's illogical to celebrate Christmas on this day , because originally Christmas was related to the Winter Solstice . it is an amazing drama : ) I regretted that I had watched it too early . I want to watch it for fun and studying listening in English . I love English , but I am not good at writing essays in English . In fact I guess I might not sound too modest but I think I 'm fairly good in English , good enough to sustain basically every type of conversation . I thought it drilled so deep into the soil that it had to be close to the centre of the Earth by now . Monsters were coming out of the hole in the ground that the machine was drilling into . I used lettuce , tomato , onion , cheese , fried egg , bacon and a burger of course this time , and made the sauce a bit sweeter which was little more luxurious than last time . I went with some friends and that did not cost so much because one friend of mine gave me his ticket and so I flied for free . My jack - o ' - lantern has two faces , funny and scared . I will take a white handkerchief from my pocket and signal with it by waving . So difficult . The video was about a person who tried to play bumkijum in the river where there has got crocodiles inside . Frist , I saw this and not sure whether is a fake video or not , but I thought the man who did it should have ben eatten by crocodile or got a little hurt . Today I have finally recovered completely . Even though I know that walking is good for health , I prefer `` Gran Turino `` , with its lingering depth , over `` Hereafter `` . The AA English conversation club members came to the party . If an enemy came in front of me now , I would just want to say : `` Do n't look down on me . I will knock your head off ! `` & nbsp ; To achieve a breakthrough on the Global Financial Crisis . My kindergarten was attached to a temple . But we have many teachers and when they started teaching us they start teaching the same thing over and over . In effect , we can not speak English at all . I ran ten kilometres up along the mountain and then down the other side for another ten kilometres . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide open view makes me feel freed from everything . If your native language is not English , do you remember your first English class ? I was so excited when my first English class was about to begin . After surfed the net for a while , I got hungry and made myself spaghetti . Although I do n't quite understand what the movie is all about . This actually happened 4 months ago I cried again and again and finally my boss answered me ! I am a student of the dept . of commerce management . For example , my friends are from Okinawa , Fukuoka , Oosaka , Kyoto , and Sendai etc . . . And also , there are a lot of foreign students from all over the world . It is the greatest thing in my life that I can meet many people who come from different places ! On November 2nd and 3rd , there was a festival at my university . The bad thing is I do n't have many options . Vacation Abroad ! I will join my friends in Singapore and we will stay there for three days . Although the weather forecast said that the rainy season is over , It has been raining frequently for the past few weeks . When the solar eclipse could be seen in Japan , The weekend is over , I do n't like monday , and im login the lang8 to see whether someone corrected my diary , but the result let me down . It 's not that I am missing my family and friends in Korea ; I opened my refrigerator . I had some chicken . First , I marinaded the chicken in soy sauce , cooking wine I then rolled the chicken in Japanese basil . I fried the chicken . It was very delicious . I will cook it again someday . I looking forward to meeting us . `` day hospital `` meaning outpatients clinic Yesterday I arranged the song for we will use for dancing , We could sing to the accompaniment of a guitar which the master played . My favorite sport is table tennis . Lang - 8 is very interesting because many people are communicating with each others languages . but everything that was said has truly become past tense ; which we can no longer change through useless force the beauty of your background resembles a beautiful burning fire Because I will want to enter university . I want to study biomechanics . I went to the driver 's license test course to pass the driving skill exam this morning . I was so tired today , I woke up at 7 am and rushed to my training place . We started our rope skipping training in the early morning until 11 . 45am . Just like me , she likes to travel a lot , but we do n't have enough time . Last holiday we went to Normandy in France , but this holiday we are going to go to Italy . Today is the last day of my holiday in the Spring Festival . I will have to go to the office tomorrow and work hard every day , so I have to wake up at 7 : 00AM every morning . But I did n't speak English well . The foreign conversation school that I 've been studying English at for about five years has gone bankrupt today ! Japan 's English education system 's history . So `` English native speakers `` means Americans . This morning , I read all of the handouts the teacher gave us . I 'm a beginner here , but I 'll make effort 's to help guys who want to study my mother tongue , Japanese in turn for your help . I 'd really appreciate if you helped me ! ! I was involved in a dance club . The only thing I can do is to apologize , explain , and hope that he will forgive me . I think that this is a also reasons why people commit suicide here besides of the unmaintained path . The atomosphere was very quiet . The board said that those caves were used to preserve foods several hundreds years ago . As I have long expected , today is the day that my new school term is starting . Of course , I was studying hard at my house until now . Human power created by pedaling a bicycle is being considered in an institute as a renewable energy resource , says the Shukan - Press in Yahoo news Japan . It says you can watch TV for an hour using the power from pedaling a bicycle for 3 and a half hours . At first it makes me angry , but then I think that they are right ! The sauce contains mustard , mayonnaise , a little bit of garlic powder and chili powder . Lang - 8 is a special website . I 'm glad that I can use it to improve my second language here . I was shocked at the news about Asakusa samba carnival 2011 . The participants are American , India , Brazilian and so on . We ate our lunch in buffet style and we were full and satisfied . We bought clothes , ate an ice cream , play a console game and talked about fun stuff . There were many dogs and kids at the park . thay are really good and cute and have ideal figures - long slender legs , well knit bodies and beautiful big smiles . I am senior university student . I went to San Diego with my husband and dog for Thanksgiving . San Diego was different from Chicago in weather , topography , even in houses and people . 3 - Dreams . This interesting topic has been on people 's minds for a long time . Some people even say that dreaming is a sign that we are sleeping the perfect sleep . I 'm listening a song called ' Nothing Lasts Forever ' by Maroon 5 . It was a SF & horror short story and very fascinating to me . And I found that it was made into a game . I thought if this short novel would be made into a movie , then it would be very interesting . I read a comment on Youtube that this novel is going to made into a movie . And also someone commented , `` Where did you hear that from ? `` When I searched for other information , I found a post that translated in Korean ( but not all of them ) . I 'm so exhausted from standing through the night . nai ! un daijoubu daijoubu , netto tsunaide , tomodachi no Kazu to hanashi wo , netto ni tsunaide , skype tachiagete , log in . . . but I 've made up my mind to only study hard / concentrate on my study . Today 's diary which I was just writing has disappeared ! I do n't have callange ( ? ) to write the same diary . . . I have to prepare boiled eggs . All of the media outlets here keep reporting news about New Zealand 's devastating earthquake here which is said to be New Zealand 's deadliest natural disaster . Please tell me how to study ! ! This is my first time writing something about love . I left my girlfriend two weeks ago . I can log in on the weekend ! ! I want to improve my vocabulary and train my ear . For example , I microwaved the pasta that a customer bought and forgot to take the vinyl out which made the pasta explode . Anyway , we ` re going to meet tomorrow and I hope it will be a great rendesvous ! Many historic architectures are much bigger than Japanese ones , such as temples and castles . `` Please remember me kindly to all your people . `` Because of a lot of drinking chances , my condition and wallet funds drastically decreased . Today I encouraged myself to But my opinion caused a strong because we decide the final choice we need . Maybe she was right . I 'm a little nervous , but I 'm looking forward to working there . Got an iPod touch I got used to traditional American happy endings and I hoped that everything would be all right until the last moment . . . Nice to meet you . My hobby is fishing , skiing , and playing the guitar . I watched the movie in English . I want to be good at English . we were studying together and one of my friend said I could n't remember who paid the bill this morning I woke up boarding house of my friend S , when you eat out at restaurants you normally can take the leftover home . or other European countries , which will lead us to save food , money and the earth in effect . ( In Japan , the beginning of the semester starts from April ) Although I have the experience of doing man - to - man one - to - one lessons , this is my first time performing my lesson in front of a lot of people . And I was very nervous and could n't do a good lesson . Legs : Cross - legged , the right foot placed on the left thigh , and the left foot on the right thigh . The Zen Master struck my shoulder when I lost concentration during the practice session . I want to improve my english , so need your help to correcti my english : ) I choose to learn physics department there If it 's not rainy , I would like to go to a sports event in a local junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operationg hours of their airports to accommodate passenger and cargo flights from foreign countries . Residents near airports argue for curfews . Discuss both points of view and give your opinion with reasons . but , I feel a comfortable mood . Hi , I want to learn English . haha I am a bit clumsy Anyway , it seems so exciting to ski or snowboard in a foreign country ! But now I still have a muscle ache . . . Please , correct this passage . We will play a practice game tomorrow . I could speak in English fluently . I would be capable of a heavy workload . and be cheated by vendors . It took over 40 minutes , but it was good exercise for me . My laboratory was not comfortable since it was terribly cold and dry . ( more concise ) Actually , I decided that I am going to remain here yesterday . I could n't bear the heat . In addition , many newspapers said the TEPCO CEO 's annual salary should be cut down more . Recently , I read and voice the same article such as address , novel , thesis and so on . Ultimate Frisbee My friend Jeanie took me to the event . Before the game started and after it was over , I talked to many American students and all of them were so nice . The teacher complimented me on my pronunciation . The shoes that I ordered came to my clinic yesterday . When I saw them on the internet , I could see them black and the infomation about the shoes and it also explaned that they were black . What is difference between ( the ) and ( a ) ? How should I use them ? I want to hear about how Cambodia is now from him . I think doing exercise is a suitable way for me and I started go jogging after work . But the problem is when I go jogging . I 'm a little bit concerned whether I will get sick because of the hard schedule . . . I know a light daily exercise is good for the health but I should think of when to run . I 'd like to know your thoughts about it . The silver weighed about 200 tons . I am reluctantly go to college because of the chilly and strong wind . I thought she would be very pleased when she entered the room and saw these small decorations . When I saw her at first , she looked gorgeous ; like a super model . Unfortunately , I could n't see her there , for various reasons . We Japanese love that poetry . I prefer writing in English to listening , speaking and reading English . Therefore , in English class , I sometimes felt embarrassed with my poor ability of English I learn English . But even 8 marth wo n't be a day off because of the stupid university 's schedule . she said `` I watched an English TV program , It shows the latest English to us , and famous TV programs have the power to keep anyone 's interest . `` It contains big fillings ( which are usually , meat , onions , carrots and potatoes ) I am a university student but I am not good at English . It is so moist that we break a sweat every time under a non - air - conditioner ! There looks to be much more sediment disasters by the heavy rain , especially in the Kyushu area . They always make me feel happy . Today would have been fantastic if it werent for the bad weather . I heard and was very surprised that there 's no rice cooker in a foreigner 's home . something like ' day book ' when you translate it from German into English , so perhaps it is something where I have to write what I 've done today . When I finished , I went outside and helped my grandpa in the garden . It started to rain , so we came in and my grandpa and I tried to make a meal , but it was n't good , what we cooked . And I 'll do exercise tonight . There are many types of drinks that taste like beer at the supermarkets in Japan . I was advised from the doctor I 'd better not to eat or drink too much , performmoderate exercises , avoid a stressful atmosphere as gout is a desease caused from unhealthy way of living . One of my friends from Canada has a lot of knowledge in improving health , ( There 's nothing to stop him talking on that topic once he starts , and you 're doing nothing but just nodding . ) Although I 'm interested in this book cover and title , I hardly have the time to read this book as I am busy studying German and attending a Political Science course . But now I 'm in Beijing , so I 'm homesick . , I try to learn English , but I do n't like to learn words in another language , which I do n't use in my daily life . If I do n't use a language every day I 'll forget some of the words . I do not mean that 's bad , I hope everyone has a happy life . Birds Singing I sometimes hear their song at the same time . I can hear these songs near my house . Please check the grammar and logic in my blog . An apology from Japan If you speak native English and want to learn Chinese , then we can be language partners . Second period was boring , and in third period we ate tortillas and salsa ; fourth period was study hall , and in fifth period , my friend and teacher were so kind , so I felt happy , and ( but ) the other classes were also boring . My stomach was full from all the rice . But it was very nice movie ! It 's a serious but heart - warming story . In the evening , I did n't bring my text book to my English class . For example , I like to invite my friends to my place , enjoy my favorite cigarette in my room , listen to rock music , and drinking a little alcohol before going to sleep . . . so on ( sounds like I am a teenage boy XD ) . Living under their care make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . This is my first entry , please , have patience with me . I do not speak English but I really want to learn . The Remains of the Day is a great novel written by the Japanese novelist This novel is the winner of the Booker Prize . The protagonist in this novel named Mr Stevens is a great butler in a house called Miss Kenton loves him also and she spends a lot of time trying to draw his attention to her love for him . He knows that , but he represses his feelings and ignores her . The first choice is doctor . The second is engineer . But , so long as I do not give up , I know that there 'll be an end to my hard journey . My car has a warranty of 2 years without any limit . I have it for 75 month ( ? ) and has my car running 30000 km because I 'm like a tourist on a car . I was sad sad , but I remembered about yesterday 's work . The day before yesterday , I cooked rice with hashed meat . I had not cooked too much until I became a university student . So , I was researching it for a long time . For example . . This situation has recently been severely condemned . I went out with Yumiko Shaku . Ms . Shaku is a Japanese actress . Then you put them into a pot with a glass of white wine , chopped vegetables like onions , a piece of garlic butter and a little bit of red pepper . You seem happy . Today , it was held a display of fireworks in my local city and since it has been conducted nearby my house , I have to hearsounds of the fireworks every year whether I am unwilling to or not , because I do n't have a girlfriend . In fact , I have learned English during junior and senior high school . We would often wave an antenna to catch signals from the transmitter while monitoring . The explosive on the GPS collar was triggered when we pushed a button on the controller . Suffice it to say that the point of my research was to see whether or not the distribution of the persimmons coincided with the emergence of the bears in the residential areas in 2005 . Nothing has happened yet ! I woke up around 7am and I thought that it would better for me to go back to bed so I could have some extra sleep , and since today is Sunday , I have a right to indulge in my sleep . I gave up on sleeping and decided to cook something . I borrowed the DVD `` Sabrina `` last week . I wear like the same clothes everyday . hello everybody ! I was so excited since I did n't need to resume my assignment again ! Ah , I assume I 'm going to move out of this house on the start of November , but have n't found a new place yet . . . although my studyng habits are n't good enough , I 'll do my best . . In my eyes , she is an 88 year old woman acting as my grandmother and guardian , I wish her good health ! You have to know the customers , competitors , and products . My job is to loan out electronic devices . so I see many travelers . but we have few customers - - only about 10 people in a day : ( I 'd like to talk to travelers every time I see them , but I 'm worker , so I should speak fluently in English . . , , ( confusing sentence ) I started a new project about food this week . The first chapter tell us that it was the god who created the world . Someone may believe that `` God created the world `` and someone may not believe . As an elementary school student , I hated diaries like this . so I had a long rest last night . Hello . My name is Hayabusa . I 'm going to Hukushima with my boyfriend and club friends in February . And going to Kyoto with my best friend . Of course I will never fail to live up to what our parents expect of me : I had hope that during these days , I 'll be able to walk in our mountains , collect some spring flowers and feel the fresh , warm sunshine on my body . Every single room is already cleaned , on TV there are only 3 channels , so probably nothing interesting there . I think we are going to the French restaurant with you and my daughter . Two researchers . I do n't think it 's a bad translation , the language represents the national culture , if I want to understand novels and the other arts from abroad , I do n't think it is a good idea to translate it . I checked it with a mirror and did n't find anything wrong . However , it hurt and started to swell . I am going to put some eye drops in and stop using contact lenses until it gets better . A big earthquake happened in Japan The building which I worked in shook very much . At that time , I did n't know that many people suffered from much more damage . I discussed this problem with my co - worker who stayed at my home . ( Her home is too far to go back on foot . ) What should we prepare for in the time when the infrastructure such as water , gas , electricity stops ? I will graduate from my university after one year . In fact , I am a little worried about my job which I thougt was so nice . I want to bridge between Japanese companies and foreign companies . I think I want to take it easy . I knew it through a TV commercial . I wanted to look for some information about Harry Potter and the Deathly Hallows part 2 . Therefore , many people have already watched the movie ; they had seen the kissing scene betweeen Rupert Grint and Emma Watson . I 'm not crazy like this but I 'm a bit disappointed as we have to wait for it until August or September to watch it on DVD . I downloaded some applications like Kanjiryoku , Pac - man , Fairies Life . I do n't know the details , but I thought that their family relationship had become very strong . They love a stuffed frog that we have . We got on airplane with Kero . I do n't know whether or not they are better than the job I am doing now Your career is just beginning The head of my ward told us that he would like to hold a feast at our public house . When I was in university , I read lots of history books . I can concentrate ( center ) myself when I do . ^ ^ It will be tough , but I believe in myself ! This Capilano Suspension Bridge is 137m long and 70m high / in height . But , it was very difficult . I CAN ' T speak , write or hear English . This is the same for almost all Japanese people . I was taught English in junior high school , high school and university , but I still do not understand English . Therefore , I would like to be able to learn english as soon as possible . It 's delicious ! Sometimes there are foreigners who have funny Kanji tattoos . I 'm waiting to have a meal I plan to meet my girl friend today . I was glad to see famous scenes of Swan Lake . Near my house , KIA has some volunteer language classes , we call them `` English table `` or `` Korean table `` or `` Chanese table `` This article was `` Disabled athletes have balloon in their court . `` He ca n't speak because he is using a respirator . I start keeping my daily entry since today . I 'll be glad if you enjoy reading my daily entry . I noticed that American movies ( are filled with humor ) , and European and Asian movies have great story lines . My problem is , I ca n't stop watching them . It was very exciting to watch the later part of the game , but the first half was boring because both teams attempted a brake attack . My friend SONG introduced me this website just now , which looks funny . I tried to change to another bus to go my house . It was the first time I had taken it . I have something harry . It 's my telephone and modem to connect to the internet . I had only 9000 baht that I spent to connect the internet and return to my mom 2000 baht ; at the moment , I was poor . The teacher asked the class whether earning money was a good or bad thing . But I ca n't think that it 's a very very good thing either . Friday night ! It 's Friday night . I have a sore throat from the cleaning spray and my hands get rough from the washing up . Today , I have two classes in my major . Weather is very good and very comfortable . My company is close to the park that the ward office maintains . Usually , people look forward to cherry blossom viewing . so most of people had cancelled the cherry blossom festivals . I will tell the following story tomorrow . I saw Charice on TV Do you know the Filipino singer , Charice ? That may be the reason I feel afraid to meet foreigners who can not speak Korean . The Mid - Autumn Festival My trip to Huizhou I 'm home . I feel so tired . . I want to go bed immedietly . . . . I ca n't speak english very well as if I forget everyrthing I know john said practice made a perfect which means it makes me feel alive and makes happy There is a song named < who says > by Selena Gomez , who is Justin Bieber 's girlfriend , which I love the best . It 's a beautiful song which has a large numbers of fans supposedly . But it is different from the others . Interesting huh ? I 'm going to my grandmother 's house in the evening . Tonight is one of those nights where you are with your friends ( who are dancing in front of you trying to have a good time ) , but you feel like you are missing something or someone . I just wanted to share my thoughts . I hope tomorrow can be a better day . And a suicide rate has been increasing in recent years . So , the government needs to change the policy about worker 's environment / working environment . Moreover , because of its efficiency and convenience , we use technology even if we can do without it . And some traditional arts are in danger of disappearing because young people are less interested in them . Hello , Thank you for coming to my page and helping me correct my journal entry . Then we sent returnable postcard to all of the 400 alumni , all men . After making the postcards , it was time to enjoy the full moon in autumn with good food and good music . We grilled Saury on Shichirin , which are used for traditional Japanese cooking of Vegetables , meat , fish , and other things . I like cycling very much . But of course people in the epicenter got extremely damaged . Usually , I should write Koji , but the American teacher at my university said I had better write Kohji if I went to USA or any other foreign country as the pronunciation of ' Kohji ' is more natural ! ! Another person in the passport center told me that if I decide to use Kohji , I have to use it all the time from now on when I write my name . I have asked my teacher friend how he uses photoshop to detate a background . yesterday my friend helped me to clean my computer and delete the virus After listening to four announcements related to each of the pictures that were printed in your test book , you should select the right number , among four , that best describe them . because I had imagined that `` to hang up `` was used for `` picking up a telephone `` . The trouble is that I often skip it in spite of knowing I should read . I only played about thirty minutes , so I did n't sunburn , which is good . He is tan because he surfs every weekend . Surprisingly , there were some people who were even tanner than him there . I suppose they caused some trouble . Just when I realized November has started , it 's already finished . December starts tomorrow . sister also joined the exam . All her roomates had However , my seniors ( or upperclassmen ) said it was just so so , obviously my seniors ( or upperclassmen ) had confidence in passing the exam , He screamed because he wanted to sleep . I am sure that this message is true because I had experienced this before . Most families will watch special programs for the Spring Festival on CCTV and chat together while waiting for the new year . I nedd to write slogans for some of these products and services . Write a sentence , [ space ] use comparison . Recently , my hair falls out very easily . : O ! ! One way is from spring flowers blooming . Some sales clerks are very friendly in Japan , for example , at Starbucks , but they never joke around . . . Ordinarily , I go to a shopping arcade which connects with Shinsaibashi - suji shopping arcade . You can also say usually My English probably has a lot of problems . They are speaking , reading , writing and listening Anyways , learning English is harder than I thought . This time was the second for me , It made me very relaxed and comfortable . Above all , the cost was reasonably priced . I thought I am proud of him and that I am a very lucky mother because of I have a great husband and wonderful son . The Olympics have started ! Especially oral English and listening . I was very sleepy , but I did n't have any classes , so it 's okay . Because I just woke up , I 'm really hungry , so I ate a lot of sushi . This device enables people to have relationships with others all over the world . But sometimes we do n't care about a person actually in front of us . His looks as if he has no enthusiasm for anything . He wanted to sleep but he could n't . Ah , I 'll go to Italy again someday . I bought a video game `` Assassin 's Creed II `` for XBOX360 . The relationships are sometimes obscure and many of them are formed impulsively , such as friendships and love relationships . In contrast , Facebook has succeeded in expressing them on the web . The winter from the four seasons by Vivaldi is good 5 minutes after we had entered there , we had gotten sweaty in small steps . I think that I ca n't sleep deeply because of the heat . But I 'm confused because learning Italian is reading Roman but English is not . I 'll resume studying Italian when I have made progress in English . Today I found this language learning site . During this season , flowers come out splendidly , and everything starts . I told to the participants about the following : [ colon ] there are black and white pictures Marylin Monroe . picture and in my favorite store , `` Bathroom Graffiti `` they sell pictures of Marylin Monroe gnawing on her nails ! In 2005 , there seemed to be lots of sightings of the bears in residentiall areas around Japan . As far as I 'm concerned , they had been killed for nothing besides the safety purpose . Some parts of them are edible and I do n't know what to call it , but some of their organ seemed to be sold for expensive medicine . The Argentinan football squad will come to Japan on October 8th to play a friendly match . The presale of the tickets began last week and I tried to get 2 tickets , but unfortunately I could n't get them . The official sale of the tickets started at 10 o ' clock yesterday online . There were so many people accessing the website that I could hardly access the purchase menu . Finally , I could do it after a 20 - minute effort . I met many different people . A couple of days ago , when I worked there , I happened to miss something . Yesterday was very hot and very wet . I showed the pictures which we had taken in Korea . So I have no complaints about it . . . except the price . Everyone have his / her most dislike things . For example , I extraordinarily dislike cockroaches . Ich lerne Deutsch . Oxygen itself is not combustible , however it is required for nearly all combustion as a gas that supports the combustion process . But of course , while they were talking about their favourite topics , I could n't follow them . I hope this new job will be awesome and really nice . . . This title is not a Daniel Powter 's song ( ^ ^ ; ) . My favorite is travelling , especially going abroad . We took a sauna and had a body scrub and massage . I found that laughing made the people open their hearts . Most of their storylines were like hollywood movies that I had seen before . I have invested almost all of my assets in to stocks , mainly Japanese stocks , but also those of emerging countries . Then he will become a member of the Pharmaceutical industry in Japan , as well as myself . He will use English for his work too ! Essay . . . Solution to Overcome the Threat I found that it is very good for everybody who wants to learn a foreign language . Secondly , I have plans to deal them on a website . As your guys see , I 'm a boy and I have gotten involved in this since I was 16 . At 29 years old , when I was working at a swimming pool as a part - time job , an elementary school student said , Yesterday , I apologized to my customers because I thought that When I was in my undergraduate course , I took some classes on French , but I 've forgot most of what I learned unfortunately . However , I always end up adjusting the batter many times by adding more milk and powder . Two bags were described as `` purse `` , another one was `` clutch `` and the last one was `` mini bag `` . Nevertheless , In many cases , exam questions are about complicated grammar points that never occur in daily conversation . So this is the most exciting moment now that the summer is getting closer and closer . I should have kept a diary on this site every day . . I want to get a high score in TOEIC or TOEFL . `` especially `` long distance love . So I 'd like to keep the motivation and be able to communicate with a lot of foreigners . But because I did not participate any organizations like Students ' Union , I get no extra credit . I do not know whether to join same activities or study much harder . I did n't set my alarm . Because I had parted ( broken up ) with my boyfriend . Of course there is a Japanese kind . I especially like the curry in Thailand . And coconut milk makes the taste mild . I will go snowboarding this weekend . Now , I am so into `` tomodachi collection `` game on the DS . The story was based on a true story regarding a Japanese young woman ; she was a bride whose remaining days amounted to only 1 month . So Chie disappeared from his sight by herself . But she felt shocked that the shape of her breast was cut off because of the operation . Unfortunately the happiness did n't continue long . Because Chie had cancer again . Her doctor told her family and Taro that her remaining days was only 1 month or less than it . So after crying I feel so sleepy now . . . I ca n't write sentence in English without `` Google Translate `` , _ and if I were to be speak English , I ca n't say practically anything . but the day of the exam is approaching . She got her driver 's license about a half year ago and has n't driven the car that much , but today , it was her third time to drive a long - distance Then , she looked into the mirror , she checked that the left side was facing to her . If thats what you mean . Then she was able to control the car and ( it / everything ) was back to normal . It is so popular that you may have even seen it in Japanese TV programs ( I . e . if you like Japanese animes / TV dramas ) . mina san douzo yoroshiku It was shocking to see that dogs are dyed black and white ! It 's the story of the guy who want to be the king of pirates . When she reads it , my wife is so concentrated that she neglects my calling . . . I thought I had to ascertain whether the judgement of the Academy was reasonable or not , so I went to the theater . However there were some unclear expressions about the British Royal customs . I thought Britain is the Queen 's kingdom because the British national anthem is `` God Save the Queen `` . I 've celebrated the Lunar New Year for 3 days . It 's such a big holiday in Korea . However , I do n't understand why we should celebrate the Lunar New Year , cuz it would be better to celebrate the solar calendar . I would like to exercise and live more fully , starting tomorrow . Today I had a very funny nightmare with headcrabs ( from the game half - life ) ! XD Very strange . . . So I phoned her a couple minutes ago . To all the beautiful girls and boys or kind - hearted men and women , I 'm a sophomore student , and will be a junior student after the summer holiday . I had an English conversation class . Such as , The Mentalist , CSI , Hawaii 5O and of course Agatha Christies series ( and novels ) . I am writing a diary of the lang - 8 community at first time . for example , my major papers , and preparing for a test , I am especially preparing for the listening test and vocab test . Now , I 'm studying English at my university 's conversation club . It was awesome . Today , I ate lunch near my university . It was terrible ! ! The British museum is famous all over the world . The museum is famous for art . the museum . The man is very embarrassed . He deletes the picture from camera . I found I must make an effort particularly on listening . After taking a college entrance exam , I felt relaxed . Of course , who would study in this situation ? I have some variations , Japanese taste , Thailand taste , Indian taste , and so on . There was one time , a Nepali student in my class taught me how to make his country 's curry . He used many kinds of spices . Moreover the doctor asked the man `` Do you like a gambling , driving a car at a high speed or spending a lot of time on women ? `` Because , this is my home town and Many hula dancers were dancing on the stage . I 'm excited ! ! but first I will continue ! Reflection . I think It is important that you think about your listeners when teaching English or other languages . I prefer exchanging on a regular basis , but irregular practice is also welcome . I 'm interested in traveling `` . So I want to be a traveler . So now I want to be a pharmacist . I will earn money by working as a pharmacist . I 'd love to answer your questions ! ! It is four days long , and it is going to begin tomorrow ! Yesterday I saw a very funny film about Bushmen . Yesterday evening the film was successfully downloaded and I had a lot of fun watching this old movie . I started loving Bushmen even more - they are so smiley ( informal ) , so naive . It is about one Bushman who goes to `` the end of the Earth `` in order to get rid of a bad thing ( a bottle of coca - cola ) that has caused trouble in his tribe . I can recommend `` God must be crazy `` for everybody who likes hoaxes , nature and old movies . However I could buy the air cleaner for about 20000 yen at an internet retail shop . At present , I have a number of acquaintances but as for me , I have only one friend who can understand my thoughts fully and stay with me whenever I 'm blue or down . Her name is XX , and she 's my best friend . Even now , I still remember exactly how I got acquainted with her . It was a nice morning but unfortunately , I was late for the first day of class . My first impression of her was quite great . Moreover , she also has white skin and thin lips . And whenever I get into trouble and really need a helping hand , she always stands by me and sincerely encourages me . The extracts are used for cosmetics and others to protect from aging or wrinkles . But it is really difficult because NYU requieres a 85 score for TOEFL itb . Recently I have n't exercised , so I was really tired . I also hope that I do not have to pay the twenty - pound reconnection charge , as this whole situation is not my fault . About 10 years ago , when I went to kindergarten or elementary school , I quarreled with my friend . Sometimes when I go to the hospital , the doctor says I am going to give you medicine . I bought a book `` foolish economy ! `` , which is a paper back pocket edition . For a few days now I 've really wanted to eat spaghetti . and I really liked the design . As you probably know we pronounce a word as we read it : in most cases there 's a correspondence between the sound of a vowel and consonant with its character / letter . The announcer was joking about our difficulty of pronouncing the name of this volcano , especially after listening to its real pronunciation . But the most gross , annoying thing is when he thinks he 's mating with Boubika , iieuw ! It 's just too gross and really annoying . Boubika is too docile to growl at Aristos , or just muster up the courage to bite his balls off ! The British English accent is easy to recognize for me . `` Gyaku `` means opposite . As far as I can remember , `` apple diet `` , `` grapefruit diet , `` and `` boiled egg diet `` were once popular with the Japanese woman . I do n't know how to further explain my feelings , so . . . . I have never learned how to write Japanese . Last Saturday my friends held a lunch party to celebrate my birthday . My friends visited a soy sause factory . Street uses jumping landforms , riding on walls and gliding on the hand rails around the street during the competition . During the school festival , I was in the haunted house all the time . So , I did n't write a diary about Jeju . Recently I often go to school On the other hand , the movie producer creates a way for readers to enjoy the atmosphere inside the book . Thus , the moviemaker may rewrite the plot or even create a surprise ending . Yesterday was Saturday . Generally , anytime I go out out , I always find something that makes me remember some unforgettable memory - - or at least , it makes me think . And when the trafficlight just remained 17 seconds , a beggar passed by . In his arms he was carrying a doggy . It was not strange because there are many ( ? ) beggars in this town . I was wondering why a beggar would carry his doggy when he begs . At that time , the trafficlight changed to green , and the beggar did not have enough time to come to my where I was . Well , I am not a studious girl , I can not insist on reading English everyday , even for 30 minutes . I hate myself because I ca n't learn english . I have already bought my flight ticket to go back to my country . I think Destiny 's Child who split up in 2005 was the greatest girl 's group . As I mentioned in the previous message on this site , I 've been practicing listening in English by listening to songs . I think that the young people maybe can , but not the old aged people . So , I decided to go back to America again someday ! ! ! ! ! Cathy asks Miss Isabella why she has this attitude towards her . Miss Isabella confesses her love for Heathcliff and accuses Cathy of being a selfish thing for wanting Heathcliff for herself . Maybe I can help you ! A chicken curry , I will make it ! I have been very busy and I have n't written on Lang - 8 for several weeks because I had to write a article . Can you view this website and write your diary ? ? ? ? ? Some of the them havewireless radios , motion sensors and touch screens and they each produce different noises . It can be true that we can manage everything with only a phone . I think cooking is interesting , and I feel I can get relaxation from it . He met , face to face , an unexpected enemy , Ethan . I think it is interesting because korean food does n't use rice paper . Recipe for Vietnamese summer roll is that raise meat and various vegetable in rice paper and roll a rice paper . I hate studying writing English or grammar etc . . . In fact , I must take theTOEIC test . Even though Japanese people ca n't use grammer correctly sometimes . Especially young people ca n't write right Japanese sentences , I think . There is a `` te - ni - wo - ha `` in Japanese , that 's how to connect nouns and verbs in Japanese . So I suggest for foreigners do n't mind such a thing , we can almost get it . In addition , Jonas was a Yankee and hated all Southerners . As I can see in this school , nobody is interested in foreign languages including the teachers . I ordered vegetable curry which twelve kinds of vegetables were included in it . but now I find it difficult to speak English fluently , and to listen to others speak English . I think this is Asian culture . I want to know when they call a teacher , how do they call them ? Please refer to Seeing so many foreigners can learn Chinese which is already a hard language , I think I should word hard too . At lunchtime , Yoshinoya is usually crowded with many businessmen . However , I do n't play anymore because I got a referee license 9 years ago . I get to meet a lot of different people and to be at many games . Today is remarkable for me because we planted a tree with my boys . How I wish to make our city beautiful and green as a fairytale . My efforts are awkward and shameful . In my opinion , tipping is unnecessary . We should make people happy even if they do n't tip . In Japan , if you go to a restaurant and you have a good time there , you can go there again and again . What they lose is each other 's trust and valuable friendships . I laughed when I heard this . : p Graduates of other colleges or universities are not welcome . Personally , I like being in the atmosphere of celebrating April Fools ' Day . However , I hate being teased by my close friends for no reason . Each of us hate to be teased by others . There is only one holiday in the year so get ready for a fun and interesting April Fools ' Day . I thought that the flower school was a solemn place . Thank you for corrections . Her ability makes me change my heart . She does n't only have Grammar skill but also writing poem skill . Because since I have been here , I never use my own car . I especially like `` Venus `` . Although my younger sister loves Maru more than I do , Maru always goes in my room . Just trying this website . She told me she has not talked to her father for more than a year . Is it a big deal ? The way of my shopping has been convenient , meanwhile ever since the international company came to Japan , many local bookstores have gone out of their business . I 'm a little collector of My Little Pony figures , and I love toys and all stuff from Hasbro . inc which is a toy company like `` Little miss no name `` , `` Wuzzles `` , `` Rainbow brite `` , `` Popples `` , and `` Care bear `` . of MLP figures are still nice , but I 'm not attracted to them so much . . I love toys and characters in the western style . this is because of the deference in the network system and / or the business custom in the cell phone business in Japan . He was very cheerful , active and having a great talk , which entertained his grandparents very much . I really enjoyed this moment . I feel very lucky . In Japan , having a gun is extremely abnormal thing . Today 's event . When we judge our times as good or bad , we ca n't know until the end . I work at the customers ' company with my colleagues . the customers started using it . If my guess is right , in other words , can I replace `` best regards `` with `` all the best `` in the future ? Lately I have been staying up late ( late at night ) to prepare for the tests It 's been over 10 days since I wrote my last entry . It was really funny and interesting . His name is Paul , and he is certainly Canadian because I can see him on a webcam . That 's also why this class is relatively expensive although I only take it once a week . He told me that `` V `` is a drama about aliens and really interesting . ( is `` is `` in this sentence correct ? I did not sleep too much because I was trying to find them . Because my MacBook 's battery was not charged accidentally , I went to a Apple store in Ginza , Tokyo . Hence , for people coming from different countries , the Narita Airport is more famous In recent years , the voluntaristic spirit has spread among the Chinese people , especially among youngsters . Without them , it would be a tough task to hold this un - precedent Olympic Games . English beginner Now I 'm planning to take a trip to the Philippines because it 's warm there and I 'll be able to practise English with the Philippinos . And I must ask my parents . She 's going to Indonesia with her husband . In Taiwan , Christmas is a festival that we celebrate with our friends or lover , not family . I think a plan is finding a part - time job where I can live in the work place and get meals from the work place so that I wo n't spend money on rent and meals . So , she chose this checkered fabric . I can hopefully exchange with many people . The supermarket is named `` FOOD ONE `` , one of the cheapest supermarkets around . For example fruits , such as Oranges or Grapefruits , are imported by USA or South Africa . Meets and Fishes is imported from the USA or China . The purpose of this year is learning english . Today I got up early to eat breakfast . I always get up late in the winter Besides today , the two things are to do the winter vacation work . I am determined to write English everyday , so I try to write in My Journal everyday except when I ca n't do it . I got to know a lot of my future colleagues there . Then I noticed that the department I am supposed to join is ( somewhat ) smaller than the other departments . The news really shocked me ! Then , my college canceled the enrollment ceremony due to the big earthquake . Now , I will study for the test ( TOEIC ) on this sunday . When he was sent to the hospital for his serious disease which was caused by his unlimited smoking and drinking , He decided to quit smoking and drinking . . . . . . But after about one or two years later , he began his ugly behavior again ! but he did not even care and continued smoking . . and recently he was attracted by lottery . . you will never win when you play such games with government ! And with the bad effects of such lifestyles , he can not control his emotions sometimes ! sometime I think his temper is out of hand ! he even roared at home . . but if this kinda situation continues . . . . . It 's hard for me to get up early morning . I am now working in a foreign trade company . I have to talk with my customers in English all day Any topic is okay . We had a nice day . The Google satellite took a photo of something which is almost 30m long and looks like a snake . They are n't sure if it is a real snake , but it is highly possible . I think that there are many mysteries in the world . There is a very interesting myth in my town also . Two hundred years ago , a wise buddhist priest who can see the future told that my town would be destoryed by a huge flood . It was just a myth before one statue was founded . However , we had a really big flood after that , so many dwellers pushed him to bury it . It is a very interesting myths to me . Since I entered a college , I do n't have much time to study . more than 10 years have passed since I graduated university with a degree in English . However , after graduation , I never really got the chance to use much English . The typhoon has passed , and the weather is really nice right now . The new staff said , the other staff members taught her a different way to do something . All of these are good methods to ease stress . Although we know that is not good for the Earth . Please tell me some other good short sentences for use when praising . Even after he went back to Sweden , he continued to study Japanese . from different countries also loved Japan ! ! ! ! Our appearance is given to us by our parents , and it is what we differs from others and it tells us who we are . Life is short , and we should use it to pursue the most important and valuable thing - - - - a beautiful heart . Now , I have become accustomed to working in Tokyo , I think I 'll try to resume this dairy . I almost had no time to relax myself . . . For instance , a hair designer would start learning to be a make - up designer , an animation professor would change his major to be a biology professor and a bus driver would start selling motorcycles . First , let me introduce myself . But it costs 4 times more than the original one . that one second is n't a second at all . I guess I could be pretty pissed off about what happened to me , > ~ < ) In love , I 've been passive except for one slightly unhappy experience . As we always say , money ca n't buy happiness . I 've always been envious of people who have charming looks and perfect bodies . Just at the moment when we arrived at the dormitory , The wallet contains ( contained ) as much as 1000 yuan , which had disappeared just in several minutes . What 's worse , he will be faced with even more pressing economic problems ( during ) the next two months . Before then , I was a student and usually got up at about 9 a . m . When I arrived at my school , it was often about 9 : 30 a . m . Although , these days , I usually get up before 7 a . m . Working changes one 's life style . How difficult ! I used to think it was easy . It is because I want to learn about international politics at my university , but I am worried about my future . For me , that way is really helps me to understand english . Also , correct / proper grammer . actually I started using this site earlier . . kinda polite sentences ! ? or journal ? ! I think it 's quite similar to Japanese mixi . . Just look straight at the future and overcome challenges that we have to face . I 'll introduce to you my favorite tools . First , Lang - 8 of course . Now I am reading The Mistborn Trilogy . I would like to make a confession . And other languages . . . . For these reasons , the newspaper says the younger they start learning a second language the more such classes will exercise the effect . Above all of this , William , the student , was kind to us and handsome . Now a lot of words come to mind , but I ca n't express myself because of my low English level . English occupies a very important position in Korea . I joined an English class after work on Thursday and after the lesson students got together . Every year , we drink that after we visit a shrine , Finally he said to me `` we have diffrent thinking because we are n't the same nationality . `` I feel really angry because he does n't try to understand my thinking . One of them is going to have a match this weekend . Last weekend In my daughter 's class , there is a boy who ca n't walk by himself . When the boy 's group finished , he tried to sit down on his chair , but he fell down again and again . I wanted to help him , but I thought I was little too far from the boy and there were many other mothers or fathers near the boy . Finally , a girl helped him . See you tomorrow ; ) Hi everybody , I 'm Vietnamese and I want to study English . I want to make friends with you , will you help me ? In the last bar he went to , there was an accident . Last night he was interviewed by the TV station and he apologized for his recent behavior to Kabuki fans . I was surprised because I was not that close to that friend . So how was my friend able to smell my hair even though even I could n't smell it ? It is good thing that karaoke is communication tool . In short , I imagined a relaxed life , but my life is totally different from I like to see out from the window when it 's raining , but I ca n't see out from my office , I watched AVATAR with my friend but we wanted to see the 3D film . From now on , I would like to write a entry on a daily basis . I really appreciate if you are able to correct my entry . The theory itself is debatable and the so - called proof is generated from archaeological excavations . I was so surprised and on a high 'cause it was really unexpected ! Suddenly , they asked me to do them a favor and call a worker in a ministore nearby . They wanted to buy some cigarettes and a moment after I walked out of the store and I became angry because I saw my girlfriend crying beside the car . First in The Hours , making a complex and poetic recontruction of Virginia Woolf last days , combined with the lives of another women who , although they were not marvel writers as Virginia , they have the same feeling of anxiety and fear , the feeling of being prisoners in a society which was not sensible enough to understand them . I 'm a secretary . I 'm going to get her a birthday present . On the second day , I might go to AKITA with one of my friends . Every year my children ask me the questions concerning the Holocaust in the Memory day . Yesterday they asked me how could it happen that millions of people followed the words of one - Hitler . I told them about the phenomenon of the leader in society . I told them about the totalitarian way of state . By the way . . I 'm looking forward to paticipating in the X ' mas party with my friends . Because in the party we exchange our presents with each other . I go out and drink somewhere almost every night and immediately I go to bed when I get home . However , in my heart , I want to decrease my spare time and I want to do things that will give me more benefits , not only financial benefit , but also friends , talents , and a peace of mind . . . I also wish the foreign friends who are living in China can enjoy the spring festival with our Chinese people . Now I think I need to understand men more . Suddenly , she realized her cell phone had been stolen . In the WHO 's release , the president of the American red cross board , Bonnie McElween - Hunter , highlighted that `` the credit of this success is deserved by the thousands of heath worker volunteers of the Red Cross and Red Crescent organizations who had taken the time to be informed , to raise awareness and motivate the mothers and the family circles as to the critical importance of the children 's vaccination . Ocarina concert at the Japanese - style hall This was sixth time we performed there . I remembered something writing just now . Yesterday I went to my favorite live - music pub in Shinjuku after my church visit . My home town is not in the country side but it is still inconvenient . If I can get really big money , I 'll go abroad to see world heritages . They all said that we have to save money to have a memorable celebration party . So , I 'd like to deposit money to have big party of my own ^ ^ The Chinese Ministry of Education wants to change the writing of 44 Chinese characters , according to news . The Halloween Party ! Even when we are asleep together in bed , she does constantly even when I do n't want her to . I love her so strongly . I 'm a big fan of se7en , who is a korean singer and has become well - known throughout Asia in the past few years . He advanced his career to the US but it was waste of time . Additionally , the time when he spends with his family is the most important for him . because tomorrow is Chuseok holiday in korea . It 's a good tool to study another language . Because before , I had the wrong sentence : `` How do you think ? `` From this experience , I have decided to correct Japanese for those who are studying the language and make mistakes ! At his last visit to the paediatrician in order to get vaccinated , this latest gave us some advices on `` weaning food `` which are contradictory to those given by the Korean paediatrician ! ! Izakaya is Japanese which means tavern in English . They have one price , unlimited drinks system so I drank beer first and Sake next . and , I 'll meet wonderful people . AD tells me that I must make my dream come true . Yesterday was my friend 's birthday . We ate from the chaffing dishes . Every one of us was happy . Even though the activities were over , we were still drinking . eventually , I wished my brother to have a nice future and a happy birthday ! I have nothing to do all day long except daze quietly and daydreaming . Damn , I could n't find one word to describe what I have done with my life these days , such BAD luck , keep bad hours everyday and achieve nothing . The next morning , I woke up from the dream to the electric alarm clock . I study in The University of Engineering and Technology ( College of Technology - Coltech ) . We live in Nam Thanh Commune , Nam Truc District , Nam Dinh Province . I came acoss these pictures while arranging the folders in my computer . If you haven not watched this movie I recommend that you also watch this movie . How beautiful a scenery ! Do you feel the same way ? Come on ! My dear friends ! I I guess some of you ` re studing English is very hard . At least , I know horror movies could make me have nightmares . ) OK , I will prepare myself and start again from an optimistic attitude . During college , I knew of various senses of value and culture . A custom may be reasonable in some countries while it is n't reasonable in Japan . I want to learn the cultures ( and customs ) of foreign countries . Time limit is only 1 month , I am so nervous , , , , Tomorrow I should write my dairy early so that I do n't go to bed late . Ohayo gozaimasu - Good morning Konban wa - Good evening I will practice magic . When I was a university student , my professor told me that my pronunciation is dreadfully poor . I had nothing to do except laugh . ( HAHAHAHA . . . ) Sometimes , I talk with one of my friends , who speaks English very fluently . As you know , Windows 7 was released today . My friend told me that I can borrow her costume for Halloween . Practice Test According to the diagram , children in some countries help with their parents well while other do n't do . Though it was truly a parrot , the combination with the tree was nice . Today I went to a kimono shop with my mother because I intend to wear it to my friend 's wedding party . Japanese people do n't have many chances to wear it . I have worn it once at the coming of age ceremony . I am worrying about it . . First part in chapter one , `` Create a Personally , Professionally , and Financially Rewarding Career Doing What You Love `` . We talk to each other about our culture , food , clothes and building in the past in our own country , and we try to compare between our civilization . We also talk about politics , sport , and trying to know what is new in Arab coutries ( because we are both arabic ) . I can read ( though I sometimes need to use a dictionary ) easy English but it 's difficult to write in or speak English . And now , I want to begin learning English carefully . `` I Call It Love `` by Lionel Richie is one of my favorite songs recently . Every time I threw harsh remarks to him , he accepted them all and kept on being sincere and sweet , except for my one word . Some people I know said that he is talking to me , because he wants a permanent visa . He got furious about it and then said `` Forget about me . `` I strongly regretted about what I 'd done to him and apologized to him . Needless to say , broadcaster 's speech is amusing . Is it famous in your country ? And I got connected with iPod : ) I could n't write down here my ideas . . Japanese citizens were stupid as well , and they kept believing in their cruel dictators until the end of WW2 . In short all aspects of Japanese culture such as journalism , philosophy , scientific techniques , educational systems and freedom of speech were completely immature at that time . So Japan 's completedefeat in the last world war was inevitable . Oh , I forgot to explain about this movie and this usless battle ship . This useless battle ship sank in Okinawa with all its poor soldiers in 1945 . a battle scene was good but the other scenes were boring . But I listen to a various music , Pop , R & B , Hiphop , Blues , Country , Reggae . . . . But we can only exchange new cellphones the day you bought them . There are many places to go . I 'm looking forward to going there . November comes in one week . Last Sunday I had the Toeic test and it was not quite good as much as I expected and even after having this test , I lost my self - confidence about my English . I know I am very lucky , furthermore owing to everyone 's help . I mean , I 'm so scared . I want to be a teacher , but I feel nervous . I am worried about not being able to provide the adequate instruction , and I 'm scared of not being good enough for my students . Does this sound familiar to you ? In Japanese , there are meny many words which are used only by man men and only or women . Some oversea students who really want to stay here have already found internships , but I am still struggling with my search though I am almost to the end . Recently , I 've been really tired . . . . . I like the sitcom because it is realistic and the characters are so lovely . I 've seen many movies that Jeniffer has participated in . Today 's Lunch I read a news site and the news site says that there were five hundred It is so interesting for foreigner . My friends are foreigner so I think that they will be interested in that . Our city held the coming of age ceremonies yesterday instead of today . My parents bought my furisode ( long sleeve kimono ) for me . That early morning , I went to the beauty parlor , and I had my hair set and wore the furisode . Good morning ! On Saturday I went to Edinburgh for a vacation . english is not bad , but typing is really hard TT It is very comfortable to speak Japanese withont any stress and I am quickly drifting away from English . I am doing my best to recall things about the pharmacy . Occupation : university student Finally , I got my new driver 's license . crazy ? It 's already midnight . It is so noisy . Sometimes my friend and I go the supermaket to buy some sort of japanese snack to go with our beer , I 've got it all under control though . This is about education , and I want you to correct it . For example , in en elementary school , you can learn the way of communication not to mention studying , and you can learn to cooperate with your friends in a junior high school and high school . I think the term is a very important time for us , because you can find yourself . What is your dream , your thinking , your position and your best friend , through other people . ( in other words , the people who do n't know how to communicate with other people ) Because I do not have a bad case of acne . When I speak English , it takes a lot of time to come up with right words so I guess I should train my English so as to speak instantly . If his grandfather could eat a piece of memory toast which contains the memory of Peter , his grandfather and he could chat to each other as before . why did Paku Yonha commit suicide ? ? : ( and he said that he really wanted to meet his Japanese fans . On the first day we went on an excursion to / in the Kremlin . May 7th We went on an excursion to the city . Suddenly , the bus driver hollered at me and said `` Congratulations to you ! `` and kept explaining to me while I just try to figure out it as I woke out of my dream . I just want to write this in English . and was mostly resting . So , we went to a zoo , and there was a cheetah , which is my brother 's favorite animal and there was a zebra , which is my favorite animal . then I can go to a Japanese college or graduate school . I watched `` The Sixth Sense `` . Yesterday , I watched `` The Sixth Sense `` on TV . Since it was something msterious , I was caught up in the story in a moment . I love watching the TV program ! I guess it is going to be a white Christmas tomorrow . / / URL Happening ! ! The piano priced $ 130 seems to be accurate to a beginner like me . I can connect a headset to it and play silently . I appreciate them . But a lot of people like too shopping there because it has a lot of things to buy . When I was younger I liked to go shopping at Sapan . They are open every day and all night , except Wednesdays . They have a lot of dresses . In the Bangkok we have lots of supermarkets too , such as The Lotus , Big C , the mall , Central , Careful , Slam , Central World , etc . I live in Hokkaido , which is in the northern part of Japan . An uncle , as well as my cousin and his wife ( last month of pregnancy ) was there . Supermarkets . Supermarkets in Australia are far larger than those in Japan . I feel happy as imported foods are so useful ( ? ) such as anchovies , beetroots , fresh mushrooms , etc . I could n't get information about the typhoon from my TV . It is pretty good . I want to write a new diary but I 'm so sleepy . . . so I created an account and now I use this service . but gradually I could handle and enjoy it . I have been so tired since last night . Bringing back 4 chairs was so tiring . I think the new Singapore President will be elected today . The cafe makes a `` handmade pork cutlet `` . So they depended on their relatives , but they treated them very bad . So the brother his sister all the time , up until she died . I plan to go to South Africa with some Americans , and British in February . My friend told me I can use omegle to chat with foreigners . Actually , My major was computer science . First , I want to study English and then get a job . occassionally , you may grow very tired and frustrated . This is an open - air bath at the balcony in the room where I stayed . Because I felt very sleepy and the wind was so strong . Voice phishing is the criminal act of using a telephone to obtain financial gain . And amazingly , many people become victims of their scams . It was interesting , and we all enjoyed it . when I smelt something burning . So I looked over my shoulder to find my favorite my favourite blanket burning a little and fire was about to happen . but after the happening white smoke lay around in my small room , Podcasts are amazing ! ! ! The title looks like it has a special meaning , but actually it has none . : p So , starting with an easy question ; What do you think about learning languages ? I have a plan to stay in USA next year , it 'll be the most awesome time of my life ! First I watched `` The Blind Side `` . It was at midnight and so I recorded it on my DVD recorder instead of watching it . ( I 'm sorry this site is written only in Japanese . ) Well , thanks for reading ! ! My English teacher in Japan reccommended me to study for IELTS before for staying in Canada . However it 's not necesary for me to take it now for either school or immigration . However , I can not speak English well or understand talk among native speakers because it 's too fast . So , somehow I try to listen to their lines , but it 's too difficult . I drank alcohol which name is Soju ( kind of Korea Vodka ) last night ! In the past three months , I had to join in my company for practices . It is really suited for me . I mean , English is spoken all over the world . Because , I do n't like carrying around an umbrella . The original is a manga written by Shotaro Ishinomori . I haven ' tbeen back to Japan since December 2008 so I was so excited about seeing my parents , younger sister and friends . I stayed my parents house and had really good time . But actually I found this system very attractive because when people study a second language , it would be a great support if their writing were checked by native speakers . I am so appreciative about the fact I had preapared TOEFL because it gave me many valuable experiences in Reading , Speaking , and Writing , Without TOEFL 's experience , score , and training , I could not get those jobs in just two weeks . The university entrance mark will come out ! I am nervous because ( I do n't think ) I ( will ) have a good mark . Vocabulary section 's results Mispronunciation or misspelling - 19 % Actually , appropriateness and relevance as separate categories are kind of redundant . The bridegroom was the guitarist of my band , the bride was a staff member , and I was the vocalist . I want to send Christmas card to my friend . I heard that a lot of Finnish like Robert 's coffee . Is it true ? Happy Christmas ! I am sometimes in a bad condition maybe because of my unbalanced diet . And then , at about 11 : 30 , my mom and I went to Waikiki to go shopping and eat lunch . Maybe one day , when I start working , I will use it . If I give it up now , someday I could regret it . So , keep at it and do n't give up ! That said , I absolutely have to clean it up before October , because next year I go in to my third year of University . My program is called `` Arts and Technologies of the Image `` . I 'm really happy ! ! I have received a mail from my friend in Korea . I mailed her that I wrote Korea . She was so surprised ! ! Almost 6 months Can I speak English very well with foreigners ? Most western people have long arms , legs and big hips . I have a plan for learning English First , study grammar , second , read anything in English , third , see a kid 's movie repeatedly , fourth , write a diary . I remember especially the english exam . Particularly the composition which asked us to write about a hot pot . God , I just wonder that there are how many Chinese guys that eat with foreigners . In fact , when I went to Canada last summer , there was many kinds of English because there 're many immigrations and foreign students like me . What I have to do is simple - put the clothes and detergent into the proper places in the machine , switch on some button and then hang the clothes in the sun . Through this inccident I learned that we must n't leave clothes outdoors when we go out , even though the possibility of raining is less than 30 % . Now we know they are peaceful species in general . `` I was moved by the ceremony and I am surprised at the things that various countries take part in in the Olympics , even regions without snow . I was given souvenirs from the Olympics . Even so , I should have kept practicing English writing . I only stayed there one day or two day long . I do n't like ECC 's reading method . ( It 's not continuous . ) The word SOHO , which is an acronym for Small Office Home Office , has become familiar since the Internet has become prevalent in society . Recently Japanese sewing companies are having trouble surviving because of low pay , lack of workers ( especially young generations ) , and so on . They can use Chinese trainees with cheap wages since the middle of last year . Naturally enough , they have not been able to employ the Chinese workers at such a low cost . The Japanese government changed the minimum wage for foreign trainees . At that time I did n't want to cry , but I could n't stop my tears . On the other hand , social enterprises can obtain funds regularly because they are run through the business method . I have been studying English , since I 'm junior high school student ; but , I ca n't speak English . At last I found a shoe store . I used to like partying and things like that , but not any more ~ ~ because lately every time I have been to one there is always some dirty secret for me to find out . I 'm trying to be a good girl ~ ` not saying bad things behind other people 's backs ~ ~ but I always break my promise ~ ~ girls are all about gossip I guess > < But now I realise how much happiness I have missed during the period when I was dying to grow up . My favorite fruit is the peach because of its scent , juice , and sweet taste . The travelling time was more than 2 hours by car , especially because it was the first day of a three - day weekend ( Jul 18 is a national holiday in Japan , Marine day ) and there was a lot of traffic . Fortunately , there have been no injuries reported so far even though 21 fire engines gathered and were fighting the fire for 7 hours . I will write an original story . Because I nearly have a test . I write mystery , series . . . . I was concentrating on watching the fight . Every time a round ends her job is to walk around the octagon with the round board . Then she walked around the octagon and she blew a kiss at the cameraman before returning to her seat . I went to the university 's hospital even though today was Saturday because our doctor told all the members of our team to go . We attended the morning conference and had short lessons from doctors , and had my instructive doctor check my patient 's report . The messages said that my card 's number corresponded to the card company 's one , so they canceled my orders . I have a bad memory . Recently I 'm trying to select English - speaking ones , because I can study English while watching them . The advantage is that I can watch it again and again , study natural dialogue , and for better or worse , learn some slang that I was n't able to study at school . Russian is a wonderful language because the sound when you speak is great . But I do n't like the votings , because the politic sythem is awful . I mean tracking ( change pages ) speed were slow and sometimes errors occurred . So I will write a diary about English Writing at Lang - 8 . But they are definitely not . We are all Japanese inhabitants , so we must share the pain and the goal to overcome this crisis . How can I relax my mood ? First day Interview 1 Hello teachers on the internet . But I have to take an interview to go - which will surely be a hindrance for me . The following are some of the questions I will face in the interview . I have put a lot of effort into the past 3 years to learn English language . This included paying a private tutor , taking English radio programs , listening to pod - casts and using lang - 8 . The skills I 'll obtain will help me to facilitate meetings with foreign organizations . A typhoon will come to Japan . . . This typhoon is so strong according to the weather forecast . Hello . When I saw the characters being chased by a big fierce bird and flying about among the trees , it strongly reminded me of a scene from Nausicaa , a Japanese anime , where humans were chased by huge insects in a poisonous wood . In order to make the flash work , I did n't have a afternoon nap , but I debugged it after I finished it , it still did n't work . I totally failed . I must practice English skill . I was suprised at how much water we use . From now on I will care about how much water or any kind of energy I use . I want other people to care about energy . We know that any kind of energy is limited but many people pretend to not notice . If someone has a good idea that saves energy , please let me know ! ! does it all make sense ? Therefore , that is cheap but the shop worker made a mistake . He gave me a walkman with speaker and cable ! Eventually , I bought a walkman and speaker 6000yen . There were many beachgoer on the Zushi beach today . I think that writing skills of any language are very important since you try to use the grammar and vocabularies correctly when you are writting , that is also a key to influence your spoken languages . Many celebrities have the same one . It is a very sunny day today , unfortunately , the weather forecast says that it will be cloudy and rainy in Hiroshima tomorrow . Although Mother helped me , it still took 1 and a half an hour to put it on . I often call China 's embassy , My little sister actually had to study for an examination . She started working earlier than when I got my part - time job . The majority of them in the west part of Japan are known as kuma zemi ( means bear cicada ) . Many people that live in the east part of Japan do n't know it and are suprised that it is so loud . Because , I went to a restaurant with a discount ticket ! Then I went to another restaurant and ( I ) drank some liquor . So , I restart studying ! I 'm woke up too late this morning , so I ca n't sleep now . That 's why I have felt abnormal about this summer 's climate in Japan . Please tell me how to write in English well . DoAre you interested in becoming Language - Partners ? I want continue my study at university , but I am afraid that I did not do good on my exams . As you may know , wetbacks are Mexican and they enter America as illegal immigrants . 80 percent of illegal immigrants are from Mexico and the other 20 percent is from Latin America , India , Brazil , and China . The picture below are coffins . The main reason is to get a job , earn money , and support their family . Teenager Sayra lives in Honduras . Her father in the America is deported back to Honduras . That 's why the farmer lose their jobs and go to America . If global warming become worse than it is now , the production of corn will decrease 48 percent . One of my friends told me that the thing that you do not want to do is often the very thing that you need to do if you are striving for success . celebrating grandad and grandma . However , it is difficult to create anything that does n't look like a blog . I 'd appreciate it if you would correct this . Which sentence is better ? ? ? It reminded me of my balloons and how they used to fly in the clear skies . This is because there are many high school student who are studying in the library , so there are no seats left . I found the below campaign . If I get this money , I 'm want to make a pyramid of hamburger . Hello ! Nice to meet you ! They stay at my school and then tomorrow they 'll come to my house . This song is one of my favorites . When you are lonely , I 'll be your friend . Today was the first time I have listened to this song in ages . I learned many things from him : Korean , Korean music , Korean culture and so on . Last night I have n't slept , because my neighbour has turned his music sooo loud . . It make me agressive because he is a Nazi - . - * I want to learn about new computer technology and make it . When I went to a restaurant and ordered a Coke , the waitress could not understand my English . The restaurant was built as a place for disabled people to work . Most beautiful place But temperature has been below 10 degrees . Some people say that it takes a pretty long time to be good at English , but I do n't think so . I was n't ready to speak any English when I got the U . Today , I bought Kimchi at a Korean market on Geary street . There was something wrong with the bus that I took coming back to my house . Should I have got in a taxi ? I believe we can reconstruct the devastated areas . I have made my son who is 10 years old learn to playing violin for two years , because my son was always just watching TV in his free time , and because I have good memories of learning to play the flute . At that time , my city carried out a plan to make this region active using music , and junior orchestra club was organized as a part of the plan . The city prepared many musical instruments , and rents them to children for about 45 dollars per year . A private music school also got angry with it as competition with their business , and the school director blamed it in their homepage . In my son 's case , the most difficult thing about it is putting off attractive TV and making time for a lesson . He often frowns when I say `` Let 's begin music time ! `` I traveled and worked in Australia for 10 months 2 years ago . It is not a very touching story but I have watched the series since I was 10 years old , so it made me cry ! LOL I will definitely come back to this beautiful country again ! I am going to find a good teacher and take some lessons . I want to communication with people from different cultures and countries . When I read the newspaper this morning , I saw an article about the ( I attached the article in Japanese ) so that I get ascore of 800 on theTOEIC . I think that I will enjoy myself more if I learn the culture and the history before traveling to the place . So I am going to learn the culture and the history of Hawaii from books and / or websites before visiting it ! I try to read newspaper , some business magazines and website articles to improve my English skills . But it 's too difficult for me ! ! SO , it took more than 30 mitutes to read just one article . I do n't think I can read that articles in the near future . . . It 's easy to read and I can learn some useful phrases . Besides that , it still has an antique little train . And Iike music , hip hop music . So please make me your friend ! ! I think that Japanese people , of course including me , definitely lack exposure to real conversation in English . This is in spite of the fact that most Japanese students usually study English for more than 6 years at school which is a form junior high school to a college . After all , the majority of Japanese people can read English to some extent but most can never speak it . I received a picture of my female friend . She is twelve years old . So , I have to learn about managing a business . But I enjoy the challenge . I 've experienced a rolling power outage tonight for the first time . I want to improve my ability to make a sentence . Has your father visited a lot of countries ? Has n't your father visited a lot of countries ? My favorite person is Ichiro Suzuki . Because he is a dream maker . Here we have a very large Russian speaking community ( appr . 1 million , we have only 4 . 5 mln people in Israel in all ) . But our habits and mentality keep us together . First diary in English Today , I am writing a diary in English . And at the time American people said ' ' Yah - ! ! It 's about the famous historic detective BaoZheng . He was very kind and helpful towards the common / ordinary people and detected ? ( resolved ) ? many complex problems . Today I signed up to this site . I can check your diary written in Japanese . I want to help you , and I am supposed to attend one of my co - workers wedding . I thinkhe has nice character and is a well rounded person . When he announced his wedding we blushed out of shyness . And I will tell you what had happened at the event later , maybe it will be on Monday . This site is different . public or private , from primary school to junior high , highschool to college , and university . This is my first diary on Lang - 8 ! Today , I surfed the Internet as usual . I think it is important for me to write in English to learn correct grammar . So , from today , I will try to write a diary in English every day . When I entered my office I found money on the ground and I picked up it . I was at a loss whether to bring it to the police station or bring it to my office 's director . After a while director said to me `` The money 's owner was found and he said to thank you for it . `` I thought to myself , `` I did a good job `` . What should I do when I feel life is treating me unfairly ? But there is no software at my house . During winter vacation I will buy software and go back home . They made announcements about Lion ( Mac OS ) , iOS5 and iCloud , as reported in various articles . A film called `` The Stoning of Soraya M . `` has stirred controversy . Top Sales Hello . This week my classes begin . I am studying to enter college , and it requires a lot of preparation , so I have to study hard . They give relief supplies and money and run relief operations for victims . I wondered if I could do anything for them , so I went to the Japanese association to give a donation for them on the weekend . I want to express an appreciation for the many people who help the victims in Japan , because I think they give a wish and courage to victims in Japan to live a positive life . Everytime , when I clean my room I was angry about why I have so much hair and why they ca n't stop shedding . A Welcome Party Some people treat animals as objects and use them on a great scale since it can possibly maximize the benefits for human beings . because my favourite lady is Taiwanese we talk in English . The LUMIX Phone is great because the camera is very high quality , as high as a normal digital camera . It also has 1seg , which notifies me of severe weather , such as an earthquake . It was a very actual theme because almost every person today has a personal account in some social web . Every time when I am given a topic and asked to talk about it , I find it is hard for me to arrange my thoughts : what are the issues in the topic , what to write first , how to develop it , and how to conclude it . Although I see the many books about how to write essays , it remains a problem . After the younger guy left the bathroom , he went in the bathroom , but he had been in the bathroom about 15 minutes , so there were a few people who were waiting for him . I 'm making a movie to teach the idiom `` come clean `` . Please check it ! A : I saw You and Kana there , `` come clean `` . It is a short - haired cat and has a bright brown color hair . Furthermore the climate of our room became more favourable and calm . In short , I think there is a big difference between guys ' desires and girlss desires . . . According to the book , love often increases , but lust just decreases . Jon always teases me that my English is regressing . And , I want to buy the latest by `` ONE PIECE `` ! I have two elder brothers and one little brother . I read an article about The Karate Kid I have watched The Karate Kid 12 , 3 By the way , I 'm starting this diary to study English . But I 'm very relieved because the mistake was not correct . I cleaned my house . My bedroom was dirty . I do n't wanna look like a weirdo . The thing that I will never forget is that an old geezer talked to me even though I had another customer , and he did n't leave the store at once . Tourists can enter limited areas inside the mosque , even not Islam believer . It was a drink that I had not known before coming to Singapore . It 's unhealthy . Then they cleaned up the nursery . Finally , they went to a supermarket to do some grocery shopping on an errand for their mother . Many Japanese look forward to it every year . But adults have to think about something . Therefore , adults should not be selfish . I 've forgotten a lot of the Japanese business rules . It 's really important for business in Japan . I have n't forgotten this one , but when I 'm in this situation , I sometimes use some casual words . Come to think of it , I sat down in a chair without permission from my client . They go to elementary school now . It is still chilly in the early morning and night . Do you like to study in the weekend ? Thank you for helping me correct my journal Do you use `` that `` when you say something you already mentioned or something mutually known ? ? Last night , the teacher is a black man . He come from Botswana . I have n't hated Japan any more . I think this is a past thing . I studied aerospace engineering and probably I will continue to study it in October ( another 2 years ) . English in fundamental for my future job and for my study . . . but I struggle to pass from grammar to constructing phrases , speeches . . . I enjoy soccer ( football ) , basketball , cycling ( road racing ) , using my Mac and iPhone , taking photos with my digital camera , and so on . I 'm moving to another seat . But I forgot all the pain when I saw the beautiful sunset ! I could n't understant the story because my listening skills are bad . Tuesday , after work , I 've my waist ached . In the morning today , I was so surprised to look at my waist . I do n't feel regret for sacrificing sleep . They are great ! If I want to thanks you , I would write in the card to ex `` Thank you for cheering me up ! : ) `` But when I remembered that he has seventy million dollars when there are a lot of hungry people in his country , I said that he deserves what happened to him because he did n't have mercy on his people ; we should n't have mercy on him . Finally , I want to say congratulations to all the Egyptians . You have been patient for thirty years . Congratulations to all the youth , men , women , and children who spent more than two weeks in the streets making their demands . After he returns from work , he takes off his clothes , of course dirty socks to be contained , in the room . I studied german in high school and I studied french and chinese in university . Anyway , I 'm going to eat everything I want to eat . But today , I did n't have anything to do , so I went to the Japanese market near my home and borrowed my favourite DVDs . It will probably be performed until the twenty first or twenty second of this month . He 's a member of group called SMAP . because I ` ve just signed up to the Lang - 8 website 3 days ago ! The rest of us was very surprised , but we all said together , `` Indeed ! `` For example , if a gay couple from California go to Texas , their marriage becomes illegal , which means they are not married anymore . Typhoon 12 However , I have n't spoken English in a while , so I want to improve . I ` m studying English because I want to travel abroad and talk to foreigners . However , most of the time I was talking to Japanese people . I had hardly talked to local people or foreigners . I felt disappointed that I couldn ` t speak English and so I decided to study the language . We are staying here until next Friday . Also , our hotel is fantastic ; we have a really exclusive and pretty apartment with the most beautiful seaview ( which ) I have ever seen . They ( have ) sent our dog to a different continent ! Amol is probably in China ! And last , but the most annoying thing is stupid French people . They are so rude , they probably think that they are the best in everything in entire world , and they treat tourists the worst . The number of subjects is few and easy this year , unlike last year and the year before last . Will I receive the answer by Christmas ? I will go to the same concert tomorow too . She told me she had gotten a driver 's license in Vancouver . Because before that , I had only been around downtown in Vancouver . If I had a driver 's license and a car , I could go to any beautiful place in Vancouver . But for now , I want to focus on studying English and getting a job . I am a beginner of this site , Lang - 8 and I do n't know how to use it well . I would be grateful if somebody can help me . I submitted a job application last month . Althought , I got a sad reply . I have been surprised to see this is a nice website that has a lot of friends to learn language . Therefore I wanna see many things , eat something delicioius , and have a good time with my friends ! ! ! I had a headache , stomachache , fever and a sick feeling last night . We deepened our friendship . I will spend the money on deliciousfood on our trip tomorrow . I couldn ' t attend the class although I went to school on time . diary ? When I listen to songs that are written in English and watch Hollywood movies , Aha ! I do n't want to do it and I get so frustrated . Sometimes I can write in English easy and comfortably . Bella 's pronunciation is especially difficult for me . I went to my friend 's baby shower last Saturday ( two days ago ) . My friend tried fertilization treatments for the last seven years , so I knew she was really really happy about . giving birth to twins . We had delicious food and a lot of girl talk . We all cried when she told us about her babies . We were very happy and many people came and celebrated . with her . Studying everyday was so hard for me , I have to study English , Mathematics and Economics . I will travel to Busan , South Korea . The colors which are used in the movie are so beautiful . If someone likes Japanese movies , I 'd like to recommend that person to watch it . I went to the library this morning . `` POMERA `` is a writing tool . Whether they 're brothers or parents , they propose marriage . Can you believe it ? I get transferred every three or four years . In the last while TV in Spain ( but really I think in all countries ) has become crap . I really hate them . Now I have more time to dedicate to myself , for learning about the things that really concern me . Many people spend time complaining about TV and those programs , but they continue watching them , creating a vicious circle . I do benefit a little bit from primogeniture . This is a typical Japanese male habit . And the technique called `` Mashup `` is interesting . Have you heard of this profession ? I am studying mining engineering and I want to learn English , please somebody help me because here ( in my city ) it is very difficult find somebody to practice with . I 'm on the bullet train , the `` shinkansen `` I did n't watch TV at all . I do n't get time to watch it at all . So I have no idea about news like influenza ( disease caused by a virus ) . There are many people who have masks and do n't sell masks now . Today , I decided to start a diary in English , because I want to improve my English skill . They are used in semicconductor , digital devices , and so on . Recently , I like foreign dramas . My favorite drama is `` friends `` ! Message to . . . I hope you enjoyed being in Jordan with us , and good luck , we wish to see you another time . First of all , I ca n't correct my compositions , because I do n't know how to display the keyboard when I want to correct . Expecting a reward after a good deed has never been seen in the Chinese society not until recently . for example , some people claim for money after helping someone catch thieves or returning another 's picked - up purse . and whether a reward should be expected has arisen unprecendented heat discussions . Furthermore ( or `` In addition `` ) , I really do n't think rewards could stimulate more people into doing good deeds , for it can only rot one 's pure mind and complicate one 's simple thought . my boyfriend Andrew got acquainted with my father and I think they dislike each other . . . I love Andrew so much , but I ca n't disagree with my father 's opinion . . . and it is my favourite . and I 'm going to movie theater tomorrow ! ! ! I 'll make an appointment with a pediatrician on Monday . I really hope my daughter will be well . So I will go for it and learn something from it . The passage said that if I ask someone the way to my destination , I should say `` Could you tell me how to get to ~ ? `` rather than `` Please tell me how to get to ~ `` . I study English everyday to enter University or graduate school in USA . But I think I will eat before I join my class , because I did n't have a breakfast . because my major won in the quiz competition . and I will appreciate if you comment on this diary `` You killed two innocent soldiers , But you denied the suspicion of murder so you will be imprisoned . Take the defendant to the prison ! `` in fact , it was a kind of elevator . then , Tessadar touched something that looked like a ball And , the basket moved quickly . Tessadar swung his arm slowly I should sleep I 'm glad to find this useful site . I 'm a staff at a wedding ceremony . I got a lot of messages for birthday wishes ! Today , Sex and the City premiered in Roppongi Hills . We ate sushi for lunch . I ate pretty great sushi . I got really excited and missed japan while eating it . Fortunately I did n't need to pay , Tomorrow I have to get up earlier , But I 'm in Hokkaido now because of the summer vacation . And there are two answers . Which one is correct ? It was quite expensive , but I 'm feeling good though ! So it 's ok . Moreover , the slogan `` What are you made of , `` shows ownership of the watch . However , this advert can address people who drink Pepsi . woohoo . . As you may know , the highest mountain in Japan is Mt . Fuji is covered with lava rocks , so it is not very fun to climb up , at least for me . ( : p North is a fascinaing mountain because it has a lot of alpine plants in summer . I 've been into mountain climbing these past 5 or 6 years . I went shopping for 3 hours . A piece of square paper was the universe to me when I was little . I was lucky I did not see real / live boar while I was enjoying hiking : ) Because Ihope I can talk to foreigners . But his words are really hard for me to understand , because he always talks to me about philosophy , at the same time , I am a girl who majors in business administration . of course it 's not all . but I caught exprience of a lot of things ! A Return to Beginner 's English : 6th day I 'm practicing ballet in my house now . I think we should protect the earth from getting strange . You should be get a buddy ! ! ! I get irritated whenever everyone else does . I think it 's really important to sleep well . I 'm majoring in law , and I 'm a member of the GCP . GCP stands for `` Global Citizenship Program `` . Do you watch the TV program `` Friends `` ? Friends is a very popular US comedy . Friends is very funny . Non - alcoholic beer This week I have not been drunk of any alcohol . It 's a miracle for me during the past twenty years . There are reasons why I have n't drunk non - alcohol beer this week . In Japan , we have seven kinds of 0 % - alcohol / non - alcoholic beer now . When we drink any alcohol , we feel comfortable and dull . I think that alcohol is a time - robber . But if I drink alcohol , I lose my motivation that I want to do something . Owing to non - alcoholic beer , this week I began to participate lang - 8 to study English again . It took for 2 hours , first 45 minutes for the listening section , and then 75 minutes for the reading section , without a break between the two sections . I asked myself why I could n't catch the answers I could at home and I became more nervous . I really enjoy learning English . Today is the first day that I registered on Lang - 8 ! When I went home , Paster 's wife gave me a ride to go home . I thout that it would be convenient if I have a bicycle . I knew that the one person who I have ever quarreled with is similar to myself . I do n't want to mention his name here . I just hope that he has enough skilled and stuffto overcome the seduction . It seemed their opinions are completely different . We confused and mad , but we obeyed the indication of Doctor F . This morning , I got my grade There are 4 parts in the exam which are grammer , speaking , essay , and listening . I looked around it and joined immediately , because I thought it was very useful for me to learn English . This site is great for us to study foreign languages . This is the highest temperature I 've had in my life . I study English in class . konnichiwa felow friends I finaly got a sneek peek of my comic on facebook but its backwards and sumimasen about that but hope you can see its artistic work if do but vol 2 is better than one and im also try real hard to study more japanese so sayonara freinds When the two boards touched a line 50 meters away , we went through a net tunnel , then stopped at a shelf which had six toy oxes on it . We had to knock down the six oxes with little bags filled with sand before we hit a gong at the finish . The group that had the shortest time won the championship . I was hoping to find someone to teach me spanish : ) I am totally fascinated by this beautiful language ! I would rather the manager would n't tell his secretary about the deal . There are these kinds examples in my textbook . Additionally we can patiently hear their speaking because we know how they feel . This orchestra was conducted by handicapped people . Yesterday morning , I had a regular medical check - up and drank a lot of barium . After I drank a lot of barium , I had to be rolled sideways three times on the stage of the X - ray equipment . I 'd like to try to make a good solution by using what I have learned this time . People lined up for hours there . That means tomorrow is the last day of my holiday ! ! Finally I decided on my favorite one , and then I brought it to the cashier . It was warm and sunny in the morning and windy and rainy for the rest of the day . They are so so cute because they are very much like me . I tried looking for a parking area but all of them were full . . . Because it was a sunny day , I felt comfortable . Today my mother 's friend with her daughter came by . Her daughter is 9 years old . And I will appreciate the helpful corrections . I really respect them . There were people / students doing different activities , some were playing football , some were ( ranting about their naggy mothers and their shopping trips on weekends , some are were developing films . 1 I got a chance to talk with him I hope my personality will grow through my relationship with her . I often ignore the alarm and do n't go to turn it off at its first ring and it makes my mother annoyed . I 'm teaching mathematics . Oh and sadly , actually not so sad but troublesome , my periods just began yesterday . And coincidentally , the day after I emailed them was the new member night that is held every two years in the choir . I started to write a diary on lang - 8 . We had such a good time that we decided to meet again next Wednesday at Nara , where I live , I have to carry them form town to my place , so I only buy necessary things such as rice , vegetables to make some soup , water , and so on . . . . . . Tomorrow , when I go to town , I 'll buy some cookies for her daughter . I write a diary for the first time . I got some live experience , and I used to think that all experience are useful , no matter good it or bad ( the situation ) . I used to hate English ( I really DID ! ) , but now I love English : ) I 'm now using this site to find new friends and improve my English even more ! I 'd like to speak these languages fluently . Looking forward to your `` Motor Season `` come soon . The contents of the other book is English for business . The needed skills for business is communications and technical skills , is not the right English . I hope that I get qualification of a Yoga instructor and international of it . I ate sushi . The point is that we ca n't determine what kind of impacts the products will have on our health in the long run even though they might prove to be safe in experiments done by scientists . After all , I think our health is irreplaceable especially with the low prices fulfilled by the mass productions . because I had overslept . I had great time . It had softer fur than I thought . * My grammar is probably terrible today . I have just started to learn English . I know that my English is not excellent . It is that I will be able to express my true feeling with someone even if / though they do n't understand . I had better finish now and go to the bed . Fortunately there were no broken items in my house . However , I still can not adjust myself to this new life . Meanwhile , there were also many rabbits in the tree staring [ in ] at what was happening inside . After I finished work , I went to the cheap restaurant near my house . And I took two math tests , one mechanics test , one biology test and one thermodynamics test on September 1st to 3rd . Yesterday I went to the city where I used to live as a student ten years ago . This is my first dairy . It is practice course and shorter than a real golf course . Please tell me . These sentences , or parts of sentences have some grammatical error , ( or misapplication ) but I ca n't understand what is incorrect and how I should correct it . 1 . Make students translate only the sentences in which there are grammatically important parts . 7 . To concentrate on Japanese sentences makes students think that they 're more important than English sentences . 10 . Japanese has many ways of expression , as well as English . I hope to have a great night . Nagoya has several places to enjoy . I went to yoga lesson this morning . I get stuck in traffic so I was late a little . Today , I worked to clean and move my firefox browser Because my old account incurred some problem , , and I hope that I can do something that can only be done in a student 's life The earliest train is at 9 : 00 . Bills at Tokyo opened last month . I had been eager to taste it . I need to know not only English but also the choice of words . I wish a happy Christmas for the both of us ! A weird movie : It was crowded with many people . I found an interesting painting there called the `` Tinga Tinga `` . They 're colorful and beautiful with delicate brushworks . The reason is that I am too lazy ~ HAHA ~ The actor is so cool ! ! ! ! I recommend it ! I 'm Yukiyafrom Japan . The heavy growth of white narcissus looked like a white carpet . And I had no idea what to say upon seeing the hill , decorated with blue Nemophila and rape ( ? ) blossoms , the most popular place in this park . This year I participated in the `` North California Cherryblossom Festival `` located in San Fransisco . San Francisco has many large hills . Some people danced with us while others took pictures . This link is precious to me and I would like to keep it that way . I 'll tell you guys about fashion , which I love . I really love fashion , clothes , shoes , bags and accessories etc . . . Nowadays I notice that with good sense I can make a well coordinated outfit with cheap or reasonable clothes . Fortunately , we have many choices because there are increasingly a lot of good stores , which are , Forever 21 , H & M , UNIQLO , MUJI , GAP and ZARA . Please tell me your thoughts . Well , this post is not about the date of Hikoboshi and Orihime , who are the couple of the Tanabata legend , but the one of my daughter and her boy friend . These3 guys can ( both ) sing and play well and they made theaudience laugh with the funny things they said . Yesterday my friend and I went to a restaurant to have dinner . Bread ( toast ) gets moldy quickly , too . Now I am learning English for CET - 4 , I like English , but I find it such a pain to study . Especially remembering new words , I have a feeling I 'll never remember them . I currently use a `` futon `` , Japanese mattress , but it is too thin to sleep well . I 'm looking forward to the delivery . Earthquake and tsunami . I 'm OK . So many people died in the tsumami including some of this hospital 's staff and some patients ' families . There were collapsed shops , overturned cars , much wasted ( ? ) material . I think winter is coming soon . I had n't eaten during the twenty - four hours before ( no , I did not eat him ! ) , so I bought a burger because there was nothing else . The main character of this comic is a man who is an assassin . So he needs to disguise himself as a woman . I am worried about tomorrows weather . It was for Christians who want to learn more about worship , praise , and prayer . It was a blessed holiday ! : D And , of course , we have one too ! If I should break my right hand , shoulder or an elbow , I would use the others . I registered with this website to learn English . Before I 've got to know lang - 8 . I really appreciate if you could correct my bad English . Now I can see that writing on a computer in diferent languege is more difficult than using my native one . It would be a great opportunity to learn foreign languages and make friends . I recommend these songs of his : Gick in the pink , Remedy , and Wordplay . only the sound of raining . Do you still remember me from the day it was raining ? Yakiniku is broiled meat . Reunion Party First , we were a little bit nervous to converse with each other but after 30 minutes , it was just like the old days . We got information from the service desk . I want to go anywhere ! ! I guess it 's just a more polite way to ask for information or a favour ? I tried to connect the internet , but I couldn ` t get it to connect . Very seriously . My favorite game is shogi . Do you know shogi ? Finally I found a good one . Also , we ordered ice - cream , toast with ham , cheese , and bulgarian pepper , and herbal tea . In conclusion , technology is useful for education , but we need to have the ability to carefully find and select information . For example , thermal / electrical conductivity , lustre , ductility , malleability and so on . . . . . I went to the hospital yesterday , and took a lot of medicine . I hope they make me comfortable quickly . The medicine costs 2500 Yen . Favourite : basketball I remember days in Japan . I 'm very happy to start writing something in english . it Seems I like a good chance to improve my english writing skills . But the vocalist forgot the lyrics : p I had a great day : p Here you can see a picture from October 29th , 1929 , the day of the stock market crash . There was a fly on the ceiling . My room had a high ceiling and the fly was on it . Besides , _ there are few powerful and united orgnizations or associations that can shoulder the responsibility for holding massive and efficient activities on a worldwide scale . What is needed , _ therefore , _ is education and publicity . Meanwhile , _ governments have an obiligation to encourage citizens to take actions to preserve creatures via legislation and public media . Likewise , _ national and international orgnizations aiming to save the Earth also can play an pivotal role in publicity and education . I think the reason it is hard to learn english is remembering vocabulary words and speaking fluent English and listening every English . Hello ~ I 'm a newbie haha I dont mean I wanna be a singer or someone famous , I just want to do something about music . Ouch ! I hope that I will find a good job after . graduation I insist that dreams will come true if I try my best to achieve them . I changed my job to an Amarican company . I am going to keep up writing my diary . I think this is a very interesting and exciting service . Some people think hobbies are a waste of time but I do not think so . I have a stomachache to go to the office in such a day . My area was n't damaged . But a friend of mine from Lang - 8 was worried and sent me an email . Words are the smallest unit of language . You should study this Before you start learning or speaking English I ca n't write good English when topics are complicated . suddenly , my English is going to sound strange . I would appreciate it if you would talk to me in English , 'cause I would really like it . I 'd also like to have someone to talk to , so thank you . I hope I will also be useful in teaching you Portuguese as well ! One Onigiri has only 150 calories . I like Onigiri very much . Today I ate roll cabbage lunch with my corworkers . In my office restaurant , we can have lunch by 500yen . I could sympathize with it very much . even I have 3 accounts of twitter * I forget the passwords of the two accounts , . . I have been eating a lot of fruits and vegetables . But I still have this constant feeling of laziness and fatness . . . Please do n't hesitate to talk to me . In the city people respect the players who bring their own gear , especially violinists or cellists . But they ca n't drink after a gig ( because drunken driving is a crime in Japan ) . Finally I recommend you play the cello if you have a choice between it or a contrabass . I love my home and my parents . he told me to , cross the road , turn right and go straight along the street . Thanks million for reading my entry ! ! The Web is Degenerating Actually , it 's given us uncountable benefits and an unbelievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on their cell phones and who are absorbed in the web for long hours , not to mention myself . Fortunately , we did n't sustain any damage . The next day , the Chile earthquake happened . I currently share an apartment with a Chinese man . However , I 'm thinking about moving to another apartment , because my present apartment is far from my office . Today , I was very surprised to see a piece of Yahoo ! It said that KENJI OZAWA is re - starting his music activity after 13 years of silence . But because of Woods 's scandal , other important news was overwhelmed , e . g . the national health insurance problem , the Afghan war . . I 'm not only excited but nervous too . I will send an email to you when I leave for America . I really enjoyed myself . The teachers are gentle and nice . ( spelling errors ) I 'm a Chinese girl , I like speaking English , but I only speak a little . class begins at 7 . 00 and is over at 21 . 45 , so I go to bed at 23 . 30 , I will study for1 hour before I go to sleep . In about a fortnight , I 'm going to Sydney to study english for 6 months . I am really interested in global environmental problems , so I want to study that in University ( Im not a uni student yet ) . Japanese eat rice almost everyday . last night I saw several young jews taking pics with menorah and singing songs in the streets . ahaha I changed my profile picture which I had taken on wednesday . Today , I listened to music and . . Now you have two options : soft yolk or hard yolk . Tret ' yakov 's Art Gallery Many ages ago in Russia lived the merchant Tret ' yakov . He liked Russian art and bought paintings from great Russian artists . This museum is named `` Tret ' yakov 's Art Galery `` , or in Russian , `` Tret ' yakovskaya Galereya `` . And now the Tret ' yakov Art Galery is a great Moscow museum . Every day this gallery is attended by a lot of people . They look at pictures of great Russian painters . Tret ' yakov 's Art Galery has not only pictures and statues , it has Russian culture and history , because these pictures show Russian culture and history . It seems like Obama will strengthen gun registration or regulation . 3 . shoot the ground or sky before shooting a human . 5 . anyone shooting a human must be guilty . I wanted to go to bed but I could not because it was too early to sleep . because of his fast pronunciation and an accent different from an American . anyway , today is my first day in London . I think I will need time to adapt but I believe I can do everything like studying and making friends . I went to shopping with a good friend of mine whose name is CHENG . She was shocked and felt ashamed of herself . Yours sincerely , Probably they will become sweet tomatoes . : ) I am waiting for my visa Today I 've decided to skip some classes at school and just rest a little , enjoying my free time , I hope I 'll be perfectly healthy on Monday ! First I will try looking for a new apartment . It helps me find a apartment quickly so I can save time . I do n't need to check the website The end of winter vacation . I am feeling dismal . I am a real ignorant with the PC . Many pictures and paintings are exhibited on the walls , which add some entertainment to the place . My brother and I went to a health club in the evening . In this thinking , every person has three unlucky years in his or her life . Sevastopol 's small streets are attractive for photographers . The outskirts of Sevastopol were built in another way : small white houses predominate there , with colorful roofs and doors ( we took our photos . The rest believed the use of cyber language was more convenient than the formal one . While we are alive , we ca n't judge whether our life is going the right way or not . Although it 's a new generation now changed , the education courses have not changed . That is the reason why until I graduated high school , I hated Korea 's education courses . But after entering university , I was disappointed , After graduating school , when I 'm looking for a job , the interviewers check my ability in grades , licenses , TOEIC score . . . So we should try to think about it from the younger sister 's point of view . The younger one , Bess , has to depend on her elder sister , I 'm chatting with my friends on messenger to plan our Christmas party . I explained the problem to the clerk at the bank and who sounded very kind . why did n't you hang up ? `` I highly recommend that if you have any iPod . Japanese are not as careful as Koeans about it . I used a lot of expressions which I learnt today in my entry . I decided to practice English by reading magazines ~ And I spent about $ 100 on magazines , so I really want to know how to use these words : If I have a opportunity I would like to use the slang words from now . I would say to my friends `` Hey what 's up , dog ? If you have cool a hat `` That 's hella cool `` If I get angry at my friends `` Hey stop trippin , dogs `` What would I gon na be if I use those words for strangers ? I wake up in cold sweat . Well , anyway , I 'm still waiting for my cell phone to ring . I went to a trick art museum today . Some projects are implemented in big city , such as Tokyo and Osaka , but others are in small and poor villages . hope I 'll be okay tomorrow morning . Each character in it has their own features , especially Jeeves . I bought some groceries . Are the following sentences correct ? Hi , my name is Javier , I want to learn English and make many friends , if I can help someone to learn Spanish , I 'll be glad to correct him / her : ) The fried vegetables were good too . I told them that I have a lot of small things and I often forget where they are , so I can this basket to organise my things . I 'm studying English : - ) And I can help you studying Japanese : - ) many people visit there . Many foreigners who were missionaries and business people used to live there . so there are many churches . I saw the first church of karuizawa . One good thing is that I made my mind to try to speak to foreigners at the birthday party next month . Today I talked to my freind who went to same university . I talked him our lives and girlfreinds and jobs . But I prayed for a wish to be peace in disaster area in Japan and all over the world . First : after lunch I ate lunch . The Japanese Royal family has over 1000 years history and there are so many traditional rules . So she had struggled about traditional rules and the pressure to have son . she finally got mental disease . She has an only daughter but she is loved by her husband . Actually , as I wrote long ago in an entry , I seldom look at those ranking pages . If I had time to read the page , I would rather use the time to correct my friends ' entries more . I want the webmaster to delete those pages , because the pages are not so useful for me . I 'm just a 19 - year - old college student , and I do n't think my native language is better than many other members from Japan here . They are probably thinking it will take a long time to feel relieved , this means they will grieve for a long time . At the beginning , I think they are qualified to comfort those who are now grieving . I will go to KYUSYU for a business trip tomorrow . I work in a hospital . Our relationship has continued for more than 3 years after we left the university and when we both got jobs , our destinies were separated unfortunately . These days , I watch Desperate Housewives . I 'm tired due to shopping and going home with very heavy baggageeveryday . I 'm afraid of making friends and studying etc . . . Japanese , especially thebaby - boom generation , believe all ofwhat commentaters say on TV . Schedule for tomorrow Especially the big problem is dismissal of temporary staff or part - timers . Went to a classical concert and Kamio Mayuko played as a soloist with the Budapest Festival Orchestra . I have listened to her performances by CD and TV until now . What do you usually do while you 're on the train ? Additionally , I am paid 1800 Yen a hour . Nice to meet you . Would you mind correcting my profile ? My English Language ( Grammar , Speaking , Reading , Writing ) is n't very good . Next saturday will be my friend 's wedding . Recently , I learned the role of social worker . I think the social workers are an important part of the community . But , we do n't appreciate the importance of social workers in Japan . My life in Jakarta ! ! I am enjoying myself so bad . It is different from my previous impression , meeting new people people , eating food , sight seeing and stuffs . As you know , Indonesia is still developing itself as a country and I feel enthusiast every day by seeing people on the street and huge traffic jam . Everyone asked what my name was , where I was from , and how long I had been here for . One thing happened that happened surprised me . There are many hills in the city , that 's why I can always breathe fresh air when I go hiking . Most of the members came from European countries such as Germany , Italy or Romania and they speak really well . Do you think that writing posts on this page is the only option / possibility ? I hope I can enter my ideal college and get an ideal job , and take responsibility . I thought , `` I will also come `` . after military training , my mother told me that she wants to buy a house for me . Good morning everyone . Here is the email that I would like you to correct . I think that he is cool , but to tell you the truth I think that he is coquettish . I like yakiniku very much . She was a traveller . Perhaps that is because a large amount of students are studying in universities far from their homes , so parents use them as a way to give them money while they can not make money themselves . I think that a credit card has become a necessity in daily life even for students . Thirdly , using a credit card to pay tuitions is also very convenient . On twitter , I heard my friend bought a peach from Fukushima because it looked very tasty and was very cheap . The first exam , called ' the Center exam ' is held on January 15th . Fireworks in Darling Harbour I went to Darling Harbour in Sydney with my friends from Korea and Japan . It 's terrible . I had to return it by the next day . . . I tried to buy some shirts , but I did not have much money , so I walked around looking in department stores . Please imagine that if your eyes were bigger than your stomach at dinner . You would find a pile of leftovers in front of you . We hardly heard of the Asian black bears coming to residential areas after we started to stay there . Knowing how to use body language effectively is very important for me , because I think one 's first impression on another person [ can help me to strive my dream job in the future ] ? This was the first time that I used an Internet shopping service . I am very sorry that I have no time to correct the diary . Because I chose this work , maybe it is the fate that l should do . Spring Festival will come , it is the most busy time in our company . I can not go back to my hometown to get together with my family and friends . Why it is the pigeon ? A smile for you . My shop is salad shop , and my lunch is always salad . I ate the salad fast , and after I opened the hamburger 's bag . . . I enjoy the time when I study microbiology . San Francisco is very exciting city and I 'm enjoying some activities here . I 'm lucky to experience this rare event . Outside is still dark , because it is 4a . m . Because yesterday I went to bed so early and this is spontaneous : Dhahaha He did not know whether the post office was nearby . It 's hard to explain why I like rainy days . I believe that TV has reduced communication among famillies . Different clothes sometimes influence how people behave . but I like cherry blossoms in Japan . unfortunately my alergic can be caused by a cherry blossoms x ( Today , I attended my first seminar by Randstad . I decided to restart my English and Russian study . Your attention will be appreciated ! My group picked up `` at fast food shop `` , because one of my group member is working at KFC : ) The situation we came up was a couple making out come to KFC and KFC staff complains about it , but then the couple fight about silly things and break up . I have worked in a government - owned company for several years , my post and salary are OK . I 'm always eating tomatoes because it is healthy for me . A charity match for Tohoku victims is being held in Osaka today . I met pickpockets in Spain today . : ( ( The pickpockets had gone away , but I still felt scared . The cost would be compared / comparable I thought they were almost the same . Despite resistance / resisting I learned the grammar ( preposition + ~ ing ) My eldest daughter had a sports day last Saturday at her junior highscool . I 'm a Russian but actually I live now in Moldova ( it is at the border of Ukraine ) Life is short , while art is long . Apple fans must be buying their products again and again like me . There were some stands and I bought a crepe and a pack of fried noodles with sauce . ( actually nowadays the depressed economy in Korea is causing a decline in the price of houses ( ? ) . However becauseprices were skyrocketing in recent years , the actual price is still quite high . ) Then I woke up my second daughter . She looked outside and she said `` Snow ~ Snow `` such a very happy smile . Hello ! Lately , I have been eating boiled brown rice because it is healthy . Recently , I 've been really absorbed by glee , a drama made in the U . is very delightful ! ! Of course , high school life in Japan is also very , very fun ! I never thought it would be so inconvenient changing majors . So today my cousin came over to my college to help me . China Business Trip I 'm a begginer . I 'm studying English . So , I entered university again and major in English . There are still aftershocks several times a day . The Japanese chief cabinet secretary said , `` There is little radioactive leak by the explosion . Until I become a university student , I have to study English because I may be not able to keep up lessons . I 'm Going to the office now . Please assist me . When I was a junior high school student my teacher taught me that there are many differences between Japan and America . Now , it 's time for everyone to clean up your place thoroughly in preparation for welcoming New Year . America president changed toObama , in Japan the Democratic party has had powerfor 50years . Last prime minister Aso can ` t read Chinese Characters ! For example , they marry , have children , get a house or lose money . I was sent to rescue a man whose neck was nearly broken He was bleeding steadily . I was very tense at that time . I said to myself in the dream , `` I am the only man who can rescue this life ; I must do my best , and do it as fast as I can . `` Golf exercise I exercised last weekend near my apartment . I hope to become a golf player in the future . I am going to learn how to use photoshop . I will spend my time today looking around for a photoshop feature that I can learn to use well quickly . Then , he showed me his left arm which had a tattoo ! Although I quitted piano , I 'm making extra special efforts to be a flight attendant in the future . I 'm looking forward to your reply , and also please tell me about your daily life ; D I came back to my hometown on my vacation . Actually , I 'm worried about my English . . . When I was skating , I had fallen down . . . ! ! ! These days we can buy many pre - prepared foods at grocery stores . Question in English So , if you are interested in it , please chat with me . A waiting for your reply . Welcome to our club Welcome to our basketball club . We believe you will join a wonderful club . A strong person will become stronger . Whatever your answer is , it 'll be a fulfiling experience . 5 days ago on August 2nd , I left Japan to study abroad . I also have problems with tenses and grammar structures . It dissapears in an instant , if I try to swat it . I heard from my colleague yesterday that tomorrow is Teacher 's day in vietnam . I practiced a vietnam song that young people like . After I sang the song , I gained strength and confidence because many people complimented me . `` you sang very well `` , `` good job `` . And I succeeded . Did you watch the tsunami videos ? Everybody just thought that was a pretty strong earthquake so it would probably cause a bit bigger tsunami than usual . I would like to take the end of the company graciously , and veer my attention to another future . The Toughness of the Characters ( no I ) . And one of the greyhound staffs told me we might had to wait more . Yesterday I went to the seminar at roppongi . I could have had the chance to speak with an American and I tell him my thoughts . As Paul the octopus predicted , is Spain going to win the victory ? After reading this article I felt inclined to go there . If you check with them I would be very pleased and appreciate it . Some birds were singing , the sunshine was warm , the breeze was stroking me kindly . So `` Sesami Street `` means a small seed street or something like that ? I was recommended by a friend of mine to register and become a member here so that somebody can correct my English mistakes . The author says when speaking you should know some rules which are common among English speakers . For example , it says you should use some words without pausing , and that you should know whether an exspression is formal or casual depending on the situation . We had a Christmas party that was held on Dec 24 , and we reserved a cafe that my friend managed . Have a good night ! ARASHI , a Japanese idol group , seems to be very famous in Korea and Taiwan . Have you read the book called something like `` To Find a Happy Bluebird `` ( I do n't know the correct title for sure . ) Are you looking for a happy bluebird even though the bird is right near to you ? `` I think success is near to me . I have been playing it for 13 years . Beautiful Town Me and my parents have a worship sevice everyday on these days . Our church minister , Mr . Kim runs the Beautiful Town with his wife and teachers . I tried to have a job at there but gave up in a day because of anxiety disorder . I feel sorry sometimes when I hear their parents does not get in touch with their children . Question : What chapter and verse include this words ? Autumn [ Spelling ] is starting ! You know I have wasted too much time in past year . Currently the global economic crisis is having a great effect on my company ; it seems like everyone will face the danger of being fired . In fact our company had reduced more than half the number of employees from last year , but our business has still not been showing a tendency of improvement : ( Now you can perhaps imagine my mood recently ; I am dying for leaving your present company but I feel it is not the best time . I would like to change my cellphone model . The LG Optimus - Q has a good design and useful `` qwerty `` keypad . The buses in Thailand do n't stop completely when the passengers get on and off . Luckily , the bus was moving at walking pace and the injury was minor . It 's not appropriate to say this , but I thought I might be lucky that my damage was not as bad as his . . . I decided to try blogging here . In fact I 'm not a blogger and usually I only read some programmers ' blogs . I clearly remember that I was a high school student when I took an airplane for the first time . I miss her warm company from last winter very much . Android phones are on display at the cell phone store in my neighborhood . Because the school has not only students born in Japan , but students from Brazil . I heard that most guests who are going there like me are real teachers . Then the country image will downgrade by that shot for why they did n't solve the problem in peace . Today , I will write about a question I have about English I 'm not good at English . English is difficult . It was difficult for me because of the difficulties in German pronunciation . Today 's dinner menu is sweet - and - sour pork , boiling hijiki and soybean , mizuna and chicken salad . Almost forgot to return Rental DVDs Yesterday evening I walked around in Ikebukuro with my friends to do some shopping and to see the new IPAD which was finally released in Japan on March 27th . Suddenly , I remembered that I rented DVDs at GEO last saturday . In the future , I wanna work in a foreign - affiliated company . We can learn from them , know their culture , and also can travel there . I ca n't install Chinese on the PC I usually use , so I decided to use my second PC . It 's too slow to handle software and the internet . To be honest , I am not in the habit of keeping a diary . Even though I look up each unfamiliar word , some sentences do not make sense to me anyways . It is totally different from speaking because it requires me to have a lot of vocabulary to express what I feel clearly . It is a usually an event that my relatives have every year in this season . I often do foot massages when I sit down on the chair . I was reading a Japanese comic yesterday . When they grow up maybe they will regret what they did when they were young but it is too late by then , it is n't . On the Saturday morning I vacuumed the rooms . So I was taking short breaks the pasta I had eaten at the restaurant last time . Now , every members is cooperating with each other towards the exhibition . Korea Trip 1 I 'm student studying science and technology , today ( in class ) I made biodiesel from fish - oil . In addition , I went to Ginkakuji , Kinkakuji , Kiyomizu temple and so on . Then , I had delicious dinner near Kamo River : ) The delicious dinner was made of tofu . Last week I went to Olympic Park , which is in my neighborhood . There were many kinds of fragrant roses . Why did I lose my earrings ? Soy sauce I bought a little bottle to keep `` Shoyu `` = soy sauce and ate pasta in a In japan , it is really hard for parents to have their children go to nurseries . First of all , there is a condition to do with annual income . The more money they earn , the more difficult it is to get permission to enroll their children in a nursery . We are scored A ~ D financially and according to our working situations by the administration . A is the most advantageous rating Fortunately , my daughter goes to a nursery . But , I hope all children can go to a nursery , which will help parents who are working very hard everyday for their families . If you want to travel both , my apartment will be convenient for you . There are no beds in my apartment but there are futons like matresses of cotton . You do n't have to prepare your blankets . ( In the winter , it may be cold . . . ) Near my apartment , there is a lot of nature . ( Maximum 2 nights ) Please come to my apartment before 7pm . I want to improve my English , and most importantly , make friends . To tell the truth , the English lesson is not easy to learn . I became bashful a little bit because of the situation that I use Japanese , but I 'm in Australia . I have to go back to Japan in the middle of April because I will attend my sister 's wedding party . So my parents were very diligent at that time . Compared to my mother , he can be recognized as a sinner . And I 'm proud of her ! His mother wants to go to the temples . ( Actually , I recommended [ that ] they go to Gyeongju , if they really want to experience temples in Korea . ) I played golf with my father , mother , older brother and his wife at Otaru in Hakkaido , Japan this weekend . * Lang - 8 staff I went to Okubo in Tokyo , to eat Yakiniku with my friends . Okubo is Korean town . So many good restaraunts are there . I 'm active again ( or so I think , I always have long breaks ) . Doraemon is very famous animated character from Japanese television . Students have to decide course , apply for job or take a masteral course . I ca n't decide . My friends already decided their courses . I must decide by this year . It was very useful for memorizing words and phrases but I was n't familiar with listening to my voice through the device . Recently , I 've became crazy about shopping , I have bought lots of clothes , but I want to have more and more . Am I a shopholic ( shopaholic ? I do n't know , please tell me the correct answer , thanks ) , haha ! So terrible ! Hot and humid weather will welcome me at Narita airport . This is the challenge ! I started this blog today . It is my big challenge ! There is Euro 2008 going on in Europe now , and I truly wanted to watch , but I could n't without cable . I decided to write my diary in English ! ( Today is the first time I am writing my diary in English . ) I 've decided to write my diary in English from now on ! ! Also , Japanese elementary schools are going to start teaching English to fifth and sixth grade kids . I think English grammar is so easy and logical that it is easy for non - native speakers to master it . However , I hope to improve my writing soon . I need to get 5 in IELTS as soon as I can . This octopus can kill a person who is bittenby it . . Of course , I know it 's different depending on the person , but I just want you to tell me as advice . There was the annual meeting today for a presentation on research and development in my company . I went to Moscow and Saint Petersburg with my family . My father bought me a camera , so I could take some snapshots . The distinctive yellow circles on the lamp which had n't being dusted in a long time . We prepared ourselves for the worst , because youth hostel food is n't renowned for it 's quality . > < Everyone looked suspicious at the fish and chips . I ca n't trust the company whose name is Tokyo denryoku . In Lonsdale street there was the Greek Antipodes festival . In Federation Square there was live music . On Saturday night I went out with my Italian friends . It was very nice , I bought a very nice dress ! I have three younger brothers , soI had dinner with them , too . I want to say , that I want to learn English that much . So it was really hard to do it again because I felt hard my finger . By the way I can ' tplay this song because maybe It 's really difficult because I do n't know how to sing the song so when I play the song I do n't know the timing . I really like this song so I did nostudy English hard like my friend said so I am sorry . What do I want ? What is the thing I am good at ? Because my left knee got hurt in a traffic accident and got hit many times during basketball games , The team prepared it . I wish to memorize Qura ' an and remember all its words like I remember my name . I wish to publish a lot of books and become a famous author . I wish to speak English fluently without thinking . To become that , I registered on this site . Before I did that I was listening for many different Islamic nasheed by English speakers , like Yusef Islam and Dawud Wharnsby . I really want to study more . After the meeting , the other members and I went out to have lunch . We went to an Italian restaurant and had a pasta lunch . A woman said one day she had been very tired and she wanted to be alone for a while . So she had said to her husband she had wanted him to go out and would hand over ten thousand yen . I met a foreigner who is from Mexico . I should go to the hospital before it gets worse . I do n't know how many people read my diary , but I welcome you who clicked my diary . Today was a very important day . They always interrupt me before I finish speaking . So I felt refreshed a bit . To practice English I start writing diary in this site . I set a target to write diary once a week . There is a new selection button called `` Match `` on the upper part of the page . I can make myself comfortable here . There were 5 other students in the class . The first person who completes 2 lines accross will recieve candy . We believe eating eel gives us vigor . Dashboard is , in my knowledge , the part of a car just in front of the driver with various meters . And when I 've read that part fifty times , I got an idea . The executive is a driver of the company ! You find people who speak English and communicate with them , when you make a mistake , they can help you correct it . 7 / 26 I went to TERKEY . By the way , today I went to school to sprinkle water on the plants . It was an exciting day today . my relatives and I are safe . My friend told me that she already knows the grades from all classes she took this semester . About festival for children aged 35 , and 7 Today , only girls who aged 3 and 7 participate the festival and only boys who are aged 5 participate the festival . Many families get photos of their children taken at a professional photo studio . As she said , there was a similar korean food with the same shape I think one way we get them is from our experiences particularly from hardships , ordeals and harsh adversities . In a sense , everyone experiences them and we might as well enjoy them . About Yesterday On the other hand , other people who come from European countries do n't feel that speaking English is difficult . I love tennis and I want to be ( come ) good and strong ^ - ^ I am a housewife . The Reason I 'm Studying English There are many embassies of several countries near my hospital . I 'm looking forward to graduating . My dog is 7 years old . She hardly barks and is housebroken . Actually , I sometimes go to these shops to walk when it is raining , but I always feel a little bit embarrassed , and I feel like I have to buy something . According to a report , the big reasons are climate change and the lack of habitat . Our environment suffers more and more pollution from human destruction . It can use many aspects of nature such as be made of natural products . Our new term has begun , I feel excited ~ One of my friends who loves English songs often sings `` Everyday is wonderful ! `` . Although I could n't registered for a popular class when I had asked for any available seats of that class in the Registration Office , but I could make it by asking for the professor ! I have just returned from a business trip to Shanxi and Henan , this morrning . In fact , this was my first business trip since joining my company . TOEIC is a test that lets many Japanese know more about their own English ability . Since then , I 've been increasing my Skype contacts day by day . It is Log cabin . Moreover my nose was running and I ca n't stop sneezing . : < Lately I have been working part - time at a Takyoyaki shop inside the kitchen of which the temperature is usually around 45 degrees , so I always feel like I 'm going to die x _ X When I am off work , I study Linguistics , specifically , Cognitive Linguistics . But I have few oppotunities to speak English in everyday situations , so my speaking is gradually deteriorating . . . + ~ + I bought snow boots yesterday . This food is simple and consisted of noodle , soup , and some ingredients . But it 's very difficult to cook good soup . Today , my father will come back from hospital . lf he comes , that 's too bad , lf not he will get well , but the money wo n't get too much better . . . . . er . er First , l must get a job . Then I can fix the problem . I begin this SNS now . I found the bookshelf costs low . I 'd like taking pic and listenig to music . And sometime I draw people and animal . The problem is losing keys . I know a lot of people who does n't know were it is , maybe because it 's a little island and is n't as important as Barcelona or Madrid , but Ibiza is such a beautiful place . building mills , strongholds , and city buildings . He can build an excellent defensive building ( the great wall ) , develop a distinctive technology ( computers ) , or get new colonies like Columbia . My friend texted me saying she is in Nakameguro . For example , if they prefer earning money by a part - time job as opposed to majoring in subjects that they have not ever majored in . I want to tell them `` you can earn money to earn a living even if you wo n't after you graduate from university `` . I 'm eating more vegetables for food . Photo album It 's the first week at work since the long national holidays . We keep talking when OCC 's proffeser was explainning . I must practice my English listening But I found my English listening is still very bad . I did some English listening test by myself . I think I must practice my English listening every day ! because it does not require physical strength ( I am not particularly strong ) . But the biggest reason is that I like to glance at many different kinds of people . Is that bad reason ? and many salarymen and students come to buy breakfast or lunch . For instance , people arrive at the same time and buy the same or similar foods . which is why they do n't remember being registered ( ? ) ( assisted ? ) by the same staff . If you always go to a particular store , you might be observed by the staff ! My purpose for this year is to study English . Today , I will go to the one of the biggest shopping malls in Tokyo , where I have lived for a long time . Ever since I was young , I have behaved confidently when I have done everything . The title is `` Successive Holidays `` I want to watch the volleyball games on TV . ( I want to watch the volleyball games in a stadium in reality . ) finally I asked her . This is a translation of a Japanese fairy tale . On the day , he received a gift from them , it was a big kite ! All of a sudden , a strong wind blew and the kite took the pig way up into the sky . The kite transported him to his grandparent 's house . These therapies are very interesting and innovating . I 'd love to get any information . I found the teacher had a good way of teaching , which gave the children an interest in the violin . * okara ; kind of leftover when you make tofu , but it contains a lot of protein . When I make a cake , I reduce fresh cream or cream cheese and use tofu instead , and also when I make a hamburger steak , I add tofu in mince . I really do n't like to prepare for the festival , but I like to participate in it : p But I 'm jealous that most of countries have halloween parties because we do not have that : ( And we went to the famous temple called `` Chuson - ji `` . I also have read his other books like , Have A Litthe Faith and For One More Day . Today I wrote only this sentence . But I could n't because I was in Au . I had to send the letter early . When they receive my letter , they will be surprised and happy . Surely we know a lot of grammar because we 've studied it since we were junior high school students . It 's no wonder that Arabic people of lower level can listen better than us because they 've been staying here for longer than us . Even if I have a chance to meet the celebrties I 'd prefer to meet economists or business people instead . Tom grabbed an orange . Bob hit Tom . I have a diary in English . I write for a Japanese soccer team , Sanfrecche Hiroshima . The team is a J1 league team . Ithink Sanfrecche will get the title this year . I was not entirely concentrating on the wedding party because I often watched the photographer . I have to finish some reports tonight . Keep enjoying ( ( = today 's actresses do n't have such atmosphere . . . Global crisis , London Fashion week , lectures in the university , my friend 's troubles . Last , you clean your class room , corridor , stairway and washroom yourself . This is my first entry written ! Anyway , my English level is really low . But if someone wants me to say something in English , I really do n't know how to say it . Next to my company , there are many foreigners . I want to communicate with them , but I do n't know how to begin . Sometimes it is very boring because I do n't like classical music . Music is the most beautiful thing in our lives . There are different surprises in our life everyday . Maybe next time I can do something to train my muscles . I 'm Tak , 26 , Japanese who loves to play basketball , watch movies and enjoys the beautiful ocean to swim , free diving and hunt fish . Also I 've been studying English since I had experience to study abroad in U . After I came back to Japan , I continued to study English in a university . So , I take pleasure in looking all around these language sites . We eat it with soy soup ( made from tuna ) not OKONOMI sauce . I just made the words ` language question `` , shorter to say `` L . The wedding party lasted two and half hours . We enjoyed some games and talked with friends . 9 years ago , I went to the United States as anexchange student . After having said my first English sentence , all the students laughed at me . So , I lost my confidence in learning English . Moreover , the English teacher who taught me for three years in senior high was a very annoying and lascivious man and that made me hate English too . After graduating in 2008 , I found a job in a joint venture , lucky . It is about a cute girl who was murdered by her neighbor . two years later , Susie 's family , her father and young sister still cant give up finding the murderer , finally , her sister found the evidence to prove that the neighbor is the killer . Well , I bought a new game called , ' ' DISSIDIA FINAL FANTASY ' ' . I have to be careful not to spend too much money . I 'm going to Roppongi tomorrow to meet some friends who can speak English . He also obeys our commands , such as : sit , wait and shake hands . Furthermore , every cigarette company should be banned for selling toxic materials ! According to the weather forecast , it seems that it 'll snow tomorrow . Being a caretaker is a great job . A caretaker has to have a likable personality . I thought she had potential as a caretaker because she has a good smile and a friendly atmosphere . But , hearing her story , I found out that a caretaker should not only have a likable personality but also a strong heart and a flexible personality . All buildings are of historical importance . According to news and documentary programs , the huge amounts of greenhouse gases such as CO2 , cause the change in global temperature . It is said that trees absorb CO2 . Automatic translation is not accurate . . ? Rumoi is small rural county . If I have a private teacher it would cost 20 ~ 30 dollars an hour . Today , I need to write a review of a famous Japanese writer Therefore I always miss the first chance to reply to my messages here . Sandra Bullock is always a nice actress that holds a special place in my heart ! Banks do n't trust JAL 's management and are refusing to lend additional funds . The topic is marine living body molecule faculty chemistry . Last year , 80 % of the students who majored in marine science failed the test . But I will study chemistry even more because on June 11th , I will have another chemistry test . Seeing this score , I was very surprised that the writing score was the best and the listening score was the worst . Reading and listening skills are the fundamental ones . I 'm writing this entry by laptop on the train . I do n't really know how to describe this feeling , but it starts when I think about what lies beyond our solar system and how tiny we are . Only 5 days later New Year comes . When she arrived at the hospital she looked scared but stayed . It looked like she was almost crying but trying not to do so . I will go to India this year . . Hello . There were beautiful ocean views and a cozy atmosphere in that video . This Matsuri was small and different from Japan 's one ( of course ; ) . But now , I do not feel good . Because I find if I open the computer , I just play games , chat with friends and receive the E - mail . When I want to learn some things from the computer , the time has passed . Maybe two or three hours have passed , by that time I need to go to sleep . The plan to learn something about English is always delayed . I like the scene when Marty plays the guitar at the party . Bas ga ososugita ( past form ) kara , watashi wa shigoto ni okuremashita . * PM Form + Yasui = easy doing verb Watashi wa nihongo wo miruto sugu kandou shimasu . ( hmmmm how can I put the `` yasui `` in this sentence ? ) Actually I 'm still afraid of them though I have grown up now . My dentist was a funny lady . She told me to just relax and not to be afraid of her . I should ( will ) be more careful with my teeth 's health from now . I believe I can be a good student and a good teacher ! Certainly , people in South Korea are intelligent , but such competition may cause mental exhaustion . I think then we can be more free , especially in Japan . Owner of rental apartments ! For a long time , I thought being an owner of rental apartments is one of the easiest jobs . Clerk `` Hi . `` Guest `` I am looking for a sandwich . Clerk `` Yes , we do ( have them ) . Clerk `` ( How about ) This one ? `` Clerk `` It 's 3 dollars . `` Guest `` I will take 4 ounces of this ham , please . Clerk `` Sure . `` One day , the same scene happened again . When the bus had just stopped , the conductor shouted to the people who were ready to rush into the bus , `` Do n't rush ! The driver did n't notice the conductor was n't in the bus until he found nobody reported the bus stop . psychologist must be familiar with Biology , Russian and math . Hello World reception party Today I went to a reception party at Tokyo modern museum . happy new year Nobody interrupts me . . . I definitely agree with the thought that men and women have different I did n't have an opportunity to listen to jamaican reggae music a long time ago . Cats make me comfortable . I asked about Merchants ' International Shipping rates to japan , and you said that Please look at the merchant `` * * * * `` . ( link to the merchants ' Shipping rate ) I came home and I tried to connect it to my computer . There is something about them I just ca n't understand . My name is Jack , I 'm from Syria ( the eastern coast of the mediteranian ) . I am so proud of myself because of my small diary in English Recently , I am busy everyday . And on Sunday , I was invited to my friend ' s I need rest and treatment from a chiropractor . but I received a notification from a memorial park office a few days ago , which is located in Narashino where my mother 's grave is . An entry on Lang - 8 after a long time . On the other hand , phones , especially mobile phones , are playing an increasingly important part in our lives . Tomorrow is the last full day for me here . Is it a person who talks everything with you or just a person who often argues with you ? Is it something that ca n't be replaced or something that 's not essential ? We do n't feel embarrassed when we do n't say anything , we just sit behind each other . Personally , a friend is a person who make you feel at ease / make you feel at home . By the way , I 'm going to the hot spring with my friend at the end of this month . In Chinese , the word Dog is called `` gou `` which ( the word ) sounds like Goal . Watashi no namae wa Zoli desu . Hajime mashite , Yoroshku onegaishimasu . However , he has to go to school with the neighbor students for a while . I said ' she want to get me a suit . Iwas very happy yesterday . I asked my roommate ( she was sitting near me ) took a picture which contains my cake and cookie ( but this picture maked me look fat , ha ) . I do not want to back to Taipei because it is the time near the final exam and my transfer exam . And I found messages from somebody who is in another country and also studies languages . After I clean , I 'm going to go to sport shop to buy sportswear because I have a school excursion next Friday . Of course , not only speed but the complexity of the content was a problem for me . On the other hand , the English with dialect was OK , as I frequently communicated with such people including German , French , Thai and Taiwanese . Nonetheless , I felt it was an honor to listen to some wonderful presentations and saw fruitful communication of distinguished scholars as a would - be scholar . I have big dream - an American dream ) ) I want to learn English and go to my favorite city - New York ! ! ! I want it now , now , now ! ! ! I hope this site and U can help me ! ! ! Thank for your attention ) ) ) I remembered that I must buy white shoes . I think that there are three keys to success . Second , there are many bonus events . Yet we can not help but obsess about growing crops anyway . This surgery lasts only 10 minutes , but is it safety ? ? By the way , today this video helped me to change the eye colour in Photoshop . Usually , my mother puts a sweet potato in a microwave oven , but today I made a sweet potato baked with hot pebbles with thaw function of the microwave oven . I want to improve it and hope someone can help me . To achieve this , I am now required to achieve a certain score on the IELTs test . I can study for reading and listening sessions by myself but it is very hard to practice speaking and writting essays . So now I definitely know what I need to ask when I go to the school . Compared with other classes , my class was really peaceful and hadgood team work . I went to Osaka on business . I am interested in American culture , life , and history . In the future , I would like to use English for business , or communicate with people who live in other countries when I travel . I love music ! ! My dream is to join an International Cooperation . I wish only to enjoy life and to do something I like . The movie is Alice In Wonderland . I am goin to accompany my Mon to Japan or Cambodia and study TOEFL regularly and hard . But she studied Japanease very hard . After one year , she could speak enough Japanease to travel to Japan alone . At that time , I had n't realized how short of a distance commuting was . After she got off the subway , I came close to not getting off at my stop because of my very high spirits . I know that she has a boyfriend . So I feel confused and frustrated . I 'm a Phoenix though . For / On my birthday , seven friends of mine came to celebrate . I received clothes as my birthday presents . As title , in our Graduate School of Science , we have a team competition of tabletennis at the end of every year . From the undergraduate student to the professor , every 3 - or - 4 - person - team can enter and participate in this game . The recycle material is used for variety purpose : for example plant pots and exterior materials like wood . I will see many of my friends ! Though I had decided to write my entries everyday at first , I 've been feeling the difficulty of continuity . Hi , everyone ! I 'm a Chinese girl . Could you be my friend ? During those days , I had no other wish except to pass the examination and get high grades . Because I will turn into 18 on my birthday . She will be three years old next month . The temperature may be 28 degrees C or so . I do not use air conditioning due to health reasons . Also , I want to limit emissions of carbon dioxide and other greenhouse gases . As I could n't sleep , I cound n't help but use the air conditioner . Finally , I was able to sleep well . It is one of the most innovative methods I 've found ! Almost every member is a student . We were relaxing at this point . I ate two pizza slices and something else . I have taught English . I am very nervous because I have never presented at a conference . They are similar but different . Everybody : ) So , I 'm going to practice baseball with my college friends . We ate `` zouni `` , which is the traditional soup containing `` mochi `` ( rice cake ) , vegetables and chicken . After graduating from senior high school , I spent three - months as a holiday . During this time , I forgot lots of English grammar and vocabulary . So today , I brought the cat to a vet again . Takao , which is called `` Takao - san `` in Japanese . I went to the park for a stroll in the daytime . Butterflies were flying around the flowers . In addition , I plan to take part in an international conference for Asian students , which will require me to speak in English more fluently and precisely . The second goal is to study economics . In the conference , I will discuss economics , with emphasis on matters concerning East Asian countries . I want to break this habit . A lot of things droped off , and I , people from work and customers panicked . I was so terrified that I could n't think about what to do . My family was not attacked or hurt , so I got releived . I 'm nervous . The match was the Carling Cup Final , `` Arsenal VS Barmingham `` . It was an exciting game . The teacher said `` Walk around in the water to rest . `` and then she said `` It 's time to learn backstroke . `` She told us how to do backstroke . And tomorrow is athletic game . I think you want to contact the Hosan Industry Company that makes things for outdoor and rain ( ? ) , but I do n't have their website or email address . It 's very interesting . Christmas day is coming . Curry was too spicy , but Cheese was most delicious to me . I watched the Olympic games on TV , and I want to enjoy skiing with my friends . . . In Japan , publication contracts between authors and publishers are n't documented cleary . It is easy to control the royalty rate . However , Murakami does n't have to pay roalties to a publisher because he released his novel as an e - book . For readers , it has many merits ; book prices will drop , readers may be able to read books wherever they want and so on . I heard that these two cities have numerous Japanese companies . The real design That is the typical traditional Japanese thought . English people never remove foam from dishes after washing them . Is this true or false ? He answered that it is the stereotype like the illusion that most Japanese people wear glasses with big lens . Currently , here in Brazil , there are many cases of UFO abduction , but the government still has no comment on the subject . Even so , there are many communities that do ufology studies by themselves . I wonder if in the near future all information regarding UFOs will be declassified and the truth will come to light . . . But I think I can handle this in the future ! I 'll tell you about my favorite movie . Because I love drums and marching . Recently I understand CNN News ( pod cast ) which is an improvement from 1 year ago , All of us complained about our speaking teacher because she 's not a good teacher . I like building by design master . Their construction can transmit great information and express their unique ideas , so I like this the best . Japan should stop whaling Secondly , whales are our friends and we live on the earth together . Finally , each species has its reason to exist and the whale 's activities makes the ocean clean . It is a kind of magical creature . We left the Merlion Park and went to the Raffles Hotel . It was too expensive for us , but we were interested in the hotel so we went to look around there . The lobby was well cleaned and its cortile was so beautiful . We were very satisfied with luxury there ! Fortunately , we have not been dissapointed . But it is too bad that it is so dirty on the road . the Lovegood 's house is exactly like I imagined too ! I cried when dobby died ~ and when Hermione `` obliviated `` her parents . I have a gift for playing music , but I have to learn another profession , which is my parents ' expectation . Hopefully , there wo n't be any trouble during my trip ! English that Japanese high school students are studying is really grammatically difficult . And the vocabulary is so , too . I remembered almost all the English grammars , but still , it is sometimes difficult to tell where S ends and where V is . But this word is actually difficult and it is weird if I use the word when I talk with friends or children , right ? ? I thought it was too big for my computer , so I canceled the download . because I wanted to be Network Engineer . But now I 'm not so sure about that , and that 's why I want to practice , to see if I can really speak English . I thought that I should take care of my health because it is so weak . However , our town has not campaigned to build windmills . There are some differences in opinion as to whether the view with windmills is acceptable or not . While I was looking for the place , I tried to call my friends , but `` they `` did n't answer . I stayed up there until next morning . I want to discuss a lot about grammar relating to our feeling , and also our mind with analytical way . This is a heroic town , because it is survived the Great Patriotic War . Sometimes , I work , and now I water the flowers around my school ) ) I have a younger brother , he is 8 years old , and he studies in my school . There are , however , many things we have to do to protect and develop their understanding of human rights . Spanking is needed sometimes , especially when children are too young to hold decent conversations . I was also studying English in my dream ! ! I believe that time solves everything ! Sometimes I had to choose between them . So I 'm afraid you ca n't see the upper rainbow so clearly We enjoy watching programs on it ! ( Of course , I want to study English . ) I am so happy today , because my company got this big case this morning . It 's big news for all of the staff in our company , because it means we have things to do and that there is no need to afraid we will be laid off , or take unpaid leave . ^ ^ , Recently the global economy is so bad thatmany people got fired , so it 's very helpful to have a big project in our company , ha ha ha ha Since it 's raining , I ca n't go out and play , Recently , I fool around anywhere and surf over the Internet all day . My mobile phone is possibly broken . I 'm really worrying about this problem . I want to speak and write English well , so I have begun keeping a diary . It was slippery and dangerous . New vocabulary practice Mar 19th , 2009 Please help me to correct my English . I met my sister at the restaurant . I still remember I went to this school alone with a big luggage three years ago . I will always cherish the experiences I had at SCNU . So , I went to research the market in Italy . quite religious . I am determined to learn English , but my English skills are not very good . This surely includes me . It might be because Japanese does not have similar words . I experienced various things that were good and bad . make my mind to go abroad to study , help with some company work . . . At Sydney , there are ten campuses such as Caperdown , Cumberland , Mallet Street , and so forth . When I wrote the tile and the first sentence of this diary , I wondered if `` Families ' New Year 's Party `` was more suitable . However , if we lose air we are unlikely to survive . In present day , air pollution get worse and worse , Industries at will exhale the waste gases , more and more people drive to work and like smoking . we should find a method to solve this problem . Before exhale the waste gas , industries must install waste gas purification apparatus . As promoted by the development of modern science and technology , television programs today attract a vaster group of audiences with tremendously enriched conten and a 24 - hour rolling schedule than ever before . The fact that television seems to control our choice of leisure and entertainment has recently brought a problem to focus on : whether has television destroyed communication among friends and family ? Beside , in my own family , my parents and I enjoy the time when we are sitting together and watching tele - films . I do not deny that there may be some cases that people are so addicted to television or some other habits that he / she will probably ignore communication with friends and family . Rumor has it that Seth Rogen did n't read off the same sheet of music as Hong Kong 's famous actor Stephen Chow for the flick `` The Green Hornet `` , which will hit the big screen in early 2011 , thus Taiwan 's hottest singer `` Jay chou `` substituted for Stephen Chow , as the lead male 's assistant `` Kato `` that used to be played by martial arts master Bruce Lee . I have never eaten a sandwich there and wanted to eat one . So they came to my house and celebrated the new year . Every year we watch Ekiden where college students run a long distance and pass a baton ( taski ) . my cousin 's children came to my home for the first time . I enjoyed the new year holiday enough . Is it true or false that cellphones influence the functioning of pacemakers ? So I hope somebody can help me correct my grammar ! Third , the author described that the ultra marathon race took place in a mountainous area in Mexico , where American top ultra marathon runners and Tarahumara runners competed against each other . In 1996 , the writer died because of liver failure . I have begun writing a diary in English using this web site . I also try to correct diaries written in Japanese . I will need your help in the future . My companys holiday lasts from the second to the sixth of May . But if I thought , my holiday could not become long . I wanted to a cold drink . 4 customers were there . That 's because we are taught grammar , not conversation . I know grammar is very important when learning a foreign language , but I think we need more practice speaking . I have a friend in Oregon . We visited many places when she was in Japan . It is afternoon in Thailand and I feel really hungry , I will find something to eat . . Since my daughter is still a baby , I can ` t do anything I like if she is awake . because my friend told me that reading books helps your spellings and reading skills . So they often sprinkle water on the coal in stockyard . It looks like not only me , but also other people all around the world are interested in the Android phone . I often use subjects of sentences repeatedly . I could see piled stones , vertical cliffs and rough sea . While I had n't booked any hotels or other accommodations , it was not too difficult to find vacancies there . So , I was thinking that I could easily find a room available on this small island , too . I therefore decided to ask him what I should do . After school my friend consoled me . I watch movies and read English books , but my main problem is with speaking , writing and using grammar correctly . ( I 've studied grammar but I do n't know how to use it when I speak . ) Today is rainy in Kyoto , Japan . My favorite music is Perfume and Lady Gaga . I ca n't wait until the Gaga 's new album is released ! Perfume is made up of 3 Japanese girls . Some people say `` If you want to live in Japan , you should apply for citizenship . Of course , I love Japan more than Korea . I came to Toronto in February of 2009 . I wentto English school and got a job . It was great experience for me . Can I get the target I planned at the beginning of this year . I want to go to Japan after 2 years . I want to know more about life in Japan . I hope someone can tell me if a student studying abroad can find a job and support himself in Japan ? Anyway , I can not write in Hiragana today like magic . today is wrok takes a rest . it was possible to run 10Km today . Many questions have not been solved . . . . I 've noticed that the reason for my lacking English ability is my small vocabulary . And the avant - title of `` A Channel the Animation `` shows the names of creators with a very cool style . I 'm trying to study grammar from the beginning now . These are quite expensive here in NZ . I usually ca n't afford to buy these things . It also reminds me of Gaza and our situations these days . I believe you can do it , too . Fist , you can remember some set phrases and sentence structures . Then try to form them into a new , complete sentence . I stayed my friend 's house and I come back to my room next day . I spent the whole day at home today . While travering , I ate various food in each town . Next month , I will make and launch a model rocket . My grandmother lives in Fukushima . Fukushima has nuclear power plant which has been issued . We had special dinner with our grandparents and cousins . I belong to the basketball team . Today practice was so interesting . I just wake up 7 AM , and take half an hour for shower and breakfast . But there is especially nothing to do in winter . My boss , who has good sense of humor , is nice guy and allows me to study something when I do n't have any work to do . I love soccer so I watch soccer games , not only Japan 's but other countries as well . At the beginning of the year , there were many goals that I set up with hope but now , I guess , there were few things that happened . It means `` the goddess of liberty . `` Recently , a close friend of mine hesitated to apply for the receptionist job . She stayed at home all day to prepare everything for her husband . Absolutely not ! We sometimes must endure their unreasonable requirements . Even though I come from a non - wealthy family , I never look down at my family and myself . good morning everybody ! I woke up , and then I had a breakfast of steamed bun , a banana and milk . I keep writing on my diary recently . it 's because I do n't have an opportunity to speak english . it sounds a litte strange but I do n't think so how boring ! because we do n't meet everyday Although I 've learnt so much , I still do n't have enough confidence to face my future . It is an outdated thought to discriminate against bi - racials in the age of globalization . but it is raining in Japan . . . . menu : vinegared rice topped with fish , melon , noodles and green soybeans . Tomorrow I 'll participate in a water melon festival . Although I am not gay , I do n't think people should kill someone just because they do n't like them . My friend who went to Canada says crows there are very small , like sparrows ! ! Japanese crows eat garbage and grow fat . `` I went to an English seminar last Saturday near Tokyo station . But that seminar was good opportunity for me , due to meeting people who are highly motivated and achieve higher levels than me . I will have a TOEIC TEST in November . Ran to the public bath Because I do n't know much vocabulary and ca n't speak well . For today 's dinner , mushroom was served . Well , that 's okay because I ate delicious tacos and pizza after that . My gentle host mother allowed me to pay tomorrow . I 'm interest in playing and listening to classical guitar , riding bicycle , traveling abroad and playing Star craft etc . Please enjoy my posts and give me advice about my posts with type - o , grammar and vocabulary etc . I have a girlfriend . She told me to let our relationship return as it was before when we were friends . Shortly after I went back home to put the souvenirs in my room , I left my home for a Japanese restaurant . I 've got to appreciate that . I think that Koreans like to go to the brand name coffee stores especially when they want to meet friends or want to read a book , study , etc . Firstly , Koreans have a tendency to look for brand name products when they buy something . The boys had breakfast . I want to take a rest after class but my family said , `` you are a high school student , so you should But many people think speaking and writing English well is somewhat of a privilege . So I went to the second floor . I did n't understand why he could n't see me , because he saw the first floor where I waved from . At the moment , all my classmates are typing their essays on the Internet . Indeed , it was as hot as crazy , Insteadly I swam 1km . I think this is a hard problem because owners might say : `` It is right to build my house on my land `` and need to immediately be solved by the government . Speeches , chatting , twittering . There were some core developers of CakePHP and they made speeches . I was there a few years ago and that ramen was very delicious . One feature of this ramen is that it is rich . I registered at Lang - 8 Today . I think Lang - 8 is a great SNS because it has the express purpose of studying English . Today , I 'm in a bad mood because of my college entrance examination , I did n't perform well , especially inMath . But now I still ca n't commend cinemas with English . If so , I 'm curious to know what they are doing . I want be always surrounded by people who enjoy talking with me . Worrying about security , I set a password for the file . Autumn season is the best season to exercise for us in Japan . Why do n't other countries clean their ears ? The news reporter said `` Almost all the world 's people do n't clean their ears . `` There are ea cleaners services in Japan . We sometimes clean our ears . Cleaning ears is good feeling . How does it become if you do n't clean ( your ) ears ? The traditional earpick of Japan hasa top of cotton or Daruma . My birthday is at the end of December . I make it a rule to go to university by foot . I must pay my university fee without my parent 's help . I pay my university fee out of my own pocket . I got up at 8 : 00 and had breakfast , The city is very popular with people having fun , especially surfers . Kanji is Chinese , some are the same but others are different . Recently , I have been worried about my future . I found that I nearly have no free time for myself , but I will still try my best / hardest . I printed out my diaries with your corrections . Im reviewing my diaries and reading many people 's corrections now ! ! ! I hope that I increase my vocabulary and learn how to express myself . It tastes very good . Though I have been learning English for many years , I find it 's really challenging to improve my spoken English because of limited learning environment . WHEN I LISTEN TO THEM MY COLLEAGUES SPEAK ENGLISH WELL . EVERY DAY I GO TO WORK , TELLING MYSELF I SHOULD LEARN SPEAK ENGLISH . My friend took me out the restaurant . In the afternoon , I rode my electric bike to work . It was 9 p . m . when I arrived at the central of Bergen . Finally , I will always clean up our apartment . On days like today people use electricity a lot , but due to the earthquake that occured on 3 . 11 , we are short of electricity . The government told us not to use electricity carelessly , but they did n't announce any countermeasures against the shortage of electricity . By the way I want to buya pair ofcrocs . The station staff told me that I may have to wait about 3 hours , so I went to Xihu to kill the time . I was walking around the lake for nearly 2 hours and took more than 100 pictures , then I went back to station to catch the train , but the depressing result turned out that the train has been canceled . What should I call this phenomenon ? For example , the word `` perfect `` is `` perfekt `` in German so I often make a mistake . So I get used go to bed at three or four o ' clock in the morning . When teaching Japanese , I need to explain so the other person can clearly understand the basic grammatical concepts . I heard from my friends that there was a website in which we can get corrections from real native language speakers . Is it a correct sentence . We should work together and try to build our future ! know how many rich men can be available for their request ! I believe my life will change for the better and I will I am a salesman in spite of having a problem with speaking . If I were not a person that stutters , I would probably laugh at it , too . I did n't even think that I would become a salesman . I have met several people who have overcome their stuttering . They said that being old and having experience counts , so I believe that I can get over it . I 'm okay with the dress but really do n't know what in green can be added to the outfit : scarf , hairband , necklace or bracelet ? She is a student at an institute . She likes chocolate very much . I combined this into the previous sentence . But I could n't drink beer because I went by car . One of the places I would like to visit is New York . My plan is to open it near a university , because I want to cook delicious and inexpensive lunches , cake , coffee and tea for many students . I want a lot of advice and messages about my dream ! ! ! Recently , we had Weight training . We enjoyed grilled fish , Japanese radish salad , yakitori ( chicken roasted on a spit ) , and ochazuke . I did n't feel bad at first . I have already reserved the bullet train 's sheet which I 'll ride on . We should notice that school education starts too late , at which stage , the foundation of a child 's personality has already developed . basically I lost attention easily man , that is freaking gross lol It was a very hot day , but I had a very good time with my company . It has been raining cats and dogs this week . I chose two songs `` Somewhere in my Broken Heart `` by Billy Dean and `` Song from a Stormy Night `` by Secret Garden `` . I found out this song by chance but it is perfect from the lyrics to rhythm . And since I 'm a person that 's easily distracted , it 's good for me to learn how to use my time more efficiently . Observe the progress as you go and see whether you are staying on the task . Most Japanese people are Buddhists , but they are not seriously religious . I ca n't resist eating my favorite foods like cake , ice ( cream ? ) , and snacks . I 've come to realize that that is not healthy . I should save some money and be careful not to eat junk food . I will eat chicken and more delicious food . Those are just opening words ? because I just have been studing Chinese I have totally no idea what to do now , but I 'm going to find a way to help them one day . I went to the graveyard with my family because it was Obon . Checking my grandfather 's Buddhist name is like preparing for my father or my mother 's death . Only a few minutes after my first diary here , the kind snowleopard helped correct my mistakes . In onsen - hotel housewives can relax to their heart 's content . Because she can not only escape from her daily house chores but does n't have to do anything for her family . So , their dream was go to onsen and relax ! The school keeps me very busy , I was able to book a concert ticket that I applied for last month . Correct function , Coment function and so on , is PCver . the beautiful sky after a rainy day . I love the sky , especially after a rainy day . Some foreigners want to add strangers as friends I do n't want to connect just to collect friends . After arrived at home I realised whose house it is . Most of them are not good at Englsih and do not like studying English , [ comma ] In the show , a man who lives in Mali sent a warm message to Japan . Introduce my self Telemarketer for the day . This symposium is thought that the biggest one in the magnetic society . Hmmm . . . Before you achieve success , you may go through tough experiences . I constantly receieve things that make me wonder what I should do to make them pay for it . our food self sufficiency rate is really low , compared to other countries Mnn no , actually my friend 's mother gave me chocolate ! A few days ago , I ( we ) started twitter for appeal our issue . 140 letters at a time seems too short , but if you squeeze your brain , 140 letters can be good enough . The problem is if I can continue to write or not . I sowed some morning glory seeds , but only 3 of the sprouts came out . These days I 'm so weary because of lots of assignments . Hello , I found this site by accident , and it is cool , I really think this site can help me a lot while I am trying to improve my English . I think her travels are 5 times better than her novels . But not anyone can travel to 3 countries during a 1 year period like her . I am a lucky guy . : ) If my sentences do n't make sense or are grammatically incorrect , then please correct them . My favorite subject was Botany . Recently , I 've come home without work , so I have time to learn foreign languages by myself and train for Aikido . That 's why I really want to speak English . Saying `` TheIPhone is necessary for you `` , some of my friends bought it , in fact . Also , it is good for the environment . all teachers understand my speech Also , my expression is same everyday Nowadays , fast food restaurants are also beginning to provide a light meal like a salad or a lower calorie drink like a diet Coke . I hope the sun will be shining when we arrive at the park . so not only soloists but also groups can have an audition in season 3 . When I speak , I become confuse because English and Japanese have different word orderings . . . Also my handwriting is not good . . . I 'm really upset , because I have 1 month before I leave . I miss Taichung and my old friends . I usually grind the favorite coffee beans and make some coffee . My favorite coffee beans are deeper roasting , bitter - tasting . ( Sometimes when the coffee beans are sold at a bargain price , I make the decision to buy immediately . The city was hit by a a strong earthquake , but Tokyo has stayed strong ! I did not know he was sit near my foot and playing in the computer . He said to me `` what ? What did I do ? `` . I come from Taiwan . They came from England , Canada and America . But , fortunately , I 'm better and now I am coming back . I will plant them some bright day in the middle of November . Of course it has cool music , a good cast , and an awesome script . I want to study English . 1 cola is about 250 yen , a burger set from McDonalds is about 1200 yen . . . will not be able to eat hamburgers for 1 year . . . . The second one is the Chinese Pavilion in the EXPO . A lot of new similar idioms The other day , I went to the Kyushu National Museum in Fukuoka , Japan , and I saw `` the national treasure Asura `` . There were many people , so I waited in line for a while . The moment I saw the Asura statue , I felt ious mystified , because in spite of the many people / the big audience , Asura was standing there quietly . I know both the bride and the bridegroom , so I hope they 'll have a truly happy new life together . Then I had breakfast and did not know what to do next . I arrived at InCheon International airport early . I was so nervous , However , my teacher is very strict to me , and she always tells me that the facial expression of my painted cherubs looks so weird that I have to repaint them . I had never gone abroad before I went to Ireland . I was only Japanese person in this stable . And it 's the first time as well that the original will be played without turning it into a simple one for beginners . It 's `` Gymnopedie `` composed by Eric Satie in France in 1888 . Cleck here . I decided to buy it . It let me study about Korean history such as how the North - South war started in 1950 and the annexation of the Korean pennisula by Japan beginning in 1910 . But I worked . . . . . I got some chocolate and a muffin because it is White day . The one I had most success with was a rabbit . I fed it from a little rabbit to a big one . Alan Rickman played in this movie . But I believe that if there are different forms existing , then there must be some reasons for them to exist and for natives to use the way especially about the usage of articles . Although I have learned a lot in school , I ca n't turn all Chinese into English because I do n't know the vocabulary . I am worried about my English resume , because I 'm afraid that my broken English would make the offices laugh over their head . I received my telephone bill today . I use that phone for internet access . It 's not supposed to be used to call friends . It 's just me that uses this number to call people sometimes . The details of the bill said I called and used it for around 1 . 30 hours or something like that . I did not use it like that . I just use it for 5 minutes to call my friends . They ca n't check it right now but they said they will let me know later . and I am very busy preparing for departure ! We were able to listen to the sound of the waves while we were soaking in the bathtub . Some friends talk about their secret stories , usually related to love . I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the bathtub . But the important thing now is to organize a rescue operation . In fact , my father and I just went to the store ( on ) the day before the murder . I was really surprised because the horrible murder happened close to where I live . I got a cash gift . I 'm so stressed that I ca n't concentrate on the presentation . There are five people in my family . My mother 's name is Wanpen , my father 's name is Sonjonh . I have one sister . Her name is Tudsanaporn . I have one younger brother . His name is Lertchai . I want to make friends when I travel to foreign countries : D I wanted to buy 500g of chicken , but there was n't such a volume , there was either kilograms or whole chicken carcasses ! ! The shopping cart was very large too , so I could n't help but buy more things than needed . I love to listen to classical music on the internet Radio `` Classic FM ( UK ) `` . Sometimes I have listened to `` Out Of Africa ( Screen music ) `` on the radio . If I have made any mistakes in these sentences , please correct them ! ! Of course Macdonald 's food is not capable to properly keep us healthy because they use lots of oil and it 's hard to keep good balance of nutrition if we only eat from their menu . if I stop , many things will change . I do n't like my life at this moment . I ca n't relax myself . What I can do is make fun of the people who live around me . Someday , I wanna watch those movies without English subtitles and speak English fluently like a native . I love oily American food , but over - eating is bad for our health , so I need to exercise more self control ! ! ! Today is Mother 's Day ! ! The peanut butter includes pieces of peanuts and is a little salty . Also , I like particularly bitter chocolate . I Worry about it very much . But I know I will get busier and busier . Maybe I enjoy it , I 'm also afraid of it . One day goes by again , en ( ? ) a little bit helpless , but also with some regret ! ah ! It spread good smell in the bathroom . I am watching a foreign drama . It was popular in Japan awhile ago . I have not watched all of season 1 yet . I think I need more regular excercise . People have many excuse for not to exercise , mine is I am afraid of my skin getting darker . Even though he said he wo n't develop a relationship with someone just passing through , I still fell into his warmness deeper and deeper day by day . No matter how loud the clock rang , I had no reaction , so I skipped class this morning . : p But in facts I want to know if there 's any way can make me miss him less , cause my friends always told me to forget a person it is impossible to be with . I like the class so much , but it 's pretty hard for me to follow up . 1 - Watashi no ima wa ookikute hiiroi desu , sorekara ookina mado ga jitensha - doori ni menshite imasu . 3 - Chairoi taku wa arimasu , desuga zenzen watashitachi wa tukatteimasen , nazenara itsumo okimono de ippai dakara desu . Today there was a flamenco show in this restaurant . I can always listen to the music of flamenco . I like this music , but can not dance flamenco . It 's especially comfortable to run in the morning . I wore a beautiful dress and had a lot of make - up on . Is my feelings strange ? ? So I asked a saleswoman if she had the novel ' The English Patient ' . # 2 is her diagnosis and cut her teeth . # 3 is her medicine . I ca n't fall asleep today , because a hurricane has come to Korea . Hello my friends , I have missed writing in Lang - 8 . It was the most Lovely Holiday of my Life . The only thing I am worried about is that someone might hit me and try to steal my money because I have heard there are people who assaulted and stole money from people at ATMs in Japan . Turnitin is a detector for bad academic practice or plagiarism . Without having to include any references it would mean it 's plagiarism . If Turnitin warned you that you have plagiarized , you must rephrase the sentences in your own words or include references that you borrowed from other writer or creator 's ideas , otherwise you will lose a lot of points and , to make matters worse , you will fail the course immediately . I have been a public servant for 2 years . I 'm going to join in the English Communicate Forum tournament . `` it 's time I 've watered for your rose that makes your rose so important `` It is like a child 's drawing , so I get embarrassed . The firewood is fuel for the water heater . Nowadays , fuel for water heaters is mostly gas or electricity . I am feeling a little bit sad . I went for a walk around my neighborhood and found that many things have changed . Many interesting shops have been built and it is a pleasure to enjoy them . I did not intend to address political or environmental issues . For everyday since I had to care of my grandmother , who has I remember when I enjoyed some seasonal festivals with neighbors , went to temples or shrines to be grateful , cook and eat traditional food to be eaten at the particular period . I 'd never heard of such customs before . When I went to the little shop ( on campus ) , it was crowded too . One of the children is eight months old and the other two are one year old . We have separated axactly one year ago . I played Cod4 in an internet cafe with a Japanese girl , but we did n't talk much with her , because she was too depressed when she was playing the game . Actually , at first I wanted to study Psychology as my major away from my hometown ; As a result , I followed one of my best friend to enter the university that I 'm at studying now . Besides Japanese , I 'm also very interested in other cultures , like European and American culture . ; p I hope I can make more friends from different countries , learn more about different cultures and make a difference in my life . ; p Because the bang has hang over my eyes . If you use Twitter , let 's become friends . Ha ha ! I am very happy ! ! ! It occured to me that we could have a useful and interesting time together . But the weather forecast said it would snow by midnight . But if the temperature is not so cold then there is a lot of rain or snow . Snow makes transportation difficult . I felt very good and healthy . I will take my holiday for Chinese Spring Festival from tomorrow till Feb . 102009 . So in this period I may not come here as frequently as I 've been doing now due the inconvenience in accessing the net . Today I had planed to read my book before I went to sleep but I am still spending a long time correcting my diary I think I will probably read it tomorrow morning . Also it is much more difficult to talk to someone when I can not see his / her face . Unfortunately , I have no chance to speak English in Japan . I bought rolled fruits cake for him at Shinagawa station on the way home . Dragon Quest joker that I bought one month ago . If they play a game for thirty minutes in the morning they should go and play outside for one hour in the morning and the same in the afternoon . These are really necessary clothes but they are also a little expensive for me . Also , I love `` Veronica Mars `` ^ ^ We can inquire about the results . You also have to believe in yourself . This is because it should help me to improve my sense of rhythm . ( I want to be a good singer ! ) I feel like I am a good friend with this device . If he is forgotten by everyone , he will receive a real death . However , that is not real space flight , but that is the first step in bringing space tourism to our daily life . many Korean students do n't like to study for TOEIC , The purpose of visiting Nikko was to talk with foreigners in English . After lunch we walked around Toshogu Shrine , but we did n't catch / meet any other foreigners . Congrats ! ! I 'm no longer surprised when we have blackouts because I 'm now prepared for them . Now , I look at my game collection and I ask my self : how did I play all these games ? I am studying to prepare for the promotion test . I 'm having trouble with my annoying neighbor . I 'm at the university in Japan . I do n't believe that news ! ! butI reallywant to communicate with a foreign student , especialy with achinese or japanese student . I 'm looking forward to making many friends here , so please contact me if you have any of those hobbies listed above . I had a 5 minute nosebleed but it was nothing serious fortunately . Students really wanted to watch that game . We were really depressed and did n't concentrate . Not being able to stand and see the unacceptable truth , we are planning to create a new club where students can stick together and share experiences in learning English . To have a success in organizing an English club , the leaders need to have interesting activities to contribute and maintain it . because I do n't have enough English skill and vocabulary . Because Baigou is `` The city of Bags `` in China . After the meeting , we ordered a pizza and had a dinner together . First Time ? So . . . here is a question from me , what should I do each weekend ? Today , I showed my mother how to make a decorative mail by mobile phone . It is wholesome erotic , so it 's safe for children . The day before yesterday was Eurovision . many thought that it was a failure . I forgot to write X ' mas cards to some friends , so I wrote some in class . or European countries because Nobita is so lazy . Occasionally , we should go through trial and error to determine the best process . I love to watch movies . I go to the movies and rent DVDs oftenI also have movie channels on my TV , so I can watch movies almost every day . I have a lot of favorite movies , and I want to recommend `` Beauty shop `` with Queen Latifah . and `` Nobit `` ( I 'm not sure if the is correct ) with Eddie Murphy . ( It 's so difficult to spell people 's name ) My favorite feature about the game is that you can go a battle against your enemies even if your are only level one ! Because I do n't think I 'm ready enough for my future . And I think getting older means having many responsibilities . Now , I really want my wife to be a Japanese cartoon worshiper . As I had thought , she enthusiastically read it HAHA . Probably because , in Singapore , Japanese comics are little more expensive than in Japan . I have to get better , especially at long - distance Free style My job is engineer in semiconductor . I received a mail from my daughter in Bali , Indonesia . I have always been interested in online learning and am looking forward to gaining more experience in this field . I look forward to seeing my friend because we have n't met for a while ! I hope to improve my English because my grammar is bad and my vocabulary is so poor . I hope someone will correct my English . He remembered his father , mother , brother and sister . His teacher liked him , not only is he a good student , but also he is only foreiger in the class . Can you guess how many men are in Jam 's family ? Yesterday morning , I did n't check a weather forecast . writing skills , but also it will be a good chance to get various experiences with I should have spoken clearly and made sure . Of course , I watched `` Uglly Betty `` . I will probably watch `` Uglly Betty `` tomorrow too . m and finished at 7 p . m . After that I had to go to the office for study session with my co - workers and my boss . Is that right sentence ? Uuuuu I became sleepy , I think I should stop imagining stupid things . I 'm 12 years old , I want to make a lot of friends . today I took a bubble bath , for the first time , The female instructor is very nice . The most popular one at the library in my town was `` Magical Cleaning : Clean your house with pounding heart . `` The waiting list for this book had more than thirty people on it , so I did n't enroll my name on the list . I have to pass a State English exam so I 'll be very grateful for your help and corrections ! There 's a chance to meet a person who has a similar inner world like mine . It was very delicious . In our city , winter is often cold ; strong frost , snow storms , and ice . Autumn will bring joy to us , when nature comes alive and becomes warm and affectionate . I sometimes felt sea sickness . Yalta is a centre of tourism and entertainment - well - looked after parks and alleys , a wonderful beach , waterparks and many cafes . All of this attracts many tourists every summer . Alupka has a beautiful botanical garden , which contains a collection of plants from all over the world . 1 To polish my shoes after coming home . 5 To raise my English skill from beginners level to intermediate Mysterious man They came by submarine and consisted of 11 people . They then finally succeeded through to the boundary of the Korean forces . But all of them were killed by the Korean soldiers , and so he continued to find them while wounded on the mountain with his spirit ! ! So I brought him to a pet shop in the evening . According to the weather forecast , it will continue to rain until tomorrow . Ahhhhhh - - - - - - - - - - - - - - - - - - - ! ! ! ! I 'm studying English little by little each day . Therefore , I was researching the market related to these products and customers . I 'm still continuing to research today . Then , I play that melody with the new keyboard I purchased recently . I 'm writing an E - mail . My mother and I hope she stays in Canada and takes ESL at university or college because it can be more easy to enter , save the money and University in Canada is not bad ! r Umm could you tell me two ways ? ( take some exam course and ESL class at university . I heard her thinking that she want to do roomshare near downtown from 12 / 26 and it is better that room mate is Japanese because of safety . Could you ask your friends ? Sorry , my English is really wrong , I appriciate your support . Many Japanese prefer to use mixi rather than facebook , because they have resistance to being discovered by acquaintances ( e . I 've had a funny evening with friends . We went to a big shopping centre , then went back to my home and had dinner together . I am working in an `` Automobile Industry Corporation `` . The machine 's name is a `` Gear Insert System `` . We have until tomorrow to finish any adjustments . Hmmmm , what should I write about . . My Japanese friend Momo and I are in the same English class since this semester . For example , she can understand what I say like `` sit down . `` , `` get the doll . `` , `` wanna eat ? `` , `` take money `` , `` wanna have a snack ? `` , `` wanna take a walk ? `` , `` bring the line . `` and so on . caught a cold ? I think I caught a cold . So I should go to bed earlier today . I am writing my diary for the first time . Nowadays I study English for business . My business is sales , and it imports products from the USA for sale in Japan . I need to conduct sales meetings with foreigners several times in Japan . And since I 've used a lot of my time to read English , I am not good at speaking English . So I want to get my speaking ability better by writing a diary . I feel these 10 years have really flown by . I rented a car . I am worrying a lot about my future . Although I may spend all day making this cake , I still want to do it . On the third day , after I left the hotel , I drove my car to my home . I was impressed by the size and the cultural diversity of America . I got rock salt of the Hymarayan as a ladies ' gift . Most Japanese students do not go to school on s `` a `` turday but I `` am `` this year . The course instructer is not strict but gentle and polite ; I thought in my mind that I could keep up with the course ! It is the start of `` a `` new week and study on c `` a `` mpus . But it 's difficult to do . Now , I moved to another place , so I have to transfer to another school named Northview ( read like `` No frills `` LOL ) . A third dolphin apparently tried for two weeks to swim through the icy channel , but reportedly a teenage boy dove into the water , wrapped his arms around the dolphin , toddled it to the boat , and released it safely . I called her back , wondering what happened . Due to the child 's mischief , I enjoyed a lovely conversation with my old friend . These girls did not seem Japanese from any angle . Anyway , I sighed with relief . . . Last week , I sang and played the guitar in front of my friends . I have been playing the guitar for two years , but I have never played it in front of so many peaple . Recently I had a headache and a stomach ache . Dealing with all that daily hassle . . . . ( although that 's what people are supposed to do everyday ) I went to bed from 4 p . m . to 8 p . m . , so I 'm not sleepy . But they said `` Do n't use lip balm outside of its intended purpose . `` I had a fantastic year . I passed the hair dresser national exam , I met wonderful friends , and I 've had lots of experiences after coming to Vancouver . Now I am learning two languages , the first language is English , the second is Serbian . I have proposed many business plans and a business model , which I think was nice , but he only said that he takes them into consideration . Now , I am studying programming and a system engineering . A lot of people , not only Chinese but also other countries ' , are used to downloading pirated movies or music from Chinese sites . I went to the International party in which anyone can participate as long as they have already paid about 3000 yen each before the party . I think people are can move from country to country more easily than in Japan because Japan is an island . I have a question ! Two celebrities committed suicide recently . on my important day I hope to make friends with a lot of people on Lang - 8 . It happened in the north east area of Japan when I was at home . I then turned on the TV and watched the News . An earthquake is dreadful but a tsunami is much more dreadful , I thought while watching TV . Amazing goal achieved To achieve that , I need to take breaks efficiently . MUSIC is one of my lifelines to survive in these stressful days . Remember , you should listen with the higher quality HD mode . according to the rankings of the most popular dogs in Japan , I wanna speak English . How can I speak English ? How many times has the prime minister changed in the last a decade ? I like to take pictures , and I want to become a designer : D When I go to foreign countries sometimes , I want to speak English well ! Scientists think that the entrance to this cave collapsed and animals died from the lack of oxygen . It was a really good dinner , but I 'm so full now . I aired out my ' zabuton ' because it was fine . To foreigners , Japanese women look kind , tender , and honest . She wrote her feeling and apologised in it . Today , I went to a Vietnamese restaurant with my friend after work . I took part in English Speech Contest yesterday . However , we have n't made reservations for a hotel , train or flight yet because I do n't know whether I can get an annual paid holiday on 28th December . However , I 've gradually learnt / learned what is needed and recently I 've learnt / learned how to enjoy the job . Jeajungcan not only sing but also cook XD This was a big ceremony on new year 's eve . My daughter was diagnosed with hand - foot - mouth disease . I 've heard this disease has been going around my friends ' kids . I just came back from a trip to Shikoku . It has beautiful and soft sands and little bit of waves ( Probably , breeze made that waves . ) It totally looked like seashore . it could n't compare to the joy that the real Aussie beach gave me . Illuminations from each house were brilliant and conjured up a feeling of nostalgia for a fleeting moment . ( it takes you 7 years to become perfect in piano ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school to only learn basic skills or I can not even start . Her full name is Shakira Isabel Mebarak Ripoll ( Oh I ca n't remenber long names like this ) and was born in Colombia . I hope I can sing , listen , and enjoy English songs without subtitles . : Do you know who this is ? The lead singer of Guns ' N Roses , Axl Rose ! : Well now coming in , were you rooting for the Lakers or the Sixers ? ; The Lakers are my favorite team but I 'm a huge Iverson fan , so I 'm rooting for the underdog because the Lakers are like a given , so it 's like I went either way . : Now , Axl , you sat out there , you experienced the Philadelphia fans . . . : I know it 's your first basketball game ever , and I know its pretty exciting , but when it 's all said and done , the season will have been long enough . : Axl , thanks for stopping by . They have `` kushiage `` , the spit fried stuff . You can see how the cook prepares kushiage from your seat . Such as meat , seafood , vegetables and even seasonal fruits ! If you order the `` omakase `` course ( 2500 or 3500 yen ) , they will serve kushiage one after another untill you say `` please stop `` . Since Demekin is a small place , it is better for you to make a reservation beforehand for dinner time . Fortunatly everyone was on time ! We ate good food at a restaurant We could see the nice ocean from the restaurant The host will invite their relatives , friends or classmates whose closed relationship from each other sides . In that day , our old friends or colleagues will travel a long way to join the wedding without complain . The same people were basically found at two places : your relatives , friends or old classmates . I 'm so lucky that today is not Friday the 13th , because if it was , I could easily be a character of some horror film ; ) I would appreciate it if you would correct this . The article was interesting . I think enantioselective synthesis is very important , especially as it affects medicine . So I answer , `` I understand a little `` or `` I understand most of it `` . Last week , I bought his book titled `` The Last Lecture `` . Yesterday was November the first . Some people call this day the Bachelor Day . I guess it seems that the figure `` 1 `` looks like a stick in people 's minds so that many guys link it to a bachelor . Furthermore , January 1 represents small Bachelar Day and November 11 means big Bachelor Day . water - sensitive dye using onions , so this time , Let me explain how to make it breifly . I would like to do a research on one of the reports about a sports meeting featured in the Renmin newspaper , which is not easy because I have to read all of Maybe the managers of these companies did n't understand the chinese market at all . Time : 8 AM on a Weekday ( if possible . ) However , some items have n't been configured yet . I hope I can make more English speaking friends . So there are a lot of idioms Japanese do n't know . Our house were really large and we lived with many families . My job is a certificated public accountant ? This year the weather is especially bad . Reading an English newspaper Tomorow is my mother 's birthday . There was a small town in China and the civilians lived peaceful lives . However , an earthquake hit this town and many buildings were collapsed . Visitors from foreign countries also loves Baked Sweet Potato `` Yakiimo `` ? had beer a little while ago . A lot of foreign guests visited my company . Tomorrow I have a date with my colleagues , we 'll climb a mountain , I the future , I will do it . It 's very important to me . Happy weekend ! Maybe my hair is a little longer than Nicole Richie 's hair . Japan is seen as a representative developed country , and everybody says that Japan is such a splendid country . So we canceled the plan and then I cooked for the first time . The answer is absolutely not . Although I have studied English for 5 years , I ca n't write and speak English well . But my english was not good enough , so we had trouble communicating . I was tired because of the time difference , so I went to sleep at once . How can the human heart be fulfilled ? I started thinking about such things , because I wondered how my heart could be fulfilled if I ca n't satisfy my desires or achieve what I want to achieve in life . I 'm interested in learning to abbreviate messages like people do on Twitter . Another friend is coming here with a cake he made himself , and others will bring something delicious . Everything is perfect . my friend , whose birthday it is , will come here . My main purpose was to study English . I decided that when I leave Los Angeles , I will return or study hard . 2chan is the largest bulletin board site in Japan . This scene must be shocking for many Bruce Lee fans . when I was awake , goodness , the pain was decreasing and now I 'm fine , heheheh thanks god ( _ _ ) There will be articles , prepositions , phrasal verbs , tenses etc . I have n't made up my mind if I would go and see a doctor tomorrow . Also , the Furigana are a big help since I 'm so bad with Kanji . Now I want to draw a simple high school love - comedy . I 'm hesitating . When I rode my bicycle , I took my phone from my pocket , But I 'll try to keep writing journals regularly from now on . My present circumstances are very hard [ / difficult ] . Especially , poor people suffer the most . Although we did not make money this year , I had a great time . Good luck my friends . When I was in 6th grade , suddenly I was out of friends . My best friend said other freinds not to play wi Since then I 'm afraid of other people , especially their eyes and words . To find good friends , I have to go outside . But by writing my feelings I want to catch myself . This summer vacation my family and I got together . But as times go on , there arises some disagreements between my mum and I . I 'm a college student on vacation and I want to study because I must take an exam in the later term . The government takes these measures just in order to bring about some convenience . In my opinion , opening the museum is better , we can learn about the advantages that the government providing . Realizing the policy that is offered to people , knowing that country is always cares about civil life . It will promote our country 's development . But , I saw a mechanical rubber ducky like RoboCop for the first time . One is heading to Dash Village , which is artificially created for a TV project . Near the end of it , the earthquake struck Japan . Through the accident , I take pride in the consideration and cooperation of the Japanese people . This site is a little different . . . I was looking for a song , then I thought : why not pick something related to Sailor Moon ? Then , I thought back to those days when I was watching PSGM . . . What happened to my computer ? because my English is terrible yet . so we can make time to have fun in Vue and it 's so enoyable watching movies . I am so thankful . fry chopped garlic and bacon with olive oil . I enjoyed myself . Last year , its value went up double or triple compared to the one at the beginning of the year . Do n't be surprised too much ! When I try to memorize them , I write them on paper and read them with speaking out . I did n't do anything today and yesterday . He said it is culture shock , moreover Japanese service quality is awesome and creative and enjoyable . I hate ghost , heights , dark spaces [ / BLUE ] , sander , when someone hates others , wars , being hated by a person , dying . . . . . I was very surprised [ at ] the announcement . I love the Scottish accent ! I 've decided to study English everyday ! And at the end are the angels singing in chorus `` Hallelujah `` . Shengbing is the most famous societies in my college , I want to join them very much . Recently , I watched a video blog posted on ' YouTube , ' and the blogger said in the video : `` The best person that you possibly can be , is yourself . `` Have you already had the opportunity of meeting that girl whose pronunciation of Russian is very good ? There seems to be many international people here . And I saw a video from youtube . Menu items are named after certain magic and monsters , and the waiters talk like people in the game . Whatever happens , I definitely do not have any excuse to lose heart . Because they get married young . By the way , today we celebrated the `` green festival `` which is traditional in my city . Despite the young age , the groom looks really calm and polite . We are supposed to play our song in the ceremony , which will be fun for us and the guests . Please check this sentence . I often travel abroad alone . I have been to Vietnam , Cambodia , the UK , Spain , Turkey , the UAE and Greece alone . When doing so , it is necessary for me to communicate with local people in foreign countries . I try to buy my airplane tickets by myself . It gives me a sense of achievement . Introducing myself and thinking about a gift for my friend . Please let me know if I have made any mistakes in my sentences . The cow is an old friend of the old man , who has raised the cow since it was very young . so I only learned grammar , reading , and writing , but not speaking . Especially when I talk to native speakers , I feel a bit nervous because they sometimes reply , `` Pardon ? `` or `` Say Again `` , `` What was that ? `` It really made me unconfident to speak . It helps us improve the ability to relate or summarize something in ways that are easy to get . Anyway , I have to say that learning anything is not a piece of cake but our passion for them will helps us be good at them easier and sooner ! ! ! I do n't like only the European one but also the Japanese . I wrote a report about `` Wagashi `` ( Japanese traditional confectionery ) at university . Foods are perishable and it 's easy for them to gather mold . Today , it rained for a long time . These days , shares of smartphones in Japan are increasingrapidly the same as other countries . So , I do not want to delay making a daily diary , and the `` Big Bang Theory `` soap opera is waiting for me ! Some friends told me they also have the same feeling as me , they said sometimes they would feel lonely , and when they want to call sb to have a chat , there is nobody to call . . Badly , I do n't know why should I do about research topic . this is my research topic . And now , nobody does n't know what Facebook is . However , the fact is that we can never guarantee that those people will be with us throughout our life . We keep learning to be independent , starting at a very early age , and are encouraged to create things by own hands . By making different decisions or choosing different life directions , we depart from the same junction where we met , became acquainted , created lots of good and bad memories , and then began our own distinctive journeys . There 's nothing unchangeable in the world . This sometimes leads to disappointment . my and a reading room . Starting today , I will go to an English academy and reading room . And I decided that I will write journal on Lang - 8 as much as I can . I study English because I 'm interested in it . his wife in a wheel , - > wheelchair Today , I would like to write an essay about the Tokyo earthquake . The train swung back and forth like a swing . I did n't know what happened and I thought it was a breakdown . When I heard of the earthquake , there were no trains moving . It was more terrifying than the quake itself . I heard that many children were helped by strangers that day . I do n't know which department I 'll work for yet , but I feel like I 'll be placed in men 's clothing . I hope I can improve my english by taking advantage of this site . He meets her everyday . My friends also like movies but their favorites are mainly Japanese or art - house films . Now I am worried that I may feel that same way and delete this new blog , And because I also want to promote my blog hehe ( http : / / room - 501 . I am looking forward to experiencing life and culture and so on . Good evening ! yesterday , I went to work . This is my second day today . I checked my daily entry , and it had many mistakes . It seems like it is not professional at all . I daydream about having a great job , and being a millionaire . But while fantasy is pretty , the real word is cruel . I hope I can improve . Additionally the Internet can solve unemployment problem which developing countries have . The Internet helps us with communicating with foreigners . Before the Internet became common , we had to search for information in dictionaries or books . Thirdly , the Internet can solve unemployment problem which developing countries have . By giving business opportunities to developing countries people , the Internet can make their economy much better . As you can see many people use the Internet for communicating , finding information , and even for developing countries people , they can find jobs by the Internet . I often watchi foreign dramas . I went to the library to do some writing homework . TOEIC is one of the Japanese English qualification tests , This morning , I got up early . Seoul is expected to be cloudy and without rain . We went to Kobe . However , I have n't prepared for that at all in this month , so I am very worried about that . Since then , I 've visited Korea and the Philippines . Father took the younger of the two children out of the car . He is a buddy of my friend . They finally succeeded So I 'll try jogging with my iPod touch and a Nike sensor . And then I also want to translate papers on other topics which I wrote about , like A town of Tokyo and Images , ( That was my specialty . ) or something . That 's what japanese does while Japan was invading Asian Countries when Japan was once under imperialism . But can we say that it 's the right thing that it 's been a weakness of Japan at diplomacy and Japan is blamed about it forever by some countries ? At first I was surprised at reading a sentence that said `` I felt very happy about Japanese being afflicted by the atomic bomb , when I saw the photographs . `` When I read the sentences , my head seemed to awake suddunly . In addition , it described the terrible behavior of Japanese soldiers concretely . But I think about it calmly now ( when I was 20 ) , I have an opinion that it 's not a right way of thinking like `` I 'm very happy about Japan being damaged . `` Because the `` evil `` is not one of soldiers or one of the citizens . Fuji , which is the highest mountain in Japan , and Hamana - Ko lake , Sekigahara . The stage , the crowd , the light , all has disappeared in a flash . As I get accustomed to the real world , I start smiling to myself . Parents threaten children to do or not to do things with horror stories . He creates his own world , and is great within it . We enjoyed a delicious lunch , after which , we went shopping and enjoyed the atmosphere of Christmas . Today was great through I still felt like a isolated knight except when talking to this girl who was really sweet who taught me the words `` serendipity and kismet `` . are lots of action scenes and I liked the story . But , for tomorrows ' classes I will be absent for all of them . So , I will study hard tomorrow . I have n't gone to any foreign countries yet . Pelican eat pigeon Genshiken is a club for studying various anime , video games , and manga at college . Most the members in Genshiken are male . We were a good combination and our team was strong . I did n't remember that Mia lives in San Francisco and I was really surprised the city had so many slopes . In the book I thought there were a lot of instances of lessons on how to be a princess and affairs between Mia 's mom and a teacher , but they were omitted . I also thought her grandma was older and meaner , but she was so elegant in the movie . So she can do whatever she wants . Because I like the French bread best ( from all types ) . Her actions are so cool ! I think her activities are worthy of praise and she is a wonderful person . Representation of the `` Life of Pi `` One strange thing in the story is that nobody cleans the molded cheese on the ground . If I had n't seen the movie , I could n't understand the story . When I go to a supermarket , I walk around to see various merchandise . I enjoy finding new merchandise . The inside of it was a paste of sweet potato and rice cake , though it is ( usually ? ) bean paste . I had a lot of time which I could spend studying English . But now I work every day except Sunday and sometimes Saturday ( ? ) . For the last few months , I 've been trying to be more pragmatic , to accept the harsh realities of life and to do more down - to - earth things . Luckily , I 've found this website . I said to myself , `` This is a good chance to improve my English . `` I want to thank anyone who will help me . Do you have any idea how to spend time in the dark without using electricity ? I am a little nervous because I will be embarrassed if there are not enough topics and we just sit there in silence . I hope I could help Japanese as much as possible , also improve my language skills . I naively believed those who told ( and are telling ) His belief is understandable and I agree , it will be the new common sense of this world . instead of believing in criticism , But actually in Japan , where anonymity looks more important than in other countries , We have to do the performance in front of the classmates . They 'll evaluate my lesson . Many classmates make nice materials like picture cards , letters card , and so on . They will become my property ( ? ) , seeing medical care and meeting English doctors and students . They will become important persons for me in the future because they can change Japanese medicine , thinking about Japan objectively . I want to talk with her This was the nice greeting I heard today , and it should be the idea that radio people should keep in mind on Valentine 's Day , I think . But look after , it was n't that big or complicated . But there 's no regret . It 's very quiet in the office . Today I decided to study English again . After I walked in the Garden , I wanted to be regular employee of this company . Cotton increased its sales as well , except that it was a rather dramatic rise from twenty thousand to a peak of eighty thousand . In January , some members of the team changed . I drank Soju which is Korean traditional liquor . I went to the Central department on the 3rd of April where an anti government rally was being held . Whenever I 'm working in the morning , I hear birds singing and remember a holiday I had taken . I stayed in Sukhothai , Thailand . in Jingu stadiam today . So I can speak a little French . In Japan , a sense of crisis is in the air that that the nuclear power plant accident might destroy Japan . Not only the Prime Minister ( , ) but the people should also help revive japan . Since GEVEY , which I have used for my Sim - locked - iPhone4 , has got some problems and became Although It 's rather expensive it 's so yummy ! _ The same level of Chinese food as in Japan . A 32inch Samsung costs 23000 _ peso . I carried it back to my room by hand , _ and applied for cable TV which costs 500 _ peso / m per month . My digital life in Manilla has made rather big ( or good ) progress ! ! I belonged to a musical club when I was a junior high school student . So I should study English harder . Of course , bad things happened . Almost all my friends say , `` You are very outgoing . `` Therefore , my English grammar skills are very poor , probably this diary has a lot of mistakes . I want to go abroad through a school scholarship program and earn a lot of money for going abroad . because I got sick recently and I felt that English was harder than before . Suddenly , I was really worried about that . Speaking is especially difficult for me . It happened suddenly . I thought it was an emergency . My boss called me to ask if I could go to work next Saturday . I decided to start using Lang - 8 to study English . Athough some people believe a considerable proportion of rural students should put a lot of effort into learning , there really is a phenomenon that rural students are more likely to have problems with getting into an university . Despite that , as an enlightened and obligated government , it should make this top priority to these originally disadvantaged students . One of the ways to judge if it is okay to lie in a specific situation is to consider the reason for lying . But since I have gotten friendly with foreign people , I found out the fact that we do n't tell the truth to people is more common in Korean culture . Yesterday the dentist ( denstist is the name for tooth doctor ) gave me a painkiller injection after he pulled a broken tooth from my mouth . Grammar questions , in particular , were key problems . Having a cold is very tiring . It went the opposite way . I 'm from China , I can speak Chinese ! After studying at GV , I camehome . I would like to buy a red travel mug . It looked tasty : - ) I would like to eat it ! I had never eaten Vietnamese noodles . I 'm worried about my English speaking skills . Therefore , people gradually lose the capability to cherish the elegant tastes of natural food . I am sorry , I do not have my hometown 's photograph , but I can introduce it to you ! It 's a beautiful city , It 's very pleasant . People always come in July , August , and September to our city for holiday . Keeping water comfortable for saltwater fish using chemicals is difficult , so we took some tanks and carried them filled with water . There were Spinach , Broccoli , Japanese radish , etc . These home grown vegetables taste better than the ones in the supermarket . I always appreciate my parents . It reminds me of when I was a child . after getting used to being lazy during the holiday . My first lang8 diary is this page . I read ' Billy Elliot ' , a book I borrowed from Jackie . One day , after the boxing class , Billy learned some ballet moves in Mrs . Wilkinson 's class by chance . When he went to the school for the audition , Billy was frightened of the posh atmosphere and after the audition he thought he would n't get in to the school but he did ! ! I ca n't remember all of it . . . . . . . . She suggested for me . coffee jelly 110g , 1 / 4 whipped cream , 1 cup latte pudding , 1 scoop vanilla ice cream Seattle vs Detroit . Seattle 's starting pitcher was Michael Pineda . These days , I have been very busy writing 2 kinds of graduation thesis ( because I belong to 2 kinds of seminars . . . ) , but these letters were refreshing : ) And after school I go to additional classes in informatics , biology and algebra . We had a farewell party for overseas students yesterday . However , the result was incredibly bad . . . Recently , I 'm always tired because everyday I wear formal dress and am asked So today we 're going to renew our expired passports . August 11th . * August 11 August 12th . * August 12 August 13th . * August 13 Athletes playing sports encourage people to be more alive in their life . Assuming the amount of enjoyment people obtain from watching is proportional to the amount of money athletes obtain , it is even less of a surprise that they receive such a large amount of money . From a different standpoint , we might view the mountainous pile of money with suspicion of whether they , athletes , really need such money . I think that they do n't have enough provisions of electricity . Anyway , I gave up on taking a shower last night , and I tried again this morning . But my heater was broken because of too much heat . That heater give out a white smog and it smells as if something 's burning . A few weeks ago , I watched the movie `` Dawn of the Dead `` with my friend . People who were not infected tried to survive and gathered at the mall . Nonetheless , they desperately waited for help from outside in the hope that there must be many people out there alive . Nabe is boiled vegetable and fish and meat in a bowl . It was very delicious and filling . these days people do not have time to stay healthy , they do not have time for exercising , eating and sleeping well . First , nutrition is one of the most important for good healt ; therefore , we should have a healthy food . One steers clear of high cholesterol foods , such as eggs , fatty meats like pork and sausages . Abstain form drinking alcohol and caffeine , and try not to drink more than a sip of water within one hour before going to bed . Thirdly , exercise to first bulid heart rate . However , if people too busy to go running , walking is another choice or taking the stairs instead of the elevator . After that , building muscles . Of course I am allowed to sleep if nothing has happened . so I am really happy that I learned a little bit about e - bay . I 've already written three articles ^ ^ If we change the way we think , the protests could be a good step toward making Thailand a better country . It is so sad , but it is very real . One of the Korean student made a frog using origami paper . My sister highly recommend me to watch a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about its storyline because there were a navie guy and a weird guy dressed in and put on evil - likers . It was like writing in some strange language . I can not let this feeling destroy myself , I should find something to do , it is urgent . All I get here is loneliness . The third diary ; ) The doctor said ( that ) maybe I felt pressured or too nervous . Yesterday , I went to see a doctor of traditional Chinese medicine again , He found it ! ! According to this program , Dutch people eat sandwiches that have a biscuit on top of bread . Both counties have a lot of worldwide companies despite their small land . We do n't usually connect each other . I did n't really put as much sunscreen on my body as I did on my face . Well , I guess I 'm feeling much better . I have a lot of fun when I 'm writing it . When I think back , there were a lot of things that happened on this year . It was very awful that no one else could take care of my son . Celebrate the 1st of . I am going to make her a pasta with tomato - sauce and bacon , and the cold potato potage soup . I like cooking and I 'd like to make my wife happy . When spring has come , we not only have a lot of cherry blossoms but it is also the time for graduation ceremonies at school . I feel melancholy . I think nobody could know how I feel . I need to think that everything will go well . Was somebody not happy today ? If you were n't , I want to tell you to smile . But some of my friends have already had operations , and in addition I 'd rather enjoy the present time than worry about the far future ! ^ ^ But the cost is very expensive , 20 thousand yen or 2000 $ using a discount coupon . . . What 's the reputation of Lasik in your country ? How about in other countries ? ? Today my sister came to see me . such as the current economy , climate , entertainment etc . During the stay in Toyama , I relished mountaineering to my heart 's content . One time , I climbed a mountain called ( if I 'm not mistaken ) Tateyama to , hopefully , observe Grouses which are designated as an endangered species in Japan . The summit , we found , was replete with alpine plants and some signs proclaiming that we could n't set our foot in the places palces where the plants was growing . This is between us , but we broke the rule and sneaked around on the plants to see some species spieces we could n't see from pathways . Or most of the plants were very modest t and even tiny projecting a humble atmosphere and might have graced our eyes for a fleeting moment . Yet , mountaineering was certainly worth no matter how may times we did it . It was parked by my department parking lot last night . I did geological field survey . For example , : Japanese Vocabulary is a Japanese study tool designed to help you learn more than 400 Japanese words . One thing is that I wanted to commit myself for the cause of whole Japan . It occured to me that I would rather be poor than to live thinking only myself . If you correct this entry , it is very instructive for me and I will be very happy . I live in Japan . I am a college student . It was the traditional festival of China - - - - - Mid - autumn Day , it was sunny and at night we enjoyed the beautiful moon . I need more exercise . Japan drew with Jordan at the their first game on 9 January . I thought that Japan would absolutely win . I 've just registered on this site ! The car navigation system in my car is broken . Friedrich : Jo , such a little name for . . . I had a good impression of him . Hello Everyone ! Its seling now . It has slices of cheese , meat , lettuce , taco meat and hot tomato sauce . I wrote a diary just now and got a response immediately . I feel you guys are so passionate . Some ( people _ insist this method is bad cause we can use the wrong expression again and again . so put on a smile I did n't concentrate in class . more interesting was my collegues who didn . t speak chinese . because she is Korean . I live in Hokkaido , the northern island of Japan . We have to live with just one , small electrical fan . Bagels are So Expensive Today I went to a bagel store I have been interested in . It would n't have cost me more than 5 dollars with a drink . My favorite idol committed suicide . My hobbies are snowboarding , travel and studying foreign languages . Now I am studying English and Spanish . If you learn Japanese , I will help you . If Japanese people learn English based these misunderstandings , they will use English rudely and upset others . This show plays on TV at 6 ' o clock pm but I ca n't watch it because of my church service . It has already become my favorite show . In this show 7 singers appear and sing a song against each other . but I prefer a whole one with its insides . I 've been ready for my new business for many years . I 'm planning and making a new web service with my friend who is an expert at computer programing My ideal web service will launch soon ! To develop a web service takes many years and a lot of money , and no one can know what web services will succeed . I 'm going to take a chance on my new business ! The school has the same service but it has some kind of rules like the deadline to receive that service . The first 3 weeks was a challenge . Pronunciation , intonation and stress were difficult and they killed me . Sometimes cultural differences caused misunderstanding . The word I used were taken as a different meaning but it told me a lot of things . How important it is to understand background of the language . I went school and learned about English Education . My friend visited me . He is from Malaysia , and I met him in Australia . It was about Japanese culture . I cried when I left my home stay because they have been like family . I will definitely come and visit people I have met in Vancouver . The other day , it was broadcasted that an entertainer was hospitalized for tubeculosis . I heard that she had had strong cough and felt lazy for long time . These days , she went to the hospital and was checked up , and she was diagnosed with tuberculosis . She is very popular and appeared on TV every day , so she had many contacts with many people , so it is possible that tuberculosis was transfered to many people . Patients with tuberculosis need to be insulated into special hospital . Tokyo prefecture and the office that she belongs to started to inform the people that may have recieved tuberculosis from her so that they go to hospital and get checked up . Celebrities many opportunities to comunicate with a lot of people , so I think that they should go to hospotal and get checked up soon . Today I talked about a shortage - of - clean - water problem in my English conversation It 's Raining . It has been raining for 3 days . If you come to Japan , I definitely recommend you to eat Ra - mens . For such reasons , I sometimes forget easy grammer and words , but I am glad that u correct my dairy willingly . 1 : to talk about daily life in easy English with foreigners I do n't have enough knowledge about every genre . Although I 'm an English major , my English is not very good , Recently my eyes have become worse and my last pair of glasses were in bad shape . They suit my face . Muscle training ( weight training ) and walking have made me slim . I was invited to a lunch by my husband 's colleagues . The oven was out of order ? I could n't understand why it was not working , and I asked for help to my husband . I want my English sentences to be polished up . So , Americans or someone who can speak English , could you correct this diary ? ? I 'm a little lonely , but I 'm looking forward to visiting her in NYC . Today , I 'm going to the English club in my neighborhood . Random toughts of a silly ( and sleepy ) mind I started this entry without any ideas to write . The weather ? Well , today the sun decided to show all his magnitude and the result was a really hot day . ( Maybe he picked a fight with the poor clouds and banned them from the sky . ) Okay , I just finished talking about weather . . . I know that is only 9 PM but today was a really tiring day and I 'm really sleepy ( that 's why my post is so silly and have almost no sense at all ) . I can get really silly when I 'm sleepy . ) Today we separated the teams into the 2nd and 3rd class versus the 4th class . After a couple weeks I decided to buy it , but it had already been sold . Since then I have been looking for this guitar everywhere / in every country . I can understand the doctor 's workload is very heavy but her attitude is not very nice and friendly . I 'm considering working hard to improve my English skills . After a moment , one man came up to me and sat down beside me . Then , I got to the Foreign Book area , I found an English wordbook . Today , I am going to go to the lalaport , shopping center and buy some presents with my wife . There are a lot of advantages ( when ) attend ( ing ) a live performance . For example , watching / ( hearing ) the music in the seat near the stage is the astounding . I believe 2009 will be great time for me to improve my international experiences . welcome friends ! ! For example , I do n't like shopping , I have no interest in those silly rumors about boys , and I 'm totally not addicted to love stories or movies . Instead , I play DS or PSP games , read detective novels , or write posts in internet forums . But I am going to change my place of work because of the crisis . My company has suffered because of this crisis . I read `` The Da Vince Code , Lost Symbol , and Angels & Demons `` My name is Liuquan . I want learn English well , but my English is so poor , so I want make more friends to help me improve my English ! So It was very dirty . His performances always influence me deeply . Of course , we can also see his great performances in Chocolate Factory , Public Enemies , Edward Scissor Hands , Sleepy Hollow , Chocolate , etc . graduate program is n't an easy work . I have applied for up to 8 schools , costing totally 1000 USD for Considerating school reputation , cost , and length of program , I Being admitted is only the beginning , loads of works are waiting to be done . This evening , I watched a movie called `` This is it `` which is organized with footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London scheduled in July . I am interested in American comic culture . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tuna , and many other ingredients that were available in my home . Matsushima is one of the beautiful spots in Japan . We call it ' Nihonn Sankei ' as there is so much beautiful scenery . So It 's my favourite driving courses . In addition , I am worried that there will be a typhoon today . we have a long holiday . my English is very bad , I want to made good use of those days to improve , especially my spoken English . I have been learning english for 22 years , from junior high school , and now it has been 10 years since I graduated from my university . ah , that is such a long time , right ? And yet Ifind that my English capability is the same as 22 years before . Today , my family went to a sushi restaurant and enjoyed sushi dinner . No . 3 : tuna with leek The series has been published since 1994 . I think that if you want to be rich you had better learn three categories . Economics , politics and money ( that includes money market and investments ) . I do n't remember at all , but I was really , really happy because I received the entire `` The Lord of the Rings `` collection from my grandma . I usually eat cut tofu in miso soup and rice for breakfast . Miso soup is soybean paste dissolved in hot water . I plan to have a big dog on the future . The cherry blossoms near my house , began to bloom . I was thinking of getting a driver 's licence during the spring break . As I have never ridden a bike before , it is very difficult for me to get started . Back then , I believed that I could n't keep my balance so I was afraid to have a try . Until now . Now I have a strong will to master this skill . First , I had a sore throat and then I had bad coughs . . This TV program videotapes everyday lives of patients with Alzheimers and their family . Then I saw that the patient in the show could n't wear jacket correctly ; she put it on inside out . I wanna have it . though my lips and teethridge feel paralyzed . I 'm so nerveous and feel like I have butterflies in my stomach . Athough it is late , happy new year and I hope your business will be successful . I 'd like to have a successful life . We all knew that Microsoft set up a website to monitor the usage of IE6 . A grammar book A grammar book made me fall asleep . All products are 30 to 50 percent off this season . This will be a good lesson for me . If I say something in Taiwanese , it lets my feelings transfer to the other person very directly . January 17th was the 15th anniversary of the Great Hanshin Earthquake of 1995 . Kobe is an urban city and famous for fashion and nice food . Many people were crushed and burned to death under the rubble of houses . There were many blue plastic sheets covering the debris . I truly wish for Haiti to recover as soon as possible . Some kindergartens have school buses . Its ingredients are potato , carrots , sausage and so on . I remember the song ' Lonely Day ' by System Of A Down . `` The most loneliest day of my life `` . . . I need cry , but I have no reason to . Once upon a time , one man wrote a sad song and upon hearing this song , people would commit suicide . I think ' Gloomy Sunday ' is a beautiful song and therefore I did not kill myself . Japanese and foreign people visit this city for sightseeing . . Do n't depend merely on informations . I am keep going to write English entries . I hope my English gets better and better ! I 'm going to gather some information about it . Nagoya is the third largest urban area in Japan and is located between Tokyo and Osaka . I 'm working in a restaurant It is a high school 's baseball ( team ? ) and youthful . I am very glad to finish it successfully . I am studying english now . people all over the world have to help each other . if we ca n't communicate with foreigners by talking in our native language , we have to help each other by using english in the world . When I came home I looked at the mountain of his toys toys that he had made in the living room . When we were young we responded to our dad or our mom for their love . before I signed up it , I looked it up on Wikipedia Whether nighttime demonstrations should be permitted or not has long been a controversial issue in Korea . But since it 's quiet and comfortable for me to cycle from the station to my home , even in Tokyo , it 's cool and silent at night . I 'm 20 years old , and a student of university of design in Japan . and we recognize them as `` real `` foreign women . ) And Japanese traditional behavior , too . I guess the pictures are rare . As I usually put on makeup , these are very important . Third , It was my purpose , I chose Yukata . If I were to be a pianist , I would like to play the piano for children . Many typical Japanese companies have new years vacation during the first three days of January . I normally lie on my stomach when I have Yakiniku . I wonder what had happened to their relationship after dinner . I have never visited a place where the temperature is so low ! ! ! I will visit the USA this winter ! However I have a problem with a certain personality in my seminar . My favourite team is Consadole Sapporo . Could you please tell me other sites where I can read texts written by native English people ? I wanna be a Chinese teacher My company serves us box lunch for a small fee . but the curry tasted different from previous one . Ketchup taste was strong even though I poured soy sauce on the curry and rice . Korean people made a good impression on me because they were very kind . I have change the Tire . Have you ever seen cherry blossoms ? Many people who travel around the world can not exactly explain what culture is , becauce the feeling is beyond words . Those who experience culture in person are different from those who just watch travel channel . If you truly love a certain nation or place , the best way to understand local culture is definitely by traveling . If not only to experience the culture but also broaden your horizons . Then , the next time someone asks you what the culture is , then you will realize how important silence is . Listening practice . What is he saying ? I 'm reluctant to work on English . Anyone have any tips on how to continue studying English ? Do you use iPhone ? Today was not a special day . Next spring , I will attend University of Kyoto ( not Kyoto University ) . This ketchup made the chili more tasty . I presented a marriage present to my colleague . Topracticing English , I write a diary here . She picked it up and brought it to their house to eat it . Late in the afternoon , I finished my graduation ceremony for my diploma . I was encourged by her and was warmly received with a friendly smile ( I can see that she is a religious christian ) , then I began to talkwith my friend whom I 'm afraid of and hated before . I received notice of an Informal Decision yesterday ! The alternative medicines In the linear algebra class today , we listened to an academic lecture . ( Usually we are taught the basics of linear algebra . ) Today 's class might be special . Unfortunately , I did n't have my own a lot of colonial places to visit , and has many foreigners . Okonomiyaki is made of kneaded flour and sliced cabbage with some flavourings . Recently it 's been getting hot . I like flavored strawberry milk in it . Usually I buy bottled tea when I go to the language school vending machine . but I do n't want another bottle because it 's heavy ! On that occasion , she got mad ! ! I do n't understand ! ! ? ? Today I ate Takoyaki with my friends , which we made together . Es tut mir leid , aber ich werde heute Abend nicht hierhin kommen . But there is a Japanese craftsman , who has lived there for 20 years and has devoted himself to restoring the tradition . It eventually came from the germ of an idea , tentatively tried out by the oboes , clarinets and bassons , which the cellos and bass turn into a fully - fledged theme which was taken up with increasing enthusiasm by the full orchestra . These memories are unforgettable . Fusen volleyball was born in Kitakyushu in 1989 . A : Of course . Each uncle or aunt has a son and a daughter except my youngest uncle . I am losing confidence now . . . . . . bad listening aptitudes , poor reading abilities , even worse writing competencies , and the worst speaking skills ever . . . . . I am very much looking forward to my day off . `` Hakone `` is the name of a place which is famous for hot springs . Every year many dramas unfold . I want to send a letter so please correct my sentences . I want you to play the guitar and sing songs ! ! I got this movie from my malay friend . Studying abroad He also taught me about food from various countries . Because my mom went to my grandmother 's home in the morning . more than usual , and here is the fact . Second , I 'll do some anaerobic exercises every morning such as sit ups and push ups . It is famous for the Otaru canal . At this event , the city is lit up with many candles . I worked with my group activity members . We made a snow slide and places for putting candles by shaving snow and ice . But the candles were beautiful and I met many lovely people . I like the SPA ` cause it ` s a very relaxing and comfortable place . After I go to the spa , I want to go to shopping ; I also want to buy shampoo and some snacks . because their plays are dynamic and speedy . I want to say to everybody that I want to make friends with you . Today , I was thinking that I 'm a loving person . Especially when I am doing something or making decisions , they do not always agree or understand my view ( continue ) Here in Russia we have `` May holidays `` , that is additional days off on the 1st and the 9th of May . First , I read the Liberal Democratic Party 's manifest which was the governing party before this election . I thought it was terrible how they wrote against the Democratic party . I am planning to visit many customers for new year greetings on Tuesday and Wednesday . Usually , I have done that at the end of the year and new year holiday , however my wage has decreased for the past five months . On top of that , my December bonus was really poor due to the huge recession . We decided to share the suffering and regain our profits together . I am a kind , funny girl with a big heart and know 4 languages ; : ) Russian , English , French and Japanese . Hello world ! Also , I wanna know about foreign countries ' cities . And some of the most precious traditions such as reading together , singing after dinner , walking along the riverside , have become diminished . Probably , because of age . I have stayed there around 3 months to study English . I was sleepy , so I could n't answer the teacher 's questions . I dreamed for almost fifty minutes during the lesson . I 'm starting to write down a diary from today . I want to communicate with them fluently , and enjoy conversation . They are professional guys . I have to make a twenty - minute presentation tomorrow in front of about 30 people . Additonally , I would like to receive recommendations about more interesting dramas . After the exhibition I can go home ~ ~ Because it is very warm today . But I am very poor with grammer . Today my work was published in newspapers under the title , `` Students read and write newspapers . `` Today his essay was published on the reader opinion page . As the final examination is coming , my domitory matters and I was busy writing a review , so I do n't have enough time to write a diary every day . I am looking forward to attending the wedding because I 'll be able to see friends after a long time . I think that it depends on each countries , what kind of number does your place dislike and like ? Hi , I 'm Japanase and English beginner . Unfortunately my English skill is no good . ( what they did was calculating and memorizing rather than studying , though . ) There are many kinds of children . My mother is a housewife . Recently , there are many problem in the world . When I went to my office , I was going to call to my wife , but I did n't know her phone number because it was in my mobile phone . . . I moved to Hong kong recently . Because I played basketball after class . Do you get nervous talking with foreingners or feel pressure ? I thought that he was a very kind . It 's too expensive . As a result , the vegetables are too expensive ! I want to speak It very well and make new friends also . I start writing my diary on Lang - 8 from now , but my English abilities is n't good , so please teach me correct and better than grammar or words in my diary . She went abroad to many countries when she was young . Because she likes traveling very much . I think it will be a good influence on us to spend more time in daylight because it would improve our efficiency . I bought a digital camera and flowers for my mother , because Mother 's Day is coming . I wanna travel to foreign countries as soon as possible , but I ca n't do that , because I do n't have the money to travel . But he was happy and laughed a lot while talking with us . All most of them have ( their ) own jobs and they practice soccer in their off time , nights and holidays . I believe that they will get the gold medal in Olympic game in LondonDo n't need comma next year . My throat is still swollen . I need to learn English because I live in Boston with my husband . His job is researcher in university . ( See below . ) I need to compare the test case with mine for checking if there are discrepancies between both test cases . `` Can we do this ? `` when I heardthis words , I imagined that If I did something impossible , what would I asked myself first ? The men in this room had begun to make plans , they wrote every problem which they would meet before they landed on the moon . First , my english level . Second , My editing level and CG level . When I putthe popcorn in the microwave I set the timer 5 minutes . Tomorrow is mother 's day , when we were young our mom took good care of us , as we grow up , our moms become old , some of us do not treat our mother very well , now I just want to say everyone of us should take good care of our mothers , tomorrow we must tell mother `` I love you , mom ! `` I hope every mother in the world will be happy everyday ! Maybe tomorrow night he will be very tired because he is a heavy drinker , so I 'll going to there with my friends , who are shielders . ( I 'm sorry to my friends ) He had a dream of being a computer engineer . Now I 'm a computer engineer . Moreover , I went to school to last Monday from last Friday . I have lots of friends here , but they are Singporean or foreign people whose first language is n't English . So I want / to get an opportunity to talk to caucasians , and I want to improve my pronounciation . Today my business partners invited me to lunch . She previously lived in the UK to study abroad . But she said that to study abroad a savings is required . She has also been to France to snowboard . I will have to study hard , especially business English . My favorite season is summer . Tell me how to distinguish Masayoshi Son , president of Softbank Group has sufficient talent and strong leadership , just as as Mr . Eiichi Shibusawa did during the Meiji - period . Japanese believe that it is a lucky symbol . Afterwards , my friend said he wanted to see Avatar , so we went to a movie theatre and saw Avatar . I 'm a little nervous . Today , I borrowed a book about Robin Hood written in English from the library in my university . I have graduated from university . But I do n't have a job due to the recession in japan . The former is important to the Japanese . I know that is too tough My job ! I work at the Hosan Corporation , a company that deals in industrial tools . I 've been there for a year . It was alright , though . I am very weak at grammar and speaking . They tried to exclude me from the group . In Japan , it is vacation from January to March . Since English is spoken all over the world , if I can use English , I can communicate with billions of people and learn about many countries . I felt a great shock and asked him why he never spoke in the language to me before . `` You are too enthusiastic when you are using English , too much gesture and too much face expression , `` he looked at me with his sincere eyes , `` what 's more , you English pronunciation is too much like a chinese . `` Why do many people come to me these days and tell me their ideas ? The word is that American Blockbusters is on the brink of going belly - up and its 500 to 800 branches will be predestined to close up within 5 months . to see tulips at the flower garden . In order to write great compositions , I asked for my English teacher 's advice this morning . I will patiently follow those advices and write English compositions diligently . The biscuits do n't contain sugar , so I love them . `` How tired I am of this unbearable distance between us . I should go play tennis . I should go to tennis practice . I helped my friend in a different position do a job . I helped her cut the paper for a long time , and then we went home She had an umbrella , that is good for me as I can walk with her and not get wet . My friend sent a message to me in the afternoon . She said she was excited to meet this weekend . It really helps me to study English and makes me study harder than before . I made a marriage contract with my girlfriend . That data is not credible because it is of low precision . The simple fact is , however , that it is difficult to get accurate information , eat enough food and avoid the poor hygiene . And as a matter of fact , Confucianism belief tells you to respect the elders just because they are older than you . It is true that a young people may be inferior to the elderly persons in terms of knowledge , skills and experiences . So my opinion is really neutral . The elderly people are not good at adapting themselves to the new situations with flexibilities , but they can show or share good advices with the young from their knowledge and experiences . And on the other hand , the young people can support the old with flexibilities , adaptability , and enough energy . My mother and I will be going there to congratulate him . Hello friends . Today while I was chatting with my friends , we talked about bungee jumping and I asked them who would dare to jump out of an airplane ? For me that is a silly thing to do because I am scared to do it . . But I will never forget this good experience in my life . . Learning while having fun is such a good experience . Until the quakes calmed down , I could n't move anywhere . . . The radio told about TSUNAMI , but I could n't believe it . However , my English skill lacks vocabulary . Therefore I feel anxious about the examination XD First , we can know many things because we can read it speedily . Next , we can find it again very quickly because it will be in our house . but English says to me `` Vitaly you are so stupid . `` For example , a bowl of rice topped with many kinds of ingredients such as flavored boiled beef ( Gyu - don ) , pork cutlet with lightly cooked egg ( Katsu - don ) and slices of row tuna flavored with soy sauce ( Magurozuke - don ) . ( Sounds delicious ! ) They have various course menus . What should I do ? There have been a lot of things I felt there , but I could n't express to someone what I experienced . It 's my first diary . Because I 'd like to use English with my business ( job ) . Though I am a master student and major in civil engineering , I have a choice to decide whether I get a job as a banker or an engineer or others if I want to work at an international organization . If climate changes , some problems may happen . But unfortunately , I did n't take the entrance examination for college . Now I am studying to get a adult college degree . I think this degree is not as good as a4 year degree , but it 's better than nothing . because she is good at cooking , cleaning , and laundry and so on . ! ! The typhoon still affects the whole of Japan . I went to work the day before yesterday . The typhoon was approaching my city . During my breaktime , the train which I always use had already stopped operation . Even although office bosses sent us a message , `` If you are worried about returning home , contact us . `` I knew that I could only wait because of train being stopped . I can safely come back my home , albeit it took a longer time to arrive than usual . Instead , I concentrate on studying . If you were me , which would you choose , having a part - time job or studying ? Yesterday , I went to Ann Mo Kio Aria , to meet a friend . We are language exchange partners . I went to the park behind MRT Station and had a nap at the park bench . I do n't like eating breakfast at home because I prefer to eat delicious food such as continental breakfasts rather than traditonal Chinese food such as congee ( rice soup ) and plain vegetables . I know the traditonal Chinese food is healthier than greasy food but I want to eat something special occasionally . The man was arriving home with his new second hand television , which he had just got , when he was surprised by the local police and immediately arrested . How efficient the local police are ! I have visited Greece , India , Peru , Jamaica , Cambodia , Thailand , China , and Bolivia . One of my New Year 's resolutions is exercising every day . I 'm so nervous because I am writing a letter to you for the first time ! There are so many people in McDonald 's at dinner time ~ I waited for a few minutes and got a seat ~ Research project What do you think would be an effective way for me to get corrections from English native speakers ? Why do some students study abroad ? At first , I write a journal entry in English on lang - 8 , then I write down in my notebook and after that ask someone to correct it . When I told them the price of these at least are more $ 200 as new goods , they were very surprised . I can not explain it exactly only in writing . I had been keeping my hair short since this year started , but I got bored with it , so I did n't get my hair cut very short this time . I heard that Tagalog , Indonesian , and Malay are absolutely the same . I knew that Indonesian and Malay are absolutely the same . Preparation methods include nurses explaining to children how receiving an injection works , examination and treatment and how to prepare tools such as books , dolls , toys , computers , etc . but I knew it 's in their genes . So I have n't gone out for several months . But it is ok now . So , I have an important responsibility to fulfill in Hong Kong , and our nation , China . At this school British English is taught , so sometimes when she is speaking I do n't understand immediately . However , I will do my best to try and learn American , British or whatever English accent is required . xD I wish someday I could teach English and travel to Toronto or London , maybe Washington . xD l love climbing mountains . I bared the pain as the feeling was good . So they came to be together . I respect him . Well , my priority now is English , because next year I 'll take the entrance test at the university , and I chose English as my foreign language , but I 'm falling in love with Japanese ! Naturally , I will correct your Japanese too . Although his name was little bit difficult for me to pronounce , he was nice person . After lunch , I was waiting for the staff member who organized the homestay program for me . Astronauts brought back a moon stone to Earth for NASA to analyse . Lastly , the number of crimes increases when the moon is full . Btw , I have already experienced being the only girl in the class , and I changed the class . I hope I can enjoy all my classes during the second semester . Then I cleaned the kitchen , especially the kitchen range . The more I learn English , the more difficult I think it is . I 've just realized what her friendship means to me . I think at this stage in my life , I should not defraud myself . HOWEVER . . . . what she told me at that time was only a lot of complaints for her husband . Most of that were caused by a difference of custom and the way of thinking , such as religion , thoughts of how ( a ) husband and ( a ) wife should be , etc . But through the experience with my foreign friends ( I ` m still a university student ) , I have really started to want a `` natural `` kind of conversation , I mean the kind of conversation even native English speakers think sounds natural and common , not strange . For one thing , I want to study at the same university as my brother does . Although we can now change our appearances with plastic surgery , it is almost impossible to change our voices . Even if I do n't have anything to write , I should write something . Almost every morning he barks at me , but when he is satisfied , he wags his tail . His eyes always look sad . In the morning I went to see a doctor . Finally , I ate out with my speaking class members and my speaking teacher , Paul . In the afternoon , I went shopping with my mom . I 'm from korea . I live In Sapporo city , which is located in Japan 's most northern island called Hokkaido , located and on the 45th parallel . In fact , this year it has hardly snowed until today , although we usually have quite a few snows around this time of year . And - then - unfortunately - I - forgot - my - commuter - ticket , so - I - had to pay - JPY1200 . Lately my Italian friend and I have been to a few buffets a few times together , none of which were Japanese restaurants actually ! But what I am trying to say is that the places where he took me were 70 % buffets . . . . Though I do n't eat a lot normally , going to a buffet restaurant made me want to eat a lot more foods than I eat usually do ! Haha What I was thinking was to generate a full payback of the foods which made me such a big eater ! He looked at them just once and then ran out of the base immediately ! ! ! Topic ; it has recently been anounced that a new restaurant may be built in your neighborhood . I know a sentence `` She is a woman who I think is the most beautiful . `` Is this quote the same kind of sentence gramatically ? I decided to start with Aeschylus , because he is one of the first playwrights . I should go there early because I am afraid there might be a traffic jam . I think she will have a lot of things to tell about her interview . I ` m 19 years old . I have not called her recently since she got angry . but I dont know the reason why she got angry . By tomorrow , I will be happy thanks to her who helps me relax . Today I sat in the office where I work and chatted with my friend . Getting over the hardship of your parents control and your self control tends to stop you from being a good student . But she was very concerned about graduation works and graduation exibits so , I said `` Do n't worry , never mind , you 're getting better and you can do those soon enough . `` I chose this name from an Austrailian short soap opera , But I guess this site is very helpful for me and my English skills . Could you help me with English ? one of the main languages in the world . I desperately want a rewarding job with good pay . . . Someday , I want to find a part - time job ! Because I have so much free time , and having something to do is a good way to spend my free time ! Also , I can learn something in it ! I do n't know what I should do ! Could a native speaker please read it , and please do n't think it 's strange and rediculus . But it would be impossible for me to learn everything in the world . The South korean goverment asked them , My wife is a doctor and busy , too . Today I want to write something about travel . On the other hand , if one wishes to travel to a natural landscape , traveling on ones own would be a convenient choice . For instance , last year I traveled to the Yellow Mountains by myself . I am not sure if this kind of operation is known all over the world , but it is relatively common in Japan , at least by name . The advertisements of LASIK say that we can regain our vision drastically on the same day of the operation and that it is not necessary to be hospitalized . easy for an operation to regain one 's vision . operation should be much more difficult and complicated , and to tell you the However , after the operation , I have more than 1 . 5 vision in both eyes and I can see anything without contacts So I determined that in this new year I will start to study English all over again ( abreast with Polish in earnest ) ? ? . When I went to a restaurant for dinner with my wife , I felt tired because the streets were crowded , maybe everyone was busy . On Valentine 's day , I was very happy because I ha a sweet time with my wife , but I was very frustrated when we went out . After breakfast I went to the library and did some studying there . However , I am really worried about the people who lives in the severely damaged area . It is very sad for me that the university entrance ceremony was canceled . I have many friends who are going to the same university , and we all felt disappointment that we could n't have the ceremony . I want to teach science . So , after I graduate from college , I 'll earn money to go abroad . However , I often choose the opposite of the function I want . Fortunately , my teacher gave us a 2800m run , but that was n't easy . I saw many donation boxes everywhere in New York . Actually , I like the characteristics of this man so much , I have been watching his program since I was fifteen years old . But I went out to a parent 's association meeting at elementary school that my son Because I pushed some children away who were playing with snow in front of it . So , I study and train in my imagination now . I drank tea a lot , because in every house you were offered tea and if you refused they could be offended : ) ) A herd of horses walked through the village , how there told ( ? ) , because many mosquitoes and flies were in the forest in this year . One day , I had a sore throat . Now , I ca n't breath by my nose . By the way , I watched the TVdrama `` soredemo bokuwa ikiteyuku `` . But , the rating is low . In Japan , there is always both iced and hot coffee . The second day in the new semester . Today is my second day of the semester . I am taking Business English , Financial Management , Statistics and Intermediate Accounting . What a cruel teacher . `` If you pay attention what I am teaching , you will not fail this course , and you should practice it after class , `` said the terrible teacher . All over the world , people other than English speakers used to learn English in school . so what language does English study in school ? I 'm trying a new product from Suntory , ALL - FREE . This is beer without alcohol . believe how stupid I was , I hate myself . How could I fall for such a It is heated by electricity . He said `` an allergic reaction to metal is almost always caused by cobalt and nickel . She should avoid contact with accessories that are plated with cobalt or nickel . `` because I would like to go to the USA to study in the future . I want to go in 3 to 5 years so I am starting to prepare now . I played tennis with my friends . We played tennis together . In the afternoon , we 're going to Night safari park by taking a bus until 10 : 30PM So I can gain weight easily . it needs a racket and a ball , as well as the instructor too . I could swim faster than last month . I like here very much because I can make so many foreign friends that I dreamed for a long time . And the most important is that I can improve my English . They want to make student have more interests and abilities in other areas . As for me , I chose Film Appreciation . The most important reason for this was I find it interesting , I like watching movies , and I 'm a couch - potato . Leonard and Sheldon have two close friends , Raj and Howard . I do n't know if my recording sounds strange because of it or because of my pronunciation . Some residents could n't understand how important we separate garbage and recyclable wastes . The garbage in the recyclable waste container had rotten and attracted flies . An apartment 's maintenance personnel came to fix the problem promptly . The second , women workers likely to quit their job because of child care or the transfer of ther husbands . Though there are many women workers who have excellent potential , employers often hesitate to hire them . My hobbies is playing teniss , listening music and spekaing english in a compettitive debate . In a word , I love my hometown no matter if it has developed fully yet or not . Lunch break Every Wednesday , my friend and I practice soccer for about 2 hours after work . I 'm not happy right now , I do n't know why , and I do n't want to cry , but it 's difficult to stop my tears . This is really embarrassing , but if you have a girl that you love , you should n't say this to her . I 'm sorry , I know we are just friends , so I 'll never say that again . One of my coworkers treated me to it ! Random topics If I had many money I would travel to the summer country ^ ^ I remember that . . Polamalu was tackled by his hair . `` Thank you for your time yesterday ! And I did n't know that they would be such good guys . Because I shifted to a big bag for carrying my laptop and forgot to take my wallet . Taiyaki is very famous in Japan , so we never think about people who do n't know of / about Taiyaki . I went to the funeral and my classmate came to me and expressed her thanks . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe chinese food , maybe japanese food or maybe other Asian food ! ! because ( because ) the test season ( is ) over . It was held in Jingu Stadium where professional baseball games are usually played . Roppongi 's `` Keyakizaka Illumination `` This photo is Roppongi 's `` Keyakizaka Illumination `` . I read your corrections two hours ago during my English class . and then he went to watch a professional soccer game in the evening . on the shelf 's in the afternoon on Tuesdays . I do this for two hours . I plan to take part in three full marathon races ( the first race will be held November 8th `` Shonan Internatioal Marathon `` ) . There were 3 Japanese , 1 Thai . Since they knew I love reggae music , they took me to a reggae bar . Strange to say . Maybe if you are fighting with your girl / boy friend , you turn it off . self - introduction My favourite activity is playing the piano , though I do n't publicly perform . It 's my bad luck : I had just bought it a week ago . . . He also said that nobody cares if I leave food on a plate . It is a normal thing , but today we sold dishes at cheaper prices than usual . Anyway , I just hope the victims can pull themselves together and let the people who care about them help them through this difficulty . You just had 3 or 4 minutes to prepare for it . But the main idea was I would be in charge of the family 's finance if I got married . ( what I ordered was similar to bread , I do n't remember the name of it now . ) It is the title of the jazz album which now I am listening to . My favorite Japanese jazz musician , ' Issei Igarashi ' plays the trumpet . I was suprised how tolerant my class and school is . Actually , it happened to me once . I came here to watch a presentation about doing a graduation thesis , to ask the clerks a few questionsabout scholarships and about returning to school because now I 'm not attending school . A : I met my customer at Tamachi . I have gone into 9th year and I must pass four exams at the end of this school year ( these will be in June ) . japanese traditional cake Now , railroad stations have Automatic ticket gates . If there is no problem with the ticket , the passenger can go through . My friend often suffered from heavy coughs . He told me how he was surprised at his doctor 's comment . because he did n't tell his doctor that he had a hamster in his room . A hamster came to my house in a delivery box with a seal . `` This package is very fragile and do n't throw it . `` It was called `` chew - chan `` from my friend . I thought chewchan was male . ( My friend did n't tell me that . ) He said `` Hamsters like being alone . They need their own territory . She lives a nice mansion and has another house and eats nice food . He got some popularity for his talent to learn foreign languages . Even if some visitors drink some purification water despite the warnings not to drink or gurgle it at the water basin which is for washing their hands and rinsing their mouths for purification . I recommend the `` hureai no hiroba `` . It 's not exactly freedom because I 've already enrolled in some courses and competitions , so I 'll be busy . But at least I 'll be doing something onmy own will . I have carried on / lived a peaceful life as a family man so far but there is one big problem here ; what will happen when I find sophisticated ladies in my work environment ? His one of my best friends . Here 's the kind of radio program that he made . We recorded it in Japanese , It ' svery natural , high speed and strong accent from the western area of Japan . I ate tofu and scallops at lunch . I usually buy an English newspaper once or twice a week . Actually , marathon events bring back my bad memories from when I was a junior high school student . There must be thousands of reasons why you want to learn Japanese , and it seems not only a few people were led by Anime or Manga to start learning Japanese . Here , I introduce a website called `` Japanese in Anime & Manga `` This website , pronunciation of lines are very good . and I prefer to see a variety of clouds on the blue sky . after that I can not imagine how good the food will taste at the barbeque compared to having dinner at home . That 's why some parts are sharp , inclined and zigzagged , and it seems curious . This morning I had two spoons of honey like Pooh bear . They were very delicious . I was so sleepy . I think meeting my friend is a good opportunity . I would like to master English , and my dream is watch movies in English without subtitles and make many foreign friends . They saved my life during a period of great frustration in my teens . A huge crowd of people got extremely excited cause the dream finally turned into reality after many years of yearning and longing . But I want to ask them ; why do n't you pay more attention to their songs which have given strength and hope to our people ? All I know is to let the politics roll . We still do n't want to leave the college yet . I went the library with him , but I forgot the library card . He said to me , ' I really want to borrow the books , let 's return home and get the card . ' We returned home and went back to the library again . Thus , I 've joined this community at Lang - 8 to output things to improve my English and communication skills . Nobody can infringe on their rights . My parents never force me to do anything , they even negotiate with medicine haha so I know that the decision is mine . I like deodorizer I went to look for a deodorizer at the drugstore . There are many deodorizers there so I could n't find what I wanted to get it . I wanted to get made in America but they did n't have it . I had n't used Dreamweaver for half a year , it was hard to remember how to use it . However I ca n't talk to anyone in English on Skype at the office . Besides when I get home from work , it 's midnight in the United States . I think I can get over the difficulty . This is my first day at Lang - 8 , I found Lang - 8 in a forum , people suggested joining Lang - 8 if we wanted to improve our English . We can post a diary here , if our grammar / words are used incorrectly , someone can point out our mistake and give us some advice . I was baffled and said `` No , no I 'm not . . . `` Even though I know I paid much money to take a class , after I lost interest to study in school , I do n't feel like going to school at all . 3 months already passed , and I 'm still having a hard time understanding what my house family says to me . Although it seems a kind of poison , it must be a medicine ; it is alcohol . Some people believe drinking alcohol is not good for their health . According to a health research institute , drinking has a positive effect on health . While one drinks alcohol , they should be able to express inner thoughts that are usually not expressed . However , people can get these kind of negative effects only when they exceed a moderate amount of alcohol . When focusing only on the health effects of alcohol , there are no bad effects if one does not exceed their limit to accept alcohol Consequently , expanding blood vessels and eliminating depression , which are healthy effects , can be brought about by drinking alcohol . `` Nadeshiko `` Japan , the Japanese women 's soccer team , won the World Cup championship . . I was so excited and proud of the Japanese spirit that did n't give up in the disadvantageous situation . I expect the Japanese men 's soccer team to win the World Cup championship next . Good night , everybody ! ! A few seconds later , I understood what they meant , they were asking for a handkerchief . After all , Kikuchi could n't shout at the opposing team . I was even at the railway station in order to go to the university ( or : school ) library . My parents and my grandma were disappointed in my failure . My grandma cried . I am worried about it . He just said `` If you are interested in this story , please search Wikipedia or something . . . `` . And I really like the handsome middle aged Chinese teacher : ) Chinese has nearly no honorific expressions and the grammar is actually very simple . I want to learn about the English language . ( Actually they are about vegetarian diet and environment . There 's a lot a lot a lot a lot of reasons why vegetarian diets can help Earth , I hope tomorrow will be warm . . . so the only way is . to continue working . I have not studied English lately . I do n't want to be in this rut because I do n't want to forget the English I have learnt up until now . Yesterday , I had to go to some building to take part in a briefing session . There will be less of my friends in the univeristy , because some of them have already graduated . Akihabara is full of computer professionals . Most men judge a book by its appearance , however ; most women normally follow their feelings . Actually , I do n't like doing this , but I have to do it . Sometimes Ido n't have an explicit way of doing this . I would appreciate if someone corrects my English or gives some advice . This movie is very interesting . Thank you reading my journal . I traveled to the western part of Korea , Kanghwa Island last weekend . I watched TV anime with a friend . I have to get accustomed to my new life without the habits formed before . I 've already perceived that I must get rid of this condition as soon as possible . Yet , easier said than done . I 'm just a little nervous . Is English the language that will change my attitude , my personality , and my life ? at almost 5 a . m . young men do n't get up that early though . I 'm helpless from second smoking . It was difficult to understand what they were saying , because they were speaking British English . ( I feel like it has been longer than it actually has . ) I have gradually come to understand that it is not a complicated movie , from what my host family was saying . I was really shocked that he killed a young woman in my town . Today I 'm talking about an Italian restaurant . . . . . . . I went to Saizeriya , an Italian restaurant with my friends , do you know it ? It 's very cheap and delicious , for example milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , a president of Saizeriya , is very clever because he always tries to put the price down and make it more delicious . He has his own farms and grows vegetables there and uses them in his dishes . Besides , from the farm to each restaurants , the vegetables are kept 4 degrees because the vegetables can keep freshness in 4 degrees . He try so many different things to serve cheap dishes and make them more delicious ! But the problem is when I came back home . And , as with most tours , this tour included a visit to a souvenir shop . The shop clerk 's sales talk was interesting . I searched on an online auction in Japan , and today I bought a good one ! It 's lovely ! Oh , really I have to learn English and look for a school , but there are It 's the same every time , to choose something in life is hard every time for me . Yeah writing is my weak point , even when I write in Japanese ! At first , three monkeys and a eagle conspired togather to oust the dust from Horton , and throw it away in the field of clover . When a shriker made a sound together with the rest , though , they succeeded . I should have studied more . peppers ( very important ! ) , an egg , minced garlic ( 1 / 3 of tablespoon ) I just took my daughter to the kindergarten and now I am in my car , waiting to go to one of my clients in 15 minutes , which means I 've got ten minutes to write something here . Seven Eleven 's Oden S / E 's Oden is very delicious . You shoud eat Oden with mustard and miso sauce . It 's very delicious . Moist summer finally , the moist summer comes to japan . Japan 's summer is more moist than other countries . So , I think I do n't hate moist summers . 9 : 00 - wrote a weekly report for my customer . I am thinking about a hand blender as present . I 'll have to do my best . I want to learn English because I like talking with foreigners . My cold is disappearing quickly . We played at the park by our condo and she seemed to have fun . Thank you for everyone . In the evening , I watched TV again and ate `` soumen `` ( this is a type of japanese noodle , we often eat it in summer . ) But it was out of date by more than one year , so it was n't tasty . I want to eat delicious `` soumen `` ! I feel proud of my country because the popularity of Chinese means that my country is more popular and stranger . I hope the learning of Chinese can continue . I rewrite the medical information in Japanese . I listened to his newest album ' the pursuit ' many times . We were not aware of the fact that this day has such a remark until it was over . I cleaned up my room this morning because I 'll be away for 3days . I feel that summer is coming soon . So far , there has been no contact with one of my friends since the earthquake . Oh my god , I heard that this test will be very difficult . What should I do ? How can I improve my English ? My grumbling . The result is slightly surprising and bothers me , but I have an idea to solve the problem . Therefore , today 's diary is over . Every time I cook it at home , I can see the sparking lights in my roommate 's eyes . What should I do ? In London I felt like a moron ! Trabajas en Tokyo ? Trabajo en una escuela de Ingles . But my teacher said thathis house was very safe because there are a lot of guards and if prisoner escaped from the prison , they would n't come near his house . We drank a lot of alcohol , talked and danced ! ! ! I 'll visit Washington , New York , and California all within one week . There 's just one thing I 'm worried about . The next day , he entered another smaller hospital . Is it a common thing in foreign companies ? How to write a good essay in integrated writing for TOEFL ? There are two types of writing , and one of them is integrated writing . How do you write a good essay for the integrated writing section ? I always do n't write enough words for it . ( In ibt , the integrated writing requires at least 150 words . ) Or , do I not need to separate my paragraph ? Nagoya 's subways are so complicated . I was moved by her heartfelt visit . When we arrived , on parking lot which was near start line , there were no cars ! I want to make a lot of friends ! Designers who can draw beautiful pictures on computers stronglytend to have such a personality . I live in Fukuoka , south of Japan . You might be wondering why we eat shrimp to live longer . The back of boiled shrimp is similar to one of an elderly person . Is that man lonely ? We have our own aerodrome and planes for practice by pilots , controllers and ANIS . It will be a nice time . I study psychology . And one more thing that I wonder is where Japan 's cold climate ranks in the world . How about the climate where you live ? Also I want to increase my English vocabulary . While I was riding a bicycle , I slipped and fell on the ground in the morning two days ago . After he became professor , he has been struggling to change his department , and he is succeeded in many aspects . After that , I went to a driving school so that I get a car license . I believe Japan will never give up and always rise again . There were so many competitors prepared to study Psychology . And even I do n't know which way I should go . Recently , I found a new singer . English makes me crazy ; ; so I decided to go to an English academy . It 's not necessary to tell everyone that I was born today . However , Thx Sun - zi for your birthday wishes . Sun - zi is a Korean lang - 8 user I made acquaintance with here . advocate > > But I had the job today and of course tomorrow . For the moment , I 'm not sure if I will become a teacher , but I 'm going to take this teaching course because I can gain experience from it ^ ^ I usually attend my English class once a week . I wonder if writing journals will help me improve a little . When I eat onigiri ( a rice ball ) which is purchased at convenience stores , However , I want to at least greet my Chinese here in Chiense . Now I practice Chinese pronunciation , but it 's not very understandable because there are a lot of pronunciation rules like pin ying . We Japanese use Kanji , so I sometimes understand the words ' meaning , but I ca n't pronounce them at all . So he need a translator . But I 'm not a good translator . My high school library has some MANGA books . `` 20 Century Boy `` , `` SLAMDUNK `` , `` The other story of Kamui `` and so on . I like MANGA just as much as novels or essays . Yaki - onigiri is boiled ( ? ) rice ball . We can get them anywhere in Japan . After the big quake in Japan , we have experienced a number of aftershocks . My daughter 's university graduation ceremony was suspended . I am going to do a presentation in my english class next week . Laughter is the best medicine We enjoyed talking , having some snacks and drinks and laughing out a lot . There were the words in today 's English learning video ' Laughter is the best medicine . ' That is to say , we all have the best medecine in us . As for the site `` Lang 8 `` , to me it seems to be not only a good educational resource , but also a place where we can see other people 's change . While thinking that nobody here knows them , people write about the smallest & most hidden parts of their daily routine , and while taking the first steps , they feel extreme & pure happiness even after the smallest victory . . . I think Chinese can learn English better than Korean . In this class I saw a very beautiful Chinese women . I could tell my teacher what to say but I could n't use perfect English . It was really good opportunity to have a conversation with foreigners . And I realized how convenient being able to speak English is ! At some point I want to think about it seriously . It should be and also must be serious . It 's a story of two boys who adapt to the cruel world . Even though I ca n't stand such things , this book is the best book I 've ever read . I learned that I ca n't do anything in a poor physical condition . Yesterday I joined this Lang - 8 website So I created 3 ( brand ) new communities : Playstation3 , Japanese sports cars , and Plastic kit modeller . It 's lunch time : ) My mother made me a lunch and it included a deep - fried pork cutlet but I think she forgot to put sauce on it : ' ( Haha ! I just finished the other of my assignment . It always takes an incredible lot of time for me to get my assignments done . I will go shopping at a mall , because it is cooler there than it is in my room . So I can say it that it 's a totally ridiculous habit . I think particularly it works well to make it easy to bring up phlegm . So this is a ridiculous superstition in Japan , I can say . I just registered here , tonight , but I have already found out / discovered that this is really an awesome place . I used to find it so difficult to practice my bad Japanese , but on here , just 5 minutes after putting up / publishing my first Japanese entry , runtyan has revised my article in detail . I 'll come tomorrow early ! I do not have enough confidence to accomplish it well , but I want to do my best . study with her so I tried to go but I did not reach there im just half of the way I am lost and then I decided to take the sky train to go there then I just realize that my motorcye do not has any lock so I can not leave it anywhere around . Um , I have a question . After work yesterday I went to a nearby movie theatre . The theatre was crowded with a lot of movie lovers , as it was just after the announcement of the Award . The Chinese hospitality My body clock seemed to be malfunctioning . By the way , I 'd like to write about an elementary school located in Toyosato city . They came to a win - win situatio by deciding to build a new school in front of the old one . The school parking lot is filled with a car decorated with a Kei - on character . Why do the Otaku who like Kei - on go to this school ? Because the old school in Toyosato city resembles the school in Kei - on . An expert in Japan who specializes in Japanese subculture said ' cities will thrive by using animation character should become commonplace ' . Because in the neighboring lane someone was learning to swim from a trainer , so the trainer saw me trying to learn the hips motion . And then we went to the street stalls and got some festive food like Takoyaki and Ikayaki : ) Actually I faded a little cuz now I 'm drinking a tequila . I 'm not sure whether I heard it correctly or not . Please check the following sentence to see whether it 's right or not . I went to an English Cafe yesterday = D Before I sent a e - mail I have to show my e - mail draft to our boss to check it . Then I went to a beautiful bakery . I bought some bread . Er trinkt gern Bier . Er hat kurze schwarze Haare und schwarze Augen . Meine Mutter ist Hausfrau . Sie hat lange braune Haare und schwarze Augen . Er ist achtzehn Jahre alt . Er spielt gern Videospiele . Er hat kurze schwarze Haare und schwarze Augen . Meine Familie wohnt in Hyougo , aber ich wohne in Shimane . Meine Familie wohnt in einem Haus , aber ich wohne in einem Apartment / in einer Wohnung . He is forty - nine years old . She is forty - four years old . My younger brother is a high school student . Anyway I still want to make full use of this website and keep practising writing here . So I decided to use English at this page . I follow power blogger , so I got some nice information from the blog . Do you understand what this stupid sentence means ? With my Boss Last time , I wrote about my first choice of a future job , in the movie industry , especially in advertising . It is so complicated to remember everything ! ! I had been kind of lazy in Februrary because I chilled with my friends , drinking , and singing karaoke . A new twitter account Thank you very much : ) Certainly , nuclear energy is very dangerous , since Japan relies on nuclear power for much of its electric supply . So younger people in Japan should have more interest in these problems or What do you think about nuclear power plants ? I must study English harder ! ! I decide to study a little more . NO wonder there may be other solar systems like ours somewhere in space . . . anyway this movie gets me to think about a very romantic story about the universe . It 's worth seeing . ; ) So , I took a walk for 30 minutes almost every day for 3 months . I am so happy to join here . I want to practice my If I were a player on his team with him , I would assist him . Since my school parking is really bad and in the morning it is so hard to find parking space , people always ask you if you are about to leave when you walk inside . I do n't mind answering their questions , but I was bothered by their reaction when they heard me say I was not leaving . Now I 'm drinking a can of beer at home , because the presentation was finished finally ! ! ! The tempura today was prawn and mushroom . This mushroom is called `` Maitake `` in Japan . I happend to read a magazine I found in my club room . I received the glasses there . We used to study at the same school for a long time . She is older than me by 2 years . We lovers of martial arts can not , in today 's democratic world , use our technique in our daily lives . Tomorrow my nephew should go to school to register to study for another grade because he finished the patum < - - ? 5 and is going to patum 6 . Anyway he was still not calm , he turned and watched me move frequently . After I had finished cutting his hair . He really became shy and came to ask me to do it again . . And I 'm interested in dance ( a little ) and blogging . ~ ~ lol . . Watashino Ohashi desu Kore ha watashino ohashi desu : ) Ohashi wo tukau noga suki desu . Today I received my first correction in Lang - 8 . Our class is making a presentation of ocarina performance next Saturday . She gave me many souvenirs ! ! Because I think she misses Japanese food . I usually write in a diary in Japanese , but it 's the first time for me to wtrite it in English . I totally agree woth the author of that article but most Korean can not speak English fluently , , but , , when we face with foreigners . . they were fluent speakers . . and they were also enthusiastic about English . . . Happy New Year ! listening test Today I want to try a listening test with `` Man in the box `` From youtube . I 'm not sure how many of you guys know this short video . Greg : the Japanese number puzzle game Jim : No I mean , about me whining to you - - - - - - - - - - - - - - - - - - - change scene - - - - - Jim1 : I just I miss her you know , like yesterday would 've been our seven and a half month anniversary . The ShangHai Knights came on TV . - - - - - - - - - - - - - - - - - - return to the original scene - - - - - - - - - - Jim : Ok , I guess I 've been a little preoccupied with her . so what is it today Jim ? What sad little piece of information do you want to share with me about your ex - girlfriend that I dont give a shix about it because you 're a pathetic losser that ca n't let go you twat . Jim : Call you twelve times a day ~ ~ I think that 's perfectly ok ~ ~ you dont answer anymore ~ did you change number you cheating whore ~ thanks in advance for your guys ' corrections . Thanks for the comments on my previous diary . I discovered the name of my illness . We have regional map , but not a global map , even if we did n't count the number . I am going to write my diary in English . The title was `` CASE CLOSED `` , which is a Japanese story . The true love between vampire and human beings moves me and I always look forward to watching `` New moon `` . I 'm writing this entry for you . News about the earthquake is reported from morning to night everyday . Fortunately , I live in an area where there is no damage . But I think my English skills will improve by studying abroad . Yesterday , after a ridiculous class in which we talked about what a second grade student can teach ( us ) about leadership , I tried to go home . Then a girl spoke to me and asked what the Korean homework was , because she was absent . Free time & favorite movie I often go shopping in my free time because I live by myself . In addition , I often read books . My favorite movie However , they become gradually fascinated by jazz . Then if you become uprooted , you feel unsettled . `` Today , staff members were told by the personnel department that if we ever had a problem , we should take it up with our supervisors . in the foreign country , what u gave to a girl or a boy ? There are two professors in my laboratory Today , one of my lab members gave a presentation at his defense ( ? ) . Who is the most popular pop star in the US ? Recommend me someone ! Whenever I try to record something , something has to interrupt me : the phone rings , the door bell rings or the cat meows . Each time I start recording the cat is stuck with me in the room and wants to get out and when I get her out of the room she meows because she wants to get in . During the holiday , I tried to return to Japan . But company denied my request as I am now working in Beijing as a trainee . As I have no friends in Beijing and came here by myself , I wonder how I will spend one week ! But , today , I enjoyed the beautiful eary fall . On the 4th floor , we will have a cinema room and a karaoke room . Perhaps , some people would like to vote for building a factory simply on economic grounds that a large factory will probably bring about a prosperous future to the area around . She chose a grey one at first , but I advised her to choose the red one . But recently I change the / / my / / opinion . This week the Japanese telephone company `` au `` announced the release of a new series of cell phones . Both of them are very talkative so we talked all the time . I wonder whether I should write about it , but I decided to because I just want someone to listen to it . I could n't catch his saying completely , but he told another person and laughed , `` Wow , someone is talking Japanese ! `` After several hours of reflective though , I kind of reached a conclusion that I should never try to be hostile to him and I would keep my doors open for him , for him to come back to me as someone I felt the best spending time with . The weather is unstable and the sun goes away sometimes . Yesterday I was supposed to join the Job Fair in Zhong guan cun , but unfortunately I felt lightheaded , drowsy , dizzy , nauseated , unusually tired , and I began to think I 'd been infected with H1N1 . After supper I hurried up go to the drugstore and buy a themometer . Thank goodness my temperature was within normal range . He went out with 23 women , so he has a lot of knowledge and experience . If I kept a kitty cat , I wish her to lay on my PC like the following picture . Very strong men attacked bad men . He likes to watch K1 and boxing . To begin with , in my reading , a successful career is associated with how well - off people are . Whereas , the professor states that students should decide their major before taking a wide variety of general education courses . Consequently , the professor maintains that when you find employment , you should be careful of how the vocation fits your interest . My Lab work If someone can explain the meaning of these sentences , I 'd really appreciate it . It is light , it has big blinds / curtains , it is reversible , and Two Australian men opened the bar , so most of clients are foreigners . I think that maybe it is not only about different , it is a complicated issue . Ok , I think this method is good for beginners , you can get an understandable pronunciation , and some basic knowledge if you want to travel to the country soon . Please feel free to add me to your friend list in Lang 8 ^ ^ I welcome everybody . The reason I am busy is that I am learning sign language . However I ca n't communicate with deaf people . Why do you think that we ca n't communicate with such people ? I want to try to talk with such people . When I was a student in France , I was surprised that a lot of people there came from several foreign countries . In Japan it is not like that but there are more and more foreigners here . It is one of my reasons for studying English . Representative high school teams from each of Japan 's 47 prefectures compete at Koshien Stadium in Kansai area . Although I tried to not eat sweets everyday , my homestay family eats desserts after every supper > < When I watch comedy shows I 'm not really able to understand what they say because there are no subtitles so I ca n't understand the English without subtitles well . Are there often celebrities who have funny voice or do they change their voice on purpose a little ? Though when necessary ( under pressing circumstances ) , they never fail to be short of money for basic necessities , rather than letting the expense become an obstacle for me . I earn pocket money by doing part - time jobs . What do people usually talk about when they have no topics for a chat or when they need to keep up the conversation ? Unfortunately , in my country it is , in contrast , very hot and dry in summer and very cold and frosty in winter . The weather forecast promised it would be much cooler tomorrow It 's going to start in 30 minutes . I hope all my friends onLang - 8 who live in japan are all safe . I hope all Japanese are safe and sound . I was there for a week for a business meeting . I am coming back home from Narita airport by bus now . Yesterday I took part in this Lang - 8 and wrote the first journal . And I thought , `` There are so many jounals here , it must be impossible to get someone who can help me . Evidently the winter is coming today . I answered `` I 'm thinking of enrolling in this school . Could I have a trial lesson to help me to decide ? `` Actually it 's not always raining , but the air has the sense of rain . Why , why on earth have you made me so incapable of concentrating ? I had actually contacted him many times , so I may have got him down . But from today forward , I will try to write a journal every day in lang - 8 because I will start a job next spring , April 1st . On the other hand , I can understand recorded English dialogue & nbsp ; when I listen to it . So I will write my diary with the `` Look `` or `` Look like `` I learned . Depending on the outside ingredients and the shapes of them , the name changes to things like ' Daifuku ' , ' Monaka ' , ' Taiyaki ' , ' Taiko - yaki ' , and so on . They are not at home now I am staying at home with my uncle , even though I wanted to stay alone . He is the husband of my second aunt . He asked me `` Would you like to eat chicken for lunch ? `` In korea , chicken stores sell chicken with cola . Hello my friends , this is my first time here . You are welcome to make friends with me . Recently , I started skateboarding . I want to improve my skateboarding more . I want more time to practice skateboard . Hello . My name is Kim Dong Hyuk But I do n't like Harry Potter . I think that Harry Potter is childish . ( I meant the Harry Potter translated into Korean sound very childish ) see you soon Since I could not get the pronunciation of Kanji instantly , it meant I took a lot of time for reading and understanding the meaning of a sentence . I have got a very interesting book from my brother , sweets from my parents and friend , a pineapple from my class tutor and a lot of wishes from colleagues . Although I 'm happy , I 'm also very worried because the school districts around here are not hiring at all . Reports and presentations are waiting for me . Introducing myself I tweet only in English , so I can study . So I spend 10 minutes doing one tweet . I have to repair it , so I need more than 20 thousand yen , probably . Next exam is July . I am writing now by cellphone though it is difficult to write . . . If it 's sunny out today , I will go to the park to go running / tanning and stretch . It 's way too short but that 's all for this morning . Some of the victims ca n't get enough food because roads were broken by the earthquake and tsunami and the amount of food is too low for all of the victims . Of course , the Japanese government and other organizations are trying to help with the food supply , but it is difficult because of these reasons : This problem 's news is bigger than the earthquake 's damages . Nuclear power plants were damaged by the earthquake and tsunami . The Japanese government and Japan Self - Defense Forces are trying to reduce damage of the radioactivity . Remember , the nuclear power plant is a power plant for Fukushima , that is the place that was given the biggest damage by the earthquake and tsunami . ORION brewer had manufactured their products only in Okinawa prefecture before , but now they made a business tie with ASAHI , so we can buyORION beer at supermarkets and alcohol shops . Today , there is a very interesting shogi game between shogi software and Ms . Ichiyo Shimizu , who is the best woman player of shogi . He is a student who has participated in our Dojo . Furthermore , we need your cooperation please . It was 40 degrees Celcius and meteorologists have n't stopped to announce fall of temperature every week . By the time we talk about food we were hungry so we went to Korean restaurant near my work . Third , well cooked barley with soy paste soup . Fourth he bought out rice , Q . groud beef steak , fried fish , egg soup . Five more side dishes came with it . We had a great time , and we left our stress at the restaurant . I was moved when I listened to his performance . Yesterday , when I had to go to school by bike , the thermometer registered - 15 Celsius ! And just like every mum does , she pointed out my stubbornness . Although it 's cold , I really enjoy watching the white landscape just like I 'm doing now with a cup of hot chocolate , yummy yummy ! ^ _ _ _ _ ^ Screw you summer , hot chocolate rules ! I am a beginner . Could these advances in technology also cause some problems ? December 30 , 2010 Korea , depending on the contents of the diplomatic negotiations . After that , I rented a DVD and went home . I said `` Of course `` There were no LAN connection in the room , so I had no choices to use internet I went to the language school . There were many Japanese student there , they will graduate with a strong academic background . I was ready to study painting with kids in the 1st grade . There are many cultural facilities , like a concert hall , movie theaters , department stores , an ice rink , football stadium , shopping mall and two parks . I talked with a friend in Texas with Skype this morning . They try to get a summary of the candidate . The candidate , is usually asked to speak English by the foreign - invested companies . I will separate between what I need and what I do n't need . Help with my house 's agriculture , rice planting and harvesting cherries . He stood there for 10 minutes and he held the piss in . Today , I went to a concert in which my previous English teacher played . Firstly , The Beatles has `` opened `` up for me the magical world of the rock - n - roll . I think that it 's possible , and as John Lennon said : `` You may say that I 'm a dreamer , But I 'm not the only one . Even when I 'm in an awful mood , their music makes me smile , and I 'm very happy that they have such an influence on me ! When I saw the terrifying tsunami that destroyed houses , bridges and roads , I was shocked . : ( Anyway , I have to concentrate on his class and write down what he says in the next class . I was curious to know why they made it like look like a fallen leaf from the beginning . When time passes , from spring to autumn , the wakaba becomes momiji which means red or yellow leaf in Japanese . I was going to write in my diary about my cute female friend but I changed my mind , because I had heard a rumor about her and it was a terrible shock to me , so I could n't write anything . It 's a little roundabout out of the way but really nice , I can choose from 3 supermarkets to buy something and there are 2 movie theaters . I thought it was a little expensive in the auction for me ( but it was too very inexpensive compared to the real price ) . We would say `` I go to school `` if we were outside of school . If they were with you , you would say `` go to school `` . ( In English ? ) I clip my nails regularly so I do n't know the reason of holes . I felt a serious ideal and belief from his speech . The following sentence is in the present passive voice : The company promised to give 40 yen for each day . Half a year has past , the money has not been given , so I am disappointed with the comany . Almost all week , I thought of preparing spicy chicken wings on the weekend . We read on the Internet a lot of different recipes for chicken wings , and went to the store to buy food . We made a honey mustard marinade from honey , common mustard , french mustard , spices , soy sauce , salt , and garlic . We put the wings in this marinade for 2 hours . We are eating the delicious chicken wings right now , drinking light beer and tomato juice , and watching the movie `` Uoll - street `` with Shia LaBeouf , Michael Douglas and Carey Mulligan . This paragraph is my model answer for my OPI test . The exhibition of Fernando Botero has been there since July . The first exhibition I voluntarily attended to appreciate art works , not for a mandatory school field trip , was in 1999 . Two girls and one boy . Why do n't you tell me what you want me to do ? `` Well , obviously there is no stand - by drink for tomorrow , ca n't you see that ? ? `` I should go there because I want to graduate without hindrance . Everybody likes her ! ! I hope she has a fantastic day ! ! ! ! ! ! ! ! he has two personalities OR double personality . he always gives me helpful advice . and I assist my professor with performing an ultrasound during an operation . I 'm looking forward to knowing my second impression of this book . So I 've decided to make a list of questions that could be helpful for both teachers and students . Actually I always preferred Damon to Stefan . I 'm so glad that I know more than I knew then ! It is sunny today , so we are walking in the park this afternoon . This year the topic was `` Should the Japanese government authorize the system of casino gambling ? `` Each team had two battles , and the rankings were determined by the scores the judges gave . In addition , there was , for example , the argument `` after the plan Korean casinos wouldgo bankrupt and many Koreans would lose their jobs because 70 % of such casino 's customers are Japanese . `` Debating is too difficult for a freshman to do alone . ) The first book begins with a guy called Arthur Dent , who wakes up and sees lots of bulldozers in front of his house . I do n't how it works but I am writing my first diary . I ate more than 15 dishes , so I became full . He told about his homeland 's history and answered people 's questions . I am going to Germany to study Electrical Engineering from October to January . And in the town , I have to speak German . I love German and English so much . I sometimes watch this forest on TV and in magazines . To understand the meaning of the commands from our boss exactly . I have just finished applying for Working Holiday Visa in Australia ! ! ! I went to Chibi Canada . I 'm going to participate in a Zombi Walk on Saturday , downtown . We prepared for the Zombi Walk . We cut some clothes to mimic Zombis . My students enjoyed it . Too many extra curricula 's chosen by their parents will inevitably take up the kid 's time and change their nature . because I have n't finished writing my resume yet . I 'm so tired , because the night before , I slept only 3 hours or so . My best friend and I have n't seen each other since Halloween , It was awesome ! ! It was really fun , but I got drunk and I had to practice danceing . I have to write about something I like internationally , but I have no idea how to write it . ( [ Recently * OR * Astonishingly ] google has released Google Chrome . . . ) The process is surprisingly easy if you understand its frameworks . The gaps are being spreading in the point of costs and individual capability according to ' ' The World is Flat . ' ' Whenever I head down to the station , I can see many blood center workers on the street shouting My first log . I thought so , but I chose this nickname . In the future , I want to work making steel . He swiped a bottle of vodka from his family 's shelf . The vendor 's headquarters are in Europe . I want to help martha , but I can not fiund the correction set in this system . Of course he is the most popular ~ in the world . and thanks a lot that you taught me At first I chose it because it 's only for women and that makes me comfortable . circular exercise ! ! `` I work at an elementary school in France . I do n't have much faith in my ability to remember so much professional vocabulary . Because I could n't achieve my target IELTS score . Japanese are killing themselves approximately at the rate of 35000 people every year . I think the root of this problem is that Japanese companies have a traditional style . Exhausted people ca n't talk with someone , although they want to explain / reveal their troubles . Is this right ? It was about ' Racialism of South Africa ' . I forget what its name was , anyway there were a lot of foreigners , especially Americans who have studied Japanese . Many foreigners know very difficult kanji , including some ones even most of the Japanese would n't know . What 's more they know old - fashioned and obsolete grammatical knowledge . The site gave me new information on japanese . So I found out that learning too much detailed grammatical information or memorizing innumerable words is not very effective to master a foreign language What I would like to say is that territory issues like that are occurring between many countries , such as between Vietnam and China , India and Pakistan , Israel and Palestine , and so on . I saw a 3D movie on Saturday . but also it makes me miss America so much . We ate delicious dishes / foods and talked about our own dreams . Onjyuku in Chiba is a very beautiful place , blue sea , white beach . To pass the Korean summer , we definitely need these things . The following is the ps that I wrote for my cousin , please give me a hand to correct it . But I am going to visit the grave tomorrow . But he is also charming and has a great ability to diagnose sickness . However , I have to admit that the festival is so fantastic , it 's worth enduring all that trouble . At the park , I found thata lot of `` tsukushi `` hadgrown . ( Tsukushi is called horsetail in English . ) I remember her teachingme asI tried to cook tsukushi . There are two important preparationsfor tsukushi food . 1 : Remove the `` hakama `` ( It is acalys , inedible part ) . 2 : To remove strong bitterness , boil or put in cold water for 10 minutes . I stir - fried tsukushi and Rape Blossoms . I thenseasoned itwithsalt and pepper . unbelievably fat . . . While I was choosing some books for my children , one of the books caught my eye . I take an English - lesson on a web site every day , and I gradually became interested in the Philippines because that is where my teachers are from . I 'm currently reading the book , and I 'd like to spend some more time discussing things related to the Philippines or Japan . I read some of the messages my friend sent to me on hotmail . 90 % said when a woman has long hair because it is easy to pull her hair 70 % said they change their mind if , before they are going to injure a woman , she sees them and asks `` Sorry , what time is it ? `` He recommended rice noodles and beef fried rice . It 's a story about a girl going abroad , who is taken hostage by an international terrorist organization . St - Pierre has been practicing karate since he was 6 years old and respects Japan , so he wears a Japanese headband during the entrance before his match . My family had a student from Germany since August Today , she was supposed to move to another host family . which is so / very impressive . I also pay the security deposit and brokerage which is equivalent to one month 's rent . I bought a new English book ^ ^ To study English is a lot of fun ! I want to study English more and more But I don ` t have much time to study English and German I began Lang - 8 , because I want to speak , listen and write in English . I had a dream about a woollen scarf at that time . My dad watches tv and my mom sleep in morning ! But they also have tried to grow a lot of vegetables for themselves in their farm . It was big , beautiful , and had a perfect shape . We would always go to dinning room of our college school ( because it 's very close to our company ) but recently , our boss wants to have lunch with us , and I feel very uncomfortable , we can not talk about anything like before . Because I want to study Pharmacy after that . Please correct some of the presentation / some sentences . What a beautiful Cherry Blossom She is very cute . It was more growing than I throught because she is mix of regret : I regretted to call her such a cruel words . govern : In the ancient times , Rome was governing all of the world . bend : I will not bend my opinion even though all the people here are opposed to it . I 'll start learning English again . I 'm very busy , so I stopped learning English 3 months ago . Today is great . For the first time I met a cool lady . I 'm so excited . Could you explain the difference between the meanings of the words above ? Are there any differences ? Teaching is Learning ^ ^ I believe that the learners can help each other and can make more progress for themselves . Just rotating and browsing itself is really enoyable . I would like to develop my vocabulary and learn to speak , at least , the english that people are speaking every day . The friendship was beautiful and maybe his friend assisted the goal , I thought . . . One of villains , Griff also said it to his grandpa . But he only said the same words more loudly . In some other cities ( like Milan and Naples ) the winner has n't been decided , yet : the two candidates who gained most of the votes are going to `` fight `` for two more weeks , at the end of which there will be a new vote . She calls me `` my clone `` because weresemble each other so much . For example , when we go to the museum and look around and ask each other , `` What paintings do you like ? `` We choose the same paintings . LOL , I was superman at that moment ! I told him one of them was cheap , so I skipped the explanation of the two companyies and their cards . Firstly , because he is the most popular writer among teenagers , I 'll ask him the secret to writing funny stories . You know , he stopped studying regularly at the end of primary school . I really want to know the secret . terrible day She always has courage to face every difficulty , but this she had to give up . One of them is flexibility , the other one is positivity . severe problems or are in a slump One more of his good points is that he is extremely flexible ; he tries to gain new ideas from part time workers , trainees or whomever has good ideas . words in front of the employees unless the company is in an affluent position . His positive way can influence the employees obviously . depends on the employees , because , if they do not work aggressively , the company their problems nicely . I think that a good supervisor should be flexible and positive . keeping the workers ' thinking positively . workers should be flexible and positive too because without their cooperation , one good supervisor could not change the company surroundings at all . When I left my grandmother 's house , she said softly , `` You can forget about the marriage . I need think about my future separately . I 'm very happy because I 've spring break until May 3rd ! In this time , each student does n't have seminar and celebrates from morning until hmmm morning next day . Today is last day of this fiscal year . I 'll go on a training camp of the Model United Nations this afternoon . The advantages and / or disadvantages of public transportation . Firstly , public transpotation makes teenagers more independent from their parents , because when they take public transportation , they have to mind their good manners , like how to behave in the situation where other people are around . Thus , the situation where they have to think how to behave by themselves improves their independence . Secondly , let 's consider public transportation 's environmental effects . Thirdly , public transportation makes traffic conditions comfortable because if many people use public transportation , people who drive cars will decrease and we can ease traffic jams . However , when I was just about to leave home , the telephone rang . We do n't know which one to choose because there are so many beautiful pictures . When I met them for the first time , I was so confused others run around all the time even in formal ceremonies . goodbye . and creates a sustainable future on our own accord . Hi , it 's my first text on this page and I hope that this page help me learn my english . I just started writing my journal in English every day . Recently my class did pre - lessons to be a teacher . But I want to be a teacher , and I want to make a good future for Japan . I 'm so happy have this terrace that I can learn language . My English is not very well , I hope other people can help me , I can teach your Chinese , we can help each other , could you ? Now , I am always going to a support company for studying in UK . According to the IELTS module test , my IELTS score is about 5 . 0 ~ 6 . 0 overall . I would like to go a UK university and major in Entrepreneurship or something related to Business . We went hunting in Ixali Clearing after chatting . ability . Oh , my essay has been so long ! Thanks for reading my essay . Please read my essay , , ! One day , she heard a funny rumor from a junior high school student who said `` There a cursed video tape at a campsite hut , and if one watches it , one dies after 7 days . `` Asakawa immediately decided to cover the story just out of curiosity . As you can see , I suspended my diary again . The keyboard layout changed for some reason . For example , when I pushed `` k `` , it typed `` 2 `` ! ! I tried many ways to solve this . By chance , I pushed one key , `` NumLk , `` and the problem was easily solved . . . I live downtown with Mexican friends now , but since they are going back to their country , I have to find a new apartment by the end of jun . The owner is so kind but the problem is that she does n't like the smell of meat , so she asked me not to cook meals with meat frequently . Anyway , I have to complete packing until night . He 's a Saint Bernard , like the dog from `` Beethoven `` . These sentences say the same situation ? Thailand has a good relationship to China therefore the Panda were the good gift . They invite the children and toursits who would like to visit Baby Panda and watch them playing with snow in that dome . There was one more important purpose for going to this museum , which was the restaurant . Every freshman in my university is assigned to study calculus , the subject at which I failed in the first year of my university life . There continues to be illegal videotaping of movies in public movie theaters . It was so impressive for me and I was shocked . I thought it was much more sophisticated and attractive than that of the Japanese version even though PS3 is originally made in Japan . I heard of `` Umbrella `` from recommendation songs at the cyworld which is a website in Korea and similar to Facebook in U . S . If you know this kind of music , please recommend ! Say it again sung by Marie Digby My student will challenge relatively advanced high schools . But I think this music clip is good entertainment and a song I can describe as one that 's really `` This is a Michael Jackson `` . Michael Jackson is the first America pop music star for me . When situation got worse , my computer just freezed . I am going to back - up my files and update the anti - virus software . 2 customers , and 3 stuffs including me , at bar my working place . I will go to do `` karaoke `` with my friends . Unbelievable ! Who Are They ? The Avatar Put vanilla ice cream . Hi , I 'm Silver and I 'm learning Japanese and English . I 'm studying these languages because I want , someday , to spend some time in Japan and the USA . Some people like a western style breakfast such as a piece of toast , scrambled eggs and a cup of coffee . I made some English sentences with my friend . There are many people with allergies in the world . However , my sister ca n't eat those things , so my mother asked the teacher to give my sister treats without chocolate and peanuts that other children would also like . I could find a convincing opinion . Also my teacher advised me of following : according to yesterday ` s translation , boss correct them himself and praised me for a good job . But , I ca n't write natural - sounding sentences in English nor can I speak it well . My second son knows how to swim because he has already had lessons . Afterwards , the hypothesis disappeared . Every time I hear blood type character classification , I 'm bored ! Practice makes perfect . Everybody should buy Volvic ! ! ! ! Last weekend I climbed Yuelu Mountain / Mount Yuelu . so I decided to do something to help my English . that 's why I joined `` Lang - 8 `` and started writing diary entries . To make Ramen , we mix pork soup , oil , sauce , noodle , and some toppings . Maybe I should find something interesting to do . Still , I feel sorry for having to make them listen to my stumbling around in their As a student studying Statistics , I agree with his opinion about the importance of statistics in our life . Also some universities have a statistics department in the undergraduate and graduate level . I like visit around there especially the sea side . There is a water park by the sea and they have long slides . My kids are looking forward to going to the water park . It looks like a human physically . He was astronomer and doctor in Middle Ages . Poland in Middle Ages was much larger than it is presently . He was first Polish pope . English as a second language Japanese and Koreans naturally have morebarriers to overcome because of the huge differences between English and their mother tongues , whichunlike Chinese , whose structure is somewhat similar . Frustration is always followed in the quest to be perfect , particularly in learning a language where there is no clear finish line . Astronomical sums of money has been invested on English education in Korea . `` I know many people who went to America at a very young age . And their pronunciations and accents are just perfect . `` I do n't have the instict or intuition for English language . `` My hobby is doing sports . As I love many kinds of spors , I have a muscular body . Yesterdy I went to work part time and I taught swimming to children and gym trainers . tomorrow , I will perform it in livehouse . Japanese believes that the new Year God ( Toshigami sama ) also comes when new year comes . This is the preparation for receiving new God . It has some theory and it is very comeplex to explain in English . It contained grammar , vocabulary , listening and reading sections . Anyway , no mather how hard it is , I know I should get through this hard period of time all by myself . I do n't like the feeling of hanging around . Maybe taking photos can be a nice choice . Not only because of the bad environment in that city , but also because of my feeling of learning nothing there . It seems ridiculous . The Korean temperature will be sixteen degrees centigrade tomorrow . Compared to the Japanese temperature , Korea is a little cold . My condition is a little bad . That sometimes stimulates my appetite . Then , ( after ) arriving home , I ate a large breakfast , See you ! Good night ! ! I decided that I will never take PINAIR . NEVER ! ! ! Probably the hottest day of the year . No , my entire life . I like Yui and Azunyan , Oops I 'm Korean guy . Youtube caption download Today I have found that Youtube gives subtitles for some movies . We count numbers starting at 1 and the person who said 30 will be the loser . I think you can change this into a better explanation ! Recently , I 'm learning not only jazz , but also hip - hop and lock . It was very delicious ! And now I confuse English and Russian words ! ! _ It 's terrible . . . . . . . . . . . I will visit Ho Chi Minh City and experience a Mekong river cruise . I will study English hard every day ! Two days ago , a dog my girlfriend 's family kept , Bell , passed away . This happened as expected . People who consider watches as a tool for timekeeping , Everybody in our dormitory waited for them , decided to make it a suprise . We had Mexican food for dinner , it was delicious for us . English is very difficult . to grapes , apples , pineapples , lemons , peaches , kiwis . If I had an opportunity to eat fruits , Recently , _ more and more people change their cell phones to smat phones . I began to be worried . I registered for this site , immediately . Today I went to library and studied about various financial products like ( / such as ) bonds or derivative financial instruments . By the way , I am becoming a little nervous these days because of the pressure of job hunting , and I often feel lonely . The group invites a foreigner to be an adviser once a month . I was surprised when I received the corrections . I 'd like to continue writing my English diary . first of all , I made korean soup which is for birth day soup , today was not anyone 's birthday though , because its taste is great ! ! There were also kimchi soup , Korean pancake , rice and kimchi which are all traditional Korean foods . I decided to study English and Japanese yesterday , after washing , I read a Japanese book . because I just studied Japanese in the 3rd year of university . I decided to study English writing in this site from today . I would like to I introduce my character . This job sometimes makes me feel tired , because I have to work in the hospital the whole day . So , I want / decide to ride a bike / bicycle with my friend . but when I go out to fetch my friend it 's still raining but it 's sunny again I 'm very lonley . I dont understand the proper procedures to do these things . On this special day , some people are celebrating and some people are still in danger . Now we are focusing on the grammar when we start learning English , but not listening or speaking . I 'm one of the people who claim that speaking and listening are more important than grammar for beginners . Would you proofread these sentences ? And I bought stickers , so I will give these to you ! By the way , the 31st of October is Halloween ~ ! ! If you have free time , I want to exchange Halloween goods . I am studying English and Thai . I have 2 daughters and a husband . We are living in Thai , because of my husband 's business . I like reading books , drawing pictures , playing the piano And they complain about the participation cost . At last , I found one to satisfy my requirements . I 'd like to live near the station . I met a childhood friend . If I am free tomorrow , I will share it with you . Does anyone want to communicate him ? For example , all us Japanese people lived in Japanese - style houses , but recently this type of building is becoming a thing of the past . Nne of the reasons is that the development of the air conditioner lets us not need to choose the Japanese one that is built so that you do not feel uncomfortable without them . A man who like to watch old - fashioned things has no choice than to go to a history museum where they are on display . What improvements have I experienced ? But it is clear that I have realized the mistakes repeated in each entry . Learning so much vocabulary is making me confused and frustrated . Could you see my weaknesses through my journals ? By the way , I am going abroad to study English in Australia on February 12th . I am worrying about the flood which have been occuring in Australia . hangout = play ? When I was student in High School , I was interested in Middle East . We played dodge ball , catch the tail and ran in a race . I stayed up all night talking with my new friends . I went to the web site of , `` the new york time `` it has beautiful calligraphy . These days , I have begun training to quickly translate Japanese sentences to English ones one after another . Japanese sentences are chosen to be translated easily so that we can concentrate on learning the grammar and the use of it . Becasue there 's no need to get any certification when you act as anyone , I made my account and uploaded some pictures and became a well - known comedian of China this afternoon . But I can communicate with others somehow . And unluckily I 'm included in those people ! Our enzyme , alcohol dehydrogenase , which metabolizes the alcohol , is less active compared with the enzyme that heavy drinkers have . I seems strange that my friend never received a letter ! I have English conversation lessons on Saturdays . I will enter a university in April . do you have another expression for `` it takes long time `` ? as with many korean students , I think I have a weak point for speaking or listening in english . I watch my usual knitting shows , ready my favorite knitting books , and check out all my tools and knitting - wool in the closet . recently , my hobby recently , I 've been interested in Mr . Children which is a Japanese musician so , I listen to their songs almost everyday ^ ^ and now I am listening to one of their songs . According to the weather forecast , it 'll rain tomorrow . But recently , there is no one who takes care of these things . ' Your grandfather died . ' Oh , you have to wear something on your underwear , right ? I used to sleep at around 10pm and wake up at 6am . this weather makes me really depressed ! ! ! The reason why I decided to live in NZ was that I wanted to recover the nodes on my vocal chords by being in the clean New Zealand air , and also I was tired of being in Japan . He needed to push the on off - button immediately . you 've learnt many languages , it 's very interesting , but learning to be fluent in any language can be very difficult What do you think ? the internet , junk food and smoking was my life . I 'm swallowing tablets and other medication for pain ( painkillers ) , my body hurts so I 've been lying down all day . Although all this has been happening , I wo n't stop praticing English . It is true that English is becoming the world language in globalization . I am reading a comic book called Dilbert , written by Scott Adams . It was about M . 7 around Fukushima , the nearest place to the hypocenter . Her strongest point was that I ruin my health by not eating eggs and diary products while my brother slowly poisons himself , it 's something nobody could do anything about it . She is just too stubborn , but so am I . . . Fresh vegetables were very good ! I have tried to grow vegetables on my balcony but it ended in failure . I have stayed at an Australian home and there I ate pasta made by the home family 's mother which is was the most delicious pasta I have ever had . I have to pay 1000yen every month for the membership fee . I do n't need to pay for the car insurance , either . Because it is included in the membership fee . This system is not popular yet in my neighberhood . In the future , this system may be popular among young people . on friday I just went out with some friends to have fun in a latin bar . It was nice , I met a lot of people there from differents parts in the world and obviously from my country as well . . . on sunday I went for a walk with my flatmate she 's like my sister here so we just went for walk and a cup of coffee and then I back to my flat . . . Yesterday my mother and I drove to the Wake Mall and bought many things such as clothes , shoes , food and other stuff . They all enjoyed the sunny day and took their rest at the weekend . My schedule in Bangkok had changed so I could n't arrange things around my schedule . So , I predict that this year 's theme will be ' nana ' or ' shichi ' I will take an examination on the 24th of April . I am planning to have a trip with my college friends before graduation and I have not decided where to go . The beautiful flowers There were the beautiful flowers at the reception of my company . I am not wearing a wedding ring , neither is my husband , because we did not buy them / any . Of course , we visited a jewelery store like other people when we decided to get married . I ordered some items from drugstore . I think they are a really big company . I checked out that message . I purchased a lot of items so they will ship my items in two shipments and I would like to make sure that they will ship my items in two shipments . Mami Kawada This is a letter of complaint for a psychological journal I was examined and the doctor said that I have signs of paranoia but I do n't believe him . I really do n't know ; what do I do ? I also want to make friends all over the world . At first , we had a Korean lunch . I bought clothes , boots , body care creams , and so on . We were relieved , but we should have make sure of the bus , especially when we come to a place we do n't know so much . Since I have the shop bag of FORVER 21 , some girls asked me , ' ' Where is Forver 21 ! ? ' ' It was interesting for me . In addition , students and their parents complain of the incompetent teachers who do not strive to show any effort to improve their teaching skills . The government insisted on a new system that requires teachers in secondary schools to renew their teaching certificate every ten years . Therefore , I recommend the method of using the score of authorized linguistics exams in the case of subjects related to language or tests made for assessing each subject . In conclusion , I agree with the implementation to reform teacher 's regular assessment because it has more advantages than disadvantages , such as the improvement of a teacher 's teaching skills and the recovery of students and their parents ' attitude about public education . Jim Carey 's acting was wonderful . I 'm going to write a Journal everyday . SAKURA is cherry tree in Japanese . I stayed home all day . I 'm a university student ! ! ! ! ! ! I have a friend from Japan in NewYork who is currently working in the real estate industry . However , if the teacher 's pay is based on the achievements of his students , Teacher A will work harder , and Teacher B will stop complaining It is lunch time now . I was very surprised because Australian eggplants are much bigger than Korean ones . Only those who are bilingual [ will ] pass the bar exam . Actually , I like watching movies which are dubbed in Japanese . I sometimes feel the gap between the dubbed voice and the real voice of actors . Recently , I watched a movie with subtitles in order to learn English . 5 in terms of job hunting in America , they considered that people who emphasize their skills , achievement or qualifications are likely to be a useful resources for the company . Of course , this is a characteristic of Japanese people , and there are people who are very frank and are never diplomatic . If there 's any opposing viewpoints or advices , please tell me . ( ^ ^ ) As the Internet becomes more common , we can reach a vast quantity of information . Also , we can easily offend other people by using tools as slander . ( Some ) People are scared of being slandered , as the people do n't have common sense . Today I want to tell you about a festival , what happened yesterday in my town , Vinnitsa . In the centre of town people could see the stands where there was the name of a European country that describes this country - population , area , official language , nationalities that live in this country and gave information about the history of this country . All of these interesting actions were accompanied with nice lively music , masterful displays of dancing and of course a good mood . there are so many things I have to learn . . I went up Abura Mountain this Sunday . We arrived there about half past two . And then we started climbing the mountain . While climbing , I was out of breath because I do n't usually excise and do n't have stamina . It took me about one and a half hours to arrive at the top of the mountain . Going down is easy for me compared to going up ! We arrived at the bus stop around five . After that , we went to the restaurant to eat dinner . I usually do n't excise so climbing a mountain is new for me and I 'm excited . I like moves that make me `` think and treasure . `` Most of things that happen in our lives only make us anxious and depressed , and those negative feelings kill our minds little by little . As time goes by we become aged , experienced and learned . We might not look at things as we did when we were younger . So I need to use English at school in order to give new information ( knowledge ) to my students . I know . However , today I somehow repeatedly listened to a song but I have many difficulties in math ! ! ! I survived today ~ haha Actually I live in University domitary , so I 'm always in the school = ) Every Monday and Thursday , each class lasts for 1h 15mins , unlike the other days on which the classes are 50mins so these 2 days are more tiring . And fortunately during the second class was no lecture because the professor was absent , so I went to library and took a nap ~ hahaha Third class was again Constitutional law but this time it was about constructures of controlling a country ( state ? ) so it was more understandable than the first class . 5th class was Civil law ; I studied contract law . After formal class , I had Japanese class which I take every Monday to Friday . healthy cutlet I made chicken cutlets for lunch today . Today , I am going to tell you how to make healthy chicken cutlets ! Today 's lunch was very yummy . At about 9 : 00 , I have to perepare my afternoon job . I think it is a wonderful opportunity for me to improve my English and my teaching skills . ( PS : I am a college student and I major in English teaching ) So , I always prepare carefully before I have a class with the student . To be honest , driving a car is a big challenge for me . But I know I am making progress every day , which is the most important part . What I 'm doing now is because I want to go to abroad to study , and I want to meet some friends from others countries . I want to know anything about others countries , and at the same time , I hope I can let my friends know more about my country - - CHINA ~ I hope I will be not be sleepy . It was tempting to do some shopping . In 80 % of my time , I do what I 'm obligated to do . Unnecessary expenses mean low efficiency , and that 's what I dislike . However , I can only explain it in Japanese and Korean . One more thing , February second is the Ezaki - san 's birthday . When his son was sick , he had his son eat oyster serum as an attempt to make him feel better . ( Because his son 's disease was epidemic , and the doctor gave him up . ) Miraculously , his son escaped from death . After that , he wanted to have more children eat oyster serum / syrup . As I did n't focus during the listening part , I do n't think I will get good score . Recently , after I had got home , almost everything I did was in the chair . I know exercise keeps not only my body sharp , but also my mind . Hello , I found today this site , I decided help other people learn polish language and I need help too with english language I had studied English to enter college but my English is poor Today is a beautiful day . Rainy season The rainy season started in Tokyo this Monday . ( Sounds better ) The rainy season is very filthy , but we need it so we can get enough water this season . I will wash it until noon . My teacher is Filipino . I want to make progress in my english study ( study ) . We would like to hand our property of children 's songs down to the next generation . I think they are more attractive than Tokyo . This year I want to be able to speak English very well . Thanks for reading ! I hope you have a great day ! ! As there are two more rings on it for the index finger and middle finger . self introduction What did you do for Christmas ? By the way , yesterday , I bake and eat it with soy sauce or cheese . A good employee should have this skill and also be able to communicate well with his co - workers . I started Lang - 8 today . Sakura is beginning to bloom near my home . Anyway we enjoyed the beautifully displayed dishes and the scenery of the countryside . He might be strarved ! The A - course ( we ordered ) Grilled octopus with herbs . Caprese scallop and tomato salad . Three kinds of currie . When one reaches old age , he / she tends to be more conservative and reluctant to accept new ideas and innovations . As a conclusion , one 's retirement age should be decided according to one 's own conditions and willingness . I suggested some Japanese books for beginners like him . He was walking to the opposite direction ! His head was facing me ! The main reason for their success is having good results from lots of international competitions . So I am going to be a girl who has a boyfriend especially a bf from America . In addition to this , there were many people standing by either side of the road selling foods , drinks , ice creams and so on . I always say that I want to keep it and lose weight but I hardly achieve my goals . Do you have any good ideas to resist the food offered in front of you ? The Incursion of a Typhoon Yesterday afternoon , our teacher said to take a day off the next day . Of course my mother was really angry . ( / _ ; ) I think I have a pretty okay command of the English language , but sometimes I get confused about prepositions , grammar etc . Watch is uncountable , I was up all last night playing on my computer , talking to my friends on Skype , watching Friends , and cleaning up my room . So , I 'm very satisfied with them . Now I do n't have to carry with me so much cash . Many people say bad things about my country , but Colombia is a beautiful place to live . The people here are so kind and happy , and everybody works hard to make Colombia a better place . Currently , I feel hungry even though I have just had breakfast a few minutes ago . especially new recruits who recently graduated from college . And then , I found a favourite musician called `` Zainichi Funk `` I 'm looking forward to it ! ! ! I 'm definitely not an `` otaku `` ( anime nerd ) because I 'm fairly mature , However , I have to review and prepare for the next week . I want to talk in English more . I made `` macaroons `` . I gon na try again near future . I have to take him to and from the school . Running with my friends I used to subscribe to the Financial Times via Kindle , but after it got broken , I cancelled my subscription . In the nursery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . But I never worry my English exam hehe As you can see , it has steps which are made from glass Today ( ? ? ? ) National Foundation Day in Japan . They ( was ) training ( ? ? ? ) the waves of the sea . World Cup is an exciting festival . I recorded while I was waiting my train to work and getting on it . There 's no foods , no erectricity , no gasorine . . . Honestly I tried to make my avatar based on the picture , but I did n't know if I could make it . Now , I come here because my English is not fluent [ proficient ] . Actually , my daily life does not necessarily use English but my father lives in California so I want to grow my communication skills . Anyone please give me help and be my friend . It is for my illustration project and the other one is like a Japanese `` manga `` for business on a web gallery . Anyways , this is a first note to say hi to everyone and nice to see you . K - 1 fight show is my favourite . Hello friends . I finished Public Administrator . . I took a lot of pictures with my friends . . I do n't have anyone to give me flowers today . . I 'm a korean learning English . Zamzam : Holy Water Some Muslims even cry over Zamzam when they return to their countries . But I could n't do it because on the road I lost my way . I have heard that this way , the supplements are absorbed well . ( ? ) Because I sit a lot in front of my desk , I would go out for lunch with colleagues whenever I could . I do n't eat a lot because I am supposedly on a diet , although the diet seems never really to succeed . It seems to be a cultural difference . Bankruptcy by eathquake I met one of my friends after a long time . I was suprised because she got a new job this January . Proud to be Spanish In the last 10 years all the political parties who had had government responsibilities in the different administrations , have accumulated enormous amounts of power . In this political situation with the current horrible economic and social scene , people have said stop . Unfortunately most of the media , supported by the political machinery , have been uninformative about the little revolution . It seems that this social movement has been imitated all over the world , and that is what makes me feel good and proud to be Spanish . First , I felt uncomfortable having it because I 've never had such bright color things before . And , I was really disappointed with the climate . I regretted that I did n't realize it before . I had an awesome trip with my famliy when I was studying in Shanghai . . After that we visited Japan Pavillion . It is the largest country pavillion and is also so beautiful . We also visited some other country pavillions such as the United States , Spain , Netherlands and South Africa . Although I believe my knowledge of English is already advanced , I am lacking usage and lots of tiny specific words from every day life . If you need any help in learning German , do n't hesitate for ask me for advice . If you meet people that you have bad memories with , and you have not kept in touch for years . My favorite English words are `` lovely `` and `` brilliant `` because I like `` L `` sound . I also would like to talk to anyone overseas on skype . When I was an elementary school student , my dream was to be a professional football player . When I was a college student , I majored in Danish language and society . Besides , Danish people do n't open their mouths wide so it is really hard to tell the difference ( between vowels ) . Today is my birthday . Finallymy father arrived at the hospital and he was able to be present at my birth . Today I will look for an apartment for my friends and myself . It 's my first time living with friends . So I would really appreciate if you would correct English composition below . The manuscript is so long that I divided it into two pieces . The non - directive play therapy and eight principles which Axline V . Axline 's client children often ask her not to change the area they 've played in . I feel DIBS developed his ego through thinking and persuading himself . Later , I went to a French restaurant for dinner . I also had some rough times in my childhood . I 've found a software program that helps English learners to improve their English pronunciation . My tongue is structured differently , so the pronunciation of my mother tongue is bad , too . I need to practice my pronunciation more than others because if I do n't practice , then many people may not understand my words / me . Yesterday , My parents and I went to see the baseball game in Munhak stadium . So My parents and I went to the traditional pub to drink some traditional liquor . Although Samsung lost the game , I had happy time with my parents . I will take a TOEIC examination on January 302011 . My friend advised me to first study t English grammar I am lucky to meet you at the very beginning of the new semester I did n't forget about the white paudry sands , palm trees , good wind , beautiful light and the emerald green sea . He said : `` MoM I 'm hungry . `` My mother said , `` There is nothing to eat but some instant noodles . `` ( moved below ) The speed of the Internet here is slow and is causing me to have complete nervous breakdown . During the movie , the memory of Italy trip keep popping up in my head . The Liar Game is a TV series of Japan , which was adapted from a comic book . reasons , they join the Liar Game for the second time . It 's too ache to concentrate on anything . A Chinese ole says `` Toothache is not illness , but it will take your live . `` Now I can understand it well through it . It ` s really little shoe . However , I passed the test and I got my driver 's licence two hours later . It 's so exciting ! ! You can go to the famous Shida night market , then ask anyone for the restaurant . These include Mexican food ( burrito , fajita , quesadilla , taco ) , every kind of burger ( pita , focaccia , burger , wrap ) , different flavors of omelets , salads , some special breakfasts ( like English breakfast and mexican rancheros ) , pasta . Our most recommended is the chef meal , such as meat loaf , beef burgundy , German sausages and chops , parmesan pasta , eib eye steak and things like that . The flavor was unfamiliar to me . There is also a specialty here , on the second floor , our boss provides and welcomes anyone to put their art work on the wall display . I think that many HEROs are strong and have special power until now . Otherwise her eyes will itch , and have a stuffy nose . I want to enroll into a foreign university as a master student . I can speak conversational English , but I ca n't use English for academic purpose . So my listening skill is getting worse ! It 's my pleasure to join this website / site for learning English . I was even more shocked when I knew that Miyagi prefecture sustained more damage than us ! Although I did not think that I had time to enjoy it in this journey , I had a swim suit in my suitcase . For example , reading , speaking , writing , grammer , etc . . . . As soon as I looked at her pale face , I called my workmate to ask how to deal with our emergency . Even the chance of talking with restaurant clerks has been getting smaller recently ; they have vending machines everywhere which sell food tickets ! I started to watch this TV series on DVD last year . I think Samantha is very cool because she is strong despite her cancer . and I heard about skyphone . To use skyphone , I need a camera and microphone , ect . We like to relax in hot springs . Then I want to go to an open air bath . But I wonder if foreigners will know about an open air bath . Which is better for foreigners , an open air bath or an outdoor bath ? But the other day I read a grammar book . And I went to school directly . Yesterday , on my way home I ran into Cindy who is the wife of the marketing manager at our company . One of the big reasons why I 'm into it is this series is based on the daily life in Manhattan . It 's a good way to improve my English . I should prepare some snow equipment such as a snow shovel as soon as possible . I 'm studying `` Computer Systems `` . It 's preferable that its thick and made by chemical textiles . I was worried about leaving Japan , but there were no worries or problems in Canada ! ! Unfortunately , the website is written only in Japanese and the venue is Aomori city , The Japanese temperature gradually rose every year . There were few comfortable spring days . I like comfortable autumn days . I have to change something , but I have no idea what I regard this activity as a part of liberal - arts . But I want more opportunity to communicate with English people . Because of watching drama or film without English subtitle and comunicating with our business partners without interpreter and living foreign country someday . I edited my profile . At the beginning I did n't like Tony , he would always bully Sid and behave unfaithfully toward Michelle , I do n't understand him . At the end of the first season , Tony had an accident when taking a phone call with Machelle , he was apologizing . . . I realized there are too many lights in Japan . Also there are many 24 - hour convenience stores open here in Tokyo . I do n't think 24 - hour stores are necessary . My friend said that `` avocado tastes like tuna if you It 's wonderful ( - _ - ; ) ! ( It 's called `` Doyou ushinohi `` ) However , I 'm lacking the money to buy it . It is a little bit expensive for me . . . . Yesterday I bought a wonderful black dress which I 'm going to wear on the wedding of my cousin . I ca n't understand why , because it 's really beautiful and , moreover , I 'm not a bride , just a guest ) ) ) ) my department is finance but I 'm a beginner so I read bookkeeping at first . In China , students choose their majors before being admitted to universities . Before the college entrance examination , I read a lot about OR researched electricity and its developing trend in a newspaper . She told me she used to be a princess in China , but now she does everything by herself Today I teach the children reading and writing . I know I will use this experiment in my future work ! ! My teacher is male and is from america . [ Because public bathrooms are dirty . Really ? The first day I am now working as a public servant in Shinjuku . Everyday I 'm going to practicewriting , listening , andreading , So , I went to the location of the fire as soon as possible in my car , around five o ' clock . Study methods that work well for oneself is easily found . I speak English and I 'm also interested in Japanese and Chinese . My girls are playing a lot with their cousins . 5 minutes is 300 seconds . It has passed 50 seconds already ! ! I travelled to Thailand last month . He said , `` This is your first visit to Thailand , right ? Then you must to drink to Thai Yogurt . `` I was very surprised by the SIZE . Yet , despite the fact that I have plenty of days in my hands , I do n't have any plans to do anything except for a short day trip to my grandparents ' home in Yamagata prefecture . By the way , I 'm going to Europe on the 26th . The day before yesterday , my company announced it 's first quarter financial results . As a result , my company stock rate decreased 10 % yesterday . At the same time they lose themselves in the internet and the computer games . His performancewas very good . He performed well . I like his performance . My stomach is getting bigger and bigger . Incheon city holds a big international rock festival I felt very nervous and could n't say much about the PR expression in English . And I know they are disgusted by that . By the way , if English speakers speak Asian languages in Asian countries , Asians are interested in them . Anyway , speaking English is in great demand and speaking Asian languages is in small demand . Why I selected advertising is still a mystery for me . Maybe some people think commercials are a bad thing , because they interrupt people 's favorite TV programs . So I ca n't control it . Oh , I am sorry , my dog . 3 , Try to speak English more actively . see you again . Tempura was tasty , but I had a hard time talking with my colleague in English . I also study English by playing video games in English . I do n't have much self esteem . School was cancelled because there was a typhoon . Forecast of this week In today 's class , I was confused with the usages of adjectives . `` You kidding , hon . `` A middle - aged man said . This is my second English diary . ( Or to someone who migh look at it and correct it . English was a main subject at that time , but the importance of English is growing more and more each day . English education in elementary school started in 1997 in Korea . ( from 3rd grade ) Korean Goverment has an English education policy to be extended to 1st grade someday . I have 14 - years of experience teaching elementary school here in Korea , and like every other teacher , I am feeling the stress of English . After entering university , I started to study Chinese . I really hope that I get better at English and make a lot of friends through Lang - 8 . Well , when you were a little toddler , you probaby watched some cartoons on the telly . I will begin my work from tomorrow on . I also bring magazines into the bathroom such as fashion or photo magazines with beautiful pictures . Here is the reason . He said : `` Time is flying by , this time last year we were still playing together . `` He also asked me to visit his hometown when I was free . I want to work hard to offer better service to the guests . But I should n't really be , because I have an English presentation I have to write , and tomorrow I have a piano lesson . She is very beautiful with the clothes . If you have a chance to travel in Zhengjiang , I recommend you should takea trip trip toHangzhou . Fortunately , there are two drivers including me , otherwise it would take longer for me to drive back home . This rescue was a miracle . By the way , I 've been interested in slang because I take a slang idioms workshop on Fridays . Do you use slang in your daily life ? And I caught a cold . Or , I wear my favorite earrings or necklace ( expensive ones ! ! ) . as a beginner , I think acoustic guitar is the best choice . one , it 's delicious . Next morning , luckliy I felt so much better . I know it 's been long time no journal , but I finally came back to my home town from two weeks of vacationing in Hawaii . It was the best vacation ever , I think . My Japanese friend took me to play soccer and hung out , and my best friend took me to Byodoin temple in Hawaii . It was so beautiful and the area in which the temple is reminded me of Japan like Kyoto , you know . I have taught myself english for a long time . Our memories in Austria ( Australia ? ) are especially awesome ! ! ! I 'm confident I will pass the IELTS because you have taught me Aussie English , so I 'll study harder to speak English well thanks to you . There is n't any garden , but there is a big balcony . It 's beyond my expectation that I wrote a paper here which is responded to so quickly . It is made of soy . When it is sold to customers , it would have sugar water poured on it , But I eventually decided to go as the plan was to visit Prague and I had never been abroad before . Once we arrived in Prague , we started sight - seeing . Pity that we could n't watch more of it . I felt a bit drowsy , so on the way back home I fell asleep and slept like a baby . I do n't know why I fall asleep immdiately and for a very long time recently . If you have a facebook account , please connect with me ! It is so loud and noisy to me . However , I encountered a difficulty in my English writing . Due to above these reasons , I decided to try to improve my English writing , by writing diaries every day . My favorite game is `` Monster Hunter `` . And , I enjoyed chatting with my friends in my college . I was suprised ! ! Of course , there are a few positive aspects about telly . I have nothing against educational programmes which have a positive effect on our development and I sometimes watch them with my little sister . I heard it for a long time . One is the way you learn in school , by reading books , the correct way , but not used daily . He was a very nice person before , but he has changed . - He could not make himself heard in a crowded street . I think that I still have good pronunciation and more delicate way of expression in Chinese . some habits seriously illegal : violence in the family , drug abuse . . . etc . I was very surprised that there were so many people to see the ceremony in Washington . For example , International Mime Festival , Puppet Festival , International Yesterday I flew to Hokkaido for a business trip and came back home today . I felt flight attendants are very tactful . ? ? However , I 'm not afraid of aftershocks , Instead I am scared of the earthquake alarms . As we sadly partake in the last moments of pleasure from our summer vacations I 'm unhappily reminded of the dreadful schoolwork that lies ahead . However , I think I should n't sleep now because I have only written one diary entry in 5 months . Beer , MACHA ( bitter green tea ) and soy sauce were real Japanese ! ! If I keep smiling , happiness will surely happen to me ! ! What are the supporters like ? How is the pitch ? How is stadium looking ? When the check was received by my boss , It was corrected a lot . If there are any problems with my pronunciation in this song , As such , I feel so stressed out after school . After studying about 30 minutes I start to feel sleepy . so effectively ! So if you find anything wrong with my sentences , please correct it or point it out . Today , I watched an Icecream car ( ice cream van ) near the my house . ( Totonto Lake shore west ) You can make a Paper lounge to be longest as a 16 - seater lounge or shortest as a 1 - seater sofa . I received an e - mail from her that told me about shis scheal . The teacher was going to camp with his girlfriend so I felt jealous . I took an evening class by myself . I played with a child and I used eat lunch at a place where there are children . Shipping method He checked the attendance sheet and realized I made a mistake ! Audrey was very cute & charming Today , I have 3 classes which are sports business , academic writing and a seminar about world heritage sites . I talked a lot with my new friend who is half Japanese and half French . Today , I went Downtown with my friend and I took many pictures . I enjoyed myself but , I experienced some strange things . By the way , I also went Chinatown and it was awful because many people are thin , smoke and have tattoos . However , I wonder why a poor place was made near the center of Downtown and why the poor people are still poor ? We should donate more money and support them , bacause they have the right to live safely and peacefully . I did n't know much about it , so I asked the staff which is recommended for a beginner . By the way , I work for the company in Tokyo and our headquarters is in the United states . A Campaign Speech I 'm jiaru , I 'm from class 4 . I believe I can do it well if I am elected . I was fully satisfied with the swamp and marsh of oze . this was my favourite part of the day ! She is from Austria and her husband is from China . I was surprised she knew Chinese characters . Today , I rented some CDs The house had a large garden and a garage while our apartment does n't . My husband did n't want to because changing the tires by himself was n't easy . Around 5 o ' clock his mother came back home from work . She had picked up some vegetables - a Chinese cabbage , spinaches , and long green onions at a small farm and gave them to us . The pot had a partition to enjoy two different types of soup . We were able to eat any meat for about one thousand yen at the restaurant so we ate a lot of vegetables , beef , pork , and chicken . I 'm going to cancel my purchase of this item , but I want to buy that new cleanser . I 'm trying to buy this cleanser and if I can get your items I will re - order them ! I picked up my son at the station yesterday because he came home for the first time in a month . While I was watching Australian TV , I felt like a child . Weather is r , she took me to the store , and I purchased an electric heater . a lot of delicious food . ^ ^ But I am sleepy now . . . because I did n't know how to use it well : ( but I think this is not good thing . recently I 'm hunting for a job . in Japan , university students must get their job soon after graduation , and keep working all of their life : ( I think this is a bad system . if I ca n't get a job , I would go to photographer school and become a photographer : P Grammatically is it a conjunction ? My foreign friend told me about how to prevent the cold . But my study habit is if I do n't know the words means I always use . dictionary . What is the most important is to burn paper money , we think our ancestor will receive it and can use it in heaven . That will be thought as very pitiful . For example : `` So to speak `` , `` on account of `` , `` because `` , `` thus `` . . . expressions like that . How can you get friends in this SMS ? + Short Message Service + Of course , I have a Mixi account , the largest SMS in Japan . So , I decided to study English harder this year . and thank you so much for leaving your nice comments and corrections for my previous entry ! ! I was very happy to make some friends and I want to make more now . I had to write it until the 22ndof last Desember , so I am filled with a feeling of freedom , ^ ^ but I will have to do more one thing to do for my graduation , which is an oral assessment . Which is maybe about 15 minutes . Harry Potter and the Deathly Hallows Today , I went shopping with my daughter . I want to visit Tokyo of course : Harajuku , Shibuya , Roppongi etc . Last week , my friend went to NY to study English . I bought lessons on etutor . Preparing for traveling I want to enjoy traveling there . I have to ( must ) remember to do it on thiswednesday . I just read a sentence in a dictionary . So local hospitals are inviting medical students to their hospitals and asking medical students to come to their hospitals and look around inside . For hospitals , they can use them as labor force , accept money from government and get compensation by being selecting . So I went there and looked around with my friend . I will leave after watching the Japan team WBC game . I have a plan to look around there from 24 to 27 . Afterwards , I might go to Okayama ( prefecture ) to look around on the 29th . Well , I feel like punching someone ` s face right nowlol I have been frustrated all day coz of someone I dislike , in fact I hate them . If my wish could come true , I would wish to let someone kill them and vanish in front of me . . . lol now probably u can see how frustrated I am ? however , I forgot to save them before shutting the excel . . . . I totally felt depression and dizzylol therefore , I was fucking something stupid around till I calm down my frustaration . so I wana ask u about ur solution when u get frustration or something bad happens to you . How can u get that out of ur mind ? Many people have given me messages although I 've just started taking part in this SNS . Because of the typhoon , the train that I usually use for going to my company is cancelled now . Although it 's bad news , I still had a memorabal Sunday . I 've now written eleven entries on Lang - 8 . He asked me , `` what are you going to do tonight ? `` So at first I introduced myself , but then I could n't remember their name at all once ! ! First , I could come back home earlier than usual from the restaurant that I work at because of heavy snow . Yippie ! ! I always get up at 4 o ' clock every morning . Only one student in my class finally came to school . But almost all Japanese are not good at English , including me . We can ' t play soccer like Lionel Messi , who is a super soccer player , only by watching his games and studying the rules of soccer . So , I think I have to try more ( or harder ) although it is often a bit hard ( or difficult ) . I am looking forward to meet you and your family . I 'm / am really surprised because I think she will forget later what I teach but she wo n't ( will not ) . I ca n't imagine how much work I have to do tomorrow because I could n't finished it on Saturday . I do n't like rainy days . I hope it will be sunny on tuesday of next week because the sports festival will be held . on Tuesday . I went to London , Paris , Frankfurt and Leipzig . they were very beautiful . they often slept in the day and catch mice at night . we buy fishes for them and often played with them . so we like them very much . at last , the other cat was stolen by other people . mom said that the strangers might haveeaten it . Totally I spent 300 $ and became a beggar . I am a vet . The following day after the show , my friend who came to the two - day festival mailed me , a company which sponsors artists invited her to see Buckcherry , one of the bands in that festival , at their own show in Hiroshima . That fact makes me hesitate when I am going to meet someone . For whomever is reading this , if & nbsp ; I have mistake in grammar , PLEASE check and correct it . There were lines of people at the place pretty far from the city . That is more serious for people live in Tokyo . He always puts his face near my face and his whiskers touch my cheek . I tickle his whiskers ! I studied English , then prepared to go out . We went into a restaurant and ordered our meal . My university started classes on the 27th . I ca n't decide which classes I want to take . This museum and this tour taught me that communist countries existed . I do n't know how to express my appreciation Wish things will get better tomorrow after some negotiation ! Please ! If you do n't know sumo , check it out . Yesterday , I had an interview with an associate consultant company . What should I do to be more energetic ? My heart sank from the bad result in the postgraduate entrance exam but I must force a smile and carry on with more courage . One class is Principles of Language Learning and Teaching , and the other is English Literature . In the lesson , we read Macbeth , a / the famous play written by Shakespeare . At the time of the first lesson , I thought I would n't be able to keep up with the class . I do n't have a good head for business . T . , who is a professional Japanese illustrator . I was very busy with her own job , so I needed to translate it for her to reduce her burden . She saw it and read the translated message , and then she replied to Miss K that she would be able to draw some illustrations in black and white , but she would not be able to make them in full Manga style . It is too much work for her , but if Miss K accepts her suggestion , she will draw it on a voluntary basis . she thought that it would be a good opportunity for her to make children 's book and co - operate with British people . I have another story and I have n't made any illustrations for it yet . `` I and myself do not have a good head for business Because , if I watch it , I ca n't sleep . We were satisfied with our shopping very much because their fabric is always high quality . She was fastened to the bed , her face was sweaty and her eyes wide open , because she was afraid . I have n't written diaries for a long time . . . Please correct my diaries ! I am just used to words and saying really small things . I think , I do n't need to translate Korean into English but to think in English directly . I try to sell them on Japanese auction sites . I keep buying them and it is like my side business . Now I 'm really disappointed that my American friend left me . She came here on the same day which I came back . So I took her , went around our school and some famous place of Beijing in these 3 days . She refused to eat any Chinese food . But it did n't work , because she found some friends who came from the U . Our life style , I mean , Asians have already westernized so much . After the Olympic games , the life of Beijing completely changed . We have cars , PCs , hamburgers , everything same as U . I swept and polished the floor of the kitchen . But they will only show it on WOWOW which is pay TV . I was excited when I checked the morning paper , because my friend was in it . even more than last year . Very interesting but CRT moniters were still being used . Somebody said the Cloud is the third industrial revolution . When the Imam said , `` Allah is the greatest , `` all my family started to eat the breakfast with pieces of dates . Then I said , `` Mum , Dad , my brothers and sisters , this is an Indian rice and I made it for you . = ) `` My hobbies are playing video games , surfing the internet , listening Although it might have bothered others , I ca n't help but to buy and set off fireworks . I came across this website in a magazine called AERA ENGLISH ( a Japanese publication ) recently and thought ' wow , this is such a good match for what I want to do now with my English ! ! ' . I enjoyed doing netsurfing . I steeled myself to start running Have you ever tried Bouldering ? I tried Boudering last week . I took looking for a Bouldering lightly . Anyway , today 's topic is the death penalty , which is very controversial around the world . They are seminar , writing , special topics ( I can choose a class ) and presentation . Although one has a strong desire to be successful or dreaming to be a famous person , without knowledge of manage time , he ca n't achieve his goals . So I should be more careful in managing my limited time which can lead me to success . It is proud that I can make full use of my leisure time skillfully . I do n't like rain , because it 's not possible to take a walk . I wish the rainy season did n't exist . I 'm interested in demi pair ( ? ? ) and in an internship program in Australia or New Zealand , so she explained those in detail . Here , I just stay at home . So I could get one digital audio book instead of paying a monthly fee . I should have bought a much more expensive book . However , he was told that everyone had to leave the building , so he let us leave . I just recognized , If I want good English I have to have more friends to contact . I want to have lots of foreign friends . I love British stuff and want to stay in the countryside of England someday . If any British people see my diary , please give me advice . I would say Sushi can be divided into 4 parts . The second bottom layer is called the `` popular class `` . The second highest layer is called the `` advanced class `` . When I was studying German there , a man came over and talked to me . So he left my house with `` Siddhartha `` in his hands . Then I watched the Chelsea vs Inter game on TV . I did n't like Inter , so I wanted Chelsea to win . Kaera Kimura married yesterday . For example , last summer there was a so called ' sandy town ' in the middle of our square where our citizens could see world - famous sights such as Eiffel Tower , Egyptian Pyramids , Colosseum , Parthenon etc . I thought I would live like this forever but lately my thought has changed . I speak some English and try to learn Italian , but I 'm only a beginniner . I enjoyed watching her dynamic performance on Youtube . That is , the Star Spangled Banner by Jennifer Hudson at the Democratic Party National Convention . I felt tired and lethargic . Flowers are blooming now , and I 'm in good spirits = ) I hope to have a rest in the forest this weekend , and my friends have just told me the weather will be good . I hope they are right . . . = ) ) ) ) Therefore my friends on Lang - 8 are increasing everyday . ' Chideji ' means Chijou degital . Today is a traditional festival in China : the Mid - autumn Festival , family members will try their best to get together and enjoy the happy and warm atmosphere , a very good and important day for every Chinese . I am living in the same way everyday , doing all of the same things , studying all different papers . Everyday I compete with my limitations . I always feel like I do n't have the ability to comfront society and work . A beautiful future is waiting for you ! ! He quickly hid behind the buildings . And , I checked the history of Slovenia on the internet and found out that numerous people were killed by false charge during and after World War . In Japan , almost all games are shown at midnight , so I have a lack of sleep . I hopefully think I could finish by tomorrow night . He even forced us to apologize ! Cherry Blossoms Another friend is taking maternity leave . She is looking for an interesting job , and applying to many companies . I decided to try write the diary in english from today . I watched a movie tonight , actually it was not as good as I had expected . I made tuna and potherb mustard with tomato sauce . I hope some foreign friends can give me some advice on how to study English ! Thank you ! And I 'm at the Starbucks coffee near the beauty salon . These days , I really want to make friends with people from other countries . By meeting them and communicating with them , I want to learn their cultures , languages , and unique perspectives . Shigyo - shiki is an opening ceremony for the beginning of the school year or semester in Japan . It is usually held in the first week of April . Typically , students are gathered in the school gym or the playground , then the ceremony begins with a speech from their principal . A girl who spoke to me said , I might have some difficulties fulfilling this target ; too much work , not enough vocabulary , and so on . It 's been a long time since I 've written a diary . I 'm not good at Korean , but we could use English and Japanese in Seoul a little . I felt that Seoul has great population , and that the economy is prosperous / prospering . Actually Younger brother came back home before 5 days already but he returned to his home ground the day before yesterday because his vacation 's over . I was so surprised and embarrassed . I usually eati , t fresh fruit juice first . . . . So It is lnteresting . I went to a hospital , and all four doctors who saw my throat said My favorite TV show will be on tonight . And I have been working as a designer for accessories , bags , shoes , necklaces and so on in Kobe for 4 years . Oops , I 've ran from my main point . Anyway , I want to learn English , and make friends from foreign country . So please send me a / the letter and correct my diary . because I was very tired . I 'm especially very sorry that we could n't go to Tiananmen Square . I want to learn English , so I started Lang - 8 yesterday . The Thai government gives money to students to study for free for fifteen years . My nephews got money to buy stationery and student uniforms . After buying anything the guardian is supposed to return the receipt to the school to confirm that the money is being used for the student and not for other things . We have never had an offer from the government like this before . Usually parents pay for their children to study . I do n't know the amount that each grade receives but my nephew received around 560 baht for this term . I know abroad you study for free until university ? That is a really good government who supports you . Because it can introduce something fresh to our life , like changing your shirt colour for instance . In the past , I ostracized gays all along , because I thought that was unnatural and abnormal , but now I have changed my mind . I do n't know the exact reason - - maybe because I am more mature , or something else . I believe that true love can exist between two men or two women . the Highwest fashion , which actors wear often , is popular in Korea . All things considered , no carefree future exists for those of us who live in megalopolises unless we are prepared to put some effort into working together and involving government in the problem right now . I have many clothes because I like fashion . I took too many clothes to the flea market to be sold , but customers bought For example , nail polish , sunglasses , a watch . . . But today was n't a consultation day . Today I am very happy , because I have just made my first friend on Lang - 8 ! I 'm going to give a Farewell party tomorrow . I chose a Dopamine keychain ! Summer is finishing , and soon autumn will come . . . I dont wanna do , I have do it because I need a lot money if I want to travel . Every day I think about how it would be to live in london or new york ? ? ? this trip is to forget about everything that happens at my work . . After performing , she did an interview and started crying . Today I feel happy because my flat mate went back to his country ( Yeah ! ! ) For example , He alwasys smoked in the living room even though I told him that I 'm a nonsmoker and I 'd like him to smoke outside . Oh goodness ! It is such a comfortable place , and so beautiful ! So I 'm unlucky . We have a lot of onomatopoeia in Japanese . One food texture word , crispy is used for potato chips . I 'm too busy or I 'm too lazy Sometimes I cut these boring classes then went to the library because I just wanted to read some books , which I think is much more & nbsp ; interesting than my teacher 's lectures . It had survived some falls and I accidentally sat on it once . ^ ^ ' ' I 'm so sloppy when it comes to handling my stuff . ^ ^ ' ' So our teacher divided us into many teams so we could talk to the foreign friends in a small group . Tomorrow I 'm going to take my children to a soccer lesson . From todays news . In Japan , many people measure radiation recently . When it comes to crimes , I think mass media plays an important role in informing citizens of what 's going on at a nationwide level . Right now I am practicing it , but it 's so hard to pronounce well . Would you advise me on how to improve my English ability ? However , they were surprised . Koyasan is very famous for a type of Buddhism , called SHINGONSYU . I invited my foreign friends to my town . My dream is run a youth hostel in my town and I hope that many foreign people visit my home town . because I think she 's a nice girl and a good match for me . It includes many incorrect sentences that I am writing . This month the examinations are over , so right now I 'm happy . I 'm going to celebrate with my classmates , but it 's raining with a possibility of snow in the east city , near the Andes mountains . As you can see , I have a very hard time using English . & nbsp ; This following dialogue is from the sitcom Friends that I 'm watching . I just got the test result this Friday . I was waiting for my result on the web site with my mom and when the word `` Pass `` appeared on the screen I almost shouted with excitement . But I 'm trying to focus on my study and work . My hometown is much noisier than Calgary . My hometown is busier than Calgary . Maybe my hometown is the noisiest in the world . My hometown has more a bigger population than Cagary . My hometown is noisier than Calgary . My hometown is brighter than Calgary at night . My hometown has more traffic jams than Calgary . My hometown has more public transport than Calgary . My hometown has the best public transport in the world . My hometown is younger than Calgary . My hometown has more moutains than Calgary . I strongly suggest not going to the English school after the dentist . . . I was concerned about such an extremely low temperature and yet I still let them do a lot of preparation excercises . And when she wore glasses for far - sightedness , she could n't see things at a distance ! How to define the distance between far and near ? It was a challange if my mom wanted to watch TV and write somthing down at the same time . People always say : ' The eyes are the window to the soul ' . In 2007 , I went to America for 2 weeks by myself . I was surprised at the sashimi of colorful tropical fish and giant clam in their beautiful shells . By 2012 , I 'll have finished school . I have n't gone anywhere because of increadibly hot weather . That is why I will write this dairy in both languages ! Actually I planned a lot of activities during this holiday , but I could not do them at all ! ! But during World War II , the castle was burnt down on May 14 , 1945 . I try to keep writing in my diary for 3 days starting from today . Hi , this is An , and it 's my first time writing in English and Spanish . It 's sxxk ( ? ) to show my poor English and Spanish in a public space , but it is very very important now . I have to study and face it , so get on An , everything will be good , haha . . . Now I must fight with my laziness and try to write more , because really I ( I really ) want to become fluent in English . Although I spent my birthday in a foreign country , My Korean friends congratulated me on the Internet . I was touched and it was absolutely brilliant . Maybe I do n't need a boyfriend , I hate marriages . My father and my mother do n't like each other , they affect my opinion about marriage . and after 6 pm people went around the street carrying a torch on their shoulder . I hope my face does n't become swollen . I will change them to a mixed ceramic and plastic cap later . So Access is a DataBase software . I think each company has an exclusive database software . If there is a reason to use it , the exclusive software will be expensive . Looking forward to your reply . The gym is not crowded and has enough machines for many kinds of exercises . I was almost cried some times and I was moved so much although today was my second time to see it . After the show I went to back of the theater and I could meet some cast . I could get an autograph from MARK , Benny and Mimi ! ! When I said to MARK `` I 'm your big fan ! `` he only nodded me saying nothing . . . . I could have his autograph on DVD ! ! My sister is in high school and my brother is in middle school . Although I was cold , I said : `` No problem ! `` he finished writing a letter to his friend , it was 1 a . m . We decided to watch another movie called `` Source code `` . It was entertaining , but there were too many mistakes about the informations technology . Next time we will book in advance on the internet . My favorite Podcastnamed Morning Ireland released a podcast so I will keep it on my iPod . I tried many ways to relax : listen classical music ; talk with friends ; a cup of hot milk . . . . . . . I usually wake up around 6 : 00am . My friend in NZ introduced me to these funny comedians ! I do n't have any foreign friends near here , and I do n't have enough money to go to English school . It is designed to keep the right temperature by the roof made of warm felt and the wrapping cloth easily flips partly open . This technology which can provide electricity anywhere is very good for their lifestyle moving through the vast steppe . I know it 's a little arrogant to contribute consecutive entries and beg such a favor . My company recently expressed that they want employees to study English , to be successful First , our president sends an English message to every employee Some of my colleagues have already worked overseas in China , India , America . . . Yesterday and today I 've been to Toyohashi , Aichi prefecture to attendattending anin - house conference , called Research Policy Retreat . I stepped on a cockroach accidentally ! ! ! ! ! Moreover , according to a book , more and more companies tend to value their abilities or personalities over their careers . Therefore , salaries should be paid for the results of daily work such as thier perfomance and the benefit they have brought to their workplaces . One thing that I think really interesting is that each person has a different perception about the temperature by each hometown . By the way , this year 's summer is crazy ! ! A few days ago , the highest temperature in my room was 36 . 5 degrees ! Instantly , I doubted my thermometer . I always thought this sport would be too tiring for me . But , while playing basketball I was so excited , after all . Now , I 'll keep playng ! Nice to meet you . It would be a fantastic school . . . . Not outside , no stories to talk about with my friends . Hello , my wonderful friends . When I do n't go outside my house , By the way , I am feeling muscular pain in two days after I got exercise . Friday is called ' HANAKIN ' in Japanese . So residents are required to help each other and participate in committees . There are many committees like the Representative Committee , Bath Committee and Welfare Committee . Unfortunately , some members of the Network comittee graduated in the last month . But we , Japanese , use Chinese letters that have their own pronunciation and meanings when we write and read Japanese . This is my first time to write a diary online in English . The sunlight shining in through my window acts as my alarm clock . However , I received an r E - mail from her saying , `` It was so fun to hear your broken funny English . `` I was very interested in that particular kind of memo , and so I researched it on the Internet . Please tell me the differences I like to talk about space , biomechanics , artificial intelligence , motorcycles ( Yamaha Vmax owner ) and something fun . I believe there is a very good company somewhere in Japan . I have n't eaten any sushi for a long time because there is n't any fresh fish in Frankfurt . I 've got two weeks left here in the UK which is kind of what I do n't want , however part of me is also wantingto go back to Japan . They are pretty cute and quiet . I always have eaten meat ( likesteak orhamburgers ) when I go abroad . Still do n't forget the academic paper ! Spain is a quite cosy country and the people there are kind and lovely . I was there for 2 weeks , met a lot of new people and made friends with them . I was tired , because I took over the job . I have to get up early tomorrow morning . I think he has deeply understands Japan and its culture . The practice time for playing the violin has to be maintained for a successful audition . Therefore , September is the last opportunity during which I will have time to study English . I know talking with foreigners is an important thing to do topractice Eng . He refused to take responsibility and exchange my computer saying , Despite everything that was happening , I am sure that I am still a lucky guy who was able to When we are together , we often have lots to talk about , and if we do n't , we just keep silent . As you know , Fukushima 's nuclear plant has been having trouble since March 11 , the day of earthquake . I wanted to have more conversations with him , but I could only trade FB id 's . I can understand writen English better than spoken . So make sure take your own precautions , such as washing hands , wearing a mask , not talking to people , and staying at home all day . hahaha I recommend it anyone who is studying second languages . I really appreciate your help . It 's open every Saturday . Foreigners speaking in Kansai - ben as a challenging topic please help me ! ! ! it 's urgent ! ! ( Punishment fits the crime ) I regretted it so much . I could write essey easily , so I 'll try to do my best ! Please correct my wrong sentence . we won an agricultural product this year ! I have never got gifts except at that festival . It was sunny and muggy this morning . It was only after a second that it started to rain heavily ! It is rather wise to follow what my mother says . But I still feel my English is not good enough . We talked about our research and how to be popular with girls . She said she was pregnant , but had a miscarriage . I assume it is because there are some reasons . I ordered an iced coffee , and sat in a comfortable sofa . I 'm interested in this subject . It 's also a good experience which can arouse my interest in language and at the same time help other people . I am willing to correct those articles in Traditional Chinese but Simplified Chinese seems to prevail . Although grammar and usages are the same , I am wondering if my corrections were well understood . ( grammar was misspelt ) Today I want to tell you , about my holidays . My holiday is so boring . Our forest is green and it grows diferent trees and flowers . Perhaps it 's because she is my baby , not someone else 's . Untill this time , from junior high school to now , I have had practice everyday at the club . Because , I want to speak English while on Business . I organize loudrock community website in Japan . I would be glad to organise a loudrock community together . A more beautiful Lang - 8 It has been a long time since the last time wrote entry on Lang - 8 . Please help me correct it . I 'm not familiar in programming . And there were lots of customers ! : D hehe Every customer seem to love our shop ! : ) What 's the difference between `` go mad `` & `` get mad `` ? Anyway , I had taken TOEFL several times to get 550 point to enrollinto college . It was huge boom to grow up in the Japanese economy andbecause of that , my parents believed I would apply for major companies such as panasonic , nintendo , and so on . I do not know how the Americans really feel , but as far as can tell from newspapers and TV programs , they are tired of being at war , and of suffering in a financial crunch and so on . As he mentioned in his inauguration speech , greatness is never a given . We do n't much go out to eat much , but sometimes it 's fun to go to restaurants that we have never been to before . I was not ready about today 's topic which is `` habits `` and `` fun story `` . I ca n't speak and explain what I 'm trying to say to other members in English . I always wait and listen to other member 's topic . One member enrolled about a week ago said that although there is many members but it 's too quiet . I decided even though I have mistake with my explanation and grammer . Yesterday I went to listen to a design speech with my classmate . But I felt satified after listening that speech . Sometimes , listening to a positive talking or happy perform may give us power to live in this complex generation . About 3 months ago , she told ( disclose is very formal ) me that she had some feelings for the guy , so I gave her some advice to test if the guy had any feelings for her . In addition , I do n't know why , but some Australians can speak Japanese . I still remember that . He said it was so complicated to explain . Seems I was ready to disbelive everybody and everything that might happen on this day . The animal symbols are representative of twelve specific years . We also call those twelve years `` one period `` . And if you were born in a year when the animal symbol was the rabbit , you are called a `` rabbit person `` . I am a chicken person . Diary start The first day I went to school I was very excited because everybody was very kind . My first friend is Iand J because I play math board games Then I do science but I do n't understand English so can someone cafeteria . His father is a Japanese Judo player . To be honest , I would like to buy CDs of my favorite bands but because I 'm broke now , I waited for the rental . Ever since I listened to their music , I have been fascinated with them . Though I bring my home to my PC for work , his e - mail was transferred to my mobile phone . healthy . I made up my mind to study English intensively until I become fluent . stupid . : ( I understand what he wrote , but I do n't find I am also interested in why they conquered South America . I am going to read the history of Latin America . Recently I finished a big exam and realized how important English is . Also , I want to be qualified for being an exchange student next year . My unforgettable winter vacation Although the vacation is over , the nice memories are still in my head . I feel so proud for the development . I upload some photos and share with my dear friends . If you want to know more about , please write to me . The original story comes from Heidis Lehr - und Wanderjahre . She graduated and has been a civil servant in another city , since then our love has been harder and harder to keep . As I guessed , she had read the SMSes saved in my cellphone and found out I was dating other girls and that I was contacting my ex - girlfriends and it had hurt her deeply . Below is more detailed information from Wikipedia I watched Oprah 's 2008 Stanford commencement address on that website . Fortunately , I got to know the lady who works at City Hall and helps Japanese who want to study at the base . She is soooo cooperative and helpful . Actually it costs a lot of money to pay the tuition and fees . But I also thought it might be a great chance to study in REAL AMERICA without leaving Japan . Everything hides in the deep forest I 've been envying those who are able to model as 3D models with beautiful curves . I believe that is a necessary skill for an industrial designer . I have n't log in to Lang - 8 for more than 3 months , because I spent more time on dancing in my spare time . I 'm really grateful to you People want their life to be special and want to live differently than others . More and more people seem unsatisfied and think `` my life should not be like this . `` Though , they usually do n't act to protest society 's flaws and do not improve their own situations . Team work is the most important thing in Japan and team performance is highly esteemed . If somebody was inferior to others or incompetent , I was blamed by the boss . I do n't write his advice here because I think everybody has a different situation . But they spent too much time in preparing and , when they wanted to sing a song after the introduction , the music teacher asked them to stop . My doctor said Japan and South korea have the highest asthma mortality rate . The karaoke industry should introduce official music videos into the karaoke machine . I 've just watched Fulham vs Newcastle play a live match at Fulham 's home stadium . Then I will decide my favourite team and register as a member . Also , I do n't know as much about English writing or English listening skills as other people do . Enjoy the nice summer weather ~ ~ Today I met the models the agency sent to our class , but I decided to not choose any of them . I know the fashion industry demands this extreme thinness , but I do n't think its beautiful . Mount Fuji is the highest mountain in Japan . I do n't know how to explain it ( or `` explain my feelings `` ) to my girlfriend . She said that people who only contact each other via messages and calls are silly . How to remember / memorize more words and use them rightly There is a woman with her hands all over her on this sleeve . I 'm going to visit Ecuador next week . Also , I 'm a little nervous about A ( H1N1 ) virus , because I have to take an airplane , which means they also use the airport which is one of the routes of infection annouced by most publc news media . Like human beings conqeured the Black plague in the past . You can see beautiful views in the picture . If there is interaction between characters , the system should consider all characters . So beautiful and cute . I and my husband and my son have heavy hay fever . These days I 've been thinking about dreams and visions of university students just like me . Living in this society , we face lots of problems and feel distressed when we have no success or any kind of accomplishment . We are too busy to remember that pure and noble reason why we are studying here and now . I sympathize with those young people who are melancholic and depressed in this society . or I am just a slave of this competitive society ? `` Whatever the situation is , I really want to find my true value and live authentically as myself ! Now , the Japanese government regulates imported rice by imposing high tariffs . I agree that the government should protect rice farmers from cheap imported rice because Japonica rice is definitely better than imported rice . Recently I have been feeling something strange . When I woke up and looked at the clock , I was surprised . Its script is very good and the designs of the * other * planets , aliens and vehicles are wonderful . But when I want to pick it up , I find it really difficult to balance these two languages - - - Japanese and English well . Sometimes I even ask myself whether I have the ability to acquire these two languages at the same time . It is so fun and I think it 's easy . And pronunciations are easy for Japanese , grammar is similar to English . For this porpose , I should study hard and work hard for travel expenses ! ! I lost the name of the person who sent me a friend request . If you see my diary , please send me a friend request again ! But I do n't think the following ones are correct , though the similar forms ( e ) and ( f ) are natural sounding . Although I did not believe in his existence until watching this , Superman exists in the world ! Thanks to him , I get to believe that there are a lot of things which are beyond our imagination in the world . I always think that relationships with people are difficult . I 'm going to the library this afternoon . Of course , not only books are there but it 's also a comfortable place to me . HattoriKid is one of my Lang - 8 friends . About the animation : Fullmetal Alchemist I watched a very popular animation program in Japan called `` Fullmetal Alchemist `` with my children . It includes the human 's karma ( desire to reunion with lost mother ) , the Seven Sins and the war generated from the worship etc . Especially , I ca n't get one woeful image out of my mind : it 's the image of the chimera animal made from a innocent girl and her big pet dog . I do n't think this is specific thing because this is just literally talking , not some sort of speech or presentation . That 's why I sometime hesitate to talk in a class , trying not to making mistakes and be humiliated , which I think is just lazy as well . I think this is a hilarious show where a bunch of guys and girls hang out together and have a life filled with comedy and other ridiculous things . As a man , he should compromise a bit . but he is so bad tempered and irritable that I ca n't bear it . Thank you very much . A large portion of new games are released on PSP or Nintendo DS . I remembered that I need to go to the supermarket to shop with friends . We will eat steamboat tonight at home and will play cards and mahjong . He is a very famous korean actor . He is good performer , especially to expresss setive emotion . the play is so famous in Korea . My friends are not interested in plays T ^ T I did n't know what trust is . I guarantee that nobody will find these bodies unless the landform is changed extensively by something . Finally , I established my objective to major in history . I will be going to canada to study for one year in august . I do n't know why I had to see such dreams , but when I was dreaming , I had many things to do , more importantly a deadline was threatened . I was exhausted because I moved the office 's things all day long . That 's a refreshing feeling for me though . I just finished taking shower . I met such lovely friends from all over the world who I would n't have met if I had n't come here . I was really really grateful that I met them . . He has to find another job in this desperate moment . My wife took child - care leave , but she went back to her job in February , so we have had less time to take care of the children than before . Now I have complete some of my tasks , I wish I could write in my journal and proof read my Lang8 friend 's journal like before . There are many shopping centers . Everything was very delicious . On the last day , my friends celebrated my birthday . They held a birthday party for me . We drank Makgeolli and ate cake ! ! Every scene is actually real ! ! Thisfilm has many ironic and humourous messagesdealing with celebrities , eco business , and homosexuality . It is very direct , so people under 15 years old can not watch this movie in Japan . He can speak Deutsch fruently , andwhen he spoke English in the movie he had a german accent . Oh , I 've quite forgotten to write `` every little helps `` in my first journal ! Nice to meet you all & yorosiku onegaisimasu ! ! Anyway , This Saturday is my school festival . I 'm a leader of the Inhwa herald , our English newspaper club . I 've been studying English for several years , but there are really few opportunities for me , like most Japanese people , to write in English and use English in conversation . I really need to brush up on my English , and it would be a great help if you correct my English . Although I had a bad score in Economics , I still got a second chance in my cram school exam . When I was in Tokyo , my sons went to school and to their football clubs by themselves . Every time I listen to my voice , I feel very embarrassed by my English , my way of talking , and my voice itself . His physical condition has recovered . First , I have to do exercise everyday . Apparently I threw it away when I was sleeping . It was uncomfortable because I had a stuffy nose . I expect CNN is very difficult , extremely hard , smashing me . 2 . ( which is a better sentence ? ? ) Is there any grammer mistakes in the following dialogue But I am not sure what my attitude made them angry . I explained to the people who came for the first time as an experienced worker . When they were talking in English , their talking speed was so fast that I could hardly understand e what they were talking about . I 've not decided yet . I do n't understand why my alarm did n't work . I have no idea about it ! Hong Kong ( ese ) people speak Cantonese too . This spring , Japan is very hot in comparison with last year . My wife and I really are big fans of it and my wife named our dog `` Hal `` after the super computer in this movie . That was why the students had complained to me about the contents and direction of my class . amazing ! Christmas day , I went to watch illuminations in Roppongi and omotesando with my friends . I think Melbourne 's enviorment is very suitable for living . Cosmetic surgery If the cosmetic surgery is able to remove the complex of appearance , they will be able to regain their confidence I think cosmetic surgery is good . Maybe it 's their culture , so if you want going to Hong Kong you had better do n't mind it . In Hong Kong , my strongest impression is the shopping malls , outlets and night places , especially the night places , so beautiful and so good , it 's the most beautiful night place I have seen . The KTX ( Korea Train Express ) ran very fast at super high speed , approximately 300 km / hr . Thanks to everyone who corrected my poor english / The First time I saw the movie was when I was a high school student . I like cooking various soya - bean milk ; sometimes I put some red dates into it , and sometimes I mix it with a little black rice , still oat , ormosia , black sesame . . . I have to say my mother is an ace food buyer . Moreover , undergrad students come too ! Be careful with Ninjya , though you ca n't lol ( another typographical error ) All restaurants in the huge waterfront area were reserved for us . I have two more choices which are to use the bus or to use the train , but the buses run infrequently near my house and it takes time to walk from my place to the nearest station . There are a lot of buildings which I think are European ( ? ) Mom is so talkative that she is always talking to me . In Japan , we have a holiday for three days straight this weekend ! However , highway traffic will be very heavy and most highway tolls will be the maximum of 1000 yen because of the holiday ! So I will stay home this weekend . And his daughter is puzzling . . . I should wait until my professor explains the meaning of this novel . I have been studying English for 3 years in Japan but I have only been to Hawaii . Personally , l do n't like living in New Zealand . When you look up a word in this dictionary , it always gives you a clear definition of the word in a user - friendly layout . I used to use a Japanese - English one ( and admittedly still use it from time to time ) , but now I usually use the English - English one . This is because I find that it is a more efficient and interesting way of learning a language to read the definition of each word in its original language . Beside this , the more harder part in the English language is the pronuncation ( talk ) , the combinations of characters do not have the same sound that I can find in my native language and the same combination have a different pronunciation in others words , this is a nightmare for me . I hope lang - 8 and all their wonderful people help me to improve my communication skills . What I am expecting from this post is to know how I am doing with my grammar , my vocabulary , and my english expresion . This morning I went to work , my father has a place inside the local market so I go there and work as the cashier . When I am at work there is not much to do , so I pick up my notebook and start to practice my hiragana / katakana , I hope some day be as good at that , so that I would go to Japan to sharpen my skills , my all life my dream was to work in international business and to be working all over the world , but now it seems so much like a dream , that much of the time I feel down unmotivated . Getting back to the main point , after I finished my work at my fathers place I took my computer and watched some anime material I did have in . Afterwards I met my friends , at a movie theater to see the movie `` monsters vs alliens `` . The movie was cool and perhaps had some random topics in it . My boyfriend is an American . In the wake of big mayhem like september 11th , Japan 's security level was leveraged especially at the airport so as to take precautions to prevent violence swiftly . Sherlock and his old friend Dr . Watson spent many hours looking in the mud on Laver Gill Moor . Watson thought it was not possible to find the answers , but Sherlock thought every mystery has an answer . What a long time ago . I did n't get back until 9 PM last night . I want to watch more movies and dramas from foreign countries . I know nothing about the relationship between men and women in foreign countries . But actually we were totally chicken , even though some woman passed by , We did nothing . also if you are learning Korean , let 's be a friends with each other Jessica Alba and Michelle Rodriguez appeared in Machete . Because she was younger than me , I paid for the meal . Although we only had Fried Dumplings and some noodles , it was more expensive than I had expected . Please answer . What do you think about the difference between spending about a hundred thousand vnd travelling by bike and paying only 50000 vnd for a commuter ticket . Furthermore , if you travel by bus , you do n't have to wait in line to buy a parking ticket , or pay a fine because you went through a red light or were riding without a safety helmet . I used to see some terrible bike accidents so maybe travelling by bus is safer . Besides , when the weather is bad - too hot or too cold - choosing the bus for travelling is sensible . In the ( translation to ) Portuguese , all these sentences are right . That 's why Present Continuous and Present Simple are so tricky for us , brazilians . I think I could not lose weight because I already had rice and coke as well as pizza at lunch time . In spite of the rain , I have a great passion for Archery . . . . I have n't been able to see her for a few days . Also , it is still connected to a worker 's promotion or career track after entering the company . I know the governor of Miyazaki used to be a comedian , but after studying politics at Waseda University , he was elected as a governer . I think the media 's influence was inportant for him because if he was not well known as a comedian , he would not be elected as ( a ) governor . In Japan most people are punctual and honest . Last week , I went on a picnic and ate barbecue at a restraurant It exceeded 30 degrees Celsius today . Today I found a news article which was written about the European payment system . Recently , I have beenlooking for payment services abroad for my business . That white paper is convenient for me . He ca n't speak in complete sentences . poor weather forecast in Shanghai The weather forecast was totally wrong . I 'd like to make a good sentence , but it is not easy . I 'm beginner of sutdying English . In various business scene , English ability has been requied recently > . < But it was too late perhaps , they did n't give me anything . Even if my brain was not totally in it 's place , I was still able to do a 20 Japanese character study instead of the required 30 . We will have an overnight stay in a traditional Japanese hotel ( Ryokan ) . Nagoya Granpus claimed their first J - League title yesterday . Colorado Rapids got their first title of MLS on the same day . Thank you for reading this ! Japanese people are ardent insect fans I saw this story in a Japanese journal . Yangyang felt guilty for not staying at home at the time when there was a fire . The wall is a wall around myself , the river is a river that is flowing in myself , and the smoke is smoke from burning myself . His pieces were ( are ? ) displayed at Yokohama triennial . I study Italian too . I feel that this language is fresh because I have studied Italian forthree months . Those sandwiches are shwarma made with chicken in a special way . The last one is baklava . As it turned out , my anxiety was n't justified , and the music intrigued me after a few minutes of listening . I had n't noticed any sharp changes of dynamics like an Opeth and dynamics changes so smooth that heavy fragments are separated by only a little ( small ? ) changes of tone of instruments and a particular emphasis in the drummer 's rhythm . In my opinion , the best track on this album is ' Not Unlike the Waves ' . And you want to return to this world again and again . . . I 've just moved here at the end of August . - > August I 'm studying my spanish textbook . . Last semester , my Spanish professor said the midterm would be very difficult and the final exam , which is weighted strongly in my final semester grade , would be very easy . Today is so hot , even at night , it still feels hot in my room . `` Dragon Ball Z `` Breathing Exercise I attended a breathing exercise class called `` KIKO `` . It is like Yoga but a bit different . She has been doing this for 9 years at another training hall in Osaka , which is two hours by train . so it ' sa little strange . First day The beach was crowded with visitors . first , they are going to lose their confidence . Thanksto everyone who edits this . My favorite American TV show is Friends . We enjoyed swimming and doing other activities . E - mail I am doing my best ( watashi ha ganbaru ) , and I am really enjoing it , no matter if thing not always go as smooth as I can wish . And we can manage to solute the problem of low birthrate . I have worked in this company for two years after graduation , This company is a state company , no employee ever worries of being out of work . I do n't how to work in this company , I am only in the beginning of my work time , maybe I should change my perspective on working , Unlike other older employees I should always remember that I am young , I need deal with Then , I jumped because I felt swetty . This light has the performance of low energy and high brightness . If there is the controller to change the brightness , even better . I finished reading `` How Starbucks saved my life `` today . He started cleaning the store toilet and began to learn valuable things through his job and finally found his true happiness in his new job and unfamiliar environment . I like both of fiction and non - fiction ! Correct feedback helps students to improve . how different are feedback and assessment in English ? the temperature is getting lower and lower . Past experiences ( Please someone help me . I am going to write this topic in this Friday 's exam . ) I walked through the entrance of the alley to wait for a motorbike taxi but a minibus came instead and I decided to get in . Seattle Mariners were / went againsttheLos Angeles Angels . But after I understand the first sentence , the second one has already been said . After my lunch , I went to an rental video shop and rented 5 DVD . When the concert started , I did n't know most of the songs and I wondered why there were 5 people on - stage . I work for a pharmaceutical company , so sometimes I have to use English for my business . Anyway for the first time I visited church , I felt that there was something there which I had been yearning to have , eager to know . And I would like to improve my English writing ability to pass the intermediat level of General English Proficiency Test . We were completely taken aback , but we decided to search for the wallet on the same pavement on which we had ran . The company produces mostly cosmetic products . I may go on business trips to the overseas branch someday , by some chance , I may be transferred there for a while . But everyday this bottle tenaciously appears somewhere in the race , and then disappears the next moment . I paid 4935 for it The office was quiet because of the holiday so we ate out at lunch , My new friend messesged me `` happy language `` . I am very tired now . Though Japanese are known to like fish extremely much , Sakanakun particularly has an extensive knowledge about fish . Japanese chicks are easy targets I see so many Japanese chicks in the city . Getting married with anAustralian guy is aneasy way to get PR in Australia , so some Japanese chicks try to win over Australian guys . Japanese chicks are popular in Australia , but it does n't mean Japanese chicks are beautiful . Those Japanese chicks probablythink `` if we can get Australian boyfriends , we could easily study English and get PR . It 's the easiest way to master English ! `` It 's ridiculous , There is no `` shortest way `` to master another language . They ca n't understand that . Most Japanese chicks get dumped by aus guys . Of course those bitches thenlook for theirnext partners and then get dumped again later lol I am really disappointed with ( by ) Japanese people who live in sydney , especially some of the chicks . It is very popular in Japan . I already heard the news from his mother 's greeting card . He wore the costume of an anime character . It was broadcast on Sunday in the late afternoon . But I was out just then , so I recordedcopyed it . Seeing people falling down from the skyscrapers was horrible . BTW I have a grammatical question , which one is correct ? based on what grammatical rule ? Alcohol and Drug Education Program To continue something will bring you great power . For everything , to continue is most important thing . For example , walking for health , learning foreign language , etc . . ! But I do n't think I can get it , because it 's a little difficult for me . This day me and my family was on picnic and after that , when we have been going home by car , my dad gave me 1 lesson of driving car . Even though I 'm Korean , I am staying in INDIA right now for studying abroad . I know I have problems with grammar , especially with phrasal verbs and idioms . I think I will rewrite it here and find someone who can explain it to me . Have you seen Japanese mobile phones in Japan ? Eva 's new movie will be released this summer , and the characters use this phone in the movie . My breakfast for this morning was protein powder mixed with water . I graduated from college and majored in radiology . Currently , I am workind in the cardiac and vascular center at Samsung Medical Center . I am an outgoing person who has a positive attitude and a sense of humor . I want to make many international friends and have good relationship with them . I 'll graduate University next year . And , I have been singing at an acappella group during my university life . In fact , seniors born after World War II , in the generation of babyboomers , will rapidly enter their aging years in the near future . Meanwhile , the birthrate in Japan is declining . Anyhow , this inclination will possibly put a heavy burden on the next generation 's shoulder . I think the elderly people will be expected to work into their later years to reduce the burden on the society . I 'm always thinking of them every day . Even though we have never seen each other in real life , we always have a wonderful time together on Skype , MSN and on our webcams since I came to Lang - 8 and met them . My day is really wonderful . Actually , when I come home I need to turn on my computer before I take a bath because I would like to see them and read their comments on my page . my wonderful friends . `` Because witting the article is difficult , I do n't know which way is right . I heard that he chose to kill himself last Friday . Now I have only half a container , about 10 liters . Recently I 've been interested in martial arts . I hope someday to challenge . Going to the sea I want to speak English so I decided to write at Lang - 8 in English from now on . Last weekend I had a drink with one of my old friends . Second , I have to wash our dishes after having dinner . I went to the Toba aquarium and Ise temple . I feel like I can be a good mom . ( No , I can not say this only because of the lunch box haha ) But many people advised him not to do it . The news was broadcasted all over the world and he delivered his speech in English . I Googled , rechecked on the web and found it on Youtube . Lots of novelists like me tend to choose the opposite decision . I wish the war disappears and a peaceful world will arrive before long . Alan gives a long closing which is passionate and - - - like shirley said - - - always makes people find the darker side of themselves . I 've seen a Japanese translator using this show for continued learning of English . Keeping a diary is a good habit . because my friend has come back from Japan . I have not eaten rice yet . I am bit hungry . I did not plan a costume for the party . In conclusion , English is marvelous ! Today , I had a New Yea ' rs party with my colleages in my company . But , I had very happy time at the New Year 's party . Alcohol makes people happy . we ate lunch there . I was disappointed about that . It was a great time . But , I am double majoring in mechanical ( I think it should be English literature or English education , right ? but , at my uni it is just Englgish . . To coordinate the work of TA evaluation and TA certificate : TA Evaluation Forms start to conduct during the 13th of Dec . After arriving at the station , we went to the hotel we had a reservation with first , and checked in , then we went to another hotel to have lunch , of course my wife had found this . So I cancelled one dolce . After the meal , we went on a stroll around San Marco , which is the symbol of Venice , I 'll talk about it next time . Look at this clip , please : D In China , every student in a university has to take the test . But the first book is a real autobiography of Mineko Iwasaki and the second one is just fiction . Then we gradually realized that the shake was weird . Our manager murmured `` It 's weird . . . . However , when it comes to our office , some windows and doors were destroyed by the quake . Tokyo Electric Company decided to cut the power tomorrow so that the nuclear plants in Fukushima will be able to recover . . . . My hobby is listening to music . I 'm a first year university student . At first , we did n't even know how to start a conversation because we 've never had a similar experience before . Yesterday 's otumami was gizzard , fried chicken , okonomiyaki , and something else . But , I do not have an interesting theme . I thought I could translate my favorite Japanese music ! Here in Miyagi , we had few utilities - no water or gas . In particular , there were wide desks for directors with transparent glass dividers . I am not going to criticise my company 's facilities but just want to compare them . I hope you take advantage ; I hope you see things that surprise you , I hope you feel things that you have never felt , I hope you meet people with different opinions , I hope you are proud of your life ; if you are n't , I hope you have the strength and you can begin it again . `` The Curious Case of Benjamin Button I was shocked by what she said . Today is mother 's day , so I went to a department store with my wife to buy a present for my mother . because stuffed animal suits are a little bit childish . Today I 'll write about my family . Today I had a class about education . We do not have to plan . I have 4 family members : my father , mother and little brother . My father is moderate , he is not so agreeable . My little brother is active , he likes playing soccer . in the afternoon , my aunt asked us to visit her villa . So my company decided tomorrow will be a holiday . Tomorow is opening day at Sun Peaks Resort for winter lift operetions ! Of course I 'll go snowboarding tomorow . Today was a day off . I enjoyed this summer ! The first day , I went there at midnight . But , I always think that it would be troublesome for them . But when I see this festival I forget my boredom . My daughter likes to put syrup on vanilla ice cream . Day by day , it becomes well - developed . But still to read writing by non - native speakers , studying Japanese , helps me to understand Japanese grammar ( more ) clearly and gives me the joy of discovering how Japanese is learned / acquired / thought of by another culture . Anyway , we will see . I 'm only sure of one thing , that I will keep practicing my English with or without Microsoft : ) I met another Japanese recruiting company 's staff to arrange job interviews in Bugis ( a name of a place ) . He told me he would want to know my English skills , so we had a conversation in English for around 5 minutes . I could arrange interviews for Japanese and foreign companies . First , the upside to the urbanization is that it makes our lives convenient . I was so excited and expecting a good ending but . . . This Saturday I took part in an American contest FLEX consisting of three rounds . Now I have no idea what to write ) ) ) Next time , I think , I 'll write something more valuable . Blue tinctured curtain is popular . It 's similar to Japanese Karate , but I ca n't discern their difference because I even do n't know about Katate that much . , for example , kindergarden ( My daughter 's starting kindergarten in a year and a half ) , favorite foods ( Our children are too picky about what they eat ) , etc . . . To conquer the British accent , I have started to watch British dramas I teach physics , Ana teaches Japanese , Ega teaches Indonesian , and Yanti teaches music . Learn something from the fault instead of blaming yourself . I have to write an essay in about 200 words . Some are popular landmarks and have many people visit every day . We will learn by chatting about different topics and news headlines ( stories ) . It 's not a video chat but only typing . because My computer 's output broke down and I can only hear other people 's voices and you wo n't be able to hear mine . I think it 's unfortunate , so we will learn by typing . Native English speakers who just want to know the the different thoughts between Eastern and Western cultures by discussing international issues and everyday news . I feel we should treasure Japanese culture . I have studied English hard , but I thought that it was regrettably meaningless if I could n't use it . In Japan , for example , when the total amount is 900 yen , and I receive 1000 yen , I will say that I return to you 100 yen or something of the sort . But , I 'm feeling that to increase my English skills , especially listening is difficult for me . I followed her to see a specific house for rent . I like learning Japanese and English , reading and traveling in my free time . Today I swam with Manatees in Crystal river , it was second time I 've seen them . Manatees are considered as an origin of mermaid . She told me to search for `` piano `` and song names on Youtube , and that I could find a lot of clips to teach me how to do it . This car is n't good for parents . I do n't know much about cars , so I do n't know whether this car is expensive or not . To tell you the truth , I was totally uninterested in the snowboarding events in this year 's Olympics . but recently I did n't study that much . A big earthquake occurred yesterday . When I asked my friend `` Who is Jesus `` , she laughed at me . It really different me because I never to make up . . I should be going to wash my dresses for tomorrow Today , I had a practice with my violin classmates . ( How can I say this ? ? ) We played ' Edelweiss ' and some other songs . because I think it maybe better to study English there , Originally it was Chinese food . And then , recently a new type of Ramen appears . Tsukemen is different from ramen , the soup and noodles are served separately . However , learning about this is very reasonable ( understandable ) if you understand the similarities between the Vietnam War and the Korean War . They knew all the military secrets of South Vietnam . What this is telling me is that there must be a lot of spies in South Korea as well . I was an abacus teacher at cram school at that time , so I decided to email her . Finally , we have exchanged hobbies successfully . My sister likes language exchanges and studying more than I do . I like hobby exchanges or taking part in different kinds of activities . Why are double teeth considered charming in Japan ? I prefer an ( in person ) interview over a written exam , because grammatical mistakes in the interview are gone in a moment , but my written exam paper with many mistakes will exist until we are all familiar with each other . Thirdly , they recommend that I should use `` I `` instead of `` we `` . I would like to say `` we accomplished the project `` or `` I accomplished the project as a member of a working team `` . I know that there are many cultural differences between Europe and Japan . And the cultural differences have influenced my own way of thinking . Could you please give me your suggestions frankly , and let me know if the suggestions on the web site are true or not ? If I had a girlfriend , I would travel to a foreign country this year . . . Everything is so strange . I thought the river is very polluted , however , frogs still can exist under those conditions . I grabbed the frog and placed it in a box . This is my first time to write a Lang - 8 diary . I visited Nijojo Castle as part of a Kyoto bus tour . Inside , the castle is so dim that we could barely see the wall and ceiling pictures . If we had had sunny weather , we could have enjoyed walking around much more . Are these sentences correct ? Please teach me , are these sentences correct ? Tomorrow is Labor thanksgiving Day in Japan ^ ^ I think it is very wasteful to live all my life here . It is a great opportunity to work in a country which speaks a different language . Language is wonderful way to have contact with foreign people . I could n't get up However , I can not practice pronunciation on a train . Hi , I 'm a new exchange student of Aalto Univ . in Helsinki . If you find a grammatical fault , just pinch it out please . I have n't met my friend recently , so I was happy to see her . This future is kind of horrorific . There seems to be no moral in the story , but you could find what the problems in Japan are . Hello everyone ! ! I worked overtime last weekend I was very satisfied . Mario , Pokemon and Sailor Moon : > The shipping method was DHL premiere shipping mail . At the beginning of our trip , I had a very nice time with them but on the last day of our trip , we got into a rollover accident . Nobody was n't hurt , but I worried a lot because that car was rented and we were driving it . The moment I noticed like this , I decided to find a different sport . I recently read a book about translation and language . At the beginning we were going to go only to New York and stay there for a month , but my girlfriend 's father lives in Miami . We visited Miami Beach , with its wonderful white sand and crystalline water , _ and relished wonderful food , because my girlfriend 's father is a great cook . To sum up , I have had a beautiful experience with excellent company and visiting excellent places . I am surprised , so I decide to go for a swim too . But the weather was raining , I give up . It is quite difficult . Though it has some words written like Chinese words but they have different meanings and pronunciation . I graduated from junior high school in june . This decision will influence my future forever , so I must be very careful . One joke from my friend I guess my push ups and situps was bad , and I was very suprised . I listened her voice and I missed her . `` I 'm afraid I could not afford this in Japan ! ! ! Now I am an undergraduate in I logged into my account on Lang - 8 . In the near future I want to visit many countries . old korean people think that the son is important . Since I could n't understand anything , I do n't know what should I do during the class . She knows that I want to improve my Japanese and my English , so she introduced me to this website . basketball fans . Someday I want to travel around the world . written by Ted Chiang . I 'm interested in the issues about time travel mentioned in this story . This site is so amazing that I continue to write diary entries . I 'm wondering if I should keep studying conversation more , or change subjects . I have 4 classes , and all subjects are conversation . Other students usually coverall subjects . I study English and Chinese at the university in Japan . ayamaru or machigaeru - to be mistaken atsumaru - to gather It is possible to arrange one more ticket for `` trance energy `` for one of the girls in my house . I wish that she would come with me because we will be doing something together . I 'm so excited . Hello friends , this video . This is the first time I have tried to upload anything , so it 's a bad video but just a test . I stayed at home with my nephew and one of my nephew 's use my telephone to record the video . I saw her for the first time in six years . Somebody just corrected my diary , but I do n't know how to say thank you . Algumas vezes eu jogo Dance Dance Revolution . There are 50 poems with pictures accompanying them . I will try hard . It 's 3 US $ for 2 different movies but the equipment is not as good as that at the first - run theaters . Hope I will get good news ! I 'm Japanese . However , my English vocabulary is very limited . Reading is the best way for me to improve my vocabulary . I found a potential land parcel in an advertisement , and visited a real estate company . It is a very beautiful place having a marvellous landscape . At that time , we went from church to the host family ` s house . We were halfway from church to their house I was really surprised . It is the first marvellous sky I have seen like that . I will contact student of various countries . I think that it is important for me to concern world education . Since I want to be an exchange student in Sweden , I must improve my spoken English . As a stomach doctor , my little uncle who is also my grandma 's son , gave her a series of medicines , and hoped she could survive another five years or more . I found my favorite song again , but the video features a different player . . He has really nifty fingers when playing the guitar . Tha mi ag ionnsachadh feallsanachd . I am a Urdu speaker , but I want to know how I can speak Farsi . Some roads do n't have a cycleroad / bike lane or a sidewalk . I need another sense of driving in Japan . This afternoon , I used a subway to go to the centre of my city . I wonder if public manners for young girls is changing I live in a dorm and I have four roommates . It takes about 20 minutes by car . Therfore , I have to ask someone who has a car to take us to the grocery shop if we need some fresh food , like vegetables , fruits , or meat . Also , we ate a many kinds of food , for example Yakisoba , Tamasen , banana which covered with chocolate . . etc . We enjoyed a school festival . And we watched Michael Jackson 's movie `` This is it `` . Actually , I did n't know details about Michael jackson until he died . Because I mainly liked rock music . `` Michael is great . `` Mathematics , `` `` Physical Exercises , `` `` Music `` or `` Geography ? `` ( They all ) These are only the titles of subjects , but when you do n't know at least one of them , I think it may cause you a good deal of frustration in a Japanese conversations because you ca n't understand / make yourself understood immediately . There are a lot of international student , so I want to be friends with them . When I took the train , I saw a foreign boy . Because he and I have mutual friends who came from Europe . According to my memory , the bears moved widely but repeatedly visited the same areas . I usally spend my free time playing games , watching tv shows , go to the movies , and when I was in Laos , I met 2 foreigners and we became good friends . They knew some Japanese Many kinds of people had different kinds of roles in the Railroad , including preachers , politicians , farmers and storekeepers . And just 30 minutes . well , I do n't get tooo much , but it 's still good deal : D If it is possible , I will write my diary entry using at least one new unknown word in every sentence . The usual rules of time and space do n't function in this House . There 's nothing disgusting or compassionate in the novel . Usually I do n't reread books , because I 'm always in a hurry to read something new . They were very delicious ! ! For example . . . . . . This grammar is difficult . It is straight and has a wide sidewalk , I saw some people who were either walking , running or walking with their dogs . Birds were singing and the flowers bloomed with the morning dew . I 've been reading The Wondeful Wizard of Oz . does that mean that Dorothy finally caught Toto ? Shocking News We also joined in something similar ( Some events were held to encourage the audience in the middle of the show ) . because I had stay up late yesterday . and I had got myself for net surfing . ^ ^ Since then , I sometimes listen to my favorite Western music from my ipod when I go to school . Thanks to this method , my listening ability became greatly improved . Now , I 'm still doing it and I wanted to improve my writing ability through this site , so I 'm writing this diary . After I talked her , I realized she is brilliant , talented , I enjoyed their beaches , and I missed a lot with their language . I was speaking half in Spanish , half in Portugese , so I was n't understood by anybody . Now I 'm back , and have to accomodate my language again . But , It did n't really occur to me to go abroad . It expresses the mind of the speakers . Occasionally , I am unsure how to say it ( correctly ? ) , It was chilly today and I 'm sleepy now like I was yesterday . She said to me `` Please give me information about Singapore if you can get a job there , because I dont want to go back to Japan `` . if you are in Singapore , give me information about that `` So , I politely and immediately answered her `` I do n't have any intentions to give you any useful information about Singapore , go to hell you fat bitch . I hate people who laugh at others who are trying to acheive something difficult `` . Could you explain it to me , please ? It was delicious ! Fall is coming ~ When you started there was still communism , even if it was the beginning of the Perestroyka era . But I 'm not that good at writing . It was a procession when I went to my favorite ramen store . This store is small and many people wait for me to finish my ramen . Next , it is a very low price and we can take trains all day except express trains . I use many of google 's applications and services . But , he & I will both make our dreams come true . Although it 's always funny to play with 'em it 's often very tiring and today we played at a playground near my flat all day long even though it was freezing cold ! The legal department is located in Germany , the headquarters in Switzerland . Last night , I was looking at the TV program - the hundred minute talk about the MINERVA 's detention sensation . Now , the major news is about Minerva in South Korea . Although my English course has finished a long time ago , I did n't want to stop learning . My friends and teachers from Lang - 8 , would you please give me some explanations ? She 's on holiday in France . 1 ) What 's he studying ? I also like Eva , but I watched the whole story 34 years ago and now I 've forgotten the details . I had a great time with my family during the year - end and New Year holidays . We had a delicious japanese traditional cuisine ( osechi - ryouri ) and went to shrine and temple . My company started today . The pasta 's sauce is ratatouille . But I ca n't see my improvements . I was dreaming I could speak English fluently , but it 's still a dream which I ca n't touch . I live in Northshore . Northshore is a very quiet place , especially at night . I guess in some country it is morning or noon now . `` Torchwood `` is a very unique sci - fi drama and contains very adult things such as swearing , indiscriminate snogging and shagging , and violence . and I quickly decided to fly over to the U . People who had lost all their money became alcoholics or started thinking about suicide . I have to practice lots X ) Yesterday , I made a idiom thing that was when I went out , and I forgot that I was More and more Chinese like to travel around the country or go abroad . Yes , I 'm defnitely happy tonight , I 'm going to play tonight ( soccer of course ) , I 'm sure you know that in Europe , soccer is the most popular sport All European people have a passion for soocer , but none like Italian people . For some it is not simply a sport , but a religion , in fact every day and especially every Monday you can find a lot people , in offices , in coffee bars , on buses , everywhere you can find someone talking about their own team 's match . A beautiful actress passed away This is a renowned line that she said in an alcoholic beverage commercial on TV . I 'm going to see the movie ' Social network ' tonight at 10 o ' clock . My English teacher said the same thing as me . After the party ended , I went to my cousin 's atelier to meet my sister . I am learning the English language ! ! ! ! My favorite painting is ' Fat Monalisa ' . I painted it by copying Fernando Botero 's style . I went to visit my uncle . He is sick and he ca n't move his body because last year he fell at his house . he is really nice . sometimes when I have a problem I really like to ask him , because he can help me solve the problem . I looked at youtube for a long time about the animals and fish and I felt happy to watch it . thank you very much . Start Writing Daily in English It is very nice weather , so today is a perfect day for me to just be lazy . It is difficult to write a long sentence in English . elementary school , middle school , high school . . My destination would be Africa , needless to say . Now , the mobile - site is important for E - commerce in Japan . Describe a person who has a good leadership . This time the big earthquake had hit mainly the northeastern district and Kanto district . Learning other language is difficult for me . So I studies English for three or four hours a day since I started learning English . I decided to start keeping this diary in order to improve my English and probably to find new foreign friends . In my institute I study two foreign languages : English and Chinese . Will be waiting for your comments , corrections and anything else Class begins at 8 pm with ordinary conversation for a hour , then Bible study for 30 minutes . but he had a chance to live another life and he chose to marry . after I saw this movie , I gradually took more care for my family . I like to watch American TV , and my favorite is desperate housewives . I have a Filipino English teacher named Nephelie . Even though I ask about English everyday , she just smiles and answers my questions . I 'm sincerely thankful for her . I 've been having too much sugar recently . Today , my friend and I will make a newspaper with this article in our English class , so I 'm very looking forward to doing it ! ! Yesterday , our univeristy held a graduation ceremony . Unfortunately it rained , though . They were beautiful . Instead of competing against each other , they can achieve goals together which will sharpen their skills and bring forth beneficial effects on their learning . Generally , it appears that online learning is a more advanced and fruitful tool for studying . All of his or her coworkers are busy all day long but they do n't know what they are busy for . We always spend a lot of time confirming every detail and spending more energy than others to communicate with other coworkers because he always gives us unclear tasks and seldom gives us enough support . There are four Saudi Arabian , three Korean , one Mexican and three Japanese in their class . I 'm learning English by watching House M . For some reason , I could n't sleep well last night . So this morning I was very , very sleepy . Tonight , I want to sleep better . We talked about each other . I 've never seen an American pop - corn maker cook , so it looked so interesting to me . I wondered if I could understand what they are talking and laughing totally , it would be more fun . I 'm grateful if you make my English correct . Lang - 8 is one of my challenges to change my daily life . And just to make you smile I 'd like to put some funny children 's pictures here . Thank Goodness . . The internet is very useful , right ? ! Of course I had known about him , but the show told me that he was definitely one of the greatest baseball players ever . Istanbul splited by Bosporus I joined fido which is a canadian cell phone company . It is very inconvenient and uneasy . Recently , I neglected to study . I am listening to some piano pieces George Winston played , especially the songs in his album `` Winter into Spring . `` Test week It also made me feel good . My new computer We told about cases of each country . I 'm worried and quarreled a little , because of sensitive problem . However I will go there someday ! I use a pen when I write a diary . I do n't know what I want to be in the future . I added bacon and garlic to them . This time , the drivers were very cool ! I studied how to answer CET - 6 papers , and found that English is more delicate than I ever knew ~ ^ _ ^ ~ I needed a break , so I wrote a very short entry and wrote a Chinese prose poem ~ Because I fell asleep at 3 : 00 AM since three days ago ( but it was n't wise decision ) . If someone misses a period of study , There is no way to wriggle out ! Today , I bought some dolls . However , very few Japanese people have such a long - term experience in the States . The reason why she likes them is that the first Japanese NBA player ' Yuta Tabuse ' was on the team and she is also a fan of Amar ' e Stoudemire . Who was in a good mood ? Who was positive , and who beautiful ? Will Suntory defeat Coca Cola or Nestle if this goes on ? Allow Me To Remind You Yesterday , I tried making a silver jewel / jewelry from a silver clay . At the end of extra time , Japan finally scored a goal with a beautiful shoot and won the game . I 'm a big fan of soccer and I belonged to a soccer club when I was a student from elementary school to high school . Japan has now become the champions in Asia . In Japan we usually get into a bath after filling it halfway with warm water . Recently I like going to the spa near my house . When I took one of my foreign friends to spa , she blushed because people saw her naked . There were many foreigners and Japanese people there , Anyway I got 2 friends , one Swedish and one Japanese . After I came to Singapore , I have been lonely because there are no friends in Singapore . Praying everyday was getting harder but I realized the heart of the Lord . I also live in Nagoya , therefore I ` m looking forward to seeing ( watching ) figure skating . Nowadays , since Kaiten - Zushi are spreaded all over Japan , we can eat Nigiri - Zushi at a reasonable price . Today we will have a birthday party for my friend . It was in a traffic jam , a terrible traffic jam . Our opponents were strong . I am the youngster Finally the rainy season has begun in my city , after the long heat wave ! It 's so fresh on the street ) I 'm happy ! He was talkative and he talked to me a lot . I have a cat , a dog and two gerbils . They always help me . thx for reading my stupid journal , I 'm get better right now , thx for the medicine too ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ I do n't know how I can find friends , or where I should write my entries to get some corrections . It 's incredibly hot today ! She texted me yesterday that there is a test today and asked me the range , but I replied to her that I did n't know about any test . I tried to buy some alcohol at CVS the other day , but they did n't accept my passport as an ID , because they only do that for Americans or Canadians . I think conservative clothes are always good if you are trying to give a good first impression . so please help me . Do you have any suggestions so that I can make my dream come true ! ! ? ? I thought the girl in the wedding was the most beautiful in her life . I hope that she and her husband will be happy . Actually , my first aim was to support my friend Kostia when he tried to talk with Arina . But Karina , the Arina 's friend , was even cuter and more beautifulto me ! That evening Kostia did n't succeed with his beloved Arina , unfortunately he was too shy and confused . suntan and her hair is very messy . Why has no one corrected my previous journal ? Usually , I do n't know what to write . . . This training program is a little hard on me physically . He sometimes DJs for just one hour . It 's only 29800 yen including tax . I happened to meet my friend in the center of a city . Today , I happened to meet one of my friends who was one of my friends when I was in high school . Throughout your life , have n't you ever thought about why you have been able to meet the same people among your friends or acquaintances over and over again in different places such as in a big city , while you have not been able to meet other friends or acquaintances of yours at all ? Based on their reports , the pool ( algae plant ) which has 20000 ha and 1 meter depth could supply Japanese annual consumption of oil . I come from Taipei , and I 'm not student . My habits are playing basketball , using the computer ( facebookXD ) , reading some economical books and comic books , and see every kind of movies . He is doctor who lives in the U . In two hours they did , but they were not satified ! I tried to make a short impromptu speech with thanks for my foreign friends here on Lang - 8 . Maybe I 'm just feeling lonely . I , personally , felt that AVATAR 's story was okay , but the visuals and 3D technology make it worth seeing . I recommend ( that ) you go see it . I will try to introduce to you the story of AVATAR briefly tommorrow . Official Avatar Trailer female : I wanted to have my hair cut by a female when I went to have my hair cut . principal : The principle reason why Japanese people came to the current continent is because they were chasing Monmos . After a long absence , I can wash my clothes . The big earthquake and tsunami in winter destroyed many houses , buildings and cars etc . Unfortunately , the Fukushima nuclear plant was partially destroyed , too . I 'm happy girl , because there aregood people around me . Today , I was a couple of minutes late to school because I got up later than usual . I should have reviewed the vocabulary before the quiz . I suffer from a language barrier . I hope that next time I can speak english fluently . Since my ability of English is improving , I do n't dislike it like as much anymore . What can I do to resolve this daily problem ? ( I 've ) Started to write a diary in English . A few days ago , my friend and I went shopping and found that some foreigners were having coffee in Starbucks Coffee . It was brown ( in colour ) . In this entry , I will tell you about my power point skills . This is a very famous movie , so I think everybody already knows the story so I do n't need to explain it . I hardly ever listen to classical music . We can go anywhere without a car . Or they might stay at a cheaper capsule hotel . Can I say I cleaned my room inside out ? I provided them with some technical support to help them pass an audit ( like ISO9001 audit ) . I was at the Shanghai railway station on Tuesday morning . Nanjing is not far . I spent two and half a hours on the train , had lunch in Nanjing , and started my business in afternoon . After that , I go to bed at around 10 : 00 pm , thinking of tomorrow 's plan . If you select me , you 'll never regret it . Now , I 'm living and studying in Germany . There are four subjects in this semester . It is crunchy , yummy ! yummy ! I thought it 's a fine day to go cycling early in the morning . GDP is the abbreviation of Gross Domestic Product . That 's the best thing these days . lol I wonder if I should play truant for the Bookkeeping exam . . . . no no ! no way ! ! I cant ! I have to get a license for bookeeping . The factory is in the suburbs and far from the train station . Firstly , I found that Tube in London is not so crowded even in the rush hours . Subways in Tokyo are very very crowded in rush hours . There are people distributing the newspaper near the station and we can get it . Unfortunately , I do n't have my own a lot of colonial places to visit and many foreigners . My company 's main description is listed below . 2 ) My company carries out transport of computers and accessories . It is somewhat ironic ; large amounts of money sleep in bank accounts but are pulled out again by criminals . She told me that she received a call from my husband , but it was quite bizarre . [ spelling ] Actually , I 'm a Japanese high school student , so I study English everyday . At the moment , I was excited because it would be very useful for me . I definitely want to use this site , and will keep writing . I look forward to attending an English class every Thursday . One lady just returned from her trip to Spain ! I hope that soon I can read English novels directly and speak English fluently . Another earthquake just occured the day before yesterday . Today , as the first half year ends , I presented the report to the members . Then , I was released from this job finally ! I live in Novosibirsk , if u know this is situated in Russia . I 'm interested in it , because my english is not so well , as I need = ' ( I think , this language is very important in my future , for my education and especially for my career . I expect that will be very effective for our freshmen . My hometown is very rural , so there are a lot of rice fileds . I personally think words have power , so I 'm careful of what to say . But I realized that I 'm too careful of what to say . My friend said `` Christ got angry with you , and you have to apology to him `` I 've been working hard lately in a guesthouse , on the night shift . However , I 've become relaxed and I can smile naturally , Remembering this makes me feel like screaming , especially at night or when I feel depressed lol . I often feel that women 's job is more better than men . If women and men work together , we can build a better company , society and world . When I was 15 years old , I stayed only a week by a home - stay . I could n't go to famous places . It 's interesting why I decided to go the UK though , since I dislike it here . I enjoy this life and sometimes I remember what happened ten years ago . I realise , that there are many ways in which each person could increase his or her level of any language , but as I see it , this one is almost the best . It was a very secret catacomb , where there are still . Please check my diary and cheer me up ! ! I was informed that it was the last day to work at one of my jobs yesterday while I was there . I will try to keep this diary , using a lot of words in the future . But , English is really difficult for me . . . It was heavy , even without french fries the double - decker hamburger was enough to fill my stomach ' til the evening . Perhaps people find that it 's more healthy to eat natural food and keep a healthy lifestyle than eating processed health food and using health - related products nowadays so that they are not going to buy any health - related products . Although people in Plainsville have set off a boom in exercise and it factually promoted the business in sports , it 's possible that people there are interested in pursuing a good figure more than fitness . And the ' fitness for life ' program , which just mentioned the benefits of regular ecercise at an early age , may also lead to the improvement of business in sports . First of all , if the costs of opening and operating a new store in Plainsville are very high , the incomes might not exceed the expenditures . While considering the possibility that the people in Plainsville are loyal to local brands , new store would not be welcomed and accepted by the local people for that reason . I appreciate your answers very much . I have only watched just five stories , but I 'm looking forward to watching the next story . I 'll clean my house and do the laundry , then I 'm going to watch them . It is decided by whether one 's mother tongue is Japanese or not . It took two days for me to finish `` Anne of Green Gables `` , a marvelous book imbued with natural beauty and gently expressed love for life . So I like to communicate with people ; - ) I 'm a pacifist , open minded , friendly and unique . I 'm a person who loves nature and health . But I promise to be more careful = ) I still remember that in the first English class she responded to our doubtful eyes that she always dressed casually and looks like a student . I took a lot of time to write my diary . The sun was rising up behind the Angkor Wat . The image of the Angkor Wat was reflected on the surfaces of the ponds . I 'm a Japanese studying English in Japan . I am a person who has no religion ( I am not a Buddhist or Christian ) so when bad things happen I do n't blame anyone . These three words are all uncountable nouns : fish , damage , and advice . My daughter is two year 's old . This is the best way to learn a foreign language . In Japan , Japanese use dish washing liquid on the dishes and then wash them off with water . I distinctly remember the first night when I came to Australia , and had dinner with Aussie and saw her washing the dishes . We attended this event and opened a small shop for selling some goods . My friend broke up with her boyfriend , because she doesn ` t love him anymore . If a young person sits in these seats , they will most likely be criticized by someone else . There was a big issue here in Korea about a woman who did n't give up her seat and even shouted at an older person . Because I am going to go to the Philippines to volunteer in Sep , 2009 . I saw the movie `` King 's Speech `` last Sunday . I started taking so much time to find appropriate words and sometimes never find them . I 'm still alive . I 'll be really muscular . I have known that the details about what will the film describe as when I have been preparing to become a spectator by sense & sensibility again . After I practiced , I realized that my pronunciation made me tongue - tied . where 's my luggage ( idk sp ) . . . . Yesterday and the day before yesterday , I attended farewell parties . Although I 'm far from them , I always cheer for them from New York ! ! It is the custom that we go back our parents ' home for New Years in Japan . Originally , we wanted to have a free and independent travel , but one of our friends who had never been to Korea suddenly could n't go with us . I did n't believe the scenes on TV had happened in Japan in addition to Tohoku that north area of Japan . I was born in Aomori the northeast prefecture in Tohoku . I think Japan is an earthquake - prone country . At that time , electricity had returned . and bought a pair of sneakers , pants , and a polo shirt . I thought I should have eaten it before I go to the office or have written my name on it . I saw the movie first and was very impressed by it ! I have had a hectic time this week , because I had a test in chaisene Do you mean Chinese ? Actually , school prevented me from going to yoga . Fortuneately , the weather was also fantastic ! My cell phone was broken accidentally a few days ago . So now , I 'm using payphone after a long time ( not exactly , cause when I was in the military I could only use the payphone , but I mean as a civilian ) . Hello 2011 I want to go journey , again . We had n't got any vocabulary material , speech practising , and one of our teachers make major grammatical mistakes , like she said once ' they was ' in a past continuous sentence ! ! ! It 's interesting , because during her lessons , and while preparing for the lessons , I learn words much more easily than in the school . It takes half an hour or maybe an hour , and I remember almost all the words , with only one or two exceptions . I joined this website yesterday , and found that it is very interesting and people from here are very friendly . The korean officer in active preparation was , regardless of me , panicked at a boarding arrangement . My company is planning to change the website and I 'm in charge of it . It 's been almost 3 months since I came to the UK to study . Do you have high tolerance for alcohol ? ? Usually we play table tennis or basketball . He does n't think that he is handicapped and he tries to do everything which he is able to do or new things that he wants to do . I heard someone said that watching movies is a good way of learning English . I will try this out . using foreign languages ( Upon ) Finishing my work at mountain lodge in Hakuba , Nagano prefecture , I 've returned to my university . Besides , in my Russian class , there is an American student who majors in Japanese and Russian in his home country . That 's also disappointing . I was very surprised , and turned toward her . Only ( The ) one thing I regret is that I could n't speak English very well . We chose one and write a resume , imagining if I apply for the job . I told him to finish what he had to do because it could have been avoided if he just had n't been watching TV , but he did n't continue tidying up , so I had to do it instead of him . Ohayo gozaimasu . Reading is my weak point . I know it ` s not good for our health . But I want to be an early bird so I 'm trying to wake up earlier than usual ( although I could n't make it this morning . . . ) Usual days are full of happiness . I go to Buck County Community College to study English . I think I will just memorize English words and sentences . I do n't know why , perhaps because I really see you as my good friend I want many foreign people to use it . low lighting , silence and loneliness . However , I was glad to hear that the Japanese team had won . . . I am living in southern California in America . I will not have decided that until this weekend because I have a long winter holiday . Some people enjoyed dancing together with friends or even other people . I know that Bob Dylan is famous singer in America , but I ca n't imagine what that phrase means . I found that there are many fashionable running outfits . because of a whole new model change . I thought I made it clear that tomorrow couldbe a day off . However , I had to do it , because it was one of the activities on a business trip with our customers . The shop did a campaign that if a person was still hungry after eating one hamburger , the shop would give the person one more hamburger . I tried it and got two hamburgers . I had to buy a pick , climbing iron , and Gore - Tex products . Maybe you will find that life is so beautiful when you know something . By the way , Tsuyoshi Kusanagi will be on television . We ate SOMEN ( Japanese food ) . I 'm glad to have met it . Hi , my name is `` napoleon - fish `` . It 'll so crowded and I should not get seperated from my friend . So my garden in spring and summer is very fragrant and colorful every year . I went to lunch with my English school friends . Here it is buffet style . getting a job . But I have a many reasons for learning english . Of course , in literature classes we heard so many times `` oh , how great is Russian language ! `` ( I do n't remember who did say these words , but I know that it was one of our writers ) . And I know only 5 kanji and a few simple sentences . I have a slight headache . Now I have a slight headache . I saw someone draw many interesting pictures of their grandfather with an iphone App , so I decided to draw too . I drew a cute pink cat the first time , but I coud n't draw any interesting pictures . I must either study drawing from the basics , or must stay humorous ? I love my sharing feelings and experiences with people who have different thoughts and experiences , so I have thought of joining a club . I do n't know why I hesitate so much . By the way , I 'd like to sing `` start of something new `` ( from high school musical ) BTW , do you think this introduction is too simple ? Please correct words for me if you think it is necessary . You said I was ( still ) a child in your heart , you said I have not matured , you said that our relationship should not be broken up . He is going to try _ out for a team for the first time . When we visited the temperate animal zone we met a few American Africans , who were trying to read the Chinese text on the noticeboard . Out of all the zones , my favorite is the temperate animal zone because elephants and giraffes are there . Penguins like big places for their environment , so the Zoo uses big mirrors as walls to make them feel more comfortable . About five years ago , the government of Japan retooled the system of the law . Now people who want to become lawyers have to graduate from college . the exams are held in November . Welcome to my home ! Hello , welcome to my Lang - 8 . com profile . Firstly , I will introduce myself , I am a 21 year old Chinese university student . You can write in English or Chinese . Correcting my words , grammar and so on . Thank you . Morning does n't have high temperature as in the afternoon . I intended to go to Tokyo and spend time reading books or studying at my favorite coffeehouse . 24hours after the extraction , now my lower jaw is swollen . I like jelly , but wanna eat hamburgers broadcast on TV ! ! They looked very delicious ! And then I 'll eat hamburgers XD When a man is walking down a street , he sees a man who is about to jump from the 10th floor . english is so duiffcult eighteen years but I have never had any confidence using it . What can I do to strengthen my english skill . restart studying English Now I 'm concentrating on studying Japanese only , I respect John Paul II , he could speak 11 languages . . It was exciting and improved my English skills . Expecially , when I saw Totoro in Toy Story 3 for first time I was very happy and proud of it because Japanese character appeared in such a popular and famous movie ! It is amazing ! Today , I learned many colloquial words as well as bad 4 letter words . For example , ' Take it . ' ( When I headed and Kinoko item appered ) I 12 years old now , so I 'm gon na say good bye to my school and friends . There are 28 students ( except for those ill ) in class , so we did rock - scissors - paper . After class the last runner of the losing team was scolded by teacher because he gave up in the middle . I hope I can make true friends here and There are vegetables in my house . What kind of vegetables do you like ? I try to remember to write it ! It was embarrassing because everybody stared at me then . `` Of course I will `` I replied , but he had to go to a different room shortly after that . Bye bye my lovely family . I really do n't like earthquakes and tsunamis . . . Reading and writing is okay ( I can use a dictionary when I 'm not sure about any word or grammar . ) but speaking and listening is so difficult to me . Every month everybody should go on vacation . If people stay at home they could watch ( watch ) TV , listen to the radio , go on internet , and be lazy . I 've gone other times in the past , but now , there are new attractions , like the Dark Knight Coaster . I miss her very much . In this situation , her sister and I decided to change the bibimbap with her . Yesterday I was planing to go to the skytower with my three friends but one of my friends and me had a class so our other friend had to wait for us until after school . And after school we were supposed to go there but due to bad weather we could n't help giving up to go to the skytower . Then one of my friends went home . It was good : ) I ate oyako don : ) The taste was similar to the one my mom cooks . Twitter is addicting / addictive ! I understand that Twitter helps ( to ) connect a lot of people , but I think that I am spending too much time on it lately . . . I want to use this tool to study ( and communicate using ) foreign languages too . I usually have lessons on Thursday , but I could not last week . I woud like to buy and enjoy cakes with my family again someday . First of all I have to overload my hands with iron and at the same time I have to decide the problems with my studies , which I was forced to skip for couple of weeks . I like listening to music by bands such as ' the Offspring , Weezer , Sum41 , Simple Plan etc ' However , my co - worker suggested that I should go see a doctor again to see if I have H1N1 . My husband brought my nephew , niece and my daughter At the beginning , I felt nervous and did n't know how to talk with them . I have a lot of things I want to talk about with them but I do n't know how to use English to talk about it . My sister introduced this website to me . It 's my understanding that they are identical , but my Canadian roommate said that they were different . Do n't worry my babies , It 's not a rat , It 's certainly a cat . Now Minourou is like our pet , he comes and goes as he likes in our house to receive hugs . and sleep if he needs it . He is a very social cat , he loves people , he 's a real well known cat in our street , because he stays under the hole near the pavements in order to receive caresses . Fortunately , conditions were good in Fukuoka , and I was able to get good pictures of the sun . Then the man waves ( his hands ) to the woman and maybe that disturbs the woman . Michael Jackson I think Michael Jackson was a great pop - singer . I took a lecture last thursday . I 'm not interested in their job , but I learned some important things from their lecture . and , finally , I Do n't give up . I will never forget their words . Starting Lang - 8 for studying english I have n't used Kansai dialect in a long time , because my wife hates the Kansai dialect . It is international language , but I plan to learn french For my laziness , I always watched funny films and cartoons only . I bet you will get a lot of chocolate from your students . Nowadays , I have have been thinking a lotabout my plan to go toKorea . Hello _ ! It 's difficult for me to find a topic . I 've been playing a game made by another country recently . But I 've not improved my speaking or writing yet . In 1192 , Yoritomo Minamoto who was a general designated by the emperor of Japan established the shogunate in Kamakura . While I was surfing the internet , I saw one interview about Dr . I really want to have a cat but my apartment does n't allow it . I planned to go to Okinawa this coming October . But I had to cancel my trip due to the Swine Flu . I said , `` I know that because I sometimes read English journals . This is his diagnosis . What is the medicine ? Unfortunately , there were only four of us from SPARKS there . Lack of time to study I was learning English compulsary in primary and high school . A First day of language school One day I went to a popular Japanese restaurant to have lunch . I thought that `` this was ridiculous `` , `` it was normal she did n't do that `` . To my surprise , I got an e - mail from her . According the e - mail , she is also university student and she studys economics . We had turkey dinner and had a great time . I do n't remember the conversation in detail , but it 's true that I love her , not just like . Although I lost 300 dollars , it was a great fun and new . experience . - helps people train their characteristics . The world of games is like a minature social life , which has good , bad and evil so gamers will know that they should protect good things ( or people ) and fight bad things ( or people ) . For example ; I have managed to develop a good habit during the month . Many people from different backgrounds and places chat with each other there . Although he was small then , he has ( now ) grown up . Do you know how to help a workaholic ? I think my mom is a workaholic because she works most of the time in a market . She generally gets up very early and stays at the market from 7am to 4pm . There is always something else to do such as shopping and fixing electronics . She goes to different places to get everything fixed . Do u think she is workaholic ? Because the major I study in is software engineering , and my favorite part is mobilephone , I set my target on mobile phone and pay all my attention on this field . The artist debuted with his first album `` My World `` which was published in November 2009 , November . It was a night of miracles , because Bieber become famous when his mother uploaded the video with Bieder onto the site youtube . Until now it 's been / I 've found it comfortable enough to just sleep , listen to the radio or music whenever I was alone on the bus . Then I sent a message to her . It sets people 's nerves on edge ! Let me relax myself for the first and only time . . . Thanks to you and myself . . . I have camped at Jecheon in Korea with my family for the first time . The next morning , when my children woke up , they were surpised . They were delighted because they could play ball and swim in the valley . Maybe it 's a bit silly , because all my life is ahead . Have some jealous ? What is the difference between accident and incident ? Of course we would n't have as much vocabulary as we do now back then . Have you ever been confused about the use of prepositions ? And best time to be home next to laptop with coffee . . . Almost all the costumers need new paper money for ' ' OTOSHIDAMA ' ' , money given to children by their parents and relatives in the new year . On TV an expert about the human body says that Americans and Europeans I could n't find a promblem . I was relieved when I was able to talk with them and knew that they were alright . We stayed for a long time . About morals and ethics But I think , conversation camp was the biggest help . Do n't be cold and be gentler . We played basketball in Dokkyo university . I thought that I need to practice more . After much consideration , I made a decision that my favorite food is Coke . It is brain exercise for me . I can also teach Korean to you . We should be delighted with their creative ideas so that we can get more relaxed on our free time . Yesterday and today have been fabulous ! . . . I 'm enjoying living in Robe but there is one thing that I 'm deeply regretful about . I heard that we make one team with 4 player ( robot operater ) and 1 tactical operator . Second step , I am looking for the internet website that able to write english diary easily . I want to improve my hair . Do you know how ? I want to know . Habits are very important in life . feel substantial and get a big harvest . Listening to the sound of waves . Unfortunately THE BEAUTIFUL BAY will not belong to everyone because it was constructed for the hotel . The beach will belong to the hotel owner . The beautiful sea will disapper . Shrek 2 I saw `` Shrek 2 `` last night . He was paying attention for the cars but he didnt notice the bikes . He stepped onto the road and there was a loud sound , the honking horns ( from the bikes ? ) I was looking forward seeing two star players , Rose in Bulls and Nowitzki in Marvericks . On the other hand , compared to him , Nowitzki has not as speedy plays as Rose 's , but his fadeaway shots , shoots with body staying behind in the air are UN - stoppable . Against him , Nowitzki also tried to shoot , but his shots were off . There are several categories . Example : Animals , Health , Family relationships , etc . Yesterday middle autumn festival was held , so all of us went together with to celebrate . Recently , the bathtub in my house was renovated and I am studying Vietnam I do n't like it very much because it tastes child like . Although I have n't seen any American style shortcakes here in Japan , I guess I prefer American style to Japanese . I 've already known that is really stupid thinking because I 'm definitely a stranger in Australia moreover ca n't speak English fluently as well as I 'm surely one of the laziest people in the world . The view from the school is pretty beautiful , there is mountain behind the buildings and blue ocean facing . I thought that I would have to write it again because the diary I just wrote disappeared when I clicked `` publish `` . Although there were some words missing , at least I did n't have to write it all over again . but the point is , in the related photo , one can see obviously the traces that the photo has been photoshopped , for the three officials are flying in the air . Then , this caused a new bash of photoshopping in the Chinese twitter - - - - - - - Xinlang Weibo . This country is boring for me because I know almost everything about my own country . I feel dizzy and down . I need to go to bed earlier than usual . Unfortunately , everyone forget that day . I was unhappy about that . So , I asked my best friends about my birthday in yesterday . We 'll arrive at my house at 7 : 00 pm and will go to Naeba in my car . Finally , want to have a good trip . Recently , I skipped writing a diary . I was very busy recently , so I skipped writing a diary . I often say `` I beg your pardon ? `` . At first , I thought the tactic did the trick , but no sooner had I tried to bring it to the window than the spider started to hang from the pen with its thread . Now I 'm studying English vocab , but I ca n't memorize it because I 'm getting sleepy . Using prepositions is difficult for me . Because I will take an enterning exam for university . To solve Japan 's English test , we should practice how to solve grammer . practice and a rewarding dessert Sometimes , I feel pessimistic because of my bad pronunciation . my teacher 's guiding . I like Carbonara , do you know any other delicious recipe for pasta ? I 'm sad when I order soba and I get very little of the toppings . Yesterday , I was free . : ) Therefore , I studied English and Korean . With its popularity , Kokyo - Running is producing a lot of money . And of course , they buy their running shoes and running gear . that is one of the reasons I work there . Although we are a very short distance from each other , in reality we are very far apart . I do n't know how to shorten our distance . Good morning everyone ! ! ! ! I must get to there by 1 PM and also I got up much earlier than before in order not to miss the train . Generally speaking , if the man has a date with girls , he would get there before she does . It was the most embarrassing time for me in my life . Presentation on Monday to my CEO There will be presentation about my job on the next Monday . ( 22nd June ) I am not good at presenting in English . But , I 'll be a host for the first time so I do n't know anything about it ! How does a gallon compare to a liter ? There are many reasons : They are teaching / We are learning the alphabet right now and the days of the week . I recommend you to visit it . My job is to be a clerk in a convenience store . So are there any architecture students or architects here ? In spite of the great destruction _ caused by _ WW2 , lots of historical monuments were restored and are now kept in order . last time I cooked , I tried Thailand Curry soup , and today it will be japanese sushi . Do you believe them ? I often find my favourite musician 's video clip by chance , which ca n't be found in the ordinary way . - - as it is too old , not in sales , or discontinued . interpersonal relation Its really difficult to deal with people . He said he mixed grape juice , coke , Karupisu , and melon soda . In fact , I wanted to watch ' Avatar ' , but it had stopped showing in the cinema . guys , today is Christmas , merry Christmas , it 's a happy tday today , enjoy it . The system of reward cards is so effective because it ensures repeat customers . Start writing a diary I have beenthinking thatI want to write a diary . I remember that my parents tried to give all of them away , and would n't let me keep any of them . When a friend of my father came to our home to take the remainder , I believed that if the guest could not find them , I could keep them at last . My and the others ' cell phones suddenly started ringing loudly to give us the earthquake warnings while we were stretching in the gym . She explained to us that the lights on the ceiling were very dangerous , so if you felt a big earthquake , please came out of here and stand next to the entrance . He 's out - going and likes to communicate with others . And I 'm going to study abroad in Boston in September of this year . please check my diary . Those were lovely memories He studies at a university in our prefecture . We enjoyed his message on the cellular phone . The world history test was difficult for me . Today I watched AVATAR When can we Earth people become harmonious with nature , at on with the animals and plants ? There 's a reason why I learn English , and that is because I want to become a great developer . I hope many people outside of Japan learn about anime , manga and Japanese culture . I do n't want him to be just a substitute . She is also a beginner , but she has already had some golf lessons from an instructor . ~ that I can easily tell the difference . My friend and I are planing to go snowboarding at a nearby mountain . I ca n't speak English , So , I need my friend 's speaking ability . By verbal communication . I first listened to Avril when I was a junior high school student . Although I know it 's necessary and helpful for me to get license of the apparatus , but I just ca n't raise my interest . but it was very exciting ! We ate lunch then after that we met her husband and we did some sightseeing in San Francisco . It was very wonderful . And we went to eat dinner IZAKAYA ( Japanese food ) in San Jose . I glad you corrected my sentence diary before . But I ate too much ! I had potato chips , chocolate , and pockyX ( Lately I exercise to core rhythm . I 'm a big fan of Michael Jackson . We can view the superb landscape from the observation area / deck just like the Tokyo Tower . Additionally , the invention of the airplane led to the reduction of the amount of CO2 emitted into the atmosphere . However , during most of its flying time , it uses the neutral wind in the atmosphere and does not require to use its engines to fly . Therefore , the amount of CO2 emitted by an airplane is much less than using a car or ship to travel the same distance . I 'm transfer student from Japan so I am a junior and my major is Psychology . The title is `` Gay referee `` . I could n't help laughing when I saw this at first . It 's the first diary ! I met old friends in Shinjuku ! I 'm very tired . Of course parents have to train their children to be good adults . Friend 's father : `` what is your name ? `` I was very surprised lol My friend 's father was a gentleman like British nobles . I have few chance to communicate with foreign people and my classmates do n't want to spend much time learning English . I am learning English . Do you have any travel plans ? My company is a large employer and the CEO resigned for health reasons . Your country has provided technical assistance to developing countries , right ? The Japanese have thought of sakura ( cherry blossom ) as the flower which symbolizes the nation . But , there was no officiator so it was interesting I have a pre - level 2 English Language Proficiency test on Sunday . That means our item has potential , and we could get capital support . I need to keep up with studying English ! n I 'm always nervous when I 'm trying to speak in English . One of important point of presenting is to use simple and short sentences . Next , I put data such as `` logos `` `` pictures `` and `` links `` all in the same folder . my hometown BUSAN Hello everyone ! ~ Today I am going to tell you about my hometown , Busan . Suddenly , I wanted to eat fried chicken ! The bakery sells fried chicken . My favorite options are clinical psychology , industrial psychology and social psychology . When it comes to English pronunciation for non - native speakers , the ' El ' sound is one of the most difficult consonants . Is it understandable if I read them without the ' El ' sound ? I 'm surprised that my Japanese entry had been corrected by a netizen last night . I 'm gon na Edinburgh ( The capital of Scotland ) on thursday with some friends . Her wedding will take place in northern Ireland . It is far from here ( Dublin ) , I was surprised to know there are a lot of people who want to learn Japanese . I thought that learning Japanese was difficult for native English speakers but as I read their journals , I saw that they have seriously been learning Japanese . Now , I 'm attending both Buddhist temple and Christian congregation . The believers are forbidden to smoke , and male attendants must wear neck - tie at every congregation . We got to learn its doctrine deeply before we become believers . I hate to tell either group that I am not interested ! Then , she emailed me for replying . I 've been suffering from a lack of Vitamin B1 . this morning I met my chinese friend to go to a exhibition . I have been living in Los Angeles for three month already . But my English is still poor . about my lunch . So , I bought lunch at NATURAL LAWSON . I had never talked with English speakers before , and I 'm terrible at English . There are many people which are not able to rent any flat in Moscow therefore a campus is the ideal variant for them . Today , I ate Mister Doughnut with my friend . Recently , a new doughnut was put on sale . My friend ate `` MOSDO `` , which was collaborate Mister Doughnut and MOS burger . Something happened on the site I Continued and the education at high school and university . Today I waited for my girlfriend at the station by the university , and we went to McDonald 's . Of course it 's cheaper to cook at home using ingredients from the ' fridge rather than eating out , but I know very well the taste of food I have cooked . We put our small stones on Kanaeisi and prayed about our wish . and the waiter serves you the `` tapa `` - it can be anomelette , sausages , bread with ham , etc . It was an opportunity to acquaint myself with everyone some more . I played volleyball , basketball and watching movies . The doctor prescribed some medicine . In last sumo tournament , he lost easily , so media said that he had to retire because he become weak . But , in this sumo tournament , he won the championship . People are willing to study English , Reading , Listening and Writing but not speaking . The first factor is that people shy and have less confidence when compared to foreigners . hired at first sight ? I think I was calm when introducing myself . If there 's `` Love at first sight `` , is there any interview called `` hired at first sight `` ? I want to wear it and work at there early . This isbecause I like to talk topeople . Therefore , summer vacation is boring forme . I love him even though he is very naughty and I can feel that he loves me too . I 'm a social smoker . ' Are you available now ? ' This is my first time to write a diary entry on internet , so I have no idea what to write . and talk very smoothly . Secondly , I am interested in the NY because it is the center of the world for the economics field . This weekend I stayed at the school . This is the first time I did n't come home on a weekend . Next week I will prepare for a final exam . I would appreciate it if you could check my diary . Last Friday , I met one of my university classmates . So , I watched my favorite American TV drama ( to motivate me ) / ( as motivation . ) When the fertilization succeeds , the pumpkins ' babies will bebrilliant . By the way , human girls in love are brilliant , right ? The pumpkins are in love and brilliant , too . So , it was a great privilege for me to be there and I was also very happy to see that the two of them looked like the happiest couple in the world ! Today 's seminar just ended . Every time the seminar finishes , I feel like I should have studied more in depth . My friend invited me to go to see a football match `` Brazil vs Scotland `` He is from Brazil . After school , I talked with my friend in a cafe . I have been waiting for the D - S company 's response for a long time , but I have n't received anything yet . Because it 's a big multinational company , I think it would be a great chance for me , although the position is n't as good as I thought . I love Indian dishes , especially Curry . I heard that in India vegetarian food is very popular . So I went to India this summer and enjoyed it . When I stay at home instead of staying at school , time passes so fast . But I 'll keep writing to practice my Engilsh . He also speaks English . I was suprised to see how different Okinawan customs and culture are from that of themain land , where I lived before . One of the main differences is MOAI , which is similar to privatized insurance coverage systems in other countries , but with some differences . If one of the members is havingtrouble economically , he can receive money through the donations made at the party . Lets start studying English ! ! I am beginner . - - - used at a restaurant - - - I prepared to leave for the station and slipped on my shoes in a hurry . It was an interesting and slightly embarrassing day . The movie was called `` Inception , `` and it was very interesting . I recommend it . I will change . The Englishman who is a member of my gym came to do some training . He taught me some English words today , too . `` Consult a dictionary `` sounds too serious . I would talk with him using the words that he taught me today . Of course , I went to vote for a mayoral election . The answer starts with yes or no . I would like to speak English more ! `` Hello , my name is Abby , a high school student . By the way , yesterday , I edited a film that my friends and I took . I especially enjoy making scripts for listeners . At night , my next neighbor always was annoying me because he played games with his friends which annoyed me , but he disappeared lately . Anyway , I felt a kind of healing by watching such cute , adorable fishes , birds , and mammals . . . My God , I 'm going crazy . My first writing My job is a doctor . most of the ambulance users are patients of mild disease that don ` t have any need for it . Japanese society is aging rapidly . Is your country 's ambulance system free or not free ? I am thinking that 's bad for my body but I can not stop drinking coffee everyday . I 'm a university student in Japan and want to be major in control theory . I put in more effort in indian english literature , so my dissertation is related to this . There were many Manga pictures that were drawn on small or large papers . I enjoy working there because I ( get to ) see many different people every day . when I got back , I met a breakfast seller . I went ahead and bought breakfast for my friend , but when I gave the money to her , she charged me more money because she thought that I did n't know the price of the breakfast . It was so bad . When I was a high school student , my team won in the national athletic meeting but I did n't paticipate in that ! ! But to join this company , I need to acquire English . I want to make you an acquaintance ! today , our customer manager came , he asked me some questions , and then he asked me whether I 've began my foreign trades or not , I answered ' not yet ' , at the same time I felt so ashamed . In order to receive a present from my friend , I went to Hibiya station . The present was some uncured hams and cheese . Of course , I also taught him Japanese . I gave up doing climbing because my hip was still in pain . I joined the English conversation circle in the morning . I better work hard because I need lots of money . Local people may not think they are interesting but I do . Sobald ich mich entschied hinauszugehen , fing es an zu regnen . Ich bin eine faule Person . My listening / speaking level is very poor . . . I go to middle school as a volunteer on Friday mornings . ( every Friday morning ) Certainly I know it is important to do so to improve my English . It may be fun for beginners to talk such as things . Do you have any ideas and can you recommend something to me . Wednesday - - - present a report of China and Macao I must go and do something for my studies . So I live my life as usual after the disaster . Even though I feel sorry about the cancelation , I will cancel it because the Australian one is a better program considering more earnest students of English will gather around it than the Davis one . . . . in order to know more about the difference between theory and reality . I used to think that working in a library must be boring , but after a while , I found that every job must have its boring or mundane part . But , every job also must have its meaningful part , and how much you learn from that job depends on the efforts you put in . As for those earrings , do you think they | fit | him properly ? I hope he over come wisely . These days I have been very happy because I made many friends here . . . lang - 8 is really a beautiful website . . . On this website I 've met a lot of native English speakers . . . . it is so cool . . . Where I am the time is 1 : 34 . . It is very late , but I 'm not sleepy . . I just rememberedthat I have n't written a new diary . . so I must do it . . . Usually I think dogs can be good friends with human beings . . . They are loyal and they can do things that people ca n't . . Maybe some of you like dogs too . . This is more like Google than the one that was created originally . In addition , excess money means a student can enjoy his campus life . Second , a student working as a part time job has a chance to expand his relationships . They can learn a lot of things to be required from a company throught a part time job , for example communication skills , experience in varous jobs in various office shops to get a better idea of what kind of job they want . But we cooperated and cooked . I can encourage their protest and criticize the dictator immediately by writing an encouraging comment . I 'm looking forward to that ! We were very very tired , bacause there were many steps in front of the shrine . Especially my wife was so tired , because of the baby in her stomach . I had learned early on that it is a common convention to do volunteer service in communities in many western countries . Further efforts are needed to spread the concept of volunteerism among people . In many ways , voluntary activities are always linked with official factors which can be an obstacle for people to be ( come ) a volunteer . For example , we are often motivated to do voluntary service to gain the edge on / over the academy in school . But evidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporeans hang out with Singaporeans , Indonesians stay with Indonesians , Vietnamese play with Vietnamese . And we are trying to figure out the most efficient methods to improve our speaking . SO , good luck for us . Ninjas still exist ! ? Then I will call my friends to tell them I have just arrived in sun city . I plan to visit the Grand Canyon . I could n't stop tearing up when I thought of Jenny 's sad life and Oliver 's feelings after he lost his dearest wife . ' ' The time when you think it 's late is perfect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' There was one thing I could not understand , so I went to my school to study it with some books there . I think that as far as temperature , my country is about 10 degrees C lower than here . My house is particularly old and too big . . During the lesson , I I became calm . So , I going to my parent 's house to join a oyster party now ! Am I am getting old fashioned ? ? ? I am very / feel dreadful . During this idle time , I watched T . V . In my school it is tradition to wear something green . Tomorow will be an easy day . It was a very enjoyable time . Today , I had surfed some sites and I found Torrent . So I downloaded some dramas about 70GB . But I hardly speak , hear , and I 'm not good at reading and writing . The unspoken , passionate coherence which unites a large numer of people , is one of the most fantastic parts of going to a concert . If there was less furniture in the room , it could reduce the time needed to clean the room . Although it was quite late night , we discussed lots of things such as religion , national spirit , as well as ourselves . be American actors ( such as Keanu Reeves etc . ) It 's my first time writing in this diary ~ I hope to meet other friends meet unexpectedly the author introduced this web page , so I ' m We walked to Kine Naoto 's open air concert tonight . He is member of TM NETWORK that are very famous in Japan . The open air concert is held by volunteers every year . But the concert may not be held next year . I hope that the concert is to continue . My favorite story is `` A Study in Scarlet `` . Moreover , I have other parties and events for Christmas this weekend . Ten years ago , I watched the TV with my family when the second airplane crashed into the twin towers . I never thought that suicide terrorist attacks would happen in the US . The terrorists made airplanes turn into missiles and destroyed not only the world trade center but also other important American facilities . I think the difficulty of English for most Japanese is pronunciation . We Japanese start to study English from junior high school days ( 12 years old , but now it got changed to earlier ) translate to Japanese . The pronunciation was ignored ! because actual native speaker ca n't understand badly pronounced English like I do . . . I read books written about some scholor 's theory and try to understand the rules , ' When you pronounce th , your tongue must be between your teeth or something like that . Today , I watched the soccer match between Japan and Korea . If I knew how to use foreign emoticons , _ I can describe my emotions clearly . It made me amazed and excited . I think its opening movie is the best one in any japanese anime 's . Today , the professor of the energy transforming engineering class told us some of his doubts on global warming . This PIXAR movie contains fellowship , environmental issues , problems and love . On Saturday , I had a barbeque near the river . Therefore , astronauts should have the ability to solve difficult questions / problems . Because I have made many friends among the people studying Japanese with me . I have always thought study is a tearful thing . Tomorrow it will be fine all day . My grammar is bad , that 's why my article is very terrible . My English teacher always want me to write an English composition , but I am scared about it . My father took me there , and my boss was waiting for me Okay I 'll explain this . I like traveling around the world . Tokyo is Japan 's center of fashion , show business , economics , and politics , but the center of American politics is Washington DC . My memory of a trip . It is located in Palo Alto , California . During the Gulf war , because we were not able to dispatch the SDF to Kwait , we assisted Kuwait and the international force with a plenty of money - - more than 13 billion dollars . ( After the end of the Gulf war , the newspaper in Kuwait listed the countries which had assisted them on its paper , but there was no mention of Japan . ) I 'm confused . I met friends from university days from five years ago . Our company holds English classes twice a week on Monday and Saturday . In the Saturday class , there are only 3 or 4 members registerd . I 'm Surprised ! Every day is a pain ( Okay , the dictionary translates like that but I would n't say it 's a pain ; too powerful a word . I 'd say it 's crap . ) because I need to find a topic . Yea , rebellion ! Yeah , typos ! Dear reader , if you have sometime , do n't hesitate to read my last text about the Wild West because I had no correction . Boo - hoo . ( really weird that onomatopoeia , I do n't think about someone crying when I read that , a barking dog instead ) When I got here , I found the people here are so friendly , and I believe that my English will make great progresses ! I like seeing street fashion pics . . So I often go on street fashion webzines and buy fashion magazines . It is very interesting how people wear clothing . So if you are curious about young Korean fashion trends , I recommend going to that site . . I think there are people who wear various styles of clothing on this site . I went to London four years ago . Modern museum there is very good ! In the former situation , there is a `` Wow `` , and in the latter , `` Olleh ! `` . I will continue to write this . Everyone , please be careful ! Japanese summer 's are very hot and humid ! Did we copy the European style ? For all intents and purposes , it 's arduous for Taiwan 's baseball team to defend against Korea , which recruited many elites from KBO and MLB . Hi , I am a Catholic . I always go to Catholic church on Sundays . Catholics 's name is Francesco of Assisi . They have a lot of fans who like 2PM 's funny shows and unique character . They have culture - centered projects like graffiti , hip - hop dance and movie making all over the world . Yet , The question is always be answered by asking this question : Then I would have brought more advanced technology back at the ' same ' time . . . . . . . is it an endless loop ? Of course , all of this thing I label it with ' I think ' , because I have no confidence that I could represent these correctly and exactly . mina san konnichiwa kyou , boku wa anatatachi ga boku ni tsuite mo shitte hoshii kara , boku no shumi ni tsuite hanashite mitai to omoimasu . Watashi no geinoujin no keiken wa takusan dewa arimasenga kodomo no toki kara hajimemashita . Watashi no gakkou gekijou no kurabu de , 9sai kara , takusan no katsudou wo shimasita . mata tsune ni shuyaku dashita . Today I told about trains which are the main transportation in Japan . Some people say `` I do n't have a favorite color , `` which I find unbelievable . It says that this color gives impression of cowardice . It was because she was in danger due to a life - threatening premature delivery and her fetuses needed to be taken care of in the NICU ( newborn intensive care unit So I made the decision to become a fire fighter ( It 's very suitable for my character . ) I am waiting to call the fire station . They are very beautiful . I 've never been able to part with those cards . Use Google to find some Linux distributions compiled for non - geek users . The visa system is discrimination on the national level ! If cases when you do n't need a visa are an exception , however , you will understand my feelings . The two reading tests were worse and worse . Theoretically , it is the easiest task but I got just 2 points out of 10 . I 'm very sad . I think that Tatsuya is lovely ! Mainly I want to go shopping , view the very high skyscrapers and go sightseeing . This year , I aim to get a TOEIC score of 800 points . My favorite musicians are OASIS , The Beatles , Ashlee Simpson , I can send my money to China by an illegal method - - we call it the `` black market `` , but you know it 's illegal and it will cost me too much . So masterful . I am a temporary worker now . The exam was about general knowledgeand writing . Ofcourse , I shouted `` No way ! `` haha : D From there , I write sentences to describe my ideas . I used to make rides by using vegetables which are looked like a horse for my grandmother to ride when she comes here and goes back to heaven . My lunch was pickled cowpea with some meat and tomato egg soup today . But I did not go to the gallery because I was lazy . I decided to go there , but now I do n't really want to go . First time I got interested in it was when I studyed at school and joined an english study group . Then , a few years later , I went to Germany through international exchange , there I had to communicate in english cause my german was even worse than my english , and my language barrier was broken there ) Prepositions and phrasal verbs - that 's what is driving me crazy now % ) since Edison 's great invention ( mmm , is this true ? ) . the situation where you do n't sleep all night long In Japan , fake erotic crimes have been growing into public problems and many accused victims end up getting arrested . I do n't know why parents treat teenagers like children . Gambling is frightening and dangerous , the goverment is trying to deal with it , but not successfully . . * Plener - painting of countryside or of the streets . The scientific name is Bellis serenis ( Perennis ? ) I heard Google , the giant internet company , will release a brand TV service called `` google TV `` The idea is very simple ; it 's just putting internet functions on TV . Google TV seems to offer us a user - friendly interface and enables us to enjoy internet videos on TV . But I think the Youtube videos are not high quality videos , so it 's hard to adapt them to HD TVs . My son appeared in 3 games . At first , he ran the 15MR race . He got off to a bad start . Then I realized that I should use new vocabulary when I learn it . I hope it will help me to acquire new vocabulary easily . I deplete so much of my energy when I read English articles because of difficulty . I used new vocabulary of `` deplete `` , precipitous `` , `` retiring `` as well . Nevertheless , I like to study English . They are very worried about their future . I wrote some English sentences . He taught English to us by using the book . In this class , it was impressive for me that Simon & Garfunkel 's `` I am a rock `` was taught . and when I 'm active , it 's very painful . after about 2 weeks exercise , I feel great . Recently , I 've been thinking about how I used to live in Japan . Next , we shot the soccer - ball , and touched the boundary markers with the ball . My father is a public servant . He supervises civil construction . He is familiar with cars . My name is Roger , I graduated from the Maritime college . together . It feels like whenever she wants something - even a big item - she just buys it without shopping around to compare prices beforehand . I have been thinking whether to buy ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convenient and useful . The distance was about more than 50km ! If you want to join this activity , you need to buy your bicycle . But general bicycles are no use . You have to buy a sophisticated bicycle which can go in all places , like high steeps . My bicycle cost me 62000 yen . because I 'm here . Once a foreigner talked to me in English , and I could understand him , but I could n't express myself . Because of the earthquake in this year . But many people do not go abroard . And I liked the dessert called Kazandibi . He told me `` Your mother is frustrated right now . Japanese cooking uses soy sauce and sweet rice wine . I worked on a program in the afternoon . I made an appointment with a person in charge yesterday . etc . are also in existence . Believing in Jesus is cool . I believe in my God We can share our secrets together he had thrown it away and went home . * I guess * I feel uneasy about my future , because an important exam is coming near . How should I try to work hard ? Do the benefits of genetically modified crops outweigh the danger ? After job Then we can each talk about our jobs , ideas or anything else freely . Baba is like a priest . I could see the fast river from one of my windows and the mountains from the other window . This is the first time to write in my diary ! She spoke English so fast that I could n't understand . It is very cold at the office because of the air conditioner . ( by the way , Do you know about `` UFO catchers `` ? It has no nicotine or tar but it glows red on the edge and puts out smoke . I went to school yesterday , It is much easier to catch a precise meaning when we study using a introduction written in English not Korean . I have a medical test tomorrow . but here was my weekend : I did not study hard . I was searching for an internship job recently and I got one yesterday . Finally , I work as a information collector . May told Guy that she wo n't come to work tomorrow . Oh , what should I do ? Should I continue ? The work is boring and repetitive . Today 's fireworks are so elaborate , and we are very impressed by them . We wanted to speak to them , but we could n't because we could n't speak English well ! I have not written daily for Lang - 8 . I have been thinking of writing an entry during these two weeks . I 'd like to continue this daily . I bought clothes yesterday . I am wearing it in my room recently . Am I sick ? Why do I have two conflicting thoughts in the day and night as if my brain separated into two pieces ? Momentarily , I wish I would not consider the complicated love without end . I just want to come back to NanNing as soon as possible ; I just want to date Evan ; I just want to go shopping in the Intenational Trade Center ; and I just want to do my own business . Love is not just magic but it is something you have to keep . We have n't met for a year , so I was very pleased . And I thought that they are trying with much effort to improve their English skill . The contents were about how administrate the seminor in this term . I went to traditional market with my wife today . We bought vegetables , squid and apples . First of all , most of them married among the attendants to keep their community . So many Peranakan Chinese learned English . Many Europeans hired them as translators . Hahaha , I just watched the first episode of `` Primeval `` . A few days ago , my oldest son had a stye , today my second son got an infection of the middle ear . Fortunately the ear clinic opened , I took him to the clinic . After entering university , I rarely read English stuff , except for those news about my beloved singer . I am studying English for the TOEIC test on January 11th . I work at a clothing store in large shopping mall , which is turning 20 years old at the end of this month . Despite that , I was not able to keep myself from getting bored . I am a Chinese girl living and studying in Beijing . I have trouble in English . I want native speakers and people who are learning foreign languages to teach me . I often hear that English is the most important language of all to learn in order to succeed in the world . I am very sad , I recommend this Manga to everyone . I 'm looking forward to seeing them . I 'm a Chinese girl who is learning English and Japanese . I 'm so happy to join to this site and I 'm so interesting to recognizing to another people from all the world and finaly Ifound group who interesting with reading books I like reading so much specially novels and stories thank you and I want to be a friend Last year , I went to Anchor Watt , which is one of the most famous ruins is a city near Anchor Watt , and went to the ruins by bicycle . I looked around not only well - known spots such as Anchor Watt and Anchor Tom but also little - known historical sites , stopped by villages and experienced some adventures like encountering cows in the jungle . I stayed in a city near the historical site and went to the central market there before going to Machupicu . We immediately became friends and I promised that I would give her a souvenir , a book about the Inca Emperor , after I came back from Machupichu . Actually , I ended up not being able to meet her again because she was in school at the time I visited her , so I left my souvenir with her mother . Does it exist in other countries ? The other day , I was watching a variety show on TV and an Australian comedian said this proverb . I expect it does n't exist . My company has high tolerance for diversities . The fare I paid for the cab is half as much as the fare I paid for train . And if we do it . He will give us happiness , and Heaven after death The last prophet who sent was Mohmmad . But I rarely use this machine , because I have a lot of gadgets . In evening , we went to the eel bowl restaurant near my house . We arrived at the restaurant am at 5 : 30 . The restaurant opened at 5 : 00 . We were suprised that there was a long line in front of the restaurant . Just 30 minutes after the restaurant opened . I have to check whether the wired funds were received into my account . I hesitated as to whether to buy or not to buy it for a long time , and I decided not to . Little by little English is spreading through my mind , and the more I express myself in English the easier I can listen to it . I hope I 'll be helpful : - ) I just registered on this site to learn English and to communicate with people from other countries in English . But first , I have to pass the oral examination on May 14 . but this is a different country . By the way I ` ve been to Singapore , Guam , Korea and China . I felt very good about my Chinese pronunciation . And I also realized what a small world I 've been living in and I want to explore the bigger world that is out there . Which Devices Do You Recommend for Reading Electoric Books ? iPad or Kinddle ? We cooked bread , tofu , and Zoni which is a soy sauce based soup in a baked rice cake . However , we were all smiling and it gave us a happy feeling . but other options are not perfect . ( My goal is to study Medicine , which is why I need to get my English upgraded to a certain level . . . America has decided to send more humanitarian aid to Pakistan to put a dent in the anti - America sentiment . Not after long , I got a chance to go to Cambodia for 10 days as a mission trip . And I felt shameful about my very comfortable life . So I want to study English to get a job in this field and help many people in the world . The new term is the time for me to make a new resolution to stop playing online games . So far , I am pleased that I have resisted the temptation of the game for a week . To be honest , I am not sure whether or not I will stick my resolution for a long time . None the less , I 'm taking French lessons , I am thinking about the party after class . K who is the organiser of today 's party asked me , whether I will come to the party or not . He and my classmate said something , but I could n't understand . In France , women kiss my cheek . I was very embarrassed . So if you hope to work at a large company , I think you have to have excellent abilities . A : It is a different mindset , going on stage with the band , as opposed to going to a studio . . . . They will speak fluent Japanese in future . s : The food in Australia is not to my taste at all : < It 's so oily . . there are lots of Chinese or Japanese restaurants except there are no Korean restaurants . Just now I saw the news of Pina Bausch 's death while browsing the web . Some kind of beauty , understanding , and immense love , has gone . This is my first time writing something here . The examiner asked me something ( I forgot lol ) . I answered , `` there are many costs to make a mascots . `` These castles had been created to collect taxes from the ships that passed through . We were on the course best suited for sightseeing because there were lots of these ancient castles . The reason for which they were created is terrible . Wakeboarding is not a popular sport in Japan but it is a very fantastic ? sport . Anyway , The performance was interesting ; I had dinner with my friends , and we At the company my trainer called me and blamed me about the car details . I must check before giving details to her . You know , when she is training me she never teaches me a lot about my job , since the first 2 days . She would like me to be perfect at the job . I do n't have experience so I do n't know how I can be very good . I would like a long time to become perfect but she does n't understand about that . I would like to be able to speak and write English very well and then I can find another job and leave the company . I do n't like the people , I can not accept insincerity . I would like like to punch her before I leave , too . I 'm joking . I just realized my journal entries are becoming to 443 stories already . But I think I need to learn English from a professional English teacher . Finally , she said `` I 'm looking forward to seeing you . `` This is my first diary in English . Making imitations is very bad but in cases where they can make lots of people happy , I think copy products are okay . Is her disappearance really not sad ? I then tried to examine this thesis . Then I thought : Do I really play a role in my family ? She laughed and said : I left you some spaghetti bolognaise in the kitchen . I know your stomach by heart ! And as I dug into my spaghetti , I thought about something else . It says the existing education system is for training professors , researchers and laywers . Most people enter graduate school becuase they enjoy synthesizing and analyzing information . They like to read , write and debate over academic issues . People in TWN pursue a master degree in order to find a decent job , including me . I really regret my decision to go back to school , but there 's no going back . I hope to finish my essay as soon as possible and devote myself to my career again . But these honey was really one drug for children in my childhood . Most supermarkets and shops are closed all day . In addition , I want to speak to people all around the world and to work in America . So , I need dictionary . I want a digital dictionary very much ! Personally , I think their view only partially true . We ca n't use a lot of electricity after the earthquake caused a fire in the nuclear plant . Since it was late and it was rainy , I decided that I wo n't read English today . To some extent , I am , but today my throat is still hoarse , so I chose to give up . After breakfast , I spent some time studying grammar as well as some reading practice and dictation exercise . It 's overweight for my height . It was a trap . Have you ever seen a Corolla broken down ? Of course , it 's good for our health . I eat it every morning with soybean flour and green tea powder . Yes , WRONG , I think . I was tired , but it was very interesting . Please be really strict with my written expressions , not only with the faults I commit , but also tell me how would you say anything if it sounds weird . I have to transfer gallons to liters , miles to kilometers , and dollars to yen and then make the calculation . This is a Japanese pop song . It 's usually performed solo . This is another arrangement . But I did n't spoil it . I like to think a lot about Miyazaki 's animation . It gives me peace in my heart and relaxes me a lot , though maybe some Japanese think that it is a little old - fashioned . I like to communicate with people all around the world and share the culture and life of different places . Absolutely , these results are not enough for me . My vocabulary is over 18000 ! ? I forgot where I heard about it , but according to some site , an average collage graduate native knows more than 50000 words . We were going to join a Glass Boat Tour , but we could n't do that because of the typhoon . Hayao power ! I love these movies because they are full of suspense , feeling and beautiful music ! I have Ponyo 's and Mononoke 's music and I listen to it every morning before class . I sprinkled a little salt and pepper on the fish , and poured some white wine . The doctor said `` she has the flu , too . `` . All employees attended this party . It 's a very important party becausse it expresses each person 's thanks to their co - workers . Then I noticed the cups and glasses displayed in the bar had some very beautiful and artistic flower paintings , such as orchid , jasmine , lily , rose , etc . Plus , the mashed potatoes were topped with brown gravy and it was delicious , very soft and smooth . So , I am learning to play bass guitar . at the beginning of next month . I fulfilled it successfully . I am too busy these days , so I have had no time to practice my English writing . Since then , I can concentrate on reading the book and understand what the author says clearly . I tried to make my friends , family , and myself . Swimming lesson . She goes to UNO while rasing her daughter who is just 2 years old . I really wanted to see her daughter . Her daughter was soooo cute ! ! Furthermore , she has so much energy ! She ran around the room , kitchen and the ailes all the time except during the dinner . hahah , I am sorry to leave for a long time because of my college 's military training . tonalsap lake rock ' n ' roll show ! ! Finally the day is coming , Tonalsap Lake Rock ' n ' Roll Show ! ! I wonder if the boat will go under . . . We already know the way to study languages . I know that listening to English conversation and speaking in English a lot are good ways , but I think memorizing is the best way . I think I would n't be able towrite diaries in English , speak in English , and listen to what foreigners say without memorizing English words and sentences . I felt like I was in a sardine can . An au - pair lives with the host family and takes care of their children and does a little housekeeping . but it 's a very famous program . I 'm seriously considering the au - pair program these days . In Japan , students usually have to wear a uniform from elementary high school students to wear uniforms . The Japanese education system puts emphasis on reading and grammar . He made a lot of friends who like to drink alcohol . I rarely drink alcohol but I thought it was good I am going to exercise near my house . They said , `` you can have a second interview and take a second written test . `` I have to review excel and word , and Japanese . I can not study and work at the same time because English fluency is required . English quiz Which do you want to learn , English or science ? After three months , you will have a skinny and healthy body . I will eat a lunch with senior co - workers who , I respect . A few days ago , I tackled the repair of my mountain bike . So I decided to overhaul it by myself . I like japanese culture and its atmosphere , last year I spent 3 weeks studying the language to see if I liked it or not . I liked it because of the way it sounded to my non japanese ears , I liked it as I learned hiragana and katakana but as soon as kanji began to show his scary face : D to me , I got disappointed and gave up , can anyone tell me why japanese people do n't use only hiragana and katakana to make their language easier ? If not , I 'll strongly recommend you to read because it 's very effective to improve . Second , you can increase your vocabulary much , much faster than compared to when you just write what you want . There is n't any comment for my previous diary . Please feel free to write a comment to my diary . For instance , plants utilize the light of the sun to conduct photosynthesis through thier chlorophills . The solar panels absorb the solar energy and generate some electricity without sustainable and possibly has the potential to enable us to coexist with any other creatures paticularly those on the verge of extinction . This may be belaboring the obvious , but the sun is the source of our energy . First , I must hand in the application for seminar by 1 p . m . We just decided to meet . Luckily , it did n't rain although it was cloudy . It tasted great but it was also expensive . Though English is difficult because it is so different from Korean , but it is interesting . It 's really wonderful ~ I played basketball with my classmates in the afternoon . I have never heard Japanese in the English song . but I do n't know the difference . Yesterday , my daughter took part in a Cheer leading Competition which is also an annual festival where the cheer leading team my daughter belongs to participates every year . The competition was held at the stadium called Kita Yell . The stadium was so big that my daughter got a little nervous . It 's said that a famous TV series producer has been producing several series which are all copied from classics . Im just writing this to myself , since there will be lots of people waiting to be corrected . I 'm mix ( I 'm not sure if you guys say mix or mixed but I 'll just wait until someone tells me : p ) Does it make sense ? ) In this case , what does `` lovely `` mean ? And , more sadly , now his wife and my aunt , have been diagnosed with lung cancer too . In conclusion , I will try to know about my own country in order to know about many countries all over the world . However , I want to enjoy this wonderful opportunity . This movie 's title is slumdog $ millionaire . it was not a bit of problem to me because I was full of expectation and pleasure that I was going to see the exhibition at last ! It was a very surprising and amazing artwork that expressed negative social trouble using fancy and unique colours . Whereas restaurant - delivered meals are convenient because we do n't need to cook . I can see many picturesfrom restaurants onFacebook . In conclusion , home - made meals are nutritious and inexpensive , so I agreethat home - made meals are thebest . We need to cook almost every day , but occasional restaurant - meals are enjoyable . I went to Breeze - Breeze which had a grand opening today . But luckily , she looks fine and feels just a little bit of pain . And I am a bit familiar with reading english using technical terms , but not of daily life so much , or politics , and so on . This afternoon , I had an oral English course . He is a very good teacher and I love him and his course very much . He said that it was not a problem and he hoped I would come back to take part in the class . I thought he was very friendly and generous . I like coldplay 's yellow , I wanted to sing that song tonight and record it , but I could n't sing the words clearly and fluently . I recall that when I was in junior high school my English teacher taught me a song named `` yesterday once more `` , and I can still remember some words so I recored it and uploaded it to my voice blog . I would like to ponder about the case and to hear your opinion ( if only my friends did n't lose hope to read something from me , sorry for my long break ) . But they live 5000km away from each other and do n't get the opportunity to pay visits each other often . YAMATO does vocals . My body is likely to be influenced by weather . But why at that particular point in time , prediction was important , is because it is closely related to my argumentation . I am disappointed in my English You said you can pick me up at the airport . Who will get to be the champion in Germmany GP . About a month ago , it was announced that Dragon Quest 9 ( DQ9 ) 's release would be postponed . The next series is supposed to be released by NINTENDO DS . I was fully prepared to buy it only for the purpose of playing DQ9 . I felt very sad because SQUIRE ENIX announced it . NINTENDO DS is the hardware which is worth completely nothing because DQ9 is n't released yet . But that announcement is unacceptable . There are many rumors about that on the net . I read many articles and thought about it . It 's the device by which we can play games without buying software . In the previous series , SQUIRE ENIX set up a provision against Majicon . In the start of the game , the ship where the main character get 's on did n't arrive at the harbor even if the player waited for a long time . The company produced the game like that in case that player uses Majicon . But I heard that the provision / trap was broken in 6 hours after DQ was released and was published on net . I think that SQUIRE ENIX is preparing for a complicated provision next time . In general , high school does not have a professional career conductor in each schools . However teachers also have their own work for everyday tuitions ( ? ) , and it seems to give them limitation on working for their students who have difficulty thinking on their future career . Therefore , it is recommended for teachers to share the work load with professional career conductors , and teachers will be able to reduce their amount of work . What do you think , are they alive or just an imaginary animal ? If god , ghost and creator from outer space are in existance , it 's only natural that a Vampire also live somewhere . Does it sound weird ? I understand that I can use 20000 yen for Shinkansen bullet train tickets , horse riding lessons and Cyndi Lauper 's concert tickets ! At times , we even establish an interesting rapport transcending the relationship between teacher and students . So , I want to learn English hard , and talk English on skype . The year before last , when I visited France , he was kind to us . He stayed at our house for three months then . His Japanese has improved very much now . It is called `` Setsubun `` , and is done the day before the coming of spring . closed friends are like our own mirrors He also has some mental problems which he seldom faces himself . That 's why , even in private , he has never had a relationship with a girl - even though he is fairly handsome . He ca n't do anything without communicating with colleagues . O , my senior , is 27 years old , a virgin , and has n't had a job for 2 years . He is now studying sociology to get a certification . He tends to frown on his environment . Before I had respected him as if I were his real younger brother . I hope it is n't diseased and , if it is , it will be well soon . It 's very convenient . However , It is difficult for me to understand Russian grammar . By the way , I ca n't understand English grammar too . But , I want to improve my English skill . Should I write down my thoughts and feelings , using words and grammar as simple as I can ? Or , should I use unfamiliar and difficult words and grammar ? Many Japanese are unable to understand grammar like the present perfect tense ? when I stayed in the Philippines , Although , around here , most of my friends like aocole At one time I thought that people who exhaust their lives were succesful . I feel satisfaction working . Now is the time when I have to be enthusiastic All these verbs and phraseologies . If I 'm consistent , I 'll not slip so often . The reason why is when I noticed my mistake I thought the boss was absolutely angry with me . It is because my boss sometimes is angry about little things to my co - worker and the other reason is from my old mind of childhood . And I became protective over myself . Above all , I can take care myself . I am going to try to improve again as an adult . One of my favorite fruit is ' ' BANANA ' ' . I know this sentence is damn wrong but I think you can get an idea from it How should I correct that sentence ? I promised myself to not just party when I got back . You know , customer service will be a big business in the future . Because , they themselves are the baddest of bad , thieves . Until his father was dead and his mother 's health was becoming worse , his mother started imploring him to work . After his mother died , he started to work , however ; he always complained that the work environment was too hot and work was too hard . Finally , he could n't prevent DEATH to snatch away his life . Today , my best friend Doll gave this website to me . she knows I need help to improve my english for my job . After signing up for Lang - 8 , I have found it is a very useful website . There 's so many people who want to study foreign languages . We always send cars or give gifts to my friend ! Recently I 've been busy writing speech contest sentences . so exhausted . . In Korea , there are so many beggars in the streets . When I was a college student , I met a Turkish guy . So , I will keep a short dairy here as frequently as possible . There is no sick leave at a normal company in Japan . My house is n't far from the University of Washington , and I 've always wanted to watch a live game of basketball ( `` If I have the opportunity `` does n't work here . ) I have been surprised at the popularity of university sports since I came here . In Japan , most university sports are n't as famous as in America . I 'll try to watch their game live someday . If you go see games in a sport stadium , can you recommend me a sport to watch ? I really need to improve my English skills including listening , reading and writing . I guess no one read my journal yet So , in the end , I did n't buy them . : p I hope I can find my favorite clothes again somewhere . After having gone through all these busy and boring days , I totally have no idea about what I can say ! 4th Mar 2010 Thursday . Many typhoons approach Japan every summer . I ` m looking forward to going to Taiwan next month . In the summer I have been taking an English course at the Direct English Institute , I am in the 3rd level class there . I have many hopes such as reading novels . Also I use Photoshop to design pictures . Today I have had a good day but I got up late . Anyway , just before my class friend asked me about my weight . It was embarassing for me because I 'm a Korean girl and some young girls do n't like to be asked about that . If a girl asks me I might be ok so I hope that my classmate friend never asks me . He went to senior field of the game , through been killed a million times for learning how to survive . capture the highend user first , the total opposite in India . localization in areas / countries where most Japanese company failed even though they have high - tech . So , I picked two guides titled `` Canada `` and `` Germany `` . this is the chinese traditional festival , maybe other families are happy and excited , but mine are not , He recorded himself speaking in fluent Japanese . And today was no exception , fundamental : I need to study the fundamentals of Japanese history . indispensable : He is an indispensable force for our company . splendid : Casa Roma is a splendid castle built in Tronto . cultural : We can treat each other well even if we have cultural differences . To make your date more interesting , you should add a surprise . It ` s been over half a year , but I still have many problems both speaking and understanding English . . . My working visa will expire at the end of February . The time I have left does n't seem like enough for me to improve to the point of satisfaction . Lately , I feel more and more tense , and frustrated . I know the best way to learn is to enjoy what you do , however I am not the sort of person who is able to make everything enjoyable . I probably need to prioritise that over learning the language . . . hmm . . . . . When my friends called , I tried to only have a short conversation . If I were to keep learning English , I could speak English well . After all , our meeting was delayed for a few minutes . . . , I 'm sorry . but the problem is that these lifestyle 's change makes people overweight easily . Also , people do n't want to exercise . But I always think my English level is so low . . . The more entertaining , the more gaming technology is developed , but it increases danger to mix up what is real and what is not . alright guys , forgive my crap jokes , good night , I will do my best . Choosing a PC Since I was in a hurry , I thought I would pick them up and throw them away later but forgot about it . It is unlikely that someone would take only the chopsticks out of the plastic bag to use them . I think both the government and all universities must get prepared for its future impact . When I first listened to it , I did n't know what he said . I felt especially sad when I watched that last scene . because I will graduate . I got to know a Nepalese person , who is the owner of a Nepal restaurant in Japan . He told me that his restaurant provides very delicious Nepal food . = to move from side to side in an unsteady way Thinking about this , I was spiritless and fell in a deep mire . A dog was rescued when it was on a roof of a destroyed house that was drifting 1 . 8 kilometers offshore . One of my friends received disqualification letter from the company he applied to work for . However , unfortunately we do n't have any vacancies in that department you applied . Candidates are also our customer ? There is a lot of damage because of the typhoons this year . When I was a high school student , House of Wax was broadcasted on TV at night . I watched this movie to the end . Every Wednesday , I have an English conversation lesson where we watch a movie in English , write notes about the story and then present a report at my university . It 's my second year in the university , and despite not being able to adapt to campus life , I have been getting used to various things . It is something round , hung with a string for example in the middle of a room , and the players have to break it with a stick : what is inside ( of the `` pentolaccia `` , for example flour or sweets ) , will fall down . She told me to buy a balloon , the powdered paste used for wallpaper , a lot of newspaper , some giftwrap and a string . My school held a festival yesterday . In my new life style , I have a lot of change compared to before . Especially now , I am beginning to spend all day at university during the week . I have also / never ? watched such interesting American dramas , for example , 24 , prison break , lost , X - file . . . If anyone likes these American dramas , let 's talk about them ! From now on I will try to reduce the choice , _ concentrate more on what I decided . I wonder if the members of that kind of association are get in easier than others . Harry Potter I read books `` Harry Potter `` It was 2001 that the movie titled Harry Potter appeared first In those days , movie `` Harry Potter `` was a object of attention and I bought books `` Harry Potter `` , Watching the movie . On the otherhand , almost all cars exhaust carbon dioxide . I do n't want to have a fatal accident or even a traffic accident , secondly I would like to make the air cleaner for the next generation In class , we were given the following question : So could you please tell me your reasons for studying Japanese . . Although their songs mixes Japanese , the vocal who is a native English speaker sings with an English accent , so even native speakers of Japanese , and of course me too - ca n't tell which is Japanese and which is English . Are sure you checked the email I sent to you . I usually read a lot of materials when I have spare time . I think reading is very beneficial for me . But my parents started to complain about the calligraphy and ordered me to put not only the next year 's Chinese zodiac character but also something for good luck . I want to feel a different culture by mingling with the local people . How to contact me . ^ ^ I want to speak English more naturally . There are too many self - development or self - motivation or self - help books in Korea . I 'm wondering if these books are really helpful in one 's life ? The beautiful woman translated it from Ukrainian to English . I rode on it without thinking . I found many fountains and also many people refreshing with it . Although I was always moving with my heavy backpack , I did n't feel tired . Korean pop has won a considerable following in Japan . Similarly Korean drama has been a great hit . Why they have won this popularity ? Their dances and songs are interesting and memorable . I hope we can have classses on MSN or Skype regularly at a fixed time . I 'm majoring in computer science . Nowadays I 'm learning English . I have experience in preparing for Korean language ability exam . so I can help you effectively . and send a message to me Bradley has changed through talking to a good councellor . Sometimes I think I wanna go back ! ! ! ! ! My hobby is scuba diving . I 've traveled some places in not only Japan , also other countries . PNU consists of 12 departments . I 'm going to see my school scenery . Last weekend my wife and I went to tennis matches for beginner mix doubles . It 's delicious and rare , I want to learn how to cook this kind of beef . I found out about Lang - 8 today and registered right away . After I graduated from high school I started learning English alone . I studied English by watching NHK TV which is educational . By the way , Feburary 14th is Valentine 's day . Japanese girls often give chocolates to their boyfriends . Not for boyfriend ! lol I 've made chocolates for Valentine 's day since I was an elementary school student . It 's soft , moist and always fresh baked , not too sweet and you can see sliced piece of carrots in the cake . However , I ca n't explain . I felt sympathy for the Cambodia refugees , and wanted to know more about it . And now , I 'm researching The Indochinha War , mainly focused on the diplomatic relation between Vietnam and France . It was so hard because there were n't enough references , but I made my effort to research , and I understand it very well . Kendou is a contrast to weight training . Weight training is reasonable . It is difficult for rationalist Americans to understand Kendo spirit . Someday , I want to watch the MLB game live at the stadium . Therefore I ca n't continue to use it , I was disappointed . . . They usually boil Hijiki with soy souce and sugar , I can understand them . My favorite ( shop ) is a Chinese restaurant near the school . This song is about `` bouncing back `` . I 'm not good at expressing myself , I do n't have any qualifications but a driving license , I have never had special experience such as internship and being a volunteer . Please teach me English . The Flintsones The Transformers 2 : Be engaged with an institute related to UN operations or non - profit operations . But , , , , I always feel disappointed with my poor English skills , especially when speaking : ( Sometimes I get tired of the piles of assignments , but I enjoy spending lots of time with good teachers and friends who aim high . I 'm tired because I have to go to the lab everyday and take care of the fish . And I went to the class and I was so disappointed because this room is very hot : ( . In the morning , I checked my phone but there were n't any calls from him so , because of that , I was angry at him and , still upset , I went to my part - time job . These days I worry about my future and become sensitive thinking about it . now I am living in the southest of china , Now the temperature is very high in the daytime . however it is low in the morning and night when is very cool and the wind is very soft . I like it very much , but I hate the daytime . Of course , do n't forget marathon ( 42 km ) . Today , I start my lang - 8 life . My father did it for my parents because they will back to Brasil ! My teacher told us that in Korea there was a race yesterday . They checked 5th and 6th graders . . . I need to practice more each day . `` Jill Stuart `` is my favorite brand . This fragrance is like vanilla mixed with flowers I would like to wear its dresses in a party after the graduation ceremony . If I were her , I would be very embarrassed and stop right away . However , she was tough because after that , she tried to use her cell phone again and was called by the professor again . Something that I learnt today First , I want to share my experience when I traveled to China . When you visit a shrine , ring the bell , bow twice , clap your hands twice and then bow deeply once again . On the train , I 'm listening to R & B music to use in my lesson . I prefer read some easy books , watch American TV , movies with English subtitles and these funny things to learn . My main difficulty is understanding spoken English . When the groom kissed the bride , many cameras flashed . I am happy for them sincerely . The reason I want to write English is to enhance my English skill . It is n't necessary to write in English . will someone correct my grammatical mistakes after I post it or should I add someone to be my friend first ? My favorite sports are Football and Snowboarding . When we were done skating , the metro was not working , so my dad drove us all home . Depending on how she is feeling that day she may begin to imagine the very worst - - `` He hates me , he does n't love me , he is leaving me forever . `` This may then trigger her deepest fear , which is `` I am afraid that if he rejects me then I will never be loved . I found him on YouTube : ) He made a parody of Miley Cyrus 's 7 days . 9 bus that caught itself on fire in Chengdu . ( Star Ruby is a library to develop computer games with Ruby language . Just 12 hours left until I go to Cambodia ! Vol . 1 ( Prayer etiquette in temples ) Yay ! ! I did n't think they could win , therefore I was really surprised . Many friends cheer the team of your own country . So it was difficult for me to read a lot of passages in a short period of time . I upgraded lang - 8 to premium . Are you surprised that we did n't fly on the plane / go by plane ? What I 'm studying at university I 'm studying mainly Mathmatics and Physics at university . I was good at Math and Physics when I was a high school student . Although I do n't study English at the university , I want to be able to speak English fluently . , and you will be friends with me ! ! It is derived from `` family `` In japan is winter now . Recently , I happened upon very nice music . I watched `` Enchanted `` by disney . Someday , I 'll try to fall in love with such a prince ! ! Know that no gain without pain , this what I learned from life . Speaking the truth , what I would like is to make foreign friends more than learning english , I am very curious about everything outside China and I dream about travelling around the world one day . But according to his facial expression , it seems to have failed . I want to communicate with a lot of people . example : The teacher used his car as an example when he was teaching about the hybrid car . But I think it is good way to improve my English writing skills by diaries . I 'm a little good at writing and grammar of English but I 'm poor at speaking and listening because Japanese educational system of English focuses on writing and grammar . But I think this system derives from Japanese nationality . What is your favorite russian song ? I decide give up on these nerouses . I want have a better life ! I want to smile and I tried to sing . I found the world become beautiful and everything became right ! so happy ! I konw the life is myself and if I felt good it will fell good ! hope everyone find yourself I trust you will get what 's you want ! Hi everybody ! ! ! Anyway he fell in love with the smart phone , and his explanation made me almost fall asleep . Oh , it is n't snowing and I ca n't go snowboarding . . . I need to revise the text for retelling for my English course , but it is very difficult for me & nbsp ; because my pronouncication is not very good and I find speaking & nbsp ; more difficult than listening . Yesterday , I was taught how to play golf by a professional golf player . I did n't have any appointments or plans yesterday . I first took my seat and I ordered an iced caramel latte . I must speak about my country . I came up with some ideas for my speech . I always go to English classes Saturday 's at 3 pm until 6 pm so I did that , and also in the morning I went to a pole dancing class , I do that to lose weight and gain strength , and it is a fun activity too . I decided to write a diary entry . so I can not talk with my friends on abroad with humor . I 'm bad at physics and math . She is twenty - six who is living in Tokyo for a job / work . select : She selected the blue flowers for her friend 's gift . divide : We were divided into two groups in / by that argument . convey : Sometimes it is difficult to convey what we want to say in a foreign / another language . I like drawing characters very much . My hobby is watching baseball games on TV , because I like baseball Then they make unhappy faces and ask me again , ' What can you cook without curry ? ' My roommate and I decided to clean our dormitory tomorrow . Good night . So it was a pleasure . It costs 55 aus dollars . I have to sell my car for at least 4000 aus dollars . I talk with my family using Skype almost every day . I 'm a normal man . someone please help me lol I thought he put my socks in his closet again . oh my goodness , it was a gay magazine ! I was really surprised , and I also became scared of my landlord . I promise , no , I guarantee , I 'll never come back to Australia again , even if my mother is kidnapped by someone and taken to Australia . I kinda wanna change from Frontline to some other medicine . But since I have few opportunities to use it , my English still looks like Chin - glish . I wish I would not get in trouble with anyone during my trip since people are the most dangerous creature in the world . Because this spring I have to take job hunting seriously as I am going to be last grade in my uni . I have to endure missing my family and friends in Korea . I have been learning yoga for three years because I have stiff shoulders . I think that the hula dance is elegant and sometimes difficult to execute . well you are fake basically , so it is okay . I 've been studying English for 4 months in Sydney , but I still ca n't see the top of the montain at all . How high have I climbed from the foot of the mountain ? Anyway , everyone is learning a second language on this website ; I respect all of them . What I 'll write is just my opinion , so even if my ways of studying will be different from you , do n't worry about that . Speaking skills are proportional to writing skills . If I wanna understand what English speakers say , I have to read English books and I have to ask Japanese who can speak English very well about why I could n't translate it . I do n't think that way because , when I got up that day , I felt a little bit tired According to researchers who foucued on the relationship between the length of sleeping and whether you feel good when you get up , Pachinko is one of the gambling methods . However they are expensive , because they can do many things . However , I have no need to record conversations and am not interested in any radio programs . . . I have studied for over 10 years to pass an exam for some national qualification . T `` in English with Japanese subtitles on DVD . As you know , ET is a famous movie , but I watched it for the first time . I 'm always thinking about the reason why he did that and why he always refuses that someone helps him after I watched `` HOUSE M . I ca n't just skip unknown words so reading this book will take a while . TIME is featuring superbowl ads as follows : I 'm going to get a job until March and its going to be okay . I do n't have to rush ~ ~ My recommended Movies I intend to describe daily happenings here . The ceremony at the kindergarten We attended the ceremony at the kindergarten last Thursday . The ceremony lasted about 1 hour and thirty minutes , and The reason we think so much about those news stories is because even if the news content is quite ordinary , it picks up and repeats many times just because famous people are involved . My friend introduced me to this useful website . Although my Japanese is not good to write an article ( entry ) . IN DEFENSE OF MR . FIX - IT AND THE HOME - IMPROVEMENT COMMITTEE When a woman resists a man 's solutions he feels his competence is being questioned . As a result , he feels mistrusted , unappreciated , and stops caring . He can reflect and discover how he was probably offering solutions at a time when she was needing empathy and nurturing . Here are some brief examples of ways a man might mistakenly invalidate feelings and perceptions or offer unwanted solutions . This is what you should do . `` Each of these statements either invalidates or attempts to explain upset feelings or offers a solution designed suddenly to change her negative feelings to positive feelings . By learning to listen , gradually he will experience that she will appreciate him more even when at first she is upset with him . She can reflect and discover how she was probably giving him unsolicited advice or criticism rather than simply sharing her needs , providing information , or making a request . When I woke up , I could see the heavy snow . hello ~ : ) I live in korea Yesterday , the Dubai World Cup ( horse racing ) was held in Dubai . It was very exiting , because it was the first time that a Japanese horse won . I think Japanese horses have achieved world - class status . as playing basketball , swimming , running and so on . If it is sunny , I 'll go fishing with my friends and swimming . I think that is impossible . wuwuwu . But I can play computer games at home , hehe . These days , it is getting colder and colder . I realized I could not be friends with autumn and winter . No matter what beverage she drinks , almost nobody would mind . Possibly women , who tend to have great interest in their own figure and weight , believe they have an obligation to refrain such drinks . What I strongly want to mention is that all we need to do is develop and build good relationships with various countries . I went to Canada on spring vacation . Hi , my name is gulizen and I 'm very happy to meet you on lang - 8 . It 's a good way to learn other languages . I thank them for their hearfelt concern ; however , dare I say , they have misunderstood the situation in Japan . Recently I watched the news on the central Russian TV - channel , and they said that Hollywood has started shooting a film called & nbsp ; `` Georgia `` . This is an information war and the film `` Georgia `` is its logical continuation . Today , I read a magazine about license in school library and find this site . But , I want more communication with foreigners . I am a member of the `` Guidelines Committee on Hypertrophic Scarring `` of the Japan Academic Society of Plastic and Reconstructive Surgery . It was rainy from morning to evening . plz ~ help to correct my writing . If so , I appreciate your favor . The Carrier is `` Softbank `` . ( we have d a bad impression of them ) iPhone does n't have IrDA . ( we use this for exchanging mail addresses usually ) Java application does n't work in the iPhone . On Monday , I went to the school pool for the first time in this year . But I do n't like swimming in cold water . . I will keep swimming until I 'm a Kosen student . I 'm having a tournament of swimming ( or swimming tournament ) for high school student on June 5 . A Japanese women was taught not to express their thoughts or opinions since their childhood . Many foreigners believe this . Book Review - Black Boy , Garden Party . Because it has too many pages . Reading the book , I am reminded of Korea occupied by Japan in the 1930 's ( although I was n't born in this age , I can only imagine ) . Like many Koreans , Richard has had hard time . I guess ' nigger ' and ' black boy ' are bad words . Her Father is very expected . Laura wanted to end the party but her mother did n't want to because she did n't want to ruin the fun for everyone . Laura felt guilty and visited the dead man 's home to pay her respects . The JLPT just examines the learner 's knowledge . When I arrived at the clothing department , the sales clerk was only one there . I cooked a full - course Italian meal , Salad , AcquaPazza , Pasta . Whereas there are wide range of Nabe in Japan , we ate quite simple nabe , mainly ( ? ) . We put all of the leftovers from the refrigerator , such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water , into the pot and cooked them together . Five months ago , I met a Filipino student on Smart . The day before yesterday he sent me a message that he applied for the job as a tutor . I already have some favorite tutors at my conversational school . I do n't know that song lirycs is `` Mr american pie `` . because there is nothing aboput `` american pie `` . The hit single of this album is called / named ' Stupid , ' which is about a man whose heart has been broken by a girl . During an interview , he said that he wanted to become a radio DJ with his own show after releasing the album . It is very difficult to find a good definition for friendship . A true friend finds pleasure in our joy and shares sorrow in our grief . The people who are my friends are always at my side to give me help and comfort . I think this is true friendship . These days I have been exchanging messages with my foreign friend , and it is as pleasant as a real conversation . First diary To change the subject , earthquakes & tsunami are terrible . The cerebral wave activity is classified into groups , each one named with a Greek letter : Alpha , Delta , Gamma and Theta . So , Alpha waves have a frequency of 0 . 5 and 0 . 4 cycles per second , and they are often found in a state of deep sleep . Theta waves have a frequency of 5 and 7 cycles per second , and they are found in the state between wakefulness and dreaming . Alpha waves have a frequency between 8 and 14 cycles per second , and they are found in states of peace and a relaxed alert . Beta waves have a frequency of 15 and 22 cycles per second , and they are found in a state of crisis , anxiety and aggressiveness . The massive production of Alpha waves in children makes them have a great learning capacity that can even allow them to attain / achieve super - learning or accelerated learning when there is a state of peace . On the other hand , if there is a state of aggressiveness or stress , learning can not be achieved . These ways are called the perception channels , and are usually used by the NLP ( neuro - linguistic programming ) to generate positive and permanent changes in people 's behavior . I want to communicate with people . I started a part - time job in a convenience store two months ago . I have been very busy for this two months . For the first month , I cleaned the toilet facilities , took out the garbage , welcomed the customers and ( ? ) helped to organise the stock of goods , on top of working as a cashier with seniors and so on . I was tremendously encouraged when I was told off by a manager . Thanks to them , I got used to work little by little , as time passed . One day , the store manager said to me `` It is important to greet with a smile and make eye contacts with the customers `` . Then , some customers thanked me with smiles and left the store . There is a gerbil at my home , but it 's not the only pet we have . But it 's a pity that I could n't find a mousetrap in my home , it made the mice leave my apartment last time a few years ago . It 's really interesting , and a lot easier for me to read , probably because there 's a bunch of conversations in it . I asked them `` why does the elephant need to be on diet ? `` They said `` Because we have to minimimize the transport fee . `` I feel managing the Elephant is very difficult . I gave up on it then . I respect strong - characterized people I respect strong - characterized people . She moves with difficulty . She still goes to University and continues her education by correspondence . Recently she has started to make ( create ) beautiful accessories . She is talented . I ca n't get up early in the morning ! ( Fixed ) Odell was n't certain of what he saw . The climbers may have been at a much lower first step , with a formidable second step still to come . ( corrected ) Odell has n't confident about what he saw . The mountaineers may have been at a much lower first step , with a formidable second step still to come . Although I am sure you know of them , I want to introduce music by these singers and anextra song by Andi Gibb , who in my mind , is the very image of the past american people because of his fashion and long blond hair . But I 've changed my mind recently . In the playoffs , everyone is very important to the team , not to mention Rockets lost the African Mountain . I decided to undergo a long journey by bike , which took about four hours to arrive at my destination . During the recent winter vacation , when for the greater part of the time the temperature was always under - 20 degrees . Now the temperature has increased , and it usually ranges roughly from - 10 to 2 degrees . Even with this increase , a long time exposed to the cold , proved to be more than I could bear . I was travelling to China with my friends until yesterday . I want to be able to speak English and communicate with people all over the world ! Since I work in my office , looking outside through the window is fun and relaxing to me . Last year , I ate and drank freely and as a result , I did n't gain weight but gained visceral fat . It is one of the largest ones in Japan . So the teacher came to our room at 10 : 30 each night during the four days . My umbrella was broken yesterday . I 'm going to write about the spacecraft Hayabusa today . The body burned , but she released a capsule toward the earth before she was burned . Nobody knows what was in the capsule until it was opened . If there were aliens in the capsule , We would be surprised ! However , writing in this diary gives today some meaning . but he did n't find one The typhoon has approached . I will do it steadily . I found `` Train Man `` which is a very famous story in Japan in 2006 translated in English . It attacked me like a mosquito . I chose the book related to my major ( mechanical engineering ) so that I could practice my English reading skills . meeting fascinating people These days , I have studied promotion on a Japanese musician and today is last time to study it . Someday , I want to sing songs in other language . Importance of reading This is the first time for me to write my diary in English . The aim is to experience a wider world and enter a more challenging life . But first , I should speak in English very fluently . And I have to overcome my fear and shyness especially when I meet an aggressive person who feels frustrated while talking with me . Fortunately , I found a newspaper clippings . Although , I 've been feeling lonely lately . I tried to call my friends several times yesterday . That made me lonelier . I have a troubled personality . As soon as you are busy enough , you will forget what you want because you have no time . So , the cultural festival is a place to understand the school atmosphere . My friends said that this website benifitted her a lot , and she recommended it to me so I came / joined . So let me introduce myself a little bit . My 3 - year - old daughter was born here and that was a tough experience for me because I was not able to express how my wife was doing when a nurse / doctor asked . But I believe that if I just go on and study constantly without being lazy , then I definitely will achieve my goals . I believe in myself . I wrote that I was going to watch the movie ( or : a movie called ) `` A Prophet `` . I have two tomorrow . I 'm gon na eat Russian cuisine tonight . I live in a dormitory near my home . Maybe ! ! ! Many elementary students in Japan ride unicycles . unicycles are very popular among girls . I did n't know how wonderful performances with unicycles could be until she started it . I watched `` Swan Lake `` at Lincoln Center tonight . I did n't know that early day tango was played with flute and guitar . He is really scary and aggressive . Multimedia Class thus all of them are bound together by affection , and they find their friendship to be the cheeriest relationship in the world . first , it is difficult to suppose that one can experience anything , continuously . I am writing a program for learning foreign languages ( next version ) . The Version for Linux works great , not because I like Linux , but that on Linux using UTF - 8 chars in console is possible , in Windows it is n't possible . I have studied english for about a year . but my english is not at a practical level . What do you think of working at resort area ? I 'm not sure the name of the place , This area is famous for snowboarding and skiing . I need to check it ) I will go to the airport with my aunt , uncle , and my brother by car . I will ought to have breakfast by stopping the restaurant before we get to the airport . My dear friends , please tell me how can I do ? I 'm a 21 - year - old girl , and I 'm studying English Literature in my university . I 've also been studying Brazilian Portuguese for one month . So I was searching for a website to help with my studies . Today I am not going on a business trip . So I was very confused when I noticed it . I tried do my best and as much as I could all day today because I do n't like to make someone feel uncomfortable because of my action . So I just apologised to everybody on twitter . I think that I ca n't say that I am okay because I am not sure about my acitong . The euro is very weak and the yen became very strong . I checked the exchange rate for the New Zealand dollar but it was same . . ( ^ ^ ; One of my friends who plans to go to Europe this summer changed yen to euro yesterday . Tomorrow I will go my daughter 's kindergarten to join in the Summer Festival celebration ( promoted by teachers ) with my family . It was cold today , those days the outside temperature was 0 degree . Hello , friends and teachers ! I have plans to teach my native language in Bangkok . . I really want to help you enjoy your experience here in Thailand . . Private classes are available every day including Saturdays and Sundays from 8am until 8pm . nighty - night naka . . . Because it is very different from what I have ever used , it is very difficult for me to use it . When I drink with my close friends and If I determined to hang out till morning at clubs or something , I drink roughly a half bottle of tequila and a couple of bottles of beer . Sometimes I kicked the ball and hit someone who was running toward me . I was running , too , then all the players ran into me , even though I was running as hard as I could . I agree with the opinion that Kokubo should wear his tie and pants properly because he is now a representative of Japan under the national flag , not just an athlete who is abroad to attend international matches as a qualified individual . I played softball with a Heavy Industries customer two weeks ago . Although the first game was fought well very much , it was reversed and by the last round and we lost . As a result , our team had the lowest grade at the tournament . I think it is a good thing to form relationships outside of work with my customer . Do you have relationships outside work with your customer ? I need to write my diary in a short time span , but I will keep updating And recently many murder events have happened in Vancouver . Tonight I will sleep early , and tomorrow do my best . I major in international relations . Especially Tchaikovsky and Schubert are my favorites . I 'm going to stay here just about one month . He declared that we would never get any furnitureat IKEA . I try to think positive , but It is such a hard thing to do . today . I went to yoga shool . so recently I started to yoga , Big queues , crowds of people , everybody is angry - all of this is a consequence of Russian education reform . Unfortunately , I realized that it is a fairy tale . But I still believe that I will enter the university / institute , Russian corruption wo n't be a problem on the way to my goals , and I will be lucky to say that I am a student of university ! Tongue twister with Insomnia As a result , I did n't go to the library and I regret my idleness . It is because there are many things I 'd like to do and Please correct it on grammar and suggest a more native usage of the language . And they are also often said to have poor imagination . And as you know , Japanese animation is now highly renowned worldwide . I am going to hold onto my English . I am supposed to talk with my friends if I need to talk with them . I have finished reading a book . But they disappeared soon afterward . He started to study this phenomenon . Thanks ! military base near my town , so many Americans live in the city . I think I have many opportunities to speak in English close to home . I studied American sign language today with some girl on edufire . The girl who taught me , She also taught me in English . Today , when I went into an orientation & nbsp ; workshop , I was surprised to see a lot of people there . I gain my weight rapidly last summer season . I will continue my english learning journey . . . My dear friends , it has been months since my last visit to this website . I ( will ) start my college junior life in the beginning of september . I can read English a little bit , but I 'm poor at speaking , listening , and writing English . Now , I want to prepare some useful sentences , for example : For example , there are bedrooms , a bathroom , a kitchen , and so on . This is because if you eat dinner together , you can have coversations and it helps us understand each other . In this way , I can get their counsel and , at the same time , they can make out my thoughts and the situation I am currently in . In my opinion , close family bonds are one of the most important things in our life , and the dining room plays an essential role in it . Thus , the chance of making a new acquaintance who I did not know well before increases . In conclusion , I believe that the dining room is the most important room in a house . We can maintain a good relationship with our family by communicating in the dining room , and we can also use it for a party where we can invite people from outside our house . For example , If you have a dog , you need time for it : buy it food , play with it , take it for walks , etc . I believe that a pet is more responsibility . I played a game . I do n't feel very good today . Everything is going the wrong way . I try my best to let it go into the right way , but I failed . Maybe I should think more clearly , but I ca n't . In short , we still dont know why consciousness exists , why I 'm not a philosophical zombie . The pianist was born in a poor family , but he had the chance to become a famous pianist . The rapid development of information technology , especially the Internet , has made an increasing number of e - books available to people . Therefore , traditional books will continue to exist despite the rising popularity of e - books . If they get their total salary , companies will go bankrupt . Most of them are non copyrighted because the authors of them died over 50 years ago . I just received an e - mail from my friend . Before that she worked in a public hall , same occupation . Now she works with teachers and she is very lonely . Today I realized why it is so important not to give up . Hanging Out With My Friends He explained his critical situation to her . I was surprised at our unexpected visitor . `` My elder sister is also a geek , sometimes we discuss about the future of the Japanese animation industry . `` I relly love teaching Samulnori with traditional Korean equipment . While I am writing this , I want to eat it too . I do n't get feedback immediately when I write . Many native animals live in the tropical forests in Australia . Of course , I 'm planning to go to the city zoo in Cairns and cuddle a koala bear . Actually , I prefer wombats to koalas , but I 'm uncertain whether visitors can cuddle a wombat . Assad 's shop attracts crowds of people and the queue extends to the street corner everyday . People like me wish that he never leaves China . thirds of the book but I have n't found any impressive sentences . 4 ) China 's economy is gaining strength as it continues to increase its exports . I 'm going to be able to drink alcohol . Yesterday was my 4th wedding anniversary ! This event is a forum for professional or amateur artists . I 've studied english for more than 7 years , but my english is still so poor , I ca n't even talk to people , I hope one day I can speak english like a english speaker . cause , I was born into a poor family , I could not go anywhere but stay here , and my parents did their best to support me through school . I want to change my job , to improve my life , to earn more money to make my family more comfortable . Ever since the first time when I saw a blackberry phone , I have been totally into them . They look luxurious , and the design is stylish . I am still considering whether to buy it or not . Stiff shoulder again Steve ' Apple - Head ' Jobs is really cool . `` We are forced to learn English since our childhood . Until now , I 'm learning it . This has become a big part of my study . We do n't hear our students reading poetry , the essence of Chinese literature , which were passed down for generations . However , we always read and recite English instead . Oh no , those are not oral English , just so called Chinglish . What a sad thing ! On that day , many people come to my city . ch it on TV . But my friends interested in F1 , so we watch on TV . Because , there are many races in a month . I saw coloring ( colored ) leaves . It 's very beautiful . Autumn is my favorite season of the year . Russians are mysterious . Chinese people are also mysterious . Although Samet island is not as popular as Phuket or Samui , its beach look very beautiful ! One can say that creating sentences is also a good activity that might Many have often thought about living in a place where two or more languages Last week my digital camera broke and I need get it a new one for my trip next month . I could see many different costumes and dances . We have called each other whether we were happy or gloomy . I attended it , and we cried until we had exhausted our tears . I think Japan is gentle for a smoker because there are a lots of smoking areas and cigarettes are cheaper than any other country . The restaurant is what is called a `` revolving sushi bar `` , where dishes are carried on a conveyor belt . Two pieces of sushi are on a dish and you can eat a dish for one dollar . An increasing number of revolving sushi bars have opened recently , so we can have sushi at an affordable price . There is no doubt that it is not good for our environment to build a factory in our community . First , it will pollute the river near the community , which was full of fish . It is not smart to depend the increase of the economy on the damage of the environment , which is very weak and can not be rebuilt . Living in a community with fresh air , clean water and silent environment is much better than in a polluted area . He told me to use the expressions that can be found in the dictionary , otherwise my English would be strange . I hope that the people can find a way back to their normal life and be happy again . My major is Engrish . My Japanese teacher asked me to focus on listening , talking and grammar . I hope that I can improve my talking and listening as soon as possible because I really want to have perfect English . Hello everyone . I did my study abroad in Fiji and it was sooooo good . Especially over hotel life . After that I moved to a hotel whose manager is a Fijian woman who was so Some of my friends who were also going back Japan cried and cried . . . Anyway my English is better than before , particularly my speaking but my vocabulary is n't good enough for staying in another country , I think . that 's why I am going to study abroad again soon . I was really disappointed with my English skills again and again during the show . Anyway , very few Japanese actors can speak English or Mandarin like native speakers , so most of Japanese actors ca n't appear in famous Hollywood movies . On a lemon tree which I bought 5 years ago , swallowtails laid eggs since the last summer . Living expensein South Dakota ! Today , I began this lang - 8 service hoping to improve my English - writing skill . Time permitting , I would like to take part in advising on Japanese usage , and am very glad to get any tips on my English use . Kingland is a beatiful country in southern Asia . People in Kingland eat sea food every day . I would like to see the country Kingland atleast once in my life . I promised my friend . Even though we had never eaten with each other , we had a good relationship . Yet , I do n't like to have a lot of free time , especially when Ioften sleep halfa day ratherthen spending time in the Internet , or even watching TV . My goals are good pronunciation , writing English easily and reading English websites and books speedily and accurately . Regular member Cambodian vocalist Sokha joined us for 1hour . Rurouni Kenshin They are very professional , friendly , and seem to have respect for all of the workers . But there 're only words and I feel that it 's not enough . ( enough ) Everywhere I go I keep listening to my favourite song . . I made lots friends who came from all over and I always felt happy . I never felt bad because I really enjoyed living in Australia with my good plicks ! haha About 10 days after got to Australia , when I was hanging around , I found posh cafe and dropped my resume off . They said , `` Come to an interview tomorrow . `` Why on earth has our rejection of nuclear power disappeared ? So today we went in and out every shop downtown and we tried on styles we like . After that , we went to dinner at a Thai restaurant . I really want to visit it again and , if I can , ( I will ) live there for several years . Today I heard that my younger colleague had started writing a journal at this great site . Recently I have been practicing reading English sentences loudly many times to brush up on my skills . But I have yet to learn more words and phrases , so I 'm back to writing in my diary again to practice my writing skills as well . The new year still has many challenges waiting for me . Goodbye 2008 , hello 2009 ~ ! NINE is a movie directed by Rob Marshall . In this site , I feel that I 'll study more , and I 'll be able to communicate better in English . Torne has a `` trophy `` function , which is something that records my viewing history . This story is a parody of The littler match girl and shows the European turmoil pretty well . Recently , the Euro has dramatically fallen against the dollar and yen . It was a beautiful day yestarday I 'm going to go to an art exhibition in Hakone this Sunday , so I hope it will be sunny there . Then she disappeared with her son . At the end of class I wanted to try to talk with him , and I asked him how I was in his class today , he just nodded I promised him to show the winter scenery of Hokkaido such as Sapporo city covered by snow , the festivity of Sapporo Yuki Maturi by `` You tube `` . 5 years ago , I would have never guessed I would have communication this way . However , all the children became very quiet I just watched the 1st and 2nd episodes . One of the survivors , John Rock , should have been dead , but he was still alive in the hall . Why did the crowd appear ? and I was always looking forward to it . I was given a digital camera . There is no way that showing kindness , affection , or any other form of positivity wo n't be appreciated . You are the most jealous person in my class . He is the second heaviest boy of my friends . We finished the ( / our ) test and then we were going to the Black Cat in Brunswick Street , Fitzroy . Before we went there , we had talked about the distinctive features of this cafe . So the teacher recommended a good restaurant near the Black Cat . including Japan . And I watched a movie in the cafe , `` The Bourne Ultimatum `` , whose main actor is Matt Damon . Also , Interenet Cafes in Japan have versatile services . You can spend a night on a tatami - floor at a price cheaper than a hotel . ( but limited room though . . ) Of course , they ordinarily serve free drinks such as coffee , tea , or juice . Some of them have darts or billiards ! IF I Won 10 Million Dollars If I won 10 million dollers , I 'd like to buy a lot of games for an Xbox360 and go abroad right now : ) If I still had a lot of money , I donate to people in need . To begin with , I 'll finish my last semester at university for graduation . Employees fingers are not put into the soup , making it clean and safe , preventing burns . Or is it truly beyond my understanding ? However , my friends told me it 's really yummy and sweet . One of them is Israeli ; she speaks English with a strong accent . Should someone solve my writing error and laziness problem ? I have two children : one is in college and the other is in elementary school . What kind of people do you like ? The title is `` The Castle Of Cagliostro , `` which is made by Hayao Miyazaki , the most famous director in Japanese animation . I find it very useful when reading entries written by other Japanese corrected by native speakers , because you can tell the difference in expressions between English and Japanese . It touches the heart of Japanese culture for Japanese people learning English . Thus my lifeevironnment seems never could make me have a new dream . How to choose an appropriate article ( that is , ' a ' or ' the ' ) is a very difficult question whenever I study English . Thanks for reminding me and I remember this / that moment . It was very amazing . Life was beautiful . I read in a magazine that the BOB cut is now the trend . I was disappointed . To improve English is very very hard ! ! ! When I left the subway , I found the paper bag that had my lunch was torn because the subway was so crowded . I do n't want it to cost a lot of money . I enjoyed a fireflower and Japanese Origami with my sister 's daughter and son . I 'm looking forward to watching them grow up ! In fact , it 's true that many people are not hardworking after they go to college in Taiwan . I watched Agatha Christie 's work - Murder on the Orient Express and Miss Marble . He put on a talk show at this event , but unfortunately it was full before I could make a reservation . ] ) but beforehand , I have to have some theoretical and practical knowledge about traditional art ( painting , architecture or color theory , management of space ) . You know , you can only apply for one school for your bachelor 's degree . The weather is cool and my friend is going to see a movie but I have to work Please correct and answer my question ! I do n't know what happened . please ~ teach me English . I 'm an university student and my major is international law . If you wanna learn chinese regularly , just add me . Finally I got admitted to the International Trade Institute . In my school , we are playing instruments in the school musical . because in 3 - 1 we are playing instruments ! ! ! I needed a person who would let me practice various skills . I want go to shopping but I 'm always busy . lol And because of the rain , I could n't go very far for dining , and I could only choose the near restaurants Especially , anyone learning Japanese ( ^ - ^ ) / I heard and thought , `` what should I eat ? ? `` Because Bobby advised me to follow them to Chautauqua Park , I went there . I spread it on toast every morning . But one thing I have to be careful about is not getting a bad tooth . I starting Lang - 8 right now ! My English writing skill and vocabulary are really not enough . First of all , she is a very hard working person . She has the capacity to work for a long time without complaining until she achieves her goal . Besides that , she taught us to care about our studies and to search for knowledge everywhere and by any means , because she believes that man without knowledge is like a body without a soul . They are probably around 7 centimeters or so . I heard that our common friend , who is I will show a video of thai fruit carving to you . When I was young So women would stay at home and learn about cooking , especially In February , I dropped and broke my camera . Also in March , I dropped and broke my boyfriend 's camera . Tomorrow will be a great day , I believe ! My brother had a PSP ( but he sold it ) , and we had several games for PSP console . If you can recommend me some songs , I 'll be grateful . He told me that I was accepted to the university . During the past three years , I felt tired from time to time , and sometimes I wanted to give up , but I told myself `` I must be keep it up , I must work hard . `` Now my efforts have paid off - - I was accepted to a good university . The phone that can be superior to iphone is nowhere to be found . Hi ~ I thank you for your labor . When I first visited this web site , I was suprised at how helpful the people on this website are ! I am a little troubled because I want to help those who are helping me by assisting them in their goal to improve their writing in return . But many people , including you , like to learn Chinese or Japanese . I 'm Korean , so I ca n't help you directly . If you 're not disturbed by my humble level of English , I hope that you will consent to being my neighbor . You can grow tired of explaining the same thing , and lose your creativity . For example , when I am stressed out from studying , I start to eat more or to sleep more than I need . My favorite of them was a woolen coat . I do n't like you , not because you are an American . I think I do my best to do your homework and understand when you teach class . I am very happy to have a girl . This is the first time I write in this diary . In order to better learn the intentions behind his paintings , I want to take some classes to learn painting skills , like water oil . find my diaries to correct . In Taiwan , there are many people with a teacher licence , but there are just a few students . As a result , most of these teachers are waiting for a job . Tomorrow I 'm going to have a test of Classical Japanese and I hope everything ends up alright . My holiday Actually , I do n't miss Taiwan so much . My roommates are always asking me , `` do you miss rice ? `` I would rather try exotic food while in the U . S . , rather than Taiwanese ones . I feel like experiencing the American life - style and being assimilated with them . Even though he said that I should taste some Taiwanese cuisine here , that way , I could compare what the differences between them are . A book I read when I was a freshman in my university explained that people want to work atDisneyland because everyone working there can do what he / she truly wants to do . Christina is amazing signer . ( NOT xtina ! ) The idea occurred to me that , why is the image of a flight attendant different from Japan and in the other countries . I can buy very cheap clothes at Dinos . romaji - hiragana translator So I want to use a romaji - hiragana translator with this site , like the one below : As you know the Korean peninsula is still divided into the South and North . Effective way of learning English . I am always thinking how I can improve my English . Less effort , much more effection . In that show the reseacher said read letters in books silently . So we have to know sound infomation even if we read silently ( in English spelling and pronounciation are different ) Seemed that this was n't her first suicidal attempt . Nah . . . Tomoyo and I went to a new cafe and talked about art . That night , I called my boyfriend and Mayuko . We are going to dinenr nest Saturday , On such a big holiday , our family always gets together to He was expected to win a gold medal , and all of his supporters in the arena became silent the moment he retired . Anyway , from now on , I will come and write entries at least once a week , so please help me to write proper English entries . I 'll try to write things here and it will be happy or good things which happens to me every single day . Despite this constantly expanding library of exotic colloids , however , the advances in colloidal self assembly are surprisingly scarce , and the corresponding self assembled structures still remain quite simple . Although she is a second grader in high school , We talked a lot ! In my first degree , I went to Oxford University in England . I want to visit more and to talk with many kinds of people . So if you are a very kind person , please check my poor English ! ! the weather forecast said ( that ) it will be hot again ( soon ) . First , today I am going to play Futsal in the evening . What do you think about the USCPA in America ? Ken gave me on how to make a good presentation . or going walking in nature for refresh and health . I do n't have a particular genre of movie I like . But , I do n't think movies are made for fun . Sometimes they give me deep inspiration and make me think about a specific topic . I want to be an obstetrician or an engineer who makes medical machines to help as many women as possible to live happier lives despite their diseases ! Because sometimes it seems to me that most of them are very intelligent , organized , and privileged at the same time . He told me that American people are different from Egyptian people in their thinking , and in their professional and personal lives . But not everyone is different . I wrote this entry because I want American people to reply to me How they think in their peofessional and personal lives and I also want to know how the normal people spend their normal days Thanks to anyone who will answermy questions . First I want to express my happiness at Sarahu coming back from her vacation ! ) this is very importent fo me I really nervous . take a pill , but It 's not usefull I have a important test next week I believe I can do it well For instance Taylor Swift , Stevie Wonder , The Smashing Pumpkins , Offspring , Sum41 , Steve Appleton , A Tribe Called Quest , Pixies , Jay - Z 3OH ! 3 , etc . . . I really like her excellent fashion , action , performance , and of course songs : ) Whenever I questioned something , people responded very There were ( only ) a few people who came to the Izakaya Now I am planning to travel to Thailand for my next vacation . There are a lot of historical places to visit in Thailand . After finishing the TV program of Gundam , at first all of the Gundam freaks tried to buy plastic models . But it makes me too addictive . Fashion Show One thing that I noticed is that they ( all ) wore fashionable clothes as well as a lot of perfume . Hello , my name is Sar . I am interested in the English language . So people can easily make rhymes in English since English is avery flexible language in terms of sound . The answer is quite simple : they use rhymed verse when they make songs . So we are limited to manipulating rhythm in Japanese . Therefore , ancient Japanese people controlled thenumber of words in Japanese poems in order to make rhythms instead of rhymed verse . The teacher was Filipino who can only speak English , that means she ca n't understand if I speak Japanese . I was nervous talking with her ! I booked accomodation , which looked like such a traditional and awesome cabin for a night , through the internet , and bought a pack of beer and some food at the market . The entrance was pretty , and the usher , who was a very old man , was kind to us . Anyway , the wholeaccomodation was the opposite of the pictures on the website . My husband worried about me as my condition was getting worse . At last he confessed to me that the smell and atmosphere drove him crazy , too . I stopped drinking beer and smoking ; I ca n't let them help me fall asleep . I remembered I have a black ipod in my bag , It seems difficult to make new friends when we get older ( and older ) . I searched for good movies online and eventually I found As I saw the first scene , I felt very peaceful and Japanese culture and he was always given a cup of coffee for free I went to an Uniqlo store and bought some cute t - shirts . I have n't been to Uniqlo stores before . Uniqlo is really famous in japan . I think he was chinese and he was buying lots of clothes . I was born in Riyadh , but I am originally from Yemen My relatives want me to go to Ukraine for the whole summer ! This year , I 'm teaching 200 students . They are not really good at speaking English . just be patient . I met my relatives and gave them some souvenirs . It 's the first time that I write a diary on the internet . If I knew of this site earlier , I could write English very well . . My major subject is English , but in fact , I have a little hatred towards English , for In modern times , English is as common as a piece of bread ; You can find it everywhere . A highway is free , and that is quite amazing . rarely : She rarely finishes her homework on time . Sorry ) Again ) But I have been studying it every day for a month . I ` m a junior at Hankuk University of Foreign Studies . This is a japanese kind of custom . Heaven is over . . . . The loan officer approaches the blonde and says , `` We are very happy that this transaction has worked out , but while you are away , I performed a background check . And I 'm a little puzzled . The blonde replies , `` Where else in New York city can I park my car for two weeks for 15 bucks ? `` . Please correct my diary . < ( _ _ ) > The scanning and skimming reading comprehension had too much information for me to finish the questions in fifteen minutes ' time . Last Monday , I got in a new office that is a clum ( ? ) school as a Math and Science teacher . I have to be in school until 8 : 20 a . m . After having dinner , there is a self - study period until 10 : 00 pm . . I came to hate my country , my language , songs , and Russian films and books . . . Every night I imagine little houses on the cleanstreets of a small town in America . . . I also set off big fireworks I think it is one of my favorite festival regardless of my increasing My partner for this trip , Nao , had a strong desire to visit there . Especially , the whale shark feeding in a standing posture was interesting . I just passed through it soulessly . . . I am stupid . . Because I have a important exam at the end of the month . . . I should prepare for ( ? ) my sophomore year . . It troubles me actually . . Since It is not convenient for me to pay by cash every day , I bought a 5000 - yen bus card . `` Your card does n't have enough charge . `` As I was stood in front of the charge machine beside the bus driver , so many people were were waiting for me getting off the bus . He was probably in his mid fourties , and was a kind driver . Of course I repayed the 50 yen the next day ! I am scolded by the instructor every time . However , there are disadvantages . The biggest one would be environmental pollution . Social problems might be caused as well . If one factory were built near my community , then it would bring more investments . In return , improving our economy . Nevertheless , there would certainly be negative effects as well . The most serious one must be environmental pollution , particularly in regards to polluting the water and making noise . Equally troubling for me is my debt . . . I had a job interview last Friday , but I could n't / did n't do well . I may not even receive any notice of an informal outcome . How do you feel if you get a call like that suddenly ? Thinking about it , I feel sick , deep loneliness when it is a full moon or new moon . Start of English learning from Today I quit English learning because working is very hard . Actually this is an excuse . . . . But I should think about that . As soon as I can do that , I will tell everyone around me . Because Japanese people emphasize groupism and tend to avoid conflict personally with other passengers about their bad behavior . Many students were in Nara park . It 's a moving skateboard and it 's cool and fun . Please correct my sentences Today it is essential to have recommendations because the human resources are too busy to receive a lot of candidates . Today I went to Hong - dae to meet my best friends So I went there to see each other . But I want to write an interesting and funny dairy in English . You do n't think this applyies to Korea ? No , it 's not Gourmet . Gourmet is . . Gourment is , for example , maybe having sundried tomatoes I just got through with my work . Today is a burning hot day . I like summer bacause it has many advantages , for example Swimming in the sea , doing BBQ party near a neighboring steam , playing baseball on the field . 1 . He is tired of forgetting important documents for the meetings . Most salons encourage customers to buy a package of ten sessions upfront by offering discounts and special perks for your prepaid loyalty . However , if they pay for some money to get manicure or pedicure regularly , it could be a waste of money . And the town is very small and quiet , far away from the city . The English poet Wordsworth said that `` The child is father of the man when he raises the son up innocently `` 1900 has lived on the sea since he was born , cut off from the outside world which is full of lies . He was innocent forever and had no flaws until the moment of his death . When the grown - up 1900 sat in front of the piano , using his slender hands ; which are smooth like the keys , the ship bouncing on the sea waves , the piano 's pulling and melodious tones , entranced by the music that he played for the poor people , my heart followed the tones up and down and the happiness on everyone 's face . Someone said that 1900 is happiness . He lives with his favourite music , people surrounding him are all friendly and kind , he need n't care about numerous complicated things and disturbances . Is this true ? Everytime the boat draws into the shore , he looks at the island in a lonely way . He called strangers secretly with a nervous and expectant voice , `` hello , you do n't know me , but , can we have a chat ? `` . Especially when that tramp told 1900 his experience . He wanted to experience standing on the island and listen to the sea . What would that be like ? I 'm not 1900 , but I can definitely identify with his loneliness and longing - he was very keen to be on the island that he had never experienced . This is a picture of my dog . In this country , the price of cigarettes is 5times higher than that of in my country . Furthermore , every single pack of cigarette contains advertisements which give us warning with horrible pictures about the harms of smoking ( Such as cancers ) . I think I 'm severely addicted to smoking . Thanks for reading my entry . Japanese usually begin to learn English when they are primary school students or junior high school students . I want to improve electric vehicles and save the earth . About 2 years ago , I went to Australia to study abroad for a month . I will send a letter to my host family today . - Coincidentally their horses got tired in the middle of the way , at the same place that the moon was washing her hair But , I 'm sad , because she is one of my close friends . At the begining I thought I could put a picture representing France ( = picture of France ? ) Well , then I thought about that stupid stereotype : French people are chauvinistic . That 's also exciting . I will sell Japanese cakes and potato . When I listen to the songs , I feel happy . She would say to me : `` You always remember your birthday , but you never remember your father 's or my birthday . It make me very sad ! `` I 'll said to my mother : `` sorry , mum , I 'll never forget your birthday `` . I received an English lecture from my Filipino tutor last Sunday . She taught me that there are only 2 seasons in the Philippines . ( dry and rainy seasons ) Goooooooaaaal ! ! ! goal Japan beat Denmark and booked a spot in a second round of the FIFA world cup this morning . with their mobiles . I remember when I was in college , my tutor said `` there is a gap existing between a customer 's expectation and perception . `` As far as the hospitality industry , it 's easy to understand the meaning . 3 stations later , I just stood up and said to her , `` please sit down . `` Guess what happened ? ? The truth is , do I have to tell her I was uncomfortable at that time ? Cars were congested around these buildings more than I had expected . French verbs are changing so dynamically . This is what it 's fascinating with French . My dog died recently so I was supposed to cry easily if I watched a sad movie . As usual , I did my favorite exercise ( and the one which is the most difficult for me ) . I do n't think this is quite the place for you . After I solved my thirsty problem I wanted to write something . But I have no idea what I should write about . . . . . . . . . because recently I did n't do any thing that made sense . it killed more than fifty thousands people . and destroyed so many buildings . I 'm going to go to an Italian restaurant tomorrow . If I eat slowly , will I lose weight ? But , authorities say the Tokyo area would be all right if the Fukushima plant were in a worst - case scenario . The running menu was 30km with a pace of 4min per kilometer . If you know , please tell me . HONORIFICS AND `` THANK YOU `` and tried to use `` Keigo `` or `` Honorifics `` , in Japanese . It is very interesting to correct sentences that are written by foreign people in Korean . In the future , I also want to learn Chinese and Japanese . I always says that I have enough time tor that , and I learn in the night . So now I have to write again . because a lot of Japanese companies are deep in red for the fiscal year of 2008 . My co - worker whose name is Agnes went on a business trip . My first diary . I think that I might not have enough time to see you , but if I have , I 'm looking forword to seeing you . I am still confused about the realationship with my BF I doubted anyone could do the same as him , but after the seminar I could belived . My sistert got married We will meet up and have a meal together , After the home celebration , I will go to the pc room and play the game sc2 and then I have to down load some files form the broken computer . Hm , maybe it 's not so easy to down load files from the computer . I was busy , I had a cold and I exhausted so I did n't over work today . Recently I have n't been watching TV . is we go into retail stores talk to people about Microsoft technologies . You spoke up about what you wanted to see the next version of Windows Windows 7 is designed be faster , more reliable , and more compatible , with more devices and applications , than ever before . so they 're really convenient to get to . And with the new preview pane , it 's easier than ever to see all the windows that you have open at the same time . which allows you to interact with the computer using only your fingers . now it is easier than ever to share those documents , pictures , videos , music , even printers , with anyone in the family , from anywhere in the house . With Windows 7 , and supported devices , you can get even better experience with Device Stage . We hope you are as excited about the next version of Windows as we are The Reasons Why . . . But it was really difficult - there was snow , a blizzard and I was very tired and weak ! : - ) Thank you for reading and correcting my sentences . . . When I reached the railway station , I chose the wrong exit . I changed the date of my ticket at the front of the railway station and came back . My parents write more because they send it to their friends , colleagues and relatives . Yesterday , I had a chat with a friend on Skype in English . Before departing from Tokyo I worried about my kids 's health conditions . I 'm currently being extremely lazy , more than ever in my life . even though im still keeping in touch with them , some of them seem to have forgotten about me already ; that I even existed in their life or not . If so , I would n't chase after them , as I got to used to forgetting my friends intentionally due to the problem of distance . The seasonings are soy sauce , mirin , sake and sugar . Put the all ingredient in the pot , and boil it for about 15 minuts . Put it in a plastic bag with flour , then mix it . Next make the sauce . Its ingredients are soy sauce , rice wine and rubbed garlic . Put the fried wing tip into the sauce . I had a chat with Erica this morning . I asked her about the present perfect tense . She said that , in France , the weather is bad ( ? ) but that she and her friend were really happy at the When they came to Thailand , we traveled together and had Thai food together . Good night . They intended to make their local Bon - dance into major dance like Awa - dance , and held a dance festival in Omotesando , Tokyo , which is famous as a site of Goth - Loli fashion and of youngsters who appear dressed as manga characters . There are his favorite phrases . He likes to speak these phrases once every two hours . My aunt and uncle are coming over tomorrow morning for New Years ' greeting . and poor people will still be poor . . . . No one wants to waste their income . Happy new year , Every one It is a small class with only 4 people . There were small candles on every table . But we chose a main dish ourselves . Learning another language However we should use formal phrases in particular situations . Definitety the word meaning is right , but actually it is not acceptable according to the time and circumstance . My university , university Keio , is one of the most difficult to enter out of all the private schools in Japan , so there is many people who are able to speak English as fluenty as native speakers are . It is regretful that I have not had such experiences , as I have studying English for so many years . It is typical of Japanese students that they can not speak nor write . Aside from above story , I am excited whenever I jump out of the cage and enter the new world . I need to do some shopping or resting . As the reviews on the website said , the service was terrible , but the taste was good . I did n't know about this nice site . I only stayed for a few hours but it was so nice to see them again and chat . It featured TWO DOOR CINEMA CLUB , PASSION PIT , TAHITI80 and SMASHING PUMPKINS Of course , I ` ve learned English at school and at the University - but without any visible success = ) Once I started to read `` Harry Potter `` and , you know , I was totally irritated by the work of the Russian translators - they perverted all the names in the book ! And I just do n't want to feel shame for my knowledge when I talk with foreigners or sending postcards on Postcrossing . . . I received my new sleeping pill , because I 'm insomnia . So nice to meet you , my friend ! `` Katuo bushi ( a piece of ( fried or breaded ? ) bonito ) `` and mayonnaise if I 'm not sure whether this rumor is true or false because But in fact , I really do n't like the dreadful coding . Words and vocabulary Are you trying to let get your parents to start jogging ? I watched a documentary program on TV . Learning and promoting language ability has no ending . Many Japanese students do n't have their own religion . However , I was absorbed in the fantasy world and it did ' nt feel like a long movie . My friends who watched Avatar said this too . There is a Chinese ( maybe it 's Buddhism ) temple near my house . It occasionally has events held in it . What ceremony is it ? They should spare a thought for their neighbours before offering prayer for the dead , should n't they ? I think it 's worth to go to Guam just for the color of the sea . When we smile , happiness comes to us . He told me his father just passed away due to a heart attack . But it 's quite shocking because his father was quite healthy . In fact , I do n't know whether or not he is my boyfriend . I 've been thinking that I really want to go everywhere in the world . Because , when I watch movies about Victoria in Canada , I 'm always stunned by the pictures of huge forests and high cliffs and the views from the top of the famous mountain . One tourist wants to watch Japanese Cosplayers on Harajuku street , another wants to be a Ninja . I do not know what should I say , and as you can see , I am not good at English . I like watching movies and TV shows . It 's the reason I want to learn English . My husband and I visited his parent 's house yesterday . During our talk I got shocked . In December 2009 , I 've quited the job . Especially , I like to smell the cold dust near nightfall . borrowing costumes I often feel lonely and bored though there still a lot of things I should do . Naritasan is a famous temple in Japan . There was TV program on about pyramidz . I found TV programs about pyramids on the last day of last year too . I wonder why there are so many about pyramids on new year 's days in Japan . But , as I watched them , I gradually became interested in pyramids ! Some day , I wanna ( want to ) go to Egypt and enter a pyramid ! Once more sad Middle Autumn ! Anyway , children will be sad if they will not be able to go out to join a lantern parade . I know some people who really do n't like Polish bands and singers because they say that Polish music is n't as good as music from the USA or other countries . So , I know how much it costs and its concentration . I walk 20 minutes to go to school . Several years ago , a famous mathematician named Arnold refused to enter the Pope 's academy because the people there did not justify ( ? ) Giordano Bruno . I am going to go to Iwate tonight to see my grandmother . So I must ride shinkansen although a Shinkansen ticket is twice as expensive as a bus ' . . . I have to memorize many chords and practice for a long time . The size is smaller than guitar and the guitar has 6 strings , playing it is easier than guitar . Right now , I am practicing `` Somewhere Over the Rainbow `` . However , I have to install the applications I installed on the last version AGAIN , because the initialization was necessary for me to upgrade Proyo version . I 'm taking a correspondence course in pedagogy , I 'm so sorry to break my promise . I promised that I 'll keep a diary to improve my writing skills . But every day I think to myself that I 'm too busy to keep it . Tomorrow do it , ok ? Then I did n't do it when tomorrow comes . Yes , I know I should n't delay what I should do tomorrow . But I ca n't obey it , It 's strange . I really want to improve my english . And I know the way to improve English in my mind . But I do n't follow it . So sometimes I hate myself . Why do n't you do it ? Why do you delay it to tomorrow ? Why ? You ca n't do things like Aya . you promise you will do like the way Aya does . but you break it . it 's so terrible . But I do n't know why I ca n't . Every day I want to be better . I study hard to catch up with my classmates , I think that they are really great . I must study hard to overtake them . and I do it im my own way . Every day I study English until about 12 o ' clock . I review my subject . I do lessons carefully . I hope I can catch up with them through my hard work . I know it ca n't be called `` hard `` , in another 's mind , it 's a ordinary life , ca n't be called `` hard `` . As for me , I think so , but if I stay up too late , I 'll feel too lethargic to have lessons . It 's my weakness as well as laziness . Second , the government should take Japanese twin sisters are roll playing MAIKO with a university student . I am attracted by MAIKO . Try to search `` NHK - DANDAN `` in the internet ! ! Her daughter is going to start kindergarten this April . somebody wrote that this website almost has Japanese as the mother tongue language and I think I could not get to sleep . because I feel so excited . It 's expensive but useful for me . SUBWAY - sandwich I always order Subway 's daily recommendation . Yesterday , I ate a BLT sandwich . One reason that I like to eat sandwiches is I can eat vegetables . Recommendation of today is `` Avocado Veggie `` . I thought I could study hard in my dormitory , however I was overconfident . com is still undergoing maintenance . I decided to unionize with the others to show our attitude that we wo n't accept it ! Today I talked with my best friend , and she said that her mother is sick . I 'm impressed by his belief and I hope the Prime Minister of Japan has I want to visit Bhutan one day . In China , parents always treat boys better than girls . Also , I 'm smarter than her , so I gain more attention from our relatives . I cried out : how could you say that ? you mean I just help you because I want something from you ? okay , you tell me , what should I ask from you ? I wish you can get me a girlfriend ? or , or wish you can marry me ? My sister totally drives me crazy . . . My parents and I just confused about what 's happening to her , and what can we do for her . She feels lonely and homeless . These days / Recently , I 'm redading a book called `` Small Steps `` written by Louis Sachar in English . To some extent , experience can be said as a custom or behaviour that was formed in past days , and can give you ability to know what to do when the case is different from what exists in textbook . Recently , I feel constantly irritated . When I see people who are very ill - mannered in the street , I can not help but get angry . I feel very relieved when I communicate with you on Lang 8 . I enjoy holidays ~ I 'm relaxing on the holidays from 8 / 13 . Today I 'm going to clean my room , laundry , washing the dishes and so on . So , I 'll do these things on my holiday first . My cousin is sick and I think I am going to be sick too . I am a university student . So I go to baseball stadiums at least once a year . Later he is going to show this picture to his friend and say you are his girlfriend . Finally I agreed to do it . So at this period , I do n't have enough time to administrate my blog . Country Living At the time , I could n't understand English well ; I just enjoyed looking at the colorful pages without reading the articles in English . She did not study hard and ended up as a maid too . I 'm sorry for the person who replied to my writing . After I saw your writing , and tried to see it again , If you see my writing again , feel free to mail me . but usually I do n't have to write in English . I do n't think that I can say , `` I lived in England , `` as the first sentence of a speech . After that , I moved to the living room and called police but , at the same time , he comes in to my house . The police was asking me for my address , as he keeps coming closer and closer to me . I put the telephone receiver on a table because I thought the police could get my address with their technology . He comes into the living room . I attacked him again and again until he could n't stand up . Hello ! Everyone : ) I want to study English little by little so that I can go study abroad to in the future . The Ueno zoo was famous for having giant pandas for a long time . Especially Indian movies . because I was n't sure about a few of the questions , I guessed . My out - patients could n't reach the hospital due to stormy weather . It 's so beautiful and . wonderful . Fact : I attended a training session for running . It said that scientists have found a new species of spider which is able to spin webs about 25 meters long ! I do n't think I 'll ever go to Madagascar for a holiday . . . There 're common sense that It 's difficult to memorize vocabulary and there 're too many thing to memorize . I do n't known what happened to her . She often grasped / rubbed her ears . It troubled me . It would be very effective if your working atmosphere is like a English speaking country . Name your dog or cat , Jack , David , Alice or Catherine . His teacher is an American who stayed in Japan more than 6 years and is learning Japanese . He likes Sumo and he belongs to a Sumo club where he must speak Japanese , because all the members are Japanese , he said . Some Japanese are excellent teachers who can teach you good English and their grammar knowledge is marvelous . Hi , everyone : ) But the article I read was criticizing this movie because it is historically wrong and Pocahontas is too sexy : ( And that this wrong image will affect the thoughts of children too much . In the article , this kind of thing is written : `` this story is like Anne Frank falling in love with a Nazi officer . `` It means that this kind of love can never happen between a new settler from England and a Native American . I want to study languages by chatting with people on my computer and I searched for a website like that . ' Maria ' wanted an option of replying to comments to be implemented , with which I strongly agreed , and she encouraged us to use ' native nod ' function more to confirm the other natives ' correction would be right or fair . Maybe all we want is to make this wonderful language - learning site ' sustainable ' in terms of funding or in terms of level of correction of any languages . When I went out to the exit from the circle road crossing route19 and route1 in long beach , my car bumped a car which passed my car on the left side . what is why , I might go to phuket . Because I think that they sang more earnestly about people 's feelings than in contemporary songs . It was too difficult . I think that Italia has many home - loving people . I realized there was an increase of foreigners from various countries . I really love a multi - cultural and chaotic environment ! the main avenue is srrounded by many anime signboards , which are huge and crazy ( as many reasons . . ) . and illegal merchants were selling illigal software or electric goods to pedestrians . Because , We have to do practice and more . I want to obtain a driving license soon . Mexico is just as beautiful as Canada . My town is as big as Calgary . Mexico is not nearly as big as Canada . I do n't like the bus because the bus is very crowded . If I ca n't find a seat , I have to stand for forty minutes . The grammar in these two languages is pretty similar , though . If there are any affixed decorations ( for example , bamboo leaves ) , you should hide the small bone with it . However , I only have a few information about Mexico . If you have been there before ( even if you have never been there , but you are familiar with Mexico ) , please let me know which places I should go to . and foreigners . haha My dream is to go and live in another country and marry a foreigner . Finally I am writing a letter to you that I hope you will like . Grandfather , I love you . . But I left my work for parental leave . The concert theme is the Final Fantasy game series . Today I saw an article that if express tolls become free , many pepole will use cars , and as a result the threat greenhouse gas emissions will increase . I do n't think it 's smart to waste the commuting time . But , I 'll be learning English on Lang - 8 . It 's a very exciting spot for Ghibli fans . Today was was very eventful ! this is my first time writing something in here . I am restarting this blog . The main purpose of this trip was to attend a wedding ceremony . Because sometimes Japanese wedding ceremonies are really long and boring . On the way , I am really scared if I ca n't explain why I did n't notice the valid period of the pass which depends whether I can keep on staying in Singapore and study . Bu luckily at last , after 5 hours of waiting I spoke to the counter staff . I am a software engineer . Somehow a lot of sofware engineers like animation compared to people with other occupations . I explained my patent to them . I noticed that the American culture is very different from that of Japanese . I 'm very very surprised , and I have to study the culture of other countries more and more , especially Australia 's . It was tasty , though I forgot the name of it . but I like everyone so much . I went to Germany for business last weekend . I ate salami , it is very good . I am looking forward to drinking it ! Strangely , I think that Koreans bear a resemblance to Israelis because they share the same passion and temperament . How mysterious and marvelous things God will do ! I called why the notice is not announced , and they said that it was delayed to next week . There are a few visitors and huge , about a meter of snow . I got into a bike It was pleasant to ride on my bike . I rode on a bike as a child so I still ride on a bike even after I become an adult . I have got to be careful so I 'll never break the speed limit . Today the wind is really strong . My colleague , who come to our clinic by bicycle , said that it was really tough to pump the pedals because of the oncomming wind , and that it took twice as long for him to arrive here than normal . He saw some people fall off on the road . This is sometimes dangerous because in the day when the wind is strong , we have more patients who break their bones . The purpose of doing that is to enhance my English skill . I want to get other people to understand my English . Unfortunately , I can not step in because everybody else changes a certain topic too quickly with smooth English . Jizo holds a staff in his right hand and a wish - fulfilling jewelry box in his left hand . Thank you for understanding my situation and please do n't be offended if I can not provide you with my Skype ID . The photo studio brought me these negatives . . btw today I worked at the cram school and it was my last class . Anyway after I made a lesson as usual , I started to give the students some advice like ' just be honest about what you want to do when the time comes to think about college ' ; ' please do n't lose your potential ' ; ' do not be afraid to take on a challenge and make a goal to motivate you ' ; and ' please study what you are interested in and enjoy developing your knowledge ' . Because many japanese students including me study just for college . Although they still do n't know what they wanna be or what they can do , they have to decide what their major will be beforehand . But I think that 's ridiculous . After I entered college , I found out many things that I should have noticed when I was in high school . The reason for my studying English In fact , we are very worried about it , because if we fail in this exam , our parents will feel very disappointed , and we will feel very ashamed in our classes . It 's going to be a very spontaneous trip ! So , I have to learn something new to do during long holidays . My sister was good at the Flash MX Proessional . And she gave me the So , I feel nervous . I ate a croquette of crab cream curry . I love croquette of crab cream ^ ^ Rhythm games are similiar to learning languages because both of them require so much time , persistence , and unceasing effort . This passage is mainly about the U . And I believe that without challenge there can be no self - respect . Everyone would like to have it , and at the same time is afraid of losing it . That was a wonderful sunny day ! Luckily , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . For instance , I was asked to find the mistake in this sentence : You should n't turn down an opportunity when you get one . Tomorrow is the first work day this year . I hope my work in this year is successful . I 've just started my job - training . Today , I went to Cross Iron Mills ! A clutch bag is a trend among young people . Gary is old . They are wrong . I 've been planing it recently . All the Chinese food even vegetables were too . I tried to eat the food but It made my stomach upset . It was three times greasier than the Chinese food in Korea . Last year , the new flu ( from pig ) came here , too . ( the swine flu ) But it is bad to touch our eyes and noses , so it will protect from the virus on hands . She and I were so excited and freaking out ! ! Story of two mice . Mee & Moo the mice 02 Actually , I have no idea how to get an ice cream . Although private schools are still in the experimental stage and are much more expensive in comparison to public schools , there is no lack of application for the enrollment . and the actor Eric Mobius . After that , one of my friends wanted to play a shooting game . I thought Facebook is a tool of communication for people all over the world . She just stood outside the door until her mother came home . Have you ever eaten Japanese fast food ? If you come to Japan , I encourage you to try eating Japanese fast food . The Yoshinoya is very famous in japan . Happy birthday to my friend ! ! 7 / 5 was my friend 's birthday , so our friends celebrated his birthday last weekend . Today summer vacation ends . I was so happy during this holiday , I traveled outside the city . I missd my friends very much , so I am ardent to see them tomorrow . I am going to study grammar next class . I do n't like grammar . Now , I 'm staying in Fiji because I became student . By the way , lately my English school 's residence was attacked by It was so dangerous . But abroad study company still has n't talked about it to us . So , every student thinks this company can not be trusted and it will be bankrupt in the near future . So I am going to search hard for another job from now on . I want to know about recommended shops , the climate , places that I should visit and so on . A week ago , I held a conference call with my manager and knew that the clients of new project are australians , so English skill is really important to communicate with clients for new project . I cooked eggplant - laced pan - fried noodles , boiled radish , and anatto omelet . So I hope that you can help me with my English ~ It felt like my tongue was burning , During third period , we have to practice chorus . I wish to win the crown in the chorus competition next month . I 'm not strong in english grammar , but I 'm still studying . . . Please help me ! ! I 've taken a bath everyday , but my feeling and scenery was different from everyday . It is a pretty day in Bangkok . I am going to have breakfast . It was a pretty dream . If I saw her in Bangkok I wonder what my first words would be . I do n't know but maybe I would hug her first . Despite this , I found it 's quite difficult to speak English well . I planned to be awake in a few hours after my nap . According to the e - mail , I made it to the final ! The final presentation will be held this Friday . The temperature in Beijing is over 30 degrees . Now the landlord of our office is going to break the contract and kick us out because he wants to use the place by himself . I 'm really willing to learn French and English , but at that time I was starting to forget my French because in the other Canadian cities I did n't have to speak or write it for about 8 months . It was AMAZING for me , because I was always dreaming about the moment I could speak both languages very fluently . Could you tell me What the drama ` s title is ? I had been exhausted from all the stuff that I had to handle , so I thought I needed a break and this was the right time to take a break , even if I end up doing well and getting good grades this semester . The temple 's quiet and calm environment and my meditation may help me think more clearly . Had quite an interesting discussion about routes and reason of fic - writing . I just found this site and I am a newbie here ! one of the important reasons why I study english is that I 'd like to communicate with other nice people from all over the world . Although it is strange to talk to myself when I am alone , I enjoy practising English this way . I was so surprised that I have been asked to take a break from my current job on Thursday since my poor performance at my job due to my body condition is not good . I will seize this period of time as a vacation to recover my energy and ability . Today , the typhoon prevented me from going to school . I can do housework . Then my mother will be happy . ca n't go to school until Friday . Be careful , everybody ! I have n't gone to the sea and gone swimming yet so I really want to go ! Korean 's big holidays Korean 's big holidays are coming up soon . What am I going to do for the coming holidays ? After these holidays are over , it seems really gloomy because there are almost no holidays in 2009 . These days I keep losing money from the stock market , which always makes me feel like I got up on the wrong side of bed . My friends said to me ' odaijini ' and I was a little happy . I read jump and magazines every week B : Well , I understand what you are saying but I want to keep this cordial relationship with you guys . Anyway , you have a captivating look . English is not easy . . . I am studying English . I went to an amature rakugo meeting yesterday for the first time . I like the chicken pies ^ ^ Sometimes I feel frustration about my computer skills . I truly believe that . I want to become a customer service agent in an airport . It was very interesting and inspiring for me because they seemed to enjoy their conversation and I could feel their energy , even though some of the sentences could use correcting . Actually he can now speak Japanese more fluently than before . Now I 'm following my ancestors to be living where they had lived , therefore I 'm going to the past . ( I know for me is the right answer but I just want to memorize without understanding ) I went to Greymouth with my flatmate . Yesterday I went to the NBA game , Toronto Raptors vs Chicago Bulls . My cellphone accidentally rang warning me of to charge my phone 's battery , that is also when I got a new idea . `` if you could , next time can we have tea in starbucks ? `` Im going to finish writing my graduation thesis soon . Today , I 'm going to go out for a drink with my friend . I try all the time to find an answer for the reason , I mean the most important reason we are here , on earth . I asked myself , did I do what I should onearth , sending the good messages for my environment by studying , then working and trying to help people . . . . ? At the end , I felt even if I did and I am still doing this , I will never be satisfied with myself . If I help people materially or mentally with what God gave and ? still gives me ( like money , health , knowledge . . . ) I will never be at the top to thank God . no , I try to get happiness and not just pleasure . I went to the hospital and the doctor checked my temperature . Today , I will start diary in English . I took the introduction to theater class this semester . As you can see , this is an introductory course for theater , but it is still challenging . And next week , we will perform monologues in front of our classmates . Details of the monologue assignment is that we have find books of monologues , and pick one to recite . The exact performance day is next Wednesday and Friday . After I read it , she will explain details on how to perform the monologue in the class tomorrow , so I listened carefully tp improve mine . I think I could do a good rehearsal before the performance . I like croqutte because it does n't cost much ( around 10 - 20 yen each ) and croqutte with brown ( Worcestershire ) sauce is the best with a lot of beer . I ` m going to go to Australia in september I am still worried about it We write a diary in English , read an English newspaper , read original booksin English , and study vocabulary together . Thank you for your kindness and hospitality . I had not spoken English for a longtime , it was difficult to speak fluently . I think learning another language is like sports . According to him , to keep your ability of playing basketall , you need practice everyday . I do n't work at the moment but I am going to look for a job , which I hopefully To be honest , I do n't have any interest in soccer at all , Well , I thought as soon as possible meaned just a few days . Rachmaninoff 's `` The Bells of Moscow `` is difficult music for the figure skating , and maybe for the judges , I think . I love this weather because it is like spring ! I hope to gain new knowledge ! I found it just now while I was using another site to learn English . What a splendid site ! The only things I know about him are that he is married and had a baby recently . So I bought two sets of coffee cups - Pink and Blue for him and his wife : ) When I got home , I checked the word with my dictionary . By the way , the reason why I mentioned about movie theaters above is because I will write an essay about the construction of movie theaters . First of all , I agree that constructing movie theaters is necessary . I will upload the cat 's pics someday . I want to be a member of lang - 8 , so allow me to introduce myself , I 'm Hill from Mainland China . I have writen a love letter ( But I 'm not sure ) for the principal when I was a kindergardener . I 've had no chance to play with kids recently , so because I have exams until next Wednesday . That is because foreign people ca n't come this univ if they do not have much money and considering the living standard of Chinese people , ordinarily could not come . However , many Japanese people , including myself , have several complicated feelings concerning Chinese people , because the Chinese response to Japan is unacceptable to the Japanese mind . Of course this does not apply to all Japanese people ; but it is a pity that some of them it does actually apply to some of them . Therefore I will end my comment . Addiitonally , I have to cut and cut ( all the ingredients ) to eat . Therefore , I want to let univ . If I take part in such an activity , I can contribute largely to students and their parents concerning their meals . My room is very hot right now ! I thought that my accident was awful , but I appreciated my friend 's kindness . Playing guitar is interesting , although it 's a bit hard , I think I can have fun from it . Surprisingly , my guitar teacher is younger than me , and he said that there is a seven - year - old child playing guitar well on Youtube . He said if you practice hard , you will also play guitar well . What is the most important characteristic to being a good teacher ? The university is the most famous shool in Shanghai . There , I made friends with one Shanghainese girl . First of all I 'm going to lose 5kg of my weight without damaging my health . I will neither skip a meal to become thin , nor do sports exaggeratedly . The same happened when I skipped meals . Yesterday , itturned out he had been sending it to `` big ' r ' obe . Travel to singapore . They get to choose their last meal . She said , `` Many citizens thouht some judements were unfair . How do you want to be executed ? I am going to pet shop because I want to get her some clothes last week , I was there as a substitute . I may get tired in the middle of the game . then , I felt I need to improve my English more and more . I have ( basically ) been starving myself for an upcoming examination . . . When I study for a long time ( especially subjects which I 'm not interested in ) , I become a bit crazy . . . If people look at me , they will ( quickly ) look away . . . We talked about the examination like I thought we would . . . while having dinner . . . . . . though we all really wanted to change the subject . . It is written in English ! So , in my opinion , the economy gives us a kind of grammar to recognize the environment around us in a new light . After all , meeting strangers means facing the unknown . And it 's human nature to feel a bit uncomfortable about the unknown . Most of our fears about dealing with new people come from doubts about ourselves . because it is difficult to put on . It makes me crazy , because I will feel very tired when I am busy with my work , I want to take a break , but my colleagues ask me to do something important . But I ca n't , nor can I talk about this with my friends , they will think I am crazy . But what I am doing now has nothing to do with English , and it is in contrast with my aims . I do n't know how to hang on here , but it also very difficult for me to change another job , because the high cost of living in Shanghai . I am a little afraid of this kind of thing , because I do n't want to ask my parents for money , because it is hard for them . Please correct my writing from now on and engage in conversation with me . Also , what kind of materials should I study that will allow me to speak out or verbalize more complex vocabulary ? But , because I have never been to other countries , I am a little worried ( Past tense ) One important reason is that my birthday is on the 9th October . I went to practice ballroom dancing for the first time in two months . The Teacher 's explanation was always precise , and it was easy to understand . Long time no see everyone ! ! Though we promised to meet at Kichijoji station on September 29 , he could not get on the right station . In Japan we call America , Canada , France and England the four main countries . Thisfamous story depicts well how large Inokashira park is . However the girl did n't stop standing on the boat and finally , she was scolded by the supervisor lol . The master replied `` none . `` Unfortunately , they had no money so we went to a cheap one . But they were hopefully satisfied with my translation . I did stretch my body fully before the class and it helped me follow the moves easily . nuance , implication and connotation , etc . In addition , I 'm curious about ' would have p . How different is it . . . Korean English teachers taught me incorrect grammar in my school . I believe you honest . How different is the nuance of these sentences ? If you are interested in Korea , Korean language , culture or singers , I will help you , Would it require an additional fee ? I presented yesterday , but the presentation did not go well . I ca n't recognize what the questioner was saying . I was shocked ! ! ! ! ! ! ! ! ! ! ! ! I talked so much on Saturday because I joined my friends ' bridal party . I would like to know if I have written it / this correctly . Hi ! ! ! Now , I 'm studying `` Media History of Japan `` at my college . My other language In Spain , Spanish is the official language but there is also Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak all 3 of them . ( ? ) As for Catalan , it is a romantic language derived from Latin and is spoken in Catalonia . ( Levante is in the area of Valencia , the Balearic Islands , Andorra is a small country in the Pyrenees , southern France , and some in an Italian city called Alghero , is the 75 most widely spoken language in the world and I am very proud to speak . ) ? ? ? I cut my hair for the first time since I came to Australia My favorite hair style is short hair ! ! ! so my schedule is very flexible . I would be grateful if you let me know when would be I 'm a member of Track and field club . Fortunately , I could avoid that and I 've been working as an teacher in a high school . Is really hard write here everyday when you have a endless routine . And I thought the only thing that made us feel a little unhappy is that the serving fee is 10 % of the price , even higher that the GST ( the Tax ) , which they did n't mention outside the restaurant . Super Robot Wars L This is the latest in this series . Today , I registered on the web site , and then added friends . The main material inside the cabin is leather and aluminum . I came to take an interest in it because when I 'm reading Japanese journals that male native English speakers wrote , I occasionally come across feminine speech and I 've had a feeling of uncertainty about feminine speech in English . Today , I 'm in a bad condition . I bought a bottle of water first thing when I arrived . I felt good working because my friendly Colleagues were just seated next to me . Shewent to China and studied there for 4 years . The researcher , however , argues that it is no problem because it is not clear that carbon dioxide causes global warming . The restaurant is one of the most delicious creperies in Paris . At last , T ( t ) he Summer Vacation is coming up tomor ( r ) ow . My Pregnant Friend She is pregnant now . Touhoku has a lot of beautiful nature but the number of historical tourist attractions is less than other areas because it used to be the barbarian area in this country . Right now everybody greets me like this . LOL In addition , I 've considered my plans to improve my listening ability : listening to some CDs for TOEIC or Western music carefully and confirming those lyrics ( As far as the latter goes , I think it 's kinda meaningless though LOL ) Actually , I came to know my big weakpoint in English . Is reading novels or magazines best ? I can not get to sleep until 1 o ' clock in the morning . Watching two episodes of FRIENDS before sleep is my habit now . So after all , it is 1 o ' clock in the morning . She invited me to a restaurant and we talked for a long time . After graduating from university , the rest is beautiful when we remembered the past between classmates . This was my first time making a cheese cake ~ Therefore , I could enjoy driving while admiring the beautiful view of nature . We could go out to eat delicious Japanese kaiseki , which is a set of Japanese food , because my grand father was pleased that we visited his house , so he celebrated our visit and the new year by treating us to kaiseki . I 'd like to get well soon , because I 'm going to go to Australia on Sunday . I probably understand Past Perfect Continuous which I mentioned in the latest diary : D Thank you everyone : D I do n't think I could live in the room where someone was killed or committed suicide and nowadays appears on full moon nights : ) There were Mexican vampires , El Muerte , Retablo , Santa Muerte , Mexican holidays . . . It 's convenient to use , but when I turn on the heater , ( the air in ) my room is becomes dry . I think it 's the beginning of a cold > < ! So I 'm hanging out a lot of wet towels in my room for my throat , because I do n't have a humidifier . I entered into a Japan masters swimming competition . Ten years ago , I was in my second year of university . I did n't have a exact address . I remember when an English teacher who came from American said that Korean emotions are affected a lot by the weather . I was really surprised because my feeling is often changed by weather , too . I 'm a beginner in english The house was incredibly beautiful . Halloween is popular with young people . So when I feel ache on my back , I look at my addomen immediately . Oh , a little part of the world . Good sleep is very important for our health , especially for girl 's skin . If I mention Japanese Manga subculture , and how it is gradually spreading worldwide nowadays , I can give a basic outline for Manga fans . Like for kindergarten boys , kindergarten girls , young teen boys , teenage girls , men who golf , for gamblers , for mahjang fans etc . All manga is able to be clearly devided into two family trees . One belonging to men ` s culture and the other women ` s culture . Today is like yesterday and I think tomorrow will be like today as well . I 'm sick of the same routine . My husband told me about Buddhism meditation , and recommended me to wish well on myself , on people who are close to me , on all living things , on others whom you dislike , and on others who dislike you . do not hesitate to ask : ) At beginning , I thought we would barbecue by ourselves . I appreciated their hard - work so that we could have such yummy food . I decided to study English more / harder . If I wrote this sentence , I would probably mistakenly use `` which `` or `` that `` . So many suggestions and advices were buzzing around my ears to tell me which way should be taken and which should be isolated . I do n't know why the first letters can not be auto - capitalized . Welcome to correct my takes mistakes . One of my favorite characters in Greek myths is Hermes , the Romans call him Mercurius . My little finger got in my nose . I saw it in the kitchen after that . Maybe somebody will help me ? Stomach Flu But having found this site I decided to start a diary here instead . Now I am quite exhausted , but it 's okay because I would have been depressed ( for nothing ) if I had nothing to do today . The day is National Maritime Day . Recently , I love looking at the National Geographic site . After few years I decided to brush up my English . I attempt to listen to English podcasts , and the radio every day ( Maybe you know some good radio stations with are lot of stories or interviews ? ) What 's more , I bought a computer program . In Japanese , however , it 's totally the opposite . I really enjoyed it ! I want to be able to speak English fluently . Lately I like to watch `` The OC `` series drama on DVD . However , after coming to the US , I feel this is not true . I 'm translating some part of aninfographics book and ca n't say in russian `` mapped image `` or `` mapped picture `` . I have an example sentence : I felt his love for her . I visited sports shop to buy a belt bag for running , which can hold a pet bottle . However , recently I 've been reading some books ^ ^ I do n't know the system of lang 8 . Yesterday my wife and I went to see Avatar , the 3D version . We did n't plan to see it in the first place , but after viewing so many recommendations and the high ratings people gave it online , we decided to give it a try . Hope to see your letter or message . . . Are the governments grasping the severity of it ? It is still hot in Japan despite it being September . Almost half of my time at school , I struggle with Internet Explorer , not MS Word . Today , the funeral for two Marines killed in Yonpyong - do was held . I cried during the funeral . Like bungee jumping and free fall . Japan 's Earthquake I remember thant I forgot to take a bath this morning . I like herbs . Many kinds of herbs are in my house . Especially , he likes Thyme , Lemongrass and Chicory . I sometimes use my herbs for cooking . He sometaimes watches Japanese movies . It 's a holiday today . Particuraly when we crack jokes each other , we transcend the generation gap . I understand a lot but my speaking is awful ( ? When I was a high school student , I was always concerned about the school uniform 's somehow ugly style . When I touch my uniform , I remember my teacher , my school life and all my efforts in that lovely high school . I started to study English on Lang - 8 . I watch animation every day . Some parts of the animation I have watched few times . I hope the animation can come out again . I understand myself , I lack some grammar and vocabulary . However it 's may be difficult for me to make my dream come true , because I have a four month old baby . . . Maybe it was a dream . . . If he kept shooting in a normal way , he may never have caught a sheep . There , he walked cheerfully . Our country affected by huge natural disaster . The aftershock continues now level 3or4 . I do n't like science . I want to meet her again and talk about things that had happened lately I can introduce myself here and we can make good friends . Before I watched the class , I did n't know how a nursery was different from a kindergarten . I want to talk in English with foreigners but I do n't have an opportunity like that . So , I ca n't speak English with a foreigner . There are many foreign guest in Roppongi , I think . Actually , I thought the beach was huge when I took a trip to Miami . . . Well , I enjoyed that time ! What a boring news ! ! This is my first diary . It is very cold , though today 's weather is fine . From Fumi in Nara , struggling with my final thesis ^ 0 ^ He went there with almost no English skills and he also did n't have money except for the school fees for the university . The lessons are one - on - one , and the teacher is a very intelligent person , not to mention an excellent player . My collaborator from Chine puts a lot of pressure on me . Please let me know the racism that your country has . Speaking of `` sakuramochi `` , Japanese traditional sweets , there are 2 different types : I feel lonely , but , next month , we will enjoy beautiful wisterias in Nara . hi , are you still awake ? I need your help to improve my vocabulary . So if you have any good suggestions on how I can improve my English , please let me know . In the morning , there were lots of grey clouds . They put me in a bad mood . We stayed under one umbrella and talked , laughed , and did different , funny things . I luve live in Taiwan . Currently I am searching for a new job while learning English and Japanese . My interests are reading and listening to music ; I like to read novels and comic books , and enjoying listening to vocaloid songs . It 's not my first time writing an entry in Lang - 8 , as I 've written in Japanese before . I love jogging , I used to have this habit , but sundenly I stopped . It 's fun , especialy to me , because I do n't like to exercise myself in the gym . It 's too crowded , I do n't like the music , and I alway have a excuse not to go . I 'm working really hard because I 'm going to travel on June 28th , this summer , and there my aunt works with models , this bothers me a little . I 'm trying to use words that I usually never use . SAD PS : My guitar was broken last week quite badly . I 'm still waiting for the luthier to fix it , but it seems that he is taking his time . Recently in Japan , animation dance is becoming more and more popular among young people because of a dance team . Their name is Hamutsun Serve . Furthermore , even when someone has a good command of a certain foreign language , if he or she has no absolute idea about the culture of the other person who is speaking , it will affect their conversation . I went to the Abercrombie & Fitch to buy clothes . Then , I researched this song 's infomation . It is just a tweet in the early hours of the morning . . . I found this web - site in Nikki 's daily newspaper . I know , freedom is really good thing . I have to read a lot of documentation , comment 's from programme code . It 's really amazing Sometimes , I want to try to apply to be admissioned by some American school , but I know , I wo n't accept it if I do n't study hard ! This year one wo n't be able to see the fireworks show . The municipality ( Edogawa ward ) has decided to refrain from holding the event because they feel it would be insensitive to ( the ) victims of the 3 / 11 disaster ( the huge earthquake and tsunami that hit northeastern Japan ) . For several weeks after the disaster , some people accused ones who were enjoying joyful occasions by saying `` That 's unscrupulous behavior `` or `` You should refrain from such activities . `` These sentences are correct ? The luckiest man in the world , Steven Bradbury , took the gold medal in the Salt Lake City Olympics on 2002 / 2 / 16 . I 'm so exhausted because I worked out for 2 hours . Even though I do n't have any energy left now , I feel much better . I asked a shop girl if she can try to find the Leggings in other UNIQLO shops around Tokyo Ikebukuro area . She phoned many shops , but the result was the same . I highly recommend you all to use a bluetooth keyboard . Did anyone watch the news about the earthquake in New Zealand ? Yesterday , Christchurch had a big earthquake . At lunch time , our teacher told us Christchurch had a earthquake which is level 6 . 5 . When I came back home , I watched TV , I heard that about 65 people died . Now , that 's amazing , I hope that people who live in Christchurch can be better . In conclusion , these are the reasons why I think the Internet , mobile phones , and the development of the medical technology are the main inventions and innovations in the twentieth century . There is no judgement , no contradiction and negative talk and we sometimes can teach each other something we know . I do n't have a lot of friends but I do have a few close friends . I know they have their own lives however they are helping me improve . I want to write English very well . I want to speak it very well too . My mother is a nurse whose job is to care for handicapped people . Her hospital has a school , car , and bus for them . But , in the country I am living in now , many handicap people use the public bus , which have a lift for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work without hiding thier identity , and the class - mates talk to them as a one of their friends . Most of my friends will choose corporate life . Studying overseas would also take almost all of the money I have , and I would need to sell my apartment which my parents bought for me . It is so hard to make this decision . I hope everything is fine with my friends . If nobody wants to correct my notes . It took me about 10 years before I learned English . As a Japanese , I also worry about TOYOTA 's problem and situation . I 'm looking forward in preparing the school 's festival . such as German , French , Korean and so on . He has gotten a girlfriend recently . I felt so lonely . I volunteered at the university last Saturday . the parents of first year students come to the campus . the campus tour was so popular , we increased tours . It took more time than re - installation . damn . `` You will be here in 5 minutes ' time `` . Does `` in 5 minutes ' time `` mean within 5 minutes ? on an early morning he chased me and then he finally stopped after a few moments . Because we can operate it by putting our fingers on the screen . I still ca n't believe it . . . But today , I found on the internet that the U . K youth mobility scheme was already full by 19 - Jan - 10 ! I feel also this century 's moving very fast . So I definitely recommend that everyone comes to Seattle to study English ! ! For that reason , multiculturism is a big advantage of the tourism industry and this can contribute to the development of the whole society in general . I have had some frustration in my office . Hello everyone , my name is nakasan . I want to speak English . Yesterday , I went to Tokyo Art museum . The museum features [ Studio Ghibli ] now . [ Studio Ghibli ] is a Japanese animation company . I heard Napoleon Bonaparte was a short sleeper . I 'm embarrassed / / The day after tomorrow , I 'm going to move out from the current place to new place ! I ca n't believe this many things are here . Because I 'm taller than average for Japan and my shoe size is bigger . Have you ever heard about the Winner winner chicken dinner ? It is an old American motto with long history . OK , let me tell you something about it . It is said that in the 19 century in America , Las Vegas had already become a fairly famous place where rich and wealthy people spend their money . At that time , there were few casinos there but each of them provided good service for customers to enjoy their time there . At first the customers mostly consist of the rich and famous people , but as time goes by , the economy got better , so it brought more typical people without fame or a high place in society to Vegas to try their luck . At that time , almost every casino brought out a new service in which the customers were able to buy a kind of dinner with chicken and some meat in it . That was such a cheap choice for most players , so it gradually become an American motto : Winner Winner Chicken Dinner ! Now I am looking for a new opportunity , especially in a foreign company . Please check this text for me , urgently We have Chinese people who can speak Itailian , English , and German . . Recently my opportunities for sleep have become short because my work schedule is too full and Actually , I got married and have been here for a year . I usually use broken english when I talk with American or other people , but it 's enough to be able to communicate . Life in a foreign country is hard . Lost ( my favorite ) is about the survivors of an airplane accident that crashes on the beach of a mysterious tropical island . The survivors try to escape from the island where amazing things can happen ; for example : people are healed from illness , there are polar bear attacks and a smoke monster that kills people . I hope you 'll help me brush up my English . White day is a very happy day for someone who has a boyfriend or girlfriend . And they give presents , such as candy or red - roses . Aside from the chimps , riding them seems to be fun , First of all , most of our cities are very dense and our roads are very , very narrow . Secondly , Japanese people are very health - conscious , so they tend to walk places , or ride their bikes . I saw on the news on TV last night that the government and some of people in Thailand do n't understand each other . The people who call themselves ( red shirt ) are protesting against the goverment because they do n't like the Prime Minister . They want the Prime Minister to resign from the goverment . We have had this problem for a long time , but last night something that we did not expect has happened The government decided to stop the Red Shirts . One of the people who died is a photographer from Japan . I am looking forward to know what the government will do in the future to make the improve the situation . and they can understand each other . I hope everything will be all right and that no one else will die in the future . Thank you for helping me with my English long time to write my journal entry . He did n't send any messages or emails during his absence , nor did he take the initiative to talk to me after coming back . While having lunch with my junior colleague at a pub , I saw the selected design for the 2nd phase of the Yongjong passenger terminal on a newspaper , and I was almost stunned by their reckless design scheme choice . There are very beautiful flowers in Japan during the spring . I am still a student , and my major is International trade , Oh , I forgot , I 'm a freshman . To make friends is to improve my spoken english level , so , hurry up , plesae help me , let 's work hard ! Whatever your dream is - studying abroad , working in another culture , communicating with friends from other countries - it will come true with your little but continuous effort . They fought bravely against Japan and died for independence . So I bought a white watch for myself and a pink one for her because my estimate was 2000 ~ 3000 yen . I went to a golf practice center and enjoyed golf . I 've found that lots of how - to books on developing I - phone applications have been released . I do n't know it is true or not . He knows there . I have got the entrance exam today ! Subjects are math , Japanese , English . It 's not difficult but I made mistakes , OMG I have to study still ! The Japanese government decided to start an English education program at public elementary schools in Japan starting in 2011 . It creates a big mess for homeroom teachers . The government is ordering teachers to teach English by themselves without any training in how to teach English to kids . That is , the government throws things at each elementary school . It 's on a first - come - first - served basis but campers should come with an open mind . + ) I have one question . . . Where do you usually get your travel information ? I want to make a lot of friends through this Lang - 8 . I 'm going to practise my English conversation though skype . I like it because I never had it before . I used to have long black hair with my bangs parted . Being a millionare , the presindent of the world , a super hero , a famous actor or traveling all over the world might be part of our dreams when we were kids . Losing the passions we once had , now we pursue a common life , simple and stable . I saw an eclipse this morning . We Japanese tend to gather and drink when we feel sad , stressed or unhappy , the typical example of which is a `` complaining drinking session `` after work . Normally , a couple of colleagues gather together and drink , complaining about their superiors after 5 . The same thing can be said at the end of the year , that is , most of us would want to forget sad and unhappy events of that year while drinking with a couple of friends or a couple of colleagues , etc , etc . . . . Goodness . I prefer Q and A sessionsto report writing , because report writing is very difficult . I have to write the report in a specific style , for example , each sentence has to end with the same inflection . For my presentation , I will talk about my research for six minutes , and afterwards there will be a Q and A session . Yesterday I was not working at my second workplace , because the rules allow me to have one day for rest . For now I will just have to study English harder in Japan . ( ^ ^ ) / \ ( ^ ^ ) But my bank account still shows a double debit . Although I have the chance to take the test but I do not have enough confidence and always consider that I wo n't pass the CET - 4 . I just found this good place which may help me to improve my English capability . It is freezing cold today . Three of us , including the taxi driver , were so embarrassed that we said nothing for a while . So , we just had the Gay ( Pride ? ) Parade , which is one of the greatest parades in the world . In particular , biology and chemistry . My ielts has passed 5 . 5 two years ago . I 'm fine with my classmates but some think studying in such a big group is n't good for us , as it can distract us from our studies . And furthemore it puts things in perspective . And you must to know a foreign language very well in order to be understood . On the other hand , education in your own country , for example , in Russia is very interesting too . Russian , Literature , Physics , Chemistry , Chemistry extra and History . . . . . . . . . . . . . . Yesterday , I went to Shinjyuku to meet my friends . I think my hearing skill has gone a little up ! ! There are no more than 5 people who can pronounce my name . I have a cat , it is a girl . It 's very good gadget for me . I rented the second episode of HullHouse . But I was suprised when I went through the tollbooth . Ithink people who normaly do n't use this tollbooth will use it from today . I have to be careful driving tomorrow . I 've never been to such a place as the Rockies . But I laid down without hanging them out ! Recently I have n't written diaries for a few weeks but I can get feed and other necessary things for free . This is a thank you to all you kind people for your patience in correcting them . It is natural that Japanese go to shrines when we need a peaceful mind . I feel SOOOO BAAAAAD ; [ I never thought about writing a journal in English . you will get a speeding ticket in Japan . you should drive by a speed of up to 40 kilometers to 60 kilometers . If you drive on the road with many houses on either side or by a school , you need to follow that sign . Can you correct my sentence ? I felt it was eerie and thought the national hysterics were something like fascism when I was watching TV . There will be the exhibition at my daughter 's kindergarten tomorrow . She brought the program from kindergarten last week . My daughter is in the youngest grade so she made `` daruma `` and `` christmas trees `` . So , how do you guys study for learning your second language ? my computer broke when I tried to start windows and install some software , if I had enough money , I would buy a laptop , a toshiba one . During my turn , the examiner just could n't find the form for the examine next to me , and he looked like he was very busy , so he was not so strict when I was driving , and that made me get 100 points on my driving exam ! ! Sue : Pardon ? I will call the others and tell them to get ready in advance . Santa Clouse came to the party / visited our party and gave me a present . My teacher say / said that Santa Clouse is / was majoring in engineering . I had n't a chance to say `` good bye to Santa Clouse , so my teacher will call him later . Because Santa Clouse brings them gifts in that night . Children are hopeful on the 24th night . She has finally become accustomed to staying there just in the past couple of weeks . At first I was worried about her mental condition in the changing surroundings . Thank you for reading ! Paragraph 1 : Introduction : Travellers from other countries bring more advantages than problems . Paragraph 2 : Paragraph 3 : Overseas tourists purchase souvenirs they can not purchase in their own country . It brings a lot of interest in the country . Paragraph 4 : In conclusion : Generally , it appears that there are more advantages than problems . I 've been studying it since I was six , but in recent years , I have n't been able to practice it . We had an all inclusive stay , meaning that we could eat and drink anytime for free : ) Egypt is a very interesting country . . . Kiss for Egypt : ) Bye . See you tomorrow . ; ) The daughter thinks that roles should not be determined by gender but by personality . Louse in `` Fat Girl `` is closer to the contemporary woman than to the American wife in `` Cat in the Rain `` . `` Cat in the Rain `` focuses on nurturing . Unbelievable ! So my town is conveniently located but it is n't too busy Life will be different then . I would like to improve since being fluent could help me in my future career . Even though I study English , I really want to write in English . I am going to enter university come Feb . 26 . If whatI am writing is wrong , please correct me . Japan usually hires the students as new workers until Spring . American , European , Chinese , and so on . . . One day , he happened to meet a pretty girl and fall in love with her in their childhood though he does n't look young , and after a long time they meet for the first time and they are so passionately in love . He had already lost 2 babies because of famine , and now he had a new - born baby Pauro . Pedro never forgot this promise , and he sent his son to school . Pauro was n't a very good student , but he was a good football player , and when Pauro was 15 , Pedro sent him to his Transport Workers club , where Pauro trained very hard . When you open the card , you can see Santa Claus and a reindeer coming up to give Christmas presents . For most of thedefinitions , thesefeatures are : So the solution is reduced into a simple in theory : if you want to be successful ( happy , lucky , rich etc . ) , simply think that you are . Would you please teach me this word ? Girls in Thailand were very beautiful and kind . But my girlfriend forbad me to dateother girls . 2008 . 11 . 18 Tuesday Sunny My eyes were red and swollen , and I sneezed a lot and had a runny nose all the time . By the way , I ate beef bowl at lunch . , I added too many red peppers . Have you ever imagined your future lover seriously ? Finally , I could n't even show my smile in front of them , therefore I could n't see their smile either . I am extremely excited to hangout with them ( who is them ) as a friend or more than that even . Moreover , I found the hottest girl one week ago by accident . Im really ashamed of the behaivior I 've had so far . If you are also trying to learn Madarin , it is good way When I am very moved by some scenes , I get gooss bumps and I ca n't stop my tears . Recently , I 'm so busy preparing my resume for applying for jobs in Singapore . . . Now , I 'm trying to learn in this way in order to distinguish casual English from business English . The first day was so crowded we could n't cross the street . I enjoyed the weekend nights at home . I think it 's a great website because I can practice English here and I hope that I can help others to learn Chinese too . Salt or Sugar ? And I mistakenly used salt instead of sugar . + Oh no ! + I do not have one though . A lot of people are still missing or waiting to be rescued . For many people , it 's a very comfortable temperature . By the way , I do n't have a part - time job . 5 months of winter ! I only want warmth . Because I have played badminton for five years . So I can use the computer . I return books . : ) Yesterday , I drank too much alcohol Yesterday , I drank too much alcohol because of alumni I called my mother , I thought if I could hear mother I feel good , but it 's not ok . I want to say , we have to be able to distinguish between correct and incorrect information . My day started at 10 a . m . I just went to kitchen , made some food ( it was an omelet made from three eggs and some sausages ) and I ate all of it . And in that dream was British comic Sasha Baron Cohen , Britney Spears and some other TV - stars . My dreams are really strange . I was the leader of the international club for two years , and I aslo studied abroad for a year . Hi . Introducing myself . My teacher gave me advice to look at this site to practice my grammar and writing . Next time I 'm going to do a translation of some parts of some books or something like that . Do n't laugh at me ! After class , I have two meetings with other teachers . This is my first time But my spoken and written English is so poor , that I am afraid open my mouth . I do n't have a foreign friend , and there is no foreigners around me . What if I speak English to my friends ? That 's so weird . Second , they may not know what I mean sometimes , because my English is not good enough for them to understand . But , she showed me how to cook it very carefully , so it was very delicious ! Soak the fish , the onion and other vegetables in the sauce . If you have a recommendation for flowers , please let me know . I had met a Filipino girl who needs to learn Japanese . Through teaching it , I could have noticed differences I 'm too enthusiastic to fulfill my work plans recently . But some clouds was hiding it . She took me all over the resort and showed me a lot of Disney history and taught me a lot of Disney knowledge . I think she is the most beautiful person who is alive today . Free as a cloud , I learned a lot of things about shintoism . Before going through the Torii , we bow toward the main shrine . Priests always say the most important thing is to respect the gods . Do n't worry about making mistakes . If you cleanse your hands perfectly , Japanese people will be surprised . I do n't believe in the existence of gods , Anyway , it was a novel ( ? ) experience for me . Next time , I wish that I could meet another beautiful actress by chance . the story was about a mathematician who tried to prove Fermat 's unapproved theory . It turns out that it 's made from glutinous rice and powderd tapioka . It tastes terrific and the texture is like that of a rice cake . After that we had lunch together , we had udon ( Japanese noodle ) Accoding to the Bus guide , there were 2000 temples and shrines there . We laughed together and played pes 2011 . It seems that there was not any disasters in my life today , so I closed it and logged on to the internet to relax . . . When you speak Japanese , you will find that your I have not gotten used to Japanese pronunciation until now . It 's the one of my favorite sports . But I could n't do it . When I try to post it , I always receive an error . Why ? ? ? How does everyone get cute pictures ? ? ? The strong wind was blowing and the rain was pouring . she gave the world a moral example that bridged ( the ) divides of culture , class and religion . I have to travel by plane on a business trip tomorrow and the day after tomorrow . So I 'm very concerned whether I can come back to the Kanto area on Thursday . I 'm really nervous because I was not taught on how to use the registeration machine . However , my coworkers are very kind : ) it is so comfortable to be with them : D she said one more thing that if you had made a call this morning you would get the whole fee So I was little Lucky . I am not really a hard - working or diligent student , I always join in on some activities in school rest time , such as dancing ( Jazz ) , when I dance , I feel happy . so the Chicken 's name is vons chicken . Is it really good / interesting ? My birthday is January 17th . My family consists of 5 members . My dream is to be a good business person . Because my family are not so rich . Some people say ( that ) the placement of her features ( eyes , nose , eyebrows and mouth ) is perfect . The story of the play is based on the daily life of citizens of `` Edo `` ( medieval Tokyo ) or Osaka , usually funny and sometimes moving . Please tell me if you have time ! ) I thought that foreign gods are very strange and interesting . I changed my job at the beginning of this month . Its been almost a month . where I work is comfortable and the environment is just what I wanted . So I decided to start studying English again . I 'm studying English so hard in order to go abroad and study English this August . So , I 've been attending English conversation classes since a year ago . She has wonderful stories about her life and her ministries in the church . Now , I i intend to participate in an internship overseas next spring . Also , some elderly people think , a cool body is bad for yourhealth . When we think negatively about a lot of things , our mind can be filled with horror disbelief , anger , and other unproductive emotions . Today , I discovered this site while I was surfing the web . I think I should drive more frequently . Today I had a soy latte , egg toast , salad and yogurt . They had lots of stock , so they just wanted sell them . . . `` Do you have any plans to get married ? `` My handle is Sukesan1984 . On the menu was `` Sukiyaki `` ( Japanese style beef and vegetable pot ) So I really feel grateful for my friend ! ! My command of English is n't very good . Sometimes , millionaires give money to society , which is then used to make a better place to live ( in ) . Even though we use the barter mechanism for the market economy , it is not true that people do n't have the eagerness / desire to own things . Recently , I do n't take any medicine . In a case when the symptoms are serious or continue on for days , I will . Prepare finely chopped green onion , and grated ginger . I 've heard before that people in Australia eat a lot of soup when they have a cold . Because Dazaifu - Tenmangu is a beautiful shrine . When we are angry , not only ca n't we solve the problem very well , but we also make the conflict grow ( or worsen ) . The earthquake and tsunami are devastating , and suffering continues in northern Japan . I traveled to Punom Pehn , Cambodia last week . bikers , taxi drivers , the staff of the guest house , a poor person said `` give me your money `` , and more . . . This white cat has yellow eyes and looks fat . I enjoyed myself chatting all day long with my friends on Kakaotalk , which is a famous smart phone application , and also the most useful messenger in Korea called NateOn . Children should be given guidance when watching TV due to foul language , and objectionable / obscene scenes . English is not good because I ca n't use English fluently . tasks given to me are not int ( re ) eresting , . They are boring . Lotte Mart stopped selling Tong Kun chicken because of pressure from public opinion . Tong Kun chicken was released at the incredible price of 5000 won . Actually , this is a natural process as the company becomes larger . That 's why there 's conflict between the two interest groups . The second issue is the conflict between the small scale sellers right to live and the consumers right to choose . Some groups who represent the rights and interests of small scale sellers argued that Lotte Mart sold chickens unfairly in spite of the deficit . Regardless of whether this sis true , it is natural for consumers to choose cheaper and higher quality products . The third issue is the propriety of the comment by Mr Jung , a top politician in Cheongwadae . But I can ' t do anything now . I can only do one thing , which is practise my dance seriously and I hope I can get rid of my stiff dance step and not tear my trousers , so that my poor family will be proud of me . I 'm wondering what this sentance means . `` Bill said you were in charge of real estate . They are outstanding , kind and always willing to assist in my homework and reports . Actually I mean I 'm happy because I can write here freely without worrying about people laughing at me . I want to speak English more comfortably Every beggining of classes , I get too much nervous . They were so delicious ! ! But still It showed increase in performance . I used this cart so I should return it over there `` . She answered `` It 's their job `` . I 'm looking forward to talking with new friends from all around the world . Japanese TV broadcasting will be changed to digital after July 2011 and TV prices are lower these days . I am very satisfied . About Paper media graphic design a French friend told me : I search the correct recipe , the main crux is eggs temperature and setting oven time . In time , he rose to the position of a head agent soon after his appointment to Haiti on a mission . No one suspected the Colonel until he was caught when he was trying to sneak into a confidential room of the Pentagon which he had no access to enter . Yesterday , I was very surprised at the earthquake . At the beginning of the shaking , we thought it must have finished as usual , but it continued for a few minutes . My friend bought a backpack and a pair of slippers . Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as the cartoons , and they are interested in Japan ! I often talk about Japanese anime and cartoon to them . So , I want them to know another aspect of Japan , and I also want to know the culture of the other countries ! I can not sleep so I have to wake up . . . . . . . . take my money go to bank . it is hot today . I hate to walk in the street . . coz make me sweat . . but I wanna . . . . . . save save money . . . for my plan . . great plan . . . . I got kicked . . I am the admin but they deleted my ID . . 2 years time gone to waste . . . . . I worked for it everyday . . . The number of participants was about 100 . So I ( decided that ) learn English every day , I ( believe ) that I will ( get success ) in ( June ) . hold on , I belive thati will pass english 4 examination f finally . I 'm studying English for an exam to enter a college . The second exam will take place half a month later . This is a written test . Could you please help me with my writting ? I 'm looking forward to collecting my journal . I hoped to go to the hot spring in the south town . ( My country has a lot of hot springs around ) But It depends on weather from now on . I should brace myself . by the way , I wrote the difficult poetry phrase in the first paragraph , so It took a lot of time to write that part . I received an e - mail from someone who saw my profile at that website . And I accepted his invitation . I have learned that I should never use the webcam with strangers . And I deleted my profile instantly . watashiwa nihongo benkyou anatano ie nipasokan wa arimasu ka ? The purpose is studying English , especially speaking and listening . They offer discounted prices on flights , accommodation , and car rentals . 6 ) and there are too many applications whose functionalities were extremely similiar , Unwillingly , I wasted 2 days recovering the OS , removing some applications which were rarely used , cleaning and defragging the hard disks and registries , and so on . It is about 18 meters high and 12 meters wide . my overall high school score was not that good for my orignal university selection , and although I did n't have a very big passion , it ca n't be helped that I choose the Korean history section . but as I say , I was intersted in Korean history . my familly motto is that everything is influenced by the heart . When driving my car , I plan the things I have to do today . I do n't think I have any . . . . after that , I wanted to keep the class going . I think that my students was so suprised that a beautiful woman was belching . . what do you think makes a respected teacher ? study hard , and symphathize with students by reading their mind . at last , advice to lovely Chirwon highschool students . at this time , you do n't have to be greedy , so they can find their own beauty , make impressing memories , and grow your self confident to challenge new things . so I wish you become the most sparkliest star in the world . `` the new day , the owner of the most sparkliest star is just you . That I was surprised and disappointed that many people said we do n't have to help Japan because Japan pilaged us before . ( I know , these kind of people are only a few and they never stand for all of us Koreans and Korea . It 's not gossip , it 's a terrible disaster that happened to human beings . He lost his house and family , only thing he has now is a life . Helloooooo everyone . Wow , I am so happy . I slept for 14 hours . Hehehehe . I downloaded a movie that I am very excited to watch . imagine spending two and half days downloading movies ; two of them . So I had to go to the site where I found the movies . _ _ _ _ O Luckily , I found the movie on direct links . It fit my toes and it was so comfortable . I changed my shoes to Geta and went to my home . Ito Yokado , one of the biggest super market chains in Japan I tried to study Spanish after I came back to Japan , but There 's no lecture in my university and I did n't have enough time and money to spend for it . I bought one easy book for beginner , but that 's all what I did . , I decided to study it again recently ! I enjoy finding unique names and I imagine what kind of people they are . It means pig in Japanese , so I couldn ` t confirm to her that she was Ms . After I went to a cafe , and went to a shopping mall . I got that at half price ; ) Of cource , most utilities and restaurants seperate non - smoking area from smoking area . So , there are a lot of people smoking on the streets . For example , very high tax is imposed on cigarettes , and smoking at public place is completely prohibited . Last night , my friends celebrated my birthday . So I guess we should live our lives as happily as we can and let our government take care of the rest , pretty little citizens as we are . I went hiking in the mountains with my friends and my sister . although nowadays it takes only 45 minutes by car through the highway . I picked those from the internet because My photos at the shrine were not very good for showing how it was there . Next time I 'll show my own photos . What a pity ! When entering into a boutique or facing a clerk over a cashier counter in a supermarket , Japanese customers do not say hello to the clerks . ( They wanted to know where the bag was available , but they were disappointed to hear that she bought it in Japan . ) I have heard she has many fans all over the world . Jigsaw Puzzle of Mona Lisa The man who drove the car was very rich , and he had been punished twice because of speeding . We sweat , and felt healthy , fresh , and hungry . We ate a hamburger around midnight . Our jogging did n't make sense . This book is the second volume of the series . This book is also interesting , as much as the first one , but could n't show the deep impression of the first one . My name is Nasser and I am from Yemen . I work as a pharmacist and I need to study English because I am going to travel abroad to study for my Master 's Degree . At this time I work in Saudi Arabia , but really I cant stand it here . There are many many mistakes in Saudi Arabian living . They 're terrible in dealing with foreigners . etc . Am I wrong ? I want to clarify our relationship . I could enhance my relationship with my friends by using mixi . Are you good at mathematics ? ? I 'm not BAD at mathematics . I mean , I can get a so - so score on an exam . For example , people who really understand mathematics can get visualize things in their brain quickly when they are working with a trigonometric function . Anyway I think when I study math I need a mathematical way of thinking . That is the fact that I need to take a mock exam tomorrow and I need to face that fact before thinking about why I 'm not a mathematical person ! xD hah But whenever they speak with a pronounced accent , it 's too difficult for me to understand them . I have never gone abroad , so I want to travel around the world and see many places . It was very cold this morning . I often sit vacantly at my desk and do nothing on a summer afternoon . Maybe I 'll gain weight ! ! Soon after the quake , we found ourselves unable to buy any food because of the immediate closure of establishments forced mainly by the interruption of utility service . Yesterday was my first day back at school and I still feel tired . I am bored with my studies , as well as other things in my life . I 've worked part - time as a home tutor , read articles and watched anime ( or kept quiet in bed ) . Nowadays Japanese society is / has become personalized . It 's really amazing ! So , Perth was selected for Best Place To Live . precious memories His university is very famous . But I have no plans , I have n't decided where I will go . Definitely , I have visited most of the sightseeing places like diamond I received a new Spanish text from Japan , which is for beginners I am just learning `` ser `` and `` yo `` with it . I was so impressed by his acting and got interested in spanish and its countries culture so much . Although I have been studing English , speaking english is difficult for me . Actually I was there when they met each other for the first time : D I could n't beleive I laughed . . . I think I have to study harder , because I ca n't speak English fluently . Every summer I have to prepare for a formal teaching test . When I was in the college , I always went to her class and did teaching - observation . I love teaching and I think it 's a most suitable job for me . Haruki is my favorite author . I recommend reading `` Kafka on the Shore `` By the way , I 'm not sure about the difference between `` it `` and `` that `` . I hope that it will be very interesting and funny here . or how did she already get many corrections even though she has only 2 friends on lang - 8 . The second reason is our school uniform is a little expensive . ( URL I rarely cry when I watch a movie , but I cried . I will stay in the administration department . In the morning , my phone rang . beat Manchester United football . Of course , I will study ! : D He interviewed me for an admission interview 5 months ago . The full moon has very strong and strange power . Soymilk tastes similar to milk . The meeting lasted 6 hours and attendants asked the board members about nuclear plants . I am still poor at writing English . But if I continue to write in an English diary every day since today and someone corrects my poor English , I will be able to make progress . But it was boring and I thought it was nonsense , so I was out on my own way silently . Normally the way to make noodles to is boil in a pot . When you have bothered with everything . However last Sunday , I left for Mt . Fuji is full of / covered with volcanic ashes . The temperature at the summit was very low even though I wore a down jactet . My friend said they went to University at night or during time off from work for the last 5 years ago . I have n't tried to do anything for a long time , so hearing about it was really touched my heart , because I have also wanted go to University , but I could n't decide how to get started . My friend 's talking made an impression on me . I have struggled with it up until now because I have no confidence . As a business course would make it easier to find a job in New Zealand . But - he left more messages to me . Last night he left messages for me again . I 'm very nervous , but I can only study for next examination . well today I have n't done anything special I have just visited the shopping centre Filion at Fili station . There are many stained glass windows there . I am a bit confused . They looked as if they were walking or running near me , and I enjoyed the feeling that I was diving from the cliff . But to my surprise , when I just beginning to talk that I felt so bad on Saturday , they gave me a `` Sorry `` immediately , I thought they would argue , but they did not . . . . . . . . . . . . . . The day before yesterday , I went out with 2 of my friends ^ ^ We got together in Sendai , the city which got hit by a big earthquake . It seemed like the reconstruction was going on pretty fast which made me feel happy . We studied together there . I want to say to every single user , `` Thank you for helping other people who want to learn foreign languages . `` However , when I got to the college , I heard that the story got brighter in season 4 , so I decided to give it a shot and watch it again . knows about many things like classical music , clothes , or shoes . As far as I remember , people in Wenchuan , Sicuan province who experienced the earthquake received a lot of help from the whole country . Hope we can go to Europe next time . My Mother Is Strong She 's stronger than me . My superiors were arguing about subjects I did not know so , I have to so , it was confusing to communicate with a patient . First , When I ask the condition of the patient , Are these correct ? ? or what are other real English conversation , please For example , reflux in veins , clot in arteries , venous insufficiency , and from different countries . It should be delivered in mid Apr . However , sometimes we go on a picnic or walk in the city . I would like to listen to classical music in a theater / theatre . Last year , I realised how beautiful classical music sounds when played / performed by an orchestra . Because of that , I now employ a guy from Australia as a waiter from yesterday . He wants to learn Japanese and stay in Furano until the ski season closes . And he can speak Japanese well . Of course , he has to work as a waiter for the guests from Australia . There are many differences between Japanese and English , especially the grammar , I missed my English conversation club two weeks in a row . However , as I said , since they had to observe the strict rules for whatever reason and they were almost not allowed to express their own ideas and opinions , sometimes some people felt very uncomfortable and tried to get out of the community to seek solace in another place . Wow it 's an awesome place ! Will I meet some good foreign friends ? My dream is not to just be a doctor , but a skilled , heartful one . And as a physician , I 'd like to make many people feel at ease , and happy . I wish that he could live as long as possible . It seems like a boring and hard summer day . I took the airport shuttle to Wikiki and then took a taxi to the place where I 'm going to stay untill January . It is in the Hawaikai area where my host family lives near the Koko crater which was an active volcano along time ago . I am so glad to stay in such a lovely town for an upcoming 4months . I learned about stress reduction and how to relieve anxiety . I heard that she bought a lot of alcohol , especially Japanese - sake , when she went Therefore I have to be positive and do my best every day . Sometimes English pronunciation is hard for me . I ca n't pronounce `` squirrel `` and `` POLO by Ralph Lauren `` perfectly . One of the reasons was she was unaffordable and two , I did not understand about the job . My ex - colleague was not receiving salary sometimes , when he worked in canada . tongue or nipple . I want to go there once a month ! I went to see my friend after I finished work . We went to the same restaurant . We were sitting in the suanlum night bazaar and listening to music . We had drunk fruit shakes and ate something . She invited me to go night clubbing on saturday but I did not say yes . I promised to tell her tomorrow . I can not dance very well and I think I will practice today . I like to play the guitar when I have free time but not now because at the moment I would like to practice English more than play the guitar . I always think about it more seriously than others . But I found a different kind of fashion from traditional fashion . From next week I decided to go to community center 's English club . I really do n't want to forget English . I am worried about your condition . But I was not aware of somebody ever approaching me . Why did they chose me ? There are 4000 American phrases . Hello , my friends . I also hope that I can make many new friends here . But here , I can say angthing I like , even thought it wil lwrong . I should finish my English practices and understand the most elementary English knowledge , before the school year begins in September . But I feel that it 's important for improving my English to express my thoughts and describe my situation . I like to watch American , Korean and Japanese T . V . . I am a colloge student . I study psycology . I know that psychology in foreign countries is very famous . If you like me , you can leave messege to me . I am very grateful to everyone who correct my diary . I admit that , while studying , I have become bored . I was also impressed by your many heartfelt words . For the last few months my parents and teachers have been talking about nothing else but my exams in May . There are relatively many English speakers in my company . But because there are not many shopping areas , restaurants , or cafes , it is a little inconvenient . Maybe the weather changed too fast . I do n't like this weather . I went to Hwagyesa Temple to join Sunday Zen program with my English teacher , her friend , and my friend yesterday . We practiced meditation while sitting for 25 ~ 30 minutes , walking for 5 ~ 10 minutes , and discussed Buddhism together . Hwagyesa Temple is a special temple . I wanted to participate this Hwagyesa temple 's Zen program , but I hesitated . You can customise your home on the `` Settings `` page . I love my little daughter very much and she knows this . It is only 40 years old , but there are very talented actors and actresses . Dinner was also great ! Particularly , the chocolate fountain , which was delicious ! I cleaned the aquarium and did away with books and CDs . 25 I happened to meet my friend who has been friends with me since we were students on my way home from London . That things are imperfect is the reason that each day is new and gives the oppotunity to make things better . I majored in English and just took an Italian class . Most of them must have been / were made in Japan , but all the labels were written in Chinese . I normally do n't use them , because I always rely on the dictionary . But I dreaming of going to another country someday , to appreciate different cultures and do language exchanges . I think the internet is wonderful tool . I am trying to write my message and exchange with other learners . I am studying English in an English training school . My friend wanted to study English , too . She finally enrolled in this English training school . Everything was okay , and we could study English together . The problem is , this training school gives me a `` transportation card `` , which you can use to take buses or the undergound in return for my recommendation . I am very disappointed in her . So , I gave the card to her . I am really disappointed ! Please check my diary if you could , I have to study English thoroughly ! First writing This is the first time to write a diary on Lang - 8 . Yesterday one of my friends recommended me this service , Some Japanese can obtain very high marks on it . How on earth did they score such high marks ? I wrote I am going to a concert on Saturday . But I missed out on my favorite band 's performance , cos I was late by an hour . I had remembered the incorrect opening time . It was raining . I waited for the police for about half an hour . It was already midnight . They asked me many things . But I love tropical fruits ! ! ! I can not control myself when I face them . : ) I think it 's good for us because we do n't have a lot of money so we ca n't afford to visit foreign countries . the first diary in English I heard that people normally type their resume in America . The first one I happened to know this website , and registered as soon as possbile . When I was taking a Japanese course last summer , my teacher told me there are some websites where you can write articles and help to But after that , I forgot it amongst the darily affairs . I am weak in . writing . My speaking and listening skills are exacty low . . . But I know practicing is the best way to speak English very well . I wish I wo n't think that I wish I had studied harder / / / I 'm going to school in September . Maybe the reason I am so much slimmer than everyone else is because I am not a big fan of eating food . Korea was very strong , but finally Japan could win . we were really excited and happy . Especially , I like that , I can see the each prefecture 's special products and famous things . I learned of Nebuta Matsuri from that , which is a famous and unique festival in Aomori prefecture . At the same time , some people play and the other people dance by jumping . If you are interested in Nebuta Matsuri , I suggest you to search about it on the internet . As you you can see around us people are increasingly unhealthy . why ? He is a foreigner and has lived in my country for a _ long time , but he can not speak the language very well , so we usually talk in English . But it did not work well , and our relationship finally collapsed . . . It is not easy to find foreign friends in my country . Of course I am not a perfect person , and I have my faults , but I could n't accept what he said . . . So our relationship has collaped . . . and if you have a similar experience , please tell me something about it . I slept late last night but I have to do that because I intend to improve my strength . Today I am going shopping with my sister and my cousin . My cousin wants to sleep at my house today . I am so happy . My baby sister is sleeping now . ^ ^ I will even know some laws of Ukranian ` s Rights of buyers . Embarrassing situations It 's annoying because it means I ca n't speak loudly . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own problems . But it 's useful for me because watching foreign news is good for those studying English . My [ teacher ? ] taught me that you should watch it every day if you want to learn English well . It is time to go to work ! If you do n't get up , you will be late . `` I responded , `` Mom , please give me five more minutes . `` But now there is not much water , _ canned food or ramen . naughty . I ate rice already in the morning . Now I think I will have energy again to do what I want to do today . ^ ^ I forget grammar so it 's very difficult for me to answer them . His favorite character is Bumblebee . Today , I went to the library to study with my friend . l heard some bad news from a doctor . He said my first son needs to have an operation . It is a national test for all the university students . The test is a little difficult , but this is not the point . I am so disappointed that my boyfriend did n't come to go with me together ! Maybe , he never love me . In some sense I think , he do n't care for me like before . A month has passed , he said that we should go home together . looking this time , whathe said is empathy . Some foreigners , who love Japanese culture , always said that they learned Japanese from animations and manga . A : After joining a club in my college , I met many people . Most shops do n't close on Saturday and Sunday in Japan because all shop staff work for the service industry . Because I had a lot of work to do , I work up early in the morning . my family and I sometimes enjoy talking about disgusting things during dinner time . A : One day my mum bought a yam for dinner , and we dicussed the turd - like shape of it ( = m = ) % ^ & * & ( & ) % $ . . . ( talking in detail ) Their offense and defense are great . Recently in Japan there have been a lot of disasters , for example the Tohoku - Pacific Ocean Earthquake . Actually , I decided to be a waitress at one of your restaurants , because I thought the hospitality in all your restaurants was very high . However , I realised a problem in my work place . I found the problem 2 weeks ago then I sorted out the regular customer 's data . At that time , suddenly all the data was lost . I want you change the protection software and check all computers in your company . So I 'm writing these sentences for the time being . I do n't have school today . I did n't use to read a lot but I try to read more now We 've now become familiar with his songs and can imitate all of his songs ! If he had strong Christian beliefs , I thought he might not be able to accept ( his ) wearing it . ipad is also a really special gadget . I will pass through Brisbane , and if you have time to see me , I will change my schedule to stay 1 night in Brisbane before going to Melbourne . Please give my regards to XXXX ( her husband 's name ) In my house , it feels as if it was a family menber , or it is n't too much to say that it sometimes has a bigger impact on us than a family member . I mean I want to improve through conversations firsthand rather that unilaterally in front of screens no matter how inaccurate the information is compared to those of mass media . During rush hour , one guy said , `` Sorry , I am in a hurry right now , so I will give you two stickers . `` When I collect 30 stickers , I can get a Doraemon fan . The highest level of heaven . . . wow . . . amazing ! Bean is very funny and foolsh , Rowan Atkinson is usually a serious and calm gentleman . The Mid - Autumn festival night And I knew she stole a glance at me and me too . I look forward to seeing you and chatting with you on twitter ! ! My favorite display was a group of sardines . November ? December ? I 'll talk about one characters in one of my favourite / favorite films . It is a very impressive film . He does n't give in to the contemporary society . He wo n't do things which he thinks are meaningless . Eventually , after his insisting on the things which he thinks are meaningful , he succeeds and gets a genuine career , genuine love , and friendship . So it encourages me to pursue things which I think are meaningful , and which I think are right . because last night I ate so much . . . it 's because I want to learn English So , I want to practice writing about many different kinds of themes . Today , I write about following theme : `` What person do you respect ? `` Although I still do n't want to go to bed , I can adjust to cold weather but not to hot weather , because I can put on more clothes . Unfortunately , I was using my laptop and I did n't have a mic . I must work because there are lots of bills to pay . Hi , I am susan . Today is Valentine 's day and this diary entry will be my first on lang - 8 , I am so happy . Yakiniku restaurants are very popular in Japan . So we eat Kimchi , pickles , and Chijimi crepes with baked meat . We can eat a lot of different kinds of beef and pork . Some restaurants bake our meats for us . Both have merit and demerit , so it 's nice to have a choice from the view point of your lifestyle . The technique for cooking Kobe beef , is not to bake it for too long . Be careful , and research the homepage of the restaurant first . If you worry about how to research , My Singaporean friend told me that Singapore has no `` White Christmas `` but we have `` Wet Christmas `` this year . He is a professor of pharmacology and a friend of my last supervisor . Nevertheless , he listened to my story earnestly and gave me many great suggestions and opportunities . Third , he knows some pharmacy students who are interested in Japanese and he will introduce them to me . On usual Mondays , my feelings are low because it 's right after the weekend but only today , my mind was clear and I was excited even during work . She said that `` I promise you that I 'll do my best to study hard . `` However , I did n't think I made a wrong decision . About earthquakes . What do we as common people deal with these really sad situations ? The man who looked like a sincerefamily man actually turned out to someoneseriously addicted to porn and `` casually hooking up `` with women whom he had met at some on - line dating websites . Of course friends , relatives and loved ones especially his wife and two children have been so shocked about what had happened to their husband / dad . . . Everyday I will write in English in my diary . I decided I wanted to give a souvenir from Japan to my American friend . He is a male and maybe 26 or 27 years old . What would you like as a souvenir of Japan ? I 'm worried about accessing the Twitter site . Some patient do n't understand that they can totally remove the scar but only make it lighten . winter 's holiday has started . . . I was surprised about it snowing in October . I went shopping with my friend . Are you satisfied with your career ? Because , I 'm just starting / in the middle of my career now . I have not imagined my career goals yet . You know , it is one of the most famous universities in India . The Story of Coffee The night view from Victoria peak was wonderful . I love this season because autumn brings us tasty foods and beautiful weather . I got up a little late in the morning , but she got up earlier than me . I saw a delicious breakfast on the table . Now I feel this unpleasant atmosphere has gone . First , in my case I wanna go to Tokyo because it is such a huge and dynamic city . Which sentence do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? I will write in my diary next week . . . When I was a junior high school student , there was a Kendo tournament . because I have to go to school ! In addition the steak is served with an ice tea as huge as a small bucket . When I left part of the salad unfinished , I felt kind of apologetic to the restaurant . Is this a kind of Southern hospitality ? There is a difference between South and North . I often go to a restaurant near my office . The way comedians make a lot of people laugh is different in each country , is n't it ? After that , the traffic jam started , so when I arrived at the office , it was already closed for the day . Life is always full of frustration and disappointment . As you just surmount the present ones , new challenges are constantly arising . As far as my recent condition is concerned , a serious obstacle ( actually a really frustrating interview for a position in the student union ) has now left me feeling disappionted , worried and annoyed . All applicants , some of them my classmates , were hired except me . When I found this out I could hardly believe that I was the loser . It really hurt me and affected me badly . When a person ca n't reach his destination he may fantasize about success . I suddenly remembered this line from a magazine . So this state of mind made me revise my performance . . Maybe I was too childish . Maybe my ability to tackle personal relationships is lacking . Maybe I was n't qualified for the position . Still , I never doubt my persistence and patience . . Everybody has his own advantages and disavantages . My rivals , no matter how immoral or even evil they are , were all accepted . Sometimes I feel it 's unfair and think about the value of my existence . However , I also think that it 's reasonable that I , such a silent , humble and inactive student , should not be given many academic affairs to handle . We did n't even go out for months . I talked with an American friend this morning . I became a mentor in the Buddhist temple . And my ancestor would exclude everything . But he suddenly died from major illness before he was about to succeed to rule the whole country . After his sudden death , our ancestor 's commander became weaker and weaker . I come from a small family in Taipei . I live with my parents , brother and 3 pet birds . They are lovely , especially my 3 pet birds . I like to take pictures everywhere . I know English words and a little bit of grammar , so I can write English sentences like this . At first I want to concentrate on improving my English ability . about 30 % of the exam , I am afraid I can not pass it this time . Today I will go see a movie in central Melbourne . It is so difficult for me ! Child education is a very useful subject because I want be mother I want met people about the same age as me . I will continue writing my diary to improve my poor English . I want to exchange letters with new friends who are n't Japanese . It was quite useful for building up my vocabulary . The owner is a huge fan of pro - wrestling and he does up the restaurant with various colourful masks . I met some guys who always stay at home ! They said [ we know you are good at English , so is it possible if you could connect with japanese people who are also good at english and ask them for some adult movies ! ! ! ] THIS ESSAY NOT JUST FOR CORRECTION , IT ' S ALSO FOR [ HELP ] ! ! In Osaka , it 's quite warm today . I turned off my computer because I 'm afraid the computer would be damaged . I 'm nervous because the result of the University Entrance Examination will come out in two days . When it comes to human relationships , inferring a counterpart 's feelings or thoughts plays an important role in communicating well with others . They ca n't help foster our imaginations , but inform us with a lot of facts about the world . I gave cosmetics to my friend and sent an email to her . I 'm will be glad if the items will Arrive this week . If I have the power , I 'll write an essay . the acupuncture university . While I was studying English , I could see two pigeons walking by the window . And then , damn it , I took a nap . Today I went to a Mexican Restaurant , to try out other nation 's foods . Mexican Restaurant in the U . I was n't drunk but it feels good . First , I needed to go to the box office to get a ticket . I scurried to the next . Suddenly it spilled out solid excrement from it 's behind . Oops ! It 's a pun , intended hokum . I wondered why it was awake in spite of its ' being . nocturnal . For a long time , maybe for seven years , I had n't been to Osaka therefore , I really enjoyed it there / this time . University athletes compete in a 200 km marathon to decide which university is the best . I really want to become good at English . Secondly , I must listen to English CDs every day . Thirdly , I must remember an English word . Not only were the scenes amazing , but the actor was also handsome . But I like it , exhausting myself doing the thing I like best It is only Japan where you can eat raw internal organs from all over the world . Almost all tourists who come to Japan eat `` sushi `` and `` tempra `` . But raw internal organs lead you to a special and unknown world . That 's not so surprising , is it ? I did n't understand all of it , but it 's an interesting and fascinating novel . However , the other day , some Japanese delivered my baggage for me . This walk was a very rare chance to experience the beauty of American wildlife . This village has 5 springs , 1 souvenir shop and 1 green tearoom . When considering pronunciation , English and Japanese are so different ! In a pool , she is scared to put her face into the water , and at a park , she can not spin on the iron bar , because she is scared of bending her body toward the ground . But I want to be an a programmer so I want to know English for my future study and work ! . . . . The tension between Pakistan and India has been strengthened by the terrorist attacks recently . I work as a bellgirl at a hotel . We have a wedding hall and a banquet hall , so we are so busy on holidays . Seventeen wedding ceremonies were held today . But , ( ever ) since I became interested in English , I have wanted an English name . S please , recommend an English name to me ! About 35 thousand people participate . Yesterday , a subcontractor visited my company . Part of the Tokyo area started to have power failure . He often makes a round trip between Tokyo and Nagoya city . I think it 'll be helpful and interesting for me to study English because I can practice writing and someone will check my grammar . I 'd like to say `` nice to meet you `` A wonderful event has been held in Okinawa . Tomorrow I am going to watch `` Sex and the City - 2 `` with girls and will try to be merry , carefree and so on . They were my first choice company , so I 'm very disapointed . . At the time all stores closed from the 30th of Dec to the 3rd of next January , so we had to stock everything : drinks , food , videos , refreshments , snacks and so on . Now , 24 hour convenience stores have spread out everywhere . It is literally convenient but I am a little bit disappointed that such a thriling custom has gone . . . Luckily , my children like my cooking . we believe it is normal that we graduate from a Japanese university The test consists of two section . The first section is easy and almost all examinees can pass , but the second section is hard and very few people can pass it . If I speak English fluently , I will / can go abroad . I want to go to many foreign countries . Then he found a bed and started taking off his clothes . However ; there is not yet consensus on whether rich countries should give financial aid to poor countries . The first point with respect to this is that powerful countries could offer advanced techniques to the poorer countries . Take China for example , when scientists developed new technique to plant crops ; China could stop importing crops from other countries . Last but not least , powerful countries should also offer medical facilities to poor countries . In other words , disease also plays a critical part in economics . Admittedly , it is not enough to provide financial aid to poor countries . But my wife likes it very much . I have certain ( stereo ) typical images about certain countries . I went to a music instrument shop to check guitar - effector . Tomorrow , I will go to BBQ shop with my friend . Today my colleague talked about Western culture and Christmas presents . At least one people is happy this Christmas , the giver or the receiver . So they tend to decline the invitation to participate in the WBC . I was almost on the deadline , so I needed the Exchange Coordinators to fax the documents ( to be sure that they made it on time ) . I asked them to mail the documents to Japan . The bizarre weather . I watched something on TV about the bizarre weather all over the world . I 've heard many stories about the collapse of the earth . I believe that she will get the gold medal and I can see her best smile that I ` ve never seen . Mind Problem . . . I do n't like English classes . Please . . T ^ T correct some sentences . feel relieved bisa diterjemahkan menjadi ' bersantai ' ? On this special day , we visit out family , eat dumplings , and walk out to enjoy the beautiful lanterns . I explored the area where Prague Castle , the river and the Old Town are located and enjoyed myself at various entertainment places . It was about a teacher that was fired from his work because he did a little trick in the classroom . I really laughed a lot when I heard the story for the first time , but now I feel sorry for the teacher . And what a crazy principal ! ! I was caught in a shower last night . According to legend , ' Exposition of the Hieroglyphical Figures ' was written by Nicolas Flamel . I tried to eat sandwiches for the sake gaining a variety of nutrients . In my family , when we get a cold , we drink roasted tea with a little salt . I walk 15 minutes from the station to my office . But I do many things during this long commute . listening to English conversations using iPod . So , It is very important for me to spend time in the train , valuable studying time . Good - bye . Now let me introduce our city to you . We expect more and more foreign friends to invest in our city . This is my first writing . I would like to know how to learn English faster , can anyone tell me how to learn English faster ? She drinking beers and smoking cigarettes in a club . I could not find it yesterday morning . JIANGHEN told me that he took this book when he went home yesterday afternoon . The school festival begins today and it continues until this weekend . I saw this game last year , I heard many departments did that and they earned lots of money ! ! ! Chinese uses hieroglyph characters . English is phonogram letters . Each Chinese character is different from one another , but English words are all assembled by the same 26 letters ; it 's easy and efficiently , especially when inputting them into the computer . Chinese words are assembled by characters . English words come from [ creation = ? ] , affixation or compounding . Most of people said `` Avatar has a kitsch scenario , but is a movie with excellent spectacles `` . Surly , the scenario is kitsch . So recently my ability to speak English is increasing . . . . I want to be an employee of that bank . In recent weeks / Lately , nearly everyday I self - study with my boyfriend . I learned many students have read the book , but I 'm not sure that they have the knowledge , but at least they 're a step further than I . With the passage of time , I feel a lot of pressure around me . This week is really important and precious for me . In recent years , environmental pollution has become more and more serious . Many countries pay attention to the environment . Because I wantto perfect my English and have good conversations with people without having tothinkfor one or two minutes to talk or answer one question . If you want to talk to me , let me know and I wiil stay in contact with you I 'm beginning to read this book in English . I remembered , that I have a translator book on Russian . I want to develop my English in order to be better than before . I might not get used to this weather because some coworkers are wearing short sleeve shirts . In addition , I 'm using a blanket . This is my second Home page on Lang - 8 . It is named Fent . But I am looking forward to meeting many people . Now I have a lot of free time to spend , but I do n't have anything to do . In this case , if you were me , what would you do ? I want to go to McDonalds to eat their new hamburger . According to research , theaverageage of Japanese people when I 'm tired but I cant fall asleep again . These days I 'm so lazy . `` keep yourselves from Idols . `` I will probably have coffee in the future because it 's easy to make and tastes better . It has already come extermely hot temperature in Qatar . I really want today to pass immediately . When I was an elementary school student , My father bought a PC made by Fujitsu . I want to know why unhealthy foods always taste good . I went to a park called `` ge yuan `` , which was built by a businessman who sold salt . There are four different views in his garden , In 1999 , a horrible nuclear incident occurred in Ibaraki prefecture . But one month after I moved back to Japan , I could n't speak English any more . He is always smoking and drinking coffee alone . Then suddenly the man ( who was repairing ) opened the door and shouted like this , `` Water please ! ! ! ! ! ! ! ! ! ! `` . And when I entered my room , it smelled like the aroma of coffee beans . I 'm learning English and would like to improve it more so that I can travel all over the world and communicate with a lot of people . It said about Rat - as big as a cat discovered in Papua New Guinea . This title is `` National Security `` . It was very delicious ! Because of the high temperature , the snow was kind of melting . In this shop , I could have coffee with rabbits . I look forward to meeting with you on this wonderful and beautiful site , because it lets ushave Communication with others from other language speaking regions with peace . I look forward to your visiting and participation . Activity 2 : sepetember 28th , 2010 , Xinshi central park , Xinshi agnello and Shaoxing wine celebration feast That 's why I joined this Lang - 8 . Japan will play in the finals with e South Korea at 10 am tomorrow . I mean , I guess many people break their cellphones because of their habits . And when I was 8 , my father went out for business . Anyway I can make my friend very happy and that is my pleasure . I 'm looking forward to eating them ! X ) I appreciate it . I could catch his English , but I could n't speak as good as I expected , and I did n't know how to make sentences , so I 'll try to improve my speaking skill . If I need to make an appointment with my friend , but I am not sure when he would be available . I love her very much . But , If I take a careful look at my life , things are changing at a leisurely pace that I barely recognize it . We were really lucky because it was a fine day yesterday , though there has been a long spell of bad weather recently . I 'm thinking about beginning aSKYPE English conversation with a foreigner . My friend gave me a bracelet . My favorite taste is salty , but , today , I ate miso noodles . It will hold to appeal that Tohoku is fine so pay visit each festival in August . When I entered my university , I took theTOEIC TEST . I wrote in a journal entryyesterday that I wished something special happened , and here it is ! Everyone can comment on my writing . If students want to go to college , they have to go to school where they focus on studying . Then I brought the bicycle to a shop to ask them to fix it today . I will not give up to lift until last next time . ( ? ? ) Umm , it 's kind of interesting . And why are so many of them collecting unemployment benefits ? Japanese call that type of person `` a paper - driver `` . Although I was a little ashamed of my fruitless results , I had to pretend to be satisfied and present it confidently to all the professors invited to my defense . The main reason I write ' this ' is Until today , the family 's schedules were different from each other . I did this subconsciously . In the class , there was a women who is a foreign student and she spoke French so fluently and talked with the French teacher in French . Starting today , I 'll do my best to study not only English , but also French . : ) Subsistence cycle . My introduction He could have been successful as a doctor , but he choose to become a computer engineer , even though he could n't be sure of being successful . Now , he has become a professor at Seoul University . I want to remain young at heart until I go to heaven . You can make yourself So I believe the best way of window shopping is bringing nothing A newborn baby brings happiness . A newborn baby always brings happiness . Blue sky and blue sea , a very nice combination . The Sunshine is a little bit warm . When I compare it with the opportunity of a book , I can get more benefits from a book than a movie . Today , I had an English lesson with Brian , who is my new English teacher , at 8 : 30 at Starbacks coffee . I am eager to speak more intellectually . I would appreciate it if you corrected my diary . When I was in China , I use to walk around the lake in front of my house every evening . I want to understatnd movies without Japanese script and listen to English songs directly . Of course , I want to be able to use English for business purposes . which the temple is named . Some people prefer entertaining TV shows , talk - shows , quizzes , such as `` The Ground of Wonder `` , `` Let 's talk `` . I 'm not attracted to humble - looking people because I look so humble too . It is not dyed , and looks healthy . What made her look humble is definitely the combination of her damaged jeans and sneakers . But it is very special for me because it 's the last summer holiday in my university life . In addition , I want to do meaningful work from which I can not only earn more money but also get useful social experience . Everyday I come across many customers including native people and foreigners from all over the world . Though it exhausts me , it is a new challenge and a good opportunity for me to touch the competitive society . I 'm always worrying about that . Before , I lived in the dormitory of my corporation alone . I used to cook or buy something to eat in my dormitory alone . But now I enjoy dinner time with my family ! I live in the Russia in the city Khanty - Mansiysk I like Khanty . = ) It was very tasty , and I felt comfortable . Could anybody explain the sentence below ? And I help my mother with house work . It is important for me to study hard , but it is also important to help my mother . I try to study hard and help my mother this month . Please help me with any grammatical mistakes in my entry . If something does n't sound native , please help me refine it ! It was not difficult to drive in the Driver 's license test course . Hope all of you have a fantastic day ! ! ! ! Yesterday , my mother 's friend and her husband came to my house . There was an amazing accident in the championships . . . Tomorrow , I will go back to Tokyo with her and her husband . As a result , I felt terrible for a had a diarrhea in the afternoon . After taking a barium , I 've realized that taking the stomach camera ( or spectroscopy ) may be easier than ( the ) barium . It took a lot of time and I did n't know whether my sentences were right or not . This is the last day of Easter . The more hot weather we have , the more I need a sweater . But I feel like the temperature in the library is below the freezing point . Summer weather in New York is similar to weather in Seoul , Korea , but I think New York is a little bit nicer than Seoul . After I heard the news it will be made a movie and will be released in Autumn . He said some customers misplaced it after they read it and they did n't put it back in the right place . So I could n't help taking time to find it . Although I was too late for the festival , I went to see my friends . I belong to the Guitar and Mandolin Club . there are many shops . ( sports shops , clothes shops restaurant and so on . ) it was very crowded because it was a holiday I have to do an assignment about industrial dynamics in this morning . because the Japanese economy was so good at that time . I hope their business is going to get better . Baseball and Yakyu Of course , I always watched them in Japanese when I was a child American life is cool for me though I ca n't bring specific examples I feel strangely dull everyday so I want to finish My older brother and older sister give me a present every year . A few days ago , I used up my lotion . I shopped online for about 1 hour , I bought a rotion . The lotion arrived this morning so I used the lotion . But I do n't like the scent of the lotion . I live by myself now but I try to prepare meals by myself as much as possble instead of buying food . For my health , recently I try to eat back beans and agar and drink at least 2 litres of water a day . People say that black beans are good for your blood circulation and helps your skin stay healthy and the agar has a lot of factors which help our circulation . I enjoy cooking and increasing ( more my repertoires . ) = ? In addition , I 'm refreshed by it because I would experience new things whenever I go to an unfamiliar place . The sales person looked a little in a hurry and she rushed to answer our questions . And what makes you absolutely Happy ? I ordered some hijabs , I mean special muslim 's veils , not all clothes , only for the head from the internet , because here there is only one shop with muslim 's thing , and there are almost only books . - - > On 26 May , my team needs to finish the final project , I must work hard to do that . I hope I can pass the exam because if I ca n't , I will have to study one more year . Because it was the TV drama of the BBC , the actors and actresses were speaking in British English . I gained weight ! ! ( T T ) My weight . . . . However , I was surprised when I saw the awesome scenery . At night , I cooked hashed beef and rice for dinner with my mother . But he is also gathering information about jobs in another country . Anyway , yesterday was Chiniese new year , so there were many Chinese festivals in the city . We can always see many Chinese people in the city , so it is like Sydney is part of China . I had a sore throat today , so I took some strong herbal cough drops . There , you will find everything from street vendors to high - end designer brands in huge department stores . What I found is that the sound and the rhythm of It takes about a hour to get there by car . I Watched a Horror Movie I accidentally tuned into a movie and started to watch it . It was a horror movie . That was the kind of moive I like so I continued to watch it to the end . Three diedthroughout the movie . It was a heavy movie . Recently , I have wanted to get it more and more . There are Maguro ( Tuna ) , Botan - ebi ( Shrimp ) , Hamachi ( Young yellowtails ) , Shima - aji ( Horse Mackerels ) , and Hotate ( Scallop ) ! ' till then I 'm going to visit a couple of Arts courses . Today , I woke up at 8 : 30 am and went to school for my practice play on our school festival . Many people had their dog walk around the lake . As you know , in most companies , there are more than one employee , and we can call all them co - workers except you . It 's difficult to speak to foreign people in English . My friend asked me to translate it English from Japanese . Could you correct it please ? Cross my fingers , Last Sunday I was at PROPET ( pet industry trade fair ) for a dog grooming course It was cheaper for me than other similar courses , because I had a professional invitation . I want to say I have several problems with studying English . How do I solve my english problem ? Because the entrance for foreigners was brightly opened , I just passed through the gate of the Ewha Womans University easily . Actually , I 've been in Vancouver for more than one year studying English . She also likes natural foods such as sweet potato , pumpkin , Although I spend much time on it , it seems as though it makes no sense . I like this period from summer to autumn best of all the seasons , because I feel energetic during this time . but I can not learn Bengali . and I want to eat delicious Indian food ! ! I did not have time today My original color is dark brown , now it is chestnut because I dyed it . I am Bulgarian and live in the town G . Oryahovitsa . I am a student in Veliko Tarnovo city I enjoyed Rock Climbing ! I think having a car is very important for college students because college students need to make friends . When I was a college student , I went skiing twice a week with my friends . I used to watch Twenty Four , and I watch Full House these days . ( I mean `` copy `` and `` copy that `` ) Her mother married a man who is the brother of her former husband . However , today , by purchasing a flight ticket in advance or carrying no eatra luggage , customers can get tickets at a incredibly low price . Amittedly , without globalisation , economic , culture , literature and legislation would make little progress or evolution . I have been to London , Hawaii , Shanghai , and the west coast of the USA . I went to watch my daughter 's badminton games yesterday . My daughter 's skill is getting better and her patience has increased while playing . He has taken a tennis lesson before . On the other hand , if you talk to your boss or people you are n't familiar with , it 's more appropriate to use indirect questions . Is studying abroad or going to an English conversation school necessary for speaking English to some extent ? The Asian Games excited me ! Water is dripping down from the pipe . . . . I will complain to my landlord . I was absent from university because I had a bad headache . He is called `` King of Pop . `` I 've never seen his performance , but if I have a chance , I want to see it . However , that 's an impossible dream as long as he 's not a liar . As a matter of fact , I had been a kind of an old fogey . But believe it or not , I had n't bought my own cell phone , or car , But nobody is going to stop me . If I could think in English while reading English sentences , then my English comprehension skill wouldimprovng rapidly . I changed it for me , adding cabbage under the pork and a soft - boiled egg on the pork . One is by Renka , who is my favorite actor . It is one of my favorite books ! And also Renka has always been ( ? ) my favorite person ! One day I hope I can become a rich woman like her , Maybe there are not too many people that know them in Taiwan . When I was feeling sad and lonely . Are the following sentences I wrote grammatically correct ? I 've been studying English . In addition , I recently fell into a slump . Although Lewis 's piano solos are sometimes a little bit annoying , Somethings that are truly new are often accompanied by some kind of discomfort . There were too many people that Johnny separated from his mom . The shop is in Kichijoji City , Tokyo . The reason why I walk is because I am engaged in a walking competition with my colleague . I thought it would be difficultto book them for during the Christmas holidays , but it was easier than I thought . I will be living in a dormitory next semester . and I bought a lot of things for my dormitory XD There is no intresting places to go for a walk . For the first time these places seem like something unusually interesting . My grandmother was from a wealthy merchant family in Sakai ( in Osaka ) . ( It was mysteriously beautiful , she said to me . ) It also poured into her ears . She has a elder brother who was sent to Siberia but fortunately She can use welfare for the disabled , So I decided to cut her hair , and learnt about how to do it on the web . Also , I can be more aware of the author 's ideas and imaginations by writing on them . Because this pen uses thermo - technology , therefore even if you erase it perfectly , the ink would still appear under some conditions . but I 'm glad to see he is active in another country . We have to study or research very hard to widen the tunnel and to learn how to dig tunnels . I came across some sayings when I was reading an English document . Some have already been ( provisionally ) chosen for jobs . I like japanese food , because it is fresh and heathy . In Japan , we are anxious about relationships with neighboring countries , ie China and Russia . I 've selected out of those and developed about 150 and enlarged 10 . When I was young , I went back to visit my grandmother every year for the Songkran Festival to receive her blessing . The belief is that doing this will bring good luck and prosperity for the New Year . l have borrowed books . Why was my diary not corrected by anyone ? So I hope to meet more foreign friends and learn languages from each other . But it has passed a half month into February . I love sakura blossoms . It means Sakura bloom beautifully because of cold winter . It means ordeals will make our mind and humanity beautiful and strong . I bet tonight I will sleep well and I 'm looking forward to seeing someone who is coming to visit Thailand . . Hello everyone ! Today I have written a diary in English . Please check my diary . I love English and children . I must study hard in English ! ! ! What a special day it is ! ! : ) Register lang - 8 Today , I registered in Lang - 8 . The writing and speaking skills are terrible . And I put it in the refrigerator . It was so much fun , my friends and I stayed in a hostel which was a 15 - minute walk from the beach ! After playing that , we were so tired because we were rasing our legs , jumping and dodging etc . I want to go to abroad , and make friends there ! / Although I am ashamed , I also feel hateful towards myself . But to give an example , I have a / sense of justice ! ! ! It is famous for it 's pineapples . For instance , many exotic countries make millions of dollars on foreign * tourists . Not all of the tourists know how to keep the area around them clean . I 'm a beginner at English . I hope to use English better and to meet some friends . Today , I will eat kaki fruit . I like it . It is sweet and delicious . Now , in Japan , there are many kaki fruits on the trees in the gardens in town . Nowadays , I am reading fanfic of Sherlock ( BBC 2010 ) . Have you been to a sushi restaurants in your city ? A television is being turned off . Is there any difference ? I 'm a little upset by it because unlike many people in my age I like going to school and I 'm keen on learning new things . I love this fiction mostly because of its exquisite psychological description . They ask me to wear office casual clothes . He just said `` not too formal and not too casual `` write in English daily and watch NHK 's English program . But I overslept today , so I could n't study English . I turned around and around , which made me dizzy so I could n't walk well . I have to go to bed in order to wake up on time . Last Sunday , I watched a film called The King 's Speech . I recommend it ; it 's a very good movie , not only because of the story , but also because it has good actors and a good soundtrack . There were UFOs in my house . Watching TV ( ^ ^ ) I 'm watching tv now ! ! And now there exists a major problem that my vocabulary is not enough and moreover I am forgetting what I remembered . An important text awaits me and I try new ways to remember words by is skimming through part of the vocabulary regularly . Do n't tell her that I was drunk last night . We buy a lot of vegetables and fruit ( apples , oranges , strawberries , bananas ) . I always buy semi - skimmed milk and my mother buys goat 's milk because she is allergic to cow 's milk . On Sunday we are going to make a big cake with strawberries and a little chocolate . When I 'm on a diet , I wanna eat a small quantity of high quality food instead of making a pig ( out ) of myself by eating low calorie , chemically enhanced food . I slept with my sister last night she is always welcomes me to sleep with her . He likes to come to my house because he has many friends including with my counsin , who plays with him . Today I plan to read a book somewhere around my house and copy a book for my student . It has come to reach the conclusion that we will be playing covers of the rock band `` slipknot `` . For the next class I have to listen to a Korean song and try to write down the lyrics , I want to choose `` I ca n't let you go , even if I die `` by 2AM , can you recommend another song to me ? level , especially my speaking skill is becoming better and better . We know about sharing and we 're better at creating something new and special , but the old generation may feel nervous about the PCs and iphones or androids . People may pay more attention to their individual experience and their need to satisfy their desires other than those built on possessions . People are crazy to own a house or an apartment . If you were a boy or a man , you should have an apartment , then you can marry . I Love `` kaitennsushi `` I love sushi . Do you know `` kaitennsushi `` everyone ? I ate a lot of sushi . because it was cheap and delicious . I think I have to go on diet ! ! but maybe I will go to `` kaitennsushi `` hi guys , I am Mohamed sadiq from sudan I 'm 20 years old , it ' s my first time writing an entry in this beautiful site and I want to tell I had been working at a damage insurance research company for 20 years until10 years ago . This work had greatly developed me and a thoughtless remark disappeared . ( more specific ? When I try to remember new words , I look them up immediately and review them before I go to bed . And I hope everyone to be happy and safe I paid two hundred Hong Kong dollars to him and shook hands with him . I thank not only everyone who made corrections , but also Lang - 8 a lot : ) I wish ALL people who are studying a foreign language knew about this beneficial item / website / place . The short time makes me raise my concentration for studying English . Admission was 8 Euros . My first time was over 10 years ago . I had a soup curry in Sapporo which is the birthplace of soup curry . The shop I went to is 3 stories tall in Sapporo . I home stayed in Australia for a week . It was an amazing experience . I do n't know if it is difficult to write what I want to write in English . About English singer , I like Evanescence , Britney Spears , and Avril Lavigne . I 'm gong to count sheep . I 'm a native speaker of Spanish and I 'm trying to improve my English as I 'm studing a teaching program of English at the University of Santiago of Chile ( USACH ) . Certainly , I 'm not good writing in English and I still make silly mistakes , so I joined this website in order to improve my writing - and speaking - skills . I 'm interested in English and I think I need English in the future , so I study English now . I will write my diary everyday to improve my writing skills . Sounds crazy , right ? In the last set , I was trailing by two points at gamepoint , but luckily , I got four points in a row , not only did I win the game , but I also controlled my stress well , - this made me even happier . I can not understand some corrections . I 'm so sad because he was a person I respected . . . . . . . . . . . . . . . . . . . . . . . GMO ( genetically modified object ) - foodstuff , a living organism , created with the help of genetic engineering . Finally , the butterfly to the back . Bon matin . I found this website by random searching with the google bar . The different cultures of each country in which I am interested can be learnt from this website through our communication . We are in spring now andI saw the cherry blossom with its roses . I really like this kind of tree . And I have liked it since my childhood . The cherry blossom is called the tree of `` sakura `` I have a lot of hobbies . I do n't like spending my hobby alone . I like spending my hobby with my frend or with my brother or with my family . I enjoy with all because I spend a long time when I make my hobby . When I heard this , I was really shocked . . . My job is called central operator which means home electrical repair . So , these sweets bring out the delicious taste of powdered green tea more and more . In other spots of the mouth , bitter tastes of powdered green tea bring out these sweets . In addition , my company usually do n't work on Saturdays . but yesterday ( Saturday ) , we worked . I could n't go to the clinic ( or ? ) to work . because I do n't need to work today . So I was relaxing and watching TV shows which I missed because ( or due ) to working overtime . It is the first working day . I like Ken because he helps me when I have a problem . Ken is good my friend . He 's a businessman . He has many houses . His main house is very beautiful . He usually travels by plane . I believe that this culture is stupid ! ! ! Today , I watched a movie again Everybody drank and talked a lot . For example , thanks to the development of the Internet , we can now communicate with people wherever they live , without the limit of distance or time , by using e - mail , Skype , and so on . I straddle the line between these worlds . During the weekdays , I am absorbed in my classes while on weekends I am devoted to part - time work . I have a part - time job at a watch boutique within a hotel resort . Today in the morning , one couple walked in the store , and I talked with the customers actively , I was going to tell customers things about which watch they are gazing . Since most of our customers come from mainland China , I tried to communicate by using Chinese . However , they do n't seem to understand what I said , and there was no response with my talk . So , I turned to speak in English , but it was so embarrassed that once I finished my sentence , the guest replied me in Chinese . I like making things . But I can not catch the meaning of the following sentence : Ginger tea I 've been drinking ginger tea for a couple of days . Because of a hard schedule , I stayed there for only 10 hours , but thanks to my friend I thoroughly enjoyed the food and a massage . I live in japan , and I am a Japanese college student . There were many people there . Today my coworker invited me to his orchestra concert at Feb 22th . `` Nooooooooo Im Japanese ! ! ! ! ! ! `` `` Oh you are liar . . . . `` `` I never lie ! `` so many japanese people have got Tattoooooooos . . . . . Its getting popular I thought . . . It was a really fun day ! ! ! I 've heard an expression to do something to reduce stress is ' vent ' , And I will go to chiropractic tomorrow too ! ! But I feel refreshed so much afterward ! ! `` Just cut my friange , please `` . `` Cut up to above your eyebrow ! ? But actually I wanted him to cut same line as my eyebrow . . At the moment , I did n't recognize my misunderstanding . Just being attracted by something will make people drop into a `` sea of knowledge `` . Everybody , take me there ! ! In Japan , tattoos are not socially acceptable . But in other countries , tattoos are socially acceptable . I wonder if this situation shows that Japanese people are on the very conservative side . Every morning I wake up and feel so good , though , a little bit tired . Lesson making sentences after reading Myanmar over the horizon It was only a one hour meeting but a giant step for a fruitful future for the Myanmar nations and all the other neighboring countries . I 'm wondering if the Arab spring movement has warned the regime to grant a democratic voice . These words below are from the article and I made sentences using them . 2 condemn - Japanese Government has officially condemned the Russian President , Dmitry Medevedev , for paying a visit to Kunashiri island . 3 mar - Kosei Gaukuin 's honorable result in the National high school baseball tournament was marred by the announcement of some members ' drinking last winter . 4 detention - High school Baseball Association does n't give any detention to the school because the students concerned are in the highest grade and the team has launched the baseball team with their new members . Therefore , I seldom tell my friends about the existence of my blog . That person kept responding to my article . I Googled it and I found his blog . Because , we lose the power and courage to carry out our dreams . I want to travel the whole world and go everywhere , while I am young . The day everything will be restored is not far away . . Anyway , I became aware of the following statement last night : I was denied when I asked to request a higher selling limit applications . Why was I denied ? Currently the nursing system is a problem in Japan . I think it is not good to have a society that afflicts the elderly . But I 'm not decided on whom to vote for yet . I want to ( listen , write , speak , and read ) English more . I feel it is hard to study English because since I graduated high school , I have n't studied it . During World War 2 , Japan colonized Korea and took some people from Korea to their own country . Today , I went to a language school for a trial lesson . Because some students absolutely did n't speak better than me . So please correct me if it is necessary `` So , do you want to try the yummy soup ? `` She asked me with her eyes shining . `` Take it or leave it ! `` She yelled and shut the door . you said it ! `` The weird voice came again . I hope I can travel to 7 countries before I die . Another teacher called Mr . G treats us very nicely and often entertains us by making jokes . I 've worked at a law office for a week , and everything is a new experience for me . Then I heard the most unbelievable words come out from a reporter to a big star . The female reporter shouted the S - word to Nadal , turned around , and left without looking upset . ( Here 's a question to British people : Having used it just now , does the word ' bloody ' sound so vulgar that it sounds weird when used by non - natives ? But I think I should surpress bad feelings as soon as possible . A transition into a new president of the United State has many significant influences to many people and many nations . In fact , many people are still suffering from prejudice or discrimination . The message is that we are not stupid , and if we wish , we can overcome the discrimination . Two years ago , I went by myself to Las Vegas to see an Aerosmith and Motley Crue show . He and three other major players expressed their unpleasant feelings by quiting the Winter Training in HaiNan Province . I want to go to the sea this summer . Am I a character in someone 's dream ? When it comes to travel , different people have different ideas . First , travel will help you to acquire knowledge . When you travel to a place , you will have a better understanding of the local culture , tradition and customs . Second , travel provides you with the opportunity to practise * . I also went ( / visited ) the Aso Farm Land where you can find many shops , accommodations , hot springs , and so on ( / and more ) . That makes absolutely no sense ! ! I made a mistake that and deleted many songs in my I - pod . . . It is everybody 's day tomorrow . . We can rest for 3 days . Especially , the wind flapped us . ( ? ) It became a good opportunity to know the difference between my mother language and other languages well . I have to teach my workmen some knowledge about our production . It was beyond my English vocabulary . The differences between humans and chimpanzees Maybe I will have a topic to write tomorrow . I have to get home around 7 : 00pm to take care of my baby . After a while , I received her abdominal x - ray . Just overeating can mimic the symptoms of a severe disease . I think everybody has a window in their heart . first of all , my name is tulio , and I want to learn English , because nowadays companies require that you speak English Last week , I saw a new advertisement , `` they need a new reporter , but he or she must be able to speak in english . Firstly , my hairstyle do not set . Therefore I do not like June and July . Las Vegas is an exciting city , so so I 'm angry when it 's called sin city . Vegas is awesome ! And the conference that I had hoped to participate for many years was awesome too . If I remember correctly , your brother lives in NY , is that right ? Do you go to NY occasionally ? My favorite authors are Haruki Murakami , Soseki Natsume and so on . Haruki Murakami also translated some foreign works into Japanese . I sometimes feel very confused . C . without subtitles now . I want to visit the place where the drama was filmed . Because my best friend gave me a free ticket to the gym . I thought that the cafe was so comfortable . It is really cruel ! The team protected the Kekexili for 3 years without any support from local government . The bullfighting is a ceremony not just killing the bull but looking forward to a good harvest . In 1990 , he became the first left - hander to win the United States Amateur ? Championship title . According to the article , he has a left - handed golf swing after mirroring his father 's right - hand swings . I was at the company sending for a long time . My boss must use the details today for presentation ( ? ) but I did it slowly because my computer at my company is quite slow . I felt bad I could n't send the file to him in time . I tried to ask a colleague to help me send email to my boss because I must change the details . He is very cute . My friend called me to make an appointment on Sunday this week but I did not say yes because I would like to sleep at home for my weekend . I checked email today . It 's great to hear from my French friend . They sent a text to me , I had not seen them for ages . They had lived in Bangkok for a long time . I knew them when I went to practice English in Impini park . They are so cute and taught me a lot of English and French . I had studied French language for 3 years but now I have forgotten it . I can not say anything , just bonjour , comment ca va and Je t ' aime . I was fanatic about Gyoza today since I was in the middle of working . Incredible three times . Most people ( can / could ) have difficulties when they speak a foreign language which they 've already studied for a long time . Moreover , I can even hardly express what I 'm thinking in the foreign language . What do you think the most important things are when you study a foreign language ? Everything was expensive and there was a variety of merchandise that kids love ( even adults . ) They looked quite mature for their age at the entrance ceremony , because they wore suits . My university does n't have a lot of students but because of this , I can make friends with almost everyone and I 'm looking forward to that . It 's difficult to describe the recipe . We saw a bear crossing the road . I hate watching violent films . Outrage has serious and comical scenes . Today Osaka is so hot ! ! xO So Green tea is Ryoku Cha in Japanese . I felt it was weird to put something in green tea but we put sugar in English tea so maybe it 's the same thing ! : p Then it becomes two parts in the classroom : I teach my own things This is my first diary entry in Lang - 8 , I hope I can improve here and make friends with you guys ^ ^ . I like reading cookbooks , the pictures in the books look so delicious and make me happy . Do you know the Japanese noodles called `` soba `` ? Reducing carbon dioxide is attacked by TV commercials frequently . While I feel they are similar , I 'm assured that Toyota 's car is safer , more economical and environmentally friendly . It is evident that the car 's fuel consumption is 23 kilometers per liter of gasoline . And I am learning Thai informally . Last week , I did n't plan to go traveling over the weekend . But one of my roommates asked me to go to underwater world with them . Unfortunately , I was busy all the time and had not had any chance to visit it . Unexpectedly , however , it was raining and it seemed like it would continue to rain . What a pity . I will study more English and go to bed . The Internet in Thailand is not as broad or commercialized as the one in Hong Kong , but the quality of its system is high , built around the country 's universities and technical institutes , guaranteeing a large supply of Internet - literate people . Today , the day was darkening when I left the reading room . This theme is my homework . I 'll explain about Hikikomori . I 'm sure all of us can be hikikomori , because we are weaker than we think , and the reasons are more complicated . My English is n't very good so I want friends to talk with so that I can use it more regularly and improve my English especially my spoken English . During this period , I was fascinated by other worlds and cultural things . I locked the door in 3 different steps so he could n't open it ! To be bilingual is my dream , and Singapore has a good economic situation and working environment . It has a monster mathematic theory behind it , and people will never think any raw data is useful unless they understand the theory . It 's good when you sit down in front of the screen , watching the earth move like water , the spoon drift touch the cloud , and the dramatist personae always stands on the edge of death . The end of world , this concept has never been a part of Chinese culture , and no one believes it . Of course , maybe this is the difference between the ease and west . I use a black leather planner . 1 , monthly calenders for programing long term schedules and making appointments 2 , daily schedule and task notes for protecting me from forgetting and increasing efficiency 4 , refills written about information which I need to watch frequently . This system is like Franklin planner . I studied the system of Franklin planner , and reproduced this system with blank rifills . I do n't have any confidence in my memory , Actually I ca n't believe it yet . Tomorrow is the end of vacation , Global warming is a threat for all man kind < or > humans . The weatherman on TV said that February will be exceptionally warm . That would be nice . I was very suprised that every person I met was also Korean . I 'm currently * developing iPhone application in a Japanese company . these days Japanese government is very weak and tends to be changeable . I often eat a dish called NABE , which consists of vegetables and chicken , pork , or whatever your favorite ingredients are cooked together in a soup . However , I did n't have anything to do and could n't even take a shower because the water was cut off . we met and then we went to eat something . It was very delicious . Then we went to the academy again . I did n't know this actually but yesterday they had a Japan versus Scotland football match , here in Tokyo ( I guess ) . Yesterday , she taught us about how to pick - up a Canadian guy . Today is my anniversary He has powerful energy and charisma . I would like to learn Biomechanics and Robotics at Thukuba graduate university because I want to make a Robot suit like `` HAL `` . I watched the movie , title is `` zombieland `` and `` kickass `` , today . zombieland is very a sweet movie ! I could n't turn it over well but it was delicious . Although nuclear power produces nearly no coventional air pollution , qualifying it as `` clean energy `` , the disasters it brought have threatened the existence of human beings . For example , I had to be home by 5 o ' clock until I graduated high _ school and I could not leave any food , even a single grain of rice . They were pretty naughty to me but not to their mother . I told them to stop it many times but my face and head got hit by several stones . Next day I was dismissed because I punished them . Although I am single , _ I am nervous about becoming a parent . I feel a little bit nervous . Snacks goes crunch crunch in people 's mouth also drinks goes gulp gulp in children 's throats . The speakers are bursting out with loud and clear music . There are full of regretful comments with regards to his death which can be seen below the video . I did n't recite all the vocabulary , so it took me a lot of time to read the sentence . I want to buy some clothes for winter . I 'm tired but I thought my work is was pretty good I worked for one month so devoutly for him after my ' afternoon work ' and during my days off . I was so surprised . A funeral ( PLease correct my sentence ) I like its colour , very pale pink , almost white , contrasting with the dark brown of the trunk . In my opinion , all males should leave on Women 's Day also so that they can consort with their girlfriends and wives . I found it very interesting . I like rock ' n roll , for example : ZZ - TOP , JIMI HENDRIX , BB - KING , METALLICA and so on . . . If I can , I hope to take advantage of my previous experience and English conversation . I thought it was a bit weird because she and I were not so close as to exchange messages . So , we can easily understand the why people crowd in the promotional merchandise and discount sections , and the people produce and sell unsafe food , which seems strange in some foreigners ' eyes . However , food security takes money , which raises the cost of food . He was an about three - meter silver robot . Today , I have registered with this site . English conversation , English grammar , TOEIC Reading , . . . I have to study English for business . However , I did n't have enough money to order ramen because of the book I had bought ! I replied OK ! While playing , I stumbled on the soccer ball and fell . Then , I strained my left hand ! It 's makes me feel good to express my own feeling in another country 's language . The sentences below are one 's I made up today . It 's not perfect , so I want you to correct my sentences . Beef is quite expensive . And they are destined to trade goods and merchandise with each other . Thanks to your help , I 'm doing better at english than I ever have before . There are a lot of Japanese toys for kids , and I would be happy if foreign people also liked them . I 've been having a cold and a stuffy nose for a few days . So , Okinawa prefecture has different culture from Japan 's mainland . I love the compassionate people , the subtropical climate , and the beautiful sea at Okinawa . I had a practice of soccer at night . However , I had a lot of failures . I was shocked because bomb sound . I 'm so excited to see her on the other hand I have to tell her my decision . . . But I have to tell her immediately . . . . . . Anyways , how different is `` Be going to `` to `` will `` ? Referring to those information , we discussed what Japanese Government should do . We hope we can solve this problem next time . I went to my restaurant to work . Many people visit there . Born in 1869 in the hinterlands of Siberia as a son of a mere peasant , Grigori Yefimovich Rasputin would have appeared an unlikely candidate to rise towards a position of considerable personal and political influence over Russia 's ruling Imperial family . Yesterday , I was depressed because I want part - time job , but it was a day off for me . This weekend I want to rest and review my seminar textbooks . I felt the Chinese people 's energy in the festival . It was because I caught a cold . The `` Spring Bank Holiday `` was on 25th May in the UK . I finally figured out how to use my electronic dictionary which I got from my family as a graduation present . Suddenly `` Go for your coworkers . Love is paradox , do n't you think ? I having a problem right now . I and my friend Eri tried to stop continuing association with him . These are pictures provided by Multnomah County Sheriff 's Office . He understands the my problems . I really do n't feel like going because I have other things to do at home . This afternoon , I played ' Zhen san ' with my classmates , but we lost every game . I felt so upset after that that I went with some classmates to play ping - pong . I had n't played it a long time , and when we were just getting started I felt like a beginner . About my sister and her husband ( Iwork inJinbocho . My university has a rental DVD center , and all the students can rent some DVDs with cheep price . Is it normal to rent DVDs on campus in The States ? That 's more weird than doing nothing ! There is not a crowd of people and it is not noisy . Being a college student is terrible . I 'm so nervous . > < ? The advantage of Lang - 8 is that I can have my composition corrected for free ! Therefore , I will write diary or essay day after day . She said that she really wants to sleep over . Functional Magnetic Residence Imaging , FMRI , is a procedure that uses magnetic residence imaging to measure the tiny metabolic changes that take place in an active part of the brain . My first writing . In general , _ it is meant to symbolize that I should be loved by many people and also love many people . But in fact , _ my father had a favorite child at his workplace when I born , _ and her name was `` AI `` . But I like my name very much . We cant communicate very well . I loathe english . Like I said before , I will keep moving on . The newscaster said that in Islington the number of cars running on the street has genuinely decreased . The univeristies try to push students to communicate , and use a lot of English for studying . That was really really interesting ! ! The aftershock is coming , the nuclear problems have n't been solved and victims of the tsunami have not been rescued yet , but I believe we can repair the broken city . I like `` Toy Story 1 . `` I have watched it more than ten times ! ! In other words in English , ' The whopper is very delicious ' Today 's lunch I like spicy and ethnic food , so I sometimes have Thai or Indian food . To take in nourishment , I endeavor to cook light dishes through trial and error . But , I am not good at cooking . . . It was very windy last night . It is especially excessive today . I thought the stuff is too expensive . I ca n't afford it . My friend He spent 400 yuan to buy a cloth . He is very proud because the cloth is a famous brand . But when you receive t the jeans , you find this jeans is verydifferent from the picture . English is difficult for me . tremendous damage from the earthquake in Japan . Now , over 1000 people have died or are missing . Sendai , one of the biggest cities in Japan , was heavily damaged by the tsunami . It was the biggest quake since we began to measure earthquakes . I caught a butterfly . After that , I sometimes caught other butteflies . There were some foreign tourists Her occupation is as a beautician . They were very kind to me and their house was comfortable . My school is ACE , Australian College of English . I love flowers . My best score today is 89points , and today 's average is 85 points . A Headache I hate math , so I always get a bad score , Some people say that simply read through the words is enough to memorize those words . Some people divorced 25 minutes after they got married ! I was very surprised to see this news . But I think it depends on their personality , so that ca n't be the only the reason . Reading is very funny and exciting for me . My body is heavy . Today , I was very unfortunate . It seems like a ( very ) great community . I 'd like to make use of it , and improve my English ability . It 's one of the parts of speech in Japanese grammar . That is absolutely fantastic awards I 'd never seen before . He 's act in the Dark Knight was Amazing . I think that the train stopped and I could n't come home because of the typhoon . When a typhoon almost comes the train stops at my office nearby the station . I became very scared and decided to be careful from now on . Last week a pastor said that we had to take a pious attitude during Lent . The date of Easter is decided each year according to a given rule of the church , [ / BLUE ] and the dates of Ash [ BLUE ] Wednesday and Good Friday depend on the date of Easter . This year Easter falls on April 12th , so Ash Wednesday was on February 25th , and Good Friday is on April 10th . Many Christians fast on Ash Wednesday and Good Friday , and the money saved from the fast is given to poor people . Lucky me ! He is married to a Japanese woman , And had mongolian traditional boiled mutton 's leg . I realized the necessity of English for global communication like this . Today I went to school , because we will start our new semester the day after tomorrow . I 'm into horoscopes these days . His performance is attractive . I 'm glad I can join this site and meet many new friends . Having a phone call when their roommates are reading . Washing things when their roommates are sleeping . Thanks to this journal I remembered the washing ! I 'm looking forward to meeting them ! ! My sister 's family picked us up and then wer went to the Korean BBQ restaurant . We have n't been there in nearly a year , so we were so excited for their food . I ate watermelon , and caught beetles . It 's a precious memory . The old house was renovated . Hatupousai is Chinese food . I fried many vegetables , shrimps , and cuttlefish . The victims of the tsunami and the radiation leaks are suffering from a serious shortage of food , _ water , medicine and heating oil . I was impressed with both countries . I am 20 years old and studying in a university in Taiwan . I think I will start trying to write my journals in Japanese , but I 'm using English as the ( median ) supplement since my Japanese is so poor ! ! Anyone who can help me correct my journals will be greatly appreciated ! ! Yesterday , I posted an entry for people to correct and no one did . I have to return some books . The Japanese person is a girl . Her name is Ami . Me and her are the only two girls in the class , so we are very good friends . Our human should unite together to build a United Human Republic . I have already watched the first one . I am not good at writing essays . I have poor grammar . I am working at a restaurant . Thank you ! We were impressed because the illumination was very beautiful . Today is the start of my 4 day holiday . Out of all foods , it is the most delicious Please check my clumsy English . It had a lot of things . When drinking with friends I 'm not well acquainted with , I have to say ' ' I have to be up early so I can study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , the last two were jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe than usual so we have n't much work to do . My cats are running around energetically in the house . I 'm Chinese . I 'm good at sports . Repeat this 20 times , then put your hands on the back of your head , and repeat . I was in the lab until 11 pm because I had a lot of things to do . My alarm clock I alway set up my alarm clock . The alarm voice is a music . I think I have to change the alarm voice to be noyierso that it can make me get up early . I 've been interested in English since I was a young girl . I still can not improve it as fast as possible . . . . My writing neither . . . She bought a lot of things in the web and spend a lot of money . 2ne1 's charm attracts people . Although I 'm also fond of watching other singers ' performances , these days I 'm sure that 2ne1 's perfomances makes me feel good . I also know that the elimination of nuclear weapons is nearly hopelessly impossible . Regarding earlier posting I wrote a blog post for the first time on this site some hours ago . I had a graduation examination yesterday and today . I ` m expecting Japanese figure skater Mao will get the gold medal . 12 year artwork project `` Story to build a ship `` , This project works by PH Studio ( group of architectures and artists and photographers ) and people living in this valley . It was not until then that I actually felt I was in Europe , which is quite different from Japan . I think I got sick from overexposure to air conditioning . . At that time , the weather was so hot that I was wearing a sleeveless dress . So I shivered in the cold while watching the movie . : ) The pictures that I have attached are not clear because they were taken with a mobile - phone camera , but you can feel the joyful atmosphere . But I will rather buy my safety and comfort There are so many ants in my house especially around the kitchen . Taipei New World Mall boasts all kinds of shops , spoiling tourists and passerbys with their boutiques , snack stalls , apparel stores , video game stores and so on . I had good experiences to communicate with people of diverse nationalities . In diaries that other students wrote on lang - 8 , the word `` busy `` stands out . I have n't cooked recently because of work . I would n't say that I am a vegetarian , though I love all kinds of vegetables ! And I realised that even my childish laugh had disappeared . But I am truly surprised . Today was a leisure day , because I did n't need to go to work . I got up late , then I felt confused - - what should I do ? Wind flowed , clouds were beautiful , the sun was so hot . My kids have changed my thought . Then , we entered the same high school and joined the volleyball club again . What do you think of my pronunciation , to be honest ? The report noted that the student hung herself in her bathroom with a terrible pose directly because the school rejected her mother to live together with her in the student apartment . As a young person , I knew ; either for others or for myself ; I should work ( in order ) to live . I 'd like to make friends with everybody , to know each other and make progress together . My other friend and I were impressed by his comment Ohh how surprised I did n't think I would see them there . . I wish that snows would be melted by tomorrow night . After that , My Korean housemate came to my room and told me he had tried to made Korean food and eat it . I am studying English hard these days because I want to expand business in the world . I usually use our dialect , so people ask `` Are you from Osaka ? `` . `` Yes , of course . `` I occasionally watch TV programs . It is the last year for me to be in the university . So I want to go to experience and compare personally It is better to travel than to read voluminously . After that , I dropped in to a career center in uni , and wrote a report on job hunting . Every student has to hand in the report , so that it will help the students who will go on a job hunt next year . I recommended to him to download a word file from a website , and told him how to put a photo on a document . Do you believe that Mary is going out with Tom ? Tom was a quite , handsome man , ( do n't pretend you do n't remember him ! But I still have no ability to write or to speak on an acceptable level . I finished my job today . ( ^ ^ ; ) I 'll go shower after writing this sentence . I want to know about foreign comics . After ( ? ) opening the window , rain drops come into my room . Before it came to my house , it was my grandfather 's . I saw each year a countdown festival from broadcasting on television . But she receives a small salary . I always feel excited when I go to Karaoke . Surprisingly , he bought presents for me and my friend . Today is rainy in my hometown . I think Saiunkoku is a fun story but the theme is politics . As my homework is so heavy , so I have n't watched any drama . They are the reason that I have difficulty writing often . Recenty , I do n't feel well . I just do n't know what to do when he is grumpy and disappears . The third son recently hung on to something to stand up for the first time . However , he is very dangerous because he very often falls over . Those years were great , I met so many people from different countries . I liked them all . The world is so interesting . We are all are so different , but we are all human . We have the same wishes , the same fears and emotions . . . Hi everyone , I 'm Chinese , and I 'm studying English and Korean now . Now I totally regret my behavior . > < The most precious moment was when I passed the final interview for going to Vancouver for the inter skills training program as one of the representatives for my university . Lastly , I feel grateful to Byron for helping me improve my English and encouraging me to practice everyday . I was smiling shyly in the pictures , and looked happy . That is meaningless , in addition , This word must make me walk back . He is the most interesting and well - informed person I have ever seen . He told me that there are many treasures in books . Moreover , he loves to travel to different countries . I remember that I wrote one diary yesterday here , but I ca n't find it . return gifts as a token of thanks I think that it is important for Japanese to show ' a token of thankfulness ' in some way if we receive a gift or favor . Any way , desire of studying or learning by inspiration helps us not to learn at high level but helps to learn for discoveing the real world . The little pies and chocolate pumps at a candy store little popular but with nice sweets . it does n't make sense . The whole city is plagued in confusion and sadness . I was disappointed X ( Rose shall return again ! nihongo daisuki demo It is a convenience with many transportation sites . I prefer to swim in a swimming pool because I do n't like getting a sunburn , but sometimes I want to swim in the ocean . They have been supporting me whenever I 'm in trouble . One of my double majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rmb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationship ! So you have to study it very hard . `` I have to say that 's true . You just have no gift in studying foreign languages . You should just take pride in yourself , because you can speak the most difficult language in the world , Chinese . `` Writing an English diary is a new way . The glasses I bought are light and tough more than my old one . Studying at college is a lot of fun . I 've met nice friends and I have wonderful teachers . I 'll try the TOEIC in the next six months . I 've decided to study hard and earn a high score , so someday I 'll be able to talk English fluently with you . Boys especially behave like this . What I can do is to wish him a pleasant journey and fly higher in the future . I have tried to find the reason , I think there are two : one is that I did 't get a good start , which means my colleagues do n't like me very much . They just keep making fun of me , and they do n't distribute some of their work to me , but to another colleague who came this company later than me . This month , I faced a lot of difficulties , one is about work , and another is about a relationship ( actually it 's also about work , because what I am going to talk about is difficult to deal with - the relationship with my colleagues , and some of them are my roommates . Usually , I like cooking , but my roommates do n't like it . This kind of things always happens , but I 'm not used to it , I am innocent , I have n't done anything wrong . After so much time without a single word here I have decided to return to my blog again . I studying English . At the meeting , I had to explain the documents I wrote . I planned to visit my wife 's parents this weekend , but my wife wo n't be going back together with me since she has to receive one - day 's training in modern management on Saturday . I already need to sleep again because I need to get up early tomorrow morning . Moreover , overseas visitors chose June and January in second and third places with around 600 thousand respectively . Furthermore , similar trends are reported except a significant decrease in September with just over 600 thousand in 2004 compared to around 350 thousand in 2005 . In terms of the top 5 countries , the table shows that Japan , Australia , the USA and South Korea were the commonest countries as tourists to Britian in both years . * The top 3 countries did not show big changes in their percentages , although Japan was reported as the first country in 2004 and became the second with the only negative change of 2 % . But many people think that it 's a shame for an adult like me to be a fan of this story ! But I can not do anything about it . I 've already read all five books ( including the last one , written from Edward 's point of view and its fan fiction ) first in English and then in Russian . I restarted studying English last month . I quit studying English 6years ago . There are a few sounds I ca n't pronounce yet : . For example , I do n't know how to roll my R . A seriously infected patient is a 6 - month pregnant mom . The eighteen year old mom has been confirmed with the 2009 flu . She revealed pneumonic symptoms and respiratory failure , she needed urgent treatment for her life . PS : This is my first entry . But unexpectedly as soon as I got up in the morning on Monday one of my friends called me and told me that she wanted to visit my home . I 'm was really happy and she came in the afternoon , bringing me delicious food which we ate while watching TV . In the afternoon after she left my home suddenly another friend called me to go shopping on Tuesday . Surprisingly , while I was eating my middle school classmate called me and asked to meet in a coffee bar on Wednesday . So on Wednesday I drank a cup of coffee in a coffee bar with my classmate while we were chating and playing bridge . The next morning my classmate called me and said that she had an upset stomache and she wanted to know if I felt ill as well , but luckily I did n't . The change 's god . It is change or bills . Maybe There is a change 's god . The change 's god , thank you very much . I bought a lot of things that I loved including a bottle of sweet cream wine . Yesterday I turned on the air - conditioner ( or the AC ) , but today I turned on the heater . I know the meaning of word , but I do n't understand the use of this phrase when it occasionally does n't seem to suit the conversation . This school 's theme is : I will be a professional business person and president . The europen buildings were resplendent , elegant , and spiritless as they always are . I want to be a social worker or a reporter . I 'm looking for going out for dinner with her . Thank you for commenting in my last journal , I feel better and better . I figured out what it is was that was bothering me . I try coping with my life . It helps to step forward from dispair . Some students were running around the school . I was not good at sports , and I did not like running . But , lately I started slow jogging for my health . Some day I want to run a marathon . One day , I found this website on the komica . It 's a ACG website and I immediately found that it 's a very interesting website . When I think of people who live far away communicating with each other , I feel very excited . The other smartphones are not very attractive for me . Reading Habits summarize the book using charts and graphs with just 1 piece of paper read your book dirtily , do n't save your books . build specific point of view , write general subject like prism , not just dig subject ( ? ) . I went shopping at an electronics store . I want a small personal computer . It is very expensive . I do n't have enough money . I want a lot of money . The population is on the decrease . More specifically , young people are leaving , and old people are on the increase . On Friday we had American guests from New Orleans stay at our hotel . They were so friendly , easy - going , talkative , even , and they just start dancing . I 've liked history since I was a child , and I studied it in university . I did n't even look down , maybe by that time I 'm a little scared too . At that time , he knew that he must go or he would be a delicious meal for the fox . My work schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarten teacher . I want to go to foreign countries and thought that Macao is good for me because of the language and the money . After that , I listened to music . I have several compulsory duties [ compulsory already means ' which I must do ' ] . I awaken and I am very tired , totally exhausted from it . There is a phrase in Korean like , `` Men have only three chances to cry `` . I must keep calm in front of my subordinates , so I had to find somewhere they could n't hear and see my weakness . It 's very peaceful because everything fell asleep . . . except for me . It publicises itself as ' L ' ife is ' G ' ood . Of course , since it 's only a semester - long course , it 's not enough to cover all the problems there are , but it still can give a general impression on how complex and interesting this area of engineering is . I wonder if foreigners have a difficult time trying to speak Korean too . Today ( Japanese ? ? ? ) I watched Tonari no Totoro by GHIBLI on TV But I 'm cheering Daisuke Takahashi ! ! ( ? ) If you have some good advice for me and find my errors , please tell me , I will thank you for visiting my blog ! I could n't understand it completely , due to its historical background . After seeing the movie , I want to know the history of Spanish . This morning , I watched the movie ( called ) ' Beautiful Mind . ' I like to drink alcohol ; beer and Shochu are the best . I started writing a Japanese diary entry . I started writing a Japanese diary entry the day before yesterday . Because I was not interested in all of my studies in those days , Now , I saw many people studying Japanese on this site , so I was growing more interested about Japanese . I decided to start writing a Japanese diary . I think that studying foreign languages will be one of my hobbies . In the case of a movie or TV , the actor 's speech is very fast , so I ca n't catch on normally . Today , I joined a local soccer club . One Aussie guy was already sitting on the grass . It was so great , and it was Rock ' n Roll ! I think there are a lot of good things about the bus here . I mean , most of the time they are clean , they have a system for people in wheel chairs , and they are big . That day we played card games and chatted about summer plans . Then we decided to go to the Taipei Water Park together . It was not very exciting but interesting . I like computers and the internet , and have & nbsp ; read many books about & nbsp ; them , such as The Microsoft Word by Bill Gates , The top of the wave by Wujun . The dead languages . We could not finish the work we planned on doing , because the customer got the wrong program . The weather is very hot here . Hard schedule . I feel I 'm lucky and I want to take care of care my daily life . Mia has no father , because her parents had divorced . Many of our friends came and we had a good time . I wish one day I could be an excellent teacher as they are now . What we should do is respect them and try to improve their lives . Yesterday , while I was on YouTube site , I found nice hip hop groups in Japan . My major was international relations especially East Asia , as an undergraduate and graduate . ( It 's new expression for me ! ) `` This is a kind of fundamental soy bean . . . . `` We received a present from the science club ! Her voice did n't sound as lovely as it used to . I waited 3 hours for my mother to comehome . In the hall , I listened to the lectures about which course to take in the future by two medical interns . I 'm so worried about which course to take in future that these lectures are I 've been longing to make freiends all over the world and enjoy chatting and spending a lot of fun time with them . Avril Lavigne is my favourite singer . And Japanese is prohibited from now on . `` It was a surprise attack . Although most students were calm , a few were shaking . The notion I was not alone comforted me somewhat . I will post some essays in the future and I hope anyone who reads my essay gives me some suggestions . I spent one day playing with and taking care of my adorable niece . I will import the CDs to my WALKMAN tomorrow and I will listen to the music every day . Who are your favorite musicians ? But this quake became strong and someone shouted . I have worked with DSK in Korea before , I am sending our main products list as attached . Thus , I think it is natural that parents are the best teachers . It 's so difficult for me to use English in my surroundings . I live deep in the mountains where there are no people who use English . We came back from Boston late on Sunday , so we could pick her up on the way back to home , but the kennnel was n't open last Sunday and Monday for pick - up , due to Memorial Day . First , I saw the Japanese style armors . For example , some armors seem brave , some dignified and some intellectual . The weather forecast said , `` Pay attention to heavy rain till tomorrow morning . `` Actually , the previous article I wrote was never corrected . What kind of problems can this cause ? If people live in other countries , they would experience the difference . Connecting a city road system to make other free travel moreeasily and more quickly than stets and roads congested with many singing andlight bus stop . Today it 's rained so ~ ~ ~ ~ much ! but it rained , so I could not go out . what happened today : ) I saw a TV program about the new year 's marathon while getting ready for going out . Just the diaries of a stupid gril . that is nothing special . This is because the light reflected off the water bottles repels the cats . I think that is interesting . Sports bicycles are expensive so it is necessary to be careful when selecting a bicycle parking lot . And I guess electric toothbrushes make my teeth more clean than manual brushing . I suddenly realized that it was time to pull myself together despite my parents ' broken marriage , and focus on studying again . My friends taught me how to use the computer well . While we were going home , we tried to speak only English nistead of Japanese . Although our conversation proceeded slowly , I thought that it was good idea ! I feel the differences between two sentences . But I can not explain the differences clearly . I am in a ELD ( English language development ) class . If my English improves , I will take some science classes because I want to go to a good university . However , I do n't remember what it is about or how good it is . I practiced playing this song today : ) Today , I dropped by a glasses store and bought a pair of sunglasses for my use on a short trip the day after tomorrow . Tomorrow , I will wash my car with my elder daughter for the purpose of a short trip . Then , I thought I 'd study English words while reading book . Is there a book that you can recommend for beginner . Do you know a book which you 'd recommend for a biginner ? Actually , we all felt that way . 'cause I believe that to do one 's best is important and valuable . I 'm not a genius , I 'm just a normal person . . ^ ^ but maybe I can do it . speaking of methods of studying English , I believe that Lang - 8 is very effective and addition , it 's free of charge . usually I would work out , before swimming lessons , but I did n't do them today , I rarely have an opportunity to work with foreigners , so it is a prime opportunity for me ! I LOVED THAT ! The temple was good to see and Seokgatap in the temple , which was constructed in the mid - eighth century was simple , but had a good balance . The homework is to read a book written in English , and write about the setting , summary , and my impression of the book . : quoted from `` Pay It Forward `` . He allowed me to , so I called my mom to pick me up to go to the hospital . Italian restaurant Yesterday I went to an Italian restaurant famous for organic vegetables in Ginza . Theoretically , Indonesia is located in a strategic position . And they were touched by beauty of Korea 's traditional house . Now it is nearly 6 : 00AM . Perhaps , it will shock everyone . I hope my poor words can describe it clearly . What 's more ? eah . . . wait for me to have a dream tonight 2 days ago , at Yoyogi park , I drank with my friend . I was completely drunk and fell asleep on a bench in the park . By having this faith , I have the confidence to face the next challenge presented to me and I am not afraid of facing problems . Second , I want to go to my home in Hiroshima prefecture . I look forward to reading my diary after it 's corrected ! In the future , I will take more time to read , because I like reading very much , and I want to have more knowledge about all over the world . The job is difficult but it brings me a sense of fulfillment . movies , news , novels , grammar , diaries , travel news and so on . hello , it 's the first day I came here . I 'd like to make friends with everyone . I have to work hard for the meeting of our project in Sep . In China , finding a good job is very hard , in New Zealand it is 't so hard than China , but it 's not easy . When I missed getting off of a bus and was concerned whether I could get to my home safely , the bus driver made the effort to make sure I got home safely . It is that the weather in Seattle is very changeable . I miss my country 's family , friends and food but I know there are lots of interesting things in Seattle . So I hope you can correct my wrong expressions . we are gon na go watch the musical `` the lion king `` : ] Recently I got a new job . I am not sure if they do drugs like drug addicts or if they just did it once , because I heard it from someone else that I hardly even know . So I decided I want to ask them face to face if they are drug addicts or if they are dangerous , because I do n't want to bejudgmental , talking behind their backs . I want to make a friend ! I have friends in the UK and we exchange emails with each other but I make mistakes all the time . I will write my journal and emails which I want to send my friends . I enjoyed many experience , such as Mekong river cruise , long tunnel of Cuchi , and shopping . They have food that goes with drinks , such as fried rice , grilled fish , and Chicken karaage . This September , I will be promoted to a position that requires me to fill out a lot of documents . Please resolve my question . I 've finally finished school test last week . I challenge secondary level so I want to improve my English . Yes , my handle name comes from the from famous musician Jaco Pastorius . I was very surprised , because his sound was very unique and very interesting . I like learning languages , so I interviewed with a foreign exchange company . A little bird We used to be more talkative . Reference : The teacher said we can read together in 6 months to a year . ( half or a year . Or what do you recommend ? I 'm a beginner so please recommend easy ones ! XD So I buy a fiction named `` the Lost Symbol `` which written by Dan Brown , one of my favorite writer . Hence , I am not good at speaking and listening English . How should I study to be able to speak and listen to English better ? I felt refreshed after a 90 minute nap . Ican have breakfast for a half of the day , reading lj and planning something for theday . Before I posted it to twitter I had deleted it by accident . Do you know that Japanese mobile phones are very high quality and have many functions so they are very expensive items ? I have heard that there are simple mobile phones for average users and kind of pda for heavy users in foreign countries . My Japanese colleagues are morons , nobody can speak English well except for Seki - san . I am going to take the test in February . Now sixteen years later I still take time off of work and study to play it very often . I 've never had formal training or a coach . But I believe I have a gift for this ! Yesterday I found a website which has many people that live in my city who love this sport . Also : according to past experiences , the attendees are mostly professors , NGO staff , governmental associates , and university students who are related with this subject . Despite yesterday 's continuous rain , the sky was completely clear . I cleaned my room a little because it 's nearly the end of the year . You are a worker of a large supermarket . Maybe your supervisor has a trouble informing something to all the workers . Because the supermarket is very big . When I listen to music through headphones a little loudly , sometimes I feel I am in my own small universe . It has become cold these days , so I bought oil for the air heater . However , I could n't use it because the pump to pour the oil into the tank of the heater was broken . A raccoon on the balcony It was very surprising to see a raccoon on the balcony ! Well , I 'm living on the second floor , so it 's a big question about how he could get here . I like it when I touch the keyboard for the first time . However , the typhoon is coming to Tokyo and will be here soon . I was surprised by this number , because the iPhone , which is the largest competitor to the Nexus One , had sold over two hundred and fifty thousand in first week , according to this article . My dad is the most ugly man in the world . I hate him hate him so much , what a horrible man he is . We hardly ever talk , and we are always angry when we speak more than 6 words , so I prefer to talk with a stranger than to him . I have been satisfied with this vacation . As a result , my study is prompted sufficiently . I am a grade one university student now . I 've studied for two months . How foolish I am . everybody has different plans & dreams in the their college life , I want to be a business man in the future and have my own company . That journal was written by a japanese person . I eat donuts and drink coffee , of course . I finished a chinese character 's homework during break time . When I took a bath with my younger daughter last night , she asked me , `` Can I get a baby with my tummy ? `` She is 9 years old , a little chubby but watches her weight . My American friend told me that she had a friend in Australia and we found out that her friend was a student at the university where I will take an English course . After words , l went back to my home and watched the movie `` Butterfly Effect 3 `` . I like to have a my own garden where I can plant some vegetables and herbs , set up a table outdoors so I can read and relax In addition , another advantage of living in a house , it is much quiet than an apartment . However , there are also some advantages to live in an apartment , such as better location , cheaper rental then a house , close to public transports and variety of facilities from the apartment , For example , a bigger swimming pool , Gyms , theaters and a security system which is very important of our properties safety . I wanna study science in a university . I like science very much . But then I realize that I 'll never learn how to if I do n't make these mistakes , even if I get embarrassed because of them . I lost my mobile at a bus stop . It is certainly a new way of communication which we did not have some years ago that provides possibilities not available before . On the other hand , we must accept they have weak points , like risk of addiction and possible unintentional public exposure which of course can be found in other very old examples of our societies . The brain of that computer is composed of 2 Bubble - Core CPUs . I believe I can do it by Mac . Short time ago I read my acquaintance 's diary in mixi talking about lang - 8 . There are three words which mean the same thing as `` result `` lol ! I met one of my friends who I have been best friends with since we were high school students . I had a pleasant time ^ ^ He has a very global philosophy . They talk everyday in lovely voices . If you are free , please check my sentenses . The theme of the lesson today is net play and practicing volley . ever since I came to this school , I have kept telling myself never Actually one of co - workers is complaining about her cuz she is strict on everything like cleaning , manual and so on . Sometimes I really like to live here , but I feel sad often . In October of last year , I went to a Chinese restaurant in Fort Lee with my friend and her five - year - old daughter . Nevertheless , my friend kept telling me that they served delightful meals / dishes , especially shrimp dumplings and wonton soup . I did n't understand what she meant by that phrase . She replied , `` I said it 's my treat . `` I was confused , but I finally got the meaning . When I was a high school student , I learnt it / learned it as `` Be my guest . `` Trip to India ! Please correct my diary I hope the nuclear emissions will be stopped as soon as possible ! Are these three the right expressions ? I can talk to mny people . So , I can / get to learn some English from them . I watched a debate between Toshinao Sasaki and Son Masayoshi on Ustream . Sasaki guesses reform would need an application layer before rebuilding an infrastructure layer . Math question Let me talk again about my rubbish story . I feel more comfortable in them than shoes . `` Please tell me the differences between these two sentences , I received a picture card from a male friend of mine . He is an architecture , designer , gardener , and a ceramist . He has a broad mind and he is an independent person . He grows rice and vegetables for his own needs . I want him to get married and have a family . Besides , I have to admit that I am a playful boy . However , I think that I will have fun with lang - 8 as I am interacting with people on the world on the web ! ! on the other hand , I do n't believe that I am loved And let me know if you have any recommendations for places / food etc in Ho Chi Minh city . such as Manga , Music , Snowboard , food etc . Recipe for `` Okonomiyaki `` is very easy . But this food is very delicious . `` Okonomiyaki `` is a local dish in Osaka . So I took an aspirin and it went away . Without a doubt , Obama got what he wanted . Will Martin say his dream come true when he hears of this news up in heaven ? not attack China as much as before , this has made Chinese people observe the two candidates in a more objective way . I do n't use the air conditioner and every night feels so hot . My favorite season is Autumn . So I did n't go to my English school and cancelled my trip to Nagoya . . . . Fortunately , the job is finished at the end of this month ~ Then I am going to travel to Hokkaido . I have stayed in another Joy for a really short time [ ? ] , and I left there because of an event that I could not endure . I am so happy to join this site . Thanks in advance to all of you who help me . Today I was drawing a lot of pictures . because I had an appointment with my friend . In my living memory , I 've never seen someone who can survive without the help of nutrients that are mainly provided by food . It 's no wonder someone in Japan brings up this subject although we do n't need to be worried about our food for the time being unless something irksome affects the food markets . Therefore my brother temporarily adopted the stray , who is more loving and well - behaved than my own puppy . Today was an ordinary day . I woke up and went to university , a part time job at starbucks and then home . I think Oden is a uniqe Japanese food . It is an easy to cook and economical meal . I have no idea about grammar . . . and vocab . . . But , my English is my biggest problem . . . We ate Okinawan cuisine together . I go to work almost every day so it seems a little bit hard but it is fun to work with my coworkers , and I have to earn money for my working holiday , so this noodle shop is the best place I 've worked so far . I arrived at my first destination , Montreal , two days ago . And due to the distance from Toronto , the time zone between two was plus one hour on Toronto time zone . I misread it as she was good be born as good cooking person . Thinking in foreign languages . In addition , when I encounter daily things , I have started to describe daily events . But Japanese 's advantages , as it may seem , is a paradox . If I have my own house , I would like to try `` DIY `` : ) . Maybe I was gradually becoming Chinese ? Greeting with strangers is a wonderful habit . Today is the Lantern Festival which I love very much . The story comes from a manga in a magazine for adults . Watashi wa Torukojin desu . It is one of the most popular attractions , but I was able to ride it soon , I only waited 5 min . I managed to ride 12 attractions and Splash Mountain was the best of all of them . I wanted to ride Space Mountain but it was closed because of maintenance . The electrical parade was sooooo beautiful ! ! ! When I got home , I still felt as if I were riding roller coaster . I will talk about the advantages and disadvantages of a computer because I want talk about the advantages . About the disadvantages : At first , I thought I just had a hangover . I should stop working and go home right now . . . . And I 'm sure that I sounded funny and awkward because I just created most of the expressions right off the top of my head . although the first price is changes , my expectation is n't changed . I 'm waiting for May for my travels to begin . In the beginning of our relationship , he made me dinner that consisted of fried meat and instant mashed potatoes . Honeycomb & hive Here in my city there are a lot of buildings , and there are also a lot of museums and parks . Our problem is that in other years you could walk across the streets free , without problems . Now , at this time , it is imposible because of security problems . Barcelona . Faced agaist Real Madrid . I went back tomy seat and drank the coffee . My part - time job is from 3 times to 1 time per week . congratulations ! and today is our dormitory festival ! I 'm a dormitory student council member . As a result , I registered an account immediately and began to look for some friends whose goals or hobbies are similar to mine . There is an exam about house building in October . So far I do n't miss Japanese food very much because there is a large Chinese supermarket in the neighborhood . I can get vegetables , fish , tofu , soy sauce and many things to cook for myself . I really regret not going to my college reunion ! I missed my college reunion . Which is more popular in your country ? Today I changed my cellular phone to a BlackBerry . Of course , including `` Lang - 8 `` to improve my English skill . However it is a dilemma . but the recruter is going to come soon . I like to focus on my feelings . A podcast is a free internet service that supplies you with numerous topics in various languages . People that host podcasts for beginners speak about / on topics at a slower pace . If you do n't use podcasts , then I strongly recommend that you use them . Even so , I believe that Podcasts are still a very effective way to learn a foreign language . Recently , I 've been going to an English Conversation school on the weekdays . she spoke to me in a clear voice , and she knows a little Japanese because she lives in Tokyo . Rather than that , it seemed to be from novice to an intermediate level . My name is Akito . I am18 years old and am a University student . I live in Shizuoka in Japan . Mt , Fuji is in Shizuoka . Why then , do you know Okinawa in Japan ? I l lived in Okinawa before I moved to Shizuoka . I love Okinawa . There are many great things such as the clear blue sea , very delicious fruits , and native animals . By the way , I want to study abroad after two years for learn Engish and a different culture . But , I am troubled about where I should go . My senior advised me to go to America or Australia . In his opinion , in America , American English is spoken and in Australia , British English is spoken . So I should select them . Where do you think I should go ? I have little time to study because work began . I 'd like to introduce my hometown . It is the tallest mountain in Kyushu . It takes 1 hour and 10 minutes to get there from Yakushima airport . I 'm studying art at Zhongyang Meishu Xueyuan ( CAFA ) . Outside of art , I like shopping , _ play the trumpet , guitar , piano , _ studying languages , _ taking pictures , cooking , watching movies , etc . Encantadade conocerle . Today is Saturday . I got up early in the morning and did some exercises with my mom in the park . Since last year , I have been studying economics for a civil service examination . ( Sounds better . ) I thought that might be why I ca n't be good at it . Today , An unpleasant thing happened , , One of orthodontic appliances came off . I have to go and see the Orthodontist tomorrow . brilliant . Recently I can talk with them more smoothly than before , so I had thought my speaking skill is growing ! ! ! But in fact , their listening skill is growing : D I attended the wedding party . I wear contact lenses instead ) , umbrellas , scarfs , jewelry and so on . Even at home , many things disappear , so I 'm always looking for something . Yesterday I watched the movie Blood Diamond on the internet . The story is about a diamond smuggler ( Leonardo DiCaprio played this role ) who meets a fisherman by accident . Christmas Party However , I also know technologies have been changing very fast and the cost of the products are decreasing quickly so I decided to buy middle range products . I am satisfied . However , there are a lot of blog sites , which is the best ? At that time , there was a doctor on the train and he was OK . Anyway I think that they should n't learn bad Italian words especially because what it is said could be very hurtful in your mother tongue . Since I finished my Chinese writing assignment at school It is very thrilling and fun ! He looked fatter and he said `` Singaporean food is very nice ! `` Certainly , Singaporean food is so good ! Ofcourse we took a picture together and after that we had a dinner in a thai restaurant which alongs the Singaporean river . Maybe I should go to bed earlier . Have you decided what presents to give your friends and family ? The website said they sent exams result out last Wednesday . Today , two people did n't attend lab because they had a cold . Now , people are catching colds easily because the season is changing from summer to fall in Japan . You should take care of yourself too . English is very difficult Another song `` Kidz `` sung by Take That has ( their ) MV on the Youtubetoo . According to the theories of the great psychologists , I analyzed myself , encouraged myself , and enlightened myself . Actually it tastes good but sushi as raw fish on the rice is definitely better ~ : ) I watch Kobe Bryant the most . We ate many hamburgers because we were very hungry . ( But this was a big mistake . ) But the problem is my cousin seems like a mysophobiac . I baked chocolate pie and apple pie in the afternoon . I 'm preparing for a college entrance examination because next year I will attend a college for further study . So my resolution is to continue buying lotteries in order to pay for the expenses . But I try my best to help those who are learning Chinese . So that 's the first diary that I publish here . Moreover , doing chorus in class brings them together . Each one feels he or she is a member of the class and through singing they bond with their classmates . Apart from preparing for studying examinationand learning capacity examination . Moreover , it will be more fun than studying by myself . Second , I often help my friend who studies better than I do with my favorite subjects , except ( ? ) for English such as writing , reading , etc . When I was a high school student , I had a rival to increase my studying skills . Finally , studying with classmates will give me great opportunities to make a lot of friends who like to study with others . I could get used to working with many companies who can give me some kind of advice to run the company . For these reasons , I prefer studying with friends rather than studying alone . Hello , I want to practice my writing skill , so I entered this SNS . What are your favorite chatting tools ? QQ or MSN ? We got together to celebrate the day . I just smiled and said `` Mom I 'll get married this year ! `` I might have dreamed , but I could n't remember . But it gave me a headache . I have n't finished writing new year 's cards yet . I may need to have a nerve extracted if I feel any pain today . I want to speak English . I put it into my computer , then my Media Player showed `` under construction `` as the title of the CD . I would like to learn real English . The lesson of this story is that if you invest in artist 's works , you should research the age and health condition of the artist . I wanna know many countries and talk to diferent people , know different cultures not from tv , but in real life . in the picture above is the city that I live in , the upperview is so beautiful ! And now I 'm officially on vacation , so I 've decided come back home for one month , with my mom and younger bro . Then I will exert myself to study . This is a very encouraging animation , so I recommend you guys watch it ! There is very very small pond in my garden . I ( previously ) mentioned that I wanted to watch Inception . It was a very complicated story , but because my English teacher had told me the basic story , I could almost ( / just about ) follow the story . I 'm proud that Japanese actor Ken Watanabe plays an important role . I felt that a typhoon carried something adventurous . I think it is difficult . And It is easy to find people who are you looking for . But it was blamed by many mixi users and it was callapse just one day . I guess I want to comunicate with friends who study language . ( In Japan , it has become popular for people , especailly business workers , to get together and study in the morning . I surely depend on my iPhone ! ! ! ! ! ! ! ! ! ! ! ! ! ! It is really nice day for me , because this morning I found some money in front of my house . The motorcycle came to my home , I do n't have a license for motorcycles over 400cc yet . I like something simple , so my favorite coffee is an americano . The owner of the cafe is very kind , the price is not expensive . It is mysterious . . . . . I have difficulty explaining the rules in English , so you may not understand . Today , it was extremely cold ! ! Students at many universities in Japan are required to study a foreign language , usually English . I succeeded in comunicating with them because English was spoken . Today I had a graduation exam and missed many questions . I always have trouble keeping up with the rhythm , The story is about a woman who travels to Italy , India , and Bali ( in Indonesia ) . So I 'm a bit nervous but I am looking forward to studying English here ! I think language is very important , because who study various languages has more opportunities . I have two favourite books . I am sorry about that . ) , Chamber of Secrets , Prisoner of Azkaban , Goblet of Fire , Order of the Phoenix , Half - blood Prince , and Deathly Hallows . Dumbledore is the principal of the magic - school , named Hogwarts . I envy the author 's imagination . And he wrote a very awful letter like ' I wo n't thank you for the present . I 'm looking forward to it . As an English teacher I should encourage students to write more so that they can review and grasp the knowledge well , such as words , phrases and sentence structure . Of course , teachers themselves must have a good understanding of grammar and expressions so that they can give students right and instant correction . When a typhoon comes , elementary schools are closed . HELLO ! ! In this way , autonomous enrollment is a good additional procedure for College Entrance Examination . For another , College Entrance Examination is a only way for students to enter College before emergence of autonomous enrollment . Therefore , Autonomous enrollment is beneficial for students to do their best . Taking into account of all these factors , we can draw the conclusion that Autonomous enrollment is necessary not only for universities , but students as well . I have a good Korean friend . He in on doctrinal course . I went to a Korean restaurant . Additionally , I learned about many delicious foreign dishes when I came here because there are many foreign restaurants here . My favorite foods are Thai food , Korean food , and hamburgers . Korean food is a little bit similar to Japanese food , so I like it . I love green curry because it tastes spicy and sweet . I think American food is more yummy than Japanese food . Because of this , my weight increases little by little , but I enjoyed today 's lunch . These rights guarantee equality without distinction of any kind , such as race , colour , sex , Because of it imported goods become cheaper . At the same time , I have started to learn Japanese so that I can watch Japanese T . V . programs . I 'm a Korean college student . But it will cost about 50 trillion yen to realize this plan , so it is supposed that the consumption tax will be raised by 4 % , health insurance premiums will be raised by 2 % and premiums for nursing - care insurance for over 65 will be doubled . It 's made from roast cereals and does n't contain any caffeine . My favourite music ! Part 2 my first entry here nighttime , I either went to the library or had a walk with friends on the athlete grounds for more than two hours to practice our cantonese going to skate together . However , the service industry is really interesting . The dishes were very delicious , but I got the same dishes also 1 month before . There was a dramatic change in the youngest group , but the two other groups showed gradual increases as well . He was very the one who had been teaching me and keeping me safe before the accident happened . How can I make her like memorizing words ? This picture is our national flag . It is a peaceful country . We welcome you ! We ordered chicken dishes . I have to buy a ticket , pay travel expenses , and book a hotel . I 'll spend much money this summer . When you draw natural things like trees , stones or clouds it does n't matter how the line goes . I bought theipod touch with 64GBs , because I want to download a lot of audio books for now . Still there seems to be a pile of arduous tasks in front of us . My phone rang [ past simple ] at 0 o ' clock hmhm a new message is the first in my day . We could enjoyed karaoke more than ever . cooking is splendid . As commander in chief , the game user has to manage money , resources , supplies , equipment , military forces in order to command an space army and defeat the enemy . So I want to see a lot of things , and talk to some people . This trip will be a great pleasure for me . Ramadan is coming , so I will have a lot of time to stay at home and do nothing . Today , I will try to think about the ways of studying . So some people say a way of studying is good , but other people say this method is bad . I have read dozens of books about ways of studying . Because this journal is really long , I will write a concrete way of studying tomorrow . She is studying and works now too and she is paid about 500 $ a month . Yesterday , I received my TOEIC results . Hello , I am tdesesk . I am from Spain and I am learning English to speak with my friends and to understand people when I go to other countries . because he always talk big and he is mean . 2 yolks in my bowl , every morning . It is an international and professional organization . The members can improve their speaking skills by giving speeches . I hope someday I will be able to talk fluently in front of the public without tension : D Other than that , we also need to turn in ( or submit ) a group project assignment of 15 pages and have one group presentation and one individual oral presentation . Yesterday , I signed up for the correspondence course . The contents of the course consists of hearing English for 1000 hours in a year . According to the explanation of the course , it is generally said that about 1000 hours are required to get used to hear foreign language accurately . The course costed about Fifty thousand yen . It was not low but I could pay for it by the welfare program which my company are offered to me ! The course will begin in next month . I feel nervous right now . But I have no idea how to stand out during the interview . I 'm so nervous . . . . So praise God I can take the class , and hopefully everything will be okay until the end of the semester . Well , even though it is September , it 's scorching hot today . They are so strange ! If I will go to oversea , I would like to see monument ! I think there are so many monuments that are fashionable , and strange in other countries : ) Today I discovered an amazing work of art and a good artist . I think that his artwork is miraculous and beautiful . When I went out for work , the temperature was only - 10 degrees . I usually work until 5 : 00 PM from 8 : 00 AM . I understand now why I could n't write anything ; it was because my motivation came from showing off / looking good to other people , not from a desire to express my creativity . ESL Podcasts are for English beginners and it 's easy to listen to their pronunciation . I went to my University this morning . To be a telemarketer for the day . The topic was `` No smoking at work `` . Repeating the same questions again and again was repetitive . First I want to learn English , so if you want to help me I will be very grateful . : ) The first people who take paid leave ( days off ? ) in 1936 go camping and dance the tango under the windows of a british manor . Another reality makes trouble in the manor : the influx of foreigners coming from Germany to escape the Nazis . This happiness disappears because of the agitated defenders of Occident . Studying English and massage She has a nice body and beautiful legs . We 're tumbling together , to get more clear that what is tender Although it might be tiny numbers compared to the US market , we 've begun to rent or purchase movies via the internet . Today is a very comfortable / pleasant / nice day , hello , I 'm interested in learning english but it 's very difficult for me . . . I 'm learning English and Japanese . I want to speak English and Japanese better > - < I think I should study more ! My lunch today is fried rice and fruit . The leaves change their color to red in November . I have many dreams . I think all are future tense . . . . . I woke up in a very good mood , but the sand in the wind was very strange . A strange wind blew the sand in the air , although it was not much sand so I could still see the sun . But the sky changed to gray . That was the first time I have seen sand in the air . Tehehe . He is an English teacher at the institute where I 'm teaching . The answer is a Japanese ceremony . Japanese children are wearing western clothes usually . but now the 753 ceremony is more simple . I 'm afraid Japanese traditional ceremonies are smaller than old times . since I opened this web page last time lol I do n't know what bad translations are . v Valentine 's Day . Of course , I 'm included . It made my taste change spicy ! Ater that we enjoyed shopping and became tired , so we went a cafe . After hiking , we went to a Japanese Sushi restaurant in Oakland . On July 24th , an earthquake with a seismic intensity of upper 6 occurred in Iwate prefecture . Fortunately , building damages were small . I decided to translate a short story ( well , actually it 's not that short ! ) by Somerset Maugham `` The force of circumstance `` . But for my dismay right now I can remember only one of them . Reading these books helps me learn English , but it is bad for the store if I never buy them . Electronics supply store I was happy just looking and imagining what life would be like with them . The surgery was about 20 minutes or so . There were 6 or 7 pieces . He cleaned and sterilized it . I 'm OK now , but every time I eat something , food gets stuck in there and I feel very uncomfortable . The reason is , first of all , that he has a lot of knowledge about architecture that he is always willing to pass on to his students . However , in fact , I do n't know , and I 'm afraid about the exam next year . About The Canadian International Dragon Boat Festival . Dragon boating appeared in Vancouver as a demonstration sport at - Expo 86 . The people raced out in their fish boats and used their oars to keep the fish and water dragons away from his body . But it so exciting to know something about a foreign education system . I felt English was really interesting ! ! So , I wanted to become a customer service agent at the airport . I am learning English and Chinese now . It is funny for me to watch stars while thinking about myths . When I try to charge on a customer 's credit card , I call a company called ' Authorization Centre ' in Japanese in order to get the transaction number from the company . I 'm studying Japanese teaching and I want to live in a foreign country . Recentry I studied English hard to improve my TOEIC score . These suicide bombings have taken place universaly so the United Nations officals felt obliged to investigate . The situations told by witnesses who claimed to have seen the incident were extraordinarily similar . Though I 'm not a follower of the press celebrity , when daily we are harassed by bad news , a wedding does stand out from the rather mortifying current events which surround us . What makes them so fanatic ? As I grew up , I became a little bit Buddhist - minded , but I have not practiced any of the disciplines . HE IS ONE OF MY FAVORITE SINGERS I TO LISTEN EVEN THOUGH IT HAS BEEN JUST 1 WEEK SINCE I FOUND HIM ON YOUTUBE . SINCE I ' M NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNORE THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` INSTEAD OF JUSTIN BIEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID `` NO WAY ! ! ! ! `` . I find it is very difficult thing to do . In fact , I have a new dog two weeks ago ! Despite his tiredness , it took a long time for Shu to fall asleep , which made me exhausted . It is my wish that children become fond of mathematics in the future . But , I 'm a little worried if I 'll be able to when I 'm hungover . They were so delicious . Have a good night ! Thank you . When I rode home , the breeze smelled so sweet and amiable that I felt just like a bird , soaring freely in the sky . This election was my first big election . I think it 's a very big event and it is just a normal thing too . And I saw a TV drama on PC . We drank champagne and beer . We requested songs and drank some champagne . Sentence structure and grammar are very important when we write . I hope this article is mostly correct . I bought Drano yesterday . Why are you waiting until it fails ? `` A few days ago , I was really confident and believed I could do everything . I could even act like a well - known actress . I want my mum or my close friend to hug me whether I do well or not . I have just started to write a diary on Lang - 8 today . But I do n't have self - confidence with letters . A good friend . I have a good friend , an e - pal , but I treat her as my friend . She is an interesting person , I wonder whether the word `` interesting `` is right or not to describe people , lol . Although I am older than herI think we will be really good friends , I thought tomorrow is Saturday , so I do n't have to work , but my customer said `` Let 's have a meeting tomorrow . `` . I should have watched them before going there . If you have kids , you can bring them there to join the story - telling event . When I chatted with my American friend about a Japanese hologram idol , Hatsune Miku , over Skype yesterday , he sent me two very funny video clips from YouTube . I am Ukrainian , but I live in Russia . Ergo Proxy , Texhnolyze , Ghost in The Shell ( I like movies more ) , Witch Hunter Robin It is an illustration of girls dancing a fula . A for a long time that it was not correct , because a cunjunction must be used in the middle of the sentence . but I do n't know what to write . This movie did n't meet / satisfy my expectations , but it 's still a good movie . We may be as happy as can be to read the books which our favorite writers wrote or are about what we are interested in during the long nights in this most comfortable season . There was an old man & nbsp ; waiting there , too . It is the UEFA champion 's league . So I am writing a diary and killing time . I hope the drinking party will be over in a few minutes . I have been learning English for five years and I have no one to communicate with in English . I want to go to Canada to study English . I was at sea this summer the first time . Today , I thought of a difficult grammatical concept . Today , the water supplyin our neighbourhood was I want to try a lot of things actively in this year . We cosplayed as KOF , a popular Japanese fighting computer game , and placed third in the Beijing area . If I wanna make a foreign friend I must command this language . Today when I woke up and brushed my hair , I found a part of my hair was tangled badly . Finally , I used the brush to comb my hair again and this time I was able to brush it through . I am proud of the workers who are working at to solve the nuclear power plant disaster . In Fukushima , although they are working hard , there is still no electricity . both residents and Japanese nationals . The rocks would be slippery and waves would be high , so we decided to cancel it . My English grades are still very bad . I 'm Japanese and university student in Kyoto which is the most historical city in Japan . I 'm majoring in cultural anthoropology . Simply put , it 's comparing a culture with other cultures in a historical context . For example , if I study about a festive , I have to inspect the place , the history , and refer to certian books . Hm , it 's difficult to explain exactly . Anybody could possibly be `` otaku `` . This theme is very challenging for me because the investigation of the matter is still under way . When I was a junior high school student , The Beatles ' best album `` One `` went on sale / was released . It broadcasted The Beatles ' promotion videos , `` Yesterday `` , `` Let it be `` and so on . To be honest , it was not great of a festival , but if it had n't been rainy , I would have enjoyed very much . I uploaded a new picture as my avatar . her class 's new teacher came . She said that she was planning to visit eight students . She stayed at my home for only fifteen minutes . The result was that there were two wins and two losses , so it was draw . Their performance , music , jokes and colorful atmosphere were wonderful ! : ) ' You 'll get fat ! ' , they said and laughed at me . If I had to pickjust one , I would choose honoras the most important characteristicI want in a friend . Do you agree or disagree with the following statement ? As a result , I can learn English Language from native speakers with the use of a new internet service technology . Yesterday an accident happened in my train . In summer time , sex crimes on trains happen sometimes . But if his company knew about it , He would be fired . I am going to an outlet shop in Gotenba , Sizuoka prefecture , today . I lived there until graduating from high school , after I left Hokkaido afterward . I felt very thankful to my professor . So , I studied Chinese . Chinese is very difficult . going fishing , taking a bath at the onsen , and swimming at the sea . I will challenge this new job ! ! Today I ate `` Abekawa mochi `` with my American friend at a garden of Shinto shrine . We are saved by your warm heart . Please call me okinawa . I have graduated from Shenyang Airspace University in july , I majored in Japanese . Can someone to search this book 's English version ? So my studying has been very very poor . spicy foods & cat 's tongue `` I watched TV and learned that it 's because the tongue 's movement People who have cat 's tongue can not avoid the part of the tongue which can sense the heat the best when we eat something hot . They end up touch something hot by that part of the tongue which senses the heat the best . The problem is the way the tongue moves . `` My favorite recipe I have some favorite recipes . Of them , my most favorite recipe is acooked dish with beef and vegetables . The trick of tasty food is entering spices which are Soy - sauce , Japanese - Sake and a Japanese spice called `` Mirin `` . I have been going to driving shool since February . It is Valentine 's Day ! because it 's my mother in laws birthday . I hope my wishes are granted . I like to watch TV . I like watching `` Spongebob Squarepants `` but I do n't like Spongebob , I like Patrick . He 's so cute . Rainy day . I 'm very happy because I wanted to learn English in more proper way . It was raining heavily today . many things about my life on rainy days . That factory makes toilet paper from using recycled paper . I think that much water is needed to make the paper and recycling is very important for a sustainable society . Of course they asked us questions like what is life , what is die and what is a family . Because the temperature of 37 . 2 degree C in Taipei , was too hot to me . In Nepal , many people consider it bad luck . I learn linguistics at a university . The languages I learn are English , Chinese and Korean . It 's hard to pronounce . . . There are many girls in my course , but please do n't get jealous of me . About Architecture I answered : There are some issues remain to be solved . It was with whipped [ ? ] cream and chocolate sauce . ( I watched `` My Cousin Vinny `` last night . Burger King but a few years ago there was no store in Japan , I understand about a half of this radio program , It 's very good program for beginners in English . This first restaurant is a traditional Korean restaurant that serves a style of Royal court food ( that is ) inherited from 500 years a ago , with the main ingredients being fresh seafood and seasonal food . Since 1988 , this Chinese restaurant has run for 20 years because of it 's clean sanitation , fresh ingredients , and , by extension , delicious dishes . Moa is the best restaurant for your health and extending your life with our refined and various Jeonbok dishes that are good for your body . I went to Okinawa on my spring holiday with my friends . I went to duty - free - shop , did scuba diving , ate `` So - ki soba `` etc . . . . . We also went to `` Nago pineapple park `` . There are many pineapple foods . I especially liked pineapple pie . During the trip , it was rainy or cloudy . yet I can not speak English very well . anyway . . . Dear Japanese , you guys do n't have the right to criticize the riots in London . I can imagine that some of them think , `` See ? Japan is a safe country . Fierce riots only happen in foreign countries I am proud of Japan . `` Therefore , Japanese people do n't have the right to criticize the riots in London . His name is Igor Vladimirovich , and he professionally plays volleyball . I think that the pronunciation is pretty and fun . Today , I began studying hard because I want to get a better score before I take a TOEIC test . If you have some advice for studying English , please teach me how to study ! ! I did n't know there was such a famous festival until which means it was really fun hanging around ! ! in winter of 2009 , The movie ' AVATAR ' was released in japan . Actually I did n't try my best to find a new job . Because I spend my time thinking what my favourite job is . These days I am thinking of becoming an actress to earn some money and also to kill time . I will write about my business ( I am salesman ) and my hobbies ( reading Japanese manga , playing poker - Texas Hold 'em - , playing video games , and cooking ) on this diary . We had pretty hot weather last week but the temperature dropped down about 10 degrees since last Sunday and now rain start and stop and start and stop . because I work at a very famous hotel . The other students said `` Teacher , he does n't want to learn , our main teacher said that you can let him out `` , but I said `` If I do that , he will be poor in his studies because he will miss the course and ca n't catch up with us ! `` Today ( 15 / 12 / 2009 ) at Macquarie in Sydney , I 'm studying in the computer room , it 's so good that I 'm not late . So last night I went to bed before midnight but I do n't like waking up early in the morning . I hope that he is happy with his music and also with his daughter and wife . Me llamo Tammy , enantado . Such a thing has happened a few times this summer . I want to become a fluent English speaker . Study animation abroad . He is studying Japanese animation at school . I do n't know what kind of animation he was studying ? But we had a nice conversation together . He looked funny and friendly . Nice to meet you ! Nice to meet you , Lang - 8 members ! I 'm waiting for your comment ! Today is a holiday called GW _ ( Golden Week ) in Japan . Therefore I 've been searching a package tour to Hawaii . Companies care for their employees ' health . Today is my students ' entrance exam . a large part of students and their parents choose the public ones . When we had tried to go there last autumn , an autumn outing ( holiday ) season . in the mountain . l 'm amazing because I knew this site . I put my daughter in a summer workshop that 's called `` The Stage Coach `` which is a school teaching children how to act , sing , and dance . My husband went to the work this morning , but he came back to Wimbledon from his office in the city to watch her first performance . Anyways , the theme of the show was `` The Wizard of Oz `` and our daughter was one of the villagers in the Munchkin Land . Of course everyone wants to be Dorothy or a princess ! The 22GH incorporates - HDMI , DVI and DSub interfaces . The reason why I have selected this monitor is that it will produce a quality picture due to it 's 97 % ColorShpere . Driving in American is easy , although the city roads are very wide . As there are several blind points ( or spots ) , you ca n't see in your side mirror and rear - view mirror . I am so glad to find a place to learn more and improve . I think it 's very delicious ! ! History , Masked Rider I am unskilled at drawing , but I like to draw . I have a question . The first picture is the river where I went to the temple to pray the monk to ask a blessing . . we saw a lof of people there and I used the Chinish language a bit with the native people . I would like to show you some video but youtube do n't want me to make video ^ ^ . . . thank you for looking my picture and coming to my page . The end of Nov is the time for gloomy , windy and depressing weather here in Russia ( I guess there are lucky people enjoying something completely different ) I would like to grasp this opportunity and share some photos I have taken in Italy . couple of hours getting there : first by car , then by ferry . The avarage temp is around + 20C , the sea ( ocean ) is still available for swimming , the food is excellent and people are very friendly . 1289 one thousand two hundred eighty - nine 45989 forty - five thousand nine hundred eighty - nine 667890 six hundred sixty - seven thousand eight hundred ninety 5098433 five million ninety - eight thousand four hundred thirty - three I thought `` I won `` was correct , because it was for a past event , Answers on his cellphone during the exams . I 'm very confused . ( This is confusing ) because I felt he was difficult for any one to get close to . He half - opened his eyes and his eyelids were very sharp ! I thought that Sendai had a l poor economy this time . There is a nuclear power station . So I have to do research about malta . I 'd like to speak English fluently . I 'd also like to know how to study Japanese . There are lots of English conversation school in Japan , but few Japanese conversation school in America or other country right ? Which is better Iphone or android ( google ) phone . Recently he comes home very late because of his job . She said `` no `` to marriying with her boyfriend recently because of something that changed her mind . But in the afternoon , weather became so hot ! She has four big titles : a judo wrestler , the wife of a famous baseball player , a politician and a mother of two children . One of my classmates has been a beautiful policewoman ^ ^ ; wow , I feel a little pitiful LOL . What a hard work in Toky it was , with my hands ! ! Recentlly , I have started a part time job . I went to the Pride parade . Especially when I watch the same TV show as before , She said to me `` I put too much Cranberry sauce in it . As a Documentation engineer and English translator , I 'm now doing Photoshop - related things now . However ; I really feel sad that I can not even be brave enough to start up a conversation with a native English speaker . I think I 'm like a worker bee . I also dislike my life because it 's boring for me . ( Especially my best friend in London who is busy with her job , study and boyfriend ! ) The picture you see here is one serving for the King of the Chosun dynasty . But imagine all the ingredients that were prepared like that . But you can taste similar food for a much more reasonable price , with the preparation process reduced . I 'm happy . I am more intrested in taking a belly dancind class than the other exercise classes . I am going to visit you as soon as possible ( You 're my best penfriend ; D She defeated her opponents many times . I 'm gon na beat the competition . Because I had to prepare for the International Japanese test 1st grade , My teacher told us , `` You guys should memorize the presentation scripts . `` Moreover a classmate always complains about my pronunciation . Yesterday I met my high school friend who just came back from Japan ! ! she also brought her friend who is a Japanese called `` Mimi `` . . Korea soccer team beat Japan yesterday . So I anticipate more success this world cup . Each design decision made to create this site appears strange to me . This is the first time I use this style tool just to learn time Before I used to think that fall is the worst season , because it is always rainy , there is dirt under the feet , and sky suddenly turns into bright and blue . I have registered for this website for a period and I added some new friends here . This is a language exchange website , right ? At about half past eight , we had enjoyed so many sightseeings such as pure water streams , green trees , colorful flowers , etc . And we had also taken many interesting photos together . For example , a cellphone , digital camera , and car . . . ! ! ! It 's becoming colder these days , I ruined everynight last month , hmm , I forgot why I quit , maybe cause of laziness , or I do n't know . ^ _ ^ . Back to the work topic , there are some difficulties . First , the junior of my team does n't work hardly , and is less patient . They 've just graduated and have a lack of work experience . The point that I want to say is also a problem of China , is that the Chinese young people lack a sense of responsibility , are selfish , lazy and empty - headed , I think all the derogatory sense words can be used on them . My English is so poor that I choose to major in mechanical system design in Hongik university . I have to speak English to sign up for the class that I want . It 's a perfect fit that focuses more on me . My friend and I finished military service last May . K ! ! ( republic of korea ) `` . We enjoyed the performance . Although KORN is weaker now than in their golden day , I was moved by them . I hope I will enjoy snowboarding this season ! I do n't have grey hair , but some day I want to color them into brown , because I have never colored my hair . I watched `` The World Athletics Championships in Berlin `` on TV last night . Someone may think that I 'm stupid . Every athlete was very beautiful no matter where they were from . I just want to know how to describe different races . Have you ever seen an Olympic Gold swimming medalists who was fro trivial techniques and have patience . How about figure skaters ? Especially women . Asian women rank the top positions now . It 's still rare to see African figure skaters now . Some sports require training It means that where your country 's location is connected to popular sports and the number of players . Black people can play better when much muscle figure skating and synchronized swimming . ( I said the same thing too ) Did you really welcome Afro - American female champions ? Finally I could conclude with a nice comment . ! ! I 'm regretting to write such a long story ! Now I 'm trying to make warmer my relationship with grammar . ) ) And we will go to eat pork cutlet `` tonkatsu . `` This weekend typhoons approach . It 's too difficult for me , and I have little time to study ! The final SAT is on December ! Vocabulary is difficult , grammar is difficult , and I still do n't know much about American culture . What should I do ? It scares me that I ca n't see my future ! I am new here . Please do n't ignore me because it will make me sad . ( This may sound better ) It comes as no surprise that I still have lots of homework and exams this week . I have three lectures at my university . I am not afraid of earthquake , but I got stranded for about an hour Touhoku traffic got worse and there was lack of gasoline and broken highway and train . Today , I went to a industrial festival . Optical fibre TV I 'm studying English vocab . I think language begins with vocab . Because the perspiration ran down my face and back . Finally , the dean of the department of dentistry decided to resign . When the French teacher asked us some questions in French , we had a tough time trying to answer because we had forgotten so many things . That is why I have just sent him an e - mail explaining the current situation at the university . ELLEGRDEN is known as a rock ( punk ) band , and most of their songs are up - tempo . When I was first selecting a jazz piece , I could n't pass this piece : `` Waltz for Debby `` by . Because as always , I have problems with my bf . Actually I 'm kind of tired of studying for a TOEFL . . . my motivation is getting lower I guess . . oh my god . . . that 's not good you know . . . I really want to know what people think from their behavior or attitude . It has been about a month since I joined my current department . Korean kimchi fried rice . I received Korean kimchi from a Korean colleague as a souvenir . Korean kimchi has a rich flavor . I would like to take free trial lesson of another course this Friday . Life : I want to sign as volunteer for COP10 ! Currently , I 'm studying English hard . I ca n't speak and write English very well , but I would like to communicate with people from other countries . I am happy to meet my roommates , because there was no one excet me yesterday . Local people , who live in the province of B . came here with their families . I feel strongly about the cooperation of their families and the passion of their parents for them . So he comes home on Fridays and returns to Gage on Saturdays . By the way Most Japanese people have learned English for more than six years . We think so too . But Unfortunately , Japanese people do n't have many opportunities to use English everyday . If people start noticing that learning English is for communication with all over the world , population of people who can use English will increase , I think . In particular , in Japan , we are well on the way to an aging society more and more . The Japan national soccer team won the game against Australia and have now advanced to hopefully become the Asia Cup champions . The most impressive part of this game was that Zacch , who was the manager in this team , had a good command of things as well as changing players . The Japan team could use a good leader ! I 'm looking forward to seeing the next game ! Today is the Japanese holiday `` Children 's day `` . When I worked at the consulting firm , I respected my co - workers , especially my boss . There are so many punkish guys , foreigners also . Especially , the band that I was there to see , LOST PROPHETS ! He usually sleeps . I enrolled in an online English school a couple days ago . Can you believe that the price of one lesson fee is 1 $ to 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expensive . ere is one of my favorite proverbs that I learned from my English teacher . What 's your favorite idiom or proverb ? Please teach me some , if you know any . Once I studied English grammar books or something else , but I realized that I like reading books more than grammar books . The schedule application is really great , and I do n't need to carry big and heavy schedule notebooks . If you have some applications to recommend , please tell me ! ! Accordingly , my company put up some mottos . A colleague wore a green skirt , and another wore a green ring and necklace . Anyway , I enjoy picking out clothes . Have you ever succeeded in losing weight ? ? We ate strawberries and beans that she grew for dinner tonight . My English skill was build up through Lang - 8 . An Amazing Wesite for Language Learners Right now I 've come to be able to understand recorded voice in English , but it is still hard for me to understand what they are singing in English . My hobby is playing the flute in wind orchestra . Why do I feel very fashionable ? ? I guess I feel like that because of the well organised blainwashing from Japanese shopping malls . I as a Japanese put more worth in New Year 's Day I guess . l know even if l ca n't speak English , l can travel and see the beautiful landscape ; but l want to communicate with native speakers and l want to make friends . l have traveled some of Europe and Asia . When l came back to traveling , l felt that l owe thanks to my family , friends , my job , and much more . Recently l felt that l should spend my life challenging things . Sometimes , l thought that l was too old to challenge new things , but l changed my mind . Even though when l challenge anything , l spend more time than any other people . hi guys . . I 'm laura from italy . . . I need some help for improving my english and my japanese too . . . I 'm new at this website . . so if some kind person wants to help me . . I will be very glad . . I would like to help you with italian . . : ) thanks and bye : ) The suite brings welcome upgrades [ ? ] and is composed of three traditional applications ( Word , Excel and PowerPoint ) , plus Outlook , which replaces the e - mail client Entourage that had been integrated into the suite since 2001 . I belong to an English club in my university , and I have an activity every weekend in my club . I will go there to guide travelers from abroad . I will talk to them in English . Well , seeing the `` dolls `` in this drama , I remembered the people who were incubated and their energy ripped off by computers from the movie , The Matrix . The bodies are merely containers , and the data in the brain is what is human . because I did n't have any special feelings about X - mas . I will never stay alone anymore . First of all , we spend too much time and are overly enthusiastic about grammar . . only grammar . Also english teachers use difficult words to explain the english grammer . Many korean students are get good grades on grammar tests , but they ca n't actually speak to people from other countries . My favourite sports are swimming and running . Also , I like English very much . My home is close to a river , so when I was 8 years old , I learnt to swim . I believe that failure is the mother of success . You talk to me please . It is important for me to pass my English test so , please everyone help me with my English . She said that it was the beginning of the year , so she thought she could get through the whole year well if she did it . When she was bungee jumping , she felt like committing suicide . As I listened to her , I suddenly wondered about the feeling of commiting suicide . No one can commit suicide twice . We got a shopping cart before we entered the store and I was pushing it . There were some people who were also pushing their carts , but the person in front of me stopped suddenly when she heard the voice . But after a while , one of the clerks was very kind to take me to the product I was looking for , and a customer who had a big package of potato chips answered me with a big smile when I asked him where the potato chips were . I went there and ate pork vegetable miso soup . Finally , if you want to learn Chinese , I think I can help you . I learned a new word at today 's lesson in Starbucks . The word is scapegoat . I realized that I ate dinner for 2 days . Using this dictionary will be a lot of fun , as if I am traveling in a foreign country . When we left the market , we bought some cherries and two cakes , because cherries were really delicious and cheaper , cake was for my best friend , beacuse they left Christchurch today . After farewell , we went to the Sumner , actually this is my second time I have been there , but last time my homestay father took me around Christchurch and past Sumner , so I do n't remember everything . I want to learn Chinese and English in this university and speak them fluently . I 'll tell you one of the most scariest story I 've ever heard . I do n't have confidence whether I can tell you guys scarily , but I 'll try . That man was wearing coat over his shoulders , and seemed hiding his face from around , he walked while leaning on a wall , he came toward to elevator while holding his hands over his stomach And Chiang Mai is a prime example of this strategic model . I hope that is the case because I want to hang the picture in my room with me in it . I 'm gon na write a short diary or what ever I happen to be thinking about twice or more a week in order to be diligent : p ( as long as possible ) Let 's study languages together ! ! ! More and more I am interacting with many foreign people , so I joined Lang - 8 . I have Facebook , my account is takaxile , so please request me on the web . My first Period is years lesson . Topic was about past tense , and student changed ' tanoshii ' to ' tanoshikatta ' or something . Today all the students do n't attend class , so we played a kanji game . At first students divided into two teams , and put some Hiragana cards on the floor at regular intervals . My fifth period was year11 . They were writing essays about the difference between Australian table manner and Japanese ones . My Last period was year 9 . Super collaboration I happened to find this song on Youtube . This collaboration is quite good . Recently many singers release a song featuring rapper singers . Well , the story is about aliens that ( who ) come to conquer our planet ( the earth ! ) , but their plans always fail . They are so funny . I always laugh when I watch the episodes on the computer . There are five main characters in the series . Keroro is very childish and selfish and always tries to make people laugh , but he is a very bad comedian . Then we have Giroro ; he 's always thinking about the invasion because he 's a military man . The third character is Tamama - he 's a tadpole * , so his sex is not defined . He is bipolar and he likes sweets . The fourth member of the platoon is Kururu . He is a mad scientist , and he likes bothering people . He 's a pervert . Finally we have Dororo , an econinja . He came to conquer the planet , but when he saw the beauty of it , he decided to save it . He is always forgotten by the platoon . Poor Dororo ahahah ! ( haha ) I should have gone back to home at midnight , but the airplane was delayed . Similarly , natural expressions are natural only because the most native speakers feel so . Learning languages , either foreign or mother , is to acquire not only words and grammars but also different manners to perceive and represent the world . How about your country ? ? I dry the washing in the sun , then I air out the futons . Therefore , I dry the washing and futon everyday . It is has been more expensive recently because it is imported merchandise which is affected by an exchange rate . It is a hard situation for me to buy an ipodT _ T And I want to but a cell phone . But it is too expensive to buy . and I also watched Eastwick s01 ep01 ~ 04 , it 's a funny and weird TV show And whenever having ( instant noodle soup / it ) , I crack an egg into it . To be honest , I always check the spelling out with a translator : D so it 'll be cool and comfortable while I sleep . This was calendars , stamps , coins , but none of this became a serious hobby . Now I have only a few calendars and a few stamps from all of that . Nowadays I collect other things , like pens with beautiful pictures . Of course I do n't consider this very serious either , but if I see a nice pen , I will buy it . My friend led me to this hobby , because she usually gave me beautiful pens . I chose the class with the smallest number of people to understand English better . And I took the class American literature and so on . I felt something was missing at today 's lunch time . There are novels which include mystery , fantasy , historical , adolescence , heartwarming and love , business which are made of philosophy ( ? ) , ways of thinking , finance , how to express yourself , and so on . But the Jelly beans are my favorite Jelly ! ! San Francisco ! I went to San Francisco from Aug 19th to the 22nd with my girlfriend . I already got home , and I still ca n't believe San Francisco is in California . As you know , San Francisco is famous as crabs , shrimps and lobsters . I strongly recommend you go there , if you go to San Francisco . These reasons are extremely general . What makes you study Japanese ? It tasted really good , adding condiment paste made from yuzu zest and chilli peppers . The guitar is a beautiful instrument , but much more easier than the piano or violin . I ` m like leaning Tourism English because the city I ` m living in has many foreign tourists , I want to talk with them but my English is very bad . Maybe I can say this in a more beautiful way ? As a volunteer , I went to Fukushima ( near the troubled electric nuclear plant ) I am currently eating Sumtum and writing my journal entry . Sumtum is delicious . So I can correct Japanese grammar . When offered large plates of food most people would eat all of them regardless of whether they are hungry or not . I like Harry Potter very much . I also admire Luna Lovegood . well , I can only tell u that I 'm in bed and my right hand is very busy . . . . . I did n't like animeToT My favourite game is `` Diablo II : Lord of Dectruction `` ! So we celebrated it yesterday . Recently , I went to the eye doctors and had undergone some check up . We are afraid of and struggling against the tremendous earthquake and tsunami . So I wanted the challenge of a different job that time . She offered me the job in a foreign - affiliated company in Akasaka . I 've just renewed it the day before the phone call . From what they said , it sounded like they were enjoying their universities . I do n't usually use a cassette player . Last month , I spent three weeks in the capital of the UK - London . But now only the names of the streets indicate this . They are named after famous lakes , rivers , harbours , etc . I lived on the street which was named `` Lagado Mews `` . This month , has run & nbsp ; 10 kilometers . yesterday I wrote an article about searching for a job Luckily , lang - 8 is good to learn English because some people can teach me how to use correct grammar and I can make a friend . I study animation at university . But I like design now . For example , sandwich , spaghetti , Chinese food , and so on . But I ca n't speak Italian or English . . . . Quite a few people believe that the lucky numbers can bring good luck for them . But it does n't mean that lucky numbers can really bring good luck . Second , the lucky numbers are just a visual for hope . My teacher , who teaches the students techniques for it , said that business vocabulary is most important . I think the weather here is really cold . It 's about + 18C , but I heard that the winter in Canada is about - 30C . Here is the firework show of the new year in Taipei 101 . A lot of people say that it is not as amazing as they expect , and think it is the worst firework show they have ever seen . I was very tied , but I thought it was worthwhile . My final examination is coming ! Now I 'm in Beijing , China for a trip . Today I wanna talk about my trip in Beijing . That 's why I 'm in Beijing now . Actually , it 's been 2 days since I arrived at Beijing . I have n't eaten any Chinese food , like Beijing Duck , I 've only eaten some rice porridge and some pickle . . . It 's a fantasy story . In this hospital , nurses have to complete some reports to make it to the next level . This year is my second year here , I have to translate an English paper into Chinese , making it a short summary for all my coworkers ( about 16 people . ) In the end , the nurse manager of our ward will decide if I am qualified to go to the N1 level . I was taken to one of Canada day events at a park by my hostfamily the day before yesterday . After that they can get a toy depending on the number of stamps . dismiss about fifteen thousand employees . Should I work harder ? When will the depression end ? The Chinese traditional holiday , Spring Festival , is coming soon . It is my favorite holiday . I think it is also most Chinese people 's favorite holiday . So I just wonder if Americans or other English - speaking natives have a good knowledge of English grammar . I read a book or listen to music and so on . It is first time my daughter is to join a piano recital . When golden week starts on a Saturday , we can receive 5 consecutive holidays . I 'm jealous because I have to work during this great consecutive holiday . I 'm so tired , because today 's tests were very difficult for me . I 'm so happy because there are some people who correct my English . I 'm going to go to the restaurant to eat dinner with my family . Off course , I can move today . And a friend said `` you 're such a boring girl . `` Korean women have to behave carefully as long as possible . Hello ladies and gentlemen , and all of my friends around the world Where do you think God is ? Of course it 's never at ' temples ' , ' shrines ' , churches and mosques . I became refreshed and willing to do things actively after singing . I read books and newspapers , or study English . we could sort out the problems of the Iranian election . The problems are very diffcult because we ca n't understand others and ca n't think about other opnions . The idea of people all over the world using my program ! It excites me . In our company , there are wide - open opportunities for professional growth . We are a company that enjoys an enviable record for stability in the dynamic atmosphere of aerospace technology . hello world ! ! Now that I 've seen it again , I still think that Jeffrey was one of the most interesting people who ever lived in this world . S - ok just to make it clear I 'm not a fan of him or something ; the fact I 'm finding him interesting ( and this is not from now , but from years ago when I heard about him for the first time ) does n't mean I think that what he did was anywhere near okay or that he is something he is not . So hope you find it at least as interesting as I do . Kitano is famous for Ijinkan which is where many foreign people used to own residences during the Meiji era . I can pass it ^ ^ later I went to pub where is so fashionable and a little bit expensive - - I had ( pasta / a dish of pasta ) , cheese , salad , noodles ^ ^ then we went to an internet cafe where you can play table tennis , darts , and karaoke . We just sang 2 hours , and played table tennis . It was a warm day , so we felt comfortable having lunch outside . They are women who work in the commons , in the clerk , in the university convenience store and in the library . The best food I liked was `` Khao man gai `` - steamed rice with chicken and raw cucumber . I thought of the opposite views that once you had done the preparation well , you need not to worry any more . The IELTS class is more serious than the general English class so during the class everyone focuses on studying . Especially my Spanish friend , he is so funny ! ! I thought it would n't happen to me but my spanish friend . . . ! I was surprised to hear that de facto marriages are common in France . There are various types of cakes there . In the latest journal , I said my father 's private insurance expired . He still can have an insurance from the government , which will cover the cost to some extent . Roy became nervous and thought that it was too late . He thought that Harold was responsible for this . Unfortunately , the weather was bad . . . Yesterday I went to play tennis , but I could n't play because it started rain , then my friend Marsha and I went to a cafe and waited for the rain to stop . I find you and I spend time navigating between the mystery and your taste . I can hardly find out the meaning from each word of it . `` Stop hiding ! `` , I told myself . However , starting now , I 've told myself that I must stop hiding . Just now , I realized that I was hiding in my imagination ( ? ) But I must stop hiding now ! It 's because I entered an online English conversation class named `` rarejob `` After I regained my self - confidence , I took part in a game against another university team . As for me , I 'm on Summer holiday starting today ( for 4days ) . I intend to attend here every day . Thanks ! ! When I j just started going to a university , I found my life comfortable . I saw life with simple eyes . I never thought everyone would be so kind to me and ready to help me anytime I had trouble , but this was not right . Only when you live far away your family , will you truly understand the feeling of being alone . I know I will never be alone because my family will always love and support me . They helped me get through my failures so that I would be successful in the future . Now I always make an effort to live well . I hope my folks will always be happy and I want them to know that I love them very much . However , it 's difficult to speak in English when I stay in Korea . I hope to improve my English skills thanks to this site and your help , ( which is very precious to me ) . I study things that are connected to English in my university . I 'll go to Osaka by Shinkansen bullet train to attend a meeting with other companies . I lived in Osaka until 2007 for nearly 6 years , so Osaka is like a second hometown . I have n't been to this site for a long time . So I got an agreement with my friend that we will study hard without thinking about anything else . A person who I met on Lang8 contacted me on Skype when I had just woken up . But , my friend said to me `` hourly wages of 800 yen is very low ! `` I was emotional , and I quit my part - time employment . At first , I was worried . Besides , he seems to change the bike into a good design as well . I wonder if he could transform it completely While the Jews were out of Israel , Arabs called Palestinians moved there . The Palestinians , of course , opposed this and attacked the new residents , and thus the strife began . I will study hard so that I can go to the university that I want to go . In school there is an English native teacher whose name is Sony . But recently I learned that 2010 will be the year of the Metal Tiger . Funny that Russian sites say it will be the year of the yellow metal Tiger and English sites write it will be the white Metal Tiger . Before the season started , I was looking forward to it . Actually , I 'm bad at using electronic things like that , but I can handle it so far ^ ^ There is no instruction bookwith it . Though it was a hard time , one thing I ca n't forget is that children were so cute and adorable . The minimum temperature here this winter was negative 33 degrees Celsius . Today , I bought The Little Prince . So scary You must know it 's length is 5000 kilometres . Most of it is unexplored . Young Pioneer means morals for the children . We were proud of it when we were young . We had to fight the tired body , fight with the strong sun , fight with the lack of water , fight with the dangers of the mountain . Diese Woche hatte ich viel ( Unterricht in Deutsch . ) besser : Deutschunterricht Whether we like it or not , inequality is a fundamental concept in a free economy . To make the point clear , we thought about its opposite . In perfectly equal world , what would happen ? We can not possess anything , be free to choose our clothes , or even what to eat . The only thing we can do is to adapt ourselves to it to live a good quality of life . However , every girl likes fancy smell such as CHANEL NO . 5 . I prefer flowerscent perfume such as sunflower or rose . I wound my bath towl around my waist , when I was changing my clothes to go to the pool . Does this actress think she can laugh all the way to the bank by riding on a millionaire 's cocktail ( coattail ) ? I go to the university in Nagoya . I also study Chinese in my university I watched `` Lie to me `` on DVD . They will bloom at 8th , the weather news said . I think that it is difficult to grant a dream . In my opinion , nothing is not perfect . Because we can get delicious food such as matsutake ( a kind of expensive mushroom ) , kaki ( a kind of fruit ) , kuri ( chestnut ) , nashi ( Japanese pear ) , sanma ( pike fish ) and so on , ( Is it strange for foreigners ? ) It 's my favorite : - D This year , I will dress neatly X - ( I need to take the TOEFl test in February to apply for graduate school , and I 'm looking for someone who can check my writing . `` I need to read through academic readings so fast ! ! `` As a result , even though I sped up , there were about three questions left . The second part was listening , which was also tough because some lectures were not subjects that I was familiar with , such as history . Although a guide might ask us how the museum was and we might be forced to say , that it was wonderful even we actually did n't understand its value . There is even a small museum in my home town . They are exhibiting some bowls and paints that look like graffiti . ( two sentences ) because I do n't have money and there is no food shop near the / my office . Because of the car which was ahead of my car was moving very slowly , I passed it at high speed . I was caught and lost 3 point ( if you do n't have penalties , you can keep 3 full points ) . After I was caught by the police , I made my way back to the ( driving ) school , but I was not happy . But , the relationships between the main characters are so complicated . Peter 's family is brilliantly hilarious , especially Stewie . At first , I went to Kumamoto and I ate Kumamoto ramen . It was so delicious that I ordered seconds . The different colored tree leaves are very beautiful at the back of the pond in autumn . So I 'm learning English . Its pronunciation is very difficult , but I undertand that there are days when I will want to learn more and more . I called my colleague in to show some sentences . I 'm leaning Italian and English . I came in italia to study arts , but I need English . Becouse in school , everyone speak in English . I ca n't speak English at all . Can you imagine who performs without an actual instrument ? Air Guitarists had to perform a 60 - second song of their own choice and pretend to play rock or heavy metal . Is the day that I can understand English news programs without subtitles truly coming ? This is an article I heard from my friend Tyler ~ haha hope he does n't mind , I just tried to listen to it very carefully and transcribe it . Music is my favorite thing . I 'm glad to hear his voice . He has two children and bought a new house . Then , he said , `` Mandy , in the future , you should study abroad and know the world . `` I saw some figures like Madonna , Sharon Stone , and Brad pitt and so on . Today , _ some of my classmates said that they think every country should close every nuclear power station , _ but I do not think so . Although I am in New Zealand where there are no nuclear power stations , I think nuclear power stations help people a lot , for example , nuclear power stations provide people with electricity , and I think that is good . On the other hand , _ when nuclear power stations fall down , that will make a big problem for the world . Independence Day in Mexico was yesterday , September 16th , and as usual we celebrated this date with the independence shout , eating `` pozole `` , a Mexican food , prepared with corn and chicken , drinking tequila and listening to `` mariachis `` . At least , this is the most traditional way to celebrate this day . Even though this region is one of the oldest places because it is the origin of civilization ( when Mesoamerica joined with Mesopotamia ) , Mexico is a relatively new country , with just two centuries since having been founded as a nation . Second - hand smoking is really disgusting for non smokers . But what are other habits or lifestyles that are responsible for health costs ? I had 4 days off last week and I went to Vancouver with one of my friends . We stayed in the Youth Hostel and visited UBC ( University of British Columbia ) , Nitobe Memorial Japanese Garden , Tower Beach , Kitsilano , Gastown and Lookout . I did n't go to Stanley Park and visit my acquaintance who I met 20 years ago in Vancouver . It has a dignified elegance supported by its perfect shape and white walls . Those professional players had an impact on me ! The logo is of a very strange type and particular color compared to usual . It has various contents named podcast , such as news , comedies and documentaries . I 've studied English ever since I was a junior high school student , but I ca n't write , speak , or listen to English well . In the balcony , people can not only sit on the floor but can also lie down . I heard that listening to the classical music while lying down is too good for words . It 's raining today . I am not very busy at work today , so I have a short bit of time to go to Starbucks for a break , and I found this branch has many foreigners , especially many foreigners who need one - to - one Chinese conversation to learn Chinese converstion . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closet . I think most of the people in Japan will say `` I 'm sorry `` when you are asked to do something . Japanese people and Chinese people do n't have the hugging manner . She is my family and important to me . But , everybody ! Do you remember one of my post / journal ? It 's okay . I 've been learning English for 10 years in school , but my language skills are still at a low level . I want to practice English to use it well . The hardest for me is the grammar , My wife cooked lunch . I know that the vocabulary and the letters are obviously different ! But I want to think about not the visible surface of the languages , but the concepts or something like that . She sent an e - mail to me on Monday morning when she arrived at her flat to get her notebook PC before going to university . I will try to change my attitude ! ( It 's the first time I went to that restaurant ) They are all coming tomorrow . I am sure he will be nervous there for a while . to fashion , certain styles look better on some girls than they do on others . I like nearly all color clothing except red , but I do n't know why . I prefer the flashy things . So I like many kinds of jewelry . My favorite pieces of jewelry are earrings . so I want to go abroad . Someone tell me about a good place in a foreign country I could n't sleep well last night because I have a cough and He was named a member as a goal - keeper . He has many experiences . We alighted from the train ( monorail ? ) at the last stop and walked from beach side to first station while talking about a lot of things . Unfortunately , I was laid off at the end of 2008 . The staff began to explain it to me , and then somehow I turned my head toward my left side . Today , I ate takoyaki ( octopus dumpling ) . My son plays in the Tamagawa river , small forest and the park . Well I will try to write with capital letters in the beginning of a sentences , because I always forget about them , and the teachers always tell me they do n't understand why I do that . . . Today I cleaned up a little my desk , but it 's all messy again , because I started to make a drawing for my grandmother before she returns to her country . . . We set up our tent on the coast of a small bay , near a great cliff named Scriper . It was a very out - of - way place . ( is it correct ? It is a place that is very difficult to reach ) . Majestic Baikal was amazing . The water surface was like a mirror , and astounding silence was broken by gulls ' cry , trees ' rustling and rote . But we were really mistaken ! Dropping a tourist group including ten people , and they camped at a distance of fifty meters from our tent . They did not look like inadequate , noisy or problem , but I suspected that something was wrong when saw among them things several boxes with beer and vodka . We broke our camp , folded up the tent , packed all things into rucksacks and in spite of the sunset , went away to search new places . It was quite dificult and dangerous . PS : You can see photo from summit of Scriper . It was very nice , sweet , juicy and fruity : ) Today , I got last month 's mobile phone bill . ForTo all surfers , surfing is dengearous . dangerous I decide to pay more atenntion attention to my board . Whether we can ring up sales or not depends on sales in the Tokyo branch office organized by only 20 people . Now we 're focusing on direct mail marketing , though that might be junk mail for many people . One was about Budden the other was about the brain . I need to go out later to buy a shirt for a wedding party tomorrow . Here in Hawaii , I go to a language school on weekdays and I go there by bus . It normally takes 35 minutes to get there but it sometimes takes 45 minutes . . . I want to improve my English in half a year , but this seems like a difficult task . So I thought that this site could help my English , right ? I could answer the questions but listening examination was bad . . . I could n't answer . . I wonder if you could do me a favour . But her speech was so boring that I fell asleep . It said : `` Congratulations you have passed the exam . I do n't remember about the details of our conversation , but I think he said so . I would often wonder what the difference between the two them is since then . Secondly , I will go to library to review my lessons and do some IELT tests and I want to go to foundation in April . and my budget is limited , I will have to also limit my destinations . The client is very kind and and passionate . I 'd like to return a the favor to him someday . It is dizzyingly hot . I 'm now studying English and Japanese . Does anyone want to be my friend ? I like English , writing , speaking ! ! If the wind is too strong , I ca n't go surfing . I had a very wonderful day . As I would like to be better at English , I started writing a diary in English . Now I specialize in communication studies , and study English and Chinese . It seemed my heart is still living in Shanghai , I must have lost something , something I dare not to face , or I just ca n't face myself , my weakness . I will tell everyone about a creature that makes Japanese people feel it 's summer . Its creature is called cicada . Japanese people feel summer when hearing cicada 's screaming . By the way , Some carcasses of cicada are scattered around the entryway of my apatment house . I thought this cicada was already dead , so I poked it with tip of my foot . I want to ask everyone . It is very interesting to learn English , and I think that I can learn to speak it very well ! Of course , I like to travel around Japan too . I went to Hiroshima last month , and I met an Australian friend and got drunk on good sake . In English class , the English teacher taught students the expression , `` Graveyard shift . `` I thought it was an interesting expression , because there is not an expression like that in Japanese . Firstly , there is a growing awareness that using public transportation instead of driving a car leads to the reduction of green house gases because cars produce more green house gases than trains or buses . My brother helped me work this morning . I want to learn English with the help of lang - 8 . Unfortunately , my work does not require English . The other way is to think about where it came from , and try to figure it out . It 's like unbelievable medicine , which absolutely heals my body and soul . Is it natural to feel like that or am I too shy about speaking a foreign language ? In China , students have endless exams to pass along our lives , even after ( maybe ) you have entered society . How about your countries ? my use of English in the public examination , My life became somber . These days we are unable to see each other . I always feel I 'm still not familiar with calculating the money especially when I shop at a mall here in Durban city because this country has decimal money and most likely because I have not stayed so long to calculate money smoothly and Japanese has a tendency of keeping other people from waiting so long behind a line . It is very fun , and I will have an exciting experience . I feel that making ceramics is a kind of physical labor . However , You 'll get tired of it if you imagine that you put it into the mouth , chew and then swallow it as many as 30 times repeatedly . We may be able to use it to decrease the intake of unhealthy food and drugs . They feel ashamed if they are found wetting their pants . thanks for teaching me correct English ! I , am a really short tempered person . and I try to speak in English with my friends and I restarted to communicate in English conversation class in my university . My major is Management . if I keep on studying English hard , I believe I can be a person who can speak good English Until I go there , I will do my best with presentation ! ! I took off my shoes at the porch and sat at the kind of table which can be seen at many korean restaurants . It tasted good . Although I say that I will save money , I 'm actually going to spend a part of the bonus on a handbag , a pair of shoes , accessories and so on . Many trains will be suspended tomorrow , so many people ca n't go to ( get to ) their schools or offices ; of course I ca n't either . First , great teachers have a passion for their job . I had time to go to see a movie called , ' Pirates of the Carribean 4 ' . It was n't as interesting as I 'd expected , because it was n't much different than the first two films ( movies ) . She told me that I have an interview change to her department as an executive assistant . It 's a big company , but the salary is not high . What else do we need to do ! ? The act prevents my body from getting cold . I want to return to my normal life soon . Before their concerts , they pronounce the members of the day , and fans can choose the day their own favorite musician plays . I have heard that there are some fans coming to hall not to listening music but to watch their dance . My friend gave me a book titled `` The Authoritative Calvin and Hobbes `` I was so surprised to hear that when he first attended the law class in graduate school ( He attended Univ . Also I think those foods must be attractive to people , making people want those foods . Some of my friends were in a bad mood , so we went to a lounge Today was very interesting and fun ! The shape of UK I went there to get my bicycle yesterday . When I saw my bike , I was astonished because . . . . . . . . Before I came here , I thought `` If I live in the U . for a year , I will be really good english speaker . `` But I was wrong . I am surprised how difficult it is to learn other languages . So I was really disappointed in myself and kinda bored studying English . But Lang - 8 often encourages me to study it , because I see many other people who study other languages and may have similar feelings . I really like to correct foreign people 's English . I really like the way people act , american greasy foods , stupid cartoons . . . In Japan we have to follow certain social rules like showing politeness to people who have seniorityand giving many complements . a lot and This makes it extremely hard to be close with people who I meet for the first time . . . I think I ` m going to study a little bit but not the way the teacher told us because everybody studies in different ways so I ` m going to do what I feel like doing . I started studying Russian , and I 'm trying to improve my skill . Little typo on improve . My school is very small and almost all of the students are Japanese or Korean . I really want to talk with foreigners . I have watched a few . . . stories . . . . I want to make foreign friends I was thinking of it as a normal self - advertising website that claimed to help people greatly improve their English . Of course , thanks to today 's globalization , Japanese people have been getting more and more somewhat open - minded to the outside than ever before . Listening is different , because every day you watch BBC , CNN or varieties of English programs on TV , and automatically you will listen to the same word again and again . I quickly took off the headphones from my ears and tried to listen to her . She said something but I could n't catch her words because my heartbeat was louder than her voice or ( perhaps ) because of my poor Japanese listening ability . And , I was a just foolish Ossan who did n't know that I was on the express train and needed to pay or buy not only the normal ticket from Osaka to Kyoto but the express ticket too . And that mainland China stops its boring threat to Taiwan ! ! ! ! Separated family members gather and celebrate this holiday together , enjoying delicious foods on this day . I decided to use this site because I wanted to improve my English writing skills . I feel that it will be busy in our home this summer . First of all , my English teacher recommended them to improve my English . Most Japanese people do n't know what `` premonition `` means , but we use `` shuffle `` as Japanese word . There are two types of digital cameras . I really had fun and thought `` I must study English harder `` so I will write a diary from now on . I definitely will NEVER forget this summer memory . I like that I feel the cold in winter at morning . I strongly recommend this book . ( this sounds better ) I especially loved that the process throughout which the King 's trauma was gradually healed was very carefully described . I usually feel down on sundays at midnight ( it 's already Monday . . . ) , but I am still in a good mood . Anyway today my niece ( my old sister 's daughter ) came to my house and I was asked to keep an eye on her for a couple hours Since she brought the movie Totoro from her house , which is a very popular anime film in Japan , we watched it together . For some reason I want to post a picture of the main character on my account . The most scary roller coaster is the `` White Cyclone `` without a doubt . And English is the most popular language . are there any grammatical error ? I ran 100 meters in 11 . 2 seconds . Typhoon Aere , which was the strongest typhoon this year , has passed us by . When will the next typhoon appear ? Most of you have not experienced a typhoon , right ? So we asked a staff member in the booth . The rainy season has started . Thanks to the fan , I can be comfortable . I grilled an eggplant and meat with katakuriko ( potato starch ) . I added a drop of chinese soy sauce to the eggplant . Jesus , please attract me more and more . My heart is your throne . She emphasized `` The beauty can be marked , and it 's the easiest way to get love . `` From last sunday , it has kept raining for a whole week ! Cold , bleak , and bitter are OR would be the best words to discribe the terrible weather . I find what my goal is and what I should pursue . I have to study grammar from the beginning . definitely the one I would recommend . Anyway , most of the movies on the above list are not that thought provoking You say , `` Japan is the best country `` ? It was fresh in a sense . The wall was gray , the humidity was excessive . Hahahahahahahaha ! ! part - time job . because our teacher absence . restaurant together , we drinking and eating there . So as the punishment , I drank a bottle of Japanese liquor . Guys , who can tell me how to leave a message on other people 's page in Lang - 8 . Next comes three years of middle school which is mandatory . That 's because I 'm foreign to the different school system . I was walking around the `` Wakayama jyo `` for about 20 minutes . Because of the butterfly stroke , I 'm losing interest in swimming . I was in a hurry , but I did n't understand this sentence , `` Do n't post to Twitter . `` In the end , I did n't publish it . I 've been taught English by a filipino . , Actually , making holes is boring work . But It looks like she is looking forward to her two granddaughters growing up . So , I went to see my tutor on Monday to discuss the project ( Design A Train schedule Based On Baidu API ) . Now I have chosen to continute my Computer studies to become a web designer ( not really sure . . . ) and the day after tomorrow I will meet with my agent to determine my major . What should I do to in order to be more skilful in Japan ? In fall , there is a junior college festival . Unfortunately I have a little opportunity to speak and write English . I am taking care of my cousin . and I drank lots of alcohol . but I ca n't stop drinking ( alcohol ) ! XD Next time , I 'll take care when having alcohol . Especially , Italy . I want to talk about my unusual experience of a traffic jam . I guess you wo n't often see a main road where there are many empty cars in the peek hours . But that time , all the drivers left their cars and opened their doors , since the main road would be closed for 2 to 4 hours . But today 's weather is bad . I 'm dissapointed , that 's why I did n't go shopping yesterday . in fact , nowadays I 'm studying english because my major is business administration , so I need to study english and learn how to write and speak in english . She was adorable girl so I thought , `` I want baby , it is about time to have baby . `` I want to talk with them if I have an opportunity . I felt sick before long . I want to leave for Toronto soon , but I have a lot to prepare for a new life over there . Writing Practice 1 Despite how I know they can benefit me , I do n't have enough time to study details . Besides , I must spend more time improving my poor English . Then are ' Can I go home ? ' or ' Can I try this ? ' , all unnatural expressions ? Then I rinse them with water for a couple of minutes before placing everything , including the bowl , up on the side . Next , I deal with bigger ones like round - bottomed pans and salad bowls . The temperature was less than 0 ! ! Today , I woke up early ( in the morning ) and I baked bread . Breakfast was very good , because bread was very hot ! ! I greatly appreciate everyone who helped me with correcting my writing . Because Argentina 's team is so strong team this year that most soccer fans rate them number one . The lover of the protagonist died because of failure of abortion which was not desired by her . Moreover , the friend of the protagonist felt sad due to lack of understanding by adults and finally he committed suicide . . Almost of all of them were arranged like alternative rock music . The air was freezing cold and the sky was crystal clear . But there are very few because almost all internship events have already finished their applications . I went to my grandmothers house and saw my relatives . Beef tongue is especially delicious . I noticed the information written on the board . To complete this course , I have to take some English classes for honing speaking and writing skills . However , the atmosphere is good in this class and the instructor was nice and had a sense of humor . I am looking forward to next class and talking with classmates in English . A woman is introducing extraneous matters into the debates . my hobby is taking picture , they are extremely beautiful ~ Thanks for inviting me as a friend Recently , I have been busy but I want to introduce something to you ! ! , The Japanese economy is getting worse and worse now . Usually I hate to go to there because I am tone - deaf , but my friends really want to go , so we did . I will exercise tomorrow . I will do Yoga and stretch . This is my first diary on this site . ( Maybe , this is not like a diary . ) I think these are good for improving speaking and hearing skills , I will write this diary every weekday that I can , so please correct my diary . That bothers me , because I have plans to travel with my family at the end of year . We knew each others ' new personalities , thinking and own past stories etc . . I think that if you especially enjoy your recreational times , you have to do something your job or you have to do regularly . Because if you lazy in your job , do n't you feel lack of pride ? ? My Girlfriend and I That is not allowed in our country . Actaully it 's not just raining . . but after a while our mood became natural . We were talking about each other and had a lot of things in common . IKENOBO is an old and traditional style / art / tradition of flower arranging in Japan . For example , the life of Thomas Edison , Madame Curie , Hideyo Noguchi . . . ( Nogichi is famous only in Japan ? ) . Therefore , it is hard to imagine how they look to us modern people . You may lose everything in the blink of an eye . Today I screwed up the midterms . I want to go to Italy : ) The touch of my hands , and the touch of your hands too , will never be limited . That is the reason behind my interest in exploring the limits of control , the reason why I am going to move to London at ( or after ) 18 years , that 's why I have sex in my room while my family is sleeping or have my hip bone tattooed with a colourful dragonfly . Kindly , she accepted it & made a dish which included Kimchi . Soon I asked a person on duty and I found out that this failure would continue until evening due to construction . Well , I 'm just starting to learn this language . To tell you the truth I 'd like to learn japanese , but I thought it would be better to `` start from the beginning `` . Are there ramen restaurants in your country ? Of course , we need to pay for the basic charge , but it is n't so pricey . So we Japanese have a party called a `` Bounenkai . `` I played a sport . Actually I 've been learning English since I was in first grade at elementary school . I 've been learning it for more than 10 years , but I 'm still horrible at speaking it . These days , I am watching the Toy Story movie to get English experssions such as , ' is mom losing her marbles ? ' . . . The shop keeper recommended the point card ( PONTA in Lorson ) . I am interested in several point cards , so I applied for the point cards that I wanted obtain . It is organized into Reading , Listening , Speaking , and Writing sections . I watched the concert in the church . Their music was truly matching . I watched a movie called `` In her shoes `` last night and remembered that I wanted to read poems by E . E . Cummings . My plan ( on ) this weekend . I met them when I worked in the military service . So I am extremely excited to meet my friend who came from New Zealand . After our meal , we will go to a coffee shop to talk about lots of things . Of course , I also have to meet my girlfriend this weekend , but it is not because she is going to work tomorrow morning , so we are going to weekend about this weekend 's events . Have a nice weekend , everybody . But , we shared a large lobster since we could n't waste the good opportunity . Since entering high school , I often get migraines She cleans often and cooks delicious meals , My girlfriend called me this morning before I got up just to tell me it ` s snowing outside . I think that it is more convenient for us to have a car in such a situation . I 'm writing in a diary for the first time in my life , Yes , I love books , and in particular old books . This book is about complex analysis of a field of mathematics . It is not very easy to understand , because it left several parts of the demostration to the reader , or it assumes that the reader knows things that nowadays are n't taught in school . I 'm going to study abroad in AUS from March to September . I 'm majoring in International Communication at the university and I study English and cultures in class . I 'll always challenge myself to speak English and to get accustomed to my new surroundings as soon as possible . If you have an e - mail address , I 'd be glad to receive your mail . My e - mail address is - - - - - - - . My hobby is to make sweets . However , Cantonese , which is widely used by people in Guangdong Provice , Hong Kong , Macao and nearby regions , is definitely distinct from what is generally refered to as a mother tongue spoken by one or several ethnic groups . Instead , in my view , Cantonese is a competing force against Mandarin , mainly due to its popularity and dominance in the most well - off areas in China . and that would be the reason that the central authority is becoming anxious . Cantonese people surely take pride in the special dialect they own , because Cantonese - speaking regions are a statement of wealth , development and fast growth . But in the neighborhoodthere is also the ownner 's other homestay , which is the homestay of other students . I have two fears . So many people say that . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese straight away ( that was the main purpose of my joining to learn a bit of Japanese and to polish my English ) . . . . Yesterday I bought a belt as a first experience . What 's terrible about custom house ? Today , I began keeping a diary on Lang - 8 . Please contact me , if you like . My department is the School of International Liberal Studies . Yesterday my stomach hurt very badly . I felt better and worse . It did not take Dad and Mom , only myself . My good friend was not around me , but I was told my friend was angry from the close encounter . I went to Tokyo in Simokitazawa with my friend . The appearance of someone like him has been expected for many years , so people tend to have excessive expectations of his policy , action and statements . He may be required to handle some political situations with severity . . . . Investment trusts ( the indexical funds ) are worth less day by day , Of course I hope to return to the level before subprime occurred . I was exhausted that I just I bought something on the internet . I think they 're difficult ! When I spoke to my American friend , I am speaking English but Jpanese words are always spinning in my head and they would even slip out of my mouth and cause some embarrassments . . There 's no time to have breakfast . . I know a lot of words and grammar but it is a little bit different to speak freely . sometimes I ca n't stand my voice and pronunciation . I felt so excited that I could n't control my tears . I could do nothing but say thank you , my dear friends . He has searched , looking not only for Japanese cuisines but also the spirit of Japanese dishes . In this sense , I like it . The Artist is Maurice Brazil Prendergast . I do n't know if it 's valuable * * * * * The other is a wooden escalator near Antwerp Cathedral . ( I forgot what name it was . ) Today is national foundation day in Japan . So today is a holiday . Recently , the weather is bad . I do n't have much money , so I ca n't go so far , but at least I 'll be able to visit `` Amano Hashidate `` , which is one of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I have to reply to my German Professor for correcting my paper . I attached corrected text file with this e - mail . Dog meat is a part of the traditional Korean food culture . Next time when I see an opportunity , I would like to tell them about our recommended places . I am still waiting for her answer . . . It was so comfortable ! ! I thought it was a interesting system and I _ can use it for free . She is my best friend on my university _ days . Moreover I should improve my speech again and again , lately it 's so cold ! And you must set it concretely , which means the plan must include a numerical target . The more concrete it is , the better the result will be . By the way , this morning , I received an e - mail from the Education Department in the company where I work . I 'll do my best to do well in the exam though it 's quite late to start practicing . I 'm a 21 year old Japanese girl . Today I 'll once again write sentences to help me incorportate new idioms and words into my vocabulary . hatchet > A man cut a smalltree with his ~ . Although , thoughts of a blissful family life might change a person 's perspective . Do you speak foreign languages ? Why are you going to university ? It is similar to Hungarian in many ways , but nately unfortunately differences are frequent , too . Miyazaki Gorou received bad ratings on his first work , Gedo Senki even though it was clearly good . he is an Architect in the next province . I felt angry , and I did n't communicate with him . he is by himself and I have a good family . It is neither a typical family , nor romantic movie , but it contains elements from both . The dog slowly transforms their views and opinions about the most important things , like taking responsibilities for something , planning babies , helping to find the balance between the careers , the family and themselves , etc . But most importantly , it is really funny : ) Hello friends ! ! ! On Saturday I climbed up on the Eureka Skydeck . I entered the showroom and took photos , then I climbed up on one of the Ferraris , my dream is realised ! ! On Sunday I went to Philip Island for to see the little penguins . I saw the little penguins come in from the sea at night , and I saw the penguins walking on the beach to there house . I love the natural sights in Tibet - the animals , people , mountains , lakes and temples make the perfectly harmonious photograph , that 's where I want to live in the future . This year , after BEC exam , I decided go to Tibet . It 's really a long time to wait for the perfect time point , maybe October , for around 14 days . It will be 55 hours by train . I will see the transition from city to village , and eventually to altiplano . My training always starts at 8 a . m . I live not so far from the place where I train , but nevertheless I was almost late . The first prize was a digital camera ! ! I ate food already even though I did n't feel hungry . It is important to eat food for breakfast . How are you ? ! The preoccupations of an ordinary man are to make sure he wakes up in time to arrive at school / job , to earn his living and in his free time , to watch a movie or get out to his friends . Thank you for always teaching me various things ! Ohh no , I did n't know that they do n't have any homepages apart from geocities Japan . . . I always remembered that a girl once told me : `` When I saw you at first , I thought you were a very serious teacher , but when you started teaching us , I saw / found that you are very gentle . `` For example , last month I 'd read `` Alice in the Wonderland `` by Lewis Carrol . I thought , `` These words are used in formal writing . `` We waited 90 minutes for Tower of Terror , but we enjoyed the time because we could look at many attractive objects that had the story on the way . Of course , Tower of Terror was so fantastic ! ! I loved the scenery too . Tokyo Disney Sea has American , Arabian and European streets . I especially liked the European street , I felt as if I were in Europe . I spent a lovely day ! I did n't ask further ; therefore , I did n't know exactly what in the picture needed to be modified . When I went to the hospital , a nurse said to me : `` Lets check your body temperature `` , and she found that my temperature was 37 . 8 , so she told me not to take a medical exam today . It was very interesting to learn about the future relationship between Russia and Britain . A set of unimaginable elements occurred around me , destroying many grateful memories , harmonious relationships , as well as laughter , which all attribute to a benefit that is not worth mentioning at all . I feel complicated like a kite having lost her line , like a boat in the darkness having lost his direction , like a lion having lost his temper . . . . . . They have a lot of beautiful parks , fashionable street and shops and classical buildings which made me happy ! I konwknow new friends from a cloud called the heart . She lost her husband three and half years ago . I had gone to her house to see her occasionally when I was a high school student . However , I ca n't do it easily now . I do n't mind what cuisine it is . I was wearing ugg boots and as you know , they easily get soaked so I had to walk very carefully till I got to work . After I finished opening the bar , I tried to order some food because I was starving . But sadly , the restaurant could not deliver food because of the frozen road due to the heavy snow . Ok , let 's do something . Recently , I ` m studying at the Goldsmiths university in London . I need to be slim ( especially my waist ) because I have to select clothes that can be wore from my closet every morning . to return to the topic , how are they able to round their hips so fast like that ? ? In America ? Recently I ca n't play baseball because of my injury . I 'm busy studying , so I ca n't show myself . I heard that Christmas Island has nothing at all . I want to go Sentimental Journey alone in Island . I want to improve my English , so I joined in this activity . There is no special topic every time . She really likes talkng , that 's why I always ca n't get a word in edgewise . At first , he pronounced one of four words , `` very `` , `` berry `` , `` velly `` or `` belly `` . They are also cute even though they are Mexican men ! Steve Jobs announced this morning that the new iPhone is going to be launched onJune 24th . The cat who lives around my house had five new babies . I feel tired at after work . . . . He played a guitar and we made a song . So I will enjoy my writing from today . My brother never gets used to get up so early . I 'm a third year university student and I have to face job hunting from this spring . I have to thank this site and you for helping me to improve my English skills . Maybe , that 's because my friend came to my home yesterday . We ended up doing an all - nighter . My friend is very funny . How does she think about me ? Questions about a short sentence pt . 4 Fortunately , she loves English books and reading them to her will be useful for me too . And when it comes to speaking , French people are also tempted to pronounce in the same way that they would do in their native language . My major is English . tenant - resident restore - fix - repair Every time I speak English I think , `` which words ( phrases ) should I use ? `` I want to understand these little differences . Somebody can read my English and correct it ! It 's really amazing . : ) I want to say thank you directly to people who read this diary if I can . Many apple and grape trees , and rice fields . . . ( a little boring . . . but I like this town . I studied English at school ( junior high school , high school and University ) , The movie 's title is `` The World of GOLDEN EGGS `` . Both of us were a little uneasy . So it was difficult and boring . Both were woolen garments . One was a light orange skirt and a jacket ; the other one was a violet dress . When I saw my mother brushing her shoeson the porch , I felt thankful to God that my mother is alive andin good health . And it 's a new opportunity for me to study my english * - * ( ( I know , my english is n't good ) ) It was very hot and humid . I had been running . I had been running for 40min around my house . However , I found all the girls who I knew were boring , so finally I decided to ask her . I am SO busy this week that I 'm close to exploding ! ! I want to know why the vacation ended so quickly . . . . Therefore I went to barbershop . It was destiny ! ! I was going to a Sushi restaurant for lunch with my wife . language exchange Taipei I now live in Taipei I would like to find a langauge exchange to help with my English I could n't run in the hallway any more ! It 's also painful , especially the toes . I have n't decided which country yet . And I will make a plan for a trip with my family next year . My dream is to travel around the world with my family . We were going to play bowling , but we could n't because there were lots of people . I sincerely respect computer programers and PC technicians . yesterday , I had a conscription examination , I am very nervous , about whether or not I will succeed She was having a small conversation with another passenger next to her . I think the most challanging thing in life is negative feelings towards others or things . If a person always thinks positive , he would be happier and healthier . maybe it will not take effect that fast , but in the long run , after analysis and thinking it over , I may behave more positive next time when a similar challange attacks me again . I remember someone once said , do n't spend a second to think of those who make you unhappy . hi , I am newly registered on Lang 8 . my master 's degree in teaching Chinese as an second language . I need to prepare everything and be careful takling with people but I am a sincere person I do n't want to a liar lol . It seems I should describe about two jobs and also my business ( teaching Thai ) too . Later that day another acquaintance wants to find people for his business too . There , every summer a few old people die of heat stroke . Yesterday I had physical examination for this year . Hi everyone ! In this course , the teacher taught us how to use acrylic paint , but it gets dry very quickly and the final result is not as beautiful as if it would be done with oil paint . ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very briefly . When I was holding a class in this late afternoon , my son sent me a text ( / phone ? ) message , ( and ) said `` Shall we eat out this evening ? `` / `` How about eating out this evening for a change ? `` . We stood in a long line under the white snow because my son wanted to eat in a small restaurant . I came here with the hope that I could change myself . We relaxed and talked about their journey . That was a cockroach ! ! We were upset and tried to throw it out , but it was so fast , and hid behind a cooler . `` Something is And then the cockroach appeared from his pyjamas . I feel a little bit nervous . The cat lets them get on itself and goes to look for Mei , and they can find her . Hanami is like you go to parks or somewhere with your friends or colleagues to watch cherry blossoms . I went for Hanami the day before yesterday and played UNO with my friends . On the other hand , the full - blooming cherry blossoms were really beuatiful ! ! ! And I beleve that to be in contact with students who are learning Mandarin is a good start . There are too many things to fix ; it is more than I can bear . I feel pretty pressured as I ca n't do better than other students . But I think that it is because I love Disney , especially Disney philosophy . In Japan , there 's a phrase like this with the same meaning ( translated ) . Hey my name is , , Sana From Palestine I 'm a student of English literature . I need Some help with my writing . . I will get enough pay even though it is at my house ! ! ! So many people encouraged me so I appreciate you guys . . . . It says `` Vivid separates in contrasting hues ( such as this fusion of tangerine and plum ) feel modern when accented with a structured purse and wood accessories . Does `` structured bag `` means the bag which is made of connected parts ? Lavoro a scuola . English speeches are really good to practise English with . Besides , it feels great to give a speech in front of many people . I always become extremely nervous though : P Anyway , the kids were lovely and a pleasure . On the way , I bought a mocha and sandwich at the Excesiol coffee shop . I wish to have many meetings through this diary . At least I must be conscious and careful of my bad habit of getting easily absorbed in Net - surfing . . . It is already passed midnight , so I am very sleepy : ( However , I can not go to bed yet as I have not finished today 's part of my studies . . . These days , business at our store is very slow , and it makes me I 'm not a beginner anymore , but I 'm not an expert either . I 'll go to Enoshima island with my friend by motorbike tomorrow . Enoshima island is located near Kamakura . Today I watched the Japanese story from VCD , The story was about a woman cartoonist who raised an orphaned cat named `` Sawa `` . I like Japanese Horror more anything else since it does n't need any explanation . do you know Ghibli movies ? Laputa is one of the best . ( I ca n't decide no . 1 ) which is your best ? Some people observed my class so I was a little nervous . Today 's lesson objective was & nbsp ; to get used to using the name of body parts such as nose , mouth , ear , and eye and to enjoy activities . I 'm in charge of a second grade class . I think there are some things to modify . Koushien is high school student 's Baseball competiton . In japan , almost all people know of some programs about language aired by NHK . In fact , many people skilled in foregin langage such as bilingual and trilingual people have made use of them . To follow in their footsteps , I have tried to watch the program . So , sometimes I fall behind [ ? ] I had wanted to practise writing English , Now I 'm writing an article in English . but I wanna keep writing for the sake of my English . It has been raining since last night . Soon the festival is going to end , so both flowers and tourists are few . However , all of it were rich and delicious . I often go to Jingu stadium to cheer for them . Today , I 'm writing this diary at the terrace of a starbucks cafe . I did n't see his races in the past because F1 is very difficult for me to understand . What was I wanted to go was Mikunopolis , which is the virtual idol Hatsune Miku 's concert at Anime Expo . I put some ' KAKIAGE ' on it . I want to introduce my character today . When my teacher entered the classroom , we sang a Teachers ' Day song for her . because up until yesterday we donate our holiday for this project . . . But I think some people are normal . The test is a conversation with a native English speaker for 15 minutes . because I want to study arts in foreign countries . I finished my homework very quickly bacause of the drama . . They had n't known their responsibility until the party finished . But it is not easy to decrease the welfare budget . Many countries are facing this ecomonic crisis . It 's been a long time since I last visited this site . Actually , When I was planning to visit South America , But I guess that mission has not been completed . Studying abroad is my important dream . My father has not stood up since 2 days ago . B : Do n't worry . I might love her , but I hardly know about her feelings and what she thinks about . Althogh she is really attractive . . . I 'm from the southern part of Korea , so I have n't seen much snow there . Last night , I watched `` Hairspray `` . Maybe I like his voice . Tonight , I 'm going to take part in a Ghost tour . Therefore , we can only imagine how life would be without schools . I saw Gundam Then my mother took me to buy some watermelon , because it was so cheap Sapporo shrine When I heard the news the prime minister did n't make an offering at Yasukuni shirine , I remembered Sapporo shrine . Sapporo shrine is a shrine in Hokkaido . I think this shrine is a park rather than a shrine . I live in Saga , Japan and I go to university in Fukuoka . I often watch movies and dramas with my mother . I thought it was some kind of a suspense movie , but it filled me with a warm feeling in my heart in the end and reminded me of my brother . Next day , my husband found an extra lock and attached it to the bike . To avoid intensive use of electricity during weekdays , the rest - days of our company have been changed from Saturday and Sunday to Thursday and Friday . So , today and tomorrow are my days off from work . Therefore , I went to a Public Library to borrow 9 books . I remember the library is full of books about Technology & Program , Geo & His . Also , Hong Kong 's Library lacks Audio Books . Thomas the steam engine is one of the most popular animation characters in Japan . It was held in a suburb of London with a lot of spectators . It is difficult to have a chance to watch and ride on steam engins in Japan . It 's very important and significant to keep the old items in good condition . lf you ride trains , you can see a lot of people using cellphones , Or if you are walking down the street , many people walk while using their cellphones . But thinking about a 9 / 11 - type attack , it seems to be difficult to abandon our weapons and arsenals . We 're forced to defend ourselves and our allies . And then , we would n't have to defend against , or deter any adversaries : P President Obama 's way of speaking is quite respectable . After graduating from the collage of pharmacy , I joined a Japanese pharmaceutical company . At that time , we had the dog ( attached picture of beagle ) who was a cute and smart boy . Because she is too loud to make me consider everything . There are a lot of pop up labels explaininghow themusic is nice . . . something like that . Thank you for reading that . It sounded like they were not native speakers of English . I am from Colima , Mexico and my first language is Spanish , so I hope that I can help you to learn Spanish . well if your answer is NO ! , I send you an invitation to come to Mexico so you can get to know this beatiful country . I met a friend who could spoke English and I said to her `` Could you give me some adivice on how to speak English fluently ? `` She siad `` Probably your English level is good but you do n't seem to speak English well so you should talk with a native person all the time . `` That was nice advice for me because I was thinking that I would try to talk with native person . Recently I have studied English at an English website . Nowadays , people face a series of problems surrounding the environment . We usually do the things we want to do but damaged the environment at the same time . I thought it 's very very useful and helpful . On Saturday morning , my friend bought breakfast for me . The movies were very interesting . It 's not broadcasted enough in Japan . Those photos are `` The old Hirosaki city library `` , `` The old touougijuku foreigner teacher 's house `` and `` Hirosaki castle . `` ( I forgot to writing this . But interpretation is very diffrent from speaking English . I bought a coffee . Wounded and broaken , I have been making bread for two years at home and it has been a fun and refreshing te for me . She just refuses them without giving them any chances . I was in charge of facilitating an English conversation club for beginners today . We have the class almost every week , and I often join it as a facilitator . I thought visual aid can help me facilitate the class , and I was also able to enjoy watching the video . I go to school . Before I photoshop an image to upload onto the web , I 'll finish the Coke , grab some fries , and write something here . However , what should have been an impressive exhibit of his gifts , became an embarrassing moment because he did n't understand what he was asked and he also made mistranslations . One of my favourite things about Japan is the cherry blossom season . However , they are only enjoyed fora week or so . The lifespan of them are very short and this , I think , makes cherry blossoms more special . I had a cherry blossom party with my friends today . I have to cook my own breakfast , lunch , & dinner . Yesterday , I drew graffiti on a public road near my home . Many , many kids drew graffiti with chalk . And I drew graffiti ( too ) ( . . . . Drawing on the road was very interesting . My first experience with Russian was not very good , because there is no appropriated practice material and all that remains in my mind when I read a title like `` Russian in 30 days `` is an extreme frustration of not having mastered all the thousand ways to decline . My poor English My major at University was English . Soon I will probably have a native English speaker friend . It had been a long time since I saw my friends . We had much to talk about . I had a long walk , went to Freshness Burger , listened to music that I like , let my mind drift back over random things , and tidied my stuff a bit . I was kind of thinking about what happened to me yesterday . I 'm not going to write about this in the diary but some thing special happened to me yesterday . I 'm going to get ready for tomorrow I have to specify cappacino or espresso or americano here . I want learn the english language . Because I was in a private educational institute , I could n't see the first half . At the beginning of the first half , Lee Jung soo scored the first goal . But , at the end of the second half , Greek players played really well . Although World Cup was held in another country , Korean people gathered in stadiums or big squares and cheered for Korean players . Congratulations , to all the people from Krasnodar ! I have found that before I submit the paper about nationalism to my prof , I must perform a presentation about sociological methodology in my seminar . That is more difficult than writing a paper ! There were so many participants . You can read a variety of topics which a bit tough to find in regular libraries . When I write , it 's okay but when I speak that is not okay . My English is broken by me when I talk . I 'm very happy that I have no class today because the typhoon is going to hit TAIWAN , and the authorities have decided to close the school and the company . The typhoon may even cause a serious disaster like a flood or a in it , but the pictures often come out blurry . I finished working early today . I then drank alcohol in a pub in front of Shizuoka station . Honorific expressions are useful in business . This summer holiday , my 11 - year - old male cousin came to my family , taking two references of grade 5 . The task to assist him to review his courses in grade 5 burdened on me naturally . When faced with my naughty cousin , I almost had no strategies . Although imposing is unwise , it is obviously effective especially when coping with such a naughty boy in a short time . I 'm very sorry Fukushima has become infamous for the accident at the Fukushima Daiichi nuclear plants . Because she likes to play pc game , Work using English in a Japanese company . I did not know there was a website which brings together so many different people . He was a professor of computer science and he was diagnosed as having an incurable cancer at my age . Because the brick walls are there to stop the people who do n't want something badly enough . I think it 's a very useful tool to learn foreign languages because whererever I am , if I 'm in the situation where I can use internet , I can talk to anyone all over the world . but weekdays I get home at about 9pm , so I searched for an online ( Skype ) English school . search . . . . How many school are there ? And now I 've found a very nice website for learning English : I 've already signed up , and now I 'm writing my self introduction on it . I subscribed to micro - blog on QQ , where I encountered a famous saying that says you shold use your mobile phone , when it has n't been ringing for a while . Someone once said , `` Our life was made of 5 percent of surprise and the same amount of grief , the rest is normal things that you can not remember . `` My eyes glistened with tears . Like this diary , whenever I have time to teach . I am looking for beginner , intermediate and advanced persons . And tomorrow is May 1st . Now , I do n't speak English much . In japan , there is no opportunity to talk to anyone in English . I want to introduce the review in the book , and I 'm going to translate the review little by little . I am interested in ' Mizuhiki ' , which are colorful strings used for special occasions . Actually it was still raining outside when I was writing the sentence . Hi bbvoncrumb , thanks for your compliment . because I have low blood pressure and I 'm senstive to cold . If I can pass the test , I can go abroad and get training , take part in editing textbooks . . . We will eat local food and go shopping ! kkkk Because I will study hard for examination before it . He said , `` I slept yesterday without using a heater , in order to save electricity . I enjoy exchanging postcards with people in other countries . at that time , the appearance was just like a bamboo stick . Everyone will go somewhere even if it is expensive . I 'm writing in the early morning just after my job has ended . . . . Thank you for reading my diary . It 's fine today although some clouds sporadically adorn the blue sky . If you are allergic to pollen , I 'm sorry to say so . I do n't have hay fever , so I ca n't relate to the calamity . If you were in a quaint village where the roofs of the houses were thatched and you were surrounded by a number of beautiful cherry blossoms , even the word `` spectacular `` would n't suffice / be adequate . People revel in drinking and eating there and eventually grow into boisterous because of intoxications . I do n't know where this ' UNCOMFORTABLE ' feeling comes from . I can do it again , keep going ~ ~ ! ! we felt happy because we had been out of contact for a long time since we went to college . Hence , we talked about a lot of things including tiring things but finally , we both had a good state of mind . 4 What 's the difference between ' I have some questions for you ' and ' I have some questions to ask you ' ? Today , I came into the office as early as usual . I remember the time of my interview , during which my manager asked me whether I could get through difficulties or not , and my answer was definitely yes . However , I feel it 's a little difficult to do it now , because it 's very hard to get along well with my colleagues . This is my first time using Internet to learn language ! To type English with keyboard makes me crazy , 'cause choosing the word to describe the situation that I wanna express takes me a lot of time ! Today I have stronger pain than yesterday . While watching posted videos on Youtube , I am discouraged George Michael and Shogo Hamada . My laundry wo n't dry ! : ( Eating and drinking good food and wine with people is fun , what is more , the dinner is free . I appreciate having the chance to go to XXXschool and I hope that I do There are some things that we are not clear about , and then we have misunderstandings and it makes people who are affected by our mistake feel angry , or at least uncomfortable . We ca n't deny the dominance of England in comparison with the rest nations about aspects of life , but it should be clear in the way we call nations ' names . I have ever thought that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . And now , after taking a class on British culture , I know exactly the reason . Because , I did n't transfer money to bank ! I transfered money to bank a little while ago . . . I hope that my website 's data is n't deleted . . . Because the wine distributor arrived yesterday . By the way , it will be rainy tomorrow . I can write some sentences in English because I studied grammar in Japan , but I 'm not sure if it is natural or not . I prepared to go to college in a hassle , because the speed at which the lecture takes place is very fast . This is the reason why the lecturer illustrates with a monitor , not a blackboard . So I thought `` What 's that ! `` when I woke up this morning . Do you agree or disagree with the following statement ? Parents are the best teachers . However , we have n't decided the day when we will go yet . I do n't know why , but foreign senior men who appear on Japanese TV shows also speak ' OYAJI - GAG ' on the show . What was more , I did n't want to get off the bus even though I traveled from Barcelona to Madrid for 8 hours . I read the news recently and heard about the major earthquake that happened in Haiti and killed many people . I believe that my country make sure to help them . Cause he will back to Hong Kong and will not return in vacation . I think it begins with noting , then it finishes either with nothing . a freaky interview experience Now it wants to launch its own shops ; hence , it needs to recruit some store managers , sales persons , and marketing executives as well . HR called me yesterday and asked me if I was interested in the position ( marketing executive ) or not . However , this company has totally disappointed me . First , I filled out a sheet of personal information and a sheet of MARKETING questions - - freaky questions . The interviewer asked me to briefly introduce myself and asked me several questions . Thus , I asked how many brands they would launch soon and she was n't able to answer me . I also asked about the location of the new shop and she said she did n't know . That really surprised me because the new shop will be launched in the coming April . So I wanted to go to Kyoto in the morning for sightseeing . But my spine ached . . . therefore my motivation disappeared . Maybe today 'll be consumed by reading books . I 've had my chopsticks in my left hand when I had a meal 3 months ago . Left handers are excellent at feelings and inspirations compared to right handers . After that , we had a barbecue party to celebrate the successful completion . I come from Vietnam , a beautiful country . . Australia . It 's 23 . 14 and I 've just finished watching the first episode of Gilmore girls . I had classes every day during my first year at my university . S is composed of 99 members divided between 5 sections , this is my first diary . . I decided to improve my English and I need your help . Searching for the meaning of life , human - beings seldom think about the Working like a bee and then panting like a dog , this kind of lifestyle keeps bothering us people day to day without an end . It was during Happy Hour . I like beer , but I have n't drunk it in my home for about 2 years . part time job I went to my part time job . but I have to work to earn money . To what extent do you agree or diagree with this idea ? `` If the company sells their goods only on the internet , what would happen to people who cannnot use the computer ? In my country , Japan , many company use web - application systems . It is a smarting pain rather than just feeling a tingle . So my room became simple and ( refreshed ? ) She told me that she would quit teaching English school , because she was busy with raising two young children aged 9 and 7 years , and support her husband who would like to change his job , and also she wants to pursue her career in writing . I need to Travel around my country to finish my job . but I do n't have much opportunities to practise my oral english . I have started to snowboard since this year . This Sunday was a little bit different than usual because we had twelve visitors from Cambodia . When he asked her if she would do it , she willingly accepted his plan . Eventually , the plan proceeded this afternoon . After I became a grown - up , I 'm likely to be shy and nervous , so sometimes I lack aggressiveness . When I think about Arabian people and Latin people , even if they do n't know much about English grammar , they can speak and listen to English , and they do n't seem to be shy or nervous or hesitate . Japanese especially have a tendency to be silent , I think . In Japanese education , listening to what teachers or people say is a virture , so people wo n't say anything while someone is speaking . , and happy Halloween ! We plan to go drriving tomorrow , however a meeting time and our destination is not decided . She probably drinks beer in a pub . It was very sunny today , so I went to Osaka Castle Park to see cherry blossoms with my son . because everyday I think `` l 'm happy , l have all the things l want `` but sometimes l do n't want anything . So , I have to eat lunch alone ! I did n't eat breakfast yet . My English teacher recommended it to me , so I expected a lot before I watched it . But after a while , you will know it has been spiritually nourishing . I 'm not good at learning English . I 'm in my final year of the Dutch equivalent of high school . I still made my first entry here an English one , mostly because I have my first English final coming up and it just happens to be a writing assignment . And also because I just really enjoy writing in English , and I 'm kind of afraid to write in German for some reason . I 've never felt sick since I came to Australia , but at that time , just that particular day , I was n't fine . Last Monday , I met my former classmates . It was lovely day so we bought lunch and ate in the park . But I did an oral test , I do n't speak English very well , I do n't have the opportunity to talk in English , I need to find some way to train my conversation , but I do n't know where . TUTOR ! I 'm looking forward to seeing my lovely wife in yukata . You told me that you were taught Shakespeare with boredom when you were around 8 to 11 . I love TED and Steve Jobs ' speech in Stanford university . I appreciate learning 2 . 0 : - ) If you want a product cheeper than the retail price , it is very useful . Many Koreans use Coupang , Ticketmonster , Gurupon . . . Social commerce site have various kinds of coupons : shopping mall , beauty shop , hair shop , nail shop , massage shop , restaurant , cafe . . etc . . Because if I think too much , I ca n't continue . I am busy , so I am going to just try and try . I thought it must be a lie , but when I visited her apartment , I saw there were four bananas in the kitchen . so my daughter was eager to go out somewhere . Haneda airport was used mainly for domestic flights and connected to only 4 foreign airports in China and South Korea . The workers took off their shoes inside the building until it officially opened in order to keep it clean . Dear friends ! It is difficult to point out the errors in the Japanese sentences non - natives write . We read a recipe while we cooked `` tororo - conbu - nabe `` . It was a great success , though it is our first time cooking it . The part ' hoor ' sounds like ' whore ' in English ( sorry for the wording . . So the Englishman thought my mother often called her colleague a Englishman thought my mother called her colleague whore for sure . so my friend advised to write my journal in this site . Hmmmmm , I 've got to make new friends . I want to use the phrase , `` Get to the bottom of this `` . If you ca n't believe in yourself , just concentrate and keep up the effort . `` A Class of Art `` I will have an art class and I 'm going to go to near the port , and I will paint a picture of a fishing boat . Yesterday , I played soccer from early morning . I will join a soccer tournament in November . Please correct my English . When I drove my car , I was aware that the right side blinker of my car flashed faster than the left side blinker . I found that the bulb on the front right side blinker did n't work . It might be more expensive than fixing at a gas station . That reminds me of the death of princess Diana who died in Paris when she was followed by many paparazzi . Also , people misunderstand the important news of the world , since every time you see the television in Japan , there are so many programs with information of the star 's gossip ; because of such nonsense information , it reduces the time to show other serious news that is much more important for the world . By the gossip from the media , these fans can be confused of the difference of the image and behavior of such stars . My birthday is this Saturday . I think I did n't do well . : ( After the test , a cinematographer came to my school and gave a speech . there are n't a lot of days left till the World Cup ! If someone asks me `` how about writing an essay together about his From tomorrow I 'm gon na start to attend a English institute . He is Korean but at this moment lives in Japan and studies Spanish . I am going to visit Tokyo tomorrow as my sister is getting married . Although I have visited Tokyo once before , I am excited to go there again . A mail from a colleague was about my boss ' I chose chemistry while others chose geography , biology , physics , politics , or history . In my point of view , that is just because they all belong to science . In university , the physics class is much more difficult than before . I have thought that a person would be slimmer after finishing a series of difficult questions . We had a wonderful time in NYC and Washington , DC too . I thought that maybe they were born in ( came from ) Europe when I first listened to their music . I felt the European style in their music . Polular places for Hanami such as Ueno Koen are usually very noisy because of people talking , shouting , singing etc . I am Korean . Although I ca n't speak efficiently , I want to enjoy with friends who can speak English . The main topics of conversation were all around me , like seasons , alcohol , hobbies , gambling , etc . . . However , this experiment has encouraged me to learn English . Yesterday I took this picture because the flower was so beautiful . I mean that even though people prepare enough to achieve something they would like to get through successfully , when it counts , they get so nervous and worried and as a result they ca n't perform as they had thought they would be able to . It 's difficult to describe . The animation is so beautiful and I think it can be proud as a Japanese culture . So today , I was looking for good ways to practice my english in an interesting way - watching movies , chatting , and talking are very good ways are n't they ? Good night and thanks for reading , It is the most exciting MANGA I 've ever read . They sometimes make me angry , but not really because they 're my lovely dogs . But it 's lunch time soon ! Hong Kong was a very fun and lovely place . There were many different foods , it was very yummy , As I could try the flavors of several countries , it was very interensting and delicious . My colleague from the previous company ( I worked for ) called me last night . `` The competitors ca n't do it . `` because I 'm afraid I will need a lot of corrections . . Good morning from Thailand As soon as I got up , I washed my face and brushed my teeth . I 'm looking forward to that , someday . You also would n't hear the noise of cars on the road , because there were few cars at that time . Most of people went to work by bicycle . Their were green plants instead of high gray buildings . I suppose their strategy is very successful among this generation because of their reliance on the Internet . In addition , the laziness of their customers results in the offer of a delivery service . The older we get , the better we get at handling human relationships . And then I went to snowboard about twice a season . In the future after our dreams come true , I hope to travel overseas with her . I want to write the reason why I study English . Above all , I just stayed and traveled there without any consideration for my future , whether I could get a job , and so on . Belorussians almost never say `` Good morning . `` This term This term is so interesting . I am surprised that so many people are able to speak good Japanese which is said to be one of the most difficult languages in the world . My dog is called Rei . My dog is sleeping on the sofa . My first trip outside Taiwan was Japan when I was 13 . Earning money by myself is not unusual for me ; however , it 's really something to make money in a foreign language and a foreign country . When you want to rent equipment such as a camcorder , a lighting unit , a microphone , etc . , we ask you to register as a member of the Community Media Center . Something happened to me recently . I went to a japenese food restaurant with my boss yesterday . The G7 meeting ended and they decided to carry out some provision which has never been done before . I have to have my motorcycle looked at by the motorcycle shop 's employees . Yesterday , I was very excited because it was my first time Because there was already existing resources which I did not create . The strategy is how I should make use of the resources , thinking of priorities and limits themselves , I guess . But I realized the existence of copy right , and I gave it up . I asked an electronics store to repair my air conditioner . I want to know about Minnesota . Today I went to the club Camelot in Shibuya . I really think `` What a wonderful world `` every morning . Because it is intersting and fashion in the clothes . I would like to join the next party some day , as well . As I did n't know when to submit it , I asked my friend for the deadline . I really recommend this book . It 's second Sunday of May today . Now they 're keeping that secret just between them , their mother has not known that it 's Mother 's Day today . Each Ramen shop chef has his or her own recipe . There you can be satisfied with each bowl at a reasonable price . It rained yesterday , so I came home to my dorm by school bus . Also I think that we have been only learning formal sentences because when I talked to native English speakers , I could not understand anything they said even though they spoke slowly for me . Facing the failure of my College Entrance Examination , I felt depressed at first . Finally , I want to be rich . I feel sometimes it 's good to get away from electrical gadgets and doing something different from what I usually do . From today , I want to keep writing as many entries as possible anyway . Today 's picture is the most beautiful beach I visited in Taketomi island . and our body gets older . We need to take care for ourself such as eating a value food that is useful for the body . Even `` water `` seems to be important . I tried to communicate with British people . There are three pieces of news which I 'm worrying about : We have classes in her office over tea and cakes . Susan and Catherine are very American . She wanted to be a conductor of an orchestra when she was a high school student and she majored in music in college . They are Chiba Lotte Marines ( a Japanese Professional Baseball Team ) fans . I had took this method for the past six months , but I did not improve much . If you have a good method for learning English , can you share with me ? I am from Saudi Arabia . I joined this community site because one of my friends recommended it to me . it 's difficult , for me , writing in English daily . Anyway I had a good day . The store is very big , and I was so excited about shopping . time and I also forgot that I came there from the other side . Am I your daughter ? `` My parents laughed . Do you remember ? `` The assistants laughed too . When I was growing up , my parents often tell me about / remind me about this thing , and we laugh about it . I 'm getting better recently . Then I wondered why all of girls who you kissed were very surprised , when they looked at my face . In the world , there are many people that commit suicide . Maybe they have many different reasons . People always do something they are unlikely to do but they must do . People always do something bad for themself but they still do it . I think my smoking is the same with those people . I want to make foreign friends ! ! ! I 'm enjoying 1 Litre of Tears now . Yesterday I stopped by some Indian - curry restaurant to have lunch . So I encourage myself . I 'm learning Jazz dancing from 4 years ago and I 'll try to do yoga and belly dancing this year ! sun . Meanwhile , my boys worked very hard . They cleaned at the bottom of the mountain . True or False ? We try to gather audience , but only a few people come to our show . Like most of the Chinese students , I have been learning English for a long time and improving it by taking various language exams . It should be after my Japanese language proficiency test level 1 and earlier than my 1 - year - exchange in Japan next year . To recite all of those vocabulary and pick up English writing , I have decided to start writing dairy on Lang - 8 once again and I hope I will do it longer this time . I am learning some words that I am not familiar , espacially those from TOEFL vocabulary . 3 , I really need to improve my English which is very important for job and I 'll do it with my full heart . I feel little ashamed of myself . My friends what are your suggetions to my English study ? I can type anything I i want to share with you guys . The main actor is Won Bin , who is very handsome and tough . Especially in the last scene in which the main character struggles with all the bad guys is very cool and exciting . So I recommend that children and pregnant women do n't see the movie . but I could n't . I like winter but today I thought that this winter is too cold & long / hard and it will be wonderfull if it is over sooner and spring comes . I went to see Jesus Christ Superstar by a Japanese theatre company yesterday . Yesterday 's stage was called `` Japanese version `` . Kanamori as Judas ' song is ringing in my ears . . . painfully sad voice . For several years , some friends of mine , who are very well versed on the subject of comic books , suggested that I read Watchmen / suggested to me that I read Watchmen . The depth and humanity of the characters makes them different from the stereotypical comic book heroes . The plot deals with several interesting themes such as human nature , perceived reality , politics and the difference between ideology and reality . She says she enjoyed it , but I think it was a little hard to understand for her . It 's the sweet potato season ! ! I like sweet potatoes very much . I want to make baked sweet potatoes , tempura of sweet potato , and many other delicious things . I 'm going to get some sweet potatoes , so I can start cooking sweet potatoes ! ! Are there other dishes using sweet potato ? Some people might say it is meaningless . A 100 yen shop has daily goods , stationaries , toys and even food . The rent is determined by various factors such as location , neighborhood , building age , amenities , whether or not there is a doorman , elevators , and so on . Since the neighborhood itself is very popular , the rent level is very high even if quality of an apartment is low . I prefer to live comfortibly comfortably inside an apartment because I spend more time inside than in the neighborhood . Thank you for reading my diary ! However , a familiar word , `` McDonald 's `` , as we can see around the world , has the letter `` D `` in it as a capital letter . Additionally , she was a patriot and we should construct a statue to extol this noble spirit . Statues are built to remember people who contributed to society , and thereby making more people realize their responsibility to the country . We went to Bexhill which is near Eastbourne . We went to see The Red Arrows show in Eastbourne . We saw two ponies , a pig , chickens and many kids tried feed them all the time . I went to see the broadway musical `` Legally Blond `` last night . Please check my grammar . My favorite figure skater is Plushenko , _ because his skating is very good and exciting . and because now I have native speakers to speak with and practice with , even this site is one of my important reasources ^ ^ These things , for me , are so beautiful . Please correct any grammatical errors or any expressions not commonly used . I rememeber when my girlfriend and I started to see each other , she always made fun of me and told others that I 'm so stupid to be with a girl in the same department , even in the same school . Stars are very beautiful . My heart becomes peaceful . The view from the small mountain is especially good ! I 'm looking forward to that time . In an hour 's time , I will go to school to continue my studies . Chinese lesson , english lesson , maths lesson and so on . I hope to elect the person that has proper thoughts and actions . Sorry , I have n't posted my diary for two weeks . A presentation topic will be attractive with the support of examples and proof , especially for academic , scientific and technical presentations . I 'd like to improve my speaking skill by using my iPod and this speaker . I am an account executive . Everyday I need to handle all kinds of things that are complicated and irritating . I think I should be more careful and diligent in my work . I 'm a beginner on this site . This is my first daily . I read a book about organizing of desk , information and thinking . Most Popular Characters in Japan After I moved it , I checked the data on the DVD - Rs . and after a while , thenPC went blue ( screen ) again . Because I felt very cold , we went back early . Hi ! My name is Yasuna . I am a freshman at a Japanese college . The First Below is my introduction . In the future , I want to become a successful secretary . That 's all to my personal introduction . As I did poorly on the listening and writing . Quantitive , Verbal . . . . I wondered a little bit if the bubbles are bad for the lawn . Chinese tekens , gebruikt in het Japans , kunnen op verschillende manieren worden gelezen zonder dat hun betekenis verandert . I wanted to watch them because they are so famous . Naruto is famous in Japan too . I tried drawing at the workshop . But I could n't even draw straight lines . But our program teachers , young Americans , have opened my eyes . what 's your methods ? I am a University student in Kyoto and I am 20 years old . It 's an old Japanese motorcycle . Sometime last month , At the beggining of counseling , I asked a student what the biggest problem facing him was . Maybe someone wants to know something about Russia . The song I want to practice next is the classic old song [ Just Once ] . It is `` I 'm not okay `` composed by My Chemical Romance . The sky in autumn is so beautiful especially in Japan ! If you have not seen it , I will really reccomend it . `` autumn `` and ' `` fall `` Some sentences in the novel `` Night `` which I do n't understand . And here are some sentences that I found emotional and beautiful ( I do n't know how to describe it appropriately , maybe you can help me XD ) and want to share with you guys : It is famous for its `` night market `` . Wooh it is almost 4 o ' clock in the morning and My voice surprised my son when I read his picture books . My company is a commercial firm so we purchase products from Switzerland and sell them . Since we send products to the customer after we receive their order , it takes a long time . Our products are very complicated and people may be unfamiliar with them ( it is a device for vacuum ) , so we need to think of it and find a good way . My main job is solving my client task by digital communication . I can hear spectators sing a song together in order to cheer players up at sport events such as soccer and baseball . I make it a point to listen to Enya 's songs when I am stressed . It looked like tweezers . He told me `` These are tongs for chips . Are they convenient to eat snacks with ? ! I want to study English and Spanish . I have been studying English for a long time , I bought 20 graded readers books I 'm looking forward to receiving the package . We are looking forward to visit Denmark very much . Since January 1st , I have been writing diaries in English on another site . The Sushi he made was so delicious , and his delight ( from it ) was able to be seen . And a smile on people faces who ate his Sushi was noticeable . Knowledge is what makes adult and chilren different from one another . Finally is skill . Consequently , my concentration increased and I could go home early . It seems I have a new computer right now but I do n't like it . I like the old one because I was used to using it . There are many attractions . Speaking of attractions , some of them will scare people but they are out of order . I have a fear of heights . I 'm a chicken . He has a very good physique . We asked a person there to take pictures of us . When my daughter found the bicycle after waking from her nap , she said , `` The bicycle is laying on the ground ! `` sunny day person in the music industry . Friendship is an essential ingredient in the making of a healthy , rewarding life . All people have the right to access the best medicine available . While some people think it is necessary to ensure human lives by providing them with advanced treatments and the best medicine , it would be very difficult to take care of or save their lives completely in terms of the budget and facilities . It is true that people should be treated equally regardless of their level of income . Rich individuals or companies can not take responsibility for the medical world . For example , in Japan , it takes a long time to raise enough funds for patients ' operations . The government still lacks money even after abolishing unnecessary business activities . I have been impressed by the theory of Ebbing house before . I 'm visiting websites , including this one , by using my cellphone . How delicious it was ! Firstly , miso can be divided into two types in terms of its color , aka ( red ) miso and shiro ( white ) miso . It 's really hard to describe colors in English precisely ! so I 've been tired these days . OKINAWA 's music has very special harmony . Your country may have that kind of biscuit too but Tim Tams have a special ingredient which your country does n't allow to put in biscuits - drugs ! ! My next English lesson will be about superstitions . Now I work in a kindergarten , I do like children , but I do n't like to play with them all day long . It 's my first time logging in LANG - 8 , so I 'm new . I want to change jobs , but I have no confidence 'cause of my poor English . Just kidding ^ ^ But I want to if I can . My dream is to become a management consultant . I cough so seriously that sometimes I ca n't even breath . After coughing for 3 days my mother said `` I think we should see the doctor , the doctor of traditional Chinese medicine . `` The doctor of traditional Chinese medicine is about 60 years old . English business letter My customs broker says that the importer 's name was my storage company 's name on the B / L . I think it 's very hard for a person with no experience like me to get a job . It must be very hard at the beginning , but I believe that I can have a better tomorrow if I work hard . ^ ^ I used to save my small allowance to buy a new album and then listened to it thousands of times . What is strange is that on the other hand they 're willing to pay 300 - 400 yen to download a single ' chaku - uta ( music file specially coded for mobile phones ) ' , to get the song immediately when they want it . I guess what they value more is convenience than a small amount of money , which is I think a bit too expensive for a single song though . Dubois put her girls to bed and was waiting for her husband while sitting on the sofa alone with the lights turned off , when Mr . Dubois , who has been deeply distressed , finally said to him , `` Honey , it 's already 9 o ' clock . `` I was got a little cultural shock at that scene . The younger people in their 20s usually go out with friends till very late . When my husband and I were dating , we used to meet around 8 or 9pm after work and hang out in a cafe or bar , then went our separate ways around 10 or 11pm . Restaurants usually close at 10 pm and supermarkets and shops usually close after midnight . Moreover , there are lots of bars which stay open through the whole night . Topic : you need to write an appropriate response to Neil , being around 100 ~ 150 words in length How are you doing ? Last night , I saw a TV program that said Japanese people eat Japanese food less these days . How are you ? Your letters never cease to enjoy me . Second , the number of Japanese families who buy groceries from online supermarkets increasing these days is not a good way to buy food because , in my opinion , using online services like this would discourage people from enjoying themselves before making meals . Personally , even if a custom in one country is so cruel or so stupid seen from people from other countries , they do n't have the right to say if the country 's custom is good or not ; all customs have the right to exist in the world . Although this entry is so long , please correct this > < ; sorry ! Today I slept until 10 : 00 . I started to write a diary to improve my english : ) So many people were there . I saw many beautiful girls and floats . But the most surprising event was the Stealth B - 2 fighter flying over The Taiwanese people are very kind . I love Taiwan and Taiwanese people . I can make various pound cakes , for example , chocolate , peanuts , banana & walnuts , raisins , and some dry fluits . I take pictures of some trifle object that has a nice atmosphere . Then he suddenly started talking about gambling and the rich man who is the president of oil company in Singapore and winning 20000 $ last night and he taught me how to win . I 'm Japanese and I 'm Buddhist . However , a lot of Japanese people like to celebrate Christmas like foreign people . I 've heard that in many foreign countries , people buy presents for their family . However in Japan it seems to be only for children and couples . Maybe it is used as advertisement for toys or jewelry ? I gave presents to my nephew and niece . After graduating from ESL and switching around some majors such as Spanish and Social Work , I felt like studying more about the earth and the things related to it , so finally I majored in Geography which focuses on resources and the environment . My school life here in TX has been interesting and fun although learning English is still in progress and I still have long long long way to go . I 'm a graduate student and will graduate from my university next spring . I need to wait until the company starts interviewing again . So I decided to return to the place where my university is located . Neighborhood restaurants menu I could add new a item to my neighborhood restaurants menu . But it was not the that strange until my college classmate appeared . I do n't know why I always dream about my elementary school , highschool , and the places I played in when I was a child . Suddenly I feel like reading blogs that / which are written in English . There are many language in the world and I selected English first because I 've been studying since junior high school and originally I liked English , especially I want to understand and use `` jokes in English `` ( hahaha ) To be awkward , I want to teach more to 13 girl and play with 11 girl ! It is of the `` Godzila Rock , `` which is in Syari town of Shiretoko peninsula . I sat for examinations from Tuesday to Saturday . My classmates suggested we go to see the movie 2012 to relax and release our pressure that 's been repressed these past few weeks . I 've skipped it twice , and if I am absent the class three times , I ca n't pass the exams , even if I get 100 points . Even watching TV is a little bit hard . And I looked up about my class ' teacher too . Luckily , I downloaded all the episodes from the Internet and watched it within half a year . But the even busier season is coming soon . I work alone until very late in office when I have big projects to complete . Sometimes until 3am or 4am . . . I got an offer to do website and product design from Switzerland company . But it failed . For exeample , optimistic , negative , positive , cheerful , kind , strong , and more Please give me your good advice ! ! ! ! In November I will go to Finland to meet an international coordinator who is in Uni . Actually , it took longer because I transited in Malaysia . I enjoyed talking with them , and could feel cultural differences . When I heard that , I felt the immense distance between countries because the sun sets earlier in Korea . But there is a difference between only knowlage from a dictionary and the stories we can listen from people living there . I wish I could have traveled around Australia because there are a lot of good places to visit . I should have gone to the Great Barrier Reef for scuba diving . So , I 'll go to the Kaname - cho station to study English with my friend who teaches me . Therefore , I make it a habit to check calories . I 'm disappointed with this result , but probably I 'll study basic English , like I studied when I Once I have begun to write diary , I check for my buddies and reply everyday . . . Although I 'm doomed to fail , It is an ordinary thing for me and I will do it again and again . . Today I made fried celery and bacon , boiled spinach with sesame , and rice balls . Tomorrow I 'll make boiled potato and beef with soy sauce , and some appetizers . I 'm on a business trip in KOBE , HYOGO - prefecture . Many foreigners are in KOBE . I usually go on a business trip for ten days in a month . It 's hard for me to take a long time for transportation . Recently I was thinking about two questions : second , where can my own happiness and experience come from ? I will go to France for 3 months from august to october to do research for biology . In the lab I will go to , everybody should communicate with English . My major is Japanese . I have a lot of interests . I can not contact some friends who live in the devastated areas . We also decided that we would sing together one English song and one Japanese song and after we sing well , we will post it on YouTube . I will use ipod and master singing English songs . But the younger one hates it . Of course this is a good way , but before doing that , for people who are not confident with their speaking like me , it 's very useful to learn how to write well organized English . So I 'm practicing in this way so that I can put together English words quickly . I found the answer to this question . Work is important for me to enrich my life . Nice to meet everyone ! Recently , I was too busy . Please look forward to my next journal . From tomorrow , I 'm gon na start working on my desk and I feel like that 's gon na go well . So I could not agree with his opinion . For some people , red is a beautiful and lucky color . But , I learned that it 's sad to regret in the future . Vietnamese learning English Hello everybody , I am Vietnamese and I want to learn English . I think that is a long time , but I am not good at English . I love shopping , besides I 'm just a student yet and , because of it , I 'm constantly poor . Cut an onion lengthwise in half and slice the halved onions . Place some butter into a frying pan and and fry the onion over a moderate flame until golden brown ( for about 8 minutes ) . While we were walking , we discovered spinach in the field , which is a vegetable I really like . I could enjoy having a dinner with a wonderful side - dish of refreshing spinach . They always say , `` We are too busy now , so we ca n't deal with your things at once . `` And when we ask them when they can do it , their official response is `` we will do it on our own schedule , but we do n't know when we can finish it . `` Nevertheless , our leader has no power to ask them do our matter as soon as possible . I do n't know whether I should work harder atmy job , or look for a better job in near future . I love autumn too . I like this season the best because the climate is very accurate to do anything . As soon as I woke up I felt a sore throat . I thought `` Today , I 'm not so busy , I will be OK , `` but unfortunately . . . ? ? ? Because I find I 'm wasting my time . We should combine them with some other ideas or some global standard . To me , English is a charming language . Some students use color or highlighters . I 'm working at a logistics company , Today the weather was bad . When I stayed at home in the Kanto - area on Friday , some violent shaking occurred . But a typhoon hit . I hate when independent rock bands break up because they are not famous and they ca n't find the opportunities to succeed . Filipino girl , 3 . But I ca n't speak English fluently , so I will mend my ways and enjoy everyday to the fullest . Ten days later will be Chistmas , but it will also bring me a difficult problem . That is what should I buy for my supersivor as a christmas gift ? I work in a InterContinental hotel ( a international hotel ) where most of the mangement staff are foreginers . Such as my direct boss is from Australia , our manager is from Netherland . our GM from italy so on . Generally speaking , we celebrate christmas just for pleasure in China . But this time it is absolutely differen . We will be celebrating christmas with some real foreigners ! So I think it 's necessary to buy something special for them as a christmas gift to help them to have the same christmas as before . At least they will also recieve a gift . I think their feelings about Christmas is a bit diffrerent from China , and my main task is to make chrismas as fun as it would be in their homeland . . Shino - chan also came to Osaka from Hiroshima for to take the lesson . I heard an interesting speech . But I think it 's very important that we have to show consideration for each other . Our group 's main purpose is introducing Japanese student guides to student travelers . My friends recommended that I eat dinner . I might look for people who can advise for me about diet . In order to do it I walk around and go up and down . And through some windows I can see some green around my house . As you know , the roads in the morning are full of cars which are driven by workers . In my opinion every subject is important . Many students think maths is more difficult than Chinese , so they spend more time doing maths than they do practicing Chinese . It will make me feel lonely . How do movies or TV affect people ? No . 4 Heroes and heroines achieve great success of their business , attain sweet love of their life , and gain high respect of their fame so easily within a two - hour long movie . When watching it , audiences can experience the same events and share the same feelings . As a result , this whole process would fulfill their fantasies and cause them to find balance in their lives , or to some degree , lose the balance in their lives . This all depends not only on the movies but also the audiences themselves . To put it differently , tasks are arduous for mass media to bring people laughter , joy and relaxation , and at the same time some pedagogic meanings . I 've been practising magic tricks since I was in the university . The earthquake happened in Tohoku and along the Pacific Ocean coast this afternoon . So you might see a rainbow , although there are some other necessary conditions . I went to an Italian restaurant with my husband . It was so delicious that I ate too much . I want to tell my sister about this restaurant . The end of it threw me a curve when her hand suddenly appeared from her grave . Also , she said that `` You can never be careful enough ; you are a girl . `` This evening , I read a novel wrote by a Britain woman writer titled , `` Harry Potter and Magic Stone `` . His uncle has a chubby and spoiled son . The uncle and aunt treated Harry cruelly . Harry went to the Witchcraft and Wizandry School with the help of an escort who was from that school , and began his legendary experiences . There was trouble on Wednesday , The sore throat will heal by gradation . I am very happy ! Tomorrow I have an interview test to work at a part - time job . I am a bit nervous . Then , we took the travel agency 's bus there . We were disappointed because we had spent time and money . We just took the bus all day . Then I went to the travel agency , and they returned some of our money . According to the news , it is an approaching Typhoon . I heard about Lang - 8 accidentally from a Chinese website called CnBeta , a IT news website . One measure I am taking is the pursuit of muscle exercise . Unfortunately , There are no lessons in the holidays . They live in apartments near the university so that they can go to school by bike . First I need to copy a book for him . Do I sound a little mysterious ? My bad luck began when last month I went to a temple to pray for more money . So I was thinking , `` I definitely have to go there again . `` Now , I feel like my esophagus is burning . I need to find a way to alleviate my anxiety . As a female patient , I have good reason to lose my rationality . We talked about the past , the embarrassments happened to us . I 'm twenty - one now , and I have many random thoughts . ( my friends call me `` poet `` sometimes ; I wish I would n't make you laugh ) . I 'm sorry I know I should . but still I do n't know what I want to do after I finish these studies . I continued to make the panda that I began ( ? ) yesterday , again I made some mistakes - . - I was really hoping to finish it today , but I guess maybe it will be tomorrow lol Because of that terrible life style , I had a high fever every month , got the flu in winter and suffered from chronic constipation . The host family was good , I thought ! `` It makes no difference to me . `` I want someone to correct my diaries . As a result my performance was OK but my index finger was burnt . Well , I will enjoy the party . I just need to be happy but it 's so difficult . Our country has a lot of good culture . , so I want to introduce it to people . And recently , the custom of wearing kimono is dying , because many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . Thanks ! ~ ~ Hair Of Beautiful Women I want to improve my English and it depends on the criticism , so truly , I hope you can help me correct my English . However , all the hotels around the airport are expensive . One day , my co - worker told me about lang - 8 . I feel that here is a good place to learn , becuase many people share their diaries . First , I have an English test in August , so I must spent a month in for preparing it . Well , I 've mostly just hung out with my friends and went the library the last few days . After Choo - Suk , Korea 's second job recruiting season will be begin . I hope to work for an international company where I can use English or Chinese . Of course 10 people including me were attending the meeting for a system assessment ; 4 people were foreigners who came from our HQ and most of the other people had a good English speaking ability . At first , it was a little exciting . I tried to listen to them and understand what they explained . These exams will be very difficult for me . Recently , I watched the movie `` A single man `` with Colin Firth as lead actor and the brilliant Julianne Moore . * It 's just because of Tomek Michniewicz 's book `` Samsara `` . But I will write a blog everyday . So he is sleeping beside me at the moment to rest . I appreciate in advanced to people on this site , because I need help with my English writing . Yesterday was Christmas Eve . After this trip , I think I should study English harder all over again . Today I wrote an email to my customer . But my colleague said , `` it is incorrect . `` Originaly I was n't a person who was in charge of anything because I was the youngest of three children in my family . I went to an exhibition about the / our solar system with my BF because BF 's major subject is electronics and his father recommeded it to us . I also played Bloom 3 and Bloom 4 . I went to sell unwanted things to a recycle shop last weekend . Though I 've thought about these words lately , I still do n't knowwhich situations these words are used in by native speakers . I often hear `` definitely `` when I am walking on a street . I remember when I was in high school , I seldom had a feeling that `` I do n't know what I 'm writing about `` but now I do feel unsure sometimes . Because my school is close to my home , I can go home every weekend . My boyfriend asked me to go to his boss 's cottage 2 or 3 weeks ago . His boss , Nancy , and her husband , Steve , are really nice to me . He said , `` I would like to say something . But , I realized what he was trying to say from his serious face and eyes . . . . then * I * was afraid to hear the words . What I said back to him was , `` Thank you , `` and I explained my feelings to him . Very hard week especially at weekends I am a Japanese man living in the Miyagi prefecture . I usually play Metal Gear3 on a Play station3 . So , I will quit the game and start to study English . I do n't like to be in the cold , so I wore a sweater . I think one of the scary parts is there is no vaccine against the new flu yet . I think I can write a dairy or something related . I would like to buy new dictionary , because my digital dictionary is old . Of course , the class is all taught in English . Also , I ` m going to go to a theater in Osaka with my friend . Recently , I have studied English . Your cooperation is appreciated . I have to admit that I 'm in love with Engish as a language and I wish one day that I can speak it fluently like the natives without stammering and pausing in between words . I have a big cozy white bath with different kinds of foams , salts , soaps , gels and many other sweet things that are necessary in the bathroom . I sometimes take a bath and read a book or a magazine . Ruby is developed by Matz , who is Japanese . `` Year 3000 `` is a big - selling song originally made by Busted , which is a British band . Today , I planned for this year what would happen and when I 'm going to take vacations . And , I want to watch a baseball game with Ichiro , who plays for the Seattle Mariners . There 's too many seminars , and I 'm not concentrated . It should be peaceful between countries . After that , We went to the erectronics shop , and played with iPad . All of them are totally different . Adaptable , versatile , industrious . It 's still like new , because I do n't really know a lot of miso menus . But 4 years ago , I went to Okinawa with my family and I tried snorkeling for the first time . My heart was pounding while snorkeling . I do n't know why , but I believe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenery . I can not understand his behavior , either . Korean friend and food I have been to Seoul in Korea once more than ten years ago . Even after the lesson , she used to go straight to his house with him , not back to our house . I was quite sure he always looked down on my plan that I would go to Austraila to master English . I wonder how you guys can stay in such a cruel and hopeless country . Today I am going to the store and shop . Later I am going to eat with friends after that we are going to my friend 's house and we all are going to watch movies and listen to music . ` Let us discover the significance of birth and the joy of living ' Every shake reminds us of the disaster . There is a coin box in the convenience store I work in . Because now that is all I can do . The GM asked me to be his assistant and he told me I could do something in a professional setting in logisitics . Internet calls have many advantages , but lots of things still remain to be fixed . In the beginning , I was just looking for people to talk with in English to improve my conversation abilities . When he was a baby , he had an experience of curing a decayed tooth that was caused by his mother 's milk . I sometimes feel lonely and I feel jealous of his ex - girlfriends . how about doing an internship and studying English in the Philippines ? Salary and supply service is not bad . Fortunately , I have enough time to think and decide . My co - worker had told me about this site and I have registered ! I was not confident I could learn the symbols and I am not sure about studying pronunciation , but after the lesson , I studied a little bit myself and I could hear English sounds more clearly . I 'm disappointed . I followed my husband to a dental clinic in the neighbouring town after work for treatment of his decayed tooth . Sushi is my favourite food . The DVDs I bought were `` No Reservations `` and `` Wanted `` . I like Catherine Zeta - Jones and Angelina Jolie . Problem students Next year , some problem students will be coming to my laboratory . This is a difficult problem in my university . What 's wrong with me ? ! ? ! but I 'm really angry to myself . Maybe we will get stiff muscles after climbingLOL0 There are always many customers on the weekends , _ but that day it was very empty . My friend has got a headache after this travel ! ! ! Especially the grammar , it 's so complicated . In Japan , basically , we do n't kiss in public and also we do n't kiss on the forehead . I saw a car decorated with Red Bull signs . I started to practice the drums 11 years ago . Hello , my friends . First of all , I want to apologize to all my friends at lang - 8 for being absent for this long period due to the requirements in my last year of college . No doubt that I miss you all . I pick up this topic because everybody here is talking about the referendum in sudan these days . To the people who do n't know much about Sudan , it is the biggest country in Africa and located on east side of Africa ; south of Egypt . My country has struggled with political instability and prolonged wars since being liberated from the British 50 years ago . Unfortunately Sudan was born with wars and the most harmful one was in South Sudan . That war is considered the longest war in the history of Africa or modern history . The war continued 50 years after liberation , killed two million Sudanese citizens , and caused four million Sudanese citizens to emigrate due to the paralyzed economy we had during this ugly war . Sudan is a country of different races , languages , and religions , but specific parts in the north are more educated than other parts of Sudan . This is because during British rule the south and west of Sudan were closed areas and the government did n't allow any cultural developmental . So , soon after liberation the Sudanese found themselves with big challenge of how to rule this wide country where the north Sudanese were more educated . The government was ruled by them and other citizens felt like this government does n't represent them . The biggest historical mistake is that this government did not change British policy of closed lands . As result of this huge mistake , the racism grew between Sudanese populations and rapidly the southern Sudanese took up arms to get their rights in Sudan . At that point , no Sudanese , including southern Sudanese , had the idea for a separation . They just wanted their rights in their country as whole Sudan . And , as days go by , and wars burned houses and killed children and women , the idea of separation from Sudan arose . In 2005 , the happiest year of Sudanese history , the government and ( splm ) stopped the war in South Sudan the Nifasha Peace Agreement has born . The government promised a lot political changes : the system became democratic and a successful election also occurred . Southern Sudanese can rule their own lands by the new federal system . In the Nifasha Peace Agreement , the government sponsored the referendum right after six years of the treaty . This period was supposed to be the rehabilitation period of the wars affect on the south . The south took more than 50 percent of the oil to rehabilitate southern Sudan by SPLA . Due to the bad situation in the south and huge corruption , not many changes took place in health and education and most of the money was spent on south Sudanese army . Due to the environment which lacks any trust , now the 6 years is running out fast and the Sudanese face a referendum one month from now . The news is not good about the south , because a lot of politicians see the separation as the start of a new phase of war in Sudan because most of the oil in Sudan lies in the boundaries between south and north . And these boundaries have not been defined yet , so the Sudanese are worried about witnessing another endless war . The situation is very tense and everybody is expecting the worst , but there is hope that the referendum will lead to unity . And if that occurs , it will be the true liberation of Sudan and a promising future . We pray for our children to be raised in a united Sudan without bloodshed . thanks for reading : - ) For that reason , I love fruits such as pears , persimmons , and the like but I rarely eat these . I 'm studying English with a textbook titled ' Common mistakes at IELTS Advanced ' . If the AAMC is going to enter the Philippines ' education and training market , it could be difficult to prepare these environments in order to offer their services to customers , much like Australia . It is essential to collect as many customers as possible to make a business succeed by keeping prices low and hiring local employees . This is my first diary on this website and also the first day of 2009 ! I hope I have the patience and perseverance to keep on writing my diary in Finally , please please feel welcome to correct my mistakes , and thanks a lot for reading my long passage . because I overdid it Because I had to finish my internship . Could you give me some tips about teaching myself to play the drums ? So foreign people can not understand what Japanese people think about . But I was able to study although being pressured . This month I have to do night - shift on Mondays and Wednesdays Basically I work from 15 : 30 to 9 : 00 the next morning . Last Friday and last Saturday , I went to bed but I could n't sleep until 5 : 30 in the morning . . It 's so unhealthy . Unfortunately a lot of people forget about family atmosphere . By the way , I registered for facebook yesterday ! I 'm studying English , but I 'm a beginner . Good things happened I kept calling and calling , trying different country code but just did n't work . ( Murphy did n't give me , so I searched for his company on the website . ) As I was confused and considering what to do next , Mr . The first route from Taipei should be JAL instead of AA . Psychologically watches can be replaced by ' the guy of your dreams ' . Is this sentence grammatically correct ? I ' ve got to fight this evil flab . Tomorrow is ! ! This is my third visit to Beijing , and I feel that it has developed rapidly ! ! Most of Chinese people start to learn English when they are still children including me . I hope nothing else bad happens , and that my friend is going to be okay . When I got off the train to transfer at a certain station , I reached into my pocket to check the time on my phone . That 's my favorite beverage when I went to restaurant or picnic . My head is whining . I think I had better not drink anymore If I they speak English , I can go to Japanese people and buy food or go to Europe and see the difference of how Japanese peoples ' world view and thinking . and when I hang out somewhere , I wish I contrubuted something . There are very few chances to practice . So ashamed ! I have learned English for 5 years . Actually , I 'm afraid of making mistakes . I 'm studying English because I want to change my career . I 'd like to know what does everybody else think about this sudden change ? My teacher is from the Philippines . I 've been very tired and sleepy lately , because I 've had a lot of homework to do . And my friends suggested to watch `` Saw `` . She is very kind to everyone . I also walk around the park every evening . In addition to that , I walk as fast as I can , which means I always try to walk as often as possible instead of using a car or bicycle . Second , I make sure that I eat alot of vegetables at each meal . I also eat a salad , potato , or different fresh vegetable with lunch and dinner . Finally , I always try to ease myself of any stress that I feel . But feeling too much stress can be dangerous , and what more , it can cause diseases . Listening to music , chatting with friends and singing songs are ways that I can quickly and effectively release the stress that I have inside . In conclusion , joggingevery day , eating healthy food and eliminating stress can help me maintain my good health . When I was a child , my mom had sent me to a swimming class once , but I quitted when I learned it in the halfway . It can make your body more healthier , maybe works on your immune system , so you wo n't get sick so easily . But in my country , students do n't really focus on sports , even parents and teachers do not like to force children to take part in any sports games . `` Our university is really closured ! ! ! `` This news spread very quickly . I 'm supposed to work there and I do n't even know how to cook or clean because everything I 've wanted has been given to me from a very early period . Thank you from the mountain . His sister was well known as a slut among us . But they 're already engaged OMG . Kiyota : Oh really ? Even Kiyota had not expected that she said such a pretty rude thing in front of her boyfriend and her older brother 's friend . But sadly making a close friend and a girlfriend is quite difficult in foreign countries because of the language barrier . However this kind of dishonest women can easily get conversation partners by using their bodies . Every Japanese woman in foreign countries has possiblity of being a dishonest woman to study English and settle down there . I play games in my spare time . We just do congratulate each other with comments or very small presents . It was my first time in 2 years , so I was a little bit nervous to play . Later somebody assassinated Eliabeth in Swiss . Soooo nervous The temperature was 21 degrees . Now , I work in sales department which is in charge of overseas market . I saw the Chin gay parade on 12 the of February during the Chinese new year . I 'd been insisting that I wanted to work in Tokyo though it seemed likethere was a slight chance I actually would . Of course it 's definitely the busiest city in Japan and acutually one of the busiest cities in the whole world ! I think I will miss the grocery store I 've been going to , the hair salon where staff is really nice to me , and the karaoke box I 've always been going with my friends . To remember new vocabulary , I would like to read books ! On the other hand , the younger brother was fascinated by the circus . The sentence below is what I will talk about in a interview for a job . and had a lot of chances to talk with foreign people such as Iraq people , Iran people , etc . This is one of the biggest shopping centers in Australia . After working there , I moved to Canberra , the capital of Australia . When I worked there , I found out that Australians like Eastern food . Sushi is originally Japanese food , but amusingly Korean tend to be like Japanese . Please correct my sentences . I bought a fashion magazine recently , and I found a remarkable article . People are always wondering whether the country or the city is the ideal place to live . The foremost reason for dwelling in the countryside is the soothing and comfortable life provided by the pastoral view . Those who have enjoyed the first cock crow in the morning , the twittering of birds in the trees and the breathtaking sight of the rising sun would go into rapture at only the mere mention of the idyllic life . Relaxed and suburban dwellers are able to hold a more positive attitude for life and achieve more accomplishments . Another subtle explanation rests on the fact that country inhabitants are fortunate enough to enjoy the cozy and pleasant ambiance of the family without exhausting their social life . On the contrary , it would be far more difficult to acquire such pleasure for those urbanites . Naturally , it is possibly too reckless to assert that nothing beneficial comes from city life since several accompanying merits also come along with it . Flights do n't move by one person 's contribution . Not only did I see their collaboration , but I also saw the back side of their jobs . Especially the cabin crew Echo ( Haruka Ayase ) . They were so funny . He looked at his feet ; there were tiny animals . He was scared , he ran along the inner way . I like to draw art ! Of course , I know that it is regarded as taboo to talk about religion with strangers like this daily . All in all , Going abroad for study brings us a plenty of wealth indeed . Japanese woman are strong . I 'm not an athlete . I made a proxy server for Chinese people . Furthermore , some adults are there too . But it was a success . Osaka was famous as the most polluted town , but this city has been changing recent years . For instance , disposal of food oil and garbage . It 's near the * * * * * station , across McDonald 's , next to the * * * * rent - a - car office . My Friend 's Birthday Party I would like to point out discrimination against women in broadcasting , which has enormous effects on people 's way of thinking . In Confucian cultures , as well as in many Western cultures , the left side is considered inferior to the right . IU intended to tempt Evian . Now it 's time to prepare for my studies , because next term I have a lot of ability tests to pass , like Japanese ability test 1 . I have already made a plan for myself and I believe that I have the courage to make it come true . and I have a curiosity to meet people through skype today I went to a korean restaurant where there is really delicious seafood Recently I was emotional unstable . I want to have a stronger mind . I have a bad feeling about last night 's dream . It ` s sort of sad , eventhough I don ` t know why ? It was a journal about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! Kan made economic activities worse in Japan because of his inconsistent policy regarding an economic growth strategy and an energy policy . I was supposed to only drink little bit , but of course I drank a lot , until 4 am . I did n't have that much money inside the wallet , so I do n't care about the money so much , but I had put some cards in it . That 's dangerous . After that , an ALT teacher told me that the former sentence was not wrong . Last weekend , I went to a playground and filmed the children . He was a Russian Blue who had beautiful gray hair and blue eyes . Before I met him , I was not interested in living with any animals . I met with my professor This morning I went to Tokyo University and I met with my professor . resemble : The behaviour of her son resembled his grandfather . deceive : You can not deceive me because I saw you walking in the station with your dog . doubt : I doubt that , maybe she forgot about the promise we made . Hello : ) ) ) My name is Nastua . I am a student of L ' viv State College of Light Industry . : ) ) ) I am 16 years old ! ! My future profession is clothing designer . : ) ) I like my future profession . People want to know English because it is a very important language . : ) ) THANK you very much . : ) ) Household chores are terrible , and taking classes is troublesome for me . One reason is that there are not only books but also newspapers and magazines . I think that volunteering does not always make the poor people who are the recipients happy . I was going to a job interview for an internet job that I got on the on web . first , it is far away . If possible would you correct any of my incorrect English ? Two weeks ago our attention was drawn to a LEGO event in Taipei . my wife took part in the event and filled out the form . I shot a video my son 's happy face . I click `` Save Draft `` and I can see a dot circling , but sometimes it never stops and it ca n't save the draft . It was really wonderful so I was moved . I need to finish my assignment or else it 'll ruin my holiday ! I was really impressed with Ginkaku - gi . I want to visit Kyoto again . I am going to Tokyo Disney Resort today . A collision lets you know what issue makes him or her feel upset . Its title is English Grammar in Use . The book is basically made of short stories like a diary . The main character is the author in his adolescence or youth , and the supporting characters are his family and neighbors . The doctor told me the ways on how to treat . I hope the doctor can treat my teeth well this saturday . When I arrived at Osaka , it was raining heavily . It seem very hard to survive in this world without paying money . Actually I am going to take the TOEFL test and am therefore preparing for my further studies in the USA . And I am really looking forward to the day that I get the results and the letter of admission to a good school . Her son is also the same age as us , but we have n't had a chance to get along with him . I was trying to talk to her , but she seemed to refuse answering me . I am so embarrassed . I just rode on a bicycle and had a dangerous experience . Sometimes I think of you . - Family , close friends and living healthy . I learned the cultural differences and how useful English is . But , every year , by the end of summer , I always feel a bit lonely : - ( lol I 'm already a university sophomore , so I have to study harder than ever ( - `` - ) ! I think the best way to overcome the problem is talking with many people who live in other countries in English . They laughed at me of that time , but I could learn . I am sure that I will learn to play flute now . Correct or Incorrect ? Please help me . . The story seemed quite silly and the characters were really stereotypical . This past year ( 2007 ) I stumbled upon the Abridged series . It was a dramaticaly shortened version of Yu Gi Oh , parodying the show 's sillyness and the changes of the American version . Just a few others have done voices for the abridged series . I would like to try and do the Spanish version of the abridged series , with the exception of asking my friends to do some of characters . One funny thing about this whole thing is that I always have a hard time trying to pronounce ABRIDGED ( the meaning of which I did not know before ) . Its really annoying . It 's so pitiful . It was difficult for me to remember the children 's name 's . Weather forecasts give you some information on maple leaves everyday . From more than a thousand years ago , Japanese people have First , I ate some noodles and a pork rice with friends . `` We will execute plans to disable atomic energy plants . `` But he did not tell a specific plan . I just want to read English articles just like reading Chinese . We can see a foreseeable future that the resolution of LCD or TV 's will be progressing with technology 's advancement - - maybe far beyond human eyesight . I watched a debate comepetion tonigt , One of my best friends joined it , and his team won the competition , I am very happy . . . . . . . So , I 'm always very careful when speaking in english . Is it as bad as the expression of raising the middle finger ? ? The toilet , restaurant , and all the other places were very busy . I get mad whenever it occurs and I worry about the malfunction . I went to Tsukiji yesterday . Probably , the dream warned me that I should better take my license out of my bag which I usually do n't bring during weekend . Happy birthday to me . I drank many beer , and I became drunk . Yesterday , I went to a night club in Shibuya that plays hiphop n RnB : > I want there to be a soft bed behind me so I can go to bed and relax . I am used to making coffee every day at 3 : 00P . M . , but when I opened the ice - box , there was no milk inside . Suddenly , I had an idea . I some goingko ( ginko ? ) powder . `` Oh , It 's not bad , but it seems strange . . . . `` then , I make the same for myself . So , I made a plan that I aim to keep to 1000cal ( ? Bad idea ) per day . I 'll experience them , and decide what I should do in the future . Of course , some of us have happy memories and others have sad memories . I am one of the ones who has sad memories . Although I was very sad , I did not cry , because at first I could not process that mother had died and that I was n't going to see her face again . The people who came to console me were very puzzled by my reaction , but they understood it . I could n't wait to be alone with her . Being a little sleepy when times carry you the day after today , smelling a cup of coffee , imagining the thing that you want to write , thinking about your sentences ' sensibility and sensitivity also properity ? in grammatical structures . . . And when I am not able to write what I have imagined , I feel disappointed . That is something like having the same feelings as a director of a movie . However , I want everyone to see the movie in my head while I am designing it but It is n't possible . After maybe a hundred times I am again crumpling a piece of paper . English has plenty of vocabulary ( include slung ) than Japanese . I should have very strong will to improve my English and keep my memories of life in the U . I live near Yokohama . And trying to be as natural as children can enable us to receive as much as they do . Educational opportunities are available to more people too . So it looks like the life of human beings is definitely better and better , as we own the latest technological gadgets in the house , and live with educated people in an intelligent society . I have to study here harder and harder day by day . I think that practicing a language for 15 minutes everyday is enough . I was driving a car near my house which is in a residential area . Then behind me , another car tried to pass my car several times . He was probably in a hurry , but of course passing is prohibited in the area because of the nearby school . But I was a Japanese business man as well . Chloe desperately asked father , but he kept laughing for around 10 minutes . We are going somewhere for the first time . On the other hand , when we return from somewhere , we tend to feel it 's not so far away compared with the first time . I taught English to my junior high school students and I found this in the dictionary . Of course I know the meaning of the word ' walk ' I 'm surprised by her English skills . Because I need you , I just need you . I found that we Chinese students could n't understand our European teacher very well . Our social environment has influenced us so much . I prepared for this test a long time , but still lack confidence . So , I guess the test is like a door in my way , if I do n't pass it , nothing will change or happen . I think I can do it , I believe I can do it , but success is not only composed by just believing . Some people have gotten married already ; others have bought their own house or car . We are living a different life style . But the good thing is that I will see all of my relatives which I normally do n't get to see . For people in Touhoku , which is located in northern Japan , the situation is much more serious . I like sushi , which is a Japanese traditional dish . It is delicious and interesting because you can choose various types of sushi which you like . Except the learning aspect of the internet , I ca n't forget about funnier ones , such as Manga , Anime , drama , films , books , songs , and a lot more . These things not only help me learn the language in certain situations , but it also gives me a lot of pleasure , SO THANK YOU INTERNET xD That is why I write [ in my ] diary when I experienced interesting things or have questions . I think I have to get to bed right away ~ I learned Hangul today by myself . It was very easy lol I learned most of them in a day . This airport was equiped with WI - FI and I had a new smartphone . That means it is necessary for me to learn a new language , Dutch , because it is required . I want to say hello to everybody . but , suddenly , I found I do n't know how to say it . maybe I 'm right . maybe you have another better way to say hello . see you We can work with an enthusiasm or tried mind . I went to a hair salon with my friend after school . Departure date : ddmmyy As a result As a result , I was asked to pay 250 dollars for the Internet fee . I got the result this dinner . Some really want to change their aggressive personality or bad attitude . There are exceptions , of course , but those are few . Recently anime costume parades are very popular especially among geeks and foreign people ; P Several years ago , on Halloween day , many foreign people with costumes got together on the Osaka loop line and stayed there many hours ! It was so fun ! ! but it became a problem and was banned for next year : ( There were many Thai food stalls and , someone who was from Thailand was singing her country 's song . I ate kaomangai ( rice with boiled chickin ) , tomyamkun ( spicy red seafood soup ) , and pattai ( noodles without soup ) . I recommend visiting the artificial lake in the center of the city which is surrounded by a park . There is a commercial zone along the widest street of the city where you can find all kinds of businesses : banks , bars , chemists , cinemas , pet shops , restaurants , fast food restaurants , grocers , travel agencies , supermarkets and others . Consequently , I realized that although cycling outside helped me to improve my fitness , really I enjoyed most breathing fresh air and taking pleasure in the countryside . The best place for young people in our area is without doubt the lake . Luckily , the schools are closed for ten weeks , so the young girls and boys have a lot of time to spend their Leaving my country , Somalia , was very hard for me . But when I was there , I began to make new friends that I never thought I would have , and I never imagined the way that I was going to know them either . At the beginning , I felt very strange talking with them , but now we are very good friends . We went to to Acapulco to play , to an event where universities from Mexico go and present cultural activities . Then we went to Cacahuamilpa to play there . That was an incredible experience that I will never forget . Using public transport can be difficult , because we have a strict time and , normally , we do not have a place to sit and that can be extremely uncomfortable . One argument for not using the car is that petrol is very expensive , but public transport tickets are also increasing , so that advantage is not so good , actually . The story took place in the USA a few years ago when the regression method was accepted by doctors and scientists . But we should n't forget the pollution cause by cars . We should use a bicycle or public transportation more . If we are working with someone in the same job who lives near us or is our neighbour , we can go to work in the same car . This way we use less petrol . The governments are also important for taking care of the environment . In total , there were 32 people , a white kitten and a dog . That night , the dog , the kitten , Tom and Michel slept in the same room , and that was n't too bad . When Michael got up in the morning , he realized that his kittten had disappeared , and he found Tom 's dog with some white hair in his mouth . He thought that the dog had eaten the kitten during the night , so he shouted at Tom , opened the door and went away . For those people who want to start to do the street workout , I advise you to start with basic exercises such as pull ups , push ups , dips and squats . Edison is said to have created the first commercially practical incandescent light . Edison and his research team made his discovery commercially and create a company called " Edison Electric Light Company " . In my bedroom there is a brown bed , a yellow chest of drawers , a little light brown bedside table and a big brown wardrobe . The environment is our surroundings . There is no awareness in our locality . They are busy with their own work . No one focuses on or sees what is happening in our town . They usually speak about how hot it is today , but they do n't know what makes it this hot . I am interested in planting trees and making our surroundings clean . Some people used to burn the forest as if the forest is useless . Man is greedy because all the things we get from the forests are free . Management accounting practice is very important for an organization for making decisions about human resources , sales , marketing and potential customers . To take care of the environment , each of us has to do something such as propaganda to the people in the country . About my village , we use banana leaves instead of nylon , dispose of garbage sensibly ... and so on . Are you studying mathematics for your exam ? I 'm a happy , energetic person who likes to work with children . In my country people make a lot of mistakes and have a lot of bad habits concerning their attitude towards rubbish . They are always throwing their old things and rubbish away in public places . The government also can not do their role towards their people and their bad behaviour . The thing that he ( the monster ) did n't know about was that he had a spectacular infection ( literally spectacular ) that I think had no cure . It was called " The Monsteration Infections " . Scientists were trying to find a cure for the Monsteration Infections , but they still do n't have it . I have needed to use English a lot of times during my professional activities . For that reason I took some English lessons many years ago . I can tell you that I feel I can understand over 90% when I 'm listening and when I 'm reading , but my main problem with English is , of course , when I have to speak . I fee terrible and without confidence . I think that I 'm always thinking in Spanish and then doing the translation into English . Maybe at this moment , while I 'm writing this composition , I 'm making the same mistake . I know that learning English is a long process , but I must follow that process because I 'd like to be an excellent bilingual person . Currently , I 'm working as a teacher at the university and teaching in English is my goal . I also work as a freelance worker with the same subjects because it is necessary to increase my income . I 'm writing now without using a dictionary and doing this composition without translating from Spanish ( I hope hahaha ) I hope you can help me understand more about how to improve my English level and develop my skills . Thank you for your attention , and I 'll wait for your advice , ( this is my first time writing over 50 words ) Nowadays a person 's worth seems to be judged according to social status and material possessions . This mostly happens in high class families , as they focus on achievements like power , political influence etc . On the other hand , for middle class families the old - fashioned values are still important as they are inherited from our ancestors in terms of values like honesty , kindness , loyalty , etc . Public transport has no future . The crisis in 2008 has reduced oil prices , The oil is cheap now and new cars are more efficient and the government give incentives for consumers . I know that I have not written it but I have a brother . I like to speak English at school too , but my friends do n't like it when I speak it in school , so I speak Swedish there . My favourite lessons are the Swedish lessons because I like to write stories . My family lives in a How are you ? I am going to describe myself so you will be able to recognize me when we meet at the train station . If I am right , continue reading this . I applied to a music club in our city and I was really excited when they replied and asked me to help , because I enjoy going to rock concerts and I was truly curious about how the backstage works . What was my job ? See you around This year is my sixteenth birthday and I 'm going to celebrate at home , with my family and some friends . This summer was the best . I went to Cuchilla Alta with my best friends . Their names are : Emilia , Agustina , Micaela and Lucía . I like English because it is very important to know other languages to communicate with other people and if I go to another country it is very important to know English . We got to work at four in the afternoon and it was very relaxing . I had a day off when I spent time at home or going to the gym , where I met handsome guys . You see , man , I do n't like crowded roads , a nd prefer to travel by tram . The development of the railroad and highway are easy to pulished , but the construction of seaports and airports must with congenital condition . I rather enjoy spinning , feeling the rhythm of the music louder and louder . This gives me high energy each time I go spinning . To conclude , in bigger cities like Bern or Zurich there is no doubt that the public transport system would be less inconvenient than travelling by car . First , the bank notes are considered how to design , including background colour , artwork and security issues . Then , they are prepared by skilled machinists . If the sheets are good , those sheets are then cut into separate bank notes and packed into cars in order to be dispatched all over the city . I believe that using your car has a lot of advantages or benefits . It is more comfortable and less expensive . Yoga calms and vitalizes body and mind . And government , please do n't be so flabby with your own citizen . For beginners in this sport I would recommend that a trainer teaches swimming properly because it is very important to pay attention to the position of the arms . May Maybe they are comfortable , terrible , , dangerous or average . Cars and buses become dangerous and cause problems in the street . She turned her head and saw him . " He was following me " , she thought . " Well , I should ask him what he is doing here " . First of all , finishing high school is a rite of passage that indicates the beginning of a new chapter for students . When you are travelling around the world by yourself , you gain a lot of knowledge , culture , discoveries and , with all of this , you gain personal experience . The job provides , like the trip , responsibility and experience . The consequences are n't good as the reasons , for instance , they may have the career prejudicate , or they spend so many years travelling that they are too old to study at a university . Besides that , they have different points of view on many subjects , that is why they may not like the fun and the conversation in the social life with other students . They can not enjoy this chapter with young and fresh thoughts . It is a big decision , that brings great consequences and great experiences . As an example , if a student needs to recuperate a subject or has to get a good mark , they ca n't go to do a sport because there is no time . They would consider you as an independent person . Accordingly , you would take responsibility for what you did . I am overwhelmed with grief , living with them . Eating habits in my country have really changed in the last ten years . it 's r is n't clear completely , but I suppose it depends on changing life habits in the development process of our society . But a good change in our habits is the attention to calories and healthy food , because of getting information on the internet and other media that are easily accessible for all people these days . Peter looked at his watch and knew that he had to do something immediately but he had forgotten what he had to do . After thinking , he remembered that he had to visit his grandmother as she was ill and his mother told him that his grandmother wanted to see her doctor and wanted him to take her in his car as the doctor 's clinic was far away from her house . Peter decided to go and he drove his car to his grandmother 's house in the next street . After he arrived , he saw his grandmother was waiting for him on the street . He apologized to her and asked her to get into the car . " Never mind " she said and got in the car beside him . However , travelling by bus or tram never get away from our daily routine . Travelling by bus is not as convenient as getting in a car , but you can never know what might happen with your car , where it might get stuck in traffic or some other accident might happen . Travel plans need to depend on public transport timetables . Besides , Hong Kong also has many country parks for hiking . Tom is studying in London . Although Canada is an English - speaking country , in Montreal , the official language is French . So I do not have the opportunity to practise English , because most of my colleagues speak French . I was inspired by a true legend . His name is Edan Hazard . That fact behind sense because the maintenance of public transport is not the responsibility of the traveler . If we want to count function of public transport because it 's not enough words to say . But public transport is a much needed service in big cities as well as small villages . I 'm sure you 'll agree that Red Square is the most popular sight in the capital of Russia . I remember two contrasting moments . One day , we had to create a team to do an exercise which used the brain ; they chose me . The reasons for stress are more diverse ; perhaps because we have an exam period , family problems or because we think in a negative way , or we have destroyed ourselves through long hours of working and canceld our needs for enough comfort , and lots of reasons to stress ... We must get rid of the stress quickly before we lose ourselves , because it 's very harmful . For example , you can read a book , do sport , play music , eat delicious food , remember all the positive things that have happened to you , talk with someone who you trust , get rid of everything that makes you upset and makes your life tiring , go out and eat a meal with your best friends , and there are a lot of things you can do ... Remember that stress is not a lasting thing , and you can avoid it . In other words , both bad sheets and the ones which are separated badly need destroying in a safe way which can stop them from getting into the market . Many people believe that nowadays there is no future for public transport , because travelling by car is so much more convenient , but others continue with the thought that they do help , for example , with travelling long distances . The ticket does n't cost too much and it is affordable for the majority of people , at least compared to buying a car . Secondly , public transport is more efficient for travelling long distance than cars and people would n't have to purchase fuel . When people need to travel to other continents or far away , they may need a plane , which is a form of public transport , to complete the journey because they have to cross oceans and complicated distances that have different landforms . However , a car is something which belongs to the person and he can do whatever he wants and find it in the same state he left it in , and sometimes public transport vehicles are n't left in the best way . In addition , you have to share with people you absolutely do n't know and probably wo n't see again . But , by observing all these people , you can enrich yourself with the different cultures and manners the others have and incorporate new topics . That was my first time on holiday in another country that was n't northern Italy . We visited a lot of monuments , museums and churches , like the Louvre with the Mona Lisa by Leonardo Da Vinci . It depends on five main steps , which include design , preparation of metal plates , printing , inspection , packaging and destruction or disposal depending on whether the fourth step is good or bad . Secondly , we need preparation of metal plates that subsidiarize with skilled machinists . If it 's good , they go to packing and distribution , whereas the others should be destroyed as well . In conclusion , the whole process is an unreversed schedule . It cosumemed the power which includes humans and machines . To begin with is design , we have to consider background colour , artwork , and security issues , and then we are supposed to prepare metal plates , using skilled machinists . Secondly , printing -- including sheets of bank notes , are printed ( 50 bank notes per sheet ) . There are some requirements -- colour on both sides , special ink , slightly raised images . Finally , if it is a good sheet , the procedure is packaging and distribution , including cutting into separate bank notes , packing , dispatching . If it is a bad sheet , the procedure is disposal -- bad sheets and bank notes should be securely destroyed . And then he realised it was an enormous lion . But suddenly he heard a noise , it was his mum . " Max where are you ? " she screamed . The lion disappeared in one second , running . Max spent the rest of the day thinking about that lion until he went into his room . " What an amazing day ! " , The most difficult area in English I have trouble with is writing . I have no problems with reading , speaking or listening . As part of my plan to improve my English skills , I decided to search on the internet for any free program which could help me with the plan to improve my English writing . Trieste is a little town situated in the north - east of Italy . So the environmental impact is very attractive . Another problem is that the citizens of Trieste do n't pay attention to the environmental problems of their city . I think it is important that , not only in the family , but also in school , we could raise a new generation sensitive to the ecological problems of the earth . I usually go two days a week but next month I am going to go three or four days a week because I hope to enter a local competition . It turned out that that young boy had a good head for fishing and now they always go fishing together . I like running , riding my bike , playing football , skiing in winter , climbing , etc . I like football because it is a sport that I have played since I was small and I think that it is the most fun and exciting team sport . The amount of garbage is increasing at the same time as the number of humans is increasing . The growth of consumption in developing countries leads to increasing consumption of energy , water and other resources . Nowadays , our local government is making some decisions to improve the situation . There are a lot of citizens movement except official activities . People organise common action for cleaning areas near houses . These activities take place especially in spring and in autumn . Everyone is curious about making bank notes . The bank notes are designed carefully . Workers need to design their background colour and artwork . Then , the notes will be prepared on metal plates . After that , printing . The notes will be printed in colour on both sides with special ink and they will have slightly raised images . Good ones will be packaged and distributed . workers will cut them and deal with them carefully . The rest of them will be disposed of . I think that Cádiz is the perfect place to meet , because Cádiz has coast , sea , and mountains . In Cádiz , in summer , there are a lot of opportunities to work . I hope I will get my order and I hope you will be more on time for the customer order shipping . These people can influence our lives . For example , if you have bad friends you become a bad person and you will have problems in your life . So , your education depends on the people around you . In general , people have the possibility to study in libraries or using computers . Personally , I think studying on a computer is a better choice . We need to do something to save the world ! I think they are our first friends and our first confidants . Think about a family 's routine . The Brazil and Netherlands games were a real test of our health . And I think that it 's not technology that will change , but the people and their characters . Unfortunately , for this generation , there wo n't be real relationships , all relationships will become virtual relationships . According to my experience , if we do n't exaggerate the way we use technology like the internet , phone , satellite . For example , now high - heeled shoes are very trendy but they cost a lot and most women do n't look good in them . Transportation is one of the most essential parts of our day to day life ; whether it is public or private , transport takes the same priority in each person 's life from the very early days . In the age before industrialisation came into existence , people also used various alternatives to travel from one place to another . Then the technology improved gradually towards mechanical engines to make the transport more convenient . Continuing my visit to London , I will visit the largest park in London , Hyde Park , which has a full day of guided outdoor games and activities for the preservation of the park . follow in London I 'll go for a walk to get to Big Ben , which is the most beautiful building in all its splendour , where I will take pictures . Later , I 'll take the London Underground , which is a public fast transit system . I 'll travel on it . My favorite band is " cbjr " ; it 's a Brazilian band . The type of music is rock and rap . Their music is very easy to single . I usually play it with my friends . We won 1st place and got the cup . If anyone intends to play this game , he should practise hard to be able to play it professionally . To sum up , I think it is inevitable . He loved Rose with his entire soul , a soul that he was losing . Suddenly , he took the agreement and signed the piece of paper with his blood . Do you know a new recipe for cooking chicken ? Our town takes care of the environment of our neighbourhood very seriously . Not only the supermarket has these containers . They are also in the schools of the neighbourhood . In my opinion , this gives a good example of the involvement of the local government . The majority of people visiting Katowice are focused on three things : souvenirs , fashion and food . Fortunately , visitors will find all of that in the Tourist Information Office and in shops on the outskirts . So , he is hard - working . He is a lawyer and always helps me with all my professional problems . However , a few years ago , the government has paid more attention to the environment of our country . For example , they did a lot of advertising on television , in newspapers and on the internet to explain that rubbish is not good for our world . In the castle there is the Holy Trinity Chapel . The famous dish of this restaurant is a huge hamburger . So , train is an intermidiate way to travel . I am writing to apply for the job in the USA published in an advertisement last Monday . Additionally , because public transport is expensive and does not have a comprehensive coverage of most cities , private cars are more attractive for most people . Some people say that a trip by car is more convenient than by public transport , but that statement has a lot of issues if we think about the limitations . But public transport has a future for a lot of reasons . First , time . If the place you want to reach is really far , the different types of vehicles of public transport will get you there faster than your car . Also , the complications about the field , like if you want to go from America to Europe , there is no highway that crosses the ocean . You need an airplane and , unless you have one , you will not be able to achieve travel between continents with your car . A different reason is politics , because if you want to go from anywhere in the USA to Alaska , you will not need to pass through Canada . Comfort is a really important reason , because driving for 8 hours is exhausting and it will also be unsafe . Economics is a factor too , because the wear and tear on your car will be more than in normal use and the price of food and extra stops that you will need to do . It will be more expensive than on public transport . In conclusion , for me , it is a lie that public transport has no future . However , they have to make improvements to this , like the use of better types of fuel or energy . One way is using renewable sources of energy , such as solar , haeolic ( wind ) or hydraulic(water),Also , there are biodiesel and gasoline extracted from seaweed . Dear Anne , Thank for your letter asking about my family and my friends . When somebody gets home , he wants only to relax in front of the television . Besides this , TV companies have understood sports provide this relaxing moment , mainly for men . In this view , I think that though there are lots of sports on television , there are not too many , because people have looke for it . When the day came , we performed an amazing choreography and we went back home with 3 gold medals . This American band is known for their lyrics that something different from other bands , something close to an emotional statement . My teacher said that public transport has no future in our society , because travelling by car is so much more convenient . Nevertheless , I disagree with her opinion because if we use public transport we will pollute less . Without travelling , people would be very bored , life would be very monotonous . Nowadays people use cars a lot . In the past , it was n't like that . People did not have cars . They just relied on public transport . There are a few people who use public transport , like students and people who have a low income . In my view , I can say the public transport might be going to e close because nobody is going to beclose He has been done several laws again Spanish citizens . I have been playing this sport since twelve years ago . This sport has taught me to respect others and not to assault them.there is the only reason that makes me choose this sport is that I do n't want to be weak . I would n't like to be nothing in this country that has a rule : the strong dominate the weak . When I step foot in the gym , I forget everything : school , home ... . Therefore , I enjoy it . Humans are looking for power and they apply the law of the jungle , the strongest beat the weakest . What are the criteria of this ranking ? and ... Chemical drugs can help people to heal and recover from diseases , but they have another hidden effect . Therefore , The aforementioned information above shows that our future could be worse than our present . We should live in a stable and peaceful world . Nowadays , people use their cars to travel for work , for holidays ...... but if the petrol were cheaper , they could travel a lot . After the preparing of metal plates by skilled machinists , they take sheets of bank notes . There are three requirements for this : colour on both sides , special ink and images that are slightly raised . It smelled terrific , and tasted so good . It was pancakes and egg with bacon . After that I played with my brothers out in the garden . They usually do n't want to be with me , but today we played all day long . It was such fun and I could n't stop smiling . He told us that he was really embarrassed about what had happened and he apologised for his attitude . It will not be trendy because everybody will have his own car . There are advantages and disadvantages ; television can also cause a dependence , cartoons and " stupid " programs can harm young people most . Today , there are many children that have a dependence on television , they prefer to stay at home to watch the various children 's TV programs , while once our parents preferred hanging out with their friends . Television can be a useful instrument if it is used with caution . Therefore , I recommend using it less to prevent damage to the mind . In order to help reduce pollution , I take action using the three " Rs " : reduce , reuse and recycle , so I am more and more eco - friendly . I reduce the use of unnecesary power at home . In other words , I turn on a light that I need while I use it ; I take cooler showers ; I heat only the necessary rooms . In order to reuse , I convert all things reusable , for example , a plastic bottle as a plant pot ; a glass bottle as a food container . I take my reusable shopping bag and refuse to use a plastic shopping bag if a salesman offers me one . A car is less expensive , more comfortable , faster and safer . For example , travelling by train is cheaper and travelling by plane is faster . On the other hand , it helps to reduce the pollution made by cars , .. The picture illustrate the process of making notes . Then , preparation of the metal plates and skilled machinists are needed . If the printed sheets are good quality , they will be packed and distributed . Some partially damaged sheets will be cut into separate or packed or dispatched . The bad sheets will be disposed on . The destruction will be secure . So it is not always a good thing , unless they are open - minded or have their own methods to punish you in a gentle way that wo n't make you regret telling them your faults or mistakes . I felt that I could lose consciousness . That 's why I removed the bracelet . I am glad to hear from you . I am 24 years old . I am from Lviv Ukraine . My hobbies are football and gym . I am studying environmental science . Now , to answer your question , I have many favourite places near my town because I live in a lovely little town , but there is one place that is special to me : ' A Fervenza do Pedregal ' . ' It is a very quiet place . Because of its location , in the middle of the forest , only a few people know how to get there . It is an incredible forest , the ground is covered in low grass and there is a little river where you can swim . It is the perfect place to have a quiet day . That is all I can tell you about this place . I hope that my answer will help you with your project . What is your last name ? I say to people that want to try this sport that it ' s easy if you love it . If you try this sport in the wrong way you could have health problems . For example , you could have problems with your hands , in your neck and in your legs . Emily knew she would have to come to a decision soon . The problem for Emily was that her boyfriend was as cold as the weather . She thought he was so boring , but she did n't want to be alone . she did n't know how to live on her own and Emily was utterly terrified of being alone . The purpose of this report is to make people more aware of the importance of taking care of the environment in order to eradicate this problem which has serious consequences nowadays . The council is carrying out a project in order to eradicate rubbish from my town . Combating the destruction of the environment , this is a serious problem throughout the world . Nowadays , many trees and grassland areas are damaged in many countries , lots of building are constructed . And people should pay attention to this problem and try to solve it . For instance , people need too many places to build the modern society , so they cut down lots of trees , burning many grassland areas . Another factor is that the animals do not control themselves and eat the plants leading to the destruction of the ecosystem . Although this change makes the life of people efficient , the problem should not be ignored . It would really be helpful if the government made tighter restrictions . In today 's world , there are lots of construction companies and factories are not admission , they are destroying the forest , farmland and wetland , discharging waste water and emitting greenhouse gas . It leads to a serious environmental problem . Taking the train is more cost effective than taking a car to work , as petrol is costly and the new transportation office has reduced the cost of tickets to assist with the daily living expenses we encounter . The other benefit of taking public transport is fewer people are taking cars , reducing the amount of toxic gases released into the environment . Karate is one of the best sports I have ever enjoyed in my life . One of the reasons behind my passion for karate is that it 's a means of taming the mind and the body . I have learned to get control of myself when someone teases me , and to be alert as well . Also , it helps me to always look slim and put me away from the ghost of obesity as well . People who want to start doing karate have to be patient . They should immerse themselves in daily exercise as well as eat healthy meals to keep them active . for instance , it 's advised to eat large amounts of fruits and fresh vegetables because they contain a lot of vitamins that the body needs to work properly . My favorite sports are football , basketball , Formula One and Tennis . For example , in our country , " Shinkansen " which means bullet train , is famous and very fast . " Blue train " , which has many beds on the train and we can sleep comfortably on the train . Second , travelling by train is safe and reasonable compared to planes . Travelling by train is cheep and getting a ticket is easy for us in our country . And terrorism is scarce also . A plane which was travelling from Egypt to Russia was exploded by terrorists last month . What did you do yesterday ? I 'm nineteen years old and from this city but living in a dormitory at Ton Duc Thang university . When I am running , all the pressure I felt is gone . We have Earth first , then people , than our house . Earth is our home , we all have to protect it . But now people are destroying it . Just for money for more houses , but if we destroy it , we will all die . Our money will be gone , our house will be gone , we will have nothing . Besides , some people destroy farmland to build houses , but if one day there is no farmland , then what should we eat ? Nothing at that time . We could n't eat anything!So what should we do ? So my idea is that all the countries and all the people stop using farmland , forests and wetland to build houses , grow more trees , protect our world , our home star ! The lecturer disagrees with the paragraph suggesting that the mentioned test developed by Alan Turing does not answer the main question : Can a computer think ? First , the lecturer talks about " Saran " , who proposed a challenge to prove that Turing 's test was not conclusive , and that he created a paradox . He selected people to go into a Chinese room . There was a computer in the Chinese language with different symbols . The Americans showed different behavior . They did not understand what was on the computer screen . Science , I just remember I have always liked motor racing , but one of my favourites is Formula 1 . The Formula 1 season starts in early spring and ends in late autumn . I try to watch every race every fortnight and the training the day before the race . Ferrari make one of the fastest cars in the world , but this season they are not so fast on the Formula 1 track as they were in the past . If someone likes cars , then they should go to Formula 1 races to hear the bolid engine sound . I think that is the best sound I have ever heard in my life . One day , the son of Lucy and her husband went to carve holes in the dirt to make a game , he made five holes and in the last one he found a brilliant jewel that had belonged to generations of gods . So he started throwing that for fun . One time that he took the jewel , it consumed the mind of the little guy and that made the jewel emit some sounds that only giants could hear , so a mountain stood up that was the face of a giant and he perceived negative vibes , so he killed the guy because he had the most important relic of the gods . I hope you enjoy your trip to Seoul till you left our country . England does n't have anything . You are the worst and most horrible country in the universe . With reference to the recent advertisement about ' USA CAMP SUMMER ' , I would like to express my interest in the position in the camp . I think I am a suitable candidate for this job , because I like children and I have experience of babysitting . Also , I work very well at making food . It was presented by a politician , an economist and two environmentalists . Teens should not drink under the legal drinking age because they could get into trouble with the law , they could cause harm to themselves and others and could have a higher risk of alcohol dependency later in their lives . This is an interesting question because I believe that my family are my best friends , but at the same time , they are not my friends . My family are my best friends because they really take care of me when I need them to . I started this sport when I was 10 years old . where My father was also playing this sport , but he started it when he was older than me . He was about 30 years old . where Squash is one of those games that can be played at any age . I love this game because I find it exercises the whole body at the same time . We run in a small space , moving our hands in stretched and different ways , and at the same time we work our minds , so it needs care and quick thinking , as much any as exercise you will find down the road . I think that anyone who wants to start a doing sport should play squash , which gives a you flexible and healthy body . At the same time , this sport can be played for a long period of time without caring about age . I have practised swimming for 3 years . I am a good swimmer and I have competed in different swimming tournaments . My favorite swimmer is Michael Phelps because he was the best swimmer in the world , and I hope that he returns to the Olympic games in Rio de Janeiro in 2016 . My favorite style is the butterfly and I always practise this style because I want to improve . Although public transport is cheap and more environmentally friendly , it is not as flexible or comfortable as the car . Except for in the big cities , public transport is not an easy way to get around the city . That means that in the future even more people will stop using it . In the first step , the bank notes have to be designed considering some , like background color , artwork and security issues . After the design has been prepared , skilled machinists prepare metal plates in the second step . And then , some sheets and good bank notes from damaged sheets which are cut into individual bank notes and separated into equal ones and packed and despatched to where they are needed . In today 's class , we were discussing whether or not we agree with the often enormous salaries of football players . For me , as a passionate soccer player , it is a good point to consider . I recommend to the clubs , be warned . By this action a Ronaldo or Messie can be paid and it is possible to buy the best team for the league , like Bayern Munich is doing at the moment . This makes football or soccer ever more exclusive to a certain group of fans - hooligans . But if the prices are too high , no one will visit the games anymore . First , I think that this job is perfect for me because I have travelled around the world and I know a lot of different kinds of food . In fact , on my last trip to Japan I learned to cook sushi . One day , Michael wanted to go out , so he called his best friend and suggested going out together . His friend agreed , so Michael put on his clothes , went out and closed the door , but at that moment he knew he had made a mistake . When he got back home , it was late and the meeting was canceled . I know that I am a suitable person for this job , and I can say that nobody is better than me for this incredible job , because I have travelled all over the world and during this experience , I have seen the necessity of work to finance my journey , so then I have dedicated myself to working on summer camps , and I have a lot of experience of this . So , in conclusion , I think that if you contract me , you will get an excellent person and an excellent worker . In my opinion , public transport is more expensive and it is less comfortable than a car , because a car is faster than public transport . Online Learning Positive things about online learning are that you are more mobile with your smartphone and you do n't have to carry so much paper with you . Also , you 're on your own and at your own learning speed , which makes it more specific to the user themself . Maybe you 're more comfortable on your Smartphone than with paper . Negatives about online learning are that you 're not listening to much from a real person and more from a Computer . If pyou do n't have any listening things in the app you do n't learn how to pronounce the words . In my personal opinion , its better to learn from a teacher not only because you learn to pronounce the words correctly , but you also learn from a person , which is , in my opinion , way better . I think we spend enough time on smartphones , so I do n't think it 's the best if we use them to learn as well . For words , I think it 's perfect , but all the grammar and talking , I think you need a teacher . The advertisements are a bit tricky because they know exactly when children watch , for example , after school . Recently , there is a growing country whose environment is destroyed by building houses , which accour for some debate . Apparently , it is a good thing , because it is a significant symbol of the development of a country ; however , on the other hand , doing large - scale building projects may bring a galaxy of problems . In a word , the government should appeal to people in some way , that we should protect the earth rather than only focus on personal profit . It happened to me once and was very uncomfortable . Another very common risk is falling on the court , which can cause dangerous scratches . It is very nice that you remember me . All this started in July . I needed money which I could spend during my study semester . I know that you are like me . Best wishes your bro Bartek ! In later times , society felt the need for change because of iniquities that were committed in the country and the Mexican Revolution explotes , the building was abandoned because the government and country did n't have money for construction , to the point that the building 's metal structure was used for weapons . They even asked me who I wanted to go with . They grabbed my hands , wanted me to go with them , but I had no idea , because I love my mother and my father so much . Finally , I cried , because I could n't make a choice . My father and my mother saw me crying and decided not to keep going , and they said sorry to each other and me . Nowadays , I usually go back to the swimming pool at the weekends . " So many friends learned to swim . Then , the metal plates are prepared by skilled machinists . The next is called partially damaged sheets , and bank notes are separated into good and bad . Good sheets will be cut into separate bank notes and packed ; the bad ones will be destroyed by fire . This is the method of making bank notes , and the operator should pay attention to the printed sheets and how to inspect them . The most important step is the inspection by hand . That is to say , they should be separated into good ones , which are to be cut into bank notes and delivered to the banks , and the bad ones , which ca n't be utilised and are burnt securely in the last stage . Actually , I realize that business is not for the major , everybody knows Tec is very demanding and if you want to be there , you must work hard . I dream of being a Business Administrator when I 'm older . First , I want to work for a sports company like UA and then I may have a little variety on works . Tennis . Tennis is not just a sport anyone can play , but it 's a professional sport and it needs more hard training and more time to be perfect at it . First , why did I choose tennis ? Seriously , in 2003 it was my first time watching the game on TV when I saw Roger Federer play . I think he is the one that made me love this sport , due to his professional movement when playing the ball . From that time , I was interested in this game and watching all the championships , so more time , time and time it is my favourite sport . Aisha is in her thirties . She 's from Morocco , so she has Arabian features . For example , she is n't very tall , around 1,57 metres , she has long dark wavy hair and big black expressive eyes . Moreover , it is more appropriate to start constructing roads which are convenient for the majority . First my favorite sport is football and I like it for many reasons . For example , while you are watching a match , you feel excited and entertained . Besides that , football has the best football player ever , which is Leo Mesy . He 's the best and he 's able to do awesome stuff when he 's playing . The company responsible for rubbish collection collects the garbage , already separated by the families , and afterwards does the recycling . As well as the informative sessions about the environment organized by the Mayor for all of the residents , it also has lots of staff that clean the streets , take care of the city gardens and collect the garbage . My favourite sport is football . I love it so much . When I was young , I used to watch football and my favorite team is Barcelona . I used to play with my friends in the street and we were so happy doing that , and after that , we played on a football pitch like in real football . I love Cristiano Ronaldo so much . He is the best player in the world . A few people have told me that Messi is the best player , but I feel angry when I hear that , because that is not true . So I am looking forward to meeting my favourite player one day . It 's like a dream for me . last night we went to the swimming pool . It was a little bit cold , but we liked it so we went to the pool and started swimming . I know how to swim very well , but she does n't , she has to have a support otherwise she ca n't swim . If you want to visit me , you have to do it in the next month because I have a football tournament , and I must participate . To answer your question , I can not attend the party because I do not like those kinds of parties , but I wish you good luck ! Almos Indeed , all the indicators show that human behavior will not change , at least in the coming decades . The way of living changes every day : if we think about our grandparents ' , but also about our parents ' lives , we notice many differences . Above all , they talked more . We live in the era of telecommunication and no one could live without their mobile phone or their computer . Moreover , also , simple things have changed . For example , the food we eat . Some time ago , everything was natural , healthy ... but now everyone always eats " junk food " and things like that , which are completely unhealthy ! About food , I imagine a future society in which restaurants wo n't exist . People will eat only junk food and food which has been prepared before , food in tins ... so all unhealthy things , which will cause many problems . But phobias are fears which we experience that are life - threatening and they can disrupt everyday life , but people can get over them with the right sort of therapy . So if we want to live a life which is n't controlled by our fears , we must try to be more objective and pay more attention to real dangers . Alison read the note , smiled , and immediately put on her coat . She went to her parents ' house because they sent her an email that said that her father was okay after the operation . tube and train , but is there a future for them or not ? I am going to answer this question by discussing disadvantages and advantages and , finally , I will give my personal opinion . Secondly , public transport is more ecological and less polluting for the environment , because it produces less polluting emissions , and many public vehicles use green energy , such as electricity or gas . In conclusion , from my point of view , public transport is more necessary now than ever before . Cities contain more automobiles and the pollution is worse .We need to change our way of thinking , and try to use public transport as an alternative to improve the environment of our cities . Some buses have special and preferential seats for old people . Many cars pollute the planet and people are allergic to the pollution . The train does n't cause pollution . will be more healthy . I suppose their lifestyle is intolerable , resteless and I really sympathise with them . The majority of outstanding and appreciated people are frustrated . They turn into arrogant and furious idols because of a lack of private life and perpetual attention . That is a pitiless trial for celebrities but , through thick and thin , they go on .They achieve the goals made exceptionally for the sake of money and vanity . In itself , the film did n't have an special topic , but I can describe it as a friends film , as there is a lot of laughs , jokes , and it shows that friendship is the greatest thing that exists . The public transport most used in Toluca is the bus because it is the cheapest , but it is very bad and unsafe . The quality of it is very bad ; the buses are old and obsolete , they have broken windows and old broken seats . The service is very bad . The drivers are very angry and stressed out so they do not drive with caution . In Toluca there are reports of high numbers of accidents involving buses . I think if the government do the best work about the transport , they can save it . It is true a car is more comfortable , but it uses a lot of mineral resources like petrol which can pollute the atmosphere . I do n't think public transport does not have a future . There are a lot of people who can not buy a car and they have to use community transport . The Internet is a useful tool for everyone , so we are communicating with distant friends , and we look for important information when we are studying or entertaining ourselves . First of all , I am going to talk about the advantages and disadvantages of this topic . The first advantage is that the Internet is very fast . For example , when you want information about something . The second advantage is that the Internet by websites , such as Twitter , Facebook ... You can speak with your quick friend , or you can meet with them on the website . Therefore , you do not call them on the telephone , because the internet is very cheap . As for disadvantages , at present , children are always playing with their computer games and mobile phones . To sum up , the Internet is the most important advance in the world , but there are a lot disadvantages and advantages . From my point of view , the Internet is useful for everyone , but we should not abuse it , and should carry out other activities . Recently I have had a job offer from a company located in London and it requires me to have an IELTS score of 6.5 for the visa . In particular , some people do n't have a car and some elderly people find it difficult to drive a car by themselves , so public transport helps them a lot . That is why I think public transport is really important for the public and there are a lot of important things that will be possible in the future . And maybe you will become a famous player or an ordinary player , but you will feel like a famous one . I think the sheep should be transferred to a place where there is specialisation in animals with the same condition . We become not only older , but also wiser . We learn , but the most useful thing to learn is to get a lot of experiences and , for sure , to make mistakes . But we have to be honest with ourselves and admit our mistakes to avoid them in the future . Becsuse it is turning red ! As you know , my grandmother currently lives in France with my cousin John . Unfortunately , he has to do a three - month course outside of the country . John needs to leave France next weekend , but it is not possible . I have to go and look after her because none of my family can spend three months over there . Nowadays , technology is more modern than in the past and people are always developing their inventions to make them more useful . We as humans living in these days , rely on technology . Every aspect of our lives is supported by technology . One example is television . In the past , we used it only for watching the news and movies , but as time goes by and the technology develops , now television has other functions . Second , these days , television has become modern and that means television can be connected with the internet . In conclusion , television can entertain and also educate , because television programs do it in an interesting way . Football is usually a sport that appeals primarily to males , but I 'm a girl and sometimes I realize that I know more than some males . I have received your letter . I agree with the statement that Mark Twain is the greatest American writer . When I read his poem " The Adventures of Tom Sawyer " I was excited . I usually go to the seaside on Sunday morning . Firstly , they design the bank notes ' background colour , its artwork and security issues . Then the sheets of bank notes are printed . Printing colour on both sides and use special ink and the images are slightly raised . Finally , they find good quality sheets and some partially damaged sheets or bad sheets . At the same time , bad sheets and bank notes are securely destroyed . The other reason for my opinion is that almost all people prefer using the eyes and ears to other people , rather than write and listen to understand new things . That 's why I think that it 's a good moment to see things in a new way and that can be a very good opportunity . Definitely , it does not always depend on the kind of programme , but I think that nowadays , a lot of television offers help for people to develop more effectively . I am communicating with you with the purpose of letting you know that we are going to set up a meeting at my office with the purpose of discussing how we could use social media to improve the communication with our suppliers . I think a great time for the meeting would be next Monday at 4:00 p.m The purpose of this letter is to notify you about some complaints that some citizens have . This is related to why only boys have to be in the draft for military service , and girls do not have to . However , I just go to the restaurant on special occasions , such as my birthday or when I pass an exam . First of all , we should think of a design and decide the background colour and artwork , or even security issues . The people recycle the rubbish and they throw away the rubbish in different containers . While I struggled to walk . Finally , I saw a light appear and I woke up . We will have people that use the television as fun , most of the time ; but we also have other people that use television for research . For example , the channel '' Animal Planet '' has a lot of information about animals and how they live . Nowadays , everybody has the ability to buy a television , so the numbers of TV viewers is going up ; even if you are poor or rich ; most can watch a movie , or a documentary . Also , I think swimming can keep your body fit and it can make the swimmer cool down when it is a sunny day . I ca n't pronounce well . The home was on the shore . There was a tunnel and it 's hole was in the deep . At first he used to be polite and obey the other orders . Once a day , he met a girl called Sarah . She was 9 years old . Although Michael was bigger , Sarah could control him . Every day they went to the sea to play and swim until the sun set . Once a day Sarah made a challenge to Michael about who could enter the tunnel from the hole in the sea and get out of the other hole on the shore , but Michael was afraid . He was asking himself which animals could be there or if there was air there , but he had no choice , so he accepted the challenge . Sarah told him she would go first . She took a breath ... a deep one , and started to dive . Our city is quite clean and habitable ; people are more careful than before . Generally , we use a cricket ground which has an oval shape . I tend to ride my bicycle from home to work , I have n't used my car or buses for a long time , because it is not healthy and costs a lot . A bicycle is for me the best way we can be fit and in a good condition and also create less pollution without cars . I switch on the home heating for a temporary period . When I am working from home , I use more energy to warm my home . We learn to really segregate waste and , in the future , how we could , for example , use the same glass a second time . Anyway , a lot of people will need some transport in some cases , not private , but public , and we ca n't say that this kind of transport will not be useful . As we are fully dependant on individual generators , these are causing multiple problems with the weather due to their smoke , oil and gas left behind , in addition to noise , of course , because they are the main source of the 18 continuous hours of noise . People , especially generator owners , have started using Canaopies , using very long pipes to get rid of as much as they can of the pollution . Other residential areas , using their potential to maintain the environment by planting trees , roses , have numerous green spaces . Also , recycling the trushes is a very intelligent way to keep the town clean and get multiple uses out of the products in industry lines . on the other hand , the eldest people in our city have many social responsibilities and are encouraging the youngest people to participate in the annual gardening festival for the indoor and outdoor gardens . I like the Indian restaurants in the city . In addition , the infrastructure and roads are well organised . In the village where I live , there is a lot of vegetation . For that reason , we try to protect the environment . One of the things we do is to do maintenance every week to the vegetation zone , checking if there is any garbage . To avoid this , we teach the younger generation environmentalist actions so they do n't throw cans , paper , or candies on the floor . They can also help the older people . There are cases where a person throws garbage on the street or on the vegetation . To avoid that happening again , we have a punishment that is to pay some money . If they do n't , they wo n't be allowed to enter the village park and zoo again , unless they are visitors . In that case , we tell him or her the way we live in the village and , we give him or her advice to keep a beautiful place without garbage . Another environmentalist action we use is to protect the wildlife by taking care of them . For that we have a care centre and , other additional institutions . We also make environmental protection centers where people can visit and learn about this . To sum up , our village is very focussed on taking care of the natural world that surrounds us . If you want to have fun , you can go to Parque de la Costa . There are many interesting rollercoasters . Nowadays , in school , we learn a lot of subjects which we use more or less in our lives . Some of them are really important , but some of them are just a waste of time . When Freddy began to sing , the kids screamed and they sang with Freddy the famous Freddy Fazbear 's Song . Bonny played the drums and Chica served the pizza to the children , This year the establishment closed because they found the body of a dead child . I think it will be changed to become a bubile city and contain more high buildings . If you have a car , you probably think that travelling by car is better than by bus , but there are a lot of people who do n't have a car , so they are used to going by bus and , for them , this way of travelling has become more convenient , because they have done it since they were children . She has twenty - seven maid of honor dresses . Meanwhile , she falls in love with a boy who is very handsome , but he works for a magazine and he has written about weddings in the city . He is a good writer , and she unknowns that . This story develops a mixture of themes such as courage , family values , friendship and love . In conclusion , if you want to have a good time , you should go to the cinema to see this film with your family , because it is an interesting and emotional film . Transport pollution is one of the most dangerous . On the one hand , that quantity of cars ca n't be forbidden , because it 's a personal right to have one or not . Also , another improving measure might be increasing green areas in cities and towns . Factories damage nearby areas and water extremely badly . In my opinion , firstly , new buildings on the banks must be forbidden at all . But sometimes it can also affect us in a negative way . Most people around the world can see any news live . Media is more helpful for people . Television is also used as a study resource , for example for smart classes , Suddenly , an old carrying a heavy load hit him and fell down . I suggest everybody should have the same evening walk . You just need a pair of comfortable shoes ! Travelling privately makes one free of issues like harassment . I like a lot of activities , such as travelling , reading , playing soccer and watching movies . Besides , public transport will reduce traffic jams . Finally , the kind of life that we will see in fifty years from now will have a lot of stuff to help people to have a more comfortable , easier and faster way of life , but this will be only to make more money and consume more and more . Also , things will be faster of waste to make people change their possessions more often and stimulate consumerism . Nowadays , an increasing number of people are concerned about the phenomenon of farmland , forest and wetland disappearing because of some long - term human activities , for instance housing and transport networks are built , destroying the balance of the environment . Firstly , it is clear that more houses and transport networks are convenient for our people . What is known to us is that the population growth is a big problem which creates a need for more space for living in . And building more transport networks is also a benefit for us , for example , the high - speed rail can shorten the time spent on traveling , while the animals may not welcome it . She was very shy , sensitive and embarrassed . She moved to Kyiv , graduated from university , and started to work . Although she tried to hide , she became a great and famous model . It would be interesting to accompany your best friend or your beloved to enjoy your time . The investigations were concentrated above all on the construction site of Mapello . There are many educational programmes which we can get benefits from . Nowadays , pollution is a problem that we have to solve before it gets worse . As we can see , modernization is causing damage to rivers and seas . While you are with me , you will do curriculum vitae and then we will travel around my country and we will become good workers . I was really comfortable in my bed and I could n't believe that someone had interrupted my calm . I closed the door hoping never to have to open it again , then I went to the bathroom and took a relaxing shower . I practised dance a long time ago , but with age , I 've preferred to practise an easier sport . If I could give advice to new practitioners of Pilates , it would be to read a book about this method and to take time choosing a good teacher . The lack of sleep often makes me unable to concentrate in class . And just as I was becoming a professional football player , my right knee was injured . I like that phrase because the boy was happy because he got to He is , for me and many people , an excellent actor because his personality is extroverted . Thank you very much , Joe , for thinking of me to be your witness . I feel very proud that you thought of me to be your witness and , of course , I accept and I will be in Toronto for your wedding . Tell me what kind of suit the witness has to wear , whether I have to bay any colour of tie , a flower .... I 'm really very excited about your wedding . Your muscles will be hard . One day I visited my friend Jimmy in New York city . He was a young man who was an expert on trains and tourism . He talked about how citizens and commuters move from one place to another . He told me that Grand Central Station was the largest terminus in the city . He showed me where the landmarks of the Big Apple were so sightseers could go there . He showed me the city and we went to different parts . First he took me to Columbus Circle in the south west corner of Central Park where there were the most expensive apartments . Then we went to the lake where the jogging tracks that circle the lake are popular with early - morning visitors . Then we went to the Museum of Natural History that was located near the Metropolitan Museum of Art . Then I got focal on the subway trains , so we went to Grand Central Station . When we arrived , I was amazed to see a lot of people going to work , so he told me that it was convenient for people to use the train because it is very fast and for the government it was a great economic business . Then he told me that one of the characteristics of In this video game , you can kill , jump , dance , and eat all you want . It is a very good game . I think that it is the best " shooter " and that " Arctic Combat " is good too . Today is the big day , the day of his presentation about acid rain and its consequences on the environment . Feel the drama and realism of the best known event in Easter , played for nine years by the inhabitants , " The Passion of Christ " . Discover the main representative museum there , the olive museum , where you are able to look at its history in each of their corners , in addition to tasting its exquisite oil . The first time , it 's difficult , like any other sport , because you do n't know and you have to improve by yourself , but if you like it , you will find it fascinating . It is true that in summer we have to be careful about with te hours are too hot and we should avoid running . I am happy to say that I have only positive points to present due to how welcome I feel when I arrive at the reception . Because of that , sometimes I feel free to ask them what I want and depending on the way they receive my comments I can just let them do the task I asked them without keeping on watching them . I like cooking very much and I think that there are some activities that we could do in the kitchen , like baking cookies or making fresh bread . What I liked most was that you think you know what is going to happen , but to your surprise , it always turns out to be something unexpected . Despite the fact that there is n't any Hollywood star , all the characters are played very believably and some scenes wo n't let you sleep . My favourite place is the beach that is near , just about 20 miles away from my flat . In toward to the modernization of life and technology , people believe in different perspectives of their way of life , but the majority of ones are totally utopian . Actually , we have a lot of problems with traffic : lots of carriages on the railway and they are n't running ; the number of cars in the street causes pollution ; crowded railways cause a late arrival . We discover , in this context , special diseases caused by traffic : stress , violence , pollution , lack of safety , and so on . If public transport were of higher quality , faster and with lower fares , the majority of citizens would prefer it : it is calmer to relax and read a newspaper or a magazine during the journey on mass transport than in individual transport ; moreover , the time spent to go and come back would be reduced , because it promotes fewer carriages on the railway . In the morning , we went to Ocean Park , we saw dolphins , cats , horses and many other animals . In the afternoon , we went on the roller coaster . I screamed at the top of my voice and called for help . Actually , I hate riding on roller coasters . We played mind train , punch , and a lot of other games . At the end of the day I was running out of gas , because I was too tired to walk any further . It has both advantages and disadvantages . But why did I write this article about someone who seems to be a simple guitarist . The reason is just one : the life of this man who one day just disappeared from the fans ' sight . On April 2014 he was unable to give a performance . On September 2014 , a note was released and published on AC / DC 's web page . The note said : " Malcolm is taking a break from the band due to ill health " . We are not alone . We live with people who are family for us . Television and other things invented by technology are part of our lives . I think every family has got a television in their own home and , for example , I have 4 televisions in mine . There are a lot of interesting TV programs where we can learn something and there are also intriguing television programs . It is not the best thing for our eyesight and our health . In general , I think our technology is not the best thing for our health and TV and other similar things are responsible for our problems with health and eyesight . Laura , Adriana and me ( María ) love being a little bit cheeky , in a good way . I remember , because we won . But when I understood how much happiness this game gives me , I started more running and training . not believe in yourself . I would like to inform about correction of my family name in the result sheet . Could you please correct my family name . Sport is very important for our bodies . It has many benefits to improve ourselves and give us self - confidence , so we should practise any sport we love because it can change our minds for the better . About me . I like playing volleyball and I enjoy this sport when I play it because of its being useful for my body . In Poland we have a lot of interesting places to visit . Poland is an amazing and interesting country . If you have working in Poland , the best way is job on holiday . Every month , Huang Ji Huang always have a special offer for their customers , and for this month Huang Ji Huang will give a 20% discount to customers who spend 500 IDR or more , for complete information you can check on the website or call the restaurant . I hope it will help you . Michel arrived home earlier that day , and when he opened his door , he saw That can be annoying . This is good , because sales never went down . I think my town really takes care of the environment , because there are a lot of parks in this town and they are very clean . I think almost everyone loves parks , because a lot of people go to the park and have lunch , picnic , do exercise , nap etc . There are many sports grounds , for example , tennis courts , football pitches and play equipment for children , so I think my town takes care of the environment . That means everyone will be able to the in be best condition in both mind and body a for long time . Generally , sports are growing our minds continuously . My favourite soap opera is " Friends " . I remember watching it at home at the age of twelve and laughing out loud with my brother . My favourite character is Joey , who is a silly , innocent man . One of the main advantages of family is the recognition you are given at a specific age . Children require special attention to grow up well , and that can only be given by family . For instance , homeless children are more likely to fail in their education or job and not adapt to society . Moreover , families play an essential part in protecting their members from bad atmosphere , and it probably reflects on their performance toward country , leading to effective , creative and useful civilians . The last film I watched was " The Others " . It is a horror / suspense movie . I was really scared . and the mother thinks she is lying . But after a while , she believes her and starts searching for the intruders . Another example of why lives are going to change completely in 50 years is because , also , that connection with other cultures makes people more concerned about their own health , their expectations of life and the way they want to live it , because every day it will be easier to see how much we are hurting the earth , so we will see faster the impacts that this has on our lives . The companies who produce products with harmful ingredients are very powerful , so that this suggestion is very hard to enforce . But one day , two guys with quad bikes saw something wrong , and they sad " what 's that ? " . They saw a dead body . They were scared and ran to their camp . The other friends called the police . After two days , the police saw somebody at the crime scene . The policeman asked them what they were doing there . He was scared and puzzled . The policeman was sham feom the gues and he apologised . television serves the dual purposes of entertaining and educating people . In order to cope with the competitive world and get recognized in the corporate world , one must strive hard , which in turn increases their stress levels . Also , I have not had an invitation to an interview yet . The problem is that I am from Poland and I could be in Great Britain from 22 to 25 February . Well , I 'm Sebastian Vega and I 'm studying engineering sustainable development . Nowadays , public transport is hardly necessary to our life . Consequently , gorvernment has started to support and take care of public transport . How can we revive public transport ? They wear black and white clothing like the decoration of the establishment . Luckily the schools are closed for ten weeks , so the young girls and boys have a lot of time to spend their Nowadays , there is very little public transport . The general public prefer much faster and more convenient ways of traveling around . Though public transport is used in major cities to avoid traffic congestion , it is widely recognized that public transport is eco - friendly . Many people say that public transport is not comfortable . That 's true . From my point of view , a bus is not so uncomfortable . Public transport is also used by children like me who want to go to school , high school or to university . Finally , I think public transport has a very good future , because it has very good advantages but also some slight disadvantages . It 's also very useful for some people . In my opinion , public transport should n't disappear . I would feel more energetic throughout the day If I had some busy or tight - scheduled work . I came across your advertisement for this job and I really think that I would suit this job in every respect , because I have a friendly rapport with people around me . I would be pleased to receive your positive reply . Local Parliament haven't regulated principles or rules for the environment , so ecosystems have been destroyed , rivers are contaminated and pollution has increased in my town . The recycling of plastic , paper , cardboard etc , by the population of the biggest neighborhoods in my town is a way to improve the environment . The plot of this film is about a 25-year - old naive woman who was living and studying in Taiwan and one night went out clubbing and met a crazy guy who involved her in a seedy drug smuggling racket with a Korean criminal gang that forced her to be a drugs mule . People are getting used to driving their own cars ; it provides more comfort , and is more practical . The government are opposed to investing in public infrastructure , because the benefits are lower every year . I think public transport is better for the environment because going by public transport reduces the CO2 emissions and removes traffic from the streets . It is a true statement about cars . Travelling by car is so much more convenient and the new technologies apply to the People should eat less fast food and do regular exercise to maintain a healthy lifestyle . For example , India has a high rate of unemployment , hunger , poverty which leads to an immense embarrassment about being Indian . Nowadays , the internet represents the whole of the knowledge that people have collected over the centuries . Nowadays , public transportation is available almost all around the planet . We can admit that the transport revolution has been plave in the last century , but due to globalization and technological development , the transport sector is always in continuous transformation . On the other hand we must mention how the plane sector has been growing . Currently it is the most common mode of transport for going away and that also means that shipping manufacture has decreased deeply , in order to let the plane market boom . Talking about local transport , we have a lot of choices like cars , motorbikes , buses , trains , but also , as we were saying , planes . According to the information donne , the most used mode of transport is the car as most families have one , but public transportation is getting more and more common for those who want to preserve the planet and develop other alternatives more respectful of the planet . In conclusion , we are seeing a new tend in transport . Increasingly , they are faster and more developed , with the latest technology included , but in contrast , we find also a contradiction , as we found another trend for traditional transport which avoids pollution in order to respect the Earth . I agree that commuting by car is easier and faster than most public transportation . However , there are serious problems that come from it . The number of vehicles on the roads keeps increasing and causes congestion and pollution , which are far more severe than the inconvenience caused by public transportation . Thus , I think the future of public transportation will be more prosperous . Later , if you want , we could find a job for three months . In my opinion , a good job for three months could be as a waiter , because waiters get a lot of money in the three months of the summer . I started my hobby when I was a child . Maintaining cars is expensive . He jumped out of bed and had a quick shower . There was no time for breakfast so he decided to buy something to eat near the office . In spite of that , he was dressed on time . According to the results of a questionnaire ( Houston inhabitants ) most of them play basketball to forget homework , problems and to relax in their free time . Furthermore , they give advice to all those novices at basketball " do n't ever lose the passion " , because if they give up , they wo n't play with the biggest players in the world . In conclusion , the real objective of the questionnaire consists of what the people think about the king sport of the United States of America . I love jogging because it 's a way to stay outdoors , immersed in nature . I fell relaxed being alone near mountains and snow . Then there are some requirements for printing sheets : color on both sides , special ink and images slightly raised . The most essential and key process is manual inspection of printed sheets with three categories : good quality sheets , partially damaged sheets and bad sheets . The acceptable and not damaged severely sheets are supposed to be packaged and distributed , which means they will be cut into separate bank notes , packed and then dispatched . He had a lot of animals : two dogs and three puppies , four horses , eight ducks and one cat , Lionel . Lionel was a black and white cat , and he was a very funny , fast and sweet animal . When I was a little girl I used to play volleyball and I really liked that . One day , I had a surprise . I met a teacher and he invited me to train in a huge gym in a team . Suddenly something happened . I needed to work to play my studies in high school , so life changes anyway . I needed to stop my favourite sport , because I needed to study at that time . It was more important to me . Today I do not play volleyball anymore , but I really enjoy dancing . Now I can say that it is my favourite , it is all of . The hugest gap is in 1981 , when the cheapest price was combined with the highest expenditure on cigarette packs in the whole interval . In approximately 1998 we can notice an equilibrium price at $ 2.75 and an equilibrium quantity at 23 billion packs . Firstly , I 'd like to talk about jobs . I think that these are the most important thing to worry about . If our studies get better , we will create more jobs and as a result the economic situation of the country will be better . Moreover , our capacity for learning more languages seems to be really adequate . Unfortunately , while there are a lot of teenagers that are working really hard , there are others that are all the opposite . I think it is probable that in some years the technology could have improved quite a lot , and this is a very powerful advantage for us , the young people . Because we were born in ' the internet generation ' as everyone says , so this aspect might be helpful for us . In conclusion , I 've got to say that now we do n't have to worry about the future , we just have to carry on in the present and do the best we can . The flowchart provides an overview of the steps for making bank notes . It shows how bank notes are manufactured from design to a thing we can use . My height is about 5.2 , my hair color is dark brown , my eye colour is black and I will be wearing jeans and a long shirt . I will be arriving at 20 past 3 . It was slow . This makes the I have to say that studying another language gives you more opportunities , because these days you need to know other languages to find a job and be more intelligent than your colleagues to get the work and that 's great . I have recently bought an electric car as a substitute for my traditional car . Peter looked at his watch and knew that he had to do something immediately . After waiting for an hour , the time came and , bravely , with a high confidence level , he walked into the office . Please , write me a list with the words that I need for technical conversation . When you drive your own transport , a car for example , you go to and from a specific place , but on a bus , you go to the bus stop and not to your house or school , work ... I 'm studying medicine . This major is very challenging although stressful , because the self - study is every day and there is a lot of information . Even though there are lots of different possibilities and scholarships , not everybody can afford them . I am 14 years old . I do n't have a favourite subject , but l like English because we can communicate all over the world . The names of my best friends are Agustina , Emilia and Micaela . We are strange friends . We are in 6º together and that 's when we became friends . I am applying for the vacancy in the summer camp . Morocco is a kingdom , like Spain and England . We have a king and princes . we went to the Trocadero . But the best was the Guards of Bukingham Palace . We travelled to London by plane , but to come back we travelled by car and boat . People contribution is very important in this matter . Firstly , hybrid cars are only allowed to be used during weekends . As a result of this , most people do not use their cars all week . This attitude has reduced the enormous amount of smoke pollution from exhaust pipes . Many factories are following the regulations and not draining the harmful waste into the water . In addition to that , recyclable waste is sold and the money is given to the relevant person . Town council not only encourage people to plant trees or gardens , it subsidises their green improvements . In summary , people take many initiatives and are moving forward to have a safe and attractive environment and surroundings . This is an international sport because in all parts of world there are people that they play it . Football is a famous sport . You can watch it on TV or you can see it live . There are a lot of level categories , the most famous category is the first . People that play in this category are famous although you can see them on TV . If you want to be a big football player , you must practise more time and your life should be healthy . This sport is the best in the world and the most famous and I think that it is the most enjoyed . The graph given shows the seasonal sales of ice - cream from two places at an English seaside resort from 2012 to 2014 . They are , respectively , an ice - cream van and an indoor public swimming pool . In the case of the ice - cream van , it sold most in Jul - Sep each year , nearly reaching 5000 dollars and it was still slightly increasing year by year . In the case of the indoor swimming pool , its sales did n't have large changes , it usually sold about 2000 - 3000 dollars ' worth in each season . It usually sold most in Apr - Jun and Oct - Dec and slid to the bottom in Jul - Sep . Unbearable traffic jams and no parking areas would be the main problems . Finally , governments and society are concerned about the environment and I think that they will decrease levels of pollution and co2 emissions . So , we can say that time is a double - edged sword , either helping you or against you , and the popular saying is right : " do n't put off the work of this day to the next day " because our work will accumulate . Then it will become harder to finish it . To ensure the best use of time in our lives , we need to be punctual . Punctuality avoids tension and trouble . Finally , even scientists have another vision of time . They have discovered that time is the fourth dimension through relativity theory , which exchange all concepts in science . Oh ! My brother , David , is going to get married ! Surprise ! The diagrams below show how bank notes are made through four steps and how bad sheets and notes are disposed of . Thirdly , they print the sheets of bank notes ( 50 banks notes per sheet ) with special ink , where colour is considered on both sides and images will be slightly raised on the bank notes . It is an Egyptian movie starring Khalen Aboelnaga and some young actors . The action of this film takes place in Alexandria , a city in Egypt , and it is about some young people who need a good chance to deliver their voices to people as they do n't have much money to produce their own albums , that sort of band is famous among young people and they call it " underground bands " . Their songs give a big concenet to the political and social situation in Egypt and they became famous after the 25 January Revolution . I choose this movie as it reflects what happens in our society . There is no chance for young people and if they find it , they face a lot of problems to save it and they do n't find time for other activities , and sometimes they work on something which they never learn from or love . In the big cities , they have begun to build green buildings , they use electric public transport in order not to pollute . The day after , we went to a perfumery and I bought a present for my mum . Nowadays , young people are influenced by the western culture , so they are getting more fashion - conscious . Youngsters are interested in wearing different stylish and colorful clothes . They are happy about wearing different color clothes . They do n't want to wear our traditional dress , such as sari , dhoti , choli and many more . They only like to wear shirts , pants , skirts , t - shirts and many more . Youngsters are influenced by watching different programmes on television . Using private vehicles is more convenient for them than using public transport . On the other hand , public transport does n't pollute , but the car pollutes , so , for us , travelling by car is better than travelling by public transport , but for the atmosphere , it is better to travel by public transport than to travel by car . Also , TV , radio , the internet , big companies have advertisements about helping the planet . To turn to , already people cook organic food with more natural products without chemicals . Technology is advancing very fast , in the best way . This is good for us because we will do a lot of things . As a result of that , we will have a better life , more healthy and clean in the coming years . In 1810 , there was a war for independence in Mexico and many people fought with other people . For example , Miguel Hidalgo is considered " The father of independence " and he fought with the Spanish monarchy . I am an Arsenal fc fan . I have been an Arsenal fan since 1999 . Buying cheap footballers has wrecked the Arsenal team several times because of the lack of experience of the cheap players . People from different cultures play in the same club . Not all of Russia is always under snow . I will give you a review of a thriller . The thriller is Hunger Games . It is about some capitals and people are chosen to play in a game . You have to kill people before they kill you . It is a movie that has suspense , because you want to know how they survive . In the movie , someone loves someone and they protect each other . It is really cute , but in the 3 movies there are bad moments with the family , capitals , friends , etc . This sport is an individual sport , so you win alone and do n't beat a team , but if you play tournaments in pairs the one who wins is the team . This sport is very famous all over the world , but in Italy it is n't very famous , because in Italy soccer is more famous than tennis . But I know that a lot of young people play tennis . I hope that Italian tennis players will be very famous all over the world in a few years ' time , then you wo n't wait to sign up to a tennis club and you will become a famous tennis player ! I saw your advertisement in a newspaper . I have also been a member of the association of tourism and ecology since I was 10 years old . I have worked for a few different companies and associations in the past . Usually I was a volunteer , but I was also part of a few European Projects where I was paid for my work . My best leisure time activity would be hanging out with my friends . l like to go to the beach with my friend or alone often . I enjoy watching people and children having fun . l like the cool breeze from the ocean while I 'm walking along the shore and listening to my favorite music . I really think that we should go to that new centre that you wrote about in your last email and do some of the activities . But we could also try the climbing , but it would be better if we could climb outside , in the countryside . Email me soon and let me know how you are getting on next holidays . I think that public transport is much better for the environment than private transport . So I do not agree with this affirmation . In my opinion , travelling by car is much more expensive and harmful to the environment than using public transport . The menu is very well constructed , and the food is based on local products . This problem is that some apparatus are broken and the paint is bad . For me , the solutions to these problems are easy . With the first problem , you should organise the timetable in order to have one class at a time . And the solution to the second problem is that you should do maintenance once a year . I look forward to your positive answer . I am excited about the idea of being with and interviewing other students from different parts of the world . You do n't need a lot of equipment , so you do n't have to buy a lot . I think for people who are fat , they can go jogging , but a little bit slower . Unfortunately , Agatha ca n't find sufficient clues to identify the guilty party . I prefer walking , because the bus , helicopter , and metro are very polluting . The pollution is the first problem with public transport While I was ringing the bell , the neighbour 's dog started to bark . It was like it was waiting for a terrifying event . Nobody opened . When Michael saw me , he opened the door , but straightaway closed the door and at that moment knew he had make a mistake . Saying that , the music that they like is pop music and reggaeton as they can dance together . Also , the television programmes that they watch are reality shows . In addition , regarding clothes , young people wear a dress , skirt or jeans . We were going to Gdańsk to see the new stadium that was built for the UEFA European Championship . In the car park in front of this building a very nice and crazy old man helped us and charged the accumulator in our car . This report shows the sorts of shops which are located in Moral de Calatrava . It is thought that Chinese shops are the cheapest by far . Something more fashionable : there are also a few clothes shop where you can find a lot of by fashionable Italian and Spanish designers . If you need something for a special event like a wedding , you can go to three shops which are specialised in that . Because of different cultural backgrounds , the speaking styles of international students who come from different countries are different . Do you have any different eating customs ? So . I need more information about eating customs in different countries . In Korea , we usually use chopsticks when we eat meals and spoons as well . So , I have to learn to use chopsticks to eat . We think it 's important to respect meal manners . All thanks to new technologies , innovation in the field of medicine and new scientific discoveries . To my mind , our lives have been improved in these years by smartphones , satnav , digital TV , the Internet .. First of all , in the next 50 years people 's lives wo n't resemble at all this . Apart from that , I imagine the world with everything automatic , planes that take me from New York to Dubai in three hours and robots instead of waiters in a restaurant . I can not agree with the statement that there is " no future for public transport " given that the premise is " travelling by car is more convenient " . First of all , public transport is rather more convenient than a private car . Despite this , the restaurant is decorated with a full set of musical instruments , hung up on the walls . On our earth , hundreds of millions of people live . A great number of buildings stand on the land , even though the place probably should belong to animals . However , we forget the one important thing : the earth belongs to all life . Our flats and houses make the other animals lose their homes , and it leads to environmental deterioration . We make the transport easy . However , we take away other animal s ' lives through carelessness . THE REASON WHY I ADMIRE HIM IS BECAUSE HE WAS DETERMINED WHEN HE WON A SCHOLARSHIP TO STUDY MEDICINE IN RUSSIA . HE LIVED THERE FOR 7 YEARS . HE HAD TO LEARN ANOTHER LANGUAGE AND LIVE IN A COUNTRY VERY DIFFERENT TO OURS . NOW , HE IS THE BEST MEDICAL INTERNAL . HE HAS A BEAUTIFUL FAMILY . When he was 21 years old , his father told him something about his family 's secret . Just enjoy your life day by day , and be thankful for an ordinary day . " It is large , clean and comfortable and has air conditioning and internet wifi . It offers many kinds of delicious foods , like meat , chicken , seafood , and if you want something different , you will find it there . It is suitable for my class because it is different from any other restaurant . These days , computers are multifunctional . I am writing to you about the advertisement in the Mirror daily newspaper . I can speak several languages , like Spanish , English and Russian . I am available to start to work immediately . Your faithfully . I recommend this sport to everyone , because it could be , as it is for me , a moment to distract you from the world , a moment to spend without thinking about tomorrow . Secondly , other factors have an impact on the behaviour of older children like teenagers , it is not only their parents but other people , who surround them . It is a time when children must choose which people are good or bad , and which way they will go in a difficult situation . For example , will they drink alcohol or will they have fun without any stimulants ? Working as an ITC is very exciting because you need to program everything , it is like a challenge , although you can do different things . You can be on duty in your house and deal with your boss by cellphone , so do n't be alarmed if your children bother you . It is a little stressful when you have a lot of work . I hope when I have my job I will be in charge of IT department security . I would like to tell you about this experience and how much I enjoyed working in there . I was responsible for selling the movie tickets and having a good time . Michael closed the door and knew at that moment he had made a mistake because he lost his house . He mostly played in the number 10 even though he also played in numbers 80 and 45 . Nowadays our world is fighting every day against different problems . One day there is the problem of violence , one day the atmospheric conditions , or many other problems . But I imagine that in the next years we can begin to spread the use of alternative resources , such as electricity generated by the light of the sun 's rays . Or in addition , we could use the energy generated by the environment , such as the wind or inorganic waste . The movie is about a doll called Annabelle which was kept in a museum in Conecticut where she is visited by a priest who blesses her twice a month . John From finds the perfect gift for his pregnant wife : a beautiful doll dressed in a wedding dress . Unfortunatelly , in a horrible night , the couple 's house is invaded by a Satanist group who attack them and leave just blood behind them . The Satanists invoked an evil entity that is capable of the worst things ... Annabelle . After Mia gives birth to her daughter Lilly , Annabelel wants to kill her . Even the priest doesn ' t know how to help the unhappy familly . Everyone is terrified and finds out that a demon is attached to the doll . The gym has many problems that we are going to describe : The first problem is that we do n't have enough apparatus for all of the students . The second problem is about that some apparatus are not working well because the school hasn't done maintenance a since long time ago . For the first problem , in my opinion , the school should buy some other apparatus , because there are not enough for all of the students , I hope my proposal will be useful to you . I am also committed to preparing monthly reports for the newspaper supplement " The Voice of Women " which is published by the WATC ; the " Women 's Affairs Technical Committee , and I have a collaboration with Environment and Development , a magazine which is published by the Center for development work " Maan " , and other websites and news and media organizations . First of all , at home we recycle plastic , glass , paper and cartons , oils , clothes , batteries , putting organic matter in a special composting bank so that we avoid burning or burying in excess those scraps with other materials , and , finally , all the other things are sent to a special tip so that we avoid dropping them anywhere . Then , when I have time and I see a senior citizen in the street putting their scraps in the wrong bank , I explain to them how they have to recycle and how important it is for our environment that we carefully recycle . This has some advantages , such as it being more comfortable and faster . On the other hand , private transport is damaging for the planet and we must take care of the planet . We can help to prevent the pollution of the environment if we take public transport , which does n't pollute . At the moment , there is more than one car per person . That is a problem for me because people do n't take care the of environment . I am planning to visit his company . Life is unpredictable and unforeseen . But insurance is also a necessity and indispensable for peace of mind . It gives us surety to live life securely . It gives competition to national companies . By virtue of which they work properly mannerly and give better option to policy holders . People can always buy a nominal premium we should inform them about the types of insurance as well as the benefits of insurance . It 's a very moving book , but it is n't difficult . I think it 's for teenagers , but it is also good for adults . All over the world , people always need advice to keep looking after their environments . First , the municipal should do workshops in schools and universities providing students with tips that should help us to make our environment clean . Second , they should run awareness campaigns about the environment ; for example , telling people to put their rubbish in waste paper baskets , which helps workers to recycle it easily . Finally , to stay healthy , we need a healthy environment . suddenly , a krav maga class started in a gym close to my house . Diabetes is an increase of glucose in the blood , There are two types , first Diabetes Type 1 which is present in children , the patient needs insulin every day . Also , this diabetes is caused by the destruction of the insulin released by the person 's immune system . Diabetes Type 2 is present in adults ; the insulin is generated but it does not work in the body , so the amounts of glucose are stored in the body . So it is necessary to eat vegetables and fruit and also to do exercise . At the weekend he usually plays football or basketball and this year he is learning how to rock climb . After the exams finished , I went home and had nothing to do , so I thought that I needed to watch my dramas because it was a week since I had watched them due to the exam week . I was so angry , because I was finishing the puzzle and five pieces were missing . So I began to search the whole house for the five pieces but did n't find them . It was destroyed by a volcanic eruption in 75 BC . Vesuvius - this is the volcano 's name - covered it with a lot of ash so that walls , houses , food , clothes , bodies of citizens were preserved as they were . In addition , it is possible to book special tours in which there are guides dressed like pompei 's citizens . There is a unique atmosphere ! So , I think the government should have to draw up a proposal to solve the problems between the use for urban areas and countryside . Hi ! My name is Cátia and I am a student of electrical engineering . I am in the third year at university , I do n't know what the Master 's will be that I am going to do , but I want a Master 's related to programming . I want to write a review of my book about Nigeria and read another book about robots and their mechanisms . In the first place , I think that you must look on the internet . You will see different cities of this country and you can choose the best . In my opinion , you must go to Madrid or Barcelona because they are the most attractive . Peter looked at his watch and knew that he had to do something immediately . He had forgotten to go to his English classes . But he did not realise something . His little brother was watching him through the window . I think that public transport is always going to be very important in our life , because not all people have the possibility to buy a car , and because public transport is less expensive than a car . So for that reason , public transport in the future could exist , because public transport is a necessity all over the world , not only because of money , but also for the facility to take a bus or any other public transport . I do n't know is n't an answer . After an hour , the dog was vaccinated and taken home , but his mother needed a bottle of milk . First , I want to introduce myself . I am a young woman with a melancholy character . I love writing but I am not confident about my grammar . I have no idea after this sentence . Therefore , public transportation is the future and more and more people will be using the metro , public buses etc . Working in your own company is very challenging because you deal with a lot of areas , manage all departments and learn about business , management , economics , sales , engineering , technical support and other skills . You are responsible for your workers and customer satisfaction . However , it is very satisfying to see how your own company is growing and your customers returning because they loved your work . I started to play it when I was twelve years old and these days I still love this sport . At some point , you wish it was all an illusion . You need a time machine that makes it possible to go back in time to when you could see the purity of life .. I have personally picked up information I would not have come across otherwise . For example , I have been able to learn that the new BMW seven series , has ambient lighting , it can pull in and out of the garage at the touch of a button , it 's computerised system can read different road surfaces and adapt it s driving . Those are the main reasons that could make public transport disappear . Firstly , it is a good idea for young children to do physical activity . That is the first step to doing exercise , then competing in sports will encourage competitors to make an extra effort . In addition , stress is a clear disadvantage of competing , because competitors are trying to win and this can frustrates . Finally , I think that competing in sports has some benefits and disadvantages , but when it is controlled there are some benefits that help you in your whole life . Second is to prepare metal plates using qualified machinists . If the sheet is good or partially damaged , it can be packed and delivered by vehicles after being cut into separate notes . I advise people to start this sport , because it is complete and makes your mind and body feel very good . When I was fourteen years old , I won a championship because , in that period , I swam as a competitive athlete . It was a real satisfaction and I was happy . Michael is a 22-year - old man , he has studied for a degree in electrical engineering and now he wants to put his knowledge into practice . He went to buy a newspaper to search for a job . He looked at all the advertisements but he never found the one he needed . In contrast , you could suffer some nasty cuts or , though , be sunburnt . I used to live in assistent house . It was the first place where I lived in Tijuana , then I moved to an apartment with two friends . The garbage truck picks up paper once a week , plastic two times per month and undifferentiated three times a week for all people who live in my country . It is true that there are a lot of users that want to use a car and that number is growing . There are also a lot of people that do n't have the possibility to have a car and some use public transportation for many reasons , like the price , because it is easier to get to the place by public transportation rather than a car , or because of the traffic . Sometimes it is so exhausting for people to drive for many hours and even sometimes public transportation is faster . Secondly , there is a programme with the water company to cut down on the use of water by 50% using a recycling water treatment and recirculating to the house without dumping the waste and so saving our planet . I strongly believe that grammar is not the most important element for speaking English . If you know grammar , you only know certain rules for writing , but I think that speaking is more important than writing , because when you go to any place in the world , you have to be prepared to talk and understand whatever they say to you . In this part you may notice that if you do n't know vocabulary , you wo n't understand anything . But here is another topic . Whether you understand or not , you have to notice the way that people talk to you , and try to understand what the person is trying to say . I enjoy this because I like it . I see myself as a perfect candidate for this position . I live in one of the most beautiful countries - Ukraine . When I was at school my friends and I attended junior swimming school . My friend and I always had ice cream and fun after training . Nowadays , the option of broadening the mind while traveling is very common . Apart from that , you see new places and you have fun . You also learn about other cultures , historical facts , you also learn to respect other people and their customs . In addition , you do n't think about your problems and the only thing that you do is have fun and do what you want to do . Besides , you see new worlds and their ways of life and that helps to open your mind , to see the world in another way . In conclusion , I think that it is the best way to open your mind . Not the only way , but yes , the best way . I would like to recommend friends to visit Italy . So if you want to visit any country , I 'm going to recommend Italy . This affirmation : travelling by car is so much more convenient , says everything . For example , if we think of the time we spend on waiting for a bus to arrive at our destination , and the traffic is one of a lot of things that makes everyone prefer to buy a car . It is more practical and faster . Do n't forget the cost . When my sisters are married they have one or two children at most . I think the Egyptian family has become smaller with the passage of time . Finally , the consequence of cocaine is death . If you inhale cocaine all the time or a lot , you will die prematurely . We enjoyed swimming in the sea , sunbathing , having a barbecue and seeing the sunset . Young people want to find a good job here , but they are working in MacDonald 's or Burger King for a low salary . Television plays an essential part in our life ; we turn it on nearly every day , since it can make life more interesting . There are two points to prove it . For one , a show broadcast on television may enlighten us and give us some enlightenment . From : horses , steam vehicle , first petrol and gas car to future cars when the fuel will be electricity . My hobby But now I really enjoyed it , and my best friend bought me a ticket to a theatre to see the musical show , which was amazing . For s couple of hours , I did n't move . It was a brilliant present . In 1994 , The Scream , one of the most expensive paintings in the world , was stolen from the National Gallery of Oslo ( Norway ) . When he stole the painting he wrote a note saying : " thank you for your good security " and when he was arrested he declare that it was very easy to steal the painting . There are mainly 4 steps : design , preparation , printing and inspecting . This essay will explain these different steps . Firstly , personnel design the background colour , the artwork and the security features on the bank notes , which is also done in process of other card , such , such as notes for supermarkets . After sheets of bank notes are printed , there are differences and specials for it , it uses special ink , and prints colors on both sides , and images are slightly raised . Finally , inspectors at the bank manually check all printing sheets and divide them into three categories : " bad sheets " are sent for disposal , where things are securely destroyed ; " Good quality sheets " will go for packaging and distribution , where sheets are cut , packed and dispatched . However , sheets that are " partially damaged " will be inspected again and separated into good and bad sheets and sent for further actions . I 'd like to write on this subject because it 's a very important topic . I enjoy it when I watch it on TV or when I attend it in the stadium & support my team with my flag & cheers . I advise anyone who dreams of being a member of the most famous teams to work on himself a lot and play football a lot to be professional in this sport and show a lot of matches & followed by captain supervised on him When you have the desire to do something , something you always dreamt of achieving , something touches you inside not only when you do it , but also when you think about it . First , this kind of advertisement should be forbidden on account of the fact that young children are still very vulnerable . Kids around these ages ( 2 to 5 years old ) do not have a mature critical sense and anything can easily persuade them . In conclusion , I am strongly in favour of this statement . Advertisements for young kids , not only upto 5 but upto 8 years old should be forbidden because of the kid 's vulnerability and the risk to their parents ' relationships with them . I am writing in response to your advertisement which I saw in " The Daily Magazine " last week . I am a twenty - year - old student currently studying to be a chef . If you need any further information , please do not hesitate in contact me . Nemo 's father knew a fish called Doris that wanted to helped him . They cross all the ocean to go to Nemo 's location to save him , while Nemo tries to survive in a dentist 's house . In the following paragraphs , I am going to analyze these issues in a detailed way to provide a solution . I like volleyball because it is part of my life and of the life of my mother . It is my favorite sport , but I like other sports too , same I do n't play volleyball because I 'm bad , and my friends that I know , do n't like people who are bad at volei . But today , things are changing and technology plays a significant role in our lives . The automobile industry increased its vertical and having a car has become a necessity rather than a luxury . These days a lot of children wish to be professional players and they practise this sport all the time and everywhere to improve their technique . The diagram shows the development from 1998 to 2014 . At Easter time , the important thing is to consecrate Christian tradition . In contrast , the pagan spring festival does n't focus on consecration but rather on celebration . Not all people can afford to make journeys by car . A car is easy and cozy also , but public transport is fair and is very affordable for all classes of people . Public transport mainly means public bus . People used to travel long distances by public bus . It is possible to carry large numbers of people to different places by bus . Although I knew that there was some conflict between England and Scotland , the vote really shocked me . I have been travelling with both for years , and I reckon everyone ends up needing public transport one day or another . My favourite sport is soccer , because it is the most popular sport in the world . But every time , I get trouble . The husband of Grace is called Charles . Her sons have a problem which means that they ca n't look at natural light , and one day , Grace got up because her children were shouting and crying . So she went to their bedroom and the curtains were not there . So she went to the other room and the curtains also were not there . So she starts getting more and more nervous . She goes and talks to the servants , and she gets very angry and she tells them to get out of her house and they do not care so she picks up a gun and the old lady returns her keys . MOTASSEM is nice and a lovely fiance . He loves his job as he is patient when doing his job . he is a hard worker and he has an amazing laugh . Nowadays , the number of endangered species has increased . But a lot of people say that a zoo can protect endangered species from illegal poachers . To sum up , there are a lot of clearly strong arguments against keeping animals in zoos . In my opinion , people should build some kinds of wildlife parks . This solution will allow It 's a really expensive solution , but we must do that for The charts below give information about the most important reasons for studying among students of different age groups and the amount of support they received from employers . The first chart is the reasons for studying according to age of student . For career has 80% ; under 26 years old students selected it . For the over 49 years olds , only 20% of people selected it ; but if you compare this with interest , it is totally different ; under 26 years old have only 10% ; but over 49 years olds have 70% . The other chart is about employer support . Under 26 years old is the highest because it is almost 70% , the second highest is aged 26 - 29 years old ; it has 50% ; the lowerst is 35% and the age of the group is 30 - 39 years old . You can visit the old city and see old buildings and the castle , you can see the beautiful view from bridges over the water . is n't good for students . First of all , by getting students out of the classroom , students take a break from the school routine . Furthermore , going on field trips gives students a chance to try things for themselves . In addition , field trips are an important part of our school activities . Unfortunately , I saw you last many days ago . My flatmate is my best friend today . Susan told me that you need to know a couple of things before your visit to Spain . At that moment , he knew his decision was going to affect his whole life . When he was escaping from the prison , he bumped into an old friend callled Charlie . Why do I enjoy my favourite sport ? I love it when the temperature is a little bit cold , but not too much . But there 's a difference between eating a good meal , and eating by the way . They were talking about their lives and he remembered how he met her on the bus . Maybe she had always been the woman of his life . He looked at her eyes and smile he wanted to ask her whether if it was not too late to start to get to know her . But he decided to leave the pub . He walked to the exit . All in all , I still had a memorable vacation . In addition , there is a small blackboard for my little brother because my mother wants my brother to learn Arabic and English letters . My country is a very interesting place . We have a lot of ancient and mystical places . I think you could n't work in my country , because it 's illegal for foreigners . The town hall put containers for trash in the streets and the workers from the town hall clean the streets . To begin with , nowadays more and more people prefer travelling by car rather than by bus or train . In the end , I want to tell you that we are not robots . Everyone deserves what they want . I like public transport and I love my planet . I think the best method for reducing pollution announced the way they take care of the town . My apartment is very beautiful . It has some disadvantages like , it hasn't a private parking lot . Finally , my apartment is very beautiful , and it has a lot more advantages than its disadvantages . There are various kinds of different things that happen in people 's lives , some may be normal and nothing special , while others may be so meaningful and unforgettable that you will remember them for a long time . Eventually , I was third in the contest . The most important thing is that you can learn a valuable lesson from failure . Resolve/ determine / insistence I like how the players move around the court and how the audience applauds them every time they win a point . Although I 'm not on the court , I can feel the feeling of the game . It 's really awesome . Once in a while , I enjoy watching tennis when there is a competition or tournament , besides watching and enjoying it , I can also learn how real the game is , what its rules were or what happens when they yell at the umpire for no reason . You can learn all these details and wait for a future day to put them into practice , or helping the players is one of the things that I want to make real . Public transportation is excellent ; you save money , take care of the environment and make friends . On the other hand , she has never been a talkative girl , so it 's usually me who is always talking a lot . It is convenient to travel by private car everyone can afford it , so that everyone has a private car nowadays . Some people suggest private cars are going to replace public transport . For these reasons , it is unlikely there is no future for public transport . Alison felt desperate . She noticed that her husband 's car keys were in her house , so he was walking or someone had picked him up . She picked up the phone and she called all his group of friends . Nobody knew anything and now they were scared . My favorite sport is football . In my opinion , if you want to start to do this sport you could write a team . Moreover , I think that it is good because it could help you to lose weight . On one hand , public transport is good because it does n't pollute so much and you can move around the whole city . We do n't use so much petrol as if each passenger were to use their own private transport . In conclusion , public transport is very good and if it disappears it will be a big problem . It is true that sometimes you need private transport , but apart from that , public transport is used a lot by people of all ages . I 'm a committed , responsible , and organized person . First I would like to introduce myself . My name is Joaquín Gutiérrez and I want to tell you why my favourite sport is football , which is a sport that I have practiced since I was six years old . I like this sport very much because it must be played with a group of people and is more fun than other sports which you play alone with one other opponent , like tennis . Currently , I play in the first division of the club River PLate from Argentina . In my opinion , people will travel by public transport more frequently , because this type of transport is less expensive , more reliable and even more environmentally friendly than travelling by car . My trust in future technology is so enormous that I hope there will be new environmentally friendly and cheaper ways to travel around our world . At 2 p.m. my mum decided to go to the hospital because I could n't understand anything and I could n't talk . We do not respect traffic rules and drive only with the intention of going as fast as possible to our destination . This often causes traffic accidents and congestion . For this reason , people are becoming aware of the terrible problem and are learning and teaching vial culture to new generations . In addition , public institutions are promoting this and also private companies create advertising to increase awareness . This is due to the fact that Lima , in the beginning , did not have a plan to design its public roads and highways , and it has only been improvising to build them without any criteria to transport its population . I usually take public transport to go to the University , because public transport is cheaper than a car . ( 5 ) establish a mechanism in collaboratively exploring and developing resources in the East China Sea . As he got closer , he saw a lot of people around the Kabaa . My favourite sport is badminton and I always get up early to play it every day . I like it because it is the best way to lose weight and improve your health ; better than medicine . The purpose of this proposal is to provide details about shopping facilities in my hometown , Vung Tau , and give some recommendations for tourists . They offer a wide range of choices , from souvenir items such as pictures and jewellery to local specialities , at a reasonable price to suit the interests of different people . I assure you that there should be high - quality and varied products there satisfying your needs . I highly recommend local shops to our tourists for their cheap prices and the hospitable manners of residents here . My hobbies are meeting Friends and hanging out with them or playing basketball in my spare time . People do n't use the five seats of the car to travel . From the point of view of the environment , this is a bad idea , because it uses a lot of gas per person . A new problem is in the small towns , because they are not designed to accommodate a lot of cars . I think that the main problem with public transport is the communications between villages and small towns , because they only exists between the big cities . It is a problem of mentality . If we had been born into a society that used public transport , I think that would be better and we would use it normally . There are so many educational programs , like Animal Planet , and so many others . Sometimes , some TV shows are so great that they help you in certain classes , for example , Animal Planet can help you in biology . The History Channel can help in history , etc ... In my opinion , television can be as good as books , and can also be a form of learning as good as only reading books , because TV is something fun , so you can learn and have fun at the same time . I am writing in response to your advertisment for SUMMER CAMPS . I worked as an assistant chef in a Lagunak Restaurant last summer . I worked in another restaurant in London , but I would like to look after children , because I have studied to be a teacher . Yours faithfully . Here in Brazil , it is very difficult care about it because it demands serious action and skills from our government , which unfortunately wo n't happen soon . And why am I talking about it ? I am talking about it because the foundation of environmental protection is our mindset . Just with knowledge and information , we will be able to manage actions to save , protect and improve the environment , and instead we have the current result . This aphorism is famous and true . People try to build big and luxurious houses but they forgot about the main thing . We can choose expensive things for the interior , n the town , he tries to make people aware of the situation and they take care of the environment . In my opinion , we should be conscientious and stop it . If we do n't stop it , after , it will be too late . The best present that I have received was ... I do n't remember ! Another thing , in my home there are some rules : my brother and I tidy our room , we clean the bathroom after we use it , we ca n't eat on the sofa .. . Let us examine the advantages and disadvantages Nowadays , people have a stressful life , so we ca n't spend time waiting for public transport . The Scorch Trials is one of the best films and thrillers that I have ever seen . It is so exciting to see all the thing that they do to survive in the outside world with all those people that are infected with a virus and the reason why they put them in the glade for them to be immune if some sick person bites them . I think I am the right person for this job because I have a lot of motivation and a good level of English . Firstly , Django Unchained reminds us of the hard life suffered by black people in the past through a great introduction without dialogues , where black people were unchained while they came back to be sold to an owner farm . This was matched with an amazing soundtrack as identity Tarantino 's films . In my opinion , volleyball must then be considered among high - risk sports according to the frequency and gravity of our surgical findings . My advice for someone who is starting this sport is that you will be refreshed after you play this game and it makes you do your work in a relaxed way . It is upstream that irrigates our economic life , and there is no doubt that negligence has the ability to destroy many good aspects of our lives , and our government is doing its best to put an end to negligence , but we also must cooperate to save our town . On the one hand , we must Presentation an awareness program for all people , There is no future for public transport , because travelling by car is so much more convenient . I do not agree with this statement because in big cities there are a lot of cars . If all the people in a city use their own car at the same time , there will be a huge traffic jam , so travelling by car is n't much more convenient in this situation . My email address is xxxxxxxx . As a result , I think that I have some talent for swimming . From then on , I felt my disease decrease and feel relax . I am prepared for long working hours . That 's no problem for me , because I am young and I like working and spending time with people . Although some people prefer individual games , I prefer team games . They must know , people will notice them , walking along the street . I would like to tell you that I have done a course on which I learnt to organise all kinds of activities for children , from canoeing to swimming competitions . Also , I worked in a summer camp last year , where I could put all the things that I had learnt into practise and it was a very pleasant experience which I would like to have again . I look forward to hearing from you as soon as possible . In my opinion , music like this should be played more often on the radio and other mass media . I play football for Waitakere college school first eleven as a defender and I enjoy playing in that position because it is easy for me to play . When we arrived there in July last summer , the owners welcomed us with a magnificent basket of fresh fruits in the room and a variety of drinks in the fridge , all included in the room 's fee . There is perhaps nothing more pleasant than when your favourite sport is as healthy as it is enjoyable . A lot of children usually do n't know how to study English , and you could help them to get there . The other team was professional , they had won many competitions , they were really good , but Tom and I knew that we could win . I 'm the right person for the job because I 'm reliable and experienced . Sport is an important thing for all of us because it helps us avoid disease and become healthier . My favourite sport is swimming , so practising this kind of sport is the best because it helps me feel fresh and relaxed . Moreover , daily exercise is a very good idea which helps us to avoid becoming overweight and to keep our body healthier . So I always want to advise people to practise this sport or other knids of sports to avoid diseases . Dear Sir or Madam , Called in a malicious way , there are 6 floors for jewellery , clothes , accessories , gadgets , books etc . Being in the centre of Bucharest , you can go outside , in the downtown area to consider visiting new cultural things while shopping in boutiques and relaxing on a terrace with a cool lemonade . Although using your own car is better for moving around the city , public transport has been shown to be a good option for travelling long distances at a low cost and , depending on its quality , also low budget . Your health needs calm , friendship , happiness ... You must keep in contact with your friends and spend time with yourself ( do not forget your hobbies and learn new things ) and your family . It follows that , on the one hand , I have extensive knowledge of how to be on good terms with different people and , on the other hand , I have a perfect command of English . In addition , as I have been determined to build my career as a teacher since my childhood and , moreover , I definitely have a way with children of any age , after graduation I gained experience at university and in a local school . I feel these skills would allow me to perform effectively in this position . A wise man in the past said once , " If you want to be a good badminton player you need the nerves of a climber , the strength of a shot putter , the condition of a marathon runner and the elegance and cleverness of a fencer . " It 's exhausting and you have to move fast to get every shuttlecock . You have to be competitive ! My coach was very nice and mostly we played in teams . I had a lot of fun at the summer sports camps and I made a lot of friends . Invite your friends from school or work . Practice together with people of your age . It is a lot of fun and you will get better soon . Every lost game gives me more motivation to practice harder and every won game makes me proud and happy about all the hard work that I have done in the last few months . Particularly in Barcelona , the trouble was that they could fish in the sea but there was n't an appropriate place to keep the fish , so they could n't eat it one or two days later . You start living on your own , make your own decisions and plan your future . The year off gives them opportunities to get a job . You can get to know other countries and new individuals . If you have any questions , please do n't hesitate to contact me . I am writing this letter in response to the job advertisement for working in a summer camp in which I am quite interested . Since many European tourists like to have their holidays on the beach enjoying the sunshine and also discovering the historical remains from the past , Antalya ( Turkey ) is the best city to work in . Finally , I personally disagree with cyberschool . Cyberschool are n't interested in health and safety issues ! In fact , it can help them to speak with their friends more easily . In conclusion , so family and friends are very necessary in your life . I remember that you are fascinated by nature , so you could go to Guembe to eat delicious typical food . You will see an amazing view and a lot of kinds of tiny butterfly , there are amount of variety . When it 's cold , I always go to a covered swimming pool , and when the weather is warm or hot and the sun is shining , I always go to a reservoir . In present - day society , sustainable development is of paramount importance as our environment is being destroyed at a fast rate . It is definitely not environmentally friendly . And last but not the least , public transport is much safer than private transport , because it transports many more people , and so , there is more caution . Film stars and politicians are interesting to people because of their talents and special abilities . On the one hand , famous people try to hide their lives from journalists . In everyday life , the internet has become one of the most important things and it is becoming more and more influential . So , I enjoy running alone or with friends , because this sport has a lot of possibilities , more than I thought when I started to run after finishing High School . This has resulted in only very needy people using public transport , and the vast majority of people still use their personal automobile , with inconveniences and safety being the excuse . In the past , I tried to play basketball , tennis , ping pong and so on , but the outcome made me depressed and less confident . The first point which I would like to mention is cost . That could be frustrating , especially when you have a long journey and you need to spend long hours driving . Finally , the word convenient means something different for everyone . For one person it would be option that you have a car which is parked along your road or on your driveway and at any time you can go wherever you want , for the other , it would be a pleasure that they could enjoy the trip without thinking about any car issues . They are faitfull that they could meet some new people and take part in others ' lives . But there are some disadvantages , like stairs because we are on the second floor . We would like to keep fit but we have to use too many stairs to reach our classroom and that 's so annoying sometimes . Travelling could be a good way to improve your language and to get to know Italy better . Maybe you 'll choose to attend university in one of these cities ! It is a tourist country , you could work as a waiter in my city . As it is a movie related to magic tricks , when a sequence is played and it seems simple and easily understandable , you know that , in fact , it is not . Long after that , because I had such a natural talent at engineering , I began to write books and essays about everything related to my job . By February we 'll have finished our exams and we 'll have more free time . Birdwatching really relaxes me and brings me closer to nature . Do n't you know what to say in the presence of a huge audience ? The new activity which I have thought could be organised and could have success is called " The Club of discussion " . In addition , it could be interesting , although you do n't have to do physical activity , because your ability to edit a speech , support an idea , have connected speech will be improved by this kind of activity . In conclusion , making a speech contributes to our social relationships and it allows us to define our personality . We found very cosy and traditional houses , the market was very popular , with a lot of people walking around , and the people were very nice to us . For this reason , when a woman and her family decided to live a whole month without plastic they had to change their lifestyle . So they would help to solve a bit the problem for the UK 's recycling system . Such us yoghurts , biscuits , etc , was wrapped in plastic . However , I also think that it 's important to be conscious of environmental concerns , so some ideas like this could be good to reduce rubbish . If someone asks me what is the most important thing to start playing ( or even following ) this terrific sport , I 'd say it 's passion for wearing your club 's jersey and respect for your adversaries . For years of wars and difficult situations , history was creating people 's beliefs and convictions . Conclusions and recommendations I really like reading many kinds of books , magazines , etc . When the weather is bad , I love sitting in my favorite armchair , near the fire place and reading . I enjoy hearing the rain while I am reading at home . However , I like walking very much , too . I prefer comedy and romance , but I like thrillers and drama too . Finally , I enjoy taking care of my garden , where there are many flowerbeds with a lot of different kinds of flowers . We like the sea very much , so we looked to rent a little cottage in August in a lovely place in Sardinia . I was looking forward to going to the beach and swimming in that wonderful water . By recycling , by trying to reduce the traffic , walking and cycling . That also improves our health and fitness . People of all ages must help to clean up the city and protect the wildlife . At school , children are taught about how to make appropriate use of electricity . There also a lot of plans for the future , to start using electric cars . I 'm Catholic and I play the guitar in the Church choir . Each year , in the summer holiday , I 've worked in the " Summer camp " organised in our neighbourhood , both helping in the kitchens and organising sports and various activities for children between 6 and 13 years old . The perfect atmosphere for me is a modern building that has different rooms with different styles : modern , classical , gothic , etc . However , not all is OK . A trip to Italy is so expensive and many classmates ca n't afford it . At that moment , the phone started to ring , I pick it up ... but no one answered me when I asked ' Who is that ? ' . I liked this shopping centre because it has a lot of women 's shops inside , the facilities are quite attractive and very up - to - date , the green zones are broad and it is supplied with a lot of wooden benches . It brings you directly to my suburb . Using this transport I will go to New Zealand then Australia and other countries . Travelling by car is much more convenient , as many people say , but public transport is much better for the environment . In my opinion , it is one of the healthiest sports there are because you can train not only your body but you can also develop your breathing . I think it is a really good idea to use stem cells in order to save other people 's lives , even if they come from an aborted foetus . There are a lot of people in this world that are ill and need stem cells in their healing process , so parents that had an aborted foetus should let the scientists and the doctors use the stem cells in their research and help other people . How are you doing ? I remember you wanted me to tell you about my experience with helping at a concert I went to last month . After some time , I felt sad , because I realised that I would n't be able to see the band playing on the stage , because I had to stay in front of the entrance . We took some photos and got autographs . great starter and when you finish it , they bring you the barbecued meat . Then the main course is the barbecued meat that is very tender and tasty . But , considering the increase in private vehicles in our crowded overpopulated world , it is recommended by geologists and ecologists that we use public transportation . The family might exist on paper , but not in reality , because each member of the family will be busy and they will just send some messages from the high - technology phones they 'll have at that time . I know , it sounds boring and pessimistic , but if we do n't change our minds immediately , the future is going to be like that , for sure . Developed countries , Latin America and East Asia are the three regions that show a low percentage of illiterate people , expressed as below 20% , whereas Sub - Saharan Africa , Arab States and South Asia have over 30% of people who do not know to how read and write . There are also places where people can buy the typical clothes ; dark dresses for women or a ' tango hat ' for men . Even if you just want to go shopping for clothes , there are so many places you can go . Palermo is known as a little New York for the designers and well - known brands , and technology is located in Recoleta . During this day , the students had the opportunity to hear very interesting things , but not in the same way as if they were in a class during a traditional frontal lesson . I worked at a nursery school in London last summer , which led to the improvement of my English skills . On the other hand , you have the public service called Metrobus , and in this case you will hop off the bus a few times . When you arrive you must find the A - line , go to the Patriotismo station ( C line ) , then go to the delta station and walk to # 76 Acrone Street . If I were you , I would choose the subway because the weather in Mexico is too hot , so , I think you do n't want to feel the sun after your tiring trip . In the last ten years , Brazil has created a wide range of governmental programmes . Educational and medical assistance , as well as iinfrastructure improvements are some of the recent advancements . It offers students a unique opportunity to study abroad and acquiring an international standard qualification . I found your advertisement in the newspaper and I am very interested in working in your summer camps . Suddenly , a tumbledown cottage emerged from the darkness . Well , since my childhood I have always loved weapons . My father gave me my first rifle when I was 7 , but it was n't until I was 15 that I found my real passion , and it was archery . Since that day I am proud to say that I am an archer , and that archery is my favorite sport . After more than seven hundred years , in 1733 , the Roman Catholic bishop 's residence was moved from Cenad to Timisoara , where the first cathedral became the church of Jesuit monks . Journalists and paparazzi constantly follow them and try to catch them in a stupid situation and enhance the the value of them . Everybody makes mistakes , but their mistakes are written about and known by society , which is unfair and harmful . They ought to appreciate what they have and stop complaining about their life , because there are plenty of people , who dream of being them . Famous people have to notice how much they have , appreciate it and stop complaining about not having a private life , because it is not such a disaster as they often think . It was reported that for one hundred kilometers , each car consumed ten to thirteen liters of gasoline , and released a certain proportion of air pollution . can also satisfy passengers who can not travel by plane and need to take long - distance journeys . To summarize , he arranged a meeting with the head of Ferrari and the press because he would like to announce his definitive Furthermore , as the programme is endorsed by the European Union , the trainee has accident and liability insurance . It was a good experience . The hotel had every comfort you can imagine : a restaurant , a spa , a gym , indoor and outdoor swimming pools , a beauty center and a church . Efficient sweat expeller socks help one reduce discomfort and keep one 's feet at a nice temperature . Players must be considered as a painter working on a piece of art . It 's not the effort they have applied or all the hopes they had . Their expectations will be considered useless . People do n't stare at a painting in a museum thinking how hard the artist tried to do a good job , they will judge only it . So , if someone is ever wondering to whether start playing this sport , they should be aware that lots of people will be expecting them to win . There is a great number of politicians and film stars who are followed by paparazzi who are trying to find out more about their private life . There are a lot of places where you could work for a short period of time . Being a waitress or something like that is well paid and not so difficult to do . I have numerous reasons why I choose this sport as my favorite . THE STRENGTH OF SPECIAL EFFECTS Taking into consideration our interest in the field of thrillers , under no circumstances should we miss it ! I like to read too . My favorite type of book is horse books or just random books . It 's hard to explain , but I mean books with everyday action not science - fiction or romance . Parkour is a discipline in which the main purpose is to train your body and mind to be able to pass through a point A to point B , in any kind of environment , the safest and fastest way , without causing any harm to your body . Parkour was developed in Lisses , France , around the 1980 's . One of the foundations used to develop Parkour was the Natural Method , created by Georges Hébert . Basically , the method is based on developing the main foundations of movement of the human body . These are : swim , run , walk , jump , quadruped movement , climb , lift things , balance and defend yourself . Raimond Belle was a former Vietnam soldier and worked as a fireman in the French army . The roots of Parkour were developed by him and he taught some Parkour techniques to the firemen who he used to work with . His son , David Belle , was taught some of the foundations of Parkour too . Some people say that David created Parkour but , in fact , his father developed all the ideas of the discipline . Parkour is n't just a physical discipline , there is also the philosophical part . Altruism , " be strong to be useful " ( it is actually a phrase from the Natural Method ) , develop your body and mind so that , in a dangerous situation , you will be able to save yourself and other people , and so on . Therefore , it is due to its philosophy and the joy that I feel before , during and after a training session , that Parkour is my favorite sport . For me , people have become very lazy and they prefer the car rather than public transport , because you can take the car when you want and go where you want without spending hours waiting for the bus . The product will be registered with the Ministry of Health and Sri Lanka Standards Association and adhere to their rules and regulations for production , storage and distribution . Their opinions varied a bit here . An argument some used was : ' In case we removed this whole industry , then there would be a humongous group of people unemployed , and that would be a problem . ' Finally , the Metropolitan Museum of Art is a good place for people who like history , anthropology and seeing a lot of types of art . I agree with the statement , that famous people deserve to have a private life without journalists following them all the time . Sometimes it happens that journalists write some silly gossip about famous people which is not true . Although it does n't mean that the press should write about your private life . And , as a drawback of being a celebrity , they are followed by paparazzi almost everywhere . Besides , being followed by unknown people must be quite a scary experience . My listening is good and I can understand . I look forward to hearing from you very soon . If you have any questions , you can mail or contact me . First of all , travelling by car is more expensive than travelling by public transport ; cars have to pay for gas , insurance , repairs , environment fees etc ; travelling by public transport is more ecological and cheaper . She knew that he would be staying away for so long but she would wait . She loved him and no World War was able to separate them , because she was pregnant and this baby was coming . It was a boy and his name was going to be Taylor , just like Jason 's father . Although most tourists come to Pamplona for the famous festival of " Bulls Running on the street " , many become passionate about the cuisine of Navarra . As a result , a few shops such as " LA VINOTECA " and " DELICIUS " are dedicated to selling selected top wines and typical food . There is little doubt that they will not only find original products , but will also enrich their minds . On the other hand , they are still normal people , who have families , partners and friends and they sometimes want to have a few private minutes , without cameras , media , newspapers , flashes and spotlights . What is more , I am sure that most of them do it on purpose because their main aim is fame . I 'm available every afternoon from 5 to 8 p.m. , when it is morning in the USA . Of course , some famous people might like this feeling that they are so liked and favourite and those who do n't like it have the possibility to protect their privacy better or more or pretend that journalists following them do n't exist . Nowadays , people care more about themselves and doing good things is wrong for some of them ! I am really happy you wrote to me for some advice and I am very honoured that you want to spend some time in my country . First , you have to decide if you want to visit the north or the south part of Italy , because if you do a full immersion tour of the entire Peninsula you will visit only half of all you have to visit . If you like Egyptian history , you can go to Turin , where you can find a huge and beautiful museum of Ancient Egypt . If you want to visit the south part of Italy , you must start your trip from Florence , the birthplace of the culture . Then you must go down to Rome , the capital city of my country . After you have seen the Coliseum , the basilica of S.Peter and the Trevi fountain , and so on , you must visit Naples . The idea of finding a job that lasts three months is great . I think you could work as an entertainer in some tourist villages around the country . In that way , you could improve your way to make a relationship with people and it could also be a great help for your theatrical experience . I know that you are a brilliant photographer and that you want to improve your ability , so I think that you could take some photos during your trip and then you could send them to some experts . Let me know if you enjoy your tour and take lots of photos ( I want to see them soon ) I 'm writing to reply to one of your advertisements published in the local newspaper last week . I 'm 31 years old , and I have had the privilege of working as a teacher all my life , so I am an experienced person capable of taking care of children . As well as taking part in activities relating to cooking . At night , the noise was annoying . I was not able to rest properly . Also , the phone did not work properly , it was impossible to use it to call the receptionist . In addition , the elevator was out of order . My favorite restaurant is a restaurant in Stockholm at Östermalm called : " New Peeking " . It 's an Asian buffet and they make the best food . My favorite subject in school is probably Swedish , English or Biology . I think that , in particular , spinning is a hard sports activity because when you have spent approximately 1 hour on your bike you 'll probably feel tired . This could be good , although some people say we do n't need all this time and we have to work more . Another point is that we can meet friends more or visit our family if we have more free time and that is always good . In other words , it could be said that if we had more free time , our lives would become better , because we can enjoy ourselves with friends and do things with our family . From my point of view , having free time is perfect , because we can do more things that we are fond of and our quality of life would increase . I study philology . Now I am working as a journalist at National Radio . But instead I am writing about stupid decorations , illnesses and other boring stuff . Well , I have good news for you ! I met a wonderful girl last week when I went to the cinema . I want to introduce her asap ! Besides brilliant actors , they have incredible decor and it 's perfectly situated as it is very near to the bus stop . Since graduating from University of Education majoring in business English , I have been working for a food joint stock company on a contract basis . Meeting new people and setting up new social relationships are also the tempting point attracting me . In addition , your cafe is conveniently located near my home , which takes about 10 minutes to go to on foot and I have 2 days off a week . That gives me the opportunity to take on a new job . I enjoyed this unforgettable trip to the museum , and hope you can take time out to go one day ! It requires a vivid imagination to try to put a view of the future . First of all , the means of transport will change . Vehicles will depend mainly on solar energy or nuclear energy . A flying public transport bus will be a fast ride to work . You will need to supply your car with spinach after they invent a spinach - fuelled car . I think that 's the only negative point about today 's television , because maybe there 's too much choice ! When we were schoolgirls , we used to spend all our free time together . To find out about other cultures and get new knowledge completely different from school . On the other hand , maybe if we have a break before university , the routine of working and studying every day could break . So when university starts , people will become busy , the routine will not be the same , and , as a consequence , the marks will be lower . At first , I did n't believe that this place would be as amazing as she said . It has almost everything that you need in a cafe : comfortable chairs and sofas , beautiful features and really good - tasting coffee that they serve in most of twenty different ways and with all toppings you can think of . Although the most important thing is that there were not only friendly staff but they looked like they were having tea in Wonderland , with Alice and the White Rabbit . If TV programmes are a lot of rubish , it is because some people prefer them . I had a great time with my friends , but I have a few comments concerning the organisation . However , there are a couple of small suggestions . First of all , the venue itself was very crowded and parking almost impossible to find . I would like to suggest hiring special animators who will entertain kids . You should think about reducing prices or offering special discounts , for example , for students . Yours faithfully There , you will see beautiful cities with European architecture and you will find nice vineyards . Chinese , Spanish and Portuguese . None of those languages are as popular as English is . Brazilians need to learn English because it opens doors in business and in higher education . Learning English as a foreign language will have a huge impact on Brazilians ' professional lives , helping them to get a better position . The Brazilian educational system should be aware to develop students ' language skills more . Learning English as a second language will help Brazilians to get a better job and have more opportunities in their careers . I love outdoor activities . I have been doing rock climbing for nine years now , and started motocross in 2010 . Also , I consider myself very friendly with children and teenagers . When I was a child , my father and I used to go camping almost every other weekend . That was until four years ago , because he is no longer able to stay out of the city . But he taught me all that I need to know to survive out there , so , I really know how to do things in the woods . Third , public transportation sucks , when you think about it . You can picture the crowded subways , dirty buses , and the difficulty / hassles of the public transportation transfers in your mind . Secondly , everybody seeks safety in their lives . Look around you , crimes and death are surrounding us . All these people are dreaming of living a peaceful life without all the problems of killing and sadness . For that reason , I believe that being safe is absolutely better than being sorry . I will always remember my dad telling me to calm down , saying that life will go on and one day all of us will be satisfied with this life . In conclusion , I think that all of us should see through rose -tinted glasses and be happy , because you live a calm life without anything making you sorry . I will start by telling you something about Paula Echevarria . She is a very pretty and famous actress . She also writes a fashion blog . She is 34 years old and she is married to David Bustamente , who is a popular and handsome singer in Spain . They have a daughter - her name is Daniela - and they are like a perfect family . Therefore , she has everything good about being a celebrity , but the most important is that she is a great person . By increasing the variety of cars with new technology , people 's demand hasn't ' stopped . As technology enhances the life system in any way possible , people become more dependent and ca n't avoid it because of many different attractions that these cars have . Traffic jams will cost a lot , causing problems such as pollution , which certainly causes more health problems and will create expenses not only for us , but for others as well . The solution is public transport again , which increases the pace of life and makes it easy to access by subways and special roads . To sum up , as thought cars are too convenient to some extent , but the cost will reduce the benefits . I am writing in response to your advertisement for the job in the USA summer camps . This job would give me the opportunity to practise my skills and get more experience with children as well . The plot is about a man , Arthur , twenty - five years old , who is engaged to a nice girl . The company requested him to go back three days later , so he was looking for a hotel that someone had recommended him . It is universally accepted that shopping is not always enjoyable . The doorbell rang insistently . It was Saturday in the early morning and I was still in bed . What an amazing surprise ! I was very emotional and was about to cry . " In answer to your question about the use of the internet by young people of our age , I think it is very helpful to get information more easily and quickly . Also , it plays a great role in removing the borders between nations . In a matter of seconds we can now communicate with people around the world , whether for important business matters or just to talk to a friend . Obviously , we can not imagine how much time we spend online , because the whole day we are connected , in our houses , on mobile phones and on computers at work . They have to realise that if they continue eating that way and not doing any exercise they are more likely to have different diseases . When the light sensor is in the shade , the synthesizer emits a lower pitch , and when the sensor is exposed to light , the synthesizer 's pitch rises . I had to work as a liaison with clients as well as the company officials ( since Shriram Law Consultants is a part of the Shriram Group of Companies ) . She explains that in the process of purification , a large amount of coal and oil is burned , which pollutes factories rather than the environment . He was the pastor of a Baptist Church and he fought against the discrimination against black people in the United States in the 60s . He founded the civil rights movement to free black people from racial segregation and inequality . One of his most famous speeches was " I have a dream " , where he described equality in society between white and black people , where all people can live together . He was murdered in 1968 , in Memphis . He was 39 years old . In the city there are a lot of museums and art galleries , theaters and clubs , a few parks which provide different events like open - air concerts or public muster - classes . Write soon Let us look at an example of a university student . The student had a great number of assignments and projects , so he spent more time on accessing the library , becoming more ambitious to study books , and using a computer to search the for latest information . Therefore , not only did he get high scores in the reports , having absorbed a great deal of knowledge at the library , but he reduced the study stress and kept healthy at the gym . At university , I also have a lot of assignments , so I like to go to the library to study , where it is more quiet , spacious and internet accessible . It is a great life stage , but at the same time , it is difficult . Sometimes teenagers have problems with their families , with themselves . As a result , they do n't know what to choose . Twenty years ago , no one would have thought of the invention of the iPad or smartphones and how they could change our lives , but today , these items have become necessities of our daily lives . Nowadays , many people have got into the habit of carrying their smartphones no matter where they go . To begin with , I am a fluent speaker of English . I worked in numerous camps last summer . As a result , I could be very helpful with organising sports and activities , but I could also provide assistance in other places , including the kitchen . The crucial point is the transformations and experienced contradictions of the characters . In our imperialist and capitalist world , we need more films or artistic influences which mention the problems of our life and realities . There are such interesting websites and blogs where you can find out something very useful that you would never have expected or , unsurprisingly , misinformation . We know that making social contact can sometimes be a problem for a wide range of people , who sometimes find it a lonely and daunting experience . However , both readers and writers do not only do it in an altruistic and philanthropic way , but to get fame and popularity at the same time . Blogs and websites could give them the chance to become famous if they really appeal to a large number of people and they will also be able to earn money thanks to advertising . To clarify what the situation is , it is true that not everybody may be interested in blogs or websites , but the fact is writing or reading a blog can give people a practical way to communicate and share preferences , beliefs or thoughts . however , more or less reliable . Peter looked at his watch and knew that he had to do something immediately . Jon did n't usually go to the countryside , so he did not know how to walk over the stones and he was afraid . After drinking water from the bottle , he fell over on the grass and Peter saw that Jon 's leg was broken . There was a lot of blood and it was then that Peter looked at his watch and knew that he had to do something immediately . I like that book so much because it is pretty realistic and it could happen in the real world sometime . There you can see dinosaurs from prehistoric times . It can be amazing to see different species of animals which are no longer living . By visiting museums we can learn interesting details about the history and culture of that society . In addition to having lots of information , we also can have fun seeing interesting things in the museums , such as huge dinosaurs . You may feel incomplete if you do not visit the museum of the new place you visit . Every day in my town , people talk only about football because it can give you a lot of emotions . On the other hand , my advice that I would give to someone who is starting this kind of sport is that he must do it with a lot of responsibility and sacrifice if he wants to become another Maradona . In the morning , everyone goes to their job by car , but I think that the real reason for doing this is that we need to do a lot of things during the day and with public transport we spend more time than doing the same with our own vehicle . For example , during a football match , if you make a mistake it is n't too important because you have a team which can remedy it , even if you do nothing . The most interesting is the art gallery , Oko Miasta , which is located in the city centre . What 's more , in the middle of the building , there is a small library where people usually buy the latest books and papers . Furthermore , in the building of the art gallery there is a club Oko . Not only is it the popular place among young Polish citizens , but it is also really extraordinary : people can walk the red carpet and drink the most famous drinks . Grass hockey is a popular sport played by people of all ages and it 's played more in countries like Britain , Argentina or Germany , than in Spain or Italy . In my opinion , grass hockey is the best sport you can play as it requires you to be really focused on hitting the ball correctly . Firstly , Disney is not an ordinary destination like beaches or mountains , it is a place that requires a different means of transport since it is a long way away . The vacation starts when the plane takes off and nerves and happiness blend , creating an experience you will never forget . When the plane arrives at the airport in Miami , you can appreciate the beautiful view that this place offers . Each one has a different topic and amazing rides perfect for adolescents . To conclude , Disney has so many facilities that it is impossible to get bored , you can relax in your hotel and have an unforgettable time on the roller - coasters . He is a soldier in the military in Thun , where he works as a teacher . Then Robert smiled and giving his hand towards hers , said : ' I have missed you a lot ' . In addition , farmers , huntsmen , fishermen and any other people that are used to living in such areas have to move to cities and try to find new jobs . Meanwhile , wild animals which have forests and wetlands as their habitats will lose their homes and find it difficult to survive in jungles of concrete . Endangered animals will be harder to find after the destruction of their homelands . Also , there will be no fresh grass and grains for domestic animals , such as cows , lambs , chickens to be fed . To reduce the above problems , it is necessary for governments to plan carefully before the construction of buildings and transport and try their best to decrease the side effects . In my opinion , there are a few advantages of shopping . Another good point of shopping is the fact that it could be relaxing for some people . Everyone considered him a crazy and boring guy obsessed by his passion , except Kate , his only best friend , who encouraged him every time he wanted to give up his dream . They wanted something that could be traditional and revolutionary at the same time , something that could give a new vision of reality , and Kate started to offer some information about many artists . She started to be a little bit nervous , she was n't able to find any solution when , suddenly , she remembered that Michael 's art had the features requested by her clients . Michael was very excited because he finally had the opportunity to introduce his view of art through his pictures . After lots of meetings and conferences with the representation of China , Japan , the USA and Oceania , Michael began to be the man who he had dreamed of being since he was a child . Kate was really angry and she ordered him to leave her room immediately . The personal space in their life should be larger than in a movie star 's , but they should make their decisions transparent for most of the population though . It is their job to make decisions that ensure the benefit of the people in their country , but we do n't need to know anything else about them , after they come home to spend some time with their families . He was a very big menace and the villagers hated him because of his mischievous behavior . This film was about how a previous robbery which had been committed by Vin 's gang leads to the hatred of a criminal played by Jason Statham . As I see it , there are several ways to improve , it because we are trying to invent a lot of things every day . You may not think , it but when you are just thinking , you may have the chance to invent something new and useful for humanity . Using new vehicles , travelling can be more comfortable and easier .Everyone in this world would have a better life . I am really happy when I simply see a new bus with air conditioning or anything which can make travelling enjoyable . Artificial intelligence is one of the best ways , we can switch drivers to these vehicles . We can also help by paying for our tickets . Yes , this is simple , but these companies need money to improve their businesses . The Number of the Beast was the third album Iron Maiden released . In this album , the drummer was really great and fantastic electric guitar solos were performed too . Since he took up office in 2002 , Lula has made major structural changes in Brazil , taking more than forty million Brazilians out of extreme poverty . To curb corruption , new laws were created , institutions were re - structured and innovative mechanisms were developed to engage and give voice to the civil society . For the Brazilian elite it is unacceptable that Lula , a poor migrant from northern Brazil , overshadowed all the presidents and most politicians of their own , privileged , university - educated and careless about the real Brazilian problems . You do n't have to think about bus timetables and stops . You can stop wherever you want and there are a lot of other reasons to travel by car . It is really good . It is better than the previous novel , FSOGrey . I really mean it . It is not porn . BE GROWN UP PLEASE . If you do n't want to read the " sex parts " , just turn over the next page till it ends , that 's all . I did that to finish that novel . This novel is just to tell us the passionate love story between a successful businessman , chairmen man with a very unhappy childhood , and he only refers to his birth mother as " the crack whore " , which is related to his recent behaviour - BDSM . And the girl seemed very bored of her routine life , innocent , did nt know anything about life . Apparently , THEY were so different from each other , but somehow , some magic connected them and made them a very lovely couple . But most importantly , one should enjoy all of this fun . I 'm going to make you a very nice itinerary and , hopefully , we 'll also find somewhere for you to work . We 'll visit the Hall City Tower , the zoo , the citadel , and we also have some beautiful parks with a lot of green grass and old trees . Concerning your work plans , I have an uncle who owns a farm , so I think we can arrange for you to work there . They can barely breath with all those photographers around them . For example , when a fan follows a cab , she or he could be hurt , because the traffic is really unpredictable , or when there is a huge mass of fans , they could hurt each other . Why is it that when men stalk women they forbid them to come closer to her , but when a paparazzo hides in the car of a celebrity , he will get a huge pile of money for the photos ? One example of this could be North Korea or some Arab countries , where their governments ban internet access for citizens . In other words , they want to mislead the people about reality to avoid the population claiming via these networks or being up in arms against their system . So , this means we are getting less intimate and becoming more gossipy at the same time , as a consequence of sharing our lives on public sites . You can follow your favourite celebrities and have direct interaction , but this also has negative consequences such as some followers criticise them . It was a new thing for her to know that someone had the guts to sit next to her because almost all the people in that school defined her as a weirdo . She was on her way to the court where Michael was practising when she heard guys talking . Then our trainer , Nico , shows us a lot of tips and tricks . This is an original and moving love story that has people who are against the relationship between the main characters . Besides this , it tries to give us a real idea of what an innocent child might do to help people without being told the real truth . Warning the responsible departments how much they can do for the city in relation to employment opportunities , tourist attractions , environmental education , ecological preservation and make it the best tourist city in Litoral Paulista . Preserving , exploring the trails and beaches , encouraging extreme sports are what we believe are attractive to tourists of this wonderful coastal city . Nevertheless , travelling by car could pose a real threat to public transport because it is much more comfortable . It will even get more popular because it will be faster , more modern , and cheaper than travelling by car . The aim of this report is to give some tips for tourist who come to the city . I will provide you with some pieces of advice about shopping for clothes in the city , as well as some recommendations . In the city there are many fashion shops where you can get the most trendy clothes . You must be aware that maybe you will spend more money than expected , but if you are a shopaholic , it will be worth it . You will fall in love with them as they are pastel coloured . If the idea of a street market does not seduce you , I recommend you visit a little shop in Saint Peter street , The Old Bag , where you can buy bags and other accessories , such as umbrellas , gloves and scarfs . In addition , the shop is very cheap and you can have a cup of coffee inside while you are shopping . I suggest a quick visit to every shop and making comparisons of price and quality . This film is interesting because it drafts work problems , but not only this , it also shows some important values , like the importance of solidarity , group cohesion and the importance of not losing faith in dreams , even if the situation is withstands . The problem is that you have to book the hotels you want to stay in so you need some time to prepare it . The television of the future will be amazing , because it will have a 3D projector , which means that movies will look extremely realistic . You can see , for example , tigers , lions , zebras , birds , penguins or horses . If you were hungry , there are some restaurants and fast food restaurants . In my opinion , sometimes stars ' behaviour is very surprising . Film stars have very duties , for example , going to the parties organized by other people from show business . You are very lucky in choosing a life partner . I have seen your life partner . She is so beautiful . You both have a perfect match . First of all is traffic jams ; if you are stuck in a traffic jam in a big bus you will waste much more time than you expected on the road . Besides , public transport is overcrowded in rush hours . Another downside is that most buses are old and dirty . On the one hand , if you belong to a school , you can participate by giving information to the children about the catastrophic image our village would have if we did not reduce the pollution to the minimum range . Fourthly , I only buy organic products for consumption and keep a small spice garden in my backyard . First and foremost , the bank notes should be designed and the design includes background colour , artwork and security issues . The last but most important step is the inspection . If the sheet is bad quality , it will be securely destroyed . The " Di Roma restaurant " is a restaurant situated in the heart of a small village , " Monção " . It is very popular with teenagers and adults who love to eat pizza or any other fast food . Public transport is not as valued as it should be although a lot of people use it every day . It 's a big country and does n't have many inhabitants . Most people go to high school and university . In Sweden , we have a lot of different people from different cultures . The problem is that there are a lot of Swedish people that are racists . Not the majority , of course , but there are many racists . That can be really painful for those who are n't from Sweden originally . The first one is to study a lot of grammar lessons , and the second one is to learn how to organize my ideas for a long period of time speaking . It was written by John Clees and Conni Both and it shows the daily life in a fictitious hotel . Particularly when the owner gives orders to the waiter , these situations become hilarious . Its short stories have a funny and relaxed time . First of all , the environment that belongs to both man and wildlife is going to lose balance in the ecosystem . It means that more kinds of species are endangered because they are unable to adapt themselves to the remaining land . As far as I 'm concerned , it 's critical for governments to take measures to reduce the problems . Firstly , relevant laws and principles should be put in place to forbid extravagant expansion in the natural system . In addition , supervision of the protecting steps needs to be undertaken by the government . He still needs to find an ATM to withdraw some money to pay for his appointment . SEAWEED : OUR FUTURE Thanks to a crowd - funding campaign , we obtained the minimum funds to develop our innovate work . Unfortunately , the process only works for twelve hours . No matter where a famous person goes , he must realize that , next day , he will be on the front page of the newspapers with lots of rumours . Because , what is proper in living when journalists are following every step the famous person takes ? We are all free people and everyone deserves to have his own life . I wish to express my dissatisfaction with this course . perhaps because there were too many people and also , the more people there are , the more space we need and the room was too small . We felt hot and we had no refreshment facilities . The hotel would be luxurious but everybody could come because the prices would be low , so the hotel would be always full . I think that many people want to go to a luxurious hotel but they ca n't . The hotel would have many services and facilities , like a good reception , spa , wifi connection and pay - per - view TV in the rooms , a great chef who cooked the dishes of the Mediterranean cuisine , a swimming pool , a bar on the beach and a boat for trips around the Mediterranean sea . I would like to hear the point of view of tourists to improve the hotel . One day a friend of mine was going to an amateur theatre to see a musical and asked me if I fancied joining her ; I am not fond of musicals , but I went . The performance turned out to be enjoyable , with a lot of witty jokes . After the show , I was introduced to one of the actors , who was my friend 's cousin . They can do nothing that ca n't be gossiped about . Why do n't we want to give people entertaining us a chance to be themselves and to have a real private life ? " I would say stop the arrogance by my cousins " said Michael to his friends and thought about stealing the keys of one of their millionaire houses and having a party with his friends . But the house was destroyed and the neighbours , furred for the confusion caused during the night , had called the police , who , without his knowledge , were waiting outside the house to take him to the police station . Sometimes I have to take care of my little cousins or my niece and clean my bedroom . It 's not much . People have never taken into account that fact . All in all , it seems that if such tiny changes are made , a huge help to save natural resources will be done . The main attraction here is absolutely the beach . It 's a nice beach with white sand and blue water . Perhaps I 'll describe our journey by boat round the island . Subject : Opinion on what young people are interested in clothes , not too hippy , but something comfortable . time , then I suggest some other style . It has to be comfortable but I have experience of cooking and reception for parties / functions as I was a member of the School Parents Association of my children 's school . These was invaluable and relevant experience for the job I am applying for . Also , I am available to work for long hours at weekends . They do not want to learn so much because they just watch movies for fun . It is said that the main objective of television is to entertain people and make their free time happier . It can be really frustrating . The most famous person from my country is Mr. John Stefferson , who works in a department store and is always planning how to make people 's lives more comfortable and better . Sometimes I listen to the radio and hear his comments about some problems in my own country and some suggestions about how to make our life better . It was an engagement ring ! In Mexico , a foreign person does not face difficulties getting hired by a company . I would be pleased to help you with this part of your experience in my country . I know that you are someone who loves animals , perhaps we could go to the city zoo in order to find out whether there are any vacancies that suit you ? Something I can do is to do some research into places that need people who speak English fluently . A good illustration of this would be children . Mr Keffe , who lives with his wife in a housing commission home , is an old - age pensioner with no children . Therefore , it would be greatly appreciated if you could organize a home visit and provide further assistance for this family . We tried to contact as many family members as we could . My city , Valencia , is a touristic city situated by the sea . In addition , I suggest going by bus around the surroundings of the city , where you can do adventure sports , like canoeing , climbing or just walking around the mountains and enjoying the countryside My favourite kinds of movie are comedy and comedy drama because they have interesting plots and characters , someone and who watches comedy can laugh all the time . He presents a theory in which buying lottery tickets is not a misguided input into wealth production as some critics believe , but a valuable input into creating a sense of possibility of escaping from one 's current life by acquiring wealth . Cohen 's knowledge is that playing the lottery is not automatically irrational . Some people like to calculate the gain or loss from buying the lottery but other people that can afford a dollar ticket now prefer to keep their dreams . Taxi is the first possibility . Famous people have always been surrounded by a lot of journalists and paparazzi who follow them wherever they go . Therefore , most of these famous people complain about this , but it is logical that all the media , television , radio and journalists are constantly devoting every minute of the day to them , because people are interested in them , in knowing what they are doing every second , in knowing who they are with , in knowing what they like or do n't like , their hobbies , in short , in knowing everything about them . In Italy there are few cities with an underground and often in the smaller cities there are only buses . I hope for the next generations for a better public transport service and an increase of its use . Overall , it is clear that the main causes of land degradation were deforestation and over - grazing . These causes also had a negative impact on two regions that were analysed , in Europe and Oceania , and , consequently , these areas had higher rates in terms of total land degraded . On the other hand , Oceania had the highest land degraded rate at 11.3% because of over - grazing , which also contributed to having 13% of land degraded . For this reason , this region presented the lowest percentage of land degraded , with only 5% . If a person wanted to travel from Kano to Lagos he had no choice but to trek . We can travel by air using aircraft ; aeroplane , helicopter etc . So , whoever wants to star a journey has several choices of transport , either by sea , by air , by land or on foot . At 17:00 they let us into the venue and they carried out all the checks . When everybody had taken their photos , Emblem3 went backstage to get ready for the concert and after one hour it started . Kitchens will be better equipped , maybe with smart appliances , and people who ca n't cook will prepare the meal by themselves . He was so cynical that he turned out to be very nasty and unpopular . Sooner or later , married people will get divorced . In addition , public transport is cheap because buying a car means spending a fortune and in big cities where people are concerned about the environment , such as Amsterdam or Tokyo , there are many facilities like mobile phone apps or special offers . lower . It is not necessary to say I am able to work to a cafe schedule . I have experience working shift days and weekends . If you are looking for an enjoyable shopping day , Madrid is the best choice . In Madrid , you can find clothes by the best designers , such as Carolina Herrera , Dior and so on ... But do n't be afraid if your budget is quite limited , because we have some places where you can find great collections at 50% off . Nowadays , people 's lives are undergoing an unexpected change all because of globalization . Globalization started in the 20 's , so a huge proportion of the population has experienced this change . In my opinion , it is kind of good . Personal contact shows a decrease in this time , because people do n't want to face their real problems . Instead , they can see all the problems happening in the world on their smartphones . In the future , people will communicate via their computers , cellphones , and tablets , and this kind of technology will lead us to a lonely life . Of course , there will be some more electronic things like some new mobile phones with functions we could not expect right now , and there will be some other gadgets . To put it in a nutshell , we could say that our global world will be more electronic , and there will be more gadgets , but that wo n't change our lives dramatically . However , others companies will dominate half of the projected market share in jeans next year . They help me to develop and to see the world from a different perspective . Many people think living in the countryside provides a better way of life . My town is one of the cleanest towns in my country . The authorities have arranged many procedures to ensure that the town stays clean at the same time as being environmentally friendly . Another handy rule has been introduced , which is that plastic and glass need to be thrown in different bins that are available for public usage in each supermarket center . In these , people can find these bins at easy locations available everywhere . All the previous steps and more are being applied by my town 's citizens in order to improve the environment and go together with all the procedures that help them live a happy , healthy life . ' Gravity ' is an outstanding , brilliant , sci - fi film , directed by Alfonso Cuaron , starring George Clooney and Sandra Bullock . After a long sequence of events , the remaining astronaut first gets to the ISS , then , with a Russian spacecraft , moves on to a Chinese space station called TIANGONG . Never in her life had she been to as crowded a city as Danang , so she felt very nervous but extremely excited about meeting her lover soon . The more excited she was , the more disappointment she had . Mimi caught sight of her lover kissing another young girl in his room . As you know , in our country there 's trash being thrown everywhere and most of the things that are thrown away are recyclable . This is the main reason why our environment is being destroyed . My name is Pawarit Chonlahat and I have lived in Bangkaen district since 2010.I found that this area has changed so rapidly , such as , now it has a lot of condominiums a long the main road and nowadays this area has a big shopping mall and a modern hospital and a large police station . That makes my life so convenient and safe because I can walk from my house to go to the shopping mall in about 10 minutes and I can walk to the hospital in just about 5 minutes , so I did n't worry when I got sick and the large police station is located in front of the hospital . That can assure safety for everyone who lives in this area . For this reason , this is the advantage of living in this area but because of many people in this area , traffic in rush hours especially in the morning is very heavy and it takes so long to drive a car to work .That is the disadvantage of living in this area . So , in my opinion , this area should have an improved transportation infrastructure like investment in Sky train system to cover this area . Pat and Tiffany are trapped in their psychological difficulties ; Pat 's desire for his ex - wife can not be fulfilled , while Tiffany can not get over her guilt over her husband 's death . In these times , we can follow somebody 's Twitter newsfeed , ' like ' his Facebook fanpage and , of course , follow news about those famous people . First of all , remember to take food that can be eaten easily without much mess ( Spanish omelette , fried chicken breast , sandwiches , chips ... ) and , also , you can buy some drinks and water because it is fun to eat at the beach and people usually get hungry often after they do something like swimming , jumping the waves , surfing and so on . Furthermore , going on a hike among trees with a cool breeze around you can be the kind of place that allows you to forget the busy city life , too . However , documentaries are being forgotten and only twenty - six percent of them would like to watch more interesting TV series like Lost . In Spain , the vast majority of schools are state schools . I am also a talented cook for kids . My view is also trying to convince them that cooking is fun and sometimes they ask me to teach them how to make basic dishes , such as omelettes , spaghetti and more . The problem with this mansion is that it hides a lot of secrets and mysteries which are going to be discovered by its temporary owners , who are a family whose husband went to war and died . So the real occupants of the house are Nicholas , an easily scared boy , his sister Anne , who turns out to be one of the most important characters in the film , and their mother , who is called Grace and has a particular obsession with catholisism . The film describes how the love that a mother can give to her children can easily turn into an obsession . However , what makes this film so special is that it pretends to be a typical horror movie , but in its final scene , there is a sudden change which makes it more interesting . I would recommend this film to anyone , even those who are easily scared , because it is not like the rest of the horror movies . It is a film in which you are continuously discovering secrets as if you were another character . So it is a question that requires deeper reflection from all of us . Whether public transport might be the solution , or be more suitable or not is something with arguments in its favour and against it . You do not have to wait for a specific time to catch the bus , for example . However , a lot of people are becoming more and more conscientious about how important travelling by public transport is . One of the most important reasons is precisely to take care of the environment . I really liked working with special effects and the best thing was that I learnt a lot about that technology . Summing up , I prefer doing my shopping by means of websites or auction portals . He 's been doing great in both academic and extra - curricular activities in the school . On the one hand , we could live in a more relaxed way ; on the other hand , we could think about settling on other planets . Then Sergio left Microsoft , created his own website which gave him enough money , and travelled wherever he wanted . As you asked me , I prefer sailing on the river to climbing a wall because I want to connect with nature . Though the modern cities are emerging rapidly , the problems caused by excessively exploiting the environment are severely various . The red coral reef off the coast of Australia , for instance , serves as a shelter for algae and other tiny sea fishes and an index of environmental fragility . Due to the massive construction of five - star hotels on beaches , the biological chain there is cut off and environmental variations are gone away . On top of that , it is the regulation capacities of the environment for temperature , moisture and even sandstorms are eroding as less plants inhale carbon dioxide and exhale oxygen into the whole system . In a bid to address these side effects that civilization has brought about , governments must take measures step by step to tackle them . Apart from the natural areas , the minimal areas for forests and wetland have to be ensured . In this place , there are guys and girls attending pedagogy who organize activities to entertain children of every age . Not only because of oil prices , but also the costs of insurance , the car , the parking fees , etc . In comparison with a bus ticket that costs four pesos and you are sure that sooner or later it will come . What about looking for colleges which offer Wi - fi Internet connection and a proper meal at lunch ? We have subjective opinions ; we normally judge because we have a preconceived idea . For example , in work interviews and jobs that have direct contact with the public , it is better to wear a formal or smart style . Overall , my personal opinion is that we give too much importance to clothes and appearance than we should . Although on some occasions some clothes styles are required , people should have the freedom to choose what clothes they want to wear , and it should not have consequences in our lives . In countries like Mexico , some people have the opportunity to use Uber , which is a service that you can use if you have a credit card . It is an amazing service , but not all the population have a car or the financial status to use an Uber , so people have to use public transportation , no matter if the bus or cab driver yells at them or drives badly . In Mexico , the public transportation , in particular the cabs , are not a very secure services , because some of the drivers steal and kidnap , in many situations they could kill you if you do not take precautions . But despite this , it is very sad that in that place people can not do some things because they do not have the possibilities to pay for something more , so they have to take public transport . Although we did not have the current social communication means such as Facebook , Twitter , Whatsapp , we were very sincere and close to each other , more than these virtual friendships prevailing today . I have already experienced one friendship through an organization , International Youth Service IYS , a charitable association established for youth friendship . The best of all in real friendships is to always believe in your friend 's abilities and be his real mirror for good and bad actions . He will be the same for you . Despite the bad weather , if you travelled by car , you could park your car near your destination , so that you could arrive comfortably . I think that I 'm good for this job , because I really socialize with children . Well , the part of the day that I enjoy the most is nighttime because it 's when I arrive at home and I have finished my whole routine , so I can take a break and I can do whatever I want and I can just relax , so I would say that nighttime is the most relaxing part of my day , so it is the one I like most . I think there are things you need to plan because it 's important for your life , but it depends on the situation , because I also like to let things be and let them happen because they have to happen , so the majority of the time I prefer not to think about it and just let them happen and not to plan anything . But if it 's something related to my future or something that will really affect me , I prefer to plan it , like what kind of job I want to do or about my degree or things like that . David is always ready for a joke , but amazingly , he has the ability to appear serious . I do n't like to travel by boat , because it 's uncomfortable and it takes ages till you arrive at your destination . Cordoba is a thee hour train ride south of Madrid , and attracts visitors from all over the world It is the only Mosque in the world that is not oriented towards Mecca . For a job , i recommend you travel to the coast in Cadiz , Malaga or Huelva and look for a job on the beach , because at the same time as you are on the beach , you could earn money . Among my acquaintances I have a reputation for being a friendly , positive and talkative woman . When he was little , he heard his family talking about how happy they were because his brother Peter was following in the footsteps of his mom . Every day , scientists try to develop new ways to improve the way we live , so that we are able to pollute the planet less . It sounds a little bit strange , but by installing solar panels and other features in these homes , we live a much greener life . Undoubtedly , there will be some changes but , because we know why we are doing it , there would be no problems . We take food and drinks and we spend a day in beautiful places such as the top of a mountain , an amazing castle or a typical market in a town . The film is about this CIA assassin who ca n't remember his past , but he knows he 's being chased by the agency . It was so exciting and funny listening to all those musicians , because some of them actually did n't have the skills to play and did n't have the charm needed to warm up the people . I 've had a little bit of experience of summer babysitting for some kids . In Italy it is more difficult to be a babysitter because , if you are underage , parents should take responsibility for you , so it is better to be over 18 . To be honest , I 'm not the best cook ever , but I can cook a few good things like scrambled eggs , pasta and meat . One of my characteristics is that I 'm a very precise person . For example , I enjoy making lists because they make my mind clearer , and I strictly follow what I wrote so everything , hopefully , ends well . I am 25 years old and I finished my studies in psychology this year and I am available to work from July to September . As for languages , I speak native Spanish and Catalan and also I speak French and German fluently and recently I passed the First certificate in English . Furthermore , if I were you , I would go with joining a health club . You will not feel self - confident and happy , but your outward appearance will be better . I arrived extremely exhausted , because I could n't sleep the night before . All day I was lying on the beach , talking with my friends and having an incredible time with them . I 'm Catholic . I believe in God , but I 'm not very friendly with the Vatican 's rules . Travelling by car is so much more convenient if we think about small places such as villages or small towns . If you consider the chaotic traffic and the long queues to get there and the impact of these factors on people 's health and people 's finances , I 'm sure you 'll change your mind about public transport . On the other hand , it is possible to find hybrid cars , but they are more expensive than those that work with normal fuel and , for that reason , this kind of car is not people 's first choice . Such policies will involve taxes on polluting cars , the increasing of fuel prices and the introduction of benefits for those who opt for more environmental means of transport . Shakespeare provided everything the people asked for --- laughter , romance , and tragedies . We would buy next , impractical high - heel shoes , which will spend a couple of years in the wardrobe . The last but not least disadvantage of doing shopping , is that in the mall could prowl many pickpockets , and they could rob us . Interestingly , the purchase price of " Carde " and " KD " is almost the same . However , " Sebu " leads with a purchase price of $ 1,000 . Whereas " Carda " and " Sebu " score with warranty expenses of under $ 150 . As a long term investment , I would choose the " Sebus " model even though its purchase price is very high . Inhabitants can go to the countryside to have a picnic or excursion with their friends or families to relax . After natural areas , such as farmland , forest and wetland , are destroyed on a large scale , there are no close places with beautiful scenery to visit . The building land is supposed to be their home . It will save lots of plants and animals . It will save the environment , so it will save you and me . She had a feeling that her birthday would n't be ordinary . Firstly , just after she went into school , they greeted her with a million colourful balloons with inscriptions with all the best wishes . Eventually , they came to the lake on the suburbs and then she saw something unexpected . In my opinion , I recommend you to stop going to sports classes , because I think music classes are better , because you can also get a job in an orchestra or something like that . Ever since a curse was put upon Ailee 's grandmother , the girl has been living a daunting life . Max was so anxious to see all the different kinds of wildlife . Halfway through the trip , Max heard a weird noise close by and he decided to see what was going on , but before he knew it , he was all alone . Max could not have been happier . " I practised Ashtanga and Iyengar 's styles of yoga and Ruesi Dat Ton ( yoga of Thai hermits ) , learned different approaches during my training in India and Thailand , and my practice brought me to Classical Yoga - Correct Approach to Spine school , the way of exercising I found the safest , the most beneficial for health and scientifically grounded . She was a foreign student in Palmira , in the north of Syria . Then Stefan 's daughter , Aurora , goes to live with three fairies . The three fairies lead a prince , Philp , to the castle because he has to give the kiss of true love . After that Aurora does n't wake up . Subject : Application . I am writing to apply for one of the camp monitor positions you advertised in last Monday 's Daily News . I am interested because this post will give me complementary experience . To begin with , evidently , technological progress has noticeably enhanced quality of individuals ' lives , contributing to the economic growth of numerous nations . one of the most exciting days of my life was the 23rd August 2014 . ! If , ( one day ) I have the possibility to do it , I will go to distant galaxies and I will see how the universe began . I mean the timetable punctuality , time interval until the next bus and so on . It opened more than twenty years ago and still now is the leader in the chemical sector . Try to be spontaneous and not too sliced . Do not talk too much , as it is a symptom of anxiety . I worked on that team more than ten years ago ( new employee recruitment ) and I can guarantee that for the first interview it is important only to make a good impression . I also teach children at the age of 10 or 11 how to play it . " Carne Enchipoclada " you need to choose the meat ( pork tenderloin , beef steak or deer meat ) and it is accompanied by a sauce of chille chipotle with potatoes cambray . " As a matter of fact , viewers are not able to decide the script , but they can still decide to switch the television off . I am looking for the chance to work for your company because I know that your store is the leader in large department stores in the UK and last year your company won the prize of " Best place to work in 2013 " , and I want to share my knowledge and my work experience to improve your profits every year . According to the CDC , the percentage of children aged 6 to 11 years old has increased from 7% to about 18% in 32 years in the United States . This means that in the past three decades , obesity has more than doubled in children , same that had diseases just like diabetes , asthma , cardiovascular risk factors , mental health disorders and musculoskeletal problems . I have little cousins and sisters so I 'm very good with kids . I 've experienced all kinds of situations , so I think they wo n't be a problem for me . As I said before , I have young cousins and we meet on Saturdays so I need to think of activities and games to keep them entertained . I 'm also very good at sports . I practise track & field and ping pong , so sports are n't a problem either . I 'm an outdoors person , so I will be very happy with the accommodation . I would be very thankful to work for you if you decide to accept my application . The cards included the programme of the concert and some photos of children from all over the world . I did everything by myself because everyone had something to do on their own . I 've been doing martial arts for eleven years but I haven't lost the passion I feel for it . Many people today have pets of all kinds . First of all , a pet is a friend for the family and , much better , is a member of the family . One more advantage of owning a pet is that it helps children learn to be responsible and caring . On the other hand , there are a lot of disadvantages to owning a pet in big cities . Pets and animals in general need fresh air and exercise outside and not to be always in an apartment . I have heard about pets that get sick through living in a small apartment in town , and that is terrible . In my opinion , it might seem good to have a pet if we take care of it . All in all , owning a pet in a big city must be done carefully , ensuring all that the pet needs . In the class , you should take notes and write down what is important . If you have any questions , then you should ask teachers to help . I really do hope you get used to the neighborhood . Nevertheless , I would like to improve some skills and although I did very well , I still got confused . Nowadays , people are aware of environmental problems and they will try to figure out solutions . Moreover , there will be important technological advances in our lives , like intelligent mobile phones which can help us with day - to - day tasks . Nevertheless , people try to save money by every conceivable means . You have all the kinds of German food you can imagine , from sausages with choucrut to Gullash with spatzle . Most of the paintings and photos are from Germany , because that town was occupied by German people many years ago . Almost everybody has at some time thought of taking a gap year between leaving school and starting university , but do we really know all the advantages and disadvantages that it entails ? It is also said that at the time of heading to college , those people who have taken a year off are the ones who have least difficulties learning and relating with other students because they have got used to it before . Many automobile companies are working for a new future of automobiles . Some people argue that this new idea of cars is a milestone for us and it will bring only positive effects with it . At the moment , people who have got a handicap can not drive a car by themselves . In contrast , self driving cars are very expensive and many people can not buy one . Buses are the main transport in my area . If you are not keen on travelling by bus and you do not want to get the car out of the garage , taxis may be the best option . Conclusion The majority of users are young or elderly , since they are n't old enough or they are too old to drive . This is happening now , and we are not even fully developed in technology . So , I would recommend this CD to other people because I think that they could get to know the signer deeply through the songs which are on this amazing CD . I do not agree with the idea that there is no future for public transport , because it is a perfect means of transport for commuters and , nowadays , a lot of people are conscious of global warming and the environment , and refuse to use the car every day . There are a lot of benefits to public transport . First , you do n't have to drive yourself , you can listen to music , read a book or whatever you want without having to pay attention to the traffic . It is true , too , that travelling on this mode of transport helps the government because you have to pay for it , and the majority of modes of transport are cheap enough for everyone . However , so many people love having their own vehicle , a car , a bike , a motto , because this give you other kind of freedom , you chose the way , you chose the time , you chose the way in you drive it , the positive thing about this kind of vehicle is that you do n't have to take a bus , for example , crowded with people , you can go alone in your car , or with whoever you want , but the important thing is that you choose . In conclusion , we can say that every kind of transport has its own pros and cons , but in my opinion , the difference between both of these is that in the second you choose your own way . Guys should not go snowboarding . Most people eat scrambled eggs and drink a cup of tea . As usual , I 'm on a diet , so I prefer only yoghurt . In recent years , people 's attitude has been changing . However , public transport has been criticised more and more in recent years because of its inconvenience . Therefore , buses do not run as frequently or regularly as they used to . In the end , the public transport service needs to change to attract more people and to have a brighter future . The purpose of this report is to inform you about how the city of Granada takes care of the environment . And there is a big university community involved in recycling . However , Granada can not be considered as cycle - friendly . There are fewer cycling lanes than in other cities of a similar size . I consider that Granada scores 6.5 out of 10 for taking care of the environment . When the weather is good enough , close to the castle take place many kinds of parties and entertainments . That day was a terrible day for Michael . He woke up and felt totally exhausted after an overwhelming birthday party . He did not answer at all , besides , he hit the chair near her , and unfortunately , that chair hit her in a serious way . I think that many google users will be happy if the developers bring more useful information to the main page , for example , weather information , currency rates or hot news . Moreover , google map service needs some improvements , such as street names , map accuracy and more city panoramas . In my opinion , a trip will be fascinating because of the fact that the building of the Brewery was originally a German - owned brewery which has been brewing beer for almost 400 years . It contains a little museum which is open for tours . There you could buy some souvenirs - glasses , bottles , T- shirts , cups and , of course , beer ! They serve all meals in small portions , and they suggest that the servings can be shared , so everybody can try more items from the menu . As a result of this , many people are trying new options , like car sharing . I 'm a teenager and nowadays I recognize there are a lot of ways to get to know something . In the past , technology was poor and only a few people had a smartphone or a computer . Here we have some of them : anemia/ anemia ; rickets and malnutrition … The lack of a sense of civic responsibility leads easily to bushfire . Its true attractiveness , in addition to the decoration which is at the pinnacle of Andalusian art , is also its location , which is unique . If you are lucky enough to visit this wonderful place in summer , I recommend you attend the Granada International festival of Music and Dance , which is celebrated in Genelalife 's gardens , where you can enjoy amazing artists and orchestras in an unrivalled setting . After that , the printing process comes into play . The most significant procedure is called inspection , which means manual checking by special machines and staff , and then they are classified into 3 different categories , including good quality sheets , partially damaged sheets , and bad sheets . Namely , Design , Preparation of metal plates , Printing , Inspection , Packaging and Distribution and Disposal . process is inspection , where the printed sheets are If they are not very good , we can destroy them securely . However , a few sheets may be partially damaged . That does n't matter due to the fact that further separation will assist you with getting rid of the wrong sheets . Remember when in school you learned the three essential things for living ; reproduction , nutrition and interaction ? Well , humans have become more and more sedentary with the passage of time and have forgotten about interaction and movement . I might not have the typical sportswoman body type , but I really enjoy doing sport and feeling the glory of movement . My favourite sport is tennis . Although it is not the only one I practise , it is the one I most like to play . Apart from obviously having fun and socialising , the way you feel after running and burning feels really good . Therefore , in the future , I will keep improving those abilities and become a more organized person . If you want to start practising this sport , you have to get fit and run a lot because you have got to have a good physical condition to play because it is a very demanding sport . Let me introduce myself . I am Luis from Spain and I work as a civil engineer in a Spanish infrastructure company called Acciona . I was very surprised to hear that you want to spend your year off from university in my country and I am also extremely flattered . It 's one of the most beautiful castles , in my opinion , and it represents the most important thing this country is known for , and that is Dracula . He was actually one of the rulers of this country and his real name was Vlad Tepes . And if you want to have some fun too , there are some festivals that you might enjoy . The biggest one in the country is in the city where I live , so you 'll have a place to stay , and for free . I hope my advice was useful and I look forward to seeing you next year . For three years , I babysat my neighbor 's two daughters . There have been rumors of the construction of a Metro in our town . The statement given in the rubric proposes an issue of the future of public transport in developed countries . Modern megalopolises are suffering because of a surplus of automobiles . At the beginning of the 7th century , Cáceres was conquered by the Arabs . At the end of the 14th century , Cáceres was conquered by the Romans . Therefore , it is a multicultural and multiracial society . The center of the historical city is the Big Square . There are mixed Arabs and Roman buildings , and two cathedrals . My favourite restaurant is Chinese . In Caceres we can eat Chinese food at Food House . I love swimming because if you are angry or your job is very stressful , you will feel well after thirty minutes in a pool . Actually , this sport is very healthy , so some doctors are recommending this type of sport . Afterwards , I will have the right to take part in the international missions to maintain peace under the patronage of the European Union . Secondly , I am going to inform you about how our citizens are trying to keep the area clean . - There are cleaning campaigns twice a year . - Last year there was a campaign to renew and repair the most attractive parts of the village . I hope this report informed you fully on the environmental situation in our village . In Budapest the rubbish is collected separately . For a very long time I 've been doing my best to separate rubbish , and then , it was a really bright summer morning , I saw that the special yellow bin for paper and glass was emptied into the same lorry with the other rubbish ... I have been learning English for 8 years and after I sat r the FCE exam two years ago , as soon as I passed the exam , I started preparing for the certificate in advanced English exam so that I could demonstrate my English skill even more , both written and spoken . Although there are a lot of people who strongly believe the best way of travelling around the city is by motorbike , there is also a large proportion of society who are sure it has too many drawbacks to be worth buying one . It makes my every journey unpleasant and I feel uneasy all the week before the flight . But this mode of transport is n't so comfortable , especially when we must travel onshore ; then it 's complicated because travelling by boat is allowed only on the sea or any sizeable river , the courses of which are usually placed less conveniently than roads or even railway tracks . In general , the facilities are well maintained but the majority of the users think that the installation should be improved in the basketball and tennis courts and maybe the bathroom should be remodelled . The workers are very kind and sympathetic and enjoy teaching . Disadvantages Our cities emit too much carbon dioxide , making the earth warmer . Floods , droughts , and famines . All of these have great effects on humans and animals . For instance , the loss of property , the disappearance of people , which is not good for the development of human beings . Finally , governments should use the space properly , for example , making plans before building buildings , estimating the effects on humans and animals . I think I could be the right person for this job . I 'm really patient and I really love to be with kids , play with them and take care of them . I always have fun with them . I also know a lot about cooking because in junior high I took cooking lessons and I learned a wide variety of dishes and snacks . However , acquaintances of hers , the students at the University , comforted her . Surprisingly , when you are playing this sport you improve your speed and coordination too , so that could be an interesting reason for taking it up if you are not involved in it . Personally , what I can say is that playing this sport makes me feel really alive and not only when I am playing it , it also happens when I am watching it , especially during the World Cup . Curiously , there are many ways of taking care of yourself when you are taking up this sport , so what I advise you to do is to do some exercise before you go on the pitch , because it not only prevents you from suffering from sprains or other kinds of injuries , but keeps you active to keep the level of your game . It is a majestic castle conveniently located on the river . First of all , they are supposed to be designed with great care and many considerations , such as the background colour , artwork and security issues , all of which are crucial for bank notes . Next , it will come to the most important step , inspection . The next step is the most important and it involves inspection , which means good and bad sheets are separated during this process . One of the measures that we , as world citizens , can take is to leave our cars at home and start to take public transport or to share cars with others . This is causing diseases and allergies that are affecting the citizens . Engineers are studying new engines that are more environmentally friendly , but even so , we have to reduce vehicles to help reduce the greenhouse effect and pollution . Plans and programmes are being developed to reduce the number of cars driving through cities . Some of these have the same aims . Taking public transport can efficiently reduce the emission of carbon dioxide and will help the earth to recover from those disorders . The above reasons I mentioned explain why I do not agree with the statement that public transport has no future because travelling by car is more convenient . It is important when we work or study in international areas . I think that there are not many disadvantages of learning another language . Also , I found some books on the internet with Cambridge 's exams . The Forbidden City , one of the most famous museums in China , has opened its online version to the public , which means people can visit the Forbidden City on the Internet instead of taking a time - consuming flight to Beijing where the museum locates . Once I visited a museum to find some pictures of cave painting in France , but when I went to France to see the real painting , I found it was more vivid and could show you how great the French cavemen who painted it were . Admittedly , a museum has its own merits ; it is easy to find on a map and is always emphasized as a symbol of a country . A documentary , a book about the culture is cheap and easy . We can consider it an economical method . If you decide to find out some information about a totally unknown country , a museum is not a wise option . Machines can tell us lots of important information . The tables and the chairs are very beautiful because they are like in the American films but they are very uncomfortable . It would be incredible if you started your trip in Cartagena , which is a Caribbean and tropical city . We think that it will be convenient for him to apply for a Postdoc position during his military service . His ideal plan is that he will try to apply for a Postdoc position this fall or winter , and then he can work abroad after finishing military service ( August 2015 ) . In terms of protecting the environment , taking public transport may cut down the carbon emissions . It is urgent timing to avoid the greenhouse effect that people should think about how to decrease the carbon emissions . There are a lot of places where people are building their houses . Perhaps we will be living under water ? Many buildings , like skyscrapers suggest we will live in flats which exist above the ground , and that is not extraordinary , but how about whole cites prospering under the water with their own source of light which could replace the Sun ? The marketing department also gave me the responsibility of publicizing events via Facebook . In my opinion , the obsession with business transforms society into a ring inside which every man is against his friend only for the sake of an excellent career . The last point that has changed people 's lives is the tendency to have the same thoughts or the same goods . Yes , they will , and I hope that we will improve our thoughts and we will have the consciousness that we are not " supreme " and that we will never have the right to imposing us in the world . To my mind , the beauty of music does not depend on its varieties . I think that Spain is an incredible country since it has all kinds of landscapes : mountains , beaches , lakes , and you can enjoy adventure activities , for example , trekking routes , climbing , bungee jumping , surfing ... You can do different kinds of tourism depending on the city where you want to go . However , I recommend travelling to Extremadura in spring or autumn because in summer it is too hot . In Extremadura , you can enjoy the environment and you can walk across the famous Monfragüe National Park or Tajo - International Natural Park . John talked about the serious problems caused by not recycling things like plastic bags , bottles … that end up floating in the sea because humans do n't take care of their environment , and all this is causing loads of aquatic animals to die . I had the chance to be introduced to a different world and I started looking at everyday life through different eyes . There seems to be nothing better , nothing more interesting , exhilarating , breathtaking or stunning than taking up this sport . It 's also not said but tennis is one of the sports which causes an enormous amount of injuries , so it 's necessary to be under the constant supervision of your doctor ! There are a lot of bargains and cheap items on the market , which very often catch our eye , but I definitely want to warn you against them ! The " Mariahilferstraße " is the perfect place for people that want to avoid overcrowded malls . Especially on a rainy afternoon , the " Donauzentrum " and " G3 " are the perfect way to spend your day . I 'm also a volunteer for the Red Cross , so I 'm used to looking after children and organising all kinds of events . We do n't have to think too much about almost anything , needing no person for company since we have all these distracting devices for entertainment and relaxation . I 'm really glad to know about your future plans . I definitely think that this year of travelling and exploring will be a great way to grow up and meet new people from different cultures . I worked in the OIL MINISTRY 's central library on foreign scientific books which mainly concerned the petroleum field . Just do not order the pancakes , because they do really bad pancakes . There are about a thousand animals and in the middle of it is a gorgeous castle . Their novels have a lot in common : first of all , the plot is usually pretty complex ( as we can see in David Copperfield by Dickens and Wuthering Heights by E. Bronte ) , and so are the characters , who are always well described , especially on a psychological level . Furthermore , both the authors included in their works the figure of the noble who helps the hopeless child who comes from a lower class . If they want to use it , they should try to focus on getting important information which is beneficial to improving their knowledge . Nowadays , it 's common to think that travelling by car is much more convenient than travelling by public transport , but it 's not true at all . As for the pollution , it could be reduced if people used public transport ; it is well - known that CO2 emissions per passenger kilometre by public means of transport are 80% less than a car . They ca n't do trivial things such as shopping or going to the cinema with their family without being aware of the fans and paparazzi . Sometimes , famous people look a little bit different than on the stage and their faces without any make - up appear on the Internet . As a result of this , many studies have shown that athletes should be motivated to push themselves beyond the record . You certainly will learn to fail and win , but the most important thing that you will learn is never give up . It usually starts with small talk or compliments , as at school I was taught that expressing appreciation to people can be a good start of any kind of relationship . Now the question under discussion is whether public transport has a future as travelling by car is gaining more and more popularity because of its advantages . It 's not a secret that gas , insurance and repairs are costly . Safety issues are also very important . It is obvious that it is safer for the environment than thirty cars with a single person inside . Moreover , cities ' authorities encourage the development of public transport because it creates employment , lessens the impact on the environment and contributes to road safety . He knew that Peter was a little bit irresponsible , but he thought that the arrangement sounded perfect and nothing could go wrong . But there 's something in her big bright eyes , circled with long brown eyelashes and freckles , that makes her appearance unique and causes Tom 's heart to flutter every time he brings to his mind her piercing gaze . Their transformation from innocent posters to digital screens ranging in size from minuscule to vast has made adverts all - pervasive . Local people were invited and a talent competition was held . I am currently an intern on a scientific research program in a group called GALP - Logical Programming Teaching Group , that , with the local city hall of Araraquara , aims to transform the city into a national technology , research and software producing center , accomplishing this goal by teaching logical thinking and algorithms to kids , diminishing future evasion in many exact science courses . It was awful . Thus came the question of what I was going to do next , but I was n't ready to make that decision back then , so with the agreement of my parents , I decided to take a gap - year . I was going to spend the next 6 months in the United States which actually terrified me . I also got to know myself better and I have reached a decision about what I want to do next year . I am going to study at the university . Even though they are well known , they have a right to have free time and they should be able to spend it however they want to , without anyone disturbing them . The idea of the sublime that Wordsworth had is considered by many as the standard idea of the Romantic sublime : forms of nature that inspire feelings of awe , danger or weakness . There is also a food court on the third floor , catering to all sorts of customers , as well as a few restaurants on the first and second floors . Another shopping option is the main street in the centre of Viña del Mar , which used to be more popular in the past , but which was displaced by the shopping centres . I 've always liked to play with kids and do fun activities with them . Away from busy and noisy roads , the beautiful old inner city reflects what Brussels really was for centuries ; small but cosy cobblestone streets flanked by small houses and shops in light colours and with old - fashioned roofs . Travelling across the Atlantic Ocean , for example , requires an airplane or a ship . Fortunately , Hundreds gather there , parking spaces are full , again facing long queues in stores - no matter how unpleasant it sounds , it is the reality nowadays . Afterwards , some get into their cars and get stuck in traffic jams on the way home , it causes more tension and destroys your mood ! On the other hand , the majority feel lazy and they go shopping just for special occasions , without any rush , they dedicate time in search of fashionable clothes , best quality garments , stylish items . On the other hand , searching for your favourite brands , non - seasonal products , some special goods , just looking through shelves , trying the garments on , asking for advice , testing products , there is plenty of work to do to make a perfect purchase . Fortunately , this unavoidable part of our lives is not that problematical anymore , as we may experience the pleasures of online shopping without leaving home . As a shy person , I can confirm the differences between real life and virtual interaction . I am at home in my lovely house , where I love every detail of the interior , where everything is in its place . My kids are proud to have parents like me and my husband . Friends , colleagues , family all those people who were next to me on my way to this wonderful day . Much shorter than their fellow tennis players , they have always been able to compensate for their physical shortcomings with an extremely good technique accompanied by a strong head . You must never surrender : until the last ball has bounced twice on the ground , you have to keep fighting , regardless of the score . Nonetheless , it helps to shape your own personality . She is regretful because their relationship got worse and it was n't what she supposed it could be . With this in mind , money would be spent on constructing a running track where no - one would have to worry about traffic or obstacles in their way . Conclusion The lecturer 's second argument involves capturing and destroying the toads using volunteers . One of the main advantages of cultural practices is that they allow societies to maintain their identities and gain economic stability . My study plan is to undertake a pre - university programme locally to prepare myself for further studies overseas . It is worth mentioning that schools are considering the environment as part of the education system that should be taught to students . Trash distribution , using green products that respect the ozone layer , not wasting water and many other actions . For example , we can take at least one family member with us . When it seemed impossible to catch him , a girl , who was crossing the street in a wheelchair , crashed into the thief and he fell down on the pavement . DIY Classes As most college students will soon leave for university and will live in dorms , without their parents , they are obliged to fix malfunctions by themselves . It takes a higher level of creativity and spontaneity to succeed in it than your usual basketball match , since its flexible rules , no - coach system , intensified relationship between the player and the crowd , and reduced number of participants widen and complicate its field of possible actions . But still , our customs have evolved a lot . Due to the geographical conditions where Japan is located in the Pacific Ocean , people here have adapted to eating raw fish and like to offer it as a main dish to serve customers in most restaurants . Successful communication between different cultures will happen only when we express ourselves precisely and interpret the information accurately . They are courteous and industrious . And then everything had crashed . Michael tried not to think about it and to listen instead to what she was saying ... Her voice was weak and feeble as she said " .. and I was really depressed , you know , and then I thought ... we always talked about going to India ... and I thought ... maybe we could fix everything .. so .. I'm just asking .. will you go to India with me ? " In the case of politicians , I do n't mind what they do on their holidays , for example , if they work properly when they should . I think the Royal Family is an exception because they are supported by all the citizens , so I think we ( as citizens ) have the right to know everything they do if we want . I had to take care of other volunteers . Dealing with other people is the hardest part , especially when they 're the same age as you . When we want to go on a weekend trip to the countryside , a car is irreplaceable for families with children or animals . She used to live in a flat , so she had never discovered how different and beautiful the world was . Therefore , one should not waste time watching them . In these cases , TV is undoubtedly bad entertainment . If you are looking for a film that provides you with suspense and action at the same time , I recommend you to watch " Now you see me " . So if you enjoy magic tricks , surprises , very handsome actors and splendid actresses , why would you miss it ? But , let 's face it , doing these things is not as wonderful as discovering magic powers , being kidnapped by aliens or singing a song with Justin Timberlake and Lady Gaga . We will be travelling by car to a campsite in Germany . To help with this issue , the nurse should make certain that Mr. Sharma is comfortable , and elevate the head of the bed for a more upright position in order to facilitate and increase his oxygenation , helping him to recover from his respiratory instability faster ( Snowball , 2012 ) . Also , I encourage you to visit Ukraine and to see its sights , to feel the culture and speak to nice people ! If you prefer shopping outside , taking a trip to King Street would be the thing to do . If you want typical souvenirs , you can go to Buckingham Palace , you will find a lot of small shops that sell souvenirs for a reasonable price . I have a high level of spoken English , as I have been learning it since early childhood . Companies like Monsanto that engineer plants with sterile seeds , encourage non - sustainable production models that promote the extinction of independent farmers who have to choose between their lifestyle and the new farming era . In many cases , volunteers are crucial to helping support life , as when meals are delivered to housebound people . Things gradually improved day by day for a time and my revenues started growing . It turned out that they sent my work to a few institutes and one of them was interested in me . When you use a technique or defend against a technique , you control your body 's movement and coordinate them to work at the same time . I thoroughly enjoyed the lesson and , according to student feedback , so did they . I suggest visiting the Vatican , as I said at the beginning ; the country inside the city . On the one hand , I have been learning English for so long that my good proficiency has given me the chance to get a position in an international team . On the other hand , I have learned French and Spanish just for a few months , because I was curious to learn the official language of the countries where friends and relatives are living . The writer lets us observe the fear , anxiety and the defencelessness of Sam , a neurological patient who is just beginning to emerge from his comatose state and who has yet to deal with the reality of his new situation , sorting out pieces of memories involving relatives and not quite understanding why a woman he does n't know anything about claims to be his wife . In Korea , we have many kinds of work which are related to English , so you can get a job easily . If you get the internship , you can work as a real businessman . Sheets in the second group then get separated into good ones , which , together with good quality sheets , enter a process of packaging and distribution where separate notes are cut and finally enter the market , and bad ones , which go to disposal with bad quality sheets , where both groups get securely destroyed . First of all , let me tell you the advantages . She nodded and made another effort to look around . The other person was n't convinced , however . " He made sure his voice was heard on the streets , to reaffirm his social position . The couple nodded and showed the ID of the man from the other city . The receptionist nodded and conducted both to the main hall . It is in these moments that I give it my all and realize that all the practice I had really paid off . I am a cheerful , energetic and hardworking person , and I am also a very responsible person , able to deal with small and medium groups of children , and for this reason I consider myself as suitable for the position advertised . First of all , in this film you do n't see a gangster Al Pacino . It 's about a retired army colonel who suffers from loneliness and depression . There is a great public transport system . He used to dream about him coming into his bedroom , laughing out loud , showing off his sharp teeth , threatening him with the most horrible punishments . Secondly , public transport is better for the environment than using cars because a bus has more space than a car and many people can go on a bus , thus decreasing the amount of pollution and helping the environment . Without the routine that studying gives you , with all the deadlines , the exams , and other stuff that force you to get things done , and , as a consequence , teach you to be a responsible person , which you will need to be when you get a job , you will simply be wasting one year of your life by taking a break . One thing that I 've learned in my life is that you should never take a break from your everyday routine unless you really need to , due to fatigue or for some other physical or psychological reason , otherwise you will be , I repeat , just wasting time , time that you could be spending in a useful way , by getting something done , or improving yourself academically , intellectually or doing whatever you think can enrich your life . I like to believe that , like the old Latin proverb says ( and I have already said this ) , there will be glory at the end to the man who endures hardships on his path . I hope you do n't think that sharing these thoughts with you makes you my new best buddy . I am writing in reply to your advertisement published in the local newspaper for the vacancy of Junior Chef . Moreover , I am currently undertaking a Chef Training Course which provides me with not only practical but also theoretical knowledge . Furthermore , I always try to maintain a positive attitude towards my responsibilities and sort out any problem that may occur . I have fond memories from my childhood . She was always cheering me up when I was in sad or difficult times , even when she was not feeling well . Dancing requires a lot of things , like coordination , flexibility , and physical fitness , just to mention a few . This can range from the rules your parents have set for you , to the laws created by the government . And , of course , to add an extra activity to my CV as I usually do every summer . I must say that not all of them are very easy to work with . However , I must agree that travelling by car can give you more freedom , you can carry your shopping and pick up other people on the way . It is known , that it is the job of paparazzi to follow famous people and look for sensation in their daily behaviour , and celebrities are aware of the fact that they are recognised everywhere , but an interest in someone 's private life , when the person does n't want it is basically a synonym for trespassing . If there is any problem with the cash register ( very common , actually ) , you have a phone number under it of a good technician . He was following an important European summit on environmental issues . Such an experience made Jake realise the considerable impact that a good public transport system has on people 's lives and their surroundings . - access to public transport is way cheaper than taking care of your own car ; though initially it might look like a huge investment of money from the community , in the long term it shows itself to be the most efficient way to travel ! This kind of action , when performed collectively , requires coordination of efforts and an ability to work together , two qualities that are frequently forgotten in our individualistic world . If you play football , you know how to act when in a team . Also , football is a physical game . In times of escalators and cars , it is refreshing to find an activity that involves movement , velocity and strength . In fact , it can be argued that the human virtues are a by - product of conflicts and fights ; that they are those character traits that we acknowledge as important for everybody engaged in a competition , be it for a trophy or for a country . In a club , you will find professional advice and also as many people as are necessary for a match . My name is Aly Meeuws . I am 16 years old . I live in The Netherlands at the moment and I am really planning on going to the USA in the future , so this would definitely be a great experience for me , especially for my English and being away from home . Besides that , I also really enjoy cooking with my mom at home , so working in the kitchens would not be a problem at all . Finally , it will look into possible future implications of this kind of technology . Namen and Kinnison ( 2012 ) indicates that " the three types of social interactions that social networking enables include ( 1 ) creation of an online identity , ( 2 ) establishment of relationships between users , and ( 3 ) development of layered communities defined by the lists of connections each user establishes " . On the other hand , on Facebook , people can share pictures , videos and thoughts without restrictions . Furthermore , some departments of police in the USA have used Facebook to share a video of a felony with the expectation of identifying the suspects , and their followers were apt to say something about the incident in response to the publication . For example , while women think about millions of things like what they want to do or have to do during the day , men just do not think about anything and can be like that for hours , just with a blank mind . I also learned that it is the mother that gives the principles and the direction of a man 's mind , and depending on her , he is going to be a sexist or not , he is going to help and be an honorable man or not , he is going to be a good and caring father or not , he is going to be a responsible human being or not . Women do not know their importance for the future in their own homes . I found this movie both exciting and emotional . Both thumbs up for me ! We regularly organise film projections and discussions around a subject related to the film . For example , with every film seen , our students have the chance to practice their language and to develop their own opinions , particularly as we always have discussions around a subject related to the film . Also , our monthly speakers are excellent . For example , last year we invited a well - known actress , Janet Hewitt , to share some of her experience on Broadway . Unfortunately , organising these kinds of events is costly and the money from membership fees is not enough . Being founded in 1920 by our well - known alumnus , John Carter , the English Language Club is the oldest club in our college . The fact that everyone from the community can participate in our events helps us to develop a positive relationship between the college and the community . We hope you will be able to take all this into account and will find it possible to help us continue and improve our club by funding us . It was a hot summer 's day , everyone was walking to their usual destination ; work , school , to buy some groceries , pick up the laundry or their clothes from the cleaners . Everyone except Peter . In her left hand there was a large steaming cup of coffee that landed on Michael 's new shirt when he bumped into her . One second later , Michael was covered in coffee , burnt and sticky and his mobile phone screen was winking until it finally turned off with a dying flash . In this article a teacher reflects on his experiences of creating plays and using them to help motivate students to develop their English . The most effective way is to practise every lesson for ten minutes at the beginning and end . Some learners will not want a speaking part . You could even ask them to be promoters . Also , they can see how much language they can produce . Regarding my academic experience , I am currently completing my degree in Primary Teaching and Psychology at the University of Valencia , Spain , where my current speciality is misbehavioral children . So far , I have received excellent grades in all subjects , and I am on course to graduate with distinction at the end of the semester . Enclosed you will find photocopies of all relevant certificates . It was from the most dangerous and terrifying gang in the village . That was the first crime I committed and here I am now , in jail . If you like animals , you 'll enjoy seeing those beautiful horses running and jumping as fast as they can . However , I personally think that it should not be regarded too critically but should only be handled responsibly , according to one 's personal needs . Before the trip started , the company who decided to make this trip said that everything was perfectly calculated so that it was impossible to have any kind of problem with the spacecraft . When you are sitting in the plane next to your instructor , with your legs hanging and your arms crossed … It makes an indescribable impression on you . And obviously , you should n't be afraid of heights to enjoy skydiving fully . My colleagues are nice but the management are terrible and recently I just stopped talking to them . Perhaps it is not their fault that this entire operation is so dysfunctional . In these cases , journalists themselves should realize that they are taking it too far and that they should respect them a bit more . During this period , the town has seen extensive growth in residential areas and local amenities , and the modernisation of leisure facilities . She was walking around the city thinking about the job she just got . Everything was looking perfect and it was something she enjoyed doing before the accident took place . This is an easy word to understand , but it hides more than the definition says . I have 5 years of experience of managing , PR / marketing communications for leading brand named companies : " Barbie " , " The Children 's World " , " My Toys " . In these companies I was engaged in the advertising of toys . These images became the subject of Feurer 's eponymous book , lavishly illustrated with 175 photographs , illustrating his five - decade - long career . The aim of this report is to inform the committee about the wishes of the students who took part in the survey that was conducted last week in our school . Improvements to socialising opportunities Modern life orders our days and weeks in a packed schedule of activities : job , children , housework , fun , free time ... By the time he arrived at the riverbank , some of his colleagues were already digging the ditch . I remember the warmth of twilight , which lures you to the heart of this town . I remember children , running about the small squares in front of the cathedrals ; elderly people in wheelchairs ... Nevertheless , when you are learning a language , it brings confusion . As a consequence , he had no money to pay for a sod , so he was thirsty all morning . Tom was getting really anxious , worrying that he would never make it back to his job . At 2 pm , the flight arrived . Also , in Red Square one can see the Mausoleum , which is can also be called one of the symbols of our capital and the country . A curious fact is that , out of the five most popular sports in the world , only basketball keeps track of possession time and to me that 's exactly what sets it apart from the others . While watching or playing any kind of sport , there 's nothing worse than a team or a player trying to waste time until the clock runs out , the game becomes dull and boring and you ca n't enjoy the excitement that only the up - tempo style of play can provide . The bottom line is ; a fast - paced game is a much more exciting experience for players and viewers than a slow paced one and that makes the " shot clock " fundamental to the dynamics of the game . Practice is the one thing that can increase the probability of desirable results and awareness is what gives you the ability to adapt to different situations , and the combination of the two is the only way to success . So if you want to be a good player , you need to put your energy and focus on practice and stay alert and survey the court at all times so you can be aware of what is happening around you . The " 10,000-hours rule " is said to have a scientific basis , in spite of the fact that most of its defendants have never read the study that established it . A network developed from the South of France to Switzerland , especially to try to save thousands of Jewish children . But now , they have told the whole world about it , some of them are now considered as heroes in Israel for what they did during those hard times . As the population grows exponentially , the resources fail to do the same . The hard truth is that until someone has to face the situation himself , it 's quite difficult to restrain oneself from wasting energy , food , materials , water ... We will have a great time together here in Uruguay . You will see some of the most popular places in this beautiful country . Kyiv is a good destination for shopaholics . The best manufacturers of clothes , linen , accessories have their shops there . Jewellery and watch shops can also be found nearby . Different shops will offer a wide range of goods and impress with interesting design ideas and unique styles . Even though their relationship was of the quarrelling type , everyone around them , friends and family agreed on the fact that the pair were as solid as a rock , and despite the ups and downs , love had always won in the end . First of all , the biggest problem is that the world 's resources are extremely unequal . Secondly , with the increasing of the earth 's population , the areas of farmland are also decreasing . People in economically developed areas are in pursuit of the perfect life and the people in undeveloped areas are starving . Grandma 's wrinkled face can be horrifying at night . After an hour Mindy was holding her baby- girl and Peter was trying to realize what had just happened . This kind of transport is regarded as a convenient way to travel . However , I disagree with this idea . On the one hand , it is environmentally friendly to use public transport rather than cars . Although I rarely watch the show on TV , I like the way they are trying to keep up with modern technology and that they are always making boring news so vivid and interesting through short video clips , pictures and their choice of words . They had all got special clothes and dressed up in colourful , old - fashioned dresses . Its historical importance lies in the fact that this place represents the fall of the Muslim kingdom in my country . After a few drinks , I told him that I 'm currently looking for a job , nothing big , just a couple of hours during weekends to make some money for my journey to the Netherlands . It 's literally 10 - 15 hours on Friday nights and Saturdays , stuff like carrying instruments ( which means hanging out with musicians ) , tidying after ( finding things , like wallets and cellphones ) and , generally speaking , - helping . I 'm a chemist , I ca n't kill people because I want to . However , their whole lives will be turned upside down when an eligible bachelor and his friends set up home in a nearby mansion . Friendship is overall an act of will . Friendship is a type of love which is characterized by being unconditional , reciprocal , and ready to forgive each other . Since ancient times , public transport has existed , and it suffered numerous assassination attempts . In China , for example , the dynasty Yuan prohibited public transport ( at that time , chariots ) because of fear that Han people could plot and riot against the Mongol 's dictatorship on it ; the situation was reversed in an early socialist regime when , in 1960 , Mao considered personal cars an instrument of oppression and symbol of devilish capitalism . Convenience has little to do with the fate of public transport . Countries with high HDI ( convenience to be drivers ) , like Germany and England , are those with better public transport systems , and they are even boosting them . Hi ! My name is Alexia , I am twenty - three years old and I live in Argentina . As I have already said , I play sports , and that is why I could be helpful at organizing sports and evening activities . I learned how to cook when I was eight , so I am pretty confident and well prepared . Bad sheets and bank notes will be securely destroyed . My goal , I decided then , was to become a pilot when I grew up . My mom has a kindergarten and I love helping her out . Every summer I help on my mom 's summer camp , but it 's a summer camp for babies and I would like to work with older children , because I think it 's more challenging . I would love to work at any place across the US . I am very good at artistic things , such as , drawing , painting , cooking , dancing and a lot of other things . My cousin , who is studying English Literature , told me that you have much more freedom when you start university , so do n't worry ! Language itself also becomes vitally important : the boy s ' speech is peppered with made - up words that highlight the isolation . There must be something very special about a movie when , after the third time , you 're still leaving the cinema thinking " I have to see it again " . Starring Italian comic Roberto Begnini ( who also wrote and directed the movie ) in the main role of Guido , this life - affirming tragi - comedy is about a Jewish father trying to shield his young son from the horrors of Nazism in the Italy of Mussolini . To achieve this , Guido creates an imaginary game for his child once they are deported to a concentration camp . The strength of the movie relies on the goofy , loving , eccentric character played by Begnini , his exceptional comic talent and his ability as a director to deal with such a delicate topic as Nazism while managing to drive through a thick line between comedy and drama . Honestly , I could not agree more , as the website as it is available today is an inconvenient tool providing insufficient information . If you haven't been yet , you should definitely do it . I promise you will love it ! But most teenagers are even more intelligent than adults or elderly people . Sometimes it happens that a couple who have a child aged from 12 - 16 , quarrels . Teenagers also have to make serious decisions like choosing secondary school , future job , which way they will go in their life , if they want to be in a relationship with someone . Thirdly , I do not have to be concerned about the loss of quality of photographs and pictures . When we thought that the night had ended , we had the perfect dessert . One of Slovenia 's qualified sommeliers will help you choose from the good wine cellar , so this is the place where I recommend our class can relax , eat , drink well & enjoy the happy atmosphere . For example , in India and China the technological advances have enabled them to mass produce really affordable cars , which are also imported . After eating a delicious salad and drinking tea , she went to her room to do her hair and put her make - up on . Lancaster is situated close to the Irish Sea and just around the corner you will find the stunning Lake District with its romantic lakes and peaks . If you leave the main roads and turn into the little alleys , you will find charming tea rooms and gorgeous antique shops with a wide range of antique goods . I did that for three summers and I still help out at my parents ' restaurant when a they are in need of a hand . from her outer appearance , she seems like a little girl . Talking about her outer appearance , one can easily see that Scout is not " the usual " girl . Instead of celebrating it , she somehow inhibits Scout 's learning . The most important ones are probably hotpots : mashed potatoes and vegetables , often combined with smoked sausage . In today 's intercultural world , one of the best assets people and nations can have is tolerance and a deep appreciation of cultural values different from their own . However , it is probably a truism that reading about or watching films about a country are only pale substitutes for actually going to visit a place and experiencing the differences yourself . The article " Stairways to Heaven : Gothic Architecture , Heavy Metal , and the Aesthetics of Transcendence " is an unparalleled one in terms of the discussion it provokes . I competed in singing competitions when I was younger and I took acting classes . And finally , the moment was there , the opening night . I put on my costume and walked on stage . I had to wait until the curtains opened . A clear example is that watching television in another language is of vital importance if you aim to learn new vocabulary or improve your comprehension skills , and it makes studying a language really fun and enjoyable . Kachl 's Park is a perfect place to spend some time walking along paths , sitting on a bench , talking to each other . Security against terrorist attacks was promised to be stepped up , but policemen are not seen in the streets and neither are security cameras . If you have strong nerves , do your window shopping in Bahnhofstrasse in Zürich . Usually he was energetic , full of confidence , ready to party . He was not stupid , but you could not expect any pearls of wisdom from him . However , all the people in his neighbourhood feared him because of his past . In this way , he moved to his new neighbourhood where everybody respected him . Although he had been trying to hide this , his personal problems were obvious and Magda did n't feel happy with him . This means you can set the time you want to leave , because you do not have to respect a specific timetable . This way you will have the chance to have a more relaxing journey through the countryside , traffic will not be so intense and aggressive , and finally , you can plan the time you want to arrive , using a GPS or other technology to help you plan your journey . To sum up , travelling by public transport can be advantageous when you travel inside a town , but when you have to travel outside your specific territory , nothing is better than a car . You can tell because everybody looks at her like she is some crazy murdering kid . If I have to , I search the web for information and implement it but it requires time . His name is John , and like me he is doing a degree in Physics Engineering in the hope that someday he can work at a research center , such as CERNE , conveniently located a few miles away from his house . But getting used to the Internet 's rules of communication , they might find it difficult to face up to reality , and make friends in the real world . Using messages , people forget to use grammar or even form full sentences . There is also a building which can be considered an interactive museum . In a very interesting way you can find out something about the history of Siemianowice and about mines . One day I dreamt that I was a millionaire . I bought a huge detached house surrounded by tall trees in a beautiful city , maybe in a city like Seville . I enjoy participating in debates . If you would like to take my application further , then I would be pleased to hear from you . All in all , I think this would be the best restaurant for our class to go to , since it 's close to the school , it has good prices and a friendly ambience . You only live once and wasting such a great possibility is unthinkable . We are slowly but inexorably loosing readiness to solve problems , unless we can surf the Internet , so that even a single day without technology would turn out to be a nightmare . In my view , we should all reconsider the role that computers have gained in our lives . In addition , my knowledge acquired by managing a bar and a certificate in hygienic food handling will guarantee a clean environment in your bar . Now we are going to evaluate the main characteristics and differences between a pellet stove and a pellet boiler . As mentioned above , the heat is necessary to warm up the air that , thanks to the fan , will be blown out to the room in order to warm up the external ambient ( e.g. room , bathroom , kitchen ... ) . The structure is pretty much the same as the pellet stove . The difference is that , instead of a fan , here we have a pump due to the fact that the goal of the boiler is to warm up water and send it to the heaters all over the house , so it needs a pump to do that instead of just a fan ( the purpose of a fan and a pump is the same : move fluid from a point A to a point B , but in one case , you have to move air and in the second case , water ( they have a different density : water has 1000 times the density of air ) . Then with TVs , information started to spread faster and faster until our contemporary instantaneous reports from across the world in the palm of our hands . Sometimes , it seems we have reached the pinnacle of existence . I 'm sure the pharaohs of Egypt felt that way when they gazed at the Pyramids . Firstly , online learning conveys flexibility in its schedule . Students can attend courses when they decide , but always respecting due dates . Consequently , both learning options have their positive and negative aspects . Public transport is always going to be slower , less flexible and much less convenient , but we have the reassurance that we are doing what is best for our planet . These people believe that over the next few years we will see a severe decline in the number of people using buses , trains , trams , etc . to get to places . In my opinion , this is disappointing for a number of reasons . Imagine going to work on a rainy day : you have one hand on your umbrella and the other clutching your bag , the wind is blowing mist on your face and a puddle of water is sprinkling tiny dots of wet dirt on your stilettos while you are making your way to a bus stop . He walked up to her room , where she was comfortably sleeping in her bed . When I was in school I used to go to my grandparents ' home to have lunch because my parents were at work . I fondly remember my grandma 's great cooking skills that she still has to this day . By the time my high school years were done , and when I attended university , I developed a certain predilection for typical healthy Spanish food , unavoidably combined with less fast food due to the usual dinners with friends . The cost of the waste disposal service depends only on the volume of non - recyclable waste produced . There are also public containers for glass and clothes all around the village . Michael had a chemistry test the next day , but he was n't in the mood to study and so he decided to call Alex , his best friend : - Sounds great . Michael grabbed his coat and crept out of his house in order not to wake up his parents . He remembered that he still had n't studied for his chemistry test . If we think about it , the car is better because we do n't need to wait for it like we wait for the bus or underground , but on the other hand , cars cost more money than public transport . In a car , we can just be by ourselves , which can be good because we can listen to the music that we like and we do n't need to be around people that are unknown , but if we choose public transport , we can meet friends or family , so both modes of transport are good , and cars do n't need necessarily to bring an end to public transport . But , even if it 's true that it 's the fastest option , you must be very careful when it 's time to get off a plane . If you are looking for comfort and relaxation , obviously , you have to take a boat . There is n't any comparison with watching the changes in the landscape through a window , enjoying the route that you are taking and , the best part , the cheapest way to get away some days and take the routine off some days . I went to the abandoned house and started to think of the best way to make his life miserable . I spent the next 2 weeks looking for ideas to make him suffer . As I did n't find anything , I went to the place where he lived and started to look for some information about his life and find people who he cared about . So as I continued to go to his house , I noticed he would always go to the same house , s I decided to follow him to the house and I found out he was dating a girl . She might be his girlfriend , so I finally got an idea . I would drive him crazy just as he did me . That way she would think he had problems with his mind and leave him . But soon i thought about it again and realized that if I did that she would try to help him and they will be more united , so I decided to drive them both crazy , almost to the brink of death , just as he did with me ! I screamed . My anger had dominated my mind . I did n't have any control over my actions . I was afraid of what I had become and what I could do , but I could not control myself and the only thing I could think of was him suffering a slow death and the satisfaction I would feel when I finally had my revenge . The best revenge . But I was so mad at him and so anxious to make his life impossible , and soon my fear of death and my anger for all of the suffering I had been through became stronger and greater . I had made a decision and I was going to do it . If he dedicated 4 years of his life to torturing me and not wanting me to be happy , the time is necessary for him to have a miserable life and I wo n't stop until I have accomplished my goal . I graduated from National Taiwan University of Science and Technology . I am interested in looking after children and playing with children . I always smile at people . I want to play with children and see their smiles all day . This conclusion becomes more prominent if we look into the data of the car companies and the exponential growth in their sales figures and , with low budget private cars in the picture , the scenario has drastically changed in the past 10 years . At our school or village football stadium I spend a lot of time every day . I want to give advice to anyone who starts this sport : " You must believe in yourself " . Hallo my friend , You regret that you were n't there with me . I 'll try to describe everything precisely , because I know that you very It was a long time ago , but , I still keep the rhythm in my body ! Around the city , you can find many places where people throw fridges , ovens , " amianto " , old things or furniture . I remember , when I celebrated my 15th birthday , only one schoolmate wanted to come to my party . I think that that day was one of the worst days of my life . I 'm learning a lot and the students are very friendly . But I need to study harder because I want to pass the exam , and it 's very difficult . Technology has changed people 's lives a lot . In fact , we can think how different our life is compared to either our parents ' or our grandparents ' lives . For example , my parents did n't watch TV , because there was n't any TV in the world when they were young . But that is n't the only difference : we can think about the mobile phone , the computer and finally the internet . Our grandparents could n't have imagined a strange machine like the computer in their lives . So the best way for them to travel is public transport . Each person should practice saving energy when using any source of energy to protect his own life . In conclusion , investments in developing public transport will be increased considerably . Public transport services have a bright future and their existence in the future ca n't be replaced . Are you free at the weekend ? Have you got any plans ? If you are interested , meet me at 8 o ' clock near the cinema entrance . Jason is my friend , he is drunk and he also dances with his girlfriend . A friend of mine recently explained that if a zombie apocalypse should happen , he would be prepared because he has been watching Walking Dead for some time now - so in his eyes , he learned how ( not ) to act in that case . Apart from educational content , there is so much bad content , business advertisements and fake information on TV that citizens wo n't be able to tell right from wrong . First of all , you need to be able to afford to buy it . After that , you must pay for the insurance , road tax , and mechanic 's bills , and so on . On the other hand , with public transport , you only have to pay for the ticket , you do n't have to drive , and if the bus or train or whatever vehicle you use breaks down , it is n't your responsibility . The next day , Huck went to Tom 's house to tell him that there was an abandoned house up the hill , so the two boys considered like an adventure . So they went to the mysterious house and when they were inside they heard voices , so Tom and Huck hid and they saw that Injuin Joe was the one that was talking . So he went back to Sarah 's house and cleaned the whole bathroom , but Sarah already knew that he had left the bathroom like that , so before Michael entered the bathroom she said : " I know what you left there " and Michael went running to the bathroom . I like my maths teacher very much because her teaching style is very realistic and simple to understand . I said that because when I was eleven my best friend had an operation on her back and , before the operation , he came with me and , every day , I had to wait for her because she spent a lot of time in the shower cleaning her long hair . I hated that ! I have a dog and its name 's Chente . It is a golden retriever . Also , I have a brother whose name is Jose Luis . He is twenty years old , his personality is dynamic and funny . My mom and my dad are good people . Another thing that you must know is how to deal with people . We are searching for someone who can impress everyone , also someone who can give the customers good attention and service . It is easier than you think . Every Sunday , we do a mutual cooperation where anyone can treat rubbish as well as they treat themselves . Meanwhile , we recycle inorganic rubbish too . First , I agree with the given statement that there will be a tough time for public transportation in the near future , because people want privacy as well as freedom , which is quite impossible on public transportation . as much as possible of the city or town which mismanaged routine for people who travel by public transportation . As a consequence , generally , people avoid travelling by public transportation . Finally , I can say that there are various modes of transportation available which play an important role in giving tough competition to the government . As a result of this , the consumer gets more benefits , like lower fairs , privacy , freedom and safe travelling . In addition , many automobile companies launch new cars at affordable prices , which encourages people to use more and more private vehicles . Usually there are generational problems ; sons do n't understand parents and vice versa , but by talking and listening to emotions and facts , everyone can have another point of view . It will be very cool to see the last part of Mokingjay ! In my opinion , it 's very difficult to find this advantage with other sports . He took the money the next day , he finished the registration and started writing the story . After spending a long time writing and doing a good job , he went to give his story to the international student magazine office . He found out there was a notice on the door saying that the competition was canceled . He came back very sad and told me what had happened . Michael closed the door and knew at that moment he had made a mistake . The vandalism in Patras has increased a lot . In my opinion , the police should stop the vandalism . What they will do in future they see as in a fog . Secondly , such a year off would give future students a chance to try themselves out in new professional spheres . Also , they would have an opportunity to be involved in volunteer work . This year - long holiday would be really helpful for relaxation and getting new energy for further education . I believe that there is no future for public transport , using trains is more convenient and less expensive , so to decrease the carbon gases which are affecting the ozone layer , people should be aware of the effect of using public transportation on the economy and environment . Governments should encourage people to use other modes of transport . This subject should be issuesd in all media to teach and encourage people to use the right mode of transport . Because if we are Chinese , why do we give up our mother tongue and learn about our own culture through a foreign language ? Woolypools is a specialist of meal , it 's a meal restaurant . With the sweeping progress of development and the booming of populations , a lot of agricultural land , forest and ocean has been used or destroyed to build more buildings and transport networks . To start with , there are a wide range of problems it may lead to . Additionally , people now continue to destroy more agricultural land and forest in order to satisfy all their needs , which will destroy the ecosystem , diversity and biodiversity , especially the endangered species . In light of the problems mentioned above , there are various approaches that governments should adopt to deal with this problem . First of all , reducing building construction from now on , and planting more trees instead . Sustainable development should be awaness to all human beings and start to protect the environment and preserve the animals . To sum up , this unpleasant phenomenon and its problems should be worked on to resolve them before things get worse , and the governments have to take the responsibility for that . I took that decision because I was tired of trying to learn English and I did not have the level that I wanted , so when I heard about that opportunity , I said yes . I want to say something about learning the English language . It is hard for me for the following reasons : First reason : the grammar that teachers or institutes teach is like the Spanish language , my native language . I want to say that it is very difficult to understand the conjugation of the verbs in Spanish , so just imagine the same but not in your native language . Second reason : in English syntax , the rules for constructing paragraphs or sentences , the verb is written before the subject , but not always . What is the rule ? I can recommend you to my uncle 's company to get a job . In view of my age , evening activities are not a problem for me , and I have played many sports during my life , such as soccer , volleyball , ... To sum up , I still consider having your own car way more safe and convenient . Even if it happens , there are many people who ca n't get a car , because it is too expensive , not only to buy , but for fuel , service and so forth . Whether tourism has had a positive or a negative impact on our lives , it remains quite a dilemma for the ignorants . Alongside its development , the ability to travel has become easier to such an extent that it is now quite common to commute from one country to another . The existence of multinationals is tightly connected to the idea of tourism , as well as to the idea of globalisation , since a traveller is not just a citizen of his own country , but a global citizen . There are countries , such as Greece or Bulgaria , in which the economy relies completely on tourism . If tourism influences the economy , it thereby influences the environment , and if it influences the environment , it influences transport . How ? people become more careful at their historical sites , thereby preserving them . Transport is developed both on a small and a large scale . On a small scale , in cities , in a way which will allow citizens and tourists alike to reach important places more efficiently . I would like to go to a new artist rolls competition , although in my city there are n't a lot of competitions of this kind . If I had the possibility of going , I 'd already buy the tickets . At the beginning I went to the kindergarten and they taught me to ski . My father took me between his knees , because I could ski without falling over and it was fun . I had my first snowboard lesson and I loved it . I enjoy snowboarding , because you feel free when you are going down the piste . You are very happy and sometimes I sing a song and the world is perfect . No future for a public transport ? Is this claim true or not ? I think that it all depends on the development . Yes , I agree , if you planned the journey for a faraway destination and for a long time you would prefer to do it by car , because , firstly , you 'll spend less time , your journey will be comfortable , you 'll have the possibility to stop any where and for a long time , as you need to . But if we are talking about travelling across your city , would you prefer public transport or car ? I think that this is the question for everyone , and there ca n't be one answer for all , because one person can use public transport , and save in this way not only money , but the environment , but some people do n't like to use p.t . because they spend more time travelling or they simply do n't like to travel with other people . guide people and give them information , details and guidelines about pollution . I 'd like to tell you about my favorite restaurant . It 's name is " Lemon " . I go there every week . It has different food to other restaurants . I like crispy chicken with garlic sauce . It 's an excellent choice for me . And my favorite appetizer is sausage and in order that dessert I like " Vadge " cake with chocolate sauce . I feel at ease when I go there . I enjoy classical music while having lunch . About the service : it 's very good and all the staff are respectable . I ca n't imagine one week without going there . That would drive me nuts . I advise everyone to go there and enjoy their time there . Also , this restaurant has a relative advantage in hygiene really . It 's excellent . The striking thing for anyone , is that despite all of these advantages , the prices are not expensive . Volleyball is my favorite sport because when I am playing with my team , I am in another world in which I can be free and happy . Apart from this , when I am feeling bad , this is a distraction from university . You should try playing , it 's such fun , but I warn you , it is not easy at first , but you have to try many times like you should do in life . On weekdays , I get out of my bed at 7 in the morning to go to my work , which starts at 9 AM . In the newspaper , he read an interesting notice . The notice was about a competition . The story was very good but Michael did not know how to end the story . Public transport is usually restricted because of the timetables and you can only use transport at the time that the timetable lets you . I felt like a star ! Crowds of people were waiting in front of the dressing room for autographs , but only me and my sweet girlfriend got them . Advertising is everywhere . TV is the most accessible means of communication and people can see the messages in this way . It was really important to him because he had been training for 5 long years since he was 15 and he had n't achieved anything . As our town is well - known for our magnificent beaches along the Mediterranean coast and for the Olympic Canal of Castelldefels , many foreign and local people come here to do activities like kitesurfing and windsurfing at the beach or canoeing and waterskiing on the Olympic Canal . Well , the airport is located just outside Reus . It 's small but it has a lot of services and transport . With the purpose of attracting more people to join the club , besides its good points , I would highly recommend that they should arrange the time suitably and avoid they hold the activities to avoid problems . Designing the bank notes is the first and indispensable step . People should decide the background colour and the artwork and they have to consider the security issues . As for good quality sheets and partially damaged but still good sheets , people will cut them into separate notes and pack them together in order to dispatch and distribute the bank notes . If the partially damaged sheets are bad , they will be treated as bad sheets , which will be securely destroyed . Everything began a few years ago , when Alfred , the Mayor , read an article about the importance of the surroundings to the health and happiness of people . You probably wo n't believe me , but I met all the members of Dżem band . I talked to them and we had lunch together . They 're very nice men . Because of helping them , I had the best place during the concert and I have their autographs on the latest record . I did n't have many duties and none of them were unpleasant . I am keen on cinema and I love to watch all types of films . In addition , I think that the settings are very realistic and the actors gave a great performance . Although I am a young girl , I think I am a qualified person for the post . I am a preschool teacher and I have experience looking after children from 3 to 12 years old . I consider myself quite patient and fun . In my opinion , they are two highly necessary qualities for this kind of job . Although privately owned cars are more and more popular , and they are increasingly becoming a common asset even in developing countries , it is not likely that this means of transport can be the means of transport of the future . The flight was approximately five hours during which I watched beautiful movies . In New York I ate so much . I also went to the city that never sleeps : Manhattan . My aunt gave me a lot of presents because she said they do not see me frequently and many other members of my family . In conclusion , I had a perfect vacation where I saw new things , visited awesome places like Niagara Falls and Time Square , received a lot of presents and , especially , ate a lot of delicious food . In order to enjoy travelling to Mexico , I would give two important pieces of advice ; first , try to get along with your travel companion and enjoy the Mexican food instead of criticising the spicy flavour . In this way , visitors will be able to enjoy Mexican food with less pepper and the same delicious flavour that is so characteristic of our country . Also , this phenomenon of taking photographs is part of our daily life , because it is the best way to capture special moments like birthdays , travel , special occasions , etc . What if you do n't have any of those requirements ? Then you know hockey is the answer . Nevertheless , it is never enough , because dog owners are mostly to blame . We live in a cottage and we have several bins which are classified according to the material we want to recycle . They occupy too many seats , including priority seats . Moreover , some old people might take this considerate action for granted and they might even command young adults or students to offer their seat without manners ! I have also worked with large and small teams in back - offices , managed many administrative activities related to mortgages , personal loans , contability and investments . We are told about a lot of innovations in this sphere . There are a few reasons which show you why it is important to learn a foreign language today . Second , for finding a good job opportunity , the business exchange is increasing at the international level . If you speak a foreign language , certainly it adds some value to your profile and you can get a higher salary . Dear Sir or Madam , On the one hand , holidays are the best for people in terms of thinking clearly about their experiences in life . The reason is that people must complete their tasks in order to earn more money to maintain their lives and they forget about these emotional feelings such as love , helping people or thinking spiritual thoughts . I have worked in an Easter camp too , and I have already organised a lot of activities , like " rappel " , paintball ... What an unforgettable day ! Swimming as a sport is very useful for weight reduction if you are obese and need to reduce your weight . It is also the best sport for asthmatic patients , because it strengthens the chest muscles and decreases the vulnerability of those patients to respiratory infections . I saw so many interesting things during the preparation time . Regarding advertising , technology is having a huge and not always positive impact on outdoor advertising . It will suit me sometimes , and it will even be useful , but I 'm also sure sometimes I will find it aggressive . The way it feels aggressive to enter a square or plaza in my town and find it full of bright screens , no matter how beautiful or artistic the pictures displayed are . But , technology is here for better or worse , and we have to learn to deal with it the best we can . I 'd like to have a big detached house in the suburbs of Artem or Vladivostok . If I had this house , I would decorate it in a modern style . It costs less money and you can choose exactly the moment , where and with who , to watch this or that television program . Actually , students eat a lot of fast food while they are studying at university , because they do n't have time to cook food . For these reasons , I think that the best restaurant is somewhere where they do home - made food , and a good idea for the main course is : baked potatoes , steamed vegetables and , for dessert , apple cake . They are incredibly delicious . She was eighteen years old , she had to be independent . She went there and there was the doll with a knife in her hand . ' ' Bell , why do n't you play with me anymore ? Are you bored of me ? Just because I have only one eye ? But you removed the other one . The girl had a knife in her neck and on the wall there was a sentence , ' ' Why did you leave me that way ? '' You can even talk with native speakers by using some Chat Rooms online such as Skype and others . One thing you should keep in mind if you want to play football , is that you have to be ready to receive some punches . On one hand , becoming a public figure is associated with journalists , mass - media , flashes . It seems to me that journalists might be absolutely toxic and they have a bad influence on society , which assesses celebrities through the prism of journalistic documentary . The value of their talent and abilities is measured in the amount of tabloids scandals . When I worked as an educator , I used to plan and manage some sports and outdoor activities . The same with my parents ; they are old and sometimes they call me to talk about their health . Concerning video - games , I agree with scientists that think it helps children 's brains to develop , but it is important to supervise them , because there are a lot of violent games . DOING EXERCISE IS GOOD FOR YOUR HEALTH Doing exercise is an important thing to do in a healthy and happy life . While you exercise you feel well in yourself and in your body . Soccer is a great sport where you can make a lot of friends , you can stay fit , but you also need some skills because it 's not easy to control the ball and dribble your rivals on the field . I know that catching a celebrity doing cleaning or taking a dog for a walk is shocking news for people who read tabloids . So , as you can see , I agree with the statement that famous people , who are recognizable , deserve to have a private life and the ability to have a normal life should also be given to them . Once per week on Wednesday , rubbish is collected . That is a very good idea , because that rubbish undergoes recycling . Everybody cares about cleanliness in front of the house and in the garden . Marginalization has a link with the illegality of this activity . I am writing to apply for the post of summer camp counsellor currently advertised on your website . I speak English , German and Polish and as a counsellor that is very handy . I am hardworking , reliable and well - organised and I can take control of difficult situations . I am talented when it comes to entertaining people , which might come in very useful in my role as a summer camp counsellor . I 'm seventeen years old and I 'm an electronics student from Italy , in the north . Recently , I started studying English in particular because it is the most important language in the world , so I need to know it well if I want to communicate with other people from other countries . Mar Azul Restaurant , in the north of Mexico City , was the location for the fourth day of Puerquitour . After her 18th birthday , Anna felt a sudden need to know what happened to her biological mother and why she gave Anna away . After finding the adoption papers , she contacted the adoption agency . She convinced the lady at the agency to give her the name of the biological mother of " her little sister who had a disease and needed to know if her biological mother would be a match for a kidney transplant " . The importance of working hard to achieve goals and practicing regularly to become good at something are also demonstrated by professional sportsmen . For instance , if my goal was to increase young people 's awareness , some strategies could be to increase online social media presence by posting regular updates about my language school on Twitter and Facebook or to offer discounts for siblings . The last step would be to recruit a staff of professional , experienced and qualified teachers and to set an attractive and reasonable price for the services I would provide . Undertaking a scholarship and admission to one of the universities I have selected above will provide me with the opportunity to apply the knowledge gained at high school in a business setting , as well as develop the communication , organisation and numeracy skills I acquired at high school . In conclusion , I can assure you that I will be a capable and dedicated student who has the commitment and dedication to work hard in order to be a graduate , whilst at the same time , contributing greatly to my chosen university in more ways than one . Despite these two being the most popular sports amongst athletes , many more are just as interesting and beneficial . For example , things might not go as they had expected for multiple reasons , such as not having enough money or not getting a job . In addition , we had to have one year of volunteering in a Youth Supervision environment in preparation for our final assignment , so I am able to be a member of your highly - skilled staff . Since I was 13 years old , I have helped my parents with bringing up my four younger siblings . I have a friendly , happy personality and find that I enjoy the challenges of working in youth environments . Max and his friends took a walk under the trees when , across the river , they saw something that looked like an animal lying on the grass."What 's that ? " , Max said aloud . It 's about a teen couple who are dying of cancer , and they have different ways of thinking about life and death . This movie touched me very deeply , it made me think about life and about the way people usually live without appreciating the really important things . It is a cyclical process . Rome had its heyday in the first century AD , but just three centuries later , it was only a shadow of its past . One day in the future , another Franz Ferdinand could be killed , and that symbolic event could serve again as an excuse for some country to declare war on another , but the true underlying causes that actually led the countries to wage war against each other would have their roots in much older times . As the causes of the Second World War had its roots in events that were the outcome of the First War , a Third , hypothetical war , could have its roots in a past conflict that may well have happened already . During the next centuries it was expanded , and in the 16th century , finally rebuilt in a Renaissance style , which has remained unchanged until today - the most representative remnant is probably the famous arcaded courtyard . During the tour , the visitors are shown several rooms and apartments , as well as the Royal Private Apartments with world - famous tapestries of the Polish kings ' collection . Everybody say it 's the best period in our whole life ; what they do n't remember is that it can also be the worst . This could be one of the reasons why we get angry so easily and so often with our parents : every time we discover something new or we say something , they judge us or they begin some long speeches to try to change our ideas . As I said , adolescents can be very confused and if there 's one thing that gets under our skin , it is when moms say something and then tell us to do the opposite . That kind of love that we see in movies and we dream of ; the type of love that does n't let us fall asleep at night . Travelling by car is also much more convenient . In conclusion we can say that , from the standpoint of doctors and nurses , working abroad is a much better deal . Dangerous dogs who were trained to kill and maim in similar underground dog fights have already proved deadly to innocent people . The new boxers could be even more at risk . There are all sorts of proposals ; lighter and more cushioning gloves could be worn , ban punches to the head , headguards worn , or make fights shorter , as most of the serious injuries occur in the later rounds . These would all show off the boxers ' skill and talent and still be entertaining to watch . However , such a rebellion can not be seen clearly in each minority work , and , therefore , the products of ethnic American literature can not be categorized as merely the result of years of oppression . Emphasis changes with each work , and although figures of authority are particularly oppressive in works such as Like Water for Chocolate and The Color Purple , other minority works including Love Medicine and Jazz do not reflect the clearly defined authoritarian figures nor the obvious rebellion of the characters ' responsive action which the previously mentioned works show . This again implies that these ethnic American pieces of literature can not be categorized as merely rebellious responses to oppression , but as individual reflections of personal and cultural experiences . Philosophical optimism -l'optimisme- is the philosophy that everything and any occurrence is for some good . The supremacy of Parliament will never be challenged . But with the average jingoistic Briton there is no chance of us curing ourselves of our xenophobia and ever wishing to be fully integrated with Europe . In fact , in political , economic and defence terms , I feel this reallocation of resources can and will be very positive . Whilst , to a certain extent , I may be guilty of having an island mentality , I would n't go as far as to say Britain is in danger of handing all control over to faceless bureaucrats in Brussels or Strasbourg . This process will continue and Europe and the rest of the world will evolve with or without the participation of Britain in this process . In relinquishing and thus centralising certain powers , the aim is not to diminish the strength of individual nations but to increase the overall impact of Europe on the world stage . It is up to Britain therefore to accept this fact and to show an example by leading the way as regards tolerance . These superpowers were economically , militarily and politically stronger than the divided individual European states . Whether or not the continuation of the progress in the field of European unity is successful depends very much on the people of Europe . To remedy this , the government has started adding a fourth lane on some stretches of our motorways and constructing ring roads and bypasses , with mixed reception . The inability to cope with the amount of traffic on the part of the road system obviously increases the risk of drivers having an accident and the drivers have to be constantly alert as they are nearly always in capacity traffic . It might seem an easy solution to this mayhem would be to use public transport ; i.e. the railways . People are not taking to the rail system because of its lack of integration due to the recent privatisation of different areas . Then people would be more likely to catch the train , as they would not have to look forwards to a long walk , wait for a bus or pay for an expensive taxi ride . My solution to the problem would be to improve the rail system and its related bus services . This would get people off the roads and onto the trains . To improve the rail service , trains have got to be timed to arrive and depart at key times , i.e. arrive at eight o'clock and leave at half past six . The train and bus companies have to liaise with each other and the train fares have to remain relatively cheap , i.e. the same price as or less than it would cost to go by car . The basic dilemma facing the UK 's rail and road transport system is the general rise in population . Most large cities have managed to encourage commuters to use public transport , thus decreasing major congestion in rush hour periods . Another major problem created by the mass of vehicular transport is the pollution emitted into the atmosphere , damaging the ozone layer , creating smog and forming acid rain . Torturing the Earth we are living on . To illustrate my point , if every time you took a train , it stopped for 2 hours on the track , everyone would stop taking it . The most likely answer lies in 2 areas . Firstly , the attitude of many westerners is that it is their right to travel in such a manner . I am by far and away no ' greeny ' who wants to make everyone live in teepee s and eat soya bean soup . However , I do agree that something should be done about the volume of traffic that is on our roads today . Do we , the western world ( 5% of the population of the world ) , have the right to use the resources of the rest of the world at this environmental cost ? Just because we can not be bothered to get out of bed a bit earlier to catch public transport . That could have disastrous implications . The 2nd reason , is the problem that the public transport service , for example rail , is declining so much ; there is no train to catch in the morning . This has now been intensified with the sale of the railways to private rail companies , profit motivated . The vital , small rail links may now be closed , whereas previously they where subsidised to make up the loss . Now the private companies can not afford to do this , so many will close , cutting off small towns and villages . The only way to stop the circle will be to break it , and the only people to do this is the government or ourselves . If we make the effort to use public transport , it will expand into a good service . Unfortunately , the public seem to be apathetic towards this idea . Although it may sound cruel , I do not believe that any fighter has entered a professional boxing career without knowing the risks . The boxing federation is trying to do as much as it can to make the ' sport ' safer : having ringside doctors , banning bare hand fights , but the top and bottom of the argument is that any blow to the head causes considerable damage . A recent death in the ring has inevitably led to a public uproar on the safety of the sport , and the controversy over whether the sport should be banned or not is yet again at the forefront of discussion . The family , who were originally against the idea of their son finishing college early to take up the sport , would be leading the protests against boxing . This hypocritical view is shared by so many that whether boxing should be banned or not will remain a controversial issue for the foreseeable future . The lottery has also suffered allegations that it is addictive , especially with the introduction of scratch cards . It has been claimed that it is so addictive that people will spend all their available cash on lottery tickets , only to be disappointed . It has been calculated that only 4 pence out of every pound received by the lottery goes to charitable causes . The rest is tax the prize fund , profits , and the so - called charities . It has also been calculated that the chance of winning anything substantial is one in millions , i.e. highly unlikely . It has also been alleged that the jackpots are too high . Most of the lucky winners have said themselves that the jackpot had ruined their life , alienating them from friends and family . In conclusion , I think that the lottery should be retained , but not in its present form . I think that jackpots should be capped at 2 million pounds , and the prize fund shared between more people : it is better to give fourteen people a fortune than to give fourteen fortunes to one person . I would also remove any American business interests and give the charity money to a more deserving ' charity ' . The most obvious example of this is the calculator , an instrument used by mathematicians and scientists for making numerical calculations . The world watched in anticipation . We were mesmerized by the images of the TV , expecting something new at every moment and not wanting to miss it . I remember that day it was the only topic of conversation at school : " Have you heard ? " , " I ca n't believe it ! " , " After all this time ! " , " I never thought it would happen . Bolstered by the Germans ' success , the people of Hungary , Czechoslovakia , Poland and Rumania rose against communist regimes as well . Now , three years later , communism as we once knew it no longer exists . The repetition of tapping keys all day and staring at the screen can be harmful and , not only that , it is highly boring to do the same thing over and over again . Whether it be a kitchen knife used to stab someone , a car used to run someone over , or something as harmless as a pillow used to suffocate . Normally , more than 1 egg is taken from the mother so that the eggs can be stored and used later if the pregnancy is unsuccessful or so that more than one can be fertilised at the same time to increase the chance of a successful pregnancy . There are people who are against this , saying it is not natural and asking is it fair to the child to have started life in a test tube , as they believe life starts from the moment of conception . , at what age should the treatment not be given and is it justifiable to spend so much money on in vitro fertilisation for one person when the same amount of money could be used to saves hundreds of lives by vaccinating people against measles , for example . I therefore think it is necessary to have certain regulations i.e . People in our modern times are now able to have liver , heart and even lung transplants . There are many complications but many are successful . The test tube is then incubated for a few weeks and when the foetus is formed , and the baby is then inserted back into the mother . The foetus is left to grow and develop naturally . This idea is extremely beneficial because married couples who have been trying for a baby but have been unsuccessful are able to have children . As the foetus begins its life in a test tube , and the sperm is selected , this means that the sex of the sperm could also be selected . The main reason for the people of Britain to stop eating beef at the moment is the threat of BSE . This is a viral disease that attacks the central nervous system which can be passed on through consuming the animal . Another reason for the British people to stop eating beef is the push for vegetarianism , although this is a much smaller threat to the trade than the former point about BSE . Although British farmers have learned to diversify , dairy farming and the sale of beef products still forms the backbone of British agriculture and would completely change the face of farming in Britain . People throughout the United Kingdom were , doubtless shocked and perhaps upset by images in the national press and television news of cows who had contracted the disease bovine spungiform encephalopathy , or BSE . For beef to be reprieved or condemned , we are forced to turn to the scientists to establish whether or not BSE and CJD are linked , and , more importantly , whether the latter can be contracted by eating meat contaminated with the former . This claim has devastated the British beef industry as people are now too scared to eat beef in case they contract the illness . As you can imagine , this has had a tremendous influence on sales in places such as fast food restaurants , where beefburgers are the main item on the menu . The answer to this question lies in one 's feelings about Democracy . Since its beginnings in the late nineteenth century , Women 's Liberation has been met with adamant , and often obstinate opposition . This ignorance of other less aggressive feminists , made it seem as though the feminist movement was headed only by wild , disgruntled zealots and was , therefore , detrimental to the good of society . Like many other aspects and movements in life , they would be more readily received if the public it was being aimed at was not so jaded . However , throughout the years , television has lost much of its integrity ; the programs offered are usually cheap entertainment rather than education . The entertainment aspect of television has offered society an easy escape from its problems and difficulties . Though it has probably been around for a while , it s presence hasn't really been known until fairly recently , and it s consequences have been devastating . AIDS has definitely had an impact on people in the United States and probably all over the world , because it always leads to death and there is no cure . As a commonplace goal and testimonial landmark to 9 presidential administrations , the cold war has manifested its awesome power and control over nearly every facet of Americana ; from survival kits and basement bomb shelters to an ever - circulating Chief Executive command post from the air . It was also attempted to increase the production of the naturally - occurring antibiotics through synthesis . In part , it has created The Information Age , as the latter part of the 20th century is often labelled . Presidents and dictators alike switch on the channel to receive first - hand information from the network , such as impeachments , coups d'etat or civil wars . 40% of U.S. millionaires are entertainers . Unfortunately , the day will soon come when the damage caused by this apathy will be irreversible . The waters of the culinary seas had been calm and consistent for centuries . Progress had moved slowly like the tides and the constant rhythm of the waves showed little change . However , with the dawn of the twentieth century , a storm brewed . In an age where time is the scarcest commodity , our society has embraced this eliminator of wasted hours in the kitchen . This marvel of technology has helped propel people into the dizzying pace of life that most of us lead in the 20th century . Every morning I listen for the weather forecast and dress accordingly . TV commercials and TV programs project models of how one should be . People are more mobile , can work more , and buy more things , but time for relaxation and family are often substituted with TV . In America , this growing individualistic society , one no longer sees the relative humanness between people , instead one sees the differences , the unlucky , the unsuccessful , and attribute their inability to achieve to a lack of effort . There was a group of scholars in France , l'Academie Française , that set guidelines for French literature . According to l'Academie Française , all literature of the Neoclassical period must follow the rules of propriety which regulated the author should avoid certain topics , including sex , violence , church , and state issues . He told of the two girls of Orellion who were lovers of monkeys , and of the Baron who bathed with the Muslim and was punished for his homosexual act . After the Baron is caught bathing with the Muslim , he receives 100 lashes for his sin . He attracts the hypocrisy of the Church in the old woman 's father being the Pope . Desegregation reduced some prejudice , but it still exists . This is based on equity theory . The opposite of love , beauty , intelligence , light , joy , life and growth are not their familiar antonyms but indifference . When we learn of the trials and hardships that they went through , we can sympathize with their emotions and try to accept that diversity . The stories of black American slaves and of concentration camp victims are necessary to avoid indifference . That 's why I 'm very excited to teach students English ! ! ! I do n't understand why so many people are into this stuff . Anyway , I decided to arrange some nice dates for my friends by / following my own style / doing it my way . I attended Japanese tea ceremony lessons one day a week for three years , before I came here to Japan . I wanted to study more . It was kindergarten level . The roses grew and their flowerpots are now too small for them . Well , I 'm into the Ray Charles song `` Hit the Road Jack `` recently . Strange Japanese Customs ? One example is drinking alcohol outside . Most countries it appears , does n't allow drinking outside . It is very convenient that it 's cordless . Today 's class is the same class which I was n't able to teach because of CHOTA MAJI . And I fall in love with the Library in our school ! ! ! I went to a balloon lecture as an assistant at `` OMOCHA OUKOKU `` . My mother committed suicide when I was only one year old and since my father worked in a town far , far away , I was raised by my Grandma . Because of its particle size , which is less than 100 nm , the nanoparticle has mechanically , physically , chemically , and electronically different properties than that of bulk materials . Japanese marriage system The bride and groom simply go toa registryoffice andcomplete the marriage application form , which has the bride 's , the groom 's , and two witness 's signatures . No picture IDs are required to complete the marriage application form . Somebody else can go there instead of the couple . Because of the system , problems sometimes arise . When a couple go to the city office tocomplete their marriage form , they sometimes find out that one of them ( or both of them ) is already married to someone else . At that time , he was just interested in this class but had no awareness of the importance . It 's a kind of a hot - water bottle , but there are cherry seeds in the bag . So I bought two , one for my feet and the other for my neck and shoulders . This is my first post in English . He joked `` Please buy meat for me when you visit me . Especially chicken for Dak Galbi . `` By the way , a Typhoon is coming soon and maybe a lot of students think , `` Whoa , I can rest a day and hope the typhoon stays in Taiwan . I would like to write a letter to my English teacher , so I want you to correct my English . I drove alone . I 'm not afraid of driving anymore . Next time back home will in many month later , I really do n't want to go back to school in a broken - hearten state , but I ca n't do nothing ! I am writing the diary and doing many other things . I check my e - mail and read my Hi - 5friend 's comments to me . Hi 5 is like Facebook in English . I think It is very famous in Thailand , and I chat with my university friend there . We talked about the job she has . I do not have a job at the moment because I left Bangkok . She lives with her family . I know her because she went to Bangkok to study . I was so humiliated because of our accent during my childhood that I tried to modify it . Because it was a gift from my ancestor . Yesterday I rode from our main campus to the medical college . I took part in a job interview this morning , but after the HR kept asking me questions for about 30 minutes , she told me that maybe the position did n't fit me well for me because I do n't have the SQL skills required . I 'm looking forward to waiting for what Apple will make in the future . But I want to continue studying English every day . Today I felt very happy , because my class was very funny . I also have to shovel the snow around my house , my parking space and my office . . . I just started this SNS . Spring is coming ! Today is a holiday . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittent laughing sounds made by a female , and monotonous , enthusiastic talks by a male , which might have given you an impression ; the atmosphere was not too bad , or too good either . We have n't had a lifetime employment system since the late 80 's . Instead , I 've witnessed powerful harassment like `` You 're incompetent ! `` , or , `` We do n't afford to pay people like you , `` in order to force them into early retirement . Luckily , I have a job and a dependable income . And yesterday , I ate dinner , but I ate two hamburgers late at night . . I have not drank alcohol in a couple days . But now most Japanese buy it at the supermarket and department store . Because there once lived so many people in a family , and the mother and grandmother made many dishes for their children and guests , however , ( nowadays ) there are many nuclear families in Japan and guests are few . When I listen to this music , in particular Marc Anthony , I become one with the melody and I feel really free and every thing around me disappears and I feel only the heartbeat of my heart that follows the rhythm of the music . A Little Hesitant and Nervous Now what can I do for people in MIYAGI ? ? I went to Chibi Canada to prepare for the zombi Walk . I practiced making a zombi face . I think I 'm good at mimicking zombies . All of the animals I saw in Mongolia seemed comfortable . Right now , my favorite song of her 's is `` If I were a boy `` My family came to my house and we cooked carne asada . We were all together to watch Teresa 's last episode , hoping that she would end up homeless and lonely ( like in the original version ) , but to our surprise she did n't . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film that deals with the history of the electric car , mainly focusing on The General Motors EVI . 7 students participated in it and they were great ^ ^ Some students did n't memorize their script enough not to look it but still I thought they put in a lot of effort . I 've studied English in Canada since this month ! Mainly , Japanese teacher taught English grammar , accents and various words . Another boring week is awaiting me . I do n't think they should mention such details about the flight ! Tonight , I will stay inside ; I wo n't go out . For that , I am studying English for many years , but not many . . I would like to speak and write more natively . . Public service personnel is a part of the conscription system . We have to study English now , or we wo n't pass an important test in three years . Also , there is going to be a Japanese school visiting our school . There will be eight Japanese students in each class . And we will teach Taiwanese history about Japan 's aggression towards Taiwan . We have a lot of activies planned for when the Japanese students come . before she had gone , she did not say some thing before as give me anything as usaul , she did it because she sundently had gone . He could n't sing but he could hum and dance and and play the guiter . But when I tried to go there yesterday , it was difficult to drive my car because I had to meet a friend who lives in Seoul . I 'm a pitcher and 5th hitter Our game started at12 : 00 , and I was so nervous . My baseball career is shorter than anyone 's , but I have good physical abilities like fast feet , strong shoulders , and an endurance for pain . The famous rapper known by the Japanese . The reason Eminem is known by Japanese people , is because he was an actor in the movie , 8 Mile . There are many rap music artists , but there is only one Eminem . Introduce myself dreadfully spicy . . . But I do n't understand English grammar . I could not explain `` a certain probability `` in English when I talk to my friends . So I want to explain it here . The probability represents how many people are watching ( a ) particular program ( s ) in each area . I take German and I study various countries ' cultures . So it is very expensive . I like listening to music , like every type , especially jazz , rock , and some nice soft music , some times I listen to death metal too . and also do some reading , which r written by ppl who r not famous but special . . . . This is because I 'd love to visitTAIWAN . Itried to study Mandarin when I was in junior high school . Chinese - characters are used in Mandarin and Japanese , so I thought learning Mandarin would be a lot easier than learning any other languages . However , Mandarin has four accents in one sound ( I ca n't explain it clearly in English , try to understand ! ) . I participated in a web developer 's event last Saturday . But , in a foreign country , does the person who has a birthday treat the guests ? By the way , my Japanese friend in France had dinner at his friend 's Taiwanese wedding party . This temporary job ends on the end of this month . It is uncomfortable to stay in an unfamiliar place . So I had my boss buy some vegetables for me . After I received them last night , I kept them in the refrigerator . : ) I would like try this website out , but I do n't know how to use it . It 's an important professional cycling race . Thanks for your help for improving this passage . I 'm not sure how to tip at restaurant because I 've just moved to America and my mother country , Japan , does n't have such a custom . If I do 3 , should I write the tip on the bill ? I went to the shopping mall because my daughter wanted to go . When I tried to buy the ticket for the film , I was recommended by a clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemort was impressive ! We 're going to move to another building next week so today all my coworkers and I were packing a lot of stuff . I lived with my parents and my elder sister who is now married and raising her son and daughter with her husband . and I 'm learning Japanese tea ceremony once in week . Some people wear kimono often or everyday ( for example , people who are obsessed with Japanese culture , who study / teach tea ceremony , Japanese etiquette or Japanese flower arrangement . . . However , many apanese do n't own their own kimono ; instead they use a service to rent kimono when needed . We do n't do tea ceremony in daily life except when our families or ourselves are familiar with it . when I study tea ceremony , I become eager to learn good handwriting , languages , behaviour , and flower arrangement . When I studied martial arts , I became eager to learn behaviour . As a beginner , you need to have every skill at a beginner 's level . If you progress to the intermediate level in one genre , you need to have skills which are better than a beginner 's in other genres as well . I will try writing about these things I learned . The Tengu 's bodies were like a human being 's , but he had wings and could fly , so we adopted it as a character and our squadron 's good angel of flight . Actually , each squadron 's yearly flight time is assigned by our headquarters . I mean , we were too busy both mentally and physically to take time for others . To solve these problems , I should relax a bit . I got a serious headache this morning sitting in my cubical , so I took a half day off from 1pm . I was very busy in April because of recruiting Even if I try to find a language exchange partner , they will think I 'm boring and bothersome girl . I usually get on a / the train from Zushi station , it 's in next town . I do n't need money , or anything else for that matter , but simply to hear from you about my party . I think you will be satisfied ! various kinds of vegetables that are pickled in a sakekasu , which has a slightly strong sake flavor . I asked her to promise me to eat breakfast before going to the school . His exhibition is held this year in KYOTO . Now , I 'm growing some scallions , turnips , and lettuces . I felt the climate in Japan has been getting warmer and warmer over the last several years . I will try to looking for a pair of cute sandals tomorrow . I picked up my husband this morning . Yes , I 'm thin - skinned . When I watched a TV program and I learned about the store . I can not be here in Kyoto until April because of my job . I realize now how easy the languages we learn are forgotten . I 'm always surprised by those who keep their journals in foreign languages . I envy them . The recent consecutive holidays , which lasted for ten days , are now over . By putting daily events into text , I also aim to review each day and make the next day better . It takes ( about ) 30 minutes from here to Tokyo . I like spicy foods such as the Korean dish , Kimchi . It increases one 's metabolism . In Japan , a sad incident occurred . I will eat at a restaurant in the department store . Incidentally , I enrolled in a temporary employment agency . Although we always have dinner with her , this is the first time I 've invited her on a formal outing . My favourite movie is `` Back to the future `` . To do so , I have to work harder on doing rehab . Trains run every 2 minutes following timetable and if a train is late for more than 5 minutes , we can get a refund . There are chain restaurant whose prices of foods are n't that different from Macdonald 's . but I prefer Chinese . Fortunately , it is easier for Japanese to learn Chinese characters because we use them in our language . It tasted yummy because it was free . I forgot to bring a toothbrush . I have been feeling frustrated to see talented people who can not express their opinions due to English skill limitations . Can you explain thisto me ? Will this phrase , `` th , `` keep going ? My nephew is coming to my home . It was the book I had borrowed once but failed to finish reading because the due date was up . I would like to celebrate the new year in Bangkok though . this movie is really famous in Thailand . The man who running on the elephant is a really good boxing expert who did not use a stunt - man . . . The stationery which is used for erasing pencil writing is called an ' eraser ' in America , and ' rubber ' in England , right ? I ate ayummy bar of chocolate . Write your five items in the comments , if it is n't difficult for you . = ) Canadian Dollar shaped chocolate ! Therefore , I go to Kyoto several times a year with my family . I 've decided . . . The table shows the percentages of water pollution due to four major pollutants in four cities ( Taipei , San Paulo , Tokyo and New York ) in 2003 . Aside fromthem , Tokyoreported `` pesticides `` as the worst waterpollutantwith 31 % whereas theamountwas much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage for `` Erosion `` with 23 % as well as `` Domestic Sewage `` and `` Phosphates in detergents `` , which was larger than that of the other cities . At some points I laughed , and at others I cried . Snow around here is very rare . My English level of conversation is ibetter than my writing , but I need to practice a little more . I do n't mind if your Spanish level of conversation is not very good . I think that together we can improve our abilities Does it furthermore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this website , and I don ` t know how to use it properly yet , but I hope that I will meet new friends , and that they will help me . I would like to speak English fluently , but I do not have any friends who speak English , so I have been learning English for several years , and still my knowledge is not enough ! ! ! ! I often go out to coffee shops . Usually I go to `` Tully 's coffee shops and my favorite coffee is always `` Today 's Coffe `` . Of course , I have a cup of delicious coffee when I go to there , but my real reason for going is not only to drink coffee . to my surprise , when I arrived at his house , I found it to be very clean . Something I like but something I do n't like ( also ) . Umm , sorry , I 'm being negative today , are n't I ? Hello everyone I am back . It said I should follow the sentences from newspaper or book . and then read it again after finished writing . I wonder what clothes are suitable for guests . I heard that Americans give presents from a wish - list ; is it true ? The customer was so delighted that he advised the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' for the sake of prosperous business . I 'd like to communicate with ( those ) people who speak English to study . I 'm going to go to COSTCO . What do you recommend ? After bathing , he always took his teeth out of his mouth . What singers do you like from Japan ? I started studying EngIish today . I 'm not sure if it works but I would really appreciate it if native speakers could point out which words I do n't pronounce well . The recent boom or topic of my works is `` Our company will take the customer experience to the next level with digital `` . But now is the time to use IT for developing a close relationship between our stores and customers . I cooked curry with a pressure cooker last night . I usually push the reset button each time I boot my PC . One layer was a cream cheese layer which was heavy , and the other was a strawberry layer which was sweet - and - sour . You have to know how stubborn your little daughter can be ! ! ! The teacher told me that my daughter is not good at remembering the multiplication of 3X8 and 2X6 . My head was bumped onto the floor really hard so I feel a bit wheezy . My daughter is one year and three months old . In the afternoon , I did my laundry , baked muffins , and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earlier today , and wake up at 4 : 30 as usual tomorrow , preparing for the begining of the next week . I think I can keep a good rhythm for my lifestyle this way . I like drawing with a ballpoint pen . When I was a child , I used ballpoint pens for drawing . So the ballpoint pen is useful for me . Suddenly I felt it was something strange , she looked like she was ill . But I really enjoyed this race . But as I have been exposed to a lot of kinds of English on the net , I really surprised when I heard my alarm clock . I did n't go out except for when I went food shopping . UNIQLO is a brand name , and it 's corporation 's real name is The FAST RETAILING , established in Ube city , Yamaguchi prefecture , in the western area of Japan . After that , I could meet him at around 7 : 00pm . Every time I drink beer or some alcohol , I always feel like going to Karaoke ! My Wacom Graphire3 tablet ( computer drawing tool ) so I 'm learning English because I 'd like to watch movies without subtitles . I love rock - n - roll : ) But I love bossa nova too : D I often hear that many girls have no sense of direction . We have similar pespectives on many things and I found that he 's so funny and smart . Summer is coming soon , so I need to lose weight in a short time . Summer . . . I love it , but I do not love fat ! ! ! It was worth climbing all the way up there , it had a beautiful view . I especially love ramen , ice cream , tempura , and so on . It has been / will be a tough month at the university , but there is nothing I can about it . I enjoyed playing soccer . In the new millennium , with scientific technology becoming increasingly advanced and the disparity between the wealthy and the poor increasing , some individuals link the gap to technology . An empirical point of view , I was really hard pressed to believe how the technology spectrum lead to the wealth gap ; since it goes without saying that scientific technology decreases the disparity between the wealthy and the poor . It is widely acknowledged that the cell phone , as one of the most significant inventions in twenty century , transformed individuals ' lifestyles making them highly efficient and convienient , especially for the poor . I guess I need much more vocabulary and a large amount of reading . Aaahhh I ca n't believe it , spring is coming soon : D . Of course , it 's still snowing , it 's windy and the temperature is - 3 degrees ( Celsius ) . . but the birds are singing , the sun is shining and everyone 's smiling . I liked to see them suck sap we fed and occasionally fight head to head over sap or females in the plastic case at night as they are usually nocturnal . just wanted make fun of that because I 'm tired of studying this language yea I know this lonely diary can also help my studying According to a newspaper article I read recently , people with higher salaries produce higher quality goods than those who have lower salaries . This is my first note in lang - 8 , also is my first time . I am learning English now , but I feel a little sad . It 's hard to struggle with what I want to say day after day , and I do n't know how I can do better . Moreover , I am afraid to disappoint others rather than I myself . However , it is difficult to keep my tension calm when she seems not to hear me , or does the same mistakes again . The sheep was finally found by the shepherd and felt relieved . I am Buddhist , but unfortunately the temples generally do n't give this kind of service periodically for small children . It will lead to the increasing of enthusiastic Buddhists in the future . Seriously , it is super expensive ! I lack of physical activity . When I used to use an iPod Nano , the battery would be drained really quickly . without running out of battery ! My friend told me it was not a copy but a homage . KAWASHIMA will be traded to another team in the Premier League ? I ` ve heard that West Bromwich Albion FC in the Premier League offered him to play with their team . so I will buy the book , Eclipse 's original version . Even though it is still late June , the air temperature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insurance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insurance . I emailed him this morning about tomorrow 's plans . It 's needed to live abroad or you work in company which need to speak English . `` Sometimes people in foreign countries do n't understand them . Tiger Woods has fourteen girlfriends . I apologized with my friend but she seemed to hate paying for it . I negotiated with my friend so I can pay for the meals next time . I think it 's tasty ? I hope to make friends with you ! I talk to my parents on Skype every Sunday night . Skype is very useful , because we can see each other 's faces . For I live in kansai area , my family and I are all right naturally . I 'm not surprised because the March disaster in Japan was broadcasted all over the world . And my friend taught me about it . However , vigorous pictures and unforgettably vivid sound would be engraved in their minds . Stimulating the subconscious may help your memory . Today I had lunch with my colleague . We had a Nepalese curry . If you look for the city on a map , you 'll find out that it is situated in Ural mountains . Some tourists are very disappointed by this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains . If you go there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( You can see in the first photo ) And , when I got a mail from him , my heart ached . . . ( I was ) nervous . In only four days I will be back home , and I will begin my summer vacation . I have made a plan for this vacation : I want to join my cousin 's company and work for him for free . Therefore , companies should contribute to remedy the environment as much as possible . Now that environment problems such as global warming and air pollution are among the most discussed issues worldwide , people tend to have much more interest in the protection of the environment . Further more , it has even become a trend for the stock investors to buy stock off the companies that contribute most to the environment . If I speak English , I would like to visit many countries ! In fact Naples is famous for its pizza ; D Thomas Jefferson was born in Shadwell , Virginia . In these acres , he built his residence , called `` Monticello `` . He was continental delegate of Congress , Governor of Virginia , state secretary , vice - president and president . Are the idioms and slang which are in these books still used in the world ? If not , how can I learn new idioms and slang ? I just went ( over ) to Yokohama where my uncle and his family live . Trimming is important because it is easy for bacteria to grow the surface of the raw beef . As a result , his restaurant caused food poisoning and killed four people . However , she often fussed a few weeks ago because of many reasons , the reasons were simple though . It seemed that she released them by accident . The doctor diagnosed that she suffered from a hemorrhoid . So , I speak English at school , but I usually speak Swahili in my village , because most of my neighbors who are in the family of my coworkers can not speak English . My coworkers and students know English , but others do not . ) So , I have received / gotten a lot of chocolate as a birthday present . I like chocolate but not this day ! ! I hope study abroad , and work overseas . Though I like to read , I am not really good at English literacy . Today we had a violin class . My arm was getting tired from holding the violin . Tomorrow is the concert ( sort of ) . We 're playing the violin at the school library . My brother 's girl friend is Taiwanese . I am about to study English for a really long time . I will study English hard . Yesterday , I went to Yoyogi park , which is located in center of Tokyo , and saw cherry blossoms . Even though our military corporation is a good place to live , Anyway I will ask him to read it because the examination is really important . Have a good weekend . Tomato sauce I made tomato sauce today . ( I am or I 'm ) going to go to a Taiwanese restaurant for lunch with a coworker , The reason is clear , I ` ve been to a Go - kon party when I went to the college , but people say there is something different between a student ` s party and an office worker ` s . I went to Utah , US 2 years ago to study English & to teach Japanese in an elementaly school . The weather has been really really cold for several days . Because of that , I caught a cold and had a headache . There will be a dance performance in our studio on the 22nd of March . We started with the choreography yesterday . For example , I managed to write these sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . However if I get areally bad headache , I might as well take the medicine rather than just suffer . I Watched 90210 I watched the final episode of season one of 90210 . I 'm looking forward to watching it next season . Today , I studied physics for an exam . So , I always grew some vegetables in a planter . I 'm looking forward to it . I need you to help me improve my english level . It 's 6 hours to go until the beginning of the match . How to conjugate for Lang8 ! ! After he left , my daughter and I talked a lot . It is the central city the northernmost Japanese island , Hokkaido . I am sad because my sister deleted the program ( of the keyboard ) for writing in Korean ! . The stylist in the shop was a very friendly woman , and had a good sense in cutting , When I checked my diary this morning , the friend whom I had just met had already corrected it . He thought that I rarely ate meat ( beef ) because I live by myself . If I eat a hamburger slowly , chewing it well and tasteing it , I always regret eating it . On the way home , I bought seven bottles of maple syrup and three boxes of maple cookies at a supermarket . Additionally ( or , Also ) , prices are negotiable . From your crazy sister , Haruna I registered an account with Lang - 8 , but ca n't understand this usage . I 'll stop complaining . Sorry , just a question . Even if I get a boyfriend , I will choose to live alone , because even we broke up , at least I would have my home . I do n't want to end up not having a boyfriend and a place to live , that would make me feel like a loser . Mainly because I was in the Philippines and Due to typhoon I dont have class in the morning u know a tyehoon will be coming to japan . I heard it was the same in China or in some European countries . I have a problem with choosing new jeans . He faced about one thousand and nine challenges , and finally , he met a person who was willing to buy his recipes . I graduated from Nihon University last year . I majored in International Relations . I did n't know the name until then I know they are not interesting at all , so everyone would n't want to read my entry . I 've had a lot of experiences like this and I 've realized that men and women ca n't be close friends . , so we would like to make the accommodations as comfortable as possible for the newcomers . but there was a language problem . ( Sounds natural ) but after drinking a couple of glasses of champagne , I was very drunk . Recently , I make many kinds of bread too . Do you remember those days , your mother knit a sweater in the dim light for you when you woke up at midnight , or because you came home so late that she was n't ? able to be assured ; you know that there are many things like this . I went to a study group for CMS ( Content Management System , an internet system for blogs and websites , like WordPress ) and had discussions with members . Because I am abstaining from drinking , it seemed that not having much alcohol made me drunker . Hummm . . . Mubark was the president of Egypt for 30 years . Allah helps people in Egypt . What are your favourite sports ? There are many beautiful clothesand dance movements in the film . But I have the good luck to be surrounded by brilliant friends , excellent teachers and an affluent campus ( The only weakness is that it is too far from my house . . . ) . Even by doing so , it might be difficult to attain something special , but what is important is to try to have an awareness of issues and start a voluntary pursuit . On top of that , I heard that grown - ups feel as if time has passed faster than in their childhood . Thanks for reading my journal A public viewing is an event where you cheer for the team through a huge screen with a crowd . Japan played well , but I think there was a critical diference between Japan and the Netherlands . I do n't know why we 're supposed to take classes in such a marvelous summer vacation , which should have been full of joy , laughter and merriment . Although it sounds a little pessimistic and overstated , what I really want to say that learning should be a lifelong and happy activity rather than pushing us to the limit when we are in a bad mood / depressed . Improving our knowledge by practicing instead of talking theoretically is the most significant , positive and effective thing in our life , in my opinion . This week , I 'm staying with another host family because my host family is going to be in Bali for two weeks . It was so amazing . Then , I remembered that the foreigner was seating alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speaks English . I carried him in my arms and looked around to find his master . She doe n't have confidence about English , but she knows many verbs and conjugations . To my surprise , there were no stories nor paragraphs on her textbook but conjugations and exercises . Thank you for your cooperation . The shop where we went to was owned by chicken egg farmers . Of course I also liked `` Jack and the Beanstalk . `` : - ) So I hope that I will be write at least one sentence correct . After that I lost my confidence in speaking English . Although I did n't get first prize and practicing English speech is really hard , this English speech contest was a really good time for me . I hope my English speech skills will be as good as a native speaker ! I would like to introduce some disgusting examples to you . When I was a student , I spent a lot of my money on music . Okinawa was warmer than Tokyo , because of its location . This time , the airplane was delayed by 2 hours due to the maintenance . It 's on my way to my hometown . I thank her for helping me to study English . I ask my coach if I could take a break , then he suggested that I take the intermediate - first lesson . hello guys from japan ; my first diary about japanese disaster Two women are in their forties , another woman is in her thirties , and I 'm in my twenties , but we only speak in English when we get together so I ca n't feel the generation gap . I feel like we are friends . And I find that even after several Chinese have corrected someone 's journal , there are still some errors / mistakes . Sometime its punch lines are too ridiculous to believe that anyone on earth is really that stupid , but that 's what makes it so good . Somehow I ca n't help watching it everyday . Recently I have been busy with job hunting and class in university . So I am so happy that I had slept until noon . In Japan , the replacement of prime ministers seem to have become an annual event . University is said to be a life experience . They can strengthen their bonds deeper through other school events such as cultural festivels . Doing somthing for the first time is very exciting , as you know . My cousin bought a chicken for my dogs . . But I also lack English language skills . Do you know Kao Corporation ? So , in conclusion , I want to state that not only must the government make the already existing laws tougher , but also censor the media , which has a tremendous influence - especially on young people . It is a little dificult for me , but I always enjoy discussion with her in English . I 've only had a few food but I do n't feel hungry . Sometimes I 'm not hungry but I want to eat . . . . At last , I arrived at my destination , Narita Airport . The goddess did not want them to be together , and so used her power to turn them into two stars . but I brought < / FONT > some bread to eat with friends . Shiba dog is a Japanese dog . They are medium size and very It 's her first time to go to a foreign country by herself . Do you know `` Syabu - syabu `` ? It is a dinner that consists of many vegetables and thin beef swished in boiling water . There were many foreign visitors in the restaurant . I have made some friends who are Japanese . Thank you for coming and seeing us at Onoda - shi , in Yamaguchi on January 21 . One mother said your reading of the picture book was wonderful ! ! The first time I met him , he talked about `` SD Gundam `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand anything he was talking about . After leaving Tokyo , he will go to Shizuoka to view a big Gundam model . Without Anna , my English might not improve . Anyway , I have one thing I want to say : that I leave on August 26th , for the US . I want to thank everyone who has helped me with my English so far . So , I expect that many people read my diary and correct sentences . please correct the sentences and be my friend ! I never learnt ( / do n't know ) how to play the piano or guitar , or learnt French or Japanese like some people . As a result , I found this website and enjoyed correcting articles written by some foreigners because I am good at it and it makes me feel good no matter if they thank me or not . I had lunch with two friends ( and friend 's daughter who is one year and seven months old and very cute ) today . This afternoon , our class will be having a class meeting about electing the elite as members to the Party . I do n't care if other people say `` You ca n't be a milionaire because you are not already rich `` . This Saturday I went to Shiga because of my group activeties . Today , I got some classes at my college . Showing my true colors , I want to skip my classes ! ! So , now I should go to college . I did n't have any Indian friends in , Taiwan , before . All my foreign pals are Japanese . But the type of rice is different from Taiwan . Every ethnic community has their own character . My favorite color is white , so my car is also white . Because of that , I want the white iPhone 4G . I also want to learn German because I really love German football and Fc Bayern ; - ) This is my first diary . I am interested in fashion , art , and 90 's music ! I am `` good at `` speaking Japanese but I am `` not good at `` speaking English . Please help me ! I am going to send an E - mail to my friend who is an international student today . Mixed feelings again . First I feel happy because of someone who told me I look like a singer . I 'm not alone , right ? I think it is about the guy who kept eating only McDonald 's hamburgers and potatoes . Yesterday 's dinner I started surfing about 2 months ago , but then the earthquakes and tsunami hit the Tohoku area . Now I want a motorcycle and dream that I will get a big one and travel around the world . It 's like making blended whiskey using single malt ones . Not to mention learning other languages . For these reasons , I think the education that aims at the development of individual talent rather than learning by rote is needed the most . One of my classes called International Communication course is one of those systems , where we can learn other country 's traditional way of life as well as English , and we can see many people from other countries . My high school gives us many opportunities to go to other countries . What is the Au pair Program ? I can study English in various ways on the internet . By taking class in an English center , I can practise listening , pronunciation , . . . Generally , I do n't say much if the atmosphere of a conversation gets stressful . She never thought of anyone else . You wanna be somebody who complains , but you wo n't be a listener . I am sacred of you now . . . . Usually , the beans are sold with seasoning such as soy sauce . I was born in a city north of China , and I went to college at a city north east of China . I love snow very much , and the winter time during college gave me deep impressions of good memories . Hence , more and more visitors should have opportunities to travel to other places . I 've been a lacrosse player since I was university student . During that time , I felt quite uncomfortable . It was atough time , but I enjoyed talking with thecustomers . These flowershave special colors and shapes , too . Recently I could only go to work for two days a month , because I have been receiving post - surgical chemotherapy to prevent a recurrence of my cancer and metastasis . Though it was regrettable that I got sick , I believe that my disease has developed a greatness within my soul . These days , I 'm always shopping , singing in the `` KARAOKE - BOX `` , drinking liquor or doing many other things . The Spring Festival is the Chinese New Year , and it 's the day when all the family members come together and celebrate . Why can you earn more & nbsp ; in Canadian companies that estimate indindividual skills more than Asian companies ? & nbsp ; It really depends on the your skills , whether you earn a lot of money or not . I hope my English will be getting better for many reasons . And I will help you with Korean , a little bit of Japanese . We are going to go to Himeji castle and some other places . but , my english is not good . Nobody knows what will happen in the future . I think it would be fun to write a diary on the web . Everyone seems delighted by it . My father had a lots of potatos in my house which was more than he can eat before they get spoiled . I mean , real diary . Of course , I have written English compositions in school , but those are not diaries . One of my friends recommended it to me . When I found the ( rain boots ) , I ( thought ) I ( loved them ) . My First Time Writing In My Diary In English I purchased a training suit , which is similar to what boxers use before their matches . They control effictiveness ! But , I really feel unhappy with my English right now . . . In this movie , Led Zeppelin 's famous song , ' Immigrant song ' was used . Unfortunately , the long holiday ended today . I 'm going back to school again this March and I 've been planning my course schedule while reconnecting with my friends via MSN messenger . And then , after reading those comments , I was really pleased and happy because the explanations helped me understand the parts that I did n't understand clearly and there were a lot of examples to help me too . Well , I had a delicious breakfast , and the weather today is n't as cold as it was before . But musicals contain many songs , and it is a bit more accessible for me . I really want to recommend it to everyone ! However , I suddenly heard a terribly loud sound . When I say that , people around me look at me surprised as if they did n't expect it and I looked odd . We can listen to the radio and do simplistic jobs at the same time , and also feel relaxed . But I apparently looked like I was listening to an iPod , so most of the people were surprised to see me change the radio channel . I was surprised that Filipinos do n't use such a convenient tool in everyday life . If we find out this information we can help satisfy the niche foreigner 's desires and it is a business opportunity too . People there are very cool , I love chatting with women . For example , they can learn how to speak and begin to understand different languages by watching TV . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the sound of my mother 's breath , reminding me to be more stout and obstinate about my hard - to - reach dream . Of course , I recognize that my range of vocabulary and how to express myself are not enough . I 'm feeling more comfortable even though I recognize that there are still many mistakes . I want to take advantage of this happiness and time to improve my English . I should remove the worms from these leaves to let them keep growing . Because of that , the first day was going to be canceled , but the typhoon has gone the other way , so we were able to continue with the festival . During the ride , a Filipino woman spoke to me in Japanese . I hope this accomodation remains for a long time long against the upcoming tough economic condition . I 'm going to study English and German hard on this site . Should one expect a reward when doing a good deed ? My body is still craving a cup of coffee , so I am counting down to the opening time of my favorite coffee shop . It is also difficult to explain technical documention in English . I 'd like to join in fitness clubs now . In the gym , there are a lot of foreigners so I 'd like to get in . Sometimes I think that days are too short , because I cant do many things , but on weekends the days are longer and I dont know what to do ! When I watched his behaviorat these supermarkets , I found that he was walking around there quickly . We can enter free of charge and the price of food and drinks is very reasonable . I 'd really be grateful for any help in improving my English abilities . I think that it 's about time when I start Skype and talk English positively . When I am walking down to the street , it looks like only umbrellas are moving on the street . Maybe they have seen my old picture on lang - 8 . In my senior high school , anHK friend and I have writewrote a letter to JKR . Although I did n't gain any messages from JKR , HK friend sent me a great Christimas gift : A HARRY POTTER MAP . ( Print by himself ) The map is just like in the movie . Because Japanese books have manypictures about maids and theVictorian time . France has ballet , and Hawaii has the Hula . Generally speaking . most of them were built during the Feudal Period . Each of them has distinctive features . So , even if I was a little bit interested in these kind of things , I tried to hide my curiosity . We have re - instructed the packers to take notice of proper packing material to ensure that panels will not shift in the carton to avoid any damages to the board . It was my fault , but he did n't need so angry . I hope he will be re - assigned to another department next quarter . He had a heart painted on his forehead . That is lovely for Valentine 's day . I would like to ride him , even though the first time I might be scared of him It is famous for hot - springs and it 's beautiful ocean . June is the rainy season in Japan . When the rainy season is over , summer has come . I am twenty three ( years old ) ; it seems that I 'm not young , but I am still in school . I hope in the future I can have a beautiful life and I know it 's not easy . But I 'm still a student now and can do nothing except learn and learn every day . I hope I can do something for my family , but I do n't know what to do . Jeju is a beautiful island . How about your country ? Do you display Restart Toilet Training Mothers should n't be too nervous about this kind of discipline . One day , she was playing with her friend climbing the jungle gym , but her friend climbed higher than her , so she started to cry out of frustration . We are planning to play games with kids . Also , I grilled chicken breast and sprinkled some salt and pepper on it . Obama 's presidential inaugural address . Honestly speaking , I had never heard a presidential oath in detail in the past . The economy is badly weakened . . . `` - He holds respect at the forefront . . . `` For us , they fought and died in places like . . . `` But when you come ( go ) to their country , and begin living as they do , and begin speaking their language , you understand that they are not different from you . I am studying two languages every day . Do you know of stores that sell many inexpensive swimsuits ? She is always kind to me . She is lovely to me . Maybe I can borrow some more accessories for my other friends . We will see . . . Although you have many things , if you see something your friend has that you do n't you really want to have it as well . However , although this is true , I believe we can learn to be satisfied . I came to Australia last September , and it was my first time traveling abroad . Actually all of my luggage had been automatically transported to my next airplane . But I had already made a fatal mistake because I was waiting for my departure time at the 1st gate but I actually had to go to the 60th gate . I am an engineer at a construction company and I am constructing a pharmaceutical factory in Shizuoka . Hence I enrolled at a correspondence university to get a teaching license . As usual , I had some bread , coffee , and salad for breakfast . It goes very well with French bread . Today I happened to meet with my ex - colleague . So I gave her some advice . It is more relaxing there than in the library . Therefore I 'm going to go to New Zealand next summer vacation . Starting today , I 'm going to write a diary in English . I took an exam this morning . I will have to have the same class next term . Yet it is very warm and springlike beautiful day ! In the first , he threw a carrot , in the next pan he put an egg , and the last pan was filled with granules of coffee . After some time , he took out the carrot and the egg and poured out the coffee . - The carrot and the egg have boiled and the coffee has dissolved . But what about the coffee ? - It 's most interesting . Oh , it seems like the ' Spam ' sketch by Monty Python , I watched it just last night ! I got into a university finally ! ! ! ! ! Today we finished lessons earlier than usual , so we returned home earlier too . It would suck to be sneezing all day when the long and cold winter is finally coming to an end . I am going outside Bangkok today . I have to study tonight for tomorrow 's tests . We were strangers , but he made a good impression on me . a mountain eruption = ( Yes , I know I will soon enter university , and that Iam 18 years old when some people find out about that , they are suprised and they think I have a problem I can learn new information from it . especially if it was about history . I love a lot cartoons , especially Japanese anime . Such as : Conan , Anne Shirley , Remi and many other anime . I like anime that showcases problems in society , or about history . Anyway , my friend who lives in Christchurch was fine . and she decided to move to her relative 's home . If a dog is a rabid dog , it 's very dangerous . I 'm college student . So many of my vegan friends cook 3 times a day , and I always help to read what the package of ingredient says at supermarkets : ) Nowadays , I found out that people smoked in the streets . I was driving my car , feeling that I lived in the early 21st century . Right now I 'm at the bank , where the last fireworks festival of this year will take place ! I know I 'm crazy , but I love them and really think they 're beautiful ! I grabbed a great spot up front where the fireworks are being shot . Many workers are now setting up fireworks : ) I 'm happy if I get one ! So everyday or maybe sometimes I 'll send you even if you will not reply . so it damages the hair . I want to improve my English because I like talking with people , girls in particular lol . Because of exam day , we left school before 4 o ' clock and soon got to the studio . We practiced calligraphy at first ; after that teacher started teaching us to sketch . sound in British English . tell me whether the British are more likely to pronounce it as ' I : ~ ' ? Ipoh is also a city in Malaysia . My computer is slightly old and slightly weird . I 've already graduated from university and my major was occupational rehabilitation . I have just registered in Lang - 8 . I usually record music from CD and transfer them into my iPod and watch DVDs on my PC . It worked well except the thing it did n't have any disk drive . My life seems such a catastrophe that I could n't help but sob for all my past teen - life . Is it alright for a sophomore to dream anything about her future ? I had to mediate a conflict of opinions , because an employee had been in trouble with the store manager for a couple of weeks . On the other hand , 12 % of people report that they dislike obese people , less than the 16 % in 2003 . By the way , recently one my lang - 8 friends said that he dislikes female smokers . The idea that a person 's character is decided by blood type is wrong , because the fact that there are n't relations between a blood type and a character has been proved scientifically . ) I studied English in many places in Peru . In Japan I use the little I know . Maybe I speak English poorly , but I feel that I speak fluently . I do n't think I can understand much . This morning , he woke up early at 7 . I usually eat out because I have lived a single life for 9 years . It 's a very famous dish in Japan and it 's very easy to cook ! I have n't written a diary entry for a while , haha ! I found I would be late to my German class . ( A heavily edited and dubbed English version of this film was released under the title `` Warriors of the Wind `` in the 1980s , but it did n't follow Miyazaki 's original plotline . Now a `` no - edit `` version is available . ) I recommend the manga version too . My husbund called , `` Pass the salt ! `` I did n't know why he asked , but I brought the salt box to him . She said that she wanted me to read outside her room , because she would like to sleep in her room , but I did n't mind ; I still stayed there for a long time and fell asleep in her room . I write down my first entry into my english diary today . I 'm very nervous because my english is so terrible . I had my hair cut today . What was interesting was that someone who wore an armband which had the characters `` STAFF `` warned a man who was smoking in the yard nearby my lab not to smoke there . My other friend Nez ( Short for Nezacant ) gave me a shield . The reason was work . before I answered that question , I asked how old she was . One of them is the General Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the future by way of Relativity . But , there are problems ( with going ) to the future . You can go to future when you solve these problems . So light spread as wate and light is composed of particles which we do n't see . Light is the only material which has quantum nature . Even if I get a full score on the writing test , it 's unlikely that I 'll pass the ikkyu test . I 'm a house wife but my family let me alone and prepared food for me during those two days . When I went around Paris , I saw a lot of beautiful places , including classic and old buildings . I could not write my entry yesterday because there was thunder and lightning last evening . My friend and I looked for somewhere quiet to study Chinese and Thai language , we did not find a good place so , yesterday we studied at Macdonald 's but there was a lot of music and a lot of student doing their homework . I do n't know why but I know we have a good mood all the time and like to smile at people whether we know them or not . I asked her about if in China they have Kung Fu or not , she laughed and said yes but it 's different in the movie because they ca n't spring up a tree or a roof and things like that . Look at the first picture . Have you seen it before ? I 'm reading , searching and writing in the train using my MacBook Air . I have some plans and hopes for 2009 . I hope to study English continually with members of my office department , as well as start studying Chinese and other languages . I think it is difficult for me to choreograph dances , Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since the Japanese market is shrinking due to the reduction of the population . But it 's a little bit controversial because it 's very rare for a Japanese company to use English as an official language . Even successful Japanese companies in different coutries like Toyota , Nintendo , etc do not use English as a official language yet . I think people who already study English like us in Lang - 8 do n't think it 's a huge burden . I wonder how they prepare for its goals . This Diary is an English - Learning - Record and Life - Record . Today I attended an editorial meeting of an academic journal of gerontology . I 'm fifteen , I study Art in Malaysia . Yesterday was very good timing to come back to Japan , because now a big and Next time I write , I 'll describe many things . I love animals . Eating dogs should be banned . Headache caused by a bad smell . Do you have any hobbies ? Do I call them `` hobbies `` ? Because , coffee farmers should get a higher income . This game is between Japan and Holland . my sentences are very foolish . . I ca n't select good sentences . . I studied much harder than before , but unexpectedly , I got poor grades . She is such a cool woman , is n't she ? But , the only word I know of to describe her is `` cool `` . I am a person who looks on the bright side and is an enthusiastic self - motivator . These days young people do n't necessarily have it on New Year 's , I live alone and far away from my hometown , so I was n't going to have osechi ryouri because it would be too much for me to eat by myself . Last December , my sister called me all of a sudden and said : ' ' I won this expensive OSECHI ryouri in a BINGO game at my company 's party , but I can not receive it on December 31 because I 'm going back to our hometown . So I 'm asking if you could go and accept it at the restaurant . I heard its very delicious ! ' ' She said that she misses me , and she may possibly come in October , but only for a weekend . Shikoku is noted for their noodles , hot springs and beautiful nature . If I run into a foreigner , he / she gives me a kind of smile . But native speakers occasionally ca n't understand what they want to say even though we as non - natives can understand it . For our office , we usually buy toilet papers through the delivery service of office supplies , however , because the earthquake occurred on March 11th , this service had stopped . I like him because he is very kind . I did n't know that many people in korea can speak english fluently even though they do n't have any experience abroad . I was shocked and I thought back to myself . I am taking English lessons . Do you guys care whether your brothers and sisters are older or younger than you . When I ask you , `` Do you have any brothers and sisters ? `` , you might answer `` Yes , I have two brothers . `` Every Friday I felt tired , although there was little work that needed to be completed immediately . But , I could n't understand his English . . . I shall call him again after I can speak English fluently . The reason is : there is no chair . Waiting for the bus took about 40 minutes , until it came to the station : ) ! According to the weather news , it will snow next week here in Niigata , Japan . This is the first time I 'll experience the winter in Niigata so I 'm wondering if I will survive the upcoming winter . it might be bad thing because many men would like to marry women who are good at cooking . As I get married , it would not be good for my relationship because my husband will be eating my dinner and my breakfeast . So if my cooking is bad , we would have some issues that I ca n't make a nice dinner . I am jealous that this site 's members can write such good Japanese compositions ! ! and yet we sometimes regret our choices . Just compare merits ? Or just listen to advice ? But the result was the result , I must accept it . I usually tap dance alone . It was cold , but we felt hot He is the blind twenty - year - old pianist who won the thirteenth Van Cliburn International Piano Competition in June . I am not familiar with classical music , but I think his music is very beautiful and touching . Today , I went to shopping near the station because today is a national holiday in Japan . oooh FUN ! Electric utility expense rises this summer . Hm , sounds stupid ? I was so proud of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my family twenty years ago ? When I was a junior high , one girl who was not my classmate came up to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an answer at all but I managed to say that . It is very rural . I love Yamagata because I can relax . I practiced drawing dinosaurs , but they look like crocodiles a little . I don ` t have anything special to do , so I usually watch American dramas . The other thing I remember well is that the victims were transfromed into hedgehog monster - like figures like once in the aircraft . Bean throwing , which is called mamemak , is done at home on the day of Setsubun . But such a consideration is a dangerous myth . I think they 're definitely great . I begin to study English with this site . I prefer the version where the princess kisses the frog and the frog turns back into the prince . We promised to go to another tennis camp in the summer ! I have memorized lots of vocabulary , but the dictionary that I use is still very limited . dealing off the bottom The police found evidence that the two companies had been dealing off the bottom of the deck . I see a pile of clothes and I question / ( ask ) myself : `` Why do we wear clothes ? `` She was a completely / really stupid girl and she spent two years in jail in America . She experienced life in an American jail . My name is Kaori . because it is n't the same as Japanese . I 'm going to school tomorrow , so I hope it 'll be good weather . I 've been learning english since last summer . and I want to talk with foreigners . My friend who is a 28 year old woman is thinking about getting married . Her thoughts are completely different from his parents ' . I will go shopping to get some groceries . l am studying English at a language school in Brisbane . I want to speak and understand English better . I made Miso soup and another dish . The Miso soup was a little bit thick . I always wanted to be a cook . I sometimes use stamps at my job for my customers . I made a decision to buy a house , and moved to a better neighborhood in late 2007 . I will write just a little bit of English today because I will read my old diaries and try to understand them again to help me make my English good in the future . Although the internet is more and more popular among students , there is no doubt that a book is a vital way of studying . However , I have to consider the people who corrected my grammar . It is still very hot , burning hot , in the daytime , but it has been getting cooler in the morning and the evening day by day . Moreover , all of the users are friendly and very kind . Last night I spoke on ICQ with my friend in English . Themes were different : religion , music , job . We address those who are older than us by their names + san , but when I was in Cairns , Australia , nobody asked me to call them ' Mr or Ms ~ ' . Perhaps they would get nervous in the fight and they could n't give their full power and technique because they are polite and gentle guys . This is my first english diary , and I am very excited . I reside in Chengdu , China . It 's a very nice and friendly city . hehe , It 's like a panda country . Have you seen Kung Fu Panda ? She thought that she had been living a boring life . So many people are suffering because of unexploded bombs and mines in Vietnam and around Thailand . But at Shinjuku , JR also announced that their service was stopped because of an accident . On the way there , I drew out 100 thousand won from my account using a card . The roads / roadways of HCMC are always jammed / jam - packed with traffic . For entertainment and creation , all you need to do is install it . Beautiful Spring ! I offen see couple of Japanese woman and foreign man . is Japanese Man not popular with foreign girl ? Plese correct my diary . I hope I will have someone to give chocolates to next year ! ! Also , I realised that I got close to paradise or heaven in a different way . In the bus , I met three foreign student , one is American , another is German and the other one is from Holand . They want to visit the `` Tian an men `` , but they did n't know how to get there . I want to go to many restaurants , but I 'm only here for five days . Before the coming winter , I ( prepare ) for the cold . I saw two of my idols today . The correctee might have believed those mistakes were right . I have noticed that I feel the Japanese economy gradually worsen . To solve the problem , I believe that young people should go overseas and study , travel , help developing countries and so on . I went to this course , because I can read English text ( not good , but I can ) , I can understand english speech ( worse , but I can ) , but I ca n't speak it ! David Coverdale is one of my favorite singers . Because his voice is adorable , many people are fascinated . I could n't understand ! ! ! I have n't written a thread for a while . Meeting my friend , eating nice food , Sleeping a lot , studying english , I can do that ^ 3 ^ I 'm going to take part in Hana where I learn English speaking with . foreigners . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` while eating . So I 've made up my mind to learn it seriously as I study for my profession . I 'm growing some vegetables in my veranda . Last Saturday I had my hair cut . Today is April Fools ' Day . In the US , people usually fool their good friends to make everyone happy . because the older generation do n't like it . In their ideas we will be very impolite if we did that . After posting my journal yesterday , I regretted it a lot because I wondered if my journal entry might sound offensive . I want to say that English helps me to express my emotion more easily than Japanese . I think that there are some cultural differences in there . As my college is in Kyoto , I usually only go around in that area . but , I am going to Tokyo to take a seminar for job applicants tomorrow . So I think that I am busy , but I would think that `` busy `` is evidence of living a full life . Well I just signed on . I hope that with this web site I will improve my English skills Eating is important . They do n't want to upload their own pictures or careers . I want to have the ability to be able to help somebody easly . May this new year bring you many opportunities I 'm a university student studying architecture . This is my first trip abroad . The next day , my left hand had turned pale and a little swollen . I went shopping with my mom . There will be an unique ceremony . By the way do you know , ' ' Turtle Talk ' ' ? First I have to decide a specific goal for example to pass one qualification , to take an exam , or to get a job . It is most important that I continue with my goal . I ended up eating too much . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more uncomfortable . I think music is like a beautiful performance . It 's something essential like a type of language . There is beautiful natural places in NZ , and it is similar to my hometown . Tomorrow , I will walk around town . The day before yesterday was the Midsummer Day of the Ox . Even if I achieve that purpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studying the written and reading tests do n't help me speak English and learn English expressions . I 've just looked up the word `` progress `` on an English dictionary which is Longman dictonary . I came back from my business trip last night and I jogged to the office to deal with the receipts to get the compensation now . I often eat out , like at McDonald ` s . Right now , I 'm watching a TV program about the Hubble ( Space ) Telescope . Mein Vater ist Beamter . Active : I washed my dishes before I came here . * Japan 1 - 0 Cameroon ! ! They had great performance It was too difficult to communicate well with the foreigners , but I enjoyed spending time with them . As a matter of fact , I like listening to him at the meetings . Some of my friends ca n't drink them because if they do , they hurt their throats . The most important thing about English is to grasp the common vocabulary and the pronunciation of each word , which I am sticking to neither . We mostly choice the topic about the teacher , only he choice tennis . He also used his camera to record other student 's activities exaggeratedly . When once in the class , he also did this , the teacher was very angry , he hit the student 's head with a dumbbell . I want to visit the school to pay my respects to the teachers but I can ' t I feel like the happiest person in the world It is my first time writing a diary in English . In conclusion / Finally , I think I become a more complicated person when I speak English . Actually , my parents are getting divorced as they always argue about things . even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can be return to after I graduate from my college . . . even though the real reason why I wanna leave Japan has something to do with my big dream . I wanted to go on a trip abroad during GW , but my wish was n't realized because of the reason above . some people might tell me I 'm staying in Australia to study English . I drove my car onto the main street and found that it was congested ( du che ) ; it was raining at that time . Heavy traffic blocked the street . Thirty mintutes later , I got out of my car to find out what had happened . I walked back to my car , turned on the radio and waited . because this book has so much slang Other than the internet I learn from aplications such as `` Windows `` : ) ) ) ) I need a lot of help because I find English a difficult language to learn . Because it takes about 30 minutes to drive there from my house . I need to do some stretching and start to take care of my health . I wo n't fail to fullfil my resolution . If I become a member before Jan . Yesterday I arranged that I would learn English grammar . He jumped into the sea and he almost drowned . Whenever I see an English sentence , I have to think about it , and then translate it before I can understand the meaning of it . This space seems like a place to write a daily diary . I thought , I should write something in the `` About me `` section . I was unpleasantly surprised that a lot of my mistakes deal with articles . But I found that Japanese was much more difficult than English to learn . I wondered if he mentioned it because he wanted to invite me or because he just wanted to tell everyone the news ? But the realiy is not allowed us to choose right ( decision ) . First , when I wanted to buy some street food or drink I always used my index and middle finger to show I needed two meals or two cups . But they show a thumb for one , and the index finger was for two . They were allowed to smoke in the restaurants , too . Silvano was so patient with me . As you know I do n't like politicians publically speaking , but there is one politician that I want to hear speak , Junichiro Koizumi . Now Tarou Asou is president , who is known as the way to fun speak . ( ? ? ) I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( I feel very frustrated and I 've been wondering when my English will improve ! But my vocabulary was too limited to make the conversation interesting . I 'm not going to say anything about the story anymore because there are some people who have n't seen it . In Germany , a genius Japanese doctor named Tenma had saved a boy 's life through operation . Unfortunately , Johan was a genius person who killed without thinking about the significance of human life MONSTER is one of the most popular comic book in Japan Thanks a lot for reading my sentences . I even thought anything would do as long as it was a living thing . After I separated from my friend , I also felt another aftershock in Tokyo while I was waiting for my bus . After taking my antibiotics , I made a rush for the school so desperately that I forgot to eat something . I thought I would be able to buy something once I arrived . But my vocabulary is poor for translating the meanings of this . Before the semester started , I was join the magic club in my university . Fireworks to be held tonight in my town Fireworks is an annual summer event in my town . But according to the weather station , it seems like the weather might be poor today . In Japan , the 29th of April was a public holiday . However , I am often said `` You look like a half - breed ! `` I think that 's because of my brown eyes , but I 'm pure Japanese . Today , I woke up at 8 : 00 AM , drank coffee , and watched TV . When I am writing a diary , I use a vocabulary book . Do you know about Nagano ? Do you know about the Nagano Olympics in 1998 ? Nagano also has famous places . For example , Zenkouji is a very old shrine ! Would you search the internet ? It is a very big shrine ! In 1992 , I went to Thiland for meet my family . But evetually I managed it and we made delicious `` Japanese mugwort rice cake `` . It rained cats and dogs in the morning , but then turned sunny in the afternoon . In the Middle East , they 've made a truce between the Israelis and the Palestanians . I 'm not as fascinated with it as she is ( that would be difficult : P ) , but I enjoyed the beautiful romanticist and photo - realistic paintings . They are so calm . When president obama was speaking , Recently I 've watched ' Star Trek - Voyager ' to improve my listening skill . But my english teacher recommended to watch ' Star Trek - Voyager ' because the actors and actress speak clearly . So here I 'd like to study technical English and find new friends ( from all over the world , but it seems to be only a dream ) . However there was no answer and I opened the door . A middle - aged woman in a green shirt was sat down on the toilet . When I opened the door she looked surprised and I was also surprised because I thought that nobody was in there . . . . We looked at each other for a very short time . Today , _ it was a beautiful day . I created a Twitter account . So I hope that some day , we can meet in heaven . Everytime , I always use my iPhone for something unnecessary . I have been in the USA for 1 and half years . While I was working at a Japanese company in Japan , I sometimes got phone calls from the other country 's company . I 'm fine thank you and you ? `` at that time . Please correct my sentences if I make a mistake . I have been working for one year and I have learned a lesson - - I lack courage , which is a disadvantage at work . Life sucks without true love , I must learn what to do to find zeal for my work . I would not be skilled enough . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into the living room , and she said that some black object fell . Do you knou `` Fantasiata `` ? First of all , population growth has greatly influenced the world . For this reason , I dicided to use this gym quickly . But to be honest , it was totally fun . haha . If only I could believe it caused no pain or little pain . . . . . It is very gothic and turned my thoughts to ghosts . I was taking some photos of the church itself , and of me next to it , but this photo is the best one for me , because it creates joyful emotions in my heart and soul . My mother took us to the station and I took the train . I think I lack knowledge and books may help me to express my own ideas . I finished reading `` Wuthering Heights `` yesterday . If you have any recommendations , please tell me . ^ ^ I only have the database in my PC . I got a ticket for aKenji Ozawa concert . He is very critical of capitalism ( particularly America ) on his site . I sometimes use paper or solid models which I made , because it 's hard to describe through only speaking . I jogged only on the weekend , but I think it has is little effect in decreasing my weight . Please correct my Poor English sentences . The daughter who will arrive first will arrive early next Tuesday morning . But she is really English , and she speaks almost exclusively in English . Since everyone has his own fate . Another two days of the week , I worked in the training center of an university from Could somebody think of adjectives which do not have superlative or comparative forms ? Hello , everyone ! I got always frightened ( scared ) every time I heard it . It 's especially good for improving my listening and speaking skills in English . I think studying English by watching soap operas is more effective than studying with books . `` Charo `` is a English learning program by NHK , a Japanese broadcasting company . The radio version is little bit longer and more difficult and has more details . When I get tired of studying English , I just listen to the story . That 's why I believe it is the best program . I am writing for the first time at Lang - 8 . I know some of my friends work about 14 - 15 hours a day . So I practise my English , study accounting and go for a run to exercise in my spare time . I think that foreigners are more open - minded , so I can make friends more easily . I see John get on a train and it leaves XXX station at 6 p . m . And on the train I come across a man and he asks me what train John got on . I think I could say something like , `` ( John got on ) The train that pulled out of XXX station at 6 p . m . `` But , I want to explain without referring to time . ideal : What 's the ideal educational style for American people ? ( for ? ) However , because we chose an area of higher altitude , we had very good snow conditions . : - ) I felt very tired and stressed , but it was very interesting . What is culture ? It refers to the civilization and customs of a certain race or nation . We do and say things that maybe we would not do in other counties , so knowing a counties ' culture is important if you will communicate with global people and travel to different areas . I think a very imporntant reason is that we have different religious beliefs , follow different customs , and live in different environments . I am learning English language in a short time and I do n't know how to write it well . I think that it is a nice website because a lot of people can quick learn language , so I want to write here once a week and if you can , show me and correct my mistakes . Today I received 4 pieces of clothing that I bought from Taobao . `` Gheimeh `` is a popular dish in Iran and it is also cooked in most religious ceremonies like some ceremonies that are held in two days called `` Ashoora `` and `` Tassoa `` ( `` Ashoora `` and `` Tasooa `` are the days that Muslims , especially Shias mourn for `` Emam Hossain `` ) . Because of this use , some people called `` Gheimeh `` , a dead person 's meal . For cooking `` Gheimeh `` we need some ingredients like beef or lamb that are cut into small pieces , some onions , split - peas , tomato paste , some potatoes , cooking oil , salt , and some spices like red or black pepper and tumeric . In the next stage , peel and cut potatoes and fry them ; you can also cut some mushrooms and a green pepper into small pieces and add it to the frying potatoes , then add salt and red or black pepper to the mixture . But when my room is tidy , I feel more energetic . I 've always wanted to buy shoes for spring . When we lend some money to someone , we should determine a precise date of repayment . I appreciate the memories and wonderful favors in my life . One of friends said they are just looking for a Japanese girl because they are pretty and easy to play . According to the program , he still lives in a small town where he was born and lives like an ordinary local person even though he is a billionaire . However , I 've succeeded in losing weight byten kilogram within a half a year . Actually , I like wearing smart clothing and want to be seen as having acool apearance but it is crucial for me to have a good , healthy body . I am going shopping today andI ca n't wait . I am looking for my own house these days . So the principal decided to suspend the first grade class . I have n't been here for more than a month because I did n't have a computer . But I could n't understand very well . So , I am starting on the diet when I cook traditional Japanese food . Today 's menu is Udon and seaweed salad . I was amazed that Japanese food really does n't need oil . I felt that I could n't do that , so I remained standing . On Halloween day , I joined the parade at 6 av in NY . I want to have a more creative job . Conditioner makes my difficult hair easy to comb . Reading sections , especially the grammar section , were not very good . I bought many souvenirs , for example , postcards , ornaments and a lot of tableware . it takes ten minutes to get there by bicycle . It was made using concrete , not wood like the other castles , so it is just a museum inside . The foundation of this castle is a stone wall using a lot of big stones like other castles , but there are some huge stones here , like the second photo attached . My ankle still aches a little : < Tomorrow , I 'll enjoy being with my family , playing game together and talking about something in traditional event days . I 'm worrying a lot these days . Finally , they became friends . I was frustrated . After watching the movie we went to an Italian resturant and chatted a lot XD They usually say `` happy Valentine 's day `` . But then I often feel annoyed because the day did n't belong to me . But then other people messaged me `` happy Valentine 's day , even though we do n't love each other `` . haha ~ ~ now I feel happy , even though I have n't * * But I have some good friends . The last time , we went to Barbecue restaurant to eat a lot of different foods . And it 's interesting , a group of obaasan ( old women ) were singing loudly and drinking next to us . They looked so happy that day . Just some old women , no roses , no chocolates , but happy all the same ! My holiday has been going so fast collecting donations and taking them to the communities office before ten . I saw an USPS driver throwing a package up onto the second - floor balcony of an apartment house ! To my dear friends who are living around the world now : If you do n't have that , I too suggest you find it out soon . I hope you will be happy to finding a nice partner . Anyway , the doctor ( s ) told me to get some more exercise ( > _ < ) At the end of the month , we must submit our presentation to the chief executives . Melbourne is good city to live but I hate Melbourne weather ! It 's the last concert of university . When people criticize it is hard . . The sports festival will be held next Friday . I envy her because her English pronunciation was more fluent than when I saw her 1 month ago . My department held a welcome party for new employees today . I want to be a prischool teacher . I 'm in my friends room , in Yokohama , listening to music Talking to him , I detected that my english was becoming poorer and poorer . It is very important because there is a danger that a new product will eat into the share of the market ` s existing products . She told me that the company wanted to fill several manager positions with people from all areas of Japan , then she called again to tell me the day of the interview . Today , I will answer a question . The question is : `` When you 're feeling sad , what do you to feel better ? `` It takes 60 minutes to get there and 60 minutes to come back . . . Ono was taken to a police station under suspicion of violating the ( a ? ) Maintenance of Public Order Law . The prosecution and the Court ratified the `` Black Trial `` made up by the Tokko Police . Because it was so hot and humid , just staying at hotel was irritating enough . However , there was a laser show that night . But he is pretty cute to me . I figured out the reason . I think that they met their fiances , fell in love , knew each other well and decided to get married . My older sister sent me a picture of her and her husband . Recently , I began reading and listening through iphone . English tutor said : `` You have to study grammar lessons . `` The main purpose of this trip is to attend a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm going to Las Vegas today ( for no special reason ) . I want to join other class from this autumn , kind of gym , tennis , or something like that . It was not too sunny yesterday and I did n't care if I became sunburned , but now my skin has become an awful red color . I 'm a Chinese girl who lives in Australia now . This is my first time using this kind of website because my friend recommended it to me . But I always do my best to communicate with foreigners by using as many expressions as I know . I have never come into so difficult questions given as practice . A few minutes ago , there was an announcement that the flight to Shenzhen will be delayed for about 2 hours . My grandma said that holy ghosts protected me as guardians and kept their eyes on me at my birthday . Actually , I finished all of my classes except an English Advance class . When I lived in Japan , playing the piano and going to my favorite places with my husband were the best way for relieving stress , Of course I like talking my friends , going shopping and so on . Should CEOs be limit on salaries ? This theme is mentioned by that Wall Street provided complax financal products that led to recession on worldwide . Of course I sent a message to my English teacher . There is not a single cloud in the sky . But I do n't like to study grammar , so I always use few words with broken grammar . Like every student in China , I have studied English for 10 years . We went shopping and bought pants and a jacket . This test is very important ( no comma ) because it is essential for me to be an exchange student between my university and Florida State University to study . My cousin taught me how to see my friends ' sex and native language at Lang - 8 . I can use skype & yahoo messenger ! We played soccer game and wii sports . I have two ways to improve my vocabulary study ; one is to read DUO 3 . 0 books and the other is to read a simple English news site every day . Recently , I have n't been studying English because I have been neglecting it every day . But , I will start studying English again from today onwards . I 've taken care of the people who have depression , so I can handle them , but it was my first time treating a person with bipolar disorder . Here in Japan there are many rain showers in the spring and autumn . I 'm looking forward to coming back here next time . I want a Korean - Japanese dictionary to understand the words oftheir songs ! I 'll stick to studying Englishin the future ! ! My supervisor told me that it is tough to teach students English . So she is cute . The guy sitting next to me is bothering me . There are Japanese , Korean , Brazilian and Chinese students in my class . My teacher looks like Hagrid . But to tell the truth , the reason why I love her is unexplainable . I wish everyone a happy time on Valntine 's day . . . I remembered my trip to France three month ago : ) I have some questions . When we take this examination , we are all very nervous because volunteers play the role of patients . Then he died at 65 years old while I was in my first year of elementary school . I posted my first diary half a month ago , but to my disappointment , it After that , I went back home and cleaned . In the evening , I went out with my friend . He is n't my boyfriend yet . We 've only known each other for one week , I 'm afraid that I might be falling in love ! I 'm watching the Japanese movie `` Death Note `` on TV . Both an investigator and the criminal who uses the notebook take center stage . What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitsubishi and Mazda ? I read books for 10 minutes when my eyes feel sore , or I 'll run outside to make my blood stream more active . It 's time to finish writing this entry because at this time , 8 p . m . , I 've got to walk around for exercise . The books are `` The traveler 's gift : seven decisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . After half of a day I received it by a deliveryman and read it immediately . Finally I finished reading the book I accepted the situation , and now I 'm crazy about Lang - 8 right beside them . I could n't calm down , so I hit the wall in a restroom in the station . Yesterday , my sister and I went to the cinema and watched `` Gnomeo and Juliet `` . reflect : If the light from a mirror reflect to the paper , it burns . ( I feel this sentence is weird but I do n't know why : p ) defend : He tried to defend himself but everyone spoke at once , so he could n't even say anything . My parents and uncle visited a temple where she was buried . My family is Buddist so we believe that the 49th day is We had a religious service and prayed for her . but I ca n't think of a serious topic so I decided to talk about techniques for men . `` Do n't laugh ! `` I said to him in English . ( Question : ) Should cars be banned from city centers ? It leads global warming . Dunno why , but I was cracking up badly lol The band I saw is a Japanese band called Kirinji , which is not so famous even among Japanese . It 's sometimes not fun ( to much pressure ) doing work in my clinic . I feel interested when they smile after I say something to them . Let 's try having fun ( pleasure ) in our day even if it is work ! The right picture is the second tea . Wave dynamics , thermodynamics . . . ( particularly WAVE ) everything about physics makes me confused . We 've had studied English at least for 6 years . My family is going to my grandmother 's house . Haha , I looked it up in the dictionary , but I could n't catch the slight difference . I can read English newspapers and books without big problems and have made a big improvement in listening , I should learn more about grammar , I cooked Tandoori chicken with my friends at a cooking class . Last week one of my friends said , `` Let 's go to a cooking class together . `` I wanted to know how to cook Tandoori chicken . I decided to go to it . And , the order , starting from closest the barin is ; thecerebrum , the brain stem , which is a vital part in thecenter ) spinal cord , whichis atthe end of the central nervous system ) and peripheral nervous system , whichare the nerves below spine ) . In Japan , I ca n't imagine all adults would wear helmets when they ride their mama chairs ( ? ) ; that would be ridiculous . But I do n't forget to drink beer ! While she was out , I came into the house and hid in the box which my mother - in - law had prepared . I switched / turned on my favorite radio station . So , I think that my post is finished . It 's my first text on this site . so I baked a cake and made rice this morning . I gave her a present for her birthday , which was 5 days ago . I think that remembering other people 's names and calling them by them is very important . When it comes to remembering people 's names , we try to make excuses saying `` I am busy with my own work , I do n't have time to remember people 's names `` , or `` How can I remember everyone 's name ? `` . A leading actor is Sylvester Stallone , and he was the movie director , too . Another actors were Jason Statham , Bruce Willis , and Arnold Schwarzenegger . Yup , I was correcting some texts at midnight when this little creature silently slid from the yard of my house into my bedroom . I got up early this morning because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsiblity to memorize them with a more efficiency . ' ' Was my brother reluctant to get up at three in the morning ? ' ' My major is international relations , and I want to be a diplomat . In Japan , TV programs are highly developed and devised `` ; `` or `` , and `` culture and languages can be shown through the device . There were a lot of people coming from different countries . I thought he was poorly taken care of . I was surprised because I often parked there instead of parking in the parking lot by now . I 't is weird because I do n't see the red line marked along the street , I do n't know why it is illegal to park there . And the same day , I arrived at Heathrow , England . Originally I 'm not good at English , and additionally , Japanese people learn American English in school . Maybe I saw Selena Gomez ( After seeing her , I used `` google `` , since I knew her name ) . Last , I ate a delicious cake and that was the end of my birthday ! ! I made an appointment with my friend , but she is not the same person from the chicken conversation . They all said that the cabbage I cooked was delicious ! It was a great success ! They gave me the courage to learn more about cooking . Though I study English a lot , my score is the worst score in decades . I started studying English because I am a computer programmer . I 'm optimistic ha ha ha . When we are learning foreign languages , we are liable to think that we should n't use our mother tongues often . What makes our lives collapse is definitely negative thought . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo , opening a new terminal for international flights . They emerged from MySpace first , and recently they have become famous in Japan , I think because of her cuteness and some songs . . . They must have felt more scared than me . I have some flowerpots and a variety of flowers are planted in those . Thanks for your reply a few lines . If we recite a sutra once , we will live peacefully in the next world . I found this site on AERA english and I 'm interested in it because I am studying English now . My husband has entered for a full marathon but he has n't run such a long distance in his life ! I do n't want to participate in any marathon definitely . I remember how I got discouraged by my English teacher in cram school . There , instructors always cheer me up when I ca n't say what I want to say . I can learn what is wrong with my sentences and a more natural style of writing . * Today I learned where can communicate with other country 's friends . * As English major student , I think I should learn English well , so I am reading an English book , ' Black Boy ' by Richard Wright . I could n't understand all of the story , but I know approximately what this book is about . Although I read the book slowly and do n't understand all of it , someday I will be able to read fluently . I believe that . How about Britain ? ? There were many believers and tourists visiting the famous temple . However , in high schools we ca n't choose the classes . That also includes middle and elementary schools . And if we want to make high schools bigger , we have to build more construction and it will waste a lot of money . Some iPod applications are very useful to me for learning more English vocabulary / phrases and sentences . Some example sentences are welcome . I am a new employee in a company , and because my job may use English , I have to improve my English . When I was in school , I studied 6 years of English , but I have forgotten some . Since then , intricate networks of power lines and utility poles have become prevalent in a short time with the increase in human residences . Now the beauty of the neon from human civilization is are replacing that of the starlight here . We went to an all you can eat restaurant , and the price was NT550 per person , which is equivalent to 15 us dollars . Because the restaurant is so popular , we had to wait for like a half hour . That Taiwanese guy asked my students 's phone number , and she gave it to him . I realized that I had wonderful friends and that I should enjoy anything that may happen . It was not possible to go to Nanodee sea . and I arrived at city after 30 minutes . There was a lot of delicious food . I have been waiting for `` twilight `` . I asked my friend for the audio books as souvenirs . I will continue reading from page 52 tonight . In addition , walking and hiking around parks and collecting flowers and plants are also a good example . I saw many of my friends online . article . In addition , I have something to request of you . Can you share your experiences about learning Japanese ? I even forgot a lot of grammer . I 'm in such a good mood because my weekend was wonderful . It 's raining today , thus I 'm so gloomy . Since this morning , it has been raining outside . We had some bread for breakfast . I 've decided not to use a translator for looking at how sentences should look . I would keep dancing but I do n't have enough money . Accessories like rings , necklaces and bracelets , Hanbok , Korean traditional clothes , and more . I feel so bad after getting angry . Is he a clone of the armor pilot whose father is a heroic astranaut ? I had no plans to begin with , so I went to school to check if the exchange list and the exam schedule were available yet . Returning home for the second time , we remembered that two of our friends have a birthday in the coming month . We do n't like them because they 're good at sports ( football , tennis , cycling . . . ) . They eat horrible things such as jelly or pudding , one of the most horrific nightmares for a French person . - Africans ( black people in general ) : they are lazy , only good at athletics or football ( but they 're not technical , they only run ) . French in general : it 's agreed that we strike , criticise / criticize , and moan too much . And my car will be a total loss after test - driving it ! Its content is to improve the communication skills . I was a system engineer in Japan , but I want to find another interesting job here . I was so sleppy , I could n't consentrate on the class . But if you are in relationship and if you say to your friends that you are not going out with your boyfriend on Christmas holiday , they would think it is a little weird . I registered on this site because I want learn English . He acts like he really cares about the puppy in the computer . He might want to say ' Hello I am a puppy nice to meet you ' : ) After checked in the hotel , I went to Union square to take part in a ride on a private cable car that took us to our diner restaurant . It has been while since I last wrote here . So please keep writing in here and I will continue to support you . One of them brought insecticide and an antiseptic spray ttle , and he squirted and sprayed me . They are crazy and make me frustrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped ( loved ? ? ) Ross & Rachel , because I always thought they belonged together . I do n't usually buy imported items because they are a bit pricier than regular items , but they were on sale . Going to Italy ~ Today , I will introduce my favorite building ~ The great wall . But I do n't wanna be in this present situation . Yesterday I was caught in a sudden shower when I went out with my girlfriend in Ginza . Therefore , it encouraged me to communicate with others . There were also a lot of people who had frequently spoken English , they could talk with others as what they wanted and express their thoughts and ideas clearly . You can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get pissed off and say that I have bad attitude . I just found this site now accidentally , and I think it will help a lot with improving my English . But to me , his English seems excellent . The other ingredients are Tofu , cabbage , pork and mushrooms . * * space after commas Although a `` know it all `` is an ironical title , I still pursue to be one . Hachi goes to the station with the professor every time , and from home to the station when hearing the sounds of the train . Hachi never missed one train and never missed the professor . He still never missed a train , though his master never appeared again . One day , he finally goes to heaven to find his master . I want to make friends all over the world . But , nowadays I have began to say to them . when we spoke , I could n't help embrassing like stammer . They were very beautiful and looked like big flowers . Finally , Tegomass ( which is a Japanese idol group ) appeared on the stage . Also , you should sit down at a seat near the door . I often practice dancing with a mirror , but I can dance freely , using my practice , at nightclubs . As a matter of fact , I spent about two to three hours talking to my friends on Skype and surfing the internet , so I did n't get enough sleep . It could n't be helped . At least I can say I did n't waste my time thinking about the things that could never change . I work as a private tutor for students . Today , I 'm very angry because a my unitersity 's student break of traffic rules . Today I registered for a Lang - 8 account . I work for a Japanese restaurant as a waitress . Oh my God , It costed 80 thousand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price , just 10 thousand Vietnam Dong . This week is very hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAME STREET podcast on my ipod in English . my reasons to study english so I have to acquire good English communication skills in order to work well . My plan to study english is to write English compositions and watch DVDs of `` FRENDS , `` which I heard is an interesting comedy in English , everyday day . In spring every year , Japanese hold parties in which they welcome freshmen . Some get too drunk and misbehave . They can be seen shouting and urinating in the street , while breaking signboards , and so on . A few days ago , a drunk celebrity was arrested on a charge of indecent exposure , but many people put their signatures on a petition . Kiyomiya , a very famous Japanese professional rugby team director . I know of one great japanese restaurant in shanghai . My feelings were a little bit complicated because I did n't study very hard so I wonder if I should go up or not . . . He is shy , so I thought he might hate me . ( = this means grandmother ) `` , and hugged her . The memo 's contents are life , daily , work and so on . I hope I can learn more English and share my life . Oh , I do n't have time now . There are many dishes and many things such as chopsticks and so on . One of my friends is going back her own country at the end of October . I will introduce you an interesting article in the morning papers . I am watching ' Ponyo ' created by Miyazaki Hayao on TV . After lunch we strolled along asmall street . I became a member of `` Lang - 8 `` today . American Yahoo 's account I would strongly recommend that you go make an account too . Then , when I started an application `` S / W `` to make a design for cards , I noticed the address data or information was missing . the addresses again . But my cellphone did n't ring . Other contestants recited formal speeches , for example some presidents ' speeches . I thought my recitation was out of place but one of the professors said it was good because everyone knows the story . When I was a student at university , I climbed it two times . I 'm excited and feel a little uneasy . At the end , they played at Carnegie Hall . Thus I always wear contact lens In Japan , most high school students wear loafers to school . ( `` when they go `` is not necessary . ) This is the second time I write a diary . I can go anywhere I want . I could n't find any empty seats so next time I will come into the class earlier . I am fed up with arguing about problems . It is first time I have gone to the mexican restaurant . Sometimes , I dream of speaking english fluently . The lake water was glowing and shimmering . The graduation ceremony of our university takes place on March 17 . Each of our club students traditionally / usually write comments on a large graduation card to each student every year . Because we have common topics and talked very well before . I told them I would sign off soon . I 'm not good at electronic stuffs . . . so now I 'm fighting with them . I wish that all the world 's problems could be solved like children 's way of thinking , naive and simple . Today , I began Lang - 8 ! Little Amy was fearful . I worried about what should I write on here mainly . Exotic Zest Oh , I have a feeling no one gives them to her . . . My grade is not good enough at all . So I try to keep a close eye on the hall and the customers . So I could n't concentrate on the customers . My Vietnamese colleague asked me to go to a karaoke shop and I went to karaoke . So , I need to write jornal about this , and post ? other ? web site or make somefor notice it . Recent , I wrote on lang - 8 , but lang - 8 did n't receive it . That result worries me ! My husband and I went to a hot spring last weekend . Anyway I took the English conversation class yesterday and I was so dissappointed because I found thatI could no longer speak like I could when I was in Canada . and of course I have to answer them in English . If you found any mistakes or kinda correct but awkward expressions , please correct them . I hope I do n't commit errors , otherwise I will have to recover with your corrections . I 'm not sure how I can make this a sentence if I want to talk about this topic . I 'm attending school to be a jJapanese teacher for foreigners . So when I get the skill , I can teach anywhere in the world ! ! So , I can bite him from the tail , better than having had eaten him from the head . I almost lost my life , but at I last defeated any diffiy and caught my life again . I will visit the US next year so I need to know more about the US culture . It 's different from Japanese culture . I have n't experienced giving tips to a staff . The Korean woman who served him in the small restaurant was probably surprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . Unfortunately there is no chili papper Kimbap on the vast list of this restaurant though . He told me that the spa is becoming popular in the Filippines . I finished giving a Halloween lesson in my classroom even though Halloween has not happened yet . It was popular with the mothers , but the little kids did n't know what a sisiter was . Some students had thought she was a ghost so they felt like crying . There are 2 months left until this year is finished . It is never pleasing or proud to hear that the origin of your name came from an advertisement copy ! `` Whenever I call your name , I feel like my tongue rolls smoothly . I went to `` Dockland `` where there was a shopping centre . I loveher so much but I ca n't meet her in real life . But I could not do anything about it . I could n't believe it . Although I filed a complaint against him , I did n't feel good . When I get stressed , I will take a bath for a long time or I will watch a movie . I prefer comedy movies to action movies . It is fun to watch if there are unknown actors in the movie . I wonder what he means exactly . . . Second , I jogged 5 miles this morning and practised golfing in the driving range for 3 hours . The scenery was so beautiful and there were wonderful buildings in Disneysea . Because we were there from opening to closing time , my legs hurt . That night , we had a lot of fun talking . We had a really good time , even though we were tired . I remembered the theme song of Halloween . Because her birthday was coming soon , we gave her a dinner ticket for that night . It seems like the inside exposure 's damage can be lowered by taking iodine as it helps the body excrete harmful chemicals . but please do n't take this too seriously . I have loved a boyfriend until recently . Of course we feel a sense of alienation when we see foreigners at airports , other countries or our towns . Imagine if your country was a small island and if English is spoken in only your country ; it would be a big handicap for you guys . But of course they only spoke English while we were drinking , so I could not join the conversation . The cheaper price and the better quality are the characteristic of our center canteen . I like studying other languages because I can meet a lot of people and learn about the world ( ? ) . The things that happened last night did n't arise from the differences of our cultures but were personal matters , I think ; - ) But our American friends could n't understand her feelings ( of course , they did n't understand Japanese ) . I think it is natural that this happens and it is interesting to communicate with someone who is from a different country . Anyway , I am turning 20 this month . But I figured out the view of the town is so amazing ! ! twice , and been to 4 cities , Pheonix , Chicago , Washington . When I had some opportunities to speak in English , my Japanese supervisor was in the audience and said `` You said a water and forgot to add s to he want `` and so on after every one of my speeches . I became more nervous about doing speeches in front of him . hey guys , it 's my first time in here , I am so happy to know you guys to help me to learn English . In thinking about languages , I am always haunted by my enormously ambivalent emotions . Thanks a lot . His wife is a Japanese . One of my cool Japanese friend told me about this website . Fireflies . My favorite person , Kudo - san , is from Iwate . At my school , I have a Venuzuelan friend . Everything About Me : ) Especially on festivals and weekends , KTV is almost the premier gathering place for young people . So scary : - ( After we left the shop , we went to two other shops and only looked for something in the shops . By the way , I 'm going to Spain , France , and Italy next month . The reason why I spoke so loudly was that I wanted everyone to be able to hear me no matter which corner they were in . Anyway , I enjoyed it . Yesterday it was rainy , but I took them to the doctor . My daughter did n't like theENTdoc . She did n't sit still and cried , so I had to hold her whilethe doctor examinedher ears . They pester me to go outsideeven though I play with them , suggest new games , give them new DVDs , new snacks , and so on . I began studying English two months ago because I want to go abroad to study it . I hope I will have a permanent dream . I started this job in January . I have to communicate with customers and take care of them . I have confidence working with people , but selling is not just about communication . In fact , _ I am crying as I read his mail `` We had two visitors from Vietnam at my home . I watched the news yesterday and I heard that there are many people in the world affected by this influenza , and also there is one person who visited Mexico and guessed having this disease in our country , My daughter slept by my side ( last night ) . So , I always feel sleepy . . . I forgot the timetable was changed from usual day . Unfortunately , I was eating lunch in the park so I was 10 minutes late . I ` m not sleeping , because I am trying to translate my favorite songs . In the x - ray , he and the doctor could see one earring . Actually , I 'm pregnant and often have morning sickness , so I felt gloomy before the wedding . I hope I will be a top salesperson . I 'm great because I keep memorizing boring words . I 'd never played tennis before I took the class , but the coach teaches me how to play step - by - step , so I 'm getting better . LOVE AT FIRST SIGHT ( part 2 ) I think the theater will be crowded this weekend because of `` Avatar `` fever . I believe `` Avatar `` will reinvigorate me with its visual technology and emotional story . I 'm learning new information that I did n't know although I memorize that , I ca n't make use of it . The differences between America 's and Japan ' sabaut traffic rules When I came home , the game had just just finished . . . So , probably I will have internet there , too ! They are learning Japanease in uni , so they practice Japanease with me , and we Japanese exchange students practice English with them ! ! My name is Frank , and I am Chinese . I live in the Guangdong Province with my family . I graduated from the university 2 years ago . Since all the groups would probably be using Powerpoint , I went to the electronics store to buy it with no worries , My concern was the compatibility of the English software with my Japanese OS . There have very beautiful traditional Japanese gardens . But whenever I meet my friends , But I do n't have any complaints . I really enjoyed my home life because of my email ( ? ) friends . I do n't want to go out , I do n't want to cook , I do n't want to study . All of my friends will spend long 4 - days vacation in their hometown except for international students who can ` t go back their own country . They are not vegetarian . When I read about this website , I could n't believe that someone would help me and correct my mistakes for free . If anybody of you are interested in the history or geography of my country or city - please write to me - I will do my best to help you . That 's why I researched some local tours through the internet and some books . I sometimes teach students Japanese and Mathematics . My favourite articles are about the international life , design , and fashion . They throng to pub on Friday night to sing a song , play an instruments , and , of course , drink a beer . During summer quarter , I took an ESL ( an abbreviation of English as a Second Language ) class . The main activity of this circle is organizing what is called `` IW ( International Week ) `` . Let me explain , my university cooperates with foreign ones . I 'm sorry for long sentences . . . After that , we dated a few times and I was a little confused about our relationship . In chinese , relationship has a wider meaning than in English . Fortunately , his skill was not that good and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) He asked me do I know anyone who would go to Japan , and can buy Japanese cigarettes for him . I helped him to get the cigarettes so he should come to see me to take them . First let me introduce myself . Although I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an International college . Almost all of my teachers are foreigners . I am a college student and my major is informatics and communication . I want to learn English to study computer languages and technology . I look forward to seeing your correction . Actually I graduated from Seoul Women 's University about two years ago , but it 's near my house so I see it almost everyday . . Bahrom Education , teaches people to share and learn important things with others , like philosophy , etiquette , religion ( christianity ) and even the history of SWU . Classes include group discussions , performances or individual learning . After 30 minutes of walking , I felt tired . Although , I do n't really have to go to bed right now . I like a movie in which I discover and solve some mysteries with the main character , so I was unhappy with this movie . Actually , sometimes old eggs cause food poisoning like salmonella , I am pleased to meet you . Tomorrow and the day after I am going to visit Miyagi prefecture in Japan , where there was severe damage from the huge tsunami that happened in the last 11 March . I have had two jobs for two and half years . this is more natural . His act was illegal of course , but was it so serious a crime that investigation of his house was necessary ? Then , I happened to think , `` It 's unusual for me to eat bread for breakfast `` . It 's unusual in Japan , because there are rice cookers in all the houses in Japan . I bought my new Windows PC for mobile last Thursday . Yet weather forecast said it would be snowy today . We usually start to study English from junior high school as a part of compulsory education . But the native English teacher speaks fast instinctively . In Japan , it is very popular for girls wear them at a fireworks display . We did some sightseeing , had lunch , and bought seafood , such as crab and flatfish , there . So I keep on studying ! It 's just nothing else than a program which is displaying us the flashcards and making sure that we are learning them . You may also ask , ' what the hell are the flashcards ' ? I do n't even have the strength to go prepare myself tea . I have a bad headache recently , so I ca n't easily think in other languages . I want to be able to write fluently and quickly . . . Please teach me the meaning . I have to get my license by April , so I 'm learning how to drive . I 'd like to talk and debate with my kid ( child ) in English in the future . Sorry I ca n't write anymore cuz I 'm so fuckin ' sleepy right now . I worried about getting fat because I put sugar and milk in coffee . After graduating junior high school , I joined the Japan Air Self Defence Force . Today I had an appointment with my friend . I 've just finished writing my lyrics ! Please read ! I 'm going to go my friend 's wedding , and I 'll congrate her . It 's famous for it 's peaceful village atmosphere . I did n't even realize that the HALLS were making my stomach ache worse . To my sadness , villains certainly do exist in all societies . Recently , I am tired because of work . However I was able to understand her by watching her body language . . I got out of bed , and opened the curtains . I finally got a day off . I am a cook , but also a student in university . I still have lot of things to write but the things above can describe my feelings for Zidane . I have n't written in my journal for one month already . It 's delicious ! ! ! because you are a japanese , you can get huge income . But I think going on a trip on Christmas is a good idea , because you can enjoy illumination for Christmas in a place you have never been and also sight seeing . Yesterday , I read an article about `` Lang - 8 `` on the Internet . She also sometimes stays at school until 9 p . m . working on the project . If you say yes , you 're a person who likes adventure and lives now ! He hit his head on the ceiling hard and gave himself a concussion . HI I 'm an Italian girl , studying English in Melbourne . I studied in Pisa , but I 'm Calabrian . One of my friends called me this evening and told me one of my friends from high school was dead . It was difficult for me to accept the news even though she was not one of my close friends . However , I used to copy her homework before exams , and go to her house . We liked to sing songs and go shopping . I did n't think she would leave my life so soon like this . I am sad . My idea through my experiences is that work requiring brainpower ( like studying something ) in the morning is much more efficient and effective than in the evening , keeping away from sleep . I do n't want to stop challenging myself . Yestereve , I helped my friends write compositions until 3 am . So I 'm so tired today . Many people who can speak English fluently are introduced in the book . I was happy because I got him smiling ! Actually I 've been going with my girlfriend since my time as a student teacher . So I hesitated to go there , but today I decided to go because it is fine and cool day today . I 'm happy to have 3 friends on Skype . The island was so wonderful , and from that time , my dream has been to live in Hawaii in the future . I have decided to go on a working holiday in Australia . If you speak English and maybe interested in Russia , or the Russian language I guess you 'll have something to talk with me about . I 'm a college student in Japan , and I 'm going to go to Vnacouver this April . when you go to different countries , you will learn more about your own country than about the others . I 've been meeting Japanese learners through internet and they are very good at writing Japanese on text chats , even though they are very young . attend : I decided to attend the language school in Umeda . occupy : In this company women occupy 60 percant of the executive officerpositions . concentrate : I was scolded by the teacher and told to concentrate on the class . pursue : Humans have been pursuing the truth but only few people have found it . First , I want to take a city - tour bus in Seoul . It 's famous for a huge bamboo forest and a metasequoia road where metasequoia trees are planted along side of the road . I 'm learning English to communicate to foreign people . Please check my sentences and pick up on my mistakes I planted sweet potato last Sundy I also planted cucumber , eggplant , tomato , corn and watermelon . I 'm looking forward to a big harvest . Everything is nd beyond my imagination . That 'd be because , when I study by myself , I can proceed my own pace , and so I do n't need to wait for other amateur users that are less skilled than me . `` Pirates of the Carribean : On Stranger Tides `` was also exciting . Eventually , I stayed with my friend . I bought pasta , iced tea and a chicken and rice casserole . I want to study English by using this coool website ! Actually , I 'm not good at speaking or listening to English . So yeterday I looked fearfully at the scales . Also I am willing to reduce by diet The way America killed bin Laden does n't reflect the democratic face of America . The way they used instead reflects an undemocratic face of America . Oh , America if you call for respecting human rights and human dignity , why did you throw bin Laden ` s corpse in the sea as if he was an animal instead of a human being . It 's so expensive . Am I too serious ? Definitely yes > < is a good night I am on the computer , my family is asleep beacuse is late at night ! ! . . . We live near Zi Jing mountain . This is my first time on this site , I 'm excited ! I seem to have no talent for learning foreign languages . Today , I made some friends . ^ ^ Recently , learning English makes me very tired , but talking with friends in English is very fun and it makes me How do you spend the valentine 's day in your countries ? I will take the TOEFL test before long , so I am going to practice for the TOEFL Writing Test . First , we were divided into two teams . Of course , the team being questioned had to answer quickly ( too ) . I 've spent my time drinking with friends and watching American dramas . Today , I just found myself watching an America drama again ! ! I met some foreigners and many students who also want to practice their language skills . Sometimes some people asked me questions , but I did n't respond to all of the questions because I was n't sure what was said . I remember that I did n't speak any words expect `` sorry `` when I first came to here , what 's more , I did n't know any of their dailog , but I can ask some questions and can communicate with others in English in here . I have no friends to study English with here . We went to a library to study until 4 in the afternoon . Our heartbeat was the rhythm that made us connected , and we were dreaming together about this new life we 'd live . I 'm working as a cram school teacher and I 'm good at Japanese ^ ^ As interesting as these activities are , some people still regard Ghost Month as an unlucky month ; hence some people keep out of the water , some go to temples every day , and some are very wary of what they do and say Oh ~ My ~ God ! ! I 've made a dress for my daughter . I have made my daughter 's dress which is pale yellow because she wants to be a princess too . Their dance is very energetic and I think it would give others a power when they saw it . The two brothers are very vigorous and their mom says they have fights constantly with each other . We made an appointment to meet at a cafe near my house . We arrived at the cafe at the same time ; 10 minutes before our lesson was to begin . So I want to learn this very important information . Because I watched it a lot of times before . Recently the weather is so bad . According to the weather news , a typhoon caused this rain . ( the PlayStation3 has individual e - mail addresses ) [ remove the period ] So I was a little bit disappointed . About the mine accident in Chile At first , I _ was happy and impressesd by the news that all the miners have been rescued . After that , I felt a little strange . Why did Chile govornment agree to re - digging such a dangeorous mine without the appropriate research ? I believe learning languages is the same as learning another world . There were many beautiful , big , traditional buildings . All of the food was fantastic ! ! ! I wondered if I was a princess . It was I inconvenient , but I thought it was actually kind of funny . I have read another piece of news just now ; according to this , at least 51 people were confirmed dead due to `` Ondoy `` storms and 280000 displaced due to the flood . In the beginning , I was at a loss . 3 ) My another partner , who is an American - Born Chinese , told me that he was busy typing a menu for a restaurant . I had a bit of trouble when I attempted to sign up the forum . The song was used as background music for a documentary of The Olympic Games in Grenoble . Maybe I 'm still scared of the feeling of losing him , someone who was very precious to me . I got myTOEIC results . Sportsday is going to be held at my son 's preschool next week . Because I did not get up early . Please check my diary I also met new friends , a Japanese woman and a German man in Zurich . Yesterday , I had an English lesson where we talked about abortion using an article titled , `` Obama Lifts Ban on Abortion Funds . `` So , please talk with me on Skype . has taught me to stay whole . How I miss the days when I speak Cantonese and proudly take people speaking Mandarin as outsiders Yesterday , I bought a video game . There is only one cabinet competing so it 'll automatically win At the checkout , a cashier told me that `` this is for display , not for selling . `` Then , I had to go back to get another dish set . She had had no children but she had enjoyed her life with working , hobbies , and socializing . ( For Chinese factories , Christmas is n't a holiday ) They were very sweet and delicious . My first diary in English for you So I intend to write regularly . If possible , I want you to correct my diary and know about Japan or Japanese . I roast it with garlic and put added some basil sauce . Marina became a famous language teacher and her website hit more than 100 million . I 'm always wondering if my English is natural or not . I had tea with the participants after this class . I had a good time because we talked about systems of studying English . We decided to get a construction company repair them . I was stuck in the tube for 40 minutes and had to abandon the Picadilly line . I could n't understand why she chose that place . , and I didn ' t I want to become friends with those who are learning Japanese . its been a long time since I spoke english , because I 'm studying japanese in dalian , the beautiful city in northeast china . there are many interesting things and delicious food in my homeland , especially hot food , pandas , and lots of good indie music . Yesterday I started PickupPhone study . So , I think we should keep and preserve our old buildings because of our culture and historical legacy . It 's a big decision and quite a challenge for me . Now I 'm worrying about homestay I am always looking at my co - workers and following in their footsteps . Brown is my natural color ; my mother 's hair is the same color , too . `` No , I have n't ! It 's natural , honestly ! `` Each time I got a scolding , I grew more tired of it . I hardly understood what my teachers said during my online English lesson . Freedom ! On hot days , I need a handkerchief because I 'm very sensitive to heat . Tonight , I drank a little alcohol with my co - worker near our office . Today , we changed the world . According to my Singaporean friends , in Singapore , a flight attendant is a not high standard job at all . For Singaporeans , flight attendants are just servants or something . And we promised to help each other with our language learning . Now I can write in my diary in English , on my PC . For instance , `` I graduated from Waseda university ( it is the very famous Japanese university ) `` `` I studied hard , for theentry examinations `` `` I did not study that much when I was a student `` ( But this guy graduated from a famous Japanese university ) . We were looking forward to having a special dinner at your restaurant . Recently , I was surprised by the financial results of a certain company . This weekend , I will play football , as / because I am looking forward to participate in a soccer festival . Recently , I 've been interested in diet , learning English , the Internet , and shopping . I am studying at the Tokyo Institute of Technology . ( another option ) Im tired because writing in English is very difficult for me . . . There is fireworks display today . But the whether takes a turn for the worst . Sometimes , foreign customers come at KFC . Finally , should I say anything ? Because I often think `` I want to some sweet coffee ! `` complain : I complained to my teacher about the scope of the test . hate : I hate insects , particularly cockroaches . despise : I despise people who think money is everything . worry : You do n't have to worry about your health , you 're healthy enough . I felt very comfortable . I booked the tickets for the 9o ' clock ferry the previous day , so I left our home early so I would not miss it . I asked strangers if there were another way I could get there , furthermore I ran at both the platform and the road , finally I reached the ferry station almost too late . I could n't climb the stairway to the crown because it was already fully booked into next September . But I spent much time there , and I learned more of the history of America than I knew before . A lot of celebrities have gone there . I said , `` What a beautiful view . `` but I could n't find any difference between religion people and non religious people . . , I was so surprised that some developing countries donated relief and condolence money . So , I 've been eating a powdery fermentation cabbage ( It 's a powdery TSUKEMONO ) for 2 weeks . I 've been here for one and half years . But unfortunately , as well as no interview , there was no reply for my application . thanks for your comments on my previous journal . I want to compare the two great religions as there are many differences between them . . . however , after many years becoming an apprentice , he found it difficult to lose his worldly desires and he decided to leave his master . I sometimes watch METAL GEAR SOLID 4 videos on youtube these days . which may be difficult for foreigners to understand . Soccer ? Football ? The American soccer team is also very strong . Some people were hoeing and fertilizing the soil and some were watering their plots . Last time I put a mark on the juice 's label , and I looked at this mark and thought that they drank at least 400ml . If you want to know about Korea , please contact me . the lady uses a marker to mark two dots on my ear , and then ( she ) just uses the piercing gun to poke two holes . although it looks like it 's very painfull , I just feel a little bit itchy . thanks to alicia for acompaning me to the piercing shop . In1803 , Thomas Jefferson , the 3rd president , purchased the great wild west for about $ 15 million from France because it doubled America 's land mass and would provide rich natural resouces as well as great farmland . Maybe it seems like no big deal to most of you , but since I 'm now studying in Japan , ( and the Japanese are so difficult to understand ) , I must be careful about everything I do . At the end of each semester , the teacher asks us to write something about the lectures : advice , suggestions or even just some opinions . It may not look very strange in English , but I am really not sure if it sounds like a compliment ( in Japanese ) to the Japanese teacher , who really did do a good job . Some people think that the death penalty is the best way to punish murderers . Survivors must want murderers to live so they can reflect on their cruel actions . I am going to go Beijing to present my research results in English before the end of November . The title of the book is `` How to Walk in the World `` . I recommend you to have the book ; however , do not read it all , because if you know everything about the trip , the trip becomes less interesting . Anyway , Washington will be rainy or snowy . . . . . Today , I 'm going to watch an American movie to help me learn ( study ) English . The genre that I want to watch is either ' melodrama ' or ' comedy ' . and , I did drank vanilla latte at Java city Coffee I love coffee ~ very very much I 've just found this lang - 8 place today and registered right now . Actually , I was worried about this thing . so when I knew that it was not my mistake , I was relieved , at the same time , I am now aware to be very careful not to do that again . To find the best friend is very difficult . A lot of people don ` t have friends , and me too / and neither do I . Children like to play pranks on people on this day . In other words , It had become a piece of garbage . There are many things affecting the world like air pollution , climate change , environmental pollution , the destruction of the ozone layer , and the clearing of the forests . . . . . And every year we suffer many natural disasters like earthquakes , hurricanes , floods , volcanic eruptions , and tsunamis . And they unfortunately kill millions of people . Mastering Natural Expression Recently I met with a friend who is living and working in Vancouver . Why did I have an interest in America ? And also , I felt like I came to a different country like a resort : ) haha By the way , it 's difficult for me to figure out the differnce when I use the same verb but with different prepositions . Because he appears to have been on bad terms with the executives like the front staff , owner and so on for the last few years . I work with free medical insurance . If a person 's income is low , they can qualify for free insurance . It includes coverage for medical prescriptions , dental , vision and emergency care . I realized that even if people live in different countries , they learnthe same important things . It is liquid and it contains necessary nutrition . I am sad that I do n't have a lot of sophisticated ( sp ) writing skills . Tomorrow , I 'm going to practice drums and English ! Study ! ! I 'll study English a little by little . . . I pre - orderd a concert ticket for a front row seat . I 'll go to the mountain regularly every morning ! I 'm a Brazilian , I 've studying English for 3 years and I just noticed that my English is not as good as I thought . Whether or not we have a lover in the future , we 'll still support and encourage each other . And , bilingual people usually say that you should reject Japanese when you 're learning English . So , if you meet an incomprehensible word , you should search in an English - English dictionary . But , I ca n't write or speak English without using a Japanese - English dictionary . Learning a foreign language is hard . It has a very comfortable room , gim area , and spa . In villages , farmers are very poor . They need clear water and livestock . But if some factories just emit dirty water , its not good for people 's health . My country needs to care more of its people 's welfare , and not focus only on good things . Of course , if you tweet in English , follow me , and I will be more than willing to follow you too . : ) Rumor has it that the first year of college is the most comfortable one , but somehow , I think I was cheated . I have strange habit of going to Odawara castle every day . I take the first or second Tokaido train from Hiratsuka . Recently another person took the place of our president , so his prediction was n't realized . It 's located in Kyushu . I should study harder . The lecturer gave those attending the task of discussing the government 's new policy that English classes should be taken by native English - language speakers only . He arranged us into small groups , so that I ended up talking to two people who are English - language teachers . I heard that in Finland there are no textbooks , so I was so curious to learn how the Finns could be so sucessful without textbooks . The students in my class are clearly bored and I too find the learning experience unenjoyable . Especially when the stories in the textbook are so dull . Would n't it be better , in such a case , to have no textbooks at all ? They 're farmers . Currently they preparing for planting rice . The price in the restaurant is fivefold more expensive than general Taiwanese diners . Yesterday , I felt sick because I got drunk . Suddenly , I realized that I had been a college student at that moment , and I would start a new stage in my life . I went to the library after the test . I 'll go to Okinawa this coming Sunday with my school friends . But , because I 'm shy it was so difficult to make friends there . . . I managed to talk with some people . my listening and speaking skills are not good . . we have learned only grammar or reading . . . I 've been writing very simple sentences , but it takes a long time for me to make them 'cause I 'm not used to doing it . The tomato jolted in the basket , it makes made tomato juice . Sometimes customers scold me . I have a friend who lives in Hawaii . After that , he went to Hawaii . He has lived in Hawaii for 9 years . The question is whether we should eliminate the one child policy . I always regard her as my anti , although she is Vietnamese . Indeed , why do I learn the languages , if I have no one to communicate with it ? I 'm fond of music , espesualy , of Folk - music . I 'm Japanese but I feel that I must learn the Japanese language even more . He has to stay at home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guilty and I really miss him : < Where is the sunshine going ? Of course , I am really happy that we realized that we loved each other though . Yesterday , we had a translating class and it was exciting for us . In the class , we learnd how to translate texts from English into Vietnamese and vice versa . So far , when I read something in English , I can understand them if they are on the fields that we have been touched . So if I am not good at my own language , it will be even more difficult for me to be good at other languages . long time boarding is very tough for me , but I had to take a bus after arriving in Tokyo to go to my hometown , Sendai . We are planning to meet sometime , as we are living in different places . As you know , we have a new president , government , and a new coalition . Since 7 people are using my stuff , the roll of paper towels is diminishing fast . so I was jittery when we could n't park there . Besides I 've been expecting a package and letter from another place in Japan which has been delayed TRY - WORKS conducted questionnaires on the web and the street to ask girls about which character was the cutest . They were sold at game arcades as a prize , and Kapibara - san became the most popular character of all the prototypes . He became a big hit among girls , and he has kept his popularity ever since . I am currently studying at Gifu National College of Technology . My favorite sport is snow board . She ` s sooo cute , especially when she makes Homer chew on her pacifier by force . A patient came into my clinic 3 minutes before consultation hours ended . But nobody commented on my diary . They 're very nice but later , my legs ached . This holiday has many days together . I enjoy staying at home with my family . He loves Disney , so I wanted to send a Disney one . However I could n't find one . It was my first time going to a job interview in English . I 'm wondering if the sentences below have any differences . I studied English at school , but I never did learn it . I finished my bachelor 's at the beginning of the year . I almost forgot all the words and grammar . Just because they are so yummy , they become others ' prey including ours . Suddenly I felt sad about quitting this job . The author of this book is genious or god indeed . Since I was brought up in a poor family , living without worrying about money has been very important for me . We gossiped about our boring routines and talked about some interesting things , like the Casino . I 've wanted to have as many friends as possible worldwide , because I believe being friends with them broadens my sense of view by sharing our opinion about things ! Because of this , when we went out last weekend , I kind of got lost in Harajyuku and believe it or not , he led me to the right direction . When I came back home and opened it , I just went insane . . I decided to make a plan in order not to waste the time left . So I would like to keep writing and speaking English . My grandmother gin to has started going senile . I have finished ( watching ) Gossip Girl season 1 on DVD . Since yesterday , I began to study English by myself ! First , I read and recite words . At first I did n't know the cause of this riot , as Japanese TV station did n't report the details . Today , I saw my psychiatrist because of my depression disease . So unfortunately , my depression disease is getting worse , . first diary I 'm so happy , even though it was expensive . But I thought the tiger one was cuter than the lion one , so I chose the tiger . My address is on my profile . They do n't like me because I was put in charge of an important project and I 'm much younger than them . She was my friend when I was in elementary school . I saw `` The Blind Side `` yesterday . I 've been eagerly expecting this parcel from my parents . These days the temperature is always 25 to 35 degrees . I 'm learning conversational English through the Internet . Althought it is a site that focusses on children ( the books are divided in three categories : from three to six year old children , from six to ten , and from ten to thirteen years old ) , there are many different types of books and in many different sizes , so I think it is a good way ( for us ) to increase our vocabulary in a second language . [ too long ] Alice runs after the rabbit and disappears after it , into a hole in her backyard . Unlike foreigner , people like going to the beach , having picnic or outdoor activities . All in all , I think that both inventions are good but the Internet has more advantages . If I eat an ice cream every time I feel it 's hot , I might gain some weight : ' ) is really bad especially writing T _ T I 'm trying to talk English and listening to English every day . The title was `` Science Allergy `` We Asians performed a play ( or skit ) . To tell you the truth , I did n't really perform . At lunch time , I was talking with a manager . Anyway , I recommend that you should watch this movie ! First diary I am a beginner . The people who will attend Zufar 's class are better than I am , and I think I think one person only has one life , we should cherish our life , and live happily . I saw a movie which is called Harry potter . Today was the last day of my course and I received a certificate . They are famous in Osaka , where I was originally from . I have always been a girl who really likes to smile . ( There are two types of Zorb . In one , you can grab the handles inside the compartment or you 're fixed with your arms and feet and there 's no water . In the other , the `` hydro zorb `` , there are three or four buckets of water in the compartment . But , sometimes I am dying to eat a lot of junk food like pizza , chips , and burgers . Yesterday I picked some . As long as I am writing this , I suppose that I have to withstand biases ( or comments ) from other people . Today , I 'm going to write about yesterday . I always eat food carefully and with gratitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very popular in Japan . I feel this way strongly , especially when I feel insecure , like when I walk alone at night . As soon as I realized that I was being chased , he grabbed my neck and choked it until I passed out . But in 30 minutes ' time / But 30 minutes later , I was almost dying in the river . She 's a golden - retriever that is very pretty , cute , and clever . Moreover , I did n't take charge of the register today . I 'm studying English and Spanish . Now I 'm considering applying for the Fashion Designing Course at the Central Saint Martins in London . By the way , I have been interested in Spanish since before I entered my high school . It 's nice , because it was made so that we can learn it in 30 days ! But I do n't believe it , because I can not speak English very well even though I have studied it for long time X ( Despite a strictJapanese society , I feel happy whenever I have dinner with my family . We should n't label it right or wrong , but explore it in depth . There was a terrible typhoon . Hello , everyone . I 'm a new member of the lang - 8 community , I find that this is a very interesting site . I 'm not restricted to only learning English , but I can learn Korean or Japanese as well . He is a very powerful man . When I was little , I watched the Gundam series as well , but even women and young boys died easilyin each episode . I finally stopped watching halfway because of depression lol In order to save money I decided to ask my parents for some books I 've wanted to read for a long time . ( I 'm also a little chubby ; that 's another reason why I would rather read a book than eat chocolate . . . ) : D Yesterday I bought them . In many cases , which is even more disappointing , typhoons cause landslides on weekends , just screwing up our nice Sunday . I felt that they deliberately come on weekends . In recent days I feel good to drink hot green tea , some interesting things . Learning English alone makes me feel that English is so hard . I answered my boss , I 'm your `` right elbow `` or rather `` right arm `` . Last time , I mentioned my undergraduate days . Actually , the women 's college from which I graduated is in Kyoto . It is a pretty historical and mysterious place . I have heard that Kyoto 's central city is being protected by a magic square . In the Heian era , a noble women who was very jealous I arrived in Canada in april . Other sources say that children who have imaginary friends may have advantages in terms of language ability and other intellectual functions . I suppose that this is a difficult problem . In winter holiday two big events are celebrated , Christmas and happy new year . I ca n't drink alcohol . My friend and I decided to launch a project called ' getting a boyfriend . ' When we 're in front of the restaurant , we 'll pick one guy a week . `` The workers in Google doing the smallest developments have a doctorate . `` If I had n't found out about this method , I would n't have I hope Lang - 8 helps me improve my writing . But in September , I will go travelling to `` The Hakone `` with my girl friend Fujiko . The friends gave her earrings and FORCED to have her ears pierced . ( It looked painful , so I could n't see her get it . ) and I made her choose as to what she would receive . In my hard times of adaptation to a strange place , they will be a kind of energy for me ! I think it might have been anaemia or an epilepsy attack - I think it sounds better now : D My mother just listened to my opinion and encouraged me . Tonight , I attended the public speaking club I joined last winter . There are many kinds of people in the club / Many kinds of people enrol in the club . There are business people , college students , foreign residents , retired people , house wives , etc , , , , , , , ( but I will not be a blackberry or Mac pc user . There 's no water , no electricity , no gas , or no food . Okay ! I can cherish a teachers relationship with students no matter what . At New Year 's Eve , many Japanese prepared for a good New Year . By day we prepare New Year 's dish , general cleaning of the house and write New Year 's postcards . Today , I went to a fruit market and ate some durians today . The first picture is the ancient tomb of Umako Sogano , the most powerful minister in Japan at that time . So I went to the supermarket in this morning . But I 'm a little nervous becouse of my poor communication skills of English . My job is a project manager for developing web sites . This is my first trip since I got my job , and every month I save a lot of money in the bank . I want to say `` thank you `` to my lang - 8 friends , thanks for your help ! ! ! At midday / In the mid - afternoon of August 4th , one of my new colleagues and I came to the company to report together . On Monday August 8 , at about 10 : 10 am , we got on the company bus that was waiting for us near our apartment and headed to work . How beautiful the sky was ! It is a popular sport which has spread to every corner in China so much so that we now call it the national ball game ! Thank you very much for improving my sentences . & nbsp ; I really appreciate everyone 's help . When most Japanese people speak to someone who is older or whom they are meeting first , they usually use honorifics . My First Diary However our company ( probably all companies in Japan ) is very nervous about the flu and gave employees an instruction note if we have symptoms of the flu . Do n't go directly to a hospital or clinic . `` Doc , I know I 'm OK , but I have to see a doctor due to company regulation . I saw a foreigner who imitated DRAGONBALLs character Gokuu . I like Roppongi , but I do n't have many opportunities to go there . It was slightly rude of him , was n't it ? I 'd like to watch some TV programs but . . . You can find a lot of churches , temples , mosques and indian temples . Malacca is a historical place where it was colonized by the Portuguese . It is famous for its cable car traveling the fastest speed in the world and is the longest in asia . And the theme park is fascinating with its roller coaster . And when I arrived at the library , I noticed that on Sundays this library does n't open ! ! To make him interested in the Korean language ? After that I went to Chofu where my friend lives . Maybe it 's because of the differences between our cultures . . . . ? ? The latter part of golden week , it rained . By the way , are there long vacations like golden week in other countries ? Today I went cycling to keep healthy . I bought it at Takashimaya . But I do n't usually do farmwork , so I was exhausted . I was finally able to come to the site a few minute ago . So , my friends and I would go dressed up with a cosplay ( costume play ) to the events celebrated in Madrid for comics , manga / anime or Japanese culture . It 's raining heavily in Nigata and Fukushima prefectures . Those prefectures are raining so heavily that an evacuation order was put out by the government . And about four hundred thousand of Nigata 's people have been evacuated to a safer area . Shopko is one of the biggest shopping centers in Wisconsin where I am living right now to study English . After I walked 30 minutes , I had the worst thirst I have ever had . I decided to buy juice in the Hopko instead of from the old vending machine . Au pair is famous in Europe , but does n't seem to be in America . If anybody does n't mind talking with me , could you help and advise me ? As I have shown , art festivals are strongly dependent on local people and contribute to stimulating regional economies . From now on , try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs all around you . But I 'll upload entries at my own pace from now on because I 'm satisfied with this . I got bored with that . Although I konw my new school , I have many worries , but I think I will study hard . BUT my parents do n't always agree with me . The Asahi Beer Company should appreciate the fortunate coincidence , should n't they ? I try to talk with foreign people often . I am happy if we do n't have snow in winter because I do n't have to shovel snow . ( It is tough work ) But it means the earth is getting warmer and warmer . . . . When we entered an Okonomiyaki restaurant , we were showen to the seat in front of the big window . ( shouwed to the ? ? ) We could see the Doutonbori river from there . I had not aware of this profession , but as I looked back on my life , that maybe influenced me . When I was in Ireland , I was in TV add for Smirnoff Ice in 2002 . The first reason is : I ca n't come up with the next word to say quickly . And my mum raised me . Mom passed away in 2001 and her room is now quiet and empty . My class teacher is a foreigner . I want a relationship with american people . We are working hard to fix this problem . Recently , many people have been visiting this area . First , I saw it in English with no subtitle . Recently , I read ' Norwegian Wood ' by Haruki Murakami . My home and car is covered with snow and the landscape is beautiful . Actually we did not yet know what we would buy . But I know she like to cook and read books . Everyday , I have to do a lot of experiments and research , so I have no time to do what I want . Dear friends ! We ate lots of chicken ^ - ^ It 's raining hard outside . I like the landscape after the rainy days . I like it , it draws a smile on my face and it often makes me think of many things . Should I put off some tasks to complete the following day ? All present politicians should watch it . Seita is hero of this story . His father was an officer of the Japanese navy ; therefore , his father was not in his house but on the battlefield . ( I guess his father had already died in the war but his family did n't know yet . ) He had a mother and little sister , whose name is Setsuko . When his family tried to escape from bombing , his mother got involved in the explosions . Seita 's house was completely destroyed as well by the bombing . Many Japanese people who were in right screen completely forgot these historical facts , and they enjoyed their luxury and busy lives in a big city . I 'm studying English , and Recently I happened to find that itunes has many internet radio station channels in its menu . The itunes list of internet radio is good , and almost all of stations are now in service , so I can hear lots of different music genres . ( Futon is on my bed . ) I usually sit on the floor and use the PC but it 's uncomfortable , so I decided to buy them . I should have separated them into two parts , and cooked them twice . . . I mix it into tomato sauce or curry sauce as a hidden ingredient for extra flavor . Can you tell me what this sentence means ? She decided to take the seashells which she found home . But they gave me portraits with a message . Although the price of a plane ticket is not as expensive as tickets to other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of getting a visa is complex . There are a lot of kinds , such as : yolk mooncake , ham mooncake , moon cake with meat etc . The Mid - Autumn Festival is a time for family . I do n't think all Singaporeans are lazy . There are many kinds of food like seafood , meal and vegetables . Dealing with hectic schedule Today , I went to a book shop in Shinjuku . Octopus is a sacred living thing , is n't it ? Hi all , I 'm Midory from Hokkaido , the northeasternmost island of Japan . It is a good time to visit overseas because of the high - valued yen , but the oil surcharges are still expensive ! The hero , who names Luffy , fights an enemy every week . : ) On the way home , I got caught in the rain . . I often see it . so I asked my mother where the cat gone ? My mother answered me that the small cat was dead . I bought jasmine tealeaf at department store in Kobe a month ago . I ca n't leave it so its gon na cause me to gain weight . . . He and his friends made cupcakes at the night because of white day . I love a Techno music . I heard that nowadays sake is more popular in foreign countries than in Japan . A Japanese company announced that they will use English as the official language in their offices . But she said in a shopping center ( COSTCO ) in the neighborhood , two people were killed because of the collapse of it 's parking . I 'm planning to play baseball but it 's rainy . Maybe you have to write a long and boring essay , maybe you have to find a job , maybe you are suffering from a disease , maybe you just lost all your money . . . On Girls ' Day , Japanese set up beautiful Japanese dolls . But the dolls which , we call Hina dolls , are very expensive I want to write [ my introduction ] again . One day I told a story about the `` Gorgon `` . She felt very afraid . However , she painted a picture on a piece of paper and put the paper in her pocket . I 'm going to university to attend classes . Yeah ! I passed the quality test today . The difference between them is the long tour permits you to go inside . And we should do something we can do easily , for example , to send some food to the areas with a food shortage . In places which do n't grow crops , it may be difficult to increase crops even if they can use technology from developed countries . But also I think that having a relationship while being young have bad effects . I can speak it a little , and gradually getting worse these days because there are fewer opportunities to talk with English speaking people . Whatever happens , I will never quit studying English . ( At this time , she was eating a rice ball with seaweed . ) Then I went to the library to study my major , and I always sweat in this season . Then , our topic shifted to onomatopoeia ( This means imitative sounds like bark etc ) . That English school sometimes holds some events , like a picnic . tempt : Advertisements exist in order to tempt customers to buy their products . conceal : He did n't try to conceal his scandal , but instead , he apologized to everyone . decline : He decided to decline the offer from the IT company . I start working in my office in the morning , but I have to work till late at night . On september I am thinking about going to Victoria , BC . I am an easy going girl , and I ` d like to having many friends ! ! I am very confused about using grammar and the sentences I wrote . I 'm going read a draft ; please check my gammar and pronunciation . Hello , My name is seohyun and I 'm second grade . second , I have to study about hair - style . I also made hairstyles to my friends or dolls . I want to buy something that 's not so expensive but is very useful . Maybe this town is also a very famous place to visit among foreign tourists . Nowadays , Akihabara is becoming diverse , and there are a lot of shops featuring anime goods . Japanese anime is expanding in overseas markets , and many foreigners know ( about ) Japanese anime . I will write ( about ) it sometime soon . After that , we played second game . Since 11th March , they had taken shelter from aftershocks and radiation . I want to get into university , but also I want to go abroad to America , so I will have to go to university 5 years . Today , I am / I 'm going to an English club , because I really want to study English . Yesterday I bought new shoes for jogging . Three years ago I was a menber of the fitness gym , but I resigned because of my busy job . However too many people are here just looking for someone who speaks Japanese . I did n't play video games for many years because you know , studying , working and reading . I recommend to you FF X . I recommend : www . My grand - father made a liveing by raising chickens and a calf . It tasted different to Japanese beers . Today is the general election which looks set to bring a historic change of government . The Liberal Democratic Party has governed for over 50 years . Please introduce yourself . Thank [ space ] you for reading : ) Is this my reductant reaction ? I am taking an oral examination in five theological subjects this week . The subjects are the old testament , the new testament , church history , systematical theology and practical theology . Most Japanese people are not good at speaking English , because we only study English grammar when we are students in Japan . Yesterday Jei taught me one rule of grammar in English . As the motion of their gestures are too large and radical , it 's easy to hit me , especially when I stand by them too closely . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a response to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these consumers are really smart . . My winter holiday has already begun , in my opinion . I want to read some English magazines or newspapers for improving my English during this holiday , but I do n't know what I should read . I hope to get some advice from here . I 'm expecting to have a good improvement when the holiday comes near to end . Japanese are only spoken in Japan , so when we go to other countries , we will feel loneliness . I want to ask English speakers `` Do you feel a sense of closeness to people from English speaking countries ? `` At least , it does n't seem as hard to get good grades in university as it is to get them in ( senior ) high school , because I only need to take some subjects I 'm interested in . Recently in Japan , there has been a demand to save electricity . Because in China people always learn languages from books , so there is no chance to speak them . I also like Japanese , because I like to watch Japanese cartoons . I watched a baseball game in the Nagoyadome yesterday . A lot of people have asked me what restaurants I would recommend in Kamakura . ( Indirect question . ) What I had was various sashimi ( raw seafood ) : tuna , salmon , horse mackerel , scallop and salmon roe . I heard that people who have experienced study abroad need a score of more than 800 to prove their ability based on their experience . The business career exam is coming soon The business career exam for logistics is coming soon , but I still have n't prepared enough for it . While hearing the quiet , slow tempo music , and calm voice of the instructor , I stretched my body . A nieghbour 's help can be the fastest . The shop was proud of various high quality , imported products There were many customers who came from other countries , looking for ingredients to make meals from their homeland ( I would often be asked by Australians - `` Where 's the VEGIMITE ? `` ) . It was really traditional , so just few people ( family or relatives of the bride and groom ) can go to inside the Jinja during the ceremony . Please , correct and comment my blog . A lot ofpeople who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese people are kind . : P In my school days , boys competed against boys , and girls against girls , but in my daughter 's school , they did n't divide the boys and girls . Recently , I think about that everyday . However , I could n't write them because of my English . Because my train leaves at 7 : 30 AM . An agent named Smith found these pictures of President Clinton and Ms . Lewinsky . My final goal is not to be a permanent resident in Australia , but I was planning to obtain a permanent visa to accomplish my goal . Then I found a recipe in internet blog and started making a pizza . Aritayaki is pottery from the Kyushu region . I could not answer him clearly . . . I went to Seoul for a long time . So he called every animal with `` mung - mung . `` It was especially a great performance from the trainer riding the dolphin . After the show , we ate lunch on a mat in the forest and it was more delicious than eating in at home . It is a cloudy today but the temperature is not too warm and the weather is comfortable and I 'm looking forward to the start of the school year . Although It is hard , I 'd like to study English . and I believe it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achieve my goal . As I went shopping , suddenly my shoes broke . When I 'm writing my diary , I 'm not certain on the tense of the verb . When I speak with a foreigner , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I think I should be able to learn from you Though Asakusa was crowded with many sightseers , according to my friend , there were fewer foreign sightseers compared to before the earthquake had occurred . V - day is the only day when girls declare their love to boys . Before the test I always feel pressure . My husband is Indian and he commenced running a small guest house in Rishikesh from this April . It is fomous place for yoga , meditation , the Ganges River , and the ashram where the Beatles visited once . Yesterday , my family and I went to Ganghwa - Do . It was a beautiful place . It was surprise , too . That 's what the parents of Harry died from ! Tomorrow I have an exam in mathematical statistics . It was slippery and dangerous . He taught me that dreams can definitely come true if I do n't give up . In Japan , most people start working as regular employees immediately after their bachelor degree . Waking up early makes me feel more tired and frustrated . Hello , I am feeling very good . I like English , but I am not very good at English as you can see . Help me write in english ! `` I 'm fine ! `` `` I 'm good ! `` and , `` I 'm OK ! `` What 's the difference between these three sentences ? It is approx . 10 feet tall . I took my motorbike and drove to the dog market , where they sell pets . I agreed and sat down , waiting for him . Hello , Lang - 8 users First I write some words in English , drink cup of coffee , and read my e - mails . What is the best method for learning new words ? It 's too difficult for me not only because of the grammar but also because of the words . So we could n't go anywhere else . I do n't have confidence in whether native speakers can understand my English . I 'll attend some meetings and an exhibition of the heating , air condition and ventilation industy in Las vegas . ' Poets are not so scrupulous as you are . But I like going back to school , because I can be together with my girlfriend and play with my friends . I 'm studying English right now and hope to acquire skills to speak fluently with native English speakers . Philosophical issues , religious issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . Today , I went to the police station to get a new driver 's license . If they find one of participants to be good , they exchange phone numbers and they will be friends or boyfriend / girlfriend . ( There will be ) my friend , a friend of my friend and Iso men 's team had three people as well as women 's team . We enjoyed the party and had a lot of conversation . We play roles of yakuza , Japanese gangsters , of Kyushu district , southwest Japan . After some time we separated , promising to meet again . But some say that the government and electric power company are trying to I am learning English . I 'm espically instresed in learning spoken English . I am a postgraduate major in computer siences , and I am instersted in network security and DB . I welcome more friend exchanges . I 'd appreciate it if you read and fix these sentences . I think that these toys may be good for people who are not allowed to have real pet hamsters , or for those who love hamsters but are too lazy to take care of them . In Japanese , this is called ' toilet training ' I prepared all of the tickets but not completely . I was confused because I heard it just before boarding the airplane and I was arriving in Bergen at 11pm the hotel would be closed . I looked around in the airplane . We talked about why I was staying at their house and they recommended some good places to see in Bergen . Could you change this paragraph into something more ' speech ' like ? or if you do n't have enough time , just correcting is of course very welcome . By the way , I think I am quite a strange person because I feel excited when I hear the wind screaming , or just maybe because I just drank a cup of coffee , which always makes me excited . You are ( were ) my friend and I always believed you . Why did you have to lie to me ? I commute by train every day . In the evening , I catch the 8 to 10pm train . I often read books on the train . My friend recommended Korean movies to me . Some geographers say `` There are no places where we have not explored on the earth . `` I say this because only little girls are heroines in his works except for in this work . ) Nobody believed in the testimony of his father , except for his son Pazu . The girl who slowly came down from the sky , whose name is `` Sheeta `` , had the magic stone ; she was pursued by the army and she had a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheeta . I 'm going to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . In Tennoji , we were spoken to by drunken men . Could you give me some advice to learn technical writing ? Also I like green tea candy and azuki bean flavored candy . I was waiting for the powder snow because I really like go snowboarding , but it seems there is little chance for it this year ! Does speaking only improve your / ones speaking skill ? Please recommend : ) Unfortunately , I might lose the draw as I anticipated . . . I was born in Ooita prefeture which belongs to Kyusyu area in Japan . Also of course for talking with foreigners on the phone in English . Some of my favourite locations include Lubuk Sembilang , Kisap , Telaga Tujuh , and Datai . The first dream you have on the first of January is important here in Japan . Unfortunately , I had a bad dream . You 've screwed up everything , you know ! `` I could n't understand what he was shouting and I was just petrified . Last English lesson , the instructor told me about this site . My head itches ! This is my ninth entry . I 'm writing a manual for the installation , maintenance or conversion of these machines . Yesterday I set up a Christmas tree . when my daughters were very young , I felt the tree was too big , Because my daughters can do it themselves . But I decided to keep setting up our Christmas tree every year if they go out in the future . But when I went to university , I knew that English would be very important for my future career . I can tell my opinion in simple words , write ( with mistakes , of course ) and understand other people when they do n't speak too fast . First , we are reading a book about stock for beginners . PS : Rewriting or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too young , but I want to learn English very much ! ! ! Lately I feel very , very bored and upset when I have to study . I dont know what is wrong , but it 's just boring ! The difference between `` journal `` and `` diary `` The car exhaust messed up my laundry . . . And I love him playing the violin ^ ^ Tomo - chan `` wears `` the laundry basket like a backpack , and says , `` I 'm a turtle . `` I always go there by car with my husband . Buying groceries for 7days , the luggage is very heavy . On the way home , It 's difficult to control the bike because of the heavy laggege . In Japan , there are many delicious foods , such as sushi or tempura , but I do n't know any American foods . My daughter always wears a one piece dress . In my opinion , you are already so busy studying and working , you wo n't have time for a dog . You should give this matter ( some ) ( serious ) consideration . Recently , electronics technology has improved so much that it is common for people to have a mobile computer such as a notebook PC or a cell phone . Afterwards , I listened to it many times while studying . That song supported and inspired me while I was striving to pass the exam . I 'm determined not to sell the CD I bought because all the songs remind me of my `` golden `` time . Only unmarried women can wear a Furisode on ceremonial occasions . I think they have strong motivation for working and learning but they have no self confidence , so they can not try to deal with a new environment . They need to find enough power that they could continue to the future even after they failed once . Now my wife is preparing herself by make up and winding her hair . I 'm from China . Have you used an air conditioner yet ? Anything I read teaches me something : new and different ideas , to understand and know how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I have already taken the circuit analysis exam Even my professor , who is a `` sister `` from America told us about this situation in class before . Taiwanese are xenomaniacs . Are Taiwanese really xenomaniacs ? That sounds not too hard , I would just translate my original report from Chinese to English . . Please give me some positive words to encourage me ~ I will be full of energy ! ! ! I need help to correct my sentences . Een hartverwarmende video ( in het Japans ) Of course it is very important and I never considered not attending the party itself . I was watching TV , so I slept in my living room without covering my body with my bedding . That is why I caught a cold . There is nothing but rice fields in my hometown , but I feel lonely when I think about He knew it was ridiculous to do something like that without realizing that everyone could see , and was n't so proud anymore . So , I go on business trips often . shut down all nuclear power plants ? As far as the Fukushima nuclear power plant is concerned , it had been operating for My first diary I will go to the park near my house to play catch with my boyfriend . Next term , I will be very busy , I have to prepare for the TEM8 and post graduate examination . But I am confused because I have no idea how and what shoud I do or what to do . . This is my first time writing a diary entry here . Today , I left a comment on someone else 's diary for the first time . The door was in front of the class so I had to pass the professor to exit . but I 'm 19 years old , so you may think that to watch anime is funny . So I have n't read the book . anybody knows some ways to treat this bad illness ? . . Has anybody seen tfhe film Brazil ? When I was a junior high student , I used to write my diary in Japanese but I quit . Even more funny was when I was walking in front of her house and I passed by the window where he was placed . I usually spend time watching DVDs of American drama to study English . From now on , I will put today 's date as the title Recently , I have been seeking a new job in which English is required . I need to get a high score on the TOEIC test next month on Sept . 11th . I also want to improve my spoken and written English . In Kyoto , there are many historical monuments , shrines , and temples . After the object was gone , we started to see a series of images projected rapidly in the sky . A few days later , a beautiful girl appeared at the grandfather 's house . They could hear sounds of weaving . We had our senior 's graduation ceremony on March 16th and it was a very important event for this school . In Taketomi - island , we stayed in a Japanese - style hotel and enjoyed swimming in the hotel pool and the beautiful sea . Fourth , I ca n't use the punctuation in rigth ways , so when you read my diary entry you would feel confusion . Yesterday I ate sushi for the first time in my life ( I know that is a little shameful , because I 'm fan of Japan culture and . . . Although I wanted to talk about the Lions , I digressed from the subject . I am lazy to control myself , as a result of that I 'm always disgusted with myself ! gee ! Today , I 'll tell you about a famous Japanese comic called `` ONE PIECE `` . I got a holiday for five days . This Jindaiji park did n't seem like a place that was 30 minutes from Shinjuku because the area was very calm and has old traditional atmosphere . I 'm excited with the class even though I 'm still not in the habit of using English . Long flight The novels were written Japanese . I 'm lovin ' it ! And , I 'm lovin ' it . I seriously need staple food ! I ate lunch and then went to English school . I 'm studying at the University of Arts of my country , I 'm studying Liric singing . I am planning / ( I plan ) to visit Singapore in the middle of May . `` Staying healthy is the most important thing in our life . `` I totally agree . . . . . . . . . Actually I really appreciate him because I knew he is always taking care of me and trying to encourage me , and doing his best for me . ( I accept recommendations for places or courses . : D ) I asked my teacher about this . I think this is a strange thing in Japan . The Simpsons is an animated film . I am at Changi air port . The following is just something I heard from a Korean radio program . Please do n't hesitate to correct my sentences , and I would very much appreciate if you would write another natural expression in addition to my sentence They are going / willing to pay up to $ 2500 to patients ( patients ) if the paicients ( patients ) are qualified / qualify . Tanabota probability is supposed to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . The students who ca n't come to school will be behind . So many things have happened since I last wrote in my diary on December 14th in 2010 . In this field , you have to be very careful of every detail . When I was a high school student , I studied English to prepare for college entrance exams , I certainly feel like dieting is not easy . hahaha ^ ^ ; Our relatives all came together to talk to each other and to cook a lot of delicious food that we all ate together . The massage fee is so expensive , but I will go there again . So you add me , friend , and help me improve my English . Yesterday I was listening to Gilles Peterson 's show on BBC Radio1 thorough internet . I do n't like to rest from work but I could n't move this morning . Some people feel that it is necessary to know what is going on in the public through the infomation provided by advertising . Thanks to advertisements , we can gain the latest infomation effectively . I was at my mother 's home from Friday 11th to 13th of June to participate in the reunion of my Junior high school class which have held on the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on the Sunday morning because my home town is Shimoda , three and a half hours from the center of Tokyo . Because I slept in the room next to the kitchen . Then she called me from the kitchen `` Are you all right ? Thank you for reading this poor level English composition . Although we are not together anymore , he still remembers me . I feel very happy . Because I 'm cold - natured . It looks boring , ha , however I understand why it really attracts men . Pho tasted very well . there was n't any probelm throughout the group league since Japan was keep on winning to next round step by step , but it is tournament now . While a doctor was treating my teeth , I cried all the time . Do you have your profile , where you can write short messages ( no more than 140 characters ) , and those messages will be displayed for all your `` followers `` ( people who follow you , have access to your updates ) . I saw that the sky was quite blue , and seemed very far away . There were many people who believed in it . In order to use the internet via I pod touch , wireless LAN is necessary , unlike the iPhone . Chakras are located in each auric body and are responsible for retaining and metabolizing the energy that the body needs to work optimally . In fact , we do n't have ( just ) one cardiac chakra , for example , but seven : one in the etheric body , another in the emotional body , another in the mental body , another in the astral body , etc . Usually the literature on / about this topic describes chakras from the emotional body as the only ones that exist . And I think these tastes are greatly influenced by each country 's cultural backgrounds . You may feel thirsty without milk or anything else when you eat sweet potato . My mother keeps saying that I should solve more math problems , and my father keeps saying I should do three things this summer vacation . Monday , Thursday , and Friday , I have a class in the morning , and Tuesday and Wednesday , in the afternoon . I want to speak English and Spanish , and of course Japanese : ] It is sad to realize , but for the last 4 days , that I 've spent on this site , in my posts there was done only one correction . My favorite ramen restaurant I have a week - long vacation , but I do n't have anything to do . First I got up late , then then while I was in class , my teacher asked me a question regarding the meaning of a word . I always think too much and hesitate when I want to speak in English . But , I feel so nervous about it ! ! xd I 'm waiting for the delivery . Because it can be used for exercising . Yoga , boxing , bowling and muscle work outs are available as well . C . Escher drew impossible architectural structures , they seemed like infinity but limited and they seemed to change pattern . I like play guitar , draw and play volleyball . Peters stupid jokes always amuse me . More often than not I feel that there is / a cultural difference between Japan and Korea while I 'm staying in Korea . Most of the jewelery was huge , so they seemed to not fit Japanese people because we are smaller than European people . He replied to me with an interesting and long message when l sent I 'm from Japan . Now , my father is in the hospital because he has a mental disease . but I worry that she will collapse . but today , when I rebuilt my computer ( system ) , there was no problem . Can anyone help me with my English ? I chatted with my international friend on Facebook . Because I just had gotten results and thrown them away . Please teach me I ca n't separate them . What is your technique in learning the language you are interested in ? In my opinion , you can not learn a new language or even travel through the world ( which is my dream ) if you do n't know how to speak English correctly . Hello my wonderful friends . What an unforgettable day ! But I have been continuously woken up by aftershocks . I know that everything depends on God and my abilities in English , but I really want to pass it . I 'm worrying about two things . Another is the expensive tuition fee of business schools . now I 'm considering ( think about ) which countries I 'll go to . And this vacation is almost 1month long , so I want improve my English level . I wanna send `` Thanks for pointing my mistakes and correcting me `` and `` good job for correcting `` , but I have no idea where to click on my page . . . They shut down the factories and laid off laborers / workers . I have n't read the book Black Boy yet and I have to write this diary . `` The Fundamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by I do n't know why . Maybe it 's because it 's 35 degrees C and you ca n't do anything outside . Then I was hungry an hour later and ended up eating a bowl of noodles . If this continues , I think my friends will not be able to recognize me over vacation . Most of my friends are already gone He plays basketball with his friends after school every day . Last year , when I walked around my neighborhood , I noticed a small signboard for a Shodou school . I will enjoy this page . And I want to help the people who study Japanese . The story is about a girl called Jessy who has a grandfather who faces death . Sea is the goal for each person . Homecoming visit I was surprised at the air ticket price . Public bath in Japanese is called Sentou and I love it . In Sentou , everyone is usually naked without a bathing suit . I am proud that I have such a friend , who knows english very well and can travel in England and other countries . My friend said that the ( air ) temperature was twenty degrees this afternoon . . . Because of some very spicy ones and coriander . However , I want to mention that my English is very poor so if you are reading my diary right now , please have patience and I 'll be very grateful , < 3 thanks a lot . I am not a romantic person so my wife always say to me that I should be more romantic I really appreciate it . I bought many things , for example , a vacuum cleaner , a refrigerator , a table , a bed and curtains . . . I ca n't sleep because I 'm lonely . Please be informed that this shipment will be deliveried as LCL via Hongkong . May be this is because I do not want to learn English in the beginning . But I will try my best to learn it in future . My English teacher has taught us many words , but I can not remember them and use them in the wrong way . What can I do ? The food is not as delicious as I expected . The food does n't taste as good as I expected . We happened to meet a Japanese tourist group . I asked someone in the group in Japanese . My bad English was n't understood to Peruvians . I want to go to Peru again . It was a very nice memory except for the Japanese tourists . I was impressed ! ! Besides , as this hospital is highly specialized in cardiovascular surgeries , I am able to improve my skills and develop my career . So I remembered about the time I chose my job when I was a teenager . I dropped by the library on my way back and I borrowed `` One Piece `` . Today , when I was about to get in my car , I found something on the ground . I quit smoking in April of this year , but because of stress I started again . I know it 's not good for my health , but smoking after feeling feeling so much stress is beyond expression . I 'm Japanese , but I live in Beijing presently . Today I learned some new words from this conversation . I think the uniforms you see in the picture are orange and blue , In the practice match , I got punched in the stomach and fell down ! The instructor said that it was n't very strong , but I could n't speak . We laid on our backs , and the instructor stood on our bodies and jumped three times . We voters probably wo n't be able to know all the results of the election till midnight ( today ) . This election also addressed the ? relations ? with many foreign countries . The U . S . / The USA , China , North and South Korea and all the others countries around the world . The result is known by God alone . They probably broke because I listen to music too long > _ < ( this also works ) When I become a teacher , I would like to be the coach of a high - school football team . Anyway , football is an extremely organized and systematic sport . I replaced the sentences in the grammar book with my own sentences . As a woman , wrinkles are the number one killer of beauty . My big brother participated in Tokyo marathon last month , which is one of the biggest citizen race . He finished in 3hour 6minites . The saddest part is that his older sister had also committed suicide . I do n't know why , but this year has had a lot of Fridays the 13th . As a result , we have Hence the spectacular congestion on the highway . my name , special holiday e , photo and so on . Today is a boring day . I want to drink alcohol . After that , I watched a DVD at home . My elder sister is a doctor too , so once they start talking about their jobs , I have no idea what they are saying . We go to the temple and pray for our family 's health and happiness , and for world peace . These are very delicious . Next Tuesday there will be a presidential election in Sri Lanka . I do n't know what the most important thing is for me ; I have many problems that I have to solve . While I was studying , a friend on the Internet told me about an interesting video game called Age of Empires 3 ! The test was quite difficult , especially the listening section . We spent 2 hours at Starbucks . My friend gave me a Goya yesterday . If I keep on my refrigerator it will change to yellow color and very sweet taste . My father is pastor , and he loves studying . If you buy adeers rice cracker , I caution you . Deer will pester youviolently . He had no problems or concerns and was very happy . We cried and said good - bye to our best friends with whom we studied and lived together for 4 years because we were all going to different parts of the & nbsp ; country and pursuing our dreams / goals . My favorite fruit is pineapples . I always wonder if it is better to buy a cut pineapple or a whole one . Just have to live for now and prepare for the future . go abroad . . some of my friends have gone to foreign countries to learn English . . . but I do n't have the time to go abroad . . and other European countries ( nation ) Because they are in small cages always and walking time is once or twice a day which is only ten or twenty minutes . I know that it 's going to be difficult to keep up with this class , but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . At first , I felt a little down , but I like it now because my friends said it looked nice : ) ) I took TOEFL this morning and I found my English typing speed is too slow , despite my fast Chinese typing . So I made the decision during the test that I must find a way to get more opportunities to type English , in order to improve it ~ Maybe I should keep on blogging in English . Harajuku has its own character and is representedby ( ? ) the lolita look and cosplay . So she wanted me to get an arranged married . Once I was forced to see a man on a date arranged by my mom . Actually , she did liked him at all . It happened a long time ago but I still am reminded of it whenever I see my mom . At last , I hope everything will improve ! They are have good service , and changed it to / gave me a new account . It 's about a pirate called Luffy who is the hero in this comic . It 's called `` devil 's fruits `` I am interested in videogames ( for example : PS3 , PS2 , PSP , Xbox , Wii , NDS ) . Also anime , and technology like the iPhone and iPad . Have you planted the seeds of appreciation ? Here I uploaded some screen shots from this documentary . BecasueI am a lazy girl . I hardly save any money . Please enjoy the song while you helping me correct my diary both internal and abroad . But , , after this episode , I 'm careful eating Kimchi in other country . and it 's a bit boring , but there is a crack from where you can enter the underworld if you kill all the enemies on the area that leads to the crack / opening and to the garden and at the end , you can enter the Hero 's Hall . There , everything is made of gold and in the last part you can find three mesmer ( ? ) bosses called The Darkness . If you kill them , they give you two green staffs , and each staff can be sold for aproximately five thousand gold coins . If I had spoken earlier to him and my seniors , that would not have happened . And also there are a lot of various matter ( ? ) . . . . . This is my new goal , and I 've set a date : 30 june 2011 . I have been using the iPod application and iTunes so that I was little more familiar with the Apple products . My classmate and I will play it at a performance in July . I felt so much cooler despite knowing that the temperature might / may not actually go down that / so much . I have to make a presentation about Accounting . So , I have to study Accounting ! ! I think they 'll give you good answers and help you resolve your Japanese problems . My target : I want to talk with foreign people in English ! I believe that the first experience of everything is very exciting / memorable When I chatted with Atsuya , who can speak English fluently on Skype , he recommended that I buy them . When I went to Canada I was impressed with the stunning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more magnificent . But at my home we have not used it yet , because the weather as changed so quickly . . I think it is very fun to make friends . Green leaves work and create energy vigorously on the trees during summer ; they turn golden , and fall onto the ground after their hard work . I wanted to buy another magazine but I did n't buy it . I found some nice clothes in this magazine but they are a little expensive . Since I went to theNeko cafe for the first time , I was so surprised to see many cats . And also , I caught a cold from him . In Japan , almost all students ( elementary school , junior high school , and high school ) get summer vacation from the 4th week of July to the end of August . Research also requires English skills . Today March 10 is the day when candidates can know whether or not they passed the entrance exam of national universities in Japan . I have a girlfriend and love her , but I ` m so embarrassed that I have not yet told her so ^ ^ . We go to the same private university ( University of Keio in Tokyo ) and belong to the same class . But she also studied to pass the entrance exam of the University of Kyoto ! I feel sorry because I wo n't be able to meet her if she passes the exam ( Kyoto is far away from Tokyo ) , while I support her and believe she will succeed . The topic is staying healthy , we have to write some points on the note card and say it in front of classmates in three minutes . here 's my whole speech And then , I did n't exercise in the past , because I hate sweat . But now , I realize that I ca n't be like this anymore , I want become healthier , so , I changed my daily rountine . I want to learn English because my dream is to visit many countries . Maybe all countries of the world . Luckily , we had nice wather . My favorite thing . They will see the full bloom cherry blossoms for the first time . I was translating an English e - mail for my boss the other day . But I have gotten the idea that it 's good enough in quality and looks at this moment . I 'm looking forward to this weekend very much . Even now , the accident is going on , and because it is known that boric acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I could not watch the perfect eclipse , My iPod does n't work because I washed it today . But , these thoughts make me feel pressed and I have done nothing recently . I had a conversation with him about complaint of our current state until 1 : 00 a . m . I felt really happy when my former boss told me that I would move to the Okinawa office , because the Okinawa office is quite popular among my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so by my wife driving us we could go anywhere we wanted ( In those days , my drivers license had expired because I forgot to renew ! ) . It is true to studying languages consists of the letters . If you have done that yourself , share your experience , please . So I think it 's good to keep in touch like now . Another one was personified risks are perceived to be riskier than anonymous risks . I 'm working part - time at an Italian restaurant . I want to make friends with people all over the world , especially English and Spanish speakers . Maybe we wo n't be able chat ( often ) because of time zones , but I really want to get to know you . I used to hate writing something because I felt it was such a hassle . have no subtitles . But the next exam is coming soon , it makes me a little nervous . This is because it was just in full bloom . He said `` take this / some medicine ( anthelenintic ) . . . . . `` But I had not eaten ( yet ) . Here have a quantity of foreigners . Sometimes the foreign friends help to correct my English diary . I spent some time , to think of an answer . But I think people who have beards do n't look good . ( on some people it looks cool , like Johny Depp ) I get a runny nose very often ( kind of allergy ? ) and I get tired easily . I have n't written this blog for a long time . I was surprised and ( still ) feel very thankful . The dolphin was spotted bearing deep wounds from the bite of a large shark on Friday . Until Monday the animal had not emerged from Morten bay for its nightly feed , and it was feared it may have succumbed to the injury , but the twelve - year - old dolphin returned to his regular feeding spot on Monday night , and was transported by boat to Sea World on Australia 's gold coast , where he underwent the surgery and now recovering . I will go his restaurant again in the near future . begin new days . Please recommend an English name for me ! ! Please recommend an English name ! ! Actually , I deleted history on Windows Explorer , but I did not clear the document history . I 'm greatly looking forward to meeting him . In the morning , I hurried to get up and eat the sandwiches that I prepared yesterday night . At that time , I began to realize that I forget my ticket and wallet at home . The relationship between parents and children is very important . If you 're interested in the special culture , I 'll introduce a useful tool for browsing through the night markets in Taiwan . My listening skill is very weak , so I always got the lowest score on the listning category of the TOEFL . Are there other effective ways to train the listening skill ? I always go to clinics , to meet doctors and advertise or inform them about my company 's medicine . However , sometimes I am appreciated by doctors for my support . In Madrid , it has been raining all day and going outside has been impossible . My hobbies are listening to music , watching TV , playing sports , and so on . According to the weather forecast , it will rain tomorrow . And two typhoons will come close to Japan . Because I hope to make a present for my mother on Mother 's Day . According to the article , in Belgium , there are four parties and they all have trouble with language . This writer 's point of view , you can tell there are two worlds in the Cinderella story . In 2009 , many scientific studies showed that chocolate has many interesting properties : it is rich in flavonoids , provides good protection from the sun , improves heart health , decreases blood pressure , and even protects against cancer . What is correct ? is there anything else . . . ? If I go there again , I will go bankrupt . While there , we were taught about the Asuka era of Japan in English by foreign people . I went to a toy museum with a foreigner . I hope one day I will speak English , one day . . . . I also like cosmetics , fashions , and magazines . Movies make me excited . Today , a typhoon hit city . I wo n't go to work . I wish tomorrow will be fine . The difference was , however , he kept on going to his potty even when wearing his diaper . When I found this site , I decided to post in my journal everyday . When I said that her students seem to have been improving their Japanese a lot , she looked really happy to hear it . I know her feeling . When I was an instructor of drawing software at a business school , I was happy to hear about my students ' efforts and improvement . They often gave me the energy to teach . I could do it anyway but my friend could n't and held the bar whole time . . . it was so cute : ) I want kimono for myself but you need special treatment to keep the kimono in good condition . I love this language , and my greatest wish is to speak and write English ( fluently ) . And it enabled us to enjoy taking a bath outside and to overlook the valley . It seems a little bit complicated to me . It seemed to be a very nice day . . so I took a chance to ride my bike because it had been a long time without using it . I am so depressed . I study English every day , and when I finish class , I come back to home . I continue to study English , but I feel my English is not improve much , I memorize English words every day , bu next day I forget half , I feel so upset , I think my IQ is good , but my memory is not so good . . . . I want to know whether foreign people have dyed their hair or not . Because an upstairs room is cheaper than a downstairs one in an apartment house in India . But I ca n't remember everything I study . If you know the best way to remember , please write your way in a comment . Today I finished my thesis finally and I may be able to graduate from school in two weeks . My brother has told me that my grandmother has been transfered to the emergency room for brainsurgery . My allowance is far from being able to afford even the cheapest one . So today I will write something in English . I desperately searched for an Australian conversation partner , but three months were not long enough to master conversational English . He answered me , we introduced each other , and began to talk . Maybe you will meet a liar that will steal your money , because who knows anyone on the internet , where people can promise anything ? God knows ! There are animals there which have been abandoned . However , he miraculously recovered and he is full of energy now : ) I need to study English , but I do n't have any motivation . . . . . . I admit that I 'm a little insecure , which I do n't like to be . She fascinates me though I do n't listen to pop music very much . Although the weather was not perfect to see as far as Mt . I am really nervous . It 's the business language . . . . . Until I read another person 's journal , I had never heard about it . Only suginami - ku ( one of Tokyo 's towns ) was entered in Japan . Now , I want to be a customer ofsurvise agent in airport . Hope I can successfully pass this examination . I 'm a big fan of `` The Dark Knight `` and `` Memento `` and I like Ken Watanabe . Absentminded story How about in your holiday ? I 'm sorry for no contact for such along time . While I was at work , I met a pofessor who was Mr . ( nome of my lats supervisor ) 's friend and he introduced himself to me . I am not sure if I will have good topics in the future , if I will pass exams and enter the University , or if I will find a job in a good newspaper or a magazine . On top of that some fuel rods have already suffered damages . [ suggestion ] I wish I could recover immediately . I hope I recover soon Whose background music is excellent . my choir teacher has been soo annoying lately . The population of Japan is decreasing now , but business in Japan is poor . Gon na work as a web creator after graduating ( only 2 months left ! ) , They were the offensive side , and we were the defensive side . I need the computer because I am studying English and I must do myhomework . So , they are not eager to get married . I did n't think it was relaxing . We slept only 3 hours every day . I think people are unaware about how little we care about things as we get older . Anyway , I think this movie is not only for a child but aslo an adult . It 's a very exciting , entertaining , and heartwarming film . I was going to buy running shoes but what I actually bought were like DVDs and so on . He will soon stand by himself . I 'm planning to get a driver license before long . I never finish reading the books that I buy ; I am a crazy girl . I know it is really hard to do it . Sometimes I am lazy ; sometimes I am drowsy and would like to sleep . I 'm practicing `` In too deep `` by Sum41 : ) In japan , girls give chocolate to boys . Aroud 328 people & nbsp ; died . Last week , my classmate who is & nbsp ; now a & nbsp ; teacher . Told me that & nbsp ; two classes have been & nbsp ; Cancelled , due to the H1 / N1 in her school . I think I have a responsibility to remind you , my friends , to pay more attention to your health . Personally , I insist that health comes first . I am looking for people who can teach me English . To tell you the truth , I felt sorry for him , because he really looked sad . . . I went to Izu and Kumamoto in this summer vacation . Umm I still do n't know what to write about . I definitely need some help , because I never have time to practice my written English . . . AlthoughI do n't know how to use it . It rained heavily today . Especially if you take two totally different language courses , it would drive you crazy . He played football till he was a highschool student . And I 'll correct entries written in Korean on Lang - 8 . But after a little training , I learned to operate it . In the end , we choose to wait for the special bus because it was more convenient . Heavy raining ! ! It is hard for me to concentrate on my studies . because my friends all have girlfriends , except me ! from IT technology to people 's values . The Tokyo Electric Power Company said `` We will use the accomodation later as we do n't want the field workers to dirty it . `` Therefore , I waited for her at the station yesterday , so she was pleased as well . And by this morning I 'm already almost finished ! He can speak intermediate level Japanese , and would probably be able to explain English grammer in Japanese . Now , I rarely talk with people even in Japanese because I am busy with work . Therefore , I decided to run at my fun - run pace . It is very beneficial means to learning a foreign language , so I 'll try to use it when I have time . I have been having toothaches these days . The TV program showed / explained that the children of immigrants who had to go back to `` their mother countries `` were not receiving adequate attention . ( by whom ? ) I would like to study abroad . Generally speaking , most Taiwanese are warmhearted and friendly . He then had an operation at a Nanjing hospital where the doctors removed half of his lungs . Now I 'm not comfortable eating hot and spicy meals . . . Then , I talked to many people , but I could n't communicate well . And now , I want many foreign friends , I wanna talk about many things . I guess this is the most important quality that I write until now . Moreover , a thoughtless act or remark can spoil a perfect relationship . Recently I take a shower twice a day . Members arrange a meeting in the local area via twitter . I try to do exercise but I usually must open the window all the time . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I recently have n't been to a music concert so I decided to go to a concert . Something happened to me that put me down . I get up every morning and feel like a loser . In fuct , I was studying meteorology when I was about 20years old , but before I knew it , I stopped being interested in Meteorology . Today is a historical day because we could see a solar eclipse over almost all of Japan . It means the electricity is cut off at a regular time every day . So I found that electricity is one of the more important things in our daily lives . I made a big effort to learn , because this is so interesting for me more and more . People in Canada usually put their foots on across a seat in the bus . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all the day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some comforting . The man . was a Canadian But my new office is in the city , so I have to wear business suits . Today , I bought a lot of new things to wear to work , for example : business suits , shoes , and so on . I can control my computer to play a video from far away . I was going to make a team but I coud n't after all . I was sad and disappointed . And I doother sport which are badminton and volleyball every Wednesday . Although I do n't know if I will get the best By the way , I want to learn Japanese during my summer vacation . I ` m a student and I can work only at night . I hope you can help not only correct my grammar mistakes but also develop my arguments . Of course I liked them , all the same , I was getting sick of the colour gradually , so I asked my husband to paint it white . But it seems to be impossible for me . hahahahaha In elementary school , we are taught to protect conformity amongst the people in our class . When I told them what time I started cooking that day , they were surprised because it was too long and pointed out that I tended to cook time - consuming foods . Basketball , Volleyball , Soft - ball , Tennis , Table Tennis , Soccer and Jump Rope . I played Basketball and Volleyball . A couple of months ago , I took a test called TOEIC , which is a English reading and listening test . When the score was annouced , I was surprised becouse I got a 930 . I was really gratifed and I was proud of my score . He is a Japanese comedian . The score is not that satisfactory , but I 'm just really happy that one of the biggest burdens on my shoulders finally got offloaded . There was interesting campaign against hunting cheetahs in Africa . This campaign was led by the African organization of cheetah , and there were a lot of well - known people . For example , Oprah Winfrey talked about the horrible decrease of the cheetah population for 50 years . Also I paid the organization $ 1000 so I ca n't go to the cinema with you , because I do n't have any money now . But I 'm very proud of myself and its so much better than this new film with Stallone . Today , our laboratory will have a student from Mexico . Foe example , we can get healthier bodies by physical exercise and improve our blood circulation . Playing basketball is good for increasing the height of the body and improving friendships . and I got your information from the internet . These web pages are for your reference : Giant sushi I always gaze at my PC screen , and I make decisions whether the applications are similar to previous ones . And I hope I will make friends with many people for international exchange : - ) You may think I stayed there very short time , Suppose we could only get food that is tasteless or stinky ; we might be able to survive , but we might also find life meaningless since the essence of life is gone . Lucky enough as we are , we do not have to worry about this hypothetic tradgedy . For this , I have been practicing speaking in English by using a textbook and a CD . come on ! God help those who help themselves . So today , I want find ( or make ) some friends to help me with my English By the way , I love Geo of `` Ugly Betty `` and I think `` Jim `` of `` the Ghost Whisperer `` is the ideal husband ! ! We are a little tired , so we are taking a break right now . We are waiting for an answer now . I feel really good because I will not go to work tomorrow morning . I plan to go there later after I have finished reviewing some things at Sanamhoug . I 'm really happy . She teaches me like I paid her money and we plan to study English and Chinese together . She is really nice and will teach me Chinese while I plan to help her speak Thai very fast . I really like when she speaks Thai with me . So , on Sunday , we plan to watch a free movie together at Suvimvit 55 road . I like reading books which teach me how to deal with the things in human life . Before I left for the shopping centre , I looked up the collections of my favourite clothing companies online . I started off looking round my favourite clothing shops , but they had nothing in stock that I liked . I purchased them , but in my haste I made the mistake of picking up the wrong colour ! ! I will study English . Then I tried to add ice but the ice came out so quickly that I received a _ lot more than I wanted . One thing I was surprised about was that the people on Car1 got off at Suidobashi station . It is too difficult to become fluent in a `` no - English `` environment . . . I 'm interesting in seeing how the Japanese government handles To acheive that , I should study English grammar and increase my vocabulary . I think it helped me regain my health ( get healthy ) again . Although I have learned English grammar for six years throughout middle school and high school in Japan , my conversational skills are not enough . I 'm in the lab waiting to assist students who are learning Japanese , but no one has come so far . I have read a few blogs which say that olive oil makes vanilla ice cream more delicious . Because it cools your body down , you consume the calories in order to warm your body up again . I only go back to my parents ' home every autumn . However , this time , it seems to be fixed easily . But the computer was down with a blue screen . My roommate , a Japanese , introduced me to this site . I 'm really happy to have known this site and it 's a pleasure to show my ' useless ' diary lol I will take an English conversation class at the office . It will begin from the 13th of October . I always think and worry about my fears . Worrying about whether I can make it and what should I do if I fail . . . This time , I bought English books . But I 'll try to study hard . I came across an article on the CNN website last night which enumerated a number of useful sites specially designed & nbsp ; for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm & nbsp ; for learning foreign languages will be satisfied & nbsp ; on this site , and also I 'll be zealous with people & nbsp ; who need & nbsp ; my help . I answered , `` I do n't think so . They do n't get holidays or days off . I am Korean and I 'm studying English for an entrance test for a university . Then I will go to sleep . I always sleep late . I love MINISTOP 's chocolate and vanilla mix Ice cream . Now , my throat feels much better and I do n't have a headache anymore . I have been trying to find a friend for studying ( ? ) Russian - English a long time . The day before yesterday , the president said , `` Everyone speak English . For example you can say good morning `` in the morning meeting . I can speak in English to everybody . Perhaps they are impressed by the boy 's deep - rooted loyalties to his teacher but it seems like an effort is made to nip the talented untouchable boy in the bud by the nobles . I walked forty minutes . So , I started this site , and I also bought a DVD called `` CORE Rhythms `` . This DVD has gotten popular in Japan , because a Japanese comedian ( woman ) tried this DVD and she succeeded in losing weight . The DVD itself was not funny , it was just a regular dance exercise video . Especially , my vocabulary is terrible . . . That made us laugh loud since our class is in warm atmosphere . It was especially difficult because each sentence was very long . I spend a lot of time drawing . When I went to a supermarket last night to buy some frozen fishes , I was surprised that there was a difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! I graduated from high school on March 1st . But I did n't tear a lot during the graduation ceremony . The show lasted only a few minutes , because the boss was back so soon , I had to stop the music and lhad to stop the dance . It 's been getting warmer and warmer by the day since summer is coming very close ! Today we watched the movie called `` An Inconvenient Truth `` which was made by Al Gore . I played soccer with my friends in the park last Sunday . I visited friends who graduated . There are IT - English courses provided by my company , but they are rare , quite expensive and all the places are currently taken . Catalonia ( Catalunya ) is now an autonomous community of Spain with specific characteristics like its language ( catalan ) , its culture , its gastronomy , etc . compete to get the best score If you believed in me `` If someone believes in you , you believe in the world . If you know good way , please teach me . I really appreciated that , especially my girlfriend . Moreover , we are expected to have a wide range of information not only to teach all subjects but also to help students broaden their world . Will they keep me standing until I concede on some issues ? Next week our family is planning to go camping in the forest . Flour contains water , proteins , carbohydrates , lipids , minerals ( inorganic substance ) and vitamins . By the way , he is a very naive person , as well as being shy sometimes . As I have said in my self - introduction , I like meeting foreign friends , so I do feel desperately happy to meet or receive any information from them . I have to write an essay on Japanese education for foreign students , and I 'd like to know how all you Japanese learners really think . Though I am a leader of my department , I always feel that I 'm lack of confidence . I told somebody , but of course they did n't believe me . Until what age did you believe in Santa ? On another note , I bought a grammar 's book . because I do n't like grammar . Those who can not pass the test will have many problems next semester . That 's the reason I 'm able to learn it more effectively than English and I have more fun with it . I live in Taipei now . I listened to a worker speak about job hunting . I think I have to aim and try to achieve the goal . From now on , I will try to explain about the basic rules in Japanese . If you need to be polite , you can say `` watashi ha hashirimasu `` . Regardless of the subject of a sentence , you must not forget to add `` ha `` . If you have some questions , I 'm willing to answer you ! I tried to cook something like that even though I did n't know the vegetables . And then someone in the Japanese EMI heard the album , and asked me why could n't I write in Japanese ? Internet addiction I am addicted to the internet . I spend much time searching for information on the internet too . She and her family came to Japan for work 21years ago and now , they 've become Japanese citizens . I am very happy to encounter a good teacher , but I always feel that to learn foreign languages in Japan , an island country , is really difficult . Since I do n't have any chance to talk with foreigners , especially in a countryside like where I live . Sadly , I did n't bring a good camera with me , so I could only use my cellphone to take pictures . earthquake in the Tohoku district and there being lots of the victims from it and the tsunami , some parks are asking people to refrain from hanami this year . What I thought , though , was that the part time job was unnecessary at the test because there was no examiner who was a native speaker . I promised myself to write a diary entry every day since I found this great website , but I already failed to stick to my word . I was going to write this last night , but the temptation of chatting with my friend was so powerful even though there was nothing beneficial for me ( it was just time - killing ) . finally , I went to bed at three am this morning . what 's worse is that I could n't go to my class that started at 9 o ' clock . Saury is in season now . But actually , it is an old American car . There have been rumours of match - fixing . However , the rumours has never been proven true . The Japan Sumo Association has decided to cancel the next sumo tournament . Today , pastors and leaders from Taiwan , Uganda and Singapore came to our church . ( Someone said that this sentence is the worst opening in the world ) I have just graduated from my university , in which my major was computer science . After the coffee hour , he had planed to play soccer with his friends , so I joined them . - The North - East direction is considered to be a source of bad luck . I wonder when my toothache will get better I am writing this entry on my journal at McDonald 's , the famous worldwide hamburger chain . in all the stores in Japan I can use my PC with the broadband network when I come and sit at McDonalds . But in reality I can use the internet under the broadband connection of 20Megabite / sec over a cup of coffee , which costs only 120 yen here in Japan . I think I should go to the hospital , but receiving treatment in a hospital abroad is a little bit scary for me . I was waiting for my friend in front of the school . Kimchi has a strong smell . The husband is a native Canadian and his wife is a Filipina . I hate complicated movies because I ca n't understand the story as soon as I concentrate on the subtitles . Jane is tired of dealing with customer complainants and wishes that she could do other work . I 'm a Cerezo Osaka suppoter . Shinji Kagawa was a member of this team . Now he belongs to Dortmunt in Germany . Making friends is absolutely another goal for me . I bought it , and of course I bought a battery too . Would you explain these sentences below ? I was happy to learn that there is such a good restaurant nearby ! We had a big hamburger . To take the side of Superman is very easy . He can fly and shoot rays from his eyes . He has super strength and incredible endurance . I decided to take the Graduate exam instead of finding a job . Although June has cool temperatures and cold rain . words , spelling , grammar , and pronunciation . Since Australia used to be aBritishcolony English in Australia is based on British English . I 'm going to write the text `` End N `` at the lower - right corner of the illustration . She is one of the most famous singers in Japan . One of them adores Ayu and she goes to Ayu 's concerts all the time ! ! ( Of course , the contents of the concerts were the same . ) It meant that she paid about forty - thousand yen only for this time . . . I do not see Pepsi in neighborhood supermarkets or convenience stores . Yesterday night , I had an argument with my 14 year old little brother who is in junior high school . After finishing up the fliers , I will hand them out at the station . Needless to say , they ate it greedily and quickly . I think they are the cutest of all animals Oh , I wish I saw many beautiful stars when out in Mother Nature . If you know English and want someone to correct your Japanese sentences , please be friends with me ! ! I want many friends to help me improve my skill . The morning was not so bad because the teacher was not so tired and had a sense of self - composure . As the teacher felt tired , she became nervous . As kids were scolded , they became defiant . There are many flavors : salmon , cod roe , sea chicken and so on . Suddenly , it started raining and I had to go home T T I prefer Chinese , but I do n't want to lose my Japanese songs and I do n't have enough time to expose myself to two languages , the former for the fun of the learning experience and the latter for the pleasure of the songs of my childhood . I want to see more colourful butterflies . So people in Tokyo buy everything in the shops and I can not buy water , rice or paper . Yesterday , I went to Restaurant Hajime for lunch with my girlfriend . My favorite dish was roasted lamb . It was so cool that we felt very comfortable . Let 's plant good seeds in our hearts together . [ Please plant good seeds in the garden of your heart and you 'll be happy for sure even if someone doubts it ] . Please tell me your thoughts about this . My headset was damaged by someone I know , but I did n't want to directly blame her ( for this incident ) . After that , I became worried about my friends who are living in the area near the Tohoku area , the worst - hit area . One of my friend said that she is suffering from aftershocks and blackouts . She told me that she is very scared because aftershocks occur from time to time . They even use the wrong grammar ( in lessons ) . I really want to study English . Well , hope you can help me ! ~ My husband is good at working with wood . A couple of days ago I joined a team , that was created , to have University students translate English into Korean . Our team 's slogan is to be in the middle of the world that is emphasizing indepedence and creativity . I went to the building near the Pusan city subway station to attend OT . So my primary problem is pronunciation . they lost to the Orlando Magic . ( ; _ ; ) It was a little gross , but I liked it because its plot was easy to understand . The only way to make me happier is to find someone else . Every year , I gave him chocolates . I caught a cold ! ( I evaluated this cooling system - It is weak . ) I went to the department store on New Year 's Eve to buy some ingredients . On the morning of New Year 's Day , many people go to a temple or a shrine to pray to achieve their goal in that year even if they do n't have any religion . The story is mainly a pirate adventure , and the characters also have special abilities that are similar to Naruto 's Ninjutsu . And , this drama satisfies me with the fantastic graphics and unbelievably surprising plot lines . I normally play I have a habit of checking the back of my hair a lot . It is funny that even though I know my hair ca n't grow that fast in one day , I check it anyway . I wanted to eat something for lunch , so I went to the kitchen . I made macaroni and cheese yesterday , so I decided to eat that . I looked for it everywhere in the fridge , but my lunch was n't there . Then , my hostfather came to the kitchen joyfully and began to talk . I want to solve this situation . About two months ago in the US , I saw a free trial service on a cosmetic company 's website . I only started learning English recently . I 'd like to speak fluently , but it 's quite difficult for me now . I recommend it . One of my friends went to Myanmar as a volunteer with her circle members . I 'm going to introduce some of the goods later . It 's too complicated > < I wish someone could teach me how to use it > < aah Anyways , I taught one of my dog a new trick yesterday . In Korea , there are four seasons which are clearly different from each other . In the evening the weather was good so we played badminton for a long time . When I got it , at first , I suffered from tremendous pain for 2 days . Many things have happened around me during that time . That 's why I 'm writing a diary at this time . . . It 's 6am in Japan now . . . This earthquake happened when I was traveling in Europe . I 've never seen the foreigners coming to sightsee in Tokyo after I came back . All paper towels at the public restroom are a waste of resources , so people should bring their own handkerchiefs to dry their hands . I answered , `` Actually , I dye my hair a little lighter . I 'm going to write a journal in English everyday . Even though I visited Vancouver for 6 months to improve my English , my English sucks . . . . Anyway , China 's National Day is coming , and we will have an eight day holiday all over China ! That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I want to be good at using the computer . `` Japanese scientific techniques are no . 1 in the world . `` An unforgettable movie Unfortunately , I 'll likely to have to sell my motorcycle because I 'm going to study abroad in Victoria , Canada this September . The Green revolution has brought about great benefits for humankind as a whole . After he succeeded in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . The core concept of this theory is based on reversing the ideas of drawing a picture . Until the last moment the mother kept hugging and protected her However , I made a stupid mistake at the bar . I though it was a straw , so I tried to drink using it , but the drink did n't come up to my mouth . I was so embarrassed lol What is difference between a mouse and a rat ? It felt ( so ) unnatural . I want to make a business card and I 'm thinking about my catch phrase . I wrote it 4 times on paper and looked at the sentence before correcting different words . I find out about me when I write the sentence like the diary . I feel happy and I wait for someone to correct it before I check it . I feel excited and I think today someone will help me correct it . Futon is a bedcloth . It is obvious that I am easy to make happy . I know that it sometimes seems immature , but candies are my favorite , so they absolutely can make me happy . do my best , even though I could not answer all the questions perfectly . You know what they say : `` Winners never quit ; quitters never win ! `` And my mum , she is generous and lenient enough to make me brown bag lunches when I need them . She satisfies my familie 's culinary taste . Whose is this car ? Whose car is this ? They have three rooms decorated with many accessories that are hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . I have to read some scientific papers by tomorrow . First of all , your families are always near you . This means that you can learn what you want to know anytime you want to from your parents , brothers or sisters . When children are troubled by their relationships with their friends at school or solving their homework , parents usually tell their children kindly what to do for problems , and what they teach will remain in children 's memories forever . In general , the things people learn when they are little are hard to forget , and sometimes are indispensable teachings for their life . Agemanju is very delicious . One of my co - workers is Filipino and we talk in English although I am Korean and she is Filipino . And when I work with foreign teachers , I feel the cultural differences more . I swim at gym once a week but my output of energy is smaller than my input ( eating ) . At that time , I believed her . We held a farewell party for him at an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the most famous Japanese dishes in the world . ) the most important thing to remember is one that I did n't spent the time being with my family although I 'm the only daughter . I practiced pronunciation this morning with my teacher over the internet . But today I enjoyed my lesson because I did my homework . I want my own domain and I can pay for someone to create my homepage . Writing in english is little bit challenging for me . He said , `` I was raised in Japan until I was 14 years old and then moved to Portugal due to my parents ' work , and now I 've been living in England for almost 3 years . `` In August 2010 , I left Japan for South Korea to study economics , and Korean culture and language . I could n't say anything in reply because I could not speak Korean but my Western friends could . This is really helpful for foreigners . I check meanings and example sentences , but it does n't always work well . Maybe I will be a tour guide , but not sure . Maybe I will just use it for my own travel because I could get free access to some scenic areas with it . These grown ripe are very sweet and tasty . Her grandparents are coming over for the festival too , I wonder if an school athletic festival is commonly held in other countries Summer vacation will be over this month . I was lazy about studying English . But he only talk to me for about 10 min , when he waited for the meal in a restaurant or only if he had spare time . His house maid said his mother did not wish him to get married , because they needed his salary for the whole family . When I was in his room for a few days a year , I was disappointed with his behaviors ; watching TV , checking his phone , no talking . I want to spend my time with my BF and have dinner together . In particularly , after his anger surprisingly hurt me . I had a BF , but I can not talk , called up , share any ideas , no opportunity to go out often and have a temper . I 'm looking forward to receiving it ! ! I will hang out inIkebukuro and eat some nice food . The correct sentence is : `` Would you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutely do n't want to make mistake like this ! However , this situation symbolized the kind of distorted affection and shallow nature some people have , called ' Naebi - geonsung ' , boiling fast and then getting cold just as quickly . I am hungry I prefer low sugar to high sugar and I prefer fruite cakes to vegitable cakes . Give me news of you regulalry and also news of your mom , your dad , and your brothers and sisters . At first , my friends did n't want to watch it but I recommended it because this movie is made by Disney . I live in a rental house , so I called the owner . I can wash my face comfortably because the sink is new ! what can I do about it ? Maybe she had gotten influenza . All activities were great , especially The Hallywood ( Hollywood ? ) Ride ( this is a roller coaster ) and Spider - Man The Ride . While in the US , I went to the Starbucks . Still , I go to Starbucks becasuse I can spend a longer time studying there than at other cafes . I am working in a Group Home , where old people who suffer dementia related diseases live , and we take care of them . I think I should explain my situation first . I have been living in Australia for a year and 9 months in order to study English , and have been living with them for about a year . They are really nice friends so I want them to see my home town where I was born . The Zew Zealand friend also took me to see her country this past January . I really want them enjoy this Japan tour , and it will be a good chance to be like a bridge between Western and Japanese people , because one of my dreams in the future is to become a transrator so I will be able to see how good my English skills are . We are going to go to Okayama ( my home town ) , Hiroshima , Osaka , Kyoto , Shizuoka and Tokyo , I ca n't wait to go there : ) At first , I did n't believe it because I thought it was a joke . I lacked confidence at that time . I talked on Skype with my router . I worked today . It was a sunny day . But after I entered a university , I realized that I ca n't speak English as well as I would like . If people eat it , according to the animal experiment , it causes kidney calculus and then finally becomes carcinoma . I disagree it , because I think people will not be motivated to do their work . That will make me more stressed . In our lifetime , about 100 years , we are supposed to choose only one person to have sex with , but sometimes people try to choose two people at the same time . First , when a couple gets divorced after 10 years of marrigae . Second , when a father or mother has a relationship with other man or women while still having a life as a family . However , I have n't received any satisfactory replies so far . What I am worrying about is the fact that if I ca n't find a internship position this summer in Shanghai , I will have to go back home and stay there all vacation . After that , I 'm going to study English at the ECC school . I was only free for a short while to buy vegetables and chocolate in the city ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . The event was canceled , due to the over crowding at the race track . The holidays are called Golden Week in Japan . But how can I accept him ? And I look forward to drinking with the teachers because I promised them we would go drinking someday . But , I wanna write my diary on lanf - 8 as much as I can ! They label the phonetic symbols beside the Chinese characters . All Chinese students begin to learn pinyin for at least for 3 months once they start school . I am still thinking about how humans can solve the energy problem themselves . I keep searching the internet for answers but still have not gotten them . Are you influenced by the economic crisis ? What influence can you have on your country ? From now on , I have to prepare myself for the up - coming examinations . That was the highest record ever . ( Yesterday I talked about a Manga Cafe . I 'll talk some more about it today . ) I married fourteen years ago , but I do n't live with my family . Providing a good education for their child is also important though . Besides , think more before what doing something , The volunteer work is basically something like this : if tourists ask how to get to their destinations or particular places , we 'll show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked a lot about work , marriage , siblings , friends , etc . I went to Yoyogi Park for cherry blossom viewing last saturday . I am studying commerce in Melb . I still feel unfamiliar with Melbourne , Most of the Arabic lands are covered by deserts , therefore the animals in Arabic are very special . Of course , I 've never donated blood . All the professors have gone to the conference , I am having a break . It said `` especially small penis . `` Then he laughed so loud at me . Now you know why I can remember this word more easily than other words . > _ < After that she is going to do yoga and I am going to go home full . There all people were foreignerS . Because I can catch my teacher 's pronunciation . I had a bad headache today . By teaching your knowledge and trying to convey it as simply as possible , you can obtain deeper understanding about your knowledge . I 'm a university student , and I major in Chinese Literatre , One semester of studies in Brussels resulted in unforgettable memories and valuable experiences . Lastly , Brussels is a beautiful city to visit with picturesque places , numerous parks and museums . My most favorite song is `` Lovers Again `` . This song is one of the most difficult songs in the game . I 'm so happy that I have found some friends here ! I like to play games , let 's discuss it . I 'm really sorry for my friends who are waiting for my pictures . Maybe Wikipedia is better than me ! ! I also met my parents and relatives . I like to eat Umeboshi , Mozuku ( like seaweed ) , and fried chicken ! Because I do n't know ! However , when my first leg stepped out of my room on the way to complain about this to the hostel office , my cool mature roommate stopped me . `` A true / real man will never be afraid of little insects . `` And he said with a calm voice , `` I used to be bitten by insects too , but now they can not harm me any more , coz / because I have already grown a layer of iron skin . `` I think it is a good opportunity , so I started & nbsp ; my English diary ( it may be weekly or monthly . . . ) Because my English class finished on Friday . Please , would you become my friend ? `` I like that menu , but I have an allergy to cucumber and tomatoes . I forgot to tell the chef to avoid those ingredients . Yes , he started to feed them , but I have been taking care of them instead of my son . My son is four years old , and he is too young to feed the larva well . As summer is coming , cockroaches appear in the kitchen , my room , and everywhere else . As you know well , this is a traditional tactic of ours . ( `` For us `` is okay also . ) I am writing a diary in English because I have a few pen pals and I want to improve my English skills . He is the president of his company . The race in the North America is not good for people in Japan because of time difference . I went to Chinatown in Yokohama on New Year 's Eve and celebrated the new year there . It was yummy ! Anyway , this is so famous in Japan that bananas used to sell out lol If u are interested in this diet , try it ~ I 've never tried this though ~ ) Our class has Korean , Japanese , and Taiwanese students . They 're good classmates who are studying with me . My teacher is American . Citizen watches Japan can not supply just the parts . but he is going to be deployed to one of the government offices because he got in a car crash several years ago and doctors implanted some metal parts in his left leg . I 've ever seen either but I still believe they exist . Places has identical features . These last few years , I have come to love the beer , `` Kirin the Premium Muroka `` . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyrics are cool and their music has a lot of energy Of course , amime is Ok . The class always gives me stress / stresses me out because I teach students who are preparing for their university entrance examinations . ( It 's very difficult and important for them in Korea ) I played the piano with my daughter in the concert for the first time yesterday . Are people in modern society losing their moral values ? Nowadays there is a growing awareness that poeple in modern society are losing their moral values . Every year , bullying at school occurs and it does n't seem to disappear , rather it 's becoming worse because there are some students who commit suicide after being bullied and the way of bullying is becoming terrible . There are some pople who talk so loudly with their mobile phone in trains or buses , not considering other people around them . Have you seen Avatar ? Yes , comics called Manga are part of our culture , there are many mangas for adults and Manga is translated all over the world now . I used to read fiction when I was young had a lot of free time . I went back to my father and mother 's house . then she claped her small hands and swayed to the song . Jim Parsons 's smile is cute . XD Many flights have been cancled . Anyway I had a chance to talk with many people , including a few members who I do n't like . . . I thought I would be late . When I got to my office , the meeting in the morning had already started . There is not much difference because it 's Asia . confuse : Both of them told me different information about nuclear plant so I was confused . compete : 57 soccer teams will compete against each other this summer . Recently , there was a big earthquake in Japan . We appreciate it very much . On the second day we went to an island near Kota Kinabaru , by boat . We returned to the hotel and had a nap . I asked ` What do you recommend ? ' ' There are many shops , factories , companies , and even a bank . Then , he worked as a engineer of a printing company and a researcher of a medical lab . Hi , today I bought an electric guitar on an internet - shopping site ! I decided to start guitar so I joined a music club at another college . My senior said `` I advise an early start on guitar and you should buy a guitar priced between 70000en to 80000en `` She instructed me to call her friend who was a professional guitarist . He told me his favorite internet - shopping site where he bought his guiter from . And he said , `` I think at first you should try a cheap one and if you think you want to play the guitar more , you should buy a more expensive one . `` I trust his word , because he is very kind man ( and my mother 's friend ) Will you listen to my music , if I could play guitar very well ? ( haha ) They 're really really cool pants . They are my dream pants xD and now I will go to my summer house . Potato chips However , it can be hassle to wipe it every time . I will be starting work as a computer programmer from next April . If I was not able to understand slang , it would be difficult to communicate with native speakers . Of course , I know it is important to learn these things . I think something will change in Japan now that spring is coming . It has been a very long time since I last saw snow . She describes the mental state of women in a variety of situations in her songs . They cry for a lost love and are delighted with a new love . this season will be meaningful . I 'd like to tell Japanese how foreigners are interested in Japanese . By watching NHK , I can watch many kinds of programs . Plus , when I listen to English in a similar - way , I ca n't keep up with the conversation . I heard that some mosquitoes ( 3 ) which inhabit in Australia are really harmful for Japanese people because they ( 4 ) do n't have immunity for some types of mosquitos . My friend was bitten by poisonous spider and she now ( 8 ) has fever from the venom . Her situation is much ( 9 ) worse than mine . Geez , why did n't I realise this before ? But I will go there tomorrow anyway . I wo n't care about my ankle : P When I was a kid , I believed that rabbits lived in the moon , And so , I go to the small kitchen in the office and drink coffee . I appreciate it if you check my English or send a message . When I was 14 years old , she came to my house . A very , very beautiful goddess stays in a toilet . That 's why if you clean the toilet everyday you can become beautiful like a goddess . Because Stockholm is made up of many islands surrounded by the Baltic Sea . I am a doctor , specializing in anesthesiology . So I 'm searching the Internet for a long time . I take English conversation lessons online every night . Soon after that , the problem was solved . My reading teacher tells us that in this final exam we will have a reading exam , a writing exam , a grammar exam and a listening exam . But I have things to do such as the laundry , buying food , making some plans for an exam , studying English and even editing a movie ! Father and mother r . work as teachers . USA and Japan will go bankrupt like the russian economy 1990 I even do n't know what I can do for you . Actually , _ I like more kangaroo more than beef . I attached a picture taken through the window in my house . This is the first time I came here , and I hope I could find friends to By this tool , we can have more opportunity to practise our language ability I think . We can share each other 's cultures and languages . I was really suprised and happy for her ! ! Japanese horror movie . Summer is horror season in Japan . Japanese horror movies are very scary and interesting . I so hated cleaning , especially washing floors . And I like to rid of useless things . I must will have to find myself very embarrassing one day , than there will be no stuff to through away . Sometimes my friends are joking that someday I 'll turn to Monica Geller . ) ) Three years ago I visited Rio de Janeiro , Brazil together with my friend and her mother . They opened EVERYTHING : bags of souvenirs , pouches of cosmetics . . . The Brazilian officer opened her bag and found a pack of umeboshi and was asking her what it was . The officer opened the package . At first , I was saddened , because it gave me a feeling that she does n't think I am her friend because she always complains that she really wants to meet the other friends . I registered on this site a few minutes ago . Recently I attempted playing the guitar for the first time in my whole life . I go to guitar school and have a fun time with my teacher . But I want to play for someone sometine . I want to enjoy writing my diary and get to know many people around the world . One of my goals is to improve my English ability so I can communicate with foreigners . If you understand my goals , please help me improve my English . Usually , many Japanese spend the GW by going for an overseas trip or going to their parents ' home . However , I had to go to the driving license centre , because my driving license was almost overdue . Moreover , the driving license center was so crowded . They overcome their weaknesses through religion . ' Cause I finished my essay just now . So I cancelled my plan , and instead , played the guitar . . . I decided to have a personal trainer at home . Then I 'll play tennis with my friends , study English , and apply myself to my research to graduate from my university . Many Japanese English teachers use college entrance examinations as an excuse for them to stick to the traditional method . Friends is so funny ! ! I recently started watching the North American sitcom `` Friends `` . I ate an eel and he ate curry and rice for lunch . Hi THIS IS MY FIRST ENTRY ON THE WEB , I 'm a studant of English . In Spain we have a bad system to learn idioms . ( It 's not like the other countries in the European Union ) , in those countries when you are 18 you can have a normal conversation in 3 or 4 idioms , but in Spain you ca n't talk very well in English and you only can say the numbers 1 - 10 in French . . . hahaha , I should learn as much English as I possibly can . I worked overtime today . I enjoyed this trip . I started to study English yesterday . I 'm very tired . Also , it was exciting for me to play with my niece ! I expect it will arrive tomorrow . So at 10 o ' clock p . m . tomorrow , I 'll be going to my hometown and maybe , the morning after tomorrow , I 'll have been there . I thought `` I need to learn English because I want to make a trip to somewhere I would like to tell you about yesterday 's lunch . This sounds more natural First , they did n't separate the non - smoking area from smoking area . In fact my teeth is not so great , since I didi n't know how to brush my teeth when I was child . It was fun for me and maybe they also enjoyed the story . So I said if you really clean your teeth , you wo n't have a bad tooth like me . There are many interesting places though , but it 's really crowded everywhere and rather dirty , and it also makes me very stressed . My co - workers all quit their jobs because of depression . . but it is also very stressful work . I am studying English now . We did n't feel like sitting in a hot car so we went to there by bicycle . It was a little funny because we rode down a strange road because my boyfriend thought it was too dangerous to go on streets where there are cars . Someone else said , `` a teacher has authority because he can educate people on not only ( academic ) subjects but also ways of life . `` I understand any situations , they have a different purpose for using the SNS . I know I need to be confident and patient while learning another language . Anyway tomorrow is Friday . She is going to have the baby in October . But It 's unbelievable that she is having a baby at such an early age . I do n't have a cavity , but my teeth are poorly aligned . I have been studying English for many years but I am not yet good at writing English . To improve my written English , I joined Lang - 8 today . This summer , I had an opportunity to contact with an African - American , but I could not understand what he was saying . I went to a ritzy restaurant . I always nibble food like pizza , hamburgers and spaghetti . A Japanese novel I think that it is too difficult for foreigner to read . She said , `` Outside it 's very cold ; would you like to borrow your uncle 's socks ? `` Of course , it 's a very common operation but when it 's happening to me , it 's much more dramatic . Today is August third . When I finished studying at my cram I was happy because it has n't rained in Taiwan for two or three months . do to attract the man . In Japanese culture , people clean their house at the end of the year . I want to improve my English . However , in the middle of ( the ) development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` are becoming popular and more and more people are interested in recording their activities and making their lives better with ideas and tools . Normall , y $ 20 a week for each person was the regular price . Everyone who registered on this site would like to practice , and they need people to correct their writing skill . Since I am not an English native speaker who is familiar with writing skill . So I concluded that my learning process is best experienced from other peoples mistakes , especially the best writer and a brilliant helper . Yesterday , I went to an Onsen near my home . I have nothing elseto do so I powered on my laptop and amchecking thelang - 8 site now . Different from our Chinese TV series , plots of American ones are more intriguing , which are containing more information . So I choose this picture which was taken at Fushimi Inari Shrine which is famous for having thousands of Torii in Kyoto 2010 . 12 . 31 . So today we 'll go there together . I hope our conversation will be fine . First of all , regardless of living in a global world , we still can not stop wars and many countries have illegal weapons . Although the human lifespan is longer than ever before , we still have to combat diseases that are lethal to humans and animals . Maybe some news from officalsare not true . I was very perplexed but I managed to explain my innocence . It happened at 4 o ' clock . I ampleased when I can hearthem singing . However , I was just lazy temporarily . Everything that I do is recorded and is going to accumulate in my body . I studied English at school 6 years ago and now I 'm trying to learn it again on my own . He has been a fugitive for two and a half years and was hiding in my Is this sentence grammatical ? I felt like a salesperson visiting the door . I wish I could have these wisdom teeth pulled out , though rumours say that it would hurt the nerves and made one stupid . There are a lot of tourists from various countries in Japan . Besides , on Oct . 15th , our college will have its celebration of its 80th anniversary . I 'm very lucky I can witness this important event , and I 'm also very honored to be a volunteer for the anniversary ! I think that it ` s important to study hard and have hard time ( ? ) a lot when we ` re young . Besides , our team virtually does n't have a player to replace my position . It was delicious . Last week I got a few orders . I feel better now , and I can forget ( about ) it because I wrote my complaint here . What a beautiful and wonderful movie / film it is . On Friday , I went to my friend 's birthday party at Shevron Renaissance . After that I went to `` The Fiddler `` . My first English diary has not been corrected , I do not know why not . Since I have bad stiff shoulders , I welcom the campaign that we don ' t After three hours of simmering , however , it all came together . = It was okay . We do n't have opportunities to express ourselves in English . I can not explain the reason , perhaps Sengawa has a loungue atmosphere . So , I would like to make some junk entries here which are completely meaningless and trash and from which I ca n't expect any positive comments or corrections . Maybe because my summer holiday is coming , and there is only one exam which will be heldin ten days is waiting for me . It was so palatable that I did not notice when I became really full . Eating slowly makes the feeling of hunger disappear more quickly I did not abide by the rule . Instead , I just pigged out and now I feel stuffed and somewhat drowsy . Recently , I 've been busy , so I could n't write a diary in English . So , I tried tonight . For the first 3 months , I had been very busy and had not been sleeping . It 's because I want to improve my pronunciation . But I do n't know if my pronunciation is OK , or not . When I went to a neighborhood beef barbecue restaurant , which has many students because of how cheap it is , two of my friends and I ate raw meat . My friends , not I , had stomachaches . I hope I can return your help in the future . Today , I read that Japanese law now says a nuclear operator has to keep the general public radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that the general public radiation exposure has to be kept below 1mSv / year . In spite of that , Japanese government said that it is OK to expose radiation upto 20mSv / year . I think this is too high , especially for children since they are more sensitive to exposure than adults . Can you tell me the difference between `` can `` and `` be able to `` ? What is they difference in meaning ? I brought her to a hospital , so that 's why I 'm late the class `` . My husband , mother - in - low , son , daughter and me . I 'm a Japanese girl that 's learning English at the Kansai Gaidai University . The black car started to move again when the traffic light changed to green When we crossed the bridge , there was a big intersection . The traffic light was ( showing ) blue . If I had been caught , I would have been killed or beaten up by them . Macaroon is a French sweets . My daughter is really looking forward to seeing the house of wax Today 's menu is tuna sandwich and milk tea . I look forward in going to the cafe every Tuesday . Two or three years ago , I tried to learn English because it was needed for my job to communicate with my colleagues abroad . Last evening , I got insomnia and could n't fall sleep until 3 : 00 am . All kinds of things came to my mind : work , study , life , family , friends and so on . It 's difficult for me to hear speaking at ordinary speed . I feel very uncomfortable today . From last week , about ten people from Los Angels have been staying at her church . Recently , there was a Christmas . but I had a special day on 12 / 26 . when I went to her house , her Hong Kong friend Tiffany was there . Then , I was very nervous . cause it was the first time I 've talk with a native speaker of English . the year 2010 is almost finished . the picture is of my breakfast I ate . The doctor told me that the cause of the symptoms was my warped pelvis and At first I had planned to travel with my friends , but at the last minute I pulled out . But anyway , there was still a pain in my shoulder . . . But I think that my writing is not good enough because I have no practice . My Buddy , Koflach KC725 Racing Comp , because the inner was worn out , had gotten hard for me to ski with for a full day . I woke upat 6 o ' clock this morning , then I got dressed and I had to hurry , because my friend and I were going to the beach , but he was late and I ended up ( plus idiomatique ) waiting for him for a few minutes . You know the Vietnam War broke out in the late 20th century . I think that America would n't have fought against Iraq and Afghanistan this time , if Americans had learned something important from their failures . I saw it in a theater yesterday . I 'm so clumsy that it still takes me at least 10 minutes to open a can . I am a member of soccer club . But there is some fun in my school life . We will conduct research for about one year , and our goal is to create a similar proposal for Japanese open innovation . We are now learning about open innovation in Europe , US and Asia as compared to / with Japan . The next day , I took my computer to another specialist , he identfied the cause quickly . I suggest you to employ someone more skilled and with a better personality in order not to cause your customers to lose their time like me . I said it is nice we learn about other countries . I like my country but I also like other countries . One of my friend asked me before whether you like other countires because you do n't like Japan because most Japanese that go overseas because they do n't like Japan . It cause of my country 's system , I feel . And I know that I am curious about all things , and it does n't matter whether it is in my country or some other . I was happy because we talk about each other . And I touched a hamster . I could n't use all of lang - 8 's functions before by iPad , but apparently now I can use all of the functions by iPad . Would you mind telling me how to get it at the discount price that your invitation letter said . This evening , when I loaded on the news web 163 . He was only 48 years old . He was very excellent that almost every Chinese man knew him through his news report program . There are more diseases from pollution of our environment , so we should protect our surroundings in every day life , so we can enjoy our beautiful lives . This month I have written 48 journals . Can Japan national team win the game ? The announcement said that some people might have a heart shock because around the top of some attractions , the temperature was too low . I am going write about a person who is not only respected , but also successful . I have learned english for more than seven years now . My mother recommended that I buy a cheaper one , but I wanted to buy an umbrella with cute characters . I 'm looking forward very much to sees my friends and family : ) Though I ca n't help worrying about places that have been affected by the earthquake , I 'm going to go out more frequently . I feel refreshed . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sense of . Because , the big earthquake came to Japan in March . . Here , I am studying EE ( electrical engineering ) in graduate school . This sounds boring and difficult to others . I got ta go , so I hope you correct my English writing and that I can be your friend . I found an interesting article in a magazine . Does it Make Sense ? When I hear someone say `` Does it make sense ? `` , I have a feeling that the person is either getting impatient or just being rude . However , I am not a native speaker . My opinion is not for certain . and in one of episodes , I heard the phrase , `` getting back on the horse `` . Can anyone explain what `` getting back on the horse `` means ? Are there any differences between them ? Zousui is a Japanese risotto which is good for hangovers . My wife 's zousui contains sliced Japanese radishes which are supposed to be good for you when you are feeling sick . Speaking of zousui , Japanese sometimes eat zousui or `` Otyazuke `` ( rice immersed in Japanese tea ) at the end of drinking . However it is probably a strange custom for Western people . I had an experience being rejected with a chuckle by an American and a German when I proposed that they have zousui when they finished drinking in Izakaya ( a Japanese restaurant and bar ) . `` Let It Be `` was released after * album but Abbey road was their last album , because they recorded it later . It is useful to me because of the English subtitles and it 's free to watch . I am surprised by them . It seems that I will have to watch the whole episode each time . Indeed , sushi tastes good if the chef is nice and tastes terrible if the chef is not nice . But traditional Japanese cuisine is different from sushi , tempura etc . There are a lot of restaurants are in Kyoto . But you can find good Japanese cuisine restaurants in Tokyo and Nagoya , too . Becouse , I enterdmy bankpassward wrong three times . In Japan Japan TABACCO INC which produce and sell tobacco is very influential in many areas , for example the media , the Federation of Economic Organizations and politics . The tax on cigarettes is extraordinarily low in Japan . However many politicians opposed it and the policy was abandoned . There is a person who is against increasing the price of cigarretes in the medical field too . He always makes comments in the media like `` what is the scientific proof that smoking is dangerous to our health ? `` `` Can you prove the relationship between smoking and health ? `` `` Of course I dont need to say anything about passive smoking `` It is obvious that smoking is bad for our health in Epidemiology , but he insists that there is no perfect explanation , so we mustnt impose a special tax and exclude smokers I got a small gift from an English magazine company today . Some Japanese are getting crazy about this , even they do n't drink that much wine regularly . Almost all the people there felt the red wine had a raspberry or cassis flavor . The pregnant was sudden , she said `` I 'm really happy , I 've never felt like this before . `` Many of my co - workers helped me learn the new system . I went to the wax museum . The museum was brilliant . When they looked closely at the airplanes , my elder daughter was frightened of the sounds of takeoffs and landings . My younger daughter also began to run a race against an airplane . Oh my God , I 'm crazy , first I do n't love him , second I think he ca n't finish with her , but he does n't listen to me . I do n't know what to do . I am looking forward to the dance class on Friday Afterwards I was bitten by one of them and got hurted . After that , I went to the hairdresser 's . Oh , my sideburns went away : D They work for our subsidiary in America , but I had not met them before . When they went back to America , They told me ' Learn to speak English and come to America ! ! ' So , what do you think about it ? Last Thursday I got a homework assignment to write an article about a famous sports person using emphasizing phrases . and this is the first step to learn English ! ! I have never studied English seriously before , but I believe that my English will improve if I study hard . The snow is beautiful , but it 's so cold : ( But I am still looking forward to going to Taiwan . Unfortunately it was very windy and cloudy . Kim Yuna 's performance was excellent ! ! If I spoke more English , I could make many foreign friends . So we laughed . Of course , money is very important for living in society , yet , we should not forget that this is an illusion made by human beings , much like laws and countries . My niece who is 5 years old came to my house and gave me a souvenir yesterday . Twenty minutes later , I found that my stomach was making some sounds . I could n't concentrate on the exam . Tuna is reallygood , so I hope thatbreeding tuna will be achieved in the near future for tuna loversall over the world . He said to CNN that `` I can do anything , I can be anything `` I often watch several sports games after I finish exercising and studying . It 's a live meeting by phone . There were people who work in other countries participating in the conference meeting . Others are hanging wind - bells and bamboo blinds as devices to create that `` cooler feeling `` for getting relief from the summer heat . In Japan , we can watch it on Sundays , so I am in the habitof watching it . Creating a virtual life that / which correlates with your destination is the best way to get it . When I get tired of studying , I can take the stiffness out of my face . Today , I am joining the big family ( lang - 8 ) I am a chinese girl . I want to make good friends here . I 'm a beginner learner of English . I read an English newspaper about art in the morning . I tried to memorize new grammr ( grammar ) for the next lesson . Today I met a foreign couple . I heard that there are a few foreign people who do n't eat raw fish . The woman was almost not eating raw fish . Recently I have had a keen interest in taking photographs again . I am sitting and enjoying the view from the window of the hotel and I feel a bit regret because I am going to leave Nha Trang tomorow . So please search for me ! ! ! ! ! ! Some people say it is due to the influence of electromagnetic waves . I could 't eat it 1 year ago , but now I am familiar with the spicy curry . On the way to there , I found the big rainbow crossing a river . And If I have Chinese friends , I might come to like Chinese as an individuals at least . I believe her rival , Asada Mao will do better next time , ^ ^ although in today 's game , she made some mistakes . . If you want to say `` of coffee `` , then it would be qahwatan ( `` tan `` is fatha plus tanwin ) . When I was busy , I just wanted to have free time , I have an appointment with my friends tomorrow Good morning everyone . I go see my nephew , who had invited me . The first time I was in England was 4 years ago . I liked the indie rock music of the UK , it made me want to study English . I hated English , but now I like English ! Rakugo is one of the Japanese traditional art of storytelling . Our oldest son went to Australia this summer for a week . Fortunately ( fortunately ) Grace got her space in the car . My husband set up the hummock between the trees for the children . First two years , it was very hard like I 've never experienced . I hope it will be good opportunity to get my motivation up . In my prediction , Hideo Higashikokubaru has a slight advantage over the others because of his publicity and his achievements as the former governor of the Miyazaki prefecture . When it comes to the types of damage done to crops , in Australia `` fire `` was the greatest After that , we went to a bouldering gym . Bouldering is a sport in which you attempt to climb a wall about 5m high . We practiced bouldering for about 2 hours . First of all , I have to thank `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me . It was really helpful . This morning , I suddenly wanted to make a Spanish omelet . I really missed her Spanish omelet , so I decided to make it myself . Instead of potatoes , I put tometoes into the omelet . I recommend you try it when you make an omelet . I am turning into a lonely person . When I was young , I fell in love with American - style junk food such as pizza and hamburgers . At frist I thought that is like English language but not really , It is for people who can not hear so they converse through signing . good night from Thailand now . I went to a chili festival in Fremantle today . I hear that the best way to studying English ( especially reading ) is to start by reading very easy / simple stories . I 'm sure this is n't my general level English because it only measured my writting skills . I invited two young ladies to come to my hometown , Kamakura . The first video clip was taken in Torres del Paine , a place near Chile . This place is coincidentally located in South America like the the place I introduced just prior to this . Since I did n't answer with the number of the apartment , he asked me again ( a bit louder now ) where I was going . She sent me an e - mail , informingme how she 's been geting along . During this time - space travel he found his first love , Livia Beale starring Moon Bloodgood , who left him without saying goodbye 8 years ago and disappeared since then . I decided to go back to Japan . I 'm going to Turkey ! I 'm going to Turkey with my customers tomorrow . I met with my friend 's friend last night . Basically , this is the first time I have spoken with regular people . I will keep on making an effort to write the English diary on Lang - 8 . They should control themselves although there 's the word ' youthful mistake ' . avoid : We should avoid direct conflict when we disagree . delay : The flight from Taiwan to Japan was delayed because a Typhoon was approaching . interfere : Some kids say that they ( ? ) do n't want their parents to interfere with them , but actually kids ca n't live without their interference . Answering my own question : interview style Nara is one of Japan 's more traditional prefectures and is famous for its deer . I have just joined this site and I do n't understand how to do corrections , not comments . I tried to correct some people who want to learn Russian , but I could only leave comments . And She recomended me to do it . But the classes will start the day after tomorrow ! I have been so depressed and sad because he was leaving . he did n't want to spend four days with me before he left just because he is tired of seeing me depressed . I 'm going to Glastonbury Festival from Wednesday . Or I want to go backpacking around Europe . Autumn is just around the corner . Everybody at the circuit immediately regarded him as being special . Only optimizing programs so that they use the CPU or multi - core CPU more efficiently makes me happy . And my teachers ca n't do anything because it is my friends ' last year of high school lol ! So I 'm happy because the holidays are coming and I can get out everyday with my friends = D I want to go to America , Britain , and Australia . I would be grateful if you could correct all my mistakes . I am studying at the Gymnasium No . 32 . Minsa is very well known . This beautiful woman fabric can be found in gift shops throughout Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the people , their families and the village . My friend said his relative who is fifteen years old is going astray recently . those are very expensive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alcohol is from double to triple price of Japan one . Additionally , the government manages them strongly and if they go wrong once , it 's very difficult to recover their career . They can buy cigarettes and alcohol , and also drug . We watched a comical movie and drank together . Recently , on Saturday and Sunday , I helped out at the preliminary games of a senior high school baseball tournament . In particular , I activate the electric scoreboard whenever the teams get a strike , ball , out , etc . I also keep the score . It 's very fun because I love baseball so much ! ! ! I am taking theTOEIC test , which is a famous English test , next weekend . This hotel is managed by a nice woman , she is about fifty years old and she treats us as if we are her own daughters . What I learned from today 's lesson is that I have little vocabulary , so I decided to do some difficult paper work . There are four different plastic bottles and a can of green tea . If not , you should go there for a day trip from Budapest , otherwise you will be obliged to stay at pricey hotel . I caught a cold . As you can see , they were almost naked with the exception of a Fundoshi . It is a type of Japanese traditional men 's underwear ; I do n't have my own , unfortunately . Sometimes , though , it is really difficult for us to keep our motivation high to do it for a long time . Although , It was so chilly , I felt very good . I thought that art and business are unrelated . ( or unrelated field , right ? She also is interested in social welfare and social irregularities . I do n't agree , which one is right ? ) although , no doubt about that he is much more famous than she . Besides that , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street resteraunt ^ ^ Nonetheless , there are many buildings here that are several hundred years old In software business , English is one of the most important languages because almost all major software is created by the USA . Technical documents are written in English . The time for enjoying the blooming flowers this summer was so short ; I felt sad . It is Kansai - dialect . Please help me with my English . I had a good time with the little cute girls . The TV program is going to be on until 0 : 55 a . m , therefore I 'll have set it to record ! I was going back to Tokyo form Izu on Sunday but I could n't because of tsunami forecast caused by Chile 's earthquake . Railroad company decided to stop all their trains until 5 pm on Sunday . Many news sites provide us with voice files and scripts of the everyday news . Nevertheless , some companies still take advantage of the Japanese with ' English complex ' to advertise suspicious items . When I see a sentence or a word , I can remember the meaning of it . The king said to one of his servants if we bring one day from January ? `` Janually is an auspicious month . from February ? `` All children have dreams . But I think a lot of college students do n't have dreams anymore . I bought some English movies . I do n't know what I should do . I thought I had to spend time at McDonald 's or a place that is open for twenty four hours like Karaoke box , but luckily I found a private room at a net cafe even though rooms at the net cafe do n't have any locks and it 's a little difficult to sleep without thinking about security . I had a banquet today in Japanese restaurant . Probably , the picture makes me who I am . I believe my dream will come true . But now , I noticed that I 'll be having my presentation tomorrow . When I was young , I read through this comic . I am happy today , I can spend time checking e - mail and reading English books . I can write English too . Tomorrow I must arrange a document for the employees in my company I have a job far from my house so I must feel tired every day when I get here . Before I go to the company I cook food to eat there . I ca n't cook a lot , just omelette . I must read books before I sleep today After watching it , I became positive , and I think It is important to do n't be afraid of anything . Her director recommended her to quit because he thought that her work was not important and that the other staff could do it instead of her . I have a boyfriend who is younger than me . He is 6 years younger than me . I was in love with him a lot in the beginning 3 months but now I am confused whether I love him or not ? We have been together for 7 months and we stay with each other all day . Recently , I have had a problem with my neck after I hurt it 2 weeks ago . It is very useful and makes it easy to write English diaries on the train . I want to become a translator especially of the movies . It will be so hard wrok because words that translator can use in a line is specified by the rule of translation . I do n't know how long I will spend time , but I want to become a translator Well , I 'm going to buy some ingredients for our lunch after this post . In this country , foreigners ca n't buy flats except condominiums which are super expensive . But there are many foreigners in Singapore , and according to some websites , 45 % of people in Singapore are foreingers . In Japan foreigners still can rent rooms from real estate companies . It 's definitely because many people want to live in Singapore for the rest of their lives . I know that English is supposed to be people from England . Is this correct ? Learning a language takes / requires patience , motivation , and opportunities to use it . The mouse ' name is Chu . I created him . He can fly because he is a supermouse . He knows he is special . They should have considered their plan more carefully . I had a vaccination against flu today so that I wo n't catch the flu when I take the entrance exams for university . I actually like having an injection , but it hurt much more than previous ones I 'd had : - ( I have to have it again next month . . . ) Also , I want to know which Japanese grammar I should introducefirst when I teach survival level Japanese to my foreign friends Today I went to a Yakitori restaurant with my family . coated with a sweet soy - based sauce called Teriyaki Sauce . Do you I can guarantee there are no young Japanese people who do n't know this song I read a few pages , it is very interesting ! I 'm looking forward to continue reading . My recent worries are that it is too hot in Japan , and my back is aching . . . . . . He looked embarrassed because I did n't get angry before . `` The Academy consists of many departments : The Academy also includes / There is also the Institute of / for Advocacy and Municipal Law , and the Institute of European Law . Professional educators * who have Doctoral and Candidate Degrees give lectures and organize tutorials . * more formal ( The ) / Graduates work as officials in central and executive bodies of power . Some graduates later / eventually become judges , prosecutors , and lawyers . I was amazed by how realistically the author described the thoughts and actions of the main character . What 's Pirate English ? When I was trying to change the language from Japanese to English on Facebook , I found some other `` English `` es there . What I saw on the screen was really unfamiliar English for me . In Japan , customers always come first , so we have to treat customers like a god , so that kind of thing ca n't happen . But I 'm sure many people are stressed out and really want to relieve their stress , so I also think he is a hero ! ! Other members did n't want to dress up as seafood but nobody stopped him . Before I passed them my clothes , I thoroughly checked in my pockets , and I found about 60 dollars . Children could carry out experiments . Yagyu pays for other regular customers to eat food and drink alcohol . Since then , he has n't liked to drink and thinks that his vice is drinking alcohol . They like to cook with sugar . Sometimes their dishes taste a little strange . And I must mention the terrible traffic , Bangkok has the worst transport system I know . For cities other than Bangkok , the situation is much better . Other cities are quiet and beautiful . Time is useful and life is beautiful . Someone told me that and I believe it , Although the weather was hot , I felt merry . Because one of my French friends said that she will go back to France soon , so she asked me if I can take a leave and go to Taipei with her . After I filed for a leave , she told me that she needed to go back to France earlier . I felt really happy and sad . These days I am busy because I have a lot of work to do . Her American jokes make feel happy and I think it is the difference between American jokes and Japanese jokes . We visited almost every city in Holland , but by far the most beautiful was Amsterdam . Now we 've gained more experience , I would like to travel again some more . Today I helped a friend with work from 5 PM untill 8 AM this morning . in my country you can easily buy the `` fake `` thing . I took a picture . they were my favourite cigarretes . ( I do n't smoke anymore . ) They were `` run out of , `` `` put off , `` `` put up with , `` and `` put up , `` but since I did n't know their meanings , I could n't make sentences . Yesteday we had a hanami party , it means a ' cherry blossom viewing party ' in Japanese . Most of the participants of the party were working everyday on weekdays , so ( naturally ) they wanted to sleep on weekends . We shrared the only blanket and drank lots of whisky to endure the cold . We often hear that foreign people living in Japan are surprised by the Japanese train system . Today , I received a phone call from my family , because of the big earthquake New Zealand had . I found Lang - 8 to be interesting and very helpful to improve my English skills . I was very excited about the after party on a boat . So today I called the Apple support center . I like to read books . If it 's literature I can get into the story , if it 's society books , they can suggest to me ways to benefit not only myself but also everyone else . But today , I just studied English . My name is Shogo , graduated from Hiroshima University . I 'm good at creating new plans and unique ideas . When I become a working member of the society , I want to make full use of my creativity and receive others ' opinions to make things better . weil es viele Gegenden gibt , wo es selten regnet , und wo die Menschen immer an / unter Wassermangel leiden . The quality , the art , the characters ' emotion . I want my writing ability to improve so badly . I expect / hope that my English and Japanese will improve . The Lucky bags , called Fukubukuro in Japanese , are very popular . . . URL I 'm an interior designer , but I 'm working as a market researcher now . . . . . . . . . Unfortunately , one young couple that sat near us were very impolite since they were discussing the movie very loudly , this behavior is very irritating when you are trying to watch a movie . She released her new album in Japan . One of the remarkable sub - plots is that at first , humans created robots for themselves , but at the last , it backfired on them and the robots nearly destroyed all humans lives . My hobby is listening to music ! I want to study English to communicate with lots of people who can speak English . I introduce you to my dear pet . My family has a cat . We decided to keep it , because we thought it was sad and loved the cat . We thought it was a `` she . `` But I love love love him . I wonder what is your opinion , dear reader . . . time after time , unusual things and coincidences occurred more in my life . nearby the river , there is a restaurant that served pizza straight out from the oven . Self - introduction ! ! I can help you with correcting your material written in Japanese in return . This company continued aggresive overseas marketing , and as far as I know , today is opening day for this corporation in Japan . I decided to study English again to accomplish that dream after I entered university . I thought I was not good at English , so I relearned it starting with the fundamentals , such as pronunciation , grammar that I learned in junior high school , easy vocabulary and short phrases . But I ca n't do that forever , I got ta make my new goal . English is very hard . He will massage my muscles and stick needles in my neck , shoulders and back . The area where I am living is surrounded with many apartments and residents like me . It 's not the time for writing a journal otherwise I ca n't go back to my place and sleep peacefully . I had a deep talk with my psychologist . The reason why I do n't rue the past is that I think no matter how much we try , we ca n't undo the past , at least with contemporary technologies , and there 's no moment when we did n't choose what we 'd done . Usually it is rainy , cloudy and cool . Did you see the movie Karate kid that recently premiered ? However , I am in Singapore now , it is clean and safe here , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to work so hard and for a long time as slaves , no worse than them . I felt shameful while watching the movie , this movie showed foreigners how disgusting the Japanese culture is . That is why I wrote this letter to you . Though it is the big city in the north England , I hear that living expenses are low and the people there are friendly . Oh , it is not determined yet whether I 'll be employed or not ! now , I am studying English . I can read English books which are written with easy words . As expected , after the announcement by the health minister about swine flu , many people ran to buy masks . I went to a study group , so I could study for the midterm I have next Monday . We studied for over six hours and afterwards , I was so tired . That is because , in one hour I am going to see a football game and after the game , I am going to eat at a friend 's house . I decided to enter the Chinese speech contest this October . I 'm working at an English conversation school as a front desk personnel , but my English skills are n't good enough so I ca n't communicate with the native English teachers . I saw on the news that many countries are praying for Japan , and give us aid ; money , foods and so on . Sometimes genes have a great influence on children , but the quality of upbringing at home and teaching at school would be more important . It 's a pity that I have not found this website earlier . My son has been in the hospital for 9 days with a serious disease . I want to speak this beautiful language ! And our school has farming class , so some teachers have to work in the dormitory , but when my son enters elementary school , I will have to to do night duties . I wanted to talk to other Japanese morons about how big Australian cheese burgers were with a stupid face . But when an Australian Chinese staff member brought my meal to me , I was very disappointed with the Australian society . I gazed / stared at the cheese burger meal for 5 seconds . When I started talking about the weird news , I found him under my table on the floor . I have been finding books written in English for my studies . Recently , websites introduced a lot of books and digital books . Recently , free digital books were introduced . Digital books have many good points , for example the digital dictionary software that we can use in digital books . This April , almost all my friends are starting to work , so we wo n't be able to meet and drink easily ; but I hope that we will meet and drink a lot together again ^ ^ They are precious friends to me . Today there is a fireworks festival in my city . But , now I think this is good for me , I 've kept studying harder than usual since that happened . Merry Christmas Dear * * Association Staff I want to become a member of the * * Association , and I have attached an application below . I 'd appreciate it if you could register me by Jan . 5 . I have a lot of homework , and have to make a presentation . . Yesterday my boyfriend and I went to a nice place . Although it had been only thirty minutes since the festival started , the lobster was sold out when I arrived . . happy they understood each other before they had problems and I 'll be back on Monday , the other members will be back on Tuesday . I wish I could get paid - holiday for Tuesday , but I ca n't . I 'm looking forward to going next Sunday . Everytime I go to bookstore , there are so many foreigners . So I believe that I already know English grammar . I 'm learning a group of vocabulary to be accustomed with it efficiently . Shocking LaLa Mountain trip We got stuck in a traffic jam on the way to LaLa mountain . cockroach ! ! ! I could n't believe it . We killed ` ` five cockroaches ` ` that day and retained the ` ` corpses to show to the manager . Of course , this sence of security is one of the attractions of Japanese way of life but unfortunely we often behave the same in other countries as we behave in Japan . but it 's very difficult . I think my reading skills and vocabulary are good so I 've decided to write a diary in English on this side every day . A part - time job will start tomorrow and school days will startthe dayafter tomorrow . I am reminded of Steve Jobs , the CEO of Apple Inc . , who gave a speech to his investors while wearing jeans . Yet , English as a second language is so hard for me . There is a very interesting phenomenon in Hong Kong . nipple & pacifier I 'm not native speaker of English , and I do n't like talking people who do n't know well either . Fortunately , I like to go on journeys alone , so I made the decision soon after . To make matters worse , the cost of transportation fees is very high ! ! Since then , his mother has slept in her son 's bedroom for around one year , even though my patient 's daughter recovered long ago . I 'm studying Japanese , but suddenly I wanted to write an entry in Engilsh . but , after I came to University , there was no reason to study English . So , after work I did a relaxation exercise at home . That coaches ( or instructors ) are two beautiful ( ravishing , gorgeous ) women . For example , I 'll read a book , play on the computer , wash clothes etc . Hello , everyone ! The invention of the computer brings us a technological innnovation . Obviously , our life has changed enormously by the use of computers . I like reading comics and watching movies in my free time . If we had few vending machines , Japan would not have nuclear power plants and less accidents such as Fukushima would occur . It is unbelievable . We never wear coats in September or October . Even after my graduation , I will still often go the cafe . Because my grandfather and grandmother were Finns . These stories contribute to the understanding of Japanese archeology . Thanks ! One of the Japanese formula races , Formula Nippon , takes place this weekend . I stopped for 2 years and started playing piano again but with a different teacher : ) But I am scared of her during teaching sessions , because she gets angry easily and tells me to use my brain properly T _ T I found this website in a magazine . And surprised to see so many people here speaking several languages . Do I use this site steadily ? Being nervous easily is my drawback and defect . I tried to read ' Heart of Gold ' by Neil Young . Clearly , I lied intentionally when you asked me whether I will study in the USA . I have English class , Math class , piano class , and Chinese class . Anyway I do n't know whether I can continue to post diaries . I also try to read paperbacks ( ? ) , do some walking for my excercise , I have studied English a lot every day , but I can hardly speak it . I ca n't easily / comfortably make sentences for conversations Because my school work is interesting ( very fun ) , so I 'm having good time , but I will have to graduate from school next March . I do n't have confidence but I do n't want to change . I went to Canada to study ( the ) English ( language ) . I hope to speak English very well and to speak to people from all around the world . I live in Vancouver , it 's an interesting city . It consists of 8 written test which will take about 17 hours and 7 multiple choice tests which will take about 5 and half hours . A 2 - hour written test on civil law , a 2 - hour written test on civil procedure law , and a 2 - hour written test on commercial law . I have consecutive three days off , but I recently stopped jogging for a while 'cause it 's too hot and muggy these days . Today , I find this web when I look over the web of my friend . I find that it is real usefully for our to improve language level . I 'm very happy that I can express myself here . But we can not decide on the country . Last Sunday , my Taiwanese friend . . . ( And it was the first time for her husband to eat beef tongue ! ) Yesterday , I ate and drank with my sister and my boyfriend at his house . he cooked Cold Shabu , lasagna , and fried chicken . It was very delicious . I can bring some spring rolls and clues . ( clues ? ) He was teaching a half year seminar of gospel piano and he invited me to join . ( It was not for free ! haha ) The concert was very good and it became a pleasant memory for us . There was an aftershock and the building shook like pudding . And the ' progressives ' insist that the conservatives are using the death of the North politician to strengthen / improve / further their political position . Then , a gentleman from a foreign country escorted me . I 've always wanted to become an animator or illustrator , but right now I 'm studying journalism . First , the actors performed the process of dying with horror . Second , the special effects were added to the preliminary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his body . . . But my friend said , `` I want to meet their request . Culture is always changing , is n't it ? Of course , I like science but I really like English , too ! The heating system in my house stopped working two weeks ago . It has pictures of sandwiches uploaded on it . There are many unique sandwiches which were designed using ham and cheese to look like something . My boyfriend washed the dishes after dinner ; that 's nice . One of my colleagues will be transfering from Fukuoka to Tokyo . After transfering , he will work at the headquarters of Japan 's Air Self Defence Force . The students in the class congratulated him on this great news . I seem to always get into this situation . While listening to music , we can eat american foods such as hamburgers , spaghetti , steaks and so on . My dream is to go to Califolnia in the U . S someday . Nintendo shipped 400000 game consoles , and almost all of the distributors were sold out within two days . I thought they are famous thai foods . . . . crowded with old people , young people , men and women in spring or summer . Basically , the problem is that it 's difficult to answer with accurate grammar . Well , I will do my best ! I 'm not sure how well I can do . Maybe people live within the foreign country for a long time . Mariners starting pitcher is Doug Fister . I like his pitching style . I enjoy these programs a lot . I was bit afraid to watch without written help . There is comedy and romance in this show . This sunday my French friend and I will play badminton . I registered at this website today because I wanna brush up on my English skills . Well , I 'll write my next diary soon . : ) I went to a Chinese restaurant with a friend who is Chinese . I mean , he gets his money from hisparents . It will be released as a film in 2010 . 50 years ago there was another enormous earthquake in Chile . I saw through their sad or pathetic eyes so I decided to ask why Recently , ihave not beensleeping well , so I took these drugs . Sometimes we use foam balls or styrofoam , and when there is n't enough money , simply wrinkled newspaper sheets . On top of that , local governments relatively far from Fukushima prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . Many typhoons come to Japan every year , especially in Kyushu where I had lived until after high school . When I was child , I felt happy when typhoons would hit Japan because school were closed , so I did n't need to go to the school . I went to bed hoping that tommorrow 's typoonwould be very strong and it would bring much rains in this area Of course , he was dead . I remember him whenever any typhoon hit 's Japan . Weather forecast is currently saying that typhoon would hit Japan tomorrow . Today I 'll explain why I 'm studying English . While I was at work , the sound of an explosion surprised me . Thank you for reading . I plan to travel to Thailand next February . And next , I will try to find very , very cheap flight . I 'm looking forward to visiting Thailand . Recently , many water accidents have appeared around me . The flow of the water was stopped because of the wastage of the filter . One of my dreams has came true , and of course I will continue to pursue my other dream ! ! ! I bought 4 packs of Sushi and some delicious beers . My neighborhood has a ghost . That is to say , it 's a scar of glory ! if you ca n't get a satisfactory score , it means you ca n't go to the best I can write my mood or interesting things in foreign language everyday . Yesterday , I went shopping to buy a present for my colleague . Please give me your advice . I was very surprised to hear that . The weather ( news / report ) said `` there will be snow `` . The only things that I need to do are to take the ingredients from I am Biqi , and I want to study both English and Erabic . However , I am rather inept at both . I studied English in college < a very little bit > But now I realized GPS systems are very useful and even the cheapest one is very reliable . Very delicious sushi are very expensive . As a matter of fact , I could hardly listen to what they were saying , because they spoke so fast . Actually my pronunciation and intonation ( ? ) were quite weird . Everyone in our class was laughing out loud . I called the ETS lost and found office and left a message according to the directions . So far , I did n't get a call from them , but hoperfuly they will inform me soon . At 5pm , we met at the classroom , and walked to the pub . Some of them including a Swiss guy who organized the party for us , a Chinise girl and a South Korean girl were leaving Edmonton soon so we took many pictures . I reviewed her plan , which was for a server hosting company 's website renewal plan then I made a report . It 's a really nice place but there 's something a little bit troubling . . `` It is a good daily practice for me , so I can study English hard at the moment . Even the pleasure boats on the Tosabori River were covered with jolly lights . I happened to see the lighting ceremony , and a Governor of Osaka . my student got driver 's license . The K - BOX has a free car service , so we took the car when we went there and returned back to school . I think that life can be very hard and sometimes very simple . All of them use English or Chinese or half and half , I am not sure , so I want to hear to your suggestions . Second , I have sent all the agents ' ( have the VIP status ) full names to you , please check them . After that , could you get back to me ASAP ? I also want to drink bowls of gruel and eat steamed buns , which are not easily found at night . To become a skillfull computer user . I 've heard that Japanese tend to follow the majority and reject anything different . They always accuse me of being too stubborn and tell me off that why do n't I accept other ideas . Despite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summarizing his story , even though he had 10 minutes left for finishing his lecture . I saw the professor was upset about that , so I raised my hand and said to him , `` The professor seems to want finish his lecture first , so could you talk later ? `` and I stopped . Afterward , some of my friends came over to me and started criticizing me for it . They asked me why I did that thing to a vice - president , that was too impolite and so on . However , I also think it might be not about Japanese culture , just about me . I usually try to take a nap , study English . I lack exercise now . Now I am dying to learn English , since I will go abroad to study next year . Today is 16th of April , but it 's very cold , so I 'm wearing a winter jacket . A Nurse of Indonesia . If I could polish me . . . . I do n't like examinations even though I know we sometimes need them . I think everybody is born with their own abilities and possibilities . They really wanted to get a nurse licence and wanted to learn good Japanese . But we have a lot of work to helping our patients . I know that they were sometimes confused when they could n't understand quickly what we were saying in Japanese . Essentially , when we invite people from another country , we must help them to feel comfortable living here . They say it is too difficult doing both work and studying a second language . So , I brushed my teeth quickly and got ready . I went to a Korean restaurant today . I love Korean food . He also taught some tongue twisters . I do n't know foreign songs well , but I like `` Red Hot Chili Peppers `` . I 'm looking forward it : ) So I do my best to study English , and I made it a rule to keep a diary in English . This term , I shall keep a diary . But unfortunately , I do n't know any classes for beginners . The Japanese government sent her some gifts to show our gratitude because she donated a lot for Japanese people after the big earth quake happened . I read a lot of articles about Michael . Another of Guiland 's popular destinations is Fantas , which has a museum that shows what life might be like in the next 100 years and also has many shopping centers to enjoy . My native language is Chinese . I hope I can help someone here . I have a chemistry experiment at my university on Thursday and Friday . Unfortunately I have n't had any weekends to slow down a little , sit down and relax . A long bath and more than only 5 hours of sleep are the things I need the most . I think I did it badly when I chatted with you the day before yesterday . Maybe it was first time that I had communicated with a foreigner . When I wanted to say something I searched the related words in my mind , and I could n't expressed my ideas properly . . My voice and intonation may be abnormal , I did n't know whether my speech was sounded a little impolite or something bad , if I had , I ask your forgiveness , I did n't do it intentionally . We helped him in making the dumplings , but when ( all the ) people arrived , we noticed that we did not make eoungh for everybody . I will go to my friend 's house instead , and maybe we will drink a beer or some other kind of alcohol . I watched the movie `` TRON `` last Sunday . I 'm going to have a Christmas dinner this year with my host mother , who I have stayed with before . Last weekend I was going to get her family Christmas cards for Christmas but I could n't find ones that I liked . Last month I asked my friend , who is coming to Canada on December 1st , I got a sunburn the day before yesterday , and later bought aloe vera to treat it . Christmas is a big deal for me . This summer vacation I have always woken up around lunchtime I am interested to learn English = ) I am also interested in Japan : I want to learn a bit of their language ( I 'm registered here for this ) and its culture . . . Then , we went to a Thai restaurant . Although it was horror and I wanted to sleep , but I still finished all of the movie . When I went to bed , my mind was full of images of blood and guts ! I should not watch horror movies at night . . . . . . . . But in the morning it is very comfortable ! It 's my first diary . I must say : Chinese food is so good , especially in Taiwan . But my wife belonged to the brass band in her school days , Althought Science and Politics have been developed suprisingly and Our lives have been changedto be mademore convinient , we are not satisfied with now . It will be a really short stay . I suggest drinking coffee without sugar . I like watching movies with my friends . Wakayama is an old town with a beautiful castle built during the feudal age . To sum it up , VCS is a really a useful tool to backup the computer 's files automatically and smartly . I do not know the answers at all . In fact , I really want to improve my English . the title was `` ON Long distance education . `` oh , really difficult , right ? The day before , it lasted until two in the morning , so yesterday my husband wrote a letter and put it on his door . I thought that I could write in Japanese here and then it would be translated from Japanese into English . I went to Chinese restaurant with my Chinese friend . After that , I teach japanese language for him . I 'm a shy and unsociable person . After I finish my English lessons , I think English is a language used to express things and Japanese is Today , I attended a conference . For two days now , my wife and I have been walking to the park early in the morning The right one in the photo is Maccha Azuki ( green tea and red bean ) , the other is rainbow : D Today , I had seminars during afternoon , and evening , I 'll return to college for more and more seminars . I think , writing here is more comfortable for me , because I can think in English much faster ( Yatta ! ) . Watashi wa supein ni umaremashitaga kodomo no toki , irelando to furansu nimo sundeimashita , sonotame , eigo to furansugo mo sukoshi hanasu koto ga dekimasu . Watashi no otousan no okage de , nihon no bunka ni kyoumi wo motimasita . Boku no nihongo no reberu ni tsuite , takusan no kuni ni sumimashita node , betsuno gengo wo benkyoushinakereba narimasen desita , demo daigaku ni benkyousuru koto wo hajimemetatoki , hitori de nihongo o benkyoshite imasu . watashi no otosan to watashi no nihonjin no tomodachitomo nihongo wo renshuu shimasu , rainen waseda no daigaku ni ikimasu dakara ryuugakusei desu . I went to a bank to get a financial stamp to apply for a teaching license . That was true . Have you ever had any big disease or injury ? I really enjoyed it ! I 'd like to go by car , but my car has been broken since 2 days ago . I hope it will be repaired as soon as possible ! ! I want to speak English fluently like an American . I decided to go to America as an aupair this Summer . I 'm going to visit one preschool this Thursday . But I 'm a beginner at English , and I have never been to England before . But in this class we did a wide range of activities using english . For examplewe sang songs , role played in front of the class , didyoga while following English directions and so on . Also , it would be great to study another language , maybe italian or a slavic language ( Polish , Serbian , Slovenian etc . ) These cultures are interesting for me , and the words ( are ) not so hard to learn , I think . Distance is not problem for me , because it only takes 45 minutes by train . But the train ticket is expensive for me . . . It was quite expensive , but the atmoshere was nice . This is the reason why I have not been sleeping well recently . I am a college student . Normally in Tokyo , this occurs at the beginning of April . Japan has a long and glorious history , good public safety and a strong army , Tokyo is one of the biggest city in the world , Japanese science technicians are the best `` . The Japanese government and companies really know this fact . Having such a life for one and half years , my English skills decline . Because , there are n't famous Japanese celebrities in America . . Maybe Americans are not interested in Japanese celebrities . I do n't know why Japanese celebrities are n't popular in America . A funny guy from Russia said that he realized Japanese women walk with short steps , and he thought that it was because Japanese women used to wear Kimono . A girl from Sweden thought that it was because Japanese women usually wear high heels , and so they can not take very big steps . My favorite months are October , June , July and december . Everyday when I wake up , the first thing I do is to power on my laptop and log into QQ ( It is a software like MSN , in China it is the most popular instant messanger ) . Have you heard or thought about the size of the vocabulary of the average native American or British ? I think the most important thing in learning a new language is to memorize a lot of words and idioms until you are able to read a newspaper without a dictionary . I 'm going to pick up one of my friends at Nriata airport . I put emphasis on human resources development . They seemed such kind and comfortable people . I did n't necessarily take the exam light . Unfortunately I was too hungry , dizzy , sleepy and sore in every part of my body The oscillation continued for more than 3 minutes . Of course , it will be more expensive but it can take more time . 0 It 's not comfortable to live due to the bad plan of the house , even if we have some house renovation . Gaga is at least being truer to herself than those who mock her and those who try to be as bewitching as her . I could n't contact her but I guessed I could meet her if I went to her restaurant . Yesterday , I took part in an activity in my circle , university COOP . Then , Shinobu Moromizato , who was the second money list player in Japan , appeared behind us . Though she is the same age as my younger daughter , she is very courteous . However I did n't buy anything because I did n't have any money on me . So I replied to her on what I had been doing before and asked her what she had been doing too . Straight after we made an appointment to have lunch together . We spent the time just taking , using a lot of technical terms and eating a lot . Forgetting their daily lives , two mothers enjoyed their past golden days . We had grilled chicken there . Especially the chocolate cake they served as a dessert was excellent ! I think , I will sleep all this week like death . I normally get excited to see this unusual weather in Tokyo , but this time I hope that it will stop soon . They tasted good , were healthy , nutritious and warmed our bodies . There are sentences , which use both `` that `` and `` which `` . I am wearing a short t - shirt , which has blue and gray stripes . It was very fun . Secondly , without mobile phones we can spend more time with our family . Thanks to the mobile , we can easily keep in touch with other people , make appointments and speak with long distance friends . The mobile phone is not only for talking and sending messages , but also for enjoying music , taking photos and gathering information . I was watching the final with indescribable excitement . It 's rainy today in Kyushu in Japan . Actually , this is my first time coming to the US . But a little far away from the port , there are a lot of hills . If the flower 's leaves are a beautiful green colour and the corolla is bright and pleasant colored it tells ( OR : shows ) us that the flower is alive . I think that talking with somebody is a good way to get to know ( and understand ) each other . I want to be a high school teacher . Because I want to teach science to students . When I was a high school stuent , I did n't like science . I went to Barcelona by ship two years ago and I have no words to explain to you or , at least , to try to explain what I felt on that ship . My position is forward . my english is so pure that I wnat ( want ) to ( make ) some friends whose mother tongue is english . Because Japan has isolation policy from seventeenth to nineteenth ( centuries ) , Japan was not influenced by foreign countries / foreigners . Lastly , he mentioned Japanese AVs ( adult videos ) , which are considered to be pornography . When I shelled the peas , I dropped one pea . Japanese taste seems too light for him . At last we went surfing . Now I 'm here writing my first posting , saying hi to all in this community . Also , I 'm interested in music . I hope that I can do a performance on stage of their songs after finishing military service . Sharing thoughts , opinions and my photos with my close friends is really fun and interesting . So does it mean that I should n't go to Australia this year ? : p My husband 's mother grew sweet potatoes last autumn . If there is anything I regret about choosing to be a law student , it is that I underestimated the proportions of civil and business law in the field . it is so hard to spend enough time to do what I have to . Each of Japanese cake had a lovely , colorful shape , but 800 yen was expensive . I said , `` Will you please sell me just one of these ? `` The saleslady said , `` of course . `` Because I 'm a Japanese , she might have been nervous . Therefore , I guess our company recognized her skill and actual achivement and offered an extension . I have to get lime sulphur ! You can get some information about the earthquake in Japan from the URL below . I think that his is easier than mine ! ! ! The topic of this seminar is export documentation . Watching movies without subtitles is my way of studying English . American , British , East Coast , West Coast , etc . I believe that their writing ability is probably equal to their speaking one . But his English pronunciation was terrible . ( I 'm sorry . ) Recently I realized that writing is more difficult than speaking . I 've escaped written English training . Perhaps you have problems when you are writing in Spanish because you do n't know about the accent rules ! It is a superior souvenir for me . And , I will give you a souvenir . I think I 've remembered about 200 words in these 2 weeks . Fruits , vegetables , milk , chicken , and the ingredients for pasta like anchovies , dried tomatoes , dried mushrooms . I transfered the fee to a convinience - store today , so the daywhich I can get it will probably be Thursday . But I tried to write something even though it is short or boring . The sentences , phrases and words are filled with his affection for children and nature , and his expression is so beautiful that I was filled with romantic feelings and was able to imagine each scene clearly . I have read `` Grimm 's Fairy Tales `` , and Andersen 's , but I feel that Ogawa 's works are different from them , although they belong to the same category I am an exchange student , so I need host family to live with them , and also there are some exchange students in my high school , they also live with their host family . So this time they do want to change their host family . I hope they will have new host family soon . They should be more energetic , otherwise they might have to change to another family again . But today at dinner , she praised the cake , which I made , she asked me if I had made it ? Novac Dokovic became No 1 yesterday by advancing the finals in Wimbledon . It was said that he is the eternal No3 tennis player . Back problem I have no confidence in speaking and writing in English . and you know what ? Japanese students who are in junior high school and high school have english classes 3 or 4 times a week . and Fortunately at that time , I was really interested in English because I wanted to be American or someone who speaks English very well , such as native speaker . I was planning to go to high school in America after I graduated junior high school . It 'll be so wonderful ! ! ! ! My dishes are surely like paella in the sense that the recipe - book said so . Am I making sense ? Some of them looked at the business hours but did n't catch the small words on the top about the holiday information . He looked at me at once and suddenly he scolded me about my hair color ! He could n't overlook that I seemed like I changed my identity and lost my pride in being Japanese . So the next day , I had my hair cut really short , and dyed my hair black . Beyond that , I only could tell him `` Thank you for everything , everything you gave to me . `` And I left his house with saying `` See you later `` . So I decided to try to take more opportunities to tell my friends , my juniors and you who is reading my diary what I learned until now . I represent my honourable grandpa . One of my classmates from college already got married last year . I 'm a little surprised because it 's only been two years since graduation and I think that their financial status may not be good enough for raising a family . Since I need to use my English for my job and my boss scolds me about my poor English often . Furthermore , I always introduce our culture if you are interested in Korean culture . I hope we can become good friends . Should I get married and have a family , bring up a baby , and find happiness in my daily life as my friends who look so happy do ? I got an early retirement when I was at the age of 56 after 33 years of being an electrical engineer . Since then I have been studying English at ISS school , an English school in Japan . After about five years passed , I have noticed I have various difficulties : vocabulary , grammar , and so on . My friend told me , `` Noy , try to speak English . `` I could not hear my friend very well because the restaurant was very loud and I am not good English so I just said a bit . . Our 95 - year - old mother had been spending a day at a local day service center . That is , I always get sleepy after I hear the alarm go off , then I fall back asleep again . We went to a good restaurant , and had a good dinner . We have not seen each other for a long time . It 's okay ! ! I guess ^ _ ^ I 'm not supposed to have had anything to eat or drink , including water , but I already forgot and drank some milk tea . I sat down there and thought about my future . If someone asked me do you like english . I 'm probably making some mistakes since I am ignorant about this site . The final result of the Formula Nippon Round - 1 The final result was not bad considering it was his first Formula Nippon race , but most of his fans expected him to win because of his experience with Formula1 . I entered a site and chatted with an English teacher through a ( microphone ) Today I was late for work again . I was late by 1 mintute . : D KOICHI ( koichiben ) and Emily ( applemilk1988 ) are youtube video bloggers . They really do n't care about environment . Is this sentence correct : I did n't see my parents , because in the town fire had broken out and people must have been evacuated to save their lives . My father and I plan to tend to my garden every Saturday morning . Tough I reached my office late about 20 minutes . I am Nana , I 'm from Japan but I have been living in England since August , and I will be here for another ten months . He took me to this stadium for the first time when I was 6 years old . Of course , ( space ) I can do it . We should try to get some beneficial information even if wecould n't catch some sentences . . Only the elite can enter this company . Fukushima nuclear plant has already belched a certain amount of radiation there . My sister who tied the knot with a man who lives in Yamagata last year and enjoy their honeymoon traveling to Italy , she got pregnant at the beginning of this year . I have to pick them up at the pier soon . I think today will be a wonderul time for us . It 's quiet and comfortable . Already uncomfortable with muggy weather , their loud sounds makes me feel much more uncomfortable ! In autumn , the sounds of insects such as crickets , singing crickets or Japanese bell crickets , green tree crickets , and so on are very nice . I want to know about your idea about sounds of insects from many people from many countries . This is the first entry in my diary . Beside that his speaking speed was so fast for me : ( Of course my English skills were part of the reason . So what can I say when somebody 's voice is noisy like in the voice - chat room ? He said this place is a good way to learn English . But nobody asked me why I was late since they knew about today 's traffic jam . Most foreigners think that it tastes good too . Coffee beans are more effective than Coffee Mix when on a diet . I 'm so sleepy . I 'm sure that I have a lot of mistakes . or optimistic information , we would n't take action properly during a crisis . I can only speak easy English . All children , especially boys , have the experience of searching for a `` big treasure `` with their friends They were deeply grieved over their families ' situation . Goonies ( name of their group ) went in search for the treasure to help their parents . I think if I practice this , my grades will increase . Now with my friends I live in a very nice house with a balcony and four rooms . We only finished moving yesterday , because on Saturday soon after we arrived we started an opening party . A famous middle - aged American actor , who went to Japan for a business trip , met in a hotel with a young pretty American girl , who came to Japan with her husband , who was a busy photographer . Please read my daily post and correct my grammar . I read the newspaper before breakfast . It 's wonderful . I 'm looking forward to watch next 3D movie , Alice in Wonderland . I have a major in Architecture , but now I develop PC software to do business for employees only . I ca n't speak and write English well . Recently , I 've realized there are many similar words in English . Please let me know the differences . I like princess characters , so I enjoyed it so much . Drivers license in NY A drivers license is mandatory in the US . Even though it is convenient enough , most people tend to apply for a drivers license . That 's because the license is also used as identification . I take English lessons once every week . Factory owner , who professionally breeds pugs , said me that it is a characteristic of black pugs . I can remember running around the supermarket We also listened to some little stories from my dad 's CD ( a CD that came with a book from his English class ) , then we listened to it on the car cd - player and translated to portuguese to see who got what the story correct ! ! I have trouble writing an English self - introduction . I was very shocked by the news about the disaster in Japan , and I could n't believe the things that happend to my country . As a person who is taking care of children , I am really worried about mothers who are protecting their children without heating and water for drinking in stricken area . Yesterday , Motchy who is my senior student of my laboratory introduceed this SNS to me . This week I chose to learn French as my secondary foreign language next semester . and I thought about `` I want to go to abroad ! ! `` I must be more careful or I may set a fire . Toyota had grown continuously based on strong consumer trust . But now due to this defect , the company has been losing the public 's trust . Losing the public 's trust may collapse even a stable company such as Toyota . This restaurant has been serving very good mutton because they 've been raising the sheep themselves . When I woke up this morning , my wife had a Black eye . The first diary I 'm at a loss on what to write in my diary in ENGLISH . College students produced this show and placed a lot of artistic lights here and there around town . For example , I went to Victoria Peak , Tsim Sha Tsui , Jordan , and so on . I have nothing to write down anymore because I 'm exhausted and I 'm starving now ! about me I need to use English and Japanese to watch tv , read comics and go on a world tour . Tonight I went to a sushi bar with my family . Many sushi bars let you order using a touch panel . However , I realized that if I had told the truth to her , she would be hurt very much because she liked those clothes and the colour . In thespeed skating women 's team pursuit , theJapanese team got asilver medal , losing to Germany . She said that the Chinese are not diligent as diligent as before . I want to use the phrase `` over my dead body `` . They have had their own schedules already . This is a photo of a man walking on a tightrope over the void against the background of Rio de Janeiro in the sunset . I am really happy here . My new home is very beautiful . I am Hitsun ! Fuji is centre over there . I like intelligent and thoughtful people . But they ca n't help other children , for example , they cannothelp diarrhea children . I 'll go to the stadium next month to watch the national team . Several days ago , there were over one hundred school clubs looking for new members . since the sentence structure is quite different . Finally , I get out of bed at 7 : 00am . Come on , let 's experience this amazing world : D Once a week I take a tango lesson . When I close my eyes and just move my body to the tango rhythm , First of all , I want to change myself . He has a fatal diseaseand a student in his last class wrote this book . If the rain had started sooner , I would n't have been able to have my lesson . Someone read my dairies and told me that : what your said is too Chinglish . You can translate the title as `` My House `` in English . If you want to know what a Japanese family is like , maybe this manga will tell you about that . This is because I decided by myself to announce without asking them whether my announcement was convincing or not . Another altar in Berlin , is very similar to this one , , so much so that a long discussion has taken place on which alter is actually the original . On the first panel you can see a depiction of the birth and the naming of John the Baptist . The last panel is about beheading John the Baptist . Also , I talked with my Chinese friend on skype . When I returned to my house , It was time for dinner . Starting this November , I 'm going to go to Canada to improve my English and learn a way of teaching English called TESOL . You can see bazil , thyme , lettuce and tomato in the picture . Many university students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . Why does this sentence above use ' has basketball ' , not ' basketball has ' ? I 've heard that when women go through menopause , they 're more nervous and fickle than they would be normally . I love MOS ( not Mcdonalds ) . I like most fastfood restaurants including Mcdonalds but I think MOS is the best . Although I am very excited and I 'm really looking forward to going , I am worried about one thing : the temperature . Actually this is the biggest problem for me . I prefer a hot climate to a cold one . yoru ha hataraki mashita . Car wash to Jollibee to Greenwich de hataraki mashita . After the game , Okada who is the coach of Japan asked the chairman of the Japan football association if he will continue as the coach . I love this kind of movie . I want to write daily . But I want to write daily in English . Yesterday , my husband went fishing and brought many fish for me . The summer vacation is drawing near . I like to watch movies , so each year I am looking forward to see who gets the award . Why did `` Avatar `` lose many Oscars despite the having the best performance of the year ? I thought the competition was only for dogs , but everyone was there . There was also a mummy ( the dog ) and a witch ( the owner ) , and a hotdog ( the dog ) and mustard ( the owner ) . However , when I looked at the units carefully , I found the unit was KJ , not calorie . It is hard for me to walk around TDL & TDS all day ! ! Telling The program is about other TV programs I like , USA or UK drams , for example . About 10 seconds later , the raindrops suddenly became large and heavy . My English is at basic or pre - intermediate level . And I made it a habit to memorize what native speakers corrected . What do you recommend me to do ? One of my female friends suddenly said , The way to practice I found this website on a discuss board and it seems interesting . I 've been learning English for many years , but still have problems on expressing my feelings . It 's very convenient to go to other countries in Europe from the UK . It seems that it ( was ) the 5th biggest ( earthquake ) ( since ) 1900 . Munster city decided to ban cars in the city and use bicycles . Suddenly my friend said : Toshiya , you ca n't go back home because the train left a few minutes ago . I 'd like to explain Himeji castle . In my opinion , we do n't need to be strong and perfect to I love reading , so I love a book shop . When it 's someone 's birthday , we always make the presents by ourselves . there was an earthquake . By the time I thought about it , the earthquake was finished . Today when I was on break searching the internet , I found that there are really a lot of people who speak highly of this film . I 'll be a student , so I 'll have many student 's discounts . Though all of my friends laughed when I showed them the pictures . Now I 'm watching Macros Frontier while working . you can google it with `` * ( asterisk ) `` . And to search for an exact phrase , enclose the phrase in double quotation marks . Japan has varied climates , so there are unique local specialties in each place . At the shop in Niigata Prefecture , the employees carry plenty of snow next to the shop every winter . Did Santa Claus come to you ? ( Claus is right . ) School just started one week ago , so I decided to insist on writing here every weekend . LMAO , two Americans in the audience in that coffee shop were surprised when they saw Sunnie and I going in the one bathroom at the same time , and they were also surprised that we were holding hands all the time . They thought we were lesbian . If I correct someone 's entries , I can get ' stars ' on Lang - 8 . I want help from everyone whose English is good ! I am Nao , a Japanese person who is studying in India . How do you think Sony products are ? But after a while , some of thembecome tired of raising the animal , and inthe worst case , they abandon them . I 'm trying get in shape lately because I have put on weight . It might be successful if I keep dieting for a while . He also liked soju ( a Korean popular alcoholic drink ) . his cousin , owned a small yard , but there was only grave there . But the government wo n't do that because they get a lot of tax income from them . . `` Clarify `` is a very useful and common word in daily life . I 've decided to dilute my passion for everything British , with American literature . I do n't know American literature very well , so I would appreciate it if you could recommend some of your favorite American novels to me . From his movie , his harmony sounds quite eccentric , he used Aside from these , his appearance and behavior is also strange . Every three days I change the water . Today all my classes were cancelled so I had much more time . This book is about a traveling essay about Latin America . It is so fascinating and it 's an attractive place . In my case , since I 'm an elementary school teacher , the government adopts new teachers , we basically train by ourselves , principals decide which grade we would be in charge of , and we have to cope with all of the problems and complaints . My hobby is playing the piano . Recently , I made an original song and played it . Especially , I love gyoza . * I especially love gyoza . How do you say gyoza / gyouza in English ? Many my friends are going back their countries in December . I 'll try hardest on grammer , spelling and punctuation in my journals . Because today is our 5 month anniversary . I practice some tricks . recentry I am crazy about `` hannah montana `` ! We will be watching the movie ' Avatar ' . Controlling an avatar that is something you are not but represents you seems awesome . The members and I have practiced very hard for that show . As a result , it was successful . When somebody eats my cooking smiles and tells me it 's delicious , it makes me happy . Please send me a message . Good morning ! Before she started her IMBA program , we often hang out together . I can tell she does n't appreciate some Taiwanese culture . Tonight was fun for me . Our conversation was in English since I needed to practice for the up - coming interview . I do n't like Hollywood movies either . We played together , laughed . . . Of course , sometimes we quarreled , but then apologized . He was a Canadian army officer and made a fortune from the hydroelectric power of Niagara falls . Specifying my language goal . We enjoyed visiting Kamakura . In my next class , I have to teach a lesson , so I need to prepare a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , younger people , close friends or acquaintances . I taught them some things ! Today , I got a health check at my school . Nothing was wrong . Computer graphics is a very difficult field , so I often search for hints to solve a problem on the Internet . since I had no opportunity to communicate with them before . I finally finished my first semester in China . As it happeed , that she was n't with my friend at all . Recently , I 've been trying to remain calm and to alter the way I think and my attitude about everything . And it makes me slightly kinder to other people . Meeting with Alcohol As electricity has been cut off because of the earthquake , I can not cook nor eat food which is sold at a convenience store . The best one is a baked salmon rice ball and the second best one is a fried rice ball with various ingredients . I recommend you to visit Nagashima Spaland ! By the way , she paid 170000 yen for the painting . When I went into there , we walked down a slope which went along a large aquarium , which was cylindrical in shape . As the slope is spiral , it made me dizzy . We could see these fish right next to us , so I felt like I could touch them . One day my mother took me to a psychiatrist , though to be honest I did not want to go there . A big Tsunami has hit Miyagi , Hukushima , Iwate , and so on . This Tsunami is the biggest I 've ever seen . I experienced many things this year . I ordered seeds of a flower called solube YTT . A white flower blooms ( on ) the first day , The staff cheekily tried to make him apply for the half year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recently I resolved to be vegetarian to lose weight and because I saw shocking video which made me think about various problems ( I will skip the details ) . I watched a movie whose title is `` Land of Lost `` . In fact , I wanted to watch the 3D Disney movie , but the tickets were sold out . Three adventurers go to an ancient world , and they meet a monkey - man . Hi , starting today , I am going to introduce you to Japan . Actually she 's not a social woman , and she does n't have any opportunity to meet men . One is an English magazine , and one is a quilting magazine . In Japan , I had attended a quilting class for about 5 years and an oil painting class for about 10 years . The climate here always changes ; There was a typhoon only a few days ago and now it 's already a sunny day of over 35 degrees ! Before coming back home , I bought the balloons and the pump to inflate them . So I was very interested and excited ! One Italian guy said that he does n't like McDonalds at all , and that the Italian McDonalds is different from American McDonalds . Then , one Korean guy said that the Korean McDonalds has a kimchi hamburger . I do n't have a drivers license yet , but I soon hope that I 'll pass the test and a get one . But getting a car license is quite hard for me . Because I am worried about slamming and crashing with other cars . Fortunately , that has n't happened yet , and I hope it never will . She is supposed to stay in Arlington in Massachusetts . I think it 's very cool , if I could watch the english movie without subtitle written in japanese . And I believe that , if I do so , finally I can make a extremely beautiful girl friend . It 's only 12 : 26 and I ( already ) wanna go home ! I wanna try the real full - course French meal , or whatever you call it : S Recently , I could n't wrote a diary in English . I think that this has a nice sense of rythm . XD So , I have to overcome this psychological obstacle . . . . . . . First , I practiced speaking in english through videos . Then , I wrote an essay . Today 's topic is `` a park near my homwhome `` . Today , I had a tea party at Yoyogi Park in Tokyo with some members of Tokyo Toastmasters , the local activity group where I can learn how to do public speaking . The movie was very enjoyable . I recommend you to have fun in your own special style when you see a ' colorful ' movie like ones Disney produces . ( Could also say : I feel comfortable and at peace when I take them . ) Of course , I knew that I had no choice but to learn a foreign language if I wanted to be successful in the age of globalization . We all close our eyes before starting the game , but the thieves can raise their heads up , open their eyes and look at each other to find out who the other thieves are . After we begin the game , we guess who thieves are by discussing like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes and point at the people who we think are thieves . A lot of interesting andspecial TV shows are on the air in December . I 've justbeen so busy that I could n't finish watching ( and deleting ) the recorded programs ( T _ T ) . I applied for a position and went to an interview last Wendesday . Today , I made some sentences using dialog typing for learning I interrogative sentence . good moring everybody ! Last night my friend came to my house . she first stayed at my home This morning I made her breakfast . because she thinks I 'm a good cook . I wasted 2 months on my dissertation period . . . I wonder if my students will like it . From now on , I got to have sneakers on for a while . I like me as I am nowadays . I want to try to write some of my thoughts but unfortunately , I have n't read anything recently . Including me , most Japanese are perhaps good at Listening and THE DEATH OF MICHAEL JACKSON And my oral Englsih can deal with some easy topics . What 's more , I have also begun to read English novels such as ' The Red And The Black ' and so on . Some people say It is n't practical . . . Even though I 'm using this website to improve my pronunciation , in the following passage , I can never pronounce the same sounds properly . that 's the reason I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thought . Then I had INARI ZUSHI and mushroom Salad for lunch . I was not tired because I had taken a nap . And my neck is very good today . However my friend whois going together with me says that a natural disaster may strike anyywhere and whenever . We ca n't expect it . Since I have the experience of beingkept in the elevater by blackout of due to lightning . I am really nervous about these kinds of things . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowledge about your own country 's traditions because some people are interested in Japanese culture . It 's a Japanese traditional food eaten on New Year 's Eve and it 's said that this custom was started in the middle of the Edo era . Second is the belief that eating the noodles will cut off your troubles instead of carrying them over into the new year . I will be nervous ! ! Anyway I try to set up my account now ! ! Are they different ? The very quick responses really encourage me to study my writing skills ! ! After graduating university , I had worked as a chemist in Japan for a couple of years but quit the job to study English . I studied in Canada and England for over one year in all . After that , I became obsessed with English because I met a lot of people who come from various countries and learnt about different culture , history , food , and ways of thinking . ( If I had known the water in a pool was actually shoulder height ( or : shoulder deep ) , I would have tried three years ago . ) Anyway , I decided to give it a try and now swimming is my favorite sport . I hope to make my English more fluent so that my English would no long be an obstacle when talking with others However , there 's good news especially for me . The book was written by a twitter user . The book store near my house had a bargain sale up to 50 % . He told us that pronunciation is very important in the learning process , but he said we need n't worry about our poor grammar , because just about nobody will care about it when you are just chatting . Except for formal situations . There was a beautiful young lady in the show that was forced to leave her lover unwillingly . I know that it 's better to turn off the Japanese subtitles , but if I do that it would be hard to keep watching the movie and have fun . If I do n't watch them regularly , then I will not be able to improve my English ability , so I watch them the way I said previously . I feel that my vocabulary expands / grows by reading English subtitles . When I feel that way , I bring myself into feeling that I want to write more entries here . and I am really looking forward to these events . ^ ^ I have been looking for some sites which are better than this one , somehow , I still couldn ` t find one . * Increase the ability to concentrate . When we got out of the attractions , I found that my umbrella was stolen . Although practically the number of people who are wahlers has been decreasing in Japan , some people who live in these specific areas continue whaling to make living . just that it is more difficult to find the time to learn compared to when we are students . I think that the student who recognizes the importance of this privilege can make use of their college life for sure . Are Japanese elevators the only ones that have a door close button ? The opening sound is really familiar . I am eager to go to a theater and watch it . However I noticed him in the trailer ( maybe , full CG ? ) . Hi every one ! I want to improve my English skill ! Thank you every one . Incidentally , our opponents were much stronger than us . I could n't believe my ears . It sucked . And you are very good at drawing pictures . I can clearly remember Melbourne . Be honest , it truely works . I am studying English at SDA . Why do n't you just fill the fucking vacancy ? Why do n't we just keep silent and let time fill the vacancy . Hi , I 'm a student for product design 's master degree , and I have completed a work Iicall it Finger Dance , which is a kind of dIgital communication equipment for cold environment , and be suitable for outdoor survival and rescue in the ice - disaster or snowstorm . welcome to my blog to see my other works : This is the first time that the DLP lost their seats in last 50 years . - - > Now I have started `` The Namesake `` by Jhumpa Lahiri , which is really interesting so far . ) I try to stay fit while not using cigarettes . The pair of shoes I bought are Nike brand and they are available with the iPod plus sensor . When I was a child , I heard from my grandmother that there were many treasures ( buried ) under the ground at the end of a rainbow ! ! ! In the beginning I was a little bit nervous , but the conversation went smoothly ! Twenty minutes is such a short time and I had to say goodbye , because the international fee is expensive , this can save money for our company . Recently , I have had no time for myself . Sometimes it makes me tired . Without any interuptions . Yeah , finally , I opened my mouth . Three of my friends came to my home to study English together as usual this morning . It is a very fun place for me because there are many kinds of cool shops , for example apparel stores , restaurants , sweets shops , nail salons and so on . So , when I found this site , I was pleased with it and registered right away and then tried to write a lot . I do n't know if this method will lead to high score in the TOEIC test immediately , but actually , I really enjoy studying and I sometimes think in English now even during daily life . Then , I can somewhat understand what they say . My throat is in such pain ! We focus on difficult words and torture ourselves . During the holiday , I had to finish my school work , essays , and other important tasks which still were n't done . He had nothing to grab onto and hardly any place to stand . & nbsp ; However , there was a middle - aged man that was sitting in one of the priority seats . The middle - aged man looked at the old man and back at me again . I thought that his conscience was starting to bother him . I have to go to must work and perform my experiment tomorrow morning . To begin , I wrote my introduction . I am studying for my exams at the university 's cluster room , but I am freezing as the air conditioner is turned up very high . She went out to the new sun room that 's waiting for the materials to finish the floor where she found an old man . He walked into the incomplete sun room so Siri said `` Who are you ? `` . He did n't say anything for a while then Siri found that he had a name tag on his shirt and recognized the name . It is the internet that has had the most powerful influence on me by the prevalence of computers . I think I wo n't go anywhere so I 'll clean my room and I 'll cook what I want to eat at the time . For example , the shape of the rice cakes ( round or square ) , flavors of soup ( soy sauce or miso or sweet bean soup ) and other ingredients ( chicken or seafood and many kinds of vegetables ) . Fortunately , South Korea has developed accommodations called Jjim - jil - bang . When I was overseas , I did n't watch English news channels or movies . I could not understand popular programs , as I have no idea about their cultural background . I 'm required to learn formal words rather than informal . In my case , I 'm exposed to formal situation too often . During class or school , I hardly get a chance to use slang words . but statistics is very difficult . By the way I would like to know the difference between ' personal ' and ' private ' . So could you help my studying of English ? In Japan , we have a lot , like candied apple , cotton candy , takoyaki , roast squid , okonomiyaki , yakisoba , taiyaki , crepes , pickled cucumber , kababs , shaved ice , and countless others ! ! In my opinon , there have been many changes in America 's thinking . They want change and achive their hopes by voting for Obama . My hope was also that Obama would be president , and I am looking forward to watching the inauguration speech on tv . I have no doubt tomorrow will be a historic event . It 's origin is a mystery novel `` kokuhaku `` written by Kanae Minato , it got an book store reward in 2009 . I have to get the certification , which is called MCAS . So now I am not working , because according to our holiday tradition , we must meet our friends and relatives today to exchange gifts . This provides many programs to watch , whereas NHK does n't have so many . And after reading it , we had to explain and summarize it . Due to the pronunciation of a Chinese English speaker . Anyway , I had to follow her explanation and summarization about it . I just stayed silent . I am feeling nervous . I do n't know why , but I drank 2 cups of coffee at 4 AM . Both of them are from the same company , are n't they ? I decided to struggle with studying English , for the same opportunities that foreign costumers had visited . Furthermore , some of the main characters also died from that . I had class this morning so I had to get up early . . . . Staying up late is so tiring for me . In good weather like this , I want to meet friends and sit at a fire in nature . Consequence : We decided to go for a trip as a consequence of the long discussion . Today I begin my diary . It was 32 years ago , so I do not speak English . This weekend , I am going to take a test called ' Eiken ' . It 's always a pleasure to read your guidebooks about any place of the world , especially about towns I know . When the drama started , I felt I was having `` deja vu `` ! I am too anxious to make many good friends who come from different countries and from different cultures . I paid a deposit of thirty thousand yen . Today im very unlucky . And in bio I did n't finish my homework . ( teacher let 's me go to lunchbox . ) ? ? ? I like it when the sea is smooth and motor yachts sail on it . Sometimes you can see ( some ) coloured fish . People hung fish windsocks from their rooftops and wished for their children 's health and success . If a factory is not managed very effectively and efficiently according to specific rules , it 's prone to polluting the local air and water . An ideal community should be quiet and have fresh air . My best friend said , `` you should just ask him and do n't talk about your dogs . I remember when I talked about my dogs with the doctor , he almost yawned and I was a little bit emotionally scarred . However , the man 's attitude towards her is deteriorating . So far , you have n't shown any successful results . `` I was happy to pet him . When he feels good , his color is lighter and when he feels bad , his belly becomes a black stripe pattern . The instruments they play are guitar , drums , bass , keyboard and many others ! Did a typhoon hit Hamamatsu ? and I 'm writing a diary just to kill time until I 'm ready to go out . But on a second thought , I 'm learning English online , too , so I can keep studying it ! Of course , I want to keep writing daily on this site . By the way , after I registered , I can now use `` PhotoAlbum `` above . It 's difficult for me to express my opinion . I might have hurther feelings unintentionally . I worked for my new job for almost one month , and I contribute many of my `` first times `` to this job . For example , this was the first time I walked to an office that was n't only10 minutes away , or I ate a French dessert named Macaron , and today is my first time going to a photography studio for a photo shoot of our product Although it 's boring when we are waiting , I believe that when we see the pictures on the magazine everything will be worth it . We enjoyed it and felt happy ^ ^ So I can eat those without having to think which dish is cheap or expensive . It was ivory , long sleeved and high - necked . Japan has had a tough experience in the big 3 / 11 earthquake and tsunami . When I see the people 's attitudes toward saving electricity , I am reminded of our national character . This events often take place in summer . Thirdly , I like to make new friends and get to know more about the places I 'm travelling through . Mobile phones are becoming fashionable recently , there are so many colors and designs . And they have a lot of different functions . For example , you can use it to listen to music , to take a picture , to use the internet , to manage your schedule and even to watch TV . . . I do n't need too many functions . I have one but I do n't know all the functions of my cell phone . . . These days , most people have one . Sometimes it gets too expensive . . . We should be careful when using our cell phones . I 'm looking forward to belly - dancing and also to meeting my teacher next Thursday ! We study at different places . We both wanted to learn independently so we were separated by our parents . And second , It is easy to raise cats . I entirely understand that , and that 's why I want to raise dogs and cats . Now , humans control this world , so we take care of only ourselves . It had n't been strong enough to damage anything but it reminded me of the tragedy of Haiti . usually , I do n't make a habbit of writing in a diary on websites . . . I am trying to look for a sentence so I can ask you but I ca n't find it . It 's not a problem , I can read it by myself again . Things interested me . I 'm sure it will help you broaden your horizons . I commute to a language school . By the way , the illumination at the racetrack is very nice . Of course , I am one of those losers who regret their gambling . However today is Friday ^ ^ Besides , I can not read fast , speak fluently , or write quickly . grandpas , grandmas , everybody is welcome ! ! I have a presentation next Tuesday . When she found the truth , she was very upset about it at first . But now , she is looking forward of seeing her baby soon . So I 'm not surprised that she was upset because delivery would be difficult for herand it 's pretty expensive . Hiroshima is famous for the atomic memorial park and Miyajima . I did n't know him well , but I want to hear his interpretation of Paganini . Um I wanna change my life . I opened the egg pack in the refrigerator and found out the eggs were frozen solid . I was able to see skyscrapers and the Opera House from there . It is clean and comfortable ! I would like one day to leave my country and travel to England , but the problem is that my english is very bad and I do n't know enough so I could travel there . . . I will take part in a Chinese Speech Convention . This is my third day using lang - 8 . I 'm not really familiar with the functions here , so I always send the same It is good to meet many friends from different countries , and help each other . When I woke up early midday , I hada severe headache because of a terrible hangover . and I asked my friends about holidays when they traveled but they said they did not travel often . sometimes they think if they use the money to traval they ca n't use it buy something better . I think we have a lot of beautiful beaches like in Phuket and Krabi ( ? ) . so about me , I did not travel in the south . I plan to go there one day when I have enough money . Studying in Canada is a valuable chance for me to become mature and to [ learn to overcome many difficulties and barriers . Last time when my friend and me were leaving the Superstore and decided to walk back to the dorm , a Canadian couple drove us back . Deaths from the usual flu are more than swine flu which is simply not mentioned . I consider the vaccines , not just from swine flu , itself to be harmful . Suddenly I recalled one thing - - - I have a TEST in a couple of days ! ! ! Afterward , I looked in the mirror , and I liked my new hairstyle very much . As I was passing a park , I found that my shoe was loose , so I sat on a white bench to tie it . After leaving the park , I continued on my way home . However , many people just stared at me and laughed . At that moment , I thought , `` What 's wrong with me ? Arriving home , I rushed to the mirror to look at my new hairstyle again . When I turned my back to the mirror , I saw white paint on the cloth of my skirt . So many things have happened since I was here last . I 'd like to get another dog . I feel [ as if ] my opinion is [ very ] selfish . . . [ Because ] I 've never discussed about it with my husband [ yet ] ! ( Husband to be ) . Before that , I need to get my father 's permission . Watching movies and listening to podcast or radio programs or even music would be a great help for the better understanding . These days I think I ate too much so I am gaining weight . I like to drink a cup of coffee when I feel tired or want to sleep , especially after lunch ! In my opinion , no matter if teaching ( the ) students who have already had plenty of knowledge of English , or the children who have never contacted English before , the teacher should recognize the importance of teaching . And they should know well the different methods for teaching different grades of students . The Art of Disney Gallery is held outside in Downtown Disney . The Legend of Saint George part - 1 I timidly tried to sink it in the bathtub a few days ago and I timidly tried to take some photos with it in the bathtub yesterday as well . So far I only watch about two movies a week because I do n't have enough time . They were `` Graded Readers `` , Penguin Readers , Oxford Bookworm , . . . and etc . * When I work at the hotel , I will not only need the ability to speak English , but also the ability to express my opinions clearly while using appropriate jargon . I played the guitar in a band at that time , and we copied their songs . 80 % of Japanese Boys talk to others with humility and rest of 20 % boys are totally insolent like kids . How about the boys in your country ? This phrase seems impressive to me in junior high school The sentence structures are not familiar to me . The cherry blossoms are blooming in Kyuushuu which is in southern Japan . My husband and I went to see a movie . Before the movie , I went to a department store and bought a pretty ring . The movie was called Gulliver 's Travels . I slept during the reading section and lost about 100 points more than the listening section . I will buy more of them later . It 's really difficult to think of it because he 's straight . I ' VE HAD ENOUGH ! ! ! ! I 'm glad to hear from you , and I 'm also glad that you 've just returned from a trip to Scotland . I fell asleep last night in front of my pc because I felt sleepy after I ate supper . I am planning to go abroad in about one year to study fashion design in England or France . Even though most employees are Japanese , some have sent emails to their boss , I have had the opportunity to see such emails sometimes . When I went for a walk , I passed by a little restaurant . We had a thunderstorm last night . So I ( often ) pour some syrup into my Caramel Frappuccino . I 've remembered his free kick at the champions league 2006 - 07 at the games vs Manchester united . Because I also have a moustache and a beard . Now I 'm going to read a chapter of Dickens ' book ' A Tale of Two Cities ' and maybe later I 'll write an entry about the book . Originally , I wanted to work in a pub in Itaewon that is located in Korea and where many foreigners come to hang out with their friends . Frankly speaking , I expect that there are many beautiful women . But I was disappointed . One elderly man said `` There is something under the machine . `` Once I start writing , I ca n't limit myself to an appropriate amount . Today is Wednesday , February the second . Voice blog is where you can make your account and create your voice blog . I have just registered with Lang - 8 . But I have n't start new things yet . Sight seeing ? MY ANSWER : Finally I finished one of them , and then I emailed one of my colleagues to ask for his advice . Fortunately , I was not injured in the earthquake . But when I started talking , nobody responded to what I said . So my topic did n't make sense . In Japan we can see a rabbit on the moon . In different countries they also see different shapes made by crater on the moon . To learn a foreign language , we should try to speak it as much as we can , and in my opinion , a test will push us to speak more and speak better . European countries are near each other . So it would seem to say that men tend to be more of romanticists than women , who tend to look at reality and security . I like him because he is plugged in . One part of our job as an intern was to interface with the customers , which includes introducing the products , receiving the attendees at seminars , selling the Xbox 360 , or hardwares , etc . That 's why it surprised me very much that he went for broke on those jobs , especially on selling the product . And I like to play football very much . Maybe wewill develop iPhone app , a simple game . so , , , , we were hanging out till night , walking too much , my leggs were hurting . I drunk a lot of alcohol last night . American tornados are also American size . ( Sometimes tornados appear in Japan as well , but most of them are generally small . When we first see American tornados on TV , we are surprised at the size of tornados in America . ) There are many visitors and workers from foreign countries . Our Prime Minister , YukioHatoyama , said that he would resolve theFutenma problem by the end of this month . My favorite drink is green tea . When someone kindly corrected my text , I feel happy . I learn English at smart . So , I am happy that her boyfriend is my friend . I am very embarrassed with my weak ability . My refrigerator is still operating now , but I bought a new one because the electricity bill is too expensive . Yummy ( T _ T ) Some young boys were playing barsketball , while some young girls were listening to modern songs and many old women were dancing . Lately , I have been crazy about DIY . I really like Whisper of the Heart especially from a lot of the movies by him . How could he tell her girlfriend ? Can you help me write a conversation ? One day my daughter said to me . I watched `` The Big Bang Theory `` again today . Hi , everybody . Everyday , I have to acheive all kinds of information on amazing destinations . I would appreciate it if you kindly help me correct it . < just more formal > So recently I 've started gaining weight . I decided to eat to healthy food , eat less , and to exercise . It 's great . They were above my shoulders in height . Unfortunately , the temperature of water was not warm . I did not know what was happening . When I get home and settle in , I will write about my trip and put up some pictures ! ! ! ! ! ! ! There are some vegetarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabetes . I want to work internationally . I am studying Korean too ^ ^ Anyway , it is a hard for me and I am worried whether it would hurt their feeling If I ask them several time to repeat what they said . Therefore , I have to find someone whom I can practice conversation with the eldery . I have worried about my English skills recently because it is one of the most important skills for working or enjoying our lives nowadays . Although nearly 20 years old , I need 10 minutes to write these three sentences . When I write something here in English , I always try not to make a mistake , but still , my entries always get corrected after all > < His homework includes three book reports , an English penmanship , and a math workbook . when I have free time , I always google words . It was very dificult . And we are going to have test again . Although it depends on the country , as far as Japan goes , there are some reasons why we attend college . They have great influence on children in the same generation , and those children show that practice leads to great success . The reason why I wrote such an impolite thing is because I really wanna go to Singapore immediately . I 've only studied in Sydney ; my real intension is to go to the beautiflul sea or something . So , probably I can enjoy Australia and I can afford to see every thing . As friends have helped me correct my blogs , I have gained confidence to go on writing . Then , I practised my English listening skills by listening to the New Horizon3 at double pace ( double speed ) . He said that at his work ( Japanese company ) , he is often told that he is too self - assertive . Sports is not only physically challenging , but it can also be mentally challenging . Criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Unfortunately , I ca n't run this year , but I 'm going to run in another marathon which will be held in my home town . I will cost a lot of money . I long for their life . I want to be a millionaire ! ! After it all , we discovered that we ca n't recollect ( or : remember ) anything from the last school year ! ) We had a headache , but it 's natural ( or : normal ) , because we had n't been practicing for 3 months because of vacation . But yesterday , I coudn ` t say `` Happy New Year `` to my friend . Sushi is a very ( popular ) food in Japan . If the people of the future see the current world , they would not be approve of it . By the way , could you tell me whether it is not difficult for native English speakers to distinguish `` want `` from `` wo n't `` in conversations . I bought a magazine , `` Business English `` a week ago and I 've just started learning with it . This is my first time at lang - 8 . I want to improve my English level , and make friends from other countries . I look forward to receive your message . But I tried not to change it not very often . I think the main causes of my not being very successful are - laziness , misallocation of time and tasks , and again laziness . Today , I was working at Lotte World which is similar to Disneyland . * The original sentence sounded confusing . * Although this Christmas I was lonely ( lonely ) , I hope that I will be happy for a whole year from next year . But I think the Singaporean government wo n't be able to settle this problem unless human beings successfully develop a technology which can change sea water to clean water . The movie is about the life of Cuban Revolutional leader , Che Guevara , and his inspirational journey . I did n't know of Che Guevara until today , because I did n't know much about the Cuban Revolution . We are currently using a customized program that we developed ourselves . Unfortunately it is not very common in my country . By the way , today 's weather was strange , because it suddenly began raining harshly . I am not familiar with Maiko san , Kyoto became one of my favorite cities . `` Can you play tennis ? `` and `` Do you play tennis ? `` She had even worn a mask from the beginning of May . No one can give us a clear answer about the effect of long - term low level of radioactive exposure especially in relation to children . The most important thing I learned is making a special point of ensuring their safety . After they had their afternoon nap , I woke them up and asked them to His medal was bronze indeed , but I thought that he deserved a gold medal because he must have made a lot of Japanese impressed and encouraged by his comeback . He always cracks some inappropriate ejokes that make me sad and uncomfortable It was a very pleasant party . I got a good grades on most of my English exams , but English is still a field filled with confusion for me . I must control my physical and mental well - being to complete the Tokyo marathon . I complained about my looks to my mother . A few minutes later , a friend of mine asked me `` oh - I did n't recognize you because you looks like different person today . `` Ok . . . . I am now working in Tamaki . Sometimes I move my body if I hear some high tempo music at home , but I never do that when someone else is there . But it 's ok , I said before , I will protect my dreams , no one can take them from my hands , today I may be stupid , but what about tomorrow ? Different from middle school and high school , college campuses are much more interesting and fascinating . Furthermore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . Usually I read sentences from the TOEFL and literature , but I do n't talk in English , I drank at my home town . The fugu is delicious but a little dangerous as a food . Hmmm , I think MacBooks are not made for cats Ize peninsula where I live , is a warmer place than the other areas in Japan . If the Ume tree does n't exist in the other countries , I think it 's okay to just write Ume . My other favorite things include playing the guitar , eating snacks ( especially chocolate ) , dancing , watching movies ( on dvd ) and so on . YAKUZA appears in this game , I like Pikachu the best . But I also like Raichu . My friends and I often talk about our other friends . Or : As food safety is becoming quite a worrisome problem ( here ) , Beijing citizens are trying to find / locate farms themselves that can provide safe agricultural products . But when I 'm able to comprehend the means of songs , I feel a huge sense of accomplishment . The Maldives has recently become popular for honeymooners . A Japanese friend of mine called me this morning , almost crying . We hope this maintenance will bring . . . The class is very interesting , I learn English and Chinese . I live in Shanxi province which is located in the northweast of China . I am a student and I want to learn English . I never thought of meet such as great person in the university . The price of potato chips has increased little by little . Today I went out with my son , and we took a walk under the spring sunlight . In the evening we went to the market and bought something to eat . I took many pictures , but I ca n't function anymore . The aftershocks have faded out but another problem is coming . This plant sends electric power everyday to large areas including Tokyo . Because of this , Tokyo electric company and the government have decided to share the power in order to prevent sudden blackouts in all areas . Ashita wa ichinichi chu koko ni wa narimasen . Watashi wa Scout no atsumari ga ari masu . I think it fits the atmosphere of anime . Yesterday ( February 3rd ) was `` Setsubun `` in Japan . Congratulations to me ! ! Taiwanese people are always open to others from all over the world , so travelers can feel the Taiwanese enthusiasm very much . I like cherry blossoms . There was a single cherry blossom surrounded by other kinds of trees ! ! This party is sponsored by the English conversation school that I go to . About 70 people , including twenty foreigners , will attend the party . I 'm not used to communicating with foreigners . Also , my English is poor . I 'm looking forward to the party , but I feel uneasy about whether I will be able to communicate with the foreigners there well . I hope to make friends with foreigners at the party . Perhaps some ( someone ) may want to ask me why I worried about my relationship with my girlfriend , as I wrote several days ago here , even though I believe this . First my throat was just a little bit sore , but now I have got a cough , a running nose and a seriously sore throat . As I said above in the title , I finally got a job = ) But the surprise is that I am not going to work in Korea . I am leaving for Vietnam next month to work there . I feel I should take care of myself more carefully . . . . Nonetheless , after the Meiji Revolution , Japan grew as one of the developed coutnries in teh world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glory in the Meiji Era when Japan was the king of Asia . We had to do sth in the room , so we stayed in our room for 1 hour . They are authors of several books , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'll introduce myself a little . And also I know that the JLP teachers have spent so much time preparing for this summer course . Acording to my memory , I might have done about 3weeks ago ? I met my friends in my high school class , went camping , experienced heart - breaking . . . I do n't know the case of foreign countries , in Japan many high school and university students tend to start their first part - time job in it . My English is not good . There are many words I do n't know and I do n't understand grammar . rain was like one of Tsuyu and called Natane Tsuyu in Japan . I went to Vancouver for 2 days . Yesterday was the last day of my Military service . It was a very happy ending for a long hard year . I have gone through some very rough situations The 1st word is ' I ' whenever I speak English or I write a diary in English . I went to hot yoga class yesterday . What is the best way to handle conflicts ? Cultural differences often cause confrontations . Even in a classroom , there are cliques . When we are in a conflict , we tend to regard our own opinion as right , Firstly , we can search much faster for information regarding things we want to know about by using the internet . Recently I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . And , Tasmanian salmon tastes very good . I am quite lucky after all / though , my college classmates have had a lot of interviews , however they did n't receive any offer yet . I searched for information about Los Angeles at home . I had an orientation for an English conversation class just 45mins ago . I was asked some questions in English from an American Teacher . just laughing and chatting or thinking deeply about our future . I do n't have the right volunteer spirit . If I can control my emotions , I will be released from my pain . I attended a seminar about social networking services a few days ago , and one of the guest speakers indicated that human beings ' abilities are atrophying while information and Internet technologies are advancing . This is because the evolution of technology makes it easier for people to solve problems . All these technological advanes changed our life for the better , but at the same time we should realize we are becoming lazy and our abilities are atrophying because of our inventions . I 'm stressed out by many things and have no energy . . . : ( = more natural I sold for 20000Yen a CD boxset of my business teaching materials , which I used to listen to There were so many people screaming and yelling . They reproached the director and actors for making the premiere so late and so short . That day was my birthday , so I decided to eat unadon for my birthday present . I like thinking about how should I take picture to makes everybody interested Can you thinking about what 's a different between them and you . But sometimes I forget to try , so I think I should try to something again . I hope this website will be help me with my English skill . I went to a Chinese restaurant downtown , with my friends . how much it needs effort to make it something But It is hard work for me to write what I 'm thinking promptly . On top of that , speech delays always make foreigners confused when I 'm speaking with an American friend . And another reason the friend is confused is lack of vocabulary . It is difficult for me to transfer the meaning of what I 'm thinking completely . However , I know that it is unhealthy , so in order to be a healthy and lovely girl , I decide to eat more of a variety starting tomorrow . Lastly , I want to make foreign friends . I ordered factory size spaghetti with rich meat sauce . Konbanwa . Tree leaves have turn into red and yellow . you can feel Japanese autume if you look at . but sometimes , I 'm impressed by it . I wanted to wear skinny jeans so I went on a diet . I had to stop losing weight , but I 'll keep excercising for my health . Actually , computers wer n't my first choice when I was invited by Shaoguan University . He has a big disease , cancer . . . School festival . It was a very big event x - D Finally , I will spend less money if I live on campus . But , as you can see , my English level is not good enough to enjoy English . For example , watching CNN and BBC news or listening to English songs . It 's a rare opportunity to talk with a native speaker of English , most of them come here to study Chinese . I had been introduced by another Japanese friend and already knew him , but I had no time to meet him then , only knowing his cellular phone number . But he wants to speak conversational Japanese fluently and he has plans to go to Japan . I unbalanced my rhythm of life a little . I will write about that very tiring trip , some other day . What 's a good way to join the conversation ? All of the band members have already had experience with other musical projects . worked with many different musical styles from Ska - punk to Hardcore . electronic samples . So I had to look in the dictionary many times . This means I have to read about 100 pages a day because I just started to read this book today . Even better , I can assign different purposes for a few cups and only use one with its assigned purpose . I was discharged from the army on October 31st , 2010 . It made me desperate I feel eurphoric . I asked everyone : `` Would you add me on Skype ? He is always full of energy and a real handful for me . After dinner , we went to a cafe . It was a great movie , as many people including my friends said , but it was a bit complicated . I have two turtles and I have had them for about 15 years : - ) Their names are `` KA - `` and `` ME - `` . * Lang - 8 is very good website for learning languages . I found it in a magazine . Recently Lang - 8 has not been running smoothly . It 's a little embarrassing to play it when there are a lot of people in the elevator hall . So let me introduce myself ! By the way , I took part in an international party in Ginza , Japan the other day . We can taste delicious foods in Hokkaido , such as chickens , Japanese crabs , shrimps , various vegetables and so on . I 'll look forward to it very much . When I made a woolon tea with a tea bag in hot water as I usually do , I noticed a difference in taste . I could n't stand the difference in taste , so I went to an electric appliance shop to buy a water purification appliance . In a part of the Fukushima prefecture , which has had a serious problem with nuclear power plants from the March disaster , thousands of residents have been told to leave their homes . In addition , my laundry wo n't dry because of the humidity . I performed two songs as a band member in the university festival last year . We all have beautiful penmanship . ( or handwriting ) I found out how good mutton tastes when I lived in China for three years for business . Anyway , mutton is less popular than other meats , like beef , pork and chicken . in Japan . I do this so I can have a lot of bread , even though I 'm on a diet ! Many Japanese foods are sold on the street , such as tempura , udon , dango , kakigori ( shaved ice with syrup on top ) . I delivered to six families for only two hours . During the meeting , a professor and I discussed a way of teaching science . Once the mark is caused , it is permanent . So it damages a lot of things and many people feel uncomfortable . When Joy entered Mcdonald 's , Ji and Min were already sitting down . This was her first solo concert and the first CD was released on the same day . so my essays are always basic level . It is natural phenomena , is n't it ? Please read my diary . Today I cooked a cheesecake . I pretended to call a policeman . A Chinese women bullied a kitten like people do the laundry . My dog died and I lost my job , my business failed and my money ran out . and did not do work out as much as usual . and after dinner , I went to the health center which is located in basement of the dormitory . and I excercised with my best effort . I appreciate your help and advice . Although the temperature there was much more higher than in Taiwan , but the weather in Taiwan is usually hot and humid , and that makes me sweat all the time and feel uncomfortable . It was July 4th yesterday , the birthday of America . I 've been trying to figure this out : what do Buddist monks do when they encounter sexual lust ! ? I have parents , a brother and a dog . It 's been a long time since I last logged in to Lang - 8 . My major is informatics , which is rather new and interdisciplinary , and includes many disciplines like philosophy , contemporary thought , science , engineering , design , social sciences , and so on . I want to make friendship with many foreign people I could n't conceal my excitement for this communication , because it was my first time to communicate with foreigner face to face . We only briefly greeted each other , and afterwords , there was a long silence . I felt that it had been a complete failure of a conversation . Anyway , I 'm still confused about how to use it . I do n't have enough willpower to study more and more in the morning , wasting a lot of time . Fortunately , we 're on vacation this week and do n't have to attend classes . That gives me hope while watching dreadful stories of the world . I graduated at a university this year , but the graduation ceremony was not held . And I like taking pictures , traveling , eating good food and drinking , haha ! I want to speak English like a native speaker . How do you study language ? It 's a piece of software to memorize words and phrases efficiently . Please try this method if you would like to learn a new language efficiently . You can surely memorize many new words ! Apple 's technology is amazing but I have n't yet learned how to search for words and write at the same time . If my friend has time , we 'll catch ball or watch some games . My thesis was mainly about the relationship between languages and colors in old Japanese , modern Japanese and modern English . If you are one of the people who lent me a hand on my survey , I really appreciate it . Today , I had three classes ; English , Japanese and Chinese . Because it was the weekend today , many people came to the restaraunt . Sometimes people from foreign countries come to the restaurant . Americans , Koreans and Chinese people . Yesterday , I had a class titled `` perfect pronunciation `` at the university . His / Her birthday is tomorrow . I 'm looking forward to tomorrow . When I had to pay , I found that I only had 4000 yen . I have not been a student for 9 years , but I will never forget this holiday ! Inside there were 3 motors , a metal frame She told me about her friends that went to America to work , travel CROSS OUT ] America [ / CROSS OUT ] and take care of the childrenn in the U . S . A for one year . Yesterday my friend told me about Lang - 8 . But when I bring her out to the street , she is so crazy ! Then my mouth opened and finally I smiled and said to myself , `` Thank you , my wonderful friend from Lang - 8 . `` It ' very difficult . Have a good weekend I think I will go shopping and look around the market . I would like to buy a new magnet . I hope you have a good weekend . I think it is good for me to improve my English . My English is so poor ! we just connect to the internet . In February 2010 , I bought a new one . It was a good opportunity to improve our relationship . My vision Okinawan people do not have good a image about soldiers of the American military . I thought he had not forgotten about his ex - girlfriend and still loves her . So we became friends . Someday , If I can speak English well , I want to tell him thanks and what I think of him . I want so much to program in other computer languages . Sooo sweet and juicy . 4 , Click the `` Update `` button and that 's it ! Their expressed policies in the manifesto are as follows : The government subsidizes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . Meals are more expensive than they were before the Spring Festival . Fourth I chat with a guy in a QQ group who ignored me after we exchanged afew words due to my bad English . My mom has 3 bothers and sistrers , and all their family will come back to spend new year together . They do n't know how to speak gently and everytime I just feel so uncomfortable and try to escape them . Although we are good freinds , I still think it 's embrassing to show her my room . That made her sick eventually . In addition , I do n't see the reason why people are eager to volunteer work for poor children and sick people in another country . People are probably just excited to visit another country even though they are going to waste a lot money to visit . I tried to make a plan on Friday , but it did n't work haha because we dropped by taco shop . And I saw the of owner of Ralph 's grocery store 's mansion , and then we went to my friend 's house to eat burittos ! However , while we chilled out and laid back on the sofa , they decided that they did n't want to attend the party . The population is heavily concentrated in large cities . Because in my English classes at university we do n't practice speaking and writing . It 's a very beautiful and yet awful movie about nuclear ( anti - nuclear ) weapons , and it is also a bad comedy . My bad habits I have some bad habits . But recently I have tried to fix my bad habits . Since I 'm not interested in studying English , I did n't study English after ( since ) I gruduated from high school . When I went into the shop , I was surprised about their menu and mood . The room is packed with people . If you eat too much , you will pack on some pounds . It is a big city , and big cities are not made for living in , they are made for work . Except for the many shops along the street , there are many dolls made from bamboo and paper ( paper mache ) hung from the roof It means mountain girl ; yama equals mountain in Japanese . They wear colorful sports clothes with pretty bags and shoes . Anyway I ca n't recommend climbing that mountain in the summer . I often felt thrilled and could enjoy all of those . It seems that this usually could be completely recovered by 30 . He said also he should have painted earlier . I went to karaoke with my friend ! The web covers the entire world . Many people have their own PCs which contain multi - language environments and are always online . Today , I Went to `` Shionoe `` with my girlfriend on a motorcycle . I argue that meat is better than fish for the following reasons : Lately , I have been getting up at irregular hours . Wedding / marriage ceremony It was sobad that my English teacher 's pronnunciationwas n't so good . According to the weather forecast , the typhoon is moving Northwest . However , no matter how many companies I apply for , I haven ' t I have to learn how to use it better ! Today we are having a forum ( discussion ? ) on the research that my lab has been conducting ! I resigned from my job last month and I will work in NYC starting DEC 31th 2010 . I like surfing , running in the early morning , and going to musicals . But many people cry over the naughtiness of young people . I like Michelle the best because her character and behaviour is soooo cute , especially when she is talking with Uncle Jesse . The video was about a person who tried to bungee jump into a river that had a crocodile in it . First , I was not sure if it was a fake video or not , but I wondered if the man who did it got bitten by the crocodile and was hurt . I ran ten kilometres up along the mountain and then down the other side for another ten kilometres . The mountain I was running over today was a symbol for Buddhist prayers . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide open view makes me feel freed from everything . The weekend is over , I do n't like Monday 's and I 'm logging in lang - 8 to see whether someone corrected my diary but the result let me down . I am looking forward to meeting them . We could sing to the accompaniment of a guitar , which the master played . Because I will want to enter university . I want to study biomechanics . Although I have nothing special to write today , I still feel like writing . if you 're interested , then please pay a visit to my page and take a look at it ! So ` native English speakers ` refers to the Americans . I thought that more people would come here for sightseeing and the number of suicides here would decrease as long as the path was maintained . I think that this is a part of the reasons why suicides happen here besides the not maintained path . The atmosphere was very quiet . A little farther from the Forest Trees of Mt . The board said that those caves were used to preserve foods several hundreds years ago . I was shocked at the news about Asakusa Samba Carnival 2011 . I have to prepare some boiled eggs . I can log in on the weekend ! ! Got an iPod touch We were studying together , and one of my friends said , This morning I woke up at my friend 's house . If it was n't raining , I would go to a sports event of a local junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operating hours of their airports to accommodate passenger and cargo flights from foreign countries . Residents near the airports argue that there should be curfews . Discuss both points of view and give your opinion with ( supporting ) reasons . But now I still have a generalized muscle ache . . . I ordered black ones but gray ones arrived instead . When I saw them on the internet , I could see that they were black and the description also said that they were black . The cargo of silver weighed about 200 tons . I am a university student , but I am not good at English . There are many types of drinks that taste like beer at the supermarkets in Japan . These drinks are so - called `` non - alcoholic beer `` and the ingredients include sugar , calorie , among other things . I was advised by the doctor I 'd better not eat or drink too much , take moderate exercises , and avoid a stressful atmosphere as gout is a disease caused from an unhealthy way of living . I can sometimes hear both of them singing at the same time . If it is nice tomorrow , I will fly the Koinobori . For example , I like to invite my friends to my place , enjoy my favorite cigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( it sounds like I am a teenage boy XD ) . Living under their carene make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . I was very sad and I remembered then what happened yesterday . t was a tiny mistake but of course it was my mistake so I apologised for it to the doctor . For example . . I played some games online and then studieded English , and played the piano . You seem ( to be ) happy . My job is loaning out electronic devices . But we only have few customers , about 10 people a day : ( Fortunately , the chinese New Year , which has eight holidays , is coming soon . my family consist of 5 members : my father , my mother , 2 younger brothers and I . I will graduate from my university in one year . In fact , I am a little worried about my job that I thought was so nice . I want to bridge Japanese companies and oversea companies . The KIC is near by my house , where KIA has some volunteer language classes , we call them `` English table `` , `` Korean table `` , or `` Chinese table `` . Since he ca n't speak , he is using a respirator . I 'm glad if you enjoy reading my diary . I tried to change to another bus to go to my house . It was my telephone and modem to connect to the internet . I 've got a sore throat from the cleaning spray and my hands get rough from washing . The weather is very good and very comfortable . So , most people have canceled their cherry blossom festivals . Do you know a Filipino singer , Carice ? When she was sitting in the airplane on her way home , just before taking off , the directer of the competition entered and asked a flight attendant where she was . And the suicide rate has been increasing in recent years . Moreover , because of its efficiency and convenience , we use technology even if we can do without it . And some traditional arts are in danger of disappearing because young people are less intersted in them . One sign is the blooming of spring flowers . I thought I am proud of him , and I am a very lucky mother because of I have a great husband and wonderful son . His attitude looks as if he has no enthusiasm about anything . Relationships are sometimes obscure and many of them are formed impulsively , such as friendship and love . I think that I ca n't sleep because of the heat . But I 'm confused because Italian is reading Roman but English is not . Then he will become a member of the Pharmaceutical industry in Japan as well as me . He will use English in his work too ! Essay : A Solution to Overcome the Threat I had to apologize to my customers for it . As usual , I was trying to use it but unfortunately , today I could n't do that because my office web security program blocked access to Facebook . She got her driver 's license about a half - year ago and has n't driven car that much , but today , it was her third time to drive long - distance . I accidentally came across the movie when I was surfing you tube . When she reads it , my wife is so concentrated that she does n't hear my calls . It sounds more natural . Hello all you beautiful boys and girls or kind - hearted men and women . I 'm a sophomore now , and will be a junior after the summer holiday . Anyway , the TEPS score appeared on TEPS homepage . Today , I ate lunch near my university . The British museum is famous all over the world . The museum ia famous for art . the museum The man is very embarrassed He deletes the picture from camera . As you probably know we pronounce a word as we read it : in most cases there 's a correspondence between the sound of a vowel or consonant and its graphic symbol . The announcer was joking about our difficulty of pronouncing the noun of this volcano , especially after listening to its real pronunciation . So he bought clothes at Abecrombie and Fitch , and finally we went to Universal Studios . I think Destiny 's Child , who split up in 2005 , was the greatest girl 's group ( ever ) . As I mentioned in the previous message on this site , I 've been practicing English by listening to songs . I hate studying English writing and grammar , but I like to study speaking . I ordered vegetable curry which twelve kinds of vegetables were included in . I laughed when I heard this . : p The way of my shopping has been convenient , meanwhile ever since the international company came to Japan , many local bookstores have been going out of their business . Lately , I 'm fascinated with `` Wicked `` , so I watched their videos . of MLP figures still nice , but I 'm not attracted to them so much . . He was very cheerful , active and fun to talk with ( all adjectives ) , so that he entertained his . grandparents a lot . butI have a difficulty still communicating with foreign people . The supermarket that is named `` FOOD ONE `` , is one of the cheapest priced supermarkets around here . Meets and Fishes are imported by the USA or China . Today I got up early to eat breakfast . I always get up late during winter Besides today , I have to do two kinds of winter vacation work . The google satellite captured something like a snake which is almost 30m long . I think there are many mysteries in the world . There is a very interesting myth in my town . 200 years ago , a wise Buddhist priest foretold that my town would be destroyed by a huge flood . People believed that it was just a myth before one statue was found . It is a very interesting myth . Yesterday , I participated in a conversation party for exchange between English speakers and Japanese . I wanna speak ! It has been more than 10years since I graduated university majoring in English . Sometimes , I got assignments to have interviews with exchange students who spoke English as their mother tongue . However , after graduation , I have n't had many chances to use English . All of these are good methods to release your stress . I almost had no time to relax . . . For me , it really helps me to understand the English . Also , the correct grammer . In my opinion , even if he was just a victim , he has to recognize the weight of his responsibility and the influence his behavior on the society because he is the Kabuki icon . If I was rehired , I would not be able to go abroad . ^ ^ ; ; ; ; Today I went to a kimono shop with my mother because I intend to wear one to my friend 's wedding . But Japanese people seldom have a chance to wear one . I wore one once at my coming of age ceremony . But I listen to a various music , Pop , R & B , Hiphop , Blues , Country , Reggae . . . . Shanghai noon is under a lot of rain today , my friends did n't catch the train , she was supposed to go to xian today . The capital city Tokyo is a big city . There are many places to go . Yesterday , I went to city hall to receive my passport . Today , I had a part - time job . It was heavy rain , so my toes were soaked . I expect to go to shabu shabu with my friends next Tuesday . It is so interesting for foreigners . My friends are foreigners so I think they will be interested in that . Occupation : university student Right now we have a long holiday in Japan . For example , in an elementary school you can learn how to communicate not to mention studying , and you can learn how to cooperate with your friends / classmates in junior high school and high school . When I speak English , it takes a lot of time to come up with right words so I guess I should train my English so as to speak instantly . On the first day we went on an excursion in ( the ) Kremlin . In the evening we went to a water park and water - skied . On May 7 we went on an excursion to the city . I almost go to the gym everyday before going to the company . It is pretty good . Podcasts are amazing ! ! ! If I start doing this , I will get to know exactly what I am eating and exactly what my calorie intake is and I will feel bad when I eat a lot . have been learning Japanese . `` It 's impossible because they do n't listen to me , especially mom ! I so appreciate that I had preapared TOEFL test , because it gave me a lot of valuable experience in Reading , Writing , and Speaking English . Without the TOEFL experience , score , and training , I could not have gotten those jobs in just two weeks . I want to send a Christmas card to my friend . Before , I heard that a lot of Finnish like Robert 's coffee , is that true ? Merry Christmas ! The Western body has long arms and legs , and big hips . I have a plan to learn English . First study grammar second read anything in English third watch a children 's movie finally write in my diary everyday . When lunch time came , I was going to go to the restaurant . On the other hand , social enterprises can obtain funds regularly because they are run through the business method . Disappointingly , I could n't enjoy tasting wine when I visited a winery , because I had to drive a car on the way back home . I went to my university 's hospital even thought today was Saturday because that 's what the doctor said to all the members of our team . The messages told me that my card 's number corresponds to the card 's company 's , so they canceled my orders . Last saturday I 'd have a private concert with friends for piano . Hello . I wanna get an international license . I want continue my university studies , but I am afraid that I did not do well on my exams . It is not a very touching story , but I have watched the series since I was 10 year old , so it made me cry ! LOL I will definitely come back to this beautiful country again ! So , I want to communicate with people of different cultures and countries . So , I have to learn a lot about managing a business . I know that it is not easy to succeed . I want to improve my ability to make sentences . My favorite person is Ichiro Suzuki . First diary in English Today , I am writing a diary in English . Today I signed up at this site . I can check your daily journal written in Japanese . I think hes ' got a good personality and is well grounded . When he announced that he was getting married , everyone blushed . A Welcome Party we talk in english . I saw the corrections , and I had to start to translate with google translator . I use google translator when I do n't know the words . Jon always teases me that my English is regressing / getting worse Impactful titles ? ? ? Tourists can enter a limited area inside the mosque , even a non Islam believer . It was a drink that I had not known before coming to Singapore . It is a cappuccino of tea version ! Last night , our teacher was a black man from Botswana . I 'm moving to another seat . If I want to thank you , I would write in the card , for example , `` Thank you for cheering me up : ) `` He 's a member of a group called SMAP . I submitted an application to a new job last month . I have lived in Fukushima , Sendai , and Iwate before . It has been inconvenient to go around the Kansai district from Hakodate since the Lehman Shock . . . Today , I decided to start a diary in English , to improve my English skill . My favorite drama is `` Friends `` ! I 'm glad I found this useful site . I was part of the staff at a wedding ceremony . Wearing perfume is not familiar culture ( / common practice ) in Japan , so not many people use it . It was quite expensive , but it feels good though ! So it 's OK . You may know that the highest mountain in Japan is Mt . North is a fascinaing mountain because it has many alpine plants in the summer time . I 've been into mountain climbing for 5 or 6 years . GCP means `` Global citizenship program `` . When I went home , Paster 's wife gave me a ride home . I thought that it would be convenient for me to go there by bicycle . We were confused and mad , but we had to obey the indication of Doctor F . The group that has the shortest time wins the championship . These are the examples in my textbook . I 'd really like to thank you for giving me a good opportunity . I had a great time . I had better finsh now and go to the bed . It is a practice course and shorter than a real golf course . Well , this post is not about the date of Hikoboshi and Orihime ; who are the couple of the Tanabata legend , but the one of my daughter and her boyfriend . He is a coffee beans buyer from a different company I am worried about tomorrow 's weather . Do you still remember me , the day it was raining ? First we were a little bit nervous to make conversation with each other But 30 minutes later , we talked a lot and became really really friendly like we were then . Almost all of our friends have already gotten married and had children . . ! We got information from the service desk . I tried to connect the internet , but I couldn ` t conect it . In conclusion , technology is useful for education , but we need to have the ability to select information . In my office restaurant , we can have lunch for 500yen . However they ca n't drink after a gig ( Because drunk driving is a crime in Japan ) . Finally I recommend a cello for you if you have a choice of a cello or a contrabass . The Web is Degenerating Actually , it 's given us uncountable benefits and an unbelievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on their cell phones and who are absorbed in the web for long hours , not to mention myself . The tachers are gentle and nice . There are lots of events this month , for example midterm examination , school excursion , and club activities sports day . Tret ' yakov 's Art Gallery is in Moscow . He liked Russian art , and he bought paintings from great Russian painters . This museum is named `` Tret ' yakov 's Art Gallery `` or , in Russian , `` Tret ' yakovskaya Galereya `` . Now the Tret ' yakov Art Gallery is a great museum in Moscow . They look at pictures by great Russian painters . Tret ' yakov 's Art Gallery has not only pictures and statues , it also has Russian culture and history , because these pictures are a part of Russian culture and history . I will add photos of Tret ' yakov 's Art Gallery . Anyway , today is my first day in London . Probably they will become sweet tomatoes : ) The younger sister , Bess , likes to travel all over the world , and got married to a second - rate ( horn ( trumpet ? ) ) player . So we should try to ( consider / think about ) the younger sister 's point of view . Bess , the younger sister , has to depend on her elder sister . If I have the opportunity , I would like to use slang words from now on . I would speak to my friends , `` Hey what 's up , dog ? `` If you have cool hat `` That 's hella cool `` If I get angry at my friends `` Hey stop trippin ' , dogs `` What would happen if I use those words to strangers ? Many people visit there . Still , I prayed for peace in disaster areas in Japan and all over the world . It was an intensity 3 quake . I want the webmaster to delete those pages , because the pages are not so useful for me . I 'm just a 19 - year - old college student , and I do n't think my abilities in my native language are any better than many other members from Japan here . What do you usually do whilst you 're on the train ? As you know , Indonesia is still developing itself as a country and I feel their enthusiasm every day by seeing people on the street and huge traffic jam . Everyone said things like , `` What is your name ? `` , `` Where are you from ? `` and , `` How long have you been here for ? `` among many other things . Most of members came from European countries such as Germany , Italy or Romania and they speak English really well . If we were in foreign countries , we would have to ask someone who is unknown to us something , for example , how to get something , like a vehicle , how to use stuff , or the ways to destinations . But how is it in your country ? The first exam , called `` the center exam `` , is held on January 15th . It was the first time that I used an Internet shopping service . My shop is a salad shop , therefore my lunch is always salad . I ate the salad fast , and when I opened the hamburger bag I enjoy the time when I study microbiology . San Francisco is a very exciting city and I 'm enjoying some activities here . I 'm lucky to experience the rare event . He did not know whether the post office was nearby . It 's hard to explain why I like rainy days . I believe that TV has reduced communication among families . I doubt whether the daily homework would help students Different clothes sometimes influence how people behave . I wish that this fundraiser will help to cheer on / support theTohoku people . The cost would be compared / comparable Despite resistance / resisting I learned the grammer ( preposition + ~ ing ) I 'm Russian but I actually now live in Moldova ( it is at the border with Ukraine ) . I now have an iPod touch , a Macbook , an iPhone , an iMac and an AppleTV and I am looking forward to the up coming new iPhone ( iPhone4S or iPhone 5 ) . Apple fans have to be buying their products again and again like me . She looked outside and said `` Snow ~ Snow `` with a very happy smile . And I 've realized that lassi , an Indian yogurt drink , is necessary for eating hot dishes . First of all , it requires a lot of exercise with mental control . I am going to learn how to use Photoshop . I will spend my time today looking around Photoshop . I would like to become good at it in a short time . I went back to my hometown for vacation . We can buy many prepared foods at the grocery store . More and more women are getting stronger and scarier than before and beat their husbands . I am waiting for your reply . Welcome to our club Welcome to our basketball club . We believe you will join a wonderful club . A strong person will become stronger . Everybody just thought that was a pretty strong earthquake so it would probably just cause a bigger tsunami than usual . Anyway , I learned several expressions and words which I 'd not been familiar with until today . My parents and I go to a worship service these days . English is difficult . I was reading a Japanese comic yesterday . In addition , I went to Ginkakuji , Kinkakuji , Kiyomizu temple , and so on . Then I had a delicious dinner near Kamo River : ) The delicious dinner was ' tofu ' . I lost my earring again . A is most adavantageous for them to enter nursery . I had a job interview in a Japanese restaurant . I have to go back to Japan in the middle of April to attend my sister 's wedding party . Today was the annual meeting for the presentation of research and development in / at my company . The distinctive yellow circles on the flecked lamp betrayed the lack of dusting . We prepared ourselves for the worst , because youth hostel food is n't renowned for it 's quality . > < Everyone looked suspicously at the fish and chips . I have three younger brothers , so I had dinner with them . But I think that I want to speak that language , so I want to study hard . He and I had a trouble today . I wish to memorize Qura ' an and remember all its words as I remember my name . I wish to publish a lot of books and become a famous author . Before I did that I was listening to many different Islamic nasheed by English speakers like Yusef Islam and Dawud Wharnsby . A magazine guided me to this fantastic web site , so I 'm in . I do n't know how many people read my diary , but I welcome you all who clicked my diary . I started writing in a diary on this site to practice English . I will write about a festival for children aged 35 , 7 . Today , only girls aged 37 participated in the festival and only boys aged 5 participated in the festival . Many families take photos of their childeren in professional photo studios during this festival . As she said , there were similar korean food , and it was the same in texture . About Yesterday I am a housewife . I 'm looking forward to seeing us graduate . I like taking pics and listenig to music . And sometime I draw people and animals . I 'm eating more vegetables . Could you have my written work in the language corrected ? My aim of this year is to study English . Today , I will go to one of the biggest shopping malls in Tokyo where I have lived for long time . I took a usual train . Then I sat next to foreign a girl . I excited for I could speak in English ! It 's no wonder that the Arabic people at the lower levels can hear English better than us - - they 've been living here so much longer ( than we have ) ! . Bob hit Tom . We enjoyed playing games and talking with our friends . 9 years ago I went to the United States as an exchange student . I 've already been to Osaka this summer so I ca n't travel too far again , however , I plan on visiting my friend 's house . I have to be careful not too spend too much money in the meantime Automatic translation is not accurate . . ? I 'm writing this entry by ( on a ) laptop on the train . When she came to the hospital she looked scared but stayed still . she replied that even her slightest move would stimulate it into rustling There were beautiful ocean view and cozy atmosphere in that . I think we can be more free , especially in Japan . Occasionally , I open windows even in winter day ! English in China is very important for my job , so I continue to learn it in my free time . I am so proud of myself because of my small diary in English , although it 's infantile . Recently , I have been very busy everyday . Then one Sunday , I was invited by my friend to go for a drive . I think my family will appreciate eating it every day . Personally , a friend is a person who makes you feel at ease , or make you feel at home . I 'm glad to join Lang - 8 ! ! I hope I can make some friends here . I was very happy yesterday , so I asked my room - mate , who was sitting nearby , to take a picture of me and my sweets ( but this picture let me look fat , haha ) . This surgery lasts only 10 minutes , but is it safe ? ? ) He is working for a Japanese company in Shanghai now . I am going to accompany my Mom to Japan or Cambodia and study TOEFL regularly and hard . Everybody came from different fields and backgrounds but they all have the same eagerness to learn new things and make breakthroughs inlife . So now I feel confused and frustrated . I heard it from my co - worker only today and I was so suprised because she heard it last Friday but it was the first time I had heard of it . Although before I could not reach my head to the floor while sitting down and opening my legs , now I can do that . * Video Grid - - similar to Picture Grid . English that Japanese high school students are studying is really grammatically difficult . I remembered almost all the English grammar , but still , it is sometimes difficult to tell where S ends and where V goes . But this word is actually difficult and it is weird if I use the word when I talk with friends or children , right ? Yay . . . I am so happy today , because my company got a big contract this morning . It 's big news for everyone in our company . It means we have things to do , and do n't need to be afraid we will be lalaid off , or forced to take unpaid leave . ^ ^ , At present , the global economy is so bad , so many people have been fired , so it 's helpful to get a big project in our company , ha ha ha ha It was slippery and dangerous . I 've continued to learn English , but my skills are n't looking to good . This surely includes me . because Japanese does not have words with those meanings . I experienced various things both good and bad . So they came to my house and celebrated the new year . Every year we watch Ekiden where collage students run long distance and pass a baton ( taski ) . my cousin 's children came to my home for the first time . Third , the author described a ultra marathon race that took place in a mountainous area in Mexico , where American top ultra marathon runners and Tarahumara runners competed against each other . I began writing a diary in English at this web site , and try to correct diaries written in Japanese . They looked like people who belong to karaoke clubs . These are quite expensive here in NZ . I usually ca n't afford to buy these things . Next month , I will make and launch a model rocket . My boss who has good sense of humor and is nice guy allows me to study something when I do n't have any job . I went to an English seminar last Saturday near Tokyo station . But that seminar was a good opportunity for me , as I was able to meet highly motivated people with a higher level of English than I . I will sit for a TOEIC TEST in November . Ran to the public bath I have girlfriend . She told me to let our relationship return back to when we were friends . I 've got to appreciate that . I work in big brewery in Poland as a chief technologist . I did n't think I will like the book 'cause romantic novels bored me There are ear - cleaing services in Japan . Cleaning your ears feels good . What happens if you do n't clean your ears ? The traditional japanese earpick has a top of cotton or Daruma . I printed out my diaries with your corrections . I 'm reviewing my diaries and studying English by reading many people 's corrections now ! ! ! I hope that I increase the range of my vocabulary and how to express myself . It was 9 p . m . when I arrived at the center of Bergen . I have had a speech disorder since when I was 3 - years - old . I am a salesman in spite of having a speaking problem . If I were not a stutterer , I would laugh at it . I did n't even think that I would become a salesman . I have met several people who overcame stuttering . They said that being old and having experience counts so I believe that I can get over it . I did n't feel bad at first . basically I lost attention easily if I had to read shakespeare right now , I would probably die instantly . And since I 'm a person who easily lets distractions get in my way , it 's good for me to learn how to use my time more efficiently . I have been studying Chinese on youtube . On 31 Dec , I ate Soba ( Japanese noodles ) and watched the Kouhaku song competition TV show . In an onsen - hotel housewives can relax to their heart 's content . It means they can escape not only from daily household chores , but also from having to do anything for their family . our food self - sufficiency rate is really low , compare with other country . If my sentences do n't make sense or are grammatically incorrect , please correct them . They had come from England , Canada and America . I was very nervous , However , my teacher is very strict with me and she always says to / tells me that the facial expression of my painted cherubs looks so weird that I have to repaint them . But I believe that if there are different forms , then there must be some ( We were able to listen to the sound of the waves while we soaked in the bathtub . ) ( Some friends talk about their secret stories , usually relating to love . ) ( I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the bathtub . ) This produces good harmony with white bread . Also , I like chocolate particularly the bitter kind . Are my feelings strange ? ? Turnitin is a detector for bad academic practice or plagiarism . If Turnitin warned you that your work is plagiarized , you must rephrase the sentences or reference where you borrowed otherpeople 's ideas . Otherwise , you will lose a lot of points and , to make matters worse , you will fail the course immediately . it is like a child 's drawing and I am so embarrassed . Actually , at first I wanted to study psychology as my major out of my hometown . As a result , I followed one of my best friends to the university that I 'm studying at now . Because the bang hung in my eyes . These clothes are a necessity but they are also a little expensive for me . Now , I look at my game collection and I ask my self how did I play all these games ? It only bleed for like five minutes or something but it was nothing bad . Now , I really want my wife to be a Japanese cartoon worshipper . As I had thought , she enthusiastically read it HAHA . and Bright is my English name . In our city , winter is often cold , with strong frost , snow storms and ice . Summer will give the possibility of travel , opening new picturesque corners of the motherland . 5 To raise my English skill from beginner 's level to intermediate . So I was researching the market related to these products , and customers . I 'm still continuing the research today . Sorry , my English is really wrong , I appreciated the support . I am writing my daily for the first time . Nowadays I study English for business . My business is being a salesman , importing products from the USA and Japan . And since I use a lot of my time to read English , I am not good as good at speaking English . So I wish to get my speaking ability up to scratch by writing on Lang - 8 daily . I talked to my high school friend about school life . Saturday 16th , Sunday 17th Most Japanese students do not go to school on Saturday but this year I will . I called her back wondering what had happened . Due to her mischief , I enjoyed a conversation with my old friend . Recently I 've had head and stomach - aches . And I think people can move much more easily from country to country than in Japan because Japan is an island . Two celebrities committed suicide last week . Amazing goal achievement I am busy because I have to hold a public hearing for my doctrinal degree on Friday . To achieve this , I need to efficiently take breaks . MUSIC is one of the my lifelines to survival in these stressful days . I aired out my ' zabuton ' because the weather was fine . She wrote her feelings and apologized in it . I took part in an English Speech Contest yesterday . It had beautiful and soft sands and a few waves probably made by the breeze . It totally looked like a small seashore . The lights from each house shone brilliant and conjured up a feeling of nostalgia for a fleeting moment . ( It takes you 7 years to become perfect at the piano . ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school and learn the basics or not even start . : When I 'm coming in , we would live for the Lakers or the Sixers ? : No , I know what your first basketball game ever , and I know its pretty exciting , but when it 's all said and done the season would n't be long enough . In the beginning , I guessed that 1000 people would register . We met in the university classroom . Finally , Joseph , a friend of mine here at lang8 , corrected it . : ) Since then I 'm afraid of other people , especially their eyes and words . There were several kinds of rubber duckies in a basket . This site is a little different . . . Later , I saw a video on youtube . Despite this , the groom seems very calm and polite . The cow is an old friend of the old man , who has raised the cow since it was very young . So I only learnt grammar , reading , writing , but not speaking . It helps us improve the ability to relate or summarize something in ways that are easy to understand . Anyway , I have to say that learning anything is not a piece of cake but our passion will help us improve easier and sooner ! ! ! Yesterday , I went to work . I am a process engineer in a foreign - funded company , but my job is training the operators in how operate the machines and maintain them . I dream about doing a great job , I dream I am a millionaire , but fantasy is pretty and the real word is cruel . The Internet helps us communicate with different people . That 's what some Japanese had done while Japan was invading Asian Countries when Japan was once under Imperialism rule . When I read the sentences , my sleeping head seemed to awake suddenly . Instantly , the whole world disappears and all I can see is the light with all the colours . Today was great though I still felt like a isolated knight except , when I was talking to this girl who was really sweet who taught me the words `` serendipity and kismet . `` I do n't understand why we must not talk on our mobile phones on trains . Most of the members in Genshiken are male . Because I like the French bread most of all . I want to eat it soon , but I 'm waiting to eat it till today 's dinner . . . ( > - < ) But I have to pass the school exam which has an interview and a resume before IELTS . They will become important people to me in the future because they can change Japanese medical practices , by thinking about Japan objectively . I 'm looking forward to seeing old friends in this ceremony . Even if things were not wrong and made sense , I would still correct things if things sounded unnatural . But since becoming friendly with foreign people , I 've come to realise ( noticed / discovered ) that bending the truth is more common in Korean cultures than other cultures . I went to the gym to play basket ball . I 'm from china , I can speak chinase ! These days , I have been busy writing 2 kinds of graduation thesis ( because I belong to 2 kinds of seminars . . . ) , but these emails made me feel a little refreshed : ) We had a ferewell party for the overseas student yesterday . So today , we 're going to renew our expired passports . Of course , I am allowed to sleep if nothing has happened . They are very useful and fun ! ! I already have three articles ^ ^ My sister highly recommended a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about the storyline because there was a naive guy and a weird guy . The naive guy acted in Death Note and it 's quite different from that movie . His hairstyle was so funny that I could n't help but laugh at it . I ( like to ) stay home and take it easy without doing anything Celebrate the first of I am going to make pasta with tomato - sauce and bacon and the cold potato potage soupe for her . I think that everything will go well . I just came back from my trip to Mui Ne , which is in the Binh Thuan province . It was in a restaurant , and there were 7 people present : myself , my parents , my husband , his parents and a go - between . I think my English is getting better and one day hope to speak English fluently . ^ ^ My favorite idol commit suicide . My hobbies are snowboarding , traveling , and studying foreign languages , now I study English and Spanish . If you are learning Japanese , I will help you . but I prefer a whole one with its insides included . I garnish saury with some grated Japanese white radish , Sometimes cultural differences caused misunderstandings . The words I used were misunderstood , but it told ( taught ? ) me a lot of things , such as how important it is to understand the background of the language . I went to school and learned about English Education . Recently , she went to hospital and was given a check up , and was diagnosed with tubeculosis . Tokyo prefecture and the office that she belongs to started to move for the purpose of informing many people who might have caught tuberculosis from her so that they go to hospital and are given a check up . Celebrities have many chances to communicate with many people , so I think that they should go to hospotal and be checked up often . I could n't understand why it was not working , and I asked to my husband for help So , will who is an American or someone who can speak English please correct this entry ? I started this entry without any ideas to write about . The weather ? Well , today the sun decided to show all of his strength and the result was a really hot day . Maybe he picked a fight with the poor clouds and banned them from the sky . Okay , I just finished talking about weather . . . I know that it 's only 9 pm but today was a really tiring day and I 'm really sleepy ( That 's why my post is so silly and has almost no sense at all . I do n't know what I will say here , I just want learn more about English and at the same time make friends with whom I can communicate and pratice the language . The highway in the capital was so packed that we kept moving really slow for an hour . I am 19 years old girl working in advertising agency . My position is a secretary . But I am going to change my job because the financial crisis happens . This evening , I watched a movie called `` This is it `` which is composed of footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London scheduled in July . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tuna , and many other ingredients that were available in my home . we have a long holiday So it was too late to get a driver 's licence during this break . When I saw that the patient in the show could n't wear a jacket correctly ( she put it on inside out ) , I was astonished . I 'm so nervous and I feel like there 's butterflies in my stomach . I opened an e - mail from my friend , It was about ' Facebook ' ! Last January 17th was the 15th anniversary of the Great Hanshin Earthquake in 1995 . Kobe is an urban city and famous for fashion and nice foods . Many people were crushed and burned to death under the rubble of houses . I am going to keep writing English diaries . I hope my English gets better and better ! people all over the world have to help each other . we have to help each other by using English in the world . Many typical Japanese companies have new years vacation during the first three days of January . Today was n't a special day . She picked it up and brought it to their house to eat . Wollen Sie hierher kommen ? / Wollen Sie herkommen ? My friend who used to lived in Kitakyushu created this game . Each of my uncles and aunts has a son and a daughter except for my youngest uncle . By the way , I wanna know about cities in foreign countries . 4 ) Each compartment has priority seating for eldery people , pregnant mothers and handicapped people . I think that it depends on each country 's culture and history , which numbers are considered unlucky ( They studied calculating and memorizing instead , though . ) I thought that he was very kind . Then I 'm very surprised by the price of the vegetables . For example , a head of iceberg lettuce is 295 yen , a cabbage is 299 yen , and a tomato is 199 yen ! ! I want to speak It very well and make new friends also . most of them have thier own jobs and they practice soccer in their off time , nights and holidays . Last month , the government gave a medal to them for their glorious match in the Women 's World Cup . My throat is still swollen . Tomorrow is mother 's day . When we are young mom takes good care of us , but as we grow up , mom becomes old , and some of us do not treat their mother very well . Now I just want to say everyone of us should take good care of our mothers ! Tomorrow we must tell our mother `` I love you , Mom ! `` I hope every mother in the world will be happy everyday ! I have lots of friends here , but they are either Singaporean or from other countries whose first language is n't English . So I want to have opportunities to talk to Caucasian people in order to improve my pronunciation . Today my business partners invited me for lunch . My favorite season is summer . Afterwards my friend said he wanted to see Avatar , so we went to a movie theatre and saw Avatar . I was really shocked and asked him why he had never spoken to me in that language before . Why do so many people come up to me these days and tell me their ideas ? ^ ^ During the Christmas season , I was too busy to enjoy the festive feeling . Actually , I really like this drama a lot , so I made korean subtitles for the episodes . If you have The time , I recommend you to watch that drama . ! I helped her cut paper for a long time and then we went home but English speaks to me and says `` Vitaly you are too stupid `` Yesterday , I went to Ang Mo Kio to meet a friend . We are language exchange partners . At first , I would only write a journal entry in English on lang - 8 , then I wrote it down on my notebook after someone corrected it . Well , my priority now is English , because next year I 'll take the university entrance exam . I chose English as my foreign language , but I 'm falling in love with Japanese ! Naturally , I will correct your Japanese too . I hope I can enjoy every class during the second semester . Even if I do n't have anything to write , I should write . His eyes always look sad . Topic : It has recently been anounced that a new restaurant may be built in your neighborhood . Moreover , if the meals prepared by this restauranat are tasty , you can treat your guests to a meal at your favorite restaurant . I should go there early because I am afraid of a traffic jam . I think she has a lot of things to tell about about her interview . and we all felt disappointed that we could n't have the ceremony . So we decided to go to the university together another day . However , I often switch the opposite way of the function I want . I often get angry with myself , when I go to get the coffee . I find nothing , and I have to do all over again . One day my throat was sore . Now I ca n't breath through my nose . By the way , I watch the TV drama `` soredemo bokuwa ikiteyuku `` . Quarelling severely with my mother , working for the whole day till 5 pm . I played tennis with my friends . We played tennis together . In the afternoon , we 'll take the bus to the Night Safari park and be there until 10 : 30PM . I do n't know whether my recordings sound strange because of that , or because of my pronunciation . . . Some residents could n't understand how important it is for us to separate garbage and recyclable wastes . The garbage in the recyclable waste container had rotted and attracted flies . One of the apartment 's maintenance personnel came to fix the problem promptly . My hobbies are playing teniss , listening music and spekaing english in a compettitive debate . If I had a lot of money , I would travel to an other country for the summer . ^ ^ Polamalu tackled by hair Taiyaki is a Japanese famous confectionary . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe Chinese food , maybe Japanese food or maybe other Asian food ! ! Since they knew I love reggae music , they took me to a reggae bar . Every time when a disaster happenes , many politicians would blame each other for it . However , they do nothing about it He told me he was surprised with his doctor 's comment . The hamster arrived at my house in a sealed box . I thought chewchan was a male . My friend did n't tell me otherwise . He is [ He 's ] one of my best friends . Here / This is a kind of radio program that he made . Outside is heavy snowing , although it is just beginning of December . and I prefer to see a variety of clouds in the blue sky . I would like to master English . My dream is to see movies in English without subtitles and make many friends with foreigners . I wanted to buy an American brand , but they did n't have any . I have n't used Dreamweaver for half a year , so it was hard to remember how to use it . However At the office , I ca n't talk to anyone in English on Skype . Besides , when I get to my house for the work , it is already midnight in the United States . I 'm sure my speaking level has been going down . . . . Even though I know I paid a lot of money to take the class , after I lose interest in studying at school , I do n't feel like going to school at all . Although it seems like a kind of poison , alcohol has to be a medicine . Some people believe that drinking alcohol is not good for their health . According to an health research institute , drinking has a positive effect on health . My parents and my grandma were disappointed in my failure . I am very worried . There will fewer friends in the university , because some of them have alreay grauated . Thank you for reading my journal . I traveled to the western part of Korea , Kanghwa Island last weekend . I 'm just a little nervous . My neighbor Department 's people went on a business trip today , So My Department 's people have a little free time . I 'm helpless from secondhand smoking . It was difficult to understand what they said because they were speaking English with a British accent . Today I 'm talking about an Italian restaurant . . . . . . . I went to Saizeriya , an Italian restaurant , with my friends , do you know it ? It 's very cheap and delicious . For example , Milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , the president of Saizeriya , is very clever because he always tries to keep the prices down and make the food more delicious . He has his own farms and grows thevegetables they use . Besides , from the farm to each restaurants , the vegetables are kept at4 degrees Cbecause the vegetables canretain theirfreshness in 4 degrees . He tries so many things to serve cheap dishes and be more delicious ! I am thinking about giving her a hand blender I did n't know why , so we stopped eating , and I tried to make her sleep . I listened to his newest album ' the pursuit ' many times . We drank a lot of alcohol , talked , and danced ! ! ! His work requires him to stand up for long periods and carry heavy water - filled pots from the sink to the gas oven many times a day to prepare for the restaurant opening . The next day , he entered a smaller hospital . Also I want to increase my English vocabulary . I usually go to the school 20 minutes or so before the class starts . But these days , I feel relaxed and manage to communicate with them . My daughter 's graduation ceremony from university was postponed . We enjoyed talking , having some snacks and drinks while laughing out a lot . Soy bean milk is not only water but also it 's useful for your body because it can help to reduce a collateral in the blood , reduce the risk of cancer , reduce the risk of heart disease . I will go to the shopping mall because it is cooler than my room . I talked with an American guy and a Filipina whom I met here on Lang - 8 using Skype yesterday . But the citizens ( residents ? ) did n't want to abandon the school . The school parking lot is filled with cars decorated with a Kei - on character . Luckily my mom lives near the place , so I parked my car , went down to the river bank and spread a tarp over a good spot . Before I send an e - mail we have to show my e - mail draft to our boss to check it . He told me there were two verbs in my sentence . Anyway I still want to make full use of this website and keep practicing writing here . Temperature was n't so high , but it was very humid . Certainly , it is very dangerous , because Japan rely on nuclear power for many part of electric supply . So younger people in Japan should have more interest in these problem or What do you think about a nuclear power plant ? I must study English harder ! ! If I could play on his team with him , I would assist him . I received the glasses from there . We used to study at the same school together for a long time . She is two years older than me . So I that 's how I spent my time in the afternoon today . I am going to write my diary in English to practice my skills The title is `` CASE CLOSED `` , which is a Japanese story . The true love between a vampire and a human really moves me and I always look forward to watching the `` New moon `` . So I decided to read the book , but its contents are a little different from the movie . I found it in two articles , but each sentence is different from the other one , so I ca n't understand how to use it exactly . I wondered whether or not I should write about it , but I deciced to do so because I just want someone to listen to it . I could n't catch what he said completely , but he told another person with a laugh , `` Wow , someone is talking Japanese ! `` I earn my pocket money by doing part - time jobs . So I will write my diary with `` Look `` or `` Look like `` as I learned them . Shihomu , my friend from Japan , even told me `` I thought you looked Japanese when I first saw you `` I want more time to practice skateboarding . ( whoops ! ) Hello . My name is Kim Dong Hyuk . However , I do n't like Harry Potter . I think Harry Potter is childish . I feel like many reports and presentations are just waiting for me . An exhibition of the works of Fernando Botero has been on view there since July . The first exhibition I voluntarily went to in order to appreciate art works , other than a mandatory school field trip , was in 1999 . In addition , there was the argument `` after the plan , Korean casinos will go bankrupt , and Koreans will be jobless because 70 % of the casinos ' customers are Japanese . `` It was really fun , but I needed to get drunk and also practice some dancing . Ofcourse he is the most popular singer ? in the world . and thanks a lot that you taught me anything . I like watching movies , especially movies like `` THE DEVIL wears PRADA `` . many foreigners know very difficult kanji , including some of the ones even most of the japanese would n't know . I fell asleep twice or more in an hour . 2 : To remove the strong bitterness , boil them or put them in cold water for 10 minutes . I seasoned them with salt and pepper . It is a rental apartment , the rent of which is over 1000 dollars per month . I never think that let it snow in my region , but it makes me smile . I saw the rainbow on the way to the English speaking society at 5 : 30 p . m . yesterday . Please correct some sentences . She grew more than I expected because she is a mix of govern : In ancient times , Rome governed all the known world . bend : I will not bend my opinion even though all the people here oppose it . LOL , I was the superman of the moment ! and creates a sustainable future on its own accord . Hi , it 's my first text on this page and I hope that this page will help me by improving my English . You must control the robot arm with the two buttons : `` forward `` , `` rightward `` on the control panel . I 'm so happy have this platform that I can learn language on . My English is not good , so I want have other people help me . I can teach you Chinese , and we can help each other . Since President Obama seems to be loosing his `` magic touch / magical powers , `` I am not surprised by the outcome . But I think this music clip is good entertainment and a song that gives me the impression `` This is Michael Jackson `` . according to yesterday ` s translation , boss corrected them himself and praised me for a good job . But , I ca n't write natural sentences in English or speak English well . English as a second language Frustration is always followed by the goal to be perfect , particularly in learning a language where there is no end in this field . Astronomical sums of money has been invested on English education in Korea . I dont 't have the instinct or the intuition for the English language . `` I guess that 's because I have n't had much ( a lot of ) opportunity to make small talk . my hoby is sports and I love many sports so I 'm massule . Oops , I 'm a Korean guy . We count numbers starting from the number one and the person who says the number thirtywill be the loser . Recently , I 'm learning not only jazz , but also hip - hop and rock . I will study English everyday hard ! I registered at this site immediately . First , I made Korean soup which is for birthday soup . Today was not anyone 's birthday though , but it tastes great ! ! I decided to practice English writing in this site from today on . so I decided to take a bike ride with my friend but when I went to pick up my friend it was still raining , Now it 's sunny again , Would you help proofread these sentences ? I bought stickers - these are for you ! By the way , the 31st of October is Halloween ~ ! ! If you have free time , I would like to exchange Halloween goods . For example , people used to live in Japanese - style homes , but with the modernization of buildings , these types of structures are becoming things of the past . The vast amount of vocabulary is making me confused and frustrated . Do you recognize my weaknesses in my journals ? At first I could n't believe whether or not the news was true . this weather makes me really depressed ! ! ! the internet , junk food and smoking have been my life . Her strongest point was that I ruin my health by not eating eggs and dairy products but when my brother poisons himself it 's something where nobody could do anything about it . She is just too stubborn , but so am I . . . I think I made mistakeson all the exercises and I 'm going to get 3 ( a really bad mark D : ) . Of course , there are people who are very frank and never diplomatic . If you have an opposing viewpoint or any advice , please tell me . ( ^ ^ ) I like to play guitar and sing , but I ca n't practice all the time because I work in System of Engineering . I made chicken cutlets for lunch today . Today , I am going to tell you how to make healthy chicken cutlets ! Today 's lunch was very yummy . One more thing , February second is Ezaki - san 's birthday . I wasn ` t able to focus during the listening part , I don ` t think I will get a good score . Recently , after I get home , almost all of the things I do are doable while sitting . I know exercise keeps not only my body sharp but also my mind . I had studied English to enter college , but my English is poor . I will wash it until noon . We would like to hand our property `` children 's songs `` down to the next generation . However I think they are more attractive than Tokyo . Anyway , we enjoyed the beautifully displayeddishes and scenery of the countryside . He might be starved ! The A - course ( which we ordered ) Grilled octopuses with herb . Avocado and fruit cock - tail . especially new recruits who recently graduated from college . I 'm looking forward to it ! ! ! In the nursery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . No food , no electric , no gasoline . . . I 'm here ; because , my English is not so good . . Actually , in my daily life I do n't have to use English ; but , my father lives in California , so I want to work on my English . Anyone , please help me and be my friend . It is for my illustation project and the other style is like a manga for business on a web gallery . I will have a lot of pictures to show you . . I have to wake up early because of the heavy load of my job . Because I sit a lot in front of my desk , I go out for lunch with colleagues whenever I can . I enjoy working and I always appreciate the opportunity to work with I do n't eat a lot because I am supposedly on a diet , although the diet seems to never really succeed . If you meet people you have bad memories of , and you have not kept in touch for years , My favorite English words are `` lovely `` and `` brilliant `` because I like the `` L `` sound . Sometimes I have to write business sentences in English , but I do n't have the confidence that it would be written correctly . However , I can manage to communicate , so no one tell me whether the sentence is correct English or not . When I was a college student , I majored in Danish language and society . Japanese has only 5 vowels so 17 vowels is a surprising amount . In the end , my father was able to arrive at the hospital in time to be present for my birth . I wo n't forget white paudry sands , palm trees , cool breezes , and the beautiful light emerald green sea . I woke up this morning with a little stuffy nose . . . one of my friends to explain this something to me , she told me that she also did n't understand it I watched the last season yesterday . ( It 's called `` Doyou ushinohi `` ) However I lack money to buy it . They are a little bit expensive for me . . . . And I know they are disgusted by that . Well , when you were a little toddler , you probably watched some cartoons on the telly . I 'm confident I 'll pass IELTS because you have taught me Aussie English so I 'll study harder than you to speak english well . I enjoyed chatting with my friends in my college . I felt flight attendants are very tactful . As such , I feel so stressed out after school . After studying about 30 minutes I start to feel sleepy . so effectively ! Today I watched an ice cream truck pass my house . ( Totonto Lake Shore west ) I know that sometimes they do n't ship an item with insurance or tracking number . I sent a message to the seller . Today , while I was taking the bus to the place where I study Japanese at , I saw someone offering their seat to an elderly person . Coincidentally , there was an elderly person standing next to me . By the way , I work for the company in Tokyo and our headquarters is in the United states . Grammatically , is it a conjunction ? Yippie ! ! Vocabulary : I do n't like rainy days . In this photo the Yukata features `` Pika - chuu `` , and is designed for the children . I recognized abdominal walls , that were cut open and the bowels came out . To be surprised , she told me that many peoples was arrested by false charge and killed in the communism age . Cherry blossoms Another friend is taking maternity leave . She is looking for an interesting job and applying to many companies . I 've decided to try writing a diary in english from now on . These days , I really want to make friends with people from other countries . I 've gotten talking out of the way , I want to leran english , and make foreign friends . I 'm going to give a farewell party tomorrow . I chose the Dopamine key chain ! This trip will help me forget about everything that happens at work . For example , He always smoked in the living room even though I told him that I 'm a nonsmoker and I told him to smoke outside . A Japanese person posted a comment in Japanese which basically said `` I think your journal is very nice , but I ca n't understand why people made so many corrections to your journal . When it comes to crimes , I think mass media play an important role to inform citizens of what 's happening on a nationwide level in terms of violent crime . Koyasan is very famous as a place of a type of Buddhism , called SHINGONSYU . I invited my foreign friends to my town . My dream is to run a youth hostel in my town and I hope that many foreign people will visit my home town . How to define far and near ? It was a challenge , my mom wanted to watch TV and write something down at the same time . The eyeballs ca n't balance as well as usual . People always say : ' The eyes are the windows of the soul ' . In 2007 , I went to America for 2 weeks by myself . Maybe I do n't need a boyfriend . I hate the idea of marriage . My father and my mother do n't like each other . Persoanlly , they affect my opinion about marriage . Some day I will change them to a ceramic and plastic mixture later . . . . more and more companies tend to value their employees ' abilities or personalities over their academic qualifications . Just taking classesand then graduating would not help themgain knowledge and improve their skills . Therefore , In my opinion salary should be paid for the results of daily work such as : one 's performance and the amount of benefit they have brought to their workplaces . So residents are required to help each other and participant in committees . There are many committee , such as the Representive Committee , the Bath Committee , and the Welfare Committee . The members of the committee are engineering students , but they are amateurs . Because of that , sometimes they ca n't deal with problems , and then the internet connection is cut . Unfortunately , some members of the network committee graduated last month . Disconnections from the Internet have happened more than ever this month . I tied it with a ribbon and painted it pink . Therefore I ate a salad so as not to skimp on vegetables . I ca n't give up on communicating with him and all English speaking people yet . It 's also a good experience which can arouse my interest in languages and at the same time help other people . ( interest was misspelt ) I am willing to correct those articles in Traditional Chinese but Simplified Chinese seems to prevail . ( Traditional was misspelt ) Although the grammar and usages are the same , I am wondering if my corrections are easily understood . because I want to speak English for business . I organise a loudrock community website in Japan . So I 'm not familiar with programing . And there were lots of customers ! : D hehe Every costumer seemed to love our shop ! : ) Oh , thank you God , You saved me . `` Right after expressing my thanks to God , I fell on the ground again . I still remember that . Seems I was ready not to believe anybody and anything what might happen on this day . We also call that twelve years `` one period `` . And if you were born in the year when the animal symbol was a rabbit , you are called a rabbit person . If you want to know more , please write to me . People want their lives to be special and want to live differently than others . her husband is cool and a kind man . How to remember more words and use them correctly Although I do n't think that learning history was the waste of my life , I should have majored in English . I know that she particularly likes Japanese chocolates . My wife hasbeen having a child - care leave , but she went back to her job in February , so we have had less time to take care of children than before . Now that I have completed some my tasks , I wish I could come to write my journal and proofread my Lang8 friends ' journal like before . Apparently I threw it away when I was sleeping uncomfotably because I had a stuffy nose . This spring , Japan is very hot in comparison with last year . It was because one of the students had complained to me about the content and direction of my class . Maybe it 's their culture , so if you want to go to Hong Kong then you had better not mind it . Yesterday , the minister announced that maybe a blackout will occur . When I 'm at work there is not much to do so I pick up my notebook and start practicing my hiragana / katakana . I hope that someday I can be good so that I can go to Japan to sharpen my skills . My life dream is to become an international businessman and to be working all over the world , but right now it seems like such a dream . So much like a dream that I often feel down and surpassed for such a dream I have . So getting back to the main point , after I finished my work at my father 's place I took my computer and watched some anime . Also , if you are learning Korean , let 's be friends with each other . Please tell me your answer . In Japan most people are punctual and honest . I also want to watch a baseball game at Yankee Stadium since I am a big fan of baseball . Even if my brain was not totally in its place , I was still able to do a 20 Japanese character study instead of the required 30 . Colorado Rapids won their first title of the MLS on the same day . The audience at Nagoya was comprised of 12650 spectators , and Colorado had 21700 spectators . I study Italian too , I feel this language fresh because I have studied Italian since three months ago . This is the first entry of my diary . `` Do you speak English ? `` Thanks to everyone who edits this . I finished reading `` How Starbucks Saved My Life `` today . He started cleaning the store toilet and bagan to learn valuable things through his job , and he finally found his true happiness in his new job and unfamiliar environment . Good feedback helps students to improve . How different are feedback and assessment in English ? As you might know , it 's not as easy as it seems to keep writing diary entries continuously . But in these free days I had also done hard for my English , even some of the days I had to prepare to my exams . Did I just make an excuse not to do something ? I 'm a bit hungry . I did not arrange a costume for the party . But , I am double majoring in mechanical ( I think it should be English literature or English education , right ? ) Look at this clip , please : D My father is conservative . He is not so agreeable . My little brother is active . He likes playing soccer . Blue tincture curtains are popular . I teach Physics , Ana teaches Japanese , Ega teaches Indonesian , and Yanti teaches Music . At the beginning of February , some friends of mine also came to visit Tanzania , and we traveled Zanzibar island , which is the best place in Tanzania to rest ( or relax ) . So I decided to use my vacation ( only 5days including Sat and Sun . ) for English lessons ! Since I could n't understand anything , I do n't know what should I do during class . Someday I want to travel around the world . I stayed at home with my nephews , and one of my nephews used my telephone to record the video . Since I want to be an exchange student in Sweden , I must improve my spoken English . This afternoon , I used a subway to go to the centre of my city . I wonder if public manners for young girls are changing . I live in the dorm and I have four roommates . It takes about 20 minutes by car . Therefore , I have to ask someone who has car to take us to the grocery store if we need some fresh produce ( another word for vegetables , fruits and the such ) or meat . His concert was very fun , we enjoyed listening to his songs . Also , we ate a many kinds of food , for example yakisoba , tamasen , bananas covered with chocolate , etc . We enjoyed the school festival . Because I mainly like Rock music . Let 's go to the movie theatre `` And for just 30 minutes . Well , I do n't get tooo much , but it 's still a good deal : D I did n't exercise last week since my job training . It is straight and has wide a sidewalk , then I saw some people who enjoyed walking or running with their dogs . Birds were singing and flowers bloomed with morning dew . I 've been reading the Wizard of Oz . Does it mean that Dorothy finally caught Toto ? I got myself into net surfing . I hate people who laugh at others who are trying to achieve something difficult `` . Although my English course has ended a long time ago , I did n't want to stop learning it . he really nice sometimes when I have a problem I really like to ask him about it because he can help me solve the problem . I looked youtube for a long time about the animals and fish and I felt happy watching it . Now , mobile - sites are important for E - commerce in Japan . Learning another language is difficult for me . So I studied English for three or four hours a day since I started learning English . Competing with each other and achieving goals together will sharpen / shape their skills and bring beneficial effects to their learning . Generally , it appears that online learning is more advanced and a fruitful tool for studying . Istanbul is split by the Bosporus . Recently , I have neglected studying . Test week However I will go there someday ! I studied how to answer CET - 6 questions lately and came to realize that English is a more subtle language than I ever imagined ~ ^ _ ^ ~ She said `` Just listening or writing would n't work . I 'm writing this with a dictionary , but I wish I could write without it ! Yesterday , I tried making silver jewelry from silver clay . The game remained scoreless for 90 minutes and went into 30 minutes overtime . Japan finally scored a goal with a beautiful shot to end the overtime and won the game . I 'm a big fan of soccer , and I belonged to a soccer club all the way from elementary school to high school . Japan is now the champion of Asia . After coming to Singapore , I have been lonely becauseI have no friends in Singapore . Praying everyday was getting harder but I realized the heart of the Lord . Nowadays , since Kaiten - Zushi are spread all over Japan , we can eat Nigiri - Zushi at a reasonable price . There was a terrible traffic jam . Moskow very nice city , but here dirty air , therefore in future I want live in the country or abroad . I thought it would be a nice opportunity to improve my English writing skills and make good friends . But Karina , the Arina 's friend , was even more cute and beautiful to me ! That evening , Kostia did n't succeed with his beloved Arina , unfortunately , he was too shy and confused . I will try to introduce you to the story of AVATAR briefly tomorrow . I 'm a happy girl , because there are many kind and good people around me . Today , I was a couple of minutes late to school because I got up later than usual . I have started to write a diary in english . Last month I took the `` Tourism English Proficiency Test `` and passed it ! We can go anywhere without a car . Ironically a big amount of money kept in the bank accounts are pulled back into society again by the cheaters ( OR swindlers ) . After I graduated from the university as a mathematician , I decided to change my life and now I am doing my best to become a student of Prague University I next year . I will try to keep writing this dairy using a lot of words in the future . It was heavy , even without french fries . The double - decker hamburger was enough to fill my stomach till the evening . Perhaps people find that it 's more healthy to eat natural food and keep a healthy lifestyle rather than eating processed health food and using health - related products so that they are no longer going to buy any health - related products . So I like to communicate with people ; - ) I 'm a pacifist , open - minded , friendly and unique . I 'm person who loves nature and health . My daughter is two years old . I took so much time to find the appropriate word , sometimes without ever even finding it . It is a custom that we go back to our parents ' home for New Years in Japan . because I had a test in Chinese . Fortunately , the weather was also fantastic ! I 'm going to go to a drinking party today . We chose one and wrote the resume while imagining if I applied for the job . But I want to be an early bird so I 'm trying to wake up earlier than usual ( although I could n't make it this morning ) . I thought Puff Daddy ( Do you call him that ? He is going to try out for a team for the first time . The exams are held in November . Hello , welcome to my home in lang - 8 . First of all , I will introduce myself . I am a 21 year old Chinese university student . ( Such as in ) words or grammar and so on . I will thank you very much . English is so difficult . English is that I do not know how to remember new grammar and But it feels very comfortable for me . In my laziness , I only watched funny films and cartoons , I bet you will get a lot of chocolate from your students . A clock , a cute notebook , a big mirror , a keyholder , hair accessories and an English language picture book ! I 've been playing a game made by another country recently . But I have n't improved my speaking or writing yet . But I had to cancel my trip because of Swine Flu . This is his diagnosis . The first day of language school I think mastering our mother tongue is completed when we are very young . Of course we would n't have had such a big vocabulary back then . Have you ever been confused about using prepositions ? Maybe you already knew what preposition you should put in a sentence much earlier than you can remember . we stayed for a long time . Brain exercise for me , lolz : ) My second step is to look for internet websites that easlily teaches writting English dairies . Last Saturday I went to the beach called `` The Beautiful Bay . `` The sea was really beautiful . Listening to the sound of the waves . Unfortunately , the Beautiful Bay will not be accessible to everyone anymore , because it was constructed by the hotel . The beach will belong only to the hotel owner . The beautiful sea will disappear . He was paying attention to the cars but he was n't watching out for the bikes and then he was across there was a loud sound from the honking horns . On the other hand , compared to him , Nowtizki is not as speedy as Rose , but his fadeaway shot where he shoots while jumping backwards is unstoppable . I am dizzy and I feel down . I often say `` pardon , please ? `` Now I 'm studying English vocabulary , but I ca n't memorize anything because I immediately become sleepy . I think that using prepositions is difficult . I work at a convenience store near my house , on Saturday and Sunday . Many people come in who behave differently . That is one of the reasons I work there . I stopped writing my diary for a few months . But I decided to start writing on lang - 8 every day . In fact , I wanted to watch ' Avatar ' , but it was n't in theaters anymore . Guys , today is Christmas day , merry Christmas day , a happyday , enjoy it . It is called `` Gay referee `` . I could n't help laughing when I first saw this . Friend 's father : `` What is your name ? `` I was very surprised . Lol . My friend 's father was a gentleman like British nobles . Last night I ate my favourite foods which are sashimi and BBQ . ( r ) I thought that learning Japanese is so difficult for native English speakers but as I read their journals , I thought they have seriously been learning Japanese . Then , she emailed me back in response . I have been living in Los Angeles for three months already , but my English is still poor . The writer is a psychologist , he tried to explain about happiness and good life . He wrote the Buddhist way and how to take on the meditation , he told that the Buddihist need the faith to keep meditating . I think that most English learners dislike grammar which is essential for study and to understand well when speaking English fluently . I have already noticed the reason why Japanese people are n't eager to speak English in front of Native Speakers . It 's been almost two and half years since I moved to Okinawa . One of the things is MOAI which is similar to privatized insurance coverage systems in other countries but somewhat different . I prepared to leave for the station and slipped my shoes on in a hurry . Even being happy only for today is not always so easy , so how can we be sure we would be happy tomorrow or even in the future ? He taught me some English words today . `` Consult dictionary `` is just serious . I would like to talk to him using the word that he taught me today . I have looked up the word , you taught , in the dictionary . Of course I went to vote for the mayoral election . At night , the next - door neighbor was always annoying me because he played games with his friends so it was annoying but he disappeared recently . My first writing famous as the place name of a certain Japanese region since the beginning of the Kamakura era . I 'm a university student in Japan and want to major in control theory . On certain web pages that we can talk using each others language , I liked chatting with English speakers . If you have any good ideas can you recommend something to me . Hello , my wonderful friends . I saw my friend on MSN and she asked me to go somewhere with her . I think she wants to go to the club . But evidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporeans hang out with Singaporeans , Indonesians ( stay ) with Indonesians , and Vietnamese ( play ) with Vietnamese . And we are trying to figure out the most efficient methods to improve our speaking . SO , good luck for us . ' ' The time when you think it 's late is perfect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' Right now , I 'm going to my parent 's house to join an oyster party ! But I hardly speak or hear english , and I am not good at reading or writing . Fortunately there is a box office or ticket outlet in my neighborhood , and it 's so close that it only takes me 5 minutes to walk there . Even though it was quite late at night , we discussed lots of things such as religion , our national spirit , and ourselves as well . Hi Everyone ! We bow to our ancestors with the foods arranged on the table . My favorite story is `` A Study in Scarlet `` . I was surprised byHolmes ` s reasoning skill . I never thought terrorist suicide attacks were happening in the US . The terrorist turned airplanes into missiles and destroyed not only the world trade centre but also other important American facilities . I think the most difficult thing about English for most Japanese is pronunciation . We Japanese start to study English from junior high school ( when we 're 12 years old , but now it can start even earlier ) because actual native speakers ca n't understand badly pronounced English like I do . . . The difference between ' wrong ' and ' long ' is the pronunciation of the first syllable . I read books about some scholar 's theories and tried to understand the rules , `` When you pronounce ' th ' , your tongue must be between your teeth `` something like that . I actually struggled to find a correspondence spelling and pronunciation . She corrected me and taught me English and that was what I really wanted . My grammar is bad so my article is terrible . My English teacher always wants me to write an English composition , but I am scared about it . My favorite foods are cabbage and cheese . if you want to write a Japanese message , you will send a message or comments . Memories of a Trip . It says that this color gives impression of cowardice . They are very beautiful . I ` ve never been able to part with those cards . But I have started to enjoy London life recently . So I started teaching English to young children and then adolescents and finally I learnt more about English grammar and became better acquainted with it I have been thinking whether I should buy an ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convenient and useful . Sudenly , She was silent . My seat is a right under the air - conditioner . I have a medical test tomorrow . but here was my weekend I did not study hard . We wanted to speak to them , but we could n't because we could n't speak English well ! Hahaha , I 've just watched the first episode of `` Primeval `` . I have trouble with English . I can read and understand English sentences , though sometimes imperfectly . I want native speakers and anyone who is learning a foreign language to teach me . I often hear that English is the most important language of all who want to succeed in the world . I 'm very sad . The other day , I was watching a variety show on TV and an Australian comedian said this . and if we worship him , he will give us happiness and let us go to heaven after death I am off today fortunately , so I will be watching TV , internet surfing , and so forth . But I ca n't sleep until I finish writing my entry . . . . . . . . In addition , I want to speak to people all around the world and work in America . Of course , it 's good for my health . I eat it every morning with soybean flour and green tea powder . There are many English schools online , some are American and some are Filipino . I forgot where I heard about it , but according to some sites , an average college graduate native knows more than 50000 words . We ordered the New York and Angus steak , and both came with mashed potatoes . Since then , I can concentrate on reading the book and understand what the author is saying clearly . I know that listening to English conversationsand speaking in English a lot are good ways , but I think first of all , memorizing is the best way . could you explain about the use of ' with ' in the sentences below . I thought I could hardly success . I 'll try not to be nervous and do my bed . I prepare for the interview from now . I have to review excel , word and Japanese . Which do you want to learn English or Science ? The competition was held at the stadium called Kita Yell . I would like to ponder about this case and to hear your opinion ( if only my friends did n't lose hope to read something from me , sorry for my long break ) . But we live in different cities and have n't had the opportunity to pay each other visits very often because the distance between us is 5000 km . About a month ago , it was announced that Dragon Quest 9 ( DQ9 ) 's release would be postponed . The Next series is supposed to be released by NINTENDO DS . I was fully prepared to buy it only for the purpose of playing DQ9 . I felt very sad when SQUARE - ENIX made that announcement . There are many rumors for that on net . I read many articles and thought about it . In the previous series , SQUARE - ENIX set up a provision / trap against Majicon . The company produced the game like that in case the player uses Majicon . Do you think they 're real or imaginary creatures ? If god , ghosts and creatures from outer space are in existance , it 's only natural that vampires live somewhere . He stayed at our house for 3 months then . His Japanese had improve a lot now . through liquor and another people who can get rid of the stress At one time I thought that people who exhaust their lives were successful . I feel satisfaction when I 'm working . People sometimes voluntarily enjoy something bad . Somehow we feel happy when they succeed in accomplishing something worthwhile . I will go to Taiwan in October on business . I 'm looking forward to going to Taiwan next month . this is a traditional traditional festival , maybe other families are happy and expected , but my family is not , fundamental : I need to study the fundamentals of Japanese history . indispensable : He is an indispensable force for our company . splendid : Casa Roma is a splendid castle built in Toronto . The problem is that these lifestyle changes can make people overweight easily ; also people do n't want to exercise . Choosing a PC In my new life style , I have a lot of changes compared to before . On the other hand , almost all cars exhaust carbon dioxide . There are too many self developement , self - motivation , or self - help books in Korea . I ask him to let me sleep 30 more minutes , but he never does . I 've traveled to some places not only in Japan , but also to other countries . Last weekend my wife and I went to tennis matches for beginner mixed doubles . It 's delicious and rare . I want to learn how to cook this kind of beef . However , I can not explan . But today , I found out good website for my thinking which can not explain right now . Kendo is not just a sport , it is also Budou . Kendo is similar to weight training . I can understand them . I 'm not good at expressing myself , I do n't have any qualifications except a driver 's license , and I have never had a special experience such as an internship or volunteering . Since the entrance exams for universities take place next year , Sometimes I am tired of the piles of assignments , but I enjoy spending a lot of time with my friends , and having high aims and good teachers . I have decided to keep a diary in English as often as possible , so My main difficulty is understanding spoken English . When the groom kissed the bride many cameras flashed . I am happy for them sincerely . Will someone correct my grrammatical mistakes after I post my articles or should I add someone as my friend first ? I found him in YouTube : ) He made a parody of Miley Cyrus 's 7 days . Although I do n't study English at the university , I want to be able to speak English fluently . It is derived from `` family `` In japan it is winter now . Recently , I happened to hear very nice music . I watched `` Enchanted `` by disney . Someday , I want to fall in love with such a prince ! ! I want to communicate with a lot of people . I 'm a normal man . someone please help me lol I 'm in a hard situation , no , I 'm in predicament now . The reason why I say so is because I found surprising stuff in my house . I thought he put my socks into his closet again . Oh my goodness ! It was a gay magazine ; I was really surpurised at it , and I was also scared of my landlord . I 'm gon na have to keep protecting my ass from now on until the date of departure to Singapore lol . Although the vet told us Frontline is working , and that we should n't worry , we are not happy considering our dogs ' conditions . What I 'll write is just my opinion , so even if my methods are different than yours , do n't worry about it . If I wanna improve my speaking skills , I should make a certain number of sentences a day and have them corrected by native speakers . If I wanna understand what English speakers say , I have to read English books and I have to ask Japanese people who can speak English very well if I ca n't translate it . My Recommended Movies / My Movie Recommendations My friend introduced me to this useful website . Although , my Japanese is not good enough to write an article . as playing basketball , swimming , running and so on . If it was sunny , I would go fishing with my friends and swim . I think that impossible right now . wuwuwu . But I guess I can play computer games at home , hehe . But , I want to comunicate with more foreigners . The JLPT just examines the learner 's knowledge . In the Pacific seacoast region of Japan , the rainy season is from the end of May to the beginning of July . there is a wide range of Nabe in Japan , we ate a simple kind of nabe . To make nabe ; put all of the left - overs in the refridgerator ( such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water ) into the pot and cook them together . Alpha waves have a frequency between 8 and 14 cycles per second , and they are found in states of peace and of relaxed alert . The massive production of Alpha waves in children makes them have a great learning capacity that can even permit them to attain / achieve super - learning or accelerated learning when in a state of peace . I respect people with a strong character . Recently , she has started to make beautiful accessories . She is very talented . I ca n't get up early in the morning ! ( original sentence ) Odell was n't certain of what he saw , the climbers may have been at the first and lowest step , with the all - too - formidable second step still to come . I 'm going to write about the spacecraft Hayabusa today . The body burned , but she released a capsule toward the earth before she was burned . If there werealiensin the capsule , Wewould besurprised ! Someday , I want to sing songs in other languages too . This is the first time for me , writing my diary in English . When you are busy enough , you will forget what you want because you have no time . I 'm going to eat Russian cuisine tonight . I did 't know that early day 's tango was played with flute and guitar . Meanwhile , most of the oldershops in town do n't have parkinglotsor require you topay forparking . I have studied english for about a year . I sometimes import Manuka honey from New Zealand myself . Because it is very different from anything I have ever used , it is very difficult for me to use it . I ca n't go home until you give the report . I major in international relations . We ca n't see anyone succeeding just because of his or her talents . Rather , we can see many people succeed by their hard work . We learn from pronunciation , but learning languages is n't easy . I have finished to read reading a book . He then begins started to study this phenomenon . I am continuing my English learning journey . . . I was surprised at an unexpected visitor . I really love teaching Samulnori with traditional Korean equipment ( or : instruments ) Do you think that it is too late for someone at my age to be studying ? Since the first time when I see blackberry phone , I have been totally into them , they look luxury , and the design is stylish . I am still considering to buy it or not . Although Samet island is not as popular as Phuket or Samui , its sea and beach looks very beutiful ! I didn ` t have a fever , but I had a bit of a headache and stomach ache . I saw many different costumes and dances . I have been here for 3 months , and now I am living in MELTON , which is a little bit far my college . If there are not any dishes you want , you can order through the touch screen controller . An increasing number of revolving sushi bars have opened recently , meaning we can eat sushi at an affordable price . He told me to use the expressions that can be found in the dictionary , otherwise my English will sound strange . Today , I began this lang - 8 service hoping to improve my English writing skills . Time permitting , I would like to take part in advising on the use of Japanese , and am would be very glad to get any tips on my English . I was raised in a small village , and my father is very poor , of course so am I . I really want to visit there again , and if I can , I will live there for several years . It was a beautiful day yesterday . Then she disappeared with her son . FridayIhadhis class ( no comma ) and I was happy on the way to school . ( period ) I imagined how happy ( I wantto use a similar word tohappy ) I would be to see him again . ( period ) When I arrived in class , I said `` Hi `` to him , but he just said `` Hello `` to meas he would to a stranger . There is no way that showing kindness , affection , and any other positive thoughts wo n't be appreciated . And I saw a cafe in the movie , `` The Born Ultimatum `` , in which the main actor is Matt Damon . If you won 10 million dollars - the same mistake : ) To begin with , I 'll do my last semester at university for graduation . I 'm sleeping in until the afternoon , eating lunch with breakfast , and surfing the net until it is time to eat again . Then , I may bathe and go back to sleep . Holiday is so boring without friends . Should someone correct my writing error and fix my laziness problem ? I have two children , one is in college and the other is in elementary school . What kind of people do you like ? Thanks for reminding me ; I remember those moments . They were very amaizing , life was beautiful . I went to a shopping mall in the neighbouring city to buy a Christmas gift yesterday . please ~ teach me English . If you wanna learn chinese , just add me . And because of the rain , I could n't go very far for dining , and I could only choose the nearby restaurants . I 'm starting Lang - 8 right now ! My English writing skill and vocabulary are really not good enough . The high heel is actually not so high . find my diary entries and correct them . Actually , I do n't miss everything in Taiwan so much . I would rather try exotic food here than Taiwanese ones , Even though he said that I had to taste some Taiwanese cuisine here , that way , I could compare what the differences between them are . Do you have any idea what causes this difference in perception ? Nah . . . Sometimes , I see that that they are very smart , organized , and privileged at the same time . He told me that Americans are different from Egyptians in their thinking and in their professional and personal lives . But this does not include all of them . I write this entry because I want Americans to tell they spend their vacations . Thanks to any one will answer to me questions . I really like her eccentric fashion , action , performance , and - of course - her songs : ) I have to wash a lot of laundry ! But it makes me too addictive . Hello ! My name is Sar . I am interested in English language . It seems more difficult to make friends with new acquaintances as we get older and older . I ` m a Junior at Hankuk University of Foreign Studies . Please correct my sentences . Today it is essential to have recommendations because the employers are too busy to receive a lot of applicants . I do n't have anything to do now , so I 'm writing this journal now ~ A kind mariner adopted him and taught him how to read , write and his own interests . This is a picture of my dog . Japanese usually begin to learn English when we are primary school students or junior high school students . He was non - Japanese and about 60 years old . I will send a letter to my host family today . I am so excited . I always say that I have not enough time for to study in the night . With Windows 7 , and supported devices , you can an even better experience with Device Stage . Put the all the ingredients in the pot , and boil them for about 15 minutes . Put them in a plastic bag with flour , then mix it . Put the fried wing tips into the sauce . Its a small class , only 4 people . There were small candles ( on every ) table . But , [ comma ] we chose a main dish for ( ourselves ) . need some shopping or resting . There is a Chinese temple ( maybe a Buddhist one ) near my house . It occasionally holds events . What ceremony is being held there ? In fact I do n't know whether or not he is my boyfriend . When I watch the movie about Victoria in Canada , I 'm amazed at the huge forests , high cliffs , and the incredible view from the top of a famous mountain . I saw many things and bought some commodities . There was a TV program about pyramids . I found TV programs about pyramids on the last day of last year too . I wonder why there are this many ones about pyramids on New Year 's Day in Japan . But , as I watched , I became interested in pyramids gradually ! Some day , I want to go to Egypt and enter ( inside of ) a pyramid ! It 's a huge mystery ! I am going to go to Iwate tonight to see my grandmother . Secondly , the government should take I always order Subway 's daily recommendation . Yesterday , I ate a BLT sandwich . Recently , I 'm constantly irritated . I am very relieved when I communicate with you through Lang 8 . I 'm enjoying holidays ~ I 'm relaxing during the holidays from the 13th of August . Today I 'm going to clean my room , do the laundry , wash the dishes and so on . So , I do these things on holidays . She did not study hard and ended up as a maid too . Hello everyone ! : ) I want to study English today little by little in order to study abroad in the future I want to study languages by chatting with English speaking people through my computer and I searched website like that . I do n't like the bus because it is very crowded . If I ca n't sit on a seat , I have to stand for forty minutes . However , I have only a little information about Mexico , I left my work for parental leave . Today I saw an article that said if express tolls become free , more people will use cars , and as a result greenhouse gas emissions will increase . But , I 'll be learning English through Lang - 8 . It 's an exciting spot for any Ghibli fan . Today had many events ! I am redoing this blog . As time goes by , we 'll go our own ways and become busier , but we will still remain in close touch with each other even though we are in different situations . Strangely , I think Korean resembles Israel in some ways because of some passion and temper . Because the job notice was supposed to be announced today . I called asking why the notice was not announced and they said that it was delayed until next week . I 'm into bikes ! It was pleasant to ride on my bike . I rode on a bike as a child , so I have gotten used to riding , even as an adult . I always have to be careful so as not to break the speed limit . My collegue , who came to our clinic by bicycle , said that it was really tough to pump the pedals while traveling against wind , and that it took twice as long for him to arrive here and saw some people fall off onto the road . This can sometimes be dangerous because on days when the wind is strong , we have more patients who break their bones . Rhythm games are similiar to learning languages because both require so much time , persistence , and unceasing effort . Luckily , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . For her parents - my grandparents - we prayed in the Chion - in temple , which is the headquarters of the Jodo sect of Buddhism . I have to study Japanese more , not only grammar . After that , one of my friends wanted to play a shooting game . 7 / 5 was my friend 's birthday , so our friends celebrated his birthday last weekend . that was a pretty dream . If I saw her in Bangkok what to say to her ( in frist word ) at first . Korea 's big holidays Korea 's big holidays are coming up soon . What am I going to do for the coming holidays ? After these holidays are over , it seems really doomed because there are almost no holidays in 2009 . My mom came downstairs to confirm whether I scored 71 or not . Yesterday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croquettes because they do n't cost so much ( around 10 - 20 yen per piece ) and croquettes with brown ( Worcestershire ) sauce are the best with beer . As I had not spoken English for longtime , it was difficult to speak fluently . I think learning another language is similar to playing sports . I do n't work at the moment , but I am going to look for a job which is hopefully the same job I had while working at theimport department in 5 months . I thought that my experience was awful , but I appriciated my friend 's kindness . She possesses a lot of talents such as teaching English . She is willing to be taught Japanese in a friendly manner . . . Last week , I was a substitute . I may get tired by the middle of the game . And it 's human nature to feel a bit uncomfortable about the unknown . Hi ! ! ! I 'm studying the `` Media History of Japan `` at my college right now . My other language In Spain , Spanish is the official language but also spoken are languages such as Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak some them such as Catalan , which is a Romance language derived from Latin , and is spoken in Catalonia , Levante ( in the area called / of Valencia ) , in the Balearic Islands , in Andorra ( which is a small country in the Pyrenees , southern France ) and some in the Italian city called Alghero speak Catalan . It is the 75th most widely spoken language in the world and I am very proud to speak it . And I thought the only thing that make us feel a little unhappy is that the serving fee is 10 % of the price , even higher than the GST ( the Tax ) , which was not mentioned outside the restaurant . She has been to China and studied there for 4years . I sometimes have difficultycorrecting students ' English compositions , so I need someone 's help . After a few years I decided to brush up on my English . However , after coming to the US , I feel that this is not true . When I was a high school student , I was always concerned about the school uniform 's ugly style . However it may be difficult for me to make my dream come true , because I have a four month old baby . . . Maybe it is a dream . . . I have played the saxophone in school club activity since I was a Middle School Student . I want to meet her again and talk about things that have happened to each of us lately . There are a number of runs in this `` Fiesta `` . Please let me know is there any racism in your country . I love jogging . I used to have this habit , but sunddenly I stopped . It 's fun , especialy for me , because I do n't like to exercise at a gym . It 's too crowded , I do n't like music , and I always have an excuse not to go . Then , I researched this song on the Internet . When I hear this song , I remember her face and her singing . `` Ann and I are going to go to China . `` Are these sentences correct ? The luckiest man in the world Stephen Brad Bury took the gold medal in the Salt Lake City Olympics in 2002 / 2 / 16 . My eyes are sore these days . My mother is a nurse whose job is to care for handicap people , and her hospital has a school , a car , and a bus for them . But , in my living country , many handicap people use public buses , which have lifts for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work without hiding their identity , and their classmates talk to them as friends . I volunteered at the university last Saturday . Campus Tour was popular , so we increased our tours . Japan has very beautiful flowers in spring . I will talk about my research for six minutes , and after there will be a Q and A session . For now , I just have to study English hard in Japan . ( ^ ^ ) / \ ( ^ ^ ) So , we just had the Gay Parade , which is one of the greatest parades in the world . And you will need to know the foreign language very good in order to understand and be understood . On the other hand , education in your own country , for example , in Russia , is adds perspective too . Russian , Literature , Physics , Chemistry , extra Chemistry and History . . . . . . . . . . . . . . It 's very good gadget for me . Can you correct my sentences ? Santa Clause came to the party and gave me a present . * * My teacher said that Santa Clause majored in engineering . Are the problems which international travelers cause greater than the advantages they bring ? Introduction : Travelers from other countries bring more advantages than problems . It brings a lot of interest to the country . We had all inclusive , so we can eat and drink everytime for free : ) Egypt is a very interesting country . . . I 'd like to help people trying to learn French too , that 's why I find Lang - 8 wonderful . Japan usually hires the students as new workers until spring . Have you ever imagined your future lover seriously ? In the end , I couldnt even show my smile in front of them , and I could n't see their smiles either . I am extremely excited to hangout with the girls here , as a friend or more than that . I always puzzled on choosing between `` to V `` or `` to V - ing `` . I think it 's a great web site because I can practice my English here , and I hope that I can help others to learn Chinese too . For many people , it 's such a comfortable temperature . This is my first time However my spoken and written English are so poor , so I am afraid to open my mouth . I do n't have a foreign friend , and there is no foreigners around me . ( Just space . ) What if I speak English to my friends ? That 's so weird . ( Space . ) Second , they may not know what I mean because sometimes my English is not good enough for them to understand . But some cloud was hiding it . . . I learned a lot of things about Shintoism . but I can increase my concentration through prayer . It is the story about mathematicians who try to prove Fermat 's unproved theorem . It tastes terrific and the / it 's texture is like a rice cake . Its been almost a month . And elderly people do n't feel hot very much . Also , some elderly people think that cooling your body is bad for your health . They had lots in stocks , so they wanted sell them . . . Because Dazaifu - Tenmangu is a beautiful shrine . When we are angry , not only can we not solve the problem very well but we also make the conflict grow . I believe my English is not good because I can not use it fluently . I made a less than delicious cake I search the recipe , the main crux is setting time and temperature for oven Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as cartoons , and they are interested in Japan ! I often talk about Japanese anime and cartoons to them . So , I want them to know other aspects of Japan , and I want to know culture of other countries ! I 'm studying English for a college entrance exam ( ination ) . I 'm looking forward to receiving corrections on my journal . AndI accepted his invitation . I have learned never to use the webcam with stranger . AndI deleted my profile instantly . anatano ie ni pasokon wa arimasu ka ? kono atarashii oobun wa yasui desu . In high school , I fell in love with my korean history teacher , so I did well in korean history . my family believes that everything is influenced by the heart . and I usually think positively and enjoy day with a smile . I do n't think I have any . . . . I think that the students were so surprised that a beautiful woman belched . . at last , please gives advice to lovely Chirwon high school students . At this time , you do n't have to be greedy . Find your own beauty , make impressive memories , and build your self confidence to challenge new things . He lost his house and family , the only thing he has now is a life . I bought one easy book for beginners , but that 's all I did . Only recently was it that I decided to study again ! When entering into a boutique or dealing with a clerk over a cashier counter in a supermarket , Japanese customers do not say hello to the clerks . ( They wanted to know where the bag is available , but was disappointed to hear that she bought it in Japan . ) For example , people who really understand mathematics can visualise things in their brain quickly when they are working with a trigonometry . I have never gone abroad , so I want to travel around the world and see many places . It is very cold this morning . I received a new Spanish text from Japan , which is for beginers Sometimes I ride it instead of using the bus . As you know , the town of Iringa is pretty far from my place , so whenever I go there , I should stay there overnight . Soymilk tastes similar to milk . She said , `` I 'd never done something like that such a long time , `` so hearing about it made me touched because I 've also wanted to go to Univercity since before , but I could n't decide what to do for it now . My friend 's talking made an impression on me . I have struggled with it until now because I have no confidence that business courses can be useful in assisting me to find a job in New Zealand . First , when I ask about the condition of the patient , Are these correct ? ? What are other real English conversations , please tell me . For example , reflux in veins , clot in arteries , venous insufficiency , or thrombus . I heard that she bought many alcohols , especially Japanese - sake when she went I always think about it more seriously than others . But I saw a different fashion from conventional fashion . From next week I decided to go to a community center 's English club . I really do n't want to forget English . I 'm waiting for your mail . But here , I can say anything I like , even though it might be wrong . I have written two diaries since I have started using Lang - 8 . I am a colloge student . I am very outgoing and very willing to make friends with everyone . If you like me , you can leave a messege for me . I am very gratefull to everyone who corrects my diary . Today , I have two announcements . We think it will be help you with your language learning , to see the entries written by people who are learning the same language as you . You can customise your home page on the `` Settings `` page . If you are interested in gadgets and games , please contact me ! I do n't know why , but we are normally supposed to write our resume by hand in Japan . I went to see the World Baseball Classic 's final game that was against Korea at Dodgers Stadium yesterday . Korea was very strong , but finally Japan could win . We were really excited and happy . As you know , recently more and more people have poor healthy , why ? She 'll probably stay at my grandma 's home for a month . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own problems . but now , we do not have much water , canned food , or ramen . Maybe he never loved me . I sense that he does n't care for me as before . A month ago , he said that we should go home together . Looking at it now , what he said is empty . so I 'm writing these sentences for the time being . I mean I want to improve through conversations firsthand rather than unilaterally in front of screens , no matter how inaccurate the informationis compared to that of mass media . Bean is very funny and foolish , Rowan Atkinson is usually a serious and calm gentleman . The Mid - Autumn Festival night November ? December ? Unfortunately , I was using my laptop and I did n't have a mic . even if I have no boyfriend , I wish all the girls who do have one will eventually get married . She said , ' I promise you that I 'll do my best to study hard . ' Are you satisfied with your career ? Because , I 'm just making my career now . S . , I will never have a plenty of free time . You know , it is one of the most famous universities in India . Which of these sentences would / do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? When I was a junior high school student , there was a Kendo tournament . One day I was on the way back home in the evening . I know some English words and grammar , so I can write English sentences like this . At first I want to concentrate on improving my English ability . I want to help you improve your Japanese ability . Now , it is raining , again . I ca n't go out 'cause it is a little difficult to see the streets due to the fog . Child education is a very useful subject because I want be a mother . I sent cosmetics to my friend and sent an email to her . If I have the ability , I 'll write an essay . In a pool , she is scared to put her face into the water . And at a park , she can not turn the iron bar , because she is scared bending her body toward the ground . They were my first choice company , so I 'm very disappointed . . I 'm pleased to love it because I want to speak English very well like a native speaker . Therefore , I must study everyday , especially English . Well I decided to take the TOEIC test for whatever reason . ( Ah of course I have been studying English so that I can use English for some purposes . . . ) I am at ( the ) Ohtani University in Kyoto . I want to be an employee of that bank . I might just not be used to this weather because some coworkers are wearing short sleeve shirts . These days I 'm so lazy . `` keep yourselves from Idols . `` In afternoon , we had a body - building examination . I really want to pass immediately today I tried all the rides , and I screamed something terrible to help myself feel better . Japan will play the finals with South Korea at 10 a . m . tomorrow . But recently , I enjoy learning English , because sometimes I can notice an improvement in my English , either when I talk with an English speaker , or when I watch `` TED `` ( This is my favourite programme ! ) If I need to make an appointment with my friend , but am not sure when he is avaliable , I wrote a journal entry yesterday saying that I wished something special could happen , and there it is ! Then , I brought it to the bicycle shop to ask them to fix it today . We have a peaceful life here , so sometimes I really want to go out and experience an exciting and unusual life , but my parents are worried about me , because they think it 's better for a girl to live with her parents . My Introduction My hobbies are to learn languages , to speak with a lot of people via Skype , to drink at the bar with my friends , to read books , to go abroad , and etc . So I believe the best way to do window shopping is to bring nothing Of course , I want to use English in business . It is not dyed , and looks healthy . What made her look humble is definitely the combination of damaged jeans and sneaker . I 'm always worrying about that . Before , I lived alone in a dormitory of my corporation . I brought something to cook and eat in the dormitory Now I enjoy dinner time with my family `` my son will start to become ' homeless ' in America `` to the neighbors . It was very tasty , and I felt comfortable . But I feel like thetemperature in the library is below the freezing point . but I think t New York is a little bit nicer than Seoul . I shopped online for about 1 hour , and I bought a bottle of lotion . I gained weight ! ! ( T T ) My weight . . . . I feel it 's really hard to speak to foreign people in English . I would like to say I have around several problems in my English study . Although I spend a lot of time on it , it still seems to make no sense . I like this period between summer and autumn best of all seasons because I feel energetic ( I mean copy and copy that ) never mind a computer , despite the fact that I 'm already 30 years old . If I could think in English while reading English sentences , my English comprehension skill would improve rapidly . I arranged it by adding cabbage under the pork and then putting a soft boiled egg on top of the pork . Are the following sentences I 've created grammatically correct ? I 've been studying English . Although Lewis 's piano solos are sometimes a little bit annoying , Something truly new is often accompanied by some kind of discomfort . There are no interesting places to go for a walk . The first time you go there , these places seem unusually interesting . Especially talking with someone to gain more skill . I want to go abroad , and make friends there ! I feel ashamed and sometimes I feel hatred toward myself . But I will give an example to you . I have a strong sense of justice ! ! ! I 'm a little upset by it because unlike many people my age I like going to school and I 'm keen on learning new things . what the heroine thought when she met with the vampire , Edward , impressed me so much . It 's just like what I experienced when I was a teenager . write in English daily , and watch NHK English program . But I overslept today , so I could n't study English . I will have to go to bed early in order to wake up on time . more time to know more people and time for improve my english What I try to do is to increase my vocabulary : if I run across new words , I look them up immediately and review them before I go to bed . From tomorrow I will start studying for exams . Firstly , I like music . My favorite artists are BUMP OF CHICKEN , Sister jet ( they are a Japanese rock band ) , Avril Lavigne , Hilary Duff , Sugar cult and so on . It was an amazing experience . I 'm interested in English and I think English is needed in the future so I 'm studying English now . And one hairdresser came to me and asked me `` just cut my fringe , please `` . After he [ / BLUE ] finished cutting , I saw my face on the mirror and I was awakened by it . I made a mistake that I deleted many songs in my I - pod . . . Maybe I will have a topic to write about tomorrow . When you come to Japan , do n't forget to contact me . Because Japanese is quite similar to Korean . The bullfighting is a ceremony not just about killing a bull , but also about looking forward to a good harvest . They looked quite mature for their age at the entrance ceremony because they were in suits . My university does n't have many students but I can make friends with almost everyone and I 'm looking forward to that . So Green tea is Ryoku Cha in Japanese . Reducing carbon dioxide is highlighted by TV commercials frequently . I am also learning Thai informally . Tomorrow is the end of my vacation , I was walking around Akihabara to shop in the middle of summer . My aunt was an academy teacher . It was very delicious . I thought it was a bit weird because she and I were not so close as to exchange text messages with each other . I had strained my left hand ! It was cloudy this morning , but at the scheduled time of the solar eclipse , we all went to the roof of our building . There are a lot of Japanese toys for kids , so I 'll be happy if foreign people also like them . I 've had a cold and a sniffy nose for the past few days . She said that she really wanted to stay over at my house . The university tries to push students to communicate and use a lot of English in their studies . It was really really exciting ! ! Two days ago I went to Hyde Park with my classmates for a farewell party for one of them who was leaving . While walking down the street , I thought I liked the atmosphere of the town . I 'd already seen the movie based on it before reading it , so I could understand the whole story even though I could n't understand some chapters in detail . But I couldn ` t find any place to play with my daughters because it was rainy . We watched prerecorded programs and she let me read books to her . I 'm into horoscopes these days . The victims of the tsunami and the radiation leaks are suffering a serious shortage of food , water , medicine and proper heating . I feel itchy . Please check my Clumsy English . When drinking with friends I 'm not well acquainted with , I have to say ' ' I have to be up early for study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , last two of three are jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe even more than usual so we have n't got so much work to do . It 's because the older students attended the international conference my professor helped organize . I alway set my alarm clock . The alarm sound was set to music . I think I have to change the alam sound to be an annoying thing so it can make me get up earlier . She bought a lot of things on the web and spent a lot of money . There are so many ants in my house especially around the kitchen . They are mostly fickle , disobedient and not smarter than dogs , and this is probably true . My other friends and Iwere impressed by his comment Arfter that , My Korean housemate came in my room and told me he had tried to make Korean food and to eat it . It is my final year in the univeristy . Both of these countries must have a lot of similar places . So I want to go to experience and compare them personally . Every student has to hand in the report , so that it will help the students who will go job hunting next year . I 've been playing `` City Ville ' ' on Facebook . Recently , I do n't feel well . I think that it is important for Japanese to show ' a token of thanks ' through some ways if we receive some gifts or help . The whole city is plagued in confusion and sadness . It is convenient with many means of transportation . One of my double majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rmb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationship ! When they are alone , they usually feel heart - tired . What can I do but wish him a pleasant journey and fly higher in the future ? They just keep making fun of me , and they do n't share their work with me , but with another colleague who came here later than me . This month , I 've faced a lot of difficulties , one is about work , and another is about a / the / my relationship ( actually it 's also about work , because what I am going to talk about is the difficulty with dealing with colleagues , and some of them are my roomates ) . In terms of the top 5 countries , the table shows that Japan , Australia , USA and South Korea the weremost common origins of tourists to Britain in both years . These days , I often listen to Arirang radio which is a Korean program in English . The european buildings were resplendent , elegant and spirtless as it always be . I 'm looking for going out to dinner with her . Some students are usually running around the school at that time . But lately , I started slow jogging for my health . Someday I want to run in a marathon . One day , I found this website on the komica , an ACG website , and I immediately find that it 's a very interesting website . When I think about people who live far away communicating with each other , I feel very excited . The other smartphones are not as attractive to me . I went shopping to an electrics store . I wanted a small personal computer . It was very expensive . I want ( to have ) a lot of money . The population is decreasing . More specifically , young people are leaving and the population of old people is increasing . My work schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarten teacher . After I ate the toast , I listened to music . You can browse all of my blog in this website and I had a list of my other blog websites in blogs of this website . The dead languages Hard schedule . I feel I 'm lucky and I want to take care of care my daily life . We got a present from science club ! I accidentally locked myself outside my room door like an idiot . After several aftershocks , I checked the news to research this earthquake . Today it rained so ~ ~ ~ ~ much . but it rained , so I could not go out . I am in an ELD ( english language development ) class . If my English improves , I will take some science classes . I want to go to a good university . Some presidents run Gourmet site and some run SNS sites . Recently , I have been bored studying English words . Then , I thought to study English words while reading book . Is there a book which you can recommend for a beginner ? Do you know a book that you can recommend for a beginner ? As far as I 'm concerned , English is a beautiful language but I really do n't want to accept the fact that my English is really poor especially in speaking and writing . In China , finding a good job is very hard . It is n't as hard in New Zealand but it 's still not easy . I am not sure if they do drugs as much as a drug addict , or if they did it only once , because I heard it from someone else that I hardly know . So I decided to ask the two guys face to face if they are drug addicts or if they are dangerous because I do n't want to judge them and talk behind their backs . Today it is the birthday of my lang - 8 id . I am writing this article to celebrate starting my blog . My Japanese colleagues are morons , nobody can speak English well except for Seki - san . A raccoon on the balcony On the other hand , we must accept they have weak points , like the risk of addiction and possible unintentional public exposure , which has happened before with previously developed communication methods such as the telephone . Traveling to Busan last weekend with my friends was a really nice experience , but it was exhausting . I want to get married to him and have a family . Besides , I have to admit that I am a playful boy . There was a ideal Dell Server in my office . Today was an ordinary day . I woke up and went to University , worked at my part time job at Starbacks and then went back home . I think Oden is uniquely Japanese . It is easy to cook and an economical meal . The beginning of our relationship , he made me dinner which only had some fried meat and some instant mashed potatos . The healthiest food among what he think is healthy is a subway sandwich , but I know that the white bread made out of flour is n't really healthy at least for Koreans . My dad is librarian and always has a book for me . How about : Face to face against Real Madrid . Congratulations ! By the way , I want to study abroad after two years , to learn Engish and different cultures . However , , I am having trouble deciding where I should go . My senior suggested I go to America or Australia . In his opinion , In America , American English is spoken and in Australia , British English is spoken . I should select one of them . Where do you think I should go ? Encantada de conocerle . Since last year , I have been studying economics for a civil service examination . I thought that is why I ca n't be good at it . Many of my friends are sending and receiving this email even now . My father fainted on the shinkansen once . At that time , there was a doctor on the train , and was ok . Fortunately , I have many an opportunity to communicate in English now that I live in Singapore . English is very difficult It takes a lot of money to go Canada . Moreover , doing chorus in class makes thier relationships closer and stronger . They would cry , being angry , e . t . c . Above is the picture of the city whereI live . The view is so beautifull ! Every summer season , frogs cames . So I hope I contribute to all people ! I have difficulty explaining the rules in English , so you may not understand . Students at many universities in Japan are required to study a foreign language , usually English . We succeeded in communicating with each other because English was spoken . Generally , each age group showed a consistent increase in literacy rates of up to 100 % or almost 100 % , although the level of changes were different according to each age group . There was a dramatic change in the youngest group but the two other groups showed gradual increases too . Yesterday , I signed up for a correspondence course . The course costs about fifty thousand yen . It 's not cheap but I can pay for it by the welfare program which my company offered to me ! The course will begin next month . Tomorrow I 'm going to London for 4 weeks to study English . If I go overseas , I would like to see more monuments ! We will be going to a wedding shop because my friend is getting married soon . Fortunately , the damage to buildings was small . It is good for learning English but it is not good if I have not bought them . The reason is , first of all , that he knows a lot / is very knowledgeable about architecture , and he is always willing to pass that on to his students . About the Canadian International Dragon Boat Festival . Dragon boating first ? appeared in Vancouver as a demonstration sport at Expo 86 . The people raced in their boats , using their oars to keep fish and water dragons away . I felt English was really interesting ! ! So , I wished to become a customer service agent in an airport . I am learning English and Chinese now . SINCE IM NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNORE THEM WHEN I FOUND THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` WHICH I LISTEN TO INSTEAD OF JUSTIN BEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID NO WAY ! ! ! ! ( I find ) it is a very difficult thing to do . To the fact , I will get a dog in two weeks ! I am majoring in English . We entered the competition as KOF , a famous Japanese fighting computer game , and got the third place in Beijing area . I have not written on Lang - 8 in 3 days . I am proud of the workers who are working at the nuclear power plant during this disaster In Fukushima , although they are working there without electric lights and with no I 'm a Japanese university student in Kyoto , the most historical city in Japan . I 'm majoring in cultural anthoropology . Yesterday an accident happened on my train . I am going to an outlet shop in Gotenba , Sizuoka prefecture today . I had lived there until I graduated from high school . Then I left Hokkaido after . I have graduated from Shenyang Airspace University in July , I majored in Japanese . Spicy Foods & Cat 's Tongue `` I watched TV and learned that it 's because of the tongue 's movement . They end up touching something hot with the part of the tongue which senses heat the best . I 'm very happy because I wanted to learn English in a more proper way . It was raining heavily today . many things about my life on rainy day . Of course they asked us questions such as / like `` What is life ? , What is death ? `` and `` What is a family ? `` I like Burger King very much . I went to Okinawa on my spring holiday with friends . I went to a duty - free - shop , did scuba diving , ate `` So - ki soba `` etc . . . . . During the trip , it was either rainy or cloudy . Me llamo Tammy , encantada . Study animation abroad . He is studying Japanese animation in school . I do n't know difference between American anime and Japanese anime . I do n't know what kind of animation he is studying . We had a nice conversation together . He looked like a funny and friendly guy . My students have their entrance exam today . Driving in America is not easy , although the city roads are very wide . It is very delicious ! ! I have a question . I 'm very confused . I 'd like to speak English fluently . I 'd also like to know how to study Japanese . There are lots of English conversation schools in Japan , but few Japanese conversation school in America or other countries , right ? Which is better , an iPhone or an Android ( Google ) phone ? I worked from 6am today . One of my former classmates has become a beautiful policewoman ^ ^ ; 5 - ( ( ) , ( almost all of ) , ( the hotel rooms are reserved . But recently I discovered that `` Mr . My parents like his music too , so it affects me . I think this will be very interesting . Today , I went to an industrial festival . It has been about a month since I became a part of the company . I enrolled at an online English school a couple days ago . Do you believe the price that one lesson fee is 1 $ to 2 $ ? An Amazing Wesite for Language Learners ! ! Right now I 've come to be able to understand recorded voice in English , but it is still hard for me to understand what they are singing My hobby is playing the flute in a wind orchestra . The leading singer , whose name is Toshinobu Kubota , has an amazing voice and is a well - known soul singer in Japan . Similarly , natural expressions are natural only because most native speakers regularly use them . Learning languages , either foreign or your own mother tongue , is to acquire not only words and grammar but also different manners to perceive and represent to the world . We stopped by an electronic machine store where you can actually try using them . And I registered for the class American literature and so on . When I hear the song , I can not understand it perfectly . But the jelly beans are my favorite candy ! San Francisco ! I went to San Francisco from Aug 19th to 22nd with my girl friend . Maybe I can say this in a more beautiful way ? So I can correct Japanese grammar . I study Animation at university . sandwich , spaghetti , Chinese food and so on . Yesterday , I came to Tochigi for work . dismiss about fifteen thousand employees . When will the depression end ? Thousands of people are crowded in these temporary markets . I 'm so tired , because today 's tests were very difficult for me . I 'm so happy because there are some people who correct my English . I 'm going to go to the restaurant to eat dinner with my family . Hello ladies and gentleman all of my friends around the world Whatdo you think aboutwhere our God is ? Of course Henever beat ' temples ' , ' shrains ' , churchesand mosques . we could propose to sort out the problems of Iranian elections . The problem is very diffcult because we ca n't understand others and ca n't think about others opinions . But my sister said she can laugh alone if she think of something funny . There are various cakes there . In my latest journal , I said my father 's insurance expired . He still can have insurance from the government , which will cover the cost to some extent . It was such a nice and exciting game , and I 'll continue to practice . I study things that are connected to English in my university . I 'll go to Osaka by a bullet train called `` Shinkansen `` to attend a meeting with people from other companies . I lived in Osaka for nearly six years , until 2007 , so Osaka is like a second hometown . The Palestinians , of course are opposed to this establishment agreement , that they attacked the new residents , and the strife occurred . Before it started , I was looking forward to it . I attend the university in Nagoya . I also study Chinese at university . I watched `` Lie to me `` on DVD . And we took a rest and ate the watermelon that was given to me by my brother . Because the car in front of mine was very slow , I passed it at too high speed . I 'm learning Italian and English . Because everyone at school speaks in English . Is the day when I can understand English news programs without subs / subtitles truly coming ? He has two children and has bought a new house . Today , some of my classmates said they think every country should close every nuclear power station , but I do not think so . Although I am in New Zealand wherethere are no nuclear power stations , I think nuclear power stasion is help people a lot , for example , nuclear power stations provide people with electricity , and I think that is good . I have studied English since I was a junior high school student , but I ca n't write , speak , or listen to English well . In the balcony , people are not only able to sit on the floor but also lie down . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closet . But I think I prefer the clothes which suit me . to fashion , certain styles look better on some girls than on others . I like nearly all colours of clothes except red , but I do n't know why . I also have many jewelry . I prefer the flashy things . So I like many kinds of jewelry . My favourite jewelry are earrings . I could n't sleep well last night because I have a cough and So I am looking forward to it a lot . I love my girlfriend very much but she does n't seem concerned about my feelings . I want and need to study English . My mum who is living in Korea is feeling sick and I 'm worried about her . Thanks for teaching me correct ( or proper ) English ! If I keep on studying , I believe I can be better at English . I took off my shoes at the porch and sat at a table that is commonly seen in many Korean restaurants . I ate yukejang , a kind of soup with chopped beef . This prevents my body to get cold . Before their concerts , they pronounce the members of the day , and fans can choose the day of their own favorite musician acts . I have heard that there are some fans coming to their hall not to listen to music but to watch their dance . Before I came here , I thought `` If I lived in the U . for a year , I will be a really good english speaker . `` But that was wrong . I am surprised how difficult it is to learn other languages . So I was really disappointed in myself and kind of bored with studying English . But Lang - 8 often encouraged me to study it , because I can see many people who study other languages and may have same feelings . I really like to correct foreign people 's English . You know what , in Japan we have to follow some rules sometimes like we have to show politeness to senior people , we have to use compliments a lot and it is extremely hard to be close with people who I meet for the first time . . . My school is very small and almost all the students are Japanese or Korean . I really want to talk with foreigners . Most Japanese people do n't know what `` premonition `` is , but we use `` shuffle `` as a Japanese word . And English is the most popular language . Today , I tried to call the hospital and I was able to get an appointment . Actually , making holes is also boring work . But it looks / seems like she is looking foward to her two granddaughters growing up . and I had drank a lot of alcohol . yet , I ca n't stop drinking alcohol ! XD Next time , I 'll be more cautious when drinking alcohol . Especially , Italy . An alternative : They emphasize that you should just research and read more and more to get knowledge and experience . Next , I deal with the bigger dishes such as a round - bottomed pan or salad bowl . The lover of the protagonist died because of the failure of an abortion which was not desired by her . Moreover , the friend of the protagonist felt sad due to the lack of understanding by the adults and finally he committed suicide . The air was freezing cold and the sky was cristal clear . Actually it 's not just raining . . . After a few minutes , I stopped thinking , I could n't think anymore . Are there ramen restaurants in your country ? Today is my first day working at the new company . It is small with only a few staff , but it is short distance from my house and new company . I watched the concert at church . `` Mom , What a lovely puppy she is ! she is sleeping . 2 So many people say that . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese right away ( that was the main purpose of joining : to learn a bit of Japanese and to polish my English ) . . . . Today , I went to McDonald 's to study with my friend . Of course , I hope return to the level of before the subprime loan crisis occurred . When I talked to my American friend , I was speaking English with Japanese words spinning in my head and they would even slip out of my mouth and cause some embarrassments . The painting is of Europe in the middle ages . I do n't know its value . I do n't have much money , so I ca n't go so far , but at least I 'll get to visit `` Amano Hashidate `` , which is one of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I felt angry and did n't communicate with him . He lives by himself , and I have a good family . Thank you for always teaching me various things ! I loved the scenery too . Tokyo Disney Sea has American , Arabian and European streets . I especially liked the European street , I felt as if I were in Europe . I had a lovely day ! The picture I drew which is shown as my image was criticized by one of my friends a couple days ago . I did n't ask further ; therefore , I did n't know exactly what in the picture needed to be modified . I took a nap in the afternoon , but afterward I did n't feel rested , because I had several nightmares while I was asleep . I struggled to wake up , because I just did n't feel able to do so . When I went to the hospital , a nurse said to me , `` Please check your body temperature `` , and she found my temperature was 37 . 8 , so she told me not to get a medical check - up today . I was SO HUNGRY that I even drank three glasses of Kahlua milk Okay , let 's start something ! Get into action ! I want to improve my English , so I joined this website . I think it may be because my friend visited my home yesterday . tenant - resident I ca n't find o my favorite program because there are too many channels . The movie 's title is `` The World of GOLDEN EGGS `` . It 's because I could finish my job within the day . What is worse , `` Dressmaking / Needlework / Knitting `` was selected by only 9 % of them , which was a smaller percentage than people aged 25 - 29 ( 14 % ) and people over 60 ( 27 % ) . She smiled and asked me , `` Why did you choose me ? `` ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very briefly . We stood in a long line under the white snow because my son wanted to eat in a small restaurant . The cat lets them get on itself and goes to look for Mei , and they are able to find her . I feel pretty pressured because I ca n't do better than other students can . because , until yesterday we donated our holiday for working on the final work . . . I ca n't image my driving an electric vehicle , but the development of the technology is tremendous . Studying abroad is my important dream . I might love her , but I hardly know about her feelings and what she is thinking about . Although she is really attractive . . Therefore , we can only imagine how life must be like without schools . The Gundam is very big . Although I had class at night , I made a phone call to my friend and then my mother took me to buy some watermelon , because it is so cheap I think the staff in this store have agood sense on how to present CDs . There are a lot of pop up labels that describe the cd 's and the genre of music . I met a friend who spoke fluent English , so I asked her `` Could you give me some advice to speak English fluently ? `` She said `` Probably your English level is good but you seem to not speak English as well as you should , try talking to a native person daily . `` That was great advice for me because I was thinking of trying to talk with a native person . Nowadays , people face a series of problems regarding the environment . We usually do the things we want to do but damage the environment at the same time . It 's not only for other lives in the world , but also for ourselves to live more safely and colorfully . I had a long walk , went to Freshness Burger , listened to music that I like , let my mind drift back over random things , and tidied my stuff a bit . Because I was in a private educational institute , I could n't see the first half . I had tried speaking correctly but when I did so , the words would not come out . in it , but the pictures often come out blurry . Because she likes to play pc games , which is the reasonable Skype English school ? My eyes glistened with tears . because I have low blood pressure and I 'm senstive to the cold . If I can pass the test , I can go abroad and get training , and take part in editing textbooks . . . But I will go there tomorrow . I was glad to hear the forecaster say that tomorrow will be sunny ! I 've not been hay fever so I ca n't relate to the calamity . 4 What 's difference between ' I have some questions for you ' and ' I have some questions to ask you ' ? We ca n't deny the dominance of England in comparison with the other nations , but we should be clear in the way we use nations ' names . I have always thought that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . I felt very comfortable every night even though I had stayed in an 8 people dormitory room . Because he will go back to Hong Kong and will not return during the vacation . I think it begins with nothing , then it finishes either with nothing . A freaky interview experience HR called me yesterday and asked me if I was interested in the position - marketing executive or not . However , this company totally disappointed me . First , I filled out a sheet of personal information and a sheet of MERTKETING questions . Freaky questions . I did n't believe any marketing manager would ask the questions like that , except for managers in the PR . The interviewer asked me to briefly introduce myself and asked me several questions . So I asked how many brands they would launch and she was n't able to answer me . I also asked about the location of the new shop and she said she did n't know . That really surprised me because the new shop will be launched ( opened ) in the coming April . So I wanted to go to Kyoto in the morning for sightseeing . We planed to go driving tomorrow ; however a meeting time and our destination is not decided . because everyday I think `` l 'm happy , l have all the things l want `` but sometimes So , I have to eat lunch alone ! I have not eaten breakfast yet . I 'm looking forward to see my lovely wife in yukata . Because if I think too much , I wo n't be able to continue . I am busy , but I just have to keep trying . We read a recipe while we cooked `` tororo - conbu - nabe `` . so my friend advised me to write my journal on this site . I want to know how to use the phrase `` Get to the bottom of this . `` I will have an art class . I 'm going to go to near the port , and I will paint a picture of a fishing boat . Yesterday , I played soccer from early morning . I will join a soccer tournament in November . Please correct my english . I will remind you of the death of princess Diana , who died in Paris when she was followed by many paparazzi . I do n't think I did so well . ( After the test , a cinematographer came to my school and gave a lecture . He is Korean but at the moment he lives in Japan and is studying Spanish . Polular places for Hanami such as Ueno Koen are usually very noizy because of people 's talk , shout , song etc . I am surprised that a lot of people are able to speak good Japanese , which is said to be the one of the most difficult languages in the world . My dog is called Rei . I have had a dog for ten years . My dog is sleeping on the sofa ( now ) . Something happened to me recently . I went to a japenese food restauant with my boss yesterday . When I go there , I usually take a motorcycle . It took nearly two hours to finish writing the essay , but I was glad I could practice making an essay . It 's the second Sunday of May today . Now they 're keeping that secret just between themselves ; their mother does not know that it 's Mother 's day today . Each ramen shop chef has his or her own ( special ) recipe . Though I 'm wondering if she 'd ( like to ) eat out at Italian or French restaraunt and so on . If you have a chance to come China for business , you can use this good chance to taste the wonderful Chinese food . If you also want to find learning a partner . Anyway I had a good day . I have been smoking for three years . Frankly speaking I really do n't know why I began to smoke . Maybe there were many troubling things ( OR things that troubled me ) at that time , so why I started smoking is n't important I think . People always do things they are unlikely to do but that they must do . I recently finished watching 1 Litre of Tears . I 've been learning jazz dancing for four years , and this year I 'll try to learn yoga and belly dancing ! I made many foreign friends this winter vacation too . Since the neighborhood itself is very popular , the rent is very high even if quality of an apartment is low . I prefer a comfortable apartment because I spend more time inside than in the neighborhood . Please check my grammars . My favorite performer is Plushenko , because his skating is very well and exciting . And because now I have native speakers to speak with and practice with , even this site is one of my important resources . ^ ^ Sorry , I have n't posted in my diary for two weeks . I am an account executive . Everyday I need to handle all kinds of things that are complicated and irritating . I think I should be more careful and diligent for work . Most popular Characters in Japan Because I 'm already watching One Piece , Conan and Hajime no Ippou . I wanted to watch them because they are so famous . Naruto is famous in Japan too . If you have not seen it , I really recommend it . My main job is solving my clients tasks by digital communication . I make it a point to listen to Enya 's song when I am stressful . When was broadcast in Japan , I was a big fan . The Sushi he made was so delicious , and he was delighted to see the pleasant faces of those who ate his Sushi . There are many attractions . Speaking of attractions , some of them would scare people but they are out of order . I 'm a chicken . We asked a person there to take pictures of us . person in the music industry . Dubois put her girls to bed and was waiting for her husband while sitting on a sofa alone with the lights turned off , when Mr . Dubois , deeply distressed , finally said to him , `` Honey , It 's already 9 o ' clock . `` I got a little culture shock from that scene . Taiwanese people are very kind . I love Taiwan and Taiwanese people . I can make various pound cakes , for example , chocolate , pecan , banana & walnuts , raisins , and some dried fruits . I 'm a graduate student and I will graduate ( from my university ) next spring . I need to wait until companies start interviewing again . So , I decided to return to where my university is located . If someone finds any wrong sentences , please correct them . Neighborhood restaurant 's menu It is the Godzilla Rock , which is in Syari town , on the Shiretoko peninsula . My classmates suggested we go to see the movie , 2012 , to relax ourselves and release the pressure repressed these last few weeks . I 've skipped it twice before , and if I am absent three times , I ca n't pass the exams , even if I get 100 percent . Even watching TV was a little bit hard . We also decided that we would sing one English song together and one Japanese song , and then after we sing well , we would post it at YouTube . Of course this is a good way , but before doing that , for people who is not confident with their speaking like me , it 's very useful to learn how to write well organized English . I found an / the answer this question . Work is important for me because it enriches my life . But nowadays , Japan has not any `` Dunkin ' Donuts `` shops . I thought `` Today , I wo n't so busy , I will be OK `` but unfortunately ? ? ? When I lived in a apartment , I could n't endure staying inside all day . In my opinion , every subject is important . It was so delicious that I ate too much . She also said , `` You can never be too careful , because you are a girl `` . My sore throat is gradually healing . My ankle hurt last Thursday , and I got another unknown illness last Saturday . Do I sound a little bit mysterious ? So I was thinking , `` I definitely have to return . `` The host family was good , I thought ! As a result I played OK but my index finger was burned . I ca n't wait to have the party : ) and also for the halloween parade at 6 AV : ) Recentry , the custom of wearing kimono is dying , because many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . At first , it was fairly exciting so I tried to listen and understand all the explanations . These exams are very difficult for me . I remember when I was in high school , I seldom had the feeling that `` I do n't know what I 'm writing about `` but now I do feel unsure sometimes . Now I 'm learning English for business and communicating with foreigners . I have a big cozy white bath with different kinds of foams , salts , soaps , gels and many other sweet things that are so necessary in the bathroom . I sometimes take a bath and read a book or a magazine . Comparing these two versions of `` Year 3000 `` , I definitely like Busted 's original version . But 4 years ago , I went to Okinawa with my family and I tried snorkeling for the first time . My heart was pounding while I was snorkeling . I do n't know why , but I believe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenery . I was quite sure he always looked down on my plan to go to Australia to master English . So when he called me , I was extremely happy , because I got the best opportunity to show my present situation off to the useless Japanese man . Actually , I ca n't understand what native English speakers say at all yet , and my salary is quite low compared to normal Singaporeans , but I bluffed him into believing that my life became much better than I had been in Tokyo in order to keep my cheap pride . Later I am going to eat with friends . After that , we are going to my friend 's house and to watch movies and listen to music . This is my first diary in this website , and it is also the first day of 2009 ! I hope I have the patience and perseverance to keep on writing daily in So ashamed ! Actually , I 'm afraid of making mistakes . This shopping center is one of the biggest shopping centers in Australia . After working there , I moved ( or decided to move ) to Canberra , the capital of Australia . When I worked there , I noticed that Australian people liked Eastern food . Please correct my sentences . Flights do n't move by only one person 's contribution . He looked at his feet , there were tiny animals around them . He was scared , he ran along the inner way . Japanese women are strong . Furthermore , some adults too . IU intended to tempt ( seduce ) Evian . I have a bad feeling ABOUT THE LAST NIGHT ` S DREAM . It ` s sort of sad , eventhough I don ` t know why ? It was a jourNAl about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! deceive : You can not deceive me because I saw you walking in the station with your dog . doubt : I doubt that maybe she forgot about the promise we made . When I arrived at Osaka , it was ing raining heavily . Of course , the sound was very good as well . I just rode my bicycle earlier and had a dangerous experience . He was running away from another kid so he did n't see me . They laughed at me at the time , but I was able to learn . I am sure that I will be able to learn to play the flute now . It 's so pitiful . I spent 30 minutes writing these sentences . . . we will execute to disestablish atomic energy plant `` But he did not tell a specific plan . Is it as bad as the expression of raising the middle finger ? ? My work is in acupuncture and medical massage . I drank a lot of beer , and I became drunker . And trying to be as natural as children can enable us to receive as much as they do . Educational opportunities have opened to more people too . So it looks like our life as human beings is definitely becoming better and better . We own the latest technological gadgets in our houses , and live with educated people in an intelligent society I was driving near my house which is in a residential area . Probably he was in a hurry , but of course in this area passing is prohibited because it is a school zone / area . That is why I write diary when I experience something interesting or when I have questions . Recently anime costume parades are very popular especially for geeks and foreign people ; P Several years ago , on Halloween day many foreign people with costumes got together on the Osaka loop line and stayed there for many hours ! It was so much fun ! ! But it became a problem and was banned the following year : ( I took a Japanese tea ceremony lesson once a week in Japan for three years before I came here . I sometimes want to drink green tea here . Please tell me if there are any other often - used words that mean `` very good . `` Japanese marriage system Brides and grooms simply go to city offices and turn in their marrige application form , which has the brides ' , the grooms ' , and two wittnesses ' signatures . No picture IDs are required to turn into the marrige application form . Someone else can go there instead of the couple being wed . Because of this system , sometimes problems arise . When a couple goes to the city office to turn in their marriage form , they sometimes find out that one of them ( or both of them ) is already married to someone else . When we entered , my every my thought addressed the music ; so after I removed my coat quickly I began to tune myself to the track . When I listen to this music , in particular to Marc Anthony , I be one with the melody and I feel really free , that every thing around me disappears , andthe heartbeat follows the rhythm of the music . The line was sort of staticky . Mainly , a Japanese teacher taught English grammar , accents and various words ( / vocabulary ) . For that reason , I have studied English for a long time , but not very well . . . I would like to speak and write more like a native . There are many rap artists , but there is only one Eminem . But I ca n't understand English grammar . I participated in a web developer 's event last Saturday . It is uncomfortable to stay in an unfamiliar place . So I asked my boss to buy some vegetables for me . Last night when I got them , I put them in the refrigerator . What should I do if a rat , mistakingly eats the poison and suffering , jumps from the kitchen cabinet ? I work for the Japan 's Air Self Defence Force and I operate a F - 15 fighter plane . When I watched a TV program , I recognised the store . I can not stay in Kyoto until April because of my job . For `` Domestic Sewage `` , San Paulo showed the highest figure , 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . In addition , Tokyo presented `` presticides `` as the worst factor for polluting water ( 31 % ) whereas the pollutant was a much smaller factor in San Paulo and New York with only 9 % and 6 % respectively . It ` s my first time on this website , and I don ` t know how to use it in an appropriate way , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for several years , and still do n't know enough ! ! ! ! Usually I go to a Tully 's coffee shop , my favorite coffe is `` Today 's coffee `` . Alternative : I always have a cup of delicious coffee when I go to there , My real reason for going is not to only to drink coffee , I have been working as a system planner in the IT division for one year this June . But now is the time to use IT in order to develop close relationship 's between our stores and the customer . We as system planners must think to embrace social and digital media and continue to look for new ways to bridge the comfortable experience at store with the digital world . I usually push the reset button each time I boot my PC . But as I have been exposed to many kinds of English on the net , Even though they have an Indian accent they seem to be able to both work and live in America or other English speaking countries as a member of society . Even though it is still late June , the air temperature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insurance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insurance . And my friend taught me about that / it . It 's nice to learn new things or acquire new knowledge . Only four more days until I can return home and begin my summer vacation . My plan for this vacation is to join my cousin 's company and do work for him for free . I like chocolate but on not this day ! ! Hello , friends and teachers , I went to university today to prepare everything before receiving my cetificate . Today we had violin class . But the teacher keep saying , `` Hold your instruments up . `` I made tomato sauce today . and I need you to help me to improve my english level . If I eat a hamburger slowly , chewing it well and tasteing it , I always regret eating it . ( I 'll stop complaining about it . ) I 've had a lot of experiences like this and I realized that men and women ca n't be close friends . Recently , I made many kinds of breads . When I was student , I use a lot of money for music . A Shiba is a type of Japanese dog . They are medium sized and very clever . As a result , I found this website and enjoyed correcting articles written by some foreigners because I am good at it and it makes me feel good whether they thank me or not . I am `` good at `` speaking japanese but I am `` not as good at `` speaking English . I think it is about the guy who kept on eating only Mc Donalds Hamburgers and potatoes ( french fries ) And now I want a motorcycle , dreaming that I get a big one and travel around the world . Take for instance English Central : I can study listening and pronunciation on the site . Usually , I do n't say much if the atmosphere of a conversation gets stressful . Recently I can only go to work only two days per month because I have been receiving post - surgical chemotherapy to prevent cancer recurrence and metastatis . ( alternative ) Though it was regrettable that I got sick , I believe my disease has helped me develop a greatness in my soul . He 'd prefer to work in Canada than Korea , because if you have good & nbsp ; abilities and & nbsp ; experience , you 'll be able to earn more in Canada & nbsp ; than in Korea . We are going to go to Himeji castle and some other places . One of my friends recommended it to me . My First Time To Write A Diary In English When I say that , people around me look at me surprised as if they did n't expect it completely and I looked odd . We can listen to radio and do simplistic jobs and at the same time feel relaxed while listening to the radio . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio channel . Of course , I recognize that my range of vocabulary and how to express my thoughts are not strong enough . Recently , I have had difficulty writing my resume in English . I 'd like to join fitness clubs now . This gym has a lot of foreigners , hence I 'd like to join . It was my fault , but he did n't need to get so angry . I hope he will be transferred to another department next quarter . It 's a traditional event for Japanese to visit their family graves . Restart Toilet Training One day , she was playing with her friend on the jungle gym , but her friend kept climbing higher than her , so she started to cry out of frustration . However , because she has been suffering from hemorrhoids since last month , we finally succeeded in convincing her to wear diapers to heal her buttock . She is always kind to me . She is lovely . She always teaches me or She teaches me always . Even though I 'm Japanese I do n't understand it very well ^ ^ , I wonder if it 's because I 'm not interested in this period so much . It would suck to be sneezing all day when the long and cold winter has finally come to an end . I have tests tomorrow at school . I have to study tonight for tomorrow 's test , When some people find out about this , they are surprised and they think that I have a problem . I can learn a lot of new information from cartoons , especially if they ( the cartoons ) are about history . In Japan , there is a custom to send New Year 's cards to familiar people . Nowadays , I 've found that people smoke in the streets . I intend to pronounce corrections of my compositions and practice my pronunciation by native English speakers with skype . On the other hand , 12 % of the population dislikes obese people , which is less than the 16 % in 2003 . My husbund called out to me `` Pass the salt ! `` I did n't know why he wanted salt , but I brought the salt box to him anyway . My friend and I searched for somewhere quiet to study Chinese and Thai . We did not find a good place , so yesterday we studied at McDonald 's ( ? ) , but there was a lot of music and a lot of students doing their homework . I do n't know why , but I know we feel good all the time and like to smile with people whether we know them or not . I also asked her about whether in China they have Kung Fu or not , and she laughed and said that they do but it 's different in the movies because they ca n't spring up into a tree or unto a roof or anything like that . I 'm fifteen and staying in Malaysia to study art . Do you have any hobbies ? Do I call them `` hobbies `` ? I like to choose coffee that is freshly roasted because coffee farmers should get more income . I am a person who always looks on the bright side , and am an enthusiastic self - motivator . The issue of whether we prefer to eat at home or in restaurants has been widely debated in our community recently . When I was in junior high , one girl who was not my classmate came up close to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied , `` well I have a sister so you might think so . `` This is not an answer at all but I managed to say that . As there are no neighbors on either side , our flat is totally open to any directions with lots of windows and every time we open all the windows , we always hear winds or breezes whistling from one to another directions . I made miso soup and another dish . Miso soup was a little bit thick . I wanted to be a chef before . I can say from my experience that I have carefully monitored my life I go this course because tho I can read English text ( not well , but well enough ) , and understand English speech ( a bit worse than reading , but I am able too ) , I ca n't speak it ! As my college is in Kyoto , I usually only travel within this area . May this new year bring many opportunities your way . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more uncomfortable . I came back from my business trip last night and I jogged to the office to deal with the receipts to get compensation now . I often eat out at places like McDonald ` s . I have learnt from the internet and from apllications within Microsoft Windows , although I need help because I find English a difficult language to learn . However , I am often told `` You look like a half - breed ! `` I think it 's because of my brown eye color , but I 'm a full - blooded Japanese . So here I 'd like to study technical English and find new friends ( from all over the world , but it seems to be only a dream ) . I only have the database on my PC . I jogged on the weekend , but I think it seems to have little effect in decreasing my weight . What is culture ? It 's meaning is the civilization and customs of a certain race or nation . There is a very famous road called Saville Row in London . I am going shopping today , I ca n't wait for that . I was talking about names with my friend . The conditioner makes my difficult hair easy to comb . Melbourne is good city to live in but I hate the weather here ! After eating dinner I immediately got hungry again . Maybe I ate too little . It took 60 minutes to get to there , and 60 minutes to get back . I 'm a Chinese girl who now lives in Australia . This is my first time using this kind of website which my friend recommended to me . Therefore , I 'd like to practice my English with you guys and also learn something about French . My granma used to say that holly ghosts protect me as my guardians and watch over me on my birthday . I 'm looking forward to coming back here again next time . Yesterday , my sister and I went to the movie theater and saw `` Gnomeo and Juliet `` . And , the order ( of parts ) , starting from the nearest to the brain , is the cerebrum , the brain stem ( the vital center ) and the spinal cord ( this is the end of the central nervous system ) and peripheral nervous system ( the part of the nervous system below the spine ) . `` I read the newspaper in the web . `` And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courage to learn more about cooking . What ruins our life is definitely our negative thoughts . They emerged from MySpace first , and recently they have become famous in Japan , I think because of her cuteness and some of the songs . . . * As an English major student I must learn how to understand English well , so I am reading the English book ' Black Boy ' by Richard Wright . I could n't understand all of the story , but I know approximately what it 's about . I believe that . I 'll go to dancing lessons ` again but I do n't have enough money at the present moment . . French in general : it 's agreed that we strike , criticize , and complain too much . I was a system engineer in Japan , but I want to find another interesting job here . We delivered punches at each other , but it was only me versus three students . I do n't usually buy imported items because they are a bit pricier than regular items , but they were on sale . The labor force , composed of prisoners , soldiers , and workers , built the wall . This is my first writing on Lang - 8 . I just found this site accidentally , and I think it will be a lot of help to improve my English . Recently , a friend of a friend of mine who was born in Australia , teaches me English on the phone . This week is very hard for me , because I have part time job on Monday , Tuesday , and Wednesday , and I plan to play on Thursday , and I plan to go to Kyoto on Friday . ( ^ ^ ) * Of course , I have college classes that I must study for . I watch SESAME STREET podcasts on my ipod in English . So I have to acquire the English language in order to work well . My plan to study english is to write english compositions and watch DVDs of FRIENDS , which I heard is an interesting comedy in English , everyday . In spring every year , Japanese hold parties in which they welcome freshmen . I 'm afraid I lost the opportunity towork at thatorthopedic hospital . I 'm fed up with arguing about problems . I 'm afraid to become adult . < best Its difference from the Japanese Culture . Unfortunately , there is no chili pepper Kimbap on the long menu of this restaurant though . He told me that the Spa is becoming popular in the Philippines . Of course we have to feel sense of alienation when we see foreigners at airports or other countries or our towns . If you imagine your country is a small island and English is spoken in only your country , you will see it would be a big handicap for you guys . But foreigners have been speaking English since they were little as the publicly spoken language . But of course they only spoke English while we were drinking , so I could not enter the conversation . When I had opportunities to speak in English , my Japanese supervisor would say things like `` You said ' a water ' and forgot to add 's ' to ' he want ' `` after every one of my speeches . We had two visitors from Vietnam at my home . I watched the news yesterday and I heard that there are many people affected by this influenza in the world , and also there is one person visiting Mexico and is guessed to have this disease in our country . Actually , I 'm pregnant and I 'm suffering from morning sickness , so I felt gloomy before the wedding . We went sightseeing , had lunch and bought seafood such as crab and flatfish there . Please teach me what that means . I have to get the licence by April , so I 'm learning how to drive . I really enjoyed her performance . I 'm worried about getting fat because I put sugar and milk in my coffee . I 'm going to go to my friend 's wedding , and congrate her . Recently , I have been tired due to my work . because you are Japanese you can get a higher income . But I think going on a trip on Christmas Day is a good idea , because you can enjoy Christmas lights in places you have never been and also sight seeing . So I 'll try it with an accompanying CD of a English dialogue textbook . `` Pirates of the Caribbean : On Stranger Tides `` was exciting , too . So yesterday I looked fearfully at the scales . It 's so expensive . I have no friends to study English with here . But now , he has found himself and is reflecting on what he did . Sports Day is going to be held at my son 's preschool next week . So , please talk with me on Skype . Yesterday , I got / bought a game . If possible , I want you to correct my diary and know about Japan or Japanese . My diary is mainly about my own daily happenings , Japanese news and culture etc . If you are interested in that kind of Japanese culture , I 'll be so glad . There are various types of Japanese ' Sake ' like `` hakkaisan `` , `` koshinokanbai `` , `` kobuta `` , etc . Freedom Day ! ! Finally , should I say anything else ? Therefore I need to achieve a score of 6 . 5 or higher on IELTS I was surprised how fast she mastered phrases I taught her . the lady used a marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks very painful , it just felt a little bit itchy . Do you know about Bobby Valentine . I 'll study English little by little . . . They 're farmers . Currently they are preparing to plant rice . It starts in the afternoon , so I 'm planing to go to the library in the morning to read a book ! I went to the library after the test . I 'll go to Okinawa this coming Sunday with my school friends . He has lived in Hawaii for 9 years . The question was whether it should beeliminated . Yesterday , we had a translating class and it was exciting for us . In the class , we learned how to translate texts from English to Vietnamese and vice versa . So far , when I read something in English , I can understand it if it is about the subjects that we have been taught . A patient came to my clinic 3 minutes before the end of our consultation hours . In spite of being busier than usual , we enjoyed our work . So I would like to keep writing and speaking English . But I thought the tiger pencil case was more cute than the lion , so I chose the tiger . At lunch time , I was talking with my manager . He said to me , `` Speaking is most important when studying English . `` I 'm a beginner . But I do n't know the difference between tacos and burritos ; ) Moreover , I was n't in charge of the register today . Learning English on my own makes me feel that English is so hard . As we stand in the front of the restaurant , we pick one guy every week . But I 'm a little nervous becouse of my English speaking skills . My job is a project manager for developing web sites . , , , to make him interested in the Korean language . It 's raining heavily in the Nigata and Fukushima prefectures . I was more interested in wearing a Yukata than in seeing the fireworks . My English teacher is a foreigner . There is big statue of DAIBUTSU in TOUDAI - JI ( temple ) . It 's the biggest statue of DAIBUTSU in Japan . First , I watched it in English with no subtitles . My home and car are covered with snow , and the snowscape is beautiful . Dear friends ! The people are nice , the beaches are beautiful , and Okinawan food is awesome ! Maybe someone has to wite a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybe he just lost all his money . . . On september I have a plane about going to Victoria , BC . I am an easy going girl , and I ` d like to having many friends ! ! Three years ago I was a member of the fitness gym , but I resigned because of my busy job . It was really traditional , so just a few people who are family or relatives of the bride and groom could go inside the Jinja . Recently I think about it every day . It is a cloudy day today but the temperature is not too warm and the weather is comfortable and I 'm looking forward to the start of the school year . Although it is difficult , but I 'd still like to study English . and I believe it will be difficult ( hard ) . It was a surprise too . He taught me that my dream will definitely come true if I do n't give up . It is approximately 10 feet tall . I 'm studying English right now and hope to acquire the skill to speak fluently with native English speakers someday . You are my friend and I always believed you , but now I see you lied to me ! In my textbook , it was mentioned that many people in Okinawa live until 100 or more , is this true ? I can say my opinion in simple words , write ( with mistakes , of couse ) and understand other people when they speak , not fast though . They should find the power to look to the future when they fail . I was watching TV , so I fell slept in the living room without covering my body with my bedding . That is why I caught a cold . Today , I 'll tell you about a famous Japanese comic called `` ONE PIECE `` . Long flight The novels were written in Japanese . Because I study English these days , I always read English children 's books . Tanabota probably is supposed to be very high tonight , because on the night of July 7th , we celebrate the Tanabata Star Festival . I went to gym after work . Today , I can eat a lot of delicious food and get many gifts . There are many people who believed this . I learned that there will be a Gemini meteor shower ! I like meteor showers . You may get thirsty without milk or anything when you eat sweet potatoes . Even though I did not want to learn English in the beginning , but I will try my best to learn it in the future . My English teacher has taught us many words , but I can not remember them and always use them in the wrong way . What can I do ? I was impressed ! ! I replaced the sentences in the grammar book with my own sentences . My big brother participated in the Tokyo Marathon last month , which is one of the biggest marathons in Japan . My friend gave me a Goya yesterday . I would like the chance to at least eat with somebody . Some friends of mine have gone to foreign countries to learn English . . . but I do n't have sufficient time to go abroad . . ( good ! ) they were all so great , especially Harajuku and Odaiba . I want to ask you something : What resources do you recommend for learning English ? In Japan , almost all students ( elementary school , junior high school , and high school ) get summer vacation from the 4th week of July to the end of August . Today , March 10 , is the day when candidates find out whether or not they passed the entrance exam of national universities in Japan . But she also studied to pass the entrance exam of the University of Kyoto ! I 'm sad because I wo n't be able to see her if she passes the exam ( since Kyoto is far away from Tokyo ) , but I support her and believe she will succeed . Even now , the accident is going on , and because it is known that boric acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I felt really happy when my former boss told me that I would be moving to the Okinawa office , because the Okinawa office is quite popular among my coworkers . I 'm also keep reading a English book ( HOLES ) . so if the company does move to another place I must go to the main branch and work with him every day . I often have a runny nose ( perhaps a kind of allergy ? ) and I tire easily . Plz recommend me an English name ! ! Actually , I deleted the History in Windows Explorer , but I did not clear the document history . This morning , I rushed to get up , and ate sandwiches which I prepared last night . Then , I realized that I forgot my ticket and wallet at home . When I found this site , I decided to post my journal entry everyday . I know how she feels , because when I was an instructor in drawing softwares at a business school , I was happy to know my students ' improvements and efforts . They often gave me the energy to teach . I am so depressed . I study English every day , and after I finish class , I come back to home . I continue to study English but I feel my English is notimproving much . I memorize the English words every day , but the next day I forgothalf . I feel so upset . I think my IQ is good , but my memory is not so good . . . My brother told ( or `` informed `` ) me that my grandmother was transferred to the emergency room for brain surgery . Until I read another person 's journal , I had never heard about it . I 'm a big fan of `` The Dark Knight `` and `` Memento `` , and I like Ken Watanebe . However this was the first time I entered a high school debate contest . Um , I still do n't know what to write about , and I definitely need some help , because I never have time to practice my written English . . . Heavy rain ! ! And I almost finished it this morning ! I try to do the exercises but I usually must check the answers . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I was going to make a team but I could n't do it after all . And I do the other sports which are badminton and volleyball every Wednesday . A couple of mothes ago , I took a test called TOEIC which is an English reading and listening test . When the score was announced , I was surprised because I got 930 . I was really gratified and proud of my score . For example , we can get a healthier body through physical exercise and improve our blood circulation . Playing basketball is good for increasing body height and also helps to strengthen friendships . I have read a few blogs which say that olive oil makes vanilla ice cream taste more delicious . Because it cools your body down , you consume the calories in order to warm your body up again . I 'm really happy to have learned about this site and it 's a pleasure to share my useless diary . lol I 'm gong to try to keep a diary and also correct others written in Korean . I will take an English conversation class at the office . It will begin from the 13th of October . I spend a lot of time drawing . Visiting friends who have graduated . I really appreciated that , especially from my girlfriend . I have to write an essay on Japanese education for foreign students , and I 'd like to know what Japanese learners really think . From now on , I will try to explain a few basic rules in Japanese . If you need to be polite , you can say `` Watashi ha hashirimasu `` . I spend much of my time searching for information on the internet too . The experiment is also waiting for me , So then we promised that I would do nothing to help household and study English all day long . Every year , I give him chocolates . I am going to LV because I want to see Cirque du Soleil 's KA and O . The story is mainly a pirate adventure , but they also have special abilities similar to Naruto 's Ninjutu . I only started learning english recently . I 'd like to speak it fluently but it 's more difficult for me now . When I first got it done I suffered from tremendous pain for two days . Green revolution has brought about great benefits for humankind as a whole . Until the last moment the mother kept hugging and protecting her I studied my pronunciation with my teacher this morning via the internet . But today I enjoyed it because I did my homework . Writing in English is a little challenge for me . We live in different countries and spend time together for less than 10 days every year The correct sentence is `` Would you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutely do n't want to make a mistake like this ! I talked on Skype with my tutor . I worked today . It was a sunny day . She often walked on the up - slopes . That will make me more stressful . After I had done the tracery I took pictures of it . The event was canceled midway . All the people there were foriegners . As you well know , this is a traditional tactic for us . The race in North America is not good for F1 fans in Japan , because of the time difference . Our class has Korean , Japanese and Taiwanese . I went back to my father and mother 's house they are really really cool pants . If I am unable to understand these slang expressions , it will be difficult to comunicate with native speakers . Of course , I know it is important to learn these things . this season gets more meaningful . I would appreciate it if you check my English or send a message . A very very beautiful goddess stays in the toilet . So I 've been searching on the Internet for a long time . But I have chores to do , such as laundry , buying food , making a framework for an exam , learning English , editing a movie , and so on . We can share each other 's culture and languages here . Summer is horror movie season in Japan . Japanese horror movies are very scary and interesting . I so hated cleaning , especially washing floors . And I like to rid of useless things . I must will have to find myself very embarrassing one day , than there will be no stuff to through away . Sometimes my friends are joking that someday I 'll turn to Monica Geller . ) ) hahaha I should learn as much English as possible . I enjoyed this trip . I thought `` I need to learn English because I want to go on a trip tsomewhere It 's unbelievable though , having a baby at such an early age . I do n't have any cavities , but my teeth are poorly aligned . A Japanese novel I wish I could help her because it makes me happy that the foreigner read a Japanese novel . because I want to improve my English , However , in the middle of the development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becoming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . I have nothing else to do , so I powered on my laptop . Then I check the lang - 8 site . Although a human 's life - span is longer than ever before , we still have to combat diseases which could kill both humans and animals . For the first 3 months , I had been very busy and had not been sleeping . It 's because I want to improve my pronunciation . But I do n't know if my pronunciation is OK , or not . Last evening , I got insomnia , could n't fall sleep until 3 : 00 am . All kinds of things came to my mind : work , study , life , family , friends and so on . It 's difficult for me to understand people speaking at ordinary speed yet . Anyway , my shoulder is still very painful . Would you mind telling me how to get the discount that your invitation letter said ? I have learned english for more than seven years now . Because , the big earthquake struck Japan in March . . I 've never tried this product but when I was young and stayed in my home town , my mom often cooked curry and I would eat it in the morning . Does it Make Sense I have a feeling when I hear someone say `` does it make sense ? `` that it is either the peron is getting impatient or just being rude . Because English subtitles are useful to me and it 's free to watch it online . It seems that I will finish the whole series soon . . There are a lot of restaurants in Kyoto . Some Japanese are getting crazy about this , even when they do n't drink wine regularly . I visited the wax museum . The museum was brilliant . Do you have a Twitter account ? I made a new Twitter account for practicing my English today . I tried to memorize the new grammar for the next lesson . Fortunately Grace had space in the car . My husband set up the hammmock between the trees for the children . I really missed her Spanish omelet and I decided to make it myself . Some spelling errors . Instead of potatoes , I put tomatoes into the omelet . I went to the chilli festival in Fremantle today . Is the teaching ( studying ) method different from other countries ? I 'm going to Turkey with my customers tomorrow . postpone : Our school postponed the baseball game because of the bad weather . delay : The flight from Taiwan to Japan was delayed because a Typhoon was approaching . And She recommended me to do it . Autumn is just around the corner . And my teachers ca n't do anything because it is the pranksters ' last year in high school lol I 'm happy because the holidays are coming and I 'll be able to get out every day with my friends = D Please , correct all my mistakes . Additionally , the Singapore government disciplines harshly . Once a citizen commits a mistake , it 's very difficult to recover their career . We watched a funny movie and drank . In software business , English is the most important language because almost all major software is created by the USA . But I think a lot of college students do n't have each dreams anymore . But now , I 've realised that I have to do my presentation tomorrow . I want to become a translator , especially for movies . It will be hard work because words that a translator can use in a line is specified by the rule of translation . I do n't know how long it will take , but I want to become a translator . But I 'm sure many people are stressed out and really want to do something similar , so I also think he is a hero ! ! But outside Bangkok , the situation is much better , other cities are quiet and beautiful . They are always coming to the stations on time and very clean . They have comfortable and soft seats on the trains . I want very badly to improve my writing ability . My hobby is listening to music ! I decided to study English again for my dream after I entered the university . Actually Ive already graduated from beauty school in Osaka in 2006 , but I still wanna go . It 's not the time for writing a journal right now , since I might not be able to return home early to sleep peacefully . ( A1 ) My family makes me happy ( sad , angry , surprised , unhappy , bored , frustrated , etc ) . I work at an English conversation school as a front desk personnel but my English skill is n't good enough so I ca n't communicate well with the native English speaking teacher . Sometimes genes have great influence on children , but what would be more important would be the quality of upbringing at home , and teaching at school . So I thought I already knew English grammar So , after work I played an exercise game at home . Obviously , our life has been changed enormously by the use of computers . It is unbelievable . We never wear coats in Sempember or October . So I am going to take her to the pediatrician , which she is not used to going to , because today is Sunday when most medical clinics are closed . I do n't have confidence but I do n't want to be stressed . I went to canada to study the English language . I live in Vancouver , it 's an interesting city . I took pre - tests for my law exams from February 28th to March 2nd . There will be 8 written tests which will take 17 hours altogether , and 7 marking tests which will take 5 hours and 30 _ minutes altogether . The students in the class congratulated him on this great news . I registered at this website today because I want to ( `` wanna `` is considered slang ) brush up my English skills . In the Fukuoka prefecture of Kyushu which is in the southern area of Japan , typhoons come at least five times per year . I bought 4 packs of Sushi and delicious beers . Weather news says `` it will be snowing . `` He articulated the consonant sounds very clearly . Everyone in our class was laughing out loud . I called ETS lost and found office and left a message according to the directions . So far , I have n't gotten a call from them , but hopefully they will inform me . At 5pm , we met at the classroom , and walked to the pub . Some of them , Switzerland guy who organized the party for us , Chinese girl , and South Korean girl will leave Edmonton soon , so we took many pictures . South Korean guy became 25 , so we definitely celebrated him . I also want to drink bowls of congee and eat steamed buns , which are not easily found at night . I usually try to take a nap or study English . I am weak from a lack of exercise . . Unfortunately however , I do n't know of any classes for beginners . My native ( mother ) language is Chinese , I hope I can help someone here . I got sunburned the day before yesterday soI got somealoe to treat it . In the morning it is very nice , though ! So if someone has experience with this grammar , please tell me how to use it . In the past two days , my wife and I walked to the park early in the morning . Kodomono toki kara , geijutsu ga suki desu , ongaku , ya kakukotoga dai suki . Boku no nihongo no reberu ni stuite , takusan no kuni ni sundeita node , hokano kuni no gengo wo benkyoushimashita , demo daigaku kara ( nihongo wo ) benkyou shihajimemashita , hitori de nihongo o benkyoshite imasu . watashi no otousan to watashi no nihonjin no tomodachi mo nihongo wo renshuu shiteimasu , rainen waseda no daigaku ni ryuugakui shimasu . . I hope it will be repaired as soon as possible ! ! I 'm going to pick up one of my friends at Narita airport . Sometime it takes a long time to see them , and I have to wait a little bit of a longer time at airport . However I did n't buy anything because I did n't have any money on me . When I was a high school student , I did n't like science . What difference `` anytime `` and ver `` `` whenever `` , `` anything `` and `` whatever `` ? We went to a good restaurant , and had a great dinner . We have not seen each other for such a long time . We plowed a new field and scattered a bag of the fertilizer around it . My sister who tied the knot with a man who lives in Yamagata prefecture last year ( and enjoyed a honeymoon traveling to Italy ) got pregnant at the beginning of this year . I am already uncomfortable with the muggy weather , their loud sounds make me feel much more uncomfortable ! or optimistic information , we wo n't know the proper action to take during a crisis . When I was a major in Architecture , but now I develop PC software to do busines for employees only . About me I do n't know how to use it in context . I hate crowded places , If I were there , I would have a headache . Of course , English is required in the other three sports . And then I want to present the iconography of the altarpiece that is focused on the biblical narration and mention some features of this work . The example in Berlin is very similar to another John the Baptist altarpiece in Frankfurt , so a long discussion has taken place on which is the original . The last panel is about the beheading of John the Baptist . These three painting works are supplemented by a detailed illustration of miniatures in a Gothic arch which functions as a frame for the pictures ( or : subjects ) . Telling The program is about other TV programs I like , USA or UK drams , for example . And I made it a habit to memorize what the native speakers corrected . We discussed transportation duringmy English lesson yesterday . The shape reminds us a white heron flapping its wings , so It is called `` Shirasagi jyo `` ( white heron castle ) . When I was thinking about it , the earthquake finished . Kilimanjaro . Lately , I 've been trying to get in shape because I 've put on some weight . I might be successful if I keep dieting for a while . Aside from these , his appearance and behavior is also strange . The Japanese movie `` Hankyuu Densha `` is modeled after the Imazu railway in this town . I especially love gyoza / gyouza . Good morning ! It happens that she was n't with my friend . When I went inside , we walked along a slope next to a big aquarium tank shaped liked a cylinder . As the slope was a spiral , it made me dizzy . They are an English book and a quilting book . so I was very interested and excited ! But getting a drivers license is difficult for me to get . Because I am worried about slamming and crashing into other cars . It 's only 12 : 26 , and I wanna go home ! I wanna try the real French full - course meal , or whatever you call it : S Recently , I could n't write a diary in English . First , I practiced speaking in english with videos . Today 's topic was `` a park near my home `` . I feel comfortable and at peace when I take them . good morning everyone ! Last night my friend came over to my house . she first stayed at my house This morning I made her breakfast . because she thought that I was a good cook . Since I have the experience of being trapped in an elevator during a blackout , I am really nervous about these kind of things . Every time I became exhausted and went looking for another sports , I would gain the weight back . ( If I had known the water in the pool was actually up to my shoulder 's , I would have tried three years ago . ) However , there 's good news , especially for me . I try to stay fit without having an cigarettes . Three of my friends came to my house to study English together again this morning . I went to an English - speaking country and have been there for 7 years . Also when they said something to me , I always can not understand them straightaway . When I was overseas , I did n't watch English news channel or movies . I could not understand those popular programs as I have no idea about their cultural background . He lives in a northern part of Tokyo . I just kept silent . I am feeling nervous . Although it was boring while we waited , I believe that when we see the picture on the magazine we will find out everything was worth it . So I can eat those without thinking which dish is cheap or expensive . When I see the people 's attitude toward saving electricity , I am always reminded of the nature of Japanese citizens . Studying in Canada is a valuable oppurtunity for me to become mature and learn , and I 've had to overcome tons of difficulties . Last time when my friend and me were leaving the Superstore and decided to walk back to the dorm , a Canadian couple drove us back . Before that , I need to get my father 's permission . I 've am always thinking about what makes a good speaker . These days , I think I 've eaten too much so I am gaining weight . So I pour some syrup into my Caramel Frappuccino . But after I started talking , nobody responds to what I say . We memorize new words everyday , take classes during summer and winter vacation , and read newspapers and magazines once a week . To learn a foreign language , we should try to speak it as much as we can . And in my opinion , a test will push us to speak more and speak better . The PM Hatoyama said that he would resolve theFutenma problem by the end of this month . I did n't know what was happening . For example , when I go to supermarket , there are many things written in Japanese on the packages . If there are ( some ) words that I have n't learnt yet , I would write those words in my notebook and search them in dictionary after I return home . Anyway , it is a difficulty for me and I am worried whether it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone who I can practice conversation with the elderly . Finally , I have no idea how to learn to listen to English . YAKUZA appears in this game , Since the problem of food safety is becoming quite worrisome , Beijing citizens attempt to find farms themselves that can provide safe agricultural products . Maldive has recently become popular for honeymooners . Also , I love learning about cultural differences between my country and other countries . However the trees looks like all the others , except in spring . I 'm looking forward to the party , but I feel a little unease if I can communicate with foreigners well . anyway I will go tomorrow again . . . . . . I sold a CD set of the business teaching materials I used to listen to for 20000yen . I answered that I 'd like to eat sepecial food . `` Think about what 's different between you and them . `` But sometimes I forget , so I think I should try something again . So I have to look up the dictionary many times . This means I have to read 100 pages of the book each day because I just started to read this book today . I have had two turtles for about 15years : - ) Their name are `` KA - `` and `` ME - `` . That was her first solo concert and her first CD was released on the same day . I pretended to call a policeman . I could n't conceal my excitement about this chance for communication , because it was my first time talking face to face with a foreigner . We only briefly , greeted each other , and that was followed by a long , awkward silence . I graduated from a university this year , but the graduation ceremony never occurred . How do you study a language ? Please try this method if you would like to learn a new language eficiently . In my opinion , we have an argument between security and the risk against [ urasite ] of each school . Mobiles could be very powerful to prevent crime against children . If my freind has time , we 'll play catch or watch sports . Her birthday is tomorrow It 's very difficult . Have a good weekend . People probably just want to visit other countries even though they are going to waste money by visiting . My bad habits I have some bad habits . But recently , I 've tried to fix my bad habits . The mountain I was running over today was a symbol for Buddhist prayers . The weekend is over , I do n't like monday , and I am logging in the lang8 to see whether someone had corrected my diary , but the result let me down . I am looking forward to meeting them . Because I want to enter university . I want to study biomechanics . So ` native English speakers ` refers to the Americans . I thought that more people would come here to sightsee , and the number of suicide here would decrease as long as the path was maintained . I think that is part of the reason why suicides occur here besides the poorly maintained path . I have to prepare boiled eggs . For example , I like to invite my friends to my place , enjoy my favorite cigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( sounds like a teenage boy XD ) . I 'm a little bit of a collector of My Little Pony figures , and I love toys and all things Hasbro . The Google satellite captured something that resembles a 30 meter long snake . They are n't sure if it is a real snake , but it 's highly possible . I think there are many mysteries in the world . There is a very interesting myth in my town . Two hundred years ago , a wise Buddhist priest who could see the future said that my town would be destroyed by a huge flood . It was only a myth until one statue was ( actually ) found . There was a heavy rain in Shanghai this afternoon . My friend did n't meet the train . She planned to go to Xian today . Without that TOEFL experience , score , and training , I could n't have gotten those jobs in just two weeks . I heard that a lot of people in Finland like Robert 's coffee , is that true ? The messages said that my card 's number corresponded to the card company 's one , so they canceled my orders . Luckily , my daughter 's team won the victory . Now I restart studying ! My favorite person is Ichiro Suzuki . A Welcome Party I saw the corrections , and had to start translating it using google translator . It 's unhealthy . If I wanted to give my thanks to you , I would write in card to X `` thank you for cheering me up : ) `` I submitted an application for a new job last month . Additionally we listen to them speak with patience because we know how they feel / the feeling So we should try to think about it from the younger sister 's point of view . The younger sister , Bess , has to depend on her elder sister , If I have an opportunity , I would like to use slang words . I would say to my friends `` Hey , what 's up dog ? `` But what is it like in your country ? I ate my salad fast , and after I opened the bag my hamburger was in . He did not know whether the post office was nearby . It 's hard to explain why I like rainy days . I believe that the TV has reduced communication between family members . I doubt whether daily homework helps students Different clothes sometimes influence how people behave . I was reading a Japanese comic yesterday . Furthermore , every cigarette company should be banned for selling poisonous products Recently , I have been very busy everyday . Then one Sunday , I was invited by my friend to drive around . This surgery lasts only 10 minutes but is it safe ? ? I 've kept learning English , but my English skills do n't look good . I did n't have many jobs at work today . I have a girlfriend . She told me to let our relationship return to how it was before , when we were friends . I did n't think I would like this book 'cause romantic novels bore me . I am a salesman in spite of having a speaking problem . If I were not a stutterer , I would laugh at it . I have met several people who have overcome stuttering . I did n't feel bad at first . Some were from England , Canada and America . I called her back wondering what might have happened . I aired out my ' zabuton ' because the weather was fine . : Well now , coming in were you rooting for the Lakers or the Sixers ? : No , I know it was your first basketball game ever , and I know its very exciting , but when it 's all said and done the season will have been long enough . This site 's a little different . . . My hobbies are snowboarding , traveling , and studying foreign languages . Now I study English and Spanish . I heard that she had had strong cough and felt lazy for long time . Was the oven out of order ? The traffic ( on the highway ) in the capital was so heavy that we kept moving really slow for an hour . Almost all of them have their own jobs and they practice soccer in their off time , nights and holidays . My favorite season is summer . ^ ^ During the Christmas season , I was too busy to enjoy the festive feeling . But English is telling me * , `` Vitaly you are so / too stupid . `` * just a third option I often get angry with myself , when I go to get the coffee . I find nothing , and I have to do it all over again . One day my throat was sore . Now I ca n't breathe through my nose . On another note , I watch the TV drama `` Soredemo bokuwa ikiteyuku `` . I had n't used Dreamweaver for half a year , so it was hard to remember how to use it . However , I ca n't talk to anyone in English on Skype at the office . Thank you for reading my journal . It was difficult to understand what they were saying because they were speaking British English . Today I 'm talking about an Italian restaurant . . . . . . . I went to Saizeriya , an Italian restaurant , with my friends . Do you know it ? I think Shogaki , the president of Saizeriya , is very clever because he always tries to keep the prices down while keeping the food delicious . He has his own farms and grows the vegetables they use . Also , from the farm to each restaurant , the vegetables are kept at 4 degrees because the vegetables will keep fresher that way . He tries so many things to serve cheap dishes and be more delicious ! I will go to the shopping mall , because it is cooler than I just sit in my room . Certainly , it is very dangerous , because Japan relies on nuclear power for many parts of its electric supply . so younger people in Japan should have more interest in these problems or in politics . What do you think about nuclear power plants ? Yesterday I took part in this Lang - 8 and wrote my first journal . regret : I regretted calling her such cruel words . govern : In ancient times , Rome was governing all the world . Hi , it 's my first text on this page and I hope that this page will help me in learning english . As I was n't able to focus on the listening part , I do n't think I get a good score . Anyway we enjoyed the beautifully displayed dishes and the beautiful scenery of the countryside . He must be starved ! Avocado and fruit cocktail . If you meet people with whom you have bad memories and you have not kept in touch for years , By the way , if English speakers speak Asian languages in Asian countries , Asians are interested in them . But if I hear Asians speaking poor English in English speaking countries , English speakers treat those Asian without consideration . Anyway , Speaking English is in great demand and speaking Asian languages is not . For beginners , I think acoustic guitar is the best choice . It 's a great web site . Koyasan is a very famous place for But - ism , called SHINGONSYU . And I have invited my foreign friends to visit my home town . My dream is to run a youth hostel in my town and I hope that many foreign people will visit my home town . I do n't why , but I just feel sad ! Therefore , I think that salaries should be based one 's perfomance or the amount of benefit they have brought to their workplace . I tied a ribbon to it and painted it pink . Therefore I ate a salad to not skimp on vegetables . It 's also a good experience which can arouse my interest in language and at the same time help other people . I am willing to correct articles in Traditional Chinese , but Simplified Chinese seems to be more prevalent . Every customer seemed ( or : seems ) to love our shop ! : ) When I enter into Lang - 8 , it was a big change . In Japan most people are punctual and honest . Watch these clips , please : D for just 30 minutes . Well , I do n't get tooo much , but it 's still a good deal : D I 've been reading the book ' The Wondeful wizard of Oz ' . Now , mobile - sites are important for E - commerce in Japan . Recently , I had neglected studying . However I will go there someday ! I personally felt that AVATAR 's story was not so bad , but the visuals and 3D technology is worth seeing . I recommend it to you . I will try to introduce to you the story of AVATAR briefly tomorrow . . Official Trailer of Avatar female : I wanted my hair cut by a female when I went to have my hair cut . Last month I took the `` Tourism English Proficiency Test `` and passed it ! It was heavy , even without fried potatoes the double - decker hamburger was enough to fill my stomach till the evening . english is so duiffcult What can I do to strengthen my english skill . It is exercise for my brain . I often say `` pardon , please ? `` . I work at a convenience store that is near my house on every Saturday and Sunday . many people come in and behave differently . that is one of the reasons why I work there . I think that most English learners dislike grammar which is essential to understand well when speaking English fluently . I have alredy noticed the reason why Japanese are n't eager to speak English in front of Native Speakers . An English man came to my gym to do training . `` Consult the dictionary `` is just serious . I looked up the word you taught me in the dictionary . But evidences ( OR my experiences ) proved that I was wrong since most Singaporeans can speak Mandarin . And we are trying to figure out the most efficient methods to improve our speaking . SO , good luck for us . ' The time when you think it 's late is the perfect time to do it . ' and ' The man without motivation is not different from a dead body ( man ) . ' But I hardly speak or hear English , and I am not good at reading and writing . My English teacher always wants me to write English compositions , but I am scared to do so . Even so , those gadgets looks convenient and useful . Suddenly , she became silent . It is very cold at the office because of the air conditioner being put on high . My seat is right under the air conditioner . The next game is supposed to be released in the NINTENDO DS . In Japan it is winter now . Recently , I happened to hear very nice music . I watched the Disney movie `` Enchanted `` . My friend introduced me to this useful website . Although my Japanese is not good enough to write an entry yet . I have studied english for about a year . I ought to have breakfast by stopping at a restaurant before getting to the airport . Because it is very different from what I used before , it is very difficult for me to use it . I really want to visit there again , and , if I can , I will live there for several years . Last week , the whole northern part of Taiwan had been enshrouded by depressing rain for a long time . And because of the rain , I could n't go very far to eat out , and I could only choose the restaurants nearby . I have to wash a lot of laundry ! I 'm relaxing on holidays from 8 / 13 . Today I 'm going to clean my room , do laundry , wash the dishes and so on . I do n't like the bus because it 's crowded . Because the job notice was supposed to be annouced today . I called and asked why the notice has not been announced and they said that it was delayed until next week . There were many vendors selling everything you could ( possibly ) imagine . Yesterday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croquettes because they do n't cost very much ( around 10 - 20 yen each ) and croquettes with brown ( worcestershire ) sauce is the best with beer . Since I had notspoken English for longtime , it was difficut to speak fluently . Sometimes , I encounter difficulty in correcting students ' English composition , so I need help to correct them . However , after coming to the US , I feel this is not true . Please let me know about the racism that your country has . I love jogging . I used to have this habit , but suddenly I stopped . So , we just had the Gay Parade , which is one of the gratest parades in the world . I think it 's a great web site because I can practice English here and I hope that I can help others to learn Chinese too . this is my first time I received an e - mail from someone who saw my profile on the website . And I accepted his invitation . I learned that I should never use the webcam with a stranger . And I deleted my profile instantly . I tried to study Spanish after I came back to Japan , but there was no lecture in my university and I did n't have enough time and money to spend for it . My friend has been going to University at night time or holiday as well as going to work for the past 5 years , they said . I have never tried something like that , so hearing about it touched my heart because for some time I also wanted to go to University but I could n't decide how to do it until now . What my friend said made an impression on me . As you know , more and more people are unhealthy , but why ? Which of these sentences do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? If I will have any power , I 'll write an essay . I 'm pleased to love it because I want to spesk English very well , as if I was a native speaker . If I need to make an appointment with my friend , but I am not sure when he is available . Then I brought the bicycle to a ( bicycle ) shop , to ask for a repair . My hobbies are learning languages , speaking with a lot of people via Skype , drinking at the bar with my friends , reading books , going ( travelling ) abroad and so on . Recently I have started to want to get one more and more . Especially , I want to talk to improve my English skill . And one hairdresser came to me and asked me They looked quite mature for their age at the entrance ceremony because they were wearing suits . My university does n't have a lot of students but I can make friends with almost everyone and I 'm looking forward to that . Yesterday , I was depressed because I went to my part - time job , but it was my day off . I 'm into horoscopes these days . I always feel excited when I sing karaoke . [ alternative ] One of my double majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rmb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationship ! I 'm looking forward to going out for dinner with her . I am a 23 - year - old Japanese girl , as I mentioned in my profile , and I mainly work as a kindergarten teacher . Hard schedule . I feel I 'm lucky and I want to care my daily life . I am not sure if they do drugs like drug addicts or they did it just once , because I only heard it from someone that I hardly know . So I decided to ask the two guys face to face if they are drug addicts , or if they are dangerous , because I do n't want to judge them and talk behind their backs . Near the beginning of our relationship , he made me a dinner and there was only some fried meat and some instant mashed potato . The healthiest food among what he think is healthy is a subway sandwich but I know the white bread is n't really healthy , at least for Korean . The e course involves listening to English for 1000 hours in a year . According to the explanation of the course , it is generally said that about 1000 hours are required to get used to hearing a foreign language accurately . The course cost about fifty thousand yen . It was not cheap but I could pay for it thanks to the welfare program which my company offered ( to ) me ! The course will begin next month . And when I was a high school student , I experienced a job at an airport . So , I wish to become a customer service agent in an airport . I am learning English and Chinese now . It was a game in the UEFA Champion 's League . I had lived there until graduating from high school , after which I left Hokkaido . Spicy Foods & Cat 's Tongue It is a Japanese custom for woman to give a person she likes sweets : ) I 'm very happy because I want to learn English in a more proper way . It was raining heavily today . about my life on rainy days . Study animation abroad . He is studying Japanese animation at school . I do n't know what kind of animation he was studying ? But we had a nice conversation together . He looked like a funny and friendly guy . It is a delicacy ! ! I enrolled in an online English school a couple of days ago . Can you believet that tt one lesson ( or : that the fee for one lesson ) is only between 1 $ and 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expensive . An Amazing Website for Language Learners ! Right now , I 've come to be able to understand recorded voices in English , but it is still hard for me to understand what they are singing in English . They sell various kinds of cakes there . [ alt . ] But I think I prefer the clothes which suit me . others . I like nearly all clothes colors except red , but I do n't know why . All reds ? I prefer the flashy things . My favorite jewelry is earrings . I could n't sleep well last night because I was coughing all night . I 'm a really short tempered person . Before I came here , I thought `` If I live in the U . for a year , I will be a really good English speaker . `` But I was wrong . I am surprised at how difficult it is to learn other languages . So I was really disappointed in myself and kinda bored of studying English . But Lang - 8 often encourages me to study , because I can see many people who study other languages and may have the same feelings . I really like to correct foreign people 's English . I was typing my first journal on Lang - 8 little while ago , and when I hit preview , my computer screwed up . . . so I am re - doing my Journal . Are there ramen restaurants in your country ? First diary ^ ^ I 'm interested in learning about other country 's cultures and making friends ^ ^ She smiled and asked me , `` Why did you choose me ? `` I do n't think we are either close or distant ; we just call or text when necessary . But in the last few months we have been ignoring each other due to my imprudent words . I think everyday , `` l 'm happy , l have all things l want `` because of this , but sonetimes because l do n't want something Becouse if I think too much , I ca n't continue . I am busy , so I am going to just try and try . So my friend advised me to write my journals in this site . I want to use the phrase `` get to the bottom of this . `` I will have an art class . I 'm going to go near the port and paint a picture of the fishing boat . Yesterday , I played soccer from early morning . I will join a soccer tournament in November . I have a dog for ten years . We saw two ponies , a pig and chickens . Many kids kept trying to feed them . I think I should be more careful and diligent for work . Dubois put her girls to bed and was waiting for her husband , sitting on a sofa alone with lights turned off , when Mr . Dubois who was deeply distressed finally said to him , `` Honey , it 's already 9 o ' clock . `` But in Japan we only buy presents for children and couples . So , I decided to return to where my university is located . My ankle was hurt last Thursday , and I got another unknown disease last saturday . My bad luck began when , last month , I went to a temple to pray for more money . So I was thinking I definitely have to go there again . I ca n't wait to have the party : ) and also for the Halloween parade at 6 AV : ) I hope I have the patience and perseverance to keep on writing diary entries in By the way , I registered on facebook yesterday ! He looked at his feet , and saw there were tiny animals . He was scared , so he ran along the inner way . Furthermore , some adults play sports there as well . When I arrived at Osaka , it was raining heavily . If I eat a hamburger slowly , chewing it well and tasteing it , I always regret eating it . Recently , I could only go to work two days a month because I have been receiving post - surgical chemotherapy to prevent the cancer 's recurrence and metastasis . Though it is regrettable that I got sick , I believe my disease has helped me develop a greatness of soul . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio channel . Of course , I realize that my range of vocabulary and way 's to express are limited . I have to study tonight for tomorrow 's tests . Yes , I know that I will soon enter into a university and I 'm 18 years old . I jogged only this weekend , but I think it had a little / some effect in decreasing my weight . This is my first time using this kind of website ; My friend recommended it to me . Example sentences are welcome . I would keep taking lessons but I do n't have enough money . I really enjoyed her stage performance . `` Pirates of the Caribbean : On Stranger Tides `` was exciting , too . Currently they are preparing to plant rice . It starts in the afternoon , so I 'm planning to go to the library in the morning to read a book ! But I 'm little nervous because of my English communication skills . My job is a project manager for developing web sites . On september I have a plane about going to Victoria , BC . I was impressied ! ! The first one is called Tyria and has a more detailed history than the other two , I 'm also reading an English book called HOLES . In the morning , I rushed to get up and ate sandwiches , which I prepared yesterday night . At that time , I began to realize that I had forgotten my ticket and wallet at home . When I found this site , I decided to post my journal entry everyday . I know her feelings because when I was an instructor in drawing software at a business school , I was happy to know my student 's were improving and using effort . I know it is really hard do it , but sometimes I 'm lazy or drowsy and would like to sleep . The story is mainly about pirate adventure , and they also have special abilities as similer as Naruto use Ninjutu . I worked Today . And , that will make me more stressed . I would appreciate it if you check my English or send a message . I really hated cleaning , especially washing floors . It is useful to me because of the english subscriptions , and it is free to watch . Do you have Twitter account ? She recommends that I do it , too . I 'm learning new vocabulary to become more efficient I took practice tests for my law exam which will be held from February 28th to March 2nd . It consists of 8 writing test that take 17 hours and 7 marking tests that takes 5 hours and 30 minutes . Everyone in our class were laughing out loud . I called ETS lost and found office and left a message according to the directions . So far , I did n't get a call from them , but hopefully they will inform me . At 5pm , we met at the classroom , and walked to the pub . `` `` from South Korea became 25 , so we definitely celebrated his birthday . So if anybody has experience with these , please tell me how to use them . Kodomo no toki kara , geijutsu ga suki desu , ongaku , ya kakukoto mo dai suki . I am an exchange student , so I need a host family to live with , and also there are some other exchange students in my high school , and they also live with their host families . And then , I want to present the iconography of the altarpiece , focusing on the biblical narration , and mention some ( special / particular ) features of this work . Since the slope went in a spiral , it made me dizzy . First , I placticed speaking in english with videos . Then , I wrote an essay . Good morning everybody ! last night my friend came to my house . she stayed at my home this morning and I made her breakfast . because she thinks that I am a good cook This is Sarah 's daughter . I went to an English - speaking country and was been there for 7 years , So I can eat without thinking which dish is cheap or expensive . Before that , I need to get my father 's permission . So , English native speakers meant Americans . When it was lunch time , I was going to go to the restaurant . It 's unhealthy . So we should try to think about it from the younger sister 's point of view . I aired out my ' zabuton ' because the weather was fine . The highway in the capital was so congested / packed / busy that we moved really slowly for an hour . I ca n't talk to anyone in English on Skype at the office . Anyway we enjoyed the beautifully arranged dishes and the scenery of the countryside . Anyway , Speaking English is in Great demand and speaking Asian languages is in little demand . For a a beginner , I think acoustic guitar is the best choice . My dream is to run a youth - hostel in my town and I hope that many foreigners will visit my home town . And for just 30 minutes . My wife was amazed at such beautiful pictures that she was excited all the time while watching the movie . I , personally , felt that AVATAR 's story was not so bad , but the images and 3D technology are worth seeing . I recommend that you watch the movie . I will try to present the story of AVATAR briefly tomorrow . Official Trailer of Avatar An English man , a member of my gym came for training . while trying to figure out the most efficient methods to improve our English speaking abilities SO , here 's wishing good luck to us . although my Japanese is not good enough to write an article . I called to ask why the notice had not yet been announced , and they responded that it was delayed until next week . Please let me know the racism that your country has . I felt weird putting something into green tea but we put sugar into English tea so maybe it 's the same thing ! : p However , to me , the most important things are relationships ! He is studying Japanese animation at school . He looked like a funny and friendly guy . I enrolled an online English school a couple of days ago . Of course , he 's never at temples , shrines , churches , and mosques . There were various ( types of ) cakes there . Today , I tried to call the hospital and I was able to get an appointment . ( so ) OR ( therefore ) my friend advised me to write my journal in this site . We went to Bexhill near Eastbourne . We went to see The Red Arrow show in Eastbourne . We saw two ponies , a pig , and chickens . Many kids tried to feed them all the time . Though it was regrettable that I got sick , I believe my disease developed in me a strong will to recover ( alternative ) It starts in the afternoon , so I 'm planing to go to the library in the morning to read a book ! And he has learnt some Japanese words . The story consists mainly of pirate adventures , and the main character also has a special ability similar to Naruto 's art of ninjutsu . But I ca n't believe she is having a baby at an early age . I 'd like to go by car , but it has been broken since two days ago . last night my friend came to my house . this morning I made her breakfast . because she thought that I am a good cook I recommend it to you . I really wanted to go to the English school but I have stopped because the lessons were too expensive . so my friend advised me to write my journal on this site . He can speak some Japanese words . ================================================ FILE: data/example_data/bea60k/bea_txt/sources.txt ================================================ I WANT TO THAK YOU FOR PREPARING SUCH A GOOD PROGRAMME FOR US AND ESPECIALLY FOR TAKING US ON THE RIVER TRIP TO GREENWICH . IN MY OPINION FAMOUS PEOPLE ARE BEING OBLIGED TO PAY A PRICE FOR BEING FAMOUS THAT , IN SOME CASS , COSTS MORE THAN THEY DESERVE TO PAY . Also , I want to say that the plays and films were exellent , but there were n't enough of them for me . In our Acadamy we are not allowed to smoke . I was trully dissapointed by it . Secondly , I had to wait fourty - five minutes before the show finally began . I 'd like you to send the money to this adress : ul Taklowa 10 It is a dream becames true and was really unexpected for me ! If not , what do you sugest ? The festival was excenent in many ways , and in particular it being an international festival was a challenging , but brilliant idea . MY NAME is JAMES CAMIREZ AND I AM WRITING THIS LETTER TO YOU BECAUSE I HAVE SOME COMPLEINTS REGARDING THE DISAPPOINTING EVENING I HAD LAST NIGHT . SECOND I GOT TO THE THEATRE AT 19.20 BECAUSE IN THE ADVERTISEMENT IT CLEARLY STATES THAT THE SHOW STARTS AT 19.30 , AND I GOT REALLY MAD WHEN I LOOKED AT MY WATCH AND NOTICED THAT I HAD BEEN WAITING FOR 40 ( FORTY ) MINUTES AND THE SHOW HADN'T STARTED YET ... I MEAN IT WAS AMAIZING ! I COULDN'T BELIVE IT . HOW CAN THIS CLASS OF THEATRE BE SO .. OH I'M GETING MAD AGAIN SO I AM GOING TO TELL YOU ONE LAST THING , IT WAS THE MOST HORRIBLE NIGHT I HAD EVER HAD SO I DEMEND MY MONEY BACK ! MODERN TECHNOLOGY HAS AFFECTED ME IN SEVERAL WAYS . I MEAN THE MORE THE TECHNOLOGY ADVANCES ; THE MORE CONFORTNESSCOMFORTABLE WE GET . BUT I THINK ALSO THAT WITH MODERN TECHNOLOGY WE GET MORE COMFORTABLE SO THAT MAKES ME A PACIVE PERSON AND NOT SO ACTIVE . THIS CAN BE BAD TOO BECAUSE IF I GET USED TO BEING CONFORTABLE , WHEN I NEED TO DO HARD WORK I WON'T BE ABLE TO . Everybody attented go to the show , funny , and happ in the end , and what have we go then ? Disapponted ! If you could not manage the programe , why did n't you informe people before the programe started ? I tought you inderstood ' ; please send money back to me , you know why , do n't answer me ? Now we know , our world has developed to new world , becase we have high technology to do . Today , teachnology is a part of life . It started from got up in the morning , we have the machine help us to cook , iron , cleanning , washing , and then we went out to work , there are car , sky train to travel for help us convenience and quickly . We appreciated the mordern technology changed my daily life for help every easy and quickly , we have time to do many things . It is a good start to go on a sightseeing bus on Monday morning , because we can se all the famous buildings in a few hours . On Wednesday after we have viseted the National Art Gallery , we can have a chat about our next holiday during the free time in the afternoon . Nowadays the main attroction in the newspapers and on television is the private lives of famous people . On the whole , being rich and famous does n't always bring happeness , whereas the majority of the population wish they were rich and famous . Last week we had another demostration of this . Firstly , it will introduce the latest fashions connecting Millenium . Whenever I recollet it , I feel self - confident . Firstly , I would like to say that I 'm very glad to have been choosen and I will do my best for this competition . As you mentioned about the accomodation , I would prefer to stay in a tent , because it 's more exciting and I really love camping . However , I would choose sailing because I am facinating with the sea and its misteries and I also like the watter , the wind in my face ... The other one I would choose is basketball becouse I 'm tall and very fast with the ball . It was unbelivebly ! ! ! Are you studing a lot ? I have just received your letter which made me so hapy . I can not belive that I won first prize in your competition , because I have always believed I am an unluky man and now I think some things are changing in my life . I would definitly choose basketball and swimming wich are my dream sports . I would like to ask a few things , specialy about the wheather : what is the weather like in July in the U.S.A ? What kind of clothes will I need and how much money should I take with me ? Because I have never been to the U.S.A. before I do n't know anything about it . I have never enjoyed doing shopping , but nowday there are some people who are called shopcholic . They are just like alcholics and these people go shopping every day because they can not stop themselves unless they have not got money to spend . Because nowdays whereever you go there is a big queue and I hate waiting . The queues are not the only problem . If you go by car there is the problem of parking , if you go by bus there are also queues and you have to carry a lot of carrier bag carrier bags during your journey and you wo n't always be luky enough to find a seat . Specialy if you want to buy clothes with your girlfriend or if you are a girl , you have to be ready to spend hours trying on clothes . I realy hate going shopping with girls to buy clothes because when they go into a shop they want to try on every single item of clothing and they do not realise the time . Some people say " shopping is not always enjoyable " but for me it is definity unenjoyable and I think it will be the same for the rest of my life . First of all , when I bought the ticets it appeared that there was no discount available . It was awful when he started to laugh and everybody was stearing at us . Firstly when I went to the show it was written that the start time was 19.30 but it started at quarter past eight . I had waitted for forty - five minutes . I just knew I should n't have trusted her but as I went in the house my dad asked Pat to stay for a meal . I was in schock , thinking why is n't anyone getting angry with me ? After a while we sat down for dinner and Pat just told my parents that I was smoking and when my family heard they got ever so angry . As my husband is a native and we live in Switzerland , we apreciate spending a week in London every year . First , we could n't get a discount , although you mention it in your advertisment . I walked back , hoping I would n't come accross anyone and be able to drive back home . Firstly , could you invite stars and artists from more than only six contries ? In my opinion , it might be better to have time with a variety of nationallites . As they know about your interestings and personality , it is easy to help you . I would like to make some appoitments about the event that I went to . - Art exbitions to teach us more things about the artist 's lifestyle ; and Well , about rules in my contry , the situation is not different from other countries . The rules must be respected by all people if you do n't want to be kicked out of scholl . However , some of them have read an advertisment about the London Fashion and Leisure Show , which will take place at the Central Exhibition Hall in London on 14th March . Also the most famous star can be unhappy and depresed : in fact , money and celebrity do n't always bring happiness . In addition , addmission for students is free . Yours sincerily , On the other hand , the bond between parents and children is unlikly to change . The smokers in the school yard , the buffett and the other pupils , who are sitting at their tables doing their homework . That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredome . I am sure that eventually we will take off our clothes and in the future we will be undressed and free . There wo n't be any problem with being up - do - date . Of course , you ca n't afford a luxualy car and a large apartment unless you 're born with a silver spoon in your mouth . It 's also a really popular job among university students because of the good salaly . I was really suprised when I opened it . I look forword to going to the Camp California in the USA . Because it remainds me of my childhood . I used to go with my friends to a camp , wich was situeded by the seaside . Nowdays we have many big shopping centers . The most suitable time for shopping is the weekand when parents do n't work and children haven't got school . Because of that , shopping centers are overcrowded . You ca n't buy something in a peacful and calm athmospher . However such centers are very useful and necessary . In my opinion the worst thing which may happen is an extremly long queu for the changing room . If you bought something goregous , you will be very happy . Yours sincerelly I 'm writing to you because of the musical show " Over the rainbow " , wich I saw on Friday the 16th of June in your theatre . There are several points I have to complain about wich meant the evening was not nice at all . Instead of half past seven the show startet at quarter past eight . I could n't go to get any refreshment for two reasons , the first one is that there was no information about how long the start of the show was going to be late by . On your tickets information is written that discounts are available , when I asked at the ticket office I could n't get any discount for beeng a student . After one hour the hohle class had heard about Sarah 's secret . Everybody was interested in what she had won but knowbody wanted to ask Sarah because it was told as a secret to them . Sarah realized that everybody was nice and friendly to her but something was going on in the class , when she turned around talking and wispering started . Sarah looked at him for a while , then she stood in front of the class and explaind to the others that she had won a prize for 20 people to travel for 1 week to the coast of southern France and every one of the 19 pupils was invited , except Pat who was n't very good at keeping secrets . I read your advertissement five days before , and I was realy impressed by it . But , the quality of this show was n't what you led me to believe it would be , and I feel realy disappointed by it . For all these reasons , and if you want to keep me as a customer , I would be gratfull if you gave me some or all of my money back . Yours sincerly , My marks were n't good enought to obtain my degree in Computer Science , and the exam session was finished . I never talked about this project to anyone , exept my best friend Pat . It is a great opportunity because this show is only every two years and normaly it is difficult to go in . Or going to the show on wensday morning and in the afternoon , we can choose between free time or the National Art Gallery . I look farward to hearing from you . They found hime two months later and six months later he was in jail . I am writing this letter to complain about your advertisement for the musical show " over the rainbow " , wich is misleading in a number of ways . Sweating and affraid I waited outside the director 's office the following day . Tairs ran down my face as I admitted having stolen . I was suprised that my father did n't watch me but I soon understood that he was ignoring me . That evening my father said a few words : ' May this be the end of your career as a thief ; we are only ready to forgive if you promiss never to start again ' I am writing to reply to your letter in which you told me I won first prize in your competetion , which is two weeks . I was very happy with this result since I did not think I could win . The aim of this report is to suggest which activities in our daily life at school shoud be filmed to give the other students an idea of what we usually do , not only during the lessons but also the rest of the time . The porpouse of this letter is to complain about my experience with the musical " Over the Rainbow " , wich really disapointed me . First of all , there were no diccounts avaible such as were promised in the advertisement so I had to pay the original price wich was n't cheap at all . Then , I was forced to wait forty - five minutes to see the show because it started at 20:75 instead of 19:30 and , when it finally started , I was really disapointed to see that the actors were n't Danny and Tina as it had said in the advertisement . Your really dissatisfied costomer How has modern technology afected my daily life ? We live sorrounded by inventions wich help as through the day . The reason for my decision is that other activities are also available in my country , except climbing , but I have a fear of heights so this one is not destinated for people like me . Acctually , they put me very close to the stage , in the middle of the real hell . This is the main reasone why I want to ask for a refund . People wo n't be embarassed to show the beauty of their bodies . Moroever , I have chosen this month because I think the weather will be fine . During my stay at Camp California , I want to go swimming because I practise this activitie regularly and I often enter competitions : this is one of my hobbies . Then , there was only one hour left to install the different color lights ; it was just enought time . We would suggest going to this fabolous show . Yours Sincererly , Despite being used in many ways , it could entartian us as well . Although I imagine them in my house in my future , I am sure I would be suprised if I had them . A usefull helper : the personal computer can quickly help you in lots of situations . Although the world of computers will develop day by day , I lively hope we ( human beings ) can mantain our way of seeing things . I'M VERY PROUD TO BE THE WINNER OF YOUR COMPETITION ! I HAVE NEVER BEEN TO SUCH A CAMP BEFORE AND SO I'M LOOKING FORWART TO SPENDING TWO WEEKS THERE . IT IS ONLY POSSIBLE FOR ME TO TRAVEL IN JULY BECAUSE OF MY UNREGULAR WORK . HE 'S A SMAL ONE ! I'M LOOKING FORWART TO HEARING FROM YOU YOU KNOW THAT I ALWAYS WANTED TO HELP AT A CONCERT . TO BE PART OF THE STAFF WOULD BE WONDERFUL , I THOUGTH . AND I WAS RIGHT ! AS YOU KNOW I WROTE TO THAT ORGANISATION WHICH IS ALWAYS RESPONSBLE FOR BIG EVENTS . ALL OF THE STAFF AND THE ORGANISATION SPOK ABOUT THE RULES AND HOW TO SAVE PEOPLE . WE WERE A GROUPE ! ONE TEAM ! BEFORE THE CONCERT WE HAD A BREAK TO EAT SOMETHING AND TO TALK TO EACH OTHER . THE CONCERT WAS VERRY LOUD AND LONG BUT WE DIDN'T HAVE TO WORK HARD . GREATING AND HOPE TO SEE YOU SOON However , it was a very dissappointing evening for me . Firstly , it was mentioned that there were going to be two starrings but , in fact , only one actor was performing in the show . Thirdly , the advertisment said that discounts were avaliable but the ticket seller said that there was no discount allowing or avaliable . In addition , the advertisment mentioned that the restaurant would be open after the show but it was closed because short of cooker . Finally , I would like to ask for my money back on the ticket due to the disapointing evening out and the misleading advertisement you have created . Nowadays , modern technology is becomming absolutely essential to our daily life . Without all this your life would definately change back to the same position as it were 50 or more years ago . If this continues to happen our life will be very misarable as accidents happen all the time . Thank you very much for the many interesting positions in this schedule , especially the river trip to Greenwich , which , we are shure , will be very exciting . I would like to inform you that we have seen an advertisement for the " London Fashion and Laisure Show " and we have found it very interesting . Suddenly I heard a noice from my garden and I wanted to know what it was , but it was impossible to do it . I was affraid that someone was near my house and wanted to get into my house . I was very frethend , but I knew that I had to do something . I was shure there was someone on the other side of the wall . The only thing which really disapointed me was a visit to your theatre where I wanted to see the musical ' over the rainbow ' , after I read the advertisement for the show . The things that really dissapointed me were that you said Danny Brook and Tina Truelove were the actors but they were n't , different actors played and to be honest they made the whole show very bad . To be honest that was not a great expierence and I hope you will see my point . Since everyone can afford modern technology everyone 's life in the more developed countries has changed completly . So in the last century our daily life has changed dramandesly and we have become lazy and our life unpersonal , fast and unromantic . Your advertisement mentioned that the famous Danny Brook would play in this show but disappointingly it was another , unkown actor who starred instead of him . All those innacuracies spoilt what should have been a memoriable evening so I would like to be refunded at least for the price of my ticket . He did it some more times , and in the end nobody took any notice of the shoutings . You are working with your ideal woman , I still ca n't belive that I spoke with her . At first I could n't belive that I was a winer My school starsts in September and it finishes in June . If I could go in July that would be greate . I would like to ask you , what sort of clothes should I take with me ? I do n't want to take too much ; jeans , jumper , swimming costium , T - shirt , sports shoes I think should be O.K. At first I was helping to seill the tickets - it was n't difficult . We had to check evey plug , switch , light . I could n't belive how big a lamp can be . fortunetly nothing had happend . Only people who were helping and organizating this concert could meet her . Some of them were speaking with her , I was n't this lucky person , but still I 'm happy , that I could be thear . Log cabins may be more confortable . On the other hand I think that I will be able to " survive " in a tent . I vish you had been here with me . You can not imagine how dissapointed I was with myself . We started to put everthing on the stage and after this we realized that the band was coming onto the stage near us . After all of this we saw the show from the best place , near the stage and afterwards , the thing that I most liked , we were convidated to see the group and got their signatures . I have got a few things to complain about regarding your theart . I deciced to go and visit your theatre restaurant . For example , once people had to walk from one place to another , but now we can use sciene and technology to produce a lot of petrol - powered vehicles and we can travel faster with them . We can also use techlogy to produce more food and help them grow faster . The rules at home are very different . I am allowed to do what I want as long as I studie enough to aprove . It is not allways easy , but there are rules in every home and you have to respect them . I hope you will agree with our suggestion and if you have any further questions do not hesistate to contact me . In addition to this , you may have some roboters bringing the newspaper to the table , tidying up the house , and doing the shopping . Maybe they will also be your life patners . I and my friend Emma helped to paint the scence on the stage . As you know , I like drawing and painting when I have some free time so that is why I chose to paint the scence . Moreover , the restaurant was still under construction so that we could n't use it when we were extlemely hungry . One of the biggist things that have changed is the change in the methods of communication . I have mentioned a few changes above but there 's still the biggist one left , which is related to the field of computers . I refer to your advertisment in the Herald Tribune where you advertised the Circle Theatre and the recent musical : When we arrived at the theatre we realised that there were no discount tickets available as were mentioned in your advertisment so we had to buy the most expensive ones . I am looking forward to your promt reply . Today the fashion industrie has a great importance in the commercial market . There are the natural materials on one side whereas on the other side the fashion industry produces more and more syntetical materials , which relay on the production cost . In 100 years most clothes will be made from syntetical material . The contrast will be especially attractiv . Furthermore the style of the clothes is going to be more crazy and individuell but there will still be enumerous clothes for conservative people . On balance fashion in 100 years time will be confortable and colourful . There will be clothes for everyone 's tast . Our school is really very diciplined , especially about our clothes and behaviour . When I read the advertisement , it said that the restaurand would be open . On behalf of the class I would like to thank you for the excellent programme you have organised , especially the idea of visiting a galery . I grew up through the water world and I could n't live whitout it . I love sports so I would like to play some basketball at the camp . By the way , my team and I won the last scholl championship . I play guard on my team . I also like tennis but I am not very good . I was wondering if you could give me some lessons while I am there . I do not have words to express how happy I am . I would like to thank you and Camp California for this oportunity . Since man became man he has needed to hunt to survive . In ancient times he used spears , bows and arrows , and the wemon 's role was to collect items like vegetables and stuff . Nowadays , in the year 2000 we still practise this ancient art but in a diferent way , we do n't use weapons for hunting animals in the jungle , we use the remote to hunt TV shows , and we do not collect vegetables any more , we go shopping . This activity of shopping has become one of our most important , after all , we go shopping for any reason , we have developed such an instinc for shopping that we can proudly say that we are some sort of kings of the urban jungle . If an activity has stayed with us , mankind , for so long , it must give us some pleasure and maybe that 's why shopping has become such an important thing in our lives because it gives you pleasure when you find what you have been looking for and if you can get it for less than the price marked on it , that is the greatest of extasis . But where is the bad part of it ? Well shopping can became horrible at christmast for example , when houndred of people go to the shopping center and it also can cause many problems when you become an impulsive buyer . Shopping is not always enjouable because of several factorors . One could be when you go into a shop and you find something that you like , and you decide to buy it , but when you see the price , you find out that it 's too expencive , and you can not afford to buy it . This cituation is very annoying for most people , and that 's what makes shopping unejoyable . Why do n't we include some sports , for example , voleyball ? Furthermore , it 's a worthful experience for people who want to know about other countries ' arts . Finally , with regard to tickets , it is a really wonderful idea because it is more combinient to enjoy the festival for one day among a lot of people . One day , when the old man went into the bambo bush , he found some bambo gritted white . He had never seen such bambo before but decided to cut it down . THE KIND OF ACCOMODATION I PREFER IS A TENT BECAUSE AT SOMMER CAMP I FIND IT MORE INTERESTING SLEEPING OUTSIDE UNDER THE SKY WHEN THE WEATHER IS NICE AND WARM . IM QUITE GOOD AT PLAYING BASKETBALL BECAUSE I USED TO PLAY FOR ABOUT FIVE YEARS AT SCHOOL . WE USED TO HAVE TRAINING SESSIONS TWICE A WEEK AND AT LEAST TWO GAMES A MONTH AGAINST ANOTHER SCHOOL , WHICH WAS GREAT . PAINTING ALWAYS DID FASCINATE ME , EVEN THOUGH I'M NOT SO GOOD AT IT , BUT MY FRIENDS SAY I CAN REALLY PAINT AND THEY LOVE THE THINGS I DO . THE TECHNIK I LIKE THE MOST IS WATERCOLORS . DO YOU REALLY WANT TO KNOW ABOUT MY EXPIERENCE HELPING AT THE POP CONCERT IN OUR TOWN ? The reason I 'm writting this letter to you is that during my stay in London I felt very disappointed about your theatre . After all the inconvenients that made me feel really mad . I think I can only forgive your theatre if you give me a refund of the money I spent there , and some more for all the problems I had . As you already know , I am trying to become a professional photographer , consequently I would choose photograpy as the first activity and painting as the second . However , I would like to know if by any chance the photograpy activities are only for beginners . Actualy most people work hard to earn their money and consequently , the occasion on which this money is spent to buy something useful , or simply something they like , should be considered a very pleasant occasion . In fact , the shopping you do for your daily needs is seldom enjouble , as it is clearly more a duty than a pleasure and morover you are often faced with some nasty situations . First of all , when I paid my entrance fee they did n't acept my discount ticket , they told me that the ticket was fake , then I entered the theatre and I had to wait 45 minutes . The show was suposed to start at 19:30 and it started at 20:15 , " this shows a lack of respect " . Manager , I spect that you have considered my bad experience at your theatre , so I 'm asking you for my money back , because it was a very bad evening . It all started when Pat , Nick 's best friend , wanted to have the party at his house . Most of the class disagreed with that because the Pat 's house is extremly little , they started to say to him that his house was like a box . Pat got very angree and sad . At first Nick got angree but then he forgave him because they were friends and each of them could trust in the other . Nick told the situation to the class and ofered his house for the party , because it was very big , with large gardens and a big swimming pool . To begin with the wchool rules , we have in fact some important ones . Since I have studied photography for several years , I would like to take some pictures of beautiful scenaries in California . I had to pay the full price for them , which was quite expencive . It turned out to be impossible : the restaurant was closed and we did n't even receive an explaination . The developpement of portable communication systems , such as mobile phones , has greatly changed our way of life . It is now possible to talk to a friend almost everywhere and anytime , even if we are two thousand kilometers away from each other . Precision industry has changed my life a lot too . I go Scuba Diving during the weekends and hollydays . I would like to travel in July because I have to go back to my country in Auguest . How can shopping be enjoyable in thoese situation ! I belived everything she told me . I was surprised that he belived me . Yours sincerelly , They are human beings and they need to keep a little bit of pirvacity and freedom in their lives to continue like normal people , to feel that they are unknown and anonymus and they do not have to wear sunglasses , hats or caps every time they want to leave home in order not to be recognised . Furthermore , you asked me to choise two activities I would like to do . And now for them shopping can be considerated like a contrariety . It is quite obvious that celebreties ca n't lead a normal life , as they are constantly followed by reporters , which makes their life miserable . I am thinking here particularly of the fact that every event and action is wildely discussed in the mass - media . Last of all , it says in your advertisement that there is a theatre restaurant open after the show but it turned out to be closed because it was being redecorated and no annocement was made . Therefore I would like are refund of my ticket and I would like an apolygists . Yours Sincelery , What do you think modles will wear on the catwalks ? In my opinion , clothes will be a lot differente in 100 years ' time . For the accomodation at Camp California , I would prefer to have a log cabin because I think it is more comfortable than a tent , and in case there is a big storm with heavy rain . A log cabin 's more resistant than a tent . For the activities , I chose climbing because I took a cours for 2 weeks last year and now I have a good level of proficiency . For the other one I chose photography but I am not a proffesional , I just take some pictures on my holiday ! Next weekend I have a date with one of them , but I wo n't tell you the name because you 'll feel jalous ! I would like to do photografy and swimming . I love to take photos but I do n't have any techinique . Of course it is good to buy things for ourselves , like clothes , jewelery , anything . When you buy something you were looking for a long time and , when you arrive at home , you discover some deffect on it and have to go back to the store to complain . Secondly , I would like to choose a tent for accommodation , because I have never spent time in a tent , that 's why , I think it is a good oppotunity for me . I have planty of experience and knowledge of both aspect of part . I would be greatfull if you could inform me . My jobs were collecting tickets , saling goods and refreshments , guiding people to the right seat and cleaning up the concert hall after the concert finished . What I particularly liked about the experience was the concert was achived through our support . I really recomend you to help them , I think this is a good oppotunity and I want you to understand my feeling well . I want to know your openion . On the other hand , their stories always make them embarras because most of the journalists create their own story based on the true story just to get the people 's attention . All of them were schoked by what they heard . She became very shy and engry . She could n't talk with people and she was just very sad . I want to tell you that I am very dissapointed about the play . In the advirtisement it said that Danny Brook was in the starring role . And also it should have started at 19.30 , as I saw in the advirtisement , but it started at 20.15 ! And so far there were n't any discounts available which were said to be " available " in the advirtisement . You should have written it in the advirtisement . Absolutely it was very dissapointing I hope you understand and will correct your mistakes in the next advirtisement and send me my money soon ! Today 5 out of every 10 pupils can use a computer basicly . It is really enjable when I chat with people . Techology is also important in another area for me . But some naughty students in my class were throwing paper aeroplanes when the teacher was writting something on the board . Unfortunatelly I have to complain about the musical show put on in your Circle Theatre last night . When I received your advertisment concerning the show " Over the Rainbow " I thought that I 'd have a great evening , but unfortunatelly it was a big disappointment for me . First of all , Danny Brook - the main actor in this musical - was abbsend . You also offered discounts - whot kind of discounts ? Becouse the show was very long , we were getting hungry but of course your theatre restaurant was closed because of the holiday . I had not any money for travelling and my parents were going to give me some only if I had concret plans . After one mounth , I went back home and told my parents what a lot of fun I had with my friends - I do n't know why I was such a liar . My parents belived my story untill my younger brother Pat told them the truth . Now my parents do n't belive my story . I hope you will not feel offensed , but I really need to complain about your theater . You can believe I was very disappointed when I saw that he actually was not performing and I was more bewildered that no one made an apologie for it ! Although , I would have felt better if I had had a discount on my ticket , as you mentionned in the advertisement , but unfortunately , these could n't possibly be given either ! If more and more ingenors work in science and technology , it must be because it is really usefull : but in what particular way ? I would like to travel at the beginning of the month , which could be between the first and the fifteeth of July , because afterwards I have several business meetings and it would be difficult for me to take a trip . Although I like camping and sharing with different kinds of people , I 'd prefer a confortable and private place ( if it 's possible ) where I can sleep , or be quiet .. I am not a teenager ! I was running the whole show . My responsability was to dress her . I relly liked the exhibitions . The band " Three Kings " apresented a new stily of music . I would like to notice that the dance show was absolutelly marvelous . What a greit idea to invite writers ! I relly liked talking with them . You wrote an advertisment saying that people from more than 15 different countries were going to visit this concert , but there were artists from only 6 countries . It was relly a pity because I expected to see artists from France and Italy . The International Arts Festival was organised quite well . I would only recomended you have more artists and the classical concert should be in a bigger hall . They were so poor that somitimes they hardly had anything to eat . She persuide him to go to the sea to ask for a lot of things for her . Also , the e - mail system is really hepful . Circle Theater Finally we had the worst evening I have ever imagined , it was definitely not the " perfect evening " as written in the adverstiment . Syntethic materials have developed and become very popular so they would keep going . I guess they will wear a sort of tunique over a shirt and a skirt , or more masculine clothes because they want to change . About the accomodation , I would prefer a tent because I enjoy the contact with nature as well as camping activities . In conclusion , like all things in life , shopping can be pleasent or irritating depending on your patience and on your mood that day . It gives us knowledge usefull for many school clubs , like the " marathon shell " club or the robotich club . Besides it gives all the areas covered by a mechanical engineer and it is very important in a school where you will probably become a mechanical engineer . It lets us identify our abilities and the part of mecanics that we prefer . Our engineering school is specealized in mecanics and thermodynamics . First , we could film the fluid mecanics lessons and the general mecanics lessons . I wonder if we could not feet between some short view of the laboratories , in which we could show a student doing experimentations . Futur students could appreciate coming if they could still do their sport . Another point to record woubl be the time we have got between lessons or at lunch time . It will show a part of the way of life in the school . If possible , the type of accomodation I prefer is a tent . I will be very glad to partecipate in your camp ! Yours faightfully The show 's date is very convinient - March 14 - , and it is on in the Central Exhibition Hall so I do not think it would be a problem to get there . Although this statement is absuletely true , it seems there is no way to stop public attention , so they will have to keep living with journalists . My name is Marcia Fomalar , I am writting to let you know how disappointed I felt when I went to the musical at the London theatre . I went to buy a ticket and as I like to enjoy the show near the stage I bought a £ 20 tiket but when I asked for a discount they told me , " I am sorry but there was an error in the advertisement . It will be impossible to give you a discount " . At 19:15 I was very impatient , waiting for the show to begin , and a man anounced that the show would start at 20:15 . Finaly the show started and to my sorprise my favourite actor Danny Brooke had been replaced by another actor . Pat sent a fax to my house with the different alternatives she had thought of but unfortunately my grandmother was there and she saw the paper so the sorprise was ruined . The other activity that I chose is painting . I am not as good as I want , nevertheless I think I can inprove my skills during this course . I would like to know how the weather is in California during the summer so I can bring with me the appropiate clothes and the last thing I need to know is the amount of money that I have to bring with me . To make this report easier and faster , it was necessary to make a questionarie which was given out in the school . However , 15% thougth that it was not a good idea because it would be boring to see other people enjoying themselves and they mentioned it as not really important . As you can see , my clasemates and almost everybody in the school are happy with the facilities and activities that we have . A few weeks ago , my family and I had a hoilday in London . The hoilday was n't too good ! During the week we descide where we wanted to go . We all agreed to listen to music so then we descide to go to your musical show and listen to " Over the Rainbow " . That evening we did n't want to have our supper before the show . Anyway I thought it would be too early to eat and also because the timetable or canidates you give me have say : " visit our theatre restaurant after the show " . So we did , but unforturnily it was closed and I was so dissapointed about it , not only because we had expected Danny Brook and Tina Truelove to be the actor of starring . We do n't expect much bad to happen on our hoilday , but this was a perfectic show as well , it was the worst show and theatre I have ever been to in my life . sincinerly Ki To help us to live happily , sciencetist can easily perdict the changes on earth , so that we can have time to perpare or defend ourselves from natural diseasters . Wapons are designed to kill and defend in a fight . In the Second World War so many Germans were killed . Also many people died in other regions , Posin chemical compounds , e.g. gases and liquids , are created too . They have been used to kill people . Most of them produce radiration , which can disable a person , mostly harming their brain and their bodies , and it can also cause death . Communication techology , e.g. internet ( networks ) and moible phones . In wars soilors communicate with moible phones though places to place to get or give information about themselves and the enarmys . By using the Internet we can make new pen friends overseas , and creat clubs and sociatys . Now a megsage can travel quicker and it is also worldwide . sending letters takes about a week from Hong Kong to the U.K. , but network , e.g. Modern technology saves us a lot of time and brings us many benifects when we use it in the right way , but some bad way to e.g. send virse to break down network . Unfortunately , Pat was n't very good at keeping secrets and this was the reason why the party was n't as succesful as we thought . We decided to go to his place ( I 've got a copy of the key ) the evening before his birthday while he was at work and decorate the lounch , then turn off the lights and wait for him in silence until he arrived . With reference to our trip to London , on behalf of all of us , the English class in this college , we would like to thank you for your special atention in organising a good programme to learn about the interesting and cultural places in London . We have been very excited about this and coincidentely we have found another option to add to our programme , certainly if you agree with it . We thought that The London Fashion and Leisure Show would be a great opportunity to give us more information about the main transformations nowdays in England concerning fashion , leisure , sports and lifestyle . It was dangerous , but I kew I had to do it . I was at home putting my makeup on before going to a restaurant with my friends and , sudenlly , he rang the bell . He was so tense with a gun in his hands and I could no longer speak . He took me out with him . I had tried to think about stopping him , but he was stronger than me and he had used all his power to scare me and he forced me to buy cocain using my cheques . I am writing to make some complaints about the musical show " Over the Rainbow " , of wich you are the manager . Although it was written in the show 's addvertisement that the main actor was Danny Brook , it , unfortunately , was not him . It was also written in the show 's addvertisement that there would be discounts available on the tickets . Even though the addvertisement said we should visit it after the show , it was closed and no explanations were given . In conclusion , the addvertisement promised this would be a perfect evening out , but it was not , so I would like to ask for my money back . One day , I inocently told Pat that I was dating Philip Smythe , the school 's hunk and most popular boy . Suddenly , an enourmous saddness caught me , because Philip had begged me not to tell anyone , so he would definately break up with me , and I knew I was going to stop talking to Pat , because she had just ruined my happiness and I could n't trust her anymore . One day , while I was studying maths , one of my friends , called Pat , asked me to have a coffe with her . The problem started when I confesed to her that I had fallen in love with Larry , who was my cousin 's boyfriend . Surprizingly there was a completely different actor starring . Unfortunatly the restaurant was closed . He is only looking for the biggest fishes and he has been unsuccesfull for 86 days . Little by little we were growing up and becaming close friends . I relyied on her and our relationship was excellent . It is my only favorite hobby . To reply to your question , it was realy a nice experience . As you know , I like pop music so much and the singer was one of my favorite singers . I would be most greatful if you could let me have some information : - Are there leisure and intertainments facilities close to the camp ? I am really surprised for the information because I won , and I would like to say thank you for everyting . This is why I wrote and sent this letter with the information you need I can only travel in July because it is the only time when I can do it before for my work I do not really care what accommodation I will have . I would prefer to come in July I will be avaliabel for the moment . I would really apreciated it if you could tell the people who work at Camp California I choose the Golf and Photography because I think I am really interested in those subjects . I am not really really good but I have some experience . I think that is everyting I would like to know . I want to apologise to you , because I haven't written to you recently , but I want to tell you what hapend to me last week . I had the opportunity to help at one of the most pop concerts in my city . So imagen , I felt really really good and excited . I do n't have words to describe it but I will try to do it , OK ? What 's more , your letter said about the chance to do two acctivities during the camp . I have even won a competion once . I would like to know if the , , travel costs '' which you had paid include entrance tickets to the museums or any other cultural places , because I would like to do some sightseeing in the U.S.A. Furthermore , if there will be cmy tumple dryer or washing maschine to clean our clothes and if there will be a guide who will be responsible for us and the camp . When discribing the advantages , we should remember that most people like doing shopping . Very often people go to a shop - usually a big departament store and buy things which they do not need . From my point of view it depands on us whether shopping will be enjoyable or not . My name is Manu Roddos and I am writing to complain about some things that happened at the performance of the show Over the Rainbow , wich took place in your stablishment , The Circle Theater , which made me feel very upset . I was very excited to see it yesterday , but as soon as I arrived at the theater the problems began . Yours Sincerelly , Firstly , the great boom in mass comunication wich happened at the beginning of our decade , with the devellopment of telephones , radio stations , television and even satelites , and of course , the Internet , gave ordinary people the chance to take off on a trip all over the world , and this allowed health and education research to increase as well . In addition to that , people will always be affraid of a technological war . In conclusion , from my point of view , people must learn that despite technology being such a new area to explore , we have to use it with a great deal of responsability for us all to survive in the future . And is there anything eles I have to take with me ? Yes , it is true . This is only because nowadays people have more money than ever before , and some women do n't earn money . They have no idea how diffcult it is to earn money . It would be wonderful to buy some books or programms with the signatures of all the stars and artists taking part in the festival . I hope this letter will help you with organying the festival . Every puple has to sit alone . ( I mean that one desk is given to one person . ) 2 . One should have such marks as , , 3 " , , , 4 " , , , 5 " , not , , 2 " , which is eaqual to fail . We do n't have old - traditioned rules or anything like that . First of all , it would be a good thing to say that July would be the best time to travel because it is the hottest mounth in the year , and the weather will be really nice . Despite my lack of expereance in climbing I do want to try this type of sport . The aim of this report is to suggest wich lessons and other activities should be filmed . I have enterwed each student from my English class . Fistly , the English lessons must be filmed as the most interesting lessons at our school because it will give students an interest in studying and improving their noleges . It contributes to the world 's treasure house of literature and arouses an irresistable fascination . We should n't disregard and neglect to film the buildings and the gardens of our beautiful college , especially if we take into consideration the fact that it is in the city of Shakespear . Also , painting is one of my favorite things ! Anyway , I really enjoyed helpying at a pop concert last month so that I 'd like to write about it ! Anyway , by the time we finished everything , thusands of funs came into this concert hall . I 'm writting to you with reference to the letter I have received from you saying I have won your competition . Well , as you ask , I will tell you I would like to travel as soon as July begins , I 'm going to be able only to travel in that month because of my job responsabilities . Regarding the choice of tents or log cabins , I think I will turn to the first one because I have always loved camping close to nature , if possible , in front of a lake or a river , if your campsite has one , so that I will be able to do my favorite and skillful hobby : sailing . I would like to travel only in July , because I have only one month 's holliday this year . It is not too confortable , but that is not a problem for me . I like this kind of holliday . I never had met pop stars before and I was very impresed , but I was too happy to show my shyness . I stayed with him until the concert began and after the show I had the opportunity to stay in his private room with him and the other dansers . So , unfortunately , I must say that last night was one of the worst nights I ever had , and having given the reasons , I expect to be able to count on your sense of responsability , so , I feel that I must ask for my 20 pounds I spent on that terrible night . Also , with today 's machines , factories have significantly increased their production , which brings progress to humanity , but also , with the continous replacement of men by machines , unemployment is increasing too , and today , it worries every single citizen of the world , specially the ones who live in third world countries . It would be a fun experiance ! Women , in perticular , have the annoying habit of always having to touch everything they see . This was the best thing that had ever happend to the Fennall family for yeats . Which was very chooking for her mother . SINCE I HAVE A CHOICE OF ACCOMODATION , I'LL DEFINETELLY GO FOR THE LOG CABIN , BECAUSE I CAN'T BEAR THE HEAT INSIDE A TENT . I WOULD LIKE TO ASK YOU ABOUT THE WEATHER CONDITIONS , SO I CAN DECIDE ON WHAT CLOTHES TO TAKE , AND ABOUT COSTS , SO I CAN MAKE A BUDJET FOR THE HOLIDAY . AFTER THE STAGE WAS BUILT , THE REST OF THE THINGS I HAD TO DO WERE QUITE EASY AND ENJOYABLE ; I COULD STAY EITHER BEHIND OR IN FRONT OF THE STAGE AND GIVE A HAND IF NEEDED . I REALLY ENJOYED IT BECAUSE I LEARNT A LOT OF TECNICAL THINGS I DIDN'T KNOW ; AND WHAT I ALSO ENJOYED WAS THE GOOD PAY ! I 'm writting to you to complain about a play I have seen , called : " Over the rainbow " . It was clear that Pat had to change and show his friends that they could believe in him thrutly . For those next few days , Pat would do his best to be as sympathic as possible . To begin with , every morning Pat said a pleasant " hello " and added to that a big smail . His mother always says : " If you are smailing and are nice to people , poeple will be nice and will smail at you " . I would preffer to travel in July . I have only this time , because my summer holidays are during these days . A cabin reminds me too much of my home and is too confortable . That is n't what I want to have if I stay in a wild area . I was able to ask anybody , and he answered in detail , althoug he had a lot of work . I 'm writing to you followwing our visitting to your theatre last night . And I would like to know if it is posible to have our money back . And if someone elso knew , I would n't be able to go back to heaven unless I killed the person who told my secret . And I would like to go in the first part of this month , the socond part I spend with my familly . While I will be at the Camp I would like sailing , because it is my favorite sport . Yours faitfully In my opininion this book ' The Old Man and the sea ' is the best book which Ernest Hemingway wrote . Thise book is about a man who knows that he will die soon , he knows that he did n't make his dream come tru . So he decidet to go for a last trip in his life . He needs to rest , but he does n't geve up . In the end he makes his drems come tru , he catches a vast Marlin . In thise book Hemingway is trying to tell us , that if we want something , we can get it , it might be deficult and take a long time but we can do it . Sometimes they geve up , befor they get something , I read the advertisement and I thought it was going to be a plesent evening . From the beggining it was all a disappointment . When I went to buy the ticket I tried to get a discount with my student card , but that was not posible . I let this pass and I bought it anyway , thinking that it was posible that this was only a mistake in your advertisement . But the play started fourty - five minutes late , and the star of the show , of whom I 'm a great fan an who was the main reason for why I decided to see the play , had been changed for another actor , who turned out to be really bad . I think you realise why I 'm writting this letter to ask you to give me my money back . All the things that were promised in your advertisement were untrue , and it was definitly NOT the perfect evening out . Specting that you will resolve this misunderstanding . There 's no doubt that modern tecnology has changed our lives , but how ? I think that some of the changes have been very good , like the impruvement in medical science , which now can save millions of people that one hundred years ago were doomed to die or to live miserable lives . It has changed the ways people comunicate . But tecnology has not only changed our lives in a good way , giving us things that can make our lives more confortable , it has also created things that are n't bad , but if they are in the hands of the wrong people they can destroy the world . Weapons and factories are destroing our planet and we need to realise that we have to use tecnology to impruve our lives , while always triying to respect nature . Regarding the accommodation , I would prefer to stay in tents rather than log carbins because I have a lot of experience of putting up my own tents . I like to go window shopping that is good to go arround the shopping centre . Then I can say I definatly do n't feel it is enjoyable . - Accomodation : a log cabin would be nice for me to stay in when I am in California . Before we can give our opinions on this statemant we have to make sure that everyone knows what we are discussing . We do not speak here about luxuary goods . But if you realize how important what you buy is for your health you will go shopping with a far greater consiousness and more joy than before . ' How incredable it is ! I love swimming and also I 've got a scubar diving licence . I used to enjoy floting on the water whenever I was on holiday . Singing is the most favarite hobby for us . I 'd like to know how much monery , and how many clothes we need . Of couse , the shopkeepers are human beings as well . But for their considerations , they 're working in their rutines . I sometimes lose my desire to buy a thing because of their bad behaviers . For example , for our jobs , supecial ceremonies , and so on . Your advertisement also failed to mention the fact that there were no discounts whatsoever and , finally , because of a shortage of staf , your restaurant was not open . I asked myself how I could be so stupied , telling her my secret after all I had been going through to keep it to myself . Now I did n't need to go around worring about it anymore . I decieded to thank Pat , and maybe , if possible , teach her a lession . I pretended to be totaly miserable . Pat did n't know what to do . She apoligised over and over again and I could really see that she was more than devestated . After hugging eatch other we promised never to tell others about our secrets . However , it was deleied and it started at 20.15 . The theatre restaurant was closed after the show , they said funds had runn out . Those are totally unexpectable so I would like to get paid for my ticket cost . I ask you to transfor money into this account . Think about the conputer , the speed of conputer is much faster than before . Nowdays , technology keeps developing and better technology gives us an easier life . In the hopeness that you understand me . Unfortunely , Pat was n't very good at keeping secrets . At first , when he had a girlfriend , they talked to each other franckly . But after they seperated , he told his friends her secrets without thinking . It is like one of his bad habbits . It was a very unpleasent evening . The restaurant should have been oppened when I came out , but it was closed because of the time the show finished . After breakfeast I have to use my car to get to school . Without technology I would get realy bored . I would be very grateful to recieve answers to my questions . Boy , he 's really really handsom ! Secondly , the show was meant to begin at 19.30 pm , actually it began at 20.15 pm and that was without giving any explainations ! Another thing that has changed my daily life is the mobil phone . Sometimes the ring is annoying but , finally , the mobil phone is a great , handy object . About the acommodation , from the two options , I choose to sleep in a tent , because I think that a log cabin is n't as authentic as a tent , at the camp . I would be greatful if you could send me further information about details like how much money or what kind of clothes I 'll have to take with me . You know that I 'm a little bit lazy , but the main reason for not writting to you has been the accummulation of exams during this month . There I was impressed by how a singer can cause such histerism in teenagers . During the two - hour concert we had to attend to thirty - six people who became inconscious after being trapped in the first row by the other people . Answering the second question , I would prefer my accomodation to be in log cabins . And when it finaly started , it was n't Danny Brook who performed . After the show I wanted to drink somthing in your theatre restaurant but when I arrived it was closed because the show started too late ! So I ask you sincearly for my money back becaus it was n't a perfect evening out . I told her that my parents are getting divorsed and that I will move to Chicago with my mother . One day , Pat and I were going home , when she asked me if I would give a party befor I go . I had to tell her that I did n't have the time to organise anything becaus we , my mother and I , had to get our stuff ready to move . But when we got into the hous ther were all my friends ! We had a great evening becaus Pat was n't very good at keeping secrets ! I am writting to give the information you asked me for and also I would like to request some information about the prize . Furthermore I would like to choose to stay in a tent instead of a cabin because I think it could be more exciting and could provide more contact with the enveiroment . He had a puncture and he did n't know how to repeared it . Then I changed the tyre and during this time he was asking me about my hobbies , studies , everything . I am writting to you in order to give you some details you asked me for in your letter . The job was hard , but , from my point of view , it was worthful . The most exhiting thing was when we removed all the stuff the day after the concert , and we went to the Highlands to spend the whole day there . That was fantactic ! If you have never been there , I really recemmend you to go . But we decided to buy a picture , because she had always told us about art galleries with great exitement . Yours sinecerely Despite the fact that going to school by bus was easier than going by bycyle , I had preferred going to school by bycyle to going by bus . When I went to see her play , I realy would love to be an actress . It was my dream . I wish my dady Aspecially in the summer when the tempereture and humidity are very high . From the list of all the activities I have choosen photography and golf . I have choosen golf because I have never played this game . My friend offered me a job as a member of the techical staff at Sting 's concert . We 've built it using ready metal and wodden parts . I was working with a specialist who had to connect all the lights together to one computer and prepare a colorful show . It was a totally new experience for me and a real pleasure working with professionalists . For me - the dance shows were absolutelly wonderful . I prefere them to others . We chose some of them and we were glad that we had our reasonably priced ticket for all the evants because we could change our plans during the evant . Most studenst wear jeans and a sweater . Next year , you should calulate or examine how many people will come before you choose a hall , which I feel very good was plays and films . And the offer of a " weedend ticket " was an excellent idea . Because the price was cheaper than buying it sperate and more convience . Yours Sinicerely , Finally , food shops should be added to this festival next year because only plays and films were not atrractive enought to get audiences . Yours sencirely , However , I can go out wheneve I want , even at midnight . Secoundly , boys are not allowed to have long hair . I feel that they would be fabulos places with a western design . Another disadvatage of the festival 's programme was the lack of plays and films which are the best to display a modern country 's culture , I think . In conclusuon , I would like to say that in spite of the success of the festival some improvements still can be made . Fortunatelly , there are many ways to earn some money nowadays . In addition to baby - sitting , you may also give some lessons to small children such as ( tl ) teaching them to read or write or just basic rules and words of a foreign language , Eglish , for example . But if you do n't like children and are not easy - going enough to work as a waiter you may choose the more pieceful job of a typist at home . So , you can help them and earn quiete enough . Moreover , men prefer to do sports , because shopping wastes a lot of time , which is controry to the tastes of women , because if they have any free time , they will go shopping . Finally , I would be interested in meeting artists from everywhere in the world not only Europeen artists . In conclusion , I had an unforgetable time . The restaurant was closed because there was n't any electricity . You should close the theatre untill the restaurant can be used . I was totaly unsatisfied with the theatre and I would like to have my money back if that 's possible . I 'm quite sure that people all around the world will be wearing very different clothes in the future because people , especialy women , who like to be very elegant and beautiful , will create and invent all kinds of clothes to anybody and that 's it . You ca n't be carefull because you do n't know what time it will happen . But you can be carefull when you speak with he or she who is stealing your things . I am writing this as a reply to your request to provide you with some information about my preferencies . I am not so keen about the accomotation but would rather stay in tents than cabins . We live near the seashore and swimming is the sports activitie I am really good at . Somitimes I feel very sorry for her . Lots of families plan a day out to go to a shopping center , and it is a normal routine for them - to spend all day just shopping . I would like the trip to start in July if possible . Because this is my Hoilday start at the Camp California , I would like my accommodation in a tent , because I work in the Army and on the camp I usually stay in a tent at night , so I will feel more comfortable . Regarding the activities I would like to choose Swimming and climbing for my activities at the camp ; I usually do these two activities on the Army Camp . I know how to climb up on Rachiat outside and help other people to climp up . To make a daily life video in school , we should concentrat on the things we do most in a school . The thing we do most in a school is have lessons . It will be a very useful part of this video and should be the main subject . At the end of the video , we should find one or two studen sit together and ask them a few questions about how they feel about studying at the school ? This is the suggestion to making a daily life video in school . It would be greatful . And we could n't wear any colorful clothes and socks . I 'm pursuading my mum , perhaps . I am writing in response to your advertisment in today 's newspaper . In addition to this , I was wondering if you could organize the same festival in the sommer . Unfortuneatly , Daniela fainted . This story happend a long time ago . Now Pat realized what was going on and could undstand why her boyfriend got so nervous about the secret . Nevertheless , I lost my concerntration on my studies and I spent the money on entertainment . I will never ever help anybody to organice a pop concert again . But after this serville work I met Eminem . As regards painting , I know a lot about it since my grandmother taugh me when I was five years old . She also told me that she has some conections with the people in charge of the lights at the concert . Since I am going to travel I would like to know how much money it would be adviseable to take and what kind of clothing I should take . Or approximately how much money would be enough to buy surveniers because this will be the first time for me visiting Carifolnia . Finaly , I must choose travelling there in July because I am not allowed to take holidays in other months due to my work . However , things which you can get with money do not necessarily fill your unsatisfaction or even as you buy something more and more , your emptiness might be greater . And shopping is also a difficult hobby to go along with your friends or your pertners . On the whole , shopping can be harmful rather than enjoyable because you migh be extravacant , lose your friends and have what you do n't need . We think we could change the shooping to go to the show . To sum up , there is no perfect job , and being famous involves a lof of money , but also a lot of jouralists following your private life . All the group would enjoy going to the show , because it is a great oportunity to see an exhibition of the latest fashions . For example , we ca n't go to the toliet during lessons . We have to go there in the break . It 's too strickt . I do n't like it . My name is Sandre Atos , I am writting to you because last weekend I went to the theatre you manage , to see what was called " London 's newest and best musical show " . That 's why I am writting to ask for some money back ; I believe I have this right . Unfortunatly my parents did not realize how TV was creating a role among us . On the other hand , due to scientific developments , I am getting better , recovering from ahsma . I had a very dissappointing evining last Saturday . I had everythig planned ; my family and I were coming to whatch your show and then have a decent meal at your theatre restaurant but it was disasterous . Then everything was going well untill the show did n't start ! That was a dissapointment for my whole family . In fact all the audience were very dissappointed . Anyway the show was nowhere near as good as it was meant to be and it was definately worse than I had expected it to be . I did n't enjoy it at all so I was relying on the food to fill me up and relieve some of my stress . So as soon as the show was over we walked out and followed all the signs for about 5 minutes , desparately searching for your restaurant , our stomachs rumbling for food . What kind of an organasation do you call this , sir / madam ? You do n't understand how dissappointed and angry I was that night . In fact he was one of the principal busybodies of his neighborhood and his school so not a lot of people in his school liked him . Some were just friendship groups but others took it seriously , maby just a bit too seriously . They gave themselves names and acted like gangs rather than just groups of friends , and started picking on younger people , or mempers of other gangs , trying to start fights with them . This whent on and on , got more and more serious , but it was so secret that the teachers did n't notice . Everyone in the year was anoyed , but not with Pat , oh , no ! exept a few phcyco groups . Some of the more serious ones decided to raid this party , just for the fun and meanness of it . Everyone was enjoying themselves exept Pat , who had heard about the raid . The time had come . The who groups had comdined their forces and were ready to strike . Lots of People wher injured and even more were suspended the next day at school , when the Headmaster found out what had happened . Pat recieved no punishment at all and he was n't blamed for anything by his teachers or friends . But he felt awfull because he knew that all this had happened because of him . Do you like do - it - yourself and is your house full of marvellous but unuseful things ? You could sell them to a specialised shop and finally tidy up your room ! I am writing in response to the International Arsts Festival , which took place on 21 - 22 November . I would like to inform you that it was a great idea and a valuable activitie as a social event . However , it was a dissapointment when I realised that not many countries were attending the event . I would have liked to have seen more countries from all around the world , for instance , the Far East , Indonesia etc . On the other hand , I enjoyed being one of the people seeing the plays films , the dance shows which were brillantly performed and the art exbitions . Finally , I preciate your organisation and look forward to hearing about the next International Arts Festival . What a pitty ! Privat schools have a more relaxed atmosphere than the state schools . Of course smoking is n't allowed in any part of the schol . Apart from that I would n't mind at all whether I stay in tents or log cabins but if I have to choose between these two I 'd prefer to stay in tents because they give me a nice feeling of relaxation . It is very unusal to stay in log cabins while you are camping . Photography is a very interesting activitie , and is not too hard to do either . Worst of all , at the end of the Musical , I went to your Theatre Restaurant , in order to have dinner , because I had leaft home without eating and so I was hungry at that time . First of all , modern technology has changed my daily life in the last five years more quickly than in anchient times , or even than a decade ago . Nowadays , I ca n't go one day without consulting computer communications via e - mail or the Internet . I exchange corespondecies with all my family via the Internet , with my mother and 2 brothers who live in Curitilra City and also with a brother who lives in Italy and another who is living in New Zealand . It 's written in the regulament that we ca n't leave the school during the breaks ; we ca n't smoke near the classrooms ; we have to justify our absences or lateness and even if you 're over eighteen your parents have to justify you with the teacher . Regarding accomodation I would prefer sleeping in a tent because I enjoy the closeness to nature while camping a lot . I sort of felt like I had done my part to make the concert a sucess . The show is going to be on Tuesday the 14 of March from 10.00 to 19.00 and we fained it very interesting , because we will have the opportunity to see mews , firstly about the latest fashions , secondly concerning leisure and sports wear and finally about make - up and hairstyles . Thank you very mutch ! Most of the time they have journalists following them everywhere , looking for a great story or interesting pictures to put on the front page of the newspaper , and I do n't think this is very nice , but it is the price that famous people have to pay , just becouse they are popular . Anyway , this is not always necessarily a problem , but it can be a big thing for the famous person , becouse it gets people talking about him and increases his popularity . In conclusion , I can say that this is not the biggest problem that the world has and -- it is not my problem becouse I am not famous ! Concidently the show is in London and on Tuesday March 14 , which is during the period we are in London for the three - day programme . However , journalists should not only think about commercial value , because morality and priciples are also concerned . I remember in August 1997 Princess Diana dying in the car crash was one of the most disarster examples . Although we can not deny it is our nature - we are curious - we can improve our sence of morality and try to think about the importance of privacy for them . Basle , 12th Decembre 2000 In your letter , you asked me wheter the book I 've read would be a suitable present for your cousin 's fifteenth birthday . You wrote that your cousin is quite intered in magic , detectives and sport , did n't you ? I think this is the best choice for him ! As you know , we are in England to learn your language and also to learn about your lifestyle , and we thought this show would be a good opportunity for us to discorve this aspect of your country ! Thank you for your letter , as usual , it 's a pleisure to receive news from you . It 's a fantastique book , which I recommend to everybody keen on love stories . It 's a perfect combinaison of passion and life 's difficulties . I recone that it 's not an easy read , but as you described your cousin , I think she really will enjoy it , she 's so good at litteracy that it wo n't be a problem for her . I really think you should choose this one for her , it does go with her personnality . It 'll be a good point for her general education . Wuthering Heights is a classic , which everybody knows about , even if they haven't read it , they at liest know the story . How has morden technology changed my life ? A computer is extrrmely helpful with writing reports and essays . But also I am not able to imagine my life without this nice way of reciving news with help of it . I would be very greatful if you could let us go to the show . Furthermore , addmission is free for students . Unfortunately , our programm is fixed but I think we could change part of the programme . Firstly , most people can remember the sad story of " Princess Diana " . She died in Paris a few years ago while she was escaping from lots of journalists called " Paparach " . However , secondly , famous people are not " ailen " so they might do something , for example , ashame things in a public space , or argue with a partner or family , even put on a swimming costume like us . So they can be just ordinaly people like us . Overall , people should think about what it would be like if we were famous people ... and then we can find the answer that all people , including famous people , need a private life and would like to have an ordinaly life . They were eagar to have a child , but they had never been able to . About when I would like to travel , I think that my answer will be easy for you , because I have two months off , those are July and August , so my trip should be in between . Regarding my accomodation I would like to stay in a tent because I remember my holidays in the south of Peru , a long time ago ; it was wonderful . If it is possible for you to help me clear up some doubts I have , I 'll be really greatful . Yours faitfull . First of all , I 'll tell you that on the day of the concert I woke up at 6:30 a.m. , very early for me . You know me , I 'm lazzy . The work began around 8:30 . It was very hard but then the band came to rehearse . From that moment I enjoyed working until the concert had finished . The atmosphere was wonderful , the musicians were very kind to everyone who was working because they understood that putting on a concert is a job to be done by a team . Finally , we would like to get your permition to go . Maybe if it is possible that you can change your programme , we can go to your college any time after Tuesday . This story happed two years ago . Not only was I a member of the swimming team in our school , but also I had been tought by my father since I was five years old . I started thinking about it . After all , either had I neve done this task before , or trained . It was really a reasonably priced weekend for me , but you should also introduce new activities like competitions in singing songs or drawing a portrate next year . Secondly , the show should have started at 19:30 p.m. , and it began fourty - five minutes late . Moreover , when I went to buy the tickets no discounts were avaliable . Furthermore , I wanted to have a coffe after the show , but when I tried to get to the theatre restaurant , it was closed . Ballons and coloured lights were put in all the trees . I carried a lot of chairs and looked after the que or people who lost their way . As we are going to be in London on this date , we think it could be a great oppurtunity for us to go there because we are very interested in the latest fashions , make up , etc . and it is free for students . Because of this , we would kindy ask you to change the programme so that we could go to this particular event . A especiall invitation It allowed people to enjoy their weekend , relax , and also it brought a foreign culture to them , broadening their kownlegth . In addition to this , one weekend ticket for all the events was only £ 10 . This was excellent . It meant people only spent pocket - money , and then they could watch all the events at the weeked . For them it is a really economical way to spend their weekend . Moreover , the stars and artists were from only six countries . In my opinion , if you can invite more stars and artists from more countries , it will make the festival more exciting , more intesting , and in my opinion , some of the concert halls were too small . The people in there could n't even go to the loo , because it was too crowded . These are only my inmature views . If it is considerable for you , I will be very pleased . Thank you very much . It was very uncamfortable for me . Today I recived your letter . It is the most wonderful news I have heard in a long time . I am so pleased that I won this prize that I can not explain how greateful I am . Because of this situation I will be very busy in the first week of July , and I would apreciate it if you could give me the option to begin my " Camp California " experience on July 10th . About the Accomodation I would prefer to sleep in a tent , because I have never been in one , and it is a lot more fun than log cabins . Because I have seen my father playing golf since I was a child I am very keen on this sport , and also I love photography because I have got a great Camara . When I was a child I never liked to go shopping because my Mum spent so much time in the shops that I remember that going shopping with her was a nigthmare . It is ameaising how people change over the years For example now shopping for me is one of the most entertaining things , and every week I have to buy something . But these days shopping is not always enjoyable , because if you decide to buy a very expensive designer and you pay the full price , at the end of the season it is half price . I find it very anfair for people who pay a lot of money for their clothes . Anyway , shopping is allways satisfation for rich people , because they can afford it and they do n't mind paying the full price for their clothes . Modern technology ca n't not transforme our daily life . The inventions of the airplane , of the train and of the car , have reduced the distances of the world , so we can go to the other side of the world in half a day . Everything has changed : style , colour , qual . Fashion . We saw almost all kinds of skirts , trousers , coats , skirts and even hats - which untill now have been the main point of many fashion creatures . Grey and black - like the seasons , like people 's charakters , like all the night and dark sourranding us . In the advertisement , it said that Danny Brook was starring , but in place of him there was a different actor and he was really dissapointing . As you can understand , it was a dreadful time and I want my money back as a consolation for the dissapointment I had . I support this idea which is convinient both for the public and the organisators . It is awfull ! However , we promised our perents to do some cleaning every week . What is more , there are many new ways to produce medicines and modern hospital equipement . The second is nuclear weapons and the many wars in which modern equipement is used . To sum up , as far as I am concidered , modern technology has changed my life completely . Last week , during my holiday in London , I had the opportunity to see the show " Over the Rainbow " at the Circle Theathre . The day of the show , we got to the theather at 19:30 . Third , the theatre restaurant was closed because the cheff did not show up . You can feel the fresh air and listen to the animals . This will be a great oportunety ! I am not good at either activity , but it will be a pleasure to try them , espacially surfing . I would like to feel the wind in my hair , and enjoy how quickly the board goes over the sea . I mean , it is too crowdy , you have to wait such a long time before you can pay , and most of the things are too expensive ! I was looking forward to a great evening , but much to my surprise , that was not exactly the case : there were no discounts available , such as were mentionned in the advertisement ; the show started 45 minutes late ; I was then very disappointed to see that Danny Brook had been replaced by someone else . Yours faithfuly , I will take the exemple of the use of the Internet . I am writting to you because yesterday I went to the musical " Over the Rainbow " and I had a bad evening . First of all , I would like to travel in July because this is the beggining of my holidays , and I would not like to miss some of my school classes . Besides , I would preffer to stay in a tent , because I got used to being in tents since I spend my holidays every summer with my friends in the hills . In adittion , I would prefer playing tennis . I also like surfing . I think it is a dangerous sport , but I know how to do it , because of the fact that last year a proffessional surfer tought me . I'M WRITING TO YOU TO COMPLAIN ABOUT THE MUSICAL SHOW " OVER THE RAINBOW " WICH WAS PERFORMED LAST WEEK . YOURS SINCEARLY Because I am a university student , I have got classes until the midle of June and I have to attend a ' Research and Development Conference ' at the end of June . Otherwise I have to work at a business department office as an assistant from the beginning of Aguest . I always want to buy T - shirts , Jeans , Skirts , cosmetics , haribands , accessories , rings , earings , bracelets , shoes , hats , bags , fancy stationery , interior stuff and CDs . Insead of buying something , I buy some fresh food and Ice - cream . I can try all the shoes , clothes , hats , accessories and jakect on . Actually , I could have a chance to ask her about music , her favorite artist and her hobby . Likewise , there were no discounts avalaible . Because of all these inconvenients , I ask you for a total refund . So when Caroline , his girlfriend , told him something personal and very important , because she trusted in him , immediatly he went to see one of his friends to tell him the secret . So immediatly she went to Pat , angry , in order to argue with him , saying that she was annoyed by the way he behaved , and that it was n't the first time that he was n't capable of keeping a secret . But after I climbed two steps more , my right foot slipped . I nearly fell , but luckly my hand caught a rock . It was dangerous , but I did n't have any choice . Finally I did it . I think it was definitely not the perfect evening garenteed in your advertisement . I was terribly ennoyed ! I am always joinable on my mobile phone , which is also boring sometimes ! I often go on the Internet to find information when studying a particular subject more accutely ( university technology sites ) . At work my particular job involves two standard PCs with specifical software plus one workstation with the Stanford University Network ( SUN ) operating system and a special computer that my firm is now developing . I hope this matter will recieve your prompt attention . For example , if you were hurt seriously like cutting your leg off , the new medical technology could rebuilit part of your body . Also we should be careful as we could be watched by security carmera which have been combined with mordern technology . In conculsion , I conciderly said we has been charged by morder technology in two ways . I am not very good at painting , but I choose it because it is a good oportunity to do it . I do n't want to dissapoint you , but I am beginner ! In this book , Heathcliff as a child was n't a bad character , but the situations he lived through with the Earnshaw family , where he grew up , made him rude , agresive and noisy . Before Heathcliff died he riched what he wanted . In your letter you ask me to choose beetween tents or log cabins . Well I prefer to stay in a log cabin . It is more confortable and I am afraid of wild animals . The other activity I like very muche is swimming . First we had to prapare the stands with food and drink and buy something which had been forgotten . He is very beatiful ! Fortunatly we had no problem . I was very proude of myself and the work I had done . Modern technology has completly changed my daily life , which has become more comfortable , and easier . Thank you for the exellent programme you have organised for our class . We would like to inform you that we are all extremly interested in this show and that it could be a great opportunity for us because entrance is free for studends . We would like to ask if we could go to this show on the 15th March instide of doing the visit to the Science Museum . Who has never dreamed of being a famous singer , sportman , actor or a politician ? Firstly , this is because there are a lot of scandale magazine readers . What a catestrophee ! A desaster ! Also , I used to assist my brother , who is a profecional photographer . When I read the advertisment for the show I was really excited but after the show I was not very happy because of the following problems . The advertisment says that Danny Brook and Tina Truelove would play but in this show there were totally different actors and that was really disappointing because I was looking forward to them . The advertisment also says that there are discounts available but this is not true , there were none . Why do you give this information in an advertisment ? I have only one question about the baby 's accomodation . So , you wo n't believe me , but I enjoed helping at an Oasis concert . Me and my friend were there to hear the sound - check , and when I understood what was happing on the stage , I decided to help them . Of course you know I 'm a singer , so I came back quigky to my home , I picked up my microphone , and I handed it to the singer . Can you immagine ? I will consider taking this complaint to court if I do not receive an acceptable explaination from the theatre . On the other hand , people in the future will propably wear clothes to protect themselves from the polluted air and water , the harmful ultra - violet rays from the sun and all the dangerous and poisonous gases or chemicals which are the product of a developed and full - grown country . Therefore , I will suggest that we all nov to keep the enviroment clean and healthy for the next generation . When I first heard about Over the Rainbow I was very excited about the idea of seeing it , plus when I heard about the extras that the circle theatre was offering , it became the best oportunity I ever had to attend a musical of that type , but instead of being the best evening I ever had , it was a total disaster and that 's the reason why I am writting to you . First , the actors that the Circle theatre publis on their tickets for Over the Rainbow were not there , which was very disappointing because the actors starring in the musical were one of its major attractions . Another point that I want to complain about is the time that the musical was supposed to start ( 19:30 ) but it started at 20:15 , so there was major unsatisfaction with that , but the last and worst thing was that your theatre restaurant was closed because the British health institute considered your food unhealthy , and I am not taking into consideration many other points like unsatisfactory service , and uncomfortable seats . Science and Technology is a theme very much discussed nowdays , most of the comunity of our city , and of the world , where technology has arrived , confirms that it has in some way improved their way of life . But not everything about technology and computers is good , because many people , and me in a control way , have become computers ' and thechnologic 's slaves , and we can not do anything without a machine , and I am not saying that it 's wrong or bad , and I accept that they make our daily tasks easier , but we have to mantain our independence as humans . First of all , there are quite a lot of advantages to shopping , which are that it can be the solvation to our stress and boredom . Also shopping makes people happier by costing a lot of money and it even influences the economic situation more flexably . Also there are plenty of dangers since lots of people have their wallet stollen because it is a public place and there are too many people . In addition , shop owners often cheat their customers by increasing the cost secreatly . I 'm realy pleased I won your competition ! I 'll give you the nessesserly information about me . The most suitable time for me is Jule because in August I intend to go to the countryside , where I have a small farm . You ofer me a lot of activities . It was absolutlly great ! I gave information about correct ways to other places like tooletes and medical points . I looked very carefully at the organisation of the event , you know I 'm interestsing in it . I was so suprise to hear from you . I was really greatful when I recieved your letter which informed me that I have won first prize in your competition . Personily I prefer to stay in log cabins because they are much more comfortable than tents . Unfortunetley I am not good at either of them . I really hate it , because we 're not allowed to wear casual and fashonable clothes , colourful shoes or colourful socks . I am very excited and looking forward to the new experiance I am going to have . I would prefer to stay in tents because I love the atmosephere of camping , but I would n't mind staying in log cabins . It is based on information made availble by students from each class at school . It seemed to be the most interesting lesson , because students always make some mistakes while they are practising with thier partner , in spite of having been told by the teacher ten times . Spending time together out of the class is a nice experiance . Firstly , I should say that I would like to travel in July because that is the month wich I could most likely have off from work to go on holiday . That is because , I do not want to seem fuzy , but I like to have some luxuries when I am going on holiday and I think slepping on the floor without electricity may annoy me . Conversely , painting is an activity wich I have never tryied before , so I have not any skill in drawing but I would like to start doing that now when I have the chance . On the other hand , I would like to know some imformation wich could be useful on my holiday like : what type of clothes would be more suitable for me in the Camp ? I am writting to tell you about my experience at the pop concert last month , where I was helping my friend Nick , who was the bouncer at the venue . My job was to accomodate to the people of the main sit of the theathre . So , I hope to see you soon to show you all my phothos . I think it was very clever of me to record that moment wich I will never ever forget , and that was the thing that I liked most about that experience . I 'm writting to you to make a complaint about your musical show : " Over the Rainbow " ... Last week , I , my husband and our two children went to your theatre to have a good time , but we were so disappointed . Moreover , there were n't any discounts available like writting in your advertisement . I will always say thank you very much to the inventor who has invented the maschines wich do the washing and the washing - up , before this , women spent a long time doing these tasks . I am writing to give you futher information about me which you need for Camp California . In conclusion shopping is enjoyable but not when it is too buzy . 1 . Grammer , which is the basis of learning English . Speaking : it makes you more confident when you talk with other peoper . It lets you get more pratices . Writing . This class techer you how to organise what you want to write . It is important to pratise your English after lessons . If you have a problem studing , try asking the teachers about which is the best way to study . Yours sincerly I am writing in reply to your letter in wich you told me I won the first prize . So I want you to send me some money back for that unpleasent night . The headmaster wanted to tell the police what we had done so we decided to imprison him in a little house we had twenty kilometers away from the village until we could change his mind . We took some photos of him naked and told him not to tell anybody about this because if he does we will hang the photos all arround the village . In the following edition the headline was : " Why does a teenager sleep with a toy called Max ? " Everybody laughted at her . I would like to travel only in July because I will have some hollydays at that time . 3 When you are ready to shopp , sometimes you know beforehand what is your priority , because probaly you need one thing rather than another . But the best thing that we do , when we go shopp is spend time having lunch at a snack bar , watching movies and playing computer games . Last month , I worked as a roadie at a Rolling Stones pop concert . I was responsable for the sound . Some people when they are tired relax by spleeping , reading a book or watching television , but not me . There are always , at the end of the afternoon , some well - dressed women coming from their offices and they just spend one hour in the shop whithout buying anything . However , it is true that shopping is not always enjoyable , for example before Christmas or during some special salles . Secontly , the show began fourty - five minutes late and nobody told me what had happened . I preferred riding a motorbike with the people who studyied with me in the Institute . You have a chance to meet people and now you have an opportunaty to select good friends . I like Danny Brook as an actor and when I read that he would be starring , I booked the ticket imagetly . I belong to the generation who have grown up with a lot of new technolgy . For example , TV , telephone , micrown etc . I tought I would never need a mobile phone , but my mum and dad gave me one for Christmas last year and now I ca n't live without it ! But the invention that I 'm most thankful for is the computor and the Internet ! So , I start every day by swiching on my mobile phone , to see if there are any more SMS messages before I go to the library to check my e - mail and that 's just the beginning of the day ... Second , I would rather stay in a log cabin , because I tend to get very nervous in small closed places , so a tent would be unapropriate for me . I haven't played golf for a long time , so it will be pleasent to do so . Yours sincerately , The fans started shouting and wistling for the show to begin , while I just stood there trying to see what had happened . When we saw your advertisment for the musical show , over the rainbow , we immediatly decided that this would be a perfect evening out . Thirdly , in your advertisment it said that discounts would be available , but they were not . I am therefore asking for compensation for our disappointing evening and hope we can reach a sollution as soon as possible . I really like Pat , she 's funny , has a good sence of humor and like me she loves to discuss everything . I have recived your exciting letter , informing me that I have won two weeks at Camp California in the USA . I much prefer sleeping in tents . It seems more sociable and realy sounds like holydays . So one week befor the concert I went to " L'Arena " to meet the other worker and receive the instructions . I 've had the hounour of helping their sound engeineer and branching the cables for microphones , ggitares etc . We realy started to work like ants the morning befor the show . It was exciting looking at all three men working together and building a stage , and it was interresting to help the sound engineer to check the sound and configure his computers to get the best sound possible . About two hours befor the beginning of the show , we met the band and recieved tickets to go backstage . That was wonderful , maybe better than the concert itself ! That 's a great experienc ! Apart from this , photography is one of my favorite hobbies and I usually spend nearly all my spare time doing it and of course I have some diplomas as well . I would like to request some information about accommodation and if you could specifie what this trip includes , since I need to know how much money I have to take . I feel that this was a good oportunity for me , not only for my professional but also for my personal life . According to my job , I had to help the teams with the outlights and , of course , it was my first proffesional experience : in the end I felt like one of them , because they were so kind to me , and I could help a lot and I learnt a lot with this project . I prefer that kind of accomodation because I can have a kitchen or even a bathroom there , but I ca n't have it in a tent . These are my favorite because they have a lot to do with water , but I like them more than surfing . I agree with this statement especially when we talk about small shops in the center of a big town . These days people prefere shopping at supermarkets rather than at shops or even shopping centres , because shopping at a shop is less enjoyable and you spend the same amount of money . There were 963 people at the " Armaggedon " that night ! You must show a great sence of responsibility . I 'm sure you are jalous now . Now I am studying and I 'll continue my studies untill the end of June . I think it 's a very usefull and helpful thing for my health , especially when I do it with pleasure . The second of my favorit sports is tennis . I 've played tennis for ten years . I 'm a profesional and I have to be good at it , in any time . The most enjoable thing was to dress people . But when we saw our show and heard how loudly the audience claped them we were proud and understood that we spent a good time . You should try it and see . I would like to stay in a tent because I used to go camping at weekends but if there 's any problem I could be very confortable in a log cabin too . I have never tried either of them before and as a result I ca n't be good at them but I 've always wanted to sail because I love the sea and now I have the opportunitie . If you do n't mind I would like to know what kind of clothes are apropriate for the camp and for the Californian weather . First of all , we usually go to the shops at the same time as the rest of the world and that 's a little bit complicated because the shops are full and it 's impossible to try acurately . I would be greatful if you could send me the full details . In the following paragraps I will discuss the advantages and disadvantages of shopping . In a suppermarket , shop or department store they have many things . It is very convenien . Sometimes , there are so many people and they are not friendly at all or you are in a hurry while you are in a long queu . Most people enjoy shopping because it is more convenien today but if you found a busy place for shopping or it was not as good as you expected . Dear Sir or Madam , With reference to your advertisment regarding the musical show " Over the rainbow " I am writing to you with the intention of giving you an impression of our experiences attending the above - mentioned show . We were disappointed to realize that not Danny Brook but a different actor played one of the main characters . According to your advertisment the play should have started at 19:30 . What made the situation worse is that no explanation for the delay was given ; not even an apologation . A story of an old seaman leaving his town to proove that he is still able to catch the biggest fish ever caught . Last week I was on holiday in London and I was very dissappointed when I visited your theatre . First of all , the show was supposed to start at 19.30 , but it was delayed untill 20.15 , and when the show finally began we were supriced to see that Danny Brook , who was the star of the show , was not playing and someone else had replaced him and he was really disappointing . Anna told her again : " Pat do n't tell anyone please , especially my brother , everything would be ruined then " . And Pat answered : " Do n't wory I wo n't tell anyone " . The big secret was that Anna was prearing a suprice party for her brother John and she did n't want anyone to know about it . It will be a pleasure to give you all the information wich you need . As far as I know accomodation at Camp California is in tents or log cabins . It 's more convinient for me . I am a good diffender . I 'd like to know what temperature it will be in July in California and your advice about how much money I will need to have an unforgetable hollydays ! If we decide to buy somthing special and we have enough money for it we have to go and buy it . During a prior holiday in London I came across an encouraging advertisment for the show and decided to see it . Unfortunately , I was very dissappointed to find out that there were no discounts available ! In addition , I was very annoyed by the fact that the event had started at 20:15 - not 19:30 as stated in the advertisment . I 've always enjoyed danger and this time getting the password was , indeed , a tough coockie . Especially now , when ' big - mouth ' Pat has spread the news to litterally everyone . I would n't be surprised if suddenly something bad happened to me . Furthermore , for the activities I want to select Tennis and Basketball because I have been playing tennis since I was young and basketball because I played for the team in my college as the capitan . Anyway , this was my experience working at the concert . If you have an oportunity to help at any concert you should help because you have a lot of fun as well , OK . I am writing to you , in reply to the letter I have recently recived , to inform you about some details that I am concerned about . In your letter you presented the possibility of choosing two activities and I would like to let you know that I would be pleased if I could join in with basketball and climbing , as I am very good at both of them because I played basketball in my secondary scholl as captain of the team and due to my long training sessions lifting weights . There is , as well , the struggle you have to endure when you find yourself in the crowds , crambled in the small shops during the only day - off you have to buy somthing you like . All this can easily lead to a nervous breakdown , particularly when you realise that your money has been stolen either during your difficult way through the crowds or while you were qeuing to pay . I 'm the winner of the first prize in your competion and I 'm writing to you to give you some information which was requested by you . And it 's creating a lot of adict people , called " shopalcoholics " . I am writting to you because I had a very disappointing evening at the Circle Theatre . He told me that it was nessary to do something about it . As Pat was lossing his patience , he decided to talk to him . I can say that I was very nervious and anxious about what was going to happen . I am writting this letter to informe you about the decisions I have made regarding your questions . When I was a child I was affraid of all these little insects that live in the ground and this fear still remains now . I also think that the log cabin will be much more confortable than the tent . asketball and swimming are the two activities I have chosen . Finaly I would like to ask you for some further information about the clothes and the money we will need . I was only responsable for the property of the back stages . I was shocked and terrified the firt time I saw them , but the truth is that they are men like us . They have a very simple life and behavior when they are n't on the stage . Definetely , it was not my perfect evening at all and under these circumstances I really believe you should give me my money back . I recived your letter about the two weeks I won at camp California in the U.S.A. I would like to travel in July because I will have holidays in that mounth . Yours sincerily Also , we will take the drinks from our canteen and there will be a group of mucisians for our entertainment . I was surpised because I did not know what he wanted . When I went he wanted to tell me that from the next month I would be his personal secratary and my salary would be twice what it was previously . Unfortunatly , the musical show was n't much like that the one the advert had described , and that is why I want to ask you for some money back . Now I have a new computer , which is very easy to use , and confortable for my fingers and also faster . And he can ansewer me very quickly . I think it is now the futur of big companies to work with the Internet . I am writting to inform you of some problems we had . We had to wait over 40 minitues It seemed to sink into the sea , but fourtunately , the storm soon went away . Finally when it started we noticed to our suprisement that it was not the right actor on stage . Afterwards we wanted to go for a pleasent dinner . Anyway , we defenately know that they 're going to change . In the paper it was writting that the principal actor is " Danny Brook " but it was n't him , it was a different actor whom we had never seen , or heard . Unfortunately , Pat was n't very good at keeping secrets , this sentance is very popular in our school . I helped to guide foreginers who would like to participate in that . Thank you for your letter . I was so happy to receave such good news that I could n't believe it . Regarding the accomodation at Camp California , I prefer to rent a tent , which is going to be more fun , I think , but are the tents singles ? Is there only one teatcher for each sport , and how many are in each group ? It 's the place where you can meet your friends , where you can talk freely , and there are no teatchers . It could be a good contrast to the seriousness of the lessons . Finally we should film the lunch , which is also a moment for the students , and for the teachers , to relax . We must n't forget to film the staff room because if a school is made of students , it 's also made of teatchers . I would like to thank you for your letter you recently sent me concerning the competiton for two weeks at Camp California in the U.S.A. First I want to thank you for all the congratulations , and I 'll try to answer all your questions about , for instance , travel and accomodation . I have to tell you that it is only possible for me to go on holiday in July because my father is very ill and it is only possible for my sister to take care of him in July ( because her small children are in summer school at that time . I was so happy and suprised that first I could not really believe it . Secondly , regarding the accomodation , I would say I prefer living in a tent rather than in a log cabin because I used to sleep in a tent when I was staying in a local scout camp in my country . Thirdly , I have choosen Sailing and Photography from the list you gave me because both of them are my favorite hobbies and I have been enjoying Sailing and Photography for several years so I am quite good at both of them . Finally , I would like to ask you whether I have to prepare any speacial clothes for camping or will the camp provide them for me . A group of girls can stay in a shopping center forever . Thank you for your letter and I am very pleased that I won the first prize in your compition . In addition to all this , I would appriciate it if you could let me have more details about clothes and how much I shall be paid for the trip . Another reason is that it will be more useful for forigen students who want to speak English . The number of forigen students has recently been increasing . To sum up , it is recommened that speaking classes and school trips should be filmed . First of all I would like to thank you for giving me the oportunity to travel . You asked me some questions about the day that suits me the best to depart , the accomodation I would like to have and so on . Travelling in July , I have to say , would be perfect for me because my birthday is on the 24th of that month and I wish to spend my birtday in the best way possible , so that means there . I also would prefer to sleep in tents , which are more comfortable , and , because I have been doing lots of camping , I am quite used to this kind of accomodation . The activities I have choosen both represent a pation for me . We are writting to you to complain about the musical show " Over the Rainbow " , which we saw last week in your Theatre . The advertisement said that it starts at 19.30 , but it actually started at 20:15 due to a probleme with the sound . We were also surprised to discover that the student discounts were n't available for us , because they did n't accept our student indentity cards from Switzerland . What is the effect it has on your environement ? The major probleme for the industrial cities is to deal with the bad effects of polution on the environement . A lot of money is involved in research to stop the increase in levels of polution . To sum up , all the improvements come at a price : the condition of the environement . When it was time to take the final exam , she became ill and she could n't do it so the teachers decided to allow her to pass the course because she had a lot of good marks , but on the other hand the principal desagreeded and did n't give permision to pass her . She had to repeat that course and all her friends passed and as is usuall the girls from the last course became popular . Pat , to win her new classemates ' friendship , told everything that she knew about her friends and , because of what Pat said , her friends ended their friendship with Pat because their popularity was damaged . And it is even more difficul to predict what clothes in the future will look like . I saw the performance and it was not as it was described in the advertisent I read in the local newspaper . Then , I was planning to buy three £ 20 tickets because it was mentioned in the advertisement that there were dicounts available but that was not true , so I could just buy two tickets and my son could not see the show . Finally , I was thinking of having dinner in the threatre restaurant after the show but it was closed due to some problems with the employees . What was suposed to be a perfect and enjoyable evening , resulted in a very disappointing time . So I would be greatful if you paid for a full refund of the money I spent on the tickets . Computers , radio , CDs , sattelite television and a lot of other things have changed my daily life . Another advatage is that , for example , sattelite television , which is an example of modern technology , keeps me informed about what is happening in the whole world . After considering your accomodation offers , I 'd rather stay in a log cabin if possible . It would not only emphasize the sharp contrast between this and the classroom atmosphear but also show how they are as young people . On top of everyting , the restaurant which was advertised in the advertisement was closed because it was being arranged . You can imagine how dissappointed I felt after that evening , and I am writing to ask you for a refund of part of the money . But , in other things , I think modern technology hasn't changed my way of life too much : I do more or less the same as I did some years ago : I get up in the morning , go to school , have lunch , study and go out with my friends without being afected by microchips or nuclear energy . I have happily received your reply and I want to thank you for this marvelous prize you have given me . After helping to do that and many other things , my friends and I watched the concert and before Green day ( the group ) left , they came up to us an thanked us for all the hard work we did , and shoke our hands . It started at 20:15 leaving us waiting for fourty five minutes . In the future people will wear clothes made of polyseer and nylon because cotton and wool will be rare and expensive . Also I think clothes will have many gadgets on them like a small oxygen mask in case someone goes in a place with extended pollution - I think there will be many such places in a hundred years - and a hat designed to protect people from the strong sunrays of the sun at midday because the ozone layer will be destroyed in a hundred years and the sunrays will do damage to the human skin . Now , it is already possible to send our shopping list by computer , and this opption , in the next few years , will become the most common one . The new technologies will probably produce a considerable revolution in some essencial parts of the house . For example , we will have computerizated ovens , microwaves and freezers , or we will probably have central heating controlled through the Internet from our office . Firstly , log cabins are more comportable than tents . Is there a possibility of exchanging different currancies to US dollars ? When you think of shopping , it reminds you of going out ( mostly ) with friends , looking for new things like clothes , accesoires etc . and buying them . Then in the adverstisement it said that the performance began at 19.30 . I was very nervious . So this evening was terriable . And now I requere my money back . Among them , the mobile telephone , computers , telefaxes , different appliances for the kitchen , mashiens which help housekeepers to do any work about the house . So with the appearance of new morden technology people have got much more free time . Some years ago people , especially students , had to run to lubraries in order to find a book about something . I use the Internet very often , and I must say it is very convienient . If I need to say something important to my parents or my friends , or if something terriable has happened to me , I do not have to run somewhere to find a telephone box . With it people do their work more quikly and successfully . I saw an advertisement which made it seem very atractive to me . Firstable , I decided to go see your show to be entertained by the performance of Danny Brook so I was very sad to find another actor on the stage . It 's enbelievable it was 45 minutes late . We stayed with a host family in a surburb of the city . The man said it was OK this time and we got in quite easely , we 'd made it . I 'm excited to be going on holliday there and , thanks to you , I will realize a dream that I always wanted to do . Yours faitully On Monday we could first go to the Sience Museum and in the afternoon to Greenwich . Everone knows you because of the journalists , so you ca n't just ignore them , can you ? I am writing to you because of the unpleasent evening I have had recently . Ealyer I had seen an advertisement for the show but the information on it was fals . The last thing is that it was unpossible to go to the theatre restaurant because it was closed . I would like to write about how it has influented my daily life . I am a student at a technical univercity . When I neaded some information I had to go to the liblary to find it in books or newspapers . The computer is helpfull when I want to contact somebody very fast . The second thing is that when I neaded a phone card to call somebody I had to stand in a long queue . Although we would like to visit the science museum , we can leave it to the next opportunity . What we suggest doing is intead of going to the museum in the morning we go to the Leisure Show and keep the afternoon programme the same . I knew I could not make any moviment for my safety but I did and to my surprise it ran away . Since I am a student I have to follow the vacation programm of my school , which means that I would only be able to travel during the month of July . Concerning the activities , as a matter of fact tennis is my favorit sport and I am very keen on it . For the second activity I would like to enroll in surfing , because my husband , who is already a proficient surfer , keeps telling me about the excitement of this sport , and I think it is worthwile trying , therefore I 'd love to be in the beginners ' group . It offers a wide choice of courses from cooking , computing , make - up , languages , geographie , to culture and civilization . Once students have taken a shower after hard physical training they enter real life . Depending on their levels of proficiency , they have to study for instance languages wich I personally find very important for a person working in the tourism industry because they enable staff to communicate with clients in a proper way . Students have to manage to speak at least three languages . Another important lesson to film is " culture and civilization , " so people will know that the hostessess trained at this school are not simply , as the French say , " pot - au - fleurs " , beautiful faces , but also well - read people . Last but not least is the class called " know - how " , wich shows students how to cope with unspected problems even if they are stressed . To whome it may concern , Firstly , the advertisement said that Danny Brook was going to starr in the musical but it turned out to be a completely different person , which was very disappointing . Secondly , according to the advertisment , the musical was supprsed to start at 19.30 but it actually started at 20.15 , which caused me problems . With all the dissatisfuction above , therefore , I would like to ask for some of my money back as my evening was not what it should have been . She saw some familier faces on the other side of the street . And if it is possible , I would rather be accommadated in log cabins because I would not like to share the bathroom facilities with someone who I do not know well . I am in the school swimming team and I am intered in photography professionally . Could you please tell me what kind of clothes I should bring with me and whether the company offers us some expensise money to spend ? And what 's more , there were n't any discouts available and the theatre restaurant was closed : the only people who could enter were the actors and the staff . Well , it seems that it was n't my perfect evening and for all these reasons I demand to have my money back , I wasted £ 20 to see a show which does n't respect the programm I paid for . Science and technology can be useful : see for example the use of TV in the school or the use of the radio to learn a foreign language or the use of the computer to get further information about something that intersts you . Again we 're so sorry that we are causing you inconvience regarding your plan and thank you for considering us . But we could have everying we want . Home might be a mixture with moden styles and a natural appearance as well . These days a lot of contries have been worried about lands that ca n't have enough space to build houses . Because we are living a computerlised life , we 'll able to do most things at home or these flats'll have these places as well . On the other hand , what migh still be the same is to have good places to take a rest at home , such as a beautiful garden , a small terrace . Last week I went to the Circle theatre , for which you are responsable , to se the musical show " Over the Rainbow " . I think modern technology has changed mankind 's life a lot , expecially since last century . The changements brought by modern technology are so important that today no one can live without this technology or without a part of it . In my situation for example cars and motorcycles are a necessity : I live on a little mountain at 160 metres altitud so I can not go to the city using a bycicle . Because of my " isolation " the telephone is very important and I need a good personal computer with a modem and the Internet to study or do research , because there are not any book shops to buy or borrow books in my little town . Only those who get good marks can take part in theese activities , so sports activities are seen as a prize , so while the students are playing basketball , tennis , volleyball ... or they are swimming you can see satisfaction on their faces , and our volleyball team is excellent . Be carefull , my own technology can kill me . The only convinient time to travel is in July . This part had to be saved for later because the concert orginazer wanted to know the exact number of visitors . Here , I had to check the bags and couts of the girls . I think it 's because the last time I travelled ( with my friends ) , we stayed in log cabins , and when I was sleeping I felt something moving on my skin , then I woke up frightened and when I openned my eyes , I saw lots of big ants ! Greatefully I met all the staff , and Ricky took lots of fotographs with me and gave me an autographied Record . I am also writting to make a suggestion and to give you my opinion about next year 's festival . An internation arts festival is a great idea , but at the last die there were stars and artists from only six countries , and it could be more interesting to have the opportunity to meet artists and stars from more than six cultures . I could not listen to one of my favorite classical concerts , " La Moldava " by Smetana . In Italy there are n't a lot of rules at school and they are n't very stricht . I am writing to you in order to describe my last visit to your theater . Unfortunatly , I am very disappointed about the organisation of your company . Firsty , the musical show started not at 7.30 p.m. but 45 minutes later . I do n't know whether it is a typical situation in the Circle Theatrer that it promises much more then the people can get for their money , or whether it was on June 7 ( my visit ) only , but I do not approve of such a situation and must ask you for my money back - my bank account number is enclosed . Because people have fast and comfortable cars , they are much more mobil and can spend their free time more aktiv - they can often visit their friends and travel much more . Secondely , we can do our jobs today more efficiently . I found your advertisement in the tourist board officis and as the musical " Over the rainbow " seemed to be a good option I chose it . Lyter a long time walking we decided to return and now the weather was so hot we decided to find a place to drink something . I 'm really very unlucked . However , we saw an advertisment for " The London Fashion and Leisure Show " and we would all like to go and see it . We could immediatly see that it was broken . All syntetic material will be uncomfortable for these people . Women will prefere long skirts and short blouses and jackets . Men will wear as usualy - a suit . For special ocassions , for example a party , a concert , people will dress very smartly . I think that it will be dresses , and suits swewed by the well - known tailors . I think that we will observe a few slow changes in fashion , but I hope that new clothes will always be pleasent for people . As we have seen the advertisment for the programme the school arranged for us as a farewell activity , we are very appreciative and would like to thank you for your kindness , as all of them are very interesting and give us a chance to meet and join the other class , which we have hardly done at all . So this is a great oppotunity for us to get used to the real world of fashion design , because in this show there will be a fashion show , a demonstation from make - up artists , and a contest for hair stylists . Furthermore , most of the famouse brand of sportswear companies will be at this exhibition with their new products for the coming season . Anyway , intstead of going shopping in the afternoon session , we will attend the show . We all think the programme is organised well . In particular we 're so keen on the idea of going to the National Art Gallery , to see the work of the bigest painters in the world . I 'm writing to you because we saw a great advetisement for the London Fashion and Leisure Show and we really would like to go to see that show . I think it 's a great opportunity , because we will have a chance to se the latest fashion , leisure and sports wear , and also the way to do the perfect make - up and hairstyl . In my opinion , we can have a great time there , and entrence is free of charge for students , which is very important as well . We thought that with that beutiful weather the seeside would be just perfect for relaxation , sunbathing and joy . However , the truth was a little bit diffrent . The weather had changed suttendly , and there was no more sun , but strong wind and heavy rain . Despide that we were still thinking optimisticly . We were thinking is so many other activites to relax and enjoy ourselves then sunbathing on the beach . The sky went completly black , so at first it was difficult to see where everybody was . I looked around and I relised a friend of mine was still in the sea , and fighting against the storm , trying to get to the shore . Everything was looking so dangerous but fortunetly it ended well . I would like to apologise to you for my controversary opinnion but I feel really disappointed . I came to London for a short holiday to meet new poeple and to have a taste of English culture . I 'd seen your advertisment which recommended the play ' Over the rainbow ' and I liked it very much . In the advertisment ' DISCOUNTS AVAILABLE ' was written . Shall I ask you one question ? - Why were n't they available ? Everybody was schocked and I was trying to keep the faith . Nevertheless , after the show I was very hungry so I went to the theatre restarrant and what did I see ? Finally - you offered a wonderflul evening but I must say that if I had known that it was going to be like that I would n't have wasted my time . I feel entitled to write this letter and I feel the oportunity . Yours faithfuly The main adventage is that it provides you with all the information that you need . Furthermore you can play with the computer , and unfortunetly this fact especially has changed my life . On the other hand , playing games and using a computer widens my brain so , as you can see , this modern staft has got many advantages and disadvantages . I saw the advertisement for the International Arts Festival wich is a great idea . Firstly I want to congratualate you on the festival . I have a suprise for you . Shopping is not always enjeyable . Secondly , you have a lot of choises and you do not know what to buy . Lastly , there is a recyling problem , which many people do not care about . In my opinion , small shops and the street markets should be supported . On the other hand , the big supermarkets should think more about the recyling problem , which will be the most important problem in the near future . Secendly , the show started at 20.15 . I will be gladfull if you will send my money back . Yours faithfull , This was the reason whe we were in horrible trouble with the police . Let 's go back to the beginig of this story . There was a secret place where a robber keept gold stolen from a bank . We found the solution to this deceperous situation - to say nothing to anybody . Our class really appreciate your preparing this programme , especially with regard to Monday 's atraction . We are extremaly interested in wisiting London . In the last edition of ' London 's Guide ' we saw an advert for ' The London Fasion and Leisure Show ' , which will be held on Tuesday and it lasts from 10 a.m. to 7 p.m. The offer mentions the ' latest fasions ' , which we are incredibly interested in . Nowedays famous people do n't have an easy life . They are always attacted by naughty journalists , which have a desire to earn big money for writing an extremaly good report or article . When chosing this style of life they should realise what their life would be like . On the other hand , their life has no privaty . Some people may argue , but I think that politicions and film stars belong to the public . In conclusion , I belive that we have a right to be informed about their lives , providing that journalists respect some important rules . We think we 'll have one free hour befor the River trip . Regarding accomodation , I would prefer to have a log cabin . It would be better to leave money or anything in without worrying about theft . I 've always dreamed about climbing but I have never had the opportunity to try this sport . I have alredy thought about a change to the programme . But the worst thing about " London 's newest and best musical show " , as you called it , was the abscentness of Danny Brook . The actor wich was " dancing " was horrible . I want you to give me back my money . I hope that in future you will corect all these mistakes . That was supposed to be a joke from my " coleagues " ! I enjoyied it and here are some feelings and advice for next year . They do n't fancy going into the crowdy shop . I recieved your letter congratulating me for having won the first prize in your competition . I am very greatfull and I want to thank you very much for letting me go on this trip . They are much more confortable than tents . Appart from calling them , I also helped build the stage , and took care of the lights . I can tell you that it was a wonderfull experience . But Pat , coming back hom , told her mother everything . The advirtisement I had read did not tally with the performance . Today it is used practically in all spheres and its influence on people is not unnoticable . I am writing to tell you that the students of my class have seen an advertisment for the London Fashion And Leisure Show . I had to become a burgler again and steal jewelry from the jewellers nearby . As I knew the teknics to break into a place without being noticed , I should not have been afraid but tonight I had to steal the most precious diamond in the country , which was very well protected . There were laisers all over the place , which I had to be careful of . I got into the car and gave the jewelry in exchange for my brother , took him and left the place . The programme offers enjoyment and education , which is esencial for young people . Secondaly , because we do not have to pay for the tickets . We have already orgonised our visit in a new programme . We are looking foraward to hearing from you . The future is unexpectable and human beings are afriad of dangers , such as tornados or earthquakes . What we really need in the next millenium is love , that is what will keep all the family together forever . Life is too short to think about poscesives . Our houses will change because of new technologe , which may make our lives more comfortable . What depends on us , is the atmospher we will have in our houses . The home of the future , for me , is a place of hapinest . We can not be aware of future technologe , but we might still have some feelings for each other . I have swimmed since I was in primary school . In particular , I liked cleaning the stage , because I could stand on a famouse singer 's stage and I could feel his enthusiasm , even though I had to clean it . I go to the beach almost every weekend to improve my surfing - it is the sport I like best - and I think it would be a nice oportunity to practise surfing too . There are some things I would like to ask about : the tipe ( and quantity ) of Clothes I will have to take , and if it is necessary to take some money or any additional stuff ( like raincoats ) . Since we were kids people have told us stories about two sides in conflit : the good and the bad side . What was more , it was closed because of refurishing . When I was a university student , I had to find out some imformation for my homework . I imagined where other contries are like England . I am still a student and I saw in the advertisment that there were some discounts available . The first thing I do every day , when I get up , is to prepare a fantastic cappuccino with my coffe machine . All day I speak with the majority of my collegues by telephone or e - mail . If I haven't enough time to cook I prepare my meal using my fantastic microwave hoven . The home of the Futere Technology is changing very fast and at the same time as I 'm writing my article about the future maybe technologists have made a new owen which co - operates with your refrigerator and has a program to make dinner for you every day without you having to do anything . What about rooms which can sense your mood and act according to that ? If you are tired for example then your stereo might put some relaxing musik on and turn down the light a little bit . I think that everyone should think not just about the positive side of technologi but also the negative . First of all , the advertisement I got layed emphasis on Danny Brook 's starring in the show , but actually , a disappointing , unknown actor played his part , and I wonder whether he had real skills . To make matters worse , not only was the restaurant closed , for no appearant reason , but also the discounts that were said to be available were not . We are all excited about the programm you 've prepared for us , especially about visiting the National Art gallery . We have seen an advertisment for the London Fashion and Leisure Show in a newspaper . We think it could be a great opportunity for us because we 'll see the fashion show might shop for leisure and sports wear and all the girls in our class are intrested in new styles in make - up and hairdressing . A scintist could discover the 4th dimention and we 'd get unlimited space inside the house . You could tell your wardrobe what clothes you 'd like to wear , your hob will cook your favourite meals and your refigerator will send orders to the supermarkets to buy the food . I AM WRITIN TO YOU IN ORDER TO GIVE A REPLY TO THE KIND LETTER I RECEIVED FROM YOU . I CANNOT EXPRESS HOW THANFUL I AM FOR THIS BEAUTIFUL PRIZE . I HAVE CHOOSEN THOSE BECAUSE I AM QUITE GOOD AT PLAYING BASKETBALL AND I SING EVERY WEEKEND IN THE CHOIR OF THE LOCAL CHURCH AS WELL . I HOPE YOU WILL BE ABLE TO ANSWER ALL MY QUARIES . THANKS FOR THE KIND LETTER YOU SENT ME LAS WEEK . BUT TO MAKE THE THING BETTER I WAS CHOOSEN TO HELP THE BAND AND THE ORGANISERS OF THE CONCERT . AS YOU KNOW , I AM A SOUND TECHNICH , SO I HELPED THEM TO SET UP THE SOUND EQUIPMENT AND THE INSTRUMENTS PROPERLY . I am writting to you in order to get my money back , concerning the musical show : OVER THE RAINBOW . First of all : the actors who were mentionned in the advert are not the same as the ones on stage . Or special flying shoes , and maybe you would have a screen on your watch to watch your favorite soap operas . It could be any day but please let me know nearner the time . I reciently was in London , staying in my sister 's home , and I went to se " Over the Rainbow " . Sorry , but none of this is proffesional , and I am going to make a demand exactly because you do n't have that , if you do n't give me my money back . But there was a little problem and it was that my parents did n't let me go to discos alone , so I had to go illegaly , and I decided I would do it . To sumarize the night , I am going steady with him , and he took me home . All the truth was then told , and now I am grownded for life . She defintevely does n't know how to keep secrets . I want to know if I can take my celular phone , too . To Mr. Smith , Circle Theater 's manager We had preparred this quite a long time ago , this trip to the capital and saved a lot of money as well . When we saw your leaflet that mentionned " London 's newest and best musical show " , we were so enthusiastic and curious that we immediately bought the tickets . First of all , I think we should consider the way people are dressing at present to see how it 's going to be developped in the future . In 100 years , it 's possible that everyone will developp his own style using all the new materials like plastic , latex , everything possible , as a way to create their own clothes . Finally , life in France is crasy , this is the tradition . I am writting to complain because I was really disappointed by your musical show , which is " Over the Rainbow " , last week . First of all , the advertising shown us starring , which is Danny Brook and Tina Truelove . However , when I saw it , the musical starred completely diffarent actors . I was really disappointed about it . Now then , how was this advertising , it was completely diffarent . I am really disappointed with your musical . I am asking you for my money back , because I did n't enjoy your musical . I am writting a composition about " How modern technology has changed your daily life " . This is our subject . This modern techonology gets closer between person to another person , get close between worldwide , so that , this modern technology changed our daily life so diffarent . First of all I would like to travel only in July because I am going to work in Aougust to earn money and after that ( from September to June ) I go to university as usual . About accomodation at Camp California , I would rather be in a tent than in a log cabin because in July the weather is really good and when I am in a tent I feel closer to nature . That show was n't what it was supposed to be and it is for that reason that I am writting to you . I am writting to ask for the refund of the £ 55 which I spent on the ticket for that miserable show . All the time there are more machines helping doctors and nurses with their difficult tascs . Going shopping is a good thing when you do n't know what else to do but it also has many disavantages . I am writting to complain about the musical show at the Circle Theatre . By using a car I not only get an easy way to move around , but I also destroy the enviroment . For instance with the arrival of the Internet , the new digital television and the researchers in medecin , we are discovering how we can change our lives with only the press of a botton , or look for something new by only thinking about it ... we realize that the new technology has just begun to advance , and it is likely in a few years we will be very avanced in this way . In my opinion the new techincs have more advantages than disadvantages . My reasons for saying this are that we can live better , we also have more ways of knowing now to live healthily and how to spend our free time . As you offer many activities it was hard to choose which ones I want to do , but I dicided to take swimming and photography , because I am very good at swimming and because I am currently attending a photography course in Vienna . There was always a lot of security stuff around us to make sure everything was OK , because there really were thousends of people . Edi Vedder even talked to me about their programms ! My golf teacher is my father and I 've only played in a practicing centre , but my father and his friends say I have good talent for golf . Firstly , we should defnitely put the news review lesson in , because we start every morning with that class and it is where we have a lot of discussion . I think , nextly we can film either the development class or the society class , because in my opinion they are the most interesting classes apart from the FCE class . Secondly time starts at 19:30 on the leafet but it actually started at 20:15 . Finally it said we could visit your theatre restaurant after the show but it was colsed because your excuse of being used at that moment . It said in the leafet that this would be a perfect evening out , while it was not that at all . She was so frightened and sad that she had no energry . Fathermore , no discounts were available . You have a responsoiblity to the audiences . These things are very convinience ; on the other hand , there are lots of disadvantages . Unfourtunately it is not so cheap . I was very serpride when I got the letter from you . And you need some imformation from me . I would love to try surfing because it is a very interessting sport and uses a lot of power and enigy so now is the end of the letter . And I want to know more about the money . Can you give me more imformation about the money that I need to bring whith me ? Now let 's start whith shopping at the Beverley Center . The Beverley Center area is the place that the teenagers like to go shopping at the most . Because everyone has different thinking like Beverley Centre if you go there every day or every week for shopping you will get very bored because sometimes there are too many people everywhere , like in the resturant and shops . Because all the smells in the market are awful - there is the smell of the meat and durty water , black and smely water , all over the market street . We hope to see you at the party and have a wonderfull time together . It means swimming at the wonderfull beaches , tasting the delicious food and having a wonderful time every day and every night with your friends . I am writing to complain about the musical , OVER THE RAINBOW , and also about the servic . Sacondly , in your advertisement I had read " Times 14.30 and 19.30 " . I look farward to hearing from you in the very near future , to offer me my money back . After that a being climed out of the potato . I could not belive my ears . The being moved its hand farward and ..... Immediantely after I heard , " And do n't forget your homework " . Moreover there will be a demostration of modern make - up and new different , shaking hairstyles . I look foward to hearing from you in the near future . The wind was blowing and the heavy rain was drumming agaist our bedroom window . As a postman , Peter had to deliver letters aroud our little village . Recently , I had the oportunity to go to your Circle Theatre event . Unfortunatly I never thought it could be so dissapointing . The first problem happened at the box office because there were abosolutly no discounts available . Because of all this , what was supposed to be one of my best nights turned out to be definatly one of the worst . Techology is always getting better . And it is responsable for many changes in my life , and I think I would n't be able to live without it anymore . Nowadays , with the Internet it has become easier to do school work and I also like to chat with other people or maybe read the latest news about my favorite football team . I also recently got a celular phone and I do n't know how I lived so long without one - because it helps to solve problems so quickly , it 's really amazing . But for me , the best thing is definatly the microwaver . There are some of the devices of modern techonologys that most help me but there are some others which are also very important for me . Lastly , can you please tell me how much money would be appropiet to take ? At the end of the concert , when it was after midnight and everyone had alread left , the group came up to each of us ( who helped out ) and thanked us personally ! Now I have the opurtuanity so I shall inform you fully . The oppurnity of being able to help in the concert knocked on my door by chance . She is a very nice person . I managed to scavange an authograph for you as well , I will put it in the envelope . I am looking forward to receiving your answer and do n't forget that it is a surprice birthday party . In spide of that fact there are of course many families especialy in small towns who eat lunch all together and then they solve their problem all together . And the difference is that those children are effectivily when they grow up and want to have a family , they do the same as their parents and have a happy family . Besides that the most importand thing is that these children have an easy adolescence and they haven't got pshycological problems and they are useful in sociaty . To sum up , family life is the most important thing for children 's phycological world which helps them in their education , job and their marriage in future . I'M WRITTING THIS LETTER BECAUSE TWO WEEKS AGO I WAS IN LONDON AND I WENT TO THE THEATRE TO SEE YOUR MUSICAL SHOW . AND THROUGH SEEING IT MY FAMILY HAD A VERY DISAPPOINTING EVENING AND SO DID I . YOU CAN READ BELOW MY POINT OF VIEW REGARDING THIS . FIRST OF ALL , WE COULDN'T SEE THE FAMOUS ACTOR " DANNY BROOK " BECAUS HE WAS ILL . I THINK THAT THE MUSICAL SHOW SHOULD HAVE BEEN CANCELLED FOR THIS ALONE . NOWDAYS THE MAJORITY OF PEOPLE HAVE A COMPUTER IN THEIR HOME AND SOMETIMES WE ASK OURSELVES IF MODERN TECHNOLOGY WILL CHANGE OUR DAILY LIFE . About accomodation I would prefer a cabin , because I suffer from alergic , and I think a tent would not be very suitable for my health . I won last summer 's swimming competition in the school . Although I 'm not very good at surfing I like it , and I always practis on my holidays every year . I would like to know if it is necesary for me to bring some money , and if we will have time to visit the City . About the clothes , do I have to bring some winter clothes ? I 'm very greatful to hear from you . You asked me to tell you about my experience helping at the concencert last week . I was asked to put all the chairs in order for the singer . This was only in the beginning . After that I needed to check all the microfons . After that all the singers arrived and I was in charche of greeting them and giving them something to drink . You can immagine how excited I was , especially because I always wanted some photographs of them and this was a special moment and I realice I had n't brought my camera . I was very sad . Actually this was because most things I saw were differend from what the advertisement said . Unfortunatly , Pat was n't very good at keeping secrets . One day , we went to a party , where she met some of the most pobular girls in the school . Afterwards , when I saw her , she laught at me and the next day all the school knew everything about me . I would like to have accomodation in a log cabin because I think it is more comfortable than a tent . So as we can see - shopping is not always enjoable . About the accomodations , I would rather stay in a log cabin . For weeks I 'd been planning to go to the threatre with some close relatives and friends but the problems that we had made this perfect night a disaster for all of us . To begin with , in your advertisment you say that Danny Brooks will be starring in the show but instead there was a different actor , which made us very disappointed . Another thing that is said in the advertisment is that the evening show will start at 7:30 but there was a forty - five minute delay . The crowd got really upset and we were going to leave at the first chanse we got . If you do n't do as I say , an article in the biggest newspaper will deffenetly change your ming . This is something that has trabled many people , especially those who work in the fashion industry . Fashion has made great progress since the ealary days . In the early 90s it was in fashing for women to wear only skirts . Nowdays women wear really short skirts , short t - shirts , short tops , and cut their hair short just like men . Boys pearce their bodies just like girls do and vice versa . People will wear all those clothes that expensive designers designe but no one wears . I took the dissision to write to you because I would like to complaine about your theatre . I am writing to you because last night I expected to have a wonderful evening and unfortunatly I was very disappointed . I and some friends disided to go to the theatre to see a musical show . We were so excitment . We are on holiday and we desited to go . We had never been to a musical show and we thought that it was a nowe oportunite . I believe that some ather actors mabe made the whole story more interesting . The first was very early , at 2:30 , and the ather at 7:30 . We went at 7:30 . Finally the musical show stard at 8:15 . We wate one hour . When the show finished , we went to the restaurant and it was closed because the people who whork ther do n't wark if they do n't get their pay first . I and my friends would be abrisled if you would give us back some of the money we paid . Humans have done many things Throu the years and made many things possible . Now we are in the 20th centure in which people have been to the moun and discavered medicines for serious illneses . I live in that century too . I believe that I am like that , I belong to that centure . I believe modern techonology has changed everyone , especiale now with computers and all the athers machins . First I want to talk about the combuter . Before , I used some ather ways to get information or play or comunicate with people . I can spend so many hours because day by day I discavered new things . Maby it is not good because you do n't have the oportunite to meet people and talk face - to - face . Apart from computers we have the telephone , TV , and gyms . About the TV . I spend many hours in front of the TV . It helps me to relaxe and spend some hours alone . Exactly happend and with telephone . About the gyms , I like them very much . Those places have so many machines that you can eazy lose weight and develop a wonderful body . Now , in conclution we can see , or I can see , that mapy I am not a very sociaple person but I can do whatever I want and take whatever I want only throu technology . Firstly , I was disapointed , because the actor Danny Brook did not appear in the show . I am writting to complain about what it says in the advertisement is not true . 3 You recommended the resturant after the show . It would be greatful if you considered returning my money as soon as possible . This is not nomally what people wear every day . The 2nd F is ' fulfill ' wear ever you have in your mom 's cupboard . For example long baggy troossers , which cover your bright brick shoes . Wherever you go everyone would love you because of your troussers , which would clean away all the rubbish that is on the road . If I can choose my accomodation , I prefer staying in a tent . I prefer this accomodation because I think it 's easier to meet people when you stay in a tent , near them , than when you stay in a log cabin . TO ANSWER YOUR NEXT QUESTION , I WOULD RATHER STAY IN A LOG CABIN . THE THING IS , I HAVE A FOBIA ABOUT INSECTS AND MY DOCTOR RECOMENDED THAT I SHOULD SLEEP IN AN ENCLOSED AREA . I WOULD LIKE TO ASK YOU IF IT 'S NECESARY TO TAKE MONEY , FOOD AND CLOTHES WITH ME . NOW THAT THE STUDENTS HAVE GATHERED TOGETHER THIS YEAR TO MAKE A VIDEO ABOUT THE BEST LESSONS AND ACTIVITIES THAT WE HAVE IN SCHOOL , EVERYTHING POSIBLE OF COURSE WITH HELP OF TEACHER MS . WESTBROOK . IT WOULD BE MY SUGGESTION TO THE PRODUCERS OF THIS VIDEO THAT THEY SHOULD FOUCOSED ON OUR WRITING AND CULTURS LESSONS . FOR CULTUR LESSONS WE DON'T NEED TO GO SO FAR BACK IN TIME ; FOR THE LAST 60 YEARS OUR CULTURE HAS BEEN CHANGING ENORMOUSLY AND WE CAN TALK ABOUT COMPUTERS , WARS , CARS , WEAPONS , ETC .... ALTHOUG LOTS OF PEOPLE DON'T BELIVE IT , OUR SCHOOL HAS A SPORTING IMAGE . I THINK THE VIDEO WOULD ENCOURGE STUDENTS TO DO SPORTS AND BE GOOD ATHLETS . I have received a letter from you saing that I have won the first prize in your competition and you need some information from me . I would like to travel in July because my hollydays are only in that month and the wheather in California is better then . They liked me so much and invited me to be responsable for the lights and sound . I told them that I will think about it but I belive I will accept the job . The most increible part was the laser show . They were drowing a lot of things in the sky during the concert . I 'm shure that you are going to love it . About my acommodations at the camp , I would prefer to stay in a log cabin because it 's safer than being in a tent and because you sleep more confortable . The activities that I would like to do are singing , because my friend told me that I 'm good at it , and the other activitie that I would like to do is climbing because I think it is very exciting although I have never tried climbing , because there are no mountains in my city . I appreciate the opportuniti that you are giving me and I 'm very grateful to you guys . Well on march 11th there was a group here in brazil called " Los Jagoares " , they sing pop music . And they are one of my favorites and as you know I have a cousin that works as an organizer for all the bands that would like to have a concert in Brazil and when my cousin knew that my favorite band was coming he called me and asked me if I would like to help them to install the speakers , microphones etc ... and I said , " Sure man . " Last Sanday my friends and I saw that advertisement about the play you were supposed to put on . We waited ther for forty - five minutes for it to start ! We really got bored , like all the other peaple there . And then delate forty - five minuites to present the show . That was very disapponted . My friends and I demand our money bacck very soon . And please do not be very suprised if you recieve more letters about this . Pat , my sister and I felt very rensposible . I did n't beleive him at first . But I could se that his face was happy and he was n't telling lies . I could n't beleive it . I had not seen him for five years . How are you ? I 'm not so well , and that 's the reason why I 'm writting this letter to you . Unfortunatly your advertisment said that the show starts at 19:30 but it started 45 minutes later . Children are not studying as much as they ought to , because they are watching TV , speacing on the phone or even playing computer games . This is also another cause of heart attacts . Your advertisement for the musical Over the rainbow said it was London 's newest and best musical show . I agree with that because it is a wonderfull show but it said that Danny Brook would be starring in it . In the advertisment it also said you could visit your restaurant after the show , and that is what I did , but when I got there it was shut for no reason . Pat could n't resist and told her brother Jacob . He was quite shocked about the news because he missunderstood . There , Jacob aproaches him slowly and tells him . It was all a missunderstanding . I hope all my wishes are realizeable . I can not bear it when somebody says something and then does just the opposit . It must be our decission whether to stay and eat there , or not . To cut a long story short , because of everything I have said above , the correct thing for me to do is to ask for my money back , and for you it is just to give it back to me because of all the trouble and disappointings you have made me suffer . HOW HAS TECHNOLOGY CHANGED OUR DAYLY LIVES ? In our grandparents ' time life was so different that we can not beleive that this huge change to our daily life happened in only one hundred years or less . Furthermore , as we all know , daily life nowadays is quite simplier and an example of this is that instead of buying a peice of ice to cool drinks ( as our grandparents used to do ) we not only have a refrigerator but also a freezer in case you want it faster and colder . Strange as it seems , we now have all types of machine or especialized technology to make our dayly life more confortable and less stressful . I am writing to thank you for notifying me about the competition and I would be very grateful to give to you the information that was requiered in your letter . About the Accommodation , I would like you to take careful consideration of the fact that I am ashmatic , so I would appreciatte it if you could reserve a bed in a log cabin . If you have this oportunitty one day , you had better buy the ticket to the concert or just watch it on TV but never do something like this just to get a free pass . If this had been my only disappointment nothing would have happened , but I had to wait stil quarter past eight to watch the show , instead of it beggining at half past seven as you had written in your advertisement . As a conclution to that horrible evening I decided to visit your theatre restaurant once the show had finished , but what a surprise when I found it closed . It consisted in having to memorisize a whole book of 250 pages in order to pass a final exam . On the exam day everybody anwered every question correctly . Secondly , although the log cabins appeal to me , I would prefer a tent because I think it is more comfortable and atractive . Nowadays most people are atractted to shopping centers , which are not always enjoyable . Forthly , that product is too expensive for you and the last problem is you buy too many things but you have not got your own car so you have to carry big boxes by yourself . First of all , the show was suppossed to start at 19.30 , but it started at 20.15 . I am looking foward to hearing from you . Nowadays , there are more and more people who want to become designers and the competion is increasing . I always wanted to go and se the USA ! In my opinion , staying in tents is mor exciting than staying in log cabins . I 'm very happy about this because I spent most of my scholl life playing sports , especially basketball . They mixed up our traditonal music and pop music . In reply to your letter recieved on the 13th of June , I first would like to say that it is a great pleasure for me to have been chosen . In fact there would be only one possibility in July because I will finish my exams at the end of that month and beginn vocational trainning the 1st of August . Then , during the concert , I helped to serve the beers at the bar . I met a lot of interresting people while I was serving drinks . Everything was very interresting , but what I particularly liked about the experience was the human relations . I met a lot of different people and they all taught me something new about behaviour or compation . I prefer to stay in a tent so I go campping every summer and am used to sleeping in tents . I 'm very good at swimming as I have been a member of various swimming clubs since I was 6 and I chose photograthy because I have a new camera and want somebody to teach me how to use it . Introduction : To support an idea to make a short video about daily life at our school I have spent some time discussing it with other students , and observing and analaising an avrege day in our scholl and have come up with some suggestions . I think it is a good idea to include a record of one of our big events such as the anual sports turnament or wellcoming evening for new students . Conclugen : To sum up the above I 'd like to suggest not filming anything longer than 1 or 2 minutes and having a nice mixture of places , faces and events . First of all , on the ticket it says that the actor was Danny Brook and realy he was not . Then , on the ticket it says that the show starts at 19.30 and , I do n't know why , it started at 20:15 , very unpolited on your part , and , also , you wasted my time . The other thing is that on the ticket it apears that discounts were available but when I asked about it , there were none . I thought you were a good theatre , where people can go and have a good evening alone or with somebody else , but realy I am very disappointed and I want to ask for my money back . I 'll never return because of the bad service you ofer . Truely . Considering my whole life I can say that moden technology has changed my daily life in many ways . It has , in some way , separated the family , making all of us worried about ower own things . We all work separately , developing individually and forgoten we have to all talk together to know about each other 's life . First of all , we went to the theather to pick up our tickets . We sat in our seats and waited for the show but it did n't start on time , it started at 20.15 which was a redicoulus time . They are just wersting time on it . Both of them I am not as good as you expect , but recently I have been intrested in them . Howeve , we decided to have the job , because of good money . Howeve , it was a great job . I haven't hade such a great experience before . I was very disapointed to find out that most of the things said in the advertisement for the show were not true . I think it will be a very good experience for me . I 'm realy excited about it . I 'd love to come earlier , but I realy ca n't because this job is very important to me , and I 'll need it as work experience for my further studies at University . I would also appreciate it if you would offer me accomodation in a log cabin , because of some health problems that I have , which do not allow me to sleep outsid on the ground , and to be honest with you , I never liked camping . At the end I feel very tired and angry , because I have spent the whole morning doing nothing , except for looking at them trying on diferent clothes , and that 's not enjoyable at all , in fact it 's realy annoying . To let you arrange the details of your programe , I 'm going to give you my answers . Firstly , I 'd like to travel in July because I 've already resistered on another summer course which starts at the end of July . About accomodation , I prefer tents to log cabins . Actually I 've been in an amature photographer 's organization for 3 years . At that time , I took the course which covered all the 4 kinds of strocks . And please tell me how much money I am supposed to need excluding transport and accomodation . Concerning the accomodation , I prefer to stay in log cabins , finding them much more comfortable than tents ! Last week during my holiday in London , I found your advertisment in my newspaper . You stated in your advertisment that he would come on stage , but instead of him someone else turned up . Luckely I could keep my secret for a couple of days but then it became urgent and I needed someone to talk to . I 'm looking forward to learning how to take care of myself in dangerous situations , such as getting lost in a forest , and I think staying in a tent will be very usefull for that . This is something I will never ever foget . I could n't believe that I had met that superstar who was dancing in front of a crouded soccer stadium . Unfortunalety my feelings are rather bad . The advertisement looked pretty interesting and I dicided to go to the theatre to watch this musical show . The ' theatre ' did not even appologize for this change . Despite my being a student and the advertisement saying that discounts were available , I was refused a half - price ticket , and the explaination ' why ' was n't sufficiant . Unfortunately it was not , which made me even angier . Saturday morning I went to the driving center for my first lesson . The instractur opened the car door and asked me to sit in the driver 's seat . Then I drove very slowly very ofen crossing the white line on the road . I looked in the mirror and I saw how my friends were lauthing . Pat appologized to me for not keeping my secrets . An admiree I am writing to inform you about the differences between your advertisment and the real show . Then , as we were told that the show was begginning , the second shock of the evening faced us . Maria spent all day thinking about who told them that . There were two posibilities : one , her best friend Becca , or her sister Pat . Obviously , Pat first denied it , but then she accepted that she was wrong , and apologyse to Maria . After that Pat never again talked about anyone without his or her permission . It is your desicion . I would like to send you some futher information which you need . I am greatful that I have the chance to choose the accomodation . I would rather stay in a tent if it 's not a problem for you . I would like to experience a reall camp again . I would like to thank you onc again for this great opportiunity . We would like to belive that shopping is the most wonderful part of our life . When we finally do this , we can not be confortable because of the crowds . The answer is that we choose the same street ( usually the most popular ) and the same time as six hundrets other people . I am writting to you to give you my opinion about your festival . To conclude , I was very happy to have a ticket for all events at a reasonally price , because for someone who does not especially like art , it was very attractive . I am writting to you to answer your question about school rules and what I am ( and I am not ) allowed to do at home . In my home , the only things I am not allowed to do are things which might disturbe my familly . For example , putting the music on too loud when my syster is working . I believe that it was a great idea to organise such a festivel , connected with art and culture . What is more , there was a wide vareiety of music . Although the artists were supposed to be from all countries , there were only six nationalities . However I was really suprised that the entrence fee was so low . I hope that this will claryfy your questions and doubts . I 'm looking foreward to hearing from you . I am writting this letter because I am very dissapointed with your musical show . When we arrived , there were a lot of people , the place was beatiful , all seemed perfect . After that they changed the principal actor , the one that replaced him was very bad , that made us realy angry . How has moden technology changed my daily life ? I think that technology has changed my life and everybody 's life in many ways . Nowadays , technology is everywhere , all over your house , your school , ofice or any place you can be in a city . This technology has helped to make my life easier and more exciting , but like everithing it has had some negative aspects . This technology has helped in many fields , like medicine , entreteinment , work and other things , so it has obviusly changed the lives of many people . The bad consequences that this could have are unimportan , in comperison with all the good things it has done , so let 's not focus on the negative aspects of it . This is a new era , an era for a new tipe of people , the feuta people Secondly the time on the leaflet is totaly wrong . Thirdly the ticket was not discount and after the show I visited the theater restaurant but it was closed because the show started late . Finaly last night was not a perfect evening . But when I hear the word future , I have an image of metalic colours so that in my imagination they are wearing metalic or brightly coloured clothes . I think people will wear clothes which are metalic or bright colourful colour with mixture of history and future fashion style in the future . Firstly , I must say that I 'll be able to have two weeks free only in July , since I have started work and am intitled to have a holiday only in July . Despite my appriciation of all kinds of sports and activities , I 've chosen my favourite ones , which are swimming and tennis . Another thing I dislike about shopping is some annoying shop assisstants try to sell any product to the " victim " coming through the door . Our department , which is the sales department , have to make good sales results befor the end of June because of the financial month . About accomodation , I prefer to stay in log cabins because I do n't like to stay in tents which are unconfortable for me . In Japan , I often play Golf but as you know Japanese weather conditions are not good enough for enjoying playing Golf , but California has good weather , which means sunshine every day , hopefuly . I am interst in playing tennis very much . Finaly , I have some questions . So , my templary job was sound engineer but I was not main engineer . When I was a university student , I studied sound effects , but I had n't used effect equepument my whole life because our school does n't have it . I used this equepument during the concert , but I was so compricate system . They taught me paticulaly . Take care of youself . Hellow ! I am very pleased that I have won the first prize in your competition and I want to tell you that it would be better for me to go to your Camp in July because that month I usually have a rest and now I am thinking about it . To answer our first question about where I would prefer to sleep , I prefer tents because they are closer to nature and I like sleepping in sleepping bags ( = BV bags ) . Now let me tell you about my sports preferances . Yours scinerly In our school we have a listem of " double lessons " . It means that every day exept Sunday we have four lessons and each of the lessons lasts for an hour and a half and it means a " double lesson " . I think that is more convinient than seven lessons every day and each of the lessons lasts forty - five minutes . It is convinient , I mean " double " lessons , because you have more time to understand the matherial which is givven out and because you have to prepare only four subjects for " tomorrow " and it is fewer then seven subjects . On Tuesday we have these lessons : English , Maths , Economics and Phisics . Not only these subjects are studied by us , but also Latin , Russian , Ukrainian , Biology and Phisical training , but as we study them we understand that they are not so important as our main subjects . I have always been interesed in arts and festivals . It was great that you organised the Arts Festival in this city , because people realy need this kind of sochibal activity here . I spent two days at the International Arts Festival with some of my friends and I must say we were realy delighted , it was a great idea to do that in London . I hope you will concider my opinions and that my suggestions will be helpful for next year . When I groue up I 'll change all the rules in my life and I 'll make my own rules which are not going to be too strict . ( It is a graduate engineering school where we are studying mecanics and energetics . ) That is why we have to single out wich lessons and other activities should be filmed . Secondly , we should interview the teacher of heat transfert since his lessons are really breathtaking . On the other hand , we should be interested in the other activities such as sports , wich could appeal to more students in our school . To make matters worse , we have never had the oppurtunity to see Danny Brook because , instead , there was a different actor ! You wrote so persuately that it would be our " Perfect Evening Out " ... I hope you will agree and share my disappointement . Sincerly yours , In fact , winterseason will be rare or will maybe even disappear . The ice will smellt , the weather will be warmer . People wo n't wear warm clothes anymore and they will certenly be sinthetic , because there wo n't be enough places to cultivite cotton and to let sheep graze . Our feelings will be transmitted electronical through our clothes to other people . " The Internet on our body " .. I 'm shure that is not impossible ! I am writing to you with a request for a change in the scedule of our trip to London . Unfortunatly I have to suggest a change for the programme for Tuesday the 14th of March . All of the students - including myself - think of this as a great opportunity that it would be a pitty to miss , especially when students can enter for free . I 've always wanted to taste the freedom that birds have , always been interested in listening to my blood pumpping in my vains , full of adrenaline , to let myself free , to shake from excitement . The home of the future will be very impersonal and the atmosfear will be cold and very essencial . I think this tendancy will become more common in the future . What is important is not their fashion but their knowledge , attitude to everthing including fashion . I apologise For any incovenience and I am waiting for your reply . Last week I recived your letter in wich you told me that I won first prize . I am writting in response to it . Please , when you recive this letter give me a call so we can arrange everything . We are going to make a video about daily life at school . The following classes are the ones I recomend filming . ENGLISH : the classroom is beautifull , and on the same day we do a lot of diferents activities , so it wo n't be boring watching it because we can have a great time there . Those three classes are my choises . I hope we can do them and make a very good video about our school . Finaly , I would like to ask you for £ 20 back as I was not satisfied with your services . But Pat could not resist the temptention to call the police . I am not used to sleeping in a tent and I think it might ruen my holiday . I hope it 's possible to sleep in a log cabin but if it 's not , you can also put me in a tent . Surfing is my passion . I live near a beach and whenever I have the time I grab my bord and go surfing . I am realy looking forward to this holiday . The realy thing was that I had to look after them because without me they would have been lost . The thing I realy liked was helping the artists and talking to them . I realy got to know them after the concert . Mabey next time you can come with me . That would be a lot of fun . Finaly , I did n't understand why you pushed people to visit your restaurant if you do n't open it after the show ! If I want to discuss something with friends or order a Pizza , I can do it as easely as I want , when I want . A good example is the celular phone . I can contact my family without any problem , I can inform my company if I have an accident in my car . To sum up , although I think they ought to abondone their lives partly when they entre the world of fame , they should take some action against journalists in order to protect their human rights . An actor was changed and the pubblic were not informated . Finally , the theatre resturant was closed for the holiday ! I think modern tecnology is very important in my life . I also think I am lucky , because I live in a period of tecnologic boom . In the last fifty years human tecnologies have grown exponensially . First the conquist of space , then computers , and now the new biotecnologies have changed , and are changing , the face of the world . In the present day , for ecsample , a lot of people have a personal computer at home , and a very large proportion of those also have the Internet , the new frontier of computer evolution . If I look back to the past I find that the computer is following the same route as television , the telephon and a lot of other things that now the largest part of the population have at home . So , in my opinion , new tecnology has changed , is changing and will change my daily life ; I hope that afterwards my life will be better . The whole class and I would like to thank you for the good programm which you have organised for our trip to London . The reason why I 'm writting to you is the class and I have seen an advertisment for the London Fashion and Leisure Show on Tuesday , March 14 from 10.00 am - 7.00 p.m. We all are interested in fashion and hairstyles and it is a great oppurtunity for us because students do not have to pay and we will know what we can buy on our shopping tour . I would like to suggest to you how the programm could be changed . Instead of a shopping tour on Tuesday afternoon , we could go to the show and do the shopping on Wedensday afternoon in our free time . What do you think about this suggesten ? I hope you will unterstand this kind of matter . The class and I are looking forward to hearing from you . That means for exampel , while you are sitting in the office you are able to controll your home with the computer . You can open and close the windows and switch the light on and off . Your freezer tells you when you have to buy some milk , eggs or chees . Or , without leaving the office , you are able to heat the wather for a hot bath . So in fact people 's homes will become more confienence and more comfortable . I think also housewives will receive more help with a robotor in the home . As representant of my class may I kindly ask you to partially change your plan for our visit to London ? It would be beutiful if you would agree to change your plan . It happened on a very lovly day in summer . I knew I could n't swimm so I realized it might be dangerous for me as well . The most important thing was a little boy of about ten years old , who was in the watter without his parents and could n't swimm . It was diffucult for me because I am afraid of watter . He was exhaused and could n't breathe . I am a good swimmer and I have some expirience in photography . However , I have a lot to learn . Actually , the price of the weekend ticket was excellent ! I , myself , was expecting a more expensive ticket as there were so many magnificient events . Well , I hope you found my suggestions reasonable as I deeply congratulate you on the great sucess of the festival . I would like to stay in a log cabin as I have an allergie to grass . If you have to go shopping again , because the fridge is empty or you need some new clothes , a lot of time , patience and straingth are needed . So even if it 's nice to have food or new clothes at home , without patience , time and straingth you had better stay at home or try to find the most convenient time for shopping . 2 Desember , 2000 I am writing to suggest a few things that could be changed or added to next year 's International Arts Festival , wich in my opinion has been a great idea . Although I read that stars and artists came frome around the world , I realised that they only came from six countries . All my family liked the films and the plays that there were very much , but I personaly think that it would be better to add more because there were only five plays and seven films . The rest of the activities were very interesting for us , we learnt a lot of things and we met a lot of interesting people , and all of this without being expensive . I think that the ticket was exellent for us because of its price . You know that I 'm studing in a difficult school , and as you can imagine you have to work hard and you have to do homework every day . I have friends that are studing in other schools and they are very happy with their freedom . It is true , they deserve to have a private life without journalists following them all the time , however this publicity brings them money , and a confortable life . They can travel around the world , buy everything , it is a good life , but at the same time , they must be very good peaple , because " Fame " is just for a short time , nothing lasts forever in this world . I would not really like to be a famous person , because you are not really yourselfh , and for me that is the most important thing . The first thing that dissapoint me was the star . but the reastaurant was closed because the show started at 20:15 and finissed at 00.15 and the restaurant was open until 00.00 . After all these problems I became dissappointed . If you could give me some of my money back that would be a great apology for the waste of time and my dissopointness . It was about Marine , who was our clase friend . Marine 's real father wanted her back but the other cuples did n't want to give her back because they loved Marine so much . The cuples could n't tell the truth to Marine because they were afraid of losing her . I was greatful to hear I have won first prize in the competition . That 's why I 'd like to feel adventurally . And according to the interviews , the most interesting class is the " upper intermidiate " class . The point of " upper intermidiate class " . Yesterday morning , I went to the toilet . I overherd two people talking about my son . I felt sorry for myself and I burst into tears . I quickly got out of the toilet . " Dear " menager of the Circle theatre , I was getting angry , but , finally , the show started and I became quiter . In the end , I asked for I money back ( and paiment for my orrible night ) : do you think anybody will give me something back ? ! Science and technology characterize our moder society . Walking on a city street , it 's difficult to find parks or " green " places with trees and clean air : actually pollution , traffic and noize are the main problems of our society . I know I 'm a " daughter of this techological world " and unluckly I think I could n't live without it : it 's rather strange that today there 's still somebody without a phone , dishwasher , TV ... But , sometimes I ask myself if the " ancient world " , without science , technological innovations and industries was more authentic than our one . It sounds very promissing . I could feel every movement which was caused by clowds or wind . I 'm pleaseant to win the first prize in your competition - two weeks at Camp California in the USA . I 'd like a log cabin for my accomodation , because it 's safer and cleaner than a tent and I would n't share it with anyone . We can analize when shopping is enjoyable , and when it is not . Buying coffins and graveyard plots to bury relatieves is not as enjoyable as buying clothes . The rules in Poland are quite similar to those discribed in your letter . I 'm a student from St. Petersburg , and I 'm studing in a drama acodimy . My freind & came to London for an excursion . Danny Brook is my favorit actor & to see him was my dream since my childhood ! It was a suprise when we were told there would be another actor . Also , we expected to get a discount as students , but international students cards are not valid in your theater ( that is very strange - even your advertisment has information about discounts ) . So we were late for our supper in the hotel and the theatre restaurant was also closed without any risons given . In the advertisment it said , , your perfect evening out ! " , but it was n't . I 'm waiting for your anser and hope I can get my money back ! I would call our days days of great technologycal progress . Industrial weel going faster and faster . They have more differet functions and forms . It is very intresting for me how new works , their possiblyties . My job , I think is a good way to get a profesion in the future . And I hope to find a realy good job in a good company . More and more people buy mobile phones , because they are very usefull , you get a lot of possiblyties like : using the Internet , buying different goods , booking tickets , controlling your home technic and many authers . Mobile communication is a key to sucsess in all professions that we have ! And I think that I made the right choice of profession - it is the perfect combination : a very progressiv form of modern technology , and the most important thing - it is extremly interesting to me ! Regarding the Accomodation at the camp , I would prefer the tents , because it is something different wich you do n't do every day ! Finaly I 've got a question : What clothes must I bring with me and how much money ? yours faithfuly , Another thing that makes you fourious is when you see a great shirt in a shop and somebody else takes it away or buys it before you can react . At that time I was lucky and also , I would like to recommand it to other friends . But people would like to change the lifestyle in their house because there are n't convenient appliaces in their houses yet . I 'm writting to you to explain the problem that I have had in your theatre . I recentely had a week 's holiday in London , and , during my stay , I went to your theatre to see " Over the Rainbow " because I had seen an advertisement for this show and I was really interrested in seeing it for many reasons , one of the reasons is that I love the star , Danny Brook . Secondly , in your advertisement the time of the show was 19:30 and in reallity the show started at 20:15 and the discount was not available . I think you can do a lot more things now than before with techonology . best reguard . There are many ways to earn money , especially in a big city , like the one where we are studing all year around . To be more technical and specific , we need a very flexible job , wich gives us independence and allows us to stop working when we are not able to , for example during the exams period . As a result I asked my acquintance to come with me to the show . By the time he got out of the building , the cops were everywhere but as long as Mallory is alive , he wo n't be arrested , with his unpredicatable mind . Secondly , we had to wait until 8:00 pm before being able to take a seat and the show finally beginned at 8:15 ! At that time , I used to buy a lotery ticket once a week and I sometimes won small amounts . One day , while I was checking my weekly ticket , I found out that I had five numbers out of six so that I would surely get a substancial amount of money . I had to wait ten days before the lotery head office would give me the cheque and one week before I could learn how much I had won . But soon everyone in the class was looking at me smillingly and I found out that I had many unsuspected friends ... Not long after , they were asking me to buy a coffee or lunch for them ; some proposed going shopping , others going to the cinema and a restaurant . Finally the end of the week came and I went to the lotery office to find out the amount I had won . With this letter I would like to ask you if you wuld change it because we saw in the London Advertiser an advertisement for the London Fashion and Leisure Show . The show is on Tuesday , March 14th , from 10.00 - 19.00 in the Central Exibition Hall . Yours sincierly , I knew that my brother was at home , althoug I did n't know where he was . In fact when I do n't feel very happy I decide to go shopping to try to cher myself up . It is at this moment when really I realiase I am getting fat and it is a horrible feeling . Another thing is my accommodation . I prefer to have log cabins because it 's easyeast for me . And how much meney I should take ? If you have chilldren , you will know very well that when you are busy doing something and the chilldren see something they want to have , they will do everything they can do to make you buy it for them , sometimes they even cry or shout at you and it is really anoy . Anyway , in families they usauly have this problem that when they buy a new one , suddenly they have a problem about where the old one is going to be and that is the beginning of an argument between mother and father or parents and chilldren . Eventually I like shopping too and I beleive everybody likes shopping , but before you buy something think first and you will not have any problems after that and the most important thing is make sure you have enough meney to survive . Secondly , my choise is the accommodation in tents . I think it could be more interesting . I could enjoy my time with other people playing , eating and talking outside . In my opinion if I choose the log cabin it will be like being at home . My other choise is painting . I have been painting since I was ten years old . I used to go to special classes and I do n't mind if you need me to help in the class . The most popular " sport " that everyone does is obiously shopping . Some people think that going shopping can keep you away from depression . You can enjoy your time spending all the money you have , buying clothes , jewells , furniture , etc . But other people do n't think like this . For example , there is a case of a woman who was shopping with her little daughter and without inttetion the girl got lost . The mother was shocked . She did n't know how to look for her because all the shops and streets were full of people going in and out the places . It was a nightmare but fortunaly the police found her . Can you imagen being in Japan or China and having to go to the shops ? I do n't think that I 'd enjoy it , all the people knicking you , you ca n't walk properly or buy anything . And also there are a lot of cases which show how people can be in shops . I mean that some people can fight to get something . Dear MANANGER of the theatre So try to imagine my situation . I had paied a lot of money and I did n't see a good show . I am really disappointed . Unfortunatety , Pat was n't very good at keeping secrets . Many years ago , more or less seventy years ago a young man , with an exellent capacity for thinking and inventing things , started building a big thing called a " time machine " . The only thing Pat had to do was to choose a date , one he liked , and to press the starter botton , and you know what ? He did it ! I am very happy to hear from you that I have won first prize in your competition - twe weeks at Camp California in the U.S.A. and I am writing to tell you my information . Firstly , I will be able to travel only in July because I go to univercity and I normaly spend most of the time working . to do . and I have holiday only in July . And I choose phtograghy and tennis from the activities list . I am taking photograghy lessons at univercity and I started tennis when I was 10 so I am good at bouth of them . From the 10 opitions that I have to choose from I will choose two , climbing , wich I have been doing for three years because I know it by heart , and swimming wich I have also been doing every day as part of my daily rotine in Portugal . I hope that coming after jully wo n't disturb Camp California 's plans for me . A survey has been done , and the issue is wich subjects ( lessons ) and activities the students think are the most enjoyable . Someone says it is maths - pratical , usefull - but the majority say it is boring , unless you 're choosing a job which demands all your maths knowledge such as accounting , otherwise you can use a calculator or a computer . The majorite have chosen History , which means a big journey around the world , either at the Roman life style , or in the midle ages , when a revolution happened with deaps and new lands . At all schools there is a similar daily life wich must be filmed . This is an important part of our life , wich is full of emotions in development . How has mordern technology changed my daily life ? Sometimes , I think I am a computer addict because whenever I come back home , my hand goes to the computer swich , automaticaly , even though I do n't want to use the computer . I recive a paper in which I was told about a play you are putting on and of the advantages I would get if I went to see it . I wish that had never happened . I am realy desappointed , and I want to have my money back . First of all , on the sheet I recived , it says that DANNY BROOK was one of the actors . That is not true , because insted of him , there was another actor , and I do n't know what his name is . You must understand that you promised me I 'd have a good evening and I realy did n't . I write this letter to tell you about the programme that starts tomorrow , about that exelent book I have told you to read . This exelent book tells the story of a man of 25 years that has a little boy , his son , that lives in a very bad condicion . The book is very easy to read , but if you do n't have time I recomended listening to the programme . Also , that they will invite a psicologist , the Autor of the book and maybe the president will talk so I recommend you listen to it . I might say that I am really good at swimming and sailling because I have been doing these kinds of activities for five years and I have had a really good training in water sports . As you know , I 'd never been to any activities as a valunteer before . The concert tickets were very expensive and I 'd seen an adversitement on TV . It said , " Be a valunteer at our concert and get a free ticket . " We have bought some snaks to eat and three students will sing for him , too . I 've just recived your leter , and I must say that I am so surprised . I was n't expecting to win it . I am still studing at the moment I will finish at the end of June so I will be able to leave at the beginning of July . Regarding the acomodation , I would prefer a log cabin instead of a tent so as to get a better rest . I have a problem sleeping and a log cabin will be more peaceful than a tent . It 's quite dificult for me because there are 4 of them I like a lot , wich are climbing , tennis , surfing and photography , but if I have to make a choise , I choose climbing and surfing . I 'm rather experienced at climbing . I have done it once a mounth since I was 17 . But on the other hand , I have never been surfing . I am a complete Beginer but I am dying to do it . A good idea to start will be an alarm clock ringing close to his bed , because that 's the way everyone gets up in the morning ( apart from the people who do n't do anythink ) . After this introduction , it will be time to show some of the acitivities everyone can do at the school , such as lesons or others like the library , our protagonist having a cofe with some coleagues in the cofe bar , the reception service . First of all , the most favorable time for me to travel is July , because I am in the final year of University , so I have to attend classes for a thesis almost throughout the year apart from July , when I can take a relatively long summer holiday . Secondly , I would prefer to stay in log cabins to staying in tents , since I have had a horrible experience being attaked by a swarm of midges , when I camped out . This is based on a questionnair conducted in the school and our English department 's investigation . According to statistics based on the questionnair , the majority of students feel the most enthusiasm for an English class . In fact , I visited some Englishe classes to find out that most students tried to answer questions and speak to native teachers . Consequently , it might be a good idea to film the English class so that the vibrant and active atomosphere may be able to be filmed . The girls ' football team is also famous for its reputation of keeness on practice . Actually , I can work with it in my office and visitting some website using the new technologies such as the Internet . The new inventions have transformed my life , so it is easier with modern technology ( the mobile , the car , the plane , the coach , the train , the medical advances and domestic appliances ) , they have created more confortable and pleasure . In fact , I expect a full refund plus compensation for the dissatisfaction suffured . I trust you will give immediate attention to this letter and I look forward to receiving a satisfactory responce by return of post within a week . When we think about clothes in the future , we should think about the enviroment first . Of course , technology will have developped enough for us to invent new material for those kinds of clothes . So we do n't have to worry about how heavey they will be . Firstly , I expected Danny Brook and Tina Truelove but I felt very angry when I saw diffrent actors . What is more , you advertize there were discounts available but there were not . You said that the musicial show started at 19.30 but recently it began at 20.15 . When I was 16 years old I fell in love with the most hundsom boy in our school . Everybody started to laught at me . I 'm sorry to tell you that I 'm really disappointed with your advertisment for the musical show at the Circle Theatre . And because of these circumstands , I would like to have a part of my money back . Faithully , He said , ' shure , no problem ' . As to accomodation I would like to choose a tent because I am used to travelling with my sleeping bag and my tent all over Europe . I am very good at basketball , and even if I am not a tall boy , I am a good playmaker and I play in a local team . I connected wires , I caried loudspeakers , and so on . Towards the end of the concert I hansled a bottle of wine to Poolo Conte . As you know he 's my favorite singer . Secondly , the two activities wich I 'd like to do during the camp are sailing and surfing . When you go to a shop it is dificult to find what you are looking for without the help of the shop assistant . After that you have to wait a long time in the qeue to pay and many times it is n't possible to pay with your credit card and you do n't have any money in cash . You said there would be stars such as Danny Brook and Tina Truelove , whose music is my favourate , but the musicians were actually some other people whose names I had never heard of . When they finished singing the last song I was surprice when they called me up on the stage and said thank you to me in front of hundreds of people . I am not goot at either of them . I haven't writen a letter to you for ages . I did n't need to pay an enterence fee because I was working there . Plus , I got an authography from a popular singer . I 'll give you the authography as a present . It is valuable of keeping on your suvinier . I would offer you one suggestion that concers the classical concerts . For me , it 's very stressfull and I usually run a lot to do it . In response to your letter that I received last Saturday I am writting to answer your questions . I usualy sing in my spare time and my friends love it when I sing and regarding swimming I was champion last year in my city . Are tablets necessary ( for headach , insects ) ? It is wonderfull how tecnology makes things so easy . That will be great because teachers are part of our life and they have to receive all our attention and friendship because if it was n't for them we would never grow and learn how to live our lives more confidents and with lots of good experiences that we will never forget . The reasonably - piced package , including tickets and accomodations , well suited my personal situation : comfortable rooms that are easy to reach and booked tickets can help you if you decide at the last minute . - emprove your kindness and ask for work in restaurants or bars . It is a good training period for real life too ( being patient with demanding people is required ) . - check your wallet and if you have enough money ( a very small amount ) you can arrange a trip to reach countries like Phili , Cuba , Zambania , and Morocco where people ( poorer than you ) will offer low wages for ôsmallö jobs .. you might enjoy your summer holidays and ôfind yourselfö I am keen on singing and I have won sevral singing competitions at school . When I first entred the concert hall , I was given a pass for working here . The programme is very exating and interesting , especially the river trip to Greenwich . This is the arrangement that we fouded with the other students and everyone agreed . We had n't enough money to buy food or new clothes and the worst was that my youngerst brother was terribly ill , and without money we could n't take him to a doctor . I want to travel only in July becouse now I 'm studying at National Academy of Defense and I do n't have time for enything else . I prefer that becouse I will travel with my wife and she always prefers that kind of accommodation . I tell you in sicryt that I do n't know whay she does that . I like to catch fisch too . My personal best is 27.66 for fivety meters . I would like to ask you about the weather in California in Julay . Are there any discoteks or something ? I would like to know if my wife can come with me , becouse without her I ca n't be there . Everybody gets up at six , and the first thing they do is run for about two thousends five houndred metres . Then they take a schower and everybody goes for breakfast . Two times a week I have W - F. This is very important , becouse every soldier schould be strong . After this competition there was mathematics , and two houers of biology . I do n't like biology , so I sleept on the desk in a classroom . I think that competitions should be filmed becouse my school is a kind of sports school . On video there schould be howe we get up . Houe we run , houe we eat breakfast . Then you should schow houe ouer school looks from outside . There schould be an intereview with students and with profesons . Daily life at my school is not only school and teachers and mathematicas problems . We must knou how to use a gun , or how to drive a tank . And , finally , right before the start they announced that Danny Brook woud not be in the show that evening . After the show I was not surpised at all to learn that the theatre restaurant was closed for redecoration . Undoubtfully , modern technology has changed my daily life . And the best word I can use to describe all the changes is " drastical " . Among the greatest inventions of man I come accross dayly are the telephone , computer and automobile . The computer , probably the must versatile invention , allows me to get access to huge informatonal sources through the Internet , to do shopping without leaving my house , to do my work more effectively and quickly . People used to wear very diffrent things from the clothes we wear now , we would n't even say that they are ' clothes ' . The things that people wear are changing all the time , everyone tries to be diffrent in public and very different sorts of clothes are being created . I belive they will wear very diffrent things . By contrast , in the future , I guess we would rather go back to the acient time , owing to have natural life style . We will be unwilling to give housework away . They are more comfortable and really match with the enveiroment . Although this is a new experience , I would prefer climbing and Photographe . The concert was a big success , a lot of excitment . The students mentionned that it would be very interessting to show the English lesson because some foreign students will probably join our college next year and it is the best way for them to find out about our English course . Additionally , the advertisement said I could visit the threatre restaurant after the show . Unfortunately , Pat was n't very good at keeping secrects . I told Pat everything even my secrects when we were still friendly . However , we are not friends anymore because of a secrect in the past . I told Pat that my father and mother were going to seperate . Maybe it was the wrong decision to tell her . She began to share that secrect with everybody , including the teachers . Finally , I decided to go to another school and I will not tell any secrect to anyone . To begin with , in your letter you asked me when I would like to travell . Thanking you in advance for your help , I look forward to hearin from you . Also you can compare the different cultures of all the countries and sometimes there are planned visities to historical places . In this lesson you can learn how to speak , write and read this foreing language with teachears that are well prepeared . theater To sum up , it is a big school where you have a lot of interesting lessons and some optionaly activities to do in your free time . Regarding accommnodation at Camp California , I would prefer to stay in a log cabin because I think it is safier than a tent . Now , my English teacher has asked me to explane what I think . In my opinion , nowdays , shopping is very easy and at the same time very hard . Amazingly , doctors tell people to look after their bodies during Christmas time : shopping can cause you a large variety of undesireble pains . About the activities that I can do at the camp , I chose to play Basketball , which is my favourite sport , because I want to do some excersise while I am on vacation . I also chose Fotography because it is one of my hobbies . I 'm writting you a letter , because you are the organiser of an International Arts Festival . There is only one bad fhing , that this festival was too short . I 've just received this letter from you , so I 'm writting to you . On Sathurday and Sunday we do n't have lessons , but it does n't seem that we do n't have work . I do n't have troubbles with my education . My friends and teachers are nice and friendly , but there is one thing I 'd like to change in my school . I 'd like to have more tests during the whole course , not only at the end , because it 's making me very lasy . Appart from that , the show was delayed forty - five minutes , consequently , everybody there lost control and became angry . Finally I would like to inform you that I have never had such an umpleasant evening in my whole life . The worst was that he did it unconciously . Later , I realiced it was the worst thing that could happen to me . I 'm writting to express my feeling and opinion about the International Arts Festival which was held a few days ago . For example , there were some conert halls which were too small to hold so many people , the stars and artists were just from six countries , which is not enough for the audience . This reminds me of what I experienced during my teeenage years . We believe that the programme is very cood and well organised and we would like to thank you one more time especially for that . The exhibition is caud the London Fashion and Leisure Show and it takes place at the Central Exhibition hall , in London , From 10.00 till 19.00 . The class is very excited about that because the Show conteins the latest Fashions , leisure and Sports Wear , make - up and hairstyles . Of course if you are in the public eye , the reasons why you want privacy are different , because if you are a politician , for exmaple , you fear for your life . Becaue As for accomodation I would prefer to stay in tents . It is amazing and sometimes amuzing how charming and strong the spell of luxurious supermarkets and cosy little shops is . But I do feel ill at ease when I see dissappointed or angry assistants ' faces on leaving the magic world without any souvenirs of it ! I do appologize about that . If this is an unconvenience , please feel free to tell me . Quess what I 've done ! The preperation days came . I had a chance to talk to them about their jobs and it was amuzing ! In particular , going to the Museum and the Art Gallery will be a great oppotunity for all of us , as they are world - famous places in London . It was okay , beause I was quite good at that , but the problem was that I had to jump onto the roof ! Another point which I think was ennoying was the concert hall . Yours Sinccerly Actually not all the schools in Turkey are so strict but unfortunatly the school that I 'm going to is like a military camp . My family allows me almost everything except smoking and drinking alchol of course , which I do n't do anyway . So if it 's possible could you arrenge it for me please . And also , I would prefer the log cabins to the tents , as I have never slept in a sleepin bag before . All of her funs were stooud up the whole concert and dancing . Some of the funs were not good at all because they shouted and argued , but most of the people were very good . I must say though , I would have to travel in July because it 's the summer holydays for schools and I would like to spend some of them in California and visit a few friends if that is possible . A log cabin would be the ideal accomodation . Presumably they are more spacious than tents and it would be easier to keep tidy . I would like to know how much money people ussually take and how much clothing . I know it sounds extremely boring and that is exactly what I thought when I was asked to help , but to my suprise it turned out to be much more fun than expected . Thirsthly , I would prefer to swim and play tennis , because I have been doing this since I was I child , and I think I am very good at each activity . A few minutes later the show started and the grup appeared on the stage . Later , when the show had finished , I stayed with the grup in their room for a few minutes . What I really liked doing was helping them with their clothes and make - up , because I learnt how to do make - up for someone and I spent a few minutes with the most popular grup in the world . Regarding starting time and the theatre restaurant , to see the musical I had to wait about 45 minuits because it started at 20:15 . I know you are always interested in detictive stories , especially Agatha Christie 's . Do n't be surprised ! Where the stories are concerned , they will not be difficult to understand because you already know the stories and the naraitors are going to read clearly . Regarding the accomodation , I would be pleased to stay in a tent , because this reminds me of my holidays with my family . I just had to take care of them , serving some drinks and food during the rehearshals . I write to complein about the musical show " Over the Rainbow " . I had a very disapointing evening because of many things . First the actor was a wery average actor . Also in the advicement they talk about discount tikets . Well they did n't accept my £ 20 discount tiket . Why ? And finally I could n't visit the theater restaurant after the show , it was closed . Why ? Alslo I wanted to tell you that the show was very borring . It was alwais the saim . Because of all these things it obiously was n't the perfect evening as was seid in the advicement . I had to explain to everybody that I actually did n't have a girlfriend . I explein to them that it was a good posibility , nothing else , but no one belive me , because Pat had told them that I had an actual girlfriend . This problem with Pat had a lot of consecuences , because I had a very hevy discucion with her about it . It was so heay that one of ower teachers had to calm me down , because I was very angree with her . Regarding the accomodation , if possible I would like to stay in a tent because I think it is a relaxing place to stay . And if during the nights there are any entrotenements ? The opposite situation is when I pass my exams and I really need to buy something as a preseant for myself . It is really intresting . That is the second day of our trip and it starts at 10.00 in the morning and lasts untill 19.00 . This technologic improvement is changing people 's lives , behaviour , even their homes . But we ca n't stop these technologic improvements . We should use them in positif ways . and we are practicing these things . In the future life will be more artifitual than it was . How delighted I was when I receved your letter ! I would like to ask you how much money I need , how the weather is , in order to pack the necessary clothing , and wheter I need anything else . I am sending you some pictures , the best ones only because there were some quite embarrasing ones . It was n't a spokeperson Kim but just asked him a couple of questions behind the stage . You did n't tell us any detile about how much the ticket costs to go inside . In my class room somary people stay outside London about 50% in my class room and everyone is verry worried about how they can stay for three days in London . And we 're very exsciting about your programme . Becauses in London there are a lot of shopping places , can you tell us about shopping and the time For spend or day ? Thank you For any detile more I think we go with you and enjoy a Fantatics programme . If I tell someting in the college baby someone like or dislike about my story but I think my story it very good for someone . In my college have got a new student every Monday and very big college around heir . and we have got three buillding and we have got a lot of teachers the teachers have got experied about teaching I think somebody come in my college you fried want to studdy in my college and you want tall anyone for your college you ca n't tell for something but you know yourself about college you know just you love it and very like it nobody dislike it somebody tall about class rooms it very big and comfortible . It starts with food ( monstruous ) and goes on to clothes , pills , games and so on . A simple and well - proofen architecture . Every electronic gadget in the futur home will be able to comunicate with other machines or computers . Regarding the accommodation at the camp , I would prefer a tent . The reason is that I like to live realy naturally and it is more enjoyable to live in a tent than in a cabin . It was marvelous . It was hard work for a while but I was so happy to help at a really big pop concert I ca n't decribe it . I realy enjoyed that and it was one of the greatest , if not the greatest experience of my life . The organizer of the tournement spoke with me and asked me if I wanted to do the same work in two months at the Rolling Stones concert Is n't that fantastic ! That 's the most suitable accomodation for a camping holiday . They also gave me a ticket to wotch the concert live . I was realy happy to be seeing the " Best Musical Show " in London . By problems I mean that the show started at 20.15 and not at 19:30 or why there were no discounts avaivable ? The most disappointing thing was that there were diffrent actors to those advertised who were not very good at acting . It was n't realy a perfect evening as you promised on your flyer . I was very disapointed and I would like to have my money back . If you think about the early days , when no cars were on the roads and no one had an opertunity to fly to another country for a holiday , people had to walk or go by horse and ship . Today , everyone has the opertunity to just get into a car and drive wherever they want to . This is also a very big disatvantage because many people are losing thier jobs . Another disadvantage is that everyone becomes a bit more lonely because they wath TV or play or work on the Computer and do n't see each other anymore because they do n't have to . We can hardly imagine life without compures , TV sets , microwaves , and so many other things , and yet none of these things existed seventy years ago . Her parents have been so upset that they have asked the school to help thier child and that is the reason why I 'm writing this story . I have receveid your letter concerning two weeks at Camp California in the USA . Regarding my accommodation , I would prefer a log cabin because it 's more confortable than a tent and less hot with the sun . However , I hope , there is water and light inside this log cabine . The salewomen are too busy and haven't a moment to give you advice . The other one is tennis , which is also my favorite sport and I have been playing for several years . Lastly , I would like to know how many people are comming to the Camp I will go to . I sould be grateful if you would send me the further information that I asked for and I look forward to hearing from you soon . Favorite lessons Favorite activities I would like to tell you about the show which we would like to see : It is " The London Fashion and Leisure Show " , which is going to take place at the Central Exibition Hall in London , on Tuesday the 14th March , between 10.00 and 19.00 . I 'm very pleased to recived this prize . Other workers are taking on other months so there is only July that is availible for me . I 'm very good at tennis , and I was a profeshional tennis player . Unforgivly , my climbing skill is nothing like my tennis skill , but I always love climbing . I 'm afrade of hights and I have always wanted to conqure that fear ! Filming life at school means filming the students ' actions and behaveare . It is very interesting and fun with the experement . Lots and lots of experements produce quite interesting and amazing results and I think Science is very useful in life . Also it is not a very easy subject so we can capture other students ' faces in confusion and puzzal . We can see students expressing their feelings , wonderful and excitting story that the student made up or from a well well - known story . Another excitting subject which most of the students like very much is P.E. Many students like to play sports . I do a lot of sports , so apart from playing tennis I am a member of our local swimming centre . I can reasure you that I am gradually improving my sports skills . It took place in a huge stadium which had over 4,000 seats for the " spactetors " if you can call them that . The musicians brough it in order to achieve a high standard of sound quality . I visited your theater and I was very dissapointed for a number of reasons . I 've read your advertisment and the reality was different to what was written there . There was no Danny Brook but instead of him there was a different actor and I 'm very dissapointed about that because I 'm a fan of his . There were no discounts availible so I overspent . The theater restaurant was closed for no reason apparent to me . It was a realy bad evening and because of that could you possibly give me my money back ? Everything was going perfectly befor last month when I met a girl from the other school . So one day she invited me to come to her house at night and to do so I had to run away from our boarding house and that was illigal . So I woke up at 2 o'clock in the morning and climed out of the window . Next day my best friend went to the headmaster and told him about me so he put me on sespend . At this we can see the latest fashions , imagintive make - up and hairstyles . I am sorry to cause you inconveint . Last night , when I went into my house it was quite scilence . My father always remembered his responsibily was to provide his workers with a good salary , which is the aim of his life . When I , with mixed feelings , went home I found my parents were stooding at the door looking very cheerful . ' It is a good idea to include the visit to the Science Museum and the National Art Gallery in the morning on Tuesday and Wednesday respectivelly . Firstly , there will be leisur and sports wear and the latest fasions . Secondly , there will be exibitions about makeup and hairstyles . And on Tuesday we will enjoy the London fasion and Leisure Show till 19.00 . I am looking forward to recieving your positive reply . We are intrsted in politicians ' and film stars ' clothes , hobbies , passions and intrigues . There are lardge numbers of journalists following them all the time , even in their private life . We can go for a wolk , go shopping , go to the cinema , get marrige or devorce . Why must everybody know and tolk about their private life ? I was not satified with the show at all because it was very different from the description your advertisement had given . It was a desaster and I am going to tell you why . But it has advantatges as well as disadvantatges . On the other hand there are disadvatatges , too . Firstly , the enviroment is polluted because of technology , although this is our fault . Secondly for us there are disadvantatge because pollution affects us indirectly , and because I do n't do anything but watch television , and it is n't very good at all . I am writing to complan about your service . You were meant to start the show at 19.30 p.m. but you started very late at 20.15 p.m withour any ecxpenetion to the audience . Unfortunately , Pat was n't very good at keeping secrets . I knew that but I needed someone who could understent and support me at that moment . I told her about my pregnency because she has a friend who works in a hospital as a doctor . I asked her for hepl and she promised me she would do everything that she could and keep my secret . Pat gave me some advice and I disayded to have an operetion . I got a bit dipress but my parents supported me . They stopped me having the operetion . You wo n't wait in the quee . I am a good swimmer and also good at golf ( handicap twelve ) . I took a certificate to become a Teachear in both of them six years ago before I went to " CROARA GOLF " in Milan where I organised the evening 's entertainment for the customers . First of all , I belive that if someone has time to go to the shops has the possibility . Do you know I am amuzing when it comes to playing tennis ? Great fun , very happy , if go with your girlfriend it will feel romatic , you should think something like this , but do you know it is not always like this ? If you interested in the clothes as well , but you need to remember , one is male , but one is female , they should have diffence fashion , at that moment should be had one is boring or have some bad chat , so in the end you both will feel unhappy or angry with each other . Mr. Maneger , In this unconfortable situation I am writting to tell you about some irratable problems . Then , the time stated as the beginning of the show was 19:30 and unfortunatly it began at 20:15 . Closing these facts , when the musical finished I was very , after wainting for the start of the musical and I was dissapointed with this version of Over the Rainbow . Everybody went to the restaurant , wich was closed without any explanation . I am very dissapointed with this evening and with this desorganized way of dealing with problems so I am asking for my money back . They always did things together , and they were the most popular boys in school . Both were very hanson , played football ; they were an example for everybody . Unable to keep a secret he told everyone , ended his friendship with Ted . Now Ted is rejective by everyone , no one talks to him and Pat is the example , but without his best friend and his honestity . In accodance with what you have told me about the accommodation I would prefer to go and stay in tents , because I think they 're unusual and that is not something that you do every day . In my oppinion you have to give some money back to me . She is a very good girl and she can deal with every promblem she has . My name is Agripina T. I just recive your letter and I would like to answer and ask some questions . While I 'm at the Camp , I would like to do two of my favorite activities , which are basketball and singing . In the past I was in a basketball team and I enjoyded it a lot . At the Camp , is there a free uniform or will we have to wear something spessial ? And is it nesessary to bring money , will we need it ? Students think that we do n't do anything and we do n't learn anything spessial . Our music lessons are speccial . And it 's always interesting to wach others while they do something like that . You can find futher information from me about Camp California in the USA . First of all I can go to Camp California only in July because I will start working at our local leisure centre as a swimming instructer . I would like to stay in a log cabin because I have had bad experiens with tents . We are all costemers of the big supermarkets . They have all that we need . But when we think about it seriously , shopping is not enjoyable , for example , if you forget something that you need for a salat . You have to go back to the supermarket and find the nearest parking space , then before someone takes the last fresh lemon for your salat , you must find out where the lemon section is , because they love to change the store around again and again . Firstly , I read in the advertisment that the actor would be Danny Brook , and this is one of the reasons why I went to the theatre . But I had a big suprise when I saw that it was a different actor , and I was very disappointed . I was very ungry with her . I did n't know what to do , I was afraid that I had lost all my friends . After a few seconds of thought I went straigh to Pat . " Why , why did you do that ? " Firstly , you advertised that Danny Brook , who is my favorite , is the lead but there was another actor insted of him . In accordance with study or work , I use the Internet , which is the easist way to get information from all around the world . When I asked for the price I was surprised becaused the assistant told me there was n't any discount available . After two hours I thought that all of this information was writted from a foreign point of view and it was n't the native opinion . I used my computer to collect reports from the Internet and I can promise I found so much information that I could n't analize it in two weeks . Changes wo n't stop caming : the WAP technology ( you 'll buy a cake from a vending machine without any coins , only one call ) , digital TV , virtual reality and more ... I would prefer to stay in a tent to staying in a cabin . Because it is something I feel more familia with . I used to go camping with my family every summer . Sometimes you can stay out all day just to buy a present for someone . It stard in the morning , and of course you have breakfast somewhere , and it gets later and you are still looking for it , so you have lunch , and finaly you spend more money than you thought you would . RECOMMONDATIONS I have just received your letter informing me that I won a two week holiday at Camp California , so I am writing to you to tell you my preferences for the travel and the accomodation . About the accomodation , I have no problems , but I would prefer staying in a tent , so that the holiday may be more adventurous . First of all , the reason why I bought the ticket was Danny Brook , who is my favorite star , and was going to appear in the show . I could say that we can not servive without them . It is getting more convinient and useful than our past life . Furthermore , it is possible to treat many patients who have serious desease more effectively , if we use modern technology in medical science . Because of convinience , we can use our time more effectively , but we should not rely on these things too much . Last week I attended the musical " Over the rainbow " , and I am writting in order to complain about things that really disappointed me . Hello . I 'm Robert and I 'm writting an article about clothes in the future . In my oppinion , in a hundred years we 'll wear the same kind of clothes that we wear nowadays . I recived your letter and I 'm very happy because I did n't expect it , so first of all I want you to know that I really fancy going to Camp California in the U.S.A . for two weeks , especially because I 've never been to this country . Finally I want to find out if there is a supermarket near the campsite and if there are any facilities for washing my clotches on the camp . I look forward to reciving a reply from you . We arrived quite early because we had to work out how we were going to serve people did with which order , so we started putting all the stuff in the appropiate place . I was very nervous because I 'd never been to a concert before and an hour before everything started the singer and the musicians were there and I could n't help it and I started crying - you can imagine , they were so handsome that I could n't belive it - I tried to calm down because I had to work , and later I began to feel more comfortable and when the concert started everything was so exciting that the time went very fast - although I was working - and it was like a dream . I want to know if it is avaliabile at that time . Fathermore , I would like to ask you which kind of clothes I need to take and how much money I 'll spend . But a lot of incovenients anoy them . First of all the parking is not convinent and is expensive . Sometimes you have to park your car in a futher place then walk to the supermarket . Futhermore , when you look aroud the supermarket , you ca n't easyly find the goods which you want to buy . It 's very confusing without the right singho . As I understand , it is very imortant to confirm the date of my trip . Now about accomodation . If it is possible I would prefer to stay in a tent . I am quite good at tennis , especially plaing doubles . Also I like swimming and I 've got two years ' experience of teaching swimming at a lesure centre . I ca n't concentrate in a shop , and I ca n't relaxe either . On the other hand , I understand very well that it is really nesseceraly . I also understand that nobody will do that in my place . I think it is an opportunity to meet different people ( even if they are pushing you ) , to understand what they like and what they do n't , because even some kinds of food can be in fashing . I am writting this letter to inform you I had a very disappointing evening at your musical show " Over the rainbow " at the Circle Theatre where you are the director . This was a very difficult decission but I had to take it because of my personal situation , all the time shouting and fighting with all my family . I 'm writing this letter to you to make a complaint about the musical show " Over the Rainbow " which I saw yesterday . I have to say that I 'm very disappointed with what I saw because after seeing your advertisment I expected more . The show was entirely different to what it says in the advertisment . I was a little more portient so I stayed to watch the whole show , which by the way was the worst I have ever seen . I do n't know why I paid £ 20 with no discount , which the advertisements said I woul have . Then I thougt that I should go to the theatre restaurant to have a drink or eat something so that I could n't say that I had wasted my time by coming here . Competers have entirely changed people 's lives . There are hundrets of prograns which help you communicate with your cousin in Australia or with a complete stranger who you want to meet . I wo n't ever forget the day the doctor told me and my Mum the thruth about my strange disease . Before it was packed into by the audience , we had to clean around the reception , but totally it was really exciting although I was just a member of staff in the small reception , because I felt great excitement ( especially girls ! ) from people queing . I know this is one right love . I 'm absolutely besorrted with him . She told everyone that I fancy him and everybody always makes a joke of it . That makes me feel so embarrised : I was very angry at that time ! Amaisingly , we can find that there are more and more computer users . My daily life has also changed a lot through the use of computers or mordern technology . Regarding the accommodation , I would prefer a log cabin because in my opinion tents are very uncomfortable to sleep in and they are n't very cozy . I would like to ask you for vegetarian food for me as I am a very extrict vegan , and to suggest what kind of clothes to bring . In a nutchel I think Maths , basketball , Speech and Drama , and History should be filmed . Firsty , I would like to thank you warmly for this great prize . Of course we will also show other activities , such as PE , the lunch break and the theater workshop . It was n't a " perfect evening out " like you said in the advertisement , so my friends and I would be gratefull if you would give us some money back , if that is possible . Your faightfully It 's a sad story but it lets you know about a tipe of life that you ca n't imagine really exists . I would like to travel only in July , because I am going to study at my university untill the end of June . I have a lot of posibilities for spending my spare time . Generally I paint some landscapes by using watercolours , but sometimes I try to paint like during the impresionist era by using blobs , oil paint and canvases . In order to preper it I visited some clasrooms during the lessons and I interviewed a number of students from our school . Some of the teachers are very good profesionalists . Their lessons are valuable , rich in knowledge and funy . According to students ' oppinions , the most popular activities are basketball , tennis , swimming and also the photography group and the painting team . It could maks the video more interesting . It will show that during every day we have great fun and we recived good , important knowledge . My school starts a summer holyday from 1st July and I am going to take a summer course from August . They can relax , reduce ther stress and they are happy when they find the thing which they wanted . However , shopping sometimes makes them stressfull . People often waste money on worthless things . During the camp I would like to pratise my swimming ( I have attended swimming lessons for 3 years ) and also I would like to learn how to take some good photos . Sometimes , unfortunatelly shopping can be very annoying , especially at Christmast or Easter time . The only advice would be : " Do not do your shopping at Christmast or Easter time " - but it will not make any sense , will it ? In addition to this , it was not the famous actors that you had mentionned in the advertisement performing , so we were disappointed . Then I had to wait 45 mins ; the show started at 20:15 . At that moment I was realy angry , so to calm down I went to the theatre restaurant , but it was closed , because of its bad hygiene and food . Now I only need to push a button , and things or mashines work on their own . Homework is easer to do with the cumputer than with a book sometimes . Maybe , I wo n't be able to understand how the things work and that scares me . I will be useless , because a mashine will do all the work . To begin with , it was not Danny Book who acted in the show , as you wrotte . And then about the tickets , you wrotte that there were discounts available but there were not . Finaly when we had seen the Musical , we went to the restaurant and it was closed because they were doing some dekoreting , and you wrott in your advertisement , " Visit our theatre restaurant after the show " I am looking forwart to hearing from you . Clothes are a very interesting subjekt to study . If you travlling around you can see a lot of difference still between different cultures . First I think that in the future we are going to wear fewer clothes because the climet is going to get warmer and warmer . Finaly in my opinion I wish we would dress more as we did in the past , using natural matrial . We must think more about the eviorment and live closer to nature . In the past , for example , we used to write letters to comunicate , but now we surely send an e - mail , a fax or make a phone call . Nowadays , you get everything immediatly , but will it always be a good thing ? I think not . So they prefer to leave their sons wecting TV . In my view , it was extremely interesting and satisfing for me all the concert long . Although I can not explain any more about the thing I felt during the concert in this letter , I 'd like to recomend you to help at a pop concert . I am afraid that I could n't write to you immediatly , but last month I enjoyed helping at a pop concert and so I was very busy . Regarding the accomodation I would prefer to stay in a cabin . I think that the combins are safer than the tents and they can protect you better in case the weather changes . I chose climbing because I 'm intrested in this sport even though I 'm not experienced . Yours sincierly Before the concert I helped with carring and putting in order some chairs on which some special people would sit . In addition I had the opportunity to talk to the singers and get a lot of autogrammes by them . I was doing different activities , from designering fliers to selling tickets . In addition I checked the e - mail dialy and answered the phone . In the advertisement it said that discounts were availble , but when I asked a member of staff in the theatre about the discount he did n't offer me one . I excpect this will be possible . Like earings , necklaces , bracelets , rings , glasses , hair bands , handbags , shoes , watches , etc . We had a great time together until we decided to visit the musical " Over the Rainbow " at the " Circle Theater " . So when the miserable musical came to its end , we were happy to leave the theater auditorium , but we both wanted to have dinner in the theatre restaurant , because no restaurants were open anymore , because it started too late . Pat was my big brother , who had heaed of some people paying , " safty - money " , but never know the reason , until he found a large amout of money in my room . Yeah fokes , that was the point I got interupted by my parents in this beautiful dream , but if you want to hear the end of my story than buy the " Rossall - School - magazin " , next issue , and you will hear the end of this unbelievable story . Secondly , for accomodation , I prefer to say in log cabins , as I have no experience staying in a tent , I hesitate to try . I used to belong to the singing club when I was a high school student and once we won the contest , moreover , painting is one of my favorite hobbies . Finally , I would like to ask you wheather there is anything I should bring on this trip such as specific clothes , extra money etc . It was a privelage to help at a pop concert . My dear friend , if I tell you this , I am sure you will get jelous . Dear Sir or Madamme , I 'd appriciate for giving me the first prize in the competition . The aim of this report is to summerize the results of the survey , which is about making a short video . Yet , one extremly hot day while I was pacefully walking by the sea and thinking about my own problems , I discovered my elder brother 's girlfriend with another boy . So , the next day , I nervously came to Pat 's appartment where she had been living on her own since she was eighteen . From the activities , I would choose painting - which I am keen on and I have done several courses - and Photography - about which I know just the basical skills . Besides , it was confirmed by scientists that consumism may develop into a compulsion . First of all , I was looking forward to seeing one of my favourite actors , Danny Brook , and it was very disappointing for me to see a diferent actor instead of him in spite of his name being writen in the advertisement . I 'm writting this letter to inform you about the disappointing evening I had when I visited the Circle Theatre . It 's something absoletuly necessary for every action people perform . It affects us both positively and negatively . I 'm writing to you on behalf of all the English class in order to let you know how excited we are about the trip to London and to give you some ideas of other things we are interresting in doing in London while we 're there . First of all , we 'd like to thank you for the programme you have already arranged . It 's wonderful because it covers most of our interrests . But also we would like to visit The London Fashion and Leisure Show that will be held at the Central kExhibition Hall on Tuesday March 14 from 10:00 - 19:00 . Thank you for your time . We 're looking forward to hearing from you opion . I had always wanted to travel abroad and experiece other people 's lives and cultures , so I decided to go to Paris as soon as I finished university . But in spite of all of these desadventages , I was pursuing my dreams and objectives and in spite of everything I was going to do it . It took me three months to learn the language and by this time the whole familly had fallen in love with me , so that when they decided to move to London , they invited me and now we all live here and I feel like part of the familly , even though it was very hard at the beggining . First of all , the starrings of the show were not Danny Brook and Tina Truelove . But your starrings were not there . From every singular things I have complained , it was totally different from what your advertisment said . And I can send e - mail to my friends via the Internet fastly and cheaply compared to the old - style mail - services . I 'm writing to you to complain about the disappointing expirience I had with your theatre . And last , the most disappointing thing , the advertisement also said that Danny Brook would be there , my favorite actor , but there was someone else instead of him . So , the show was not good at all and my evening was spoiled in spite of all that the advertisement promissed . So , that afternoon at lunchtime , I went into the teachers ' room and opened her desk and took the paper out quitely and calmly . That was the most scarely and daring thing that I did in my childhood . Sencerely ... Unfortunately , Pat was n't very good at keeping secrets and so his whole schoole knew about Sara 's experience . Sara was a very good puple . She spent the money on a magazin . I am writing to you to thank you for your very good organisation of the International Arts Festival , where I spent two exellent days recently . I suggest it would be very intresting to meet artists from faraway and exotic countries . To finish my letter , I hope that my notes can help you to make next year 's festival more intersting and comfortable for the public . It is so because you are young and need to make your life as intrestng as it can be now . Naturally , it 's easier to get a job when you are good at foreign languagers or computers . Also some concert holls were too small for this many people . The school is like a dungeen here . I do n't want to be so evel about school but rules are rules and they are limiting us within the borders of our school . We are not allowed to compare our thoughts during the lessons becase the teachers think that we are chatting . I had been looking forward to seeing my favorite actor Danny Brook , but he had been replaced by some other actor . I was not too happy about that and why did n't the show start when it was suposed to start ? Your advertisement was ful of false advertising . I hope you preciate my letter and that you 'll try to amend these problems./ Sally Svenssen I do n't have to mess around in the supermarket on a Friday evening , when I 'm tired from school , I just get all the groseries I need delivered to my door instead . Nowdays I spend 2 hours in front of the computer every day , shopping or chatting to people . The last thing I would like to know is what clothes I have to take , even though the weathe in July will be good . So , let 's imagen that your credit card is not working , or some one stold your cash from your pocket . Also it is very difficult to shop if you are handicapt . Staying in a que or croude is also unplesent . Your advertisement for the show contains further inaccuracies ; this show did not sart at 19.30 p.m but only at 20.15 . Under these circumstances , as your Theatre did not fullfil its commitments , I ask you for a full refund and I expect to receive a cheque for £ 15 , as soon as possible Yours faithfully Mind what you tell her ; she can make the worst of it ; gossiping is her favorite leisure activity ! A couple of weeks later , my sister called me when I was at work ; completely devastated and weaping scalding tears , she could hardly pronounce a word . I could get her to simmer for a second or two then she suddenly sarted shouting uncontrollably : - " Never have I met such a poor cow like Pat " , Olga hurled this at me down the phone . For activities , my first choise is basketball . I have been playing it since I was nine years old . My second choise is golf . However , I could enjoy it , even though I was a biginner , so I would like to practise and have fun at the camp . As I have told you , I had a chance to help at a concert of Majesty , a local band in which one of my friends played guiter . At first I just helped setting up the stage ; setting microphones , and tuning guiters . He explained to me that it was to controll the light . It was fun practicing how to move the lights and change the lights . Beside that , I 'm alergic , and that causes me problems when I 'm close to nature . I 'm quite good at paiting and I play tennis . I 'll be very happy if you can give me a chance to use the camp 's art studio and you 'll be able to prepare some painting materials like oil paints , canvas and bruches for me . I think the result of that action was marvelous . Everybody was very suprise that you can create such amazing things , using sizors and paper . The light on the stage was very bright and very warm which made the scenery very pleasent . The organisers paid for my acommodation and flight to Ireland . On the next day I helped them to build the scenary and I had enough time to visit a museum in Dublin in the evening . In order to know what sort of clothes I have to take , please can you tell me about the normal weather for this periode ? One of the most important things we have to film is our bycicle classes . Our school is now the best in the country in all ages . We are prest with this . We can show what we do in order to be the best . It would be good to show the swimming poole , the gim , etc . And on the other hand we also have a very important museum , and a very beatiful building in the school grounds , bowls them ! ! After that , your restaurant was closed whitout reason . Introduction : The aim of this report is to summerize the right lessons and activities to be filmed . Conclution I have always been interested in visiting other contries . Below is a summary of the most important relevent points with some recommendations . The fully equipped computer centre in the main building is extremelly good . 2 . The school arranges an amasing range of activities , such as excuintions , sports and different kinds of trips . Regarding accommodation , between tents and log cabins , I woul prefer a tent , because I love adventure and also because I can be freer . I know I will have the chance to do two activities , so I have choosen two from your list : basketball , because I have been playing it since I was eight and I have been part of a strong team for three years . The other one I have choosen is swimming ; for the same reason why I chose basketball . For exemple , if the shop is full of people , it is not enjoyable , because they will create too much confusion , too much noise with the risk of wasting time . The last problem I would like to tell you about is about the restaraunt there . First it helps to make my social life convinient . To sum it up , as technology is improving my life itself is becoming convinient . I would like to know with whome I 'll share sach wonderful days with the sports activities . My Russian friend ivited me to set up an exiting new business . First of all , in order to our firm purpose I wrote an inventation to my favorite idol - the poet and singer Boris Grebenchekoff . His one - week concert programme was so succsessful that we decided to invite him else , as soon as the tickets were all sold . I had a nice expirience as manager too . I am writting about the letter that I recently received from you , which is about a competition in which I have won the first prize . About the accommodation , I would prefer a log cabin instand of a tent , because it is safer and more confortable . The two activities that I prefer are Basketball , because I played in my school 's team for almoust a year , and Photography , which is a hobby that I am good at and I have done since I was ten . People are used to going to the shopping centre because it is easy and familiare . It is one place where you can have lunch or dinner , watch a movie after that , and , if you want , buy something at the shops . Instand of going to the theather , which is more cultural , or even having a picnic at Ikurapiura park , people prefer spending all their money at shopping centres . Circle theatre 's Manager : I am writting to you because I felt dissapointed after seeing the musical " Over the Rainbow " . First the actors who were suppoused to star in this show were not the ones put on stage . I had a discount ticket , but they refussed it and I had to pay the full price . Appart from this , the show started forty - five minutes late . I think these reasons are suficiently to ask for my money back . She was also concerned about being pregned , but she was afraid to tell John about it . He could n't belived what Pat had told him , so he broke Pat 's nose . I am now writting this letter to give you further information about myself with pleasure . Regarding the accomodation , I would prefer to stay in tents because I think it will be closer to nature . Tennis is my favourate sport . Shopping is becoming a popular way of killing time nowdays . Try to imagine the scence : twenty or thirty or even more people are in a quel outside the fitting room . The accomodation that best suits me is the log cabin , as the space in tents is very limited and I am not used to having all my belongings in order and packed at all times . With regard to the activities you offer , it is difficult to choose from such a hugh variety , but I prefer to do those I know better such as climbing . There are many things that can go wrong in the process of adquiring a product or service . Hunting on the high street , or the shopping malls for the desired bargain - because we ca n't afford to buy anything otherwise - often becomes a desperate atempt to attain a lifestyle promoted by the new consumerist society . In the end everything depends on our attitud to life , including shopping . But even without money to spend it is fun to rush from time to time through the sales that seasonaly appear , or simply look at the superb displays that shops have in their showrooms . First I did n't accept but finally she conviced me . I would prefer a tent rather than a log cabin because I have been told that the Californiai summer is hot and dry so , because a tent 's wind circulation is better , it would create a confortable coolness . It is finally your turn and you reluctantly hand the money over to the hypocrital cashier . They had a concert in my home town , that 's why the organizators were looking for young people who could speak English . The staff in that departnent were really friendly and helpful and they were also huge , like giants . Basicly , I helped them liaise with the local police and get some electronical equipment that they needed . By the way , I have already been invited to their next concernt . You said that some discouns were available . When I went to the reastaure I was really suprised . In the advertisemen you wrote " your perfect evening out " , that 's very funny . It helps me when I studie . I can find many things on the Internet or write my compositions on it . I can find cold water in the refrigarator but 50 years ago they did n't have the refrigarator , so our life is easier today . I think it depents if you are a man or a woman and now I have to say I am a woman and I enjoy it . First of all , as I see it the idea of an Arts Festival is great because in this way many people can get to know artists who cames from different countries . I always prefer to read books that are inusual in some way , because they give me the opportunity to escape from everyday reality . They are the main characters of that book , and what caracterize them is the violence of their passions . To make it worse , neither discounts nor restraurants were available that night although they were said to be available . According to the owener of the restaurant , it was closed because the plugs of some lights were cut off . However , I think there will be some diffences in the quality and materials of clothes . Although the appearance such as shape and color will not change so much in fashion . Some people are in a hurry , others are agressive and most of the others are very stressed . It is not always like that but we often see such a scene , even though shopping is becoming an entertainement not only for teenagers but also for adults . Then , the show was meant to start at half past seven and I had to wait fourty - five minutes because it started late . I am writting this letter to complain about the treatment that we received when we went to the Circle theatre in order to see the musical show " Over the rainbow " , whose actors were Anthony Keens and Tina Truelove . Indeed , it had a big swimming pool and a beatiful garden . At first I was irritated that contrary to your announcements no discounts were availlable . To my greatest disappointement Danny Brooks was not in the show , but his part was played by an actor whose ( lack of ) singing and acting skills did not make him a suitable replacement . yours sincerelly Technology is essencial to our life , we need it each minute , each second . Good because you can have acess to a lot of information , and it is bad because the computers are doing people 's work . We really appriciate your organising a very nice programme , which has been organised by you this time . In particular the River trip to Greenwich makes us very excited and we are really looking to forwold to this . We 're looking forwold to your reply . Invent glass was very eventuly to architect . Architecuture with use of glass brough us modenism in 1980 . In the future we can expect to have a new material and it will make our life more confortable and convinient . It is said that one of the reasons is that a small separete room makes children unsociable and depressed . Also as producing new electoronic , our home of the future will be more convinient . In addition I would like to choose singing and photography because I am good at singing and taking photographies . Last month I enjoyed helping at a pop concert a lot . Really it was a very intresting experience , particularly when I had to deal with a young group of children from Latin America . It was increible , because I learnt some Spanish words such as Hello , How are you ? goodbye , What is your name , house , dog , cat , boy , girls etc . I am very happy that I promed myself that I would learn Spanish this Summer at Huntingdon College . At the concert they were very susscceful because they were very confident and I helped with the sound system and our equipment was extraordinary and the audience were fantastic . It seems to me that all these failures were your falt , because you were responsible for the organisation of the show . However , conserning that I saw the show , I would like to get a 50% refund . Please reply at your earliest convinience . That is why I think that modern techology helps me in my daily life . I have once experienced having been soaked while I was sleeping in a tent dut to heavy rain several years ago . I would be really greateful if you could send me some information or any relevant brochure . I 'm writting to you because I wanted to tell you what a bad experience I had during my holidays when I went to see the play on at your theatre . To begin with , the actor you publised as going to perform , did n't . People are getting more and more adicted to this , because it helps to make everyday life easier and more confortable . I 've recently been to one of your musical shows called " Over the rainbow " at the Circle theatre in London , thinking it might be a good idea but it was desappointing . I 'm writting this letter to explain to you what happened and to look for a solution . To begin , the organitzation of your collegues in the theatre was awful for various reasons . Unfortunately , Pat was n't very good at keeping secrets , so without want I knew that there was going to be a concert in owr city given by , from my point of view , the best group in the world , Oasis . At first I got more angry with Pat than with my other friends in the group , becouse Pat was and is my best friend . Then I realised that she had reason . I was irritable becouse my parents were going to get divorced , but Pat would always be my best friend so I told her that I was n't angry with her and I was not going to go to the concert becouse I had to go to the court to solve my parent 's affair . And that 's the story of how I missed the oportunity to go to the only concert that Oasis have given in my city . Well , some people would say yes whereas others would desagree . However , I would add that journalists - being aware of that hard topic - should try to modorate what they write in order to respect other people 's privacy ; since they would probably not be happy to have their own private life exposed ! I was boried , so I decided to follow him to discover where he was going . I would prefer to be accomodated in a log cabin as I do not like sleeping on a mattress and I get an allergy to rubber . Could you , please send me some extra information regarding the ammount of money I should take to cover any other expenses , and also , what kind of clothes I should take . For the two activites that I chose are at first swimming . I am in the swimming team and I must go two times per week to entretain because I have a competition every weekend . Could you tell me approximatively how much ? The concert sarted at 6:00 pm until 2:00 am , and I started to work at 12:00 pm to prepear the stage with the musicians . After that , at 2:00 pm , when people arrived , I was at the entrance to take the tickets and , you know , it was incredibale because some people slept all night in front of the stadium to be in the front row . I saw old people , children .... and for me it was very strange and it was very interessting , because I met a lot of people and the best thing was that I knew the pop group who sang . It was fantastic . I am writing to express my dissatisfaction with the musical show which the Circle Threatre is staging . I recently had a week 's holiday in London and during my stay I went to your threatre to see " Over the Rainbow " . In the advertisment , I had read that Danny Brook was starring but he was not . The play should have started at 19.30 but it started forty - five minutes later , we were waitting there without anything to do . After the show had finished , I went to the theatre restaurand to hav something to drink and relax but it was closed because the staff was on holiday . Moreover the discounts were not available as you said in the advertisment and I paid £ 20 . I would like a refand because it was one of the worst evenings of my life . If this matter is not resolved , I will take it further . Everybod agreed with her . I 've recived your letter and I 'm very happy to know that I won the competition and the first prize . In answer to your question , I will have to say that I can only go to the campament in July because of my job ; they only gave me that month off . I would prefere to do some climbing because that 's what I do in my spare time and I do it quite well . Apart from that , if you give surfing classes I would love to take them ; surfing is one of my chilhood drems that never came true . I do n't know what tipe of clothes I have to take or the amount of money that I 'm going to spend , so if you , please , could help me by giving me this information I would be very pleased . Shooping is not always enjoyable . We have all been shooping once in our lives and sometimes it probably has not been very enjoyable , why ? We had a class discussion and we all agree on some points . For example , if we go to a big mall we will probably never find what we are looking for , and instead of buing what we came for we will leave with lots of things that we liked but we will never use . Most of the time he gets lost , or they start plaing around , making noise , bothering people , etc ... And when this happens you get in a bad mood and you 'll have a bad day shopping . So if you want to have a good , relaxing day shopping , we recommend you do n't go with your little brothers and to go with enogh time to look arround for what you really want . I 'm writting to you because I went to the International Arts Festival and it was a pleasure . On the other hand , I must tell you that some concert halls are too small , so you ca n't be comfortable enough to apreciate the event . Considering the advertisement , which appeared in one of London 's newspapers , I would like to present you with some of my complaines about your musical spectacle . Secondly , the time when your musical should start was changed , delaying your show for nearlly one hour ! Neither the beautiful surranding near your theatre nor the comfortable seats compensated for my horrible evening . However , technology has a bad influence on us - generally on our healf . However , he did not act , and his sustitute was not very good at acting . I went to buy the tickets but when I paid there was not any discount avaible . That wendsday Pat phoned me and told me that Sally also loved Paul . The weekend came and that Friday we went to the dyscoteque . When Sally came out of the dyscotheque I was very angry and I started to shout at her . Unfortunately I was very disappointed with it ; I was expecting the opposit . First of all , the advertisement where you advertised your show and what the theatre provides is totaly wrong . I came to see my favorit actors Danny Brook and Tina Truelove , but the actors whom I saw were other people . Another thing is that I took a particular amount of money to buy tickets and when I apeared in front of the ticket desk I found out that the cost of the tickets in your advertisement and the real price were n't the same , the real price was much higher . Also the show started very late compared to what was writen in the advertisement . befor the beggining ? So , after all of that , I wanted to have a nice relaxing dinner in your restaurant . I was very angry when I apeared in front of closed doors and there was a notice that the restaurant was n't open . In fact I am writing to you with just one main aim . I 'll be really delighted to resive the money back for my ticket . I 'm looking forword to hearing from you . Faithfuly yours Look at the history books for 400 - 600 years ago , or even for the time of the First and Second World Wars , to see how sociaty has changed , just because we stepped up the advance of science and technology . On the one hand scientists have discovered a lot of medisent for different illneses , but on the other hand they discovered many illneses which we had n't heard about before . More and more people die from some illnesses whereas a long time ago fewer people died from the same illneses , dispite the fact that they had fewer medisent . However , technology nowerdays has improved so much and it has changed our lives a lot . Today we ca n't even think how we could possibly live without computers or without airplanes . The computer is our way of communicating with the outside world , whereas with airplanes we can reach our parents and friends easily and much faster than we would if we used boats or trains . Every day scientists and technologyst discover and produce more and more new things and that is good . It has to be like that , we have to go forword not backward from the point where we are now . Society has to go forword not to stop in one place . Actually , I read the advertisment for the show and there were a few mistakes in it . After the play , we wanted to eat at the theater restaurant but we could n't . As you can see , there are some ( deliberate ? ) mistakes in the advertisment you made . I quickly became bored by this hypocrital attention they gave me . I am writting to complain about a musical show last weekend when I was in London . I felt very upset about your advertisement was totaly different from the musical show . It was quite rediculous ! She enjoyed sharing everthing with Pat , whatever it was . This made Nick very embrassed and he felt hurt . Finally , they got seperated . For example , if Diana , who was the ex - wife of Prince Charles , had n't been followed by paparachi when she was dating a man , there would n't have been a car accident which caused her death . It was a pitty that the halls used for the classical concerts were too small . When the sons were old they began to talk about their life , beginning with this story , which happend a long time ago . 17th Juni 2000 I 'm in London for the first time and I wondered what is interesting on your stage : I read in the newspaper the advertisment about the best musical show . In the advertisment the cast was very interesting - Danny Brook and Tina Truelove . I desided to go to your theatre but at the beginning it was the tranbles . In the advertisment it said - " discounts available " . I 'm a teacher and in Polan I have discounts but in England I do n't . I know this is another country . I was very suppresed when I saw a different actor . It was n't Danny Brook . I saw one week ago on TV ( the 23rd annual ) the fashion show in Paris and I was very surrprised because of the style . All the models had very strange long shoes made from black leather , the trouses were quite short and the jackets were elegant with blazzend materiell . People will wear clothes made from natural materials like silk , which will be comfortable and elgant . Because the world is now a global village people will wear at least one item of traditional or national clothing ( for example a peasnt jacket or hat ) , like they do now in rural areas from time to time . Sailing means an ever renewed adventure as you can not control the atmospherical conditions . When you ask to , the sales person offen answers that your size is out of stock . It seems like a good oportunity to practise it . I would rather stay in a tent , because I have stayed in tents before and I liked it . It is more pleasent than staying in log cabins and it is such a wonderful experience . I agree that shopping is not always ejoyable because a lot of things can happen to you . Therefore she had to do a lot of tramits to cancell her credit cards and to change her plane ticket . Well , regarding the accomodation at Camp California I would prefer staying in a tent . Well this is abosolutly true , espacially when you go shopping on Saturday . For exemple , you go into a clothes shop , you see all those women running around trying to find the shirt that will match their new skirt , so they are looking everywhere , pushing you because they think that you will take the shirt that they want . You get headaches , you get stressed , and finally you get bruses because of the woman who pushed you to get the pretty skirt before you ! ! ! I would prefer to stay in a log cabin rather than in a tent , because I find it more confortable to sleep in a bed , but it would n't be a problem if I have to sleep in a tent . I would love to do climbing and surfing just because those are sports I have never praticed before . That means I do not have any experience . The part that I enjoyed the most was that I felt I was doing something worthly for the community and also that I got to meet a lot of people . I have just recieved your letter saying that I have won the competition . I must say I was really surprised and happy to be given the oportunity to join the Camp for two weeks . I am concerned that you offer me the chance to choose two activities , while I am there . Because of my studies , I will take painting , as this is the subject which I am finishing at college , allways with important cualificaitons , and photography which has been my hobby since I discovered that I can mix , in practice , paint and photography . Concernet acomodation , I would prefer a tent since for me if I go to a camp or on an excurcion it is n't the same if I sleep in a cabin . I really liked one of them concernent a holiday in Spain for 3 days with hotel and breakfast included , for only £ 250 . I went inside to ask about that package but they told me that it was gone , so , I went to many shoops just to get the same answer . As and advise try to go shopping in the out pick hours , and do n't waste your time asking for promosion advertised in the windows of the shop . I 'm not really a young man and during the recent years of my life I becamehave become accostomed to comfort . That was cruel , because I was very haungry after the show . In spite of this , I have got all the equipement I need for painting and I paint very well . The food was deligious and fortunately I did not have to pay for it . I am very pleased to be the winer in your competition . When I was at the Univercity I was very keen on basketball and I played for the university team . In 1998 we were the champion of the First National Leque . Novadays our shopping habits seem to have changed . I can clearly remember my childhood and our only local shop . I was really astonished by all these shopping centers , like ASDA , HOMEBASE , etc . One day I decided to go to the shopping center which is only 40 metres from our house . I 'd walked arround for about 15 minutes until I found the door . When I entered the shope I was a bit angry . In fact , this activity seems to be very interresting . Unfortunately , I have never practiced but I feel like trying it . The best thing to do would be to show the cooking personnal because they are very nice . I advise finishing with a chemistry lesson so that people see the laboratery . The advertisment promised us a perfect evening but it was n't , so I would highly appreciate it if you could completely refund our tickets . Since Paul ran a very popular hotel in London , he told Pat that on Sunday the superstar Madonna was supposed to be staying there with her new misterious lover . I 'm writting to you to complain about the musical that I saw when I went to the theatre during my holidays in London . To my surprise Danny Brook never apeard . He is my favorite actor and I paid to see him not to see a different actor . Finally at the end of the show I decided to go to the theatre restaurant but it was closed because it had n't been repeard . I enclose my postal addresses and I will be looking forward to a completly refund Most of them believe that they are kind of crazy or ievel . Carol , a 16-year - old girl , said , " I imagine clothes in the future will be very strang . Maybe they will be in many colors and they will be very thight . They will be sinthetic clothes , I think , made of plastic or something similar . " Most young people like Carol believe the same and use their minds to imagin the variety of clothes in the future . After all , they 'll be the ones that dicide what the Fashion of the Future will be like . My name is Joseph and I am writing this letter to complain about the mess that the adimnistration of the Circle theatre presented to me . We paid to see Danny Brook , my son 's favorite actor , but we were quite disappointed . My son was very happy because he would see his favourite actor for the first time . Expecting British pontuality , we went to the theatre at 19:00 to wath the 19:30 show but it only started at 20:15 . It finished later than it was suposed to and then we missed the train . I did n't see any discounts available ; I thought my son would have paid less than I. As we had alredy missed the first we went to the theatre restaurant , which is famous for its good food , however , it was closed . Because of this , the least you can do for us is to give me my money back and work hard so that this theater , which is famouis for its beauty and pontuality does n't become famous for its desorganized shows . People have seen in the last 10 years how diferent our clothes can become . Clothes used to be made of coton , but nowadays we can see shirts , pants , socks .... made of almost anything . Computers are little things nowadays , but at the speed at which tecnology develops , in the next century clothes will tell our doctors about our healt at any moment , any time , anywhere , people will be able to locate us arround the world . In the future we wo n't buy clothes according to size or even color . Our clothes will adapt to our bodies , the weather , our fit , all our needs . I saw the musical show in your advertisment during my holiday . I think after 100 years , at least something will change as regards design , material , color , etc . Since I was a child , I have been intrested in camping and sleeping in tents . For exemple , how much pocket money will be enough and what kind of clothes I should wear . We think that this is a great opportunity and we are all very interested in going because we can see there the latest fashions , leisure and sports wear , a lot of different kinds of make - up and some famous hairstylers . The show is absolutly free for students . I have further ideas . In the futur , maybe in 2113 , there will be houses like now but with more technical things . But I think that people will altough need a bed and a table with a chair . houses will only be more modern and more practique but not very different from our homes in the present . The whole show and the acting was of a standard comparable to scholl theatre . When we decided to visit the theatre Restaurant after the show it was clouse because some decorating was n't finished . It was this last poin that got me angry . After evrything that had happened we went to the hotel tipped and very affect . From a small village to the town was a very long way becouse people used a horse and wagon . Evry family now has a TV , to travel long distances we use not just the car but elso the train and airplain . Before we had a phantasy about how people might travel to other planets , and what we see now is a spaceship cruising in space . Before it was only in our emegination . New techology has made our lives more comfortable and esee . Evrything that we do now we do with a computer : it helps to look after the house , to perform very difficult operations , becose the computer can think much faster than a human . And I can continue my list in this way ... becouse science never stops in one place . Looking forward to your repply . It was such a wonderful experiece ! When Jane asked me to help her with the publicity and specially with the inverviews , I just could n't believe it . You know that I love going to concerts , but being at the beging of the show and a member of the staff was something I was always interested in . In the area of publicity we were about 50 guys , all of us investigating , calling radio stations , organizing the reporters , specifying where the press would be for the interview that took place afterwards ... yet , it was incredibly satisfation when everything turned out just fine ! Before I go to the Camp , I would like to know what type of clothes I need to take and wheather there is anything I should take in case of any emergencies . I was one of the lukiest people from my school to be picked to help at the pop concert which took place in my town . Me and my friends were very excited , not because of the stage decoration but because of the pop sigers and bands whom we would be able to see ! However the best part was watching and listening to the singers and bands practicing on the stage . He started to consum the stuff at the age of twenty . He had problems at home because his mother wanted to settle down in Australia , but Peter was used to living in New York , where it is overcrowded and he was surronded by people . But I have booked a flight home at the beginning of Auguest . Nowdays the Internet brings us closer and closer . 3 . Liabrary . We not only borrow books from a liabrary but also study at a liabrary . With reference to the accomodation I would rather stay in a tent because I think it is the best way to socialize . In addition I need to know whether meals are included or not with the accomodation so that I can decide how much I must have with me . Just then Ake exlaimed that I could play the piano . yours sinicrely The restaurant , which I decided to visit after the show to eat something , was closed without any explaination and the perfect evening was completely unperfect . Often you wear very litte but short skirts and tops . The sommers and winters get warmer . Besides all those improvements and confort I ca n't stop thinking where all this will lead us . All these items of equippments are applications of modern science . Thank you for this prize , I 'm really ecited and emotional . To answer your reguest , I would like to travel only in July because I really apreciate this kind of trip and I 'm really grateful for your attention . Yours sincirely , Women ca n't resist the temptation of shopping and they are dissapointed when they do n't have the desire to shop . Shopmania is really unstapped . I know women who do everything they can to buy only a dress , or even worse , women who buy things they have no use for , for example , snap , esculptures , kitchen tissues , or eveything sold by telemarketing that really is unuseful , but they can not resist the fact of it " being there . " There are many facts to prove that shopping is not " pretty and armonious " , so believe me , it is not always enjoyable . I am writing to you becaus I was very disappointed with the show you have put on to attract people to come to your theatre . First of all , I came to see the play just becaus my faivourite actrice shoud have been in it , but she was n't . The time of the evening performance on the tiket was 19.30 and actually it started at 20.15 , which forced visitors to stay in one plase for 45 minutes , a waste of time . The ticket discounts were not available under any subconstanses and the theatre restaurant was closed . I strongly recomand you to pay a minimum 50% of the full price that I paid . Your faithfull I think that in 100 years from now , the clothes fashion will be totaly different . In my apineon the world itself will be different in temperature as a result of global warming , also people will become nicer , less this will take place , so the clothes will mainly be made from cotton with smooth colours like dark grean or gray . They will be comfotable clothes becaus the main point for any caind of clothing is to be comfatable . Also there will be no leather or fethers used in maiking these clothes becaus by that time the animal population will have fallen and Green pease will be very strong , much stronger and more pouful than it is now . So we can imagine the Future Fashion might be pleasent or unpleasent for different people . The styles will be more or less the same as each other and everyon will be setisfaid with them . I am writting to reply to your letter and comenicate my aceptance of the first prize in your Competition . This summer , I am available in July because in Agust my family and I are going to go to Canada and in September I will go back to university . If there is no chance to go to California in July , I could wait untill next summer . About accommodation , I would like to have a log cabin because last year I had an accident and my back was enjure , so sleeping in a tent would be painful for me . Due to my back enjure , this year I could not train and play with my team , so I am not fit . It would be a good aidea to be a referee . Althoung swimming is so boring , it would be a good thing to help cure my back . Could you please let me know where I will eate ? If there will be a vegetarian menu ? And how much is it ? And please could you give me some details about what the weather is like there and what type of clothes I will have to bringh ? It was a hard month because my job was very hard . I worked 12 hours per day but alwalys with fun people . I 'm writting this letter to complain about the musical show I saw during my stay in London . If I feel like talking to a friend I just have to call him and whereever he is I will be able to get through to him . I 'm extremly happy because not only do I earn a lot of money but also I 'm learning a lot . I 'd like to travell in July because I 've got an examination at USP in Roo Cohelo in July . And I 'd like to stay in a log cabin because I ca n't bear sleeping in a tent . I hate that kind of accomodation . I have recently recieved your letter saying that I have won the first prize in the competition . It was very fortuanate for me . Please could you send me an itenerary of the trip ? I think that shopping can be both enjoyable and unenjoyable because sometimes the shops are full of people , especially at the weekends , which normally is the only appropreaite time ! Danny Brook was meant to be the starring actor but he wasn not , another actor took his place . In the advertisement you say that there is a biscount available but there was not . I think the next time you write an advertiment you should put in the right information . I did not have a perfect evening with so many proplems . Yours fouthfouly Does technology have a bad or a good efection ? In the 18th cetury , technology started to grow more and more and the 20th century was called the century of technology . Thechnology helps people . It informs people , hospitals use modern technogoly , and the computer helps staders and helps people do their job . A lot of countries buy gans , for their defence they say , but they buy them to kill people . Technogoly ca n't ever stop going forward , and so people always go farward but with the same effection of modern techology . In the advertisment you promised a perfect evening out , but it was n't . It was very disappointing for me that the actor was n't Danny Brook , as was promised in the advertisment . So I want to ask for my money back , also I had to pay for but cancel the arranged taxi because of the wrong starting time in the advertisment . But are they usefull in every situation and everywhere ? My oppinion is that modern technology can help you to save time . But in your advertisement you wrote that people can visit the resaurant after the show . If I search for something like a telephone number or an adress I also look it up on the Internet . Another important point for me is that things like listening to music or watching TV sound better and the pictures on TV are being impoved , because the machines become better . The third problem was that it was writting that discounts were available , but when I got there it was not true . For example , a car , which is used by everyone every day , changed my daily life in the sense that I do n't need my dad or my mum to go ice - skating or to go to work . I can do it by myself and for me it is important not only because of technology , but because I can show that I am responsable . In spite of the fact that the weathe is bad , I play tennis . In addition speaking activity includes everything for learning English such as listening , speaking , and grammer as well . In other lessons , the teacher teaches lots of things which are grammer , English culture ... etc . I play the classicial guitar and I also sing . I have been playing the classicial guitar for three years . I wonder if you could tell me about the wheather and what kind of clothes I ought to bring with me . It was very ashameful for my mum . You also mentionned the activities I 'll be able to do . Althoug I 've been playing tennis for five years , I ca n't say I 'm a very good player . Firstly , the story takes place in South Africa , during the period of Appartheid . I think that you ca n't understand all the links between the events whitout reading the book more than once . Moreover , once I was paying for the tickets , I found another thing out : there were no discounts avaible . I had to go back to the hotel , because all the restaurants in the area were absolutelly crowded . Summing up , you might have realised that that was n't " my perfect evening out " wich you promised , so I would like you to give me the money I paid for the ticket back . She works as a model , and she was advicing him about what clothes , etc , ... to buy for her . I decided to go to a play at the theatre of wich you 're the manager to see " London 's newest and best musical show . " The principal reason I 'm writting to you at the moment is that I want my money back , because I felt so disappointed with the theatre and also with the play . Before modern technologies arrived , you could n't comunicate as easily as we can do today . You can comunicate with people in places where you would never imagine going to because it would be too expensive . But , if you do n't like using the keyboard to say something or to communicate , you can use video conferencing , a sistem wich lets you talk with other people simply with a microphone and speakers . The modern technologies mean I am able to listen the music I 've downloaded with the same quality as a CD , and if I buy a reproductor , I can carry this music everywere . Also computers and mobile phones have evolutioned thanks to modern technologies . As far as accomodation is concerned , I would prefer to stay in a log cabin because I think it is more comfortable , and , therefore , I have never stayed in a tent . To sum up , it is clear that not only should the film be about the subjects they study , but it should concern their sportif activities as well . On that date , I decided to spend one evening seeing a musical show as I was on holiday in London and was interested in the musial show . I found the theater rather noisy as I arrived very early to sit in the front row . However , something wrong occurred again . The actor ' Danny brook ' , whom you advertised in the brocher , did not play a part in the show . I am not satisfied with your show as it was compeletly different from the advertisement . It 's comletely different ! Have you ever been to a fashion show named " New trend , New Millenium " ? ' How can we go out wearing thouse clothes ? ' On the other hand , some people refuse to wear that sort of clothes so they prefre to wear nothing . In fact , unlike the perfect evening out that you promised in your advertisement , I had a very disapointing evening . There were also the discounts wich were n't available . Can you imagine how exsiting it is when we are in the dark and very quiet and we can hear the sound of the animals . I have been doing a lot of them when I have had some free time and when I feel empressted with where I have been . Fainally I would like to ask you about I have to spent any money over there without my shopping and how the weather is over there in July because I will pack the clothes as usedful . It was brillian . You know , you have to very strongly when you have to do that because when people came in they could n't weait to get to the frount and they try to go through very quickly . So you have to explain a lot of times to make people clamed down and stand in a row . Appart from that , here is the information that you asked me for : - About the accomodation , as I read , you can offer me a log cabin or a tent . That 's so good when you have the money to enjoy it but , appart from that , there are many problems . Also there is a big problem : the mony . Secoundly , I would be very grateful if you could accommodate me in tents rather than log cabins . From the list of activities in which I will have a chance to compete I have choosen basketball and swimming . But , is n't it a kind of entertaintment ? For example , emagine that you are a bride and you have to buy an appropriate outfit . I am writing this letter to complane about the Circle Theatre . Secondly discounts were not availabe . What 's more , the theatre reastaurant was closed when the show finished , because the show started at 20:15 . It was not a perfect evening whatoever . Everything will be usefull and combinient , even fashion . The most important thing will be your fugure , such as long legs or pear - shaped . Traditional or Comtemporaly In concrution , the clothes will be more interesting than now for everybody . I 'm used to sleeping in a tent from my previous holidays and I always injoyed it . I actually injoyed it working there and I would n't hesitate to work there again . The activities listed in your letter all seemed to be interesting . I chose to play baskelball ( I play in a club , I am quite good ) and to do photography ( there must be beautiful pictures to take in California ) . You asked me which accomodation I would prefer . Moreover , the admittion fee is free for students . In addition to this you will be able to control all parts of the house by computer such as temperature or vacume cleaning . About the accomodation , I would prefer to stay in a log cabin rather than in a tent because I have a bad back and I think that sleeping in a tent could be not just uncomfortable but also painful for me . Let us then ask : ' Is this activitie always enjoyable ? ' Far from the strengh that doing a sport or even going to work requires , going shopping is something you can do either on your own or with all your family and it could not be easier ; you only need a good pair of shoes and a wallet full of money . However , this apparently quiet and relaxed activitie can sometimes turn into a living hell ; you may only be able to go shopping at the weekend and then , if you do go , you will find yourself in the middle of a huge crowd of people , unable to get to any product or even shop and feeling dizzy with the mixture of smells that come from the people . On balance I would say that although it is true that shopping is not a difficult activitie , it is also true that it is definetly not an enjoyable one . I received your letter this morning and I was very suprised by it . I am writting to you about your questions . First , I can come there only in July because of my examination , I have to take it in June , and my new turm will also start in September . My main work was to take people to their seats because of a concert hall , which was the millenium dome . I also sold a panfulet of that concert , CD and T - shirts . I told you before Elton John performed at that concert , so there were a lot of famouse people . She was abusolutelly beautiful . I 'm pleased to receive your letter and realy happy that I won the first prize . July is also good because the wethear is warm and I could enjoy the time I will spend in the camp more . I think I can handde it very well . I 've choosen Photography because I love to take pictures ! if I have to take any special equipement for the activities that I 've chosen Whether there is a phone , a fax or e - mail so I can be in touch with my familie . Yesterday was Valentine 's day here in Portugal . In particurely I had to spend it alone ... again . I 'm writing to you to tell you about a pop concert that happend here in São Rafael . Red Hot Chilli Pepers came here for a short time and they played at the " Chedicard Hall " . It was realy cool because I did some backstage work . I was everywher . I took lots of pictures , asked for authographs and I even gave them my cel phone number ! They promissed me that they would call me someday , which I particulary doubt . I hope you answer this letter as quik as possible with lots of thing to tell me . Dear Manager : I am Angela Ounis and I am writting to you because I went to see ' Over the Rainbow ' , London 's newest and best musical show . Also it was said that Discounts would be available , but I did n't receive any discount as you were cheating us . I know that you have a big responsability but if you have told something to people , stick to it . I have learned a lot with the Internet . It gaves me the opportunity to know more about things I never knew about . I had n't tought about a restaurant to go to after the show , because if the advertisement had been right , there should have been a luxury restaurant where I could eat . Yours Sinceraly We are in the age of technologic development , of that there can be no doubt . First of all , we would like to say thank you very much for organising our tour around London and our programme , wich is considered especially good for us because of the places we will visit . Secondly , we saw last Saturday in the Oxfor News an advertisement about the London Fashion and Leisure Show and we would like to know if it would be posible to inclued this show in our tour . The show is going to take place in the Gernal Exhibition Hall in London , Thursday the 14 of March , so it could be a good idea to see this show intead of going to the Science Museum . We think that it could be a great opportunity because in one day we can see everything concerning fashionable clothes , new make - up and hayrstyles . In this letter you ask me for some further information for my conveniance for this trip . I received your letter , which says I won the first prize in your competition - two weeks at Camp California in the U.S.A. I apreicate that and I thank you sincerely for having chosen me as a winner . I acxepted and I want to inform you that I can travel only in July because I have booked my anual leave for that period . I helped them to prepare the room for the bads and I decorated the place for the singers . It took a long time to testifite the speakers and the microphones . The audients was excited and I can not discribe my happyness . I still have the sound of the music in my ears and the voices of the young people who were accompaning our songs . I am writing to you to give you some requiered information . As you can see , I have abosolutly no experience in it . During my stay I went to your theatre to see a musical show and unfortunatly I had a very disappointing evening . Lastly , about the ticket . The advertisment said ' Discouts Available ' but no way , I had to pay the full £ 20.00 and the restaurant was closed because of rebuilding or something . However , the point that I am trying to make is that you just ruined my hoilday . Your advertisment was unfair . As you are a manager , you have resposbillity for justifying this problem . and I have a right to get fair treatment as a costomer . But I say fashion is Artistic insperation which is expressed by fabric and all sorts of material . As I said before , fashion is somehow influenced by science and insperations that we get from all sorts of enviroment . These days we are very intrested in space and the millenium and things and many designers have shown millenium looks recently . I expect human beings will live on other planets and trevel around under the sea . I think people will wear those spacy and cyber - looking clothes after a centry . Can you imagin you and your friends going on a picnic to the Moon with a silvery skirt with Astronut boots with fire coming out at the bottom of your boots ? It could be more facinating . Swimming is my favourite way of excercise and keeping fit . THIRDLY , I WAS VERY EMBARASED TO DISCOVER THERE WERE NO DISCOUNTS AT THE ENTRANCE . I always have a positive approach with all of the most recent invenctions or any other kind of modern appliance . Anyway , the thing that has changed my daily life most is the personal computer and , expecially , the Internet . Also , the times printed in your advertisment were 14.30 and 19:30 . In your advertisment , it said that discounts were available for the tickets . I was rather thirsty and hungry after the show and your advertisment made a cup of tea and some cakes in your restaurant sound rather inviting . It was not my ' perfect evening out ' , as your advertisment said it would be , and I would like some money back . It 's a natural reaccion to be angry with somebody you do n't trust for gossiping about you and bothering your personal thoughts . But they do n't consider the problems the romours may cause the famous family or couple . In conclusion , no matter what the journalit 's aims are , famous people deserve to have their problems , their affairs , their private lives just as normal people do . I saw your advertisment for your show at the circle theatre , over the rainbow . Also it was written in the advertisment that some discounts were available , but there were n't any discounts . First she said to her father , then to her mother and finally to her brother , that I was from another planet called Orion , that was a billion kilometer from Earth and then I was so ashamed because I have been her boyfriend since I came to Earth . I would like to thank you for chossing me . I am good at Basketball and tenis . At university I atend tennis lessons for two years . Finaly I would like to ask you . As I told you two months ago , I saw the advertisment in the newspepper . Just before the consert I had to check that everyone was present . The consert was briliant . It was terrible ! We had a lot of problems from the beggining . Everything was all right during the band 's performance , but at the end some espectators came up on the stage and did some damage to the band 's instruments . As you can see , hardly anything went well , but the lights and the sound - for both of wich I helped carry things - were appropriate for the concert . Firstly , it was written in the advertisment that there would be stars and artists from around the world . I believe that it 's difficult to arrange meetings with foreign stars but there were artists from only six countries and in my opinion there That was excelent because it attracted people 's attention . regarding the accomodation , I would prefer a log cabin . I think that will be safer for all my things . The stage was gigantesque . The crowd could be all around . I mean , it 's still inbelivable . Can you imagine how like a dream it was to be shaking their hands . Your advertisement was excellent and it gave me a lot of enthousiasm . Then , I think it 's interssant to answer the following question : This little essay shows that I depend on technology and , moreover , because I 'm in an electronic eegenering school , I 'm keen on technology . I pressume if the term becomes longer the festival will become better . I can say the actions which are prohibitted at school are no problem at home . We think that it is a great opportunity because it is just once per year and it is free for stundents . We stayed at my aunt 's house which was in the center of the village . I loocked outside and saw two men go into the house in front of mine . The policeman came to take the bugglar and thanked me for catching him . The concerts and the dance show were incredable , except for the classical concert that was in too small a hall . Secondly , the plays and films were very well organized despide the low numbers . The art exhibition showed us a new lifestyle and society that was totaly different from ours . The talks by writers were very tecnic but they could be understood by all the people who were at the festival . In conclusion , I was impresed by all the good organisation , the service and the cost of the weekend ticket for all events . The price was excelent because there was n't any time limit . I hope that you organice this festival for all the coming years . At school you are n't allowed to bring in connected movil phones although there is more than one student that does . Teachers will take it from you if it rangs during school hours . If you break one of these rules you could be expulsed for a week , a month or for ever . As well will have the responsability of looking after my brother when they are n't at home . In answer to your question , I would n't change anything because I think that these are the minimum rules that a theenager has to have to be responsable in the future . I would be very grateful if you could give me some aditional information . When she finished the sound check , I went to meet her . I told her I was very happy to be there and to have helped at the concert , and I asked her for an authograph . I am willing to show you the authograph and the photograph . When I got to the theatre I asked for the discounts shown in your advertisement , but they were not avaible . Despite this I was still excited about the show , but then I sudently realised that Danny Brook was not performing , he had been replaced by an extremely disappointing actor . I 'm writing to you about our trip which you have orginesed . Sincerally , They nead to be with their family in peace . In fact on the stage appeared a compleatly different person . But to make everything clear I 'll start from the beggining . Our parents were very pleased and happy we were so ambisious . As a result we were grouded for all the holidays and all because of our almost perfect Pat . And what belter way to solve this than to give the festival an international character . If you like fishing , you can try to colaborate with the local market or some shops , in order to sell them the fish you catch yourself . I prefer to stay in a cabin because I have never been on holiday in a tent before , so I think it is more corfotabel to sleep in a bed instand of outside in a tent . The activities I would like to do durring these two weeks are basketball and swimming . I think I can play basketball well , because a few years ago I was a mamber of the scool team . Swimming is not my favorite sport but I prefer swimming to golf or tennis . Please could you informy me what you meen when you say all the accommodotion is paid for : is that including food and drinks , so that I know how mutch money I have to bring with me , and what kind of wather it is during this period of the year so that I know what kind of clothes I have to take . I was the assistent of the person responsible for the clothes and make - up of the pop group . Really I was very nervous about that because it was my first time with such famous people , but I am very happy that all the things went very well . Kim , what I realy particularly liked was when I was asked to do the make - up on my own . Really I was very nervous but at the same time very happy , but everything went well and everyboby was very hapy with my work . Realy I think you have to try to do the same thing next summer , I realy enjoyed it . You ca n't go outside in peace , and there is always a crownd of people who stand in front of your house waiting for you . We have seen it in an advertisment and I would like to go to the show . It is a great opportunity for us because the fashion is fashinating and free . For example , we would be able to put off our visit to the science museums on Thusday morning till Wednesday afternoon . The fashion show starts at 10 oclock and finishes at 7 o'clock . Journalists follow famous people , such as politicians and film stars , in order to take fotos and get information about them . I think that it is very dangerous because the famous peple can not have a private life and consequently they may suffer from deppresion and sadness , which may lead them to suicide . I think that the goverment have to protect them and their private life from the journalists , by punishing journalists . I am writing to complain about the Musical ' Over the Rainbow ' , permormed at the Circle theatre last week . What was suppoused to be a perfect evening out turned out to be a disappointing one instead . If I want to know how a friend is , I just have to phone him ; I can see how the world is getting on just by switching on the television , and I can cook in a few minutes using the Microvelle oven . In conclussion , I think that technology has two faces which affect my life as well as everybody else 's life . As far as accomodtion is concerned , I would like to live in a tent at Camp California . I prefer this type of accomodation because I am used to living in tents during my summer holidays . Concerning the accomodation , I would prefer to sleep in a log cabin , because to sleep in a tent would remind me of the bad experience I had in Ireland because of the weather ... But so far I have only taken pictures on holiday and of some family celabrations . Otherwise I had to keep walking untill the train started . I was sitting under a full - bloomed cherry blossam tree . Their hobies were listening to the radio , reading books or sitting on a chair without doing anything . The performances were great , but some halls were too small to accomodate all the people who were there that day . So , in the daytime , we can focus on our studyings . George was about to be linched on account of his skin colour . The place where I was hidden was overlooking the house where he was kept prisonner . No one was garding him . One of the reasons that I have visited your arts festival was to see a lot of plays . In the future , I hope to be an actress and that 's why I want to learn something from the professionalists . They want too much forstudent and are unkind to them . I 'm writting to you to answer the letter in which , as you probably know , you congratulated me for having won first prize in your competition and tried to encourage me to travel to California and attend that camp . I 'm writting to you to tell you how much I enjoyed last Saturday . It was such a beautiful night ! Unforgetable . I had always dreamt of being near " The Cranberies " , but I had never thought that the dream could become reallity . During the afternoon , Tim and I spent the hours before the concer lying in the park next to the sports hall where the concert was to be held . After a few minutes the dream happened : Kare - the guitarrist - appeared over there . Finally he said how grateful he was and alowed us to stay with them till the concert started . As far as accomodation is concerned , I would prefer to sleep in a tent . I have been travelling every summer since I was eighteen years of age and this type of accomodation is part of the ritual . Thanking you in advance , I am looking forward to your prompt respons to my questions . I went as a voluntier in order to go for free . The accomodation and the food were part of the contract ... everything free . I met lots of nice cool people , and what I most enjoyed was the crazy atmospher of the whole thing . The best thing was that I have learned how to take care of their expensive instruments and I have sung my favorite songs with them . There are so many monuments in California and so I will remember this holiday with my photographies . Finally I would like to ask you if I need any money , because you say all accomodation and travel costs are paid for . He also gave me his adress and telephone number if I need help from him in the future . It continues to develop and always will be the most importand thing in our life . When I asked something about a " discount " , your staf said that it was impossible . Becouse my favorite actor appears in it . We waited for the show to start for about one hour and fourty - five minutes . During the show , we did n't see Danny Brook , who is my favorite actor . If Danny Brook does not appear , you have to say something about this to the people who are there in the theater . This is your unforgivable mistake . After the show , we were still angry . We wanted to eat something in your theater restaurant . Yours faithfull Everthing is easy now . There was n't any discount avaiable for the tickets and I went to the theatre with my three cousins from Brazil . faithfuly , With the introduction of the computer in our civilization we can access the Internet to comunicate with our relatives and friends living abroad or far from us . Besides this , the information goes faster than it used to now and it 's avaiable at the same time in every part of the world . First of all , in your advertisment for the show you wrote that Danny Brook and Tina Truelove were taking part in the show . The people who were there to watch the show were very ungry and they were shouting because they had to wait too long . And I absolutely agreed with them . Also in the advertisment you wrote that discounts were available , but they were n't , and also that people could visit the theatre restaurant after the show to eat some thing or to have a drink . So , the next day Pat went and told his sister Sally that her friends were organising a suprise party for her birthday . When Sally heard that , she was very suprised and very excited . But although she was acting like this she was very ungry with her brother Pat , because he did n't keep the secret . Suddenly they all shouted " suprise ! " . Sally , although she knew about it , seemed very suprised ! So her friends did n't realise that she knew about the party and they were very happy because they believed that the suprise party had been a success ! It was an unforgetable night ! ! ! I am writing to complaine about the evening at the Circle Theatre presenting " Over the Rainbow " . Everybody will wear anything he / she likes , choosing clothes from any century they wishe without this being strange . On the other hand , if human society changes to become stricher and more limited , there will be only 2 or 3 types of clothing , formed by the needs of society . I 'm very sory to tell you that I had a very disappointing evening . First , I got there at 7:00 pm , because the show was about to start at 7:30 pm , and I needed some time to buy the tickets . I bought two tickets for £ 20 and when I asked for a discount , they did n't give me one , then I was kept waiting for the show to start untill 8:15 pm . Later when the show finished , I planned to go to the restorant and get some food , but it was closed , because it was being repaired . I was in love with a friend 's boyfriend and we were about to have an affair , but when I made the big mistake of telling my little and terrible secret to Pat , everithing started going wrong . Katrin , my friend , and the one I was being bad to , was very upset with me , and she was right , but I really did n't know what to do . I was in love with Brett , but I loved my friend too . Then I decide to talk to Katrin . I was very sory for all I had done , so I apologised to her and promised her that this would never happen again . Rescently I decided to see Over The Rainbow , a very famous and well - known show . Furthermore , I was shooked when one of the main actors came onto the stage . He was n't Danny Brook , one of the resons for my choice of coming to see Over the Rainbow . A century ago , when a farmer took the horses out of the stable and put the plouge behind them , we 've got the word " time " . I must say a few words about the new electrical cars which surely will have a central role to play , exspecially today when fuel is so expensive . I am writing to you to complain about the differences between what the advertisement for the Circle theater said about the musical show called ' Moreover , as I had read the advertisement carefully , I had planned to invite some friends to have dinner at the theater 's restaurant . So , because of the things I have mentioned , I think I shoul be given some money back . I look forward to recieving some information from you . In addition to this , there is less comunication between members of my family , because when we arrive home after an exhausting day racing against time , the only thing we want to do is lie on the sofa while watching television . On the other hand , and in conclusion , I think that this development has made my life more comfortable living sourrended by lots of gadgets with different functions . In the advertisment for the show you said that one of the stars was going to be Danny Brook , and to my surprise there was a different actor , and that realy disapoint me . Then the show was suppost to start at 19.30 hours but it started at 20:15 , more than half an hour late . I had read in the advertisment that there were some discounts available but there were n't . And the theatre restaurant was being pait , so I could not go there . As you may undertand it was not a perfect night and I was not pleased with the show or eaven with the service . Tecnology , are we prepeared for these advances ? Tecnology improves our lives , we have high - tech equipment for cooking , for work , for study , well nearly for everything . And when we understood the Internet , we thought that meeting people from other countries and being able " to chat " with them was the height of tecnology . But now we can eaven see the face of the person we are chatting to . The Internet is amaizing . And now of courese there will be someone trying to improve it . Tecnology changes our daily life , it makes our life easy to live and of courese more confortable with computers , televitions , radios et cetera and sometimes safer , as with medicine . Definitly we should try to understand tecnology . If we know how to use it , tecnology will improve our way of life . When I met Caballos , my best friend , I felt embarassd and disappointed and I could n't say anything . It is as if they lose their concience while they are shopping . When you go shopping and there are a lot of people in the same place , all trying to find the best prices and not carying about anybody , this could drive anyone crazy . The long queues , crowded places , high prices , sales , all these things conbined could make shopping an enjoyable thing for people who like doing it . So while I am at the Camp I want to take a lot of photographies and climb a mountain . Shopping sounds very enjobleable and is fantastic for women . You can find a lot of interesting things which were unexpected . They are also the lessons which English people and other foreigners are particularlly curious about . This is a good oppertunate to see how they learn in class . In conclusion , besides all that I mentioned , I highly recommond you video the students ' daily life and interview them . In fact , now I can write to friends who live in foreign countries , for exemple , in the morning and receive their answer in the evening or even just a minute after writing . Therefore I regard the Internet as quite a powerful tool and I believe it has given more strenght to relationships between people . I am really glad to receive the first priec in your competition . It will be very plesant joining the holliday . Regarding your first question , I would like to travel only in July because it is my school holliday so I would not miss any classes . As regards activities I would choose singing and surfing . Surfing because it is my favourit sport . I have been surfing since I was a child so I am pretty good at it . And singing because I really love it . I am not as good at singing as I am at surfing but I like doing it . I only had to stay behind the drummer suppling them with water whenever they wanted . I had a really nice time with them even tought I would've preferred to stay at the front with the other people , I hope you 've enjoed my experience , and I hope to hear from you soon . I received your letter and would be glad to spend two weeks at Camp California in the U.S.A. but I will only be able to go in July because in June I will be in Austria with a friend and for August I have rented an appartment with my family . You can come across a very disagreable shop assistant and if you find what you wanted , you will not want to pay him or her for it . There is nothing more disagreable than that . Further to the umpleasent event that took place last week , it is my right to complain about the musical show I saw when I was in London . The show was supposed to start at 19:30 and it did not start until 8:15 . Then I felt dissappointed because the main actor had been changed . If that does not seem enough , after the show my boyfriend wanted to take me to eat something in the theatre 's restaurant but the umpleasent surprise was that it was closed because all the waiters were on holiday . I 'm always having holidays in July . It is my favorite time for holidays . Just the nesseccary . I think the people who enjoy shopping are greede for materialistic things and they haven't any interests in the spirit ( ? ) , in the intelect life . We must do something to help other people to feel better and be usefull . It was very interresting , because I did different things . I took some photographies and I 'll show them to you when you come next week Dear director of the Circle Theater ! On Friday we , my friend and I , visited your Theater to see ' Over the rainbow ' . It should have been my best evening that week , unfortunatly it was n't . Instead of 7.30 am as your advertisment said , it started at 8.15 am . When the show started Danny Brook was not acting , which was a great dissapointment for us both . We are both big faan of his When the show was finished we went to the resturant to have something to eat . But then it was cloesed for repairs . Because of all this troubel I think we should have our money back . And next time , make soure that your advertisment is accurate ! When were nine years old and were in thired grade we had a ' House ' where we used to play all afternones . In fact it was n't a realy house , it was some stones between the trees in the littel forest neear our house . It was a secret place and we had promissed each other not to tell anybody about it . Useally we were cooking flower soup , and swapping secrets . One day when I was there alone , I heard some other kids aproting . I sat down behind one of the stones so they could n't see me . One minute later , Pat and half our classe stod in ' the House ' looking and laufing at me and my flower soup . Maby she did it to make friends . I do n't want to be rude , but this is not proffessional at all . Lastly I would like to inform you that I wanted to have dinner at yor restaurant but they told me it was closed because it usually closes at 11:00 o'clock , So I am asking you : why do you adverstise it if is not going to be available to the audience ? First , I am very dissapointed about the star . I'M WRITING TO YOU TO DESCRIBE MY DESAGREABLE EXPERIENCE IN YOUR THEATRE LAST SATURDAY , AT YOUR SHOW " OVER THE RAINBOW " . BUT WHAT I CANNOT FORGIVE YOUR COMPANY IS CHANGING THE TIME IT STARTS AT THE LAST MINUTE , MY HUSBAND IS A DANNY BROOK 'S FAN AND HE FELT REALLY DISSAPOINTED . WHEN THE SHOW WAS FINISHED , WE WANTED TO GO TO DINNER , AS YOU SUGGESTED IN THE PROGRAMM , BUT THE RESTAURANT WAS CLOSED BECAUSE IT WAS ON PUBLIC WORKS ! ! ! Definately the worse . I would be greatful if you could consider our suggestion and please inform us of your decision as soon as possible . There are people from both sides of the agrument who have strong feelings . Both of them are my favorite sports and I 'm quite good . You asked me for some further information and here are my " desirs " : I stood at the entrance and theire I had to check the tickets . Famous people , such as politicians and film stars , deserve to have a private life without journalists fellowing them all the time . Famous people have always been the center of interest for a number of people . This show would give us a lot of information about current activities , fashion and what is happening here in London with , for example , the lastest fashions , leisure and sports wear , make - up , and hairstyles . If you agree , after the Science Museum , we can have lunch at a restaurant near the musuem , then we can go directly from the restaurant to the Central Exhibition Hall . It does n't matter who they are , where they come from , what color skin they have . There will be a numer of Developments in Technology in the future , which could make our life easier to live but what should remain the same is the feeling of being together and love . Therefore , I hope that you can agree to a suitable arguement between you and me . I started trainning in 1996 , and I have never given it up . There are more and more retailors opening . I could n't believe my luck . I was really sure that I won a return ticket to the Meditarenian Sea . Thirdly , the person on stage was very strenge to me , because I expected to see " Danny Brook " , but I did n't . Althoug modern technology gives you many comfortable things for living , can it give you nature , peace and fresh air ? Let me express how disappointed I feel at this particular moment , or I should say angry , better sad . I would never have expected that I could be so decepted . This is not the firt time I have been to your theatre and I have to tell you I have enjoyed many other plays , but be sure " Over the rainbow " will be the last one . As I am specially fond of musicals , I even travel abroad to see what 's new , I am probably one of your most devoted customers . I know this word is not the best but you have demostrated that the theatre can be just as cold as any other business . Of course , you shoud give a refund for the money spent , not only to me but to all the audience . New fabrics create new textures , all kinds of accesories are added to create new versions , to refresh old ideas , to make new proposals that will last , as always , just a few weeks . Have you noticed that all the classic gentlemen wear the same tipe of suit ? And what about those kinds of intellectual and progressive people , do n't they all wear the same type of ugly but confortable shoes ? I am sure that fashion will survive for ages , it will even change to become easier to use and cleaner , because we all need to feel a part of our society , comunicate our way of living and thinking , be part of a group and , at the same time , be different . - When the musical finished I was terribly hungry so I decided to have something to eat but the restaurant was closed and the advertisiment said that it would be open . Modern technology has changed my life in many difents ways : To summarize , the modern technologies give you and allow you to do many things wich would be impossible in the past but also creates many problems . As I was so looking foreward to seeing Danny 's performance , I was very disappointed . It is a very good shedule , especially because you have considered different activities for us . Personally , I think it could be a great opportunity because it is something we all want to attent , and we are all interested in the latest fashion . We discussed the programme , and because the show will take the whole day , we would not mind going to the Science Museum on Wenesday instead of having free time all afternoon . I did n't even think of boking down . The clock was running .. tick , tac ... And suddenly everything stopped . I felt an enourmous peace . Fortunatelly , I was n't alone . Thank you for the effort which you have made to organize this three - day programm in London and I am sure that we will have a great time there , especially in the National Art Gallery . The thing is that we have seen an advertisment for the London Fashion and Leisure Show . Futhermore , students can enter free ! Thank you for your attenlion and understanding . Perhaps , there will be personal computers which will control everything , every item of furiture , light , temperature . But , on the other hand , people will still have to programm them , as they have to do nowadays . All the rubbish , dust , dirty dishes , plates , cups will be washed automaticly . IT 'S UNDENYABLE THAT DURING THIS CENTURY OUR WORLD HAS BEEN CHANGING . IN CONCLUSION , I REALLY BELIEVE THAT OUR DAILY LIFE IS VERY DIFFERENT TO WHAT IT WAS IN THE LAST CENTURY AND EVEN IN THE BEGGINING OF THIS CENTURY . During these past few decades , or rather in the 20th century , there has been a great deal of developement in modern technology . One of the essential developement has been in our means of transportation . Another significant technological developement is the invention of electrical appliances . Modern technology helps people in many ways and is indespensible . When the show finished I was eniting to visit the theatre restaurant but it was closed . I was expecting a lovely and perfect evening out but it was the most disapointed experience I have ever had . When I wake up I take a shower using eletricity then I prepare my breakfast in the oven then I go to school by bus , when I arrive at home I put my lunch in the microwave then I watch TV and do my homework using a pen . When I come back from jiu - jitsu I eat something that was cooked in the oven then I go to bed . About a millenium ago everything was different ; people did n't have electricity , they cooked their food on the fire and they did n't have pens . Regarding the two activities I have to choose , I decided to choose a new activitie that I have never done before , which is Sailing . I am a total begginer at this . The other activitie is Photography . I am not an expert , but I know how to use a camera . All I want is to improve my knowledge . I helped them with organizing the stage , cleaning everything , fixing what was broken and they even let me play with their guittars ! I had put some money aside for that month , thinking about the discount , but when I went to buy them they said that discounts were not avaible . Waiting for your repley . When she finished school , she went to study at the Agent Trainning Agency where she learnt about guns , clues , agencies , etc . She was sent to New York to discover how some people from the government gave money to the merchants because they wanted to build a Trade Center there . Here is some further information about myself and a few enquirement . It is really fasinating to challenge the waves . As for accomodation , I would prefer log cabins , because I belive they are more comfortable than tents . Will I be given any pocket - money or do I need to bring my own money to cover additional expences ? Martial arts are realy exciting and are a great thing to film . The main characther is the old man who has to fight against the sea to stay alive . They 're fighting for the same reason with the same strenght , the man has to kill a brother , as he calls the fish . On accound of the fact that staying in log cabins is much more interesting than staying in tents . I can sing plenty of songs , which include English songs and the japenese songs , and I have a part - time job sining at a restaurant . Futermore , I am going to enter a competition next year . Shopping is not always enjoyable . Sometimes there is a long quare or a mechine is broken . A lot of circumsenses will arise . Everybody had gone to buy luch in the supermarket . In fact , nobody likes crowe and quare , expecially not in the summertime . Abviously , I had to try another aisle . It was the longest quare I have ever been in . Even though I think most of the time it is very interesting , sometimes it gets people upsent . Finally , the reasonable price of the tickets for the weekend was a good point , because all kinds of people can afford to buy them . I also think that you should have a snack bar or a little restaurant so that the people are not too hangry and morever you can make a lot of profit . In conclusion , I do n't want to change anything in my house or at school , because I totaly agree with the few rules that I have . I have choosen the two following activities . I have choosen sailing because I would like to try a new sport . I love water but I have never tried this sport before . Yours sincerly . People are often irritable and agressive . Because women love shopping and you have to follow them everywhere and always give your opinion about clothes , music , parfums ... yours sincerily The things I did were : Prepearing and checking the equipment , I had to clean all the stadium , making sure that all the lights were in perfect working order , that the singers were confortable and relaxed , etc . It would be a great plessure to spend two weeks at Camp California and I ca n't find any suitable words to express my enthusiasm . With regards accomodation I would prefer log cabins , as they are more comfortable and I like convenience . They are ready to sacrifise all their savings to get something that will make their neighbor jelous . So , as a conlusion , I might say that shopping is n't enjoyable at all and I 'd rather stay at home instead . After the show I needed to drink something in the theatre restaurant as the advertisement concieved , but it was closed . When Pat first came into a class or a groupe of teenagers there were no problems . Insofar as I came here especially to see him play , I have been very disappointed , and this could be the understatement of the year , as he is my favorite actor . Thirdly , the ad mentionned possible discounts . Personnaly speaking , I did n't see them and did n't even hear of them : I asked about it , but nobody seemed to know anything concerning discounts . As he closed his eyes , he started to travel along the dark paths of his councience . The boy could not beleive what he was hearing . At these words , Paul suddently awoke . The show was called " Over the rainbow " and should be , to quote the advertisment , London 's newest and best musical show . I was very pleased that the main actors listed on the advertisment were Danny Brook and Tina Truelove . Furthermore you had mentioned some discounts in your advertisment , but I had to pay the full price although I am a student . The perfect evening you promised in your advertisment was the complete opposite and that is why I want to get some money back from you . First of all , I was attracted by the actors - Danny Brooks and Tina Truelove - and not by the actors who performed effectly that evening . These actors appeared fourty - five minutes late according to what is written in your advertisement . And in conclusion I want you to give me my money back , ( I still have the advertisement if you want prooth of what I say ) . As regards accomodation , I would choose to stay in tents . I do n't know much about the weather down there , in California , so I am rather puzzeled about what to wear there . Also , I would like to know how much money I will need and which expensies I will have to cover myself . All these exhibiots are really important and exciting for us because , nowadays , fashion has a huge influence on our lifestyle and we would like to know more about it . We think that we could go there on the 14th of March , in the eveninng , instead of going shopping . Nowadays , there are a lot of people who live only on the money they get from advertisments , reports about their last romance ... but not everyone does the same thing . On the other hand , there are the ones that are also respectabled but , appart from their relations with journalists because of their work , they really need to be constantly sought by photographers . The media moves the world and famous people use it to improve their work , politicians for their campain and film stars to make their latest movie famous . In conclusion , I believe that shopping is not always enjoyable if you accidently get into a bad situation or you can not control your expenditure carefully . In your letter you ask me to choose which type of accomodation I prefer . Hopefull I will meet some other girls interested in the same sport . Woods is thought to stand for all white peope and this book could have an influence on them . Secondly , I would prefer to stay in a log cabin , because I am alergic to some insects that might get in a tent . I spent two weeks preparing the stage , speakers , backdrop , michrophones , everything , with all the staff , and every night the artists came to rehearse their show . I could see how they really improved , and how nice they were with the staff . I am writting this letter because I had a week in London last month and I decided to see your show called " Over the rainbow " with my wife and children . We were disappointed because your advertisement was a misleading one . But cars create pollution : for exemple the greenhouse effect . Technology allows us to improve our knowledge in the sciences like medecine so as to cure more illnesses or to make people live longer . In my opinion it 's a lot better than the dictionnary because it 's faster and you really find what you need . I am writting to you about an enjure that I had at your last musical at the Circle Theatre . First of all , I was surpprising that Danny Brook and Tina Truelove did not perform . I read in your advertisment in Friday 's edition of the Times that the show should start at 19.30 but the performance started at 20.15 . I was waitting 45 minutes for nothing ! I am a studiant and I did n't get a discount ticket . I do n't understand the problem between your advertisment and the reality . For exemple , if I do n't have time to do my shopping after school because I have to do my homework , I go on the Internet and ask for what I need . From my point of view , the Internet is the most important invention of the 2000 centery . You can book tickets for the theatre , sport , etc . I use the Internet all the time for my homework and in the futur , I hope , I will be able to use it for my own work . Technology will not stop growing and helping people in the futur . It was n't the first time I saw this show in your theatre , but it was the worsed one . At first it was a great plessure for me to get a ticket becauses I 'm one of Danny Brook 's greatest fans . It 's not that problem that there was no more discount available - but I had choosen it , because I 'm ( alowed ? ) . When the musical started at 20:15 ( not at 19:30 as advertised ) I was realy shokked when I realised that a different actor was playing his role . You have to know that I am very sik because of my blood presure and so I was laying down the whole weekend . For me , as a scientist , it 's a big problem to show how the inovations of the last century went up with the environment and natur . Nowadays a simple thing like a computer includes so many possible ways of destroying different environmental compartiments . On the one hand there are the materials from which the PCs are made , on the other hand is the uge waste problem . Now I try to show , in my daily work , how the airborn chlororganics , which are degased from plastics , will be seperated and damaged by green plants . Sometimes it seems to me like a joke if I think about all the daungerous materials I need to do my job . Therefore it makes sense to use the inovation which are causing environmental destruction . When I was 15 , I was starting to look for new clothes , shoes , and everything I would find now unneccessary . I would not dare to culculate how much I have spent on those things without thinking . However , it was not bad . My mom always told me that I had n't earned enough money so I should n't have spent it in the wrong way . I have never been to the USA , so I think that this trip will be an unforgetable experience . I look foward to receiving your reply . For pratical information , this show starts at 10.00 and closes at 19.00 . It is not too far and the openning hours suit us . We also suggest visiting the Science Museum on Wednesday morning and in the afternoon , if some of us are intersted , we could see the National Art Gallery . They will become less dark and more confortable than today . These improvments will be involved by the lack of petrol and non - renewable energy . About the size of hous , I think that in cities houses will be more and more small because of overpopulation . But about the differences between the homes of the rich and poor , they will be the same in the futur . I think that people will be as alone and julous as today . As if this were not enough , once the show ended I had to walk twenty blocks to find a Restaurant since the theatre Restaurant was closed for mainteneance . After reading the whole organized programme , we all agreed about the sightseeing tour by bus around London , wich will give us the knowledge of this fantastic city we have all wanted to have since a long time ago . We found the advertisment in a local newspaper and have been thinking it could be such a good opportunity , because the show consists of these topics : Instead of going to the science museum , we could go to the London Fashion and Leisure Show , wich is open on Tuesday , March 14 , from 10 am to 7 pm . Yours sincirely Not only because she 's famous and wrote lots of books , but she knows how to introduce caracthers and how to tell a good story us though decieving the readers . In other words the story is set on a train wich tooks a trip along the orient . On the train , all the passangers seem to be involved in a crime . This is such a fasinating story and it 's the way Agatha Christie tells it . The mistery is drawn out until the last page of the book . I like Danny Brook very much , and his unaspected absence caused me great sadness . It 's all right , but I also think that he 's exagerate . I do n't think I have done such a bad thing as to destroy our friendness . I like his company , and we are happy when we are togheter . I AM WRITING IN ORDER TO EXPRIME MY DISAPPOINTMENT AT THE SHOW " OVER THE RAINBOW " , PERFORMED 2 WEEKS AGO ; FIRST OF ALL , I READ IN THE ADVERTISEMENT THAT DANNY BROOK WAS TO ACT IN THE SHOW , BUT THE ACTOR THAT REALLY PLAYED WAS A DIFFERENT ONE , AND THIS WAS VERY DISAPPOINTING . I THINK THAT FASHION IN THE FUTURE WILL DEVELOPE ALONG VERY DIFFERENT LINES : THERE MAY BE A RETURN TO THE FASHION OF THE PAST , AS WE CAN NOTICE NOW , OR A MORE FANTASCIENTIFIC AND TECHNOLOGICAL DEVELOPEMENT . SURELY , ORDINARY PEOPLE WILL NOT FOLLOW ONLY THE MODELS PRESENTED ON TV . AS REGARDS EVERYDAY LIFE , I THINK THAT IN THE FUTURE ATTENTION WILL BE FOCALIZED ON COMFORTABILITY MORE THAN ON ELEGANCE . BUT IF IT IS DIFFICULT TO FORECAST THE DEVELOPEMENTS OF THE FASHION WORLD , IT IS NEARLY IMPOSSIBLE TO FORECAST THOSE OF THE COMMON PEOPLE , THAT IS A TOO VARIED A CATHEGORY . One of my hobbies is photography , so I think I am rather good at it , but I will take painting to learn , because I am not very talentive at it . After carrying stuff like lights , microphones , wires and some other equipment for about three hours , I was eshausted . It 's a great opportunity for me to participate in your Camp California because normaly I work a lot and I ca n't spend money on travel . Moreover , I have to support a big family because I 'm married and I have three children . I have to choose painting and photography therefore . I would prefer surfing or climbing but I have to think of my helth . I 'm very enthousiastic and I wait for your answer as soon is possible . FIRST OF ALL , IN YOUR ADVERTISMENT YOU SAID THAT DISCOUNTS WERE AVAILABLE , BUT I COULDN'T FIND THEM AVAILABLE ANYWHERE . THE PLAY STARTED AT QUARTER PAST EIGHT : FOURTY - FIVE MINUTES LATE . MY ADRESS IS IN THE ENVELOPE . I'M LOOKING FORWARD TO HEARING FROM YOU IN THE VERY NEAR FUTURE . I like to sleep in a tent under the open sky since I have done military service , therfore I would prefer a tent as my accomodation . It is important for my health that I swim an hour a week because I am overwight . When I have enough money the price is n't important , then I can buy a lot of things whitout considering my money . Finally , I am going to write about the theater , the Circle Theatre . I 'm looking forward to recieving a letter from you . The rooms will be designed in a futuristic fashion , where there will be less furniture and everything will be compact . Even TV - sets will be on the ciling . Technology also means all electrical machines , which do n't stop being developped . Machines have replaced the work of humains . Our whole life is being simplified by machines for not waste the time to work on their developpment . Here I will answear all the questions that you asked me , and I will ask you about other things that you did n't mention . I 'd like to organize my trip for July because that is when I have vacations , also because it is summertime in the U.S.A . About acomodation at Camp I 'd prefer a tent , because it 's a new expirence for me and I 'd like to sleep in a tent to have a great time while having a new adventure . Thank you very much for your colaboration . Most of the time when we go to the shopping Center we have a lot of fun . We go to stores to look at clothing , we also eat something like ice cream or French Fries , but is not enjoyable all the time . In that instance we do n't enjoy shopping because we ca n't find what we are looking for and we have a bad time in the shopping center . I was absolutely threaled to resive the news about my winning a competition . I do n't like cold nights and moscitos . Yours faithfyly Usualy people do n't have time for shopping . There are huge queus to the tills , noise , hussle , poor custumer service . You 've got more stress , you feel fed up and finaly when you get home you think that shopping is not as enjoyable as you thought . There are so many varaity of products , different prices , different qualities . Nowadays tecnical progress gets close to us , to normal custumers . Without any hussle , sitting in your chear in front of your computer , in a second you can get to any shop that has an internet site - most of the big companies have one - get all the information about the product , get a cheaper price and buy it . I know that staying in a log cabin is more convinient but I just want to have a wilder experience . And I want to know how much money I have to bring for personnal expences . Besides , I really would like to know approxiametely how much money I should take with me . Concerning the activities , I have choosen two of them . It was boring that nothing happend for such a long time on the stage . And finally , I would have had my dinner after this disappointing musical and thougt I would go to ' Theatre restaurant ' . This is not a tabu subject with me and my friends . I had dout when somebody said that the fashion of the future would be different . Are they inclued in the prize ? I 'd prefere it if you gave me this information as soon as you can . However , those days were unforgatable for me . I will be very happy to travel in July because in that month I am going to have my holidays , so I will not have to ask permition from my boss . I would prefer to stay in a tent , couse in that way I can feel closer to nature , and I can remember when I was a girl scout . At the camp I would like to choose two activities , Painting and Singing . I love painting . At university I studied art for two years , but now I do n't have much time to paint couse I work in a bank and I have a baby . The reason for my choice of singing is that I feel embarrest about my voice , so maybe I could improve it . Thank you for givin me this oportunity . You are never going to believe what I did last month . I was walking with my sister in Oxford circus , when sudently a man stopped us saying that he was looking for people to help at a concert and they were going to pay us five pounds an hour . We sed yes inmidiatly . I nearly shouted with happiness when they told us that Luis Miguel was giving the concert . He is my favorite singer . The concert was on a Sunday and we had to work at the back of the stadge , doing all sorts of things like colecting rubish and helping other people who were working there . Other bad points can be mentioned , like polution for example . I am writting to you to complain about the musical show , where everything was completely different from the advertisement . Modern life has been full of science and tecnologies . I am very pleased that I was born in a time when there is such good tecnologies but my parents did n't have the same luck . My life is much easier with all this stuff mentioned above - tecnology and science . The bad side is we can use tecnology for war - missiles , weapons , etc .... Indeed tecnology has changed our lives , we have become more scepitical and cold . Sometimes I think tecnology is not a good thing .... People whom I work with are going on holiday in Juni and August . Also , the accomodation I would prefer at Camp California is the log cabin , because first when I was a little child we stayed in a small house every holiday and I like that . However , drawing some beautiful sceanary and taking some pictures would be a very good experience for me . I 'm not keen on liars , Mr Smith , and I think that you 've lied to naive tourists like us : some brilliant actors were supposed to play the parts and we only had different , pityful ones . Otherweise I 'll have to put some other ads out in London saying that your show is just a fraud ! Nowadays , the Internet and the mobile phone , with the developpment of satellite communication , seem to take the lead . As far as I am concerned , the first way modern technology influences me is through my work : the Internet has become such an incredible tool , I can research into everything I want , find information for lectures , for example , or exercices . Maybe it will change me into a kind of self - centered person , a loner . But we should not forget that they are only tools and should emphazise human relationships . Finaly , I 'd like to play tennis and to try climbing . This book remains one of the best in American litterature . Based on a very simple story , the story of an old man fishing , it is a deep reflexion on age . A veteran fisherman takes his boat and goes fishing to convine himself and other men that he is still able to do it . The 24-hour fight is described in such a peacful , faithful way that it callas a though about life and death . I recommand this book as a way to discover both Hemingway and American litterature . Before answering your letter ( which I have just recieved ) about the prize for the competition I recently won , I 'd like to say thank you very much for giving me the chance of going to the USA . About the accomodation , I think I would prefer to be in a log cabin instead of a tent , since it is more comfortable . In addition to this , I would like to know the ammount of money I should bring , as well as the kind of clothes that I could need and the sort of people that I will find there . None of the groups are known at the moment , but I belive they are well on their way to becoming famous bands . This was the best part because when everyone was gone , Billy Joel arrived to give his support to the beginers ! ! ! I could n't belive my eyes ... Jane took a photograph of us toghether . Lastly , I do not think I would call this my perfect evening , so I would like to ask for a refund , and I hope as the Manager of London 's newest theatre , you will handle the situation favourbly . Even though Pat has got a great sense of humour and wonderful personality , he 'll never be able to keep any secreats from anyone , even himself . Although , we are great friends , sometimes people can make such stupid mistakes , and so there was one time when Pat and I had a fight . It all started when once I accidently took the wrong bag back to my house , and there were lady 's knickers inside . I was so nervous and embarassing , so I told Pat and off he went : he told every single student in the school that I 'd stolen a girl 's knickers , and everyone started to call me a pervert . When I was a yong child , I used to be interested in reading science fiction . First I can travel only in July because I will finish school at the end of June and I will sit my exam in Septemeber ; so I have to revise for it a lot during the month of August . I particulary liked seeing all those people , and I met a lot of new friends there . I would like to travel only in July because I would be on school holydays then and the weather is hot and the sea 's temperature is less cold than in winter . It is very nice to stay in tents wich are strong and confortable . And you need a strategie to win the match . But you ca n't play if there is too much wind , because the ball becomes incontrolable ! It looks fragil and it could break easily . It has always been my dream to go there and to be able to see that beautifull country . It will be very interesting for me because normaly I do not have a lot of time to do activities . I would prefer swimming because I really like it and I am trying to swim anywhen I have got some time , and painting because I have finished a painting course and I have some practice with this . That is very nice that all costs are paited for but I would like to ask you how much money I should take with me because I do not know anything about prizes in the U.S.A. and please tell me if I need anything to paint because it would be difficult to take it with me , so if I will need to take everything I will just change this activite . It was a realy wonderfull new experience for me . The people were wonderfull , they were helping each other with everything and it was a lot easier to do . I am writing to you , because I would like to disagree with your advertisment for the show ' over the Rainbow ' . As it is said in the advertisment the show starts at 19.30 but I had to stay outside for 45 minutes , because according to the programme it started at 20.15 , but that is not the end of the story ; in your advertisment it is clearly said that you have discounts available on tickets . That was not true ! I was still not very disappointed , because I hoped that I would have a good meal with a glass of wine in the restaurant , which I could have according to your advertisment , but what I did not realise , it was closed , because the chef was in hospital . Such as a mobile phone that helps me to communicate with anyone in the world , even if I am not at home ; I use a stereo if I want to listen to my favourite music ; I use tapes , CDs , hairdryers , ect . Many years ago people did n't have an oppotunity to use all these things and they had to work a lot . This is just a note to confirme for you that I have recive your letter . To answer your questions , I would like to tell you that I can only travel in July , because I will be studying for the Cambrigge exam till 1 July . Would it be possible to have accomodation at Camp California in a tent , because I haven't had a chance to sleep in one . And would it be possible to do swimm and surfing . I have been driming about this activitie since I was 10 years old . I would like to know how many peopl will stay with me in the tent , and do I have to take with me any special clothes for surfing . I look forward to beeing at Camp California in the U.S.A. I think going shopping in a big spaise like Harrodss is not a plesure . I like to be in small boutiques , and I would rather go shopping along and during the weekand . And going shopping after the weekand is not for me . I would like to travel in July because I am a studant so I only have holidays in this part of the year . About the acomodations , I would like to stay in a log cabin because I am used to staying in them when I travel . Sometimes , shopping can be really boring , especially on important dates when the shops are absolutaly crowded and you ca n't see anything you wanted with carefull . I received your letter this morning . Thank you very much for your kind letter and for chosing me . I have knowladge of navigation , engine , ropes and knots , and sails as well . It was a nightmare , there were pickpokets in the shop . But you must always be on your guard against pickpokets . I am only able to take my holidy in July . The rest of the year I work . I 'm crayz about tennis and swimming . Can you imagene Friday night ? You have worked hard all day . On the way home you want to pick up some milk from the shop and you have to waite ten minutes on average . There are a lot of options and items to make our choice difficut . After shopping you have to carry a havy bag a long way home But the situation was n't simple , so Hill decided to discuss it with Mary , the teacher 's cousine . I would be grateful if you could put me into the tent side of accomodation because I have had all my holidays with my parents in luxury hotels . Pat entered the fight , and it became more loud and agressive . I went to London to see this musical but I was absolutely dissapointed by the show . It was about 21:00 , I thought it was a bit later but it was n't my falt anyway . 100 years ago , people dressed diffrently . The enviroment will be very polluted and finally we 'll get desease . We will need helmets to cover our heads and we will also need air - supplyer . Maybe , science will be developed and make our enviroment clean , and we will not wear anything at all ! ! ! ( except underwear ) . I hope that the enviroment will be better than now in the future and our fashion will be changed but nobody knows how it will be . The advertisement promised there would be my favorite star , Danny Brook , but there was another actor who could not play his part as well as Danny Brook . In addition , the performance started 45 minutes late , so we could n't visit your theatre restaurant after the show because it was closed already . So I am sure you will understand why I am so annoyed and frustrated with the whole incindent . Two days before , her best friend Maria told her that her parents were going to devorce . Maria was so upset that she could n't keep it to herself . They could not believ their eyes . Maria had bought his favorite food and she threw it into the bin . She went to skool , but she could not follow the lessons as easily as she used to . Moreover , the theatre restaurant was closed for mentenance . In addittion , I can go to Britain by plane to see her . When I recived your letter , I could not belive it . Unfortunatelly , I will only be able to go in July because the restaurant where I am working will be closed for that month . I am in doupt as to what kind of clothes I have to bring with me . I had the best expreience in my life . Can you guess whe they chossed for the job , " me " , yes , me , I could n't belived it . My job basequily was to , before and after the actuation , make everything ready . To be honnest the most exciting part of all this was getting to know the group . Yours Sincierly , First of all I helped with the decoration of the place where the consert would take place . I am writing to you to " help " you with your festival next year . Last year was n't very good so maybe we can make it more atracite this year . First , I think we shoul rent bigger halls so that we can make a better sound and give more space for the audience ! We can inaute stars and artists from around the world who will play and prisentspresent all kinds of music like jazz , rock , classical ect . Afterwards we could let people talk with the artists so they could get to know theyr personally . If you want to hear more of my suggestions and opinions about it pleace contact me on my cellphone . Yours Sincirley First of all , it dipends what kind of school it is : Polish students have to study a lot with books and they have fewer pracite lessons , and sometimes it 's hard to get books or other things needed for studying . School is supose to be our second home but it 's not . We work hard and at the end of our education we still have nothing . I would make schools less unstressfull , with added fun 'cause that way it 's easier to learn and I would give students more chances to share their fantazy at school . Maybe the Polish system is not bad , but it 's conftyble too . I know that this letter will not change anything but you can see how compliated a Polish student 's life is . I 'm not sure about the weather in California in the daytime and in the nightime . Thank you very much for your offerring . From my point of view , your organisation has to be careful to orginize an activity . It was unpleasent for me to see different actors on the stage . In the advertisement that I received , it was written that the show would start at 19:30 but I kept wainting for it to start for half an hour . I am writing to you about my complaints about the musical show at your theater that I watched a week ago , during my stay in London . Another problem was the male actor who starred : the well - known and talented actor mentioned in the advertisement was replaced by another one , who was really very disappointing and after the performance , I visited the theater restaurant , which was supposed to be open and available for meals after the show , but it was closed . I appriciated this big news . I am very keen on photography so I definetely will choose this as one of my activities at the camp . I have got some experience already and I 'm used to any weather conditions , furthermore I simply love water sports and their chalenges . My tasks were very especifics . Its name is " Best Detective Stories of Agatha Christie " , and I really was impressioned with the coherence of the stories . It 's estimulating to read them . I 'm sure that if you listen to it you will start reading the book immediately , and find out there are many challenges in your new carreer . We are wating for your decision and we will accept it whatever it may be . The clearest example is to compare a house from the beginings of the 20th century with our houses . Both are very similar but now we have new technologies . I am writing this letter to inform you that I have recieved your letters and I am going on the trip . Every night I would like to go out of the small tent into the nice enviroment outside the tent . I was a bit disapotted with the result because I was expected to win the first prize or secound prize . At first I was surprised but a few secound later , when I relised that I was n't allowed to go , I tried to persuade my teacher to let me go . I had to keep things in place and cheakd that the microphones were working properly . I was really embarassed because I had to dance in front of a lot of people but that was the very best experience I have ever had . Tell me yoors . I want to know what experiences you had when you were in England . I would be greatful if you could include this show in your programme . This is a great oppotunity for me to explore and experience London myself , especially The London fashion and leisure shows . Most of the shows are about fashinable things for students my age . I think it is a good event and suitable for all of us because there are many different kinds of show , for instance latest fashions , leisure and sports wear , how to put on make - up and how to have propiate hairstyles . In my opionion , I think you should have this event in the afternoon instead of going shopping and move the shopping slot to the afternoon on Wednesday . I trust you to pay immidiate attention to my suggestions . I closed my eyes , tooke a deep breath and jumed out of the tower . There were hundrend of Thai students waiting to take this test . I was very afraid of the hieght and was very nervous . I was given the list of activities while I was taking part in the adventure school schems at the soldier camps in the north of Thailand . The last task I had to do was jume out of the high tower . I eventaully managed to complete all the tasks that I had been given and I was very proud of this . Suprisingly the show started at 20:15 . Of course I accepted immidiately . After school Larry and I went to the cinema , but at the enterance there was a beautiful girl waiting for us . When we arrived at the shopping center , I saw a lot of people . The task was not easy , at 18 you do n't know too much about cryptographic algoritms and databases but anyway we decided to do it . There was nothing to lose . Both of us went to the NASA university and nowadays we work for the CIA developing secure systems and new encryptation algorithms . You should n't go shopping when the shopps are so busy because it 's so annoying . You do n't have to be a genius to notice that technology has evoluated so considerably during the last few decades that our everyday life has changed . I 'd prefer to take a tent because it is more romantic and exciting to spend nights in a tent . And with the tent I can go to enougher place in the camp . And I like painting because I like to paint nature , sea , moutains . I whant to know some information about it . I 'm realy lookind forward to your answers . And I hope to see you soon . Yours sencerely Gubin . I absolutly agree with this . Because I have my own expirience of shopping . For exsample , resently I was shopping at the market , which is located in the center of our town . When I was there I saw a very beatiful T - shirt . I was abset about it . Our goverment is very burocrative . Our ministers are really criminal . They often breake the law , stealing money . Because of it our state ca n't pay workers in schools , hospetols , on building sites . In our country there is a high nomber of unemploeers . Often people ca n't buy a piece of bread . And they ask for money from enougher people . I wich that my accommodation at Camp California it must be in a tent . Anyway I enjoed it so much . I haven't been to a concert before so the atmosphier was really good . Do you remember the computer course that we took together . It was very useful to clasifay each person at the concert . I congradulate you because that 's perfect . The advertisement for the musical said that it was going to be Danny Brook . Unfortunately there was someone else - an actor who I do not like and if I had known that he was going to be there I woud not have gone to see him . In fact , modern technology was already very popular and comonly used when I was born , so I can not say that it changed my life suddenly . All these products of science are with me from the very beging of my day . On the other hand , I am aware of all the disadvantages of modern technology ; pollution and the dangarous it brings . But I think it has more advantages than disadvantages and it is O.K. I am really glad that I am a child of my centuary - the age of modern science . I am writing to answer your invitation which I have receved as a first prize winner . There are also many kinds of take - away restaurants , where I can taste my favorite foods . But there is alwalys a lot of traffic at all times , and the air is so polluted that I ca n't even breathe . I always feel very tired after the shopping because of unfrendly people who are too busy . What is more , admittion for students is free . However , we have got a suggestion : we saw an advertissement for " the London Fashion and Leisure Show " which is going to be on Tuesday March 14 from 10:00 to 19:00 . I was pleased to recieve your letter ricently . Now I 'm going to give you some information you asted about . I 'm sory to say this , but the only time I will be able to take this trip is in July , according to our team 's shudule . The next thing - I would prefer to spend all the nights in a tent , so I can move it to the place that will suit me best . I like to wake up with a view of mountains , wich reminds me of my 5 years ' experience of climbing . So , is it posible ? I would like to continue doing my favorite hobbies in the Camp . Otherwise , you will either not find what you are looking for , or you will , and spend the rest of the day in a bad mood , because of the bad maners of sales people , who do not give you advice every time you ask for it . To summarise everything , I would recomend spending less time indoors , shopping during the weakdays . You wrote ' discouts available ' but they did n't offer any discount . But it was unpleasent because of these things . Owing to all of them , I can live very comfortbly . In your letter you wrote that I will have the chance to do two activities ; first of all I would like to play tennis because I have been plaing for seven years . Secondly I would like to attend a surfing course but I have just some elementary knowledge . It will be interesting to show how the lessons are organized , saing that we are never doing just one activitie during the class . After that we have to make sure that we explain about the relationship betwen teachers and students , showing the times that we have been out together . Finaly we should give some information also about our tourism , business and computer courses . Secondly , I would prefer to stay in a tent because I enjyoi being outside close to nature . Sometimes the bad charachters in a story are more interesting than the good ones . Its title was : " The Mistery of Hunter 's Lodge " . The charachter whom I liked most was that of Mrs. Havering , the mistress . It was very exciting because she could play two people at the same time : herself and the houskeeper . First of all I would like to say that it started later than it should have . I had to wait for about fourty - five minutes . Then I realized that Danny Brook did not appear in the show , which was very disappoiting for me because I like this actor very much , and I think that I was not the only one who was upset . Yours sincerlly , They are very usefull things which sometimes are nessecary to survive . I watch about four hourers of TV a day . I even eat my meals in front of the TV . We can see PEOPLE 'S LIFE in other countries , which is very interesting for me and my friends . Also the Iternet has an influence on my daily life , beause I can find there many interesting things , or I can meet with people from all over the world , which is exciting for me . I think that life without modern technology would be simple and borring . That 's why I am using it in my daily life . I am happy that there is such a thing as modern technology . Finaly the day to pay my credit card arrived and where was my money ? All the students are happy that we will have othe oppurtinatey to visit London for three days . In the morning , we will have the chance to see some of the sightseeings of London by bus , for example , the Science Museum or the National Art Gallery . The reason I write to you is that we have seen an advertisement for the London Fashion and Leisure Show , for a fiew days . The show is free for students and we can see the show instat of having free time on Wednesday in the afternoon . Ourdays , with the help of the media , famous people , like politicians or filmstars , play an important role in our community . Who got married , who got divorsed or who has experienced a remarkeable change in his complexion , these are questions that most journalists are interested in . There were some problems that were not displayed in the advertisment . In the advertisment it was clearly written that Danny Brook and Tina Truelove would play the main roles . The advertisment said that the show would start at 19:30 but it started at 20:15 . The advertisment said that they would be available but they were not . It was written in the advertisment that I could visit your theatre restaurant after the show , but unfortunatelly it was closed . We build big cities , there is hot and cold water , electricity , gas in particulary every home . Many different uncureable diseases have appeared . I 'm writeng with reference to your letter . I was really thrilled , when I found out that I won first prize in your competition . I always dreamed about going to California and now my dreams are coming true . I 've always wanted to learn to sing professionaly , but I 've never had an opportunity . When she tried to answear me , one small child took her picture with a flash . Trully , my work here was n't very important , but I relly enjoyed it . I 'm writting this letter giving some opinions about the three days that the class will spend in London . So I 'm writting this letter , asking if you can change the programme . There is a great opportunity to go there because students need not pay anyting . Our first chalenge was stealing Dick 's girlfriend 's panties , but we failed . Nick and Dick could prove their bravure stealing their mother 's panties . " It was dangerous , but I knew I had to do it " , to prove my bravure to everyone . I USUALLY SWIM THREE TIMES A WEEK IN ORDER TO MANTEIN A BACK TREATMENT WHICH MY DOCTOR HAS RECOMMENDED ME TO FOLLOW . SO , IF POSSIBLE , I WAS INTERESTED IN THE POSSIBILITY OF CONTINUING MY ROUTIN THERE . LASTLY , I WOULD LIKE YOU TO TELL ME IF I HAVE TO BRING SOME MONEY WITH ME TO BUY FOOD OR DRINKS AND HOW THE CLIMATE OF THE CAMPING AREA IS SO I CAN PACK MY LUGGAGE , BRINGING ONLY THE APROPPIATES CLOTHES . THIS BOOK CONTAINED NINE STORIES WHICH WERE WRITTEN BY WELL - KNOWN WRITTERS LIKE RAY BRADBURY . BUT THE MAIN PURPOUSE OF THE BOOK IS TO ALLOW YOU TO FLY WITH YOUR IMAGINATION AND TO HAVE A GLIMPSE OF HOW LIFE IS GOING TO BE IN THE FUTURE , WHEN , PERHAPS THE WORLD WILL BE RULED BY MACHINES . SO , IF YOU ARE LOOKING FOR A " REALLY SPLENDID SCIENT FICTION BOOK " I WILL RECOMMEND YOU TO READ " A WINDOW .. " AND I'M SURE THAT WHEN YOU FINISH READING IT YOU WILL WANT TO READ IT AGAIN , AND AGAIN ... ! I would like to ask whather you have competitions or different activities . Do you reccomend me to take only summer clothes or some winter clothes as well ? I worked untill midnight every day . It was very enjoyable . I made lots of friends . We were together all day , painting the walls , cleaning and putting up some baloons and other stuff everywhere . Famous people must enderstand that the journalists are doing their job . Second , regarding accomodation , I 'd like to stay in a log cabin . I also want to know if I should take any money , or if all the expences are paid by you . That makes those people frustrated and they do n't enjoy theirselves . Regarding accomodation in tents or log cabins , I would enjoy much more being in a tent as I believe that is the right type of accomodation for going camping . Men tease women for being shopping addicts and for having shopping as their favourite passtime . Everyone enjoys wearing nice new clothes . However , do we really like the process of chosing them ? I 'm writing to you to give my opinion of that great festival you organiced last 21 and 22 of November . The festival was very well organiced with a lot of alternatives like concerts and dance shows . In my opinion the hall for the rock concets was too small . You have to consider booking a bigger one for next year because these kinds of events are attended by a lot of young people . At school it is completely different because the teachers do n't foregive you anything . I would n't like to change anything because we all need some dicipline to do the right things . At first my favourite actor Danny Brook did n't perform , without any explictions being given , and the show should have started at 19:30 instead of 20:15 ! ! I was sure that discouts were available because I had read that they were , but at the ticket office they did n't offer them . All this story was a secret but Pat realived it to his mother . I am writing to you because I am really dissapointed about " Over the Rainbow " which I saw the other day during my stay in London which your company organized . I explained to you every detail about what happened at the musical show and I want you to refund my money and send me an apology for what happenned there . Yours fainthfully If we create guns to protect our homes , others will use them to burgle our homes , and take advantage of the indefense people . Because I have had experiance of staying in a tent and I like it very much . In my opinion tennis is the best sport I have ever plaed . I have just finished a profesional photography course and I would like to continiew my education in this activity . I was shoked because I had alredy spoken with them and I had got two autographs . Another part of my experiance at the pop concert when we meet each other . First of all , the actors mentionned in the advertisement were not those who performed in the show . Plus , it is mentionned in your advertisement that discounts are available . In fact , no discount was given to me , though I am a student and as a student I was entitled to get a discount but I paid £ 20 because the cashier had never heard about any discounts for this show . As a student , the low priced ticket certainly athacted me a lot and gave me the opportunity to see and hear wonderful artists . Finally , I would like to make one big suggestion : you should find a place for a campsite so that people who come a long way do n't have to spend money on accomodation . Furthermore , departement stores are always looking for students who would like to work . The London Fashion and Leisure Show is an amaizing show because there are parades with the latest fashions . We could see some famous top models . Also there will be a variety of clothes either sports wear as elegant desings . I realised that my bag was outside and I went out to look for it , when a shower of stones covered the entrace of the hole . I walked alone a long distence until I found a telephone . I called the police and they ask for a rescue . When we finished at our primary school we went to the same secundary school too , but we were in different classes . And when we finished at the secundary school , I decided go to a foreign University . In my opinion , the clothes will be more colourful , fun and confortable . People will prefer to wear confortable clothes , even to go to the office . Actually , I think that the clothes will be really simplier in 100 years and I hope to be alive until then . However , when I saw it , I was really disapointed and I must ask you for some money back . First of all , Danny Brook was not there . I was very upset because he is my favorite singer and that was one of the reasons why I wanted to see this show . On the developpement , they also said that there would be a discount for students who are between eighteen and twenty - five years old but that was totally wrong because I paid the full price , which was £ 20 . I am writting in order to complain about the musical show " Over the rainbow " . Regarding the times of the performance , the show was supposed to start at 19.30 and it started at 20.15 . Nobody likes to wait 45 minutes just watching empty scenary . I was waiting for 45 minuties . You can send a letter to your friend by e - mail instead of writting it on a piece of paper and sending it by post . After that " show " we were starving and we had planned to eat in your theatre restaurand but what a surprise ! Let 's take the mobil phone . Nowadays everybody has got a phone which is " mobil " . I 'm writting this letter to complain about your fake advertisement . First of all , in your show advertisement it sais that Danny Brooks stars in the play . In the evenings before I go to bed I sit in the living room and watch TV via sattelite . When I go to bed , because there are many mosquitoss , I turn on a special machine with a battery - like thing in it which kills them . I belive that modern technology has positively affected our lives . In order to fullfill their readers ' requirements they constantly follow them . On the other hand , famous people have a point if they do not allow the paparazzi to take their pictures , because althoug they are famous they also have their private life . Your programme is very good , especially as we can go to visit the Science Museum , which I heard is very good , but a visit to the London Fashion and Leisure Show would be a good opportunity for us to see the lastest fashions , leisure and sports wear , make - up and hairstyles and it is free for students too . I climed up the tree . It was badly hurt . My friend rushed to me , then ran back to my house and called Mom . Mom came in , looking very angry . I prayed for a short conversation . I want to complain about your advertisment for the production ' Over the Rainbow ' ; I had a very disappointing evening . Yesterday when I arrived at college , I saw Pat standing with Peter and a lot of other boys and they were looking strangely at me and laufhing . People started to whrite things on the board and to point at me . It is a great failing of responsability for a theatre like yours to have a delay like this one . Finally , the restarant where I would have liked to have dinner with friends after the show was closed , contrary to what was announced in the advertisement . I 'm writting to answer your questions but , first of all , to thank you for the prize . I would like to travel in July because it is the school holliday here in Portugal and I will have the entire month to travel , so I have no preference for which weeks . I 'm looking forward to receving your letter . I have to say that I am realy disappointed with your advertisement because you mentioned some points that are not true . Secondly , another ploblem was the starting time . According to your advertisement , the play starts at 19.30 but instead it started at 20:15 , this is almost an hour 's delay . The simpliest example of modern high technology is the introduction of the computer - better known as the PC . Reserches has shown that almost every single household owns a PC . Some people use them for their job because they need it , but others , like children , use it just for fun . Other examples that may not look like huge technological miracles are the TV , the microwave , the video , the satelite dish , the CD player and hundreds of others . All thease play an important role in our daily life without us ever understanding them . Those things can and do make our lives easier and more comfortable , but they take us away from our friends , our families and moreover they lead us to madness and cut off any relantionship with everything that suround us and keeps us alive . I think that is going to be more confortable for me due to the fact that I am very sensitive to changes of temperature and I ca n't take the risk of catching a cold because , as you know , I 'm going to start to work . How are you ? I 'm fine and I am writting to you because I know that you want to know about my experience at a pop concert ; I have to tell you that I did help there and it was very hard work . You ca n't imagin all the work that goes into preparing a concert . I am writting to you to complain about the last Saturday evening performance at your theatre . Finaly , I want to know what the weather is like in California in July . The teacher uses video and pictures to teach students about festivals , sports , museums , ect . Basketball is the most popular activity , whick takes place between 4:30 pm - 6:30 pm from Monday to Friday every week . I have recieved your letter and I am so glad I have won the first prize . I have been practcing tennis for 2 years and I won the Under 16 's U.S open tournament last summer . I 'm writting to complain about your theatre and its show last night . Firstly I would like to say that I was very dissappointed with the show and that I did n't have the perfect evening out , as advertised . The main character of the musical show , who I 'd like to say was n't the " BEST " , was awfull . And then , when I arrived at the theatre , I expected to have a discount but unfortunatly I did n't . On top of all this , the theatre restaurant was closed because the shef and the waiters were on holiday . I was very dissappointed , what else can I say . It was supposed to be my perfect everning out . In conclusion , I 'd like to recoment that you should first know what you have to offer and then advertise it . Yours sensirly Unfortunately , Pat was n't very good at keeping secrets . I should n't have told her that my dad had physcological problems . All these years I believed that my father was killed in a car accitend . When one day Pat came over to my house , we started arguing about ordinary things and during our fite the subject of my father and his problems suddenly came up . Pat started shouting and screaming , saying what was realy going on . Also with weekend shopping , you ca n't find somewhere to sit down comfortaly to have a cup of tea . According to your advertisement , it stars DANNY BROOK and TINA TRUELOVE , but surprisinggly , was proformed by a different actor of whom I did n't even know the name . Nowadays , we use a lot of modern technology both at home and in the office but it has its aventage and disaventage . The first and most important thing is that modern technology has made our life easier , for instance the rice cooker is a great invention , all you have to do is put rice in it and switch it on , it makes cooking more effeciently . Furthmore , we use the computer and telephone a lot . Mankind became more and more clever and built wonerful things thanks to his thoughts and his hands . Although there are new machines etc , medicine makes many discoverts thanks to research into different diseases in order to make the population live longer . I have won the first prize ! I am extremly happy about this . I can only take a holiday in July because I am going to start a new education at the beginn of August . Staying in a tent will remind me of an unforgottable time . Given the circumstances , I would like to learn more about Photograhy and painting . Is it possible to pay by credit card or should I take travellers ' queckes ? I applied for a job at the ticket office because I hoped to see a lot of diffrent people . I had to prepare the ingredians for every meal . That meant I had to read the recipies very carefully . I am writing to you to complate about the show " Over the Rainbow " at your theatre " The Circle Theatre " . I am deeply disapointed with the service and the unrealiable information at your theartre . I am very disapointed by this . You also mention that your show would start at 19.30 but to my knowleage it started at 20:15 and that meant fourty - five minutes of waiting . It also mentioned other services would be availalde to the adicne . For Example there were no discounts available and the theatre restaurant was closed after the show , when it was meant to be open after the show acording to the advertisement but it was closed dure to the delay with the preformane . And I would like a refun . You have wasted my evening and money . Synethetic have been created by scientis . Clothes are now mass - produced and desing by desingers . Desingres are unique in a way but their desings are sometimes more a pirce of art and not for everyday perposoe . It is hard to imageine what people will wear in 100 years ' time , because since the 1900s clothes have reduce into smaller item and more preticle . Maybe it would contine reducing in 100 years to come . Scinetis might discover a new way to make clothes more fixalde . It would provide you with a new type of material to cover your body and you could chosse what you want to wear by pressing bottons . This would be very easy to mantage but it would mean no more shopping for girls . It would be scarly to live in the new 100 years , but it would be interesting to see what will happen . The next thing is that I would prefer a log cabine . I was responsible for the advertisments and I also had to invite the " important people " from our governement . It was realy a new job for me , but I think I did well . There were two other problems : there were no discounts , contrary to the information in the advertisement , and the theatre restaurant was closed because of the repairement work . However , she definetely deserved to have a private life as a citizen . Thank you for your letter and for having informed me about the results of the competition . I also want to congratulate you on your exellent competition , thanks to which I have the opportunity to go to California , a place that I always wanted to go to . About the trip , I think it would be preferable to do it in July , which is a holiday periode and so I wo n't have any special obligations . Spending a lot of time in the same place in my opinion is the worst thing to do , specialy during a holiday ! Any little tournaments of this kind would be greateful . Moreover instead of bying a ticket I went there for free , as a helper . The pop concert was exellent and I had a lot of fun . I AM WRITTING IN ORDER TO COMPLAIN ABOUT THE SHOW THAT YOUR THEATRE PUT ON . I WENT TO YOUR THEATRE WITH THE IDEA OF HAVING A GREAT TIME . UNFORTUNETELY , THINGS WENT VERY WRONG . SECONDLY , THE SHOW WAS SUPPOSED TO START AT HALF PAST SEVEN IN THE AFTERNOON , BUT IT STARTED AT QUARTER PAST EIGH , THAT IS FOURTY - FIVE MINUTES LATER ! IT IS ALSO ADVERTISED THAT THERE WERE DISCOUNTS AVAILABLE . HOWEVER , THAT WAS ANOTHER LIE . LASTLY , AFTER THAT AWFULL EXPERIENCE I TRIED TO VISIT YOUR THEATRE RESTAURANT , OF COURSE , I COULDN'T DO IT BECAUSE IT WAS CLOSED . UNFORTUNETELY , PAT WASN'T VERY GOOD AT KEEPING SECRETS AND I DISCOVERED THAT TOO LATE . THE CONCERT WAS PLANNED FOR THE FOLLOWIN FRIDAY , WICH WAS THE DAY AFTER MY TEACHER GAVE ME MY MARKS . Dear Mr. maneger of The Circle Theatre : Could you , if we may ask , reorganise our visit to the museum and also to the shopping center . Perhaps we could spend our free time at the museum before going to the shopping center . Whateaver you do , journalists should not follow you every second . The problem is that most of the advertistment was misleading . But the main reason for my complaint , is that in the advertistment it was said it would be my perfect evening out , and it was not . And the best thing is that it entertaints me alone or with people . I have just receised your letter and I thanck you for your invitation and congratulations . As regards accomodation , I prefer a longer , Canadian tent in a quiet place because I am fond of nature and I would like to feel free in an informal setting . I like competitive and changelling sports . I enjoy comparing my skill with other players and , if possible , I would rather not do indoor sports activities , but open air ones . I have given a questionnaire to other students in my class to know their preferences regarding this choise and we all believe that the first lesson that should be filmed is philosophy . The reason is that all students are interested in it and the teacher is so good at explaing problems that the whole class takes part in discussions about specific aspects of the subject . Also the sports activities should be filmed ; they express an aggregative and social way of living school life and can be useful to show the moviments of the bodies during the school athletics events . The dancing lessons should also be filmed , especially because of the fascinating beauty of the girls and the elegance of their moviments . We were interested in seeing the actors that appeard on the tickets and I was very disappointed when , in the show , we saw other actors . I am looking fordward to hearing from you . I 'm looking fordward to hearing from you . I have just recived your letter and I 'm very happy because of it , especially becouse the competition was so hard . Being at Camp California was one of the dreams of my life and now I can relaized it . However , about accommodation , I 'd prefer a log cabin , becouse it is more confortable than a tent . Firstly , I was very embaracing during the concert , but all the staff were very kind to me and Tom too . THE HISTORY OF THE HUMAN RACE IS THE HISTORY OF WORLD CONQUEST . THAT SAID , TECHNOLOGY HAS ADVANCED CONTINOUSLY SINCE THE BEGGINING OF MAN 'S EVOLUTION . FURTHERMORE , DURING THE LAST TWO CENTURIES , THERE HAS BEEN AN ENORMOUS TECHNOLOGICAL EXPLOSION . WHILE THE XIX CENTURY GAVE US THE STEAM ENGINE , FACTORIES AND THE ELECTRIC LIGHT BULB , THIS CENTURY HAS GIVEN US NUCLEAR ENERGY ( AND SADLY ATOMIC WEAPONS ) , THE COMPUTER , THE INTERNET AND TELEVISION . I 'd like to tell you that the best month for me to travel to the U.S.A . is July because I will be on hollidays in that month . I do n't really worry about the accommodation at Camp California , but if I can tell you wich one I prefer I 'll choose to stay in a tent . The concert was in a massive club and the tickets were sold out . Marevellous ! Two days before I read an advertisment for this show , which said that Danny Brook was starring . Apart from that , the show started at 20:15 , not at 19:30 , as it said in the advertisment and the theatre restaurant was closed when the show finished . When I went to my bedroom I reliased that Pat had told my mother about the party , because no one else knew that my mother did not know that . I am writting in order to complain about the musical show , the name of which is Over the Rainbow , which I saw in your theatre recently . It was a pitty but it did not annoye me because I thought that the musical was good enough to pay £ 20 for . After the show I decided to go to have a coffee and to smoke a cigarrete to try to calm myself and suddenly I could see that the restaurant was closed because it was the barman 's day off . I am very indignatged because I wasted my time and it was a horrible evening so I would like you to return my money and take note of all these problems . Maybe it would be a nice idea to analize these changes and to put limits on technology , because I think that the most important thing is to understand our life and know the ways we can improve it . Firstly , the show did not start on time but fourty - five minutes late . This actor was not nearly as brilliant as Danny Brook and I would not have paied so much money if I had known this before . The worst thing of all was that at the beggining of the show I realized that the actors were totally different from the ones advertised . They were worse than the previst actors . They believe that people in the future will wear confortable clothes because they will be outgoing , amusing , etc . And people will wear cibernetic clothes but at the same time comfortable clothes . I recived your letter recently , and I am really happy to learn that I have won the first prize . About the acommodation during those two weeks , I would rather stay in a log cabin , as it is really difficult for me to stay in a little close room . I had an induction climbing course two years ago , and I still climb regulary . I can do a V+ level climb . Going out to spend a day shopping is something very popular . The shopping centers are always busy , with people going up and down carrying bags and looking in shop windows ; it seems everbody is happy . To sum up , shopping is not always enjoyable , but do n't worry , the shooping center is still there waiting for you ! I can only travel in July because this is the mounth when I have holidays . I 've already talked to my manager , and she said that that 's the only mounth I can have my holidays . I 've been playing tannis since I was seven , and I 've been studying how to play tannis for a very long time , nine years . You know how good I am at music Anyway I was helping at this pop concert to get the corect sounds . At the bigging I was conecting all these wires into spekers , music system , guitars etc ... The bit that I particularly liked about the experience was when I was standing next to the singers and playing a guitar - you know how much I love playing guitar - and all these video cameras were just filming us . I asked one of the cameramen when they 're going to show this show on tv , and he told me they 're going to show it on the 10 of June , so turn on your tv on this date , chanel three , and you will see me there playing this guitar . AH , it was lovely . What I realised was they were not different from any of us but they were called celebreties . I particularly liked listening to their musicians when they played the piano , clarinet , drums , violen etc . Pat promised not to speak to anyone about the car , but one evening Philip overhead her speaking about this with her boyfriend : " It will be delievered on Thursday ! Furthermore , the show started at 20:15 while the advertisment said that it was going to begin at 19:30 . I am very surprised that such a reputable theatre like yours has been able to break all the promises that were made in the advertisment . Of course , what was going to be a perfect evening out turned into a very disappointing evening , and I would be very greatful if you could refund me the price of my ticket . Sciencist will invent new materials that will keep the body 's temperature in a suitable range . For that reason clothes will be simplier and more practical . Of course , the resources used and the manufacturing will be completely harmless for the enviroment because people will be more aware of the neccesity of taking care of the world we live in . And it 's all the more tyring since you often wait for two weeks before getting it . I think that this tendence will not change but what will change is life . With regard to your International Arts Festival advertisment , I would like to share with you the pleasure I had to be part of the event and make some suggestions for next year 's festival that you might take into consideration . In your advertisment you mentionned that there would be artists and stars coming from all around the world , unfortunately I found out only six countries were represented . The night he came into this world was one of grater for the habitants of the country and also of the town where he was born , it was an ordinary night . To begin with , according to your advertisement , discount tickets are availabe . The tickets were rather expensive , and the discounts mentionned in the advertisement were n't at all available at the theatre . Pat was my friend , I trusted her and we got on very well untill she repeated to everyone the secret I had told her . Regarding accomodation I 'd prefer to sleep in a tent becaose I like beeing outside and hearing the noises of the sea . a maths lesson , an English lesson , a swimingpool lesson , the break and the staff room . - We could show the activities of the students during the break . For exemple , students who play football or volleyball . We could find out what this room is like and what the teachers do in this misterious room . I can be closer to nuture and I have never used tents before . My parents were very pround of me . My hands were sclumbling but I did it very well . I 'd like to say something that I felt during the festival , and give my opinions that would be helpul for you to prepare for the next festival . People belive that the bird was sent from heaven . So I am going to ask for a refund ... I hope this is n't affending you too much ... When it comes down to color , I think it 'll be much brighter and maybe glittery . Colors to match the clothes . First of all , I would like to thank you for doing such a good job organising the competition which I luckely won . I have been really very impressed . In fact I will finish my university exams only on the first of July and after the 20th it is impossible because I am going to do four weeks ' volontary work in India for UNICEF . If it is possible I would prefer to stay in a log cabin , because , in spite of my love for nature , I am terribly allergic to pollins . Thank you very much for your attencion on my behalf Why have so many people been infected by this " psychologic virus " ? We are always trying to have more things , which lead us to neglect our family , our future , and other things which are probably more important than a new perfum . Maybe you think I am exaggerating but recent studies prouves that this mania can be really dangerous . Certenly only the fact of having something can help people to be more sure of themselves . Probably when Oscar Wilde said : " Superficiality is the suprem vice " he was right . You can not imagine our disappointment when we realised that the show had been posticipated to 20.15 instead of 19.30 and that the restaurant was closed because of repair work ; as a matter of fact , after the show we only ate a hamburger in a fast - food restaurant . She was so angry and felt so betrayed by Mr White that without any exitation she went to the school Headmaster to report everything she had seen . I have just recieved the letter , which lets me know that I have won the first prize . This is because I intend to take an examination in Septenber . And recently , I have been practicing tennis as a school activity . The reason I enjoyed it very much is that I could meet the vocalist during setting chairs just before they started practicing . Can you send me a letter back writing what happend to you recently ? Finally , what kind of wheather is waiting for us ? Surprisily , there were no discounds . She just remembered it ought to be a secret , and she became really embarassed . I swim really well and I am a proffesional basketball player . It all started when one of the organizers asked me to help him at a concert of my favorite band . I am writting to you about the show . The woman who sold me a ticket was very roud to me , actually she started swearing at me . They were just playing and , by acsident , Peter shot him . He promised to keep it secret . The next morning we had an arguiment with Pat . The 3 of us were shouting at each other . In short , Pat left us . Secondely , I am interested in trying something that I have never done , so I would like to do sailing . First of all I have to say that the whole festival was a greatful success and I also think you chose an appropriate title for the leaflet . Nearly at the end of this letter I have to say that the idea of the weekend ticket was really good because it gave the people the opportunity to attemp for a whole weekend for a cheap price . I am writing with regard to your advertisment . It was my favorite musical . I was very hopefull that I was going to have a good time . The worst thing is that I could n't see my favorite actor . I was so dissapointted about that . I could n't consentrate on the play any more . In contrast to the advertisment everything was disapointing . These days we can use a computer , television and some sophisticated equipment , which were unusuall once . Children play with computers instead of the usuall toys . There has been a change in the relatinships between people . We have noticed the environmential damage in recent years . I think this festival is a great idea because it 's an opportunity to see and to appreciate art , but I also think there are some things thas could be changed . I noticed that the artists were from only six countries insted that from around the world . This choice does n't give many artists the opportunity to expresse themselves . I hope that my opinion can help you to organize for next year a great internation arts festival alone to young people . I am writing to complain about a musical show on the 10th of June , and I was very disappinted . I was promised that the star was Danny Brock but when I was there I saw another star that was completely different from your brochar . According to your brochour , the show would start at 19.30 p.m. but it started at 20.15 p.m. I wanted to sleep and it was very anoying . I was promised that after the show I could go to the theatre restaurant but due to the show starting late it aslo finished late , therefore , when I went to the restaurant they were deffinately closed . I have a really good freind , Pat who I trusted and counted on . One day , I fell in love with my closest freind . We were stedy in the same class at school and he also knew Pat as well . Personally , I wanted to keep it serets because I was afraid that we might split up . And I would like to make sure that he relly loved me . My boyfriend told me that he wanted to surprise his freind in his class when the time came . One day I decided to tell my best freind - Pat , who I relied on . I told her everything abat my boyfreind and when we met each other and evertauly fell in love . On Monday morning , I walked into the class and all of my freind were shouting at me and calling my name and my boyfreind . I was very ambaressed and I wanted to run out of the class . I recived your letter and I am very excited about the camp . I would like to go in July , I do n't mind wich two weeks , but it has to be that month because in June I am still in school and in August I am going on holiday with my family . I would prefer to sleep in a tent because I think it 's different from where I sleep every night so I would apreciate it if there are still tents available . Here is where the good part starts , I was doing the courtines ( opening and closing ) when Nick came up to me and asked me to go on stage with him . My heart started beating very hard . DANNY BROOK is one of my favorite actors so I decided to buy a ticket even though I had to cancel my apointment on that day at 18.30 and aslo notice of price discount impressed me . However , when I got to the theatre , you not only did n't have any discounts but also had to apologize to us for the dalay in starting the musical . In addition a different actor appeared on the stage and I could n't have dinner after the musical because the restrant was closed . It made me so dissapoint and angry . You should return my money immedeastry because that night was far from parfect . When all the money had gone from a bank , nobady was there except Pat . Then the police realized who the bank robbers were and arested them . I 'm writing to answer the questions that you sent me in the last letter , so referring to the question of when I would like to travel , I would like to go anytime during July , because I have to be back home in August , because I need to apply and get everithing sortted out , to go to college next September . And referring to the question about wich type of accommodation I prefer , I choose a log cabin , because I think that a tent is messier , so I would appreciate it if you give me a cabin . And my answer to the question about wich activities I would like to choose , well I choose swimming , because it is my daily excercise , and surfing . And well , Mrs Helen , I would really apprecciatte it if you sent me back a letter with all the answers to my questions . Yours trully Well here in Dublin things are still the same , but I think somebody told you that I went to the Moby concert here at the Point , wich is the big venue for events and concerts . I guess it was the best concert I 've ever been to , but the coolest thing is that , well do you remember my friend Luke , the one that works as a security guard ? Well he told me that they needed people to put everything on the stage , so I went to help them and everithing else , and when I got to the Point , do you know who was there ? Can you believe it , it was Moby . So I went to say hello to him , and he asked me , ' Would you give me a hand with my decks ? ' So I went , and when we finished he gave me a T - shirt and a gold pass to see the concert from the first row . Oh my God , Kim , that was the best thing that ever happened to me . Well Kim , I hope to recieve a letter from you soon , and please tell everybody about the Moby concert and everything , thank you . It is wonderful for me to have the opportunitie to visit Camp California in the U.S.A. I think this topic is so exciting from the antropological and psicological point of view , because we can studie the subject 's reactions before , during and after shopping . For men and women appearance is important and they spend a lot of money buying clothes , cosmetics , accesories , jewellery etc . I think in the near future we need to decide with the goverment which special place in the town will be lefet just as a comerical area , but of course with all the facilities to get there , like a big supermarket and mall centre , from different areas of the city . IN ADITION TO THIS , I DID NOT HAVE ANY DISCOUNT ON MY TICKET . Firstly , the actor was supposed to be Danny Brook , but he was not , it was another actor , who I have never seen before , so , as you can imagen , I was very disappointed . Maria talked to Pat about the stupid thing that she had done , but Pat refused to apologaising to her , because she felt it was n't a mistake and she did it for only one reason : to help Maria to get the man that she loved . First of all , we would like to thank you very much for organising such a wonderfull trip with an interesting programme . It is a coinsidence which we would be extremely happy to take advantage of . This is a great opportunity for us to see the latest fashions and famous fashion models who we would like to have authograps from . I personally think the best would be to put the celebrities in cages and let people touch them , point and ask for authopraps . It may , in many cases , not be true but we can suspect that most of them wanted to become a celebrity and they had to know there is no private life unseparately contected to it . The purpose of this letter is to congratulate you on the International Arts Fesival I attended last weekend . Firstly , I would like to tell you that the idea of organizing an International Arts Festival is fantastic , but in your advertisement it said that I would find stars and artists from arround the world , when , in fact , they were from only six countries . Secondly , I belive you should know that a lot of people , including me , were not able to enjoy the concerts because some concert halls were too small . Last but not least , I would like you to know that I think the idea of the weekend ticket for all events was excellent because in the end it was cheaper than paying for each event separatelly . Another way our home could be different in the future is probably the utilitles we will be using . This is because people wo n't give up the great taste of food . Although it could be subsituted with a vitamin pill or two . Lastly , I think that all these changes wo n't really be noticed as we change things daily and slowly instead of abruptedly . Some people think that being a famous person is a very excuiting thing , that all the time this makes you feel complete and also they think that if you are famous you are special as well . I believe that if somebody wants fame and glory he must be tottally clear about the results . Another succesfull carreer such as , film stars must also be balanced . If somebody wants to be famous of cource they must be on the top and the mass media will be following him or her . It does n't matter what kind of carreer or job you have . Firstly , I 'm writing to thank you for the great opportunity you are giving us , especially in planning all this programme in such an acurate way . Also , this show is free ( another positiu point ) . I mean I do n't think we 'll change cars into aereoplanes ... In conclusion , I strongly believe that the house of the future will be the house of a new awareness . It will be a very positiu point for opening up our lives . Technical and Warm Home People 's way of life has been changed considerably by rapdily developing mordern technology . Since the eletric fire and microwave oven had been invented , their lives have been far easier than before . I was enthusiatic about receiving your letter . I will give you all the necessary information . You ca n't imagine how many people are involved in the organization of a concert . Apart from the musicists and the singers , there are people who work with lights , who organize the security ... it was so exciting ! I 've recived your letter and I am pleased to have won because I needed some days to relax and to leave the city , which is very extressing . I can travel in July only because I am working in an office and I must ask my boss for a holiday and it 's the mounth he can give me one , so I hope that is n't a problem for you . I would prefer to spend the two weeks in a tent , that 's , in my opinion , a way to be nearer the enviroment and the animals , although I do n't mind staying in log cabins . To sum up , everything you do in small cuantities is good and fun , but do n't encrease the amount you do if you do n't want to feel uncomfortable . Well my friend , I have to go , because I have got an appoinment with the Dentist . How much mone do you recommend me to bring with me ? While we were in Florence my wallet was stolen , probably by a gypsie . I had to buy my dress , its accesories and also clothes and souvenirs ! Thank you for choosen our ticket at the final . It would be great if we could choosen swimming and golf . Finally , we would like to know when you will send us the airline tickets and the tripbrochure . You are interessted in my last job ! I really want to tell you all about my experience . In addition , it was nine days of hard work to mount all the different spot and houndreds of Coblights in the right place . Finally , we worked the hohl night befor the concert . We had to adjust the laser extremly carefully to get it in the correct position . Finally you said there was a Restaurant , but it was closed , so we could n't eat anything untill we got home . I have choosen these activities because these days I am playing on the university team , and photography is my favoorate hobby . Is it necesarilly to bring any money ? I am writen to you to tell you about my experience at a pop concert . It began when our mutual friend Martha ofered me the chance to help organise the concert . Obviously I accepted . Now I can tell you that it was an amaizing challange for me because I had never done anything like that . My duties as a staff member were various . The firts day I had to pick the bands up from the airport , and for this I hired a van . I am very disappointed because the things that were writen in the advertisment were not really true . It was writen that the stars would be Danny Brook and Tina Truelove . Danny Brook is one of my favorite actors and there appeared a different one . I felt very disapointed . The musical should have begun at 19:30 , but it started at 20:15 ; this is inacceptable ! As you say in your advertisment , it was not my perfect evening out and therefore I would like to have my money back . On the other hand , the main disadvantage is that using modern machines can be very difficult for ederly people ; it would be very pratitable if the modern industries trained people to use modern technologies . I 'm writting to you to thank you for the excellent programme for our English class in London , especially for the river trip to Greenwich . It will be a great experience for us . But the students in our class have seen an adverstisement for the " London Fashion and Leisure Show " , which will take place in the Central Exhibition Hall , London , on Tuesday March 14 from 10.00 to 19.00 . At the same time we have to go to the Science Museum but we would all like to go to the show . Please let us know as soon as you make your decission . This book helps us to impove our logic , mind , and memory and it teaches the reader not to lie , to be more honest with other people and pay attention to the smallest details in our life because sometimes that can help us very very much . In fact , shopping can have some disavantages for different reasons : It became scencial to doing my homework . The place I 'd prefer to stay in is a log cabin , where I 'm sure I 'd feel more confortable than in a tent . I think I 'm not bad at painting either ; at least everyone in my family likes my work , includying myself . If it is possible I want a log cabin for my accommodation because I have been suffering with my back since my childhood , therefore I need a confortable place to sleep . I selected swimming because it is a cure for my backace and I have not done it since I started my new job five years ago . On the other hand , shopping can be disenjoyable . Peter and Sue asked Francis for some help with their exam subjets and Francis , all week , was too busy to help them . I looked at her and she became pale and suddently left the class . Recently , some students have seen an advertisment about a fashion and leisure show in London . It will be on the 14th and we all want to go . So , it would be greatful if you could give us this opportunity to watch the show . At that time he was unconcious . I kept asking myself ' Should I wake him up or try to use my dubious first aid skills to help with him . " Can you please give me some recomendations about the clothes I will need and also the cost of the food there to plan my budget . I start thinking about what she or he prefers and I try my best to buy something apropiate no matter how much money it costs . In conclusion most of the time that you spend shopping you put a lot of effort into choosing things and making decissions and they are more or less important , or more or less enjoyable depending on what , why , where and who is the person that you are interested in pleasing . I AM WRITING WITH REFERENCE TO THE LONDON TRIP WE ARE MAKING PRERY SOON . WE ARE REALY INTERESTED IN THIS SHOW . WE THINK IT IS A GREAT OPORTUNITY , BECAUSE AS YOU KNOW , WE DON'T HAVE ACCESS TO THAT KIND OF SHOW IN THIS CITY . IN CASE YOU DECIDE TO CHANGE THE PROGRAMME , WE SUGGEST GOING TO THE SHOW ON TUESDAY AND ON WENSDAY , INSTED OF FREE TIME , VISITING THE SCIENCE MUSEUM . YOURS SINCERLY , I WAS LIVING QUITE CLOUSE TO PORTOBELLO ROAD BUT I DIDN'T KNOW THE AREA VERY WELL BECAUSE ALL THE TIME I JUST HAD TO GET OFF AT THE COURNER OF MY STREET . BUT THAT DAY , AS I WAS KIND OF DRUNK , I DIDN'T REALISE THAT THE BUS TOOK A DIFFERENT ROUTE . SO , WHEN I NOTICED IT , THE DRIVER WAS ALREADY ASKING ME TO GET OFF , BECAUSE WE WERE IN THE GARAGE IN PORTOBELLO . I TOLD HIM I DIDN'T KNOW WHERE I WAS , BUT HE JUST SEID SORRY . I WAS REALY SCARED . THERE WERE SOME PEOPLE AROUN BUT I WAS AFRAID TO ASK THEM THE WAY . AFTER FILLOWING HIM FOR 10 MINUTES , I STARTED TO RECOGNISE THE PLACE , AND I WAS FEELING MORE CONFORTABLE . Definetely , it was a very disappointing evening and I would appreciate it if it is possible to have my money back . I thought that Dany Brook , who is my favorite actor , would perform in that show . Please , if you would be so kind correct this mistake . I would be gratefull if you could correct too that show starts at 20.15 not on 19.30 . Another thing was that there were no discounts available , and that the restaurant , which I wanted to visit after the show , was closed because of the main cook sikness . Unfortunately , Pat was n't very good at keeping secrets . I knew that he 's a very talkative person , but it was nessesery because I wanted him to be the main organiser of that birthday party for tenes . I made beautifull invitations for all of Agatha 's friends with a note : " Do not tell Agatha about this . This is a suprise party for her . Please keep the secret ! " Pat arranged a great DJ and drinks . My friend and I made the perfect decorations with ballons and other party stuff . It was so exaiting ! ! ! Enyway the disco was great , music also . And your last festival was very intresting too . But also there are some notes that you should improve in next year 's festival to make it absolutelly wonderful . I think that one reasonably - priced weekend ticket for all events is an exellent idea because it is n't so expensive as buying a ticket for each event , and with this ticket you can visit everything you want . So the main rule in our school is regarding theachers . I have choosen as my activities surfing and photography . How is the wheather in California ? Afterwards , I felt tired and unsatisfy with the store . I 'm very happy that I won first prize in your competion . I can come to USA in July becouse in August I will be working with my father . You offer a great veriety of activities . I have qustions too . People alwas queued for stuff from the west . Nowadays we have capitalism , free market , lots of privete shops , markets and supermarkets . They are imported from enother Western European country . I apprieciate these shops for lots of products , cheap prices and big spaces . On Friedy evening and on the weekdays all supermarkets are crowded . I am writing in reply to your letter in which you told me I have won first prize in your competion . Now I am answering your questions and then I would like to know some further information about travel and accomodation . For istance , it is fun to enter a clothes shop and try on a skirt or a T - shirt although you do not buy anything . CONCERNING THE ACCOMMODATION - PLEASE BE INFORMED THAT I WOULD PREFER THE LOG CABIN AS IN THE MEANTIME I SHOULD WORK ON MY LAPTOP , PREPARING SOME FINANCIAL REPORTS SO ELECTRICITY WILL BE NEEDED . I THINK THAT THE LOG CABIN WILL BE MORE COMFORTABLE OVER ALL . REGARDING TWO ACTIVITIES - I HAVE CHOOSEN TENNIS AND PHOTOGRAPHY . PEOPLE LIKE DOING SHOPPING ( ASPECIALLY IN POLAND , WHERE MANY NEW AND MODERN SUPERMARKETS HAVE BEEN OPENED ) LADIES PREFER TO VISIT UNDERWEAR SHOPS OR DEPARTMENTS IN HUGE HIPERMARKETS AND MEN ARE HAPPY WHEN THEY CAN BUY SOMETHING NEW FOR THEIR CARS , MOTORBIKES OR COMPUTERS . ANYWAY EVERYBODY SHOUD DO SHOPPING AS PEOPLE NEED TO EAT , NEED CLOTHES AND MANY OTHER IMPORTANT THINGS TO LIVE . Furthermore , I prefer to do painting and photography as my hobbies and my fasinative for art and enjoy taking photographs of wildlife . Sorry I haven't written to you for such a long time , but I 've got a good excute ! What a surprise ! And unbelieveable , I was responsible for looking after the pop stars . But , I got through it . I had to take care of them during the break , serving drinks , clothes , I even brought them some cigaratte and anything they wanted . What I most appreciated was that they gave me their latate CD with their signatures . Marvellous thing ! And of couse , as you have seen , I 've given one to you . I 'm sorry but I am very dissapointed with the show . We arrived on time but the show was delayed untill half - past eight . Moreover , we were n't given any disscount for beeing students . Maybe the eason for that is very simple : lack of money ? It may sound funny , but mud , gravel and snow lying on the school floors is not a nice sight , so we change our schoes without questioning that rule . Also , in Augost I will be studying a summer course in English . Also , I felt wonderful when I saw that the concert was a success and every day it was croweded . All the students would be very greatful . We call home the place where we live or the country where we come frome . Working long hours , doing plenty of activieties , going out , going on holidays . Propably in the future we may be too busy to go to our own home and spend some time there . Finally , we went to the restaurant in your theater after the show . It was closed because of the staff trainning . It is believed that our lifestyle has been changed by mordern technology such as computers and washing machines etc . First of all , dishwashers are very effecient for me because I work full - time and look after my children . In my opinion , morden technology makes our life easier . Unfortunately , Pat was n't very good at keeping secrets . That was why our great plan for our horiday was not be real . It happened last summer . We planned to go on holiday in the Southen part of Thailand by motorbike but we could n't tell our parents because they would n't allow us to go . Whlile I was standing on the beach , suddenly I heard someone call my name and say that I had to go home . That is right , it was my mum . I am writing in reply to your letter I received yestarday . ' As I have a choise I would prefer to stay in log cabins rather than tents because they seem to be more comfortable and you are not so dependent on weather conditions . Last year I took part in a photograher 's contest and I won a second prize in Poland in the cathegory of , , beautiful scenery '' . But you could give me a chance to get more familier with it . Have you ever been to a big supermarket and tried to find something you really like or want , looking throug shelves and not finding that in the end . Moreover , you could face an agressive and maybe even drunk shop assistant or manager . These are some points I want to mention about the differencies between what the advertisement said and the realities . It was so boaring to wait for the show in a noisy and hot theatre . It was the most imperfect evening out I ever exprienced . It took quite a long time to adjust to the multi culture in the language institue . Since then we have visited each other often and spent time together on the weekend usally . And sometimes they do something in the library by themselves in the afteroon . I am writting to thank you for your letter confirming that I won the first prize in your competition . But I have finally got around to writing and you 'll see that it 's definitely been worth waiting for as I have some great and unbeliavable news to tell you . You will see why I 'm describing it as the most unforgettible one when you read through my letter . She invited me to the rehearsal of a huge consert by a singer who is a well - known pop star as well as my favorite . Despite the fact that I felt exhausted I must admit that it was one of the days I will never forget througout my whole life But if the politicians or the film stars ask for privacity the media has to respect that . Second , the show started at 20:15 , althoug I read that it would start at 19:30 ! How has modern techology changed my daily life ? When Thomas Adison invented electric light , it was the greatest invention for people of that centure . I mean , almost everyone now has a car , a computer , a mobil phone and even an airplane . Coocking has become faster with the help of the microwave . They become lazy because they know that they can sit on the sofa and change the channels on the TV by pressing a boton . This would be a great opportunity for us because we are all intrested in clothes , sports and fashion . There is also Hercule Poirot , the famous detective , and he finally solves the mistery . And another question is what are the prices of things like there , which I want to know so that I can make a better buget for my trip . The place where we worked was a football pitch ; we spent 3 days setting up the stage , the equitment , and the lights . I only put the speakers in the right places , or helped the engieners test the lights . But in the breaks and after work , I had a chance to talk with the engieners , and I leant something about setting up the equitment . Finally , the day of the concer came . After the concer finished successfully , I was happier than ever because the success inclueded my work and that was the most enjoyable moment in my life . According to your advertisement , the starrings were DANNY BROOK AND TINA TRUELOVE . I decided to go to see this show because of its starrings , but on the day I saw it , a different actor performed . Before using e - mail , I used to write letters and sometimes used the telephon . Secondally the show started late and I had to wait for 45 minutes doing nothing . If you compare the fashion now with that of 100 years ago , you 'll notice that there are incredably big differences between them . It 's like a joke , but a bit scarely . There was no discount at all , which was in contrast with ' Discounts Availabe ' . Concerning the fashion of the future , I think it depends on people 's personalities and they develope their own styles which suit them the most . As for the colours , I think metalic colours , especially silver , will be the most popular . As different kinds of farbics will be invented and the clothings will never be just cotton as always been seen . Maybe paper can also be a farbic used to make clothing and for those who like to wear new clothes every day . While I 'm stayin there I would like to practise tennis and basketball , as I have been playing both sports all my life , and I have to say that I am very good at both . And that is allways what we want . A huge que that lasts half an hour or more and finishes with you completely freaked out . I 'm writing to you inform you about the dissapointing evening I had when I went to your theather to see the play called " OVER THE RAINBOW " . According to the advertisement you published , there should have been some important differents to the production I saw . Finally , I want to tell you that it is not useful for you and your theather to cheat your customers . If you do that , there will be no bussiness for you and no satisfaction for them . I look fordwad to hearing from you Emilio Almodar , 18 years old , University Student , and the career I have choosen is in Internacional Commerce or Market . In addition to this we use the net to comunicate with some friends we have in the U.S.A. It 's really amazing . Maybe some people will be nakid . Last but not least there are some things I would like to know : What kind of wheather do you have in California ? That means that there are more and more big supermarkets and big stores , where no one has time for you to help you or explain things to you such as what kind of bicycle is the best for you , no one to talk to and no one to complaine to . That is the most important reason why I only like to go shopping in small stores , where I have peace and quiet and very often nothing to complaine about . I am writting in reply to your letter . I am glad to have won the first prize in your competition for two weeks at Camp California in the USA . About the information that you need , I must tell you that I will be able to travel only in July becase I have got a new job and I ca n't ask for more than one month of holidays each year and in the other months I will be very busy becase my workmates will take holidays in these months . Regarding the accomodation , I would prefer a tent becase it is more appropriate to a camp . And regarding the activities , I must choose Photography and Painting becase I am not very good at sports and I think I do well at these things . Here I am , writting to you to tell you everything about my wonderful experience at the concert . When the concert started , I was preparing some drinks for the band because after the concert they would be very tired and tersty . In order to celebrate the 125th aniversary of the city , the Coun Council organised an open air concert . Although I was very nervious , I knew I could do the job well . I am writing to express my dissapointment with the play " over the rainbow " , which is showing at the Circle Theatre . Finally , when I asked about the discounts , an agressive employee refused to answer me . Defineteley , I want my money back as soon as possible . So , I told Pat that Lynne was ugly , fat like a cow , and extremely agressive . But , well , the unhappiness started with Pat and my reveilled secrets . Organise your shows better and do not exagerate with publicity ! Despite this , I 'm convinced all this progress has caused some damage to the community , not only phisically . Finally , everyone should slow down his own life 's rythm . Second of all , the play was suposed to start at 19:30 , but it started at 20:15 . To finish my " marvelous " evening , I wanted to eat at your restaurant , but it was closed and no reason was given . I was punished , nearly expelt , but Pat did n't receive any punishment . According to your advertisment I could have one but in reality there were no discounts at all . One of the reasons for my visiting your show was Danny Brook 's participance . To make matters worse , the restaurant which was mentioned in your advertisment was closed . So I did n't have such a perfect evening as was promised in your advertisment . In fact there were a lot of mistakes in your advertisment and I would be gratefull if you could give me back a part of my money . On the one hand , the Internet is often used for entertaiment , but on the other hand it 's also used in different business and education processes . If we are talking about accomodation then accomodation in tents would be great - I love being close to nature . I am not talking about some kind of achivements in those discipines but they are my big pasion Unconected part of all people 's lives is shopping . As a teenager I must addmit that there is nothing more enjoyable than shopping . It 's like , , walking in the clouds , , you feel like you are flaing . Choosing gives me such great pleasure because I never have to worry about vere I get money for my wishes . It 's hard for me even to emagine a situation when shopping is not enjoyable . Probably it is one of the moments when you want something baddly and you ca n't have it . I hope your questions have been answered appropriatly . Instead of tranditional telecommunications , we can talk by , e - mail or even see each other with the help of a computer network . Among the large number of choices , this unfinished church offers a gorgeous view from the top of its towers , a charming story and one of the most representative examples of Catalonian modernisme art . We looked at every hotel in town , trying to give you the best offerd . You do not have to wear any special kind of clothes but in my opinion you can wear very cassual clothes . Finally , on the last day I sugget you go to the mall where you can enjoy shopping and looking around . The aim of this report is to recomend you to visit the Fuerte de San Diego Musseum . I asked some pleople in town and this was the best place to choose . The Fuerte de Sandiego Musseum was built at the time when the Spanish people were trying to take all the lands from Mexico , one of the most important people who was at front of the Fuerte was Hernon Cortez , the first Spanish in have more lands than anyone at that time . The Musseum is situated in front of the sea in the centre of Acapulco . This invention has made our lives easier and quickier . Service : It is over 100 years old but it is kept in good condition by the local people , who are proude of this castle . It is a different expirience . History : At the castle there are always a few guides , who will show someone around and tell him about the history of the castle ( when it was built , by whom and why ) , which makes everyone enthousistic . I recomment visiting this castle , because it is interesting , marvelous and something different . Nyremberg is also famous for this castle and the students will have a different expirience and a lesson too . Finally , there are a lot of mouseum in our town . Therefore , I would suggest going to the frogs museum , which is really fashinating . subject : Arboriginal Art Museum . The aim of this report is to discribe the biggest building of our town . b ) The building was buit in 1999 . Therefore , it is an example of modern architecture . In addition to this , we have chosen the luxuery Palace Hotel , which is comfortable enough and in a good location . Cars , boats , motobikes , airplanes : Who has never used them once ? In this world , where the nations fight to be the best one could n't be diferent , the airplane became the most important thing in the war . The best way is definetely by air . Thank you for your lettre . The bus will pick you up right at your hotel entery . You do not have to wear spezial clothes , just wear what you always wear . On the top of the tower it has a huge clock on eatch side . It was rebuilt in 1948 because of the Secound World War , when it had been demaged . The tower is absolutly marvelous . I receved your letter and I 'm happy to help you . We booked the Palace Hotel for your group . It 's nice and quiet . When you go out of the hotel turn right and go stright on ; turn right again at the first crossroads . In the big room where we 'll have the party , there 'll be some picturs of our college . You 'll see all the generations who passed through here . The group has been booked into the Palace Hotel , and the best way to get from there to the conference is by tube . The location of the conference is then five minutes by footh . For the party I suggest you wear classic clothes ; maybe something black and not red or pink . I am going to wear classic black trousers and a white jorsey - it might be that this information gives you some idea too . I am sorry to hear that Richard Brown is n't well and hope he 'll get better soon . I am more than happy to give you the nessessary information . Regarding what you could do in your free afternoon on the day you leave I would suggest you take the students to our History Museim . There is also a gift shop in there , where your boys and girls can buy some soveniers for their families and friends . More and more people are learning how to drive and choosing to travel by car , because it saves a lot of time comper to travelling by public transport . You do n't have to wait at a bus stop in cold and windy weather for a late bus , or be stuck on a train for an hour due to some railtrack repairs . You can just jump into a car , tune your radio to your favourite station and have a plesant drive to your distanation . I use my car every day everywhere I go and I absolutelly love it ! I can listen to the radio and sometimes can listen to Thai music , as I brought some cassets with me from Thailand . I took a driving - theory test last October and I passed it and I will take a pratice driving test very soon . It is called the Palace Hotel , and we hope that it is going to meet your expectetions . I strongly reccommend you to use public transport in order to get there , because you may find other types of transportation quite expensive . Moreover , you must be aware of the fact that the conference is going to last two hours , untill 10:00 pm . After that our college has organised a barbequiou night , with traditional local music that you must not miss . I hope that you will find my information helpfull . THE HYSTORICAL MUSEUM Without any doubt , it is a hystorical place which provides its visitors with the opportunity to discover different aspects of Greek history during the passing of the centuries . Do n't miss the chance to visit the hystorical museum , located in the heart of the capital city . The hystorical museum is simply a symbol , a proof of what the Greeks have always considered as a fundamental principle : their freedom . There are five diffrent floors , each of them presents a diffrent chronical period of Greek history , starting from the period before the birth of Juisus and concluding with the revolution of 1967 . Inside the museum there is a bookshop with a large variety of hystorical books , maps etc . If you really want to discover what Greek history means , we strongly recommend you to visit the hystorical museum ! ! ! When you are in the bus station you will catch bus number 37 , which will go to the town center . Anyway the college is the first road on your right from the town center . Architecture : It is a typical from this epoque with beautiful drawing on the wall and first kind of writing in the sports center . They decided to build more schools , especially in Switzerland because the people there were considerated clever . The people who will attend the party include many professers , semi - professers and faculties . Firstly , there is the acquerium in the building . I hope when you visit you will be favorite place . Firstly , Palace Hotel has been booked for the group 's accomodation and I spoke with the hotel manager about travelling to the conference . I am writing in reply to your letter about the internation student conference . And the best way to get from there to the conference is by coach , as there are about 35 internation students , and they are all strangers here . A big Buhha was built in 1997 just next to the temple , and it is the largest outdoor Buhha in the world . It is easy to get there and free amittion . On the other hand , Hong Kong is known as a highly commerical city , and you could find something different in Po Lin Temple . To hear the voice of the person you love is a feelling that is hard to describe ; it 's wonderful and so real . You can imagine their face clearly . I had a problem with my best friend once when we kept in tuch through e - mail . With reference to the information that you have requested , the hotel that has been booked is the Holiday Inn , in New Port and to get to the University of Wales , wich is not far from the hotel , you only need to take a divertion where clearly indicate Carleon and once you are on the main road , all you need to do is to follow the country road which takes you directly to the place . As for the last day , I would suggest you make a visit to the locall museum and the ruins of the Castle . In the first you will find a very intresting collection of Roman remains , also you can visit another section wich is supoused to be a Roman site . I always had considered myself to be very looky to be born in the century because of all the amaizing human inventions . However , I feel that at the moment there should emerge more grups to control this development because of the industrial polution that has been created and it seems that it 's very little , what is being done at the moment in relation to our embiroment . I think that it will be nice for the end - of - conference party if you invite somebody to sing and give the students the time to enjoy theirselves and to dance . First of all we need the telephone in our house because it 's important to make a call if you need something or if something happend to your house and nobody is with you . In the past people did n't have electicity and if they wanted , for example , to read or to cook something they used to light a fire . You must have a TV because you can liten about what is happening in the world and you can see some places that you haven't been to . I 'm very glad to be able to help you out with such a sutiation . At the same time you are enjoying the castle you can take a breake to go to the beach and you can look at the castle from the sea . That is also amazing . Yours sincerley , I am writting to answer your letter where you asked for information about the conferents and other points in relation to it . With the Internet you can comunicate with people in different places of the world at the same moment . I am writing to inform you that I have recieved a letter from you about helping you to organise an international student conference in my college . For those students who are very interested in shopping , clothes shops , jewellery , stationery , bookshops , fashion and beauty departments and many more are availiable . For those who want something more exciting and advanturous , you are recommanded to visit the Fun Fair and amusement arcade on the top floor of the building . I am writting in connection with your letter about the international student conference . You will never regred about my suggestion . If you need more information let me knowe . I 've recieved your letter asking me for further information about the conference that you are going to organise very soon . Here you have a little help for it . First , I 'd like to tell you that the hotel where you are going to stay is " The Palace Hotel " , wich is situated at the center of the town . It is a well - situated town with a lot of museums to visit , especially " the History Museum " , wich I visited last year , and I think you will enjoy it . It 's imposible Nowdays to imagine a life without that invention how quickly affects our life especially in business . The answer was always the same : " Imposible " . An old woman told me how important the phone was when her only son was abroad studing computers at " Chicago University " . She told me that every night she expected a call from her son , because her was the line of the hapiness . However , there was one persone wich told me he was n't happy at all with the phone , because he used to writte a lot , especially at Christmas when he wanted to wish all his friends a very nice Christmas but now everybody phones him , ending a very old tradition . Firstly , about your accomodation , the college which I belong to offers visitors free accomodations with full of facilities This party is unlikely to be that formal , but I recommend you do n't wear jeans and trainners . I 'm sure you 'll enjoy it and maybe become familier with our culture . These days , we 're sorrounded with so many different kinds of products which our ancestors invented . Let us try to appreciate thier importance again . When you take the class on computer programming , you will definetly need one and that holds true for the class on politics , because you have to study statistics on your computer to do social research and some analysys . My professor said , ' Go and get familier with your computer , otherwise you 'll fail ' . I find it amazingly easy to forget the importance of inventions which we useually use without thinking . At the end of the conference there will be a reseption at the hotel . Lots of books , papers , lots of things on the tabels . Computers have helped to improve health because in this century we can use them in medical operations . Doctors can manage the most extreme operation easyly and confedantly . No matter where you are , what you do , apparantly , you need electricity . For your last day I think it would be interesting to vistit our historic and famous city centre . People now had the chance to move to faraway places to spend their leassure time , to relax , or just to see something different than their home . Your group has been booked into the Palace Hotel , which is situated in the city center , 15 minutes ' walk from where the conference takes place . The group has been booked into a comfortabel and well - situated hotel , whose name is the " Palace Hotel " . Naturally we have a lot of interesting things to visit but something that is special is our cathedrale . Finally , I am sure you and your group will spend some enjoyable , realaxing days here . It is well known in almost all families , often with a lot of different cannels . I can not imagine living without televison , it is something that we need for our education , and for getting news and other helpful information . Nowdays everyone has a telephone . Nowadays we are very bussy and we do n't have free time to see our friends , but we can call them and talk or chat with them . The telephone is a very important invention if we can use it correctly without using it as a type of entertaiment as many people do nowadays . However , if you 're interested in Archeology you should vitis the History Museum in Garden Square . In the last fourty years people seem to have become completely addicted to using their car . In fact we can go everywhere sitting either with friends or with our family and carring our lugguage and shopping bags . For example , in the past it would had been extremely exhausting to travel on a hourse but nowadays we have lots of big and spacious cars and a wide range of optionals to choose from . On the other hand one of the main advantages is that we can save time and money as cars have long last and allowe us to get about quickly . There are eye - max cinema , museums , a garelty . Pusan Castle is locted in the South of Pusan . It was built four hundread years ago . With reference to your letter which I recived yesterday , I would like to give you some details about the international student conference , also the acomodation and activities that are planned during this week . I hope this letter aswer all your questions , if you whant to know more about it just give me a call or send me a letter . The aim of this report is to give some information about the new Acapulco resart buildings which were built 10 years ago . They are some of the first buildings that were built with the latest tecnonology and designed by an important Mexican arquitector . In addition , the resort has an interesting historical background concerning the arquitectory and the best facilities and activities that you could have in Mexico , for example , it provides different kinds of tours around Mexico . In spite of the disadvantages , I would strongly recomended students and the public to visit the new Acapulco resort buildings and have a great experience learning about the buildings ' history and at the same time travelling around Mexico . For the end - of - conference party we have booked one of the halls of the hotel and they will provide us with live music and cattering . Finally , to fill your free afternoon I would definitely recomend visiting the cathedral and having a walk arround the old part of the city . If you want , it will be my pleasure to show you the area . Chairs are not only part of the forniture , they are also objects of decoration and you can even find some in museums where they are art objects . The world is packed with so many tipes of chairs , from the common woden ones to the most sophisticated and comfortable others finding a basic range of prices . From my point of view the chair is without a doubt the most usefull gadget ever invented . Some people use them in their work , others wish to sit in one by the end of the day and for some other people a wheelchair represents the possibility of mouvement . I phoned the tourist information office last week and I got some information about the accomodation for the students . As requested , the aim of this report is to assess the suitbility for a group of American students of the visit to the Etruscan Museum . It contains lots of archeological Etruscans founded and some remains from the Estruscans ' neoropolis . Also there are some free handphones that explain the history of the museum . Although the entrance fee is quite expensive for a group of students , I strongly reccomend it for their excursion and because of their interests . In my oppinion the easiest way to get there from the conference would be by taking the Picadelly line . Basicaly , during three hours in the afternoon nobody is able to visit all of the interesting places in London . Are you always happy when your telephon rings ? Since I have been travelling around the world , I would have imagined beeing in touch with my family or friends without the Internet or my mobile phone . This is an International student party , so I suggest you wear tradional costume . You can inform all the students that they can take some tradional food to the party . It inculds a labrary , II suit , academic rooms , a GYM Club and a restuarant . There is a very big labrary . Just in the same building , you can find a restuarant . They can also talk with British students to communiate study experience . The group has been booked into the " Maria Luisa " Hotel , which is situated in the center of Wimbledon called Wimbledon Village . The purpose of this report is to give a brief discription of the Academy of Art in St Petersburg . This building is situated on the magnificent bank of the Niva River with an exellent view of the Hermitage Museum . The building was built by a very famious Russian architect and is a marvellouse example of Russian classic architerture of the XVIIIth century . In the Academy of Art you can find the oldiest art libarary , with a wide range of books , and the Museum of Russian Art , with a huge collection of paintings , sculpture and architectural projects from the early eighteenth to late twentieth centuries . For example , I work for a bank , and we need to have weekly meetings with our Director living 800 kilometers away , and he does n't have to come here , we just have a phone conference where everybody can talk , and that is it ! Finally , on the last day you have three hours before you catch the plane so we suggest you go to the shopping centre and buy something for your special person or go to the museam because this museam is the biggest in the world now . It is up to you . for Example , THAILAND , the United States of America , INDONISIA and CANADA . Therefore I am thinking of selling my car , which has changed my life over the last 10 years , which has given me a kind of freedom , which has gone with me to all sorts of fantastic places , and changed my life for a new life : whithout a car . Finally we enjoy a disco party so you should wear a suiteable dress . So he crimbed on the radder up to the window and he opened the door but policemen came there " what happened ? " Jane expained that situation and they understood her . I am writting to give you the information that you asked me for . From there you can get a taxi , catch the number seven and eleven buses , wich both take you very close to the conference centre , and also you can go by underground to get there . Then , after the Conference , there will be a formal party at the group 's hotel , wich starts at 9:00 pm and finishes at 12:00 midnight . Yours Sincerelly Hampton Court Palace is localizated in Hampton Court . For the last day , we have arranged a small party in the hotel . Then we all set off to go on a sightseeing tour of Bromley town center for about two hours before you leave for the airport . Bromley town center is the most beautiful shopping centre in South East London . We definately need light to keep on . I dare say , without light , our life would go into a dark , dark hell . I am writting to you to answer your question about the conference in London . Thank you for your letter . I would like to inform you that the group you belong to has been booked into the Palace Hotel in the center of London from the 24th of June until the 25th of June . Ladies should wear an evening dress and gentlman a dark suit . 1 ) " Fontana di Trevi " sited in Trevis Square in the center of Rome . 1 ) First of all , they are located in the center of Rome so they can take a bus to get to them move and around the city . Regarding your last question I can sugest visiting the Royal Castle . Actually it is a whole complex , the Old and the New Castle , the Cathedrall and the very interesting undergroud part with its amazing crypts . And if you climb to the top of the main tower - the keep - you will see unforgetable views of a white toun . You will find there an amazing collection of old weapons , armores and , we are especially pround of it , the great collection of swords . After that I am sure you will be happy to find a few restaurands located at the New Castle . I am sure that should be enought for a one - day trip . Please note that alchocholich drinks are only sold untill 11 pm . Coming back to ideas and Suggestions , I 've promised to give you a free afternoon befor you catch your plane . I would advise you to visit our zoo or to go for a picnik in a park befor you go to the party . Such simple and everyday things like a telefone , a car , a computer only seem to be normal and everyday for us as we use them every day . These inventions have improved our life a lot since they appeared , but not everyone beleives it is really so . First of all they talk about the enviroment pollution which cars and other vechicles create , overspending the electricity using electric equipment and some other problems . I think the telefone is the most important thing in many people 's lives as it allows you to get in touch with anyone and it does n't matter where you are ( I am talking about mobile phones , which a majority now have through choice ) . I think it would n't be possible for us to survive without eclectric light . Because of shipbuilding developments people were able to make all those geographical discoveries , and automobile transport is an undenyable neccecerity in our life . Because of everything I have said I am more likely to think that the benefits of peopel 's inventions are much greater than all their disadvantages . If you have any further questione , please do not hesitate to contact me . SUBJECT : Recomnendations for a place to visit The place I would like to recommend is the seventienth - century Royal Palace . The Old Town is the best place for an afternoon stroll , with a great deal of restaurants , caffes and street performers . There are a number of hotels or youth hostels to stay overninight , if necessary . I am plece to provide the information you need for the group . The hotel I booked is the Palace Hotel wiche is in the center of London just two blocks from Victoria station . I think it is very convenit for the group . You know the Victoria area , it is easy to travel from there to the rest of the city . About the hotel , it is clean , and provides a good service . The rooms are dobuels and neche has its own bathroom and for the nomber of students we are getting good Valud . And the best way to get to the College for the conference is to walk to Victoria station , get the tram to Glouster Road and after 3 blocks on the left - hand side you will find the College . Howeve I am goign to make a plan for acche student with all of the diteil and the adres . About the party at the end of conference , we are organising it in the same hotel whict has a nice salon . It will be good for yor group because you do n't need to move to anoder place . It is not a formal party so I think it is faind to wear somethig not too formal . I whant to suggestions for the last day . You and your group could maybe go to Green Park and visite the Queen 's house and Parlamente , this area is very nice and the group would engoin aftha the conference to get some Freche air . Another obction could be the new Tell Gallery . I have never been there but it could be a good esxuse to visit it with you . I have been hearing about the Ave they have in the Exivicuion , it is interesting . I hope you found thes letter uselfuel and if you have any questions , let me know . I am looking forway to seeing you soon . Yoors sincerely The computer was invented 30 years or mor ago and estart procesing information with a big card which was perfored and made a smol hole and aeche hole meant something like a code . The maching that was used for reading this card was very big , you used to need a room for the computer . I remember when I had the first lesson at the Univerty and the ticher took us to the Computer Center and I saw these machins , all my colleagues and I were lofing was very dificul to imagine how you can work with this kind of computer . These days the computer is part of your life , you use it all the time . Sometimes you do personal and anoder times it is just the thingh you need to do like go to the bank , use transpor , go shopping etc . It is a maching that makes life easy and ibendow you can cari it everywhere . It is amaising the way as the fas the computer changes , the programas are faster and more useful and practical . But the computer has a bad side too . I whand mean we life aeche day we depende mor and mor on it . So I feel ascere when I think about the consercuencias if some of the viruses or mad people misuse as hapen thise days with sex or other . I work with children and the computer helps me in my job but affeted it too . So I hope the world reaches agreement about this and computer engineers have to prevent these probleme because something good could be something very dangerous . Both of them are as convinience as getting there . End of all , in my opinion we could go to the center of the town because there are many places to have a look at and go shopping . So that 's why they have invented the telephon . Take the bus in the direction of the center of town . With the computer , we can write a letter , correct a word or change the name without writting the whole letter again . We save the letter and in three weeks we could send it to another person . If we had n't ay , we would have to write all the transactions on paper . I would like to inform you that Centeral Red Lion Hotel has been booked for the accomadation of the group and it will be quite easy to get everywhere on foot from the hotel during your stay . There is no need to bother about clouths . Befor you leav England , I suggest you visit the cannals and small villages around Basingstoke . You could have the opportunaty to see the country life . Would n't it be unbarable and painful ? Ceartainly it would be just like mine . Because I live in a rural area , far from any village , town , or city center . But also I 'm aware that time flies for me . I must do whatever I want befor it is too late . And I have to confess the invention of the car was the most usefull invention for humanity . As you need more information , I will answer all your questions with plesuare . It is one of the most comfortable hotels in our sity and situated only half a mile from the main building of our college , so it is very simple to get from there to the conference by foot . Finally , you can spend an afternoon on the last day visiting local historic places ( castles built in the 13th century ) or art galleries , as well as the beatiful Bodnant Garden . I think that one of the most importent inventions affecting our life is the telephone . I have just received the letter from you and I 'm writting to you as soon as posible . The best way to get from there to the conference is by coache , which I have arranged for you . Then we can have a rest in the caffee and talk before your flight home . I think I have given you all the importen information . Nowdays motorization is one of the most important inventions . When you look amoung everybody has a car or motorcycle . No matter that people started worred more about polution in the world . I love motocycles and I do n't think I could live without them . I have ridden a motocycle since I was 16 years old . We rode motocycles for a few days befour we finally got to our mitting points . I really enjoy riding my motocycle . When I ride it is only me and my motocycle . I am really greatful to the people who invented the first motocycle in the world . To sum up , I can say that the greatest ever invention is the invention of computers , which has affected both indivisuals and society as a whole . Personly I recommend the Dickens tour because it is a good length walk and very historical . The bus leavs at 8 a.m. from the front entrance of the hotel . The end - of - conference party is in a tent and in the greenground . It will be a surprice ! On the last afternoon you could go on a city tour , visite the Museum of Fine Arts , or enjoy the beautiful flower garden next to the public park . The museum is near the city center and is accessible by bus or walking . It is a very cosy building that is on the same avenue as the conference building , approximetively one mile away . The increasing number of cars related and infrastructure is now creeting problems . A lot of roads and motorways are overcrowded , and enviromment problems are more and more related to the intensive use of cars and lorries . People and governments are concerned about how to limit the effects of cars on the enviromment without affecting their mobility . If you are free I will show you arround our college . The countless fascinating things will definely take you the whole day to appreciate . I love baking cakes , cockies and breads . However , there is something about which it is still believed that it was an extreamly important invention . In my opinion , the reason why electricity is such an important invention is that most machines , appliances and equipment which are used in modern times can only be operated with electricity , which makes people not do too much phisical labour . Dar Mrs. Maria Smith , I hope that our friend Richard Brown does n't have any serious willness . This party is for the students so the clouthes wo n't be so formal . We can chouse between two options for spending our free time . I do n't like tinking of my house or my life without all these facilities . Now , you just need to think that you would do or what would happen in a city , with a car , aeroplanes , shoops , all these things without lights . It is surposed to be from 7 pm to 11 pm . I hope I have given you enough information and if you still have some questions , please do not hestitate to contact us . Lots of great inventions have been invented in order to help people live comfortablely . Because there are a lot of beatiful trees and you can see the sea . By the way , the end - of - conference party is a kind of fairwell party . The first part , the chairman and a few guests will give a speech and the second part , the participacients will evaluate themselves , and the last part will consist of dinner and drinks . For example : electricity , the computer , telephon , boat , and car ( wheel ) , etc . It has abosolutly reduced women 's housework time . She appears occationaly and opens every window in the castle . I would suggust they wear formal clothing , such as tie , trousers and blaser . The building is called the Chiang Kei - shek Momerial Hall . The momerial Hall is surrounded by large playgrounds . As you go into the main Hall , you will see a huge statue of Chiang Kei - shek . This is because the building is the rememberence of how well Chiang did in History . Apart from the main Hall , there are also lots of other gallaries . In these gallaries there are Historical paintings and antique furniture which Chiang used . there are also restaurants and modern gallaries . When you are tired after looking around you might want to buy drinks or something to eat , or if you are fed up with historical things , you migh as well just pop into the modern gallery to see things which are more modern . Finally , if you want to visit this building I would recommend you stay at a hotel not far from the momerial Hall called the Hyatt Hotel . OLYMPIQUE MUSEUM The Olympique Museum is situated near the lake and offers , for the tourist , an unbelievable view of the mountains and the lake . I hope you will enjoy the visit and I wish you a nice holliday in Yverdon . It is a modern hotel , near our college , and it is also very convenent for the airport . You can take either bus or taxies . The nember 101 bus leaves from the airport , then you can get off at the " city college " stop . Nowdays people have become used to watching television programmes every day . Someone is talking , laughting , crying on there , so join them . You will feel much better than you would just by yourself . Some TV programmes are enjouable ! In clucsion , TV has both advantages and disagvangtages , but on the whole the advantages are greater than the disadvantages . On the positive side , you and the group will be abe to learn more about Welsh artworks which are presented on the wall , on the door and some furniture . And some old toilets might look awlful . So , I 'm writting to reply to give all the information you asked for . The best way to get from the hotel to the conference is using the tube because it takes only 20 mininute . And your speach would be better for the end of conference party . Some people might say electricity is more important than any other thingh . For instance , when I want to contanct my friend , it 's quite helpful to use e - mail . However , the computer is worth using in our life until a more coveniance machine is invented . It also holds an internation exhibition all year round . In my early childhood my mother said to me that when she was a litte girl there was only one telephone in the building where she lived . It was in her parents ' appartement . It is not an easy desicion how to react now . thank you for your letter , wich arrived yesterday . I hope to give you all the information you need and , please , if you want more information or somenthing is not clear , please do n't esitate to contact me again . It 's a very confortable hotel where you can find everything you need . From there to the conference you have to take the number 50 bus , which stops near the hotel and arrives in the town center . For this conference I suggest wearing somenthing very confortable but elegant . The organisation wants all the men to wear a jacket , but a tie is not necessary . If I find somenthing special you will be able to visit in three hours I will call you . It is the most important church in this area because of its architeture . It is somenthing very special . Its ceiling is made from many small pecis of wood . Its windows with many colours . It is fantastic . I look farword to hearing from you I hope that all the information you need will be provided satisfactorialy . Secondly the best way to go from the hotel to the conference center is to use one of the shutel buses we provide at this efect . Finaly , concerning your free afternoon , there are plenty of activities , but I suggest you visit the Caldea center , wich is a very special bath center . If you need futher information do not hesitate to contact us . There are plenty of churches , cathedrals , and old cotages . The churches and the cathedral are very intesting because of their different Romanic styles . Finaly if none of my suggestions fit with your expectations , let me know more about what kind of buildings you are interested in and I 'll do my best to find something more suitable . To finish , if you have spare time , you could walk in the center of Poitiers which is very beautiful . In the Pompidou center , there are different exhibitions on different themes . So if you visit Paris , the Pompidou center is a very interesting building to visit , even if in Paris there are many other buildings . It is situated in the center of our town and it takes five minutes to get to the college , where the conference is going to be held . I think that the best choise for you is to take the 234 bus . Also there is a very good shopping center next to the museum . To conclude I would like to say that the goverments of all developed countries would n't have been so concerned about the so - called " problem 2000 " if the computer had not been so important for modern society . First , I would like to congratulate you on your new responsability , because of Mr Brown 's illness . There , I saw the exibitions and admired the building itself . If you go down a few steps , you will discover the ceilar . When you go uphill , you hvae to bend your back . They paid much attemtion to their faces and spent lots of money to shop . I started to notice the ways of foreign clothing and hair styles these past days by watching TV programs , such as Friends , Srcubs , etc . I like you give me any commets and opinoins too . It was like warter and his bottom was red . Everyday , there are new thinngs to try . It 's a kind of Tai - wan stayle massage . After that , I went to a fittness club which has bedrock bathing . It 's nearlly 12 pm . Elections will be held on Augst 30th . This time they may lose adoministration . It is made of spnge : ) It is cute . I 'm laerning English , but it 's really difficult for me ! I was releaved to hear the doctor 's diagnosis , but I 'm still worried . Inovative and original ideas are good , but if you can not find them , you should know that most of research work is just refinement of other 's work . I was somewhat puzzied what to say . So , after he was made consul by the Romans , he went to Afrika , where he fought againt Yugurta , who was king of Numidia . caz I don have a school until then ! ! That 's why I 'm very excited to teach studens English ! ! Those are such things as playing sports , reading books , lithening to music , taking walks . My favorit hobby is talking with my friends , because I think it is the best time to be with my friends . The otehr day , I met one of my classmate from high school at a station , for the first time in fifteen years . Although I know a private school student like me in Singapore is sticktly prohibit to go to have a job . Today , I went to the karaoke box with my son and naighbors . I slept all day untill I had to work . fourtunely , I am a hero of justice . I think that the war shoud never of happened . I do n't understand why so many people are into this stuff , I deceided to arrange some nice dates for my friends by following my own style . Without audiences , love judges , parents , just a friendly and private atmosphere , which allows them to be theirselves and enjoy the moment . Going abroad is my dream , so I really cherich this opportunity . It is a good chance to strengthen my knowledge , boarden my horizon , enjoy foreign customs , and also realize my dream . I just listened to his Boyzone 's brilliant song `` No Matter What `` on the way back home . Next Wednesday , the economics seminor softball match will take place . When someone asks me , `` What 's your fovorite thing ? `` Oh , how wanderful the college life is ! Once you get into the society , your life won ' 't be as simiple as that in college . Steeven tought me today . I attended Japanese tea ceremony lessons one day a week for three years , befor I came here to Japan . I liked to learn how to serve greentea tea . I made some friends at the lesson . After I mede it , I drank the green tea . In the grammar exercises , which I did for houars ( ? ) I could n't correct any sentences ( ? ) . Because it is very important ; I 'll never get a good job without it , and I 'll never understand half of the beautifule sites in the Internet ! And I like to drow in Photoshop and Illustrator , and many other things ! He is crowling everywhere as his instinct tells . I put my fingures into his little mouth , and pull it out . My very fisrt diary entry on Lang - 8 The first half of the game was a drow and the second half of the game was a draw . Fighnaly , Japan won the game , so `` Nadeshiko Japan `` is top team in the world ! ! I was excited , so I could n't sleep ; ) But I do n't regret watching soccer . This is the most important thing to them but , my opinion is deffrent . Today , I went to univercity . I wantet to more study . But , I 'm going to do it now , becuase my laptop is supposed to get repaired , and in a couple of hours , the mechanic is going to be here to pick it up . Yesterday was a buzy day , but I was very happy . We have many foreigners as our clients and I really could try my strength in English ) It ` s so interesting to tolk with the British , Germans , Italians , Danes , Finns , Croats . . . He has recently been accused of puching a man while drunk . A sumo champion , called a yokozuna , is required to be strong not only phisically , but also spiritually . During the last summer vacation , I traveled around Southeast Asia ; Melaka ( Malacca and Kuala Lumpur ) , Cambodia ( Siem Reap ) , and Myanmar ( Bagan ) . He is now in Isreal . May it be sunny tommorrow . . . May it be sunny tommottow . . . It is said that you can be healthy and happy or your wis will come true if you climb this mauntain . My Junigor high school friends and I are very interested in this legend . It was the kingdergardan level ~ ~ . . Plese tell me : D Yesterday , I went to Home Depo to buy a bag of soil and a planter . The roses grew and thir flowerpots are too small for them . I think I cought a cold : - ( Epidemy of Cool But the stuation is being recovered by help not only from other Japanese but aloso from countries all over the world . We walked around the garden , we saw the animals and differents trees ; we had a smoll lunch He has a funny and intersting dance . Well , _ I 'm into Ray Charles 's song _ `` Hit the Road Jack `` _ recentry . My gramma is very poor , and my poor gramma always drives my SAT gramma teacher crazy . Luckyily , I have some Korean friends so I worked on it while asking my frineds whether the translation is correct or not . this is just an execuse . It was a mergherita pizza . Strange Japanes customs ? So , whenver I pass by , I am sure they must be new employees . It is very convenient that its codeless . By the way , dou you know ' Lucky Taxi ' ? Today 's calss is the same class which I was n't able to teach them because of CHOTA MAJI . When I was in Korea , if we skipped the calss because of other affairs , they seemed very happy . However , in here , my students do n't want to skip the calss . And I fell in love with the liberary at our school ! ! ! Acording to the book , taking a nap is not good for digestion . If we get very sleepy , we should go for a walk to forget about our sleepness . Actually , it requires lifting up their knees high enough to make the Kinect senser to sense their move , so he was correct and had fastest speed in the race . I went to balloon lecyurer as an assistant at `` OMOCHA OUKOKU `` . It was difficult to lecyurer to small children . My mother committed suicided when I was only one year old , and since my father worked far far away in a town , I was brought up by my Grandma . I went to the gym in Neyagawa city so that I can strenghthen my muscles . And people seem as if they were constipated ( this word is funny because in Spanish `` constipado `` is `` cold `` , and it 's eassy to mistake the meaning xD ) . But I suppose everybody has a reason why they want to study a second launguage . I could come into cantact with a lot of music , from Billboard to Classics , because of it . But there were US Armed Forces in Korea , and they radio broadcast thier Billboard songs . I replied , `` Yes I have one , but in russion `` . So I think it 's time to create an Englishversion . I am a colleage student . Today is a speacil day . I did n't know whether he 's worried about it or is looking forword to it , but I hope that it will be a special and wonderful experience for him . Many peple visit there . In order to drink , I finised my work early . I do n't know the reason on why I was so annyoing about everything . I got out of temper to my friends as much as I felt forry for her . I do n't think students scores should be the standard for an estabilishment . For example , varities of teaching methods and materials should be involved in the criterion for assessing the teachers . The reault of my check - up was also anemia . I am really looking foward to it . I will do it on mondy for sure : ) I heve become the director of a company now . Interdisciplinarity , practical studies , a wide choice of courses , experimental spirit ( ? ) and open - mindedness are reasons why I am so enthusiastic about RU . My favourite subjects are maths and phisic , so probably I will have a problem with connecting them with traveling or something like that . But recently I heard about charity organizations which need ingeeners and it could be a nice idea . but I feel tired beacuse of difference temperature between Singapore and Japan . Actualy , I love cats ! If I can be a cat , I will go out for a walk the whole day , sleep until I feel good , be along with people when I lonly . I noticed that a crow dropped the walnut from his beak to the ground in oder to break the shell . He played the contra bass and the guiter . Since summer vacantion started , I always stayed up to play computer games and even until AM13 : 00 . And we plantde trees and cleaned the garden . Today I bought a book by Morimi Tomihiko at the bookstore in my college , where all the college students and teachers can buy books at a five persent discount off the regular price . Futhermore , his stories are very enjoyable . The sandowich costs 280yen . I ate that one first . I probably ca n't get raw ham at ordinaly stores . Now I 'm working in my company and I feel a little tired . Maybe I enjoyed too much during this holiday , so I ca n't acclimatize myself to different place or pepole , etc . English pronounceation Other countries , Germany for exapmle , most of their employees can speak English rather than Japanese . For Americans , Japanese `` Futon `` is a misterious sound because shape of mouse for `` Fu `` is different between American English and Japanese . it was reiny today . it was very difficlut ! ! ! ! Japanese marrige system Brides and grooms simply go to city offices and turn in the marrige application form , which has the brides ' , the grooms ' , and wittnesses ' sigunitures . No picture IDs are requiered to turn in the marrige applicatin form . Somebody else can go there insterd of the couple . Becouse of the system , sometimes problems arise . When a couple goes to the city office to turen in their marrage form , they sometimes find out that one of them ( or both of them ) is alredy married to someone else . Until he creat the first APPLE computer , all the effects what he had done before came back . Hot coffe , sigarettes and a warm blanket - this is what I need today . So I bought two , one for my feet and the other for my nec and shoulders . In korea foreign missionaries have been succseefully brainwashing people . just one reason I did n't belive him . This is my fitst post in English . I know this SNS , using learning forign language , `` iKnow `` ( http ; / / www . iknow . co . jp ) . Dood Dinner at Omiya Anyway , someday , I want to get lasic if it can improve my eyesight causing no side effects . A singel house This is the first time I write a diray in English . What changes happend ? Fortunately my hasband does n't interfere with me . He joked `` Please buy meat for visiting , esp chichen for dak dakgalbi . . . `` It reminds me of the Bable story , God seperates people with different languages , and people are never united as one any more because of the languages , then the world is full of suspicion and frustration . By the way , a Typhoon is coming soon and maybe a lot of studeants are thinking , `` whoa I can rest a day , hopefully the typhoon stay in Taiwan `` . After I entered elementry school , my parents switched from running a supermarket to owning a fried chicken restaurante . Now they run a grilled meat restaurante . I would like to wirte a letter to my English teacher , so I want you to correct my English . I drove alone , I 'm not afraid of drivig anymore . I can hardly wait for spling vacation . And I have learned another important skill , that is to write down everything that you do n't know , or you can not remember clearly , especially things which are very improtant to your job . yesterday ? Tayfoon came , so the sky was cloudy all day , and temperature did not become hotter . I still belongs to my comany in Japan . I can do Japanese comany 's business in NY . If you have a more fitable English name , please tell me ~ I felt sed and my sister got out of the house ! I will back to school soonly , my school is in another province ! My next time back home will in many month later , I realy do n't want to back to school with a broken - heart , but I can do nothing ! I 'm writing my diary for the secsend time because wrong . ( ? ? ? ) I am writting the diary and doing a lot of things I chack my e - mail and read hi5 . My friends send comments to me . Hi 5 is like facebook . It is very popular in thailand and I chatted with my university friend . We taked about work . She is not working at the moment because I go to out side of bangkok . ( ? ? ? ) she lives with her family . I know her becarse she went to bangkok to study . I plan to party this sonday at my closest friend 's brithday . We played a coputer game . The newspaper and the weather forecast imform us when the cherry blossoms come out . I was so humiliated by my accent during my chilfood that I tried to modify it . Because it was gifted by my ancester . listening nimo Nimo : Dady help me Nimo 's friend ? Dady : I 've got to find my son Nemo ! but my coasses ended late . We talked a lot and had a blast , and it was interesting that one of the participants talked his experiences when he 'd been in Germay . Life will be devide into each part that let him feel safe when he separate people into various groups . Yesterday , I rided from the main campus to the medical college . I useally study at a certsin cafe & restrant which is called Saizeria . I am a junior studennt majoring in Japanese . After graduating from high school in June , 2008 , I have studied Japanese for neary two years since August , 2008 . I run for my halth so I never over do . But I run at least 3 kilometers when I feel someting bad . one class is ninty munites , so I got exhausted . I take as many classes as possible , because I have a voracious appitate for studying ! So we had a lesson with another teacher who is Ethiopian duerng his holiday . It ended with an unplasant atmosphere . My friend told me that she wanted to give me a suprise . I am plannning to stay in Hong Kong for a month . And I 've serched information about where to stay ( there ) . I could n't get back home before 9 pm for awhile and had to rely on beby sitter everyday . But I ca n't deside wthat to spend it on . I want to buy an ipod usic player . I want to take a flower essense seminar . A new semster ! Tomorrow a new semster will begin . And I watched on TV that US jernalists have been detained in North Korea . jernalists that go to dangrous places are so crazy , even though there is possibility of dying . So , I will write what I 'm gond to say . When I arrived at Copley , I 'd naver seen such a tremendous amount of people there . I hope that the Red Sox will be the winner of the Wolrd Series , so then I 'll have a chance to watch a parade again ! It 's a love story , during the war , between a hurted prostitule and a soldier who has to fight . and I took out some economis books from the library . Tommorow I will have to study English and economis . I took part in a job interviw this morning , but after the HR kept asking me questions for about 30 minutes , she told me maybe this positon does n't fit for me because I do n't have the SQL skill . I 'm looking forward and waitinig for what the Apple will bring I came here to learm English . I laughed and said : You 're a hairy , obesed idiot ! But I want to continue studing English every day . hapyy day ! So I want to watch movies but it ` s too expenive for me . . . Thus , in the movie , Coluche travels around the world , and experiences some adventures in various countries such as Marocco , The United - States ( Harlem ) , China and so on . . . I think it may be interesting to listen to the French accent and the ( maybe exagerated ) view of Harlem by the French at the time . I also have to shovel snow around my house , car parks and offise . . . In addition to this , traffic is so crouded . . . I just sterted this SNS . People who have already graduated can also take this exam , so that makes this exam more compititive . But actually , people may have the abelity to pass it , but they still ca n't communicate well in English . I passed it half a year ago , but writing passege are still really hard . . . Dakdori was just one the recipes included in the book under the chiken menu . I surf the internet with an air - conditioner and a fan turned on . After surfing the web I watch TV with the dest - top still on and use a stove and microwave to have a meal . All I could do was drink beer going stale in the frigerator . I can understand its meaning , but is it awkward for the English reader or listner ? englis Again ! After an English lecture , I tell myselef over and over again : I must learn English now ! I have to admit age is a becoming more and more a sensitive issue as I get older and older , and the older I get , the more responsiblity comes along and the more mature you should behave . Well , I think I wish I could welcome the moment at home as usualy , but I failed for the last conple of days which flashed through so quickly in a northern city I have never been to before . Travelling makes the time elapse so quicky that I have hardly any time to digest the change of age satisfactorily , Even though I have been able to come back home this morning , I still ca n't take my time and am actually struggling to keep awake to digest it as much as I can , because I hardly slept yesterday . Moreover , I still did n't like it when I bought a can of spaghetti ( canned spaghetti ) and had it because it was like gelly , and was essentially just a can of meat sauce . Why is n't al dente that common in this Europian country whose people are the most omnivorous ? I want to write my plofile first . And I like Rorilita fashion ! This movie is talking about two different American girls who spent their summer in Barcelona , where they have a romantic , unforgettable advanture . Mealwhile , they are still learning how to face some issues in their lives . This movie 's siprit seems give us the idea that everything is possible , especially relating to love . When it cames to the subject of love , some people tend to be relistic , some people are always expecting something very different . But I think most people in our country , we do n't have enough courage to change the situation , or sometimes we just carry more moral respnsibility . The fireworks were the most beautifl which I had watched ever . `` earthguake , thunder , fires , fathers `` I 'm plannning to go to Sapporo ( the capital of Hokkaido , Japan ) this weekend and I feel uneasy about going through the pass because it 's very dangerous to drive on icy roads . Thank you foy reading and for your corrections . Is this Pater Pan syndrome ? I think the defination of an adult is different throughout the world . But maybe there are many countries that definate `` adult `` at an earlier age . Basically , it is said Japanese peaple are not good at speaking English . We begine to learn it in junior high scool . My name is oanhchau . I 'm from Vietnam . My language is vietnames . Untilthis the start of this year , he was my classmate , and he suggested this website to me . In my point of view , it 's a complicate website , but I think if I practice , I can use so goos this site , and finally reach my objec . I 'll apreciate thosewho correct my text , and thaksssss ( a lot of `` S `` it 's a internet form or expression that we use a lot on MSN , here in Brasil ) I especially like watching Eurupe soccer ! I was hoping this time she could win a medalist . . That made me think that I should support her ever though I am not ure if she will continue with mogul . Anywany , I think it 's going to be one excitig Olympic . I did n't perpare for it entirely . I wish that place was a non - smorking place and That mechanism is , When I accsess `` URL `` , proxy responce `` URL `` . normaly , Ajax can not cross site . My friend is a teather at a junior college . I thought about it a little bit , and I answerd , because of the school openning ceremony I am going to go to the libray and study hard Today is a holiyday . Becuase they are so beautiful with beautiul music . I 'm a Jaapanese . It 's very cute and I feel rilax . And today after working I had dinner with my acquaintance , a person who is workin in the famous consulting company accenture . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittet laughing sounds made by a female ( 1 only ? ) , and monotonous , enthusiastic talks by a male ( 1 only ? ) , which might have gave you an impression ; the atmosphere was not too bad , or too good either . I bought a pacake of muesli , mixed it with yogurt and put it in my refrigerator at night before going to bed . Instead , I 've watched company harassment like `` you 're incompintent ! `` or `` we ca n't afford to pay you `` in order to force them into early ritirement Luckly I have a job and a depenadable income . My cute `` My Little Pony `` should not connet to such a nasty word . lololol No , they shoud not . . . . . . . . . My coworkers all work untill late at night . One of my friends on skype told me that all you have to do is concetrate on the exam and relax . Well , studying bussiess English is bloody boring . I do n't think that much bussiness English is needed to communicate with foreign people . When I speak Englsh , although it is n't in a perfect sentence , a native speaker can usually understand what I mean . I had dinner the day before but I ate two more humburger late at night after dinner I was hungry soon ahter eating . . . I found Mr . hou8592984 's brog . In order to continute to write English , I should decide a thema . Thema : Depression By writing his depressio journal , I would like depressive patients and their families to know about this disease / illness and surely believe in his or her recovery . I did not drink alchohol in a couple of days . We also visited a soy souce musium . Every term we study Chinese , Math , English , Physics , Chemtry , Biology , History , Politics , Geography , Music , Art , and Physical education , 13 in all . That is scarried , do n't you think so ? ? Can enyone tell me the way to improve my conversational skills ? My stutent visa was sent to my house from the American embassy this morning . When I got there , I was so surprised that there was a lot of people wainting outside the embassy . More than 150 peaple were there . Upon entering the house , a man checked me , and my bag with an X - ray mathine . I needed to have an iterveiw , and then have my fingerprints taken . The style of all the furnishings in the building were Amerincan . Next , I should remember lots of nglish sentences . I really want her to come back and relase new songs someday . I think everyone hastheirown faviriote song that makes them better . I like both Japanese songs called J - pop and forieng music . But Japanese musii is more confortable for me , maybe because it 's easy to understand the meaning of lyrics . Speaking of lyrics in English songs , it 's very hard to lisiten and understand compared to in converstion . . . In the future hopefully my English will be better and I will be able to understand rylics . I have been studing English for eighteen years , starting from grade school , continuing at the institute , to now - by myself . But I have not had much success with my studing . For example , I can understand only a very small part of radio and tv brodcasting , or dialogs in movie pictures . My Summer holiday finally starded on the 5th . But I have got a lot of plans this Summer : D hope it 's gon to be a great Summer Vacation ! The happiness on thire faces means I did well . The weather is bad . It is wasy to have a cold . Long , lon ago , there were a couple of lovers . There were jusy only two students in the classroom . `` Otlob `` is a delivery - service site adress in Egypt . I think health is the most importamt thing for life . To celebrate I called my friendds and we decided to go to dancing at a club that has Caribbean styles of dancing ( salsa , merengue , bachata ) . As soon as we entered , my every tought was addressed to the music . So after I removed my coat quickly , my body began connecting with the track playing . Between all the Caribbeanses dances , the one which I prefer is salsa . That is because it expresses passion , a characteristic that is part of me . In fact I 'm a scorpion ^ ^ . A Little Hestitation and Nervousness My group 's leader asked me to prepare a race speech and a show of accomplishments becasue we have a vacant position for secretary of the youth league committee in the group . Every time I meet a foreigner interested in learning Spanish and also interested in lerning the language in a spanish speaking vountry , their natural choice was Spain . Now what can I do for peaple in MIYAGI ? ? Its like a ricecake and is made of potato , tapioca flour , cheese , mayonese . On June 9 , I joined to Google Develper 's Day . It facisnated me and I began to develop software for the platform . Preparing for Zonbi Walk part2 . I practiced making a zonbi face . Please look at these pitctures . I think I 'm a good menacing zonbi . I was surprised , and rashed into the bath room to wash my hand . The preetiest sister who Today I had plenty of time in the afternoon so I took a walk aroung my hometown . I shoukd avoid to take a bath . . . It will be great if I make friends with English amd Japanese speakers . She is Korean , while I 'm Jpanese . . . All animals I saw in Mongolia seemed confortable . . I belive he was into it all along . But as I graduate from high highschool and go to a university , I 'll begin to be busy in different places , with different people and in different ways . Elaborate pratical plans can give you a hand when you face difficults or feel depressed and help you get rid of unexpected It is only once a month and so it is deifficult to improve with each other . Jack bouer always says `` What 's going on ! ! ! `` : ) . I would like to listen to more Enlish through e - dramas and learn more about daily conversation and debate . I konw that I will lose my way if this situation continues . Nevertheless , if we dare take a closer look at creativity , ( and what is learning if not a fascinating mixture of experimenting , forming , shaping , producing and the like ? ) , then we have to admit that , in the long run , successfulness is not a bed of roses , albeit highly rewarded in the end . Short stay in Seneagal If you have ttime , please give me a little advice . It makeS me sentimantal and moody . Tonight , I went to a curry resutaurant with my friend ( s ) . Do you have a favorite Japanese food ? I recommend the Japanese food ' Tempra ' : ) At the moment , my favorit song of her 's is `` If I were a boy `` It 's rainniing It has rainned for three days , and the temperature drops to 18 degrees centigrade . It 's cool now . I got to know this web site several days ago , and I have got through some enties written by others . I will spend some time to correct Chinese learner 's enties . She was mean , she lied to her friends , and she said her mother was dead cause she was embarrased of her humble roots . My family came to my house and we cooked carne asada . We were all watching Teresa 's last chater together , and were hoping her to end up homeless and lonely ( like in the original version ) , but to our suprise she did n't . What was the message , be a tramp and you 'll suceed ? Polaroid faced financial crisys and stopped selling instant film and instant cameras . I regretted that Poraloid stopped selling thier photography products and think if I were a rich man , I would buy the Polaroid company and continue to sell their products . I went to the Sinagawa Station from Shibuya . I was impressed by the superior the focus and syutter speed of the camera . I have to pay close attention to aviod the new camera being browken by my son . It is a rany day today . They are taught by one of five ALTs ( Assitant Language Teachers ) who work in public schooling . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film thta deals with the history of the electric car , mainly focused on The General Moters EVI . Fisrt is the tea ceremony room ; second is the imperial room ; third is the samurai room . There is a pond in front of the pabirion . There are many kind of foods speculiar to each countrie in the world . They always recommend me doing Yoga , but I 'm afraid I 'm not interes in exercise . I have to speak Elignsh at my office . It was a little bit borring . That is why , it would be helpful , if you could give us some advice for the ebaluation of the research and provide the detals about the rating scales that were used in the book . They do not want their blings to make sacrifices as well . 7 students paticipated in it and they were great ^ ^ Some students did n't memorize their script enough not to show it but still I thought they put in a lot of efferts . So in the train , I do things like read a book , listning to music and so on . I wanted to listeng some music in the bath room . Besides , offering various help is a government 's obligatoriness , whether it ` s necessary or not . After work , I intended to surf again , but it was wndy . I 've started studying English in Canada this mounth ! My nummer holidays were too short , as usual ; - ) The reason why my school starts on Thuesday is , pupils with the grade 5 in their school reports can make a test about the whole last year to get in the next higher class . I am learing Electronics with Informatics and Computer techniques . The Austrian schools are very univerally that we know from everything a little . After passing all tests , I can decide to start working or go to a universaty . Addionally , after 2 years work experience , I will get automatically the title `` Engineer `` . So I was surprized at how much it 's changed ! ! Chicken Curry , Safran rice with Japanese pickled plum , mixed dried fruits Nan , peppermint chai with cinnamon and shochu , Japanese sweet potato wine with kabosu , an Oita prefecture produced fruit that is just like a lemon . Mainly , Japasene teacher taught English grammer , accents and various words . I alweys wanted to have a pet at home . My mother was very sceptic of this idea , but my father fullfilled my dream by buying me a bautiful dog . I was very happy , and I spent almost all my time with my Friend . : ) But one day my dog disapeard , and now I ca n't find him anywhere . I will congraturate you starting next year . I will take the TOEFL next weeken ! Oh my god ! althougt I am not good at English actually , but I just want to try and to know what level I am . I feel nervours because this is the first time I will take it . `` I know we have different valus and thoughts , In the evening I found out that he had disappered . And he said to me , `` I was going to break up with you , actually . `` Just jokking , but when I heard this , I realized how mean I was to him . . Even though , this was bad somehow I 'm still reliefed Self - censore an event makes economy decline . This sentence is printed on her son 's T - suirts . One day when her son 's English teacher saw that T - suirts , he took pictures of it and said it was so funny ! I tried to trancelate it but it 's a little bit complicated . In the morning we started our walk to Fort Cunning information centor to get a map . Unfortunatelly , it was being renovated ! We quickly loooked on the map for other restaurants and found one . It was a nice looking restauran on a hill surrounded by a beautiful forest . If the restaurant had not been closed , we cought have had lunch on the teraace ! The resaurant was closed every Sunday ! On the way , I happened to see a traddditional Malay wedding outside . When my wife was pregnant , `` just like all the other husband and father `` , I thougt everything was going to be beautiful just like on TV . Reality is a whole lot diffrent from imagination . We have to learn a child 's thoughtful consideration for others and frankness about it , because we know cosideration and frankness always work . When I found this , my bag had been scrathed by the thief . This is the third bag which has been cutted by a thief . My favorite manga is Doragon Ball , I guess even if I takek a vacation , I 'll have to spend much time on homework . life has no end of trobles . I experienced the gigantic erthquake in north - east Japan . I walked back to my house after about 50 munutes . On the way home I saw the peole filled in the streat walking . It is not a buisiness trip ! I 'm planning to go to Izumo - Taisya on Suturday . Wandering on the campus , green trees , colorful flowers and clear water catch your eyes , fragrant smell of flowers occupies your nose , and voices of reading aloud and singing of birds capcutures your ears . It was irretating . > < , Another boring week is watting for me . Then I serched online . If you study Japanese , I recomend it ! ! I 'm looking forwad to seeing my family . The restaurante was so nice , and the food was delicious . I visitedmy cousin 's hause last weekend . Some foreigners tend to think that Japanese men don ` t do housekeeping at alland women work for their husbands devotely . Tnat ' swhy , I want to insist toforeign women . `` Don ` t feel that it is worst to get marriedwith Japanese guy ! I do n't think they shouldn mention details about the flight ! Typhoong going through Japan are not as strong as cyclones . Tonigght , I will stay in my house and wo n't go out . That 's why evey Korean thinks they have to go to college . The last 3 days we had very good weather , but tday it 's cloudy again . . . addios . . . A nice script : Frist , you must grab people 's focus . What you want to say and the content determine whether people want to keep watching it . Of couse , the character designs and their actions are important . . hahaa like this octopus . . it 's very cute even though it does n't have any lines . I would like to speake and write like a natively We studied in the same high school in Tibtet , we often communicated with each other about things like a football match , beautful grils , foods or the CCP . Tibetan chirdren are loyaly , friendly and smart . Sometimes I felt they were sensitived about some political topics , but for of many reason , they felt happy too . Our high school teachers cared for them , and the ethnic Han classmeets were glad to help them to study many sbjects too ` ` ` The dinner was delicours , and we drank a bit of beer and played jokes on each other . It was a wonderful time . I frogot many annoying things temporarily . What a happy night in Beijing ! ~ ~ life is cool ~ ~ My english teachar recommended that I get an English Dictionary . The meanings of English words are explaned in English . My teachar said `` when you study english words , think of english words in your head . I recieved a lot of messages from my co - workers and friends in the real world and on this web site . My hostmother mother plays the piano very well . but I ca n't play any up tenpo music like she does . Goog night . 7 . 8 : 2 . 2 This is my work and pribate balance . Publick service personnel is a part of the conscription system . I worked hard at the place and explaind things to many customers . In Aplil , I also led the division to manage a network division . Although I feel a bit bad , and dissapointed of myself because I 've decided to be more responsable with my homework and I did n't do it . In both presentations , I did n't make an effort to get a good note and I know that I could have done it better but I did n't , but also , I did n't recived the support of my team . On the other hand , I felt very amazed about some clasmates . They did a wonderful job and I felt envious of them because I 'd love to do it in the same way or better . I have read some ariticle saying that some English classes do n't teach good english , or that some students do n't make any sense of it , or that it does n't fit their english level . I might be a lucky girl because I can understand English even thouh I do n't take any lessons . I am glad I speak English and can converse with naitive people . He wanted to say he was in the middle of the campain and said loudly , `` I have an erection now ! `` I think everybody has similiar minds and similar potential . Maybe there is some reserach on why people fail when they try to learn language ? We have to studed English now , or we wo n't pass an important test in three years . There is going to be a Jananess school visiting our school . We will have eight Japaness students in each class . And we will teach Taiwaness history about Japanese aggression against Taiwan . Maybe we will say something about their contribution after the Japaness were aggressive towards us . We will do a lot of activies when the Japaness students come . I have been quite busy the last couple of days becouse of my exams at the university . It 's really cool to meet a lot of foreigne friends here . So I 'd like to continue my dairly . My dog `` Fal `` , who is Itarian gray hound , does n't like Some people say it not only helps to end their pain but also it helps to slove their family 's economic problems . I think they are still relevant today because histry has a way of repeating itself . That way , they can feel familiar with acient history . the reason that she was deprived of her custody of their first child , was she overdosed on cocain ( I forgot why she had it at the time ) About 5 seconds later she called me again to say good morning . I did not anwers because we know if she calls me it means she would like to say good morning or good night . She got disconnected from Skype yesterday while me and Tyler were talking because it is a bad conection from her country . Before she left she did not say something to me as she usually does because she was sundently gone . He ca n't sing but he can hum and dance and and play the quiter . If I 'm a Piture . . . For a long time , I went to Song gang Dong field in order to play a baseball game in early moring . Then , I tried to go there , and also It was diffuclt to drive my car because I met a friend who lives in Seoul yesterday . I 'm a piture and the 5th hiiter . Our game started at 12 : 00 and I was so nerveous . My beseball career is shorter than everyone 's but I have good physical abilities like fast feet , strong sholders , and endurance for any pain . Chinese Calligraphy and traditonal Chinese Painting ! Chinese calligraphy and traditonal Chinese painting both Becouse it is near the station . This year I 've started to study ballet . It 's known that you only can learn to dance ballet when you are a child , or at least that was I always tought , but I was lucky to have the chance . We are doing `` Coppelia `` , even though we are not proffesionals dancers . We are adding a little bit of fun to the original play and it is going it great . In my culture , people are not always aggrassive and we are always thinking about others , as much as , or indeed more than ourselves . [ 1 ] As far as I have heard and experieced , the culture here is that people care about themselves more than others . They are more self - centered , which I do n't mean in a good nor bad way . For example , in my country , the distance between people is less , so everything can be flexible and it depends on the relationship between the people involed . Therefore , I always think before I act becuase I am not sure what the correct way to act is . The main character traveled to Ltaly , India and Bali . She met many peple and found herself . She performed maditation in India . Friends , no matter what ccountries you come from and what languages you want to learn , I think we can become friends , not only for the reason of `` learning languages `` . Or does it mean `` go out with thier boyfriends or girlfriends `` ? The other airtist are probably not known by Japanese people . There was a lot of rap music but there was n't one such as Eminim . Introdeuce myself Hellow ! ! But now , I study economics more , sinse my job is deeply related with economics . My favorit football team That is too many countries but , I 'd like to visit those countrys . Next week I wll go to a language school to improve my speaking abilities . Englsih speakers use high frequency . ; ) I think that I have to serch for a friend to converse with on skype or to help me with wrighting letters . Is anyone willing ? ( 9 . In Japan , it is autum . Thease days I am reading the novel `` Master of the game `` written by Sidney Sheldon . My friend recomended me that book and it 's so interesting that I ca n't stop reading it . Becouse his wife Marianne was dead . Today , my roommate woke me up early in the mornig because she thought I was oversleeping . Blackouts , floods , strong sunshine and very veryvery hot days . I went to Japan to stady , but I had never studied Japanese before . Because I ca n't speak Japneses , it 's hard to make friends in Japan which makes me feel so lonely , and want to give up stady in Japan . After a long time , I did carpentar work today . It ` s so frastrating , but it ` s reality . dreadfully spycy . . . Although my mother languarge is Chinese , I quarrelwed with my friend yesterday . The teacher made us to make sentance using simple past and past perfect continue . S / he then looked at our sentance and pointed out some mistakes . I have been enjoying learing English since last year but I still sometimes feel despondent a little bit when I can not remember how to spell a word by myself . It always goes this way ; I finally remember a new word and then want to type it next time , but then I fotget again . Now I wonder if this reason is too weak to learn efficienyle , because there are few chances to use English at my job . But I ca n't understand English grammer . Yesterdat was different . Unfortunatelly , there was very strong rain and thunder at that time so our flight was delayed thirty minutes . We were satisfied with our room and went to bed early so we could wake up early in the morinig . I could not explane ' a certain probability ' in English when I talk to my friends . The probalility represents how many people are watching particular program in each area . Then , if we know a certain program has high probalility compare with other programs , we might want to watch the program even though we are n't interested in the program . Today at 4 a . m . , I and my father woke up because we heard the gate squaking . Our first class usually starts at eight but on Tuseday , it starts at 10 . How to get to my car parkking space from my apartment . And I found a very exciting stastical today . There is an oil heater in the { staff } theacher 's room . So one of the teachers brought sweet potetos and burnt it . is doramas , not just Japanese but also Korean , Chinese and Taiwanese . Now I have fallen in love with the Korean dorama `` You 're Beautiful `` starring Lee HongKi feom FT Island and Jang Keun Suk ( Baby and Me , Beethoven Virus ) . I got lost on the way back to my houce . So , I called a taxy . Especialy to Germany ! I 'm taking the Garman class . The reason I have a duble major was because I could see the world was heading towards a global economy and society . It 's a little small , but it 's enought for me . In fact , I would like to look for a friend who likes using Skype and MSN and usually chats on Skype . I hope to chat with him / her on Skype to improve my oral English , and I will teach him / her Putonghua . I can speak standard Putonghua . If I can find a friend like this , we can make a concret plan to help each other . If he / she wants , except teaching Chinese , I also can tell her / him what he / she wants to know about China . So , anybody who wants to learn Putonhua and will help me , contact me . Thanks . I am online all the time . How they behaviors is their choice , but there are n't only gentlemen in the world . `` Judas `` by Lady Gaga and `` taxic `` by brtney Spears I like Lady Gaga and Britney speas . One of the songs is Judas and the other is Taxic . When I was a university student , I was a menber of the ski team . Hi ~ everone Golden week is a grop of holidays in Japan . I think my dirly needs a lot of correction . Yeah , this is my favourate sport . If we have class , we must go , because the teacher will cheak . At work , my cell phone did n't work as the telecom cables were destroyed by the quake . After I reached home , I knew the situation was much more serious in north east of Japana . labors will be older . Roast beef , mashed potatoes , pine nuts roll ( this is that stuffings which consists of pine nuts , flour , meat and so on is rolled into pie sheet or something ) and dessert with eggknock ( this is a kind of drink . There were a lot of Lotus folwers . I had fun and was really surpristed because of my friend who called me . In that place there 's no telephone signal and no money on my phone so I did not repled recently , but then when my parents took me the city I had refilled my money and sent the message back to her . who is my close friend I am thinking of her too while I was not in Bankok Hey friends do you think my new avator looks lazy ? so just some picture and in Bangkok is okay now do n't get worrid I think every thing is going to be better . . A Handy Crear Folder Within Textbook ( Brushed up ) I copied my text book into falf size , and sort them out according to each period . Why do n't you make a ubiquious studying environment ? But we misssed the airplane ! We missed our areline . So it 's very expencive . We took an early bath and ate toshikoshi - soba , the buckwheat noodles eaten on Neew Year 's Eve . My neighbors having a party and I have been hearing Latin music since this afternoon . This is my homework for my English writting class . Also , my old brother attends Kongju Universuty and his major is tourism . The university said I passed the entrace examination . Athelet 's foot I 've got athelet 's foot . It started a long time ago . It was around my highschool days that I first got athelet 's foot , so it has been almost a decade . So I went to a demotologist downtown . The doctor looks careful and probably credible but since I am for now translating one docdor 's book which criticizes doctors who are too readily `` putting their patients on chemicals `` I am a bit nervous . I am a genuin fool . I worked outside only wearing a down jacket , I shiverd from the cold wind . It is not tha movie itself that made me cry , but the fact that we missed the first ten minutes , because Mam was mistaken about the time . `` I 'm writting a diary after a long time . because I heve never been there . I went to a university that is my first choise today . It was full of fun , and I found a way of larning English . I do n't have inough time . . . I hope that everyone had been having a good time in the latest hollydays . been happy because I have a new niece . She was born on January 1st , and her name is Maria Alejandra . She is soo cute . There are many yhing that I have to do tonight . I like listening to music , like every type , expecially jazz , rock , and some nice soft music , some times I listen to death matel too . and also do some reading , which are written by ppl who r not famouse but special . . . . My sister and I were very joyfull . On the last day , my aunt gave me some australia chocolate , a kangaroo dall , and a suit . I had luch at this shop . We drank alcohol and ate Korian food at the first restrant . I wonder why Japenese people like to eat ramen noodles after they drink a lot of alcohol . I think it 's a very interseting place . I always want to make friens . I love forgeiner so much . that ` s why I ` im learning english . I have tried to study Mandarin when I was in junior high highschool . Chinese - charactors are used in Mandarin and Japanese , so I thought Mandarin would be easier to study than other languages . Some of meaning of chinese - charactors in Mandarin and Japanese are same but some of them are not . Although , Mandarin has four accents in one sound ( I ca n't explain about it crealy in English , try to understand ! ) . I offen postpone various things that need to be done . I 'm housewife , so it 's convinient for me to do such a short time job . What 's is your weak poing in your job I was so upset when I was asked that , because I had not preperation for the job interview . I will keep every Thirsday for your students . Today he went to nursely school . Poppin is my best dancing style in whch the movements are so freaky . I recomended you watch this dance if you are interested in it or you have never watched it . If anybody wants to know more about dance , coment me please ! In addition , corporations can , every so often , organize some creational activities , which may let workers feel a sense of belonging . I watched lovery Bone . Generally it is called a pickled ume in English . I am going to graduate from Seoul National University of Techknowledge this year . Afterwards , I would like to go to a graduate schoo . My daunhter and I want to go to Egypt . I will overcom many sufferings and difficulties . I hope for oan early winter vacation . This comic is the stoty of MUSASI MIYAMOTO . The idea was pleasing to the hotel 's collers . It takes about 40 minits altogether . It is a door that when you open it , you can get into wherever you want whthout moving . My biografy He proposed all of guests ( 4 people ) to support for this couple because it 's a mariage party . In a foreigh country , is it not the custom ? I am going to visit Australia for my school excurcion next February . So , I want to improve my English skill and know ( more about ) the Australianan culture . and in my job there are opportunities to meet foreign vistor . I have been at North Calolina for 2 month . But unfortunatly , my English skills still remain poor . This temprory job ends at the end of this month . It is uncomfortable to stay in an unfamilier place . So , I had my boss buy some vesetables for me . After I recieved them last night , I kept them in the refrigerater . However , it may cause air or watter pollution and noise which comes from factory disposal . It 's becuase I 'm connected to them . But , there are circumstances at the orgnization . My favorite movie is `` A PARFECT WORLD `` . Fainaly , Buch died because of a policeman acted by Clint Eastwood . My Husband and I know that his work is very noisy , for example , cutting wood boads , color on spray and using a chain saw , etc . I want to apologize about this problem to you and to the other neighborhoods . : ) I would like try using this webside , but I dont n't know how it works I am not a Sumou fan and do n't have a favorite Sumo wrestler . Wow , it 's Octorber NOW ! Shockngily , the room that I used to use became my father 's hobby room , so I slept in the guest room but that was not so uncomfortable . So cartoon arters work hard , out of every cartoon I love Tom and jerry I do n't have time to take a rest bacause I have a lot of reports to write by Saturday . we often use Japanese grammer , but explaination is difficult . It 's an important professionnal cycling race . I had lots of opportunities to have some fun and make freinds . However , I did not realize at that time how precious an opportunity I had . It 's quite ridiculous to prohibit her to call , mail and to have a mobile phone even though I have no idea about the Indian way of thinking or their common sence ( or this is not about Indian but just my landlord as an indivisual ) . today I had a lot of work but I was very lazyso I am not going to work . I have to go to chess training soon so I need to sit in the sawna and take a cold shower . However , since it is awinter , I must take a cold shower after the sawna and then I will go the chess training ( or Chess Class ) because I will play an important match next week . please pray for me to win ok Thanks for yout help to improve this passage . Japanese is easier than Eglish . As soon as we finished eatting , my girlfriend and I left the living room and stretched together . What shoud I do if a rat - mistakingly eating the poison and suffering - jumps from the kitchen cabinet ? The ceremony about mourning the pople who died from this bomb has been held every year ; this year it is even more historical because the representatives from western countories participated in the ceremony , especialy the United States . This change was due to the speach that was given by President Obama in Berlin . What I was most impressed by , was that the cecretary General Mr . Ban Ki - moon read a speach , speaking storongly , about how it is necessary to have a storong will to achieve world peace without Nuclear weapons . He visited and made some speaches in Japan over those feelings . I 'm not sure how to tip at a restaulant because I 've just moved to America and my mother country Japan does n't have such a custom . If I do 3 , shuld I write an amount of the tip down in the bill ? Soon I wii take an English exam . I graduated from my junoir college on 15th March . I sometimes dislike her because she scolds me for not follwing what she says . ysstuday was Sunday . Next year ` s simbol animal is the rabbit . I have decided to post voice journals here , because there are only so many oppotunities to speak English in my everyday life . I went to the shopping mall becasue my daughter wanted to go . Unexpectly , I fell into the deep lane that was used only by adults . In Japan , after having graduated from college , most of japansese students work immediatly continues to stay within the company for at least 3 to 5 years . While I took a look around in the Vietanmese mom - and - pop store , he petted my shoulder and said , `` Here you go , a Vietnamese sandwhich . `` At recess today , he still pulled me to the corner again and asked me if I wanted the pulms and vegetables . He knows that I uaually cooked on my own to save money . They should use English in evey sityation . Halloweem party Actually , it dipends on the person . Today I changed my hair color because my brown hair was so bad and my hair was so damaged : ( I dicided to change my hair color ! ! Question 2 , `` Where was the port that the Blanck Ships ( called the ' Kurofune ' in Japanese . However sadely , still I still have n't worked through what I am going to do for my happiness . That way he 's always have a meal beyound midnight and talking , trying to get me to eat with him . I wish that Korean schools were more free like foeign schools . I studayed English from 7am to 9am this mornning . Yesterday , I started a new activty , Capoeira ! When I tried to buy the ticket for the film , I wss recommended by the clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemote was impressive ! I am a sales person , so it is okay since I have a contract nowadays . ( I am the secoud peoson who has the highest sales . ) I mainly do the kind of simple , repeative work that anybody could do We 're going to move to another building next week so today all of us cowokers were packing a lot of stuff . sorry for the ( irrelevant ) detalis . This is my frist time coming here . I learned of this website from my teacher and found it to be a really good place to study English . At the same time , I want to make some friends here ! Whatever my roomates and I will solve that . This time I know the person who can be friend or just have diatance . I lived with my parents and my elder sister who is married and raising her son and daughter with her hasband . And I 'm learning Japanese tea celemony once a week . I 'm interested in Japanese traditional culture , such as tea celemony , kimono , and Japanese flower arrangement . Some people wear kimono often or everyday ( for example , those who are obsessed with Japanese culture , who learn / teach tea celemoney , Japanese manners and Japanese flower arrangements . . . We do n't do tea celemony in daily life except when our families or ourselves are famillier with it . When I learn tea celemoney , I became eager to learn good handwriting , languages , behaviour , and flower arrangements . whe I learn martial arts , I become eager to learn behaviour . As a begineer , you need to have every skill at a beginner 's level . If you go intermidiate in one genre , you need to have skills which are better than a beginner 's also in other genres . I will try writing about these things I learnd . Dec 10th : Sherk 3 I watched ' Sherk 3 ' on TV tonight . In fact it is very usefull and has a cool design . The sweadish man said ' ' Kampai ' ' every fifteen munits . After just 5 munits , the sake bottle was empty . Although the waves were samll , there were a lot of surfers in the sea . The shape of the Tengu was like a human being but he had wings and could fly so we adopted it as our mascot and our filght squadron 's guardian angel . Actually , each squadron 's flight time for the year is assigned by our headquater . `` Yes , just do it ! `` . I praised mysellf so much that I only ate a cup of sesame paste , a banana and an apple as my supper . to look on the brite side ! There were a lot of people wearing costumes ; they were cazy and funky . Now , I am in the middle of preparig for exams , He is n't famous among Japanese , because he did n't have a professinal carrer in Japan . It was an amazing trip due to beautiful sinery in the country . I saw native Australian animals such as Kanggaroo , koalas and many varieties of birds . The scenary was overwhelming and the conpany was smart and decent . Teacher said that Espressions of frequency , speed , and duration do not use ' in ' . I work very hard and I get so tired from working from morning till everning . I talked with my frinds who live in Japan by skype after so long . Since they have not changed a bit , I was releved . I listened to their story , they are still having a hard time due to earthquake and erectric powar plant in Fukushima . I cught a cold . . . : ( And I cught a cold today . So , I my cold goes away soon so I can avoid going to the hospotal ! Hallo every one ! Probably , I am not interested in that topic , my vacubulary is not enough or my English is still very poor . We dicussed about smoking . Indian parents teach their children smoking , but their least age is 2 years old and yet , they can already smoke several cigarets a day . He was sophisticated like an adult and can smoke 2 cigareets at the same time . Parents should be responsible for their childen . They must protect and guide them to a right direction . I hope my English will get better if I could continue writting a diary in English . I mean , we were too busy both mentally and phisically to take time for others . To solve these problems , I shoud relax a bit . Yesterday I went to a Korean restaurant with my close female freiends . We were chilling out with deliciouce dishes and drinks . I was invited to go skaring by my frinds today . Actually my Silent Night , was really nothing specil . From the first day I cut my long hair untill now , I ca n't remember how many times I have cut my hair . I am a colleage sudent in China . After the graduation ceremony for junior high school , I called at her house by using the yearbook which told me her adress . I want to introduce the Hanbok to foreigners because it is very color , and I thought the hanbok was very old fashioned and not unchic , hanbok is very speical . Hallo , everyone . I want to see a lot of forghren poems . Of couse , I want to see Japanese poems too ! Please cheak it ! I learned a lot of nwe words dealing with financial vocabulary . I got a serious headacke this morning while sitting in my cubical , so I took a half day off and left work at 1 pm . Well , if anyone who happens to see this entry , and is interested in getting a Chinese New Year card , pls let me know : D I guarantee the card is gon to be cute , and Chinese : ) A casette tape changed into a robot , or a gun changed into a robot . . . If you get it up onto an Internet auction , collecter will buy it for half million yen . `` Then I wwanted to exhibit some things to Yahoo auction , abbreviated to Yahuoku , which is similar to eBay . I was very busy April because of recruting . ( job hunting ? ) Feeling bodyache Because I have to contact another foriener buyer by phone today . Today I 'm goint to write about my career . Even if I try to find lauguage exchange , they think I 'm a boring and bothersome girl . I could n't stop staring at the beauthiful phone , I believe that this whole swine flu panic is steered by the media to improve the econimic situation . In my opinion , everything that has happened is very artifitial . Some Japanese office workers dream about living in the town because it does n't have a train station , hence it 's difficult to comute to business zones / districts such as those in Tokyo . But I chose to live in Hayama despite the long comute time , I work in Shimbashi central of Tokyo . I went to some Yokohama ramen restaulants this time . I will write down the list of good or famous ramen restaulants here . She taught me the importance not to give up and we can get a happiness to keep tring . I 'm kind of a perfectionist and once I start a role playing game , I do n't stop it till I perfectly copmlete it . It 's like an obligation to collect all the items that exsit in the game and acquire all the abilities . Usually , people in western countries will celebrate Christmas Day with ethusiastic , and as theirculture globalised , we in the east havealso started to note Christmas Day . And it seems an honor to me that I reveived an apple from my little sister . Is it true that Father Christmas will send gifts to us this everning ? I will have a chane to travel to Thailand ~ my house phone has droken down Contiuing to do something is very wonderful . Before caming to Keelung , I heard the rumor about A City of Sadness . I do n't need money or anything , but just a response as to what you think of my idea . Would you be satiisfied with it ? And this can also eliminate what causes confliction , such as misunderstanding about their customs , and he determined that he will do `` The last concert `` fot his young baby . The last concert was so imfressived to me . I tosted some bread with the toaster and I ate the bread without spreading anything on it . Nara is coverd by mountains and forests . About 77 % of it . Deer might atack you . Various kinds of vegitables are pickled in a sakekasu . It has a little strong sake flavor . See you tomorrou ! I do n't know excetly when I can use `` any `` in sentence . I know it 's difficult to expain . She does n't like to eat brackfast in the morning before she goes to school . and also luch . I asked her premis ( ? ) me to eat brackfast before going to school . She said she premis ( ? ) eat brackfast in the morning . What I study at university is mainly sunjects related to English , such as English linguistics , English education , American and British literature and so on . Hi I 'm a new menber My name is Luca and I 'm a new member in the comunity . New year 's day is already over as you and I know , but I still feel like I hav n't regained the energy I had last year . amd his exbition is held this year in KYOTO . My mother tried to go there , but it is very populer and she had to wait in line for more than one or two hours . . . Last Saturday , I ralaxed in my home with my family . In fact , I feel very sad , but I stiil need to work , eat , and so on . Now I 'm gowing some scallions , turnips , and lettuce . I think this one tastes good but my Europian freinds do n't seem to like it that much . Anyway , when we got there , we were the only customers in this restraunt . First , it makes me to sweat easily than what I exepect befoe and this means that it is also helpful as an aerobic excercise . Otherside , my major is not Chinese . I really enjoyed working over ther . Upon seeing what I bought , my little son looked disappointed because I bought more clothes for his elder brother and did n't buy shorts for him which I told him that I would buy one for himy . I am using simple English vocabulary to wirte this diary . I like English very much but my English writting is too bad . The main street was crowded with so many tourtists , who came from home and abroad . Theseday days , I 'm doing a part time job to save up for a trip to England . Before I took the class , I only read my vocabulary notebook for about three times a week , but I learnd many strategies in how to expand my vocabulary in my university . Moreovre , I put vocabulary tags on my funiture . Ironicly , these kind of movies are n't always historically accurate . Snow couses many traffic delays here because it does n't often snow . Che Guebara I wached movie about the life of Che Guevara . I write poor English , so pleasae teach me English . Girls are willing to forget the syrname given by their parents and fllow their husbands ' surnames . I guess you could call me ( a ) `` Germinese , `` but please do n't call me Chimany ; it reminds me of the word `` chemney . `` The thphoon is coming to Japan now . She imigrated from Korea to America 15 years ago . I 'm breakind my record of keeping good health for at least two years : ) My mather and I took a walk this evening . Lots of people who were playing outdoos said that this kind of scenery was really beautiful . I think I forgot all of the grammers and vocobularies . I take care of myself , eat right , and excies . Osechi ! ! ( A Japanese tradtional dish ) The purpose of my part time job for me was to eat the most delicious dish in the cafetiria . It was dilicious and its cost was low : 380yen . But , my collegue told me that there is not a rainy season in NY and the weather this year is unlike the usual in NY . I felt the climinate in Japan was getting warmer and warmer in several years . We can see extraordinary climinate in every area across the globe . Hello , everyone ! My foreigh language teacher told me about this site . I had hardly opened my laptop when I came back home and made my first diary entry . I hope I can make more new friends from around the world . This sentens explains the children ` s liking . I was given many feasts like a sand raice ball , a sand pancake , a sand juice , a sand meat , , etc . But you may not exprience joy like that if a dying baby had not been rescued and grew larger . Yesterday 's movie is about when Shakespere wrote `` Romeo and Juliet `` . I like this movie and I can stady it . So Sakespere wrote a passionate love . Today is very summy day ! I went to interview at a Japanese resturant . I have to be careful about figuring out my job and the way to achive my dream , because it is not like I 'm very young , or like I have many options ( since I do n't have enough money ) . So I will try to do my best to find my way and achive my dream , rather than being frustrated about my poor situation . When I was elementaly scool , ALT teacher from Australia showed us pictures of Australian nature , sea , koalas and so on in his class . And I have never gone abroad and see the senery apart from Japan . So I saw such a senery of picture for the first time and Of cource , Kabuki , Waka , Samurai , Yamato , Wabi Sabi and so on . In ' The Last Samurai ' , which stars Tom Cruis , this idea is the subject . Aftrer the war , we succeeden economically , but we lost our culture . I believe this is the best chance for Japanese people to regain our identiyi and culture and to work together . It 's gorgeus . I went to Costco with my friens a few days before . My friend recommed Cheerios to me . I picked up my hasband this morning . I thought it would be easy to get there , because today is sataday . We take a walk a littel , then I heard dog 's bark . , we can be good friends ! Please leave ur message and some comments . I apprecite it ! ! ! There is a gold accessories store next to my store and oppisited to Boost . souvenire . . I play guitar , watch anime ( yes , I ` m one of _ thete _ > _ > ) , and learn English . There are so many theories in one academic field . For example , in sofrware engineering , both Java and C + + are very useful programming languages . In China , C + + is used more frequently than Java ; consequently , theachers should pay more attention to C + + . Students who learn more useful technology will have a big adventage in finding a job . In some circumstances , theories in textbooks are no ues in real life . Moreover , it is better studied on campass , in a lab , not in a company , As Bertuard Russell said , `` Experice without learning is better than learing without experience . `` Every professor in a field that offers the opportunity to work outside , should ; the others may stay on campass . For students ' futures , universities should find more oppprtunities to give their professors . Yes , I 'm thin - skkined . When I watche a TV program , I knew the store . I 'm a light dranker and I do n't like alcohol . Actully South Korean people usaully are n't interested about / in North Korea . actully I did n't know about my blood relatives before I saw it . So , he deciede to go to China and go back to North Korea after finding some medicins . I cried a few times when ( while ) I was wacthing the movie . Thinking that if I was the man who had a sick wife but could n't find the medicine and the food was dcreasing . . . The song make me remember my life , my failth is shaking , feels lost with no deriction . I ca n't wait to watch that , eithter ! ! I 'm looking forword to that . I 'll always smile toorrow : ) I wanna tell the charactor a crucial thing . When I approched the operating room , I heard After she had an operation , she quikly died . And still , I have this eery idea I forgot about something . . . American Idal , a TV program , is an good example . For example , when estimating the number of balls in a jar or the murder rate in New York city , the errors between the crowds always be cancelled out by each other so that the average answer is often surprisly accurate . I watched hich school musicla at first , it 's very interested and powerful . Today , I nearly slept in the inmidst of doing work . I hope to have better house , earn more money , provide my chid with a good education , buy what I want and go for a trip . . . It is Novenver and winter will soon come ! So many shops sell snowbord and snowbord wear . We went in the shops and looked at the many bords . My height is 165cm , so I should use a bord about 145 - 155 cms . long . I found my faborite design . I looked at the underside of the bord . I , of couse , looked at the price tag . At last , I found a good boad . Morton Island is the biggest island made of sands in the worls so it has many deserts . maximum : You need to pay maximum attention whe you use gasoline . minimum : I think his immidiate action kept the damage minimum . ( just minimum seems wierd . . . I met my laguage exchange partner today . Keep studying , it is hard but really issential In addition , he recommended me to read many books , not only Japanese literature but also foreigun ones . This would broden my outlook on life . I heard about this web site from my co - woker today . I 'm very excited to learn this system , and I 'm looking foward to trying it out ! That 's my favoite team . I 'm always surprised by people here who keep thier journals in a foreign language . I elnvy them . When we met , we didnt know where the `` budaezzigae `` restaurent was . So we walked to look for the restaurent for an hour . We found the restaurent in the end . I caght a cold Those are sympton of a cold . I caght a cold today : ( Some of my friends have been to concerts and they all say they enjoyed them soooooooo much , and whenever I hearthem say sayin like that , I envy them so much . Kagawa who plays for Borssia Dortmund in Germany got the goal . It was beautful goal . The consective hollidays , an event which lasted for about 10 days , was over . Consequently , we now have a hard time living economicaly So I will write messageto this week . The goverment imposed a tax on carbonated drinks ( like Coke ) , and every food has a label indicating nutrition , especially trans - fat . As they heartly congratulated us hearing our news , I was very relieved . By writing down the daily events , I also aime to review each day and make the next day better . Now I can concentrate my attention on the final examenations and essays . Tomorrow is my birthday . I ca n't waite to know what suprise my classmates might give me . I believe that tomorrow will be an unforgetable day because of my lovely friends . When I began running , expecially longer distances ( it took me awhile to build up to that , though ) , I would go to bed and welcome the sweet release of sleep . Yes , I am writting this diary with a brand new PC ! It takes 30 minitus from here to Tokyo . I registered for this site to study language . My friend recommened My teacher is an amusing guy . He asked Turk to taugh us Turkish , and asked me to taugh them Chinese . After the class , I bought a botton of local wein ( a kind of sparkling white wine which has low alcoholic strength ) in order to celebrate X - mas . Hokkaido Pollac Today , I offered Hkkaido pollock to our Chinese cliant . because Japan has a large quantity of pollock , but the maket is small . My Chinese cliant will sell the pollock to the Chinese market . Yesterday , we had a tourament but unfortunately we were n't able to win . As soon as I entered thepub , I droke soju ( korea alcohol ) . Well , that 's nice and full of sunshine and sweety smiles . All the bueatiful things depressed me . After graduating from college , I want to go to France to study for my Master 's dgree . I caught a female beatle on my way home from the office despite that there are not many trees around here . I went to my friend 's hous . I like spicy food such as Kimuch that is Kolean food . It contains lots of red chile But I still want to write it , because maybe I can have a good experiance . I 'll se in the future . . . . I 'll eat at a restrant in the department store . but first , I will go to starbacks . I read books , write dialy and sutdy English in there . The dog 's story is broudcasting by NHK radio and an English course on TV . Some runnner give up without finishing the race due to extremery dehydration and low blood sugar . Yes , this race is difficult because runnners run almost 20 km . Especially , this race is separated 10 sections between Otemachi , Tokyo and Hakone ( 5 sections for one way ) , and runnners must run 850 meter above sea level in the 5th section . And the reason why I am so attracted to this race is that the runnner 's perseverance encourage me to persevere no matter what happens . but when I read the diary abou my ex - girlfriend , I decided to update my diary , I did n't answer him , bacause I knew that he just wanted to remind me that I should be serious about dancing , and not be worried about anyone else 's opinion . Also he is very smart and good at archtecture and history . We can speak to them and teach them what is wrong and what is right and in the long term that will be more effective than hittng them . Trouble is kind of a trandmark of children . I have to go to univercity now . Is American English pronunciation diffirent from British English one ? Later I helpt two friens to correct their Chinese writing . * Do experiment ( changing the mediume ) There are chain restaurant whose plices of foods are n't so different from those at Macdonalds . I yearn after them , because they have brond hair , and blue or brown eyes , and high noses , and they have very good style . Okay , I am going to listen to an English drama first , starting with `` Frisnds `` . I enjoyed the food , the nature and the festivitiy of the small town very much . but I perfer Chinese . We can not use the exact words ( we would like ) to express ourselves . hat 's more In addition to that , most of the grammer we learned in high school has been forgetten . I have a lof of friends from Lang - 8 . They gave me the power to study English . They would cher me up and make me feel warm inside . I will now read a book and comback to use my computer again . Although there are some opinions that cars have many profits , I think that they have had a greater negative impact on various things than a benefitical impact . There are two reasons : worsing the environment and decreasing a chance of communication . The first reason is the emvironment being harmed by exhast gases . The exhaust gases from cars affect the emvironment in various negative ways . The second reason is a decrease in oppotunity for communication . But I think it is umprofit for us to continue using them . It 's quite different from the standard Paintball in most part to its rules and military characteristics like tatics , strategies , missions and moves . I am quite dissapointed . I bought a book called the 4 - hour week from Amazon and I am impressed with the speed of the buing process She 's also been vaccianted every year . Today , I will meet a colledge student who is looking for a job . She is eager to resarch many kinds of jobs . The above was made by his mother ( my wife , of cource ) . : - ) Rrcently I ca n't take pictures . I have pain throughtout my body because of it . and I am really looking forward to seein you sometime in the coming next couple of months . anywayz , happy birthday sweet heart ! ( dear friend ) Acturally , she would have left the day before , but because her plane had engine trouble , she had to stay there for one more night . This week I 've been relaxing , I went to Uni . , stayed home , ordinaly days . . . There will be a party organized by `` Bape `` - the famouse Japanese fashion brand - @ `` Club World `` in Koyoto . someting but not empty in my heart I was dipressed today . I felt lonley . Use my time effitiently ! I thought the answe was ( a ) , but the answer is ( c ) . Because of this , I set aside time to exersise . Fortunately , I have a VIP card , so I enjoyed a discouct of 10 % . I do n't have time now becouse this year I have exams . . . I used to learn English , Japanes , and French . Fortunately it is easier to learn Chiense characters for Japanese , because we use them in our language . We improted the Chiense characters to our language hundreds of years ago , and the meaning of most of the words are still the same . I 'm lonly . I wretten a letter today . Is tha right ? Studying Enblish She lilves in US , and is studying to be a nurse . She was groing up with adopted parents . She says that being alone is confortable . . . . . Her caracter is cheerful . I think she willspend have a happy life . Fortunetly , I passed the 1st test at Korea University Medical Center . The 2nd test is agroup inerview so it 's more important than 1st test . I wrote not long ago , because I got discouraget by learning English . Recently I had depresion because I did n't see the meaning of life . I heard in news that many Rossian people drowned because they were swimming in the river while drinking vodka to cool down . Is this global warming effection ? It tasted yammy because it was free . I forgot to bring a thoothbrush . So after that , I mailed her `` I know your kind heart and ability to chat sencerely `` . There is Chinese cabbage , spinach and Japanese radish in the frige . Of cource , I lilke Euclid as the great mathematician . becose commuting by train becomes very hot and makes me feel bad ! ! I 'm looking forword to my friend 's mariage ! ! I think the hotel gets ( / holds ) a lot marrige per day . I was so exercited . My husband was a systems engineer , but he quit his job last year and has been preparing to becaming a physical training instructor ( physical trainer ) . Today I cooked spaghettie Bolognese for lunch and baked a sea bream , tai [ ? ] with vegetables for dinner . My husband tored his Achilles ' tendon on the 9th of Octorber , and he has n't been able to work for two weeks . One collegue 's husband who is an IT consultant , said to me . But I 'm embarrassed to say that THANK TOU for raising me until now . Ttoday I made spaghetti . Whendever I make spaghetti , I feel proud of myself . I was shoked wnen I saw this changes in Alice . Today is a beautiful day . I woke up at 9 o ` clock , and had more delious food for breakfast . In the afternoon , I surfed the interent . That was taugh for a single girl in China . Although they 've already brokenup , their music is cherring people up . I 've been studying until now , for abourt 3 months . There was a lot of delicias food , some drinks like Champane , wine and beer & plesant conversation & Dancing ! Wow I hav n't known about this briliant site . North and West Europe composed the largest portaion of immigrants to Australia with 34 % . From these pie graphs , immigrants moving to Australia consisted of almost half of the new population in 2001 ( , ) although there was no significant growth in the total populaion . I met my friend in on - line massenger r 2 days ago . I think that I want to eat it somtimes . I sometimes make mitakes when I write English . It 's actually not a long time after that thing , but it 's seened to be a very long time for myself . About love , Respect yourself , that 's the most important thing I learned , if you want to give , just do it , never expect anything back but respect yourself , rub her / him the right way is not the way you should do , be youself . I 'm very happy that my first diary entry had been correctedby Lang - 8 firends so soon . does anyone know UNY ? I usualy sell Can I say `` Every time I have to be the casher . `` ? It means `` I have to work as a casher too . `` I had to translat to Thai the word `` craigslist `` but I ca n't find its meaning . . How do I prounce it ? We have to make lots of firends when we 've done those things because we could get more information on Vietnamese culture . But there is one thing we should be carefull to do and that is to take care of each other . I LIKE Haging around people who like them ~ ! ! This picture is of my grandmather Kailan ka ba pumunta doon ? A Total of 200 peaple participated in the session . I that I had caught a cold this morning , so I was in a bad mood when I had our hand - pianting class . I was so exicited , the adrenaline rushing to my head . That night , I could n't sleep at all , because I was so exitited . Not sleeping on the transf ( p ) ortation is a kind of my bizarre habbit . no matter how I finish this reserch I ca n't explan . Can you expanation to me ? Tommorow is the 16th . If it pased a year , it is 380th . The waitresses had to be so strikc to control the time that a person took eating a meal The subjects were verious , such as about experiences from jobs to the funny things . My pehew is coming home . It was the book I had borrowed once but faniled to finish reading because the due date was up . Today I just watched the lastest episode of ' Gossip Girl . ' What pleases me is that I think the story is going back to normal . I mean , the last couple of episodes have been kind of ridiculous . And in fact , I wouldl never have the lives like theirs . Nate , one of the charactor in ' Gossip girl , ' said , `` Growing up , I never knew what I was supposed to be . . . `` This moive is really famos in Thai . The man who running on the elephant is really good at ( kick ? ) boxing and did not use a stant man . . . When you come back to your country maybe you should work for a few years to prepar for studying at university . In my opinion , travel or work for a year will give the students a lot of expereinces that will make them successful in the futuer . This week , we 'll llreturn to lighter meals . The item whitch is used for erasing pencil wiritig is called ' eraser ' in America , and ' rubber ' in England , right ? This sound file was made by me and my American friend who is learnig Japanese . We , for the first time , acutually talked to each other . Even my brother , who never ramember the date of my birthday ( but you can see it 's not a problem ) ) , told me that everything that I paint sucks and presented me with a picture . ) I did mathmatics and Japanese . It was fun that I did homework . I ate a yammy bar of chocolate write your five items in the coomments , if it is n't difficult for you = ) I can learn not only English communication but also business skills like how to be a good facilitator and how to negosiate effectively . There were many games , such as , Hula - Hoop Throwing Game ( a conpetition on how long they throw ) , Catching Paper With Chopsticks , Scooping Water Walloon , Dropping 1 Yen Coin to the bins in an aquarium tank , Pitching Game , and so on . And there was a boose giving snow cup with syrups as a present to those who played three games . So , if the school is a member of this neighborfood community , Imagine you want to buy a melon for 500 yen ( fixed price ) . You have 100 yen coins , 50 yan coins and 10 yen coins . How to learn the fandament of other languages The first step in studying Langage I strugled to find the way to learn other languages efficiently . ( or effectively ) . I did n't have enough money to go to a langage school , After 5 years of looking , I found one of the ways to understand the faoundation of otther langages . I think we have to fill our brain with the fandamental sentenses of the new langage . When we have to use the langage , the sentenses will appear automatically . To fill up your brain with the sentenses , This text exprain the way of fandamental training . Of cours the method can be applied to other texts containing fandamental sentenses with CD I 'm looking forward to the day that I can exprain the effectiveness of this method for gaining ability in foreign languages . However , it was not planned and there was dvidences . Spending a foreign festival like Christmas in a `` foreigal `` place seems very interesting . And that means the exams are right around the coner . Perhaps it is due to our esucation systerm - you come to school to study , the school gives you a mark on your paper . Impartiality is what everyone purpsue , but no one really succeeds . I live in Incheon with my famliy and puppy . I go to Hanshin univercity . Sometimes I forgot to do , because of my busy work , or heavy drunking . . . Canada Dollar shepard chocolate ! He wears glasses , and always wears cotten pants . The next day , a reunion party will be held and I will meet my old classmates at my elemntary school . I develop new products of air conditioners making use of the tecknologies I have learnt these days . Terefore , I go to Kyoto several times a year with my family . Article 131 . - The Federal Government shall formulate and keep the Risk Chart on water basins updated , in order to set in place the disaster prevention programs , which shall include soil and water conservation works as well as flood managemen . The method of the moslim funeral is the brial . But in the case of japnese Buddhism , it cremates a corpse and puts a bone in a pot by using chopsticks . The cremination is decided by a law in Japan , and the brial is permitted only in some areas . I absolutly love English and I need more practice talking with native English speakers , so I would love it if you add me to your Skype list . Today , my university finiished first semester . Firdt , I want to go to Wakayama , ( comma ) I 've dedided . . . I am posting another text bwloq . For `` Domesctic Sewage `` , Salo Paulo reported the highest figure of these countries with 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . Aside from them , Tokyo reported `` presticides `` as the water pollutant with 31 % whereas the amount was much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage of `` Erosion `` with 23 % as well as `` Demestic Sewage `` and `` Phospharates in detergents `` , which were higher than that of other coutries . There are significant differences between the four pollusions in the three cities . I 'm borred Sometime I laughted , sometime I cried . Anyway , today is Rodorigo 's birthday . Happy Birthday , Rodorigo ! ! cheap , the engine sound is quiet , the interia is kind of clean , and the exterior has a few blems , even though it is old and has high mileage . There are 3 big problems , oil leaking , radiation , and blake pads , Snowing aroumd here was very rare . Now , it 's a beautifull day today I love this site , and I want to make frends through it . I remembered my past work untill now and inputted it to the Excel . This activity was intersting because I was able to discover my work style and my strengths and weaknesses . Nice cut designner They are usualy cooked in Sukiyaki , Tempura , and so on . I 'm not sure where we 're going , but we 'll be sure to go somewhere where we can have king crab . My boyfriend may not want to go , because he always feels tired . He 's yawing at the monent , but I will make him come along . There are old temples and histrical places . We dicided to call a salvage company to haul them away . I haerd muscle is heavier than fat . Exchange languaje My interpersonal skill for English is better than my writting however I need more practice . I do n't mind if your interpersonal skill for Spanish is not very good , I think that if we work together , we can improve our cualities . Do you often use formal words and with a straigt face on your usual conversations ? Peaple said he has such nice manners . I saw pictures abou that . Probably , I will become addicted to this SNS and try to upload my dialies ( daily thoughts ? ) . Does it furthurmore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this webside , and I don ` t know how to use it apropriate , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for sereral years , and my knowledge is still not enough ! ! ! ! And in my researh activity about oncology , I thought I did n't have any choice but to enter a med school to study the medicine . Eventualy I became a medical student . ( In Japan , in Febraly there are entrance exams for most universities . ) Snow fell yesterday early in the moring but it melted . my favorite coffe is always `` Today 's coffe `` . Of course , I have a cup of delicious coffes when I go to there , but my real reason for going is not only todrink coffe . To my seprise when I came to his house , it was very chean . Today is thanksginving day , and I am at my friend 's house . I 've taken a nap at least 7 hours in the last 4 datys , and I eat my fill every day . And we will have to go to the another shop wiche is near my house . I went to catch squirrels last Sunday . The rain made the hillsides became a little wet , so we sould watch our step and tried not to fall down . We all went to a summer festival held in Mukaigahara which was held at a nursery schol near my house . I 've been listening to his songs recentry . I like Masaharu Fukuyam too , they are similer . One of my favorite movies is `` Innocent Steps `` which was produced in korean . After I woke up , I went to a Thai restaurant where a my freind works . One of my friends began to study English and he indroduce this website to me . I love languages , in particlar , the sound of English . Umm , sorry , I 'm nagative today , is n't it ? I felt that I need to improve Engilsh for litening and speaking . Luckily , I finished my exam already , and I can celebrate Christmas wholeheartly I think you should decide to keep the maintenance time on a regular basis , becaues a lot of people have signed up to this site lately and you will have to keep the configulation simple and clear all the time . I am practicing listning to English . So I told him that he should work on it litte by little every day from the beginning . Of course , he wo n't be able to prepare for the test on the first day afer the holiday . . . I found this good webiste and I thought it can help me learng english better . Pleasae , reply for me ! And now , I 'm going to play on my home cort because I need to practice for the match tommorrow : ) ! Its desigh is very good . I always listen to their English conversations , but I still ca n't fully understand ( white and black people 's English are very difficul to understand for supid Japanese ) lol . I would add a little soy sause and natto , too . They had a granddougter - daughter , Mashenka . Her - friends wanted to go to the forest for mashrooms and berries . I bought coffie , patbingsu , and pizza . My older oldbrother is Sin . My first day with a foreign firend on the internet Thanks to globlization , a Taiwanese person and a Japanese person can chat in English , we are able to communicate on the internet even though our mother tongues are different . Looking back on my past entries , I 'm pretty surpirsed how horribel my English was , and at the same time , happy to see improvements in myself . I recomend this movie . In this context , the word , `` clutch `` functions as an adjective in order to descibe I belived what you said completely at that time . . . `` I thought to myself . My personality is eazygoing and outgoing . If someone has any qestion , just ask me . I 'm too lazy to customize my page with HTML , and some pages have too many apprications . I wish I had frends who could speak English ! I had some vegitable juice . Not noly because Chinese New Year is comming , I 'm leseening to good musik . She makes beautiful , exciting music and perfomes perfectly . An expart said , `` When you say negative words to yourself , your brain has only negative images . My office needs to help many customers ? So , sturday and Sunday are working days for me . Now I 'm writing a journal at Urawa Central City Libirary while sitting beside a large window . I ` ve been feeling bad for the past 30 minitues . Wecome back , robins ! We were looking forwad to seeing the pair raising a brood . I wish my Engish writing skills would get better Sorry , I ca n't wirte English well tonight because I 'm drunk and I want to play painball next holiday . . becouse my house is situated near the sea I 'm tired of translating from Chinese to English , so I 'm writting this diary without translating . I know my English is very poor , but I realy like learning it . So I decided to resume my studies by writing in my diariy here . This made me recognize that communication to others , especically people not only Japanese , is very fun . Sevaral months ago , I went to Montain Tai with a friend of mine and her mother . but our familly did n't have buchimgae . fm is a lunguage study site . I took an examination in phisics today . But I still have tests in , mathematics , English , German , and electric curcuit . I know it 's not that big of a deal , but I wanna stay in sharpe . Ukraine has a very old history . Many tuorists from other countries come here ! ! We have many places vere we can spend time tougether ! I houpe you will help me with my English . ) ) It is said that he killed a Brilish 22 - year old woman who was an English teacher living in Japan . I 'm a commer . I hope someone can see it and halp me by modifying my article or intrduce a good way of improving English . I must learn English , but evryone knows my level is too low . When I was a juniour high school student , my English class teacher laghed at me , because my pronunciation was unique for him . hope I can bear to live in another provience or city . My teacher aksed us to write a personal statement , and she showed us some examples in which there were various tragedies such as parent divorce , serious illness , and car accidnet . I ' m intrested in history , literature , sport , geografy , religious etc . I haven ' t done too many interesting things recently , because I ' ve been so busy in conection with the end of the semester at school but winter holidays are close ; ) I 've been 2chan mad for a decade , and I deeply like hutaba Channel , which influenced 4chan 's culture and structure . Compared to 2chan , thier hatred seems disorganized . On 2chan , they attack mainly weak people . Especially Koreans or Chinese in Janan , integrated people , women , and anyone with a percieved weakness . Hello , veryone , I have come back . and then read it again atfer one has finished finished writing it . No doubt , it is kind of traditional Confucianiam . For my part , I firmly believe that one who has a kind - heart should be given a reward or applous . London has so meny people and it 's too expencive . . . I can read Japanese but ca n't type in Japanes . . . I have sooo meny stories to tell about Monaco . I have an eanjoyable time each lesson , In addition I feel confortable when I carry out the procedure for making tea . In Japan , there are not any traditions of having a long summer time vation , as in France . I think I am overslep . I ca n't believe a song could make me feel so sad . It had really nice lylics though . I was so happy asa well that I still could a friend who still remembered me after one year . I felt a bit sorry , however , they smiled at me and said `` Eat more : ) although there was n't pelnty of food I could make friends with many people thurough being a volunteer . So , I ` ll study hard and find something intereste about economics . Strangely , many people do n't understant that sometimes a man watches it just alone and some people feel shy ( about it ) . So I revise the lessions I have leart during the holiday . I 'm afried I ca n't be the best in our class . I Wish I can get a goog result . I bought juice which was a fruit and vegetable mixture , I thought it could improve my immunity , but it was too cold , and I had to mix hot water in . The funny thing was tha I could n't measure how much hot water I needed , so the mixture was either ( too ) hot or ( too ) cold , which made my throat ( even ) more uncomfortable T _ T . After three years I listend to his music again because one of his music videos , `` man in the mirror `` I was shoked by this video , I did n't know what to say , I was impacted . Comment : Me too I found that I had n't see all his music videos , I didi n't really know him , afterward I read some information about him . If you would like to learn contonese or chinses , I can help you . I wonder what clothes are suitable for gests . I heard Americans give the couple presents from a wish list . Is this ture ? I highly recommand the film as well . I like photo booth machines , so I always take a phote inside them . I 'd like to know if there are photo booth machines in foreign contries . They seem to enjoy taking the phote . Until before , I heard my recorded voice but my voice is a little bit strange to me and I felt ashame and funny . Pleae proofread it . Especialy they often have an original or special lunch . UNIQLO and Theire Business Strategy One of theire feature items is the so - called ' heat tech inner . `` In my opinion , what he said is true . However , when you are at the top , you are also responsible for your co - workers and theire family . You may need financial support from your parents . Some people succeed very easily because of theire family . Now I just read the latest news that UNIQLO has announced that they are going to change theire company 's common language to English from 2012 - 2013 in order to keep up with global growth . I find that Chiese exams are more difficult than English exams . which laugage should I choose ? germany - I have learned / studied it for one year , but I can only read without understanding its meaning . They were very embarrased about this . It was very funny . By the time I get marrige , I will have gone to Este six times . My First Singn - In If you understand my meaning and I kown what you mean then that is enough . What do you think of this suplement ? and diabetes . This suplement is just like an all - around medicine . compare someone who shrases the bad and good but , most of all my best friend is like me in evey way . Recentry , the junkyard where I work is very dull . The customer was so delighted / enraptured that he adviced the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' to attract customers to the business . In a sense a custumer named their specialty ' Cat rice cakes ' . I think non - ricense writers should be appriciated more . There was not a tunami afterward today though , - The size of his house gave me a shoke . - As far as I know , most Korean and japanse people know what the `` general character of each blood type `` is and I think they take its significance seriously . I 'd lile to communicate with the English - speaking users and start to study English right now . So do n't hasitate to contact with me . I 'm Going To Go To Costoco Have you ever gone to Costoco ? What do you recomend ? Please do n't chang all of the sentence into new sentences . . . Though some people believe a considerable proporton of rural students would put great effort into learning , it is manifeast that there really is a phenomenon that rural students are more prone to have difficulty entering university . When I was a kid , I stayed at my granpa and granma 's house every month . After bathing , he alwasy took his tooth out of his mouth . I told my mother about this afete I grew up , she laughed . The woman in the video , whose name is Aum , is really popular in Thailand . Men love her becasue she looks sexy . My sons recived their presents from Santa . and I belive I can do it ! ! GUMDAM ( RX78 - 2 ) What singers do you like in Japam ? To tell the truth , I went to Vienner for a school trip last summer and saw some of Otto Wagner 's buildings . This post office , the Savings Bank , is one of the World Heritagesite sites in Vienner . I do n't wana work anymore . . . I was born and reised in Japane . My doream is to have my own shop . I 'm styuding English and Chinese . I did n't have any exprience doing the tasks required of the position . She asked about my salary expection and how I could think I worth that much money . She said my expection could be reached after I work for 2 or 3 years and I have to work from the most basic position . The problem was that my expection salary was the common standard in graduates . Since I go to a remote place I have not been before this is a good excecise . It does not cost us a lot of money to go cyling . Study abroad is neccary to speak a foreign language skillfully ? ? The year before last and last year I passed the first test but failed the sencond test . I hope to pass the sencond test this year . Yesterday I made new friedns at Lang - 8 and I got my first correction on my entry ~ I had to clean my room befroe Chinese new year . It was very exciting , important , happy , and peacehul for me . I 'm not good at Engulish . English is very important comunication tool for talking to each other . He is a fomous Japanese musician and a guitarist . He appered on various TV shows , movie and CM . Since at that time , I respeect him . I stady English . ( ^ . ^ ) I start stady EngIish today . I 'm not sure if it works but I really want native speakers to point out which words I do n't pronociate correctly . The recent trend at my company is : `` Our company will take the cusutomer experience to the next level using digital technology . `` But now is the time to use IT for developing a cloose loop relationship between our stores and the customer . anyway I went to the mountan which is famouse for rock climing a week ago . we are feeling happy at first , but the higher we reach I got difficulties in brething > < . finnaly , we arrived at the top ! ! ! I cooked curry with a pressure cooker at last nigt . We went to a bomb shelter and listened some stories from Okinawa people and visited the musium . I went to one of the most famouse aquariums in the world , a beautiful sea park and the catsle influenced by both China and Japan authorized as a world heritage building and so on . I enjoied diving . Accorinding to official information , Tokyo will be having a big earthquake Recently I started to prepare evacuation equipment , food , towels , toilett On the other side , you know , asians are little conservative sometimes , they control their emotions , but if something sad were to happend , they go out of control , and become temperamental . It 's ( both ) nomal and unnormal to you , If you can find any mistakes in my diary , pleaze indicate . But , something bad happend after taking my baby to a park with my mother - in - law . I know she really likes talking , and she was realy happy to show her grandkid to her neighbors . After stadying , I had a meeting for the shodo club . trip ( vietnum , Guam ) Do you know Rady GaGa ? for example , MAC , Lunasor , RMK , and so on . I usualy push the reset botten each time when I boot my PC . I want to see `` Abater `` and `` Alice `` some day . We must think about having a good time for welcoming club members next yesr and so on . One was a cream cheeze layer which was heavy , and the other was a strawberry layer which was sweet and sour . That 's why you have to orginize your work so it will be comfortable for you . I decided to make a neckless using power stones . The dessart I had was so good ! ! We agreed it 's best for us to break up and consentrate on our dreams . After get back home , I am so sad because I notice she doesn n't call , send E - mail , talk by skype anymore . Tommorrow is a holiday ! ! I was punished by my ever so strong inclination to procastinate and procastinate . I went to a Japanese restrant there with my host family . The menu of the restrant includes Sushi ! ! came bak after 3weeks I was looking for the other one attentively . I looked into my bag carefully , turned back to check on the ground , but I faild to find it . What was the happinest moment in your life ? Workaholic guy . The hapipinest moments in my life are when I achieve something at work . For exapmle , I felt happy when I won a sales award at my workplace and I feel happy when customers give me a perfect score on a customer 's surbey . I like my job as a sales person because I can contribute to customers ' bussiness . Working very hard is a part of Japanese culture and we can feel our happinest when we devote ourselves toward a customer 's success . I could see water from the sky covered the trees arond my house . The day before yesterday I went to watch a moive with my friend arond my house . I was really scared and enjoyed it . Do you like scarely moive ? ? ? Of couse , Most are from Chaina , In Prticularly , writing and speaking skills . Today , I found this SNS and . wrote a leter read the paper and saied `` your english not enough `` This is one of my favorite tracks / songs from this album . My Colleage Life ~ ~ I major in Jpanese , which is supposed to be a time - consuming subject . At the beginning of colleage life , I considered taking part in some clubs , and filled in some forms to hand in . They 're all older than me , so I ofen recieve useful help from them , and I am grateful for it . After I got used to colleage life , the place which full of challenges , I began to think of how to balance the time betweeen studying and life . lots time everday . I attended a Japenese Speech Contest and won a prize . And from now on I will try my best to become a successful colleage student , no matter how many difficulties comes . Then I want to get my driver 's lisence . I think my memery is too bad , so I do n't like to remember words . The baby refused everything but the sugard yogurt and then the little scary frined burstout crying , my friend said . I have the same experence actually , so I could understand totally how much she was embarrssed . I felt guily so I hugged him for a while . The situation that the babies ' mother saw seemed peacful and perfect . You have to know how much your little dauther was stbborn ! ! ! Tokyo Disnyand ! Yesterday , I went to Tokyo Disnyland with my friends . Although we could ride only three attactions because it was very crowded , YOSAKOI is a poweful dancing competition and it encourages people . However , it is necessary to revise the policy on electronic power , given the disaster of the nuclear accident caused by the Great Tohok Earthquake . The main caractor Annie , who is twelve , likes running and drawing . Recentry , I 'm into DIY . My syster ` s boyfriend has sent me an invitation for this online game . When I started playing it , I felt bored , because I have played Travien before which was an exciting game . There is wood and other four luxuary materials from the other islands , so you can bring just one of them . There is researc , where you can invent new bulidings and other extras , there are gods ( this is a ancient Greek game ) , you can attack other players , and bulid new colonies in other islands , so you need to buy ships and bulild battleship . If you feel like playing , I can send you an invitetion to the hungarian servers ' Lambda ' and ' My ' : ) and I 'm new member on lang - 8 , I hope I can find some friend who can teach me some languanges , and of couse correct my English . Now when I try to say something in English , Japanese always comes to my mind first , althougt I still ca n't use ( speak ? ) Japanese fluently . My level is lower intermidiate . Yesterday , I went to an Italian restaurant with my wife and my Korian friends who are a couple . None of us can speak English well , but the funny thing is , we could communicate very smoothly because the pronounciation of English that my Korian friends speak was easier to listen to than a native American one . Mistakes my Korian friends made were very similar to mine , such as tense and singlar / plural . He always said that I should practice Japanese more while I am in Japan , because it 's hard to find a Japanses to practice with you in Taiwan . I study English very hard , I got 90 points which is over average about 30 points in every exam , and I like dacing ( jazz ) , I can do it well . In a word , this Golde was golden for the movie market . By the way , I will have fun with my famiry during golden week . As it happned , my wife - to - be did not have a TV either . Yesterday , it was my boyfreind 's 24th brithday . But in my opintion , all time is very important to me . I need to earn more money so that I will make my wafe have a wonderful life . I can not bilieve I managed to live there before . Our teacher asked everyone to choose a foreign paper , and interprete it into Chinese . He listened quitely . Sometimes he says his oppinion and I listen to it . This picture was teked in a zoo I heard that people in other countries are very interent in internships . This was my frist lesson at the art therapy class . ) During our frist lesson , The teacher told us , `` Please image your life five , ten , and twenty years later . Even when you are an old person , then draw the different periods . `` When I became conscious , it was nealy 6 : 00AM . The teacher told me that my daughter is not good at saying the multipulation for 3X8 and 2X6 . My son who is 9 years old , does n't like doning ( his ) homework . I have thougt of new good tastes that do n't sell in Japan . I hit my head hard on the floor so I feel a bit weezy . And so , I have to study some foriegn langauges . If you have an interresting in cooking and studying German , read it , please . My daughter is one year and therr months old . Wearing shoes is strange for her , I guss . In the afternoon I did my landry , baked muffin and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earier today and I will wake up at 4 : 30 tomorrow as usual , in order to prepare for the beginning of next nextweek . I think I can keep good rithm for my lifestyle this way . I like drawing with a boolpoint pen When I was a child , I often used a boolpoint pen for drawing . The boolpoing pen is thus useful for me . If you finished a midical colledge you have to be able to diagnose this case . Suddeny I felt something strange , and she looked ill . The way she sings made me think so , and she seemed to be very confident to sing and enjoy singging and such . But I really enjoied this race and I tried to move it to a safe place , but before I did , it got up and starated to walk . They are little Einsteins , totally free and always eagar to learn new things . Of course you have to be careful not to force them to do things which seem / are meaningful to grown - ups but do n't mean anything to kids ) , and you should n't expect any immedate results . What is an approoriate subject for small talk ? However , we should n't talk about money or private things such as politics and religion uless they mention it first . There are many advandages to small talk . Everithing stands on its head . This year we are repearing and liming our home together with my son . As the population density increases , various problems arise : air pollution , water pollution , lack of water , waste disporsal , and energy consumption . He enjoyied the long slide . But as I have been exposured to a lot of kinds of English on the net , Even though they have Indian accents they seem to be okay to work and live in America or other English speaking countries as members of socities . Are you interented in the news ? It 's very difficult to understand all the imformation , for example , political , economic , and societal problems . Some of my friends do n't even know who the the prime misister is in my country . I was really surpried and shocked . We eat fabcy dinner ( actually I eat KFC ) and cake , and drink sparkling wine Today is my birthday , but just like every year , nothing special or imporant happened the whole day . I think maybe because people are busy with enjoying their summer holidays against the extremly high temperature . I always feel it is defficult to talk about my work , Besides , if you leave Obi just tied simply , it 'll be loose because the cloth of Obi is broad and thick , so it needs to be delt with so that it 'll keep in place for a long time . I did n't go out exept when I needed to get food from the shops . But in this case , I used soy sause . But , I think it is neceessary to relax occasionally . I was hurt by a storong team , which is the top team in my town . finarry , I decided to keep playing baseball . My teammate told me that `` You are abnormal and you shoul see a doctor . `` Presereved flower lesson The rabit wearing green clothing is an easy - going guy . I saw a movie yestetday , because I felt like seeing one . My roommate recomended `` Skyline `` . UNIQLO is a brand name ; its corporation 's real name is The FAST RETAILING , established in Ube sity in Yamaguchi prefecture in the western area of Japan . UNIQLOCK was published about a year ago , and is popular among geeks and people who are fashion concious . It is known as a very fashionable and techinical screensaver . I think you will be suprised by the music and dancing . I know it 's important that I keep studing English to improve it . I will start studing by podcast from now on ! Today 's frist diary entry : My co - worker 's daugher has been infected by the swine fl I hope the Swin flu issue will pass soon . . So if you want to study Chinese and your native language is Englsih , you can contact me . leavesing your email address or send a text ! : ) / / / Ahetr that I could meet him at around 7 : 00pm . It was the first time in alost 2years . Every time I drink beer or some alchol , I always feel like going to Karoke ! I should be careful for not driking too much beer . . . These days , dengerous luds were sneeking everywhere . But I belive that God helps me all time . Those are very healty . Thus , women play an important role in the labor force . I wrote this entry preparing for the writnig part of the IELTS . Current Japanese custom of Siant Valentine 's Day is changing that girls give chocolate to their boyfriend for that girls give it to their friends . My Wacom Graphire3 tablet ( computer drowing tool ) Therefore , I decided to change school to implove my English ability . My new school is just close to my workplace and has a good enviroment . So that is why I 'd like to watch a movie without subutitles . We did girltalk in a cafe over a cupputino and small cakes , which made me so happy . A typhoon will get closer to Osaka my hometown tommorow morning . A professer might say something important about the exam in the class . My frist impression of him was not bad . I lov rock ' n roll : ) but I lov bossa nova too : D I often herad that many girls have no sense of direction . 2 weeks have pssed since I came to London . Now I live in an international dormitory , but I can not make any international friends here because my roommate is lso Japanese . . . We have similer pespective on many things . I find that he 's so funny and smart . Just before we talked , he put his message for me in the chat box , and it said `` I missed you . `` I was happy about that he had thoght in a similer way that I had . My ideal hause She boughet a new cottage resently , so she invited guests to it . It was a wondarful lake side cottage ! The lake is big and clear , and there is conveniene area . Maybe it 's difficult but I want to find an ideal house becouse we can not live in it Because I go library to studing English at 9 : 00a . m . In Korea , there are mamy holidays . I can still see the grape trelis of the neighbour . I 'm studing in college . Sunmer is soon coming , and I need to lose weight in a short time . Sunmer , I love it , but I do not love fat ! ! ! In has been rainy this week in Hyougo , and the weather forecast says it will be rainy untill this weekend . I had Nagasaki Champon and it was dericias ! I like Nagasaki Channpon . After awhile the Ex - president opend his mouth . I have to study mysel . In my oppinion : The reasons people read books are : This site is helpful to me , because I do n't have the oppotunity to wtite in English . Uncredably , we had to climb about 500 stairs to go there . It was worht climbing all the way up there , we had beautiful view . I carried out thier favor with pleasure . Boys be ambtious ! In some areas of China , if a family gets a girl , the husband treats his frieands with red eggs and if it is a boy , the husband treats his friends with the red eggs with one black point on each of the eggs . They will hold a concert which requir us to come wearing black clothes . We are in a room on the second floor of my wife 's parants ' house . It was very intrested ! And feel so happy eberyday - thanks for eating icecream . I did not want to watch such disgusting movies , but I am very a honest and sincere person , so I obeid his order . Most Singapoean friends laughed at me land said `` You pervert , How cheeky you are , This is not your PC but your landlady 's , Why did you do that ? `` . So Japanese goverment made a dicision to stop providing electricity in Kanto distinct , even including the capital city , from tomorrow . I like sports ( especially karate , table tennis ) , and I also traveling , films , and photography . I was alomost done . Only foreingers , Asian people in paticular , live in the city . If there were not Chinatowns in the city , Sdney would not be so active . You will be able to see its huge and beauticul Chinatown . Those discricts are not like Japan , but like China as well . I hate the English airtcle systems . So when average Japanese students study English , we are always suffering from these divils lol . If English speakers study Japanese , is it difficult for them not to use the airtcle system ? Warszawa in Poland is very famous for hosting the International Fryderyk Chopin Piano Competition . It 's a day for returning a present to a person who gave me a present on Valentain 's Day . He had a brother nemed Moon . Lately I have been thinking about how my life will be in the furture with my family and friends . Okinawa is an iland and is situated south of Japan . Okinawa has a unique culture , food , language and atmospher . I have nt decided on any of the trip details as yet , but it will be nice trip ^ ^ I hope I can go to Eourpe in the future . I have always liked Baroque music , espcially Vivaldi . Which kindda ofgirls do u prefer ? But it 's diffcult for me to talk to someone fluently . l am Mahi . I 'm a Japanese enjneer . I hope I can speak and write English , and comunicate with some peaple ! There was a few minuits blackout , because there was a power / electricity interruption in my house . Today , I watched a documentaly program on TV . I know that it comes from a famous Japanese cartoon and was reamade as a soap in Japan and Taiwan already . But , after I saw the drama with freidns , I became hooked on it . ^ ^ Although it includes unrealstic situations , and is sometimes hard for me to understand , the main actors , who are called F4 , are gorgeous and I ca n't [ find a reason to ] object to its popularity I 'm worring whether I can do it by the deadline . Not Japanses music . someting is wrong with my Skype mic . It is a tough month at the univercity , but there is nothing to do about it . On my Christmasmas list I said on my Christmasmas list She was diagnosed with a healty problem recently . I shoule keep a record of my body 's ailments . I saw the beautiful snow , but tempreture go down . One of the most beatful things in the world is watching a baby growing up . `` Kyle and nis men were able to take a great many photographs of the mountains below . `` soccer is played around the wrold . I enjoyed palying soccer . Now in the new millennium , scientific technology has increasingly advanced and the disparity between the wealthy and the needy have greatly enhanced . Some individuals have link the gap to the advanced technologyies . However , from an empirical view , I really hard - pressed to imagine how the spectrum of technology has attributed to the wealth gap since it gose without saying that scientific technology candecrease disparity between the wealthy and needy . To begin with , the proliferation of the information highway have taken possibility to the poor to operate a host of things , which would have been unrealiable two decades ago . Moreover , it is wild acknowledged that the mobil phone , one of the most significant inventions in twenty century , has transformed individuals ' lives into highly efficient and convient living , especially for the poor . By pressing a button , we can connect with anyone anywhere , which in turn enriches peeple 's life various and enables the human race living in different economic statuses . I guess I need much more vocabulary and a large amont of reading . becaouse I run out strange things I remenber that I hav n't been contating my boyfriend for a long long time . I have taken charge of all arangements of on - the - job training . Today , I enjoied my time in my house until my work started at 5pm . Every day , my work starts eary in the morning such as , at 6 : 30am , so I went out before dawn . And as I get older , there is an increase resk . It is intelesting . Since we frist met , we have spent a lot of time together because we study at the same university and we always take the same courses . I have a constant headache these days , especiallhy when I hear loud voices . I love to plan birthday parties for my childen ! Last week , I met a strangth man . It has many kinds of issues and organiged by the level of difficulty . So , I do n't know my futrure . . . The reason why Philippin and Indians can speak English is because they used to be a colony of America and they had to use English to live a smooth life . Firt of your questions , I think the most popular season for wedding is spring . It is weird : ) Maybe she asked the cabin attendants to write a Japanese message on her expensive bag on the plane lol She also said when her funs see her in Japan , please write a message on her bag . Today , I am going to go to a phote shop to get a picture of my family taken . I liked to see them suck saps we fed them , and occationaly fight head to head over saps or females in the plastic case at night , as they are usually nocturnal . Fishing was also my faborit activity when I was in elementary school . This morning , an insureance lady visited my house and offered me the same job she does . That was very annoing . The first time , it was an old event during the Nara period . Today is the turn of the season , We have distributed medical harb to avoid sickness and misfortune . I thought that this site would help ppl who wanna improve their laguage skillz yea I know I have & nbsp ; this lonely diary which also can help my studing The first thing important in education is knowlege . Education gives us the knowlege of the world around us . Education is not about lessons and textboxes . It is about the lessos of life . Again Auler , this guy never stopped . He always speaks like , `` Let me brabrabara , `` or `` Please allow me to brabrabra . `` I learn many things about both English and mathematics from him . As the Beijin Olympics started a few days ago , I think many people are interested in this topic ! Ryoko Tani coud n't get a gold medal , but she got bronze medal . I went to the Nas & Damian Marley Japen Tour yesterday . They performanced for about 2 hours . It was very exciting , so I watched it 15episodes in one stting . So I WILL get it inthis year because The employees do not need to math or hire accountants to get their tax return . However , t people who are self - employed , landload / landladies , or have certain types of expenses over $ 1000 , have to report for their final income tax return . It has been rainning in our city for several days . I felt so bad . evrything is bad . He is a budker , who does acrobatics very well , usually performing in the square of Xinyi Vieshow . It 's exciting to dig an unknow story . I think this site is really useful for people who study foreing languages . This weekend , I 'm going to run a marathon race whice is first time for me to run 42 . 195km . Now , I 'm a team leader of ekiden whchi is a relay race run by four people , with each person running running five kilometers . I want to lead to team the trimpth , and so I want to have superior record . But many Japanese think that they are reluctant to devorce if they hold a wedding ceremony that costs much money ! ! I am annoyed by my toothache , but I 'm looking foward to going to the dentist again . According to the newspaper I read recently , it is easier to get a high salary person to produce high quility goods than a low salary person . Furthermore , in my case , when I worked with a low salary , I couldn n't gain any interest in my job and I answerd yes . . . Since I had just gotten out of bed I was still in my pajyamas . . ( ^ ^ ; But he said that he was traveling around the area and suddenly thought tha if we ( my family ? ) were home , he wanted to come visit meet us . Anyway he is very cherrful person , so we had agood time . I think I need to take some gift to him this firday . Do you think a bottle of alcohol is a good idea ? By the way , I was supprised when I came here . I think Japanese have difficully accepting people coming into their houses eccept themeselves and their family . My girlfriend chose Greenlatte latte . I chose hot choco . We ate toghether ( without our boss ) and my colleagues liked my dishes . Every time when I promise others to fulfill an assignment , I can accomplish it very well even though the task seems unconqerable . Moreover , I am afraid to dissapointe others rather than I myself . I like differant coffee . When I 'm sad , I drink cappuccino . When I 'm deppressed , I prefere black coffee . I used to limit my time to 30 mins , but 10 mins is more intensive and makes me concentrate more . It 's a time when many people make thier resolutions for the whole year . Keep your fingers cressed ; ) However , it is difficult to keep my tention calm when she seems not to hear me , or does the same mistake . The sheep was finally found by the sheepherd and felt relieved . I am Booddhist , but unfortunatelly the temple generally do n't give this kind of service periodically for small children . It must lead to increasing of the enthusiastic Booddhists in the future . defferent world I overslpet this morning I put ong my clothes hurriedly and went out . Becouse I made a mistake . So please tell me how to study Speeking English . Seriously , it was supre expensive ! I found many colorful fighting airplains , flying in the sky . Then I relized it was just a dream . Hi everone ! ! ! ! ! ! ! I bought two puzzles because te puzzles were on sale . For about an hour we continued walking , visitting many offices , ascending and descending stairs , and opening and closing shutters . I must go to take a shower and make myself beautyful ! Sceneries of destruction broadcasted on television make me sad . I will go to convinience store to make a contribut tomorrow . My boyfriend went to Guangzhou to make clothes for his fashion desigh competition . I was happy becaues I helped her . I lack fhysical activity . However , I think there will be a lot of professional athletes competiting for China . I 'm really sorry that I did n't talk a lot with my frinend . Even though my feeling is not good , I had enjoyed the time with my frined , I dont n't like a person who says , ` Because I am a very busy person , would you do that ? ` But these days I think about my studies and how I can develop my skills in languge quickly all the time , so I 've been trying to find some books that will help me to learn this languge . Acully , I like to study many languges . I am a teacher , I teach chemistry in seninor high school . The text is about well known people and their privat lives which nowadays is often exposed to the public . The author of the text gives us a shocking example about a policman from Los Angeles who used police computers to find out privat information about the stars . Probably the policeman searched the information about the stars in order to sell it to celebrity magazines , and the police database as well as the internet are places where privat information about stars is really easy to find . In Japan , the age of aduldhood is 20 . But now , I do n't need to drink alchohol secretly . But she playied very well . when I used I - pod nano , the bettery of that would be really fast gone but now when I use iPhone , the bettery is longer than it ! I am goint to my family 's at about 17 pm , I think . I want to orvercome those problems , so I registered for a new site . ( Really , although I have registered for it , I have n't used it bcause I thoughtmy PC did n't have a mike . Recently , I was asked which train to take by a middle - aged traveller on platform 15 at Sinagawa station . I worried about taking the TOEIC Brige test tomrrow . So , Do other countries have TOEIC brige tests ? The TOEIC brige test is a primary test . I do n't konw what to say . And tomorrow it will be hotter ! uuuh - where is the rain ? . . . Today , I was fainted at a morning assenbly . To make a friend learning a second laguage is essential . My freind , who will get married in May , and I went shoppint to look for material for her wedding bouquet . We finally found the best flowers , my friend smliled beautifully . I 'm not fimilar with the company . I went to stydy with my friend I went to study with my friend today neare the BTS saladang We have been studying English and Thai for a long time . I was happied to see her today because last wenesday I did not go to stdy with her . I had forgotten whather I had an appointment to study Chinese with her . I was happied because she was not angry at me . Who said sorry noy , I am busy very much at the moment . I was reading your diary already , I see that you have improved . Thank you for reading my journal entry all Japenese and English people , have a nice day . . . . . . . . . . . . I ca n't speak English well but I have to stduy English . When I was walking on campus on the way to pick up my car , a woman stopped me and asked me the way to the Pavollian . Copy or Hommage ? McDonald 's Happyset Set for children is nice for adults too . If you have a coupon from the mail , you can get it cheper . I am preparing for the TOEIC exam . The test is on Novemver 31st This is my first time to write an English daily diary on a webside . KAWASHIMA will be traded to another team in the Plemier League ? I heard West Bromwich Albion FC in the Plemier League made an offer for him , Nxst October I 'll run a marathon . Now , I will parctic it everyday . I 'm still a student in a foreing country ! ! ! ! ! ! I do n't know much vocabrary . I have never written this kind of sentense before so I will try to write it by following my book . I take comfort in watching sitcoms on my labtob . Although it was morning , there were a lot of people , especially forein visitors . We bought some souveniors for our family and friends and afterwards , we went to Tokyo Station to take a bullet train . We returned with a lot of stuff . My neme is Aya . My idea is you are either a victim always affected by ur external environment including people or . . . I went to `` Ryuichi Skamoto 's Piano Solo Tour 2009 `` on Aplil 2 . I promised myself that I write a story here onec a week at least . Summary of plan of a new Microsft operating system Seriosly ! ! Here is the reason why job - hungting in Japan is terribly complicated . Therefore it can be a huge disadvantege in job - hunting not to work at a company right after graduation from university and to be `` KISOTSU `` . - Dream colaboration - He continued , `` This stabucks works in colaboration with Tsutaya ! ! Khabarovsk is a large city in the Russian far east and it takes almost 2 or 3 hours to get to there from Tokyo by airplane . They built cars for competitions and later , in 1947 , also began to make deportive cars . It was so windy that my kite flew vely high . I remeber my first shopping experience on the Internet in 2003 . I had scored some points , and althoug my colleagues helped me , I could n't continue playing . Some would just fulfill thier ( sp ) passions for languages , studying different languages and exploring different countries , cultures , histories , cusine , . . . . . . Then I got 2 tomatoes from my appartment 's owner . Robert 's fale skin & Tayloar ' abs were fantastic . . . . maybe the movie 's promotion stragy . ohter is in charge of the wedding car , Married couple keep it as a memoy for all their lives . People usually thinks marder is absolutely a bad thing . ( I do n't think it makes sanse , 'cause that should n't be a reason to kill people . He was arressed a few days ago . I might be able to improve my English speaking but my grammar is horible . So I want to ask everybady how do you study a foreign language ? I will study more and master it to bocome a more sophistecated ( resourceful ; ) man . TV news about Greece remainds me of the trip . We enjoyed walking along the seashore , eating greece dishes , and cycling aroud the island . It was very windy everyday , and it was cool to swimm in the sea . The preparetion for the presentation this week , household tasks . . . We are living with problems . Work problems , family problems , money problems and stuff that we have to solve . If we can not solve them , we will feel a little bit down . So we need to vent and relax to balance our life . We can go out for a vacation , watch a movie , listen to the music , do some exercice or just have a nice sleep to make ourselves better . Sometimes I do , and I have a lot of ways to relax . everything is possible , please belive in yourself and action now . If it is good , I 'm going to apuire my driver 's license ! I wrote them exploring the Korean - Japanese dictionally very oftenly . Today is Easter ! I think all of us should remmber the Jesus ' death . I 'm just going to get a pirt - time job . But we could visit only two , because I did n't wake up early - _ - ~ ~ ~ as usualy . When my lesson finished , we went to centr of our city and decided to begin from there because there is many of temples and other religious organizations . In a Japanese map , Japan is located in the center of tha world . I do n't know if he acturely meant it , 'cause I am planning to go somewhere for travel after the exams are over . who knows from wich country you come from in order to help me on this website . Just a qustion . I watched Doragon Ball a little while ago . Doragon Ball is an old Japanese animation . I love Doragon Ball . It is not too much to say that I grew up with Goku , vegita , kuririn who are characters in Doragon Ball . The heat wave is espected to continue for a while . I 'm looking foward to the cool fall weather . The thunder was so intense that the windows trembled and car alarms signaled . I will let my shop open in Apirl 1st Maby , it 's time to give up now . Even though it is still late June , the air temprature became 31 degree celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insulance . My duty still continues , when I finish to talking to the boss , I have to go to a motor bike shop to renew my bike insulance . He is a mentor in my life and offered to support me financially when I dicided to study in the Netherlands . Recently he offered me finacial support again . I emaled him this morning about our plans for tomorrow . I dlink heavily ! I want to go abroad in summeeeeer bacation ! ! The demerits of capitalism would be if you lose in the competition , you may not get a bonus so the system is good for winners , but it may not be frendly to loosers . So , in a capitalistic society , there is a need for a safety net so even the loosers can live happily as well as winners . It 's required to live abroad or if you work in campany which requires you to speak English . `` and they ( in their cars ) slept for one onenight . Now , They have been rescued by the Ground Self Difense Force . And finally , the snow was 138cm ( = maximam ) between the 25th and 26th . I 'm boared . . . I miss my friends , but it is hard to meet them for various reasons ; marrige , moving . . . But I thought `` If I do n't say anything , my partner ca n't tell me anything `` , so I said everything I just had thought with courege : ) I dicided to join an English conversation school called `` Rare Job `` today . I appllied again and I succeeded to recontract for more 2 years . My mother maneged to even go skating . I was suprised when I heard this fact . I think `` a couple of `` is a usuful expression when you speak English . Moreover , gasoline , which is fuel for automobiles , is made from fossile fuels such as coal and oil , and the process of making it may also need fire , which casue CO2 . For example , the higher the global temperture is , the higher the sea level will be and as a result , some ilands will sink . Of course people who live on these ilands will have to leave their country . temperture has been increasing . If global warming lasts , our lives will be destoroyed some day , and these effects are mainly caused by driving automobiles . According to recent reseach , we can get more than 80 % of information about other 's characteristics based on looks . This means that when we make jugement counts on appearance , we can know his or her characteristc It 's very simle to understand and full of obvious cases . I like playing video games on Xbox360 and listenig to music . That 's all for my intoroduction . I feel like I do n't want to do anything all day lomg . So openig the window and checking the weather is the first action I do when I wake up . It was nearly terrbile . Sometimes people in forign countries do n't understand it . Tiger Woods has forteen girlfriends . Maybe the action / activity has to be a single , atomic action for the contunuous tense usage and the difficulty is the consideration - is an action is a single or , actually , it is a set of actions . 30 ( Mon ) was a bank _ bankholiday in the UK . Self - introducton Hallo everyone . Especially on the first day , a very sexy and beatuful woman Singer ' IVY ' came She works at cosmetic comfany . I paid for the meals for my freind when I did n't have money to pay for it . I apologied to my freind but she seemed to hate to pay for it . I negotiated with my freind who will pay for the meals next time . We usually call each other very often , sharing all the small ditail of our lives . I think it 's tastey ? ( It seems tasty ) It 's a good thing to learn a new language from a profetional teacher . Akira is a member of Exile , which is Japanese pop music groupe . They are childfood friends and Akira is four years older than Masami . Of courese , I have the original Japanese version . It was my third time and quite intetesting . : ) And what I noticed in the class is that there are many Americans who tend to drive agressively . It 's gon na be rediculously expensive . I talk to my parents on Skype evry sunday night . English instractor murder case Recently in Japan a popular topcs is who youg man killed english teacher three years ago . As you know , the other day a major earthquake hit Japan severly , especially the Kanto area , and a lot people there are facing many difficulties . For example , acording to reports , they suffer from food shortages and ca n't get enough sleep . To be honest , the earthquake has little DIRECT influence on our daily lives . ( Of course , it has many inderect influences on us . This is shown by the fact that I 'm very very worried about people in Kanto , partly becase many of my frieds live there . ) But I 'm suffering a kind of setbak . But at the same time , I also think I manage to brush up my speaking ability to some extent by reading books or listenig to many materials in English . So nowadays I 'm reding a lot of newspapers and books and watching videos or movies in English and thinking how I can get a chance to express myself in English . My hobby is listenig to music and playing bass guitar . For example , I knwo the phrase `` Lehman shock `` , but I do n't understnad how it effected the World Economy and ca n't explain it well . Now I am not a student any longer , so I think I need to have knowlege about these things . Therefore , I borrowed a book called `` To the people who became working peole without understanding economy `` written by Akira Ikegami at library . I hope it hels me gain more knowledge to understand the economy . I exactlly dislike reading books , but I try to do it little by little . I watch it whenever I have free time like afer work and / or on holidays . Write to me , pls ! In a large scale company , it is difficult to evaluate each emplyee 's contoribution to their company . So even if someone could achive his best result , he can not get a bonus because of his company 's loss . I 'm not surprised because the March disaster in Jaspan was broadcast all over the world . Many Japanese artist apper in this one ! ! It would be a Japaese - English word ; it means that ladies - talk about female - particular things . Recentry I have found a need to study English again becasue of my Job . I think it could be a good practice for me but I feel it 's more difucault than before . I try to continue to do this listeninig . PS I love tennis very much so I play it 2 or 3 times a week , and if I find some free time I would search for a tenins movie in Yuotube with a term such as Federor etc . If you like to watch or to play tennnis , pls reply to me hopefully to be my friend ! It 's a fasion magazine in Japan . Some people may say that there are not as many places in their office , where they can somke , as before . Well , it isnt n't something I should think about . I will go to bed earily and prepare for the next day ! ! After the East Earthquake , two manths had passed quickly . One of our deals is to combinate our products with 3rd party products . I want to make friends who are intersted in learning English or who like traveling . I study English at my univercity . Actually I had my first experience with a Pick - Poket . Then I checked all of the pokets but unfortunately could n't find it . In the capital , Ahens , the average temperature in January is 10 . 1 degrees , and in July is 28 . 0 degrees . It was a remakable experience and intersting but I have to go back to japan . As you know well , Japanes is a minor language . And I know it 's very difficult in many aspects , like grammer , 3 different characters , pronunciation , et . . . Also it was so difficult for me to understand what the newscasters were sayin on the TV . This song is famous because of its lylics . Her future self writes back to her 15 year old self saying that it would be all rihgt , I am an adult now but even I still have difficulties but I am doing well so please do n't cry . And y friend tought me about that . It 's hard for children to jugde which is right . In addition , students only put a lot of informaiton into their brains in schools . However , vigorous pictures and unforgettablely vivid sound would be engraved in their minds . Brazil ( Burazil ) , Korea , Iran , and Japan . Proberbly , my speaking skills will be better and better if I more phrases in English . I like this phrase , ' I could eat a horse ! ' it means that I amextremely haungry ! My first dirly . Can we call them or their ancestors ' wild ' , or will they never be categoried as ' wild ' because they 've once been tottaly domesticated ? Now I have started reserch on subjects which I will study next semester . I studied aesthetics at undergraduate level and planned to contine further at postgraduate level and aimed to acquire an MA in that area . According to the professor , 3Ps ( Poverty , Population and Pollution ) are the most discuessed topies in the aid organisations . I can understand it , but these topies are too broad to choose a specific issue to write a dissertation . I , however , However , I didi n't speak and write enough to communicte with people . Because of the big / recent earthqueiqe and tunami that happened in Japan this year , so there is not enough electricity in whole Japan . Many companies in Japan take more holoday to save electricity as usual . Stimulating the subconsious may help your memory , That is very beautifull . Last week I had a bad job ( experience ? ) with one of my supervisers ( bosses ) over some issue . We had a good time at some Izakaya over a couple glases of beer ( called ) chu - hi . I will study at an English language shcool for ten weeks . Do you agree or disagre ? A person should never make an important decision alone . There are many famous people who successed in their fields : like one of the greatest entertainers , Micheal Jackson , or a good Japanese baseball player , Ichiro . Famous successed people surely put in a lot of effort . Given such points , I strongly reccomend you think that way . On the first harf , the Argentinian scored two goals . I Caugh a Cold . I 'm feeling realy bad today . I am so sorry that I can not reply to some of my friends ' e - mails puntuality . Unfortunatly , summer in Russia is not long enough to spend it at home . As you know , Hong Kong is an internation city and the financial hub of Asia . Thus , there are a lot of ppl who have differnt nationalities . Anyway , Hong Kong is located near the ocean so the humidity in Hong Kong is incredable high . I think , due to the high humidity , Hong Kong ppl have great skin ! ! I really appriciate his meeting with me . Many artists live in this area and we can meet them and theri artworks . When I was choosing some food and there was a cute kizs . The boy said to me that one item was not so good , so I should choose another . I chose the one that he reccommend to me . They seemd like westerners . I was moved and appreciated their bravey I 've decided to keep a dialy in English starting today . I was hit by a car and broke my collar bone durling my time in the US , so it 's a little bit hard to use my hand . . . the Instruotor of level 4 is British ! I went to sleep at 9 pm the day before yesterday , and I woke up at 1 am yesteday . . . Today , We shot a musci video . So , it is not that uncorrect . It was about 3 best friends putting message on personel ad for finding boyfriend / girlfriend . Invoice that you added was also witten 1 of it . Of cource , I will go to temple to worship with my family . My town is surrounded by mountains and nature . There are some rivers nearby where I raft and sometimes go fishing with my father . It 's reale peaceful . If you search for the city on a map , you 'll see that it is situated in the Ural mounatains . Some tourists are very dissapoited with this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains , and if you come there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( you can see on the first foto ) I could n't sleep because I whached football games at midnight . So unpleasant - to feel youreself strange , empty . . . I want to feel reflesh . I hung out with my friemds ( today ) . college entrance examnation the college entrance examnation is the most important exam in every chinese student 's life . this is a brief introduction of our country 's college entrance examnation . I need your helep . The first English book I could finish reading throuth was `` Fried Green Tomatoes `` . I could finally tet to know the details of the story and And everyone was quite friendry . We should 've talken beforehand about which foods we would be bringing . Who can help me ? I have a problem with myself ( in my spirit ) . I ca n't escape my past . Those were my bab things such as being belittled because my grades were very bab . during the time it took them to leave home , Bae - chu came constantly to eatting . Light polution They are for advertising , commercial proertyies , offices , factories , streetlights and illuminating sports venues . We should trun off the lights for a little bit sometimes so we can save energy and retatining the ecosystems . So now let 's be responsible and clean the sae . I bought an ambrella for my friend . How wanderful the life is ! About TOIEC I decided to take an examination of TOIEC . I want to improve my English fsst . snd I want to work all over the world . They have a rule that limits the number of foregin players in the team . He gets a title and is proud of himselft . It touched me and I borrowed the album ' ( What 's The Story ) Morning Glory ) from my friend 's firend , then I found that all songs on the album were so wonderful ! I counld n't hear what you said . And , when I got a mail , my heart is very hurt , , , nervus . At that time , I was realy tired and sleepy . A percentage of the audence `` decrees `` the success of all the work that is behind this show . The winners are chosen by an audence , who can vote for his , her favourite singers by a phone call or a text message , with a code number , and by a jury of quality . I am a lazy person , and I often give up on my diclaring . Because they study hard foriegn lungage for various goal . The reslt of self marking was bad . After we knit the things , we sell them on the free market or donate to instirurions . Becuse This culb will recess from December 14th to January 4th of next year . It is the last piece that we need to finish the shape of our blanckt . If I could speak English well , tthen I would n't have to study so much and working in Canada would be easier . The Game and English Cnversation Programs This is my secound time staying here . So I want to change my email addrses Tracy Whiteny , the main character of the story , is a young , beautiful , and intelligent woman working as a computer operator for a bank . Ielt examination in Septembe I would like to learn Engish . Only four days more and I can be back home . Also , I 'm beginning my summer vacation . I made a plan for this vacation . I want to join my cousion 's company and do work for him for free . I also think I can get more experences . He bouht some souveniers for us . I think many Japanese people would n't want to eat a snack with a colar like that . I need background knowledge in order to be able to obtain higher schore of TOEFL . Anyway , I will buy a magazine called ' ' English Journal ' ' , but I do n't know whether it wiil help my background knowredge . His skills are unbelievablly fantastic ! My firiend and I went to Ansan where my friend J lives . We ate a lot of food in a familly restaurant called , `` Vikings `` . I will go to the market and play with ma dgs . I wish to go to america and study aborad in order to get job in the near future . I hope I can find good friends to study langage with each other . Yesterday , I was very busy becuase I had two exams , three classes and two tutoring sessions . When I went home , I just sat in front of the computer to watch a few vedio clips . I hope I am not depressed whatssoever . Yesterday , I wacthed `` The Lion King `` , the famous Disney movie . The blue backet has polka - dots ( on it ) . If I speak English , I would like to visit many contries ! I ca n't express in Englsih what I want to say , so I need to study speaking . And I want to belong to community , then I would like to make firends there . I was so excited beacause I like this brand very much . So he will be preased . In fact , Napels is famous for its pizza . ; D It 's intesresting for me , not only because of the story but also the illustrations are great . Unfortunately , I ca n't put the link of facebook on herebecause the national network control centre has banned it , so I ca n't connect with my friends there . My skin conndition is pretty good and I hardly feel itchy . As one of the menbers here , I will do my best to communicate with others and write more dairies . I think I 'll be suceessful and change my way one day . He was Continental Delegate of the Congress , Governor of Virgina , State Secretary , Vice President of the United States and President of the United States . I would have oftem remembered and dreamed of it . Today I studied about FrinedFeed ( URL This service is very useful for me to serch the information that I got from each service . I 'm waiting crection from everone . But I thought for a long time and I decised I will stay this way You go abroad and meet good friends who have different cultual backgrounds but they make you feel that there is no border among us when it comes to friendships . Are the idioms and slungs which are on the books still used in the world ? If not , how can you learn new idioms and slungs ? At first , I was not so sure about this observation because there was an exception in one person , who works regularly but has the highest operational capabity in the ship ; he can fix almost any mechanical failure which occurs during operation . I just went over to Yokohama where my ancle lives . Finaly we rolled them carefuly , and we 're done ! ! ! Anyway it 's really nice to eat sushi with sutudents . What are the important things in a restaruant ? we should always provide a warmheared to them . comply with customers and give them high quanlity service . As a profrssional . I do n't doubt that we shoud have this as standard . Howz 's everyone 's day going ? I already knew there is no clearable answer I got up dazy to day my bain is so confused because I have not slept enough . I love to travel to unknown or bautiful places . But , I will do my best to overcome all my proplems . I thought `` cash out `` was unbelieve , because nobody withdraws cash in a supermarket in China , but it happens in Australia . We have few factories that make bats or the other baseball equitments , so the bats and gloves , everything except clothes have to be imported . Thenks for reading my bad English diary : ) We parked the car nearby and had to walk to the site because of the traffice control . During the event , we saw a magic show that was perormed by a good - looking yong couple . However , when the midnight came , we could see two firwork shows from her balcony at the same . Today was the frist lesson . But I looked like the most foolish person in the calss . Recentry occurrence We have n't played on playground equipmet for a long time . After that , we climed to the top of the slide . Regarding the meal , some fancy dises were served . But he did n't emphasize the safty of the food . Trimming is important because it is easiear for germs to adhere to the surface of the raw beef . As a result , his restaurtant caused food poisoning and killed four people . The purse was 81RMB . For us , it 's not that expensice since the purse is of high quality . It is actually extream hard work to raise two newborn babies at the same time . I read an article about the stress that an older child expriences once a newborn baby is born . anyway , we have done it , all we need to do now is waitting for feedback from our customer . Camping `` Twilight `` and `` New Moon `` , I parefer Twilight , because it is more romantic to me somehow . I was really excited to see kangkaroos in the wild like this . It 's quite diffrent from Japan . I 'd be grateful if you correct my Enlgish . Alsmost everyone , no matter if they are yong or old , male or female , they are keen on it . It is really a challenging work since there are so many books , at least one milloin . I like reading , so next time , I will spend a lot of time there to broaden my horison . Oh , I remember that I want to inform you that I am going to change my tiemshchedule so I wo n't write so often later . The doctor diagonized that she suffered from hemorrhoids . So she stubbonly killed her desire more than ever . I 'm a sophmore at Hanshin Universty . I 'm a South Korean girl and I 'm very much intersted in English , French , IT and electronics . There are radioactive contaminastion , earthquake and tsunami in Japan . So , I speak English at the school , but I usually speak Swhili in my village because most of my neighbors ( the families of my cowokers ) can not speak English . There have been cases when / where a dead body was disvovered after weeks or months , and this was only because the sthink spread all over the building . [ spread = spreaded ] I wonder if I can get English skills now , even though I 'm over fourty years old . There are so many beautiful structures influenced by Christan and I had harad time to forgetting it . If I want to talk about things that I like , I can talk with others who are intereted in it . Each person has thier own tastes . Here is a vedio clip , from the movie [ The taste of others ] . No doubtly , natural gas industry is the most hopeful industry in China . If you find any mistakes , especally grammer , correct me . : ) Cuz , thier MC and performance was fun ! ! But I can not go for a warking holidy because of my job . So , I have got a lot of chocolete as a birthday present . I like chocolete , but not this day ! ! I hope to study abroad and work oversease . I have n't been writting here not because I am lazy or anything but because I do n't really have time . I played the music `` Silk Road `` composed by Kitaro at the rehearssal . I ca n't speak English well and typing farst . I 'll see the club member of the univercity . I was a part of a brass band when I was an univercity student . Now I 'm a little neverous . My company 's global language is Englis , however I can not speak English well . Some of my classmates plan to go abroad , and some prepare for gratuate school exams . Though I like to read , I amd not really good at English literacy . Hello , friends and teacher . I went to university today to prepar averything before recive the cetificate today . I paid a lot of money there for the picter and my dress and associate old student um . . . Recently my yonger classmate Raquel told me that there was a website which helps people to practice languages that they want to learn . There was a piture of Carl Lewis in a textbook . It cost nerly two hundred dollers to join this party , I got ta say . Hello , my wuderful friends . Do you like to listen to a story before you sleep ? I like it . Today we had violn class . But the theacher keep saying ' hold your violin up ' . Tommaro is the concert ( sort of ) . We 'll play violnin at school library . My brother 's girl friend is Tiwanese . This year , in Sptember . . . . Article 9 of the Japnese constitution states that ( 1 ) in order to aspire sincerely to an international peace based on justice and order , the Japanese people forever renounce war as a sovereign right of the nation and the threat or use of force as means of settling international disputes . Anyway , I had an amezing time because Japanese people would never imagine meeting famous people in person here . After I came back home , I tald the story to my friends who are native English speakers , and they all told me how stupid am I . . . damn . Yesterday evening I snoze several times . I will stady English very hard . Actually I had been suffering from my knee 's pain I got last Decenmber , therefore I asked him some advice about which exercise would be good for my knee 's rehabilitation . He kindly taught me some streching exercises and how to use a machine execise and I did them for a short time . I thanked him very much and decided to go to that gym regurarly . The Healh Minister is trying to convince poeoples of this . Medicine services should be free for everyone , poeoples want to feel safe in the hospital , no matter how much they earn . He is good with childen , never barks ? to people , and always stays by my side when we go outside . Winnie the poohy - My review I do n't know why but I loved him and his friends , Piglet , Rabbit , eyo and so on . The charactors are very cute but not very clever . Yesterday , I went to Yoyogi park , which is located in the cener of Tokyo , and saw the cherry blossoms . Because of tragidal earthquake and Tunami Fukushima nuclear power plant , which supplied energy to Tokyo was dameged . Both its functions but especially its appearance appealed to me . ( Or , `` I was attracted not only to its functions , but also its appearence . `` ) It 's a technique that applies pretty seals or pictures on things with glue , and the things that are worked on are glasses , prastic bottles and wood , etc . . . We could enjoy verdant scenaries anywhere when we stayed there . In 2005 , the black bears surrounding Toyama risidents were a controvercial issue . The lack of food in the moutains would have made them dare to risk their lives by coming near populous regions . Japan won against Arzentina in today 's soccer match . I the enjoyde Chinese lunch , night view and shopping . My room , my colothes , my brother , and so on . . I go to coleage . She shounldn n't . There were a lot of poople waiting to find out if they were one of those successful candidates . I was quite anoied by the important items on the agenda . These lessons are fot the TOEIC test . During the lunch break , I was suprise to see my friend disguise herself as a `` Pokemon `` . I want to hold a halloween party , like how & nbsp ; Amirican students do . I wanne go home ! to make a centence . My job is in the service industry and mercandise management . Anyway , I will ask him to read it because that day is really importent . . Have a good weeken . Recentry , it has become hot . I would like to learn English and I regestered on this site . She is tierd in these days because of daily child care . From thenon , I often went to him to learn English gramer and vocabruary . I used to wear brown contact lense for half a year . Although I know that contats are bad for our eyes , I did n't believe it . And all the families are talking abot it . While I wathed it , I was able to study English and catch spoken English . One day I want to speak engkish like that . becaouse I want to study English more than I want to study finance . So I waited in front of the door , and then I entered it on opening time , so I was the first cutomer today . My classmates from elemantaly school I saw my classmates from elementaly school last night . Besiedes , the cruel corganizers of this test put many difficult and rare English words on it without any hesitation . The lestning comprehension part especially is super difficult . On top of that this test has 200 questions , so if we come across successive difficult questions and we can not propely answer , we would be FUCKIN frustrated . If I can not obtain a high score on the 29th of January , I promise , I will assssinate the organizers of this test . Becuase my PC had some problems , I could n't connect to the internet . I had never been to an American school , and I was impressed with the classroom , corridor and stutends . I was happy they tried to speak Japanese as much as possivle . one is singing a song , one is playing a guiter , one is playing a dram As each Mr . children 's member has good skils , Japanese people have benn inpressed by their music . Ispecially I recomend you a song ' ' HERO ' ' . Now it 's rainny outside and it 's very cold , I really miss the sunshine and the temperature in the south . Open Univesity It ` s my first day to know the Lang - 8 , I tried to use it once and successed . Have a nic day ! I am going to go somewhere for my English and IT skil . I work for a real estate company as a sales maniger . And I like hanging out with my friends and finding good restaurans / bars / shops / etc . I ca n't hear them because it 's a noizy place . After that I danced with a philippine friend . He could dive under the water without breathing for about one minite . This winter is expecially frigid . Do you know the player Ichiro on the Seattle marinners ? When I had online lessons between Japan and Indea before , there was no problem . I 'll play with my frend next Sat . I wotch the news every evening . It ramains to be seen whether it is feasible or not . Tomato sause I made tamato sauce today . If I had had more energy , I would have gone to a fitness clua . I am going to go to a Taiwanese restrant for lunch with a coworker . The reason is clerea ! I ` ve been to Go - kon party when I went to collage , but people say there is something diffrence between student ` s party and office worker ` s one . I think office workers tend to join more seriouly , because they have less chances to meet other people than students have . At last , I went to Utah USA 2years ago to study English & teach Japanaese in an elementaly school . which were some hand cream , body lotion and shoese . It will be hot in this afternoon , so I 'm goinng to clean the bathroom using a high water pressure machine . The good things waiting after that include drinking beer and taking a nap in this confortable weather . I love my new jod very much , and I cherish this chance . The wather has been cold for several days . Of all the sessons , I like spring the best . . Engrish is a funny English expressin by a non native English speaker , especially ( by ) Japanese . ' All your base are blong to us ' ( AYBABTU ) is one of the most famous and popular Engrish expressions especially amang Internet users . They are not very famous in Japan now , but I belive they 're going to be famous soon ! Thanx for reading . Do peaple who live in developed countries and are not materialistic ( ? ) think so ? There are many kinds of food which are not expesive and taste good . So , my next big journy is next summer . And I hope my englisch is n't too bad . So that everyone that reads this can understand what I wanted to say . . . I want to be a goood student and a good girl this year . It makes me very happy to have an Amrican friend named Almir . ^ ^ . My specialy is sculpture . And I must draw [ ? ] every day . I admir them a lot . I 'm a writer for Japanese daily newspapers and magaznes . He taught me ' GO DO ' ( name of a tune ) which means we can do anythig . She passed the entrance exam , although I was surprized . Jacrine 's books describe girls with big troubles , who grow to be independant . He 'd like to play a guiter someday . Thanks for reading my dialy . Plese correct my diary and be my friend ! It is hard to get interpreters if the language is not so commo , for example , Swahili , Nepalese , and so on . . . . . Long interview take almost all day , while short intervie takeonly 30 minutes or 1 hour . I lirerally ran to the nearby supermarket and purchased a steriliser . ( x _ x ; ) It seems the temperatures in Sptember and October will be higher than the average of the previous years . . . It 's becausr of the tuition fee . The coreography started yesterday . I will do my best on my essey . When a woman is stressed she instinctively feels a need to talk about her feelings and all the possibel problems that are associated with her feelings . finding solutios to her problems I 'm worried that recent Japanese youngstars tend to go to various foreign countries and know much about foreign countries , but they know little about Japanese history . For example , I magage to write this sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . I mean if an Egnlish - native speaker is very good at Japanese , is she / he thinking in Japanese first ? Hi , I wanna meke some foreigner friends She also says that I 'm not paying enough attention to French because I started with Japanese this year , and it makes me really anrgy because you have no idea of how much I enjoy studying Japanese . Finaly , I transferred my day off from today to another day . Then I will make pikles Chinenses and eat that them with curry . I belive in your help guys : ) We choiced `` OMIKUJI `` for the fifth time ! ! In Japan , people coice `` OMIKUJI `` to know your fortune for the new year . This book level is Biginner but it is difficult for me . Since most of them are online shopping I hope I 'll recieve the dresses exactly the same as they are posted . This ressesion has hit me pretty hard . I have no experienc of editing and writing , but I want to try . I do n't know this job is really intersting , but I want to try . Today , at last , he recoverd and came back to our house . Most of the time , Spiderman is airboarne with his web , swinging from building to building . . . I 'm going to a bargen sale this weekend . because I have garduate from high school . I 'll go to bed earlly to prepare for tomorrow . I 'm not a Tri - Athereat ! First Dialy I read a book for 30 minutes , I heard Engrish CD for 30 minutes . Rencently I read a book called Christmas in summer . But I want to write , since I decided to write in the daiary every day ! ! I ate a watermelon for lanch for the first time this year . Is it the same in othe countries ? My duty is oversee and analyze ground warter , waste water , exhaust gas , and so on . Compared to other divisions , we have a lot of obertime at the end of month . Today my daugter went back to Okinawa , because she has to work . I wrote a diary becouse I want to practice my English . Yesterday , I had a terrible headach so I took 3 pills of medicine . But if my head aches from a bad headach , I might as well take the medicine to endure it . I babrely found the pharmacy and I got treatment . I wached 90210 I watched the final episode of the first seoson of 90210 . I 'm looking forward to watching the next seoson . They were very healty . Extrim , dirty and fun ! I ca n't tell whether it 's going to be the same in the case of Japan ( hault of growth in economy ) , but it 's sure that the economy of Korea depends on the flow of the real estate market . Before entering university , I didn n't worry about my writing because there were not many changes to write one 's opinion at school under the Korean education system . Today I studied phisics for an exam . In the libraly . I 'm very happy because there are many people who have helped on my way to sucess . firstly , I want to say thank you to my good friens , my classmates and many other people . They encouraged me when I fell and supportde me when I made decisions . They gave me a lot of powers and made me confident as I was costantly moving forward . Because they hurt me , I was motivated to continuous efforts until I became an exellent and sucessful person . So , from my career standpoint , I thank everyone I 've been in contact with , no matter if they helpde me or hurt me . What sall I grow ? I was given some onisons and potates . I plan to grow sommer vegetables this sommer . Are there goyas in other contry ? and I found one of black cars hung plags on its bonnet . The organization that made the JLPT does n't pubish the test questions right after the test . However , a lot of text books for preparating for the JLPT have been released . I 'm looking foward to it . Although I 've had an ID in lang - 8 for a long time , I always have no time to wirte a diary entry . Most students are under stression like me . Thist Saturday it was my first day in college . She was nice and cooporation . The lecture was about how to write a good essay , and I have an assiment to write and I need you to help me to improve my english leval . I entried university this summer . After that , I can colm down . They are very big and are stong . I went to the movies with my hasband to a thiater near my home . I felt realI action . there was something in front of my eyes . becouse I payed 1800 yen plus an extra 300yen for 3D . It was cheaper than other similar courses , because I had a proffesioal ? invitation . Help me to love learning Enlish again ! How can I get rid of these bad feelings , how can I learn to love using Enlish joyfully again , like I did a year ago ? They do n't help other pepole . She is studing Japanese . But the weather is cold and graysh . Tom Waits is one of my favourite singars . it was my frist time watching a game . Good evening erveryone . I will go to Shodou scholl now . I am soory , I ca n't explain well . I have troble with the language and enviroment . . . . . I was surprised at his thoght I came accros the Japanese speaking Japanese . If it 's true , I think the Norwaygian goverment has to review their laws . So she asked me , `` How do you say in English , black framed glasses are popular in Japan ? `` Although , I know she is nervous about speaking English , I have no idea why she wants to know that exression as the first thing ! There are 6 hours to go to until the biggining of the match . I answered two phone calls from my clients regarding a big coontract , which could feed me for a couple of months . Today , the weather is warm and confortable . Following that , we played backetball together . How to condjugating on Lang8 ! ! Everyone danced happilly . After he left home , my daughter and I talkded a lot . When I get older I want to travel to Canada becasuse I would like to know the country where I hope to spend th rest of my life . If I see that Canada offers the opportunities that everybody says it offers , then I am going to go back to to my country and apply for a permanent resident . . This is deadful for me because I must write treatises in English . So we are going to buy some vegitables and meat for dinner now . she was angey at the TV , and she went to bed angry . It is the central city of an island which is northernmore place in Japan , Hokkaido . 2 days ago , I wrote a jurnal about whale hanting . My jurnal asserted `` Australian ways of protesting against Japan are very impolete and rough `` . Surely , if Japanese people try to change something or protest against something , we whould only read a note of protest and shout something a few times in front of the oponent 's organization . lol Of course , the opponent 's organizationwo n't change their atittude orway of thinking in any case . Japanese people should watch other countries ' ways of protesting and their passons more . I am sad beacause my sister deleted the program for the keyboard I use to write in Korean ! . It reminded me that I 've seen a bear - shaped keychain in a shopping center neayby my home . So , I thouogt it was a girl ! I think she made me a litte better looking . I know that bad thigs can occur all at once . From September 22 to September 24 , I went to Hokkaido for a trip with the friens of the university . My teacher gave me until May 4 to hand in an essasy . Finally , if you decide to buy a dining table mat , what kind of style you perfer , a table mat that would put you in a good mood or a table mat that would open your appetite ? long long ago I stadyed english , but I still remenber a little . My todays today is designing . Since we got two new workers last Octover , the opportunities I got to design web sites decreased sharply . So a pesron who is good at everyting has to do the remaining things . But these kinds of expressions are not fammilar to me . I 'm using a nicotinic patch . When I checked my diary this morning , the freind who I met for the first time had already corrected it . I appreciate that all freinds support me . S . I want to use more precise complex sntences . I read a new gide book for the JLPT . It is sure that the test will focus more on comunicate ability than grammar . I have not been able to writte an entry or correct other entries althogh I 've sometimes visited this site ! The reason why is that I 've probably caught the Rubbela virus or another strong virus ! ! ( Oh my gosh ! ) 39 degrees ! ! You know , in Japan , the tempreture is still high and the sun supported by the summer attacks us , but at least for me , it was such a cool day , or , if anything , a cold day ^ ^ That 's rediculous . Today I asked him to help me coreect my studying abroad SOP and I told him I need it tomorrow , that meant I wanted him to accompany me , but after correcting my SOP he rushed home and told me `` I have a couple of things to do before I go to bed `` . In the beginning , I supposed that we had interested in each other , because he gave his phone munber to me and said `` If you want to call me , call me anytime `` , and asked me to take MRT home togther with him . Yesterday , I attended a perty from the company where I 'm going to start working this spring . Another student and I will start working for that company and we are going to be in charge of global markething . Then , I was puzzled because my English speaking , listeng and writing skills are poor . It has already been about three weeks since I registed on this site . A Suprising event A officcer who was taking care of international students said that he could help me get acception as soon as possible . Thank you guys , Thank you for suport me ! ! ! Is it called ' being selfish ' in Englsih ? You ca n't understand what I 'm talking about from these sentense . . . We can obtain sooo many things from that . Although they cherished the notion of life - long emproyment and the idea that the older you are , the more likely you are to get a chance of promotion , we do not seem to have these kind of thoughts at all . We know that we have no gurantee in a campany . Hellow all my friends . We should never foget those who are sad about their important family member ' s Of cource I want to be glad that they are coming back home safely with all of them . with everyone else ? But at the same time , I never want to want foget about all of people lost in the war of Iraq . I cought a cold . Maybe because I was around lots of people yesterday . I can read simple sentences now , but I ca n't realy understnad normal passages and books . Today he took me to a restaurent as gratitude for the present . He thoght that I rarely ate meet ( beef ) because I live by myself . Father is going to Tochigi for buisiness tomorrow . If I eat a hanburger slowly , chewing it well and tasing it , I must regret having it . The production is starded after ordering , so I have to wait for another month befor the product arrives . She was so tonedeff tunethat I could n't remember what the song title was . The mettress of my bed sinks too much . The throne in question was a graceful sight : it captivated the eye of a beholder with beautiful , hypnotic silver filigraine decorations . Facinated with Lord of the Flies Nearly almost all my friends have it and they all recomended getting it . Because I did n't have enoght money with me at the time . . Today 's exammers were about 60 students of an elementerary school , a junior high school , a high school and an university . because the Korean team played so fantasic . There is no need to mention that when your father is getting married you ( as the most beloved and wise of all cock - owners he has ever been acquainted with ) instantly become the one who has to put up with all the fits of pre - marriagal neurosis ( as well as being an unlucky witness of all this stuff ) , take care of all the sodding preparations ( `` we need to do a great deal of work to make this day really special `` , Goddamn it ! ) and just try not to go mad or turn into a `` bridesmaid bitch `` . fankly I do n't like these things . . . `` interested in wome . . . `` Today I have found out about a postgaduated programm . But I disided not to surrender and for one month ( it 's time I have before the interview ) to make my English as good as I can . And one step of my plan is everyday writining at Lang - 8 . What should I do frist ? I like coocking Korean food . ^ ^ im a high skool student who 's tryin to learn english n been stayin in aus for nealy 2 years so far . firstly I will just write about my self , I am 18 years old now n terning 19 in a few months and plan to go to uni in jap after leaving skool where im now goin in aus . I 'd really appreciate if someone taught me here coz honestly I was totally lost at how I could improve my writting skills , there r no ways to impove my writing skills around me . btw , it 's already been a half hour since I started writing this lol im a very slow writter obviouly . well wat should I start wittin ? I reckon there is nothing like japan in the world , you 'd probably understand if u have the oppotunity to go visit japan ^ ^ What a lovely pharase ! A metophor expression . / A metaphor . After we fill half of the pot up , the rasing of the water also become obscure . Nobody can sensitively recognize the rasing , and then suddenly this pot becomes `` unbalanced . `` This kind of corns , in other owrds , many intermediate Japanese students will start thinking `` Is mastering English from 30 years old impossible ? `` , `` Probably I do n't have a talent for language `` ( ? ) `` I do n't think my English is improving , It 's waste of time and money , I gave up . `` I tried to use a metophor in this journal . On the way home , I bought seven bottles of maple syrup and three boxes of maple coockie at a supermarket . Are you accually using it ? Anyway , I think it 's a good idea for revising words , not byt learning new words in my opinion . It 's also brilliant for learning KANJI CHARACTERS < 3 xD . I have to stay here until tommorrow morning . The othre day , I went to a musical instrument shop and bought a saxophone . This morning , homestay father took me and my roommate to school , and taught us how to catch the bus go to school and back home , and he is interduction a christian church to us . There is beautiful scenery , modern buildngs , and animals which I have never seen before . I sent you a sweeeeet present ! From your cazy sister , Haruna Like my mum and dad always love me depite all of my imperfections `` When you have a duaghter just like you , then you can understand how I feel about you `` . After that , the girls preparad dinner . It was very dilicious . I didi n't know which course was suitable for me , so I selected the basic TOEIC course . correct me if nessesary . I am Lena , 15 years old . Well , I like swimming , watching TV and different movies , listening to music , watching foorball , hanging out with friends , etc . This is Oribe ware , one of Japan 's famous potterries . It has a strabge design and beautiful green glaze on it . When I drink a cup of cogffe with this , I am very relaxed . Last night one my good friend and I decided to make an air baloon out of paper . And we had a baloon with a diameter of one meter . We had a flat paper wich turned into a big ball ! Today after luch thought : `` I would like something else . . Sory , just a question . Maybe because I lack a sence of security , some people might rely on their closest friends , their families or their boyfriends very much , but for me , I rely on my home a lot . Even if I get a boyfirend , I will choose to live alone , because even if we break up , at least I have my home , and wo n't end up without a boyfriend and no place to live , that would make me feel like a loser . I have n't contanted this for a long time contant Becase of not enough time and the low intenet speed in I went to my grandmom 's home with my parents today . My grandmom is living in a nursing home now . and my grandmom will be joining the wedding party . Due to tayhoon I do n't have class in the morning u know a thyhoon is coming to japan . I can even atach photo of these buildings . ) But anyway I really want to visit other countries , and with a great pleasure I would like to meet foreign coultures . I exersise every night before going bed . In can by easily demonstrated by comparing different Asian communities , such as the Man ligneage or the Asian - American community . To sum up , this kind of Asian community seems to be mainly the result of a Wesern idea . Neither do I feel isolently nor do I feel inferior . `` Reading thousands of books is not equal to traveling thousands of miles ; But traveling thoudands of miles can not beat communicae with more people . `` by Yu Minhong , the chairman of Xindongfang . Modern cities have been planned as business place , that is , the main ideia is not have people living there . Today , I bought a bottle of rice wine , `` Fuyu no sanpo `` , from the nearest supermaket . I think this bottle is showing chilliness and silentness , and its naming is very suitable for this bottle . The only thing you want to do is this shit `` , and because the little girl did n't have the force to fight with this sadic ogre named Kabi the barbarian , she had to do all the things he said . Every moring I meet him on my way to school , so we quickly became good friends . If we asked for directions , they brought us there in peroson . So , we went to a hot spring which took thirteen mimutes by car from our house . We oftern go there because it 's equipped with not only hot springs , but a heated indoor pool , too . I heard it was the same in China or in some of Europian countries I have problems with choising new jeans . It 's so ironic - low - waist fashion comes to Siberia from warm contries , but everyone just accepts it despite cold and long winters in Siberia . I cound n't believe it , but there it was in black and white , as clear as it could be . Please look forward to my dialy . She is working in a kingdergarten as a doctor . He faced about one thousand and nin challenges and finally , he met a person who was willing to buy his recipes . But I rearise that I can access it with ease . I wish everybody a pleasant jourary and a perfect future . Then , we climp up the mountain . If it clears tomorrow morning , I plan to snowbording with friends . Thanks to lang - 8 , I am so happy becasue I could make some new friends on this site . I think next year will be more fruitfull . At the same time I am trying to be good maan , so I can maintain positive relationships with others . The firsr thing which came to my mind was , `` Why ? `` The second happiest is Noerth Korea and , the third is Cuba . It is very intresting to try teaching ! Then next week on Tuesday we will act on film about our school life . Before this economic crisis began last September , a lot of workers had come to London from other EU countries ( for example , Pohland ) . However , the UK , as well as another country are suffering financially , threfore it is very difficult for foreigners to get a job . To tell the truth , I have hated studying foriegn languages . But there are few clowd today ! We used a sepalated room so going together did n't make sense . The main reason that I came here is that I want to get a letter of recommandation from my professor but also I want to take a rest with my family . I do n't konw . I will make a presation about a city : Hong Kong . . . and read a scary story . . . . Because there were just two banana sautes with powder suger , no ice cream , no fresh cream . . . The purpose of this trip is to make inventroy clearance , to report the settlement of account in Augusut to the board members , and to take part in a conference . It may be because of getting nerverous or excited , however , I do n't know why . Please tell me the diffrence and situations between `` I will miss you . `` and `` I 'm going to miss you . `` In fact , in high school my scores in English were good or Exellent , especially in structure , but not so well in reading and writing . When I entered university and met different students , I realized acully how my language needs to be improved . I 'm a medical student and I find difficulty in understanding some terminology , particularily at begning of my first year , even though I got a 6 on the IETS exam ! Now my medical terminology is good , but I need to improve my general language beacuase I still ca n't read long stories or novels in English . I do n't like having to open the dictionary each time to understand a word . Then , I tryed to introduce myseelf . I majored in International Reralitons . Today it 's windly . I was so dissapointed . . Day by day I feel the autum getting deeper . I love wathing baseball games on TV and English football premier league . Next month , I am going to go to Turky with my girlfriend . Plese help me to learn English This is the first time I have used this websit with the help of my colleague . Just like in every other country , McDonald 's restarutant can be seen here and there in Japan . Many Japanese people do n't think that McDonalds ' hamburger is yummy . As proof of that , here is the result of a questionnaire about hamaburger shops . According to this article , many Japanese think that the most tasty hamburger cahin is Mosburger , a Japanese hamburger chain . His sudden carrer change was very amazing news in Japanese Economic circles . I was VERY intesting when I was at his house . offense to Aristolte , but in my four years at ShanDong University , I have come to find that passion is a key ingrediant of the study and Academic life was facinating . What I remenber above all was always bebing It was exhalarating , intimidating , sometimes even discouging , but always challenging . Let 's appriate it and look Refusion . It is always difficult to refuse a date , because I do n't want to look all concited but I really do n't want to go out when it is not the with the right person . I had a lot of experionces like this and I realized that male and female ca n't be close friends . an overcourt is 3000yen , and a hair cut is 1000yen . How do we stop deflaction ? My frinend So , I used this opportunity , I met my friend who is a techer at a university . I think that parents have to love thier children . I didn ` t think it would be a love story and I was sure it was a typical modern book about notning . I 'm tiried I feel a littel tired , I do n't know why though . Although I want to believe this world wont enter iinto war , I feel something worse ( coming ) . It may not be delicious to foreigners , but if you have the chance to visit Korea I recommand you try this food . I mean those who were previously diagnosed and require asistance no longer require asistance at this time or those who were diagnosed and now require asistance . I know it 's mean for me to say sonething bad about someone behind their back . Recently I went to a game shope to find some new games . This Thursday , I will go to Tokyo to atendant a ceremony of the company that I will enter next year . I have been living in a student accomodation for about three years . Then it would not make ( any ) sence for me to stay in the Netherlands . Therefore I like this accomodation . One of my friends did not ( get to ) know his neighbor [ UK English ] for six months . So we would like to make the accomodation comfortable for the newcomers . I 'm learning to speak English in shcool becase I studied very hard . . . . I 'm afrard of swine influenza . I want to play sports occasionary , but do n't want to belong to a sports club because it is too hard for me to participate a lot of days . I really wanted to buy it , so I orderd it on the internet soon after I watched the TV program . I skimped on dinner yeaterday . and I met a lot of forign students . But I had a launguage problem . Recentry , I made many types of bread . I intend to teach chinses around the world one day so I need to enhance my teaching ability . People graually become to stay at home in winter . I thnik the weather is a very important factor that influnet people . Before the food is done , my husband put pre - baked bread into the oven so that we could have it with the casserole . You remember those days ; when your mother knit a sweater in the dimp light for you , or waited for you until midnight because you stayed out late and she wanted to make sure you came home . You know that there are many memories like that . In the futhre , I might experience the new world with the one . Expressing my appreciation - A useful hiaragana website . I always appriciate your corrections to my journals . Why should people get TOEIC sroce ? Beacuse my birthday is in the summer , it means I 'm gining to get older ? I have native speakers in my school but I 'm ashemed to talk to them . It 's a pen seta and culture gift certificates ! ! ! The intersting in reading It is bad news for evryone . Initially , I was suposed to wake up at eight o ' clock and Monday mornig A tutle lives a long life . Every time I have to write an English report , I can not help but use an online transelation application . A phrase I like is : `` knowledge is power `` and Englisf is the most useful power right now ; there are hundreds of millions of Englisf speakers . It 's no problem if the new students have a good parsonality . We went to an Indian restraunt . Their atmoresphere is high quality . Anyway , I know I still have a lot of opportunities to improve my writting skills . This is my first dialy on Lang - 8 . Now I major in english literature in univercity . Mubark has been the priesdent of Egypt for 30 years . They want to see the fall of Mubark . Allah will help the peole of Egypt . but the people of Egypt ca n't , because their goverment has blocked all Internet access . My Favorite Sports There are many beautful clothes , dance movements in the film . Please do n't hesitate to correst my English . When the earthquake happend , he was in a mansion . I do n't understant it myself ^ ^ ; This season , a lot of colleages held school festivals . In my colleage , I sold Adobo . It 's a Filliphin food . The goods were from developping countries . my first dialy I 'm studying English evey day . It 's because I 'll go to Tronto in Canada in April on a working holidday ! Eventually , I 'd like to get an interpriter license . But now , I 'm not good at Engrish . Today , I tried to inatall EVERNOTE on my PC . It seems convinient for me . I definitely recomend this book to every child , but if it happend that some adult had not read it they should read this one . I got up pretty eary this morning . Although nobody was walking arong the dark street , I enjoyed walking briskly for about 30 minutes . Looking forward to the future , I can see this is gon to be something I have n't fully grasped . I got the feeling that every skaters performed very well and they shawed their high techniques under all that pressures , many expectatons . Mao Asada , the 19 year old captured the audience by completing a tripple axcel succcessfully . I like her perfoamnace in the short program . I spend everyday just attending classes , doing homeworks hanging out with my friends on holidays . Even by doing so , it might be difficult to attain somethig special , but what is important is to try to have an awareenss of issues and start a volunteering Barcelona was a very exicting city for me . Last weakend , I went to watch the rugby games . Thank you for reading my jouornal In the afternoon we played a difficult game . Oh it was carrzy , I could not understand everything that the teacher said about the questions and the answer was also difficult but it was interesting . Recetntly , an accident happend . Japanese famous ex - F1 driver Katayama Ukyou climbed the mountain while trainning , for he has been planning to climb the highest mountain in the Antarctic ( south pole continent ) . They camped at the middle hight and a powerfful gust peffed off their tents . He said at the interview that he will withdrow for at least one year . The public veiwing is an event where you cheer for the team through a huge television screen with a crouwds . It was a good game for Japan , but I think that there was a substantial diference between Japan and the Netherlands . Today , I was required to go to school puntually and behavior myself well . I do n't konw why we 're supposed to take classes in shch a marvelous summer vacation , which should have been full of joy , laughter , and merriment . It seems that everything in my life jsut enveloped in terrible atmosphere . Alought it sounds a little pessimistic and overstated , what I really want to say is learning is a lifetime and happy activity rather than pushing us to the limit with our mood depressed . So I suppose we should cut down on the time we spend at dest . Improving our knowledge by practicing it instead of talk about it thoretically is the most significant , positive , adn effective in our life , in my opinion . Today 's menu is omrice ! I should be more opotimistic . japanes food is popular in the Europe , US and China those days . And also I push the wrong bottouns on the keyboard , even when I write in Italian , my native langueage xD uh , it 's not exatly right xD but I 'm trying , but I 'm a self - thaght girl ( ok , I think this expression is uncorrect ) and I 'm actually still at the ' HI , MY NAME IS ELENA ' - things like that . Humm . . . I went to watch baseballpark with my friend a the ballpark . A Baseballpark that has chicken and beer is like a paradise to me . I think meeting is a good opotunity to grow by myself , so I must make good use of this meeting for my growth . It 's summer in Japan , so it 's very hot and humit . I went to a cell phone shop today becouse I lost the one I had before in Australia . I 'm looking foreward to seeing my friends . The College English Test 's listening comprehension is difficlut , but this is not the worst . The dentist said it is not serious but I should brush my teeth in the morning and at night and seldom eat somthing acidic or spicy . My roommate Fengyuan Zhu or ZHU Fengyuan have gone to beijing . Tommorow is my last workday , because I told my boss I would be resigning from the job . So I sometimes have a chance to talk to custmers in English , and transfered docements from English to Jpansese . I thik it is good practice for improving my English , but I ca n't tolerate my boss 's arrogance . After finisihg work tomorrow , I want to try to get a new job ! Then my English teacher said to me . `` Please call your roommate and tell her do n't lose this test . `` As soon as my English teacher finshed talking , I got my telephone . The coler is good , but my bangs are too short ! is a neccessary class in our school . Next , our school life wll be happier . classes are neccessary because of the reasons stated above . If you understand the humor , you could be from Osakan . I know that I would n't have known how to read words , how to count the numbers and I would n't even have heard about the internet if I were in a severe poverty with unenlightened parents who are deing because of a lack of food . If I were alive around my age luckily , my life would have been beared harted towards the indiscriminate world . I belive that people dominate environments , but at the same time , I also believe in the fact that environments can change people . The survey of that most people in Africa live with less than a dallor proves it too . I am going to bring some gifts for her , do you have any recomendations ? In spite of this stuation , I 'm spending the day as usual . Accidently , I 'm going to watch hockey for the second time in a rowsinceI 'll be watching sledge hockey at the Paralympics tomorrow . Yet , the frequent descent of the bears caused some serious problems such as causing some casualities . I really want to do lots of valuable things in the future , so I may have to do regular excersice for it . But , I enjoy the festival ` s atomosphere . It is so conveniet for me . I already wathched `` Pursuit of happiness `` and No matter what , I feel warm and confortable . I wo n't sleep ! ! I 'm also learning Portugeuse . They taugh me a little Portogeuse when I showed interest in Brazil . Today I have decided to visit Brazl in 2016 because Olympic 2016 will be held held in Brazil . He is only 28 years old , but is at risk for hypertention and obesity . When I use English very ofhen , I become better at speaking . I am worri . I recived private request to talk . `` If someone does n't know the history , he must see this history personaly . `` Abvout 4 months have passed siince I came to Aus . For this week I am staying with another fost family because my host family are in Bali for 2 weeks . It 's used to explain hierarchical orgnizations that separate software developers from end users . But we have never forgotton each other . Kameta is from Kameta , which means tortoise . Japanese sometimes name their pets from their soecies . She has shortn her hair . I watched a movie yeaterday . It was my firest time to go to the Tokyo Dome . You can enjoy studying and learn some slungs and daily conversation which you ca n't learn from textbooks or class . If you can get Japanese ones , you can learn Japanese more efficiently by comperaring with this site . So , I bought a book called , `` Basic Grammar in Use `` wirtten by Raymond Murphy and published by Cambridge University Press . `` Basic Grammar in Use `` is an American English Grammar Book and `` Essential Grammar in Use `` is a British Englsih Grammar Book . I appricate this site ! Recentry many people have their own blogs and some of them are open to everyone to communicate with each other ; just imagine it 's like a kind of class room or something . I hope they will find an awesome drummer , because I like the band because of their drumms . There were some students who tried to remember , and then four of five studens were given the gift . I really like to sing this song when I watch the film with tittlw `` THE LORD OF STUDY `` made in Korea . the Japanses lived during the Edo era . Do your countrie 's people know where Korea is ? Teribble ! ! ! ! ! I have varius memories . . . . I 've read twelve books by Agaths Christie so far . We are going to have a gyouza party tonight . I 'm gon na cook gyouza for 6 people . So she bought me clothes and a pair of shose . Afterward we went to get coffe and we ate a big cake . When his father got ill and was dying , he called his son to his bedside and said aginst his will , `` I 'll say goodbye to the present life very soon . 3 days ago I took a math test , today philosophy , monday I 'll have history , the day after English , then Phisics and then science and then phisics AGAIN ! I 'll try to write some answers here to check my orrible grammar < < ' ' ' Maybe becouse of our new roommate , or maybe not . It is good for me to make a new habit , meet some new friends through here , creat some ideas . . . I am trying to creat something new . I 'm woriking for a bank now and it is ok . It is a system whereby salary and jop position rise in accordance with age and length of service . For exmaple , in a traditional Japanese company , things like letting a young person make a big deal almost never happens , no matter how brilliant he / she is . 20 miniutes later I had to transfer to line number 3 . During my teens , I always listened to thier albums . Today , I bought a magazine in a convinience store that was on my way home . I think fashon is used to show up my character . I do n't know much about that student . ( The only thing I konw is that she is one year younger than me . ) This company holds a composition compositon . ( Normally it 's 1800 yan ) ( $ 1 = 90 yen ) I went to see `` Inglourious Basterds `` today . What will happend in the future ? I look forward to it . becouse some of my friends can not speak Chinese very well I also started to watch foregin films I thought it was weired because there is priority among the issue that are reported . That is to say , I do n't think it is appropriate to report all these issues about cheating . Similally in Japan , TV and news paper do n't tell the really important news and avoid the topics that threating the power . movies , novels , and fairy tales talk about good triumping over evil . I 'm Japanise , so I support Japan . I wo n't return to face the difficulty , but these days , my mood is so down , I dont n't have a reason . One of my cats loves to sleep nere my PC . It is so amaging . I recomend it ! Thank you for reding my diary ! The job is very instersting and unique . I want to study design in a foreign country in the furture . For example , good restaurants , beatiful sightseeing places and so on ! Of the Japanese artists , I like Sina Ringo ( toukyoujihen ) , Bump of Chicken , and Beat Crusaders . If you get sad , whose songs would you recomend to me when I get sad ? When I 'm stuck in my relationship probrems , Brity Spears songs make me happy ! ! ! But I will be a suppoeter of Arsenal from now on . However , the Japanese parties are defferent from the Europian ones . After I arrived in Narita airpot , I sent some of my baggage by delivery service . They are older than me by 9 years and they are marriaged . Ummm , it 's intersting . When I arrived at the park , I saw the monkey . Since I wanted to take some pictures of the monkey , I touched the little monkey 's head as quickly as the monkey back haed and bite me arm . Today , in English class , we thought of why people attend college or universiry . In my opinion - increasing demand of human resourses with specific knowledge - if we would like to succeed in our career , we should be well - rounded people who have a practical and expertise background . They must be required to submit a graduation thesis when they start job huntting . I knew it after caming back from NZ , I really prefer living in country other than Japan . . I met some students who went back to thier country after Voluntary Service Overseas . It 's a vountary service to teach science with English to African middle school students . ) `` I called the center , Thay told me So , today , I went to the center for a phtsical examination . So , English is essencial for me to communicate with them . I 'm afraid of misstake . I discovered that the cusion of the seat fell in . Then , I remembered that the foreiner was seated alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speak English . Because the cusion of my seat is so bad `` I can fix korea entries . There are some many analisis tools . I am a single wroking mother . So , to avoid the feeling of loneliness , I am getting started sutdying English ! I realize that many people study other languages hard as I crrect and write journal entries in ' Lang - 8 ' . Let 's start by studying English and chinese ! im not japenses ! ! Allthough I 'd tried to make a good first impression it all collapsed in a second . I carried him in my arms and looked aroud to find his master . People write New Year 's cards called `` nengazyou `` in Japan . Nengazyou is a kind of unique card I have finished writing nengazyou today . It 's fun to get nengazyou from my friends and former teachers . The level of my English became better , but its just when I am talking wiyh people who are not from UK or USA . The siniors sometimes link daily things to technical terms . ( I know ! ) The wing was eleborate and delicate so it seemed there was no strap on her shoulder , and it looked real . Following her downstairs , I was preety sure that she was wearing platform shoes with high transparent soles , because she looked like she was floating several centimeters high above the ground . I found ' ' osechi ' ' , which is a Japanese typical dish , being sold in a convinience store . These days , I feel unhuppy ! So she and her husband have to fix a lot of things like the celling , wall and floor . What a coinsident ! ! At first , I thought it was just an evacuation training exercise but I soon found it was n't . I smelled smoke as it filled up the building and saw dark grey smoke rising from the buckside of our building from the window near reception . Accidentaly , this was the last day of one of our classmates who came from Sweden . I was tierd , becouse there are always so many peapole in ikebukuro . She 's so brave to try to break down the barriers in the persuit of love even breaking the rule set by god . Recentry , I 've been muscle training . Today , I went to Shisuoka airport by bicycle . If you kill someone , you will become a muder regardless of wether you are in lawful society or not . However , if you kill someone in a war , it is likly that you would become a hero as you kill more . I just want to say hallo . It 's my first day using this epoch - making service , which my ex colleague recommneded this Sunday . I used to work for one of the translatuion / interpreting service agencies in Tokyo as a sales representative , and heard many of our Japanese clients wanted the service called `` Check by Native , `` especially in cases where they had to present something very important in front of their clients , using memos ( ppt . ) which they wrote in English . Like in the first case where you just want to know the `` facts , `` often seen in daily interaction in business , it does n't matter whether a native or non native Englsih speaker wrote the passage . But in other cases like in a restaurant , `` feeling `` has much to do with your acion . It 's interesting that the toughest subjest for me is writing , which is totally different from what the teacher lead us to believe . I tried to find the anwer to that sentence for a long time . The first answer is `` was `` and the last anwer I do n't know because it is diffical for me to understand and also I am too lazy to read the book . One thing was very unbelivable . During the two days of competitions , the cheer leading squads performances of each cllege ( Such as China , a university is make up of many colleges ) attracted us the most . It was also wonderful that some college girls dressed in bikili ! Because some colleges had professional athletes , our college did n't get one any gold medal but just only a few of copper medals . But it does n't matter , we all enjoyed the spirit of striver ! Therefore , I believe that we need artificial sweetners as a substitute of sugar . But I was not able to let my fingers move on the piano keyborads well . then my friend , ( she is japanese , of caurse . ) we went to wp to gather woth my cjs friends ! I 'm phisically getting weak . Now , I 'm drinking a lot of sport drinks such as Gatorede . I haerd that the foregin companies ' turnover is big . I have attended someone 's ferewell party every weeks in September . I am gon to write this for tomorrow 's exam . Secound , I often see people smiling despite their difficulties . She fonicated with a friend of mine who came out of the closet , so you can say that was adultry and infidelty . She got groped ( felt up ) on the train , which made her androphobia . . . I took a nap for fifteen minutes before leving home for my part - time job . She doesn ' t have confidence about English , but she knows many verbs and conjuctions . To my surprise , there were no stories nor paragrafhs on her textbook but conjuctions and exercises . Thank you for yor cooperation . It was ouwned by chiken egg farmers . It can match with everything so I do n't think it has a charecter of its own . she ` s left olny I stay here I ` m lonly but I don ` t know whant do I do But if you finish your plate of food , the amout of vegetables and fuits you have eaten will be huge `` Sometimes I can not underestand you . Amusement park has disappeard . That park resemle the Teletubbies hill . so I hope that I will be wrting one correct sentence . I took my yongest son to the hospital because he had a fever for 5 days . I went shopping Yuraucho last Saturday despite inclement ( bad ? ) weather . I was thinking my budget for them would be whithin ten thousand yen . After that I lost my confidence in speakin English . I hope my engish speech skills will be great like an American ! At 11 : 00 , I always get out to eat , because I 'm very foolish . I do n't konw how to cook ! Then I searched on the Internet , and I found some information that said the strings of a guitar need to be replaced evrey three months . audience : There were many people in the audinces at the concert so the musician was nurvous . My hobby is watching dramas and collecting lots of hilarious . jorks . If you know any funny jorks , please tell me ! ! I 'm a new member , and I would like to improve my writing skils . I plan on taking the Ielts exam , and I want to get 5 . 5 to enter the college . I really feel lost and confused , because I do n't know how to improve my writing skills . I know that they say practes and try to write and to show it to someone who is fluent in English unfortunetly , these people are not immediately avilabel to me . For a few minets , I was brosing the internet , and I found your website . I hope I find what I 'm looking for . For example , the topic was `` How do movies or television infuluence people 's behavior ? In his correction , he used the sentence `` As can easily be seen , watching a movie and learninf about worldwide issues influenced me to make a donation . `` At the same time as this party , the ' LADY GAGA ' concert was held at this stdium ! ! His car skidded and overtuned . Is it wrong if I say `` Let 's get started `` , ommiting the `` it `` ? . If it were not Japan , the superioer would be sued . When I was a student , I spent a lot of monet on music . It said there is a still caste ( ? ) system in certain areas in India . A young woman was killed by her mother because she was in love with a man who has a lower caste than hers . This sounds pretty much ridiculous ( please stop putting - between your words . ) and unacceptable in this socitey . I want to spesk more English ! ! It looks very futurish Okinawa was warmer than Tokyo , becouse of its location . This time , the airplane was deleyed by 2 hours due to maintenance . It 's on the way to mya home town . The first thing we did when we arrived to the city was going to the graveyard , to pray for my granpa 's brothers who already died . You could realize at first sight the city was colonizaded by Slavic countries by the names in the graves : Mostowski , Olosz ( my family 's name ) , There is a wide street near - `` Kutuzovskiy prospekt `` - but trucks that deliver goods are forbidden there because it is a govermmental street . I have n't finished my bacheoler 's degree yet like normal people around my age . But there , we study American English and we have few oportunity to hear a British accent . My British friend recomended me theBBC 's web site to study British English . it is my first diary writted in English . I hope I can use this place to enhance my English ability . Especially my writnig . I love Caomima , because they are very brave , they are able to speak the unspeakable about darkness in our socity . I will write my way to utlize this web site . I had many parties ( eating jumbo parfeit , smorgasbords , and so on ) and often eat something around midnight . My famiy won the contest . Becasue it makes me think about my dog . Today I do n't hav any plans . . . ( some games in arcades disapper ) My firend `` aquadee `` has pain , too . I pray that God heals the both of usr as soon as posible . So she and I headed for Starbacks . Tonight , I will watch the Japan vs Tailand & nbsp ; volleyball game . The last sentaence I want to say is : `` Correct my entry , plese ! Having been told about the website for quite a long time , I could not make a resolution to strat writing until now . Yesterday was an incridible day . daialy life while I 'm here in Japan , I have little chace to use English . I am glad to come on here and get to know this website which may hlep me to improve my English / Japanese . On April 1st , April fool 's Day , my country manager was laied off . I need to try my best to build our relationship and get close hiim . Now , I pronouce all words like in French . I wrote about myself here just because I wanted to post with correct English on my profile myspace . If you are a boy , It is very important that you know you have great potential to sucess . It is important for me to find my favorite things in the dayly life . I Thank her for heling me to study English . and I 'm intereted in French too when can I use this sentenses in conversation ? In the midle of it , I felt breathless and flush . . . hello guys from japan , and my first diary abt japanese disaster thankyou _ you : > Chinease people might be struggging If you see me crying in the corner , do n't laugh at me , please give me your sincerly wishes and energy . I also thinking that if he is courious in our life , you can enjoy being together with him . You will be ploud with yourself `` I am also happy if somenone like me because of who I am . Do you like eggg & rice ? He 's so cute that I still ca n't resist and get sentimantal . because my husbant is in the UK on a business trip . There was a cute painting drawn in suger on the top . I will waite for my next chance . As for me , I promise to help in studying English . And of course I will try to provide a funny and interesing meeting in Nevskiy prospect . = ) The severe lack of housing for students is reflected by the numberof students in doorm over the total number of students . Workers have also encounted the same situation . Recently , one of the goverment spokeman said on the public media `` [ we ] will move the metropolitan unniversities to the suburbs `` . They could also make wrong sentenses . And I find that even after severl Chinese have correctedsomeone 's jounarl , there are still some errors . It is easy - - easier than any other forigen language . twilght is my favorits , now ! ~ vampire > _ < I have been wacthing this chanel for 3 months after I planned to practice my listening . Not only does it have funny programs like Scrubs , Friends , Simpsons , etc , but also it 's very convient for me . Whenever I want to wacth it , I can . Sometime it 's hard to believe that someone on Earth can really be that stupid , but that 's what makes it so attractive that I somehow ca n't help but wacth it everyday . Today , I taught 6 children English , Japanese , amd geography . I used to have a fluent accent , a decent vocabulary and a good undestanding of the spoken language too . The disadvantages are you really have no say in your enviroment , hindisght is 20 / 20 , and even if you have a good plan you do n't always have the resources to execute it , while the future seems so far off and your parents seem so old you think you have a lot of time . She has become beautifu . I have only one brother so it 's a bit of an embrassing fact for me to have a sister . In middle school , my most chrish time , I could do everthing with my friends , say anything with my friends , and I didn ` t feel bored on weekends . Love is n't everything ; our family , our study , our carrer , our friends , and so on are also necessary . I go to the library everday because I have many times . My favorite thing is to read a biograhy . I borrowed a Walt Diseny 's biograpy today . Recentry , I have been busy job - hunting and attending class in university . I 'm a student who lives in Taiwan and I am studing in University . I 'm trying to learn English from them , but it does not hlep very much . And needless to say , I 'll visit The Tuol Sleng Genocide Museum in Cambodia , whichi shows the savagery of Pol Pot 's regime . I have not had enough breke time at my job these days . I have studied English only by lisning to audio lessons on the way home and on the way to work . I thought , these thesedays a lot of people study Chinese . Hallo , I am Japanese and I live in Japan . Spealing English is one of a very difficult thing . It is difficult for me distingish between [ L ] and [ R ] . he was always in a goog mood and always had something positive to say . when someone woule ask him how he was doing , he would reply , `` if I were any better , I would be twins ! `` That 's sounds a little bit weird for foreigners being asked for their age . It is kind of taboo espencially for westeners . The big event , The Winter Olimpic starts today ! ! I want to write things but english is very diffical for me . Universuty is said ' Hesitation term of life ' . The problem about that is that do n't how how to earn ( money ? ) in those placecs . I may not be able to say anymore , though foreighers say Ghibli is not so much fun . I know the inssurance fee is $ 12 per package . I ordered 3 DVDs . Strawberry was 100 yen for 20 peices or so . A pickled grean leaf vegetable was 50 yen . It is a greated radish . I ate Daikon Oroshi and pickled begetable with rice for lunch . I hope this marketing style ( local product for local people ) shold be more engouraged for both consumers and farmers . They had tried to keep in touch but it was impposible . Unfortunately , she just caal him to say that she was leaving him , and to let him forget her . Pleae correct it I am fond of foreign cultures and interested in ppl who are from all over the world . I was a mechanical teachnician in the past 3 years . I can not tlanslate the sentence below . She asked , `` Son , are you ok ? `` I am not a mysophobia , but I can not stand dirty floors . Give reasons for your answer and include any relevant examples from your own knowleage or experience . Even if they did not have any music class at school , they would listen to their favorite singers and groups . They can deepen thier bonds through other school events such as cultural festivels . * * That is why students should learn more practical and usuful subjects first which will help them attain their goals . * * * * In my own opinion , although music has many adavantages of relaxing and making people happiy , we can live without using it as a job . Therefore , more significant and valueable subjects should be taught with a priority . November 23rd is Lavor Thanksgiving Day in Japan . Lavor Thanksgiving Day ! ? When I passed by ' The Rogers Center ' , I realized that there was a flyer posted on the wall for `` Toy Story 3 On Ice `` , a tiket booth was nearby , so I stopped at the booth to find out the details . When I asked the clerk how much the tiket were , and at what time the show would start , she replied that the cheapest tiket was 15 dollars and the show would open at 7 . So then , I bought a tiket . My favorit scene with Barbie and Ken was also fun . During the interval , Mikey , Minnie , Goofy and Donald Duck warmed us up ! And ( their ) pizza is so delisious . . . : ) We will stay for one night at a lacal inn in Toba , Mie Prefecture , next to Aichi where I live . Busy day which I did n't ecpect . . . . But , if it snows , there are many troubles in everyday life . For example , I have to be careful when driving a car , and snow prevents the traffic systme from working normally . I hope I can pratice using more English here . I deposited in my best friends Sung - hwan & Krissy 's account because of my loan ? @ _ @ ; ; then I ate a Korean nodle with Krissy at lunch . In the early morning , I got up because today I had to take my daughter to meet her first tearchers . I dont understan them . Doing somthing at frist is very exciting as you know . I 'm a little bit nevous and excited . bacause today is a rainny day . can you hplp me ? For example , the people with pets generally have lawer blood pressure and lawer rate of depression than those who do n't own pets . 75 % of families who aquired pets reported an increase in the level of happiness and enjoyment in the homes . And Start to exarcise ! It is a long - running doll , much like a Barbee . I used to play with Lika - chan when I was a child . But we cound n't find any water . Many people are out buying water after hearing that Tokyo Water Official detected something bad in the city water a few days ago because of the Fukushima nuclear power plant . But I ca n't take the medicens for a cold . Because I have already taken medicen for my eyes , However , nobody helps me even if I worry about this stuation . Shop assistans in Japan say `` I ra ssha I mase `` . It 's sort of like saying `` Welcome . `` The last time I wrote something in some kind of journal was a really long time ago and I stopped because of my ultimate lazyness . Lask week , our school did / carried out a survey about / on whether it is good to make friends on the Interney . Firstly , some students belive it is easy to get on well with net friends . Secondly , we can take part in interesting activies with net friends . Not just for the short term but also for the long term simaltaniously . When October comes , I always think about how I fill the gap between the goal I difined last year and the actual outcome . My counsin bought a chiken for my dogs . . Today 's dinner was chikin . One learner wanted to transfer to other jobs using his billingal skills . I 'm not an expart but I tried to do my best for him . It was a question which asked you to chose the correct conjuction among some choices . He had to put one additive conjuction on the sentences . It 's a traditional way to celebreit new year 's in Korea . Although It was the coldest day , I 'd been wating an hour to see that But I couldn n't because it is unusually frozing outside . Especially a boy called Haidal . He is very clever , because he knows a lot of Chinese words , although most of them are bad words . But if I failed the exam I can not go threre . . . It is popular amoung young Japanese girls . At that time , all high school teachers told us , `` Keep studying hard for one year , after entering a good university , ur bright and easy days will come . `` The thing is , this area does not follow the Traditional Chinese culture and peole here speak Cantonese , a language I ca n't understand . My colleague asked me why I want to study aborad today , and , freakly speaking , I am really not sure why I want to do it . A : The weather is raining outside , remember to `` take `` an unbrella with you . B : The weather is raining outside , remember to `` bring `` an unbrella with you . Some college students held a birthday party for babies born in Decenmber . But a baby came on the stage while they were playing the show , and it interruptted a student who was playing music again and again . So I stayed in my companies domitory over 2 days . Teachers belonging to ALC tought us English conversation . I watched a TV program called , `` Sekaiichi Uketai Jyugyo . `` In this program , they said that crocodile tears means unture tears . I noticed thit is happening for rest of the world . One of my friends , who is a foreighner told me this web site . I ordered an iPad2 at the Apple online store alomost a month ago . I think my reading comprehension needs to improve , and it 's difficult for me to get the main idea of a paragrag . For me , too many practicse before the language test are not helpful ! Because when there are some quetions I ca n't get the answer , I will become nervous and anxios , these emotions only made me perform badly when testing . Hope , I wo n't be asked the quetions which might be too difficult for me . But I also lack English languate skills . First , I went shopping at UNIQRO . They 're very warmy clothes . They 're too exepensive . ( ; _ ; ) The status of my application had been changed to `` Pennding Contract `` after being stuck `` in Review `` status for a week . I parcitipated in the bowling event held by my English school last night . It had been a long time since I have done any bowlling , so I wondered if I would do well or not at first , but my team ( my friend and me ) won third place ! ! Kao Corpration is one of the most famous chemical and cosmetics companies in Japan where their products are used almost in every house ( in Japan ) . Although I can study and I have many ways to learn it eaven in Japan , When I visited Philipines last month to study English for 2 months , I might as well use English to comunicate with them . I stayd there almost for an hour . I considered whrther I should get one of them or not . But the most successful of them all has always been capiltalism . , peolpe are scared to take them . So the real cause of the spread of drugs , especially among young people , is the misconception about marijiuana . Many gangsta rappers rap about smoking weed . . . I watched 8 mile ( about half of Eminem 's life ) 3 years ago , and the movie dipicted people smoking weed as a matter of factly ! ! So , as a conclusion , I want to sate that not only must the government make the already existing laws tougher , but also cencor the media , which have a trmendous influence , especially on young people . First , I like this website because everyone is kind enough to coreect my poor writing , ( though , my dictionary is always beside me , just in case . ) Usually those who correct my diary leave messages for me . That is what I ment yesterday . I recieved two packages `` seeing is believibg `` ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ It is a little dificult for me , but I always enjoy discustion with my teacher in English . Sice I had a day off this year , I went skating with friends . Ws it ? I will be stisfied with it as only space for sleeping `` What she recomended is managed by her office . I do n't know if I should be studing the Japanese grammar at the same time . . . I 've only had a little food but I do n't feel hugary . Sometimes I am not hugary but I want to eat . . . . I 'm gon na read the book entitled , NY NYinstitute of Photography . OK boddy , I 'm gon na learn more slang later , I hope RAVI will be mad at me . Shame on you ! LOL I will be carefull about that from now on . Though I speak say tavel is my hobby , I have n't actually gone to many countries . When I was on the campas alone , maybe I was seen as a strange person by many students because of my appearance . The first time I tasted it I thoght it was too sweet . Two chocolate buscuits sandwiche a hard chocolate inside and again , the buiscuits are coated with chocolate . The first Tim Tam I tried had orange tasting chocolat inside . Bite the head and the bottom off the biscuite . I am goint to excersize every day . To teach Korean to them is not easy but very excting to me . July 7th is a special day for us Chinese people because there was a romantic story that happend on this day a long time ago . A Goddess did n't want to see them togather , so she placed them into two stars with her magic . One day , lots of magpies flew togather from all directions to formed a bridge in the sky . The pair of lovers could then meet gagain by the magpie - bridge across the Milky Way . missing him made me not interested in my jod , my sale performance was not so good , my boss was very angry with me . I like this song 's melody and lyricks . However it is difficult for me to sing to the guitar , and to pronounce English lyricks . But I broght some bread to eat with my friends , The table is very dity . < buy a dictionary please Have a nice weekand . I am majoring in English literacture and I feel it 's a burden . Hav n't been here for a long time Hav n't been here for several days . I feel so frightend / scared . Sometimes I see other ( people 's ) exellent articles and I just admire them . In these times , I sometimes think about the reason why I contine to work . I feel very happy if my colleages and friends are eivious of my promotion . I 'm really glad if my wife or parents give me some words such as ' congraturation ! A public servant must surve our nation and people ! We would like to know if there are no problems for us to act as as the sole distributoer ? Well , I 'm really interested : Do you , English speakers , use all your tenses which we ( foreing ) are studying at schools or universities ? Recently we learnt about the future tense and there are so many kinds of expressing it , like future continuous , future perfect continuous and future perfect simple . and in the afternoon , in the Classical Libreture class , I watched an animetion called Bleach , in which my favourite actor is cast . He was the most famaous pro - wresler in Japan . He was storonger than any other wresler so he was the storonger , in first or second place . He was the president of his pro - wresring company called Noah , It was bigg news in the sports newspapper in the morning , so he was on the top page in the sports newspapper . Other sports newspapper 's top page was also him . He often appeared on TV programs so people will be sad for him , even those who do n't like pro - wresring or watch pro - wresring . His cuase of death was being hit on the back of his head because he took a backdrop from his oppoment . Two men 's wresler have died in the ring since the year 1953 . She rufused to watch the Titanic movie . Shiba is a Jananese breed of dog . They are a medium - sized and very clever . It 's her first time going to a forein country alone . because I tought I could get good score like 700 . mn - - - - - - can I execuse this result ? lol . and it felt troblesome to read them again . I spend free time absentlly . I think I am lazyness . I have n't write anything . Today , I receved the decision for studying abroad . However , studying English while also studying chemistry was difficult , so I felt relievd a little . Hi , thank you for ur reply . Luckly , I am not . studing English and Japanese The building in the Heian - jingu shrine is a replica of the imperial palece in Kyoto city in the 8th century . After shopping , we ate `` Syabusyabu `` . It is a meal where many vegetables and thin slices of beef are dipped into boilling water . The `` Syabusyabu `` restaurant which we went to seems to be popular with many foreigners . There were many foreign visiter in the restaurant . Second , I wish to speake engish very well . Third , I will help members that will learn the Korean languge . Because of these reason , I registerd for this website . my objection for in ternsdhip Oh my godness help me ! By the way , his name is `` Free - Za `` . He appeared in Doragon Ball Z , which is a famous animation in Japan . to keep competitive in the intesive race . I had made some friends who are japanes . He wanted to have his own farm / poultry farming and really healthy poltry . I 've started reading the Mmanga One peace , which is written in English . Sometimes decesions are made regardless of our opinion , and we have to follow them anyway . Thank you for coming and visiting us at Onoda - shi , Yamaguchi on Juniary 21 . A mother said that your picture book reading was so wanderful ! ! I wanted to enter it but I was affraid that the price might not be friendly for my wallet . And I leard about life through movies . Sometimes , when I am bored , moive help me to spend time . Please recommand interesting movies . A strong typhoon is approacning the main island of Japan . The weatherforecast forecast warns that there will be strong winds and heavy rain . Poverty in Vietnam will increase because of soaring inflation over the last time , thus the Vietnamese goverment has to continue implimenting measures to curb inflation , said Mr John Hendra , the chief executive of the United Nations Agency in Hanoi However , there are still areas in poverty that are difficul to address , particularly in ethenic minorities and he called on the goverment to adopt a new approach But it has been a tough month because I had to settle the accouts for the fiscal year of 2009 . I 'm in charge of the accouts of a prodction affliate company in Kyusyu . The first time I met him , he talked about `` SD Gandom `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand everything he is talking about . After leaving from Tokyo , he will go to Shizuoka to view a big Gandom model . Withoug Anna , I can not get my English better . Anyway , I have to mention that I leave on Aughst 26 to US . I want to say thank you for eveyone who taught me English so far . Espessilly , writting is mush better than before even though I still have a lot of mistakes which I ca n't notice until people say . However , he does n't know that she recored every song he sang each day . Compared to Asian culture , somethings were similar but somethings were completly different . I want to get a driver 's ricence . Watching the lower classmans take part in it . I suppose he is in pain because he has been alone for a very long period and has to deel with the feeling of being the last one of his race . I ca n't forget the peculia taste of ttomyangkkunh of thailand . I wiil write in my diary continually . It is a service is similar to Lang - 8 but this can help us exchange languages with foreingn friends and practice the language you are studying . In addition , dormitoies are safe . These days , I 'm very tired and sad because I have to study hard for my University enterance exam . I love listening to glish music , but I often do n't know what they are singing about . The story is happened in some high scool . the biology theacher experimented on one girl named Hyeon - ju . She bit the theacher . And they bit anothers . And Hyeon - ju bit the embulance driver and paramedics . You need to be indenpent . I have not felt afterquake since last Friday . In Tokyo , there are afterquakes everyday . I hope that many people will read my diary and correct my sentenses . please correct the sentenses , and be my friend ! I passed all my exams with exellent scores , and I am very happy ! I want to go to Moskow to the theatre . Sorry for my bad Engish . They were standard questions , like self - introduction , your personality , why did you slect this major ? And now look at my essey : Games are undoubtfully important for the health and phisical skills of children . But unfortunatelly , today we can see that our favorite yard games are not so popular among kids . I am not an athletic fanat , but at least they have to feel qurious and to be interested in Open air games develop phisical skills , make chuldren stronger and faster and improve their health . I drink a few cups of coffe everyday . I can not rest becoause I have been so busy . I will go in for an English recitaion contest at university tomorrow . It consists of fifteen pages and takes eight minites to read . I hope I will be to able to be carm during my turn . I read a book written by an American professer in Japanese . I was not the presentation today , which meant all I had to do was just listen concentrately . Besiedes , everyone of us has to participate in preparing for the procedure . This ceremony derivered from the event that the prince of Nintoku emperor sent a gift to his fiancee . I may discarried again , but I 'm gon na continue learning ! Even Athough I am Chinese , The reason why is because graverobbers destoryed tumuli ( plural of tumulus ) lead to many mummies being dismembered and moved out from coffins , so empty coffins were recycled and used again . Apart from people 's mummies , it dispalys / shows animals 's mummies , which is a cat , eagle , crocodile , and mini snake . Honney - giger means `` bottled ginger with honey `` . This year my friends and I have decided to attend semianr by ourselves . Since we have lots of free time we waste it without doing anything in college . And I can do one of my hoppies with friends . That is , learning new langouges . Ysterday a big ship came to Kobe . I guided foreign traverers yesterday . However , I was n't nervous and could guid them arter all . I will go to a university to have an interview tommorrow . I have a question about a colum . I never know how to play the pinao or guiter like others , or do as well in French or Japanese . As a result , I found this website and enjoyed correcting articles written by some foreighers because I am good at it and it makes me feel good no matter they thank me or not . Eid al - Alfitar is an event usually staged by the religious community , which is a group of people who practice the same religion and it is one of the two most important Islamic celebrations . Eid al - Alfitar happens on the first day of Shawal month , which follows Ramadan and we celebrate because we have completed one month of fasting . The second most important Islamic festival is Eid al - Alfitar and it is organized by the local community . He says : yeah , realy cute ! Another example , you find youself alone with your dad 's friend . I broke up with my boyfried . The principal speaker asked us a question at the very moment the class began : `` Have you determined to perserve to prepare for the 2011 Postgraduate Qualifying Examination ? `` Then he explained his question , `` To start to prepare is different from to perserve to prepare . `` Everything sould out , but my lower back hurt . The pain was awful and umcomfortable . This afternoom our class will be having a class meeting which will be about electing elite as Party menbers . I submited an application for Party menbership when I entered the university the year before last . For people from outsid like me , adapting themselves to the community is little bit difficult . In other words , for someone who is member of the community , it is very comfortable and safty place to live . My favorite team lost ! My favorite team lost ! ! > < My husband told me to call the office for sicl leave , but I knew I could n't . My dream is to be a milionair . I do n't care even if other people say `` You ca n't be a milionair because you are not rich right now `` . I must be succesful because I believe in myself and I try to be a good person . This is a sentence which was writen by a native English speaker . I 've wanted to see these shows becauese my friends always tell me that these shows are very interesting . `` sometimes piople need to have a break `` . I can only console myself with this thought . I got up at elevent O ' colock , then had breakfast and lunch . Tomorrow I have English lesons , so today , Sunday , I am studying very hard . I listen to English a proglam on my ipod every morning while I 'm on the train going to my work . I do n't have a forgner friend . They ve studied all subjects like mathematics . Three days from now I have a chance to goto to New Zealand . This suturday I went to Shiga as a part of my group activeties . Today , I have some classes at my colledge . Especcially I love my pet dog ! On Saturday morning , my fridnes buy breakfast for me . I heard from my parents that the pollen count is expected to be two to six times higher than avarage Lately I walk whith my dog eary morning . When the number of ATPs becomes less than the number of AMPs ( having 1 phosporic acids ) , a hormone called AMPK , which senses the balance betewwn ATPs and AMPs , will be activated . This exposition was devoted to Salvador Dali . I never have seen his painting in the museum untill this moment . I knew littel about him . I 'm so glad to see that my diery has been changed . I belive in ghosts ! ! My friend has seen ghosts and he has a special avility that he can see ghosts . The drama is realy fun ! ! David Byrn is always cool . I 'm studing English in my school . I will keep on tring ! ! ! : - ) The weather is clud . But , it 's beautifui . I did n't have any Indian friends in Taiwain All my foreign pals are Japanes . The favor of curry is so unique . She mixed yogurt , basil , cilantor and chicken together . But the type of rice is different from Taiwain . Every etnic community has their own character . I 'm worring that drinking too much coffee may be bad for my health . My favorite color is white , so my car is whiet . becaust of that , I want a white 4G iPhone . Last Thursday I guit my school . It seems to forrow that I deside to buy it . My favolite author . For example , a 32 inch TV , a bus trip , a toster , etc . Because , I am so busy on bussiness , so I ca n't get straight holidays . Sometimes I make an English sentence for foreinger . I woner if my writing is correct or not Why do n't they standarization the size of books like Japan ! If you have an oppotunity to come to Japan , I recommend that you to go to a `` Yakitori `` restaurant . I also want to learn German because I really luv German football and FC Bayern ; - ) this is my first diary . The sun today was so hot that we were all getting faintful . Today , when I was about to eat curry rice , I saw the curry soup was sticky . Then , I smelled it and found out that the potetoes went bad . Today , I went to the supermarket named Rarphs near my hotel , and bought sushi . I interested in Fashon , Art , and Music from the 90 's ! And the game featured them will be releaced this December . I am `` good at `` speak Japanese but I am `` not good at `` spesk English . This function is said to be very convenient for peolpe who suffer from hemorrhoids . When I left a reataurant , it stopped raining . . . . I visited Yskusima . Today I met juniours in my university , and tomorrow I volunteer for an elementary school I feel an urge to preserve the wildernesses for the sake of the beautifull planet . I like a crescrnt moon better than a full moon . I have a sore neck becanse I leaned my head back and looked up at the crescent moon . I am a software ingeneer . my boss is comming ! See you later ! He spent almost five years working in Indnessia , my family changed a lot in both a negative and positive way . Honestly , this is an extremely unneccesary incident . Mango has become my favorite fruit since I traveled in the Philippines three years ago . Please hlp me ! I am going to send E - mail to my friend who an internationai student today . Do you remennber me ? My name is ko - chan . Please corecct my sentences . With thsi new awareness , Lisa got the permission she needed not to worry so much about Jim . She may try to pull him back mentally by asking him guit - inducing questions such as `` How could you treat me this way ? `` or `` What 's wrong with you ? `` or `` Do n't you realize how much it hurts me when you pull away ? `` HOW A MAN ' S PAST MAY ATTECT HIS INTIMACY CYCLE Deep indide he may be afraid he is unworthy of love . I want to get high score in TOEOC . I 'm wating for Avril Lavigne now . As it is so amazing , I choose it after taking the 2007th college enterance exame . Recently , I 'm writing a science thises to paticipate in a science thises comptetition . Whatever the outcome , I will do my best and not dispoint you ! ~ I 'm looking forword to it ! Mah - jang culture came from India or China in ancient times , and finally came to Japan in the17th centry . He is complelte beginner , so I can easily earn money from him and his friends . I drew a picture with green and brown crayons yeserday . I have n't used crayons since I graduated from elementry school so I 've forgotten that ' Crayons Are Great ' . I ` m a university student now , and I ` m studing organic chemistry . Because I do n't know how I can begin to leanr this unfamiliar language ! As it stands , I am aspermia . I tosted some bread and then put a lot of cheese on it . I microwaved the cheese bread for a minute and the cheeze melted out of the bread onto to the plate . Altough , the language I want to learn the most right now is japanese because I really want to go to Japan one day . Beacuse of this I have n't used an internet cable yet . Last week , I could browse and make corrections easyly . She was wearing a shoking pink sweatershirt . It is diffuicult for me . I 'm a software engneer I 'm studing Chinese and English . My goal is to use English for bussiness and to communicate with foreign friends . Go studying Eglish ! I also seceive some ^ ^ . I 'm convinced that is the reason bacause other students played their parts very well . Today , Richard asked us to talk something about the globle finacial cricis . yeah , many students in my class can speeck fluently english , but no one can say it well , and we just had a three - days holiday , little had found this online , Richard seemed a little angry , but he did n't tell us , just asking us to do it for the next class . I found this statement ( as follows ) in my textbook for studing English . ( optional ) I hope there is no damege from this earthquake . I have been aware that I really need to improve my English skills , such as speaking , writting , reading , and especially listening , because now my listening is not very fantastic . I do n't know how to ues this , I am a Chinese girl , but I am in US now . The main characters are Tom and Hek . Now I 've been singing Vanessa 's song `` Come Back to Me `` for 3 hours . ( Maybe my neighbor can hear a little of my voice through the walls . . . . It 's OK . Or is Zac going out with Ashlley ? But I have also seen photos where he hits it off with Ashlley . Then , we chatted about matters of common interensts . After that , we took a special lecture by a Proffesor from their university . More and more people , eapecially women , would like to live a life which is full of freedom , and many of them may choose to be single for life , for example . I like walking in the a shady path alonely . Ever since opening Taiwanese investment in the Mainland in 1990 , the ouflow of the capital has caused an economic crisis in Tawain . My English cram school teachers are forengner . I ca n't imagine that I go abord alone . Mixed feelings agian . Frist I feel happy because of someone who when we frist met told me I look like a singer . This Wednesday I had a Chineese speech contest at my school . I 'm not alome , right ? I ca n't speek fluentry Coooking lesson My favoorite baseball team is the Yomiuri Giants , Cakes made at the cake shop are strange , becouse the cake shop is a Japanese sweets shop . Jast a month has passed since a large earthquake hit Japan ( 3 . 11 ) . So in Japan there are 2 layers of high presure : the Chibetan high pressure and the Pasific high pressure . That 's why I am almost dying . . . I 'm currently a collge student at Jiang Xi Normal University , majoring in Business English . Reading books , watching movies , listning to music and collecting pins are my hobbies . I 'm teaching an Amrican friend Chinese as a part - time job . This minute it was raining , but the secound minute it 's sunshine . I have been thinking about this questioni since I decided to take the New And now what I came up with is to make `` kisapedia `` , which is just an explaintion of the things I am interested in . That is , writing a personal wikipdia . I want to read Englidh books . But I have no chance to read English books because English books are too expencive . I am writing this dialy without looking at the dictionaly . Please help me with my dialy . I am wonderring how much time it will take for me to be able to use English like I used to be ; but , I will do my best , be diligent and be proud of myself . Recently , I realy want to go back to Vancouver , the best place in the world , especially in the summer . I hope that one day I will go back there and watch the brillint fireworks again . It is located in the center of Tokyo , and famouns for many big shops of electorical appliances . There are many `` Maid Cafe `` , where girls in costumes of maid serve you with intersting performances . Beside the mantelpiece he was shceming his escape from his home . When I was an elemently school student , I hated writing a dialy . ( even though it was homework , I did 't do it ) In addition , a jounal will be the most priceless thing for me when I become an old man / grow old . I saw Happy turn , which is a Japanese rice cracer CM . I think it is about the guy who kept eating only McDonald 's Humbargers and fries . Starbucks Jappan anaounced that they will sell a new instant coffee in April . I hope that the new instant coffee does n't destory Starbucks 's brand ( OR name ) . I 'm interested in your Japanese class , and hope to join as a totur . And how many Japanese toturs will be there each day ? Through this class , I want to make American friends , and enjot talking . Thnak you very much for your time . Everyone helped me so I wii do my best ^ ^ Evevn so , we saw lots of beautiful trees ( even they were more than 3000 years old ! ) . Yesterday 's deinner We entered the Izakaya and orderd from the menu . We orderd non alcohol drinks because we both came here by car . There are a lot of people here who decide that they are native English speakers , such as Pakistani , Nigerians , Indians , Ghanian , South Africans , Irishmen etc . Please , if anybody can make a few comments concernind matters of my introduction , I 'll be very glad to share a lot of interesting stories about the UN , Africa , Western Sahara , Morocco , and I 'll be ready to be a good adviser for those who want to improve ( their ) Russian or start to learn it . Well I am Chinese . Some people on the internet ask me whether or not I am a foreigner . Well , if I do n't know ur nationality I ca n't give you an exact answer : ) If you are not Chinese , then to you , well , I am indeed a foreigner ! but actually , Chinese new year has n't come yet , coz we celebrate a luna new year . My girlfriend and I went to Yilan this Monday to Wendesday . I failed again and again , and I never sucessfully stood up on the borad . I will talk more about the palces of Yilan later . The screen was spinning before my eyes , so I totally got desorientated @ _ @ I tried to get myself on track , but then my friends suddenly screamed : ' ' Will , you idiot ! ! ! ! Now I want a motercycle and am dreaming that I can get a big one and travel around the world . I 'm so looking forward to going there , but I also wonder if I 'd hit it off with Europians . Gonight , byebye , see you . When reading Pygmalion , I find that my `` desctriptive `` vocabulary is very poor , e . g . about / concerning architecture , or furnishments . I am so curious how some people can speak their second language as proficiently as their monther tongue . The test had grammer questions , cloze questions , essay writing , and oral questions . I mede three friends and had lunch with them at the foodcourt . who can possiblely imagine that I can download a 30 gigabyte HD movie file in 15 minutes ! so its very deliciaous . Open source conferrence in Tokyo I joined the open source conferrence yesterday . All the people I met yesterday were gentle , and they tought me the various things about open source on the internet . In my hometown , this rent could give me a 1R which is 3 minites ' walk from the station and provides comfortable amenities . Prices in convinience stores may be alomost the same , but when I go shopping in vegetable stores or the local market , things are as different as in rates ( ? ) . This difference robs me of opporotunities to eat fruit ( ^ ^ ; ) ( in Tokyo I rarely have furuits anyway , though ) . When I got home I was hungry and tird , but I liked it . Relexing day He showed me a lot of postgard . I would n't like to lose interest in swimming , so I must warm my body throught exercise before I start ? . Again , I was too lazy to make any compotitions . I listned to his songs today and he 's my favourite rapper . I think he 's the most handsome of all rappers lol Hellow Everyone ! I read English Books to help children to studing . Prease help me to fix this document . I 'm goint to Asakusa bicycle for health . Saturdy ! ! ( OR - I will be going for a drink with my former high school techer the day after tomorrow . ) I have n't gone drinking with anyone this much older than me without somebody else , so I feel a little tention . Are the students able to understsnd English grammar ? I thought that I was definately not good at it . In other words , I 've totally screwd up . The white and well ripen corn ( ) out of the hust ( k ) makes me happy and I anticipate how ( ) it will taste ( ) . So I 'm very happy because hiking is my favorite hoppy . But I am a little worried for the rainly season . I will organize an English Club for my company and also host it next month . Our aim / goal is to let the English learners around us get together and open their mounth to practise their oral English . For these reasons , I thnk education that aims at development of individual tarent rather than learning by rote is needed . My high school give us many chances to go othere countries . `` Everything was over - producted or just junk . It is so sprendid . Because , we were able to eat fresh fish , shrinmp , salad , etc . I do n't want to letsing he be unhappy . As soon as I arrived I noticed there were a lot of foreingers , but I did n't talk with anyone . I tend to get nervous when I have to speak in English because I have no confidence with my spoken English fluency . One of my elder sisiter 's family came back from Kagoshima to live with our parents seven yeras ago . Since then , my sister , nephew and niece have lived with them . I think this movie is a very interesthing story . Finally , we made an appontment to see him in his home town , Bergium . Cloudy , rainy and sunny , Tuseday , 28 , April , 2009 Sweet Moment - Transrlation # 03 I want to learn child - nurturing methods used in the US , and to do the work that is velated to the child 's future . It is maybe an action movie like indiendent day or almagedon . . . . I can study Eiglish in various ways on the internet . Take for example EnglishCentral ; I can practice listening and pronounciation on the site . It 's so happy for me becasuse it 's a chance to implove my English skills and I can save money for buying my favorite things . I remenbered it was very interesting and wonderful , and most of the pavilions had a long line . I want to go again , although I forgot the name of the retaurant . I feel Chiristmas is coming , discoveing people who have Starback 's tumblers with the Chiristmas colors ; red , white or green . In order to attend a kimono acution , you need a license . I will go to Hawai next summer . Generally , I do n't say much if the atmostphere of a conversation gets tense . However , I will find another way to say sorry for my irasibility . Because I had to teach her math , I do not want to go liberary . She never thought of anyoue else And there is a bad smell aroud them because they became spoiled ; ( I think a man who threw them away is very stupid and cruel . It 's a little imconbenient , although it 's good for relaxing . Maybe I shoud live life more slowly . Why do people think days pass by so quickly after fourty years of age ? But she felt days past by really fast when she was fourty . Usually , the beans are sold with seasoning such as soy sourse . So , a little bit of soy sourse will spice up the beans . Due to the unique texture and teste , some people are not fond of it . Yeh , at least I 'm alive , and I have a job . It 's similar to `` Mentlist `` in that both protagonists of these two dramas can read someone 's mind with their amazing skills . Woud n't it be awesome if we could read someone 's mind like they do ? Well hope I can make lot of friends here and exchange langueges ( language correction ? ) with each other . In modern life , I think moest people have an image ( icon ) . Maybe the image is ( of ) an economist , a president or a drawer ( artist ) , and so on . These peolple have an important influence on the admirer . In the firest instance , I think that he is a prime singer and dancer . beacause there are n't ( many ) people who can reach the attainment like he reached in this world . He often takes much money to help ( needy ) children through social walfare insititution . Afte school , I have to go to cram school . Now I 'm writting the text of my presentation . But , it 's tightly connected with the previous stories . If you do n't remember the stories , it 's better to watch T1 & T2 before you go to the theater . It is always nice to write here for I am always so curious to find out who will be my first wrting corrector ( or should I say who will be the first one to correct my wrting , but no matter who you are , I would like to say `` thank you `` to all those who check my writing , you are the most wonderful people in the world ! You 've got to know the difference between `` given name `` `` family name `` and `` middle name `` . I often mixxed them up before , but now all is clear . There is one thing you should always keep in mind : when you fill in a form , please mind your writing . If you use joined - up letters , then it would cause pople trouble ( in ) recognizing what you wrote . This weekind I 'm going to the beach with my girlfriend to meet our friends there . Althouht I have listened to this song somewhere before , I did not know the title and singer untill quite recently . My chance to get to know the song was a CM by a campany of Instant noodles . I was born in a northern city of China , and I went to colleage in a north - eastern city . I love snow very much , and the winter in colleage left a deep impression in me and gave me good memories . It 's so dericious ! Hi , today we are having good sunsine . Last week I went to Hokkaido , which is in the northen part of Japan . . I went skiing there . Since I started to work , I had no chace to go skiing . I have actually witnessed a cab driver bargainning the ride fare with a foreign lady who was extremely tired after daylong shopping with her young kids . I 'm planning a summer camp with the pastors for all chucrch members . The place we will stay is awesome , with little streams from the hills and helf of the area is covered with trees , which is wonderful in summer . I 'm looking foward to going there . Are the problems international tralvellers cause greater than the advantages they bring ? Hence , More and more visiters should have opportunies to travel to other places . It 's a format of program when learning a new programming ranguage . The company that I worke at forced me to take a test yesterday . Today is the start of my english staudy . I went there , at that time , the docter said to me `` there is a wisdom tooth in your mouth `` Stupid Day and Asertivness Today , write your uncorrect behaviours and write your correct behaviours , and perform the correct behaviours the next day . Resentry , I often feel this way . Thank you for readnig and correctiong my entry . I think politicains should sacrifice themselves , leset vested interests . This is what really happe in Japan . good job But his friend did n't come back till the middle of the night , he feel tired after a long journey , so he could n't keep on waitting for his friend . Well , it 's not really `` do nothing `` but studing Japanese . My parents want me to go for an exam of TOEIC and JLPT , then use the adventage of these two languages to get a job . Honestly , I 'm not really good at socialing with people . Stranger makes me nervus . Of course not to mation using the adventage of English or Japanese . . . . . . I have been a lacross player ever since I become a university student . Hello . It 's my first time using Lnag - 8 please check my sentance . please make this dialy sound more natullay ~ ~ ~ ^ ^ If it is not for an improtant thing , I prefer not waiting . First of all , the small cute `` Daphne Odora `` , which is in full bloom from feburary to March , reminds me of going to cram school in Hiroshima where I stayed at my uncle 's house to go crram school . It 's like delicious , vinilla flavoured chewing gum . On the other hand , I felt an elegant atomosphere . unpleasent , such as strong s cologne , hair pomade , women 's perfume , ( it always smell good alone ) , just mixed up , came up to me and then , I got sick . I want help and to make freinds in the world . Sounds more natural . My favolite artist is METALLICA . Today 's journal bacame about discontent . Today I read a tranlated fiction of chinese writor . While the man dreamed about coutry house and want to live in a farm , the girl liked to use brain not the strength for work . It was fun story that the English man can imagin how the young Eastern will be . So , dad said to eat dinner in the reataurant . It was a tough time , but I enjoyed taliking with the customers . That 's why many people , especially men , were wondaring to pickthe ( right ) colors to make aflower bouquet . These hydrangeas have special coloer and shapes as well . But as a matter of fact I got car - sick , being uable to say no when I had little appitite on our way there . Today I went running about twenty miles , but I could n't hear the footsteps of Spling yet . One is the Honoruru Marathon in Hawaii . just signed up to belong to a basketball team , yoga class , volounteer and so on . Recently I can go to work only two days in a month because I have been receiving post - surgical chemotherapy to prevent canser recurrence and metastatis . Though it was regrettable that I got sick , I belive my sickness have developed greatness to my soul . She majoys in fine arts and she want to study in france in the future . The movie I want to watch recentry But they alone do not warm my house , so I alos use an oil fan heater . I 've kept playing basketball from when I was an elementaly - school student . It is a very difficalt sport for me , because I 'm not tall . But , I practiced shooting many times by 3 - point - line . In these days , I 'm always shoppinng or singing in the `` KARAOKE - BOX `` or drinking riquere or doing many things . When I gave a speech here the first time , I was a little nervase . I have to programming for my reserch . The langage is OpenCV . I 'm going to study C and C + + langage at first . Before long , you will find your home beome neater . I should have worn a long buttom . However , the Japanese do not really understand the logic of star signs because they believe the blood type is more concinvable than star signs . Everything has an exception , and I guess I am not counted in the stastistic of the star signs and blood types . This is my firt entry on Lang - 8 . He often asked me how to study and mangae time . changing my plans like doind this 3 times a week . memorable day and muisc This was the last time that my classmates and I had a meal together since next semester we will be devided into two different classes . So I lay down on my bed and listened to muisc on the radio , which made mehave a good mood . Additionally , light musiic helps me to fall asleep quickly . From that day on , I dreamed of ofimastering english as well as her . What is your favorit muisc ? messhi is great player ? Why you can earn more at Canadian companies is that they estimate indindividual skills more than Asian companies do so it really depens on your skills whether you can earn a lot of money or not . I hope my english gets better for many resons . and I can Ihelp you with Korean , and a little bit of japanese . Does anyone on this site have such symtoms while staying in Japan or in your own country ? Recently , I felt like wach `` Avatar `` . My foreigner freind told me about that magazine yesterday . He possesses a lot of authority as bisinessman . He has taken care of his pearents untill he dropped out from a private university . I wish one day Catalonia will become an autentic country , and then we will be completely free . Men 's foemal dress is easy . I went to buy a dress suit from a tailer yesterday , Becase I 'll participate in a friend 's wedding ceremony and I do n't have foemal dress . If I were a woman , it would be deifficult to choose , but I am a man , so it is easy . Men 's foemal dress is more uniform than women 's . When we try to study English in Australia for six months by using a Japanese agent , can you geuss how much money we have to pay for them ? I got angry , so I slamped the door . I knew nothing about foreign countries eithher . I developed chest mustle , upper leg mustle , and so on . Today is thusday . If you are a samrtphone user . We are going to go to Himeji catsle and some other places . I want some things in my life to change such as finding a boyfriend , getting a job , being sussessful . . . But , my englsh was not good . Recentry I often went to the States , almost 3 times a year in last 3 years . Nobady knows what would happen in the future . So , I need to impove my speaking and writing skill in English . The Rabbit has the personality traits of active , tame . . . . ect . I brougth the paperback and an electronic dictionary . I stude all day long and arranged the company 's products . We have a big test tommarrow , and I mean BIG , very big . . . I am very , very , very nervese , because studying is not my faveraite thing . I understand some English sentenses which I could n't before . She was just fine , so I ` m realy happy . Everyone seems delited by it . My fother had lots of potatoes in the house , more than he could eat before they became rotten . So I gave most of them to my yoggy teatcher whith two carrots when I visited yoga sutudio . Their menus look so yammy ! ! I Abusolutly have to study English . Maybe , beacuse it makes me have a headache . but I wii try to learn more English There is a satelite school here and I 'm kind of an exchange student . Alos , I think my English has improved more than when I was in Japan . It is my first time writting a diary in English . I hope someone will revise my mistakes in this artical . I would really appriciate that . I 've gainted some weight . The divice is tured on every morning , but today something was wrong and it did n't work . She rided her bike and she gave me a chocolate , which was delicious . After reading a record about the debate between Obama and Miken , I thought there was a great difference between the 2 candidates , and that 's why everyone said Obama was better . Obama 's speech is full of numbers and truth , he memorized and used these records cleverly to support his oppinons . On the contrary , Miken usually used concepts or vague words . When it turn to Miken , he said that it was right to do so because of justice and the government 's calculations . However , maybe fighting in Iraq has more benefits than disadvantages . But if Miken ca n't explen it clearly , I think it was clear that Obama was a better option than Miken . In Japan I watched the full moon on 20th , Janualy . I forgot its title , but it was about disigners who come up ( invent or design ) with variousequipment that help people , such as people living in developing countries . Yesterday , I used the Skype for the fitst time . For example , I like to read books which are , of coures , hard - covered . The standard mobile phones which are sold in Japan have high - tech camera devices and internet connecting servise . But I do not need such kinds of higy - tech functions . Therefore I bought a very low - quality mobile phose which has jist e - mail service and a very low - tech camera device . Nawadays , Do you think I need to own a car ? Therefore , I can do work more speedly / quickly and efficiently by using machines . All of above is a part of my essey that I wrote in a class during my study abroad in Hawaii . This is my frist journal . Haruki Murakami ? I guess they were on a day off . . ( It 's an abusolutely impossible case in Japan ) Fortunally , the light was fine and we could phone . My Frist Time Writing A Diary In English It depens on the woman , but I think most women who are given a lot of love from their parents do n't do that , unlike this Taiwanese woman . If you type your name in the box , then the program shows some Kanjis in your illustlated brain on the screen . In the end , he talked about his experience of how he accidentaly met his friend exactly on the day after he dreamed of his friend who he had n't seen for a long time . If enybody knows how to do , please teach me : ) The operater calmly said `` First you have to make sure he is already dead . `` After that the operater heard a gunshot from the other end of the phone . The hunter said `` What should I do next ? `` I 've never stayed in foreign countries , so I ca n't descrive my feelings in proper expressions . And I know it could be the most precious part because Chongqing , together with its people and mountains , has inevitablly constructed the background of my university life which has been maybe the purest yet most complicated period of my life . Differences between wish , hope , and beleave A lot of frustartion came out from both teams . Some playes fell down to the ground and looked very hurt . TV proglam on - air : TSUNAMI . The father of the bullier came to school to apologize to the student and However , the girl who was bulllied retired from ( quit ) the team at that time and This time the bullier told me that she wanted to retire from the team ( too ) . For example , he uses public portation when going Our city is in the suburbs and it is difficult to traver I want to buy a beautiful woolen cap to warm myself , red is best , which looks like fire in winter . One porson who fooled them is making music on the Internet . My teacher would like to everyone write santances . I think this technique is spcial . They controle the effictiveness ! And exercising makes me feel refleshed ! After exercising , taking a bath is my favolite thing ! ! But , I relly feel sorry / sad about my English right now . . . For example logarithms , vetor operation and integral calculus . I took some phote with my digital camera at my bitthday party last week . This semester I 'm only taking 2 couses , but there are some other things I have to deal with . . . Now the area I live in Japan is in the reiny season . I 'm at a point where I can no longer find any appropiate books to study with , so I 'm basicly wandering around in circles . So far , I 've completet a 1 - year language exchange programme in Japan , and have picked up an insane amount of vocabulary . I 'm not so sure about kanji combounds , vocabulary and grammar though . . . In this movie , Led Zeppelin 's famous song , ' Immingrant song ' was used . In 2008 ( two thousand and eight ? ! ) I earned a degree in Journalism at the University of Palermo and the first week of next novembre I 'll take the program to earn a specialist degree in Social and Institutional Communication . It 's a thick and soft udon with only simple soy sause , and it was delicious but softer than I expected . After that , we had laxuary dinner which had various sorts of sea products ! they usually go there during their mddile semesters . There is no shunshine but there are strong ? high ? winds , therefore , I 'd better / rather stay at the doormotory , playing on my computer . And then , I read those comments , and I got really pleased and happy becase those explanations helped me understand the parts I did n't in an easy way , & nbsp ; plus there were a lot of examples . Well , I 've had a delicious breakfast , and today the weather is n't as & nbsp ; cold as it was & nbsp ; befor . Recentry , I wonder whether foreign lungage should study in the country . Everuone please help me . I try to start writing a diry on Lang - 8 I shink I want to study English more but it 's expensive to study English in japan . Kono neko wa okashi hen desu . Kono neko wa senpuoki no mae de nemasu ga , sono nezou ga okashi desu . Tabun , sore wa totemo atsui denki no tame desu . Whenever I watch that show , I 'm hauted by the fear of terrorism haha . I am interested in `` SILS `` ( School of Inernational Liberal Studies ) in Waseda University . After that , I talked with a coullege student . She has studied abrord for a year . I have returned to Fukuoka prefcture . I enjoyed looking at the choices in the beginning , but it was going to be complicatd . So I am going to stay in Fuuoka for at least two years . Today We talked about blood type and many personality traits accoding to blood type with my phone conversation teacher I told that him in korea people believe that blood type affects the thinking and personility of people I thought I had to study English , especially the listning part . I recieved my laptop from repair . I paied the mobile phone & amp ; GABA ( English scool ) 's expenses . Well , I 'm trying to translate a contract about medical instrumentof from Japanese to Chinese . Why ? `` At that time , I did n't know the meanig between drug free and free drug . The mackerel was loasted and dipped into sweet soy sauce . mamorial day ! ! Today I just wasnted to say `` Hello `` to all of you . : D what my freiends are thinking and can also send what I 'm thinking . Theerefore , I 'll just go to bed right now . However , that blogger says that before you make friends , you have to imput lots of words , about 5000 . Please somebaody help me ! ! ! My dog gave birth to 1 boy and 3 girls on Aiprl 13th . After that I often visited the States for business and lesisure . In another two years I will be sity years old and I plan to have a trip to USA with my friends to drive across from LA to NYC . Today I went to a funeral in a buddist temple . The road was like the river so I was affraid of driving my car . I 'm excited a little because Lang - 8 was exactely what I wanted to find . I 'm getting a bit anoyed by all the spam accounts on sites that I like . At least , I personally do n't know anyone who is just waiting for that mail which promeses a true and passionate relationship . And the ones that do make a living out of ' being a webcam girl ' or the like , the people that do have an intrest in such things will naturally search for it themselves , wo n't they ? I have been looking for an interesting American drama that can help me improve my English listening skills , and today I finally found ' The Mentalist ' on an Internet site and downloaded 5 edisodes from the first season . This drama is about investigators who belong to the California Victims Inverstigation organization and try to find murdurers . It is very fascinating because the mantalist uses his mental power and hypnosis to track down the murduer . ? Anyting else ? I like / enjoy playing tennis , skiing , and especially travellind ! We will engoy ourselves this weekend . However , I suddenly heard terrible lowd sound . And a lot of UFOs came over us , then they splinkled poisonous rains ! This is an email requesting reshipment of my mypurchases . Libraly 3 < story > Second dialy . I have never written a dialy , even in Japanese ; They are learnig ballet , piano , art and abacus , which is a Japanese crassice calculating tool . I think they are learing too many things for their ages . But , I never succeeded in teaching her continuausly . Thank you so much for reading my dialy . If you have time PLEASE correct not only my missspelling and grammer , Watashi no jimusho ( kaisha ) wa sochir desu . I had a coputer certification test at 12 : 40 . I Have Qustions Again . Well , I 'm reading at the momment a book called ( I do n't know the correct translation in English , I 'm translating the Portuguese title ) The girl that steal books . . . I 'm in the beginig , I ca n't undestand the story so well . Since a lot of people told me it 's a wonderful book , I 'm excited to read it . . . Usually it is played by professional SUMO wrestrers , but on this show , it is played by other fighting sports players and TV talents . The unique concept of it , and the amazing sence and talent of some players excited me so much ! Lo and behold , the Strikeforce chanpion as well as the DREAM chanpion Alistair Overeem was there , and he won ! However I guradually noticed that I ought to have more chances to speak in English . becaouse I wanted to kid around , I said `` Good morning man ~ blalbla `` Aand we received guidance from him about how to get rid of the mouse . He said that at first we must find where the rat insart the invasion . . When I say that , people aroud me look at me surprisingly as if they did n't expected me to say that and I end up looking odd . I say , `` We can listen to radio while doing simplitic tasks ( maybe give examples ? ) . I feel so relaxed while listening to the radio . For example , a Filipino said to me he wanted the bycicle - cargo on which I usually carry my kids . If we find that information , we can help satisfy the foreigner 's niche and it is a buisness chance too . I 'm a little bit nurves . At the beggining , I didnt 't like it so much , but gradually it caught my interest . Next I would likr to watch the DVD of part one . with the differences , we ca n't learn the foreige cultures completely , and then if we do not have a good knowledge of the different cultures , it is a big challenge for us to write an English essay well . As foreige language learners , we seldom communicate with others in English or write English letters to others in our daily life ; that is to say , we do not have a good environment to learn and we regard the writing course as what we have to learn , but what we want to learn well . And I believe that if we learn more foreige culture and develop a better language environment in our English study , we will find that it will be easier for us to write . Somehow , I recently have n't takjed with Americans in English . A few days ago , we went to the cinema to see `` Shrec forever `` near my home . Shrec was very funny and fantastic . Shrec feels that his married life is suddenly very boring . Shrec accepts the proposal and he is trapped . Could you do me a faver ? How are yor ? I think my English sentences are sheesy . . . Can you beleive a guy around 20 watched such a love story ? LOL In fact , I like love story movies because I do n't need to think deeply about them after watching them . Mio loves tomatomato . But these papers are too diffictult to write , I feel that I will have a very `` good `` days in these two weeks . I had to speak English through a mycrophone . And I had to type English senstenses with my keyboard . . I can improve my enlish ~ ~ It looks like a white carpet and it is very beautifull . becasue outside was sunshine and I did n't wear lots of colther . Haha , wonderfull snow I like it . No matter what 's sad things are in my heart , I always encourage myself finally ~ Hopeness is light ! They tought me how to play pool . I wnat to go out with them again ! While Gods is plural , but it is prepended by an article , I mean `` the `` . And this kind of tea was promoted by one sentence advertising saying : `` Please drink this tea if you want to control heat . `` It tasts very odinary when I drank it ( for ) the first time , before this advertisement started bombarding us from all directions . Many pepole fed them . no suspecious people following me It 's testosterol itself that makes the difference . The amount of testosterol released decides the sex of the fetus . Surprisingly , the more testosterol released , the more uneven the length is between your ring finger and your middle finger . To my openion , I do n't think it 's good to pioneer biofuel , It will be a problem since it sitll needs fuels to transport the ingredient . If we start to use biofuel , people may think that the problem of food lacked has been solved , and start to use things unlimitedly , it will cause a wate , too . He said it 's kind of awkard because last year we ( both ) studied together at the same school , Yesterday , I registered with the sns site which my friend on this website recomended . I interprited it as ` Im a lazy woman ` little mistake in grammer . Once I understood what he meant I quickly apologied . When we study a foreigh language , we usually memorize one meaning or two for a single word . My neighbor , who lives in the ground - floor apartment across the alley , adopted two dogs . I called one Small White as it 's a white dog , and the other Spoty , as it has black spots . A few months ago , Spoty died due to old age . I thought it felt very sad because Spoty was gone . I saw him / her wandering in alleys and lanes nearby , I guess he / she was searching for Spoty . Althogh it has been three or four months since Spoty died , Small White still whines somtimes . In the contempoary world , technology is advancing at an astounding speed . But in the meantime , whether technology causes entironmental problems has become a highly debated issue . Specificially , instead of wasting our resources , a simple life can conserve non - renewable resources , such as mentals , minerals , petroleum and fossil fuels . It may be tempting to argue theia easy life may carry potential drawbacks . However , the denifits reated by technology far outweight the disadvantages . so we are stayed in militery service . . I think it 's our first trevel . . But nobody wants to go militery service . . ^ ^ ; Compared to real trevel , joining the Army is a little deferents . Of course , Trevel make me flutter . . Everyday we should go to scool or to work . . For my refresthment , I trevel . . Have you ever had an experience in foreign tevels ? How many different kinds of trevel are you familiar with ? I am not too good at Eniglish For example , they can learen how to talk and begin to understand different languages by watching TV . The first lesson I learned was how to conmmunicate properly with different people , including classmates , professors and people of different social status . We had a task that assumed you were in a lift with your boss and he didi n't know you , so you had to try to promote yourself natrually . This kind of thing seems like a piece of cake , but it 's definitly useful in our daily lives . I stayed home the whole afternoon and became fent . Though my ability is still not good enough for the impending examination , it seems something constantly coaxes me to find other ways and escape from this endless yet doomd to fail enigmatic swirl . Only in daydreaming or the dreams of deep sleep could I find the contented smile with the delightful wrikecles embellishing my cheeks , carved by all the wounds from my sacrifice and torment . At that damn moment I just ca n't do anything practical or efficent to cure or soothe her pain from the aches and itches , andall all I can do is to comfort her with my care and words . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the soud of my mom 's breath reminds me to be more determined and obstinet for my hard - to - reach dream . The great mother 's day is around the corner , but I am still a dependent child who does n't have the ability to buy her any luxurious or exquise stuff or treat her to a dinner in a great restaurate . I 'm feeling comfortable even though I recognize that there are many mistaks . I wanna take advantage of this hapiness and time , to improve my English . And I worry about zemi that starts the second grade at unversity . I had write in English becous I want to know what I wrote incorrect ! They will have a life of happyness . On this day , the obstruction will bacome a bridge . That monie is very interesting . I should remove worms from these leaves so they can keep gorw . but I do n't have any firend to teach me English . That is how we show our strength to our cumtomer . One of my colleaues became a father yesterday . I want to have such a great feeling , but saddly I ca n't give birth by myself . Shinokiya is wonderful plase . I came to Singapore frome South Korea . I havs looked for couse in community centers in singapore websites yesterday becase I want make a local friend so I looked for an English it was my first premie . Because of that , the first day might have been canceled , but the typhoone went another way , so we were able to hold the festival . I got a pair of danbels to train my upper arms . They are not like regular danbels . This city falls victim to a disease we 're afrad of . Because the actors are perfect , and the gerne is action . Now , I will introduce my favolite song . I drank too muxh . He seemed cold becaue he was n't wearing a jacket . Then I learned Nicotinell patches are released fromNOVARTIS Pharma again . This situation has lasted for a couple of days already and the roads are litterred with ice . I want to make many foreign friends , and learn about foreign peaple . I 'm going there by a woking / holiday viza . In epidode 1 - 3 , Rachel said , `` I should really get back to work , `` and Phoebe answered `` Yeah , 'cause otherwise someone might get what they actually ordered . `` . While other waitreses could serve well , Rachel could n't serve well . I think we have to care about wrong streotypes . I am also expectable for the coming new semester . but the leaves in Kyoto are especialy beautiful and amazing . While I was riding on it , a Filipina person spoke to me in Japanese . But I thought the atomosphere was better in Sky Spa . I wish I could speak English fluentry ! In order to improve my writting skills , I think I 'd better add a daily record of my activities . it 's rlly not easy to blance those three things at once . She gave me a shutlecock key holder and some cookeis . I will put it on my badominton 's racket case . I hope this accomodation remain for awhile , in spite of the upcoming tough economic condition . I 'm narvious recently . But it was puite easy for me , and I wanted to read something more proffesional , like a paper or thesis . It 's more lightfull here now compared to what it was before . All of my sudents passed it , which made me happy . Also , I thought I need to study harder not to be beaten by them in the future and always to be their teacher . Usualy day Izumo is more beautifull place than where I tought about before visiting . I am disappointing now , I saw anouncement today , and I now realize how difficult it is to apply for that program . Sometimes I think abou why my parents always work so hard , yet my family is still so poor . I really do n't understand this . Even I am trying my best to get that scolarship , because I can ` t afford the sky high fees of graduate school . Some cell phones are very expencive , but they can do more things than cheap cell phones . I 'm going to stduy English and Germany hard on this site . This is the frist time that I write my diary in English . In my dream , I could smell the cat and my nose was tikled by its fur . So it was very taugh . recentlly , the movie ' The Hurt Locker ' showed . My friend asked me about this sentence `` Enjoy ur life there . `` That sentence is supposed to mean `` enjoy ur life in canada . `` The daily temperatures here fluctuated between / from - 2 to + 3 degrees Celsium . Should one ecpect a reward when doing a good deed ? For example , he takes care of his friend 's wife when his friend goes abord . Because if you try and prevent the theif who is doing something illege Anther reason is doing a good is alaway recognized as a silly symoble . So why does n't the goverment give some reward and let them feel a sense of pride . I actually was not expecting such a great response by anyone since there are so many perple writing a diary and wating for diary corrections . I just wnat to hear your voice again . I went out with someone to test and comfirm how much I love you . though it 's very insteresting to be with that boy , Since there had been unexpected visters , I used up my coffee beans and I forgot to buy new coffee beans . I love the smell of muffine and coffee . It makes me feel so happy . That is my fovorite moment of a day and it is where my enagy comes from . My body is still craving a coffee and I am counting down the time until my fovorite coffee shop opens . Today was a boring and a tedius day . So I feel bored ( & tedius ) . I want to go back to school . But , the language specs were very interenting . I cook every day because I have experience working at a restaurant as a part - timer , and saved moeney . And I also heard that somethimes lions show up . . . . the University 's liblary to study for myupcoming master course entrance exam . The exam is onthe 25th of Augst and we have to take 4 subjects including English . - It 's the script when I prepared the English speech contest in my 1st year in Uviv . The leader seems to be a lille bit strict . Since there are so many non - japanese people working out at our gyms , I 'd like to welcome them to our ruuning session , too , which is exciting ! : ) If you skipped this step , the remaining temperture will harm the freshness , which means it will inevitably pull the rug out from under the all efforts you have taken . I am going to visit Pune for a business trip for several days and I want to get some informtion about Pune especially about turiost attractions in the area . The first one I draw is based upon the `` Madonna Della Seggiolia `` by Rafaeollo . Because it is so difficult to explain and express my job in dateil . Many good friends who have different countries are prabably here . To get a satisfactable result , I decided to get a 600 score . Next time , I will see her befor my day off : ) Hello eneryone . One day , I used goole to help me improve my English . I do n't know why but I probably spend too much time on Internet or I do n't eat a lot of food and I often drink a lot of coffe . I 'd like to get in fittnes clubs ' gym . This gym has a lot of foreiners and that 's why I 'd like to get in . I learned that some western cultures have the concept of ' personal space ' . This means that people think they have an invisible area around their body in which they are rightously occupying and when some an unfamiliar person comes in to that area , to them , it is an intrusion of their privacy . I hope that these past weeks were also usefull for you . It sonwed occasionally . And in the world , it is natural that lots of people spend it with thier families . They want to spend it with thier special boy - friends or girl - friends . Although speet limit is 55 mile an hour , most cars drive 70 miles an hour . Normaly , rainy season lasts until June if my memory serves me right . Sometimes I felt uncomfortable , beacuse my boyfriend seemed to love talking with the girl . Altough I know they ca n't have any relations , I do n't like that he talks so much with her . Suddenly , I felt angey and asked him , ' Why do you know she loves it ? ' there was a menial man who graduated from Camblidge University The man went into militery service and passed away in France . one of the my most favorite auther At the milk celebate , there was ' milking experience , making milk cheese , First , we put 8 lavendar oil drops , 2 drops of milk concentrate , Previously , you guys comfirmed my resume for me . Thank you for that . I am intersted in this new experience . I need to bake a pie , fri potatoes with beefstakes , little pastries , what else . . . Well , I 'll invent sommething else to cook . The Korean natinal holiday `` Chu - Suk `` is over . We talked nicely 2 days ago and he was in bad mood . I stood next to him , helping him thorugh his problem . becouse I like movie so I woule like to whaching enghish movie . My favorit movie is Jackie Chain . Because my husband 's work was becided in Frankfurt . Sometimes I think that days are so short because I ca n't do much things . However , on weekends , the days are longer and then I do n't know waht to do ! Now it is wintter vaction , so I am happy : D torday I erolled in Lang - 8 after a friend introduced me to the site . She said I can write on this website , and someone will correct my writing . Taipei 101 was build by the KTRT team and there are 101 floors above gound and 5 floors below ground . During the power outates , the traffic lights do n't operate . a bit tired as I am , I am pleased with him knowing more about chemisty . I am satisfied with my attitude towards the job . By the way , my friend and I studied MATHEW on Saturday Bible study . but I have some free time to do something like this nowdays , so I 'm doing this . If I paseed , I have to do the interview one more time . Somtims I have a cough , runny nose , How can I lrean English ? I had bread and soup for diinner while watching TV . However I think this situation is not common for the typical Japanease . That 's terrorable . From the th to the 10th of May I was in Nizhniy Novgorod . A tyhoon is approaching . The wind has picked up and it 's pouring . I 've just started Lnag - 8 I 'm an IT engeneer , so from technical view , it is not so hard , I thought . I aloways eat dinner at 11 p . m . Since she is very knowlidge about archtecture , and we have different opinions about it , we do n't get tired of discussing it . Besides , we can enter free of charge and the plice of food and drinks is very reasonable . Valleyball Game I entered a valleyball game last Sunday . I usually use some LUSH products every batht time . So I decided to be an instant colunteer interpreter and help them . Well , I 'm a graduate studnt now . Of cource , it 's a part time job . The paerty will be given in Tokyo at Roppongi . The recruitment number is 1000 peopre . What desine design we put on ? Is anything I can write that has never been writen by others ? I will study tourism in univercity for 4 years . I am intereste in the food problem . I am looking forword to going abroad to study . Yesterday , I had a party with my neighbers . Three people are living in our apertment , and sometimes we have dinner together , or talk over a cup of coffee . Althought we only had 30 min to cook , the meal turned out to be really gorgeous ! ! ! Althought I failed to win a prize at Seoul office of education KOI , I thought I was very good at programming . I 'd y be very greatful for any help to improve my English . The corn bits tenpura was the most dericious dish . Naturaly , we looked the bill and were surprised and laughed . To be honest I do n't like to study or memmorize grammar rules . I ate chiken rice twice in Singapore . I prefered the grilled one , so I placed an orederd for it . I felt it was like teriyaki chiken , a japanese dish . I ate an entire half of a chiken with my husband . I tried chiken rice again at the changgi air port . I am going to live in singapore from 11th Octomber . I want to eat chiken rice sold in different places ! I am becoming an architect and want to know more about my work , buildings , and desinging in general . and music ( I diskile pop music and prefer genres like metal , metalcore , hardcore , punkrock , etc . ) . Sooooo . . 27th Febrary is my father 's birthday . I bought his favorit ramen and wine . This is because it makes my shose and skirt damp . it doesnt have any poitns . you shouldnt read this lol hi guys , sorry I havent written any entires . I have been forgetting about this lol I didn n't expect that I could have such a lovely time there . its alredy been 3 weeks since I came back here . I deffo will keep studying english . If you are goign to get scared , I suggest you stop reading . I think if you see sonthing scary , you will keep your eyes open to protect yourself . But it 's the first time I 'm going there and kyouto is one of the famce ( ? ) It 's bacause I heard from my friend that I would get many calls and messages from unknown people . But I recently have become confidnt about my English step by step . I think that it 's about time that I start skype and talk English possitively . The Shinshouji shrine has a gardian angel for the Kabuki artists and the Sumou athletes . You can find Kabuki artists and sumou restler on February third . People who got chocolates , cookies or various gifts on Valentine 's sday give presents to the people that they received them from . Firstly , I think there are three ways to understand the meaning of words of second languages - replacement , internal difinition , and external difinition . Internal difinition means learning words by dictionary difinition . External difinition means learning words by guessing its meaning when they are used in particular situations . Our experience has taught us that it is difficult to learn words with only their dictionary difinition . By learning second languages , you can enjoy tranveling abroad . First , the only way for Japanese people to understand English is to learn by external difinition because of ( due to ) large cultural differences . So we have to learn English by external difinition . By doing so , we can understand the exact meaning that we ca n't if we interprete English into Japanese . We have to stop the traditional way of learning English : interrpretation . this is my first day using lang 8 and I made a blunder , because I choose german as the langauge that I m laerning but the fact is I m learning english ! ! I cae to singapore 7 years ago I m here to learn a new language also I wanted to start a new life in a totally different place but of course singaproe was just a temporary place for me , the place I really wanted to go to is england , the reason for me to go there may be ridiculous but I think it is tolerable , the reason is I wanted to have a british accent , its cool furthermore it sounds professional isnt it ? While depressed , I glaced at the date which is April first . I believe that memory is nerver lost , even when it seems to be , because it has more to do with the heart than the mind . So , we can walk around Shinjuku , Harahuku , Shibuya , Ayoyama and everywhere in Tokyo easily . Maybe they have seen my old pictuer on laong - 8 . I 'll have a nap now and memerize some words this afternoon ~ This Sunday I will vesit a host mather for just a look . For me it 's fashinating looking into people 's eyes and reading through them to know their real feelings , their eyes can tell me something hidden , what the mouth wo n't say : fear , sadness , happiness , envy , shyness , embarrassment , anger , surprise , pleasure , lies , pain , complicity , reproach . . . If we look at the most famous paintings , for example Monna Lisa , the intensity of the look will capture you and will invoke an emotion . I hardly understood what everyone was tallking about . On the way home I stopped by the book store to buy a textbook to make my listning skills better . The big problem is the ice wind that belw right through me . Besides , I really like to listen to the sound of nater like birds singing , water flowing and rain falling , and the best place for it is Unmun Temple . Please giv me advice ! ! ! ! ! ! ! ! ! ! ! ! ! ! : D But untill now , I have n't been able to figure it out . I got the first comments for my jurnals . Thank you for cheak it . Today , I went to my other campas . It 's much farrer than my main campas . Yakuza is a Japanese gangstar . when you take only the first syllablus from each number , they are called , 8 ( ya ) , 9 ( ku ) , 3 ( za ) . My hometown , Kobe has a big house of a gangstar known as `` yamaguchi group `` . However , I can not help but be impressed by the beauty of the tatto on their backs . Tomo : `` ( Pointing at a sweet shop with Chirstmas decorations at the door ) Daddy , can we go into that shop ? `` I 'm going to resatrt to write . If you do not know what a Chikuwa is , read my previus post . Because of Harry Potter series , I began reading English novel : such as Hernry James 's short novels and Jane Austen 's six novels . Besides children novels , I also think gothic novel are intersesting . And this semester I need to write a reseach paper about Dark Romanticism Because Japanese book has many pictures about maids and Vctorian times . France has ballet , Hawaii has the fula . I 'm very busy thses days . When I go to bed many kinds of ploblems are coming and going in my brain . Someone tought me that if you have a ploblem you should n't think about it at night , because it makes your brain more excited . Generally , most of them were built during the feudial period . Each of them has distictive feachers . Priviously , visters used to be middle - aged or older men . Besides castles , Generals and Lords in the feudial Period are also popular . But when growing up , you 'll find everything is differet than what we thought before . We have to learn to bear what we do n't like , and we have to work to feed ourselives . We have re - instructed the packers to make sure to use proer packing material and we have made sure that panels will not shift in the carton to avoid any damages to the board . Yesterday , the tempetature went down , and many people feel that autumn has come . aaand I am not prepared to give a presentation ! I 'd like to read this book a lot of times and to develop my skils . And I do not have a kimono for sach a formal place in April . I have questions now , so I want to answer these questions , but these questions are a littele difficult and abstract . What is the difference between a scientific aregument and a speculative argument ? Suppose tjat you are developing a medicine . Is such an experiment likely to give you new inshight ? ? This way of living can be difined as ' ' passing through , `` which means that one finds the meaning of an act , not in the present , but in the future . For one person , ` ` praying `` itself is an act and a plesure . I love kimonos very muchk , but I do n't wear them very often . Now it is raining and sometimes snowing in the cetral area of Tokyo . From my personal viewpoint , I do not like cold weather , so I really enjyoy the warmth of this winter . That 's just what one would expect of a Havard grad . A : I 'm afraid it 's too much to ask , and I hope it is n't too much troble of you , but . . . . I 'm not a fashionable person , but I 'm interetsed in fashion : ) We got to the trush bin and found my empty plate , empty juice bottle and empty sweets box . . . Some hugry people should have been eating them . It was my falt , but he did n't need to be so angry . I hope he will be assigned in another department next quater . He was very surprized and looked at me sullenly . Becayse I was content , I went to sleep , Because this Plase is closer to the seismic center than Fukushima - nuclear power plant AND Onegawa - nuclear power plant was hit storonger than the Fukushima - ones from the Earthquake , Tsunami and seismic intensity . . . . . . I would like to emprove my English skills and learn about each other 's cultures . My first english dialy . These day , I have been secoleded for not resting sometimes ! in the following sentense : my classmate is warnning me that if I still have n't sent any part to my supervisor the worset thing is my friend just came to vist me from Nottingham . . . According to their comment on NicoNico Douga , they put sticky notes on a piece of drawing paper to make Mario , Goombas , and Koopa troopas . Probably that partnert could be an lang - 8 user , that would be nice too , so I am starting this search . Then I spend every weekdens to study Japanese by reading aloudly , for I have to study hard for my major as a junior whoes dream is to pursue further studies . Almostly all of my classmates have begun to prepar for NETEM , and that 's a little scary I think . You have touched me so much that I do n't konw what to say . It looks like three - dementional art . geograhy class 0904 : What is the diffrence in taste between IR - 8 and Japanica Rice ? I hope that they will eventually remenber each name and location . What is the difference between IR - 8 and Japanica rice when eaten ? Thery are really clever . He had heart on forhead , which is lovely for the valantine 's Day . I would like to have ridden him even the frist time I was scared of him At first , I could n't adapt to those teenagers who were noiseful in my calss or doing unrelated work . The parts that I ordered last week arriverd today ! ! It looks goood ! ! I look like a hamster whith big cheeks ! I am very gald the other person roccrect my errors . I gave lot of care to the schedule , ingredients , data of costomer and so on in this one month . It is famous for its hot - sping and beautiful sea . June is a rainy seazon in Japan . When the rainy seazon has finished , the summer seazon comes after . Some people do it like kissing or something befor they even get a boyfriend or girlfriend It is just like you liking someboody . What is the difference bewteen befor and after something ? Sending emails and making calls use a lot of Electoronic . Also used telephones are always abadoned in remote areas . It is not good for the enviornment . Neverthless this movie was a comedy , at the end the women made it up and it drow tears from me . and I wondered why the blanck of `` school and address `` is very small . I am twenty three years old ; it seems that I 'm not yong , but I am still in school . I hople in the furture I can have a beautiful life , and I konw it 's not easy . As a man , you must give your family a comfortable life . you shoula make your father and mother know you are strong enough to support a family . But I 'm still a student now ; I can do nothing escept learn and learn every day . I hope I can do songthing for my family , but I do n't know what . I am lstening to Eminem 's music right now ! Jeju is a beatiful island . One of the women and the three womeni are my friends in my university . We schelud to meet at a pub in front of my university . ( not necessary ) We introduced each other and then we drank soju . ( Korean alchoal ) We had a very fun and intersting time . Recently I ve started listening to English audio books to improve my listenig skills . Now I 'm listining to a book titled < Witch & Wizard > and I . . . I think the author of the book must have either seen too much japanise anmation or is a huge fan of the Harry Potter series . Anyway I 'll finish it somhow some day . It is traditional ivent to visit the grave of the deceased . How about your countory , what occasion 's do you display / celebrate Okay , anyway what I am trying to say is that cheese cake is not just a cake to me , it is a goumet to me . A spong cake should be the most basic step of any cakes . My daughte wanted new outfits as her Christmas gift and I wanted a new laptop However she graw up and she already knows who Santa is . Watashi wa Surubenia - jin desu . So , in future ( when I start my world travel . . ) , I will go to many contries and meet my friends . . . I welcome many friends from other contries . . . I alredy died so many times . . . But it will be very defficult to make . This is just the biginning of making my app . The next morning I felt exhastued . Now that I 'm healther , it 's time to resume learning English ! ! I read some daiaries written by Lang - 8 users learning Japanese . Restart Toiret Training Mothers should n't be too nurvous about this kind of discipline . One day , she played with her friend climbing the jungle gym , but her friend always climed higher than her , and so she started to cry out of frustration . However , she has been suffering from hemorrhoids since last month , and we finally succeeded to have her wear diapers to heling her buttocks . Van to iidesu . watashi ha nohongo wo renshyushitai desu ! Though my job position is a common clerk ( I belong to the sales department ) , I have a lot of responsibilites to my customers . After the Tohoku Earthquake , Electoric companys are saying that people should refrain from using electorisity . We believe this means that gas users will come back , but still many people are choosing all - electronic residences . This is the first time I 've joined this webside . I heard about it yesterday and I want to improve my Enghlish , so I joined it . I hope everybody will help me improve my Enghlish skill . The breatiful trees on the right side of the street where I 'm walking are blooming . Riding a bicyle up the hill on summer days is very hard . ( in summer ) I wish to get to know some friends here to study toghter . Merry Christhmas Merry Christhmas and A Happy New Year . or when I see a car of the same type and coloer which he drove . He was my dreamer , he showd me a lot of things . We are plannning to play games with kids . I 'm trying all that I can to learn English and japonese too . . . Today I was , in a `` how to learn japonese `` blog , and I found a theme about my japonese . . . also , I grilled chicken breast and spwrinkled some pepper and salt on it . My summer vacation in 2005 was exciting because I went to Dagupan City in Philippines where my cousin 's familiy lives . But I especilly remebered visiting the Hundred Islands . I had a nice and peaceful time with my cousin 's familiy on a island which was chosen by me . Obama 's presidencial inaugural address To be honest , I had never heard the presidencial oath in detail in the past . The Ecconomy is badly weakened . . . `` - He helds respect in the forefront . . . `` For us , they forght and died in places like . . . `` I wanna study english because I will go abroud this Andy Worhol 's work made my view be widened . I will eat soumen , which is like a nudle . The favorate book center where I want to go shopping is located in Guangzhou . But when you come to their country , begin living their life , and speaking their language , you undastand that they are not that different from you . I usually use QQ ( smilar to Skype ) on the internet with my girlfriend , who is Chinese , at 8 PM . Why would you meke coffee before going to bed ? I should have more interesting things to do rather than sleeping almost all mornig . I wanted to upload these dishes ' pictures but my cellphone 's battely had gone off . At the party , we talkd about many kinds of topics . For example , ecomic , other colleagues , men and women and music . I am studing two languages every day . Hopefully , tomorrow I will have enought time to sleep Two German women came to this farm yeaterday . Today was the first day to work with them . there are 5 friends I 'm familier with . Actually I 've heard that such an action , when lots of electical devices are turned off and on at the same time , can damage the power supply network . I will introduct myself . It is clowd today . She is aways kind to me . She is lovly to me . She aways teaches me . I have a class in one hour , so I 'm listening to music and writting this . But if I want to raise my score much , I had better study Listenig . Because Lisning should raise my socore more than Reading . I viseted my pearents and drank with my pearents . I 'd like to see her and her pearents soon ! Of course I like Japanmation too . She is so cuet and looks like an angel . I practice on Manday , Tuesday and Wednesday . That 's equall to 9 hours . Thank you for the reccomending , Beth , NurikoSpecial and Kchasm ^ ^ ( I saw KCasm 's correctin , and afterwards I went to buy the DVD . . . ) Can you see tha paper disk ? It says `` You can place the disk caontaing episode 1 here , after buying it . `` Why the hell do I have to buy it ? ? ? ? for my bithday I spent very good time in shanghai . I was very happied . I really like my familly . Maybe I can borrow some more accesories from my other friends , we will see . . . I 'm sorry I ca n't explane my feelings well about it . My mom bought me oysters as a suvenior from Sendai , Miyagi . This is my first dialy . because my acutally name is , duck jun kim . I 'm very glad to know it , but before I do I must pass my exams , because I want to continue my edication in the institute . They are very difficalt subjects , but I hope I pass them very well ! Thus , I 'd like to correct my English by writning in my journal every day . I have no Japanese friends in Hong Kong so I am looking for Japnese friends . I have never met peple who can speak Japanese in Hong Kong except my company staff . Even though you have many manythings , you see something of your friend 's that you do n't have , and you really want it . Although this is true , I believe we have to be satified . He was nice guy , cute and very jentol . Though I have no chanse to speak English in my workplace now , Because my friends or relative always rememdere that today is my birthday . I 'm looking forword to this meeting with my friend . I knew that IKEA in Japanese pronunciation is deffellent from English . I had to ask somestaff members about my luggage , but no one could speak Japanese at Honkong air port and no one helped such a miserable Japanese man . I made a mistake , and almost went to cutom counter because some members of staff told me I should go there to receive my lugagge . Some members of staff stopped me at the entrance of depature lobby , because they found asmall scissors in my bag . I confirmed my flighf schedule at the big electronic board . And after that , I felt he became somewhat better thatn he had been . It 's very nessary ! JUST WAITING , WAITING FOR SUCCESS , I DONN ' T BELIEVE GOD , BUT I STILL HOPE GOD can GIVE ME A CHANCE TO TAKE CARE OF MYSELF AND YOU ! ! I learned English for some years in school , but I was never succesfull . So , I am trying to improve my English with this blog ( journal ) and I hope some people will correct my posts und help me to be better in this language . fortunately my friend drove to the theather . so I appriciate her thanks to my frined ! terrible , I wrote a lot , but I lost them , how could this happend ? he is an inspector of agriculture and has a big tatoo on his back . You can comunicate with anyone in foreign countries , since English is the most important language . Nowadays , even a strong counry ca n't easily make colonies in the world . Hi all . I am new to lang - 8 . I need somme help . quetion about `` most `` Cameron Diaz jost now on TV . Tom was so homesome and Ms . I am an engineer of a construction company and I am constructing a phermaceutical factory in Shizuoka . So I enrolled a correspondence university to get a teacher lisence . At a hair salon in Harajyuku I was off offday . I always have some bread , coffe , and salad for breakfast . Especially , extra virgin oile is very good for health . However , I have to admit that I should put much more effort in studying Enligh . But I 'm still murmering when I speak English with a native speaker . Japan is in deep ressetion . I heard from xx that you helped deal with office matters for me during my sick leave . I relly want to thank you . For exsample , kindness , sincerity , strongness and so on . As for me , I think frendsihip is important . It 's my first time to regestry here They were amazing and their monuments bear witnnes to how great they were . The ancient Egyptians managed to build their country and leave their feetprints in the land so that we can remember them . Osama Bin Laden was killed in a mansion outside Isalambad and his body was recovered by US autohrity . I am going to begin writing a diary in English tommorow . Although real cars is consist of hard iron , this movie portrays many personificate cars as soft and cute . I told her of my recent problems , and she adviced me to do everything slowly , and at my own pace . Japanese people have a many oppotunity to hear American English from movies , dramas and music , but in my case I hardly ever hear British English in my everyday life . MF consists of / consits out of three families having distinct characters . But she has difficulties studying , which worries her momther a lot . My freiend works making Bizenyaki , so I will get a chance to visit the Bizenyaki work place . So some of them are very skillfull in their use of English and they are even better than I am . So I adviced her . Today , I listend to Taylor Swift 's songs . a sandwish . The following are the comparation between them . When I wacth the financial news lately , almost every time , many traders on the stock exchange bury their heads in their hands looking distressed . Soy saurce factory and the end on the tour , you can get a bottle of soy sause : DD So I booked a nice restrant to hold a end of the year party for my office friends . If someone has to check due to an emergency , they should ask permission befor checking it . airplane because tha body color is blue and I like blue very much ! At my university , there is a place I offten go these days . It is more relaxable there than in the library . espect my speaking and ( my ) listening . I do n't know what I have to do : learn each pronunciation of a kanji , or learn pronouciation of words using this kanji . I went to the baseball park with my friend on Sayurday . Some friends have already started finding employeement . This makes me nervous . I studied there for two years , and guraduated in 2007 . When I moved from my parents house , where I had my own room , to the dormitory I had to ommit some things I wanted to get because we did n't have enough space in the room . Why did I grou up like this ? I enjoy optimistic people , who want to do new things and who laught a lot . Her friend said that if you soaked this mando in a yogurt , it would become a fresh mango ! She is very positive person , which makse me a positive person . Can you help me translate this into the right gramma ? The plane has been carring more than sixteen - thousand passengers without any serious accidents for the last ten years . Today 's weater is very fine ~ Well , I 'm goind to go to New Zealand during the summer vacation . In British custom , putting red poppies on their chests is to pay respect to all war deads on th 11th of Nov , an armistice day . By the way Catcher ~ 's influene is a little strong . This periods American authers are very good . Fitzgerald , Capotie , Richard Brautigan , Charles Bugowski . . My favorite short story is Fitzgerald 's ' Babilon Revisited ' . It 's a loely and a little sad story . This story 's charactor 's conversation is very cool . Hi everyone , I just registered this afternooon , and wish someone who could improve my pooooooor English . I also help my friends with Chinese . . I agreewith her opinon . I have an iPod touch which I won as a prze 2 years ago . except for the phone and mbile internet features . I did n't get used to serch a web manual , This opened thegateway to knowlage , information and passtime . I was able to show friends odawara castle . But the risk is it prevents me from stading and reading . But before sleaping I can enjoy watching movies in bed . iPod touch is my tough and enjoiable friend . In the central neighborhood every ten steps that I took there was a newstand . I 've never seen so many newstand together . . Two survivers were found today in Japan ! Today , two survivers were found after 9 days . I had an exam this moning . I will have to take the same classe next term . The Delay Becasuse of the Typhoon The texts which should be read are fortunetly not difficult . If I were more acitver in the seminar , I could learn more , but if I concentrated more on the seminar , I would be tired . Yet today is a very warm and spring - like beautifull day ! So I decide to take the exam alought I do n't want to study the laws and theories . The gangs of New York , the black underdogs , the Indians in reservates that lose their spirit . I watn to enjoy keeping a diary . fable about cofe ( translated from Russian ) In the first , he threw a carrot , in next pan he put an egg and the last pan was filled with granules of cofe . After some time he took out the carrot and egg and poured out the cofe . - Carrot and egg have boiled and the cofe have disolved . But what about the cofe ? - It 's the most intresting . The granules of cofe have absolutely changed the water . Recentry I am very sleepy . Hello ! My mame is Sumi ! It 's my first time to write my dialy on this website . I hope I make a lot of foreign friends and learn other languages and teach Japanse to whoever wants to learn it . It 's getting warmer nad warmer these days . By using this device with 4 kinds of filtation , clean water emerges in the end . In a small town , you have to own a car to ensure a confortable living . Another aspect of the excitement of city living is the variety of cultural activities avaiable . Still , I would rather be a bit more cautious and live in a large cith than to feel secure but bored in a small town . Guess how many times I can write `` clouds `` in a pharagraph so short ! I got in one university finaly ! ! ! ! ! I maight live in Kyoto ! ! wao ~ I 'm so happy now Please check my dialy . We went to drink after the race and cought up with each other . Whether you belive it or not , Tsukasa and I had already thought about an escape route just in case before we went there . On the thatced roof I read an internet blog article repoting a new program , titled `` Kimchi Chronicles `` , which will air this year on PBS channel in the United States . Both noodles have a very smiliar flavour , but the noodles are different . It might be uncomfortable to a foreigner , especially if the she didn n't like the untidy atmosphere of a small restaurant . The restaurant is very famous for Milmyeon and as I heard , the tast of the noodles are quite delicious . It was an experimental exam , so we ` ll write it for a note in the ehd of May ^ So I bought serverl lottery tickets . To spend sereverl minutes dreaming and being excited is not so bad . On the other hand , when the brid arrived at the wedding , she looked so relaxed and happy . It has been one year since I met them last , so I enjyoyed talkin with them . African music is so rhythmic and has an unique tember . So , I like it ! I didn ` t reserch anything about the country yet . I sometimes pick up those leaves that have grown enough and saute with solt and peppar . We tookthe train to go to school and we would come home together from doing homestay . Jis name is HYON . You can learn about Hideyoshi and the relationship of people surrounding him with English imfomations and also can see a lot of works of art there . Since the new SCM project started this March , I ve been quite busy . . . Although the tenpertures is still low ( like - 5 to - 10 ) , the weather has been sunny recently in Toronto . The other day , even though the tempertures was - 5 , people were drinking on patios in the afternoon ! Unfortunatly , it is prohibited in Toronto to drink outside . It would suck to be sneezing all day when the long and cold winter has filnnaly been comming to an end . doctors always write down manin diseases , but from my point of view , it does not always mean main disease . We should lok into the patient 's diseases if the are correct enough to justfy their treatments . I 'm hangry . I 'm hangry now , but I ca n't eat anything because I have to get a medical check at 2 : 30 in the afternoon . Some people caught infuluenza . But I still caought a cold again : ( And I finally deciede to get it . But I felt something strange with this clothi Tonight , I recieved a notebook cover that I bought by mail order yesterday . It is very expencive but it did not satisfy me , because it is a little bigger than I thought . Please contrtibute in both English and Japanese . I have tasts tomorrow at school . I have to syudy tonight for tomorrow 's tests . but I continued studing English after work . but English studing is very interesting ! ! It 's been a long time since I have written an English dirary , so it will take me some time to get used to it : ) haha ~ ~ nice to meet everyone ! ! Chanpion ! ( 24 / MAR / 2009 ) I didn ' t go anywhere becouse I watched the WBC on TV . I was sisappointed . Qestion : How to learn language ? Thnks TO them , I can listen to English while having fun . Incidentally , because it is very difficult , I gave up reading `` HERLOCK HOLMES `` . Today , I talked and palyed tabletennis with him . Since he rolls a turban on his head everyday , and I had caght sight of him praying several times . Anyway , I have taken an interest in Islam culture since long time agoe . Frankly speaking , I wanna ask him some quetsion about his religion . learing norsk . . . We were strangers , but he made a good impressiom on me . But maybe you ca dont tell from this pic . . I naver acceput some stimulation like . . . montain erupt = ( LMAO Yes , I know I will soon be attending a universty and that I 'm 18 years old . When some people find this out about me , they are suprise and they think that I have a proplem . I can learn a lot of new information from cartoons , spically cartoons about history . I love a lot of cartoons , spically Japanese anime . I like anime that are about proplem in socity or about history . My favorit game My mother told me , `` You should creat your eveyday life to bring more brilliant moments in it . `` About Shi - itake mashrooms ww I 'm recently interested in California , because my univercity recommends us to go abroad to study at Univercity of California . That is because McDonald 's in Japan campained various American Hamburgers . It is famous as the home of the diety of studies . In my opinion , Korean food is the most dericious food in the world . When it comes to things that are `` slow and patient `` , nothing quite matches the variety of Korean cursin . I felt it 's important to studing English recently . You know , Japan is a small island , so we do n't need to speak English . We rarely meet Westerners , supecialy in rural but urban areas such as Tokyo and so on . I felt it 's neccessary to learn English lately . So I started this servis , `` Land - 8 `` . sometime I think I am really want to study archtecture or . . I like vegetables becase they are not too rich to eat . I 've been tempolarily back home this holiday . The comsumption of energy is clealy increasing all over the world recently . The excessive comsumption of energy has caused various enviromental problems . This very famous song is written by the extremely talent musian Jose Feliciano . That is the epic goal of every musicain , to reach to the heart of others . From today , I will write consitently in my diary . If a dog is a rabid dog , it 's very dengerous . Nise to meet you . My favorite caractor is Donald Duck . By the way , I have n't logged into Lan - 8 in a while . I could n't log in because I had forgotten my ID & password . Also , I have not been able to find joyfullness to keep a diary here . I woud n't like to add any more social networks . Despite my feeling , my English teacher eagerly encouradged me to keep a diary and write something in Englsh yesterday . I read a scientific magazin a few days ago . I 'm a vegetarian , ( actually I 'm a pescetarian , it 's almost impossible to be a perfect vegtetarian in Japan ! ) and it 's very rare here in Japan , many Japanese do n't even know what a vegetarian is ! I go abroad quite often and it 's not hard to find bege food in other countries , esp , in India all food is marked saying whether it is for bege or non - vege . Maybe I should open a restautant for vegetarians ? ? I did n't go to work because of a toothach . But just after luch , my toothach flared up . I hope my toothach can heal quickly . It is an English conposition about studying foreign languages . Three Rossian sumo wrestlers took some drugs ( marijuana , hemp , etc ) and then they were caught by the police . I want to learne Japanese . I 'm ready to help your Bulgarian . The Earthqueake wreaked havoc upon the country especially in the Tohoku region . Nowadays , I see people smoking in the streat . Today is ectremely cold . If it is excludee , it 's all fun . I treid again and again . pas de volly , pas de vie . . . I know I 'm crazy but I love tham and I really think they 're beautiful ! I 'm not sure if it 's cool or not , but he appers from the top of the fire engine ! I have a great spot at the front where the fireworks are shot , many fireworkers are now setting up the fireworks . : ) I was sprised that they had gotten my phone mumber from a teacher ( not sure what this last part means ) But I am still happy , I am no longer worried about how I can attract more membesers , and that adds to my confidence . Now , I have to prepare the welcoming ceremony to let more freshman particepate in the club . E - mail makes me feel happy , but uneasy and sad sametimes What deos `` text contributions `` mean ? Is it something like ' This book is for Helen ' or ' For my pafents ' , written by the writer on the reverse of the title page ? so it dameges the hair . I want to improve my English because I like talking with people ; girls in particulary . lol I intend to pronounce the corretion of this entry and be corrected by my pronounciation by a native English speaker on skype . I love spring because it 's wormer than winter . Yesterday I bought a used bicycle cheeply from a co - worker . That 's why I made plans to snowboart first . I do n't like to go the amusemnet park because the route to there is heavily congested all the time . becuz 2 days ago I hung out with my best freind I mean , for insyance , at first they only detected oil in one place . Besides , befroe the petroleum was found in Daqing , it ( the region ) was a wasteland . Grammar and listening were more inportant than speaking for taking ( the ) exams . We are comportable with each other . Moreover , I like the atmasphere of getting together with my family . I am now an exchage student of Bergen University in Norway . The documeent is very important for our work . We have to improve the service continusly . to evangelize the Pakistian people . When I heard of her story , I desided to be a teacher A way of thingking by Japanese is restricted by Japanese social convention without realizing . because the girls there are beatiful . We wrote calligraphy at frist , and after that the teacher started teaching us how to sketch . today I met my older sisiter and her baby . I like the British spelling , pronuniation , and expressions as follows : sound in Brithsh English . tell me wheter the British are more likely to pronounce it as ' I : ~ ' ? What happend ? For this competition , I needed gain waight so I would have some to lose . So I did n't fear gaining weight until today . : ] Secoundly , `` t `` play more sports I decided to run 10 km ( about 6 . 2 miles ) per day , and to ride a bicycle insted of riding on the train . All the santa and easter bunny things dissapeard and now , it 's only about eating . I have to put some money onto my rechargeable credicard in order to buy the tickets ( for me and my friend ) online . Ths building has two towers . Tomorrow , I 'm gon na leave here for Ipo by a express , KTM . Ipo is also a city of Malaysia . I will try to write Ehglish and want to be able to express my thoughts in English . So I thouht there is no problem if our store is closed today . I 'm very satisfacted with that color I hasitated dying it . I have heard that the Maldives ' sea level has been rising as the Antarcti glacier melts . This also affects the aminals and plants in Korea . So , we swiched from the restaurant that we were going to go to , to the bar . All I need is courege . My computer is slightly old and slightly whierd . Whierd . . . I hope that my english wrting skills will improve in the future . I would like to thank everyone who is goig to give me good advice . [ First contact with an alian civilization ] It is not certain that we will see any aliens because we should have already seen some of them if they exsisted . It is certain that more and more people will visit adn stay in cities because a lot of people in the world seek more convenient and comfortable lives . Of course , the number of computers increase and more people have the chanse to see and use them . Howevery , it is difficult for computers to become popular in all nations including developing countries . She visited my house twice a week and studied eargerly . I already graduated from university and my mojor was occupation rehabilitation . When I get up and look out the window , to my dismay , it is still rainning . Rainyday has recently become commen in most areas of China . In Japan this is colled an `` American dog `` . This is not the case in the US I am wondering about the name `` coorn dog `` , why `` corn `` ? ? I usually record musci from CDs and transfer it into my iPod and watch DVDs on my PC . The divce is an important tool for me to learn English through music and shows . I can watch DVDs again and it will help my listeing skills ! ! Enoshima is centerd along the coast of Sagami Bay . The region alonge the coast is called Shonan . Shonan beach is the most populer in Japan . Gettin back to my main subject , I recommend two Ramen Houses . The book is full of unexpcted twists and we do not know who the terrorist or the guardian of freedom truly are . And if you are not I would still recommend it because Digitall Fortress contains an amazing story which drags you away from our gray reality and certainly changes your opinion about thrilling books . Indain food is like roti canai , which is made of dough tigehter with some soup . MERRY CHIRSTMAS Today is Chirstmas day , but I just stay at home ~ without friends ! What is a torrbile day ! A foreign costomer is coming tomorrow . Rewinded at the classic concert . Althought it was Wednesday yesterday , the movie theater was full of the funs of Evangelion and many had to stand to watch it . I chose Business Administration when I enter the shcool . But I do n't want to give up , I will stuy harder than before . Do you agree or disagre with the following statement ? and co - workes is extreamly good . recomends on television , popular TV programs and thier children not to wath television . watch televition all night . really unhelthy for them . avoid useless and noneducated information . My life seems like such a catastrophe that I counld n't help but sob for all my past teen - life . Is it alright for a sophemore to dream anthying about her future ? I work for an IT company , supporting on - line community developers like Lang - 8 's development vender . I 've worked here for about three years . Our clients require us to make bussines plans to generate profits via internet communities . This job is difficult but it interests me because we can directly recoganize the reaction of the users through our plans . I , however , wnat to learn more , and I know that there are azure , emerald and pale * . My older sister also bought a alittle turtle after she saw my pet turtle . There is a crown at a seience museum in Tokyo . Trad Japan is one of my favorates TV programs . It explaim many traditional topics with unique perspectives in English . His favorate pagoda is Touji 's ( one ) . The host asked another guestion . The host compared Europian church towers with Japanes towers . We have never heard stories about tall towers falling down in our earthquakely - plagued country . I wonder if most of foriners think they can climb Japanese five storied I had to mediate a conflict of opinions , because the employeebe was in trouble with the store manager for a couple of weeks . I have no plan to become a polylinguest at all , but I might have to study basic grammar and conversations in those languages . This weekend has been vering boring . I have also sent an email to my director of my proyect ( the professor who advises about it ) . Now , I 'm waitting for a phone call . But I did n't have a cast , so I biught pudding . When I do n't have something to do , I go to the connvinnence store . But , it bacame a good memory ! ! The good news is that I can get home earier , so I think I can have more time to type my journal now . It was the first timeseeing an unviersity festival . . It was the usuall time . I like reading nobels and books on economy at home . I 'll go to another countly to teach Korean language maybe for 2 years but I do n't know when I will go there . If I live in another countly than Korea this summer , can you come to me still ? I have only heard of this movement until my company made us notice about it and suggested to perticipete . If we do it for 40 consective days , that 's only about a month and ten days ; we could save a life . She and I were supposed to go somewhre , but the weather is so fickle . Just a while back it was really widny and there was snow everywhere but now it looks as if it 'd never snowed . I wanna enjoy the weeken . kk Plz gim me advies ! This is a cery serious problem . I spent a lot of time learning English to get agood position in the company and I am really interested in comunication with people oversea . Luckily for me , I have had a hope for the future since I found apurpose for my job , when I was young , I just worked hard without any suspition to my job , because I thought that working in the company is our duty , even though the job is not interesting . He told us , because he thinks we are innocance , that he was willing to keep in touch with us . I have been studeied English for over 15 years . I had learned , at laungage school , however I could not understand and I fogot . I use a electric dictionary and it contains some dictionarys . This time I thought it was good to use English - English dictionary in order to learn the differnces . But the discriptions of silly , stupid and also foolish were slightly similar . And I hope to syudy English very hard ! On the other hand , 12 % people dislke obese people and this is less than the 16 % of people in 2003 . By the way , recentry one my lang - 8 friends said that he dislikes female smokers . I will have my 20th birthday in two days ! A 20 year old girl , but I think I kown a little about all aspects ! what a pitty ! think of Willy Wonka and he got nited . But if you are a person who is able to make your brain always drive on , I guess you are able to think about more useful things althogh it is different from person to person . I 'm a medical 6th grade student at a medical school , so I 'm busy prepairing for the examination for medical qualification . I ate fried chiken and had a beer . For the two paper assignment , I need to write about four papes . I 've used it for aproximately a week , I feel it suits checking feeds , watching iTunesU courses , reading some comics in bed before going to sleep . I 've done everything that my English teachers taught me to do : recite English words , recite passanges , learn grammar , and do listening exercises to prepare for my exams . lt am very uneasy . The idea that a person 's character is desided from blood type is wrong , because the fact is that there are n't relations between a blood type and a character has been proved scientifically . We have different personalities , and nobody can deside their character . I have updated my profile but I thnk it is not perfect . Please read the folllowing : Today I went to a cildren gym . He usually plays with boys of the same age ina the nursery school , but he can play with boys of different age too . After that , we went to a restaurant ( Big boy ) , snd we had lunch there . After lunch I played MARIO KART on the Nintendo DS wiht my host sister . A Typhoon is comming . The wind and pouring rain made it difficult to control the motocycle . My host family is Philipino I hava a toothache ! I went back to my parents ' house in Japan for the New Year 's horiday . In Japan there is really cold weather and the financial crisist too . So I went to `` hatumoude `` with my parents and I watched the `` Hakone Ekiden `` on TV . I userd to have 20 - 20 vision , but now I need glasses . I enjoyed a pipe prgan concert . Organs and pianos are so diferent . reacently asked me about the condition of my car by telehpone . but all I can see is a rice field because my area is the contry side . So I 'm not goot at playing sports but I enjoy leisure sports . I want someone to help me with my Enlish and Chinese . I 'm a Japanese computer enginer . So I try to study English by some ways , such as translating computer related documents on the Internet , reading a grammer book and taking lessons in conversational English . It 's a place where people with disabilites and children stay . It is my first English dariy today . I do n't know how to write . I do not have to go to work , I do not have any duties , except learnig English of course . This morning he woke up earyl at 7 . I usually eat out becaouse I have lived the single life for 9 years . It 's a very famouse food in Japan , and it 's very easy to cook ! However each country has a different lunguage even though the EU is one land . Which ones of the following sentenses are possible to use ? I learned about O - mamori in Englsh and Japanese , so I will write about traditional Japanese O - mamori . Usually , pices of paper or wood are put inside a small bag or cloth . Later it enabled me to play my kids their favorfite songs - - most of them were anime songs or nursery songs . I enjoyed speaking with many custmers . Do you know at least theree countries where more than two languages are spoken ? There are many new things , such as a dictionnaire , translation , and so on . I have n't writton a diary in awhile , haha ! I konw it 's really hard ( do n't you think so ? ) but I 'm just trying to do my best . The woman said , `` Would you like a cup of coffee ? `` `` No , it 's ok , `` I replied . By the way , I hace luck with my acquaintances . The powder is in infact from China , but it is cooked with an Arabian touch . I think I didn n't do my best . Today , my fater will take her to the hospital . electorical vehicles I watched a TV about electorical vehicles booming in China . The TV said that motor bycicles using electrical power are popular in China , so they already have a foundation to make batteries . I felt nostargie . We tried to meet the professeur and we were successful ! He remenbered me . My birthday was on the 22nd of Auguszt . My brother lives together with his girlfiend and their dog , Mazsola . I was very happy because my boyfrend did n't have to work that day and he could be with me . If you read my former entries you may know that my boyriend is a cook and he has to work 4 days a week , but he does n't know when . So ater lunch , which was a bit late at 4 : 30 , me and my boyfriend sat in front of the TV and watched a cartoon , and my mother , my father , my brother and his girlfiend went to the gardenand to chat . After half an hour my brother took me to the garden where I blew of candels on my birthday cake . I wawas very suprised , but I was very happy . When we arrived at home , I immidiately decorated his aquarium and put the fish in . He swimms a lot and he seems happy . but something eles means special . And its meaning includ good things and bad things . what do you do frist ? I found I would be late for my germany class . He has been flighting against cancer since last Fall . I 've grown up with his films , so as a Japanese , I 'm very proud of him beeing recognized around the world . ( A heavily editted and dubbed into English virsion of this film titled `` Worriors of the Wind `` was realeased in the 1980s , but it did not follow Miyazaki 's original plotline . Second , there was no heavy trafic , so I could get to destinations on time . But I like rural areas like this town , becouse they 're peaseful and there 's plenty of great food . In Kokugikan , audiences were being crezy about game . it mearns , `` I have no lover `` , and I want one . The person sitting in front of me colmplains a lot . . in which , Gogu was being playing by american actor , When I was 19 years old , I watched a TV dorama , ' Shiroi kage ' . It 's weired ! ! When I was in the military survice , I took the oppotunity to go out for only one night . The magazine whitch e took today 's articles will be on sale all over the country on April 25th . What is the diffrence ? I have many paln . It was Wednesday afternoon , I did the same thing as usual , did my work , drank my coffee , everything seemed normal , but a terrible thing just happend . . . . When I was typing on the computer and thought how I should respond to an e - mail , I noticed something strange , something was moving very slowly , when I glaneed at the flower that I bought few days ago , I was shocked . . . I imitate my teacher 's pronouciation but I can not pronounce `` r `` , `` th `` and `` V `` well . And I can not pronouce and distinguish `` very `` from `` vary `` . Everyone hoped the happiness for the newly - marriaged couple . When I see clothes that I like , I just wait unitil they have a discount . hallo ! However , I think , if there was enouth time for me , I could get the right answers to most questions . You just prepare some vegitables and seasonal seafood , Last night , my sister and I sat on the bed and tlaked about her boy friend ! `` acturly , a boy loves himself more than his girl friend , inculde my boy friend `` she told me not in my area : P I really wanna finish the training in there , ang go to Heti ASAP . anyway , so far I really love it here , the pay is good , environment is great and the ppl there are so friendly ! I felt like I did n't need to worry anymore about mistakes when I am speaking & writting There is a traditional custum in Japan that a blood relation will pile up small stones to mourn their child 's death . And it 's a Canadaian version of piling - stones ( cairn ) . I do n't like to be treated unfavorable or unfavorably . `` So , he has a heavy accent which is quite differet from Taiwanese dialect . lLife should be on the go . Desperate hosewives Her narattion is rich in black humor . My work is boring in evryday life , but it is also difficult on my days off , because I am working in a park . Actully , I love my company , and considering the current economic climate , I ca n't leave . Please tell me how to pley them well . . . My car was bumbed . . . . My husbund called out to me , `` Pass the solt ! `` I did n't know the why he wanted the salt , but I brought the solt box to him . Anyway , I felt tired and started to go back to my home . , On the way I saw a apir of really beautiful , high - heeled shoesthat were marked down . But when I was cleaning a shelf , some old photos came out and my attention shited to it . I 'm not sure about Nagano ( because the TV news repots do n't mention it ) , but I can see from this blog that there is also big damage there . I do n't understand what he ment , but it is n't bad . Our 20 sufer friends were picking up garbage from the beach and sea . It is like a dream come ture . `` Ciaooo il mi ramarico ! `` I studed English a long , long time ago . Now I lean ( Learn ? ) to Japaness . I planed to have a proffetional syougi player play an instructional game , but I arrived there later than I expected , so I could n't . Watched dorama . I watched a dorama that was recorded . This morning , it was croudy . Anywasy , I went to Niagara Falls last Sunday . My Japanese frieds willingly accepted my offer , and we had a very nice time ! ! I wrote my firts English diary here today . Recently in Japan , he has become a famous directers . Watching videos on you - tube that Ellen appears in , it dawned on me that she got married to her girlfried and it is out in the public . After knowing the fact , I felt awkird about watching her show because I could n't help myself feeling some discriminatory against the insanity of tying the knot with same gender . And I read an article in the newspaper that in New York , marriages between gay couples is officially legalized and it is becoming the fourth or fifth state where the gay marriges are allowed without being against the law . My colleage said that Chinese drivers ca n't understand even easy English . Sometimes , I feel so coufused . All I hear are the sounds of typing and music . Everything esle is silent as though people did n't exist ; as if I 'm not alive . Especially after getting maried , as we have dependents . It gives us a resonsibility to support them . When they started thier business , they made many mistakes Fainally , they succeeded with their business . It became thier culture of the company . my websit Chinnese names is different from western names . I live in Shanghai , I have studied English for many years , but I still ca n't speak or write English fruently . I happaned to meet a mussle man at a shopping center . He was speaking with someone by use a cellular phone and then he suddenly got angry in a lould voice I was a little scared and I thought he was so rude . However , I was wrong again . I also play the trumpet in a Jazz Band and actually I wanna be a professional trumepter in my future . The new job is totally diferent than my old one . I had my hair cut doday . Some says that radioactive revel around Kanto area is highter than usual on Twitter . Another funny occure He turned around , ran out of the court hall , which was on thesecond floor , and ran alog the hallway to the stairs . There areso many occasions like thisall aroud the world . . . It was an irresistable impulse . Although the summer was extremly hot , it was a short period during which I could 've seized the opportunity to get intimate with her . I have since returned to campus and the signs of summer are graduately fading away I checked the Japanse - English dictionary from the column of Kana syllabary . How can I possibly theach them ? In the end , I accepted thier request . Happy Haloween ! I was sent birthday emails by my fliends . Other specialost say that you should eat a light breakfast . What was interesting was that someone who wore an armband which had characters `` STAFF `` warned a man who smokes in the yard neaby my lab not to smoke there . I know there are so many differences between the eastern and western culture , so some peaple may think ( that ) I should n't be so worried . I have problems with the past Continius , past perfect and present perfect . `` You know why you are having problems with english gramar ? `` I asked , `` Why ? `` She said , `` The reason is that you are thinking in spanis , that is why . `` You know what ? I thik evereting is going to be just fine ! I have been making progress now I feel more confortable talking with people whose native lenguage is English . I ve hurt my wrist She said she was 49years old . When I heard her age , I was very surpised because I thought she was around 70 years old . by the British goverment . UK economy shrank by 0 . 5 % whichi is a suprising result for all because it had been predicted to be between 0 . 2 % to 0 . 6 % . This dissapointing figure is partly because of the extremely cold weather in December , but it is said that public spending cuts have also affected the UK Although it is important to tackle the huge debts of the goverment , I think it is also necessary to reconsider the amount of spending cuts and make sure the economy will continue to grow in the future . fitst , I think I should introduce myself . I showed reluctance to go on to a Japanese Univercity So I want to go to an American Univercity . After graduating from an American Univercity , I want to work for a foreign - offitiated company . Happy new yaer ! I went to my groundmother 's house . Otoshidama is plesent money . We just played one game because we were so hungary that we could n't wait for dinner . In this job I will be a superviser of sales , although it 's new area to me , I ca n't wait to try it out . So I have to take her to the hodpital in the next city . she is one of the Japanese populer singers and I love her very much ! I had to practice danscing every GW so far , for I belonged to the dancing club . I could say that Ayumi Hamasaki is the most pofessional and artiartistic singer in Japan ! It is the frist time I am writing in my diary , too . I dreamed / dreamt of hugging her , telling her I 'd missed her so much , and she just smiled at me without saying anyting . The dream is so warmly unforgetable because I could see my beloved family member and tell her how I had been missing her . When I was born and growing up , my grandmother cared for and encouraning me all the time , and now I think dreaming of her will surely bring me good luck . I was embarrsed . My teacher saw that I was making an effort to solve the qestions . His advice is right ( * ) , but I thought that I was expanding my English knowledge through research , reports and presentetions . The gap between my recognition and the ( this ? ) objuctive assessment , caused me great shock and disappointment . Learning academic words is also an important issure , so now I 'm looking for a nice word book . Some TOEIC word books might be good , but academic vocaburary is a little different from what TOEIC handles . . . ? I am majoring in Jpanense in Taiwan University . In the sencond year , we had all Japanese class up until now . I think English is an importent and an international language . I think we can teach each other our mather tounge . ( why I am writing a English dairly but with all the Japanese in my head ? In feburary , my friends and I will go to Singapole for sightseeing . Maybe Lang - 8 will be a situable place for me to learn English . That movies main charactor name is ' BEN ' ( starring Will Smith ) Plese tell me about some recomanded movies or books Do you have some recomanded movies or books ? One of them is Gneral Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the futuer by the use of Relativity . But , There are problems going to the futuer . The problem is that if you run at ligth speed , Friction of the air sets you on fire . You can go to the futuer when you slove these problems . So light spread as watering and ligth is composed of particles which we do n't watch . Ligth has quantum nature , Solves many physical phenomenon . Material which has qyantum nature is only light . Ligth is very unique matter . I 'm a house wife but my family let me alone and prepaired food for me during those two days . What I realized as soon as I looked at the school gate from across the crossraods was that the construction next to the gate had finished . I tried to watch supernatural online , only to find that the site had been rennovated and I could n't wacth the latest episode . . . . In additon , I write a diary in English for the first time . I will have a conversational English classe at night . When I was touring around Pris , I could see a lot of beautiful places , including classic and old buildings . I did n't have any Indian friends in Taiwain , befroe . But the type of rice is different from that in Taiwain . Every etnic community has their own character . ( its own character ) Beautiful sunshine and confortable breeze What is the differet between `` other `` and `` another `` ? What is happyness in your life ? For you , what is the happyness in your life ? Beacuse if I thought otherwise , I would become unsatisfied . Everyone was excitted and we got NO . 1 among 12 classes . I was born in Tokyo and have been living here up until now except for the one year that I attended a universtiy in London . I wnat to make forgien friends . I must study English hard because English is an important tool to cummunicate with foreign custmers . Dear techers , please kindly correct my sentences if there is bad grammer , wording , and so on . . . I coud not write my entry yesterday because there was thunder and lightning last evenig . For example , a guide , a translater , an interpreter , and a teacher . In that Avenue , there is held `` Pagent of lights in Sendai `` every Decenmber . My friend and I seached somewhere where it is quite to study the Chinese and Thai language , we have not found a good palce so , yesterday we studied at a Macdonal shop but there was a lot music and a lot of students do thier homwork . and I asked her about her about in Chinese they have a kungfu she laught and said that she has a diffirent type than in the movies because they ca n't sping in the free ( air ? ) or a roof like that . I really niec when we talk , good thing we understand each other some times I think she is Thai because she tried to speak Thai with me alot . `` And let 's start to speak up when people are assailing us with the noise that I played you aerly on . `` Her kindergarten class was on a one day vacation because sprots meeting was held on Saturday instead . How difficule is the TOEFL ? I hope that I can apply for Master this year , but I am afraid that I wo n't be able to apply in time most schools ' deadlime are in March . Why is English so difficule to study ! During the test I could understand the lecture , if it was about an familar field . Come on , you are 15 and grown , why do such childly things ? I 'm a graduate student studying Architeture and urban design . I want to go abroad to study Architeture , urban design and landscaping in the future , so I need to styudy English . althouh it was not matter itself , I was interested in urban design and landscaping , then I decided to study it . After I went to the grad school , my desire became storonger . In grad school , I 'm studying the development contorol system of England . The Japnese palnning system refers to the Europen one . After garaduating from grad school , I wanna go abroad to study . Althouh I think that , it 's important to work in society firstly before going abroad . I want to go to the Univercity of Pennsylvania in America to study how to design . I do n't like to wait for anybady . The Marilyn Monro picture is world famous . Yesterday I looked into an apple sotre with a friend of mine . All the merchandise displayed in the store had sophisticated desine . I wannna study abroad someday , maybe in America or Btitani . Recently , because of the presure comingfrom all over the world , they are asking Chinese government to rise the exchange rate between RMB and US Dollar . At my current job I work long hours , I ca n't take consective days off , I get home late at night , and the pay is small . . . . Moreover , becsause I 'm tierd out , I do n't feel like doing anything at all on holidays . I am ( almost ? ) 30 , and I am thinking of the future seriousely . So sorry for the compliants ! It 's confortable . I need a slitght professional pointo of view . Therefore , they overcome the weekness by the influence of alcohol . I wrote Taylor 's interview 's dictation for about one minuts , but there is no way to know if they are correct . So , it 's a really cool balance of them being completly supportive but never pussing me too hard in one direction . We do n't see my brother and my dad as much , becouse they stay back home in Tennessee . It 's really good gause for my actions . Back to the JDORAMA 's valuing jobs : whatever they may be was really pointed out in them . Their Japanese society 's portraits showed that whoever you are you can do the jobs . Like in Gokusen : she 's ( who ? ) a teacher who also works on a construction . In Yama Onna and Kabe Onna there 's a lady who can buy expesive bags that are sold , but yet she works as a saleslady on department store . We took Line 3 again and we went to the samll but still interesting restaurant again . We strolled around the campus again . Finally I bought ipod touch . Since I came to this college , I no longer complain unreasonably when I have to do something I do n't want to do but am forced to . I am supposed to be responsble for my own actions , speech , and emotion . When I get hurt now , my parents are not about to support and encourage me . I must shoulder the bunden all alone . studying , and working condition I must establish new personal relationships among my classmates and think from an adult 's perspective . However , I have n't totally converted myself from my previous state to this new one . I tend to escape and avoid this reality often . I frequently ignor that I should take a solmn atitude instead of unappropriate expression in formal situations . consquently , We gain machurity , delibration and confidence as a boy becomes a man . But I ca n't feel these in my mind . Maybe I have n't grown up at all . By the way , In Japan , thanks to the mass media 's viased broadcasts , people who love manga or anime are called `` otaku `` . My favorite song in his album ' Human Nature ' is , `` bille Jean `` . Her job is a policewoman . She is a policeperson . Althogh it is only the 1st day we talked a lot Of course , the taste was so dericious . He is a very enargetic and naughty boy . It is his favotite . She is in kindergarden . During this term , I want to comunicate with them a lot and be close to them . Do you know an inexpensive but good reaustrant in Hawaii near Honolulu town ? Seeing dolphins , eating humbergers , reading books on the beach and diving into the sea might make me free ! ! What else should we do there that you guys recomend ? After the class , I retouched a famouse musician 's picture , and some other tasks . So , we 're choreographering our dances . It is difficult to choreographering dances for me , Now I 'm still at work , but I ca n't consentrate on my job : ) The little turtle replied , `` I will , if you do n't drink my offee . `` particulary young people love it . Slowy , but surely . I am a univercity student and I 'm majoring in economics . Affluence does not always gurantee a happy life , because people wich a large affluence do n't think often on the problems which they may have , when thay live as they like . Because of their high standart of life , they buy what they want for a better life and eat what they want to eat . espacially in the U . I 'm addiceted From my expirience , I know that if I begin breaking the rules like this , I can easily give up the / my plan . We could become addictated . It 's a simply quiet and peaceful place . You can see childend playing with puppies , and people are sitting around enjoying their breakfast while talking with each other . However , you can only have a simple breakfast when you are in a rush worried about trafic jams in the morning on workdays . I always write a strange diary , and it is diffirent than my thoughts Sometimes I went to clubs or parties with them . Day by day we became freinds . I got a feeling that tonight is gon to be a good night ! tonight is gon to be a good night ! I 'm sooo excited right now . I do n't know why , I am lazy , I have no plan , I only want to chat with foreigners to improve my English . acturally it 's not good , I know , I am young , I should do something for society , I will change myself . English become official Language in Jpapanese company in the future ? ? ? Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since Jpanese market is shrinking due to the reduction of population . But it 's a little bit contravasal because it 's very rare for a Japanese company to use English as its official language . Even successful Japanese companies in different contrieds like Toyota , Nintendo , etc have not set English as a official language yet . I think people who alredy study English like us in Lang - 8 do n't think it 's a huge burden . Anyway It must be very difficult to achieve goals becasues English is rather difficult and doing a meeting or making a report in English takes a lot of time I wonder how they prepare for its gols . If Engilsh is understandable , you can get more chances in some way . But I refused answer becouse I did n't put any make up on my face . I missed a good oponutity to talk with him . But when I told that I am 38 man , almost people disconnected mmediately . Almost every time , I lied that I am a 15 - 19 gril from cali . Peoplr would come up with the stupid idea of comparing them . Hahahaha I want to run so badly in the next 21 kilometer maraton in Tijuana with my official Japan shirt and that my brother wants to wait until the end of the world cup to see the list of rankings . Although Japanese people are becoming aware of the enviromental issues , yes its gon na b last day of skool tomorrow in this term n after tomorrow , I have couple of week days off : ) well I got punishement by a teacher today . . . hopefully tommorow , my last skool day is gon na be aweosme not like today lol bye I was so luky that the bus was not crowded this morning . To my surprise there were not that many mistakes in my diay , which re - ignited my enthusiasm for writing . Japanes university entrance exams are very hard , so I have to study as much as possible . I have enclosed all required documents except the affidavid of financial support from my company . Some people agree with that opnion but others disagree . However , there is n't any chemical seasonig in the foods made at home because individuals ca n't buy the chemical seasoning . We can also see the process of making the food , thus if we eat foos in our home , we can prevent serious diseases and become healthy . Although she looks wierd all the time , I still like this character . I want to travel to Kanada . During summer vacation , we want to travel to Kanada because we have never been to Kanada . I often hear that there are beautiful nature spots to visit , like Niagara Falls , in Kanada . This Diary is English - Laerning - Record and Life - Record . Thare are many books . I will read books I borrowed in my school 's library , surf the internet like lang - 8 , go somewhere with beautiful scenery , ect . There are many sorce of knowledge . Today young people not only use books to gain knowledge , they also are serch for it in journalism , on television , on the radio , and through meeting with other young people . The refrigerator has a function that makes ice cubes automaticaly . So I decided , `` I wiil get an iPad at the Apple retail store on FIFTH AVENUE next month ! `` . It is important to garanteee opportunities to recieve fundamental education to everyone . Many people think that politicians and high society want to keep education expensible to maintain hierarchy . For example , Waseda University , one of the best private universities in Japan , has its correscponding high shcool , junior high school , elementary school and even kindergarden . If your familyos is rich enough to send you to Waseda kindergarden , you will not have to worry about future academic competiton . Simply , most Japanese poeple do not consider education important . Most companies do not consider academic backgrounds of prospective employees from humanities departmetns . I did n't know that , so it suprised me . He also showed me the neighborhood , like where was the neast ATM machine and where you could got a bus ticket . During our short trip , I saw a great view when we passed the Saskatchewan revier . There was a clear blue sky behind the brige and I saw a beatiful revier and green area . Basically , it took 35 minutes though , I made some minner mistakes and took 50 minutes . The faucet was very rudimental but it was quite difficule for me to control the temparture . Although I was quivered a little bit ( ? ) , my palm was hot and thoums were working . I am afraid that I will become busy , after the class and internship - program bigins . When they they told me they planned to go to Europe , they asked me about my experience , and especially about how I made specific plans all by myself - - from the list of cities I 'd hoped to visit to ticketing , transportation , and accomodations . It reminded me of memories of / from my own trip . I won 8000 yen after 30 minutes , so I will buy Doragon Quest 9 . Today , I attended an editorial meeting for the acamic journal concerning gerontology . Because it is my Strenth . After graduating , I worked as a mililtary officer . At the same time , I 'm the sceond leader of my company . It 's to be an Internet margeting professional . As of now , I 'm looking for jobs in a private domitary . First , if you live in domitary you can save a lot of money on food . The public library is so close to my domitary I do n't need to take a bus to it . The third and maybe even the biggiest reson for living in a domitary is so I can live freely without my mother 's repeated talk . Dreaming about my future , I 'm studying in this small space in the domitary . Aditionally , starting this week the tempurature has been very low , so it makes it more hard ( or harder ) for me to get up early . First of all , I achieved the gool to pass the examination for CPA . These days , I have read The Japan Times and The Nikkei Newspaper via internet andwrote some diarlies like this in English . Although I had time to touch up on English and studied English autonomuslly when I I really , really want to make a friend who can teah me . . . I 'm fifthteen and I 'm staying in malaysia study art . Yestoday it was repaired by one of my best friends and it is nomal now . Ganerally , I spend all my spare time with my computer every night , but when my computer was broken , I had to watch I like one channel named HBO becaues Yesterday , I came back from a six day trip with my freinds in Paris . Yesterday was very good taiming to come back Japan , because now a big and powerful Tyhoon has been travelling towards Japan , and many flights are being cancelled . Im from Russland , and I live in Moscow . I like to chat und speak with people from different countries . I dream about Japan und Ireland - I want to go there very much ! And I like Germany very much too and I would like to go there too . I did n't have a favor , but had a cough sometimes . I love anymal ! I love anymal . Dogs are alwyas very affectionate and kind to people . I want to work in the World Animal Protection sosiety . So I have to study English very hard . Eating dgs shoud be banned . Ok first off you guys SHOUUULLLDD already know that I 'm a respiratory therapist . Today I was assigned to the emergency room , wich was FULL . Well I never expected a lazy day there but it was busy as hell ! Headache occured by bad smell . I ( and almost all passengers in the train ) was suprised and confused at the strong and weird smell . We guess that one or two of the menbers bring rain with them . My friend introduced me to the job , so I learned the what to do from my freind yesterday . I hope that if I keep working out and swimming it will do me good and it will keep me & nbsp ; healthly , mentally and physically ^ - ^ Nowdays , my mind is stuck . . . Do you have any hoppies ? Would I call them `` hoppies `` ? My mother regreat that I do n't care for her . My family hause is in Chiba . untill today I have a lot of heavy tests , so I all I did was study , study and study ( I cut down even on sleeping , these days I went to the bed at 5 : 00a . m . and I still went to university I 'm going to do one or two more , and then if I have enough time , I will draw some pictures for Cristmas ; - ) But my colleage told me that `` I will put you through xx section . `` Me and my school frineds can see cloudless skies from my school . However we cound n't . a park in the beging of winter I feel rfreshed . Since he is living alone out of Koreaan as an old bacheoler his parents have been worried since he came to the US . My idea is that love is always chenging . . . , last month I had a kind of BF . They say the Japanesse have good manners , but I think this is not correct . Now , there are more than 4 ' VOCARIOD 2 ' charactors , and some PSP softs of ' MIKU ' is available . However , sadly , we hav n't met each other since her wedding . quater pounder I definetely hope that she lives as long as she can . I did not learn enlish diligently at school . Also I 'm corresponding on ICQ with people who want to chat in enlish . . It 's from Star Trec . the foloowing is from a radio show . I studied a lot there , and now I 'm really tierd . Coffee farm workers should receive a higher imcome . An acquaintant from the other lab said to me , `` I heard you have become a chon - mage man , and that was true `` when we met yesterday . tommorow I work again . First of all , I want to express my deepest appreciation to my nice frieds who helped me to correct this . I 'm realy honored to share this short story with you . My friend Kazu - chan was stabbed to death by his skiing associate when he was a third year junior high schol student . I was so relieved and I deeply thanked him ofr his brave deed . He said that he would need fried chickhen , some Umebosi - rice - balls and sausages for his lunch . I went to see the docter for my broken leg . So I had the chance to see my leg bone agin . Shall I say hi to it ? Having seen the picture , Docter was not very worried . It was really wonderful that I could see world - famous table tennis players playing just in fron of me . But my English is incorrct , My sentencies is very foolish . I ca n't create good sentencies . I have a question about English grammer . wiritting an essay is a little difficult . Because this is the fourth time I have attened this test ! Still , I getEnglish . I think learning languages is an interestig thing ! Now I am litening to , `` Born This Way `` by Lady Gaga . She is such a cool women , isn n't she ? But the only word I know to describe her is `` cool `` . I am a person who always looks on the bright side , and enthusiastic self - motivater . A barton relay the most intersting of all the competitions . Although I have skype and msn 's ID , I nealy do n't use it . I usualy go there by motor bike . We learned about passive phreases . The next class was about comparing diffirent cultures . ( Sato , the cartoon I watch recently is a Japanense one named Detective Conan . With tighter and tighter relationships between each area accross the whole world , any change that occurs in one region can influence the rest . I am not sure what the Chinse economy will look like in the future ; can we keep our rate of growth as fast as before ? She is annoied about the difference in culture . She did n't do good seach about American culture . I have read an American newpapper . The most important thing that I should be carefull about is that I have to speak English well , and talk with Americans well , too . I heard from my frinds that if you make a mistake in English , they would become a little upset if it 's at fast food stores or restaurants . My co - worker has comphensive knowelge of computers . ( thans for checking my letter , God bless u . ) You want to disappear . Everthing in under your control . I was trying to know your sorrow , the details help me realize ur heart , Today it 's ur birthday , Are you happy ? ? I am happy to celebruate ur birthday in my blog . Mciahel J , I just want to say thank you for you . I was very happay . but I have not recive a lot of mail . I like drawing the best , wacthing movies and listening to music too . I thought many street venders would be preparing their shops . Marco , a italain guy I had met in LKF in June , texted me back finally . These distractionsprevent me from concentrating on my deskwork at my desk . I offen hear a phrase in songs which is `` never be the same `` . It was a commedy , but it was very touching . In colder countries , moccains kept peoples ' feet warm . The dificuculty of learning English for Japanese people But as I am prooving that I am capable of grasping Japanese in a short time , I feel that my English is getting worse and worse . However , she is very naive and gullible , so that she gets easily decieved by other people . Durian smell was not good but , , the tasts was good . Eating durian was a new experiense to us ! If I have a chance , I wana go there again . I am so tired , and do n't konw what to do . The doctor adviced that he stay off his right leg until the pain is relieved . I wasnt n't going back to my hometown on the 31st of December , so I accepted it . I look like a telephone appointer / operator , because I am always wearing headphones and a mic / microphone . It 's been a long time sice you went to hospital . Whether you fogive me or not , it was definitely my silly mistake . She said that she misses me , and she may possibly come in Oktober , but only for a weekend . Shikoku is noted for their noodles , the hot springs and the beautifl nature . I made a lof of friends there , including our leader Rick ! But I regard integration cources not only as a social political measure for foreigners , but also as a place of learning . One definition of learnig is to change human actions through new experiences . If I run into a foreiner , they are giving me a kind of smile . I bourght an electronic dictionary at electric appliances store . Tomorow is a big day for our school because we will be celebrating its fifttieth aniversary ! But I had just ran a 5000 meter long - distance race ! It did n't seem like that long of a diatance when I was first told about it . Now I am in the internet cafe . You might ask me `` What have you achieviment in 2008 ? `` Even if a non - neative speaker speaks incorrect English , we occasionally understand what they want to say . But neative speakers occasionally ca n't understand what they want to say even though we understand it . The drink is so sweet , and it feels like I am intaking in 1000 calories . now I 'm interested in fitnessgym . after school , I 'm goiing to `` Fitness First `` which I heard , is most popular gym in australia . The concert was Base Ball Baer 's . But it was expectedly difficult . Anyway , one thing highlightened for the next semester is that I 'll have to start up the preparations for `` job - hunting `` seasion , which I think officially starts next year . For our office , we usually buy toilet paper thorugh the delivery service of office supplies , however , because the earthquake occured on March 11th , this service had stopped . I went home late . I normally perfer to wait for my friend at the comepany . However , because she had a lot of work today and I realized she was going to stay alone at the company for a longtime . Are you sick or soemthing like that ? Maybe that man will gossip about my uglly face ! I lile him because he is very kind . To catch the information about Web technologies , servicies , etc . I 'd like to countinue reading books . I hope I can communicate with poeple all throughout the world . Because he is not so good at mathmatics . I really need to appriciate him . Inrernational School . . . ? In the world around us today , we are surrounded by a variety of technical machism and tools . Starting from the eighteenth - centry , the development of technology has never ended , and has advanced faster than ever today . Technology such as air - conditioners and electronical dictionnaries do lead a much more convienient life than ever . Some people might argue that technology undermines the relationship between people because once we are developing and using the technology , we forget to keep in touch with others , and that is the `` convienence ( ? ) `` character of technology that makes people more careless about the way to get along with others , thus , everyone feels lonelier than ever . I am in charge of 26 cosmtics shops . I suggested that the owener analyses how her customer buy a commodity and apeal to nighborhood for shop 's existance . My English name is Betty , I am fifteen years oid , I like music and sport . Of you ( who read this ) do n't mind , plez give me advice . I 'm going to vist my mother in law 's house this morning . After the final exam , I have to find a job for the summer hoilday . I have already been working for four days , but I stil ca n't focus on my job . I didn ` t know how many people in Korea can speak English fluently even though somebody has n't lived abraod . I was shocked , and I looked back mayself . I 've been so lazy , and I didn n't do anything to get to my goals . Once we want to archieve great success , we have to invest our own ability by over a hundred thousand . Because of my scholl studying , I have little time to browse the internet . In the follwing days , I will do my best to update how I learn something everyday , but it 's possible my schedule might change . Two are for writting . The high - potential young guys asked questions . `` What kinds of computer langage do we need to know ? `` , or `` What are the most important things for working here ? `` I just wish that they would recognize what couriosity means . . . I am taking a English lesoon . After I woke up , I turned on my luptop . This is an amazing place ! I hope that I can improve my English writing skills and make some freinds here ~ These stories are so gorgeous and moving that many times I could n't help cring . This is what I tranlated while watching the drama , Lie To Me . This was made in Korea just for someone learing English . I could n't approch you . our bussiness plan is cleary spot - on . We took a boat that had a clare bottom and saw many kinds of coral , fish , and so on . Although I have always wanted to go abload , I think that there are many great places in Japan too . The design is similar to foregin web sites . Do you guys care if your borthers or sisters were older or younger than you ? When I ask `` Do you have any brothers or sisters ? `` to you , you might answer `` yes , I have two borothers `` . I mean a lot of people I met do n't care t whether their borthers or sisters are older or younger than them . Ooops ! simillar to me . My thesis is on the director Hayao Miyazaki , He was born in the 1941 and grew up in the post - twar years . We can see in his works most of the time , the protagonists are strong , indipendent girls or young women . In Sprited Away , Chihiro is forced to survive in a bizarre spirit world , and had to work in a bath - house for spirits after her parents were turned into pigs by the sorcess who owns it . Kiki is based on the novel of Eiko Kadono , and tells the story of a small - trown girl who leaves her home to begin life as a witch in a big city . I reserched the program later on the internet and I found out it was a long - lasting program , but each time the topic changes . of course its arebenefit for me . befer I would drink almost everyday . `` Saki no yu `` is a hot spring with a very beautiful panolama . I feel that the hot spring is very rerax . My ears are very cold when I ride my bycycle , Something ubsubstantial like `` beauty `` or `` money `` are reasonable for me . Articles are trickey ! ! I speaked on skype with John ! ! I will call him again after I can soeak English fluently . Not a hamuster . The reason is `` there are no chaire `` . After waiting for the bus for about 40 minits , the bus finally came to the station : ) ! Yesterday , I did the presentaion about my reserch ( computer circuit desgin ) in front of my proffesor . I went to a tranig center with my friend today and worked on my weight untill I can be satisfied for the first time in 2 weeks . Tomorrow is a national hoilday , I decided to take the three days to travel . The customer often saids , `` Our system needs these functions . They sais , `` I have never seen such a huge swine `` , but actually , the size of those pigs were normal for us . The prizes for perticipation are a T - shirt , a bun and a carton of milk . In fact , I want to have a new smart puone . I 'm just a human being , not a macine . I don ` t understand how you can distinguish between present perfect and present perfekt progressive , etc . . . I watch movies withthout Chinese subtitles to listen and speak English . I am interested in the energy policy , especially , eco - friendly energies such as wind and sollar power . My mother is a full - time housemaker . These days I often think Japanese nudle are good . I consider myself a pacient person . I like to help , and enjoy teaching . Today , I went to the beauty salon and enjoyed a face massge for the first time in a while . After a meeting we went drinking with my colleage . I 'm not good with cold wheather . My habbies The expression is parfect for me ! Celeblate for my marriage . `` Newton `` informs us of many kinds of scientifical things . I want this fascinative magazine to go on forever ! Recently my wife watches a SMAP 's DVD every day which was released on Decmber 8 . I would like to learn Engligh for travel and communate with others . It makes me sad because nobady believe me . it might be a bad thing brcause many men would like a women who can cook . As I get married , it would not be good for our relatonship because if my husband did n't like my cooking , we would have a problem if I could n't make a nice dinner . So I ate food , took some medicene and a bath . Then , I went to bed early . I know very well that English is so importante to me , so I hope you can help me with my English . I have a plan that I 'll go to Japen to study law 2 years later , so I must study hard , and I will . But during interviews , when I am asked to describe myself in English , I always become nervours . My friend organized free tickets for us but because we went paraseiling in the morning , we did n't have enough time to go there . I am jealous that site members can write such good Jananese composition ! ! To take an ojek , a passanger should go to the ojek pool . I can halp you with Russian and you can help me with English or Turkish , if you want ! yet we sonetimes regret . Just compare marits ? Just risten to advice ? But the rasult was the result , so I must accpet it . ( 2 ) Students who are expacted to graduate from high school at March of 2011 . ( 3 ) Students who have ( an average grade ) higher than 3 . 4 Japanese grade points average ( maximam 5 . 0 ) ; 3 . 6 japanese GPA for students who apply at the faculty of law ; and 4 . 0 japanese GPA for students who apply at the college of technology . It was colod , but we felt hot . Beacuse we could earn that money with our feet . From now on / From this point on , I will prepare for the writting module . I am not familliar with classical music , but I think his music is very beatiful and touching . He was n't embarraced at all with such an unusual girly outfit , so I thought he was completely miles away . Afer all it said and done , I feel like my body clock is very strange ! Every year is representive by an animal in Korea . I will also runnning around the neighborhood every morning . The topic of whether we prefer to eat at home or outside in restaurants has been widely debated in our community rencently . As a consequence , this will lead to a very effecient life . The people eating at home may have sufficient time for their favorite intrests than the former . Besides , we can cook dishes according to our own appetites if we prefer the food to be hotter or have less suger . This is the best way to learn foreigne languages . I want a man who is ambitious yet family - otiented . I read Japanese blogs which are popular each day . But I 'm not satisfied with those Beacause there are few blogs which treat politics or social subjects . Mostly they treat a subculture or talk about the writer 's life . He adviced me on many things I will try to study Enlish This mornig I am tired from lack of sleep . I think my cousin is a night person and she feels vivrant around that time . I must learn besiness english . It contained pork back ribs , carrot , onion and potate . ( back ? ) Today , I went shopping near by station becouse today is national holiday in Japan . so I went my home rappidly . I was cycling along the river with Yuya , who was riding bihinde me and shooting camera with a lot of enthusiasim . We run and run and run thruogh these people . Anyway , I wil keep trying my best . Electric utility expense reises these summer . So lots of things will reise too . Studying hestory . Yesterday I started to study Korean hestory again . I prepare ( d ? ) some things to study like a Korean hestory book , a reference book , a laptop for searching some subjects about which I might want to know more on the Internet , and a radio for listening to AFKN which has a lot of good popsongs . I think I live in the happiest time of all human hestory . After I get it done , I 'll study hestory again tonight . So , I recomend that you find your favorite , and make ( good ) use of it in your life . I have bnothing special right now to write about and I 'm determined I must stay up all night for my schoolwork which is due tomorrow so I 'll finish writing now . Swine flu has spead over my city . I started learning Hula this Febluary . I am on summere vacation , but I will have to make a graduation thesis . Hm , sounds studpid ? I was so proude of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my fmaily twenty years ago ? After work , I went to my bofriend 's house and we met out in front . I traveled cafully . It 's been raining since last Sunday , and according to the weather forcast it will rain untill next comming Saturday . I have experienced rainny seasons so many times in Japan and Thailand . Each rainny season 's charactors are totally different . But I 'm pretty sure that hummidity makes Toro sick . Today , it 's a public holiday in Japan , I confirmed and calld offiece of English Studies . When I 'm thiking about this , I sometimes think I will go the UK and meet her . I wantt to talk with the members on this site in English very well . ! ! When I was a junior high , one girl who was not my classmate came to close and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an anwer at all but I managed to say that . When I was in college , one of the exchage - student who came from Canada , he asked me same question . He appareltly denied me . I went to BODERS last sunday with my friend . I love this feeling , calme , , , and cool ! I think there are many different peples and cultures in the U . S . atc . . As you know , a person 's personality is dffirent from evrypeople else 's . But oddly enough , my blood type is a liittle similar The reason is that we can order by phone call and get delivery servce . Naturally , their intonation and pronaunce does n't sound familliar . I was quite shocked about their careness and horrible food . It is very rural . I love Yamagata becaouse I can relux . I had a violin compitation this morning and went to my violin class this noon . I have to write about Japanese actors using computer - generated characters , about why I think adults in Japan reas comic books , and about whether I prefer fiction or non - fiction books . Tha 's why we are working longer than other developed countries . When I stayed in the US , I often heard people saying `` that is my job . `` I think there are two meanings in that sentence ; one is that I will take full responsibility for my job and the othe is I will not care about other people 's jobs . Today was a lettle warm , _ so I irrigated the field . Hello , I 'm kadaobi ( not my real name ) . I practiced it but they look like crocodilia a little . At end of the year in Japan , we have a custome of having a meal with someone you had business with . I think this custome comes from the saying `` All 's well that ends well . `` Tomorrow I need to deal with a csutomer who really gets mad at our product . . . I was diappointed with that . Becaus I love playing soccer . But , an idividual is important for an alphabet culture country . I think it is very important to think deeeply well , would you like to make / be freind with me ? I am the only person to deal with legal and compliance affiar Actually , I didn ` t understand all the lines of the characters , because I watch it without subtitles . Just to see the local marchandise , and the people look vigorous there . My breakfast was sunnysideup - ala - Thai , fried bread , and coffe with condensed milk . the street vendor cooked two eggs in a metal sauser which is just the size for two eggs . The coffe was really sweet , half coffee and half condnesed milk . I shold n't have stirred . I think he was also embarrased . It is defenitely part of dynamic relationships with him , but it is not so easy to control it . A ceaseless effort to improve yourself makes an unchanged value throgh your Just now I recived the acceptance letter for my poster from the conference committee ! But such considertion is a dangerous myth . I said , `` Congraturation ! ! `` . I 'm afraid of opening the windows in my room becasue it 's very cold these days . Japanese famous actress , or imfamous celebrity , Erika Sawajiri suddenly announced that she decided to devorce her husband Tsuyoshi Takashiro , so - called hyper media creater ( though no one knows what his job is ) the day before yesterday . Moreover , stating that he did n't know what was happening with a desparate pale face . By lights , it was a bit strange that Erika , who is a beautiful young lady , married with Takashiro , who is over 40 's and not so good looking with an ambiguous and susupicious job . I think , however , Erika 's abrupt decision without contacting with her husband was really crue . Althoug my situation is too ordinary to compare with this case , I once experienced a sudden break up . There were 7 members alltogether . . It 's Sunday , and it 's hard to see in northeastern of China in winter , but I have many tasks to do . Some reports ( about computer , assembley language ) , and some electrician reports . It 's must be hand in tomorrow , so I have no time to go out . First , we droved to MeiLing where a company 's broadband network was wrong . We found that the fault point had n't been there , so we droved to Zhongxi and fixed it well . I think they 're difinitely great . Each character has their own specail accent and it confuses me . I begin to study Enlish with this site . A mikoshi is a portable Shinto shrin . It 's much hevier than it looks . My sholuder is still aching . . . Anyways , there are so many clothing stores in Dong Wu Yuan and all of them are terriblly cheap ! By the way , I 've been studying about what is the best kind of industry for me to work in after my gaduation . I 'm considering about my career plan , but I still have alomost no idea . Mnay university students have been doing job - hunting every day . In Japan , first of all we have to write `` Entry seet `` ( Resume ) to the company which we chose . Also , we have to write the reasons for our applications , self - introductons , and so on , into the Entry seet ( Resume ) . Now I attend a translater school and an interpreter tour guide school . I watched `` super 8 `` , which was produced by Spielbarg yesterday . In a sense , this film is very Spielbarg . T . , Jurassic park , War of the worlds , and other Spilel films . I must be cafefull of unconscious habits . I 'm going to Nara for / on a chool trip , so I wo n't write any journals for four days . I am studying at a foreign langusage college now . She does n't wash dishes , she does n't throw awy trash . . . I visited Cina for sightseeing this year . Actually , some opinions expressed in these museums are ploblem in Japan . After watching the movie , I felt that the hero is very genious . We promissed to go camping this in summer ! All of them They all calld themselves Tiger Mask . My experience is that I have learnt English for many years , however , I still find my english skills are not good enough and it is also difficult for me to use a new vocaburary . I have memorized lots of vocaburaries , but the diction that I used is still very limited . After 45 minitues of driving , we got to the feild . We had a primary school performa . I can insist that a greeting is absoultely important when studying English . Second , there was pronuncition training . The Pronuncialtion 's role is also important when we talk to others . Because listners can understand our words when we speak to them correctly . Every time I contemplate the fact , I think it 's intresting . Even though we are far from each other , we can still chat about everthing , such as our feelings , our life , our work . this afternoo I reached the downtown to buy some computer consumables . A lot of groups go to the Aquarium jast like us . deeling off the bottom The police searched out the evidence that the two companies have been deeling off the bottom . - Communicate with collaborators iuntil you get confident with your results and interpretations . Some of us are a sumbling block , but we believe God is our rock . Will you help me to learn Thai langauge ? I am going to the desaster area next Monday . I see a pile clothes and I question myseft , `` Why do we wear clothes ? `` Finaly , it 's better that we should wear clothes when we get out of the house . / ( go outside ) But Is it coomon word ? It 's such an exciting game for Disney funs . And my eldest sister promissed to buy me a bag which is worth 130 bucks . Everyone knows that each cowntry has its own unic and fanatastic culture ! so I dicided to walk from the school to the station . A foreinger who is married to a Singaporean . Foreingers ca n't buy new HDB flats in Singapore , even if they marry Singaporeans , in short HDB flats are for only Singaporeans . I 've never done this before , but I recken it 's going to be quite helpful . . . My mother was more sucared than me so I comforted her the whole time . She was a completly stupid girl who had spent two years in an america jail . She spent her life in an america jail . My father goes to Pachinco for his entire holiday . It 's a buffe party . I was suppurised by her energy ! So I tried to find a way to buy the provious model of MacBook with a US keyboard , and finally I decided to buy a model from the US Apple Store . With this marine sport you can experience speed and exhilaration by runing on the water . I was very suprised . On the fifth day , I packed souvenirs for my frineds and my family in my suitcase , I prepared to come back Japan . In shor , he has an concise policy . I had an opic test . I want to change my charater . My neme is Kaori . I 'm going to shcool tomorrow so I hope for good weather . Since he is currently staying at Zac 's house , I can talk to him every day along with Zac . When I was in junior high , one girl who was n't in my class came to me and asked , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an anwer at all but I managed to say that . When I was in college , one of the Canadian exchage - students asked me same question . Eglish work interview Recently I applied for a job as asistant to the teacher in cram shcool . If I comform the conditions that were asked for there will be a interveiw . what is the best respones ? And I lacked preperation for this challenge . Of course , I 'll try the second challange . Next time , I 'll pass Gread Pre1 on merit and not luck . I want more of an American atomosphere to a fast - food restaurant ! But the whole restaurant is an important place for me . I want to enjoy another country 's atomosphere . So I want to ask them to sell toys of Ronald and his friends at Macdnald 's . I 'm sorry , this is a nagative diary . I have been learning English sice last summur . To learn is my brain 's traning . and I want to talk with forigner . Yesterday when I spild my cookies , he ran to eat them as fast as an F1 car ! It is said that Toriyama Akira , Doragon Ball author , was It is difficult to become a famous cortoonist . Only 2 % ( in all ) cortoonists can become real / professional cortoonists in Japan . What do you think about marrige problems ? My friend who is a 28 years old woman is thinking about getting marrige . She said that he is the perfact guy for her ( and they are having a good relationship ) , but she has problems about his parents . Accoding to her , her boyfriend care about his parents a lot . On the other hand , I do not think that they can solove it after getting married . Every couples have a problem , because we all are diffrent . My friend and her booyfriend are keeping a good relationship , so they will be able to accept his parents . Honestly I think that she has too big a problem for her and she will regret to get married sevral years later . My English did n't make senes to her . I wiil go to shopping to get some groceries . And l studying English at langage school in Brisbane . I want to speak and undersand English more . Many people were studing very hard . Afterwards , we went to Doutonnbpri . He smeil at me , what a pretty baby ! I still remeber the feelings . . . But my mather said `` Korean women tend to get plastic surgery . `` I made miso suop and another dish . The miso soup was a littel bit thick . In the past I wantded to be a chef . I konw I should n't go on this , but I hate studying at home . Result is . . . listning 78 / 100 Grammre 32 / 100 Today , I finally get back to school and my domitory after an 18 hour train journey . when I travell , writing a letter is one of the things that gives me enjoyment . My English teachur is old , but she is very strict . I got a SHOCH ! > < ; I was very dissapointed about this . . . Usually they sell the books at a 50 - 70 percent discountt . On March 11 an enormous earthquake happend in north - east Japan and an enormous Tsunami was generated . This incredible huge natur disaster caused extensive damage to the cooling system in the nuclear power plant . Japan is one of the top level industrialized countries , the goverment and nuclear power companies repeated that using nuclear power is safe and no problem . People against nuclear power in Japan were even seen as a little politically extrem . Now , the accident is still not under controll and the mythof perfect technik is broken . One day Sarah decides to go to Norway and surprieses Jim . there were always some retired people chatting and kids playing uderstairs . I made a decisioin to buy a house and I moved to a better neighborhood in late 2007 . Chocolate truffles , scones and gateau chocolat The topic is ' international marrige ' . I wil read my old diary nd try to understand it again to help me be good at English in the futur . Although Internet is more and more popular among students , there is no doubt that book is an vital way for studing . All of my serven have gone , they already go home when the Ramazan holiday come . and my mom do n't want them to come back , cause they are thieves , they stold some of my stuff , and offten steal some food . I am lucky girl beacuse I know about this site I hope meet friand on this website There are a lot of tasks I have to do , and I have to be thankful for the actual status under this ecnomic crisis . We have rolling blackouts tonight beacuse there is not enough electricity . I think he urinated fequency because of the psychological stress . I am writing a Master 's thiesis now . Moreover , every user has been friendry and very kind . And I hope that Lang - 8 further develops in the futuer . I 've just finished wathcing this movie . Tomorrow nigth , I will speak to my friend in English with ICQ . We will discuss different themes : religion , musik and jobs . today , a frend of my girlfrend inturduce me to lang - 8 , and , it seems to be a good website . I thought there would be a clearence sale because it was President 's Day , but I realized that I did n't have any money to spend for myself . I hpoe I do n't catch a cold Maybe just a little bit , but I think they are so I want to continue writing entries and imrove my skills . Another thing is that I 'm writing about diffrent things in my entries , so in fact , there is n't just one topic . RIGHT : He , the helo , has already gone on his trip . This could be a one - time - only lecture or consective lessons on regular basis depanding on the company . Yesterday , I asked / consulted the weather center about the everage wind velocity of the area where the building is located In order to accurately predict generation performance , I will use CFD and giographic software . I need to do more research on the feasibility assesment of generation . But from now on , I will try to write one diary everyday to impro my written English . Writen for the first time But , interestingly , I have to call a American proffesor of my university Mr Duggan . He conducts a class entitled ' Linguistics . ' The reason thet I joined this website is to write a diary in english . To be honest , I think I do n't spek english very well . I hope to keep practising enghlish and speak it well someday in the future hopefully I can get the help I need here by asking many qusetion . If you have a qusetion , I will answer it to the best of my ability . One meeting , one oppurtunuty . He can learn about our culture thourh Japanese folk tales , too . They want to drive with their frends , and that is breaking the law . It seems that their defference is power . Perhaps they would get nervos in the fight so they could n't use their power and techniques because they are polite and gentle guys . Of course , the owener keeps the apartment clean so that there are no bugs at all in my room . I was so hungry but there is no food in my refrigirator . I have ramen , instant nooldes . After comming home , I tidied up the room for a moment . I 'm going to watch a movie and write a movie review , read a book , play with my pet and study English untill dinner time comes . This is my first english diray , I am very excity , I reside in Chengdu China . It 's a very _ _ _ _ city , hehe , panda country , have you seen kongfu panda ? I thoungt that I should e - mail my Japanese friend to ask him / her to come . Unlike the other species , humans have culuture . The other day , I got the result of TOEIC Speaking and Writing test which was held last month . They are open on a natinal holiday . I thought he might be ungry . . . . . Otani says that `` The evolution of an isect is very fast . Humans have great intelligence , but insects are more great than us in vitarity force . Six years is such a short time that we could still remember each other distinctly , yet such a long time that we all amazed at the chages that had occurred among us . Our teacher was an energetic and humor young man , and he still is now . sorry for any uncorrect english However , I think that it is not tha cace . Moreover , I sugguest that our lives are occupied with what passes for leisure in our society . Taday is wonderful , suny day , but I have no spirit . I feel sick . What should I do ? The reaon why I got such a good grade is by studying many English words Fortunately , today is Ftiday ; I can have a rest tonight and also on the weekend ! I listen to English on my / an MP3 player when I go to my campany . What kind of MP3 is a good choise ? Hi evryone ! first dialy I live near the Urals mountain in a big industrial sity . This is school of desigh . We told them about it , and they adiviced us . Yesterday the worlds famous movie director Steven Spierberg talked about East Japan Earthquake at an interview in Paris . I went to Singapore to attand a conference from Feb . 25 to Feb . 28 . To quit smoking seems like something impossibel for a heavy smoker . Yesderday , someone went to my Blog and left me a commont . I am very warry . I have to writea diary that is attractive to readers so that it can be corected by someone . To pass anohter car , I must handle the controls carefully . Recently , an unrealistic politician has become an issue oline . The goverment supports poor people financialy . The day before yesterday , a politician who agrees with the current policy worte an article on the web . He only ate fast foods - due to lack of money , and he did n't consider other factors such as phone bills , electricity bills , transportasion fees , etc . I read an article on newpaper recently . this is my frist time here , my classmate told me this place , today , so , I came ~ She thougth that her life was boring . I did n't find her life boring . It was comon , calm , but not boring . She recollected her privious life and realised that it was good . We should find joi in our everyday lives . I coud n't express what I feel in this post . But , some of my Chinese and Taiwanise friends does n't like him since he has a dirty mind . . . Japanese companies often evaluate one 's score of this test when university stduents are applying to their companies for a job , so it is important for us to achieve a high score . This test includes writting and speaking sections , so even if you are native English speaker , it is very tough to get a perfect score . I had n't really talked with her hasband because he looked really tense when he came over to my parents home . I can understand a litle of the movie with japanese subtitles . There are a lot of countries in Asia such as China , Laos , Bietnam , Cambodia , Burma , Tailand , India , Srilangka , Parkistan and Nepal as well as Korea and Japan . So many people are suffering with unexplored bombs and mines in Bietnam and around the Tailand . I do n't understand why we are fighting each other because of different ientity , sex , race , class and religion . Several rock bands had excting and passionate performances . It brought srangers together in a common interest and it represented young people 's attitudes towards life . I moved to haruyamacho ( ? ) , Mizuho ward in Nagaya ( ? ) city . On the way I go there , I drew 100 thousant won out of my account by card . In comtemporary society , the amount of information broadcast by meida such as internet , radio and newspapers Newpapers play an enormously influential role within the whole media . I do n't know this finction well yet . So , I will often use this usefull tool : ) I commuted to English language school and staied with an Australian family for two weeks . My part - time job is at McDnald 's . does erratic mean really bad , hamrful ? A human being is a lengthways creature , so you must always keep balance . I was wordering about applying to your shcool for admission in hairdressing . I think it has not finished receving applicants yet We were confused becuase we thought it was supposed to be in the mall not outside the mall . After going to the hospital I felt better about my anxieties over ticks and skin illuness . Why do all the non - heterosexual people have to make an extre effort to do anything . I 'm angry with all these peole who are talking nonsense against gay marriage . I 'm extremely angry with all the people who says things like `` it 's unnatural `` or `` it 's agains the moral concept of family `` or rubbish like that . Homosexuality is not an aillnes , but homphobia IS . I am hosting my support group , which helps facilitaitor our lifestyle , in my house today . There are for people who want to imporve thier life for thier good . I want to go to Hwaii ! I am looking forward to the weakend already . Prease tell me how to be more positive . I want to get along and keep in touch with him in the futere too . Now , I am thinking of starting to work part time , so I have a question : `` How often do students ( like in universuties ) in other countries do part time jobs ? `` In Japan , from what I know from my friends , many students do part time jobs and spend many hours on them . Does this mean that I am very dependent and childlish ? I am worried about this now . There was too much water on the flloor ^ - ^ because it has some important featers such as Contactless IC smart card , You said you would treasure that clock forever , but you 've gone agaist our rule again ! I wrote my last entry without checking it , so in the last paragragh were many lower - level mistakes . I finished my journey in Australia and got that job vancacy in BAHA after going back to Taiwan . And the song that I am gon to be cover is called You Can Win . Today , I played footsal with my co - worker . But unfortunately , I am overweight and have a wider weist . I am a middle - agged man . I heard about Lang - 8 from my best friend ( love you ! ) and I became intereted in it . I keep saying that I only sutdy Enlish this time ! ( ? ) I wanna chang my job and it requires me to speak English ! I 'm writing this diary with a transraton site . Beofore writing my first journal , I read a lot of entries that other lang - 8 users wrote . I remember seeing it years ago and I was reary impressed by the story and characters at the time . Many kinds of fish , freeze dried , half dried , salted , and freshraw , raw fish . But stil , I 'm excited I 'm on vacation . When trade tensions heated up in the 1980s and early 1990s , these years became known as the era of `` Japan bshing `` . It was my choise . Then I bought a Cinese phonecard at Peking Airport but in Tianjin it did n't work . I 'm not newly gruduated anymore , you know ! ! `` was what he said . Well , I 'm glad that I 'm one of the very first people they think of when they 're in troble , but please , 3 calls per month is just waaaaaay too much for me . . Ever since I started listening to Mariah Carey 's Memoirs of An Imperfect Angle , I was deeply atracted by these kinda music . It has a covention hall for 1000 people and eight banquet halls . So I started a wild Enlgish project . beauifull spring ! Spring is very beauifull ! In this season the flowers bloon , grass sprouts , and there are green trees . I had thought that reading practice and having conversations with my wife everyday were enough to mastring English . So since one week ago , I have started ( doing ) listening comprehension excercise there . Now , I ca n't understand what the announvers say at all , but after I read the texts , I can understand them . Inspirating quote : `` Possessions do n't define you , your lifestyle defines you `` I can say that from my personal exprience I carefully monitored my life . English Convesation I have started to take lessons on English convesation recently . He 's so talented because he can play the guitar , violine , and piano . Usualy , I 'm not a casual sort of person but They are newly opene malls ( department stores ? ) . There are many peple there . I offen see Japanese woman with foreign men as couples . Jpanese men are not popular with foreign girls ? But , the club chief is planning to have some paties regularly after the dissolution . Perhaps becouse of age ? I wii play tennis in this afternoon too . However , I conqurred my self / emotions at last and tried very hard , and became one of the best workers in that factory . Meanwhile , I try to find the weaknesses in myself and try to be optimstic towards life , even occasionally somethings will happen unexpectedly . As some famous people say : we can not change anybody else but ourselves because we have to realize that in these hords / masses of people there are without doubt many kinds . I like your display of courang but at the same time , I envy it . Quitteing my job The food was wonderfull and the people were very friendly . I sometimes go to coffee shops such as Starbucks or a Doutor Coffee . What is your favorite season ? Major campany start in April , so my neiborhoods will move soon . I would like to make a special ( ? ) day for my 2 neiborhoods but I have n't hit upon a good idea . I thought that the meaning of mature was to pretend that you have a high status , to handle everything with high efficiency , to keep steadfast with my princiles with high profile , and to treat those who are younger than me well . For example , cleaning up campaingns and collecting trushs in the street to contribute to society . I aslo have to carry all of my luggages to my new house tomorrow . Before I re - entried Singapore , I withdrew two hundred thousand Japanese yen in Japan . Why does n't anyone correct my dialy ? plese correct my dialy . 5 . A momentary seperation . Becouse he slept all day . midnigt crying So tonighe I will sleep soon . The bank was prety crowded at the end of the month . I hope to give someone the chicolate next year ! ! I went there early in the moring . and the rest was the endodontic tretement . We will need more manytime . `` Miyajima is an iland , so we took a ferry to get there . The other day , I decided to attennd an English school called Presence at Omotesando . I will write here regarding the progress of my English skills through the English scholl , `` Presence `` . Becase people who speak English very well are cool in Japan , some Japanese people try to talk to them in English . Moern day people can use the internet , thus they can easily contact their families and friends and can watch the broadcasts of foreign countries . I really want to ask English teachers living in Japan , please learn at least intermediate Japanese , because Japanese students really want theachers like that . I do n't have any complaints that they only speak English during lessons , it 's essencial for us , but sometimes we need explanations about English grammers or dificult expressions in Japanese . It 's always interesting to learn something new , and I personally like studying foreing languages . This week I 've been feeling like I live in Sibir . Fortunatelly , the snow began to melt . I brought my mobile items . ( laptop PC , G - shock cellphone , Android phone , Voice recorder , Handy video comera , Anyway , I made today 's an apointment . He replied , `` What ? `` with a frowing on his face . I 'm Sho , a college student studying engneering in Japan . Well . . . and I like listening to music as well , especially forign music , for example Linkin Park , The Used , My Chemical Romance and so on . Gee , I should n't have written about New Year 's reasolutions . Anyway you 'll see how my resoluions go around June . because I moved back home last summer from another prfecture look for a band pertner in my city . I like my city but I prefer Canada to Okayama because I like Noth American cultuer , customs and music . Chirdren abuse I want learn to English ( I 'm a begginer ) . It is very expensive , but all my friends said that if I buy a cheaf one , I 'll regret buying it and will buy a new one very soon . I want to decolate my wedding party with many beautiful flowers . Now I am in Chain China next to the Hong kong area . We were once in a prmiary school . Also , I understood I got close to paradice or heaven in a different way . In those days , the most interesting thing was maybe fashione magazine . beauthful clothes and shoose . I remembered that when I lived in Japan I had a lot of trobule with the language barrier and customs . TOEICtest is the English test . Yeasterday , I stayed up late at night . So , it was unusuall for me to wake up that late . Especially my father does n't belive in God at all . An intersting day The weather is warm and sun is shineing . In this bus , I meet three foreign students , one is American , one is German and another is from Holand , they want to vistor `` Tian an men `` , but they did n't know how to get there . what a good chance for me to pritice my English . What an intering day today . The schoo provides one on one lessons . I talked with a neitive speaker . The picture is of a SHOKADO BENTO ( It 's a high quality luch ? ) I was exhausted while making a 100sheet presentation file using the poewr point . Recently , during a protest to condemn an inafective legislator there was 67 years old man who painted the house of representative 's roof . By January 1 , I received a lot of New Year 's cards sent by my friends and reletives . First of all , you can see different types of japanere culture in Tokyo . My mother usually buys drie bonito and shaves it when needed . My hoby is playing the guitar and singing . Lang - 8 is amaizing ! ! The game was held very early in the moroning in Japan . I 'm really releved to hear that . I am suprise that I got the pass mark in my CFM EXAM , the LAW EXAM result got a high mark as well . It feels strange , funny and intersting . So I finnally noticed my bad behevior . ( acustomer ) ( ? ) I decieded to try to close my computer immediately after I finsh writing in my diary . Many people think that time passes guickly when you use the computer . Now I am going to try a lang - 8 marason ( I named it by myself ) My love is always something strenge . This picyure is from the Kumagaya Fan Festival . If you have a chance , come over next summer . I saw two idels today . But , he made every endevour to speak it , and at last he was able to convey his feelings . Moreover I find that my sentance are too long and it is difficult to understand . this is my first post on this webside and first English in my life . I especially like Krispy Kreme Dounghnuts a shop opend in Shinsaibashi . Thta is amazing to me because I 've never been abroad before . He always makes me happeyer . I am good at mathematics so I easily undersatand the subject that relates to mathematics . The benifits of this website are not only learing languages but also making freinds . I called him when I heard about the increable disaster with the earth quake . I just called my sister and I found out he is workding very hard with very little sleep . He is kinnda of shy . . One day , he told me that Japanese Self - Defense - Force was trained for disaster relief from earth - quakes and tunami . But , unfortunatly , the worst nightmare has come true . . . helping thousands of people to the safty - area before the tunami hit . I thougt the way it tasted was diffrent from how my boss makes it . Then , I realized my misstook . So I 'll make the sauce again this weekend , and perhaps a Hollandais sauce too . She became sensetive . He explained her that Michael had the same desease as she does but he is cool and became famous . She was encouraged by him and recoverd her confidense . Can you imagin if your color of skin changed ? ! She and Michael are brave people who got over their own desease . . . . . . the garden of a nersery school A nersery school which I can get toon foot in 15 minutes , opens its garden for children . but I never thought that there were very mess ! ( ? ) Meaning most people were cheating on the examination . I always concider Chinese students quite smart ! Yeah , of couse they are smart ! But it was not fair to cheat on the exam , right ? That 's unbelieable ! I can read English stories and airticles , and I know many English words , but it is very difficult for me to listen , write and speak English . . . Sorry about the nagative outlook . There is a simpe answer ) ) Congratulatuons ! I 've already worked at new work for a mounth . I have been asked to traslate this ( below ) into Japanese by my friend . I can not tlanslate . Can you translate this sentenses into Japanese ? But I 'm happy anyway becouse it 's SUMMER ! ! ! The corectee might have believed that those were right . Oh ! Tha 's great ! To sove the problem , I believe that youg people should go overseas to study , travel , help developing countries and so on . I think it would be better to lower the air conditionar . And I regret a little bit that I did n't try to aks in detail for alternatives because I barely understood what the clerk was saying . He spork too fast to catch it ( all ) . I know to hundle a thing like this ; you have to be proactive and patient . Oh , being in the States , feeling alone , it 's just hard to hundle it . I went to this course , becouse I can read English text ( not good , but I can ) , and I can understand English speech ( worse , but I can ) , but I ca n't speak it ! Recentry I wrote new year cards for my friends , and put them into the post . It was a loud thmp . . . In my spare time , I have broad interests like many other youngers people . I ( usually ) study for a long time , so it is important that I find a more conveinient coffee shop for studying . Additionaly , it lets us use the AC power , so we can use our laptops there . A lot of my friends are worrying about their future , bause many companies have decided to cut their costs so that they do not need to recruit others to join them . I also worry about my future . I have been working as an intern in an internation company for 2 months , but I 'm not sure I can stay there . The reason for my call is to confirm the shippinng date . I am working in procuriment Department . In addtion , jogging after working became my hobby too . my hasdand does n't think it 's good . I might be more strict with her about mony , rules , and study than he , , We will go to Belgen from 29th August to 3rd September . I work in the Jewelry department and my partner works in the fashion department . About Lybia . I have heard much news these days abouy Lybia . And I also heard that many countries are concerned about the exodus of Lybian . From what I 've heard Thunisia was no longer able to deal with such a influx . But I think he does n't feel much responsibility because he said Lybia people love Lybia and Cadaffi . It 's rediculous . Soppose that a girl has loved some guy secretly for a long time . You are interasting . ' I 'm Japanaese . If you watch the news on the tv or intnet , you will get informtion about the nuclear power station in Japan . In my opion , I think we should close that , _ firstly , it is too dangerous and we can not control radiation . secandly nuclear power stations could produce some nuclear waste . We also can find other resources to replace nuclear power , _ for example solar power and coal and oir . In the case of Shizuoka , Yakisoba ( griled noodles ) is a very famous food . David Coverdele is one of my favorite singers because his voice is adrable . Many people are fascinated by his voice . Nowdats , many hotels offer a discount price , it would be cut in half . Could n't unerstant ! ! ! I could n't understand Engish or organic cemestry . I have n't wrotten a thread in a while a while . Usually it is / it 's warm over there , because of the sea , but that summer , the weather was either cloudy or rainning . but recently I really ca n't have confidense so much about my English skil . I do n't know why they can remember vocabraries so much ! ! ! umm anyway I have to study more . After arrivining there , she did n't want to get out of the car and cried very hard . The teachers were warried about her . I thought she just wanted to ride in my car more but couldnt n't . . . . I 'll kepp watching next episode after ! ! ! ! ! I could n't go outside because of the tyhoon , but today was fun : D These two movie stars are the bigining of my study . I 'm suffering from a migrane . It 's something like a migrane . BUI I WHEN FOUND OUT THAT HE SHOULD COUNT THE QAUNTITY OF SYLLABLES IN THE LINE , THE DEVIATIONS FROM METRE , PECULIARITIES OF GRAPHICAL FORM AND RHYMING SCHEME . . . The wall , the table , the counter , and all of the stuff are made from ice blook inside . Even drinking glasses are mede from ice . I like to write a diary entry but this is my first diary on Lan - 8 ! I have known about Lan - 8 for some time but I 've been nervouse about writing a diary on Lan - 8 : ) I 'm learning Enlish in several ( different ) ways . I am reading a newspeper , ' Student time . ' I watch webe TV , and so on . Hellow ~ ! ! Foreign Friend ~ ! Bcause , I have freedom . Meetting my friend , Eatting nice food , Sleepping a lot , studying English , I do that too ! ^ 3 ^ I 'm going to take part in Hana , where I learn English skeaking with foreign people . On a cold day , I feel like eatting a hot food . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` eatting . But it was put off due to the big typoon . I wana write a letter for to host family . In Melbourun Because this is my first opportunity to go overseas and Melbourun , in Australia , has a lot of nature . First , we got on a plane for the Gold Coast , where we then transferred to a plane for Melbourun , then my host mother picked me up and took me to her house . We have three classes tomorrow , to teach us what Melbourun has . I gave it to the station clark . Recentry , I 've been addicted to eating crackers . In Beijing , I have a lot of trouble acrossing the street . Actually , compared to Japan , Chinese drivers drive very fast and loughly . Today , we sold the same frypan agan . My favorit color is blue . Today is my first vist here . A case in point is Edison who invented the light bulb through numerous experient . What 's more , he was n't defeated by frustration , and he also said , `` faiure is needed and it has the same value as success for me . `` I plant vegetables in my beranda . Last Suturday I had my hair cut . Chris Moulin of the University of Leeds , you can induce jamais vu through semantic satiation , which means bassically fatiguing a patient 's brain by overexposing him to a word . After reading the aforementioned info , I wonder whether there could be some implicances for language learning over the short and long term . Today is april fool 's day . In the usa , peopie usually fool their good friends to make everyone happy , because the old generation does n't like it . In their minds we would be very impliet if we do that . Tomorrow we 'll have a outing . My company organised it . We will go to a famous and beautiful place , and we will see a panda . I am so exsiting and I 'm really looking forward it ! I always try to broden my perspective , which means I can not easily answer any kind of question just from my knowledge . Even native spakers have a hard time writing something abstract , what it will be for a Japanese kid to do so ? Although some emotions and morals are still cryptical to my age , I was touched and just ccould n't stop the tears because of the beautiful regret and the heart - breaking ending . Are people in modern socirty losing their moral values ? Some of parents are very aggresive . In such tigh situations , teachers find it difficult to provise good education and teach good manners to children . Youths learn very naturaly how to respect their seniors . Each of us has to recongnize the importance of morals . After I posted my journal yesterday , I regretted a lot because I wondered if my journal entry sounded offense to some people . I want to say that English helps to express my emotions more easiler than Japanse . I suggest that there are some culuture differences there . I am nearly fourty , I work for a company and I am a department manager . M every day except satday and sunday . becuase I ca n't type a letter on my PC . . . . SUMMARY OF ALIFICATION Uhm . . . . see the Jeepney in Manila , Philippines . . . They always give you an unconfortable face when you hit ( bump into ) them on the road . Of couse , he did n't hear that , and he picked up his hat I had hit off . As my college is in Kyoto , I usualy only go around in this area . but , I am going to Tokyo to take a seminar for job appricants tomorrow . Thus I think that I would be busy , but I think that `` busy `` is an evedence of one 's living life to it 's fullest . He used to work in a sushi restrant when he was a child . But she said `` I have never used it because I have a poor backgrund . I want to speak English fluenly and I want to get a job in London . I was a bit coufusing . Today I met my new roommate , who came from England and woked in Australia . He went to New Zealand to work and just staied here for a couple of weeks . Actully , I do n't want my roommates to change constantly . Best regads / Minato because I think it 's not intrested and there was a tayphoon then . My room was a little messy befor . Oh . . . I forgot to writen that I 'm not lazy ! ! So my room is good now . Of couse I know there are a lot of mistakes . Well , I just signed up . I hope that with this web site I will improve my englsh skills . However , I rescieved an E - mail from the community center , saying my reserved books have been prepared , so I 'm happy . I am born in Jiangsu pro China , so I have no chances to comuunicate with foreigners . Eeting is important . Well . . . to be honest , I am totall broke . . . So now , I will be open and filexible for any financial suport from any of you ! Anyway , money is not the subjet now . The more important thing is to have great and unforgettable memories with my freinds during each trip which I hope will cheer me up sometime I 'm upset or depressed with my work in the future ^ - ^ while I ` m taking ressons , I put my usb to a computer and study English from Eigoduke There must be a certain relationships in which you tend to hesitate to leave a comment unless the topic is absolutely familier with you . His full music videa will be released on the 21th . They pretend to be intimate with us when they need our help , why are n't they unsatisfy by our benefits ? We talked about vorious things for two hours and had a wonderful time . I 'm a student at Hansin University . Someday I hope to play the guiter . However , I definately am going to enjoy my life there . . . ! We are goint to the selecction football - soccer match when the American Cup is in Argentina . I often meet my friends to watch TV . I came here today ( yesterday ? ) onn business . Most of his works are paintede wide lonely lonelylandscape with tiny objects such as houses , , boats , animals , trees . . . His first illustrated work ' The white bird on my bench ' has been published in various European countries after which he won meny awards . I want to have the ablity to help somebody easly . The sweat was pouring off my bady . May this new year bring you many oppertunities along the way . Because , when we cought up witheach other in my English lesson , I told her about the changing of my way of thinking these days . She also took the class to improve her pronunciaton . I talked about some topics including intrnational mearriage with her in the car . I 'm a university student learning about archtectures . Last month I vesited London for 2 weeks . This is the frist abroad trip for me . co , I would like to apply for the possicion of a Service Quality Manager . My ring fnger bone was broken the other day Accidentaly , during a soccer game with my students . I attacked one studets by accident The next day , my left hand turned pale and a litle bgger . It 's now a chance to strengten my right arm and hand . I always love my mom but sometimes I lose control when I start talking to her and I become crochety with her . I act crochety but it 's hard to keep my composuer with her . It would be very bad if I had to be with ohers in that time . Actualy , my son is always being mistaken for a girl in china . This weekend I 'll take part in the National Computer 2 C language exam , but I hav n't prepared well , so I do n't have confidence . The third question was , `` Discribe one of the situations in Picture B `` . I went shpping with my mom . And at night , I went to eat cury rice in a restaurant with my family ! ! I am goning to introduce Japanese folkrore to you . I had watched Supernaturl previously but now the season already finished . This is a really good hidden taste except for one thing : it takes a long time to cook sofftitto . The recieved items are white belt , shirts , and black cut and sewn . It will be an unique ceremoney . By yhe way do you know Turtle Talk ? Otherwise , The sentence does not seem to have enough meaning and stucture . I can understand the teacher speok but I ca n't answer questions correct . There was a Engilsh Poromoting Test at the end of the month in my academy . My techer said , But your writing is not good , So I recomand you write a diary `` ( I ca n't remember it exactly , , ) I did n't see fear from radialization in their faces . Especialy in past 3 months when a big natual disaster has happend and the affected people need heip immediatly . I question why my contry does not allow both storng and long administration . In addition , Japan has a mono - cultual society so I think Japanese people tend to be affected by the media 's opinion easily . I want to traverl to Europe , Australia , New Zealand and so on . Mah - jang day Thsi weekend Then we talked about our jobs , habbit , marriages and so on . We had several opputunity to speak English , but I do n't speak it well right now . I am convinced I will speak very well in the future . Within a few days ' time , we had to quickly switch to wearing cotton - padded jacketin . I study very hard here because English is not my own languge . A : I have a luch box everyday . However , you enjoy hot meal threre ? I am watching Climinal Minds on TV . I need immediat answers to these questions . No one can live without peace , which means that the palestenians can not live but only try to survive . First I have to decide a specific goal , for example to pass one qualification , to teke an exam , or to get job . Second I have to plan untel I achieve the level and I know I I have to do this thing in one year , so I have to start today . It is most inportant that I continue that thing . My small obgect is to go to an overseas university to study next June for 10 weeks . My daughter 's school is having a field day Tommorow . I ate stuffed chicken sarsale ( ? ) sounds like that . I resulted in eathing too much . I very much want to inprove my English I love to play with friends , plus singing and dansing . Could you tell me about your favorite music and singer ? Japan is the second biggest economy and the biggenst economy of Asian countries . For example Japan is good at making vedio games so a lot of young people play video games and enjoy them . ( enjoy video games ) In today 's class , we talked about `` the unnessesary things in the world `` in English . But I do n't have any paln to go the sea . Because I have too much homework and I also have a test for tomorow . . . . I 'm working at a restrant because I need to pay the school fees . I was ranning , dodging many pepole to get a boxed lunch at reduced price . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more unconfortable . To teach my students mathmetics . If I did n't have it , I might have fallen behid . But , I wonder if young geme lovers can understand them . Today , a foreign friend gave some adviced to me . He said , `` I just hope you can open your eyes to the posibility of meeting new friends . `` Today , we had a trip with my father 's freinds . My major is English language and literature , so I like English langage and literature , I bigun to write in English daily . Becouse I want to be good at English . My teachers and my classmets never called me by my name and they always used to call me ' ' hergiin ezen ' which means toublemaker . I was called a troublemaker becuase I was a boy who always used to get in trouble and got my classmets into trouble . The journalist published a newspapar about the celebration of my school 's 55th anneversary . On the top side of the newspaper , there was an interveiw of our school director , but below his picture there was a picture of me peeing into teh corner of teh school building . she was a young American womon . I asked the person that the scary mails , , , , she said to me `` you dont need to be worried about it , and you should believe in yourselfe . `` Lang - 8 has deeper communicateion , too . Sometimes even companies have a kind of sport 's day in Octover . Do you have a such kind of day in your countory ? Reacently , I have taken box lunch with me to my work place . We orderd lunch specials . After I got inside the store , I wound up buying things I would never thought about buying berfore . Unfortunately , my puppy hurt his left leg yesterday when he was trying to jump accross a bush . But it is important to talk to earch other , well thinking . baby are you donwn down down . . so0o leave it behaind cause we have a night to get away . . . so0o leave it behaind cause we have a night to get away . . Koreans have a lot of fun cheering in the streer but today 's match is too late . the frist video and this second video are a litle bit different . . . If poeple ask you do you know how to cook Pad Thai , Now , I spoke to an American who lives in New York by caht . I would like to help someone 's deam to come true . It 's a fantasy and dremy . BLESS JAPANESS I hope the Japaness soon have peace . God bless you ! I think music is a beatiful performance , it 's something essential , like a type of language . * I would be gratefull if you could tell me how you express this because I really want to learn how to converse naturally . It 's so fun to play hier . She said that it is a good site to study languege . But I am requierd to write a dialy entry . But , I 'd like to be a programer . The day before yesterda was Midsummer Day of the Ox . I went shopping with my doughter . People talked to my doughter becouse she was wearing a princess dress . These groups can not inherit if the prior rank inherts . Oh ~ God , he changes his mind like a girl chanes clothes . Even if I achieve that perpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studing peper tests do n't help me speak English and learn English expression . Studing language steadily is very hard . I just looked up `` progress `` in an English - to - Egnlish dictionary called the Longman Dictonary . I think it happend because I changed my diary 's title style . Winter is ending , and Spring is comming . It makes me feel more powerfull and it 's fun . If you have betther idea , please talk to me . My skin had a blotch , and it was abseced . So they had to cut it open , and mundified it . I appeiciated all of our members singing . But scince I 've returned to Japan , I have been drowing among huge amounts of information spoken or writtn in Japanese , and I recognize my brain is going to melt . . . . So , I decited to take action immidiately ! I will be very happy if I find lots of friend here to comunicate with and get achievement for my dull brain . Speaking of the airport , I found out about a new `` ticktless system `` this time . The media says that the public has the right to know about the private actions of famous people but the media does not have the right to ruin their familiy 's lives . I often eat out , such as at McDonal ` s . Now I 'm watching a TV program about the Houbble Space Telescope . Mein Vater ist beamtin . My weakness is my impatient caracter . I like to travles around the country to eat at famous restaurants . Certenly , the dove is an emblem of peace . The explanation about the exchage rate in cargo Insurance In case you fill in foregin currency in the application sheet and requre the payout of Japanese Yen , the exchange rate to the payout is the rate agreed at the time of payout . Please be advised ahead of time that due to exchange rate fluctions , the exchange rate at the payout may turn out to be less than the rate at the time of application . Actually , writing this diary is the first time after graudating elementary school . 2 Whisper of a thrill , there is no sence living your life without it . 5 Okey , stay open . Therefofe I will have to take a bath alone in the near future . yesaterday , it was a little bit cold . Today , I went to primary school for one teacher ( physicl education teacher ? In a podcast program about how to wisely choose lite and free apps , I heard something wierd : My topic of reserch is `` spider silk `` The reserch is difficult , but I want to study more about this silk ! ! especially , I look forword to eat Temmusu that includs a fried shrimp into riceball : P Konstantin could not slept with herr and came to me lol . Therefore we ( the emplyees ) have to work late everyday . So after Koizemi retired , the succeeding prime ministers ( Abe , Fukuda , Aso ) suffered from the poor legitimacy of Koizumi . Later today , I 'm going to trate my classmate to dinner . Yutori education system failler I suppose this is what the jornal 's writer wants to achieve . I used to use a dictionary for writing sentense in English . I did n't want to make mistakes and I do n't know a lot of vocablary . I usually check my sentense with a / my dictionary . When I cook a new dish , I follow the reciepe for it . but next time I could n't make that dish again without the reciepe . It 's been a quite long time since I had a great time on Christmad day . When I woke up in the moring , I felt that I was n't in good condition . My body 's temperature rose up to 40 degrees and I kept caughing and sniffling badly the whole day . It 's unbelivable to be in good health condition after I missed Christmas day . Even though I have no religion , I 'll have to appreciate to God whenver Christmas is coming . But my American thecher said `` No more freedom in America now `` . So many people in China throw away garbage anywhere and there are no rules of politeness and I just thought China is a freedome country . Actually Japan is one of world 's most polite countries , but there are so many unwritten rules that we have to keep , so I just do n't feel that Japan is a freeedom country . Because it brings me pleasure to speak English with foriegners . They want to talk with Japanese people because they 're livng in my country if they speak Japanese very well they want to live in Japane for a long time . At noon a keyboard at Ningguo Jiangnan hotle had a problem . Fristly , I would like to say `` Happy Chinese New Year `` to my friends in lang - 8 . My mum gove me some money but I need more . Active : I played valleball today Passive : Veleball was played by me today Active : I wash my dish befor I come here . I 've promised that I would go out with my frineds today . On Sunday my flatemate and I cleaned the kitchen . In addition , successful sportpeople / athletes also make your country become better known all over the world . During that time , I thougt the sky might darken to some degree , but it had not changed at all thanks to the clouds . On the information page , a movie about Appolo 11 landing on the moon was broadcast . I just watched the movie , `` Appolo 13 , `` two days ago , though I did n't know July 20 was the day mankind first stepped on the moon . I felt that the bussiness class is another world . This menas , it has a different quality , different sentences , vocabulary , students ' attitude and class method . What an influenceable pearson he is ! My kids and hasband saw Doraemon the movie . Sadness , lonliness , there are a lot of feelings there and that I ca n't sum up in one word . So my doctor examines me very cafully and reserch this illness enough before my consultation ( appointment ? ) . Beginnig of May ! ! I 'm studing economics in university , and my seminar focuses on international trade and deveroping economics . Today 's topic was on Chinese inequality , then we debated about education , social security , and occuption . The reason is that there is a correlation between inequality and education , so improving education in rulal area will help reduce inequality . looks like a japanese comic charactor `` Black jack `` korean is a very good place . but people have their own caracter . I do n't know why I could n't open the website , but fortunetly I can open it now . I am in the middle of the mid - term exam , and I feel like I did terrible on the first subject : Grammer . It is one of my weaknesses in English , but I really like my grammer teacher , she is very talktive and likes to gossip . I bave to prepare for the debate . I was so surprised becouse so many Koreans stay there , even Toront . I read an article about Japanese school unifrom . AL Chinese Langage and Culture I really appreciate AL Chinese Langage and Culture because it is one of the tests to check our whole life skills in reading , listening , speaking and writing which we always use when we are a university student . But I am very much disappionted with AL Chinese Langage and Culture in its culture test , testing our ' Chinese culture knownledgement ' and ' Chinese culture judgement ' , which I find most hateful . Carefully , there is a difference between ' Chinese culture knownledgement ' and ' Chinese culture judgement ' . Testing your ' Chinese culture knownledgement ' is based on what the famous Sophists say . But testing your ' Chinese culture judgement ' tests your judgement on using your ' Chinese culture knownledgement ' . This is my first point why I am disappointed with AL Chinese Langage and Culture . Why do I need to use ' Chinese culture knownledgement ' to comment on certain kinds of events ? hate Chinese Culture becuase I have relized that some of the Sophists ' theories are too ' ideal ' . Although my teacher said the answers are correct in the right direction , no matter what you think , the answers are still always worng in two ways . And two your answers go agisant what your teacher 's thinking about . This is the second reason why I am disappointed in AL Chinese Langage and Culture becuse you need to think what most of the poeple are thinking . I found Lang - 8 by accident , I still do n't know how I was able to get into this website . But it is wonderful , because I found a new wany and new place to improve my English and German . The people on Lang - 8 are reallly warmhearted , I want to make friends with every one who loves and enjoy life . Because hee knew that I have been studying English , he thought it was a good oportunity for me to speak English . It was too difficult to communicate with foreigners , but I enjoied that time . * Noth Ameria : US , Canada Luckly , I was able to arrive home without getting wet . techology and Environment Specificially , instead of wasting our resources , a simple life / lifestyle can help conserve non - renewable resources such as mentals , minerals , petroleum , and fossil fuels . It may be tempting to argue that people who make theia lives too easy for themselves may also implicate potentially harmful drawbacks . However , the denifits reated by technology far outweight its disadvantages . I am going to Thilan soon . . . My favoriate is Thai food . . . In fact , this gentleman was also a business man and he had just finished some business negotiations and then took the trian to Shanghai . Maybe when I go to university tomorrow morning it wiil be wet and there will be a lot of puddles . And in the afternoon it wiil be raining again . I wanna talk about the habbits of my company today . Unfortunatelly , the meetings always take more than an hour . What is worse , even though we have mornig meetings for more than an hour everyday , we have to give him reports , about what we did that day , before going home . Some of my colleagues have gotten sick of those habbits . As a matter of fact , I like to listen to him at th meeting . I get a lot of bisiness tips from him . The most important thing about English is to grasp the common vacabulary and the prenounciation of each word , which I am sticking to either . Thyank you for reading my English . I 'm a buissines man in Japan . Someine could help me how to use this site please ? thakyou I hope to make more friends who like studing foreign laguage . I ca n't write or speak in English very wll . Please look at my sentense and correct them . First Messaege I 'm trying to stady using this sitets in English . During a party this evening , I got stressed out because of the infinite reliabilty on my English capability from my boss . I 've been studying Englsh for two months . I wish I could speak Englsh . you can study any laungages you want . I am going to see an animated moview tomorrow . My daughter & I had the fle ( type B ) for two weeks . Learning a langueage may be a good tool to make friends . I am a little bit desprate because I need a epiphany or something else . My English skill is poor . Today I spoke to a friend in oustralia I want to wisit the school to pay my respects to my teachers but I could n't , It is my firt time to write a diary in English . I think I am poor at English grammer . All in all I think I become a more comprecated person when I speak English . I decided to try it again next yaer . I have to go to the library again and stay there for 8 hours everyday . I elased him on facebook . I like eatting and siteseeing . And surprisely , I noticed that today - - August 13th , is International left - handers Day . In my opinion , using whichever hand wo n't determine who a person is . Just let every unreasonable injustic disappear on the earth . In my college in the Department of Communications , we have to do an exhabition in our last year in / of university . I feel reliveve I 'm not even sure what elderly people are nore what it means to get older . Especailly gimchi is a very good food for our health . realy , I have n't been studying it . So I hope you can help me . Japan is very cold thesee days . I do n't want to spned a time shopping for something I do n't want . If there were no laws , we would kill each other and the weak wouold be victims of the strong . If it is excessively or only viorent , people can not have fun with it . Therfore , all violent scenes are not always bad influences on people . Humans are diffrent from animals . That time , I forgot to trun off the gus with miso soup cooking and what was worse , I went to bed ! It is very unpopularly help others . We do n't understand how we can care about people who wii not return the kindness . The most delicious way to eat vanilla ice cream is to pour a little barsamic vinegar on it . After playing badminton , I went back around by bicycle for excercise . Golden week was fineshed . I will go back to work tomorrow . I 'm so disappointed with foringners who are so rude even though they really do n't have any idea about Korean history . I reanlly wanted to go abroad before , The biring day I am chased by a lot of ploblems now . As she is very friendry , she approached the other dog today , as usual . `` GD `` stands for `` Getting Diborced `` Truthfully , my parents are getting divored as they always argue about something , even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can return to after I graduate from my college , but the real reason why I wana leave Japan has something to do with my big dream . There , I have to give a speach . If there are people who need seats , for example , an elderly person or a pregnant person , we shoulf give our seats to them . Golden Week strated yesterday in Japan ! ! But I could n't have a paid vacation on 2 May because I was asked to perfrom some task on that day by my boss . I wanted to go on a trip abroad during GW , but my wish was n't realized beacuse of the above reason . Their music is so emotional , but it contais lots of electronic sound and it 's so fashionable and pop ! I will wash our colthes and make dsinner whth my daughatar . Today , I went to Japanese Grammer seminer . Of courese , I 'm Japanese . These days , many foreighers go back to their countries . entrying to university , I enrolled at a university to decrease the chance of studying English completely . I had a high fever , so I did not feel like any writing diary entries ( now I feel better ) , so I 'll start wrirting something again . Because the academic atmosphere is not good and the basical laboratory equipment is insufficient and out of date , it is hard to achieve much progress and make discoveries in a short time . I started working for a liqure company 11 years ago . The first month of company life we studied in a factry and a sales branch . Then he quit our company and enterred Waseda bissiness school . Now he has graduated and started working for another liqure company . 2 other friends live in Tokyo after being / working in ohter areas now . I 'm liiking foward to seeing them . they mentioned a brand name that I had nerver heard of This was a fn experience I had in the supermarket . Some people mihgt tell me I 'm just lonly . . Althogh I am a little nervous , I will do this job as best as I can . First , I will wellcome them in the entrance and lead them to a elevator . `` Nece to meet you , Welcome to our company `` , `` Let me introduce myself `` , Now I am working in the bakery and learm how to bake bread . I 'm working at a flowre shop , and that is very hard . I 'd appriciate your corrections , but I probably wo n't rewrite this until I am able to write it correctly by myself . When I learn more kanjis and feel more confortable , I will begin to post in Japanese here . Beforehand , I 'm gratefull for your corrections . Nece to meet you . They are suppoed to cast their own benefits and prejudices aside . To make matters worse , the wind blew very strongly and bloken my umbrella ! ! I know I love her ; I konw she does n't love me . He does n't konw . From my perspective , this game 's fantastic point is , using very realistic human avator for acrobatic movement . I feel that , the central focus of Mirros Edge realistic body exsit in the `` body image `` . Mirror 's Edge `` realistic body `` does not depend only on the grahical detail . Avator 's breath and the crashing sound is very real . If the avator runs for a long time , the avartor start to become breathless . Secondary avator ( NPC ? ) action is not realistic , but the action variation is based on generall human action . Most of avator 's actions are possible for generall human . [ * Self Modify ] Probably , these `` realistic `` functions do not equal a high - hiresolution graphics efficient . Becouse my friend has his own car . His driving is soooooooo CREAZY . I have been eatting so much that my waist is bigger and my stamach is sticking out . I do n't konw why . : S Some people maintain that attending art classes may borden kids ' horizon and enrich their knowledge . He was mooned - face and there was brithness and lightcoming from his face like a sun . She interpreteed the words as a promise he made . Today I wandered around town and tried to take artistic pictures , but my pictures were mundane because not only do I have no clue about photograghy , I am also not good with artistic things . To be honest , I 'm still slightly confused on how to use Tumblr , but hopefully I will become good at photograghy and upload fantastic pictures ! I have studied painting for a mounth . I think it is difficult for me , the color is most difficult in paninting . These days , I think I make little progress in it . What a pity ! It is a big island located in the northen part of Japan . ( I do n't know whether the expression of island is correct . ) As a third - year student , I will be job - huntting after a year and I am improving my English level at the present . Kyoto has some foriners who comes to sighseeing in Kyoto city . There are bus teminal to some famouse spots in Kyoto . I would like to help some foribers who are lost in Kyoto staion . Blinds are the opoosite . I 'm styaing in Australia to study English . I 'm Japanse so I can teach you Japanese . I drove my car in a main street when I found that it was hard to move and it was rainning at that time . The heavy traffic blocked the street and thirty mintutes later , I left to look what had happend . More than a hundred cars were blocked up at the crossing , the street was in choas . and improper grammer . Other than the internet I learn from apllications such as `` Windows `` : ) ) ) ) I need a lot of help becouse I find English a dificult language to learn . That 's because I had to get my bank card reissued ; yeasterday 's accident was not my fault . I ca n't trust or belive anybody anymore . Hey wait , so my loudlord tried to use my bank card ? Even if some hackers have great skills , is it possible to learnaPIN number without touching my walle or bank card ? From now on , I can focus on my study and job huntting . Influenza is awfull for Be carefull of infulenza everyone ! Kano and I went to Tokyo Disneyland the day before yeatersday . Because it takes about 30 muinites from my house . Nihongo no tanjoubi no uta wo imasen . This shop sells various goods . For example : bowls , dishes , cutleris , bags , and plants . In the past architecture was built big , new , and public . Today it has become small , re - bulilt , and private or commercial . Although they are only primary school students , I found it difficlut to handle them . There is still room for improvement of my trainning skills . Wow , it was so hot in school ! There was no air conditioner in our dorm , so it was a gret challenge for me to spend the whole night . Since I 've registered on this site , I 've always been writting in Japanese . I love learning Japanese but I think I shoud make better use of this site to improve my English writting ability as well . All of my family became memebers of Lang - 8 ! It 's a fun to write a diary in foreign languages , althought it would be a little bit hard to keep it up . Sometimes I think they do n't care about the garmmar , but I am kind of worried that they do n't understand me . On Monday , I failed in the rehearsal . I think it 's gon to be a big challege to successfully play the role . I 'm not good at touching other peopel deeply , and I do n't like touching the bodies of other prople . ( I thought so at a noursing home where my grandmother stays , and while I was caring for my grandmother . but of course I care for my grandmother . ) I ca n't do anything for other peopele . I heard it is a litte famous in the world . This comic has such a heartful story ! I hava an exam . Secondly , I will work out very hard because I belive I have HIVD ( herniated intervertebral disc ) and scoliosis . I need to do streching and take care of my health . I do n't want to fail to fulfill my resolution . My mothere and I went out for a long walk . Even though it was so cold that we were almost freasing , I felt really cool and refreshed . Excercise makes people cheerful . I am now planing to join a menber of * * * as a trainees , If I become a menber before Jan . Wolud you mind telling me about making it in time , if I apply for a membership in a couple of days ? I also know that some of them have been became shorter which is good , therefore `` Heroes `` season 4 was denied to that only having around15 epsodes . . Ohayou Guzaimasu - Philippine wa mou shichiji des . Noyhing bad or lucky happened . Mmmm . . . what should I do ? I 'm studying about welfare . My hobby is readinfg books and looking at the bule sky . Of cource , I like watching TV too . But , now I have so many tasks about my stadying , so my days are so busy , which is a strange feeling . To make matters worse , because the disaster - stricken area is very wide due to the huge Tunami washing away everything like main roads and docks . Also the uncontrollable Fukushima nuclear plant , severe shortage of gas , and the situation of shelters and hospitals in the disaster - stricken area are very serious . It was writeen about her . He flew to the sea and He was drowed . I do n't feel comfrotable . I have a sipmle question today . I 'm hangry ! I know that many young woman have had breast cancer recentry . I think this is becouse of bedbugs . Although I wash my bed cover and bed sheet reguraly , so why ? So shiuld I change the mattress ? For Exsample , we played Street Fighter II which was made for PS2 . B ) installed the software onto the desktop of A 's computer , it seemed A was disappointed by B because the desktop was fiiled up with many folders . A was angry untill I removed it ! ! Nobady will notice that I ate one apple or I ate many apple . I leant ' Gostop ' which is a kind of Korean card game from my friend . There were lots of rules and they were very hard to remeber . Each card hace a diffrent score and it 's very flexible ? as well . It was quite a strange time moment as it was my firt time to play Gostop I want my English to be as good as my Chinese , which means whenever I see enlish words I can spontaneously catch the meaning of it . My friend got a score of 850 on the TOEIC the first time , and 905 tthe second time . ' One ' is pronounced as ' yi ' in Chinese , and it is simial to the pronunciation of ' two ' in Korean . This space seems like a place to wirte a daily diary . Pehaps we need to go back to the basics of this problem and assess the possible causes . Furthermore , providing owns < - - ? criminals only adress part of this problem . So far there has been lift < - - little ? success in the war against sex crimes . I thought , I shoul write something in the , `` About me `` section . Perhaps I should do some grammar exersises for this topic . I thought `` to get caugh `` is useful in a conversation . It has been 10 years since I frist learned this language . But , I found that Janpanese is much more difficult than English to learn . temperatuer on the increase since the temperatuer has been increasing very slowly and sometime even falling again . 3rd picture : At Ginkakuji ( Ginkaku tenple ) I listend to some music . My baby pressed the power butten repeatly . Today , I tried to correct a diary which was witten in Japanese I felt it was defficult to get up punctually and actually it was so . * Oh yay , I 'm afraid that after I write a few diary entries that I wo n't visit this website again , and accidents offen happen , so I always pay attention in order to avoid them . I saw a boy acrossed the road . A man came and examied the boy . Many people surrouned the accident looked puzzled . About my work , there 's so much works I have to finish within this month . I 'm afraid I ca n't finish the mition that my manager / boss gave to me on time . Yesterday was a Ssunny day . All of a sudden , it started rainning hard . Personally , I think these girls are ridiculuous and their attitude towards life is too childish , it is so stupid to copy someone 's style ! So , returning to England , I can say it is a nice country with excellent traditions . In Japan , many flowers strat blooming in March , Spinach Salada . There were two Myanmars and one Itarian in our group . So I have my moments where I 'm too carefull about my words . Yet , I feel an invisible barrior which prevents me from posting my compositions . I was surprised . I thought to myself , in this town , how could one possibly gather 8 unintersting people ? ( Except for me , of course ) But every time , I ended up dissapoint like today . I had an appoinment at 9 : 00 in the morning . And I need to ues the money in the right way . He is the most enthusiastic and enagetic person I have ever seen . But once I tried to speak , my tung was twisted ! Fact : I went to a univercity and measured my maximal oxygen uptake during running . They are second - hand Timberland tracking shoes costing 15000 sillings . Also , many people say that the adoptation should only be allowed to heterosexual couples because children could be confused in a gay marriage . Many pepople think that they are one of the favorites to win the World Cup . Some weeks ago , Japan lost to Corea . Why do young Amrican people say ' I love very very very crazy about him ' in real English . And I also want to tell my other friends if you feel bad about your body , go to hospital immediately , donn ` t wait . We will talk about many things today and have dilicouse food . Too dificult . Being honest Should be our obiligation in whatever we do . But the realiy is not allowed us to choose right decesion . There are so many things in the ( wourld ) . , , , , , , , , , , , , , maby . He tugged onthe rope and pulled the bucket free , leaving a hole - a hole in the water ! The young couple married with fairy 's consent and lived happly ever after . How grolous it would be . I ate a hamberg . I immeddiately decided on what I should eat . There was a picture of a delicious hamberg on the menu . I ordered a hamberg and it came at once . I would not feel better if I had been eating a hamberg for a long time I was excited and full of convidence . I was n't until I found my driver that I realized I had left my backbag at the security checkpoint . The next day , my cousion met up with her classmate at the World EXPO park . I had to get up eariler to helped her prepare . Althogh , I have to take two pictures of myself , I have n't prepared yet : ( When I was 14 ( approximativly ) , I watched one of my first serials in English . It was `` Charmed `` , an American serial with 3 witches . So embarrasing The class teacher wanted us to have a discustion with a classmate . That 's so embarrasing . First , when I wanted to buy some street food or drink I always used the fidex and middle finger to show I needed two meals or two cups . But they would show a thumb for one and the fidex finger together for two . They were allowed to smoke in restaurent . I talked on Skype with my friend who lives in Tokno now . Although I wrote a related aricle before , I still think this topic is hard Analyze : SWOT for Yes ( For SWOT ) Analyze : SWOT for No ( Against SWOT ) 3 ) O : Everything still remail the same And I did n't know that a Tunami has so much power . Why were the Tunami 's waves so much higher than expected ? ( predicted ) The winner can go to a Korean Univirsity for free . In the afternoon I went to the palce where I was supposed to learn to drive , but the driving instructor was n't there . For privacy , my brother is teaching me to drive at nighttimes , and we paid Trying to learn to drive a car is so dificulty , becuase it is about keeping safe in traffic . We ca n't learn English conversation from either a proffessional fureter . I hope all of you have wonderfull days in 2009 . Christianity in the US acctually supports the Republican party in various ways ; the party which love guns and wars rather than helping needy people . I 'm going to find a frend so that we can help each other learn languages . Sometimes we get free tickets and go watch the other shows which are being performanced Las Vegas . He is greate as well . Recently , many unlcuky things have been happening to me . rotaion this year , mailed me and asked me to report next week . I went to a flea market with my frined yesterday . Silvano was so patient wih me . For example , I read articles on the internet or in a newspaper , listening conversation in a website for English lerners . I help you improve your Korian Furthermore , now I am interested in Japanease . I will try to write in japanease in one day . Though I expexted Miami would win , Dalas won . So we feel very unfortable . We are chollege students . There is no need to warn us to be carefall . So you can imagine how limited we felt when we had the tercher following . It 's verry good news . I hope they will be rescused quickly and will stay alive . Actually I stayed with them for about only one month but I am hapy being their friend : ) What a CRAZY bycycle ! ! . Noisy politicion 's public speaking 2 As you know I do n't like politicion 's public speaking , but there is one politicions that I want to hearn and that person is Junichiro Koizumi . Now Tarou Asou is president who is known to give a fun speach . Well , I 've just now registrated to this site , and due to the excitement , I 've decided to skip the next lesson , which is PE ^ ^ Today is the `` Setubun `` celemony . It is the `` Setubun `` celemony in Japan . I wished for my family 's good health . `` Setubun `` means `` the day before the beginnig of spring `` in Japanese . I finished my luch I felt deprsssed beause of the weather . I did not exercise beause of the rain . I 've just finished language school and started colleage . I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( It 's very frustrating and I 've been wondering if my Emglish is getting better ! We had a conversation for about 15 minites . She can speak Engish very well . Her English is probablyalmost perfect . not again , oh my godness ! I 've only met a fewJapanese people who can speak a certain degree of English or Mandarin , but on the other hand there are lots more Chinese bilinguals in Sydney . At the end of the lesson , my tutor encouraged me by saying `` You can do it , you already have good English skills . After you go to Singapore , you will probably have many English questions , but you can ask me anytime throung the Internet . `` I 'm really grateful to him . I want go , so I have to improve my English skills immidiately . But it seems to measure spreaking skill , listenig skill , writting skill , and reading skill . The tuters are students of Phillipin University . Just keep stuyding . It 's the only way to make my English good . I was surprised that lots of foreign people were visitng there . I have to strat working tommorrow ! ^ _ ^ ; I did n't know why , but I had a sexually transmitted desease and everyone invited me to hang out . They are related to death like euthanasia , patient 's right to know about their terminaly illness , cloning etc . It 's a very contravercial issue even for native English speakers and actually it does n't have any answer . Like Tsunamis , earthquakes , tyhoon or meteorites ? It will be a center - exam of Japan tomorrow . Today the movie `` Summer Wars `` was browdshowing on TV in Japan . It 's too broublesome ! My sister and I made cookies yeaterday morning . I made up my mind to listen to English songs and watch English moives . Suan falls in love with him . News that an intruder had breached the security of Wisteria Lane spreads like wilfire . I borrowed it from a frend who likes comics In Germany , a genius Japanese doctar Tenma had seaved a boy 's life by operation . Unfortunately , Johan was agenius who can think of killing without siginificance to human life . Tenma learned about the facts , he felt that hewas responsible because hesaved Johan 's life when Johan was childfood . MONSER is one of populer comics in Japnan . I even thought anything would do as long as it wsa a kind of living thing . Recentry , I 've been very very busy . So I want to see a lot of my faborite movies and spend time relaxing ! ! to sucseed in the event . . . . I went to Creer Prospects in International Business last week . Omgsh , this morning was awefull ! I was soo hungry that I could hardly see ! I had taken my antibiotics but I was in such a hurry that I forgot to eat something , I tought I would buy something once I arrived . In geography there was the rivality between China and Japan , or the French economy . I chose Asian decolonisation and the rivality between Japan and China . I tought , did I really go through this much trouble ? Last day , it was rainning day , Within such a short span , I visited Wasgington D . Know Now I can understand the teacher in the Foundation , becauseBrendan helped me a lot in litening . After I had to go back to my univerisity and wait 1 hour ( until OR for ) my next How can I trnaslate this ? But my vocabulary is too poor to traslate the meanings of this . In that class , I learned about a strainge concept : that perception is not the re - creation of reality but the constructing of an image . Furthermore , the illusion of sight is the resullt of the brain 's activity . The Professer said that the brain copes with information from the outside through sensory organs , and makes the image , which is easier for us to understand . Therefore the image I 'm seeing is not the real bojects but the image constructed by myself . The poor gamer 's budy days . I saw my younger sister reading Horry Potter this morning . I read that noval a long time ago . It was very magic and redicious . Befor semester , I joined the magic clob in my university . I often listen to the alubm `` In My Own Words `` by Ne - Yo . I am lonly . ( I feel lonely ) Becaused of work , I have been working over 12 hours a day for mabe 2 weeks . It 's really very exhausting ! ! The weather was a little bit hot , but I could conmplete the play . My socore was 91 ( 45 . 46 ) . However , my listening and speaking are still the same , and I tried to improve it by listening to music with lyrics and watching movies with English subtitles , and I have a lot of friends from diffirent countries , and I speak with them a lot , but I still have some problems with explaining what is in my mind . I 'm the engeneer in the manufacturing department . My faborite musician is Kobukuro , a famous Japanese band . Whatt 's up ? Besides after school lessons , most shools let students play there until around 6 P . These boys kept threantening us . Busterd : `` Hey I am asking you , do n't ignore me , do you have money ? Busterd : Huh ? Busterd : . . . When I prepared to fire it , the wind was so strang that I could not do it with a lighter . When I was reading Newsweek magazine , I came across the following sentense . Of cource I did work on lerning English in other ways . Now , English is very important to me because I need a jod and money . If I dont learn to speak englisg , I wo n't find the job . Fireworks are to be held tonght in my town In Japan , on the 29th of April it was a pubulic holiday . That was the Enperor 's Birthday Showa . One cup of yogurt , two cups of milk and one tea spoon of haney . I lost it last thirsday in Tokyo on my business trip . Many reserchers argue that due to the genetic similarity between humans and animals , experiments can help us discover the cure to fatal viruses and diseases . So I went to the school for the first time by bicycie . I 'm interested in foreign countries and their culcures . I do n't use English in my ordinaly life , Yoy know Russia is big . Next , the phone was taken by another classmate , he told me that he really thinks that I should talk to the teacher to see if ther 's anything I could do to fix it . Because I did n't do the porject well , and my final presentation was not okay . Ohhh , what a relef ! So , I hope I really can help her and teke care of her . Fistly , I want to meet with my friends from high school . Secondly , I have to wriht many letters called `` Nengajo `` . I have not wrihtten any Nengajo yet . There are more than 100 letters that I have to wriht . An Eectronic dictionary is a tool for learning English . It is just a machine that is use for translation , and sometimes it is not a percise machine . ( It was my homework , please figure out the mistakes in my composition . ) It 's really intersting and I 'm having a Charry blossom viewing party on April 5 . But we have n't decided a pleace . I 've been stuying english for something about four years , but still having difficulties with the language . I started stuying english because of my parents . In a first momento I really hated the idea , English was terrible to me . just another thing : I started germain classes today and I 'm really loving it ! However , I will try my best to write more eassy here : ) Unfortunately I lost my wallet and I looked for it for harf an hour . It was really exciteng and interesting . I went to a desert island and ate a lot of crab and shirimps ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! Wao ! ! ! I will write dialy as much as possible . Please help me studing . He was totally exausted so he was sleeping when I called . Pleasseee be My Friend and teach me English . However , people often say to me `` You look like a half - beed ! `` I think that 's because of my brown eye color , but I 'm a natural Japanese . I need to wake up early tomorrow because of my frined 's part - time job . My wife took me to the `` Cirque Du Soleil theater Tokyo `` for my birthday present . The theatre is near Tokyo Disney Land . It was built especially for the famous gloup , Cirque Du Soleil . During holydays , I sometimes play analog games with my friends . Tom Chruise acted very well . I don ` t speak English because it 's very diffculty . I think I speak very good englsih , but I don ` t really - when I meet my friend , we only say ` hello ' and ` hi ' . Today , I woke up at 8 : 00 AM , drunk cofee , watched TV . When I write a diary entry , I read vocabllary books . Do you know Nagano ? Do you know Nagano Olympics in 1998 ? Nagano is a famous plase . For Forexsample , Zenkouji ! It is a very old shrine ! Would you serch the Internet ? It is a very big shrine ! In 1992 , I went to Thiland to meet my famiry . I am part Japanese , Thai and Chinease . My older brother lives in Tailand . Labor Festvial is a big holiday in China . At college I have a lot of time to study and play with my classmates , but we are not always togther . Today my math teacher told us about Furby in the class . He feels vexed so he forsed it to eat ( by touching its tongue ) even it when it says `` I 'm full ! `` . recently , I have become interested in Korean dorama . But evetually I got throught it and we made dericious `` Japanese mugwort rice cake `` . In the middle east of Asia , they 've had a truce between Isralis and Palestanians . Hallo ! ! ( Hallo is German ! : P ) Till now , I think that difference betwwen ' see ' and ' look ' is whether it includes actor 's purpose . It 's elegant and gorgeous , I 'm paracticing often : ) If you 're sick or get wound accidently , that means you have to spend valuable time during the day waiting inside of the hospital . There are so many trobles in our life such as family , friends , love and so on . I 'm confiednt of my ability to work for myself . I love music ang watching movies . What is the difference bewteen them ? I know some of them pretty well , ' cuz they live my labo . ) `` The proffessors have the title ' Prof . ' , we put Prof . So I asked them to put the tilte `` Agent `` . ( Wie soll ich die umlauten schreiben ? ) They were in the same stuation as me of having a hard time communicating with Australians . I finally could communicate with Australians because I got uesd to and gained confidence in my English . I have enough money to go to Australia but I am a litte affraid of the swine flu . Swine flu has prevented me from to going Austalia . . . . We enjoy trips during vacaion . What are your school assaignment like ? How long are your essey ? I 'm not as fascinated of it as she is ( it would be difficult : P ) , but I enjoy beatiful paintings from romanticism and photorealism . Please correct my English with the propriate words . My friend asked me to write a draft to ask the university in Carifornia like below . I have not confirmed that my degree is eligible to enroll in your school and sit for the bar exam in California , howerver , Hiroshima University is one of top Japanese national universities . As for wiriting essay skills , I 'm planning to receive support from a local English school in Japan and I want to try to polish up my writing skill enough to pass the bar exam in California in the future . I mean I prefere autonomous distance learning , is that an option through your school ? Thank you for taking the time to answer my questions , I realize that my English wiriting skills are poor For our honeymoon we went to Torkey . This was the first time I went to Tarkey . Farst , I went to Istanbul . I thout so . I was surprised and also shooked to hear that . Like Brundi ? , Singapore , Korea , and also Brazilians from Nagoya orefecture , ( There are a lot of Brazirians in Nagoya . ) and I was very happy because I could get to know them and became friends with them . They are so carm . The Brazirian are in high spirits and I were happy to be in each other 's company . I admit I had overslet one time . . . Just one time ? I 'm always nervous when I have to speack in front of many people . They 're sitting there straing at me and then I forget what I have to say . . . And thanks a lot for cerrecting it . . . I 'm going to live with a guy from Tiwan this momth ! I can live with a guy from Tiwan ! So , football could be world wide sports compared to other spoerts . I was so shocked because it was a tortally misunderstanding , so I explained it carefully , but she still did n't calm down . My careless behavor might have upset her , but I thought the focus of her anger was not the main subject we were dealing with . However , this earthquack was too strong and brought a 10 - meter - tall tsunami . The earthquack was 8 . 9 on the richter scale . The biggest earthquack in Taiwan was just 7 . 3 and it made us lose a lot . It 's hard to imagine what became when a 8 . 9 earthquack and 10 - meter - tall , 3km per second tsunami happened at the same time and the same place . If it was in Taiwan or if I was a Japaness , where would I be or where would I be standing now ? It 's rainiing sometimes , but the next day the whoke world becomes so green . It 's wendy today ! But sometimes it is a little hot and wendles . We chose classes by cumputer . We needed to remember the class number to choss classes . For a long time , I have n't logined into my account of Lang - 8 . Two shoolboys began to play agame to warm their body 's . I took a trip to Tokyo Disny Resort with my boyfriend . hello everyone , today is my first time to use this webside . I found this webside to be very useful . I 'm 20 yaers old . They speaks English fluently , but his boyfriend especially has a maevelous talent for languages . like spending time in domitory ( sharing room with friends ) , playing seasonal sports and learning about other cultures at that time . That 's why I dicided to write a diary or something on `` lang - 8 `` . Recently I 've watched ' Star Trec - Voyager ' to improve my listening skill . But my English teacher recommended me to watch ' Star Trec - Voyager ' because the actors and actress speak clearly . I want to write entris on the trip to Malacca , but I do n't have enogh time to write . I will be glad if will you correct these sentenses ! It seems like I 'm writing mothly journals repeating `` Long time no see ! `` The connection to the web browser is in VERY poor condition inside the dormitory where I am , so it 's difficult to enjoy web suffing . My old PC is borken , so my mom bought me a new one . Doing volunteer work that helps some exchange students to study Korean , I realized that Korean grammer is too difficult to learn , which make me wonder how I learned Korean without any difficuly . He came to the university to receving that costume from the store . So here I 'd like to study techical English and make new friends ( fram all over the world , but it seems to only be a dream ) . He corrected it and tought me about the word `` appointment `` . We are going to buy some somthings for her and go to northern Thailand to congratulate her . It has very widly & beautiful scenery , and the food is more delicious than anywhere else . In particular , the seafood is delicious . I read in the news that sushi is a popular food around the world . I will take the chnce to eat sushi when I go abroad . Each of them got a prize at the photo contetion for tram cars last fall . Actually Roh - bai is not the same as Ume but very simular to Ume . Japanes like Ume fully blooming on Februaly after the Roh - bai flower fell out . However the answer was `` no `` so I opend the door , but middle aged woman in green shirt was sat down on the toilet . I interviewed in Tokyo last Tuseday . Anywey I do n't have a lot of time to live in Korea . Today , it is a beatiful day . In Japan Saint Valentein 's Day is the day for men to present chocolate to their lovers . But we did n't have a Christmas party recentry . Have a nice Cristmas Eve ! I sterted the Twitter . It is an action movie about the conflict between Betman and the Joker . Betman represents justice . Christian Bale plays the role of Betman and Heath Ledger plays the role of the Joker . I had been doing nothing but sutudying for my university entrance examinations for a whole year . Then , this spring I tought in this spring `` I shoud work ! though I had been given a scholarship untill I dropped out of the university that I had been at before . Today , I thougt that money is more precious than ever before ! Many of the people who gathered at the park were holding flowers to show their sympathy for thos who died in the massacre . The last three problems were really covoluted . the following sentece . . . Today my coworker tald me about a Korean singer . I also beleive in Chinese fortune - telling as well as Tarot cards and blood types . For me , I live a life with a contradiction of modern technology and the old - fashioned ancient knowlege . I plan to go somewhere to see the cherry blosom . ( But they are n't canser ) I have had some chenges lately . Fitst , my spoken English is very pool , so I think I should speak more with foreign teacher . I should also look back the old knoledge . For this exam , I must have a good grade , It matters my Englishe Band Four . I 'm so lonly , because he supported me . He said `` Let 's cure th illness together . `` I 'm so lonly . So I hope some day we can meet again in heavn . That year , The Sydney Mornign Herald and the World Wide Fund for Nature conceived the idea which was observed / celebrated in Sydney as well as in some other Australian cities , followed by other cities around the world . Because I inted to change my rooms interior . Recentry , I am interest in Northern European kid 's room interior . Recentry , I am interested to go to Korea , China , and Europe ! I 've been to Korea , Singapore , NY and Austraria . This is my very first dialy , I 'm quite lazy , but I really want to improve my poor English so I 'm thinking to write every day , , , , as much as possible , so please check them ! If I keep using my iPhone like that , I 'll develop bad helth . But actualy , my iPhone used me ! Please give me some agood advice . Drinkong an alcohol beverage ? Riding a creazy ride at an amusement park ? What about taking a bath in hot bathturb ? You may pass out due to the creazy hot , spicy taste . I 've decided to travle around ( in ) Europe when I do my masters degree in the UK . Among these , two of them are Safco Field and Yankee Stadium in America . My grandfahter cut the rice plants in large quantities with a reaper ( photo 1 ) . Apart from that , I can amuse myself because these days cI have a bad mood . I was really disappointed in myself and feel sorry for my parents coz I ` d been studing very hard for the test and they invested lots of money in me , like hiring a private teacher and letting me go to cram skool , but I still did n't do well . . . its a kinda english test with 4 sections : spearking , writing , listening and reading for people is who are studying english as a second language . I dont feel like studig anymore . well the test score realy discouraged me . `` Likely I will continue , `` another person said . `` Cigarettes are part of my life and I ca n't abanden them unless I die . `` In Japan , a lot of resterant are starting to offer hot pot dish . I found this website on the enternet . Please collrect my sentence if I make a mistake . Some exparts say that a lot of natural resouces have not been found yet and also it will give us the opportunity to start business ! ! Hoding your hands tightly , my heart would burst into fragments . I have been working for 1 year and I have learned a lesson - I lack of counage , which is a disadvantage when I was doing work . But many times my friends have told me : `` You do n't look like the ( conservative ) kind of person ! `` Becuase I usually take it easy when I 'm with them . Life sucks without true love , and I msut learn what should I do to find the zeal for my work . It couses a thunami . What do you think about this catostrophy ? In short , it is okey that we use 2000 kanjis . I am reviewing the German cultur NYC is a very very exciting , amezing , beautiful city . Comming soon ! ! ! A few hours ago , I read an article about Winston Churchill who is the most famous prime minister in Britsh . I want all the friends have a happy time in this lovely internation social network . Please be my freinds . My car has a sheet of ahes on it . For example if you do n't take Math or Biology you cant go to medcal school ( I dont wanna be a docter or surgeon so I want to drop it anyway ^ _ ^ ) . Well it 's a difficult decision but I have plenty of time ! Because of this , I 'm sing have less opportuny to study . I want to recover my diligence without rejecting my friends ' imvitation . My favorits Today , I will write about one of my favorits things . Comiket , Comic market or KOMIKE in Japanese pronounce , is a kind of market place dealing popculture andit is theworld 's biggest festival for amateur artists and manga - fans . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into living room , and she said that some blak object fell . It was so yammy . After I have finishd the class I will ask you to join and learn Thai with me there . Why can foreign peaple speak Englsh ? I conceal my feelings and emotions uncousiously . Also my wife and I have a bit of the cold so we are taking many vitamin C saprimment . We had having a special couse menu as below , Of couse it was very delicious . Although I didn n't know exactly who he was . Where I work , there are lots of real bilingals who make me envious . my englisg is very bad , I need to learn it , very fast , some ideas ? Do you knou `` Fantasista `` ? Futhermore , ecotourism , whose business takes advantage of the wilderness , may have harmful effects on it . I love to exesise . So I descided to do some exesises for my helth during summer vacation . The course for students is inexoensive . For this reason , I discided to use this gym quickly . My body will change in thie summer when I keep training . Thus , what I shoud do is to get used to the current life and rhythm . It is so confortable that I am not willing to wake up . Many of my friends spend a lof of money going to a cram school for English . But to be honet , it was totally funny and fun . haha . I sware to read English everyday . I sware to read English everyday , because my English is too poor . It 's embarressed me and I noticed that it 's time to improve my English . . . By the way we went to animal hospital to vactinate my ferrets . I ordered a ticket to Arch Enemy 's concert through the Internt but I have n't gotten an email confirmation from the company . Acutually , I knew that already but I wanted to study etymology anyway . Today , I had a three hour lecture on political science , amd a theree hour lecture on world histry A few days ago , I started to translate Machiavelli 's `` The Prince `` from English to Japanse . I feel as if I 'm decoding a cipher when I translate . Well , I do n't know if this comparison is right . `` What does this sentense mean ? `` I repeatedly think and imagine the meaning . It is very cothic and makes me think about ghosts . I was taking some photos of the church iyself , and of me next to this church , but this photo is the best one for me becouse it creates jouful emotions in my soul and heart . Let 's write about Joni Michell , one of my favorite musician . The occation of the first meeting to her music was in my boyfriend 's CD rack those days ago . A musitian and a painter . My mother took us to the station and I took the trin . It was lovery , was n't it ? ; ) There were many stands there that sold vgetables . Past tense . The street there was made of blicks . I think I lack knowlage and reading books would help me create my own idea or anything . I had finished reading `` Wuthering Heights `` yeaterday . Althouth it is a small and characterised by its long heritage , Yangzhou is flourishing and becoming more and more flourishing . An industrail park has been built just beside / next to the old town , where many new high tech companies are booming . When people realize that they can develop careers in small cities , large cities like Beijing and Shanghai may be relieved of some burdern . I run every night to reflesh my body and mind ( ? ) . in order to reflesh my body and mind . Back then , I always ranninng before dinner . I only have a datebase in my PC . After that , I did my homework til 10 a . m . After doing my homework , I started cooking and had lunch with my roomate ( s ) . Yesterday , I had my withdom tooth pulled out . The exam on history of Rossia was very difficult . I expect a lot from my new life at univercity . This is a foto of my class = ) ) ) Only girls as you see = D We eat grilled beaf , chicken and vegetables . I have studied English for eight years and I usualy talk with my friends in English . So , if anyone would like to teach me proper phrases , I 'd be most apreciate . First off , I went to headquater where I got heartwarming welcome from all the people on the staff , including the section director . Maybe this is commom sense but it always annoys me . . . I saw three other cruise ships thet were different to yeaterday . Prime Ministar Members of Hatoyama 's cabinet were intruduced in today 's newspaper . He looks earnest and persivering . The economic bubble burst suddenly , and that effect spread quiculy all over the world . From his official web site ' HIFUMIYO ' , he has traveled to many countries , and seems to have become a socalist . He criticises capitalism incisively ( particulary in Amrica ) on his site . I have been studing English for about 5 years , but , it has not worked . I 'm trying to learn gramatics , words , etc . Everyone 's help is welcom ! Because of th school garden party , I teach undergraduates Arcitecture at my university . I teach Descriptive Geometry , a kind of drawng . I sometimes use some pieces of paper or solid models which I made for them , beause it 's hard to describe things somtime by only speaking . I jogged only on the weekend , but I think it has a little effect in decrese my weight . It 's been so long time sice I wrpte sonthing the last time . Please crrect my poor English sentences . The daughter which will arrive first of all will arrive early next Tursday morning . I think I only enjoy being with them such as rioght now . The Japanese landlady was going to England to celabrate Christmas and Ner Years day with her family members and husband 's relatives . Deschanel one of my favorite actresses . I 've seen an aquaintance use this phrase before , but I was n't able to understand the usage . To enter that high school I should get a good grade on this midtern test which is next month . I am looking forward to hearing thier new sounds . Despite embarrasing , the Russian people , who get by in foreign languages , pick them up with a great pleasure and are ready to help you find your destination . At last , I finished writting about my last Seoul trip . But she really likes Enlish , and speaks almost exclusively in English . Unfortunately my school field trip has been postphoend . That trip is sceduled to go on Ang . So , It may be all diffrent . And , I encountered whay I feel cute . ( not meaning sexually ) I drank orange juse . And it ` s gon na take a few more minutes for us to neally clear up our heads . I should have eaten a balanced diet with prenty of vegitables and gotten some exercise , but it 's too late now . Hope that I will be admitted to the HUK . I 'll watch ' THE PRODUSERS ' next . Yesterday , I went to two museums : Quai Branly Musuem and Paris City Museum of Modern Art . This is my favorit movie I recomend you go see it . Now I 'm faced with the prospect of studying alone abroad within 2 years , without hearing my familiar mothe tongue , without my boyfriend or friends , and maybe becoming overweight and lonely . She said that `` I ca n't walk a step , not to mention running , cbecause my Ipod has n't been charged `` . Meanwhile reading professional text books written in English is also in my schedual . I think my ability to write English is worse than before because I did n't any write journals in Engilsh . Of cource the same goes for German . Ah , they were very strict with me growning up and , um , I used to have to sit at the piano for hours to practice . Ah , when I was younger I , um , bresented my mother for this discipline , but when I turned about eleven years old , I was very grateful to her . I was probably better at piano than I am kown . You can see there are a few books but a lot of wood meterials . Not only humman being but , also animals too . but I know he has such kind of charactor . As for me , I always use English - Japanese dictionary and trancerate to Japanese because it is the faster way to understanding what is the meaning of words . Please judge this sentense . It seems very crazy . When I play majon , I get a lot of money . in other words , I make moeny . The reson seems bad . Could somebody think of adjectives which do not have superlative nor comperative forms ? One of my favorite English teachers wiil leave the school at the end of next month . Hello , evryone ! We met my friends cusin and her friends in new york during weekends . We were able to stay at her cusin 's friend 's hotel so we payed less than the usall cost . when I see more things I often feel that I could contral them . What ( Which food is famos during the winter in your contry ? ) Helo , People please help me out here , sometimes I have mindsome doubts about how to use the words ( up and out ) after verbs . For example : clean up , check out , coming up , carry out , etc . ) I do n't know how to explain but sometimes I ca n't understand the meaning of the words that come ( up and out ) after some verbs . Can you guys tell me ? Our hula impressed many sinior very much . Above all , `` Heal the world `` by Michal Jackson was surprisingly asked for an encore ! I was always flitened when I heard this music . FUJIYAMA is a rollar coaster . FUJIKYU HAILAND has lots of rollar coasters . I do n't like rollar coasters , but I went there with my friends . It 's called Rarmen in Japan and is very popular . Rarmaen has many flavors . They are soy sourse , soybean paste , salt , and tonkothu . I like tonkothu the best , becauze it 's poplar in Fukuoka , where I use to live . Tonkothu soup is made from the poak , and the taste is rich . The last Japanese food I ate in Japan is tonkothu rarmen at Nagoya airport . My sore throut was cured , but I have a hadeach and a fever . Are you familiar with Riverdance ? Riverdance is an Irish tap dance . My sore thoroat has not chonge . The hero in the story is n't the typical character in korea dramas . My hobby is watching Ameican soap operas . Watching Americna soap operas really help me to study English . I 'll watch ' Desperate ousewives season 3 ' , next . I 'm travling Mie now . Trick or theat I want to know if this is a correct sentence or incorect sentence . But I am Istill waiting . So , I want to go abrod to learn how to prepare foreign food . Charo is an Eglish learning program by NHK , a Japanese broadcasting campany . The radio version is little bit longer and more difficult because it has more datails . The cartoon and book are good for me and my daugther . When I get tired of studing English , I just listen to the story . That 's why I believe It is the best brogram . Now I 'm watching a football game , and I 'm reluxing . It was about the ages from highscool to university . I basicaly agree with this thought . I 'm very busy everydey because I 'm preparing for Koshosai . Would you correct my grammer Please contact me , and beaome a friend . I wonder if I should update the farmware of the wireless router . They were delicious and awsome ! ! I have a long hair and blue light eyes . I 'm tall 1 . 63 cm maybe ; my fisical is normail - thin . . . bhe I hope to learn something from your corrections . . . Vangard Princess He is a MacGyber . This week is the Buddist Lent and get one day off on Monday . I 'm currently on matanity leave , since Sep 2009 . I love steaks so Australis is HEAVEN . I know some of my frieds work about 14 ~ 15 hour day . I went to the 2010 Iwate Art Festa at the Iwate Prefectural Art Musium , with my friend . I got the pen and a postcard at the musium shop . I have meny hippopotamus goods . Mid - term exam day , family 's birthdays , writting contests . . . This year , my mom wants to get an eletronic bible . life consists of many trivias things , and those things built up life . I bougt it a few years ago . But I had forgitten I had bought it ! Last night , I notice the card and I trid it . The card was wtitten in perfect message for me . I wrote many New Year 's cards to my friends and relitives today . Here in Japan , New Year 's cards are really popular . On the other hand , Cristmas cards are n't as popular . You know , it 's the most famouse American animation . We Japanese speake English , I hear like Words of Space . I 'm so exgusted , I just finished teuk kong mu sool which is called martial arts ? ? ( I do n't know how spell it , , , ) I had highking on my neck by the guy who is 5 years youger than me , , , I think that forigner are open minded to everybody , so I can make friends easily . Now I 'm learning English and Polish at the uniwersity . Unfortunaly , you ca n't understand the [ useful ? ] of the song if you do n't speak french because the lyrics create the [ variation ? ] ( but listen to it anyway ^ ^ ) . Everything in the outside world was scarey to me , and I could not move at all . He is 9 years old now , and still bilieve in Santa Claus . I must change to Sant Claus in secret at midnight . Lately , my parents always conplain about my learning schedule . I feel jerous ! A screw is dificult to take off and took about an hour . There were n't many biycicls . A lot of big and high bildengs were there . The hotel we stayed was gorgase . Then put in the backpack and we climed the mountain . And in the tarin I came across a man and he asks me what train Jhon got on . What I came up with is , `` ( Jhon got on ) The train earlier than this by two trains . `` Does it make sense ? I recieved a telemarketing call today . Nowadays , I recieve them evry day . I have n't put my coat away in the drower yet . I 'll sleap now . Janualy 14 ideal : What 's the ideal educational style for Americam people ? ( for ? ) basic : I thought I needed to study basic English grmmer . Funish ! : D Otukaresama Everyone ! XO ( btw how do you say Otukaresama in English ? ) Unfortunatelly , this weekend was very warm , spring is coming early . It cosisted of two parts . In the second round , Manny Pacquiao , the pride of the filipino , K . Yesterday , I read a documentaory about the `` blood diamonds `` or `` conflict diamonds `` The diamonds which from the civil war countriy was called conflict diamonds , or blood diamonds . But in 2003 , diamonds company , civil society group and governments around the world began an effert to stop the trade in coflict diamonds . The diamonds from the civil war countriy will not be sold in the international market . Although there are many illegal diamonds traders , they bought the coflict diamonds . Because it is the frist time that I went on a trip with my boyfriend , I was so excited . If you visit KOREA , I strongly recommend visiting geo - je - do ( there are many fasninating spots ) . I have to preapare for the class and I have new students whose names I should remember . April or Spring is the time when I 'm very busy worring about a lot of things . . . . So , I would like to be find a lanage exchange partner My owen dream acrooss the sea . I and my friend went to nearby lake and we swam and walked in forest : ) There are many trees : D and it 's green and brown : ) At this lake there is a beatiful beach . We think we want to stabilze our salary . I think companies have a responsibility to stabilzing our salary . I have to work until at 6 : 00 and than I going to the English Academy from 7 : 00 until 8 : 00 and then I will go take care of my daughter at my mother in law 's hause . That will hel him / her cultivate the ability to concentration . I am not the kind of person who would want to be a professional housewife ; however , I feel happy every everytime I make the house clean and tidy . I felf very tired and stressed , but it was very interesting . That 's suprising is n't it ? ' A person whose neme is written in this notebook shall die . ' deu to the movie `` Notting hill `` What is cultural ? It is defined as the civilization and customs of a cretain race or nation . How can we aviod it ? It 's easy to assume that there must be a scramle and I 'm not used to doing things like that . I love The Stiff Dylans ' ver . Readin practice What a stupid introduciton lol . It is really difficult even for me as a native Jaapanese to get used to it . to begin as a beginer but I just wated 15 minutes . Hi = ) ) ) I want to comtiniou my favourite dorama list ! I was shoked so badly after I watched this dorama ! Ok , to be cintinued . . . = ) Yestoday , a T - shirt was enough . Before I go to bed , I should prepare my bedquilt . If I do n't , this evening I wo n't sleep well . Today I recive 4 clothings that I bought form taobao . He diagonize him with a cold . He is crancky , so I have to hold him all day . I started learning the use of the Excel apprication on the first day of this month . I spent 9 months in Machester with my host - family so they 've become like my real family ! Just went to the gym , and as usual I am woring now . Go straight along Peter Street and take the second turnig on the right . Then , turn right and go along the road until you get to Picadilly Circus . I had a lot of nightmares last night , because I watched the horror movie `` ghost ship `` befor going to bed . And I 'm a biginner in Chinese . Now I 'm taking calss called Children 's Literature . We are planning to repaper the walls , redo the floors , and chage the cabinets in the kitchen . It 's named Bianki . Bianki is an Italian maker . What 's the differnence between them ? `` Gheimeh `` is a kind of `` Khoresht `` ; `` Khoresht `` is a meal that consists of meat , vegtables , and beans or grains . Becuase of this use , some people called `` Gheimeh `` a dead people 's meal . In the next stage peel and cut tomatoes and fry them ; you can also cut some mashrooms and a green pepper into small pieces and add them to the frying potatoes , then add salt and red or black pepper to the mixture . First of all , spring semster has come and I 'm taking some classes , However , my speaking and writting socore wasn ` t good . My colleague 's speace was so impressive . I ate Ayu , rever fish in summer , tofu , waite beans and sashimi . This photo is of a place where I usualy go fishing . These raboratories contents have many subjects and they are hard . I have just finished my SPM which is the exam that must be taken by the 17 - year - old studddents . After that , some of my friends are goin to persue their studies in colleges and universities . There were los of friends ^ - ^ When my room is tidy , I feel more enegetic . Today , I counsulted the agency who are involved with students studying abroad . The counseler said that it would n't be usefull to study abroad for only 2 weeks . I stay with an Itarian family in Canada . Refernce book I Bought shose . I 've alwalys wanted to buy shoes to wear for spring . I bought songs by Ann Triskel at the iTunes stoer . whithout a title Can it be insteresting ? But the Tenprature was terreable , Becase summer starts in a week . When we arrived at the aquqrium , we were very tired We are not given any time for debet or questions . So he is not populr with students . A month has passed since the big earthquke has hit Japan . All we can do is to keep doneting money to them and spending money to buy goods from the regions suffering . When someone ignor me , I 'm hurt . I think being hurt is not bad , it 's sometimes neccessary . A hot day ! The tempreture is 35 degrees . How I wish I can stay at home fowever ! If I had enough money , I would buy many bags and clothers , but I didn ` t have enough money . Beacause I must save a lot money to change my car . I have stayed home almost every day sinse summer vacation began . . . I 'm an entorepurenur in Japan . Someo people use their real name and others do not . After a short walk in this round market I went to a coffee bar to get a coffe . For example , Naruto , Keroro Gunsou , evangerion . . . and more . I downloaded Merriam - Webster dictionary , English magazines , and an Engliah word book . Then , I came to the conclution that I am experiencing difficulities because of the difference in cultural background . Althogh it was the first time we had made one , it took us only thirty minutes . 2006 Completed Japanese instructor course 420 hours at Hirohima YMCA 2008 Had expericence as a Japanese instructor in Melbourne When we borrow money for someone , _ we should determine to pricise date of repayment . `` No smoking `` signs surroundour daily dailylife as we walk in the streets , shopp in the malls , travel on buses , or watch movies in the cinema . I 'm so sorry for not being as active as the past weeks here , but I truly am busy because it 's one week left to the Persian New Year ( nowrouz ) . People get really really busy from about two weeks before novrouz to two weeks after it . I went to the Mational History Museum on foot ! The police said , thay they evacuated the houses of two old men . In English class , we are reading an essey which is about the moon 's mystery . When it is near the holizon , it looks bigger than when it is overhead . So , we get impression that the moon is big because its real size is begger than expected size . Because I am not satisfied with my circumstances or myself somtimes . During the test we needed to read an article and answer some comprehesion questions . I think the context was too sophisticated for me ; like `` message from the cultural elite : reas , you morons , and eat your spinach while you 're at it ! `` My friend saied I did not understand because I do not know thw American culture and it 's kind of a joke . I am quite excitied to have my own lang - 8 username . * * * Dalian is a beautiful city with lots of delicious food , pretty beaches and warmhearted peopel . I got a used notebook computer to study the structure of the PC from my friend , but it 's broken . It was heating geradually , and the operating system was shutting down repeatedly . I have little experience dismantling PCs , so I do n't know what to do . I have to buy books to study . However , I feel sad because I am going to leave my school that I have stayed during five years , and I miss the people and everyhing that has happened in this school . I aprreciate the memories and the wonderful favors in my life . I think the second way is the most sutitable for me . Previously I worked as a full time employee for the same compary as now . It 's much simpl than you think , inspector . or is he seious ? One of my frineds told me that they are just looking for japanese girl because they are pretty and easy to play with . I 'm sure that sometimes it 's ture . An old film , `` Phantom of the Opera `` was pleyed on the screen . I wonder wheather I can live in a foreign country or not . Today , I begin to keep my daialy in English . but is it reary ? According to the program , he still lives in the small town where he was born and lives like an ordinary local person , even though he is a billionair . As we know , there is no specail machine we can use . Last weekend / a vegitable yard and my small pots of plants . I 'm goning to Tokyo for a job hunt . I am going to go NY next year for my privete exhibition , so I have to learn English . However , I 've succeeded in redusing my weight by ten kilograms within half a year . Actually , I am keen on wearing smart clothes and want to look cool but it is clucial ( ? ) for that to have a good shape of my body . I am goingshopping today . I ca n't waitt . Second time , I sould use `` glad `` . Somehow , I am writting my dairy now , it may be a good day today . ( ? ) Becouse not only is it hot outside , but also it 's cold inside . And electric pawer needs to be too cool in rooms that make more CO2 . I can do this but can you ? I would never lie to you but you do n't belive me . Tell me what I should do . I miss the times when we were happy . I have been looking for a new house thes days . I wourld like to try being an actriss in Hollywood . So hte proncipal decided to suspend the first grade class . I also work in an aparrel company . I found every sentence I wrote usally contains `` I `` , can anybody suggest a better structure ? We would take a ride every Saterday . The winter coats that I had dry - cleaned were needed agian for today . I cooked twe salads . They were so jucy and sweatey . The afternnoon is very quiet , I can only hear the sound of typing keyboard . but , do n't call me neet . I 'm not neet . I hav n't been here for more than a month because I have no conputer . So , I am starting on a diet where I cook traditinal Japanese food . Today 's manu was Udon and seawood salad . I was amaized that so much Japanese food really does n't need oil . I think that this is beacuse the earth is dying . The issue of global warming is getting wores and worse . The last day I logined in was . . . . . . They help me to live and to chane my life . I 'm suffering from a backach . My favorite is LINLIN PARK . It 's good season for auturmn leaves ^ ^ Peco is extroverted and has a papassion for table tennis . Thier characteristics are very different , but noth has real talent . I felt that I could n't do that , so I reamined standing . We call them , `` Tunderstorms Guerrilla `` . First , I will turn off my lights frequetly ^ ^ Recentry , I 've been getting very sleepy . , What reason is this ? There might be some Japanese people who would come up with a Koean drama , but it 's not that Full House . The picuture is from a scene where Michelle says `` Duh `` to Stephanie . mayba in this sentence , the man will be suspect , not the police . . . right ? Most Jpanese People can not speak English . so I want to work for a software developement company But I think I ca n't take advantege of what I 'm doing now B : continue my studies and try to become a resercher . I was a sexy pink cat with my friend . ( we wore the same cosutume : ) ) I think the Japanese cherry `` Sato - Nishiki `` is the king of chrry . My home town , Yamagata , is famouse for producing cherries . Once , I ate another kind of cerry , but I realized that Sato - Nishiki is better than the other cerry . . . JOB SERCH I make customs documens . I have no intersts in it . It is OK to make cusutoms documents and make reservations for shipments . I want to do a more crative job . Many friends offen tell me that I must change . . . Change what ? I was talking about a name with my firend . Actually , this is my first time that I have stayed in the United States , and I missed Japan druing the first few days . It is dedicated to the roots of the Japanes and is a very solemn place . I choiced espresso ice cream and it was a right choice . Today 's theme is `` room fragrance `` , becouse I bought some room fragrance yesterday . And Rowan Atkincon was nice to the boy . I heard that Fahrenheit is defined by normal body tempreture . Recently , ' OTOKO - NO - KO ' are increacing paticularly in Akihabara , Tokyo . On Thursday morinig , I took her to the clinic and the doctor prescribed some medicene for a cold . Their conditionaer makes my difficult hair easier to comb I 'm sorry for the filty talk . I feel itchy so often but I wear shoes or slippers so I ca n't scrach them . I turned on my computer and connected to the mechine at my company in order to examine the check list . Aftef two hours , I finally processed all of the problems . It 's special kind of relationships - language - relation ( fuhtermore - LR ) , relation , which based on wishes to communication . I dicided So I dicided to become a manager and change my department . I 'm beeing excited . They can talk before we konw it . How can I enjoy studing English grammer ? ? Actually I do n't like studing grammer . . . . . I wonder how I can enjoy studing grammer . . . Our hosue is on the 7th floor . I then pressed the botton for the 7th floor . . . His mother or his familiy 's maid was already on the elevator ( I could n't see who was inside of it from my position ) . As far as I could see , he was not even embarrasing . But we 're in Singapore . Besides if I did so , he would probably pee on our doorstep to take revange on me . I hope some poverted kidnappers will take him to their house which has a lot of sex toys , and keep him as a sexual pet forever . I bought many souveniors . For example ; postcards , ornaments and a lot of table wares . TOday I went to Fukui prefexture . sometime I will go with my boyfriend to watch a moive or walk in the afternoon . myabe just watching TV or talking with my mother or give my dog a bath . I came back to Korea from Austraila a few days ago to prepare for being an exchange sudent next year . I started studying English by becoming intetersted . . . I like listening to the radio , especailly late at night . To my surprise , It cost me about 2500yen ( almost 20 dallars ) . Everytime I breathe the dry and cold air , I feel warm , beacuse the smell is familiar which makes me safe . I have studed in Beijing for almost 3 years , but sometimes I still miss home . Yeaterday at the restaurant I really had to study English for the TOEIC test but as I was with my frind , in fact I could n't do it . ( My friend would study somthing as well ) Do yu know why ? / But you know , whenever my friend talks to me , I will have a chat with him and I consentrate on talking with him and studying is out of my objective . . . Shonan is in Kanagawa prefcutre which is near Tokyo . Near sounds more natural . It takes ten minutes by bcycle . Whenever I want to relax , I can easily go to the beach and enjoy the beatiful scenery and decious food . Becasuse they stay up with their crying child all night . The gray sky seemed to cry miserablely , and the mental energy in my body has been fading away little by little . Another thing in order for you to keep healty is to cut over - eating in your diet . The parties that out of power are asking the ruling party for a change in goverment . You can devide people into two groups . Do n't get cold everybode . I went on a bussiness trip to Chiba prefecture . I have to make preparation for my visit to Autralia . Trainig course of business strategy The world will form a necessary combination for you to keep your life going on : ) So meny people who said `` I can never live without you `` live without and feel very happy . I was tired and I enjoied it . It was used the concreate , not the wooden building like the other castles , so it is just the museum inside . The fondation of this castle is the stone wall using a lot of big stones like the other castle , but there are some huge stones here , like the second photo attached . along the road to the top , the secen was so beautiful ~ I saw many noticements on the moiuntain , like `` please do n't go near the cliff as it is dangerous `` `` do n't go down the wild path accompancies `` . when we arrived home , I found my skin was burnt bittley and turned to red and will maybe change to black , hh ~ By watching the episodes , an English learner would not only be able to practice English , but also absorb the Weatern culture . They are Alaways are the same as before . So , some effictive measures have been taken to improve the quality of the spring festival gala . I think most of the time I 'm just studing to pass the exam and never think about mastering it . I know that he isn ' scik . My friend suddenly called me and said she wanted to have fun at Roppongi because she has a lot of friedns there . She had worked at a spors bar before . He is a teacher at a junir high school near my house . On the menu for luch was chinese food , like a dumpling , dim sum and things like that . Recently my hobby is writting down the line from a movie into my notebooks . And then I remorize the line , and say it . Japanse sause is made from various things such as vegetables , fruit and so on . Salted fied Chinese noodles have recently become known ( or popular ) in Japan . A typhoon is comimg to Japan . Let 's save enegy together . I would like my frinds to have strong boday so they can visit me in the future . I read an article today that said if we trun on lights often at night when we are sleeping , that can make us get a bad disease . By the way , it can waste our elecsity . Let 's help our country to save enegy before we go to bed and help the world . It is called euphenism . It is the euphenism `` when a native speaker says the conected `` t `` or `` d `` sound like . . . Recentry , I have been getting ready to travel around the world . I want to help out in biology research and to absorb knowlege about it . First of all , thank you very much for your concern and lots of helping hands from outsie Japan . Still I believe Japan 's Defence Force and other rescue teams from outside Japan will never give up finding the survivers . I 'm very busy now because of a essey for graduate school . As I travel more and more , what I find is the tough quality and open - mindness of Hongkongers . I could get over not sleeping more than drinking coffee . Also , I hav n't met a girlfriend . I want to go to Tailand . I can not stop thinking of them , but one thing I definitely can say ; her Japanese was not so good , and the descriptions / portrayals of Japanese ( people ) were very biased ( stereotypical ) to foreingers . Finally , they bacame friends . 11 elewen 14 fortenn Since my shop is very quiet , I have a lot of free time at work . So I have decided to write all the English words I knew starting with an `` A `` , and then check those at home . The impotant words are written in red ! Today was `` B `` s turn . I was wondering what is their meaning , becouase in Japanese , black - bellied means wicked , evil - minded or scheming . But of couse , it is idiom for Japanese people . She spoked to me . I was frasturated . In that period , my teammates and I shared joys ang sorrows and helped each other . Though after 14 days when our work as a volunteer finished , we would leave each other . Perhaps we would never meet again , but we still cherished this friendship and those unforgetable days . There are staff members from many countries that can talk with costamars . They are not theaching Engilsh there but costamars can learn English naturaly . On Sunday , I went to T - place again , but this time with my dougter . My dougter brogut some pciture books to ask a staff member to read for her . If you have them , I would like you to comunicate with me in English or Japanese . After watching the movie we went to a Italian restrant and chatted a lot XD for me , it might be the most exiciting day of this summer vacation I 'm working at a convinience store and it was very busy today : ( I wrote a self - introducyion for my friend . They can say `` happy Valentine 's day `` as usuall . then I often feel annory , because the day does n't belong to me . But other people message me `` happy Valentine 's day too , although we do n't havent love ones `` . haha ~ ~ now I feel happy , although I dont havent a boyfriend * * but I have some good friends . the last time , we went to a Barbecue restaurant to eat a lot of food . and it 's interesting , a group of obaasan were singing loudly and drinking in the next place to ours . They looked so happy at the day . just some old womam , no rose , no chocolate , but happy the same ! When it comes to the factors in successful development of a country , no one can ignore the importance of education , and no one can draw a conclusion of basical factors in the development of a country . Take South Africa for an example , as is shown in the statistics provided by the government of Africa , there are so many familes which are too poor to send their children to get an education . I saw a bird knoking on one of the trees in my garden this morning . My hpliday has been going so fast I quickly ate a simple breakfirst . corecting donations and taking them to the community office before ten . I image what might happen . I think they will communicate using their own words , waving their hands , compare their voice through crying , not just using eye contect . Actually , I was really thankful beacuse they give me fun in this busy life . Then I think if we put ourselves out of our work and life , and give an eye on other people or things around us . We will find a lot of fun in our world . My favirite artists are Avril Lavigne , Greenday , Linkinpark , Fort Mynor , For example Naruto , One - Piece , D - Grayman , Gintama , and Fullmetal arcemist , and I like Final Fantasy and Legend of the zeluda . The times we praticed were fun , and we took many pictures to remenber the best times that we shared being that this is the last time we can work and play together at the anivesary of Chhs . I bagen learning the guitar one year ago , and I hope I could be a great guitar player as him ! Why do I have to pay as much as 15 - 20 % to servers who just take my order and ask me if everthing is OK ? There is holyday on next Monday . I recieve a call . Often , I try to practice speaking English on this site , but I do n't think my English pronounciation is improving . In the end , Yu - Na won the gold medal with umbelievable points . Yesterdey in Russia was the holiday ' ' Victory Day ' ' . First , we went to my cottege and rested there . The frrst diary I sometimes ca n't answer the questions because I would be nurvious during the interviews . I 've been studying English for 9 yeras . My home 's cristmas tree My 4 - year - old son decorated my house 's small cristmas tree . So the cristmas tree decorations are unbalanced . I gethered a lot of toys , books and my children 's homework . I read a book called `` Nnmber the Stars `` because I am interested in learning about the Holocaust of the Second world war and how the Danish rescued the Jews . To my dear friends who are living arond the world now . Please liten to what I say right now ! If you do n't have them , I too sugest you should find out them soon . I hope you will become so happy to get to find a nice pertner . We had a funtastic time . We were supposed to go to Stanly by mini bus from Causeway Bay . Afer that , I told the mini - bus driver that I would like to pay the fare of the oter 5 members fare with my Octopus card . It makes me feel willing to continue this dialy . Tomorrow , I must write and thank the people who watch this dialy , and who teach me . I 'm stumpted . I just want to say that I was in inlove eith Japan and now , there 's left nothing . My major is Enlish education , and I like English . I 've wanted to learn English for a while bacause I want to communicate with people all over the world and know their ideas about things , dreams , interests , character and so on . It sounds really intesting . Pendulum - Granite is my fevorite song ! Even if I get acupuncture therapy regulary , the cold weather triggers it more often than hot weather . According to the book , we can live long by calolic restriction . It has been shown that when animals , including humans , execute calolic restriction , it will lead to a very active and extended life . It 's a pity that I do n't know how to reply quickly . : ( ( Can anybody help me ? ) Getting to know somebody from a different country is really exciting and surpringing . Now I 'm looking forward to an extraodinary February ! my father and my elder brother had to visit to Osaka for busibess trip , By the end of this month , we must have our presentation to the chief excutives . How can I chage this status ? No zest , no prower to continue studying . Also I guess it 's a little bit hard to find a perosn for Language exchange in `` Chinese `` here ; however , I still want to give it a shot . . . It 's depressing for a peson who has learned English for If I can speak more ranguage , then I would speak to more people . and my sence of value will become greater . l practided I learned / studied English at scool and since that time I had no practice . I 'm so tierd . I can not take consective days off and holidays are irregular . I Wan na Enjoy Waching Kid Movies in English ! Mebourne is good city to live in but I hate Melbourne weather ! But this manth , I came back to the head office and I took part in the new project . This summer I have litle free time . I only have one and a half mounth off . There is no heat this mounth . I 'm so nurvus . Because I have n't prepared anything for me to saty here That 's all my falt tho . It was my myfather 's souvenir from Hokkaido ( a place in Northern Japan ) . I also like watching movies and if I have a long vacatin , I would like to travel all over the world . These days in Brisbane , for me , it is not an unfamilar city , because I have lived here for 3 months , but I still feel strange here . Toby knoked over some empty milk bottles . Suddenly Mr Spry 's house door opend , and a man held Toby 's arm . My pronounciation sucks . . . He 's alredy mastered some of those languages perfectly and is going that my pronounsiation sucks . I 've never thought of the way I pronounsiation things as wrong , Even though I 'm a foreiger , I have to try to make it sound fluent as long He was transferred to the ohter branch office . I was really impressd and I cried . I have become accustomed to this changable weather , declining temperature and perpetual rain . There is a bizzare phenomena , to you guys it may be really hard to understand . Due to this reason , I can only use purdent words to record my daily life . But today when I logn into my msn , I got the information that Microsoft will not provide blog service to us and hope that we can move our blog to Wordpress . I do n't wonna be lazy anymore ! It is wriiten by Eric R . She took the doll , and coled her Rika chan . I visited the Blenz Coffee at Yokohama and the NewYourker 's cafe at Ginza . Recently I notice , that more and more of my students are being late or skipping my class . This course of action is ruining my teaching plan beacause many games ca n't be played with small number of people . I went to a family resutaurant with my friend Mari . But I thougt we should find someone to correct us like lang - 8 ! ! Nowdays , Japan is in a very difficult term . Still , many people are missing in last natural disaster and nuclear power plant still difficult situation . . . . . . Do you know the lisence called `` IT Passport `` ? If you have this lisence in Japan , you are qualified as a person who knows the basic knowledge of the imformation technologies . I have to study English hard until I go to the Phillipine , Trip to Hundred Iland and Baguio ( June ) Because we did n't have anything interesting to do , though It was already 4PM , we chartered a boat for iland hopping . Soon after we got inside the boat , great awsome thunder began to rumble and the sky became jet - black darkness . . . The hotel `` Camp John hey `` where we dropped by for the cafe is awsome . but the grave was saved from the Tsunami by a hairsbreath . In the caustal part of Miyagi , debris lays in heaps here and there , To improve my French , I have to take lessons with many teachers soI have no choise . This is a rule in Taiwan but I got a little nerverous . XD im wating for a heatblock to get warm enough . I 'm sleepy , but I will defenitely go . I was traying to translate a Spanish post but . . . I love hime . I do n't know why I love her so much , do n't konw why I ca n't forget her , I 'm not stupid in this problem , I just do n't know ( or / understand ) why . After eatting dinner , I got hungry immediately , maybe I do n't eat enough some foreiners were swimming . Sometimes thay are very strict towards us . Thanks for everyone 's help and she wishes you seccess . I thought the life of University was busy than anytime before when I was [ satting on the chair of classroom and listenning everything the teacher said . One of the stences was that the students at a university did n't have free time to play , because the students need to learn many many things and pay more time than before to learn . Your kind support would be appriciated . I do n't know why Keirin , a bicycle race , can not become major compered to Keiba , a horse racein in Japan . Fingers acrossed . Do tou Know `` Job is Shit `` ? The taitle is `` Job is Shit `` . Neoneat has been writing articles on his site about how disgusting the Japanese wroking environment is . He is also insulting even strict Japanese office workers severly . For example , `` Japanese workers are weak and dogs of their companies `` and `` I 'm working in better working environment than them . Do you envy me ? `` I think the Japanese government is shit , but the Japanese office workers do n't have any reason to be guilty . The Japanese office workers are working every day for themselfe or their families . I hread that sometimes Japanese people are cheated in foreign countries , and then lost their money . It contains English reading , English composition , mathematics , physics and a spesial subject . I am very worried , I was studing 14 hours every day for the past day , I could n't sleep without drinking , I was tried . So , I decided that I will take a vacation after the test to reduce my stress . I wish the pain ( would ) disappear by ) tommorrow ) morning . I lived on the sixth foor . I hope that I can improve my English skills , and I welcome people to give me some tips for my writting . Thanks a lot . When I found out that he really believes that I am going to India , I laghed . A question about grammer I have a question about English grammer in the case as follows . An electric bulb has a filament , but a fluorescent tube has two erectrodes . I think `` We usually use a fluorescent lamp , which has 2 electrodes `` or `` We usually use fluorescent lamps , each of which has 2 electrodes , `` is correct . My question is whether the first one meke sense or not . very very bad ! I 'm so miserable , I need to learn English , but I do n't konw how to study it . Please help me ! We usualy stir - fry it with egg . I 'm not a vegetalian . Today , I will explainng why I think subtitles are important . ( We do n't really study subtitles . . . ^ ^ ; ; ) When people crticized , it is hard . . The trips pupose is to learn The sports festival wii be held next friday . I met her 1 montn ago and I thought she was not speaking English as well as me but now I noticed that she seemed to speak English better than me . I evny her because her English pronunciation was more fuluent than when I saw her 1 montn ago . I 'm working for a life insuarance company in Japan . by pomping these billions in renewables instead of pomping it in I have n't gone on lang - 8 since I went to my papa 's home . because my papa 's home is high in the mountains , I had no chance to check my mailbox and answerd your messages . I felt so sorry . I miss all of you so much . When I rode moter bike , sudenly speed down . I was supprised because itwas the first time my mortor bike bacame in abad conditi Alought there are many unhappy things in your life , you must believe there are also more happy things that will make you happy . So do n't treat youself as a tragedy . Anyway , tomorrow is aother day . At first , I thought playing cards was so boring and it does n't make any sence , but in the end , I got to meet a lot of new friends . I tought it was interesting to play cards , which was boring for me at first , but then it gave me the chance to meet many friends who can make my days in New york more valuable ! please teacth me ! ! 2 I want to be a prischool teatcher . But English is deficult . . . But I was Kindergarten teatcher two months ago . My hobby is watching movies , photography , wacth TV , and Karaoke . I like Japanese Dorama too ^ ^ Two months ago , I landed in Tornoto with my husband and little baby . Today is my husband 's birthday , we plan on buying a cake from the suppermaket to celebrate his first brithday in a new country . I do n't know what to say to you right now . I hope we all here will make a huge progress on what we 're willing to learn , and do n't forget to make some good frends . Interestingly , I met Koreans on my way , so we attended service together , and futhermore we were joined as one cell of CHC . Next , if the machines produced goods , there wo n't be any qualitatives in that goods . However , if people made that , people have to make them very hard , and thre will be a lot of quality . Recently , farming online is becoming more and more pouple amongst young people . What 's more , it is high time that the yonug should be taught how to use the Internet properly . I went to western Canada on a trip for 26 days with the Grayhound `` 30 days discovery pass `` I like to paint using a small number of colord pencils . Hope make true friends through it and inprove my english . I like snoboading a lot . Everday I just get online and read some articles . It 's already fabruary and my birthday is coming . Last year , I celebrated it with my 7 firies friends , but I was not happy then . Is it only a phsical problem ? Now I get some acne on my left eyebow and some are near my chin . I google why I have these wierd things on my face and figure out maybe I have a hormone dsorder . ( Is this because I do n't have a sex life for a long time ? I 'm in my friend 's room in Yokohama now and ristening to music . Because the goverment started a campaign called ' Cool Biz ' about five years ago to save energy . But I was surprized about it , so I could n't say anything . She told me that the company wanted a few managers from all areas in Japan , so she called again to tell methe day of job interveaw . Sometimes I go to a big supermarket called woolworthy in town but it 's very expensive . Do you know anywhere I can buy food cheper ? Do you belivev that there are some ghosts in the world ? I love chokolates more than bf . Last pictur is green tea with milk . I wanted to take a mock interview , but before I tell it to the tutor , she shoed me a ( ? ) text . It is a very dericies food . he is from Austlaria . My English is getting worse and worse since I graduared from senior high school , so I need someone to help me with my English . My luck was `` Kichi `` , Kichi means so - so or normal . a few minitue ago , I said to her , `` Shall we go to eat anything ? `` She said yes . An intresting phenomenon I found in `` lang - 8 `` . If I 'm worng , please help me correct it . You often hear this qustions being asked in Korea . Koreans like to classify a person 's charactor by blood type . A types are usually narro - minded . They write down what or who maded that day bad . Their charactor is also tough . They usually have analytic thinking similar to a ditector . They have many friens . Because we have two children who will have their entrance examinations of Unvercity and High School soon . Recently , I 'm studing English . Today I answerd a qestion . The Qestion was `` When you 're feeling sad , what do you do to feel better ? `` My classmates and I discussed death penalty in law class because our teacher could not prepare learning packs for the seminer . Ono was taken to a plice station under suspicion of violating the Maintenance Public Order Law . It was the commemorative party for publication of Karoku Hosokawa 's book , who was a political scolar from Tomari . The prosecution and the Court ratified the `` Black Trial `` made up by Tokko Plice . I found out about this site from a magazine yesterday , and so now I 'm trying to write someting in English . The former soulds like `` it 's OK `` , `` I do n't mind it `` , or `` forget about it `` . I naver been outside of Japan to anywhere except Hong Kong . Definitely it remains memorizable . Because it was so hot and humid , just staying in the hotel was irriating enough . However , there 's laiser show in the night . But he is pritty cute for me . Anyway , I will write dialy as much as possible to study English . On wednesday I saw a movie with my mother , my friens and my friends ' mother . Themoviewas very funny and inpression . I 'm very intersted in expressing my thoughts in other languages . I figued out the reason . You 're very thankful to me , becasue you also like to learn other languages . You were singing a song of Gans ' N ' Roses . One of my friends invited me to go camping in Saitama prefacture . Futhermore , I 'm planning to go camping at the end of next week with my university friends . I have one daughtor and one son . I remember that my mother said `` you ca n't beat your chilren . `` I 'm appreciative of my mother 's afforts to raise me . Please hel me . I live in Tashkent sity , Uzbekistan . My hobbies - basketball , listening to music , playing basse , and reading boocks a litle ; ) I hope to make more frends throughout the world , and speak English very well . Should I introduce myseilf ? Anyway . . . The Japanese government right now is reviewing its nuclear energy policy due to the Fukusham nuclear disaster . Under The Basic Energy Plan , nuclear power will be Japan 's `` core source of energy `` in the midium and long term . And I want to try writting about India and its culture ! ! ! there are 6 preliminary mathes of GP . My favorite programe is last year 's performance with the music ' the Moulin Rouge ' in which yuna kim set up a new record in the short programe . ( figure skating is devide into two sections , short programe and free programe ) I am goning to whrite about arranging a meeting . I think that they met their fiances , fell in love , knew each other well and decided to get merried . My older sister sent me a picture of her and her hasband . I was so nveruos . A friend of mine said something about the hidden messeges in songs . I 've never tought about it . Have you ever found a song with a special hidden messege on it ? She told me that most rock songs have a hidden messege , what do you think about it ? Since I have never been there , I 'm not sure what I will do in Seuol . Recently , I bigan to read and listen with the iphone . How can I get grammer skils ? English is very difficult , but I have a fun time when I sutdy English . My aim is to write a diaty every day on Lang - 8 . The main purpose of this trip is attending a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm goint to Las Vegas today ( for no special reason ) . After I put my cat in the kitchen , I went back to eating my supper , untill I noticed that my cat was behind me again . It 's the first time I heard of this kind of website wichi I think is a great help of leanguage learning . I like to read novels and watch movies which are very ordianry interests . We , an audit group , are sending the Accounts Receivable comfirmation letter to overseas customers . Hello , my wondeful frieneds . Today we had a speciall class at my school . instead of haragana . . . But I have no oppoturnity to meet with any so I checked a website that introduces Japanese people to foreigners . My main object is to learn and imporve my English as much as I can . So why am I going to the Philippines ? Thare are three reason for this . Could you paraphraise the meaning ? Is is kindda `` I should 've been more careful about my . . . `` ? He also said that the first Japnese he had learned was in the menu of the YAKITORI ( Japanese food ) restaurant ! Every time I look back , I am very surprised of how sensitive ( or woosy : - ) ) I can be . I have reigestered here only today and I was surprised how great this site is . I saw how you peole correct mistakes . Now it 's so good to make mistakes , becouse I know you 'll correct it , so I will improve my English . Thak you ; ) When it snows heavey , trains sometimes stop or delay . Most of my friends do n't use their cellphones for this long , but I 'm not good at using electric things and also I do n't like reading directions either , so I tend to use my cell phone till it gets any damege . Well , but I always fell happy , somehow fresh once I chang to new one . I intend to meet our second eldest son at the end of this monthend . Unfortunately , recently I have made a lot of absent - mindedly mistakes because I was very busy . My free time has almost come to an end . It is five minits to eight now . I received an A or A + on all sujects . Taking this opportunity , I decided to study hareder . Do n't know when I 'll be alowed to use the computer again . I 'll tell her to rase my grade a litle and next term she can lower it . Any way the rest of the day was kinda funn . I already explaned why . I wanned you to know why I 'll be gone for a while . I had been lying down at the poolside for 6 hours yesturday . It was not so shiny yesturday so I did n't notice the sunburn , but now my skin has become awfully red . In addition , it 's bad that I slept last night on `` Igusa `` , a Japanease rug made from grass , so my sunburn became worse by rubbing ( ? ) . Ponto - cho is a street famous for good dining , restraunts and bars in particular for night time . It 's Labar Thanksgiving Day today . The devil feeld she needed the heroine . But when the heroine saw that the devil had lied to and fired anoter staff member , So I resumed writting in Lang - 8 . If the band was lower than that , I think the raod to the goal would have been much further and my deperture would have been delayed for a few years more . I 'm a Chinese girl who lives in Austrilia now . + G ' day + This is my first time using this kind of website that my friend recommonded to me . Therefore , I 'd like to practise my English with you guys and learn something about Frensh . This is because the unemployee rate is gradually increasing and many international students from South Korea are returning and actively job seeking . Now we are gethering donated goods and practicing music . A year ago , I was n't interestead in Canada . Other oicture is New Years hors d ' Both of these are Sakura flaver . I know that ghosts do not exsist . Tsunami killed many people and destroyed villege . Thnk you so much . I cound n't go to school today . Recently , I enjoy writting my diary in Engilsh . But I always do my best to comunicate with foreiners foreigners by using expressions the best I can . . The world is n't equal , and the inequal in life is continuning . The Mid - Autumn Festival is upcomimg , and may everyone have a beautiful and happy moon festival ! ! Resently , I 've read a book wroten by a mathematician named < beat the dealer > . So I went downstairs to eat breakfast , and I cheak my email . This is a good way for me to get rid of stress . Because I am an office worker I seldom have a chance to execise on weekdays . But I try to execise for at least 30minutes on weekdays except on Monday and Thursday . Because I go to Korean class on Mondays and English conversation class on Thursdays . We usually have a good relationship , but somtimes we have a little trouble . Also my family belive in me , A few mins ago , the announcement in Dalian airport said , the flight to Shenzhen will be delayed about 2 hours . Labors get more power to protect their legal interests . untill now I have studied japaness and have traveled around my house area ! To make friends , I know that I have to speak japaness well ! my English is still terreble , but I will write dairy day by day ! and then when my japaness class will be off to beginer , I 'll write this diary in japaness ! ! My frist time to write an entry on Lang - 8 . because I decide to imigrate to Los Cabos , Mexico . `` Recent research has shown that children are more relaxed to study than ever before , snce the light education policy was introduced a decade ago . I am a Japanese colleage student studying English . Lang - 8 is a platform for multi - language studying by mutal assistance . With the platform , you can correct mistakes in people 's artical , give them your advice , to help foreigners to study your native language , while you could get a good feeling by helping others and get help from other friendly people . Because your journals maybe refer to your privacy , the study platform allow you to select who can read your jorunals , for example Internet users , the Lang - 8 users and so on . My granma said that holly ghosts protected me as my goardian and kept thier eyes on me during my birthday . Because my life is individual and enjoyful . I am reccently attending a university in the U . Acutually , I finished all of the classes except an advanced English class . When I lived in Japan , playing the piano and going to my favorite places with my hsband were best way for relieving stress , Of course I like talking with my friedns and going shopping and and so on . So I have to learn these words before I strat the second one . We have ten levels and a staff member told me that the four calsses from the top are ranked the highest group and these four classes use the same textbook . wallked there holding to my brother 's shirt in my childhood . There is a piano that my perents gave me in my room . One of the main delimna goes : should I marry someone who is similar to me or different from me ? Marriage is an important thing for people where we choose someone to live so intimely for such a long time . Therefore he had the nickname `` Dokuganryu `` , it meens one eyed dragon . It tastes like good beaf steak . Those chaos , confusions , depression . . . It seemed like it was never gon to end . And I did n't have a clue . This is the first dialy for me ! This theme came up after The Wall Street provided complax financal products that led to a worldwide resession . I wonder whether CEOs sould have limit salaries or not . However , if the company has debt and will go bankrupt , CEOs should have limits on their salaries for the company and empoyees . we want to make repairs ( or overhaul ) , and buy new equiment . I feel that there are maany mistakes ) ) ) ) I entered univercity in Osaka . Of course I sent a message for my English teatcher . I 'm now studing English . I want to make friends with more people from other countries and I learm English . There is not a clowd in the sky . Actually , there is the nice beach that I can get to by running ten minits from my apartment . I could see the really beautiful view espcially today . I am going to go to the beach again after writing this dialy and visit a cafe where I can see the beach in order to study English . Studying should be comfortabley , should n't it ? ' Our case is not a Chernobyl , and the accident does n't have any effects on those of us who are living near Tokyo . ' as of Mrch . But I dont like to study grammer , so allways use simple words with broken grammer . Please check my writting to help me ! ! Because my parents always spent the weekends for thier hobby instead of spending it with us . I will pay $ 85 tommorow ! I cooked a pie in the microwave , washed some salad and fry an egg every day for my luch . To my superise . When I was in elementary school , I wanted to be a tescher . Because math usually have definite answers . I ate noodles and it was to my tast . Therefore , we have decided to offer some discounts for a period of time , and provide interest free installment for a certain number of customers . Like every studengt in China , I have studied English for 10 years . I agree with them now though . When I watch CSI , I ca n't understand what tehy say . Taking buses , going shopping and chatting with friends in English are my dreams in other countly . There are beautiful varieties of dolls in that countly . It was weired for us to clean up stuff like her friend 's old letters and cards . I learned about ' present perfect ' and ' present perfect continously ' today . I 've been very confused when choosing between ' present perfect ' and ' present perfect continously ' . Because my eyes were itchying . I am very comfoterble ! Therefore , I 'm going to try to write journals in writng style from now on . Also some hisgh schools or universities are very difficult to enter , due to the exams and competition . We actually call the cram school ' ' juku ' ' in Japanes . Howevere , when we look up the word ' ' juku ' ' in a Japanese - English dictionary , it says ' ' cram school ' ' . My online English teacher told me about a popular sweet from the Philipine . So most of us laught at him , and looked down on him . Maybe you also can find more advantagement of the big gray wolf from the cartoon . professors ' annoucement or the materials that he posts for the class . But at the same time , I wanna master English and go to restaurans to talk with my co - workers . Thuesday I was at my Japanese class after work , and I was REALLLYYYY tired since I only slept 3 hours the nght before ( hard to go from night shift to day shift in one day XO ) . ( Think with a twisted mind if you still do n't catch it . . . ) Trust me , I was redder than a juicy tomato . If I could have hidden bettween the glue and the floor I would 've = _ = The even funnier part was that the teacher did n't understand and made it even worse , so afterwards when everyone calmed down she said : The owner of horses have to select a strong , able horse and make him into a race hores In order to be a race horse , he nees parents who were race horses . The Special sauce was made with Go Choo Jang , and a little vineger . How about Oyster food in yur country ? The price negotiation was tough but they finaly offerd me a good price . Can you imagine that a man can contorol the weather ? In some Tribes of native Americans , they are given names which are derived from a vision at a sertain age . Then , their synod or chief endows them with a name in accordance with their vison . Now that it is seems that topics about native Americans are consigned to the dustbin of histry . If anyone suffers from migrain , how about drinking herbal tea ? I recommeded it ! We went shopping and bought pants and a jocket . To better act this drama , we prectice half - hour every day for about three weeks . when we playing , I was very nervoue . our drama was very pooular , and we won the NO . 1 in my company . The other day , May 8th , I went to yhe fair trade day festival in Marunouchi and it was one of the greatest experiences I have ever had . ( The ) Healthy and tastey foods , non - wasteful products , and organic products and clothes were very fascinating to me . And also I was strongly attracted to fair trade products because most of tem are high quality . Of Ofcouse , I love cheap , fast fashion like forever21 , H & M and so on . Pls forgive us . This test is very important , it is essential for me to become an exchange student between my university and Frorida State University . I like to read gossip news about American celeblities . Lately I 've been readintg her gossip news everyday . So , we were quite a bit worried first , but finally it was proven unnecessary because they were very well acustomed to the car itself , as well as dealing with risky situations . Anyway , It was very far to go to our destination - the eatern beaches ( kangreung ) - from the city ( seoul ) . I am really preased by it . The Lylics written by him are easy to sympathize with . My cousin tought me how to see my friend 's sex or native language at Lang - 8 . I can see my friends ' imformations by myself . I will try my best to do it , trust me plase , haha . I am sorry for the earthguake in Japan . The stalls sell sharved ice , apple candy , Yakisoba , Wataame and so on . Of cource , tehre are game booths too . In addision , we can make friends from different universities in the club . They caught clams in a full backet . Aapparently , it can be said that they copied the concept from the game . I want to pass the exaim . Wonderful ! I finished my exaim yesterday . It 's so agony while preparing the exaim . . Although the exaim has been over , I worry about my result . Having this exaim again is what I do n't want . So ( therefore ? ) , please let me pass the exaim . You need no cristal ball to know what I did next ; nothing at all ! That does n't mean I did n't care about my exams at all ; I always checked my anwers , I could n't help it ! We were allowed to take the test sheets with questions home and the answers were publiced at a website exactly one hour after the exams had ended . If I screwed up my French or Maths exam over the next few days , I would definetely have to do a resit or in the worst case : fail . Of course , it had already passed my mind a couple of times before , but now it was serieus ! To make matters worse , I totally lost my apetite the following three days or so , so I ate nothing more than one sandwich and some crackers each day . I got something I call the ' ' vacuum cleaner - syndrom ' ' . . . I can use skype & yahoo messanger ! Today picking many Potetos . they do n't have practrcal any friends . bucause I was disobedient . that 's why I havent n't strayed far from the right path . We played soccer and Wii sprots . I have two way to learn vovabulary , one is to read DUO 3 . 0 books and the other is to read the simple English news site every day . I was not just molding raw thoughts into a linguistic form , but trying to produce new perpective to view things . It can possibly give birth to some deformed or a lateral thought ! Then I might need to wear new glasses to view another world hidden from ordinary Japanese colored glasses . allthough Chinese is a little difficult to learn . . . it is an Aussie tv proglam , you know ! Yes , we can see many celebrities from many different industries such as films , music , literture and politics there and we also can listen to their interesting interviews . No way ! ! ! Also it is true there are many celebrities who are quite diffensive of gay things . I can correct articles that Japanese studying usere write . tahnk you . I should spend my time effeciently . bad : fuk ( lol ) It was so dericious . I enjoyd . I like it because it is good for my healthl . Order is the longest book in the Harr Potter series . The Japanese goverment told the president of ANA not to allow the same problem to occur . I 'm going to go to Fukuok tonight . I readlly do n't want to stady at home during winter holiday . Tonight , I have an appointment with someone who bougth a computer from me at the resturnat . I went to the library to syudy physics bcause of an upcoming examination . My instructor suggested that I read a good essay written by one of our classmates from Quweit . My pronuciation was really bad , and it was very hard to say water . In Japanese , it is difficult to pronunce ' water ' , because we do n't have the `` w `` sound in our language . In my neighborhood , the Electlicity has failed . This happened shortly after the earthquake . I logined in tolang - 8 for the first time since May 01 2009 . aftrenoon . Recentaly , I have n't studied English because I neglet it every day . But , I restarted sutudy English since today . Most of Indian people are Hindism , so they do n't eat beef . It is unuseal to use meat and fish for a meal . I stayed there for 10 days because I got the swine - ful ! I had almost a 40C feaver , and could n't get up . It was very cold this morning , and I found him trimbling ! I think he will be trimbling tommorow morning too . But already four dayd have passed ! Their messages couraged me very much . Let 's go boting on the sea . Wo n't it pleasant in the cool breeze ? Sinceroly yours . I 'm not a phychiatrist , so I did n't know how to take care of the patient . I 've taken care of people who have had deppression , so I can handle them , but it was my first time to have treat a person who has bipolar . I 'm in voncouver . I am in vancover . It 's suffring that I ca n't speak English well enough . I met my frineds I had gotten to know when I was a university student I enjoyed talkeing about many things and drinking with them . Though the news may creat argument , I felt very happy that a woman who had longed for a baby , finally had a baby at last , at age 50 . Probably in our time , the difinition of being a mother may become nonsense . There are several battle scenes ( not as beautidul as before ) . I was nine years old and stadied in the fifth form of Russian Secondary School , in a small town . After that I studied English at colledge , if you can call it studying . : ) ) We had only 36 hours of English lessons over the whole four years of trainign : O I would have most likely called it a revision of I learned at school . Recentry , I played a game called `` Mind10 `` with a co - worker at break time . I say `` Are you yellow ? `` , and look at evreyone 's face . On the third day , it was rainy , but we went cuising I had been very impressived . he is very simillary to me . Mabye a lot of meetings make me stupid and poolish . cause , will is similary to me . My haie color is brown . However , I had some concering about my fitness and health , so I started to work out . The first place I picked a wallet up was in fornt of a shopping mall which is near my home when ( while is better ) I was going to my work place ( work is better ) . Nowadays , I 'm so terribley sick of lacking money . . . Now I 'll go shopping in Harazyuku . but my next holiday , I am going to Akihabara with my French frined . thank you for reading my dialry ! I will compare my sense of values with foreing student 's and Janury 3rd 2009 Actually I had taken such an ingection when I was 10 years old . Encounting so many supernatrual things at the same time , the situation of my brain was kind of touch and go . I did n't speak to myself too often , just once in a blue moon , but be prepared , something was definately wrong . `` It 's not my day . . . `` I wispered , `` I 'm just too tired . . . `` I want a Korean - Jananese dictionary so I will understand to the words to their songs ! I 'll stick to study Ebglish in future ! ! I have just finished cleaing up my room . My supervior told me that it is tough to teach students English . Altough to leave my city is very sad and I do n't want to live apart from my family or friends , I think this chance and experience will make me strong . I can imagine the situations and dialoges through the characters motions and expressions . So she recommeded the dreama to me . My son and dauggter take care of her mainly . So she is qute . So I think it is best for my recest She said `` It 's like a home dorama in America ! `` Today , I went to a Japanese super markect . I went to shcool ( ESL ) early fast time today . My class is Pre - intermidiate level . There are Japanese , Koreans , blazilian and Chinese students in my class . During this three days , I will will be in traning at work . Today is my first day of traning . But to tell the truth , the reason why I love her is unexplanable . It was terible ! ! however sometiomes I feel lonesome during the night so I always listen to musi that I love I wish everyone a happy happytime on the Valntine 's day . . . I rememberd my trip to France three month ago : ) I thougt he was a young lady when I just saw him from behind . But he was a little different from before , because this time he was wearing a grean wig . Fiarst Writing As the title said , my ner car has arrived this afternoon . Of couse , it took me about a month . ( it 's two times longer than studying in the academy ) I 'm stuying the other subjects by myself . It is a samurai movie . The main charactor is Ichi who is a blind girl . I have some quetions . In our universty there is a tradition . Next , the fourth grader plays the role of doctor and the fifith grader is the patient . When we take this examination , we are all very nurvouse because volunteer 's play role in patients . There may be unpropriate expressions . . . But remenber , remenber to go home to chat with your parents , to cook for them , to eat with them etc . My favorite shampoos and treatments are `` Dove `` and `` Pantane `` ! ! ! ! My family have managed a liqure shop for 40 years . Then he died 65years old when I was in the first year of erementary school . I can corrent your Japanese diary a bit . They can sacrify theirselves for the family 's happiness . Attending my friend 's wedding banqet I attended my friebd 's baquet on October 3rd , which was also my 20th birthday . We could n't find the restaurant for 30 minutes , because neither of us has a sence of direction . Finally , we found the restaurant at the last minute befor the banqet started . I was always scolded by my art teacher , because the picture I drow never looked like what the art teacher wanted . I hope she has happy life with her hasband . I 've posted my first diary for half a month , but to my dispointment , it Im really excited rihgt now but , at the same time , I feel empty . . . . I have a hamuster . I think her name is very qute . It means flower . It makes sense though . Most young people have golas like fame and financial security so they tend to study for the sole purpose of their career . Recent , I played bouldering . If only we could be delivered from this enourmous amount of homework ! I may sound silly , but I love every lesson ( exept Physics and Chemistry ) . . I am afried that it seems I am falling in love . I 'm wathiching a Japanese film called ' Death ote ' on TV . The film is besed on the popular series of comic books of the same name . Both the investigator and the climinal who uses the notebook take center stage . So my Waterman fountain pen has illegularity ink flow . ( ? ) I studing my English 4 years What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitubishi and Mazda ? So please check and correct my diary and please send me a message if you heve interest in Japan , Tokyo , me , or whatever ! I am sleepy because yesterday 's seminor was harder than 2 days ago . Separating Appolo with your teeth is sort of common memory among us ! I tried to start the session in safe mode and after a couple of attemps ( twenty minutes or more of waiting ) all seems normal , until I saw an error message that warned me about an error with the NVIDIA graphics card and its drivers . I am visitting my daughter 's home in Toyama pref . I have problems with bilding constructions , free conversation and fast English - speaking . I attached thress pictures , please view / do take a look them . I was thiking of how I saw it without my glasses while wearing only the 3D ones . I have no power to contine writing . so today I am not writing anything . Recentry , I 've been reading Alice in Wonderland written in English . I am learning in a meddical College now . There are only sveven boys in my class of 30 . At first I thought that such a class might be boring , but in the past few months my life has changed . They are all very humorous . First I want to introduce our hostess Bin . I call her Boll - piging . When she begain to talk I laugh because she will always say something funny or interesting and she is a very cute girl . Yesterday afternoon during PE class , when we started playing a game , she was still carrying her bag . It was a really huge bag , which made her look like a snail . Our teacher asked her to put donw the bag , but I was wondering ' ' Can a snail put down her shell ? ' ' The books ' names are `` The Traveler 's gift : seven deisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . A few days ago I serched on an internet book store casually . After half of a day I recived it by a deliveryman and read it immediately . Fanally I 've finished reading this book I went to San Diego with my freind last weekend . The beef was baked with onion , green papper , and tomato . I was luckey because I took a bath last night . They answer to Mickey 's queations , but they never answer to me ! I accept the situation , and I 'm clazy about Lang - 8 beside them . Many people went out to join the eving party . She said she was tired but strangelly I suppose that sometimes peope need unpredictable incidents . My partner for Catarina was Kathy , Next I had a dictation lesson with a Japanease teacher . In summer , I could n't go out , because it was too hot and I did n't want to tann . The rainy season between spring and summer is called `` Tuyu `` in Japanese . Incidentally , in the gallery , I was intrigate by the publicity for Guerilla Girls which said , `` Do women have to be naked to get into the Met Museum ? At the beginning of the exhibition , there is a board that formed with the name of male artists ( Anny Wahrolh , Josephine Beuys etc ) . At first , when I saw this work , I was fascinating by the dress but after a careful observation , it made me to think about criminel fire . . . It means there is no data on my desktop , in folders and even in `` favorates `` . Shinpai ( fail ) and shinpei ( worry ) Kaero ( frog ) and Kairo ( come back ) I do n't think that the amount of posts or comments about a certain player / club / league exactry reflect how many fans they have in this huge community . In Japan , a univercity student 's tweet became the topic of conversation . A studenet confessed his cheating in an examination . Nobody pushing me to do anyting , noone to exploit or manipulate me . Yesterday , my syster and I went to the cinema , and we watched `` Gnomeo and Juliet `` . It 's very funny because when a human sees ther , the little gnomes quickly turn into porcelain figures , in the position they are in at that moment . So I 'll be trainning till dinner ! Perfume : The Story of a Murdere I stood comtemplating the rain under the leaves . They were glistening and elear as crystal . Especially in the Univeresity , I can spend all my time in my studying my favorite things . In the library of the Univeresity , there are almost all of the books and newspapers I want to read . Today I 'm going to the theather . While I was in NZ I had to speak English everyday , but after I came back to Japan I became so lazy in learnig English . . . I teach him math , phisics , and chemistry . defend : He tried to fefend himself , but everyone spoke at once , so he even could n't be heard . I have my own lang - 8 account and I hope everybody cmments . My family are buddism so we believe that the 49th day is My study methods using the nintendo DS mainly consist of studying vocaburary . Helth is the most important thing ! ! Our family went to my grandmother 's house to thank her for getting my daoughter a get - well gift . She was so glad to see my daugter had been better . A Jpanese friend of mine who has n't yet recieved a license had a hard time driving . I think he has a good idea , but regarding how to persude people So , If we preach Jeses ' teaching So you must have a valid reawson to make her accept your invitation . I think troubles and hard times make a manmature . These dayswe 've been studying `` The Loons `` and I think I am similar to Venessa who learnedfrom the suffering in her life . And I used to attend the foureigin language college in Kyoto , but I dropped out because of economic problems I was invited to go to Summer Sonic , which is a famous music consert in Japan . There was further proof about his prefernce . He picked up the principal 's plate every day so that the principal woud n't break his spine while bending his back to pick up his plate . `` Do n't raugh ! `` I said to him in English . Each party is focusing on comsumption tax , which is like `` value added tax in Europe `` , whether to raise the rate or not . I think rising the rate is understandable , but I want politicians to stop wasting money frist . This leads to global warmin . our strnge melody from choking up I started to make a chronologial table of architects this year because I want to understand the history of architects and how they relate to each other . As I 'm going to travel to forein countries , before my trip I want to memorize the table . Today I made a table of Arata Isozaki who is one of the most famous Japanese architects and I think he is one of the men leading the international arhcitectural world today . Accordin to his portfolio , he completed his first public building at 35 ! Second , I went to a concert which took place in Sannnomiya city . This month I went to voncouver and met many foreigners . I belive that it means I have the potential to improve my marks . So , I will wirte about some freshman girls who were behind us and saw my friend and me . At te end of the conference the school 's directos arrvied and finally he told us that the alert was false ( thanks God ) . My summar vacation plan I think it 's hard to trvel but it 'll be meaningful . I 'm looking forword to going there ! In the past , I hated the rainy sessin . I always got weatted . I have lot of things , for example - some English textbooks , a daypack to go to some mountains , many instant food for dinner just in case I can ` t go to my home , and like that . He brrowed a book about ' ORIGAMI ' at a library today . We are very busy during this season from Novmber to January because we are providing toys and goods for children and babies . But , it 's combining all mathematics functions , like integrals , invers , trigonometry , natural logs , and many more . . . It sometimes not fun ( presure ) working in my clinic . I feel it is intersting when they smile after I say something to them . Let 's try having fun ( plesure ) in our day even if it is work ! I can not be abesent from practice from now on . They are very convenient because I do n't need to leave home to chek money in my bank account or to purchase books or something . Poeple often say that Japanese girls are kind , obedient , and so on . I think comtemporary Japanese girls are not so obedient as people may think . They are getting strong and selfish , inclding me . haha . : ) I usally study until twelve I have a father , mother , yonger sister and grandmother . My sister is 3 years yonger than me . Well , this blanket is bery useful , like for example , it is easy to carry and I can save on the electric bill as well . Just a simple question to the Japanse people or anyone good at the Japanese langause . . . 1 - How much Kanji syllables shoud I memorize before I 'd be able to start reading anything ? Some international travelers stay in Tokyo , and I am often asked to guid them to Tokyo tower . Could anyone please help me with the interpreation of this simple sentence ? Hou could you , if you were I . Do n't esitate to ask me to add you to my friends if you want to exchange green patch plants ! The right picture was the secound tea . Wave dinamics , _ _ thermodynamics ( particularly wave thermodynamics ) , everything about physics makes me confused . If you do your best and make the most your of tanlents , you will able to turn your dream into reality . Iye - na nichi / hi da . . to omou mashita . Kinou - ha tomodachi to akai ( I ) wain wo nomimashita . Takusan ( no ) mizu wo kono jikan kara nomikomu / nomihoshi shimashita . Tenki / kion ha mo sumetaku nai desu dakara yuki ga mo furimasen . Boku no bonpou no tame ni . . Ima ha mada kurisumasu turi - wo kaimasendeshita . Yasumu ha ui de sugoshimasu , motto motto jikan koko ni kakarimasu . mo sono ji desu . boku no bonpou . . totemo hen na bonpou desu . . dakara mouichidou sumimasen . Mo motto motto gabarimasu , Sa . . So , I am going to study , and inprove my skills in English . If I learned Japanese the way I learned English , I 'll grasp Japanese quite efortlessly . I 'm not really worried about writing or talking in Japanese . Today , I went to Azuki musium in Himeji with my sister . ( Then ) I went to eat runch at a to curry shop . I ate butter chikin curry . It was really dericious ! ! We have studied English for at least for 6 ysers . I think have n't studied spaking ( languages ? ) enough before . Then it brcome my work . If I had wanted to inprove my English , I should 've written even one sentence . I am working as a mechanick at a big chemical plant . It 's dangerous becouse different emergencies and accidents are usual events in our plant . I thought that I would work seither nightshift or dayshift . He probably wouldsay you hadhurt him , either you take him to thehospital check - in or give himsome mony . Wait for futhur news . That time I couls use English . Even though people think I have many oportunity to use English , the only chance I can use English is just when reading English news / messages from the / our head quater . You will do great things and surely tirumph . Sterted to study English I was looking for an English scool on the internet . But I ca n't find a good teater . My familly is going to grandmather 's house . I am searching for a good English teater . let me tell you a funny , maybe not funny to everybody ( but I couln n't care less , it 's my journal so if you do n't like it , piss off ) story . anyways , she looked so amazing and diginity ; in a nutshell , you could say that she was like an angel . not a big deal , you could just simply say `` he was inpotent `` or `` he had a problem with his sex life `` or maybe `` he coudl n't get an erection `` , Especially , the grammer , which is very difficult ( for me ) . To impove my English , I borrowed a magazine from my friend . I am going to Naeba with my friend Megumi and some foreigne people for 15 days ! ! I can read English newpapers and books without big problems , and made a big improvement in listerning . To me , my love for the novels , movies , and charactors , the happiness or even the tears they have brought to me will never change . I cooked Tandoori chicken with my friends at the cooking class . Last week one of my friends asked me , let 's go to cooking class togather . I wanted to learn how to cook Tandoori chicken . I decided to try it . It was very delecious when I cooked it . ( ^ ^ ) Because of this pollen ( I 'm allergic to this ) , I have to wear a mask which is used by doctors in procedres And , the order , starting from nearest to the barin , is the cerebrum , the brain stem ( the vital center ) , the spinal cord ( this is the end of the central nervous system ) and the peripheral nervous system ( the nervous below spine ) . People who beggin learning in our school are very rude , bossy and greedy . Normal people of japanese could n't meet them in life . It is the cammon story of Mito Koumon : ) My college classes start earlist than my friend 's and I am hopeless . Moreover , declaration of the Fair Trade Commition of Korea played a decisive role in Lotte Mart 's unconditional surrender . The commition said it will investigate whether the conglomerate had violated the Fair Trade Act by selling chickens at an unfairly low price . Today my class teacher was from scottland . In the clases , he said ' Have you a pen ? ' . They use gerunds for mainly three tipe of things . First sentence , he was smorking , but he quit . They brocasts international news . It made me feel so comportable . In Japan , I ca n't imagine every adult wearing helmets when they ride their mama charis . I was n't stonger enough to press the power botton . There is one bottele of peanut butter in my kichen . Especially as lang - 8 is faster than before ; its previous speed was slow and refrustrating . This was actually one of my excuses for not doing any writing . In my point of view it 's very good to support such a project which helps the unban poor in Africa 's largest cities to adapt to chellenges posed by the changing environment . People there are very poor . They do n't have enought food and water , and this is , in my opinion , caused by the colony politic . Especially England 's colony politic . Because in those days everything that was planted in Africa , for example fruit trees , after a harvest , were transported to England . Minerals like gold or diamonds that were found there were , along with food , transported to England . Howver , I 'm happy everyday Your input will be very much appriciated . The drama e commermorate the 600th anniversary of King Tilokarat . It was quite a good oppotunities to view the drama , and we also donated the proceeds to the student fund . My freisnds stayed at my house . It 's 3 am and I am still awkae . it 's not that compliecate . perhaps I am the one who messes thing up even if it does n't seem ( ? ) to be important or serious . some moron came to me late this afternoon and said `` you are a failiure , I really do n't think you will achieve anything worthwhile in your entire god damn fucking life `` . Studing English Threr were many people waiting in line , including me . But my freign friends often point them out to me . It 's designe [ ] was so - so , but I liked its shape a lot . Phew , perhaps I should n't get anything with Englidh words on it in Japan before I go to Australia . If you 're intrested in Japan , please feel like to ask me a question ( about it ) . In the monning , I went to the office . I 'm studying at a university of technology , so I do n't have many English classes , and I do n't want to forget this langauge . TOEFL listening section is quite difficcult We are looking ( forword ) to ( thier ) promotion . Trying to practing with yourself and ( with ) others to improve this skil is a beneficial method . As far as I know , the main perpose in conducting them is for human beings . He said that at times , he had to kill molmots ( ? ) or guinea pigs for operations or dissections , if I recall collectly . Am I right in thinking that veterinarian 's proffesion is to save animals but kill animals even if the animals are guinea pigs ? Then I had muscle acke . But I do n't forgetot to drink beer . While she was out , I came into the house and hid in the box which my mother - in - law had parepared before . I have a wide variety of friends from university . They are brain surgeons , gastroenterological , respiratory , pediatric , pathologist . Cause I really hate presure . As I have finished my exams and university semester , thereforce I have more time in the morning , and I can write a more poste in English . I swithed on my favorite radio station . So , I think that my poste is finished . For example : Slamdog millionaire , 2012 , etc . Then , I plyed tennis . But , when I practiced tenins , I injured a foot . Becouse , I did n't do stretches . Korean grammer is similar to Japanese grammer . I mean , because it was a comedy , the only important thing was wheather it was funny or not . thanx for reading . I was surprised that peoplf from Lang - 8 are so kind and polite . Anyway , I 'd like to say thanks to my new friends . I went to hosipitol and I knew I had little sick . . . In order to get a share in the Japaese SNS market , Facebook should focus less on having users upload their personal information to get rid of this unique resistance from the Japanese population . I like coffe when the weather is glomy or rainy . At those times coffe is more delisous . Pafe was huge . . . . The Yakult Swallows , my favorite baseball team , beate the Chyunichi dragons . Shouting the player 's names , singing fight songs and cheering can reduce stress in dayly life ! Tomorrow is the jounior student 's play in the drama club . I have n't even read the scription of it , so I 'm really looking forward to it ! I 've beem there for . . . I suppose this place is one of the most wonderfull places in the world ! Look at the mountines . . . You are simply staying on the beach looking at endless sky and high mountines and smiling because life is a good thing = ) Aprile is the start of the new semester in Japan . `` Of cource , `` he said . `` Please ? `` Here is the topic : `` Does the goverment have to sepnd taxes for UFOs ? `` `` For Japanease people , when we think about what an UFO is , most people probably think UFO is an `` Unidentified Flying Object `` or `` Unidentified Aerial Phenomena `` . I think it should go to pention after we retire or scholarships for students . . . . Recently I bought an iPad , and I 'm looking for the best aprication and the best way to learn English . I like dinking a lot , and I usually only sleep for five or six hours a night . It 's my firt text / entry on this site . In Japan , jounior students start to hunt a job and get the job untill they are seniors . In the Filipine , they start looking for a job after they graduate from the University . I think it 's very hard for Filipine . I went to drink at the bar wiht my friend in the city . I 'm so thanksfull to him every time . Actually , he loosked older than the last time I met him , about ten years ago . Perhaps I can apply for the working visa here in the UK and get some working experiences in a differetn culture from that of Japan . Saying `` What can I do ? `` thing , I might sound a bit pesimistic and seem like I have a lack of self - esteem , but I am actually not that worried . < Character Discription > I asked him what had happened , he answerd `` nothing `` . I presented a neckless to her one year ago . Summer ivents There are many kinds of summer ivents in Japan . We have to forego summer ivents this year in Japan because of the earthquake . I think summer ivents give us energy . My family and I went to a Chinese restaurant to clebrate Mother 's Day . Mom thank you ! ! You are the best Mom . This weekend I will go to Shizuoka to make a speach about my research . It 's quite interesting and I would recomend it . Before coming to Toronto , one of my friends who onece studied here told me Of course , my host is very friendly and their mealls are good ! `` I read a newespaper on the Web . `` But , I feel confident that I wo n't get swine flu , becouse I almost never catch colds . I 've given her a present for her Bithday ; that was 5 days ago . It 's a wall clock , where Winny - the - Pooh is drawn ( we like nice things ) . I 'm looking foward to meeting my host mother . And then , she made a dicision to lose weight . She succeeded at losing weight 30kg and getting her ideal job , which is an editer at a fashion magazin . All emplyees have to evaluate theirselves . `` Did you commnicate with colleagues and customers I want to comunicate with them too . And finaly I 'll travel around the world ! Yesterday was confortable . I went to the elementary school that I guraduated from a long long time ago . On the charry tree , I could escape the sunshine and feel the nice wind . I 'm a little nervous because I have never taken TOFLE before . It 's my favorite meal , especially kimuchi ! The tital is a bit long . These days , I have neen feeling lonely . He is in gradute school . I think remebering other people 's name and calling them by their name is very important . When it comes to remembering people 's names , we try to make excuses saying , `` I am busy doing my own jobs , I do n't have enough time to remember people 's names `` or `` How can I remeber everyone 's names . `` Holyday seasun is coming ! ! But he said in gentle and low voice `` do n't worry about that , just always try to do your best , and do n't make any excuses in your life . `` He said a lot on our way home . He said I should be braver , and life always rewards the couragers . I neet to sleep ! ! But acturely , I forget lots of english , my own english skill is getting worse and worse . So maybe , it is a good oppotunity to study again . Critisism about Japanese Working Condition Before they work in Japan as an immigrant or temporaliy worker , they need to know about how wierd Japanese working condition is . Japanese 3rd year Universtiy students generally do jobhunting in order to get a job from autumn . They register in this site to check up - to - date information about the companeis they want to join . I think it is strongly wierd to prepare for jobhunting while they are studying in university . Starting job hunting from 3rd year is too early for both the stundent and the universities , I suppose . We take 1 to2 hour lessons about what the company 's vision is , what kind of people work in the company , what kind of people thet need . They have to struggle to simultanously do job huntig and write thesis . He said `` I did n't want to work in Japan next year because of its wierd workplace . If you can speak English and have speacalities , try to work in America . I 'm fed up with the Japanese workingplce place ( condition ) lol before I work there . It 's brutal but nobady changes this random phenomenon . Why do n't they go home early ? They are being observed by superviser . In order to be promoted , they can not go home before the superviser goes home . So if the superviser is a kind of workaholic , you can go home at 10 o ' clock , even more , you might have to spend time in the workplace . I heard that Japanese productivity per person is lowest among advanced contries . How hard they work is hard to evaluate under the Japanse working system . If the evaluation systme goes well in Japan , nobady stays late . Waching Mamma Mia unbelievable , you never know what would happen around you , maybe that 's the reason why our world is so coolorful . That reading give me some plesure and I decided to take the title of this book for my nickname . I will wirte a journal because I decided to do everyday . tobay 's menu was chikin , steak and croquettes ! Please check my sentenses . Afterward I could play better than before it happing ! Hallo ! Hello ! I thought that I have n't seen any good powder snow good enough for snowboading this season compared to what I 'm seeing snow in Tokyo . We did our best to make these questions but we are not sure that the sentences are grammatically corret . If you are corret our sentences , I really thank you . ( D ) She stood still onn the spot . I heard that the new place is the most exclusive bilding in this area . We saw The Pirates Of The Caribian . It 's about pirates looking for a funtain of treasure and they battle other pirates . I 've never seen The Piratets series . Of course , I like studying English , but I think studyng the mother language is more important because it becomes the basis for all subject such as mathematics . Yup , I was correcting some texts at midnight when this little creature silently slid ( or glid ) from the yard of my house into my bedroom . Of couse not , but I do n't think they should be killed , because their massive existence is due to our massive explotation of natural resources . My family does n't think my way of thinking is appropiate for a country where not only rats , but also mosquitos and fleas become a great enemy if you do n't control them . So , I finally decided to take my umbrella and I glid its end under the sofa , and then . . . it quickly scaped to his headquarters . . . Meanwhile , I am a bit paranoid , because I just think that it scaped somehow and it 's looking for meeeeeee . . . Tonight I 'm keep writting about my favorite characters . Well , the mysterious stuff , black chothes , mask , cape , every one likes . Also the idea that not to become like his ennemies , he does n't have to kill them , but he knows they will kill again . Of course , it is nothing compared to Aristotle or Montesquieu but whathever , Batman 's also fun . Mainly fun , by the way . In the future , I want to be a teacher in junior high or high school , but before that I am planning to go to Australis or New Zealand for my master 's degree . It includes action , mistery , and partners who trust each other . I got up in this early mornig because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsibility to memorize them with a mor efficiency . ' ' Was my borther reluctant to get up at three in the morning ? ' ' It seems everthing is the same as yesterday . 3 Fujikyu highland ( there is the highest roller corster in Japan ) It requires paicience and a lot of time . The more new knowleage one learns , the more confidenct he will be . Live for myself , live happily every da . And the teacher also said to us , `` Practice your presentaiona skills . `` By the way , speaking pumpkin , halowin is coming soon ! ! For this reason , a heavy equiptment company asked me to inquire about a special air conditioiner for a fork lift . I will entry about some of our habbit and what 's normal in life for my Blog , hope all of you can interested in my Blog . Useally , I practice golf at other golf driving ranges . I could n't get up eary this morning . The government promises to have an election this November just to pretend to be demotratic . It is utterly ridicurous ! I have already left the country , but am wondering how long the Myanmarese people should put up with this period of hardship . The Photographies Of Before and After the Earthquake Here , you can see the satellite photos of Tohoku area of Japan , before and after the big earthquake . For exammple , who will wash the bathroom and restroom ? Others say that some children tend to watch too much , which has a bad infuluece on them . In Japan , TV programs are highly developed adn devised , culture and languages can be shown through the device . Even if people do not visit book stores or shops , and they spend plenty of money on tranportation , they can study culture and languages with pictures . Morevoer , people learn kanji with famous people such as artists and talents . Thus , the level of interest in programs teaching kanji increses dramatically . But I did n't recoganise the number . . . . And 1 guy disapears . Nadeshiko Japan is the reigning chanpion of the world cup . I saw a lot of people who camed to perform Hajj . I enjoyed seeing differnt shapes and colours from all over the world . Becase of it , most of the cherry blossoms have n't come out yet . It can be cooked in many differnet ways . In the West , people offen boil it and eat it with salt and butter . So sometimes my elder sister treated me as like a slave or her followr . This year , I experenced big events in my life , job hunting , a journey to England and graduation from university . I wasn n't happy at university becase it was boring for me . I wanted to go anywhere abroad to study English and I wanted to know a different culuture . that is why I went to England wiht my friends this year for a short period . I wanna speak with foregin people someday . He was borey and he was always looking for food . I thoguht he was poorly taken care of . Althoght he looks like a stray dog , he is the coolest dog for me . I was surprised becuase I often parked there instear of parking in the parking lot by now . IIt is weird becuase I do n't see the red line marked along the street , so I do n't know why it is illegle to park there . I was moved by that scenery because many of these flags seemd to be a part of peoples ' soul . So , my sentences are likeky to have become unnatural and bookish in style . Rather , it 's better to say that I 'll find enough strenght to postpone other matters for studing English , especially improving my writing skills . And the same day , I arrived at Heathlow , England . Originally I 'm not good in Englih , and additionally Japanese learn American English in school . But she recomend a more special one for me . I guessed special means better but more expnesive . But I could n't regect it , because it has already been done . And I have decided that I have to check the price befor the order ! ! ! The writter is a Taiwaness woman who married a pakistan guy . She shares her experiences of Pakistan in the book . `` I think that this book is interesting , because I have a pakistan friend , but I am a bit curious and do n't know what the culture of Pakistan is like . Ohh ! My daughter has woken up , which means another blatting ( ? ) day has begun ! So I planned a trip another prifecture . In Japan Silever stands for our elders so this long vacation is called Silver week . I love apples amd bananas . I was excited at the curling game , accually , it was my first time watching it . But I do n't have somthing like that . * working sampe can be seen here on the original blog * to one 's best adventage Today , I turned in an annalysis report about myself to my teacher in the morning . Lastly , I ate a delicious cake and that was end of my brithday ~ ~ I 've been stydying English for a long time and used to read in English but I 'm still a bad English speaker and / or writer . . . Hair color and cutted My front hair was cutted about 3 to 4 cm . I 'm looking foward to reading it in English . I mande a date with my frined , but she is not the same person I had the chicken conversation with . its gaving us a hard time and makes me feel so lonely because everybody is so busy these days and I have n't found anyone alse who is gon na live with me after they leave . I want to feel relieved and confortable at my home without any worry , and have great japanese food and just get a nice and hot bath . its gon na be so much fun difenitly ! Actually he always helps me a lot and is sinscere to me , The povement was extremely slippery , so I could n't walk [ [ very ] ] fast without risking an accident . If they had enough mony to live , would they still work ? He carried a notebook with him , beileving that he could analyze the winning number . This mystery might not be able to be solved untill dying . And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courge to learn more about cooking . To bigin with , I change the ingredients of ozoni , chicken or beef . By the way , I have a `` MEDIA SKIN `` producted by au . She has a great voice and wonderful pronucation even though she caught a cold . Because it has graduately become colder these days and I need it to keep me warm . When riding on a motocycle , I feel colder than when I 'm walking . I studay English . I do n't like one of the vice - presidents of my current company Becasue he usually does n't talk to me except when he needs some tea when his guests arrive . He always says that he needs to get a high score on the TOEFL becouse he 's going to a foreign university . It leaves me relaxed and confortable , Though I studied English a lot , the score was the worset ever . That 's because , recentry , I found a nearer subway station than the one I usually go to . This year I 'll try writting every _ day to improve my English . I know thay I make a lot of mistakes but with the help of my friends I can / will become able to write better than last year . Becouse , I am a computer programer . I 'm optimatics ha ha ha . I went to the disco where my senior resident living in my domitory was DJing . I tried it again for the second time but I could n't do it like the frist time . I tried it again till I decided to go to bed . Next , I went to the drug store insectcide . that I do n't know the types ofinsects , so I bought insectcide that is effective on all types of insects . He loves theater and all music , from classical to rock . . . . [ BG ] A Thai client wants to sent a sammple to my colleague , and ask him to fill out a form which needs to be submitted to the Customs ( Office ) of Thailand . My herat is full of sunshine , I 'm eating dinner in chinese restrant near my office . I just stayed for 3 months , but I think I leared many things . . . If I have a chance , I want to visit the phillippines again . my friends , teachers , and Korean friedns . . . . . When we are learning foreign languages , we are liable to think we should n't use our mother tougues often . I thought I had a talnet for drawing . What collapses our lives is defenitely our negative thoughts . I have to attend some class that has practical tainig at the industrial firm . I applied neer my home . Nowadays , lots of big companies like LG , Samsung ang so forth want more variety and special experiences . Sometimes my dream chaged . They are able to remenber words faster than adults . This lecture gives listeners how amazing the faculty of their language and raises a quiestion how children learn languages so well . My class and club students enjoied it very much . Jpanese call it `` syouyu `` . Because I do n't know about logocal constitutions in English . The match is between the Rockets and withthe Bulls . Usually we have class on weekdays and no free time for surfing the intenet . Because of their negligence , 5 paitients got HIV infected unexpectly by taking an HIV infected donor 's kindeys , lungs , heart and liver . Now not only do the 5 paitents have great pain over this error , but also those doctors and nurses who did the transplants surgery were not aware of the fact in advance . Diary : Arrainging a recipe There is a ume tree in my yard . When I was a child , it looked samll and weak . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo that has opened a new tarminal for international flights . Today , Haneda starts its fligt service to major cities around the world . I heard from my friend that her frined was lost in the earthquake and I falt sorrya about that . One time in Thailand we had a sunami that struck people arond the beach who were swimming , many people were killed by that . I can study about vocabulary by a reading refurence book . I wish I could have an air conditoner in my room . . . Acutually it should be gradually getting cooler after mid - August , We 've got to be very carellufl and stay hydrated . It 's not related to today 's topic , but I need to mention that a bad thing happend this morning . . . I have to work hard on my experiments and application for the gratuate school these next few days . In nowdays we have so many informations , what we hearn in the radio , see in the TV and read in the Internet . If you are intresting in it , maybe we could follow it together . Take this diary for example , I have written it for about three months bacause I 'd like to improve my English skills . In summer , watermelon is my favorate fruit . In my opion , it is rare for such a big event to be held in China , so I should take the chance to visir the expo . Since I love trevalling so much I faced many problems in order to have a good time . When I look at the pictrues that I took during the trip , I remember all the happy memories . Some people are singing a bit out of tune . * euphemism * But I must admit that it 's far more amusant to hear someone sing out of tune then someone who sings beautifully . Ahum . . . They believe in their voices , altough it 's so obvious that they ca n't sing ! And `` Easten Plays `` is a Bulgarian film . This decision might chainge my life . I played baseball from my childfood . My appetile often disappears when there is a lot of load to take care of . Everytime time I raised my head , I would feel like I was sinking . Third , I watched a viedo about a cute kid who likes to recite poetry . On the Wa - tokei , the day and night are each divied into six parts . Although Taiwan is not a Cristian country , we like to celebrate this meaningful day as well . And I ate a beaf steak and a chicken steak : D I have n't eaten beaf for a long time ! I guess that the air is leaking from the torn cusion every time you sit down . It seems that the suspect did not miss misshoot . At that time , I lived with my host famliy . Thay have three small kids . They must have felt more scarly than me . The thing I like about my university is that the whole education system is based on the one in the US , and that we have some profesors from different countries . It 's all about getting a good start . Never say never is a good song and it ispires me to hang on . Every classroom has a veay largh TV set . My univercity is in Xian but my hometown is n't . He told me lots of things to say in order to have a successful bilnd date . However , very lukily , I could escape from this snow . Consequently , it was not easy to concentrate on wrok . That wiil be a big lose if you have never been to Tainan . It 's really difficulf for me in this process . I 'm studying English at university , and I want to study Korean lannguage next year . In addition , starting the day 's work early in the morining is a healthy lifestyle . Sometimes I wonder whether or not I have made the right dicision to go there . It is very confortable . My teacher started writing on whitebood to explain something . Or is it accedental ? So I will study Reading and Writting hard work is hard wark . . . ( ? ? ? ) His father died of old age , and so three co - workers amd I went to Busan yesterday . I 'm working at a company ralated to the financial industry . As soon as possible , I want to speak English fruently and write sentences in proper English . I was waiting in the parking lot for cars to leave so I ccould park my car . When you 've finished somthing , another thing comes soon the next minute . American football is very hard , but very interenting and exciting in terms of high sophiscated tactics . What is most excinting in the American football game is hard TACKLE ! ! it is one of big skarting boarding races in the world . That 's so amzaing ! I was so excited ! I ca n't beliave that such players exist ! Fortunatelly , my wife and all my family were alright . I have been preoccupied with the news of earhquake and radiation released from the Fukushima nuclear plant for the past week . To be honest , I 'm a bit worried about the situation surrouding Japan . We practice using Japanese chopsticks propery . It 's really hard to explain in English , and it 's very difficult for students to use them that way , because they are not familier with it . One student asked me why I could use it so propery , and I told him because I am jaoanese . Can you use chopsticks propery ? Well this moment I ( space ) Iam receiving English classes I would like to improve my English , because this way I wiill possibly pass the exam . I 'm 29 years old man who also love basketball , soccer , dirnking wine and Hugh Grant 's homour sense . I realised that Usagi - chan and me have a lot in common , so I undertstand my friend 's comparison between me and her , and why they gave me the name : Usagi - chan is very clumsy : I am extreemely clumsy , too . I was interrupted and could n't keep myself studing . He was mad at my coming keeping hime from watching the climax ; I also expressed my rage at the noise about the TV stopping me from my studying and I hoped that he could turn off the TV . I told her that I will acompany her to see a doctocr tomorrow . We will go to the hospital at a half past seven tomorrow morning . My house was damaged and flooded from the earthquake and tunami . I attended the conferense about the next officer 's exam . Ahter all , I hope to be a officer . Though we also use Chinese charactors , it is very difficult to understand . The pronounciation is especially hard to get it . Clearn Up It is wormer here than Tokyo . I believe this website is very useful , especially for english and mandarine chinese learners . Thanka for your reply of a few lines . So I ca n't write in this diary these days and I 'm a little bit disappinting about this . When he kicked a wall of a buildung , a man noticed and confronted him about his act . I want to pratice English . Basically , they are more than 5 minites long . But you will not be bored becase they are stunning and fascinating with vivid words and melodies . I was a little tited , but I still enjoyed fishing . Hieizan , where I dated with my first girlfriend while in university . That mountain , even now , makes me a little sentimental . I started runnig a month ago . Runnig refreshes me . I am going to univercity . Today my classes are `` Social Poricy of EU , `` `` German `` and `` Sociology . `` But she is too caprisious and hot tempered for me . Last night , after the Celebration of Chinese New Year , I text him , `` Happly new year , and I love you ! `` No rejection , no consentment . I took my daughter to the palce where this party was held . My wife also had a year - end party with her colleages . A typhoon is comming . By the way , one of my front teeth is fake and it bacame loose recently . Arter this , a new special lecture will start . We deceide to eat roast pork belly . Today , after lunch , I was watching the news on the intrenet while I was drinking coffee . I was very interested and , I registerd to it immediately . It is universally acknowledged that a pile of things have happend in China ! When it was Feb . in 2008 in most areas of China it snowed heaveily . It experenced a lot . So many things were destoried . Buidings , plants ect . It shocke China . The 29th olympics was held succefully in the capital of China . What made the Chinese sad is the ansrnce of Liuxiang who was gave the most expect . ( ? ) This month I 'm very busy becase I have to do many things . It about the school festical , I 'm a leader of it ; English and Korean studying etc . So , If you want to become my penpal , plaese send me a The Lang - 8 system is a Japanese site but seventy percent of the users are forigneres . If we recited a sutra once , we would live peacefuly in the next world . I had nothing to do toay . Therefore , today 's daialy is very very short . Tomorrow , I want to write a dialy with no Japanese thinking . Saundy wants come . . . My part time job is as a coffee shop assitant . becouse , person not doing anything / doing nothing I like to make peaple happy , I am reliable and I have a strong sense of responsibility . In my job , I succeeded to make repeat customers by meating their needs . Finally , we decided to accept his request , although it was lisky and we waited for his answer till the morning of the first day of event as he wanted us to do . I really appriciate the kindness and courtecy from him after the event . But as for intermadiate class study free - talking so even if it will be beyond me , I want to try it . I recomanded an LG phone as it is cheaper than other ones , but she wanted a SAMSUNG phone . Thanks to her stubborn attitude we spent ' 5 hours ' looking for an internet shop that selld the cheapest one . If the goverment had more support for safe energy , I think we would be able to meet more energy needs . I 'm really lookin forward to that day : D I knew this site because of AERA engilish and I 'm interested in this site . My husband has entried for the full marathon but he has n't run such a long distance in his life ! I do n't want to paticipate in any marathon definitly . I thought that possibly his English is better than mine , but why did n't he directly call the Amrican department rather than the Japanese department ? If he is in America , he should call the American department in English ; so , probably his English is not very good . Having a conversation with a native speaker on the phone can be extremely defficult . They were so old that the corners of them were limp and it was difficult to fold them into a rectangular syape . The sewing machine is my mather 's and its isold and yellowish . I reccomend it . He sometimes made me read sentenses or words and teased me in front of other students . There instructers always cheer me up when I ca n't say what I want to say . My mother - tongue is Spanish so If you are interested in learning my lenguage please be confident about contac me : ) and If you speak English , we can share our knowledge : ) For example , `` I would write diary everyday . `` I would never drink alcohol againg . `` Today I would studay more than 12 hours everyday . `` If you do it , nobody controlls you . `` According to him , a very kind Japanese guy showed hime how to use a public bath . It was very very delightful , because it was for the first time for me to have been quated and reblogged . When I put on a skirt , it coud n't fit . . . The Japanese labor market for telework and SOHO ( small office home office ) is still small . I often see some ducks , so I took some picutres of them . yestoday I posted an article about a museum , and nobody in this website could correct it . The title of that comes from Tofel , but I really do n't think that 's a hard thing to do ! My friend and I went to Dazaihu Tenamangu shrine and Rakusuien . I bought Umegae - mochi ( A - branch - of - plum mochi ) on the street in Dazaihu Tenmangu shrine . Aduls will pay 3000 yen ( junior and high school students : 2300 yen , elementary - aged children : 1400 yen ) to go up to an observation deck 450 meters above the ground . ahaha chihuahuas are too funny . generaly , people think that it is wrong to look at the past , but it amuses me . My weekend plands . My weekend plands are to do my part - time job . The whole time , happiness was flowing across my cosin 's face . But for now , I simply wish that my cosin will live a happy life in the future and have a lovely baby some time . Althogh I read the book so slowly and do n't understand it all , someday I hope I can read fluently . I bilieve that . How about brithen ? ? Please check my Engkish ! ! There were many believers and tourisms visiting the famous temple . However , in high schools , we ca n't choose our classes , same as middle , and elementry schools . So , the Australian goverment granted him citizenship If students go to class and learn , according to school requirements , should n't theose students be allowed to express themselves in clothing ? If school adminstrators would just grant us some freedom in fress , we 'd feel better in the classroom and be better citizens in the future . As per our Chinese tradition , you can tell other poeple you are pregnant until the baby is 3 months . Last Saturday , I got her phone call in early momrning , I was wondering why she called me at 7 : 00 am . I really want to be a good English speaker and writter . Some appications of I pod are very useful for me to learn more English vocabralies and sentences . Do you agreee with it ? Oh , I forgot to mention that our team had 5 memebers and I was the 2nd ( second ) one to do the presentation . We were required to do a team task ( `` do a work `` is incorrect ) to fix two problems - - - who has an apple tree in his yead ? Everyone of us were given 6 sheets which had different information and were told that we could commuicate with others using words , but could n't show others our own sheets or make notes . some example senteces are welcome . I was freaked out and started checking the list of the recievers . I 'll go out since It 's been a few days since I 've gone out , because of the hard rain and strong wind of the thypoon . So ! I just returned made from the business trip to Hirosima . They worked for my parent 's small resort facility , but the building was destroyed by the Tunami and they lost their jobs . So they came to Tokyo and bigan to look for a part time job . It 's my responsibility to help them look for a job and feed them untill they get their jobs . My English listening and speaking is very poor ; this usually spoid my job . There are so many bad things happend everyday . Things have happend , and the effect will not change whether you stress or relax . I mean it 's kind of a torauma . Since we are talking about character , I do n't believe a single judment can be made . It depends on the individual whether it is his family or his social acquitances who carry more weight on his decitions and behaviour . After they go through the first years of their adult life , youngsters usually turn back to theire families looking for support and advice . It examined Royma Sakamoto , who was an historical person during the Edo priod . It 's diffelent from Starbucks . Since then , intricate networks of power lines and utility poles have become prevalant in a short time together with human residences . The variety of neon lights from dwellings illuminated a part of scenary through the window . In Okinawa , at night , the sky is studded with twinkling stars that discribed innumerable constellations . Now the beauty of the neon light from human civilzation are replacing the beauty of the light of the stars . I ordered `` Today 's Lunch Special `` , which consists of a chiken gratin with salad and toasts and , one drink after a meal . Because the first time I watched the movie was at the highst of ( the ) summer . But I ca n't quit this habbit . Actualy , I am a little worried about my financial situation even though I like hot pot very much . We went to an all you can eat restaurant , and the price was NT550 per person , which is an equal to 15 us dollors . Besauce the restanrant is too popular , we had to wait for like a half hour . The Taiwanese guy asked my studnts 's phone number , and she gave it to him . They are friendly to foreigners especiall to white people and will seize every chance to make friends with them . When we said goodby , my friends told me , `` This is the last time we can see you until you come back to Japan from the UK `` . I was moved so muc that I was about to cry . I realizd I have wonderful friends and I should enjoy anything that will happen . We hope that you 'll enjoy tghese new features , and that they will help make Lang - 8 an even more vibrant language learning community with a uniquely social appeal ! I 'm studing English , because I love foreign countries . Becuase I gained weight ; about 2 kg , which is totally intolerable ! My apptie is kind of . . . I was jsut wondering if this nightmare is because of my bad eating habits or the outcome of me working out at the gym . lol But what really makes me nurves is that I rupidly gained weight . I know it sounds silly for boys to care about how much wieght is but that 's what some of Japanese boys have on thier mind sometime ! Yet the proffesor always says that it is `` ok `` . In Englsih It was not possible to go to nanode sea . I 'm going to Ueno Park which has a lot of cherry blossoms and is famouse for them and have a party with my friends this weekend . I 'm a planner working at a web service company which supports small retail businesses emarging in e - commerce . and I arrieved in the city after 30 minutes . There was a lot of delicouse food . When I am enjoying listeng to music on my iPod ( actually , it was a podcast ) , she told me that she felt like getting an iPod for herself too this morning . After I had pancakes which host familly wife made , I hung around the neighborhood . I asked AU about the charges but their answer was `` I do n't know , ask the local cellphone company `` . So I speculated that Rogers would handle this ploblem , but they had no idea about the charges . But I could check some ingredients like thin pork , onion , potatp and carrot , for Nikujyaga which is a japanese cooking recipe . I promised to treat my host familly to it someday . But nothing happened acutually . So I did n't cut conners . so I made and intented to print it out soon , When I cultured plants to test tubes , I have to heat the tip of Erlenmeyer flask with stealize water . And I spraied alochol to my gloves to stealize them . I want to try doing experiments carefull from today . I wish this happiness could last longly . The cakes were tomato cream cake , banana cream cake , and castard cream cake . Castard cream cake is coordinative with americano . A survay says that one ca n't just love only one person in life . It is said in that survay , the average amount of times people `` fall in love `` in the UK is 13 . This survay really gives these facts ! I think it is because one may be attracted by differnt points or attractiveness of different people . fiesty . . . I 'm glad if you can tell me the meaning of `` fiesty `` . Maybe she was scared of my voice and was warried about me . However , I 've just gotton well . In addition , walking around and hiking aroud parks and collecting flowers and some plants are also good example . There were some Chinease some Thai and some Japanease . Casuse I have stayed in Hong Kong and Australia for a few months as a student , I remembered feeling so free then , as compared to now . It is a pitty that I can not get back there , but I hope and expect that I might be able to work at an overseas branch office someday . I tagged `` my cat `` on my facebook cuase I like this title . Becuase this title makes me laugh . Nowdays the cold weather defies description . But sometimes I can not follow ( the ) cultural diffrences between Holland and Japan , especially being naked in public such as a street or a park . Besides , I do n't like Sasimi . However , thoes factors also make rafting very exciting . But when I meet a foregin friend , I do n't know how to give an information in English . acually , I had confidence about my English skills , and it 's true . But only with grammer . . . I 've been thinking that Korean and Japanese are very varied and higly developed in respectful words , on the other hand , English does n't have any respectful words . artical . Then , I dreamed I went back to Japan but I felt bored so I cabe back to Malta and I started a job at a souvenir shop . . . Many pepole think that Japanese cats generally eat fish . I must pass the exam and continue to state univercity . For lunch , I cooked an omlet containing fried rice . He told me everythig is ok , but there are no trains running just after the earthquake occurred , so she was on her way back home . I hope everyone in Japnan is safe . I write a daiary in english and I have studied english for a long time . I was sympathetic to the fact that creating a sastinable society means help from not only people in the government but everyone . Although I think the tric to make it is difficult , it is very very important . To be honest , I think what I said had some grammar and prononciation mistakes . Firstly , they are both the most important day in westen and easten conuntries . Then I need to change all the address registations on cards , insurances and registrations asocciated with the internet . So , My younger brother and I will invite our close reltatives to a seefood restaurant . If not , he would set fire to the home of the president of her agancy . They sent them to the hopital . My mother and older sisiter scattered roasted soy beans all over the place . It also took more time than I had expected to fill ont the application forms . I gradully am coming to love this school . What shold you do to make your dreams come true ? I do such as eating , sleping and seeing people . Today , I ate 3 sushi and miso soupe at Melbourne Central Station near my English school . One of my habbies is flying RC planes . I made a new RC plene . The first flight was a nice flight but an accident occured on the third flighte . I corrected and evaluated the compositions of 20 examees who took short - tempered Japanese training . I want to ask of a . farvor . ( Sorry , I do n't know how to explain it in Englishi . ) I tansfered at Taipei . Fortunatally , it was low water season so it was n't much harder than I expected . I love this seasen in Japan so much . Teenagers spend all their spare time serfing the Internet instead of studying . The point is : if you have the main consepts of a question , you can make any theory based on them . I bought a pretty pair of & nbsp ; hot pink shoes so I can wear the new shoes tomrrow . I do n't want to be pesimistic , but my current workplace was a bit wierred . . . Fortunately , with the progress in modern techonology . convienent . . . etc . Housekeepers can store some in the refrigraters and quickly prepare the meals for the whole family . frozen food technology and the new equipements allows people to accecibility and the convinence helps these people a lot . Critcs may argue that the frozen food could have less nutrition or they can not offer the balanced nutrition that people need daily to keep In my opion , it might be an old angle . in the aspects of fastness , accecibility , convinence , safety . . . etc . Electricity and tapwater have been stopped in Ibaraki where I live 100 km north of Tokyo . One of my favorit singers is Shouta Shimizu . Now , a typoon has hit the island . They said that Americans support the underdog so they supported Nadeshiko Japan who were competing against the chanpion , the United States . In Japan , there is no such word as `` underdog `` but there is the same spilits . Iventualy they became rich . Today I have a / the day off and I will try to spend it usefull . I will try not to be lazy and I will try to do what I 'm planning for the day . It 's rainning today . so I 'm feeling gloomy . It has been rainning since this morning . When I was looking for a hetol . Blue seas , blue sky , seafood , a beach , sunshine , flowers , all of these are familar to me , and days pass on very quickly . The Tonkatu mede in this shop was very delicious . This makes them lazy in learning a foreign leanguage later . I will ask many questations and try to be friends with the teachers : ) I envy that Europians allow ( permit ( ? ) ) them to play music there . ( Permit is okay ) She was helpless , crying out for help , and then , from the ashes , Harry Potter came to help her , using his spels and a magic broom to defense the scared ladie ! But that which not even Harry Potter had expected , happend : Hermione came all the way from Hogwarts with her new husband , Ronnie , and killed Harry Potter in the worst way possible , with a broken heart . I used to go out with my wife to visit gellery and Because even if I do n't know them personaly , I felt their love and passion in their music . When I speak and write English , I always feel the lack of my grammar skil . We chenged to another point . so I went to `` home plus `` whici is a kind of super market . in the car returning home , I was happy : ) I bought some apples , a headset , sparkling water and some plingles . We had some bread for breakfirst . I decided to not use translator to look up how sentences shoul look . She looked after us , told us many intresting things about life in Sweden , and introduced us to Swedish cuisine . I love reic more than noodles . I would go on dancing but I do n't have enought money . Every culture has their own traditional way of conducting their wedding ceremony and of courese , we Koreans also have our own style . Accessories like a ring , neckless and bracelet , hanbok , Korean traditional clothes , and more . In the winter , you can go sking . Please say many coment ! ! ! ! ! ! ! ! ! I want to speak English fluentry someday , and I want foreign country ` s friends . kanojo no oba ha ( kanojo ni ) okurimono wo . susumimashita . Kanojo ha kare no heya wo soujou shimashita Ototoi ajia kappu de nihono no sakka chiimu ha kankoku chiimu ni kachimashita kinou no asa okaasan to issho ni isha ni ( byouin ni ) ikmashita . sochira , sukoshi nihongo wo renshuu shimashita . Onegai ishimasu We will make some sandwitches and salad . I visited my freind house , and there were many people there . I cooked some dinner for guys . Before cooking I left my wacth on the table . However , I 'm not sure my wacth was on the table . We had dinner and enjoyed each others company and passed the time . Then , I wondered `` where is my wacth ? `` I was looking for my wacth but I could n't find it . While I only bought it for 10 dollors . I am really rond of this site ! The Chainese wisky called PAISHU that my chainese friend brought for me as a souveniors , is too heavy for me . But my stomack was satisfiied . Howrever there is one problem . I already know about the problem , so I will try to be deligent . Do you think thart I can sleep enough tonight ? In such occation , it helps to just say `` Dobin , Chabin , Hage - Chabin `` on the street in a loud voice . It 's Goden Week in Japan . My reserch was in intellectual law , especially patent law Of Ofcouse my reserch was very difficult , but I loved it . Therfore I decided to go to the Fukiware falls nearby . For the first time , I know that Lang - 8 is a good means of studing ENGLISH . All the people in the village were very grateful and created this danse . I feel so bad after getting angery . Gundam seed distiny Is he a clone of the armer polot army pilot ( ? ) whose father is a heroic astranaut ? I had no plans to begin with so I went to school to check if the exchange list and the exam scedule was available yet . Since there was a lot to talk about , I went with her to pick up her new pasport and she acompanied me to the supermarket . My friend wich I was shopping with also does the same . I was very amused because I really want to develop my English writting skills . Awfull . . . I belonged to rhythmic gymnastixs club . Reading artcles and books about astronomy , science and world business is also my favorite hobby . We do n't like them because they 're good at all sports ( football , tennis , cyclism . . . ) . They eat horrible things such as jely or pudding , which is one of the most horrific nightmares for a Frenchman / French person . - Africans ( black people in general ) : they are lazy , only good at athletism or football ( and they 're not technically - minded , they only run ) . French in general : it 's agreed that we strike , critize , and complain too much . And my car will be totall after test - driving it ! I only hope that when she wants help , I will hlep her . When I knew that some famouse killers are affected by this book , it really intrests me . Secoundly , I did n't understand well about why the book have such power at that age . Last but not least , I like Holden 's sister , Phiby , very much ! Today , I have become a new member of lang - 8 , this is so exciting . It 's very intresting . So many people from other countries , they all chat about language and exchange ideas . So we all can improve ourselves . I used to be able to play tha piano . When I arrived at the studio , the cute staff took me to the reception and asked me to fill out a questionarie . I want to be a reseacher . Hi monkeys , you are wilcome here , but please do not steal my food . She is kindful . These seeds weed out other plnats , so the diversity of nature will be changed . If tge diversity of plants is chnaged , the diversity of animals will also be chnaged . The scosystem will be destroyed by GM seeds . If we chnage our lifestyle and are more interested in protecting our nature , its contente was meant to improve communication skills . 1 ) an eye opener for humns to see something amazing / a way of entertainment . We talk about how digusting the teacher and the school are . We all have no freshness for the new semester like before , everything is so familar . I was a system enjener in Japan , but I want to find anothe intersing job here . I was so sleppy , I could n't consentrate on class . Being hitted on Me : No , Janpanese girls use a lot of makeup ! Many girls make chocolate on thier own to give it to their boyfriends . But Korean girls are previliged because we have White day ! ( So I personally think it is really girls who have the right and power to make a choice . ) Sometimes boys give some accesories or other gifts with candy to their girlfriend ( s ) . But if you are in a relationship and say to your friends that you are not going out with your boy friend on Christmas holiday they would think it is a little wierd . Ah , this is a stroybook for children . ( For me , this is better for languages like corean , because study material is limited in my country ) . They tried to talk to Japanese weman , and never to Japanse men . But convesation did n't last for very long . yeasterday I went to the supermarket . I was surpriesed , so , I bought it . Infact , I am a vegitalian . I always eat carrots , bloccolies and so on . how abou everyone ? I 'm looking for new friends and pracise English together . I 'm Korean , 24 , femail . . People who ca n't see theirselvs do n't need help by a dog . Rowling `` who is of course the auther of the Harry Potter fantasy series . I registre on this site because I want to learn English . Anyway , I 'm studying real English , rescently . . . . Debuit ! He ack that he really cares a buppy in the computer . I wonder if I need to put them in the refriger or leave them on the counter . It 's gon to come and take my Tarot is a way of fourtune - telling . I 'm a fourtune - teller . Fourtune - tellers has a part of counselor . So fourtune - tellers need the ability to listen to other people 's tellings . Many people who need a fourtune - teller have big problems . If you want to be loved on sightby everyone , becaome a good listener is very important . I have a violin compitation tomorrow . I bouat iPod touch , but I do n't know how to use it . Am I luckly ? An important feature of phrasal verbs is that they are tipically idiomatic . Recenly , I had a wonderful time . I have discolvered this website today , and , as I want to learn English for my job , I have decided that I will write one message every day in English . But when I left home , the sun was shinig brightly . I 'm going to send New Year 's cards to my old frineds as usual . I will get on a brigde to see the first sunrise . I have interest in language and cultrures so I begin to study English , allthough I ca n't speak English , French , Japanese I will never give up So this is very difficult , but I want to speak in English verry well . So I want to find an exchang language friend . Let 's be friends ? I have funny story about getting this nickename . My name in Russian language can sound like Shura , wich is consonant with this tasty food . The dish is made from grapes juse and nuts , and looke like red sousage . I have a bolg . You can insert the googole advertisement ' Adsense ' . That was a wondwerful event . I have to cook my father 's dinner at once , because my mather is out on a business trip today . Nobogy is walking now . I have been reading about the presect perfect . Have I learned how to form cuestions properly ? But I do n't know how I sould study English . This is my first brog in this SNS . In the end , the song we played live was LAST CRISMAS . I was suprised to know the way different kinds of diets . English grammar looks simpler than Polish , but it has many more prefixes and sufix ( suffixes ) - befor and after any word . The question was ' If you only had one year to live , whato would you wanto to do ? ' . However , if my life only lasts one year , I 'd want to go to aroud the world by ship . So I am studying English as a global lunguegh . Especially , it has so many moutain . I often walk near the moutain , and I am always moved to see beautiful nature , I found I am very tired althoug I have done nothing . We have to live separetly for the next 2 years . Yesterday , my wife and I enjoyied talking with Skype . After I checked into / After checking into the hotel , I went to Union squqre to meet the private cable car that would take us to the dinner restaurant . It has been a while since I 've wirte here . So please keep wirting here and I will continue to support you . I 'm depresseed . Yesterday I lost my Polish - English phrasebook when I was buying coffe . It is smal , red , and it looks like a dictionary . My wife is flugal , my children are well - behaved and cheerful . I want to try to understand forein people and get various living in a storanger country , and I have no confidence in my English . I like The Beatles , The Rolling Stones , and Simon & Garfancle . to stand in the sciety . and stayed loyal to Frodo although the latter misunderatood him . The reason I went there was to buy some vegitables and other things . New onions and potates are sold this season . So , I bought thier in the vegitable shop . I also bought eggs , stroberry , milk and so on . I was surprised at that there were so many people there on a Sutsurday moring . I throught I would n't be able to go to my music club today but I could . I went to the college 's clab house where I usually enjoy playing and listening to music . But I am nt surprised . Why is it that I live in Australia but ca n't make one Austrlian friend ? On the way back home after finishinga whole day of study , I thought about my parents who are working damn hard tosupport me studing in Australia ; I could n't stopmyself crying . They are 50 years old already but are still working 10 hours a day for their disappointing daughter who is a stupit burden . . . . and I 'd like you to help me with Chinsese . gendle : male Major : eletronical engneering and computer science . This are speziel plants , because they subsist from / they survive off of vermin . I have to achieve this goal before Chinese New Year , because I want to wear beautirul clothes , so I just have three months . Why are neighboring countries like China and Korea developping , and why is the Japanese GDP falling ? ? ? Koren drama used to be famous in Japan a few years ago . The first three days , we 'll stay in Chairns . Sometimes a student asks me some questions about the English grammear textbook . It 's ranining today . That 's because I like sunbasing , swimming in the open air , and eating the freshest fruit . I 'm going to get wonderful bronze tan and a lot of unforgettable memories and good fotos . My neme is shige . Nicee to meet you . Because I want to study abroad and go to law scool in America . But my English skil is poor . I deside to study English through this web site . I used to commut by bike . You are ( all ) invited to my Japanese style homemade ciber dinner party today . Vermicelli soup - Seaweed and Okura Oinari san - Rice ball wrapped in a thin slice of sweet flavored deep fried tofe . Savory consomme Okura cold jelly How can I controll this emotion ? ? The nuclear powor Japan has been having trouble with the nuclear powor . We ususally gather to admire the bright mid - autumn harvest moon and eat different flavours of mooncake . If you have time to help me increase my vocabulary , I would really appriciate it . I do n't think we need that musiam . They are crazy and makes me frastrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped Ross & Rachel , because I always thought they belong togehther . It 's because speaking needs quick response and what 's worse , the order of words in a Japanese sentense is quite different from English ones . After I start talking , I realize that I should have started my sentense in a different order . That 's why I decided to start writing English sentenses . Mie , where I live , has a fantastic city called Matsusaka , which is famous for delicious beaf : D My frind and I stopped at a convenience store to eat icecream . I want to have frends for all over the world ! My sister needed me to help her tanslat something from Thai into english . But I am not good in English . So I tried to use a tranlat program to help me , but it got the the grammar wrong . So , I 'm going to ltaly I have to admite that when someone says that he or she loves [ enjoys ] my writing it makes me happy , but that is [ that 's ] not my reason for writing . I had to write in English , but I 'm afraid it is not [ it 's not ] good enougth to write something good / interesting . I 'm a unuversity student . I do n't know why or how they treat their bus , because everytime I took the bus , during the drive I worried that the bus might fall apart suddenly . ( the bus company is located at a small famous town ) BTY , the buses were extremly old , old enough to be junked , but I guess new buses are too expensive to afford . Today I will introduce my favorate building ~ The Great Wall . The labor force , composed of prisoners , soldiors , and workers , built the wall . I entried the university and chose english literacher as my major , and I read a lot of english books every class . sexual and humor ! ! However , I take a senior course which is associated with my minior and that course 's professor is the chair of that department . The professor said to me that he knows I 'm an international exchange student , but I have to speak more about the class and the next class he 'll give me questions about a main sbuject . I think it will help me to learn about English , but I 'm starting to feel little vervous about that . Right now , it is very fragrent in my room . I was in right field when we were in diffence . If you need further information , pelaese let me know . I heard that American or other countries ' university students are more serious than Japaneese students . He is ereven . He plays games evreyday ! Recentry I 've had trouble sleeping . How comes it 's dofficulty to sleep ? I want to buy skeating shoes . I 'm from Osaka in Japan , but I live in Santa Barbara in Carifornia now . I have staied here for 2 months . I really want to watch splended dances from around the world from now on . When I write a dialy in English , I have my English corrected . I had nothing to todo today . He always thanked her heartfully . What I Think from Reanding the Newspaper Many comapanies have disclosd their financial results between April and June . Of course , the earthquake also hit the Japanase companies to a large extent . I started watching an episode from seoson 1 for fun . Recently , I have been watching the 13th episode , of seoson 3 of that drama . My husband told me `` You look like you are addicted to that drama . . . `` However , I think it is entertaining and I think the writer of that drama is a genius . Others said if Ilisten to English ( English what ? ) one hour everday , I will be surprised bymy English after listening a month . I prefer to as a foolish Old Man , and do something everday , and finaly I will be successful . They were 20000 yen ( 200 dollors ? ) She is a conservative and pretty girl , so I gave her a short message to say : ' I love you ' . I thought she might be scaried , and she said she had a boyfriend already , and they were very happy , of course , there was a rule that teacher ca n't have an afairs with a student . . . . . . I would apeciate it if you could edit my writing or even leave me a comment ! I like snowboarding , but it 's too cold to go oursideX X - < I 'm planning to go snowboarding next Sunday , I hope that the weather will be good that day . I kow but . . . . . I paticipated in a free trial lesson of English conversation today . I think I will not pass the exa . I have three chances to take the exa in this year . It was just a nap , but I slpet nearly 6 hours . . . I would like to tell you some detalis about my country , because many people have misconceptions about Poland . I want a job as a mashine designer . Somes scenes were pretty groce , but I 'll spare you the details . I have been checking all of the sysrems and funtion in ipjone So one of my new year 's resolutions is to publish at least onea diary entry here per week , even it will only contain a few of words . I 'm also ironic , sarcastic , audacious and really arogant ( You have no idea . . . ) . I 'm going to go to Tokyo tomorrow , it is a horiday . I had no horiday during this summer vacation , so I want to enjoy and relax . The womam said to me : `` This llama belongs to me , and I want you pay me for the picture ! `` I decided to give her some money to help . Everyone everywher wants to get money from tourists ! ! I thought he would just play around and not wander far away but , suddenly my dog wasdisappeared and I tried to find him . But I do n't want to because of the recent situatuion . the illegalization of marijuana was done without any studies . Yesterday I was caught in a shower when I went out with my girlfrend in Ginza . It encouraged me to commuicate with others . There were also a lot of people who spoke English well . They could speak with others easily and express theiy thoughts and ideas clearly . yoiu can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get piss off and say that I 'm having a bad attitude . We arrived at the beauty shop at 2 o ' ( 2 o ' clork ) . I hate rapair to the train in the morning . I feel that the Jaanese are very rough and that Western people are more like gentleman riding horse . At the drop of a hat , I 'll dump somothing into it . I think he has a good personility . At lunch - time , I had a supecial lunch . My myfriend is a chef and cooked Japanese food ! First writting This is my first writting on Lang - 8 . I just found this site out accidentary , and I think it will help a lot to improve my English . The other ingredients are Tofu , cabbege , pork and mushroom . The robot girl can smail . Hallo ! This is first time to write a dialy in Lang - 8 . Please correct my dialy and be my friend ! ! ! This is my second exam ( I have taken ) sice I came to UNO . My father , a retired policeman , said that if I want to be a policewoman , I have no need to get a Master degree and a Bechelor is enough . Although `` know all `` is an ironical word , I still persue to be . I counseled a cliant for my assignment , not for money . We need to cousel other people and write reports . The word means boys who can not take an avtive , aggressive or enthusiastiv attitude , and do not have an affinity towards girls . Like hourses , rabbits , and so on ; not like lions , tigers , and so on . Personally , I do n't like effermirate , delicate men , so I hope `` carnivorous boys `` will increase more . Tomorrow , I will have my favorit class , so I hope my cold goes away soon . I had not ridden a ferris wheel since I graduade from school . whennever you need me that I wo n't be far away . He told us this joke ; What 's the difference beteween a pregnant woman and a ligt bulb ? I have used this tool to train my speaking skils . I 've studied English in order to obtain skils to read and write articles about various science articles . In short , new scienctific words continue to be created . The clumn went is like this . However the balance of your account is resetted everyday . This meams if you do n't spend all of your money , the rest of the money is lost . So you should do the maxmam with your ivestment . In fact , I think it is very good to study English with a textbook that is written in englsih . and I think using a Chinese for Chinese speakers textbook was pritty good . Years have faded away many peoples ' momeries , but Hachi 's memories never faded away . I just do n't know how and where I shoud start . `` Some of students said that they were good at Englsih . `` Also , I have to write some reprts . . . Please help me to correct my artical . What 's the difference and how can I use it corectly ? An advertment I always hear the sentence ( nan datta yo ) in the animes . Do the lundry . I 'm goning to work starting next Monday . It 's a little bit difficult to sing English lirycs , and memorize it too . so we dicided , we went to the Chinese restuarant . We orderd sisami chicken . The Oevertime is usually 1 or 2 hours . I like to creat games So I like to creat all kind of games . I want to make freind all over the world . When I try to write a sentence in English I 'm composimg a gloomy centence every time . I have leant English for many years , but I have not found a good learning method . I always see the spellng sheet before the test . The neckless with two stars is his favorite one . She was so friendry and smart . I 'm gon na write diary entries and essey as much as I can . We can help each other ! The whole world is so excithing , is n't it ? Just after running , I thouht I did not want to run , Now , I have a little masucular pain . I would love to learn feminine stuff that relates to American culture from her while I doing langauge exchange with her . He is a panist and accordionist in England . Surprisingly , she atteneded the same university as me but I never met her on the campus before . I have studied engish hard since last month , , , it 's our city 's most inportant festival , because the man who created it was our king . I will keep on writting , studying hard and become a good speaker in English . The Autum colors I love to see the autum colors . But I always fail to go at the best time because I ca n't weit and go before they look the most beautiful . Since the temprature in October was so high , , the leaves changed their colors later than the previous years . It is my secend time traveling in GuiLin . The last time I went to GuiLin was one year ago . This time I feel GuiLIn will be a little noisier and it will be more moden . The environment has been broken . I worry about whether in the feture GuiLin will lose its beautiful scenery . Tish time I stayed in YangShuo for three days . It makes me feel like YangShuo is so small . There are too many people in YangShuo . I do n't think YangShuo is OK with so many people there at the same time . However , I must get the skill of writing and speaking English for buziness . I am shooked ( surprised ) to know the reality about people living in a suburban area . We enjoyed going to the grocrery store , preparing the BBQ , and talking about recentry things . I ` m a freshman at meisei universalcity . I study english everyday . I think studying english is very interestig . Because my unversity is in Seoul , I 've been separated from my parents , who live in Chung - ju . The reason I took that exam is that it will help me to manage a buiness someday . I went to watch movie of brasil presidente Lula . I was so excitited . when we talk each other , I coul n't help but feel embarrassed and stammer It was very hard , but it is very helpful for my work as a cashier : ) I am still in trainig ; however , I have to run the till by myself . I was delighted ; therfore , I could really enjoy working today ! It has been a long time since we had been working together , meybe 8 years ago or so , but we still get together and go drinking around twice a year . By the way , a Japanese actress whoes husband is American said , even if he is in a bad mood , once he eats pizza he changes to a good mood . I 'm glad to have joined this community , because I want to communicate with people living in other countories and to learn about their culture . Even if I had a bunch of oppotunities to listen to English , I had n't realized them . They were very beautiful and looked like big frowers . Finally , Tegomass whichi is a Japanese idol unit appeared on the stage . I was so crumsy , was n't I ? But thire power was great ! Even though I hav n't watched this match , I am pround of the whole United team . Shirakawa - Go is one of Janan 's World Heritage Sites . This paper presents an approach to support top - k flexible queries using Knowledage discovery in large data bases . The new portable game machine Nintendo 3DS was released on February 26 in Japan for the first time in 7 yaers . I 'm curuous about how many people will buy it . Pssive : Fruits are going to be eatten by me right now . . I look like I just had my hair parmed . I made a lot of foregin friends and learned a lot . I ordered a new iPod touch from Amanzon on September 2nd . My friend told me about this website . When I joined in , I found that it 's very intresting ! I 'll write something to describ my life , and learn English with you . Seeting Arrangement I confess that I have worried a little whether I can graduate or not , sinse I submited a master 's thesis . I am going to intoroduce something I have learned , because it might help you if you live in Japan . It is the etiqutte of seeting arrangement . In Japan , higher - ranking people should have seets which are in the inner part of the room . Thus if you invite your customers and clients to your office , or if you entertain your guests at a restaurant , you should give them the seets in the inner part of the room . And you should sit down at a seet near to the door . Conversely , when you are invited as a guest , you will be offered a seet in the inner part of the room . I 'm sure he was very anoying when Rowling sold millions of books . For example , Whriting a blog becomes rpresentatives of morden life . Also , I write various kinds of blogs . It seemed he understood how difficult it is to manster a foreign langage . When he was a little , his parents encourag him to do everything which could do himself and treated him as a normal person . The minimum tempereture in Tokyo was about 0C . I like some American colture . I often practicing dancing with my mirrow . However , I can dance freely at nightclubs . Hellow everyone ! Her neigbours ofen helped her . But I dont know what should I do , erveytime I look at a long English article , That morning , we got up really eary and drove all the way to a distant aquarium . It was good to see the orca , however , I had litte time to watch the other fish inside of the aquarium . It took me several years to streathen my perseverance . I often change my mind easilly and fail to get through some difficulties in my life . My friends once said to me , `` You are n't matuer amply ( enough ? ) . My writting English is better than my spoken English . and encorage each other . I will stay in Colombo for about helf a year . But there was no coloer that I wanted . Her clear explantions were good . She even included a picture of an anvil , which looked weird and untique in my eyes , especially because it looked like a horn . Well , I 'm likely to faint with fatique , because I did n't rest enough . As a matter of fact , I spent about two to three hours talking to my friends on Skipe and serfing the internet , so I did n't have enough sleep . It coudl n't be helped . The least I can say is , I did n't waste my time thiniking about the things I could never change . My job is as a privart tutor for a student . I have recognized what I really do n't like about coold wheather . Every morning wokeing up is so hard . I am sleepy . . . and outside also is coold . It makes my activition smaller and smaller . Idom of the day : ) Whenever I go home at night , I would stay overnight at Naijing and take the next avaiable bus , in morning . It was so difficult for me while I watched this mivie . I nvever thought that I would have to face that thing at this moment It 's nvever a problem for me and I always know what I want . What should I do ? Shopig Mall Glee is about high school life and musical darama : ) `` Soybean fliur `` is called `` kinako `` in Japanese . Today my choise was Mary . One sentense , or one word , I 'll be happy . I start writting this diary today . Today , I 'm very angry besause students at my university break the traffic rules . There is a large road near my school , we must n't cross the road near the school because it is heavy traffic and it 's dengerous . I like travering ! ! ! ! I wish I can get to know about lots of eresting things here . Hopefuly twice a week . so I became a nember of a gym which is very famous here in Toronto last night . I 've just watched a sad episod of a korean drama series so I feel very sad now . It helps me to learn a lot of information and knowleages about computer and software devices . I know the Linux0 . 01 architecture and how to impletement and compile it on my computer . But if I did n't go searching any opportunity to meet such people , I could only see my collegue . Most of their minds are limitted . I 've felt so lazy ever since I moved from Seattle downo to San Diego . I ca n't even count hou meny times I get angry at them from the moment they wake up until they go to nursery . I think I have the ability ( or potencial , which is better ) to study and enjoy tourism or hospitality . Give me a chance , I can prove my strength . I spent an hour everyday , momerizing new words . I worked hard indepently everyday . I usually went to the library to momerize new English words . So he decieded to try again . I sometimes have difficulty reading an article or paperback , which is wrriten in English , more than usual although I do n't know why . The manager must speak , read and write Engish in a high level of proficiency utilizing technical terminology . I 'm not authorized to make a dicision from my company but required to make a dicision for my client . Today I registed a Lang - 8 account . Nowadays , mobilephone phones are rapidly becoming common all over the world - even elementary school students have one . I had work untill 12 : 00pm last night and right now it 's 8 : 00am , the morning again . I work for a Japanese restaurant as a waitless remove the vacteria on the surface of your body makes you weak . For example , he never eats at fast foods and he recomend And he recomend for me to friend wnet to interview in at the university . Curry is hot , nan is a little sweet There was a mirrow on the wall in the Cafe house . When I reliazed that , I could n't stop laughing ! Youtube conetents is good for listening practice . Afterward , almost all of my colleagues went drinking aggain . However I do n't know if I will be able to do it this year becouse of my busy life . Oh my God ; It cost 80 thoundsand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price ; just 10 thoundsand Vietnam Dong . I have been living in Melbourne for 1 year , I feel my English skill is better than before , but I sometimes get disponted with myself because when I listen to news on the radia or watch TV , Recentlly , I have been studying for the TOEFL Test to study abroad next year . Because it is so different from Japanese grammar , and there are sentences which contain difficult words for me , for instence , `` anatomically `` , `` Confederate `` , and so on . Nothing is diffcult if you put your heart into it . So I believe I can be a good doctor in the furture . I 'm sorry I posted a new jornal . It 's great cuase you can go there just to kill some time and end up staying there overnight . This week is bery hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAMI STREET podcast on my ipod in English . Koreans are usded to having an English name for easier communication with foreigners . The closest prononciation Becuase there are duties to do everyday . Besides , I am a little uneffiecient so I cant do those quickly . In my city electrisity supply has just recovered . With angel faces and perfect body proportions ( tiny face with long legs ) , they seemd to walk out from the pages of a fasion magazine such as GQ or ELLE . I remenber some reserchers said looking at beautiful women can make men live longer because they can ease men 's blood pressure and make them happier . I 'm so interested in other countries and culturel exchange interchange with many peple . I guss my English is wrong . I realy feel that I have to study harder One youger member asked me a question . I also have some appointments to have meals with my friends and colleagues this Demember . my reasons to stady english so I have to aquire English to work well . My plan to study english is to write english compositions and to watch the DVD `` Friends `` , which I heard is an intresting comedy in English , every day . I heard there is a good Gyoza restrant near my house . Lately , if customers do n't exchange their cell phone , thay can not switch to the low - cost - plan . The other day , I went shopping , I spluged on clothes . down the darin . You had better think more before you pick someting up . But I ca n't go beause of heavy rain . . . I have been studying Chinese for six yesrs . Midd - autumn festival According to the law , every Chinese can get rid of their business ( stop bussiness ) to celebrite and enjoy themselves . So , in spite of ( despite ) the high fee , we are glad to celebrite it . Help me pease . By the way , I started exercizing with a jump rope today . Today I went to an At & t store and had someone put the screnn protector on my cell phone . I went for a rounf of golf early Friday morning . I 'm a biginer at golf . This place is usually for taking shower and has souna . If you come to Korea , it will be a good expirence to go there . The new one is always better for a visiter . So now you can make sence why people go there to sleep . It is like a domitary room without bed , just small mattresses One for taking shower and others are for souna and entertainment Some store have many programs during the day such as yoga lesson , dacing lesson , etc . Koreans have a tipicall way of taking shower . and he lives as proffessional composer . Reading a philosophy cyclopedhia Tomorro I 'll write more than this ; well I think so . See you later guys . I ate a chiken curry . I did nothing but drink alcohl . I want to communicat with a lot of people . I sutdeid English tonight . I started reading the book , Wnnie - the - Pooh , which I received from my best friend Yang - gaeng . The writer explained why his name is Winne - the - pooh . Because I am a begginer at English . The writer encoureged Piglet . In spring every year , Japanese hold partirs in which they welcome freshmen . A few days ago , a drunk celebrity was arrested on chage of indecent exposure , but many people signed a petition against this . I should say `` arigato `` to him . It is my first time to use this bolg system . Probably most of you hav n't ever heard about Miaoli before , since it 's not as civilized as Taipei or Kaohsiung , but it drew people 's attention by holding Taiwan Lantern Festival this year . But it really was a great festival . You can see my picutres . I beleive that there are many pictures of the Taiwan Lantern Festival . If I want to use those three drives in the new one then they must be all connected by a ribbon cable to the mainborad of the new one . From the last day of April to the bigining of May , many people have had a long vacation which is called Golden week in Japan . during the mid exam priod , I did n't have enough sleep . there were two guys who have big musle . when I finished it , I could n't lanugh about myself ^ ^ I appriciate thier help and advices . I also have a lot of apppetite lately . I 'm focusing on studying English now , so I do n't exercize enough every day . Kiyomiya , a very famous director of a Japanese prfessoinal rugby team . As well as me , my boss is also lookinng forward to meeting ' lang - 8 ' staffs because we use and like it a lot ! There are differense kinds of ' Mikan ' . She answered it is caiied `` mandarin orange `` in English . I will have to take this exam tomorrow becaouse the exam needs two days . I ` m the socond one , today . I showed a taxi driver the acctual adress of my hotel but he did n't know the place . I dicided to ask the taxi driver to take me to a place close to the adress and get out of the taxi near the hotel . I lost my way and walked for one hour with big baggages . ni - men - hao ! ! ( Hi volks ! ) Yesteday , I wrote the sentence which I wanted to have corrected . I 'd like to use this valuable oppotunity to improve my English ability through communication with people who use this site . Though I read my text book , I ca n't juage if my pronunciation is right . treatment due to their wealth and celebrty status . pernabebtly though he later said he did so willingly . They say that while ican African children from their extended familyis , Do you have a favorite ? My brother , his family , my sisiter , Me and my husband my husband , and I gathered there . If there are any disadvantages , it is that I have to get up ealry to go to swim . Especiall how he used a trick get bear sick . Ichiro has set a record of 200 hits for 10 straght years . When you bite into on , it will dawn on you that the yellow part of the egg is solid and the white part is riquid . I went to check for the time when a ship would depart [ back ] to Puert Galera . S through the lauguage course that the university I 'm studying at offers . Hellow . Especialy . He is shy , so I thougt he would hate me . ( = this means grandmoter ) `` , and he wanted to hug her . The memo 's contents are life , dialy , work and so on . I want to study Engilish more so I can talk to foreigners . I have to be carefull to avoid getting influenza . Today is Chritms Eve ! I hope I can learn more Endlish and share my life . Today , I went to fishing traout in Tihayaakasakamura . I have to grade 3 types of placement tests for new foreign empoyees to work at Japanese companies . Oh , I dont n't have time now . There are many dishes and many thinds such as choppsticks and so on . I think there sre too many dishes and we should get rid of some . I was very unconfortable . Thanks to them , I could re - charge , and I think I can manage my German vocablary test and report . my mom has a strange charactristic , she is always on the ignition to me , mabey beacuse of her busy work , she is always unhappy I do n't know how to communicate with her ! Today 's menu is Kimuchi fried rice . Have you ever eaten Kimuchi fried rice ? I 'm a unversity student in Japan . I 'm interested in this matterial because some CNTs behave as semiconducters , while other CNTs behave as metals regardless of the fact that both of them are made of the same carbon . When we are able to make some deviceS from CNTs , we will be releaved from this problem . If I feel that if there is something wrong I countinue to think and not act . The Docter said `` you may have gout `` When I first saw this cartoon was five years ago , my foreigner techer showed it to us , but at that time I did n't know the meaning about that beacuse it had no translation . One of my friends is going back her own country at the end of Octorver . I 'm looking forwerd to meet a lot of foreign friends . I was too tierd to do a lot . My ferverted appetite may be beacause of frustrations rather than longing for food . I will introduce you to an interesting article in the moring paper . Teachers are Fillipinos or Fillipinas . The reason is because of it 's aninexpensive expense . charcter and characteristic Before that , I had been working at the front line of research and develoment . thai is exciting to me , I have followed all the news on TV recently about the disater that occured in Japan , it 's too terible and unbievable , not only the impacts on economics as a whole , the disater also impacts the mental state of its people . Solted grilled fish and fish hunberger steak . ( Spelling ) But it began raining a alot at night . I think it 's better to make Honey excercise earlier . Sorry I was not keeping my dialy I want to improve my English level with nice people 's help , besides studying by meself . I made a big coaster and a small pompon with beautiful colored felts . Can and ca n't issue - could someone familier to American English help me ? Distinguishing between them is really important , because the meaning is opposit . An Bulitish person once told me that they pronounce `` ca n't `` like , `` kaant `` , while they pronounce `` can `` like , `` kan `` . Could someone who is familier to American English help me ? This term , there is a new English teacher . He is very handsome , humourous and full of personality . In his class , we are relaxable and laugh all the time . We hope we can improve our oral English . In the futher , we will be able to talk with foreigners easily . I 'm sure it is n't a dream or a hope ; it will be ture . Learning langages is learning a new way of thinking . Both Langages for computers and languages for humans broaden my world . But when seeing it from another point of view , I was surprised that so many trains run punctually and many people rely on the railway system so much that they get angry because of a slite irregularity . I learned many new words from the subtitles and I practiced my lintening as well . To write something in English is diffcult for me . Please give me your knowledge of Englishu . And , I will go aboroad . I am watachiing TV ' PONYO ' , ( which was ) created by Miyazaki Hayao . I like thier singing ! I really love thier sound ! ! Imagen what I am trying to express . I also spent a lot of time in the green areas / green parts of London , my favorite park beeing Regent 's Park ! One of my only bad memories is an incident in Camden Market where two irakians became pissed off when I did n't want to buy what they were selling and one of them even threatened to beat me [ up ] ! Today I finnally got to relax , because my niece was not home . Gennerally , my elder female cousin offen askde me to give guidance Usually , I treat it as intreasting , but sometimes I also felt a lottle tired . But there is one problem , whitch is that we ca n't borrow them . It 's silent in the office , our boss is travlling ~ We have nothing to do , so I stard to daydream . After lunch we strolled along a small streeat . ( acually I do n't remember exxactly , but it means nearly brilliant ) I am worring . . . But I could not go to an amusement pakr because of the rain . I became a menber of `` Lang - 8 `` today . He studies athretic training in the U . S . A movie called `` Alice in Wonderland `` was shoen today . It stuks that it 's way to hot ! ! It is holiddays season in Korea . I 'd liket to make many The man was eating Poteto cheps . It was very noisy : ( However , traffic accidents caused by bycicles have increased . So the Road Safty Association proposed a conclusion of the bill related to bycicle 's road . They are in the traning department in a Tully 's coffee Japan . It 's been a while since I wrote my jounal . I was busy and I acutually forgot about Lang - 8 . I became their fan when I heard `` American Ideot `` . I discovered this web site accidentlly . This is the frase of Owl City 's `` fireflies `` song . I have to go to the immiguration office to solve this mess . I went to LOUND - 1 last Sunday with my friend : - ) We ate misokatu . The travel was so good for me , becouse it changed my sense of values . But if they study the language , it will be possible to express theirself . My daughter 's gramma set up dolls for the day . My family and friends in Japan were ok but we ca n't really feel at ease . American Yahoo accont I strongly recommed you to make one too . I was suprised by that guy at first . No , I 'm kidding , but it is true that many people here have fine mustuches , and now I have a mustache too . I hope that either she will change her mind or my razor will suddely start working again . I take lessons evryday . She was really friendly and kind from the beggining , so it did n't take so long to get closer . I go to univercity near Nagoya city , Aichi prefecture . I have been here for 2 months since I 've been admitted to this univercity . I 've not been doning it , but I was interested in it . recentry , _ we have been getting interested in `` eco `` . These are said to be `` eco - friendry `` . But , _ I think these are just more friendry than what they used to be . I think what we should do from the biggining is hold back and use what we already have with caution , _ not buy new things . Notthing at all . If I feel hungry , I will go somewhere arond here to find something to eat . Whoever is asleep , sleep tight . Whoever is eating , eat something delicouse . Whoever is daydreaming , have a good dream . . I - cried - out - in - spite - of - myself - `` unbeliebable `` ! My father is the director of a semicondouctor company . I 'm sure I will become a susccessful student at junior high school after graduation . the deatails and he agreed to hire me . Before I started working there , he sent me a message and said he did n't want people in April , he would let me know again in May . Today he sent me a message and said he already has someoen to help , and if I am interested he will be hiring again next month . While I was waiting to start work I practiced using Phoshop a lot . Before I had planned to learn Photoshop for a long time but I did n't have time to learn it . Noy , who is going to continue her bisiness again . . The reason is that a caregiver 's salary is lower than other jobs dispite the hard [ ] work . And customs are a little defference in Japan and the Philippines . I think the Japanese goverment should always support them . It must be that something happened because two polic cars passed . The public security in Japan is good , but crime is ererywhere . noticed the adress data was missing . the & nbsp ; adress again . It will be the eclipse that lasst the longest time in the 2000 years . I think that English conversataion schools should charge I was happy to hear the phrase `` you name it `` on the radio . On the FromAmerican Forces Network in Tokyo . But My callphone was n't ring at all . Other contestants ricited formal speeches , for example some presidents ' speeches . I thought my recitaition was out of place but one of the professors said it was good because everyone knows the story . They will explian to them about their medical treatment proceess with a kind smile . But I can go to the rever . When I was a student at university , I crimbed it two times . First , it was rainy and I could n't crimb it on the top . When I crimbed it at midnight so I could see the morning sun , Maybe they will offer me some help for my hard study and maybe I will show them around and bring them to some excitting places in return . I taked to two Filipino women with Skype I taked with two Filipino women with Skype tonight . I have done soccer , swimming , volleyball , running , and dogeball . That day is a special memorly for us . it opend in octber in japan . She is a very butiful Spanish woman . I have glasses and cotact lenses I do not believe in mysticism , but maybe my team has a bad carma ? I 'd like to know that if people use this phrase in their conversetions ? I 'm excited , but I feel a little aneasy . Every morning , I get up at the same time , eat vreakfast and go to school . I wnat to meet crious people from other countries . A woman taught the vialin at elementary school . At last , they played at Camegie Hall . Someone I know from New Zealand always sais `` Retarded ! `` . She sais that to me and she sais that to anyone or anything . I think we have no right to say what is good or what is bad , every character has its beautiful sides , differences make this world colorful . Kawaii means cute , but I think kawaii contains other or defferent meanings , and it is unique notion in Japan . So I guessed that the person who holds ( or held ) that party must have conceidered to appeal it world wide when he named the event . Following the Oxford English dictionaly , cute has three meanings : who is little blaind . Learning by myself is agressive . Before that , I doubt that this passege is readable ! ( + _ + ) I went to two University festivals in Tokyo , a musium and a movie alone . It displaied the History of Letters and stamps . He wants to be the wonderful parent , the great couple , the successful business man , the great player and the inteligent doctor . Even on the other side of successful career , for exapmple beeing a hippy . I could not move my arm the same as before even after the lihabilitation . In Japan , most high highschool students wear loafers when they go to school . I feel confortable ; ) This is my secound time to writing a diary . And we must live it so as to feel no torturing regrets for wasted years . Never know the burning shame of a mean and petty past . Live so that in dying we might say : all my life , all my strength was given to the finest cause in all the world - the fight for the Liberation of Humankind . `` l hope everyone can read it in their free time , l belive you will like it . I hope my friends `` will `` make `` evrythings `` all right . I 've recentry begun to like jazz . Maybe because I 'm a biginer . . . We walked for 2 hores Hyperthermia currently is a sereous problem in Japan . Be confident and perseverant ! I love this style , I just want to see something while I ride my bycycle . I can go manywhere I want . This is the time when junior high school students take the entrance exams to get into a pubric high school . I could n't find any empty seats so next time Iwill come in the class earily . and I have many friends in the domitory and classes this semester . I am fed up with arguing about probleams . It is the first time I have gont to the Mexican restaurant . Sometimes , I dream of speaking English enfluently . I am afraid to be an audlt . or I am afraid of being an audlt . Hellow , everyone ! Today , I made a gratin for suppur . The produce is very freash . Tometo , cucumbers , eggplant , poteto , pumpkins , cabbage , I am happy to find a site like this in which I can study foreigh languages . The world ecomomy is in a serious depression , paticularly in America . The lake was glowing and shimmiering . I went to the Yahoo Dome last Satuday . Autumn has come , they appear in tha trres . The graduation ceremony of our universty takes place on 17 March . We go ther and see off students who graduated this year . A Japanese girl who is 18 years old and can speak English well came to the inn yeasterday . What a little devil , she does n't have enough experience about anything , but only your sex experience is moer than ordinary , is it ? It has a soy souce flavor that 's a little sweet as well . Because we have commen topics and talked very well before . I said I will get off soom . And we compared the phiosophy of love between Japanese and Korean people . I 'm not goot at electronic staffs . . . so now I 'm fighting ( struggling ) with them . With all other universities that are public of my country , whe are protesting for a better education , that is equal for all . but the guberment of my country , does n't like this ; they allow good qualty eduacation for only a group of selected of person . Also when whe try to protest , they put the police in the street , with the order to arrest for no reason , with the utilization of excessive force . My major ploblem in studying The cartoon 's title is `` to run , Honie ! `` I wish that all that is happening in the world will sometimes be solved by children 's thinkig which is naive and simplistic . . I staied in this house for 2 years . Against my expection , I 'm having an enjoyable time here . It means the renion of families . unfamilar with this young festival . People who own privite cars are encouraged to choose bicycles or Spring is a nice season for cycling , so I want to do it again and discover iteresting things ! I had two cooking classes , in one I beked a pound cake of mugwort and in another I cooked some beer fritters . My dormates are still in their beds . bbish it 's rabbish , is n't it ? Hallo . I could pass it sefely . Wrong spelling ^ ^ Hello , friends . . studying aother languages seems difficulte if you do n't hve the will power to do it . As for me I plan to do it with a iron will . I like to study other languge . I am so nervous that I ca n't speak Englsih well , even I ca n't speak Japanese very well . However , I feek so isolated that I ca n't open my heart nor relax myself . and it sturucked the mainland of Japan : ( But yesterday afternoon , my classmates called me , saying that if I go swimming with them , then I would feel cool in such hot wheather . Although I was in bad mood , I still accpeted the invatation . The air was filled with noises . It seemed that there were so many boiling dumplimings . However , we still had a great time there though it was too crowded . We palyed the swimming ball , had a competition of 50 meters speed swimming and had other games . I can also play the gaitar . She was afraid of the dark , insects , tthe color black ( she belived that if she watched for a long enough time somthing colored black , a monster from the Black Kindom would come forth ) , touch a scary picture ( she thought that if she touched it , it might attack her ) , snake , knives ( she thought the knives might want to cut her ) and many other stupud things . All her pocket money she spent on clother , knives , parties , and alcohol . They belive that any day Amy would come back . Now Amy lives with her mum and dauther . Her deather Lisa is 4 . Yesterday I went a bar with my friends and drank alcohol to unwind , and there , I plaied Genga for the first time in my life and it was so exciting ! ! I heard ( that ) it was fun , but I did n't know how hard to concentrate to get rid of a piece from the colum . And why we are given our own concious . The bottomline is that something commands our superior to tell us to do something , and then something mkes us feel against . Actually , I was suppused to go to my lab and introduce our lab work to interested students . I spent too much monry this week . Do you like the time when you know that if you want to go to other country , you wo n't need to go to somewhere to get a visa , you will just press your robit 's hands and it wil bring you go to anywhere that you want . Exotix Zest I watched `` Heroes `` tonaight . I am glad to have everyone to help me to improve my langauges . Also , I want to get some techniques to improve my languges . Everybody has stories to tell and I can also say taht story - telling is a part of our lives . A little while ago , I wathed a TV programme that introduced pancakes in Hawaii . Raising kids / children is very hard , especailly two children . I ca n't imagin what kind of mom I would be . It is vey sad that tomorrow is Monday . It raind hard . Today I almost overslept becouse my alarm clock did n't ring . It was a good day becouse I did it all with my girlfriend . Oh , I have a feeling no one ges them to her . So I try to look carefully around the holl and at costomer . so I could n't concentrate on the costomer . I had to go to Google Japan inc . , on bussiness . Today I 'm going to Gumi for a business tirp . I read from a news articles that the average population age is the yougerst of the cities of Korea . I do n't know if it 's dangerours or not . With work , I 'm chosing a fatastic relationship . . Lul : My Vietname colleague asked me to go to a karaoke shop and I went to karaoke . There were many people who sung songs in Vietname . Most of the songs were Vietname . It was a good way to experience Vietnames life . Recentry , cities have been very lively . I was cheered up by the beautihul display of lights . I 've just organized a Free Japanese conversation club around Tokyo for forigners . I want to gather forigners who live in Tokyo . So , I need to write a jornal about this , and paste ather web site or make some fliers as notices . Well , I wrote the jornal right now . < The jornal > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Free Japanese Cnversation Club @ Tokyo . This is for forigners that live around Tokyo and want to study Japanese or make Japanese friends ! Gethring and talking using Japanese . ( No Japanese skills required . so the only myclass I attended was `` gender and modern society `` . There are some mixed bathings in the countryside of Japan . Sometimes I do n't go to class , and then afer class I do not catch up on work . My husband had a cold latery , so I must have caught it . . . Recent , I wrote on lang - 8 , but lang - 8 did n't recived . She has a long hair and coffe - brown eyes ^ ^ . I 'm pround of her . She is a student at an university . Her university is a dream of many people in my country because It gathered excellent sudents . That resoult worries me ! I was very worried , because the test resoult is level 1 . The basical rule is that you try to beat your opponents by throwing your cards away . People have been making laws since ancient times . If there were n't laws , many people would kill each other and we could n't keep managing our society . . Laws berely restrict our instincts . Nobody would deny my opinion , because all people have emotions , such as hatred , grude or jealousy , against someone . Light was gradually desappointed in laws and police agencies . From then on , Light called himeslf `` God of the New World `` and started cleaning up the world . My husband and I had been concerned about the poor visibiity of the front part of our car which we just got last month . The sauce was made from soi sauce , garlic and honey . Though everyone looked tired , we enjoyed climbeing . But I could n't enjoy the beatuful view from the mountain because of a dense fog . Today , I decided to go downtown and join a weekly free talking ( conversation ? ) club organized by a lanugage institute . Yet , unfortunately , they said today there was nothing scheduled becuase it is a term - break period during a public school vacation . I 've never booked an ecounter ( the lesson with the teacher ) at a time without `` war `` . The girl from the Cultral Bliss club gave me three Mexican rolls ( sorry , I do n't know its name ) today , saying it would be the most delicious food I 've ever had . As a responsibility of his job , Barry has to search for the statistical data of average revenue in spcific occupations . In Japan , ordinary people who have public health insureance pay only 30 % of the total cost . In my class , teachere said ; My hasbund and I went to the hot springs last weekend . and of course I have to answere them in english . if you found any mistakes or kinda correct but awkword expressions , please correct them . I 'm going to go to the restaurant called `` sitamati no Sora `` ( it means `` downtown sky . `` ) I hope to do n't commit errors othrwise I will receive ( ? ) your corrections . Melody is the the little girl 's name , and the soundtract of this movie was produced by the band `` bee gees `` , whose music is relaxing and comfortable . I will go to the Youtube website and almost all I watch is coverd songs . I hope , therefore , you will correct my diary , and please be friends with me if yor do n't mind . Sometimes I just want to talk to her and listen her voise , but I do n't know what to say . Read a dectionary ? When I came back from the depatment store , I tried to find one on the internet , but I ca n't find one yet . It 's a celemony for young people who become 20 years old . And also , I want to ask everyone : do you have a such a celemony in your country ? I starto to learn english today in lang - 8 . If you are a vative English speaker , you can join us to tell us how to study English . Soon I will study Chinese or Japanese at Univercity , but I do n't know exactly what else . . . I 'm not sure how I can make the sentense if I want to talk about this topic . Are these sentense correct to say ? A lot of mosquitoes come into my house every summer , so I have to take my anti - antimosquito device out of the closet . I woul like to know the difference between Andrea LeBlanc 's life compleately changed after 9 . 11 in 2001 . He had been teaching cultural geography at the University for 35 years untill he retired . Dad just said the same thing . yeaterday . `` I chage my instructors a month ago and I am not use to the styles of the current instructor . You can barbecue ( or grill ) whatever you like , such as sliced beef and vegitables . Usually people go to Yakiniku restaurants for dinner with their families , freiends , colllegues and so on . So when I get enough skill , I can teach anywhere in the worls ! ! Since my senior delivered a really good extemporaneous speech that dealt with disguise in food and whislebrower , I thougt that he would be the the best speeker at extemporaneous speech , but , to my surprise , two out of three judges gave him third prize . The reason they gave him the third prize was that he delivered the extemporaneous speech so well that judges thought that he prepared the topic and luckily picked a good theme ( In extemporaneous speech , speekers are given a theme . ) randomly , so the two judges lowered his score in order to be fair to other speekers . League , so it is the contest that determins the best speeker in E . S . S . We are very gladful to the international assistance . I live in western Japan and have been very worrrying about the region . I have been thinking about what I can do to help them by watching TV programs about volunteer programs . how to keep a arelationshiop I am strugling with a long distance relationship . Tv influencial people 's behavior . I think there are many positive influences that come from wathching Tv , but when I see the word influenced I come up with negative things all the time ; it 's too bad , and maybe I should be forced to write about problems . Today , I 'm happy because this is my first Engish journal entry . Actually , I do n't khow what to write . I will go carzy . My boyfriend and I planned having a date on that day , but we could n't because of his grandfather 's oparation . To be honest , I am disapointed our date was cancelled . However he sent me an email and promised to cellebrate it next time . Somehow , I foud myself tired of this boring life that I am living now . I am learnning both English and Japanese , but they are not as easy as I thought . I took a deep breath and said to myself , `` There are things that need to be changded `` . I was in eastern Europea , Budapest and Prague , their beer was much cheaper than in Norway , where I live now , so there was no reason to stop drinking beer for the whole 2 weeks . We have met befor , Annette : I really really wated it , but I could n't find the store . It was hilorius ! ! I could n't beathe well ! So , I can baite him from the tail , better than eating him from his head . We were really busy in preparing , and we just could n't stop practing ! What a funny scense ! My teacer gave me this chance because she knew that I want to major in English in college . The compositipn titled `` A Field Trip . `` I wrote somthing interesting and what I learned from my graduation trip . I wish that every senior will have a beatiful furture ! At first , I was happy that I do n't have to do house work , but now I feel bad for my sisters who are jealouse ! In the new year I hope that I can get a great TOEFL grade , and I hope that all my family and friends will be happy all hte time . I went to KARAOKE yesterday because the Freshmen party was held by the one of the fhreshmans in the university which I will go to . Also , the affect of the earthquake still contines . I felt guite curious , then took it off and decided She has read innumerable books and we ofen discuss the content of some of those we are both intrested in . She prepared for the examnations last whole year because she planned to study further in the USA . I was actually hoping to eat at this restrant . So I was very excited and it made a deep impression on me when I ate Thai thaifood . I almost lost my life , but I at last defeated the difficlt and caught my life again . So I hope everone can have a happy life , I desire happiness and health . I desire to improve my English , and can speak infulent English to talk with my friends . In the 20th century , our right of existence was acceptted . In the 21st century , our right of non - existence will be acceptted . I will vist the US next year so I need to know more about US culture . It 's defference from Japanese culture . It is absoltely rubbish , but can you guess why I wrote like that ? The Korean woman who served him in the small restaurant was probably suprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . BTW , I ` d like to recommend chili papper Kimbap if you like spicy food . So I want to pratice writing first here . . . He told me that the Spa is becoming popular in the Filipin . We think it is enough to have rice balls even if without side dishes for luch or dinner . First of all , boil soy beens . My new work place is situated on the outskerts of Seoul , surrounded by the greens . remainds me of the forests in New Zealand that I 've visited 10 years ago . Today , I joined the language learning current of lang - 8 . I am very excided ! ! It will make me vigroous . The collor around me was changed from the moment , he said we have to , divorce , from a pastel color to a dark one . I will go to the library with my friends after finifhing my classes . so some messages are from Erope , Thailand , and Argentina ( which , bty , is located on the opposite side of the earth ! ! ) . . . I dont n't hate it . Can you read what is wirtten in the photo ? But I ca n't take consective days off . It was forrible ! ! ( Reading picture books for the studens in my son 's elementary school , and English books for mothers and children at the City library . ) And today , the seasonal ones ( work ? ) have started . Last Friday , my son cought a cold . Becouse I changed jobs this month , I ca n't take a paid holiday . It 's a greate place , but not a very good time . because it 's first time to wirte my diary in English ! ! But I 'm a little bit worried about my Enlish . Congration ! To tell you the truth , I still dont wana go back my country , Japan . But unfortunatully , its a time to go back and , it 's time to speak about what I 've done in the U . To bigin , with I really appriciate having been given an oppotunity to study at St Norbert College as a ESL student . For almost seven months , I ve studied English at St Novert College . For almost seven months , I 've cosidered that , I am talking to people who have totally different backgrounds from me . Since coming back to Korea for the holidays , I have been hanging aroud with friends . I wore a sisiter 's costume . It was popular with mothers , but littel kids do n't know who the sisiter is . Some students thought I was dressed as a ghoust and felt like crying . There are 2 more months untill this year is finished . I have a problem at nigth ! July 2 - 5 I had my gueat . A beautiful girk from Malaisyan and her parents . We went on the open briges at night , and saw Night City , but my guest was very tired and slept the whole way . ) ) ) Trouth 3 days we all understood each other . Sopaholic ( I think ) series by Sophie Kinsella and Dean Kooontz 's books etc . What I wanted to write in today 's entry was that I need to reviw my posted enties and check my weakness in my English one more time . `` Whenever I call your name , I feel my tongue rolling smothly . plese help me with my language and problem . becaues I was very sleepy . Japan 's climate is probably subtrpical . I loved her so much but I ca n't meet her in a reall time anymore . I was surprised at the safty of New York . Before I went to NYC , I thougt it was dangerous to use the subway at midnight in NYC . But there are many imigrants in NYC , naturally . I feel NYC is one of the most adrable places in the world . I konwed that my blood type is O after I checked , and I heared that it is better to donate 200ml the first time . Studying languages has always been a topic amomg people . In short , a brighter future is waiting for us if we make good use of the studing in our school . one little girl passed on the road by the beautiful buterfly , the girl looked at the buterfly . and the girl said : `` the buterfly is so beautiful `` I went there to attend an english coversation lesson today . Althougt I filed a complait to him , I did n't feel good . When I feel stressed I like to take a long bath or watch a moive . I prefer comedy moives to action moives . It is fun to watch if there are unkwon actors in the movie . I heard Michael Jackson say `` I love you more ! `` in a vidio . I wonder what it means exectly . . . Second , I jogged 5 miles this morning and practiced golf in the driving range for 3 hours . I wanna be a translater . A well - known hynotiser was invited on the show . He hynotised some audiences by giving orders while they were somewhere between conciousness and unconciousness . If we are saying some negative things about ourselves , we are hynotising ourselves in negative ways . Because we were there from openning time to closing time , my legs were starting to hurt . That night , we had a lot of fun tallking . We had a relly good time , though we were tired . Because her birthday is soon , we gave her a dinner chicket that night . I would understand it if I excercise that day . But I have n't got any exercise recently and I do n't do hard warking either ! So it 's a mystery for me to be always sleepy recently ! When Isoak in the bethtub , I sleep there for 30 minutes . ( As the image sugest , I will need a lot of strength heh heh ) And do you have another story about enterig a university ? Secend , I think nothing is more urgant than learning vocabulary and the fundamentals of grammar , even though the speaking and the listening are also important . I am confued . My weakness is if I make a dicision on something After thinking a long time , l finally make a dicision . It seems like the inside exposure 's damage can be lowered by taking iodine as it halps the body excretes harmful chemicals . But please do n't take this too seriouse . I wrote my last dialy about 5 months ago . Althougth I 'm very tired to have walked so long , it 's healthy ( for me ) . Some of the important elocutions are simplified or left out , so I ( often see ) came to see that the subtitles are n't ( always ) consistent with what the movies really want to say . I wanna see a lot of gellery and musium . I have loved a boy friend until recentry . This is anbarance ! But I sill want to visit Australia again . Maby I will go to Sydney next time . At first , I checked my emaiis and then began my work . Of course , we wouldfeel the sense of alieanaiton when we see foreigners at airports or other countries or our towns . Would you imagine if your country is a samall island and if English is spoken in only your country , it would be a big disadvantage for you guys . But foreingers have been speaking English since they were little as a public ( international ? ) language . But of course they only spoke English while we were drinking , I counld not join the conversation . and may be Eastern contries . I hate the weather in Fuzhou , because it varies so much ! Yeterday it was so hot like summer , but today it 's back to cold ! It 's midnight and there are a lot of mosquitoes llying around me ! = = | | | Does this sentence make sence ? Our center dining room is in the center and it is the most popular canteen in our college , however it has both advantages and disadvantages . The cheaper price and the better qulity are the characteristics of our center canteen . I like Sichuan food best , not because it is has a havy taste , b ut because it has a special smell . Meanwhile , all kinds of food in the center centeen are cheaper than the market . Moreover , we can only have a limited varitety of dishes with little change every year , which makes eating here very boring . I like Onsen very much bacause I can relax . After soaking in the bath , I will eat delicious japanese food , like templa or sashimi . It tooks about 1 . 5 hours to get to Misato Onsen by car . Starbacks down the Princes Rd . On top of that , the casle seems away from you . I do realize this is not a good attitude of mind , but I have noticed that if I look at the worst side of matters , I can only receive positive surprises . The oposite of this happpens when I look at the sunny sides of a situation . I knew him at the literuture class in college . I 'll go to Sydny at the end of this year . I love fireworks so I 'm looking forword to this . Unfortunately , the test system broked down for about five hours . Yesterday , it was raining so I enjoyed watching ( the movie ) `` chatiots of Fire `` at home . I went to Ameriga two weeks ago . I gess 4 years have passed rather quickly . Finally he was able to do it , but of couse his bicycle had training wheels ! So I will study English a lot and as soom as possible ! As far as I can understand , your university is great institution that provides a stellar enviroment for furthering my education . Also I can drive a car very well , can work on the construction site becouse I studied in the construction university and now I work in the construction site , there I am a foremaster . Today , I went skatebording in a park . The team seems to be the best although they did n't participate in any test sesseion during the winter sessions . Second , we can use the enternet with mobile phones . The only drawback is the lenth of the episodes . Now imagine we put a flea in a container , so that it can jum out of the container . That ` s why we sometimes feel that there are many limiting situations in our lives , it can be emanating from our mental limitaion : `` I ca n't do it , it 's very hard for me `` , or : `` I think my family won ` t accept it `` , or `` Is it possible ? I finshed the test last Friday . I like sutudying about other language becaouse I can meet a lot of people and I can understand our world better . The things which happned last night did n't arise from the differences of our calutures but personal matters , I think ; - ) We spoke in both Japanse and English . But our American frends could n't feel her feelings ( of course they ca n't understand Japanese ) . Our native langage are different . I think it is natural there will be difficulty , and it is the interesting point to comunicate with someone who is from a different country . I think the reason that I did n't like science was becuase all of the books I had read were not interesting . Since it was wirtten for kids , It was really interesting and easy to understand . Anyway , I am turnig 20 this month . Tomorrow I will go / I 'm going to Belugium and then to Holland and finally back to Japan on Saturday . The King 's speach I watched the movie `` The King 's speach `` In Japan , it is possible to rent the DVD for thik week . I thought the movie was very goog . But I figured out the view of the town is so amazying ! ! My role is filming the activities of my teammates to create reportages . Today , I made `` OKONOMIYAKI `` for my sharemates . We saw the sun rise and it struke our tent . I haldly understood native English then He is a university student and wil become an exchange student in an American University this Autumn . I was asked by my roommate to take care of him , perticularly about cooking , and of course I said yes . Furtheremore , We played many different kinds of games in the schoolyard such as seesaw , hawk - and - chichen . For the `` hen `` , it was importent to focus ( your ) attention and keep a strong sense of responsibility . I want to leart Engliah well , but it is diffenert for me ! When I had some oppotunities to speak in English , my Japanese supervisor was one of the people in the audience and said things like `` You said a water and forgot to add s to he want `` and so on after every my speeches . Germany , Spain , India , Austoria , Finland , Egipt , America . . . . . . I can anser it better than the real questions for Clinical Nursing . . . . So , I had no choise I learnd many things from college life . Everthing seemed to be fresh . According to UK laws , euthanasia is not allowed . This includes any act of assisting suiside to the patient . The gril 's name is Jones , and she must battle heart problems and leukemia . I am studying to get myBA in Applied Linguitics ! I love to just have fun and spend time with my friends . Most of my lunguage backbone is in school . just unconciously pour the coffee in to my mouth . Coffee to me is like the cigarrets to heavey smokers . hey guys , it ` s my frist time here , I am so happy to know you guys to help me learn English . I allways watch `` Azumanga Daioh `` and `` Lucky Star `` . I 'll appriciate your corrections , but I will not rewrite this probably until I am able to write this correctly by myself . I especially dislike `` pure `` Japanese literature ; of course I have some favourite pieces among them , but unfortunatelly most of them are widely underestimated . I studing material from Side by Side book 4 , but it was a little difficult for me . In the afternoon , I 'm going to study TOEIC materialby for an hour or two . Let 's study our Langage 's together ! ! Tnanks a lot . When I search Google , it tells me that members of Japanese paliament earn1 . 3million per month . Apart from that they also get a million yen as a travel expence each month . These perks add up to nealy 44 million yen . In fact , accoring to some sources , Japanese paliament members receive the highest salaries in the world . So we really nead someone to solve this problem . If you want to be freind , feel free to let me know . So I was back home after working at 9pm and getting things ready ( for example ; reconfirm jazz tune that I momorized ) . His wife was a Japnaese . Whay music is important to many people ? Although people can get tired of repetition , they listen to their favorit music frequently becuase they can enjoy themselves more consistently through that . We can find some traditional music from different nations intersting . So we can see that music is a wonderfull means that can make us feel better . As Oliver Wendell Holmes said : `` Take a music bath once or twice a week for a few seasons . in order to get rid of my stress that comes from studing . Actually , in America , the gym is somewhere that provides chances for peopel to make friends . That , I cant deny , but something hust happened to me recently . When I am on it , I am used to always looking from one corner to another to see what others are donig , so that I wont get bored . Last Saturday was no exception . relatively conventioanl Taiwanese girl , it is kind of too much . One of my Japaness friend told me about this website . Thunder is a very powerfull tool . I bouht some bread and cheese . The Mid - autumu Festival is a big day in China during which families come together . What do the following sentenses mean ? Firefleis . I have a Benuzuela friend at my school . For a long time , I 've thrown away anything making me remember the past , either happness or sadness . All the time , a guestion is in my heart ; I want to know , In the second hour , my coach taugh me how to shift gears . I 've been drinking coffe as a countermeasure for sleepiness . He gets food from the airport restarants for free . What is different from the movie is that he has an abailable visa that allows him to stay in Mexico . Everything abuot me : ) In class , my Eglish teacher said `` How are you ? `` . My teacher loughed me . my English teacher tought me `` I 'm fine thank you `` only ! They gave us three tests , grip strength , flexibility and alterness . Since the garden is about five kirometers away from our home , we ca n't go and see them very often . Especailly during festivals and weekends , KTV is almost the premier gathering place for young people . I tidied up my wardroab . There is big space in my wardroab now . Tomorrow I will go to the Driving Acamemy . Today , I finshed my report . Shi ' ah , sunni and Koord are there . The Iraqi goverment is trying their best to unify the country , but their approch is n't working . Iraq has elements of connfuission now . I ca n't imagin what will Lots of people are used to cover their love , their anxious , thier bear and so on to calm their friends or their families . I had finished eating watormalon . I want to speak and write in English fruently . I 'm restarting engish . I 'm learning English vocabulary and grammer now with books and mp3 's . But summer vacation ends Augast 31 = ( I was interesed in an article about AVATAR . This movie represents the cerrent US . It 's my frist diary on Lang - 8 . I talked with a forein friend on skype for the first time . Anyway , she is a Filipino ( I think this vocabulary is very difficult because it sounds like Philippin but some words are spelled differently . ) But my cellphome does n't ring , and she said maybe connection was n't good . So we could n't talk to each other though she demanded me recieve the call . I could n't dispel my doupt to her so much as that time . The season is turning to winter and outside it was a little cold , so I wore a sweter . Some houses are really funny , but one hous was really awful . So scarely : - ( I want to go foreign ski erea , because the scale there is so big . If one of them has any problems , the entire socity will be at risk of collapse . By the way , I 'm going to Spain , France , and IItaly next month . If you can pass the Canbrige English examination , getting a job will be even easier . But SIngapoeans are very kind to me . My favorite charactor is Miss Sue . Kosen tornament in Aomori ! ! I went to Aomori for Kosen tornament . The Tornament was so exciting ! ! And it showed the position or rank of the people usuing it . They believed that I was neverous as I spoke either too loudly or too quickly . . Indeed , I felt a little neverous just before it was my turn to present the report . The reason whhy I spoke so loudly was because I want everyone to be able to hear me no matter which corner of the room they are in . My home twon is on the sea . I eagelry look forward to hanging around with him : D As I was writing using English on my mobile pohn , I realized that English exist everywhere in Japan ! We all hoped we could leave as early as possible and go back home to celebrate Chrismas with family and friends . Anyway , I enjoye myself . Yesterday It was rainy , but I took them to the docter . The docter adviced me to take my daughter to the ENT doctor . So she did n't sit still and cried , I had to hold her while the docter examined her ears . Till now I coud ' tdo anything without compsing myself . They pester me to go outside although I play together , ask for new toys , new DVDs , new snuck , and so on . Similar to what was written in the dialy of another user , I get stressed when I ca n't train . According to the review , It is sopposedly a pure love story about childhood friends Emma and Will . he should have moved on and should 've fough with life for his happiness . The movie is fasinatingly bad and irritating but cant stop watching I bigan to study English two months ago because I want to go abroard to stady it . The competition is quite hard , because , to find a good job , it is one of the most important things to enroll at a famous university . In schools , there were plenty of strict rules , for examle , rules concerning hair color , the length of skirts and so on . Enrollment rate of universities is relatively high in Japan ( about 60 % ) . I was confused and irritated , and got new bicycle at discout shop near here . particulary , city area either near the station . There has many good taste food we can bounght . Every TV will have to be able to receive the new degital signal . stastion . It 's fater and less crowded . I started it from around in Janualy this year . I have to comuticate with the custmer and take care of them . I had confidence with these many people but selling is not just comunicate . I useally go to work by foot . Today was special day , because I walked under the Sakura srcade . In fact , I am cring to read this letter . `` Actually , the sneakers I bought are the addidas brand . Then , tommorrow , which is exactry today , is the exam . Ato Tomadachi wo sagashimasu node dozou yoroshiku . Ima ha Eigo no Gakko ni ikimasu yo . Boku ha kotoshi ni ju ni sai ni owarimashita . Akiraka , boku no bunpou ga heta desu kara chigau tango ga attara ayarimasu ! I am a freshman and study English and Chinise at college . My favarite actor is Will Smith . We had two visiters from Vietnam at home . Tha tast was Japanese style I 've come to the conclusion that the only good mosquitoe is a dead one ! I watched news yesterday and I heard that there are many people affcted by this influenza around the world , and also there is one person visited Mexico and guessed having this disease in our country . A : We would like to order , can we have the manu , please ? A : What 's today 's specail ? W : The specail of the day is cuttlefish spaghetti . Eiheiji temple is famous for a head temple of the Soto sect opend by Dogen . I heard that momks in Eiheiji get up at 3 o ' clock everyday ! My daugther slept by my side . First , I want to Iintroduc myself . I was bron in Saitama . My brother told me she is japaneas . and I strated to listrn to music and play the guitar with my band . Now , I am still playing the gutiar with my new band members . So I alwaya feel sleepy . . . She always spends around 30 munites eating breakfast . Before breakfirst , it is also time consuming to make her wake up . Studio Ghubli Well I 'm not sure if this plant is called a spring onion in eleglish . I went to a Singapole restaurant tonight . With a few of my colleague who are American , Singapolian and Japanese . We drank Singapole beer . I still can not figure out what happend . I want to understand this beautyfull language ! I had a speaking test yesterday , as well as a reading , writing , grummer and listening test . I forgot the timetable was changed from usuall day . Unfortunatelly , I was eating lunch in the park so , as a result , I was 10 minute late . I have discovered so many good songs through this program that I 'd never lisetned to before . My bro is in one of the pucture . These days I think my brother feels like a good freind . Ok , I do n't know what else to write . In addition , I was amazed with my friend said that other friend who we have known since pupil mrried and his wife has become pregnant . I ` m not asleep , becouse I am trying translate my favourite songs . , because I can look straight ahead and see a little light comming through . I will enjoy today wiyh my family ! ! ! like it and now , I am going to move there again but this time will be diferent Purhaps bedcause of I am foreigner in this place , I do n't mind whether or not people look at me . A lot of classmates always go to their laboratory everyday and thier tutor gives them work to do . There is a massage chair , and it is very confortable for me . I was grinning like an idiot and trying not to laught out loud , ( sometimes without success ) . My granma sent me sweet potatoes . I do n't eat much these days , because my apetite went away and I did n't have much time to eat . In fact / Actually , it is the seasen to pick ` Pink Lady ` apples . The tax system and constructure of the Chinese society are completely different from the Japanese one ( s ) . Although thre are many things to learn , I 'm enjoying that as well . I mean , perhaps , Charlie is one of the best charactors he has acted . What really was impressive was how people are passionate about Itanlian food . Especially Viktor , the leading character fiance . He is an incredible chef who is opening his own restaurant in N . go banans ! Thus , ymasho was made . but making sentecne is very difficult for me . It 's beateiful . This spring , vegetables are expensive because of the abnormal wheather in Japan . This shop helps me alot Today , I havegot5 avocads only100 yen ! I spend X ' mas with my darking every year . There were 2 cups of instant noodles in the kichin . The teacher told me my daughter I studies well , but she is somtimes too shy to give her own opinions in front of the other students . . . She is very open with familly and with her friends . I ca n't find any teachers to help improve myw English . The next time we 'll see each other might be the day we leave for Japan at an airpost , which will be on the 20th of December ! In the x - ray photo , he and the docotr could see one earring . It should be a very interesting and an unforgettable experience for me because this is the first time I joined a boylish competition . thus , there are only 3 girls in the computer clubs in our school , my freinds and I . There are many geoglyphs and the lenght of the biggest one is about 300 meter . I was very tired , because today a lot of peaple ccame to my store . Me and my co - woreker were supset and worked hard . It will be 634 meters when it is compleated in 2012 . She prefers Tokyo Tower , whith is the present broadcasting tower , over TOKYO SKY TREE because of the shape . So my body is worn out with studing and a part - time job . Actually , I 'm pregnant and I 'm suffering from morinig sickness , so I felt gloomy before the wedding . It was a great wedding , but my three - year - old son colud n't sit quietly during the ceremony and reception . So we decided to go to a restraunt . Maybe because I ate too much sugers . The Frist Massage This was the frist time I got a massage . I went into the massage parlor ( the normal one ) * and told the massager / masseuse that I had a back injury from five years ago / earlier . * umm , hehe I spent my holiday time very well because I did n't waste time . I learnt new things and I had great days with my family and freinds . Since the interview with my boss , I ` ve worked more carefuly than before . What sould I do to develop my career ? I had a late lunch at a curry chain restaurnt that is famous in Japan . I want to study about / how to do that for my futuer . Thime is money . Hi everybudy ! listenig skill ? Do you know a way which you can listen to English for FREE ? It is acorss from the train station . Please tell me if you think my sentences are wrong or seem unconftable ! A lot of passenger prized his driving and he himself is confident in his driving skills . In more than 1400 years ago lived a righteous king called `` Hormoz the fourth `` . I just discovered this website via facebook ; it looks good , but it 's a bit desorganised , I reckon . Regarding my hobbies , I love practicing sports ( Rugby , Boxing , Running ) , listening to music ( Trip - Hop , NU - Jazz , Hip - Hop . . . ) and so on , like everybody actually ; - ) how my brithday was Yesterday , my freinds and I went out to find a job . The hairdresser who cuts my hair every time looked so busy that I hasitated to have a conversation . I was worried about her even though I 'm a costomer who receives a service . I have been getting an appetite since I lost it efter all the hard times . I have been really depressed for a month so I lost some waight but I kind of like how I look now . So I am kind of worried that I will gain more waight than I lost with this big rush of appetite . What happend to Japan ? First news was issued July 28 , under the headline `` 111 year old man alrady died 30 years ago . `` And his dauter said that , `` He wanted to die by starvation , and we could not stop him because he was too seiuous . `` It was surprysing , but I think many people believe that there are some to see if they ( the eldrely people ) were alive or not . Some of them have alrady passed away ; the status of others is unkown . Japan is one of the firat countries to become a super graying society . So the gorvernment has to deal with this probrem immideately . Selfishness ca n't controll us . Even though I 've lived in Canada for a year , I have n't seen outside of the city except Naiagara falls . Now , it 's nearly two months since I Ient him the money . You konw , we have got on very well since we first knew each other . I 'm plannning to take it next month , for the first time . Hope I wil be a top salesperson . Although I am Japanese , I do n't know much japanese culture . It is not completely unuseful , but it 's awkward to use . Certaily , I can see something like his toe . A huge typoon is getting closer . A huge typoon called ' Gonpas ' which means compass in Japanese is getting closer to the Korean peninsula . It 's important to take steps in advence . If you live further south than me , let me know how the typoon is . I like its world and caracters , especially the `` Muimui `` . Today my friend and I read a book called `` The mistery of Your Name `` about character traits and the fate of a person , which are defined by his or her name . So I have to go bed earlly , I took enough rest . I folt I ca n't find that by only studying at school , I need a lot of experience . There are many foreigners such as chinease , Mexican Spanish . So I have not studied English for one manth . I 'm still enjoying the mozochism . I 'm great because I still keep momorizing boring words . Today is my seconed time studying here . All in all , we must admit that the advantages outweight the disadvantages . Do they have defferent meaning or pretty much the same ? No misuc No life So , ( I became ) quite ( exauseted ) today . In fact , the wide - spread distribution of the WiMAX service on the rapid transit system is a goal set by the goverment in Taiwan . but It is completery different tempulature today . bacause strong wind , and so on . but maybe I am going for a surf tommorow . A lot of Japanese people are very shy and ca n't comunicate with people from other countries . I never played tennis before I took the class , but the corch taught me how to play step by step , and I improved . . beacuse I like the English launage and I really hope to be netive speaker so I stydy english whenever I have free time . ( that 's ture kk ) anyway I 'm workig so I have to go to bed soon , lf someone reads my diray , would you please fix or change the sentense for good and more natural expression ^ ^ I tried to bake a cake with a rice cooker ( steamed cake ) and made cranberry souce . LOVE AT FISRT SIGHT ( part 2 ) The Fisrt day that I saw you , I thought you were beautiful , But I could not talk to you watched you walk away . Suddenlly , the phone rang cutting through her train of thought . She felt something special , not because it was her first time making a delivery , but because her primonition told her that something was going to happen ! She knocked on the door and it was openned immediately . Most of the people there were men and Lane specifically recognized the angel in her heart who was sitting in the conner . She could n't belive her eyes . Lane replied : `` Thank you but you paid enough . `` He moved closer to Lane and told her : `` It is for the tip girl , thank you so much ! `` Lane could not do anything else , just receiced it and thanked him . He had a sweet acent . I remember that I was so excited when I saw the trailer of `` Avator `` I think the theater will be crowded this weekend because of Avator fever . I believe Avator will reinvigorate me with its visual technology and emotional story . But sometimes pop music is intresting too . Expesially if guitar and realistic bass is used . I bought this one just as an interior accesary . Another reason is that humans have a variety of deseases that was caused by new technologies . Without reseaches on the univese , we can develop the medical field to save many lives . So , I 'll take positive steps of `` Lnag - 8 `` . But a plactical test is not easy / difficult . I opened the box and plugged in the tree . Then I swiched on the lights and turned the room light off . I felt Lucie 's feminish sence on her works . but my English skills have bn getting worse since I came back to Japan in March . I get a little neverous . When a new semrster starts , there will be some foreigners come to my senior high school to study . I 'm learning new information that I did n't kown Altough I memorize a lot , I ca n't make use of it . Oh , I missed sevaral days for writing my English diary . Eventaully , I posted this article courageously in order to introduce myself . It offers a very friendly platform for language learning . People from different countries can exchage feedback . I live in Tokyo and work as a hospital woker . My hobby is a bellydance . I recentry feel that nothing can satisfy me . At the beggining of the journey , I suspected her imformation was inaccurate . We took a bus , which the fare was one dollar and tewnty cents . But we were cheapskates , and we did not want to buy a map whcih was not cheap . They 've kept telling me ' ' hey do not work too much , we are tired , go to sleap . `` Today will definetely be a memorable day for Japan ! ! ! When I came home , the game just finised . . . I wanted to watch the game in real time and feel the excitement with ( other ) Japanese soccor followers ! ! ! Ubin is a small island and it takes ten minitues to reach by ferry from Singapore . X - Files , FRINDS , Full House , and some others . I love Full House in particullar . Joey and Jessy are very funny , they always make me laugh . Joey is very good at imitating the catoon character 's voice , motin and sound . By the way , Michell was very popullar with Japanese people . The write - up for a straberry painting using the Painter She needed to make money , so she could n't coutinue to mainly do translation . I wish I could stay home , but I have to take an Enlish lesson . When youo become old , you wo n't be worried about your health . `` I smiled and said good bye to her and then left . Of couse sometimes I am lazy , especially on rainy days when I would find an excuse to avoid running . Acutually , those did n't sound very tasty but I think fans and kids may have love them . I will wirte about it in my next jounal ! I 'll be reliefed . I can learn English and I can also learn Jpanese by checking I did not read books at all today because I did n't havethe time read . Today my English friend called me to make an appoinment tomorrow at the same resterrant . She likes to eat mussamun vey much and I like to eat somtom ( papaya salad ) and aticky rice . When I see her I like to give hermy dirary I write in English and she likes to ask me about ponoun . We enjoy exchangingin Thai and English . Today at my compani in a high rise building I saw beautiful rain . I hurried to call my friend to look at the rainbow . I would like to chang a goodday with my friend . We enjoyed looking at the rainbow togethet from different aplce Today I was very suprised they asked me to eat luch with them . You know when you start ata company for the firat time I think I 'm an outgoing person & a person who has a positive attitute . I 'm so bored evryday . . . I could harvest only two orenges this year . I 'll go to the summer house TO SEE my dog , not my parents . ( hidden trueth ) So , probably I can have ineternet there , too ! At night , I went to the Englis conversation class . Japan will defenitly change , and everyone can move Japan forward with EV 's such as the Nissan LEAF ! Fight for Englsh ~ ~ ! ! ! ^ ^ I work for quailty control devision at the company I work for , and sometimes I have a chance to communicate with the overseas plant ; especially Czech and U . S . A non - government organization which I support gave a presentation to the pubilc . The center is also a place for gabage disposal . It is said that the pool is heated by energy produced in the process of gabage disposal . Suggestion : It 's been a very long time since I last wrote a dialy . . . They are learning Japanease in uni , so they practice Japanease with me , and we Japanease exchanged students practice English with them ! ! After scool , I went to Hide park , Australian Museum and St Mary 's Cathedral College . My name is Frank , and I am Chinese and live in Guangdong Province with my familier . I graduated from univercity 2 years ago . fuckin nardiy journal Im think that Alex should also update his . The update however might not be needed for me because Im intend to buy the new IPhone 4 in a week should it be ( if its ) available to buy . Its certainly gon na be fuckin complecated . I got a call from the ( a ) human resorce company just now . I recommmend that you should take hime to the ceremony . I am embarrased to say that I could n't finish it on time . Since all groops were planning on using Powerpoint , I went to the applaiance store to buy it with concern . After the meeting , I read a new nobel at home . It 's 1 : 10 am now , at 8 : 00 I will go to the building where the Tnternation students in Vietnam live . Jinzyas are old Japanese temples . There are very beautiful traditional Japanise gardens . So I think it takes many more times but I 'll try to uproad it with my phone . Now I finished my job , and I am going to see the restraunt where my friend 's second wedding party will be held . Because I was chosen as a second wedding maneger with some friends . About 80 people are comming and we want to think of a surprise for the husband and wife . but whenever I meet my firends among the them , the atmospear ( it 's not the exact speeling . . ; ) If someone is joining the Massenger programe . My score had imploved from 625 to 690 ! I guess Lang - 8 has played an important role in imploving my English skills . Day 97 : Puctuality After thinking a lot about my university choise and what is best for my life , I took some admission tests : one for Medicine , Pharmacy and Biotechnology . I hope I 've done the best choise for me and for my future : ) But I do n't have any complainment . I really enjoy my home life because of my email freinds . I 'm not satsfied with my English . Although I do n't like winter , it 's abnormal that it 's stll so hot . I think this site is really good for learning a langage . I used to write a dary in English , but I quit because I was not sure if my writing was correct . Then , I made an appointemnt with the interviewer there . I would relly like to be a psychologist . Now I start studying by reading easy English books like penguin readers or watching foreign dorama on TV or CNN Student News . I odten climb mountains . While I 'm climbing by myseldf , I can think about various / a lot of things and sometimes good ideas come up to me . But in Japan , the Tohoku area nuclear power plants had big problems because of the earthquarke . Anyway , I did n't miss the airplain . At Amsterdam , we had a radiation level check of our lugguage . I 'm going to visit the USA next month , and I 'm boing to stay with a family there . but they are ofen on sale . I hope every thing gona na / going to be alright * ema ; a votive picture tablet of a hourse I intend to go to bed as earler as possible . I thought a lot of the play equipment would be difficult for my 4 year old gaughter , but actually she enjoyed the playground with my 10 year old son . I went to an itallian restaurant tonight after school . At first , when I enterd the restaurant , the staff gave me a card and explained I think It worked for me more than an appitizer . After the cook fiinish cooking , I put my card on the register , where first their staff gave it to me , then I could go anywhere to have a seat in the restaurant , which was really large . Afeter I finished eating , what I should have done was just going to the entarance and gave a card back to the staff , then they coukd calcurate my bill . There were many people so I think that restaurant is very populer in London . I didn n't go out all day today . If you are a competent worker , you wil choose the merit system . It is dificult to estimate one 's ability accurately . Then , the Hong Kong Government must hold a natural ativitives of Hong Kong travel festival . In this way , we may promote more ativitives of nature such as hiking and mountaincering for vistors . There were a lot of fallen leaves on the pavepment in front of my apartment . Who is resposible for cleaning up those leaves ? Is it the resposibility of the manager of our apartment complex ? Now , my foot , arm and body are very ltch . The Roman 's structured and man - made world wide empire out of architectural forms , and those architecture forms revolutionize the ancient world and exoted and lasting influences on the architecture and the architects of post classical times . Uh , And you see a park of the Caplan hill a transformed by Michelangelo into the famous Campidoglio , as well as the . . . All of my friends will get to spend a long vacation for 4 days in thire hometown except for internatinal students who can ` t go back to theire own country . I hope his parents will be braver to buy a new wondeful car after they consult with their wallet . They are not vegitalian . This week was so tight that it was desided that I can not take a rest day during the week ! He always got mad at me when he 's in a bad temper even it 's very litte thing . Unfotunately I do n't have a co - worker to share his calumny . Me and my husband will eat out in commemoration of this anniverasary . The place needed to be cleaned was a 50 m long flower bed that formed along a road to an entrence . After the work had been done , I looked around and it looked quite neet . Quite frankly , I tried serveral times to read it but all failed . The young girl , the main charaters , her name is Lin Da Yu , after being sick I went shopping wiht my friend . When I read about this portal , I could n't bealived that someone would help me and fix my mistakes withount any salary . If any of You are intrested in history or geography of my country or city - please write - I will do my best to help you . I am so lucky that I found this webside one day ago . I have been looking for something like this for a long time . First entering it , I wrote information about myself . Welcome to you all over the world and hope you make friends with me . I 'm willing to make with friends with you . My head portrait is of NBA player Vince Carter who is an avtive duty basketball player , which shows how much I love NBA . Today I leran that the Spurs have won the 7th game of the playoffs against the black horse team , the Hornets , this season . I love Spurs not beacuse of the team ( they have won 4 championships in the last 9 years ) , but for one guy , Tim Ducun . Recentry , some Japanese enterprises are starting to use English in their offices . I have challanged myself to learn English many times , foreign restraunt . Too many peple everywhere . . I 'm going to travel to Ausralia next month . I 'm going to on a simple tour which inculde a round trip plane ticket and hotel only . That 's why I reserch some local tours by internet and some books . So I started to create an English drill , and because one word can mean severalt things , I used example sentences to hint the actual meaning , but I would n't want to have incorrect ones . I wanted to take nice shots , but they were moving quicky . Japanese peaple are said to be workerholic / s which I think so . Young peaple , including me , are not more wokerholic than older peaple . Because , older peaple worktoo late ( or too much ) and somtimes go to work even on the holidays . I do not want to be wokerholic . In our university there is a very convinient system where we can use all the fitness center year around with a fee of only 1000 yen ! Whenever , whereever I am listening to ' Whenever , Whereever ' now . In fact , I have alredy bought a Spanish textbook . In Japan , Spanish is not a major language like English , so Sapanish textbooks are more expensive than English ones . . . . . Why ca n't we have less since we are in univerisities ? there is a probelem ? Since then , my plants have been getting vigor . A guy who is travering in Europe meets a Parisienne on the train . There was only one night they could be togethere . Extreamely Hot Day It is extreamely hot in a lot of cities in Japan today . I sometimes teach sutudents Japanese and mathematics . In December I will have finished my university education : I wiil have a master 's degree of innovative activity management . This week , I have to concreat my exams . I want to do a languge exchange on Skype . But today was a rainey day in the Kanto region . It is because we can foget everything like the unstable economy . How about your conpany ? ? In summer quarter , I took an ESL ( which is an abbreviats of English Second Language ) class . I could see vorious kinds of people . I enjoyed manwatching heartily . There is an increasing amount of vagetarians in world . Other vegetarians think it is wrong to kill animals cruely . This text is for university students , amd includes econometrics . Japanese universities ' enterance examinations are very difficult , As a result of Judo traning and my part - time job at an izakaya , I learned a lot of things which are necessary for my business . so student should have the avirity to practice self control if they want to live good life . they pay amazing amounts of monny for a preparatory school for entrance examinations . I am sure I wo n't solve this problem untill I die . Although it will not easy , I should change my schule . But I do n't know how to change my schoule to the best way . Could you give me some adveise ? ? Do you have any bad habbits ? ? The main activity of this corcle is organizing what is calld `` IW ( International Week ) `` . Let me explain , my university has some cooperations with foreign ones . I 'm sorry for long sentensces . . . In wich we 'll reach the heaven that exists My parents gave me some souvenirs , such as chocolate and vegitables . Thanks to them I can get by untill the ennd of the year . After that , we dated few times and I was a little comfused about our relationship . Then I found he is kind of arrongant and everytime we were together , he always complainted about something . Fortunatley , his skill was not that excellent and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) This guy , who wants his cigaratte , asked me to bring them to his house . However , there are still verious hardships during this age . Two of their classamte saw it and then warned my brother . Fortunately , it has been already solved with a peaceful endding . I will go home to stay with my parents and eat some moon cakes . Although I dislike eatting moon cakes , I enjoy staying with my parents ! The latest conveyor - belt sushi restaurants have / serve not only fish , but cake and lelly and juice . . . . . I 'll recommend lang - 8 to my collegues . Recently we were challenged to become familier with English in my office . Foregner can feel uncomfortable when they sit on the floor while they have meals Frist let me introduce myself . Altough I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an Internetional college . Alomost all of my teachers are foreigners . When I talk to foreigners , I am too nerver to express my feelings . My grammer is not good . So I registered on this webside , and want to make some friends . I want to learn English and Japanese ( I 'm caczy about some Japanese idol ) . Last Feburuary as well I went to my parents house and met my sisters . On that evening , Yoshimi and I started to catch up with eachi other over some beer , as usual . Next time I 'll be more lelax . I am a college student and my major is informatics and comunication . many comanies in the world record great loss Afer I knew this site , my English level seems to be developed . Thanks for Lan - 8 . Now , koran time is 12 : 10 . I have a music skil test . When I was lasy , people were still practicing music . Through this process , their emotions chaged dramatically . One of the targets of me of this sumeer is to make an album with my friends . I took a class about implied meanings in English setences . First , `` If you think a seat belt is uncomfortable , you 're nevr tried a ? Parden ? I want to learn English to study computer langualge and computing technorogy . I 'm Linda and I 'm from China . It 's a small town in HeiBei I 'm sure you wouldn ' thave heard about . poort - - all kinds of sport but mostly as a spectat . The sport I like most of all is Latin dacing . I 'll try any sport you sggest . I would say that my school has raeally beautiful scenery . In that Bahrom Education , we can learn how to share with others in society through philosophy , etiquette , religion ( specifically christiarity ) and the history of SWU and the class includes group discussion or performence and indivisual activity . The conclusion is that I have liked and will always like my shcool Becaouse of some troubles , they are divided into two groups . I went to an open campas at Sophia University with my friend today . I heard over ten thousand peaple visited there yesterday . I have to study Engrish much harder . In the book , the bad aspect was the plot seems provocative , but the good things were delicate description and acurate observation about the things all aaround us . I am now a memeber of the international sales department in a ceramics compnay . Now I have no customers , I do n't konw what I should do . I chenged my profile photo to a tiger . Atter 30 minutes walking , I felt tired . I 'm a stuped girl . Evrobody dance Althought , I do n't have to go to bed right now . One of my dreams is to become a good English speaker , so though having my English corrected on this site , I can become a fluent English speaker and writter . I will write in my diary once a day , because I want to improve my English abilty . She didi n't mentioned her age but I 'm guessing that she is 20 . I had dinner late last night , I knew that but the food was still sittting heavy on my stomach , I am a Univercity student . I want to improve my English skil . I 'm wearing my favorite red dress and I 'm wearing some make - up . Sam and his friend James are true adverture travelers , and together the boys have done and seen some amazing things in the past year . It 's wierd ! ! Then she said `` Yes , I am Idahoan . `` Well , how about a Wahingtonian ? I got a parfect score ! ! ! I like movies where I can detect and solve some mistery about the main charactor , so I was not content with this movie . After I finished watching it , I seached about the content of hostel on the net . I got a call askinf me if I could go to the cinema now an hour later after I finished watching hostel . Actuaaly sometimes old eggs cause food poisoning for salmonella , Many japanese people eat raw eggs so the expirely date of eggs in a Japanese super marcket is very short , usually 2 weeks and the eggs are placed in a cool place . I love Xtmas I always get 3 or 4 presents every Xtmas . When it comes to Xtmas . . . This is used in another ocasions to socialize . The other thing I love about Xtmas is the food . Xtmas is way better than New Year ( I hate this one and I 'll tell you later why ) Whenever the blockout occurred , I browze internet and logged into Skype and spoke with people in order to kill time . The Prefectual governer of Tokyo said that we had to refrain from viewing the cherry blossom . I am pleaced to meet you . He said that our directry business strategy was finished , so we must work indirectly . His said indirect bussiness advocates more cooperation between a vendor and carrier . We will continue selling directry with vendor 's product or carrier 's service customizeing , but now we must sell service indirectry as well . to my client directry , but we contract vendors and carriers internally . S our company is a system integrator , so genarally we have IT skills , but we do n't create any of our products internally . So I fell umconfort recently . I was dreaming of my ex - exboybriend . This is not the frist time . I ca n't tell him because he has a girfriend now . There are thousands of people who fluently speak Japanese and they are passionated about helping others . But , when I find pasitive things in my life , I become very happy I think its difficalt growing vegetables . It 's often said thet old people go to bed and get up early in Japan . Saddenly a hospital offered her work , and it was a good oppotunity for her . I know if many teachers violate the law , my school will be in chaous . In Osaka , central prefectureKansai region , a famous manzaishi , Knock Yokoyama became the governer in 1995 . According to the Japanese gorvernment , 56 countries have offered assistance , but they are not coming yet . The Japanese gorvernment looks tired . I clicked it without any hesited . I feel grateful to him and I enjoyed my frist day using lang - 8 . Well , when I first played this game , I was surprised because the hero is only a civlian , but he kills inocent people for money . I rily liked that ! It was little salty , but anyway except that , rily that okonomiyaki was my stuff ! its rily nice . yoga 's rily good for not only the body , but also the skin and for relaxing ! You can make mochi in tem minutes . Spring has now come , but I like autumnbecause because I get hot quite easily . I spent alomost the whole day watching my favorite movie . Indeed , this movement which used to provocate debates has recently obtained a religious status un Spain . My life has been painful since they tok it from me and now I do n't have anything to live for . Today I want to tell you the main problem I face when I speak a forein language . The problem is that I foget words during speaking . Tomorrow and the day after tomorrow I am going to visit Miyagi prefecture in Japan , where there was severe damegas by the huge tsunami that happened in the last 11 March . This is my first time writing a dialy . I have been in the USA for businnes for two month . So please check my dialy . becase , I ca n't speak English well . My Enlglish grade is the worst . Mabye because of Tadanali Lee . I am wotching a soccer game on TV . I took listening and writing and grammar tests , I won the fisrt prize in my class , But I wanna keep her as my costomer . Am I a bad charactor ? Yo quiero doerme I wish to visist United States onde day , my teacher said it is a cool place , I wanto to go to disney too , but it is too expensive , I have to work hard first . I 'd like to know about their culture , well our cultures do n't have much of a diference I guess . . . I have not execised for almost three months , becouse my doughter was born three months ago . + Mazeltov ! + It is not healthy , so I have to execise and lose the extra weight . I went to a convention hall today to attend a conferece which was hosted by a Japanese Interenet company . Later I want to work with groups like UNICEF , World Vision or Good goodneighbors . People cath them with paper dippers . Anyway , I held blind date for two , and I did n't know there was chemisty between the two . I have 2 jobs , I 've had them for2 and harf yers . Because nursing home 's sarally is low and I have time before , I started mypart time job . There were many famiries and kids when I arrived there . I do n't mind because there were enought strawberries to fill my stomach . It 's white , littele and cute . So , I will try to listen to one episord a day . We will go to Wenyi Street and buy a lot of clothes , shoose and so on . I want to studay but I do n't know what to study for and how to studay . His act was illegal of cource , but is it so serious a crime that investigation of his house was needed ? I had a pran that I ren for 5km and did biked for 2Km . Muu , I do n't want to be in a world where I ca n't use Twitter and Facabook : ( It 's unusuall in Japan , because there are rice cookers in every house in Japan . This morning , we took pictures at a photo stadio . Of couase , grandparents had too . I bought a new Windows PC for my mobile last Thurshday . Today is Wednesday . I 'll talk about Iceland . There are a lot of things in so many ways that differ from what he or she is uesd to doing at home . Iceland is different from others countries in the world . For instance , there is no pollution . Dogs are not permitted on the iceland . And there is no amy , there is only one jail because crime is so rare in Iceland . Even though they do n't have good teachers there , they can speach English very well , but how can people except much from teachers who ca n't speak English fluently , though they can speak better than the Japanese . But today is the first time to use this webside , so I want to write and share something . That 's the English thest as it is called . He is one of the most popular auther in Japan . It is diffecult for me but I try . But it is obiously dangerous to ride on a bicycle on frozen ground . Good Moraning ! Even though BP 's best was not enough , we should try the WROLD BEST . Yet , the weather focast said it would be snowy today . We usually start to study English in junior high school as compalsory education . The lioneases are in charge of hunting during day and night , and protect the young lions . The lioneases usually stay in a group all thei life , but the lions often change their living place . And beat tha swine flu before you infect someone else ! ! I 've prepared power point slides for a presetation , written a resume , etc . In Japan , it is vey popular that girls wear it in a fireworks display . It is said that girls who wear a YUKATA are twice as buauty as when they wear usual clothes . Therefore , I became nervous when my girlfrined woar it . They lived in rearely visited areas and made hanging bridges over the The bride 's friends usually put the hana on their hands and her mother must pay for all the women who want to do their hand . * Tonify the thigh , calf , and hip muscles . Today we drove aroung the city . First we went to Tanba - Sasayama city and saw the fossil of the dinasaur in Hyogo Prefecture . So I keep on studing ! In July I 'm going to London to work and I 'm a little thrilled , becasue I do n't know whether I 'll manage with my English skills . The relationship which has no derelopment . It 's nothing else than a program which displays us the fishcards and makes sure that we are learning them . You may also ask , ' what the hell are the fishcards ' ? After 3 hours of driving , we arrived at `` Mytle Wave Water Park `` . We were dissapointed about the appearance and the size of the water park at first , but we started enjoying the slides . Calavacy ? [ ? ? ] ( anyway ) which is a kind of seafood fries is the famous dish in Mrytle beach . I just smiled at him , pretending like I wated to learn too . Fourtunately , the waitress took us to the table when I made eye contact with him . It was a very embarrasing moment . Trouble with new secrity software I went shopping with my doughter and mather . It was my doughter 's birthday , so I wanted to buy anything for her . I bought twe white blouses . One is for me and the other is for my doughter . Then we had lanch . My doughter said that she had a great time . Do n't even have the sterngth to go prepare myself tea . . And I am really looking foeward to the day when I got the passcard and a letter of admission from a good school . Yes , it 's true that all of everything is one of ture love . Ture love is just to being yourself . I 'm plaud all of them . Indeed , today I had to reseach the program of going to India and decide which project to do . I think an India project is good because of its flight cost and the langage people in India speak , english . The first man is a famous comedian who is famouse for his unattractive face . Well , lought is the best medicine . . I have half a book to finised . When I 'm finished I will know the basics in Photoshop and be able to enjoy using it . The weher as well as my feelings is bad . I have had a bad headache recenly , so I ca n't easily think inother languages . I want to be to writting fluently and quickly . . . But I did n't want to becasue I do n't have money . Please teache me what that means . I tried to hum the rythem and the lyrics to my friends , andnone of them knew the song . I ended up using `` I 'm Yours `` by Jason Maryaz . It ` s interesting to study Enlish . I think American culture is so bornig We have a problem about our euipment in our project . At the moment , it is nessasary to make a special A - frame to support the Long shaft , weighing about 13 . 6 tons . We made a drafte drawing and sent this drawing to our Design Department to Calcualte the the size of the beam for fabrication . Request scaftfolding above the vessel . Like I wrote earlier : out of sight , out of mind , so I 'm seldomly irritated by my hidden rubbish dump . XD Ironically , some things I discovered in my cupboard were litteraly ' ' out of my mind ' ' . When I found particalur things , I did n't even remember I had thrown them in my cupboard ! ^ ^ ; I discovered all the drawers in it were full of old stencils , notebooks , excersize books and other school stuff which I no longer needed . If this is what you want then everthing will be over ! As you know , this moive made us experience adventure indirectly . However , that I spend time talikng about interesting topic is hard to do . I got a job in a travel agency and I was a staudent on the weekend With the start of a new year , cherry flowers give us a preasure of spring and an exciting feeling of a new year 's beginning . They thought it would creat a positive economic impact . I rearry enjoyed her preformance However , he never got even one rattit from that time on . I 'm a stundet and 24 years old . My first reason is because I think life is colorful . Well , not for me , as I 'm atheist and therefore I 'm not going to church or going to pray at the cemetary . Yesterday I found a teriffic site on the Internet . I took the TOEIC test on 29th Octorbar . I am confident my broad - range experience and achievemen in sales and marketing divisions . We 've already booked the fligth and the hotel and now we 're choosing what to see . Language practike All this time I have been working , building and speaking with my fogein friends . But these friends are all students and they ca n't speak with me wery often . I fing friends for speaking on ICQ chat or Skype and if you want , we can meet in real life . Every night I see him in my arms but when I get / wake up he desapire like a memory of himself . We went to a Japanese syle restaurant , we all ordered pork chops , it was very delisious . they were toooooooooooooooooooooooo bad . . . . When we wash our clothes , we hang these clothes on a clothesline in a coner of the garden . They are so cute and misterious . jBut the fact is that I did n't buy a ticket , and going back to my home for the holiday will just be a dream . I want to comfort my close friend beacuse the one she has loved All I can do is to give her a phone call and say ' Hey , I 'm here . ' Howere , I know it is totally different between It 's really a lonelly world . I will travel to Hawai in April . The famous pancake resutaurant is called `` Eggsnthings `` . My friend gave me some vegitables yesterday , such as : eggplants , green bell peppers , and corns . I 'd like to talk and dibate with my kid in English in the future . I do n't think I could eat it again for a mounth . I 'm worried that I 'm getting fat because I put sugar and milk in coffe . After graduating from junior high school , I joind Japan Air Self Defence Force . I have decided to make use of Lang - 8 to improve my english avility I am shoked One friend came frome Pataya , where he works . He came with his friend We went to the caraoka together before going home . My other friend is from frence . Another friend used to practace English with me . He helps me learn English so at the moment he pactices English a bit . This was the secound time that I have climbed it . While climing , it rained and we walked through sander ( ? ) cloud . Strictly speaking , it 's diffirent , so I think they should have taught it properly . You can probably watch such lives in American family doramas . And in such HCs , they conduct commisioned business on the DIY works of customers by requests from them . I 've just finished writing the lyric ! Prease read ! If there 's a new horrizon to pursue , I would write verse two E : People do and I said `` given ( that you do ) `` , you dombo . E : Given that you were not my girlfriend , I would 've broke open your head and scooped up ( out ) a portion of your brain for my reserch . In language , speaking , writing , and most importanting listening . I will try to listen to your voic I found a new way to learn english by watching viedoes with double subtitles . MS has different symptoms in each patient like visual dysfunction , smell disorders , facial paralysis , vertigo , dysphonia , sensory peoblems like pain or paresthesia , paresis of different parts of the body like hands , or feet , or even a half of the body , etc . MS can change a peson 's life very deeply . Every family is preparing yummy food and other things for the festival , nearly ten days before the festival , people are busy shopping for things , which includ chicken , duck , fish , meat , tea , wine , candy and so forth . . . . . . everything must be prepared . Also we need to get some special gifts for other relatives and friends , parents will buy some new clothes for their kids , kids like to wear new clothes on that day . The Lunar spring festival also has another name called `` guo nian `` which means to come through the new year 's day . During acient times , `` nian `` means a monster that can bring bad things and bad lucks to people . If `` nian `` is coming , everything will not go well . When `` nian `` has passed everything will go well . So how could people come through `` nian `` ? We need to use fireworks to get it out of here , it 's also another way to celebrate this popular festival . moreover a bus arrived 20 minuites late . How is your contry 's weather these days ? I really liked dinasaurs when I was a child . I often go to a climing gym every weekend . I have not been to a climbing area in the moutain . There are several words on the Web , such as tofu jelly and bean beancurd jelly . By riding on the bicycle , every scenary of the city seems fresh . Hava you ever usedFacebook before ? com , facebook has both positive and negative effects on peopele . You can find a photo that had been taken by a witness in the following attachement . First of all , I think children should have cell phones as they are important for security perpose . Second , I think using cell phones on puplic transportion shold be banned because it sometimes creates trouble for people espacially old people who have electronical implants in their bodies . I need to use my time well to practice my English ablity . After the earthquake , I found consumers ' comsumpton behavior changed . If possible , I want to learn french or italian or grammy ^ ^ The doughter is about 25 , and her sons are two and three years old . I want some advice on what souveniors would be good to give each person . Hopely / Hoping to escape from stress . When I was coming back to my home , I met Lawrence , who is my friend by chace . Last week I did a presentation in which I introuced an article for our major . I played the guiter , I sometimes played the fiddle or tin whitsle . If you are interested in it , please try to seach it I on You Tube . My name is kaoru . I 'm an ordinary japanese high school student . I often make mistakes in English and I sometimes feel embrass when talking to foreigners . Today ` s test was a totaly mess . Television has so many funny programs that they watch televsions instead of talking with their parents , and they can get addicted which means they have little time to talk . I like Disney very much , and she knoes that . Moreever , it was hot today . Today , I talked with my friend who is warrying about love . I completed a kind of figureine at last . I ve studied some languages . Chinese , English , French , etc . some were at school , some were with friends . Because of this , I can not speak every language I ve studied in the past . Chinese and French pronunciantion * are very difficult , especilly * Chinese . I found solace in some heartwarming words in which people overseas praised the behavior of Japanese people : There was no panic , nor riot ; They behaved calmly ; They gave way to each other ; Many people gave a han to strangers in need . I went to a Japanies Restuarant with my younger sister yesterday . Personally , I do n't like sush much but it was delicious . I want to say `` thank you `` a millian times . I did n't even realize the cough drops made my stomache worse . We ate sushi and after that drunk ice chcolate , so now I 'm very full . I dicide to take the fourth trial of GEPT . I feel like improving my English skill more and meeting many foeign people . My hair is like this phote . Is n't it a wierd system ? This does not make any sence at all to me . Gradually , her body weakend , and she hardly spoke a word . My Aunt said that she was sorry that none of Grandma 's family were able to meet her behore she died . The doctor said that I have an allerge to water from indoor swimming pools . I am an overseas marketing representative of a lighting campany . To my sadness , villains certainly do exsist in any society . There were lots of topings on it and it was so good ! I envy him because I wear contact lensis and it is a big bother for me to maintain it . By the way , I relly have to study English earnestly . The simlple things are the best things . I saw a beutiful forein woman 10 metters ahead at Ikebukuro yesterday . I forgot that I was wearing a mask on my mouth and a sumo print T - shrt . I do n't know wherther she was smiling or laughing , She was only laughing or smiling at me but I had a nice oppotunity ! I ca n't talk with a foreingner when I am alone . I 've just bought my new headphones ; ) I must admit , the sound is far better than my previouse ones . Some friends call me `` a English newspaper - aholic . `` Despite the fact that I had a hangover yesterday , I went to go to Roppongi Hills ( in Tokyo ) to see a movie with my freinds early in the morning . The day before yesterday was my freind 's birthday ! I like American TV Drama . . Gray 's Anatomy , Desparate Housewives , 24 , LOST , Criminal Minsds ( I love Mattew Gray Gubler ! ) . My Freinds ( One is Korean , Another is Chinese ) are more informed about Japanese TV Drama than me ( I 'm Japanese ! ) . After waching the movie , we took pictures . My freind who is Korean had many color pens and cute seals to decorate the album . After mading the album , we ate ice cream . I think that I wa to eat Cold Stone Creamery 's ice cream every day . I bought the Citypass in order to visit the ROM as the Citypass was cheaper than the enterance fare at the / for the ROM . I always persue my goals . I want to use more natural and native like expressions instead of awkard ones . I drew him a still life , landscape and an act picure . Igot out of bed , and opened the cartains . I fell in love with Robert Pattainson ! But the frist time , I did n't like him because he was cold to the heroine and other characters . Today my conputer is broken , so I did not wriet my notebook , I have many things I want to wriet but I am not good at english , I am a sudant and I am stady about fashion dictate , . . and today I am a little busy , because we have a exam and it is about english . ihave lost my confdence in my english . . . . . the future is grey I 'll eat foods that have a lot of dietaly fibers , low calories , and healthy , For example , konnyaku , wheat , toufu , etc . Inconsidalate and racist closed captions in `` The Tonight Show `` I am a cook , but I am also a student a univercity . I want to improve my English skills , so I am writing a daiary . But I have nothing interesuting to write . Boring couses and endless homework make me feel ignored . As is often the case with many animations , they have their origianls sources ( such as novels and video games ) which carry messages from the authors Toyota Motor Corpration , which is situated in the eastern part of Nagoya city , was an economic leader for more than _ _ decades in this area . I have studied Englisg at a certain English school in Nagoya . I should give up studing about prosthetic limbs in Japan . I had a confernce at the office yesterday . Since / Because I caught a chill from the air conditioning during the confernce , I felt worse . For example cucumbers , watermelons , eggplants , potatto and so on . I have n't written my jurnal for one month . Of course , I do not like typoon . I think young and healthy people should give up their seats to older peple or pregnant women in trains and buses . Honda 's shooting and assist were so wounderful ! ! ! I went into various kined of sports : It is special kined of dancing . My mother made my favorate dishes : ear shell soup , duck cuisine , etc . I was full in the stomache and empty in the head . ( ^ ^ ) After shopping , I dropped in for a cup of ice coffee at starbacks . Lerning Portuguese I noticed that Portuguese grammer is more smilar to English than Japanese . But they are also a little deffrerent . I somketimes can understand it while / by reading , but I ca n't writting and speak it . I still have n't studied wrtting and speaking . I 'm embarrassed to say it in front of you native English speakers but I am teaching English grammer as a part - time job . attached is my curriculum history for futher infromation . I searched the internet and found an interesant page . If you have interesant in Japanese and have time , you should have a look at this page . Because I 'm poor in grammer . It has taken shape under the influense of the social cataclysms of the 20th century . My firend give me this website . I think it is a catharsis for themself . However , I can not understand why an 11 year old boy chose to commit suiside . bussiness streets during holiday We are in our winter holiday , so I went to see the bussines streets without workers . Well this is enought for today . It 's delisious ! ! ! Frunkly speaking , I make this desion with worries and hesitation . I listend to a free public lecture in Topaz hall . He gave a recture on the ' Challenge toward Excellence ' He is only 31 years old but , he has had a successful carrer ( related to / in ) international organization . and I felt encourgement . If I could write english well I could have written in more detaily I 'm interested English , Spanish , and italain . That has made me want to be a flight attandance . If I use the wrong sentance please tell me the right sentance . Nothing brings you peace but youself . The best way to predict your future is to creat it . Recentry , I have been interviewed for jobs in China . becouse you are japanese , you can get huge income . Do you know waht foreign accent syndrome is ? My name is Bianca , I am Japanese and I 'm studing at university , I am studying English and little bit of Spanish . My hobby is walking arong at a park , shopping , and karaoke ! Christmas is alomst here . . But I think to go on a tirp on Christmas is good idea , because you can enjoy illumination for Christmas at other places you have never been and also sight seeing . I think this is defferent from English speaking countries , right ? somtimes we laughing , I might make a lot of mistekes . I was suprised by my friend in the UK on Skype the other day . Acturally , I cut my hair in the front by myself . I said to my boyfried . There are many children who can not appologize . Yesterday , I read an airtcle about `` Lang - 8 `` in on the Internet news . It was very defficult . I am dissapointed by my English , but I can ` t give up my objective , so I believe I can improve my English , and absolutely achieve my objective . Anyway , I have been writing English essays recently because I need to write one next Feburary . I could communicate with them , but when they got drunk , I couldn n't communicate with them . My englush is very limited . I boiled water after adding salt , then boilded the spaghetii . While boiling the spaghetii , I sliced two pieces of garlic , cut a chili in half , and minced some parsley . I put some olive oil into a frying pan , and fried the garlic and the chili over a low flame until golden brown . I removed the garlic and the chili from the frying pan and added some bread crumbs . For instence , if you say something like ' long time no see ' if you want to greet your old friend , because I 'm working at foreing company as a member of HR department . In that stuation , I thought he was insain and very crazy . He said , `` mabye Jinwoo comes to school at 6 : 40AM . `` Breakfirst ? I just did arrangements around my desk so calmy and looked around in the class . Whoever I am , it 's unavoidalbe to taste bitter feelings , is n't it ? I like to play videp games . Yesturday afternoon , Dave prepared to join a baseball game , but I went to Tokyo Disneyland on Septemver 13th . I thought there were not that many peple . I was invided by a friend who is one of the hosts . After thant , we were explained I want to have more oppotunities to communicate with others in English . I am a beginer , but I will work hard to master communicating in English ! It is very good for theri English . but actualy , I do n't have confidence : - ( While talking with her , I realized that I prefer to hesitate first and then act . Here is one exampe If you get a brand - new thing ( some kind of accesory ) for free , do you always use it right away or wait until later ? If you sayYes , you 're a person who likes advanture and lives now ! Mmm , , , I ca n't make long sentences : ( but only me and one otherone had / got 100 % Additionally , I wolud like to help people in need concerning Japanese ! I have to resarch about things to do in China . A complaint letter ( Writting Task 1 in Cambridge IELTS 1 General Training ) I feel so glad that can improve my written english this way . And thanks to the people who accepted me as their friends on this website . I will write something on this website and also deal with some of my friends ' problems when they learn chinese . We can help each other this way . Meanwhile , I also want to communicate with them . So if anyone sees this diary and also feels like they want to communciate via MSN , my msn screen name is honeyan @ live . cn . He hit his head hard on the celling and got a cucussed . My Vietnamese Mamam Many people tell me that I 'm craise because I 'm studing Japanese . `` Japanese is a dificult language `` ? I am realy studing Japanese , and it does n't matter what people say . First one I met , I first met in Los lostangels when I was in second gread . We went to a lot of sightseeong places like Dizney land , Universal stadio , Hollywood and so on . Recently , CO2 iscausingacid rain particularily in Europe . As a result , forests ihave been injured . For example , the higher the global temperture is , the higher the sea level will be due to melting ice , as a result , some ilands will sink . Of course , people who live on these ilands will have to leave their country . For these reasons , I believe that thebenefits are outweighed ( outweighted ) by the negative impact automobiles have had on the environment . They have lived in Melbourn ( for ) about 40 years . I bought a wine - colored cut and sewn . I have been seeing him for two years and three manths . I will buy a Christnas present for my parents next Thursday . I read some comics and plyed video games . During my business trip on Wednesday through Thursday , I found a cute cake being sold at Marui ( depertment store ) . I bought two pakages impulsively . We are keeping touch since 2007 and he would help me make other canadian frineds through Facebook . It is said the flapping wings of a butterfly might creat slingt changes in the atmasphere , and , thus , ( it might ) change the path of a tornado or prevent the occurence of the it . It 's much like a metophor which can be seen in movies as well as in our real lives . No one knows what will happen , since we 're not foretellers and ca n't predict the future . One of my friends called me this evening and said , `` One of my friends in high school has died `` . It is dificalt for me to accept that , even though she was not one of my closest friends , she ( always ) let me coppy her homework before excam . I used to go to her house , where we liked singing ( songs ) and ( ? ) shipping ( ? ) quite often . I did n't expect her to leave from my life soon like this . I feel sad . I used to cook thai food with her , like pudthai . we were relly happy to do it because I told her that I could n't cook anything except an omlet . Also , I ate the expensive food at her house because we bought a lot of thing for that , you know , thing near her house . It is really expensive but on that day , we did n't care . But , we cared about whether or not we could eat the food , because maybe it would n't not diliceise . I just didnt hava a chance to use it . So , I resistered and wrote this . I hav n't spoken in English for a long time , and I know little about I really do n't konw how to improve my English . I have found , so far , that this system is potentially very beneficial for me to keep posting entries , especially since I am having a hard time keeping dialy updates on other websites such as facebook and so on . I am not saying that lang - 8 is better than facebook as a SNS site , but this might be a system that suits me well and it encourages me to continure learning on a daily bases . The 5th day , Gymnalism But I think that practice is very impourtant . You can make different freinds there , speak a different language , the most wonderful thing is to share your own culture with others . I know I am not that ambious , and always have the tendency to doubt myself . I want to improve my English ablitly and gain more teaching experience . My idea throuhgh my experiences is that the brain functions more efficiently in the morning than in the evening . Noboribetus Onsen is called ' ' Onsen paradaise ' ' . This is creasy : ) Second news : now I lern English , but my work somtimes eats ( takes ) time from lerning : ( Third news : I am preparing my pfoto exibition , but I do n't have ( enough ) time for it ! I have learnt Enlish for a long time , but I can not express myself freely in English . Language enviroment , frequence of usage and not persisting in studying may be the reasons why I can not make further progress . The first thing to do when I got up in this morning was to serch for the result of Classico , a match - up between Real Madrid and FC Barcelona , on the Internet . I predicted Real had a little advantage considering about thier recent performances . I was plannning to have an English meeting with my colleagues before I actually entered the company . We , the new faces are all hired as English - speaking sales representitives , so I thought it 's good for us to talk in English together to keep our English skills up to a good quality . I talked to Hayashi - san , a female co - worker who spent her high school and college days in Australia , about my plan to hold the meeing every weekend . I will talk to them and suggest thet we have to prepare something to discuss beforehand . Premarital sex is becoming widely embraced in Indonesia nowdays . Those parliament members are prone to polygamy , adultery , and corruption while they talk about how immoral the youngters have been . I went to a restrusant to eat food . Finaly I finished writing my resume tonight . It was so difficulte for me to write it in English . It was already more an half year that enroll in this website . Unfunately , it does n't make sense to use this website . I hope that there 's somebody who makes me understant and guides me through this strange world . My husband said , `` I am being transferred to HongKong Kong `` . Everything is very interesting and unsual for me . The test I took consisted of 2 parts : lisning and vocabulary . According to the test result , my lisning skill is in the upper intermediate level , which means my lisning level is getting better than it used to be . Which verds may I use in the abvoe sentence ? The reasosns why I study English I do n't want to stop challening something . I have lots of things to study about English , like grammer and vocabulary . I walkde I was in the Botanical garden on wensday . My excursion was realy interesting , I did n't know that the Blue Spruce arrived in Russia from Nothern America , for example . Up until now , I have worring about my English too much , so now , I have decided to go to the US . Sumou is the traditional wrestling of Japan . I often watch Sumou matches on TV . Yesterday , I helped my friends wroten compositions until 3 am . So I 'm so tird today . I saw a scean when a person threw his cigarrete to the ground from the window of his car . Actually , my enlgish is terrible . I have been taking an enlgish class for about 1year . Many people who can speak English fluently are intoroduced in the book . Or I want to sllep more . I made some new frends there and talked to them ! ! So I will give him some tommorrow morning . I got him smling , so I became happy ! I heard that 3 big torched stages will be on Kalakaua Ave and tere will be lots of hula shows for 4 hours ! Actually , I 've been going out with my girfriend ever since my practice teacher time . on a snow - coverd ground Sakuras have beagn to bloom . There are many people today at the entrance celemony . So I hasitated to go there , but today I dare to go because the weather is good . the place where the shopwas built is unconvenient to customers . Today , when I came home , My son had olready come home . The eleventh issue will be released in Autum next year . In addition , as many Asian countries surpass the hardles for a developed countries ' tourist such as sanitary devices , etc . , it is getting more and more difficult to attract foreign tourists by ethnic and historical taste which is one of strongest resources of Kyoto . The other day , three of recovery workes in Fukushima nuclear power plant were exposed to radiation . Although there is conflictin information , I was disapointed with its management system . Doctors tried to save her , but she was injuried very badly . Fortunately , he has admitted that his clothes need a litte bit of updating . I work at a cram school for elementary and junior high school syudents after school . If you like mthematics , let 's try it ^ ^ Recently , I read a book that introduced a lot of English - praticing . It looks three dimentional with special glasses . This is my first journal in lang - 8 and I dont know what I should write on this page but I 'll make an effort to write something and I hope it will be usefull for me . I then discovered that my pronounciation is bad . I love Howaii The island is so wounderful , and from that time , my dream has been to live in Hawaii in the future . My major was psychology and I also wolked at the university . The people around me are veri nice . But , I want to sutdy English . I want to talk other people and learn about ohter cultur . I began this trial last week which made my living costs deciling rapidlly and also make me eat healthier . For instance , when I watched South SouthPark , which is a famous American anime , there are many words that I ca n't distinguish . ( Not only slungs . ) So I 'll try it with an accompanying CD of a English diglogue textbook . In college , there are many books , laboratories and proffecer . It is fun to dance 50 minutes , so I want to get slnder body as soon as possible ! ! ! ! ! ! ! ! ! ! ! Actually , I have dicided to go and work in Australia during holiday . If you speak English and maybe are interested in Ruccia , or Russian language I guess you 'll have something to talk with me about . It 's our faverite park these days . He palyed there for 40 minutes , then we went to the area to play with some small cars . It became the time to eat lunch , so we went to restrant near there . He knows panda and pig before I even notie . I 'm a college student in Japan and will go to Vnacouver this April . So , I want to improve my English grammer ! when you go to various countries , you will learn more abot your country than abot those countries . However , this does not nessesary mean that people in rest of the world live in the same way . I like to play guiter . I have been playing guiter for 2 years . My familly has ( * or consists of ) seven people and a cat Reo . I will try to write about somethig interesting tomorrow . and I asked to check out twoo books , Today there is no scool , because it 's Sunday . But my sister sometimes make an amonymous phonecall because it 's an company charge . I 'm so happy : ) and shooping is exciting ! ! Today , I made a manuscript for a debate tournament with my freinds . I belong to the debate club at my univesity . In the Roman cicus , one of the most popular sports was performed by a person who leapsaround . She was obliged to vow opely the she had been there . My company sometimes holds farewell parties , Chiristmas parties , year - end parties and so on . The restaurant next to my office holds a promotion that we can get free drinks for an hour for 10 poeple if the business card we drop into the box at the restaurant is selected . My friend was very tird because it took a long time . I have decided to stay wiht an Australian family . I want a lot of imformation . A crossing in this city may be very suprising for foreign people making a trip to Sibuya for the first time . I repeted NPR news out loud by reading a transcription . I havet to practice more ! I will graguate in 1 year . Looking good ! we had an opening ceremony in my school and I must stady hard to I am a profecional wrestler I 'm avarable on Monday . Now that I know about this , I belive my english will get better . I heard the grade of TOEIC of Taiwan citizens was lower than Japane , Korea , . . . . So would you please share your exprience of learning English or another language with me ? I do n't know why , but I overated snacks . . . . The time of witing a diary has gradually shortened . For example , my job starts at exactly 5 o ' clock and it takes hald an hour to get there . We are trying to speek solely in English during the meeting . Tomorrow I 'm goint to dubbing in Maldives . However , some people will keep studying languages as long as they 're not losing their interests and foudness for them , even though there are many barriers to learn them . attend : I dicided to attend the language school in Umeda . occupy : In this company , women occupy 60 percant of the excutive officer positions . concentrate : I was scoled by the teacher and told to concentrate on the class . persue : Humans have been persueing the truth , but only few people have found it . Hopely there is someone who can help me . Althought I had made a studying schedule , I am way behind it . But fall was coming towrd us in silence . Fisrt , I want to take a city - tyour bus around Seoul . This website of course allows me to keep practising English , but only my writting . I 'll write my french `` hello post `` larter - I have my head full of english now due to my work and I 'm not good at `` switching languages `` yet . Today I practiced playing card magic . Actually I did n't excercised yesterday , either . This is the first time we have lived far from our home so we are feeling very unhappy and miss my family so very much . especilly , I miss when we sit to eat together and when we play something together . All students that study abroad say they have the same upset feelings . That is , they miss their family when they have a celebration and they always want to go back immadiatelly . I guess that famous people can permit themselve strange things which become elements of their style . - suger , 1 - 3tsp - Put mint leaf , lime and suger into tumbler . Every morning I go to Sterbacks coffee at 7 : 30 . Hallo ! ! Because I tought that having a big room could lead to an expansive life . I have not done much exceises and have drunk and eaten a lot . Diseny and Japanese animation 's characters are illuminated there . I 'm learning English to communicate with foline people . Please check my sentense , and pick up my mistakes . I are breakfast and went to the liburary to study English , but I coughed so many times in the library that I went back home at around 3 : 00 pm . How Will I Spenf My Spring Festivel January 1st on traditional Chinese canlendar is Spring Festival . I hope these could come ture . I do n't think I 'm contacting him until he contacts me , because this reprehensible audasity ( ! ) has made me all sulky . And I 'll also hlep other Chinese as possible as I can . I palnted sweet potates last Sundy , I also palnted cuvamber , eggplant , tomate , corn and watermelon . I 'm lokking for big harvest . A certain research center desinated night time work a second degree carcinogen . Tell you the truth , a cuty was sitting in front of me and I wanted to pretend that I was studying . . . Everything is beyound my imagination . Usually my landlord notices me when the visiters are coming . However , somehow my landlord and a visiter came to my room without notice . . . ! ! But , how could the landlord and visiter know about a story of Gachapin ? This makes me cofused because I feel he 's like a little boy but , I 'm gon na leave my country to go to Canada in 2 months . We did n't talkin about these feelings but , someday I want to have a the time to talk about it [ with him ] , but I 'm scared that it will change our relationship and feelings . When we see an old couple jogging together in the mornin , they look happy . I made cake of maccha for my mom and gave card from me , dad , and my brother . At the seminar , the instructor said that Japanese tend to feel nervous or tense when they make a presentation for many lisners . 3 ) It is unusual even for Japanese to speak with heighest honorific grade . `` I got a lot out of the expierience . `` `` I got a lot from the expierience . `` ? I have only simple sentance , and vocabulary . Please read my sentance , patiently . Some people think that they can learn better by thhemselves than with a teacher . Others think that it is always better to have a teacher . Which do you prefer ? Actually , I 'm studying Microsoft exel by myself using several exercise books right now . However , the most difficult thing to study by oneself is contunuation . We can learn passively while being tutored and it 's easier to start studing . But I decided to get a new notebook for my convinience . In additon , Japan was the winner of women 's W - CUP football today . ln order to get rid of my bad luck , l 'll get out of school and have fun witn my friends this weekend . The first time it was a German guy , he had been seeing a russian girl from Sankt - Pietersburg before our conversation , but they had down split up . We were talkind about different writers and he mentioned Bulgakov , I said Bulgakov is a Russion writer , he was surprised and asked me `` Really `` , I answered `` OF COURSE ! ! She 'd been lerning for 5 years . Despite this resistence , I wasted 4days and about 5000yen . . . . `` Pirates of the Carobbean : On Stranger Tides `` was exciting , too . I go to work by train and walk for an houre . I do n't like the train becouse there are so many people on it . I think that it is a good thigs for children , however it is bad for adults . This story is realy sad and breaks my heart . The pitches are written in flet numbers , so tablatures do n't show musical ascent / descent very well . Evencally , I stayed with my friend . Over 30 people came to the Christmas party , it was lovly ! ! Wasabi is Japanese horserasish . I plan to go to Germany for a bussiness trip in June . I am in the blass band Is there any language course from April to August 2011 befor I enter I want to have many frinds throughout the world / all over the world . Kate has her dinner in a scholl canteen . Since I 'll stay my home for two weeks , I ca n't see my dormitory friends durng the term . At my university , freshmans to choose one of these courses for the next year : literature , intercultural communication , linguistics and international relationship . I bought a chicken and rice casserrole , pasta and iced tea . I like to eat spagetti . I do n't like hot weather , neather do I like cold weather , but if I have to choose one of the two , I ( would ) choose cold weather . I took a picture of the shrine and the sweet called ringo ame , or cand apple . My wardorabe needed to be tidied up . I go to the lessons evrey Sunday . But finaaly I found what I exactly want . and I jusrt wanna learn more forgein languages , I want to be a traslator . Besides medicine and injections , what mythod can help cure a cold quickly ? actually , I 'm not good at speaking and lishtening to english . . I will plan a weekend schule . in the Afternoon I will be watching movice at theater , and eat dinner on a newly - opened restaurant near to it . Sunnday is my classmate 's wedding day , I will attend . What is the difference between present perfect and present perfect continous ? I am a student , but I have a job as an instracter in a fitness club . The menbers of the FIFA World Cup were announced . Today , we had an English class and watched the drama Full Fullhouse . So eterday I look frearfuliy at the scales . One of my colleagues said that if the suspicions and misunderstandings about the conflict become amplified , a war will inevitably happen and our country might be dismembermented into several small countries . If that is the case , I will have to apply for a passport when I go back to my hometown ( which is far from my workplace . . . ) I hope I can have more opportunities to practice with natived English speakers . I thougt that I should be carefull when driving my car on ice . It 's very cool and confortable in summer . I will see many animals in a famous Zoo and do horse trecking in Hokkaido . It looks so moderm . Most of the vehicles in the parking lot were cars and scooters . I rode my bike into the parking lot and I asked the guard loudly and dinified , `` Excuse me , where can I put my bike ? `` . Well , I was succesful on the first step to being special there . Finally , I found the most approprivate position for my bike . Still having confidence , I went to the stand , and after obtaining my monney , the bank teller asked me for the receiving fee . It took a few minutes to colectted all the small change in my purse . A heart that is always waiting for you and satify with your love . This way reflecs an indemocratic face of America . Oh , America . If you call for respect of human rights and human dignity , why did you throw Ben Laden ` s cropse in the sea as if he was an animal not a human being ? Second , I decide to reserach literature for my theory 's title with my Finally , I want to work on improving my oral skills and not being nervous while I am reporting somthing . I was supriesed at how crowded it was . I shoud study English very hard . It shows a thema park , hambuger , cellur phones and Coca - Cola . Suprise ! The new room is wide and clene . I apologise if some of you feel ofended , it 's just a linguistic possibility that crossed my mind this morning . He said a drunk person lost conscinousness ! I told him the address to anather hospital , because my hospital does not have a CT scanner . I did n't want to watch the concert standing , but I could n't wacth comfortably sitting . The door - to - door percel delivery is ridiculously expensive , but I have no choice but to ask them . It 's been a long time scinse I had wrote before . . . . Onece upone a time , there was a man who had worked hard everyday , all the time . One day he cought a cold . His illness was not bad , but he could 't stop his nose from runnning . After a while , finaly , He came up with an idea . he looked up and just stared at the fluoresecnt bulbs on the ceiling , because he was working in his offise . 4 , Tha plan was executed as originally scheduled . Momo is so smart and popular among dogs in the neighborfood . It 's so expencive . Despite that this book was written about the devil it is the smartiest and the most amazing book I have ever read . This scene is describe so detailed , it 's like the autor was there . Recently I watched a TV - programme about Bulgakov and found out how he wroute it . His wife wroute it from his words . about photogragh . I Especialy Iike the kappa sushi which is a Japanese high tech sushi shop . He noticed us and he parformanced with melodramaticly for us . I had always sent the picture from my computer skin to her becasue I ca n't anwers her question since my sister bought the computer I never had to ask her about speck computer . One of my friends came to my computer 's contronl by using some program to help me check my computer . I did n't know it had that program , and I am relly serprised how he did it . Now my senior is looking for a cheepest airline chiket . This week I talked to one of the menbers of the Eglish practicing club . However , this morinig I went to my office for a little work . Thus , the festival was rly excited . And I had lanch at a ramen shop with my labolatry members . I got ta go to the festa again tomorrow . I you hava time , come to the festa . Please look at this setence below . I do n't want to face a grammer book every day ( it 's so boring ) , and I do n't think it has a good effect on me . This is my first diary on this website , so I ' , m kind of nervous now because I am not sure if someone corect my English or not . it is a good nigth I am in tha computer , my family is asleep beacuse is late at night ! ! . . . It is 5 miniuts walk from JR Himeji station . I wii work as a translator . I hope I speak Japanese and English as if it were my native lanugage some day ! ! So I went out to meet one of my ex collegue . The cherry blossoms of the spring came litte bit late this year , but the mood of spring always makes me happy How abou you ? According to the unoficcial information from a friend of mine , who is the finalist of the former astronaut selection , the authorities will give the examination every ( ? ) 2 or 3 years for some reason . People have trouble finding jobs and they end up becoming homepless , so the government needs to help people to find jobs . The other is to try to prevent homelessness by providing accomodations , such as hotesl . Orgsnize medical charts I have a lot of thing to tell you about my hometown but I scare you correct my diary for a long time please let me a bit to tell you while I stay at home and write my entry . I do n't have that much to tell you , but when I went to outsite I have a lot . . All the people do agriculture and take care of bufalow There are lots of beautiful montains in my hometown , like ZiJing montain . We live nere ZiJing montanil . I 've just added the Lang - 8 to my favorit list . Happily , I do n't have a faver . So , I went to the English sppeaking Salon in school and I spoke English . But I have difficulty speaking corrctly what I would like to say . I watched what was happening in the northen area on the tv news . Now , not only Japanese but also pepople living in abroad worry about the effects of radiation , but do n't worry . We got up at nine o ' clock and took breakfast at a restrant in the hotel . We packed our baggages and checked out of the hotel at eleven o ' clock . We had to be at the hotel 's loby , so we left our large baggage at the hotel . Then we walked down the river to Marlion Park . About thirty minuites later we arrivedat Marlion Park . Marlion Park has two Marlion statues . Mixd feeling ( s ) One is Mario , she 's a Japanese that everyone ca n't tell / guess the age of , and the other is Sinan , a turkish that is a little bit mad ( I mean funny and crazy , careless about the rules ) . So it 's going to be a very fun and intensive semester . I think during the preaching class , the speaker aroused my interst in the bible . This is my firt time on this site - I 'm excited ! Hope to keep this dialy for a long time enough to and this day , I 'd like to take a walk at the park with Earphones on while listening to songs of my favorate singer , ' Brian Macknight ' . . . When I met a doctor from Standford amonth ago , I coul n't talk fluently . How can I have confidece ? Please tell me , What is the diffarence bitween NO and NONE . He had a notebook that he was cariing all time . I think I love her . `` 7 mounths later , they got married . I went to Hakkeijima Sea Paradice yesterday ! Chao ! Today I met some frinds . Recently , Lerning English has made me very tired , but Taliking with frinds in English is very and will make me I read Japan Times Online to collect information about the Japanese ecconomies , affairs and events . In Japan , ' Valentine 's day ' has a different meaning from other countrie . I , a holic , love this season very much . How do you spend valentin 's day in your country ? [ 2011 - 2 - 15 ] Suprise Today was the happiese day in February . Last night , when I was attending class , a sellphone call made me nervous . Why ? Because one of my classmates called us asking if someone had come back to the dometory , but all of us were outside except for that classmate . imaging no one was in the dometory and my classmate saying that he heard someone getting in his next dometory , we knew that there was a thief getting in it ! so we ran out of the classroom immediately and towards to our dometory ! Fortunately , after arriving at the dometory , we discoveried that nothing was stolen , We were aware that the thief had the key to the dometory , maybe the thief was a student who had even lived in the same dometory ! This traditional festival originated from an old legend . ( The next two paragraphs are not writen by me , I just want you konw the strory . ) when my teacher heard the sounds that my classmates made with the Dan - so , she dicided to let them pass the exam because they made the correct sound . It was so exciting and unexpectable . I know Japanese people are notrious for not knowing much history . actully I 'm surprised , its awesome , it really is . Yesterday I made a foreign friend through Fcaebook . At first , we were devided to two team . Of Ofcours , the team being questioned have to answer quickly . I work in the depertment store and sell a lot of baked cake . In Japan , men who received chocorate from women have to give some sweets to women ( on White Day ) . By the way , I will go shopping with my best friend tommorow : ) Becouse her school 's admission exam was conducted there . She wrote a card that says `` Thank you for coming to my town and you guys are so cool `` , drew a picuture and cut it in the shape of a heart , even though she had n't seen them yet ^ ^ ; I was a master of a celemony for two or three competitions for the master of the sumo wrestlers , so I know him well . I pretended to be the person and said `` I love you `` to my primary school classmate , and she beleved it . When my mother and my anuts grew up , and they got married and had babies . My favorit restaurant My favorit restaurant is `` Omoya `` , located near my conpany in Yoyogi . I always looki forward to eating a traditional dish of Japan that is made from seasonal fish and vagetables . I read Sherlock Holmes , I was so exicited , Can you immage composing a picture with nothing eales but hair ? Can you imagine making a picture with butterfly wings ? I ca n't immage this , so when I saw the pictures , I was deeply moved by the composer 's patience ahd creativity . It is difficult and hard for me to study English but I like to comunication foreigners so I like studying English alot . I was uploading in the internet for languge exchange . so I rejeted him , but he has been sending me ( SMS ) messages and calling me untill now . We were teaching each other , but after learning he took me to a beautiful river and he said he is looking for a frienf . . I was very shocked and became so angry and disapoint at the men of Singapore . Finally , I graduated from graduate school of engineering and got a degree of Master of Enginnering today . I usually spend my time drinking with my friends and watching america dramas . Today , I found myself just whatcing america dramas again ! ! A simple question just popped up in my haed . It 's lik Venice in China . It was all lols for me but I conld n't say anything . I met some foreigners and many students who also want to practic their language skill . I know it does n't make sense but I would like to know if is it gramtically correct . Is that ture ? I 'm supossed to visit Germany , Belgium , Holland and Italy , at least . Including : Meals ( breakfast for the 1st and 2nd day , lunch for the 1st and 2nd day , dinner for the 1st day ) . Bus ( from Hanoi to Ha Long Bay ) . Guide who can speak English , Boat . Crusing and tour of the limestone cave . Thr story is hard to tell but it is wonderful for me . The scene was recorded on video camere and the article said ' as if he were a magician ' . The person I admire is my grangfather . When I was a child , my grangfather tanght some useful knowledge , for example , Math , Chinese , science and so on . My grangfather is very kind and courageous person , so his students all like him . My grangfather is the person I admire . I have no friends here to studyy English with . It was too early such that there was no any other costomer yet excep me . We went to a library to study until 4 in the aafternoon . Then I left for the post office to claim an official ducument . I remember your smile from the past that never was , when we all lived together in a valley , in a forrest . It 's a plesure to meet you . I thought my order was recieved . I 'm working as a cram school teacher anf I 'm good at Japanese ^ ^ The tool was made by a good programer . My farst objective is to keep on writing in English every day ! I 've written an arctical , but I will try my best ! ! ! : D Thank you friends for caring so much , I do appreciate any messages or corrcting from you ^ ^ My roomate has been keeping three small turtles . I was looking forword to reading this new series , but I did not notice that a new book was sold . Luckly ! I 'm happy to find a creative store that sells many creative , useful things , sush as , milk in the shape of lamps , fried eggs in the shape of lamps which shimmer in the yoke , flowers in the shape of electric fans , and so on . But the most intetesting thing to me is a lamp that is like book car and can shine out its edge . It is so convenient to me in reading in the dark that I can read commic books and wo n't be found by mother . CS5 is producted by Adobe . My daughter has been going to this school since kindergarden and she likes it . Well , I think I 'll write everyda , Although I must go to work leaving her alone , I thknk that our time together is still good for us . My wife and siter - in - laws will come back home and we 'll have a party . As you know , when experts advise you on something , you might accpted it without any notion of whatyou have in your own situation that they do n't know . Why 's the deley ? I 'll definitely order the rest of the seriese . I found that some of my firends had been here . I like it vey much . Another was making the temperature inside their own house as cold as the temperature ouside . What kind of alchols do you like ? Some flever are like passion fruit , woods , or smoke . At the event , many companies prefferd whiskies to visitors and the event program included an artistic performance and a cooking class featuring whiskies . I 'm going to watching musical `` singles `` with my office collegue . Another famous scenic spot is Songyang Academy , which was built during the Nouth Song Dynasty . By the way , I will do a presentation for my president the day after tommorow , so I 'm a bit nervous . `` Get everybody out I want them all actio * * * `` I am now in the 7th semester of Ingineering school . Next , _ I _ Icreate character designs . But I have something to do , for exanmple , cleaning my room and preparing for tomorrow 's tasks . Since I came back to Japan , I have seen my firends who did n't see for a year . I talked to her by Skyp at the first time . The Skyp is clear . There are many kinds of ppendix . The system to register courses here is more compricated than at Tohoku Univ . Most of the courses repuire that we get permission to register . When I went to an Asian grocery store , a clerk tolked to me and began to explain the rice sold in the store Today is the seventeenth day of the sixth month of the Lunar Calendar in Taiwan , and the seventh month is called Ghost Month ; namly , Ghost Month is coming ! As interesting as these activities are , some still regard Ghost Month as an unluck month ; hence , some keep out of playing in streams or sea , some go to temples every day , and some are very careful of what they do and say . This was the first time in a long time , becouse I had a university entrance exam . I am lookin forward to him growing up . O ~ M ~ Godness ! ! She said , onec she was called into the police station because she forgot to bring her driver 's license while she drove . Thank you all for your patience nad kindness . facinating way to imrpove writing However , she is so modest and said `` I do n't need notihg . It is difficult to select presents for women , espcially for girls . I am learning English and Janpenses . He was a great driver in the narrow road headding for the river . I was very happy to talk with my friends and watch the blightening water splash . My grandfater was Filipino and my grandmather is Japanese , so my moter is a half Filipina . Though I remember words everyday and when I read an english artical it is so hard and I come across so many unknow words . But I ferventy beliver that what makes you scared , will make you stronger ! But I found out that I was easily adicted to the plots , not the English actor 's lines . Fires in the forests around the sity are still raging , and if the wind changes direction , the smog will cover the streets again . Ra - yu is chili - infused vegitble oil . Well , to make a long story short , I won a prize from a TV program that entitled me to take a picture with a baby panda at the Chengdu Concervation Center in the Sichuan Province of China . While listening to the global news from London and giving my daugher piggyback , I wash the dishes . This is [ probably ] because I slept with only [ a ] t - thirt [ last night ] . I 've made a dress for my doughter . I have made my doughter 's dress which is pale yellow so she wants to be a princess too . At the moment I have my music turnded up really loud , because there are horrible sounds outside . One of my neigbours seems to be having his birthday today . But they are playing the instruments in a completly wrong way . . . it sounds awfull ! Today , I 'll introuce to you what I have been trying to do recently . Ordinally , I do n't feel comfortable with the atmousphere , and I 'm annoyed with them . This attiude is better for me than being annoyed . In summer there are no temperature differences because it is aways so hot . Do you have any ideas or do you have any suggestions of good reciepe ? Generally , Japesen girls like natural color when they wear make - up but in the dark place , we ca n't see seer color so she thinks vivid color make up may become a trend . I have to choose 2 subjeckts for passing except obligatory maths and Russian . I am inclined to choose ( what is the difference between `` to be inclined to `` and `` in favour of `` ? ) English and phisics . I am very hesitant about phisics . I can leaarn by heart all dates , but I will remember them only 3 - 4 hours . But now , he has found hisself and he is reflecting about what he did . Evey year , on July 18th and 19th , a summer festival is held at the shrine of this town . I dushed out of my apartment with my kids , to the street . the leader of the mikoshi encouraged its carrers . And the people on the street applauded to the carrers . I am not good at summarizing stories from books and movies , so this pracctice is tough for me . The story begins with humans destroying all natural resources on earth . They now have to seek resorces on other planets . They discovere another planet that has a lot of resorces . However the resorces lie in the places where natives live and they will defend them . One of the AVATARs learned how the natives think , what they belierve in , and cherish . Meanwhile , the other human beings attacked the tribes and their sanctuary . They believe in spirits and chrish nature . Level of Chinses college students ' English As a college student in china , if you do n't understand some simple English , you 'll be certainly laughted at . I 'm a third year university student , my major is Japanses . Only our Japanses department does n't study English in the first year . But we all have to have CET4 or CET6 ( Common English Test in china , only college student can take ) So we pass the exam by using what knowledge we remember from high suchool . It 'll make me good at pronouncing English : ) I think pronunciation is very important in order to have a convercaiton with native speaker smoothly . If you are falilier with Taiwan , please let me know about I heard this is the real sise . Maybe my pace is once a manth . 2 weeks have passed since the earsquake in Tohoku . Japan has recieve a lot of support from people all over the world . And white symbolizes puriey . Everyday , her smil makes us happy . I do n't know if the same course tracks exist in the US , and I 'm not sure that the lebral arts or the science tracks have the same meaning as bunkei and rikei in Japanese . I enjoy listenig to and singing korean songs , The two brothers are very vigor and said to have fights constantly with their mom . This thing is quite usefull to me . He has a great stamina , and doesnt n't stumble easily when someone hits him . The man feels that the increace of the Health Center 's fee is still a good deal because it is still cheaper for us than using other company 's or pharmacy 's . Actually , we can save $ 65 by getting vacctination at the Helth Center . In contrast the man says that you do n't have to pay , if you do n't need to take the vacctination . In addtion the man adviced her to wear warm clothing and use an umblella to prevent cathcing a cold because she always ends up getting sick during this season . I took a morning bath with my son and had a breakfirst with my family afterward . We made an appinment to meet at a cafe near my house . At first , I introduced myself , then I asked her some questions about her exprience as an English teacher . I mentioned to her that my interest is politics , so for example , we talked about why the prime minister is ( so ) unpopular , or what 's the differnce between the new immigration law and the old one , etc . I wish I was a supperman who can do many things at the same time . My Personal Histry No . 1 Aug . 282010 Yahagi was one of 12 military families who supported and guarded the Japanese emperer . The emperer called `` the decendant of the gods `` had landed on the island of Japan with military families . First off , do not associate with the killjoys , bacause these people keep you from laughing and make your life a state of sadness . Therefore , it is better for you to aviod them , because you will definitely be badly affected by those people . Secondly , serround yourself with what you love . Moreover , be satisfied with yourself as you are . Do not think about your height , weight , or diseases , bacause thinking a lot creates worries . But all I did for preparation were only Lang - 8 and conversational ressons 3 times a week . But my youngest son was hanging around the sutadium during the match . Do you mind if I give you money for th T - shirt and the ticket when I meet you ? Some people say he is a fairy , goast or illusion , but we do n't know the answer . If you have some good advice , plese let me know . Saving electricity is an inportant issue in Japan . Head office and factory have keep temprature at 28 degrees . But I am a sales replesntive After that I have to go to outside to visit our cleants I hasitated to buy that ( it ) , but I tried . Becouse I have watched them a lot of times . Recently the weatger is so bad . exam quistion I drank TAPIOKA ! ! Returning to the song , I think that witout hard work , you wo n't speak English well . My school is in Sourthern Seoul , and my house is in Yong - in , Kyeong - gi province . It 's kind of irritatng . I have no choice but use that transfortation . According to wheather forecast , a typhoon caused the rain . So I was a littele bit disappointed . English is very diffibult to master / learn . If we meet someone in person , how fantistic would that be . Then three peple continued the discussion . We talked about how we will meet at Tyler 's house in our dreams . I will prepare Thai foods and neechan prepare Idonisia foods . I was pushed by many people and I had to be in an awkward position like in tha Matrix ! They can live with litte water because the hump has water . Whne I was a student , my science grades were very low . I 'm writing in my diary for the first time in many mounth . so I have n't wrriten English sentences at Lang - 8 for a long time . and I am going to attend the international forum with affiliated school students this autum . Some Affliated school students are students from foreign countries , , I was annoyed all allday long For example , some homework and desiding the subject of my graduation thesis . Skupe is for learning . Avater is one of my favorite movies . I 'm little nervus About the mine accidenf in Chile At first , I was happy and impressesmd by the news that all the miners had been rescured . After that , I felt a little starage . Why did the Chilean govornment agree to re - digging such a dangeorous mine without appropriate researcing . The attached lenz is mine , a Nikon AF nikkor 50mm F1 . 8 . I 'll play with my juniora shool friends tomorrow . I hope I can meet many good friends here and exchange launges . I belive learning languages is same as learning another world . Today , I was reading many magazines about delicacies in the bookstory . Brackout ! ! It was a brackout ! ! Today is Valentatine ' s Day . ahee ~ chreer Up ! ! ! ! Could you give me some information anout this song ? There were many beutiful traditional buildings . I ate sandwitches , scones and a little chocolate cake . All food funtastic ! ! ! I wondered if I was prioncess . I have visited Kasse . I answerd her that it was a story about a person who became crazy because he read too many books . We laughted . They were done by artists from the Impressionnistes movement . I hope that I will be able to meet nice friends through my diary on this wesite . When I was reading passage about a new contemporary art meseum in L . A . , I found something that was n't clearly deliverate with it 's meaning . The phrase that I did n't understand was the follwing , `` A successful Broad museum would go along way toward cementing that status , which makes the possibility of its failure that much more of blow . `` The story is about a TV reporter ( Bruce : Jim Carry ) who has just losen his job , following that , many unluck things happen to him . Getting to know how to speak the language is an intersting thing . It is okey even if it is a black one . Okey . ) It was inconvinience but I thought it was kind of funny actually . My brother 's friend 's housse was kind of under water . Fortunatelly , I live in the highest area , so my house was OK , somehow . I have also read the news just now , and according to this , at least 51 people were confirmed dedad due to `` Ondoy `` storms and 280000 displaced due to flood . Aplir ( ? ) 10th the starting pitcher was Eric Bedard . For example , when I buy somthing priced A $ 1 . 53 , I have to pay A $ 1 . 55 . The beggining , I was at a loss . It is hard for me to concerntrate on study at around two o ' clock because I really feel sleepy . . . . I felt refreshed after the nup . It is important to think about strateagies and just try them once regardless of their credibility when we have a problem . For examle , They tested it so seriously that I laught more and more . Its total area is over 17 million squear kilometres . There are different types of climat . I would appreciate it if you would help me accuire a good command of English . I 'm concerned with a practice session in prepartion for a public perfoemance . I am majoiring in the architectural equipment industry . I do n't think it is a hay fever season now , but just some alegy of mine . . . I 'm a bigginer at Lang - 8 now . I keep watching until around 2 or 3 a . m . I 'm sure it 's an unhealty lifestyle , but I ca n't stop it ! ! Today , I went to the univercity . So , I went to see a docter the day before yesterday . But my docter said that I have an ordinary cold . Exspecially I liked sheeps . Hello , my name is Claudia . I would like to be a teacher . I like voliball , romanic movies , and anime . I like music , but a hate the banda music or something like that . I would like to improve my writing . I fugured that she might not want to talk to me so I told her it 's OK to end this conversation . 3 ) My another parter , who is an ABC , told me that he was busy typing a manu for a restaurant . She walks like a lady , but she always carries a large gunny bag filled with books , which is a little bit not so campatible to her `` gentlewoman style `` . I had a bit trouble when I attemped to sign up for the forum . To my surpise the code was accepted . Sometimes , I think about visiting France to fullfill our desires . Maybe , I 'm still scared of the feeling of lossing him , who was very precious to me . All of the students were devided into 4 teams and they made some dishes by using wheat they 've already milled . The restaurant we choiced had cute waitresses wearing Japanese traditional clothes . I am really anoyed by them . . . They especially love Red Bull and Moster . Library is open 24 hours and a few studets are basically living there . Tommorow , We will have a welcoming party for a new employee . I 'm a fan of Hanshin Tigers , a professtional baseball team . By the time it started , I had helpt her buy the alcohol because she was not [ yet ] 18 years old . I have to work , so I will say goodby , and I expect to see you soon . Your brother , R My apologies to those who work on Saturdays and those who do n't work at all - apologies mixed with regret as the feeling that comes with the arrival of Fryday night is so exciting . In order to add some value to this day I 've attached some amazing illustratiuons by Alexander Jansson that might make you feel some of the beauty , delicacy , fragility and strenght of the world of his imagination . I staied in China for two weeks . I was told of the existance of lang - 8 by my college senior . These are my oponion on the advantage and disadvantage of eating out . I serched new music on Youtube as soon as I got home . I still do n't know how to use this softwere much , but if I can use it efficiently , I 'll be able to compose cool music . My name is Lisa . I have been learning Englsh for eight years . I like siwming . The story was during our talking , he was talkingabout howhe had a big test coming up and how he was reallystressed out , becuse he had to read a lot of material both from the textbook and out of thetextbook . Then , I asked him what he was studying for , and he told me he was in a TESOL program , so when I heard it I slipped something out of my mouth like `` what the , why does Tesol program need a hard test like that `` As soon as I saidthat , I regretted it , because it sounded like I was looking down at his course . I got my resulte from the TOEIC . My fevorite I started unniversity study at an old age . I 'm a front - end web - webdeveloper . I started 3 marionettes and even if they are in their beguinning stage , I am confident that they will look great . Am I prepare to go foregin ? I wondered if the hot springs were made naturally because there were no voclanos there . He said that he was Europian and traveling by himself . I 'm lookin foward to it . I talked with my sister - in - law today . She said that she is going to Hawai this autum . Actually , I feel the negative effect caused by the credit crunch which is expanding to tertialy industries day by day . Anyway , my office is now based in a foreign contury . In my office , there are borth local and Japanease staff . I 'm tring . `` I hope you sufferd just as me and my sister suffered because of you . Intoroduce myself I 'll have three straight hilidays by tomorrow . Typhoon is Comming There was heavy rain early this morning , because of a Typoon is comming . A Typoon brings a lot of rain and we 'll feel more comfortable in the boiling hot summer . It says `` This island does n't welcome the minor typoon that can not cause a day off . As a result , the charge for erectiricity was higher than what I always pay . Tommorow , my mother and grandmother will come to my house from my hometown . I had the buffet at the wddding This Monning I had to hurry . Becuase I woke up late . Plesas check my diary entry . haha , and now I 'm too lazy to move them to my bed , I 'm sitting with them cusioning my back . I visited switzeland last week for business . Everywhere is butiful , I met freiends , japanese woman anda German man in Zurich . I recomend everyonevisit Switzerland for this time of year . Then , I wrote a dialy . So , I think about writing another dialy , and studying English . Because I will go to the univercity next time . I remenber many memories through the air . I really like Natalie Portman ; I think she ` s very tallented and extraordinary , but I hope she won ` t make that mistake again . I was surprised by the very big buyout news after such a long time in VFX industry . Even though he only met het once ? he never forgot her . Resently I watched Mr . And a baddy from ' Spaiderman ' appeared in it . After lunch , I read a book called ' LOST SIMBOL ' writen by Dan Brown . So , only 15 people can attned the program . Do you think elemntrary school students , junior high school students , and high school students can do whatever they want ? I should be careful about spending the time and mony . And after that , I went to Mexico with a frend and her son . There we had taccos and some beer , and we danced a bit . I am staying in NY to stady English . Usually , I shoul watch TV or do something else . But I have no choise . Anyway , this bad period will last untill Tuesday . I realy yearned for them . Kartepost . com 's users can share thier experiences of disease . Of Ofcouse it is very difficult issue , but I just ca n't support them . I 'd like to use `` Diffussion `` to make a sentence . His new home is in Akitsu , and is 30 minuites from Ikebukuro by train . so prease talk with me on Skype . has tought me a to stay whole . So I will study Engrish hard ! He was listenning to music while walking . This carm me . I hope one day I can design my oun house , and use these beautiful tiles . We ate an ice crean and drank one cup of coffee then bought two cans of honey . Living in my house is so boring that all I do here is palying games , watch TV , and study . The erathquakes here are so annoying because sometimes we get the electric power cut off by our goverment . It seems that for the same purpose , sometimes a sentence is put between brackets and , at others , betwees hyphens . I can speak good stantard Chinese , but I always misunderstand the vendors in the market . How I miss the days when I speak Cantonese and proudly take people speaking Manderin as outcomers ! I hope everyone who uses lnag - 8 can help me correct my mistakes . 7 - Eleven is a famous Japanese convinience store . I can find the shopls near my house . I was very surprized . The derector the most famous director in Japan . I thought , `` it 's so easy , `` and wrote quikly . My father played pachinco and I used the coins that he won . I ate peyang sause yakisova . After that , I had a English lesson on skipe for 30 minites . When we want to express the cause of something , we say ' because ' , ' since ' , ' as ' at the beggining of that sentence . Yestarday I just got game soft . His speech was excllent ! Actually I do n't have paticuler plan everyday like meeting important people or anything like that but I am physically busy as hell . Under the cercumstances , Sometimes It 's not even a long enoguh time to creat anew diary entry . There is a student union eletion in my school today . Since your entries are of great worth to two groups of Lang - 8 users ( people who study your naitive language and people who study the same language as you ) , you are recommended to tag keywords in 2 languages just as I did in this entry . The maximum limit of tag number is 8 by each entry so you are supporsed to have up to 4 kinds of tags . I wanted to call the hotline of the bank immediately , but I found out that there was little power left on my moblie phone . I counld n't be hold on for five minutes . I think it was a success and many pople were satisficed with the result . The next goal is to advance to the best 8 , so someone who can puerse the best 8 at the world cup . Actually I wonder why no Japanese coaches were considerd as candidates in the first place . We can rent ninnjya coustume to put on dalls . There are many tree houses with difficult obstacles , a river , and a housen of gadgets . We tried to overcome the challenge of several adventure playground guantlets that required us to climb up the house , across a river to pull a rope on the bord , and cross a ladder that led to the other side . I recomend this place to anyone who wants to play a lot . At night , I came here , Internet cafe to surf the Internet and wrote some lettle on a friend 's article . He comes from Canada . Also I am travelling to Jeju - island with my family this comming Apri for the first time . We exchant gifts . The game rule is that my department boss takes out a mumber first , if it 's NO . 7 , the NO . 7 gift blong to my boss . luckly , I take a necklace that 's a dolphin , very beatiful . Although she passed away from canser , I believe she lived a normal life with no regrets . She had had no children but she enjoyed her life with working , hobbise , and socializing . I 'm going to Geneva , Maienfeld , Milano , Venis and Rome . ( I 'm sory the spel is wrong ) Enjoy ur week ! I gon na watch all of Hurry Potter films with PG tips tea insted of travel . This thrsday night I will go to a Moroccan restaurant for the first time . when I traveled to china ( Cantonese ) on chairtmas eve in the morning . Although the plaza had a lot of Chairtmas decorations , it did n't feel like anyone was enjoying it . ( For china factry Chairtmas is not a regular vacation ) . It was unbearably muggy and slutry today . I 'm not good at English or other langueges either . . Today we had a Bio - experiment class , and we viewed many kinds of plants under the microscope . It was funny , but drawing what I saw was not that interessting . Completely forgotton Wht do I need to have a Toeic score ? especialy speaking . It is so terrable , If I receive a good score , my school will give me a scolaship , and I can go to America for almost free . but I wo n't stop eatting ! She not incomfortable to come because she have sick and I imagin she is really try on the wenesday because she must teach a lot of class today so I asked her not come and said ' take care of your healp ' Last time I stdied with her we are bost studie poor the head rises . Please tell me good resourses that you recommend ! : ) Express my love feelings without hegitating . I 'm a unversity student and also belong to English club . For example , we try to have debates , speach , discussions , drama items and so on . Its been a bit over 2 months in Japan since I left England at the biginnig of December . I really like living in Japan coz foods r dericious here , compared to fish n chips , I miss the pub sooo much though . As soon as I came back 2 Japan , I noticed that high - ball ( wisky n cider with ice ) was very popular among the young genelation . I was wondering that almost all students drink only beer all the time , even wisky originated in England ; such as jack daniels , old molt and so on . It is a strange phenomenon that more Japanese youths consume British wisky than British adresents ! It has been rainning for three days and the temporature has fallen . I major in sofeware in college now , so I have to learn how to talk about computer languages , such as JAVA , C # and C + + . I will concentrate on every detail of learning sofeware . Maybe the next superman in this field will be me . Last weekend , I watched an American deama called ' ' Heroes ' ' to learn English . Luckly , I am not attrackted to bad guys at all like some of my friends . But we might already forget that the natural music enriches our daily life and inspirits people to fufill their real music . Though I can converse in English confortablly , there are some mistakes . I feel I have confused my English a lot at the moment I write my journal entied wrong a lot . I think maybe because I have read thai books and translat it in English . We can not afford to let immatrre students go astray academicly , mentally , or physically . First and formost , in terms of cultivating students ' interpersonal skills , learning via computers or televisions can never manage to reach a comparable level . Unlike learning from a make - believe world , face - to - face interaction and communication is much more real , and in all likelyhood , students can effectively equip themselves with the ability to compete and collaborate with their peer counterparts . Thus , ( traditional ) schooling will definitely lay a sound foundation for their later social life . And I firmly believed that learning using technology will never render scoool education redundant . I listned to 3 groups 's songs . I am a university sutudent and ( I am ) 18 years old . If I can meke friends here , I would be very glad . I feel jealous becouse such kind of parade is in my town just for children . The only good things were the sweets we ( 've ) got after walikng and juice while walking . Now it is changing and many organizations have to adimit the right to drink ( something ) while doing sports . Today is a holiay called Shu - bun - Day in Japanese . I have sleped for 13 hours , and now it 's raining . There is a pumpkin , a carrot , and beef in my refregirator . But I am groggy - headded . It 's one of my fevourite movies . As I worte it in my dairy before , we will hold an international exchange program in the summer in the NPO group that I belong to . I recieved the wrong size item . I purchaced shoes from Amazon . com but I recieved the wrong size item . I sent a claim to Amazon , here is my massege to them . I have a pictuture of those deffirent sized shoes but it is the same size on the label which is 8 D size . I do n't know what to do , I 'm getting lazy because of the hot , humied weather . It was very sweet and very delisious . You 'll see the historical town from the Edo - priod . It is over 1000 sqaure meters on each floor . I ` ll go to Minsk in a mounth . . . ) I do n't like to use roll paper in the tolet . The Internet has truely changed our lives . If you are intrested in that kind ofculture , I 'm so glad . If you want to recomend any books or movies , please introduce them to me ! ! After this , I thought : Am I Otako ? I did n't wasnt to see everybody crying . I think my great aunt is happy in heven ^ - ^ I did not aways want to watch it , but when someone switched on the television I had to wach it as well . This is aways in Thai movies . . . I attend a study meeting for examinations of patent attorneys every staurday . If I do n't remenber it and answer it exactly , I ca n't advance to the next question . The tembler We found ourselves unable to use water , electricity and gas and decided to seek selter with my grandparents . At the moment of the tremor , I was downstairs alone in my house , sprawled underneeth a Japanese Kotatu . As a matter of fact , it was said that a big earthquake would hit in our region , predicted by seizmologists . I did n't think it would cause so many casualities . Yet the tunami ruthlessly took many people 's lives . My house is not too close to the sea , so we are away from the calamity of the tunsmi . I am scard . Especialy to Canada ! I Get tored . Reacently , I have been so busy . But I often coul n't understand what they were talking about . And also that situation ( thare are many foreigners ) often makes me nervous . Yosh ! Hope things will be better the day after tommorrow , as I will take a rest on Thursday ! But I have heard a centence . When I look at that paper and the words on it . `` Today I received Yilin 's $ 10000 and since then I will never threaten her . `` It made me sure that you loved me because when I did something wrong and hurt you , you did n't scold me but helpde me instead . Then I do n't need to expect you to stay with me everyday . I do n't need to wait for your messages and phonecall calls . You also do n't need to wait for me to graduate from university . You can get married to a woman and have a baby as other people your age do . Hou can I ? It was mainly sponcered by major industries in this prefecture . He welcame me at the pavillion door singing his favorite tunes there like an old friend . We discussed what ths skier did . I could discribe it . Some pepleo say I need to get better at reading and writing . I love these friends and my coarch . However , she tells me that her collegues who work there longer than 5 years make quarrel these days . Then she is caught in the middle and her motivation is beeing dameged . Some people who are single have a chance to join a party , maybe in the pary he or she will makes new friends , and even find a ture love . please tell me hou to say it in this case . I went to the Druma fair this afternoon at Kakio in Kawasaki city . I can not belive it . . . I believe that the most common reasons are to prepare for a carrer , Carrer preparation is becoming more and more impotant for young people . For many , this is a primary reason to go to college . I have cookies , chaclates , jellies , cakes , milk etc . But there is a good Japanese restaurant at tha other side . This is a cloudly day . Youtube gives me some fun material for English lessons to devert me . com is one of my favorites and is hillarious . but to call food a souvenir I finda alittle awkward . As ( in ? ) the picturem , with a sunny day , a kangaroo jumping to an old woman and smiling . As the old proverb goes `` Actions speak louder than words `` . We should keep it in mind and take messure to follow it . a brighter future is waiting for us if we make good use of our ways to protect the endager animals . I 'm always wonderling if my English is natural or . . . I want you to help me improve my English writing abilty . Today , I went to tukiji , Tokyo Today , I went to Tukiji , Tokyo , with my wife and ( my ) mother . We decided to have lunch in Tukiji . Some people tell me that I should go traveling baecause it helps you to see the beauty of this world I do n't want to ingore them . and while passing by beautiful grean scenery can be observed . and we can enjoy lots of cherry blossam in spring . So I decided to listen to a French radio program because they broadcast a program for beginners from April and its leves is exactly for me . I do n't know that clealy . In my opinion , It 's ture . Nowadays , societics are fighting with time . That 's why most reporters consider a title is more attractive and agressive before they write articles . There , I did Zigoku Meguri which is one of the good sightseeing rotes in Oita . I can cook Japanese crusine , Chinese , and also Korean - style . But I 'm not really sure about French - style crusine , since they use a lot of harbs in their meals . In Japan we tipically use harbs occasionally , but not as much as the French do . Hi evereone ! I had a tea with particioants after the class . I had a good time because we talked about a sysytem of studiying English . Because I only conect with my friends in Sydney , my English ability is getting worse and worse . I ate Tohu yesterday . I wanted to eat a Tohu hamburger . It was n't delicias . I watched The World Swimming Competetion in Italy on TV . I 'd never thought about the differnce and that reason for it . It 's immposibble to countune from butterfly to backstroke in the same lane in the team race . So why do they start with butterffy in the 4x100m individual medley ? I guess to dive from the starting blocks is firster than starting with backstroke . I was happy to soluve my weired feeling . The valueble thing is the knowledege you get , and it ca n't be counted by the number at all . I had a notebook which my parents gave me as a writing pactice book which allowed me learn characters by myself when they were at work . It is beacause their brains are just like empty glasses . But insead of being depressed , I decided to do what I can do now . But , I hate rain , so today is a very unconfortable day . Okada , a coarch of the team , was severely blamed by the supporters . I am consedering to start learning English writing by taking courses . I 'm so happy I have a chance to commnicate with so many people who are from different countries ! I want to know more and improve my English , do n't hesitate , let 's become friends now ! If there are some mistakes , please correct them . Remenber that `` Reality and imagination are not always the same `` . . I am very heppy . As soon as I arrived at my house , I went to bed immidiately . She was my collefgue in my previous company . I 'm loving Monthy Python . That is why in winter I go to sweam . A ramdom thought about Loas I have no real chances to communate with Native English speakers . I disire a free conversation . But , there are so many words I do n't know that I alomost go mad . She gives me councle like my real older sister : ) I am working for a food manufactering plant . We decided to make a construction company repear them . Accoording to the weather forecast , it 'll rain tomorrow . The plasce is in a complex . yesterday I went to college but I did n't study because the university - level instructor did n't come to campus > _ < , whereas I came to campus early because I was affraid to be late . I really could n't belive that I was able to prepare chicken soup another enry , another issue I work hard to save deposit to enjoy myself in Itary . Today I was given a ticket for a fitness club from a cowerker . I have a pack of tofu , some green Chinese vegetables , mushurooms and leak . I 'm studying English , Chinese , and Aplying Linguistics . I lived in California when I was . in kindergarden . I almost forgot how to speak English , so maybe my English sentence grammers is wrong . If you find a mistake in my diary , please corecct it x ( The club members watch flowers , birds , trees , shellfishes and a lot of neture . I want to know the calculational procedure . It was smooth untill the tube terminated due to signal problem . I was stuck in the tube for 40 ninutes and had to abondon Picadilly line . I also use skeype and facebook . My porpose joining lang - 8 is to improve my English skill . My mother jast cried then . I could n't understand why she choiced that place , but I didn ' t Then , they link themselve to my ideas , and finally form a stream of narrative . Today , the Gmail IMAP server complained of `` bandwidth limit exceedd . `` I can not access Gmail via Thunderbird or iPhone . I think I must listen to more Enlish . I like to design , so when I heard about this contest I was very exriting . My t - shirt has sunshine and sunflowerrs on it . They are so profesional . . One said that many foreign countries were surprized by the fact that there rarely was plundering amid such a disaster . She will import Japanese goods and sell them on the Internet , targetting & nbsp ; primarily & nbsp ; French people interested in Japan and Japanese people who miss their favorite local products . I want to become a friend with those who are learnig Japanese . Today 's dinner was pasta and green salad with sesami dressing . But I am no longer familar with it . It 's so difficalt . To get to the nearest coast from my house , it takes within two hours by car , but if it 's to the opposite one , it 'll take more than six hours by bullit train and express bus , and moreover , I have to change the bus for a local bus ! For instance , like me , growing number of people are trying to learn English which will probably become a unversal language . Chinse class Its a natual phenomenon for humans to not be a mechanical creature and have a limitations of momory . These jobs are making me compotable ( ? ) and keeping the system stable . Because I get sick easiry on the train or on the bus when I 'm in bad condition . And tommorow I will go to the bank to consult My daughter has been absent from kindergarden since yesterday . Since then I still heve needed more relaxing time Thank God when I weighed yesterdy the weight was still the same . Please conact me . At the congrress , I had a lot of opportunies to talk to many professors and students who are keen on biomagnetism from around the world . They are from Italy , Korea , India , German , France , UK , Netherlands , US , Sweeden and so forth . In addition , I leared many English polite and job phrases . lol Yeah , it was the most profitable part - time job among those I 've ever done before , and I was really pleased to talk to various smart people who are kind of geeks haha because I could n't understand thier study at all when I saw thier poster materials ! so I 've just decided to write a jarnal Of course I can help people who study Japanes here . Irish Pab I went to the Irish Pab with my friend . I look foward to attending it everyday . I can learn a lot of things about carreer in it . I sthdied English 20 years ago . I have almost forgotten English . The rhythm of it annd the rhymes of it were sooo funny , and I enjoyed listening to what the teacher read aloud . It was implying how every indivisuals is important , and also big . Its been a long time since I spoke english , because I 'm studying japanese in Dalian , the most beatuiful city in northeast China . There are many interesting things and delcious food in my homeland , especially hot food , pandas , and lots of good indie music . I 'm going to Karaoke with my frreinds tomorrow . I like singing songs because it relieves my stress . I am a university studend in Japan . I especially study A Chrisrmas Carol which was written by Charles Dickens . I tell you that I know the sory of your family 'cause if I search for my ancestors I always find your family . I have ancestors from the family of Chmura too but I do n't know if my Chmura family is related to Wiktoria Chmura : ) If I learn about it I think tha I will write to you . Only then do I clearn up my desk . I think that one of the most inportant skills these days is to throw stuff that you do not need away , not the skill to get stuff . It 's my first post in lang 8 so I just want to say hello and ask you how can I translate or say some text in a different way - becouse It 's hard to understand it all . Recently , I have been listening to English radio stations and reading English magzine everyday . On Mondays and Thursdays , I use my lunch breaktime to attend the English class held by my company . By the wayI , I would like to read English novels . Wnet to Universal Studio Japan . Dinner was a Chanese smorgasbord * . She works as a secletary at a fashion magazine . Such a pitty . My favorit pastime is playing video games , surfing the net , and watching movies . So , I think we should keep and preserve our old buildings because of our culture and histrical legacy . Photo : Beautifully colored leaves at a mountan in autumn ^ ^ I think writing in English is still difficulity for me , But finding a iob is not as easy as I thought . To be honest , these days the anxiety of graduating from univercity makes me so nervous that I ca n't concentrate on studying , especially English . However , whether I consider it or not , the possiblity of graduating will not change . I told her : escuse me Ma ' am , did you find a bracelet on the grass ? She then stood up and gave me the tumbs up ! So , I 'll have a part - time job tommorrow . When I went to Tokyo on Decenber the 27th , I bought a new umbrella at last . Since they have them in several colors , it was difficult to choose one . After Waching myself with them in the milor , I chose a purple one . and he was planing to ask for the teacher 's Email adress if the techer was a beautiful cabin attendant . The other day , I caught her documetary on Jounetsu Tairiku , a famous Japanese documentary program , and she said she started getting more jobs after cutting her hair short . He has liveral spirit and is not strict . Anyway , when I arrived at the park , all the other people had alreadly arrived . I came back yeaterday . Beacuse this was our lesson , we had to go back immediately after a rest . I Deeviated from the main subject . ( ^ ^ ; ; ) Going to school everyday duing my vacation is hard for me , but it also makes me feel proud ( of myself ) . Becase , the weather in Korea is very cold . It was realy cold and snowy . I bought a hair crip and a CD of NE - YO . After I got home , I serched free TV show in English on the Internet . It 's a big dicision and a big challenge for me . Now I 'm worring about home - stay . I 've not cooked things requiring many steps like difficult Japanese cuisine , and I have only a few recipies to give to my friends : ( I have a long way to go from attending unversities overseas but I ` m sure I will be studying very hard in order to be able to attend a university overseas . It 's difficult to forgive someone , especialy when they 're a common object of hatred . Libraly Part 2 I 'm writing a continuation of my entry , from yesterday , about going to the city libraly . I could only rent three CDs at one time from the libraly . The soundtrack of `` Top gun `` , Van Halen 's album `` 1984 `` , and Madonna 's album `` True blue `` were included in CD 's that I listend to . I 'm really looking forward to travering with my mom , b . . I wanted to reada somebook but my eyes were very tired . I can remeber the time at which I fell asleep . it is possible that such a thought gave me insommnia . I will watch a mouvie with a love story starring Shak Reno and Juliette Binosh as I want to rest . Cleaning in the hall , leading people to the front of the ceremony hall , managing the imformation desk , checking the money and calculating the total cost for our clients and so on . I must observe my co - workers and folloing them . I had trobled with my hair many times during high school . Whenever I hear her scoling me , it is frustrating . Their great beutiful nature and biodiversity are found as the reason of registration of the World Heritage site . I was looking for a magagine which I wanted to get and then I was deeply engrossed in it for 20 minutes . I 've decided to become a Christian in the fulture , because I think following God will make my life more meaningful . something very new ( althought it 's been on iternet for quite a while ) always capture my heart . * Sorry if my diary was inappropriate , in a way that I advatised Twitter too much , please feel free to delete it . ' All right , ' Min interrupted Ji 's discription , ' I said , Riska , can I have some chicken nuggets please ? And , an organization named `` PeaceBoat `` stole the support supplies in order to gain honor . Chinase development speed is faster than Japanese one . Next week , I will go there via Seoul in Koria ! ! Unfortunately I fogot how to speak French because I did n't use the language in Japan . Now I 've got holydays after all my examinations and I want to write something ) Before it was n't so fequently . I hardly understood what my terchers said at my online English lesson . I should listen and repeat vocubulary and phrases frequently to increase my listening skills in English . This is my first dirary ! Today I 'm very happy because the date when I go to Montana , one of the big states in Amercian , has been confirmed . Misula is a beautiful city in Montana and I will be staying there for three months . Does anyone know how to learn Enjlsh words easily ? I offten read too many broken English in chat messages . And a number of players talk like kiddy ( some players talk as if in a role - playing , but most players do n't seem to be speaking `` proper `` English ) . Last month , all the students in my university were given one thousnad Omani Rials ( = 2600 . 78 American dollars ) . If you were in my position , what would you do ? How would you spend such a hugh amount of money , at least to a student ? She is beutiful and interesting . Im really like this song ! These days , I made up my mind to stop my emotions of liking girls who are my type , which means that from now , I 'll never try to approch girls even though I like them or I want to be their boyfriend . I 'm afraid of American beautishan because of my English level , so I try to do it . This is my fraverit song . This group is really famust in Thailand , but this song has been known for a long time . I knew it when I was studying at university . Now I have finished already but when my friend and I want to sing we must sing this song frist . In the previous movie , a young stockbroker did everything to get to the top , and a greedy investor , played by Muchelle Douglas , utilized his insider information . This ancient palace is open to the public only twice a year in srping and autumn . As you know , all department stores have beautiful bathrooms , most of them are Western style . ( Many foreiginers are in trouble with Japanese style bath rooms ) River Fishing is wanderful 7 years ago , I lived in nothern Japan . Today , I talked to my freind , Nick , who lives in Florida , USA through skype for a while . Not suprizingly , he had alredy gotten a job he was willing to get as a financial analist . According to him , his major is business and it could be recognixed as an accounting major , also . So , if his clients come from sounth America , he wo n't have any difficulty communicating with them . In other words , he will deal with any problems people usually might have due to the different lunguage . I uploded some favorite pictures that I took . I guess they are just hiding thier new technology to prepare the new iPhone or they were afraid that Samsung could sue them . Timothy Cook , who is the new CEO of Apple , gave a presentated yesterday . I 'm going to take part in a marathon three months from now , so I should practice haed . What happened is that some trekkers who was arranged by some travel agencies succomed to hypothermia . Since Japanese novelist Fukada Kyuya published the book which introduced the the Japanese 100 cerebrated mountains , they thronge those high mountains . As you know , trekking require many things such us knowledge about weather and map , how to use equipment , exprerience , and most importantly physical fitness . Intrincically there are few trekkers in Japan and mountains are calm places . Their foods are excellent and it has a cozy atomosphere . Today I introduced Lng - 8 to him . I found it so bouring to stay at home doing nothing . When preparing a dish , I have to make sure that all the seasonings / ingredients are availible , when to put in which ingredient and how to control the heat . michi ha . nureta imashita morokko ni ha yottsu no kistetsu ou Shiki ga arimasu ryoukou to hama ha hitsuyou desu . My frined likes `` Judy and Mary `` ( japanese pop singer ) very much . I think the auther of this book describes Bella 's emotions and feelings very well , so that I could understand how she feels about vampires , school , family and friends . It was heven ^ - ^ Today I coocked miso soup . Freedum day ! ! If you are interested in Japan , you should / ought to know that Kyoto has a lot of culutural heritages . Scince it may be the last chance of this season , I want to get even better progress of my skil . ( Other brands are , for exapmle , iPhone , Droid , and so on . ) In the Evning after returning home , I had dinner with my friend who came from Oregon in the US . We spoke in English of caurse . I think it was 34 dgree in Tokyo . It was a hot day so I needed a handkerchief becase I 'm very sensitive to heat . Tonight , I drank a little alcohole with my co - worker near our office . Now , I 'd like to exercise in any cuse . I was happy when I deared his voice . Hatsune is a bar with a homy atmosphere . He said , `` Why do n't we play golf togther ? `` Dialy for 1 . 23 . ' 11 I wolked at home today . My son went to the comunity center . He pomded steamed rice into cake with scouts at the comunity center . I will arrive at Nagoya city which is a central Japan metropolice tomorrow early morning . When the potatoes and onions are fried , mixt them with the eggs with a knife . I can not go home earlir than around 23 : 00 . Everyday , I use Engilish when I write e - mails at work . Being a flight attendant is kind of the synbol of intelligence and beauty for Japanese people . According to my Singaporean frirends , in Singapore , a flight attendant is not a high standard job at all . For Singaporeans , flight attendatns are just servants or something . Is food coma the natual phrase for that feeling ? He is sensible to authority , then he does n't let himself undercontrol by other . My contemprorary life is very terrible . Something important must have happened because there was a lot of yellow tape / police tape around the office keeping passerbys - by away , and even some television interviewers were covering the incident with cameras . I need to wory from Sunday to Saturday . In cram school to teach math from Monday to Friday , as a promter girl on Saturday , and a telemarketer on Sunday . 3 hours later put some sugur in it . Before yesterday all the Japaniese patients were in Western Japan , but today , at last , two patients were found in Tokyo , East Japan ! I think there are no means to prevent the expantion . Today , I had carm school ^ - ^ And I went to the US two years ago to join in a Chinese matial arts tournament . ( Now I 've quit to study langurage except Engllish ) Forrest Gump , Austine Powers . . . So sorry that I counld n't visit this site enough . . . If you have any questions about Korean culture or Korean grammer , I had a girlfriend in the past but she dumpded me and I felt really bummed out . Todau I was looking for a airplane ticket that is affrdable . Actuarlly , I was supporsed to buy a one way ticket , which is more expensive than a round trip ticket and a 1 year open ticket . The article said you have two altertive for a journey . You could buy a dicount ticket then when you arrive at your distination you can thorow it away . But if the airline or travel company finds out you might have to pay a penalty fee . So for that reson I checked many sources . Of course , price is very important to me because I do n't have a big bugget . Ummm , Mybe I will buy a PEX ( safe ticket ) . Until now I wrote dialy at the office . Now I can write dialy in English , on my PC . On July 4 , I will have my examinations , including business english translation , English writing , inergrated english and political theory . I am worried about my poliical theory , because I have to review a whole thick book . Special buses ran between the main grounds - CDH ( where the ' Art - Moscow ' fair were running that time too ) , the ' Vinsavod ' , the ' Art - Strelka ' , the privat museum ART4 . ru and some other important galleries . I will be working as ARASI 's concert staff . Then boil asparaguses for 1 . 5 munites ( The time depends on the thickness of them ) . I was satisfied , bacause it was very sweet and delicious ! A large amout of companies like mine encouter such situations in Japan . Therefore , I hope that this bad practice would disapper soon . Something bad has happend to me ! ! in bodyly and in mind ! ! ! ! Feild Day The moon eclipsed totaly for 100 minutes , however the whole process took more than 5 hours . It was like in a horror movie , if there was an old gipsy lady , she would have said that was a bad omen : ) ) We were looking forward to having a pecial dinner at your restaurant . We went to an Italian restaurant , ate dilicious foods , and talked a lot . Recentry , I was surprised by the financial result of a certain company . This weekend , I will play football . I 'm looking forward to participating in the soccoer festival . Recentry , I 'm interested in diet , learnin English , internet , and shopping . I saw a classical music concert perfomed by the Prague Radio Symphony Orchestra from Czech . However , there were unexpectable disrupters in the music hall . I totally could forget that I 'm a busy person like a workerholic . And I like `` Leon `` as well . That is one of the films when she was child acter . I also joined an English devating club . Im tired becaurse writing in English is very difficult for me . . . Today there is a firewoks display . But the wheather takes a turn for the worst . Sometimes , foreign custimesrs come to KFC . Finelly , should I say anything ? A REAL powered suit producted by HONDA Honda has producted a walking robot named ASIMO . but if you write about a special thing the public does n't seem to know ( for ixample , about IT or business or philosophy ) , it is necessary to explain each word and the speed of talking is decreased . I was never pround of myself since I came in middle school . Why do I have to learn them ? Why ca n't people choose what lesson they want to learn ? I love Engish lessons , then I could learn this for free . I am thinking that I want to make a reservation for the ILETS test in March , but I haveI no confidence at all . For example , I 've heard it used like this , `` You focking asshole . `` or `` Fucking surely `` . If you are Japanse , I am not sure if you do . I know you are hungrey . As matter of fact , I did n't know there was a sandwich restraunt in Japan until recently . At the restraunt , we can order anything . What suprises me is that she insists on proceeding with the work even in the case of other 's falling ill or when a familiy member is facing life or death problems . One time , I asked for an instant leave to attend my grandmother 's funeralin my hometown and I explained that the flight avaliable to me is due to leave soon . And then , after several rounds of her ordering me to do whatever ( things about work , I have forgtten ) I was finally allowed a leave . . . Another example , one guy gave an explanation for his absense at a so - called important meeting that his wife had a heart - attack that morning , and that he had to send her to hispital . One day , my monther was going to have an operation and I was the only one who was able to accompany her then . In searchig for information about overseas travel , I happened to find this site . Bacause I often think `` I want to drink sweet coffee ! `` When I was an elementary school student , I used computer in a lecture for the first time , and I 've used it for about ten years , but I continue looking at the keybord . wooo , , I wana take a chance to talk English . But I will spend this time lonley . What is the defference between `` I 'm not sure `` and `` I do n't know ? `` complain : I complained to my teacher about the scole of the test . hate : I hate insects , particularly cockeoach . worry : You do n't have to worry about your health , you 're hearlth enough . I think It necessary for me to hit the books cause I want to win scholarlship in our campus . In amerca ! ! ! Furthermore , there are more and more reports about accidents caused by explosing cellphone batteries . As for me , _ I can speak two dialects which are Wenzhou dialet and Hokkien dialet . I applied to three consulting campany and underwent an interview yesterday . The speaking examior is an old man . . . Because a boy in the apartment made too much nosie that we all complained about . . . . A good point , I thoght . TheNext step has just starte now ! Unfortunatly , my sister is not interested in kimonos . We wnet to watch a movie first , and when we arrived there , I saw a handsome boy who wore some fashionable clothes and leaned on a big wall . But , because of working overtimework , I missed it . One is the intergration of writing and reading , which lasts three and a half hours . Bridal Course studys about weddings . I feeld vey comfortable . she 's alreday married . hey my name is Icen and I 'm new at lang - 8 , I want to speak good English , so plesed help me to learing English thanks . . . I am a student learing ecnomics at Kyoto University . Hope I will find Japanese learners and English and Chinese native friends sonn ! ! I booked the ferry tickets to the island leaving at 9am on prebious day , so I left our home early so I did not miss it . I asked how can I get there to strangers along the way , fruthermore I ran to the platform and the road , finally I reached the ferry station almost too late . I went to driving school durling my summer holiday . However , obtaining the lisence helped me to return to Minmikusatsu city . Watever - he hurt me before with a lot of bad words , screamed at me , saying that I expected too much romance from him . I y enjoy playing play the Frech horn with an amateur orchestra on weekends . My orchestra is having a concert in October , so I could n't stop staring the beauthiful phone , I like reading books , surfing the Internet , listenning to music - - both popular and classical . By the way , in March I 'm going to go to my high scholl to make a speech about my life at the university . For a few years now , I have had dermatitis on my face , expecially my eyes . The dermatitis on my face , expecially my eyes is conspicuous , so I 'm really sad . Today Giants won the game , but both teams showed us a splended match . A lot of cerebritise go there . I was born in Hokkaido , but staied there for only one month . I like watching moveis , reading novels , traveling , and taking walks with my dog on my day off . The Nikujyaga is made of beef , potatoes , carrots , onions , and konnyaku boiled and seasoned with soy sauce and sugger . I have just found the repot . furius at you and you ca n't find any excuses to ease their mind , When I try to revice some articles written in traditional Chinese , I feel confused . I , nonetheless , believe that the pros outweight the cons . But , I do n't know what I shoud do . By the way , cherry blossoms in Tokyo haven ` nt flowered yet because of cold weather . Because I 'll feel stuffy when I stay in such an enviroment . Go to Univercity . I went to ( my / the ) univercity to sign up for classes with my friend today . I said , `` What a beutifull view ! `` It is kind of weired when I reviewed the blogs I wrote before . If you are wondering where you should go on your next trip , I strongly recommand Tong - Yeong ! What is the meaning of religoin in our life ? but I could n't find any difference beteen religious people and those who are not . I think I 'm a realist , both in material and spriture . In fron of my office there is an indoor tennis school called T - 1 . I ca n't enroll in such a university , but what about in the philippines ? I then watched ' Field of Dreams ' and ' Remenber the Titans ' . Although it was raining unfortunately , thre was a line of people . I have my own loch box already . Figire skating This morning my music box ramdom played the song called `` Paddy Fragrance `` ( sung by Jay Chou ) . It does n't sound like most of Jay Chou 's songs , which are usually depressing or sentimental , this song is relaxing , encouraing and positive . Do n't quit so soonly just like what I have said `` If it 's too difficult for you to persue for this dream , you can think of changing for another which is much more suitable for you `` We are all looking foward to a bright future , while ignoring what we really want to be deep down inside our heart , and that 's why we are always busy and successful but not happy . Today I 'm going to Edosima beach , but the weather is really bad . Especially , I was so surprised that even some developing countries donated releif and condolence money . I doid n't have any trainer who would teach me about losing weight . I could n't lose weiht very well as a result . I 'm in a relationship with a cute scottish girl so Italkto har in English mostly . Letaly , she has been saying `` your English is girly `` andof offcaouse I do n't wana speak girly English . I have meny friends , but only one best friend . She was bern in Georgia . Anway I want to talk to people who speak fluent Egnlsih to improve my interpersonal skills . Now , I only have one / an exam ( English test ) that is one week away to go , so I think I 'll have to study all day long in th libray . However , my writing skill is low and I need more practice , so I decided to write a jounal on this website . Of course I am interested in the latest model of mobile phones , cars , electornic devices and so on If we do , it means a challenge to the monkey from the monley 's point of view . We colud buy some bananas , peanuts and apples to feed the monkeys . My boss say that I shuld take the TOEIC exzam and score over 600 points . SUMMER BACATION I have a headace I 've been here for one and harf year . Please give me advece and touch up my writing . In regards to that , it 's much easier to utilize comics as dramas than to creat novel ones . I can speack Korean , japanse , and a little bit of English . However , it is my bad habit to stare blankly when I am studying and oppsitely sometimes I have a hard time focusing . Come to think of it , recentry I have been studying Chinese harder . I would like to be able to be good at singging and I have practiced Eglish pronunciation . ( the clerk who helped me find a new job said that the company which I entried could not be decent . In the books translators said it 's indespensable that they have persistence and passion for their work . thanks for your comment on my prebious jounal . I want to compare the two of the great religions but there are many diferences between the two . . . however after many years of trainning , he found it difficult to lose his worldly desires and he desided to leave his master . Poeple used to send a present to their father in father 's day . Considering the dinstance between USA and Japn , I need to request to send my present now . I angryed my sons too much . I really enjoyed it . Of course , there are ohter non - clistians taking part in it . Since my only hobby is English , it 's sheer bliss to take those lessons complimentally . I 'm agog ( ? ) to go there next Suturday . So I practiced easier tricks so that I woud n't make any mistakes . Oh my godness , what the fuck ! Goddamn it , you asshole ! Probably today 's interview was a failure as well as yeasterday 's . Japanese poeple do n't do that like them . The world is quite unfair ; I should hit the creater of English lol . I told the acommodation 's staff about my job interview , but he encouraged me and said I could speak English very well , and he felt that I could get a job here . I wish , she coluld keep her health and beauty forever . I love you mom . Roughly , their conclusin is based on two facts . I believe as long as we are more careful we can freely enjoy all the convience with which cellphones bring . The shrine was located on a moutain so the road was relatively deserted . . . Espeacially in a rainy day . Eu sou uma minina . It seemed that a fight / conflict between her hubsand and the rude man would occur . Translate Do you remeber when was the last time a boy / girl asked for your name ? I sometimes watch METAL GEAR SOLID 4 on yotube these days . Yotube has many of METAL GEAR 's movies . I 've watched about three - quaters of them by now . So they must be difficult for foreiners to understand . She graduated from a Japanese two - year college , and then , went to other two - years in Ingland . So , she went to Stanford University , and got not only a master 's degrere , but also a doctorate degree there ! Moreover , she has two children , who go to university . One of my purpose of studying abroad is to get the oppotunity to meet people , so I could realize that by meeting her . The second piture is very fun and cute . So , I started writing diaries in an atemmt to improve my English . Astually , I went to an English school . In addition to this problem , the reading comprehension part was very difficult and its form was not standard beacuse there should have been four passages instead of five . soccor ? Football ? The Japanese women 's soccor team beat Sweden 3 - 1 . The American soccor team is also very strong . So it was yammy . A lot of peopl were absent from school . Today , I ate curried food with a co - woker at lunch . In the evening my older sister called and asked me to watch her niese while she had her hiar dyed in a beauty salon . Sometimes my niese comes over to my house and I have to watch her for a while . My niese wanted to say something in English and I let her talk with a turor on it . After the lesson I tought her some basic vocaburaly like My name is ~ ~ ~ or I 'm fine . I was surprised how fast she mastered the phraises I tought . And we also watched enursery rhymes on Youtube s togher . I went to day care club with my doughter . My dougther loves the rabbit slide . I got an iPad2 the day before yesteaday . Because Apple started to sell it the day before yesteaday , and I ran for the Apple Store . Some people were hoeing and fertilizing and some people were wartering . It is feneficial to my health . `` She said . They 're also investigating other compounds in dark chocolate that may offer other helth benefits . After that , some of my seniors and I ate dinner at a restraunt in the station . After a while , some of my friends also came online , so I chatted with them about what was going on in my life . We were chatting happly , but I lost track of time . When I felt hungry it was already 4 : 00 . Today , I want to introduce you to the Japanese traditinal food `` Katsuo no tataki `` . This is a one of my most favirate foods . I think that is the best harmny . If you take careful notice , there will always be a bunch of pupils in most classes : they can not get a decent score in academic study , and most of them take notice of this , and thus their minds wander outside the classroom during lessons and occasionally they make some noises that bother others . The teacher on the other hand , tends to be half - blind to this since his duty is to fulfill the hunger of gifted ones for knowlege . Also , if their names happen to be at the bottom of a student list aphebatically , they are called very seldom to answer the teacher 's question and sometimes not once during an entire semester . The problem is that I do n't have a photocamera . I have dad , mom , big sis , and a cuttie dog . Moreover my birthday is Febrary 23rd Not soon after , I changed my name to Echo , which is also the name of a famous writer in Taiwan . You must know her writen name is `` Sanmao `` . I admire her life in Spain , the desert , the sea island , and , also , the romantance between her and her husband . I will go to Austraria next month . My boyfriend went to austraria to study . I bought a gidebook about Korea . Reacently I stopped writting diaries because I 'm busy working . That is a wierd title , is n't it ? It 's the title of a japaness song . The grand - daughter felt sorry / regret because she was n't a good grand - dauther . It 's obivious that situations where public phones are used are getting rarer and rarer . The scene in my photo will be a memory in the far futher . Yet my Enlish and Chinese is bad . The next week they have a contest between themseves all over again . The courses I teach are third grade level math and sciece . Instead of crying about today 's sour situations in Japan , I have to make more effort to be a winner and stand out among the numbers of canditates appliying for a position . after that we went to Mt , TUKUBA I was so tired and frastated before going driving . The tast is n't bad . because of thire existence . These days , I reciteEnglish articles louldy right after I wake up . If you wnat to know Korea , please contact me . And I guess this seems to have made my uric acid leve become higher . And now , I am in a dormitoty . Tomoe made up her mind and forcefully appraoch them . Today is my brithday , I am 20 years old now . Next year I 'll be 21 . Actually , I have thought about getting an ear peiring for a long time . the laidy used the marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks like very painflu , I just feel a little bit itchy . thanks for alicia to acompany me to the piercing shop . It 's not a fun type of plan , but is more of a familiy - related compulsory type of thing . It is very good and has many applocale and different fuction . So if you want to share your thoughts or hobits , I can introduce you to our culture ~ Actually I do n't know wheather he hasfault or not . . . I do n't know whather I should be sad or if I should n't care . My husband was going to move to Hongkong on bussiness . But now that is changing owing to this deppression . My dougther did n't know which was the front part of her skirt , and showing me her skirt she asked me : I was thinging of my stay in New Zealand over and over . In 1803 , Thomas Jefferson , the 3rd president of the US , purchased the great wild west fot about $ 15 million from France because it doubled America 's land mass and would provide rich natural resouces as well as great farmland . Jefferson sent Lewis and Clark to explose the newly bought land . I thought , that those four years of lerning language in school would be enough but quickly I was persuaded that it 's not so easy , indeed . But as you can see , I wrire sentences as if I were a pupil . . . Today 's lesson was a privete lesson . His lesson was fun and he is uniqe . However she always buys delicious food and it might be expenssive . Maybe it seems no big deal to most of you , but since I 'm now studying in Japan , and the Japanese are so difficulte to understand , I must be extra careful of what I do . It does n't look very strange in Enlish , but I am really not sure about whether it sounds like a compliment in Japanese to the Japanese teacher , who I think really does do a good job . Of course I think she knows some of the American peole are not kind , but I enjoied talking with her . By the way I go to coollege now ! ! and his . . . their , , theirs . . I forgot the grammer . . give me a hand . . . thanks It 's `` Cocoa campagne `` and `` Cheese and walnut `` bread . The Cocoa campagne has chocolate chips and raisins . My scool festival was held a few days ago . socond , my homeroom class won first prize in the chorus contest ! ! I 'll never foget it : ) Some people think that the death penalty is the final way we can punish muders . I talked about my resarch presentation in English for the first time . So , I am higrly motivated to speak English more fluentrly . I am going to go Bijing to present my study in English by the end of Nov . I was especially impressed by a beautiful range of poplar trees which had freshy green leaves . We conplained a lot . Second , a dinner for our child contained a piece of metal , and the restaurant owner apologiozed to us , but no service . We got an orange cake as thier apology . Our friend calmed down , and my arkward position became better . Osakan 's `` Shaanai `` culture C : The PIC from the manufacturer was very angly and complained It is very inportant to me . Too many people have lots of pressure in life becasue of capitalism , so should they relax and `` scream `` to themselves ? ! When I arrived at the philippin airport , there were already 4 people from In addtion , I already told you that my English suck ~ There is a bug inside my LCD moniter ! So I want to goto there . Actually , I will go to Singapore when I go to univercity The title of the book is `` how to walk in the warld `` . I reccomend that you also read the book . However , do not read everything ; because if you know everything about the trip , the travel will not be interesting for you . Anyway , Washington will be rainly or snowy . . . . . Today , I am going to watch an america movie to study English . The genre that I want is either ' melo ' or ' comedy ' . Could you recommand a movie for me ? Of course though I have so meny good pen - pals of the others around Sometimes my work is very difficult for me to hundle smoothly . The work will be esier than that in my mind . So let 's start to study English grammer this summer ! ! ! I wii try because this website is very good idea about leaening a languge . ^ ^ I ate kimchi stew and korea pizza ~ Ryouan - ji ( Ryouan temle ) , which is famous for its simple That 's becuase she went to the U . S . to study . sometimes I could n't gdo anything because of my memories with her , but cry and cry . But I worry about my Emglish skills . . . Oh my god this my frist post and I 'm very , very nervous about what other people will say because I do n't write 100 % correct English but I 'm trying to do my best . My favorite seoson is spring . Tommorow , I am going alone to my university to borrow a book . spain bar I 've just found this lang - 8 today and resistered right now . My wife resigned from her job is vey tired . New sentence She could n't bear it anymore . New sentence Plus she also missed our son . The salary is not given out until May 5th . But , today she is supposed to wash all clothes , sheets and so on . Actually I was warryed about this mistake . So when I learned it was not by me , I was relieved , at the same time , I thougt I should be carefly not to do that . meaning unclear you 'll hav a nice trip in your vacation . So I have to help her study in the morment . I really hope she 'll be able to do everything , not only studing but also looking after herself . I have been studying 8 hours a day on average for two months in an effort to get a high socore . But learning English is what I really like to do , just becaues I have to master it in order to pass the exam makes me feel tierd . Passing the exam does not neassarily mean everything to me , I just want to express myself freely and openly without worrying about whether my English is good eough . So , please be critical to my articals , I really need your help to write it coherently and logically . But writtng my diary in English is as difficult for me as ever today . I can speak and write English at the Japanese junior high scool student level , meaning just basic English . However , I 'd like to be able to read and to listen to English like that of a high achool student . But as I 'm in an international department , many people ( many of whom are from overseas countires ) invited their families . What do you think abaut studying foreign language ? Sadly , I think taht we have poor minds nevertheless we live in Japan . Please correct these sentenses Yeaterday I had nothing to write , so I did n't write my journal . I decided to buy a better one to forget about losting my old one . Second , your Japanese is very exellent . I reccomend this movie ! Have a nice day , and BE CAREFUL OF SPAMER ! ! I realy want to learn English so I can search on the internet as I want , They gave me some addvices and . confidence . Today , I would like to make some sentense using new words . Talking with forign people is very fun ! I was woken up by the rain this moring . Today I 'll tell yu about my many hobbies and in return I also want you to share your hobbies with me . To finde the best friend very difficult . A lot of people don ` t have friends , amd me to . I played tennis yesterday , becouse game day is coming . So the government of Iwate prefecture built huge embankments along the coast to protect citizens from taidalwaves . Even many foreign reachers came to this town to inspect the wall . A man in this town told a reporter on TV that `` Even if taidal wave is coming , I would not mind it at all , because we have the great wall . `` But the taidalwave which wiped this town out on the 11th of March was more than 20 meters high . The good part of living here is you can easily mingle with different etchnic groups and learn their languages and cultures . Today I had many drinks : Japanese tea , iced coffee , Yogurt joice and Mango juice . Somthing about Halloween Chrildren like to play pranks . Then the chrildren get some candy from them . Please guide me in improving my English , especially in grammartical errors . I miss him very offen . This mornig , I went to the store again . OK , maybe I should not push meself to keep a diary everyday . And I 'm working on a relief operetion tomorrow . . . This moring the LED monitor for my mobile computer was broken . In other words , It had become a garbedge . One of my friends said `` If I meet a man who is a gynecologists , I will marry him ! `` This is a joke but it means the ' Menstrual Cycle ' is really a big pain for girls . She seem to have heard the plice , but she did n't hear it at all . A beaurocratic office such as NYDMV often fails to be prompt . I 'm really looking forawrd to it . It 's accouonting . This dog is femal and she is so smart that when I took her outside and wanted to teach her to uriate and fecal outdoors , she did it without any words . Because there are many blak spots on her tongue , we named her `` Spot `` . I 've bothe read all of the Harry Potter books and watched all of the Harry Potter movies . I think that raal beautiful women are beautiful no matter what hair they have . My writting There are many things affecting the world like air pollution , climate change , enviroment degradation , depletion of the ozone layer , destruction of the rain forests . . . It 's been a long time , everyone : ) I could n't write a dialy for the past week . 18 In my childhood , My mother used to read me faily talls . 20 Memory gets weak as peopel gets old . 3 : USB - network comverter It was a hole in the wall , very reasonble . Tenpura is a kind of fried , dip fish or vegitables in flour mixed with water , which is then fried . alcohoals sold there so I had a can of beer before entering the gate . And I have never kown how respectable a job it is to be a teacher . In Japan the driver 's seat is oppisite to Taiwan . Transformers ) do n't exist on this billdoard . Beause global warming is becoming more and more serious in the past few years , the temperature has risen day by day . It was my first time to go to Narita temple to see autimn leaves . Monday morninng I went to the gim and ran for 30 minutes and took a sauna . The Joggig Game Bery fast ! ! Although I 'm getting better to lisning English , not to speaking English . It is intersting for me because I think it looks like Japanese ! I hve two reports about Europe and ballad to do . It was unbiliebable , but I soon became accustomed to it . To Master Natual Expression I like to eat in tha park . Today I am going to participate in a celebtations at my friend 's house . It 's a fasionable and exciting drama ! ! The iPhone allows me to doplay games everywhere . it happend . . I will naver give up . . ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! So I colud n't take the 1st lesson . Today , we sang `` New Devide `` by Linkin Park together . I met with a friend who is living and working in Vancouber today . My frind 's lang - 8 diary : URL I am interested in life in foreigh countries . So , I often want to eat some snacks like chocorates and potato chips . I had checks for breast and uterus canser today . It is said that breast canser and uterus canser have a relationship with those who are young ladies still under 30 year old . Furthemore , recently a famous actress in Japan passed away because of breast canser . The formal diagnosis will come out in two or three weeks , but my doctor said me that it has does n't matter because they checked my breasts and uterus from the palpation and through the observaion of them . near the Pasific Ocean . Why was I interst in America ? Speaking in Eglish is really hard for me nowadays . I think it would better for me to study at the library insted of hanging out with my friends this week . I Ca n't Belive It Recentry I feel the spring season in Hokkaido . Because the temperture has been over 0 degree all day . I 'm looking foward to watching cherry blossom 's fllwer . I went to my office by bcycle today . I went to my office by moped everyday , so it 's good for me to change to bcycle I thought . They say that I am smiley and have a soft atomosphere like a sheep . The movie had many grand sceanes , on the way , space and dinosaurs appeared ! It had many beautiful sceanes around 2 / 3 . I remenber 100 words in English ! ! A boy was riding his bycycle while using a cellphone . Luckily , a scarecrows contest the thema of which was `` dream `` was held there , so there were more than 30 rare scarecrows in the beautiful countryside . I 'd like to go there again , because the thema of the contest changes every year . I wanna take a nup too . Since it is not a long distance from my college to Beijing which is the capital , I jioned the travel agency to go on a journey . on my own So . I feel a little dispointment to some degree What makes me embarrassed was that the other travellers are almost lovers or companied , I am the only one . on my own In spite of it being the end of June , the weather in London was rubbish resently . And also I felt like I 'd come to a diffent country , like a resort : ) haha It will be nice weather tommorrow as well , so I 'm gon na go to a swimming pool with my host sister . By the way , it 's difficult for me to figure out the differnce when I use the same verb but with different prepsition . After dropping off my children in ther morning , I walked for 1 hour in the Al Barsha Park . There is little difference between firt and now . In this leter a man tells his children ( about ) how he and their mother ( his wife ) have spent their lives , and how their mother died . My favorite sentense is ' ' Death overwhelmed everything , and this saved everything . ' ' I like my job , because every day I have the oportunity to help people . I work in medical insurance . I work with free medical insurance . If a person 's income is low , they can qualificate for free insurance . It includes medical prescrptions , dental , vision and emergency room visits . Some people who came from countries which had been inroaded by Japan 60 years ago hate Japanese culture . The decision is themselfs . I did n't see many people , but I saw a few people taking thier dog for a walk . It occured to me that even if people live in different countries , people learn the same inportant things . Because I got my wisdome tooth extracted , I have been having only soup and jelly since the day before yesterday . It is liquid , and conteins the nessesary nutrition . I - bought - 2 - potatoes and a frozen - pizza - for - lunch - at - the - grociary - store - near - my - house And - then - I - will - clean - my - room - and - press - my - thirts I bought some premiums for my weddding party which are a machine for making fried octopus snacks and a small Christmas tree . I feel a littele pain , but I think I 'm recovering now . Use specific reasons and examples to support your chice . ( sp ) ( within 30 minutes , more than 300 words ) A Private room is one of the places where I can relax and be refreshed from the excertion from the day 's work . You can earily find some pictures and vidioes and use them as references for your homework . Throught that site , you paid for a dictionary . Nowadays , the electronic industry is becoming popurlar , so fraud like this might happen even more . But people mostly use the computer for more than one hour and as for children , they ca n't refuse the temtation . Besides these , there are lots of other disadvantages such as illegal downloading and becomming violent . I was wondering about what was different between understandable Korean and disunderstandable Korean . Tommorow I will fill it up . ) and I will write about those results tommorow . I feel a lttile idle ~ `` ~ A few minuits ago , I ate dinner with my perrent . It was a good excesise listening to English and I enjoyed watching her actting . Because of the 6 . 3 - magnitude earthquake in New Zealand , A Christian church and a five - story office buildig collapsed in the early afternoon on Tuesday . At least 113 bodies of people who have n't yet been indentified were found and approximately 228 people are still missing or are dead . In a modern five - fllor office building , There was an Englih - Language school where many people took classes . Due to the huge dsaster in New Zealand , hundreds of emergency workers from all around the world have helped people looking for survivors from the wreckage in two buildings . Larry : what do you make emtionally as a black man about the Obama - Clinton race ? To me I feel like they both are great kenedies because they both have strong situations and supporters . Larry : Gangsta , do n't you emotionally though , have some tie to Burrack Obama ? I just wanna see somebody win that in the best entrous of America whether be him or black man whether it be Hilary , a woman , either one to me is . . I think America is ready for a black president by him winning you know how he 's winning so far , even competing to be in the talks right now . I remember in the past , we had presidential candidates like Jessy Jackson . It was a gimic , it was like a joke , because nobody believed Jesse could win . You know `` Win Jessy Win `` , but we really did n't think he could win . he 's in line with the right senario to win . and you know whether he wins or loses I feel like he made a great step for black America by even stepping to the table and pulling off something like this . I do n't know exackty what they said , but what I can sum up is this . Larry asked about Snoop Dogg 's political idea , especially Obama , the democretic candidate and he answered that he was n't involved and democretic party except the `` gangsta `` party but appoved Obama because it could be great step in American history . Yes ! ! ! As I look through the list , what I thought was that many students wrote they want to be a doctor or some wrote they want to be an astronomer or scientist or mathmatician . So , I 'll be tring to write a diary for the next few days or so . I 'm very happey to find this kind of homepage , I prefer to spend money on enjoyable things that make my daughter feel really happy like amusement parks , swimming pools , and zoos and would n't rather spend money on buying many souveniors , staying at an expensive hotel , or drinking too much . During OBON people go back to their parents ' houses , juset like Christmas in US . What 's worse is that we had an earthquaqe the day before yesterday , so there were even more cars He is my church firend . Today two of my friends left our company , they are defferent , one is optimistic , another is pessimistic . After I master English and get ( OR acquire ) PR status in Singapoer . . . . . . . . I 'm shoock : ( I should have interupted the requesters and told themnot to expect me to close it within 3 hoursas he hadwanted but I did n't , and tried to close it asap . learning Englsih by myself over two years . I am writing for beginning the day because is very dificult for me . Stady ! ! I 'll stady English little by little . . . I like reading , listening to music , watching tv and movies , taking walks , riding on my bycycle , singing , writing in my diary , and playing with my dogs . A few days ago , I had the great privilede of a person contacting me via this web site , which reminded me about it . She has destroied a lot of things . But I know , even though / if Toro chewed up every single my favrite shoes I still love her very much . But my English is always ackward : ( I wanted to apply for a lang - 8 blog before I came to brisbane , but I didn n't know why I could not ! ! ! ! what do you guys ususally do at Christmas ? My MD - playr broke . * ' was broken ' suggests it is now fixed . This is why my wife is so angree with him . I pre - orderd a concert tiket for a front seat . This ticket is really expensive but I 'd like to see the airtists from the front seat as much as possible . I scraped my knee , but I did not get a seriouse scar . One is Spanish , the other is Philippina . People created a tower to cooperat . Becouse they had been speaking diffrent languages . Hannukah ? and . . . . By the way , today I went to the airport and met my friend . It was so funny ! When we arrived , we took a lot of funny photos ! When my firend who is gon na leave arrived , we took some hidden videos of her . There are so many menories in Toronto for her ! ! My friend gave her a gift . . . it is a letter and thirty five one cent coins because it is my friend 's age , and her name is Penny . because I need good sleep , and have to lelex . I konw . . . Maybe the best way to learn English , is to have a foreign boyfriend or have a foreing friend So he has to watch the baseball game with a stupid guy instead of the girl of his dreams lol Hoow poor he is ~ ) Surprisingly I finished all of my homework ~ My friend said `` You should deal with stupid homework with stupid ways . My home is under a mountaian . In Krean history , it was used to send an urgent message with smoke on the Mt . I decided to resistrate at a local gym , but I changed my mind . I 'll go to the mountain regulariy every moring ! But when I took a picture of them , it was reall nice when I looked at my camera screen . It 's not one pach but one box . I mashed some strawberrys with the back of a spoon , put suger in and ate it last week . Afterwards , I put suger and milk in and then ate and ate . My fovorite singers are Alex of The Calling and Avril Lavigne . Tonight I heard criket chirping . It was much louder than usual . The criket stopped chirping when I went outside to find it . Tonight I have a criket to sing me a lullaby as I go to sleep . It took a long time to finish Assasing 's Creed 2 . I stay alone at my dormitray , evern though most of my friends have gone home . It 's puring outside which makes me not want to hang out . I tell them that it does n't make any difference whehter I 'm at school or at home . Untill I 'm tired of anwser the same question . Microsoft Excell . . Aside from these basical functions , we can use Excel Macro Function to automate repetitive tasks . So , it helps me practice listening to Engllish . Please check it oout if you can . He was the mucical director of `` Pirates of the Caribbean `` , `` The Da Vinci Code `` & etc . I 'm a Brazilian , I 've studing English for 3 years , and I just noticed that my English is not as good as I thought . Tnks for everything . Today I finished the prepararation for the trip . actualy I was such a stupid person , but my friends helped me understand that . Because I looked foward to meet my girlfriend . The climate is very nice , and evey season is warm , even winter . Every moring , I 'm hard to get out of bed . I just want to trevel The function of the liver of mammals seems to be deteriorated in spring bacause of thier hibernation . Whether we 'll have lover or not in the future , we still support and encourge each other . Now I 'm studying English dilligently to make my dream come true . We have to keep that a secret from my husband because he wo n't like the idea bringking people around when he 's away . Household chores took me about five or six hours and I spent another six hours visitting my parents . Every morning , I offen play sports such as football , volleyball or swimming . I would choose this house , but it has a few probiem . Please watch this muvie so that we can continue this talk . I reiceived a message about the English examnation . I need to preview the konwledge I learned . This exam accounts for 50 persent of result . One group is from the Kanto area , my older brother , my wife and I , and the other group is from the Tokai area , my mother , my younger brother , granma and granpa . We had planned to meet at the hotel at 3 o ' clock , but my littel brother had to go to a job on Saturday , so the second group arrived at 7 o ' clock . We had a dinner sonn after they arrived , and had a chat after ( the ) dinner . There is all - too - comon topic , the work place of brain is different when human understand each language . And , bilingal usually say , you should reject Japanese when you study English . So , if you meet incomprehensible word , you should search in English - English dictionaly . But , I ca n't write and speak English without Japanese - English dictionaly . In addition , that translated English is not often generaly for `` native `` speakers . To study foregin language is hard . They provodes a study room , where we can freely study using the books we borrowed . Seoul is my lovery place . It was a very confortable room , gym area and spa . After I came back home to Seoul from Daejeon , where I had gone to visit my family during the holiday ( Seolnal , or lunar New Year 's Day , which is one of the biggest holiday in Korea ) , I found out that I had received an e - mail message from the editorial committe of a Korean philosophical journal , notifying me that they decided to publish the paper I had submitted in their journal . This is the second time I 've had a paper published in one of the mojor philosophical journals in Korea . I wil be thinking of them . He has had a high feaver and has been coughing . I do n't know why , but it was probably because of my old PC and its browzer . There were maney confusing things I thought I knew . I live in Russia and I want to learn Englisn . I 've had bad luck these days ! A massive headache , sore throat , crowded street , poor air quality , buses which never come , intense classes , and I have an important meeting toninght . . . I dont n't know very much . . . . . I 've been whitening and wanted to a whitening gel because my teeth is geeting dark . ahh and I can speak Japanese so I can teach itt . Anyway if you are interested in chatting and coicechatting on skype send me message or leave a commenttttt . See you ( later ) good night oyasumi bye byematane jaane bai bai ~ I have improved my English by writing a little , however , to speakk to a foreigner in English is still hard for me . Then I get more and more nervous , and I reply with bad pronouciations . In the villages , the farmers are very poor . They need clean water and lvestocks . But if some fctories just emit dirty water , it ca n't be good for people 's health . My coutry needs to take more care of people 's lives , not only the good things . Of course , if you who always tweet in English , follow me ; I will be more than willing to refollow you also . : ) rumur has it that the first year is the most comfortable one of the whole college life , but somehow , I think that I was lied to . But the dentist uses esthesia before the dental treatment . They have beautful voices and emotional lyrics . I 'm so excited , even though I hear it will be rainning heavily . My favorite writter is Tolstoy . I have a strange havit to go to the Odawara castle every day . I take the first or second Tokaido train at Hratsuka . I study English and check my planner for today 's scadule . Recentry other person take a place of our president , so his comment did n't realaized . They aren n't differentfrom Chinese politics that much . I 've never been a shopahoric before . All students were very skillful . I think the accident in the first harf was the misjudgment of the century . I have to learn English , becouse I will become bisinessman this April . Today , my breakfast was an egg over rice , miso soop , dried prum , nattou , and honey in milk . I thought that they 're very hellthy foods ! Transletion sites are untrustworthy . . . No progless today . After the famous people die , it affects ordinary people who get the implusing to commit suicide in groups and series . And as that happens , the social anxiety increses yet again . Strangely , she got a reply from a mistery person . ) She started a correspondence with this mistery person . At last , she found out who the mistery person was . The mistery person who sent the reply was a different person with the same name as her lover . The mistery person started to let her ( the actress ) hear what happened between the two differnce people of the same name , by mailing her a request . The problem is that the mitery women has the same features as the actress / movie star . My teacher Yoko is very sterm . I speak a smetering of English . Immidiately I regretted it because they were not good words . Fotunately he knew that I did n't try to mean what I said . and we became freindship . We will meet again at ather festival . have a quiky rhythm and the video is very colorful . I met a friend with a beautful girl at the theator . Some time later he admitted that he has feelings for her and is so happy that he could not get her out of his mind and could not forcus on working . I guided a visitor around Shinjyuku today , who came from US to teach English at highschool . I have been aborad for 9 months , but I ca n't notice any improvement . I am a freshman at hunan international economics university , majoying in basic English . Since I am instereted in languages , I am learning nihongo at the same time by myself , though I actually know little about it . My friends told me that I am a happy boy with sun - shining smile . I hople I can infect you with my words and the emotion behind it . Then we can be friends . It 's located in Kyusyu . Today 's weather is clody and rainy . I have to chage . I want to chage my life , really . I will have an important examination , next week . I feel a little bit nervious and fantastically excited . It 's my falt . I 'd like to glumble to my mother about that . `` You can do it on upstaire ! `` It has great ryrics and a great melody , do n't you think so ? We peopel are easily influenced by the weather . I hope everybody will have a good and clean oneday , just like today ` s air and spring leaves ! The Bible I am lookig for is an Audiobook . I shoud study harder . It is irratating me because you have to change to vibrate mode ( it is a mode which does n't make any sound when your cellphone is receives a call ) in Japan . My rabit has got sick By then my English skill wil be better , so I will be able to talk with you more . English level and is helful to your English study . Having drunk a cotail at dinner , I am still feleling very sick . . . Im am going to go very soon . His burthday was last month . My specialite is forest mensuration and planning . I like listeng to classical music , pop , rock and Japanese pop music . Therefore , I do n't like the wheather . I hope the dead can go to the pqradise , and the survivors will live a happy life . The most imfortant thing when I buy a bag The most imfortant thing when I buy a bag is the color . I went to the karaoke bar yesterday with a junior menber I knowthat it may sound imprudent , but I 'm dying to watch the real erution some day ! Yestarday I attended a series of lectures on the English language . The lecturer asked the audience to discuss the governemt 's new policy that English classes should be taken by English people ( teachers ? ) only . He arranged us into some small groups , so I talked to two peole who are English teachers . I heard that in Finland there are no textbooks , so I was so curious as to why they can be sucessfull without textbooks . In my class , my students are obviously bored and I also can not enjoy it , Especally , when the stories in the textbook are plain . `` It 's better to not to have textbooks , is n't it ? One teacher believed that teachers should correct student 's pronounciations strictly , while I had not being corrected sincerely when my pronunciations were bad . She claims that a scientific study shows that people over the age of 10 can not pronouce English correctly , but I do n't think she had spoken English before she was 10 years old . Also , my most frightening experiences derive not from pronounciation errors Every mornig It 's hard for me to get out of bed . I always feel sicky after I drink beer But I do n't feel sicky when I drink wines . Tomarrow I will have class again as usual . I told my Enlgish teacher about it , then I said `` Oh , the reason why they broke up is he 's gay ! `` and then I asked our classmates what they would do , if their boyfriend wanted to break up with them to date another man . I siad it would be a nightmare , and a disaster ! But my firend said `` Oh , in my case , it 's so much better than him meeting another girl ! `` We laughted a lot bacause of her answer . But he still needs some rest , and has been linning in bed for a long time . I 'm swimming with my frind . They 're famer . curently they prepering for planting rice . I start in the afternoon , so I 'm planing to go to the library in the mornig to read a book ! It 's the story of a famous Japanese burgler 's struggle for his friend and master during the war . I am worring about the enormous typoon which will come soon . My boyfriend 's sister works at a theater , and she said that she had seen this play and she did n't like it , beacaus it was really weird as a play . The second one was `` Vearoica Wants to Die `` . Unfortunately it was a litle hard so I stopped it after a few pages , because I did n't understend it enough and I read it very slowly . My austlian friend can speak English very well . And my classmates can speak English , because some come from the USA , others can speak it as a secound language . Fotunately , I could come back home smoothly , but a lot of trees in the yard went down from strong winds . In Taiwain , I 've never tried Mexican cuisine . The price in the reataurant is fivefold more expensive than general Taiwanese diners . I like travling , so I want to learn different languages . Aslo , I would be glad to help people who are interested in learning Chinese . When I eake up , I forget everything . Chan taan ahaan tian took - wan , proowaa tii Ginza , ahaan pang kha . I will start going to school in Ginza for studing Chinese . I wish I can speak Chinese with the customer after studing Chinese for 3 months . waight training , not yoga . I took TOEIC exam today . I 'm just scard of firends . I have about 300 - 500 people in my friends lits . If I think you are my firend , I will put my trust in you . But a lot of my firends , they always like to `` betray `` me . About 5 firends owe me money , so they do n't try to find me and I ca n't find them ! I played too much , so I became tired and slept early at las night . I am besy everyday I hope to make friend with everyone in here . Especially japanese people because japan is my favorite country . Yesterday , I felt sicky because I got drunk . Tomorrow is Nossa Senhora Aparecida holyday and Children 's Day . Today is the second day of the beginning of the New Year . The weather is fine and the teempture is very warm . What a fine day ! According to Chinese custom , people will get together in the morning to greet each other . I have an image of people from every country . For example , Americans are active and emotional and Chinese speak hurriedy and are a little selfish . I 'm waching the second season now . At first I thought I did n't want to live in this coutry for a long time because it was hotter than I had expected and I really missed my friends in Japan . one is Korean immegration in of Japan , and the other is Japanease ' Kamikaze ' special pirots in the war . of course I know this activity by the Japanease army but I did n't watch the real screan images until today . its a Japanease black history , so we must not do for the outbreak of war and Kamikaze . in those day , I think people believed that we must be alive and die for our Japanease emperor from the education . I think that they were brane washed by the goverment then . The influences you get from other people make you who you are . If you sometimes listen to urself , you will find that you talk as someone else would depending on the situation . There are meny people who actually are not themselves , insted they are a mix of a lot of other people . Granada was an important city during the 800 - year - long Maslims occpation of Isram seems to have been comparatively generous to another ethnic group . I spent New Year 's Day on very spontanious trip to the mountains with my school mates and their friends . It was very nice to meet some awesome new people . We went to Murzasichle , a small tawn near Zakopane , a few days before the New Year to take some walks and to try some winter sports . : ) We climbed some hills and walked along the streets of Zakopane and in the snowy forsest to admire the beautiful views around us . In China , when u are 18 yers old , then u can learn to drive a car , but last month , I went to New Zealand , and I know people can learn to drive when they are 16 years old , but my visa is a student visa . I do n't know , can I learn to drive now ? Also do n't know I have allreday corrected other people 's diaries , but my `` corrections made `` number is zero . . . . . I learn that the Chinese do not like going duch . Rearly ? Now I can pay for college to help my fhader and mother ! Suddenly , I realized that I will be a college student at taht moment and I would start a new stage in my life . I do n't need to seperate trash here . There are no desinated trash bags either . In Japanese society , low calory beers are popular now . My favorite the low calory beer is `` Asahi off `` . The most two popular languages here are English and Japanese , withoug a doubt . I 'm not complaing , because the ability of speaking Chinese would remain a privilege in some ways , haha . So , people who are learning Tradition Chinese do n't give up and also others , who are learinig other languages , do n't stop ! I have n't baught a present yet - Only neighborhood walk through there . I went to libraly after the test . I 'll go to Okinawa this comming Sunday with my school friends . so I 'm styding English hard . In Central Asia , deserts such as the Karakum andthe Kyzyl kum exsist . This is one of the geographical dimensions differnt from Japan . Also , in Japan there are several sandy areas , which are called `` sand hills , `` but the size is much narrower comared to those deserts . So , I made pre - preccoked Japanese noodles . It 's a very popure brand of noodles in Japan . I watched a video by chace yesterday , and it got me thinking about many things . Watching this , I thouhgt that I had only explored a little bit of myself as long as I have been living I learend a lesson that exploring myself is important . It is aroud 40 minnutes past 12 ( ? ) . I also want to learn some sentences that native speakers usually ues in daily life . I hope you guys can be my teachers and hlep me . I couldn n't use my computer because my stable went bankrupt . At first , I couldn n't understand what happend to me . Needless to say , I was confused , but I tried to think : `` This is a big chnace . I can change my life . `` It 's very hard to pass the English essay - writting test , and so I must work very hard on it . From NHK news , these earthquakes is 8 . 8 - Magunitude . and these are very massive ! They hit all of nothern Japan ! and the Tsunami hit Nothern Japan now . My friend told me to listen to the opening naration , so I did . I took the test becase the score gives me a certification for english skill for when I apply for a job . But actually I thout that I want to stay here longer . knowledgse from books , we do n't experience ourselves . knowledege . So , in my opion , books are the more important source to gain knowledge . On the train I read a book called `` Diary of the winpy kid THE LAST STRAW `` and this book is so funny because , it 's a story that could n't be real . After I got off the train I walked for 3 minites and I got to the Canadian Embassy . Then , I went to the library and took part in the book reading session . Today 's session was about `` What elefhant ? `` . It 's a story about a boy named George , who went home and found there was a big elefhant there . George called a lot of people for help but , nobody believed it was true and George had to do a lot of things because of the elefhant . This story was very intresting for me because , could you believe it if there was an elefant in your house ? Unti - boycott law in Israel Unti - boycott law was established in Israel . I still do n't know why she went home withou any word , so I feel bad today . I work in the company which is in one of the financial cector and I belong to The Ferris wheel is our good memory before getting maried . One of my friends strongly recommand this site to me . I want to go abroad , but I 've never been to foreign co `` u `` contries . But , because I 'm shy it was so difficult to make firends there . . . I maneged to talk with some people . They were from KSA , the USA , Korea , Malyshia , Rossia , and India ! ! my listning and speaking skills are not good . . we have only learned English grammer and reading . . . My nees hurt recently . When the tomato jolted on the basket , it made tamato juice . But some of the costomers say `` Thank you . `` or `` Hang in there ! `` to me . When I walked along the fried chestnut shop , the fragrance of fried - chestnuts was scattered into the air , which made me drooly . I took the lesson from the other teacher but I was given a lot of questions because this was the firtst lesson with the new teacher . It seened as if the story was finished by force . I was very imressed ! `` Akai ito `` means `` the conection between the couple . `` I have a friend who lives in Hawai . After that he went to Hawai . He have lived in Hawai for 9 years . I know what is happend in my brain Yesterday and today , I watched the dorama ( or TV series ) `` Sex and the city `` for 10 hours . Becouse I watched season 6 that has 20 stories . ( or episodes ) One story is 30 minites long . I love Samansa . The question is whether we should elimilate the one child policy . On the one hand , they need to take care of the elderly , while on ther other they need to take care of their children . Exactly . If you have no money then you can not do anying . I have done much houseword today because my boyfridend was watching the world cup all night ! I always regard her as my anti , although she is Vietnams . If you make a correction with a reson , I would be happier ! ! I had seen Avatar in 3D in January , and I wrote about its impression in a Lnag - 8 diary entry . This is the leatest release . Do you uaually think before you speak ? Indeed , why do I learn languages , if I have no one to comunicate with it ? I 'm jpanese but I feel that I must learn the Japanese language more . He has to stay in home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guity and I totally miss him : < I drink an iced cofee after I drink a hot coffeeXD . XD So I can go home anytime whan I want to go home . Its original is `` Shusyoku - Katsudou `` . Docter says it will take about one year to heal . My neighborhood was rushed to a nearby hospital by an ambulance . At this time , which shoud I say `` Good night `` or `` Good morning `` ? 3days ago , I logined in Lang - 8 to study English . I found it takes a lot of courage to face the setbcak in life . And both have toched me . One day my mother made me take piano lessons without thinking my charactor . I preffred playing outside with boys instead of playing inside with girls Sinece then , piano and music scores have been tramatic for me . Speaking English is very different from writting and reading , I think . Whre is the sunshine going ? Though , of cousre I am really happy that we realized that we love each other . Success or failur Thank you very much indded in advance for giving me your answers . How to get fidh eggs . At the gym , I trained myself by using dumbells and some of the other machines there . So I was nurvous . These days , there arealso boxes for the purpose of collecting money / donationsfor the cases of foot - and - mouth disease in Miyazaki pref . I made carbonara for dinner ( see the attatched pictures ) Yesterday , we had a tranlating class and it was exciting for us . So far , when I read something in English , I can understand it if it is about something that we have been tauch . Honestly , in some fiels such as stock market , speciaized terms in economy , and so on . So if I am not good at my language , it will be more difficult if I wanna be good at other lanuages . I really like Europian architecture and art , so that 's why I chose this department . Though I 'm studying French , recentry I started going to English conversation school in / at my university . My naitive teacher is very kind and I made friends with my classmates . Friedn 's birthday ! ! However , fun time ended soon becuase I had to go to the libray for an appointment with the librarian . I had my stomach examined with gastokamera today . First , I drank aliquid to reduce bubbles inmy stomach . Then Ihadan injection to restrain the motion of mystomach . Ithen had tokeep ajerry to anesthtize at the throat for one minute and wait to be examined by gastcamera . It was nothing other than a cockcroch ! ! I have found more and more cockcroches lately . We shoult be content . Athough it 's saterday , I do n't have any planned . It 's likly that the share prices of IBM and AOL will stay at the same level for the next few months . She had to have seven stitcis . I actually have very patrotic feelings - our history is really heroic and difficult . I 'm not good eanogh at it to write anything ( I 've had just two lessons ) It 's Geraman and if I only wnated to , could I & nbsp ; write something understandable . I 'll motify / correct my mistake . Though my daily life is extremely monotonous , I try hsrd to adapt ( myself to it ) . Exceting Cities ( Boiling Cities ) I watched the program named Exceitng Cities made by NHK . Finally I found the program on internet yestarday . Something is defferent between the Turkey in the episode made in 2008 and the Turkey I saw in 2010 . Moreover , Japan is also one of the places I want to visit since I like Japanese cutlure so much . In order to tavel to different places in the future , I will try my best to learn languages and always improve . stupied policy I 'll be going to to Tokyo Desney Sea tomorrow . I recived an e - mail from an old friend . Last week , my supervisor invieted me a meeting , and let me know that the company has a new business plan . it can prevent some viruses and hicker . My body 's condtion was bad , so I slept all day . On the day of my birthday , I decided to never fail to write a jounal entry everyday ! Our president and goverment . I was absent from my company today because of my sons poor phisical condition . He can go to the nersary school tomorrow , I hope so . This is tempra , which is fried shrimp and vegitables . We often eat tempra with soup called tsuyu in Japanese and we sometimes eat it with solt . Both ways to eat tempra are very delicous . he tempra of This picture shows several kinds of tempra . There are many foods which are included in tempra . They are tenndon , which is tempra on rice and tempura udon which is tempra on top of udon soup . I was allways bothered about what people thought about me . . . Today is the first time I went surfing on the Lang - 8 , and I extremly want to When we are working we have joe and fun . ^ _ ^ So we are not well known by people in other contries , especialy the people who live in Europe . I want to write an interesting dialy . Spring horiday ! Now , I have spring horiday for about one month . Besides , I 've been expecting my pacage and letter from Japan but it has been delayed . . . I was living in Illinois , in the outskarts of Chicago , for 2 years . Some people told me that I can speak english pretty well . So for now I want to work with foriengner only , so that I can practice my English with them . I 've had many foriengner friends in Thailand and they really like it here , but it 's opposite for me . Today , I taught the way of makeup to a younger menber in my club . Furthermore , I was praisd for my posture in yesterday career fair ! ! We were in the same grade and the same mojor . In contrast , I think some English words do n't ( seem to ) have any differece , so I want to know how English people distinguish these words . Actually , I did n't know what to writen . In autumn , there are many seasonal delicasies . And I wish I will never have a pattient . TRY - WORKS conducted questionnaires on the web and the street to ask girls about which charactor was the cutest . They were sold at game arcades as a prizes , and Kapibara - san became the most popular charactor of all the prototypes . He became a big hit among girs , and today he is just as popular as ever . My official duties are to explane the work for my workers , check their work , and make orders for building materials . . . I think that this work is difficult becouse I am young for this position , but I like it and it brings me a good salary . I am a student at Gifu National Colege of Technology . I just hope in a few days I can be nomal again . However intelligent you are , you would not say these are corect Although I 've already dicided to not send any , I have to make a lot of New Year 's cards for my family . What can be considered to be a good souvenior ? ? I ca n't decide on souveniors for my Thai friend and his ( her ? ) familly . Winter , summer , twenti - nine , thirty - first . . . It 's news to me , so first I have to understand the general tought ( people have ? ) about him . A rainny Tuesday I live in the north of Taiwan in Keelung , a famous rainny city in Taiwan . I went to the Gold Coast in Austlaria from the 1st to the 15th of August to study with my sons . Today , I discovered Lnag - 8 on the Internet . I like reding good books sometimes . But now I feel a little nervous because mang graduate students are not working . But the students have mang things to prepare . You could find something new or something you 've half - forgatten . In addition , to the Japanese , grass is bule , the smoke of a cigaret is purple , etc . . she ` s so adorable and I can ` t wait to see her weird fasfire and hear her sucking sounds . I am actually concernd about it . Fortunately , I don ` t have to eat a lot as long as I studie because I did not move too much . Does anyone experience this kind of eating habbit ? I received `` A Desk For charie Jade `` : episode 1 from Amazon . Charie Jade is a surprising drama . Today is the day I started watching `` goship Girl , `` which makes my boring life a bit more fun . Once I saw the cover of the DVD , I was totally excited to watch `` goship Girl `` as soon as I could . Belive it or not , this phenomena migh have happened to you before . Has it ? A patient came to my clinic three minuits before our consultation hours was over . but seriously , I 'm considering to go to a foreign country as an exchange student , or take a VISA for a working hollyday : / ummmmmmmmmmmmmmmmm . . . It 's hard for me because I have never lived in another country before and most of time , I 've spent in japanese : ( So im not in a situation where I can drematically improve my English skills , ohhhhhhhhhh my gooooooooooooooooood ! so , I 'm thinking about the other way , a working hollyday . I ` m very happy becouse I met up with my best friends . I think I want to speak English to comunicate with people from other countries . I decided to stady hard English . I thought this is redicurous , and I resisted to do it first , but it was in vain . Those all made me just exhuasted . But nobody coment my diary . When I feel someting , I try to write a Haiku . It 's very nice but my regs ached . As for me , I 've been to Italy , Germany , Holland and switzland . This holiday has many days togather , I enjoy being at home with family . By the way , tomorrow , I will visit Kyoto and meet up with a friend who was my neighbor when I was living in Osaka . I Iate five bananas weighing in total 1 . 5 kilograms . I wo n't do that nexy time . It is common that hundreds of thousands of people apply for one position in one company , abviously , the competition in China will be more fierce than that of in Aussie . However , some employees argue with their employers about job satisfaction in order to improve their work enviorment . This eassy will discuss what factors are important to job satisfaction , and what employees can realistically expect . In this unlimited competive society , corporations tend to concentrate mostly on how to increase profits . He loves diseny , so I wanted to send a diseny one , but I could n't find it . In 1932 , she wrote her debut sgort novel and her writings were published in the school magazine . It includ Qing Cheng Zhi Lian and Jin Suo Ji . In the spring of 1952 , she went back to Hong Kong , where she workde as a translator for UK News Agency for 3 years . But I was a bit supprised to find this kind of site where the registrants assit each other with foreing language skill development . Today , I started to read the passages of the website named `` technobahn ( URL ) `` to learn more about the backgrounds of various fields such as Archaeology , Biology , Ecnomics , Mathmatics , Physics and so on . Since my youngest sister is going to college , none of us are qulified to get any Ya Sui Qian from our parents . But , I never want to give up my futere ! I 'm wondering if the scentences below has any differences . But I decided to choise the normal version , because it is more friendly on kid 's eyes . I have been dreaming of seeing the Christmas tree at Rockfeller Center . I tried to explain `` konnyaku `` ( it 's a japanese food ) to the instructer from America , but I was totally confused : ' ( I need more practice . ) She failed ( in ) the step - up ( examination ) 3 years ago , so she had to look for an one - year contract domitory . In Japan , domitory contracts are mostly for two years but I do n't know ( the reason / why ) . Her contract ended this year , so she had to study for passing the exam and also to look for a new domitory . When we arrived at her old apartment , she had just finished putting all her things into baxes , so we cleaned the rooms and ( conveyed / move the ) boxes to a car . After we moved all of her stuff , we went to a funiture shop to buy new funiture . It was a littlw far from Tokyo . But we had a lot of fun and looked a lot of funiture . While I was looking for her funiture , I found a very attractive box , so I bought it . In the way returning home we went to a noodle restrant because Yokohama is famous for its noodles . These speciall beans have a hearty taste and smell nice . I stuudied English today . Takahiko Kozuka finished eighth , but he bacame the first man from Japan to complete a quadruple jump at the Olympic games . I got angry at my daughter today , so she broak our promise . Then , I thoght that this was good for my English study and bought it . Allthough I have lived in Tokyo for many years , I did n't know most of those Tokyo 's sightseeing spots . The Burger King in Akihabara is a holy ( ? ) spot , because there are little custmers . It 's undisputable that cars are harmful too but I think that aircraft which need a good deal more of fuel than cars are even more polluting . I graduated from a university that had many sutudents from other contries . So , I have larn more English than other menbers of my office . I know my English is not good enogh for bisness , but I will have to work with a cliant with whom I need to comnunicate in English from next month onwards . There will be many comversations with this cliant . A few miniutes later , a staff mentioned the train would n't run because of the earthquake . I feared the infuluence of the aftermath . I study foreigh language . Surely , the most universal vocabulary , the most laconical rules , the most popular constraction help me study English easier and faster . The most moderen equipment and programers use only English . My job is very buzy recently . I studied English in school , but I never did leaen it . In Japan , we will have a long hoilday from April 29th to May 10th , when there will be a lot of tourists going on holidays abroad . This flu came from pigs , but our govenment says it will be all right if we eat pork . Sometimes there are nice things , and sometimes there are bad thinds happening . Fortunately , I have n't experienced a huge earthquake yet since I came to Sappor , although I have experienced slight earthquakes a few times . They are beauyiful . I always believe that I do n't have to celebrate my birthday since I have n't contributed anthing to anyone around me . My childishness make me suffer a lot in campus while others take their time to borden their circle . I 've never celebreted my birthday before and neither have I evergot such a surprise . I think [ that ] the British people really do have a funy accent . A very emberassing thing happend to me when I was in Manchester for the first time . Is it becouse of my diet ( two meals per day ) ? I heard about this website from a friend of mine , who is learning japenese . She said online studying was so much fun that she had improved her japeneses extremely / very fast . So I decided to come here to make friends and to elevate my spoken english and grammer . I 've ended up my bachelor 's at the beginnig of this year . I 'll begin keeping this dialy today . so I 'm studing everyday . I got up at 9 : 00 a . m . I was standing at the booth of my laboratory , and I talked to some people advertizing and appealing my laboratory and my study ( major ? ) . As I mentioned yesterday , my friend Minsung came to my home after watching a concer by singer Park HyoSin . And then , we went to a `` tteokbokki `` vendor because he said he was dying of hunger . I 'm nothing compared to him because all I 've watched are Heores and Friends . A sourt of mouse that has only four fingers and walks on two legs lives there . I want you guys to correct my broken English and I can also help people who needs Korean correting . Does the dormitory of the university in Toronto still have small telephone boths on each floor where students can make phone calls ? I went to a park near my house with my sons so that we could play succor yesterday . This is why I played succor holding him while playing with his brother . I ended up goint to bed again . ( In Japanease ) or `` How wastfull `` ! ! After my cavty was treated , I had a terrible toothache . Fortunatly , my older sister 's friend is a dentist . I do n't like these serious meetings , but I like a lunchbox served dueling it . It was a more important probrem than the topic for the meeting . Even though I go to Sapporo snow festibal every year , I think it is specutacular . This September I will be promoted to a position that has to conssistantly fill out a lot of documents . My concern is if I can accomplishiment my task . My fovorite day of week except for Sunday ! Do you know Udon ? Really , though , I could n't comunication well enough with her . Plese correct my English . Because they are so yumy , they become others ' prey including ours . I was reliefed . I have a fever , headack , sore throat , runny nose and I sneeze often . I hav n't gotten the shot yet . I ca n't have swine flu , espacialy now . I have to go to China tomorrow as a model for a cosmatic company . I am going to the hospital in an hour even though I do n't have the energe . I 'm kind of nervus . During oshogatu holiday , I prepared to aply to get a Canada working holiday progam visa , [ The 34year old England midfielder missed the first half of the American season because he extendid his spell with the Italian side . The auther of this book is genious or god indeed . Please tell me what the most important things are for an intervewing It is one of my all time favorite movies . As you may know , Lang - 8 had been experiencing some technical issues after the latest update which occured the disappearance of some journal comment entries and messages ( friend requests ) In the futuer I will work hard for my family . Today I will study English and excercise near by the park . I continue the effort in the futuer . If I walk wearing this trainer on the street , people think I 'm crazy , but if it 's her , everything will be okey ; - ) Besides , most of all them take paid holyday with 100 % commission Right now , I 'm studing English & Korean because of my job and communication . Please bocome my friend ! It was a nice descovory . A handmade Chistmas cake After that , we ate this handmade Cristmas cake . Her hair clour is drak blue . But , one rainy day , her brother Jin disapired . . . . It was delicios . I want to keep a dialy to learn English . The roads were confusing , but the plice stood at the main crossing When I turned on the TV about 2am yeseterday morning , Now I am writing some documets , including some tutorials of the basic systems and how to use and set up stuff . Even if the guy says that he ca n't live without me as he sincely loves me , and I feel like accepting it , I ca n't . Since I was brought up in a poor family , living withought worring about money have been very important for me . I tried to go outside and see the fireworks dispay . Other Apratment residents were also outside to watch it . My boyfriend will go to golf with his colleaguues . A meal consists of chiken , vegitables , potatoes , and so on . We had gossiped about borring routines as well interesting topics like the Casino . I forgor about lang - 8 for a while So I will go to the gas gasstation and buy lamp oil . the cold is ver bad ! ! ! ! ! ! There is a dressing tabe at the head of the bed . Aroma is again important to make it perfecrt . I can chose the best one for that day from some harbal soaps . I 'm studying CRM ( Costomor Relationship Management ) Then , she woke up in sprise . My Literlly Comprehension . . . . . . . . . spacially when I walk down the street Saudi people look at me interestedly and greet me . Soccer is vely much fun ! The temperture was 37c , unusual in this rainy season . It was usuless , they were careful about their health . now Mao may not take part in winter olimpic . It was very bautiful . Therefore when we went out last weekend , I kind of got lost in Harajyuku and beleive it or not , he led me to the right direction . I applaied for a scholarship . But I still have not recieved any response from them . When I came back home and opened it , I went just insain . Last week , I was asked to trancerate some papers at my office for a co - worker . I could n't come up with the right word in Japanese even if the English word was very simple or familliar . The Phoniex Suns were two wins away from NBA finals last season , Du bety mye fra meg : ) We ( my hasband and I ) decided to buy bricks for her Chirstmas present . My dinner was only riceball and vesitable . I had good oppotunity to meet funny women and we exchanged email adress . She was pro - wrestler and she was eating smorgasbord about 4000 calory . She claimed she could eat a smorgasbord about 4000 calory if she could come to this place . She claims that she eats 5ooo calory everyday . I was the only Japanese untill the new 2011 February team arrived at my school . I totaly did n't understand what my team leader said when I was at meetings . I 've tryied to talk with other Japanese people in English , even if only Japanese speakers sit down at the same table as me at lunch time . We mixe ingredients such as strong flour , salt , yeast and some others . When I come home , my leg alredy dead . . When I was in university , I joined the bollroom dance club . My scheduel is too full Love letters are normally too sentimental and so full of words that only once you read them again after some time you realize how silly and embarrased they make you feel . So I dedicated some of my time to writting . Unfortunatedly , I found that two of the professors seem to have bad ratings regarding class hardiness and teaching qualities . For 10 mitutes , two friends and I talked in English in front of our teacher . The pisture shows the Sept Sky in Hong Kong , enjoy . I always go to the Stabucks coffee . I did a college enteance exam . Because of the sucky asigment makes me nerveus I finished the asigment up . Then I counted how many words I used in the asignmemnt . I ( just ) picked up `` The Dialogues of Platon . `` Since I had promised my kids beforehand , I took my kids and thier friends to a swimming pool today . This photo shows a statue of a Buddhist priest in his childfood . He has been praing all this long - long time . becouse I am apart from them . Do you konw Hiro Nakamura ? I heard that drinking water is good for the helth . A large number of evacuees from the disister have stayed in the evacuation shelters . Also , unfortunately we had the truble with the newclear powor station right after the earthquake . When I pull the drewer , I found some latters . I found blog with iPhone reviw , when I surfing the internet . A large quantity of the site 's features were developed by American and South East Asian engineers , so I had to coorperate with them in order to maintain site stability and to make sure the translations were correct . For examble , there are often some variables in strings , like `` You have learned [ A ] out of [ B ] videos ! `` . So I needed to make a guideline that unifies the way to transalte the site 's contents ; I had to consider the difference between English and Japanese . I deside to make a plan so that I do not waste the time I have left . Becouse of the cold and rain , there were no people except me and my girlfriend . It is better to ride a Ferris wheel in good wheather . The master then put out a five - doller bill and two one - doller bills and asked the boy . Why did you choose the two one - doller bills at the barbershop ? `` So I would like to keep writig and speaking English . 2 ) Let 's review the 3 qustions I gave you today . But today she said `` I do n't remenber `` . I 'm nurvous . My hobbies are playing violine and snorkeling . I play the violine about three times a week . We talked about the habbit between Japan , Korea and Canada . hi . this is my first jounal but , excepe for reading and reciting , Today , my chalssmates and I went to play basketball and soccer , and I felt very happy . I suddenly tought of a sentence . Also , regarding internet tecnology , I feel that it can connect people of all over the world to each other , and that is usefu for business in the future and in our life Because of these reasons , I want to work at an internet company and create new survise using the internet so we can live mofe confortable . A few days ago , I made a decision that I would get up at six - thirthy every morning to study whatever I need to . > `` < So it 's all my fauly . But I could 't directly ansewr thoes questions . Anthing is OK - common image or personal opinion - . It was first time I met them for `` real `` , but they were really firendly ! ! English conversation is very diffecult ! ! ! ! ! ! ! hallo . I ` m a univercity student . Thease days , I have many oppotunity to talk with Americans , Canadians , Germans , and so on . I ask myself , `` Is this English expression wrrong ? This might be wrrong , `` and then I stop myself to express my feelings and oppinion . If you get a chance to draw on someone 's face , I recommend all of you try to draw fake eyes on their eyelids ( like the pictures above . These are my current works . : P ) It makes their sleeping face incredily funny . : D We enjoyed the changing colors of autumun leaves , and we enjoyed the sound of the fallen leaves crunching beneath our feet . - Samurai Sentai Sinkenger & Musked Rider Decade - This movie was very interisting ! Masked Rider movie Next 12 , Desember . Goog summer vacations ! I was born in the Aomori prefecture , which is nothern north than Iwate , so my parents and brother were not injured . I hope that the disaster 's damege wo n't spread more , and that thepeople of those areas may be safe . I decided to exspand my skills in English . This first note is very short becouse I 'm so tired . They had to check my vision befofe I buy them . I am very nearsited . Some peple were fighting policemen armed with shields and nightsticks . At first I dind n't know the cause of the riots , as Japanese TV stations dind n't report them in detail . But in China , it seems to be umbereable to eat raw fish . I colud n't do my best . Deppression Days So we are losting our work . I write my dialy in English and Chinese every day . Hayashi told us about the book written by an Austrarian broadcaster who traveled to China . After some time , apeared a rainbow before my eyes . The camera of my cellularphon could n't photograph it . I want to work for a passinate , challenging , and creative company . My last wish is to never losting happiness no matter what may happen . I 'm not a perfect person but I 'm proud that I 'm a Chritian . frist diary entry Because the internet is speedy and wirelessly . I must plactise it as much as I can . . . But I thought the tiger one was more cute than the lion one , so I choiced this tiger . My adress is on my profil . Thay seem to hate me since I have been put in charge of an important project at such a young age . I invite my friends over , but I feel confusted because of not knowing what should I do with them . On the second day , when I first met Chinese friends , I was very ashame and confused We call it `` Tyakaiseki bento `` in Japanese . The beggining of the rainy season . The quastion that agitated me and my friends was about limbs . According to this script Moll retuned to the real world . It 's in Guamu I will not be able to go anywhere unless I get up early tommorw . The club chief is a hadsome and cheerful person . It was relieved because generally menber of such an inconspicuous club are not cheerful . She became my friend when I was in an elementaly school . Second of all , there is a really exciding activity He is the one that recommonded me to go to his church for the first time , so It is just like rainning fire outside in the afternoon . Despite the electric fan , we still ca n't bear the igh temperature . Eatting ice - cream is the only thing that makes me happy . Now , I wanna tell you especialy about the J - pop artist , Aiko . Is it as hot in your neighbors ? Useally , I go to see musicals in Seoul . It arrives at Suwon saubway station . Clowdy but warm It was clowdy today . I went to a Chinese tample located in the China Town of the Philippines in 2008 . I have some questions about grammer . I cooked dinner for my freinds I had to treate my guests , so I went to the supermarket and bought some food . I bought more expemssive meat than I usually buy . Their answere was SUSHI . They often make joks about my skin . The Weather forcast says the rain and the wind will stop by the next morning . Studyng in my room is so hard . There are many obstcles ( distractions ) . It is irresistable , haha . The bitter melon was eaten in Okinawa originaly but now it is eaten throughout Japan . In addition , it can be used as a green cartain ( ? ) and it is useful for avoiding / blocking the heat . But the various vegitables and plants will help us and our life . One is through the third tunnle , obsorbotory and the nothren most station . She is a good listenr . However , I did n't know it cleary . She told me after she went to America , she rarely read books in hre leisure time , because it 's in English . Some like Yahoo , some like googel , and different countries have their own search engines . I saw `` The Blind Side `` yeaterday . The presents were `` smiles , messege , bouquet , dinner , and more . `` Yesterday I finary receieved a big baggage from japan . I 've been engerly expecting the baggage from my parents . One of my club menberes invitted some other members including me . ( = some club menberes ) . I was so furiout to my parents and doctors . I was so depressed and sad so , told my mother that I 'm so afraid and sad for staying in a hopital . It was the start of the my terrible lunatic asylum journy . I was in ther for 2 weeks . It was the end of the lunatice asylum journy . When I was there , I was so normal to interact with others , alchoholics , schizophrennics , sueciders and dimentias . I hope they get well and live happyly . . . . . I am very nervous . I really hope I perform well and can be adimited by the university I want to attend . I feel lonly , because I have to work the day after tomorrow and my favorite city is Seattle . He made a beatiful Latte . ( picture 1 ) It 's a very beatiful city . I am one of thoose people who has to come here earlier or I wo n't make it on time . Thanks in advance for everyone who will help me make my English understable for other people ^ ^ `` But I 'm warried that it might not require me to speak English . I want to speak in Englih . However , I sometimes keep it at a high temperture I was toooooooooooooooo cold . . . . . . . Today is not sunny , so it 's not very hot althouht it 's summer here . he played football and badmintion , although he did n't win he had fun because he met a friend and relaxed after hard work . This will be my Frist trip this year . I 'm learning English conversation through the enternet . But there are so many English words I ca n't remenber ! But there are no words I can show my opinon with . A new shcool year starts in April in Japan , and March is farewell season . But I think thinking about something impossible is important because it chages to real things . If we hope , we strive to fulfill our desires . wonder drogs And I am hoping to study Japanese and lern how to talk , but now I just wanted to give an update on where I 've been . I think all languages are beautiful , only we just do n't have have enough time to be able to discover their deauties . That is `` Lang8 surffin `` . That 's ture . I think the Internet is a good thing because I sold my bicyle on a second hand goods website [ www . Stil , I ca n't believe he has broken his leg ! ! I would really like to meet my host famiry and feel a different culture ! but , I 'm worrying to ca n't make myself understand in Englih . I was surpreised because many people cosplayed super heros . She trid to ruin the relationship bewteen S and N . I took the role of a presentator and got a lot of helpful advice in yesterday 's meeting . I will do it coutinually to achieve my goal of going to Harvard . They were kuskus ( Africa ) , shan noodle ( Myanma ) , adobo ( Philippines ) , spring roll ( Vietnam ) , guacamole ( Mexico ) . And we , as Japamese , made ' Makizushi ' and ' Inarizushi ' . Fortunatly , my insurance covered it . I want to go to China and feel an air of excitement that lots of Japanes people felt 20 or 30 years ago . After finishing the movie , I went for a cofe with frinds . In Sturday , I got up late becouse I do n't have a class . Also , I had a prakfast and I read newspaper . After that , I went shopping with my brother and I bought some colther . I was hoppy . My supervisor told me ' you should finisht your work tonight ! `` but that work 's deadline is still four days away . ? I think that this is excellent in the overdrive pedal that can be boght in this price range . Some of our friends are comming with us . Now I have a daugter , she is 3 months old . When I lived in Japan , I was a volunteer staff and sometimes tecnical staff in a child - care center . So , I got information from a comunity college . My baby sometimes needs momy ( = me ) , so my study speed is very slow . Maybe this entrie is a bit long , so I am going to finish it for today . I signed the contruct to buy my home : ) It will be 4LDK ( four rooms and one living room , dining room and kichin ) and will be 2 floors . I talke to a girl from Beijing , China yesterday . A lot of people like to stay in air - conditiom places . Unlike forigners , people like to go the beach , picnics or outdoor actititice . It could made her skin get tanner , so she always sput on a coat in the daytime , as well as putting on sunglasses , and rubbing suncreen on her skin . She is very crazy . First of all , I will tell you about my opinion , if we want to be a good boss , I think we have to controll our company very well , be fair , and kind . If we ca n't controll our company , we ca n't deal with some people or companies , and the workers will not believe in you . Also , most of the workers will disagree about our command because if we do n't controll our company , they will not know about our authoritary . If we are doing everythind unfairly , I am sure all of the workers will hate us . Suddenry I noticed what a good hasband I am ! ! Until now I 'm interested in it , but havd no time to start a facebook . I 've heard that the Singaporeans are nocturnal , because the coutnry is near the equator . Therefore / That 's why they do nothing in the day time , and usually start moving after ( the ) sunset . I wnat to buy it . The J3 has many good funtion . Such as an inner speaker , 8GB of meomry , AMOLED Display , long play time etc . I am satisfied by its performance and desgin It takes more than 3 houes . Altough I tried to ask my teacher to correct my composition , he looks so busy . There is a real atmosphere of liveness at the shop where buyers and sellers haggle . I often experienced that . altough I had decided to cook a meat dish for supper , when I went to the market , energetic cries of the clerk from the fish store made me find myself buying some fish . This is my secound journal entry . Today I hadan English test . It was a 150 word essay . Iwas thefirst to finsh in my class but I made many mistakes . I am nighteen years old . + nain - tiin + Maybe you feel really happy one moment ; you think you are the luckiest person in the world . But , very soon , maybe one day later or 1 hour later , you feel upset ; you think youself are nothing . The Divelopment of Science and Technology I will show you a queation , and I will try to answer it in various ways . One difference , I think , is in the divelopment of science and technology , especially that of PCs and mobile phones . First and foremost , soldiars must put military gear on in order to beguile the foes . Besides , puting togather plenty of grenadesfor bombardmentis amust . Meanwhile , others set snares at the behast of the marshal . It 's interesting to know that Dazai declaired himself to be the Japanese Baudelaire . So I always do n't know wheather my writings ( or ) entries are right or wrong . Ultimateley . . It is so dificult , because I have not studied English in 3 years . Two weeks from now I 'm going to Milano , and I 'm going to see `` The Last Supper `` . Before I visiti Italy I want to be able to speak Italian a little . If the eye consists of contrastive colors like brown and white like us , well at least for Asisans , your eyeball movement is easy to be noticed . Is the dorama famous ? Surprisely , the hair - stylist today seems to have done a good job , maybe he is in my mind ! I love horse rase . She is a very storong horse and she is very cute ! However there are desventages , for example , if you spend a lot of time on the Internet it is dangerous . I do n't think that books have any desventage . On balance I think that both inventions are good but the Internet has got more adventages . I especially love soccoer . I am a member of a soccer team & nbsp ; in the & nbsp ; Future Univercity in Hakodate . I am popular in the soccer sircle . So , immediatelly wake up by yourslef , do morning exercises , eat enough food and you 'll be ready for every great day and be able to move mountains ! helo everyone . . . I am an Indonesian . I want to learn japanesse . Nowadays I am gradualy finding out . is rly bad especially writing T _ T I 'm trying to speak english and listenning to english everyday . it 's a big plobrem for me ! The tytle was `` Science Allergy `` I must improve my Japnese ability as well as English . As far as I know , H & M has only started selling thier products in Japan since 2008 and they have only a few stores around Tokyo . I woulld like to make many friends on Lang - 8 . I finished five graphics and one gaphic is being painted now . I 'm wating for you ! We , Asians , performed a play , to tell you the truth , I really did n't performe . It 's a weird sensation , kindda ( kind of ) like look at myself through someone else 's eyes . My mejour is economics . BTW I ate a pizza at Sbarro in Shibuya which opened last mounth . Nowdays , I 've been thinking about this . When I meet someone from another contry , I want to know some expressions for asking new words and phrases in their languages . This time we students were talking about monitering the employees . To my great sorprise a lot of students do not think carefully before doing it ! Anyway , I recomend you to watch this movie ! She is going to play the trombone in Tokyo Disneyland as a one of members of the elementary school blass band in Oct . I always study English while drinking a cup of coffee untill my teacher comes . Our factory has a lot of free tims . It 's a challange to explain love with ( or : through ) science . I attnded a Techono Buddha , which is an event to make relationship through some workshops between temple members who are yong people ( 21 - 39 ) , yestrday and today . And one of them was very weired ! ! However , I chould n't carry tha ball very well , so it took a long time to carry . I hope I could play the weired game very well next time . So I chosed unexpensive but fairly strong ones . We ate itarian food for lunch . And I want to know the American calture . It was quite a peculia reaction among many people in the cafeteria . I will do battle with mosqute all this summer season Actuarely , the machine that had troubles last week is woking without trouble . By the end of Nowrooz children can buy something for themslves with thier money which they took from their ralatives and parents . Anyway , I usually start a new day by writting in my diary about daily life . I was supposed to bring these clothings when I moved to Chicago , but I ca n't find them in my house . My favoriate videos to watch are the American TV proglam . But in fact , with the fashion spreading throuth our country , the person in question was making a humble apology without a different look . Being paticular about their dress may not be bad , but , I think , umpleasant appearances should be avoided . beatiful dentist Since I live in forign country without my mom , I have to cook . I can succeed at living alond and studying . First dialy First , I will write a weekly dialy . I 'm gon to writing my diary here on Lang - 8 starting today . I am biginner . First , I will introduce to you TAIYOU NO UTA , a Japanese movie released in 2006 . I first watched Taiyou no Uta in 2006 . I think it is a good movie and I recommend you to watch it . The actress is Japanese qute girl YUI , her main occupation is as a singer and she is one of the most famous girls in Japan now . You can hear her music in this movie . However I have n't dicided where yet . I 'm interested in NY because I 'd like to visit the Appolo theater , which is known for being the Mecca for Black Music , and I 'm big fan of BM . I like google . . and the sence of this website looks like it . . . . It 's a no - brainer that the bear effortlessly defeated Takeru Kobayash . Acutually I bought the ravioli , so I just made white sauce for it . If they attend Siggrah , they have to study , so they are reluctant to go . I saw a movie called Harry poter . Simons desciribed all of this very precisely . It 's realy horrific what these people must have survived . I like books that describe stories like this bacaous I can learn something about a time when I did n't live but thanks to this world I can see what it actually looks like . Today was the last day at school and I received a certifate . They are famous in Osaka , which I am originaly from . There 's ony one whole day left . However , I have strong likes and dielikes about food . However , I do n't have an I - phone or andoroyd phone . To most of us , friends are the parners , who are valuable to trust in . It is said that please forget me when you are living in happyness , please recall me when you feel sad and painful my friend . She said the different amount was finacial charge that was sent each month then dissolved later , so I ignored it . and followed the amount on the paper statment Now I relieved , but I still do n't understand why the department would make such unneccessary procedures to make people nervous . I do n't know manymany words . mechanical : I respect someone eho has mechanical knouledge because I hardly have any . It setles down my mind . I am lelieved . A gas exposion happened during the culture festival in Toyonan high school in Tokyo two days ago . So it burst and a gas exposion happened . First , I must work hard to ern more money than last month . We can make original plates by kneaging clay . - doing away with oversized trush I rode some atractions such as the Spiderman , the Back to the future , the Jaws . I am going to sleep on the sofa , do n't need cook , go on the internet until late , buy a big cake , talknig on the phone for a long time , , , , . In the groupe , I 'm an English teacher . I invited my English groupe members . But , my plan did n't really work out , due to an unavoid reason . Furthermore , I do n't think my Enlish is good enough for a working environment . And then , I suddenly found I forgot to attach an important E - mail sent to my boss yesterday ( I mean the E - mai does n't have the attachment which should be attached . ) . I have never been a gir who likes to smile very much . ( There 're two types of Zorb , one is that you can grab the hundles inside the compartment or you 're fixed with your arms and feet and there 's no water , and the other , `` hydro zorb `` , is that there 's three or four buckets of water in the compartment . My second adventure was bungy jumping . But they allowed me to stop at the bungy spot and watched me jump . This is the bungy jump in the same place I visited : ( This man is not me , either ) However , I like , potate dishes , spicy dishes and steak . I am sufferig from lower back pain lately . I went to see a doctor and have a body massage almost every day but it was not gettig better . so he has to realign my backborn in the rigtht direction . Right now , It 's 23 : 10 o ' clock in TOYKO JAPAN rigth ? I can made friends who are in Califolnia USA and from the UK I 've just registered for an acount and wanted to leave something for my first log in . Today , my writting teacher told me some reeeaaaaally funny jokes , eh . . . Cantonese : movice & Language These Canonese movies we see on cable TV in Taiwan are already dubbed into Mandarin . Luckly , I got to know an interesting video from youtube which is sent by my friend today . This video has the romanization to help the novice to prounce the phrase or word . His prounciation is also very clear , so that novice can get it quickly and repeat it again and again . Yesterday , I spilled coffe on the desk and floor . I rarely splii things , no matter how busy I am . Today I am going to write na note about my background . [ 1 ] Now , y stomatch is full because I ate too much . I had a kiwi for breakfast while writing in my daiary . I ate indonesia food ! And the main character works pickking it up there . And these countriese are advanced nations . As a result , the rich and poor divide estend considerably . And I think maybe the precence of very rich people caused the presence of very cheap people . I have been studying English for a long time , but I often still make grammertical mistakes . This is my first time to wrie diary in this citesite . They defeated Qatar , Korea and Australia , so I think it is very worthful victory . The smell of pizza was really great and of _ ofcourse the taste was splendid too . Is `` puzzel `` just equal to `` confuse ? `` I 'd like to kinda , I think abuse is the appropiate word , this entry for getting and sharing tips about learning Japanese . Today , I went to see a movie with my frirends . The movie that I wached was `` Crows Zero II `` , which describes the fight between Japanese boy 's high school gangs . I can ` t understand why languges like Chinese and Japanese are so popular . There are so many hieroglyphes , I can ` t understand how people can learn it ! ! ! ! ! ^ ^ ^ Maybe because China and Japan are highly - developped countries ? ? ? Hvae a good Thanksgiving ! ! When I was a freshman at college , my English teacher coud n't speak Korean well . Ansan is one of the most polutant cities in Korea . There are so many forign workers who work for one of the many coporations which are in the complex . Now I think that it is really a shame that when I was a boy , I hated these forign people and the polluted air . If I were a reader of my composions , would I like to read them ? As long as I am writing this , I suppse that I have to ignore the bias from other people . And I do n't want to be cosidered that person who wrote those kind of subjects because I 'm suffering from it . Thus , I successed in getting out my office to go to the movie theater . Today , I 'm goig to write about yesterday . We bought many chothes . We were very lucky ! He builds bubble - nests and feeds his children until they can swim by theirself . hontou ni shinpai shicatta yo = I really worry naze kokoro wa toouku hanareteiru ? waht 's the differebt of koibito and aijin ? I always eat food carefully with my grtitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very populat in Japan . I feel like it stronly , especially when I feel insecure . For example , the times when I walk alone at night . As soon as I realized that I was beenig chased , I was grabbed by the neck . I passed out after being choked sometime . When I regained my consciousness , he was finally realesing my neck . ( I fainted for a very short time . ) Since he took off his hands , I could use my voice and so I said ' I am pregnant . ' , wishing that he would lose his sexual desire . ( of course I was n't pregnant . ) Anyway , he ran away afterwards and I could go back home safely . senkaku islands colligion event Yesterday , the video of the colligion event ( occurring ) near senkaku islands ( was ) leaked on youtube . So a bordercollie collie named ' Sky ' began to zigzag over a field . He followed Sky 's every move , so his watchfull eye missed nothing . When Sky finished the parcours , she began to bark joyfully . she 's golden - retriver , very pretty , cute , clever To be continued tomarrow . Among them are Korean - style drums and inflatible tubes that bang together to make sounds . Especially , the mational soccer cheering group so - call `` red devils `` are famous for their passionate and impressive cheering features . This team is my teacher 's team , and thier dance style is POPPIN ' . She is a woman , but I think she is tha best dancer ! ! thier dance style is HIP - HOP . I slep in late this morning . We played board geme together , `` Jenga `` and `` Zinsei game `` . im styding English and spanish I forcus on my work on weekdays . On the other hand , I want to soak my body and soul in someting diferrent to release stress caused by work . I have a mascular pain because I did sit - ups and push - ups in the gym yesterday . a questionnar to fill out . Everytime when I leave the school On my way home , I felt hunngy I ca n't feel the festive atomosphere around me . They are both caugh and sneez . Now I 'm considering apllying for a Fashion Designing Course at Central Saint Martins in London . I am a begginer fashion designer . After looking through my proposal , my tutor said ' your writing is littile bit crancky , so you need to improve your academic English , ' I checked the meaning of crancky by the dictionary I will start stdying English very hard from now on . I just started writting this diary . Some time ago , my country had `` ellections `` , I have put this word in quotes because I 'm not absolutely sure about results . Some of my friends belives that the real rating for Lukashenoko was nearer 30 % , and that the ellection was completely falsificated . On the other hand , my parents and other family members , ( my uncle and his wife ) , strongly belives that Lukashenko is our only hope . I know that Lukashenko falsificated our ellections , but I 'm completely sure that his real rating was nearer to 50 - 60 % , according to my own investigations . This morning when I woke up , I was so surprised when I found out that my clock did n't work anymore . I was late t to school which was was so embarressing . It was raining cats and dogs and the wind was so stronge too . I went to play bastkeball with my friends yesterday enening . I receieved a China Airline ground attendent first interview letter ! they tried and triend , and nerver gave up . so I need to use mass transpotation or the attendent shuttle to get to the airport . But I enjoy a feeing of relaxation and also there are many field for vegetable and rice paddy in neighborhood . The highest temprature is 23 degrees . New students and their perents took pictures in front of the cherry trees . I am a Ubiversity student . By the way , I have been inerested in Spanish since before I entered high school . It 's nice , because it was made so that we can larn Spanish for 30 days ! But I do n't belieave it , because I can not speak English very well even though I have studied it for long timeX ( Then she answerd that yes , I am a sleeper woman . She is comming next Summer to learn / study Japanese . For example , Micheal Jackson appeared in my dream last week and my house was broken into by a kind of stolker 2 days ago . I still remenber that it was really funny , but that 's all I can remenber . The book so much influensed me so much that I have decided that I want to change my life too . We should n't lable it right or wrong , but explore it in depth . I want to improve my English writting and grammar . There was a teribble typhoon . But even it is difficurt for most Japanese to take more 7 days horiday . My neck , shoulder and back hurt then and I 've gone to the hospiatl four times a week since then . I want you to pick up this twitte . Becouse they left the station while in these days . . . I ca n't understand how these two sentences are diffrent . I joined the workshop of Hippo activitie . We all read the conferece 's contents of Miss Suzanne about multilingual acquisition . This is the first time I know there is such a interestig webside , and I am a chinese student . And they 're my favorit . I saw `` Billy Elliot `` last Thuseday ! Sometimes I could n't understand the pronounciation . Hello everyone , I 'm a new member of the lang - 8 community . I find this site interesting because not only can I learn English , but I can also learn Korean or Japanse . I 'm a student of Nanjing University China , my English is not good eventhough I have been studying for 3 years . I 'm working at a cafe which is named `` Saru - cafe `` ( meaning `` monky - cafe `` ) . But we have to work very hard because this shop was just opened 1 month ago , so we can not give this shop a bad image . You know wahat I mean ? My breakfast was bread and a cup of coffe . Set the glowing stick in an incense burner , flower ot , or other nonflammable , heat - resistant container . Bigining to write blogs ! ! I 'm realy happy but I 'm still . . . This morning , my teacher told us about her daugter , it made me cry . It is a very exciting , srilling , and heartful movie ! My name is Juncihi . My best friend let me know abou it through his way to communicate with people . I had been with people who make others feel exausted with those sarcastic remarks until I met him . I do n't mean only through relatinoships between a man and a woman . Being sencere anytime is the most important thing for me now . recentily . I heard the second tyhoon is hitting today . I wonder if we maight / will have many tyhoon this summer . Study listening , speaking , and writing for 30minutes every day using the English - learning magzine `` Studio Classroom `` to improve my English This custom seems to originat from the custom during the Heian period ( about 1200 years ago ) , where the nobility in the imperial court changed their clothes on this day . However , if I pass the exam , there is a big problem there : finding employment . ordinaly , employments for new graduates are held in a period that I am in a foreign country . I had a fever at midnoght last Wednesday . Now I 'm trying to dictate what you said though , somtimes I notice that I do not understand . I should have concentraded more in our class ; - ( I was congraturated on passing the KAIST graduate school . I 'm guessing his unsymmetry hair style will come into fashion soon ! the visiting lasted only five days , but it was still meaningfull to me . Tomrrow my vacation begins . Korea ( acutually not just S . I do n't like that Koreans get their political education about Dokdo from their childfood brainwashing . A weired Trip I really did n't enjoy this trip , it was weired . I stepped on the blake and stopped . He works in Taiyou no ra - men ( = ) ( noodol ) . He is very poerfuol ( ? ) man . Cigarrets are very easy to be addicted to and difficult to stop . I ofen bought real milk when I lived in Japan . The May Day vacation is from tommow to May 4th . I 've prepared the travel for us such as searching for good restaurants , buying tickets for the aqarium ( which is the largest aquarium in Australia and is near my flat ! ) and so on . Resisting immidiate instinct can help improve my future . I like Argentina very much because they have a lot of stars and they can show us spectacular tecniques and I cheered them on in World Cup 2010 . However , I am Japanese so I definetly cheered on the Japanse team . No . 2 , some cruel commanders or politicians appear in each work , and they definitely order heroes or heroines to do curel and almost impossible missions . When I was littile , I watched the Gundam series as well , but even women and young boys easily die in each work , so I still remember , I finally stopped watching halfway because of depression lol . If I become able to speak Englsih , I want to watch movies in English . I want to make friends speaking English . I want to go to a foreign country and I want to know their culture and eat taditional foods of that country . From then on , I often litstened to American hip hop . The university in Tokyo / Tokyo University is one of the most famaous colleges , and most of my friends are very good at English . So plese let me know if there is any incorrect grammar or simplistic descriptions . One night in the hotel during a bisiness trip I spent one night in a hotel in Fukushima for a bisiness trip which was far away from Kyoto . I carefully chose a hotel at this time in oder to have a good weekend . Absolutly not ! I spent to a lot of time studying grammer , but I forgot so many things . I am 18 yeaes old . I aiways go to University by train . As you know , Easter is a Christan and Jewish holiday . We celebrate the death and resurrection of Christ , while Jews celebrate the Hebrew exodus from Egipt . In order to save money I decided to asked to my parents to receive some books I wanted to read for so long ( I 'm also a little chubby , thats why I would rather readind a book than eat chocolate . . . ) : D Yesterday I bought them . I live in the USA and I love the English languaje . Who can hlep me ! ! Also , I want to make many friends from foreingn countries . I have to perform a presentation about us diplomacy and write a paper about the same thema . A fall of seasonal snow gives promise of a fruitable year . I am determined to try to write shorter passeges from now on . The resalt of my medical check up , is that my stomach had no problems . Wish is most commonly used in hypothetical stuations . So , you shoule keep a balance between work and recreation . At work , every day you can spend at least 15 mintes keeping a detailed diary of what taske you do and how long you spend on them . It is widely known that there are parents who are addicted to gambling and neglect thier children . I hope the Japanese goverment draws up more stringent laws against gambling . I 'm a begginer . Bcause I 'm afraid I 'll open a packege of Karigane Kuki Cha , I looked around several shops , but I was n't looking for anything in paticular . Thier talk is so funny . It is a very convinience cooking tool . The course cost was onry 500 hundred yen . some intersting things . Learnning English alone is already hard for me . It is my favorite item of clothing ! So I 'm very sad . . . . Two small rice balls , an omelet , two steamed meat dumplings , boiled broccoli and tomatoes . I answerd my boss I 'm your `` right elbow `` or rather `` right arm `` . Now I am happy to be with my family , and close freinds These sleds were my birthday persent from my parents . Today , the werther is rainny . . I ca n't understand how the werther turned so quickly . I think that the diary mabey have much mistakes . so I decided to pracice a lot of English in a variety of ways . Today I learnt something very dispointing in the news . Corrently , I 'm a senior in my university , and my major is Contemporary Culture ( like Cultural Anthropology ) . My english is like a child 's , so I will just describy my day a little . The promoters are not associated with the govermant or any national organizaton . They are just private space enthusiasts . ( suggestion ) Recently , I ve been training for a full marathon of 42 km . because all of the whole sentenses are ( in the ) past tense . Do you know `` INUYASYA `` , a Japanese anime ? A long time ago , there was a half daemon , half person , named `` Inuyasya `` , and a priestess ; who loved each other . But they were trapped by a strong daemon and the priestess was forced to seal up Inuyasya . They started a journey together to defeat the strong daemon who made the priestess seal Inuyasya . Maybe it will help me to make a lot friends and to improve my English writting . I live in Hokkaido , Japan . It 's a norhen island of Japan . I 'm intereted in traveling abroad . I 've had great experince in these countries . Though my English is n't good , I think I would like to make frieds ! From then , I bougt almost all of her released albums . I relly enjoyed her performance ? ? ? . Today , I attended my English class performanced by our sunny foreign teacher . There are a lot of podcasting probrams you can download free of charge . I appriciate you visiting our website ! ! I can intoroduce traditional culture . Last time , I mentioned about my undergraduated days . Actually the women 's college which I guraduated from was in Kyoto . It is a pretty historical and misterious place . I heard that Kyoto 's central city has been protected by a magic squere . But actually this magic squere is used to hold monsters in . someone beetles nails at Kifune - shurine . never go and see the people pounding the nails nails at Kifune - shurine . I was really jerous when I stayed at my friend 's house and saw his faimily . I feel like I wana be one of them insted of going back to my country , Japan . There is nothing I want to own asside from a true family , unlike mine . My parents sent me a pearl neckless and earrings . Welcom to Lijiang ! I alived Canada in april . Other information says that children who have imaginary friends may have advantages in terms of language ability and other inteligent functions ( abilities ) . There are many restaurants called Carenderia in Philippines . I LOVE CARENDERIA . They were about her name , age , what her favorite animal is , and so on . I suppose that this is a defficult problem . I found out there 's a twitter account for Toasmasters International , for the members of Toastmasters . In this sentence . `` I 'm sitting behind my work desk and enjoyingthe beautifull weather outside . `` I think , that I ca n't say `` enjoying `` , because its present continuous . Maybe I hav n't had enough patience . Broadcasting companies are providing their TV programs through the Interent . It will be an important year for me at the meanig of exchanging my life . Someone hlep me ! I was immpressed with the fellow phrase written about Google co . I ca n't understand any of the news broadcated on CNN . If I did n't hear about this method , I wouldn n't have But my writing and speaking skills are under - developping . I hope Lang - 8 helps me get some chances to improve at wrinting . Fisrst , I 'm going to vote and then enjoy strolling along the banks of Sumida river . It will be lovly Sunday . chiristmas vacation period When last I heard their sooyhing chime . Within the tomb niw darkly dweels , That tuneful peal will still rinf on ; wowo ! `` Death note `` is so wonderful ! And it will be two posts : english and japanise ( because I should learn both of them ) . But in septenber , I will go on a trip to Hakone with my girlfriend , Fujiko . With it , I can talk to my calleagues and clients and send e - mail . I learned about this website from a friend . I decided that it 's a great oportunity to test my English skills , while at the same time helping others who need to improve their Chinese . But it 's too difficulut ! If you click the adress above , you can see a pregnant woman posing for a nude photo . If your wife were pregnat , would you like her to pose for a nude photo ? If you were pregnat , would you like to pose for a nude photo ? I feel it is embarrassing for me but if my wife realy wants to do that , I will not oppose her . In April , I have to work like a dog because of the settlement of acounting for the fiscal year of 2010 . But peole will remember me deeply . I rethink my curret problem . Another friend said that she was too lazy to do her homework and mentioned that she can wait to do it tomorow because she can turn it in on friday hei hei . The last friend I was talking to is from japen . She is really nice , too . She is polite and when I chat with her I feel warm inside . However , it 's a good thing for Japanese travelers and a bad thing for foreigners who travel to Japan . Cheerly ! ! ! After reading this article - - - What Life Means to Me , I learned more this great American writer and I really admire his bravery , perseverance and deligence . Although he finally found out the upper - class is not as good as he imagined before and then he decided to go back to his spirital paradise ; however , he still achieved it . He is another good example of ' ' once you believe it , you will achieve it . ' ' He taught me people should persuit the truth and what they want deep in their hearts . After several times of failures , he began a frantic pursuit of knowledge to brcome a brain ? merchant and then he finally made it . Bran merchant ? He read a lot and wrote a lot ; he really was a deligent writer . I have no exact answer now , but I will try my best to be brave , to be persistent , to be deligent and to live my life . I was the yougest then all of us , but I could n't play well . First writting She will go aborder to continue her studies . But I was verry satisfied with the bloom and after about an houre I returned to my house . I wonder if I 've got some iillness . Rescently I really want to have macalon . ( macalon ? ) Both street are lined with department stores , high - class boutiques , galleries , theators , and many other trendsetting shops . C : Is there a life lesson themself somehow ? I lost her strength and cheerfuness a long tme ago . And I was somewhat ashamed that I never cared much for anime , because I thougt anime was something that only children and geeks watch . But from now on , I need only 20 minutes by bycicle ( to my knowledge bicycle wo n't be crowded ) . Hobbies and inlterests But nawadays there are many ways to thank mom . I had to do a lot of laundaries , to make 3 bid meals , to clean up in wide rooms . I faile the interview . . . Two men were waiting for me , and the messager was there ( too ) . I forgot to writng a daiary yesterday . So , I am going to write a daiary about a thing that I did yesterday . The less I had was for fourty five minutes . I have a question about an English expresstion I heard yesterday , which has nothing to do with YOGA , I would like a neitive English speaker to answer this . My question is : what is the defference between `` I know her . `` and `` I know of her . `` Anyway , I think I will have to stop thinkin about it and concentrate in order to get at least 580 points . This will be the 1st time I take this examn , but hopefully , I will pass it = ) Fingers crossed ! I could try activities that are imposible in usual days . Playing golf in an uncrowded cource . I had a lot of time to think about myself and my life , famly and job . One week has passed since the greate earthquake . I learned this word , Itchy and Scratcy , from The Simptons ! But because of I wanna create somethin new , 2 years ago , I watched the `` Club World Cup `` filals at Yokohama . Writting a diary with English is not easy for me , But I 'll try it enjoybly . I have thought about systems engineering , But the thought of staring at a screan and staying behind a desk is unbearable for me . I think it was anemia or an epilepsy attack . There are two guys who came to the company 3 weeks earier than me , and we are a team that came to China together . As if by magic , even though I was gloomy and depleased , I became happy after changing my hair . The air is dry in Jpanese winter , and even worse , Japanese people use a sticky nylon towel when washing their bodies . Do you like cofee shops ? Today I went there witm my friend . We do n't have mamy tall buildings and it 's not always crowded . I 'm in my last year of colleage . What schould I do ? I like `` pasta Arabiata `` and `` pasta Carbonara `` . If she writes 1 script , she gets paid 50 milions won . I do n't think there is no value in enjoing friends . Could you tell me the best place to vist in LA ? These days I have plety of work . When I was an elementary school student , I was subjected to burrying at school . One day I listened to tis song on a radio program . I think , a yaer ago , had felt like quitting . I was sleeeping until just now though . . . I plaied Frisbee , ball and hide - and - go - seek with Rin in the backyard . When I called my mother , I pushed my patienced to the limit , but I broke down & cried at last . . . My mother just listend to me kvetch & and encouraged me . Acutually , I met her last month in Vancouver . Fortunately , my family and friends encourage me all the time , so I can get up the courage to find a new job , conuously submitting resume , attending interview . I went squba diving in WAKAYAMA . I got lectured about a license for squba diving including how to use a camera under the sea , how to explore the sunken ship and how to dive deeper . Russina animation It 's a coludy Tuesday morning . The door of the classroom was locked though , maybe because a group of studnets were presenting . Public speeking Tonight , I attended a public speeking club meeting last winter . I think that Communication is the most important skill for living in sciety . Many kinds of people are enrollmenting in the club . It is like a bussiness people , college students , foreign residents , retired people , and house wives , , , , , , , ( but I will not be brackberry or Mac pc user . patience was stronger thatn the tiger 's . Tokyo tower is a simbol of Tokyo , the light was turned off since the earthquake . The strikken area is very hard to live in . There is no Water , no electricity , no gus and no food . Okey ! Good night and thnks for reading : ) Today I had a enjoyful class . With abundant experience in clamping down smuggling , he shared some practical techniques like how to recongnize a fake LV bag , and distinguish shoddy China mushrooms outwardly . It destroied many things , buildings , houses , and so many peoples ' lives . At that time , I dind n't know how awful it was . and at the same time , I saw japanese people have great , respectable manners evn if they are facing a crisis . actualy , I do n't know how the Japanese have grown our great manners , but there is one thing I 'm sure of . I will go to a dermatological dostor near my home . Boogie pop unknow This the latest in this seriez . I have a lot of problems to solve at work which happend one after another . I am very glad to be here for two reasons : I can find many friends here , and I can improve my English wiriting ability . They were photos of thier graduation ceremony . Thank you for reading my compotision . When she first saw the present , she slapped and kicked me many times in fron of our common firends . Aiso I did n't know why stress , intonation and rhythm are so important . I just perchased one book and went home . I will cherich relationships with students no matter what . I think that If I can speak in other lenguages I can find a good job more easily than if I only know how to speak Spanish . First day I met new people in the student 's residence , a lot of people came from other nations such as Brazil , Corea , Turkey , Germany , France . . . fter a long contemplating , I have decided to do a short business course at an institute in town , starting on Monday . university cooperatives in the south asia resion . Nice to meet you , everyboday ! English converstations . First , I really would love to go to the Sarvadol Dalli museum because I 'm a big fan of his . But the attemp by the government to prevent terrorism before it happens may possibly infringe our freedom of thought . Futhermore , if we allow the government to monitor our private life , we may not be able to trust our goverment under the strong surveilance . At New Year 's Eve many of japanese preparate for a good New year . By the day we preparate a new year 's dish , clean the general house and write new year 's postcards . I 'm studying english and germany . I wanna go stydy abroad . This month , Haruki Murakami , one of the most famous Japanese contemporary novelist , published his new work `` 1Q84 `` and , as I anticipated , the book caused a huge sansation . I belive so . At first , we watched the DIU proglam . The peron to be happy are you and I ! I think , photo can say more than senteces and can tel something which it ca n't explain with words . I wish everyone a merry chrismas . I 'm wondering how to feed it ; if it could be hached ; can someone tell me how to keep a gecko ? In severe cases , hypotension , dyspnea , loss of consciousness , cyanosis cuould be observed . The time jist flies . I am from Taiwan . Has anyone heard of this coutry ? I am glad that I found this intresting website . There is a cutom to eat sushi rolls on that day . There are many things to see such as misterious stones , ancient tombs , very old temples , and very old shrines . The first picture is the ancient tomb of Umako Sogano who was the strongest ministor in Japan at that time . The second one is a misterious stone . So they work a littile and , after work , some of them study for pursuing their future career , and others just enjoy their hobby . At the end of April , I came to Hawaii to transfer to a universty in September . So , I hope my writting gets better through Lang - 8 and I make a lot of friends around the world . I 'm a japanease girl and a student . 4 papurika The taste was OK and I think it is healthy and good for diet , because of not unusing oil . Last week I bought / purchased a personer computer . I saved money for almost a year in order to buy a new personer computer . It was my frist experience . According to statistics , if this expiriment goes on , the most beautiful woman in Italy would occur after twelve times . So I went to the supermarket this mornig . That 's why I 'm studying Alabic . I hope I am gon to get better soon . The teacher showed many pictuers of the park near the school , such as `` adumaya ( ramada ) `` and `` hujidana ( a wisteria trellis ) `` and anwsered how they are used . For exemple , there is a large park near his house . The teacer asked `` Why is there a trashcan ( or , gabage bin ) in the park ? `` `` To put my gabage in it , `` someone answerd and everyone nodded . Of course , I could n't answer the qwestion either . `` You put gabage in the trashcan , in order to prevent blind people from stumbling and falling . `` The class was valuable not only to studens , but parents like myself . I heard that there is a very big bueger in Lotteria . It is a famouse fast food chain in Japan or Korea . But I 'm little nervours becouse of my communication skill in English . My friend who runs his own design company asked me to make project manegiment of the fashion brand project . Nowadays it is said that global warming is alredy happened . Recently I met various scinentist to asked about it . Many scientists lie to get reserch 's money or I am thinking what shold I do to save our children Why does it sound sophicticated if I put everything I want to say into words in Japanese ? I thought . What shoud I write at Lang - 8 ? First step in the lirning English First step in the lirning English and I hope this internet service can help me in this interesting subject This will be my first trip after I got my job , and every month I 'm putting a lot of moeny in the bank . I want to say `` thank you `` to my lang - 8 frends . Thanks for your help ! ! ! One day , he found a mouse in his appartment . I desided this year will be different , so I 'll try to take the TOEIC test . The trainning lasted from Tuesday to Thursday . How becautiful the sky was ! It 's awlful . Another thing is that my friend and I were in the middle and high school studentmates , but we have n't been together for 6 years , before I came back to Qingdao . I 've wathed ' Samanta Who ' . her hourse ' I hope someday I can watch all english programs on TV without subtitles and rewinding . The bad quality is cheaper but I think it 's not always the right choise . She made two differnt types of salad and then cooked some very tasty spaghetti . I got to know her through my teacher , who teaches tea ceremonoy . Fornunatery , I have several friends in their 60s . When I went through a path to the Teaching Building and I saw a beautiful scener . Anyway our school have this scener everyday during the winter . Even though I can read and listen to enlish , it is difficult to write in English . Listening to Enlish is easier than speaking it . I went for a lunch with my collegue at chinise restaurant near of my office . It is my first dialy . it 's not acceptable , so I told myself to score 730 or more on the next TOEIC test in the end of Decenber . Although I only have about 4 months which I can use to increse my score , I think it 's a good chance to improve my English effectively . It is a prevailing sport which spreads in evey corner in China to the point that we call it a national ball game ! I can get a sense of chievement in this process . That includes shaping their nail , removing cuticles , manicuring , reparing nails , and nail art . At about 9 : 30am , my homestay mate and I went to my classmate 's flat beacuse we there was a christmas party . There were about 14 people from the same school but from different countries so we spoke in English . I think the party was good for us . At today 's party we prepared a lot of food . Sakiko tought me how to make muffins and she also made a pizza . Other people brought wine and juice . We chatted a lot . Today was a very good day . Today , I taught how to apply makeup to a younger menber of my club . Furthermore , _ I was praisd for my posture at a career fair . Since I went to senior high school , I have been crazy playing basketball and paied much attention to the NBA stars , such as Michael Jordan , Kobe and so on . I heard from my friends who said `` granvill iland was fun ! `` So I went to granvill iland today . Thank you very much for & nbsp ; correcting my sentences , I really apriciate everyone 's help . I think we still feel the cold on the surfice of our face . . When most japanese people speak to someone who is older or they have met for the first time , they usally use the honorific . As you konw , there is no way to know the answer and nobody can tell the truth . But as far as I can see , most Japanese people are scared of hakers . First Dialy See you next dialy ! ! ! ! I need to solve a lot of matematic questions and find time to study to the others subjects . The farmers could get no cleart explanation about their animals and it 's very unfortunate . This is my second time writting a dailry in English , which is very scary and annoying to make mistakes . I want to improve my English . Recently , more children like to eat fast food because they find it delicion . Although , fast food is very tasty , we can not often eat it because it is unhealthy for the body and causes conditions such as : obesity and high blood presure . I went to Gotenba Outolet mall with my friend yesterday . You need to do a lot of training with sking on powder snow if you want to reach the same level as you can with a snowboard . The Fukushima nuclear power plant had suppliesed the city of Tokyo with ekectricity . To learn about her character , I tried to see a interviw on YouTube about her but I could not understand it . The next day , I felt sick and knew I had a faver . Do n't go to a hospital or crinic directly . Second , If you are diagnosied as infected , stay home for 10 days at least . `` Doc , I know I 'm OK , but I have to see a doctor under company reguration . They 're a waste of test kits and Tamiful . Would you prefer that I send them by e - mail or convencional mail ? This is first time I 've had to write in my jourmal since my son 's two week spring holiday began on March 20 . If possibe , I want to study abroad so I hope you guys will help me have good writing skills . I had saw the foreigner who imitate DRAGONBALLs charaster Gokuu . I was glad about the foreigner who was completery absorbed in Japanese culture ! I was tierd . Also drinking and eating under the cehrry blossoms . I think most of the people went away to enjoy a vacance . So , I am rilaxing now . It was slightlt rude of him , was n't him ? Hope everyone can give me some sugges to improve my English . I just pretend to be happy , cheerful , and positive becuase I do n't want to reveal my real pesonality to them and make the mood unhappy . Anyways , many friends misunderstand me because of what I show to them . So , I just want to say to them that the things outwardly shown to you are not everyting . Do n't be obesessed with a bad side . I 'm dipressed with only one bad thing happened to me . I 'll be moving on Octorbor 24th . I 'd like not to watch some TV progeam but . . . In the afrernoon , I went to class and my teacher was so angry at my classmates for being so naughty . I told my teacher that her face was so perfect , especailly her smile . First of all , the developed city in Malaysia is metropolitian Kuala Lumpur . You can find a lot of churches , temples , mosqhes and Indian temples . Malacca is a historical place which was colonised by the Portugis . It is a very cool and humid place where the temperature can be as low as 17 degrees celcius . And the theme park is facinating with its rller coaster . the standardizaion of wages . Howvery , it is very difficult for me , because January is Due to the fact that thier faddiness , I was kinda worried about us going to that resturant becuase what they carry is very Japanese like I mentioned at the beginning ! So , I want to ask you how I shold deal with it . Recentlly , they have appeared in dramas , movies and on the radio . They fought for it , and a very skillful bird caught one piece in air . I know he 's only liked in France and Poland but serioulsy , he was a great man . A good friend for me is someone who realzes my hard or happy mind . They surve very super strong coffee . And thanks to the caffein , I could n't fall asleep till 2 a . m . I want to buy a fulte or a piccolo . That is for the French horn ( with th piano ) . Last year , I arrenged this song and played it with my fellow friends at a & nbsp ; concert . I 've choiced a healthy lifestyle , which consists of early and fully sleep , and yoga and slow running . She nodded and said , `` I want some pinapple . `` There are people at the conference who have good ideas for society in thier mind and they can explain these ideas to everyone in English . I guess they would need to good mind be smart , good at public speaking , knowledges , and have some experience in the field for their presentation to be good . Hi Justin , I 'm your beggest fan Kate Min . I 'll going to watch the mouie in April , and if you come to our country I really am going to your concert . We grilled pork libs and shellfish . I ddi n't say a word . My friends colled me , but I was getting ready for an examine . About one year ago , I enterd the university . I do n't like the `` TUYU `` because we do n't enjoy playing outdoors . Besides , to my surpraise , my friend also had her hair cut ( looks like me ! ! ) yesterday : ) I have learned that what is important for a culture to have vrious aliases . Regarding my rencent situation , for a long time , about 6 months , it feels like nothing of value has happened to me . I am a lucy boy with so many good people around me , are n't I ? BDI , the most important figure for maritime econemy , has fallen down more than 90 % . Naoto Kan , the Japanese Prime Minister regined yesterday . Banri Kaieda candidater for the next Prime Minister election , so some people say that the next Prime Minister will be Mr . The population reserch result showed that Mr . He can speak some japenese words . get him intersted in Korean language ? There is somthing haunting ( in ) my mind . Some pest control staff came in and began the slaughtering this afterroom . Pepole say , winter is the season in which people put on weight the fastest . Do you Undertand ? What a coincidence that they both break up are not perfect with their former lovers and have the chance to get along with each other . then Finally , they find they are the ture pair . I 'm intersted in Barry Manilow 's music . There is a special excercise ( ? ) in Taiwan called fishing shrimp . They can help childern improve their language skills . Maybe because of the differences of our caluture . . . . ? ? It rained during the latter part of gorlden week . By the way , are there long holiday like gorlden week in other countries ? Today , I went cycling to keep helth . I am a littele bit stressed from my work . However I am not used to writing a dialy . I work at an insurelance company . Please see Japanese peopel 's power and cheer for Japan . Luckyy ! I suddenly rememberd a family living in Australia , that I stayed with for only 1 week , about 8 years ago . They rememberd me . But we have drifted apart because we have mooved and changed jobs . . . I think I can look for my lover among the peaople I meet ! I bought Mac eyeliner at Takasimaya . Anyway , it was really exciting when Choi Min - minsik assembled the puzzles he got step by step . At this time , I 've also become hangry and sleepy . I am practicing English for one year . I want to speak to people all around warld and make many friends ! : ) In this fair , lots of EKIBEN from all over Japan are gethered , so it was defficult to decide which ones to buy . I will share these with my hasband . As the test aims at bussiness people , the words and content are slightly slanted towards them and the field , she said . I watched the anime of Ditective Conan yesterday . Playing the guiter I like playing the guiter . I have a gut guitar and an electric guiter . So , I usually play classical music or Japanese POP songs with the electric guiter ! I think that I should play the guiter everyday , but , I only play it two or three times a week . When I watchYouTube , most people play the guiter with very nice techniques ! After much practice of playing the guiter , I 'd like to upload my video someday . . . G ' moring . I was working on my thesis which is about the communication of rock music in china . I kept the mucsic - box on playing classical music . There might be something I missed in reading this email . Do you think there is anything suspecious ? But I do n't usually do famrmwork , so I was exhausted . I never understood the correct aplication of the word : actual and / or actually . Now , I 'm a fouth - year student , my English is now clearly better than it was , but I still ca n't talk fluently , or at least without mistakes . I could finaly come to this site a few minutes ago . we met in the Phillipin , when we were on vacation . It 's fisrt time for me to go there , and I am looking forward I want to communicate wiht them by speaking Korean . So if you are single and watching this video , dont despared , hopefuly you can get a girlfriend too . G : Are you an extremily distant relatetive of his or something ? You 're here to tell bill he 's kcked off the insurance because he 's too fat ? Bill : Hey Cashy . BGF : No , Why is it so hard to belive that I 'm Bill 's girlfriend ? B : excuess me , Sir B : see honey I told you greg 's a good guy . Is n't he awsome ? G : I dont want to think about your good stuff bill ~ or your bad stuff , really any stuff , that , that involes you . It 's not pronounced like the word `` go `` . `` Go `` is pronouced shorter than `` go `` . It got popular in Japan as even Shougun were once very addictid to it . A long time ago , when I ws a student , I studied English for a university examination . It was unneccessary in my daily life and for work to speak English . So , I used to go dressed up as a cosplay ( costume play ) to the events celebrated in Madrid about comic , manganime or japanesse culture with my friends . This character is a boy , so I am going to have to do somethig to hide my breasts ! Everyone sitting around me did n't know it as well , so he was very suprised / shocked . . . : D There are rice fiels as far as the eye can see . I love all the charactor , but I especially like `` Gori `` . Hlp me + ) Her friend , Kumiko , took Mie to an Itarian restaurant last Saturday . Mie felt happy having such a good friend and family ( Of course indcleded me ) . I dislaike rain . My microwave suddenly broke when I tried to warm a cup of milk this mornig . It 's rainning today it 's a interesting mov , in the movie have . two lives to choose ? the one , ordinary life , the person goes to school and gets merried and go to work . Winning dansers performed in the TV Show . `` I was upset becaise you did n't show up yesterday `` This evening I went to the liberary to study English . The rain in those prefacture is so heavy that the evacuation order was put out by the government . And about four handred thousand Nigata peopel have been evacuated to a safe area . If Prime miniser Hatoyama does n't propose a good solution to U . They had a good sport spirit that helped them all the way long throught this compitition . Congratulations to all Egyptions ! How to slove problems like Maria ? I 'm not interested in luxuary lebels like Chanel ( although I 'm fond of fashion ! The company will searh for your ideal person . I just checked if you writted on twitter . I stopped at a departmentstore _ store , and a shopping mall on my way to her house . Both English class and Chinese class are tought by native teachers . SHOPKO is one of the biggest shopping centers in Wisconcin , which is where I live right now to study English . Therefore , I decided to buy juice at Shopko insted of from the old vending machine . Au pair is famouse in Europe , but America does n't seem like be . If anybady ( does n't care ) canto talk with me , could you help and advise me ? Today , I will talk about my opinion on culture diference . As I showed you , art festivals are stlongly related to local people and contribute to stimulate the aregional economy . Please try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs aroud you . The buildings and arts you see will refine your sencitivity . This time , I wrote and uproaded many entries on purpose . But I 'll uproad entries and keep my ( regular ) pace from now on because I 'm ( now ) satisfied with this . I was bored whith this . In China , we contect other people by using QQ , it is like MSN in foreign countries . It 's more difficult than using lang - 8 . I do n't know many speaken languages , and it is hard to use past tense , but on the other hand , it 's more effective to learn English . Aha , maybe I 'll use MSN more than QQ , haha . So , if you want to contect me , you can message me and give me your MSN address . Wow , another way to contect to people , that 's very exciting . In traditional culture , ciggerates are seen as a lubricant for personal connection . Bar and restuarants owners do n't want to offend their customers . today I starded a photoshop class . I like photoshop So I was impatiant , because I felt that I had to study English . I had to drive slow in order to stay inside my lane , becuase I went over the lines due to poor visibility . Althoug I konw my new school will have many anxious moments , and things to do , but I think I will study hard . I 've always known that I do n't know get along well with my parents Becase we do n't have much time to talk with each other . Even if you do n't know it , you are able to access more ditailed infomation easily than what I can explain I went to science world today , Because I like science and I wanted to watch the LEGO exhibision . Season 5 has 16 episodes , and one episode is alomost 45 minutes long . Actually the storyline was really myeterioius . . . I heard the final season is alredy available on DVD . I often try talking with forgine people . He said , `` Oh shit ! `` He should be more cacreful . I started having English lesston using Skype . and think in English , wrrite daily in Engish . I promised my frineds that we would perform ( ? ) in church . Our band is made of bass gutiar , acoustic gutiar , violin , piano , drums , electreecity guitar , jembe , cabasa , etc . . . . I think that if someone would help me get an English name , I would be vere happy . Thanks ! ! Some people were runnig on the beach . Tomorrow at 9 : 30am , I will be studying at my university . We have had an 8 day vacation due to the Songkran Festival . I had wanted to transfer to ICU or emergnency department three years ago . I read the Economist , an English newspares , everyday . I understand enough to hate some words that came from Franch . Today 's mannu was marbeld beef and beer ! I usually ask new students some questions before a Japanse trial lesson as below . - Make a Japanese word using Kana charancter from the keypad . I am humgry now . . . . I am happy if we do n't have snow in winter because I do n't have to clear thesnow . ( It is taugh work ) But it means the earth is getting warmer and warmer . . . . Let 's think about it togeher . . . I did n't even know what subjects I was intersted in . My reccommend drinks are loyal ( royal ? ) milk tea , green tea latte and cocoa . First of all , It helps people become freindly . Ahter sitting for a while , They played the trailers of `` New moon `` and `` Avatar `` that will be coming soon in December . It is composed of 2 sections ; one is the Listning test , and the other is the Reading test . Now I have to dicide which course I will go with . So I want to keep my dialy in Chinese . Starting today , I will go to kindergarden School to pick up my son . . We have been invited to the wedding of a chrurch member , so we planned to buy a dress for that . When we entered the Okonomiyaki restaurant , we were shown to the seat in fromt of the big window . ( shouwed to the ? ? ) We could see the Doutonbori river from there . Today , I went to Kyoto for my appintment with a doctor . But I belive I can do it . Generary speaking , a man might well think , if a woman who he proposed to eat out with is hot , that it is better for him to pay all because a hot woman who a lot of men consider to be hot might be used to being treated by other men , especially middle class men who have lots of money . It is very important to keep trying be a good speaker , like a native speaker ogof English . If you talk with poor pronunciation , that would give a lot of stess to your friends who are native speakers of English , because they have to consentlate to understand your Engish . Does everybody take two days offf during weekends ? Thus I take two days off irregulary . On the other hand , it is propably true that a lot of places are not as crowded as they are on weekends . During my break , a lot of my family members came to see me and I was realy happy about it . Black music was center of my school days and I have repected a lot of musician . Stivie Wonder , The Root , Roy Hargrove , Earth , Wind and Fire , Cypress Hill , Erykah Badu , Jill Scott , Donny Hatherway , O ` Jays , Isley Brother , Big Punisher , Xzibit , and so on . . Actually , Nowdays , I have enjoyed Latin music like salsa , tango , son , bossa nova . His rhytm is like jazz . Instead , I 'll send you a present spiritly . Hello eveybody , my name is Stefania , and I am from Colombia . I went to Colombia last year in my holidays and now I 'm studing academic English to get ready to start fundacion in July . It souns approximately like this : My family and other family members were there and meny acquaintances came . This cinversation benefited me . kotasu and orenge It is to be a pilot who operates a passebger plane . My hometown is Okinawa , which is on the most southest island in Japan . I had not been awared of this job , but as I look back on my life , that maybe has affected me . The first one is to be employed witout any license . I 'm not surprised that Japanese won the award because Japanese tend to be strong in the animation area : ) However , I think it 's not easy for foreigners to get the award and I would praize his effort . Now I understand why this website is so uesful . However , I have a big dreame . It 's verry expensive . . . , so I have to save a lot of money . Then it starts to smoke and cathces fire . When I was in Ireland , I was in TV add for sumiroff ice in 2002 . I heard from my modeling agency that there was a TV adaudition for sumiroff Ice and I was successful in the audition . I had been serching for it for along time , but I could find it . So , I gave up trrying to find it . I was at my friend 's apertment and he was watching funny TV commercials from all over the world . Then he was trying to serch for it and within 10minutes he finally found it . So I look forward to seeing her again but they were busy to go to consert soon after arrived at my house . They left for consert before I left for work . When that happens , my pronunciation sounds very weired . First reason is I ca n't come upe with next word to say quickly . But after an exercise consisting of one sentense . . I was able to understand that sentense just by hearing it . Also , I do n't ( do not ) mean I understood it because I previously knew the sentense . I will continue the challenge of speaking becouse it improves my listening ability . It was only today that I tought of this to improve my English . In order to make my calss more interesting and professional , I spent a lot of time learning about the football game before the class . Mom rase me . Mom passed away in 2001 . Our place became quet and empty . I will do my best to pasiently write a daily diary in English . I would like you to point out and give me a messeages if I have wrong sentenses . Please contuct us ! For example , France - wine , Itary - Fashion , Taipei - computers . I am so happy that my parents finlly agreed to make a cute kitten a Firsty , they do not know the correct use of mobile phones . But my mom always says , `` your mother language is not English so do n't worry if you make mistakes . `` My English class teacher is a forigner . My name is Junho and I 'm koean . and I studied english , listning , reading , and conversation . This belief was formed and reinforeced in childhood every time he thought he was expected to do better . um , , , the songs are very , very , very simmilar to each other . Group singer 's songs are very simmilar to other group singer 's songs . They should just love thier singers , and it should end there . However , they should n't go as far as to wirte letters with blood . I want to skayp with a friend . ( She opens the door ) It 's the vety , dear ! He studus Engilsh very hard . Actually , I had brought my Japanease cellphone over with me which was already connected via a Canadian telecom company with a roaming facility . Anyway I asked some cellphone stores in Southgate mall to compair terms and conditions for me . My company has meny Japanese people working there . I work as dntist 's assistant . People chase many rainbows but not all people can achive the goal of their dream . Curry puting It was `` Last Parade `` written by a / the former supervisor at Tokyo Desney Land . [ BLUE ] Maybe this book is not famous , but the cover is so beatuful . So I really felt relieved when I heard that their family survived the Tunami , though two co - workers sadly told us that their family had lost their houses . This area I live in has little risk of being affected by Tunami . Because a lot of aftershocks are still happening , and also the government announced that we still have to be careful of a big afterquake on 17th March . Plus , my work place is an old building and has gotten damage by the first eathquake . I went there 5 minites early , but the only person there was a tour guide . There are 6 girls who came from different provance , it 's very intersting . Sometimes we have a little trouble or misunderstuding , but most of the time we treat each other like sisters . What an extraordinary feat of human descovery Because it 's a basis for everyting in our lives . I read that people could not travel freely exceot for regious purposes in ancient times . A new shopping mall openned near my town . As soon as we arrived at Nara station , we went to a Kiomo shop to rent a one for the day . Recentry , many people have been visiting here . Ther adventures were met by many troubles but they never gave up . I think I 'm very sensitive to other people 's reactions , especially facial expressions , and I unconciously try to read their emotions through them . I try to smile at them becaus I usually wear a blank face except with my close friends . so if English was n't the global languguage , I probably would n't like it . Although we did n't go out a lot recentlly , we went to the beach almost every day when I was in high school . It was 40000 yen , which was actully better than I thought I would get . I hav an entrance exam the day after tomorrow . My friend said that Lady Gaga produced a purfume that has a very complex odor . I hav so many things I want . ; ( everyone , hav you bought anyhing recently ? He has a glove and some balls , so we dicided to buy a baseball bat for his birthday gift this year . With an endothermic reaction , if the temperature is increasing , the reaction will progress rapidly and the tield also will be increasing . My name is Aleksey & Im 'm in charge of my company 's website . The doctor ASCRIBEDth the man ` s death to driking too much . Melborne is a good place in Australia , I do really like to try the food from differnt countries . Specilly Thai and Vietnamese food . They taste sour and hot , ( and ) I love them . The second thing I really like to do in Melborne is going to the supermarket , That 's my life in Melborne : ) I look forword to going to Europe ! First , I saw it in English with no subttle . I always dream in former way , but one of my firend does in latter way , I heard before . hello , everyone , I 'm very excited to write my diary here . the most important thing is that I can share my experience with all of you and practice my English writting skills at the same time ! I should examine what has the most value in my mind , buisiness , interesting fields or my girlfriend . I recetly had wanted to get an MBA abroad and searched some information about it . I 'll endever to improve my grade point next year , but it 'll be difficult . I heard from my collegue that Korean children studies English speaking and listening well . Therfore , most young Koreans can speak English well . My hobby is playing tennis and travering all over Japan . The purpose of my traver is to make friends in a foreign country . Thak you for your corrections & comments everytime . Thank you for your masseges . We are ging to Tokyo . So we dicided about free activities . The picture is really nice but I ca n't show you it here becuse the picture is really big so I ca n't upload it on Lang - 8 and I have staied at home with my nepewn ( ? ) They are watching a moive while I am writing my dairy . My father just came back and I saw he bought some somthings for us . He likes to buy the sweets for my nepeaw and I hered my mum coming to my house , because I heard her motocicle / bike . My family are ( really ) nice and I felll really happy to be born into my family . February 5th is the day that her new moive ' Kitchen ' will open . Unfortunately , her acting is not impressive and it is hard to see her improvement when compared with former moive she has been in . Yeah , we could go , but even if we did , we would not be able to see very a beautilf view . . . I set up the intruments for the English language school last night . As for me , I admire Tciolkovski . Tciolkovski believed that mankind would not remain on Earth forever . We 've spent several hous walking and chatting and then went to a restaurant . Reacently , I read the ' Norwegian Wood ' wrote by Haruki Murakami . so I 'm writting using only my left hand . Why was I tring to stop the books from falling down , , , , I read about ' The Ica stiones ' on the Internet . The famer brought it from the cave he found it in , and said there were a lot of stones in the cave . I need someone who lives in Sapporo and originaly from USA . Tell me the rignt answer plz ! When you belive in that thought , what happend to you ? I want to make friends with peaple from other countries . Merry Chritmas so , a greeting of Merry Chritmas first ! But tommrow is the last day of vacation this week . My aching waistache has annoyed me for a few days now . People write about their life , what they like to do and their philosophies . They also post questions that they have , introduce themselves , share their love stories , their plans for the future , news topics , sentment about videos , etcetra . I olso give an oseibo to my relatives . Toaday was very cold . I have been waiting for it almost all schoolyear year In September I am going to start learnig French . So in my free time I read a lot about my favourite subjects - History and Geagraphy . The sistem of the plants was badly damaged . I deeply appreiciate to their actions . And , I also appreiciate the aid from other countries . And I thought this old man was thiking the same way . So the young man said ' I 'll crush you ! ' and he avanced forward with his motorbike . Fortunatelly the old man was n't hurt . Immediatelly the young man punched the old man on the head . Hello , this is my fisrt visit to this site . I 'm studing Japanese to become a Japanese teaacher . So today I visite here . There are a lot of smart and rich peole or handsome and sociable people . But hundsome and smart people are rare ! ! Dont n't laugh ! Now ( Because of that ) , I 'm worryinh about whether he 's looking at this entry . I also think that my frind gave me a chance to look at me who I am . That 's how I felt . I had ( some ) special monents there , especially the sunset at deck of Enoshima lighthouse I ca n't forget . ( word order ) Well , thanks for asking . I probablely do n't know . I mean I think I know , but I am afraid I am the one who does n't understand me . I used to think night shift is scarlly * Following sentences are qouted from the book * They have come to japan for vorious reasons , but , for whatever reason , they have chosen to live in japan . But she seems to make people happey and gives powar . It showed humansim , love , faith ? So I was really dispointed with Dr . I was not an excepiton . My home and car is covered with snow . The snowscape is beutiful . When you order food , if you say you do n't want onions in your dish the cook will think you are too particular - and we are n't really considerate of vesiterian either . When I cleaned a keybord , I found something dirty . I went out with my collegues to a curry restaurant . Questin : why the `` note `` is `` noted `` , not is `` was noted as `` ? On 4 November 1922 , Carter found the steps leading to Tuankhamun 's tomb , Questin : Why the `` lead `` is `` leading `` ? I decided to help someone leraning Japanese every time I receive a correction . Located in the middle of the Kyoto City and near the subway station , makes it really convinient . That was unbilievable . Tukizi is famous for its fish auction and there are many street stalls . We can buy raw fish , smoked fish and salt etc . Cherry blossom is not only important for theentering ceremony but we use that as the place to drink alcohl . If you come to Japan , you will see the people who drink alcohl near thecherry blossoms . I hope to make frengs with you . I appreciaate him and wonder what 's going on . Furthermore , _ I see a man behind him is tring to torture him . Theseday days , I heard that some universities accept Enken 1st grade and pre - 1st grade as proof of language proficiency . I hope to studty at ABC University as it has an excellent faculty . Also , they have the lowest persent in computer game downloads . Art students spend the most money to download music and videos , and almost 90 % of them have purchased music on the internet , which means arts students seem to be the most familier with online shopping . The Mistery of Italy `` Why do Italians worry ( so much ) about deatals ? `` But I was suprised that there were so many grafic on the walls , in the trains , Is it that way in sicilia only or everypart in Italy ? I hope to find out `` Why do Italians worry about deatals ? `` Italians are misterious / a mystery for the serious Japanese . It is now midnight and I 'm writing this diarly . Iced trees on the lidgeline were lit by the crystal clear morning sunshine . Accully we did not know yet what we would like to buy , but I know she likes to cook and read books . This is my first time logging into this intresting website . One day , her neighborhood came to her house and asked to give him the ducks . I do n't have a car , but I think it is very convinience to use a car . Big domestic companies still want people who graduated from famouse Japanese universities like Tokyo University , Waseda University or Keio University . In the market , everybody can taste some food , for example fruits or vegutable . He told me that he was afraid to be dropped from the boad and drowned because they played on it . I study Enplish hard too . Now I 'm working in an university as a resercher . Well , , many Japanese Teache use direct method by which teaching Japanese by using Japanese only in Japan . But , I think not many Japanese teachers has experienced learning a lnaguage through direct method . They said `` If other plants shutted down we could n't provide enough power . `` Today I baby - sat my two - year - old niece because my sisiter - in - law went to the beauty shop to have her hair cut . wmm . . . . It was a test where I had a coversation with foreighnor . Today 's box luch is soy - ginger pork . Hellow ! That 's why I Istudy hard . My ftiends wrote a comment about my diary ! ! By the way , what do you think would be the best way to learn lingos . I have a gift of palying music , but I have to learn another profession because of my parent 's expectations . But after this morning , there were a lot of things that happnded suddenly . I think I am an emotionness man . To be honest with you , I am going to visit Canda on Sept 24th . As you may think , Ajjusting to another culture requires so many things and time . Comparing to before , I think my English has improved , especially writting . After I come back to japan in December , I will resume writting essays here . This is my homework , I welcome anyone to corret it . There is only one reguler bus service that goes to work . When she was walking along with a wall in her house , she lost her balance and fell to the floor on her buttocks , which caused the actual compression fracrture . Beecause of it , she was hospitalized and diagnosed with bilateral iliopsoas muscle abscess . Children grow up quiqly , so now she runs with friends ! First dialy entry I have to do a lot of experiments and resarches every day so I have no time to do what I want . Last Sunday , he had work and I went to droiving school . After that , by the time he mailed me it was arleady 7pm . I have just received a letter from my friend Janadab . Thank you , Janadab . Even during my vacation , my collegues had been working and had sent me a lot of e - mails , my inbox tray was full of unread ones . Dier friends ! It was a bargein . Many things were so cheap . I heard that other countries are diffrent . And now , the deadend of my report is coming soon . . . I saw `` AVETER `` the other day . I ' m poor at English and Garman . In the show , there was a woman who brushed her teeth after eating breaksfast . I forgot to ask you some questions eariler . I do n't have any paln to take a day off so far but I want to make sure just in case . I have many frends living in shizuoka . But , I slepped in the bed and when I woked up , I did homework for cram school ! We ate lots of chikin ^ - ^ I like the landscape after rainned days . I like how it draws a smile on my face and makes me think of many thinkings ? ? ? I miss my mother and my father , university is different from hige school . I ca n't come back home often . I also miss my boyfriend . Next year he will go to amerrican to study . If the time could go backwards . I would study hard so that I could go with him . For one thing , I hope the holiday comes quickly . But I am also afriad . . . because it means that he will go away sooner . More Wanted and Less Gotton [ * 1 ] Of course , it 's not the same with everybady . After all is said and done , wouldn n't we just be primates ? I have a alot of work to do even at weekends . Yestoday I went to the library and borrowed a book about spoken English . someonw help me ! But , there is a considerble problem which is privacy . However , I think it is ok to not be checke by others I am a vterinarian . I live in Osak , Japan . I expect to enjoy studyng English . existng outside the mind ; based on facts that can be proven based on your own ideas or opinions rathar than facts and therefore sometimes unfair Ichiro , Japan 's most famous baseball player , is often said thet he is excellently skillful at analyzing himself very subjectively . it is a very modren house . In her letter , she siad if I would come to Canada , I could stay with her . I has never been to Canada , so I am very eager for my next hoilday ~ ~ ~ ~ Greek mythology , classic mythsthe , Norse mythology and Journey to the West . What I mean is , I do have enouhg time to read a book . Tonikght we 'll sleep in the tent and watch the shooting stars hoping that the sky is clear of clouds = ) . I am staving , so it 's defficult to sleep . They have done a lot to help poor peaple , like adopting many children and they have achieved so many things . They have ambitions and clear thinking in their life . Next , stretching and sinple working out . I met some students who came from America to my school and I taked with them . We walked through hallways , steps and food cort . I was really scared becouse I could n't know where I am heading ? I was warried about my son , because he went to the hospital with his mom to have a medicine of polio . But , thet pie was not delicious . I 'm staying in Dublin with my hostfamily and I have an Italian homemaite . I am writting this to ask you something . Shound I give up some tasks or put them to next day ? yuuta aka paris hiluton . Our task was complished smoothly , and I hope that I can participate in the following lab work . If I knew about this , I would have said the first one intead . Could you explane about auxiliary verbs ? in a forein hotel ! I had not droven in Australia before , so I had to be careful . All presemt day politicians should watch it . Seita is hero of this story . His father was a Japanese naval officer , so he was not at home but fighting at sea . ( I guess his father had already died in the war but his family did n't know yet . ) He lived with his mather and little sister named Setsuko . He was living in Koube which was a big city in Japan at that time . Of course the American army bombed Koube as well . When his family tried to escape from the bombing , his mather got invloved by the explosions . Also , his house was completely destroyed by the bobming . His lifeless body could be seen at the dirty and gloomy Koube station on the left screen . Many Japanese people who were in right screen completely forgot these historycal facts , and they enjoyed luxury and busy lives in a big city . I 'm really , incredibly , abusolutely tired now . Today I found a difference in the value placed on meals between American and Japanese poeple . But , my American colleagues buy sandwiches or a humberger with a drink and then eat them at their desk or at the cafe space in our office . So , they prepared samdwiched and drinks for us and we continued with the meeting while eating them . American probably think the opposit of how I feel feeling . I think we should n't think lerning a language is so easy . Finanlly my side was opened and I became free . . Since the 11th of March when the East of Japan was hit by a big earthquake and Tunami , three weeks have passed . She sed that you can contibute ; money is OK and you can do other things like go to visit to the Tohoku district some day . Do n't neglet your gums , too . I 'm studing English . I think I can run now , but it 's raining outdoors , unfortunatelly . I was going to meet with my friend at about 2 o ' clock today but my mother called . I must help her do some somthings and go somewhere . I must cancle my appointment with my friend . These days , some Asian movies are remade by horriwood . I think , for American people , the horror of Asian movies is kinda taste ( ? ) and fresh compared to that of America 's and its movies have a lot to do with diffrence of culture . In short , I got dpressed with the lack and diffrence of story of remakes of Japanese movies . Plase teach me your langeage . I heard a can of sardines was heartrier than other sardine cookings . But today I heard that sardines were hertriest when they were canned . had been sold out at stores until recentry . And could anyone tell me which is more delisious , an oiled sardine or other sardine cookings , if you know ? That was in 2007 , in April , and I studied English for 10 months in Grande Prairie wich is in the north part of Canada . I had an incredible time and really loved my expreince there . Ryo Ishikawa won the tournament by 58 stroks it 's a traditional and beautiful town though , near Ropponngi . I am so busiy these days , and I feel so tired . Because we are lacking in the learning stituation . I Ibegain learning it recently . I can only hope that I can get a great imporvement . We had a drink ( cocktail ) party with our cowokers . I could relax and comunicate with poeple who I had not talked to before . As a chinese person , at any rate , we should be happy , becouse it is being held in our country , our city that we are familiar with . The ending is not particularly clear and we have to wait the squel . I begin writing the dialy in English So , I begin writing the dialy in English ^ ^ The belated farewel party is to be held this evening . Actually , the farewel party is for a co - teacher who moved to another school last April . I was suprised and very glat that my friends sent me text mail to say happy birthday . I 'm going to study English every everyevening . every erymorning and every night , you will get beautiful skin . Appled for a passport I met my old frieds in Kyoto Staying in Kyoto is very comfortable for our family , I don ` t have to care about radiation , blackouts and aftershakes . Do you know Cryril ? He marvelously returned a dead bee embedded in a 5000 - year - old amble to life in a jade market and cooked instant noodles with cold water . We decorated with gohsts , bats , witches and more ! First , we got togeter , and then we walked around to get some candies . She is 177 centimaters tall . I 'm 160 centimaters tall . So I dicided to restart writing my diary in English . And then I went to work after luch . 16 students have caught the flu in a class where ther are 30 sudents . Unforetunaly , I have a lot of chances to touch children and get viruses . I have to protect myself , so I wash my hands and gargle evry time when I go back home . On this New Year 's Day , I 'm spending a plesant time with my parents . Finally I hope that everyone has a plesant time in this year too . Recently I happened to find that itunes has many internet radio staion channnel in its menu . Itunes ' list of is good , and almost all of the staions are now in service . So , I can hear many different music jenre . I am 22 years aold right now . I was 21 years aold 3 month ago . . Farst , I must finish my report . ( Fiton is bedding . ) I felt like I should take some picturs . Fortunately , I had a camara in my purse , so I took lots of pictures . Tpday in Korea , There was a strong typhoon . Because of their way of life they constantly need new things , but it stays pratically the same : rock , wood and so on . Nowadays , there is more and more advertizing about protecting our planet as a refresher course ( of paper and empties of anything . . . ) what ? It 's a wonderful city owening beautiful sightseeing spot and brilliant night life . I 'm 31 years old and I have been working at the same hospital for 12 yers , Therefore I worry a lot about going abroad . . . . . The Microbiology department at Tokyo University has just reported that helocobacter Pylori , which is one of the causes of gastric cancer , makes protains that camouflages human protein structure . Pylori injects `` CagA `` cartinogenic protein into cells in human body . CagA camouflages as pragumin , and then it bainds host enzymes . As a result , it induces abnormal cell dibision of host cells . The typical place is in a shurine . Leisurable evening After eating , we went to Dante Coffee , and stayed untill 9 o ' clock . After advancing to the second round , I was sure that Japan would beat Paraguay and go forward to the quaterfinal . I want my hair to be like Bradpit Pitt 's . . . . . is it impossible ? - _ - ; He said he wanted to go to `` Yakushima ( in Kagosima ) `` My parents ' family are living in Kagosima . They are resistered by World Heritage . I bring news about two major satellites named the `` AKATSUKI `` and the `` IKAROSU `` . The `` IKAROSU `` is from Greek mythology . Obon ( japanees custom ) I believe that Japanese subculture , which includes anime , comics and video games , etc . , is a very strong industry in the world market because so many young peaple enjoy it . [ / BLUE ] The market size of Japanese subculture is bigger than that of other intdustries in Japan . I think the Japanese gorvernment should support the globalizaion of anime as a strategy for economic growth . It happend again . . . There was an earthquake of magnitude 7 . 4 on April 7th 11 : 33pm JST in Miyagi . It happend again . NHK is broadcasting that the newclear power plant of Fukushima # 1 is alright but they are using deasel generators there . I should have separeted them in two parts and I should have made it twice . . . I add it to tomato sauce or curry sause as a hidden flavor . Becouse I am new , at first I was not able to do very much . I sat in front of the computer and smiled at my colleagues when they passed by me . Later , I squeezed out the excess moisture and topped them with some cubes of cream cheeze . I think cream cheeze really goes well with Japanese pickles such as cucumber and radish leaf . Lang - 8 is very nice sistem for people learning languages . The countries where I have traveled to are Italy , Spain , Combodia , New Zealand and the USA . I 've been studying English and I have to translate the sentense below . However , I ca n't understand why they use the Present Perfect tense in a last line . I love the San Francisco Giants , because I think ' Great Diffence ' is the best thing in baseball . Last year , the Giants won the Worldseries Series , so I 'm looking forward to this season ^ ^ Also I 'm sleepinng ( ^ ^ ; ) Let 's alsotalk about Hormes , Robert Downey Jr . , Jude law , and so on ! Drop - outs and high school , college or universites graduates account for about a quarter ( 23 . 8 percent ) of jobless youngs in the age range of 16 - 29 . The problem of job placement for unemployed graduatings must be solved . vadminton . In my class , the best vadminton player was my friend . and teacher called me and I was approched by the teacher . My friend had a baby last manth . Whem I told her , `` I want to have some forien friends ! `` I only have a few foreign firends on Skype , so I hope to make more of them there . A tyhoon is coming close again . They are very funny , wheh I was watching I could n't stop laughing out loud . He is my fav acter . In Japanese martial arts including sumo and kendo , the practitiners can maintain their balance and respond quickly to opponent 's attacks by shuffling . Yse , it looks like a fuman face ! But I do n't know how to start conversation with straingers . What makes it my favorite thing ? Firstly , There are many interesting games for the PSP flatform . It is now Dechmber 26th . It 's my great leader , former President Mao Zedong 's birthday . She has dicided to take the shells which she foud home . My wife let them wtite it . Yesterday I lerned about ideoms . And now I know the meaning of some ideoms . If you like , please teach me ideoms . ex ) it 's raining ccats and dogs ! Today our teacher gave us our own photo albun ^ - ^ Though the price of plane ticket is not so much expencive compared to those of other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of taking visa is complex . I was singing unhappily , whle other members were all singing very happily . . . Taday I almost stayed all day in the library and read books , which made me happy . I hope I can visit Koreaan some day and experience the original culture . Prepair the presentation . I always think that I am not intelligent when I prepair presentations . I wonder if I will ever be a genious , but what I can do now is make an effort . Cheryy blossoms But it was good to go to a popuar spot for Cherry blossom viewing . Japanes spirit I guess the Japanese surprised many foriegn countries . How could they achive the growth ? They had realy strong hearts . Our Chior conductor cooked delicious foods for us . It is my barthday soon ! ! My barthday is this month . But , I have not started stading Spanish yet . l felt sorry for these acts . It also tells me an important message , that the society has changed . As society memberswe , we have a duty to prevent these sorts ofacts . Recentry , I have been learning how to pronounce English words . What dou you think would be a good theme to write about ? I had not really noticed that my father was getting old , but I saw a very shocking thing sevral months ago . Because summer is comming soon ! I felt an irresistable impulse to eat some cheese cake yesterday , and I could n't suppress the urge , so I went to a patisserie nereby . I know , I sould n't have , but I just had to . The Miod - Autumn Festival is a family time . There was a very serious earthquake and Tunami in Japan . So , when I hear it in Japanese , I feel unconfortable . The sight frightended and depressed me . I had to look for another one and walked a few mimutes from the parking lot . because I tir easily snice I got my night duty . And afterwards they will think about my apploch to my boss . After all , tomorrom is another day . It sould always be a pair right ? All Japanese Beef Sould Be Inspected I 'll try to reviw my past entries . I think that many Japanese people ca n't seak English . That 's why it was difficult to show us the dolphin 's and seal 's perfomances ! Some friends say that I 'm witty but not every time , because sometimes I 'm a little conceited , not because of my extremily self - confindent , but bacause I like to share my achivements . Concerning books , I read all kinds , but I 'm really critical with books without a good porpose or those lacking criativity . My yanger sister cooked it , but it was not nice ( good ) . yes it makes me excitied when I buy new things I get used to new appliances very fastly it makes me excitied because it feels different This is Jessy 's beartiful but sad song from Toy Story 2 . What do you reccomend ? What is your favorite music ? What other phrases can you use insted ? I do n't think all Singaporian are lazy . * Sho - chu is a kind of Japanese traditional sake , alchole . One friend adviced me that counting sheeps would work , but Another friend adviced me , `` Imagie winning the lottery and imagine I will learn how to pronounciate English by watching the American drama ' Friends ' . I will be able to improve my pronounciation , English skills and learn their culture . The first writting in a quite while We cook many kinds of ingredients like seafood , meat and vegitavles . Deal with a hectice schedule next week I only have one in one subjiect . I live in Sankt Petersburg . This city is the nothern capital of Russia . But I do n't to go nail salons , I like to do it myshelf because I can create any patterns I want . Of courese , I have served as a leader before , when I had group a preject in colleage . There are many books which are related to leadership and my companies want applicants to show their special leadership exprerience . So , what would be a special leadship experience ? Although jumping at the chance of becoming a leader is for some people second nature and very easy , other people have difficulty expressing their leadership style . I could not wrrite a diary entry because I could not use the internet . Starting today , I will wrrite a diary every day again . I 'm thinking of joining a English club that is held near my uneversity . I do n't know why but the internet was realy slow . The first meeting with someoen for langage swap When I was styding , I could hear my parents laughing from next room . Leon drinks milk , pland orchids , and irons his own clothes Pease try it . By the way , I 've heard that people who do n't live in Japan tend not to like eating octpus . Octpus is a sacred life , is n't it ? I also found out that my friend who was missing from the area most effected by the Tshunami survived ! I was so sleepy when the teache was speaking . I am interested in forest landscapes , and went everywhere in Japan to see beautyful forests . They were all the most beatiful forests that I have ever seen ! my hoobies I like adventure books and almoost all fimls , my favourite plan is an evening at the cinema . I really like going to concerts and listening to music too . It 's a hard thing to remenber so many words and sentences . Luckly , every Chinese student needs to take English lessons , and this is why I can speak English . Anywhy , I 'm glad to see so many friends here . I was satisfing both my heart and stomach . At the same time , I of course konw , I am not a easy woman to get along well with . Hi all , I 'm Midory from Hokkaido , a northest iland of Japan . People are nice , beaches are beautifl , and Okinawa food is awsome ! Com Master which measures my Internet skil . Many costomers are also better informed about procedures and precautions ( including confirming that their doctor is an authorized surgeon ) . So the short tirp helped make me feel refreshed . Acuallly , I broke wind when you turned on the air conditioner . `` But If you read many books in a foreign lanuage , you can memorize a lof of words , even though you feel it is hard to understand it when you read the book . and Itook a blood sample fromeight peoplo . because I really appriciated them . ( The corection depends on if it 's helpful or not . and I 've often made misspelings in Japanese . I just wanted to write English naturaly . My main mission is to present the situation in Japan to our US headquater . I have no cofidence in my English , even though I 'm teaching it to children . Besides that I 'm plannning to take the pre1 level of EIKEN this winter . This is a comic magagine that is published once a week . Nakata had an accident when he was an elementary student and he became illieracy . Frist contact When I was a child , there was a caton movie named Ikyu - san . However , I study English almost every day , and that maight even be considereda preparation for . the test . Last year , I had a spcial memory in Au . Some of my friends prepared the dinner together , and then we celeabrated that special day and played games . Nowadays , I 've come back to Taiwan and have alreay got the job . Some of my colleagues are almost 50 years old so it 's difficalt to have the same interest . On the way to home , I was cought the rain My daughter was worried about her unbord baby . I was surprised and releaved to hear the news . I often see it . so I asked my month ( mother ) where the cat had gone ? My monther answered that the small cat was dead . My monther pointed to my son and said , your son killed the cat . At frist , I do n't think I should have any concern , when he / she ask for assistance , but it 's becoming more and more frequent . . . I wonder what I should write some articles for my dialy entreis . After the test , I was depressed . Not because of the reslut of the test , but because I was disappoinment in myself . Expensive Jasmin Tealeaf In particular , I like jasmin tea . It 's different from normal jasmin tea . It 's more expensive than any other jasmin tealeaf . We didi n't talk much . For much of the time we sat in slience . You know Japan is a small island so many Japanese people do n't ever need to speak English and they rarely meet Americans . This is supecialy true in rural Japan . The world has changed the culuture surrounding language aquisition , and of course in Japan too . It is also my favorate animation . Today , I introduce my favorate movie . I could n't review my former lesson , but I colud take the lesson well . So I am booking lessons with them now , but I 'd like to book a new teacher who works within an online Engsish school . It ` s unbeliebable ! I want to say to all of you - if you want to achive something in your life you must study a foreign language . in additon , I seldom exercise . I decided to start exercising regually . I almost did n't see the movie becuase there was no one able to make the time to see it ( with me ) . - Woh kaunsa chhuri hai ? I just had a cuple of tea ! It was very nice morroco tea . so I 'm looking forward to spending my 17th birthday in foreigne country . But it is n't related to being a vegitarian or not . one of the pvivate schools here in Thailand . It 's my heart 's desive to know English . Yesterday night , I drunk with my colleague who retired from our compny last October . For example , how to work effcient , how to communicat effectively with junior partners and my boss , and more . Hate means far awy , and teruma means coral in Okinawa 's dialect . Did you have a experience that you could n't see the horizon regurally becouse of waves , and jump up from your seat like a roller couster . He and his friends made capcakes in the night because of White Day . but , it 's usefull . Children are not good at langage . The seventh personality is a optimistic , active and fast moving like Peter Pan , who wants to be a small child foever . He love adventure , he hates engagement or enforcement from other people , hence he will have many alternative ways for joyful living . This advertisemant introduces the origin of this brand . If anyone can also introduce me to some interesting activeties , places or stores to go around , I might not stay in my house and get bored all the time . Also , driving a scooter here seems to be too crazy as I might be the only one using this type of miniture vihicle and could easily get hit without being seen compared with huge cars . I sterted studying English when I was 12 years old Are they idtentical ? If you visit Kagawa , plese eat udon ! ! ! The good thing about this , is that if you want to change weather you can just wait , or drive like 15 minutes and you 'll find a warmer or a colder place , wich is kind of awesome . So , I make my living by the scolorship and savings . My wheight is now 63kg now I 'm preparing for physics at university - there are no tests for enteringin this course , but I want to try for a scolarship so I must study hard . it 's very difficoult to take , but I have to try . . . obivuously , 12 plus 4 is 16 , and the 17th was Giulio , Anastasia 's boyfriend , whom arrived in the middle of the vacation and left before . He can crawl very quickly , and he can stand up while hoiding on to something lately . He is eating oatmeal and mushy ( mashed ? ) vegitables twice a day . If it is a successful YUINOU , you can marrige eachother . It is a South africa girl who is very hungry and thin , she finds water or food in the wild , but she ca n't take any steps because of loss of physical strength . I always talk out loud to her , I 'm being impatient with her , and I thingk she ca n't takegood care of herself . Now , I heard that sake is more popular in forign countries than in Japan . underwent it rencently , it 's hurting so deeply , when can I forget this and begin a new life ? I 'd like to say not to change the figure model , but some structual change is OK . A Japanese company annouce that they will use English as the official lunguage for their company . The chances of using English is increasing with globalization , so I think this is a good chalange for a global company . So it is urgent to raise environmental awareness amongst the general public and do something for ourslves from now on . Christmas is near , I will have three days off ( not go to work ) , as a friend of mine invated me to go their home . Besides , he has a lot of questions toask me about cumputer stuff . Maybe , I should buy the ticket tomorrow afternoon , beacause I 'm afraid that I will not get the ticket on christmas ' day . And I 'm studing Chinese . But my first task was studing , I could n't sleep in the class , so I decided to do homework quickly so that I had more time to sleep . That 's very intersting to me . This afternoon we had heavy snow , whic looked like there was a snow storm in Osaka city . I felt so stupid when I foud it in my bag after I got to my destination . I thoungt someone could have written a comment to my diary . I can wantch cartoons all day and I do n't fell humdrum . The one I like the most Jom and Jerry or Mickey . I like the websit . I really enjoy the websit . Native people reviseing will be very useful . The trafic was very heavy and we could n't move any further on the way . with no other choice , we gave up on the idea . So we parked our car and decied to watch it from the road . Finaly , we found a good place place , but we could see only half of the firework display . In my case , a great advantage is being able to see that information written down because you can analyize all that writing and then answer it . So I decided to go sports gim constantly . At present I am able to go gim 3 or 4 times per week . It makes me feel worried due to trafic problem and so on . Maybe he has to write a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybet he just lost all his money . . . I even feel nausia when it is severe . They might be caffein , chocolate , suger , fruit , etc . It was the same sistuation as New Years Day . The cold stole my enagy . I managed to get some vegitables and chicken and I hurried back home . I did n't check the expiration date , but it tasted good so I tought it was still OK . I am not good at writing English , so please check my Englih , will you ? 6 - Photgrafing 7 - Edinting anime and game videos I stayed in shanghai for two manth . I comunicated with many Chinese people . But most of them have n't ever been to China or comunicate with Chinese people . He was a good and nice boy , I konw him from last summer . The day befor the lantern festival , he told me he could n't keep his promise . He must have gone out with his father . But my hope did n't come ture . I have learned English for 14 years since I was a jounior high school student . I took the BEC ( Business English Certificate ) examination last year and almost failed because of the wrting section . Ongirls ' day Japanese set up beutiful Japanese dolls . But the dalls which we call Hina dall are very expensive So we made very small dalls by a paper . I want to write my introduction agaein . I am studying at a midle school . Tonight I had some trouble with learning enlgish , I asked for help from a lot of people online . I really appriciate that . Now I am exicitng ! ! Everyting is going well ! ! So he knows about the differences between Jpanese and American attitudes . He said that Jpanese needs to output more because the Japanese are not good at promoting themselves . The reason why the Japanese do n't have many chances to output is becase our culture requires us to be humble . He said other ineresting things , but if I wrote them all down it would take too long . It mekes me frustrated . what I really need to do is translate my knowledgy into experience . We are the black box that can change images into reallity . We have no garden , but we have a littile patch of soil between our house and the parking lot . Not only do I have to find the imformation about it , but I also have to make up the dialogue about how to persuade the client to pay by L / C . At last , when I had finished the dialogue , I also had to recite what I had writen because my business english teacher said that we had to leave the draft peper when we were speaking English . Even though it as hard for me , I still wanted to try . I hope that I can meet the dfficulty and improve my English level . Well , I 'm new here and am very exited to se how I can improve my English . I had used Lang - 8 before , but I have n't written any journals recentry . The three clothesbaskets are alreay full . My major is businese admistraton . My father is a sincere public servernt at a high school . My mom 's character is quite diffrent from my dad 's . She is active , out going and soiable . He really liks playing computer games and listening to music . Thank you for reading my writting . and plese kindly correct my work ~ : ) We call `` yakiniku `` , burned bewf . Hi , I 'm a Japanese stadying English . My Uranus is borken ! Perfectly falt ! it 's korea education . A Misterious Cat I am very suprised that I saw the roof covered in snow when I opened the window at home . We like to go flea market bacause the price is not so expensive and there are a lot of unique goods . It takes about 5 minites for her to dry them . Finally my toothpain flared up today . I took a motorcycle to go with my friend , and he rode it very fust . Thank you for corecting my diary . We enjoyed talking about our favorite bands or singers for a while and I was able to get some imfomation about them . They really enjoy listening to various kinds of music ; from punk or hard rock to classic so thier conversation is very interesting . She is very storong ! My classmate was carrid in her arms . I had often wachted a TV show which introduces world heritages . Federweisse is only served at harvest time , and is in the early stage of the fermentation processn . I saw `` Harry Potter and the Deathly Hallows `` yeaterday at the movie theater . I think the store offers a great bargen . I often think that the latest electonic are so amazing ! ! When I walked around cumpus , I found a copy machine on the ground . I 'm going to my unversity to attend my classes . I would rather see DVD than studing . I was wondering what is the diffrence between `` He sure is fast . `` and `` He is really fast . `` But my hands were nearliy touching her , and she bit my hands . But daytime was shaining . I go to work by moter cycle every day . It is hard for me to writting in English . [ Question ] How do you think languages around the world happend to become different ? Of couse , the hotest toppices is foodball game , is n't it ? The periodo during which emperors lived there was at least 300 years ago . I 'll discribe the occuoation a little . I prefer to read engilish rather than Japanese these days . We won the competieion ! & nbsp ; Next week there will be a last competiton between last two . I have chosen ethics , Lithuanian laguage in level A , English in level A , history in level B , math in level A , informatics in level B , Physics in level A , Chemistery in level B , theatre in level B , Physical Education in level B . And we sould do something we can do easily , for example , sending some food to areas that are short of food . In the land where we can not grow crops , it may be difficult to increase the growing ofcrops even if htey can use the technology of developed countries . We musr take this into consideration . it was not a traver at all , but it was work . and it seemed that I need to study the countries history and famousof places I had the chance to take a trip all over the world . It made me ungry . My dog is a golden retriver puppy , and she just got too excited and started to chase the ducks and birds . Instead , we lay on the desk , sleepying . I 'm joyfyl to find this website , `` lang - 8 . I like writting by English but I always worry about mistakes that anybody can help me correct . This trable is my second time to visitchina . In the article , there 's no explaination about which country they 're from . Very cathy tune ! I figure that being admitted into hospital is not necessary for me , but my collagues think it is necessary . I am looking foward to seeing her progress . She said they always conversate to each other in English . furthermoer , she is a sickly person . She is concerned her daughter may have the same habbit . She has no choice , so goes to thier house . I like to speak English but , I can not understand English grammer . It 's crassic Japanese . I 'm a big fan of the Amrerican TV series Grey 's Anatomy . l 'm so tierd The pacage looked delicious , So I bought it ! What illudes me ( on Youtube ) A soup with Eringi mushrooms and onions . It is warmer this winter than usual and I wore light clothings until yesterday . For a few years , many textile manufacturers have been marketing the specail type of underwares called `` Heat Tech `` . My lunguage school has some courses which are used for entering uni directly , and I already passed entrance examination of the course . on the other hand , I 'd like to aim to enter a more high level university , but if I want to enter university that does n't connect with my lunguage school , I have to obtain IELTS score then take a entrance examination . You also are wellcome to my home town . In a meeting in Einglish , I explained about some specifications onthickness , weight , LCD size , and thelocation of each connector such as theUSB port . I took a week off from work , so I feel bad for my co - wokers . However I wonder whether ' optimistic ' implies negative meaning as happy - go - lacky . I 'll exhibit my drawing at Ouchi gallery in Brooklym ! The picture was a photograrh taken at a kindergarten last Friday . Also , my roommate has n't recured from pneumonia after roughly 20 days . I hope he gets well soon . Instead , on our way home , we swang by a electric store to look at TVs because , in Japan , people have to swich their TV from analog ones to desital ones ( to watch TV ) by 2011 due to problems about wavelength or something . Recently I went to the ' End of the road ' which is located sourthest . It 's somewhere near Australia and near Antartic . I wangt to learn it well , and I want to make more friends . Incidentally , as my house is surrounded by fields , the farmers gave me many kinds of vegitables such as onions , corns , potatoes , tomatoes , beans , and so on . According to her , she had a aquarel with her boyfriend yesterday , and maybe she was heart broken , so she was a very nervous . And next in oredr was Asada Mao who is a rival of Kim Yu - na . The SD card reader , on my PC , which I believed was broken due to power failure revied . Particurally , I 'm not good at listening . Zombi Walk 2009 I went to the Zombi Walk wearing Zombi makeup . Becouse I 'll take a placement test . To sell them to Chinese people in China or do they give them to thier friends or family ? What amazed me most was thier style . My Japanese friends who can not speak English thought that I could speak English , but I can not , exactry . I can speak it a little , but I am gradually getting worse these days because there are few oppotunity to talk with English people . She stimulates me to be possitive . Time always goes so fast that I feel that yeaterday was our first day of winter vacation . Only two English classes and two chemisity classes . By the way , I major in chemisity . But chemisity is so difficult for me . My philippines theacher ca n't really understand my English , Regardless of what hppens , I will never quit studying English . I feel really sorry for the runners who came all the way to Tokyo to join teh race . After that , my husdband and I went shopping for curtains . But , I am not goot at speaking English . I feel a little nervors , but I really expect this to feel like home . As I wote in yesterday 's journal , my daughter seemed to have caught a cold . The ploblem is What it is for in any case ? ANIME , GAME , MOVIE , MANGA , you know almost all of them ( exept for movies ) . These are what we Japanese are proud of . These looks like art , and the reason why these were born and could succeed was because the old Japanese generals favorite beauty crafts . Nowtoday , it 's say to sad that traditonal crafts are no longer popular . People seek more convinient and comfortable products . ( ummm . . . And there are many people who do n't have phirosophy . At that time , my friend invited me to her friend 's mauntain hut to ski . The mountain is in Nagano . It holds the winter Olimpic games because the snow is good and it is near to Tokyo . I love to skii ! It 's impossible to skii like this . I should take advantage of this ploblem , change my work and draw people into my vision . Einglish is difficult . I lost a lot of frends now . . . One of my dreams is to have a English relaited job in the future . Today I want to practice writing rhyms ! ! : p speak & nbsp ; English fulently . So I did n't and nothing happend . . . I 'd like to make my carier within 5 years . Many people were walking while smoking cigaret , it 's very dangerous for the baby ! They were very reasonable and also lovery , are n't they ? This situation made me sad because it was a beatiful day as I mentioned in the title . until now , I 've been doing my homework in the libruary . the assignment is due tommorow . ( Actually , it was n't my fault , 'cause my time table said `` 9th bulding `` , but there are two `` 9th `` buldings . . . ) Anyway , my teacher told me to join one group , in which 2 boys and 2 girls were talking , and to try to introduce myself . I think you are the kind of guy who needs to introduece his voice before his name . `` or something . Who tells his whole life story before he introdueces his name ? He never boast his inteligence . My hobbies include photography , psychology , Fashon , I watch the drama series named `` LOST `` and `` HEROES `` and all gunle of the movies . Next time I will write about some of the experiense I 've had when visiting these shops and about some of the books I have read . The disstance does n't preven us from being good friends . I hope everyboby helps me out . There has been a huge volume of advertisement papers stuffed in between the nespapers these days . For my birthday , I recieved a marvelous present from my friends . I 'm not familier whit capital letters , I usually use small leters I am senior university sudent , I study Walfare . Though I have been to only three countries , Beijing , Korea and Singapor . She believes there is a little posibility to get an expensive TV ! In December , many Japanse buy this lottery . First prize is 200 million yen , about 2 . 4 million US daller . Nengajou is greetin card for new year day . In early December , we start buying the special reeting cardand writing . Recetly it is popular to use Personal Computer to make the card colorful and to make many cards . People who were married print their wedding picture and people who had a baby print a picture carrying their baby , definetly . When we can get these goods luckly , we tell and thank our friend or relative who sent us winning number and f they say kidding `` did you get TV because of greeting card I sent ? You shuld break it and give me half ! `` Today was very hot since morning , so after I finnishing running , I got very tired . I have just registerd for Lang - 8 . Recently I have been trying to implement my English learning strategy by googling some Japanese English leaners blogs . But in the beginning I was afraid and I did n't think that next year I would have the dream ( fortitude ) to travel mysef , without a tour agency . Thanks to a russian girl named Olesya , who one day left her work and she alone traveled around Asia for 6 mounth . You can live ( stay ) not only at expencive hotels - nearby you can find cheap hostels and guesthouses . so I took a shower soon and I slpt around at 6 : 00 a . m . But I alread have no money ! But it might not be enouth . B : We read the Tora and we do n't recognize Jesus as God , He is just a prophet to us . I will ask you somethinkg I do n't know . I always swet in this season . I will start to go to English school next manth , Now , they have a chance to experince it . Actually chinese regard `` a cirular `` it is auspicious thing , and chisese lucky number is 8 ! Why ? Useally peopel imagine 7 ! ! conglatulations Japan ! If you use twitter , follow me and I flollw you ! My host family plays it so I wathced a game today but it was rainy and very cold . . . I went to a children 's festival with membars of my local Fathers comunity Club . We named it `` Omuyakisoba `` and started to sall it . A few coustmer bought our `` Omuyakisoba `` Finaly , we sold out . But she looked a little weired because her side dish was Nattou only . Narcuissus PSP The fisrt destination was a small hill 2 hours drive south of Taipei . I know the person in charge , so I would like to tell him Conglaturations ! I have been taking cooking leson for 3 months . It 's part of the carricurums at my school . tempt : Advartizement exists in order to tempt customers to buy their products . conceal : He did n't try to conceak his scandal , but instead , he appligized to everyone . decline : He dicided to decline the offer from the IT company . But their owner was Australian from Indonesia so ( ? ) they did n't give me special weekend saraly . Japanese useally go to the dentist only when they feel troubled by a toothache or other pain in their mouth . I made a woolen scarf yesterday . But I chenge my mind . Then I chenged to knit for another things . Time is turing . maybe I should take some exmas . I expext for some kinds of English , By the way , I 've been studying Englihs by using potcast . Unfortunately , I could n't buy all of them becuase of living in China , I often listhing to a potcast while doing something . I can almost catch the phares , but what I really want is to improve my speaking abuilty . I feel that I 'm so luckly to study English and Chinese at college , and I 'm very happy that I can help people who want to study japnaese . I 'd like to say that I really appricate them . We play an importanto to the shinking food supply in the future . Hi , I must lerning the english language : ) thanks for corrections : ) Next month , I and my friend and her baby have dicide go to Taiwan . Well , I 've been extremery busy working these days . I start to work in my office in the mornig but I have to work until late at night . This week I 'll have a lot of flights and travel ( of course on bussiness ) . Write a letter to the hotel manager , and expllain what happend . One of my freinds told me about this website , so now I am on Lang - 8 ! ! In September I am thinking about going to Victoira , BC . I am easy going , and I 'd like to make many freinds ! ! Recently , I heard the fact that a girl I went to junior high with committed suicided . because in my eyes , she has n't appologize even a little bit . . . AIDS reserch improves each day . I ca n't do akype . . . . . WHY ? As I saw the pictures , suddenly , tears ran douwn my face , and I felt sad . It was the first time for me , and I was very luccy . When I watch a movier the next time , I will go there at the last screening I am very confused for using grammers and the sentences I wrote . Recentry , I 've been constantly / excitedly making many roll cakes with white cream . I want to learn engish well . One for June is to lcean my house . We are going to decide during the Golden Week holidays with firend . My colleage picked up an abandoned kitten this morning . It 's very misterious . The residentials indulged in a comfortable and abundant daily life though our country was in danger . Maybe I can not grow accustomed to the foreign teacher ` s intoration . In Japan , we have a tradition of throughing beans on Setsubun . Cover the pan and simmer over medium heat until almost all the juices diappear . My personal probrem He shot a french fries from his mouth at my frined . I had been waiting untill it would be nice weather to ride . Then the volunteers will do their best to make the country more beautiful which is vontributed without any payback . As modern college students , we should take every aviliable avtion and take part as volunteers withour hesitating and to contribute to the society . `` There 's no shch thing as a free lunch . `` It is very dericiaous . When I was young , I always tought , `` I wanna be an adult `` , but nowadays I do n't even think I wanna get old . I was happy for my birthday untill I turned 20 years old . Becouse as I get older , I can grow up spiritually . I 'm looking fowerd to what I will be doing 5 years from now . I think it 's becaouse of the dry air in my house . I participate in a statistics semianr . I 'll read a drft , please check my grammaror pronunciation . But I am afraid that not many people want to learn Russan . I think our language is beautiful and I recommend everebody to learn it ! ! ! Sataagdagi goes great with tea , which makes a good sweet . Now , I think I usually treat an Autometic gear car . I 'm a big fan of car raicing . Be caereful with driving , specialy , when it 's raining . Hello , my name is Seohyun and I 'm in the scond grade . This is my frist time speaking in front of a lot of people and so naturally , I 'm quite nervous . The reason behind this is because I want to create beauiful hairstlye for others . Frist , I have to practise a lot , possibly with dolls or other people . scond , I have to study about hairstlye . My salon must also be a clane and beautiful place which customers love . I cleand up my messy room ! Of course , I practiced , practied , and practiced a lot . Next , I want to tell you about the exercising facilities that I want although I am a elementry school student . I think it becouse of the recession . ( my guess ) Please make this read as natuaral as possible . I had two opportunities to get to know Suemin - min Kim . Veaujolais Nouveau was released at midnight on Thursday November 18th , Because the Wimbredon Open started this week , and the World Cup Sturday at myhome . I want to buy something that 's not so expensive but very usefull . I want to gain much Knowlage and self - confidence on my job through this training . Everybady drank and ate a lot . After we finished eatting , we had an ice - cream bet . After I came back home , I thought again that it is vey ridiculous . Do you believe that there will be a person exactlly right for you in the world ? Some peaple might say yes , some peaple might say no . I think most peapole believe that there will be an person eaxactlly right for them , But sometimes peaple feel tired from looking for that person , and take a compromise for the other person who is near to their ideal rght Peapole sometimes feel lonley and empty , and they want Maybe this town is also very famous place to visit among forignen tourists . Nowadays Akihabara is becoming diversity and there ` s a lot of shops featring anime goods . Japanese anime is expanding in overseas market and many foringers know Japanese anime . I will write it sometiem soon . I want to write many things but my limitted English discourages me . I had a soccor game on Sunday . Yet , after considering all the possibilities , it turned out to be an unbelievably easy dream - - I want to lie down on a clean lawn with my eyes fixed on the sky , counting how many stars there in the comos . When I look up on the sky , seeing those sparkling , goreous stars , I ca n't help thinking of how tiny I am in this enourmous universe and how great the creater , if there is one , is . I enjoyed the conversation with my grandmather and grandfather . I do n't have a degital camera . I use the cell phone to take a picture instead of a degital camera . Those are as good as degital cameras . The ingredients are udon , meats , tofu , egg , kimuchi and green onion ! I want to join a university , but also I want to go abroad to America , so I will have to go to a univercity for 5 years . trere were a lot of people at Tokyo desney land . But my friend and I were satisfaied with the attractions because many of the attractions appealed to us . I found out about this web site when I did a webserch . I knew what `` Ti Amo `` mean and I also knew there was an English song named Ti Amo , but I could n't understand untill I watched the MV . The whole day was awsome : the movie , company and the anatomy test results too : D yay ! unluck day In the morning , I get up at six o ' colock . beacuse my train leaves at eight o ' clock . When I prepared to wear my glasses and I found them smached . I am afried my mother will be angry ! It felt difficut ! At after , I missed my train , beacuse was late finishing breakfast . So I felt all day very tarrible ! She is cring everyday , she want to see her mommy . But narses were by her side all night , so she was reassured by someone 's company . Today I 'm going to an English club , I realy wanna study English . I played the game `` Doragon Quest `` I 'm writing a jurnal after a long time . I am confused , and I enjoy being coinfused . Going to law lawschool I decided to go to law lawschool yesterday . I watched a very good moive yesterday . What 's more , she was a gril who loved peace . She liked to make friends with nigro people , and took part in a nigro 's party , and helped them to struggl for the chance of a nigro 's day on a TV show . I like Tracy very much , because she was couraged enough to pursue her dreams and never gave up . Yesterday I bought new shues for jogging . 3 years ago I was a menber of a fitness gim , but I i quit because of my busy job . New shues put up my motivation . I want to make jog a coustom from now . But many foreigners are looking for someone who speaks Japaness very well . Yesterday I went to a travel argency to book a flight from Sapporo to Tokyo and then to Soeul . I ca n't get a ticket now unless someone cancle their flight . I do n't want to book a direct flight to Soel from Sapporo because of the schedule . I recommed FF X to you . It is n't the first novel that I 've read by this autor , the last one was about 5 years ago . My girlfriend says that he is n't a good writer , but I completely desagree with her . If you read any of his books you will feel the whole scale of emotions that the caracters feel . Another aspect that I want to mention is his enermous capacity for telling all types of stories , from terror to ordinary tales . If you look in his bibliography , you can find stories that film directors have put into scene : from the beatiful story about the friendship of a group of children in The Body , terror tales such as The Shinning , Chrytine , or Carrie , and penitenciary scripts as The Green Mile or Rita Hayworth and Shawsank redemption . That proglam broadcasted their life . course I always put seasonig on food but sometimes I do n't . I had stayed at a suberb in San Francisco for 3 weeks when I was a unversity student . But I could n't speak Englsh at all in those days . That is my motivation to study Englsh . The nature is amasing , and life is wonderful ! It 's a lovery day today . I recomend : www . A famouns problem on pronunciation is the difference bitween L and R . But I can not opperate my tongue freely . I use egg , shrimps , brocoli ( instead of string beans ) on vinegar rice which is mixed with carot and mashroom . My hobby is wahtchng animations , surfing the Internet , and reading books . I often watch ' ' niconico - douga ' ' on the Internet and lesten to ' ' VOCALOID ' ' music . My dream is to become an interpriter . my grandfather made a living by raising chikens and a calf . They say there are many sumo restlers who have been fixing matches for years . Today is so hot that my T - shist is all wet . tomodachi to sakka - wo shite asobu koto ga ureshii desu . eating birthdy cake is my interest . Thay beer I drank one bottle of Thay beer . I 'd never had Thay beer until last night . It tasted different than Janpanese beer . I wached a DVD called , Beautiful Mind . I did n't anything buy but 6 Pana TV 's were still left ! I decided that I will eat nothing after 7pm and I will not drink in the evenig ! Today , Kyoto was 32 degree Celcius . Well , I have to prepare for gruduation workshop . We use the textbook `` Totaly True `` . I ate humburg steak with mushrooms which tasted like soy sauce . And she , our friend , ate humburg steak with cheese and tomatoes . He bought some clothes and I bougt a necklace and a beret cap which was wine red colored . Moreover , becasue I ca n't use my suica card in Kyoto , I had to buy some train tickets . He was a maniq . Maybe somebody die , orr lose a lot blood . He was hungry , angree and terrible . . . In my opinion , it is not unuseful to disclose his face . So , I thnk that it is premature to disclose photos before the court 's final judgement is announced . in Yoyogi animation gakkuin . . . The Liberal Democratic Party has govered for over 50 years . governs the cabine or not , but I hope DPJ ' policy strengthens our economy . Recentry I am very busy with my work . My shoulder wsa treated . One of my fevorite things was stolen . yesterday my friend said you looed so slender but recently you look fat ! . But I ca n't ddo anything about it ( ? ) which attructs the audience effectively . Is this my reducdant reaction ? I had a waterserver that my boyfriend gave me . If the someone Chiense said `` You were unlucky . I have to take an oral examination in five theological subjects this week : old testamen , new testament , church history , systematical theology and practical theology . There is almost no visible effect from the 3 . 11 tunami , earthquake , and nuclear - plant problems . Gon to work , school , supermarkets , and so on . I knew it exsist . My name is chiancamel , from the Shanxi province of China ! Trip to Beijig Then , we tackl cleaning the whole house . It was beyond my expectaition . `` It was so haerd for me ! I remerber their smiles . Though I am buzy , I still keep a diary . Inari ( shirine ) - > a fox - > thin fried tofu I 'd like to watch Premiership matches , and UEFA Champions League matchse . Now I 'm loocking for the tickets . I wrote about the club in my last jornal . yestarday , more than 25 people joined ! Thakns ! Yesterday it was nice outsid . I weeded weedout my yasrd . Last month I did a lot of weedout . But when I finish an exam on next Suturday , the long - awaited summer vacation starts : ) ! a part - time - job , studing English , drawing pictures and contribute them into an art contest : - ) Googole says ' Do you mean : my name ' : D Japanese people are usually not good at speaking English , because we only study English grammer when we are students When I tride it on , it looked very nice . This is because the motion of their gestuings is too large and radical . It 's easy to hit me , especially when I stand by them too closely . I met my friend on the 2nd night , I wated for her for a few minutes outside . My eldary sister and I were talking in the hall . Suddenly my younger ( or younger ? ) sisters quicly cameto my father crying and shouting `` There is a big man . `` Then someone knocked at the door . When you are in a trouble , waht will you do ? Generally speaking , songs are a good way to practice another langage . becase there is a very big tree ( 2000 ~ 7000yesrs old ) which is I know I can manage to wrire or say something in easy English . I took driver 's license exam that covered basic vehicle operations such as headlights , windshild wipers and driving straight . It was very easy for me thanks to a lesson I took at the driving institue as well as the easist questions given at the test site . I have to take up many part time job to earn money , since I want to go to Philippins for studying abroad next spring . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a respose to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these cunsumers are really smart . . My winter holiday has already begun . I think ( that ) I should read some English magzines or newspaper for inproving my English during this holiday , but I do n't know what I should to read . I hope to get some advice from here . I expect to have inprove well when the holiday comes to an end . Io sono povero e vecchia . The gorl is young and tall . I 'm so happy , couze I can use it anytime . There are not so many tensesssssss in Chinese , so I always forget to change tense . Some people decided not to move aneywhere by themselves and some people can not move because their partners are Japanese . I 'm so delighted wher a good person wants to be a employee . There is a new type of this oil is on the market resentry . Frid garlic , onion , and many other ingredients are in the oil . although english is so difficult for me , and from time to time , I think it is so stuqid that speaking english is my goal now : ( In Janan more than 70 % cellphone users have ' K - tai ' phone , they do not use ' Smart Phone ' like ' Xperia ( SONY ) ' or ' iPhone ( Apple ) ' . We stayed there untill midnight . Kitano Takeshi plays the roll of a Japanese sodier called Hara . making traning pants for my husband . I went driving to the contryside to meet my friend who just moved there recently . It was a pritty long drive . It took 4 hours but I was able to release all my frustrations . Her parents keep some cows to sell for meat . It is rare for me to see real cows , so it was a very exiciting experience . At first , I did n't realize he was sick untill this morning . I was intending to give him to others , I found he counld not walk , and I felt so upset . We are having our final eaxm this week . Then we checked her test sheet and founed out her answer sheet was left together with her test sheet . I went to Hawaii for ten days with my famale friends this month . There is a friend of mine , a gril , who was my best friend when we were in primary school . It 's really wonderfull , not only because there will 172 famous Chinese film stars attending , like Jet Li , Ziyi Zhang and so on , but also it will shows us the history . And bless to those heroes who fought for the independence and demoracy of our country . I have a happy timebecause I am sorrounded by beatiful audience and the great members . At least , it does n't seem as hard to get a good score in your university as to get it in seinior high school , because I only need to do some subjects I 'm interested in . In Japan recently there has been a deemand to save electricity . Our tent was the most embarress of all . Our mattress was stuck and our tent brok . beacause in China , people always learn languages from books and there is no chance to speak it . So that I kowe this language very well . I want to make friends with Janpanese people who can teach me . When I got up tis morning , nobody in my family was up yet . I 'm travling to Mie now . But this is n't a good sity for sightseeing . So , Hong - Kong has no surprising poits for Japanese people . Beacese the people are very kind . During rainny days or days that are high in humidity , the volume of my hair is up . `` Super treatment `` is a treatmet to make my hair softer . I was really suprised . I like shopping and I like beatuful things . What does entry mean ? lol I 've consulted the diationary but I still ca n't understand what it means ; ( I watched a baseball game in Nagoyadoom yesterday . Yesterday was the winter soltice ! Back to the schol The box was covered with wrapping papper . Remember , once when I was going to work , one of my high heels was broken making me very embarrassed . I called you frist . You were very kind and bought a new pair of shoes to me at work . In the new semester I must stady hard with my English . The name of the restaurant was Sakura - jyaya . The drink was remon tea . The dessert was kyaramel cake . I was disappointed by `` Avator , `` so I hope tomorrow 's movie is good . That is very hard to get , my English is still awqward , if you do n't mind please help me . But everyone encoraged me when they said `` You 're working hard `` `` You look cool . `` I was very happy to hear that . I had sashimi ( raw seafood ) made up of tuna , salmon , horse macker , scarop and salmon roe . I havet to use English for business , so I have to study English . I think that bridegroom Tani , bride Meka and the 4 organaizers were a good combination . This Event was for girls only , so the interir decoration was very cute and girly . Now I 'm in the countryside of Korea for this job untill the end of this month . The problem is that I do n't have a computer even enthough I need it really badly to get done with my school payment thing and things like that . I heard that people who experienced study - abroad need more than 800 scores to prove an ability baced on that experience . Yesterday it was rainy and clowd . It 's very difficurt ! Especially , I love broiled salmon , midium rare . you will go threre again ? ? He answerd with a smile , `` I went there too many times to remember `` While Japan wasa developing country we had to learn a lot of things from foerign countres . the important things to consider about the place where you wanto to live are : and I do n't derstand some things for exsemple : I am a good boy , are n't I ? Tomorrw . . ? Tomorrw , there are practice games . The amount of juice was crealy reduced . I always put my contact lenses in my eyes every mornig . My job is a mobile phone programer . I am not a programer , but I just like it . So when a bad thing happnes , I remember a saying : when one door shuts , another opens . You must know about the feeling of loneness or seperating , and it 's much stronger when you 're alone in a foreign country where you know nobody and you could n't understand what they 're speaking ( I know it 's called French , though ) . I crid again and mocked myself as the biggest stupid in the world . While listening to quiet slow tempo music and calm voice of the instructor , I stretched my boby . Returan to the Earth I have been in Germay for a month . Then suddenly a old man who had tatoo all over his body entered SENTOU . It was an unusual situstion . . . . What if sudenlly he bit me ? . . . . . He approached me with his stobborn face , and said with his low tone voice `` Could you give me some of your water ? `` He was really kind , although this might just be a cover up . He could n't get over his thirst and had to drink to fufil his obstanate ways . In fact , I 'm not a fan of Jannifer Garner , but this role was perfect for her . So I had to shavel snow . . . > _ < The first episode of hell girl is quite boring . People send the person they hate to hell again and agian because of diffrerent reasons : hate , misunderstanding , jealousy and even love . And the music in this cartoon is also listeningble . Many people do not seem to be very pleased to eat what they 've never tasted or anything which sounds exotic , but is n't that losing an oppotunity to add it to your favourite menu ? The shop was proud of its various high quality imported products , there were many customers who came from othe countries looking for ingredients to make thier local dish . ( I would often be asked by Australians : `` Where 's Vegemite ? `` ) I went out to get tue bus . I like Homer , because he 's really sweet to his wife Margy . Ear , norse and throat hospital Could someone please put the following sentences into the passive voce . Could someone please put the following sentences into the passive voce ? Tomorrow , I am going to watch tha football match in Saitama Stadium . While doing Kabuki , actors speak very slowry and with a wavey tone . my Englis leve is bad . So , I had to wait outside of the Jinjya until they came out . Actualy , I like `` Nicolas Cage `` . Please , correcion and comment on my blog . I 'm a student studying nurtition science at a university in japan . I used to have conversations in English at English conversation classes when I was in elementary school and when I was in jounior high . How aboui it ? A lot ppl who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese ppl are kind . : P My job is to teach foreignor Chinese . I want to learn some natve English . `` Four till Nine is gven to one who find . `` It is just because we have culuture to eat whales . Maybe the protesters who againt this habitual think that people should n't eat whales . But sometimes it makes me dpressed I ca n't improve my English . Recentlly , I 've been thinking that every day . I have to eagerly keep studing the jewellery business and be careful to trade only with reliable partners . He sang songs that he liked , whatever his companies or the audiance thought of them - - in fact , everybody would show his happiness and satisfaction whatever they thought , and you know why . One of his hoppies was forcing the female stars who went to Chongqing to have sex with him , and then recording the process . And in my dream , one of my high scholl fellows ( Iet 's call him Ice ) told me that he had got some videos of Wen Qiang , and there was plenty of hot stuff besides the pornos . I 'm writting this journal in my room , ovbiously , in Japan , This is my homeswork . We had been studying togather since we were in primery school . We had a nice time togather . I found out about this website Lang - 8 today , and I tought it was so great . I think the greatest thing about this site is that the peple who correct language mistakes I 'm able to advise and help peple who are studying Japanese , too . I have learned English sice I was 18 , but I do n't understant much of it . I can understand what My teacher says parfectly , but I ca n't understand movies or people who I just met for the first time . I met mmy teachers a long time ago and I have talked with them many times . I 'm listening to the music of Santana ' Smooth ' on yutube . I usualy get up at 6 : 30 in the morning . I joined the cooking school for elderly men , looked for the cheakup for 3 year 's old children , studied the system of the health center , and so on . All US foods which I can imagine are junk such as bugers . We bought detergent , deshwashing liquid , and a frying pan . After that , we had lunch at a sandwich restraunt . In the afternoon , I went to a computer room to use a scaner . However , the pattey broke its shape while I was cooking . It did not look good , but it was delicoius . I 'm looking forward to playing tennis tommorow . The food was good ; they both have world heritage sites , the Halong bay and Ankor wat . Thank you for reading abd listening . But how can we be good listeners ? In my opinion , the most impotant thing is to focus on the topic you are talking about . My examinition . . . Becuase I have reserved a train at 7 : 30 AM . I 'm going to Austrailia next year for studying . Austrailia goverment changed their Immigration law . I have to chose the proper word out of four choices but sometimes I do n't know the maning of all the choices ! My tears were like rianning . I can relax and imporving my English . Instead of that , we are going to go to Holand next month to see flowers . So , I determinded to go shopping and make a pizza . I found a recipe in internet brog and started making a pizza . When I got up I realised I had a better undestanding of this movie . My feeling is when I help a person to crrected his / her eassy , I 'll be successful , and sometimes I can found some entries are like comedy shows . They sing Japanese sould music . I 'd like to untroduce their PV ; Samurai Sould . We concluded that Thiking in English for 75 precent of the time is neccessary to master English . I would like to have better pronouciation . So I have to take a lot of classes and my schdule is was too heavy . I coould not answer well . . . Lunch time was coming , but we did n't have lunch togeter I tried to write a dialy in English . I wanted to change the teacher to Johana who was my pravious writing teacher and is so good . I 'm twenty - years - oid and a university student . Hi , I 'm studing English in a Japanese University . My dormitory is in Gifu Prefecture and my family 's house is in Siga Prefecture . Usally I studied English about 2 ~ 3 hours a day , but I study it in please get out of my head immidiately ! When I was in Korea , I used to eat every meal at the restaurant , because there were so many options to choose from and I also did n't have enought time to cook . Now , there is n't any option , because there is n't any restaurant nere my village . Before leaving they compleined about my absence . But , unfortunatly , when you come home after shopping , you feel very tired . So , it is called an aeropolice . l know that many peolple want to get more money or stronger power , Yet l do n't konw how to tell people around me what I think , because even if I do it , no one will believe me . They must think l 'm crazied . We went to a coffe shop and talked about her marriage life and new workplace . All of nature follows Lebonacci 's numbers . But I noticed we have not much defference between us when we made skit . I like studing English very much . I studied the flower desingn for three years . When I entered the pub at 10 , all the seats were full and it was very crouded . There were 3 people on staff , but it was not enougth . At 3 , 15 office workers came in and ordered the `` NIJIKAI corce `` The NIJIKAI corce is some frid food and drinks . So I took the exam at januarly 24 . wich is something impossible right now , so I 'm a little bit pissed . I went to Seoul for a lomg time . Actually , most of my co - corworkers might be missing me a lot . I missed the station which I had to get off at even though I 'd asked the train crue twice ! And , again , I 've not kept my promiss to write a diary entry a day . He asked his English teacher , but he still could n't understand the explainatin . . < - redundant I spiled water on the floor during the night . it is in the contry , a little left from Osaka iPlayer provides Englsih subtitles . So he called to all the anymals , `` Mung - Mung `` . The best purfomance was when the trainner rode on the dolphin . At the end of th show , we ate lunch on a mat in the forest and it was more delicious than eating at home . I will buy the Xbox360 ver . My Firends list does n't have any friends on it to talk with in English ! My habbise are swimming and shopping . I am now thinking about a master degree 's reserch plan . I want to reserch about Japanese writing for foreigners . I am in trouble to find out a way to reserch this . However I have to persuade readers , who are sholars in the Uni I want to enter . I want to study Endlish ! Gion festival is the annual big event started 1 thouthand years ago and it is one of the most famous festival in Japan . Anyway , I 'd like to graduate from scool and get a job as soon as possible ! And she said `` you are strang . `` the time is coimg . It is a cloudy today but the temperture is not too warm and the weather is confortable and I 'm looking forward to rhe start of the school year . Althogh It is hard , I 'd like to study English . and I beleive it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achive my goal . She rode a bicucle . When she arrived near a company , she wiped her swet . There , my dance culb members will announce . ( Announce what ? ) It 's tellible , is n't it ? ? I 'm always eating luch at a canteen , but I 've decided to bring my lunch starting today to save money . It is intereting to see what the shop sells . degitalize TV The Japanese government has decided to degital satellite broadcasting in 2011 . I 'm beaming , I hope to meet people who can hepl meto learn . Fortunatelly , I can speak English , but I do n't want to forget how to speak it . Did you watch Michael Jakson 's memorial service ? They spoke about Michael Jackson 's liftime and sang . I overhheard somebody who was talking about Michael Jackson on the phone . I liked his songs and music vedios . When I got home , I turned my computer on to listen to his songs and watch his music vedios . I heard that Micheals Jackson 's daughter inherited some unreleased songs . When I do n't have time to stenghten / set it in the morning , I like toput it intoa ponytail . There are 4 peaple in my family . My father 's been a firestation for 20 years . He teaches me patience and scriface . When I speak with a foreinger , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I have no doubt that your coments will be helpful . I belive in this world so I wo n't give up on life . If I have a mistake in my diary , please hlep me corret my mistake . Later I felt unconfortable because I did n't see his face and I do n't actually know him . balabal . . . . . I do n't want to be so discrminate . . . But I ca n't use those greetings now , Becouse my grandparents have passed away this year . I could see that the top of Tkyo Tower was slightly bent by the great earthquake ! After drinking , I went to a club for the first time ! ( My friend took me thereX ) ) Dancind with music was so exciting . I do n't know how they teach English in other anycountries . I guess that there are some differences between the Japanese way and the other countries ' ways . I mean a lot of expriences is the most important thing . And also , having a passion for study is imprtant . Next weekend , I will try to take a picuture ! I want to use this service not only to study Englisg Grammer but also to meet friends . I had a realy good time . Many of my classmates decided to recive further education . I 'm 19 and my daugther is 2 . I watch TOM AND JERRY every day with my daugther . There is no vaccine iin Mexico , as well as all around the world . How can we stop the from flu speading ? time 's moving on 'cause my writing spped 's so slow . To succeed in college or even in society , we need always remember to have a mindset that you should boubt anything . Before enrolling in college , you may have been only learning a lot of subjects by heart in school , such as a date in history or the grammer of a laungare , etc . I will take writting part of it in 3 . 17 . After two mouthes merely , I found I can not work very well , since I do not know the internet - related professional skills . I decided to give up because aso need 30 minutes to go and exchang clothes . This is just me eating somthing if I get angry . Christmas Day is a holiday celebrating the birth of Jesuse , on December 25 every year . At night , chrildren go to bed earlier than normal and hangstockings behind their bed to hold the presents which are given from ' Father Christmas ' . I play the guiter and sing songs . Before the test , I always feel pressre . Nothing can match the pleasent feeling of being home . The New Year 's Day is enjoying a strinking popularity around I came to Busan from Seoul this aternoon by the STX . I was so dissapointed because I had tickets to the seventh Well , I 'm planning to go to community college first then trasfer to a 4 - year art school . I was going to cancle / drop that class , but since I was curious , I just chose to take it . And do you know what happend ? On Febrary 16th , we went to the Uluwatu Temple . It costructed on a very tought cliff . I think my browser may have some probleam because I downloaded something ( bad ) . and some of the messeges ask for genuine microsoft sofewere . Since the world of computer science is more opend to English speakers , I want to study English . I 'm insterested in programming for the web . If you also are insterested in programming , please be my friend ! Shnonn Brown was a beast . There are some places in the darkness , a park , a small forest , bridhe above a small river , a small house and a cafe . To show off a skilk and contribute to one 's team . So I hope to be usefull to you and also to learn somthing from you . I want more more slepping . . I live in Paris from Monday to Wedneday or Thrusday , and then I go back home . Without any knowledge of the language at the beginning , after a fortnight , I could manage with italan people in daily conversation , and understand many things . And they have a very interesting grammar , with very funny tenses , such as `` subjunctivo . `` Neverby , it 's not the only reason . I wacthed Transformers 3 with Xiaoquan yesterday in Guangdong science center , IMAX3D . It happend about two months ago , three friends deceided to go to an amusement park called Happy Valley on that day . I 'm have been hanging out the lundry this week . I was accepted into a university in NIIGATA taday . Today I was rehersauling for my upcoming dance performance . While I was indulged in my practice for it , I suddenly saw the boy who I have a crush on walk by . Out of astonishment , I shouted out loudly , `` Ah ! ! ! `` and stopped my mevement . He somehow stood there watching me ! ! I was so embarressed that I had no idea of what I should do , and just bent over and stood there . My thoughts went so crazy for him that I can bearly fall asleep tonight , this is feeling just not sitting well with me . If you want to be a professor , you must be able to do daily conversation without any dificulties . My husband is Indian and he has started to run a small guest house in Rishikesh since this Aplil . It is a fomous place for yaga , maditation , the Ganges River and the ashram where the Beatles visited once . I woder what score I will get in three weeks later . There could n't be a more beautifull landscape on which to meditate . You could clearly hear the clashing sound . It was frightning . Some more hyenas were training karate . Others were doing nothing . They took me into a magnificient temple with a huge hyena statue on the rooftop . I passed the frist paper test of Eken Pre - 1st Grade , so I could n't be better now ! While I got ungry with him , I realized he has kept his wild nature . It is also so humid in Japan 's rainy seson . I do n't like Japan 's hot and humid summer eather . My friend could answer easyly because he is English . My purpose for stadying English is to communicate with my business partners , who are in Sillicon Valley . That was only mistypo , haha . The weather focust said that it would contiue till the end of the week . You konw , I am a Chinese , who lives in south , so I like spicy food and do n't like sweet food , when having lunch . In the afternoon is computer class , and you should see how fast the teacher speaks . I ca n't catch what she says just like many students arroud me . That 's like a thirsty person who finds fresh water , but more romatic than this . The doctor told him that the girl is invited by his army , because he always says her name Dubai loudily . The girl takes care of him for about three days which , amazes many people , because everyone does n't understand why an Asian girl would take a U . S . sodier so seriously , and does n't leave . The sodier fell so happy and thankful about it , and asked the girl if she wanted to be his girfriend . After that , because of the wound , the sodier lleave Iraq and marries the girl in Chongqing provence , China . I have some stress , so I scrach the same area over & over . I 've often sclaced my head . I sclaced the same spot , so I 've lost a little hair . I do n't a blad head , but I have to address this . So I can get along with with all kinds of poeple . I can operate some Mac softs like Illustrator , Photoshop and InDesign . I like to watch professional sports games , but actually I 'm not good at sports , especailly ball games , like baseball , football , and basketball . I need to execrcise regularly . I coulnd not go to work yesterday . . . I saved all the pictures of the porducts I bought at ASOS , the models wore such attractive clothes on the catwalks , wow ! Finaly I wanted to say that I will graduate from school two years from now ! It is really strange that pople reveal their divorce in front of friends and familys . The figure is a little bit higer that I thought . so tonight I went to her new house to furfil my her room is not very large , but very confortable . Favoriting things . It 's kind of hard for me to forcus on a story . . I just love wathing the `` American Pie `` movies . In the first helf , Ji - sung Park scored the first goal . Because I plan to tell her parents that I want to marrige her ! ! It is Japanise food . Espevially , I like Korean and Chinese food . However , I guess the word `` fuking `` is used to emphasis the words after it , so it 's very similar to the usage of the Japanese word `` kuso `` . The word `` kuso `` means `` shit `` in English exactry , but it also plays a roll in rudely emphasizing the words after it . So , I explanated it to him like that . I 'm lookin for friends who can chat with me I 'm tired of speakin Japanese . . . . This year I deided to handle foreign company more actively than last year ! Especially , getting more vocabrary is very hard . ganghaw - Do Yesterday , my fmily and I went to ganghaw - do . It was a one beautyful place . It was surpriese too . The bad bews is that I failed my ACCA exam . . . . . . . . . . . . . is was wrost than last time . . . . . . . . . . . how come ? ? ? > _ < Studying English is one of my hobbies , in wich I learn it with enthusiasm . Since I found information about prostitutes , I realised rhat they are not only bad points , but also good points . So I think I should n't jude or look down on them due to their appereance . unforturnately , it 's Saturday today . . . I believe that marriage is speciall and spritual because one man and one woman , who are first defferent human beings , But the first typhoon is likely comming soon , and it is rainning now . After this happend , I Iooked for a place to eat . when to use `` a `` versus `` the `` , and idom like `` work out `` ( exercise ) . My hometown is a big city and I feel convenient , but I think there are many great poins in each cities . Today , I went to my school to partisipant in swimming class . After I came back home , I ate lunch and I ate spagety with meat sause and it was very delicious . I 'm nt the demon so it was very fun . Tomorow will be very hot but I should work hard . In the Netherlands , I had to find a dentist who I could register with as a patiant , make an appointment and wait for 2 months . A nurse said `` Why did n't you register at a dentist before you had a teethache ! ! ! It is common sence all over the world ! ! ! However , when I go for jogging , I do not have to go to Gymnasiums , I can do it on the streat or on compus . I saw many internatinal ( interracial ) couples in Austraia . I sudied Japanese a bit , learned some new kanji , and went to eat breakfast . I managed to swallow some joghurt , but my throat was too sore for anything else I had in the fridgerator . It fele like heaven ! There are two bathromms and three rooms . There are 4 rooms and two bathromms . but my frie ' s house is very simple and morden . my mom likes decorlation decorlation theirs . Tommorow I have an exam of mathematical statistics . I 'm very much looking foward to it ! I will go to Shikago for the marketing - skill training this September . therfore , I have to improve my English ( ability ) soon It was slipperey and dangerous . Spring is comming to the corner . but I wana fight ! I need your kindfull help ! I did n't expect that someone would correct my first dialy , but two people did ! I tried not to use my dictionary in order to write my first dialy . I 'll keep writing a nice dialy using my lovery dictionary . Japan has four seasens . I live in Japan , and I sometimes see foreighers wearing a t - shirt while I 'm freezing . It 's been a while since I last spoke Englsih . There was no abnomality . He tought me that the dream will definitely come true if I did n't give up . My colledge life . I am getting an external education about sorage fundation for data bases this week . `` Galapagos `` is a set of islands or an area around the isladns which is distant from the continents and is well - known for its unique eco - system . These `` Galapagos `` charactaristics often bothers me . HoweverI , I can not go anywhere . It makes me feel more tired and frusterated . Hellow , I 'm good , I like english , I am not good in english , you are looking my page . help me whrite in english ! I must implove my English skills to comnicate with people all over the world . Appart from that , I have to create an sketch with a friend . It 's for an exposition ; we are going to `` act `` Phineas Gage 's article . At least , I can speak very influnce . . . ( ? ? ? ) Thank you for asking me about the interview : ) I thini it went pretty good . I do n't know why , but I was not nervous that day . [ two sentences ] I had to do a self - introduction presentation , a social issue - related discusion , a competency based interview , and a Chinese interview , all in one day . Becouse I skated too hard yesterday . I need to study speaking Engilsh too . I really loveto eating foreign foods . However , the expected time is about two minutes so it is not goning to be that tough . Actually , today was a different day in a sense , Lamar is finnaly gone . I 'm eager to speak many languages , so I watch some NHK proglams to learn different languages . There were many friends appeared in this wedding and they drank much wine to celerbrate his friend getting married . A typhoon went through Japan and I 'm awared that autumn is coming . If you use Skype , please add me because I also want to learn to speak enlgish . Today , a very very ugly incident occered . I am working on my application material to make it more impressive , and hopefully I will get into a prestigeous school that I can be proud of . What 's the diffrences ? `` I 'm fine ! `` `` I 'm good ! `` `` I 'm OK ! `` : What are the diffrences between these three phrases ? one color whithout design . I think Japanese unbrella market is a thriving business . Japan is very unusual among the developed coutries in its strict attitude to foreignners who want to work in Japan . In this period of globalization , Japanese industry cannnot remain comopetitive because of shortages of the workforce . He said `` I 'll chek it later . `` When he came back home , he checked it carfully . I have a BIG presentaiton next Tuesday but I have n't finished my report yet . Every time I meet someone from the team , she greets me wiht a clear voice . Every morning , one of them is cleaning the entrace of our school . One of my collegues told me that it happened because the team members were careless , but I wonder how much they care . I learnd some sentences . It 's aprox 10 feet tall . Seriois Disasters If we destory nature , we are destoy our civilization . Besides , he cancles the term exam because he does n't want to write the exam paper . I 'll have to communicate other menbers in English . This book wrote about the diference between the English and Japanese voice . I came back to my camp as I was discoraged . I made out that it was him bacause he was tossing and turning . I reallly dislike humid weather because I get sweaty easily . A bear was shot because it injured a woman eariler and it could happen again . When I read this article , a quesiton occurred to me . Our selfish lifestyles cause climate changes , and these lead to the lack of their food on moutains . My friends came to my house Yesterdady . One is merried . The other is not merriage . For a long time , I could n't upload my page , what with my tests and the disasters that happended to Japan . Fortunately my frinds living near the disaster locations are all safe ! But now , I strongly believe that English and its culture is but one of the many cultures all over the world and I want to strengthen my idea by communicating its importance to as many people as poosible . However , I noticed the convenience of English for the first time because I could talk to many people like Belgians and toEgyptian with English . Though I have been saying many things above , all I want to say is how plesant talking to many peple is ! ! It took 10 miniutes to walk to the beach . It turned a very comfortble day today . But Japanese people are n't intersted in it at all . There were a few people , and some main billdings were closed , others were opened but closed at 6 : 00pm . I think I 'm very susceptive to waether changes : - o `` What day is today ? `` I always say that because I never remember the day , even though I ask my consin a lot . He always says `` I just told you yesterday . `` I heard someone say a goldfish can only remember something for 3 seconds . After that it will lose its memery just swimming to the edge of the fish bowl . If a goldfish fell in love with another fish , it would n't remember because it would lose its memery . Myhobby is to go campout . I can speek business Japnese , but my English is poor , so I want to improve my english to get a good job in trading . I have a sore throat now , it 's really unconfortable . . . I agreed and sat down waitting for him . Is there someone who lives in Euroup ? In Paris , I 'll see the effel tower , Louvre 's museum and shakespear 's & company book store . can you tell me other hot brands in Euroup ? It 's because this is my first time trip to Euroup . I applied for two squba diving tours and bought lenses for my squba diving mask . My name is SAKURA , cheif of Japan 's traditional dance group , NIPPON . I am introducing the wonderful world of Japanese danse . Please belive me ! I read in the news today that Pizza Huts across China annouanced that they are doing away with their salad bars . It is already half a month untile I go home . Hello , Lnag - 8 users This week , I 've been thinking about how to use Lang - 8 effectively so that I can make progress ony my studies . At the beginning of weekend , I have a long bathtime on Fryday night . bathtime is a preasure which many people living with a family can not have . There is an Engish exam called CET in China . Time flies so fastly . Everyone walking around town was wearing a shirt wiht long sleeves and a jecket . Firstly I write some words in English , drink a cap of coffe read my E - mails . After the bus tour we had 4 hours free time , so we went to the Beatle 's musean which is quite famous as far as I know . lol Then I realized that I might have made a mistake as I perused the musium . In fact it was tough to understand all of what was said , therefore I 'm not entirely sure of thier history , achievements and other efforts . . . everything they did while they were together . Well . . . honestly it took us two hours or so to finish this tourm which was pretty much half of our free time actaully . . . Therefore we didi n't have time to walk around the City centre , which was supposed to have been fun to do ! I have to study chinase and English . First of all , you should buy asmall boat to chatch more fish in order to get more money , and thenyou should keep fishing for 10 years . If you achieve your goal , you can get ahuge amount of money . Then you deposite your money in a bankand earninterest . I was supposed to take the intermedium level this semester , so please help me pass the class with a decent grade . Today I rented `` Gingle all the way `` and `` Dr . Dritol ( Eddie Murphy 's comedy . Wel , got ta go . My job title is programar . Wao ! I was suprised . education system , learing things that are boring . I trid to become a Pro member after that . In Korea , adultery is a criminal law not a judical law . I ca n't understand why the goverment punishes people for their private life , whether it being love or sex . I think adultery crimes can be fixed in the judical courts . Keith and Carrot , who had goneto town to visit their son and daugther came cameback to the church . He came to Austrelia on a working holiday visa too . I will be talking in Korean for a lont time when they come to church ! ! ! ! ! A few minites ago , I saw a sports news report on TV . My friend said to me , `` You look yonger than yesterday `` . Anyway , it 's not my business , I 'm okay untill they start raising prices : P I do n't undstand why Edward tells Bella to stay away from him , why heleaves her alone . I 'll be more carfull next time . . . I 'll try to build my comfotable life slowly : ) Well , my husbund and I set up our own small business at last - ) This took a lot of time . You know many Japanese college students have a tendency to be senseitive about what they wear to college . In other words , they really care about how are they seen . So they wear fasionable clothes all day . I noticed that lots of students wear hoodies or T - shirts , expecially with their college name in front . Is it inexpencive ? But I am worried about whether I can speak Englih well or not . After we left the beach , we went to a shopping center named Amerivan Village . So we counld n't go anywhere except there . We just looked thorugh some stuff . The marketing maneger supervised them at first , but she gave up controlling them at once . They started to shoot the film at their wil . Because I got a appotunity to make my debut on the world stage . Syobu is a beautiful Flowe . Shrine of the City God Parade Day is every June and not on a specitfic day . The firsr time traveling in the United States . When I walked around the house , I feld an unpleasant sensation like I was trudging uphill in the house . My faborites are reading books , including Manga or novels , watching movies , taking pictures , playing tennis , and gardening . . . I 'm gald that the Japanese team won ! JOSIRYOKU , the art of being a fascinationg woman It 's too dificult for me to learn this stuff , I have no confidence for passing these exams . This song which you might heve not heard of is named `` Hailie 's Song . `` `` Hailie `` is his daughter 's name . `` Hailie 's Song . `` I wonder if the english title is okey or not . Does this make sence ? I do n't have confidence about whther native speakers can understand my English . Please let me intorduce myself It is very impotrant for me to imporve my Engilsh . Please correct my erros anytime . Ohhhh . . . ahccording this book . In the past , Japanese food culture had us eating insects such as cicadas and grasshoppers . I 'll attend some meetings and an exhibition of the heating , air conditons and ventilation industy in Las vegas . Yet the real realtoinasip , in my opinion , is much more subtle than the triangle in the movie . But I will not forget to put some medicein on my head for hair of course . I want to be a person who can assist someone 's development even though my ability is not exellent . I had my bycicle stolen during the night . but I ca n't forgive the peoson who stole it . After the lecture , I am having second thoght about the `` Global Environment `` . I could n't watch it before because my daugter said that it was scary . ' Poets are not so scrupuluos as you are . I tried to write something ( like book reviews ) in English on some websites , but I was so ashamed of my English that I just coulnd n't do it . Kaiten - zushi having rotating sushi on a belt conveyer which is cheaper than traditional sushi reataurants . I am working hard and I hope my dream comes ture in the future . But I like go back sckool , because I can be with my girlfriend and play with my friends . My english is horrybly broken ! I said that I was too lazy to do something , but my friensd told me when I am lazy I should do something new or study Chinese instand . I felt it was very typical for Amerika and I filled with emotion . It was the frirst book that I read on my own . My ability to understand difficult sentenses was immature . Returning to Harry 's wonderous world in this age , I 've found something I had not noticed when I read it in Japanese back in elementary school . But I think this is why these books are calld masterpieces . I had studied English in junia high school and high shcool . I think the best shing for learning English is to keep studying everyday . and am studing Farsi [ Iranian language ] . { I 'm trying to write articles in Farsi too } My hobby is watching Japanese animation films , foreghn mouvies , and I especially love Woody Allen and Emir Kstrizca films . I 'm studying English right now and hope to aquire skills to speak fluently with native English speakers . Philosophical issues , Religional issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . I want to make prograss with my english I am very glad to be a memer of lang - 8 . So far I have studied English for about eight years , up utill this term . It 's so easy to cook and tast good . I was very supprised . Eastern Japan has big probrem . Today , I went to the plice station to get a new driver 's license . I want to excercise for 2 or 3 times a week after this . the leaders of both teams are frineds . but somtimes it 's not met ) . If two participants find one another good , they exahnge phone numbers and they become friends or boyfriend / girlfriend . My friend , a frend of my friend , and I formed the men 's group . The women had three persons as well . We enojoyed the party and had a lot of conversations . So they go to the academy after school and go back home at midnigh without time to have dinner . Statistics say that we , people who live in cities , lose good , quality years of life ( or our lives ) due to ozone exposion . Yestday , my classmates and I went to have dinner in a restraunt . But now , it is in good conditon : ) I ca n't relax without it . The Romens knew more about fighting on land than fiting at sea , so they put a wooden bridge on the front of each ship . I think the Romens were very clever . But the history of Rome was very intersting . I ca n't beleave this happened . Do American people tend to include many people in an e - mail when possilbe ? We japanese are accostomed to prenty of things and food . I stayed up late while they sleft for a long time . In contrast , The PRC has become rich , but it still makes more threat of force to thr ROC and never recognizes the fact of the separation of the two sides . I do n't think they are wrong , but do they have the gualification to agree to people 's self - determination ? I went to the East Coast with my frend . I brought beer , Japanese sake and some snaks . I made a committ to serve my family . I performed in some temporaly groups while the other two joined groups together . After some time , we separated , promissing to meet again . I will have abilities to do incomceivable things . It 's [ vegtarian ] It 's not only the students , but also the teachers who are in trouble and trying to overcome their obstables . The docter said that it 's because of the sudden change of environment and food . But still , my body has n't yet ajusted to Korea . They damaged an atmic power plant . According to the report from the goverment , there is no danger to their health But some said that the goverment and power company are trying to Coul you please tell me . However , the inforamation gained from advertisements is sometimes overflowed and it is very confusing . Becuase many companies and shops are competing to win in the market , each shows their own characterized advertisement , which can be too much information . What is worse , people tend to purchase products or foods even if they do not need that maerchandise . I believe that more people should learn the way of recognizing whether which infomation is right or not even if the amount of advertisements increase drastically in the future . they can cook korea food . . I do n't kown why . . . I doubt I 'm writting good . Anna from Boston eventually finds her ture love , not in Jeremy 's luxurious house , but in a shabby bar in Dingle , a small town in Ireland , in the arms of Declan . This class is bowrring . I am too lazay to write a resume . . . . When I enter my room , it smeels good . I 'm so tired right now because we recepted more than 150 students today . I shoud have gotten up early this morning , but I slept in late . I am learning English , espically listening and oral english . I have ( ? ) a postgraduate majorde in computer , interested in network security and DB . I look forward to more friends to exchange each other . Today I am verry happy , I 'm verry happy . When you look at a Chinese word , you can not know how to prounce . I told him not to hesitate , but he said he still wants to be firend with Ice , and that he did n't want to hurt her too deeply . The sentense is `` Equilibria between any number of substances are representable in terms of activity coefficient correlations suah as the UNIQUAC or NRTL `` But it had Dezel Washington ! I 'd appriciate if you read and fixed these sentences . I am sadisfied with my hair style . Some insist that individuals wil solve it . Today I want to challenge new work possitively . I ran , among crickets and cicades , that was just an athonished sight , I think that this may be good fot people who are not allowed to have pet hamsters at home , or people who love hamsters but are too lazy to take care of them . Through this incident , I found that the country of Japan is not alone , and international cooperation is really important in a grobal society . Because the weather forcast said today will have a wintry pressure distribution . I do n't know the situation in your coutries but in Poland Spring officially has come . Spring is my favourite season of the whole year - it 's not too hot , not to cool , just warm enought for me . Unfortunately in going straight for my goals I feel like I have been losing something important , paying not enought attention to relationships with people I care about . So I cut one side of my hair by myself , which made it more akward . As he is a serious man , he is going to get along with his sweatheart . We did not reach a conclusion , but I think it was interesting and will be usefull . On my way to Suwon , I heard there were 2000 aplicants from my friend who had aleady been there . I was desperated and gave up trying to get the job . However , I chaged my mind because nobody knows the result . When I got there , I noticed that my freind had the wrong information . However I feel a little uncomforted . Not only in English but also in other languages I think there are strang expressions like `` break a leg . `` I prepared all my tickets , but not completly . I was comfused because I heard about it just before I borded the airplain and I 'll arrive in Bergen at 11pm and the hotel will closed . I looked around in the airplain . I went to drink with some coworkers yestarday . We drank still 3 o ' clok in the end . If you have information on it , pleease tell me . Because wheather or notyou can be admitted into college is decided by this exam . The system is feasible in China although mang people think it is unfair because of our country 's large population . We need more college students to bulid our country , to help make our country more beautiful . In my opiniop , this is very cruel for students ! hellow everyboby my name is May . I like English very much , but I am afraid to learn English ; because I make a lot of mistakes . Could you change this paradraph to make it look more like a speech ? or if you do n't have enough time , just correctong it . I would appreciate it . Funny listner In concerts , often there are `` funny `` listners . I ca n't wainting for the 26th free program on figure skating . When she got wind of the solution from a Homeland Security officer , she was a little bit comfounded because she had made up her mind not to marry anyone . I will begin to write again daialy , as well as I can . I also think that this daiary has many mistakes . ( Actually we are already in Februaly ! ) Usually , having her wedding in Maldives will be so romatice to a girl , but I 'm so tired for it . . . By the way , I think I am quite a strang persoon , because I feel excited when I hear the wind screaming . Maybe it 's because I just drank a cup of coffee which always make me excited . I try to imitate what I 've heard from the NPR to correct my pronounciation , my tone , and things like that . My summer vacation will end tommorrow . But I am happy because I wil be able to meet my friends and homeroom teacher . `` Do n't be a loser `` I keep telling myself that , but I always give up easily ~ I need to be more stronger , tougher and more focs on my target ! It was taugh because of its length . ( I heard announcements in French , and I liked its pronounciation . ) He mentionde a gilr who I love very much . Her busband dose not have a permanent job , therefore he helps occasionally with the washing of customers hair . Particullay , that of Japanese bush warbler made my ears perk up since its voice is unparalleled by any other birds . I really believe that she is my great adviser and suporter . I think it refrect the sensitive feelings that we have . That 's the reason I registerd it today . The prefecture has lots of skii resorts and held the winter Olympic Games in 1998 . Becouse of Love ? Actually , it 's one of the moset amazing social network services I 've ever known . Language Excnahge , LE in shorthand , is a great idea . I am dissappointed in you ! You are my friend , and I always beliving you but you lied to me . I finished reading the book `` Excerpts from a Family Medical Dictionary `` by Rebbecca Brown , one of my favorite authors . My favorist Japanese singer is under arrest . Last weekend , my favorist Japanese singer was arrested for drugs . Her name is Nariko Sakai . On last Friday , a wrrantant was out for her arrest and she became `` suspect Sakai `` . It is really sad to hear that - I still ca n't believe such a nice , sweet lady who smiles like an angel is a drug addictor . Just when people were worrying that she might commit suiside from the shame of what her husband did , the police found drugs in her apartment . People came to realize that her dispearing was probably not because of the shame of anything , but to escape the drug tests . I 'm not a Chirstian . This season , church choir members are very busy preparing for Chirstmas . Our music director chosed very rhythmic and complex music . So , I am a staff of the convinuient store . Maybe it 's a different customs about what the staff of the convenuient store has to serve to their customer . After that my manager appeared and he complainted about me . Too busy to do yoga and study other langueges . Of couse , today is very hot as well . I have to buy chocolates for my co - wokers before Valentine 's day . And I 'm worried about the costs because I have ten co - wokers . His name is `` Charo `` , the mascot character ofNHK the NHK English program . So I have to write my disertation , and look for a job . today , when I checked out my blog configuration , I found this site in my favoirte . The first thing is my Machintosh Computer G5 . Visitting Zoo is really fun . I 've lived in the nurse 's accommadation near my hospital yet . He said , `` Get a picture is not a plite way to write Hikari , you could say orally but not written `` . Starting Lnag - 8 Hopefully , I can make more and more friends , although my English is not so good , but I can always communicat with English speaking people . Bart and Lisa , daughter of Homer , cooprate with it . One friend is going to America for further education and the other will work as an analysiser in Shenzhen , we will be living in diferent places around the world . The story is about a dective who had been a high school student . I comuute by train every day . In the evenig , I catch the 8pm train . I ofhen read a book on the train . but I have no ploblem . I washed my hair with my favarit shampoo . I heard that it is good for the helth . It 's reasnable to think that individuals do n't tend to own pianos , but families do . I 've rewrited some Chinese diaries for Jepanese friends . But I 'm taking a year off to improve my English abiliy , and go on a vacation to take a break . When I was yonger , I liked painting and studying fine arts . But it 's very differnt from visual design or fashion design . That keeps worring me But some of us like to play command sport games , some people love to play intelectual games , and others love to play computer games . Stop hating clesses in school , or stop hating boss at work , or stop hating other people . So simple to learn anything , or converse whith anyone . My wife is little worried about her appetiet lest she will be fat . I used a strategy which is to take a concentrated attack against the one of the opponents , who is weeker than the other one . The games remind me of two defferent feelings . The one is the law of survival and the other is the story of the ' Hare and Tortois ' . I want to make friends with someone who lives in a foreign contry . Today my vaction begins . I wana sleep soon , but I have a lot of homework . I hava to start studying now ^ ^ ; Today , some laggages arrived at my home . ( I used this airline to go to Europe last month , and transitted in Russia . It was very cold there . ) Some georgrapers say `` there are no places on earth that have not yet been explored . `` ( But I thnink human beings actually have n't explored the bottom of the ocean at all yet . ) because only little girls are horeines in his works except for this one ) Nobody belibed in the testimony of his father , except for Pazu . The girl who came down from the sky , whose name is `` Sheta , `` had the magic stone , and she was pursued by the army because she knew a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheta . There are two kinds of high schools in the mainland - - jounior high schools and senior high schools . Compared to jounior high schools , the teaching quality of senior high schools are considered more effective on the students ' future . Some schools would even damand that girls can not have their hair long enough to reach their shoulders . I 'm goint to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . from 9 . 15 p . m . to 8 . 20 a . m . : gogo kyu - ji jugo - fun kara gozen : juichi - gatsu nitsuka , mokuyobi When we were at Tennoji , we were spoken to by some drunkun . And please let me ask another qustion . Tomorrw . Hopefully you can help my Englis . Beause that was far from school , and the holiday was very short . During three weeks our reserch group that includ ecologists , zoologists and microbiologists , will be studying wild rodents and their microbal flora . This is the first timr that I have seen the entire school covered with snow ! I thought it was rude to put loggage in a seat , so I replaced it on my knees . Because I can use any vagetables and it tastes very good ! ! My Mygandmather made MISO and gave it to me . I think the Japanese goverment should restrict where people can smoke , because their smoking affects non - smokers health . If you have any suggestions about how I can improve that , I 'd be really greatfull ! Could you give me some advice to learn tecnical writing ? After that , my proffeser invited us to his house to give us a great dinner . but I will come to the intternet cafe as often as I can . Recently she has been melancholic and does n't do anything , washing something , cleanning , or cooking . . . I used Yuzu tea that I made last November to cook yuzu floavored chicken . Recently I have gotten hokked on Japanese cake . But it 's no use crying over spilit milk . It was like a musium of lifestyles in the 18 and 19 centries . But , I do n't have any frineds there so I 'm worried about my travel . Does speaking only improve speanking skill ? With only a small quantity , it speads and foams easily . I like the convinence but hope it is safe to use . I do not know wheather it is because I have n't done English exercises for a long time or other reasons , but I just feel unfamiliar with the English words . I 've joined a team where I can learn darwing for free . And when I was dreaming , I thought my soul was being pulled by a line and flying to the sky , when I woked up , my soul came back . There were more regret , loss , mistake , repentance , contradiction , indecision inn their young lives resulting from the unperfect ending . and we found some gravy , but they all were too expencive . Conspicuous vs Norticeable dengerous ! ! ! The building is very butiful . Start to read with diiferent views . We also played succor and baseball . For example , Japanese may be diffuculty in terms of respect usage such as the humble forms . It is growing wormer because spring is coming . Yesterday was a National holyday . When I was warking at the office , I felt the earthquakes . One of my roomates recommandate this website to me . I studide it for one semester , but there is one year left for me to study in college , so it 's a pity that I have to drop it and spend all the left time on English to pass the CET6 because I need the license to find a job . I translated it directly frome Taiwanese into English . I was a cartoonaholic . Beacuse I had a good time during my childhood even though I was a key kid . I am 20 - year - old guy and a university studuent in Tokyo . It was very diffculrt and I could n't do it very well , it was bad , but I lerned somethiing today . Please recommand : ) Everyone has a funny or inrteresting incident when he or she was Many childeren wait for Christmas day which is on Dec 25th . We threw her a birtyday party . I wanna , at least participe with something , but I 'd rather have something good . . . I want to recommend a heart - warming movie staring Robert Dinero to all of my online friends , because it can make us reflect on educational perspective , parent - child relationships , and so forth . But I 'm into this completly and I like the story they told us together with it . It is said that this typhoon is similar to the ' Isewan Typhoon ' , which occered 50 years ago . Because normaly this county has no rain throughout the year , all roads and buildings were built with no consideration of rain . What happend when it rains in this country is it causes leaky roofs , floods , and traffic jams . oh ~ ~ ~ late - - ! ! ! I was sick last week - . - ! ! ungelivable I only wish that I could recover from this desease sooner . The Nepalese sause was very hot and spicy ! ! What would you prefer to learn among abovementioned options ? And then the guid took us to Pataya . We did some banana boating , jetskiing , motorboating , parasniling while we were there . I 'm an English lerner . For one of my Englidh classes , we will make a newspaper in English . Actualy , I am always very sleepy duing lectures in class . Also , I woukd love to share some interesting things about my daily life . What makes me think he is a crative person is the product he came up with . When I was in China , I could use my cel just like in Japan . In fact hardly anyone in China owns a Japanese cel phone . I rode in a night - bus from Nagoya last night , and reached Sinjuku , Tokyo early this morning . I thought it was n't serious , and it did n't hurt very much , just a litte . And he told me it might have resulted from lack of the muscle in my knees and recommanded that I do regular exercises to build their muscles . For three years , he murdered 7 women and buried their bodies with careful prepartions , and he reportedly has shown little sense of guilt or remorse so far . What illudes me The deadline for the resume was yesterday and I 'm going to make a presantation next Friday . At that party , _ I found out many coworkers are thinking about their carrers . As I mentioned abobe , it may be one of the characteristics of Japanese office that they are very crowded . I was born in Ooita preficture which is in the Kyusyu ( Kyushu ) area of Japan . After that my family moved to Chiba because my father was tranfered . I thought `` Hey , you wana make me angry ? I don ` t know fainal Fantasy . I reffered to `` Majicon `` in yesterday 's entry . ( The sentence forced them to pay compasation and prohibits them to produce , import or sell Majicon . I expected that there were some people who were agaist this sentence . However , there were more opinions which were against it than I expected before I read it on net . I feel sad to think that DQ9 's release was postphoned due to them . . . . . It is intresting for me to use this site . If my English skils will be better , I want to use this more . My Ebglish skils poor , so please colect my jornal . ; ) I have n't seen every espisod of Bones yet . Repereing Computer I work for a lublication equipment trading company so I often write emails in English . But my freinds went to their hometown . This is my first diary entry after a long separetion . Japanese people are struggling to save energy this summer because several electirc power plants are not operating right now . Goya , or bitter gound is a kind of summer vegitables in Japan . When I was young my mother put a Goya dish and I always frowned while eatindg it . Are there any bitter vegitables like that in your country ? The first dream which you have on the first of January is improtant here in Japan . Unfortunatly , I had a bad dream . You 've screwed up everything , you know ! `` I coud n't understand what he was shoutig and I was just petrified . Usually Susuki grows in the wild , and many Japanese people can enjoy the typical autumn seanery in nature . But , I canged teachers soon . It was a busy 30 minites . This photogragh was taken by me several years ago . It was really great to meet them , simply because , it reminded me of several wonderful momeries of the time I met them . Studying IELTS is not a easy job , I having been preparing for alomst a year In the last English lesson , the instolactor showed me this site . It 's a youthful moivie . When I got into Dinosaur class this moring , I opened the door . . . . . . The first one I made was I hoped everyone could have good helth . The second one was that I hoped eveyone could remember me after I leave . I do n't have a place where I can sculpt , so I make things by paier - maches . My head itchies . I 'm wondering if there is somesing I could do for victims of this disaster . My job , working in a cafe in a department stor , was busy . This is my nineth entry . I wonder if I can continue to write in this dialy , but I will try . The Heike people were defeated and disapeared into the sea : samurai , a Buhhist temple ( Amidaji ) near the sea to ease the Heike 's spirits . performing peoms and playing the biwa ( a kind of guiter ) and his best She is bright like the sun , athletic , postive . I can see the ocean every morning because my univercity is near the ocean , I think we have fewer haliday than other countries . But I ca n't deside what to cook . This website is written by a member of a Japanese ecnomic think - tank , so the contents of the website is related to the economics , and all contets are written in Japanese . You are too concerned with what was and with what wil be . Now the olympic game is being held , and whenever I see the elected athletes from all around the world , I think this documetns really suit for them . The weather is urgly today . The couse itself is dull while the teacher is more boring . Well , I did n't like the techer neither , especially today . After two classes , our task was finished so we went backe to our campus . That means I ca n't go to the huuuuuuuuge summer sale once in six months whici is right now at some wonderful and famous shops in Tokyo . Omgash , it 's killing me . . Actually , one of the my foreign friends had never known about certain grammatical terms such as `` phrasal verbs `` or `` prepositional verbs `` befoe I asked him . So I guess it would be difficult , of course , but I do n't think `` it would be impossible `` to think in Enlgish . I only earned 500 yen ( 5 - 6 dolloars ) with that in a month . `` what is your strong poin ? `` Today , I tried TOEIC test . He got a holyday before GW because plane tickets are verry cheap . I do n't get a holyday before GW ! When She was working near the Uno port in Okayama she met the sargent of American air force during Warld war 2 . but we . could n't usally have conversations . In my book , they say that in Okinawa many people live untill 100 and more years , is it true ? Of course Michey , Minny Donald , etc . were also there . I 'm living in Yokohama ( next to Tokyo ) , working at game macine maker . I 'm wrigting a manual for installation , maintenance or conversion . My university does n't provide us with a good enviroment for studying . I was very disapointed . It is a university in America but there is a campas in Japan . Yesterday I bult up the Chrismas tree . when my dauthers were much younger , I felt it was too big a tree , Becouse my daughters can do it themselves . But I desited to keep it every year , even if they leave in the future . I am hooked on vegitables On wendnesday I was sad . We were shoping around the market . This is particulaly in Japan . But when I went to university I learnt that English was especially impotant for my future . I can give my opinion in simpl words , write , ( with mistakes , of couse ) , and undestend other people if they do n't speake too quickly . I learnd it is important to believe each other and to make a good partnership . First , we are reading a book about stock for bigginers . There are two kinds of peple in this world . . Today was another hobrrible day at work . PS : rewirite or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too yong , but I want to learn English very much ! ! ! I do n't think I make any preogress at all . I enjoy studing English now . Anyhow , let 's pray for him because he died from the pressure of the mass mdia . My first dialy Thank you for reading my dialy ! However , this trial account is even more inconvinience than the Korean WoW server trial account . And , I can only make a n original character race such as human and orc , etc , but I ca n't create a race from the expansion pack such as Drenai and Blood elves . First , I would type Torquay , after of all , there are some unnecesariness characters , ' r ' . hallo ! ! Now , I 'm styuding Korean in Seoul . I have been studing English in another country before . Writting , Reading , Talking , Grammer , Listening , or Pronunciation ? She is really beautiful , atractive , and fluent in English . She is the one who really encorages me to work hard in studying English . When I see her acting in movies , I feel that it is possible to master English if I try hard . Laterly , I feel very , very boring ang upset when I have to study . I dont know what 's wrong , it is just boring ! Why is ' on ' used in this sentense ? My favorite bands are Dream Theater , Yngwie , Steve Vai and also like Bullet for my valentine these thesedays . The differences between `` ( jorunal ) `` and `` diary `` A week later , I am absolutely disappointed and desperated . Instead , the hair desingner ruined my hair . If I get PR ( Permanent Regidence ) through RSMS , I need an IELTS score of 4 . 5 ( overall ) . It is a famouse method also in Japan . Summer vacation for the elementry school that my kids go to will be over at the end of this month . I Finnished the test ! ! I 'm bery bery tired . When I heard that news , I could n't belive it . I bought some fruits and drinks for her in a supermaket near my house . It made me nurvus , but it was finished so easy and early . I 'm looking forward to going there but forcast says it 'll rain both on Saturday and Sunday . It 's rainning . I want to go home but it is rainning . Dmn ! I left my family when I enterd colledge in Tokyo . I moved to my next apartment when I graduated from colledge and enterd my current company . cause and because how are they defferent ? and if you have some examples and can give me some sentense using the two words that would really make me happy . Thank so much . And I think it 's one of the best doramad that I 've watched . And I love when he plays the violine ^ ^ Becouse I had n't thought about it before . I read books on the couch outside , had breakfast and lunch by myself , worked for my profeccer on my laptop in my room , took a nap for 20 min and played basketball between study time . I thought Pruett 's house is the best environment for improving English because a lot of students visit their house and I can talk with them naturelly very often . Yesterday I had an entrace ceremony for graduate school . Today , there are many useful tools on the Enternet . I performed SAMULNORI at school with ( some ) Vietnames people . In the atfernoon , although I am not a Christian , I went to ( the / an ) international church in Vietnam . There are many tasks comming due . Roony is wonderful ! ! Nobady opposes her topic , on the other hand , someone could oppose my topic ; for example , if you have a friend who did n't drink , this person can be checked instead of a driver - something like that . If she wants to make a speach about not drinking and driving , she needs startling reasons . We are not crashing the office or anything , but we just feel freelier than usual . All last week I was dreaming about stretcing out on sand at a seashore . Yesterday was my friend brithday We are best friends because we have the same spirit of a social - worker and we share company proble with each other . However , I have to write about social ploblems for an English exam ; it is called IELTS . I remenber my friend whom I met last Sunday in church saying , ' ' I 'm only a newcomer ( as well as me ) , so the thing which I should do is doing things which faced on me , I think . ' ' As soon as I woke up , my little daughter asked me , `` What 's for breakfast today ? `` I was thinking for a while and then replied to her , `` Let 's make pancakes ! `` We then took a bag of flour out of the capboard , and a carton of milk and one egg out of the fridge . This is my fifth dialy in English ! It was hard to write the dialy for me because I have been learning English for a week . Recentry , I bought an iPhone . I installed some useful applications , such as crassic books for kids and dictionaries . but the episodes are saved on the recoder . Second , they usually have tatoos on their back , so if you want to know whether a person is a Yakuza or not , please go to an onsen together to check if he or she has a tatoo . Not all people who have tatoos are Yakuza . On Sept . 20th I went to Haneda airport early in the morning with my dauter and her husband . We were very disapointed and we had to change our plan . My One of my best Assuie ( Australians call themselves Aussie ) gave me that nick name . The relationship in the story is very complicated but the story relects a lot of actual things . He earnestly took arithmatic and Japanese class . He execused his manner , but I did n't accept it . I conplained to him too much . Tomo - chan `` wears `` the laundry basket like a backback , and says , `` I 'm a turtle . `` The Japanese Ministry of Aguriculture recommends for the Japanese to eat brekfast until 9 o ' clock , so I tried it . scrumbled egg with mushroom souce , pumpkin and asparagus salad , miso soup , rice and a tangerine Now , I only make a lucn box and I pack it with a banana in the morning . I always go there by car with my . hasband . Buying groceries for 7days , the laggage is very heavy . On the way home , It 's difficult to contorol the bike because of the heavy . luggage . Especially , I wanna ride on a roller coasteru . : ) My daughter always wears a one piese dress . Some customers thought that I had a baby , becouse I had professional knowledge better than most mothers . The doctor took my temperature , but it was only 36 . 5 degrees celcius . It was rainning and cold . Do n't regrat ( it ) , just do it ! Today I 'll forcus on my balance . I want to write and speak in nglish fluenty , because my dream is move out to the UK . I am so surpried when I read those statistics stated above . In my opinion , you are very busy studing and working a part time job , so you do n't have enough time to look after a dog . For example , although `` Annie Laurie `` is known as a nostarsic song ( ? ) in Japan , all the people ( or everybody ) in other countries may know it only as a love song . Japanese peope often import songs from other countries , and change their lylics to suit the Japanese people ( or market ) . The lylics talk about trekkers on the mountains who climb the `` Nihon Alps ( high mountain ranges in Japan ) `` . Writning in english is fun for me . This band is definitely on top of its game : a hansome frontman , a magical guitarist and along with a bunch of Grammy - award winning songs have gained them international reputation . The guitarist Johnny did the best in defining Coldplay by his `` outter space `` playing style , which is simple but awesome . Normally , many bands ' 1st albums are full of noise and aggressvie grooves telling how they are so tired of their own lives . I am going to Sheattle this summer to meet a highschool classmate . I have no idea where to visit in Sheattle . I want to make many freinds . Hello ! first , I introduct myself . I falled in job hunting , and I realized `` I do n't have the talent and skill . I 'll chooe the heart . It is one of the leading hospitals specializing in cancer treatment and cadiovascular diease nationwide . The main hospital of Samsung is located near Ilwon Station in Kangnam ( Gangnam ) , and we have 10 brachs of the hospital in Asia . curently , more than six thousand employees are working at samsugn Medical Center , and they are very active . My hospital is very supportive of me , and promissing . In these two days , a Japanese teacher tought us , but in the next two days , a native English speaker will teach us . I awoke becouse of a big pi - ki - ji - sound . Though the space project is good , I sinserely hope for the research to cure cancer and tinnitus will soon beas soon as possible . I could choose between teaching my cousin English or saling unbrellas with my grandparents . Every time I teach him , it drive me crazy ! So , I chose to sell unbrella with my grandparents and they agreed . Because I did n't know how to sell unbrella , I sat on the chair and looked at them . I finally understood that saling unbrella required a lot of information , and I found it difficult to make an unbrella . A lady asked me which one she should choose , and I didi n't know what I should say . I started learning how to use PCbecause I 'm going to get one of quolifications of Microsoft in order to get a job . The biginner course was too easy for me , but the intermediate one was too difficult for me , but I could enjoy both classes . It 's a big and nice one , but I felt the neighborfood around the skate park was insecure . I often saw police officers around there . She is a very popular singar in Japan . But in Canada or other countty , students do n't seem to work or concentrate on just studying . If I tried any more , I would have definately drowned . As soon as got back home , I went to bed and slepe until noon . We ca n't afford to support old Japanese poeple anymore . Recently , electronic tecnology has improved so that it is usual for people to have a mobile computer such as a laptop PC or a cell phone . However , at around 10am , it was just after the listening section , I was deeply desappointed in myself . I was sitting on the farest seat from the stereos . I think they may be feeling inserure about their financial base . Finding out that all the sprouts had wilted , he gave up taking care of them and he did n't pay attenton to them anymore . I complately forgot to pay attentin to them for two or three days . Do you kmow `` purikura `` ? The main idea was OK , but there were so many incoherences . I left home on my Motocilce and ran to arrive at work . however , others hould that there should always should be a formal distance between the teacher and student . I was inpressed by the superb scenery there . I feel soory for my mum . My children will participate in their elementary school 's sport festival on next Saterday . On that Saterday morning , my wife and I will get up early because we will make lunch box for my family . Their fathers usually have camera or a video recorder , and shoot a good sean . While I was listening to the radio while studying , I happend to hear that song . Afterwards , I listend to it many times while studying . That song supprted and encourgaged me while I was strivng to pass . I read an article about people who work at the Fukushima nuclear powre plant . They get only a 1 . 5L bottle of mineral water evry day . I think there is a risk from radioactivivity . It was before 7o ' clok but I could n't get back to sleep . When I was checking the web site of the local newspaper , I found an interesting atricle . I went to the theater to pass time untill my lesson . Docchi ga anata no usagui desu ka . Anata no usagui wa docchi desu ka . In Japan , most Japanese high school students study at their shools for three years . When they are in third grade . They have to decide which universitry 's entry examination they will take in December or January . I was suposed to transfer to another line to go back to Chiba prefecture . I just came from the company . I bought things in the Seven - inleven in my building before I took a bus . Although I have a talking tokingdictionary , it is breaken , so I ca n't expaint it to you at the moment . Sorry . I 'm want to study abrord , so I want to work more ! By thr way , I took the TOEFL last month . I need to prove my freinds wrong with my English . Because I told my friends that I will definately speak English like native speaker . It is difficult to learn Englsh . Only unmarried women can wear Furisode on celemonial occasions . I have to prepare for this celebration becouse I 'm 19 years old now . So , now , I 'm studying a lot of things in the Meisei University liblary . What is your hoby ? My hoby is cycling . And he gave me a nechlace as a souvenir . The names are Rute 70 and 188 . I already knowen I need to remember the rutes . But today , I was lacky because I just waited 10min . The young male doctor I know is only interested in his carrie . with sadness , I could n't do anythinig well . From feeling like this , I ca n't do anything today , and I want preople I know My thohgts and problems are progressing in both good and bad ways I think they have strong motivation for working and learning but they have no self confidence , so they can not try getting a new enviroment . They should have the power that they can still go to the future even if they faild . Now my wife is making preparetion , making herself up , winding her hair . We will try to visit an electoric store and a drug store befor we go to the firework festival . Patric Day , Black Friday and so on . Let me make a brife introduction of myself frist . My name is Lin but my friends allways call me Linny , so you can call me Lin or Linny as you like . I love English , I hope I can make friends with some native speakers or enlish learners like myself . Maybe I have no chice except to surrender . I went to the library today and brrowed a book ! I 'm comefrom China This is the second time I soverslept this week . I do n't think I will be able to spend this summer if there is not an air conditionar . ( more natural ) So , I 'll try to not use an air conditionar in my house yet . Did you use an air conditionar yet ? On wendesday , at 5am , I will get up to travel by plane . But , the books I realy liked as a young girl were adventure books . Anything I read teaches me somthing : different ideas , new ideas , understanding and knowing how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I will study Einglish tomorrow . I 'm looking forwerd to Golden Week . wasting your parents ' mony He was so angry when my hasband and I tried to carry him in our arms becausehe wanted to walk wherever he wanted to . Last Wednesday we went to the playground where we could play soccor there . ( He alwasy sleeps only 3 hours ) , I just caught a cold , so I didi n't study well . I felt I weasted too much time . Some people said that they have a very good weekrnds . However , it is colder in January and Febrary . . . The water tepmeratyre was still warm . It happens when you do n't want to tell a lie , but it 's neccessary . Please correct me if I make a misstake . It was really hot and humed yesterday . I 'm intrested in Hawaiian music and Hawaiian language now . There I will be working as / will work as a foremaster on the construction site . When we were midle school students , though we had a long vacation but had to make up for the missed lesson . One thing I leaned there is how to smile in the offce , which you use Levator anguli oris muscle when you smile . When I was sitting on the bench , watching the rain downpour , I thought that this was the first time in decade that I spent time just waitng for the rain to stop Watching the rain with doing nothing was very confortable , as my mind washed away . It 's a good chance for me to learn engilsh , and help people who want Chinese girl , bron in Guangzhou and live in GZ It 's cool and cleaniliy . Today , I got up at 7 : 30 and ate brakefast , then I washed my face , changed & I greeted my boss who is in charge of financial depertment . Both caces are very stressful . I bought a text file imput machine called `` Pomera `` . I 'm appreciative of the improvement of Interigent technorogy . Chocolate , Chandy , Cookeis . , Japanese sweets . . . But in Englsih , does the term . . . Job responsibility `` really make sense ? What will everyone do tommorrow ? nowdays It 's a midern Exam term in kun univerty I have already taken the exam circuit anylisis . computer mathmathice . but now I ca n't sleep , , the reason is mabey I had drunk too much It 'll be morining soon . I need to sleep , in oder to end today ( ? ) As soon as she enterd the room she screamed , looking the wall . Most of the time I 'm not takative . Now I 'm studing English . I always think that Taiwan is a country embrased by so many external cultures , so Taiwanese easily accept foreign things . Even my professor who is from America told us about this situation in class beofre . I wonder what you guys think of this phonomenon . Are Taiwanese xenomanias ? That does n't sound too hard , I could just translate my oringinal report from Chinese ( in ) to English . . In the dispressed end , there are only 594 words in it > < > < > < Please give me some possitive feedback to encourage me ~ I 'll be fully energized ! ! ! The picture was shooten in a trip in Tailand last year , me and my friends cheering together ~ I sensed a taste of Japaneseness when I soaked in them . I also increased my love for hot springs ! I have taken on a very important and ciritical job . the number of coustomers reaches 700000 . I hope you will find happness , because you deserve it This place has the beautihul sea , beautihul yards / gardens ( ? ) , and delicious seafood ! ! ! I lived with my grandparents untill elementary school . I was the most popular student among my school classmates because I was the funnist in my class . I like travel , too , and I am intereste in lots of places owing to reading many books . I need a help to correct my scentence . Een hertwarmende video ( in het Japans ) If you ca n't see the `` Ranking `` or `` Footprints `` page ( s ) , please push the ' F5 ' key on your keybord to refresh the page . He painted the pictures that were displayed in Ameri 's room . Do you know `` Ameri `` `` Ameri `` is my most favorite movie . This postcard is the same picture in Ameri 's room , of course . 2 : In the parallel world , there are NO SUCH THING AS cratures . When we were all full , the wife told us to wait a minute , couse the hairy crab would be ready soon . Of cource , it is very important and I will never deny the party itself . Look at Anna 's notes about her trip to Pradue and write quastions for the answers . This is very famous buddhism sentence . The horn of a rhinoceros is just one & strong , meanning solitude and strength . actully I do n't know It 's because I went to bed at ten last night and gou up at five . I was watching TV and I fell asleep unknowingly whithout covering my body with a blanket . After swithing it , I could not use some of the applications . This is why I cleaned my room for the first time in 2 yeras . There is nothing but rice fields in my hometown , but I feel lonly for Tourism is not that big in Japan . The Japanese government wants us toproduce someting like eroctronic . Today there is a dorinking party Yesteedya , I worked , in one day , 18 hours . They chose Bush as their predident . . . And I think this song lyricks is cute , a little : ) I 'm hopoing so much he 'll became popular in Japan . With fish or beens , you can taste it better . No one can expect what will happen . [ Now ] it 's time to rebuld Japan ! He lives in Sendai which has been suffering from the big earthquke . I do n't kown why . Nowadays , I think I have been depressed about studying Engslih and working hard at my office . Because I have n't drivt the MT car since a year ago , my left foot sooke . I can listen to a beautifrl song and learn Englsh . I hope that everyone like me can use this way to learn a forein language . Driving Licience As I remembered last year I went to take the test for my driving licience 3 times . The first time it went okay . I passed the mutipled choice test then went to the driving test . Above setences derive from `` URL `` So , I often go on bussiness trips . To visit many cuntry is very exciting . I think that it is easier to learn French over English because my mother language / native tongue is Spanish and is similary to French . About neclear power generation stop all neclear power plants ? As far as Fukushima neclear power plant is concerned , it operated My son got the flu last thuirsday . This winter ( holiday ) I trid Acupuncture and Moxibustion to help lose some weight . . . But it 's an imoprtant part of old Chinese medical sciense . A man was walking with his balck dog . I attend a class to pratise my oral English . because I met my ex employer when I worked at Jinsoo accadaemy for 4 years . He is still a mento to me . I 'm looking forward to getting a free cupon for SC2 A few days ago , I met a friend of mine and he said he will give me a cupon for SC2 . actully , I really like this game so I thoght if it is posible , it will save me money Sometime , I went to the PC room with my firends to plaing the game . I think it 's very important to explan my thoughts to other people . For example , why do I want to be a medical doctor , how much do I study per day and what do I do when I 'm tired of studing . I think I spentd quality time with my firiend . I made it yesterday , however I could n't eat it completly , so I ate it today , too . Their parents were youger than me . Some of the students spoked to me . And some accessories on my ear and neak ^ ^ < < All school students should study practical skills such as car maintenance , managing a budget , and accounting , along with with traditional academin subjects . I can crealy remember that day and that moment . On the menu , I found a ginger - favored drink without alcohol . Various types of wind - bells are exhbited and sold there . We can hear Chrismas carols everywhere we go as Chrismas draws near . What will I do on Chrismas ? YUKI is only guiter singing . I want to go disney land in America and China too . I was feeling was so happyey that I forgot about my cough . conventioal wisdom On the othre hand , they have gone through to the final . My first daiary These movies were made by Japanese stndents . Because today is the day before the holidayfor childeren . The rain rainforest is also an important earth resource . I wii go to a park in the neighborhood near my house to play catch with my boyfrend . Next term , I will be very busy . I have to prepare for the TEM8 and post graduste examination . I work at a restaursant as a waitress . Maybe that is why I 'm writting this diary . Three days after today is the moon festival , and I sincerelly hope that I will be able to see the moon hanging in the sky , and smiling at me ! ! ! I was very happy to hear that and recieve her letter . but exercise is good for our healt and help your face look youngerthan you think it is . Chinese harbal medicine These days , I drink chinese harbal medicine for health reasons . 3 is a misterious number . I hope we can have more chane to see each other , because we are family . But I am confused cause I have no idear how and what should to do . This is first time I write dialy heae . Today , I wroute a comment to other 's dialy , for the first time . I couldn n't use Lang - 8 for a long time because I was very busy One of my roomrates had an unfortunate incident this afternoon . But I should find a different way to solve the problem using courge instead of complaining . I share my mant things with her . So , if you have time , please correct my jornals . Today I left my class 15 minutes before it finished becuase I had to finish some homework that was due for the next class . The door was in the fron of the class so I had to pass the professor to exit . I later found out the homewok was not due today . This was because the House of Councilors election was held in Japan yesterday . On this site , we can build vocaburary and practice dictation . Now lots of Japanese are learning English on iknow , and if English speakers start to study Japanese there , we will be able to help or cheer on each eachother . Each team has its own studium around Japan . Sometimes have to work till late , but I really love my job because it was my dream to join this industry ( I can watch the newest movies / tv programs prior to their release ! ) and my collegues are all good to me . I dod n't know if this character is a penguin . Even thougt I was feeling really lazy , I went there . I dont ' know whethar she can remember me or not , anyway I feel happy to see her . Recentry I have been watching American drama `` Lie to me `` . Especialy Lightman ( He is the main person ) speaks very fast and munble ( not clearly ) . I am ashame that I didi n't write here for a whole week ! : ( Does anyone know how to treatmaent this bad illness ? . Which illness is that ? . Has anybody seen fhe film Brazil ? My dialy . It is the first time Iwrite in the dialy on this site . WhenI was a junior high student , I used to write my dialy in Japanese and I quit . After that , I sometimes write my dialy in English . It 's instractive for me to memorize words . I have many friends and when we met last weekend , we were smiling and joking , we had desided that : All will be well ! ! ! I realy hope thet our God helps us . I have become 24 years old the day beefore yesterday . Live and lern ! I should lern more and more things . She baked me a cake and cooked me delicious food like a restaulant . I 'm little shy , _ but it 's just that some peole do n't real know me . It was funnier was when I was walking in front of her house and I passed by the windown where he is placed . It 's simple , friendly , easy , sometimes exciting , and sometimes motional . I am studing English . poublic lottery I buy tickets for the poublic lottery . If I were to win the lottery , I would want to traveel . yesterday , my skype establisment has no image . Tha 's miserable . Therefore , I draw picture with photoship . Oh , soory Ms . I felt it was diffecult . Second , some sountries require children to do military service . I think that good educatio is to present many subjects for children . In Japan , the Emperor decleared that we wo n't take part in any war , so Japanese do not hava a conscription . Japanese children learn about the wars in school , but those knowledge are important hidtory . Japanese will think that wars are not good , so we do not have to takje part in any war in the future . I am very much confue about can , could will , and would forms . I 'm a universti student . I will probably be exhoust , but it will be exciting . I usually spend time watching DVD 's of American drama to studay English . He made three rules : do n't be late , never be absent and do whateve he asks . From now on , I wll put the posting dates as the titles . Dictionaryies define it as something fortuitous that happens unpredictably without discernible human intention . Finally , I cutted my forsythias , my Japanese apple tree , my lilac , and my thuyas . To achieve a certain goal , we should make an effort even if we are poor , meserable , or the road is hard . Recently I have been seekig a new job which requires me to use English . I need to get a high score on the TOEIC test nenx month on Sept 11th . This club 's name is `` English discusssion project by a student . `` I said to an advise , . `` Sorry for the short notice . May I take part in your discussion as a club - menber ? Tateishi is a city for blue coler workers who wanna drink alchol delectably and inexpensively . I feel my brain has completely swetched from English to Japanese mode . Because I love music I want to understand lilycs . Because my older sister married an Italian I want to speak with my new blother . . . It has a beautiful and magnificent melody and romantic lilycs . Our teachers gave us 33 words on the board , and let us choose 16 written on the paper , and if four of the words were as same as the ones that they annouced to us and they were on one line , we said Bingo . Then he would go ahead and annouce the words until one of us had all 16 words We had 3 teams competetive . I also want to improve my spoken and Writeen English . Of course I sympathise with the main character , he was so brave to overcome his phobies . She took the test seriously because she wants to study fine art in France in the futrue . Fianlly , what I want to say is `` Hang up there ! Today , my teacher told me that this website is good for learning Eglish or other languages . I feared that she might have investigate whether I was unocuppied or not . I was very greatful to the receptionist for tolding as if I worked at the office still . I anwsered , `` I see . Even though I called the office at 5 pm , the automated appointment system automatically told me that my appoinment time was at 8 pm . ( When the office are already full of pacients , the system does n't accept me . ) I picked my little daughter up at her nurseryschool school first and I went to his elementary school . `` His fever was 38 degrees C at that time , and now he developped 39 degrees C . After returning home , I left my little daughter with my hasband and took him to his home doctor . At the office , there were so many pacients . When he listened to my son 's heart with a stethocope , I saw a fresh wound at the tip of the doctor 's finger . I thuoght that he was working so hard even though he was over 60 . If his fever goes down , ( usually his fever goes down in daytime ) I 'm plannning to take him with a buggy . Cold Weater In Kyoto , there are many hisytorical monuments , shirines and temples . After that , I wached the movie `` high school musical `` in my room . After the object was gone , we started to see a series of images proyected rapidly in the sky . Hi evrybody , it 's my first time using lang8 to make friends . Starting tomorrow , I am going to stay in the dormitary of my university for the summer vacation period . The reaseon why I decided to stay there , is that I just want to focus on studying my major . My dream is to be an English teachr AND I am already a junior , so I should prepare not only for graduation but also for the teacher certification test . Have you alrady received a call from him ? He 's studing Japanese very hard ! ! ! I somtimes eat it McDonald 's . They started to grow lettuces to use their humberger in a shop . Today , I went to a museum for celeblating cultural day myself . A few days later a beautiful girl appeared at the grandfathere 's house . But I wish for you to never look while I am weabing . They could hear sounds of weabing . In my recently watched movies , I liked `` Milk `` and `` changiring `` . Mathematics and the Russian language are compalsory for all of them . I belive that sincerity could touch god . enjoy home homeparty sometimes . My apartment is not so big , so a maximam 4 people was OK . I was excited abount inviting my friends over again . Nights in Paris are becoming a part of my dreems . . . Fall is my favorite srason . First is the color of sky is yery beautifull . Second is the color of leaves is so beautifull . Because of it , I ca n't get motivated to study or play sports . It 's now clear to me that the most important thing is staying healty . ( - _ - ; ) I 'm always told `` Do n't follw strangers whatever happens ! `` by my mother and teachers but it was an exception , is n't it ? We had our senior guraduation celemony on March 16th and it was very important for this school . All students try to study or practice club activities till the celemony and promise that we 'll be the people who contribute to world peace forever . But , students ( excluding seniors ) were n't allowed to attend that celemony . There were a lot of things which made us sad but we never gave up ! For example , we do n't have enough electricity because of the Fukusima Daiichi nucleear power plant disaster but we try to save it . Took an Englsh Lesson . I 'm gon na wirte a diary about my English lesson yesterday . My first dirary on Lang - 8 I learnt about this site yesterday in magagine . Lang - 8 is introduced as a good site for learning english for free in this magagine . So , I registerd on this site to study english . But , unfortunately my english skill is poor and not good enough to conduct buisiness . I would not reccomend you to use this word . On Taketomi - island , we stayed in the Japanese - style hotel and enjoyed awimming in the hotel pool and beautiful sea . Nowdays one of my British friends want to speak with me by Skype . I will write it in cofusion , and the composition will have never have a theme . Thirdly , my listening abilities are terrible , so I am afriaid of talking to anybody in English . I also have n't made visible goles to learn English . I think that when I achieve a heiher level , I will not be able to continue learning . In ' process oriented writing ' , students are required to revise their draft acoording to the feedback given by peers and teacher . Through this procedure , they can improve not only their writing skill but also the communication skills by having vrious opportunities to interact with peers and the teacher . Natural order hypothesis states that the acquisition of grammatical structures in a second lnguage follows a predictable order . She ignored the fact that learners were not ready to acquire the grmmatical features she intended to teach . Before I came to New Zealand , I contrancted a homestay for only 6 weeks so I have to leave tomorrow . I got myself a summer vacation by a miracle . ( call it a miracle because I 've got this kind of vaction for the first time since I became a doctor . ) Lang - 8 does n't send a messege to everyone from a mobile phone . I will send a messege and correct everyone 's diary tomorrow or the day after tomorrow . Yesterday , I ate sushi first time in my life ( I know that is a little shame , becouse I 'm fan of Japan culture and . . . Wheather is strange sometimes . In Japan there are some bars or restaurants where you can eat raw meat like Sashimi beef , checkin or horse ( but not pork , I think ) . They said that comics were less refind than literature books and that reading comics made children less smart . Teduka was also an eminent doctor , which made the criticizm die down . I wonder if it is a problem I have ( I 've ) had since primary school , and it 's probable / likely that I will need to begin practicing . The goal of this game is to arrange bricks the same as shown in the corner , by picking up , sttepping over , throwing bricks , etc . During this weekend 's holidays I had a good oppotunity of going a civic concert which was held on a hall in a down town , My sister in law lives in the city though she took part in the concert as a performer . And I also want to make diffrenent friends from other countrise . The 70th anniversary of the birth of Jhon Lennon is Oct . 9 2010 . Spearking of Jhon Lennon , here is `` Imagine `` . It 's the last week in my onw city , before I 'm going to move to a big city to study . Mushroom - picking was difficalt for me . But parple is different . parple is eerie . She proudly talks to me with a smile or she seliously talks to me , and she looks like a swagger woman . Every middle scool teacher uses this phrase for teaching students the basic structure of English . And other examples of conversation in reference books are more wierd and bizzare . I will graduate in 4 months . I aslo need time to improve my english , only do better and I can find a good job . I love English and the culture of English - speaking countries and also my own lanugage and culture . in recent personnal changes , I have changed my task . It 's pretty exsiting ! ! Actually , I hate summer beacuse in Japan , it is very hot and humid . I want to know about your contry 's traditional New Year 's Day . so skieer from foreign countries came to my town to enjoy the snow . My hobby is reading histrical novels . Recently , I am interested in the histry of France , though the histry of Japan and China are my main interests . Anyway , I 'll write about TABLE FOR TWO ( which I 'm invloved in ) next diary . Althogh it is not a Taiwan 's based client , ( Chinese client ) I can still play it . Thanks to the public holiday , the restrants were n't crowded . It 's not nonsence , Navi means butterfly in the movie too Today , I 'll tell you about a Japanese famous comic called `` ONE OIECE `` . For the first 5 minutes , each of us made a sequence by yourelf . Then each team had 20 minutes to discuss , make a final decision on our team 's results . We had to choose one member as our spokeman to make a short speech about our result . But , it was hard to get that kind of chance because someone would start talking before the spoker finished . The first time I called , no one anwered . Besides that , two of the many questions he asked me were how I made the number for salary expection and if that was resonable . Also I will help anyone who studies the Russian languegies ! My friend recomended Lang - 8 because he knew that I 'd wanted to make a foreign friend and improve my English skills . Tonight , I walked along teh river , enjoyed the wind , and relaxed . He speaks fluent English , Friench and not fluend but he speaks good Spanish . I speak fluend Japanese ( yes , I 'm Japanese ) and `` fluent bad English `` . . . I got holidy for a five days . Whenever I needed to celebrate somehting , I liked to buy shampagne . What are your faovite drinks ? although the bil is controversial , goverment passed the bil that minors ca n't play the game during midnight after 29 , april , 2011 It is expected to curb the habbit of minors who play games for a long time My daughter is 10 manths old . Jindaiji park did n't seem like a place that is only 30 minites from Shinjuku , because the area was very calm and has an old traditiona atomosphere . Recentry I watched a movie titled `` What happened in Vegas ? `` I have some umfamilier expressions and grammer points . 2 ) I think this grammer is incorrect , right ? I also drink a coffee that I gring from my office in a water bottole . `` Into the wild `` , `` Samsara `` ( by ) Tomka Michniewicza and the `` Lord of the rings `` trilogy are my favorite . I try to read regulary . I Promis ! ! To tell the trueth , I used to go to the same gym 6 years ago . Why did this happend to us ? I learned that trobles give us pain as well as a lesson . Whould you visit Nico Nico Douga ? I 'm going to meet a new freiend that I met at a bar last weekend . he is from Russia , and is a student at a unnivercity in japan . The TOEFL was canclled due to the earthquake and limited electorcity in Tokyo . JAPANESE PEASE I 'm not quite sure if forigners make peace signs when taking a photo . It 's intersting . Long fligt The novels were writte in Japanese . Becouse I study English these days , I always read children 's English books . While I was alone I was desperatly trying to work for a greater good . That tought made me sick to my stomach . The words seemed strange or even distant , like they were adressed to someone else . I wonder , do I really diserve this ? I was so suprised that someone actually tought about me , that I counted somewhere somehow . I really apreciate everything and I will try to be a better person . I was trying to change my password for my Hotmail account , but then I could n't enter my ID even though I remeber my password correctly . I would like to cry . When a customor sends me e - mail to me , how can I get it ? I felt so loney ( facing this day by myself ) I missed my prarents and friends . Happyness is important . I 'm loven ' it ! And , I 'm loven ' it . I seriosly need staple foods . It is one of my favarite quotes . When will tha dream come true ? A few days ago , I started to lern Russian . I 'm learning English because I promised to practice English with my ancle last year . However , my frige was almost empty , so I needed to go shopping . I am attached to my club because I feel warm - heartedness , friendship and affection with seniors , jumiors , and companions there . Anyway , Thank you for reading my writing , and I think my witing has many , many , many errors . Perhaps you know , that was because there is a story that an earthquale will happen in Aichi or Shizuoka prefecture . Bacuse I ca n't go outside so maybe I 'll study math , society and histroy I would like to have a fridnd like her ( * ^ _ ^ * ) / And then , I ate lanch and went to English school . After the dentist checked all my teeth , one of the dental hygienists cleaned my theeth and scraped some tartar . I want to watch this movie in IMAX 3D theatre , So , unavoiably , I will watch it in Ilsan ( Which located near Seoul ) this weekend , but I wonder whether it will still be screeningthen . I think the all chilkren love today too . When I was a kid , the happies day was Chinese new year . Needless to say , it does n't matter what color you are or which nationality you are because color is just a concept and we are all special , but sometimes it seems to be a little hard for us to understand and acknoledge differences because of the lack of the oppotunities to interact with people of ohter nationalities . I saw my class is very fuuny . They were always yawming and their faces looked like they were miserable and bored . Looking for a roomate and a Stadium Also , looking for a roomate is a sort of frustration . However , it 's not easy to find a good friend ( roomate ) . Today is application day of & nbsp ; TOEIC Test . The effect of Grobal warming causes this abnormal weather . I was startled but then noticed that she learned the phrase from a children 's TV program that introduces classic Japanese poems and litterature in a memorable way . He died ealier ( around 29 years old ) , but he did a lot of things to change Japan . Then , my daughter said with smile that she was looking forwad to the next day because she did n't know what would happen . It 's amazing that they held a concert in Taiwa . In Taiwan , not a lot of plople know them , so when they came to Taiwan , I was so excited ! ! I hope other foreign musical groups , can alaways hold concerts in Taiwan ! ! I found the movie mature and realy touching . I think I am fat , I should do exercises and eat more healt ! . I 'm study in the University of Arts of muy contry , I 'm learning song lyrics ! . I have a two best friends , they are grat girls ! . My family is very very big , although currently living in my hause is , my dad , mom and my sister . Today , I am going to Spporo for shopping . And none of them are even preety ! It 's only the ugly men who want to meet you ! Amason has started the bookreader 's business . A friend of mine and I did n't thave enough time to prepare for this trip , so we booked a bus tour to see The Great Wall . She is a very kind person , and is always willing to help peopel who need her help . I think friendship is the dearest possesstion of one 's life . He introduced me to this site and told that I shoud try it . I also logged in Skype agin , but I just do n't know what to write today for I have n't kept my diary updated for such a long time . I recieved a postcard from my old friend . I planned to visit Singapore in the midle of May . Until resently those were only used by housekeepers and the industry sector . Now that the flu news spred all over the world Mexicans are treat like leprosy . Rachell ' . In addition , Rachell had been pregnant by Ross who is one of the other friends and ex - husband of Rachell . `` Staying healthy is most improtant in our life . `` I totally agree . . . . . . . . . I 'll do the laundery and clean up the room . But I ca n't retern to the nice rhythm of life . So what shuld I do ? Actually I really appriciate him because I knew he was always taking care of me and trying to encourage me , and he did his best for me . I think my speking ability is getting bad . The teacher was my hasband 's boss ' wife . Who can tell me how I can improve this ablity ? ( I accept recomendations for places or courses : D ) I will start to try writting entries in English . Time flies away . Half of my vacation has gone by . I travelled and spent a lot of time with my family and freinds . . . Now I have just one month to relax and do something I realy want to do . Therefore , I am trying to decide how to spend the rest of my vacation . Should I do an intership or just stay at home and learn someting ? Actually , I want to do both of them , but it is hard to do two things at the same time . If I do an intership , when I come home , I will be so tired and exhousted that I wo n't be able to study . Ok , I found the solution . . . Maybe I should try to improve my enlish during the rest of my vacation . During two weeks , I ate lunch in our workeplace . I have asked my teather this question . I think this is one of the strangest things in japanese . It would be very kind if you could check my grammer and vocabulary for me . My answer is abosolutly `` yes `` They , ( people ) , do not just suddently come up and become your friend . Of couse sometimes we fall out over some small thing , but we understand what kind of personality each of us has , and so we can soon make up again . I think the meaning of a real friendship to me is , whatever you decide , friends should always resepct your decision , whenever you need help , they should always try to help you , or ask someone else to help you , and wherever you are , your friends should always be in your heart . I 'm watching The Simson 's family on TV now . The Simsons is an animated film . My purpose of lerning English is to study abroad . How am I momerizing words ? First , I read the textbook of English words and check unkown or vague words . `` Again `` cards are checked reatedly everyday . But I recommanded her to see a doctor before it gets any worse . I read a sentense . I am at Chingi air port . Please cheking my diary ! ! My mother - in - law sent me a text message which said `` Happy bitrhday to you ! He wants to give me a suprise , I guess . I will proberbly get something delivered . And I do n't understanngd the difference between `` my mind `` and `` my feeling `` . But in the US , we celebrate new babies before they are born and it is called `` baby showe `` , is n't it ? The following is just something I heard from Krean radio program . Unfortunatelly , she loves cats . They are going to pay up to $ 2500 to paitients if the paicients qualify . So , the way things stand now , we do n't need to be so carefull when we walk around outside . Even in the center of the city , I 've hardly ever seen someone committ a crime . So , they are fullfiling their resposibility to help this country be secure . And also , the tender and calm desposition of Japanese people contributes to safeguarding this country 's security by adding a synergistic effect along with the steady support of police . It would have been an honored and pleasure to just to be on TV alone , but they also kindly offered to pay me . I changed to playing vollyball . Some classmates were there already . Tanabota 's probability is suppoused to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . To my regrat , I drank all my medicen . So , I 'm going to eat some hot things . I coud n't go ahead because they had been waiting to pray for a long time so we also had to wait for a long time . While I waite to pray , I felt so cold . After I prayed , I went a cafe restaurant and drank a coffe . I hated English at school , because . I failed the excems . The students who can not come to scholl will be behind . Jazz conceret and New York `` I do n't know the difference between US English and Blitish English . Sometimes , I wonder if it 's too difficult for American people to understand Blitish English or for Eglish people to understand US English . `` `` I can not differentiate if it 's US English or Blitish English everytime I listen to someone talking in English `` So many things have happend since I last wrote in my diary on December 14th , 2010 . Carefuless me It could be a good resauce to make a money . When I was a high schooler , I studied English to preper for college entrance exams . I used a runnning machine and ran a long time . I completely feel like dietting is not easy . Hahaha ^ ^ ; ; How can I study well with this helth problem . At the beginning of this vacation , I had a detailed plan : sleepping time , study time , everday workload . . . It seemed to be fovorite content for girls , because it was composed basically of the love story . I went to the consert of the circle held in Kyotanabe campus at Doshisha University last Saturday . This is my first dialy We met with our relatives and talked to each other a lot , as well as cooked and ate a dilicouse meal together . It is difficult to creat a story quickly . They proved to be congenial partener , and they gained both a nice song and true love . It did n't matter to him if the others did n't understand , it was enough if just the woman konw . In my conpany We work at an aricultual facility to store rice until the harvest time . So I worked there over nirgt . My first dialy . It 's an importand message , is n't it ? The massage fee is very expesive , but I will go there again . So please add me as a friend and help me improve my Enlish . Today I did away with some of my clothes and accessaries . Just to make my muscles a bit more streatchy . I 'm a graduate student in Japan , I use English everyday for reading papers of my major and speking with foreign researchers , so I have to build up my English skills . = > I live in an aprtment . Do you think apratment are the safest housings ? I can listen to music , take pictures , draw a picture , play games , plan a course , check weather , et . . . . . Lang - 8 's update infromation . I hope these documents can help or wath else do I need to do ? Also , I 'd like to know if the hospital where I 'll take my exams is part of your coverage , inasmuch as I already have an appointment to do these exams this Wednesday at 8 : 30 am , Thanks for helping me . I organige these classes by myself at the local community center . Maybe becouse I can speak English just enough . Music was grete ! ! But I could n't understand waht he was saying . That 's does n't make sence at all . . . My listining comprehension has gotten worse . I never touhgt that before I came to Australia . I took my mobile phone out of my bag and tried to puch the button to call the police . The docter diagnosed my illness as `` noro - virus or rota - viros `` . Some pople claim that it is necessary to know what is going on in the public through the infomation listed on advertising . Thanks to advertisements , humans can gain the lastest infomation efficiently . As a result , that infomation brings more comfortable and fruitful lives . On the oher hand , there are many disadvantages to travelling by bicycle . Firsly , riding by bicycle can be dangerous . because bicyle do n't have roofs , unlike other types of transport . I had never hospitalized , _ because I had been helthy till then . Farst , garlic fried . Second , sousege fried . threed , tomato fried . I went to my mother 's home from Friday 11th to 13th of June to particepated in the reunion of my Junior high school class which was held on the night of the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on Sunday morning because my home town is Shimoda , three and a half houre away from the center of Tokyo . I set my alarm clock for four o ' clock , but I noticed that she had already got up and was doing something in the kichen ( even ) before four o ' clock ! I knew this because I slept in the room next to the kichen . Then she called me from the kichen `` Are you all right ? fm , but the service is like a textbook , there is no comunication . But I 'll have to go to work tommorow . I ususally think of some Korean sentences I 'd like to translate into English while walking alone . It 's organized by four Koreans I ve never met before . If I am free today , there is no problem becuase it 's Sunday . Because eating eggs is a traditional costom in Chain . On this day , I can eat a lot of dilicious food and get many gifts . Although we do not togather , but he can rember to me , I feel I 'm very happy . I was spurised by it . Becaouse I feel the cold or . . because I am nesh . It is famouse for its mandarin oranges , rocks and beautiful women . Stay at home with my san . I love American movies , and the most powerful thought driving me to improve my English is that one day I will be able to enjoy American movies without chiese translation . But now I feel I am gradually getting mature . I can now understand and know a person . I will try my best to find a solution to every baier . afganistan . . but I want to be able to listen at this spead ! A freind of mine told me that it is really catching on . It looks boring , ha , however I understand how it works to attarct men . Many people smiled and looked at her crarwling . You can get to there in only 50 minitues by ferry from Singapore . `` All inclusive `` was confortable for us . We did n't need to be bothered with money , so we tried various cocktails ( as many as we liked ! ) and a lot of excursions , for example snoceling , sailing and so on . We found a snoceling point in a sheltered rocky area just by the beach , so we were able to see lots of fishes . After snocelig , we always had sweet cocktails at the beach bar . Pho is verry good . Fried banana tasted verry good . His condition is abviously bad . His talent and experience is undoubtly best among the team . It was no problem with the group reague because Japan was going forward to next round step by step , but now is a tornament . I think he should be unlisted from startimg member once and feel refreshed . I am going to unniveristy Fighting Aginst A Sleeper I try to not to fall asleep but I ca n't lol I can open my eyes in English calss class , but another calsses make me sleep couse I 'm not interested in them , especialy socialogy ; ( Maybe I dislike it in the world . I attendented my all classes . Yesterday I atteded a wedding with my parents . We did a lot of activities to celebrite the marriage . However he spent a lot of it for private perpose , and the company found out . Before this , I thought only a proffesional could create a game . I do n't speek eanglish very well , but I am trying to learn it . The job is to let many people know a town 's good points , so my employer wants me ( us ) to apper on the radion to inform the activity . Though I did n't understand exactly what it was , I understood they cerabrated something today . One of the humor parts of this book is the gap between the common kid and the Go master . The treatment finished incomplate : - O My mom was angry too . I think this web site 's idea is wonderfoul for learning languages and making friends from all over the world . Short diay Do you have your profile , where you can write short menssages ( at most ( ? ) 140 characters ) , and that menssages will be displayed for all your `` followers `` ( people who follow you and have acess to your updates ) . And you can read the menssages of the people who you are `` following `` . Twitter can bring to you great information ( news , reviews of products , construtive opnions ) but can igually bring useless garbage like what your `` following `` is doing at the moment ( for example eating breakfast , who cares about it ? ) Today is July frist , and the sun is so strong . The heat made me remeber something from last summer . It 's a littlebit hard . So , we began to think seriously obout the job . My granfather is 96 years old . He also tolked about World War 2 ( or WWII ) , recent economic developments in Japan , and memories from his childhood . She was robbed twice , one of her son married to a caucasion girl , and her credite was terrible . I saw that fhe sky was quite blue , and seemed very far . I want to go to foreing countries . There were many people who belived it . I think marrage is a very important family event . Why do you learn foreigh languages ? I 've heard the English sound since I was chiled . I 've wanted to speak English since I was chiled . It was vocablaries , glammer , reading , and writing . . I did n't have an umbrella with me , so I went back to my house being brenched with snow . I wolud wike to read `` NY Times `` , `` Wall Street Jurnal `` , and `` News Week `` without using a dicitionary and wolud like to watch `` Roman Holiday `` without Japanese subtitles ! my saddness I 'm a boy in China . Even though I have been learning English for 10 years , my leavl is still very low . Learning English is difficult for me to some digree . I 'm going to the Akuarium , Museum and Art Gallery with friends . Yesterday , I could n't concentrait on my work . Recently , I have lacked concentration , because my relationship with my partnar has become serious . hellllo . It 's been a long time since the last time I 've been here ! He should n't hold mum in olw esteem . My Instroduction . Because It 's very fun when I performe at our concert . But I have a littie bit of time for myself . Pleaes teach me English ! In order to use internet via iPod Touch , wireless LAN is nesscessary unlike the iPhone . But now I feel even more willing to continue my studies and finally reach the level of Japanese that allows me to conversate with native speakers . I wathced one episode after the other . Yesterday I went to the New Culture Spuare to watch the Firework Show with my friends . but it is so difficute for me . Generally , stupid Japanese students who are learning English almost ca n't speak Englihs at all . To master another language is the most difficult subject out of any other subject , such as physics mathmatics . Tomo : ( Hey somebody please kill this stupid Japanese bicth ) Hey wait , you still can ' tunderstand English at all . Sometimes , we need an explanation about English grammer in Japanese . Bussiness Trip I must help with the construction of Chuo Hightway . Both the brighter and the darker side , so I know how desperate I am when someone say something to me , as well as how much I want to give up when I meet an obstacled , in addition to how bad I felt when I was blamed and disapproved . It 's been raining all day today and it 's aound 60 degrees , which is kind of cold for here . 1st , I listen the dictaition of Englsih book which is TOEIC text with reading it . I try to practice about five dictaitions evrery day . However , I would like to make friends throgh Lang - 8 . Europe , as Motherland of football always have been showing thier strengh . I sleptover today . I also sleptover last week too . On Thutsday , my first class starts from 11 : 00am , so I woke up at 8 : 00am to go to the university . I am disapointed with myself . Chakras are ubicated in each auric body and are responsible of retaining and metabolizing the energy a body needs to work optimally . Usually the literature about this theme describes chakras from the emocional body as the only existing ones . In each aura layer , that has one level of especific frecuency , we can check the existence of [ other / different ] frecuency levels from seven chakras . I am Japanese college sutudent . I am listeng repeatedly to a song in the album like to listen to YUI , I recomend this song . It was said that there will be a Gemini meteor showe ! I like meteor shower . Today I ate hamberg with my wife . I have not ate hamberg for a long time . Iin Tokyo , it was snowing . It was very dificult . So , I was worrying about the resalt . I had a good time and it bacame a memorable day for me . I do n't have enough time to prepare for the test , but there are a lot of assignments that needs to be dane . So we need to follow nature in a sence Ever since I was a high school student , I 've been playing electric guitar with some of my . frisends . And I think these tastes are greatly influenced by each country 's clutural background . Some Australians actulayy have been attacking Japanese whale ships using illegual methods such as ramming and throwing chemical bins and turning on water hoses . Thier ornanization sanked Iceland 's whale ship by using underwater mines that are a complete crime . We had a sports conpetition at my school today . as long as I try to do as above , I could achive it . But it 's I have to use it for writting diary entries . I sometimes use my English knolewdge at work especially when I have She is a graduate shcool student at Tukuba University in Ibaragi prifecture and she majors in physics . She studies grobal warming in detail , and she has been in Garmmany since last month . I am always motivatied by what she does . I studied English on the Internet which by taking English conversation classes throuh Skype from 11PM - 12PM . I played bascketball with my host family 's children . They are 7 yars old and 4 years old . They invited me go to play bascketball . Have a nice holidy , everyone ! ! daft pank is really cool The land of Touareg extends to Mali , Nigeria and Lybia too . The Touareg had lot of trouble in Mali , so they had some revolutions there in the 60s , 80s and early 90s . The group Tinariwen have members from Mali , but the leader lived most of his life in Algerian Touareg territory after his father was killed in Mali . Today , I larned cosh . Yesterday , the weather forecast said it will be 28 dgrees in Tokyo on TV . I like wtching and listening to rakugo . I wanted to tell everyone the magnificense of rakugo . . . ! Monday , Thursday , and Friday , I have a clase in the morning and Tuesday and Wednesday , in the afternoon . Today , I studied lots of vocabrary , for example the name of food and clothes , in Spanish . I want to speak English and Spanish and of course Japnese : ] Whatever it is sad to reaiize , but for the last 4 days , that I spent on this site , in my posts there was only one correction . Reacetlly I would say that spring is aroud the corner even though today it is still the beginning of February . I do n't know if this is the bay area 's tipical climate or if it was a mild winter . More specifically , nowadys the citizen 's levelof education is increasing , whichcontribues to the enhancement of the nation 's competitiveness . Besides , the ever - increaing house prices , econamic problems also make modern people feel under endless stress . In conclution , if employers can stand at the position the employees , it can reduce their stress , and at least make them feel that what they work for is worthwhile . The story is interseting . `` He liked the expreesion of trust on the woman 's face as she lay in the water unprotected , exposed and free . `` We do n't have articles , proporsitions , modal verbs , praticiples , etc . His breath was so gentle and he looked so fragile and vunerable . I know that I am a bit coucou haha but it was about . . . So , that 's it , thrauma . Japanese themselves are n't soo scared , but I am here acting so riddiculous ? I held my breath , looked straigh into the screen for hours . And , at that point , I became brave and ready to go foward no matter what ! Huamn capital has a high rate of return and positively affects the growth of the economy in spite of the obvious imblance between human capital and physical capital in China . Coutries I really want to go are places near beautiful seas . I 'm not sure that I can write diaries evryday but I 'll try and I hope it was a reaaly hard day for me because of exams anddd quiz as you know . . . Actuall , I am a little bit worried about the crowded shopping mall , but I still hope I can buy many things at a good value for my money . Recentry , the big event r finished . I thought of it last month , but I did n't decide at that time because I heard rumor of cheaper Macs . He said he went home with one of his freinds . His freind had lost an arm and leg during the war . I am late , but I am luckly . The others did n't leave without me . My favorite Ramen restraunt My cousin tought me how to write longer sentences . She is th biggest pet in my house . I can not sleep becaue of jet lag . they helped in my physical lmitation . Third , my listen ability is terrible so I am very afriaid of talking with somebody in English . Forthly , I ca n't use the punctuation in the rigth ways , so when you read my diary entry you might feel confused . That 's why I read the article diffcult . ( ? ? ) senventh , I have n't the visible goles to learn English . And finally , I think that when I get to a heiher level , I wo n't always be able to keep it up . I had two bowls of remen and some rice . I felt sleeply in the afternoon because my stomach was so full . Tomorrow , I will practice driving my car with my hasbund . So I think that in Japan we should depend on lawyers instead of citizens who are amature . I heard the Eikaiwa school keep opening . So I decided to go to the Eikaiwa school last night , nevertherless ths school was closed . Now I am woring in Beijing , and I want to improve my English . also , l think l mak some mistakes . First I got up late and when I was in a class , the teacer aske me the meaning of a word . I always think too much and hesitate when I speak in Engligh . So many peopele like Japanese ! I 'm a beginer in English . My pearents were worried about me because they thought that I may not have been able to get any jobs . I 'm happy that I have a job , but more than anything , I 'm happy that I can make my pearents feel relieved . My position is gard ^ ^ It is difficult to study two foreign langusges . My English stracture is terrible and a nightmare . I 'm wating the delivery . However this gameplayer is different from any other game . Because it can be used for exercing . Using it , I can do yoga , boxing , bowling and mouscle conditioning . However using the Wii I can exercide at home . If someone is interested in studying in Japan , comsider this university ! The coplete name is `` Akita International University `` ! passoinate and got a load of energe . . I used to read his picture book when I was a child , and I am still interested in his drowing . He wanted to see Big Budha in KAMAKUR and eat green tea icecream again . It would be more joyful if there were some pretty visiters here . I also imagined that I was a CEO of big corporation but I went to work in orange shorts on a GT bycicle . I 'm realy a crazy person . I like to play on the gitare , draw and play volleyball Peter 's stupid jokes always amuze me . When I was an elementary school student , I had homework everyday , espesialy to read Japanese text books to parents and ger some coments about the reading . My favorie food . It is used as a medicine for indian . Because during high school , students have to study under a tigh schedule . She finshed the language earlier than me . Usually Japanese do n't talk aloud about personal fainancial condition or appearance . The other day , one of my students said that he thinks the woman who likes rich men is a realistic and steadfast person , because rish people can be happy in reality . A roomate of mine turned on the music loudly and that is what woke me . My favorite plact to relax It is so confertable . My dear dother , I wish you health , luck , happiness and love . Nowdays l 'm studying emglish very hard . The main reason I am learning English is so that I will be abke to speak it . Last Saterday Night 's Illness MANY POEPLE ARE IN HARD SITUATIONS ! ! `` But almost nobody donated . So I guess the students got a few thouthand yen . please become my freind . This is a book about trips in Thaniland . Poznan 's championschip I volunteer to help organize the canoe sprint championschip from 26 . 8 to 30 . 8 . I think that we ( the sportsmen and I ) could talk about rowing , canoeing and sport overall becouse in junior high school I trained in rowing and generally speaking I 'm an active person : ) He can speak Frensch so fluently ! I paied too much tax , so the money will return to me by applying it . I belonged to english speaking circlle last autmn . I really prefer to stay in a room because I think it 's more confortable to sleep on bed than on the ground . I 'm flom Japan . I had been writing dialy , but there was a webpage error . I think we all want to pay attention to this traditional festival but we ca n't because the goverment wo n't permit it . - We think the house will be confortable . He was the only one who graduatione from university in my hometown . ( Not sure what the latter part means . . . ) Thank you frome my heart , my good example . After eating lunch , we went to household sppliance store to see smart phone . Docomo started a campaign and I can buy smartphone cheaper than usual if I buy it during Auguest . The bus is the cheepest way to travel . I like the atmospher of this town . I 'm writting from my room . Today , 18 Oktober Though I 've thoght this word means `` interesting `` or something like that because of its picture form , this word actually stands for `` Laugh out loud `` . Today I 'll just bitch a little bit about my assigments , wich , by the way , are due tomorrow morning . Let 's grab another nice cup of coffe and keep on going . Now , my father is in the hospital because he has a mental desese . but I warry about if she will not be to collapse . I 'm chatting with my finternational friend on facebook . I was so surprised when they served kimuchi and beansprouts as appetizer because they served justonly a piece of kimuchi and two or three pieces of beansprouts . afte that , when I was in midle chool , I began to learn it again . I think the lagnuage is too difficult to learn , Because , I had just gotten my results and throughaway them away . Please teach me I ca n't superate them Technique in learning langage What is your teqnic in learning the language you are interested in ? My English is on the basic or intermidate level so I need to increase my vocabulary . I do n't know how to learn a languang well . Yestoday I got a mail . It 's about a celebration in the Feroe Iland belonging to Denmark . The celebration happens every year in the Feroe Iland , some young teens kill calderon dolphins to show that they are adults and mature . It came up to me , and I did n't avoit it . Today , I 've went to Tokyo Disney Land with my wife and daughter , though the weather forcast had warned of heavey rain in the area through the day . Due to the weather , there were fewer people and we could enjoy more atractions than usual today . That cafe was so greate . I remembed the time of my middle school age , at that time , there are ( were ) two trees in my home yard , one is the peach tree , the other is the pear tree . Taean is a penisular surrounded by beautiful beaches and ocean . Please let me know the traking number ! In my opinion , you can not learn a new language or even travel through the world , wich is my dream , if you do n't know how to speak in english corectly . This is my frist time to attain Lang - 8 so now I just say Hi to everyone who study English and who are native English speakers . FLY I am now preparing for IETLS , so in the future I will show my IELTS Task 2 writting and I will be very glad if people give some suggestions to improve my writting . I am a colledge student at Osaka unive . Please corret my poor English . Thanks to Lang - 8 , people who come from different countries can chang languages and communicate with others . Just so you know , I 'm having some diffculty learning English . Till thd day , I had studied over and over again . Especially the scene where & nbsp ; LA is & nbsp ; tatally ruined . It & nbsp ; was very very awesome and fantastic . Of course , I tasted all of them out of curiousty , and the taste of ' Super White Tuna ' was quite unfamiliar to me . When people eat this fish , it causes diarria , as the oil from the fish comes straight out without being processed by the body . After I went to the restaurant , I am sure I got a stmachahe . However , I am not sure whether the cause was the Super White Tuna or overeating , because it was a buffuet - style reataurant . This fish lives in the Pacific Ocean , so you can go to South Korea or Hawaii as well as Japanese reataurants in North America . I 'd rather forcus on how to correct the problem than focus too much on the mistakes , and blaming myself and others . Hello , my wuderful friends . . What a unfogetable day ! But I have been continiously woken up by aftershocks . I think this is what is called phychological torment . Even though it will take about 5 hours by car , I hope I can enjoy it and release the streess from the test . whenever I see her , I deciede to go on a diet . on the way home , the wind hit my cheets again , and I jumped tnoto my bed . Nice to meee you . I wanted to study today , but I could n't becuse I have a bad headache . Anyway , I went to Japan 3 monts ago . I 'm worring about two things . Anotoher is the expensive tuition fee of the business schools . But I know there are a variety of options for studying in the United States , such as paticipating in excutive programs . Even though it might be hard at first , I try my best to fix my troublesome charateristic . Isnt n't it a time to change my old , slow and accurate style into a fast and inaccurate one ? And some of thr students do work hard usually . So that they can compete fot scholarships . I shouldn n't tbhave eaten the sweet bread . . Due to it , it took me a long time to get out of the aipport . I had an orientation there amd sent e - mail . I dealt with my lagguages for a while , then joinded them in the living room . She asked , `` Is this your boufriend ? `` pointging at one of the photos . She also said , `` You can find a new boufriend here ! `` Recently , one US doller equals 78 yen . I thougt perhaps that they were junior high students . Time always passes quicker than I think so I just want to have the pleasure of time being a student , and time with my freidns , whatever that is ! I just felt an earthquick right now while I was writing this entry ! ! Scarely ! I 'm a sunshine boy . I live in SuZhou . it 's a beautiful city . our city is favous for its traditional garden . we have many deautious food hel me to learn English in a short time ! ! ! Acturely , my English is not good . So , _ I came here to improve my English . I think that I am a friendly girl , and I want to get more knowlege from here . In addition , _ I want to make moer friends here . now I 'm considering which contries I 'll go to . and this vacation is alomost one month long , so I want improve my english level . I wanna send a message saying `` Thaks for correcting `` and `` goodpoint for correcting `` , but I have no idea where to click on my page . . . enjoy the time left , may you come accross your happy - rough life safely . Just 10days have passed since the massive erthquakes and TUNAMI hit the north east district of Japan . There still reamins fliquent aftershocks . This disaster must change our way of living and thinking because we realized that we have to live with rimited energy and resorces . I wonder if we will have to get away from Fukushima prefecture for a long time in order to avoid radiation , but I 'm quite convinced that Japan will rebuild our prosperitey even though it will take way too long . It 's saving grace that we still have strong unity among Janapanese especially those who are young . First of all , the color is Crimson or Red Brown . Gothic font is very clear and ellegance , I especially like OHNOkunn , who has stolen my heart since about 2years ago . He is so tarented and so sweet . I found out about this site from ITmadia 's article . They shut down the factories and laid off labors / workers . I could n't raed the book black boy yet , and I have to write this diary . AA company informed us that they launched a PC e made of full alluminium for power users . I feel the freedom and proud of my achievment . A lot of people will suffer from obesity due to their sedentarism lifestyles . Some humans will have the ability to read other people 's minds . Bautiful flowers , beaches , and it is peaceful ! Not only Bob but also Patric ! I went to hang out in Shinjyuku city and met a cool guy who seemed to be involved in hiphop so I aprorched him and he said Probably because it is diffrent from Japanese culture . My fevorite book is `` littel prienc `` , I wrote about it erliy . Also , I want tell about my fovorite season . Specifically : I am a moody person , and of course my emotions often are conect to weather . My grendparents and friends live there , and of course I miss them , and am glad see them and therd : in summer I can do evrething , that I could not do in all year . Also I like automn , but I like it only in Peterburg , because I am sure that our city is the most beutiful , when weather is cloudy . Hello to all young gentalmen and nice ladies . Have you ever thought about the ' tears of sorrow ' of all mothers that lost their sons in the many wars that have no meanigs ? `` The fandamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by In the battle , one mighty country planned to attack the other two countries . But the two countries formed an alliance with each other and they plotted , schemed , and used geographical advantage to finally win , even though the ratio of the soldiers in the one migth country to those in the other two was 800000 to 50000 . Becausee I thought my bad headache ( I comletely got well from my headache ) Student numbers in the coutryside have decreased , so schools have been closed . Even though there are no students anymore , local schools become new community centers for the villagers . Her words imressed me so much . Recentry , I came to like cooking . First , nowadays fast fastfood is very delicious . But I did not think that it was a dall , because it would look very real . I reviewed the English doucuments written by co - workers . Though I was not sure that a naitive speaker could understand these sentences , in Particulary , I was confident of / about the prepostion and article . Then I wil write natural sentences for native speakers . Until the medicine for yellow fever was invented , there were hundreds of people dying from that desease wich could not be cured without drugs . Luckey him ! I do n't know why . . . Maybe it 's becouse it 's 35 degrees C and you ca n't do anything outside ? I guess FMyLife is a serivce in the USA . Muggy agternoon . Actually , I was hangry an hour after and ate a bowl of noodles . If this continuts , I think my friends will not recognize me this coming vacation . There were three times the people than normal , you could n't even move a little step in the aisle , and the air was dirty and frowsty . Luckly I got one , but it was a seated ticket . He was a business man , and has big falimy with 4 brothers and 4 sisters . Just a typo My training cours I had a training cours this summer and I worked in the Councul Department . When I first came , I found it suppotive . I was happy becouse I was not afraid . When I did n't unterstand something , I asked for andvice . He plays basketball with his frients after school every day . Last year , when I walked around my home , I noticed a small signbord of a Shodou school . Aithough I am an English major . Now my grade is brown belt , the grade befor black belt . Japanese custamer who had participated in a travel tour requested compensation from the airline companies . The clsss was an elemtary theory class about DSLR cameras . I try my hardest to write my diary whithout using a dictionary . bacause it remains so long in my memory . Mouse likes cheeze . Honestly , I forgot how to spell `` cheeze `` . . . I have a good impression for ths movie . Unfortunately it do n't make ( manufacture ) make - up prodoction . I knew designers normally need enough , confortable space for not only their work but also for their sensitivity . ( Sensitivity ? ) [ Help me OTL ] Part time jop : ) What 's OTL ? I wokred at a one day part time job as a waitress for an ltalian restaurant . I did n't work much because the restaurant manager is my neighber . so the manager gave more work for the ohter part timer to do . Well , it seems like nobady wants to comment on my diary lmao . You 've might have heard of the title because this book won the CARNEGIE MEDAL instead of Herry Poter in 1997 . The sea means goal for each peoson . We hava a small garden with lots of plants so Poeple who do n't know manners like you deserve to die soon . Today , I have started `` Lang - 8 `` because I found this site in a colum in today 's newspaper . I called our gus station . This ceremoney promotes hope , dream and peace . I heve been there five times , but it is different colors every year . Saga is a nice provernece . I live in Tochigi . Saga is farr away . In Sasga , I do not have an Internet connection . thankyu in advance . An explanatioin of ' MOE ' Tashiro was arrested again in possession of cocain . pllen allergy ? Once I started studying Economics , it turned out to be intereting . Homecomming visit I will read a vocubulary , and read how to write letter , and how to read very well . We have n't practiced our 3 songs in the stadio together . To be honest , I dont n't want to be part of the live performance . . . because there is one song that I do n't want to sing . . . We will practice in stadio for the first time to prepare for this live performance because we have no time before the performance . It was reflesh . Because a dog is more cuty , pretty and it is more loyal than cat as well . For example , mastervation . . I bought a new badominton racket yesterday . I like needlwork very much , so I was excited to see these many shops and materials . Of course , most of the visiters were old women : - ) ) I knew his anwer . That was what I thought . So I registerred . Maybe it 'll mke me poor in the coming 4months . I spoke with my friend who cames from England . . . I am proud that I have such a friend , who knows alot of English and can travell to England along with other countries . Now , I am woking at LG Chemical Research Park in Korea , I designe control logic design at graduate school , my mojor and I ca n't learn about my major . but it is an electric vehile and it will take a few years to I 've alreay had a can of beer so I want to go to sleep . That really makes me feel embarressing , I act like a retard . In the past I seldem felt in the same situation , I could go straight to the answer or explain things in reasonable way . I told him the problem is that Korea 's [ / RED ] educational poliscy focuses on the grammer , rather than lisning and speaking . For instance , there are more than 50 dialogs in Liberia , and that 's why they have strongly felt it nessasary to lean English . I am a camtain of the team . After playing footsa , He was navie and self - centered The prescription contains liquorice and other kinds of medicated hearbs . Anyway , todaty was too cold for October ! My faverite sport is basketball . Because of vellaball is not popular and difficult to find the space to play . Baskeball , as well , is dificult to find the place to play but I love it . Yeah , it has became a fun way for me to learn English , which I can appreciate their wonderful content and learn some unseem structures of English . Next suturday , I 'll go to see a consultant on a studing abroad . Many words I have forgotten . When I read books , many words look very familier to me but I ca n't remember what they mean . I am not romantic , so my wife alawys say that I should be more romantic . On holidays , he walks aroud the riverbank for his health . I really appriciate it . After work , I wnet to the only Daiso in Canada . But here the price is twe dollars . I felt reluctant to buy some sutff . But last Wednesday , I learned by Internet that Kagrra 's concert was canceled becouse there was a problem with some visas . U _ _ U I have to take my tickets back tomorrow , becouse Kagrra 's organization will give a refund . I need to take over my team leader 's job beacuse she needs to take some time off to prepare for her baby 's arrival . Every day , I need to forward her email to each factory in the morning and help them to slove their problem . I bought many things , such as a vacuume cleaner , a refridgeator , a table , a bed and curtains . . . Imoressions of America part 2 The budget of the New York Yankees is begger than that of North Korea . However , I wo n't give up until I can swim the buttergly stroke . Quiero ( Quierro ) ir a Espana . My teacher sent everybody the e - mail , which said `` If you get this email let me know by replying to the following addrress : Anyway , as I checked it just now , I found 5 e - mails which should be sent to my teacher only but were actuallly sent to the whole class . However , not all kinds of miso are good for eating , only misso free from artificial additives . I hope next time the weather will becom good . The company recentry introduced a new system whilch will allow me to withdraw the money from my bank account . I bought yoghrt at the supermarket . This bacterial fermantation is sour . The Temparature is high . Seicomart convenience stores offer a few kinds of reasonable house wine priced around 500 yen , whitch tastes good enough to drink at home . The restaurant had different kinds of Beigian beer . I drank three cups of Beigian Beer . Beigian beer is sweet . I asked an employee why Beigian beer is sweet . This tale is nothing compared with the occidental classic literature , maybe because those tales is about danish florkclore . It is a mixture of mistery , fantasy and rarety . `` Powor of music `` is a new event in Tokyo Disneyland . I ca n't sleep because I 'm loney . Pls be informed that this shipment will be deliveried as LCL via Hongkong . Schedule as below for ur reference : Between you and me , there is a special and magical way that if you do not consider the above things and write a fucking boring essay whether it 's long or not , your essay will be colorful with red and blue with warm comments within few minutes : just show a picture of your pretty face or of another hot woman found somewhere else online such as unknown hot celebrities . Maybe I do not want to learn english at beginning . but I will try my best to learn it in fruture . my glish teacher taught us many words , but I can not remember them and use them in the correct way . what can I do ? Becouse my friends studied for exam in this summer . At that time , he faced demotition from Ozeki to a low Ranking . Second foreigh wrestlers dominate especialy Mongolians . I sent a music box to her by express sevral days ago . We always say `` happy birthday `` when it 's somebody 's birthay . 2 policemen were killed , 55 policemen are missing , and 4 policemem are injured . The food is not as delicious as I expectaion . The food does n't taste as good as I expectaion . She is not as beatiful as she appeared on TV . I have great expectaion as much as I try . * I do n't want to dislike my coutry like her . My mother 's native lanugage is Japanese . We happed to meet a Japanese tour group . I asked someome of the group in Japanese . I was really suprised by his behevior . I was a littel bit shocked and sought for the reason . Did n't my Japanese pronuctiation sound like native Japanese ? My bad English was n't understood by the Perucian , I thought they had High - mountans disese . I want to go to Peru agian . I have a very nice memory of it , ecxept for the Japanese torists . I was impressived ! ! Today I feel so blue , I find some knowledgy I learned before have completely gone . Besides , as this hospital is highly specialized in cardiovascular surgeries , I 'm able to improve my skills and develop my carrer . Why ca n't they drive more gentlely ? Now that I 've learned that there are potholes on the road as well as ordinary minor cracks and holes , I will pray for the safety of all the dfivers ! So I remembered about the time I chose my job when I was a ager . I dropped by the library on my back way and I brrowed `` One Piece `` . I used to read this manga and I thougt that I wanted to read this manga again in English . Since I did n't know anything about actors , I 've just looked for the actor who played ' Halord ' . The Notebook feature lets you easily review those worthful notes . Altogether I started to pracice sports becouse of him . Today , when I was about to get in my car , I found something on the glound . Then he recommened me a fortune teller that is famous , Indian and accurate . additionaly they were right for me . fortunely , lots of the thinsg she said were good . It was a wonderful experinece for me ^ ^ I quit smoking in April of this year , but because of too much stess I started again . I know it 's not good for my health , but somoking after having a lot of stress is beyond expression . when I surfed in Japan I could stand up 1 time , becous it was a long bord and the waves was small . so I brought a short bord , it was so dificult for me . becouse it 's very boring at my place . it 's very beautifle . I wanna know why but I 'm afraid to hear the turth . Checking my diary ( not all of them , but most of them ) , I found my misktakes are mostly with `` a `` and `` the , `` which many Japanese strugles with when they learn English . I really appreciate people who suggeted my journal . Another doctor who did the plaque removal is also quite skillful and careful . Major quantity of the books like taxtbook that I used to read when I went to school . Eijirou is differrent from usual dictionaries . So if you have any problems with your pc or networks ask me ; mayby I will be able to help you . Well , after I passed an English exam during the secound year of my studies , my contact with English has been relly limited . I am really nevous about the toefl test . Not write the sentence too long , Not chouse an answer so quickly . . . . . . . . I am from Vitoria da Conquista - Brasil , I am 20 years old , and I am a studenty of tecnology . My wife and I celebrated it with our two daughters at a small japanese resterant . Frankly speaking , I compeltelly forgot this special day until this evening . We went to Seoul tower , some shurines , souvenir shops and so on . Bangkok Turmiol Recentry the iPhone has been popular in japan . When Minko saw him , she was jealous of Ohamna . I startde Lang - 8 today . So , I stady English very hard . After a horrible / terrible / awful economic recesion , many contingent workers have gotten fired which means they lost the way to make a money and live . The system was very simple , first you sign up by entering your parsonal data . I will go to a bookstore , and buy some books and magagines . I know my weight , so I can be very carefull about what I eat and drink . My goal is to lose 3kg , so I have to do more exersise . . . we will make takoyaki which is a tipcal Japanese food . frist day - Pusan Everybody got merried . I did n't get merried becouse I was young . Because the weather is nice and confortable to stay in . The main character of this story is a docter . I 'm Japanease but I live in Beijing present . I need to be eble to speak English and Chinese as soon as possible , so I decided to start to write dialy in foreign language on this website . and if you know any populer or funny slang words , please teach me . A meat - eating type girl is agressive toward hunting boys . A grass - eating type boy is non - disagressive towards girls . question 2 : how to pronounce epidiymitis ? The white bridemaid : `` That 's disgusting . The white bridemaid again : `` Who wants a gargoyle , or whatever he is , at your wedding ? `` The white bridemaid : `` I do n't know where to look . . . I 've never seen bridemaids dancing at a Chinese wedding . English exam is made of vocabulary , analysising sentences , listening and so on . . Analysising Engilsh sentences exam is very very difficult to me I 've been through the hardnship of quitting . After losing , a bad tast was left in my mouth and I felt an urge to try to get even . hot pach because he is the most populer actor of ' Pirates of the Caribbian ' . It started a few weeks ago when my little brother got dragged to a dance cours by his friends . Without a partner , I guess ballroomdancing dancing is quite hard . . . So , let 's open our hearts , in order to be freiends and to make progress . Frome . I believe the uniforms shown in the picture appear to be orenge and bule . I must speak engish becouse I want to travel to other countries in the future and English may help my in my future job . In th afternoon , my homestay mom and two gusy came back home . We had no script so we were just listening ank wacthing the movie . Although the situation with radiation ploblem , derivary delays or power saving did n't change much ( it still is bad ) the life of people , who live in less damaged regions , such as Tokyo , seems to be slowly coming back to normal . In the morning , While I was wating for my friend to pick me up , he mailed me , saying `` I 'm drunk and feeling bad , so please come and pick me up `` . So , that place is always full of poeple ^ ^ I want to make it more significant and emphatical . but for me that is not enough , I must make more chances to omprove my english skills . I wrote a letter to them to ask about volanteer . . . . I guess shi must be around 27 , right ? I did n't contact the volanteer stuff after all , but your advice was very informative . Recentry , I read a comic . It was my first trip abroud . I was asked about the Tunami by some people . He reccomended that I drink Kava . I think most Japanese are polythistic , who are not very religeous . Please have some if you have chace . I 'm 28 already . . and I 'm going to plan my future life in this year . . something I sak myself . . . what do I really want ? ! My job is teaching English at pravate school in Japan . They were able to open the lock quickly , but I was shoked and disappointed as I had thought they were old enough to decide what was wrong and what was right . All my family was at home becuse of the snow . I 'm looking forword to communicating with everyone in English . I am interrested in this movie 's subject matter . I think that it would be horrible to konw death . I am studying bioligy now . But they wathed it ( not only the first part ) and maybe even read it . These people go to the cinema and see this movie just to laught , to make funny comments or to rephrase dialogs of characters . For a long time I belonged to the first cathegory . I desided to benefit from this action so I had to read it in English . But I was so excited and glad that I could read in English anh understand it that I 've read all of the saga . Exept for poor language ( the Russian translation is even worse ) there are lots of Mary Sue and out of character stuff . Anyway I 've read four English books per mounth . In the practice mutch , I got punched in the stomach and fell down ! The instructer said that it was not so strong , but I could n't speak . We lay on our backs while the instructer stood on our bodies and jumped three times . Today , on Sunday July 11 , 2010 . , half the members of the House of Councilors will be elected for three years . S , China , North and South Koria and all of the other countries around the wourld . I also want to go aborad and communicate with others more smoothly . Today I met some korea friends . I do n't think that korea food is spicy . My favoriot is toppki though . Summer vacation is around the conner , Most pople are starting to make plans . It blows from East - NordEst , and it 's a really strong wind . In this Bora blows with a medium speed of ovee 100 km / h ( over 55 kts ) , and the highest gust reached 188 km / h ( over 102 kts ) . . . While I was walking , going to the university , a tile fell about one meter from me : it could have killed me , if I just were in the wong place at the wrong time . Some of them did n't sleep last night , becaure Bora makes a lot of noise . We 're accoustomed to that . . Our ancester have a proverb , stating that we dependon our parents in the home , and outside we dependon our friends . The relationships betweenoneself and friends is n't to make use of ehch other . Some people will make friends with you not bescuse he or she like you , but bescuse you can help him or her in some way . I 'm in low spirits now becuse I feel that I am being ignored for this reason . I will study Enlish at Starbucks today ! The artcle recomends to take notes of every idea that comes to your mind , The reason for this is so that it gets completely aborbed by the skin . My birthday was two manth ago . My mother made it and it was delitius . I ca n't see the lisence number or even a part of the numbers . The pollice ca n't pick the criminal up . On second thought , she always asks people she meets about therir & nbsp ; jobs because she is concerned about her own future . I dont know why smart phones are so popular among people , but it seems that they have many atractive functions such as Skype , Internet , or many other applications . However , this situation is only in tha Japanese market , so what about your country ? Especially , gratin with chestnut and cream cheese , which was very yammy : ) The soy milk pudding and tohu donuts were delicious , too ! So when we have practice for all of the mambers , I have to plan the practice before we start . And please try to watch it if you have a chasnce . I replaced the sentences in the grammer book with my own sentences . Today a debate occurred bwtween my mother and I . We started discussing the topic from the minute I stepped into my home until bath time . The topic was on my dressing stype . Then she said she felt confussed and disappointed about how I treat my occupation with my whole spirit but do n't care about my appearance . I know it 's important to hold on to the precious period when I 'm just in my twenties , and that 's just what my dear mum wanne me to do . I do n't wanne let my mother down . Another reason is that , someone used to say that she thought I look the same as Aoi Yu , a Japanese actress with a pure appearance , and I wanne keep the simple and pure impression in others ' minds . I have just arrived ( or I just arrived ) in Adelaid , austrailia , but I am worried about my poor English , I do n't have enought money to keep travelling , so I just found a part time job in Adelaid City as a sushi roller , I will be really greatful . When I arrived at the hotel and unpacked my baggages , I went out with my sister to take a stroll along the river nearby . I am not good at listning and writing . If you want to relieve your stress or you feel your daily ruten is boring In order to enjoy your trip , you should consider your safty while traveling . You had better leave your valuables and expensive jewelry in the hotel when you go out , and you should hold on to your bag . In Pusan , you ca n't use traveler 's chequens . If you want to enjoy that tou should choose the ones already fried . my costume was a baby , and many people laghted at me , and took many pictures . Frankly , it 's not unuseful and inconvenient . Even it 's occure only at the first meet , they may get tired of hearing that . It is very convence ! ! Recentry , I have been playing a game a lot on my DS . It is very fun and we can learn Englirh ! ! _ This game is very nice ! ! _ COOL ! ! Monoris ? At night , I drank with my friends , which made me forget my tireness . I 'm a little busy untill this afternoon . Even though I have the official working holiday visa , I could n't get a so - called `` Ausiie job `` due to my lack of english proficiency . As the title sugests , I 'm new in this cummunity . Whether feeling happy , sad , depressed or angry , music is allways there to support my mood ( unless my cell / mp3 player runs out of battery xD ) . I signed up for this community because , obviously , I want to improve my English writting skills and I 'm hoping to get your help . I know this is a terrible introduction but if I continue writting , you 'd have a LOT to read , you 'd get bored and finally you 'd close this page without correcting it . I 've been thinking what I should do here in Japan , because I always had some goals to achive when I was in Canada . That 's why even when I 'm doing the same things that I 've done before , I feel it in a diferent way . I 've pratically never skied before , but I 'll take some lessons . Our four girls really had a wonderfor time there ! ! ! TESK TWO - Comparison Composition Singles can do everything they want to like trevel , buying clothes , working for a career . I am a writer , but my story is unfinshed . . . Anyway , someboday help me please ~ My pronunciation is poor and sounds like a bad hollywod movie with a Russian Ivan speaking in English . I learn Japanese bacause I 'd like to go to Okinawa to visit a karate master whose name is Morio Higaonna . Tokyo Malathon My big brother participaterdin in Tokyo malathon last month , which is the one of the biggest citizen races . He finised at 3 hours and 6 minutes . He has been really good at running long distance since junir high . Thet were n't in this game but the live game was good ! These taxis startid to run in our country . I bounght an LCD television made by Sony today . A famous Korean acter committed suicideby hanging himself with an electric cord . The saddest part is his older sister had committed suicided Some journist think he had depression and that he was suffering under his sister 's death continually . Can you arrange the stuff , after you clean the refridge ? I was shy because I was afraid of making a amisstake . Today was my first working day of 2010 , but I felt sleepy the whole day today because of my bad habit of staying up very late during my New Year 's holodays . Charlie has never enjoyed talking , and hence , he developed a brooding look - surely his eyes were those of a man who carrt the weight of life . I hope that the bueautiful country goes back to normal soon . After I arrived in Tokyo last mounth , I have n't had a chance to meet and talk with people of Engllish countries or others . I know many foreigners have already left Japan becase of the maassive earthquake and Tsunami and radioactivity . Besides high school English class ( wich is so basic and has the same old lessions every year ) , I 've actually never studied English officialy . So I 've desided to get a little help ; ) I hope this thing helps me to improve my English . It was a small tidybear . I 'm from Brazil and now it 's 5 : 55 AM . I was able to find more information about an intership . I would like to go to Toronto or Vancouver . I love ice and snow , but I never see it . It would be a dream although I do n't speak English that well , but I love the English culture , the language , and in Canada the people speak English and Franch , and it 's cold . This is my inaugural ( first ) daialy entry / post on Lang - 8 . 2nd of Augast was my 35th birthday , I 'm going to write daialy on Lang - 8 as documentation of my time in London . I had heard about it several times before , but had not yet visitted . Today we will go out to buy the ingredients for cooking buritto . We need chicken , pita bread , mashrooms , mayonnaise , and hot sauce . It 'll be my third time to visit there , but her frist time . I 'm looking forwad to having some nice seafood . Today , I particiated in our laboratory seminar . I 'm so neryous . . . . I am a student of fireign language studies , majoring in French . One week ago , when I was home , a strange man came to my appartment and said something like this , `` We opened our new shop in this neighborhood , and we are giving away some presents for every house around here . But I wonder whether I should buy a mobile phone with an intergated music player or an ipod . The price of a new Iphone 4 is from 16 to 18 milion vietnam dong ( equivalent 800 - 900 USD ) while my salary is just 4 million vietnam dong , less than four times the price . My famiry live in Fukui . I like trvel . So I want to stady English . Do you know SETUBUN ? Today is SETUBUN in Japan . Today is Friday the thirdteenth . Today & nbsp ; is Friday the & nbsp ; thirdteenth . I do n't know why this year has a lot of Fridayy the thirdteemth . He adequetely countered a judge 's budget screening 's questions with data and passion . His opinion and atitude showed the essence of the screening . it has dubble structure . I feel Japanese salt breese when I eat this . I watced the movie frozen with my family . Nobady noticed . horror and suvive movies . Now I 'm a junior high school stedent , I do feel my English is poor , I wang to find a foreiner friend to teach me English . I am at home with my father , uesually we did not agree with each other Maybe because we have something to talke about more . My televistion is broken now and my computer is going to be a problem too . My father took the televistion to be repaired in the shop . the first of the rima , Peru 's new urban air purifiers called `` Super Trees `` was recently installed at the busy intersection next to a stream of a congested traffic . It was installed by a local beer distributer and created by Tierra niestra SAC , a perubian green technology company . The Tiala Niestra says that the purifier uses the liquid filtering process to observe the carvbon dioxide , equivalent to the actions of twelve hundred trees . the creaters claim the super trees removes dast , germs and vacteria from 200000 cubic meters of air per day . The Mayor of rima 's district of SurquilloGustavo Sierra says the super tree could help the contaminated city across the grobe . `` It has taken us six years , six years to plant 1200 trees in Surquillo however this machine help us greately to improve the air we breathe . `` He intends to install another 20 air purifiers in this district . Peru 's unbudsman office reports air pollution levels in rima are nine times higher than recomended by hte world health organization . in a report released by the Peru 's national council of the environment , about 80 percent of the pollutants of the air caused by old , ill - kept moviles . Today was the happist day of the week . Back then , hundreds of thousands of years ago , people telling stories about thinfs they had done earlier that day while hunting . I already checked some houses and found out that some houses have private bathrooms and kichens which only two people share . As a result , we have seen spectacula congestion on the highway . I might have that tendancy too , because I sleep more in the winter season . And then , I said `` I am being lazy . `` with a big smail . In this entry , I am going to write about `` time - merkers `` again , and also a few other things , Some possible sets of time markers and tences are listed here : URL I did n't know that there was Lang - 8 , _ a wonderful site , which helps us make friends to correct each other 's writting . Tommorrow , I 'm going to the US for 3 months . Nowadays , Shanghai becomes one of the most developped cities in China . I was realld curious why she never would help me know more . or encourge me , insteadbut opposite she of always mocking me . Languege exchange site People sometimes contacted me , but they do n't seem to have read my profiel at all . He told me that he realy wants to learn Japanese and he would like to know how ? Then he said he thought the easiest way to learn another languege is to have a girl friend who is a native speaker . I watched saccer ysetrday . Recently the weather is weird because it 's suddenly hot or cold , therefore I cought a cold in few days . I feel people aare laughing more and a lot of plants are in bloom when spring is coming . Since Im was born in a tiny town which is quite a countryside with a lot of rice fields , I like parks with a lot of nature . I can ? , , , Was it a slip of the toung ? There were nine babies in today 's class and Konoka was the yongest among them . my name , special hollyday for me , about a photo and so on . Today is a boing day . but ifeela little groomy . It destloy my office backyard . castmer come to my office . My friends had said that Spanish is one of the easy languaes to learn . Nooo , I do n't think so . She said my questions were about gammars , which I did not study a lot . But , I did n't want to ask the professor , so I made her study what I wanted to know German grammers . If you are interested , the short film is avaliable on ' Youtube ' , with English subtitles . Finally , my skateboard broked into two pieces . The tytle means `` Save my earth `` . a Japanese writter , in 1989 . My roommates are a Singaporian and Indonesian couple . There are many people who are good Englsh speakers . However , Im also have to study ! Studying a foreign languege is very interesting , becase it makes it possible to meet lots of people . I would like to meet forein people and have language exchanges . I met my friend at a rastaurant and we ate sushi and wheat noodles . In that program a woman takes a plane to Japen to just eat some sushi and wheat noodles , then comes straight back to Korea . My friend was impresived with those foods , ( not the program guest 's action ) and she wanted to eat them also . Because of that we went to a Japanese rastaurant and ate them . We had often talked about yakiniku and how we would like to gorge ourselves on griled meat . I read a report written by a web desiginer on the web . There were many peple in the class . After that I wathed a DVD at home . So I left home earlier than our arragned time . I am writing a yacky story today . This afternoon , we went to the pymnasium for PE class . Now that I have became a college student , our PE class is diferent from what we had in high school . My goodfriends and I usually played badminton together to free ourselves for we all feel great tired at that moment . My goodfriends , I miss you so much ! ~ Oyama in Miyakejima , the famiry and dog 's story . my car was a little bit ented in a collision . I met a lot of frieds who had left my company a few years ago . And what 's more . It 's besically all free ! It 's a typical HK moive A confued relationship between the robber and the police , good action and cool guys . I 'm going to play valleyball with my friends tomorrow . I used to play valleyball almost every day when I lived in America . Asking some English quetions ! ! For example , the most evident and , maybe the most dangerous , problem I noticed is the fact that Italian tourist trade thinks the country does not need to make efferts to increase the number of visitors ; aspecially comedies and dramas . . . I want to visit France , aspecially Paris . The Hard - Disk has some dameges . I am interisted in learning English . les 's start . The weather is always different in this city , five minites ago it was sunny , then it suddenly started to rain . . . Just like a chameleon . Next week I have the CET test , there 's a lot of pressure on me , and with this horrible weather , it made me sick for four days . Beacuse it 's so hot in the dormitory and there 's no air - conditioning , I had to sleep out outside of my room . - The concept of cowerking is inspired from parties . I read an essay writen by Haruki Murakami . I was surprised that he determind to write , when he was 29 years old , in 1978 . I usually do n't drink beer but I drank a beer yesterday because it was my mom 's barthday . Because it is dengeous for girls to go outside drunk , and I do n't want to be seen by my freinds . I like the hot atmasphere - - - everyone is surrounded by the rising steam . Now I am studing English very hard , and next year I 'll resume studing French . When the temperatures of the oil ( or pot ? ) is high , addthe eggs into the former pot , and put the rice leter . Put salt immediately at the same time . Here in Vancouver where I live is always sunny specially these thesedays . Even though the bookd is incredably famous across the world , it is n't for me . Maybe that 's the reason I only watch a moive instead of reading a book these days . `` Shawshank Redemption `` is the one of the short stroies in the book `` Different Seasons `` Actually , I 'm already facinated to compare the story in the book from that in the movie . OK everything will go on , I will graduate from college , then I have to find a job to take care of myself , but I still have no confidence , who can give me ? who can do it with me , who can see tomorrow whith me ! ! I used to be very close to my yonger sister . Now we are marriaged and I have a kid , but she does n't . If I pass the exam , I can learn more langage there . + Yei ! + Now , I study Engrish . Please teach me Engrish ! To stop him from talking more , I constructed a funny answer for him . I said , ' I wanna a handsome boy , just handsome , and I want you find himfor me , I know you can help me , remember call me frist when you findhim ' . Album 's bame is Abbey road . We go to the temple and pray for our family 's health , heppiness , and world peace . Thease are delicious . What does `` adress `` mean ? She is a housemaker . We can even use interet when we 're outside with this ! By this time , four people have been killed in an election campain . frist diary ! I 'm 19 years old , and I 'm a univercity student majoring in English . I was moved to watch thier childground movie which they made . I tried to wirte something , when I first found this site . I thought I would wirte any everyday happening , but it does n't work as I expected . First we had some argments , because we were a big personality difference . After some argmennts , I learned I should n't object to what he says then I wo n't have argmennts with him . Since I did n't say my opinion and I just listened , we did not have argments . I do n't know what should be the most important thing . . . I have many probelems to solve . I was touched and surprised by the sceen : there were thousands of fireflies in the valley . They said that cats have nite lives . I think it 's cool . When we began , I found that his skills were more advanced than half a year agao , and was beatn 4 times . I felt a bit nervous and some careless mistakes when was shooting . Both these soups have diffrent tastes so I enjoyed both servings of Oden . Thanks a lof for reading my diary . A few days ago , I went to the airport to see my fridend off . firt time I 've heard many times that weiting English improves our Enlgish writing skills , but I I am a very lazy person and I am very very busy . I decided to write my ( or this ) diary in English hopely everyday . When I was a junuor high school student , I had a variety of tropical fishes . Then one of the goldfish always used to jump out of the bucket , and I would queckly put her back . Tomorrw , I will go to the theater with my classmates . Anyway , commercial TV stations start new TV shows from this springall . I watched ' ' The Matrix ' ' on TV , which was rebroadcasted the day befer yesterday . Moreover I want to communicate with many peoole in English . We always laught with and without reasons . It is not tru . The coffee is noot good yet becouse I am still unaccustomed in making coffees . I 'm really lokking forward to meeting them . ( Sometime the company adds oil or negitoro to fake negitoro ) I felt unconfortable . . . I want to fill my carrender CBS on Youtuve . Okay , keep your eyes on those who want to use their `` airms `` . The tests were quite difficute , especially listening . t , When I look back those days , a pen - pal was Japenese girl who had similar ages with me . I am writting in response to your letter . This is a great oportunity for me and my career prospects . I need to get a high level in English because it 's an essentil skill required for working overseas and getting a good job in a company . On the other hand , I live in place where weather is warm constantly all year , but I think it is diferent in Manchester , maybe raining often , I would like know it , to be ready with appropiate clothes and shoes , when I get there . After the Gibonites surrendered to Joshua , the group against Joshua turned to attack them . In fact , the Gibeonites were one of them before , but now they were under the Israeiltes . I want to syudy English ! Peniciline , Innovation of the Century . The most benefecial innovation of the century was in the health area . It is peniciline , and it was discovered by the Scottish scientist and Nobel laureate Alexander Fleming in 1928 . Furthermore , it has continued to innovate because peniciline is a parth of health studies with the focus of keeping human lives . Such a focus , to me , is the most important area in human studies . Finally , this antibiotic has actually been used everday in places such as hospitals , cliniques , etc , to save people . Therefore it can be considered an innovate , as it is surely a unique and great discovery . I feel luckey when I see red sky both morning and evenings . But in my opinion , it 's their promblems . Every forigner working here earns a higher salary than the locals , even though they do the same job . The Goya plant has rough skn but when I touched it , it felt greasy . Just fun . My friend geve me a Goya plant yesterday . If I keep it in my regrefrigerator it will change to a yellow color and a very sweet taste . today I tried calln method for the first time e - mal is : mf329 @ msn . One of my friends recomened a dvd . It was imtereste for me to watch this one . Because I study lisning and speaking . She would like to have a baby , months ago she lost one and she was realy sad . She will be fine . She has the love of all the Brazilian people and her husband . I will practice the violine . So I have time to play the violine after so long . But I have to tune my violine before I play it . I had a very importante test today and I was very nervous ! The wheather was nice , like early summer . It seemed like a bad endress loop . I think I am just an intolerbly lazy guy . After supper , I took some medicine so I hope it 's gon to be better tomorrow . ( I hope so ! ) Today is the scond year and week I have studied at this college . is more importent and the savor also can be forst . But I do n't know how to forst my interest . Some kind - hearted people brought the cat to a hospital for animals , becouse the unlucky animal was very thin and had many wounds . I want someone who will correct my English strirctly . I live in Hoddaido which is located in nothen Japan . Deer rice cracker are sould in Nara park for one hundred yen . The deer will paster you violently . I buy big pizzas from Costoco from time to time . And I also like to buy bulgogi bagle . Bulgogi is a seasoned beef dish cooked well - done . Anyway , Costo has been doing it in their own way , and many Koreans find this appealing . I am worried about the blood test result this Tursday . He had n't neither problems nor consern and was very happy . Prease make friends with me ! Santiago is famous for Christian pilgrimates and its universities , which are very old but are still attended by many students . In London there are millions of people and cars , so the polution in London is much worse than in Santiago . The old city of Santiago is as impresionant as the most famoust buildings in London . One of our most popular foods is shelfish , and there are a lot of restaurants near the cathedral that serve this meal . Now I am living in a cucumber farm house with Hong Kong friends and some mala friends . It is later than before , so we can wake up late , happly ! If we have any days off , we will be wery happy . People born in the Year of the Tiger are sopposed to be generous but stubborn . Are there any bliefs in your country about what determines your personality or what your future holds ? . 2nd , my baby 's new car , the Prius Toyta , which is stained much . I did n't ptantice much . At least , I want to eat with sombody . My favorite fruit is pinapples . Anyway , I like pinapples . I 'd like her to be responsible for something bacause I believe that makes her feel a sense of oneness of family . ( minor ^ ^ ) Just have to live for now and preparate for the future . Going abrod . . some friends have gone to forine countries to learnd English . . . but I do n't have enough time to go abraod . . and other uroup cntury ( nations ) I have to accpect it . Now my husband and I are watching the game on TV and cheerin ourt prefectural team . I 'm ftom Osaka . Welcom ! Because they are in small gages all the time and walking time is once or twice a day which is only ten or twenty minutes . because I have never thougt about it like him . I know that it 's gon to be difficult to keep up with this class but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . But when I talk with her , she can undrstand what I mean . From an expert 's standpoint the key to breaking a victious circle is to change the established patterns . At first , I felt a little down , but I like it now because my frends said it looked nice : ) ) I am a universty student in Japan . I can teach Japanese to people who want to laern Japanese . Starting today , I want to write many entries in enlgish . . I 'm in the middle of developping a software program . My favorit place is the road near Shukutoku Univercity . the titles I gave the texts are n't really creativ , are they . . * laugh * And I hope I can improve my englisch skills this way . Continuance of the Tnabata story . My favorite magazin is Arakawa Under the Bridge . Arakawa Under The Bridge is about strange people who live under the brige . But I felt frastrated about failing a stunt , because it was a big challenge for me . . . . when we talk about the hacker , we think of someone who is tring to get some secret information from the government or someone who steals the bank acounts of the rich . I ` m aifraid I can ` t answer now I 'm encauraged by this news . They throw a hot , 400 degree stone into a soup to boil it . ( yummi ) They tought us how to dance . I took the TOEFL this morning , and I found that my English typing speed is too slow , despit my fast Chinese typing . So I made a dicision during the test , that I must find a way to get more chances to type English , so that there is possibility to improve it ~ Maybe I should keep on blogging in English . The academic lectures seemed difficult to me , and the writing required too many words . The words used to write are long and unfrequently appear in daily life ~ So I just chose to give up preparing . Why are you afraid of a challange now ? At that time , I had n't visted other countries before , I was very excited . I made plans for traveling untill late at night . As I was n't good at Japanese , I had to use English to convers with others . My old friend introduced me to his Japanses friend - Yoske . The dolls must be temporarilly displayed . People belive girls will marry late , if the dolls are The term is from the middle of Febrary to the the middle of March Afraid of my furture But I 'm afraid about my furture . I want to find a good jod . This is a Japanese animation 's titlet too Once the petals of one flower blossmed together for a short time . I wached the animation film last night . I am a beginer to this site but please help me to study English and in exchange I will help you with your Japanese ! ! I am eagerly waitting for your messege > < I have gone to an English languageschool school for 2 months . So , she wanted me to be in an arrenged marriage . Actualy , she did n't like him at all . I must be possitve , active , and attractive in Tokyo . At last , I hope erverything will be improve ! I think she has an energish mind . I have to comunicate with you , so that my elglih will improve . My enlish is not very good and I 'm not confident with my ability . I wish I can make friends with all of you guys and please help me to correc my errors ! Thank you very much Even thogh I was in America , my English is still bad . raise theirself children , thus consumer decrease to expend . To be frank , I 'm not so interested in that part , but my frends , especially men , are interested in it . It is important that people in the vallry want to move the tree , and they do it themselves . It was relesed in 2003 . Today is a holiday , which is the Japanease flag holiday , What is your favorit food in summer ? My hoby are listening to music and playing volleyball . I will graduate from shcool soon . Ionly have 8 days of shcool left . My shcool is very strict on maners . It causes me a lot of stesses . . . But shcool life in 3J is very happy and funny . First , I could n't figure out what happened , but it made me more exsiting . I did n't know before marridge , that men have a party with their friends , we do n't have this . I want to wacth more funy movies . I am goint to see it tonight with my family . The typhoon left last lastnight . Often , I visit English websight tomarrow is my last English conversation exam ! From now on , I must write a new enrty at least once a week ! when I hear someone saying that , I frawn and get annoyed . I just completed my Bacelor Degree in Information Technology major . I am looking for a job now . and I 'm also looking for scholorship to study abroad . I often watch Japanese movies , Dorama and western movies when I have free time . And I hope to make many freinds on this website . I 'm wondering if I should call in sick tmrw . I learned this sentence `` What was your first impresstion of me ? `` You shold guess in the content . `` However , it is difficult for me to guess a new word . Because there were so many Japanese people , I did n't feel like I went abored . The scuba scoach was Japanese . Tonight I have to go to cram scool . Maybe I 'll have a barbeQ party , but I 'm not sure yet . It is dificult for me to write in English . Ohh ! A summer vacation has begun ! The original work is from commic book that was published in 1980 . There are many shushi bars in Asakusa . I think that talking with my frieds will lift my spirits . We do n't know whether we are speaking American - English or Britian - English . I 'm runnnig a clothig store in Kyoto , Japan . If I have to criticize , I whould say that the sorting of garbage is not strict compared with other towns . A privately owned Chihauhau received a license to be a police dog . I 'm getting excitied ! Could you please tell me your schoo trip be it in elementary school , junior school or high school in your country ? Plese leave a comment . This shows the charachter of Japanese market . There are white and yellow Sinkansens . If you see a running yellow Shinkanse , you are lucky . What a wonderfull thing that would be ! ! So poeple , tell me what you like and correct my grammer , please ! Fathr of 1 . I stady English , book - keeping and FP . I 'm Interestd in Videogames ( PS3 , PS2 , PSP , Xbox , Wii , NDS ) , Anime , iPhone and iPad . . Now I stady English hard . I am glad they do n't start at an earlier time becuase I am easily distracted by sound during my sleep . I still do not how to translate Japanese into Chinses . And then , I went home and was studing until now . I want to take a nap after going back againg and keep studying more . I heard that `` one love `` means `` good bye `` or `` see you later `` A week later , I rented a DVD and whached it . Self - introuction in English After that I went to the humberger shop . My Humberger was too big to eat ! I always worry about what present my son wans every Christmas . People who have graduated from low level University then go to a high level Uviversity . I think it 's really taugh work ! Today is a holiday , `` Phisical Education Day `` . Though I want strongly to communicate with all english tourists and teach themmany many good things about Japan . I 'm learning English for bussiness now . I happened to find lang 8 when I read a book writen about English . The seeds will need to be plented by ourselves . Thank you so moch to many people in many countries ! To tell you the truth , It 's the first time I 've heard of the existance of generic medicine . I am a graduate student , majior in biology . Swine flu is threstening many coutries . I 've started wrighting a blog I like travering - - The sea makes my soul very carm and my body healthy . . . In Nagasaki , I went to HUIS TEN BOSCH and an Atomic Bomb Musium . The next day I moved on to the Atomic Bomb Musium . You know I have a holiday , so I will learn more than other peopie . There are many geoglyphs and the lenght of the biggest ( `` one `` or `` geoglyph `` ) is about 300 meters . I heard the sad news that an earthquake hit Iran , causing many injuries and casualities . Every time I hear the news of an earthquake in the world , I recall the one whcih hit my home - town , Kobe , in 1995 . The fact that over five thousand people were killed or seriously injuered left many deep scars . becasue I am a lazy girl . I heardly save my money . I do n't know if I should be ake him again or not . Please correct my mother ` s dialy I guess handicrafs are valuable because they carry the long history both internal and aborad My first aborad travel was in 2000 . But , it 's a kind of cultural diffrence . I can talk to international studens but I ca n't talk to American people . I display about 20 picture postcards and photographs on the partions . He remenbers me and spork to me . I exchanged contact information whith him . On Sunday , I went to Changi village and beach which are near the Chaing airport . and the Japanese army easily marched to the present boarderline between Malaysia and Singapore . and its a bit boring , but there is a crack where you can enter the underworld . If you kill all the enemies in this zone , you enter the scar and then the garden , and finally you can enter the hero 's hall . There , everithins is made of gold , and in the last part you can find three mesmer bosses called The Darkness . If you can kill them , they give you two green staffs . Each staff can be sold for aproximaly 5 thousand gold coins . I am not interested in alchol that much . The book he worte , `` The Last Lecture `` , really gave me And the process of persuing Anyway , I am going to read a book now , but I hope that someone will interupt it . And also there are a lot of other metter . . . . . My colleage is being transferred My colleage will be transfered this weekend . It is very unfortunnate . I listen to beautiful music instead of his noize . Emailing with him is my tivial enjoyness . I want to ask you something : Which resorces do you recommend me for learning English ? farst diary . My friend can speake English very well . I want to take a buth in hot water tonight . The battle scene was so fasntastic . Except that , it 's an exciting movie so I recommened it to you ! My mom 's enthersiasm toward Korian culture is worth to be respected . I had been using an iPod and iTunes so I was little familier with the products by Apple . For example , I listend to BBC and CNN podcast . I connected the hose to the faucet , dragged it till out of the fense and I tried . But very little water could be poired on the roof . But I watered all around me , the block fense , the wall of my house and the ground . I felt even cooler than ever despite knowing the tempreture might not go down so much . As for the cafe , as I mentioned , it was a very stylish and its dishes were resonable and tasty . I hane to make a presentation about accountings . So , I hane to study accountings ! ! hi there I 'm a nativespeaker of spanish language but I 'm ok at english , anyone who like help me on my japanese study I will apreciated . thanks I have lived in Iran for six or seven years , so I kan speake both Farsi and Dari . The two langauges are not very different , but somtime a person from Afghanistan ca n't understand a person from Iran Farsi is the langauge used by Iranian people and Dari is the langauge used by Afghan people . But Afghanistan does not have only one officia langaue . Afghanistan have two officia langauges , the other langauge is Pashto . I must studer English , Norwegien and math to be able to go to school in Norway . For this teason , it was difficult to give the survey . I 'm was informed today that I succeeded in the enterance examination to graduate school . Recently I have discovered that I start getting used to memorizing materials which have no relevance to my studies what - so - ever - this kind of bahavourial pattern has baffled me for quite a while , since after I found myself flipping through pages from the nearest dictionary again . I guess back in the Freudian Era these self - descriptive symptons could well end up being diagoised as `` hysterical . `` My roommate youger than me by 2 years . Sometimes we joke that shen must thank that boy because he made her love books . Now , shen has met another boy . and I feel nostalgy . I tought I had one too many drinks during the featival . - - Many tourist come there to see noumerous fish . He met many students and chenged their lives . I was trying to make my familie 's version as well as it . The main reason is my indiscipline and frankly speaking , laziess . Please tell me about yourself , where are yor from , what do you do , and how old are you ? I was supprised to hear his words . I drank an energy drink becouse I was tired . I was vigor . becouse some people do n't have jobs to do . . I think they 'll give you good anwers and you 'll resolve your Japanese problems . I found out that the old friend who had often caused some problems in class had become a store manager at food restrant . Waht made you come here ? So do you enjoy beatiful nature in good weather ? Because everyhing here is too expensive . Before July 1st , 2010 there were two differnet kinds of taxes . You are chaged just 5 % when you buy food , books , clothing for children under 14 , medication , and goods for babies like diapers and milk . Many people say that BC government spent a large amount of money for the 2010 Vancouver Olympics so that everything exept the minimum wage is going up . Yure friends ? To build Olympic facilities and infrastructure , tens of trees were cut down and mountaiontops were blasted . It was estimated over 85 units were affected , and this led to an increse in homelessness . But , I 'm provided ONLY FRIED FISH AND FRIED POTATE . [ ^ ^ ] This year , I want to enter the city marathan . For that , I have to do lots of exercise like running , swimming and streaching . I did n't write in my dialy recently . A long time has passed since I wrote in my dialy last . I have mailed out hundreds of CVs , but recieved few replies . My friends tlod me that it was snowing a little bit in He bei province yesterday . But I kown it is impossible and I need to study here . My friends and my families told me the weather is getting cloder and told me to wear clothes as much as possible . I need to find a new chellange for myself . Actually , my country is very close to japan . However , the traspotation fee is really more expensive than from China to korea . Anyway , I wanna make japaness friends . And I recommend you to book a hotel , and a bus or a train as soon as possible becasue a lot of people come to Nagaoka in the season . ( during this season ) After some time I took photographs of my flat to show my frind , who lives in another country . I want to be able to write sentences fluentry in English as I can in Japanese . I serviced in the Korean millitary for 2 years . Many of Korea 's young people have to service in the Korean millitary . you have to obtain a permit from the Korean millitary departments . I am making Tenpura and soup . My teacher is youger than me and studies Japanese . Anyway , I found out teaching Japanese is more interesting than I ecpected . I belive that every ' first ' is very exciting ! He tells me that he is well , but the situation is not optimatic . However , our class won 3rd palce in the end . I 've been to Canada and I was impressed with the stuuning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more mafnificent . I have a seminer at my job . The seminer occured me to get a little sleep . At my office , the air conditioner is working much weaklier than usual . Thanks for readning . Elves , dwarfs , magicians , trolls orcs , and orks too . I mean elvish is such a cute languge . Speaking of the elves , I really want to a jawellery like Arwen 's evenstar . And the other couple Faramir and Eowyn are so courages and dignified . tomorrow l wnat to write down the china exchange rate but it 's diffecult ! It was very beautiful , but it was very cold outsede ! But my home has not started yet , becouse the weather just changed so rapidly these days . It was said that one of the thieves knew the longuage of the birds , and another could unlock any lock without a key . And there are lots of food the GERD patient ca n't eat such as chocalate , sweet food , milk , tomato , peppermint and of coure wine and coffee . Anyway , I hope everyone is healthy and excercise more ( including myself ) ! ! I thihk it is very fun to make friends . Of course I analize myself at first . For this reason I like to read , listen to songs , but I prefer singing , and wacht films about outstandig people . . . At the dinner , I ate miso sopu . I like miso sopu . I 'm Japanese you know . But the sopu was still very , very hot . But I 'll keep eating miso sopu tomorrow , and the day after tomorrow . you know , I like miso sopu . In anicient times a bad dragon lived in Japan . theather . I think that therr is aways time to talk to your friend if you want to . Maybe cats in those cafes are happier than those do n't have their homes because Neco cafe 's cats are fed only by playing with us human beings . I wanted to improve my running becouse I 'm not good at running . Hence , I could improve my runnning . Last week , I read the book `` la sombra del viento `` by Carles Luiz Zafon transrated to Japanese . This novel has a tasts of mystery , horror , romance , suspense , etc . And also , I cought a cold from him . He said my pupile were already there . Energy savving lamps are our factory 's product . I went to an Anpanman movie at the cinema with my oldest doughter today . When we enterd the gate , we got an Anpanman doll made of plastic . It can project an image of Anpanman with a push of a botton . In case I forget it again , I 'll write the passward down here . . . Athretic meeting in my daughter 's kindergarten . Yesterday , there was an athretic meeting in the kindergarten that my daughter attends . The weather forecast said it would be rainy , but yeasterday it was fine day . The class that my daughter is in , called the ' Duck ' team did n't win , but my daughter and all the other children of her kindergerten and their parents ran around looks happy . Next year , both my daughter and my son will attend kindergarton too . I 'll invite my parents to the athretic meeting . I saw this site in my favorite magazin , I was angry beacause I started work at 7 am today . I wanted to do something unforgetable to express my appreciate to them . On Chirismas morning , my father entered my room and said to me , But when I was doing an internship , I thougt that it would be too difficult for me to teach something other than biology to students . Do you do skyape or facebook ? Today , March 10th , is the day when candidates can know whether or not they pass the entrance exam of national univercities in Japan . I have a girlfriend and I love her , but I ` m so embarraced that I have not yet told her so ^ ^ . We go to the same private univercity ( Univercity of Keio in Tokyo ) and we belong to the same class . But she also studied to pass the entrance exam of the Univercity of Kyoto ! I ` m sad because I could ` t meet her if she passes the exam ( Kyoto is far from Tokyo ) , while I support her and believe she will be a succces . I am 32 years old and I like my current job , I work for a company , a big company , and I feel confortable and I have a decente salary . Now I think she is the most beatiful girl that I know . Since that day I am always thinking about her . That day I waited for 30 minutes in the restaurant when she had appeard in her red skirt . . . . The topic is staying healthy , we have to write some points on the note card and say it in front of calssmates in three minutes . here 's my whole sppech Also , I am a meat lover , I eat a lot of meat , expecially steak , I love it very much . But now , I realize that I ca n't be like this anymore , I want become more healthier , so , I change my dail rountine . In recent days , I talked with two foreigners who came from Japan and Marashiya . Moreover , we have invented an intereting way to interact : I listen to what the one says in Japanese , and translate it into Marashiya with the Taiwanese man . If you know a book which you think is the best , plese tell me . First , we had a dinner at Coco No1 , the chane curry restaurant . In the restaurant , as we were talking , he told me to search useful websights . websight I ve ever known . `` So , I joind Lang - 8 . But I really want to go abrord `` a `` d to expand `` my `` horizons . Because yesterday , I slept all day long since I had cold , I didn ` t feel drownsy last night . If you read a book about a foreign country you have never been to , you can experience the atomosphere and culture there without visiting . Yasterday , a very agressive woman vizited me . I said that other girls had packed those vegetables , not me ( which was true ! ) But she scrimed : `` I can show you ! ! ! `` Then she took five packets of carrots and threw them at me ! So I was shoked and stood there not saying anything . diart ( 20 . Mar . 2011 ) I went shopping yestrday . The wather was not good , so I felt more tired afterwards . [ past tense ] For example , leaning ON the railing , leaning ONER the desk ? ? ? b ) Boxes are clutterd on the road . com person replied to them and they sometimes apologied for the inconviniences . Today , I went to Rikkyo University , and I got a stundnt card . The atmosphere is really strang among all of us . . . Are we still friens ? Although some infrastructures have been conjested , even in Tokyo & Yokohama area , Well , tht 's all . Our group consisted of 3 famillies including mine . I want to learh English because my dream is to visit many countries all over the world . It 's the motherland of my granddad and simply a wondefull place . My teacher ` s pronunciation was clear , but the cd wasn hard to understand . I thought that I really wanted to make Aartificial interigence as a result of this experience . Why are peolpe 's feelings so complicated ? Other researchers have proposed to detect the tumoer 's movement from the diaphragm 's movement . I studid Spanish for two years about 5 years ago . or should I consentrate on only one language until I master it ( or at least be in the intermediate - level ) then start with the other one ? A goal is more real than an idea , and has considerably more chanses to be realized . Incidentally , Robbie Wiliams , who had left Take That , has rejoined after fifteen years of separation and has made their new album , corporating with the others . And for the 3 years I ` ve studing French . I love camedies like Two & A Half Men , The Big Bang Theory and The IT Crowd , etc . Luckly , it 's really good to have nice wather . It 's the best wheather this year and It 's good for running a marathon . I did n't have any paticular reason for attending the marathon . I was always concentrating on keeping up my pace and not slowing down dring the race . I managed to finish it , but I could barly walk normally after that . Anyway I should exersice regulary . . . . . I loove sleeping ^ - ^ I want to go to a different contry dive in a different sea . I want to go snowbording if I obtain it . Unitl this year , I have been working in ShangHai and have not been back to my homwtown . They will see the full bloom cherry blossoms for the fiest time . now I have gotten back to my place , im gona na cook dinner for my boyfriend : ) : ) what im gona na cook ? It is exciting , fantasic , amazing and hopeful . He and I belonged to same club in university and have knowen each other for about 9 years . I dont ` t have anything to write here . . . First of all , this subject reminds me of something very croel , which is the passing of time that we , all mankind , have to face . When I was in first grade , I was selected to be in the Christian class due to some kind of mistake , even though I am Bhuddist . I was the only bhuddist student in that class , so I felt a little nervous at the beginning of the semester , but everything went just fine . I know the reason why I could n't control myself these thesedays . Every day we see beutiful , modern and fast trains passing throught the village . Let 's just have fun while studing . We went to Yale University first . When we arrived at Yale University , we all felf very excited and shocked . Their music has also become a part of our lives , escecially when we live abroad . This small painting work does not only pose a cost probleblem but it also could n't be accepted by the factory . My university is famous for teaching internatinal students Chinese . I was tlanslating an English e - mail for my boss the other day . After their explanation of the situation , they inseerted a phrase `` A Guy . `` with an capitalized `` g `` . My way of learing nowadays . Earthquake happened in Chili the day before yesterday . I felt at ease but I am worried about the people who live in Chili . It turly mede me surprised ! They supply products at very low prices without lossing quality . But I have gotten to the idea that it 's fully enogh in quality and looks at this moment . I bought a magazin , Non - no . Non - no is popular magazin about fashion in Japan . But a few minutes ago , I recieved a call . Today will be a bussiness day . But , todat is the weekend . I 'm really lookimg forword to this weekend . Maybe she 's a model or celeblities in Tokyo . Now its hard for me to lean the work but the work is simier to another job I had worked which was in a pub in Japan , so I think that I remember it soon ! I dicided to clean up and discareed some clothes I do n't need . I always make a lunch box for my hasband . Yesterday I made it as usuall , though he did not need it because he had a health check at the company . During that time , there was no PC in my house and I did n't have a celler phone . The magazine has plenty of information ( features stories ) about ivent in Tokyo that week . Today , peeple get information ( over the Internet ) on the web or mobile phones . Cheerly ! But I have received nothig . I 'd love to help people who is studing Japanese . Usually the doughnuts cost around 110 yen eachthere . May Day holiday passed very qucikly . But fortunately , three legal holidays are added , tomb - sweeping day , dargon boat festival and mid - autumn festival . Astrology predicts that Pisces ' dreams will come ture , and I await . And we went to a shshi restarant together ! My iPod is broken * becuse accidentally washed it today . I should had checked the pokets ! But , these thougts make me feel pressed so that 's why I think I have done nothing recently . Japanese Sake is not wine , you shold drink it when it is freshly made . . It was a lucky day that I saw beautifu sunset . I was volunter as an interprer and supported them . 7 people with their familes are participated . But when I went to church , I conld n't find to somebody who has talked with me before . Wife : Donno . `` He realy wrote 30 songs a day . I looked at him only for 10 seconds , but I still rember that he wore a suit and he looked very tired . Somehow I unconsiously took the envelope from him . I also remember , the train seemed to jump and swing a littile bit due to his body . Mark Zuckerberg would become the youngest billianaire in the world . It is estimated that Facebook has over 500 million members now . The two young men had diffent points of view about Facebook 's history . . . . Did you know that Takahashi Daisuke won a brond medal in the Olympics ! ? We have good news and bad news almost everyday but I wish we had only good news like about Takahashi winning the brond medal ! ! My freind and I met up at the movie theater at 8 : 00 . I think this movie encouraged prople to think about real things in wonderland . Although the sales staff was so enthusiastic , the course was abosolutely I think whether I can learn something or not depends on how eargly Cafe Perty My friends held a Cafe perty today . This is my firstt time using English to write a diary . I think it probaly l would really appreacite it . I felt really happy when my former boss told me that I would move to Okinawa office , because the Okinawa office is quite popular amang my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so we could go anywhere we wanted with my wife driving us . ( In those days , my drivers lisence had expired because I forgot to renew ! ) . I did n't have time to go todrinking with her befpre . I want to speak English well as if I were a neitive . In Japan , It 's called `` The Japnan Series `` This year 's fighing match is between the Giants and the Lions . Because my printer broked . To study English & Frech , I I thought I would try this Lang - 8 site . Because I felt that the original novel was very intersting when I was read it . Last Sturuday I saw the movie , ' Lost in Translation ' . After seeing it I realized that Japan has many non - japanese people here , and that the country is becoming multicultual . I 'm lokking forward to it ! It is true to studing languages consists of the letters , If you have done that yourselfe , share your experience , please . I have this book pablished in English . Recentry I thought that I need to need understandEnglish . So I 'll be going abroad anytime , for find job in a foreigne country , I want to be ready . I normally only have two cups a day so that I do n't drink so much coffee that it mgight cause bone loss . She had to go to Moskow urgently , but she could n't leave Silver on his own . Recentry , my sister began a part - time job . Prosecotors have no right to say ' justice and honor ' anymore . But I 'm very proud that MBC is not afraid of unjustice power . The Mayday event that the North & South Trade Union co - organized might be cancled . Besides that , I 'm putting on weigt again . But when I try to write in English , my brain stopps working . I dind n't want to go back to Japan . I 've been studying Engligh to go to Canada again . I am very ainxious about whether I can complete the full distance . After 2days , my mother nitice her charmy . I prized him , and felt ashamed to sing . w Mabye my friend is just very talktive and she could finds a lot of interesting things from the usual things So I think it 's important to keep in thouch like this ( now ) . I 'm learning German and strengthing my English now . It was there for a long time since I foget that my pot was on the fire . Today waas a wake and tomorrow is a funeral . I want to imporove my English . Can you help me ? Thus on this day men gave sto their wives and mothers , and they accepted every request that thier wives and mothers had . I 'm palnning to get my hair cut after getting my exam results . In Japan children who are less than 15 years old cann ` t offer their internal organs . What is more , people who doctors declare brain - dead even can ` t offer theirs either . I think that it is strange for Japanse patientsto go abroad for it , because us Japanse shouldn ` t rely on other countries . ' 1 ' is promounced ' I ' , and ' 2 ' is promounced ' hu ' in Japanese 's informal way to count . And I actually scored higher marks in the Chinese - - > English interpreatation test ! I saw an interseting piece of news about lions . Another one was personalifying risks are percieve to be riskya , then enormorous risks . Well he 's not is he . Al Alcaeda then . it seems to be riskya . I do n't think many people knew who the Taleban were , who Al Qaeda were , on how to pronunciate it little bit later on . I bought some groceries , such as Vegemate , as souvenirs from Australia for my family . And this tme , my father bought Japanese cakes in the shape of an aromatic citron . We work with a bad maneger . Secondly , my friend told me that I looked older becouse of my glasses . Naw , we have to elect the new superintendent for the dormitory . The votig day is next Friday . Rice wine has piquancy and a delectable flvor . It means I can watch TV in the buthtub with the cellphone ! XD I 've always thought that doing a puzzle is really boring and you must have a lot of pacience with all those little pieces . At the same time , it reminds me of the game I played at kindergartain I woke up at five this moring . I am male and gay . I do n't konw what I will do in the future . It is little far , but the doctor is famouse and good at sport osteopath . I like Timberland 's shose . : - ) But soon , my school is going to start and everything wil get busy . Things went really badly , I mean really aweful . so I started to feak out . I started with the first question , which was very ambigious . I 'm strugging with them . So I will write a dirly in English on Lang - 8 ! When I wondered where I could take my baby in the mall , I happened to find a pet shop which had a special campain . First of all , I will try write daialy . Althought , That taste and style is like , realy similar to C . A . Many Japanese people participating in the GP finala is exciting and interesting for their fellow Japanese people ! She corrected my mistakes in some exercises , we read a book and I tried to speak about my hollydays , but my attempts were without luck . = ( ( ( And now I 'm writting this post = ) These days , I 've been a bit busy so , I could n't update my bolgs for a week : ( A lot went on : O School started and I was given homework than I 'd expectedXO . XO I also started running in the morning , with my friend , for diet and health . The web registeration for my exchange university did n't go well . . . Busan is a famous jarbor city in Korea . Things I have thouht about recently I couldn seldom find correct answers . It ` better for me to study Japanese history and basical matters in Japan for communicating with forieners . I ` ve sometimes felt upset that foreigners know about Japanese culutures more than I do . How can I imploving my ability of memorization ? My co - worker invited me to go to see the movie `` Avatar `` as it released yeaterday . My brother came to my house last weel . Have I benn familiar with early bird ( riser ) ? I can read in English , also I can understand speach on TV and in the films ( movies ) , but I still could n't write correctly and could not speak fluently . It is very fun to sweam when it snows . Do Hemingway 's novels consist of easy words and sentense ? Are all of his novels full of easy words and sentense ? I decieded to study English . I must meet somone who I can speak with . One day a gipsy stole a bag of corn and was thinking about how he could split it up so that he was not noticed . I am a menber of ( the ? ) Tamura Jiro seminar and a menber of ( the ? ) Uzaki Akihiko seminar . make frends I want to make frends with people allover the world , especially speaking English and Spainsh . And please type `` frends from lang - 8 `` thanks Am I really going abroad alone ? `` Of cource it 's real . I used to hate writing something because I felt it was a hussle . Japanese studenets study English for a very long time , but only a few will need English in thier future . I called a water pipe repair campany and a repairman came to my clinic to fix it . Francis said something stupid about the slowness of the machine to break the ice and Rachel started to laught . Nobody cuold n't understand they were in love . One year later , the very same day of their first date , they were engaged with a diamond ring as withness . I have go to El Camino collge since Aug , 2nd . His dream is to be sugeon . She is fortish . You know , I 'm cooking puncakes and I promise that I wo n't let you eat any ! `` So , althought I was tired after my trip , I was really upset and frustrated with her `` lovely greeting `` . I will work at a rocal primary school in Bhutan . Because , to me , they are my really good freinds . if my friends want to leran just click and join me . . ohh I should be thank my friend named Tyler who gave me more wunderful pics so I use his pic in my topic I ca n't understand the Russian langage , therefore I amended the Russian person 's English translation . Parents are up in arms ove plans to close the school . We ate humburger today . I 'm studing Einglish I ate cream spaggethi with iced coffee . I was satisfied because it 's dellicious . have no substitle I think that the Sinam goverment should support the Humanitarian Aid Prgogram . The second is the foucus on medical treatments . For example , it is difficult to distribute the aid to people fairly , and there is no economis stimulus included . people may dicide to study foreign languages for various reasons . People in certain bisiness may have to deal directly or indirectly with foreign corespondences . Starting with writting some notes in lang - 8 . The last thuseday , I tooka walk in Hyde Park because the weather was fine . becouse the weather was beautiful and I made friends with a classmate . It was very beautiful becouse it was just in full blossom . Becouse here there are not many cherry trees . We could learn the news and details of the tragedy immidetely thanks to the Intenet . They have become aware that they have to take action against the tyrannical authority of Muburak . He is hsed to taking care of his intersts , and his power as the president . I am asking , where are human rights , good concious , and justice ? In addition , they want to reform the constitution , and they don ` t want Mubarak for another presidental term . I think that all these demands are very normal . These demands wo n't take a mericale to achieve . Millions of people are all over Egyptshouting shouting their demands , but no one listens . I am very sad for the people who were killed , injured , or imprisoned just because they want reform in their country . Today is the eleventh day of my country ` s revelution . All the people are calling Mubarak to leave , but he refused claiming that he fears chaos if he leaves . ( five spaces ) I completely aprove of the way you are teaching and that is why you 've convinced me that your offer is the best one of all possi ibilities . He said `` take some medicinene ( anthelenintic ) . . . . . `` But I had not eaten . Here there are quality foreigers . Sometimes the foreige friends help correct my English diaries . I am afriadI that I will fail again . for example ' BP oil spill ' , ' Iraque and Endless Afghanistan War Today is one of the inportant anniversary for all of Americans , the Independence Day , it 's known by many people around the world . I think about that thouse are in their all of hearts . I know that thouse are called ' American Dreams ' . It 's why they all sacrifice the weak people of around the world for making their the huge happiest American Dream lifves . and all of Americans because thay have another nice characteristic , Americn Spirit . The living room and dining room are biyond the kitchen . I stayed at home all day and wached TV . I play an English studying software called `` Eigoduke . `` But I ususally take care of her because my son is too young to do it by himself . In the usniverse , time was born in just a few years . They eventually settled down on the earth without fear of danger . As time passed , they become dogs , mice , cocoroaches and humans . Thank you for readin about our ' ( Fantasy ? ) world . ' Have you wacthed the movie Armaggeddon ? I think it 's really famose and I hope many people have wacthed it . I spent some time , and thought out an ansewer . Facing to the north , right is the direction of east , and left is the direciton of west , Boy : Yeah , I am Chirstmas ~ Will you marry me ? I like playing comeputer games and wantching TV and so on . Fortunatelly , it 's too cold and dry for cockroaches to live here in Hokkaido so I am relieved that I do n't see any cockroaches . However I did n't have a partener , so I practiced alone . My skills are not that great so I did n't have a chace to play others . I thouht she was much older than me , because she has a low voice , but she was born just three months before me . Almost all Japanese clean up their house completely , decolate for new year style , write cards for new year 's greetings and so on . However , there are some big cities , whic have more than 500 thousand people . Such cities are bigger than prefectures . When I drank green tea after taking a bath , I thougt this is a real leeway of life . But I dreink green tea , I sometimes wonder why I feel so . supprised that he used QQ . Us Chinese like using it , but I did n't know foreigers use it too . My umprella snaped after being hit by gale force winds . so if the company does move to another place I must go to the main bance and do a job with him every day . My secong idea is to stay at the same company but I dont think I will be able to read a book . and I do n't have the time to pacetace English . They only speak in English with occasional someexplanations in Spanish . But I think people who have beards do n't look good . ( although , on some people it 's cool , like jhony Depp ) Most of them are younger than us by 3 years so I could not help feelig the generation gap when I talked with them . Adaptin to the new circumstaion is always difficult and I 'm a little bit nervous How to lern new subjects ? They can grow organic vegitables of their own at their farms . In a passenger train there are carragies , and in trains used for transporting freight there are wagons , right ? I think happiness is decided by comparision . We vsited an Asian goods shop . Recentlly , I 've been interested in Asian goods . I have a complete lack of EFFOT ! ! I 'm very healty , but one point is not good . I do n't want to become a diabates . Mouners are come to pay their respects to the person who has passed away . Rose hip , hibiscus , german camomile , orage peel , apple peel , black currant and grape were in it . I sometimes got angly but usually I love them . I have a runny nose very often ( kind of allegic ? ) and get tired easily . I was ill yeastoday . Happy Valentina 's day Jamie Ollver Having a part time job at a small foreign restaurent was the begining of her love story . Most of the customers who came to the restaurent were foreigners . Lane just wannted to look into his eyes for so long . Tha Professional Japanese Language Teacher Training Seminar Its title was `` The One - to - One Japanes Lesson for Japanese Language Teachers `` . Lecturers included a famous teacher who is my senior , the president of a Japanese lauguage school and myself . It 's eay to find out if you look at the entry calendars from last year . This year , I will write short diaries , for example , just a cople of sentences , and so on . That way it will be easy for me to keep a diray even every day . When the competition started , two strong men were fightong and there were some slamming sounds . I heard that it is good for learnig English . I want to wacth `` Heroes `` . I have n't writen in this blog for a long time . I logined in to Lang - 8 for a long time . I was suprised and I felt very thankful . Because the teather could not teach such things . One of my Singaporean friends tought me a way to delete it . And my Singaporean friend geve up and told me he is going to bed because it was already midnight . So , I could search for a way to delete it on a Japanese web site by useinf the simple Japanese type method . How cheaky and stupid they are . He now able to speak various words ( For exsample , the name of animals ) and He does n't need a baby - car any more . The reason is that some kids had been waching me for a while . When we were talking about that I tought the time was running out fast . Now the vaccation ( respite , diversion ) is over , and I must free myself from the games to focus my mind on more significant things . I went to Universer Studios on Sunday with my brother , my mother , my friend and my friend 's mother . To get to universer stadio we took a train . First we rode a new atracion called Fantagi . It was a nice atracion . Universer Studios was very fun . I would like to go agein . now ( no comma ) I am listenning to music . cn . If you have something to share with me , tell me throught it . But I don ` t really like to syudy . ; - ( Next Februaly , I 'm going to take the entrance examination for Tokyo University . However , I 'm not good at English , so I joined Lang - 8 in order to develope my English writing ability . Can you guess what I anwered to that ? It was n't very productive , but I watched an titled ' Hajime no ippo ( The First Step ) ' on Youtbe . I did n't subscribe to weelky comics , such as ' JUMP ' and ' MAGAZINE ' , at that time so I did n't know anything about the story - line . but it was canceled becuase of an idiot ! So , I bought Sheperd Pies at a shop and washed some letus and Nari , the dolphine , is one of a pod of about thirteen wild dolphins that attend a nightly hand feeding event at a resort on Moreten island off Brisbane . The dolphin was spotted to have a very deep wound from a bite of a large shark on Friday , until Monday the animal had not emerged from Moreten bay at its nightly feed , and it was feared it may have been injured , but the twelve - year - old dolphine returned to its regular feeding spot on Monday night , and is transported by a boat to the sea world of the Australia 's gold coast , where he underwent the surgery and now is recovering . The dolphine is said to be coping quite well , and is expected to be back in the wild within forty to six weeks . I was using safari since I bougth an Iphone . But I did n't use safari so I dicided that I stop using safari and other Iphone functions except phone , e - mail and something that does n't use 3G . It was usefull because I could visit places I have n't been to before . It was a plearsure to me because I 've never done that before . So I walk aound Nara city near my house . I will go his reatraurant again in the near future . Because my car 's color is balak . I want to studu English . sth ? ? ? ? like M . MJ . perhaps couse M . J . , so l listened the Beatles . Today is my first day on Lang - 8 ! Horray ! And I hope it will be useful for me . I ate fried minched meat , egg roll , and sawsage . After that , I went to my friend 's house and played a lot of games . 3 days ago , my aunt called me and she asked about working in her convienience store for 4 days . Starting foreigne language education at a very early age is a good idea . The second reason is , if starting English at a very early age , they can know pleasure of communicating in English , not Japanse , and they can be excited about learnig English . In these ways , I agree that starting foreigne language education at a very early age is a good idea . So we splitted up . Today I 'm very happy , because this morning I bought a green screen for chroma keying in my shooting ! : ) It 's fantastic , you have to film against a green background and then in post production you can remove it and replace it with the backgroud you 'd like . inductory Sino - Korean and lastly . . . Anybody who reads my dirary will be happy . I will participate in full marathon convention for the first time in January nex year . This morning I ran for 4km at 10 kirometers an hour . There are gold stars , big and small circles on a brilliant emerarud green . But the dry frower is real . The ingredient is jel not nail polish . Jel is very wonderful ingredient . My emotion is influnced by the bad weather . world is enormals and the possibilities are endless . and new envirenment . as the saying goes , `` being young means no fairlue . `` I believe we I imagine that I coul n't know you beacuse you had a big change . Emma Watson x People tree is the greatst coraboration ever ! I do n't think it 's funny , so pls respect the victims . . I want to lose waight and buy it . It is pity that I can not reply to my firends . ratio among the developped countries . I feel happy to have free time without TV , cel phones , Yesterday , my wife and I went to the ob - gyn hospital to examin our baby I begiin new days . I hope my frends are happy everyday ! It is not a readonable price for me , but ths massage really effectively recharges my energy . However , many foot massage services advertise themselves as English oriented massage method or somethiing . Please recommand my english name ! ! Plz recommand my English name ! ! I was surprised becouse I could n't catch what the speaker said . I was goten up by unusualy bright sunlight this morning . Because , you know , a lot of power plants which are managemented by Tokyo Electric Power Company or Tohoku Electric Power Company have stopped running since the earthquake . So the Japanese government has been colling out to people to save electricity . But some people are misunderatanding . I worry that people , especially old people , who do n't use air conditioning in very hot weather and ca n't stand the heat may get hertstroke . And this shop has a nice atomosphere , too . We visit Mizuki Shigeru road by a local train which has drawings of many hobgoblins charactors . I am so busy that I ususally forget about them . Actually , I deleted history on Windows Exploer , but I did not clear the document history . I was reserching my other job , so I could n't write down today 's diary here . The foto was taken last year . I 'm lokking forward to meeting him . However , the spa was very nice and luch was also excellent : D ! I major in Germeny . I want to speak English fruently . I totally recomend this shop . We have a school festibal every autumn , it is a very big event . Today is an unluckly day ! In the morning , I hurried to get up , and eatted sanwiches , which I had prepared last night . Then , I realized that I had forgotten my tiket and wallet . Exspecially women like to talk about other people . Finally , I desided to throw them ( all ) out except for the graduation certificate ( join to next sentence ) a nice language excange partner As a result , the level of my English is desclining . With continuing practicing , I believe I can speak English with foreigh friends one day . Nevertheless many Koreans say that childern have to live with their parents . And they can grow in having less stressed stuations compared to childern without parents . After get marriaged many people want to live as a nuclear family . And they say that most parents should n't / ca n't insist on the right to criticize those who wo n't take care of their parents after getting marriaged . The mood of the city was so intresting and new to me ! Night market is a special culture in Taiwan , and there are a lot of delicious food and traditional handiworks . My lithneing skill is very weak , so I always got the lowest score in the listning score of the TOEFL . Tomorrow is a holiday , so I will answer the comments of previous I - idaries of mine . I 've maken a big mistake , Two days ago there was one undentified payment in my bank account . Althought it was good to solve the money puzzle , I have a new puzzle to solve . How did the first guy know about that undentified payment I had in the first place ? It was the most memorizable experience that I have had so far . Let me not be afrid . I have learned of multifarious histrical events of cruelty , massacre or carnage which are aimed at wrong sovereignty . I always go to clinics , meet doctors and advatize to or inform them about my company 's medicine . However , sometimes I am appriciated by dotors for my support . In Madrid , it has been raining all the time and going outside was imposible . Sometimes I 'm confused and I do n't know a good sentense . They 're friendly , walking beside you , always learnig an ear when you 're happy or upset . I want to buy shampoo and conditionar at half price . They are comsumed quickly and used everyday , I 'm a 22 years old Japanease woman . I can see good opints in others . I try to accumlate childcare experience because I want to be a good aupair for my furture host family . We have a lot of tiems to study , but I waste a lot of it . I am very helpess and unhappy . This phrase has the same meaning and uses the same thing ( in this case screw ) in several contries . I corrected some diary written by Japanese learnners . It is so intresting ! He sleeps in his hunmock outside and jump into river to wash his body . In morning I received your present , how beacutiful necklace , I think this gift is the best brithday gift ! Suddently , I 'm a little bit frustrated about the situation because I ca n't respond to people immediately . In this first semester , I need to choose an area which connect to my next semester 's vacation placement , it is like an intenship somewhere to do practical work . I chose `` Mental health `` this semeter , this is a big challenge ! I have poor listening skills and my spoken langauge is also very poor . Mabye . `` Takht - e Jamshid `` or `` Perspolis `` was an ancient city and one of the capitals of `` Hakhamaneshian `` dynasty for many years . My hobbies are listeng to music , watching TV , playing sports , and so on . But it was okey , I enjoyed it . We had a good time at the restrant . I think it was reasnable . I met so many people from around the wrold . I could n't speake korea very well . By the weather forcast , it will rain tomorrow . And two tyhoons will come close Japan . So , even if Japanese people can not speak both English and Mandarin , we can still comunicate with them lol . I do n't know what the Koean and Taiwanese think of Japanese people who are studying English in foreign countries . Lately I 've been going to Akihabara alot . I attended a meeting for those who are interested in finace and / or accounting . But , suddenly it sarted to rain . Aedile , I 'm afraid sharks vs . gorillas is too absurd even for the Colesseum . . . that has been a crowd - pleaser in the past , but it would be polically inexpedient considering the number of noble families that are converting to that faith . I had a trip to Aomori prefecture with nearbye farmers at the end of last October . First of all , I went to the top of the Shimokita peninshura in Aomori prefecuture , and I ate a delicious tuna at Ohmacho - town . Second , I had a good time to see the landscape of the Japan sea at the top of Turuga peninshura Because ther 's no car at that area . This trip was too late fot the season . She was really surprissed knowing that . Sometimes I 'm too single - minded , so for example , if I deciede to study English , I would think of nothing but English . I think it 's my mostserious weak weakpoint . I 'm acasual somoker , I would like to stop smoking . ( Singapore is anEnglish speaking country , soI think I sould not say this . . . . Whis is the best answer ? I wil introduce useful websites or tools for learnning languages ( English , Chinese , Japanese , and so on ) . Let 's learn foreign languages more plesantly and cheaply ! And the teachers said that it 's not a fastival for you students in grade three in senior high school ! How hard they want us to work . If I write something in an implite way , please tell me . I was asking if they would kline to have some more ice tea , They feel my son facinated me . Wao , Ukraine ! According to the article , in Bulgium , there are four parties and they all have trouble with languages . In some parts of Bulgium , people speak Franch , other people basically use Dutch , and a few people speak German as a common language . The prince and her father are not discribed in detail . Cinderella becomes a heroine just because she gets merried to him . We all have read or wached this at least once in our lives and it is still read by a lot of people . Althought He had mistakes in his reserches , I think he lived a respectfull life . We read an essay in which the writer said , `` An ambrella is a kind of a nuisance , `` or something . In 2009 , many scientific studies showed that the chocolate is very healthy , is rich in flavonoids , is good protection against the sun , improves the heart , decreases blood pression , and it would even protect against cancer . `` Siroi taiyaki `` is a kind of sweets popular in Japan this time of year . The meaning of `` Siroi `` is white . We went to Youuido to see `` The Fireworks Festival `` . What is coreect ? After the big earthquake and accident at the nuclear energy plant , my company reccomended that I work from home untill we could conferm the safety level of the radiation . My Chinese friend made a big dicision . This reminds me of diamonds and coal , both are composed of the chemical element `` carbone . `` but they are so different : diamonds are sparkling , expensive , clean , while coal is dark , cheap and dirty . The difference is in the base : the way molecules of carbone are bonded Coal can generate thermical energy , which helps to provide electricity . I was disapointed . You shold say : Accross the River Seine next to the museum , there is a very famous museum named the Louvre Museum . I do n't know the story 's ditails yet because this musical is their original story . I have naver forgotten this memory . . . . I had naver seen such a big cockroach . I got an invitation and have joined Lang - 8 since last year , but I have n't wrotten anything or even looked at this site for a long time . Girls in my town are already enjyoing wearing various beautiful In such an occasion , I am gratefull for being a woman . It 's a funny movie ! But I found it a llitle vulgar . I was suprised to see a lot of sex scenes . This was my first ( only English ) speaking camp , so keeping this rule was little difficult for me , but I maneged to live only speaking English . Most of the schdule was practice such as , discssion , listening , vocalization , reading , etc . In another activity , we had BBQ , played volleyvall , and other interesting things . In closing , our group leder read a speech through tears . I had to dicide on a section before I got off the bus . There are four sections in The UK ESS , paliamentary debate , academic debate , speech , and ISS . In the secand semester , our main ESS activity is section , so I am looking forward to practicing academic debate . Then , he said , `` We Japanese do not insist so strongry like you . `` I have suffured from migraine since I left the office yesterday . I think that I am not used to have a nap yet , I diside to sleep a littele sometimes . Any help / tips or comments would be greatly appriciated . Afer my sister and I grew up , we left our parents and started living independently . I 'm sutdying English now . is there anything elso . . . ? If I go there again , I will go bankrapt . We picked a full bag of peaches and plums , and went happiy back . Normally , the last week is specialweek for everyone . I did n't know what happend . On the train there was an announcement saying , `` All pasanger get off this tarain right now `` . On that day , we were thaught about the Asuka era of Japan in English by foreign people . I went to the Toy Museum with a forener . It was very confortable to see ! ! And I also entried level A though I have never won there . . . . Immulizaion Requirements Immuliaztion Requirements vary from country to country . I will outline the immulization requirements in Taiwan below : I have ridden in airplains a couple of times , but I have never gone to the airport just see them . I hope one day I will speak inglish . . . . I did n't konw an important truth till then . Today I learned about making traditional Brazilian alchoal `` Hey Kichibei you remembe your promise ? That 's why I finished my work ealier than usual and came here , finally . Sometiems I want to be good student but it 's vey hard . I heard my relitives said they have a firecracker show at the South Bank in Brisbane . But there might be no performence this year , because of the floods . Today , at English class , I was taught that `` modern woeld is one `` is an incorrect sentence . Do you have similer experience of this ? Also , cosmetics , fasions , magagines , movies make me excited . I enjoy learnning English , I wish I can say it frently . . . I am so happy , becous I understood what the boys said , and I knew how to say what I wanted to ask . I would like to speak a lot of laguages , too . If I coudl get one year sabbatical , where should I go ? I wrote many articles this year about topics such as an entrance ceremony , sports meet , open school , track meet , children 's sumo wresling meet , volunteer work , a school play , school excursion , school festival , acuathlon race ( swimming and running , ) and Beethoven 's Ninth Symphony concert in Kokugi - kan . Anyway , I Love English and I 'm an optimistic person , I 'm going to enjoy writting . Today , tayhoon came to my city . He must practice chinese charactor ( KANJI ) . This is my favourate program in the UK , because it is fun . The program invites different guests every week , such as singers , actors / actoress , comedians , cooks , athletes , etc When Lady Gaga was a guest , she was asked some unfavoured question , so she anwered on the phone which she was wearing on her head . Now I am happy that I can understand English , because I can konw foreign TV star 's characters . She told me of some places where she has found muberry trees . I hope tommorrow is fine . The differnce was , however , that he kept on going to his potty even while wearing his diaper . I will hardly vist and study , but I want to make many friends . When I found this site , I decited to post my journal everyday . When I said that her studens seem to have been improving their Japanese a lot , she looked really happy to hear it . They often gave me the enagy to teach . I will start to clean up things soon aftern I use them . I went inline skating at the Hadson rever Park with my friend . I could do it anyways , but my friend coul n't and held the bar the whole time . . . it was so cute : ) We could see the beutiful sunset . . . You know , if you are biiten by mosquito you have push and oush the skin with your finger . PL fireworks festival is one of the biggest fesdtival in the world . When I was ranked , it 's on perpose . At that time , I uproaded 12 entries a day . This time , I uproaded 4 entries a day , and I did n't intend to be ranked . I ended up 4 entries when I uproaded ones which I wanted to write at that day . ( a bit unclear ) Kimono - a kind of Japanese tradional clothes - are made from Asa ( hemp ? ) or Kinu ( silk ) in genereal . Today , I have a presentation about Japanese weddeing in my English class . Japanese tradditional traditional weddings are `` jinnzennsiki `` which are held in a shirine . However now this type of wedding is 20 % of the marriage celemony in Japan . I think that meny girls are attracted by a white dress ! A couple and guest is to be superstitious in a celemony even now . If you are invaited to a celemony and a party , you need to give a couple some money for a celeblating present . Even number to spare number suggest that a couple is to be devided ! so I 'm gon to introduce myself . And it eables us to enjoy taking a bath outside and to overlook the valley . Job huntting gave me pretty good oportunities to seriously think about how I want to live in the future . Maybe we have to pursue this answer indefinitely though . I am writing about my favarite thing today . My favarite rider is the Itarian rider , Mr . They are both on the Itarian team this season . Hida meat is very famous , but it 's very expencive . My faverite book . One time , when I was really interested in the English languge , She had been reading books sice she was young . Her parents do not take care of her and leave her alone at home . She is really different from other girls . When she goes to school her teacher is really surpise because she is much more clever than nomal girls . That story gave me insperation to study English . However , I want to try cooking roastd chicken and I have to prepare party stuff and decorations . It 's seems a little bit complecated to me . It seemed to be a very nice day . . so I took a chance to ride my bike becouse it had been a long time since I used it . That 's how I caugh a serious cold . . What kind of transpotations do you usually use ? her colon and anus were avolished . she ca n't be pregnent and she has to have an artificial organ in her body . My hasband has shoulder pain . I think , it is something that I can believe in , and it make me a kind of possitive or happy . I am so depressed , I study English every day , and after finish class , I return home for continue to study English at home , but whatever I try it has no benefit . I memorize English vocabulary every day , but in the next day I will fogot half of them , I feel so upset , I think my IQ is good , but my memery is not so good . . . . Can anyone tell me how to remenber English words faster ? Thanks I was classfied as mediam level . When I came back to my house , I remenbered the incident this morning . I want to know if foreigners color thire hairs or not . the weather is beutiful . my roomate asked me to take care of her , I do n't wanna let her die in my hands . . . if so it would be a memoriable experience in my australia life . The way I expressed above may sound insensitive ( and I 'm afraid of doing so . ) , but in my case that makes me realise that I 'm lucky in such a peaceful sciety and makes me think about people not in the situation . He is making an effort to make their ouw paradise . He imagines when he comes back and sees the beautiful face of his lover , tears in her eyes , but she will smile hapilly , and she will still love him as passionately as in the beginning . Please help me correct my mistaks , Thank you so much ! ! ! Today my english ( and I know about this very well ) I commiting a lot of boob ; - ) I really like learn english words , but I have a BIG BIG REALLY BIG ; ) problem about grammar : ( Polish language is different , we have another grammar and sometimes ( okej , almost always ; - ) ) I speak / write incorrect ; ) I thought that was too expencive ! In addition , I learn Japanese in my spare time to inrich myself . Watch your manners when drinkig with clients or your seniors . Do n't be their alchole go below half a glasse . Many people buy a lot of dougnut . There are a lot of people who like dougnuts in my town . They both are down to earth and very genuin . More speeaks , liitle action , and lacking an ending . I can barely finish all of the questions but not enough time to double - cheak . In the movie she roled a police officer and one of the Miss United State candidates . If you know the best way to remenber , please write your way in the comments . Tommorow , it will be cold . Maby I wo n't be able to forget her after this . My husband left his cellhone in my house I wonderd . I could n't bileive myself ! Yesterday when I watched the news I saw that over 1000 elementaly and junior high school students in Fukushima changed their schools during summer vacation in order to avoid the radiation from nearby nuclear plants . Under now circumstances in Japan , we 've been sensitive about food ingredeents . I 'm Japanese and live in Hirosima , which is a very peacefull city . Today I finally finished my thesis and I will be graudute from school in maybe two weeks . My brother said to me that my grandmother was tranfered to the emagencey room for her brain surgery I will probably have mustle aches tomorrow . My allawence is far from being able to afford even the cheapest one . Soo today I write somethink in English . OK so today I alsow decided to first learn some Japanese words and then write somthink here , till then I will be using only English . I desperately searched for an Austraian conversation partner , but three months were not long enough to masnter conversational level of English . He answered me , we introduced each other , and bigan to talk . At first , I thought it would be really difficult . I was affaid I might break my computer . However , he miraculously recoveriedand and he is full of energy now : ) I got the form for it from the city and sent it back after filling in the informaion that they need . I thought it 'd be a very good place in this extrem hot summer , but it was too cold to stay long . As far as I 'm concerned , I 'm really vurnearable to the temptation of sleep , especially in the morning and afternoon . eapecially in my city , Kumamoto . It wo n't save you if you only drink coffee because vagetable ( vegetables ) and some other nutritions foods are important . This means that I am not able to use word , exel or any other softwear and systems well . I told them many times that I do n't know much about PC softwear . I am not good at english , but I will try to sutdy . Recently , on the contrary , speaking English is getting a to be a lil burden to me . The more I learn and know that I have to put what I really mean into the words , the more I 'm scared and concerned that I would give people a wrong or bad impression of me . I admit to say I 'm a lil insecure , which I do n't like to be . It is quite difficult for me to understatnd slang . ( Oooops , is this slang in the first place ? or are my studies lacking ? ) She is fascinates me though I do n't linten to pop music very much . At that time , my heart was beatting so fast . Althoug the weather was not perfect to see the far view such as Mt . I am really nervouse . In my stuednt time , my writing test always get - My writing is just so disatrous that it discourages readers to read and correct . . . ( highly probale . ) Yesterday I went to Church in Higasi - nakano . My friend recommended it . It seemed like a good oppotunity to get to know foreign culture through understanding Christianity although I 'm not Christian . There are many peaple who are native speakers who can speak English very fluently . Then , our company held a soprts event the day before yesterday and I took part in many activities . Frist , enormous reading is regurded as a priority in the process of study . On one hand , rote learing is not really worthwhile . On the other hand , reciting on the base of understanding is definitely good . After a while , you will store up a large number ofarticles in briain . We will feel easy when we use Englishset to express our views . It 's said that vagetables are good for your health , so I make sure I use vagetables . For today 's dinner , I made steamed rice with vagetables and meat mixed in , grilled mackerel , shrimp spring roll , freid chiken , boiled spinuch , grilled pucific cod with white sauce and vagetables soup ( including garlic ) . Do you think we need to creat a ' ' common language ' ' for peple in the world ? The first day 's result was not successfuly . I could get up early , but I was n't able to do anything I had expected . I am a funneinst guy ! It 's the bussiness language . . . . . Not only this , even though the school is an internatial school , there are so many Korean students and poor chance to speak in or listen to English . Childlen and fools always speak the truth . I finished my breakfast at six o ' clock ; then , sat on the sofa and spent some time wathing UEFA . Yesterdaty I went to my friend 's birthday party at my American friend 's house . We also had a big ice cream cake and snak . We also drank a lot of alchol , especialy the people whose birthday it was . By the time the party was almost over , a coupole people passed out . If it keeps snowing through the ivening I shall not find my house under the snowdrifts - this is Russian weather . Going back from work to my house , I was draiving at a maximum speed of 40km per hour . If the snow was n't making it cold enough , the heathing in the house has stopped working . Yesterday I had a feever of 38 degrees C . I do n't have enough imformation about finances . and we enjoyed a game and making friends with the members of the committee in my univercity . It is to organise ? ? the festival of univercity . Only suginami - ku ( one town of Tokyo ) was entryed in Japan . Some pople do n't like security check , but it In the end , you can borad the airplane at the gate . They have your seat nunmber in that experience and I have to take an airplan but I need to It 's kind of scary to meet someone who I have n't seen for a long time , but positively thinking , it 'll be a good oppotunity to catch up on things we 've done ! Talking to my friends will helps me relax and get rid of the pressure and sttress from my work ! I 've realized that glocery stores and the whole city are getting ready to be decolated for Christmas lately which makes me feel this year 's almost over ! Today I received a notebook which I orderd a day before yesterday . But I thought it 's dangerous to buy something expensive before seeing it directry . Now , I want to be a coustomer survise agent in an airport . There is some grammer I ca n't remember . Hope I can successfullu pass this examination . If you have any interest in the web site , you shold n't wait , just ask me . I 'm a big fan of `` The Dark Knight `` and `` Mement `` and I like Ken Watanebe . Absentmindly story Another examlpe , I went to my room to fetch something , but I forgot what it was when I arrived . I could n't undersant the contents , so I was so bored and sleepy . we had been waiting for a long time to see the famus band , . we were n't sorry to have seen it becaus it made us very happy to listen to the music and dence . I went there early and I dicise to go to my houme before the music started because I wanted to cheak my diary and read a book . I have spent my time for preperation for a seminar . Behind the counter , there are machines which scane the bar code and say if you win or not . You can win a voucher for two euros , five euros , or a big suprise ( I do n't know what kind of surprise ) . During that time , I 've met a pofessor sho was Mr . ( nome of my last supervisor ) 's friend and he 'd introduced me . However my purouse is n't loving . I try to concentrate on what I should do now > _ < Lately I began to have doubts over the choise of my future job . I want to be a jornalist . In my opinion , a jornalist should write about what he knows very well or write about what nobody knows . I am not sure whether I will have good topics in the future , whether I will pass exams and enter the Unirvesity , whether I will find a job in good a newspaper or a magazine . Although I have beeing learning english since I was 12 years old . Gradully , I realized that English is very important . These days I am intersted in learnig English . And my major was Japenese . And make friends who come from evrywhere . I must make more affort ! ! According to his explanaition , it seldom stops , but ( or and ) it is recovered by turnig it on and off . Just think about the fuel rods , they could provide everyone in Tokyo with enough elecricity every day . If they can pass the test , they will be given lisences . ( The salary of a carrer - changer is different . ) A HAPPY NEY YEAR Wathever , sometimes you just want to relax without thinking for a week about what the ending of the last movie you saw meant . I Regretted Eating 8 Pieces of cokkie So , I ate 8 pieces of cokkie for dessert after dinner . Afer ate them , I regret eating too much . . . But the strawberry cokkie was very dilicious ! ! Anyway , why do the humans want sweet ater exercising hard ? : ) I have n't tried out my lovely baby yet because of my damn buzy job . We are clazy . I will have a holiday the day after tommorrow again . We orderd buta - tama ( pork and egg ) and takoyaki . If you see `` FRESHNESS BURGEER `` , could you try one ? Earthquakes have hppened since this morning , on and off . My dream is to go to an American school or university to studay ! Drving test I am caurious how difficult the written driving exam is in other countries . . First of all , I want to say that I do n't know very much about the relations between North and South Koreay . I wish I could recover immidiately . I hope I recover soon I like snow , but I sometimes hate it because it 's difficult to drive on roads coverd by a lot of snow . I started using skype today , because we can speak in different world langage there . I am thinking of practicing speking English . If you have skype accaunt , please call me ! ! I like onlin games and Motorcycles . One - piece , Naruto , Ke - on ! ! , and Bleach are good anime . Fortunatully , most of them find one of the best partners for spending the rest of their lives with peacefully without any complicated trouble , unlike some of the famous golf players . but after a few months problems started and my mom and grandma were fighting a lot verbally and sometimes phisically . . . . . I registerd on Lang - 8 today . I drink a glass of soymilk with two speenful of the vinegar every day . I watched `` Valentaine 's Day `` , which was started playing yesterday . A lot of foreigners were at the thearter and laguhed a lot . Last night I was watching Billy & Mandy , one of my favorite cartoons , and I saw that Grim , a charactar from the anime , was holding cute skull shaped cookies . But , unfurtunately , God forsook us . To be countinue . Soon , My son will be in a summer vacaticn . ITS URGENTE , PLEASE , CORRECT THIS ONE ! Please ! I belive that life is a art and we can paint our life as we like , so no one is the same . And this is very helpful when I make something creative , such as cards or caligraphy . I have wathed Friends many times . I like Ross best because he is so kind to his friends and he is so lovely when he is with Recheal . Until now this friend 's childern were all boys . New Zealand is now winter and this morning was freeging . Normally I wake up arround 7am and these days sunrise is after 7 : 30 , so every morning I have to wake up in the dark . Tonight I will go to bed ealry . Today is childlen 's day in Japan . Recentry , I read the book titled ' Syabake ' . Lackly I woke up tonight . The population of Japan is decreating now , but the business in Japan is doing poorly . I had some poteto salad sandwiches , cherries , and iced coffee . Like other countries , chilldren in Japan believe that Santa exists . Gon na work as a web creater after graduating ( only 2months left ! ) . They were the offense side , and we were the defense side . My advanced class students learned how to inquire at places like hotels , cultual centers and infometion center information centres ; asking the price , the way to get there , what kind of facilities they have . . . But I could n't understand how to purl , untill my granny showed me how to do this . Finaly , I slipped it again and knitted some pairs of socks and gloves for my father and brother . I need the computer because I am studing English and Ihave todo myhomework . So , they are not eager to get mariage . so I ca n't read messeage . I looked up severel recipe websites to see if there are any other recipes to make with leftover turkey . But recently , it has become more difficult to communicate with China & Rossia about territorial affairs / matters / problems . Have you heard what happened between Japan and China , and Rossia . For our kid 's furture , we must communicate constructively with logical thinking . I went to climing mountain , which is near my apartment , but the mountain is very short . If it is bad for my healty , I will reduce the amount of coffee I drink . Recentry I have been going to driving school . I want to go shopping and sightseeing and eat humbuger . I 'm relieved because no trouble has happend , as a result . In the firest two days , I just took a break . I think it was not relexing . A : What a strage factory ! All his dishes looked so yummily so the next day I went to the book shop and bought his cook book . She is going back to Irland so I decided to make something for her . And as you may know , I am living in Eugen , Oregon - - a very rural area , so I ca n't get them easily . It costs 65 dollers . We slpet only 3 hours each night . It was so regrettablt because if we were n't nervous we could do better : ( I do n't know why I was so nervous . At first , it was an ordinary thing . But after I grew up , I felt that I had missed a great something , which was my father ` s affection . I realized that I didn n't receive from my father except for his money . After my mother ` s death , I thought that my father would change for the better and play my mother 's role , but unfortunatly he couldnot n't do that . In spite of that , I love my father so much , but if I had had the capacity to choose my father , I wouldn n't have choosen him . Do n't spend most of your time working , becaue you believe that your children need money . Of course they do , but be aware that they need love before anything else . It is when I am passing over the brigde that I see the almond moon over the sky . Dessert was too sweety for me though , but my sister said it was good . Yesterday , I got a new family who study Japanaese and are going to stay at my house for 4 months . I think pople become unaware of how important the things we care about are as we get older . Anway I think this movie is not only for children but aslo for adults . It 's very exciting and entatining and an heart - warming film . We had booked a room in the Hillton Hotel before we traveled there . I am goot at receiving , so I am entrusted to be in libero position . So , I want you to correct my Jornals or to send me any messages . Love sharply and deeply , althougt you can become hurt this is a unique way to live completely . I was going to buy running shoes , but what I actully bought was a DVD and so on . he will soon be able to stand by hisself . There were a lot of ropes with different blocks ( polyspasts ) , funny mirrors , infrared cameras with displays , magnets , models of the ancient `` perpetum mobile `` ( of course they do n't work ) . I chaird the club meeting . My son actually chose it , but it was lucious and I was elated . I want to learn Korean , but I dano n't know how to study it and which book can help me . . . Is it look like a black folower ? ? I 'm planning to get a driving licecse before long . aborad . . . . . . But I have truted the Government . There wewe a lot of women . `` Zyoshiki `` means girls got together and taliking about boyfriends , work , and life Enjoying happy `` girls only `` time . The medical center coporated with many sutdents restaurants and invited them to offer nuturious but delicious lunches . There were fruit sandwishes , Korean food ( without meat ) , spaghetti with vegetables and chicken , and so on . I had lots of chances to fly on airplains around that time . The place of the story is Barcerona . ( Is this a right spelling ? ) So , I began to take Chinese harbal medicine . On Studay , I 'm planning to go to my friend 's birthday party ! ! My hobbies are soccer and teniss , and I 'm interested in anime . I set it up ( It was a litte difficult . ) and used it , but I was disappointed . It means I have to swicth and link items when / every time I want to use the headset with other applications . I seached the internet and it says it takes you 1000 hours to understand what a native speeker is saying . I am a student and a scientist at school , so I spend a lot of time studing and doing research . But now , I got a breether to write an enrty . Hot springs are also effective for curing a variety of desease . What I find difficult is the pronounctiation and writing in English , while I find it pretty easy to read and listen to English passeges . One of them tried to catched the thrown ball from the QB , Rogers who was elected as a MVP player in the Super Vowl . We were gald watching in that moment . I will never forget at that moment , when everyone was smiling and enbracing . It 's a specail day for me Although I do n't have a lot of money and prettty girlfriend , I 've studied English for a long time ( actually I 'm also taking my major that is economics in English now , because of university policy . . . ) but still speakcing and writing in English is kind of really difficult for me . This will be really honor for me , if you guys have conffident in using English to edit my diary correctly . Because of it , it felt too uncomfortable to rest in the aftermoon . Today 's weather in Wu han is so great . It is sunny , so we can wash colther in the dormitory . I nerver read them to the end . I would like to , but I am a cracy girl . I know it is really hard to do . Sometimes I feel lazy and sometimes I feel drosy and would like to sleep . Hello evveryone . I 'm practcing `` In too deep `` by Sum41 : ) However , unfortunatelly my son caught the ball someone pitched . My team 's parents were talking about the move with dissappointedly . I ca n't beieve it ! Seinfeld is a commedy drama based on the real life of Mr . Sarah Jessica Parker and Matthew McCaughey appeared in this American romantic comedy movie . I have an English teste tomorow that I wanna ( want to ) pass . There are aroud 328 pepoples dead . Last week , my classmate who is now a teather told me that there are 2 classes that have been stopped due to H1 / N1 in her school . The most inpressed car was TOYOTA FR - S concept . When painting a picture from ur memory , simply close ur eyes and think about the innocence of childhood or your first bittercrush . I think I have the responsity to remind you , my friends , to pay more attention to your health . Personly , I insisit the fact that health is the first . I was exicited and moved by the close match . but I was frightend by their high skill , technique , body strength , From today may 1st , 2009 , onwards , they have ' Sakura special ' , for example a Sakura scon . But thay put the price up ! ! My company had an exhibition in a departmant store . I had to be a promter girl there with a lot of show girls . I left home at 8 : 30 to go to Tronto , Canada . I am looking for peolple who can teach me English . Which sentense is correct ? ? ? ? ? I studied English at scholl for about 8 years . for a long time ~ or for a while or ferever ~ Why doesn ` t scientists invent this machine , Some of our members ( unfortunately they could n't join the re - union ) have got married , had babies , and what 's more , one of them has already devorced ! ! If I have mistakes , recorrect itplease . For some years , Ididn ' tdo agood job and have many many troublesomes . Life is a journy . I just watched the movie called Avater . You often see its advertisement on TV recetly . Theseday days , many students do n't like math to be difficult . Because it is hard to make the ajustment and there is few unorthodox fighter than orthodox fighter . I will be staying here for ten mounth . I think maybe I would understand why he had a two - faced attitude like L ' tranger . . . These day I am intersted in learnig English . Actully , I have greduated from univesity . You find more tourists than Japanese around here and can listen to lanuageages other than Japanese , such as Chinese , Korean , and , needless to say , English . The access to the airport is easier than from Sinjuku or Shibuya . The atomosphere here is more down - to - earth . If your mood is in , you can have them on a boat with Tatami - mat watcihng skyscrapers , what 's more a strange object architecture on a famous companies roof , which seems to me a gold excrement . . . Although I 've studied English for 10 years , my English is realy poor . I took a gramar test at school this morning . However , I heard that my lelvel up test score sucks . To tell you the turth , I feel sorry for him , because he really looked sad . . . However , I think that street _ streetperformers should be much better at juggling . Street _ Streetperformers are often bad at juggling , because they do n't need to be very good at juggling to surprise audiences . I was very hot but bery happy ! I canged my job this Novmber to work at hospital . Humm I still do n't know what to write about , and I definitely need some help , because I never have time to practice my writen English . . . I watched TV and made accesorries . But it was cold and thier bodys shivered , and I did too . Next , I must learn what my bad side is and try to cortrol it . Once there is something wrong with the electric ( electronic ? ) or programms ( programming ? ) , robots will become a good - for - nothing machine . Surposing everything would depend on robots , What would human beings be like ? Hellow = ) Theregore , I can ' t sleep . . . This year there was also a street market where you could buy paintings , bracelets and other things , many people partecipated . Our baby will be born this Feburary . I thought ' bout a babershop Today I went to a babershop . I took TOEIC test last Sunday . I work Itarian restaurant . Although , I do n't know hou to use it . This is one of my favorite piont of my English school . Usually there are 5 ~ 7 adalts , including the teacher , and 4 ~ 6 babys . I started learning English in junior high school ( from 13 years old ) so I ca n't become bilingal . It was very delisious . Then I went to Jill 's cafe ivent with my friends ! Jill sutuart invited me to it . and he apolygizes to Jenny for for what he did to her that night . I went to the National Museum of Korea for seeing the histoy of Egypt . Today , I will attend a lecture by a Finacial expert I will think it over because the subjicts that I choose are very important . I 'm feeling somewhat wierd since we do n't have the summer time in Japan . So I sent a message to him `` When will you call me ? `` And he answerd `` 5 : 30 I will meet you at Arsenal station , OK ? `` I went to the station , and I was wating for him , but he did n't come . After that he sent a messege to me `` I 'm sorry . My friend had a poblem . I desided not to promise anything more with him . When I was dffense , I only striked . It rained heaviliy today . I heard on the TV weather forcast that a few days later , it 'll be hot again . Of Ofcouse the camera was broken completely . I have studeid American and British literature for about 3 years . Espeicially when you take two totally different language courses , it would drive you crazy . Everytime time she starts to choose students to anwser her questions , I always pray that she wo n't call on me again and again . I live in Kumamoto city , and Kumamoto city has a similer altitude to Los Angeles and Phoenix . I was presented to it by my host mather when I stayed with my host family in the north of England for the purpose of going to the special school as a foreign staff member . During the lessons , he is smiling in front of the mirro . Hugh Laury , who most of us know as Dr . His position was offencive half , Midfielder . I 'm willing to corret essays / notebook entries writen in Korean on Lang - 8 . But after a period of training , I learned to opreate it . That 's the reason that I have to say to all of you I 'm sure that I 'm a beginer both in English and using a PC . So now you maybe feel funny and laugh at many mistakes in the English sentencese written by myself . I 'm dissapointed how limited my vocaburary is . In total , we might as well wait the shuttle bus of Carrefour due to its convinent . but it 's ok . mistery is always be a thrill , right ? Our Institue congratulates yours on its 30th anniversary very much . Havy rain ! ! It is hard for me to consentrate on studying . Because my frieds made girl friedns , except me ! Since I finished military sevice , many things have changed . From IT technology to peaple 's value . I could n't adapt to this new socialty very well . was on stage as a menmer of his band . I do want to play this music very sllowly . My favorite pianist , Fredy Kempf , always play the pathetique mov . 2 very sllowly . I do n't know wich is the correct expression to say . That the copper `` gets reduced `` and the zinc `` gets oxidated `` . . . ? I am interested in learning Eglish and hope to make friends from many contries . If you have a question about Korean food , education , cluture etc , would you contact me ? As you know , the stituation at the nuclear power plant in Hukushima plants is terrible . The company has a big luxury accomodation near the nuclear power plant . But the company has locked the doors of the rooms and forced the field workers to sleep in corrider with blankets . The Tokyo Electric Power Company said `` We will use the accomodation afterward so we do n't want field workes use them and get them dirty . `` Honestly speaking , I 'm a little nervos now . However , in response he gave me an winm with a funny face ! Then , the online teacher said `` What happened , Msasami ? ? there are many classics which were writen by our antecessors There are many modern works too . chinses books . Playing the trumpet is very difficult because I must use my lip muscles around the mouth and bleath adequately to keep correct pitch and rhythm . Now , our orchestra is preparing to pirform the pieces , Brahms ' Symphony No . I teache her Japanese . She is really preasant , cheerful and definitly different from sentences and grammers . Five people inculuding me atended this meeting . It was a good opportunity to think about my carrer . I tried to walk to the hospital near my house , but I cound n't . He can speak intermediate level Japanese , probably he can explain English glammers to me in Japanese . When I was in Sydney , I hired a damn cheecky Australian Japanese tutor . Oh , I 've drifted off topix . In short , we ca n't talk loudly in a liberary , so we ca n't practice speaking . Today I went to the stationery store and I bought a wonderfull ecologic notebook and two drawing pencils . Actually , I 'm not the type of a girl who writes a diary entry everyday , but I think it 's a very intersting system . Hmm . . . what eles should I write . . . yeah , I suck at writing somthing even my own language . but I could n't do anything fot them . Now , I rerally talk with people even if they are Japanese because of my busy work . One is to give encouragementin a positive secene . Today I applied for `` Kyoto Charity Fun Run `` and entried a group in the half - marathon . While we are reading mystery , we can pretend we are like Homes , and when reading adventure , we can jump from a criff like Indy Jones ! ! ! I thought about something that I took a trip through whole Tawian by bike last year . It was alomost in such a senson But I can learn about war throght movies , newspapaer and TV TVshow . he did not die fortunataly . idk how to use photshop : ( Japan Saccor Go ! It is dry and preety loud . . . However , the class lasts more than 50 minutets . For example , when I put any food in refridge [ refrigerator ] I must stamp date their labels . I caliculated the amount of words I need to memorize to pass the test . If the husband dies earlier than the wife , the property was to be devided into quarters , and three quarters would go to the wife , and the rest to the brothers and sisters of the husband . They came to the decision that they would let the old couple to divorce , and divid the property within their lifetime . The problem of property inheritance used to be a rare evemt , but is common now . Shiga prefecture is in the Kansai area , where poeple were not damaged by the quake . I had to have a small camera with a long cord inserted into my stomach , which made me feel a little scarecely . After the examination , I consulted with my docter and was shown a picture that depicted the inside of my stomach . I ate avocados few manth ago . There are only 8 students and I 'm not one of them because our teacher choose them according his personal sympathy ( ( ( maybe it 's just simplier for him not to take or deal with girls . Moreover , I get up eariler than others , because I can study and work more efficiently in the early morning . I appretiate it very much . I was chatting with my friend , slept , and read abook . But I hava a very happy holiday . Last weekend , I went to a museum to see a Japness painter 's 3D art . It 's so magicial , you can see my magicial painting in my photos . Today it 's rainning : ( ( ( I do n't like rainning ! ! ! ~ ~ ~ ~ ~ ~ ~ ~ When he went to Pais , he got into trouble at the airport , when his lggege was mintakenly sent to Africa . It was misterious and magical . It is caused by refrantion of moon light at a high altitude in fine ice . But everyone else wear sring coats . Please take a second look at the lable . . . This is an example of the difference of democracy betweek the US and Japan . Ttherefore I had decided to run at my fun - run pace . Lukily , it is easier for learners to learn the Chinese grammar point about subject verb agreement which often annoys the learners in some any language study such as English . I 'm sure I passed the oral , but in the other test , I had to write a composition ( no more than 180 words ) which was the 40 % of the total ( I wanted to write cost , but I 'm not sure if it 's allright , so what I put was . . . I felt nurvous . Ca n't 2012 be really coming ? I hope it 's never be ture I practiced lisening and reading . my japanese is so poor that I ca n't read the dialogues fluntly , even ca n't write a complete sentence . I beagan to lose confidence . Today is rainning . Talking with others is the most important part of learning a foreighn language , so I 'll try to use it at various opportunities . Everybody has the chance to give others gift in some celebrations and anniversities . ( anniversary ) My friend gave me a can of macadamia nuts as a survenia from Hawaii . I 'm still in the phase to test one of the module to see if it works wellTT . TT My famlly loves him very much , he is the most precious thing in my Now I 'm looking forward to the the Spring Testival , when Recently I started playing guiter . I am a biginner now , but I want to play `` There but for fortune `` by Joan Baez on the guiter in the future . It 's Japanese tradditional culture . footbal and other kind of sports . `` Week of Sports `` is very interesting and faseinating . It has n't been a long time since tha Japanese Prime Minister assumed . I think this is such embarrasing news for Japan . Altough it rained off and on all the time , we began to walk while chatting . The teacher is Philipino . They are all friendly and patient . These things are enemies to lerner . Although today 's weather forcast says [ no comma ] there is a 70 % chance of rain . . . . Although I have n't been abroad , If I get a high score on toefl , I beilive I will get a chance to go anywhere . OR Have a chance ? I have had a toothache theese past couple of days . Children of Emmigrants I watched a TV program about children of emmigrants a few days ago . The TV program showed that children of emmigrants who had to go back to `` their mother countries `` have n't been paid attention to . It is made of Hida - beef that has been rised around the meat of cattle , And it has a good reputation . It is famous for the delicious food and its history of calture ( no need to write here ) . I 'll be back tommorow or you can also visit our offic to pick up your delivery in the afternoon . `` Tomorry I will go to work again . I would like to study abord . I finished washing some glasses , and I was bringing it on a tray to the front counter through the tables , which most of them were filled by costemors . If it 'd happened in Japan , I difinetely would 've been forced to say `` I am sorry `` to the costomers since it may have bothered them . yeah ! Then , in my house with failmy , I ' lleat cake , decorate a tree - - I hope for christmas snow ! Goodbye everyone I should sleep a little bir or I will fall asleep in the classroom . Foreigners in Taiwan can feel they 're welcome whereever they go . And the youth are full of creativies as well . It 's so easy to imagine that they 'll tell everything to classmates and thier friends , although I do n't want anyone know . Althought I have learened the Korean alphabets before , Let me tell you about our vacation in Croatia this Julay . But I can not go this Sunday because I have someting to do aside from tennis . I boutht and ate a croissant in this bakery . There 's little time when I can be sutisfied with what I had done that day . Unless we were genious , it would be difficult to be content . Or even if we did as we scheduled , it would happen that we will forget surtain amount until we get out of bed next day . It will make it easier for me to caugh my mistakes . Today I was wailking in the delivery ward I cooked korea food . I 'll definitly write in my diary every day ~ . Beer gardends and about the 15th of August ! It is a paste of azuki beans and is very importatnt for Japanese - style confectionery . the contest spoonsor cut off all funding to the prizewinners . but I will work hard on the T - shirt desgin . Fortunately , I found a useful site of English grammer and I 'd like to study using that . Some people say they coud n't do what they wanted to do because they were too busy doing what they had to do . Many ' to do ' s are oppotunities to advance . The Giant Killer Catfish . From Hell . . . Stikes Back . Michail turned back and tried to run , but a huge barbel grabbed his leg , so he slided on the mud and felt down . Then he went to a hospital in Nanjing to have his operation , the docotor cut half of his lungs . We donationed money for him , but it did n't solve his problem . Three main characters unfamiliar each other were at the crash scene and each story was focused on their dramatical but tragic and melancholy fates . I was in a confusing sitiuation Today , when I was waiting for the bus to get home , three pople sat at the bench of the bus stop . They were speaking Cantonese . Both of them speak Cantonese so I think her explations should of been better than mine . If senior people become more and more and less and less babies are born , the senior peoples ' life would get longly and nobody can take care of them . I can have a pinic with my family on a fine day . Suess ! So I encouraged myself , I could get beneit from this experience . Its even popular to put fake eyelush on their eyes . acutually , I 'm working for a beauty salon now . And , I like tyhoon days . Tyhoon days make me excited . I guess one of the answers to this question is , people and money from all over the world are comming to London because of the less - regulated market or something . The party was held at an Italian resutaurant in Shiodome which is one of the most modern places in Tokyo . There were already Chiristmas lights up . Mozalt said , I think , well . . , I SHOLD even though I 'm not sure how the security updates work . Because I 've ever played basketball and handball , initially I suppouse it 's just an excercise and I 'm a little thin to engage in sport . While I was on Lang - 8 she asked me to open Youbute and look at Avril Lavigne . Now I 'm not confortable with hot and spicy meals . . . I do n't know how to thank the person who corrct my English in Lang - 8 . Now , I want to make a lot of foreign Frends , I want to talk about many things . My dogs let me know the snake came to my house . They were barkeing . I am social welfare woker . I help the poor , handcap , and the elderly . If you 'd like to enjot the long stretch of the countryside nearby , I recommend you to take a slower train at a nice comfortable speed where you still get to see the countryside rolling by . I noticed that I need to improve more on my English writting skill . I 've been to Hawai before . I hope you are well , I am the graduate student from Tokyo University of Marine Science and Tecnology who guided you around Tokyo when you came to Japan , two years ago . I am e - mailing you beacause I have a pavor to ask about the article you presented in Nature magazine in March 2008 . I guess this is the most importan quality that I have written about . Hell , everybady . The staff explained that the chef used coal to roast it and it was on theif recommended menu . I am a student . I am studying Japannese . Moreover a thaughtless act or remark can spoil a perfect relationship . lately I take a shawer twice a day . Menbers of Twitter gather in the local area . I only talk about somethig concerning work or a greeting . I learned a lot of English words , grammer , and about the cultures of foreign countries . Useally , most Japanese companies close on accounting in March . I can spend the time reading about garmma . I 'm happy when I read books , sometimes I would like to sleep on the books . I try to drink water alot , that 's good and helps me have alot of oxygen I know I write oxygen wrong but I write from my heart . I enjoy . I 'm really confused about the passive voice I try to do excercises but I usauly have to open the anwers all the time . Today I did not read but I will be at home after I finish internet room . I bought fruit before I took the bus to go home . I eat on the bus alot I feel headache like I drink beer . I 've run out of weter for my contact lenses . I must buy some today but I have a parblem I forget to bring my wattet from the office so I do n't have any money . I am not worried at the moment I have a card for the ATM , I can withdraw money using it . But unfortunately , as the lsland is not very popular for Japanese tourists I ca n't get enough basic information However , the weather in Pisanulauk was really hot . Recently , what I 've been wanting is `` Rumba `` , a cleaning robbot . It is so clever that it can autmatically clean a room . And , the nalaition says `` Your job is grillig ( ? ) . Something hapended to me that got me down . I get up evry morning with the feeling that I 'm loser . He is interagence and cool . Every first greaders showed blow art . This movie stimurated me . In fuct , I was studying Meteorology when I was about 20years old but before I knew it , I stopped being interestd in it . So I useally cook my own meals . Today , I cooked Ramen for my dnnner . Practicing Englihsh writing So , it is difficut for me to identify their reasons . I hope tommorrow is rainy day ^ ^ ; I had an English lesson that includs just answering questions . I had a nice time with kind and friendly people , saw so many awsome things , and I had fabulous food and a comfortable hotel . Actually I didn ` t know much about cambodian history so it was a good chance to sutudy it and it 's especially sad past in the modern era . The travel was not only enjoyable but also extention my knowledge . But one thing that I realily love about it is the appearence of the phone . And it 's good for moman . Before tha examination , I have n't had alcohol for a long time . But I have to get up ( and study ? ) to get a better score in the exam tomorrw . And I will go to a seminar about psycorogical education , I will eat sushi , I will meet my friends , and so on . I thoght that there would be more than 3000 people . When we lined up at the start line , I was a little nurvus . Although it 's made by Addidas , it 's a pity that it 's even worse than the last one . I need to improve my English writing skills , so I decieded to write a diary or something on lang - 8 again . I wanted to learn Taichi so it was a nice experiance . I have decided to do the following Taichi streches every morning . I 'm goint to do my best ! ! But it occurs to me that writing about my condition in Lang - 8 is alos studying ! ! I remenber that I also paid for my dates with my allowance . But in the USA , boys have to pay for everything , bus fare , movie fare , humberger and coke . Unfortunately , it was a cloudy moning . I tried to take a photograph with my cell phone but nothing had been taken except the gray clouds . If you know and use it , please let me know what your recommendation recipi is . Japanese do n't have the sence / notion / idea of entertaining ourselves . If I wanted to ask the simular question , I would say `` What do you do when you are free ? `` In this site , beautiful women have the plate that shows the curret time . The Japanese goverment has executed the plan of blackouts . It means the electricity is cut off at a regulat time every day . So I found that electricity is one of the more important things for our dayly lives . I made a big effort to learn , because this is so intereting for me more and more . I have never thisexperienced this . I am still a university student and English is nesaccery to get high credits as well as graduate school . I really get strees out now . Oh , I forgot to introduce a speclial spot . I quit my French course because I have become more confused about Spainish and Franch . If I do not stop them , the chattin gets worse and worse . The morden communication tools make our communication more convinient . For those people I can check their etiology one time , I would try my best to find a better therapy , and for those whom I don ` t unknow their etiology , I tell them that they need a general checkup . I also need to talk with the docters and nurses on duty , and tell them what they should pay more attention . Daisy Duck in particuler is good . The pary finished very erly because of a thunderstorm . I 'm going to run around my home tomorrow , weather permmiting . I woak up at 7 : 00 . They knew that and siad `` Go for it ! However , they are leaving Japan becuase their exchange program has finished . . . They are my good friends and I learned mani things from them . I really love Aussei life ! and I 'm looking for a new job which is conected with English . Because , oil ( gasoline ) price is getting expencive recentry . I have a doughter who is 1 year old . But a bicycle like that is not fashonable . Generally it 's all about using the opponent 's force to beat them : D This aspect is especially important for me , as I 'm only 155cm high and although I 'm quite strong , my strenght is nothing in comparison to that of an average guy . The more the preys move , the more they get tangled up in the traps because it is as if every single thread of their web were made up of adhisive glue . I really wanted to go to a Itarian restaurant `` MAX `` one more time , so we went there and ate black pasta with tomato sause and meat roaf and drank sparkling wine : ) Everything was sooo good . After dinner , We went to `` The View Rounge `` at Marriott Hotel . My school councelor Hannah told me that I should go to this rounge before going back to Japan . I think I need to build up my volabulary to get a high score for TOEFL . They are humous but sacastic . I 'm so glad that three of my requests passed and that I receieved two messages from Lang - 8 . I grilled a big HOKKE in the kitchen . I serched and found out that it is called an Atka mackerel fish . Today , I talked a lot of things about my feture with my aunt . People in Canada usualy put their feet across a seat in the bus . FYI , the exchange rate of JYP / USD on January 15 , 2009 was TTB JPY88 . 25 , whereas today 's TTB rate is JPY99 . 67 at our bank . I made a dialoge using some idioms and vocabulary that I have learned today . I stowed my carry - on lugguage , and asked a person in front of me to pull his seat up a little . One of my friends had shown me the ropes the other day , but I coul n't remember . Most of them have excellent knowledge of thier fields technically Native American jewerly I 've just learned about Native American jewerly . But , the jewerly of the Hopi is rarer than others . Recently , I am thinking about which lauguage I can learn other than English . Also , I am thinking that after learning Spanish , the next equire is for French or other languages . On the other hand , I am concerneed about this fact because my English is poor . Acoording to the experience of my friends , I should stay home ( or at a library ) studying and , I should not go anywhere else . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some conforts . My favorit area is finance and economics . My background is in mathematics However , now an economicial crisis is happening all aroud the world ! On the ferry , there were many Korean torists . I am sorry that I didn ` t writte to you for such a long time . In addition , I do not know the reason why they started demo before the porice shot a man . The man is Cadian . Yet , there are many things to do , so I ca n't affrod the indulgence . Talking with people outside of Japan with different ethinic and cultural backgrounds is really invaluable exprience for me ! ! Playing the harmonica does n't seem to be crazy difficult , and first of all it is not expensibe . do n't If anyone does n't help me , I could post the jurnals I wrote here , in my blog , hehe . I really want to know the expression that I use makes sence . . My Pinapples But I did n't konw a better answer . My hometown is more southly than the town I currently live in . Now I am sitting on the lesson of Information technology , so I 'm writting the post in English . Today is an extremely hard day , we have exam and perfomance with school chore . I embroiderd a lily and made a card with it . Inside , on the first floor , there were a lot of portreits of young beatiful women with flowers and a little tiny garden in the backyard with armchairs under some palms . I 'm not in the moond to do my chores . there 's a three days holiday waiting for me , I have to make some preperations for my trip to Chongqing . . . It 's a sci - fi about a psyschiatric patient who My family name is Park and I live in Seoulite . Looong time no see XD But my English was poor , so I counld n't understand the American voice actor 's accent . If you watch the Japanese version of this work , and if you can realize an Oosaka accent , I tnink you are already a competent Japanese speaker . He sells his wath in order to buy a comb for his wife 's hair , and she sells her hair intending to buy a chain for her husband 's watch . However , Serbian is written in the Cyrillic alphabet while Croatian is written in the Roman alphabet , because Serbian people belong to the Eastern Orthodox Church while Croatian people believe in Cathorism . I want to go to a beautifl spot . For example , if you boutht goods at a shop you can get points , and you can use the accumulated points to pay for other goods . But my new office is in the city area , so I have to wear bussiness suits . Today I bought a lot of things to wear , for example bussiness suits , shoes , and so on . I guess I fogot to buy a new light . I am really worrid about my parents . Oh my god , my granma , who is 94 years old , lives in Aomori . I controlled my computer to watch a vidio from a long distance . I realy hate hospitals . I do n't know what to write , but I think that is sad to `` meet `` people and you ca n't tolk with them because you have diferent scheduls . The examination finished on Octber 16 , but my PC broke down two days before the examination . So , I got anoter PC and connected to the Internet for one week . I think that I 'll do my best tommorrow even though it is snowing all day . I am writing this English conposition from my smart phone . In a sence , I think that is true . But in my cace it is n't true . Tonight , we 'll talk a lot about incidnts we experienced in 2009 . yesteday ! ! I will be studying abroud in Alaska , US this August . My horiday For exsample , baseball , soccer and basketball etc . There is enough space to play them . Therefore , I can be relaxed wnenever I go there . My friends warry about me being too busy , but to see children 's smiles makes me very cheerful Actullaly before starting this league , WBC ( World Baseball Classic ) was one of my favorite things to enjoy after finishing my routine work even though we , Korea lost against Japan in the final round . Moreover , my hometown , Busan , is famous for entusiasm against bbaseball , especially the LOTTE GIANTS TEAM , which belongs to Park Ki - hyuk , LEE Dae - ho etc . How about we support them toghethe ? I heard that it is important for wimen to make boiled potstickers fast . I was going to make a team but I coud n't afeter all . I was sad and disappinted . And I do the others sports like badminton and volleyball every Weddesday . I think he is a very lovery cat . I hope to be friedly with you . Then to improve my writing skills , I will keep an English diary or wtite an essay in English on lang - 8 , expecting some corrections frommy friends . Acutually the main pourpose of my shopping today was to get an electric fan which is small and stylish to place in the kitchin and the rest room of my apartment . I did call another shop to make sure they sitll had one , but they were sold out as well . It seems like everybody rushed to get electrical fans because many pople use air conditoners less for the possible of power shortage in the upcoming summer . I know it 's a good phenomenon that pople try to use more eco - frendly gudets , Therefore , I was expecting the clerk to check my age , but the clerk did not do it at all , hahahha ! ! ! ( Unneeded because it couldnt cause repetition . ) Korea 's largest conglomerate ( we call them chaebol , which means big company runned by a single family ) is Samsung . A few days ago , the third generaion of the Lee family succeeded the management rights . The process was absolutly illegal . Altough I do n't know wether I can get best By the way , I want to learn Japanese in my snmmer vacation . They use public transportations furequently . Therefore , the gorvenment should make public transportation much more convenient for the elderly ! Strenge town . I 've got an email from my friend who went to Germanny in Febrary . Anyway , I think the global economy will not recoverd in the near futre . the nowes source : URL In Japane , a woman filed a suit against the company which is a world famouse brand , PRADA . It 's a forbidden way to sell things by the head office , so she informed PRADA Mirano . I ca n't take you to PRADA Mirano , because of your unsuitable looks . `` In Japan , powre - harassment is not popular . If I was hit by a boss , It 's my fault . `` , so if one voices it 's starange or they should not hurt me , most people think `` He / she is selfish or has done something wrong enough to make the company angry . `` Usually , on firday night . on my way home I will walk around downtown alone , and I feel relaxed and comfortable . : ) Sometimes I will go buy some pancakes or cookies for myself as a little present , and I share them with my family as well . . . : D Just by walking on the street and eating something sweet can make me feel happy and satisfied ! Becouse I have to take T and the bus when I go back In my personal opinion , setting an attainable goal which can be achieved through a series of steps is the most essencial for keeping ( maintaining ) motivation . I conclude my dialy here . I ` m a studend and I can work only at nights . Especially since my favorite musicans are Americans , I enjoy listening to American music . However , even though I have studied English for a long time , my Emglish speaking skill is n't good enough . I have studied Englishi for ten years . I go to English coversation school every weekend . I belong to beseball culb . The differece is wehter I experience it inside or outside . From what I gathere , the lumps often come to you not only immideately but also after you 've forget about it . And the likelifood of us inheriting footsteps of our parents is very high , which is very unrecognizable because of the clossness among kins . When A car had just departured from / left the building , it was hit by an taxi that / which was running on the road . I hope you can help not only correct my grammar mistakes but also develope my arguments . Since the quake happened , the Tokyo Desney Land has been closed in case of the planned outage and liquifaction . Still , in Japan many people are struggling with the damage from the quake and tunami but meanwhile we are restoring our own country step by step . Of course I liked them all the same , but I started to gradually dislike the coulor , so I asked my husband to paint the shelf white . This mornig After class I usually spend alomst three hours in the cafe studying English with my friends whom I met at a previous class last month . I have deen a basketball team leader of my college department for last two years , and at begining of this year I had a junior take the helm . Unfortuneately , good things do n't last forever . I felt grat about this movie : ) In particular , I really liked Asian Kung - Fu Generation 's song . That is one of the reasons I 'm learnig English . In erementary school , we are taught to conform with people in our class . For example , when an athletic meet is held , we are forced to march like soldiers in north korean . Not just in school , but also amang your friends , when we go to ' KARAOKE ' you must sing songs your friends know . In oder for their economy to be safe , China really wants a `` Strong Dollar `` . . I entried the half race ( 21 . 0975km ) . Short Dially in School I blong to Society for the Digital Study , or a computer club . Oh , the class after school ( at this school ) will begin in a munite . I am going to watch the DVD of `` UGLY BETTY `` that I rentaled from TUTAYA . TUTAYA is a famous rental shop in Japan . Is studying English abraod good ? I think studying English abraod is good , but I do n't think it is suitable for me . If I were brave enough and had a lot of money , I might try to study English abraod . I would like to use Englsih fluently in business . Unfortunately , I had a difficult hard time communicating with the telephoone operator . Even now , the afficted areas suffer from supply shortage . I 've been using my kotatu since the beginning of December . Basketball , Vallyball , Soft - ball , Tennis , Table Tennis , Softball , Soccer and Jump Rope . I played Basketball and Vallyball . I started playing dragon quest 9 which was relased last week . Today I am still tierd . I went to my friend 's bday party on fryday night and only slept for 1 hour . Going out with friends is very fun and exciting , but too tierd . I was so tierd that I was dozing at work [ on ] Monday and today . Due to the disaster at the Hukushima Dai - ichi nuclear ( power ) plant , almost all power plant activity in Japan has been suspended . Couple of mothes ago , I took a test called TOEIC , which is an Engilsh reding and listining test . When the score was anouced , I was supriesd becouse I got 930 . I was relly gratifed and proud of my score . Education or practic is the best way to learn valuable skills . Nevertheless , peole who works for various jobs are able to gain much more experience and skills than students . On the other hand , the education that people received normally is the foundamental and basic knowledge , and teachers do not teach their students techniques quite often . To sum up , by contrast , people obtain more skliis or techniques in work than in education . In addition , thoes with many skills are more likely to match the demand of society . So I went to the barbar this morning and dropped by the book store . He is a Japanese coedian . He has a good sense of humor . In this company , I dealt with modern art , contemporary art , decrative art , ceramics , jewelry and watches so I like them all . I 'm especially interested in contemporary art and jewelry . There was interesting camaign against hunt for cheetahs in Africa . English . My homework . Letter to the magazin `` Shout `` . Can you give advice to this girl ? Please , help me ! ) ) ) Sasha writes that she has some problems with her famaly . My advice to Sasha is : talk with your parents , do not be alone , find a hobby , stady better and do not worry . I hope that Sasha will find common language with her famaly . I have a question about how to use the phraze `` like that `` . Coulda boom be comming ? I sometimes remenber old songs . It is `` We shall overcome `` a famous as sinbolic song about But I 'm lerning English now so that I can understand people of vourious countries . The other is a `` Collective House . `` This literally means that mainly younf poeple collect together and live together . For example , in the TV , the camera is focous ' on the ball only , and we ca n't focus on anything else like the goal keeper , soccer players , etc . It was intresting , but expensive . For example , we can get healthier body from physical exercise and improve our blood circument . Playing basketball is good at improving the height of your body and improving our fridndship . Apple 's new gizmodo , the iPad ! ! Apple 's CEO , Steive jobs said that ipad will take the place of I had no chice but to use my left hand . Our prouct base will have a rail link by the end of this year then we can combine rail with sea transportation , providing more convinence with less cost . Elosed are some photos of our products . Naturally , the color in the pictures is not the same as the true product . If you need to konw more about our company or our products , do not be hesitate to let us konw . I tink it 's a strange dream . Lynn said ' You miss your mom and UGG very much ' lol > _ < ! ! ! I am afraid of snak , when I was a child , I always had weird dreams about snak . Giant suhi But I think that there can be giant suhi in America , I always gaze at my PC screen , and I make a dicision whether the application is similar to the past one . And I hope I will make friands with many people for international exchange : - ) very interestting . I guess that maybe I cought a cold . It has a strong tannin and peppar like tast . For example , you have been practicing catching insects for a long time and but however well chatch insects in a forest , you wo n't be able to get them if it 's raining when you go there . In Japna there is n't much newinformation about Russia . I want to learn about foreign cultures by unederstanding foreign languages As a third year university student , recently I have been very busy ( ? ) writing thesis and other term papers , doing many assignments and sometimes resarch . Oh time flis , it is a school night and I have to get up early in the morning . It was so humid and hot in japanese this summer . Je m ' mapelle Ryota Misawa . Unfortiently , I 'm still ill . . . how keep in balance both the preservation of the enviroment and economic growth . Yesterday , I was taken to a dim sum restraunt by my friend . My old neghber died . I would like to improve my Einglsh skill , so if you find mistakes , please correct them . Correcting is dificult for me ! ! As the topic , can I use this sentence to discribe a person who is trying to do something first or is the first to have done something ? this sentence is translated by chiness , I want to konw if I can use this ? ? ? ? I 'm glad to be able to write again , and I hope I can write more frequetly so I can continue learning and improving my English . I sometimes find it very difficult to correct Japanese on lang - 8er 's entrries . I had to work yesterdas too , but I 'm off today . Have you ever had to repare anything in your home ? But I was still missing the Korean ondon system . He is an internet engineer , needless to say he can speak both Mandarin and English fluetntly , and holds `` PR `` . 3 - A special lunch menu as a Veitnam rice wrap . I ate / had it with two of my firnds . I think that the forigner 's prank is great . . . I feel happy that my idoi Kim Hyun Joong is waiting for a za a za flighting Today I registere here , this a nice website . I would like to make new friends here and of cours learnin English . This is a very useful service . : ) greeetings to all of youu . I Iwant to be a juior high scool or senior high school English teacher . But many ereas are still awful . Food is the essance of life . As the saying goes , `` Variety is the spice of livfe , `` food bears the same meaning toward mankind . Rice can be made into inumerable dishes , such as fried rice , sticky rice , and rice cakes , to name just a few . Since food can be so varible and tasty , we must highlight the importance of savoring food , for I believe that our appetite dominates our lives . I will take three regular classes as ussual American students do . I started this three minits ago . My hobby is travering ! I went to Cunada two weeks ago . Everybody was scrumbling to make use of him . Then , Shinjo met his biological father , who had abondoned him The refrees were volunteers . I last refree one year ago . They taught me some expressions in Englishi . I bought it in August , because I bougt it early and I can got it cheaper . But , I wonder if it still makes sence in light of this huge natural disaster . For example , food may be too salty or too oily and spycie to look more tasty . Another reason is that most kitchents in restaurants and food stands are not very clean . Food that is made in the messy kitchents are prone to leading to sickness . If you eat lunch and dinner at home for a month , you can save about NT1800 a month , which is a great amoun of money . What a vicious cylce ! Because I 'm not a good English speakier . Usually , I do n't have any intrest in this kind of group or music , but one day I happened to watch a TV show focusing on it and was fascinated . In this websit I can make friends with different people from different country . I think that it causes a very postive effect . It had been raining , not snowing , when I got up yeaterday morning . So I decided to go through tha pass to go to Sapporo . It halped me to get rid of my fatigue from a long drive ! A large amount of this area is designated as a national park , therefore power companiese can not obtain the right to use it . All of us were happy and anxious to see our teacher , because we hav n't seen her for a long time . Sometimes I think I 'm afraid to be happy again , because in every relaptionship I have , nobody says ' I miss you ' . A nunber of people already died because of it . Recentry , I always wear a mask when I get on the train , etc . In China , _ parents and grandparents will usually give a red envelope to their children . It 's a cuetom . This week is the first week after the New Year 's holiday , so my colleags grought their souveniors . The Wheather is not so bad . Many signs are witten in both German and English . People at the ticket offieces spoke English . Some German words are very similat to English , which was also very helpful . We tried to persuad him to go with me . Omuraice is rice mixed with baked chikin and ketchup , and coverd by omelet . We are a lttle tired so we are taking a break right now . I woke up this monring with seollen eyes ! We are wating for an answer now . I feel really happy becase I will not go the company tomorrow in the mornig but I plan go there late after I have finished reviwe so thing at Sanamhoug I am really happy . She teaches me like I pay money to her but we plan to study english and chainese together . She is really nice and practice to teach me Chinese wheather I plan to help her speak Thai very fust . because I really like that she speaks Thai with me so on Sunday we plan to wath a free movie together at Suvimvit 55 road . May joy and hapiness fill every minute of my day ! ! ! So I need to lern about ad - tecnology and buisiness of using ad - tecnology . I 'm a big fan of Haruki Murakami : one of the most famous Japanese novelists , and my farovite novel is Norwegian wood . The point is that the children are very naive and nauty so it is hard for us to make everything go as we have planned . I like reading books which teach me how to deale with things in human life . Typoon are producted by unknown reasons . Typoon are Asia 's hurricanes . It is known that Typoon occur in the summer . But , Unfortunetly , VOA continue to annouce tragedies in asia because of Typoon . I do n't know why Typoon are happening these days . Kimchi sauce is made of many ingredients , such as clean powder of chili dried by the sun , fresh oyster , needle needelfishs , garlic , muchrooms , and etc . Particually , if you eat it with fresh oyster and kimchi , you will find it delicious ! But I ca n't comunication with forieger due to my anxiety ( ? ? ) about gramm I konw that I have to study with patience . I 'll be happy if you hlep me improve my weakness . It a story in another world like acient China . I think it have been translated in Chinese and Korian . He could transform himself into a salada , but he must cut himself into many pieces ( to do so ) . Tamato did n't know how . I think that our sociesty still does n't know the adequate [ distance from ] ( ? ) this new divice . Dad , did you see my grandpa ang grandma in heaven ? I also have to apply for the internatinal award ( like a little scholarship ) I thougth `` are you really from the spare key company ? `` Something to dring My name 's Irka and I 'll write hier in English and German . Usually , Japanese peple console by joining the funeral service wearing a black suit and also make an offering of money , This money is called a `` kouden `` ( a monetary offering to the departed soul ) , we give from 10000 to 30000 yen , and pray for the dead spirit and bow to their survivors . Even in Japan , if you do n't know when the funeral is , you ca n't send the `` kouden . `` But the day I was informed was only few days after teh funeral service . I know that Western countries do n't have a custm such as `` kouden , `` however , it is quite an important custum in Japan , because Japanese people have this `` give and take `` philosophy at their root . I want to be storong and beat my brother ^ - ^ Im 've been english for about two years now , and still Im not very good at speaking or even writing in this language . One thing that suprised me was that people on the Car1 got off at Suidobashi station . I saw he was almost brusting into tears . My Sapce Today and yesterday my school held a sprorts tournament / competition ~ I gave it a shot but did n't go to the finals ~ My health is never very good , so that I think I need to exercise more regularly ~ I decided to start running everyday beganing / starting next Monday . Jey Walker starts the talk by introducing manias . In Janurary , I 'll go to the violin concert of Hirary Hahn , who is one of the prestigious violinists in America . I 've been debating whether I 'm going to choose a smartphone ( iPhone or somethind ) or a normal cellphone . I suddenly think , `` Do the other foreingers eat eels ? `` E - mail is usefull because English people help me if my English is wrong , but if I send a message to English people who are not my friends , [ . . . ] I 've readen lots of manga ( you could say I 'm sort of an `` otaku `` ) , for example : `` Bleach `` , `` Naruto `` , `` One Piece `` ( these are the most famous , I think everyone in the world knows them : ) ) . . . The secound man in black was from Spain . I was nurvous . Staring at the whitebroad for so long made my eyes hurt today . I 'm usualy busy at work around the beginning of the month , but after then I will be free . We will go to sukiyaki resturant - MK resturant . I think it 's quite expensive becuase I can make this kind of food as good as they do , and the price will be lower 50 % than them . It is too difficult to be fluent in the absence of Enlish language environment . I 'm trying to go to Austraila this winter to work during the holidays . magazine . There was an anticle that says people sometimes will be My hasband also has to go to the one place that we 've wished to avoid very much . fine templature . But I work at a convinence store . My freinds seemed to the same people I know when I was in elementary school . We talked about nostarsic stories and recent stories . Because I wil get my salery , and the good news is that my salary will be increased This race was a half marathon ( 21 . 0975km ) , and about 200 runners entried . Though I was feeling a bit fatigued , I magnaged to finish with a time of 1 : 19 ' 49 `` . One of my language exchange partner is feeling discouradged now . Well , now is time to go , 'cause it 's really late here and I have to wakw up early in the morning tomorrow . nowdays I 've been watching `` desperate housewives `` The hottest tenparature in my office was 34 degrees c these days . It scaried me . I hope the pease and stability will be maintained . To achive that , I should study more grammer and increase my vocabulary . Lecently I started a twitter . And since twitter is very easy and fast , I want to use this for those learnig Korean ! Recentry I have been confused with judging a noun to be countable or uncountable . My firends somtime say `` Yeah , I understand what you are talking about , but . . . . `` . This picture is one ofe the fashionable hairstyles . I thought we would meet very often , but we could n't because her scedule did n't fit with mine , , I think it was helpful to go healty again . I can not controll my condition so it does not count to my decision . However , it is a very important point for me . In my opinion my first resolution for diat is opposed to the wish to be fit . Nuclear power stations are really good for the economy of some countries because it proves that those countries are very rich but it also creates some problems such as : health , safety , and enviroment threat . After the earquake and stunami happened in Janpan . It will influence so much for Japan and neighboor countries . I 'm looking foreward to going there very much ! ! Although I have learned English grammer for six years in middle school and high school while in Japan , my conversation skill is still not enough . Right now , I `` m in the lab to assist the students who are learning Japanse . But so far , no one has come in here . Also I 'm scared of thunder and lightning so I always fleak out like , `` Please no thunder and lightning ! ! ! Internship is an extracurricular class for students who are going to go abroad to work for a foreign country 's company for a mounth . I will go to a travel company and work there for a mounth . Next semestter , there 'll be an English professional exam which is the only chance here and I do n't have much confidence that I 'll do well . Accroding to the news , However , [ advanced ] laptop features and technical specifications are very atractive , even if the disadvantage [ of lower portability ] was considered . The clerk said they could n't take it back because the clothes had a weired smell . I have read a few blogs which say that olibe oil makes vanilla ice cream more delicious . Because it cools your body down , you comsume the calories in order to warm your body up again . Because itW is used often in formal situations , I did hesitate to use it but I do n't know any other words . ) I am in suciall studies class . If your hushand or boyfriend is very tall among others , they can protect you and make other females jealous . But , what a pity , I am not tall . I feel somewhat shy and unhappy when I am walking with or meeting some tall and handsome youngman men . Also , ur salay is quite important in your marriage and living with your family and partners family . As a hushand , you have to maintain ur family and keep a harmony relationship with you and your partner 's relatives . so that they can understand ur ability and respect you . Enough salay means enough capacity and status in company and socity . So salay plays an important role when we seeking partners . anothers will look down on you if you do n't have enough income . Others still think that a different education means different salay and status . Of course , all of these are just my personnal opinions . becaouse I played WakeBoarding every weekend . I live in my husband 's houese . However , this time it seems to be fixed easyly . But the computre crashed and showed the Blue Screen . My roommy , who is Japanese , let me know about this site . I 'm really happy to know this site and very pleasere to post my ' useless ' diary lol I will take an English conersation class at the office . It will bigin the thirteenth of October . Some people argue his behavior is too lofty and it harms Taiwanese degnity ; in fact , they think Taiwanese are not beggars and do not need hypocritical charity . Thinking alawys scares me , worrying about wheather I can make it , what I should do if I fail . . . More or less , a real society is competitive even for children , and unescapable incidents hunt them down . But thanks to my husband 's perents , who are sending us a lot of in season vegetables , we can feel seasonable . And this time , I boght English books . But I 'll try to stady hard . I love the charaters Although the series mainly tagerts children , I came across an article in the CNN website last night which enumerated a number of useful sites specially for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm of learning foreign languages will be sactisfied in this site , and also I 'll be zealous with people in need of my help . Yesturday was the elementary school festival , and I boiled 230 packets of udon . but I really have no choice , the dilivery time is urgent . I 've seen the news yesterday and I was shocked about what happend in Australia ! I have been staying there for three days whth my husband and son . 2011 comes in 39 days , but my New Year mood is aleady here . They ca n't get holday or days off . What is diffarence bitween income and salary ? I am Korean and studying English for the enterance test for a university . But this night is so cool that it is confortable to study . Photos of my country , Janan This bar sometimes hosts concerts . It is not realy busy ; but I feel my job is very hard . I need to remember a lot of wine and juice names . Sometimes I can not understand what the customer wants if they say some strange wine names very quickly . I 'll prepare candeis , a costume , and meals . Artists ' contributions or scientists ' contributions , which is more valubale ? The debate on whether artists ' contributions or scientists ' contributions are more valuable to society leads more and more people into fiere controversy . Admittedly , both of art and science are indispensible parts of our society , and the difference is just through the distinctive way each demonstrates its own contribution . The greatest invention of the light bulb has increasingly multiplied productivity , and an amazing technology , the internet , has made the earth becom a little village , bringing trmendous benefits to billions of people . Music , film , and all kinds of programms provide people with a better living environment . They are related to eath other . In conclusion , it is hard to compare the contributions of art and science . It is simplt subjective to say that one contributes more to society than the other . I 'm lokking forward to meet them . Then , I will be going to sleep I aways have a long time to sleep every day I will be furher on with my English then I had expected . ( It 's my firt dairy in LANG - 8 , glad to meet you here , and thank you so much for correcting my mistakes . ) Because of the examination for univercity , I 'm learning English everyday . Recentry , I am interested in European buildings and art . Becaus they are examination subjects . I have studied English in Vacouver for almost two mounths . I need to find a job here by the end of June because I want to impvove my English , and also because I 'm poor . I love MINISTOP 's chocolaite and vanilla mix ice cream . I belong to an amatour brass band . Tomorrow I go back to school here and I 'll introduce myself to my classmates , as is the tradicional : I have been trying very hard to find a frind for copying Russian - English a long time . A lof of people were gathering and watching the ceremony . Those who seemed to be priests or monks were heading into the Catedral across the Faculty of Filology of Salamanca univerisity . It reminded me that Spain was a Cathoric contry . I 've stayed here in Spain for about a year but I had n't felt the people behaved on the basis of their Cathoric doctrines . The day before yesterday , the president saied `` Everyone speak English , For example , you can say ' Good morning ' in the monrnig meeting . `` I can talk in English to everybady . I finished my graduetion thesis . I 'll prepare for oral exam about guraduetion thesis next week . Second , you have to develop muscle by excersising to burnnig fat . Do excercise regularly . Yesterday was the firstday time for her to dance on stage . In japan , most Japanese women working for night clubs are likely to hide thier jobs however she did not . Yesterday was my bithday . Perheps they are impressed by the deep - rooted loyalties to his teacher , but it seems like an effort that is made to nip the talented untouchable boy in the bud by the nobles . We are in a century in which we learn to do our best to achive our dreams and fight for our happiness . An hour later , they were finaly done ! I asked my daughters to play togeghter with me , but they chose to go to a festival in the neighboring shopping arcade . That movie gives a messege about ' What is the humanity ? ' I have been strugging to stay awake until now , but I shoud have slept earlier . However , business is more of complcated field . My hobby is table tennis , I play it every satuday . Cristmas Eve Today is Cristmas Eve ! She spend Cristmas with us for the first time . Merry Cristmas ! I walked for fourty minutes . So , I started this site and I also boght a DVD called `` CORE Rythms `` . TheDVD itself was not funny , it was just a regular dance excersise video . I often see many visiters from foreign countries in my town , beasuse there are alot of old Japanese Temples in my town . Of course , I visited MoMA when I was in NY this Septemer . Especially my bocubrary is terrible . . . I 'm nervous becouse my English skills are not good . In fact , I am very nervous to writting in English . I had a visit today from a friend , who whant to go to the cinema . I often weard the one - piece dress . I 'm very cofused because I do n't know what I should do . . . I did n't sleep for long enogh , but I could n't sleep . Maybe I 'm afaid to stand up to them , or prehaps I lack the courage to say `` no `` to other people . Today , I was with some friends and I really enjoyed learning English as usuall , laughing and having some snacks . That made us lough out loud since our class had a warm / comfortable atmosphter . Hi , I live in California now and still need to learn English to survive my daly life . Recently it often occured to me that the number of children that play outsid is on the decline . Yet when I look back to a couple of decades of past , the chang is enormous . I wonder if this socil milieu does n't jeopadize their phisical and mental helth . I will read English articules about football . He is 90 yers old . I want to pracice my spoken English , but I ca n't find someone to talk to . If antone would like to help me , I would be very appreciative and I can teach Chinese back . The Japanese who are poor at comunicating with foreigners We study Engish for eight years from Junior High School to Second Grade in university , yet even so most Japanese are poor at comunicating with foreigners . When a traveler asks a Japanese [ person ] for directions in English , most of us would say `` I ca n't speak English `` , waving our hands right and left in front of our faces . I guess that the reasons why we poor at comunicating with foreigners When we learned it , teachers put stress on grammer . During the Edo period ( 1603 - 1867 ) , Japan closed itself to other countries , so the Japanese had hardly any oppotunities to communite with foreigners . When I grow up ( become 24 years old ) , I thought I would have a job , know almost everything about the world and have a magestic appearance . Hi everybody , this is Serena here , and I 'm from China . I 'm working in Singapore as a nurse . I usualy talk to people in English at work . In ored to improve my English , I need you guys ' help please . He is learning how to write medical translations between Japanse and English , and I am supporting him . When I was using `` Chrome `` , the same refleshing happened but it would save my writing , however `` IE8 `` does n't have any such intellignet functions . Many beautiful templetes are included in it and I can use them easily . Keeping a dairy ( diary ) is very difficult in Englsh . I hav never kept a dairy ( diary ) in three days straight even in Japanese . What 's worse , I forgetted things easily . the summer holiday is coming - how exicting ! guestion : What kind of places are you interested in around Tokyo ? We shoul not forget March 11 . mmm , it 's defficult to explain . All the people do n't want to lose thier family , friends or girlfriends . In this movie , the mayor loses half of his face becouse of a fire . If I have only two choices , one is I will die and save my lover 's life , the other is I will live instesd of my lover . To tell the truth , this story was too defficult . especially because each sentense is very long . and ultimate substante . . I think and beleive that brain - science can give a better answer than philosophy my friends and profassor . Yesterday , when I was talking whith my father about where we can go on holidays he told me that he was going to go to Eastern Siberia for work at the end of August and he could take me whith him . I ca n't belive it . But it is n't certain . . . Our buner was out of oder . I spend a lot of time drowing . I went for a drink with the volunteers and students of the Japanese coversation class . One of the volunteers drank too much , and trumbled to the floor . The party ended , but one of his colleague from the company and my wife and I waited untill he could get up . Mother repare lunch . So , I want to get to be able to speak English and demand from him much more saraly ! ! According to the calandar , it 's Feb 19th . Recently I hav n't been able to get along with my current boss . What shoud I do to reconcile and get along with him ? Why the autum sky so high and beautiful ? In earlu autumn , the air is so clear , the temperature is confortable : not too hot , not too cool . I feel like I want to go somewhere in the early autum , to some distant place . There are high - rise condos , office buildings , TV stations , shopping malls , parks , wharfs , sotrehouses , and so on . I found that I made careless grammer and spelling mitakes . Please poit out , if any , more subtle mistakes such as : You will always need a parter by your side . I have desided to start practicing English this week . He is a native English speaker , and the more he got excided , the faster he spoke . I have dreamed about it since I was in Cuprys this summer , where there were a lot of English guys . While I was working , somehow I felt very uptight and beaten and I started to eat excessive amounts of strongly - flavored cheese cake . Althought the cheese cake is my favorite dessert , my stomach I know some basic words and grammers . because japanese food is wel - balanced and healthy . What I love to eat is mainly fish and vegetables , if there is soy sauce , japanese sake and a bit of suger and solt in the kichen , you can enjoy a lot of japanese food . When I went to a supermarket last night to buy some flozen fishes , I was surprised that there was difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! Please feel free to check my sentenses if you can . Custmors do n't always pay attention so I got ta work hard to let them know how our Gyoza is tasty and they should n't miss out on eating it . My boss told me uncomfortably ' Do n't stop trying and keep smiling even if the custmors do n't respond to you . `` I just hung out at my chrch with Korean friends to prepare for a Christmas performance . I respeced the good habits of the American people . But I did n't cry a lot of in graduation celemony . We are aborad right now , and we thought we should go out , but now we changed our mind for some reasons . ( ? ) So I finary got up after eleven . I will never fotget his comment ! ! For me , writing in English is more diffcult that reading it . Happy birhday especially Eupopean economics . I do n't do any sports now , but I belonged to boat culb in my univercity , I was very surprized to hear the news ! ! It is very dengerous country . I went to work useing new shoes Second , I have to grasp the secret of knowing the right timinig to remark . Let me tell you what happned yesterday . `` No probelm . The show lasted only a few minture , because my boss was back so soon , so I had to stop the music and he had to stop dancing . Ususally I read novels in english for study purposes . Whenever I writh in English diary or essay , I think it is at the level of an elementary student . Sometimes , It 's har . Now I want to see a panguin . Because I 've never seen one and the spot where we can see one is very near in Merbourne . It 's been getting wormer and warmer by the day as summer is coming . I think one of the most surprizing thing is , the diversity of ethnic groups in Auckland . Anyway , I hope you can enojy your last semester in Waseda and I 'm looking foward to hearing from you about your life in Japan . Today we watched the movie called `` Inconvinient Truth `` which is made by Al Gore . Surprizingly , it is more than 60 days . So , I sat in front of the keyboad and made ( composed ) two songs . My husbund 's pay is in doller . I always feel bad when I exchange doller to yen . . . But somtimes it is difficult ! ! I ate breakfirst at seven o ` clock . I played soccor with my friends in the park last Sunday . Next March , I wil graduate University . I do n't have time untill I graduate , I want to do many things ! ! It is important for Japanese histry because there has never been a change of ruling party in Japan before . How many fish and chip shops are there in Britan ? When I speak English with my teacher , I feel so anxous and suffering . A teacher asks a range of guestions and a student tries to give an answer as fast as possible . Every Sturday and Sunday , I usually have nothing I have to do . I washd the And he loves sunshine . He always goes out for walk for a while and just sleeps on the scooter of my neibor . After suffering from the wounds and two surjeries , now if someone sits in front of him , he will climb on the legs and sleep on them , but do n't think it is nice , because he will also pee on you because he thinks that is comfortable , what a baby ! ! ! ! I think that all cities are beautiful because every city has different traditions , cultures , ecc . the city of Praga , the city of London and especially the city of New York . Talking with my friends at the same time on Sype Medicines or medical supplies have sometimes different names among contries . It would be like a nightmair to not have a dream . Are they controvercial ? I believe the world is wonderful and there are lots of things for me to disvover . And of couse I still surf every day like I did in Australia . ( ha ha ha ) It was very intersting . And I want to learn tecnical English , related to I . T . , too , because I need it for my work . There are IT - English courses at my company , but they are rare and quite exspensive and all places are filled . I go to the work place that is for kabdicapped people . Working there from monday to yhirsday I was waiting today ! I ca n't wait anymore ! I love english ! ( but do not love wayn ) I like to be a salesman , because saling things is a challenge . But I wish I could have a real conversasion . There is a typical colective dance in Catalonia : the sardana . It 's called `` Castells `` which means castels . And finally , the third one is a human castel made by the team La Jove de Sitges , from Sitges , the town where I live . I went to teach dance class today , and I played some songs of Alicia Keys 's albam `` unplugged `` at my class . I do it , becouse I want to be in steady contact with English . Half of the screen has lines on it when lit and only the othe half shows images . I love Cameron DiazThe very much . It took us more than 40minutes by walk to get ther from backpackers . If you get a good score on the tests , your entrance examinaiton for University will be easier , maybe . If you belived in me If someone belive in you , you belive in the world . If you know a good way , pleaze teach me . After eating two rice balls , I also sdudied . But now , there is no way I canstudy English qucliy . Finially , I decided to lease an apartment close to school for my daughter . I liked Michael Jordan very much , of cource . Pressure ( s ) about the path I was chosing , the career prospect and my future all in one word . I really appriciated that especially from my girlfriend . But recently Japanese weman work too . She seemed to be lazy whle studying with me . My favorit soccer player is Steven George Gerrard . Moreover , we are expected to have a wide range of imformation not only to teach all subjects but also to help students broaden their world . This is my 10th entory . The hibiscus , one of my plants , had been showing a smoll bud . ( for some days ) there were a lot of hibiscus with vivid red flowers everyhere on the island . odayI went shopping by bike and saw beautiful klouds . It 's been for about 5 days sinece I came to Vancouver . There were a lot of races in my aschool . However , I do n't have many friends ( right ) now , so I 'm a liitle nourvous . But before I came here , I decided to be positive . If happyness and love are only of saturation of the neurons phenyl - ethylamine `` . Will they keep me standing until I concide on some issue ? I want to say thanks to my Lang - 8 netfriends who have commented on my jourals and helped me to improve my English . I have printed out all of my jourals . I 'm greatful to my friends . Maintaing Balance These days , I am really cuious how they deal with some problems between those roles . From ninr to five , school work is really busy ( busier than ever ) , from five to eight ( thankfully not always ) I take graduate school clases , from eight to eleven ( sometimes from five ) I must listen to my son 's complaints , daughter 's singing , and her baby sister 's crying . I unserstand in this period of my life , it is really hard to live for myself , but it is a liite sad to me . I am always busy , I should find a way to maitain balance between roles . I am studying Chinese and Hygine for exam . It took thirty minutes to get to the English conversqational school from my university . In the lesson , I cound n't answer the teacher 's questions . I like to eat meat , vagetables , fish and so on . I think beef has more nutrition than vagetable . Therefore we should eat vagetable . So , I took a medicine and I staied at home yesterday . The best memory in New Zealand was horse trekking in Lotoruwa . Please check the follwoing sentence . Next week our family is planning on going campping in the forest . A man who is my ex - boss and correague gave me a `` JOBA `` ; the true mercandise name is `` RODEO BOY2 `` . It is a kind of exercise machine which was onece really popular in Japan . I ordered `` a `` new PC yesterday at the `` neiborhood `` PC shop `` whose `` name is `` Dos Para `` . I have n't had many experince and I 'm not a kind of preson who is good at speaking in front of someone . Is it goot or bad forlooking atinterviewer 's eye ? Flour contains water , proteins , carbonhydrates , lipids , minerals ( inorganic substance ) , and vitamins . The elements of an amino acid are usually carbon , hydrogen , oxygen , nitrogen , and sulfer . Tuseday , Marh 29 When the earthquake happened I remenbered her and I worried about her . I ca n't believe it because I take it for glanted that Osechi should be handmade . Today is HALLOWEEN , I do n't know wheter or not there is a party in my company . I do n't know much about this holiday , so I will wait for someone 's advice . Now , I 'm studying in Northeast Chna . I 'll be updating a lot of stuff since now . Please correct my English when its wrong , or inproper , and feel free to talk and ask me anything , especially people who want to learn Japanese that are from other countries . After a three day vaction , I 'm back . But I feel really tired and have no energe to do anything . We talked long into the following moring . get back togther - - - - > ( get back into a relationship ) that 's all . sex and the city is a really cool series , I really like it , expectially because of the hot scenes in it , I think all men like it ! By the way , he is a very nive person , though he is shy sometimes . Imagine how delighted I was the momengt I saw her email . I have to write an essay on Japanese education for foreign students , _ and I 'd like to know what ( all you ) Japanese lerners really think . I plan to go to the KCC farmars market . I have two chiwawas , Kai and Choco . Throught I am a leader of my department , I feel that I lack confidence . For instance , when I deal with something difficoult , I 'm usually filled with fear and nervousness . My mother ordered `` Tenpura soba ( buckwheat noodle with tenpura ) `` and I ordered `` Misonikomi and Sasimi ( Miso seasoned noodle and raw fish ) set menue . I went to home and lookied for any mail but there was none as I expected . I think most Japanese who came here are good at listening and grammer , but their speking skill is not good . I think that Jpan faces a large problem now . I am concernd about domestic and internal problem . And one I faild last semester , I got a very bad score , so I will study that again . I enjoy watching thecartoon , bye . Because as I said before , my section only has three men andso I want to make a good atomosphere . Thay will either go on a domestic or overseas trip . Some people will stay at home and play vidio games , or watch DVD movies . Becouse My coffee just runout and I kept forgetting to buy some more . Also , I am not a coffee addict . I could not keep my diary for a caple of days . becouse being in school is very tough , I was busy studying . The reason may be that my journals are kind of boring and there are relatively few users who are native in English conpared with Japanese users . . . . I told to somebody , but of course they did n't bileave me . I am writting a diary entry for the first time . yesterday I went to an amusmentpark park with my sister . it takes thirty minuits to get there using freeway . I left home at eight thirty for that but I had to pay twice the amount of money becouse we made a mistake in choising the correct freeway exit . first we enjoyed riding attraction that are selected by guiness book of world records . it is the most hirhest and fastest in the world . so we wanted to buy the photp but othere person was saying . . . now my fathere is studing in Tokyo . I 'm new here . My name is Ian Lou . I am Chinese and I 'm now living in Canton . all that I learn about English at school is not quite suitable 4 daily use and social daily communication . so , I want u guys to help me 2 learn some native English , you kno , something really English . As a result , I only took a 15 ninutes lesson today ( the usual lesson time is 25 min ) . parenting of their babies or adlescents sons or daughters and communication to give up working because of these surcumstances . I should be more carefu so as to not to scratch it when I drive . Cherry blossom time is cominng soon in Japan . Also , if someone feels very tired or they have stress , they think smoking can help them slove their problem . essencial oil . I searched the internet and I foud Lang - 8 . The musium just finished from renovation and the planetarium became one of the biggest doom in the world , so I am looking forward seeing the No . 1 planetarium . I 'll write about them afterward in more detail . He is one of the best artists in the history of korea art . And he introduced western Europ art in Korea . And there are alywas many foreign people . I was shopping for 3 hours , but I could n't find my favorite colthes . The lizard 's fase was very cute , I thought . I do not mean to sound arrogant but I often just beleive in myself regardless of these perception discrepency > < I wento to Osaka station and bought a ticket soon after . That meke me depressed and sad . If you buy our products with an accomdation service , you can get After that , I had scarecely gotten home when my friend and I took a car to mt . It is impossibel . Resently , I think have n't exercised much Suger 15g Solt 5g 2 ; Add yeast plants and suger to the bowl and mix with a fork . 3 ; Add strong - flour and solt , mix together for 30 seconds . I will understand grammer and be able to pass the 2nd - EIKEN exam . And also Japanese people tend to think that compasssion and duty are very important in a society . My daougther will start going to junior high school from this Tuesday . I prepared her itmes for school with her . She wants to go school early becaouse she wants to meet her freiends . Anyways , It 's the truth taht many kangarooes live in Australia . People Who can not pass the tast will have difficulties in the next semester . and then I had a very dericiouse meal . When I met him abou 5 years ago he said the same thing , so we wondered how he was earning money . I earned 7million yen once but lately I 'm alyaws losing money . ' I make money regularly ( It may be checken feed , I think ) , but ( 1 ) I 'll work as an English teacher starting next year . I jonined Lang - 8 . After looking arround the university , the student teacher bought us lunch . I am having fun while learning Engish again . I am following some tweets about lrarning English now but it is remitted by only PC , I feel . Anyway it is very convenient to learn foregin languages these days . I am not so smart but I want to thank those who have very special tallents to develop our lifestyles . I do hope they manage to use their tallents to make our world happy , comfortable and peaceful . I recently heard that a lehendary band will come to my town . . . When I miss something for being happy it 's when I 'm in loneliness , it 's terrible becuase you feel sad and very negative . But the food and the parties at and after cristmas Eve are so delicious that I can easily forget the stress before . It 's a little bit extrem to eat soo much 3 times in 3 days , I know . . she did thus unconsiously , I like the story of ' Winny the Pooh ' . When I was an elementary school student , I wanted to be a bookseller or an illustlator . But it is rainning . However , I was half finished when it started rainning . Today , I did n't get good scores on the math test which the techer gave us The techer decided to give us another chance on Wed . after I took off from the plane I went to the gate 27 , which is wrtten on my flight ticket and started waiting for the transfer flight . What made me eager to learn was the acciden in the Phillipines . Someone warned us to wer slippers in the sea , but mine just came off my feet . Would you ever try speed datung or going to a dating service ? * No I never try speed datung or going to a dating service . We didi n't expect so many people to come . Before drinking my third bottle of beer , I could take some good photos calmly and with a simle on my face . When everything truned to normal I just said thanks to him , and picked up my Canon for more photos of hugs , kisses , farewell and confessions . My tresure ! England is a very bautiful country ! ! Futhermore , the problem in the USA is that the children take guns tto their parents or their parents give guns to their children . Consequently if a child has a psychological problem the fact that he carries a gun is dangerous . For exemple , a boy may shoot his parents and his siblings . In addition , the secont amendement in the USA states that the population can have guns , and that people can buy firearms at any time . To conclude , severe gun laws are not the solution to the problem of gun violence in the USA because the second amendement is that people can have guns . At that time there therewas a ploblem . The person taking my order could not recognize my pronounciation . I felt myself falling into darkness with disappontment . If there was a small holl , I would have hidden in it . Throught this experience , I feel that I have to study English pronounciation more than what I have already done . We can get seven consective holidays in GW . Today , I cleaned my room . The desk and wardrobe and every anycorner are clean , so I am in a good mood . Today , I am going to go to the year - end party with ( my ) univesity teachers . That is the captial of China , and this is the captial of Xinjiang - - my hometown . On Samui we swam , walked around the island and tried to ride an ATV and an elefant . During several days in Krabi we visited some islands , tried snorklling and kayaking , and fed wild monkeys from our hand ( fed wild monkeys by hand ) ( they are my second love after giraffes ) . That 's the reason I 'm able to learn it more effectly than English and I have more fun with it . I visitted the ruins of Hagi castle and enjoyed watching carps ( Koi ) swimming in the pond surrounding the castle . The morning speach was about safty In my office , a mini meating is held everyday . The thairman of this meeting changes every morning . A mini notobook which tell would be the next cheairman goes round our section . 2 month ago , the safty speach was started by the chaitman . The perpose of this speach is to make us more aware about safty . But many members get comfuse and worried on what to say . Japanese people do n't like free theme speach . In this way , we have to think the speach for the specific topic . ( This would help us to improve our safty awareness . ) Ranging from acquaintance , knowing each other well to being kept apart ; just like the flowers ` sprout , it opens and withere . I came to this strang school , feeling enthusiastic in August , but now I stand at the end of September while keeping back the once boring sounds of the cicada . Pay attention to the lessions , ok ? `` , and I gave in to her . I thought I have forgetten her . `` No way . `` I continued sitting on the chair and lilstening to my music . I live in taipe now . Anyway , I hope the government will quickly change from conventional cedar to ceadar of a new type that has a low amount of pollen . Some customers odered customized drinks , but I could not take their orders because I did not know some of the beverage names . . . . In addtion , I should improve my listening skills too ! Many people in the world visit my city throught the year . for exemple next weekend If you have a dream to go to the chocolate factory , you try to uy it and see you there : ) The pickled turnip Leaves and cream cheese I had last dinner were really good , so I tried something similar , cream cheese on pickled eggplants and pickled Japanese Radis leaves . Then , I cut Japanese rudish leaves into bite sizes and pickled them too . I added chicken saute for some protain . owe : Modern Society owes convinient life to science . lend : I do n't like to lend money to people because sometimes it becomes a source of troble . pour : Helen Kellar understood the meaning of words when the water poured from her glass . I 'm writting my first diary . My fitst diary And another reason , might be my LAZYNESS . magandan gabi po . Listening ? Writing ? Studying grammer ? I think nowadys there 're a lot of thieves around us so we should pay more attention ! I realy want to go to America soon and study there . The small accident happened while I was driving , however it is something that nobady got hurt . The teacher told me some important things ahout life in there . I learned much about the school and knoe how to live well at here . I lesten to a worker speak about job hunting . I think I have to set the aim and try to acheve the goal . Are sparklar only Japanese culture ? Ten devide by five equals two . Ten devide by three is three with one left over . Distance devide by speed equals time . Distance debvide by time equals speed . There are many systems in our deparmemt . Belive it or not , there are about 40 ! I am hopefull that I will improve my E language with your help , and I will try my best to help those who are interested in learning the Arabic language . If you need to be plite , you can say `` watashi ha hashirimasu `` . Regaedless of the subject of a sentence , you must not forget to add `` ha `` . If you have any questions , I 'm wiilinng to answer you ! So it would be a taugh situation . Today I was litening to the English conversation program on I - Pod , and teacher said that when the English native learn the pronunciation of ' Moshi moshi ' , they say ' Washing machine ' . Tomorrow we have a rehaersal for the sports day . If it rains tommorow , we have to postpone the rehersal . He spoke so fast . . . > < Hoeever , even if he talked slower , I would not have fully understood because I do n't have enough knowledge of Christianity . When I was in Japan , they tried to pursuade me to join Christianity so suddenly , I was little scared ( or startled ) . Perhaps most of them are Chinese vegitables . I tried to cook something like that even though I do n't know what kind of vegitables . Wash the vegitable well and cut . Watcing my parents doing crazy things to continue working on music . and then EMI USA disappearent and turned into ? ? ? , something happened to the record company so it never went out . Brazilians , Mexicans , Spanish , Koreans , Garman , and Venezuelans . I realized that parant , friends and all people are really , really important in my life . My host mather gave me a T - shirt , a sweater and a muffler . It is a Japanese dorama . When I went to Hawaii , I bought many shitrs from Abercrombie & Fitch . Is that ture ? ? Internet additon I am addiced to the internet . I spend much time serching for information on the internet too . She and her family camr to Japan for work 21 years ago and has now become a Japanese citizen by naturalization . I am very happy to encounter a good teacher , but I always feel like learning a foreigh language in Japan is really difficult . Because I do n't have any chances to talk with foreigher , especially in the counryside like where I live . Today , I went to a costomer 's office near my company , and the person in charge gave me an Omamori . It is my first day making an entry on lan - 8 . I did n't bring good camera , I onlly used my cellphone to shoot a picture . So that I spend spent half of my twenties traverlling . As a result of the horrible situation from the Marth 11th Because of the earthquake in Tohoku district and the many victims of the earthquake and tunami , some parks have asked people to refrain from hanami this year . So if my writing has some wrong sentense or word , please point it out . when I went to austrailia for the first time without any basic information about there , they gave me lots of useful information for free . Especially , I was excited by the trumpetter 's solo ! ! If the battery does not have power to use , you can bite it with your toeth . When day would you perfer to start learning Thai ? That all the sentences that I have prepared for my student . If you know any polite sentense please recomment some to me ? By the way , my mildle sister took me with her to her room but I ca n't tsleep becasue I would like to write in my diary before I sleep . I recieved my TOEIC score today . Anyweay , I think that nowadays . Is it better to speak a foreign language in perfect pronaunciation ? I think that foreigners speaking Japanese in very good pronaunciation but it 's natural to have slightly strange pronaunciation . and I wish I could comunicate with anyone in the world . Once it starts , one term has concecutive days . And one class is seventy minutes , so it will take some effort to maintain my concetration . S . , China , Jerman , Finland , etc . . . . Also , when I was reading the driver 's menual booklet , I found a hilarious practice question : The main reason is that the company did n't acknowledge the problems cars had with their brakes and acclerrator and issue a recall until 2009 . I thought that Edomonton is a very flat place : ) and it is cold more than I expected it would be in Japan . Everyting was delicious ! We had a wouderful time . my daugter was in good humor ! Spring break is going to end the day after tommorrow . I 'm not a person who enjoys to study , but am a person who goes out a lot with friends , so I would have to try to make myself a deligent person . Recently I have begun reading English books because I know my vocabulary is n't up to scratche . I have writen my diary for the first time on this site . Tomorrow I will do stimultaneous translation at the Wendsday bible study . This is my first translation in public ! xO I 'm sooooo nurvous about it ! the nick name wasmade by czech friend in sydney wholived with me . Now I live in seoul . She has alredy made roast turky , pasta , roast potato , etc . Mayby this might be the happiest I have ever been . Saury is in seazon now . But actualy , it is a old American car . Does the pronounciation of UK English have more emphasis on some vowel sounds ? Now I am trying to input my profile in the incrute web site . my friend is in class now , I am waiting for her so we can go home together . I decided tologin here , but when I look lastest posts , I find that most of journals are written in English or janpanese . I just went to a university to get a graduation certifitcae and I was awarded a schoolarship ! with cultural exchang between a lot of countries . Therefore , I 'll keep on stadying . I 'm not merried yet and I have no younger sisters or brothers . I would like to get a tatoo of the Tiger or `` tora , `` not for fashion , I like it because it is considered by the Chinese to be one of the four sacred animal simbols , the North representing the autumn and control of the winds . Also strenght , courage and long life . He will design the process , I want a tattoo that is only and exclusively mine , I hope it can be ready before next mounth . I am very happy because the moment he came into my life , he made my life complelet . If the day I have to hate him comes , I will remember these days , how he treats me well , and how I feel so greatful . To top it all off , the lack of people and the cold breeze sort of threw in loneness while I was running in the grim and low temperature . We had lunch , a dish made of rice and chiken called Yassa . Unlike me . . . . becouse I ca n't speak English . I also ca n't think immediately of what I should say . . . Though It is a little dificalt to eat , it is good for our helth . Some soldiers in the helicopter are runnig out from the helicopter 's back to fight or to get ready for a fight . The helicopter transpoted these soldiers here and will fly away . Safeco Field is like a beer gaden ! LoL . She was qute and funny . This time , to our regret , the rumor was proven to be true . In other words , I am alive , because Korea could gain Indeoendence . I think it is one of the reasons why allmost all Japaneses ca n't speak English well even though we have learned English for a long time when we were in school . frist , when I started watching the video I wundering what he wanted to show . I 'm in a good mood today because my sister gave me a good anwers ( reply ? ) on MSN yesterday . it helped me solve a preblem . It is Sunday moning and I 'm going to meet some friends in the park . We should be have a lot of things to share with each other . see you agian . . when I come back . The crimate of Unzen is cooler than that of [ downtown Nagasaki - Note 1 ] . It comes with two CDs which include songs , dialogs and chants . Problems with Infulenza The spread of Inflenza aroud the world . The ful virus infection was confimed yesterday in Tokyo . I 'm studying Engligh . Nostalgia - - I want to know please if this essay can express the feeling of homesickness and the obstacles that person can face in the forgeon countries ? Sometimes adapting to a new country can be difficult for some people . However , some can cope with the diffuculties of living alone away from their parents . Ever since I had thought of anything to do I felt nostalgia towards my previos life . he only went to the nearly station , but also my cowoker and I went to I 'd like to improve my English so I can cmmunicate with many people in the world . Today we tlaked about ( the year ) 2012 . They say that the world will end in 2012 . I 'm happy becouse tommorrow is a holiday ! Today , I went to a guraduate school . Mabey this is the reason that why I come / here . Today Pastrers and leaders from Taowan , Uganda and Singapore came to our church . Of Ofcorse I 'm not sure If I can help them enough though . When I was twenty years old I went to Singapore , the Pillipin , and Japan by ship . It was so fresh and wanderful ! ! ! And I ejoyed walking the streets and shopping . Tell me what I sould say then . He was a little upsete and said to me `` You 're the worst teacher in this school ! `` She dances and sings durring the house party . I think it is more difficult to write English than to read Englsih , but it is more difficult to speak English than to write English . she was twenty - nine years old and I was twney - three . ( Someone said that this sentenience is the worst opening in the whole wide world ) I have just graduated from Insititue ( College / University ) and I majored in Computer Science . Differenct kinds of Chinese Dance have differnt kinds of feeling you need to capture . It should be felt by obsersation and by your body . They kindly paid me much more than I deserved , but it was tough work for me as I was n't good at deeling with small smart boys . . . I should have waited somewher inside the building but I had to feed my children . After that , I went back to my home town and brank with my grandmother and grandfather . After th coffee hour , he had planed to play soccer with his friends , so I joined them . There are normaly 9 gruops of 9 boxies in a puzzle , and each boxies has to be filled with a number from 1 to 9 , and also crossing lines and horizontal lines have to be filled . - The North - East direction is considered to be an origine of bad unluck . - The number 4 is an unlucky number , because one of the pronunciations `` shi `` means `` death `` , so in hopitals there are no rooms numbered 4 . I am wondering when my tootchach will get better . Thr pofessor who was my teacher ( mentor ? ) when I was a university student will retire this month . So I work hard , especially in Engrish . Some people say that if people do n't drink any liquide or eat any food , then they will die . This part is damn difficult for Japanese , because the singer does not pronunce each word in this part clearly . I am writing this entry on my journal at McDonald 's , the worldwide famous humbarger chain . in every store in Japan and then I can use my PC with the broadbank ( ? ) network when I come to McDonald 's . But in reality I can use the internet under the broadbank connection of 20 megabites per second over a cup of coffee , which costs only 120 yen here in Japan . job hanting Please Chack my diary Today , my friends and I , who are gradeuate school students , went to the sea to play water sports for one of the classes . . Luck has nothing to do with sucsess . Howeve , I belive that it is impossible for everybody to countless hours to prepere for the olimpics and resist to is not from only their luck , but also their effortness . I understand everybody can not do hard work and get thir your hardwork link , you will get success outmatically . agree with the statement that luch is nothing to do with success . The Conbatant who Wanted to be ' ' Kamen Rider ' ' I write this frist note to all of my friends . My school is very beautiful and a collegiate universtiy . Futomaki is a roled sushi . Hi guys , Hope Everything is ok with you ! The movie , `` twilight `` , is from novels wrritten by an American housewife . It is a story about a vampire and a beautiful colleage girl . I think I should go to hospital , but recieving tretment in an overseas hosipital is a little bit scary for me . So , I wach the TV in the morning . When I went to Hawai in May , I was reading a Hawaii guidebook published by Japanese company . Beacuse there are too many people in the library . at once . guss guessthen10 hours . I guss I study for more than 10 hours at times . According to a report issued by Dandelion Ressearch Committee , native species of dandelion have been decreasing , and introduced species have been increasing every year . grammartical skills and know many vocabulary ( sometimes even useless things ) what I hope for business out of Japan is that I work with free - style , free - costom . Gyg manga byori haveanime ( animated cartoon ) , it is also interesting . Today , I got into some troble . We read two special surahs from Quran for people who are dead , for their sould to be in peace . I do n't know what to write for my first dialy . It is amaging that such a large amout of money was raised in spite of the recent depression . I hope the discussion will be fruitfull . . . I have been to Egypt , Fiji , Mexco , Papua New Guinia , etc . Finaly , Anpanman always wins over Baikinman , of course ! But , I am not goot at English . becouse I like Japanese on all subject . what do you think about your neighber ? `` and `` it is a littele America `` as a joke . The comment assume me because when I drove with my friends who are Taiwanese and Chinese , they discussed thier identity and recognition of their respective countries . I 'll talk about what I learned today , both from my own experience in life and from others , . . . . or about some topics that I found that are intersting . . . . . hope you will join me in discussing it . I have to sonsider this as a problem . The topic this time is `` What is your most ashame story in your life `` . One is walking behaind the other and he or she is wearing a white hat , a shirt , a pair of short pants , and is carrying a dark green knapsack . Among all amerycan rappers I like only Eminem I need a holiday for myslef . I must rescue myslef from this confusing and meaningless life . But I am not going to break my learing course . The main actor Mike is an orphan and very poor , but he accidently met Leigh Anne who gave him support and trusted him . Suddeny everyting was covered in darkness . fortunately , it has n't darked yet . I could n't see anyting . The teachers gaved us illuminated candles . I ate kimch and rice for breakfast this morning . Therefore , I can speak French a little bit and I have some knoledge of the city . Instead of visiting popular sightseeing spots such as the Eiffle Tower , the Arc of Triumph , or the Palace of Versaille etc . I would like to visit my school that I attended , the park that I played in with my family , and the museams , which were too difficult for me to understand the importance of at the time . I took part in an event held by the church neaby . Chrischans always praise Jesus and pray everything for God . I did n't go to sleep early , beacause today I got up at 2 : 00pm . Do you have a special plan for summar vacation ? This is what I suffered this moning . Nobaody wears a get - up like me . I realy want to improve my English . . . I feel a bit nervious , but it 's a great time to test my self control . Do you know how to learn foreign lanuage ? I design new mechanical parts or improve existing perts for aircraft almost every day . Jesus as that shepherd coming to pick up what 's left of you , and see how God brgins victory out of defeat . Hi everone . But English is so diffecult . Of course , I also think about immgration . I think everything will be ok . I will ride out this strom . Tell me pleese ! It 's because our project is a qroup activity . My friend broght me some steam rice and they were so good , I have Tomorrow my beautiful country will be [ a year ] older , because tommorro is the 15th of September . The independece day is very interesting ; the people go dancing , _ and go with their families to Zocalo . Zocalo will be a very lively plae [ tomorrow ] . . . And there are many factors that facilite a coincidence like this to happen . Soonly I think : whatever , I 'm still me , another growing man . I watched a TV plogram ( NHK ) about Lang - 8 . Especialy , my interst are bioinformatics and immunology . I have stadied Korean . I went to Korea towice . I want to keep learning English for bissiness and chatting . She talked with us about descrimination . They lso did n't know how to express themselves . Our coach organizes diffrent activities like camps or excursions or rafting . During this meetings we congretulate them in diffrent ways and do different interesting things . Hello friends I am going to write somethin I have insited upon my belife for many years , but recently someone told me that I had made a mistake . They said I just live in my own world and never try to accept others to attend my world . It 's this real ? How confused I am . Since that I have been paying more attention to my achivement and thinking about my words again and again when I speak out . It just makes me feel sick with myself and I hate my charater , my achivement and my wrong feelings . And I chatted wuth my friends , on Facebook and twitter . I studied about grammer there . Yesterday , I flew to Edomonton , Canada . They dominated the airplane so it was a littile bit weird . The husband is a native canndaian and the wife is philippineCanadian . Kindly enough , they brought my baggages and took me to their house . It is in a traquil residential area and has beautiful garden where you can see evergreen conifer . In the back garden there is a husband 's favorite bonsais and an azalea tree and a small vegetavle garden . She is 16 but her English is excellent , especially pronounciation . According to her , she has already stayed for 7 months and studied in local interenational highschool . The examinations were held with paper tests and did not include listening tests , so I studied English forcuing on reading and grammer . The artist told us about a difficut request ( which ) he had once received . We are glard we choose Popo . By the way , now Popo is almost 9 kg and from that small cat became the biggerst cat I had never seen ! English Jounal - August I read the latest English Jounal ( EJ ) at the library today . It 's one of my favorite magazines , which comes with a CD in English . I hate the complicated ones because I can not understand the story as soon as I concentlated on the captions . I love studying languages becuase I 'm interested in the sounds of foreign languages . After , an American man who looked colse to 33 ~ 38 years old , walked up to me and tried to chat me up . In addition , I want to join a volanteer circle . Bacause there have been many witnesses . The only thing we can do is prepare for the earthquake , because it 's just a nature diserster . anyway I saw the movie `` Love and drugs `` yeasterday at home alone . I make vegitables soup and have it three times a day . I want to overcome this situation ( my caracter ) , but it will take a few times . By the way , recentry I am crazy about gosship Girl which is an American TV show . I hope he uses the same concentration he has for catching creartures , to do his homework . . . I study about the enviromental problem . I saw some elementry students killing ants just for fun . In the shope , the seller said to me : `` These will be great for your mp3 `` ( I have an ipod ) - and it 's true . The movie is called `` Sutter Island `` . I 'm looking forward to watching a movie called `` Inseption `` . Because , a large number of adult peopleas often say , `` Recently young peaple are not polite and they do n't have common sense . `` I 'm looking fowered to the future built on today 's young people . It was very short srip but I was able to enjoy it and discover the cultural difference between Japan and America . Some children were transferred to the hosplital due to heat exhaution . The extreme usage of air - conditioning caused the electric power company to stop procuding electricity . When I worried that he 's gon to bite me , Ms . I called my agent about finding a job next month because I 'll gaduate from this school at the end of this month . But look up at the apex of the triangle and you 'll climp up to the top . My insistence is that looking up your goal and making efforts brings you something which maches with you well . The moment when I stood in front of our classmates , the teacher was commenting on my partner 's errors in her persentation , so obviously it would bring a cetain pressure to me . I 'm exhausted , but lang - 8 makes me vigor . I wonder why I was fascineted by that ? Perhaps it 's from being brought up in Japan where most of people would be secular and athist . If my son gete up by himself , I would be late for work because I ca n't hear Mom 's voice . I do n't have enoguth time to do anything after work . . . . Then I 'll llmeet my friends , that I have n't seen for a long time . . . Jane is tired of dealing with customer omplaints and wishes that she could be allocated to do another job . My selection is not surely wrong , but correct : here is my final distination and utopia . While I was watching the Singaporean city , I realized again that I must get a job here , and chandge myself from a loser and cowardly man to a human . Sorry , today was busy as well , so I ca n't write a long sentence . It 's been aroud a couple of years since we met each other . We all will be suprised at how different we look when we meet together someday . I 'm CerezoOsaka supoter . Shinji Kagawa was a menber of this team . Now he blong Dortmunt in Germany . I like Jonyy Depp ! Breakfat is important Hello , my wonderful frined . It is about 8 : 40 . I take my breakfast early . What time do you usally take it ? I notice I am always hangry when I get up early , and after one hour I will be hangry again , even if it is earlier than usual . Please do n't forget to eat brakefast . Miyagi and Iwate had the biggest damege . For every day that I exist , I will have more energey ! Abosolutaly , making freid is another gole for me . lonlyness is a time you can talk over a lot of things such as human life and the purpose of your life It 's very easy to cook . Just put ingridients into a boiled Nabe soup . It warms you up , has a good taste and is healthy for you . In fact , I scoled him for misbehaving last night . my yonger sister and I went to a Guardeira for Spanish kindergarten , that diverse , elgant , beautiful , environment - friendly , positively Europe Culture My father took many pitures in Spain for family memories . And until now , occalsionally we saw the pictures and indulged in reminiscence . But when I was 14 - 19 , my father 's bussiness was getting worse , finally his bussiness failed by the time I was fourteen years old . For example Sushi , Takoyaki and Ramen nudle . I should buy the correct size tommorow . There were many harbs and flowers ( especially roses ) . Could you explain thse sentences below ? You must have to know a paassword . Acutually , I have taken it before . There are some Korean food reataurant near my home . I often go to Korean food restaurants becouse Korean food is my girlfriend 's favourite . It is served as rice and some Korean vegitables with Korean seasonings in a hot bowl , I know from my friends that Uropeain people do n't like to eat garlic ( ? ) Goood night . He is a Japanese songer . He is fourty years old . I rememberd a lot of things , like when I was a kid I flew a kite that my grandpa made for me . During spring there was often a lot of wind in my hometown . I ran and ran , the kite flewhigher and higher , untile the line or the kite broke . We have to registrate to get medical treatment in the clinic . The GP that we registrate with , must be the nearest clinic to our flat . May I registrate with the GP here ? `` We went because she wanted to go to Laier 's . I 'm glad to know such a good restraunt is nearby ! Yesterday , I had a party at the Atsugi in the Kanagawa prifecture . Very dificult , that song is . Yesterday we traveled arond Bangkok and today we came to the south of Thailand to the beach . I and Tyler are just watching them with their betiuful bodies . We are taking a boat arond the island . Accally I will remember this good day and save it in my heart . Also I looked at a variety of the British Museum 's artifacts , and I reacknowledged the fact that the British Empire had enormous influence around the world in the past . On the othere hand , prices in yen were too high . Also , as many people say , the food was n't good . Particularly , the Eiffel Tower at nigt was very wonderful . I have a lot of things to do , like my esseies by tomorrow , ( and I stil have them now . . . To take the side of Superman is very easy , he can fly and shoot optical rays from his eyes , he has super strenght and incredible endurance . I 've decided to take the Graduate exam instand of finding a job . When I 've been in higeschool , I have been reading , learning , and doing exercises all day . Hajimemashite , Domo Yoroshiku Onegaishimasu I have also started to study Chinese , French , German and Spanish and have finished my grammer books . I often regret a bit that I can not voice an oppinion I have . Becouse I miss my family and I 'll go back in 8 weeks . They are American Englieh and British English . word , spelling , grammer , and pronunciation . Since Australia used to be a colony of England , English in Australia is besed on British English . There are many other defferent spellings between both like color ( A ) / colour ( B ) , realize / realise , and learned / learnt . Elementary Worbook The finest Itarian restrant in Japan I love Itarian food and I like to search for nice Itarian resturants . I know one of the best Itarian resturant in Japan . The chef of the resuurant is very good at making pizzas . He got the win in the World Napori Pizza championship as the first Japanese champion . The pizza oven in this resturant is used in Itarian house of Aichi Kyuhaku ( the international trade exhibition in Aich Prefecture ) . This restrant has a very long bar in the lounge erea . The recommendable glass in there is St Christina ( Toskana red wine ) and Grappa ( the brandy made from streained grape leaves ) . I want to go Chezari again and meet the beautiful CEO of the restrunt . I opned my eyes and checked what time it was . My personal computer was brorke . Now , I 'm in the first year of being a docter , resident , At first we were excited to come to one of the hottest place in Tokyo but , we were disapointed and noticed that this shop would disappear / close down in 5 years . Second , the survice was not good . All they did was take pictures and dance to the noizy club music . I did ` t like those persistent salesladies at a department store , but I was surprized to see them . I 'm going to write a text `` End 1 `` at the right - lower of the first illustrarion . I 'd like to know about the public sefety of the US before going to L . A . Because thery have lost three game until yesterday . I plan to go cycling to see Bondai beach this weekend . I think that reading Nabokov 's books is better than wathing adapted movies . Nabokov 's language is delicious and he pays much attantion to small details , but it 's impossible to show this in film . That 's the most important thing for me at this monent There are lots of people from different contury . She is one of the most famouse singers in japan . ( Of course , the contents of the concerts were the same . ) It means that she paid about fouty - thousand yen only for this time . . . According to the news , an old man has been healthy althogh he had been drinking only cola without any water for some decades . I do not see pepsi in my neighborhood supermarkets or convinience stores . On the other hand , if the leader had many excellent subordinates , the single person style leadership would lead to quick and speedy decison making . This fieldtrip was a very exciting experience for me . She was a very very very friendry person , so I felt relieved . I want to know if they are really starnge . Should I read books or watch movies or drumas ? yestarday night yesterday night I had an arguement with my little brother who was a juniore highschool student , a 14years old boy So I 'm making lots of friyers on my own . After finishing up the friyers , I will hand out them at the station . The most important thing is to draw the attention of the people who are walking throug . I bet it will make a big impact on the pedestiran ! ! I do n't care if most people prefer dogs over cats . I like dogs too , but cats are awsome . Of couse , it can teach many languages . I can learn a lot of English waords . Languege traning If I had more time , I 'd be ready for the languege traning more . By the way , while I was on this site before , a friend sent me a lot of pictures and so today I am going to show you the beatiful pictures that my kind friend sent to me . Thank you . This is my frist time doing it . In the year 2001 , President Arroyo was elected and she started to negociate with MILF . but It has other meanings : serch word of list , like a sponsor It freezes or reboots only seconds after truning on . What 's wierder is that when it successfully boots and runs for 2 or 3 minutes without a hitch , it seldom freezes or reboots . But after a second thought , that does n't make any sence since it 's an electronic device , not a human or animal . Do you know DRRR ? , It 's a novel wirten by Ryougo Narita ? IZAYA is my favorit charactor in the DRRR . It is needless to say that they ate it greedly and quickly . Asians view life as everything being connceted and affected . I 'm participating the ACM / ICPC contest and I have many courses to learn . I also need to perpare my application for my study aboard , including impove my poor English , which I 'm doing right now . The Japanese soccer team won the Austraila team at the final , and won the Asia Cup championship . But I did n't watcht this game . So I had to go to bed with my daugter . I think they are the cutest in animls . I 'm always looking foward to the coming holidays This is my first article , so I 'll begin by introducting myself . I will improve my English skills and seek a suitable job there if posible . My boyfriend was a hot - tempered person , but he improvemented himself in order to stay with me . It 's not too difficult for me but lots of words really wear me out , expecially Literature . So I told him all of thes things and we could better understand each other after our talk . It 's an intresting course and also important , because corrosion exists all arroud us . We have 3 days off to celerbrate Labour Day . I think she is a prety girl but I dont know if I like her or not . I yearn having Korean barbecue , enjoying shopping in Taiwan night market , seeing a brilliant coloring temple in Bankok . By the way , how do foreign poeple feel when they come to Japan ? I was drinking with my frirend . I 'm Saori , and Im also a colleage student . I am not a systematic person : somtimes I can not express myself fluently even with my native tongue ! If you know English and want someone to correct your japanese sentences , let 's be frindes ! ! I want many friends to improve my English skills . But after I visitited there a couple of times , I can see them as professionals who entertainment the custumer with thier mannerisms and conversations . Basically it 's the same decipline as other forms of commerce . How do we provide value to our custemer ? It is hard for me to study Englis It is my first time taking English literature at the university and I never didn I recentely feel that studying English is hard after I took a class at Hansung University . Am I 'm donig well or not ? Recentry , he joined our English class , because he was interested in I am actually taking a English wirting class in the English department , and ( Quated from Korean newspaper ) Importace of a breakfast can not be emphasised too excessively . I do n't want to give up , I believe there 's a way to chage for the better . It includes correction of grmar , translation from Engish to Japanese and Japanese to English too . The Moring is not so bad because the teacher was not so tired and had a sense of self - composure . As the the techer felt tired , she became nervous . As kids were scoled , they became defiant . My mind is peacefull . ( Four degrees Clesius is the difference between temperatures nowadays and temperatures during the last ice age ! ) If the poloticians had listened to them earlier , the situation would n't have been that fatal . I like acction , comedy , mystery and so on . The highland is famous for it 's beautiful nature scenary . There are many fravor : salmon , _ cod roe , _ tuna , and so on . This trip was funny , I went on one of my schools trips , we went to Queenstown and Dunedin , it was for four days and three nights . There were 10 of us includ the guide ( who is also a teacher ) , 9 students , 4 from my school . On the secand day , we went to Queenstown . We watch the people doing Bungy jumps , then the guide helped us book an activity , I decided to do the Skydiving . This was my dream in New Zealand , because in Taiwan we do n't have this activity , if Taiwan had this activity , I think , maybe I would n't dare , because Taiwan is very small , we have no large open ground , maybe I would start to dive and after a little time hit a house , ha ~ ha ~ . Yesterday , I played footsall because I belong to my part time job 's football team . Recentry , I like to make coffee ! Execuse me for reading your dairy and giving some advisce , even though But I thought that I sometimes do the same shing as her . AND , we do n't konw what on earth the goverment is doing with so many taxes , while most people are living a mizerable life . This time , they are not letting the moomcake tax go off ( ? ) . And lastly , I recenly found this valuable and interesting site lang - 8 , which bacame my favorite ! Suddenaly , it rained and I was forced to go back my home T T Reading words on the iPhone mekes my eye sight bad . The UFC is a major fighting copartation in America . So , I tried to record myself speaking setences in English . My English pronounciation is terrible . I was exhauged . . . . Today is saterday . . . He was very nurvous . I will know the redult within 10 days . Obvioiusly , as a standard prodct of the abnormal education , I am also a test maniac . secondy , she has supported Japan strongly since there was a big earthquake in northern areas . It is obvious that the damage is still affecting the northeren people , as well as Japanese economics . As a reault , $ 1500000 in total was gathered during two weeks . This movement helped us definately . She presented her Monster Ball national tour offering premium VIP tickets to fans who volunteeer their time to homeless youth organizations , which raised mpre htan $ 80000 in proceeds to support homeless youth . However , when I hang out with my friends , I always wonder how the hll they can spend so much money . I major in English , and I 'd like to impove my English skills ! In additonal , I 'll tell you my least favorite proverb . That 's `` Two heads are better than one `` . I never belive it . I like this language and I think its characters are charming , fashinating . My complany buyer shirt and fabric export from China to Switzerland . I am a souring and quality contral . In my spare time , I like to go swimm or tour different places . The desire came out again when I started reading manga again and revisitting the Deviant Art website . Fortunately I could try several ( different ) classes there , so I could compare the atmoshere , the teachers and of course the level of each class . I have a litted / young son who is 2 years old . I want to get TOEFL score 90 and go to Kanada as exchange student . It 's a servics day . Becasue there are many things I want to talk about : ) So let 's get started ! It ' sthe final concert of MonkeyMajik tour 2010 ! ( The marche Japon Sendai , it is held every weekend at some arcade . ) At the market , it 's fun to talk directly with the sellor and farmer . Acturally , even after this God panishment , sometimes we threw his belongings into the incinerator just for fun . Althought I have two more final exams , I ca n't stop to read . It would be absolutely fabulos ! ! ! I recomend it . 2 You do not have to spend much time in the kitchen preparing meels I installed KakaoTalk programe on my iphone This program is a kind of messenger like a MSN online chatting programe . Recently , I have n't been studying my / the intermediate textbook on / about grammer in use . I do n't underatand it ! It 's bigger than korea ones . . . I heve visited the family doctor , and he sent me to the hospital . And my sickness was so hard / bad that the lung specialis said that I could n't go home . So people in Tokyo are buying eberything in the shop . So , I can not buy water , rice and paper . Yesterday , I went to Restrant Hajime for lunch with my girlfriend . My favarite dish was loasted lamb . It was so cool that we felt very comfatable . I 'm not familier with Europe at all . Let 's plant good seeds into our heart togerther . [ Please plant good seede into the garden of your heart and you 'll be sure to be happy unless somebody doubts you ] . Plaese could you tell me your own thoughts . I do like the older music too , Hungarien songs specifically . She said that her sperior did and said stupid things , and caused a lot of trouble . The eperiment is also waiting for me , I have experienced a tyfoon of level / magnitude 8 ever since I have stayed in Hong Kong . And acrually I think it wories Avi that we call Ji - Hyun Scott , a man 's name . It is werriten using an indian ink . I was seaty . I found `` Sleep tracker `` which is a wrist watch that can anylise the rhythm of one 's sleep , R . A famouse Japanese celebrity said , `` I can wake up much easier than ever with this `` . Yet , from the sidlines , they may be considered illusions . That 's why nowadays I 'm leading my life under the belief that something that manipulates us exsists and we are leading our life at the behest of it . Some part of me think that I could n't care less because if my theory is right , nothing was truely done by us humans but done by the manipulater . All too often , my students declair that they do n't know why they study . Sdudy English 4 , There are many people with a similer name to me in Japan . Sudenly when I woke up this morning , but I could n't be saticefied with this musical on that day . Whenever I leran English , I find Japanse interesting ^ _ ^ I read a comment in the textbook which said there was a very close relationship between vacabulay and success . Godness , who can tell me how to do it . . = _ _ _ = I hate the Korean ( alchol ) drinking culture . My sister 's company is forcing her to drink a lot of alchol even though she does n't want to drink . Then we put meat , vegetables , beans , toufu , etc . The weather was so roasting , made us unconfortable . * Agree ! * In the theater , the story was outstanding from beginning to end , it made me feel inconceivability , especially when the transformer chang their mind , it was very cool . My company is a American capital company , so I really want to improve my Engliash leval a . According to many newspapers , news programs and websites , the wilderness areas all over the world are endengered . * Coffee - Fresh is Japanise - English . I feel terrible and I 've almost lost my self - confidence and courage to do anoter job interview . We went from Wakkani , Hokkaido to Okinawa and enjoyed sightseeing , eating delicious food , bathing in hot spring , and so on . By curious coincidence , us five friends made a circle and pledged to proceed into bright futures at Takamatu Airport just one year ago . It seemd that I am buying the sacred certificatiom with money . If you are intresting in CLAYMORE , please check the following URL . I really want to study English well . I hope you can hellp me ! ~ She came by Shincansen . It 's also a wontherfull movie . After graduating from my jounior high school , I went to Switzerland to study other cultures and languages . My husband is goot at wood . The length is about three meters , the weight is 30kg , and the widthe is 80cm . NZ has a beautiful nature , many nationalities and tradionl culturies ( ex . I only know my faily , friends , school . . . Nealy 20 people came and together we had a great evening . In my workplace , English will be the national language in the future , So I hava to learn English properly . Izakaya normaly offer food and alchol at night , but Today is a frine day . So , at prezent I have just 300RMB on hand . A couple of days ago I joined a team which was started in order to translater English into Korean by university students . Our team 's slogun is to be in middle of the world that is emphsizing indepence and creativty . I went to the building near the Pusan sity subway station to attend OT . So my primary problem is pnunciation . At first I tried repeating corecct sounds by listening news or Tv programs . I live in my home town . There are some friens whom I 've known for a long time around here . She fogot to pay her utility bill because she is always busy . Hi Wolrd ! It is also very snowly today . Yes , I tried to write the calory off with those veges . So I was so disapointed . Of course sometimes I feel a little nervouse , since I do n't know if I can get a good job again after coming back to Japan , also I do n't know if I will be able to speak English ofter I go abroad . I aslo had a blood test . I started riading `` HOLES `` . I 'm studing Spanish because my best friend was Mexican . I have n't told her that I 'm studing Spanish yet , but I 'm going to make her surprised when I go back to Califorina . I am not always comfortable with writing a businese Eglish letter . they lost to the Orland Magic . ( ; _ ; ) I found this site coincidently . I took an examination in english comunication class today . So I went to school quickly and arrived earlier than I nomal do . So there was no chickee and beer ! I thought that somthing was happning , and I asked some people what happened . And now , I have finished the arrengement . This happening wasn n't solely a bad thing , because I know her today more than yesterday . To get a reasonable price , I need to check the price of severa companies , not just 1 company . So we promised that today , I would do nouthing to help the household , and study English all day long . My youger sister is 33 years old . Before we seperated , we shook - hands and blessed each other a successful trip . Besides , I bought some snacks and foods such as Songpyeon , a half moon shaped rice cake that is the most representitive Korean Thanksgiving food to have during the long weekend , which is over three days . The purpose of wrinting here is improving my skill in expressions in English . But now I ` ve decided to challenge to write a deiary in English . I enjoied summer vacation . In this Club , many Japanese who want to brush up on their English skils and many Americans who are interested in Japanese gather at the Student Center and talk to each other . It was a little groce , but I liked it because its plot was easy to understand . I went to cram school to teach English grammer for high school students . Right now , I am so exhusted . I am studying art but I am interested in film and I also Iike watching movies . Today is satuary . there is no class today My favorit sport is `` kendo `` . These days , I often see many magagines featuring beautiful and lovely chocorates for St . unbelieval . . . Today , I dreamt on introtduce myself in spanish ! ! She ca n't control the musule on the left side of her face . But we still do n't konw how this happened . So the docter removed that tooth 's nerve . I had been to another dentist and was told that nothig was wrong with my teeth . The doctor filled whrer he shaved with temporary medicine . I found her some madication . I went back to my domitory and talked with my roommates . Chantting with my friends My diary has alot in it if you do n't have the time to correct it , you can just correct some paragrap . If somesome read my diary and see it not finished please help me correct it , thank you very much my friends at lang - 8 . I met my friend today , we went to the movies at Sukumvit , togerter with my Thai frind and her Chinese friend . We were watched it for free . Thank you for listenig me . I found two cute one - peices . I feel that I will have good deream in tonight . To write a diary diary is inresting for me . I need to learn more vocablary . Tomorrow 's dinner will be also crurry , assuming I do n't have a previous engagement . I think it 's the most fantastil cellular phone that I 've ever seen . That class is called social taiking . So I ca n't improve my hearing and spoking in that class . The differnce between what she is and what she was has made me sad . The only way to make me happier is try to find someone esle . I try to find someone who is really conerned about me . All students have to / Every student has to pass various examinations to graduate from a university or a colleage , Especially kapadokia ! It seems like a 3D version of Nitendo . Do you know Haruki Mukarakami ? His famous novels include `` Kafak on the Shore , `` `` Norwegian Wood , `` While human beings forget many things everyday and every moment , thanks to cameras and videos we can keep all things in pictures and movies by just pushing a botton . Moreove , they will never fade away and lose color . posivive thinking Of _ Ofcouse I want to be a dietitian . Please trancelate this sentence into Japanese . If you could give me a grammartical explantion of the above sentence , I would be most grateful . If I had a lot of time and money , I 'd likt to travel everyday ! I met a frind today . Every year , I gave hime chocolates . It is not just a subject for specialties and researchers . If you have a suggeetion , please tell me ! ! The first thing every one of my friends says on messanger when I say Hi is `` I 'm almost dying because of the crazy weather `` . But thaknsfully I 'm here in Canada where the weather is great in summer time . Besides Except english I realy love japanese . Recently , I feel that some incidents that happend to me is as if they were TV programs I had watched before . Yesterday , my best female friend who is my ex - coworker asked me to tell a man who is her ex - boyfriend and our ex - coworker before , my mail adress . And I know the fact she does n't know , which is that he played with her while having an intercouse with another coworker . One year ago , he made his girlfriend pregnaunt and asked my friend to lend a lot of money to him for abortion . A grandson asks his granfather , GS : Granpa , why do we have festive red rice ? I nerver thought that sushi would be such a popular food around the world . I really appreate that so many friends remembered my birthday , and it was so nice to celebrate my birthday together with them . Rcently , the weather in Taiwan is very good and the temperature there is very high and it is very hot . I went to the department store on New year 's eve to buy some ingrediants . On new year 's day morning , many people went to temples and shrines to pray to achive their goal , despite the fact that they religious . In addition to this , it must be one of the resons why special TV progrrams that are usually unable to be watched are broadcast . What about other coutries ? ? What is a better expresion ? Becanse I took a college entrance exam and passed it . The story consists mainly of piratie adventures , and they also have special abilities as similer as how Naruto uses Ninjutu . Tuna was especially derisious . I have no job and try to improve my Englush . The croquettes are freshy fried and the salads are delicious but they cost more compared to homemade food After I come home , I enjyoyed the foods I bought . I 've got a relly big problem : tomorrow there 's a really important test about the voting system in the USA and I do n't get it at all ! ! First there are primaries or caucasuses . Then the Democrats and the Republicans each send a certain number of deligates to their national conventions . For example in state 1 candidate X from the Democrats has the most votes the democratic deligates from state X vote for candidate X as their presidential nominee . Before this vote each electo says which candidate they will vote for and they have to stick to this later . We have received news that my airline is very denger . It has many accidents and there are thefts at times . . . ! ! ! ! to be contimued . Monday Octobor 19th 2009 And , there is the invurnearable girl , Clare . Nathen can fly . And , his younger brother , Piter can absorb their powers . So , Piter can fly , read people 's thoughts , be invincible , and so on . But , it 's really amzing and fascinating . Generally girls wear long sleeved komono and boys wear long pleated , culotte like , Japanese trousers or a suit . My last roommate already went back to Autralia to work . We had lived in our apartment for a couple of weeks , which was a wonderful time for me . Then , I also met my new roommate , who is from Korea and he has lived in Auckland about one year , so he can speack English very well . Ecept for Japan and a few other countries , countries do n't have school fees untill university . However , I want to go to abload during / on my summer holidays , to scandinavian , swiden , slovania or England . But I thougt it was a very good experience for me . Manybe I am just waiting for someone to talk to me . the entire floor covered with dirty water , whcih I did not know where it came Unfortunatly the plumber could not come to repair it on that day I could not see all the movies in the series , but this movie was better than I expacted . ( more than usuall ) but if it 's rainning outisde , I just jump in my room with the pedometer . I normaly play Through this job , I understood how difficult to change the lungage channels momentaly between Japanese and English . * Expalining about the world heritage 's culture and history on a microphone . I have a habbit if checking the back of my hair often . I stand with my back to the mirrow and check my hair with a hand mirrow . We departured from Knsai International Airport at midnight . I think I did the worst presentation in the calass . I can see the large farm and hourses every day . Alought I also can see many goats and sheeps being killed , when I saw the view on my way home , I felt better and love the life I have right now . In later years , however , the significance of the language was de - emphasized , as the study of so - called living languages like French and German came to be seen as more relebant . The language continued to have high status for some in the 1970s , even thouf far fewer students ( only one out of every 100 high school students ) took it . Good weather , nice locaton and good people . Please call me on Skyp ! I wanted to eat someting at lunchtime , so I went to the kichin . I made some Macaroni cheese yesterday , so I desided to eat that . I looked for it everywhere in the frige , but my lunch was n't anywhere . Then , my host - father came into the kichin joyfully and began to talk . The tupper had his daughter 's name written on it , so he assumed that his daughter made what was inside . She has a physical caracteristic . The Culcom institue helps people improve their English skills . I joined a study gruop so I have to memorize some kind of story . I wnat to do solve this situation . They are very good freinds with each other , and of course with me ! I thought ithat I could be free from studying English , but I was wrong , toally wrong . the score I got was not waht I expected . but th most important thing now is Chinese New Year lol I 'm not good at listening to rylics , but I can hear it clearly . Befor I go to school Befor I found out about this site , I 'd ask my English teacher for help . When I write , grammer is very difficult . People who smell it are brainwashed , and are not conscious of creating a painting equal to that of Picaso . . . We set off the furefly for stream in summer . Listening to new music ; seeing a movie for the first time ; my first time travelling alone , the first time I joined a club ( I joined an athelete club ) , my first . . . About two months ago in the US , I saw a free traial service at a cosmetic company website . I only started lerning English recently , I 'd like to speak it fluently but it 's more difficult for me now . Some analytics say K - Pop is familiar to American Pop music . Several hours later , at twilight , It became crowdy . I thought it would be intresting ! ! ! ! Some of them wear it an inproper way , for instance in a too short and revealing way like a girl : ( In modren society , There are more and more technologic products created and we enjoy lots of of these . In my opion , one of the most important technologies that helps the students is the computer . They can easily carry hundreds of books in their pockets or backpages and read all the time . Students can also edit the tasks , paint the paintures , record the sounds . . . etc by computers . Besides this , rememebr that not all of the countries are well - developped . The progression of technology makes them left farrer behind in the competition in this world . Toucing scenes made my eyes teary . A man vsited my workplace today . I am going to see a dentise on Monday . I became a thirs year student . He is one of the most infulential consultants in the world . I am gointg to be more curious about everything that happens to me . We worry less and think more intellegently . For example Helen Keller , an outstanding female American writer , could neither see , speak or hear , but she was such a great woman with strong willings who never stop struggling . Her biography `` My Story `` is quite impressive , because it depicts every important footsprint in her life . It 's a constructive psychological strategy to cope with reality and conflics . Therefore , I prepared a jar only for saving quaters . I would like to attend Opera just once because it is one of the misterius things for me . The reason why I am interested in it is because the acters and actresses sing and dance on the stage wearing luxurious dresses and sometimes wear masks . Today , _ I regester on a website of learning a foreign language . Why can the softwafe summarize texts ? But I will go to other countries in South - east Asia ( e . g . Vietnan , Cambodia , Singapore etc . ) I think the goverment spends a lot of money in vain . I read the article that other countries have a systemetic educational . I leke them very much becasue they have their own ideas to spend time . One of my firends went to Myanmar as vlunteer with her circle members . The onther one of my friends is now 23 - year - old though she is a freshman . Then she came back to Japan and now she is a stuent of our university . She have many views to look somethig . Three days ago my portable audio player stopped worng correctly . Many years ago , we colud just bring it back to the shop where we I was blessed with excellent frineds . Thank you for being a frined . First , you will recieve a million yen of virtual money . I 'm goind to introduce some goods later . From the next weekend we are entering a long holiday incruding Sul . so the approcing holiday is longer than January 1st . Airplane ( or Aeroplain ) fee here , I think , I shoud give thanks to my friends , thank you for taking care of me always ! I did not find the interivew too difficult but I had to wait a long time . It is because I have not uss their product before . My life would be prefekt if I could speak and read English . The / Our main dish was shrinps . There are many occasions on which to eat meat , for example , goin for a drink with my co - workers , or being invited to my friend 's home for dinner . A : If you think so , I can come down on the price a litte . ( a bit ) continius is Important my hobiy is running . US , singapole , China . . . I went to the park to palyed badminton with my friend . We had an appointment at 11 . 00 a . m . But I was late getting there because I was chatting with some somepeple on MSN . Yesreday was my birthday . We had international cusine at JICA . They are helping a lot of deveroping contries with their sirious problems . I love the cafe because they have a lot of International cusines and Lasec surgery ( When I got it ) at first , I suffered from tremedous pain for two days . Thankfully , now I can see very cleary . For example , English , Mathmatics for business to get a license . X - ( but I love to study Enlish , so I 'll do my best ! ! We watch so much television that we are subjected to the same commercials we 've seen over and over during the thrity plus hours we spend in front of our beloved ( ? ) television every week . Thank you for reading , and thank you for your cooperation as awalys , I will have hard trainning ! ! ! Langrich canpaign I enjoyed practicing pronounciation . but I am gon na wirte about my daily life or my thoughts and such . . Pleae do n't misunderstand me , I am a completely straight man . But one of my colleagues wanted to go to that kind of place just out of curiosity , although he is also startight man . A coffee affectionado ? In the morning I am so busy becouse I am making lunch boxes for my kids . `` You can readt it at the below site . I playd soccer with children at the park in the Tama Center But this time , of ofcorse , my parents will join the weddig party . It 's a good oppotunity for us to show my pearents our appreciation and take care of them overseas . nanun kenneth john torsiende yimnida . Univercity , homework . . . Gifts , happieness in the air . . . and Taiwan to sightesee for a month in March . The earthquake happend while I was traveling through Europe . I have n't seen any forigners sightseeing in Tokyo since I came back . At the time I could n't understand what `` invisible radiationand and `` going critical `` meant , despite the abundance of information on the TV . I was frightened of the news . I ca n't consentrate while I am at home at least . All paper towels in public restrooms are a waste of resorces , so people should bring their own hankershieves to dry their hands . If American saw me using a hankerchief in a public restroom , they might think that I am strange or that my hands were dirty . Should I not use my hankerchief in the U . It 's not diffcult to reconize all of my colleages and freinds through the phone memory . It 's good in this new year that my friends and colleages contacted via message and leaved their names . Ingland ' . We ca n't tolerate , when sucn things occur . I 'm going to wirte in my Journalin English everyday . Today , I read the lyrics of `` Beaty and the Beast `` on the Internet . It has very beatiful lyrics and a romantic melody . Anyway , the China 's nationtal Day is coming , and we will have a 8 - day holiday all over China . That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I also have several things to do . . . . ( thanks to my job , I can schedual my things easily . ) I have to buy a new pair of shoes - - my Nikie shoes are worn out . . . . I have to prepare to decorate my new appartment . During the holiday , the saler will make a presentation about some products which I want to check out for my interior decoration . . It something should happen suddenly , I need to prepare for it in my schedual . Threre are many interesting events , for example , dannce , beauty contest , eating and muscle convention . I want to be good at using compurter . Unfortunatelly , our teacher 's mid - term test asks so many questions which contains so many details . Because I think I have prepared it well , so I told my teacher that our play is not totally the same as a drama , and he tokd us we can finish it . The other subjects are so - so , I hope that I can get a score which I will be satisified with . Today is a national holiday for election in Philippone . I mean I can select 19 credits from 100 courses before officially registeration . I always wanted to go shopping in Harajuku ; because , there are many fashonable clothes . I bought many clothes ; so , I have little mony now . I trained my body taday . My English is not good , especailly my writing . It was so beatiful . Around one hundred thousand people commit suicide every year around and three handred people commit suicide everyday . But most Japanese people belive `` ' we have the best public safety because Japanese people are smart and cool compared to the people of other countries ! `` Japanese people belive that only Japan has four beautiful seasons for some reason lol But it does n't mean thier countries do n't have four seasons . Their coutries are very big and different from scummy and small Japan . What is better using public transfortation or a rental car ? EBM band Krnangh was very fine , their music is nice , classical EBM with some lyrics about National sotialism and Adolf Hitler . But their charismatic vocaler and other band members were great . I am not improving my Englsih skills . becaouse , I do not have any chance to speak or use English in Japan . Someone , please gime me / give me more chances . . . . an unforgettable moive Because sometimes couples can not be together in real life for some reason , but movies make their dreams come ture . Unfortunately , I 'll probably have to sell my motorcycle in September because I 'm going to study abroad in Victria , Canada . Green revolution have broght about great benefits for humankind as a whole . After He successed in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . But many countries do n't impose it on groceries that people need for thier daily life we alredy have huge debt that is 1 . 5 times of Japan 's GDP . I personaly think the only way to avoid going bankruptcy is to raise consumption tax . It may cause llergic reactions , and carries the possibility of damaging a childs health . In my opinion , I believe that schols so ban the sale of junk food . When I have something I feel better to share it with my friends here because you help me decite how I can manage it . They are affaid If I can do that I will sad . The core concept of this theory is based on reversing the ideas of drawing a pecture . Also I boiled rice and souted mixed vegetables : pieces of carrots and cabbage and siitake ( Japanese kind of mushrooms ) . Additionaly , I have some anxieties about my relationships with other people . However , there is no use complaing now , so I must manage my tasks and cotroll my mental condition well . After all classes finished , we clean up our school and have homeroom class to exchange imformation . I 've just heard Miss Eliot Sumner sing and I was suprised . Lucily , the tescher did n't bleme me , and the class had just started when I got there . If I rent them , I need to return DVDs , whic means I ca n't watch them with subtitles or without subtitles repeatedly . I can sometimes understand their conversation not using any slangs or difficult expresions . I hope this is a good invironment for me where I will have many new friends . thanhk you very much . Untill the last moment the mother kept hugging and protected her I can check what I said by listening to him and must use beatiful words . Please be carefule in eating raw meat ! My roommates and I chose a baskball class this time . I sured have to practice speaking English . I am interested in Ryoma Sakamoto and the Bakumatu . He saw many awful results and got new menories . The most happy ending would have been if he and the woman he had loved were living without any relathion to each other . I know she is very talented and bold enough to use wierd materials for her costumes . We did n't have much time to talk about many things while we were working , so we coul n't get to know each other well tonight . ( almost correct ! ) However , I made a stpid mistake at the bar . I orderd a drink , and there was a long thing in there . I will inform you the date when the magasin will be published . I can read English sentences a littele but , I ca n't write English sentences . This weekend I will go to Shizuoka to give a speach about my research . This is greate for me as I can not speak English well . But of course I am going to plactice writing and speaking : ) I orderd a lunch plate of green salad and sausages . After that we ate at MacDonalds , normaly I do n't like fast food , but it was okay . Howeber , it 's also true that neighbors can annoy us , for example , with their noise . I will prepar for travel . What kind of infomation do you want to know about Japan ? ? What is diffarence bitween a mouse and a rat ? Because I 'm ready to meet my frinds for a feild party . Today I felt something really strange . Three people in different classes , who normally do n't sociate with me , acted strangely friendly . I hopy to have a happy summer vacation and learn new things . I hope I will gain a lots of useful information andmake friends with people in differe parts of the world . I made this nail tip last nite . l have coupons which can be used to get a discout for about $ 5 . After I returened to my office in the evening , I attended the English class . I stayed indoors and read or did cross stiched . The advantage of this trip was that I finished the cross stitch portret of my cat . Tomorrow is the Japanese natinal holiday ! ! I was only the one amongst my circle of friends who did n't knw this site : ' ( In addition , planning ahead has economicaly benefits . Finnaly , by planning when to come back home , I can be well prepared for the next day . I have become accustomed to the cold weather recentry . I checked the yutube and it was really fun . I do n't know wheather I 'm too intellectual or I 'm too ruthless . I 'll cook rice including burdock and chiken . He said in his mail ' In Holland we have an old tradition about St Nicolaas ( Sinterklaas ) . To distribute the gifts , Sinterkaas rides on his horse over the roofs and puts them in the chimneys . If you read this dialy , check this please . I want to make bisiness card and I 'm thinking about my catch phrase . I wore new recrut suit which I bought at AOYAMA . I think it was the cause of my uncomfort . Counld you help me , please ? Chinese medcine has a profound knowledgement . Unfortunately , I have to memerize them all including their shapes , functions and Latin names before mid - exam . Before we build nuclear power staion we should consider about that more carefully . So what do think baout nulcear power stations ? Yesterday I felt happy because I had 4 netive people correct my diary . I wrote the diary again following what they tought me . I find out about me when I write the senten like the diary . I fill happy and enjoy that and waiting for someone correct it before I check it . I feel exsiting and I think today someone will help me correct it . I heard the news about the disaster in Haiti and made a donation to there , but I did n't know exactly what happend at Haiti and how they live now . It did n't take long time to realize that the South Koreans are highly affted by two countries , Japan and the U . It will ( ? ) be hard on a rainy day but now I 'm not goning to worry about all the wrong things anymore . When Iasked `` why me `` , he did n't give me a satisfactory answer but said `` You do n't even give me the chance . `` Yeah , I declined to travel to another city to meet him , in a city I have never been to and for someone I hardly know . I discoveried he likes fruit a lot . He did n't eat only water melon but also peach , glape . He did n't eat baby food , but he could eat fruite . Most people living in Seoul carry their umbrella every tiime they go out . We have had much more rain recently than ususl . Taylor Swift and Miley Cylus are my fevorite singers . `` Many forigners play an active part in Japan . I had planned to cook in the morning as well but in the end notthing happened . English is an internetioned language . The temperatue was - 22c I played soccer at night ( - 22 ) I 'm going crezy Futon is a bedclothe . The location is a local college which tstands on a mountain . I went to a shoppin mall that is near to my aunt 's house . We spend today relaxingly . How do I understand which atricle to use ? Actuary , I was bored yestaday and last week . So , I cound n't write my diary today . I 'm going to prepare some projects , that is , lisenses ( subjects ) ? like language , leadership and so on . Hi ~ I want to inporve my English , please help me , thanks ! ^ ^ I really want to inporve my poor English . . . . . My grammer very poor . . . . I felt a sence of guilt for not picking up becuase I knew who would call at around that time . Could you tell me more about Chrismas ? Merry Chrismas , my dear friend . Nowadays , Chrismas is more and more popular in China . truth , however , I know little about Chrismas . What will you do on Chriamas ? I 'd like to It is obvios that I am easily to be happy . I know that it sometimes seems un - meature , but candies are my favorite , so it obsolutly can make me happy . Sometimes we do n't know what path to take or what choise to make . We live our lives like passing white and black strites , like walking in a rainy day without an umbrella . We have to leave our problems behind and step forward towards happieness . On my way home , I noticed someting fell from the sky . I planed to write down the dires that were corrected by my best best best best best teacher & friends , but I 'm so sleepy now . did my best though , I could not answer all quetions perfectly . Today is Friday I am so happy beacuse I will have a holiday tomorrow . I 'm so tired rensently . Her sleeping styie is interesting because she looks like my father . ( hahaha : D ) Then he moved to Japan , United Kingdam , Sweaden , Germany and finally he grew up in the US most of his life . Amid the growing trend where personal computers have become prevelant , lo and behold , even books have become available on PCs , such as the Kindle that offers us the opportunity to read books on a screen . frowned upon because they are singin and chatting loudly or being drunken at Ohanami You know what they say `` Winners never quit , Quiters never win ! `` I actually have a zinx . We find the use of force not only necessary but morely justified . . . The president made clear that he would not flinch in notusing military power The best breckfast in the world And then , we enjoyed shight - seeing . Nowdays , many hotels offer discounts of up to 50 % . I have started an English dialy . There was notiong special about today , it was just a normal day . but actully , life just means ordinary things that are happening daily . Recentry , I have a backahe too . I want to bacome s freinds with many people . And my mum , she is generouse and linient enough to make me brown bags when it 's needed . She sutisfies my families culinary taste . I wish she would n't eat sweet so many confectionaries . So I 'd like her to have a good marriage because she is my only sibblin . I do n't know if I wrote correctly , but I 'm going to write this meanless entry . The paper was for a weirdy entrance exam . Oullet plaza Actually , I didn ` t reember my birthday at all until just now . My son became a junior high scool student this spring . This afternoon , I saw a film called `` THE LORD OF THE RINGS : THE FOLLOWSHIP OF THE RING `` . On Fridays , there is free English coversation club at the building . Starting on Friday , Hong Kong is on 4 days of national hiliday in a row . So , I 'm in office now because I have to translate Japanese docments into English . there are many spesial words in my business . It takes a long time to comlete them . Green green , there are lot of green avobe the hill . I will go to Shanghai for an assighnment in July . So I will keep writting my journal and mentioning my Twitter . My car did n't move for more than 30 minites ! My goal is to study Englis . I ca n't belive it ! So pleace correct my diary . I 'm at a finace class . But warm days and cold days are repeating themselves in Ngoya . On my way home from my English circle , I adjusted the binyl tunnels of cucumbers and watermelons at 9 pm . . In deed , My coworker said me , `` Since when were you mysophobia ? `` They had 3 rooms decolated with many accessories that were hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . At first , he smiled because the stadio staff played with him . Although I did not care about it , one thing happend ! ! ! 1 . omorrow I will watch a movie . 2 . on cristmas day I will go to Deagu . I have to read some scientific papers until tommorrow . Agemanju is very derisious . Everythig is fine but , as you already know , we have the shutdown problem with the computers . Anyway , I 've decided to watch Transformer III tomorow with my sister . I want to befriend someone who knows English or Frence , that 's the reason why I will write something here . I 'm wearing thiclk clothes like the sweater I have on now . I meet various foriener from all over the world . One of my co - worker is a Philipino and we talk ( or converse ) in English although I am Korean and she is a Philipino . And when I work with foreiner teachers , I feel the cultural difference . It 's sometomes bad but usually I 'm excited to work with people who are really different than I thought they would be ! egg is mediam boiled . Resentry , I have taken a lunch box with me to school . So , I have to get up 30 minutes earlier than usual to prepere my lunch box . This is cheap and delisious . I am exicited to feel their bigfoot upon my arribal . But that changed when I went to univercity and took a major in English Education . I found myself loving English that I realized English is useful in our daily life . Since then , I became very diligent in learning English . I want to make a great progress for my final eaxm . But my Eglish skills are poorer than my classmate . So I want to improve my English this summer vaction ! ! ! I read English passages loudly in the morning , but I 'm not sure whether my pronuncation are right . It was no good having a sore throat and a bad headace last Saturday . My husbund left very early this morning aroud 5am to go to SanDiego on business . Todday I went to see and buy some china at the Villeroy & Boch factory . That factry is fantastic ! I bought four white squear plates . These are good for pasta , sutue , salad , ets , , , goodnaight . Life is like a chokorate box ? I was very afraid at first when I got on the train going to Milalno . A very nice beggining . We went to her home at first and talked about everything that happend to us in these past 3 years . After I listened to her wohl story , I found in her face some tierdness and boredness in her life . I gave her a chokolate box which I bought in Switzerland . There were many different kinds of chokolates in the box . `` Life is like a chokolate box . Everyday , we can eat a different taste of chokolates . `` I also watched this movie before , but I 've alsreay forgotten this phrase . Yes , life may be like a chokolate box . Although we may have eaten a bitter chokolate today , we might eat a sweet chokolate with a lot of flavors tomorrow . So , I think we shouled be careful when we chat online with someone we do n't know . First , almost every Japanese person has aten whale meat . Our ancestors began these events in order to worship thier gods , to show thanks for the harvest , to pray for prosperity , and so on . Secondry , we develop our communication skills by participating in Matsuri . I swim at the gym once a week but output of energy are smaller than imput And what is worse , my office is locted next to Mac ! It 's a book of adventures , magic and suspence . Hallo ! Today I got a package from Japan . This ratio is grown by simplifying the curriculm . I ca n't improve my English enought ! I love to wacth a movie and I study English from them . I could say that it is not a good way to study English . I consider that it is difficult to leran English because I ca n't focus on learning English . It 's easy to focus on / think about the actor or actress . I beleaved her at that time . Japanes summers are very hot . This is because songs are important thema of this series . Ichiro Itano , who is a maniacal animatier , drowed beautiful and acrobatic scenes and made this series famous . I saw the news that there was a tornaddo in Gumma prefecture . The seane was very terrible . She said she really enjoied it . . I brought him some cabbege , so he stuck his head out of his stall . . on coloful greeting cards . I will go to Tokyo on September 12th to go to Tokyo Dizneyland with my best friend . Tommorw , I will meet my friend in Shinjyuku . It is the sound of the practice for a traditional festival called DANJIRI somewhere around my neighbor . Yesterday , I went to a Japanese - style bar agin with my friend who has came back to Japan from the UK . I know that I must leare English well , because I actually like it actually . So we held a parewell party in an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the famouse foods of Japan . ) This morning I wached a news program on TV . In the program it was said that Rakuten , which is Jananese online shopping company , will change its official language from Japanese to English . Japanese market is gradually shrinking because of resession . I 'm looking forwaed to seeing Part2 . She is the most famouse Romanian in Japan . She is so famouse in Japan . I asked him , `` who is the most famouse Japanese in England ? `` She was the wife of John Lennon , who was a Beatles menber . She is famouse in Japan , too . The English man told me another famouse Japanese is Honda , a football player . because his country had been dominated , his eglish skill is very good . he is so fluent in koean as well as english and his mother language . I had wanted to have Tom yam cun ( It is spicy and sour soup , and the ingredients are shurimp , coconut , and so on ) Tommorrow is Aplil and the entrance ceremony of my school ! ! ! So it is an artificial city defensed by magic . I still worry aobut my English skills . I visited my mother and gave her carnations in adovance . I 've been learning only words , grammer and reading and have n't really expressed anything in English when I learned English for the first time in my life . I coulnd n't speak English well but we spent an enjoyable time chatting . The most important thing to remember is that I did n't spent the time being with my familly , although I 'm am only daughter . Last Saturday , a very very big desdisaster occured in Tohoku county , Japan . While watching TV , I was so sad , and I thought , `` What should I do for the peole of Tohoku , `` but I had no ideas for a couple of days . Then we conqer the barrier , everything had a basic concept , everyone helped each other and worked harder to do whatever we should do , to be whatever we should be . Chrismas market and Skerting I went to the Chrismas market and skarting . Eventually , I went to the station , met themwent to the Chrismas market and skarting . enjyoed it a little . Bcause she is afraid of going to dental Clinic . I wakep up early in the morning . I got injuctions and took medicine ( ) but this cold seems to stay Some people might imagine that those kind of thigs should be done by people who have time and enough money to help people suffering from disease or poverty . Sometimes , I hav n't certain ideas to write on Lang - 8 . thak you for reading and ( for ) helping ! I studied prnounciation with my teacher on the computer this morning . But today I enjoied it because I did the homework . It 's extremely hard and the teacher is an old man so he ca n't talk proparly . It makes everybady bored and sleepy . . . . People think cows are jantle , I wanted to writting a letter . Because I 'm not good at writting . I like to travellng especially to foreign countries . We have a big problum now . I went to a local rahmen shop called `` Yaozen `` today . I am writting while eating a grape now . On the other hand , he always looks older than he actually is . He looks like a thirty or fourty - year - old . Ashley Tistale I bought : lemon water , honey of rosemary mede in Spain , rosemary , blueberry , cocoa without sugar and milk , and graham bread . Tokyo is very safty , ( ? ) very confotable . I want my own homepage but it is hard for me to creat one so I 'm looking for some website which can creat a homepage easily but I ca n't find a good one . to express a lot of relations and suggestions ; `` Expressing It in Your Own Words ; the EIYOU activety It is paraphlase and has more meaning . There are many methods of transportations Japan . MY MAJER My mager is acoustic design . For example , history of western music , musicology , frequency of sound , intencity of sound , linguistics , physiology of hearing , and so on . Now , I think love and a kind heart and barance of time and money are important . Wirting in English is little bit of a challenge for me . I have started to study grammer . ( Finally ) I was reading the grammer text book and there was a sentence that I could n't understand well . I would be so happy if you guys could explain this sentence `` gramatically `` ! ! : p I think language reflects the thoughts of the people who are usisng it . There are many typhoons in Japan aroud this season . He is Japanese but also can speak English and POrutuguese perfectly and I wonderd why , so I asked him . He said ' I was raised in Japan untill my 14 yeras old and then moved to Portugal due to my parents 's work and now I 've been living in England for almost 3 years . I was embarrased . I have already made reservations for the hotel , restaulant and show . However I did n't have enoguht chances to make new friends . The shop staff repaird the flat tire in 5 minutes and I paid 1 . 000 yen . It was an unlukey day . If next semester my grade has n't changed , I ca n't achieve my goal and get a shcoalarship . In August 2010 , I left Japan to go to South Korea to study economics , Korean culuture and language . Sometimes Koreans thought I was kind of weired when my friends and I walked around in the city . Then he / she would always gaize at me as if he / she said to me , `` such a stupid ! ! `` lol This is really helpful for foreiners . He is a very famous person in Japanese Histry . He is one of the most important people who have affected Japanese histry . And this is why I counld not leave you some comments after I 'd read it . One day I had an appiontment with my friend and my friend 's frined to watch the movie at the Slam Palagon . This place is really nice and betiful . Whaile we waitedfor the movie we ate food . My friend 's friend is a thai person like me but when we talk . so I think I had an experint withit before so now I smile about it to my self . It was n't regulary , though . Usually it was short and I did n't think too deeply about things . I just wrote down what happend to me that day , things like `` I think I like him , `` or `` my Korean grade is 100 ! `` I thouth so becouse younger brother is a countable noun . Teaching plactice I went to teaching plactice at my high school . The bioHazard serise is a favorite of mine . My kids also enjoy kindergaten . She dressed up in Japanese tarditional clothes and did her hair . Sometimes dictonary make me crazy ! Mainly because the dictonary give me example stences that are too formal and that nobody uses anymore . Altough there were nuisances , Jack and Rose got through the crisis . Also this work was mede in 1997 in the US . / / America spans from Canada to Argentine . Maybe I will be a tour guide , but I 'm not sure . Maybe I will just ues it for my own travel because I could get free access to some scenic areas with it . I have a double major in event and bussiness administration . I dreamed and strugle for many days and nights . There are 10 days until my unversity entrnes exam . A friend 's nutural behavior These children are ofen spoilt , not in terms of love but their behavour . . . It 's kind of a pitty that we are losing a friend here . Hello eveyone . I do n't know much English or cultures of other cuntry yet . One of my American friends invited me to play sand vollayball today . Therefore , you can play sand volleyball while drinking alchol or eating somthing . becouse , I thought that today is Thursday . A good way to learning another langues is . . . . . . . They recommand a good way for me to learn English , These days I feel I am losting my English skill . After hearing that she had died of ( or from ) a desease , he attended her funeral with his wife and realized that she 'd never married The story is that a long long time ago , an old Japanese man went to a mountain , and then he found a baby girl inside some banboo . We ordered fried noodle and fried poak and vegitables . ' I have to remind myself that some birds are n't meant to be caged . thire feathers are just too bright . And when they fly away , the part of you that knows it was a sin to lock them up does rejoice . ' I enjoy it when I read it . These fruit are very sweety and tasty . I hope so : ) To improve my English , I 'll keep on writing a new ently from now on . Pleae chear me up : ) Cross Fire is a game producted by the Tencent internet company . so my hostmother got the message insted . my work schedule was chenged by my boss . I decorated the living room with flowers , streemers and balloons . I cooked a special lunch for them yesterday . It was soup , tuna - salad , and the main dish was rolled cabbige . This season in Japan , the spring cabbige crop was large . We had to sing many old songs there , but it was a fun and nice experince for me . So we write only Japanese sentenses although we study English . My tase in raising pets is very common . There are meny international students at my university . Meanwhile , Two ladies of an IT trainning institution , which anncouced it cooperated with IBM , stopped me . Summer vacation will end in this mounth . I was lazy this summer about sutuding English . From today , I 'll bigin to study English for TOIEC ! But we have always lived in diffrent countries and had time togather for less 10 days every year . After he got a new job , I felt that his personality was diffrent from what he used to be five years ago . When my friend committed suiside in our accomodation and I needed his help , he expressed his anger to me . But he talked with me for about 10 min , when he waited for a dish in a restrant or only in his spare time . His house maid said his mother `` did not wish him to get married `` , because she needed his saraly for his whole family . When I was in his room for our all - too - brief time together , I was dissapointed with his behaviors ; watching TV , checking his phone , not talking . I wanted to spend my time with my BF and have dinner togather . particulaly , after his anger hurt me very much . I had a BF , but I could not talk with him , call him , or share any ideas . Nor did I have oppotunity to go out often , and of course his anger issue . Is not easy to controll myself and relax . Recentry , My colleage gave us it because he bought a new TV . I thank him for his kindess . So far I have alredy made a lot of mistakes that anyone migh have done before . In my case , I will make a lot of mistakes even though I have alredy known its a mistake . cpu : pentium cereron The PC will arrive next thurthday . I 'm looking forward to receave it ! ! Btw , I am very tired now , after celerbrating your birthday and going shopping . Yesterday I did n't go to school and I stayed home because I felt painfull in my nose . Adress or Mail Adress . He is very famouse all over the world . The story is a little difficult , but it has many beautifulsight scenes ! ! So , today I fell asleep in schol : ) ( sorry , I don ` t know how to say that I ` m sllep and not sleeping . . . I ` m so happy , becouse I have always wanted to read this book in its original language ! : ) Now my clock says 20 : 17 p . m . , and I should do my homework , go to the bathroom and then go to bed , but I often have a insomnia , because I ` m an `` owl `` in my bioryhtm , and wake up early - so hard for me : ) What 's more , I have been desperated to go there since I was a child . writting an essay is hard for me . . . I was dissapointed with myself . I belong to an astromy club . I ate Chinese vegestables . Chainese vegestables grow in the land and water . The flower of vegestables is a white colour and in the middle of the flower it is a violet . I know if you eat more chainese vegestables they can help improve your vision . First off , I will buy an English text book , because I want to speak fuluent English . It is my fault that I ca n't speak English ver well . Watashi ha kirei wo kanjiru koto wa arimasen . ( kireisa or utsukushisa ) I drerm of - - - - I am curious is it popular in oher countries . . My teacher told me not to fear using incorrect English , but I absolutly do n't want to make mistakes like this ! I study Programming , Machin Learning and Image Processing . We have eight - day holiday , but I do not kown what to do . I went to a japanese food store and I eat shushi and it was good but I cant have to much of if but over all it was good and the gohan was awsome to but I wish they had onigeri do anyone knows how to make one cuz iv been dieing for one of thoses forever . That was limited to the entertaintment sector , but it presented the Korean way of thinking . So many people said , `` That yankie go home `` and `` He is a betrayer . `` They then quesioned why he should quit the team and leave Korea , just because of the foolish complaints from his young and troubled days . Koreans hate themselves but cound n't forgive someone who hated their country in the past . However , this situation symboled the distorted affection and shallow nature called ' Naebi - geonsung ' , boil fast and get cold fast as well . I was so confused and dissapointed at my country not as a fan of his , but as a member of Korean society . This could be the case of understaing for all the immigrants around the world , who were raised in their countries without any knowledge or understaing of their roots and motherland culture . Here 's some support messgaes from all over the world . . . . . o yeaah , , now , I 'm a 2nd semester undergraduated in a university in Indonesia . I am hurngry . Even though I 'm not a guiterist , I hope the company recovers well and will be making magnificent instruments from now on . So I can only use symple greetings , likes `` Bonsoir ! `` , `` Au revoir ! `` . First , I will intriduce myself . But the whole day has paased and everything is in vain . I prefer low sugar over high sugar and I prefer fruite cakes over vesitable cakes . To take the machine from our laboratory to their truch which has a crane was very difficult . It made me a little creay today , because I keep on thinking about the dream up to now . Yeaterday , I went to see one of my classmates from college , and we had lunch together and also we had a nice talk . Every day I want to learn something new , and I also want to make my day become more meaningful , however when I get to the office , another thought came to my mind , that is how to spend this day , is there anyboday that will make fun of me today ? I feel sad about my jod . Because my heart is afraid to be broked again and again . In the paat , I was not a person like this , I have a lot friends who are always with me , but now I stay in Shanghai all by myself . Give me of your news regulary and also as news of your mom , your dad , and your brothers and sisters . We are happy to be able to write you regulary , we love you very much . First off , my friends did n't want to watch it but I reccomend it to them because this movie is made by disney . I do n't know if it 's because I have n't been following the instruccions as well as I should have . I got back to my home form part - time job at around 7 in the moring , and fell asleep till 3 p . m . The Japanese auther I like is Murakami Haruki , Banana Yoshimoto , Higashino Keigo and so on . I like watchig a sports game , especially when the local baseball team which I supports plays . I always write incorrect presositions . So I decided that I need to pracitice prepositions ! I wrote the last messege at the end of the page . I went to a job searching seminer . Today 's seminer is held by a consulting company . The seminer was helpful because I was able to talk with some of the staff members . I bought two books written by the pdesident of that company and read them at MacDonald . Im taught my students by solo paformance . becouse it leaked . I am renting a house now so I called the onner . I can wash my fase comfortably becouse it 's new ! I think that I will start Lang - 8 agein , in order to lerne English . I think I shold study English harder . I want to go to many placis The mother sometimes treats her children like her posessions . I still have a metting for this subject tomorrow . I 'm looking forword to having a good time . On Wednesday , the first day of spring vacation , I went volleyball playing and watched a free moive with the people in my lab . This book is for Engish learners and mentions Lang - 8 ! Maybe she got infulenza . AfterI gave her tamiflu ( which is a medicine for infulenza ) last night , she had been getting better . I miss my mother very much , especily on these days . I had an appointment with my boyfriend to play basketball this morning but when I came to his house he was still sleepping n _ n Now it is suny and hot . We do n't want to play at this time but I really want to play . What should I do to stop the sun and heat ? I will bring an umbrella with me ^ ^ ; In one of my subjucts , my product design class , I need to think of 20 ideas and draw them out ! I will do everything , all of my homework , becasue I want to be a designer . This is my first daiary . I went to down town Hiroshima and bought webcome at the DeoDeo electronic store . I was surprized by the price of it . But it did not happened in my erea . We found out about it through our cellphon TVs ( oneseg ) The earghquake have been continuous . Gru finnaly found that he had a right to be happy and find the meaning of family . finnaly he found what his life was for . A seminar I paricipated and was surprised by yesterday Yesterday I atteded a seminar in Kangnam , Seoul . I was very impressed and shocked becaused I have never been to one before . Most of them wanted to improve their comunication skills because they seemed to believe that those skills would help them earn more money . A annoncer led this seminar . He gave several speakers good tips and imediate feedback . Give your speach impression , and chage . We went to the hospital to have a ronsen for my brother 's metacharpal . It is the main qualification in order to stady abroad . I need higher poits , however , I do n't have it . Some points I had already known but the others I had n't known lol This video emphasizes the strang points of Japan . The first poit was `` Character of Japanese `` . This video also reffered to Japase school girls . Some machines give false eyelashes wih the stiker . Bergium , Austlia and Chech pablic ! plsase help me . I want to create a miracle ! `` Clayon Shin - chan `` Today I went to crammg ( cram ) school . Today there was a test at crammg ( cram ) school . I love crammg ( cram ) school . But , sometimes It 's important not to do anythig . I usually talk with friends about studing abroad , and one of my friends told me that the best way to promote friendship with local students is by doing sports with them . I 'm a student at Liao Ning University in Shen ShenYang , China . All the actyvities were great , especially The Hallywood Ride ( This is a roller coaster ) and Spider - Man The Ride . Acutually I do n't go out either . But the Twilight series is not popurer in Japan , because of poor PR I think . Green tea includes more cafeine than others . I 'm really looking forward to wathing it . Today I went to the starbacks , which is near my house . I have been wondering why Japanese Starbackses is expensivethan in the US . And then I went to the starbacks . As a result , Japanese starbacks is more expensive than American Starbucks . I am working in a Group Home , where old people who suffer from dimentia ( deseases ) live , and we are taking care of them . I 'm a beginer My classmates and I did some field reseach for geology , goog night It seems like I could be a help , and if it is I want to give stars to people who helped me , but where is the bottun ? My neme is Tomoko . I got some survenire . I will go to ( an ) `` all night Kalaoke `` with my friends . I just want to inprove my English . russian vs japanise ) ) ) ) ) why that people who are learning or try to learn russian are also learning japanise . . . . and do u think that learnng Russian is more difficult than learning English or . . . japanise ? ? ) ) ) ) ) What is your `` position `` in the family - first born , middle childeren ? she is mabye / about 76 years old . Are friends mor important than family ? Till then / up until that time I naver could understand why people doze off in class . Yes , when I was in high school , me and my freind participlate in a competition , I really practiced hard but I could n't / did n't win the prize . but my friend won one hundrad thousand won . It 's a secreat but in my major class , a proffessor who teaches `` study of food material `` is the most boring teacher . But I ca n't do that in sutch weather . . . I got my first freand yesterday . So I tried to give them correcthon twice . It took 1 houre to give 1 coreecthon . So I made a mistake while making the corrcthon . It basically focuses on international business and globla governance studies with full - English lessons . Please teach me when I shold use it . It makes me crzay . I ca n't believe any imformation from the goverment . Basically , I use a package tour when I take a trip somewhere , wherenever a forein country or a domestic place , because it 's inexpensive . I 'm not good at English lisening comprehension because most English speakers use high frequency band ( ? ) . Sorry it is just my comlaints , recently I have a lot of stress from my situation . My cheeky English tutor always corrects my sentense . He puts his corrections next to them . I told him that he should use block form when he corrects my sentense . She saied I ca n't go becuase of math test tomorrow . I saied it 's ok , take your time fast . Anyway I look farward to seeing my all friends tonight . We 've got to say that the approprite styles and colors are a critical factor as well . Altough people do sometimes behave differently when they wear different clothes , I do not believe that clothes can essentially make people different . Therefore , japanese have to learn mucn from them . I went to school to try a lession . tommow is Friday . There is Chinese official approve this manth . They prefer to live in a dormitory because they know that in dormitories they will : have more fun with coleagues , meet new people , have new experiances , and face new challenges . Those students say that living in a dormitory allows one meet new people , and have more fun as one can stay up with the new coleagues playing music or games without caring about little siblings or sleeping parents . In addition , living in a dormitory forces the student to have new experiances in life , and face a lot of different situations in which s / he has to deal with tham wihout help from parents . Moreover , one student said when one lives in a place far from his parents , old friends , family relations , and heighbourhood , s / he begins to face new challenges . when we arrived at Nikko station , we went to the hotel reseption . We never can find hotels easily - - then we went backt to 1 staion ^ ^ We found a hotel ^ ^ u know Nikko takes 3 hour and half to Tokyo . . A alot of foreigners ? come here ^ ^ I think that I 'll study utill 10 : 00 p . m . in my office . I stady English every day . Becuase I want to be able to speak and understand English . So I stady hard ! This museum , which is constructed underground , is desighned by Tadao Ando . Well , I can say that some subjects are getting better exept Geography unfortunately . I attend English cources with great pleasure . In my opinion , it is very important , ecpecially nowadays . I have always been very sensitive to this and other situations which hugely disappoin me . I belive that my English is getting beter day by day . B : Right now I am going to vacumm the house ! Although , my grandma and grandfa are already dead , so actually , the people who are living in my grandfa 's house are my uncle and his family . I love grandfa 's home ! I like J - pop , J - rock and Japan drama , so I learned Japanese quickely & easily . I understand there is a big controvery about hunting whales and Japan is criticized on this matter , but fighting a whale with a small weapon is certainly an adventure . Because Tohoku area most catastrophic damegese from the quake and the tsunami and crippled nucler power plant on March 11 . Try eating the foood from Tohoku ! Meanwhile , we know some pepole are anxious of Japanese food . Kyusyu Trip I had a get - together with RVT yeasterday . Anyway , I drank so much yesterday althogh I ca n't drink too much . I wach `` Friends `` DVDs every night . `` At frist , I did n't believe it because I thought it was a joke , and I lacked of confidence when I was a senior student . I talked on Skyp with my tutor . I woked Today . Can I tallking about weather ? I was sanny day . An iopd can put music in your pocket , so you can take music to wherever you want to go . She came to Japan and appered on TV I listen to her song `` you blong with me `` . We want to guide Engish speaking foreigners around Nikko with a vorunteer because we would like to study English so that we can talk with them . SEO is the abbreviation of Serch Engine Oprimization . In summary , one site up to the nearest top on the Serch Engine . Thak you for reading my diary today . He taught us how to chooose our own life and be responsible for it . Time gose by so fast . Finaly , I 'm about to there . I am easily adict ( absorbed by ) by any kind of work . In many high schools in Japan , gramamr teaching is emphasized very much . But after I entered a university , I realized taht I ca n't speak English as well as I want to . Please fix my writing , grammer and spelling . I want to make foreign friends . Yesterday , Mie particepated in first - aid training for the Red Cross . Many small restrants were open and we introduced our lab work . I went to the area where I can drink free Sake ( Japanese alkohol ) . It 's been a while since I drank alkohol . I do n't think I am so weak at drinking alkohol , but my face gets flushed after just one glass of beer . Sake is about 15 % alkohol . Of cource my face got so red . . . Most of the people at the festival were not drinking during daytime , and I felt a little embarrased . According to animal expreiment , if it is eaten , it causes kindey calculcus and can eventually cause carcinoma . Usually , we do n't buy `` regular toys `` such as rangers figuers or items of a certain ranger , which cost around 5000 yen , because we know he 'll get tired of playing with them sooner or later . Three stright days off On Saturaday , I will change the layout of my room . I have no confidence in my English skils ; I want to enjoy English , not only for learning the languege , On 11th Mar , we had the terrible earthquack . My house and office are in eastern Japan , but it 's not close to the sea , so we didn n't have any Tsunami impact . I will miss those beautifule colors of Tanzania . I 'm from Hyogokenn , and often went to Osalka . Nothing happened , no trouble is browing . . . well , this is my first entry and I hope you 'll enjoy it ( or at least correct its mitakes ) Next year I 'd like to continue practicing my English and to take an english international exame , like toefl or first certificate . I 'm looking for a nw career . I think I 'm keen on economics , but at the moment I ca n't picture my self working at any job . I 'd like to travel abroad and in my country in the future . Argentina is beautiful and I recomend you to come , but first I must get a part time job . Coul you tell me what kind of job is the best to start working on , considerating that I will study and practice sports at the same time ? I disagree it , because I think people will not be motivation for thire working . I was an asistant there . My deram is to be a scientist on metal of atmic energy . I want to work with foeriner , so I want to go overseas soon . Thtat will make me evenmore stressed . In our lives , about 100 yers , we have to choose only one person with whom to have sex but sometimes people try to choose two people at the same time . First , a couple gets divorsed after 10 years of marriage . I 'm trying to write a journal about an article from a magazine for English leaners , but I do n't have enough time to post it . TOEIC Test . . . TOMMORROW ! ! ! TOEIC test is coming tommorrow . I will get a perfect score on it tommorrow and it will be my last time to take it ! ! I can enjoy dating her at the amusement park , concert hall , and movie theatre / theather etc . Hi = ) I 'm 15 years old , I 'm studdying at school . Its situated near the Caucasus mountains , in a beautifull green valley . Welcome to our hospitable land of enchatment : ) I like dancing and photoshop . People want a reason to decide , when they choose one product amonga lot of other products . `` Do u think u could go a little `` slowlier `` . in that sentence , why ca n't I use `` more slowly `` instead of `` slowlier `` ? When I was young , I lived in a small ge villege . So , I could n't watch movies in a theater untill I was 16 years old . I 've just resistered for lang - 8 . I am a Japanese naitive speaker . I have n't decided when I will take my summer vacation , but I 'm thinkng of going on a trip to Taiwan . Today I 'm a bit depressed , because in recent days I have sent lots of E - mails to lots of design companys in the hope that during the upcoming summer vacation there will be a internship position for me . But I have n't recieved any satisfactory replys so far . What I am worring about is that if I ca n't find an internship position this summer in Shanghai , then I have to go back home and stay there the entire vacation . After I had done trancery I took pictures of it . Hakubutsukan wa totemo sugokatta desu ; D I had to put all my heart into reading , so that I could konw what my friends said in their softblog . `` tommorow is another day `` Hello everbody ! I think it 's a very good idea ( I 'm talkin about the community ) , and of course , any help you can need if you are learning spanish , you can ask me . bussiness ( on Sundays ) is banned by the law . It 's one of the biggist culture - shocks for me . I was so surprised that kind kind people on this site Lang - 8 corrected my English immediatry after I wrote down my first entry . She is a very possitive person and she is always on my side . There you can find a range of meanings for the word that you want to learn . Also , there are many samples of sentences which can help you to understand in wich situations it would be better to use that word . After that , I 'm going to study English in ECC schooi . farst time ! ! ! We are enjoying it and undersrand `` Japanese love festival ! `` maybe I wo n't be engaged in the design industry in the futrue . I was only for a short time in the city to buy vegetables and choclate ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . You cook galic and oil on the stove in a pan , then put the chili paste in it . It was pretty spicy , so you need rice and cabbege . I often go to the restauraant because the prices are reasonable and the food is delicious . I like humberger or any American food , but I sometimes feel like eating Asian food so I often go to the restaurant and the Korean Restaurant near the University I am going to . The event was canseled halfway . . Equally , I wanna cherish Japanese tradision . But there are tradision which have to be changed . My favarite movie is `` step brother `` with him in it . This stoies is that Will Ferrell acted as childish and he still does n't get a job even though he 's about 40 years old . I 'm looking forwad to this movie DVD on sale . And I want to make many forign frends . The holidays is called Golen Week in Japan . I started my serious English lerning , so I search for a method to the best & quick type of learning English . . . My tougue still hurts . . . . . Also I wish to emprove my English , especially in reading literature , because this is hard for me . All the scenes have meening . Since a boy transfered to our class , my friends ' things are stoled . But , how can I acept what he does ? I want everyone to check my grammer : D And I look forward to drinking with the teachers becaouse I promised them to drink with them someday . By the way , not with the children , difinitely ! Heloo ! I 'm a cooffee shop waiter . so I just smile smlie smlie . . . ( haha ) Now , my favourite things are cups of coffe and coloured markers . They are also asking citiznes and enterprises to save electricity . Recentry , I run every morning . I returened to Japan this morning . However , I want to write dialy on lanf - 8 as much as I can ! At first I got very neverous about driving a car , but after practicing and practicing , I felt that driving is not as difficult as I thought , and I get more confident that I will pass the exam . Recentry , I have n't been able to get up on time . Folliowing the situation , there was also a lot of garbage . I will abolutely suceed in my life . . . Because vegitables are cheaper there than at the supermarket . I can conect to Lang - 8 easier now , than this morning . But / However , they had a lot of motivation to learn about foreigh coutries even though they could n't speak English . But this is good that I was able to run after a source of jQuery slowly and carefully . Days of the week : Monday , thusday , wendsday , thirsday , Friday , Saturday , Sunday . they lable the phonetic symbols beside the chinese characters . all chinese students , once they start school , begin to leanr pinyin first for 3 months or even more Maybe , the advertising company aims to change telecom from docomo and au to SoftBank . In Japan , many family use same telecom company in order to reduce the cost . Excuse my long abscence ! = ) I did n't plan be offline for so long . However , all my problems are solved and now I ` have another litle problem - I can ` t imagine what to tell you . . . Every day pesses as usual and there is no spesial events that I can write to you about . Unimaginablely ! However , in 30 minutes , I must go to class . The most interesting thing about this course is my teacher always presents something about foreign countries like America , Frence . . etc Sometimes , a person 's feelings may be influenced by the weatherin . So I tell myself to keep this mentality to confront everything , whatever success or failureand , I will gain more in the end . I realize that I would cherich those who are optimistic and confident , and who enjoy doing something new , worry less about failure . They see in every activity the process of self - discovery and self - fullfillment that can not be measured by an exam . Lovely sentences . Today 's topix is about my son . My only concern is that his parents wo n't allow us to get marrige . If there are any mistakes or suggetions , please let me know . Actually , it 's ok if nobody helps me ! ! I 'm still studying English , and I 'd like to improve my knowledge with some tecnics or activities , that 's why I would like if some of you could share with me any experince that have helped to improve your English . If there were only one language in the world , its culture , which includes people 's thinking habits , customs , and religion , would become more and more homogenious . I tried to write about SUMMER SONIC the other day , but I delited it . I will try to write that again soon , so please waite . Well , the project can fit into the category of Design Improvement ; the main point of the project is to invent something new or improve someting that already exists . I 'm studying engkish in Korea . By the way , resently I have been very busy ; I have a lot of assignments and I 've been studying for tests at university . I started to feel dispressd and annoyed about my studies . It was very much exciting to interact with people from other coutries . I should have beem much more modest . . . I wonderd how she 's thinking now in the current status . First , I missed my bus because I slpet in . This was an unforgetable wonderful journey . This mornig is the most chilly when I came here ! I was surpriesed because I had always thought that the seasons here are warm . because they have a lot of assignments and have to reviw many study materials . Are you influenced by economic crisis ? And what infuence has been brought to your country ? Yestarday , there were such big hurricanes in Japan , and a lot of poor public transportation services such as the trains and buses . because I ` m very interested in forigen cuntry . . and I wnat to make friends . . and I wnat to talk to new friends . . I wnat to speak freely to new friends . . aekwondo is my favorite sport . . ( I have a sa dan license in / for aekwondo ) I have to memorize my line because there will be a play on October 24th , at my shcool . Anayway , it 's about time ( for me ) to go to bed . . It does n't make any sence . . . : ( Even if it is a small thing , I think a positive mind is importnat . And My strong point is Kiness . So I alwyas think about how I can be active . Please fix my wrting . It 's no exaggeration to say that Japanese English leaners have studied English for many years to obtain high marks on this test . Even if we study English hard for two hours alsmost everyday , it will take us more than 1000 days . But after a few days , I made some Enghlish speaking friends whose Chinese was quite good . ( was is right ) They always write some sentences with complecated logic . I need some inspiration when the sentenses or words deserve a better translation . I was afraid that the autor would be confused when there were so many editions , too . We had to guess what the autor meant and then made them into a sentence . With the scar , I made less and less corretions . I found that I have forgotten many beautiful words after studying in a university because we ca n't use them in a sceince article . but what the hell is worng with me ? I hopefull it will work for me ! When I was chatting with my Amedrican friend , I only said `` I see `` and my friend said that it was a `` conversation killer ! . `` How rideculous , I ca n't belived it ! So , it is defficult for me to use English . I ve been in L . so I counld understand what he said . I counld n't respond to his question ! My job is to treat guests by showing coureteous service and make them pleasant and happy . From now on , I have to prepair myself for the upcoming examinations . How I wish that someone could repalce me . During the winter , I had a good apptite and I ate delicious foods . I will be glad to make friends here . Please help me with my English writting . Cybercrime is a crime which involves stealing intellectural property from a computer in a work space . rainging on Sunday The weather is so changable here . . . But I did it becacuse I believed him . I need to imform evrybody that I 'm all right . Although we just said and done something stupid , I still really enjoied it . I am preparing for the English songs competition and the following is what I wtote for the contest . Welcome to the English songs competition held by Shaking English and suported Last but not least , boys and girls , I think you deserve a big round of applause as well , for being such a good audienceGood . Thank you very much ! I have been having it sice I was 20 year - old . The youth do n't understang how inportant to choose a job in a careful way ! ! I taked about a Manga Cafe yesterday , I 'll continue to write about it . I got marriaged fourteen years ago , but I do n't live wirth my family . It 's about 60 miles from Fukuoka City to my workplace , so I ca n't commute from my condminium . I come back to my condominium from my workplece only once a month . However , giving your children a good educetion is important too . I ate many vegitables . I bought many vegitables at a 30 % discount at a nearby supermarket . At first they sent me a package which included one guide book for the course , two technique books for paintings , one skechbook and five envelopes . Until now , I have drawn a sweet potato , a green pepper , a carot , a tomato , an egg plant , a mashroom and a lemon . My favorite hobbies are shiopping and reading books . However , I have a broblem . Besides , think more befor what I ` ve done , It was really a wonderful soccor game which could represent the top - level in Asia . Through this game , I thought that Asia 's soccor had made big progress in the last five years . What a pity that Chinese soccor could n't develop as much as Korea and Japan . It was really a wonderful game however the refree 's calls were disputful . The volunteer work is basicaly something like this : When tourists ask how to get to their destinations , we show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked about a lot of things , such as work , marrige , siblings , friends , etc . It takes about 5 mitutes by train from my station . I want to write something about foreign country 's fastivals this week , but I do n't know much about them . For exsample getting lost , not having strict manners in trains , missing an associate and communicating with the Japanese . But contrary to what this video shows / says / implies , in most public spaces in Japan , scuh as stations , you can get information in English . I am looking forad to meeting them . I went to yoyogi park for Hanami last satruday . At first , I doubted that she had a dislocation of the hip but as I contined checking her , I started to think that her hip joint was OK and I started to treat her . Under normal circumstances it 's me who should be putting some pocket money here but unfortunately I have no mony at all at the moment . If hard disk is encrypted , it will be diffcult to salvage your data from the hard Northeastern Asia consists of China , Japan , and Korea ( including Norht Korea and South Korea ) . I think the four countries shuold work together and make a good relationship with each other , remove prejudice and misunderstanding . Thanks Door for ur ( your ) recommondation . I am studing commerce in Melb . Although I have some friends who have been there for 7 - 8 years from their high school and who knows a lot abt the city . On my vecation , I plan to spend my vecation in LA . The next day , I went to Universal Stedio , which is in the hoolywood area . The day after , I went to Vince Betch , which is on the west coast of LA . I had an enjoybal time in LA . Some of them who have n't gotten serious damage this time say that the buildings are paid for by national taxes which all the citizens paid , so the authorities do n't need to build ( the ) accomodations if [ 6 ] the refugees do n't want to live there ( anyway ) . Questions in my wookbook Doubting / Questionning myself . . I hope to find a pefect one . Deserts cover most of the Arabic lands , so the animals in it are very spicial . Camels are very expinsive . I remeberd when I saw a black camel . Its value was 15 million Saudi Riyal ( 1 dollar equal 3 . 75 riyal ) . Camel riding is a vey enjoyable adenture ! ! Allah taght about Camels in the Qura ' an : To read more about Araboc Camels : I splept with the electric fan turned on and yesterday the weather was bad so I should n't have turned the electric fan on , but I took hot bath and I was hot . In Taiwan , most parents want thier children to attend high school . Many bosses think that a bachelor 's degree is not important , they look at character , professional skills , the ability to handle stress , teamwork , ect . In adition , why should these students follow their parents ' oder ? I wish all students could do what we wnat and be successful . I am a salior , and I had to go on a trip today . I drave the ship out to sea . now I 'm precticing road rules . . . Maybe a lot of peaple will be lacking sleep tomorrow . Of course , I never donete blood . : ) Becouse I 'll have to take an exam , but I do n't know when ( , ) yet . These American novels remind me that poeple must always keep clear mind and be kind . All the professors have gone to a conference so I have a bresk . So , I visited two travel agancies . at a bus stop I got off to transfar in minus 20 degrees . I 'll never forget the experienss . Actually this is my secound winter in Canada . I want to listen my favorite music all day and do anytihig I want , not just sit in an office like a doll . The grass will cover my sweet soid . 3 , How dou you like me ? How do you like him ? A sharp decrease in the number of chilldren and the aging population as a result of longer life expectancy in recent years have created many problems . I rode with it and started to peddal . . . . Nawadays , I also have to do it in my college with my friends . So now I am going to show you . hei , I had so much fun . We talked about a lot of things but I could n't catch what my friends were saying sometimes because I did n't understand , so I just smaile and laughed at myself . After that she went to do yoka while I went home still very full . Although you would want to meet your family , anybody wo n't tolerate your action , because your office is always on labor shortage to reduce personnel expenses . . All the people there are foriener . Bcause I can catch my teacher 's pronaunseation . On the other hand , when we take a indirect lighting , we can feel lelax and become more creative . Thank you for reading my dirly . It is realy difficult for us ! ! : < We talked about each other 's pronunciation . It is impossible to select music , so it is not useful to studing English . This is just subconcsious , but it is working all the time in my life . 6pm to 0am , I am working for Okonomiyaki resutaurant then . . . . To studing English effectively , we have to find a partner who knows the language we are learning and our native language . I have no time to sleep , but summer vacation is comimg soon : ) Throught my kitchen window I can see two big feet hung from the balcony above . My upstairs neighbour hangs Father Cristmas from her balcony each year , and the feet cut off the view from my kitchen . I can wear a T - shirt and harf pants . After that , we went to the Brooklyn bridge and acrossed it . The most famous ones are Suzu - mushi , or bell - ring insct , Koorogi , or cricket , and Kantan , or white cricket . I ate very clean , I cutted out all white carbohydrates , soda , sugar , and fat from my diet . Not only for myself , but also for my mother . ( because she have bouggt me up until now ) One was a friend ( of mine ) when I was a universty student , and the other was the agent of my life insurance . After seeing the Buddaha and deer , we went to take a Purikura . Last year , I was a call agent on telefon line and sometimes I had to talk in English . This morning , I read an article in the news regarding marriage ; it said that women in Japan want to marry men who receive at least three - million yan a year . I heard a story from my client about internatinal marriage . Though I think it 's culture , I would like to know more practicise details . I think they just marely can read , write , speak and listen to English . I hope that many students in Japan are intersted in English and master English as soon as possible . For that reason ( will ) , I study Englsh hard now . But , I 'm not going to go becaouse the ceremony is only for family members . I like simple phisical works . I want to be a television jouralist . I think `` correspondent `` sounds more proffessional than a `` reporter `` . Most people have attacked head coach Okada on the internet before , and the edia does n't usually release complimentary news articles about him . I understand when people speak it , but I sometimes have some difficults with speaking . I 'm a university student , and I major in Chenese Literatre , It 's not just true for Japanese , but for any other langeages . In ( the ) winter season , I often want to eat hot soup with chiken and lots of vegetable . I like winter sports , expesially snowboarding . I chose the Erasmushogeschool Brussels in Belgium because the Translation and Interpreting porgramme offered at that university coincided with one I am studying at the Baltic International Academy . One semester of studies in Brussels left me with unforgetable memories and valuable experiences . The tenants were students from European countries like Greece , the Chech Republic , Turkey , Lithuania , Estonia , Germany , etc . Secondly , the courses I chose to do at the Erasmushogeschool were useful , as I was taught the histrory of Great Britain and the USA , English for Academic purposes , English for Cultural awareness , English grammar and lexis and German language . Finally , Brussels is a beatiful , picturesque city to visit with numerous parks and museums . Maybe now is not a very good time for relaxe but I have decided to take it . The unstability of the state of atmosphere shows with the changing the season , I guess . However , as for me , I 've abstained from a booze - like matter for more than five years , after I decided there 's more to life than just drinking and getting temporaly happyness . Because I like tea and coffee , which cause stains , it may cause my teeth get a little colored . Please teach me about English grammer . What is the difference between these twi sentences ? Obviously , we missed each ither very much . But what was saddenig was one of my friends was not with us as he was in National Service . I got to know that the earth is spinnig a bit slower this year , so we counted from 11109 , 8 . . . . . . . . . . . . . until the firecrackers came into sight . ( until , till ) she may be jokking . I get so much presssure from the environment hat I have stomachaches every day . Today , I had my first classes at Osaka universty . In high school , one class lasted 55 minutues , but in university , a class lasts 90 mitutes . I have to get up early in the morning tommorow to not be late for my first class . I practiced boxing with my freind My freind is trying to become a boxcer . My most favolite ( or favourite ) song is `` Lovers Again `` . I was sleeply during my afternoon class . I think maiking relationships and maiking new friedns and chasing your dream is the most importnat things in my life . It 's been long time sinece I wrote my last diary . I think ( or hope ) that some people also know about the problems caused by American souldiers ( or their families ) and the pain they inflict on the Okinawan people . An Okinawan guy , who was on the way to a Coming of Age Celemony . The first picture above is my family 's dalls . There are five dalls and two steps . I 'm going to traning tonight . the frist note By the way , I finished reading `` HARYY POTTER and the Chamber of Secrets , `` a few days ago , which was very enjoyable , and now I 'm reading `` HARRY POTTER and the Prisoner of Azkaban . `` A guy named Sirius Black is aftre Harry . I hope that I will make many good frieds , and I also hope that there will be a lot of friends from all over the world who will help me improve my Englis . Thak you ! It 's very sinple but a very excting game ! Today I cleard a new song . This song is one of the most difficult song in te game . I 'm very glad to have cleard it and I love `` Evans `` ! very cool song ! I usually eat lunch in the office but today I went out to a restaurant with with my female collegues . The Spaghette was good too , but the portions were so big that we could n't eat it all . So , we ended up lefting a little food behind . Espesially vocabulary . It 's a very small house , just two room inside , 5 familly there but many korean students live like me . It 's 2 years since I have been saperlate from par , mam and my brother . freinds and cats have solaced me and that is better then living alone . Someday I want to live in a city like Samchengdong , I have just been there onece , but it was really cool and fantastic ! I have never been in a korea city like there . It 's the very fusion of traditional and morden and truly clorful . Franklly speaking , I am the kind of guy who gets tired of anythig really quickly . Also , I find writing in English very complicated . It seems like such a long way to go but each of us is strugging . Every day , my parents feed chiken , ducks , pigs and fish . Go somewhere I have neven seen . Today , we studied the culture of America in class . At the begainning of the class , we learned about early American history . The first stage was is the colonial period of time which began 1607 . Beacuse the cinema requires silence . But why are they becoming popular in foregin countries ? Could you help mechoose the right one to use in a sentence ? Is is ' She did not fully appresicate the value of the environment `` or `` she did not enough appresicate the value of the environment : ? I 'm like a profecional player . What 's your all time favarite sport ? If they really understand the meanig of ' eating meat ' , Beautiful world , now I am exthousted but . . . . I feel really sorry for my friends that are waitng for my pictures . Especially listenig ! ! ! ! The purpose is to tell the pearents about their student 's school life , and to know about their student 's home life . We noticed that the weater was getting better as we were leaving the store . Article 128 . - The Inter - Secretarial Commission will promote a program for the formation of mutual organizations and insurance funds with self - insurance functions under the relevant laws , in order to facilitate the access of producers to the insurance service and to generalize thei coverage . Osaka university 's professor Ishiguro invented an advanced humonoid robot . It is like skype , but a humonoid robot . It 's the purpose of this humonoid robbot . I ordered a dagital camera last week . I look forward to taking pictures of many beautyful seens . Good owner , good co - workers and good enviroment where I can practice to speak English . I drank 2 cups of coffee and ate 3 peices of chocolate . What happend last Friday We were looking forward to seening her since 3 weeks ago . It turned out that she had changed her hairstyle and her teacher put heavy madeup on her . But some childern were clamming up or cryning . It apears that they ( the children ) were unsightly . I also met my parents and reltives . I like to eat umeboshi , mozuku ( like seaweed ) , and fried chikien ! because I do n't knouw ! It takes at least 15 mins to get there . Which are reading , writting , and listening . Yesterday , I cought a cold . I 'd like to contribute to treatments of deseases through my work on neurophysiology some day . The orginal version of this song has been recorded by the American rock band Journey , written by Steve Perry a member of this band . However , when my leg first stepped out of my room on the way to complain about this to the hostel office , my cool mature roomate stopped me . `` The ture man will never be afraid of the little insect . `` said he with a calm voice , `` I used to be biten by the insect too , but now they can not harm me any more , coz I have already grown a layer of iron skin `` hobby : driving , nico nico douga ( plemium member ) , and so on . . . Becouse , I finished English school this Friday . prease help me ! ! Does the H1N1 flu cause issues in your contries too ? Anyway , I hope everybody on lang - 8 can be healty without getting sick : - ) I was very nervous befor thant . He tested my pratical knowledge of MS Excel . I tought : `` I can really work in the real company ! I ccoked alot of summer vegetables . In other words , the meaning is hard for a little child to understand but I have to say the molody was terrific . Can you hellp me ? If you can hellp me , the best method is to give me money : $ 200000 . becouce mistake might . . . . . . . . . . . They are kind of loosers in Japan like me . I will endure for them , but instead I shoud find something to be happy for myself . Althougt I ' ve studied English since I was in elementary school , I reall want to be a good English writer . I will introduce to evryone my favourite Japanese artist . My friend will already be getting merried . Bless my friend , I hope people who read my diary conglratulate him . . . Prease would you become my friend ? `` It was a plate of salad and spagetti . I like that menu , however , I have an allegy to curcumber and tomatos . I fogot to tell the chef to avoid that food . There were no curcumber and tomatoes . The chef knew about my allegy . My son is only four yeras old , so he is too young to feed the larvals well . Then , about two weeks ago , the larvals hatched and become a pair of beetles . Last week , I suffered from a terrible baskache . As summer is coming , cockroaches appear in kitch , my room , everywhere . I 've heard that they can survive eating dandruf and dust on the floor . Although I vacuume the floor out almost everyday , I find one or two every week . I set them in every room and expect them to sweep all of the cockroarches out . So today class is starTodayting at 9 : 20 . It was quater to one . So I hope to find a English naitive speaker for a language exchange . For me , it would be an enriching experience and an honor to contribute with my voice to the World Youth Choir , wich is a well recognized organization . Maybe my interner clock has already been welcoming this happy occasion . After I wnet home , I continued the study in two 's complement and I finally understood it . Main characters are John and Nerson . John is trying to kill Nerson in prison for revenge . He has been put into prison three times by Nerson 's father . But Nelson 's sfather died suddenly , so John changed his target to the son . John tries to kill Nerson in many ways . But ironically , Nerson , who was really weak at first , rises up through the traps set by John . Even Nerson 's penpal , who is only about 6 years old , reads aloud a letter from Nerson which includes lots of bad language , in front of his classmates at school . In such a situation , all of the characters do their best for their own purpose , but really , they 're all just funny regardless of whethe they accomplish their purpose or not . That 's becaus I ca n't imagine living in such a hursh world like the one in the prison in the movie . They turn their harsh situiation into a funny one with their expressions . I was busy finding a job , treaveling , fishing with friends , etc . Walnats bread ? Bread with walnats ? Bread in walnats ? It was walnats bread . As you know well , this is a tarditional tactic for us . She is realy an outstanding girl , and because of this your friends would be jealous of her . But `` or `` should n't be at the biginning of the sentence , should it ? I am writing a diary in English beause I have a few penpals and I want to improve my English . Introduction to my houmetown . ceause there are only a few . Last night , after the Christmas Party ( a little bit early , is n't it ? ) held by the school , we drove to Jiaushi , Yilan ( northen Taiwan ) to enjoy the hot spring . Unfortunatly , all the rooms were full . We had a very brief sightsee in Jaiushi downtownthen , then went home in tears . . . ( j / k ) I had n't exercised since march this year , because I am suffering from acute muscler pain now / at the moment . I think it 's TERRIBEL ! He did n't call me althoght I texted him like `` Have a great night Joey `` Oh I mede a new Blog account ! And I want to go to a good univercity ! I am studing hard in math , Chinese , English and so on . I am busy everyday , but I feel very hapy , but I think my English is not very good , I want to make a pen - friend ! At the same time , they are producing water polution and causing desertification . he is the opresident of his company . It was faster than I thougt . But she must be a kute girl who has style . It 's nice to practice writting through the Internet . It 's uncommon to do this kind of thing out of school . I have never continued writting blog or something over half a year . Ieven though I 've only worked in that company for three days , I felt that I was wokrling in hell . For my better future , the fisrt thing tomorrow is to call my boss , to tell him my decision . But I hane no friends who speaks English natively , so my English is not that good yet X ( In fact , I want to go there with my freiend , but I do n't have one yet . I think the Bund is an intesesting and beautiful place . When I was a littlt girl , my grandpa always said to me , cherish everything you have now , and be a happy person . Life is like a long journey with many challenges and difficults , and many times we ca n't change that fact , but we can change our mind and thoughts , think differently , and dont get upset , try ur best to face it , solve your problems bravely , and I believe we can see the sunshine after the rain , that we need to cherish everything , only the small things matter , they can change a lot , even our lives . I thank my parents , they gave me a healthy body , and they support me no matter what difficults I meet . I thank my friends , when I feel lonely , they always spend time with me , share their joys with me , and make my life more wonderful . I thank nature , it gives me air , sunshine , the blue sky , rainy days , and a great mood everyday . I thank society , it 's like a big family , and apply many ways for me to look for ( unsure what you mean ) . I thank strangers , althought we do n't know each other , when we are in trouble , the hands are always around us , and lastly , I thank myself , I let my family members feel happy , and make my friends have someone to share their tears and joys with . . . . You have to be responsibal for yourself . I think everyone is faced with a barrie of the language at some point , but it may entail a lot of culture difference as well as those of the grammar or pronunciation . I will persist in writting in English and in anyother languages as well . Races in Northen America are not good for people in Japan because of the time difference . I have thought about camping for a long time , but because of my ecnomic problems , I have to put it off . I went to China town in Yokohama on New years eve and celebrated the new yeare there . That 's why I desided to write a diary . in the proess of globalization , the developing countries dind not share the achievement of their economic development . Secondly , economic globalization results in the instablity of the economy in the developing countries . facial expressions of shop assistances , their manner of speech , from overhearing of businessmen talking and the like . . . for instance , shop assistances used fixed formal phrases . This time , I bought many clothes and I already regrette having bought some of them , which happens each time I go to the sale . Especilly after I finished my work it tastes wonderful . I am always drinking Tiger beer when I was living in Singgapore . Anyway , this is so famous in Japan that banaa used to sell out lol If u are interested in this , try it ~ I 've never tried it though ~ ) This cream puff was handmaded by my colleague . My japanese is so poor but he is patient and cafully translates japanese into English . He decided to posion them . Anyways , it is extremely crucial for me to decide what it is that I realy want to achieve ! Even if I 'm a millionare , it would mean nothing if I was n't happy . Oh , I just remebered another important idea I learned from books . because it was not important to my life when I staied in china . I went to Grouse Monuntain to climb with my host father . Mt Grouse is a very popullar mountain in Vancouver . I also paracticed the making of Zonbi today . I 'm looking foward to the Zonbi Walk . I want to talk about movies or soccre with you . I lakce hors and cooking . I lakce wochen TV . And what do you lakce ? Our class has Korean , Japenese , and Taiwanese . My teacher is an Aamerican . I must resarch fashion by the magazin . The industry of my choice is a firm company , marin or an air transportation company and hotel . Maywa Denki , one of the artists who displayed work in this exhibition , declared thier concept to be `` Device Art `` . In such relations , devices are mere tools , being the subject to make the contens . Only the contens is regarded as art . I am not very familiar with contemporary , so it 's difficult for me to understnad this sentence . Do I have an advantage for learnihg foreign languges ? ( I 'm not sure how to correct your second sentence ) Citizen watches Japan can not suuply the parts only . I 'm working as a telephone ooerator . but pay is realatively good and , physically , its not a hard job . Best of all , I work short hours ! ! Please tell me if the things I write do n't meke sense . Japanese restraunt `` saizeriya `` I went to the Japanese restraunt `` saizeriya `` today . It is a very reasonably - priced Italian restraunt . When I am sad , I always count my fovorite things . ( I did n't know the parts were still in there ) I guess he did n't make a full recovery , but he looks fine when dacing . Unfortunately , we can not talk to the animals b ' cuz ( because ) we use differnt languages . I usually realted aliens with everything around me . I think taking photos is good for improving your sence of I belive in heaven and I also belive in hell . I 've never seen either but I belive they exist . They have to exsit , because without heaven and without hell , we are all just heading for limbo after death . The places have indentical features . English is preety hard ! I wil do my best in order to achieve my goal starting from RIGIHT NOW ! Singapore people who lived one generation before started usesing that language . The Pronouncication , accent and rhythm of the language are very different frome English which we have learned until now . Yeserday I listened to this song on You Tube . When I was leaving the car park , my husband adviced me advice . I realy enjoyed this summer . I have to practice soccer everyday , practice futsal every week , and practice aikido somcetimes . What 's the seoson in your country ? Did you know that a big typhoon is comming to Japan now ? Tomorrow maybe it will hit Jpan . The TV darama `` OC `` is awesome ! I study english by watching the darama `` OC `` . This is more natural . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyricals are cool and their music has a lot of energy plase correct me and thanks for reading - . - Anyway , I am going to study English using `` BENJAMIN BATTON `` from now on ! Tomorrow I will have an English examimation . I hesitate on what I should choise . We had a substituce teacher , but he was nice and had a good sense of humor . Since I read books until midnight for two consequtively days , I 'm going to wrap up my entry . I often drink hot tea , couse I have sore throat . I think that she is a real persanality . I laughted silently to myself when I was in the dream . I chukled and giggled . I hope my bad memories wo n't eat up the plaseure dream ( in which the man loves me ) . Of corce , amime is Ok . It is wel known that English learning includes four aspects : listening , speaking , reading and writing . I do n't remember who , but someone told me that reading and writing belong to cultural aspects , while listening and speking belong to language aspects . I major in ecomomics , and now I 'm busy with group study and studying for TOEFL . . For example , I have 12 coworkers in my office , both regular and temperary exmployees . One of the temperary workers is very dirty , lazy , and tough , so most of the other workers hate her . Even though she realizes this , she makes no effort to change her habits to foster better ralationship with her coworkers and create a more effiecient working environment . What I 'm trying to say is , `` If you do n't want to change , searh for a job more suited to you . I was hanging around in Shinjuku after work and I saw such gougeous displays . I wanted to watch ( them ) from the cafe across ( the street ) , but unfortunately , it was fillsd to capacity . So , I ca n't become the superintendent for our domitory . Today , I watched episode 4 and 5 of the secound season . I like cerina . Who is the actress who plays cerina ? the class always stresses me because I teach students who prepare for university enterance examinations . ( It 's very difficult and important for them in Korea ) I told them I was planning to go abroad to study Englsh . but I do n't get any chances to speak English or Japanese at my workplace and I 'm not satisfied with my currnt job . This is my farst time going to ita . Nobody understands hou I feel . Yesterday my friends and I played baskerball in the park . When we played basketball my friend hitted my head . When we rested netx to the basketball area , The fateher played with his son and the mother just sat on the bench I played the pianno with my daughter in the concert for the first time yesterday . I admitt that not every piece of Seth Rogan 's is as brilliant as Superbad or Juno . Are people in modern society losing thire moral values ? Every year , bullying at school occurs and it does n't seem to disapper , rather it 's becoming worse because there are some students who committed suicide after being bullied and the way of bullying is becoming terrible . There are some pople who talk so loud ( OR loudly ) with thier movile phone in trains or buses , not considering other people around them . Also . . . I do n't know diffference between `` memory `` and `` rememberance `` I stird and cried . There are many many tradional summer festivals . I recently went to bed late so I am worring about my lifestyle . But until now , I do n't tihink reading English articles is very easy . Did you see Avator ? I used to read fiction when I was young had a lot of free freetime . The method is good . I study about 1 hour a day and write with native spekears . By the way , I would like to know Jiro Shirasu which made the biggest impact in the world aroud 1950 . Plese chack it . I went back to my farher and mother 's ( parent 's ) home . Then she craped her small hands and swayed to the song . I 'm very excited about my firast diary . Then I ran arround the park near our appartment . I had a good time eating the delicious piza with the group . Recentry I 've busy so I could 't write a diary . I 've been studing English for years and have just started learning Spanish . I also recived the high school entrance examination results , and I passed . I like eating and travlering . and somestime I would feel shy . Maybe I fear have a fear of making mistakes . I watced the movie `` UNSTOPPABLE `` A repairman came to check the air conditionar in the morning . He found that one of the possibilities was a short voltage of the remote controler . Jim Parsons 's Smail is Cute . XD I emailed that to them on last Saturday ( their Friday night ) , that I asked them to accepet for me to stay at their home again . However , they did n't reply anyting to me until Monday morning ( their Sunday night ) . I worried that they will have some trablesome thing during the days which I expected to stay , so they were not able to reply to me . She did n't read my e - mail until when I calld to her , and pleased to accept my request for an accomodatin in their home again . I cannt say it well in English . such as learning phrasal verb , curren Enlglish , Grammar etc . Well , what I can do with myself ? However , I agrue with my teacher . . . What about our new English books ? I 'm starting a book caled ' ' Laser B1 ' ' . Although my English level is very low , I would like to comunicate with many people . Thouge there was also an unnatural scene , it was very interesting . My favoritte school subjects are biology and mathematics . My favoritte TV show now is My name is Earl . It was a good exerpricence for me . We couid divide business items . Good moning . First I watched Love acutually , of course it was the English version . Q10 : Who is the most interesting person in your familly ? interesiting in an unexpected , sudden situation . Andyway , that 's why I like him . In my futuer I 'm sophomore a at Kyouto Notredame Universary in Japan . There are some students who want to be a teacher , OL or technitian . They are studing to acheive their dream . I thought about how can I could improve my eglish level during vacation . It is to chat with forginers who can speak English ! ! But I also think that teathers and parents should give children diverse education so they can have great lives . I felt nervous , froustrating , heart 's throb . but when I was preparing the competitions I was nervouse and I felt fresh when the competiton was finished . and I have to do my math homwork , and to study many subjects . I take it regulary , usually twice a year , in order to check my level of English . It is totally amaging because she was speaking with her own words at this speach . Anyway , I think everyone should see it onece . It has made me a littele confused . His work is so popular in the world that he has many funs . When I wathed this , I thought this could be quite an innovation . At the same time , I thought of some problems and am still thinking of soluthions for them . we were singing and playing and eating the buffe for about 5 hours . February 24 is the birthday of 25 yeras ! ! Keigo Higashino is a genious . His stories alwase amuse and surprise me . However , I still used it because I am not yet finished to write my journalal entry . I have read a book a bit because I have travaled all day . I thoght , I will be late . When I got to my office , the morning meeting had alredy started . I must admit that I didnt ` t do anything throughout the holiday except Harry discovered he is a isPsychopathy . How much syrub ? I do n't know how to express my oppinion . Ah , I want check the grammar or seneteces but I have no time , but I have to earn the money for a beer . She said that from that moment I had become hers and noone other 's . There are no differents because it 's still Asia . confuse : Both of them told me different imformation about the nuclear plant , so I was confused . compete : 57 succer teams will compete against each other this summer . In the moring , I see many Chinese college students reading This is a Korea 's tranditional day . On this day , we celebrate our harvest and we show our respection to our ancestors by a special ceremony . On this day , we also face the worst traffic jame . For example , it usualy takes 5 hours from Seoul to Busan by car , This is a culcural difference . so I 'm disapointed about this . There were so many people in a narrow room that I 'm slightly worried about the infection of swine ful now . We just walked around the bottem . ( ? ? ? ) And I think he is laerning and coming to understand a lot of things . I will travel abload . They strengthen our interpersonal relationships , seld - confidence , and allow us to gain more knowledge and friends . Recentry , There was a big earthquake in Japan . We appriciate very much . Unfortunately , even if I explain about the movie well , the reader ( I mean the friends of mine who will correct this . . ^ ^ ) will have difficuly understanding the story of the movie . I recommend this movie to all of you interesied in traditional Korean culture . I got up at 12 : 00 pm and I was just a couch - popato all day . Maybe it 's becasue I really hate my future speciality and do n't want to be a programmist ( I 'm the one of that persons who go to university just to get diploma ) . We got acqainted with each other through the on line community named `` mixi `` , which is like `` Facebook `` in the U . Gakkai is Japan 's largest religion , based on buddism . She is allgedly a bit older than me and working for elementary school in Osaka . It was umfamiliar to me , as I was born and raised in Tokyo . A further reason why I want to do this is to get used to writing English essays without the hessitation of choosing the words and structures of my sentences . While my boss is away from the office I tried to use his machen to make a cup of coffee . So when he came back from abored I can brew one for him . I tried to go to a Bikram Yoga class , but , regrettabley , I did n't join it . I CNNNOT WAIT ! ( typo ) The first , I live in a rented ( rentend ) house . My price is more expensive than their budjet , Pic3 : How to creat GDP ? I had paellas of seafood and chickin . I suddenly changed direction intentionally , and then fortunately I managed to avoid the picer . Anyway , Barcelona was gread place with good sunshine . I 'm sorry for my Englich = ) I want to learn spanish because I may take spanish for my foreign classes , but I am afriad because I 've never learned spanish before . . . Because my climbing shoes storetched , I bought new shoes . They were worriors wondering around the magic world at least during the play . Our journey in the D & D world shall be updated in consistence with our actuall progress . I 'm a Japnese woman . She is jist 3 years old , so that she could not understand what the TDL is and almost all the activities . Then I came back home , went to au shop to fix my phone , because my cellephone has something wrong with the connecting . If it is tlansrated straighly into Japanese , it means `` anata wa shitteiru `` . I have a hadache , but I do n't know the reason why . or , relieafness after finishing some work ? I 've read many books on how to study English efficiently , but I hav n't focused as much on speack English well . On the second day , we went to an iland that is near the Kota Kinabaru we went by boat . Then we returned to the hotel and we had a nup . Then we reluxed and had a massage . I then asked the staff ` What do you recomend ? ' ' Yesterday I presentated my graduate thesis . The economy of Philippiens is developing but they have a crisis . 1 : Put the following five animals in order of prefernce Look at the explantory note below . Today I went to see the hospital because of nusal inflammation . I had an allergy teesting with my blood last week . When I bought `` How to Speak Enblish in Three Months `` , that envplop was still sealed . Nothing isn finished and nothing has changed my English skill . My favoraite book is `` TOEIC elderman 755 points clear ! `` # 2 to watch CSI maiami and I will writet that strory lines in my words . Anyway I have to sotp buying English books , text books , etc . I leart English long ago ( when I was still at school ) but since then unfortunately I have n't used English . I decided to start guiter , and I joined a music club at another colledge . My senior said `` I advise an early start on guiter and you should buy a guiter in which the price is between 70000en and 80000en `` Finaly , I called my mother , she said `` Oh ! She instructioned me to call her friend , who was a professional guiterist . He told me his favor internet - shopping site where he bought his guiter . He said `` I think at first you should try to purchase a cheap one and if you think you want to play the guiter , you should buy more expensive one . `` Now , I wait for my new guiter . Will you listen to my music , if I learn to play guiter very well ? ( haha ) There is the flower shop called `` Flower Factry `` near my house . I boutght cut flowers , a poinsettia plant , a lavender plant , a rosmarinus officinalis plant , and a flowerpot . Plese correct me . B : If you are not talking about the IQ thing , I think I 'm smart enough to say `` I do n't know . `` honesetly , if I am asked that , I do n't know about it . My hasbund allows my son to take it . They are so yammy . Today , I found the sweet ' ' DOCE DE LEITE ' ' so yammy ! Should I go to see a docter ? My favorite team is The Tokyo Gaiants . I 'm very excitde and happy ! I was too happy to belive it . Thay made me a cake which tasted very delicious and the decorations were also pretty . It 's raing now . Ressently , I 've researched how to study and improve my skill . Last weekend I returned home . Since my hometown was far away from Shenzhen , I came home by trian . Althouht I have grammar konwlegde , I still can not write any correct sentences . I registed for this service . I would like to just stay at home not go hang out with my frined but I have to go and vote for the prime minister . Why have practices like this not disuppear from Thailand ? Even now , there are still a lot of problems with elections . I thought I would remember the experince forever , because the training was so difficult for the girls . I met a couple of CPAs and colleages who are studying hard for the CPA exams . it 's my drean xD ? and now I shall go to my summer hous . Everyone has their troubles , a positive atitude must come first ! Poteto chips It is difficult to use a mouse or keyboard while you are using your computer and eating poteto chips , However , it can be hassale to wipe it every time . Oh and I forgot to say that the goal was magnificient ! I will start work as computer programer starting next April . I am studing English and history . one man had killed nealy 100 ppl . Thnak you for teaching me such a funny word . If I am not able to understand these slang , it might be difficult to comunicate with native spekers . It is boring for me to only study gurmmer , essy , gurmmer , essy everyday . Of couase , I know it is important to learn these things . I went to Beijin in China for four days in this week . mayb . . . He is a Brithish writer . Now I happend to find an ad on the Yahoo page which says that you can take a trip to an Asian country ( you do n't know whereabouts to go ) only by paying from 18000 yen to 23000 yen . the traditional opinion that boy is more prescious than girl has changed Onece , he revolutionized Japanese telecommunication industry where NTT had monopolized for a long time . He faces the opposition in his own party after he survived the no - unconfidence motion from the other parties a few weeks ago . It 's almost spirng . Now , we are filled with concerns about the aftershoks which still continue and about radiation . I think something will change in Japan when spring is comming . I asked the employee at the main dest , and he came to check on the printer . He fixed the connection in the back of the comupter , and it eventurally worked . After the face to face interviw , I was asked to finish a written test within half an hour . The younger sister lies in the morning , and speaks the truth in the afternnoon . ( Could I use this sentence to replace my last sentence ? When I went home , I flet my body ache and my body broken machine . Yesterday , I staty at home the whole day , I watched a film < The Devild wears Prada > . by the way my classmates intorduce me to that film years ago , , I 'm aways watching it . It has been a very long time sice I saw snow . My English cluse In this university cluse , we study it by reading American comics . The teacher in this cluse is really loves American comics . So , every cluse , he recommends a lot of comics . She describes the mental state of women in a vriety of situations in her songs . They cry from the loss of love and are dilighted with new love . My favorite tune by Maria Takeuchi is `` Sutekina Holiday ( The Marvelous Horiday ) . This is a Cristmas song . this season becomes meanful . In Japan , we differentiate between bowel trouble and stomac aches clearly . Sometimes we feel some pains in the stomach caused by stresses and pressures like mental factors , but bowel torubles are caused by some foods I have staied at home all day long . The menu is fried oyster , corn cream soup , salada , and rice . So I decied to learn English . I 'd like to tell Japanese how foreiner are interested in Japanese . But many areas of Japan were hitted by heavy snow and caused havoc . I juse finised to make a powerpoint for my class on Saturday . my internet connection was lost now and wanted / asked me to close ( the window ) so oh my goodness I was just writing my entry a few minite ago but I will not blem it because I am happy today and my heart is happy too . By wathing NHK , I can watch all kinds of wonderful programs they have to offer . Sometimes I concentrate on watching TV , writing down something that I 've never heard or learning more useful expessins than I 've known . My English is teriible . But I try and try . . . . then , my journal is witten up . I hvae to eat less . I also listen to English in a similiar way and I ca n't keep up with the conversation when native speakers talk . Then the spectators were yelling at him and criticizying him severely as soon as he ended his remarks . After that , the judge convicted him of the crime , but George did n't sucumb to the judgment and requested an appeal . This morning , I said something wrong , and my collesgue just used it to make fun of me . adult celemony But there are still some problems with them , especially when taking metal ones ontrains or airplanes , because some security personnels take it as a potential threat and confiscate them . My teeth dont n't hurt now and I 'm really glad about this . I do n't have ehhough money to go shopping and it sucks . But I did n't have any idea untill now . . ! ! Day 90 : I see that everyone arond me seems to be more clever and more well - rounded than me . Everyone like theyselves , living so naturally . Calaf declares his love for the princess , but she asks him to leave . He refuses to and confesses his nombre . However I ca n't kill them because it 's disgusting so I always try to shoo them by using a notebook ( by waving the notebook at the mosquite ) . Also my friend got bitten by poisoness spider and she has a fever from its venom , which is worse than mine . I ca n't keep waking with them for more than 10 minitu . This time I bougth two mineral waters in 2 liter bottles . The Theacher asked us , ' If your friend is wearing a new suit , what do you say in English ? ' . I want to know what is your reccomendation on the places to go to , the food , the amusement and so on . . . Although it 's winter vaccation , it 's still too lazy , huh ? s second part of school means that after summer vacation , starting new semaster . If we want to take lectures from them or have discussions with them , obviously we have only two choices : wating for them to come to our country or going abroad to meet them . Hence , it is better to go abroad and meet them instead of wating . Thus , for students , especially those who want to become researchers , entering a famous foreign univercity is a good option . In fact , I met a foreigner who had better undersanding than me about Japanese culture . In this grobal era , it is very imporant to understaind our own country because it will help us to understand other cultures and , thus , help us broaden our horizons . I heard from my friend that there are only a few translater in Japan . On our way , some bicylcles appeared and caught me by surprise . The gurad tried to stop them as he told me to cross the road . Well , we ate BBQ while talking about something interesting which happend in the junior years . If you had misunderstood something , I would apoloy to you . Actually , the KAIST graduate school announced the filnal result on ( September ? ) 17th , and I got accepted into it . Japan has been plaged by this disaster still My sibling are growthing , . He already has a beautiful wife and lovly daughter . Next I don ` t know why a native can pronouce this well . But cheking their profiles , I found out most players were taller than 180 cm ! ! ! Polite or inpolite The posters that appeal to people not to hoard these goods are widespread on the Internet , espicially on Twitter . My efforts in writing and reading Japanese are a bit pathetic as of now , but even so , nobody seemd to actually mind . I want to improve my English and talk with many forin friends . Srimp and squid Honestry I dont know how much like her and also I will be going to US in ougust to next march ( for 7 months ) . I need to say good bye as soo as possible . I 'm going to England and Itary from tomorrow to 31th . She adviced me `` Do n't hurry . It may be found when you are thirty , fourty , parhaps now . Of course each person had a room . 2 were New Newzealander , 2 were Japanese , one was French , and the last one was Indonesian . 2 girls and 4 guys . We have 2 proffesional basketball leagues in Japan . Sendai has 3 proffesional sports teams . I beleive that sports make us energic Some of them were put on ventilations . I do n't actually have any special hobby thing that I do regulary . Geez , why dind n't I know that before ? ! But I will go there tomorrow , even if my anckle still hurts . : P I miss my faimly . I have a nice faimly ; there 's my father , my mother , my little brother and I . Many fathers and mothers come to school and prepare food for their chirld , but my father and my mother did n't show up . I want to have a hoilday . Thogh I decided to do so last year 's end , You know what happend in Japan . The good thing is that all the entries usually have not only corrections , but commets too . And do you knou why we call it ' wisdom ' in English ? I was recomend an English dictionary from my friend . But I may be able to learn many words from this dictionay . He appearanced in a 600m relay race . And I also appearanced in a ball - toss game . Luckly , I listened to someone 's speech in the evening and I finally got motivated . Your stones ca n't be taken , unless they are surronded completely . Before , I had n't decided what carreer I would study . I consider myself a good person who loves enojoying life and spending time in nature . While it 's always hard to deal with my studies and receive comments from a professor , to be told `` the ammount of your effort is absolutely short `` is the worst part . It 's horrible to acknowledge what I can not do , in spite of my storong desire to accomplish it . But a year ago , I became intersted in American movies and dramas . I think when we learn a new languge we need something intersting . I have a cat , fishes and chkins ! I thought it was wonderfull . When I was a kid , I bilieave that rabits lived in the moon . Then we started to intruduce ourselves . I will eat less than useal at dinner , without carbos . And so , I go to the small kitchen in the office and drink coffe . I cooked Korean barbecue , Kimchi - tuna stir fry , Laver omlet , and How do you learn foriegn languages ? I 'm spending most of my time studying foriegn languages like English and Japanese . I 'm studying 2 Englihs vocaburary books and using a iPod application that can help me build my vocabulrary . The key to building my vocabulrary is ' repeat ' I think . Do you alread know about this ? If you 're learning Korean , I also recommand a online dictionary . Which path to choose is very important , so it 's a very difficut choice for me . Field Surbey I tried my best to write this a friend suppported me . Chrysanth is typically used , but flowers such as roses or carnations should be avoided . Second , wirte it in English . Fortunatly , I will have a colorful holiday . About 2 days ago , I bought a maganzine and a topic in it said many people have a problem called ' email nervious ' . I check emails everyday and handling these emails will occuipied at least 2 hours of my working day . there were so many old people sitting around the stage where an old man was singsing with great passion . the average age of the people was 50 , of course , ecept me . It was also interesting to see the old fashion in a club , ecept that the old people did n't like to sit on the barstools . ^ ^ In Japan , the highschool school baseball championships is especially popular , as much as professional baseball . I think the American movies are so dinamic . It was pretty hard for me to read , since I had n't even read it 's transtation . Today , I visited my customers because I understand the orientaion of improving our new products . My exeperiene in Australia Today , I herad that he carried some heavy things from a track to places where he had to go . I have been very busy writing a paper in order to guraduate from univercity . It 's very populer in Japan . This book teaches you lots of Japanese slungs . Beyond that , this book taught me a lot of English slungs . However , I have to be careful in using slungs because it might make some people uncomfortable . Now I am studying English and germany . I slepped down a small bridge from the top to the ground . She had already been in Canada and she recommended me to stay at the same homestay . I hope she got it easyly . Japanese traditional food is healty . Most non - Japanese peple peaple hate Natto , which is fermented soya ben bean . When a man marries his wife and she becomes pregnant , he thinks about pregrant very often . The charator ( character ) on the blackboard is so small ! ! I want you to wirte down bigger charator ( characters ) ! ! `` I was very sur ( surfrised ) because Korea has a culture about respect & great manners to adults ( or oldaged people ) and that action was very rude to the teacher . And teacher erased her charator and ( rewrote ) the same content . Is a Protestant more consevative ? I 'd appreciate it if you cheack my English or send me a message . We enjoied Teppanyaki ( sliced meat and vegetables grilled on a hot plate at the table ) and a bottle of Wine . We enjoied Sake and raw fish . I could work much more confortably if I replaced the memory boards with ones of more capacity . I 'm not sure working confortaly is worth the cost . Should historic buildings be prederved or be replaced with modern buildings ? With the increasingly rapid development of the economy , it is definitely undeniable that there exsit tremendous changes in the world that I almost do n't recognize in comparison with those several years ago . Over the past years , the government replaced old Beijing siheyuan with new buildings in order to develope more quickly . When making payments for rent , utility and insurance , we register our bank acount information in advance and have the amounts paid automatically before the due dates . post office 's letter delivery , I always become anxious about whether my checks are propery distributed . I agree with the dicision of the court . I am in favor of buliting the new library . I maintain ( contend ) that owning the jop helps mannaging student 's time I prefer eatting at a restraunt than to cooking at home I agree that tests encourage students to lern . . I do n't think it is right to build new parking lots on the campuse . But other people correcting the entry in Japanease is very quick . wimbledon will begin before long . It is myserious thing . We rode a dengerous plane . We could catch a later flight becouse there was another connecting flight 4 hours later . Tish is my first time writting on here . I can not speke English . My grandmother is 70 yars old this year , but very energetic . so my son cought a cold . . . What a pitty ! : ( `` My room is very cold in the evning . I recomend a gas stove `` But sometimes I hear only the sound of the words , and can not understand the meanings of the sentenses . When I hear some long conversations or lectures , I think it is necessary to be able to comprehend the meanings of the sentenses accurately . Should I read and learn , then listen to the sentenses or phrases repeatedly ? A Godess in a toilet . A very , very beautiful godess stays in a toilet . That 's why if you clean a toilet everyday , you can become a beautiful lady like the godess . I set an ink converter on it , filled with my favorite ink , and wrote some letters . Every time , I get really motivated to learn new skills , knowledge , and expriences . And FINNALY Thank God ! dunno why but felt like I 've been missing all the good foor in my Life . All things are terriable . Everything becomes a big troble . The most basic rock band has three musicians : a Guitarrist , a bassist and a drummer . If you want to sound like a modern rock band , such as Kings of Leon , The Killers , Wolfmother , Strokes and so on , you will need a synthetizer or an installed program in your computer to reproduce 24 - bit sounds in real time . Part 1 Most useful tip : Listen to the music you want to play and feel it as if you were playing those songs with your friends in a big scennary . It 's a city which seemed very similar to Venecia . . . Why ? If I have any oportunity to travel there again , I will not think twice . I am a doctor specializing in anestheology . Separiting the tasks helps finish the tasks more quickly . Meanwhile , I saw a girl who I did n't know at all besite me . I MUST start studying right now insted of writing this well , I think I cant waste more time writing to you ( whoever you are ) , becosethe the consecuences will be disastrous . I think that we cound not be forever if we 've been togerther . English 's `` waht a ~ is like `` very , really , and so . `` So I 'm searching on the Inrernet for a long time . Can you help me ? ( soory , my English is poor . ) The groung was crowded with a sea of people even though police blockaded a lenth of road for pedestrians . Soon after the problem eas solved . My exchange launguage partner who is from Malesia reminds me of this . I am reading a nobel called / entitled `` Eleven Minuites `` by Paulo Coelho . Althogh it feels a bit strange , I 'm very interested by it . It 's been aproximately 4 years since I formally started studying English , but I almost never have the chance to be corrected when I practice , either because my friends are too kind to me or because I do n't usually write letters or any documents in English or beacause I am not understood . Since I 've been learning from teachers who thaught both American and British English , my writing might be a strange mixture of them . I want to be consistent with BrE since I 've been learning under a British - like system for the last two years , but well , that 's too much to say in a firts entry . It 's really difficut , I hate math very much . During those day I make a good friend in Lang - 8 , she help me implove my speaking , listening or anything . I want to understand science articles and documentary TV programs like from the Discovery channel or National giographic channel . On the program , French scientists escavated a lot of evidence from the Vatican . Since then , they aim to be famous all over the world and chared on Billboard 200 again . When speaking , I alawys speak with the very heavy accent of my hometown . I still remermber the first day when I came to my university last year . dispite the problems , I am proud of the fact that I have mastered two languages , in addition to `` putonghua `` . My Englsih is not very good . Yesterday , my friend kindly talked to me about selling food abroad . She said she will ask her friend about the details becasue his compunee sells things abroad too . It seems that her friend does n't have anwers for us either , so she found it on the internet herself and sent it to me through hotmail . becasue she always makes me laugh . It seemed impossibel to me , but it really happened ! Yeah , I was very sleepy and tired , and the girls were waitting for me in the street . I ca n't fit them , and so they think none of the boots fit me , because I am shor and fat . Fuckin ' hurt me . The restuarant is nice ! Unfortunately , I 'm still in an exam term . I want to be free from these fackin ' exams . Now I 'm really wondering about wheather it is too late for a 29 year old woman to go to a univercity in a foreign country to study English on a scholarship or not , and quitting work to do it . But I have something to do such as doing the laundry , grocery shopping , making some framework for an exam , learning English , edting a movie , along with other things . Actually , I 'm surffing to find a suitable site for my daughter 's English study . I 'll introduce this site to my daughter tommorow . In my oppinion , there are not many tragedies greater than Tohoku . I realised that I always have conversations with my wife in English confortably . These kinds of coversations are very confortable for English learners . But I think if we really want to improve our language skills rapidly , we should do everything ourselves on foreign soil , and sometimes we should be nervous . This is extremely hard without preparetions . Thoungh one of my collegues I just found out aboutthis web `` www . My english comunity skills are very low . Father and mother are teather . We have cultual festival this month . USA and Japan will go bunkrupt He was quoated as saying , `` I came here to kill people . I 'm from Fukuoka , Japane . It seem busy in Bagkok . Hello , friends . In Bangkok it seems busy at the moment . Some of the people don ' t like the primister . They protest at the impotant road near ( ? ) victory monoment . They want the new primister to resign from the goverment . It seems busy in Bagkok and going soon to the important city called Pataya becasue there they will have a meeting and the peple from other contry will go there . My favorite film maker is Andrei Tarcovski . I even do n't knoe what I can do for you . I 'm looking for something good to celebrate my friend 's dauter 's birth . The makers may think most of the parents will willingly pay any price for their children whithout hesitation . I belive perseverance may lead to victory . Do they eat rice , _ soup , _ vegetables , _ fruit , _ bread , _ noodles _ , milk , _ sandwish , _ etc ? Hirosima ( anniversary of the end of WWII ) However , since 65 years have passed , many people like me do n't know the realities of the devastation of the atomic bomging . The fact that he / she had lost his / her life in a moment by an atomic bomb made a black human - shaped spot as his / her identifable mark of living . Many people lost their lives in many ways in many contries ; let me mourn the people who died in WWII . I think that putting the Internet to practicai use is difficult . This is because there is much useful imformation in the Internet , but all of it is not always true . So I want to select the imformation carefully and search for the imformation at various imformation sources when I use the imformation on the Internet . I want to become one of the gratest ministers in the world I atached the picture taken from the window in my house . So I was doing a lestening test by myself at class time . Then , my father called me loudly becaouse he ca n't speak English . The Japan government urges people within a 20km radius from the power plant to evacurate . But foreign governments urge people within a radius of 80km from the power plant to evacurate . I am from China and I am studying in US now . I want to improve my English effectively and my roomate Keegan who is a nice American girl recommended this website to me . That 's why I know this place and registered . Not only do I itch to learn Enligsh and Japanese here , but also I long to make friends who are from different countries . The homework makes me think about the important incidents that have happend in the world . At the same time , I wonder if everyone has someting new every day . Maybe I can find good froends here from all over the world . Oh , anyway it 's sonwing and windy outside . But after I realized that I coud n't resive it anymore . I think this is a very good wap , because it not only the way to study more languages , but also we couldknow foreign culture . and language . by this way , we can have more opptunity to practice our language ability I think . Happy Christmas ( Celine Dion made by Jhon Lennon ) If you prefer a certain Cathilic Bible version , can you please tell me which one it is ? We can share each other 's culture and luanguages . Recently I 'm feeling that our marital relationshp is n't going well so I desided to ask you tonight . I hope she is feeling only phisical fatigue . So I went there alone and saw a lof of forengene there . The ones that came from England , Canada and America I tried to listen to when they talked togeter . But I am not fluent in English yet so I understand some sentences but I 'd really like to understand everything they say . Both of them live in Bangkok and are training for their job at their childrens ' house and the childrend get abondoned with their parents . I 'll do again what I have done before , but this time I wo n't lose my original intention and I 'll be more deligently . Just 1 more exam left ! yippe ! As for me , however , I had written a paper for the purpose of pulblishing a journal . l was really suprise and glad at her success ! ! Today , Iwatched a movied called ( or titled ) `` xinyue `` . It is the part two of `` Twilight `` . From my oppoin , I supports the vampire because he is the first one for that girl and he did n't make a mistake ( or do anything wrong ) . Hallo everybody , this is my first entry on lang 8 . Hallo Dears . It 's very lovely and he acts like a spoild child . There is a Nepalese restaurant in my neiborfood . Unfortuately , there seemed many delicious food delivered afterwards . I wondered why he thought that because I have always done my homework , howeever , as time goes by I will prove to my teacher that Majid can achieve a high score in the next level exam . Because I am exposed easily strongers and perhaps became criminals . By the way , I 'm reading The cather in the Rye , which is used in American high school textbooks . I saw tanks , hlicopters , and missiles . I 'm going to write it , please corect it and if you know about Beijing , please tell me a little about it . I want to know about other Asian country 's traditional way of life , and I also Iwante them to understand Japanese culture . But , I think the best way of understading each other is to meet in person and talk about everyday life . After all , I want to tell peope ( that ) we have to work hard to understand each oyher . I want to tell them about the Japanese schooll system , because there are many good things in it . Hatsumode is a Japanese costom of visiting the shrine on New Year 's Day . I finished wark and returned to the accommodation in which I am staying . I washed the clothes . Today I firsy contacted a Skype user on Skype . The latter have taken away the customers from department stores , which are traditionaly giant in the fashion retail industry . The main reason is that fashion buildings are able to offer more reasonable productus . In the deflationaly Japanese economy , consumers put their priority on the price rather than on the level of service . However , I 'm not that good at mystudy either . Currently , my town is very cold . I will make myself a lunch in a lunchbox , because I do n't wnat to go outside for lunch . I was disappointed to learn that the Nintendo 3ds will be released on Feburary 26th , 2011 . Japanease horror movie . Sommer is a horror season in Japan . Japannese horror movie is very scary and interesting . What is the impression of foreine countory about the Japannese horror movie ? $ 0 . 00 USD - $ 3000 . 00 USD , the price per transation Suddenly , I thought I wanna traverl through Korea with foreigner freind who want to go on a trip through Korea . and may be able to feel a refrech feeling ! ! ! Recentry , I could n't write a diary , because I was working . I 'm sorry for writting a dreary ( ? ) diary . anything ( but it must be less than 800 largecalorie ) After the massive earthquake in Japan , some people hope we can forcast earthquakes and so they write on a web site about earthquake precursors such as clouds , sulfurous smells , abnormal changes in well water , the sun , or the moon . I ate a lotus root whic was fried with soy souce and was sprinkled with some sesame and red pepper . For example , shark ` s hert ( sliced low ) . I feel really like the girl in this book becasue insite , she is really craver . She liked to read books sinec she was young . This book is the frist Eglish book for me . It is rainning in Taipei . she wsa 1 year old and she was also crying all day My lunch normlly costs around 500 yen . I like the food of Izakaya restrunt during lunch . What do you whink about music ? On sep 13th , he made a call to his mother pretending that he was abducted by a kidnaper . He confessed that he had stolen / imbezzled his company 's get - together expences and he was afraid that the company would find out I have no idea how much he spent of his company 's get - together expence . The TV news shows the royal family turning up to where ? three times in the morning and shook hands with the people gathing in front of the emperial palace . I was physicaly and mentaly exhausted but I became aware of something . I want to become better tommorow . 11 / 12 / 10 - Never Lose Your Initial Enthesiasm So when you think about what to say , the things you wanna say can come out sponteneously . He said that there 's a rumor that radioactive substances may be carried by the wind and the Philippines might be also be contaminated by rain due to the explotions of the Fukushima nuclear plant . Now that does not make sence at all for me . I so hated cleaning , espessially washing floors . And I like to rid of uselss things . Because you can always fill this space with something usefull or with stuff you really like , later . I must will have to find mysels very embarrassing one day , than there will be no stuff to through away . But from another side , the more time I spend clining , organizing my stuff and decluttering , the more areas I find to do it with . Sometimes my friens are joking that someday I 'll turn to Monica Geller . ) ) ( And I actually improved my English a lot this way . ) So I desided , during my decluttering week not only to get rid of stuff , but to clean my information space , too . Now I can easily find the book I need and not search throught all the folders on my computer . Three years ago I visited Rio de Janeiro , Brazil together with my friend and kher mother . They openned EVERYTHING : bags of souveniors , pouches of cosmetics . . . The Brazilian officer openned her bag and found a pack of umeboshi and was asking her what it was . The officer openned the package . We could n't look ( past tense ) around enough because we had enterd there 30mins before closing time . I could n't remember which words suit the sentences , even if , I had alresdy studied them . In addition , both campanies have been known for being conservative as big companay usually are . The day she borned was born was just like yesterday . Now she has become a talktive little girl and has her own ideas . At first I was sad , because it gaves me feel that she does n't think I am her friend because she always complain that she really want to meet the other friends . This is an important exersice for me . I 'm looking forward to seeing `` Pirates Of The Caribban 4 `` . I registered on this site a few minites ago . Recently I tried playing the guiter for the first time of my whole life . I go to guiter school and have a happy time with my teacher . But I want to play for sameone , sometine . I want to enjoy writing my dialy and getting to know many people around the world . Travis is a band from sccotland . Their sound and rylics are warm and confortable . One of my goals is to obtain better english abilities so I can comunicate with foreingner . Another goal is to have meny friends all over the world . If you underatand my goals , please teach me correct english . Everybody is good at English and they spoke so quckly that I could n't understand . I did n't understand what the teacher was talking about and the sheetes he gave us had so many words I did n't know . I am an exchande student and they may think I 'm good at English . I like rainig however today was horibble because there was snow on the rord . The rain melted it . I alwas bike to work . I 'm preparating it , that is to say I 'm doing general house cleaning . I finally bought the magazin `` ELLE girl `` ! We wish those victims can get thouhg this disaster . However , I had to go to a driver 's senter , because my license had almost expired . Please corrct my English and tell me your opinion ! They overcome their weaknesses throught religion . He decided to build a laxurius hotel for Indians , but I think it is very expensive . I made some chocolat . Today is a holiday known as ' labor Thanksgiving Day ' in Japan . We respect labor , celebrate production , and thank each other . One of the his works were offered to Yakushi - ji temple in Nara prefecutre , Japan . Cause I finished my eassay just now . So I cancle my plan , and instead played guitar . . . My favorite season is the winter because I enjoy snowboad . I 'm looking forward to snowboading . I went to Chambridge in August three years ago to join a summer school at Chambridge University . Cambridge University consisits of lots of colleges . I decied to have a personal trainer at home . I bought a webcam from a Hong Kong web shop famouse for cheap prices . They sent me the webcam whithout any software nor a manual . I do n't know how to prove that the webcam is acturally 38 thousand pixels Does anyone know how I can check my wecam 's pixels ? Then I 'll play tennis with my friends , study English , and apply myself to my reserch to graduate from my university . He lend me his spair folding umbrella . I stady law . My hobby is wach movies . Scond , a single mother in a hostel looking for job . I have to tell myself that everything will be ok because this is all temprary . At today 's meeting , the manager asked us to make a summary about this month , and at that moment I realized that I have benn here for more than one month . Now I am thinking about how to weite my summary , because my colleagues want me to write it . But I am waht I am thinking more is about whether to go on with this job or not , and there is another important thing . . . I want to do something using English and I want to get experience with business , but what I am doing now is not very concerned with English . My favourit festival is Spring Festival . The students study extremly hard with a view to succeeding here in Taiwan . Many Japanse English teacers use college entrance examinations as an excuse for them to stick to the traditional method . I read sometimes on the bus , but it is not always a good experience . It moves a lot , I fel dizzy and I have to stop reading when I have to get off , not when I want to . I have the most beautiful book in my hands and I 've been waiting for the wrtight time to read it . My boyfriend gave it to me in October . It is February now , and I have only read ten pages . I 'm studing English every day , I 've been reading my last journals , and I must to say that they 're very badly writen xD I was so annoied by the work I did last semester . I was so sleepy that I drank toomuch , then I felt sickey . When we use the definet article `` the `` before a date , The Dark Knight is directed by Christopher Nolan . I think he is a great film director . I have watched Following , Mement , Insomnia and The prestage , which were also directed by him , and these movies are amazing , ( I hete that ! ! ) that 's why I do n't like cooking anymore . . . . ; ( Friends are so fuuny ! ! Chiba has Disneylad and is near Tokyo , so it is a convenient place to live . Of cource , almost all women in Japan including my wife hates such plans . Because when I was in the first year of elementaly school , my classmate put a frog in my clothes . She was crying hardrly . I did n't want to take the bus while it was rainning and I did n't have any bus tickets yet . ( ougt not , are unable , must n't ) my name is Monika and I would like to practice my English , because I 'm thinking about studying law in Reykjavik ( Icaland ) through the Erasmus programm . I went to Kouch in Japan . I traveled to Shanhai last September and visited a big book store . The newspaer says , according to Ladbrokes , the U . Hi , I 'm Sofia Eliet . I 'm learning the Korean lenguage because I want to go to Korea in 2 years , but first I have to go to E . a mock cavalry battle , tug of war and great jump roap . I perticipated in an obstacle competition . When I arrived at the hospital , It was really hard to find him becasue hospital was sooooo big ! ! ! Actually I still ca n't belive he has a really serious disease . But I learnd it very happily . Three days from tomorrow is one of biggist holidays in Korea . For a while , I think when I went to my company this year is spetial . ( ? ) I went to the Garman school to join in a party . Any differencies ? Good morining ! I think Japan has a huge comic and animation industory . Peole in some counries have to work in hard working environments . Your counry have been capiatlism for a long time , has n't it ? We have long summer vacation , from the last end of this month to until Septe . My son brings his lunch to his kindergardten everyday . I think Japan is not only an abundant cluture country Recentry I 've been studying hard , because I will take an entrance examination to a university this year . So I will writte this diary as much as possible to raise my English skill . ( many entries ) And my birthday is comming so I want to do something amazing on my BD : crazy stuff like Bungy jumping , paddling a kayak in a wide river , climbing a cliff , skydiving and so on . New York or Los angelas Is anyone here from New York City or Los angelas I met my freind during my college days after a long time today . I ate an eel and he ate curry and rice at lunce . We talked about the reserch that we usually adress to each other over lunce . After lunce , we went to a karaoke lounge . flabergastted - > I was flabergastted because I noticed a big cockroach in my room yesterday In the aftenoon , I met my friend after the exhibiion . Hi . THIS IS MY FIRST ENTRY IN THE WEB . I am a studiant of English . In Spain we have a bad sistem of learning idioms , unlike like anothers countries of the European union . In those countries you can have a normal conversation with 3 or 4 idioms , but in Spain you ca n't talk very well in english and you only can say the numbers 1 - 10 in French . . . hahaha I should learn the most english as posible . We went fishig and we got three ! ! Staying abroad is a very good experiende ! ! ! I workover overtime today . Oh , the shoes I ordered on the Intenet have been delivered ! I should take them out of the box . Neverthless , the Sichuan style bean curd I ate was very good . I do n't need good pronounciation , I just wanna make friends ! ! As a new staff , I respect my collegues , I try to do more things than the normal , Last night I went to Xinshe Township , a town in the mountains of Taichcung . Afther dinner a couple came over to drink beer and talk with my husband 's younger brother . The couple 's daughter is a very prety gril . You know when you confuded everything that really matters to you . Even if you are interested in reading it 's sometimes a little bit tough to find good , intereting books For exemple , My entries has not been corrected , I wanna put it in the place of latest articles for letting everone know that and correct for me ? You might gather it for a period of time , then you will see how it brightens our life . To me , flamenco is a living attituede . ( < - - - weird sentence I know ) We had to do the weirdest things , like making up a 5 - minute play and perfom it for about 200 people ! I want to grap something but it does n't wrok . I work hard now but where 's my futuer ? Because of it bein too hot , I did n't sleep well last night . I will have no claases tomorrow . we thought this pain was suffered from mensturual pain . We 've not been learning Japanesse enough to know these phrases , that 's why we need help . . . But of course , we would tell her we had help , cause she knows we do n't know japanese : ) For that , I deceide to take the new year challenge of Steve Kauffman at Lingq and aim for 500 hours this years of listening of Russian audio materials . I expecially / check / correct those entries which have n't been corrected . With worries , I was away from school and tried to have a job conserning NGO . She said to me that why do you want to study this , why did you coome to me without any fundermental information and this decision is the most important decision to me for my life ever . About the outdoor lesson , I 've propabily learned how the factory works . Is love so imprtant ? In the course , the proferssor asked us one question : `` What may you do for love ? `` It means that love is not the main parte in a relationship , being concerned with some is . Do n't you think that it 's a good idea to cellebrate special days in this way ? Do n't be fooled by the old - school beginning and non - color vedio the director orchestrated . My youngest sisiter You can prduce ideas on your own ( or : You can produce your own ideas . Today the Japanede socore team competed in the first game of the World Cup . I forgot , becouse I was listening to the radio at that time . I love Nakazawa , but the Japanse team is a very weak team . The beggining I 'm Mefi and I just registred myself on here . There are still some erathquakes now . I 'm not good at speaking and listenning English so I hope I can meet someone who can speak japanese a little . For resposobility ( ? ) for peple . Viens ( ? ) still ( anyway ) are buzzing . Now I studay English at college and by myself at home . But I get the message : corection boxes are open , please close them . Yeasterday , it was a fine day . `` Most mothers with a baby who was as old as Rei - chan were accompanied by their hasband . `` I enjyoed this trip . My boyfriend made me breakfast this mornig . I 'm trying to learn to speak English wich is a third language to me , even I understand it easly but it 's hard to write or speak in English , I have a lot to improve on , and I want some ideas on how to do it , . I ( startde ) to study English yesterday . Someday , I want to ( speake ) English like a native . I bought my cellphone that day , so I could exchange my number with them , and the number of friends on facebook increased so much . It is really huge , according to the weather forcast . To be a fashiom buyer has been my dream ever since graduated from fashion design school . So it is clool . I had dinner with my high school friednd tonight . My frend called me and told me all that she knew . All the people were affraid . Thanx , bye ! ! It has been ontinue for three months . I got throught the worst of the coference presentations . I have always gone to the tutor centet , and I got a lot of help from there . I was impresed to learn it was a true story ( and what a story it was ! ) . Because I live in the Philippines and my sister lives in Austrailia . I 'm vey tired . This verse is excellent , I follow this , but this does not mean that the anothers people will be the same way . I like a manga called `` ma h ga `` In japanness . I aslo like `` o ta ku `` . hehe It is my secrect I seldom tell anyone else besides friends . I would be kindy and gracious to anyone who wants to be friends with me . Also it was exiciting for me to play with my niece ! I know Japan does not like this situation becasue they depend too much on export ( business ) . On the ohter hand , some people appreciate the weak dollar and strong yen . probably appreaicate the weak dollar and strong yen if they do business between their countries . We international students are not allowed to wrok legally outside of campus . As you may know , the G8 summit is taking place in Japan now , and the exchage market depends on it more or less . I found an interensting news item . However , it can not be helped in a sense , because Japanese people have no custom of speaking English in their daily lives and the language systme of Japanese is too different from that of English . In fact , there are a lot of international students around me , and I found many intereting differences among them such as taste or way of approaching people : ) `` You do n't need 300 million treets tell you that `` ( Incidentally ? ) Accidently , we held a party with my primery school classmates , It was better than I expeted . Incidentaly , I would like to have language learning abilities ! I thoght `` I need to learn English because I want to travel around I want to use my freetime to study English and read books obout business And I started learning Janpanese in the university . The male dancer was very short , but he had very good basic steps and musicalty ! ! ! ! I will go shopping , play video games , and go to dance classin . I think English grammer is difficult . I am here to practice some languages and to make new friends from all ofthe thecountries ! and I made chocolat . But I do not feel sleeply compared to yesterday . I 'll tell you about yersterday ' s lunch . first , it did n't separate the non - smorking area from the smorking area . I really hate smorking [ with a passion ] . In fact , my teeth are not so good becasue I didi n't know how to brusy my teeth when I was child . It was fun for me and maybe theuy too . . . So I said if you can really crean your teeth you wo n't have bad teeth like mine . . . . I wanted one with a large vocabraries , phrases , an English - English dictionary function , and various English fanctions . I do n't need any fanctions unrelated to English . I 've never heard that the maker has produced electronic dictioanries , but it has produced good quality dictionaries and has a good reputation for it , according to the staff . There are many interesting places though , really clowded , obviously dirty , and sometimes I feel strong stressed . My cowokers all quit their job because of depressioinlow spirits . I 'm MCUH healthier than other people . Could I frighten them by trying to get aquainted on the street ? I was so excited to have a chance to study Japanese in my own city but now I 'm a bit dissappointed . At the entrance , many peaple were waiting in line to pay . but it is also very stressfull . Now I can study with concentratively . I need to enjoy living in Anstralia because I do n't have time . In thsi afternoon , I 'll leave from here , which is Osaka , to Ibakaki for work . I had to line in a long long que . I am stading English now . I want to comunicate with foreigners . However , my daughter baught it to me , it 's her love . My husdand sent flowers to my office , I felt happy . I dislike rainy days because of getting wet with rain and can not keep my tention fixed . please give me some adices . I am a haapy girl and I like to make friends from everywhere . ~ . ~ I think I have enough time to learn English & Frech . I make some frieds from all over the world . I did not prepare very well , now I am a little bit ancious about it . The most difficult part is pollitics , I do not like it because it is so boring . Evryday I have to read English and German . I wish I had more time so that I can achieve a heigh score . 3 The Businss Japanese Proficiency Test ( BJT ) An Israeli friend whom I met in India when I was traveling recommed this movie It was a releace date . It gives various services containg some online dictionaries . And those days when it hit , were as if god was ungly . . . Jaoan should positively increase heat generated electricity . Trains are abusolutely imperative in Tokyo . So some pepole were stacked in the station , just waiting for the restoration of the train . A bad start for today , hur ? In Taiwan , people are shy , and introverted , so they need singers and firtworks with them to celebrate the new year . On the other hand , in Vancouver , they celebrate without firtworks and singers ; they always go to clubs and pubs to celebrate . Today 's weather forcast was rainy . I am plannning to go there soon . They say that an another huge earthquake , which might be as big as yesterday 's or even bigger , will be comming in the next week . I think I have to read the book curefully . A freind of mine was suprised my unexpected gift . I hate Nattto ( it is Japanese food ) . I am really waitting . . . . . Congraturation ! ! Learning Deustch ( or German ) is so difficult . Can anyone help me ? Vielen Danke ! I want to paas an exam of level 4 . please give me help ~ ~ In our schedule , we hada to give a speech and take a small test . SO Iit is very lucky ! I will enjoy today . I did n't eat much of my favorites because I was afraid of getting a stomache as I did yesterday . according to the public report , eletrical tools are getting more pupular in daily life . Now most people use electrical lamp instead of candles , digital camera instead of foolproof camera and conputer printing instead of hand writing , As the years past by , though some electronics have become the most important part of our life , we can not imgaine what our life would be if there is no electrical , so people call teh new century as digital age . In the digitai age , maybe sonmeone can not realize it clearly , but without the computer , without the TV , without the phone , what would our life be ? we have gotten used to the convinent life by electrical tool , we use the conputer to search for information , because books are to heavy to find a little information , we use the TV to watch all kinds of program , because we can not travel around the world , we use the phone to get touch with friends and parents , because we are far away from them . It was a little funny because we were riding on a really srange road because my boyfriend did n't want to go on motorway because it is dangerous . But sometimes the road was very unconfortable . CONGRADATION ~ matarnity leave The icy and slppery roads were dangerous . Someone said `` a theacher has authority because the teacher can educate not only school subjects but also the ways of life . `` I still have ( a ) headache even if I took medition . But how come the Starbucks stores I go to alwyas have many customers ? I bought a Starbucks grande coffee and made coffe at home too . Acuturally it feels good . One of my firends joinned a photography club . . The actor who played Geroge Havey , Stanly Tuccci was very good . I respect her behavior . In honor of her greatness , I 'd like to share her most famous song `` True Colors `` with you ! Generaly speaking , old people have weak backs . just they are doing the best for their own porpose . I know I need to be confident and patient when larning other language . I am usually cheaful after sleeping . Anyway tomorrow is Fraiday . I 'm usually not into soccar . I was there from the Belarus Republic in my Hetalia costume . I love her so much , she is such an unnormal girl = D Various holydays are lined up . In Korea , there are 24 hour Fitness Center . I went to cram school this morning , and eight hours a day exhausts me , but I have to finish econimics and statistics courses during my summer vacation . We havt to study English very well > Who can help me ? If you can , please add me as a friend ! I have to do reading assignments for classes and prepartion for study circle today . I think that is NOT because the movie is not interesting , but rather because my expctation is too high . She is going to have the baby in Octorber . But I ca n't unbelivable that she 'll have a baby at such an early age . I do n't have any cavicity , but my teeth are poorly aligined . She did n't give the baby vitamin K to prevent hemorrhage . ( In this case , hemorrhage was easy to predict ( in the baby ) . ) Yesterday I wote in my diary that I was bitten by ants in the park . If you have an interst in me , pleaes get frinedly with me ! By the way , I look for my new job , because I will work for an interior design company asa a salesman . I went to other countries , to Italy , Turky and Indnasia . Also , one of my friends wrote on mixi , `` I want to go to Snow festival , but if I look around throughly it is too cold , so I want to go there briefly . I need to train to drink , to be stong , so I can enjoy drinking with my friends and colleagues . Maccaine is trying hard to reverse it . I have been studying Eglish for many years , but I am not good at writting English . To improve my writting English , I joined Lang - 8 today . From today , I will introduce my favarit thing in Japan . It is very impressd to me . . Today I read a articl about that how you improve your language skills . I belive that someday , I will be able to express myself fluently in English . She laughts . ' Slient is golden ' Whatever you are , it is the common sense rooted into our mind . Ironically , in my experence , being slient always guides me to failure . Sometimes slient can be equal to being non - active . I 've gone out many times recently so today I was planing to saty in my hosue all day . In this summer , I had a opportunity to speak with African - americanese , but I could not understand what he was saying . I 've been thinking recently that English ability is how well you undersanding all English . At the beginning , he seems like a stupid boy , but actually he is very intelligent - he is a genious ! The Japanese Ministry of Health and walfare advised patients to stay at home if their symptoms are mild . This morning , her tempareture went down to 37 . 3C and she seemed to feel fine . She was running around and playing . Japanese narionality # 2 Most Japanise are not religious , but thei attitudes reflect their culture or nationality . For example , in Antartida , which has incredible views of landscapes of ice , the ecosystem has been affected as a result of tourism . To get there a simple traveler emits 4 . 5 tonnes of CO2 ( carbon dioxide ) , wich is an impressive amount of pollution . Today , tourism is in a crisis as a result of the economic crisis , but we must not forget touristic activities that include the preservarion of the environment . Thereforel there are places wich include both activities : tourism and enviromental care . I always ask myself what I learned here and if I lived up to my expectance . I like studing . My hasband always says I should study English ! ! ! Anna did not really complain that she was a donner child , or that she was not the beloved one . No matter how much she suffered for rescuing her sister Kate , she just accepted it without a word , untill Kate wanted to die . The first is I want to read web pages which are in Engilsh . I want to go to the ritzzy restaurant . In that restuarant there are busboys . Also , I always nibble on food like pizza , hamburgers and spagetti . Yesterdaay , I saw a man who was good looking . I went to school to submit my English reporto . : ) A few days ago my son had a doctor 's appoitment . I thought the doctor let them in before our appoitment . I left my son in the docter 's office and waited outside . ( More natural . ) For example , HAL in `` 2001 : A Space Odyssey `` and Draemon or Tetsuwan Atom ( Astro Boy ) , show the characteristics . Uh . . . . I do n't know whether Westerners tend to think like that , but I can say that Japanese have a close affinity with Draemon and Tetsuwan Atom ( Astro Boy ) . Although , the experiments were not totally complicated and could be found in books , it gave us the chances to improve our manipulative ablilty . I was doubting myself whether I was fit to do sintific research for I always made mistakes whenever I did experiments which could be prevented and not occur to others . But lack of sleep might cause some obstacles to today 's schejule . A Jananese novel I think that it is too difficult for a forigner to read ( in Japanese ) . I wish I could help her because I am happy when a forigner can read a Japanese novel . Although there are many organizations that evaluate which city is the most livable arounf the world , one of them says that Vancouver is the most livable city in the world . The city of Vancouver got first place of the ranking for multiple consective years but I do n't think so . I have almost lived in Vancouver for 2 years but I do n't think this is the most lilable city in the world . Who the hell is thinking this city is the most lilable city ! ? I think they need to add the sentence `` For rich people `` before `` The most lilable city `` I think these topics are too difficult to be writen about by me . In today 's education - obesessed society , more and more parents encourage / push / force Bacause compulsory education negatively affects chilren To begin with , living in modern society , foreign laguage skills have become a neccarry subject , In fact , noteworthy intenational companies are looking for talented people who are good at speaking their respective laguage . It would have a nagative effect on them as a whole . The acquisition of / development of foreign laguage skills is not the only ideal way for their future . Chilren are apt to concentrate on what they are intersted in . if their aptitute are discovered , it might provoke positive result widespread . In conclusion , althoug the global arane has led to the pressure to master a foreign laguage skill , in my opinion , however , there are an infinitude of potential in children ; parents should find their ability in all aspects . As more and more people stay healthy until they are into their seventies , some people argue that the mandatory retirement age should be abokished . Ohters argue that if the elderly do not retire , there will be fewer job opportunities at the top for capable younger people . Discuss both positions and indicate which side you agree with and why . I did n't exercise for two months after grduating from my university . I allways played online game or surfed the internet . Today it 's rainning . Each life event may affect our mood temporarily , but soon we adapt the situationn and come back to normal . She said , `` It 's very cold outside . Why do n't you borrow your uncle 's ssocks ? `` I went to Kariya and ate Srimp with rice for lunch . Then , for dinner , I went to Kasadera and ate rahmen . Indidentally , are foreign entrance examinations hard ? I can no longer have rotine conversations with him . I met him on the first day of unniversity . North Korea and South Korea are divided by Imjin River My compliments for the blog , I accidentally discovered it reading an article on `` Times - online `` , it is very intresting and provocative . In my opinion tachers are so important for society , they `` create `` the citizens of the future , a good scholastic system makes good citizens , good citizens are better electors , better electors realize a better government . Thank you for your blog I 'm going to become a regular reader and excuse me TEACHER for my bad english I 've been seriously studyng it for three months . Finaly , I find how fascinating getting into the movie story ! ? ? ? ? Now , I have been learning them systemeticly for about four months . I learn English conversaion by listening to news . . Of course , it 's a very common operation but when it happening to me , it 's much more dramatical . And then , I also hate the hospital : before I see a dotor , I feel good , after that I 've seen him / her , I have problems . We were worried about him and also , we could n't feel reluxed when a man was lying in front of our houses . Sheldon is impressive and idiochromatic . As we all konw that economic crisis has a great effect on different industry . I don not care about any difficuilties , I will try my best to another job . She siad she has been very happy with classmates every day for one year . At first , we thought everything was ok and that there was nothing better than that . If a progrem has sexual or violent content , we indicate it with an 18 sign on the screen which means that only people over eightteen years old can watch it . ( Usually , Korean progrems indicated over 18 are n't even very strong . ) I do n't know if sensational programs have big effect on people and kids but I 'm curious if there are any reactions to those kind of programs . Today is Augst third , when I finished my studying for my cream I was happy beacause it has n't rained for two or three months in Taiwan . Yseterday I saw a movie called `` Obsessed . `` But the woman did n't give up , so the woman tried everying she could do to try to attratct the man . What is better answer I can say if someon ask me to help ? `` He 's Not That Into You `` is a very interesting moveis . It 's a korean soap oper I will be verry happy to see my friends . These days , I have had a violant cough that makes it impossible to sleep or talk . A doctor told me that it seems like asthma , but the problem is that the pill the doctor priscribed does n't work at all . Except for speaking , I can practice English with tools such as podcasts , smart . fm , and bloging in English . The day of the dead or alive test is coming soon on 21st of this month , so I 'm striving to get high score on the test every ninght . because I want to improve my inglish However , in the midlle of development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becomming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . Nomally $ 20 a week for each person is the regular price . I trusted him , so I said , `` Yes , it 's ok `` . I said , `` It 's ok . And T knew that the czesh man had to leave regardless . Everyone who registerd onthis site would like to practise and need peopleothersto correct their writing skills . Since I am not a native speaker ofEnglish who is familiar with writting in English , So I conclude that my learning process is enabled by others who help correct my mistike , especially better writers who make brillient helpers . Yestuerday , I went to the ONSEN near my home . Lukily , the wine , pizza , pasta and salad was tasty enough to make me happy . Pega went home by flyin on ' Kintoun ' , which is a special cloud in the sky . I have nothig else to do so I my laptop on and am checking lang - 8 site now . His owner said that he wanted a dog with a perfect pattarn . For example the black pattarn around eyes must to be symmetry . Mybe this is the reason why I sometimes lose myself in the TV shows . Nice to meet people all aver the world reading my dialy . Thanks for reading it . I 've dicided today that I will alternate between English and French in my diary . So I choose this picture which was taken at Fushimi Inari Shrine famous for the thounds of Torii in Kyoto 2010 . 12 . 31 . I 'm going to tell you about my 3days and 2nights travel in Kyoto in my next dialy in French . Wednesday is a sepecial day within the week . I wonder how foreign peopke think about the system . My computer was infected by diffieret kinds of virus . I still wore a thinny T - shirt for running . Poeple spent their time freely and easily , things looked to become more expensive . Though it was not the same , the atmosphere and festivality called me back to the Jpanese I am always suprise when someone who sutudy Japanese knows alot about Japanese culture and history On Frbruary , I 'll go to America . I learnd a lot of English from them . I have never been to Indonesia , so I do n't actually know zbout Indonesia . I caought a cold again . But I could n't say anything back to him , beacuse of my poor English ability . I dicided to improve my English to the level where I can argue back . I got the informetion for this wonderful site from another website . I hope to speak English to comunicate all over the world . `` Perrier `` in French is much better than `` SAN PELLIGRINO `` I rhink . I did not know this before , and I usualy drink Morrisons ' banana flavoured milk . ASDA 's banana flavoured milk is good and the banana tasete is stronger than milk . Five mimute English to bigin So today we 'll go there togerter . I 'm glad to drink a delicious beer , but I 'm nurvous in this situation . I hope our convasation is fine . First of all , regardress of living in the grobal world , we still can not stop wars and most countries still have weapons . Although human 's life - span is longer than ever before , we have to cambat disease which could kill human and animals . And around 22 : 50 of yesterday , he came home with a small capcel . From today 's morning , researchers are serching his capsule . The most beneficial change I can think of would be to the equipements used to connect to the internet , so that both students and teachers could connect to the wireless internet service anywhere in the university . In addition , if the university had the wireless internet conneciton service in all areas , students and teachers could access the web whenever they wanted . Such a service would help them to study with the latest information for their research / on the topics of their reserch . Therefore , I had to follow the new informaiton every day for my reserch and I had to go to the computer center to access it online . With the wireless internet connection , I could make my reserch in the library , wich was much more efficient for doing my work . If I were a university student or teacher now , I would certainly propose to introduce the wireless internet service in the school , wich would have a huge benefit for the students and teachers . I will use Lang - 8 to improve my English and write dirly . A new person is comming . However , when we are playing tennis , I would like them to consentrate on it . I have been feeling cold from Sunday moning . There are sooo many things I would like to write about ! I am starting to write this diary , becase I 'd like to go to university in America . Vietnamese generally drive motocycle . I made Vietnamses friends , who showed us famous restaurants and markets in the city . My inpression of speaking English . This is the firt time that I join in Lang - 8 . I am a international student in Singpore , although I am poor at english . . . but I want to improve my english , I am also a easy going person . . . . So give me message if u want make friend with me . and welcom everyone to revise . Thanks ~ ! ! It is not untill they blooms that I can feel spring . I am askin with myself . I need to improvei my Japanese , but I dont know what should I do . . . Can anyone show me a site or books , for dowload , to learn japanese grammar ? Onegaishimasu . I want to get started from the beggin , grammar for 10 years old japanese kid . I think I can start for : ) I 'm starting to think in different way and I 'm trying to understand the foriegners ' thinking . It is very deficlt . But BBC also mentioned if Japanese goverment stopped using all nuclear plants , electricity would not be sufficient in Japan . However , after I heard his comments via BBC , I felt that his comments woule be a second disaster . Because I had to wonder that nobody would trust such a prime minister who has no practical ideas of electricity supply insted of using nuclear plants . 5 , street smart : smart at living or expactially at social skills is an engeineer . 7 , govener : the leader of one state 9 , prinmitive : natural At first , I bocame a member of `` rarejob `` services in the Phillipines . There were many legular characters ( maybe few too many ) in the show , so I did n't see different sides of characters in the first season . I celerbated for the new year with some friends in a club . There were many memeries for me in 2008 , but there will be more chellanges and opportunities that I need to seize in my life or study . The year 2008 was a specil year for every Chinese . We all experienced the Beijing Olmpic that the whole nation celerbrated , but the tragedy of the earthquake made everyone heavy - hearted . Everybody tried thier best . I found it 's calory on the back of package . So I ca n't eat it over one pce per day . A Deligent Policeman They sell many kinds of murchandises : foods , drinks , snacks , magazines , sundries . ) I was very perplexd but I managed to explain my innocence . Anyway , I 'm fine here . I work at a healthcare related company nowdays . I took part in the Aotumotive Service Equipment Fair a few days ago . I went to Beijing 's anmen Square on the 16th . He was an elite student and I feel very sorry becuase I was a little bit jealous of him . He was an engel to bring many MP3s to give them to many tanjanian children . Because his major was architecture , he made the blueprints to build some buidings . My snowboarding trip was postponed untill next month due to my car 's problem . I was suppouse to buy an aoutmotive chain by the day of the trip but I could not . I am little bit tired and feel like I have just come back from a long jorney or something ^ ^ but I think I really did enjoyed her staying at my house ! The policy seems to be quite unique because Bhutan 's goverment says that they measure their development by national hapiness altough most countries measure their development by economic growth . I have a lot of time to correcte entries today . What happned ? ? ? I have n't writen for a long time . I live in Ulsan which is a metoropolitan city in Korea . I am pleased when I can hear thier singin . However , I was just lazy tempolaly . I thought that when I study something , learn something , get some skill and then , acumulating anything that I have got today in my body just like deposit . Everything that I do is recorded and it 's going to acmulate in my body . Of course it 's just a wonderful place for rhotography . But finally , I still believe tomorrow is another day , everthing will be better . If somebody corrected my last diary , I will make friends with sth . The stand seats are expensive and people can see only the instant the car is passing in infront of them . I 'm studing Infomation Techology . becouse I have an exam in October ! German is a little hard for me , 'cause there is a strange sound made by the tounge . I think I need to introduce maself first but , unfortunatly I couldnt get a job with tattooing but , I dont give up yet and I hope u guys also keep tring and keep working hard Today , I had the part - time job of helping a professional camaera operator at a wedding reception . He has friens who are 16 years ago , I went to America , England and Korea : - 0 But I can ` t speark English . Someday I think I could sperk in English . I could n't get out of bed immidiately . They say that they grew confident in their enterpreneural skills . I studied english in scholl 6 years ago and now I 'm trying to learn it on my own . She ca n't walk nou , but I think she 'll be able to walk soon . I like a famouse painter , Salvadole , Dali so I would like to visit and see sceanary in Spain . In America , I would like to visit the Grand Canion . My first Diary . Check pls ! ! hallo ! I had dinenr with my friend at an Italian restaurant . Firstly , there are a lot of shops , department stores , resutraunts . It seemed I had no idea what time it was when I was writing or reading the areticles . It 's a nice . hot sentence to lissen to . I think I could lissen to this everyday and to be however heated . - > ( ? ) Because intersting contents attract my focus . THE DIFERENCE BETWEEN SENIOR AND COLLEGE ' S EDUCATION IN CHINA We have a lot to concider after watching it . Of couse I care about the thing `` there is no need to be egotistical with each other . `` In addition , he said to me , `` You 're my best freind . . . as far as today , `` He always adds bad words on the end to hide his embarrassment . I was so touched when I heard his words , because I could n't see how he felt about me these days . I always wanted to hear his truely feelings whether they are good thing or not . He has been a fugitived from the police for two and a half years and was hiding in my Once I got up and got out of my bed , I heard a sound that my mom appearently made behind the door , so I decided to go back to bed again . I knew that if I went outside and tried to take a shower , I would n't be able to because it was obviously what my mom was about to do . today is internation lefthanders day , I am lefthanded , so it is my day too ! The melit of living Hiratsuka is that we can enjoy our beach all season . so we can enjoy a strech , talking , sunbathing and beach ballyball all season . That 's very useless for regonal economy . I want a nice cafe or Itarian bar in Hiratsuka Beach Park . There is a lot of plece in the park . The Denny 's near the beach is the only resturant and cafe where we can enjoy a view of the beach . I want the maiyer of Hiratsuka city to think about that . + mei - yor + I had planed to vist my city 's Strawberry Festival with some friends weeks ago . I was tuched ! and sometimes there are some chickin bones without meat on the bus . Because Kawasaki city anf Hachiohji is unbearably cold in recent days . I sent a text message the day before yesterday , but you didn n't reply . I didn n't know when you texted me . for just being in the eletion . And plus I won 4 tims in a row ! ! ! hallo ! I 'm looking forward for ur message : ) Which sentence is grammartical correct ? I have confidence that I can live anywhrere in the world . Yesterday , I was involved in canvassing for a candidate for the city councilors who our company supports . Anyway my coworker and I were visitting a home with a ton of fliers and cards already , and anyway we did not his policy or manifesto at all . I felt like a salesperson visitting to the door . Our clothings and fliers were all soaking wet . Becouse the average speed was too high for me . Oh , tomorrow , these successive holidays will fainaly be over . I found somthing changed . Every time I open a new page , a window pops up , and wants me to the set time zone where . So I set it up , but when I open a new page or update the page , it pops up again . Competion project _ 03 My daugfter stayed at Granpa 's house alone for the first time . I was surprised becaise she did n't sleep well when we separated but she did last night . I will give a birth this aplil so she is preparing to be sister . There are a lot of tourists frou various countries in Japan . I have no special plan during vacation ; I will go home to be togeher with my parents . Besides , on Oct . 15th , our college will have a celebration for its 80th anniversary . I 'm very lucky I can witniss this important event and I 'm also very honored to be a volunteer for the anniversary ! She had no intresting with computers before . I also remember the wonterful decorations on every house in Australia . Both of us had been involeved in their project before their debut , so we often talked on the phone at that time . I have n't seen them scince I left the company , but I heard some of them started to manage their own work in Tokyo after all . I 'm looking foward to meeting them as I expect that the meeting sould be inspiring . . . There was a severe typhoon last night , worse than I thoght . I saw broken unbrella everywhere . Finaly the trains resumed service but there was way too much traffic . I recomend two songs , `` Genie `` and `` Hoot `` . I was born in a littel town . Its name is Velikie Luki , and though it 's a very old town , it is n't very interesting . And while arhitecture in Velikie Luki is n't attractive , I like this town all the same because I was born and grew up there . I think that it ` s important to study hard and have hard time a lot when we ` re yong . Because I want to graduate with an average point of 4 . 0 ( Maximun points you can get is 4 . 5 ) As I wrote the day before yesterday , my university 's rugby club had a match yesteray . It was dilicious . Last week I took a fwe orders . But we shold never give up . On Saturday afternon I read a book called ' The Golden Rules ' . Next year will mean a lot to me , as I will have been studing flute for 10 years . ^ ^ I can know about the culture of different countries and konw more friends . I am studeing English with some textbooks . These sites are for Japanese who are studeing English . Sometimes Internet sites are very usefull in our lives . Do you have a favoraited page ? I felt bad , I think she should ansewr it one time and tell me that she does n't want to talk at that moment . I feel better now , and I can forgget it because I wrote my complaint here . I 'm a little surprised , because it 's the most specil way I 've ever seen ( for me at least ) to learn languages . To be honest , I 've been studying ehglish for 7 years , but I 'm still not too / very good at it . After ( I had ) ( a quick ) lunch at a Taii restaurant , I went to see the movie . The weather reminds me of the soon coming rainy season in Taiwan , and also of my alergic rhinitis . > < When the rainning season comes , normally starting in May or June , and lasting through September , it sometimes rains cats and dogs . Although the excessive rain can be catastrophic , such as a flood , the fact is that the rainy season accounts for the majority of percipitation in Taiwan . Overall speaking , I do not like too much rain or too many rainy days . I am afaid to smell a mildrew odor in my closet . On friday I went to my friend 's biethday party at shevron renaissance . After that I went to the fiddelers bar . I 've been hearling ( not linstening , I 've even been reading another book ) the audio book of Harry Potter and Sorcerer 's Stone these days . I enjoyed the rhytm of the reader 's voice . We looked like a pair of mooving snowmen . My frist English diary has not been corrected , I do not know the reason . Good mornig . I 'm very excited , because I have just gotten a micropone to use for Skype . Today is Saturday , so I wii saty up late . As I have a stiff shoulder , I wellcom this approach , as it means that we do n't have to My exhbtion will strat on November 21st . The last half , I got breathless in thire family background and the shocking ending . My close friend is a yoga teacher and her studio had to move to the other place this month becasue of the destruction of the building . I recieved an email from a woman . Usually , they are talking about his fastastic dance and song performances , everybody says `` he was the super - star `` . I mean , I am so dissapointed the way they report . Why they can say that he is a great star who they critisized cruelly the day before . He explaned how to use mineral foundation . After three hours of shimmmering , however , everything changed . We do n't have oppotunities to express ourselves in English . And I will save money for studing abroad . They were very succesful cookies . I chose the consevative treatment and Exchanging favolite things Before today 's lesson began , he told me some of his favolite artists such as Muse , Snow Patrol and David Vowie and he asked me to introduse some Japanese animation series that I would recommend . Althought I have been studying English for five years , It 's my first time going to America , and I 'm really a begginer at speaking English . I 've a very important test in english soon and I also want to definitly speak english ! ! ! I thought it means , `` make a moeny or deposit money `` Some Japanese companies are empoying Japanes bilinguals , but they sometimesgive rise to big trouble among their Japanese co - wokers , because of their behavior and skills . Taday I have an examination in class writing The teather told us write to three paragraghs applying the organizational patterns by developing time and space order , process discription and examplification and difination . I would like to write about Ead . All Muslims celebrat in Ead because Ramadan is finished . It is just for Muslims . Ead is just 3 days and Muslims can not fast in this 3 days because it is not allowed in Islam . Another western superstion is the numbers of cries of a cuckcoo bird being heard is reportedly said to be equal to the number of years of it being alive . As you know , we had to perpare for the national scholastic achievement examination for university entrance . First pitcture . - I was curious to see if that could really happend . Today , I went to Yamananashi to visit my relative 's grave with my mother . Engkish , I always make mistake a subject and a tense . Today , I investigeted Adobe BlazeDS in the office . It 's been a long time since I 've written diry here again . Oh , I really hate this coures . It 's maybe the sukest coures I have ever done . It 's about useless and complex theories . So , I have to deal with day by day , which you can imagine how terrible this feeling can be , uhm ? when you try to study something that you compelely have no interest in , it 's worth nothing . OK , I just want to pass the exam , so I do n't have to study this coure in the next term agin ! But thank god ! I hope I will pass it , and I hope my classmates will pass it too . What nice news , is n't it ? However , there is some bad news . Unluckily , one of my roomates did not pass the exam , so the only thing I can do now is to hope that he will be fine in the next term . I will have almost 5 / five exams to take , including history , philosophy , the theory of spreading , modern Chinese literture and ancient Chinese literture . Oh , Satan is going to kill me . The only thing to do is to deal with it and be confident that I can achive this and find a good job in the future . This book is comprised of only English qustion ! ! ( or ' My one word can exerte a favorable influence upon the students . ' what is better ? ? This is better My hobby is to watch movies . Recently I watched `` Avter `` . Tthis movie is very good . I went to an Itarian restaurant to drink Beaujolais nouveau on November 18th . Maybe that 's why I could n't spell in Japanese untill I had watched so much anime . . . ( I 'm joking ) . A fresh , ancle - deep layer of snow has fallen over the night and I can look forward to a good hour of shoveling before I can even dream of getting the car out and going to work . Some of them fight against others who have different religons because of their firm beliefes . I think since Australia has huge amout of natural resources , Australians can lead a good life . Miners have to work with danger and may be darty but they are supporting Australia , so I respect them . The following emil is the the most difficult one I 've ever written . When I get somethimg at the mall , There is a beatiful park center of residential state erea in my city . I like to critisize restaurants about their food , services and atmosphere with my friends . I am very interested in it , so I love HANAMI which is an event where people eat and drink under the cherry blossam . Hi everone ! I had a meeting from three o ' clock until six o ' clok . But here in Japan , all TV companies hestate to do so . I am striving to get a good score , reading english novels , watching American sitcom for listening practice , lernning by heart the important words and sentences . You just complain to yourself or to someone else , to smoothe your own feelings . It was a good chance to exchange opinions and information about the evaluation of quolity in health care services . I watched the TV coverage of the golf competetion `` Masters `` that is held in Augusta over 4 days , from yesterday until 3 days from today . I turned on the on - boad wireless adaptor . I really like learing English , but sometimes I still want to think in Japanese in my daily life . Sometimes I 'm tired ; so that is why I have n't posted a journal for a week . There would n't be a lof of things I can do for them unless I am a doctor . Luckly , I have a tutor . The first picture is my parter and me , The one on the left is me . but It includes poision . Saint Lolita progect started a progect named `` Saint Lolita `` I 'm really excitedd ! I was able to see a lot of music airtists and I enjoyed their live music . It was so palacable that I did not notice when I became really full . Eating slowly makes the feeling of hunger dissappear ealier than normal . I did not abide by the rule , I just pigged out , and now I feel stuffed and somewhat drowzy . In less than 2 hours I am going to MacDonalds to meet friends . Since I ate so much I dicide not to eat there . I feel like I had such a heavey burden to speak in english . And I sense that feeling , when listenig to a favorite song . Today my vocabulary test was retarned to me . I do not konw how to study : . ( However , no matter what economic situation in the world , peopel still get sick from time to time . In a word , nursing is really a practical and helpful subject although it takes a lot of hard work and time to become a professionl health care provider . The hard work would pay off one day . The story was about a man and a weman controlled by a FBI computer . Recently I was busy , so I coud n't write my diary in English . I had to change my money by purchesing something at a convinience store . He recomended this website for learnig English . So , I entryed it tonight . I 'm looling forward to enjoying this website . Marshmellow ( which correction thing ) If you take a bite of a marshmellow , you know that you 'll put on weight and get ulcers in your mouth . I went to a gynecology today . and I had kept the last 2 kits until yesterday for my less liraxing times . The pointer is powerfull , and gives another world to the developer to create in the abstract process . It 's because I want to improve my pronouceation . However , I do n't know if my poronounciation is OK , or not . If I were asked to tell the most exciting story ever happened to me - I would definatelly tell this one . The officer ordered me to fillow him to the safe area of the motorway . After the train had gone , I called out to the shoked officer that I was OK , and continiued to run along the train tracks to the Commonwealth Avenue where I had my interview arranged with employer . If I tell this to my friends or co - workers , some heatless person might hurt me . Then , we saw illminetion . I went to a photo studil , because I needed some identification photographs . It had good pirce and quality . It seems like a good way for women to get rid of stess . My class start at 8 : 50 from Mandey to Friday . Recently I want to go snowbord . Sometimes I need to anounce my daily plan , in order to remind myself to finishe it on time . I hope I can return your help in the furture . Today I read that Japanese law mentioned that a Newclear operator has to keep general public 's radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that general public 's radiation exposure has to be keepen below 1mSv / year . I think it is too high , especially for cildren because they are more sensitive than adults to radiation exposure . So I hope that the Japanese govenment will decide to lower the level under 1mSv at once . Some researchers , on the other hand , have come to realize etreme strictness does n't work well . Probably because he knew that I 'm not good at speking English and it seemed that he did n't want to talk with me . When I read and listen to English , there are often the times where I do n't understand the whole meaning of the sentens even if I know all the words . Probably it 's because English word order and grammer are different from Japanese . It 's because the words are too difficult or the pronouciation was not clear or too fast as is often seen in comedy . I have n't written a diary recentry recently . . . . insteed last night I had fight with my parents . however , this morning my mom called me . but I had to cut off the phone . . . and then I began to cry . . . . I could n't countrol it . . . . I know how weak I am . . . . I think it mihght have been down if my friend had not been there we talked an houer . . . I think we enjoyed the time together . . . When she was a baby , she had a serious febrile diease . I get up at harf past five , and I go to the square . DPJ won a histric victory . This is not tradional day but it is like a type of event . I have heard that & nbsp ; ninety percent of the company 's tatal revenue comes from this day . Can you tell me the differance between `` can `` and `` be able to `` ? What is the differance of their meaning ? My goal is running10 kilometers in one hour . The Japaneese language entirely depends on context and situation , and it is less clealy than Europian languages . However , Japanese people should not change their language into something like a Europian language , which states everything clearly , because it is part of the Japanese culture . Instead , Japanese people should try to make foregin people understand the Japanese language . At the same time , they should make oppotunities for foregin people to learn Japanese , and encourage its use . But one day , the National Tax Agency came to his two aprtments , his offices , and the establishments which he owns , at once . The next day as well . Finally , it was almost the nex month 's payday and I still could n't get my salary . Then he said , `` Are you saying ' When proverty comes through the door , love flies out at the window . ' , right ? While he was soring loudly , I thought about what he said . I am at a unviersity in Kyoto , Japan . I am afraid of him , so I told him `` I met an aexpectant mother , and she fell over an overpass , so I helped her . Therefore I brough her to a hospital , so I was late for class `` . because the teacher explaned it clearly . It makes my body strech , and my mind release . You will be soothed if you walk on the grabel path to the sacred places , while breathing in the fresh air generated by the woods . My husband , mathe - in - law , son , doughter , and me . I woke up at 8 ( ? ) as ususl . The winter is the clodst season of the year . It starts on desmber 21st and ends on March 20th in countries north of the equator . when I received my firend 's e - mail , I was thriied ! ! I thought I had a high tolerance for alchol , but I found that I do n't . It is thought that the earthquake has provoked a lot of faulta dislocation , so we could be hit by massive earthquakes more and more . My Chinese English techer told me `` To think is similar to consider . `` There are two types of people , who do not eat meat ; vegans ( they do not eat any food , which includes all food from animals / eggs and ther are vegetarians , they do not eat meat . After they grow up , my gnadfather kill 's them for their meat . By the way , this time interval is an interval of samlping that we called `` reaction tracing `` . We met each other in the back of a pachinko parler at 5 : 20 pm . Do n't focus on thier bad points , so that you can have many good friends . I 'm a Japanese girl that is learning English at the Kansai Gaidai univercity . I understand you should use pretent tense in a adverb clause even when you refer to the future . A new resolution is here : improve my English and start learning Japonese ( but , first I need a book , so it 's not for the moment . . ) . I 've been with them for 4 years . They are 13 - 14 years old , and now we are facing our toughest challence so far . I 'm impressed how it effectst the movie . It may sound just simple at first but acutually I think it really is complex , well - organized and expresses exactly what must have been explained . A black car started to move when the traffic light chaned to green . The driver oponed the window , and began to throw empty cans which did n't hit me . My home town was just across from the shore , so I was very familier with the town . When we crossed the brigdge , there was a big intersection , the traffic light was green . If I had been cought , I would have been killed or beaten up by them . So at the moment , my diriving technic was slightly better than Nicolas Terol 's ( Moto GP driver ) . It was a very dengarous car chase . And then , the stupid gangstars came , but I already was inside the site . I guess Chinese people put more importance on food than any other nation . Confucious said that `` eating is a great happiness . `` Maybe this is because of the long history and trandition of China . Chinese cuisine is amazing ! Firstly , Chinese food is healthy . Look at the people here . Most people are really slim : ) cus there are more vegetables than meat in Chinese dishes . Secondly , Chinese food is very tasty . We have four rules on good food : `` colour , flavour , apperance , and taste . `` Chinese food has the most varity . It 's very easy to satisfy ur taste buds , and you will be addicted to its amazing taste even though you may have no idea of what exactly you are eating . The seasoning of the materials in Chinese food is super important . Only the right materials can make delicous Chinese dishes . I like cooked food . It 's safer and healthier and also nutritious . I think the reason why he knows many dirty japanese words is his japanese frined . He influences a lot of freign students . So we went Shinagawa satation first . Next , we called the aquariaum and asked where it is . [ Diary ] Macaron I did n't know that the macarons are very colorful and cute . I was so gald to talk to them . I need strenth . This mornning I fought with my younger brother . When mom asked him to turn down the computer game sound , he got very angry and yieled at her . After that , he threw his mini computer because of his anger ( We are not rich enogh to throw mini computer . He thought I coul n't / would n't really throw away his computer because it was too expensive to throw away . But I did n't care about such a stupid threathen . If I had strenth , I did n't have to shuddle like before . I want strenth , I need strenth . Especially my doughter is really looking forward to seeing thehouse of wax the house of wax , it says there are some wax dolls which portray the ' ' The Last Supper `` by leonard da Vinci . We will have military training for two weeks , how can I get throuth those days ? I plan to set my telephon to wake me up tomorrow . At work today I was confused a lot and I had a headach , I could not think a lot ( either ) , maybe because I slept late . Today 's manu was tsuna sandwitch and milk tea . I 'm looking foward to going to the cafe every Tuesday . Nevertheless , as you can see , my English abilitycould still use one word to discribe itself . Tonight , I take my first step to restart studying English on this Lnag - 8 ! ! Two or three years ago , I tried to learn English since I needed it in my job to communicate with my collegue abroad . Tonight , I found this Lnag - 8 site , and I decided to restart my challenge : learning English ! Cywin Installer Disaster Do you ever have the same feling ? Would you like to tell me ? Not because of lonelliness , but so I get the oppotunity to do anything . I hope my dream will come ture soon . east - southnest of Taiwan . Have a nise day ! ! ! Yesterday , she was inculated for the first time . Americans , Vietnamese , Philippino , Japanese and Canadain etc . . . It 's still difficult for me to hear the speaking at ordinarly speed Beacause of personal problems , I disappeared from this family for a long time . for example , I applied to join ' Skye ' , but it acqiures that we must do face to face communication . Before this journey , we had never visit any foreign counties other than Guam and the Philipin . So it is difficuly concentrate . Right now it 's fine , but in the summer , it seems that electric power companies will be not able to suppky enough electricity . I always set my laptop in front of me , and adjust the moniter so I can watch more easily . When I watched one of TV proglam , I needed to click to move to go to the next movie . When you come to Japan and have the chance to watch a TV , you will see them absolutly . Today is Friday . I do my work as uaual , but it 's so boring and then I chat in QQ . I can not understand why the washlet is not very popular in America when Americans care very much about cleaness . In fact , I heard that celebrities who visit Japan often purchase a washlet after their convenient and confortable experience at restrooms in hotels . I have rarely seen people carring handcherchiefs since I came to LA . `` Japanese gamer marries Nintendo DS chracter . `` It appeard in a British newspaper . Gving up some habits to prepare for the exam is acceptable for short time . I bought some presents and gava it to my parents . They pushed the `` send ! `` bottun at the same time , as soon as the train gets out of the tunnel . I heard that there is n't a loker room when I went for my interview . He became an Asian cluture club leaber this term . My god - brother is very sweet and tendr , which is why he can get along with girls so well . This year is his last year in senior highhood . They wanted to play different roles , such as maids , servants , and butlers in a club permotion event . Sonds awesome as my godbrother is too shy . I find it intresting to write a jornal in English here . I will refresh my jornal as often as I can . I just want to enjoy the beautiful seneray there . last ninght , I tried again to install my computer system . I am a computer idiot , however , actually I was sucsseful , I installed the operating system ! so I flet very angry , because the question delayed my study ! today , I took the PET four Exam , it was terrble , from a total of one hundred I answered ten questions correctly , I have fiveteen percent ! oh , my lady gaga ! I estimate if I want a pass on the Sepetmber exmaintion it 'll be very difficult ! ! Though it depends on the day what kind of dishes you can find , I found Japnese , Indian , Korean , Chinese , Mexican , French , Germany and Turkish stands among many others . That ` s why people get to enjoy a glass of German beer with Turkish kebap . And it was located in Yurakucho , the center of the down town of Tokyo , where hundreds of busenessmen enjoyed their own private time after work . It was made at a small stand of a staton wagon , so it wasn ` t a full - dressed one . I want to know the result early and study for pre - 1 grade . Today it 's Monday , so I went to my school , and it was so boring becaue my teachears are n't flexible . I feel very unconfertable today . From last week , about ten people from Los Angels have been staying at her chuch . I guess that the temperature is 27 celsious , maybe . I lern english in school , but did not have practice . Now , I have found this intrasted site . In Takachiho area , we found a fantastic place where I asure you that we can live a happy life ! I wish I could have a partner who speaks Japanese or Englisg , so that we can help each other to learn a foreign language . If you show your phote people may think of you as a hot person even if it is not your true face , yet there are a lot of comments and corrections for your sentenses again and again from many people . but I had a speciall day on 12 / 26 . Then , I was very nurbus . Thanks to her help , Tifanny and me became friends . The floor of my room is coverd with paulownia which is often used for chests because of its absurbability of moisture . because I have never seen it mede in Europe or the US . On rainy days like today when I come to this room and touch the floor with my foot , it is so damp because of its absurbability . We say compliments , pretend to be good , behave like a human hidding a wild heart . Perhaps many people unconcious lie about tiny things . And yes , I 'll join you of couese . In this situation , I definately know their party is never held . That means going shopping to supermarkrts and groceries instead of my mother . I can check prices and know waht economy is going on , also I can meet my neighbors . But , my English communication skill was very poor that day , so I ccould n't go to stadiums and so on . Because of that experience , I was determined to learn Engish . Hi my friends . I woud like to speak English well so I need your help ! I am a good friend . . . you will know if you talk with me . I hope to find good friends ! : ) I 'm going to decribe two photos . She is the founder of `` CHANEL `` , the famouse fasion brand . Every step in the campus is an exploration and an advanture . I just remeber a few things about last night . : D The doctor told me that the cause of the symtoms was my warped pelvis . At first I planned to travell with my friends , but at the last minute I copped out . Of Ofcouse except for my girlfriend . I wonder if ther are fine . Fisrt , you might have heard of Taiwan 's traditional foods like Bubble tea and Stinky tofu . You can find them at local nightmarket markets everywhere you go . If you know how to read eary , please teach me ! But I really feel that if I want to improve my English , I [ will ] have to have the courage to speak with Enhlish teachers . Learning a foreign langage is not a easy job . You need to get enough information input in your brain , then it is possible for you to output the language correctly and influently . Happy Birtyday ! Two days ago in our country , a new actress committed suitcided . She acted as a minor charicter in a drama which is now broadcasting on tv and gets lots of attention from the public . Why did she commit suitcide even though she 's young and beautiful or even though she 's gathered so much attention through this drama . The acticles said that she had been depressed , so that might be the reason for her death . Nowadays in our country some celebrities commited suitcided suddenly and people , including me , have been surprised and shocked about it . I like anime , so I am watching 19 animations in this seaseson . This number is a lot heh heh hehehe . Especialy if you are interested in classical music , you can enjoy it even more . We must send our worksheets whith exercises to the manager of this course . Now I 'm excited in visiting a foreing country . The orange lights of the buldings are clear and beautiful , are n't they ? I went to see a movie with my freinds . It was very intereting for me . She Floating from Short Proglam of eleventh . * She was slump in the jump from Junuary of Four great land championship . * The near future of the Olynpics of February , * she found a letter while she arranged fan mail after practice . Lyman Brothers has just gone bunkrupted , one month or two months ago and AIG insurrance conpany is in financial difficulty , and the unitead States GM has fired lots emproyees My calasse start at 8am and finish at 4pm . Finally , I became a sophormore ! I do n't want to prepare for recuruitment . But sometimes I lose time for speaking Englsih by manking a lot of Japanese friends . Anyway , I want to try to use new vocaburaries and practice for my writing skills . If you know any good places , plese recommend them . I 'm studing English now . At the party , we drank a little bit and ate humbergers . Yes , I have some teaching experiences which I am still writing about in my jornal . Acutually , teaching English conversation is a small part of my work . I waoke up at 6 : 30a . m . Becaus I went to bed late last night . Most Korean students are studing hard . So , In most people 's eyes my military life was nothing more like working on a raunch , but it was a good time making another treasure in my heart . However , it is difficlut for me to develop my English skills . Of coursem , I am willing to correct your writing . Sometime I dream the similar event , I always dream that I am going down the sea and dieing , so I am afrid to swim , if my frind ask me to swim , I always refuse them Two falavours are in it . One was `` kinako `` ( soybean flour ) and the other was `` Macccha `` ( green tea ) . Thanx ! xxx And this is a Japanease Anime . If you read all of my entries , you probably know that I started speaking Enlgish ever since I came to Australia . This summer I 'm going to join two tornament . nice to meeteveryone . I am a new here , today our director told us `` leading and develop people `` I do n't know how to expression my pionon . in the afternoon , our 7people went to drink , and bought two steamed bread , today I felt very happy . There wewe many people and it was very hot on that day . the food there was n't ezpensive , so u can have a lot of choices . I was amazed becouse the snow had thawed . If you have a courege , you can try it . They are eiementary schoolchildren . I will buy something to parper for cooking . Am I A Gorrila ? At least it is relexing , right ? No doubt , It is suitible for most youngsters and even adults . At least it is a childhood memory in people 's mind . Of course , it is not ture . Some people called Studio Ghibli to ask about this myth , Studio Ghibli responed jokingly , said ' Yeah , is ture ^ o ^ ' . Finally the myth seemed to bustered by the declaration of Hayao Miyazaki . We 're supposed to perform ocarina at Qingdao ( Chaina ) at the end of October . You are far far away from me and you are halping me to learn English . Life was more dificoult . It 's imposible now , is n't it . I have been playing a DS game called `` Mario and Luisi RPG2 `` since last Sundy . If I can use this concentraiton for my work and study , I would be a big wheel . . . Yesteday I went shoping with my frends . And we pray to reach for the help from all of the world such as Libya or Afughanistan . I ` m studing English and know it at an intermediate level . But I got well quickly because Hawaii 's temperture is very comfortable for me . The problem with two kinds of medicne What 's more , she felt her doctor was not coniderate , so I gave her advice to go to another doctor to get a second opinion . Acutually , I do n't understand all the rules of american football . However , I wanted to see how crazy american people get during the super bowl , so I dicided to go to a sports bar to watch the game and the crazy american psople . I really had goot time , and I will try to watch american food ball this whole season . I woke up in 6 o ' clock in the morning , then I got dressed and I had to hurry , because my friend and I were going to the sea , but he was late lateand I was waiting for him a few minutes . I borrowed a thick book yesterday which is called SonwBording . I have never tried to do sonwbording . I wanna konw the real voice . It might have been two or three months bfore . I 'm looking forwrd to picking it up . ( ^ ^ ) I 'm going to go to an Italian resutant for dinner with my friend . I saw it in the theator yeasterday . This week I have a big exsam . I have not dicided what should I do yet . . I 'm so crumsy that it still takes me at least 10 minutes to open a can . I am a memder of the soccer club . But ther is some fun in my school life . such as , the Fusionopolis , the Biopolis , A * STAR and some reseach laboratories of private companies , if we could have the chance . The vet said he was n't sure what the ploblem is . Plus , if we find out she needs an aperation , it 'll cost 200000 or 300000 yen . But I am wonderin where the border is between people and pets . I think learningabout the other country 's languate where I want to travel is good manners . because I have to roll my toung . I 'm Korean so I 'm interested in neighberhood countries I just want to speack many languages for conversation with foreigners . I think the story is like most Ansian people . Work is thier life . On Saturday night I 'll have a dinner party wiih a piano . I 'm looking foward to the day , and I try to practice playing the piano hard . I am a system engnieer in system integration part of my company . Today is a rainny day I come from Taiwan , nice to meet you . Today it is rainny in It is a very tough sport , but it is very good exersize for me . So , I went to STD , and after that I went to Whittard - a tea shop , then I bought a tea pot and creamer as a suvenior : D becase it was on sale ! The youngers in China Therefore , they become ignorant to the feelings of others , but it does n't imply that youngers are no longer sympathetic or helpful . As for me , being one of the youngers , I tend to hold the opinion that the youth are the same as the former generation . People , especially among youngers , tend to do something by himself , rather than with a group . Furthmore , youngers are not unsympathetic because , on the contrary , we are full of sympathy . We remembered the dead people , symthized with the homeless children , and honorned the army . I oftern ca n't help crying because of all your great support for Japan . I would like to tell you what happend around me . I may find something intersting to write dowm . I am writing to expess my dissatisfaction with the service that I received at your establishment . I suggest you employ someone who is more skilled and has a better oarsonality so that your customers time is not wasted . the reasonis toparticipate in a conference ! I liked my country , but then I liked anoter country . One of my friends asked me before that you do n't like Japan , because most of Japanese go outside becasue they do n't like Japan . It is because of my countr 's system I feel . And I know that I am courious about all things it dones n't matter about my country or others . I was happy becasue we talk about each other . And I touched humster . Sooner or later a massive earthquake will occure in Tokai quite near the plant . I really experienced numoerous things therein those two weeks , four months . Unfortunatelly this kind of incidents happen every summer . Third , their weges are cheap . To end these problems , arent should stay with their children until they are old enough to understand the risks in the swimming pool . How are you these days , my friedns ? happinese . please open your window of heart , let your heart nhave a bath in I have lived in MACHIDA , which is in southest of TOKYO for 21 years ! ! Then , I 'll meet lots of people who have various nationarities and tell about good points of Japan culture . Also , the proffessional school students with whom we communicated could speak to me in English and sing Japanese popular songs together . I felt humiated , because I could not entirely speak or listen to English , although I had studied it for over 5 years . I feel confortable . Long , long ago , there was an impatient , errogent man . Suddenly , he finds out he is walking on a beatiful path surrounded and this moring I got up at 6 a . m . On Friday nignt it snowed a lot when an old friend of mine came to visit . Then we stolled along the road feeling the touch of snowflakes on our face . We went into a small reataurant to have a drink . I could n't use all of the functions of lang - 8 before by iPad , but apparently , I can use all of the functions of it byt iPad now . I will go to church and I want to meet new frinds . I hope I can get a good socre this time ! ! ! ! ! I am currently studying very hard to pass the ' ' TOEFL ' ' that is requred for International Students for entrance into Universities in the US and Canada . His speach was very interesting . Irreal houses , rivers , bridges . . . This is my first gernal on lang - 8 ! Woud you mind telling me , how to get the discount price written in the invitation letter . Let me intoroduce myself . When I was there , there were no airplane it was full of spectators . Expecially for last time I got car sick , we were just staying on the phone laughing after I was trying to catch a breath of fresh air . `` I will always be by your side , to help you out in soul troble . . . `` Hi I 'm hiro and this is my second dialy . These emergency drills were originally held on the 15th of evety month but now they only take place two days out of the year . When the clock hits 2 at the afternoon , scirens will go off , signaling the start of the drill . In addition , there are no shops , restaurants , or public transportations in this neighborhood . He had short hair and wore a white t - shirt and jjeans . I think I have two chaptors to go and it might take 20 more hours to finish the story . Overall : It seems like the Amazon River , which flows slowly , calmly and constantly rather than like Naiagara Falls , which flows dynamically , wildly and powerfully . This evenning , when I load on the news web 163 . He is only 48 years old and he is very excellent , Almost every chinese man knows him through his news report programm . endeed , I am in school preparaing for entrance to Grandes Ecoles , in order to be aveterinarian . I suated them with komatsuna ( a leafy green vegetable ) in the fry pan . This month by now I have wrote 48 jounals . Yesterday I learned roots of words in Enghish . nowdays , almost all science and technology is written in English , Of course , China is stronger every day ; many foreign people come to China to travlling and study . I think that we can change ourselfe if we step forward with courage . `` Piacere di conoscer - la / ti `` to wich you can reply : `` congratulazioni `` to someone who has just succeded in something A nice guy , Wanda , adventures through wanderland . There are no peaple or animals in this world . If it 's atack hits Wanda , it does a big amount of damage . but nothing happend . I 'm learning to play in a musical for this lesson , and we ( the troupe members ) have a board meeting mext summer . Expressions that subsitute nouns Can Japan national team wint game ? Sometimes , if you are lucky , you come uopn a snake ! school students sinse they use textbooks that I 've used in their school . I am going write about a person who is not only respected , but also sccesfful . However , this Succesful person had already decided what they want to do at the company or by themselves when they were student . I think if we can use the Internet appropriatly , we could gain a lot from it . If I have a time , I feel specialty food in Fukuoka . By keeping a routine , I can get up early in the mornig ! ! I think it is so diffcult for me to do it . Would you mind helping me studing English ? Then I will move to Snt . We are thinking of going on a picnik . I think it well be very fun , because we are a bit crazy : ) ) ) For example , not so long ago we organizated a flashmob . People were looking at us very strangly . Why did n't you put on underware ? Yesterday , I used MSN messanger for the first time ! I lile hill climbs and long rides . Recently , I discovered the english music groupe called Mcfly by chance on Youtube . Cut the sweet patatoes then boil it . I am hppy for that , but I do n't know why Japnese learn Arabic ? My teacher pointed out lots of gramatical mistakes like articles , plural forms , verb forms and so on . Because , one of my firend said , Then , the night I got the binoclulars , then , over two large cups of coffee ( I 'm a self - confessed caffein addict ) , Then , I found darl rings under my right eye . As soon as they got power , they changed the amount of moeny , and they even considered an income limitation . My momther recomended that I should have bought a cheaper one but I wanted to buy an umbrella with cute characters on it . I was a little nervous at the thoght that the professor would notice I was n't a regular student . So , the test wii be too difficult for me . I sent back a congraturation - mail to him . Finally , he gets better and better and is successfully able to finish the speech at the begining of world war 2 . It 's very dilicious in there . Yesterday , I watched a Korean TV dacumentary which was about Africa . After watching the dacumentary , I realized how comfortably I was living and studying . In this sence , Japan is in a possition where it can advantageously and financially provide other impoverished countries with development aids . Or rather it can spread its interesting and unique cultur around the world , which hopefully renders Japan able to cherish its country 's asset more than before , as it has a lot of vounted cultural and traditional values . So I modified my thesis to include some chenges and submitted it again . How great was that carving teqnique ! I reallg wanna study English ! ! ! not to meet a guy who wnats a girl . I like English and histrical things . But my patrnts do n't want me to do that . Today , I was reading a flyer on this program . I was so suprised ! I 'm looking forward very much to seeing my firends and my family : ) I DOESN ' T REALIZE SOMETHING IS MISSING DURING THIS KEY MOMENT . MY HORRIBLE HAUHTY BEAT ME ! ! ! ! I went to my part time job teaching mathematics to a junior high scool student this morning . After sleeping , I studied English vocabrary . First I learned the new words ' meaning , then their pronunciation . Althought I was a badminton player from the elementary school until high school , I have not been playing it for a long time . The lake 's surface was peacefull the other day , but yesterday it was choppy . We held a sympsium to discuss students who could not attend school due to personal problems such as mantal health , being bullied at school and so on . They are worring about their children 's problems . I was worring earlier because I had n't been on it for a long time . I think that he is very lonly on this trip . If I go there , I 'll walk quuckly on Wall Street like a man pretending to be very busy hoiding a cell phone in one hand and a cup of coffee in the otherer hand . The third reason is , there are many famouse places there , like the Statue of Liberty , Times Square , and Central Park . Hi evryone ! ! ! ! We watched a movie that has been very popular with the Japanese latery . It depends on the sean . Though I ca n't help worring about places that have been affected by earthquake , I 'm going to go out more frequently . The Chinese often open the ghost door in Junly . She never talks a lot , but her words are meanful . You never expect to hear any nonsence from her . I was reflesh . I told her , `` Bite your tougue . `` The following is witten : [ `` we do n't use gasoline , perfectl tixi ! Better isolaton . The first programm that I 've written is `` Hello , world ! `` . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sence . Becouse , the big earthquake and tsunami hit Japan in March . . Tatto boom I often see many people who have tatoos on thier bodies in the US . Apparently , getting tatto used to be a military and army thing . Tatto are not so popular in Japan . In my oppinion , If we get a tatto , it can not be easily erased and when we getold , the tatto also gets out of shape . Tatto influence our impressions of the people who have tatto . To be hornest , I do notknow any positive aspects of getting a tatto . I would like to ask somebody who has a tatto what they feel when they get a tatto . Also , in our life , we can make more and more firends through the internet . So thanks to internet and thanks to lang - 8 for helping me make progress everyday ! I mean , I can understand almost everything , but speeking correctly is sometimes very hard for me . I need to be put on a diet immidiately . Nowadays I do n't have a boyfrined . Unfortunatly , when I was 10 I moved to another citt and I ca n't find foreigners here . Last Sanday it was my grandfather 's birthday . They 're very dericious ! ! so we may become friends and we can talk about each other 's country nd maybe in the future we can meet up at one 's country . now I am sataying in Pohang in Korea . But I am actually frome Seoul , the capital city of Korea . here , what I am doning is study in graduate school in EE ( electrial engineering ) which sounds boring and difficult to others . I got ta go , so hope you can correct my Eglish writing and I will be your friend . ( Although I have never been to South Frannce . I held a farell party for my colleague who has worked for 7 years since I started to work here . The story was very intersting . I thought to myself , why has this person come here to study Englsh . She is older than me and the only woman . Today I have a big exam , I ` m very afriad , because I don ` t know everything , how will I do ? I 'm sure that many of you are used to western habits because of work rhytms : wake up early and RUN to work after a coffee , but what is a typical breakfast in Asia , for example ? This wendnesday I satarted school again , in a new class . . . I saw some friends I didnt saw during the vacationt and it was nice to see them again . . . yesterday after school I went with my friend to buy some fabrics becouse she wanted to make some craft with it , the trip on the bus was so long , the other day she was trying to pass the driving exam , but some old lady that was angry didnt let her pass . . . Media Communication is learning about the differences between old media ( nespaper , magazine etc . ) and new media ( such as the Internet ) . When I finish the all of my courses in university , I want to be a jounalist . Tomorrow I ` m going to a consert with my friends . And then we were suspicious of the pizza because we usually mke noise . I recommand `` My brain says stop but my heart says go `` by FM static . Thailand is a country where Englsih is an official language . This lets them learn two languages together even they did n't know it helps their pronuciation . People who have good language skill tell me that we have to start with listening then speaking , reading and writting , a similar pattern to how we learn our native language . I found an interesting article in a magajine . I 've never trid this product before but when I was young and stayed at my hometown , my mom often cooked curry for breakfast . One example of the problems which left - handers people may experience is the difficulties related to handwriting . It is undeniable that there definitely exist lots of great inventions thoughout human history like the light bulb , the steamer , the telephone , etc . Similarly , they use these knowlege to make contributions to their society . Only in this way could we create a harmonious enviornment on the Internet around the world . We have many lecturrs , and some of them . do not speak English very well . After thirty minutes , I bacame aware of how difficult it was to understand . . . Because it was very embrassing , I decided to study computers . Sometimes , he wants me to help my neighbors too . ( Although I do not like doing that all the time ) . When I have free time , I can look for useful sofewares and study them . Does That Make Sence ? I have a feeling when I hear someone say `` does that make sence `` that the peron is getting impatient or just being rude . I immedeately took him to the hospital . Anyway he seemed fine befor going to bed . I 'm watching one of the american tv series `` Big Bang Theores `` . Maybe Words Free is not its proper name , but you can find it by typing `` Words free `` in a serch engine . I think Scrabble is a good plactice to implove my vocabulary . Are thery any differences between them ? Which is right or which is commen used ? The first person said that they will check whether they can correct it or not and hold on the line for secand . My wife 's zousui contains sliced Japanease rudish which are supposed to be good for you when feeling sick . My favorite peron is my friend . Somethimes , we go to su - won . I like my friend ver much . It 's not the main religion of ur country , right ? But after I have learnt about it , I think we should embrace it , and live up to the standards of Jehova and what his son Jesus taught us in The Sermon On The Mout . We meet people from different countries there , and mingle toghether and exchange our culture . Wonderful ! So I wanna ask t if I am allowed to join ur congregation in the disscussion next time ? So thank you so much for tonight , I am really appreciative of ur cooperation . I ` m studing in music school playing the piano and syntheziter . Every summer I go to Ukraina to see / visit my grandmother . Our company mainly deals with producing and markerting mobile phone cases . Tough readin and writing . Nowadays I practice pronuciation , but it is difficult and very different from Korean . `` Let it be `` was released later than this album but Abbey road was thier last album , because they recorded them later . In the last years for `` Vote for your favorite album `` , it was lanked No . 1 in Japan . I watch it because it is usefull to me because of the English substitles and it is free to watch . It seems like I will watch it all of the episod . My favorite movei is Burlesque . Christine Aguilera makes an appearence in the movie . They live far from the academi . Hellow everyone . But I also want to make a lot of money , because my family doesn n't have lots of money to send me to school . Today , I have some puestion about quotations from movies . I read in a magazine that American newspapers often use quatation . It was the first stone building in the sity : when King Peter I planned to build the sity , he started with the fortress . There was an exhibition of the sand sculpture on the beach near the fortress ( in the second foto ) . In the first foto you can see the famous spire of the Peter and Paul Cathedral seen from the pier . According to the story , during World War II when the sity was blocked ( blockaded , sieged ) , a whole echelon of cats was brought into the sity for extermination of rats . I bought rosseta Stone ( English levels 1 - 5 ) . I can practice how to pronounciate English words and understand words ' meanings without using Japanese . Today , I wore a black Care Bears T - shirs . I boght this recently ! But he ` s never seen Care Bears T - shirt in Hawaii , so he was surprosed : D The news said our military rescued 25 sailors who were captured by somalia ( adjective ) pirates . Tactically , in this case the goverment should have been pasive , because the captives ' lives depended on the piarete . I did not cook it the way you 're supposed to cook jelly , but I cooked it as if I was making caffee . I 've been using twiiter almost every day . Unfortunatlly I do n't have any pictures . So we cooked lamb , beef , poak , and sea food . Indeed , sushis taste good if the shef is nice and tastes terrible if the shef is not nice . Kyoto has a lot of restrant . 2 ) When the fat are thin , the thin died a lnog time ago . I watched part of `` Beautiful Dreamer `` , Urusei Yatura 's movie series . Meanwhile , I also want to practice my Enlish . Becouse I enterd my bank card password wrong three times . In Japan , Japan TABACCO INC which prodece and sell Somoking is very influential in many areas . For example in the media , the Federation of Economic Organizations and politics . Last year a politician said that tax one cigerettes would increase so that ono pack could could cost as much as 1000 yen . ( current cost is 320 yen ) There is a persone who is against increasing cost cigarettes in medical area too . He always remarks in media `` what is the scientific proof that smoking is disadvantage to health ? `` `` Can you proove the relativitaton between smoking and bad health ? `` `` Of course I dont need to say anything about passive smoking `` It is abvious that smoking is bad to our health , but he insists that there is no perfect explanation , so we mustnt not impose on extraordinal tax and exclud smoking peoole . Today is called `` Marune Day `` and so today is a holiday . However , today is a school attendence day . ( Chuseok is one of the most imfortant holidays in Korea . ) So it is difficult for him to enjoy life because he controls himself all the time and thinks everything shoul process in the right way . Sooner soor later I will finish the semester at my university , so I 'm busy to sum up my class 's for the tests and report . So I 'll do my best this maonth . Thanks to that , I can now uenderstood it when I watch it again . Recetly , I get tired easily . My profile picture has chaenged . I went to dinner with my friends from my oart time job yesterday . It was delisious but the restaurant was full of smoke . I got a small gift from an English magagine company today . The last time I met an Englis man I could n't say anything to him , I do n't know why but it was impossible for me to say even `` hi `` or something like that . Also , he had a wife who was a very beatiful . Still , a ray of the sunset is coming throught the windows into the rooms . After stuffing all the items into the frige , I take some glasses from the shelf and a Yebisu beer from the frige . I usually read the entertainment or society secyion n . In Japan it is a symble of spring , so when I see it I feel sping has come ! ! In general , many students will start the job hanting when they become third - year students . Once they pass the position of `` new graduate students `` , thier job hanting becomes quite difficult at an alarming rate . As a matter of fact , they will spend so much time on the job hanting that they can not attend the classes they need to graduate . I got up 30 minutes earlier than usualy . REASON1 / I want to speak Engilish because . . . I read American famous & popular literture , The Great Gatsby translated by MurakamiHaruki . We watched TV , listend to music , and played the piano in her new house . I thought I had a nice day wiht my family . Her color is yellw and white . While we were staying in Singapore , we went on a tour around Johor Bohru , Malaysia . There was just a hose or a bucket insted of paper at the toilet . The first day of outumn has come . . . Egyptian food is similer to Turkish food . It was different from the usual tabacco . Sometimes it seems pretty hard for me , but I set myselft to rest by thinking about russian grammatics . Taiwan is the saftiest country of the ones I visited . The pregnancy happened suddenly , She said that she 's relly happy and she 's never had a feeling like that . Many of my co - woker helped me to leran the new system . Because all of my co - workers are not Japanease . But , I want to learn onother way . Could somebady teach me ? Because this is the best way to blash up on my poor grammar . But I warry about one thing . I 'm not good at writing even if it is japanese ( my own langage ) . I hope to make my grammer better through this site . It 's a bad day today . I quarrelded with my boyfriend . I was born in Moldova , and now I 'm studing in Riga , Latvia . This is the main reason ( no comma ) why I 'm trying to learh it . I 'm not sure whether my ancester were ninja or not , but there is a possibility . Are you interested in Ninjya ? A few days ago , I watched the final episode of LOST , the famous TV serise . I visited a wax musium . The musium was brilliant . I have never been to Sushi Zen , because it is very expensive - one item of bluefin tuna ( fatty tuna ) costs approximatey 2000 Yen ( I guess it 's about $ 22 at the cuuren rate of exchang . ) ; ) I feel most content when I suceed in describing or expressing something , using syntax and phrases special to the language . I want to make a lot of frends . If you want to make frend with me / be my friend feel free to contact me . I just know a little Enlish . What 's my aim ? Studying English together with whoever wants to learn Chinese . It 's raining outside , and the teumperature drops quickly . He will leave Japan next summer , so he is writting a book for himself . He opend a souvenir box , and his appearance had changed . He looked like a groundfather . everday we went shopping at some prace , and enjoyed it . ? I think that this time , our family ties had deeped more , and more . Anyway this month is special for me and for all Muslims around the world , and for this I scheduled my time to spend it doing worthful and valuable . At the begenning of the few months , I did n't understand or even catch a word people were saying . Also there were few Japanese people , so I did n't have a friend who I could truly rely on . So I Ive decided to restudy English from today on , so I can be fluent in speaking English . ! On his two - storeyed factory roof some futon ( something for sleeping in ) has been stranded up there by the Tsunami . Today , I bougtht `` yotsubato 9th `` ( It 's comic book ) I met the president of the campany , and we tolk a lot about the amount of money . Memory Of A Fisch So it is said that you can be clever if you often eat fisches . When they wrere elementary students , they had to collect night soil , scrapheaps , flies and so on . My favolite singer is Sina Ringo . Cultural differece . . . Too quickly ; I am very supurised . what do you think ? are you good at your mother language ? how many peole do make mistakes ? freakingly large amounts of money anymore ! ! In English class , the teacher mede him read aloud an English sentence . Aer you okey ? Can you come to Japan from Auguse 1st for about 2 weeks ? You must have a pssport by then . We woud like to hear your ideas and opinions about open innovation . We are now learning about open inovation in Europe and US compared Japan . Oh my God , I 'm crazy , frist I do n't love him , secondly I think he ca n't finish with her , but he wo n't listen to me , I do n't know what to do . The snow piled up in Tokyo the day before yerterday . I 've heard it 's a very difficult qualification to obtain , so I have to keep studing for at least a year . It is very weird that air conditionings creat a hot summer with higher temperatures . She answered , `` Definetely , the former ! `` . Maybe some Engish people know this TV program , I 'll appreciate every correction anyone makes for me , and I 'm really thankfull for your generous help . complecated . I do n't ilke the rainy season . As time went by , my interest fadeaway away becasue sometimes I did n't received any responses . There are so many people learning English in the world , it is understandable how many English artiles will be created everyday and it could be overwhelming . They gave me a souvenior cokkies that contains salt from the ocean around Mont Saint - Michel . Last night was a rainning day . I found that there was noboday and felt a little scared . I was biten by a black dog when I was 10 years old and I even had to stay in the hospital for 3 days . After going back home , I went online and found that there was another student biten by them 1 hour later after me . I also had fever , and I was thinking that this [ CROSS OUT ] might be related with inflamation . COMRENDES ? After all , I drank five cups of cofee in the end . After lanch , I pick up my cell phone and saw that there was a call ( message ) asking me to have a interview . Also I uploaded my artworkd on Ultra - book . It is nect to some newly built high apartments . The symbolic buildings of the modern life and old fationed alleys . Sometime I go there alone to drink wisky and talk with `` Mama - san `` . Do you immediately notice mistakes when you look at our English sentense ? I do n't want to make trouble for my senior bisiness partner . In Japan , the goverment promised to give every Japanese person 12000yen ( about 120 $ ) as an economic stimulus policy . Asics shoes are n't as cool as NIKE ones , but they are very functionable and reasonable . They weok for our subsidiary in America , but I had not yet met them . The purpose of them coming was to have a meeting about making the budget for the next fiscal yoar . When they went back to Amerika , they tole me ' Learn to speak English and come to America ! ! ' First of all , let me itroduce myself quickly ! My company is a farmaceutical company which was incorporated a year ago My favorite groups are SID , HY , RAD WINPS I like eating dericous food . I worked at a Starbacks drinking a cup of coffee in the morning of that day . I think travering is like buying hats . We can see a lot of beautiful sceneries , eat dilicious fruits , go swimming in the sea and so on . Only last sereen remains . ( Family ) or hope it will grow helthy and happy . So , waht do you think about it ? I want to kiil you , Beause you 're tasy . `` I felt surprised and I did n't know what to say . He 's just a 10 - year - old boy who likes to use humor to decribe his emotions . I take a private Eenglish class once a week . Last Thirsday I got a homework to write an article about a famous sports person using enphasising phrases . I recently buoght a new English textbook , and I read it as often as I possibly can . I have n't ever stuied English seriously , but I think that my English will improve if I study it more . Do you know a Mang Cafe ? It is very convinense and cheap . We can read many Mangas , have free drinks , Internet , Wathing TV , DVDs and relax ! But thease days I 've gotten fat ! snow is beautifull , but also so cold : ( Please tell me what you know aabout it . I was accidentally attracted by a JP learning magzine . Its cover had a big title meaning `` spend no money to learn Japeness well ! `` . It introduced some language learnig websites . ( Most of them are for Japeness leaners . ) After a few minutes , I got an acount . I could n't eat them here , because everything is very expencive I coud n't buy them easily . Recently my favorite song is Taylor Seift 's ' you belong to me ' ! I like making something like an accesarry , so I thought that I could get some materials over there which have a different pattern than Japanese ones . Though I still look forword to going to Taiwan . Actually I started ESL classes . When I am finished with ESL courses , then I will study radia . Introdution 2 I like to go to BBQs with my friends . They are from China , Koria , Turkey and so on . Let 's improve together and aim for good reasults in our studies ! howth is the place where the Irish flim ' Once ' was filmed / made . but unfortunatly it was very windy and cloudy . I 'm going to clean my roon , hang out on the futon , walk around the neighborhood , go to a library and bake a cake I 've had plaied the piano for long time , but I did n't play it for a couple years serioucely . I admit that I sometimes like drinking some alcohol , liquor , hard beverages and beer on the weekends to relax but it doesn n't implt / mean that I am a alcoholholic . I speak English wtih foreigner on msn nowadays . Where do you reccomend ? Many office workers have a meeting on Monday about last week 's activity , and must report their activity for their collegue and boss . The Perfoamance of Kim Yuna was excelent ! ! I came hered from Italy . In Itary , the temperature is 40 degs . One night , a family is having dinner togheter . A man , who is annoyed by the chatter of girls next to his room , would say , `` Speak lower , please . `` This phrse indicates a bit of On a plane , a passenger was asked by a flight attendant , `` Would you like a cup of coffe ? `` Then she says , `` Plase . `` I think it is more polite than just saying , `` Yes . `` I can say , `` Yes `` and then `` Please `` for adding some politeness . She said she is woking as an import management adviser . `` Hi `` `` Hi `` `` 35 male USA U ? `` `` 18 male Jp `` `` good bye `` wow he 's the very same as the first guyy ! ! About thirty pepople came . because I 'll play the drums at a concert hall for the forst time ! ! Today 's class was English grammar about subjective moods , so I 'm going to write my diary with subjective moog . If I can speak English , I will make many foreigers friends . I am studaying English now . I hope I can pass the IELTS as soon as possible , so I must work hard and I look foward to get more help here . thnk you He likes anime , so perhaps we can watch `` Vanishment of Haruhi Suzumiya `` , a popular Japanese anime film . More importantly , you are a very friendly person , and I am so greatful that I have a friend like you ! When I arived in Tokyo , it was quite hot , I was sweating . Recently , Sammer sale started at most shops so I hope to buy at Paul Smith but I do n't have enough money to buy on such expensive stores . One of my senior classmates in the foreign language department of SZU ( my school ) hung herself and died the day before yesterday in her dormetory . So we loughed . She was very suprised when the doctor told her . It is nice for me as a nuese and as a human . Altough we know , either consiously or uncousiously , that money is not the end but the means , we tend to confuse money itself with happiness . Of course , money is so important for living in society , yet , you sould not forget that this is an illusion made by human beings like laws and countries . As usual , I commuted by MRT ( mass rapid transportation ) . Howere , you have helo me a lot with English . I ate salmon roe with soy sause tonight . This is good for grawing rice . on a trip in this wintar holiday . I know I have to sterdy more . Today 's weather is good , so I aired the bedding before going to the univercity . I peripared for tomorrow 's experiment . I ca n't figure out diffrencens among them . . My criant has decided to deal for the advirtising , and The company 's human resorces administrator said that My name ist Stefan and I 'm 18 years old , born on the 17th ( of ) April ( in ) 1993 . Changing enviornment , I think is the prior problem for me . There are a lot of things I need to deal with it , packing luggage , becoming more familiar with foreign language , seaching for a house to rent . . . . Do you have a twitter acount ? Today , I made a new Twitter acount for practicing my English . It 's a torophy . I 'm thinikng that 's all fot today : ) Jay Chou is a Tiwanese singer , and QiLixiang is one of his songs . It means a sort of plant , I guess ( I do n't know what QILiXiang is ) . Yes that is right , to understand Sanma is as difficult as Phyrosophy . After the training , I ate a mixed salad with mashroom , carot and beans . Actually , I 'm thiking about working part - time . I 'm studying the CALLAN method for speaking , reading and litening to the bocabulary book & CD , and trying to write these diaries for grammer . I decided to study my English harder so I could speak it fluently somday . She also knows a lot about Japanese culture . For exmaple , she knows about famous Japanese models , singers and so on . Listenning to music ? ^ ^ thus , maybe I will continute to write my blog everyday . I 'm not good at presenting or speeching , in fact I 'm kind of a shy person , but it was good experience . And , we talked to each other about what I will do after graduation and my campas life . Someday , I want to go to the Philipine . To be honest , I do n't have any idea of Rewanda . I do n't even know how to spell Rewanda . It 's been two days and nobody has correting Preten to be a Scottish Fold . . . . . . . . . . . My first diay . Does cannibalism have to be considered with the idea of cultural reativism ? If I were a pig , I would claim pig dignity , pig previlege . It might be hard to get protine otherwise , or it might be a sacreed ceremony in that society . The sea waves are beaytiful . I do n't know the reasin for the hole , One is the pearent and the other is the child . Is it pritty ? Laterly I am very poor because I spent much more money than I had expected to . Thankfully they were rainy days , so I surfed the internet , listened music , and watched movies . I even recorded parts of two songs - one was a Chinese song , the other was a Japanese song . It was in preparation of a Christmas or Thanksgiving vedio for my friends . I thought they had blocked me on MSN , hehe . New colleages are coming soon . We 'll have to prepar a computer for them , and will also be responsible for training them . After my work is over , I alwalys go to the supermarket near my home . I stop by this supermarket when they are about to close thier shop . I found her really coorporative , patient , generous and smart . Recently ( , ) Haneda Airport changed from a ( mostly ) local airport to a truely / proper international aiport . Recently , I started to write my blong on the internet . Honestly , I 've been afraid of daclareing my true intention for learning English . ( space ) Athough I do n't speak English often at the moment , I wish to improve my English . It is cherbet ice cream with many kinds of fruits . Because this drama is not a mede - up story - the characters , drama , and everything are from real local life . Now someof of my work is almost 3 months late ! ! Is it a magic holiday , or it is just costom ? ? ? He said to CNN that `` I can do anything , I can be snything `` Every time I tried to come up with an idea , the person who recieve a postcard said it was good . Active : Do n't blem me Passive : Let me not be blem . Active : She gave me a prasent yesterday Passive : I was given a prasent by her yesterday . A prasent was given to me by her yesterday . but it will be dificult to establish a company . It is bery nice of you to see my diary writen in English . It has become an incomplehensible text , but this is the end . Have you ever experienced nonstable sleep ? the horrouble situation , we get used to it at the end . It was a chance to have an exprience in an English meeting . There were people who work in ther countries in the conference meeting . Others are hunging wind - bells and banboo blinds as the devices to create that `` cooler feeling `` for getting relief the summer heat . But my friends who are leraning German with me don ` t or can ` t participate in the program . But I have found that there are a lot of English words which although I can rean and understand them , I can ` t use them in writting or converstion . So I must improve my English vocabulary untill summer . It was nominated for the 2008 gramy award for song of the year . * ice cream soad It seems easy to convert feelings to the opposite one once I have recovered the orginal positive mind state . I think there is a kind of horizon between our positve and negative mind states . Remember you never drag yourself alone into the dark , but the poeple around you as well . If you think someting positive , it will come true for you . Today is Saturday , and all my colleages went out for fun . However , the results did not satisify me . In Japan , we can watche it on Sundays , so I am in the habit of watching it . My school closes for summer vacation tihs Friday . After long and greatful summer vacation I want to study , study , study , and study again ! ) ) web - design courses , photography courses , preparation for TOEFL , dancing . . . Rencently , the news reported on many food safety problems . Food retailers have responsability , & nbsp ; too . So I have decided to pratice my English writing skills from now on , on here , Lang - 8 . Creating a vitual life which correlates with your destination is the best way to get it . I drank madicine , and sleep more and more . I am very happy to join the big familiy . I am a Chinese girl . I want to make good freinds here . My professor said , in this case , present tense means someone 's habbit or a fact . I tried to memorize the new grammer for the next lesson . Tiger is one of the best animals ( which ) he liks . On the way of returing home , though I pushed the twin stroller , Every evening plenty of classical concerts are offered in churches , theaters and historical buildings , while in the daytime there are marvelous views of castles at Moldau . All the buildings with pastel colours and graceful decolations in the old town attract strolling people . The cheapest seat , which is located in the highest etage but still close enough to watch the stage and orchestra , kosts just 50 kc ( 2 Euro , 220 yen ) . I had no plans , so I just hunged around and droped by ( visited ) interesting places . Second , I had a cicret birthday party for my friend . Because she came from Kansai area soon acept that application . Then we went to karoke . Economics , sciece , engineering , and technology change day by day . We konwn many methods to relesase stress . Some people eatting sweet chocorate , have heavy foods , drink achol , or buy expensive bags . If I have am streessed about something or somesone , When you learn a language , you must develop the muscles of your speech orangans to produce unfamiliar sounds . So , I ` ll cheer for the Cunucks ! It gives us an English language enviroment . I hope everbody is happy , and all of us improve our abilities quickly . we could go fisching , run barefoot , and wander the streets with a vacant smile on our face and melting ice - cream in our hand . Are you like go for a walk with your friends , eat chokolade , and look at the sky ? Last week I took an English volunteer interview and people who pass the interview have the chance to show museums and other places to forgin tourists . I thought I did a bad job last week but yoday I recieved a message from the interviewer . She said I passed the interview and asked me if I wanted to go to the Zhejiang Silk Museum as a volenteer . What I have to do is give tourists a tour of the musuem . Today I heard that my colleage would like to skip the writing class since she did n't finish her writing homework in time . Most of the TOEFL topics are dilemmas , we have to explain the main idea , find the sentence or appropiate supporting sentences and write about them in 250 words . It 's quite difficult for non native English speakers to discuss unfamilair topics , I also tried to practice my writing here for my first TOEFL examination . Even if we ( can ) pass TOEFL to study abroad , we plan to come back home to work after we graudate , so in my mind I thought that studying in Thialand might benefit my country more than studying abroad , for which we have to pay high fees for the test and tuitition . One good point of view for higher education abroad is to broaden your mind and accept a diffirent culture or lifestyle . Studying in our home country will result in much reasearchs and development , this ecomomic crisis will strengthen our country . Even though people in Thailand admire the new generation who graduate abroad , I feel I should promote higer education in Thailand . Today I heard of this website from a friend , he said it is uesful for language study . We would have to understand different cultuer . Somoday , I wanna live in another country . Of course , soccer is n't the only exersise I enjoy . I bought a gudget named FITBIT . The gudget can log my dayly activity . The IF of the activity is web brauser . Of couse I 'm still bad with English . I mighit write in it every day . I like helthy food . So , I often eat fishes . This day I 've met a forein couple . Although , the weman did n't eat a lot of sushi . I heard that there are few forein people did n't eat law fish . That weman almost has not eaten any law fish . I Hate beeing alone My parents brought my favorite thigs to me : some Japanese food , some books , and some clothes . I love everything ! ! I am just observing this week and will beging This is why I think it is my part of identitiy . Lots of words disappeared from my head , and I forgot lots of grammers . I would like to shere details about me to people who read my diary . I spent the money to cornect the internet to my house . The computer is my sister 's , she bought it maybe 5 months ago . She do n't want to cornect it but I do because I would like to use lang - 8 at my house . My sister said that after I cornect the internet , her computer had a proplem and may have breaken it . . We do n't understant each other . In the end , I decised to cancel the inthenet service . Some people are now willing to learn Cantonese , but I have to tell you that you are actually only learning one version , which is the offical one . Many centuries ago , lots of people from north of China moved to Canton to escape the war and cold , and then the immigrants ' language gradually evole into a new kind of language , which is a mixture of Mandarin and Cantonese . I love taking photograh but nowadays I have not taken any . I 've recently started taking an interest in photograh again . I attached 3 qute photos of amimal This year , I called them nearly everyday to share my happlyness and sorrows with them . When we leave we must remeber always to come back . However , it will be rainy for 4 days from tommorow onwards . Actually I think I can not get full marks on all of the quetions . I mean I did it but I just gussed the last 20 questions . . . . . . There are KANJI , HIRAGANA and KATAKANA in Japanese , That 's creazy ! As everyone knows Japanes originated from the Chinese . So , logically it should be easier to guss what the words should be I think . It is a really beautiful city with many things that can make us very supprised . I do n't know how to decrible how wonderful it is . I am sitting and enjoying the view from the wimdown of the hotel and I feel a bit regretful because I am leaving Nha Trang tomorow . The Japanese rush to the fully - blooming cherry blossams in order to hold parties , called `` Hanami `` . I heard that it is rude to say `` Can you play teniss ? `` So please seach me ! ! ! ! ! ! He can speak Chainese very well so he know a good way to learn a language . Welcom party Their new circumstances , taking care of thire baby and so on . My compluter was n't working last night . I 'm looking forword to someone 's corrections . I was reminded about it when my new friend asked me when my bithday is yesterday . I knew why the students did so . Becasue when I was in college , it was very annoying when the teacher talked about something so dull and useless that I wanted to sleep . In my nineth month of pregnancy Starry , starry ningt , flaming flowers brightly blaze , swirling clouds in violet haze reflect in Vincent 's eyes of china blue . Everything seems to be so uncommon but moves your heart strengthly . did anybody see the movie called `` Heatless `` with Jim Sturgess ? I need to know how to say something , cuz I have to send a letter to someone , but I do n't know english , so plese HEPL ME . I try to look at everyting from the positive side . It was so funny thinking abou it now . I would like to take this oppotiunity to exchange deep and beautiful thoughts with people from all over the world . It would be very nice if we could learn from each other , and be a good infulence in order to develope as a good perason . I would like to calivate an international friendship . tahnk you again . These are hand warmers , boot warmaers , etc and small packets which are held in the hands . If Mongolians could get hokkairo easely , they could be so happy . Therefore I felt his patoriotism in his essay because most of the students wrote about commercialism like the hospitaly in high grade hotels . My L - 8 Freiends , please , give me some suggestions . However I ate a fast breakfast and I washed up fast when I leanred that we would go into the field with my dad , exactly in the currant field . I found my friend was crazied about shopping . even though she had alread bought many clothes last week . today I had a very good time ! cuase ' few people will chat with me . Japanise animation Speking of a Japanese animation , on Sunday evening , [ SAZAE - SAN ] and [ CHIBI - MARUKO - CHAN ] are shown on TV . bamper . So my friend and I were dizzling and totally tired . I 'm very intrested in philosophy . But we care about the huge earthquake that happend in the Tohoku area . . The parade started at 10 : 00am , at that time it was a liitle bit rainy and cold . Many people in Omaha came to see the parae , so I really enjoyed it . this semester we finished our graduation perforence perfectly ! ! ! im so pround of our show : ) and I also took the TF test , although the result is not high enough , I still can go to America next winter ! ! ! ^ _ _ ^ it 's really exciting : ) im going to Idaho . . . I arrived at the academy after class was finished , so I could n't haer a lectuer for even one minute . . I felt so terribel because of my bad habit . But I think we should deside independently with whom we want to marry The fisrt class of translating subject ! ! ! It was different from what we had thougt before . We anwered after discussing together . But it was really surprising because the biggest problem of learning about the subject of translating was not about the languages that we wanted to translate into , but the ability on using our mother tongue itsefl . Because my hometown in Tokai is hamous for ham . . I 'm writting this at work . _ ( sorry boss ! ) She is very prity ! I started studying English maybe during erememtary school , second year . Comfiscate is the word I have memorized today ! Please teach me example sentences containing the word `` Comfiscate `` . August is the best season for diving ahd shnorkling if you can bear the cold water . DAIHATHU may not be as famous as the other automobile makers . The teachers were there too ; evryone drank and ate a lot . On my brother 's vacaition we traveled to LA , Las Vegas , and San Francisco He 's not very good at stadying things like English , math or Japanese History . Actually , I thought anybody could be a teacher , becouse you just say what you know , and so there is no effort for it . And you must pharaphrase more simply . Controlling my Budjet So , I decided to control my Budjet by checking my expenses with an iPod app . On the way there , I saw a big rainbow acrossing a river . Reading is spectially hard . And If I have Chinese freinds , I might / will come to like Chinese as individuals at least . I live in Italy and I 'm a biologist . My specialitation is Nutrition . Today , I will introduse the SAGA international baloon festa . That festival is the lagest scale event in my town , started in 1980 . It is so fantastic that many baloons take off simultaneously . For example , DORAEMON , Tom & Jerry , Pikachuu , ATOM etc . The seconed is a very practicel sentence because I might have a lot of opportunities to use this sentence . The culture of IBM influences me , they are dedicated to every clents ' success , innovation that matters , trust and personal responsibility in all relationships . Nowdays , I love to read books that wrriten about other languages . . I 'm trying to make some sentances . . I beilive her river , asada mao will be better next time , , ^ ^ althogh there are some mistakes in today ' game . Therefore , this semester , I want to study hader than before with my favorite lectures . Love , family , friends , career , dreams , ambitions ; They are indeed significant , but they are no more important than one word called `` happy `` , because life is precious , unperfect and fragile . There are 28 letters in totall in the Arabic language . Tanween is used as follows : If you want to say `` coffee 's `` , then it will be qfwatin ( `` tin `` is kasra plus tanween ) . If you want to say `` of coffee `` it would be qfwatan `` tan `` is fatqa 's tanween . There are a lot of Arabic words that went into the English language . For instance , alcohol , lemmon , soda , guitar , sharbet , arkari etc etc : ) I forgot the passward and even my ID . if you know me , let me know my ID and passward . I uploaded my last entry a kinda long time ago , mayb two months . I didnt write any entries aabout porno ! ! yeah I lov korea . Furthermore , they have to hone their language skilss to perfection in order to perfectly understand their lectures . Another problem is the fact that you may miss home and friends and propably wo n't get a chance to visit them frequently ( plane tickets are too expensive to buy every weekend ) . Earthquakes occure here from time to time . It 's weired . This year is very weired . staying with a few colleages in our leisure time . It 's a little troublesome to organise a A good neigbhor I have . Organizaing and Planing is The Most Important Thing Like thd saying , `` It ca n't be helped `` , I have to go through the process of trial and error to make a well organized and planned life . It was awsome ! After I returned to the house I put the pictures on the computer and enjoyd looking at them . In my class , I heard that the Japanese did n't take care of their own oral hygiene while in other advanced countries , people went to the dental clinic in order to undergo medical examintion twice a year . Some Japanese people who ca n't speak English at all said to me `` Oh Tomo - san you can speak English fluently , I envy and respect you . `` Every time I hear this kind of opinions from their pretty and wetty mouths , I get so excited as he adrenaline rushes to my head . So I deside on it . After watching the video and listeng to the song , I became more interested . Acording to the legend , a pair of stars were separated by the Milky Way . They are lovers but they can only see each other once a year . Yesterday , I sent an email to my professor with my lab partnar . I 'm sorry to bother you , but could you tell us when it would be convinient for I am gon na join this club every Monday and Wedn . I have not written writtern this diary for a long long time . Because the bowlling alley was so crowded , we had to wait for about an hour ! I went crazy bowlling and played three games . The band I 'm crazy about is called `` HEAVY CLAFT `` , they are a melodic pank band . You may know about the Snow Festival that is held in Februrary every year . My strong points are buildign servers , and responding to security problems . I like to read everything aroud me . As I got more intersted , I watched them again and again , and finally , I could understand what they were saying and laugh with them . Tomorrow norning is going to be scary . Because I think that growing the foods is fundamental to human life and especially in Africa , or other developing countries , we need to help teaching agricuture skills . Although it could be transrated into ' Genki desuka ? ' or ' Tyoushi ha dou ? ' , we hardly say these . At the same time , I study law . I might want to be a lawer in the future , just might . . . Beginning today , I will write notes in this daiary . Yeaterday was China 's traditional Valentine 's Day [ Qixi ] , however , it seemed nothing to me . I just try to think what I didi wrong , but no answer comes to mind . I know taht I am a new worker , but I want to be a good worker , and I trying to . Good moring everyone . There are many covenient menus in computer programs . Although I sat in the right front seat , I cound not keep up with her ant - like voice . I really want to say `` soory `` to you . These days , I thought a lot of things about my college life . I made so many mistakes that cost me lots of chances and time . In this world , there is just one person thai I can call `` father , `` and only one person that I can call `` mother `` , so , what is the cause of me not cherishing the days I stayed with them ? The workshop with Japaness in our school was finished yesturday . After two month in July , it 's our turn to travel to Japan and have a workshop with Japaness . I expect I I will have a good time and meet more Japaness . If I comfronted with them , I 'd make friends with them . Now she 's looking for a job , especailly in Marketing management and advertisement . I have to do my best at alll times . And perticles of sand that also shape stars were abound in the beach . He became verry happy when it arrive at my house . The adresses was in a different part of city which he had to visit . To reach the adresseses he wanted , we organized a car and a map according to a plan . We finished our program at 8 o ' clok . And the time came for him to leave for the Ukrain , because he has some work to do there too . Can I ask why the exlipse happened earlier than estimated ? I should be very very carefull . Last year the winner was Valerio Scanu , with a `` melodic `` song , I 've often said it is `` a song for old people `` because of its rythm , but it is not bad XD : ( 4 years ago , I started UK 's indie rock music and became interested to stady English . ) I heted English , but now I like English ! Of couse I 'll cook some spaghetti and curry ! Everytime that I 've enjoyed the plot of the book or the writing style , I can say I 'll always read almost all the books written by this writer . I think it 's like the beginning of an `` intimate `` relashionship with the author and I want to know the `` world `` of this writer . A video about sushi in English was shown and the instractor explained sentences which were used in the video . `` Nigiri zushi has long been a favorite delicacy for the Japanese . `` I 'm busy and I 've been going to bed so late resently . They catch mackarels For my coworkers and castomers , I work hard ! ! It went to Hornsby via Marcuarie Park and Univeristy . At that time , I choosen to leave that school And every time I have seen a middle - ager jogger Today I heard some shoking news . The prior president of Korea committed suicided this morning . Before he died , I also felt a sense of betrayal like other many Korean poeple because of his irrationality that was revealed a few weeks ago . Of course , it 's just a superstition , but my tutor was very I intrest in it . Eternal sunshine of the spoless mind Or , just ur projection or imagination . Therefore , I went to a movie theater to watch Transformars ; dark side of the moon . But in the mornig , we went to the Farmer 's Market . For exsample , there were animals , Superman , and a firefighter . First , some children can not gto to school . In children 's case , they will be unenable to learn in the school . Other than that , children maybe unenable to go out with their friends . Nobady knows when wars or tributes will hapen , so they have no choise , but to stay home . for producting ships . It 's going to be longerst bridge in Korea . Rakugo is one traditional Japanese art of storytelleing . Although signing in to skype and having to take a long time to solve a little preblem every time , So I am really greatefull . I decided to recite an English word every day and starding using it . We publish lllibrary news and I have to take part in making it . I can see lots of differency ! It 's a really beautiful sea but we are not allowed to swim in it because of the crocodailes and sharks ! ! ! ! ! A duplex house is a dwelling for two families , including two separate residential units . I mean , two enterances , two kitchens , two living rooms or such . A young woman called Natalya had been talking to us about working for the famouse cosmetic company `` Oriflame `` . When we ususlly go out , we leave Grace in the Pet Hotel . Our eldest son went to Austraria this summer for a week . Fortunatery Grace got her space in the car . My husband set up the hummmock between the trees for the children . Instead of them she played with her favorite toy . I think if my plan were to be carried out , everyone would feel more confortable ! It 's very intresting ! ! ! Today I found this webside on my friend 's Facebook entry . I immediatly registed without thinking . At last I purchaced a 42 inch TV with three tuners for digital terrestrial broadcat . That meanins we are study companions to each other , each doingour bestfor our ownpurposes , I think . The first two years were difficult , and they were nothing I 've ever experieced before . I got used to being here , but I loat my motication toward learning English . I hope it will be a good appotunity to get my motivation up . I really love that we help improve aou hearts together . I updated the farmware of my wireless router and changed its channel again . In my prediction , Hideo Higashikokubaru slightly has an advantage than others because of his publicity and his achievement as the former governor of the Miyazaki prefecutre . We got a Disny English CD . When it comes to types of damege done to crops , in Australia `` fire `` was the greatest Tommorow Never Knows Tommorow I was going to play tennis and have a BBQ party at the tennis club , which is the club where I play tennis almost every Suturday or Sunday . It is said that the breastfeeding rate in China has been declinded . Besides , as I 've mentioned above both parents have to work in this competative society , so they have little time left to take care of 3 or more children . girl that Ilove . There are foutains , crystal I also Ilove this place because Even when they began to posses them , they did n't have many apprications except for calling , compared to the recent phones . I decided to start this English blog to have an oppotunity ( spelling ) to write something in English . And we went to boldering gym . Boldering is a sport that you need to climb up about 5m on the wall . We played boldering for about 2 hours . I like my scool festivals . First of all , I have to thake to `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me , that is really helpful . This morning , I suddnary wante to make a spanish omlet . I really missed her spanish omlet and I desided to make it myself . Instad of potatos , I put tometos into omlet . I recomend you to try itwhen you make omlet . They alse recycled the trash . For a long time , in this jarnal I have not written . Today is the start of a charenge ! Now I will go to lunch . After , I will write in this jarnal ! I watched TV to intoroduce the online way to study English , the name of the TV show is `` I know `` . I heard it is maede in Canada . The man who began to make `` I know `` said it is most important to improve words and frases . So far , I studied Engliah grammer . hunging out with my friends . It 's a beactiful city with blue sea and golden beach . NO . 1 Middle School , pleaes wait for me ! ! ! At first she needed me for some help on things wich she really did n't know how to do . From the dorm apllication , learning program apllications , to every step of preparing an activity for students of our department , she always asked me to do them for her . Before I would refuce it indirectly , and she was still fine . But now if I do refuce her , she gets mad and says that I 'm very mean to her . The Bigining of 2010 Because I am a valunteer at my school now . I hope we can learn different things and happy togeter . These days I recognize that Engilsh is very important . Previously , I do n't have so much disire to see the concert , because I ' v seen linkin park 's concert once . For example , when he wanted to learn Hindi , he just went to India without studying learnings . I thought I had not written a jounal for just a few days , but actually it was a week . I am turning into lonly person . But few hours befroe , He called me and said that not available today . . . Anyway , just I told my feeing nowaday in the diary . When we were on our way home , my douather fell over suddenly ! His dancing and songs were briliant . sacnf , a pair of mittens , and lipstick . So I just remembered this web site and how usefull it could be ! I have had a bad headache from this morning . It is very uncomfortabled I got a pill and took a rest but it didnt work at all . . . I need to put more time in my study / studies , easpecially ( in ) English , in order to get a good mark in the graduate exam next year . I had Toeic Class this eveing . When I arrived , I was very hungry so I overeated . Hello , my wonderful friends . The day before yesterday when I went to the internet shop to fix my computer , while I was on the lif ( avator or something , I do n't know how to tell you in English but when you do n't want to use the stairs , you can use it to help you up to the top ) , I was carrying my PC in my hands . There was a liltle child arond 5 years old who pulled my hair > . < When I was young , I was in love with eating American style junk food shuch as pizza and hamburgers . When I eat somthing so delicious , I feel so good and happy . I could n't memerized every thing . I have class `` tomorow `` about American sign `` Language `` . frist I thought that is like the English languge but not really they are for for the poeple can to listen so they shoud be use the sing to conversation . I have classe at 10 . 00 am in the moning . good nign from Thailand now . We are going to sing two songs , one of three part chorus plus piano accompaniment , and one four part a capela chorus . I was suprise . I went to the chilli festival in Frementle today . For my firend I love eating , Listenig to music , watching movies and talking ! I went up the stairs two at a time becase I was hurrying . It ` s an American druma . I fell in love with watching mortorsports , especially Formula 1 , yesterday was the last F1 racing day of the year . `` Let 's watch Star Wars ! ! ! There 's a TUTAYA over there ! ! ! `` So , we went to TUTAYA and borrowed Star Wars Episode 6 . But I tand to be razy studying . I must be a better lerner . Everyone plase correct my sentences . ( : _ : ) and find a job as sonn as possible . . . . . . . Now I 'm looking for a theme , an interesting or favorite one for the 4th year of University . Moon rabbite is the most famouse tale in Japan . It is common sense that Moon rabbite is hitting a rice cake on the moon . Because the moon 's silhouette looks like a rabbite hitting a rice cake . A tarented person who can talk with a goat I like the humburger and I ` ve tried them when I went to America . I wonder which humburger shops is more popular in America ? Could you recomend any good humburger shops ? I want to try some good hunburger shops again when I visit America ! But , hey I 'm talikng about me right now , so taht means strange girl meets strange boy in very weird circumstances . and lots of koreans confuse this with ' flatter ' but flatter can be used in the opposit way for example when your friend wears new clothes or gets his or her hair cut , at times like these when you need to set the scene for somebody to make them happy . The driver pretended not to hear me , and completely ingored me . rainning ~ rainning ~ It 's rainning today . I 'm sure this is n't my general level Enlish because it only measured my writting skills . I think that gene recombination is so usuful and revolutionally for us . All members of our high school choir club were so nurvous , but we managed to get through this which means that we can go to the next stage . The reason we were so anxious is because our performance this year was of a lower standard than avarage . I just scoled my kids . I scoled them . Anyway , let me talk about my plan on Chirstmas . The problem is I have no idea what present should I buy for her as a Chistmas gift . I 'm a colleage student and I will graduate soon . But I 'm glad you asked me for my e - mail adress . Drinkng with my custumer . The atmousphere is so nice , I want to visit there again . Then one of my custumer said that you do n't have to say the reason why you can not ; When you do that , other people will help you archieve your goal ! Crithmas Present . ( We bought clistmas prezent for each ather with my hasband . ) I want to use nou , but I ca n't . I ca n't wait until Crithmas Eve . I have DVDs and some magagines about it . I wanna corect more of them . And I wanna watch `` Eclips `` soon ! ! I like B because her choice in fasion is very cute and gorgeous . And she gave me a poket tissue . However , it will be revised , and we can not be satiafied as long as the promise of free highways I invited two young ladies to come to my hometowun Kamakura . in Jpane , this is a famous anime moive , I guess it is because I only studied reading and grammer hard when I was a junior high school / high school student . It is strange as a human being that I can read , but can not listen to English , is n't it ? I have just finished doing exercuses from an English page . I sent a message to my frined on Lang - 8 . I feel happy coming again to write my diary . I will try to write my dialy in this site once a week . I really feel like having a little bit of English in my mind before I start working today , because I want everybody to really understand what I wanna convey and of course I wanna be ready to answer questions or requests at the store . I hope my job is not so difficult and that I may ( can ) leanr a lot of new stuff . . . God please make me very smart and wise ( as ) it 's incresdibly difficult to be in another country . . . I nwanna cry sometimes but I cant in front of all these people and I ca n't eat anything . . . . I do n't wanna buy newe clothes , . . . Ysterday , I did not sleep well . Secondy , the best advantage of autumn is apples . It 's obivious that autumn is the time to read books about autumn . I wish I could read it in the original , but I afraid my language skills are n't good enought . Because you were sumurai . The first video clip was taken in Torres del Paine , a place near Chili . Tiday , my daughter 's best friend 's parents invited my daughter and I to their house . I answered that I did n't remember the number but as a regular visitor security guards usually let me in just by calling his appartment because previous guards obviously remembered the number of the appartment . I heard that in Helsinki a scoop of Haagen Dazs ice icecream is 10 euro . I have benn studing Engkish recently . But I shall never give up untill I get what I want ! One of my English teachers taught me the preasure of learning English . it seemed to me like a movie or darama . I suppose cooking is far more creative for her than working in a small design firm , Actually , her food is really good and most of them are her orijinal recipes . I want to make meny friends . In China , Friends videos , mp3s and scripts are very very populare on the internet . My frien likes Joey baceuse he is funny and does n't share food with others . Rachel is a beauty and Phoebe is a weirdy . Everyone 's performance is perfect on the first and last seasons ( I only saw season1 and 10 and I need more time to download and watch it . ) I ca n't help laughing out loud when I am acthing it . I 'm waching the last episode . She gave me an e - mail and she informed me how she 's been geeting along in it . In a ring , two smo wrestlers hold a baby wrestler face to face with each other . First of all , I did a good job , probabry ! At least most celebrites have to work very hard . As far as I 'm concerned they also have to spend lots of money ono security because their private life is public . I was diagnosed as having allegic conjunctivitis . MY BIGGEST ADVEMTURE IN THIS SUMMER ! ! ! I enjoy such unexpectable meetings while on a trip . When we get along with people , even strangers , it will be a memony in our life . He can jumpping and run very well . I passed the Singaporean driver 's license paper text in Feburary , but 3 minutes later , I realized that I had already lost my JAPANESE DEIVER ' S LICENSE somewhere in Singapore . To be hoest , I do n't want to go back to Japan for even a few days . Besides , the Japanese government will raise a concumption tax up to 10 % . So this time , I want to go back to Japan directly by Singapoe ariline . The image of Japan for foreigners , I think , was the misterious nation , concrete jungle , and men having the ethic called `` samurai spirit `` wearing suits . However , the predudice in which Japanese people are marked with not having human face is totally untrue . People who have little knowledge about Japan tended to think like the descriptions I mentioned above , ironically enough , the disaster reveiled our humanity . During this time - space travel he finds his first love , Livia Beale ( staring Moon Bloodgood ) , who left him without saying goodbay eight years ago and had disappeared since then . A main difference between Italian and English is the lenght of the sentences in their written form . Thefirst point is the `` economy ploblem `` . Thesecond reson is the `` road condition ( s ) `` . Hoping there 's someone to save me , to bring me far away from here , to a brand new world full of blossoms and flowers , fresh air - the ideal kindom I would like to belong to , in which I could completely display my talents and achieve what I deserve . I 'm waiting for your unswer ! I 'm so hungry , but I 'm dranken . Hi all , my nikname is Madi and I 'm looking for nativ English speakers . Recenty I have been thinking about being sensitive . Becouse I suddenly got a pain in my back yesterday . After seeing a model wearing this dress in a magzine , I decided to order it from the internet immeditately . I 'm goint to turky ! I 'm going to Turky with my custmers tomorrow . Hope I can keep on writting at least a message everyday and have a lot of fun here . * Tmorrow will be the result of the exchange student process . I did n't answere that question well . . . I hope I will be allowed to go abroad as an exchaned student . Please , please , Plaese . . . ! ! I met with a frined of a friend last night . I could answer only half of them and coudl n't answers the other half because I could n't understand all of their questions . Vasicaly , this is the first time I have spoken with regular people . They responded immediately , and told me that I sould not pay much money to get a new one . I was luckey . I really appriciate their help . My mouth was so cold that I could n't taste which fravor I was eating . I 'm planning to go abrord while on vacation next month . Luckly I was able to get a ticket to America at a low price . But I have n't reserved a hotel so I still need to find a cheape room . It 's been a while since the last time I traveled abrord . My girlfriend 's burthday is on the Monday of next week . actully I did 't preperate his birthday Today 's wheather is not good in Niigata sity in Japan . Spelling I will keep making an effort to write English diaries ong Lang - 8 . I went to Hong Kong and Makao with my mother and sister . In Makao , we ate the same egg tarte and saw the same street scenary in a drama I watched . Though the tarte was a little fatty , it was popular among other tourists . Seeing beautiful buildings , scenary , and shops , we felt like it was a dream . I can use Japanese and I am especialy He is 5 ' ' 5 , skiny and had long blond hair . The one I want is very expencive . tomorrow I wll go , though . They should control theirselves although there is the word ' youthful mistake ' . I wached each movie , and I accutualy felt that the movie lacked an explaination and that it 's difficult to understand the story . My host father sometimes takes me to various place , for example crimbing a mountain , or shopping . . . If I move downtawn , I have more time to do something , study English , talk to strangers , or take workshops . . . I therefore envy Korean fans . We are not sure when it wil be broadcast in Taiwan . It 's like endless waiting and really tortures me . In a shop , 32V was cheaper than 26V , a staff said 32V was more popullar than 26V , so the price was cheper . So , I bought some clothes , but , unfortunatly , it is too big for me ! Ca n't remeber words , write correct sentences or even can ' tspeak it properly . I had Japanes homework from my mother . avoid : We should avoid direct conflict when we desagree . postpone : Our school postponed the beseball game because of the bad weather . interfere : Some kids say that day do n't want their parents to interfere with them , but in actuality , kids ca n't live withought their interference . lack : I sometimes lack patince with my sister . I want to talk with many foreiners in English . Especially , when its roof is coverd with snow . It 's so sweet but it has a teribble smell . Becouse , I always believe in the power of jewerly which is a realy wonderful power like charming . Of couse , I have one which is anklet was made by myselfe . Nara is a traditional prefecture in Japan and it is famouse of having deers . Sentokun is the main Buddhist charactor of the 1300 year anniversary of Heijou because of him having horns . However , some people debate which charactor is the best because Sentokun is n't so cute . Come tommorow , too . Recipe for macaroni salada with avocado Mix all materials in a boal and add salt and pepper to teaste . I was surprised that some people actually complained about the tast of their lunch . After all , I just have less time to propare for my / the big exam . Foryunately , I can enjoy sunshine every morning . Remeber , when you get on a train , you have to wait for all people who want to get off it . I 'm going to go snowbording in Nagano ! As time gose on , I can learn , exeprience someting new that I did n't know about . There are some vegetables left in the frige . I want to know English . My dream is to studing in a British university . It was not as storong , however , it was already expected . We need to see the details and further reseach on it , so we still have a neutral stance for Hitachi Chemical for now . I turned on the TV and I was very surprized when I watched the news , So I thought the earthquake on TV and the one we experienced was different , becaue it occurred far from here . The legend was that : Chang E , the goddess of the moon , swallowed the elixir stolen from her huaband and flew to the moon . The Mid - autumn festival is a traditional Fsetival and it means family reunion . In Sydney 's Paddy 's Marckets , there were many things . 1 . Prepare everying before going to work at night My school is an airline business shcool and I want to be a great member of staff ! But , I worried about her conditon between now and the next olympics . If somebody tries to compel you to learn a language , or teach you something you do n't want to know , it doese n't work . It 's my New Year 's Resolution : ) I do n't know how much time I 'll have , but I want to work 2 hours pef week at least . Prefelable , I want to spend one hour a day , but I think it is impossible for me . My mother is very anxious and my father aslo does not know what to do . If I had already matered English perfectly , I would apply to it . I have just joined the site and I do n't understamd how to do corrections , not comments . I tried to correcte some people who want to learn the Russian language but I could only leave comments . Unfortunaly , two of them died just after they were born . I named him Yuki becouse he is as white as snow , and yuki means snow in Japanese . Is interesting that now , just six mounths later , Julia had kittens again . Unfortunaly , this time I will give all the kittens to friends , becouse I 'm going to have a new sister / brother ^ ^ Miyavi 's first concert was awsome ! He had a DJ named Teddy Loid ( he remixes some of Miyavi 's songs ) and a musician called KAVKI BOYS . S : Also , I hope that Miyavi sings the day of my birthay ( July 11 ) . . If I do go to whictler on thursday , I do n't care about college . I suddenly discovered that being alone in a foreign country really challenges my courage and endurance , which really pushed me to a tight suitation . That was somethind I did not want to admit ! I can not write it down in Engish . My job is Systems Engeneer . The reason of the times is crasy form of manegement . There are a lot of problems so I wish this form ( of management ) disappeard . mukashi ha nihongo ga amari suki jaarimasen desita nihon go ha hontoni muzukashi dakara . demo kare kara ima wa nihon go wo motto2 benkyo sitai desu . . . watashi to kare wa takusan cigaimasu yo . . . So , I 'll go to the office untill 8 : 30 ( every day I go untill 8 : 00 ) She is also an actoress . Syoma helped her . I wanted to go further west to Turky through Iran , but 911 happened when I was in the northern part of Pakistan very close to Afghanistan , and so I had to give up my traveling before the Pakistan - India border was closed . Nothing can cure the heart but the sences . bus roundtrip , it 's kind of a stupid tihng ! ! bofore I knew it . I am a spotlight man and a soud - effects operator . Good evening evryone ! But the classese starts the day after tomorrow ! I have been so deppressed and sad because he was leaving . He did n't want to spend four days with me before he left just because he was tired of seeing me deppressed . Today I tried to read the pracrice passage like I was talking with my foreign friends . so I staied home all day . We enjoed horseback riding very much . This photo is one of thenm I useally drive short distances , Often it depens on the kind of job the employer is involved with . If the employee is paied appropriately for his skill , he wo n't move to other companies , and that would be better for the team . I am talking about the advanteges and desadvanteges of playing sports . First , I will talk about the advanteges . On the other hand , I can see some disadvanteges to sports . Today I met a beautiful lady aged 90 years and a hundsome guy aged 82 years in a park . It was very intresting and much impressed me . One is that they have many topics of conversation including TV news , the catastrophe in Japan , Science , Doutch history and even Alzheimer 's disease . Unfortunately , _ peole , _ living in recent days , _ not only scientists but alsa officers and citizens , concentrare on the most advanced inventions or outer space rather than basic science . In this essay , I will attempt to explore the causes and sollutions . Speciafically , _ it depends on the nature of basic science . Accordingly , the sollutions to this issue should be varied . In terms of this , teachers not only in primary and scondary schools but in universities and colledges are essential for nurturing students ' passion and curiosity and motivate them to condust that research . Although causes of this issue are various and complicated , _ effective measures still can be taken to cambat it . What a nice wheather today ! And pictures of the sea and the sunset are beatiful ! He was supposed to stay here untill this Auguat , but he went back to Holland the day before yesterday because of the nuclear plant . I still ca n't beleive that he has left yet . In Poland the wheather is rainy . When I was in job the wheather was sunny . The teachar using this site is from the Philippines University , it is most inteligent in Philippine . I love coffe When I explained to visitor a proceduer in English , how to do a cold massage and she told me `` thanks `` , I felt like I was in nirvana ! Now I often hear news that a lot of temporaly employees ( temps ) are losing their jobs from the worldwide financial crisis . What the diference between writng in a journal and free writng ? In my opinion , reading books is the best way to improve writng in Japanese ! This is frist diary . He said that the girl told him that she loves him by text message , and he asked if the girl really loves him , because foreinger do n't say `` love `` so easily . Ohh man , Lang - 8 is really nice . I was shocked and got dreesed at the speed of light and rushed out of the house . I like alternative rock , rocksteady steady , reggae , FUNK , ska , and soul . Autumn is just aroud the corner . I grew up in a small town and I liked the quiet atomosphere . ( The amount of ) Public transportations is convinient . When I lived in my hometown , I commuted to colledge by car . I can dring alchole in the workplace and I can sleep while commuting between university and my home . You can meet with many different people and experience ( ? ) many talents and charactors if you live in the city . ( I do n't know the name of them . ) My grandfather said that even though I prepared the guard for the strawbwrries , the birds take them as the strawberries grow red . As it 's reasunable priced and has good tasting food / tasty food . I had imagined a simple dining holl but the outside appearanc is quite beautiful and the inside also had a good atmosphere . The Attched picture was drawn by a fan . It is difficult to understrand . . . I think that his performance was almost perfect in spite of his weak team Zauber . Everbody in the circuit regarded him as special immediately . Today , I worte a journal ! And last , the main characer is loved by everyone . My boyfriend builded them as he checked the manual . My job is computer programming , in the field of * Embedded . Day by day , I write a little boaring programming and read manuals written in english explaining IC ( cpu , controllers , and so on ) usage . Only optimyzing programming that will more efficientry use the cpu or multi core cpu makes me happy . Lerning computer science without undarsting english is more difficult , but I hope to learn their higher level of technology . So , I unusually choosen another bus . The story gose back . . . If you will teach me , please becaome my friend . Tanke you for reading . So I 'm happy because the holydays are coming and I can get out evryday with my friends = D Going to my part - time jop , I took my wallet out of my bag to take the subway . There was my tomato juice bottle , and it had spilled bacause the cap was not exactly locked ! ! ! People might think starangely , someone wiped red riquied like bloode ! I smelled it while commuting to my part - time jop . It 's about how to learn English . I regret sometimes that I did not persist in doing dictation and writing exersices everyday . I try to use more complicated words to make more intresting articles , but , unfortunately , I find out that I do n't even know what to write in my own native language . I 've recently developed an interest in studying Japanese and Spanish , so I hope that I 'll be able to write some entires in those languages soon ! For instance , English has more claer structures than any other languages , which helaps Japanese people to learn more quickly and deeply . That 's beacause Japanese people have logical thinking . That is , Japanese people would be well matched for learnig English . Moreover , now English is being tought to children in schools , but if another language became the official language of Japan , we will have to teach it to children in elementary school . I want to be good at English , that 's why I register and write a dialy in English . Iwas tryingto fiding Icarly 's transcript . My team dropped from B - league to C - league last year , so our team 's top priority this year was to win all nine games and to win the relagation - deciding match . However , we have already lost two games . To qualify for the relagation - deciding match , our team has to be in first or second place in my league , so we ca n't lose tomorrow 's match . it has become a popular food nowday . Honestly , I 've been studing English for a longtime . Sometimes I watch American doramas on FOX to practice my listning skills in English . My favorite dorama is Ghost . I hope I can understand these TV programs naturaly in the future ! Seeing them made me want to buy one , even though I hadn n't intended to do so . So I arraived at the gymnasium at PM 8 : 20 . Mamy friends would be able to correct my diary entries , and I would be able to correct a Korean learner 's entry too ! I want to go to Ameirca , Britain , or Australia . It allows ordinary people to serve as judges in criminal cort trials . Under the system , six citizens are elected randomely to sit in criminal cases , such as murder , robbery and so on . The court will bigin summoning lay judges in July . I think as tha training keeps going , it 's getting harder . So , I think realy hard about the work that involves taking care of my doughters . I 'm happy when I see the my doughters smile . Also , you have to take off slippers and put on another pair of slippers when you enter tha bathroom , I found Japanese custum might not be understood by foreign peple . Then I took the No . 1 bus to Zhujiang Road . Your advertisement was relly interesting . The position has attracted my attention becasue I think that my qualifications will meet your requirements . I am a graduate of Dhonburi Ratchaphat University and I hold a bachelor 's degree in Public Atmistration . While studying at the university , I enjoyed learning new things and paticipating in all kind of activities , such as Public Administration and Low End Management and I am very well accupted amongst my friends and enjoy chalenging tasks . Please , correct all my mistaces . I feel lazy , do n't feel like eating breakfast , or doing yoga excersise , , , I have been playing table tenhis with my sister for six month . So , I 'll start working there next il Aplil . Minsa is very well known . This beautiful fabric can be found in gift shops throught Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the poeple , their families and the village . First , it disperses your body 's pressure more widly than conventional ones , so you can sleep well . By the way , When I watched the weather forecast , the weather reporter said the rainny season will start this weekend . Usually rainny days are very cool and clear , but the rainny season is very humid and gloomy So I hope the rainny season ends early . Do you like the rainny season ? My daugher is stronger than me . Yestoday it was repaired by one of my best friends and it is back to nomal now . My favarite food is chocolate . ( A HYDEST is a member of HYDE 's fan club . ) Today , our class lost in the basketball competition , but I think that not everthing in life is a competition . Class seven , ok ? Go for it . I recommend poteto - chips with chocolate as a present from Hokkaid . Of couas both man and woman . I started writting an English diary today . I hope this website ( ? ) made me increase the Engish and the Korean language skill ! It was `` Girls genelation `` ! They are soooo cute ! They sang `` Gee `` . Recentlly , I am into KOREA ! I would like to visit SHINOOKUBO . It is so powerfull place . I search information over the Internet about work ! lol I wanna go soon . . . . ! but , I need money ! so , I am going to work tommorow fo my goal ! This class is required ( or mendatory ? Either is fine ! I ca n't speak and listen to it properly , even thoug I 've studied for more than a year . My friend said his relative who is fifteen years old is going wrong resently . But these are very expencive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alchole is from double to triple the price of Japanese one . Additionally , the goverment manages them strongly and if they go bad once , it 's very difficult to recover their carrer . They can buy cigarettes and alchole , and also drugs . I 'm a lawyer . Today is a borring day so I 'm searching how to learn English and I found this site ! ! ! Please crrect these sentences ! ! It is very difficult but deliguhtful . Fortunately , I have n't had a trafic accident . we wateched a comic movie and drank I ate lanch with my colleagues . Recentlly on Sartuday and Sunday , I helped the preliminary games of the high school baseball tournament . In paticular , I activate the electronic scoreboad and keep the score ( scoring a strike , ball out , etc . ) . It 's very fun because I love baseball so much ! I think it 's because there were many chace to eat out . I am studying bussiness administration at a university . Currently that company does not have any foreign costomer , but will expand overseas in the near future . I was really jeolous . However , I love English so much , so I hope I can improve my englishi here . Tunami is commin It was raining this mornig . Yesterday , an eathquake occured off the coast of Chili . The seismic sea wave is comming to Japan . A seismic sea wave is called a tunami in Japan . The Japan Meteorological Agency says that the width of the tunami is about 1m along Tokyo bay . It is important to watch for the tunami , but it is a little difficult seeing the TV channel . My hobbies : Playin sports , watching movies , listening to music , playing the guitar , singing , and reading books . It surprized me a bit , but August 31 is the first day of the new school term for my older boy / son ! The Japanese dealects In th kitchen , there are two refrigerators , and they will be full of food . She was nominated for an Oscar , which is a big award that eveyone knows of . Actually , I practiced singing mirey songs in English before I came to the USA . For me , she is very out going and has so much confedence as a singer and as a movie actress . Unlike other beautil actresses , she is very naturall and shows who she is . She probablly dislikes being called Hannah Montanna in the Disney movie . This hotel is managed by a nice weman . She is about fifty years old and treated us as if we were her own daugters . May be a lier does n't realize that sooner or later his / her lie will be revealed . So I bought amond candy today . At first I was afraid becase I do n't have enough Bible knowlege . But I have paryed to the Lord that I wanted to serve otheres . I was crying , I completlty felt the love of the Lord . . And then , I thought I would like to go to the biggest book store in my prefucture , When I got on , one ajian guy got on at the same time . I noiticed it after he left and I thougth I should hand it to the station officer , but it was kind of weird because the purse was made of crocodile leather . For exmple , if an earthquake happens , what can they do ? I stayed up to prepare for the German test last night , so I was a litte sleepy all day . What I have learned from today 's lesson is that I have little vocabulary , so I dicided to do some paper work hard . For half a year , I have done nothing but listen to basic English conversations on my Ipod . - - - - - I think this sentense is wrong . I do n't know how to express it . I hope we join round 16 togather . We were flying the kite , but the wind was realy strong . I could n't hold it anymore . I do n't understand . There are four different plastic bottoles and a can of green tea . Yesterday , I had a dream in which a foreigner spoke to me in English and I responsed to him . I like to drinkng juce that I have made using a mixer . mixer . I often drink banana milk shake juce that I have made I drank an apple juice milkshake this mornig . Itis very hot . I want to write jounals in Japanese however my Japanese is not good enough yet . I cought a cold . Resently , I hardly eat any hot food . It is not huge but it has verious animals . Dozo yoroshikou onegaishimasu . But fortunely , one of my letative who is Bostonian invited me to join the X ' mas party ! ! I 'm not sure if amerian people celebrate or just enjoy . Anyway , I should preper to the party . One of them is in Harverd University . so , I 'm thinking of taking another school ( Harverd ) class . But I do n't want to miss the oppotunity to study hard `` English `` You see , they were almost naked except only Fundoshis - - Japanese traditional men 's underware . I do n't have my own , unfortunately . At that time , the Ministry of Education considered that learning English at primary school can cause the loss of Japanese language proficiency and deliciency of knowledge on other subjects . Now that we have gained prosperoty by exporting mechanics to foreign countries , we need to communicate with many English speaking people who are not only from America but also many other countries . My language excnage partner I met him nine years ago and we have been chatting through skype for sven years from Monday to Friday . I could talk with him almost everyhing about myself , like having trouble , complaning somening and being agry about something . He is a really good friend , not only as a language partner but when our priorities change a lot , we can creat time to study together . It is really difficlut for us to keep our motivetion high . I 'm sure they tast fantastic ! Altough was so chilly , I felt very good . Onother one of my friends is studying business management , but she is intersted in many fields , even art . I thought that art and business are unrealative . She is also intersted in social welfare and irregularites . Mayby we are n't allowed to barbecue there , so the someone in the neighborhood made a phone call to the fire station . My father looked happy becasue all of his children came and visited his wife 's grave together . Becides , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street restrant ^ ^ Because Tanzania is a pretty big country , the road coundition is not good , and the transportation condition is also not good , so we can not meet often after we left for our new post . I have been learning English [ since ] junior high school , sinior high school , and university , [ so that 's ] about 8 years . Nontheless , there are many buildings that have been here for several hundred years . We went to Nagano last week and stayed for two nights with our relatives living in a neiboring area . More exercises , more mistanks . . . In software business , English is most important language because almost majar software is created by USA . Technical documents are writen in english . I wonder wheter I will be able to pass a driving test . So I will pesent them orally this Spring . If you are reading my diary , please fix any incoract sentences . Korean companies appear to enhance their competitiveness in the global market by lurging qualified people worldwide to Korea , and Koreans who are willing to or are forced to live abroad support Korean companies outside Korea . and now I 'm so hugry . . . First , if we could n't find a job before guraduation So one of the most inportant things for Japanese students is to find a job duling your study . It is called `` Free iFrashcard `` . It is Kansai dealect . They have Tonkotu soupe and thin noodles . But since I 'm a doctor , I work at an emergency infomation center instead . To get more active and productive , I have started to make more of an effort to learn foreign languige , especilally English and janpanese . The reasion why I chose English is that it is such a common languige spoken all over the world and is necessary in this day and age . I will study more and more to inproving my language skill . I work for an electoronics company , in the legal department . Plese , teach me English . D was abcence , we would want a substitute who is also a native speaker , if possible . You might notbelieve this , but most Korean parents let their baby sleep in their bed even untill the baby becomes five or six years old . ( hope I did n't quote the name wrong ~ ) If this were the case , the whole sysytem would undergo a transformation with so much uncertainty and no one could foresee what 's going to happen . If you regard teaching as a platform or shelter for you because of the econmoic slowdown , you are looking in the wrong direction , you should not be a teacher . At 7 o ' clock I went to watch the match `` Arsenal VS Barscelona `` with my friends . Take myself for example . I started English from junior middle school and my cusion began to study it from elementary school . She spent 6 more years studying english than I did , _ hence her English is much better than mine . I still remember the time we spent the whole afternon havinga chat in the sunshine in my courtyard . I eventualy spent two and a half hour there . She taught me some Korian , her eyes were shining and she was full of energy , even though she was old . Hope our tirp will be safe and fun . What sould Mecanics is so compricated that takes me a very very long time . These are series about the four famous Chinese classics : Dream of the Red Chamber , Water Margin , Journey to the West , and Romance of the Three Kindoms . I have to go out from my small office right now to catch the last train , but temperature interfare with me . . . I had a very ordinarish day today Even though I did n't have enough instuctions , after a few days I remembered all the essential points of passing this test and became better at controlling the clutch , so the instructor let me to practice by myself on another car . Roshian Dinner There , on display , were some Matryoshka dolls in addition to a Rossian cook book and travel books . I ordered Rossiyan salad for the appetizer . At that time , there was an Itarian acquaintance of COO . He said , `` I let the patinting express my feelings `` I wanted to talk about Itarian art of the middle ages , but I felt like he would not be intersted in them . . . What 's the differesce between `` sort of `` and `` kind of `` ? Therfore I had to ride my motorcycle today . This temple attracts visitors all overe Japan . Even if it 's written in English , I feel like your comment is very familliar . People think in a similar way , even though they speak diffenrent languages , I think . So I woke up laghing ! ! They make noize late at night and live as though it were their own house . However , she is a classmate of K and she told me that she just has to be pacient against her will . I wanna contenew to draw pictures . When he was in his twenties , he achieved a alliance to revform Japan . They are my reratives ^ ^ I like chirdlen very much ^ ^ I had a goot time with little cute girls . I hav n't finish all of them yet : ( To manage the router I had to explore many new and interesting things , such as kernel making , establishing net rules with firewall ' ip _ iptables ' , traffic counting and many other things . I sent an email to a native English tecaher who works in a high school with my wife to get some adviceon reading English articles . ( I really do n't want to bother you and hate to ask you this , but it woud be a great honor to get some advice from you . ) I hope you can listen to the attached MP3 file , and tell me whatever you feel as a native speaker ( mainly in terms of overall correcntness and accuracy of pronunciation , intonation , accent ) . Ginpei is the cutiest baby I have ever seen . When pest viruse invade the human body , a macrophage eats it . Let 's go back in tim and pretend to witness what happened . As if he had been strck by lightning , in one glorious moment his life was permanently changed . Hiroshi was thinking about playing teniss after work . Next day his manajor asked him to do a lot of documents until the end of the week . So he could n't go to teniss . This year I bought them from UNICEF ; a lot of Sants are on it and each one looks happy . I heard that living with a homestay family is the most important for improving my English skill , so I need a homestay family who has enough time to talk to me a lot , and I want a harmonious homestay famlily who is very kind , caring , and thoughtful . I was going back to Tokyo form Izu on Sunday but I could n't do so because of tunami forecast caused by Chile 's earthquake . Nothing is impossile for people who have those 2 things . I have lived in Toronto since mid Octover . I think forign beer is stronger than Japanese beer . He is fluentry in Japanese and English . many English words are borrowed into Japanese , such as post , conviniece store , TV . I wato to be able to go sking . I want to protect my most important thimg . According to him Okocha is a proffesional football player 's name . He belongs an amateur futsal team . No one can understand me completely exept myself . This photo is of a lily of the valley that a neighborhood gave our family a few days ago . `` Nao `` is my Japaness name , but I 'm Taiwaness ! ! ! : ) Yeap . Nevertheless , some companies still take advantage of ( the ) Japanse ' English complex ' and advertise suspicious items . Although , I was quite sure he did something really bad , it was a revenge to anthor classmate . It was the first seminar and we talked about the purpot of life . It is for fthe benefit of nature . It is a abreviation for Test of English for International Communication . It consist of 200 multiple - choice questions diveided into reading part Some universities adopt it as a requirment for admmision and credits according to TOEICscore . they only forcus on reading and listening . Shaking hands are very formal , we only use it before an interview , or if we meet someome we do n't know . Reasnable and healty lunch makes me rush to Subway . Are dramas broadcasted your countries ? My senier . I do n't like one senier ( student ) in my lab . - > suggestion Recently , one of my friends told me that he had a plan to go abroad to studyng English . It was a nice restaulant with pictures of Hawaii . I finaly got my computer in good working condition . I 'm sorry about late replies to messeage . I went to Korea town in Shin - Okubo , Tokyo with my firends yesterday . Although , before that I would like to go to South Korea , becouse South Korea is quite close to Japan and would only take 3 hour by plane . I went out of the classroom becouse I was irritated . It was like a real sean . So the preparetion has been hard for us for about one month . But I coud n't . I 'm lokking forward to starting our new life . My work has quitely changed for various reasons . I was abel to have many challenging oppotunities . Sometimes I feel disconfortable in my situation . Anyway , the last Exam is the database coures and that is the biggest / / most serious problem for me . . . . . . In those days , I felt that people divided themselves into knowers and not - knowers / non - nots or haves and have - nots . Lately , the very popular girl group `` AKB48 `` is famouse for dressing in school uniforms , in Japan . For that reason , the educational department started to renew textbooks for elementaly schools . about Japanese education getting back to its old days of lerning , which focuses on more lerning by heart than lerning by activity . Anyway , I think this renewal will be effective in elementaryshool schools They wil release their single CD and an original album . I have a 3 year - old doughter . I 'm tring to have free time in the morning . We are influenced by everything which we are surrouded , but we hardly notice them . I know the lyrics are controvertial but I liked the music as soon as I heard it . I 'm lerning English . So I still do n't know a thing or two abt it . My temporaly office in London . It 's so nerous . I am very nerous right now . I have prepared it for four mounths . Thinking of myself and Kowing myself well . Today I thought about myself . I thought about my character , habbits , dreams , acheivements and failures . regarded myself as a very passionate person who make objectives to achieve and execute them deligently . Mom , Dad and Grandma went to Ping - tong to join a wedding . I missed thier phone calls eight times because I was studying in the cram school and did n't feel the vibrations of my cell phone . . . When I found the message from Mom , I called them back . I gussed they gave up trying to find me and went home , but I was wrong . I felt so sorry that I missed the calls and I felt Mom and Dad 's love for me , Could you imagine ? - - - sometimes the temperture is 22 celsius but on the other hand , sometimes it 's 12 celsius like today . I can stand it raining and suddenly turning sunny for only hal a day , but my body ca n't adjust to the gap in the temperture . . . . . . Today , my homework is to write the eassy `` Problem of Combining Work and College `` and I have been thingking about how to accomplish it . I have a qustion . It was the first time that I got a strong perm in my hair , so I am very sastisfied with my Air Wave . I wonder why white small food ( rice ) can make verious food . Do you know a food which makes verious foods ? I to stand in the subwey for an hour before coming home . But it is intense inpact . I still hate it with a burning pasion but I decided that I ca n't burn it if I have n't read it first but I have to be honest with you . . . The reason for the 28th of Feburually As you know , the last day of Februally is the 28th . The king said to one of his sarvants : `` But a year has a maximun of 365 days , so if you wanna add a day to August , you have to take a day from somewhere else . if we take a day from Janually ? `` Janually is an auspicious manth . I ca n't allaw you to take it from Janually . `` to take it from Feburually ? `` `` undoubtly . `` I was tought this . But I do n't know why Februally originally has 29 days . . . because I often forgetten them . ^ ^ wahahaha ^ ^ For example , when he or she wants to write about metaphors , he or she will write something like `` The mechanisms of metaphorical thought are present in our most common concepts : time , events , causiation , and so on . . . I had made new frieds My hostfamily family had BBQ too . I think China is a good and kind cuntry , so I like Shanghai more and more every time . I 'm working on translating the confidencial agreement from English to Japanese . Maybe I 'll buy the nex generation . Hence , students completely depend on tutorials and unfortantely they forget about their lectures due to focusing only on the classroom tutorial . First of all , tutorials are cosidered a awaste of time and money . Having mentioned the disadvatages of tutorials , I should also mention the advantages . First of all , tutorials cancel the distance between the teachers and the students and as a result of that students can ask freely with out being afraid . From my point of view , this is a very important thing for every studentThey . They also stress information that students need . To sum up , if we make a list of what is written befor , we will see that the disadvantages of these tutorials outweigh the advantages . So students should attend their classes regularly and follow their teacher 's instructions instead of tutorials which waste time and money . I 'm planing to eat many traditional Chinese foods , such as Peking duck and dumplings , as well as wark around the Great Wall of China . What I 'm looking forward to doing the most , is making new frineds . A busy season has just strarted . Spring break started yeasterday , so I came to Boston becasue my roommate is from Boston . I am at his house now . Today , We went to the city and tried a Japanese restraunt , but I did n't think it was very good , haha . Today I heard the word `` marvellos `` . I did ' nt know the word `` marvellos `` . But Japanese peaple who have been living there for a long time are quite crazy . All children have a dreame or dreams But I think a lot of students of college do n't have dreame anymore . Learm how to pursue , how to love , and how to live . I bougt some English movies : I do n't know what I sholud do . I want to ask , if someone knows , how to meake learning more effective . And I want to speak like a native speaker , so how can I get more expirence ? I felt local people 's Englsh was much better than ours . He is very famous for not only being an artist but aloso a professional My part - time job is to mark my students ' homework and theach them math , Japanese and so on . It has a qwerty keabord like blackberry 's phone and you can type very fast like pc , also the OS is multitasking , so you can change the applications while they are running ! I dind n't remember to charge it the night before ! ! That was orrible ! Many young Japanese have a weekness for brand names . In the future , I 'll write about why I go to school on the weekand . I usually go to study at the yoyogi zeminal in HAKATA . During holiday , I eat lunch near the yoyogi zeminal . Some free school students are phisically challenged , and some of them suffer from depression . The free school where I did volunteer work is similar to ordinally schools . Actually , free schools are one of the nonprofit organizations , so they 're in finantial difficulties . Probably , that pictuer made me what I am . Various topics are shown up one after another : `` I have a dream `` speech by King , The Beatles ' first appearance on TV , Barak Obama , 911 , etc . One of them says `` we are not talking about Tom and Jerry `` , just after she answered , `` Barak Obama 's speech `` in a serious face that does n't match her age . I enjoy lerning it . As my favorite contry is Hawaii , my dream is to live in Hawaii . They have to learn too many sujects , such as English , math , physics , chemistry , biology and so on . I have no idear . I 'll try to uplode photos of these . we did stop to cheer for our teamates at the last lap . I believe my dream will come ture . I think I will be on a working holiday in New Zeland . Althogh it was the first time in a long time since we had graduated from school , we enjoyed convasation and time went by quickly . But now I think it is more iimportant to develop friendships through the memory of shared experiences instead of only studying so hard . But I just now realized that I am doing a presentation tommorow . Famaly Party Enternational exchange is very difficult because there are many cultures and religions . I thinkt that 's enough . Todat 's dinner is Thai curry . Perhaps they all have been actioned off or became someone 's pillow . In April , I have a lot of things to get done after personnel reshffuls for a new quarter . Gion Festivall When we heard the fact that he took part in the movie as a hero , we were supprising . So I took an aspirin to write this jurnal . This is the second chanllage for me . Tomorrow is Saterday ! ! My hobbies are listening to music , piaying table tennis , and surfing the Internet . In the future , I will write more articles about my life . I welcom anyone who wishes to refine my entries ! I 'm Noi . I live in Bangkok . I 'm an admistrator and operator . At the moment I get up early every day to go to the company . The company opens at 8 . 30 am . I am happy to day I can spend time checking my e - mails and reading English books and writing English too . Tomorrow I must to arrang documents for the employees in my company I must read books befor I sleep today . Have a good day ! I If you would like to stady Thai , I will help you . In Japan , some people need a sense of humor theirco - worker . After watching it , I bacame positive , and I think it is important not to be afraid of anything . Hallo everyone ! Well , I have n't a crear dream in the future now . And it is so difficult to serch music progrum in Tokyo . I want to listen to some high quarity music progrum in Tokyo . Her director recommaned her to quit because he thought her work was not important and others could do that instead of her . He seems to see what he wants to ; like being late often or not asking vendors seriouly what he wants . When the police pulled me ove , he told me that I was flagrantly disobeying the rule , and he gave me a one - hundred - dollar speeding ticket . I sat down and ponde how I could make it through all those things when I suddenlly I heard the announcemet on the speaker for all employees to gather together inside the confrence room . He had to cut down the numpers of employees , and I was the third name he called . I completely forgot that I had missed three classes in a row , but the college 's rule is that if this happens , you 're automaticly out . Finally , there was a massive desaster at home . I could not belived it when I saw that my whole kitchen was flooded . However , I still belived I could rebuild my life and presevere in my goals for my future . My heart keeps racing , and I can not belive what a crazy day this has been . We ate super delicious seafood with mojito for luch in Key West ! This is the MOST souht point in the U . S . I storongly reccomend you that visit Key West if you have the chance ! Time goes by like this withot relation to the situation of the world and the hearts of people . There are a lot of opinins about a mood of self - control . First , this is a presnt from my customer who went to Ezipt last year . This is a calendar made by pupls , a little piramid , a bookmark and a sweets like a dry fruits . She had been to there befre the protests and I 'm so glad no harm was done . Ezipt is one of the countries where I want to go . But this did n't happend and I heard on that radio that during the match some Lazio fans rejoiced for Inter players ' goals ! ! ! ! ! I have been slack off and goof off to keep a dialy . First , I have a few English vocablaries and in addition my grammer is teriible . So , I should have kept a dialy every day . Before long , Do I use to keep a dialy ? In college , I seldom spend time studing English and read magazing or listen to the radio . Rehab means rehalibitation . There are many beutiful beaches in my town . Several musicians were there on the stage , and the sound was full of euphorigenic . Other staff members were working untill 2 AM everyday . I went to the amusement park with my friend yesteday . I strech and bend my limbs slowly while taking deep breaths . She has been in hospital for more than two months to avoid early deliverly . I have a boy friend who is younger than me . He is 6 years old yanger than me . I was in love with him a lot at the beginning of 3 months , but now I 'm confused as to whether I love him or not ? I do n't know how to talk about this with him because he ofer gets angry ( that 's anoter reason I ca n't stand him [ / RED ] ) I worry that if I talk about this with him , he would not talk with me for a while . . . . Many customers say our prices are higher than other supllier . The wood consturction of the sofa is very sturdy . Fisrt , I boiled the noodles . It 's belicious and reasonable ! Today , I sp spoke to an old friend for a long time on a sellular phone . ( cell phone ) I registered with Lange - 8 because I want to make friends and do business in English . Recentely , I have had a problem with my neck after I hurt it 2 weeks ago . My frist time `` Lang - 8 `` Hello : > This is my frist time writing a diary entry in `` Lang - 8 `` . The outcome is impotant but tle time we are engaged is meanless . Jun asked me to play tenis this morning . I made my hasband got up at 7 . I asked them to buy some food for lunch befor they go to school or office . My hasband was worried . Becouse they wanted to buy food first in the convinience store . I 'm thinking of studying English vocaburary and reading but I do n't have enough time to concentrate on those things . my wif comes home today ! yesterday , she wahed all the dirty clothes and sheets . I hope I can leran english well . High salary , parmanet employment and state . . . Also , if he does not know the rules of the bus , the Japanese man shuold not get angry with him butexplain the Japanese way . I can imagine it is not easy , however , it is the best way to understand both cultures throughtout the trip . I have an apartment with three suites for sigle . It is very usuful so it will be easy to write English diaries on the train . I registerd on Lang - 8 In my view , I do n't have much opportuntity to use english . I will try to write a personal daiary every day . I 'm really disapointed with myself . . . . Moreover , our wedding ceremony is comming in a month ! gambare jibun ! About 2 years ago I went to Koh Sri Chang every month because my friend was doing reserch there on snails . In this story , the main character Pip suddenly has a chance to recieve the great expectation by someone . In the next part he stays in . a ginants - inhabited island Bussiness conditions have been bad for the last year , and the high yen will have a bad effect export companies . So I dicided to borrow a book , Forrest Gump . I knew Forrest Gump but , I do n't know it in detaily . Recently everyone is upset in our Research Institude , because of the personnel changes . I think maybe I will change my job if the new Research institude is not good for me , but now I am just waiting . I love this sentense the best : I was fastinated . . . She recommanded this site , showing me her sevral world - wide friends . How habe you been ? Now , I am in Goald Coast in Australia . I worrry about meeting my foreigner friend . Now and then I think that I have to try to studing English more . This is the third time I have celebrated with my friends , whom I have known from high scool for almost five years . In that event we could eat a famous cook 's food for only five hundred - yen which we can not normally eat at such a low price , and heard the special talk show about enviroment . He is very famous not only in Japan , but also in the world as a famous yachet sailor . Yes , it is true under the policy of `` one coutry two systems `` . I want to become a translater , especially for movies . ' It will be such hard wrok because words that translater can use in a line are specified by rules of translation . I do n't know how long it will take , but I want to become translater . Because there are some places where many peple were killed by tsunamis in northern Japan . We took part in a Halloween parede in West Hollywood and took comunicate with Americans smoothly . These girls have different nationalities such as Chiness , American and Korean . What do you think you should do so that people think you 're profesional ? However , the number of selfish parents has been increasing recenty , I think . The thought that someone will fix my mistakes and incorrect grammer makes me so excited . In order to make my English easer to understand , my teacher wants me to use a higher tone of voice . 4 ) I had no girlfriends before I konw you . but you have had two boy friends , Austraria , China , India , and Sudan . I endjoied communicating with them . to be continude in `` Introduce myself ( 2 ) `` Well , I 'm going to buy some ingreadient for our lunch after this . In this country , foreigners ca n't buy flats except for condoiniums which are super expensive . But there are many foreingers in Singapore ; accordeing to some websites , 45 % of people in Singapore are foreingers . It means , normal Singaporeans who own flats can easily get extra incomes from foreingers . In Japan foreingers still can rent rooms from real estate companies . It 's defenitely because many people want to live in Singapore the rest of their lives . As you know , an earthequake happened in Japan . But , I happened to watche NHKTV `` professional `` on Feb 28th . I ca n't undersand the difference ; ( . So , I fall asleep in lexures . ( Eating out is a littele expensive for me . I probably wo n't spend much money this month so I thougut that I should treat myself . At first glance , there is a vivid landscape with a small shed on the beach , securely covered up in the cove , with towering hills in the backgroung . My 1st diarly ! Every moning when I opened my eyes , I would have messages from him on my cell phone . I have a lonly telephone . Furthermore , Recently my assaingments have been getting more difficult , and they require a higher level of English . I really appriciate your support . and then I got up to make a snandwich with tuna and cheese for my son befor he went to school . I know that English is supose to mean people from England . Is this correcte ? My mom , my cousin and I went to the supermarket . We bought a lot of toiletries , like soaps , shampoons and so on . I 've decided to keep writing in this jounal everyday before . To learn a lunguage it needs patience and motivation and opportuinities to use it . First , he descrive wery well the image of human who is not perfect . Though , according to the magazine , some stories are recognized that the main casts of his novels overcome nature , the wins are not always imcomplete . For these reasons , I think that he is a great author who descrive human 's imperfections . He is Chu , He was creatived by me , He can fly whereever as supermouse . It has history of approximetely 400 years . First , we learned how to do a breath meathod . The meathod made me feel easy . My first yoga became a recration . I hate to get my cell phone wet , because I purchaced an expemsive one last year . where one can observe the beautiful staras . and besides , it was at midnigit . We tend to reagard symmetry as beautiful . You could n't find any differnces when you look at it . Yes , it has no anatomical differnce between the left hemisphere and the right one . There is a hint for this question in a clinical sympton of patients who have brain damage in the right hemisphere . This sympton is called hemispatial neglect . Patients who have brain damage in the left hemisphere do n't have this sympton . But they might be canceld . If you see any sentance that can be better , please tell me . They were supposed to start running a corn farm there , but since they were still in Singapoer , they did not even bother to check the land in person . But unfortunatelly there were many CHEEKY MONKIES in that area . Every month those monkies would eat only mature / ripe coconuts there . Her husband tried to ask hunters to kill those monkies , but killing that species was illegal . My colleague who told me this story stopped taliking , because nobody knew the rest of this story any more . They should have considered thier plan carefully . For example , moodle , squid , shelfish or mushroom . I wanted some convresation with my wife . However , I was lucky today . I thought it was Wednesday so I still have one more day to attend classes . But today is Thusday . I had a vaccination against the flu today so I wo n't catch flu when I take the entrance exams for univercity . I actuallu like having an injection , but it hurt more than any I 've ever taken . I have to have it again next month . . . My English is so poor , I hope sombody can help me to improve my English level . it 's so hot in my contry ! ! it was diffcult when I fiest started to drive . Seventhly , put it in the plastic bag for 1 ~ 2hours ( summer time ) . Eighthly , spread it and you should be about 2mm thick using a pole . Ninethly , cut it about 3mm width . It does n't have any taste so please use udon saurce . Also , I want to know what part of Japanese grammer I should introduce in first when I teach survival - level Japanese to my friends from foreign countries . OR foreign friends . Because of shows like Lost , CSI , Prison Break , I started to notice : TV darma is in the US , too . However , learning Enlish is my important work and I will keep on . My friend introduce me to this web to inprove my english . It is my friend Se - hee 's birtyday in two days . I wondered what to do because I ca n't decide our topic without thier ideas and pwemissions . I was so dissapointed at their irresponsibility . At tha age , a woman thinks about the `` life of a woman `` or `` work of a woman `` . in Japan . It 's means that `` She chooses a famili ( getting married ) rather than her dream . Of cource he knows ^ ^ ) Because it has a little bit poison in its oragan and eyes , so if people eat them without treating them correctly , people can die . I have not eaten sasimi since I 've got to Australia , She gave me it with a little hasitation . He got married , too and bought a new refrigeator for his wife . But , if I were a short - sleeper , I would have enough time to do something early in the moning . Today I went to a Ykitori restaurant with my family . Yakitori is like grilled chitken , skewerd on a bamboo stick and Also , we can choose any part of the chitken we would like to eat . After the big earthquack , it 's very hard to get gasoline , even in areas around Tokyo . I ran to some gas stations near my house to verifing the conditions of the gas stations . Some gas stations are closed , but other gas statio are open . Do people living near Tokyo really need gasline ? We can go anyware by train around Tokyo . However , there is a beer - like alchoal . I like beers all aroun the world , such as Guiness , Budwiser , Coors , Chintao , Singha , Heineken , and so on ! I prepared two batches of cookie dough , chocolate and vanila . I was very surprised that there are old bulidings on the side of the road . For a short time driving , I can see the tall bulidings . I give up easily , but I want to continu to write it . I can gurantee there are no Japanese young people who don know this song It 's my first post here so let 's considere it to be kind of a test . I just hummimed the songs . Unfortunateky , I could n't pass this time . ( + _ + ) What is the question that was hidden iin the `` Mona Lisa `` and `` The Last Supper `` ? Malaysia is one of the most famous countries which has achieved a major renaissane in a very short time . Mahateer Mohamed was the prime minister for the tewnty years in which this change in their country occurred . He didn n't give the people money or land . He just believed in them and in their power to build the country once again . ( this is the last sentense of yesterday 's diary ) I read just a few peges , but it is very interesting ! The meaning of a short sentence is too dificult for me to comprehend . . . . . . . The cucomber I ate had a weird taste but I was too lazy to get another one from the kitchen . Japnanese Grammar For those who have a hard time with learning Japnaese Grammar This is good for learners of Jpanese grammar . I was wrong . I need to study hard and practise English everytime chance I can . I have been persuaing this girl for almot half a year . My recent waorries are the heat in Japan and my backache . . . . . . Hello , freiends . One of my friednd told me about this site . shocked and determinded to study English again . Yesteerday with my friends Hello everyboday ! I really do n't like to ues one . Jananese people often take the outside to eat . Hallo , my english . He looked embrarrassed because I have n't gotten angry before . Someone kill human just habitually , can you accpt this ? I 've just thought that unilaterlly . ( Actually , I was stearing at him during the party . I eat low fat foods , konnnyaku mashrooms , and so on . Today is Saterday . I do not go to the comepany tomorrow because it 's Sunday , so I feel happy . I have a new emproyee to interview for a job . I 'll smooth the wather for her before my boss interviews her . I would like to conneck to the internet at my house . They said that they will give me a new number for me to conneck to the internet at my house . They will be come by to service and conneck the internet about 7 days after I called them . Thank for you teaching me engish . Because a sandwich is portable , especially because my daughter is a nightperson person who tends to oversleep , and sometimes has no time for breakfast , is important . I hane just registered for the TOEFL test now . Historically , the Japanese way of English education has consentrated on reading and grammer . 2 ) The Faculty of Civil Law and Free Enterpise The graduates work as officals in central and executive bodies of power . Some graduets later become judes , prosecutorrs , and advocates . All necessary facilities are available to students for high - level comprensive training . The person thought to himself , `` He 's ver stingy . so animation songs have been developping inversely . It 's a sereous problem in Japan . So I want to coperate with a demostic FD food manufacturer and sell FD products to foreign countries via ( through ) my English website . If any one have interests in this kind of bussiness , you can contact me . Tonight I am really missing my family and friends who live in my coutry . Tomorrow moring I am going to school I wonder how the auther was able to so realistically describe the thoughts and actions of the boy ? What 's the Pirete English ? When I was trying to chenge the language from Japanese to English in Facebook , I found some `` English `` es there . What I saw on the screen was really unfamilier English for me . I was stuck at home the whole tim , watched too many episodes of the sitcom Friends ; nearly 10 . I want to write about Chandler and Pheobe , but I do n't remember anything about them . Next month I 'm going to go to the Phillipines to study English for a week using my vacation time . The phillipines is one of the English - spoken countries , and many Korean college students go there to study English . I 've never been to the Phillipines and am looking forward to going there . ( Simplely ) mmmm . . Listen and wirte down Now , I listen and wirte down for at least thirty minutes everyday He adviced me some advice . It 's about a male fright attendant snapping at a passesnger . In Japan , customers always come first , we have to treat custmers like a god , so that kind of thing ca n't happen . But I 'm sure many people are atressed out and really want to do that , so I also think he is a hero ! ! youture . Ufortunately , my team has been very bad the last five years . The players did n't practice very hard and they were defeated several times . Now I am very upset because my team has been recently defeated again , but whataver happens I will not give up my dream that this team will make a comeback . I guess it 's because she has n't had many oppotunity to talk with Japanese people before . I should get familiar with the way naitive speakers talk . . . Other members did n't want to become seafood but nobady stopped him . So we played softball in disguisedly . I could not repond to most of the questions . How did you learn writing Enghrish ? It 's dificourt for me to spell . My favorite schooi event is the sports festival Both imventions are a kind of instrument to measure the same thing . last night I called my mom and siad `` I would like to study English more by staying in Austrailia mom `` I will try anything to impoving English and my self worth ! ! Children could make experimentations . I have to decide what to do . Either get a job or advance to doctor cource . Unless they came here , they must wanna get to speak English fruently . But I sometimes speak Japanese when I hang out with Japanese friends although I critisize other Japanese students . Ylikes , vcroome told me that word yesterday . I think that word is wonderful haha . This is the first time I 've come here . I hope I will meet more friends frome here . Then I can inmprove my english . Some people told me they host the parade every everyear . Reguler customer , `` Yagyu . `` Most sushi shops have reguler customers who come often . Yagyu is one of our reguler customers , but he is special to `` Sushimasa . `` Yagyu let other reguler customers eat foods and drink alcohol free . Their musik is really ( I have no words to express my attitude ) great . Since then , he has n't liked to drink and thought that it is a vice to drink alchol . When I told him that I do n't want to use a taxtbook , he did it . Because of I have had trouble with my older doughter . And I must mention the terrible traffic , Bangkok 's traffic has the worst transportation system I konw . The traffic situation is much better in the other cities . The other cities are queit and beautiful . The interval time was shorter than useual , so I was really tired . Hello , my wonderful friend , how have you been today ? I just relize that I have not written an entry in my journal for more then 10 days . I saw this on my calendar . Time is useful and life is beautiful ; someone told me that and I beleaved it . But life is difficault , exciting , and interesting too . ( `` NABE `` is a Japanese quisine . What shoud I say in a situation like this ? * I 'd like you to correct weird or unsuitable senteces and give me some sample sentences useful for my pupose , if you do n't mind ! Throuing things and goods away We went to a Vietnamese restraunt . taday I 'll write my thesis proposal , the deadline is the 9th of this month . So I can apply for a Shanghai account next year when I graguate . Although the weather was hot , I feld merry . So , countrary to this change , I should not admit adulthood until beingover 22 ( the age in wich many people graduate college ) Anyways , I returned my dormitary . But Something happend . Because one of my French friend said that she will go back to Frence soon , so she asked me if I can take a leave and go to Taipei with her . After I filed a leave , then she told me that she need to go back to Frence immediately . The oceam world is filled with vitality . I 'll decolate a tanzaku and make a wish . Today there is a typhoo . So , I decided to study English , after treavel . For example , almost all the railway tracks were laid , except near the Fukushima newclear power plant , and the highway in Tohoku is finished . The one is the Fukushima newclear power plant . The reason is that the company who own it do n't give information to the public immediately , or accuacy . The other one is that people are reducing their spending , by not having a cherry blossam party , eating at restaurants or going on a trip . Many cherry blossams are in bloom now . Goodby . I wanted to buy whatever he wanted to eat , but he kept saying that he had no appetit , and had an upset stomach . Now is the era of the grobal economy . Also , child 's nerves are very weak , so the effection would be worse for children . Hi Everyoen ! Anyway , when I found out that the airplan tickets were not available to go there , I was gaving up the idea of spending Christmas in a more special way . I was invited to his relative house for dinner on Christmasday eve day . Acutally , I still do n't know his hometown city . The four players play diverse roles in the competition , and how they fulfill their position has a significant impact on the result . It depicts the coflict and growth of a Korean boy living in Japan , a role performed by Yousuke Kuboduka . I am Ireally happy and sad . Was my English strenge ? I found out the cheepest bar for them , What is the defference between `` I am looking forward to `` and `` I look forword to `` ? Meiji university , which is one of the best and most famous private universities in Japan , announced that it is planning to build the `` Tokyo International Manga Library `` in thier premises . According to their spokesperson , it is expected to be the world 's biggest library as the storage of Manga , it will have approximately 2 million items related to Manga , Anime and video games which are copies of Mnga , cellloid pitures of Anime and Charactor goods of Video games etc . One of my co - workers send me an e - mail from his mobile phone to mine last thirsday night . I want to travel somewherer but saddly I do n't have much money now . . . . . . I 'm planninng to visit my grandmother 's house with my mother and my sister 's family . My sister have 1 year old baby , so my granma must be looking forward to meet her great - grandchild . I 'm looking forward to meet my granma and my nephew too . It smells good in the shop when I go there in the morning and I love flowers , so I feel good just looking , tuch and having flowers around me . Today , a small pizza shop called `` PizzaShool `` opened near our apartement . But I realized that I could n't speak English , when I spoke to tourists from forign countries . But when the cool breeze of early autumn comes , I am determined to travel alone to unkown places which I have never been to . I will talk to people who live in the area so that I can know what they have experiance in their lives . I 'm going to go skiing Yatsugatake with my family , my daugnter 's friends and their family . I went to my local hostpital for a medical checkup . There is a lot of informetion about Malta . But I 'm trying to find inportant informetion . ? ? Because I 'm goin to stay with a family . Civil service entrance test is a test that if you pass it would allow you to work with the government and it could let you have a lot of benifits , for example , you do have to worry about lossing your job . Although , I am a little bit upsad , life goes on . And now , I have to watch the `` The Inconvient truth `` again , because I have to pass my mid - term exam ! I have some foreign friends , expecially from the USA . Her American jokes make feel happy and I think there is a defference between American jokes and Japanese jokes . I have to take two tests , English and my majour , Phychology . but recently I do n't know what happend to my laptop . I do n't have much money , Becouse I am just a student , and my parents live in Korea . We slept in our car , somethink like a van , so we have comfort so we were comfortable , . We only ate sandwiches for two weeks . We visited almost every city in Holand , the most beautifful was Amsterdam , now we have much experience , in the future I would like to travel more . I 'm waiting for corects ; - ) After that , I dried my car by using a drying mashine . This is a tomato staw with pig 's gut and a lot of vegetables . But when I became junior , I was changed by becoming class president and working by interacting with many friends , seniors , juniors , teachers and started to combine activities along with challengig character . My dillegent parents who got up early in the morning had a big effect on me and it made me become more dillegent and have more integrity . On top of that , just after WW2 , most Japanese infrustructures were already destroied completely by air raids . The cities we can see now are not that important . That is just the sarface of mankind . Even if Sendai city was destroied , as long as people who can design and plan cities exist , Japan will be able to recover ( from ) these damages again and again . Nobody can revive dead people , but at least they will be able to recunstruct a city that is stronger against tidal waves than before , right ? Hello my friends . I 'm happy becuse I 'm now writing my second post on this lovely website . I would also like to thank everyone who has corrected my last journal entry . I am so exciting these days because I am back in college again but this time for clinical stage and our lectures are not boring any more becuse its more paractical and alot of real patients there are no studing in community hospital with alot of new ppl from other medical studing in the psychiatric department there are alot of wierd peaple but I think it is soo exciting because itz hard to find every case in any of the huge textbooks you must think very deeply . However , in reality I do n't have my `` DREAM `` bacause I do n't know It has somthing to do with with my mental problem . But , my main purpuse is to talk with my friends . Finally , 10 friends in all gatered , and then we all left together . I also had a can of beer , because it helps me fall alseep . Today , I helped a friend work from 5 PM unitl 8 AM this morning . I tried to smoke today . just a mintute . I just wanted to konw if it was real or fake . In my corntry , you can easily buy ' fake ' things . I took a pictrue of my favorite brand of cigarettes . ( I do n't smoke now . ) Regardless of that , one of the recent reosons why traffic accidents occur is through . . In addition , since it 's next to impossible for pedestrians to judge the situation of a driver , they are often inbolved in unexpected traffic accidents . It gives me power and courage to overcome advesity . I know that I can cout on my friend when I have a problem , and she can count on me . If friendship was n't in my life I would feel unhapy and alone . I ca n't let myself out whitout using Japanese . . They were `` run out of `` , `` put off `` , `` put up wih `` and `` put up `` but I do n't know meaning of these idioms so I could n't construct the sentences . Yesteday we had a hanami patry , which means cherry blossom viewing party in Japanese . Most partisipants of the party work everyday during the week so want to sleep at weekend . I defensed myself like this , It seemded I failed to convince them We shraed the only blanket and drank whisky much to endur the cold . Around us , there were cherry blossom trees in full bloom and the moon lit thier petals . By the way , when the time to start the paryt had come , I had a terriable toothache last week and went to see doctor on Thursday . But tommorrow is horiday . Last Sunday , I had a cello residental training session in Kita - kyushu city . The only bad thing was , that in this season ( very hot summer ) , although we stayed near the beach , we had no time to swin in the sea in front of our hotel because of our very long training from morning until around midnight . We knew that we had a concert to show our training results , and I had no time to practise my weaker songs because I had to teach my colleages about their weaker songs . After we finished the schedule , for the final 3 days , we could swin at last . The small chellists ( 4 ~ 10 years old ) were so excited that they ran and jumped into the sea at the fastest speed you 've ever seen . : ) I hope that the next residental training will come soon . . . Holle everyone time , but it is still very poor , so I just found this way tp hlep me to learn but after fabuary , maybe l 'll live with my father . We often hear that foreign people who are living in Japan , are suprised with the Japanese train system . Everyone tells me that I can have plastic surgery later or I might become pretty when I become a univerisity student . What 's worng Before I come here , I was determin and promissed my friends to do my best ! It means that I should be confident my English if many people correct me because at least my sentense makes sense . This website is very useful for me bacause I am look ing for the opportunity to improve my English . I am a university student in the UK and I study accountacy ing . Moreover , I have only two weeks to preapre for it ! ! I had heard this morning that the Fukushima plant 's adcident would be estimated as the level seven , which is `` the major problem `` and this is the worst situation could be . Today , I got a phone call from my family , bceause New zaland had a bigger erathquake . It can help me preprarration for my class . . What do you think about Reilgion and God . . I was born in Christy home . . why I was a Chrstion before . . My family members made me think in this reision . . Invited to a Bithday party iN AUS It was my singpole freind 's . that is why I cooked Korean food which contained tofu , pork , zunichi , onion , chilly , lots of chilly paste and powder , soy source , sugar and etc . . . . . There were singapolian , korean , chinese and hong kong ? Have you ever eaten Chiken Ramen ? Intorduce myself Whan I was in kindergarten , I learned ballet . I also have gone to Rainbow Brige , Asakusa , Fuji mountion . I ca n't wait for the 2nd half of the movie which will be roadshowed next summer . I have so many assgnments lately . I am male , but I too have a dream to fly to all over the worid as part of the cabin crew ! ! I am look forward tobecoming good freind . How about watching a drama like `` Friends `` , or someting like that ? We are waitiing for the plane now . I am really looking fowerd to it ! ! I was very exicted about the after party on the boat . Next movie was `` Batman `` , that was directed by Tim Berton . I hoped that they could give me some magzines to kill the time for a night . To implove my English skill , I decided to keep journals . I ca n't play soccor but I 'm happy they won . Especially the Tohoku region [ Miyagi , Fukushima and Iwate ] was more dagaged by it . Today , I called apple suport center . I had an appple cara ( insurance ) policy . If I did n't carry insurance then I would have had to paya lot of money . second to call this person and ask him why he did this and try to easily forget what he did > but I think it is going to be so difficult because I think he has to do this and I am sure I did not make that big thig . . . . Electric power reducetion request of 10 % . I went to the librally to study English . I often use the city libraly when I feel ( distracted ? ) . Have a good weekend , everone ! HaHa , Today was my lucky luckyday . It has a rule which all players must not explane . My neme is Shogo , and I belong to Hiroshima univercity . I 'm good at creating new plans or unipue ideas . At noon , I went to a resturent for lunch with my friend , Sherry , and found a middle - aged man looking at us . After finishing our meal , we went to ride our bikes and simulately , the man came to us and smiled . Today 's dinner was pizza , made by steave . It was yammy : ) Today , I 'm starting to write my dairy on thie web page . During my days at school , my part time job was teaching Japasene . I feel really relieved now due to the fact that today 's work ran smoothly although we had some trouble with the destibution company . Now that I finished preparing the shippment , I feel a load has been lifted off my shoulders . In fact , therer is a staff canteen in our office building , but I have had lunch there for years and I have been bored by every single dish there . weil es vielen Gegenden gibt , wo es selten regnet und wo Leute immer an Wassermangel leiden . because they are so populer in Japan . quality , art , charactors ' motion picture . And I could drink Tim Hoton ( I do n't know the spelling ) 's iced cappuccino ! ! ! ! ! ! ! Becuse I could n't have imagined that Some smou wrestlers bet a lot of money on the Japanese professional baseball games . Because smou wrestling is the Japanese national sport , t the wrestlers who have been gambling should not be forgiven . Actually , I 'm not a big fan of smou wrestling but as it is the Japanese national sport and also a Japanese tradition , smou wrestling should be clean . I want so badly for my writing avility to be improved . But onedays daymy mother watched a moive , and found he was older than he was before and a little fat , then my mother told me . . . and I felt so terrible . But it seem to be very difficult for me to complete the task which my advatiser gave ( or assigned ) me . Anyway I have to continu for five years to get a doctorate . From yur message , I learned ten new words approximately . Last Satarday , I went out with some good friends . Unfortunately there was a trafic jam on the bridge . You know , because he is amazing and inteligent . The most touching part was when he told mother in law and father in law how much he loves his wife and how much he misses her and his dauthers . . It is our first time , but it will be chalenging . Which do youl like ? The reason is Japanese inn are wramful and relaxing . It is remaked . I hope someone will answer me and fix my Englsh soon . A - ALFA I rememberd everything that happened to me this year . . . It 's difficult to take ( find ) time to talk to my boyfreind . They miss out on much happness when they are younger , and are trapped like birds in a coop ! This is my first time writting on this site . If we adopt this restriction , eighteen and ninteen year old people will be inconvenienced . I studied English for almost 10 years , but until half a year ago I did n't want to learn . I relized now that I must learn it fast to find a well paying job . It made me aware that one girl 's life will change forever after shock , one mother 's choice will change her family forever after shock , and one memont can change your life forever after shock . Witnessing other people 's suffering during a natural disaster helps her to overcome her lown trauma and forgive her mother . The Grab ( Lucky ? ) bags im Fukubukuro , Japan are very populer . I 'm very surprize to watch the TV news that many people wait in line before the stores open ! English grammer I started studying English grammer about ten days ago . When I was a student , I studied English grammer . So I study English grammer not for taking tests , but rather to use it , and because I like studing English . She wanted me to saty over there tonight but I do n't want to bother her . It 's a symple sentence , but it 's useful . One , you can learn a variety of knowledge . For example , literarure , physics , I caought a coldxD I hope I get better soon . I have headache and some feaver . I have no remory of it . However , when I brought the printout ( ? ) of the program to my supervisor yesterday _ afternoon , he immediatly found the equation which should have been ( ? ) divided by the simulation sampling time `` dt `` , which I set to 0 . 001 ! Recentry , I thought about whata leader should do . I know the airline compnay as I lived in Ireland before , but it is unfamiliar to most Japanese . I want to study various things ; English , Mathmatics , Algorythm , and so on . Two peaple corrected my first one . I worked at a company for 11hours , and studyng at home for 3hours . We call this a coupon webiste or a group purchasing website . The nan bread was bigger than I had expected . The king canary was dying of curiousity because of a treasure . First of all , I 'm goint to acquire some firsthand experinece for 4 weeks as all new employees did , and then I 'll be in charge of a compueter system . I forget many words , idioms , and grammer . I think I need to sduty harder than I am now . I ca n't find the right words , even if I check them in a Japanese dictionary . Because it depens on the situation . I love speaking with people of other countries beacuse I love to learn new things and to meet new people . Throung this site I have met nice people that help me in English . I love the animation Gintma ! Today , I got a text messege from one of my friends . So , I sent hiim back a messege that said , `` I 'm in . `` I could n't breathe nornal , so I went straight outside and came back again . For exsample , do you know ' Yesterday Once More ' ? This song was made by The capenters . Thouglt he is an old singer , we will remember him forever . We made Japanese food such as Udon , Macha pafe , kinako , and azuki . We also decorated the Physics room in order to make Japanese atomosphere . My boyfriend and I are planning to go to a spa located in Niseko this weekdend . I 'm an interior designer but I 'm working as a market resercher now . . . . . . . . . Anyway , I 'll ask you about `` aricles `` . I want to say to my father : You are the best father in the whold world . I 'm pround to be your daughter . I have to be more deligent than anybody . Today is Sunday , but we are still on duty , becasue of a shortage of power . ( electric = implied ) Acutally , I do n't like cold weather . This weekend is probably going to be busy but remember , masa , you have to check Lang - 8 and try to keep wirting a new entry for your study as many times as you can . begin began bugun I 'm gon na go to my friend 's for a sleepover and that 's the only thing that im looking foward to . I would like to get some methods for asking questinons about my assigment when I have problems this weekend , otherwise I ca n't proceed to the next step . The temperatue is also about thirty - six , This is a very critical tourning point in Japanese history ! . So , it is very rare for a private company to be bunkrupt . . . The Japanese economic syle seems to have Westernised , which is very severe and dry . In this sense , I think this JAL bancruptcy is a histrical turning point in Japanese history . Except for oversleeping , I would always hear the phrase , `` The deligent man . `` If someone does not wake me up , I might be continuosly sleeping . Unfortunately , one yeung couple sat near us . They were very impolite since they were discussing the movie very loudly , and this behavior is very disturbing when watching the movie . Hi falks . And form a friendsip story . She came out with her new alubam in Japan . I was really suplized ! As it for me , I have spent over two years learning accounting , if I were to try another area , it would be a big challange for me ! Most people ( can / could ) have difficulties when they speak a foriegn language which they 've alread studied for a long time . I 've studied a foriegn language for quite a long time . Moreover , I can hardly express what I 'm thinking in the foriegn language . I studied English at school , and then studied Franch for two years in college . I am studying at a distanse learning faculty at Kazan University of Culture and Arts , so I have a lot of free time . There is a swimming pool nere here and it seems to be opening for the season . Today I woke up at 10 : 00 am and started studyng my anatomy lesson . I attend a degree course in Biomedical Laboratory Techniques and at the beginning of February I 'll take a human anatomy exam , I really hope I 'll pass it with a good score beacouse I 'm studying it so much I 'm quite bored about it . Can someone explain to me what the differance between these words ? I do n't know how to improve my terrible English ( > - < ) Heip me please . As a result , trafic accidents often occurr . And I met another boy who was even yonger than me . The teacher in our class was a native speaker from Austraia . I may be able to improve my English pronounciation by going to English lessons . My English has been mixtured with Chinese accent since I came to Singapore . I will study Einglish enthusiastically . out of consentration . . . after I took Toefl test last month in addition to finishing exam in school , my consentration towards studying Engulish has run out . I only study about 1 hour in a day I guess regardress of taking a break from my part time job for next toelf text and ielts . I 'm so tired . . . I really want to give up on evrything now if it is possible . yes , it 's ture , how stupied of me ! I really appiciate my friends , thay are always there to help me , whenever I have difficulties . I fancy to accept the quote from a noveli , `` I am poor , humble , and unfair , but when our souls accross graves and stand in front of God we are equal . `` However , this is just an utterance which is used to encourage ourselves . Actually , it is meaningless and we cant alive ( only ? ) depand on a spirit . I evidently understand that the four years of my campus life are going to be very splenid . I will reap many friendships and generate unforgettable memories here . Though , it also may be serious and I may live in a state of misesy for four years . in contrast with my precious friends and even sisters who have n't been enrolled in college . They dream I am futunate , but this place may possabily bring me a nightmare that I will never return to experience in my whole life . This sort of feeling is practical . Several days ago , one of my friends told me about this website and I successfully registrationed . This theme reminds me of the famous movie `` Terminater `` . I remember I enjoyed whatching the movie when I was growing up . The biggest benefit of wark with teammates is that they inspire me , while my own ideas stick when I work on my own . My hobby is listning music ! Some have two weeks vaction at most . This vacation season of spring is calld Golden Week . So almost all firms give their employees long - term vaction . I am also enjoyning this vacation with my family . Please contct us , people who like `` ONE PIECE `` ! I do n't speak Ukranian , and sometimes I feel that ukraine people do n't like Russian people . . . Therefore , thier situation is worse than mine . Your neighbor 's apartmanet was broken into . But I could n't cosentrate listening to English . My familiy has a cat . But I ove love love him . I wunder what your opinion is , dear reader . . . Step by step unusual things and coincedenses came into my life more and more . Bio hazard4 by 3D is uneviled There is a beatiful river called Venice ( partle in jest ) ? However , my favorite menu item on there is a glill vegitable & sausage dish mede by Staub . It was very delisiouse and can ensue the maximumly flavor of glidience . I barely drink liquar , but everyday I drink iced coffee . Maybe I do n't know how to deal with the relationship between colleagues after gradulation . Maybe if I would ajust my temper to this entironment They cheked my misstake and revised my diary . So it 's necersarry for me to visit , write and prectise english at lang8 site I 'm fine as useal . My friend is in Canada for working hollydays . How frightflness ( scary ) it is . Self - introducation ! ! I can help you by correcting your entries written in Japansese . Recently I have been worried about my future , I do not know what I truely want to do ? What is priority in my life ? I especially like suspens and action . My favorite sport is table tannis . I will keep taking lessons until I reach 1st grade table tannis skill sereous flaw in it or you have some advice for me . I will go to a `` GO tournament `` at a university in the neighbor prefecture so I will stay there only one night . I heard that many people lose their job and sufferd from poverty . They organaised some workshops , like ' manga ' ( it was for teenagers who like writing and drawing comics on their own ) , sewing ( making a little brooches with Japanese material ) , clay modeling , ect . So I only could make a resevation . I think it is a critial problem . . . And , unfortunatly , the instrctor seems to leave her job to others . This moring ' I must prepare to work . ' I whispere . The company continued their aggresively overseas marketing . I know that today is due date of the corporation 's establishment in Japan . I desided to study English again to reach my dream after I enterd university . I did n't expect that since I began to write compositions on lang - 8 and had them correted by you guys , my spoken English has made great progress without much practice . I did n't even realize it before the interview . This novel is famous because the writer committed suicided after he finished this novel . Actually , I 've already graduated in a reputable school in Osaka last 2006 , but I still wana go there . ( Masato and Koji were the 28th menber . This is the frist time that I have sold anything . The item was a budha magnet . Last time my friends from Lang - 8 helped me to correct my describtion and they told me about good marketing techniques to sell it to the people using a computer . It worked so now I can sell anything . I would like to say thanks so much for you kindness . I recomend that Ishiba becomes the Japanese prime minister . Lator on , I realized that the sound was actually coming from a clock which was making a loud tic tac sound . It is a amazing that the tic tac sound could be so loud that I could hear it clearly when I paid attention to it , as opposed to when I did n't pay attention to it . Hopefully my next joj will be connected to using English . Last mounth , I met a backpacker from Honduras on the train . Whoever is studying Japanease ! I adimire those Chinese writers , like Zheng Yuan jie , Han han , Guo Jing ming , they are very talented . I was deeply tounched by her style of writing , by her imageination , by her emotion . My biggest drawbcak is the shortage of emotion . PS : Rencently I hace a cruch ( ? ) on the online game - - `` Maple Story `` . Actly I 'm not a PC gamer . I thougt that I did n't have to go to work . I chose Japanese at hte beginning of our term . The Moon is shirinking So I was reliefed . Einglish is very hard . Okei , I desapear from lang - 8 for almost 2 months . He massages my muscles and sting needles to my neck , sholders , and back . It only costs 2000 yen because I have Japanease medical insuarance . I saw this drama and was recommended to me by an emcee of an information TV plogram . This weekend , I will rent the DVD from a lental shop near my house . Actually , you can find me there evry Saturday . In Japan it often happens that an employee climbs the career radder I was very ashemed and told him seriously `` I was trying to catch you and I did my best , but I could n't catch you . It is just opend this week . The area where I am living is arrounding with many apartments and a lot of residents like me . We feel excited if we have new shop or restuant open near - by . And food did not taseted very good , the rice in the sushi is a bit loose . . There were a lot of a street vendor astall , so I ate some food , which were made within the stalls . I stayed at my grandfather and grandother 's house overnight . This is totally my parsonal diary . . . . It 's not the time for writting a journal , otherwise I ca n't go back to my place / ' home and sleep peacefully . At the same time he was disiplined enough to not say , `` I want it . `` And he breathed fast like a dog which was told `` HOLD ! `` in front of the meal by his mastar . The skin of my face has something bad happend . I think he just thinks about winnig the election . I 'm sorry I could 't eat fruts salada . I ate buloot and I thought it was dangerous . I participated in it of my own accoord . it is usually rainny , cloud , and cool . strip you of your once ratical dream and to put ( Q1 ) What makes you happy ( sad , angry , surprised , unhappy , bored , frastrated , etc ) ? This is my first challenge . It was raining when I left home this morning . I looked for a good unbllela but soon realized that I did not have good one . For several years I kept losing my unbllelas . Rihanna is a talanted singer ! Recently , I have listened the song `` the canifornia king bed `` over and over again . Just relex . `` Perfect skills in reading and wirting english will help that purpose . `` I was looking for some action but all I found was cigarettse and alcohol . `` This is hard for employees but I can have private or self - learning time due to this order , like wrinting entries this this English learning site . I 'm a student of departmrnt of biological science and belonging the laboratry of structural and functional analyses on biomolecules . My research theme is tructural and functional study of hypothetical protein of an extremely thermophile , Thermus thermophilius HB8 . I respect his incredible mathmatical skills So , I still have a little trouble to communicate in Enblish ( especially spopken British English , accents and pronounciations ) . In fact , I was near critisizing them . I 'm relaxing with parfume now . This resturant just recently opened . Instead of prepairing for it , I was cleaning my room the whole evening , hoping it would put in order my thoughts which hardly wanted to form into sentences . Then , I left the resteraunt not sure if he would call me again , but I am satisfied with myself because it was a good challenge for me . What an auful fortune ! Every shop had displays set up at the front , therefore every store looked very good , and I did n't decide which store was the best ( sotre ) . I bought takoyaki at four different stores and ate them in oreder . In my Japnese - English dictionary , `` Uchiawase suru ( verb ) `` is translated as `` to make arrangements . `` But thisdoes n't sound rightat all ! Of course corrections on this post itself are miost welcome . . Today , I saw photos of a short abroad stay proglam at my university . I work for financial survices . You need to found a strong wall aganist those from society who hurt you . You have a commer aim - that is , to come on together for your family 's happiness . Did you see the movie Karate Kid that rencently premiered ? However , I am in Singapore now , here is clean and safe , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to wrok so hard and for a long time as slaves , no worse than them . I felt shameful while the movie , this movie showed foreingers how disgusting the Japanese culture is . Because I did n't do anythink for two months . At first , I was feeling so nervous , but it was a good oppotunity for me . That is why I worte this letter to you . I 'm watching videos on You Tubu now . Elderly people who live alone like the woman have less of a chance to communicate and visit with family or neighborhood . She has lived in a dormitary . They would take thier boyfriends to the dormitary and let them stay over night . The dormitary is a house , so my friend could not help running into them . We acutally do n't like Pachinko , but the restaurant next to it is very cheap . We like to go for lunch on the weekend because it is very delisious there ! I want to speak fluentry English . The OkonomiyakiI was good . First , Merry Christmas ! Enjoy youself ! Beacuse of the long distance I had to give up an interview this afternoon . when I picked it up to chekking the contents , my friend went to the ladies room and left her daughter with me . I took a Bulet train . Yesterday was Spring Festerval . It is time that I become mature and be responssible for my behavior . There is a special place where we go to see a beautiful night veiw Re - type e - mail address to forward this card to more frineds after sending . I must speak English at least five minutes every day because I become very shy and nervous when I speak to someone in English in calsses . I need to be brave enought to say what I want to let them know . I NEED TO BE STORONG MYSELF ! ! But I realize taht life is not that easy anymore . Recently , there 's another porblem that I have to face . I 'm Japanese and a university sutudent . I major in medical science , that is to say I will be a docter . I tweet in English everyday , talk with my Filipina friend ( s ) on skype , and write in my diary in English like this ! ! My habby is playing basketball and watching NBA games . He was descriminated against by some crazy Amricans , and they tried to rip him off him . I have another example . I met some Japanese bilinguals in Australia , but some of them told me that when they were in shools , they were discriminated against by other Australians , even though they could speak English like other Australians . Sooner or later borders will disappearbut sad to say things still remain as they are now , we have to keep fighting against discriination to live on other countries . So I think it 's an excellent idea to write my diary on Lange - 8 in English because , hopefully , someone may correct my mitakes . I can believe in myselif ! ! ! Oh , I do n't know yet wheter I 'll get the job or not ! I want to study aboroad someday . I am not Cristian . . . . will that cause trouble for them ? I hope , that everything wiil be ok . ( more conversational ) Now I am studing English . I can read an English book which is writen with easy words . ny sign of blood on the road or anywhere on his body . He got used to this environment fairly quikly . However , some peole push too far . someting like that . We just staied instead on 11th Avenue and watched the fireworks presentation . They sometimes quarreled with each other , but made up immediatly . I undrestand my son 's feelings , because I have had the same experience as him . I do n't know how hard they qurreled today . As it was expected , after the anouncement of the health minister about swine flu , many people ran to buy masks . Because I went to thre to work . People in the school cooked with colledge students in Matuyama city . Matuyama city is Ehime Prefecture . I just started keeping an Englisy diary today . I think it is a quite helpful website for ( with ) people who are learing the ( ir ) second or third languages . let 's exchange throughs and help each other . My friend reccomended this homepage . Anyway , the guys in this viedo are awesome . Their motorcycle transporter was carried by my transpoter transporter . I wanna go there , I guess it is the in the middest of summer in Australia , the season is the oppsite of Japan . but now Im still remain poor We studyied for over six hours and I was so tired . That is becuase I am going to see a foodball game in an hour and after that I am going to eat at a friend 's house . I 'm so tired because I studeid until 9 : 50 p . I attended the banguet yesterday evening . I have to prepare informtion about Montreal . It is made with wheet flour , soup , and some other ingredients for example , rice cakes , cheese , octopus , lobster , and so on . In general , it is difficult for beginer to make . I have a scype ID , and sometimes use this to talk with my friends , but I have never used Skype to talk with foreign people . I 'm planning to travel next yaer . It would be a little bit scarely for me . I have been to Paris , London , and Canada before but these places would be for the fisrt time . The other is to squat down untill the right answear descends to him . I tried to translate it but I couldn n't . It was too difficult for me . . In this October , I decided to enter the Chinise speech contest . In the movie `` Magnolia `` , her song was used and gave it a supernaturaly or merancolily mood . I 'm working at an English conversation school as a front desk personnel , but my English skill is n't good enough so I ca n't comunicate with a native English teacher . We 're gon na ( going to ) have a bisiness presentation test tomorrow . How actual is discussion anout this person . Finally , I want to tell that the personflity of Mary the First is very unusual and interesting . Yes , she has brought much pain and suffering to her people but throughout ther life , she , too suffered much . In my work I have also found out that a lot of films had been produced about Bloody Mary ; moreovere they are still producing films about her . We wrote a lot of books too . These two examples proves that she is still interesting to people . But now , I 'm surfing the Net and drawing pictuers . Japan is an archipelago comprised of a number of islands such as Kyusyu , Shikoku , Hokkaido and Okinawa , located in the middle of northern hemispher . I thougt it would be good to buy some education stuff . I saw some news that so many contries are praying for Japan , and giving us resucue , money , foods and so on . So your help will be really thankfull : ) I 'm becoming suited to Autralia little by little . Seravel weeks ago , there was a big strike in my company , I work in a state - owned company with 4000 workers , which produce NC machine . You know , a nomal worker is just paid 2000 a month , less than the gas allowance , so rediculous ! Finally the managers gave in , they came to the workshop to negociate with the workers , promised to grant the half - yearly allowance at once , and canceld the middle managers ' gas allowance . Anyway , the result was not bad , workers got back to work after they recieved the allowance . Sometimes genes have great influence on children , but the more important would be the quality of upgrowing at home and teaching at school . TV business get involved in price competition against Sumsung , while the bubble of solar panel business has already burst . Thank you for reanding my entry . The Japananese P . Yukio Hatoyama is struglling against transferring Futenma U . He pronounced on transferrign out of Japan , but U . Maybe it 's a seceret ) The cause of my sadness was a quarrel with my hasband . On my way to the pool , a car suddenly appeard on my right side and then cut in front of my car so I honked my horn . It 's a piity that I have not found this webside ealier . We pracice cheerleading over 5 hours every weekday and over 10 hours on the weekend . Because , I have canker sore on my tangue . : ' - ( So I ate many begetables for lunch ! ! Flying sourcer ? No , It 's a flying car ! Bamboo Blade is an anime that was broadcast 4 yaers ago . Today is a festibal in my town . When I walk for a few minuites , I get wet with perspiration . In Obon the souls of our ancesters come to us and we invite them . I was able to keep this pace with the other runers . My son has been in hospital for 9 ddays with a serious diseas . I want speak this beautyfull language ! I have been waiting to get this part - time job becouse it 's very popular . fortunately , there were only a few costomers today . I am alrady awake when I was high school , I learen Japanese but I forgot many things . I will dance at the year - end party of my devision tomorrow . Could you correct my dictation sctipt ? Enjoy this amazing video , which is on a weired deep sea fish with a transparent head . The Macropinna microstoma , known as the barrel - eye fish , is small and dark with large fins , a tiny mouth , and unusual barrel eyes under a transparent dome . The two green spheres in the video are the lenses of its tubular barreleyes and the eyes are in closed in the transparent shield , sort of like a glass canopy of a jet fighter . Above the mouth the two dark capsules that appear to be eyes , actually contains the fish 's olfactory organs , or the equevalent of nostrils . Ood ! It 's ood to my body because I ca n't move quickly . But now that I 'm dieting I might cease from deit . for foringners But that 's the mimnimum I have to do . Classes end at 15 : 15 . After that we have club actibity until ( ? ) about 18 : 00 . but when my son enters erementaly school , I will have to do night duties . The teachers of agulicurtureor farming have to do this heavy work no fewer than once a week . I 'm waitnig for an answer from the company which I took a job interview from last Thursday . Anyway , I think I 'll get some new infomation tomorrow . He appers only in the summer . I could n't help checking thoughout the room . I am not sure whenther I was able to sleep or not . Bofre university , their only focus was studying in the cities . After that I went to eat Chainese food with my classmate . This is a very famous regend among Japanese people . Of course one was to study Engish hard there , and the other was to order a s - size cheeze burger meal in Sydney . So it was natural that I thought the size of Australian cheeze burgers should be super jumbo as well . I rushded to a McDonalds in Sydney just after I arrived in Australia . I ordered a cheeze burger meal at the counter in joy . I gazed at the cheeze buger meal for 5 seconds . When I started talking about the weired news , I finally found him under my table on the floor . I have been finding books writen in English for my studies . Reasently the website introduced a lot of books and digital books . Resently free digital books have been introduced . Digital books have many good points , for example digital dictionary soltware can be used in digital books . So , I asked my husband to massage my neck and shoullders for me . I ` m sorrty for the delay in diary entries . This april , almost my freinds start to work so we couldn ` t meet and drink easily ; but I hope we can do it again ^ ^ They are my precious freinds . There sre applications for Twitter , Facebook and Mixi for the iPhone . Good morning - zao shan havo I want to stuy hard , to read the document , and to deepen my understanding of my major . I have n't gotten a job yet even though I 've had some interviwes . Cristmas is coming in about two weeks . Some houses really took a lot of effoets to put up their Christmas decorations . But I ca n't repond quickly when I am asked by a English native speaker , even though I have what I want to say in my mind . She was terribly frightened after she read a person 's blog on which he made a structurly analysis about the disaster that willhappen in 2012 . Coincidently , the news report said an earthquake took place in a country on the Pacific Ocean . As a matter of fact , in the end of 2009 , a bizzard has swept over many places like western Europe , the US and Xinjiang Province in China . And the horrible earthquake that has made many Hitians lose their families . The immidiate family is the most basic and smallest community in the society . I played with his son , showing him how howto use iPhone apps and teaching him some words . He is starting to join the society guradually . I think that the university should increase the number of questions that test output skills , say , organizing thoughts in essays or drawing conclusins from some facts or expressing oneself in English and so on . But , not to speak of conversation with adults , they ca n't write even juniar high school - level writings or communicate with native English children . Indeed you will see , reading this teribble sentence , I 'm not an exception . everyone loves raggae , Latin , cumbia ( ? ) , jungle and drum ' n ' bass . He left money for my marraige fund . Howerver , my computer is just two years old and I should wait at least one or two years to buy the next one . He paied 500 dollars and got a new computer . I usually use two online serives for learning English . This website uses Flash technolgy for learning words and phrases . It is simiilar to the English one , and I think this is useful and convenient for Japanese language lerner . The iknow involves also blogging feature and sns feature , but I feel that this blog and its sns system is not so good relratively to lang - 8 , this website . actualy , my dad lives in China for him job . Anyway , I relley miss Japanese food , such as sushi , nikugyaga , oden etc . Althoght you can get sushi in london , the taste is definitely different ! Snaks in londo are really cheap . While I 'm eating snaks , I 'm happy but when I finish , I feel guilty for some reason and sick because I ate too much . becouse Macdonals 's cheese has some special additive like a drug . So I think snaks have the same kind of additive . Anyway I ate cookies todoay even when I know about this effet . . . My English is poor , but I realy want to improve it , anyone can help me ? ? ? I was tierd We got medisine . She wnat to give me a gift . Althogh it 's challenging for me to think of topics to write in English , It has become more enjoyable for me to write in English ! My friend and I are planning to go to Tokyo Disny Resort next month . We love Tokyo Disny Resort . And I was studing harder than usual , I thik I shall give her some canneles when I return the molds . In my class therea are students who are almost native speakers . . Last Sunday I drank with some English teathers and their friends . I woke up earlier than other days and & nbsp ; went to the hospital because I was concerned about a litte faver . these days swin flu is prevalenced ( ? ? ? ) . so I was really worried about it , but it was just a faver . thrid , I will have a part time jod for weekend I ' d like to registrate as soon as possible , in order to make an early hotel reservation ( only available for that association menber ) . Dear * * Assiciation staff I 'd appreciate it if you could registrate me before Jan . 5 . Then , the boy came to the shop and tells us about the owener of shop . - but I sold to Jwish man . just a traslation entry She was accused of spying on the Iranian governement in favour of the USA . As soon as I arrived , I took a warm shower and then I went to seelp . My husband bought me a I - pod touth the other day . A small displacement gasoline engine is mounted on the power tiller , it is 4 cycle air - coooled one . It is my important right hand in the garden and feild . Even though I joined the site lmmediately , it was not easy for me to find time to write . My hobby is surfin . I 've forgote to tell my mother about it . Now the busy week passed , I can relax and revive agian . `` Having finished lusnch , I went directly to ~ `` I know that it 's a bad habbit . I hope you will help me to lern better English ! I always go to the restrant at lunch time with my colleaque . The conductor anounced that someone was trying to commit suicide on the track so trains would not run uitil the police arrived . RecentIy , I have been often reading the book Self - development , because of the training of logical thinking and Photo reading . Recently , izakaya ( Japanese pub ) which searves flat - rate foods and drinks is very popular in bright - light districts . Nowadays , I have to recognize that I relly learned a lot from those stories . I relly miss them . I miss my childhood and I especially miss the person who made me laugh in the old olddays . Do you know any manngas of Japan ? For exanple , Doraemon , wanpi - su , Death note , Naruto , etc . There was a free concert in the center plazza . There are several stalls ( street vendor ) around the plazza . I think cumsuing there is not cheap . I aslo saw firefighters standing by . A urban appearance in downtown San Jose is preety good . She could n't follow what we said and felt uneasy . But I though she only has only been learning Japanese for 3 months , and her pornunciation was good . It is not easy . A buritish girl is staying in the hostel now . No Japanese shall beat my child , and I raelly really wish for that . In passing off , `` dilution `` means damege to the goodwill . becuase I have to go to work tomorrow . becuase my graduation is just around corner ! ! ! ! I 'm going to have my hair parmed tomorrow . However , my hair was not parmed very well . Was it so expectable ? And I 've been waiting for the result of the exam for Osaka Univeristy ( Chinese major ) . Resently , I quit The Chanson Society [ I play the bass guitar ] . I have had a lot of hoemwork , and I had to make a presentation . I still remeber I lined up for two houer becuase I wanted to buy a moon cake . Yesterday my boyfirned and I went to some nice places . Happly full moon festival . But although it was only thirty minites since the festival started , all of the lobster was sold out when I arrived ( there ) . Of course I ordered a lobstger set . We studied writing , reading , grammer and stuff like that . My doughter is a big fan of Ponyo . She continued to help her mother , for exsample ; washing the bath , washing the disehes and so on . He can speak English fluentely considering the fact he is Japanese . But some Singaporeans told me these salaries are quite common here , and they added that some intelligent Chinese and Idians are earning more . I had fixed my pronuncation . I do n't understand what is diffrence between / o / , / ou / , and u : / . AMon , Give me power ! I am working at a Japanese reustraunt in Victoria , In the winter holidays , I did n't syudy very much , which worried me because there is a test coming . The second time a foreign customer came to our comapny ( office ) It takes a long way to get there ; we had to go all the way up a montain . Usully I like to sleep in the morning . I liked it vey much . She was happy to understund each orher before they had problems . Her job is about about advertizing and maketting paper . I would like to attend the party too , but unfortunity , they are serious subjects from the University . In that place , someone recevied my call next to me . So much descrimination ! ! ! ! ! ! ! ! ! ! I planned to go to a movie with my frinds . I think he could n't adapt to his new situation ( or environment ) , but in my case I got used to it owing to travering to lots of places . ( I can get it on Monday ) But it 's still cheape , compared to in Japan . When I arrived at the theater , I picked `` Inception `` becouse some of my frinds told me that it was really good . When I bought a samll coke and popcorm . I could n't figuer it out though . To be honest , I am one who wants to puch reality away . The tests of profiency are the most important tests for language learners because these tests represent the student 's ability in a language . I 'll be back on monday , the others will be back on Thesday . Hopehully I would like to get paid - holiday for thesday , but I ca n't . I found a discount price for the train sticket including an one day ski lift pass I 'm looking foward to going next sunday . what 's the differents between them ? I didi n't write in my diary recently . but , as with everytime I go to a bookstore , there were so many foreingner . That 's my misunderstanding and I thought how if I travle to he US , the locals might think that I 'm Chinese , or Japanese or some such . . . . . . I joined Lang - 8 because I wanted to learn Japanise , but later I realised I needed to learn how to write japanise to do so . But now I enjoy helping japanise people to learn germany by correcting their writings . I 'm quite shure my spelling is creepy , and since the times back in school I ' ve been allways using wrong tense forms , I wnat to improve my English so I can pass the IELTS 6 . 5 . The first song `` Rock ' n ' Roll star `` really made everybody gon na crazy , and it 's really really excciting ! But we need air conditioner beacuse of the extremely hot weather in Shanghai . It seems to be a very misterious world . Frist , grind the tomatoes and garlic . Next put the garlic and olive in a frying pan . After that , put some salt and pepper in with the tomatoes , then boil them . It is a Monay morning . Have I eaten somethinig bad last night ? It 's `` Qantus airline `` , the most expensive company . So this is gon to be a first for me . I examed a staff reporter 's story and a news feature . All the conversations we have are in English and sometimes Italiano ( but I never tried to speak in Italian ) . Namally , I will study Chinese and English on Livemocha , though . I enjoyed scating ! ! I 'm vulnarable to any kind of noise , especially at night . Moreover , even if I fall asleep , I 'm always easily awakened every everytime I hear a noise This phenomenon makes me exausted and inactive . Occasionally , it seems to me like my alram goes off without a sound . Unfortunately , I do n't notice the sound of my alram as good as I do with small noises . I 'm going to start a part - time job eariler than I thought I would have to . I like English , because English is not a very diffical language . Althought our languages are not the same . Kamakura is a famous place for forigners , visitors and surfers . Banana pancakes , one of the popupar menu items in there , were so good : D It contained recota cheese . Hellow , everyone . I miss syudying ! I sent her some songs from my friend who sent it to me so , I think my friend will love the atter that I sent it to her already , she asked me to give her other songs too . I imagin . Next week I think I will find a job soon because I relaxed ennough . On the 5th of this month is father day so usualy buy somthing for my dad , at the moment I bought it already . Do you have farher 's day in your country or not ? Recently , I have started using Facebok . It is great to be able to communicate with friends in English , especially those living in forein countries ! My goal is to be someone who can write down ideas , wthout mistakes , in English and communicate fluently with people all over the world . I 'm very happy , now I need to buy an iMac for develope . Mybe next month . Frist time on Lang - 8 After I logged on to this website , I felt I had just enteried into the language of Disneyland , where u could find any language , and anyone from any part of the world at any time . One of the most ointeresting thing I noticed is that u can improve your language level not only by talking online but by correcting others ' diaries , which anyone can add comments right below the diary to inform the writer of the mistakes he / she made in his / her article . nowadays Im very crazy to watch movie `` s `` `` in `` `` englsih `` This causes a pause in my dialoge . My Forigher Friend We are both foreniger . Especaily if it 's English . Nearly all parents scold their children . But , when thier children act wrong or make a momentous decision , parents are worried and anxious about their beloved 's future , , because their children are their greatest pride . I found out something about our defference . But I was still happy because I bought a katana as a souvenior . So I belive that I 've alreay known grammar in English . You can tell my lack of vocabulary and a bit short length of sentanc is like a child 's . I 'm learning a group of vocabulary to be acusstomed with it efficiencly . In Japan , someone lost their job , they could make their house out of boad . We useally decorate hinadolls from the middle of February . Because if the still decoreated Hinadolls are on display after that day , it is said she will marry late . Fortunatery , I 'm a sophomore now . I 'm especially not good at the reading and the grammer section . Schocking LaLa mountaion trip The trip had a schocking incident which remains my head . We were in a traffic jam on the way to LaLa mountaion . cockroack ! ! ! We killed ` five cockroack ` that day and retained their corpses to show to the manager . I remmenber that there were a lot of becutiful stars in the sky that night but I don ` t recall anything else that happened . . . I have started to write a dialy to improve my English . but it 's diffiiculty . so I decided to write in this diary in enlgish every day . and I want to make many firends . Now I am struggeling with driving , I mean , in traffic . I went to the hitting senter . I have recently praticed playing a song called `` Just Be Friends `` . My part - time job starts tomorrow and college starts the todays after tomorrow . I 'm workking hard ! `` What happends next ? I do n't know what I 'll be writting about yet , but I 'm sure I 'll find something . The classmates were from all over the world like Chinese , Korean , Bosnan and so on . I 'm an economics student in Kyoto . I 'm keenly interrested in innovation and Investmet science . I 'm going to barbar to have my hair cut . The word order of Korean is differnt from that of English . And I have to go back to my homecountry next Febrary . In addition , we tend to differenciate our behavior according to our first impression . One thing that I am concerned about is the inconvenience of short bettery life . More Advantages of lliving in a Big City I think I may well be able to make assie friends over time but it is difficult . In that sense , I 've been studying Engilsh with my tutor lately . Yet Engglish as a second languge is so hard to me . I feel happness . After the luch , we went for coffee again . Finally we went for crispy cream doughgnuts and more talking . It is my fevorite ! ! Therefore thare is a modern / up - to - date railway station , although if you prefer , the city also has a small airport . C . , for this reason nowadays the city conserver several Roman monuments like a wall , a theatre , a forum , and other important archaeological sites . It 's a wall on the mountain , and it defense the city . Now , I have a sliht headache > < There is a very interesting phenominon in Hong Kong . About 400 years ago , `` Nakasendo `` was maintananced as a main road from Edo ( old Tokyo name ) to Kyoto . The roast was also known as `` Tokaido `` . Vut this is my first job . chatting with primary claassmates , it rained heavily nippel & pacifier I ususally do n't care about these things , but just enjoy them as dramas . After surfing through a music website , I found a song called `` Crush `` and clicked the `` play `` button . The melody brought me bcak to high school times . I still remember when I wait around the street conner for half an hour just wanting to get a glimpse . I was afriad you could hear my heartbeat , because it sounded so loudly . . . totelly tragedy . . . It 's very tough and chanlleging for me to advertise my class next month , but I 'll make an all - out effort . Fortunately , my mom apoligized for being stressed and grumpy when we sat in the car . The first buyer I called got irratated because of my pronouncation . Fortunely , I like to go on a journey alone and I decided to do it ! To make maters worse , the cost of transportation fees are expensive ! ! I did not know what rural life is , and at first I was very confused with the defferences between rual and urban . In addition , Akita is one of the most famous rice producting regions , But actually , I have n't seemed to have selected this job because I live in Busan . It is the second largy city . Busan is far away , a long distance from Seoul and Seoul is the largy city . So , there was more than expensive anway , now , I am feeling happy . It has really intersting stories , but it 's difficult to understand in English since they use a lot of medical words which I do n't know . House and his team fight against unuaual medical cases . Today , there is only one lesson , I ? to see a movie after learning Englis . lt is a pupple print t - shirt ! ! I have n't used Lamg - 8 for a long time Yesterday it sonw heavily in Beijing and I went out to buy an MP3 player to lishten to English songs ~ It takes my bleath away . I think the best way to learn English is to compose English sentense by myself . Next diary want to write good sentense as soon as possible . He is from Australia but he told me his father and mather are from New Zealand , which I think is really s strange . another colleagu made a business trip to China . I wonder if my listening has imoroved now I ca n't understand and hear sometimes . I need to prepar for it and I hope to spend nice winter holidday . I 'm studying Japanese , but I want to write a diary in Englsh . but , when I went to University , I found / realized that there was no reason I should study Engilsh . I used to follow the general norns and never thought about of it . Our oppositor are so good , our topic is `` Computers Will Substitute Books `` . he is lasy and useless . By the way , allmost all of my friends , including myself , think that foreign companies immediately fire employees when they make some mistakes , which is a bad image . I was speaking about the fact that sometimes I get frustated because I want to improve my Japanese . For eample , I read a book , use a computer , wash clothes etc . Because of my life is not exciting and stressfully . I like Ema Watson . I have to jose weight . On frieday , I was working at my office as usual . One headline said `` The fifth biggest earthquake in history occured in Japan . `` I did not really care , because storng earthquakes are very common disasters ; it 's kind of everyday experience in Japan . She told me that her flat was not really damaged , but she had thought that she would die when the earthquake occred . So I told her that it was the best time to buy some Japanese construction firms ' stucks / shares . On friday and saturday , the prices of many Japanese stucks / shares went down because of the earthquake , and definitely the Japanese government and companies will have to reconstruct everything . which is something delicous ! ! In this seterday and Sunday I will be a promter girl . Hallo , everyone ! I went to my friend 's flat with my two other friends today , and I learned how to cook `` Purukogi `` ( Korean food ) for my Koean friend . When we were buying minced beef , onions , cabbage and more , my friend surpurise me when she took a kiwi fruit . I have never seen it in Japan , the tast is mysterious . Now I 'm busy studying for finel exams . Obviously , our lives has changed enormously because of the use of comeputers . However , like a double - edged sword , they bring negtive things as well . Now I always meet my friends from it and talk about our recent lives no matter whether they are in China or America or any other contry . However , it is nonsence to be on her side when she is very angry with me . . . In this club , many non - English - native people whom was interested in English gathered and talked with oter people in English for two hours . Latestly , this style is in fashion in Japan . I thought it was usuful lesson of speaking and hearing English . `` You bet `` he replied and dived into the water with his flashy long harpoon and desappeared into the dark violet . I Iike leaning English , but my English is not good , I hope someone can help me . I am a koean university student . It moved me and left a nice aftertase on my heart . I also love that of CAT ' S EYE , the beach where scene Hitomi got back her memory by the music box . It was so beautifle and pure . All this period of my life I could characterise as a painfull quest for self - development , which is really hard to achieve in the current situation , when almost all the time I 'm busy at work , where I have no exact timetable that would allow me to go to language courses . . . and I 'm going to the Reading festivan to listen to Radiohead . After the long over time last nidnight No , it is not a blede . Sazae - san syndrom I happen found out about this site from some bloger . I negotiated a new business deal because my occupatin is sales . I visited many places , saw many beutiful sights , felt the good atmosphere , met many kind people , and took more than 1200 photos . Hello everybody ! : ) Im ; m like to be here ! I like reading comics and watching moveis in my free time . Indeed , it is convinient . If we had fewer vending machines , Japan would not need nuclear power plants and accidents such as `` Hukushima `` would not occur . According to the unformal , but still credible results , I suceeded in it ! * This sounds more natural The second part of the exam is going to be held on Octorber 11 . Recently , our factory do n't get enought orders so that we l are free are not so busy . It is 21 : 28pm , not too late but something happend , which made me realize English is really , really important for overseas people to live here . He was sitting sideways on a chair and strated talking to us , like just saying some greetings and shaking our hands then he was talking about his story and how he was in prison for 5 years as he did something bad ( he is 21 now ) . I am a fasion advisor . It tells the story of man with a mild form of authism . Throughout his life , he becomes many characters : a football player , a soldier , a fishmen , a gardener , and all of this ( was achieved ) with an IQ of 75 . In three years he runs the lenght and breadth of the United States . The class which is chosen by the computer must go to the small island , and then the army makes them kill each other until there is only one surviver . And then the `` program `` will start on the hopless island . It tast a little light , so I added some soy sause to it . To prevent sunburn we can use itens like sunblock that reduces the damage of the sun . This news said that this programe , It was unbeleavable . We never wear coats in Sempember or October . It 's the turn of the season now , so let 's be carefull not to catch / get a cold . I moved to Toronto last April and am sopposed to stay here Here in Toronto , I could manage to meet a lot of dieffent people who I 'm planning to get a driver 's lisence during spring break . We have a custom of giving presents or dininng together to express our daily gratitude . My shop deals with polo shirts and is famous for poro shirts , so it is packed with people . Although my English is very poor , I hope can make many friend to learn a languege together : ) I have a queation about a sentence that I read : Due to the high cost of textbooks in the school bookstore , I recently did some reseach and bought some books online . One was the Stir - fried dried bean curd with sherdded pork , and the other was the `` Three - cup Mushroom `` . I should not simply ( only ) compare Japan with Singapore , but around half the polulation in Singapore are foreingers . So some normal Japanese English learners mindlessly belive that English lessons should be taught only in English . It 's storytelling with several picutures , and is a form of traditional Japanese entertainment . All you need to do is put a seal - shaped IC gadgety on the outside of the body . Is the followig information correct ? Master 's Degree antispated March 2012 Our lives are not so good , like everyone in this world , but , if we are mature , we know that we have the tools to make a difference and understad forgiveness is the key for a good life , a life who a few people choice , but is so refreshing . You should try . I felt `` The PC is closed `` is something starange . After my guraduation , I will go to the cafe often . As we all know , the attainment / reaching of success is only realised through practising again and again , which had ( has ) been proved by so many famous people , such as Michael Jordon , Kobe , and so on . I ca n't remember my Japanese teachers from when I was a bigginer . Why I say it 's a problem is because the people I met when I came to Japan often said to me , ' Arumoo , your Japanese is so fomal and you use many difficult kanji . ' I Just started . I 'm very shy when speaking to stangers . My mother encouraged us to do it . I came from YOKOHAMA after Igraduated from univercity . Last Year I went to THAI first time . I have a plan to travel to THAI this year . Yesterday , I did reserch . This was the second thing that was surpirising . Also , we listed to music and played with 2 babies who we did n't knowXD . XD Yeah , I do n't have enough time to struct any ideas . Defferences in their culture , language , common sense , and politics . The politics were especially defferent from Japan . And more than 10000 people have evacuated to Turcky . It 's very intersting ! I hope we can study foeignal language well ! She wants to try snowbording next time . That contribute to Japanese Arkeorogy . Anyway I 've got some sentenses that I ca n't understand clearly . But , working men or worman have maybe 1 week summer vacations . If one were to ask all the Japanese animation producers about the best Japanese animation , most of them would answer that the movie `` Akira `` is the best Japanese aimation , better than anything else . In my subconsiousness , I think of tomatoes as fruits , not as vegetables , although I know that tomatoes are vegetables technically . I staeted Lang - 8 . I have a band and we practice with the other members every . saturaday . I 'm going to go to Minessota . Becuase I had a hard time finding keywords to do the reserch , I vivisted the library reference desk for the first time yesterday . The librarian was helpful in telling me where to go to find the database and good keywords to do the reaserch . At last , he sechduled me for an appointment to meet with a librarianwho is good at business topics to help me out with my research . I 've just translated it from Japanese to Englsh word by word . Thankd ! I asked one of my firends living in Seoul becausei dont have lots of money I brought a hot - watter bottle . I enjoy wroking ! so if you know any good contries or cities , please tell me ^ ^ Because my English becomaing worse , and at June , I have to take part in the CET4 , evertbody said that the test was easy , but I do n't think so . I must spend more time in learning two forign language . I can n't deai with them well . I went for a walk with my littel brother . Then , even though I showed him genuine bresd , he still said that it looked like a conch shell . Nowdays , I am watching an American drama named ' desperate housewives ' . So could you recommend another funny Ameracan darama ? ? Today , I just discovered a [ new ] method to improve my writting skills . woods : I managed to contact them four days ago but they didn n't reply ( to me ) until this morning . They complained that we did n't contact them earlier . I stopped for 2 years and then started to play piao again but with a different teacher : ) But I am scared when she teaches me , she gets angry easily and tells me to use my brain propely T _ T We of _ ofcourse have not only English , we have another subjects to study ! at macquary because I 'd like to improve my skill for writing , reading , speaking and lishtening . I often skateboard ( / go skateboarding ) resentry . My wrists allways help me , and they trim ( ? ) my condition . Skateborad is such a dangerous sport but a more than interasting suport ! I found this website in a magine . I was surprised to see so many people here speaking several different langues . She taught me it carefully enough for me to undrestand easily . There was an autumn festival at the neighborhood temple . Or shoud I say , `` He picks up girls after he turned 30 . `` Are they different from `` not good `` and `` not bad `` respectivcely ? My grandmother died seven years ago , when she was ninty - five , after lying in a hospital bed for about ten years . Right after she moved to the hopital , I would go see her . I do n't need a long life expentancy , just a life that I 'm satisfied with . Do I use this site stedily ? beacuse I could understand some news in English on TV . join with sentence above I play the bass guiter in my band . So I sudying about musical instrument and constitution of the music . I tried to read the notes for ' Heart of Gold ' by Niel Young . Here is a YouTube video of ' Heart of Gold ' sung by Niel Young . Today , I took a drinving lesson . It was my third time and it was quite good . I noticed that one of the most difficult things in English is caring about singuar and plural form of the words I use . My freind 's birthday party We enjoed beer at a resturant . Tell me why you do n't answer me even though I texted you and called you more than two times . Plus , its been twenty four hours alredy . . . . Cleary , I told told you lie intentinary when you asked me wheather I will study in the U . I feel like I 'm a litlle weird , but my friend told me that he scolds himself like `` Stupid ! ! Anyway I do n't know wheather I can continue to post diary entries . I have studed English very hard everyday , but I hardly speak English . And I want to make a lot of friends who are native speker . Yesterday was my yonger sister 's birthday ! I will be very happy if you become my friend and inform me of any mistakes concerned with grammer or expressions ! ! There are many differece between English glamor and Japanese glamor . English glamor is `` S ( subject ) + V ( verb ) + O ( object ) `` But Japanese glamor is `` S + O + V `` . So , soetimes I ca n't understand and I ca n't speak . It 's not that I 'm begging for your compay , at least ( not ? ) at this moment ! ! I ca n't carry out a converstations right away . She quit hugh school and used to leave home . We do n't usually eat our meals at the table , rather we eat sitting on the flore . You can feell your bellies getting full early when you eat sitting on flore but there is a few problems sometimes . For exampale , people who are n't used to sittin on the flore can feel numb so they can hardly walk when they stand up if they sit for too long . atarashhii tango . But I reserved early , so I couled buy the return tickets at about half price . I 'm so happy that it will be spring break from tommorrow and am looking forward to be in the next grade after the break . So , I personally believe that we should pay more attention to our behavior ; and cherish our food in the carteen . I finished the English Academy course / classes last Friday , so I am an unemployee person now . This is the last interview to enter the companey . I do n't have cofidence but I do n't want to charge . To do some meanful things on tree planting day , we should hold some activities like getting students to plant trees . It is meanful for us to be close to nature and do some manual labor . So , we mostly spent time stying inside like in a theater , a restaurant , a pub , a bar . I read an article descibing that the main factor could not be the CO2 , but it could be due to the amount of activity of the Sun . Today 's morning I found this survice by chance . I am now working as a medical staff and doing experimnts . Recently I had a chance to talk with exchnge students . I want to communcate with native Americans but it was very difficult . In the restrant or supermarket , I can not understand what they said perfectly . My hobbies are snowbording , golf , snorkeling and traveling . Please samebody help me and I will help you with chinese . friend with benifits ? ? what does `` friend with benitits `` mean ? I serched about it , and found out it 's being `` closer than friend , but not in relationship `` if a guy and a girl like each other , it makes no sense to stay as a `` friend with benifits , `` right ? I saw the major leage baseball . I felt scared and rememberd the Fukushima earthquake . I went to Canada to stady the English lunguage . I wish speak Engilsh very well to communicate with peopel around the world . I live in Vancouver it 's an intersting city . My dear friends and teaqchers on Lang - 8 ! I delated my tutor 's check mark . I did the opposite action . many people were surprised at me so I 'm very ahamed . Luminarie was desighned to give residents hope and light to But whan I played the saxophone it was bery fun ! ! So I love the sacophone today . I went to the gim to exercise my muscles . Shu uemura Mac is famos brands . Also , it practiced my listening , because all of the speechers have good speech . Actually , I really want to stand where these speechers stood . I am looking forward to meeting the other lab members and feeling the atomosphere of another country . It has 8 witing tests that takes 17 hours and 7 marking tests that takes 5 hours and 30minutes . 2 hours witing test in civil law , 2 hours writing test in civil procedure law , and 2 hours writing test in commercial law . I 'm waiting to receive the I - Phone4 I alredy reserved to fiding new informatoin about the delivery Today was complete holyday for me . And a very unfotunately happend . Kansi recitation Kansi literally means poem written grammatically in ancient Chinese and recited in Japanese . Sigin is also very healthy for people because they need tough vocal cords . These days the weather is getting hot with a lot of strong sunshine , but today 's rain made the temperture go down so I felt a little chilly outside . Until a few months ago , I was very happy to get the free time , but since last month I 've felt so bored with my life even if I spend several hours in my institude for studying English every day , The nation 's low labor costs which is only $ 2 a day but $ 3 . 5 ~ $ 4 . 5 in Tailand and $ 4 ~ $ 8 in China attract foreign companies . Now the Indian government agressively lures foreign companies after being the biggest outsourcing recipient because of its low labour costs . I want to practice my English so I 'm writting this ( journal ) entry : ) If she did revive , I would have been happy even she wouled have become a violent cat like in `` Pet cemetery `` written by Stephen King . I need to speak English on bussiness . I have endurance tests once a year , and they are significant for me to evalue my phisical conditon . In the process , many students were afraid of running 1000 metres because we had been iactive in daily life . I was arranged in a team , which has 22 mermbers in totall , and we would start together . Even for a substandard athelet , the time was too much ( slow ) . This was ( still ) remarkable , considering that I had had so much lazeness in my life . She aloways helped me . I 've fallen in love with a chair called Rocky ( in fact this is a rocking chair with a modern desing ) but unfortunately it costs about 3000 PLN ( 1 PLN is approximately 03 USD ) , almost three times my salary Our favourite resturant . I found this site today , and I want to comunicate with somebody . Today , when I looked over the web with my friend , I found this website , I find that it is really useful for us to improve our launavage lskills , I 'm very happy that I can express myself here . Three shots of adrenaline , one shot of panic , five shots of cowardness . But we can not descide which country to go to . And on that day , we were overwhelemed with her excellent dishes right away . She made a lot of `` yamu - cha `` , that is Tiwnese cuisine , and not only that Pitartes of the Caribbean 4 I 'll go to theather to watch Pitartes of the Caribbean 4 . Hello , everbody ! Of course , you should avoid religious or poritical topics . Each lesson takes just 25min , which fits the period of time on which I can connsentrate . Nontheless , I still think that I have to build my vocablarly and learn to Learning from Pillipinos has made me take interesited in their country and culture . They are generous , pantient , and cheerful all the time . Interview for stadying abroad Today , I had an interview for stadying abroad . Maybe , I can not stady abroad . it was verry delicious . Today I have an assigment and more work . > < ; Happy New Year , evryone . I 'm wodering if I should buy a new one . In addition , Janiffer Aniston became my favourite actress since then . 3 months ago , we just had a big disaster in the Tohoku region with a tunami wave . Hellow everyone ! ! Most of Taiwanese , they depreciate both atheletes and sports . Always , I have admired neighbor countries , such as Japan and Korea , who surely put high emphsis on their sports . I wish that one day I could see Taiwanese people and the goverment pay more attention to sports , and treat atheleted well , giving them more benefits and wellfare . If you know these artist please give me a coment . Until now , I do n't know how to use this site so plese teach me . My boyfriend is a more ( older ? ) than me by 12 years , he always thakn care of me and love me . Recently , he had a fight me , because I did somhing that made him lose his fase . ( face ? ) I justpretend to kown nothing . It is very humidiy and hot , so we are uncomfortable . I can bring some spring rools and clues . I became frind with him first , and he said he would teach me gospel piano for free ! ( good deal again . ) So I was taking his lesson once a month . He was teaching a half year seminor ( or class ) of gospel piano and he invited me there . ( It was not for free ! haha ) After I finished that seminor , he asked me and one more student to play at his choir 's gospel concert . Because it was our first time playing at the concert so my friend and I were soooo nurvous about it . The concert was very good and it became a pleasent memory for us . A world famous athlete who was a champin in the 2008 olmpics took his mistress home , and was interrogated by his wife . I felt lonley becasue we had good relations . I have studied English for my career and to see meny internet sites all over the world . However , when she meets my baby , she never fogets [ it ] . I sometimes have mteetings with our overseas local staff in English . Maybe there are some different wayas of thinking between us . I 'm look forward to your relpy . He is a historial person from the end of Edo age . I will go to Hokkaido on a school excuresion . When I was junior high school , I went to Okinawa on a school excuresion . If I go to Hokkaido , I want to eat some deliciouse food . Vaction Plan Fortunately , the reason of the death was not an assasination conspiracy , but a heart attack But the problem appeard after he died . So people who are in the progressive camp think that the politicain from North Korea does not deserve to be buried in the National Cemetery . And the people who are in the progressive camp insist that the conservative campe are using the death of the North politicain as a their political position , giving them the advantage . One woman poloticain , who is in the progressive camp , announced her opinion that she and the party she belongs to will ( ? ) not mention their political opinion over the hereditary regime system in North Korea . Some other people who are in the conservative camp also harled criticism and said mocking things to her . Then , a jentleman from a foreign country escorted me . Yesterday I watched a Vollerball game between Japan and Korea . However , she taught a new member good tecnic and atitude . For any native speaker of English learning Jpanese I am Takuya and I am Jpanese . If you are studying Japanese , I will help you in retern . I always wanted to become an animator or illustrator , but now I 'm studying junralism . First , the acters performed the process of dying with horrow . Second , the special effects were added to the prelimiary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his bory . . . I finally discovered what merody it was , I have heard it occasionally since childfood . as I was looking for another song on YouTube . I have a speech next Thirthday . It 's some knouledge of cheeses . Secound , an example of a faimous cheese . Maybey you 've heard of Camembert before . It 's soft and covered with Penicilium , which gives it a white apparence . Camembert de Normandie is around 10 . 5 ~ 11cm in diametary , normary 3cm in height , and at least 250g in weight . In october 1790 , Marie Hareil , a habitant of Camembert village defended a preist from those who belonged to rupubli . < - - republic ? Especilly because it is useful when I talk with French people Because there are many kinds of cheese in Frace and the French love them . Thanks for lisning . Snow Leopard , Apple 's newest operationg system , was launched today , August 28th . I like the Europian climate . I live in a small Ukranian sity , that is why I can not find suitable courses in my town . : ) Espesially with strawberry jam inside . It is a radio station which is litellary the American Forces in Japan brordcast . They are American Contry songs , sixty 's or seventy 's rock , and so on . I droved too much lately and I 'm feeling tired . The lifes are different from their choises . And when we come back from kala , we went to the school 's labrary and watched 2 movies . Ato said , `` The one who is going for the fisrt time should be at the head of team , because it is easy climbing for the rest of us . `` Then we went down to the starting point and splitted up at 11 P . I 'm watching the TV news now . It saids over 1300 people died or are missing . Many companies adopt this test as one of the conditons for promotions or oppotunities for empoyees to brush up their English skills . The digotal stick for old people , iPhone The voice recorder releases older people from imput their sentenses from a small keyboard . If we prepair the crowd imput system for old people , I think that old people need SNS more than us , but it 's very difficult to use SNS for older people . With iPhone we can put vurious collors on old people 's lives . Hallo , my name is Joanna . I will be greatfull for all corrections . Of course , I like scienece and I really like English , too ! Because one of my friends recomended Lang - 8 , I feel comfotable being with him . My promotion would delay marrige and the birth of my first child . Today , I watched the movie `` Knowing `` sarring Nicolas Cage . I do n't know whether I am intoxicated or not . Unlike Mark Zuckerberg , I 'm not a genious . `` Tomo - chan , eldows off the table . `` I am reary happy with Lang - 8 . weedend and spider I want to be an interpretor or a translater in the future . My firends introduced me to this place , and I hope I can be friends with you . I am writing to you because I want you to deal with a proble . The hearting system in my house stopped working two weeks ago . Now , I am spending an unconfortable life here . I urgently want you to fix the hearting system . I wnat new jeans and etc . In Juny I will be starting a master 's degree in accounting and I would like to find a job in that but I feel nervous about the interview , becouse my speaking is not very good . life would be harder becouse chieldcares in Australia is very expensive . I first started studying English in junior - high as is usual in the japanese educational systms , but at first I was not interesterd in English and not very good at English and I just started English as a part of studying for tests . 03 . NOVENBER . 2009 DIARY Recentry , I do not see the goal / reason for studying english . Why do I study English and yet my command of English is nt improving ? After I get used to it , I want to use a Chinese conversation servise using Skype . Firstly , it helps to organise and express thoughts in an appropriative way for clear understanding . You may want to disagree with this but it is said that caffein makes you dehydorated and your blood flow less smoothly . So one time I really got hung up and I came back home I told my mother that I wo n't leave a mess again and that I will always clean up , and then my mother said `` I was goint to tell you about leaving a mess , and scold you but you really realized it on your own , so I forgive you . . . later do n't do that . `` I na say hi to all : ) then it tured out that I really hate it . I know since it is a yearly actitvity ! ! All of his friends envy him , of cource . So far I have been able to pass fairly difficult exams and achieve good results in various soccer competetions . Neverthless I know that if I do n't put in a great deal of effort , I will not be able to reach such a bright future . Today a friend of mine recomended this website to me , She feels nerveous about the test . I hope that I can find more friends with commen hobbies . It was a wine from Barcerola because I remembered one of my friends from Catalonia reccomended it to me one day . If you read this , I 'm sorry my diary is not an intersting one , but I would like to reccomend you the bottle of wine which I mentioned above . I start studing English and finance ! Osaka is famous for Yakkuza , Takoyaki and Okonomiyaki . So our campus is so beatiful and the facitities is complete . I think everything is perfit for us in China nowadays . We just drink beer and play computer games everyday even if we haev classes or not . Yesterday , I started studing for IELTS . I want freinds , whose mother tongue is English . I preferred chili to any hamburges in Wendy 's , so I orderd it as my final order . I do n't like to write with a fude , because I 've never larned Shodo . I had larned Shodo after I grew up , but still bad . . I always wanna learn foreign languages and I can learn many langaunge here . It is difficult for me to retain German words and grammer . Other countries have other problems , which are purse snatching , murdet and terrorism . When he calls , he says hurringly that he needs some money because of a car accident . This Faraud is dirty , because it takes advantage of someone 's kindness and family love . It has pictures of sandwitch . But , the sandwitch are not the kind we expect . There are many unique sandwitches which were designed using ham and cheese to make a shape of something . well , It 's my first time that talking with a foreigner by telephon . of course , It could be boring to her because she had to treat innumberable people like me . Chinese , South East Asians and Koreans were killed by Japanes soldiers . The results of my TOFEL were released on Wed . Luckly , the landlady was a very rich and honest person . Sometimes I dream that I could sow a sun in my heart , then , I would never suffer from the pessimistics , such as fear , sadness , and anger - - Students in the class congratulte him on this great news . This is my ID , this is my passport ! `` and he said , `` Your passport does n't show your eyes and hair color . `` I was so suprised ! ! I really could not belive that she used to have a crush on my friend . Untill now , I still could n't figure out the reason . Tommorow , I have an international party at the UBC . I do n't have a clue about anthing . All I can do is imagine my idial future . I 'll do whatever I can to get my idial future . I 'm currently studying Internatinal Studies at college located in Shizuoka prefecture in Japan . Crealy , my motivtion toward my major is just decreasing day by day . Paticulary , from January onwards , most Japanese college students will be job hunting like crazy . Regarding this topic , opinions are probably sabdivided . First , as I mentioned above , job hunting at this time is too early for students to deal with , so this silly sequence ( ? ) must be inefficint for sure . When I was in colllege , my psychology teacher told me everyone would be prone to get mild depression under loneless and pressure , which is a psychological sickness that is always ignored due to its ( mild ? ) level . However recently I found one of my friends also got depression with insomnia , loneless , and fear . . I coverd the story of a baseball tournament which was between teams of children from all the protectories in Japan . ( A Protctory is a training school for boys and girls who have troubles Playing baseball is teaching thm how to develop confidece , try things with frends , make an effort and suceed . One boy wrote a diary entry about how he hopes his mother in heven watches him play . One boy who hitted his mother wrote a letter that he would play well , as his mother 's birthday gift . Thank you for visitting my page . Especially the `` cabbeage croquette `` . I have heard of an airticle about some foreigners living in Japan who always put perfume on them self when they lived in thier country . I sometimes noiticed that someone smell 's , but I ca n't do anything so It does n't matter ! I came acroos a foreigner who smelled bad to me because he put on too much . I recovered from the flu after taking medicince . < < < < Tomorrow , I must take a speekeing test ! ! While listening to music , we can eat American foods such as hamberger , spaghetti , steaks and so on . I would like to listen to music everywhere , everywhen ! That 's why Hard rock restatarant is special for me ! ! This jounal is published from the Ministry of Education , Culture , Sports , Science and Technology ( MEXT ) . I completely agree with her opitions . I learnd about the history in preparation of the tour . I sang many English songs , like Britneny , Avril , Taylor Swift , and so on . He seems to think the teacher is asking us about the seasonnings . Another person answered that `` It is essential to clean up the knife before and after cooking , not smoking before cooking , to not put make up on your face and to not wear any parfum . `` ( Interesting ! ) Tmorrow , I will test another machine . I hope that the test will suggest a good perfomance . I also hope to go carifolnia in the USA someday . Nintendo shipped 400000 game consoles and almost all distributers sold out withintwo days . Of coure , I live a happy life and am satisfied by it . According my knowlege , a travel is longer than a trip and needs more than one month . I thought they are famus thai foods . This is the first time I write in English because I was studying Spanish in Latin American countries , so that I worte here in Spanish before . But now , I have been studying English since March and I need to wirte in this language to improve my writing skills . I suffered much stress when I was studying Spanish and I already know that to learn languages is so difficult for me ( Japanese and Englis are totally different also Spanish ) , but after learning Spanish I finally noticed the importance of the language , it is worldwide ! ! if I am able to speak these lauguages I am sure that I can travel around the world , I think . Tomorrow , I 'm going to gratuate from school . After tommorow , it 'll be a long time that ca n't see my friends . I felt it was vey difficult for me . There are old people , young people , men and wemen . . . . The worse thing is that in my local library there are n't a lot of books so I can choose between hard ones and romances ( Maybe I will look for some books more cloesly . ) I went to Tokyo for a business trip . I went to Appi in Iwate for snowboading . Of course I have benn working weekdays . I have two daugter and a husband . The residents of California are afraid of the news that the big one will occure soon . I might be speachless . And basically , it 's difficult to answer with accurate grammer . And it takes time to answer , unfortunatelly . Well , I will do my best ! I 'm not sure hou well I can do , though . Maebe people live in their native countries a long time . Franch is very difficult I learn Franch with my friends . My friends has Franch books but I do n't have one . My friends said `` You must buy a Franch book ! `` So I bought a Franch book . Please recommend a nice Fanch book to me . Mariners starting picher Doug Fister . I like his piching style . Expecially , I am good at cooking sweets . I enjoy these programms a lot . I was bit afraid to watch that without writen help . There is comedy and rommance in this show . Some guy , who is old , I still could n't figure out his job , he brogut the dude over to his house . I watch TV for many hours and pray for safety / the safty of the victims . Last evening , I helped an imployee in the office do a job for a long time . I helped her seperlate a document . I have had a problem with my intenet for a long time On sonday this weekend , my French reiend , and me we will play badminton . becauae , there is no wind all the time . I ate lunch but , nevertheress , I 'm hungry . My first dialy ! There are many interesting shops , good restrants , and the view at night is beautiful . ) Well , I 'll write next dialy soon : ) What was special about thic place ? Give reasons and details to support your anwer . Kochang , my hometonw , is known for beatiful mountains , eel and itshot springs . I 'd lived in a dormitory before ; it was so noisy so doing things like reading books or listeng to music was very difficult . It is safe to leave my stuff on my desk in an apartment , and I can enjoy my persnal life without bothering anyone . but I noticed that I do n't have enough vocabulary in my spoken engish Which characture do u like the best ? I have a lot of things to momorize in the history . They may have to spend so much time momorizing the events and years that they could easily get tired of them . I still need a lot of time to momorize lots of events and years . It seemed to be simpple and easy to use . You scceeded at what ? ? ? Learnig Chinese Because I 'm Japanese and we use same or similar charactor The first part was `` An itroduction of this novel `` the narator said . Surprisingly , as soon as the baby was born , he said , `` Granpa `` . But it is different from Yukara and kimono . I went to a chainese restrant with a friend who is chainese . He is in Japan as a foreign student and so he is a yong man . An intresting day It was diffecalt to commute them . The strongest wrestler , Asashorhu , Yokoduna , beat his friend up when he was drunk . It is said that the Yokoduna should be polite and has to be a good model . This violence by the Yokoduna is a first case in the Sumo 's hundreds of years of history . Last year I took a tew - year leave from my work and went back to grad school . They can probably explain English grammer to us in English and Japanese . There were a lot of forign stuedents there . You should be improtant now . ( ? ) I think , I can speak better english if I dedicate more time to practic . the meeting room has been in a dealdy silence since this morning . I was too busy to write dialy . I will work at my univercity from February to March . Someone said that the first two hours of the mornig are golden hours , and if we want to do inteligent work , we ought to do it during those hours . Today I uproaded a picture for my Lang - 8 profile page . I found this sentense in my English book and thought it did n't make any sense : I will live here untill next month . The plants seems to be called Kalanechoe or Clonechoe . The vender of the phone said it would be sold midle - December . We went to Kimita onsen after work with my hasbund . That was confortable . Second , I soak in tha bath lightly . It will be releaced as a film in 2010 . I 'm a docor in Japan . I 'm interested in Engilsh , space and especially being an astronaut . Although , Chile is very far away from Japan , about half a circle of the erth , 50 years ago ther was an enormous earthquake near Chile , too . They brougt me to Mitsuwa in New Jersey . Cicades are crying as hard as they can during the summer and at the end of the hottest time in a year , they will die out . Hollidays ! Oh , eee ! Fortunately , I believe in it basicallly . I bought a jacket , a skirt , two t - shirts , a one - piece and a bagpack ! If you have a oppotunity , please read it ! I went to the enternet cafe to sent a message to my language study friend . I could not sent it so I also read a website called widipedia . After I went to the internet cafe , she called me and said that she retrun to Bangkok alrealdy . She said that she was going to the JJ market and asked me to go there too . However I plan to wasching my hair at the hair salon and read a book at the bookstore instead . TOEIC is a popular test for all people studing English , I think . So I may have to reconsider my plan to sutudy English . . . I need to go to the citizens ' advice bureau because I need to get the adress on my passport changed . So I 've alwalys wanted to learn how to dance . tommorrow , I 'll write my diary in French . . ! For it is more important for me to learnhoe how to learn and become well rounded . For example , it is very important to learn how to deal with interpersonal realationship . When the one week cancelation was over , I went back to the regulary life in college . I cought four shoplifters in two months . I saw through their eyes , they looked sad and apathetic , so I desided to ask , why It is a popular alcohlic drink . The box was from Fraisier in the neighor city . It makes blood pressuer going down . How beautyfull to have your love . We didn n't met since Thrusday ! We do n't have our own flat and we do n't have enouth money to buy it . Recentry I didi n't sleep , so I took the medicine . According to the papers , some psychiatric drugs cause a bad dream when people stop taking it . ( sme cause when they 're using it ) Google Analytics is the web service for analyzing visiter of Homepages or blogs . This is the visiter 's char of my blog in Japan . I ca n't understand why the number of visiter from Tokyo is larger than that of other cities . I heve many essay assignments . The more I keep doing soocer , the better my body condition becomes . There is a chance that I can enter for free and study Franch and English . But now I think it ` s good that I ` ll study Franch . One American food that I remember from when I visited Cicago is the Stuffed Pizza ! You could be patant for 3 or 4 years , until beeing successful with your business or not . Now I very regreted that I did n't do it . Thank you all for visiting today 's jounal entry . Now I belong to the department of Dentistry and I 'll have to take national exzam . . . I konw but the first impression tend to have a significant impact . I had coffee , toast and a salad with balsamic vineger . My best friend is a tatto artist . Plese someone give me a bento . Unbilieavable ! However , the strange thing is that I 've gradually become so stroing drinking alcohol . It is my first time to live in a foreign countriy so everything is new to me : ) It 's a very serious problem because I ca n't even catch the content of the assightment . Yesterday , I missed submitting my assightment because of my poor listening skills . Sometimes they are foam balls or styrofoam . And when there is n't enogh money simply crinkled newspaper sheets . This book is published by KBS ( Korea Broadcast Suvice ? It is broadcsting on the radio every morning at 6 A . And today is the 4002nd episod . A majority of Japanese people think that if the Fukushim disaster had n't happened , Japan could recover much faster . On top of that , local governments relatively far from Fukushim prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . I found a vedio on youtube that tought you how to solve a rubik 's cube . That reminded me that my father bought me a rubik 's cube when I was a kid , but I do n't know how to solve it . That vedio motivated me to try and play with it again . I looked for my rubik 's cube all around my room , but I could n't find it so I decided to buy a new one . You may mix them together with discretionarily . Eventuall , dip them in your sauce ~ ! ! I went to bed hoping that the typoon was very storon and that it would bring a lot of rain in the area . Of coars , he was dead . I bought a new sellphone . I bought a new sellphone today . For example , he cites video videogame as a major reason why children nowadays are suffering from obesity . To my dispont s , there was no net and no TV . so I coulde n't go outside all the day . I want to leave here immdentily . I miss my comeputer , my dog , books , CD , etc . . . I went to have my driver 's lisence renewed this morning . This fair starts on the 16th and it ends on the 25th I think , so I think I will go at the beggining . In Japan , the wheather is very bad and muggy these days . . . You can eat a lot of oyser in 90 minites . Now I do n't play , but enjoy litening to the modern jazz music . The institution issued a report in which they compared 22 country 's economic potentian and their efforts in supporting OR to support other counties . How do we support them so that they may survive and implove themselves ? Some reseachers and socialists say that only giving money would not be the right way to help . But if you ate it once you would chang your mind . And I think whether the food is strange or not is not so immportant . Today I 'll explane why I 'm studing English . When I was at work , the sound of an explosion surprized me . I would especially like to go to Waseda , which is one of the most important plases for me . I also remebered the day when I finished the speeh , my hand still shook a little , haha , but now I got it . My English is not good , so I want to get to konw Englisg - Speaking people . Thank you for readeing . They enjoy searching for thir mates . A while ago I planned to take the Japanese Leve proficiency test in December , but after I got the forms I had to fill out , I chickened out with excuses like `` I 'll never be able to learn the Kanji I need in six months `` , or `` school is going to get in the way `` and things like that . [ 1 ] I 'm sure somewhen I 'll take the test , but at the moment I barely have the time to study Japanese regularly . It 's quite difficult between work and school , especiall since exam time is starting again . ( They are not exactly exams , more like very important tests , but I do n't know the English word for it ) . [ 2 ] Some kimonos are really expencive but most of them are very beautiful . Unstayble weather That is why UNIQLO loved by many youngers people . Today , I read a research paper , saying UNIQLO is most popular brand among the younger generation espesially those who love the simple life . Plese check my poor English . So now I 'm thinking about tommorrow 's conversation topics . However , I do n't think that dealth is the best way to punish those who commit a high crime . Tere are too many reasonsto make me agree or disagree with the death penalty . becaouse the end of the story is always sad . I 'll working Japanese company as a operater . I am planning to take a trip to Thailland next February . And next I will try to find very very cheap fligt . I 'm forwarding to visiting Thaillan . It is very warm and the cherries are very beautiufl . So , please cheak my daiary . oohu . . . . I 'm a Japanese high scool student . One of my dreams has come true , and of course I continue to persue my other dream ! ! ! I studay hard recently to get driver 's license . it is extreamly boring . and I have to go to bed cuz tomorrow 's lesson will start early in the moning . I bought 4 packs of Sushi and dilicios beer . The purpose is not only sightseeing , but also opening up a bank accout . Fortunetelly I ' was in time for work but paid a lot of money to repair the tyre . Houever , I can not study because I do n't know why I like the kids very much . Maybe it 's because they has a pure heart ? But in my life , I do n't have chilkren friends . Now I 'm traslating `` Just a feeling `` by maroon5 . My neighborhood is like a gohst . Mallard passed away because ger husband returned home . If we analyze the situation , we will find that she feels happy due to the death of her huband not because she dislikes him , but because she is opressed by being married / by marriage in generall . On getting married , an American woman in the 19th century would lose her freedom , her sense of independence and most importantly , her idenity . Therefore , a wife would be happy after the death of her husband sinct it meant the death / end of the opression of being married / of marriage . This is to say a scar of golry . My kindle is Wi - Fi - only , so connection was essencial to get books online . Does it require addictional cost ? However , taking a course for four hours ( two cources a day and three days a week ) drives me crazy . . . This is so confortable clothing for summer season . This is Wafuku , but so cheape one and most of all Japanese girls have it . I like a very warm place and I tried to adjust the tempriture of the apartment but that did n't work . I am SO GLAD that I came home . I do n't want to go out for a long time untill the weather gets warm . When I got off the train at the station , I fell into the gap beteen My name in Japanese means Cherry Brossom . At the moment I ca n't use Spanish at all , and I do n't know even know the Spanish alfabet . I ate a big dinner on Wednesday to recover my h ( a ) hemoglobin . If you ca n't get a satisfactory score , it means you ca n't go to the topest I can write about my mood or interesting things in a freign language everyday . In classrooms , professors sometimes say blees you while giving lectures . DoyoBoshi ( read recent jornal ) is n't done yet because Japan expecially our county have been cloudy or rainy day for those days . The shop was on a nerrow road off the main street . People who are really rich are rich beacuse they are rich in spirit , not only rich in money . I uesd to study hard as well as I played hard , and I 'd like to pamper myself occasionally . Do n't be so tense , get winded ! A nice mood can help you to work more efficiently when you returen to your work . Then my partner in the game made a frim face ^ ^ There were few friends who lived with thier grandparents . The main businesses of Ufa - are oil refinering and manufacturing . Oil is refined to gasolin , kerosine , diesel fuel and so on . Manufacturing is of aviation engines and miscelaneous parts and fittings for airplanes . I worked in an insurance company . I am a system administrator in the Ufa office of a russia insurance company . But I am sometimes nurveous , I can not speak English well ! Today , one of my host father 's frienwds took me to see many interesting places inhis car . There were no words to express my glatitude . First was vocabrary , Next was grammer . It ` s my laziless , and it ` s really difficult for me to write something here , even little posts take a lot of time . Please give me your addvice I was very supprised to hear that . I am now producting a Rice T - shirt . It 's rainig . Weather report says `` there wii be snow . `` Because my mather bought that for me for the first time to discribe that we are very tired ; how to say it in English ? ) I must go to work . I want to becomo better in English , even if just a little . I am going to give a presentation on this Thursday about my reseach project . Recentury , my favorite team is not good . I am biqi and I want to study bouth english and arabic . I sudied english in college . ( a very little bie ) ( Thank you , Jason ! ) Let me practice using the idiom `` open onself up `` here . He loked at the beautiful wirror room in the middle of this lay a dead dog . It is the cheepest one and cost about 100 dollars . * cost = past tense But now I realize that GPS systems are very useful and even the cheepest one is very relieable . But very delicious Sushi are very expencive . In my hometown there is Kinkakuji temple which is a building that is coverd in gold . Then we went to a recently opened shop callde Bapple . Every time I eat sweetfood like mousse pudding or cookies , my friend would tease me : `` if you keep eating these things , eventually no man will marry you ! `` As a matter of fact , I could hardly liseten to what they were saying , because they spoke so fast . He articulated connsonant very clearly . I called the ETS lost and foung office and left a message according to the directions . So far , I have n't gotten a call from them , but hoperfuly they will informe me . At 5pm , we met at the classroom and walke to the pub . Some of them , such as the Swiss guy who organized the party for us , the Chinise girl and the South Korean girl girwould leave Edmonton soon , so we took so many pictures . The South Korean guy turned 25 , so we definately cerebrated him . baseball , tag , or hide - and - seak with their friends . please check the following sentence . ( grammer and logical ) They also have many competiters . Unfortunatery , I could n't join BNO ( boys night out ) tonight because of my job . I ca n't stop reading , so , recentry I am staying up late . At the beggining of Aug , I went to Europe and Dubai by myself for 2 weeks to see my friends . The torndao will pass . It 's a really nice place but there 's someting a bit of trouble . When I was a unvirsity student , I heard a terrible story . The fater felt like he was going crazy and was terrified of the boy . `` It is a good daily practice for me so that I study Englsih hard at the moment `` Watch your spelling ! `` The nespaper I read is called ' The Japan Times . ' `` I want to sing English songs with perfect pronuniation . It drives me nuts somethimes . Oh , I did n't know that I worte so much . This is another problem ; once I start writing about my true feelings , I ca n't stop . . I had a lot of time , but I did n't do anythig . Today , I took a diagnostic TOEFL test in order to begin the process of preparing for this exam . My score was only 496 points ( on a escale of 310 to 677 ) This reminded me of how difficult the English Certifications Exams are . Even the pleasure boats on the Tosabori river were coverd with jolly lights . I happened to see the lighting ceremony , and I saw a governer of Osaka . There are many gift shops selling things which are cute , fascinating and nicelly decorated . Their smile really makes me happy and releive me in turn . I start to plan at least one month before the day of the enevt . Every time I make gifts , I always enjoy the enent itself through such a process . But after our stupid president made the decision , our government said that speaking English is the key to becoming a global contry and they are going to enforce English education on the people . This will help our kids to understand other people and other contry . Obama 's trasportation plan If possible , you should use ( the ) ice sold at the liquir shops . There was a sudden braking with vbration and rattling noises . Finally I 've finished miy exams ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I do n't have a job , so I can enjoy my spare time , which I spend doing funnny things . . In fact , I have been there like ten times before , specifically to my granpa 's flat two blocks from the beach . I feel it 's my place in the world . dinner was delicios . the next day at the wedding I went sighseeing . I went shopping and had delicios food like takoyaki . Have you ever been deppresed ? `` Have you ever been deppresed ? `` , I was asked this question today by one of my associates . I counld not understand what he said . I mean , when I use English , I ca n't tell my feelingness completely because I have poor vocabulary . My parents were wor and I decided to study Korean and a little of English , too . Studying korean is very funny , but I do n't know about grammar . I 'm learning the korean alfabet , named hangul , It 's very interesing . Now , I will have dinner . Good nighr everyone ! The Great Gataby In the spinning room , you ride the bike fixed to the ground , and under the guidence of the coach , you can ride to the rhythm of the passionate music . First , I thouggt it did n't matter to sit any place , but actually I was wrong . I work a parttime job hard three times a week and I 'm gaved enough Eky Cathedral There are two types : one is the iPhone , the other is Andoroid . Maybe you would think of the Olympic games , the New York yangkees , the Chicago Bulls , etc . They did n't turn on the heat yet , becouse the weather is n't cold enough to do that . Finally , thank you Brendan because you encourge me . After that , I hope I can futher my studies and become a linguistician . You can not drive from 10 p . m . to 6 a . m . the day after , on wenesday , Saturday , Sunday and the day before and the ten legislative holidays . Of course , it is not meaning that is to go forwad without any care . K - BOX has a free car service , we took the car when we went there and return bakck to school . Then , people who shake the two dices , the numer added in total if it 's 7 , then you can add a certain amount of beer to the glass if the glass is not full yet . So everyone cecebrated my birthday and gave me presents . Last year the government setteled a new traffic rule to wear a helmet when you drive a motorbike . But I 'm scared even on a taxi , because the driver accerarates for a red light . the life is very hard and sumple I think . . . . I MUST ACHEIVE MY DREAM . All of them use English or Chinese or half and half . I am not sure , so I want to hear your suggetions . Second , I have sent all the agents ' ( have the VIP states ( ? ) ) full names to you , plese check them . After that , could you get back to me ASAPA ? Your website saysat least two letters of recommedation are required , and they should be written by the applicant 's teacher or employer . After graduation , I have been working as the cheif of a non - profit - organization ( NPO ) for more than 2 years . Would it be acceptable to ask a business partner or CEO working at another comapanies to write a recommendation letter ? And I want to drink bowls of gruel and eat steamed burn , which are not easily foung at night . Geogre Lucas is a filmmaker . I think it 's very difficult for me to keep a diray in English . Having acess to TV more encourages people and especially children to watch TV more . So there is lessw time for hobbies or family . It is bad for children 's eyesught when they watch TV too much . It 's hard for me becaous I was flunked as a student . To become a skilfull computer user . I 've heard that Japanese tend to follow the mojority and reject others . They always accusue me of being too stubborn and tell me that that 's why do n't I accept other idea . In spite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summerizing his story , even though he still had 10 minutes left for finishing his lectture . I saw the professor get upset about that , so I raised my hand and said to him `` the professor seems to want to finish his lectture first , so could you talk later ? ? `` and I stopped . Afterward , some of my friends came over to my place and started critcizing me abot it . They asked me why I did that to a vice - president , that was it too inpolite and so on . I thought it did n't matter whiether he was a vice - president or not , he should n't have interrupted our class . However , I also think it might be not about Japanese culture , just anout me . Watching the movies `` Terminator , `` with actor Christian Bale , reminds me of a creppy movie called `` Machinist `` and my experience above . Tommorow is Thursday ! ! And I bought some books on philosphy , problem solving , English study , etc . A Japanese friend has told me somthing about this website and I wonder how can I servive without her . . . When people who live in Tokyo go somewahere , to It 's really different from those stereotypical interviews which take place in formal meeting rooms where you become nervrous and uncomfortable . I usualy try to take a nap , study English . `` How many times a day shoud I call you ? Today , I found a very insterested website , Lang - 8 , from my colleague , Michael . Too ( so ) dificult . . . This whole school has a very sifferent atmosphire . I mean , these are just my personal experiances . I am poing to study English now . I thnk I can write simple English , but not coplexed or sophisticated English . Hi evryone . A few years ago , I studied English with some texit books instead Of course , I still use texit books to study English as well as the question sentenses 1 ) Do you offen play basketball ? I could n't remenber words and vocablary . Dallas Marveliks vs Miami Heat . fortunatelly , I am working for a teaching design degree . Monkey D Luffy is the main charactar in the story . By the way if you are interestede in Japanese , I may be able to help you study Japanese . Because , he ca n't understand why I ca n't understand Engish . But I do n't understand quantam physics . Today is the 16th of April , but it 's very cold , so I 'm wearing a winter jaket . I enioy playing the piano and breathing the fresh air after it 's rained in the jungle . A Nurse of Indnesia . If I could polish myself . . . . In Asahe News paper today , Some of them were returning to their country disheartened . I do n't like examnation even though I know we sometimes need it . I think everybody is born with thier own ability , and potential / posibility . They really wanted to get nurse lisence and wanted to know good Japanese for it . But we have a lot of work for our patiens . essentially , when we intrduce people who came from another country , we helped them with getting situated living here . They said it is too difficult doing both work and studying a second launguage . So far , I have not thought so becasue So , I brashed my teeth quickly and got ready . I checked whether some imformation had come to my email box . I went to a Krean restaurant today . I love Krean food . I am loking for a new cap but I was n't able to find a cap that I wanted to get . I looked on the internet and I finaly found one , so I ordered it right away . The University Entrance Examnation grade will come out after 2 hours . . englishi is slowly driving me mad . I can be happy since all of the peoople present at the wedding reception are ( also ) happy . Please , tell your trategy to overcome sleep ! Second , I move to eliminate my sleepness . And of cource , I enjoy reading it too . For example , the death of parents , attack from deamon , or war , etc . But being in the ocean was so beautiful and it seemd that the visibility was very good . She said to me I am not interested in marridge . I was thinking I have to curl my tongue to make the `` R `` sound untill I was taught by him . Today , I went to a Juwish temple to attend a service with a few classmates . A lady told me that this temple is very flexible and that if you want to experience a traditional Juwish service , you should go to some other temple . That 's why I will go to some other Juwish temple and then compare my experiences . I think , that medecine is my vocation . My 95 - year - old - mother - in - law is in a nearsing care center . My 67 - year - old husband was invited to play the guiter and singing songs at another nersing care center as a volunteer . In fact I felt blue for a few days , so I coud n't write my diary on Lang - 8 . But I sould be a little bit more serious about my messages . I 'm looking forword to it : ) So , I began cooking for myself in the mornings . Sometimes I felt sleepy and wanted to give up , but I tell myself to resiste . As a wizzard , I can research the expension and unlimited world of magic , adventure with friends , study knowlege , seek for treasure . . . and can be in the high class of society . If it is Japanese you need 3000 hours to mastar it . So it will be difficult for you to mastar Japanese . Maybe they want to become some kind of cute or defferent from them . Also it is dificult : ) I came to London yestarday to study abroad . So I do my best to study English , and I made it a rule to keep a dialy in English . This term I shall keep a dialy . The scool 's nearest station is a farm road . Calgary is clener than my hometown . I went to the cemetery with my wife on the 13th where our ancester 's grave is , and offered flowers and incense sticks . Tomorrow I have to go to university and barbar shop , study English , and prepare thant will be 9 . 33 pence , please . Japanese government gave her some gifts as our gratitude because she donated a lot for Japanese people after the big earthquake happend . These days , I try to listne to English . I thik I will become a English speaker if I have a native friend . I was curious abour sex and when I had enough of watching it , it did n't impress me anymore . But they tought I was refusing to mix with them because I felt superior . The best place I can think of is Algiery in Africa . The work is suposed to be broadcast through NHK Tv program `` degi navi teens `` The work seems simple and childish for me , but her skill is wonderful . It is said that singing English songs could help to improve our oral English : is that true ? If so , could you share some of your favorate I was very suprised at the amazing number of people . Going abraod remind me of my forelign life in America . I read a lot of aricles about Michael . It looked like a moutain for me . I 've seen the posters whree a young boy is everywhere many times . Though I was apathitic about golf , It was a little humorous for others , but we did n't feel it was horerious . Especially to native speakers or anyone who can speack English fluently , or interested in studying English . So I am willing to take part in correcting Korean as far as I can . ( or if you have something that you want to know about expression , culture , or whateve about Korea , let me know . I shoud correct this , but I think it will be a little hard for me to correct the habit . Today , I experienced a blackout because of the effect of a massive earthquake and the Fukushima daiichi nuclear plant accindent . It is cool to see famous pepole unexpectedly . This afternoon one of my bosses told me that they stopped sending volunteers to Miyagi Prefecture ( the place that the big earthquake hit direcitly ) . I was planning to make a big dicision and told many people around me that I was going to go there to help people in need . By the way , how do you describe in English the feeling that you feel when compelled to do somthing for others ? He is Fantasista . My Fantasy Land ( Please correct my homework , pleaseee ^ ^ ) It 's bordered by Moonland to the north Moonland to the south , east , and west by an enormous ocean . Another good place in Guiland is Fantas , there is a musuem there that simulates what the future would be like in the next 100 years . There are also many shopping centers to enjoy . I have a question about The Wezard of Oz . I am a pharemacy student who is not good at learning chemistry . I was unaware that my majoy has a great relationship with chemistry . Anyway , I am more fond of physics ranther than chemistry . I have had a headech since yesterday . When I am sick , I feel lonlyness because I live alone . My mother language is Chinere , I hope I can help someone here . Our holidays were going gread ! Since I saw Nakanishi - san 's blog which introduced this servise Lang - 8 , I finaly registered and started to use it . He was transferred to an Ameriaca office for a period of one to two years . But I 'm not an infant , so I have to sutudy more and more ! I have an experiment in chemistry at the univercity on Thursday and Friday . This is my big sourse of distress . She was on that southern Asian Isaland as an exchange student . I 'm interested in natural sciences like astronomy , physis , and earth science . Please make corrections and comments about my sentense ! As a result , he declared that he felt really sorry to his fans and he decided to retire from the enertainment business . I met many foreigners there , and I had an interst in supporting developing countries . . And I want to establish a fair trade company that can help not only people from diveloping countries , but also Japanese people . Fenders are my favorite kind of guiter . Last night one of my good friends from Lang - 8 helped me fix my computer . He installed Japanese and Chinease language support on my computer by using TeamViewer . I am really happy that I can read my friends ' names on my paqe on Lang - 8 . How wonderful he is . Wikipedia said / says that she has Danish origins , we certainly do n't see that in this picture ( but how sure can we be when we know how much the makeup and the lighting affect the colors of the photo ? ) . I can make pudding with milke and eggs . I became his asistant [ space ] ( he called us [ space ] `` Angle `` ) . [ space ] We helped him create his works . He was jentle man . I ca n't remeber exactly when it all began . I think it probably was a good friend of mine who first told me about the posibility of going to Great Britain and studying there . Here in my home town , they only offer a few courses , but the courses available in Great Briatin are ashtonishing : : Filologies , philosophy , the arts , psychology , etc I have been interested in art as long as I can remeber but , being honest , I dont have enough talent to be an artist . And , truly , I ca n't belive this is really happening to me . The idea of moving to Great Britain and to study there , in the beguining , was only a crazy posibility and now it 's almost coming true . Unfortunately I have n't got weekends to slow down a little , sit down and relaxe . When writing a daiary in English I am always wondering if my sentences are right or wrong . ' ' Speed reading . ' ' If I master this techniqe I can read a book in just 10 min . Rynn made some great steaks and prepared fruts and snacks . . only , even though it was not right and she wouldnot n't stop . strong and uncontrol . . . vedio camera . I stady English little by little . The optician gave me a pair of contac lenses . Studying English is very interesiting . I celebreted Girl 's Day for my daughter yesterday . I boungt a curtain for my room because the wind is so cold that Lang - 8 will be very usefull for what I want to do . If I 've done everything corect you will see a photo of my cats . My cats lived on the street before I met them . they were realy dirty , sick and hungry . Most of the time I have to watch the show with the closed captioning on , because somethimes I dont undestant what a particular character , Carl , says . He ( Carl ) is the only recurrent human character in the show and he has a really unique and rought accent . I dont think I will learn somenthing really useful watching this show but a least I lear some more street wise language than in text books . I have to improve my English , espesially writingf , so I 'll start from today . In addition , before going to bed , he put a cup of milk and a few cokkies for Santa beside his bed . Hurrary ! ! ! `` He was in seventh heaven . thank you for waching this page ! I coud n't bear it ! It will give you nominal reliaf . I always hear people talking about stuff like some place in china had a lanslide or a sudden drought in the northern part . It is the tast of fall in Japan . There is a ferry terminal near the station and we can go to Geougetown by ferry . I think I gave the wrong impression when I was chatting with you on the day before yesterday . Maybe it was first time I communicated with an foreigner . When I want to say something I need to search the related words in my mind however I ca n't express my idea properly . My voice and intonation may sound abnormal and I do n't know whether my speach sounds a little impolite or something bad . If I did , please forgive me as it was not my intention . We have a electric time schedure board ( I do n't know what it call ) that they show what time next train comes exactly . If the train comes late even one or two minutes , they will anounce `` I 'm so sorry , the next train will arrive 2 minutes late , please wait patiently . `` . . . S . , I realized a lot of things about Japan , good things and bad things , and accept that everything frexible . seaweed , boild and put mashed sweet beans . . . Fortunately , The Tokyo area where I live is far from the seismic center , so I am safed . We helped him to meak this food , but when people arrived , we had n't made enough food for everybody . So we found ( served ) other alternatives like cakes , fruits and chips ( frites ) . I heard that we can save electricity by unplogging electroncs that are not in use . Another major soure of energy use is driving . Oh , sorry I have drifted off topix Most divorcees were suffring from their finantial problems , because they have to support themselves . Once , a young guy rode his new Hally motorcycle freely on the highway . Then an old lady rode another Hally motorcycle overtook him and loudly asked him : `` Are you familiar with the motorcycle , boy ? `` At last he found a Hally motorcycle lying in the road and the old lay hanging in a tree . My husband went out to learnig Chinese . In the future , I will work as a specialist of coffee and lecture a lot of people on how to drip dericious coffee . I want to do that work since I entried the company . I want to serve ( ? ) dericious coffee to many persons . `` Houichi - san `` cried the assistant , but Houichi was obsesed in his clothes off and wrote Buhhist prayers all over his body . `` Here is his bewa , but no answer . Today you can see a stange thing along the coast . I want to know how to express my truely attitude to a native speaker . Okey , thank you . Ahterwards , she went to the hotel , which is run by Yuina 's grandmother . Ahterwards , Toru returned . Today is raining / a rainning day . I Talked to a Duthman and a Duthwoman on the Train . She is a vewerinarian . Her husband majored in econmics when he was a college student . He said that she thinks that econmis is just figures . Their children study cultual history . I can speak Japaness a little bit . Espesially the ' R ' sound . I 'm not allowed to use the PC in oredr to write the report . Actually , I think it has something to do with lazyness . > `` < | | Actually , I 'm originally from Osaka which is in the center part of Japan . After graduating from university , I started my career as a teacher in Kagosima which is in the southern part of Japan and now live in Hokkaido which is in the northernmost part of Japan . For example , to express `` very `` , people in Osaka say `` gottui `` or `` mettcha `` , people in Kagoshima say `` wasse `` , and people in Hokkaido say `` namara `` . `` As pleasat as the scenery was , I would n't recommend going to that resort . `` I 'm studying alliteraion these days , but there is no one who helps me here . Ocean names need the like the Pacific , the Atlantic , the Artic , and so on . I wathced the movie `` TRON `` last Sunday . I have n't watced the previous movie , so I could n't understand it sometimes . They have yet to develope into adults . Last weekend I was going to get her family Cristmas cards for the Cristmas but I could n't find the cards that I prefer type of design . Last month I asked my firend who would come to Canada on December 1st . I got sunburnt the day before yeasterday , soI got some aloes for treatment . Christams is a big deal for me . First of all , I went to Britain in Feburuaty , and I stayed for a month . Today is supprisingly warm , 59 F ! It has been freesing since last November . all my friends were supprised to find me wearing only one coat . In the last 2 months , I have studied Japanese everday . this summar vacation , I always wake up before lunch or later : D The Tohoku earthquake occered on March 11th , 2011 . I think the people 's view of life in Japan has become devided When I was changing channl on TV . After I watched it about five minutes , I found out it was a horror moive . Although it was horror movie and I wanted to sleep , I still finished the whole movie . When I went to bed , pictures of blood and guts filled my mind ! I should n't watch horror movies at nigt . . . . . . . . But in the moring it is very comfortable ! If I improve my English speaking and listening , I can go to abroad on a bussiness trip . Usually I concentrate on remembering difficult vocabralies . With the rapid development of human industries , many problems appear as a consequences of persuiting excessive profit and being blind to the pollution . Despite the fact that everyone understands this cruel fact , people seldomly take the responsibility to change this situation . The next thing to discusse is deforestation . People cut down trees for farms or buildings igorning the damages to animal habitation as well as the incredible impact to local weather system . First of all , we should be awaring that we would never be able to separate from these problems . It 's my frist daialy . I have n't witten my diary a for long time . Some thngs stopped me from writing . But unexpectadly , there were huge crowds of people there . It reportedly said that noise from a quarreling couple disturbed their neighborhood below , who then called the police fearing something tragic would occur . I reccomend it to all tired people . Its ingreadients were rice , vegitable , fish , seaweed , beans etc . . For example , the menu had `` pudding of Green peace `` , `` mash pumpkin salad `` , `` vegitable tempura with greentea salt `` While we rode our bikes in Mexco , we were always attacked by a lot of dogs . Canda 's Wondaerland Today we can choose different ways to exchange information depending on different situatinos . But I was refleshed / relieved ( ? ) . So , there are a few people in the center of our city , bacause people who live in our city oftern go to the big shopping center that is located outside of the city . Dolittle ( autor : Hugh John Lofting ) I am going to go to the optical shop , and then go to a briteday party for Xiao wei . I have not chatted with Rose _ garden for a long time ; I am thinking of her . . . hie hei . . . . a alitle bit about her . . . Also some of my friends taught me how to say good everning in Frence . . The most famous and popular picture in the world is the `` Monariza Lisa `` by Leonardo da Vinci . Have you noticed that she wears no juwerly and has no eyebrows ? Do you like the Monariza Lisa ? What will the score be in today 's match beetwin Real and Barcelona ? But I tried to behave like , `` No problem , go ahed and talk . `` I 've got surpring news from my friend who I 've known for over four years . It just made me kinda sad since we 've been nice friends actaully . It 's going to be a surprsing party ^ - ^ We are also going to get some presents too which we hope will remind her of Nagoya ! ! It has been runnig in my mind all the time recently . I must say : Chinese food is so good , expecially in Taiwan . But I could n't explain well because I did n't understand the other menber 's research I 'm so navous XD However , since my wife belonged to brass basnd in her school days , At first , I didny ' tknow her name , The earthequake heavily damaged the transportation system , such as roads and railways . Yesterday , the last day , I went to the Hokkey Hall of Fame . I took many pictures with the Stanray Cup there . I ate dinner at a Chainese restaurant . In order to relax , I decided to do some outdoor spotrs . Everyone should change themselves to adapt to the enviroment , especially young men . Here , can I say `` after that `` instead of `` afterward `` without chaging Althought Science and Politics have been developed suprisingly and our lives have been changed to be made more conviniently , we are not satisfied with now . Actualy , I do n't feel like the real new year has come . humm . He suffered from pnuemonia and stayed in the hospital for a month 2 yeasr ago . Fortunatelly she only had to take care of him for a short time . We are fine as useal . Helloo ! ! On the net you can choose from an enormous selection , includingthe paper that you want to read , the field that you want to study , etc , and most importantly : it is you who is choosing , and not who is being chosed as you are with the tv . American drama is very popular in Japan recantly . It was soooo exciting and was n't as dengerous as I expected , I could n't be too careful though . but we Japanese typically like American or Europian fast fashion brands , like Gap , ZARA , H & M , and Forever 21 . A few days ago I got the lisence for large motorcycles . It was a preety good time . When I surfed the net , one of my favorite blogs The movie discribes just an ordinary family , including parents and one doughter going to a high school . There is almost nothing exciting about it , but one little incident in that family gradually reveals its problems and strangeness , which , to insome degree , every human being has , and we sometimes ponder about them . make many friends and travel to many countires . I suggest drinking coffee without suger . I like watching moive with my friends . I mean , in my opinion , they will be happy getting some snacks or magagines which we can get only in Japan . I knew he has strong intenntion . Though he llikes liquor , he will not drink one drop now . But , I gurantee to improve your Japanese skills as correctly and efficiently as possible . The story is in 6 episodes , about skywolker defeating the Sith . The latter story `` Back to the Future `` are interesting science fiction mivies . Every time I see them , I have provoking thoughts on / about the huture and the past . Sometimes I watch mivies English . recentury , I could understand easily English mivies . Volley the ball likly hammering nails . Now I live in Wakayama city , aruond 50 miles south of Osaka . Wakayama is an old town and has a beautiful casstle founded at the feudal age . To sum up , VCS is a really usefull tool to backup the computer 's file automatically and smartly . Waiting for a paticular lettter is hard . I did not kown the answers at all . In fact , I really want to impruve my English . The title is `` ON Long distance education . `` Oh , really diffcute , right ? I want to somothing for people , especially poor people , animals , & lonely young persons . Hou should I live ? But I like the air and the cconversations while drinking . Suddenly , the rain started falling when I was woking in my office . I injoy this way . I wish she paid more attendtion to me . And this year the Mid - autumn festival is held during the National holisay . The day before , it has lasted untill two in the morning so , yesterday my husband wrote a letter and put it on his door . After graudating from graduate school , B found a job at once , but A did not . Suddently , it occurred to me that sometimes losing is winning . There seems to be an agreement where the government asks companies to donate money in exchange for the privilege to promote the company in the park by doing things like like printing the company 's name in pastcards . However , the government shoud not forget that there are some risks involved . Some companies may abuse their privilege by constructing buildings . I thught that if I wrote Japanese first here , then it would be translated from Japanese into English . I went to a chainese restrant with my chainese friend . We enjoyed chainese food . It was good but a little bit saluty . There is one saying that goe `` it is the early bird who catches the worm `` . Most of Chease people have been studying english for very long time , as for me , I began studying English in junior high school when I was 14 years old , but even now , I still ca n't communicate with foreigners very freely , the lack of vocabulary is a big problem when I want to talk about some complex issue . My listening ability is not good enough , especially when I attend a meeting , because I ca n't interupt speaker very frequently like in face to face communication . The landlord is a Singapoeran man . But neighbors had sex almost every day . Sorry , but waht have I written about ? ? If you hav n't watched it , I can recommend it to you . recentry I ca n't drink a Litre of water from 9am to 6pm . The reason is cleare , I am busy at my job . In the biginning , my back was getting chilly ( felt cold ) , My voice turned hasky ( deep ) , I had an unbrella , but I left it at a bookstore . When I went back , the same unbrella were in the unbrella - box . I thought I grabed my unbrella , but it was not mine . After I finsh taking English lessons I alway feel thisty and exchausted . I think English is the language to express somthing and Japanese is Yogert against Hay fever and Pollen dust It said that for people who suffer from hay fever will get better by eating yogert or drinking yogert drink everyday . I told my friend but he said his stomach is also weak for milk , yogert and yogert drink . . . . . . It was really good choise ! ! Some of them are good people and some of them are bad people , but we can relate ourselves to their charactors while we saw a play . Before last scean come , Jean Valjean ( main cast ) make a confession to his daughter - in - law 's fiance about his old sin , then he disappeared from his daughter 's sight . I want to go to the theather in the near futher . Univarsal Tokyo is near my brother 's house . Of coase I 'm not . Seijin no hi ( Comming - of - Age day ) but same as usuall . Hair tecsture is very different depending on the customer 's race . becaues I work hard too . Becides , I really need a scholarship , so I promised that I would get straight A 's for all classes from the start of this semester . I love my language , foreigners say that it is weird and that it is difficult to study , they are just affraid of difficulties . ) ) ) ) I am proud to be Russian and to speak Russian , but it has a downside : I ca n't get rid of my accent , because we have a strong and tough pronounciation . 1st of September is the worst day , ( that day ) my studing will begin . . . My understanding is taht it is a very strong beam of light . . . ? ( Is this corect ? ) Children 's smail are very good . thnak you . I 'm glad to get along with my lovly classmates evertday . I believe there must be some strange power in her articles , for so many people get toghter and remember her . Therefore , I belive I can enjoy more when I take a trip with friends , so I 'd like to choose travel with a company if I could choose . Then Itarians began to grow them for food . Notrh America Do you belive in a spectral existence ? In the moring , a new lab mate came to our lab . Today , I had a conferance . Increasing the treature of wealthy counries make them richer than before . Take China for example . When scientists developed new techique to plant crops , China could stop inporting crops from other countries . admittedly , it is not enough to provide financial aid to poor coutries . Today , I bought some books : books about Vietnum , Obana 's speech , and Shakespear . I 'm interested in Vietnum a lot because of The VietnamWar , and I 'd like you Americans to tell me how you think of Vietnum . I came here to learn englishl . I studey an English conversation everyday . It 's very hard fom me . For two days now , my wife and I have been walking to the park early in the morining The curriculam of the course is so tight that students can not have the time to do anything but study . On the way to my unverity , I often listen to my iPod , on which a lot of lectures are recorded . While she was in the hospital , she slept very well and ate balanced meals , and that 's why she recoverd completely . So thier diligence about English is intense . Their conventional phrases are that `` you need to practice more `` ( Even I know such a thing ) , `` Yoru English is not good enough to heve conversations with native speakers `` ( You have a middlesome attitude , ( I already know that , please go to hell . ) The reason why they do so is because they have high pride about English . And Japanese peope like to boast their special skills like English , programing and certifications . I could see a beautigul scenery . She thinks cram school can not provide the knowledge she needs , but she still needs a teacher to correct her writting . The only thing I can do for her is practice speaking with her as much as I can / as much as possible , but I do not have enough confidence / the confidence to correct her writting ! In my opinion , when people speak / are speaking , they might ignore the grammar problem , while in writting they can not . Even I had prepared for the IELTS one year , yet I still can not easily express things no matter if I am speaking or wrtting in English . What shuld I answer ? Evryone asked me `` How long have you been here ? `` Shuld I answer `` I 've been here for two months `` ? Is it right ? On that day , Angel Gabriel was sent by God to the Virgin Mariam , who ' presented himself as a human . Virgin Mary said she is not marrid . She she hoped she died befot that . . I 'm relieced . ( I want them to learn how to use maney , so it 's not a lot ) I have been studying Enlgish for almost 6 years , but I can not speak English well . I made it with only solt and vegetables and herbs , it was too soon for me to have it though , as I felt something was missing . . . The next morning , I added a bit of a consome cube ; ) I ate some food , mixed ice cream , zingisukan , salad , susi and so on . So we went to choocolate a store . But me and one of my friends did n't buy choocolate . Some of them can impcts you for a lifetime . In different peroid , elementary school , middle school and university , we met different friends . This is my frist time using this facking bullshit ! After all that , I found myself getting off the train holding a tremendous ammount of frustration pent up inside me . I am worried about these triefles I think we are equal wherever and whoevere we are as long as we live . My mum told me she sent a lot of dunmplings to me . The dunmplings my mum makes are always full of oil . The dumling in Jaxin ( in China ) are very famous ! Thera are no clouds in the sky . But I do n't know wnat to do . . . The one on the right is Mattya Azuki ( green tea and Red bean ) , the other is rainbouw : D It was sooo funny . I love American dorama . Yesterday I rented the DVD `` glee `` at a video remtal shop . Memory is quite werid , it can change things with two sides into pure good or pure evil . We may qurral with our friend or may even swear we will never talk again . All we can remenber is how sweet our friend is , and the little things they did for us . I still save the small note my friend serectly wrote to me in math class asking me where to go for lunch . I started diving lessons last yaer . souga - yu If you have catch a cold , you can try to drink souga - yu . Today I seminarys at the afternoon and , in a little while , at night , I 'll return to college to more and more seminarys . I 'm thinking , writing here is more confortably to me , because I can think in english faster ( Yatta ! ) . The bad point is : wo n't work apropriated with learning new words . Watashi wa supein de umaremashita kedo kodomo no toki , irelando to furansu ni mo sunde sumimashita , sore kara , eigo to chotto furansugo mo hanasu koto ga dekimasu . Kono nikki wo yonde , watashi no nihongo no reberu ga wakarimasu . They are choosen by people because of their life style . We exchanged our numbers and e - mail adresses . governments planning an undrground nuclear waste repositry on Mongolian soil . These governmnt do n't want to take the risk of nuclear , and just foist it on the Mongolian people . Tagine pots and dishes , which are cooked in a tagine pot , are popular amang Japanese young women . So it 's healty . I went to a restaurante which serves the Mediterranean - style seafood dishes and I ordered Moroccan curry . That was ture . Have you ever had any serious dissease or injury ? I want to have some friends in forign countries . In my last entry , I wrote about Africa and all the different kinds of wild animals . I also wrote about Drakonsbergs . But my parents think it 's not good enough and I need to become more competetive . Both her face and vioce are adorable . So nobady said `` Congratulations `` to me . It did n't matter to me that nobady said that to me . I think that Mother 's Day is a special day for saing `` Thank you `` to one 's own mother . So I tought I did n't need to say `` Congulatulations `` to my friends . I very much enjoed it ! I 'll be going to `` Sendai `` by train to go shpping . I 'd like to go by car , but My car has been broken sinse 2 days ago . I hope it will be repaird as soon as possible ! ! I have to look at four pictures once and discribe them in a story . I want to speake in English fluently like an American . I think taht I agree with forign . I want to go to Ameria early ! ! I 'm gioing to visit one preschool this Thursday . This is a catoon in today 's newspaper The electronic design coverd PLC , semiconductor circuits , PCB design , C - language farm ware and much more . A ' gap year ' system is as follows : high school graduates who have the qualification for admittion to universicy or college take volunteer activities for a year in his / her country or overseas without studying in university or college . They stay from September till July next year at a house owned by the local government and are paied some money for living expenses by the government . They experience many things during their stay in my town and go home with their precious expriences . This year too , two voluteer youths will come on September 10th . There is a humourous bookstore . I had a farewell party for my flatemate tonight . I 'm not sure , but maybe it 's Korean style Vietnamese food ; ) We chose some vagetable we wanted to eat from the many kinds of vagetable and put them on rice paper . But I 'm a English beginner and I have Inever gone to England . So today , I will write in my diary for the 18th of septemver . Introduse myself . . . I 'm Maru In the pierod when we got together , he was always annoyed at me and never satisfied with me . I do n't have a bycycle , so I have to walk 30minutes to arrive at the hall to sing . It provides you a convinient way to have meals . It is so great to cook by youself . When people talking about day to remember , most of people will mention about any kind of special day like festival , hoilday brithday , grathing day or even day of dating your grilfriend . It is natural for Japanese when we visit someone to bring some souvenirs ( `` Omiyage `` calture ) for them . However , I have no idea if theAmericans will accept Omiyage calture . I do n't listen to musik often . tareksan hon wo yomimasu The liquid from food waste mixed with EM bokashi contains good bacreria . This can kill bad bacreria in drainage pipes . But in this class , we did diverse work using english . For exaqmples : Singing songs , doing role plays in front of the class , doing yoga following english directions and so on . Now I can enjy english . When I was just practicing english speaking , even if I had grammartical problems , I did n't care . I guess this habit is the result of practing English writing . However , so lerning C is put to bed . Also will be great to studdy another language , maybe italian or some slavic ( Polish , Serbian , Slovenian etc . ) This cultures are intresting for me , and words not so hard to learn I think . Distance is not a probrem for me , because it takes 45 minutes by train . But the train ticket is expencive for me . . . The restaurant was quite expencive , but the atmoshere was nice . Thease days I am busy with hunting for a job , but I 'm having problems because of the financial crisis . Another reason , I think , is that I want to change career fields . Above all , I can not memorize Englis words easily . I have a favor today = . = This is my writing examation in this semeter . Let 's make up our minds , stick to it and enjou our lives well . What wiil I do ? It is good that I do not have to go anywhere . = ) I hope that It wiil not be hot in the evening . What will ( shall ) I do ? All airways to Western Europe are all still closed and the center point of the arguments is what level of ash is safe . But I found out that her parents got divorced and she sufferd from it . Yuma rided his tricycle . My favorite artists are AKB48 ( Japanese girls group ) , KESHA , Avril Lavign and Lady Gaga . I do n't just study a lot of things at colleage ; I also do a part - time job . My strength and enery gradually becomes worse . they wore winer scarves , hats and thick coats . I am sure my mom will come to the ariport with my thick coats . I am so looking farward to see snow there . I am good at writing , but I am not good at listenning . As soom as I got home , I had dinner . So I went to buy a present ( wiskey made by Suntory , a famous Japanese company ) for my father today . When a student walked out of the claassroom with his phone on , my teacher , an old man from Anhui , rushed out of the classroom right after the boy , suspecting he was playing hooky . At last , the poor frustrated old man came back alone and embarrasedly in a pile of laughter . The cat is called `` Boss `` by poples . I used to live in a homestay ( hosue ) and went to there yesterday . We keep in touch with each othey by QQ . She does every subject well except math , Do you know he ued to get zero in math so she promised to work hard at it . After that I went to Aulkland Museum . But I guss the best thing is just natural . Remeber what did you tell me when we last met ? Were they esay to start ? I really do n't add unfamilier people on my Facebook , so I felt that it was a little annoying because I did n't know him . Althought I have already gotten material of apartments from their support group . I am able to relux but when I stay with someone else I am not able to really relax . This is the reason why I have not been sleeping well recentry . At the time , I tought the reason why I think like so . Aerobic and Strength tarining I 'm really looking forward to seeing my old friends and wearign a Furisode : ) I 'll take a lot of pictures and , I 'm going to put them here . You must be looking forward to seeing me wearign a Furisode ! If you do not deal with this proems , I will be forced to take a legal action . I am a colleg student . She was the most beautiful Pina I 've ever seen ! ! ! I will be sturdying English about half as much as I usually do . But a snow - covered mounten is very denjurous . So I 'll go to the snow - covered mounten with my friend . I used to go to a camera shop and orderd pictures printed , but I do n't have to do that anymore . Nomally in Tokyo , it is at the beginng of April . This winter was hotter than those of nomal years . I 'm hoping to have another amesing dream tonight . Going along the main road straigh to the city . Thus , after a long day riding , I realy want to go to bed now . But he abondaned it because his girlfriend got pregnant and he decided to be a father . There was an earthquack on 3 . 11 . and creating someting is so fun . But the point is that we are so small to the universe , so why bother being so tired and depressed by something also so little . So little that you will hardly recall ten years later , and you probably will never mention it ever ; like missing a bus , losting a pen , or having an argument with friends . Japan has a long and glorious histroy , good public safty and a strong army , Tokyo is one of the biggest cities in the world , Japanese technology is the best . `` The Japanese gevernment and companies know this fact well . So I decided not to buy a CD plyaer and bought an I - pod insted . To my suprise , she wasnt not far from my sight . She has been there from bigining to the end . Surely , she does n't even know what I wana do with her when I have time . If I can assume her exsistance is destiny , I whould confess my feeling to her directly . - There must be a leader who is in charge of arragning meeting times or presentating their project in front of the group . So , I do not agree with the idea that all group members should be given same greade even if they choose each other as group members , like a team that consists of all friends . First , it is true that each member in a group devotes his or her passion and time to the project with different amounts of effots . ( our professor made us break into a few groups ) While my team was working on an ongoing project , a few students , including me , spent plenty of time indivisually on the project , but the others were just like spectators . - This class always reminds me that people should be diligent when working alone or with other poeple . Today I 'll talk sbout my hamster Subaru . April is the biginning of school season . I had already heard that no one brings musical instruments or sings songs to cheer their favorite baseball team , but I did n't know that venders threw snacks like peanuts or ice cream . I saw some videos related to the baseball stadium venders on Youtube . Unfortunately , there are n't any venders at Japanese stadiums , as far as I know . During this time , I 've been learning grammer rules and vocabulary by heart actally I 'm still not good at English because I 've been studying it on my own . sorry , my ablity to speak English is really basic so I 'm unable to have a fluent conversation . I recived a letter from the job training institute . + peel the carot and the Gobo . + cut the carot into strips . + stir friyng Gobo and carot together with sasame oil ( oil also possible ) until wilted . ( soft ? ) + add the dashi ( soup stock ) , sake , soy souse , suger . The whole world are having thier eye on the rescuing of the Chile miners . The construciton for disabled people at my nearest statinon has been going on for 3 months . Because there are n't famous Japanese celeblities in America and there are few Japanese celeblities there . Probably Americans are not interrested in Japanese celeblities . The funny guy from Russia said that he realized that Japanese women walk with short steps , and he tought that it was because Japanese women used to wear Kimonos . And the girl from Sweden tought that because the women put on high - heeled shoes , they ca n't take big steps . About my horiday So I want to study a lot of languages of different countreis . I exaggarated too much . I visited Tronto , New York City , and Hong Kong during golden week . BecauseI , I think that to review those is more important than to write another . Rently , I have been studying English . My favorite mounths are October , June , July and December . Today I 've just wach an awesome movie , I loved it . In japan we usualy play the game `` nine ball `` , one of the various rules of billiards . actually , I did n't search for it , my canadian obba otld me hahah in 30 years old , I want to be good at speaking in french , englsih , japanes , korean , , ha ! nowadays , I really enjoying watching overseas drama , th title of drama is `` desperate housewives `` . . it is season 5 but , cofidence is importatn in western culture , haha I sort of thought , downd the corridor of the time , this is the first step to improve my english I teach mathmatics to high school students . Workholic ? ! I booked an Engilsh class outside of class . I want to speak more Engilsh . He has an exciteinglife life . I would especially like to see the pyramid , SPHNIX , mummy and so on . There is so much I want to see in person . I was so greatful that one of the parents told me that her daughter really enjoyed today 's lesson and she was glad to see it . It might be harder to learn and collect vocarbularly by myself . What would you say if you presanted Lang - 8 ? On the march 11th , the big erathquake occurred in Japan . New year is just around the conner ! Today , I will take two crasses , bcouse I am very busy . About 8 : 00 pm . , he came home and gave me flowers and choclates . I 'm very happy to get the superised presents , because he always forgets important things . It sometimes causes pain , particulaly in the parts that have a lot of Cellulite . Danxia Mountain is the only World Natral and Cutral Heritage in Guangdong province . As a sophore , I would like to do something different from last summer . The name Tiramisu is ltalian for `` Pick me Up `` ( Tirami su ) but can be translated figuratively as `` Make me less sad / happier `` althogh It 's still April . . taking midern Exam . I studied in the lbrury untill midight sometimes . Today , I was walking to the liberary . Hot yoga is doing Yoga in hot room where the temperacure is 40 degrees Celcius and the humidity is 65 % . It 's a very hard Yogo . Everyday when I wake up , I first power on my laptop and log into QQ . QQ is a software program like MSN , and in China is the major instant messenge program . Though I have been learning English for about 10 years , I 've never tried to call foriengers in English . When the phone connected , I said hello to him in Chinese naturely . My point is that the bad thing is not that you are not good at something , but that you are afraind of having a try . Keep on leraning . Good Morning ! I am from Thailand . My name is Jirawut . I have decided to patice writing in English here . I hope it will improve my English . I hope someone would help me . Next time I would write about beatiful places in Thailand . I plan to learn Technick English next year . I feel warmy today : ) But I saw many people taking the exam . I hope many people get to be nail artists in the furure . I really want to volantter for those who are suffering but I do n't know what I should do . If I had the time , I would go to the worst plase to help . I guess harricane are common in my local area . If I were to experience one of them , I whould hate tunami the most , I choiced two places . We can see the animals close up and observe their behavier and abiliies . My recommend is the behavior exhibision of penguins . There are sveral lavender fields in Frano . We could see the sprended lavender purple view , and we could smell the scent of lavender . Of cource , Kyoto is one of the most famaous places in Japan . I thoght that game was not interesting but they were so patient . I 'm supprising about this site . If I had found this site earlier , I would n't be worred about my writing study . I was even wearing a nitted hat with `` I love New York `` on the fron of it . We need oxyzen to beathe but we easily forget the importance of it . I just realized that how easily I can be sofficating without this . anway , I 'm tired of using big letters , such as ' I ' instead of ' I ' , that not only that but this mark ' meaning ommision as well . I watched ' Butterfly Effect 2 ' , ' Vapoorize ' , ' Pirate of the Caribian ' and now ' Insadong Scandle ' it 's about the restauration of old Koean pictures . The number of your vocaburary Have you heard or thought of how many vocaburaries words a naitive American or a native Britan knows ? I sould cange my password . . . So I want to improve my Engish . If you find any mistake , just crooss it out . I ca n't blog in Frech , , , . Design is all of its value and Design createa new philosophy . `` by Kazuo Kawasaki I heard that soda makes meat soft and actually the staek was soft even though it was cheap , and it did not taste of / like pepsi . There is a statue which looks like an openning book . Today , I feel like writting about myself . I always go sufiing during the weeked . Sufiing is very popular in Japan . I speak a llitte English . . . . . . . I 'm looking foward to receiving your message . They then hold a perty to uncover the baby 's gender . They may make a cake taht may have two differnt colours inside . I am a college student frome China . Moreover , there are many diferent kinds of videos that you can choose from . I 'm going to go pick up noe of my friends at Nriata airport . Sometimes , it takes a long time to see them , and I have to wait quite a long time at the airprt . They all seemed such kind people and made me feel comportable . This night , there is a TV proglam showing a movie called , `` Harry Potter and the Goblet of Fire `` . It 's realy hard for me to understand what they say ! I did n't neccesarily take the exam lightly . However , I was too hungry , dizzy , sored in every part of my body and sleepy . In the Tokai region , the central region of Japan , a big earthquake happend early this morning . The oscillation continued for more than 3 miniutes . He might be genious so I 'll give up adopting his method . I love department stores even though they are a littel bit expensive because they have many atrractive things such as cool and fashionable clothes , decorative talewares , and delicious sweets . Yesterday , while seaching around the web , I saw this homepage . This is my first time writing a diary on the web , so I am really nervious now ! My gragger especially sucks . Last weekend I had a pearty with my member for new staff coming to this laboratory . In Canada , I want to make new frends all over the world . Of course , not only will it be more expencive but it will take more time to get there . It 's not confortable living in my house because of its bad location in spite of remodeling some parts of it . Campared with my new house , I think it 's very inconvenient for me to live there . - A gray plane with a red dot on its top rotates according to the place of the mouse on the stage , which shows how the rotaionX and rotationY properties work . It was good for my shoulers ! ! There are many foreigher at the party . It has been a long time since I have spoken English with foreigher . I think Japan is becoming weaker but Sigapore is becoming the center of Asia . I 'm in college learning Russian and Europian philology ( philosphy ? ) , also I try to study English and Japanese . In Japan , we ca n't buy cigarettes from a cigarrete machine without a Taspo card . countries , and the other is about coexistense of different cultures . When I study them , I go to the lerning center of the Unversity , which Usually I tend to get nervous and sweat in those occations . My hobby is dencing , eating and cooking sweets . nobody belive me And I also like ' just dance ' and ' beautiful drity rich ' . The desire for money , fame and all the beautiful drity things . I 've been thinking / contemplating that I shoul study English for university or preparation for studying abroad . We learned the Present Continious and Present Perfect Tenses in Hindi = ) one of my favorite alcoholic drinks is RHUM DU PERE LABAT . T completly . Beseide , scholarship for students who want to study abroad is impossibly difficult to get . Though many Japanese are rich and they afford educatoin , I beleive we need changes in Japan . On the way ( there ) , we bought some ingredients for sandwitches . This is my first writng on Lang - 8 . I have to learn English and little Spanish for my buiseness . Therefore , continuing to eat a lot of junk food means exposing yourself to the dangers of gaining weight , diabates and other diseases . Secandary , it spoils children 's appetites and promotes bad eating habits . I am telling my friend about past things but I am not sure about grammer ( tense ) Is that correct ? I could n't contact her but I guessed I could of met her if I went to her restraunt `` As a result , I met her at her restraunt . It 's like jazz music , but more noizy , with lirics . The name `` Baduanjin `` refers to 8 differnt movements including shaking wrists , lowering your head and hips , and swinging your entire body . This is a very popular blog in the United States of Amerika . Last night , my American teacher told us she had a bad experince in China . because her passport , make up and even her money wer in the baggage . but she could n't remeber the taxi number , so she did n't know how she could find it . aften she wrote the form , she looked around , and she saw a bagage in the office coner . Yesterday , I took part in actibity in my circle , university COOP . recommended them mutual aid , new PCs , new electoronic dictionaries and so on . That 's why my birthe is in June . Then , Shinobu Moromizato who was the second money list player in Japan appered our behind . My wife said to her `` Hnag in there ! `` , She said to my wife `` Thank you . It 's been a long time since I 've writen something on here . I do n't know what to write dowm . And I have not maken the decision if I will stay here for my whole life . It was very . delicius . I think that superstars lip - sinching songs are not a singers and their music is not music . Becouse I do n't know what would be interesting for me , and I thought it would run out of battery quickly . and they downloaded it to my iPhone without my permition . konno eiga no namae wa `` grave of the fireflies `` deshita . Yesterday , I wrote I was not interested in snowboad , but I watched it live on TV at noon . The sea water tastes solty , therefore , the sea water contains solt . The theorem is prooved , thus the experience will have a good result . proved However I did n't need ( to do ) it , because I did n't have any maney . I always keep my diary in Korean , so I want to say hallo to people who are English native speakers and read this message ^ ^ Soshite sono rekishi ni te wo kuwaeru koto wo omoitsuta ( lembrar ) no da . It made me feel wormer . When we see the pictures of the past films , we feel that it 's so old , but today 's dramas , pictures and what 's more , scearns { ? } of today 's life are soon becoming old . Suprisingly , on the forum for `` I want to meet soon ! ! `` in both SNSs , a lot of messages were submitted by women . Obserbing the board for few days , it seemed that the messages were written by prostitutes or an organization , that infested the SNSs . I look into the imformation paper to make sure , and I found out that my understanding was WRONG ! ! ! and I will applicate the S . So I replied to her on what I had beeb doing before and asked her what she had been doing too . Straight after we made an apointment to have lunch together . We spent the time just talkig , using a lot of technical terms and eating a lot , Forgetting their daily lives , two mothers enjoyed thier past golden days . Tommrow , I 'm going to `` Hiraizumi `` , which is a World Heritage Site . We had grilled chiken there . Complaint ( complain = verb ) about wrok . . . Important things for lerning English : The chocolate cake they served as a desert was especially excellnt ! I 'm hungry for success and am making an effort just like I do with bpxing ! ! ! My herartbeat is strong I attended my friend 's wedding last suterday Saturdayand drunk a lot ! This little thing reminds me I should show more acceptancy towards my parents , and try to say ' thank you ' more often . I think that I will sleep all this weeken like a dead person . B : You never know . ( You dont know untill we do . ) I went to the studium to watch baseball games of high school students gathered from all of Japan today and the day before yesterday . I do n't like both playing and watching baseball so much , even of proffesional athleats . They never give up to win the game , and it seems to be in a defficult or dangerous to keep playing . They do thier best for thier teammates and their dreams , without thinking about next game or the future . As soon as we got home , my children said , ' we want to play succor . ' But , because of developing countries such as Korea ; Tailand will be abjectly damaged . With Saudi Arabia 's will to increse petroleum production , aimed at stemming unrest in the market , the price of oil will easily get back on track . I went to the spermarket . . . . . I went to the spermarket last week . When I tought her , she said `` Thank you . `` to me and left . Today my professon was about 20 minutes late to our final exam . At language learning school , my teacher adviced me advice to keep a diary everyday . It must have been irritationg for the players . Althoug they did n't get high grade in schoolthey always do well in physical education . I study Engrish and chinese at university . I would like to explane even half what I am thinking and first I should be making some forign friends . Ohayo gozaimasu . Hajimemashite . dozo yoroshiku . I do n't konw what job I want . I gruduate next year . Next day I drove to Saitama studiam with a friend . It is very big and suggested a world cup succer game . Article detaile I thought manybe somebody sent the wrong number and by chance the number was mine . I thought he wanted to cheat my mobile phone company because he asked me to sennd a message to unknown number . And we are having small party with Familly or friends on Christmass day . Is this ture ? ? ? If this is ture , I want to live in another country . anyway , l studed English , specailly conversation . So , my prononsation is better than before . . But , I 'm not good at forming sentense in english . . Today , I went to an exhibiton called the Seoul Design Olympiad . I requested a black foret cake / gateau . I was going to go to work by train , but on second tought I decided to walk . My favorit Practice for English because I ` d lile to siginificantly improve ( or enhance ) my listening ability . I normally get excited seeing this unusual weather in Tokyo , but this timeI I hope that it would stop soon . it is a a taough question of life . I want to be a musicaian , but its taugh to be one . Stay hungry , sray foolish Since I have participated in an English speech contest and pracriced a lot ofspeeches , I know some famous speeches , such as `` I have a dream . `` When I feel deppressed or worried about something , I listen to it . But around starting sophomre year , He said he wanted to constract the way of light . The ingredients are topatoes , Japanese radish , carrots , taro , konjak jelly , mushrooms , chinese cabbage , welth onion , pumpkin and chicken . And last , season with moso . They were good taste , healthy , nutritions and work for warming me up . I made a sentence , which uses `` that `` anad `` which `` . There are sentenceswhich is use `` that `` anad `` which `` . I am wearing a short t - surt , which is striped blue and gray . The t - surt was given to me by my girl friend last weekend . I have some friends who are forginer . My friends , who are foreigners help me with my Englsh . A great thunder came and it turned the sky puple for just a moment . Then a long , heavy sound crashed out , and it started raining for five minutes . My opinion is that the hydrangea is a flower which looks better on a rainy day that eny other flower . It 's ture that the early bird catches the worm . I made it thriough the interview , and I can work in the company . It is very hot but very dilicious . Secondly , we can spend more time with our amily . Thanks to mobile phones , we can keep in touch with other people easily , make apointments easily and speak with friends easily even if they live very far away from us Mobile phones are not only for talking and sending messages , but alsof for enjoying music , taking fhotos and getting information . But we should n't forget that talking face to face is a better way to undersatand each other deeply than using mobile phones to communicate with others There is a bamboo thiket around my house . Aan bamboo sprouts come out during spring . Yesteday I also went to sleep at 4a . I searched for the nobel , `` Christmas Carol `` by Charles Dickens . So I asked the selesclerk , `` Do you have ' Cristmas Carol ' here ? `` I found some sentances that are a bit difficult for me . Now , I have n't yet had a good conversation with forign people . I take some supplementals regularly so I thoguht it would be a good time to buy some extra . The pharmercist told me to take them `` theoradically `` . I think , my halth has gotten away somewhere . The first band that I listened to was `` X Japan . `` After that , I listened to `` the GazettE . `` When I watch anime , I like to listen to the oppening songs because sometimes some good artists play the intro . music . A example of this , was when I watched Death Note . I liked the very first oppening and ending song a little bit , but when I listened to the second opening , The music was from : Maximun the Hormone . New tryings for learning English I 'll try to write in English dialy for the next 2 months . Sooner or later , a super earthquake and tidal wave is coming to Japan with a smile , to give poor Japanese a presious lesson . We have to stop the Hamaoka nuclear power plant as soon as possible , or we will have to see a very beautiful but harmlful fireworks again in the next 20 years . Tydying up ! It 's so flustrating ! This tragedic disaster reminds us of the preciousness of daily life . Today I have come to Seatle for business . I want to go to `` the first starbacks `` , if I have enough time . Any unclaimed or unlabeled dishes , culture wells and bottles will be thrown out when I see them . I have a lot of homework now , but I do n't have enourh time to do my homework . the band 's name is `` flower trevelin band `` We gave her a raincort and rain rainboots . she was supprised and cring beacuse she had been living I saw them for the secound time , in the summer at Summer Sonic 2010 in Tokyo ! My will was weak against the allure of alchohol ? I think alchohol is kind of drug similar to as tobaco . In addition , I always regret dinking too much next morning . I know several people dislike the use of code - swithching . I think that talking with sby is a good way to know and understand each other . I had dinner at Matsunosuke , which is a neighbor restaurant . I want to be a high school teather . When I was a high school stuent , I disliked sience . So , I want to tell them that `` sience is very interesting ! ! `` . I am not used to wrighting English , so these sentences have some mistakes . In order to opt out of the urban congetion during Christmas , If I can communicate in English , I could know more about wouderful sights It might have spun too ( storong / quickly ) . I have a handy electorical remover for clothes pills that I used this morning . I got a call about his death on Monday and dushed to his home . PL means a plivate lesson . Next week , I 'm going to take a plivate lesson for the Eiken interview . For 1st gread . . . . . I 'm studing English My husband cooked `` gyuhniku ( Ausie ? My name is abdullah and I 'm from kuwait . I studied at kuwait university for just one term and then left because I 'm not good at English . I have to be good at english , so I went to New Zealand to study the english languge because it is a very nice cauntry . I find many lovely people here , and I love nz so much and I feel very comfortabel in this country . my winnter holiday has finished There is a culture gap between us and I ca n't express my throught as fluently as they do . I think Accouting is neccesary in our lives . I hope todo work for abig company such as SamgSung . SamgSung is the biggiest company to comeout of Korea . And I hope I will be afamous cerebity out inthe world . I think my strenth aresuitable for theMarketing field . I have been trying to learn English so I came to Souht Africa 8 months ago . Today was truely a hard day for me . After noticing Oni , children begin to throw soybeans against Oni saying `` Devil out , Fotune in `` . Then Oni eascape from the house through the windows . We believe these actions can get rid of the bad spilit from our souls and pray that our heath will remain resilient . I do n't know the specific origin of this custom however surelly it has lasted for so many centuries . Also , Japanese knows about grammer I was going to stay at a friend 's home because he wanted to talk about his devorce through the night . I am exitedly wondering how the story will end , but I 'll miss if it comes to an end . My psition is Forward . I am reading a book and I do n't understand something about question - tag It is difficaul to me but before I asked Rosie on MSN so I would like to ask you again . Beforehand , I was so nervous about the lesson with foreign teacher , who was Phillipino . I want to try to have a bussiness topic conversation with another teacher next week . By taking pubilc transportation such as buses and subways instead of driving cars , people could help reduce pollution . I think we should reduce air polltion . We entried in the same year , 2001 . When I entried into my company , I thought I only would work here for 3 or 4 years . and I will put in a lot of effot tomorrow . Lastely , he said it is Japanese AV video that stands for `` adult video `` , which is considered to be pornography . People from foreign countries think of Japanese girlds as self - effacing and demure in my opinion . Why is it that so many Japanese girlds appear on the AV scene , exposing their nakid bodies boldly even if it 's slightly behind the scenes ? But there is a reason why I am working hard recentry . Recently , I have discouvered that my English has improved . After all , it 's totally not enough to have only English as a speciaty . During this time I have got to know the advantages and disadvantages of live online teaching and have developed my own tequnics to offer my students the best online German lesson . Healthcare system managed by the government can , to a large extent , avoid inequal treatment among patrients and lessen the gap between the poor and rich . On the other hand there is enormous impirical evidence that private hospitals do not have to be inequal or useless to have a negative effect . Fortunetely he is still alive somehow . potencial players and they have feasibility to win next season . My doughters were so glad to look at it . Takoyaki is a type of Japanese jank food . Japanese tasete seems to taste too light for him . `` You do n't have to study Chinese because I want to keep my conversations securet `` . Therefoer I 've given up on studying it , and now I 'm studying English . The animae is just ordinary at first but it become awesome later on . 86 % of those who have a executive car are not a millionare . Four out of ten millionares enjoy drinking wine under ten dollars . It is similiar to his past book . After he finished investigating the millionare who have more than a million dollars in net assets except for their house , he tells that millionares who have a house worth under three hundred thousand are worth three times more than the millionare who have a house worth over a million dollars . 40 % of the millionares drink cheaper wine , under ten dallar . One is kind of selfih , another is very nice , She will leave here soon . Basically , I dont expect much and I would be fine as long as I have lady friedns that I want to talk with . I ca n't belive this news . It 's because I 'm now learnig french , and I often read ' rurubu ' whith is a very famous journal magazine in Japan . The wheather is cool today . I hope the wheather can be warm , but not hot . My face , neck and legs got sunburnt when I came back home . Fortunatuly , I had both a Japanese motorcycle and car license . PPoor people are using motorcycles in that hopeless and shitty island . I already have a Japanese motorcycle liense , but I have to pass the test in English . this moring I got up at 6 : 30 . I love going to the museum and aqualium . * picture of fake cekes This is Cranbery Walnuts Cookies . For example , there is this super genious kid . It 's interestig to correct others ' writing and have mine corrected . It is rare to find people who can speack Frech well . What a wanderful day ! In spite of my passion toward English , there is no improvement in my writting in English . It is hard for a beginer to study by himself . I came back to my hometown from my groundmother 's house in Yamaguchi . I want to be an expart in nurtrition . But before I saw the mountain of KandWonDo , I did n't think like that . I can feel the strongness and spirit of the painting in the KangWonDo 's mountain too . I wonder if I can skipp it . . . My first impression of the city was that it was absolutelly multi - cultural . For example , we visited Chenese temples and Islamic mospue in one day . And if we wanted to see wild animals at night , we could join a night ture . Actually , even my university ( which is not as big as Kyoto univ . ) has many Muslims , in my labolatory too , and I wondered what do they eat in the cafeteria . To understand religion , it will be a good oppotunity ^ ^ Though my boss says that I can go to Swithland next week for a business trip , if your friend goes , you must want to go soon , too . I am starting to write my English dialy . I want to comunicate with my collegions , but my English is poor . So I 'll try to write dialy . The boys have to play very hard from the first minute and try to squeeze in a gol . I meet a nightbird netpel . The ULR below is the message . Flitzer from Munbai We have been expecting you to be in Munbai with Kazuya . you should do everything possible to visit us in Munbai . Thnak you and have a nice time ! Many ads and commercials do give important information about products ; however , some of tem are merely misleading and deceptive . That 's to say this sentance : Many ads and commercials do give important information about products , however , some of tem are merely misleading and deceptive . Question : Can we change the sentance into : I startet work at 1pm . From the very beginning I was in a lot of stress because the guests were just flowding in . And at 3pm the chef ( or cook ) told me tath our cold kitchen cook would be leaving on Wednesday . . . . The airline company I took launced a new check - in system , intended to increase effectiveness and efficiency of check - in procedures . I Beg a Cat 's perdon I think it is good to heve a better relashinship with a human . I whoud be free ; ) The merit of the smorking habit `` Smorking results only in death . I love smorking a lot . Smorking gives me time to rest . Smorking allows me to communicate with other people who smoke . We are criticized by non smorking people , Certainly there are many bad mannered smorkers . and smork in the areas where we are forbidden to smork . I want to protect the culture of smorking from such bad people . I went to dinner wth my wife and aunt . It tasetes like Miso soup and was a little too hot for me . I really want to be a bereaucracy , so I had searched for a good teacher . Therefore I dicided to enroll in this school . I 'm 17 years old and I am going to university this autumu , but my mother continues to treat me as a seven - year - old . Hope you can get out of this troble . but I persevere in my studies to enter the univercity . I 'm going to study Japanese history at the univercity . Also , I 'm intrested in music . Sharing thoughts , opinions and my photos with my close friends is really fun and intresting . After I pratice writing on my blog , I want to become a good writer . Tomorrow , I will get up at 8 and in the afternoon I will go to hith school and watch the girls soccer game . But unfortunatelly my wife dislike insects . My husbant 's mother made sweet potatoes last autumn . This is my first - time writting on this web site . = = = Plese correct this = = = Today I caought a cold and had a little bit of a fever . I feel so grateful for their nurturance . I go to elementa school with my best friend , I hope our friendsip will lasd foreve So I 'm going to save electricity as much as plssible for now . I went to a pictorial show titled `` The bridge of frendship between Turkey and Japan `` . Most paintings used bright coler . I thught it was a good idea to hold a show like this . One day he recerived a telegram from a reporter he had sent to a neighboring city . This friday is final clases ! ! ! ! ! Most christians go to church on wednesdays in korean . I love speaking English , but I need to practice the patterns of Englisg sentenses . I have registed as a member here for a long time . my favirit song . things to do , but I shoud do them next week . I 'm looking foward to going to a concert ! When it comes to a finacial or economic matter that I have to study , I just want to committ suicide . Anything involed family matters can be very complicated in real life . I eate curry earlier tonight . It takes 30 minits to get to my workplace from my house . So please correct my setences . Today , I got up at 6 : 30 in order to practice tha bass . It is so hard to spend enogh time doing all I have to do . 1 . I thought , `` I want to study English and I want to speak to many peple `` . To tell the trurth , I hate commuter trains . I believe they are going back home from their offie . It was is the owtumn colors - the season now . Each of the Japanese cakes was a lovery shape and coloful , but 800 yen was rxpensive , I thought . I said , `` plase sell me this singly ? `` The saleslady said , `` of couse . `` I was n't laughing ; I am a high scool student . I went to the libary , made libary card . But , good at dancing and playing the guiter and fashinable ! ! I like English very muvh . English brings me nwe life . I went to Austrelia to study English for a few weeks when I was high a school student , but my English was very very very poor ( ( + _ + ) ) ! ! I was frustraed but I really want to be good at English , because my time in Australia was very fun and exciting , so I thought I 'd like to go again ! ! ! I could speak and understand only a few words or sentences , but I became happy when I understnd what they said or they understood what I said , even though it was jast a few phrases . Yestarday , I wanted to see some news , and I saw some people said the world will end . I did n't believe it , I think those people are very chirldish , they do n't know everything about the future , and just sprak what they think . Which is the most appopriate way to express my gratitude among the following ? It 's easer to write on than my Android . Its action and music were good , but main charactor 's acting and the story were not . The movie just took the charactors ' names and the power of the main charactor but not the story . The swet wo n't stop . I was allowded to go to another country for 3 weeks as a holiday after I finished my frist year . I have decided to try reading only in English for about a mounth or maybe longer . So I desided to read children 's and young - adult 's literature for a while . Tosay , I looked up a word in the dictionary , but what does it mean in English ? I usualy go to my English class by bicycle . This book is writtten for a studen in an easy story . We can acquire the skil of logical thinking , collecting information , judgie , decision and excution through this book . I think Philates is good exercise for a healthy body . I cleaned my room and it comed a beautiful room . Because I 'm a Japanese , she maybe nurvous . I 'm ging to go to Tokyo on a school trip . I went to Ajinomoto stadiam to dance . Afeter the game I went to dinner with my friends . `` Katu curry `` made by my father My father cooked curry with `` Katu `` . `` Katu `` is a fried pork cutlet coated with breadcrumbs . It is verry delicious ! I want to meke curry like father does . I 'm really sllepy right now ! ! I 'm going to visit Hawai in May I 'm going to visit Hawai in May . I quit my job two manths ago . Therefore , I guess our company recognized her skill and actual achivement and offered an extention . This test has 200 questions . ( 100 is Listning section and 100 is Reading section ) Yesterday , I had a sore thoroat and a cold . This morning , I felt much better and refleshed . My Japanese teacher gave me many articles and asked me to thanslate them into Chinese . And I have some words and sentences that I do n't disunderstanded . You can view updates about the earthquke in Japan from the URL below . today my cousins and I went to `` wuxue `` to gaher peaches I think that his is earier than mine ! ! ! I am not the only person to have suffered from a cough , running norse , sore throat and general bad feelings . There is a cold circulating aound this area , is n't there ? My yonger brother turned 20 years old and he will go to the Coming of Age Ceremony next January . My English skill is inferior to this skill of ohter students of my university . and I practice the guiter by myself . I love music and listen to vorious kinds of it . I do n't know that I can contenew to write on this site untill then , because I 'm not good at English and I sometimese negrect it 's studies . I not noly learned a lot from the work but also made a lot of good friends . My favolite singers areYUKI , RADWIMPS , and Jason Mraz . this afteroon , my boss told us to work during srping festival . This mornnig I had a seminar on the Department of Foreign Trade instead of working in the office . The main point for this saminar is document export . Ryoma lived in the Meiji Rra in Japan . convenient : My house is located in a convinient place . wrods . When I was in a high school , I studied a few subject that I was n't particularly a fan of , but it was compulsery . I 'd been thinking that I would have found a way possibly to hacket it and get myself video games on there Becouse , I do n't like vegetable . I am not sure if this site is based upon some applications such as joomla , drupal , or develped independantly . . . The first book I read this yers was `` Water for Elephants `` by Sara Gruen . Time flew by so quikly , during this time , many of them have gotten married . I met Iidabasji in Tokyo . I 'll try dinner at Iidabashu from now on ! She said `` The doctor told me not able to have an operation , so treate with irradiation `` I really want to improve my English writting skills . In addition , this also aplly to onomatoponia . And I think this is true for other launguages . What kind of education have foreign people had ? ( especaially in their primary school days ) Althought we do have some good sightseeing places such as a great view of the shore , and clear atomosphered mountains . Not many visitors visit our city due to poor transportation . To promote our town 's good areas , I would like to be a tuor guide so visitors can come and know our town 's good points . I would like to be a tuor guide not only for job but also for my own benefit . I do n't have somthing to wirte . But I do n't have somthing to wirte . The most important topic for me is their daily schedual . My farst diary . please revise my sentence But , if I have been playing sports , the pein eases up . Cuz 's boring . American , British , Eest courst , West courst , etc A journalist asked his Japanese colleuage But I do n't have enough vocaburary to speak fluently . Their pronuctiation are so clear and not fast . My pronunciation is n't your bussiness ! Thanks Lang - 8 and my correcters . I ca n't stop writting them easily . What I want to write is that I want to speak `` Diseny movie 's English `` I am a high scool first - year student . My scool is located in Saitama in Japan . But my scool is in a country . My faverite writers are Miyuki Myabe and Hiro Arikawa . Spring vacation starts from tommorow . I love travle , music , sports , writing and so Yesteday night my father told me that he wants me to be a solider while I 'm at college . When I was young I thought that soliders should be the greatest and kindest men in the world , and my dream was to become a solider when I grew up . But for now , I have to think about my future . Maybe being a solideris would not be me , for I 'm a college student and it 's an imortant time for me to learn skills to adapt the social world . If I enter the army , I might not be able to learn as much as I would like . That 's really a big problem now ; I think I wo n't be able to fall aslep tonight . When we met Shirley and Brianna after haveng had dinner with Shinae , we needed another ticker for Lucas . Shirley and Brianna worried about me and gave me some advice about being an excahnge student in missisipi . Therefore when you vaccinate , you have to consider the timing of each vaccinattion . Perhaps you have problems when you are writtin in Spanish because you do n't know about the accent rules ! I also watched `` Lost `` which is an american TV series . I want to be a taranslater ! Now I 'm studying English to be a translater . I have some questions about & nbsp ; the sitcome Friends You can enjoy beautiful sights there , for example , World herritage Sites ( Have you ever heard of Kinkaku or Ginkaku ? ) , and colored leaves in mountains , fresh air , and things like that . demand - Our teacher demanded that we have to finish the report whihin a week . I have to put up with the noise the fireworks make evey beginning of the year . Do earthquakes somethimes occur in your country ? Why do you think people attend college or univeristy ? The specialites of those majors are that students can learn a lot of informations that are required for jobs during the college curriculum . Thus , I believe that people attend college or univeristy to prepare for occupasion . It is just what I thought after waching movies and television . According the show , now foreigners do n't come to Japan so many sightseeng spots have few visitors . Gift shops , hotels , and any other companies that serve visiters ca n't do bussiness as before the earthquack , tsunami , and powerplant problems . Do n't worry about comming to Japan . 29th April to 8th May are holidays called `` gorlden week `` . I could not communicate with classmates fruently . . . Writing a daily note on this site is my first step to achive my goal . Japan became the chammpion of Asia . ! Conglaturation ! I wuold like to know the contidion , payment period and etc . I wuold be interested to get all this information . Thursday : I 'll have a test about grammer in French and a test about the constitution of Japan . He invented the altermating current ( AC ) , wireless , X - ray , the Tesla coil , Radar , the Tesla turbine , Ratio - control underwater robot , etc . He could even rip the Earth into two parts by using his little osciilator . Nikola Tesla is too greate . I have been studying `` Desktation `` lesson , but I can hardly hear the computer 's voice pretty hard XD ) , it would be very helpfull if some of you native English speakers out there , could give me a hand . I like to play guitar ( ibanez gio jeje ) , I play a lot of Super Street Fighter 4 on my brother 's Playstation 3 and I consider myself to be a geek ' ' wannabe ' ' because of the nature of the carrer I have chosen ( it 's IT based engineering ) . I 'm so dipressed . African American people passing by threw a plastic bottle at me , I lost my luggage the first day , and many people in Ohio mistook me for a gay boy because Japanese are more fasionable than others . It is an incredible souvenior for me . And , I will give you a souvenior . It 's also a chance to get red developes hehe . I went to the Garden Museum in Megro Tokyo last weekend . I registerd to lang - 8 because I am hoping to make progress with my English . I have much / a lot of infomation about this because I 'm living in Japan ! I bought a book written by Kenzabro Oe , and another one about decoding about Kant ` s pilosophy . In each contries , I had a very pleasurable time . However , I did n't speak English well and I missed opptunities to interact with people . ( redundant ) The hotel , where I went with my family to take a hot spring over 10 years ago , has already been turned into a luxuary hotel . Faced with an unknow future , I feel a little nervous . Here are two good chinese noodle shops that Sugi recomended . Dangerous abstruction I think I remembered abou 200 words in these 2 weeks . There are many meido cafes in Akihabra , Japan . Everybody was suprised that the US president , Barack Obama , recieved the Nobel Peace Prize because he had not shown any results yet . Fruit , vegetables , milk , chiken , and ingredients for a pasta dish like anchovy , dried tomatoes and dried mushrooms . So to enjyo the videotape , which I purchesed long time ago , My choice yeaterday was TENDON . My story hs been recommended to the chief editor ! I was still tired , even though I slept loger . This is just one of the things that make me ttired ) Most of the offices are closed satuaday and Sunday . I feel their music is associated with southern rock like Lynyrd Skynyrd , even though ther are young . But inJapan his blond hair , blue eyes and English are his superpowers , blinding womene who would normally never give him a second look . Today , my freind asked me about that . But my freind was not sure what the teacher said . Then I asked the same question to my daugter ( she is 7years old , ) and she answerd me , `` Criss cross apple sauce , `` Wow ! I tansefer the fee in the convinience store today , so the day I can get it is probably Thursday . It is difficult to move in parfect darkness . I was surprized athow fragrant the wine in the darkness is . That 's a strange feeling to unexplain . My frist diary I hope I will continus to write diaries in English , so my English can advencement . hi everone My Chinese is good , if you want to stady Chinese , I can help you . I come from China , and now I live in Japan as an exchang But I tried to write somthing as fast as possible even though it is short or borring . True story - A white horse jumped over a tower and landed on a priest who immediately dissapeared from the landscape , Where did this take place ? I was alonein the kitchin . She was smilling . Petersburg it 's difficult to cope with such wheather . I do n't know his nik - - he said it 's private . It is because I ca n't dry my laundly well and go swimming . Anyway , I hope that I can take 1 week of summer vacation and go on a trip to Melacca ( OR Melaka ) in Malaysia . So I pulled out of the conpetition . In this highly attuned state , the Buddha saw a way to escape the inevitable cycle of old age , sickness and deat . Taylor was a mechanical thechnician in America . He was calld the father of scientific management , and he laied the groundwork of modern business administration . American management was develped by businesmen and management consultants , while on the other hand , German management was developed by a professor . Japan adopted the German management system befor the war , but it later began adopting the American management system after the war . Apple uses the American management system , of cource . Today , I went to see a performence of comic dialogue , hip - pop & Jake Camp , of which all the actors were born after the 1980 's . The sentences , phrases and words are filled with his affection for children and nature and he expresses himself so beautifully that I was filled with romantic feelings and was able to imagine each secen clearly . On long vacations , she gose to foreign countries . Exsample `` eingang `` - enterance , `` ausgang `` - exit . Casio 's are more expensive than other manumacturer 's , but its quality is better than others . But the keybord made by with rubber matelial that has no click feeling , that I do n't like this . To summerize , we humans used to hunt and gather food . The Side Effect of Our Generation in the compiting Society . This may be the side effect of the rough competiting society we are in now . Many people simply think that failuers are lazy and they just do n't want to work . In general , failuers , defined that way by society , lack many things that successful peopledo n't . In this harsh environement , to keep with the idea of equality , I am recalling something someone once said to me . It 's good for relacks and sleep . So , the recomend time to drink Camomile tea is before you go to bed . Over two weeks , we 've studied ' Hiragana ' and ' gatakana ' , which are like Japanese alpabets . I 've already found it really hard but I studied the things we worked on in class today for two hours by myself and if I study Japanese continually , I believe that one day I will be albe to write a diary on here in Japanese and be able to speak it ! Every word is pronounced to improve your listenig and pronunciation , and for memorizing , you can learn by three ways , first , by choosing the correct answer out of the three Japanese meanings , second , from three English spellings , finally , choosing the alphabets for the correct English spelling . I 'm happy to find such a usefle ( ? ) SNS . but I 've never found a sutable website or space to improve my writing skill . I was born in Xi ' an which is widely known as one of the oldest cities around the world , as many as 13 dynesties chose Xi ' an as the capital city , which maks me proud . Just several decades ago , rivers were completely availiable for swimming and fishing . Now if I am qualified to change one thing here , I would love to chang the enviroment here . Xi ' an had experienced a really rapid industrial development during last 30 years . People 's meterial demand have been highly satisfied . Nowadays , when people do n't have to worry about their livelihood , they unanimously find the enviroment here is much worse than they have imagined . We have extremly hot summer , unbearable winter , dusty spring and gloomy autumn . Currently if we keep doing this , undoubtfully this city will be turned into a place where no longer suitable for people to live , sequntially economic achievements will vanish into the air . Once I 'm fortunate enough to be qualified to change enviroment here , shutting unefficient factories , pouring money into improving air and water quality , vigorously encouraging enviroment conservative companies , cultivating enviromental conscience among youngsters will firstly be done . I knew thier host family has some problems , like they never clearn their rooms , host mother does n't work , does n't pay for the bills , and she asked themfor some money to buy food , and so on . I hope they will have new fost family soon , they should be more energic , otherwise they might suffer a loss . But today at dinner , she praised the cake , whtch I made , she asked me did I make this cake ? 6 Please send the report to the directors , and they will deak with it You have to do something youself . Bagk problem Japan has been tackling an unprecidented tripple desaster ; erathquake , tunami , and nuclear radiation leakage . So , I was very dispointed . Since I want you to know more avout Japan than you do now , I will post two movies about Japan . I hope I have collegues soon . I have no confidense in speaking and writing in English . I did n't know / realize that starting kindergerten required so much preparation . All of the things handmade by her , exept the lunch box ! Actualy , she is a skilled / talented lady and is good at sewing and cooking , but when she doues it for her daughter , suddenly she becames a perfectionist and this causes her to suffer . Pleased to meeet you I 'm from Japane : ) I am poor at Engrish . My senior left the comany . We had a party in a Chinese Restraurant . I like this cultre . I tried to rememeber what I ate yesterday . I figured out that is was motshnabe that made me smell bad . Motshnabe is a famous food in the Fukuoka prefucture and is made with a lot of garlic . Even though it is clear that writing grammertically correct sentences is very difficult , it 's necessary to communicate freely in English . yesterday ( 18th ) was my birthday so many friends sen me conglaturatory messages , and my father bought me a chocolate cake . I searched a dictionary too much times and had difficult tranlating my idea from Korean into English sentences . Is n't it difficult to understand what this sentense means ? 4 years ago , I was suprized to hear a phone call of about the twin 's news . I am a docter . I got a haidache when we came home . B : That 's why I always keep my eyes and ears opening for other oppotunities . I wrote down this dialouge as I listened , from an Englsh - speaking radio program . After eating breakfirst I saw the movie ' Lord of the Rings : The Fellowship of the Ring ' . Today we talked about his developement plan for the coming year . He reminds me of when I was a new employee , and I hope he wii work very hard and be happy at his job . I want to eat something that my mather makes . It turns out that wizards like Ron and Hermione , who are Harry 's best friends , are everywhere throuout the world , not just in the UK . That kind of terrible feeling is too complicated to be descriced in words . However , after crying , I calmed down and began to thik it over . The Sminor 's subject was ' ' How to be Popular ' ' ! ! Correction and / or better writting expressions are required ! ! ( 6 ) Moreover , I could connect to the internet for free via wireless connection , which allowed me to search for the latest research developped in the world . My faher missed my kids . I told my classmate that my teacher told me not to hand in letters again because I already handed in a lot of them and got verry good grades on them . Thank you for visitting my page today . so I was planning to go to high school of America after I guraduated junior high school . ' Cause I felt that English is too defficult for me . Hollo everyone , nice to meet you ! I 've got a working holliday visa , and I 'll go to hokkaidou , Japan next month . Because I was be able to know about theier countries and languages . It is so woderful ! ! ! ! It 's such a cute site and it 's really a surpise for me ! Today I received a notification that rich ricognised me as a friend on lang - 8 . I mean , I hope someone could corect my bad English . Before the Tohoku earthquake and the Pacific Rim tsunami happened , I owned it . But after the radiation leak from the atomic power plants in Hukushima happened , I bought a special umbrella . Because I must not get the umbrella wet with rain that contains radiation from the nuclear plants . I hope thet I go to Matushima and Miyajima someday . It 's like when visiting a Japanese restaurant in Eurrope . The foods there tastes like Japanese food , but there 's always be somthing that holds me back from calling it ' Japanese food ' . Maybe it 's because the ingredients are not really the same even when I 'm following the exact recipe from a website or a cook - book . Onions available in Japane are not the same as the ones in ( from ) Spain , of - course . My dishes are surely paella in a sence as recipe - book saids so . Am I making sence ? ) nowdays I only sleep . The writher ( author ) of this book is dead . One cold winter day , she arraived in London with her father . There was servant named Beckey in the school . I 'd like to go to the UK to study Englad Cluture . Their music and the bar 's atomosphere was amazing ! But I missed the last train . . . I want to soleve environmental problems all over the world . Actually Kobe was an arban city and had beautiful scenery . I wanted to breathe in crean air and see a lot of beautiful nature . Fortunatly I have known and experisenced the beauty of nature . I want to change this situation and save the futures of the chirdren of & nbsp ; Vietman . I want to save youand your chirdren 's earth . If opportunites arise , please help us . There are many young people who went to Tokyo from theire country for theire stadies in college , theire work , theire big dreams , or just theire longing for the big city . My goal of learing English is to be able to use English without difficulty to communicate with people around the world with different cultural backgrounds . I enjoy Univercity life everyday ! There is English class in my univercity everyday . I wanted to study english when I entered a univercity so I 'm very happy . A way for us to help eachother other Some of them looked at the business hours sign but did n't cathc the small words on the top saying they were closed . Since the begininng of the semester , all my concentration was on her . It 's very hard to descripte her looks ( or appearance ) . I heard this movie wasmade by the director of `` Harry Poter `` ! Concerning the scale , it was n't great as `` Harry Poter `` . He could n't overlook that I seemed to have changed my identity and lost my pride in beeing Japanese . So neext day , I had my hair cut really short , and dyed it black . Beyond that , I could only tell him `` Thank you for everyghing , everyghing you have given me . `` And I left his house with saying `` See you later `` . So I decided to try to take more oppotunities to tell my friedns , my jouniors and you who is reading my diary , what I learned until now . I should never disgrace his honor . I like Japanese cartoons , novels , riding on a byscle , hiking and snowboarding . One of my classmates from college already got married last year . I feel a little surprised becase it 's only been two years since graduation and it 's possible that their finacial condition is not good enough for raising a family . But maybe my thinking is wrong . Each couple that decides to marry has probably already thought it through to have finaly made such a hard decision . After getting married , they might have many problems that before could not have been imagined . Sometimes it will be difficult to get through it , but if two people love each other enough , they will finally solve the problem . But everytime time this thought comes to my mind , I realize I would do just the same thing as them . I found a nice restrant . I orded a poached salmon salad . I said `` Wow ! `` I was so excieting . but I am just courious about it ^ _ ^ I 'm going to attend some trainning courses on human resources so that I can enhance my competitiveness . All women were to wear black doress and men were to wear black & white attire , so it was a very goreous atmosphere ! ( Additionaly the company staff gave each guest a mini chocorate fondue machine . ) The main ivent was lacky draw ! ! While I did n't get it , I got a travel chicket and a desital camera ! To be honest , I ca n't espress clearly what it is that I expect . We need expectation in our life , without expectation life will become broing , without expectation life will have a lack of motivation . I believe that when learing a lanuage , listening skills are required before you can speak it . You may see great improvementy in your English abilities . Is it a diary ? Ya , I should menton something about myself ! I had a little confidence in my ability , so it 's really regretable that I ca n't take that job . Chelly Blossoms are so beautiful . She could n't speak Japanese when she came to Japan 5 years ago but now it is diffirence . Going out into the world and earning money is a neccesary part of being an adult . It 's the third time they are lucky becouse they wiped up 2004 and 2010 . These adult - only images may cause sadistic impluse which are definitly not suitable for teenagers . I can not remeber words which are too long . This is because she fell from her bike and hitted her head on the concreat and she Because she had hitted her head , she did n't understand me . Since I need to use my English for my job , and my boss scolds me about my poor English oftenly . I watched Transformers on TV , washed clothes , ate maccha icesreem , and masterXXXted , lol joking . I wanna ( want to ) try to learn englisch on this site : ) It will be bettore for me if somebody give me a title so I can write another post . I feel a little nevers , but I think what I should do now is to make myself prettier , that will give me confidence . Furthermore , I will introduce our culture to you if you have any interest in Korean cultuers . I hope we can becaom a good friends . Have a nice weeken ! ! The weather is pretty unusal . It 's hot in the daytime but very cool in the nighttime . But I liked it though . I realy wanted to buy new clothes ! ! My current aim is acquiring a MBA degree at a foeign University in Japan , for example Mcgill and Bond . I want to do business grobally , I think . Thinking in the posivetive way , most my time will go to studying and activities . Should I get married and have a family , raise a child or find happinese in my daily life as my friends look so happy I am in a dillema . I 'm not relaxed yet , but I am writing in my dialy because I have some free time . I retired early at the age of 56 after 33 year 's as an electlic engneer . Since then I have beem studying English at an ISS school , an English school in Japan . and prepare dfor the next appointment . Kuta beach is famous for beginer surfers . I am beginer surfer , However , when I went to Kuta beach to surf , the waves were too big ! Her mather - in - law and husband were very worried about the effects of nuclear radiation on the baby , so she came to her husband 's parents ' house in Osaka with her baby . However , she feels unconfortable staying with her mother - in - law every day even though her mother - in - law is very kind . I heard that the best way to learn Enlish is to keep a daiary in English . So , I will keep a daiary here . For that reasone , I want to learn English and make a lot of progress with it ! ! I stopped studyng English when I started working . It still concernd me for 10 years , because my company is planning to do bisiness in the Asian market . I heard that homestay family is very important to improve Enlgish . I have started stading English recently . Today , I worked at my part - time job and afterwards , I went to the beauty salon and went to a book store to seach for information about Taiwan . kimch party The kimch his mother made was very delicious . I wanted to eat many dishes he made with that kimch , but I could n't eat them because I got drunk yesterday and got a hangover . ( T _ T ; I can change my image , and look betther than bofore . I went to the nigth shift , I got up at 7p . m . Becaue of my nuesing job , I have to do this ( - _ - ) zzz I was unstoptable with my friends ' advice . I do n't know perfume well , but I think Europian have a better sence for perfume than Japanese people . It becaue our noses are flat ? My cousin 's hasband 's ancestor was a Viking ! I want to stady English more and more . So , I want to have a strong hert . * Collor : There are yellow , green even purple ( ? ) tomatos which look like green peppers and they did not tast sweet . I liked tomato honey very much it smelled like tomatos and tast mild . What is the difference between `` anytime `` and `` whenerver `` and , `` anything `` and `` whatever `` ? > > Please ask me ( anyting or whatever ) you want if you have questions . The downard spiral has continued this year . When it was about eleven o ' clock , I went to the canteen and enjoyed myn lunch . We were supposed to have some kind of debate on multi - national - corparation , as either a supporter or an opponent . Our teacher was a bit embarrassed so he sometimes helpt us to get to the point . I felt terribly bored and tired so I did n't listen to the teacher ao lot . My knowleadge of English is very weak . Becuse we had no classes today . So now , I found it 's harder and harder to expess myself in English . My mom said , during the summer holiday , you can get woork and at work you communicate with peopel in English as much as possible which is why I should try to improve my English ! Which I think will be a nice experience . skillful peopel , I ranked 4th in the end ! Very excited , is n't it ? We orderd one corses which included some meat , fish , the other stuff . The story was too complecated to understand for children . I don ` t think these are synonims , but I can ` t feel in what situation which word I should use I want to express my thoughts in English better , make less mistakes and get more training , because experiense is the main thing in learning languages and other deals , I think . This town has three absolutely beatiful beaches . It was a rainny day . The United States is the most interesting countly , because it has produced a lot of Internet services that have changed the world . Ability , the States and Internte ; ability , the States and Internte , Yesterday , I also did n't understand English well , so I want to implove my English . These days , I 'm studying for TOIEC test . So , I would like to leare a lot of English grammar and get a good score . Thanks moongaze , for your corrections while I was alway . Our 95 - year - old mother had spent a day at a local day service senter . Very delisious ! I coud n't climb it but it was beautiful . I 'm especiaiiy worried about reading . I 'm searching for the most effective way to buld up my vocabulary . while reading , if you encouner an unknown word , you guess the meaning and read ahead . Even if you do n't fully understand it , it does n't matter becasue you will see the word somewhere else in a different context . With this way , you have to look up in the dicitionary every time you encounter an unknown word . They ca n't read anything without a dictionary because they are begginers . last but not least , you should carefully pick what to read for your vocabulry buliding . Why did my professor decide to schedule it tomorow ? I ca n't understand . I think some couples had troubles from the decition . Tomorrow , I am going to meet up with my frends . The jogging trail was around the Shiemen Resorvior . That is , I always become sleeply after I hear the alarm clock ring , and I lay back in my bed again . Somebody let me know about this tracky thing ! ! ! ! ! ! ! ! I was so up with reading wrapped up in a book and listening to music at full blast that I did n't recognise the Asian girl sitting next to me , her face coverd with bad [ rotten ? ] eggs . I want to give them a real roasting if this situation happens agian ! Actually I briefly analyzed the scence of `` Le Papillon `` ~ The little gilr follows an aloof old man to look for an Isabella moth , a kind of moth more beautiful than a butterfly . I moved to Isikawa prefecture , Mie prefecture and Nagoya city in Aichi prefecture on bussiness . I took my second daughter to a pediatritian today . She 's caughing from a cold . A Docter said this is not serious . When it comes to getting old or becoming elderly , most people would avoid images , such as being lonly , or not being able to work the body or brain as before , and having fear of the near death everyday , but truly is n't getting old really a better thing than being young ? ? She is from China , ( born in Beijin , nationality is Chinese . ) but has lived in Japan for over 15 years . But it 's quite difficult now becasue I have a fracture in the right finger . . . : ( Let me intoroducf myself briefly . Anyway my favorite thing is to watch dorama from the US . Yesterday I happend to meet seven friends in a single day . But It 's [ it was ] rany today . We went to a good restaurantm , and had a nice dinner . We had not seen each ohter for such a long time . 73 years ago , the Japanese army killed about 300000 civilians in Ninjing , the city where I live now . But what do we remember ? _ _ Not ethnical enmity but the pain and stupidity of war . I know in not only China but also Japan there are still many people who just remember the ethnical enmity . Is that right to regard the enmity as parriotism ? I want to improve my English skill through Lnag - 8 Now I am determinded to re - read it again , because of my little nephew 's reccommendation and advice which is actually what his teacher said . This morning I checked 1 deail in a part of a drawing and 4 assembly drawings . I felet a little fatigued and left my office . Fristly , it 's safer . In a place where you 're not familar , a friend is very important . You never know what could happen to you if you 're alone . If you travel with company , other people can help you righ away . Traveling alone is more dangerous than traveling with company . If you travel alone whan you make a discovery , you might have no one to share with . I 'm a little nervours and confused . . . Unfortunately , I 'm a smoker and I do n't want the Japanese government to increase the price of cigarret anytime soon . NEW TEATHER he looks like he hated the quiestion . I understand that there are a lot of possobilities to find job , but it 's an awful place to live . We alked and takled a lot . Jay zhou These days when I listen to his songs again and by looking at his lyris , I Some people thinks it is inconveniently when thay do it . We have never won the cahampionship , so we want to win the championship . I washed their gravestones and underwatered the flowers around the stones . This is because I need to do some work for an academic subject , Educational psicology : Institutes and Their Groups . or observing the birds , the fishes , and all the beatiful animals . I make a cup of coffee every evermorning . I saw acters , however , I fogot their names . I feel so happy now when my friends who I knew on lang8 still remerber me and send me an email . Practice writing and listning ? I went to see a doctor as soon as I felt the pain and was told that the mustle had a problem but would recover sooner or later . Many people stop to ride motorbike in this seoson . Although it 's cold , mortorbike cheered up me ! According to an objecter of this strike , my proposed solution is in one important respect actually worse because it involves wrongly coercing all taxpayers , not merely the few military conscripts necessary to fighyt the war . because my dad went to an expensive reestaurant with his collegues ! ! ! ! I orderd a lot of meat , salad , rice , drinks , desserts and many other kind of things . I hope that one day I can study my PhD in America and go sufring again in LA . I hope this is not the beggining of rainy season . I will go to `` Kenji Miyazawa 's `` musium . And delisious foods too . Though I do n't have many law classes , and my law classes are all about bussiness . I ca n't have anything , including warter , but I already forgot this and I have had milk tea . in KUMON school every Tursedays . Boastiful talk I talked about morals and imoral in English with my friends . It was difficult for me , but now I feel realax ; ) He was a quite a gentle Miniature Schnauzer and he gazed at us with his ltwinkle eyes from his cage . It means `` doctor `` in Japanes . But I ca n't write English vely well . Momoko : Is it ture that there 's no food to sell at supermarkets in Tokyo ? I sut down there and thought about my future . But this year , I 'll go to Yakushima , it 's one of the Japan natsural heritage . I 'm a bigginer at singing English songs . This afternoon , I will coach an elementary scholl baseball team . If someone asks me : `` Do you like englishi ? `` Because of my poor English skill , I understood only less than a quater of the English sessions . I 'm reading `` The Lord of the Rings `` in English . I finished reading Chapter 1 . It is intersting but also difficult for me to understand the Enlgish . Hello ! ! ! ! Everybady ! I used to be a system engieer , but I sometimes got a headache . Today , I studied anceient Japanese culuture in Japanese History calss . For example , in Nara , thre is a beautiful mountain called Miwa mountain . I 'm an elementary school teacher in South Korea , and I really want to speak english fruently . I was given a cold sholder ; ( , I have been off since Fryday , and spent most of the time at home making a precise itinerary for Italy and packing my luggeage . For the time being , I ca n't study enoght English and can only use this PC at the lobby so I may be making a lot of mistakes . sorryyyyyyy . That is to say , crane have a aupicious meaning for Japanese . Learing French . My teacher is Taiwanese , but she only speaks to us in French in order to make us adjuct to the speed and the accent of the French language . I found that English and French are a little similar , like the spelling and some pronouciation , so while we are taking the class , we always guess what the word means according to our English ability . Herering or listening working student , studing at the art and I enjoy thingking of new ways to improve the life of people and make us human humanbeings I want to try performing Rakugo in English , and tell people from overseas about the Japanese sense of humore in the near future ! ! I 'm going to go to Indonesia in next March , because of the transfer held by the a campany I work for . I 've already stadied English in high school . Now I 'm confused , since I 'm studing the Indonesian language and English at the same time . Because nowadays , Korean students and Japanese students tend to be totally separate according to thier own nationality groups . Anyway , I have recoverd from this sickness . Some place whithin my heart It 's like a shining diamon , the diamon is still in the box , I 'm provably making some mistaks since I am ignorant about this site . On the first day , I went to sea that is Kujukuri beach with my froends . Actually , I was supposed to play volleyball before ber garden . Summer vacation in this yaer was so much fun and very fulfill for me ! ! who 's gone aborad for about a month . ( singular ) It is important to understand the cultural difference . For example , how people handle things as they are faced with difficulities . I belive that we need to establish certain trustworthy relations for each other . Did we put too much puressre on him ? Tomorrow I have an examination in English glamer . gramer practice This is a very valueble memory for me . fortunately , a car my collague drove stopped and he / she called me . so I apoligized to my boss . I 'm currently enrolled in an English program in which I can talk to pollipinos who are students or graduates from the University of the phillipine . Ok , well , I decided to write my weekly journal in English as the writting teacher `` recomended `` . Each member indroduce themselves . The reasin why I havent ` t used it is that I didnt ` t know the system . Well , I stated to play trumept about 10 years ago , , , , ( so long . . . It 's probably because I broke up with my boyfreind , or because I am tired of my part time job . I want to get a foreign boyfreind , so I can learn English from him . I have nerver been in the company of foreigners , so lately I am attracted to them . at first , we played games in order to develope our sense of team - work . it is difficult to climb over it by oneself , so we firstly had two boys help the girls climb over it and then the boys helped each other to climb over , but there was still one boy left who had to climb over it hinself . after the games , we had a babecue . I love watching movies and learing languages so I will post it that relate with my interest later . Today I was late to work again . I was 1 minture late . : D Ahhh , I wish Santa will give me a new one on X - Xmans ( Christmas ) . Today we have a complusory course . As I have missed it many times , I ca n't catch up with the teachear . My friend vivted me and we went for a walk together today . We sometimg had the same tea togeter and talked about our dreams . Last week my younger daughter got high fevor , and her doctor said that she had the mumps and that she could n't go kindergarten for about one week . I took three days off , my hasband took one day , and my father visited my house three days driving for one hour to care for her . I was goiing to eat a lot of strawberrys this morning . I could watch it from the harvour bride , so it was spectacular ! ! ( We 'd been waiting for 8 hours to keep a good place ) They really do n't care about the eenvironment . And it 's about the tragedic incident that occurred in 2005 in the Guard Post . It is very cold todey , too . I have to dress up [ today ? ] becouse I have a party ! I 'm so sadand and downhearted . So I stady English by using a `` Nitendo DS `` . Father and I planed to go to my garden every Saterday morning . We also plowed a new field , and scatterd a bag of the fertilizer in the feild . Goodby , then . However , there is a country that allowe kids to drink Is the Japanese 20 year old leagal drinking age appropriate ? I am Nana from Japan , and I have lived in Engldand since this August . I will stay here another ten months . I stdy English in England now , and I want to improve my English skills and I start to use here . She especially liked some sungrasses and took some pictures while wearing them . / / Them = Sunglasses . We can buy various foods in Austraria . Of cource , I can do it . The purpose of my taking part in this site is to advance my skill of writting in English . If there are any mistakes or strange explessions in my sentence , please correct them . From mornig to midnight , I did experiments , and then went home the next day . I am trying to make some software with my friends durling our spring vacation . My team has 6 peaple . But now , when I closed the book , `` The Autobiography of KFL `` I knew the truth taht the music was trying to tell me : MAKE A DIFFERECE . writen by Robert Lee Frost Today I found this poem by chance , then became inspired from it , so I qoute it here . There are many chances to study Engish in Japan . I almost never go out duaring the daytime , so I do n't get used to the heat . So I am thinking it would be more efficient if this company focusd on instilling love for the company in our minds . I arrived the platform , and a train came , but I couldo n't get on because of too many people . Suspension does happen sometimes because we play much more than normal players , playingforover 36 hours with two different people might trigger theserver 's auto suspension feature ( automatic detection by blizzard 's programming ) , so being suspended by botting does n't mean we were botting , it means we aresuspected botting . This company built many thermal plants and newclear facilities . Only few elite can enter this comapany . Fukushima newclear plant already belched a certain amount of radiation around there . The main industroy of Fukushima prefecture is FARMING and FISHING . Fishermen and farmers in the Tohoku discrict will definitely have to shut down their bisinesses . Definitely it is because , the Japanese goverment will not be able to bulid newclear plants any more , and they will have to check existing newclear plants for a long time . On top of that , foold costs / the cost of food will be also rise . The Japanees government must rebuild many destroyed infrustractures , of coures they can do it . Tolong mengoreksi ya . My mom is bustling around the rooms cleaning and doing the lundries . The soothing sunlight comes through the window and cast itself on the floor of the room slightly blindind my eyes . The due date is around Octorber . It might be really funny when my mom ca n't speak English to comunicated with them I had no idea there is such a good wbsite in the world where all language - learners can learn together and make progress . I 've been to quite a few places , especialy in Europe , but it 's not enough yet . I was surprised that there are so many people who are good at Japanese , and I am intrested in how this website works . Excuce me . I want to master the functions of Lang - 8 , and communicate with the menbers . First , Merry Christmas to everybody ! I 'm very gald to take part in this network , but my English skills are weak . Of cours we made an appointment and ate the delicious food . It 's quiet and comportable . My cowoekers are really noce people It was very difficlt for us to find the event . I useually go to church on Sundays . Yesteday I had a suevice at Syonai Ryokuchi Park . varietaly of food which everybody brought . Everyboday was enjoying the tennis and Laxros matches . This park has a very nice cycling cource , so I was cycling there in Though I like thrilling race but I prefer to watch more safty race . It 's a very hard job because I have to pay more attetion compared to other kinds of jobs . It looks like a bistro and is not very formal , so I feel confortable . The other day , I happened to find the answear that they eat ants . Although I 'd already known about the great wirter and his works , It is almost same in China , and surprisingly some schools have taught English since their students entered school in urbun areas such as Beijing and Shanghai . Japanese culture vol . 1 SHUSHI Now SHUSI is a common word all over the world . Various countries create their own SHUSI . SHUSI with avocado was created in USA . It was invented in the Edo priod , about 400 years ago , in Japan . I will eat SHUSI tonaight . : ) But in autumn , the sounds of insects such as crikets , singing crikets or Japanese bell crikets , green tree crikets and so on are very nice . I want to know about your idea about sounds of insects from meny people from many countries . Finally , we are supposed to go to eat sweets at a caffe . We are supposed to go separate at Sinjuku at 11pm after seeing her off . But our family may be considered weird by our neighborhood . Reallity . but sadly it is reallity . aaaaaaaaand I love wacthing the stars . Maybe tommorrow it will continue to go on . I heartly hope that some nuclear facilities that are now at the risk of exploding will safely settle down safely . It 's really nice city and the weither here is cool . This is the first enrty of my diary . I saw a video on YouTube about this site , and I tougth it would be fun , and a chance to improve my English and learn a little Japanese . Because the recipe is too abviously wrong . Of couse my Engilish skills were also part of the reason . But , I heard by accident that she 's been dating somenoe . Lately , China 's weathr has been very strange . My hometown included : last week I never got out at all , because of the heavy rain ! Once I went out to resterant to get lunch ! I can swim a short distance so I ca n't derrupted my prectise ! So , I have a good idea , I can go to the swimming pool next to my home ! my mother and I went to the nearst swimming pool but it 's really terrible , because the pool of water there is durty , I can see many small pieces of dirt in the water ! Japan is famous for its cortoon shows , such as Pokemon , Doraemon , and Dragonball Z . In universities , it 's a common phenonmenon for students to occupy seats . Altgough some people hold different ideas about it , I think that each student should have equitale rights . I need some to help me on my Elish skills . He saied this place is a good way to learn english . But `` twp `` is used in the English subtitles , and in the `` Internet Movie Dtabase `` website `` twp `` is also used . Thanks for readding my diary ! ! I understand this all depends on the exact amount of money . But even if it is just a hundread dollars , I 'd suspect that my friend does n't have the money to solve his problems by himself . But insteed I saw `` Lie to me . `` I liked this movie very much , cause it was very interessting ! ) Maybe it 's unrealistic , but I think it had a wonderful idee ) More than ten years ago , there was a broadcast on the news that the sinario writers of DQ and FF would collaborate together to make a RPG . I saved money and bought that game which title was `` Crono Triger . `` It is said that Crono Triger is the best RPG in RPG histoly . I ofen read a book in the coffee shop . So the book holder is very usefull , It was so usefll that I was impressed . He anwsered that the most important thing is talking to / with each other a lot . But nobodey asked `` Why are you late ? `` since they know about today 's traffic jam . Most of foreigners say that it tast good , too . Coffee bean is more effecter than Coffee Mix when you are on a diet . I 'm so sleeply Someone said his death was beacuse of this film . We turned off all the lights in our dormitory then sat down alarmedly , arm in arm . My husbannd said , `` I need a portable hard disk to fix it . `` Actually , he wanted it befor . I 'm writing my dialy from a mobile phone ( cell phone ) , and I 'm not using a dictionary . Mass media must convey correct imformation . If we believe wrong imformation To everyone who wants to study the Japanese language , I 'm very appreciative if you could review my English and revise as neccesary . John Travolta and Denzel Wasington played the main characters in the movie . The thif had stolen her motorbike . These days English is getting less nessesary for me . I can speak eazy English . My teacher says `` if you do n't know about Japanese tradission , language , culture etc , you wo n't be able to speak other langage `` . Many Japanese people do n't know about their own contry . After beginning his business , he overcame this tendensy . And the nailist is very kind and funny . Jacket potetos I 'm going to Shanghai this summer . I 'm so excited because Shanhai is a big city and will have the Olympics . I may not go to olympics , but I am excited . I think it makes a good conection with Asian countries . But is the high housing price unusual , or is it a natural result of quantiative easing ? As one of my favorite teacher is my good friend , I asked him if I could take group lesson with my Skype friends and at the same time I asked my best Skype friends Zac and Mark if they could talk with me and my teachter . and my philosophy in life is besed on my high school days . ! I want to listen to otehrs before they listen to me , They take care of others before they take care of theirselves . I want to have Jesus 's heart , full of love and copassion . I 'm terrable . What I 'm going to say is just my experience and personal opnions , So even if you can pass the Cambrige English examination , you have to work for a Japanese company at the beginning of living in a foreing country . Of course there are some exeptions ; some foreign companies want to get Japanese speakers . There are some dishonest Japanese recruting agencies in Singapore and Hawaii . I think you are a very careful person , so I do n't think you are going to register with those disgusting recruting agencies . As far as I know , there are some of those kinds of recruting agencies in each country , especially Hawaii . Althoug some problems occur , I can learn from them . Farthermore , traveling abroad alone improves my English ^ ^ Nobady can help conversations so I have to manage to speak English . Anyway , it was tooo cold . I learned from my friends that Lang8 can help my English progess and that someone would modify your post . All children , especially boys like to pretend they are searching for `` big treature `` with their friends . They were very upset about thier fimilies ' situation . This map had information about an old pirate 's treature . The Goonies ( name of their group ) went searching for the treature to help their parents . Becausu I changed my career to a foregin capital company , What prcedure should I take / follow if I want to join ? Today , I went to the New Field to have ( take ) my English speaking class . The class is tought by Robin , who is a funy English Teacher . I 'm very glad that I can totaly understand what Ronin has tought and have a lot of fun in class . Going back to Japna I need a lot of practice every day to get good at languaje . My hometown 's one are colord with red and white . But the most popular one is colord with only white . My precioous Michael I love Michal Jackson . His songe are very butifull to me . I 'm not sure why I was crying , but I coul n't stop . MIchal wishes is our wish , at least in his songs , and hopes our hope . I dveloped a rash on my chest . If a medical crinic were open , I would have gone to see a doctor . I will go to see a doctor befor I go to my office . A member of my gym , who is 25yeras old and very maccho , is traveling in Argentina now . Traveling makes a man grow up , but he shouid never forget to run away at the approach of danger . I wish we had Shilver Week every year . Gensou shoujyo Taisen Kurenai Even though I paid $ 600 for the schoo 's internship progrram , they let me go to the Chinese company in Australia . Of course , I asked my internship adviser before starting the proggram : `` Which language do they usually speak ? ? `` , He said : `` English . `` because I came to Austraria to study English . I frequntly got around on foot in Japan in spite of the fact that I have Unfortunatelly it was cloudy and windy . The heavy wind made the sea rough . . . It took around 30 min from the pia to the diving point . The boat rocked in the sea and it made us terribly shipsick . . . To prevend it from getting worse , I watched the horizon . . . I could feel a strong swell at the bottom of the sea at the serface . It was enough to forget to seach for lobsters . After the first diving , during the break on the boat , I got shipsick again . One of my co - workers gave up the next dive because he was shipsick . . . But the most important event is comming ! In 15 minites , I 'll leave for my hometown to stay at MOM ' S home . I keep on trying these steps until my shadowig for it is perfect . It takes about five minites for one phrase . I search for Englsih homepages about `` mushroom `` these thesedays . It 's very very interesting to read articles about mushroomig in other countries . I am very tiard , because I did not sleep to prepare for the examinaion . I 'll do my best to conteniue . Although I switch on a fan , I don ` t turn on the air conditionar to conserve electricity . I 've reistered my name for Glastonbury . Normally I get twenty - five thousant wons , but this year it is less than last year . there 's a charactor , Sharpay . After that , I intoroduced myself for my new class . She is a sponserd for Shiseido ( A big cosmetic company in japan ) if I remember right . Now with my friends I live in a very nice house with a balkon and four rooms . We only finished moving yesterday , because on Saturday soon after we arived we started an opening party . I believe that through this , I could truly improve my speaking skill since those who introduced this way to me spkeak fluent English . They 've been telling me that it 's hard for them to raise a baby in a foreign country without thier friends and family . I felt a bit sad to hear that because I 'm thier close friend but there was obviously nothing I could do for them . Altough they have many friends in Japan , at some point they were seriously considering how to meet new people and how to make friends I hope they will enjoy the rest of time they have in Japan and I want to make thier life here more enjoyable at least when I come visit them ! A famous middle - aged american actor , who went to Japan because of business , met a young , pretty american girl in a hotel , who came to Japan with her husband , who was a busy phographer . When I watch a darama , I do n't use subtitles . When we into the bath nobady was there . One was an insade bath and the other was an outsade bath . I engoyed having a chat with my lang - 8 friend in India last night . Please read my dialy and correct my grammer . Recently , every time my firend sees me , she always says ' Why do you look so tired everyday ' . I noticed that to study is better than nothing even if I faild the exam . If I study hard , I do n't mind the result even if I faild it . I just wanted grumble and epress that I 'm going to study from now on . The misstaking was very important . I ` m very happy that I can count on somebody who knows about their language , and everything , beacuse they are British , or from other countries where Engish is the spoken language . I hear that my grandma was dignosed with apoplexy because she hert herself carelessly . I read a newspaper befor breakfast . I always talk to friends on skyp every morning . A lot of my friends tell me that I am nice , becouse my character is cheerful . Because it RELLY HURT ! It 's wandarful . I 'm looking forward to watch next 3D movie , Alice in the wondarland . I found that I start to waste time since I got my admittion . I stay up late and whatch tv or go online . IIf there 's E in front of the name of the soap opera , then you have to wait . I cooced a handmade breakfast this morning for the first time in a while . My wife and I will go to Jeju Island tommorow , and stay for 2 nights and 3 days . I work in a constraction firm . I was majoring in Architecture , but now I develop PC software to do business for emproyees only . I can understand English and I can read it , but I 'm not that good with wrighting or speaking . Recently , I realize there are many similer words in English . 5 ) I 'm wonderig if he gave a good presentation . I 'm listenning to Complicated by Avril Lavigne now ! Please let me konw the difference If so , waht 's the matter with it ? Then , I boil some water and drink it while streching out myself . As a result , everyone enjoys a good chatith him . It is my faivoraite type of rice cake . I found this websaite URL I presented a buquet of sweet peas to her . I do n't thik I am old . High level colesterol can cause a stroke / cholesterol level or something bad for our body . a borling diary . I like princess caracters , so I enjoyed so much . I was tired so I wantted to sleep , but I could n't . Driving lisence in NY A driving lisence is mandatory in US . Even though it is convenient enough , most poeple tend to apply for a driving lisence . That 's because the lisence is also useful as an identification . I am now proceeding to get a driving lisence . After school , I decieded to play basketball . I liked playing it very much . I was confident in the game . My tiredness was unable to keep me away from my love for basketball . jioned in the game . I said to myself , ' Whatever happend , I must maintain my composure and keep a strong heart ' . Happy New Year , eveyone ! ! Do you think that honour is poplular nowadays or did it become old - fashioned ? My healty plan 2 ! The main TV companies and many of the other broadcasters just think about how to protect their priviledge . TEPCO , the company which operates the nuclear power plant , the excutives of which are accused on TV daily . But on TV we are not told the much omre inportant thing - that the head of TEPCO went to China with people who used to be excutives of the Japanese TV companies . I can not belive him . What is broadcasted about the nucear power plant problem overseas ? so I must improve my English wirtting ability to adapt to the new job as soon as possible . It is not very nice to wathch , but My condoleances to everyone . P . S . : Due to these abnormal weather phenomena ( lately ) , do you belive that 2012 really exists ? Also , I saw the sunset over the river while walkiking and it was really beautiful . Now I can hear birds voice , and see a clear sky , a beautiful sunset and leaves changing the collor almost everyday . I take an English leeson once every week . I like to talk with my English teacher but I ca n't speak in long sentense . I should increase the time I spend speaking English or I should find another excercise for that . In the thrid lesson we had English presentations . I was very nourvus ! ! My first langage is Japanese . If you have a ploblem with Japanese , I will answer your questions ! ! Sincce there is no way I can wake up so early in the morning , I refused her right away . In spite of that , I hurried to researve a shuttle service for her . Books or th internet ? In the afternoon , I was browsing magagines in the bookshop . Even though it has n't been chenged in recent years . . . As soon as I came home , I registerd . At that time I thougt that I might die . everthing is him . . . My teacher sang a song which the tytle was `` Linda Linda `` . He was such a sppirited person who made us very exciting ! One thing that I was not quite happy about was that I could n't see tha contest of female dress ! I can remenber running around the surpermarket . I 'm an university student who is studying meteorology right now and I 'll graudate soon in March 2011 . I must go to chorus practice untill ten o ' clock today , but I I could not wake up early this morning ! ! So far , my weekness is `` articles `` and `` plurals `` . Finally , school uniforms develop inner individualty and creativity . I live in Indonesia , but sometimes I travel to Australia for holiday . I like living in Australia because there no polution like in Jakarta , Indonesia . The worker expained it very well and was very kind . With drink , we exchang infrmation . . . . When I heard a Podcast from Los Angeles the teacher who lives there and teaches English for non native English speakers in the world ansewred a question ; what sound do you love . His answere was it would heve to be the sound of the garage door closing when my wife comes home . You know , it 's a little troublesome because again I have to downroad the lost memory it used to have before . * sigh * The dichotomy that is common of postcolonial literatire , and that 's the dichotomy between a sence of homecoming and exile . harm : Honey bees wo n't harm people if they do n't do anythig to them . I suggested that we had better go to see an ophthalmologist first in case there is a more severe promble that we did n't know about . Uopas ! The fee is very expensive even though the isurance will cover it . Futhermore , today was a kind of an anniversarry for me . 2 months passed , when I started going to her house regurally . England is ok , but the problem in Spain is the [ ir ] league . There is grammer in Japanese , of course . I can speak Japanese but I understand all of the grammers . SO , I plan to study from basic grammer to high - level grammer . First of all , I will look for grammer book . I think English grammer is very deep . . . Also , aother person was stoned by native children when he was riding a bike , and my friends have experienced unwanted sexual conduct from their home - stay familly and proffeser . Before , I took ESL ( English second language ) ; then , some Maxican insisted `` the native do n't trust us because the policeman often stops us . `` When wii you do it if you do not do it now ? We had also listened some litlle stories from my dad 's CD ( a CD that come together with a book from his English class ) , then we listen on the car radio and translate to portuguese to see who got what the story was wanted to say ! ! I am having trouble writnig my self - introduction in English . I was very shocked by the news that Japan had a disaster , I could n't belieave it happend in my country . As a person who is taking care of chinldren , I am realy worried about mothers who are protecting their children without heating and water for drinking in stricken area . It 's autumn but I 'm lokking forward to the coming of & nbsp ; spring . What is your favorite character on Dragonboll ? The clerk was kind enough to fix my galsses and wash it free of charge . Looking at the big picture , the disease was nessesary to me . I am a narse . What is more , even if I have an adea about work , I ca n't make them understand my opinion precisely . I 'm going to Vietnam for a month during the summer for a kind of pratical training . I believe it will be an unforgetable and useful experience ! I was surprized to hear that . Aithough I never gave up studying business English . execise is necessary in life . I felt that this is a very usefull way to study English , so I decided to use it . Yesterdar , it was around 40 Celsius . This week I choose French as my sendary foreign language for next semester to learn . The title is `` Nostalghia `` . Your body tries to chage your brain conditions . I thought it was a funny idea XD ~ If I have that one , I will always wonder where my cat is or imagine where he came frome ? Actually I perfer dogs than cats , but since my sister adopted our cat I just started to see its adorable part ! - the image I had of the movie was formed from all the gossip I havd heard . I want to snowbord ! But it 's fun to snowbording . Is being a student with bachelar degree enough ? I lent him the money that was in my poket . and I thout about `` I want to go to abroad ! ! `` Last night was so benefitical . I have to wait untill Monday . There are many assiments and drafts in my USB . I got a litte enegy back by looking at the dog 's picture shown above : ) I have to tell an embarresing or a horror story this Thursday . introduce yurself To me , it 's important to learn new things that can broden one 's mental vision . I 'd love to challge things that are especially too hard / difficult . nowdays HANRA has extended its business overseas . when I worked odd jobs at construction site , I felt it was worthwhile after completing a constructure . Actually , doing extracurricular activities does n't diturb our studies if we make full use of our time . So I suggest that studens do extracurricular activities along with their academic studies . My friend has homework too , but he is listening to music while resting his legs on my sholder : D I am not a masochist . This site was recomended to me by my philsopher professor . I must more carefull to not set a fire . unfortunetely , I have an apointment . even if I have an apointment , why it is unlucky for me . Because , that apointment is having a class , which mean I have to attend my class . I dont want to reconize . And I checked mixi some times ; Japanese SNS servise like facebook or MySpace . Please check my writing and coment on me . I went to a pablic bath with my son . There are verious types of baths inside and outside of the facility . Hopfully , I will improve my of English & japaness here . One of them illusrated a peaiod when I was in primary school and traveled with my classmates in the park of Prince bay . It seems that I can learn a lot fron here ! ( - : And aslo , I hope I can make friends here . It 's my first wrighting . Is this the right choice , chaning to a totally diffrerent area ? I have benn working for four years so it was natural I felt bored with my previous job , but wo n't my new job seem just as much boring to me after another four years of work ? If so , what is the meaning of change ? continure to change to a third one ? I really do n't konw what I should do now . so they recentry came to Japan on May . This is my frist dairy . I have a boder Collie . A memeber of the club taught me how to throw a disc . and fust . The bord of education in Japan prohibits a normal book store from selling school textbooks . Now I ca n't write a proper English compositon . I almost forgot the basic but important grammer . The things I want to say all trun into Japanese . I talked with a native speaker for about 2 hours starting from 7 : 00 ( englis is only 1 hour . I will talk with a philipino person for an hour . My passtime I took a job as a baristar . He also told me that I should reveal my talent little by little , while showing respect to my seinior . Some of the his work is heart - hartwarming and some have strong messages . Sometimes I talk to my frined who I love in my mind . But I got 6 parking tickets including a handycapped parking ticket . It was totally my fault about the handycapped parking ticket . I know that I should not park in the handycapped parking areas under any conditions . I do n't know why I always have a intendency to doubt myself . Toyota has continuously developed besed on strong trust . But now , the company has been losting its strong trust . Losing troust may collapse even a gigantic company . I 've been studing English in Austraria since last february in order Children who chose to wear a Dnjiri 's costume joined the celebration . I will go to watch the Dnjiri again today . I think that I shoud learn English . Because , English is so difficalt for me . The Blak Eye And for women it 's kind of an important facter that Usually we ask our dates how old thay are before we start S if Americans look at me , thay might see me as 20 - year - old or so . With the magic wings of imagination , we can take our tedious mind off to another world easily so that we have the chance to get away from the ouside world for a while . Snow - coverd My collegues in our Dept . She was good to us and to a certain excent she would side with me and even take responsibility if we got into trouble . Usually we would talk at lunch time and share what was happening in our daily lives . I do n't remember when she stopped having lunch with us , giving us the lamn excuse that `` she is on a diet now `` , The firtst diary I 'm at a loss to write a daiary in ENGLISH . I 'm working at a trainning center with volunteers who are going to help developing countries . First , everyone is devided into several groups and each group is given an envelop . Every group finds defferent materials in theire envelop . for example , I went to Victria Peak , Tsim Sha Tsui , Jordan , and so on . Victria Peak was especially beautiful . Pet Industory In Japan I 'm going to travel to lots of places and take nice pitures . How SonyEricsson Xperia Ray hits the spot with me is that Ray drives an Android OS and features a great a camera that outperformances moderate DC . I have nothing to write down anymore because I 'm exhousted and I 'm starving now ! I made plans to tavel . My favorite topics are Electric Music ( Techno , Electronica , Breakbeats . . . incrude composing ) , Web Design ( HTML , CSS , jQuery , Flash + ActionScript ) , Social Problems ( international and domestic ) , Environmental Problems . And some people say it is bacause of beautiful weather in June . I have a little rabit . I belive she could be a famous football palyer . We ete , drank , chatted , and watched a litte . I used to be a kind of a shoppingholic when I was in my country . I just gor a job interview invition . Am I uncorrect ? So , today I bought the same novel translated into japanses . . . This makes me very tired anf disappointed in myself . abou me I need to ues English and Japanese to watch tv , read comics and goa world tour . Before I do something , I prepare for it thouroughly . At least during that time , I cleanse my mind and repress impuritious thoughts that hinder my concentratation . And that careful but timid attitude fills my mind of impuritious thoughts , and eventually hinders my ability to be honest with myself . It is not so diffecult for me to develop an iPhone application . iPhone applications must be developed in Object - C . But I like yoghrut . It is very convinient for us to go anywhere . Today , I renewaled my driver 's license at the police station . If I go to Oseaan vocational school , about I will study about Mariene life Dolphins are very dute . If I can earn the mony , I will buy tropical goldfish . The Change of The Trend of Chaina 's Population I was very nervous , but I 'm happy to explan it well . Susi bar Before visiting the zoo , I had been especially looking forward to seeing capybaras because Capibaras have been very popular in Japan and I heard they look unique and cute . I have come here to lear more english For my writing is very bad ; I need to develop my grammaire and fixe my I think I can develope my sentences here and lear more vocabulary I was togheter with it . when I did my assinments , I talked with my friend . . . I think the best coffee has good memories rather than good meterials . I went to englisg school after work . In this class , there usually is n't a teaher but I had a good lesson . First , I visited the waterfoll . I 'm studing corean words now because I have an examination . I have my own plan for this year and I will do my best to complete my plan and I wish everyone can fulfish their own plans too . But suddenly thier lifestyle changed as soon as thier husbands finised working . Thier husbands stay at home from the morning till night with their wives . I must ( talk with my ) English ( tercher ) . today I fonud a website that is useful . I do n't want to write too much today because I have an exam coming up . well she said , no one would like to get paid cheaper than 30 dollers . I appreciate that you encourged me with a prophecy . This sign is hot - tempered , full of energy and likes to do dangerous things , the reson may be that it 's effected by mars . Taurus is a sign affected by Venus , so the sign liks beautiful things and eating wonderful food but is inflexible . Gemini is a dual - personality sign , quite different from Aaurus . It is flexible , knows much but is not deep and can not keep promises . Libra is a sign which is banlance and undecided , but charming . She said thet the Chinese are not as diligent than before . Today I rode my bike around the street , suddently a car bumped into a dog , but no one stopped to help the dog . What a strang world , what cold people . I wanna know if it 's common to say the fisrt way in British English , like they do in AE . . . . . I also know that there is the Ryder Cup golf tournment held each year between the U . Because when you tell a white lie , it just gets you away in that situtation . I want to use the term `` over my daed body `` . I do n't kow how to use that in a sutiation . Secondly , my university 's summer vacation is so long that I can do many things : travelling , voranteer , studying and so on . What sall we do ? They were very crowded dispite the rainy day . I just watched a moive in the new theater instead . And I want to know whether you understand somthing about this article after reading my reflection paper . Myabe he likes Japanese foods . My old foreigners friend told me I could n't use chopsticks well so I need a sppon . Eventually , I thought of soneone . Later on during high school I enjoyed the subject ' Korean morden history ' from the Joseon era to present time . Even though I 'm not good at Korean history , I used to get good grades in Korean morden history . They resisted not only by force , but also by writting poems , novels , etc . ( I especially like the ? resistive ? poem ) They were not afraid of death and some patriots sacrificed themselves for their contry . Tisson is a very kind guy . We are staying in the hotel with fully booked accomodations so we will not be bored . My Asknowledgements to Geoff Cutter Why do people belive a lie and refuse to belive the truth ? Jhon Watson is soooooo adroable ~ ! But they have only three episodes for this year : ( ( Damn ! I serched her song , `` Love Story `` on Youtube and listened to it as soon as I could By the way , thanks to the people who correct my dialy entries , though I do n't know how to return the favor . . . Is this a matter of bad habbit or can it be changed easily ? They have thier own schedules already . The mysterious Victorian age , the insrutable Brontes . Sushi is dericious . We orderd a lot of dericious dishes . Evidently , I picked it up unconciously when I was living in Oregon possively from my host mother . Walking on a Tightrope in Rio de Janairo I like it sice I was a kid . It is very butiful and syiny . By the way , What 's your recommend misical ? I really happy - my new home is very beatiful . According to the news , a young woman said to some parents with a baby in front of a kidstuff store , I 'd like to study more and I 'd like to applicate it at my job . I hate crowded places , If I stay there for too long , I get a headach . Beside there were no gasorin and toilet paper as well . I like intelligent and thoughtfull people . Today my son finished primary school . ( Is it called elementary school in the USA ? ) The whole family is happy for him . He is a wonderful student . He won first place in the knowledge competetition and his averange was 9 . 8 . I think I am not a good sutdent I like the chalenge , but sometimes I feel frustrated . I hope you correct me if it 's necesary . Recently , I feel so sleelpy while woking , especially after lunch . I was like , `` Nah , bitch , just goofing around I reckon , but I am stil trying to find my way , bro . He was like , `` none taken , what do you take me for , asshoel , but if you do n't mind , let me give you a piece of advice , get real , be realistic , you always told us that you like reading and learning , so do you wanna be a translator or just a literature geek ? but let me ask you a god damn question , we , people are never gon na make it 100 years , we do n't live forever , so I just stick to my fuckin motto and faith , what if I got diagonsed with leukaeemia next week and was informed that I only have 6 months to live , then what the fuck would the money and fame and working at a major company mean to you ? `` I desided not to tell her my feelings anymore . Today I had class with our foreigh teacher again . He tought us enlish culture . I 'd thought I would go to work where my ex - collegue recommended me after Spring festival . I think what I need to do is to think over what I want ( to do ) and insiste on that . Recentry , many NPO / NGO organizations have given us explanations as tohow our donation cansave children ofdeveloped countries . But it is unconvinient to use for their financial men . But they ca n't help orher children , for example not help diarrhea children . I 'll go to the studiam next month to watch the national team play . I 'm weak from dringking to much alcohol . We went to bar the day before yesterday ( Thirsday ) , we stayed there until midnight . I think it was 3 o ' clock . However , I felt I am not as yonger as I expected . Kathy , the narrator , talks about her childfood , which was very different from ordinary people 's . They do n't know anythig about their parents . New vocabulary plactice . I said I will serve you dinner immidiately because one of the gests looked so hungly . I ca n't speak Engligh well . and report korean 's air traffic plan . So we have to know those facts why we were born in this world and why we came to this earth nd after we should die . But I 'm not the person who always gives in when facing difficuty . I left Starbacks and I 'm at a another cafe now . In the afternoon , I took a special class . A former JAL ( Japan air line ) cabin attendant came to lecture us , so we had to wear formal sui in this class . We went to a bar ( our seacret place ) . Everyone crunk there too but I could n't because I felt sleepy . He said it was very high quority . I found an Englsh book for learning last night . There was a wider space than usual between the plathome and the train , maybe 60 to 80cm . I think that it is very dangerous to walk through plathomes during commuter hours both morning and evening . Today I 'll watch `` Madame Butterfly `` and `` The secret of the Himeji catsle `` . I like the amerian drama Prison Break . Although this software is not free , it costs only 2000 yen to downlaod . It was wanderfull ! ! Today is my dahghter 's birthday . I went fiching . The fish swom away , but I held onot the line . So I said goodbay to the fish very quickly and left as fast as I could ! ! , I spend most of my time studing and reading . The complaints are endless , because the lift broke down continiously . Many students and teachers were trapped in it . I 'm so luckly to live near an idustrical area named `` Zhong Guan Cun . `` A porn film previals in Hongkong Less than 40 days now . The exam is ( right ) around the cornor . I would like to thank the person who will come to clloect my grammer . I correct the diaries written in Japanse by other people . I should correct them to help the peaple who are trying to learn Japanese . I might thach wrong so I have to use dictionaly not only for English but also Japanese ! ! It 's easy to find the journal wihch is really great . I can even find Japanese journals that are writen I regard that my little knowlege of Japanese disqualifies me to be Japanese . Thay wo n't seem to attract my client . Thay are terrible . In order to understand scientific language , as examples , nominalization and abstraction are needed to be introduced . After the break in the afternoon , we have the subject `` sport `` but I went home beacuse I do n't like sports . Of course , Eglish is required three other sports . I have to finght for that ~ ~ ~ ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! 1 sinse sentense structure is quite different . My porpose ! My Porpose ! Let me explain . I 'm an englineer . Why do I have to stduy English ? I have to know a lot of imformation . If I studied English everyday , I would be a good englineer . It 's hard to get up early in the monrning . finaly , I get up at 7 : 00am . Why did n't I get up early in the monring ? For example , I put a pellow under her head . Today the Japanese Government annonced the measures to solve their economic problems . Tonight it 's awfully humid and boilding hot . Love ur mother - toughe and being proud of it ! But right now I 'm studying English to be a translater . Today I went to a gym used by Ammerican elemntary school students . I am staying at the Hyatt Regendy Waikiki today . I 'd like to learn English in order to write and read articles of sience . I was always proud of my healty . weather tommorow . Yaki - soba is fried noodle , with suace . The first hour of class was ' marth ' . It 's difficult for me to study marth . it came as a surprise that I answered : For expriencing ! well , I can exprience life in hell then , can ` t I ? : P Being alive I can exprience a lot of things . but I dont think I need to worry about how much time I have , instead , how much I can exprience : D come on , let 's exprience the amazing world : D My son had his 6th birthday and I called him from Sibiria to Israel and asked him what he wanted me to buy him . . . There are a lot of attractive stores like clothing stores , cake shops , bakarys and cafes . Yesterday I bought a big armond scone at a bakely . This device 's circuit board was converd by a synthetic resin which caused the problem . I warmed it and maneged to remove most of it but I could n't take it away completely . I love his artistic temparament . We 're gon na meet at our favorite reataurants . Someone gave me a bag of poteto chips . about 3 times bigger than usueal . My friend 's dicision . Kanojo wa tomodachi to gakkou e aruku imasu . Boku ha skka - wo shite imasu This is the first time it is showcased , since the Heian Piriod . That is why I was suprised to find so much trash today . Children are givin too much free time ? Task4 Nowadays , some people might concern that children are givin too much free time . From my point of view , when they are givin too much free time by school , they may spend more time on surfing the internet , playing computer games or watching TV , moreover , will probably do something which is not allowed under their age without a guardian . It maybe not a good idea either , it will make studies become boring and tiring , yet the extra presures givin were not necessary . In my opinion about children 's free time , I beleive school is a good environment where student start their socail life and team work , including vairety of studying . However , when they are out of school , they also should arrage their free time wisely to do other recreational activities instead of an axtra school work . I was asked about my hometown by other syudents who were in the class . I wish I could speak English a littel better . Hi , everyone . Nice to meet you . This is my first visit to this website . My English is poor , so pls help me and I will appresite it . I can speak fluent standard Chinese . I want to practice oral English . I want to make frend with all of you . So welcome to China . I think you will love this great coutry . I love her . After the rain , I opened the windou and took a deep breath . I came downstairs to take a walk and enjoyed my free / spare / leasure time . Once a week I take a tango lesseon . When I close my eyes and just move my body with the tango rythem , I 'm jealuos of him . I need to accostume my ears to English sounds and pronunciation , although I know the BBC is probably too . . . Somebody said it is usefull , but up to now I have n't had an English audio version of a book . Moreover , he got / became angrier and louder while I explained that they were all just my abandoned exprimental materials . These materials are my painstaking effort , so I ca n't discurd them on time ( ? ) , but it did n't matter ( ? ) . Sunday is a regular practicing date for my ballteam . No matter what ever you want to play , you should make sure you have enough warm up activities , such like Sretching , jogging or others . Prevation is better than cure . I had explaned to her that food builds the body ( water also ) but she did n't follow my advise I am really poor at grammer and tenses . The sadiest part of this story is the fact that this story realy happend with the autor . He described the one part of his life , when he had maden a few mistakes , and lost his dear sister . Today I wached a movie . The movie title is `` Alice In Wonderland `` . I wached the animated movie in my childfood . There are many deferencies between the animated version , and live action version . This morning class , our teacher made us do an activity , that is to draw your partner 's picture and discribe your partner , everybody ca n't draw well , so everyone 's picture are like kingarden 's picture , but it 's funny . First , I much prefer trying on the clothes , shoes , or accessaries myself to check their sizes , textures or material , fit and so on . Maybe I 'm not a person who is suited to living in a modernized and technologized focused society . I want to chane myself first of all . Recently , I decided to save my maney , because I used a lot of money last month . Of course , to think on an accrual basis , I spent over 200 yen because it includes rent of my apartment house , lighting and heating wxpenses , and water rate for today 's cost . I tried to avoid getting sicker by eating good food , resting , and continuing to go to the gym to excersise , but nothing worked for me . I 'm not Santa clause , difinetely . My major was litarature , so once I wanted to be a writer . This is a story of a proffesor named Morrie . He has a fatal deasease and a student in his last class wrote this book . Although I have n't read it thourugh , it is a wonderful book , and ca n't read withtout some tissues . For us students , every summer and winter vacation , it 's a big problem to buy tickets to go back home from distans unicercity . In my view , to stop this situation from becoming worse , we should never buy tickets from train ticket scalpers , since everyone has a responsabilty to make a harmonious society . if you have a skype jsut add me So I will wake up and see the moutain and sunrise together in the morning , drink beer , listen the music and dance with Mt . I wanted to know if this story is true or ont . He is 8 years old and lives in South Indea with his family . I do n't want to go on a sllurge . I coud n't help meeting another guy ! ( or I coud n't help but meet another guy ; or I had no choice but to meet another guy ) If the raiin had started sooner , I would n't have been able to have my lesson . I 'm going to continue writting about the Assimil course . `` If you are a studend , you will show a better school record or April 18th was a special day which was my college 's 50th Annirersary Celebration . I started Lang - 8 because my myfriend recommended this site . This is fisrt time I 've utilized lang - 8 for my studies . I have frineds who can speak in English , but they are not my teachers . Well , in case you do n't know this movie before , here 's the introduction from wekipedia URL You can translate the titile into `` My House `` in English . If you want to get an idea of what a Japanes family is like , you may find this manga helpful . So I am studing English because I want to be freinds with a lot of people . It 's very bearutiful not only when it blooms but also when it falls . Now , we are planing to have a enterrainment show at college . Then I want to present the ikonography of the altarpiece , focusing upon the biblical narration , and then I will mention some features of this work . The next part will be about the history of recherch and dating . This presentation is about a triptych called the ' John the Babtist altarpiece ' . The example in Berlin is so simular to the ' John the Baptist ' altar in Frankfurt that a long discussion has taken place as to which is the original . These three pictures show the most important incidents from John the Bapist 's life . On the first panel you can see a describtion of the birth , and naming of John the Baptist . The middle panal shows the baptism of Christ . The last panal is about the beheading of John the Baptist . These three paintings are supplimented by a detailed illustration of miniatures in a gothic arch , which funtions as frame for the pictures . Can a quater , a 25 cent coin , change one 's fate ? Also , I talked with my chiness friend in skype . When I arrinved at my house , it was time for dinner . I think that I rode the bycycle for 1 and hulf hours . It is also sometimes hard to tell my feelings with foregner . In my old memory , I think I had to prepare a photograh I was not abusy today . According to myth , when she knew that her mother was pregnant by an unknown father , she was ungry and called his four hundred brothers and sisters . She wanted to kill his mother ( her name is Coatlicue ) , in this moment Huitzilopochtli ( God of the war ) was born ; he was born armed like a warrior ! I was very suprised ! Sweet Potate Do you know sweet potate ? A large mumber of companies are obtaining funding by mortgaging their cars and other assets at pawnshops . The customs procedure takes 3 hours and will be conducted in a cooled warehouse , which will help a lot in summar to keep food / produce fresh . The Koreai government is preparing to manage it successfully . Secndly , it 's very short sighted thinking . I think they can contribute to cultural variaty as time goes by . Having the agenda of neo - liberalism , they just genally increase repressie measures . I got payed lesser than the low limitted wage . Bazil , thyme , lettuce and tomate are in the picture . Umbelievable . . . My star - sign is Tauras . I think reflexology is helpful to recover from surgery , so I suggested to har to get reflexology treatment . Japanese people in japanese rooms usually sit down at kotats during ( the ) winter season . I felt that someone may think that we are superior to the labors from other countries . Many univarsal students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . My hobbie at this moment Becouse this needlework thing does n't bring any benefits or money . ( yes , I sleep with a fox Johan , gigle ! Because it is a bad habbit . When I have handmade work , I can relax from conserns and immerse myself . I went to Kyoto this spring vcation by myself . My favorite shrine is the Kifne shrine . Kifne was built to honor a god of water . Why does this sentence above use ' has basketball ' , not ' baskball has ' ? Yet , the symphony of spring project the comfy atomospher today . Then , the Sugarecanes are milling milled to make brown sugar . I came to pick my guest up from the airport , but the fligh was delayed by twenty five minutes . I feel worried about studying Engrish . Are they correct sentencs below ? * Elderly people 's share of medical expenses has incresed this year . I 'm told when women are in menopause , they are more nervouse and fickle than before . < < NOT ALL studying about Gandhi is complex and difficult for me , so I do n't feel like reading his aoutobiography ( the textbook ) . . . . This is the fierst time I have come abroad , and my English skills are not good , so I ca n't communicate with native people in Seattle well . Japan AIRLINES ( JAL ) dicided to stop the flight ! ! But JAL dicided to stop the flight from Japan to Bali yesterday . Two of them were Haruki Murakami 's `` nejimakidori kuronikuru ( The Wind - Up Bird Chlonicle ) `` . I found my journas was corrected when I came home after my job ! MY SPEACIAL DAY and I do not konw what I should do . . . this is my first daire entry . Although it is very exciiting and I ' m looking forward to gouing , I am worried about one thing : the temperature . Actualluy this is the biggest preblem for me . For instance , to reduce of the fee of electric energy , some companies develop inventions that storages solar energy . I 'm still wtiting my grade thesis . I always dream of travleling to other countries , seeing other people , smelling other soil . We made chiken with sause and did homework together . asa watashi ha gakkou de benkyou shita . yoro watashi ha hataraku shita . Car wash to Jollibee to Greenwich de hataraku shimashita . So , I decided to doze off again after waking up early , it was not a good idea , bcuz it led me to wake up at 7 : 15am , if I did not prepare quckly , I would have been late to work ! I am not going to a travel with Ke , bcuz it 's too expensive for us , but we will host a BBQ party at his home , with his family . . . Lost My Entry Aouthorization Certificate Today , the olympic games starterd in Canada . Sometimes , we are in a beatiful place , but do not realise it and we want to go away , yet there are many people from other places who want to visit A mile is equal to 1 . 6 kilometars . However , I 'm worried about the jewelry I buythatis same price as aticket , so it might be crap and if it is , I 'm not sure if Ishouldbuy such a fakepiece jewelry . maybe , I must workinghard harder . I 'm wathing a Harr Potter movie on TV . It ` s been rainning day after day for so long . Some day , I am determined to study English until I speak flently , before I grow old . Is it because we are introse that we are not good at chatting with people ? We test - ran 800 mitters today . I really do n't understand myself for falling in love oftenly and I had been depressed for every girl I met . I think I desire too much compared to nomal guys . . . I 'm pretty exicted about reading these books . I believe the ploblem of stress in the workplace is not being dealt with sufficiently . We should address the problem of stress in the workplace poisitively . I like Tayolr Swift ! Next mounth . Foreingers who are living in Japan for several years probably feel that `` they are discriminating against us `` . The reason why I write is that foreiners are very rare in Japan . Even I always gazed when I saw foreiners in Japan . vist ? working ? `` , `` Oh , foreingers , very rare ! `` `` Why did they decide to come to Japan ? , this country is very far from their own `` , `` Can they perhaps speak English perfectly ? `` `` Are they good at any kind of sports ? `` , `` Are they Europeans or Americans or Australians ? `` . I played on the body bord , which is an ocean sport . I like the sense of humor , the affectionatly designed characters and most of all the kind of story telling . Expecially the way the complete backstory of the central character , Mr . After the game Okada , who is the coach of the Japanese team , asked the chariman of the Japanese football asotiantion ( ? ) if he can continue being their coach . Neverthless the coach loses confidence in managing the team . Recentry , I got a laptop computer . It was hard but we had a goot time until the tournament . ( I love these kinds of moives . ) I want to write a dialy But I want to write a dialy in English . Today I wrote a repote in class . The repote above requires more than 2500 words . Because Japanese is usually pronouced in the order of consonant + vowel + consonat + vowel I suppose the mistakes which my daughter makes would be typical to Japanese babies . He finished studing abroad at Kagoshima University , Japan . In many circumstances , the Japanese people who need to speak English for their jobs are white - color workers . From yesterday to today , it was snoing too much . As a saying gose , good maners equals a good future . Fortheremore , the day when everyone builds up good manners , is the day when we will be able to enjoy our lives better . nThere is no reason to not have good manners . Yesterday , I played the guitar with my friend in my house aftrer school . Yesterday , my hunband went fishing and brought back many fishes for me . Summer vacation is drawing nere . At first , I tought I would be able to eat them up easily . So I wantde to throw the instant noodle away . However I tought it would be `` mottainai `` , so I could n't throw it away . My friend recommened this site . Today , my cliant invited me to dinner . I 've been busy for preparing my induvisial presentation recently . We often exchange letters or souvenirs with this system and also aften talk using / with the company 's extension . Who are your recommended singger ? Finally , dress boiled pasta in this sause ! Check my aticle and correct it . Though , even if the grammar is acceptable , chang the expressions if are not used currently , DinBo 's home is in a big town , and it takes a long time to pass through a / dark forset . Just when he walked quickly and quickly , someone / obsturcted him by / caught his cloth . Because I was busy yesterday , I could n't wrrite a diary . Why did `` Avator `` loose so many oscars despite the best performance in this year ? Today is the last day of 2010 . I have been a graduate for almost 6 months . althought the job of forgein trade is very busy , I always try my hardest to make progress . The biggest problem is my English . Sometimes I feel affraid to speak to forgein custome . I could go whereever I want . A friend of mine said that it was disappointing because the 3D glasses detracted from the color and blightness of the film . I 'm not being critical or sarcastic , and I usually do n't care about which restaurant has a terrible survice or which staff . is rude Actually , he missunderstood my address maybe due to my bad Korean pronunciation , but he was neaby so I told him the correct adress . Then he just said , ' I saw the map but I cound n't find your house , so I returned to my store . Thus I dicided to tell them how to meke tofu , It is a very challengable and interesting attenpt . but , it was enough to take away all the sultre weather from this morning . However , it focuses on one Daimyo ( Hideaki ) so much , that the story is not undestandable . When I visited the class , the sore throat had gone , and I had only a naisal voice . Steve ' apple - head ' Joves is really cool . `` Finaly , there are many kinds of games that require using my body . Today is my frist son Mark 's birthday . l was galded my son was happy . I am distressted . Hi ! Today was clody , so I sat at home and watched a tv show . I also listened to music and drew in 3D program ( solid works ) . In the future I would like to work as a programmer . I 'm studying metalurgy these days . . . I 'm friendy so if you write to me , we can have a conversation ; ) I do need a normal English name because I do n't want my forign friends feel strange when they call me Pengfei or Fei . I think Christpher Nolan is a very smart movie director . Everyone , Laos is wonderful , beautiful and kindful country . If you are too tired in your life , I recommen that you visit Laos confidently . For example , a German shepherd dressed as the police , and his owner dressed as a prizoner . And there was a mummy dog and a witch ( the owner ) , and a hotdog dog and mastard . However , when I looked at the unit carefully , I found that it says KJ , not calory . I can read English to some extent because I have been learning English for more than 10 years , from junior high school to university , but I have not practiced writing , listening to and speeking English . They aseked me , `` Did you buy it in Mexico ? `` I said , `` No , I bought it in Korea . `` Japanese peoples like rulers lines ( A . K . A Excel junkiy ) I think one of the reason is the history of word processer use in Japan for the past 20 years I have to remember some Italian languge for my job . I read an article about lady Godiva , you know , the simbol and the namesake of the famouse chocolate maker . It 's a shame that the legend was not what really happend , but I do n't think the fact that it 's not true will diminish the attractiveness of the story . I don ' tthinkI 've fully understood why the company chose her as a simbol despite of the statement on their website , ' He ( The chocoratier ) sought a name that embodied the timeless qualities of passion , style , sensuality and modern boldness ' . And many women had Hakama ( Kimono ) , it was very beatiful . I ca n't stop drinking coffee , although I do n't feel slppy . I always drink over 3 cups of coffee a day , but I learned that drinking too much coffee is not good for helth All of their music is vey cool . I 'm embarrased because I ca n't speak English as well as trasnlate it into Japanese . I thoght that it would be used for business entertainment . Anyway , Our team entered a competion last Satuaday . It 's a very small competion with only four beginer - level teams . But we were not good enoght to win . But I 'm really releved that it did not hurt so much . I had a great time ; I feel like I 'm in Paradice ! I will be able to have Paradice time in February too . You would say this word when one is expecting you to do too much for them , when someone is relying on you a lot and you are annoyed or ungry about it . hahah ! ! Tonight , I will watch the Chun Wan and the firewoeks show , which is always fantastic for us , the Chinese . ' iCarly ' is a sitcom in which Carly and her frineds make thier own web show called ' iCarly ' . I am jearous of a woman . I have exam on monday in akorean . I hope be first in my class . last noon , my boyfriend ate greasy back shrimp , at 4pm , he had a stomachcahe , he was vomiting and had diarrhea , he felt uncomfortable . It is hard for me to walk araound TDL & TDS all the day ! ! My hasband and I have been married for 5 years . This Wednesday , I went to Ikebukuro in Japna afer work . Nearly every applicant to universitis is required to take this Examination . I heard about this service from one of my coleagues . I hope that I can develope my English and also make many new friends on this site ! Telling The program is about other TV programs I like , USA or UK drams , for exsample . And soon the Chiniese language will be very popular . But here , on Lang - 8 , many people want to know Japaniese . Their music is not cool ) , Maximum the hormon . . . . . It 's a bus tuar to go to amuzement park and find a Mr . Usually , it is more unformal than arranged marriage . So I think you shoud use a website that is aimed at specific groups , for example , a website of climing , cooking , and whatnot . The soothing breeze is trying to evaporate the moisture of lundries hung on clothes poles by my mother . Ocassionally , some birds zoom past before my very eyes . Where does your family usually go for a aummer holiday ? So , I strated my motorcycle and went out without a raincoat or umbrella . About 10 seconds later , the raindrops suddenlly became large and heavy . This pic can ammure you in the late 70s USA , a life where you have no one to control you and every right to violate [ what ? ] ! I think we can deal with the problem using proper methods that enable us to dispose of the waste matter and make the emvironment clean . At first , she wanted to learn acting from the actor , but gradully they developed a relationship which is like father - daughter and lovers . However , all the projects are n't always successful because some of them are led by the initiative of developed countries with little concern and understanding for the local gevernments and people . Santa Claus who wears a red hat and red clothing bives very kind children gifts . We ( do things like ) watch a movie , have dinner at a very romatic restaurant , or exchage gifts . I found Mos burger bearby my home ! Cuz it 's very quiet and few peaple are here . Before 7pm a crowd of peaple are often here . I quess they are univercity students especially . Writing english on this site is also learing . . He likes Power Rangers , Masked Rider and UrtraMans . My English is at the basic or pre - intermiddiate level . And I made it a habbit to memorize what native speakers corrected . What do you recomend for me to do ? However my throat is still not crear . I went to the Tanglewood Music Festival with my collegue last Saturday . I listened to the open reharsal , the prelude concert , and the main concert . However , the understanding of the cecessity of the procedure does not seem to grow . Please correct my Enligh , for any mistakes . What Souhld I do to solve the problem ? I was sweating becouse today was hot and the event was held outside . It was kind of a sence of fullment . One of my woman freind suddenly said , certanly foreigners do n't care about small matters . But I think I shuoud be more self assertive , I got up arond 11 : 11am today . Is it at the shore of an ocean / at the ocean shore or the appartment on a high floor in a skyscraper ? Ordeal of the Eentrance Examination in Japan In Japan , we call the system the `` escalator method `` , which measn once you get on an escalator you can arrive at the destination automatically . A recently discovered species of a frog fish , has been dubbed the `` Psychedelica fish `` because of the beige and peach zebra - stripes that run from its blue eyes to its tail . Using its lower fins , the Psychedelica fish expels water from tiny gill openings to jet itself forward . Psychedelica has a gelatiness body covered with thick walls of skin that protect it from sharp edged coarals . On purpose I 'm not stating which one is the best because if I did that , it would be easily jammed with trafic . It gives us a lot information about books , movies , caffee , acters etc . . When he was going out , suddenly it was begning to rain . `` Shall I lend you an unbrella ? `` I 'll come here on some rainny day to return this . `` `` Regular holiday is Wednessday but we do business only on rainny days `` I had maken some mistakes , usingthe previous method I used to support him at home . Beacuse of my foreginers . go abord to see the world when I have the ability . beginnig of the loss , I thought it was my bad luck . It was ture . It is crowdy in Sydney . Yes , when I met her the first time , I was somehow confidet this would happen please check sentense Now one of my favorite airtists is Drake . I found this website on a discuss borad and it seems interesting . My first dialy is about my new PC . And access high spped Internet . I pick out the best shop to buy it , however the shp had no stock . Yestoday , when I walked out my office , I saw a lot of crows . I never saw a crow before until yestoday . STEP4 Hilight the ideas from step three that I believe are true , or could be true , in certain situations . Atfter the coffe was ready , I put a filter paper on my cup and poured the coffee into my cup . Actually , my father - in - law 's brithday is 15 . Can you believe that the temparature is higher than our body temparature ? I ca n't understand what happend . Plese let me teach thank you . I was pazzled by his English . It seems that it is the 5th biggest earthquate sinth 1900 . it is late to make a centense in my mind . I got so exausted but this experience brought me a sense of fulfillment and new friends . To write a diary in Enlish or Chinese once a week . It is a reason to laern English and Chinese . The city of Munster decided to ban cars within the city and use bycycles instead . The suspicion of match fixing in the chinease football league storms the nation . Last Sep . 2 , the second devision soccer team Qingdao had a match against Sichuan . The Chinease football association initiated the investigation but these past three years , the rumor about match fixing is going around in China . Recently it 's been insainly hectic and I ca n't review my entries . look beatiful There were two things that happend this weekend . Second , My parents had a serious arguement which surprised us since my father ( split the water ? ) and broke all the things in front of him . I really do n't like the way that he communicates his anger everytime . Next we taiked in park . Suddnly my friend said : Toshiya , you does n't go back because train left a few minuts ago . Yuta lived nere here and he is very kind so he stayed me . Then he changed the dign so I helped him . If he has a trable , I 'm going to help him . I like to trabel ( especially to foriegn countries ) I 'd like to explain the Himeji catsle . The shape remains us a white heron flapping its wings , so It is called `` Shiresagi jyo `` as a nickname . people who I can share things with , have a conversation with , and make a realationship with . Recently , I have been lucky enough to meet many friendly , special neightbors at the dorm . I already met one kind neightbor who did n't mind spending more than three hours in my room fixing my computer . It 's not that long ago since he moved , but unfortunaely , he said yesterday that he 'd be leaving to Japan for his business In my opinion , we do n't need to be strong and parfect to fish , why not examzin yourself , okay ! It is not too late . So , I am writting a diary ! So I always practice writing , readig , listening , and particularly speaking . I ate some foods but the Garmany sausage and Toppoki from South Korea were the most delicious . foriegn ppl think it is too hot . First of all , take Vitamins and iron continously . I could like it , but if I do n't go into an accademical career or the specialisation of hospital pharmacy , working at a pharmacy might be unsatisfactory and it woud n't allow me to have different experiences and to `` build `` a personal career . I am a very energetic person and I am able to keep dicipline . Energetic sounds more natural I love readnig , so I love book shops . In addition , they looks like some pictuers or marks . When it is someone 's birthday , we always make presents by outself . there was an earthquate . I did n't know whether I sould run out the restroom . When I was thinking that , the earthquate had finished . Today when I took a break and search the internet , I found that there were really a lot of peple speaking highly of this film . becuase it runs well . This Thursday , I ate so many diffrent Poccky . Also , Wedneseday , I went to a bar , for `` Okinawa dining `` . Today I tried to expline that Mt . I want to make my son a prefessor . They are my favorit . We drank alchole in the sea house . I was so narvous . . . It ' a joke , but anyway we enjoied fishing . met my clessmate and made new friends who are Arabic . I 'll be very busy from April , but I 'm excited for the new life , and I feel anxious a lttle bit at the same time . I 'll be a sutudents , so I 'll have many sutudent discount . Thogh all of my friends laugh when I showed them the picutures . This is a technical and amazin invention . My vacation days are nearly over , so I tought it was a good time to get some wind . Everyone applaused sincerely and cheered joyfully for them . Althoough I 've had a few relationships before , none of them I really wanted . Yesterday , I went to an English leston . Duriong a group discusion , a question came up : Could you live without electicity ? Someone sade that he would commit suiside , but I think maybe I could live better without computers or the internet or tv . Without these things , I could walk out of my room and talk to realy peoply . The answere is `` public servent `` . Now I am listening Macros Flontier and working . We are supposed to talk togeter using headsets . The maxmum is - 8 degrees . There is no Chinese teacher at Odawara castke . I 'm jast study by myself , with a Chinese language textbook . The orange collor motivates my heart . The blue - violet coller is very nice . Now , you can see the beautiful red and yellow reeves around Odawara Castle . Unfortunately , I do n't know the histrical significance of Odawara castle . My Englishskill is not good . Incidentally , I have received notification of EIKEN Grade 2 and Pre - 1 test first stage exam which I took on Jrunuary 25th . I was so suprised , because I did n't expecte that I could pass either of them . you can googole with `` * ( asterisk ) `` . And to earch for an exact phrase , enclose the phrase in double quotation marks . Unlike our ascestors , who lived in the past , we are now living in a world which is full of media . Theoeretically , the media reflects how we humans ' lives are advancing and changing . Then , the media appeared , which tried to express one single messsage to the public , and that is what almost dominates our daily life today . For example , we have seen several interpretations of the event of 911 from the western to easten media . The media advances our quality of living by informing us of what is going on around the world which allow us to deal with our lives easier , but we should not ignore that the media is not a neutral mechanism but a living organsim which has its own values and tries to influence us when we are heedless . And , never forget , try to think twice about the meaning of the informaiton when you receive it . A queation from `` Can I Do This `` . I somtimes think that my problems could go away like melted snow . In my opinion , it seems like a combination of two words : religion and rediculous . Groups of brids soar to the west for family . So I 'm studying Engrish now . I arrived on March 28 in Merboulen Australia and will study here for To celebreate , We went to their family 's house and hadlunch : ) But his subordinte , a woman , betrayed him because she wanted to save the human world . Japan has diversitied climates , so there are unique and varied local spcialties in each place . At the shop of Niigata Prefecture , the emplyees stock plenty of snow next to the shop every winter . I 'm a senior at univercity and a major in Education . I want to write more , but I 'm geeting sleepy . . Until I got my lost stuuff , I spoke to the man in charge . Luckly , all of my colleagues are very nice , so I just can work hard and do my best now . `` You are realy a good man `` Kate answered yaaaaaaaaai ! ! I want to eat japanses food soon . A bag of snacks disappered in about 1 minute . Unless you watched this drama before , you would never understand the whold story totally and it wo n't be interesting anymore . Even though , I have never seen Star Trek before , I strongly recomment to watch this together because I hope it can increase my imagination like the moive Star Wars . We display so many dolls to wish our doughters 's good growth every years . ( When it ended , I was very very sleeply . ) It is a kind of traning at my work place ( company ) once a year . First it was canceldd , but then it was postponed to a later date instead . So I deceided to go to Okinawa . In Japan , cherry blossoms have a lot of pitals now . Since so many people went to see the cherry blossoms today , I could n't oass throught the road by there . I have been to four foregin countiries : The United States , Australia , Indnesia , and Singapole . My favorite place is Austaralia because I was so impressed by the Coral Sea . I 've started to dance Tango scince this February . I do n't like buying clothes that are made in pooe countries . That is , colothes which made in poor countries often made peple work very hard for very very little money . Cheap clothes are very popular , but they are not good for those who made the colthes . So , I like to preffer ' ' Fair Trade ' ' . Especially I hate Japanese appael brand UNIQLO . I want to wear clothes which make everybopdy happy . To enjoy hashion is Ok , but I really want a lot of people know the fact of cheap clothes . I took the morning off today , becouse I had a stomach - ache . Do you kknow Higashino Keigo ? Did Sant Clause come to you ? . Luckily you are the first person who is an electronic technician who bought this device from me with the problm ! Though I like anime , I ca n't believe the above resolts . Twigliht - New Moon the Jonas brothers and tylar Swift . My birthday is novembar 23th . Becuase it is full of difficulties , presure and unknowns . I always come across some troble , We odered five sevings of pork belly . Althogh we just odered five servings , it seemed like too much . School just started one week ago , so I decided to insist on writting in my diary every weekend . LMAO , two americans in the audience at that coffee shop were surprised when they saw sunnie and I going into one bathroom together and they were also surprised that we were holding hands all the time - they thought we were lesbin ! It was a 1st model when VISTA was lounched by Windows . or to hear radions and TV news for various countries . I 'm looking forword to it . Towmorrow morning , I will go to a language company for interview . Have you ever eaten spagetti with salted pollack roe ? having a child , our jobs and anything we conscerns . He was cool as aways . I ca n't waite for his come back from prison . I think that celeblity obviously shoud n't have them . I . 's public estimation because I did n't read airticles about him . I want to know his recent news . It is enteresting and fun . I do n't know wht to do now . . . It is continueation hardship everyday . Monday is comming to me . Could you please explane the difference between cartoons and comics ? As I expected , granma , ma and pa - all of them welcomed me . I cought a flu last year . When I came into the party place , I found many people were wearing really gorgeous and brilliant coutumes . We drank untill 3 am , as usual . When my host hostfamily goes on a trip , they start barking even at night ! TV showed people who live around the nucler powerhouse in Fukushima that were allowed to get back their home for only for 2 hours . I would like to say somthing about my little brother . Can you helpe me ? Ah , is this dialy good study for me ? Taking care of their children and being a part of their faily is my role and job . my homeown is Langzhong in Sichuan province , which is a very beatiful , ancient city . I 'm plannig to go back Kyoto to attend my friend 's wedding ceremony and prepare my own celemony which will be held on May 29th . And I also have to go to my university , to tell my profeccer that I will be getting married . My backup data was on an external HDD conected with a USB . Today I tried to figure out some math problems I learned how to solve in elementery school , but I could n't ! Yesterday , I drank with my boss and cliants . I know it 's a stupid thing for American ppl . Now I feel so lonley . Pepole call it a `` cleaning robot `` . I boiled water at 500cc and added chiken stock tablespoon 1 . 5 and a proper amount of salt . Then , I boilded somen of two serving for 2 minutes and stirred sometimes . I boiled the soup again and after the soup boilded I stopped the fire and displayed it on a plate . By the way , I saw my friend in the librar , so I said hi to him . I will be flighting against time , I am workg as a waitress now , so I have a question One more good point about this center is that its free . If I correctd somebody 's entries , I can get ' stars ' in Lang8 . And leave your coments . The other day , I bought the book `` Macbeth `` by Shakespear . I want the help of everyone whose Eenglish is good ! We bussinessman must be careful . The first picture I uproad is that . I 'll be fortunate to have a good family and a work worlth doing . I am satisfied with my purchases , and I wear the pk t - shirt very ofen . For the following reasons , I disagree with the statement that the companies are allowed to do anything to boost teir profit . In the worst cases , some employees become dpression and kill themseves . A boy sutudent who was doing badly in school leaves behind a high ranking high school in Tokyo moving to Himi to lean on his relatives . He comes across a girl student named Nagisa Ichinose . I hapiest when I 'm with my friends . It looked like they will stay in Kyoto , so I told them about Nijo catsle , Gosho , Kiyomizu Temple and so on . So I started this morning by taking a sample of my daugher 's pee . I am Nao , a japanse person who is staying in India to study . I imagined when I was in Japan that I would be able to speak fluent English automaticaly if I came to India . The other was 07 : 40 AM , but I do n't remmeber hearding any sound , just when I sunddenly woke up and checked the time - 08 : 40AM . It was called `` Sony timer `` , because they were broken afer the warranty period . What dou you think about Sony products ? `` You cn say that aggain `` `` You couldo n't have said it better `` Tha 's easy , so I 'm gon na write about my first concern which is `` eartquake `` It has caused devastating `` damadges `` such as `` Tunami `` and crippled `` nuclear power `` They asked me , `` How often did you experienced an earthquake ? `` , `` What didi you feel then ? `` We should reconsider how we live eith animals . But after a while , some of them are tired of raising their pet and worst case , they abondon them . The fact that animals are often used in experiments before products like medicines , cosmetics and foods come out on the market is unknown to mose Japanese people . I ate lunch with my grandmother today because my parents went to a grave of my father 's ancesters , and they were going to lunch with my father 's brothers ' families . I ate too many cakes or sweets and I forgot to excercize . I may be succes if I keep on diet for a while . To make a story you have to read a lot of books and pracetice writing . Theare is one of the most famous shrines in Yamagata prefecture . In the weekend , Taiwan have a typhoon come , We get a haliday on danger , so our govermment proclaimed that we can have a haliday . My dughters , husband , and I enjoyed having him over . admiration , happyness , aesthetic pleasure . He also liked soju ( popular Korean alcohlic drink ) . I sutuid English yesterday . Firsut of all , I sutudy vocabulary becouse I am a beginner . I want to be able to read Eglish newspapers . The girl called Nastya appointed an interview today at 4 p . m . , but after coming there I found out that the interview will be tomorrow because of their tecnical problems . So , some children and their mothers came to have lunch threre . My former tutor who lives in Tronto just emailed me . I took part in the drining party . I was selected as the person and got the awrad ! In the last scene the bat fell into disfavor both groups , because he tried to trick them . 4 . Memorize English sentances on www . idealen . cn . But today , I wanted my hair desighner to cut my hair shoter than now : p I hesitated to say please cut my hair shoter . I really want to move to Califonia although it 's nearly impossible that will happen . However , in most cases , I ignore that isue and hope it is just because of termporary stress or just a minor thing with hypochondria . I think many people in mordern life have the same experience as me . On the other hand , we worry about our health and think we need a check - up for prevent serious deseases . I saw them throwing their cigarrets on the road ! ! When I walked behind them , I had to inhale the secondhand smoke which contains much more chemical poisons than the smoke they directlry inhale ! ! I started thinking that nobuddy is going correct my posts . Maybe I shood make mour misstakes ? And I felt positive feelings and warmful about the Hawaian people . Regarding Hawaii , it 's really warmful but not humid there . I went from Tokyo to Sizuoka by Sinkansen . Japan 's resesion is very serious . These days , TV , newpaper and radio broadcasts tell us that the climate of the earth changes day by day . They also tell us that humanity will face global warming . Unfortunally , I do n't like to play football , when it 's 35 * C : ( One - day travell / trip Anyway , what I can do is practce , practice , and practice . Once I have & nbsp ; gratuated from university , everything & nbsp ; will change . Today , I met my friend and we went to an exbision in a bath house . `` Calrify `` is a very useful and common word in daily life . I am calrified on what you said . ( good sentence ) I 'm trying to calrify what the difference is between them . My short - temperd boyfriend So I wanted to work it out , but when I talked to him about what I 've been thinking about the other day , I could n't help but to cry . What he gave me was not a big sweet hug saying sorry , he gave me an annoied look because I started crying . I 've desided to dilute my passion for everything British with American literature . I do n't know American literature ( as / that ) well , so I would apreciate it if you could recommend me some of your favorite American novels . I shold 've gone to school : < carrer choice and I have to sign in , in one of two carrers that are vacant in two different places . and the other is data proccesing and is something that I 'm remotly interested in . But what I really want to study is language but that is a carrer that you can only study in another state but I do n't have the money to afford to live there . According to this movie , his harmony sounds quite excentric , he hit a lot On top of how different his music is , his appaerance and behavior is also strange . His son , Cyle Eastwood , is active as a professional jazz bassist . Also she was awarded for her excellent discipline and puntuallity . The restaurant was very clean , the food was delicious and also they played Chinese music in the background , a very nice pleace . Every three days I chang the water . I hate oneof the supervisers because he always says `` no `` when I ask for somthing . Other students also dislike him because he is very strict and he always says `` no `` when other students also ask somthing . Today , all my classes were cancled so I had much more time . It is a fascinating and attracitive place . I found a bag of ramien , but I did not want to eat it at that time although I often eat ramien late at night . I want to play with storong people and get stronger and stronger ^ - ^ A gide said `` I do n't know that reason , `` and I did n't change my I - phone . we played beginar and medium courses . There are very nice and fashonable restaurants in Sydney . The number on the dispray began with + 1 and I easily could guess who was calling . and who wtold me that he 's been catching a cold , I live in a house where many forigners stay , but I do n't talk with them often . Its interduse said if you could be young again , how would you use your chance and not waste your time . Some countries would rebuke that coutry throught the media and demand for an apology for the incident , not a war . At last , I probally should close the window . . . . . I hope I meke improvements in my Englih before I get a part time job . I booked the B & B for 3 weeks until Des 9 . Over the past coulple years , almost all of my friednds got married , and some of them bought their house and had babies . I heard that in some European countries , the number of non - married couples are incresing . Of course , there might be other system instead of the old marriage system for life gurantee . Letter ( Aki angera ) In the midest of this pain , I live the present . If you continue asking what and where you sould be going , Today , I made friends with some students on focebook . Because I like pokemon so much , I wanted some Engish pokemon games since I was in Japan . so all my plans for this weeekend failed . It was an ad for a teaching job in Makaty City , Philippines , and I received an e - mail from the school president . Although I am afraid of going there , I thought that this is a rare oppotinity for me so I 'd better go ! I decided to go to the Philippines . I 'd like to make friends with people from all over the world throug this site . I am very happy because I passed an exame and will get my first job . Yestarday , I received my ( employee ) bonus . My company paid it to the empolyees , half based on the monthly salary , and the other half based on the results of what they did . Sources say that the number of people traveling abroad will be increaing this summer because of the strong yen and gradual recovery from the resessions . But I can not belive it . It was a wonderful experience to enjoy food with not only the taste but also the sence of touch . He called me in March to notify me about a job interview , but I had a another job interviw on the same day . It 's highly important as to whick book I bring . Yesterday , I read an article about the Human Resourses department in a certain company . In my case , since I 'm an elementary school teacher , the government adopt new teachers , we basically train by ourselves , principals deside which grade we would be in charge of , and we have to cope with all of the problems and complaints . At first , I thought it was just a simple place to learn languages , but when I logined in , I found it 's a very interesting place ~ ~ ~ The throat syrop is called `` Stop - cough syrop `` . My hobbie is playing the piano . Recentury , I wrote an original song and played it . If there are presure things day , my song is up tempo and pop . I did n't buy it from a forein manufacturer . I woried about it . Many of my freiends are going back their countries in Decmeber . Today , I took the entarance examination . Women figure scating I will watch the Japanese scaters and Kim Yu - Na parts on TV . There are three scaters from Japan - Mao Asada , Miki Ando , and Akiko Suzuki . In Japan , people are exepcting Mao Asada to win . This cafe do n't serve the sholder masserge and huart ( huart ? ) mark kechap on Omrice . ( Yummy ! ) It 's very reasnable in Japan . I do n't want the servises like the Maid cafe in Akihabara , so I 'm sutisfied with this cafe . I want to give servises for the gails more than to get thier servises . That 's is more inportant than optional servises . I am trying to ride my bike eveyday . His name is sccot However , I could feel that he was kind because of his pasionate for studying japanese and his eagerness to talk to us . Summer is comming little by little . I 'll try to do my best in grammer , spelling and pounctuation in my journal . What is your accupation ? Have you employed au aupairs before ? bacaouse today is our five month anniversary but I can undersatnd him . he seems to be navouse . . . . I belieave that he can pass the test . I have to study grammer . I have to lissen to English conversiation , something like that . I should take it easy , and I should take every oppotunity to talk in English . I 'm not skillful at computers . At last , when it settled on the wall , I cought it . I just wrote 5000 words so far even thouh I have to write more than 32000 words ! Thanks to everybody answering on thihs ^ _ ^ On second thoght , I want to post non - japanese songs after all ! I signed up to Lang - 8 when I was in Japan but I have n't written any entries here because of my lazyness . . . I practice some tirics . Recently , I became crayzy about `` hannah montana `` ! I am cheeringfor all athleates of the world . Recently he scrachs his cheek . We will be watching the movie ' Avartar ' . Controllering an avatar that 's something you 're not but represents you seems awesome . Appearanace is considered an important factor in building relationships with others . Of couse , I want to be rich , but if I were rich , I would n't feel like living a simple life . Him : I hav to go now . I wathced the movie named `` Ponyo on the Cliff by the sea `` . I like fasion ! By the way , I like fasion . The members and I have placticed very hard for that show . As a result , it was sucssesful . When somebody who eats my cokking says `` delicious ! `` and smiles , It makes me happy . The letter was from someone I 'm kind of intersted in . I wil write a reply someday . Hou dou you talk to a person you 're kind of intersted in ? That means we have to dispense one prescription every 3 mins . wellcome to everyone . And I sometimes atching TV . Companies such as SONY have a lot of personal informations responsibility to protect it from hackers . But hacking technology is imploving day by day . But providing our peasonal data means that we should take the risks of our data being leaked . Customers are afraid of their data being leaked , but they want to enjoy the convinient of online services . This is too complecated . . . Espeshaly , I want to write in English . Please send me a messase . Now , I 'm learning about Gairy Snyder . I was looking forward to joinning this site for a long time . Please correct my dialy . Good mornig ! Lucklily , my cousin who lives in Orange county called me ahahahahahaha ! I bought a notebook and many colorfull pencils ! ! ! Did you know , a few months ago , the Chinese goverment forbade the custom of wearing pajamas on the streets ? I was a shoperholic in the past , but I am not interested in shopping any more . It 's unbelivable . I am so affraid I 'll lose my mind because of him . It had been rainy these day , so we can wash clothes and dry these clothese outside today . fantasic scenary . It is about our regionaly press in 1905 when the first Russian revolution begun . A news interpreter explained those reports like the issue of the rare earth , the Myanmarse military resime , the conference system regarding the matter of child abuse , why India has developed now , the war between the Mexican government versus some drag cartels . Before the opening , they asked the Japanese self - difense Air Force to peforme something interesting . He said that they should take the annimals in the zoo into consideration . As you know , we Japanese are struggling with a large goverment deficit . Considering the amout of deficit , we should privatize this peformance team as soon as possible . After I watched `` Sister 's Act 2 `` , I really wanted to listen to Lawryn Hill 's album . Both of them are Amercians . She will join all kinds of activites such as English discussion group , go to meditation , running , perform yoga and so on . Before she started her IMBA program , we often hung out togerher . I can tell she does n't appreciate some Taiwanese cultrue . Also , She has a strong personaliy and sometimes I feel stressed when I 'm with her . Tonigt was fun for me . Our conversatin was in English since I need to practice the coming interview . I do n't like hollywook movies either . People can prevent some escapable tragedies or create a more enlightened society through learning wisdom from our intellectual ancestors , which is recorded in history . I miss the beautifl sunshine . We played togeher , laughed . . . Of course , sometimes we guarrel , but then apologized . It is famous for monkies and onsen ( hot springs ) . The next day , we went to Nikko edo mura - an amusument park which looks totally like an Edo period Tokyo town . It 's very delicious and having convesetion with them is very fun . I reaally need help frome someone . Specyfying my language goal . I recognize that time heals everythig . a SKY ) committed suiside . He was the younger brother of famous actress Choi Jin Sil who commited suiside 2 years ago . Before talking about tihs , we must know about his sister . She finally committed suiside , but the reason was never known . Finally , he committed suiside yesterday . My friend recommended this website to me , because it is an excellent place where I can freely exchange experiences with people from all over the world in different languages . And I found the atmosghere here is friendly . I ca n't understand why it costs over a 1000 dollars to pull out a wisdom teath if I do n't have health insurance . croudy day Yesterday it was ranny heavily . But today it is n't ranny , just croudy . Mokpo is a habor city in Korea ~ but , we do millitery service . Yesterday was the 63th anniversarry of the dropping of nuclear weapons by ( 1 ) So we have a responsivirity to decrease them `` Is it my fault to lose my intrest in that ? ( 3 ) Some forigners will think that what I said is a common idea in Japan . Japan 's national team is storong now . We enjoyed visiting Kamakra . I have read a book which entitled Congo Jouney I live in Saitama , where is located next to Tokyo , and I saw a lot of people kept coming to the station and they found all of the trains were canseled , so they started walking to their own home . I hope everhthing will be better tomorrow . I 'll rivive my hometown and hope to live here with my favorite landscape of the sea again . It is easy fot an outsider to cheer local people up and critiscize the Japanese government , but people who are the most seriously and deeply thinking about revival are the local people . One of the most important things they want us to do , I think , is to start preraring for the next disaster . My father likes to eat Japanese food named `` Na bean `` evey day . If your vocabulory and grammar are not good , you can not catch what they said . this is the first day I come here , I want to improve my English here , at the same time , I also want to learn janpenese . I know all of you are kind hearted boys and girls , and you all have good language telligent , I need your help , and also , we can be friends . There was no sun but , only constant snow and raning . If I choose only 1 from them , it means I abondon the others . Nowdays I think a lot of electrical appliance shops have machines to make bread at home : this way you can save money ( is it sure ? ) and time because you do n't have to go to a baker 's after work , or if you forgot to buy some bread , this machine can solve these little problems . It seems like a useful electrical appliance and one of my flatemate is thinking of buying it but I 'm not a fan of it yet ! In adittion , most people study English in high school . I ca n't wirte in English . I realized that rather small rivers in America which run through cities are covered with cement , like a snowbord halfpipe . ( * see below ) I have been using English more and more on bussines in recent days . My faverit song . Hello , my wonderful friends tonight I will practice my faverit song . I cant ' read some of the sentance as it is so difficult . If I go to a pub , I want to drink Lemonede . In the next class , I will teach a lesson , so , I have to prepary a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , yonger people , close friends or acquaintances . I 'm going to write a lot of things in this SNS . For example movies , books , my daiy life and so on . . . This book is about the globalized world and it was written by a journalist who has won the Pulizer Prize three times . Auturn is my favorite season ! Japan has 4 seasons , spring , summer , autum and winter . My favorite season is autum . Then we can taste autumn speciality crops , pear , grape and chestnuts , ( The word `` marron `` is more populer . ) And it will be rany tonight . I tought them how to play ! Today , I had a health check at my shcool . Notihng was wrong with me . You can cook it by simply pouring water into a cup with some powdered flavor and putting it into a microwaver for five minutes . Computer graphics is very difficult work , so I often search for hints to solve problems on the intearnet . I think I should change my atitude . Because I have no opopportunity to communicate with them before . This is called `` white nigth `` and people go to bed very late too during this time . Next year I wil go to Canada or New Zealand as a WWOOF . I felt so misarable , so I thouht I would write about it here and get some input ! It 's a big event for every Chinese university , as well as primary school , midddle school , and high school . After the speech , every college in our uinversity was requried to present a creative show in one minute to show its different style and features . During thse performances , the applause was enough to bring down the house . But choising presents is interesting I guess . This is my first time to post something about myselfe here . There are matreshka ( exclusive and usual kinds ) , different things made from elm , from clay , also many kinds of jewelry made from stones , dalls , stuffed animals , wooden furniture and big wooden figures , textile , clothes and so on . It 's a muslim programm I have never seen , maybe because it 's on in the early morning or because I watch TV very rarely . . But , on the other hand , care assistants for elderly people is lacking in Japan , so the government is planning to accept workers from Indnesia . It happed when she was n't with my friend . For instant , the famous physicist Einstein , changed our tradional view of the world . Parents in China attach a lot of imporance to scores and rankings . The baggage delibered was a black chair , two tennis rackets , a big shelf , bedclothes and so on . According to my inquiry , my baggage was deliverd to another place because of a mistake by the staff . I saw Ugly Betty who is a very adorable charactor in the drama . Omlet is made with carrots , beef , onions , pepper and salt . Resently , I 've been trying to be calm by changing the way I think and my attitude about everything . And it mekes me to be slightly nicer to other people too . Meeting with Alchol Big surplise , news have just arrived . After asking me many questions about my courses , my intership experience , career planning and some other professional questions , she let me read three emails and tell her the main content of them . I read many emails like this last year during my intership . I asked her to tell me more details about the positon . After that , I knew the duty of that position is to deal with many triffling rountine things , nothing special . She told me more things would be dicussed in the second interview . So just foget it . I 'm very glad to jion you all . My mom , dad , elder sisiter , her husband , her child , my elder brother and his wife . I 'm looking forwad for you to point out my errors . Lusy 's characterimpressed me more than others . Today , 12 . 5 , is the anneversary of the Wenchuan earthquake . tragy . Costing hundreds and thousads of lives , the disaster has broken hometown , we shoule also try very hard to help the people to Today , I attended English calss from 8 to 10pm . Usually , the calss lasts from an hour to an hour and a half long . therfore , I am making a resolution to live abroad . Actualy this one is a ' mobile laptop ' so it 's smaller and lighter than the old one . By the way , we 're in a summer break here , and I 'm planning to go to beaches , museums , travering , watching fireworks , etc . . . I agree with the author 's opinion that in Japan , children can not leave teir parents house hecause their parents wish their children would depend on them ; though their parents are complaining about such situations . When parents live with teir own father and mother , they can ask their father and mother how to raise thei children to be independence . I think that those are the reasons that Japanese parents wish that teir children would depend on them . A few days ago , it snowed arround my house . Today is Chirsmas . I met people of various agethrough voulunteer work , part - time and practical training . Oh ~ Today is aiso a hot day . Right now the temperature in Fukui is 10ish degrees Selsius . We remainded for extra inings because the Giants will win . We thought it was possible for the giants to winn , but the game was so exiciting and the next one will be a win . I went to the dental clicic to pull out my wisdom tooth . If you are interested in it , please read my journal named `` Describing a picture ~ `` ) She has a really tiny waist , hwever , she does n't have slim legs lol ! She looks like a dool , because I can not think of a human that has such a tiny waist > < . Today , We smile , cry , shop , and lost something on this graund zero and bombed erea . Of cource , We have respect for the dead . She Succeded . It was a visious cycle . Today , she put out an unbeliebably big poop ! ! I graduated ( guraduated ) Chuo Uni . I like socce , drinking part ( parties ) , and talking . As electricity has been cut off because of the earthquake , I can not cook and eat food which is sold at a convinience store . The best one is baked slmon rice ball and the second best one is fried rice ball with various ingredients . If you have a chance to come to Japan , why do n't you try eating a brice ball ? Acording to the weather forecast , it will clear up and be sunny day . Aroud 10 a . m . I wil go to the City Museum to see the paintings , actully , I have been learning English for many years , but I am still not able to speak English fluquently . Maybe you are wondering which city in chian I am from , so , I can tell you I am from Changzhou in Jiangsu proveince beside Shanghai . I 've been so addicted to quotes these days since one of my Austrilian friends showed me some funny quotes and love quotes several months ago . I recoment you Nagashima Spaland ! Then , the weather forecast says that a small typhoon is likely to aproach here ! I do n't want to buy one from a Chinese resaler on the Internet . My dog expresses his desire to go outside by scraching the door and staring at my father 's face with expectation . My dog 's most hated word is `` shampoo . `` Last time I visited my parent 's house , I asked him `` Can I wash you with shampoo ? `` My dog dushed to the door , opened it very quickly , and run away . Pepole living in Osaka eat `` Okonomiyaki `` with rice . It tasted like strawverries . There will a high school entrance ceremony for my yonger son tomorrow . The nuclear powerplant in Fukushima was highly affected by the big tumamis so we must save electricity . Instead of starting the summertime , my company will stop using half of our building 's elevators to help save electricity and cooperatea with the government in improving our economy . I look up to him even though he is youger than I by three years . He told me the reason why many Japanese people have no hope for their future even if they have a lot of muny and their lifestyle is better than any other country . She likes English and so in the future , I may be taught English by my daugher . My father was researcher of a geological survay . I do n't know amang these qestion . He said it 's yammy that 's why I 'm so happy . He ricomend that I should stop attending language school ! ! but , for 2 months I wnet to 10th . ? ? ? Someyears I have a Birthday Party . I will have a chocolate cake and get gifts from my friemds and family . This is the first enty By the way , she paied 170000 yen for the painting . My friend always says that internasional love is difficult . . . She is easily frightend , so as I expected , she started to cry as soon as she heard the sound of waves . ( picture1 ) Since we got free tickets for some amusument parks and botanical gardesn , we went to some of them . While there , we walked along a slope which surrounded a large aquarium that is cylindric in shape . We could see these fish right here , so I felt like as if I cound touch them . ( sorry I worte a dirty word ) My colleagues and I argued about the mechandise 's selling place this morning . Since my brain controls every part of my body , both phyical and mental problems have happened , for example I have had headaches , chest pain , difficulty breathing , could not think very methodically , excessive depression and aggression . Due to these symptons appearing since elementally school , I could not go abroad . At that time my parents and I did not know the cause of my ill - health untill January 2011 . One day my mother took me to a psychiaty , but to be honest I did not want to go there though . Since I came here , I have been trying to understand what people are saing . Novemver is coming Novemver is coming already . I experince many things this year . For examle , I held meetings , practices , performed at many places , and planned events . The rainny season is coming . The key to breaking with the victious circle is to change the fixed patteeern of thinking once and for all . I ordred seeds of a flower , solube YTT . A white flower boolms on the first day , a week light blue boolms on the next day , Nakahara then reallised that the lesson fee was much more expensive than he had first seen it on an advertisement . The staff cheekly tried to give the half a year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recentry I challenged to be vegitallian because of diet and look shocking video which makes me think about various problem ( I will skip the detail ) . Fortunately we have vegetarian traditional recipes in Japan , and I am learning traditional Japnese food from a recipe book . It will be sunny the day after tommoro . Learn Enghish Today , I had an interview at a Company but was not sucessfull because I am bad at English . In this book , there are handreds of phrases . Actually , I wanted to watch the 3D disny movie , but the tickes were sold out . Three advnetures go to the anciant world , and they meet a monkey - man . I had expected there to be a lot of British people , but in reality , there were only a few groups of British and the others were moslty from Eastern Asia , especially Japanese . My conclusion is that they have it in thier home . Thanhs a lot = ) ) ) I 'll introduse Japan to you , and what you do n't really know about it . Hi , from today , I am going to introduse to you Japan . Becaouse of all the mountains , the area people can live in is very small . He often says `` My studens always talk about the weather . `` I think that Japanene people like to talk about weather topics . It could be a good thing for a movie to be concencrated but I do n't think it happens to Angels & Demons . during the free days , I went at the museum , Zoo and went shopping with my hasband . I put an extention on my hair . But the movie disapponit me And tomorrow is not only the beginningin of great heat , but also could observe solar eclipse . Recentry , I 've made a habit of staying up late . And I rade this bike . I am a Japanese person learning Englinsh . Have no fear of perfaction , you 'll never reach it . - - - Dali Salvador Today , I thought about my dream and then I talked about it with my freind , Ran . Because there was a bunch of great stuff over threre that I have to tell you about , It 's gon na be a long diary . A couple of hours later , my mothet had an idea to turn off the indoor lights and turn on the outdoor lights , after that the bird flew out of the window . Our carriculum has to be finished before summer vacation , so students take classes on Sunday . I could see books from China , Korea , Itary , Spain , Taiwan and so on . They are an Engrish book and a quilting book . I had attended a quilt class for about 5 years and an oil painting class for about 10 yeras in Japan . Last Sundy , there was blind person next to me on the subway platform . The climate here always changable : it was typhoon ( season ? ) only a few days ago and now is already a sunny day of over 35 degrees ! I have read a book called `` Littles from Vietnam `` My Sunday is made of sleeping , eating , having coffee and woking . He thought he might be able to crimb up the thread to Paradice . So , he grabbed it and started crimbimg . Up and up and up , it was a long way to go up to Paradice . He saw the others also crimbing after him . So it was very interesting and excitng ! I work hard , and early every morning I prectice my spoken English for an hour . One Italian guy said that he does n't like MacDonalds at all . He also said that Italian MacDonalds is different than American MacDonalds . He accepts Italian MacDonalds but he has never tried American MacDonalds because it 's greasy food . Then , one Korean guy said that Korean MacDonalds has a kimchi hamburger . Almni reunion In the end , I bought a red bag and some pretty colthes . I understand it is still difficult for women , especially for old women , to express their honest feelng in Korea , since there is such a strong influence of Confucianism . I do n't have a car lisence yet , so I hoped I would get it . But getting car lisence is quite hard for me Because I am worring that I would slam into and crash with other cars . fortunaly , that has n't happened yet , and I hope it never will . I went a starnucks today again ! or maybe it was a sodar ? We Japanese rarely buy a bottle of water or sodar in Starbucks . But as I was quite tired today , I did n't have the enagy to do it . Instead , I am trying this . Then there are pictures of Anpanman characters at July and Ougast and December . We do n't understand how imortant the day is . She is supposed to stay in Arlinton in Massachusetts . When I was prepared to pay up at the accounter , I found the price very expensive , which surprised me . I wish thatall the friend from the net who view my diary and findmistakes can give me corrections and adviseon the usage of languige in the article , even if it 's a typo . He stayed at a youth hostel in London for one week and became friends with many tourists from all over the world such as , Holand , Australia , China , and Italy , by talking with them in English . When I bought it , I was happy cuase I no longer have to borrow my friend 's bicycle . It sounds like those who have tattoos are bad and unsiuitable people . `` Tattoo `` sounds more fashinable and smaller in size . ( basicaliy Whoever has a tattoo is rejected at public places like swimming pools , public baths and public Saunas here ) `` Dady Look at the big carpe on his back ! I will watch the movie `` The Social Netwark `` this weekend . Monglia Asean country . I am a senior in high sacool and this is my last time so everyone play hard ! ! ! : ) Whether it is running or jumping , evevryone will do their best ! ! ! I am really pround of them and very happy to meet them in school . `` Oh , my llittle baby . . . Please teanch me how to concentrate on studying . > < It 's only 12 : 26 and I already wana go home ! The prom pictures should already be updated on the school site but they 're not there yetttt grrrr I wana try the real full - cource French meal , or whatever it is that you call : S I checked an otological website that said `` If you continue to have a cough , you should suspect allergies . `` I got the idea that the cause of my cough would be allergies , so I 'm going to an otological this afternoon . Recently , I could n't write a dialy journal in English . Tanzawa National park kanagawa prefectre . I rided a go - cart . So , I made my curriculum vitae , and I 'm searching in Europ or Asia . So , I clened my room . T `` is challange time . Every morning swarrows come to my balcony . It is rainy today , but we have a plesant day . We have an indoor barbecue ( I do n't konw whether it is called a barbecue or not . ) . But I can feel good when I 'm livign ( living ) in my room from tomorrow . My class is lisning 2 , grammer 3 , conversation 3 , reading & writing3 [ the max level is 4 for everything ] I think that this rythm sounds good . XD So , I have to overcome this psychological obsticle . . . . . . . Teaching them Engish would be a tough challenge for me because I would have to take full responsibility for their results on their high school entrance exams . Even though the pay is the very low , I still accpeted it without a second thought . Just going to the libraly kept me happy when I was a child . I 'm going to be busy from tommorow onwards . The day for the Eiken English exam is comming . I had almost forgotten that I needed to study for the exam till I received the card , but now I 'm a litte uneasy . But I know my English skill is not enogh , though I 'll have to work hard for the 1 week that I still have before the test . becos my bag is in the room thank you for riting . : ( Olive found a very cute stuffed animal in the shop and her mother boutht it for her . Althoght It has been more than 1 month since this new year started , I have n't even started yet ! I 'm actually not good at grammer and reading more than speaking and listening . Because I could n't understand most of grammers , it made me sick to study English . But the most inportant thing is to keep studying and enjoying English not for exam . But , I will aplly for a job with another company . I am studying document 's grammatic , speech , writing and others . . . First , I plactice speaking in english with videos . Then , I wrote an nessey . I thought that iPad is more confortable for her . This have something to do when a woman becomes pregunant . When ladies are 5 months pregunant , we have to go to the shrine for our babies blessings . I have been studying English for a year in oredr to overtake a friend of mine , but she seems to have mastered a higher level of English than me . He killed Peter 's brother Nathen , and he was driven to become Nathen . Finally , he felt so guity he prisoned himself into a world within his own mind . Finally , they freeked out and argued with each other , and Peter shouted at Sylar , blaming him for there being no way to get Nathen back . The wall was destoried by themselves . The work of this committee is to organnize an athletic day , I try to give my effort to this commitee activity ! My wife recomended me to this site . It 's gon to be hard to control / maintain a schedule of studying and hanging out with friends . After carful reviewing all the terms and conditions , Jessica finally decided to sign the contract . During construction , the main lobby will not be accessible to emplyees except to executives . This is my first article at lang - 8 , so I guess writing an introduction about me would ( sounds more natural ) be the best strating . Now I must buy it on the interenet . I am a Japanese lady enthusiastically studying English writig , reading , speaking , and listening . The movie was very enjoyrable . I recomend you to have fun in your special style when you see colorful movies like Disney 's . I really like to take photo 's because I can documeting my life easlier . I feel comtrtable and peaceful when I take them . Everybody agrees that the products of Japan are of higer quality . This word `` Kaizen `` which means `` improovement `` has gotten very famous , and many factories / manufactueres are trying to do ` Kaizen ` to imutate Japanese quality all over the world . Because I believe this natural Kaizen in Japanese production is strogly related with Japanese calture of `` Ki wo tukau `` . The calture of `` Ki wo tukau `` is everywhere in the world in social communication , but other countries do not implement this thing actively in their work . This makes them follow `` Kaizen `` naturaly . `` Sony timer `` is the timer which makes products malfunciton when the warranty is expired . Todey 's menu is Curry . I drank some alchoric and ate yakitori at a yakitori restaurant in Shimokitazawa last night . It had a strong taste and was a bit hard to bite , like jarkie . Within the next two months , I want to learn to drive a car . I think that would be a very intersting thing to do ! Fistly , please allow me to introduce myself . My hobbies are watching sports , especially Formula One , playing tennis , and wathing movies . Decemver 31st . Honestly , I do n't like to study foreign lanuages . Especially English . Of course , I knew we have no choice but to learn foreign lanuages , because we are in the age of globalization I appriciate those members who correct my diaries . I had to eat the dish they ordered cuz the food they like to eatting r the same : ) It seems not to be alseelp . In regards to sleep , I lookep up an interesting expression in a dictionary . By sprinling sand in children 's eyes ! ! ! In the world there 's nothing more valueable than people . There are very hevy . : ( Although suffering from a snow disaster at the begining of the year and a terriable earthquake rocked the Sichuan province , the on - going Olympic Games inspired our passion to our people and country . We all close our eyes before starting the game , but only thieves can raise their heads up , open their eyes and look at each other , which allows them to know who the theives are . Afterwards , we start to guess who the thieves are by making inferential statements like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes , afterwhich we poins at the persons who we think are thieves . I palyed basketball with my friend in the park today . My mother tongue languages are Cantonese and Mandrin . I like to read books , newspapers and stories from the internet , where there are a lot of pages of information , entertaintmet and literature , but ( I think ) books are beter than any other wayas of reading . The book that I 'm reading is named : `` Lestat the vampire `` , and the plot is about a new vampire who wants to know the secret of his inmortality and he enjoys the pleasures of the life . Lestat is arrogant , and because of the secret , he toured many places ; I like it a lot because of the way it is narrated , the history is another atracttive element that I enjoyed too and also because Lestat is handsome ( in the movie : D ) A lot of intelesting TV shows are on the air in December . My video , which is set with HD , is aveilable to record TV programs for 22 hours . I was so busy that I could n't enjoy or finish watching my recorded prograns . ( T _ T ) . Noth Korea signs forward as a goalkeeper in the world cup ! He talked about the environmental with a lould voice . Sometmes a citizen would ask `` What are you really going to do ? `` Toronto ranks second best palce for living in the world . Toronto is ranked second best palce for living in the world . Could me give me some exanple ? However , it 's somewhat difficult for me to learn because I must controll both hands and legs individually . I 'm doing image rehearsal and praticing easy beats . You can guess how embarassed I was . Or a golded driver ? Anyway , I rememer a book I read when I was in junior high school . It turned out that Jack the ripper was actually Sherlock Holmes himself , who was so strongly addicted that he had delution . Actually , I had an inverviewed with TIM HORTONS . I applied for a position and inverviewed this Wendesday . It 's ( very ) amasing . So I wonder if you could do me a favour of revise my poor leavel composition . Today , I made sentences of dialogs for learning inginterrogative sentence . So I wanetd to get some student handbooks and exercise books . Where are the good spots in Shingapore ? Before feeling the effects , you may temble a bit already . That movie is broughted by konica minolta , who is famous for camera , plinter etc . so I have n't had enough sleep recentry . When I first saw thousands of Jizo at the Hase temple in Kamakura about 50 years ago ( wow such a long time ago ) , I felt unpleasent . good moring everybady ! last night my freind came to my house . this moring I made her breakfast . beaouse she thought that I was able to cook ( good ) the time I speat with her was enjoyable . I want to ( `` wanna `` is slang ) say that I am extremly bored . It is a family comdy , and it is really funny ! ! It was a very happines party , and her speech for her parents made a deep impression on me . It is my first time to write on the Langa - 8 website . Fortunately Japnese people are allowed to drink outside , so of course we can also enjoy drinking under the Sakura trees `` Some things that a glacier might do when it retreat is instead of depositing till ( scraped up soil ) in the area , they might leave a big ice block . The ice block breaks off the glacier and as it melts it leaves a dpression which can become a lake . `` When I listend to the song for the first time , about ten years ago , I was so impressed . The song was fetured during the next few months on a heavy rotation . I experimented becauce I had no other plans today . I wasted 2 months on dissertaion period . . . All I know is her english nam ( not her real name ) and her major . Since the midterm is worth 30 % I do n't think I can pass the class with a poor socre on this midterm . My moher was in a hopital for a week . I woner if my students like that . From now on , I got to have snikers sor a while . These days , I submit some resumes and application forms to companies and graudate schools . I like me as I am nowadayas . I want to try to write some my thoghts but sadly , I recently have read nothing . Recently , I have not felt like studying any foriegn language . I found some intersting words about learning foriegn languages in a book I read yesterday . `` Learing a language is like laving water by a bamboo baske . `` ( it has many small holes ) , but if you keep learing patiently , you will got good at it . `` I hope I will be able to easily understand English DVDs without subtitles in inthe future . . . Do you have any birthday that you ca n't forgetable ? ? Well , I talked with some of my employees about the job decription . He want to know more aobut Thai food so I need to perpare more ? ? ? about the food and practice cooking with my mum . . It is hard ( ? ) for me to understand English in business conversiation when speaking with him . . Well , I will do eveything as best I can . Including me , most of ( the ) Japanese is parhaps good at Listening and The number of patients of infuluenza around the world is increasing everyday . Thai people make a Katong from a banana leaf and put forwer insite it . Then we put it in the river because we believe if we send our apologies down the river we will have good luck this year or somting like that . But today I will not tell you more about the Katong fasival . His head hung from the brige and his body floated in the river . He is not Thai but from some other country , mybe Germany . The polic are investigating why he would kill himself or why someone would have killed him . I am thinking about going to Vancuver for one or two days . And my oral Englsih can deal whith some easy topics . What 's more , I am also starting to read the Englsih novels such as `` The Red And The Black `` and so on . From such novels , I can learn some original sentences and the useful struture of them . Please correct any incorrect sentensese that you find . Since , then I 've been a housewife for alomost 4 years . I resistered lang8 today . My porpose at lang8 is to learn English and make new friends , while learning about foreign cultures . He said to the firefighter 's wife `` He can not move his musscle . . . I slept after work beause I was tierd . Pronauciation is impossible . . . I 'm not sure how to improve my English pronaunciation . Even though I 'm using this website to improve my English pronaunciation , in the following passage I 've typed up , I always ca n't pronauce the same sounds properly . bunished = `` sh `` That 's the reson why I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . As you know , everything is expencive in Japan but I found cheap clothes in a shop . Yes , it was a really lacky day ! ! Comfort foods are so warm and and familiar to me , espically Mom 's cooking , it 's a real blast from the past . In the winter time , the wheather here is always badbecause its wet , cold , and windly . Opening my mailbox this morning , I found a refusion letter from Warwick University . It was the top choice among the five universities that I applied for , so it came at no surprise . I did realize this from the very beginning , and actually , I did n't long for admittion at all , did I ? However , when the reselt finally came , why was I so disappointed ? A cell - phobne has many benefits . First and formost , average Japanese job applicants have studied English for around one year , but my visa was not working holiday , so I could go to a language school for only 3 months ; it was not enough . Some Japanese people also took part in the meetin , but most of them have been living in Singapore for a long time , and they can speak English very well . Yesterday , I went to Akita - Ken by Super Express , because my jpb is near Iwate and Akita . These have some beautiful illusts . These books are closely ralated because good light nobvel are animated frequently . My eldary sister and I were talking in the hall . So , there are a lot of enents . if you are inetrested in it or Japan , please comment . Cooooooooooooooonguladuation ! ! ! ! ! ! ! : ) My Japanese friends , and European feiends live in long distance places . Our 5 members met in fron of DangGoGae station . It is too defecult to speak English . I think it 's a problem to read English books , articals , news and so on . `` The baby is cute ( kawaii ) . `` is an example that is easy to understand , but the word is also used for thhe elderly as positive adjective . at 900 am untill 530pm . . . I am going to aplly for this position . But I 've only been studing English for 8 months , so my English is veery terrible ! I 've been practicing the piano since I was 3 years old . This is Sarah 's douyhter . Tokyo has a many restrant where you can eat a delicious lunch . I 'll tell you a restaurant I recommendate in Shibuya . It has very delicious garetto and crepes . Many people in my company says `` it 's greate ! `` I am skeptic about this , because he appears to be busy . The players explore the dungeon and return to the catsle repeatedly . I work at the Welfare deparatment . The kichen is always dirty because of the Taiwanese woman I live with . She does n't usually clean the kichen after she 's been cooking in the kichen . We always wash dishes and clean the kichen . But she does n't clean the kichen after using plates or the frying pan etc . So the other flatmates began to grow impatiant . First , the only Japanese actor , `` Sanada `` , who played the capatin of the spaceship , died first and unnaturally . Second , I saw a monster sneak into the spaceship and kill the crews in the latter half , but I do n't get why the preddecessor captain could survive to turn into a monster and kill the new crew . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thougt . then I had a lunch that consisted of INARI ZUSHI and mashroom salad . I was not tired becasue I took a nap . And my neck felt very good doday . It 's SWALLOWTAIL BUTTURFLY . However my friend who are going togather said that a natural disasterstrikeseverywhere and whenever we ca n't epect . Since I have the experience trapped in the elevater by blackout of thunder I am really nervouse about these kind of things . I want to break my language barier , which has stopped me from making new friends from different countries . Now I 'm learning English - wathing English films and tv programmes . ( Sorry for my grammatical mistakes : ( - I speake and translate better than I write ) In china , the big birthday is a very inportant day in every chinese person 's life I have never seen heavy snows in my life , therefore I & nbsp ; am a little execited . I always have a litte dream : I wanted to dress up as a monkey with a banana in my hand since October last year . I 'm not a nurce or a doctor , I 'm working at the reception desk every day . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowlede about your own country 's tradition because some people are interested in Japanese clture . It 's a Japanese traditional food eaten on New Year 's eve and it 's said that this custome was made in the middle of the Edo era . It relates to the reason we eat it on new year 's eve . Next I want to talk about the reason we eat the year - crossing buwheat noodle . The second is the wish to cut off your troublesomes , and not carry them over to the new year . According to a website , which conducted an internet survey to 1000 people , about 80 percent of people ( in Japan ? ) eat the year - crodding buckwheat noodle . She did n't notice a small wall behind her , so she bumped the car 's rrear - right side into the wall . I will be nuervous ! ! Anyway I 'll try to make my uccount now ! ! Thanx for reading my concerns haha . . What is Chrismas ? I do n't like Chrismas , and most Japanese are not Christian . Why do they celebrate Chrismas Day ? I think most Japanese young people are celebrating Chrismas in order to have sex with their partners . They should re - name Chrismas day , `` Japanese sex day . `` Everybody in the world already knows that all Japanese people are peverted , they will not be surprised at all . Stupid Japanese singers release Chrismas songs in winter lol . What do foreingers in Japan think about this stupid habit ? Japan is just a follower and dog of wenstern countires , we do n't celebrate Chinese New Year at all . Japanese should stop this repulsive event unless they properly understand the meaning of Chrismas . You know what , tonight , every couple is having sex in every sex hotel like monkies lol . Are They diffelent ? That makes me flustrating . . . I would like to tell my thoughts fluently and not so stressfully in English someday . I heard it would be warm today , so I left home in a long cort . It 's extremly surprising ! Gladuating university , I worked as a chemist in Japan for a couple of years , but quit the job to study English . After that , I became obsessed with English becouse I met a lot of people who come from various countries and learnt different cultures , history , food , ways of thinking . Is that a natural responce ? Since the earthquake occured and nuclear power plant halted , The Tokyo Electric Power Company , Inc has conducted scheduled pwoer stoppage . Neon ligts are turned off in the streets . My roommate told me that the pizzaria is the nearest washroom plase . I wnet to tne washroom But I hope this will make the Japanese national game developped . nIn my opinion , We have to face a lot of pressure from any part of our lives . Such as the challenge from our education as well as the high expectations from our parents . They are all on sky levels leaving me a sence of anxiety . The more anxious I get from the pressure , the more hard conditions we will absourbed in . nThere is no way for me to escape . ( If I had known the water in a pool was acutally shouder - high , I would have tried three years ago . ) Anyway , I decied to try swimming and now is my favorite exercise . That woman that jostled with him looked at my face and suddenly said ooh yey ! Opppsss ! ! ! because , this is my first visit this website , and it is a littl bit differnt than a korean website . . Her 2 - year - old son goes to a nersery 4 days a week . I wo n't climb up the mountain but I will go hiking in the glassland . I 'm looking forward to walking on the glassland . I created my accout on lang - 8 Why Financial Diaparity Can Affect Freindship ? Nowadays there is an argument about financial diaparity and whether it will or will not affecta friendship . Such as life atyle , life condition and personality . `` If you do n't think of something useful , nor do somethig useful , you will not be able to develope yourself . `` Everyday , I test pruduct or study something . I think it 's useful , sometimes . I chat with my friends as well . The reason why I am interested in trade is because I believe that trade helps developping countries and poor people . I could not tell anyone and I was afrid my parents would worry about me or my friends would make fun of me . We usually go to shpping for sightseeing on weekend . Here in Wakayama , we ca n't live without a car , because the fee of public transptation is expensive . Is the sentence abovr grammatically correct ? There are special New Year 's meals , decorations ( both interir and exterior ) , visits to a shrine , visits to family members and relative 's houses , special games , and so on . I hope to improve my English more so that my English will no longer be an obticle to talking with others . Today is crismats , Shoppers use thier own bags instead of getting plastic ones . They get interested in EV cars , solor panels , and CO2 free stuff . However , when it comes to buying foods such as fruits , vegitable , and whatever , you bet that they tend to choose fresh ones . If we consider the eco - friendly options , we should check the date on the pakage and choose the older stuff . Bcause the older ones keep aging until they are abondaned if people choose only fresh ones . Hallo , everyone I 'm a little drunk , so I 'm worried if I can do my work normally tommorrow . I went to Woodstook tonight . It was nice to be there tonight in a familier atmosphere . So , I do the same way and it tastes delious ! ! But my frist instinct is that I shoud still keep on going in my art career . But a few days ago , his compliants of 4 years ago were reported with the title , ' Jay for Defaming Korea . ' He just grumbled about his tough situation in harsh language that is usually used by many teenagers , but many Koreans are that he decieve us . The book store near my house went on bargen sale up to 50 % . He told us the proununciation is very important in the learning process , but he also said we need n't worry about poor grammmer because pretty much nobody will care about it when you are chatting in everyday fashion , except for when under a formal situation . The first time this happened I felt so sad I could n't say any words ahout that , and I was frightened by this action . Maybe I get angery but I do n't want be weak . Hope my English have big progross ~ ~ There was a peson who knew me from before ( when ? ) and she called me while I was studying and anked me to be an assistant professor for her English center . I will take this oppotulities ! Maybe if sometimes , at least once a year , the monsters from our nightdreams would give us gifts . Even if they were modest but pleasant . Maybe it 's becouse I worked 8 nights ) And fiower are blossoming . If I can not keep watching them regurally , it can not help improve my English , so I watch them the way I described . I notice that my vocabraly expands by reading Englsih subtitles . So I am really looking forword to these events ^ ^ I 'm going to meet Mickey mouse and Miney mouse . Why can some people commit suicide in order to follow a famous actor or actress whose charecter they can not truely and wholly understand since they can only meet them through the TV ? Even though I like sining , everyone around me hates to hear it . If you find samething wrong in my diary , please correct it . I always think the river is like the Ganges River in Indea . I am so happy but then , he is a japanes . `` A cracked pot and a holeless lid `` in Japanese means `` Even if we have some faults , we can conpensate for each other . `` I like this kind of idea . Priority seats are for elderly peaples , expectant mothers and disabled people ( people with impediments ) , but most people who use it are not any of these types of people . Most of the time , it is used by young peaples and healthy peples who do n't need to sit there . And if a weak person gets on the train , sitting peaples do n't offer thier seat , therefore they ignore weak and elderly peaples . They do n't need it , but elderly peaples want to sit there ! For this reason , I went to the photo studio to have my photo taken , which is neede for the / my student ID . There must be a / some reason why Internet shopping has developped as it has . In conclusion , after all , what is important for us to utilize Internet shopping is an adjustment when a certanin problem has occurred . * Increase the hability of concentration . Yesterday , I bought a restaurant buide book `` Michelin Tokyo `` . I do n't have beatiful clothes , a wonderful car or a gorgeous girl friend . . I am a graduate student learning English education in primaly school . Especially I am interested in coopelative learning in the English Education field . My future dream is to become a teacher in primaly school and to be a researcher someday . When I rode my autobike on narrow road , suddenly a girl crossed the road in front of me . I braked hard immidiately . I am looking forword to meeting someone : ) I am a Chinese student and I live in the Anhui provience . I study at Xuancheng Vocanical ( Vocational ? ) and Technical College . I love English very much . I watched a movie at the cenema with my friends . My dauthter will go to Universal Studios Japan with her school on the second week in May . She dreamed about the amusement park almos every day . When we got out the attractions , I found that my unbrella was stolen . My next English speach is about that . Center entrance examination for univercity It raists as one of the greatest movies I have ever seen . Thril , exciting and shocking ! ! ! So I really appresiate my host mother . I know that there are meny people in the world , and that they have many diffrent personalities . Sometimes it amazes me when we can understand each ather . I 'm really bussy now . However the foreign countries may be not confortable for your research , you will be able to see Japan from different point of view . `` I agree with his opinion . I think the thing missing from Japan is a sense of crisis . Although the number of peple who eat whales has been decreasing in Japan , some people who lives in the specific areas still hunt whales to make living . Admittedly we are surrounded by a lot of scintillating gudgets such as video games , personal computers and whatnot . Though visitors can not copy anything in IE , I can copy everything in firefox by an extention . There are some people suggesting to encourage and praise students when they meet difficulty while some other people choose to blam them and sneer at them . I wish everyone would be friendly and love others , just as you expect to recieve courages from others . It was hot and spaicy ! Of coure , sightseeing and food or even traditional events snd so on are probably within my knowledge . . But , I 'm thinking that I 'll need to get enough rest so that I can prepar for the next challenge . . Right now , I do n't know what the future holds or what is in store but at the least I want to fulfill my tasks untill the due date . Hi my nicname is Ryuki . Thnak you . I wanted to run the air - conditionar because I wanted to be cooled off . but it will become more difficult to have time to learn than when we were studens . I think that the student who recognizes the importance of thire privilege can make use of thire college life for sure . When I rode an elevater , I noticed that the elevater car had no door close button . For instance , I knew `` legilation `` , `` archeologist `` , but I did n't know It was simple enought to do . I ca n't help tryig other combinations The opening sound is really familir I am earger to go to a theather and watch it . ( How could a hundsome boy grow up to an ugly man ? ) However I noticed him in the trailar ( maybe , full CG ? ) . It is difficult , there are a lot of new words , I can hardly understant It Also I was very impressived by other student 's topics such as Discrimination . others confidendtly ! ! The Colossal Squid 's eye is as large as Soccor ball . Recentry I gained a little weight . Plesase give me advice ! I 've never been to the mainland of the States but I 've been to Hawaii over twent years ago . That 's why you can find many signboads , menu of restaurants and so on which are written in Japanese language and many locals speak Japanese . Before today , I evrer tried to write a diary in English on my Blogger . I did n't have a way to find my mistakes and use correct sentenes with this method . I think it is not good for ? to make international rerations . To make a good rerationship is so hard . After 1 cup of coffe I was alive . At this point I have almost forgoet it all . The breads whici is piping hot , fresh from the oven is delicious . I got pickpocked A man bumped into me and walked away without saying anythiug . The pickpocket fell over and he was caught by sevral other people at the cafe . It was mostly cloudy in Palau , because it was still the rainny season , but UV was really strong ! Because we made our way on the bas , we were late . The trouble is that I am not sure about grammers , especially whether the verb tense and the form of words are correct . Marugame Seimen is a Japanese udon restsurant . Work was very hard because there were twice as many customers as usual , . I think it was because of sumer vacation . We 're going to study `` Reganomics `` next time . So I have a lot of troble now . I found that the pronounciations is different from English . And I like to talk with foreignors in English . This mornig , I woke up becouse of thunder sounds . A street was flooded and I was caought in a traffic jam . Anyway thease weather was crazy for a few days . The weather forscsater says tomorrow and the day after tomorrow will be a thunderstorm . It reminde me of when I made it in Australia . They are Japanese and Gurman . When I hve French toast , I think of them . Hi evry one ! I have moved to a new apartment and I 've got a parsonal room . becouse when I wanna do anything I do n't need to worry about my family . I want to develop my inglish skills ! Thank you evry one . Everyone of korean has important four obligations . Its main star is Woopie Goldbarg . Every Sunday , I watch it on DVD and I repeat Woopie 's phrases to practice English , Insidentally , the opposing team was much better than ours . I could n't believe my eas . It sucked . My appartment has one bedrood , a spacious kitchen , a bathroom and a nice balcony . I got a list of parsonal dates , and had a shock because most of them are from famous universities . So check my sentense , please . It was very difficult to seached for a job because the economy in Japan is very bad right now . And you are very good at drowing pictures . I remember crearly my memory in Melbourne . Today I read a lot of journals and realized it 's acutally all about practicing English . I could n't fall asleep rencently , We will have not enoguh time to take care of our baby either . Athough I want to play , I 'm fed up with this unenjoyable lifestyle . We bought a Chrstmas tree and accessories for it . Honestly , it truely works . I am currently studing English at SDA . I drove to an umbrella shop , got my kids ' umbrellas that had been repaired , and reqested to have another umbrella repaired . Please help me with my Englishm ! I would really appreciate it . Maybe I can even help you with yoiur Chinese . As we grow up , we come to beware of consitency and not telling lies . If we do n't care about those things , it would have a bad impact on not only the people we talk to but also ourselves . What goes aroung comes around . I had an opportunity to go to Austrelia to study English for a few weeks when I was high school student . I : There 's a vancancy in my heart . Why you do n't just fill the fucking vancancy ? The reason why I ca n't fill the vancancy is because I am a coward . Why do n't we just keep silence and time might fill the vancancy when it passes it . Time might fill it wirh what ? Tommorw , I want to come home earlier than today . Therefore we are looking for delicious restaurants , sweets shops and supermaket etc , every weekend ! I woke up today very early and I did n't sleep very well at all ( ( ( I woke up after every hour at night . . . ( ( ( but it did n't prevent me from doing my morning jog ; ) ) ) so after a shower I feel freshed and I do n't feel any tiredness ) ) ) Just like the life of Europ in the middle age . good morening . For the walm condition , there were lots of pollen . I like spring , but I hate pollen more than I like ( hate ? ) walm day . This title has tha same name as a Beatles song . Though I 'm in my firrst year of college , the graduation is not as far away as we sometimes imagine . We drank some wine and some snake , I ordered a `` Streawberry Margarritas `` . Before , I did n't kown what a Strawberry Margarita was , but now , I understand . A `` Streawberry Margarritas `` is a sweet - tasting cocktail . I like it . After that , I met some new friends , they are from Japan and Korea , they are firendly and kind , I like them . In the University , my favorite place to go is the Library . There are a lot of good books and music ( ? ? ) . The atmosphere is very nice , very quiet . You can read any book you want to . The library is very big and when you want to have a rest you can look out of the window . Everywhere around you can see the trees and hear the birds singing , and feel the wind blow on your face . Fantastic ! When I was a junior high school student , I was told to write a dialy diary by my Japanese teacher . Now , however , I realize that it 's just their sence of humor and that they do n't mean anything bad by it . So , I say `` Sorry , I have olny one and I ca n't find a replacement here . I brought the English poket bible when I come to Tz . It looks like a poket diary and so pretty . She was born in Poland which was controlled by Rossia at that time . knowledege of our industry . Hi , I 'm a student in a Master 's Program for Product Design and have complated a product called Finger Dance . Finger Dance is a type of digital communication equipment for cold evironment that is used for outdoor survival and rescure in ice disasters or snowstorms . I went to the spa ( open bsth ) Sometimes I make nots when I study so as to remember importent information . No matter where you go , no matter who your ancestors were , what school or college you have ateended , your best opportunity is in yourself . This isss it ! ! So I closed yahoo messanger . I 'm notgoodat english but it 's fun for me to larning For example , in Japan it 's difficult to ajust to strangers . Japanase people have to go to foreingn countries to solve such a domestic problem , and have to improve their English education to become intersted in communication . Blue Manday Today is Manday . But I always feel tired and groomy on Manday morning . And nuclear power plant probrems have n't been solved yet . Next , I pured flour into the chocolate mix and stirred . The crafter built dragon boats to scare the fish and and turn them away . For me , I 'm dreaming of traveling to foreign countries , like Australia , Egypte , and especially European countries . I think all of you are the same as me , evryone has their own dream land where he ( she ) wants to go or he ( she ) likes aspects of this foreign country , so we choose the language of this country . People worked and students went to school on satuaday . I want to be able to speake English to travel abroad , however I ca n't speake English well . And of couse , Oda Nobunaga . They were turely samurai . It is really similer to other songs . This is the first time that DLP lost thier seats in last 50 years . It also the thired sememster of my college life . Is it a college studet life ? I had alreay heard of AC / DC but it was the first time that I had listened to their music . The eclipse is coming tommorow Anyway , do you like to go shopping in a crawded place ? ? There was a terrible earthquake and thunami in West Japan . For example , airplanes , factry and cars scare me . I 've just finished `` The Shadow of the Wind . `` Actually it 's originally Spanish , but I chose an English transleted version Now I have started `` The Namesake `` by Jhumpa Lahiri , which is reall interesting so far . Anyways , Sofia came over to my house and we kept talking talktgin talking talking lol . Around 5 : 30 , we went to downtown to watch it ! ! At least in Kamloops . It 's a really tiny city , so there is no wonder why you happnen to see ur friends everywhere . lol ) This game was actually really tight , and there were a lot of fightings today , lol . Some of the players were even bleeding lol . Strangely enough , most people looked forward to seeing it . So when it happened , lots of ppl were standing , screaming , & shouting lol In the end , the Blazeers won ! ! I have no idea how she 's been studying japnaese for such a short period ! ! Gor for it and keep it up sis . < 333 We are all missing you , and thinking of you dear ! ! I try to stay fit while not having any cigarets They are relly beautiful and facinating . You can enjyo food and drinks while veiwing Cherry trees . But I will definetlly go tomorrow . I 'm happy to find this website because I 've wanted to improve my English , espacially my skills in expressing my opinions and feelings properly in English . Accordind to the company 's website , they were actually the first airline in the world to start a pickup service by car . makeup , hairset , dressing and asetetic . Then , I will continu when I rettern to Japan . She said , the Netherlands are going to win , whereas I said the Japanese team will definetely win . . . The characters are very fashionable and intersthing . When I was a child , I heard from my grandmather that there were many treasures under the groud at the end of a rainbow ! ! ! This is a Japanese regend ! ! ! What kind of regends about rainbows are there in your country ? ? Tomatoes originaly grew in South America . The spanish brought them to Europe in the early 16th centry . They first grew them becouse they were pretty . I normally spend timei with her . movies , music , speaches , and so on . I 'm a student and I 'm trying to learn 3 languages at school : english , czech , and germany . . Althou I 'm in China , I still like Halloween . Is it fasshion ? I might speake english like a native someday . Frankly , I do n't want to go ther today . neverthless I went . The Interent changes us The picture depicts a ascene where everyone , women and men , young and old , surf online . They confine themselces in a seperate room all day . I 'm looking foward to going there , but it means I wo n't be able to enter the prefecture tornament . In a florist 's I saw many beatiful cyclamens . I heard that they often eat century eggs in Chinese restaurants in the Philipins from my Plilipino teacher a little while ago . Other people probably thonght that I was mad , but I like that ! Today I gave an Amarican guy a call through Skype , It is my frist time to use Skype and talk with a Chinesepod student . I have had lots of students in the last four years , but I teach them face to face , so it 's easy to know what thay want to know and want to say . At the beagining , I was a little bit nervous but we keep the conversation going smoothly ! So I rerieved . Every time when I actually sit dowm to read some books or do some lesson reviews , it just does n't work . Becouse I have purchased a new iMac PC . Guten Abent ! During my presentation I had a stomacache becouse I was being nervous . I was so happy and I became more confidende ! ! In many stories , there must be an unvision red line that ties two strangers ' little fingers . I started wrighting this diary today . I doubted it when I saw the TV seriese because I always have to wait for several minutes when waiting for the green light . What 's more , I saw the long queue in the driving chool I came to notice the line was a * * * * . It 's emberrassing yet I need n't worry to be caught in drunkBen driving . My happy days will end soon because I decided to get an intership . One of them is the mulfunction of a gene that produces a protein that bridges between synapses . That 's why I 've studide English hard but I have n't developed speaking nor writing skills . Recentley , I have had no time for myself . Sometimes it makes me tierd . Without anyg interupting . Alrigh , morons ! Threre are many other places to go . The tray and spoon , which I bought at Togakushi in Shinshu , are made of bamboo . Looking for a suitible Partner Yeah , finially , I opened my mouth . Althouth they refused me as some of them were not English native speakers or they had already had a partner . Although the rice was a little tough , it was so dericious . However , the chief of our speech section said that his perforemance was too passionate / exaggerated . He told me that , while Japanese judges tend to demand speekers to deliver thier speech emotionally ( ? ) , foreign judges want speekers to deliver their speech naturally . The cief said that his speech was too calm . That rlly impressed me , This thoguht crossed my mind . I have to admit though , I do like the tast of meat . I was rlly shocked that people can be that cruel . `` You have two choices , you can waite here untill the electric power is restored , or you can finish now . Three of my friends came to my house to studey English together as usual this morning . The street from Hajajuku station of JR yamanotesen to Meiji street is called `` Takeshitadori `` . It is vry fun for me because there are many kinds of cool shops , for example apparels , restaulants , sweets shops , nail shops and so on . `` Backpacker `` is a name for someone who loves to travler . So , when I found this site , I was pleased with it , registerd right away and tried to write a lot . I do n't know if this method will lead to a high score in TOEIC immediately , but acctually , I really enjoy studying and I sometimes think in English now even in daly life . She sent a message to me yesterday to make an appiontment to study Thai and chinise for when I traval with my frineds in Kaoget . so this is why I am a luky girl because I do n't pay money to study Chinese because I have chinise friend alrealdy ye ye ! ! after that , we talked about how we plan to study chinise and Thai . You know , it will be reall easy to her to do . We depant to study on Tueday and wesnesday and Sunday every week . it is really easyk for her to do but not me because I do n't have any experien before . Thank you for reading . Hello , my wonderful friends I can see someone in the internet caffee righ now who I think I might know . He / she ? is [ BLUE ] yonger [ / BLUE then me . I think we had a small prblem ? a long time ago . expeclly since I dont ' know what I would say . You may think it is funny going to a rock festibal despite us being so old . At times like this , to avoid misinterpretation and unnecessary panic , the Venusinas consulted their Martian / Venusian Phrase Dictionary . She then attempts to help him by asking qustions or talking about what she thinks the problem is . I need you to ask me questions to assist me in discovering what is happening . `` At this point she prceeds to anger him by asking questions when he real wants to be left alone . `` It 's all right `` translated into Venusian means `` Thsi is a problem but you are not to blame . You can abuse me and I can abuse you `` or she hears `` It 's all right this time , bt remember it is your fault . Without this translation , when he says `` It 's no big deal `` she may hear `` You are making a big deal out of nothig . Without this translation , when he says `` It 's no problem `` she may hear `` Thsi is not a problem . Sometimes what he is relly saying is the opposite of what she hears . The best way to show our love , in my opinion , is to strengthen our abilityof to deal with things and give others a hand if they are in some troubl or need some help . They also recommend watching movies with English subtitles to understand eery sentence ! Completery finished Apart from the good news , I had a bad one . Well , my IELTS socre was so bad , that I could n't believe I had it . . . . . . . . . . . Good morning evryone . Even you can improve the language ( that ) you ' re styuding Then , I can somehow unserstand what they say . This was a antiaircraft and was used in positions on a alot of ships . I was satisfacted watching these things ! A salemans ? It is a little difficle for me , but I 'm trying to get better at . It will be good motivative for the author , I think . I asked her a little about her coutry . Jessie , I can feel a fireplace 's warmth and I can smell cofee in my mug when I listen to your music . My thow is so painful . The porpose is follows , Anyway , I will try to write my blog about my situation befor departing and such , and about living in US . Please teach me a cool openning word . It all started fifteen years ago , when I was saving some mone for a rainy day . He booked accomodation and a car . From Acuckland to Rotorua it took about three and a half hours by car . Since I 've started , I have kept myself phisically fit and maintained a healthy lifestyle . l ike to eat Japanese food , though sometimes it is expensive ! I have an acute feeling that I have to stady English . I try to stady English a little bit . We were [ very / especially ] exsited to watch Shizuka Arakawa win the gold medal in Torino ! I was very surprized when I heard the news . During the holidays , I have to finish my school work , essay and other impotant tasks which still are n't done . I 've got ta tell you somthing that 's been on my mind . We were instintly attracted to each other . Why do we make beautiful plans for the future when we are accupied and do not carry them out when we are free ? I think I would be at ease with wirtten Japanese composition , but at a loss in English . My abdment and left elbow hurt . He had nothing to grab onto and could hardly stand , but the midle - aged man on the priotity seat just kept sitting . That milde - aged man looked at the old man and looked at me again . I thought his conscience was starting to bother him . I must work and perfome my experiment tomorrow morning . However , I could not agree less . Based on the view that other training institutions ( such as vocational colleges ) are better suited to teach practical tachniques , forcing universities to teach educaiton courses would violate our freedom to choose our career path . Because universities are not the only places that can provide employment preparation courses , but are the only places providing acedemic educaion . Apparently , no other institution can replace universities ' ability to cultivate people in a particular acedemic field , and that is the main reason why people pay theie tuition fees . Moreover , universities are not the best place for practical skilld trainings . There are thousands of insititutions and employers who can provide the more up - to - date training that the workforce needs to perform their jobs . In sum , in comparison with universities , employers and other institutions are better - equipted and better - quanlified to prepare people for the employment market . The graphic of that was drawn by the famous Japanese desighner who did the animation for `` Evangelion `` . It 's Blues , which Clapton is always in , meets hip - hop rythem style which is really comfortable enough for me to listen to it for about 10 years . Anyway , I am reallly looking forward to the new album . Advertisement says that the sound of that is more blues oriented including the old Robert Jhonson 's songs . Hi wonderfull people ! I know people from everywhere and they speak English because they have seen a lot of moives in their original language Some people define them as vegitable . Air condetioner , fan , Yesterday , I bought a new degital sigle - lens camera . This week I have a 6 - days trip and want to take picutues at night with better focus . Hearing the explanations , I thougt I understood , I 'm not good at mecanical macines , so I concious that it is very difficult to use new camera at this trip . I hope someone corrects these sentenses . The first I heard about it was from an acquaintence in the US , who claimed to suffer from hearing loss . ( Concequently his senior and I did n't work out . Tommorrow is the last day of winter vacation . To begin with , I wrote my intoduce . I like to watch dramas , exspecilly Japanese dramas and Korean dramas . This is the frist time that I wrote a diary in English ! The face I saw was one of my frined who I had n't seen for a couple of years . But it was great time to make new friends and I leaned some good expretions from the teacher . I am studying for my exams at the university 's cluster room , but I am fleezing as the air conditioner is turned up very high . I ate spagetthi which I got take - out near my home yesterday . Fortunately , thanks to suffient sleep and the spagetthi with plenty of garlic , she seemed to be restored . Monster Hanter Of Ofcorse , this event is not for me . Gozila went wild ! ! ! ! ! ! ! ! ! ! ! In Japan , today 's main topcs is baseball player , Matui 's play . His face is strange , his play is ecellent ! of Matui . But in japan , Ichiro ( marinars ) is more popularar than Matui ( ) Yankees Matui is not found [ ? ] , as far as I kow . This time Matui 's super play was suprised in japanese . Gozila is a Japanese treasure . Japan 's gov spends less money on sports than other contries do . Otherwise , Japan will probablely continue to lose its competitiveness . So I will go to bed ealy . She went out to the new sun room that is waiting for the maerial for the floor to finish then she found an old man . He walked into the imcomplite sun room so Siri said `` Who are you ? `` He did n't say anything for a while then Siri found that he had a name tag on his shirt then recognized the name . This house is nice but there are some extensions that need work and have parts done in an irregular or inperfect way that was recognized by my host family . What 's a Smok Test ? When the bell rung , I thought I would be caught in the rain in on the way to back to my dormitry . Sonner , my hair and clothers have been soaked and I feel cold . In there , I feel amued by my appearence , so once again I rush in the rain . [ Replace with lower sentence ] and , I find an armbrella abrve my head . A charming smile appeard and says ' are you ok ? ' . On the way to the dormitory , she talks with me in a gentle way , and walks me into my dormitory , althong she does n't live there . So many couples will choose MDH to celebravt their weddings . I came back from the battle field . I am still aliving . I saw many black passports there , because recently the Japanese government has changed the desgin of Japanese passports from red to black . I hope they will go back to Japan ASAP , and work for the Japanese goverment and be rich Japanese forever . So when time was almost over , I had only finished around 85 % , so I had to randamly answer the rest of questions . I hope I get over 800 marks , but my result wil probably be around 600 marks . It 's probably because this is my real lauguage skill . Rreading speed . My sock doll is not finsh . Btw , he looks so yammy . . . . . These days I 'm sutdying English very intensely . yesterday , I fiished writing my graduate thesis . now , I am in the bangkok airport wating to bording a flight to indiia . Each candidate comes out with his own political manifesto to make the country better . However , depending on who is elected , everything will go on to be different from the way it is now , which will be enough to affect anohter countries all over the world . Anyway , it is absolute that last night was an inportant day , so I thought that essentially everyone else was interested in the election . Well , it is partically ture but in fact , not everyone did take notice of it . Tommorow I have a Chemistry test 0 . o I studied hard but I think I 'll fail . The childred are the happiest . They have long holiday and get more pocket money , new clothes and presents from their parents or reltives . We Chinses have an old tradition . So the traffice is now very difficult . It is the internet that has had the most powerful infulence on me for the prevailance of computers in my life . untill the new news hit me . I think I am not going anywhere so I 'll clearn my room and I 'll make / cook something that I want to eat when I get hungry . I 'm in the Tlavel Tourism Couse . I do n't wark at a part time job , but I do waant to work at JR Toukai in the future . The toughest part of my school woek is overseas geography . New degital camera Today , I 'd like to write about a new degital camera . What do you think of trends in new degital cameras ? So I wonderd : In Japan , we eat ' ozoni ' , which means mixed ingredients in soup , as a traditional custum during the New Year week . ^ ^ ; The New Year is supposed to be a holidy , but it 's not a holiday for me . For that , I should study grammer , words and phrases . all of the world know that the chinese school uniform is too uglily . For the last statistics of these votes , the winner will have the moste votes for the type of school uniform . The reason we went to wrong place was the pronunciation of the place we wanted to go to and the place we went to were the same if you pronounce it in Japanse . We Japanese people are basically coverd by health insurance , Recently , we have been runnning up a big medical bill in Japan , into practice to reduce medical expence . This counceling is not compulsory . In China students learn English from middle school to college , but , there are not many students who can learn English well . First our mindset is wrong . Some of them think that learnning English is a burden . To pass the exam is their only purpous . Second , the big circumstance is so bad . It is very difficult for you to find people to communicate with you in English . Someone may think if one person got a high mark , his or herEnglish is very good . I do not think so . We all konw that language is a tool that we can use to communicate with others . The rapidity of morization is fastening . I went sgopping at 10 : 00 this morning , Fortuntely , South korea has developed accommodations called Jjim - jil - bang . But today , goods for the Japanease New Year were on display . Recently , I offen thought that I would want to study English again . I went to an Englisn - speaking country and was been there for 7 years . When I was overseas , I did n't watch English news channels or movies , I could not understang the popular programs , as I have no idea about their culture background . I want to listen to , speak , writting , and read English better than I do now . I 'm requied to learn formal words rather than informal . In my case , I 'm exporsed to formal situations most often . During class or school , I would hardly have a chace to use slang . But I am not a catepillar , so I give up . Since the bowl has become empty , finally you can eat an ordinally meal . I never say `` Do n't worry . its gon to be allright `` to make them relax because I am a teacher . Can you have a reccomend a drama ? The night safari and taxy companies are friends or couples . I am a brave man , but when we tookt a tram there , I sat beside a fat American couple because they possibly can not run faster than me . Prpbably they ca n't jump over it . If they do so , does the safari pay a copensation to us ? So we had to take a taxy , and it was already over 00 : 00 a . m . . The taxy fare cost DOUBLE . I think that the night safari and all taxy companies are friends or couples . I applied for an open positon at my company . There is a votanical garden there famous for wisterias . However , the wisterias are not in full bloom . I enjoyed beautifull flowers and pleasant smells . Nevertheless , the differenent this time is that I only grilled two wings and a leg . I looked at my phone and received a message from my nailist . When you taste stawberry cake , your mouth and brain will immediately be filled with sweets . My mum lives in Shimoda City , at the head of the Izu peninsura . I had a bad hedache yesterday , so I wanted to leave my office on time today , but I could n't . I was very disappointed and felt sorry because I was supposed to give the data to two colleagues but I had to keep them wating . What sould I do ? Firstly , since my previous laptop wore out within a very short period of time , I am looking to buy a laptop which is more durable and has a garanty for at least two years . First , I 'd like to introdusce myself . It was baced onthe true story of someone 's life , and we changed some part of the story . I noticed there were some probrem with my leg Nobody could explain why it happend . And so I guess some birds made a noise or hicuped and dropped them . I deside not to doubt it . I miss you like as a friend who cooks with me , watches some movie and cries , smokes a cigarrette and talks , talks about life or silly things . The last time I saw you I could n't hyde that I wanted to cry because my confidence has gone . I hope air heatings will become unnecessary . but statisyics is very difficult . I am stuying English at a university class now . Yesterday was the summer solstic . Though it 's after midnight now , 3 : 30am , maximam temperture is 30 degrees celsius . No work , no rush hour , no clock alerm . . . . . . I was satisfacted even though I hoped I could watch one more game with them in the next stage . Today ( yesterday exactlly ) I met friends and made plans to travel this week . But I 'm lookkng forward to do it . By the way I want to know th difference between personal and private . The weather forecast has promised that the wheather will be fine ! It is always beautefull and at this moment , you can find many different champions . Because it was getting late , we promissed to see each other tomorrow . How to avoid the scroching world . as if a strom would arrive on the spot . There is a certain day I can not concentrate doing anyting no matter what , frustrats me , and today is the day I guess . I am dog - tired and all of a sudden , I got a brain wave that may would take away my agony of the hot world , which techenically has a big global warming issue . The fresh idea is going into a huge refrige that is for tons of chickens , saying farewell to the world for a while . Because a cup of beer I had was $ 13 dollors ! ! ! ! ! ! The problem is my lisnening for English ! ! ! I 'm going to meet Crysti , my laungage exchange partner , at Ginza after work . So , could you help my studing English ? `` Kaiten - zushi `` restaurants have rotaing sushi on a conveyor belt , and you can help yourself to anything on the conveyer belt . Maybe that is becuase she is working now , and I am still a poor student , but it does not mean that I do n't want to spend any money on her or other people . I know venders do n't wash vegetables so the food is not very hygenic , and they are so expensive , but the festive mood always make me want to buy ! `` I will go to Austrlia `` , one girl said . Howerve , if I do n't have enough money then I will go to work for one year . By the way , I learned a word pronounceation . Austrlia and New Zealand 's English are close to England accent , is it ? Yesterday I learned that there are UNIQULO shops in the Philippines . I did n't think that UNIQULO shops would be in the Philippines . I saw a situation in which many adult waited for the elevater to come . I checked my self as I listend . I will try to listen to it and pray to slove my situation . In my opinon , there are many changes in american 's way of thinking . They want to chage and achive their hopes by voting for Obama . , I had also hoped for Obama to be president , and I am looking forward to watching the nauguration speech on TV . I have no doubt tomarrow will be a historical event . I learned about this site by a potal site . I 'm too tired of typying . I sould be a discreet person . It 's origine is a mystery novel called `` Kokuhaku `` written by Kanae Minato . It got a book store award in 2009 . first , I paied the full money . when I will get MCAS finaly , I will be so happy . hallo everyone . We have to admitt that we are soft and cry more easily , because we are more emotional than men . This my point of view , and I am ready to defend it . Now it 's your turn to say whether women can be leaders or not , but do n't forget to justify your point of veiw . I 'm studying English because I have a test tomorow . The library is a very wamly and silent place that I can efficiently do my work . First of all , I said that Japan 's Prime Minister , Hatoyama , is a lier because he changed his mind and postponed the deadline of resolving the base relocation issue in Okinawa . It on Monday morning so before warking , I have to get up earlier than usual . My life is not blliriant like yours , It 's relly interesting when you think of this , is n't it ? There are some facilities in the final station . There is a souvenior shop , a restaurant , and even a mini theater . Learnig something is very exhausting and time consuming . It 's been a long time since I 've written a jurnal . It is said that Japanese people are strict abour time . Their color and design are very attractive to me . My dreeam is go to NYC . So , I 've decided that I will write on this site two times a day at least untill I go back to school . Then , I guees that I do n't have much time for writing , but I 'll still be back here . I took my parents to the best restaurant in the neighboring town that afternoon because it was Respect - for - the - Aged Day in Japan yestereay . I 'm not married , and I 'm living alone in a dornitory . He live in northan part of Tokyo . So now , I am a little bit disapointed . And after reading it , we had to explain and summerize it . Anyway , I had to follw her explanations and summerization about it . I had wanted to say ` ` Becuase I am a learner ` ` . I just kept silient . I am feeling nervas . lol And I feel exausted . I do n't know why , but I drank 2 cups of coffe at 4 AM . When a man went up in the tree and hit braches with a stick , persimmons began to drop one after another . I was very shoked . lol I was very worried however there were no people arond the bucause arond there were very rural places . so if you are ok , add me as your friens , please ^ ^ I 'm afraid that my English is all wrong , but I think that I have to keep enough coureag for this lesson . So I decided to learn English . Unfortunately , I naver learned either because I was lazy . This time is different . mabey I can do it . he has already left Korea and the other friend is going to South Afreeca next month . The main traning is running . Actually , I had loved a man who came from an other countury as an exchanging student . I 've been in Oxford in the UK for 9 mounthes , and came back to Japan last mounth . I want to keep improving my English even though I 'm in Japan , so I jonined Lang - 8 . When I listened to the music , I understoond that what I studied was useful . However , when we eat bread , we prefer cafe au lait , milk or cofee . What do we think about our future , where to go and what to say ? It 's ridicurous for us to be mumbling about our world where we 're living . My anut went with me when I got my haircut . Both of them are the same conpany , are n't they ? I was interested in the article because it said the Oxford Enlish Dictionary deicided to introduce FYI in its latest edition . I am now learning English , but I found it is difficult to master the using costom of English . He wanted to say that I 've often told resonable ( good ) excuses . I have managed to communicate with foreiners in English . in dairly life . I have wanted to know the lebel of my English objectively . I asked him the reason why he would take TOEIC test . He wants to know his English lebel to make more progress in his English . Because I ' m a good ecuser basically . Would you correct this script leaving some comment about my writting , pronunciation or the content of speech ? My self introductin : I 'm a Univercity student . They conversed with each other in English , I was desparate to follow along . I decided to strrugle studing English more , for opportunities when foreign costamers visit . Tmrrw I 'll try to tweet more often . What is a satisfactory standand of English in AS ? well , I got so litle time to study tough , with work hours from 9 am to 7 pm . . . The political sence of Obama is bad . as standard - because standard itself is uncertain , genaral , so it ca n't be used itself with an article . ( see comment ) We only can talk at work because we met togerther at work . Yeah . thank you guys for reading this diary agian ~ ^ _ ^ I am 21 yaers old and work at a raduo station . I 'm still a University student and my major is mass communication . As for me , I use all of these websites , and I think eacn of them is great if you exploit their strengths . My mother is an excelent cook . I do n't like to cook but today I 'm going to help her becouse it 's a lot of work for only one person . I always enjoy staying with my mother because she is very symphatic and friendly . We spend lots of time talking about our lives . Our conversations are interesting , and I always learn a lot from them . It was a beutiful view from Tokyo Tower . I love to go up to Tokyou Tower , so I went there . I kept looking at Tokyou Tower from the outside . The view was still beautiful . Then , I headed to Shinjuku and had supper with my friends . Now he is sisk , because of being too excited . I 've enjoied those things . I try to write in English dialy . Futhermore , some characters also died from that . So I probabry ca n't get home for a while . I like the that morment . Recentry , I bought an iPad . Last week I was watching a survey on a BBC TV program that was being broadasted while I was about to eat . Suddenly the results showed something I did n't expect : only one in 10000 people had achieved their lofe - long goals . My pieces of work were admired by my teachers and were the cause of envy of many of my classmates and other collegues . There was even a time when one of the most respected professors I had , Mr Smith , commented that my work , `` ressembled that of the geniuses of the Renaissance period `` . That 's why I joined a group of alternative artists in my city and since then , I have been working on utterly different projects which range from traditional painting with a small brush to extream air body painting or even crazier stuff . Despite thoes weather , I still went there . I have calss this morning so I have to got up early this morning . . . . Saty up late was so tiring for me . I 'm trying to conitinue writing my English diary . I did n't want to be like that and I felt kind of fearness because they looked just like a disposable wipe . As you might know , Playing golf in Japan is pricy . I had a phone interview for graduate shools . I am wating for the result now , but it will probably be bad news . . . I forgot almost everythiong I wrote . In my thesis , I predicted the oil price was jumping due to speculation by investers and that this bubble would pop . What I predicted was what exactly happend after one year . Therefore , Oil became a target for investers at Wall street . In the stock market , it does not usually happen , but oil flactuates violently . So investers who want to take advantage of this market are never ceasing . But Oil is absolutely nessesary for our life . I do n't know when alternative evergy will be practical . So oil has to be steadily suppilied and should not be dealt with like loans and other financial products . I may do excesise or play teniss in the gym every day . These last few days I have seen almost every Olimpic game featuring Taiwanese players . In good weather like this , I whant to meet friends and sit by a fire and enjoy nature . I need a TNA down jacket as well to keep my body warm outside in the freazing world . Even if the main charactrers are autistic , thery are the special people whom I 've never seen before . What is the diference between `` a piece of paper `` and `` a sheet of paper `` ? Altough we talked awkwardly in the beginning , after an hour we started to open up . I felt at ease that my students opend up , Before the meeting , I went to the Ueno Park , where is famouse Cherry Blossom tree . This was my first time being challeng by the TOEIC test . I am not good at memorizing English idioms and expressions , because they have different sences from Japanese , so I can not imagine the background of the words . For example , the expression ' What in the world ' relates to the feeling of suprising , correct ? Practice practice pracice ! I think I will meet so many difficults about communicating with foreign teachers . At 5 o ' clock , I go to laern baking cakes . I wonder why goaches are n't as much popular as watercolors . While driving back to their ( T and L ) residence , we happend to talk about curse words because they were very sinful to Catholics . A new andoroid app is avairable now . onsequense : We decided to go for a trip as a cinsequense of the long discussion . influense : I had great influense from the book he wrote . But since the day I left elementary school and entered high school , there was always a certain matter that kept bugging me : `` Why did I even choose enterpreneurship , as my future course ? `` ( or ) sore ha onaji tokoro ni attearu Today I bigin my diary . But , that was 32 years ago , I did not speak Engrish then . I didn n't really feel anything but this past one day , I felt a little sad . This weekend , I am going to teke a test ' Eiken ' I am studying Engkish very hard ! ! ! I have to submit my contents by next munday . for examful , someone who is working in Samsung has intelligent qulification and Samsung invents high quality products . In the case of sportman , from middle school , they exhaust all their energy . In conclusionly , we have many human resources , and we tend to persue the first place and ignore second and thirth place . In conclsion , living in Korea is so difficult . in our small county , there are many super koreans in baseball , in figure sketting , in soccer and in academia . I was very nurvous because I have never played dancing . I would like to improve my English and learn other languages , Chinease , Spanish etc . for bussiness use . My favarite things are FC . I 'm trying to study English by listening to a song over and over ( Is there any diffirence between `` over and over `` and `` time after time `` ? ) . I am on winter vaction . Unfortunatly , I did n't start studying English at the beginning of winter vacation . Instead , I always watched muvies and dramas . But , it is so adiction , and I have studied English since I was 12 ( so I have studied it for 6 years ! ) , but I ca n't speak Englesh very well . I also started studing German this Spring . Your prompt reply would be highly apreciated . My English is not very good , expecially in writing . After working , I sotpped at the shopping center near the station . I bought a book and looked arond . Then I was worn out becouse of work , I felt better . Sweets mekes me happy . so I 've relly treasured the time spent with him these past few days . Always is a pleasure to read your guidebooks about any place in the world , specialy about towns I know . Unfortanely I have found some mistakes in the information about parking in the city center . Also the Museum of Natural History is closed , due to some vandals who broke some skeletons lasta week . I make the most of the freedom during vacation in the noon by watching Korean video dorama . I look foward to watching it everyday except for the weekends . Yesterday , however I could n't watch it because I worked on my thesis in the liblary . In addition , my home 's video recorder has trouble now , so I could n't use it . When the dorama started , I have felt a sense of `` dejavu `` ! Please go out and buy it at the nearst shop ' I could n't belive what she said and I asked her how could I go out in such a storm . She was an optimistic pesron , but could I go to the shop safely and buy the miso paste ? I am too anxious to make many good friends who come from different countries for konwing different cultrues . It was really embarass . There are still many silly things I did n't mention , because it is very embarass . The topic made thier conversation restart and they ended up staying there another hour . I think I should try not to eat at donalds to stay healthy . I have been insisting on buying a lottery ticket since the beginging of this year . Becouse in Japan they think New year 's is an important thing . Budget compliation Especialy , ' ' Christmas ' ' remains in the impression . When ' ' TOM & JERRY ' ' was relrieved by You - Tube , ' ' Christmas ' ' was found . During today 's lesson , I felt that foreighner have similer characteristics . It 's ture . This show was on my Favorited chanal . I was scoled by the teacher for my cellular or cell phone call during the class of mathmatics . I know it 's amazing , but it 's ture . So , please tell me what to do because I do n't know what to preprasion . And could you please tell me a good pleace for food in Guam . Many of the younger generation much study very hard to suceed . I got airplane tickets for a New York trip next summer so I went to a travel agency yesterday . I paied a deposit of thirty thousand yen . Something new and good is likely to happaen there , Today I was very unluck . And in biology class I did n't finish my homewoke , so my teacher made me go to the lunch room . Sometimes you can see some coulour fish . Her songs are awsome , right ? Perhaps I should be happy for it because it is an eveidance of my last four years of hard work . Maybe I am a sensible boy but I realy treasure the friendship between us very much . The woman ( Aki , Autumn ) waits for her ex boyfriend for 2 years , but falls in love with a new man ( Halu , Spring ) . Making Tempra now I 'm making Tenpura now . I do n't like using lots of oil for cooking , because my kitchen becomes oily , but my mother - in - law taught me how to make Tempra and if I did n't do it by myself , she 'd get angry . That 's why I 'm making tempra today ! ! Why doesn ' CASIO put the temperature sensor on the top of the watch ? Peple hung fish kites from their looftop , and wished for their children 's health and success . I do n't understand the content of song rylics . I know that many people say the same thing , but I really am a biginner . I started studying English in Marth . I hope to take a trip to Switzerland next year becouse I want to visit a museum at Bern . I have applied for schools in NY , LA , SF , San Diego and Seattel . Today , I went to a sports gim with my colleague . Of Offcourse , if you want , I would like to do that kind of thing for you I . e . Reading a japanese book aloud , slowly . A friend of mine recommaned this web site yesterday . If this factory is not managed very effectively and efficiently according to specifif rules , it 's prone to polluting the local fresh air and water , and an ideal community which should be quiet . Secondly , to make sure the shipping of materials and products and the employees ' communte are more convenient , the local roads will have to be rebuilt and broadened , resulting in improved public transportaion . Why did Japanese film `` Depertures `` get to win the Academy for best foriner film ? In sevior cases , young people commit suicide because they ca n't bear the stress . Tragidies happen everyday in the current greatly changing society . We can dig into different aspects of this issue , including cultural factors , Chinese history , as well as national charactoristics . First of all , regarding what Chinese believe in , I would say every Chinese believes in Confutionism . Secondly , in the aspect of history , China has gone through a difficult time throughout its 5000 - year history , and during the past dacades , the great leap forward has created both opportunities and failures such as many dropouts in the last generation . For example , internatinal airports made it easier for foreign people to come to Japan . For instance CNN on YouTube or somethig like that . For me , no I should say for foreiners , it 's quite convenient to listen to these programs . Generally speaking , in Japan people think that topics like politics , riligion , private diseases , etc are tabu . But I do n't think it is good to talk loudly and emotionally saying how riduculous your opinion is or how stupid you believe some team is . Last week I went to see Alice in Wanderland . He is really a genious , I think . It is amaging that I was so much impressed at once just by listening to this piece of music . I am about to graducate . At first I wanted teaching as my career , but with more and more positions appearing , I 'm becoming aware that I was stupied to ignore lots of jobs except taacher . I loved it when I wached it a few years ago in Hungarian . Also , his explamations are easy to understand . My best friend said ' you shoud just ask him , and do n't talk about your dogs . I remenber when I talked about my dogs to the doctor , he almost yawned , and I was a littele bit sad . By the way , my best freind got divorced recently , and now she is also interested in another man . However , the man 's attitude twords her are getting down . Sor far , you have not shown any successful results . `` `` Why do [ es ] everyone talk about the abandonment of a nuclear power plant , though they do n't talk about the abandonig of automotors ? `` `` Automotors kill many people by accident , however a nuclear power plant has n't kill anyone yet . `` I was happy to het him . Unfortenately , there was an accident , he fell into a lake and died . I rememered that I took it We had a one - centimeter snowfall . I made muffine as I watched the snow . Airplain schedules are always disrupted on snowy days . The picture is of my muffine . I hane n't packed for the / my trip yet . First of all , Obama 's speech was effective , strong and scareful to me . This friend likes scketching like me . Finally , I watched `` Valkyrie `` ( acually I wanted to watch `` The day the Earth stood still `` , but it had not come up yet . to meet my favorate friends . I just learned one thing from an artical I read today , that was if you keep doing one thing for 4 weeks , it would become or would change your habit . I wanna make a little bit of progress everyday in order to let studying english be one of my hatits . Frist , I 'll list the key words I 've heard today in a conversation that I do n't use often , or usually use in a wrong way . overhaul ( totally change ) , excutive producer ( movie producer ) , illstration ( make an example to prove ) , significant ( extraordinary ) , nifty ( nice ) , municipality ( Beijing municipality ) , forbidden city , terracotta warriors , potala palace ( tibet ) girls : beautiful , gorgenious , sexy , fabulous , I was so excitedto to see it ! ! Today one of my co - wokers was absent . I think it 's time to read a grammar book again . > _ < Yack ! ! ! I went to a glass atelier and try to glass - working with ten friens last Sunday . He invited me his house and we had lanch together . Pancakes , spaketti , beef and chiken . And I had a discount coupon for Lotteria ( a Korean Hamberger chain ) . After we finished our lunch , we dicided to go to eat some more . I suffer from not understanding what he says because he talks so fast and my lack of vocablary . Now , I am studing about the present perfect and past perfect tenses . Since different people from differen ethnic groups such as Persian , Bakhtiari , Aramaean , Turkish , Arab live in this province , you can find diverse Persian cultures and traditions in defferent parts of Isfahan . When he is good , his color is lighter and when he feels bad , his belly become a brack stripe pattern . I want to learn many things about this kind of dragon to take care of him propery . they are nudool and fried eggs , which are so easy to make . some eggs and nuddle soup mix or broth this way , it tast very fresh and better than the plain taste . just waitting for good news from me . The textbook 's title is `` Tottaly True Book 3 `` . Both days were very voring . I 'm looking forwared to it . I have n't studied for my science quiz tommorow = ( I always procrastinate the things I find difficult . I 'll write a small review when I receve it . But honestley , I do n't have good memories there . These instruments are guitar , drum , base , keybode , and others ! I was inpressed ! ! ! ! ! Day 96 : Too straghtforwards . Today one of the unties said to me that I am too straghtforward . As I really wanted to have Cristmas doughnuts , I dived right in . I suppose that Cristmas here in Japan is very commercial . Many food shops launch Cristmas products . Did a tyhoon hit Hamamatsu ! ! ? So I was greatful for his suggestion . Summsr Vacation We could watch the lions , Forses , birds , etc . Because of it , I was often scolded by my mother who then seid , ' ' study hard , or I 'll dump it ! / throw it away ! Now my interst have moved from playing games to playing music and studying foreign langueges . Anyway , I will fullfil my big dream in 2010 ! I started a dialy on lang - 8 . Becouse I view English sites , but I do n't understand them . I will try to wirte in my diary in English . and I 'm writng a diary entry to waste time until I 'm ready to go out . May is biginning . May is bigining today . He seems to be busy , he asked me to comfirm the appointment . I tried to call hime later in the afternoon . But I failured to make it ! Someday If I visit France , the bierth place of Macaron , I want to eat it . Please recomend your favorite : ) I find it defficult to express my opinion , , , At first I would like to thank for every who cheicked my article . Every dayhhhh I have to study Japanese and do a part - time job too . Although I am Asian , the Japanese words mean the same in Chinse in many sistuations . I am so unhanppy with my roommate . I think we go to study abord as a college students , so we must do our best in our studying . I heard about the place of the Russia nuclear reactor accitendent olace is called Chernobyl . So I must inprove myself such as Japanese English and confidence . Besides , we have school lunce in such a terrible classroom . Anyway , I guess I was suspected by an old man while I was runnning in a nearby park today ! ! : < I spent time researchin Amakudari . . I may keep studying by myself , but I need some oppotunites to practice my English . I 'm bad at grammer and spelling . My room is on the first floor , so he set the ladder up and escaladed . My colleages bought a bin of millks , and we chugged them down . In Japan , people who want to get a job need not only some skills or a good abilty to communcate with co - workers , but also , good academic backgrounds . I relly appreciate your help : ) Today my theacher took me and my friends to Spectum in his car . Spectum is the biggest shpping mall in Irvine ( maybe ) . I ( need subject ) think that there 's no better way to improve my Japanese skill than making Japanese friends , I 'm reciently tried ( past tense ) to make japanese friends on the net and got a few . Please tell me how to use other langage . Although she said it was not seriouse , My homestay father is a big fan of Chinese kong fu and so in love with Chinese language , he really wants to learn Chinese . So I wnat have a place for learning English . Hoever in my case I got transferred here regardless of my desire . They learned Japanese , mathmatics , and social studies from 9 : 00 to 15 : 00 . We ate the korian food at komart . Some languagese learners would like to discuss / talk about the different aspects of languages , I really enjoy that ! ! ! Now andthen , I always recall the wonderfui times we havewhen we get together . ( Sometimes I do , tempted by the tasty look and favors ? ! ! ) Cars ca n't come near the firewarks venue , people looked at firework on the street . But the firewark were very beautiful ! ! have you ever expreienced something like this ? The quaill eggs were sold in 4 packs for 1000 won . I have naver been abroad , so I have n't experienced this lol It forms the boarder between Thailand and Laos , and is the gateway to Vientian , the capital of Laos . This weekend I 'm going to take a train and then go to Vitentian . When I went into the travel agent 's office , a local Thail woman attended to me and she was really gorgeous . Althought it 's boring when we are wating , I believe that when we see the picture in the magazine will find out that it was all worth it . We enjoyed and feld happy ^ ^ If you choose egg you can order egg udon or egg sobe . I went to kaiten - zushi for dinner yeaterday . So I can eat those without thinking which dish is cheap or expencive . It was ivory , long sleeves , and hagh - necked . Study english - steadily ( regularly ) studing is very difficult . I konw this road will be very hard for me - a girl who are not a native . Besides , I have 7 - 8 lessons at school every day exept Saturday as on Saturday I have 6 lessons which are over at half past 1 p . m . When my groupmates decided when the courses would start on Saturday I asked to begin them after 2 p . m . But nobody supported me even those who did n't care when to start . Toay is Monday in Japan . Is it becasue I am a typical Japanese or am a coward ? ? Books can enable a child to develope his or her own reading skills and power of concentration . First , by touching letters in books , said child can develope reading skills . Japan is a moutainous country . 3 / 4 of the total area are moutains or hills ! I had eaten too many unhealthy foods for a semester , and even though I only ate a little each day when I lived in the city of my school , I still beome fat . Japan has had a taugh experience since the earthquake and tsunami in March this year . When I see the people 's attitude toward saving electrivity , It always reminds me about the nature of the Japanese . the first picture is of `` kinako mohi `` I 'm happy that my wish was fufilled ! My job keeps me very busy , so I do n't have enough time to learn Engish . The next challenge is one any flash developer might come up with : Assciateing visual images with sound . Moveover , traveling alone , will bring the traveler unexpected surprises , such as making a new friend or enjoying the different scenery . Second , I like to make new friends ang learn more things abount the place I am traveling to . I 'm a Univercity student . I often see a man selling fruits and flowers on the Safty Island when I drive to school . Atashi wa pera pera to nihongo wo hanashitai . Now , his English is not perfect , but he can cummunicate with native English speakers . Mobile phones are getting fashionable recently , there are many colers and many design . And they have a lot of fanction . For example : you can use it to listen to music , to take pictures , to use the internet , to arrenge your schedule , to watch TV . . . I do n't need too many fanction . Thesse days , most people have one . Sometimes it is too expensive . . . We should be carefull when using cell phones . I realized that now I 'm not aliving ! Hellow everyone : ) I had to picked my school timetable up yesterday for my graudate school history classes . I picked 4 classes . Advanced Latin is one of them . It looks like I am the only one signed up for the class right now . He drove all the way to the station advertizing Kobe beef . My favolite thing is listenig rock music . But a sereious desease infected him suddenly . We chose the rings and went to the humburger restaurant . I take bellydance lessons once a week . My bellydance teacher is Korean . Reading assignmen At that moment I felt that he was a very quiet and lonly person , It seemed that he struggled against difficulties by himself just like the song said . Hi , I ca n't speak in english ! For practice today I am going tell one story . Its name is `` The Girl Who Does Not Speak In English . `` This story has no plot . This story has one girl who found this page for learning ehglish , and this is the beginning . I hope the end is good . : ) For that I need your help . I gatherd the application forms and sent them to the bread company . We study in differet places . Texas buger For lunch , ate a hamberger at McDonald 's . At my university , there is an anime society at which people who love Japanese anime get together and hold events like quize shows . I will join it as soos as possible . I compared both pictures , and I thougt the picture of the digital card was very beautiful . I trid a slot machine , but I did not winn as expected . Though they looke fierce , they are charming . Secondly , it is eay to raise cats . I think `` Harry Potter and the philopher 's Stone `` is the movie that I have seen most often ! The day the earth beacame my home . . . 1 Singapore and Malaysia Now huiman control this world , so we take care of only ourselves . If insects get a severenty of managing this world , they will kill us in turn . It is a bit unconfortable to live with someone and not talk to the person . My favorite artist - - - > allsion was eliminated . OMG poor allsion ! But recently , my improvment in Enlgish has become slower . Just think about it , I am always using and depending on words which I alredy learned how to use . I hope that I am already an intermidiate English speaker , and when we reach an intermidiate level , our language skills start getting stuck , because we start depending on words and expressions which we have learned in the past . This years motto is `` I talk wihtout hesitation ! ! `` After that we heard / found out that it had been a weak earthquke . It was n't stong enough to damage anything but reminded me of the tragedy in Haiti . Today , this task espessially suffered me . I am very gald to meet all of you here . The dictionary definition of communication is the process by which people exchange information or express theie thoughts and feelings . A case in poin is Ebenezer Scrooge in the story of `` A Chiristmas Carol `` . Call it close or distant , it is happiness when there are people who you can communicate with . `` Is n't it cold ? `` I ask . That 's whwn having someone there to reply `` Yes , it 's really getting cold , `` provides the warmth - - Machi Tawara . I was suprised . I had a probrem . And so it is posibily to change something kindly and make it kinder than it is now . usually I do n't have the habbi of writting dairies on the Internet . . . I am trying to find a sentece to enable me to ask you some questions , but I ca n't find it so no problem , I can read it by my self again . Rencently , I whent to bed at sunrise In general , most beginner or veteran docters are stubborn and a little strange . ( It 's not only docters but also the old . ) But they are that sort of type of person . I enjoy downloading Potcasts ? of CNN News and watching them . Especially , I like the broadcasts of Anderson Cooper 360 dgree . The chaotic situation in Hitai was beyond description . So many poeple died and still the bodies were under rubble and on streets . I watched a TV program , which is called `` Cool Japnan `` . Things that intersted me . If you are interested in Japanese culture , I 'll recommend you to wach this TV program . I 'm sure it will help you to open your horizen . `` I made a conscious effort to lose wiehgt after I read articles citing me as the fat chick in Hollywood . Will this sentence be able to convey my thankfull feelings to the teacher ? I 'll show you three museums , Teshima Museum in Japan , Juwish Museum in Germany , and Goggenheim Museum in Bilbao , Spain . You might notice that the water drop moves slowly on the slightly clined floor . This architecture is , to recape , the space in which you can feel the existance of nature and yourselve . Yesterday I went to a movie theater to see `` Angels and Damons `` with my friend . I found a very usefull site ! I had expected that Algentina would win , but they depended on Messi too much . Recently , we recived meny voices from citizons that our personal appearance is too bad . Women 's parsonal appearance is more difficult than men 's . Becouse women 's fashon is rich in variety . I wish our staff members get good sence , then become good office . It 's a famous specialty nudle of Nagasaki . She has taught me speaing skills for 4 months . I commut to language school . I hardly able to have the opportunity to speak to native speeker . By the way , Chrismas is comming soon . Secondhand bookds You can write me a message if you are interessted . ( : Hoever today is Friday ^ ^ Look ! Is that your book that was stained with blood or ketchup or somthing ? A girl who deraming of a true love 's kiss met a prince . My daughter askd me She must have been a princess befor . It 's rainning ! It has been rainning for four days . The weather is cold and wet , I dont like it when it is rainning The < < M > > is full of slang , I think if they muted the sentences which include slang , the whold film would become a silent film . I know abstruct words and technical terms to some extent . Besides , I can not read fast , speak fruently , write quickly . When I noticed it was time to get off the diffirent station I did n't feel well . Today we are working outside , so I wonder if it could start rainning later . Campany meeting In every meeting we Discused recovery from the earthquake . Hello friends . Today I was really happy to talk with Tyler and Neechan on Skype , and also Ivy on MSN . luckly Neechan got her microphone working so we could talk on Skype . I would like to record them like when I talk with yusuko . I think it is too late aleady so I have to go . I ca n't tell you guys all of my wprking condition , so it is little bit Subject : Changing schedule proppsal . Now , we 've got a new enployee , and there are 6 people working as I have alrady told to my manager and co - woker about this , so If you He asked me to call my parents to come to school foa a talk . I planned to spend at least three hours to study english every day since I began to prepare the qualification exam to be a deplomacy . I write in English most about things connected with international affairs , such as , China 's economy became more dependent on their inner investment , Libiya 's Caddafi came to terms with ( ? ) Mr . Belousconi , the prime minister of Italy , over the past colonial peirods , or SC decided to impose new saction against North Korea . A few days ago , mom brought some books on methods of learning enlish . granfa , granma everyone is welcome ! ! It 's beeb quite a long while since I last wrote in my diary . During this time , I 've been kept prety busy . I attended the Smith College Forun today . AUGST RUSH I like to travle very much , if u r interested in me , just become my friend ok ? The use of e - mail and telephone costs us lots of money , not only for connection and packet taxes , but also for the basical lisence fee . So it is pleasnt for me to select from them . I suprised her . She was very supried ! I was hapy because I could make her smile . But I like eat potatoes , cokkies ( or potato chips ) and drink sweet black tea . Please lend your power ! Of course , I will help you with Jpanese , if you wanna study it . On the contrary to the good first impression , Johny was very naughty and loud little boy . What drives me craze is that the officials at school see me as the one responsible for opening the door to cheatting . There are many restrictions for smorkers in Japan , for example , more tax added on tobacco , restrictions on tobacco advertising , and cautions written on the packages . long time no write this dialy caz , I was in a quarrel with my parentsnot . but I was a nuisanced to my friends caz I lodginged at my friends ' homes . I 'm ahamed of myself now , , , , , What happned to my life ! ! ! ! Recently , it has been very popular among youger generations . I make a presentation next Tuseday . Maybe I ca n't awnser . Everyday we prepare many packeges . Because my cell makes a similar sound to my alram clock , I turned off the Especialy since this is my first time to make this kind of food , it is going to be great ! So I 'm not surprised that she was upset because deliverly is hard on their bodies and it 's pretty expensive . Hiroshima is famous for the atmic memorial park and Miyazima . Winter was kind of my favorite season . After each session , I strech my body and train my muscles . My body is so weak and rusty these days , so these execises really helps to refresh it . But I have a proprem . . . I can do anything whith English ^ - ^ I remembered my voilin teacher explaining me that ( to avoid repetition ) I dod n't know him well , but I want to hear his play of Paganini . Although the interview is in April , I 'm still affraid that if I wo n't pass the interview . other students uni fron Tokyo and Fkuoka came too , so it was very fun ! I have plans to go to Kyoto on the th . My frinds and I want to go Kinkaku - ji , Kiyomizu - temple and other places . My sister ordered a greentea tea latte that was very delicious . To the gentleman who dropped his shoe at the Hounted Mansion in Tokyo Disneyland , was your shoe safe ? I was on the waiting queue to get on the cart at the Hounted Mansion in Tokyo Disneyland . It was around a quater before 9 pm . No one seemed to have guessed it right and we all laught . Certainly , the Hounted Mansion is the last place where you want to drop your shoe . Guess what would bring your shoe back if you drop your shoe in the Hounted Mansion . When we happily got on the last ride , I wondered if they checked if the gentleman 's shoe has not changed into a cursed slipper or the equivalant . In addition , poeple worked together to achieve major progress to make their country more advanced . When I chose this time and this place , I specifically did so because there was a leader who ruled the poeple by justice and love . This leader was the prophet Mohamed who had a message for those poeple to deliver . And he spread peace among the poeple . From my point of view , the Prophet Mohamed was the most intelligent leader at that time , because he saw that if he wanted to build a country he had to establish the poeple first before doing anything else . Becauce of all of these things , I would like to live during that time just to see the peron who changed the world for the better and made us better creatures . I wanna chanege my life . It 's a real story that has happend at Grasse in France . He was mad , but finaly , he succeeded in the production of the miraculous perfume that made all people fall in love ! But firstly , I have to pass an English exam like TOFEL . Today , I participated in a English party and I met some realy nice people . However , the straydogs live hardly and panifully . When I was a university school student , I created a club that made me do something to help stray straydogs . Althogh we face many problems and attacks , we always do the things that we belive are right ! I opened the egg carton in the refrigerator and found that the eggs were fronzed hard . In addition to all that food , the lack of excercize has n't helped . and do some excercize every day . Recentry in Japan , . It 's been continuously hot for days . I do n't like this wheather . For A Good Presentaton ! Communication is far more than imformation exchange . It also includes eye contact , body language and so on . wanderful ! Somebody checks my dialy and corrects it immediately . There are tests in high school on this manth . The meal was very tasty and even though it was a buffet and buffets tend to have less nobility in taste and atmosphere , this was surprisingly very sofisticated in taste and atmosphere . I 'm really passionate about doing hair and make up , and have ambision for my job . After I finishe my assighnments , spring vacation awaits me ! ! ! I 'll go to Desny Sea on the 2nd of March with my friend . I have mant things to do . The English program tytol was Little Charo . I want to become to be able to communicate with foreign people in English , so it seems that this class is suitabale for me . I stayed at the hotel with a cowoker Mari . I was able to see skycrapers and the Opera house from there . I don ` t have a clere dream . As for lunguage , english and korean . an alternative to speaking with a mittor . It is a clean and confortable there ! ! And now I need to study hard because I want to do well this semestr . During that time , I traveled to 4 south east Asian contries with my friend from my university . I 'm gon na write about the ditailed leg of this trip in my next entry . Morning : I must get up before my roommate and read English loundly near the lake in our school . Night : I must remerber the English words . It 's very difficulte for me to use `` Little `` case by case ( / _ ; ` ) One nitght , we burned rice bran , which would make a smell the fleas like . `` What happened to your house ! `` our neighbor ran out of his house with fright when my mom generated the thick somke . I would like one day to leave my country and travell to England , but the problem is that my English is very bad and I do n't have a way of leaving . . . Can you please help me and teache me ? Bye , thak you . There is so much more vocabulary that I need to remeber . If we ever get to the bottom of the mecanism , we will be in the money though . Yet one thing I noticed is that if we do n't allow ourselves to say `` It 's okay to forget , `` our forgetness is suppressed . If we say so , our concious recognizes that it 's OK to forget . Oh , I remember one scientific report that showed loughter boosts our immune systems . Tonghit , I will see fireworks with my brother . Yes , I 'm falling in love with a girl who I 've always imanged , but it is going to be a really difficult time for me . I feel bad , what shuld I do ? That 's why I study harder these nowaday , but I have a problem with English class . I will take part in Chinese Speach Convention . Unfortunately , I am poor at organizing things , espcially this holiday . One of them was a huge threater with a super - high vison screen and another was showing an animation made by leading - edge technology . However , the course that I am taking now is more difficult . It will put more pressuer on me . I often hear that it is impossible to hear phrases that you ca n't say yourself . Therefore , I 've been raading sentenses and phraces out loud repeatedly in recent months . Please give me some advice to improve listening copriphention ! This is my third day isung lang - 8 . I 'm not really familiar with the functions here , so I always sents the same On the TV program for theEnglish lesson , `` Why not ! `` is thesame as `` Of cource , I will . . . `` it was tooo tired . . . . Japanease traditional dolls Today I decorated the japanease dolls in my house . I have to confess I wasthe kind of person who always said , `` God , why did you not grant me another chace . However , ater that peroid of my life and surviving some of life 's irony , I come to realize that there are so many things we are supposed to appreciate , but we always take them for granted and complain all day instead . In the morning , I rode my bicycle to the playground to go jagging . They go to parties , clubbings and other scenes to cover up / to hide their lonelyness . You will expact that another person will also show up just as easily . I choose to embrace my lonelyness . This whole joney of mine was just to reach you . Happy birthday grandpa ! ! ( even though I do n't konw how old he is ! ! As some areas in the world have their own calander , muslims also have their own lunar calend . Hirji calander . It 's a little bit earier timimg to greet for new year to us , but who cares ! Neither couldn I go to the library because I felt dizzy . I have many spelling errors and expressiong errors . I rounded these spot today , but I think that I would n't go by car because those parkings for cars are very expencive and there are many places around these spots without parking area . I recomend using the rental bicycle . In autum , we feel good cycling . We also had a good time and we tried the second movie which is a famous movie `` Harry Potter `` but we slept for a while because it was not so intresting for us . Uhmm , it was too difficalt to understand . Jyanet is my flend 's wife . I am speaking english moar . I 'm slyeepy . It sounds like `` Finding Nimo `` ) I want things to chang . Kuronenbourg is now owned by a British company . I have choosen this picture as my subject because of the last scene in this series . I want to attempt to write a short summery of it in English but I think it is too big of a challange for me now . . . This exam is very hardfor me and it is in January next year , that is to say / I . e . I have less than 6 months to prepair for it . I 'm wonderring if I should enter Azumedia , in Australia . a bowl of rice topped with chiken and eggs . Rememberig my daughter 's shining smile . Oh ~ sorry , I 'm having a grumble at the biggining of a journal . My boss told me to go for the lecture of the insurance company to get a lisence . I bought a merchine yesterday Yesterday I went to DG to buy a merchine with my boss . I saw and heard Framenco while I was working today . I wonder why all guys who sing Framenco music / songs sound the same . Besides , I 've never heard Japanese guys singing Framenco songs whereas I 've seen Japanese Framenco guitarists such as Jin Oki . I used to learn ( the ) Argentin tango , chacha , and salsa when I was a student . 1 . The teacher assined each student various homeworks . When I woke up nearly midday , I got a severe headahe because of a terrible hangover . But this morning I had to work because of the examinaion season : < The other guys do n't like punk very much , so they didi n't sung along with me . I 'm drinking my coffee and waiting for it to be 7 : 45 A . M . - the time to leave my place to go to my Universty . My Command of English Has Been Detereolating . . . I never use English these days , so my English has been detereolating so badly that I ca n't really speak anymore . My boss is very cool and interigent . becuse I ca n't speak English very well . I 'm so happy latery just friends to study English . I have found , and I already know that I should take care a lot , especialy on this site . . . ! Also there are lots of canals , so you can take a boat tour and admire the vievs . Here is an explanation about Doll Festibal and a picture of dolls . After the Festibal is finished , you must put the dolls away or you ca n't marry early . Animals walk on the hill , sleep , eatting , and run without restrictions . But , the autor of the article which I read defended that women can deal with money because they spend their money on a few small things , while men would buy ' useful ' tools instead . Immeditely I went back my home and cried a little without my voice . This is a Japanese company in London and most of emplyee are Japanese . Anyway , I 'm looking forwad to this coming summer , which has the longest daytime and gives us a lot of opportunities to play and drink in parks . Sometimes when I see foreigners come to Thailand and traval in the southern area of Thailand , go the the beach and things like that , I feel jealous . My family did n't traval often . Instead , they like to do their job and save the money for the furture . I used to ask my friends about heloliday and where thery like to traval and they said they did not traval often . somtimes they think if they do n't use the money to traval , they can use it to buy something better . I think in Bangkok we have a beatiful beach , a lot like pukat kabi city . So , about me , I have not to traval in the south , but I plan to go there one day when I have the money . He mentioned some contacts at Mizubishi he has there but had to leave quickly after that . Finding your center is very importmant . On the way , a very extraordinary thing happend . Studying in Canada is a valuale chance for me to become mature and learn to overcome tons of difficulties and barries . I like action / dancing / etc . just as I like music . It 's art , it 's soul , it attrection me that make me more expect ( ? ) myself . I like action , love and so on , Finally , I will be hard working and malke a lot of maney . Dath from the usual flu are more common than pig flu . I consider the vaccines ( and not only from pig flu ) in itself to be harmfull . Of cource , it can be usefull sometimes but not for everyone . Maybe I fouced on the game so much , I did n't know what to do next . Of course this was comfotable but I had no choice but to endure it . I remenber the time when a doctor began putting in the However , I do n't remenber anything after that . Besides I do n't have to pay any money to cut or parm my hair recentry . Of cource , jyuken has been gradually reviwed . After cutting , I looked in the mirro and I liked my new hairstyle very much . When I passed a parck , I found that my shose was loose and I sat on a white bench to tie the shose . After leaving the parck , I walked on my way home . However , many people just stared at me and laughted . At that moment , I thoght , `` What 's wrong with me ? `` Arriving home , I rushed to the mirro to look at my new hairstyle . When my back was in front of the mirro , I saw my white strait on skirt and cloth . I 'm a student at the Hokkaidou University in Japan . I had a responsibibility to win the prize this year . Although main cliants consist of office workers in their 30 's and 40 's , there are cliants in their 50 's and 60 's who are regarded as the manly generation in Japan . It would be quite embarrasing . I breed many kinds of red - bee - shrimps and some bettas . Breeding is fun , but occasinaly troublesome . As you know I like breaded pork cutlet so I was cooking it before opening my compuer and somethng happened to my fingers so I got my fingers burned . Gesus why did n't you tell me about this terrible thing that is happening to me ? My friend tells me that I must decrese the amount amount of Pepsi that I drink I decide to decrese the amout of Pepsi I drink It 's been a long time since I studied enlish . My friend Ming told me about this wedsite so I came here . It 's a good place for learning English , and I will come here when I am free . So I need to stop writting . So many things happend since I had left lang - 8 / during my absence . About 9 years have passed since I started stadying English . I 'm frustrated with my lack of progless ! She has sacrificed so much for her childern . I used to have a dog whos nam was Taro . I 'd liike to get a dog . If they had more momey , they would spend it on other things , such as playing games at the arcade , or going out at MacDonald 's or Kentukky Fried Chicken . I think children would be spoilt if they receive too much allowance from their parents so 10 dollors per week is enough . But , I have to do homewark X ( It 's contents are scret . Actully I was impressied by that . He was wearing earphones ( maybe listenning to music like something with a strong dance beat ) and he danced for almost 1 hour . I seem to able to continue it , because it very derisious ! ! I was saked `` May I make a character box meal for you ? `` She said `` I ` ll make pikattyuu box meal `` . It will be a plasure to eat that ! I feel my oppinion is selfish . . . haha Cause I never discussed it with my husband ! ( Hasband to be . ) Are the following sentencies gramatically correct ? The pasing grade is 60 points , so I think I made the passing mark . My English is so poor , but I must try to write someting . Spting Storm All I have to do is keeps on learnin it and I will speak almost perfectly someday . At that moment , a professor , one of my male boss , suddenry came in and said , `` You are using blotting paper ! `` He did n't mean that the lady should not use blotting paper in an official place . He is very cute and smart perdson usually , but sometimes lacks in delicacy . Maybe we wemen , also break guys hearts because of a lack for the male way of thinking I think I was kind of pathetic becaouse I had no strong feeling when I lost my lover . Ginza line is good for them because it gose under a lot of tourist spots . When you talk to someone directly , you can se right away if they do n't understand you . When you send an e - mail , the receiver may misinterpret what youy want to say . Actually , it is very usefull and helps to save time but you should consider that the E - mail is a second best method of communication . I work for an American IT company and our collegues like to send e - mails because there are time differences between the reasions . No one suceed in Japan if they do not prefer the face - to - face meetings . In summry , if you want to establish a relationship with another human being , the best way is talkin face to face . When you communicate directly , you can avoid misunderstandngs that may occure in writing . Many peoples in other contries know this ( fact ) , Of course , we are the ringleader who experienced the terible war called `` The Korean War `` . For a long time , women have had less oppertunities to find a job in many areas . Its all part of a field study being conducted by marine biologists Paul sickle ( maybe ? ) and Donna Nimet , whith funding from earthwatch institute . but I have already watchted them . plase call and send an e - mail or write a sentence . . Annual Meeting of resitdents ' association I am not sure about my enmotion . Today is a bad day because I received a customer comoplain . . . : ( I just feel so much shame for our RD and assembly people . Everytime they promise that they will pay more attention in order to prevant the problem happening but then . . . the problem always happens again . When I was doing my military secive , we were close to each other . I have somthing I 'm worreid about . . . ! ! ! ! I will stay up ALL NIGHT studing for my exam . Because , when I 'm 20 years old , I 'll run to the USA , find myself a rich husband mith a big house , an even bigger belly , and a small penis . This is the last year I 'm studying at scool , or , more exactly , at the Lyceum of Physics and Mathematics , and I hope to find myself in some cool ( or not ) university by August . Maybe I need more sleep or some exerices . Today , I went to a drinkind and eating place with my firends . In English I can express evrything using only 26 letters ! I am going to hold a driking party with my co - workers next Friday . Before that , I need to get my father 's permition . Unfortunately , when I finished speaking my frist topic , then the teacher came to us and I felt nervous ! Coincidently , I had an unkonw question which made me embarrassed . I am always thinkng about what makes a good speaker . I like to play the guiter . F - shaped hole guiter is offten used for blues and jazz . Some of the old guiter were corted in shellac vernish , it sounds very good . I went to see the cherry blossms at Yeido park last Monday . It was my company aniversty . It was a good atomosphere . I feel I am gainning weight . These days I think I ate too much so I am gainning weight . So last year I experienced my first campas life ! At the bigginning of the school year , I had almost no friends at the university . From friends , familiy , friends in US , my host family and so on . Those mede me realize I have been supported by so many people ! ! ! And buy souveniers and the like . However , it 's impossible to discribe accurately the sense rooted in individual bodies by using our common sense . I like to drink a cup of coffee wheni feel tired or want to sleep , aspecially after lunch ! Novemver . In my opinion , whether teaching the sudents who have already had plenty knowledge of English , or the children who have never experienced English before , the techer should recognize the importance of teaching . Even though they do n't have the language environment to speak English , they can sing some English songs to review and strenthen their English . My suggestion is that the teacher can teach some Enlish songs which is related to the English lesson . Yes , hindsigh is 20 / 20 . The Art of Disney Gallery is held outside in Downtown Disny . Today I 'm going to tell you a very interesting story that belongs to the traditional / folk literature of my little coutry . In our country , there are a lot of ancient estructures that were built before the Roman conquest . They are called `` castros `` , and it 's said that they were buit by an ancient culture , probably linked to the Celts . There is only one small problem : if you try getting them , you could be buried alive and die in the dephts of earth . My favorit hobby is listning to music . The legend of Sant George part - 1 I was not intrested in the topic because I have heard enough of that . However an esssay intrested me . However , If you do n't exercise early day , you will not be healthy and after you grow up you ca n't even study or work at offiice . So far , I 've only watched about two movies a week becuase I do n't have enough time . Visiting Aamerica was very good . There are many restrants , stores , and the ocean . The bay cruise around alancatraz is good . Boudin is a restrant . My recommendation is the clam chowder that comes in a bread bowll . So you should go tere , and you should take a taxi or tour bus . If the weather is good , you can see beautiful streets , the bay , and the Gorden Gate brighe . At both noon time and night time , it is bery beautiful . But the wind is strong there , so you should bring a parkar . So if you come San Francisco , you should bring a parkar . First we saw a big ship , we took photos , and we saw a fishman at the beach . I read `` Graded Readers `` , Penguin Readers , Oxford Bookwarm . . . and others . You must feel umfortable . On the second night , we took a walk around the souvernir quater ( ? ) after having diner . As a natural reflection , he looked around to find the cultrip . He was masculine and grittering during the wedding party . I found the chocolate in a shop selling cubic rice cruckers . My hotel has 3 rooms for weddings , 3 rooms for parties , a Japanese restaulant , and a restaulant . I have n't been to a forign country , such a America . I 'm relly eager to be good at English . I fook forward to meeting her because whenever we meet , she has grown . I 'm very borned with it because I 'm very lazy but it 's necessary to get my degree from university . I played the guitar in a band at the time , and we copied thier songs . Some webstes and someone told me that getting PR in this country is pretty difficult now except for special skill workers . You guys must see my bright future there in sileint . I knew how fascinating the zoo could be from reading a relevent book , and I thought I wanted to go there if I had a chance . Last nigit , in the live house , I heard many people speaking different languages like English , Frengch , Alas , if only I had a good parter and a child . As time went on , only a few people have remembered the campain and people stopped continuing to quit smoking . I recomend you to watch it . It just looks like a cigarette case , so cool and cawaii ( cute ) ! Today , I cleaned my hous with my wife . I have liked Engish since I was young . . My friend recommand this homepage . The people coming to the horse race weared wearing far outclothes . My friends told me he received some impormation from his manager thathorsenumber 5 will win . As we watched the race , we were sured that number 5 horse would win . My grandmother passed away 1 month ago , so we bured her under I am now working for Au pair and exchange between korea and American culture here . This is my first dialy entry on Lang - 8 . I wonder what they are passionated . . It tooks 8hours , more than three times longer than Shinkansen , from Osaka to Tokyo . I do n't know how long I will stay here , but everything seems gets better . I like the feeling now , because I can ask qustions now , no matter how easy it is , I do n't care , because I want to know the answer . It is the only way to grow up . Now , my colleages treat me well , and always answer my question , and I am trying to do everything perfect , so that they have no excuse to blame me . Nice to meet you , evvryone . That is doing ypurself ; you do n't need to care about others ' views . I trust mysely , I will realize my dreams , fighting ! ! I spred cream Goma paste on my bread . Here 's hte website : Meating Grandma and granpa ! ! ! Their relationships are always changing , so it is interesting fot me . I 'm still a begginer . Facebook was n't so major in Japan untill last year though so many people use it all over the world . Nowadays , Facebook is getting mager and mager in Japan because of the movie ' Social Network ' which is showing now . From a Japnese historical standpoint , however , this idea is the other way arround because it was harder for Japan to watch and protect against invasions . It has Swavsky 's crystals on its stainless belt and face . Moreover it was rainly in the afternoon . so we coudl n't make any food or take showers during the last three days . 80 % of Japanese boys talke to others with humility and the rest of the 20 % , are totally insolent like kids . How about the boys in your contry ? So I 've been studying hard latedays When my Eglish becomes better , I 'll help my other friends So , I began to go to an English conversation class recentry . and it will be understood to everyone reading my diary easilly . When I have incresed stress , I usually did n't sleep well . She also membtioned the point that she had kept complaining about it for more than 20 years . A lot of people are crying and can not have met thier family and friends . I will cheak about the South Korea and hokkaido , I want to fly immediately . I know that you are a very busy person and , penhaps , you will not be able to answer me , I have lerned English for eight years . It 's spring now , I may need to start thinking about my furure . I want to learn English becase I am very interested in English cultura , people , cities , and more . Also , I have problems with articles , prepasotion and more ! Recently I 've been trying to read English newpapers . Terms are not esay . Sentence structures are not falimar to me . A major cause of the misperceotion , though , is Presodent Lee 's sagging popularity . How differant are these ? The primary footprint is a measure of our direct emissions of CO2 from the burning of fossil fuels including domestic enerfy consumption and transportation . We have direct contrel of ' these ' . The seaside is my runnninng course . These days , cabdidates can hardly work as a full time employee . I 'm trying to decide which would be a good gift for mothre 's Day . At the same time , I am learning japaness as well , in this case , it makes my English become worse . . . . I do n't have much time to use English in my daily life . I hope I can improve my English writting ability . My husband and I went to see a muvie . Before the muvie , I went to a department store and bought a pretty ring . We had n't expected the muvie to be good . The architecture of the buildings such as palaces , theaters , museams were really wonderful . The colore of the river water was not blue although the river is famous as `` The Blue Danube `` . I slept during the reading section and lost about 100 points more than the ( listeining ) section . I found this websit from my English club a minute ago . I want to neet you guys , whoever you are . I wil buy more of it later . So when I was listening to a song on TV she suggested to give some Persian songs to Farsi leaners . After the wemen in my family made many of the dishes like the meats , rice cake , fruits , grilled fish , Korean traditional fan - fried cakes and the boiled potherbs , we knelt down to make deep bow with the Korean traditional alcohol before a picture of my father 's face . I amcurrently live in Japan but I 'll be moving to London to study web design next month . I play iano too , of course , as an amateur . It has been a long time since I 've written a dialy , so I wanna write about some things that happened recently / in the last few days . It is so good because I was looking for a job in which I could use my portugues skills , and this jjob is perfect ! To tell the truth , I am not sure that I could do it perfectty , but I will try hard ! London is my favorit city because there the old buildings and new buildings coexist . If every day passed more quicckly , I could leave for there right away ! his face , chracteristic , his way of speaking , haha . Just Beggining my Journal I 'm beggining my journal today . Because I have n't seen them in a long time , I am looling forward to meeting them again . And I 'll watch `` WHAT HAPPENS IN VEGAS `` starirng Cameron Diaz . I am afriad to take the Listening Course . I was so sad and kept cryng . Also I liked Penelopa Cruz . It 's a really usefull leg ! I like Udonn . It 's really difficult to think of it becasue he 's straight . Of _ Ofcourse , students are really looking forward to travel and they want to bring enough snacks to spend wonderful teatimes with their friends . ( Of _ Ofcourse , there are not any cooling appliances in the institution ) I like to speek English . Today , I took the ANA employment exam at Haneda aieport . The test required the ability to cope with a lot of different infomation at one time , and that determined whether you passed or failed . and it eaches . TEN MOSQITO SPOTS / BITES I ' VE HAD ENOGHT ! ! ! ! In body pump , we use dumbbels like attached picture . Right now I ca n't speak , writting or understand English . The man seeing with truely eyes did n't compare King Solomon and a field lily . That was thoroughtly thrilling to me . Sometime ago , I opened a litle bussiness with my friends . That 's why my bussines is related to computers . I love sciens too , but not as much as I love computers and Google : ) I 've been married for over two years . I love my wife more than all of my computers , open source , sciens , and even Google : ) I 'm happy becouse it was the fourth time that I have taken the exam . I am also glad beecouse I found this wesite for learning English . I , of owcourse , will also help you with Polish . But the foggy and claudy weather make the city blue . Would you chek my letter ? ) * please * JOHN ( Black Labrador Retriber ) and Ryu ( Dachshund ) . When we walked along the river near the house , we saw so many firely around . I have something to do in Korea , Oficially and personally . I bought the flight tickets and bus tickets to the airpott . It made me feel tierd . Of course we can talk bia the internet . I am so tierd . That exam had some strange quesions . How many aborighial tribes are there in Taiwan ? It 's the easist subject . But I do n't think easy quesions are good . I have been studying Engish for 7 years . I want to be carefull of `` May disease `` . I 've been studying Englis because I like English and I want to commucicate with local people . I 'm goint to Australia for my working holiday this August . I lile trips and cultural exchange and volunteer work for handicapped children . If someone interested the jounal , please correct my sentences ! ! Thank U . ( The photo meanse I love U in sign language . ) I came here without a driver 's lisence , cash , and credit cards . jewelry label CHIMASKI I decided writting English diary entry every day and I 'll study English hard this year . Ahcccccho ! I am planning to go abroad in about one year to study fashion desigh in England or France . I 'm thinking of entering fashion college or woking as an assistant designer using the working holiday visa . furnished pravate room with a frige landly , shower , and bicycle parking is free . 4 minites away from the nerest subway station . from 90000 yen per month for at least a 3 month contract , and a depsit of 50000yen . They have coloful coats , tops and pumps . I like spring becouse it is coloful and comfortable . My son had a sore thoat and diarrhea the day before yesterday . I was staing up late and chatting with my friend Keita on Facebook , so I wanted to sleep a little longer . Breakfast was alredy ready by my mother . After I ate / had it , I took my pajamas off and took my clothes on . It 's like Ninjya . but thier firts meeting was a bad one . I experienced an unforgettalbe interview and the outcome was unbelievable . So when they asked me about my english I answerd honestly with ' My english is poor . ' For the next few moments there silence and afterwards the interview finished quickly . When I recived the offer my classmates said to me ' Honesty is a virtue ' . I am used to Imari , but I am a beginner of Kutain . Yestrday , I talked to my former colleague working with me when we worked part time in a theater on phone . If someone make stupid and awkwward mistakes , she will blame her or him very severely . This activity seems to be fun but actually , it is a kind of task becuase we are learning how to write `` compare / contust `` structures . After watching the movie , we have to write about the movie by using `` compare and contrust `` . It 's my first time writing a daiary entry here ; ) Yeasterday I went to Shinjukugyoen with David . I like Spering the most out of the 4 seasons ; ) Draemon is a Japanese comic , but the comic that I bought is written in English . People tend to examine conrrectness repeatedly when it comes to observation . Those observations which can withstand examing results can be considered as objective or nearly objective . recentry , everyday it 's raining . When I was fourting years old , a new boy was in my class . My heart was baddly broken . Alwanys be possitive . `` The shue thrower `` ? Today I found this homepage and resgistered immediately . I came here to print some paper because at my house I do n't have a priter . The keyboard here is not solf like the one at my house . Well , another reson that my keyboard is soft is because I have been using it every day , Sometimes I like to type more than using a microhone because accaully when I speak , I think in Thai before speaking in English and I do n't like it . . But that does not help me because when I typep I always make mistakes in English . By the way , I 'm falling asleep right now . Last night I tried to read poems . I had never done so before . It was my frist time . I am really excited . I just realized that it is an awesome way to study English . I was in my office in Tokyo when the earthqukae occured . Although I have already studied English for six years in middlle school , my speaking and listenning are still terrible . My hasband cooked a beef steak and some pasta for me . Edinbourgh is the capital of Scotland . Even though most employees are Japanese , some should sent emails to their bosses and I have the oppotunities to see such emails sometimes . I ate lunch with elementary school tudents and educated them about food . Or present temprature is higher than annual . I am stadying English very hard . When I went for a walk , I passed a little retaurant . In front of the shop , there was an air airconditioner blowing quite a hot wind . I went to univercity for a club activity . I 'll go shohpping tomorrow : ) I am in Austrlia working on the holiday at the moment . But aftet now . . . . . Yesterday , I was just atudding for my exam had a lokked at my window and there was a spider . . I think that the king was weard , but I know , it 's funny to be inspirated with such a small thing . As for the article and the Harge Convention , I had discussed it with two of my friends from the UK before I posted it . I want to learn English , but I can not find any people to study with , so I have not study it for a long time . However , when I suddenly find Lang - 8 , in which I can fing people all over the world that I can study with , I 'm happy , because I can study English again . To be like everyone else is like being nobody or smth . The thing is that I have to write smth , even if it 's utter nonsense . Vomiting , diarrhea , the appearance of UFOs , or fits of sexual neurosis . . . I thought I would make a specail lunch for him . I 'm staying with my host familiy now . So I ca n't deside yet . I had never been in sales so I 'm feelnig frustrated nowadays . chewing gum dates back to the acient Greeks who chewed resin from trees . Morden chewing gum was patented in the US in 1869 by , believe or not , a denest . In 1928 , another American invented bubble gum . Bubble gum comes in gumbles of all colors and sizes , but for blowing bubbles , nothing beats the chewy , gooey pink stuff in the twist wrap . I speak Japaese only . I will appereciate it if you check this . lomg time no see I was busy for a lomg time . He is a docter . He said that he wanted to be a docter ever since he was a child . But tommorow I 'm going to follow the schedule I made . It includes studying English and finishing my college 's assinment . Anyway , I hope I can use English like people who are working in foregin countries . Maybe it is written in Japanese , so we can not see it in foreign counttries Olimpic Games 2 I hope it comes ture , . Most young people live in arban areas to work . I will write a daiary starting today . I hope to build a new bujjiness to change the world . I wrote `` Momotorou `` again after a long time . After a while Momotarou and the dog wolked away . The monkey was pleased , and follwed Momotarou . I 'm considering to introduce my coutry . Rusia and the United States have completed the largest spy exchange since the Cold War . I feel it is amazing that Rusia and the United States still engage in espionage to steal military secrets . Will they also be taken to Rusia ? Their son and doughter are pitiful , too . Loving someone is bulliant magic ! Ergonomiics and style were all considered as much as possible . So I poured some syrop on my Caramel Frappuccino . Shunsuke Nakamura is my favolite football player . His free kick was amaging . The Japan football reague is still at middle level in the world . I will rty to keep a diary from now on . Pls help me , and together we can happily learn languages I do n't like vegetables , but today 's soup was delishous ! ! Because it was rainny . I thought `` he alrady an adult `` . . . . . . . When I was a child , I played soccer and then after enrolling in jonior high school , I played basketball . For example , altohgh boxing or Karate looks so painful , it looks so fun to me ! I 've been healty since I was younger , so I answered `` It ca n't hurt . `` The temperature is modelate . it 's the first time I am using the interent at home since my return . And more unfortuately , I lost my cellphone and some money when i No wonder my right eye kept twiching when However I was dissapointed at the dishes in a certain scene in the film . I think the Japannese way of life is better than before . This morrining , I saw a group of swans . Its around 3 hundreds . Since then , I heve been determined to succeed Because I also have a mooustache and a beard . I have German text books cuse I bought them yesterday . yesterday I decided to learn German cuse speaking German is really cool . For a long time , I have been dissatisfied with my English ability ( especially writing ) , and I have been seeking a good way to studing English . You might really want to escape from the loop and procede to 2pm , 3pm , the next day , and so on , because we all need the future . In paticular , the variety programs are interesting . It rained hard , so we were wet when we finishied the rite and went to a nearby restaurant . Sometimes we all ask ourselves `` When will the day be that we acomplish it ? `` But we enjoy the acesse to our life 's trip . ( ? ) What the above means is that if you wanna grabe something , you must pay its equal in efforts . I hope my dream will come ture . Of course it is one of the priciple of human life but I think that it is not good . Especially in my high - school , I strongly remeber that is the best exercise . Just now I 'm going to read a chapter of Dickens ' book ' A tale of two cities ' and maybe later I 'll write an entrie about the book . The procedure was that preschoolers joined the kindergartners and had a lesson with them . The kindergartners were so friendly and cute . Maybe it 's the most uncertain time in my life , but I 'll make myself touger and tougher to overcome all the difficulites . It has a picture of some women who lives in Aflica . There are some things on their heads ( or top ? ) like fruts or vegitables and they look so happy . The main color is a sunset color and it 's so butiful . It was just serving in an itarian restaurant . Orginary , I wanted to work in pub in Itaewone that is located in Korea . Many foreigners hang out their with their friends . Frankly speaking , I expected that there are many beatiful weman . But I was dispointed . I have just strated study for IELTS . One of elderly men said `` There is someting under the machine . `` It 's owesome , but I think they will not be accepted in Japan largely . . . . Too pank and a little abnormal . Still , by looking at stars and examinig them , it was discovered that stars emit light which reaches the Earth in even intervals . Japan may never have a better opportunity to bring Asiaa better opportunity to bring Asia 's woeful World Cup record against South American opposition to the therd round today . Of couse we are happy that we went throgh the second round . I am excited therd game ! ! ! After that I left the house and went to the place of employement . I wanted to go to drink a coffe but Timo told me that they had drank a tea before I arrived . The Alchemist is about a young shepard who was curious about his future . He follows his dreams and the signs telling him the directions where he should go , and he finally reaches his goal and finds out what he wants . At that time , we cook rice with red beens and serve it . Once I start to write an entry in my diary , I ca n't stop writing by the propre volume . I 've become talktive on this site . I want to correct them , but I do n't have enought time . I know that there are better corecters than I . Today is Wendnesday , February the second . I admit I 'm spoild . I have had it , which was sold packed in a pet bottle , onece in an oversea country . I could n't stop laughing that `` Dairy `` means milk or Chees in English . It has been a week since the earthquake occurrered . It has a softness and springliness against the teeth . so I 'll make an effoet to study English . I like Ssaturday very much , and I can overseep in the morning . and I went to the libriary . Good evening people , I am Lucia , I come from Italy , I am an Italian student at the accademy of art in Frosinone . . . hallo , I am a unversity student . To acqire more Engulish skill For 3 or 4 hours and more we 'd better watch English movies or TV programs or listening to English CDs without Japanese information , any sabtitles Or japanese pronunciations . It 's a famaous movie and I enjoyed it , but the dailogue and monologue I could understand was 1 / 10 of whole movie With the information for eys ( not subtitles but images ) , I managed to enjoyed it though There was a wting class today . I chose it for this simeter because I want to write better . Then we , for exemple , changed from the following sentece . I manated to get through the day . We could spend 100en for each specal curried bread , yakisoba , oyaki and sausage . Voice blog can make your acount and create your voice blog . However , I do not know about my neighbor , so I have no idea about where I should take them . It said taht there are items that were not paid for . Favorites & interests : snowboading , reading books , cooking , comics , video games ( Final Fantasy ) I think it 's better to simply say that the word is unkown when it 's not in the dictionary , but it seems there 's no way to change the setting . It 's already wendsday , However , whenever I travel abroad , I always run into troublel making an itinerary Anyway , I 'm looking forward to treveling to Japan ~ ! They 'll visite the elementary school next month . Even now , radiation has been reaking from the nuclear plants . I felt relieved by thier optimistic attitude . The snow is melting into watter . Only one t . Sprouts are smilling under the sun . Everyting is running with the time . Everywhere you go , yoiu can see them celebrating . Because it is the spring festicval in china . My hope is that my writtings can blossom like the flowers during spring . But I hav n't started doing new things yet . He cought my fancy when I saw him in the Harry Potter film in the role of Sedric Diggory . I like to listen music and play badminto when I am free . I sutudy English . New hairstyel I wanted to change my hairstyel long long ago , but I was afraid to do it . this time I was determined to change . After three hours , my straight hair disappered . `` Your new hairstyel looks very good `` my friends always say . Finally I want to speak correctly when comunicate orally . After eating , we played MARIO BRATHERS on the Wii . Now it just gives me a chance to reumite with myparents . And it will be a tiring tirp . Dear Johny , Long time , no writning ! But four days have passed , now I 'm getting bored , I have no more interssting in reading books . The weather is so good , why can I only stay at the house , I 'm freeking out because of this kind of life . So I dicited to go out , even though I have no idea what to do , I just want to go out , and have some sunshine ! She whould need treatment in a hospital for at least a month . As a result , I could n't win the prize , however , the members of the team all said that they were satisfied with the team - managemanet and presentation . That enforced my confidence of my growth . I have been learing . Englishi is very difficult . Grammer is different with Japanese . It takes time to write even a short sentence . Today , the weather is prettty hot . Subemerge yourself . what I realy want to be . . . empoyee ? self emploed ? I do n't remember words and grammer . He was a very kind and friendly person and gave us lots of imformation about Fukui . Chiness are very diligent so there are nothing people to sleep . ? At present , my doughter and wife live there We met 3 times , and I took Kelvin to Moskow . Yesyerday , my sister was admissioned to Si Chuan university ! In the afternoon , my sister told me a small sercretly , that she has a boy friend . he has been in Japan when I was junior high school syudent . always confuce I am very sleepy now and do n't feel so well because I wrote an English essay at 4 o ' clock in the moning . speciasl day ! ? I tried donating blood before , but that day I could not because I was in blad condition . The Nurse said I could danate blood today , also she said her name was the same as mine . After donating , I really wanted to buy cokies for my famiy and friends . So I got in a line to buy famous cokies . I could n't remember what had happend , Finally , I got cokies . I knowm that the war is cruel . It is said that almost all Japanease like cherry blossom , they feel transience there . I watched the Olympics on telvision . MY ASNSWER : It 's as if I had discourse with myself or with something that creats and manipulates me . So I decided to write even if nobady reads it . On the other hand , it is likely that I 've unloaded a burdone from my shoulders because I have a feeling that I am incapable of treasuring the corrections I 've been given . solor energy Heppy Hew Year ! I want to watch a baseball game , but there is n't a game tmorrow . Anyway I 'd like to make more experiance . It ' sThis is my frist post , you know , and my 91st attempt at learning English ! My summer vacaion will start tomorrow ! : ) yay It 's hard to to learn other lungages , but if I can , it 'll be interesting ! Actually , I had difficulty chosing this one because there was another cool red one . I think my English will become better and better . One day just like some other people whose English is not very good at first , but later after all the hard work they successed . I used to pratice my oral English because I think English is a tool to communicate with others . If you ca n't speak English smoothly , how can you communicate effectively ? When I watch other people speak English to foreigners I really admir them . My dream is to talk with foreigners in English one day , so I hope there are some people who would like to talk with me and help me improve my English . beaucse the weather is good . Human beings have four main kinds of desires . These are labeled greed , rivalry , vanity and love of power . I aiso use some frozen meals . I ca n't keep my brance acually I messed up my barance and tumbled off the ball = < We were able to see beautiful beaches , but were also able to see many cargo boats around 3 kilometers offshare as well . in order to kiil time , I might as well browse some boring news on the disccusion forum , but I know it is not the life I want to live . Fotunately , I was not harmed by the earthquake . I ca n't get over just writing such a nusty jounal entry . Fathermore , he waits until I find my cellular phone in my bag . If I were god , I would definitely punish him for his lazyness . But when I started talking , nobody responsed to what I said . So my topic did n't make sence . Therefore I think we have to do somthing to fix nature . ( sounds more natural ) When I hammer neils , it is sooooo noisy ! ! I quit using neils to avoid complaint from neigbers and went to the DIY shop to buy screws . with my doughtr ( A ) Whether the pay is high or low , it is very important to take the most subitable job for you . My question is , if you can tell what will happen in 30 minutes , or if you can read what people are thinking , then what whould you like to do ? My ansewer is perhaps not appropriate for the quastion . I only want a little bit of these abilities because if I can predict everything in the world and others do the same , the place we are living will become so boring and our eagerness for learning will desappear . So I always serch for a native English speaker who is studying Japanese . I always send a message like the one below this sentense when I want to be friends . ~ below , I send a useful sentense ~ fogetting about the irritating hot climate ( temperatures ) . Back to the subjet , I knew him from QQ , then we met on 17th Nov , and then I became his girlfriend . Sakura festival started last week . I would uproad a few pictures I took today . In Japan , we can see a rabit on the moon . So , dipression is hitting our dept . Hellow there . I 'm studying polymer chemstry . One foreign language sounds differnet from another . But it was a contraversial thing ! HPPY HALLOWEEN So I can I provide anime style charactor designs to people from all over the world . They both felt that it was distined then . We learn new words everyday , take classe during summer and winter vacations , reading newspapers and magzines every week . And it seems that we learn too much gramma in school . Because the purpose ( goal ) of learning a language is to comunicate with the others . To learn a forign language , we should try to speak it as more as we can , And in my opinion , a test will push us speaking more and seak better . Europe contries are near each other . I might not be able to recieve pension for about 10 months in the future because I forgot to pay 10 months ' worth of payment . . . However , since most Japanese go to university and start working at about 22 - 24 years old , the Sosical Insurance Agency made a system in which we can hold off the payment until we graduate from school . To be honest , although I like studing English , I do n't think this will help . Maybe , men are more apt in remembering thier ex - girlfriends and comparing a new one with their past girlfriends than women are . So , it would seem , too , that men tend to be romantist more than women who tend to look at reality and securelity . I like hime because he is plugged in . Becides , as a partner in the intern program , we usually come up with a game plan to meet our goals . That 's why it surpirsed me very much that he went for brok on those work , expecially on selling the product . I always wear my hair near my chin and now I have decided to wait and do something diferent . I intoduce the intersting Kobe has many nice caffes . And I really like to play footbal . Today , the weather was fair untill noon . I was able to hold the alumni reunion of Seoul Pyeongwha elenmentary School for all graduates at the playground of my school on February 5 , 2008 at 6 PM . And these days I 'm trying to convert my Korean version mini hompage into an English version one so that foreigners can stop by my homepage . This event is hold once every three years in Yokohama city . I went to it three years ago . Back then , the artist was also young , and thear creaption had a wild imagination . Thank you for reading my dialy . I wooke up so late because I wantched a film called ' NANA ' until the early hours of the morning . The continuatio of the film ( NANA 2 ) has been published . However , the formar one is excellent ! I hope everythiing will be fine ! so , we were hanging out till night , so l my lesg hurt from all that walking . Her 's parents were very temder / nice when I visited their home . I drank a lot of alchole last night . Last tuesday , I wento to an `` English canversation bar `` on my way home . I could see onlly regular custmers at first , but welcome to Taiwen . Japan wo n't be able to keep up with the American economy forever . ( We thought that `` someday we will get alead of America `` until 1995 . ) Sometimes the American government has congerences with aliens in secret . American tornades are also American size . ( Sometimes tornades appear in Japan , but most tornades are generally small . When we first see American tornades on TV , we are surprised at how big they are . ) Why do n't you listenning the song ? ? colums of the newspaper . recentry I 've mostly been going to the library to study English ! I like working at restaurants except my shirt , pants and hair / hait [ ? ] smell of oil after work . It smells delicious , but I need to take a shower ater working at the restaurant . Afterward , I watched Ryoma - den , which is a Japanese histry drama starring Mr . The following URL is my pronuciation prctice reading the same sentences as # 1 . but my favorist group is Placebo . I hope that you 'll understend my text ) ) A MacDonald 's humburger is also 105 yen ! So cheap sushi and a humburger are the same price . Hello , Lng - 8 friends ! But I ca n't decied the colour . Through that time I had worked as a soccor player at my elementery I must be behined the times . In my opinion , every student is studying the same topics in high school , but we have more spare time in colldge , so , many of the other students Firstly , we can make friends . Friends will help you when you are in trouble . Secondly , we can do what we love . For example , playing guitta , First , I like to travel abload and most of the countries I want to visit are English speaking countries . I ordered ' Oroshi Tenpura Udon ' which was cold udon with tenpura and grated Japanese radish . To tell more in detail , each noodle was chewy , and soup was n't too concentrated , and tenpura taste matched to noodle and soup . Now they are pretty and green . I think your contry is also pretty and green since it is spring . I need to buy something special for her to congraturate her birthday , but I do not know what to give her . There are many visiter from foreign countries and workers , too . So I started to learn Englsih . The Futenma American miritary base , corruption of many politicians and so on . Then I find myself being into new services and gadges and think like this : I can drow and I think that it can help me . When I was yotung I liked colas , sodas and sweet drinks . When someone kndly correct my text , I feel happy . Usually , we congraturate on special days like a birthday , St . However , I like congraturate on ordinary day . If I congraturate on normal days , I can get a small reward confidentially . However the differnets between this book and other traditonal English word books is that it tells you how to use the root of words to remember words . I looksed for sports weare in there . Possibly , that post may leave the impressione that I want to bring attention to myself or hear some praise . I 'm nervous taht I can talk well . I wnat many users to edit my writing . Models who are always under much pressure to lose weight should have pyschological mentors who can give them real advice . This system can be preperation for students with specific areas of study that they are going to choose in ther future . If they become Sekitori , a sumo wresler of the rank of Juryu or above , they can get at least a 12000000 / year salary , but if their status is lowet than sekitori , they only get 1000000 / year . In order to keep Sekitori , they must win at least 8 bouts out of 15 bouts in a tounament . They have 6 tounaments a year . In my opinion , the red roses and chiks do not match . I did n't think that the chick was qute or pretty , also I never wanted to touch it , but it looked like cotton candy . She knows how to teach , and how to insipre the students to speak out . They are Japanase singers . When I wathed The World Cup , I was impressed by his play ! Hellow ! ! ! Anyway , I recieve a pepero from my boyfriend . It was not costy , just 700yen per adult . ( without optional services ) Allmost every town in Japan have this kind of bathhouse . It is just 4 degrees Celsium . I hope that tomorrow will be nicier and I could go play basketball or something else . This means I will choose a college and decide my futrue job . I learnd how to use the word `` rain `` in junior high school as follows ; - Bullets came rainig down . If succeed , I could apply for a full scholarship from NUS so that I do n't need the financial aid from my parents coz the overall tuition fee each year is a little of a burdon to them . `` I talked to the fragile girl beaten by tension , `` Now you 've nothing but courage and diligency , DON ' T LET ME DOWN ! `` So I have been thinking people from the east coast pronouce the T . On the other hand , others pronouce it `` b - I - hind `` . Tooday I want to tell you about `` Buttery Thursday `` or `` Pancake Day . `` At a certain time of year , we have Buttery Thursday when everyone eats donats as many as he wants ( see the pic above ) . Although we normally eat two donats , one of my coworkers has eaten 14 doughnuts today . How shoud I deal with it because I do n't like to drink ? For example , they carried our baggage all the time , they opened any doors for us , and they surved food to our plates at restaurants while we were eating . Is that because Hong HongKong was colonized by England for a long time ? Oriental and Western cultures are mixed together in HongKong Kong 's multicultural society . One was working for a restrant . I have worked there sinse I entered the university . Before the wedding in my own country , the bride and groom ca n't see each other until the wedding day because the bride is busy with her `` Hana Day `` . Becaus it 's been raining for 5 weeks , I 've been playing soccer in the rain . Landmark tower , consert halls , harbor , foreign residences , a big shopping mall and so on . That 's why today 's short trip to Yokohama felt a little bit heay . I 'm lookong forward to tomorrow . I like the sound of the guiter as well as the ukulele yery much . On my last journal entry , a friend of mine told me about a Hawai podcast . While I was browsing the site and listening to the podcast , I felt like listening to Hawaish - ish music . Speaking of Hawai , I think of the ukulele . Actually , I play the guiter , too . Although I 'm still not very good at it , I always enjoy playing the guiter and singing out loud ! Please teach me aoounting ^ ^ I think it is a very beatiful country . I feel that I 've wasted so much time trying to show what a smart and cool guy I was , that when it 's time to graduate , I find that neither my spcial view on physics nor my acting ( ? ) can help with my job hunting , which is the real - life . There are at least 3 choices I could choose . But I do n't think more choices or more chances would economically mean much ( ? ) . Whichever choice I ultimately make , the cost will ber huge . My roomate has been focusing on only one thing - - succeeding in Java at the job fair . She ate five and she said , `` Papa , let 's go to spleep . I am accostomed to work . This word is very familier to me . `` I supporse . `` Okan , I 'm hugry ! ( < - - - This word really looks childish ; ; ) `` I am larghing now that I have remembered these scine . . . : - ) I am altogather like their moms ! Anyway , I am really worried about the people who suffered from the earthquake and the Tunami in the Tohoku area . I am very embarrassed by my weak avility . He added that he would just sit back and drink beer on a smoll island , sometimes catch fish on the beautiful crystal - clear ocean . And I love cold wheather ! And then , I found a small advertisment in the newspaper . I have had experience only in desk work and as a clark of a pet shop . Today is me with my two cute collegue 's dating , It gives bery good income . But I have had no responce yet . Lying sleeplessly on my bed , I thought that we should n't just say yes to everthing we encounter . Her Hoiku - en ( nursely school ? ) class is helding a field trip today . It 's just an attemptation to determine whether I can finish a website made in Flash . acturally , things have been OK . Well , it 's such a simple website that you can not even contack me here . I wanna recommend the American drama ' Glee ' . Please corect my writing . . . It 's healthly . basicly I do not have much time to do things totally unrelated to my english test such as dancing , but I just love it so much . In the begainning I studied dancing just for lose losing weight . If I go to the gym , there are not much choicese for me - running , yoga or some muscle fitness enquipment . my body is more powerfull and flexible now , but it is not good enough . My mother language is Korean ; which the order is totally upside down , copared with English . My refrigerator still works , but I bought new one because the electric bill is too expensibe . Even though the wheather was n't good , it was rainy , I would love someone to correct my writting . Of course I can heplp you with Japanese if you want . Feel free to cantact me if you are interested in me and want to have fun . So you absolutly ca n't go to an internet ber and get on the internet . Do n't worry , you will be able to at a hotle or your friend 's home , Do some foreign people think that invting a girl to a boy 's home in the early period of their relationship is normal for understanding each other deeply ? On the contrary , in my opinion , Japanese tend to view it as an official date for introducing familly members or a greeting in anticipation of marriage . Two men were clibming the winter moutain . English performance test . ( My First Impression of Anyang gials ' High School . ) While I distributed the fliers , one of the people that I handed a flier to read it and said `` I am going to get a mussage , do you want to go with me ? `` So , many teenagers , including me , were very sad and some of them followed him and committed suicided . Since Lang - 8 uses the HTTP user - agent of each device to choose the appropreate page template , mobile devices that are not on our `` white list `` will show Lang - 8 for PC . We have an alternative option for thoes Cookie - disabled mobiles to use Lang - 8 without Cookie - based sessions . My favorites are professional worker 's strories , mysteries , fairy tales , science fiction , historical fictions and so on . Thank you so much for ur patience to read it until the end . After May 3rd , we usually retvert the prince and princess dolls like the picture above . I make it a rule to read Enlish books at Starbucks near my condo every Saturday morning . Recently , when I try writing this , I allways get sleepy . But I have not received the item yet due to lack of stockout . Last night , I walkde to the park near my company with my partner after dinner . There were many people in the park , such as young boys , young girls , old wumen , old men and many lovely children . Some young boys were playing barsketball , some young girls were listening morden songs and many of the old women were dancing . Becouse I could n't go to work . This poster was announced for Gunma prefectere . When I whatched the poster , my neevoue went away . I aways get up at 8 o ' clock , and leave home at half past eight . It is much better than Japanese one , because every cage is much bigger than the Japanese one so that every animal looks good , and we can see their natural movings a lot . When I think about relationships , I am relly awkword at this age . We went to a public photo garally . My son also enjoied himself . but , as time waits for no one , then could you wait for me in the futher ? youbube seems to be forbidden again in China it seems that a lot of people have the same problem , and not because it is a network problem , it is poltical problem . The Exhausted travelar . One night , two travelar were walking down the road . Today I went to a English club becouse I want to learn english . My youngest daugther has had a practical period in Spain . For exemple , beach volleyball , arobic in the swimming pool , dancing with the childeren and so much more . These coments hit my heart deaply . They do not value thi time . We can learn what we love and learn about morden society . Don ` t be on a omputer all the time . I have a train passport case which have used since I was a junir high - school student . Acording to what the man at the used furniture store said , there was nothing worth buying among my belongings . Many people buy and sell `` douzinshi `` ( = fan books ) about Japanese `` anime `` , `` manga `` and other characters . In this summer , the best selling `` douzinshi `` genre was `` Madoka - Magica : the magic girls `` , I think . Twitter , Facebook , Lang - 8 . . . I 'm happy to meen a lot of nice and kind people . ^ _ ^ Because I dont n't understand how to use vocaburary and grammer . For exsample , allow and permit have the same meaning in Japanese . I do n't know how to use allow and permit in a stiation . I like to dirink red wine and beer , and so do my friends . But still I like to go out with my collegues or my friend to a bar . I really want to know how other peple get along with their lovers who have differnt who has habits or thoughts . I 'm gratuating from college teacher theachre teacher : D speaking cass I could n't complete everthing , because I did n't have enoufh time Today it was a natonal holiday in Japan . I am carzy about DIY these days . It 's my first dialy on the Lang - 8 ! Still I do n't know what will happen after updating dialy . But I 'm excited to connect with someone and support each others improvement in not only language butin cultural deffrencese Today , I watched two animes . I watched A wisper of the Heart and A Mononoke Princess by Hayao Miyazaki all day at home for the first time in a long time . I especially like wisper of The Heart , out of the many movies that he created . but usualy we ca n't see their shows very often in Japan . ( My teacher told me to read a script , this is a sence in the play ) I live in Japnan . The summer seminor at my juku school starts today . Two main popular acters spoken English never sounded fast . My grandpa was a windower since he was young . I am sure I want to learn . I borrow a course book from the library but I easly get discouraged as t learning foriegn languages is a hard and tough challenge . I always want to achieve the expexted result , and I try to do it . I do n't kown when he will see my request . If you can see this diary please help me find some gammar errors or other mistakes . I am learing English and like Japanese , if you are Japanese I am also very gald to be friends with you . One day my doughter said to me . In Yesterdat 's class , I learned the word , `` guinea pig . `` I could n't understand what se said . Unfortunately I 'm not in charge of the assignment , so I did n't know what was going on between my boss and the cliant . The autor believes that . . . . In the above passage , the author believes that eating fast food causes chidren to become overweight . I 'm sorry to say this , but the weather forcast says that the next day is going to be rainy , too . It 's aleady the 5th ! Todday , I held a takoyaki party at my house . Traval to Mexico I reserved a hotel room and booked air tickets on the interent . I want to enjoy snorkelling in the Carribian Sea . A Diddicult Sentence Look at photo 1 , the handbags were mading by hand . The TV said , the chance of rainny is 20 % . The native speakes are talking very quickly so I have to listen 5 or 6 times to understand what they are talking about but it is interesting . Do you have any recomendations ? I talked with 2 naitives speakers in English at the camp last weekend . She is a friend of the English Speaking Society membar . Recentry I have been very busy . . There were a lot of peple who came from abroad there . I haveto make an effort to study Englisha more ! One day , one of my friedns said , `` Actually , I do n't understand what other Japanese students say in English , but your English is really good . `` The meeting was suposed to be held yesterdar afternoon hi , everybady thanks for eveyone who revisoed my compositions . . . My homegrown vegies . Well , this is not my first attempt at growing homegrown organic vegies . I grew some good homegrown organic vegies . Now I know that it 's really difficult to make homegrown organic vegies . A - bobm Memorial Dome is near the Peace Memorial Park . I would appriciate it if you gorrected it . I ca n't express my thoughts clearly , but I trust that I will speak fruently in the near future . Actually , all of the classes were in English , because the teacher was a foriegner . I did n't have much mony but I wanted to buy new furniture . I am not good at speaking , writting , or lithening to English . I 'm developping new materials for energy devices such as batteies and capacitors . According to the news , recently , there have been situations where separatists uesd sharp objects to attack residents in Xinjiang , China . In summer I usualy go for a walk with my friends , read books , many practise music and travel all over Moscow . It ` s a very beatiful manor which is erected by Bajenov and Kazakov in honor of Ekaterina the II ! So recently I 've started faining weight . I decided to eat to helthy food , to eat less and to exercise . I 'm boared to death ! ! I dowloaded of theses from authoritative periodical databases . `` You will pass through a dark tunnel ; meawhile , you feel helpless , scared , distressed , and feeling negative . Then they become two best frinds again . Taday is It has been getting cold recentry . First , the financial section is essencial for running a company It was greate . The Lion Dance is a very popular dance during New Year 's celebration in Chaina . Anyway , she follwed me today . Japanse and logic the first , I had extended my visa for August , but I hav n't got it untill now . . . . How do you thik ? Unfortunately American Football is not popular in Japan partly bacause the rules are too compicated for people . Mainly , bacause the players are not very famous in Japan . As everyone knows the popular sports have many funs , especially children . Basketball is also not a pupular sport . I heard that flag football would be treaded ( ? ) as a culiculam at the elementary school . but the forecast is sait that the rainy weather will continue for several days . . . Rakugo is traditional comic strorytelling . Tiger and Drago was made by Kudo Kankuro . They were over my sholder in height . However , the tempeture of water was cold . Now , I have an aversion to writing correct grammer , but I can read and write in English a little . It 's difficult but I like to exchange letters and convers in English ! By the way , is it possible to send an email containing pictgrams to a foreign country ? Our electricity will be powered dowm at 11 . I did not know what was happning . We have had dogs , cats , ducks , parrots , hens and chickens , hamsters , fish , an iguane , a turtle and a couple of rabbits ( who had like 10 rabbits ) . Comic caffe I 'm in a comic caffe right now . But , when I think about people who now spend thier life staying in this place , I wonder wtether they 're able to get relxed everyday . It seems to be a controversial issue during a prolonged economic slump even though Japan is considerd to be affluent . I enjoy writting in a journal . Yesterday and this morning , I took the achivement test . : ( You 'll never know wheather I eat something or not . I have to say goodbye to my stomach . ( I 'm not cofident about this expression . ) Secound lesson at Gaba Today , I went to the Gaba Englsh language school . That 's because I am in Thiland now ! ! ! When I have reached home and settele down , I will write about my trip and put up pictures ! ! ! ! ! ! ! I know taht . Yestrday , I had my wisdom teeth pulled out . But I belive that it is what I am meant to do . . I have visited south asia areas , middle eastern areas , India and Europe . . Hanami means looking at trees of cherry blossom in Japanease . Now I severly want to speak out what I think and feel . Today is April 26th , which leads to me being more attentive , because the `` Interpreting Oral Test `` is aroud the corner and I 'm serious about it . If we want to achieve something , there is no doubt that we shoud grasp every possibility to be completely prepared . I have to interpret plenty of materials on the book by myself first , and then I need to corret my interpretation with the help of references for the sake of making more progress . My freind is very beautiful and owns lots of admirers , the same with her boyfreind . But us girls are always more loyal than guys ( ! ) , so she always worries that her boyfriend will fall in love with oher girls . The popping rhythems . . Here is my favorate line from a song called `` Thriller `` by Fall Out Boy : A few days ago , Someone asked me my favorit book . The person asking was a foreigner so I told him my favorit book in English was Catcher in the Rye . Listening to me , he laughted and said ' that is the worst book I have ever read . ' Unfortunately , the people around me did n't really like the book either , but I still think it is really well written . The main character is a boy who makes sarcestic and cynical remarks about almost every person he sees . He points out hypocristy of the people as soon as he catches wind of it . Soon , I 'll go trevel to the east coast of Australia with my two friends . There are some vegitarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabeties . I was told by those peoplpe who have food restrictions that they will chose to eat what they will eat , so any special concideration was not necessary . I am going to prepare some appropriate Japanese cuisine such as vegetarian rolls ( sushi ) , or fride Tofu in the soup . I heard that the Japanese goverment uses the money for the pavements in order to cordinate the money left at the end of the year . And that gives a chance for construction workers to garner exstra work to do . Furthermore , one of the problems with curse words is that these are famous amoung non - native speakes . Nagoya does n't have art , culture , or fasion . I wanna work for an internationary company . . I 'm looking for devices that first of all will be for people with dementia ( big button , simple , long lasting baterry ) . Best regads . . . Tommorow I ( will ) have to wake up about 4 hours earlier than today . Im a univeercity student . I love lerning foreign languages ! and I also studing Korean ^ ^ However , this time I am sattisfied whith the shiny beige I imagined . This is another reasson why I connect `` green `` with `` fresh `` . Do you know why green means `` jelous `` ? If there are some words I do n't know yet , I write those words in my notebook and serch for them in the dictionary after I return home . It does n't matter whether he ( she ) is a foregner or not . Anyway , it is hard for me and I am worred whethr or not it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone whom I can practce a elderly conversation with . I think I am wearing nomal but a little bit flashier clothes that I already have to the party . We have been trying to use English in our seminar recentry . Today , one of them told me that he wanted to plactice more , and I recommended that he use this site . I like gyoza ( a kind of dumpling stuffed with minced pork and vegitables ) . To add on , I had not shured any news about my life for more than ten days . Society is currently imformation - oriented . In an imformation - oriented society , cell - phones are very important things . what shold I say to her ? I heard from someone that Spring can bring faterful encounters . That is that he does n't help me on housewaork . . We often have a quarrel abou it . Alhtough I 'm nearly 20 years old , I need 10 minutes for writing these three sentences . He is my wonderful friend from Canada from Lang - 8 . It 's the frist time In Thailand at the moment , the amount of peple who have H1N1 flu seems to be growing . I hope the goverment can manage it soon . In fact I 'm going to Rimini for a holyday with some other friends in two days ! I like to compose my oun music . Today I bought ice creem . It was introduced to me by my brother in Guangzhou provice , China . I called him this morning to get the infomation about how he studies English and Janpese , and how his job - hunting was going . I thought I was lucky to have a job in northeastern China in internaitonla business , but I need to work more at sudy harder and improving my English so that I can catch up with other competitors . wellcome to my Diary corner . I 'd like it if some native speaker could give me a hand and improve my words and scentences . Barcelona vs Atletico Madrid , an accidennt happened , something that I was afraid of . Scholl start in April in Japan . `` Eat green , red , yellow , purpul vegetables everyday , and drink more than 2 liters of water everyday `` when I have free time , I always goole some words . We went shopping , karaoke , played badminton , walkeked in a nice park , etc . Intoduce myself I 'm a navite speaker of Japanese . It is the DVD of `` Dreams come turu `` a famaous Japanese musician . It was very dificulte I was not planning on going to the party , but I ended up going there becuase my friend kept telling me I should go . I found Lang - 8 , while reading a book when I comute today . Periodically , I saw her in our shop at home , where she sold cosmetics from the stand and suggested to ladies who passed by that they familiarize themselves with an assortiment of cosmetics . Now in the mornings and evenings I try with the speed of light to enter the appartment or an elevator so as to not collide with the neighbor . First of all we got on the bus at our hotel guided by staff who were dressed in costumes like flight attendants with tickets like boading passes . At the entrance some performers welcomed us and there were stalls that served delicious Latin cusines and a stage where Salsa dancing and music were being performed . Especialy in the western and southern regions of Japan , they were not affected by the earthquake as I am sure you know . I should n't have seen that progrem . . Yesterday , Malik plaied a music box by himself for the first time . I went to the tower to see te witch getting burned today . Although it depends on the country , as far as Japan goes , there are some reaasons why we attend college . Space between commas ! My parents took time off and were hanging out at home , and now they have gone to visit my father 's eldder uncle . Il n ' a pas lu cette livre . And recently , I started sutdy Chinese . For example , pandas are viwed as the most valuable animal in China , and there are less than a few hundred of them that are still alive around the world , due to illegal poaching , and man 's ongoing expansion into what were once their habitats . In conclusion , zoos could be phased out one day when humanbeing beings no longer interfere with the balance of the ecosystem . But for now , zoos are still needed in terms of raising public awareness of the significance of preserving animals and lifting the population of endangered animals . One major advanatage of flying by plane is that they are faster than any other means of transport . What is more , it is not recommended to peaople who are afraid of heights or flying . The movie Solt I have the lateset I Pod iPod nano ( 16G ) . It is my favorite because it is very samll and has a good design . The reason I wrote such animpolite thing is because I really wann go to Singapore as soon as possible . I 've only sudied in Sydney , but my real intension is togo to a beautiflu beach or something . I can probablyenjoy Australia ifI can affrod to see everything . Just do it ! The sence there was all smilling . I go to the zym for workout everyday . Spinning bikes are similar to nomal bikes but they are different because you can control the the resistance to make pedalling as easy or difficult as you choose . The reasons that I like this type of exercise is , firtst , that you do n't need much training or practice . Then , I prictised my Listenning English skills by listenning to the New Horizon3 at double pace . Although her luggage was overweighed by 9 . 5KGs , the officer still let us go freely . therefore , I participate in this programn so as to enhance my English . ^ ^ I also hope that I can use my ability to help those netizens who are I still ca n't belive what happen even now . so , we need to cooperate with each togather in order to save some energy . Tomorrow morning , I should go to the police station becouse I ask the police station offcialy about a investigation of the traffic accident . Maybe there is little chance to solv , but I want find out for myself . I 'm a univercity school student now , but I wanna be around foreigners , and travel abroad . Most young people there do n't have any insterests in politics . Generaelly speaking , they do n't even go to poll stations to vote . So stupid Japanese politicians can do what they want to do greedly . Even if they do something wrong , they can win the next election , because mojorities do n't vote at all . Singapreans should leave everything to them . . . . . The company that owns my flat has a presence nationwide , so anyone in Japan except those enjoying contry life can easily find its characteristic striped buildings . All of the rooms they provide are furnished , this type of flat is rare in Japan although I know they are rathar common in some other countries . It is my favorit food from my childhood . So it has become my favorit food since I was a boy . Of cource , you can enjoy eating it without liquor . He said , at his work ( Japanese company ) , he is aften told that he is too self - assertive . I have n't become a menber of that group . I will become a menber . We made a whiche 's hat by using newspaper . I 'm still not a qualified voter , so I coulud n't go today . Sport is not only physically chalenging , but it can also be mentally challenging , criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Have you ever thought about your lifetime ? What you want to be ? I think people have their dreams when they are kids , but how many of their dreams come true ? If you were one of those people who was very successful in their life and your dream came true , it would be great , but if you were n't one of those people , have you been trying to chang it or give up ? Especially after you married and had a family . I am looking for companies who love to study English and teach me commercial English , industiral English , medical English and so on . Of cource , I like to learn German now . Aleady 180 days have passed since my son was born . Sometimes we used to fight because of differnt opinions about taking care of baby . Sometiems we laugh at something diffrent and enjoy that . I watched the movi `` Sex And The City 1 `` last Saturday . It was very fassionable and goreous ! ! I will use a lot of mony . I long for thire life . I want to be a millionair ! ! I played sand voeyball today . It 's been a long time since I 've played sand voeyball . Sand voeyball is very difficut . But it 's a merit of sand voeyball , I think . I played sand voeyball for 2 hours . But it felt shoter . I have recived your letter and know that you failed the last English test . Yesterday , I could n't say `` Happy New Yeat `` to my friend . The octpus was the main dish and I wanted to have it , but I did n't want to have side dishes because it seemed to me taht they were not appetizing . I 'd like to be an international hotel concirge in the future . People attend college or university for many different reasons ( for example , new experiences , career perparation , increased knowledge ) . Why do you think people attend college or university ? Try to answer consciously , I think for allmost students the primary resaon is for their future career . Today is a horiday , but I 'm at the moment working in my company . He surpervised subcontracted work . It takes a long time to soluve the model of simulate models . I have to soluve the model before the deadline . I feld afraid . Sushi is a very populer food in Japan . I 'll use it and make a sentense including the words . Japanese goverment have to assess somewhere to be able to build a building . A pawnshop assesses bags , watches and accecceries which are brought by someone to lend money . When this meeting is held , almost every participants gathere before the meeting and eats a special curry . According to the above , we can agree to the follow reasonings : Of course , I retuened it in the same state . When I speake to a native speaker , I make them feel unpleasant . If people of the future are seeing the current world , they wouldl not be approve of it . I eat so much food that I think that . I waight gain weight . I worry that my stomack will become large . I guess we burn colories inside only by talking while sitting down . Today 's lesson was about solving the problembs . After that , Enrike and I ate lunch together . Today 's lunch was spagety with meat sause . I am also learning spainish because I like the languages and I like Spain and its culture . Now I am having summer holydays so I 'm learning it on internet , but I will take courses in Spanish later this autumn . Staff : Why did you come to Singapore and why did you choose Singapoer to live ? Generally we mix intelligence and knowlegde . But it is someone that is wise and uses his or her wisedom in her or his life in order to live a stable and well balanced life . We always see our chilren play and determine which will be the bright one . Although I could n't understand what they said I enjoyed it visualy . They had mic perfomance , tap - dancing , singing and instruments . I 've chosen to study Japaniese because I 'm fascinated by this country , its culture and its history . I have plans to go to Japan next year so I want to learn Japaniese to be able to comunicate with people . but as you know , most children do homework such as learning english , writing korea and so on everyday . and then explain this situlation to him . I want to lern English , please help me to correct my errors . A mathmatic , sports and music lover and struggling badminton learner . My first daiary on this site By the way , could you tell me wheter or not it is difficult for native English speakers to distingish `` want `` with `` wo n't `` in conversations . I guess many would judge from context as I do with confussing words of Japanese though . I belong to the Sales & Marketing Division , which is especially for distributers and large companies . After this happend , I began to think that perhaps there was something wrong with my social skills I will try to talk and become friends with her , then she might she that I am a firendly person . I went to the gym near my appartment in the morning . After the lesson , I went back to my appartment and had lunch . I had lernt English for about six years until I left school two years ago . Now I am studing at a univeristy , but I chose Russian as my language to learn . I will say , `` Pak , tolong tandatangani kertasnya sekarang , karena saya harus segera dikirimkan ke klien `` . I like this idea so I will continue working there untill I will go to the U . Someday , I want to see the most beautifl sunset in the world . His hause is very big . I climed onto his house 's roof . those are all diffuclt because they are totally different from Mandrin It is probably very difficult for you to move to highr classes , which ever classes you are in now , you most likely want to move to a higher class than others . When I arrived , I forgot to bring my books so I was given dentention by my teacher . Some peach blossoms , rice cakes , and sweeets are put around the tiers with the dolls . Parents wished for thier daughters ' happiness , growth and health . I am going to participate in a tea party celebrating a Girls ' festival tommorrow afternoon with all of my middle - aged lady friends . Englihs is a very hard language . . . Englihs needs more efforts than other languages . . . I bought a magazine , `` Business English , `` a week ago and just starded learning with it . So you should try to reject thier demands . And give your children the chaces to earn money themselves . While I used the computer my sister wach her dress downstairs . When I got home from work this morning , I found a lot of ants marching alont the edge of the floor ! ! ! ! This is the first time I 've visited this site . I am suprise . I surprised that it 's offertory box was so fuge ! It was not like a box but like a garden ! ! second : The reason he is so succesessful is that he works extremely hard . welcome to langu - 8 This is my first time at langu - 8 . I want to improve my English level . I want to make friends from other countries Looking forword to receiving your message . Here is a photo of this anual youth activity in Vietnam . I was changing it because it depended on different causies . But I tryid not to change it too much . Anyway , I think that learning new knowledgies is both very interesting , and helpful for me . I think that the main causies of my lack of success are - laziness , my misallocation of time and tasks , and again laziness . I was at Lotte World which is similer to Disneylandfor work today . When I was walking around Manhattan with my friend , he found a stone - made building like the Pantheon in acient Rome standing between office buildings . A standing board in front of the building indicated that it was a luxury retal building . It had two bedrooms and one guest room and was equipped with excellent furniture , household goods and electeical appliamces . So I feel reflesh ! I studied the contents in detail and looked up all the vocaburies that I have known . . Oh , if you saw the movie , The Fourth kind , you perhaps know this linee from the movie , `` I see an owl staring at me `` IDIONS and WORDS Please teache me . Anyhow , Singapore has been having a serious water problem since ancient times , because this country is a small country , so they ca n't bulid dams . During WW2 , many English soldiers were holded up in Singapore . But I think the Singaporean government wo n't be able to settle this problem unless humanbeings beings develop a technology which can change sea water to clean water . A party is held for a boy by his parents , grandparents , and other family members in hopes of him growing up healthly and strong . We talked a lot on via skype about language , culture , costom , cities and even politics . I wrote a dialy in English for the first time . I have a pain in my sholder . I live in an apartment , but I own a field for vegitables and herbs . I often go to the libraly and borrow books . I think I would hold a party for the whole house , if I were a member of thier family . By the fourth time he is not warned and is shot in the headshot . Thank you for reading my writting , Langages easily become rusty if you do n't use them often . Do you know the Franch sports brand , Decathlon ? I want to go there to buy a pair of climbing pants tommorow . I leve in Tokyo in Japan . Well , that 's life , because we have grown up . We ca n't always live off our partents . We should work hard to make our own and our parents ' lives better , and that is every child 's duty . Beacuse I was scared when I was with the barber . I 'm looking forward to watching the movei . Unfortunately , in japanese this was n't announced by mass media largely because one person who was in an important position did a speech while drunk . The most famouse goya menu is `` Goya Chample `` . The politicians move to their pubilic speaking places by using them . wohooo ! Iraqis shoud revive the country by themselves . Are you planning to go to an amusement park in Koera ? In fact , there is no big difference between these two places . However , if considering trasportation , I would recommend ' Lotte Wolrd ' because it 's very easy to find . You would definitly have no problem finding it . When I ca n't sleep at night , I usually lisen to saxophone music . It was just like the middle of the autunm in my country . Therfore when most Australians thought it was quite cold , at least I didn ' t Morning temperature is totally differnt Nedless to say , I do n't watch the weather forecasting . The class is open every Thrsday evening from 7 : 15 to 8 : 45 and held three stops away from the station near my office . ( but one person seemed to be in cahrge of instraction like a leader ) . we usually have free conversation and group excersise for one and a half hours . Each group is divided by the level of English the people know . The con is that there is very little colletion or feedback of the mistakes we make . We are currently using a customazed program which we made ourselves . However it would be forgetten slowly in my mind as time passes if I do n't use it in my field . The most concerned thing is that a new member , a SAP progamming expert , would be joining us for the new project . You can see mang strange things , like people and buildings that you have never seen . I 'm already 21 years old , but I look yong . . . Unfortunarelly , it is not habitual in my country . They say it 's our menthality . But until it is accepted we can affect change amongst ourselves . He looks so pained with sfuffy noses and sneezing and itchy eyes every day . So I bought groceries that are discribed as effective for pllenosis , `` yogurt `` , `` tea of lemon balm `` , and `` nose cleaning liquid `` . I was unusually very busy last night because there were many studens complaints I need to make a softer exprresion . I would like to prepare for the ' First Certificate in English Examination ' but my writting is not correct , so I must practise and write as much as possible . I am also very happy that I have the opportunity for native speakers to correct my sentences . Thanks for your corrections , they are very useful hhaha ! On this websit , you can meet different people . I think she likes the man , her boyfriend is usually differnt . I saw the awesome nacked bodies clearly and I realized that was a dream . I jumped about 3 metres high but he was faster than my reaktion and he attacked me . I feel a little bit wierd writing this and I could n't come up with a title . By the way , the weather was strange today , because it suddenly began rainig harshly . Actually , it is notthat serious a situasion . Do you belive that sea air is good for health ? Carbon redution make the air on earth be better than before . My dictionary says interrogatin means investigation . I did n't study at all when I was in jounir high school . By the way , most Japanese geeks are very ugly , I guess that most of them have never had a girl friend in thier entier lives . Enjoying nuture Some people put forward an idea that education is betther than punishment , as it can teach people the knowledfe that committing a crime is not a good thing . On the contrary , the people who stand on entirely different grounds think that punishment is a deferrent . Considering both sides of agrum above , I am inclined toward the opinion that education is more effective than punishment . However , he sees an advertisement that a person committed a crime and was taken to prison on telvision . I realy love my grandfather . Last night my boyfriend told me somthing that offended me in the middle of our telephone conversation . It was so nice and I was inpressed with the beautiful traditional culture . The wall was made of brown wood ; it was so nice and homy . I am not famillre with Maiko san , Umfortunatelly , I probably ca n't become a Maiko san because My lengh is 168cm , and I have a tan just like a sufer , haha Kyoto became one of my faborite cities . Foy this , I will study hard to pass the graduate Uni . . . ! This is my favorite mini - photo book . `` Can you play teniss ? `` and `` Do you play teniss ? `` Now I have just finished reading your corrections and comment 5 times , and I can get an enormous impression after konwing evil 's tatics . There was a car on the right , so I steered to the lefe . Why should I go to a defferent prefucture for my class ? No one can give us a clear answer about the effect of long - term low level of radioactive explosure especially for children . Last Saturday my doughter went to the kindergarten entrance ceremony with my wife and me . But my doughter seemed happy . Today she went to kingergarten too . The most importernt was making a special point of ensuring their safety . Afer they took pictures , the teachers allowed them to play in the playground . I slept on my boyfriend 's shoulder and he memolized some Japanese words using my iPhone . I usually eat cheap frozon gyoza and they tasteway different from the restaurant 's . musclar pain I always end up having musclar pain in my legs on Wedensday night . We often say that elder people will get musclar pain after a few days when they use their muscles . Thanks for reading my first daiary ! In school my freinds and I were watching its launch . I really hane these boring days . After I get home , I usually eat dinner and skip taking a shouwer . So , I will go with my family according to the sceduled . We called tuter to reserve the schedule for the experiments . Today I went to a party with my friednd in Shibuya , About forty pepple were there . ( We did n't talk to each other a lot during the party , but I strongly remember what we talked about because I was astonished by her enagy ! ) He is kind of arragant and straightforward in the beginning . His medal was bronze indeed , but I thought that he deserved a golden medal because he must have made a lot of Japanese impressed and encouraged in his comingback . He always cracks some excessive joks that make me sad and uncomfultable . My boyfriend got a good tan , he 's okey but he looks like a person who is from another country . This system is very godd . Youkan is a reward for my laber this week ! Youkan made with adzuki beans , suger and agar . I 'll be glad to help you with your russion or to communicate with you . I love listening to musik , drawing and dancing . I was shoked to hear that . It was only a glance , but it felt like it lasted sooooo long . Maybe the professor spoke so fastly that I could n't catch up and understand in time . The food in the canteen is very cheap , much cheaper than the restuarants outside . I remember that I was nerbous when I moved to this school . Sio I had to say goodbye to some of them every year ( Even though ) I do n't like to say goodbye , I can lear something from the encounters and farewells with my friends . At that time , I thought it was right and in every test and exam I paid much effort in stuying them . I thougth that the right sentence was `` I got a ticket to the auto show . My brother suddnely called me today . I had nothing to do tonigh , so we went to a sushi bar in the Tokyo station . The owner of the bicycle was a boy , and he was watching the hands of the mechanic very eagarly . And I decided to interprete their choice in a positive way , as proof of my popularity or something . I bielive in materialism . . My ex - cowoker is moving to another prefecture because of her marriage . It was a very preasant party . It occured to me that I had been gaven many precious treasures like memories , a familial environment and much more . Her mother is Rossian : ) I could see Tony Kanaan 's onbord camera . I went to a Yakitori restaurant last Suturday with my friend . Yakitori is very popler . Yakitori is fried chikins . Revolving Sushi Reastaurant Do you go to a foriegn language institute ? Of cource , I could n't make a wish . On the other hand , they lied , doubted , killed , destoried , and set off the nuclear bomb . So I will retake my examination and now I 'm waithing for 2010 when sudent can aply to the Japonology department again . Not a day goes by without me lerning more Japanese or We shoud show off our country 's originality and give Japan 's luxuriant culture due esteem . We can prepare a national Russian evening where we could sing our native songs , make zeppelins , translate some ines of our litherature and have a traditional lingual performance . In order to make students know more about it , our school descide to hold this activity . I did n't have any headache medcine . I received some from a fellow woker . I must control myself physically and mentally in order to conplete The Tokyo marathon . Maybe its because I 've been solo for a long time and I 'm lonly . So plese correct my diary . As soon as I went to buy ackechbook and pencil . becouse they [ we ? ] have a costom to send a letter on January 1st . We generally write `` Happy New Year `` and a picture of the twelve signs of the chinesed zodiac in letters . I have thought about drawing Peter rabit for a long time , so this time I was pleased to draw it . I 'm sorry I 'm not able to put pictures on this dialy . On the other acount , I study Korean . So would you please approve this requrest , too ? There 's almost no problem in your japanes sentenses . But it also has some problems such as air pullation and traffic jams everywhere . Hello everubody ! I 'm a Japanese grad student ! The joints arround my waist have started to ache ! I debated for a monent whether it was a good idea or not . I went to the Bon Dance Festival at the Tsukiji Hongan - ji , the buddhism temple in Tokyo , with my friend . englsih 2 . How can I improve my speaking and wrting skills ? I conplaind about my looks to my mother . What is the difference between `` everydat clothes `` and `` casual clothes `` ? What do you feel when you hear `` everydat clothes `` and `` casual clothes `` ? This phrase is very interesting because it envolves many things , I think . Many Secretarys of a politisian can become a politician . Today , I went to an ophthalomology . In particular `` Sendai `` which was ocate near the hypocenter was the most seriously damaged by the `` Earthquake `` and `` Tsunami `` . You can feel yourself getting a srill , when you play it very well . They are helpful for listeners to know the concrete statistics and to understand the contens easily . I am looking foward to staying there . It is cloudy today , but it will be getting warmmer later this week . I ca n't waite for spring to come ! I have to write a buisiness document in English . When I was a child , I seldom had time to play games with my peers , because my parents always aske me to study . We evern quarreled , just like a real family Thinking about my childhood always give me a feeling of nestalgia . What abou your childhood ? Do you have any interesting experiences to share ? this is very incovenient . Finally , I have no idea how to learnig to comprehend . How to releace stress So a little while ago , I went to a convinience store and bought alcohol , sweets , and some snacks . I think drinking and eating is best way to releace stress . And we ca n't seem to recognize that untill a certain period of time has pased . We enjoed the lunch and I had a lot of questions about English to ask her . She tought me really well . Then she asked me to go to the chismust party this week on Saturday at her house , and then I went to study Chinese near where I met Chayway and Wunlay . Composition 0628 , please help me corret it or provide some ideas , thanks ! ! Today , I woke up at 6 : 45 , cooked breakfast and my hasband 's lunch . I was interested in American education coupled Japanese edication . Lask week , my roommate tried to set a WIFI in the home , but he is just like Edison who never gave up , so I just can encourage him and I cant use internet many times , but now he success to set a WIFI in the home , so now I can carry on writing in lang - 8 every day ~ Sometimes I wave my boday if I hear some hign tempo music at home , but I never do that when someone else is around . wtat was the last concert you went to ? I webt to Arashi 's concert 2years ago with a friend . It was held at Tokyo , Kyoto and oter places . I will go to Tront , Canada for 5 weeks in Febluary . For example , our State Univercity was only founded in 1959 and its building is n't beautifull , but rather very simple . Of course this is not important . The knowleges given there is more important and what about it this is strong there ( ? ) . However Tomsk State Univercity 's building is very beautifull . It was founded in the XIX centure . But I prefer to study in our State Univercity ( only I did n't enter there on Oriental department = = = > - _ _ - ) I bought some matirial there for this . Besides that there were more foreigners and I spoke a bit in English while translating what a seller said to women from Germany , but I think my English was afwul : D I majored in tourism mamagent . home , particularly in the country , pepole view that boys always have more I am starting to write a dialy today . I 'm staying hotl with a hot springs ; so , I want you to be refreshed too . Living alone is a good experience to teach you independant . However , when we live alone , we do those things ourselves , which makes us more independant . My vest favorite musician is Nightmare and Shena ringo . Althoug I still make some mistakes , His life is in me . It is like a plant which grows little by little everday . Now , more and more forign have begun to study Chinese . Culture is an portant element of competition in overall national strength . That 's Becase I do a part time job at Pastel . I will go to her concert in February wiht my friend . It was heavy and deep and the acotr was very good . Here are some ideasof on how to develop your social skills . My professor open a forum so we can dicuss the differences of culture between Taiwan and France . The air , the smell , the sscenery , the sound . . . just everything . He taiked a lot , but I only spoke a little Korean peopel live on rice . But , I am on a diat . many many times , my heart gets hurted by those results , but at first , I still keep my dreams in my heart , I protect it , I wont let anyone take it or kill it but its ok , I said before , I will profect my dreams , no one can take it from my hands , today I am stupid , but how about tomorrow ? I will profect my dreams . COME ON ! ! ! I tyied it again and adain , but I could n't get it to work . ( needs a subject ) By the way , resentry I became busy . Tomorrow is Tomb - sweeping Day , so you kown what will I do tomorrow . Dood night . On top of that , I do n't like taking any kind of medicine that has to do with antidiotics . But I want to eant genuine ones . What deferense is ' diligence ' and ' industrious . It 's very good cost and high quariity . It 's very good for Londener 's , every year they have the chance to watch high quarity shows . She said to me ' ' I do n't think about it much . It is just like riding a bycycle . ' ' I had headochu today . Judging from these experiences , I came to the conclusion that the experience to learn foreing languages involves the reorganization of a learner 's personality to some extent . I am looking foward to this new situation My hair is now in good lenght . I wnat to be a lucky guy ! I wnat to win something from the event ! Furthmore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . It was about how to become a stronge woman and pursue your dreams . The doctor said `` It will take 4 ~ 5 months to get haelthy . `` In the conference room , there were much more Japanese students than foreign sudents . After the eazy explanation , the participants had divided into groups . Tere were many kinds of onions that I 've never seen . But around 4 PM , there were storms and thunder and we had a blackout caused by a thunderbult . But the telephone line and the internet connection were not restored untill 9 PM . Because there are many imformations in it and it is very helpful , useful and instructive for us . - Why instructive ? My hobby is watching American doramas like SATC , the OC , CSI , and BONES . `` dramas `` : ) In the bigginig of the year , I went there with my friends . tavel , cva ( conversation volunteer australia ) , wwoof , work . . . I want to make many friends whoes native language is English . One more question , I want to know how the person whoes mother language is English remember new words , on the other hand , how do I improve vocabulary ? What I did in the job was to visit people ` s house and ask them what they think about prime minister Aso , the jury system starting next May in Japan , impression about crimes , and so on . Some people were cooperative with me but others were reluctant to anser my questions . Mothers who live in Kanto aera are not sure if the foods are completely safe for their children . When reading it , I have to focus on the text as twice as much as I normally would , I comprehend , and spot a great amount of details in comparishion with the first time I read this in my mother language . `` If you do n't like it I will help you burn this damn book presonally , but give it a shot `` and that inclined me to try . It was hard at first but I relised that full comprehension of the text ( every single word ) gives you pleasure for reading . It stimulates your imagination to picture wverything in your head and it definitely ( if the book is good ) enchants the reader . I saw people flying a kiteflying in the park here in England . My college is going to start this saterday . and put mp3 oudios in my phone to listen . ( music ) I abologize all my friends here that used to see me comment on LJ pages because I dont have lots of time to browes their updates and see what 's new . . I like to be in touch with my frieds . Have you ever considered that your family is upset when you are absorbed in your own career ? Have you ever noticed that your friends are sorrowful when you only pay close attention to your own affairs ? & nbsp ; Have you ever remerbered that your wife or husband is waiting for dinner , while you just konw handle your power , and forget her or him ? Consequencely , hapiness need n't you decorate , or do anything . Now , after 2 months , I have many friends here . They are very friendlly . To add , we are like a family , we make everything together , and we go to school and study togethe . I usally go to the English Academy from 7 : 00 until 8 : 00 ( pm or am ) . I 'm here to speak Engilsh very well , but now I do n't speak well . . . What sort of presnts did you get ? Becuase there is not enough jobs for younger students . I think most countries havethe sameeconomic prolbem like mine , right ? I idrank in my home town . now , I 'm sleeping in my costomer bed . The fugu is deriiouce but a littel dangerous as food . If the tree of Ume do n't exsit in the other contry , I think it 's good to write it just Ume . I have a quetion , I do n't want that to happen , especially both of them are the positive charactors of the show . It seemd that this summer was the hottest in the past 100 years . I want to go to the beach and swim , swin , swin . I 'm really sorry that I counld n't log into lang8 for awhile . And before that , I will join the business competiton again ! It is the same one that I joined last year . as ever ! lol Yeah , I know that my writing is n't so sophisticated but because I am going to the competiton in Beijing , I have to brush up on my English skills ! Another favorite thing is playing the guitar , eating snacks ( especially chocolate ) , dancing , wathing movies ( dvd ) and so on . I think thay are on the cruise and having fun now . I hope thay enjoy their trip a lot . Anyway , Holloween is just around the corner . They are my tredsure . It is this class for sleeoing . because , this class is a trvial for me . I wiil visit Greece on October . Earlier , I researched Halifax by wiki ; then , it was witten as city , but on another web site was witten there is country side . Of couse , they were the tailender . Although I 'm not their fan , I 'm glad that the efforts of an underdog are finaly bearing fruit . YAKUZA appers in this game , A yakuza man 's tatoo is the dragon , it is the origin of the title . I like Pikatyu the best . But I also like Raityu . Do you know about Raityu ? It is Pikatyu 's older brother ! Nevertheless , it tends to be stressfull since it is not a reliable service , and it isn ` t always on time . I 'm going to t write what happend during the day and what I think about those things . I have the volunteer work for rural communities next week , in which the participantant will live using ecological ways . And I watch CNN news on the Internet ( even thogh I can hardly catch ) . My most favorite cartoon is BERSERK . Unable to use Andriod phone / Ipad to use Lang - 8 ? ! I ca n't help people re - write their artiles / sentences . after few days , I found another thing , I ca n't use an ipad to write correctoin either ! ! At this time , Oita city in Oita PREFECTURE and Fukuoka City in Fukuoka prefeture had high tepmparature , setting a new record . Before starting the games , we were devided into four teams . Thank you for always coreccting my mistakes . I went to the English convrsation club . I felt happeer than useal . Chris invited me to the langage exchange party which he will hold on March 21st . silience is Golden I and my freinds often talk about other friends . We are going to a Restrant . I 've started standard Arabic , but I only want to speak the Algerian dialect , so I 'll pratice it with my father or my family when I go to Algeria . This morning , all the grss and trees in my yard looked so good . I have a soccer class every Friday moring . Maybe because I do n't how to set the perfact mood with my camera and the tripod . Mi piache la cucina italiana . Allora , volligo andare in Italia e mabgiare la vera cucina italiana . Besides , I am awfully curious and willing to learn , so I quite often get absorbed in philosophy , psychology , histoty etc . Then they pray to thier god for a happy new year . but sometimes I prefer to be alone in my room - - I love how peacefull it is ! I listen to songs in English , but I can understand text only with an online translater . . There are no large buldings or roads , and there are no subway stations or tonnels . So the major problem in the area is traffic jams early in the mornig and evening , I mean rush hour . In addition , there are few restrants . If you go to the same resterant often , do you feel bored of that food , since the tast is the same and it 's made by the same chef ? I feel bored of the food I 've been eating , same as my boyfriend . We have an idea to find another resturant . We hope we can find a good resterant with dilicouse food arond our house soon . Thank you for helpping me with my English . I think that it is a very interesting , intelligent , and wonderful countre . In the future I will visit London , Oxford , and Kembridge . We can not choose what heppen to us , but we can choose our attitude towards each thing . I think it 's no problem to you who are graduated from the famouse university and have so many working experiencies . The next is to search for an appropriare job which can satisefied to you . I was in Karaok for 11 . 5 hours yesterday . . . . I went to Karaok with my friends yesterday ~ For my classes are canceled due to the flu ~ Everyone was free during the same time and the Karaok called Jankara is 50 % off these two weeks ~ So we got up early and began our nice day ~ After that we went to Karako for about four hours ~ We sang many songs in different languages , oh ~ I forgot to say that my friends are from Japan , Thailand , Korea and Russia ~ For this reason I was able to listen to a lot of amazing songs that I 've never heard before ~ Especially since I found Korean very cool language ~ it sounds amazing ~ Maybe I will learn Korean some day ? ? ? ? ~ hahaha After Karaok with my friends from university ~ I went out on my first DATE with my dear MARIKO ~ hahaha ~ She is the chief of restrurant where I worked part - time for a very short time ~ She is like my older sisiter . actully she is only one year older than I am ~ also a very congenial colleague while working ~ I have learned much from her ~ I really , really feel very lucky to have met such a nice friend in Japan ~ We also took PILI for nice keepsakes ~ We ate SUSHI for dinner then I went to Karaok again with Mariko ~ This time we paid for 7 . 5 hours at first . . - - Inculding `` free - time `` ( From 10pm to 5am all you can sing ) . . . It was the longest time in Karaok for me . . . How can I spent 11 . 5 hours on Karaok in one day which only has 24 hours . . . . I want to study ocne again . It was beyond my abilityT . I 'm just enjoyning the sounds but not the words . ple give me some advise . hi ^ ^ japense friend . . I 'm researting an education market . . would you give me some infomation . . The Showshank Redemption I saw `` The Showshank Redemption `` . I Especialy like the movie 's last scene . It is very impressive . Anyway , I think korea people love to sing . Finalle , I will talk about the political aspects of sports a little bit . I tought it recently . Maldive has recentry become popular for honeymooners . The sky and sea are absolutely blue and sooo beautiful ! I think Japanese fook is the best for teenagers ' health , because it is nutritionally well - balanced . It is considered to be good for our health , and is used for many eishes . I want to make an america friend . A Jaapnese friend of mine called me this morning , almost crying . I wil try my best ! ! ! I was plannning to study mathmatics and to write an essay . But I quit and just studied English today . This is my first daily dialy on Lang - 8 . ctually I want to comunicate with foreign people by myself . I have to keep sududying English ! careere as a drummer . parctice every day in order to be a good musician . I do n't play like I used to , but I alwyas In the summer I , as well as many American and Russian teenagers carned some money . Osaka ( in Japan ) was cilly yesterday . But my old coweker said , `` Today is hot . `` Intercltural com . Every Tuesday , I join a class called ' intercltural Communication . ' I went a restaurunt with my friends forbreakfast . So , we decided to go to a restaurunt to eat breakfast . We arrived at the restaurunt after few minutes . Whan I was 12 years old , I started to like him . I want to be Ecxellent at English . The wierd [ ] atmosphere { ? } of the lab one in I wich I can find a [ ] clearer answer in the future study said the speaker , `` what is it that makes you prefessional proud to be a forester ? `` and , through [ ] good management , [ ] each tree in this forestr will cost only I studied about hundreds of words and some basic grammers today . At that time , I was 17 yearls old , not too young . Now I want to visite once again . This is a traditional / historical Japanese spa and the dress code is to wear a Yukata , which is rentaled by the spa . It 's important that peopel know the truth , about other peoples feelings , and trying to understand it . I want to buy a redrigerator . I also love lerning about differences in culture between my country and other countries . But stil , I ca n't believe this situation . my hasband has gone Yesterday my hasband went back to Tokyo . We give thanks to all labors . I live in Shanxi province , which is locat in northweast China . There was a big eruption column and sulfur dieoxide at the volcano . Love sometimes meeans bearing and understanding each other . Colin Firth 's films make me forget about the fear of the erthquake . But I like his moveis like Bridget Jones 's Diary and Love acutually . And suddenly I wnated to see Colin 's previous films . So I borrowed ' A single man ' from a DVD lental shop . It was shoking to me . In the film , the use of colors are very beatiful . I love the scene that Geoege changes his sight at the end , even if it 's not for eternity . I really looked foword to seeing it again . Because that day there was an erthquake But many peope are still missing . When I saw A single man , I thought it was just ficusion . There are still a lot of aftershocks , tunami , 20000 people missing and a fear of radioactivity . . . This time my impression of the film was totally diffirent from the first time I watched it . This time , I did n't feel shympacy . I did n't want to live in tha panic and nightmare any more . I had to look at his desapair objectively . Because now it 's not ficusion . It became an unforgetabble film for me . And I will also remember now I see tha world very beautiful like him . I used to study the pafoeming arts in ( my ) university . I 'd like to learn bestiful English It takes around 30 minits by train from Nagoya station . INUYAMA CATSLE > Nobunaga Oda was one of the most famous warriers in Japan . Both warriers are also very famous in Japan . We can see 13 floats which mounts pappet at Inuyama Matsuri . The floats are important national proparties . The pappets on the floats are called Karakuri Ningyo They is similar to Marionets . The difference between Karakuri Ningyo and Marionets is I am a student and want to learn ingles . I enjoyed talkiing . The price of poteto chips has increased little by little . I 'm studing English TOEIC Test which will be held in the end of this month . My weakness is Reading , especially Part - 5 ( grammer ) and Part - 7 ( long sentence ) . unwanted pregnance and spread disease . However , today follwed the same routine . Actually , I have been working part - time fot it . When we almost finised our meal , I asked him if I could touch his hands . This is how I broke my new year 's resoutioin wihtin a week . Too slepy to write Yes , I took many picturs but now I can ` t do anymore . but I have witten about this medicine before . Today 's topic is comparatively easy to write about so it took me 37 minutes to compelete . The aftershock has faded out but another ploblem is coming . This plant sends electric power to large areas icluding Tokyo everyday . Because of this , Tokyo electric company and the gaverment desided to share the power to not blackout all of the areas suddenly . Actually , it 's not very hard to listen to English which dubbers or acters speak because they are professionals who speak English , so their English is very clear . However , Canadian people , excluding dubbers or acters , speak English in a casual manner , so their English is very fast , ambiguous , and changes sounds . For example , `` What are you talking about ? ? `` sounds like `` Whada ya talkin bou ? ? `` . Ashita ha ichi nichi juu , koko ni ha narimasen . Watashi ha Scout no atsumari ga aru masu . It came out a few months ago , and it 's based on a ture story . The story is about a bride who has only a year to live because of brest cancer . So I do n't know the whole story but there was a phrase that the bride said during the moive . That pharse just shocked me for some reason . So I thought I should be more thankful to be alive even though there are so many things that upset and frasturates me . But still , there are a lot more chances to make my life more meaningful and enjyable on my own . Recently , I wonder how learners are able to aquire listening skills in English . The foundation conceals my scrach completely . I watched animetion during break time . In the animetion , many - characters have same eyes . A report which would take less than two minutes would take me more than 45 munites to finish . listening to the standard VOA will be a peice of cake . Lately , I 've come across a lot of articles and videos concerning harmful ingredients in shampoos , saops and other scin care products ( such as parabens , sodium lauryl sulfate and many more ) . My resisitance to using English has decreased than yesterday . He had a skelton body , so I thought he was god of death ! Harry Potter and The Order of The Fenix is the fifth instalment based on a fantasy - adventure , same titled book by J . Acting is resonably powerful , but it may get better in subsequent instalments . Even thouhg now I try to read as many kinds of articles as I can , I should try more . This is my farst diary on this site Today , I was bored because I did n't have anything to do and felt strangley dull all day to study something , so I wasted my time today . Hello , my wonderful friend , it 's a bit cold arond Bangkok again today . Happy Haloween costume contest ! ! ! Our private English School held the Party near public holl . One of them became KAIBUTU - KUN , which is japanese anime caracter witten by FUZIKO - FUGIO He put on yellow shirts and red and blue hat and chech pants . I was interesting and amazing / amesing ! ! I like to enjoy it and imagine that I 'm the licky girl who is loved by the handsome boy Oh , reading comic books is the best thing in the world . this shop is a chinese noogle store . I think they fit in the atomosphere of anime well . Joe is a handsome boy , living in New York , who loves Japan and really watnts to get marryied to a Japanese girl . But now Jpan is in its rainy season . By the way , I 'm going to Bali island this fryday . I hope that when comany begins to recruit new members , he can tell me about the job opportunity . I am a computer programmer who uses Java language to develop programs . I mainly make websites . These days we are relatively free , becuase the project are almost complete . So I use my free time to learn English especially comprehension . First , I draw an outline of a face then the eyes ( the eyes are my faborite part ) . After I finish my works , I 'm surpried at the time that I have spent drawing . I was very surpeised that her Japanese skills have improved tremendously . Because they are scared of misstakes . The biggest difference and perhaps most interesting new feature is called `` focusing attack `` This is the new system used in stereet fither IV and is awsome . It is just a simple way to attack but can charge and depending on how much you charge , you can break the oppornent 's guard and make them vulnerable for several seconds . So it gives you big chance to reverse the situation by giveing them with massive combos ! ! Theseday days , it is VERY clear and fine . He was intervired in English , his English was good ! Its good for my English studies , and we talked a lot about ourselve to each other . I particularly like Michael Jackson and Luther vandorrs . But thier songs are very difficault to sing . It 's soooooooo cold too ! ! > < so the streets are very sonw . I want to improve my eglish . . . . . Yesterday ( February 3rd ) is `` Setubun `` in Japan . Setubun is Japanese traditional culture . - Oniwa soto Fukuwa uti . - During the 7 hours journy , I felt lonly , when we arrived at wanjiang station , it was nearly 8pm . I think that it is difficult to commnicate with someone in english . Today , I went to studiam called Saitama Stadium 2002 and watch some soccer game . This game was very inqredible and it was very amazing . Because , they are passing very fast and thier driibleing skills are so great . Last , I saw Thailand vs Saga and it was 0 - 0 so it turn to PK ( penarity kick ) and Thailand won . Today , was realy hot but , I am proud that I could watch the game . I do n't konw why I got up at this time . I think the answer is VANIT . Today my freinds and I went to the forest . I have had a stomachach since 2 weeks ago . Thay did some tricks . ( ? ) The Skateboad hit my leg . My favorite phraze What is your favorite phraze or words ? It is the latest mogel . Technology is wonderfu ! The first time I took a niddle in hand was when a was seven years old . Now I can sew almost everything except men 's coats , becouse I have n't even tried to do that yet . In the first foto there is a denim jacket that I made for my husband . In the second foto there is a handbag that I made for my mother . I have been member of Lang - 8 since the beggining of May . Honestly , I haven ` t tought that the corrections would be useful for my study . Depending on the topc , I often consult dictionaries . My voice was hoarse all day long , and our costmers could n't hear my voice . I went out on business this afternoon to deliver some tickets to our costmer . which is made of wheat flour and contains some vegitable , cheese , beef , pork , egg , and so on . Congraduration me ! ! My previous PC was soaked by water , resulting with some ( * unresponsing ) keys . I 'm very soory I had a cold . The inportance of English toefl ibt writing begineer 's essay ( guestion ) Use specific reasons and exaples to support your answear . ( my opinion ) please cheak . So I had no ploblem communicating . I 'd like to recomend going to Korea . Untill now , I have watched this movie three times . Even though a Product is of good quality , it is nessary for it to beadvertised . I have a habbit that observing ( watching ) advertisements which introduce the function of the product and how to use it . I remember that my tellphone was broken , a few days ago . The saleman introduced me to a lot of brands , but I was puzzled about the brands . So I think it is nessary to advertise . But , I 've suddenly falln to the bottom . . . Pushups on th toes for 30 repeats because I lik foreign musicians , so I want to understand what they Also , English skills are necesarry to communicate in the world . It 's important in bussiness and other things . I 'm lolking foreward to learning it . My favorite wretler uses Spanish . I often use this tool , but I also use the ordinally text editor . We like `` The very hungry caterpillar `` , writen by Eric Carle . Now I am studing in Saint - Petersburg . At first it was difficul to live in a big city for me . I am studing in Pedagogical colledge . Twenty years ago , the Japaese volleyball team was very weak . I hope my favorite sport , valleyball will be loved by every Japanese again . It is Especialy so for lunch time menus . Mitsubo ( Pig - Yakirori ) is cheap and traditional . Kuri ( Japanese Sake Bar ) is small and exellent . Last week , I had the flu and a fevor for 4 days . And I think I 'm going to study abroad during spring vacation ( Febrary or March ) . Some say he was an actor sponsered by a samurai and that he was painting as a part - time job ! I should be more carefull when I choose meat ! As people say - a new stard is the beginning of success The new year is comming . Taiwanese people are always open to people from all over the world , so travelers can feel the Taiwanese eenthusiasm very much . I do n't remember what made me decide in the end ; why I choose engineeringor what I was thiking about . Hally Potter ! ! Last Friday I went to watch Hally Potter , a new movie , with my mother in the theater . So , Hally Potter was very interesting ! ! Although I watch the Hally Potter movies , I have never read the books . Do you thihk I should try to read the books ? Next , we had a lunch at an organic resutorant . I can curl my haie well , but when I first tried it my hair was hilarious . which , if sudents who attend it at last pass it , will get them the highest scholarship of our college , but they must be in the meeting room at 8am . also got pletty of practice in society . I rememeber t I was disappointed with my host father in England when I heard this question . I realy felt no one in the world cared about my country at that time . I really loved th photo where you wore your hair in a bun / ponytail . After that , I developped the system using mobile phones . I am a little sensative Therea are a variety of sad and lonely characters mind . Nothing too special , but I 'm tryng write in English about my life ! It 's my first time doing this kind of job , so I 'm really nervouse about it . I 'm afriend my customers wo n't understand my explanations or introductions . The first sentence is quite akward to me because there are no such forms in my lanauge . Holle , everyone . But this was beacuse I was a student . I learned English for school exams . Beacuse I was not learning English for myself , I have bad skills in English . I think that Englis is a tool . I can use it to search for much information that I want . I like cherry Cherryblossom . They look like other kinds of tree except in spering . This party is sponsored by the English conversation shcool that I go to . About 70 people including twenty foreigher will take part in the party , But I 'm not used to talking with foreiners , and also my English is poor . I 'm looking forward to the party , but I have a little uneasiness about if I can communicate with foreiners well . I hope to make friends with foreigher in the party . I wish I could abondon this work and go to the sea right now . : ( This proposal is quite controvercial . People against the law went on stiked . This is because the number of elderly people is much bigger than yanger people . I thought it was ture . This is the grilled pork with spicy sauce and garlic and kimchi ( korean picle ) and lettuce . Finally I returned home at 10 : 00pm , and I had an egg and ticken on rice for dinner . Ths virus will hijack your personal data , which is stored in your Iphone , if you open the text message . I beleive one thing : exchanges can be implemented in only a situation where both things exchanged have the same value At that time , I could n't explain my oppinion well so . . . Your relathionship with someone will continue as long as you notice it . Perhaps some want to ask me why I worried about my relationship with my girlfriend as I wrote several days ago here even though I beleive this . But it 's been chageable these days , which makes me uncomfortable . . . I must confess that I am gay , and I keep this a secret , because I do not wanna show my pravite life to any body . I can say nothing , because it 's theie lives , and none of my business . And I hope they have the same feeling towards me : `` do n't borther me anymore ! `` The first time I found English to be very interesting was when I had the chance to chat wiht a foreigner . There are correct sentense which are not generally . used so I hesitate to correct . There are incorrect sentense whose original meaning I ca n't understand . I paid money for my English lesson , so I 'd like to take a lesson with puncturallly teacher . It was very beutiful and fantastic . Today I went to the travelling health center . becouse it is required at school . As I said above in the title , I fianlly got a job = ) But the surprise is I am not going to work in Korea , I am leaving for Vietnam next month to work there . Today , I was sent to the hospital by ambalance . According to my doctor 's report , it was because of tirement . We need to have a big smile everyday , and enjor our life . Nonetheless , after the Muji Revolution ( Restoration ) , Japan grew as one of the developed countries in the world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glamor ( glory ) in the Muji Era when Japan was the king of Asia . The landlord ' son is very close to us bcos we are the same age . We had to do something in the room , so we staied in our room for 1 hour . His advice makes me remember various things : consideration , cooperation , frendship and dreams . My boyfriend lives alone near univesity . They are athors of several book , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'm climbing the mountine becasue [ / BLUE ] the mountine is there . . . I do n't know why I go there . Well , there is one reason to climb up to the sumit . . Then , Today I went to mountaine in order to recharge my will and clear my head . I am not sure if it is a good idea to start by remerbering words . I cant belive that till now . Yesterday , I went shopping Harajuku ( Tokyo ) . Today is Coming - Of - Age - Day which honors young peple who have reached the age of 20 and become new menbers of society . This day , for meny peple , is a public holiday in Japan . On Friday night , I go out drinking with my friends or change my gel - jelnails or watch a DVD at home , etc . . One is about phychology . I have nothing to do in my native sity so I 'm trying to learn Italian and Japaneese . what I wish most of all is starbucks coffe . . Tere is a big festival in my home town now . There was a very strang smell that it was impossible to breathe . I had prepared for a whole week and I failed my test due to my headache , nervesniss and awfull mood ! At the 2006 GP final right before the Trino Olympics , she was able to perform triple axel jumps perfectly and won the gold medal , which catapulted her into the limelight . I like JoJo very much because the chracters are very positive . Both villains are very vigor about realising their own desires . The Auther of JoJo said that JOJo was a song of praise to live by . Anyway , I 'm going to go to the dentist near my house tommorrow . Next moring , I headed by bus to Weed , where the college is located I was amused that the scinary was so beautiful . or ; it 's similar to the movie `` River Run Though It `` . Weed is much smaller villeage than I expected Berkly , I luckly gotaccepted toU . That facisnated me so much thatafter that class I spent as much time as possible in lab programming in java . ( Of course , my GPA is getting lower than before though ) At 10 : 00am , I showed the productions schedule to our customer by e - mail as usual , but the spcial thing was - - - I invited my PMC to join in my e - mail . I thought if they also got the schedule maybe they could help me to push the produtions . On the other hand , my customer could see we were trying very hard for the new project . Can Manga tell us about diffelent cultures ? I think Manga can tell us about diffelent cultures . I want to imorove my English . It 's made so we can enjoy various PC media punctions and powerful performances . It 's japanese a taraditional wear . Hello everyboday , I would be pleased if someone correced my bad sentenses . I 'll introduse myself a little . The roses are blooming in my garaden now . Is n't she pritty ? We , who live in the northern areas , have been waitinng for spring with excitement . That is kind of difficult problem for all humanbeing . pleople tend to use the QQ in China , not MSN . They are suppouse to have many tests and hand in papers . I see thoes students , studying so sericousely ( during thier class ) . And also I know that JLP teachers spent so much time for prepearing for this summer course . Do you believ that ? I 've never wirte my journal in English , so now I 'm thinking a lot about how to write it using the right words . Because of this situation , I swared to learn English as well as my roommate . Now I 'm living in Taiwn , speaking in Chinese . It 's a importent test for me . I want to stude English or another language , so please help me . haha ^ ^ Acording to my memory , I might heve wrote one ( 1 entry ) about 3 weeks ago ? I met my friends from my high school class , went cmaping , experienced heart - break ( s ) . . . I do n't know the case of forein countries , in Japan many high school and university students tend to start their first part - time job in it . It was dengerous ! I ate breakfast swiftly , and then I went to my granpa in his room and we both watched the game . Brazil is known for soccer , but when it comes to medals and hability , we 're better in volleyball . The other two are alreary known , and they are also great ! , Fortunatelly , Brazil won the game : D Even though I 'm always criticizing my country ( I ' M NOT GOING TO SAY ANYTHING ABOUT THE FIREMEN ' PROTEST THAT HAPPENNED TODAY . . . ) , I feel very proud of our voleyball time , and during these games , I felt like a patriot momentarily ! The reasn why I decided to enter this comunity is that I want to go the USA or the UK . In other words , they can controll our preferences about fashion , music , or so on . By using commercial films effectively , some campanies have succeeded in selling their products and making large profits . Television and movies have influenced so much that they subtract peopl 's character from them , making everyone homogenized ( the same ) . When it somes to the arts , it is necessary to foster and utilize our creativity . We did karaoke , played games , and drank alchoal . It was strange becouse it was an unfamiliar sight to me . Recentry I 'm taking english lessons . Unsoled food is disposed of . I studied abroad in Brisben , Australia for a mounth , Please hele me EVERYBODY ! ! I was reading about the continuouse tense . I will read about English grammar all day . However I do n't know exactly if I should read Thai books or English books to understand English quitely but I feel I learn slowly when I read thai books . I am really slow to understand English but I must do because I would like to test well at IFAL . I will read both types of book . On the ( / that ) day , girls give sweets or gifts to not only their boyfriend but also their male frinends and family . It costs two hundred yen ( approximately 2 . 2 dollars ) for a 200 milliliters . Even if your comprehension in Japanese is 10 % , you can improve it as long as you retain what you read and keep on execising . Some people do yoga , skatebording , tanning and so on . I hate some kinds of bugs , cockroaches in paticular ! ! Hai . I am a senior student ! I want to impove my English studies ! How about helping me ? I hope we can get along well with each other ! Recently , the increasing number of students ignore studying Chinese , but they spend a lot of time on studying English or other forgine languages . Analyse the cause of students who overlook studying Chinese , there are a few reasons why : firstly , with the fast develop of China , more and more companies have an internation trade . Therefore , the people who are good at English is ver essential . UK , Italy , and France were for high school trips and I went NZ to studing English for about 4 weeks . Last weekend , I went to Hualien with my family - father , Monther , my husband , and my son . Maybe we will go to Farglory Ocean Park agian , when my son grows up . Maybe it 's just me , sometimes I ask myself , am I really that bad ? Perhaps . But I keep correctting it . These years , I 've tried my best to beocome a nice man . I 've done so many things that I never thought before . Like I suddenly turned into another people . But I know , no matter how hard I 've been working you still do n't belong to me . You are so smart and too beautiful for me . Speaking another language changes your calactor ! ? I wish he will be happy everday and gets a good mark on his finnal exam , and has a positive attitude in his life , has a healthy body forever , has a satisfying job in the future , and also has a nice mood everday . I could y immediatery recived some helpful answers from kind people ! A large number of people are surrering from the damage of the tremendous earthquake , especially the Tunami and problems with nuclear facilities . I hope all of the peole live happily like they used to as soon as possible ! ! I have KOTATSU in my starage . I 'm really greatful for this . I 'm greatful to get paid for doing something I love . Last week , I met my high school friend who is working at a Public coperation related with promoting Korea culture . To be honest , I do n't know how to discribe my present feeling . I must improve my English well befor the Asian Games begin . My fater 's unique hobby . My fater has unique hobby . still working to reach his dream in a diffrent way . Of course , I record these animation by SONY 's HDD & Blu - Ray deak . I am sure that my wishes are going to come ture . The first time I found this webside I was so happy because my English is really bad and I need to improve it . I 'm so afrait that I will do badly again . I hope joining this webside will help me . Indian traditional music at a Japanese tempele on ( a ) Sunday afternoon . . People are unaffected by politics now , so the prime minister aplogized to the nation . Changing the leader in the short tearm is bad for the nation . If I was a Singaporen , I would definitely go to vote everytime . I went to some foreigh countries when I was a high school student . I intended to learn mathematics , so I spent a lot of time doing mathematics and I sleept very late yesterday . Now I need to have friends who want to study chiness with me tostudy language together . these sentenses might have many mistakes , but never mind ! I hope I grow up to be a good English speeker . You know , we have a rainy season that is called `` Tuyu `` in Japan . Yammy . Fortunatelly the porter was a nice women , so she allowed me the step inside the building without my card . I went to Voncouver for 2 days . Hello , my friends . I am balck . if you want to know more about the Chinses culture , Maybe I 'll spend GW wathcing these videos ! Many toursits came to drink them . I drank alchol too much , but only today . It is my one of favorite songs . I knew the song was coverd , but I do n't know who 's song it was originaly . Because I couldn n't understand what was written at all . It is usually written in archaisn Japanese and mordern Japanese . Archaisn Japanese sounds poetic , so I like it . In Japan we cereburate Hinamatsuri for girls on the March 3rd every year . I can listen to great music biside the beautiful mountain . I hope you can correct my writing and everything . I 'd really like to learn how to write profesionally , I mean with nice words = P As a matter of fact , wtiting a diary entry takes less time . We sent a card to congratulate them to the charch My nose gets stuffed up , and my allergr medicine makes me drowsy . The differense between Japanese & Canadian culture I have found Today after school I went sightseeing with my friend . We went to Backingham palace , Big Ben , Trafalgar Square and so on . When we went to InTrafalgar Squre , I found a statue of a lion . Today the temperature is so high , it feels very hot in the doormitory . Yesterday was the last day of my Mailitray service . It was a very happy end for a long hard years work . I have passed through many rough situation . korian town in shin - okubo I worked at my college then had an intervew . I did n't do well on the intervew , though I was n't surprised . I 'll just wait until everyone fisnishes finals . After bodyboarding , I stopped by the convenient store . I bought the grilled chiken and a cream puff . I think I will continue working here for this month and then I will look for nother job . The 1st word is ' I ' whenever I speak English or I write a dialy in English . Im went to hot yoga class yesterday . I had a muscle ach . . A tidal wave is a set of waves that rise suddely and go back suddely . This is my first dialy in English . When I looked through the diaries written in Japanese by foreign people , I 'm surprised that so many people can write Japanese with Chenese characters . Therefore , I tried to write the first dialy today ! What is the best way to hundle conflicts ? Cultural differnces often cause confrontations . Even in a classroom at school , thiere are some cliques . When we are in a conflict , we tend to reagard our own opinion as the right one . Winter sporting goods shops are especiallypopular now because the Bancover Olympic just started . As my husband is a snowborder , he would n't have stopped buying snowboard goodsif hehad beenthere . Which dou you think is a better source for information : the internet or newspapers ? Therefore , I believe that the internet is a more essencial tool for the sourcing of information . During the Mid - Autumn festival , I went to the western part of Sicuan provience . Mountain raods are diffcult ( to ascend on foot . ) Recentry I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . Howerer , the teachers in the new oriental school feel more comfortable to talk with students like a friend , and some of them even act as matchmakers between students . Marysvill , a former gold - rush town , was almost completely wiped - out , and witnesses said the fire spread quickly , engulfing one house after another . Hey , evryone ! my memory of my childfood I broke the window in the classroom when a few of my friends and I were playing with a soccor ball , sprinke classmates with water from a hose It is that some of my friends and I had benn hard on him for few years . Tasmaniasalmon salmon is very tasty OR delicious . And I had 8 pages of a paper due on Satureday , so I could not sleep on Friday night also . A unversity life has started and I 'm enjoying it . There is a coincidence , I just watched a TV show about the multiingual policy in EU , and I found one of the professors from my university back then in the show explaining the current situation of languages in EU , 20 official launguages and many other minor ones such as Catalan and Basque , and also the big influence of English . I 'm subsicribing to the Nikkei shimbun . So I beleve the language barrier is to be overcome soon , and what is important is not ( one 's ) nationality , but what he or she can do for Japan . When I feel pretty bad , I get sick on the train easily , so I decided to be abesent from the university today . My husban has been living away from me and my first daughter for his work . Yesterday I cheked metal structure radiated He ions with TEM which is an electron microscopic name that can show nm size . In north of Japan , Hokkaido became cool recentry , so I did n't want to sutdy until late . I only had one interview till now , but fortunely I got the job offer . Actually , I 've tought of how to study English these days . As I was listening to them on itunes , I looked for the jacket and the booklet that should have been somewher on my shelf , but could n't find them . I have n't been studing English for long . Of course , when I have the time and if they want to have a conversation , I try to practice my English . That oppotunity is really rare because the people who want to converse usually want to talk in Japanese . I sould do what l really want to do . I took part in the orientatation of the English class . I took part in the orientatation of the English class just 45mins ago . So I was asked some questions in Enlgiswh from an American Teacher . I am studing English . . To make most Korean sauses or Kimchi takes a lot of time . I heard Austraila does n't have winter . Korean people consider that courtesy is ver important . But it also puzzles my granpa ; ) So he came in her appartment with a beutiful bunch of flowers . She wanted to put the flowers in a vase with water when she noticed that in this bouqet of 8 flowers . . . I 'll write an artile a week ! And the paid tax is used to protect the enbiroment by a municipal office . no dammege during World War II . My breakfirst these days is : dishonest , disappinted . . . Today I went to lunch with my boyfried . He only told me my mistakes , what I did , and at last he said to me , just lagughing with small talk or thinking deeply Hello , ledies and gentlemen ! This feeling is not consistent with the volunteer spilit . If I can control my emothion , I will be released from my pain . Must you ensure that you live in a real world even if the real one is much harder than the illustive one . Doraemon tells Nobita that every child whose IQ is below the stardard level is fed with nutrient liquid and lives in a modeled world . Her only friend is her pet : a rooster her father found beside the hignway . But fortunately , he has a nice neignbor , Ivy . Max aslo has a pet fish , Henry . He likes catching fliies as fish food . They just like two parallels and never think of that they could come accross each other one day . After being through the most misable days in their lives , they could finally let it go . Diet fuilure ! I hear that dieting seems to be a fuilure for people who do n't really exercize . I can get good results because I like to exercize and do martial arts training . I think martial arts is a good diet exercize because it makes you sweat all at onece . Weight training is a good diet exercize too but I get bored with weight tarining right away . The photo in my profile was taken at Takadamatubara , which the tunami hit . We can do anyting . Old men and women played table tennise They were very funny and cute eldery people . I did n't practice to speaking the foriegn language much . For , at first , I 've decided to study for getting a gualification of bookkeeping . All the members say `` I think it was a good chice to join this class and I 'm very happy now . `` I think so too and I shold continue to use English in ( my ) daily life : ) I was upset and disspoint . `` Lottory ! `` he said , and his answered dissapointed me ! ! ! As soon as we arrived , he bought `` LOTTORY . `` I felt like a million doller ! I felt like jumpping for joy ! My computer has had a ploblem for three days . It 's conceivable that it will lead to an argument or even a fight if someone abruptly turns off the TV just because he or she is annoyed by the noise when other people are whatching the TV in an airport , for instance . I 'm very curious about cross - cultural defferences in sense of humor . The othre example is the telephone system . All evolution of technology has made our life better but at the same time we should realize we are gettting to be lazy and reducing our abiltity by using our invetion . I want to be a human being itsself ! ! Nihon e iku tochuu desu demo michi ni mayotta shimai mashita . Shizuoka is safe and has a reluxing atmosphere . So , I 'm always waiting for you to come to Shizuoka to enjoy reluxing weekends ! ! After his parents divorced , he stayed with his mother , but she remarried and redivorced again . Some perfer to listen to a lecture by the professors . The following , are the reasons for my perference : However , with the development of discussion bring great humour to our esucation . Just a typo right ? A good example to illustrate this is that the ability of analyze will nurture through the discussions If I ca n't get a job here , I 'm going to Tailand to look for a job . I used to go shopping at the home improvement stor called D2 which was damaged . The sweet and the bitter of life made peopler more significance . Let the unique girl with good lunky come back to her hometown . According to the weather forecast , it would rain so I was uneasy because the heigher the location the lower the temperature became . So , we desided to go to the Otaru aquarium instead because my daughter likes aquariums very much . I am distressed by many things and I have nou vigor . . . : ( Finally he was unable to stand my behavior . When I say I won , it 's only a little bit of maney . Threfore , I just get bored since they do n't have enough time to chatt with me except one friend who is from Canada ! ! ! Now that I 'm thinking what to do to spend time learning English productively asside from chatting with my friends through Skype . If you think your my friend , just chatt with me ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I 've been having busy days evev though my big test is finished . Hi , I just started Lnang - 8 . Yesterday I arrived in NY , and I saw lots of words I 've never seen , but I could n't remenber what it did mean . I took sleeping pills bacause I 'm an insomniac , but still I could not sleep well . I tried `` Tart Cherry `` supplement lsat night , so I slept like a log this morning . `` Tart Cherry `` worked . So if we make a list of qualities of a good neighbor , the list would bigin with these words : they do n't ~ , they are not ~ . The cup DID n't have a handle and it was slppery because of water . In Japan 's English class ( several years ago ) , I was taught that the two sentense below had different meanings . And the friend asked me why the sentense `` He has ( never ) gone to Japan . `` is incorrect to express the same meaning as 1 . thx ctenor and Sadhbh for thier corrections ! ! It is unbeilivable . I appereciated it . And you make me interested to writting a diary . The other day my close friend called me and said that they are going to have an appiontment today and also said they may go to the resturent . I felt annoyed because they did not askd me to agree the date and after that when they had agreed the date they However , it is not effective with those who have complicated work such as creating marketing plans , planning strategies , analyzing loan targets . . . The view outside was really nice . blue sky , the wind was cooling , the air was fresh , and the leaves were golden . I like the gloden autumn as it uplifts my spirits . I 'm studying ibt to improve my English skill but it is very taugh for me , especially writing section ! Some quizes are required to use all skills , so I hghly reccomend students who wanna improve English skill to study ibt ! Recentry I 've been watching foreign films . I conducted a series of experimente with / on concerete . On the cloothes floor As I entered tihs market , I felt like I was in a old factory , and it was really cool . It was about the promotion of a certain cosumer good that debuts next fall . So it 's too early for celebaration . ( A nabe party is a paty where you eat from a Japanese style hot pot dish with everyone . ) It is a local specialties of Fukuoka . It was a realy hot day today ! I thought I would see this movie with English subtitles since many people said that movies are useful to improve your listenning ability on the Net . Although my openion resulted in a shallow thing , what do you think about the saying `` No man is an island `` ? I sold a CD set of my bussiness teaching materials I used to listen to for 20000yen . There were so many people , screming , and yelling . How does it feel , hidding a secret ? I used to hear that some people tell too much about themsevles that their house ended up being robbed or their family members being kidnapped . Whenever I visite another country , I enjoy a unique experience . that was totally ridiculous and akward . yep , definetely 11 more months , though . I was suprised that its pronunciation is good . So reasently , I have n't rested for the second day . He always introduces many interesting music \ movie \ magzines to me . Hello , my wunderful friends . I am at home right now , and I have some thinga to do such as washing my clothes . I did not wash them for a while so now I need to work hard . I was only writing something which happened to me , because I was n't very inspirated to begin with ; ) Maybe I 'll try to write the plan of my essay next time ; ) I hope my English is n't bad , I do n't know if it 's correct enough or not , because I really want to travel , I thought about a sabbatical year in US or UK ; ) I said , `` I 'd like to eat a epecial kind of food `` . unadonn ( griled eel on the rice ) . . That day was my birthday . So I deside to eat unadon as my birthday present . ( This is from the lirics of High School Musical ) Sometimes the symptons come up days after the infection is caught . So how can I convine him to take leave ? I heard winter in Europe is kind of groomy , is that true ? This is my first jornal . I notice sice I came here , English is really important . I appreciate the beauty of language and pledge to myself that I will read my favorite foreignal literatures in their original languages . My favorate quote is Russell 's three passion of life : the longing for love , the search for knowledge , the unbearable pity for the suffering of mankind . Well , it 's terrible to accept her love with much careness . She put the fish in the water and boiled it , then gave it to me with a big smill . For example `` The mad prime minister Asou Taro lead our economy more badly `` , `` A yonger son killed his family with no reason . ( I have never thought about it until I was 20 . ) `` She is theree years older than me . She was a gril bron in a weatlhy family . She said she found a good chinise restaurant a week ago . The chinise restaurant is located in Ebisu . I like thinking about how should I take pictures to make averybody interested . Can you think about what 's the difference bitween them and you . But sometimes I forget to do so , so I think I should try to do something againg . I hope this wabsite will help me with my English . yeh my nephew has finished using the computer now . I was really serpised at the last diary my friend corrected . Gaye Club ! I went to a Chinese restrant in downtown with my friends . Going to a gaye club is a new experience for me . One of my freind recommended it to me but I was a little about trying it . She said she was from Austlalia . Cave Story , one of the most high - quality `` free `` PC games made iin Japan will be released on Wii - ware ( it will take time though ) . There were no awkward silences and we taked a lot . I think my native city is beatifull , but there are , of course , some problems . The Autor lives in Mexico now . I liked that coutry . I will go to Philipin to study English next summer for two months . Before , I tought flea markets only sold used merchandise , but they do n't . Also , I played guiter in a band . I fell in love with these shoes , so I desided to buy the shoes within 5 seconds . I am looing forward to putting oh the shoes . Bryse , a programer living in Illinois , is currently pretty much absorbed in studying Japanese . On the top of that , the time lag always causes forienger to be confused , like when I 'm speaking with an American friend . And another reason for the friend 's confusion is lack of vacabulary . I want to improve foreign languanges . However , I konw that it is unhealthy , so in order to be a healthy and lovely girl , I decided to eat more starting tomorrow . I will receive reports on the rest of the chechup items in 2 weeks . But I was not able to get myself into a better frame of mind I read books , listene to favorite music , and so on . First of all , I want to improve my English espectially , speaking . Although I can speak English more fluently than before , I make mistakes when I speak or say soem sentences . Lastly , I wanted to make forigner friends . I feel nerveous more and more . I can go to oze whenever I want to becoase it is very near , but I had never thought to visit . maby oze calls me ^ ^ they gave us a morning haze instead of sun rize . and they gave us white sky instead of orenge sun set . I feel confortable with oze 's nice charm I 'm satisfied whith oze 's nice charm I ordered a foctory size spaghetti meal with rich meat sauce . Unfotunetly , the day was rainy and chilly , but fortunetly I could visit many facilities in Oxford university . It is the midle of March , but we had snow yesterday . I have got a quesition : Do any of you who speak english or spanish like to chat with me in ICQ ? Konbawa . Hoever , I can not write as well as I read . Today , _ Shingo presentated a report about English literature . I am a cahere . I have a televeVision , a bed , a desk , a refrigerator , a computer , some pens and some english book Beacuse one of my classmates 's major was art , she explained the details of the oil paintings to us . His productions were affacted by his friends so he always drew the characteristics of female with small eyes and a long nose . Thank you for readling . Therefore , I 'm afrind of the flu . My class will be opening a food store for a shcool festival tomorrow . Finelly I decided to visit my best friend in Minsk ) My family was 4 people along with my uncles familes , my aunt and my grandmother . The Adults were talking about their lives while I was hanging out with my cosins in their room . My grandmother told us she wanted to go to Karaoke with the whole family . My grandmother was very energitic and cheerful . We went to the `` waterpia `` whice is a recreation park where we could enjoy heaps of pools . We have seen the first half of the movie , but nothing interessting has happend so far . Luckly , I got a ticket for a Green Day gig from my friend . I suddendly stood up and to get out of the from train but it was not my destination , so I stopped myself . Everyone was wacthing me probably . New book : Howl 's Moving catsle The title of it is `` Howl 's Moving catsle `` . I had no idea at all that there was the original story of the japanise animation ' Howl 's Moving catsle ' made by Miyazaki Hayao came from a book before I saw this . I like the carater of Sophie . The topic is my partner trying to sell a printer to me . I 'm the custmer . Ok , if you guys acted like a custmer , what questions would you ask ? Tree lieaves have turned red and yellow . Now I can read simple texts and understand slow and simple speach . But we must pay a bacic fee to use it . We have a cellular phone , and pay a bacic fee for that too . but sometimes , I 'm impressived by that . But I 'm sooooooo sad because today was the last day of my summer vacation ( ToT ) / ~ I 'm supposed to get up at 7 : 00 tommorow . It 's imppossible ! ! I wanted to wear a skiny jeans so I took a diet . I had to stop losing weight , but I will keep on with excercise for my health . I do n't like to use dishwaser detergent while using a dishwasher . What I do is first I soak the dirty dishes in warm water with some clenser for some time . After that , I rinse and scrub them before I put them into the dishwaser . Actually , computers is n't the frist selection of mine when I was invited into shaoguan university . I have alreay failed CET - 4 three times . It was a very big ivent x - D By the way , I watched a video that the actor Daniel Radcliffe appered in . I am a university student studying lasguage . English , French and Chainese . Studying language is difficult for me but I wish to comunicate with foreigners But today I do n't feel like working out because today I got my gradge . Since I wo n't be in Korea for years , I think that it is a good idea to spend time with family untill then . Dool Festival The Dool Festival ! Almost all of the house which have girls has ' japanese dools ' . We display dools on Mar . 3rd ( Many houses display from Feburuary I think ) . I prefer living in a domitory rather than living off campus . Living in a domitory gives us many oppotunity to make a lot of friends . Secondly , living in a domitory is much more convenient than living off campus . Most domitories are located very close to classrooms . Finarry , I will spend less money if I lived on campus . As a domitory resident , I will not have to pay for gas , electorocity , or water , like an apartment resident does . In addition , I will not have to pay for funiture such as desks or beds . I will not need a car either , so I will not be concerned about insurance , gas or parking . Consequently , the dorm is the more economical choise for me and my parents who are paying for my education . Her other lang - 8 friend and my classmate camte after I met her . Maids really exsists . The maid will paint something with kichap . Hopefuuly he will answer my email tommorow . Last friday my colleague asked me if I wanted to go see a movie with her after work , since I was free that night I siad OK . Since she rides a motocycle I thought she 'd give me a ride . It 's not the first time she has asked me out after work and told me to meet her by taking the bus ( and she rode a motocyle ) . vi is a text editor which is widely used by systems engeneers . Thus I can edit largeg texts and programs with a few key - strokes . It is very conforatable for me , so I often type vi commands on non - vi editor : I wotched a movie yesterday . `` Inseption `` we went to eat at a Japanese restaulant in sinjuku . But , as you can see , my English is not enougt to enjoy English ; for example by watching CNN and BBC news or listening to English music . `` Reborn `` , `` Hetalia `` , and `` Deactive Conan `` . Also , childrens ' crimes are not becaue of comics . I 'm stadying English , so I can go to university . Talking about the scedule , I checked the schedule and realised I reached work far earlier than I thought . That was why we swore not to use Japanese durling our time here . They speak fruently in their own language but ca n't recognize mistakes in English . At the beginning , a girl 's shouting with very high pitch and tremoro is stimulating . Futhurmore , he even assumed that I said something I 've never said before , like `` Those you refer to as good high schoolers `` . Next Sunday , I 'm going to participate in a marathone race which is 30km distance . Hello , my name is Gbriella . We met a lot of turists in the centre . The whole time , he was asking everyone to suport him . I 've been introduced by another Japanese friend and already knew about him , but I had no time to meet him at that time ; I just had his celler phone number . But he wants to speak conversational Japanese fruently and he has plans to go to Japan . For adults , natural disasterit represent / mean loss . In the film , President Mubarak doesn n't know anything about the conditions of the people . This film seems to say that the president is a victim of his ministers and government that tell him that the country is doing well and everything is ok . It wants us to believe that the president doesn n't know about the problems and obstacles that Egyptians encounter . This cook blews the whistle on the corruption in Egypt and tell the president exactly what happens in the country . It is hard to beleive that a president could be so naive . You should n't be dissapointed just because your effort does n't give you any fruit . However , according to what I heard from my friedns who has it , the filter of the system becomes clogged once a month . Some of them dream of the numbers and then buy Lotterty tickets . Sometimes they beleaved ghosts can help them win the lottery . As for me , I do n't like to play the lottery becasue I do n't know how to do it . Three months ago my ungle died . Many people bought lottery tickets using the numbers of my uncle 's brithday and they won the lottery . Recently I went to my friend 's funeral . Before she was cremated we saw that her numbers were 14 , 41 ( we saw from the box that her body was in before they cremated her ) . Lots of my friends decided to buy lottery tickets but I did not because I beleaved that maybe I would n't have luck . This morning my friend asked me if I bought lottery tickets or not . She said she won the loottery today and 3 of my other friends won the lottery too . They are going to get merit for my deceased friend to say thank you . I will write much about that tiring trip on another dialy . correecting each others ' sentences . I watched the movie `` Inseption `` . He spoke with a Janapenes accent , but very fluentry . I am looking foward to his next movie `` SHANGHI `` I 'm sure that she will certainly achive her purpose . When the car drove away , I whisperd very softly ' I wish you good luck ' . 3 - Draw a gren rectangle of the same size underneath the blue rectangle . My favotite is looking at things . I 'm very tierd because I have to sutudy hard for tests . I have already planned to go to NY during winter vacation and go shopping , so I have to save money defenitly . I like when people arond me are tolerant . I am still ashame of myself , when I remember it . My mother often said that she had difficulity making me eat . For example , the difference of `` clash `` , `` krash `` , and `` crush `` . But after I entered university , I do n't study grammer . Entrance examinations questioned me a lot about idioms and grammer . As you know , my English grammer is often wrong . It is a pleasure for me to eat my mother 's cooking whennever I return ( to ) ( my ) home , so I was very much disappointed . . If you are reading my dialy , I would like to say ' Thanks ' to you . From now , I hope I will be able to continue writing my dialy . Are there good ways to joing the conversation ? My first dialy in here lacks unity . . . . . . How appealing and - perhaps sandly - how untrue . Italian : Weit . In my country , many people are doing . . . ( 2min ) . . . Japanese people are normally tought by teacher and parents : From my point of view , this is why Japanede are so quiet in that they say almost nothing but smile while in a group in class . In fuct , it 's a bit tough for Japanese , while overseas , to find ' the end ' of a person 's talking . Some stores start to close on the evening of Christams Eve . And this time , I have to start living alone , no friends and coleegues . I went to IKEA to buy chairs , because my realtor promise me to pay them on conditions to cotract my room . I need speak more and more English because of my Job resently Recently , my fovorit singer is All of the band members have already had expierience with other musical projects . worked with many differet musical styles from Ska - punk to Hardcore . electronical samples . I 'm afrai I ca n't pass the exam for university , so I want to study English well . And do you add suger and milk to it ? So I want to laren English right now . 3 days ago , I heard he broked up with her ! ! ! This is because it will be usefull for me for when I start working in the future . This is a small and a light weight watch with GPS and heart rate moniter . There were some foriners . So our goal of the day was difficult . We wanted to talk with some foriners to study English . In the first store , there were n't any foriners , and then we moved to another pub . In the Secound one we met one person , and spoke to him . . It was so eciting . Everything has two faces , living in the school also has diadvantages . Such as the pocession problem . The Differenct living habits of the students are also a big problrm . But I do nou know what to do . plaese send me a message . I enjoied the view from the window of the taxi that we took to get to the city center . The hotel that we staied at is near the KL Sentral station ( It is a central train station ) . We looked forward to taste some dericious Malaysian cuisine . So I have to look up the words in the dicshonary many times . I hope I can finish this book before next Staturday . This means I have to readabout 100 pages a day because I justy started it today . Even btter , I could designate a cup for a specific purpose and use it only for that purpose . It made me desperated . So I want to improve my speaking skills by training from you , Stephany : ) and also by excersicing hard . Let me know if you know the names of the American competent authorities in the airport and their email adress . I felt very full and my bery seems so big . Todawy was the third day of my internship ; the second one was similar to the first one , which was pretty boring and very useless . Although , I could use a computer to read manuals in English , and a couple in Spanish . I stayed in Canada for a year as a working hoiliday student . I feel enphoria . I think that family is the most permanent and best of freind . So I 'm going to leave at 6 : 30 PM and tell my mothre `` I do n't need dinner tonight and I might come home late . `` . I asked eneryone `` Would you communicate with me on Skype ? Frist Diary Actually , I 'm not sure wheather we could beat them , since our team members are not our best . Now , I 'm in the corpolate planning department . I wore a skirt , so everyone said that I am crezy ! ! ! Fuckin ' rich and intelligent people and the finanial crisis ; we need a red revolution around the world . I 'm looking foward to seeing Mont - Saint - chel . My younger son respects his father at least because he is n't scared of cockroaces . And my mother tongue is Japanese , so I will be willing to correct many sentenses wrote in Japanese . and I want to go Erope for summer vacation . My familly consists of my father , mother , sister and a cat named Hiro . By the way , in Kxoto it 's 2 degrees , so it is really cold . Do you know Family conputer ? Family computer ( it is called Nintendo Entertainment System ablode ) is a video game console . Resently , games are high spec and very complex . The semina was critical for me , so I took many notes about the meeting content and clipped them in my documents . Besides , I also recieve serveral intivations of commercial cooperation which may enrich business chances of our company . It is hard for me to say and writting what I think immediately . It seems like it 's in the red this month so I need to be tight the monthy expense next month . We 'll go to unexpensive restaurants . On March the 7th , we left Osaka early in the mornning . In Ishikawa , we did some sighitseeing , and took a spa . . ( Japanese bath ) We talked about anything and everything untill the next mornning , and then took a spa again . , I also can not forget those friday nights when we used to drink many alchole and chat to each other . When I master bookkeeping , I will be able to judge the financila status of many companies . I worry about wheather I can snowboard better than I have , Computers are also used in businesses to place and cancle orders . However , I sometmes forget such ideas until I finish taking shower . Solly about the short dially . In Japanese cluture , it 's called OBON . Because there is noone in semetaries . Removing sopts in my face This pain was like a hot niddle pricked into my skin . After the operation had been done , I could see traces of burnt spots throught the mirror . Nowadays , it is common to see people walking while texting or yaking on their cell phone without being aware of what 's going on around them . This scene can be found anywhere from on the street to on buses as long as the palces are whitin the coverage area . when we rushed to public telepone and make phone calls using telephone cards . I learned this from betry , from pain anyhow , time never stops for man , although the world is not good engough , but life goes on , so we have to move on They energeticly gave their resumes to the companies where they wanted to work in the future . I registed immediately when I knew about this , however , I had a midterm which made me really really buzy last weak , so I have to wait till this week to post my first diary here . I have to take TOFEL on 9th , May , and now I feel overwhelmed , The first and the second photos are of a used kimono fair held at a depertment store in Osaka . Good kimono have clear patterns without any scrach . ( I do n't know wheater the pattern is any good . ) So I 'm afraid if you are American or Europian , it might be too small for you . Today , for the second time in all the years I 've known her , as I was bending down to pet her , at firt she did let me pet her then she jumped onto my lap and climbed up to my shoulder where she stayed for quite some time , her hind feet on the right , her front feet on the left and rubbing her chin on my left shoulder and letting me pet in turns . ( I 've never seen her doing that with any other person . ) Last year I went there with my mother and we were collekting a bunch of them for making jam . Only this time I was n't wearing my pullover anymore ( I had taken it off on my way down ) , so I could feel her claws hook into my shoulder ( outch ) . to do poineering work , we worked hard for our dream , so we could grow into a useful and wonderful man . In modern times , some people claim that we should learn secound languages without translating into our mother tongue and we can learn a language by connecting words together and by paraphrasing . Hi , Nada is my avater name at Second Life . I do n't belive that . . . I am worring about the ( my ) coridoras . He is always full of enagy and a real hundful for me . My tutor said `` Do n't transrate `` . I think I ca n't transrate any language so I need to speak English in English . My two sons playng `` KARATE `` . Recently , I collected pictures of my classmates ' smiles and put them toghether . This picture will be part of our juniour yearbook . The picture can be a keepsake for our juniur class . In one year , we will all gratuate and go to different places . This year , we will work for a better usage of the french language in writtings and we will try to discover other cultures by written correspondence with some class around the world . We had a really heavy rain yaeterday . I met my friends who are my clessmate and had met new friends who are from Saudi Arabia , I 've just dropped in McDoland 's and I love the walnut tart that is sold at `` Quil fait Bon `` . `` Quil fait Bon `` is a patisserie speciallizing in tarts . After our dinner , we went to a caffe . 3 months ago I learned English with my personal teacher , but now I am compelled to learn englih by myself . Because my teacher is very bisy . Byt verbs and times are my curse . I want to tolk in English with people , who tolk in eglish every day . I want to work for a foreign affiriated company . And I achived it . I noticed that I can concentrate in meetings in English only for 30 minuits . 30 minuits after the beginning of the meeting , my ears and brain get tired . There is nothing in my mind , but it does n't mean that I have no idea . But I need to take everday as my last day . However , it is difficult to understand the strategy of chess because I 'm accustumed to the rule of `` Shogi `` . I have had two turtoles for around 15 years : - ) Their names are `` KA - `` and `` ME - `` . Then I could spend a very intresting time ! ! ! ! ! It was a los of homework . . . . . . Lang - 8 is a very good web for learning langauge . I found it in a magzine . Recentry Lang - 8 is not working smoothly . It 's a little embarassed to play it when there are a lot of people in the elevator hall . There were atually . I cooked rice balls , bild chicken and flyed ( maybe fried ) go - ya . It 's a little bit wierd to say good - bye to someone who I meet for the first time , but it sure is a good opportunity to meet new people ! and immidiately fell in love with the place . I 've worked in the International trade for almost 2 years , but in the new HR 's eys , I 'm still a newbie as I 'm starting in a new place . 2 months have passed . No tasks , no assignment , and the formal training couses seems just a waste of both our time . Acctually Ispecialized in business English and have former experience with daily use glassware . There were many pils of DVDs . Also I hope to comunicate with someone in English . So let me intridue myself ! I love chatting with my friends , playing sports ( I especially love badminton ) , and listening to musiic etc . By the way , I took part in a internatinal party in Ginza , Japan the other day . Of cource there were also lots of Japanese , who were all eager to make friends and practicing English , as well . I prepere for going to school by listening to music every morning . But I get the urge to buy onece in a while ^ ^ . I invited a Japanese freind to my place . Of course , I can be a good Chnese teacher . Today 's shedule It 's very confortable for me . Some people think there are many benifits to have machines or even robots deal with tasks . If we can make the machines work for us , we 'll be able to creat a completely new life style which is healthy and suitable for all the human beings . We will try delicious foods in Hokkaido , such as chikens , Japanese crabs , shrimps , various vegetables and so on . I 'll look forwarad to it very much . Electoric propulsion My major is Aerospace Engineering . We study how airplanes fly and learn how to create poweful rocket engines etc . . Most of my colleagues in the laboratory are studying a plasma electoric propulsion system which has poor thrust ( 0 . 01 ~ 1NS ) , however its efficiency is awesome ! ! , It 's ten times more efficient than chemical ones , which are normally used in rockets , ( The space shuttle being an example ) . The kind of work that interests me the most is reseracher . I am highly interested in study , espetially in human dynamics . I will give her everything as well as my life and I think she will be the treature of my life . Accordind to the news , only one domestic line and one international line have been put into servise . I welcome the new airport which creates new buisiness chances , because I work at a travel agency . When I made a woolon tea like I usually do , I noticed the diffrence in taste . This time I 'd like to speake about the club I belong to . We invited some amature music groups . I think that song and art is very woderful . Thousands of residents from a part of Fukushima prefecture , which has had a serious problem with nuclear power plants in the March disaster , have been told to leave thier homes . In adittion , my laundry wo n't dry because of the humidity . Since I do n't have many opptunities to speak English here in Japan , I think my speaking skills are getting worse . I will be in Budapast in Hungary , between May 7th and 13th , to attend a conference . There is no direct flight from Taiwan to Budapst , so we need to fly to Wien , ( Vienna ? ) , and then travel to Budpast either on another airline , or by bus or train . BUT now the host family is a of some concer . She told my daughter that she had a really hard time with the same host family because the host mother has been suffering menopuasal symptons and when she is really low , she yells at others and throws things . My first name `` Satoshi `` means `` cleaver , smart and wize . `` Yesterday I rentaled `` hostil `` which some people recomended to me here . Otherwise , It will be more difficuly to find a job . In the USJ , there are many kind of Halloween decollations . We all have beatifull penmanship . The operability ? ? ? of jQuery is absolutely indespensable to screen operation and I use ajax ? ? ? as much as possible and . . . . . However , I ca n't talk to her face to cace , because I 'm a very shy boy , so I will talk to her tommorow . I registed to Lang - 8 to improve my English . Because you ca n't eat and you ca n't dring . [ WE ARE THA WORLD ] and I lost my way ( ; ; ) There is no dought that I turned right . My homework . . . Corect please please please please please Dinara Safina is one of our favourite Russian tennnis stars . There is a big Catedral . The Catedral often holds festivals . Though it 's small , it is very convinience . Going from Toledo to Central Madrid only takes 30 minuites by train . Billie Joe made some funs get up on stage and sing a song . It was unexpectable ! What a beatiful day ! I drank a gluss of white wine . It was very tasety , but it was too sweet for me . So we had to go anothe restrant after that . But sometimes when I listen to difficult English , for exmple CNN snd BBC and so forth , they use words I do n't know , so I have to conjecture their spellings or meanings only by pronunciation or context . Meanwhile , mutton is less popular than other meats , like a beef , pork and chikin in Japn . Greece , Iran , Spain , jorudan . . . . But there are not any Uighur resturantin in Tokyo . It 's hard to believe that I do n't have to go to the academy antmore . I downlode an application which allows me to play poker online . These berad are very expensive ! I eat a lot of berad , but I 'm on a diet ! A lot of Japanese food was sould on the street , such as Tenpra , udon , dango , kakigori ( shaved ice with syrup on top ) . Today 's part time job was working as a delivery staff for a piza . I deliveried to six families for only two hours . In my apartment , one of the lamp bulbs on the celling burned out , so I changed them . I belong to the third branch of Hratsuka volunteer fire fighting unit . We quickly gathered in our office and went to the accient spot on fire engine . The spot was the mini factry of Japanese sweets , and the heat sencer responded to the steem from making sweets . so it 's very fun to comunicate with the people who have different backgrounds . `` Drinking together helps our teemwork grow . Two month ago , Japane had a big earthquake . I was n't affected becouse the epicenter is far from my prefecture . However , when I get paper money , I put it in 2 partitions . ( Korea has a 4 kinds of paper moneis ; w10000 , w5000 , w1000 and check ) I 'm busy so I ca n't wirte in my diary . . . . . . byae bye . I am listening to the Presidential Inaugural Adress on my podcast . His speeach is very good ! ! Syabu syabu is very populer japanese food . Nabe is besitable , meat , fish and etc . and , very dericiouce ! During the meeting , some profeccer and I discussed a way of teaching science . A profeccer gave me a lot of advice . When he finally left school , he travelled to New York , where he became a studed at drama school . I am sure that although most of my painting friends on Facebook are just virtual friends right now , someday they will become my atcual friends ! ! ! It has been a really really reall long time since I last wrote my diary ! Actually I just dropped by after following up an introduction on jandan . net about this interesting place , [ insert space ] where people WITH DIFFRENT LANGUAGES AND CULTURAL BACKGROUDs can exchange their ideas and thoughts . . . Most importantly , it allows native language speakers to give suggestions on your blog , [ insert space ] mainly about how to write it in YOUR second language . . . [ insert space ] A pretty cool idea ~ ~ I am college sutudent and I belong to soccer club . His ball technich is unbeliebable ! ! The aloness that keeps out a chalming smlle . Beyond my idear . I really like that city because it is not only the first contry I 've gone to overseas but it also has many tourist attractions . Many lights were reflacted on the sea . It opend on Saturday and Sunday . Oh , I remeber a man who could paint a picture with spray . However , it remains unclear how this affective bias affects the memory as the distractor . Visitting a grave . As we know , the smoke of a cigarette contains various kinds of harmful chemicals . Some of which have been proved to cause lung cancer , such as nicotin , amoniac , ethanol , carbon monoxide , acsennic , and naphthalen . In fact , there are some cases a cigarette is the cause of a house burning down . A cigarette can cause serious consequense . I readThe Economist , however , and itsaid thatJapan ca n't escape The lost decade because of indifference towards politcs on the part of people and politicians . I disagree with the statement . Indeed , how to change our lifestyle is a crusial problem . 1 ) Clearfy state your purpose ( why you want to be or do so ) and prize . Altough I drank a lot of wine with my friend for 6 hours last night , the result of exam was A . Once the mark is caused , it is permenent . Yesterday , I took part in an interwiew for the Beijing Western Sunshine Rural Development Foundation . There are many university students going to there to hlep impreve the current situation . Though I failed in this interwiew , I finaly get 3 days off in a row here . . . A five - year old girl was found by Russian police in the Far East terriortery in Russia . So many people are suffuring from hunger and poverty in Russia these days . The police brounght charges against her parents . Finally , we dicided to buy a sofa ! Although I have n't got a lot of money , I buy a butiful clothes . Even though I could n't understand the woads well , I could enjoy the pictures and the sound and I roughly understood the story . Spending time with my family , visiting my granma and going to a shrine to pray for a Happy New Year for all . . . I 'm very cold , but there are many air - airconditioner that are used all over the area . Also , I have to attendent my class , but I 've been getting up late , so I have n't been going there . Please check my dialy ! Yesterday , I went to the New Internatinal Students Welcome Party at my univercity . I l lerned how to find ecnomics datas . It is a very interisting place for me to make many friends and communicate with many foreigners . I 'm so frustated . Now it 's pouring still harder like torning the bucket over Please do me a fovor and tell me the meaning of this sentence : The men are in a snack . My ankle was sprained in the afternoon when I played valleyball . . . It 's so shameful when I recall it now , because there were many students on the valleyball court . . . Maybe I ca n't play valleyball for a few days . . . So it dameges a lot and many people feel uncomfortable . So I suggestio it to my 3 co - workers . If you are avilable , please correct them . Althouh I 've lived in japan since I was born , I am now planning to study abroad in Canada this july . I think that just only speaking Japanese is unworthly in a global world . so I hope to contuct each other by using this useful site . I felt as if I were moisted . An intense tornado struck Jplin , Missouri in the US . and elemantary school teacher . I like traving all around world . But unfortunally since we do n't have that , my husband just grated onion for me while crying . I recomend to you ! My dream come ture filnally I really hope go along with them . . . But , on refrection , the postage price is as large as the price of the clothes . So , I regtet now . Many friends recomment this drama to me before , but I did n't watch it because I was watching another drama , `` Lost `` . In our company , the phonomenon is found surely . Thouse who are in their twenties do n't like it more than those who are in their thirties , and the occattions to drink it seem to decrease . When Joy entered Mcdonalds , Ji and Min alread sit . I should have stadied more . . . That was her first solo cocert and her first CD was released on the same day . After that , I went home and practiced soccer and today , I practiced passing , trapping , driblling and geading ( ? ) . The session is a drop - off class but it 's a 20 minute drive from home , so I wated for her for 2 hours in the caffe nearby . It made me feeking very busy and tired . ( My neighbor / One of my neighbourgh ) is attending an Italian course in the Italian Institute , and told us on Sunday that Giovanni will gave a interview talk about his books , and will play a few songs in the Institute on Tuesday evening as his debut in London . I sutdy dentistry in hokkaido university . My part time job is tennis instractor . My First Writting Although I have been learning English for a couple of years , my writting skill is still not good enough . Frankly speaking , I do hope I can make some progress in writting . The idea of helping people improve theree language skill by SNS , totally atract me . My vacubulary is limited . because the less people there are , the more you can have the oppotunity to speak English . The teacher askmed us several questions . However the financial crisis recalls the goast that Alan Greenspan exorcised in the late 80s . May God help America , I ca n't stoip praying . I ca n't speek English well but the teathers are very good so I will certainly grow . Yesterday morning , I drove my indian femaile friend to the animal shelter . I do n't konw what will happen to me as a volunteer in the future . Furthermore , there is the English test on next Saturday , so I hope I can cope with this test with confidence and knowledgy which I have studied for 6 months . Writing is one of the most difficult skills , I hope I 'll improve it using this service , moreover I hope to get to know new and interesting people here . Who have and know new ideas , and can enrich my life with new conversationals . so my assey is always basic level . Even then , it 's an arbulous trek . It is nutural phenomena is n't it . Why do some people accept homesexual ? I do n't know exctly about that . Writing a diay is very exciting for me . . . I think that learing other languge not only gets a skill of communication but also gobtains another country 's methd of how to think . Me interes el flamenco , la salsa , el viaje y la gente ( ? ) . chao . It was very crowded in flont of the Mona Lisa . I 'm qurious . what does ' craking up over ' mean ? `` Food desert `` means a situation where many people , particulary elderly citizens , have problems buying food because a lot of small shops closed down due to the emergence of super markets , department stores and discount stores , and large shops are generally far from shoppers . Pottery ! `` in the magazine I got when I exchenged ( or switched ) to the iPhone4 . I am studing economics . I scrabed the inside of rusty frying pan with a brush . After that , I ate an egg tarte at a bakery . There are many similar words between the two lguages even though one is a descendant of Latin and another is from Germanic . I dicide to keep a dialy everyday . Please read my dialy . Three days before I found a music video of my favorite groupe on internet ( You tube ) , the Four marionets played Coldplay 's song . The remakable stage effects and stage staff ( marionets ) were interesting to watch . Time goes by so quickly . I remenbered what I was back then . . Nowadays people ca n't live without them if they want to be a part of socicty . It is coverd with honey , sprinkled with nuts , and has added chocolate and acecream ! One professor in my university said he has a favorite foreigh ranguage word too . Developmern of Tea in Taiwan there were a lot of people , many foregnersis there , who played soccer , baseball and badminton . somer is coming : > The picuture in jaoanese books and magazines are of course nice , but But , this is girl onry university . I dushed to the nearby bank to see the fireworks , but I could n't . In fact , I had n't had a computer until I enterd vocational school . When I lived in Korea , I usally ate rice , vegetables , and meat . Why does bad food taste better than healty food ? Becouse the big typhoon is coming . Im have fun . In Kochi , they aer eaten with only solt . I love my friends , who are sadly sufering from a cold . Now , it is arond 3am in Japan . It is raining and I am litening to the sound of the rain through the window . As I pretened to call a policeman , However , alomost all the people in Tokyo live their ordinary lives , like before . I 'm taking a buth now . I sometimes take a buth for a long time ! ! ^ ^ I have pssed the intermidiate interpretation examination in Shanghai last month . Syllabus was well wrietten and the class followed syllabus Professor provided feedback aftet the exam or assignment . I watched English teaching programms hosted by CCTV , Taiwan TV , and read my textbook each morning . And I would never forget a word that I have learned , including the speliing . But I ca n't spell a word quickly , for instance , the word infant I can only take it as a whole instead of as `` I - N - F - A - N - T `` . I can pronounce and write it quikly , though . I think English words are similar to pinyin of Manderine , I am good at pinyin , so it 's easy for me to master English . I never paid any attention to English grammer , but well , it does n't matter . But now , I have been studing Japanese for 5 years and I 've nearly forgot my English . One interesting thing is that I can speak English casually without worring about grammer error , while I am not confident at all when I speak Japanese ; there are always new problems that I encounter and I can not express myself well . Accidently , I found this site and registar here . So I do not do well like everyone . The Summer . . plaes hlep me . . In the summer there is a holyday for schools and univercites in the majority of countries . I fotgot the name of beach though , this is located in La Paz which is in the southern part of California peninsula . It is so peasful like the name s . O shin . . . Japanese serail You can see the clouds and lake strech out below . My major is Accounting , which is a so complex a course for me to stduy , but it pays to work hard in this promising subject . My dog died and I lost my job . My bussness failed and my money run out . She also worked as an intership . Because I thought being a dctor is a great job with good pay and that nobody wants to quit . I will conduct an experiment at a university in Kyoto beginning tommorow , where I will stay for about a week . The first picuture is at Tokyo station . One dog ` s name is YURIA , she 's a podle . One dog ` s name is RIMU , she 's a podle . I decided to write a diary gradualy starting today . I culd n't find good gifts which will make her pleased . This is the first time that I write a diay . I ca n't even glip a pencil . My hobby is playing sports , espicially Basketball . I am on the bus going to the chuch . During the course , we tought them how to make dumplings and chatted with each other I 'm 24 years old and I 'm a systems Enjineer of a securities company . programmer ? and I did excercise with my best effort . when I was finished , I could n't lanugh about myself ^ ^ Thay talked to each other for a while . In recent days , I have not been happy because I quarreled with my boyfheriend . I admit I overdrunk last night but I was still sober . Some even advise me to envest 80 % of my time studying mathematics . As the story is so intersting , I read it quicikly . I thought I wanted to become a warm person like his nighbor . Even if the story is sad , the book was funny and intersting . Later , I want to watch the movie ' The Homelss Student ' too . The students can not swin in their school 's pool in the big city because of the water shortage . The famers have terrible quarrels about water for their rice fields . Althought I have lived here in Taiwan for over 20 years , I still ca n't get used to the hot weather . Althought the temperature there was higher than in Taiwan , the weather in Taiwan is usually hot and humid , which makes me sweaty and uncomfortable all the time . It was July 4th yesterday , the bitheday of America . Becouse I felt dizzy when I drank it . Well , not exacly . To make friends with foreiners , for business purposes , to go abroad . . . . Hello everone If it 's a coinsident , then it 's quite a big one , is n't it ? Adittionaly I will meet my friend at night . I think this main function is to call somebady . While I was riding on the rockin train after that , I remembered what a priest said . He said that they ate many dilicious foods and had a nice time . Today , the introduction of my famiry . I have pearents and brother ( s ) and a dog . Todey was very cold . Afert have a bath , I will go to bed . In Japnan , it will soon be `` tsuyu `` . Now , when I thougt that XiaoBei parted with Haizao XiaoBei felt deep distress because she was not faithful to him . It 's been a long time since I last logined in on Lang - 8 . Great Thank Rabit and King Goodbye Lion My writting is terrible , so I feel stressed / nervous about writting in English . I think speaking is much easyer than writting . The theme of this special number magazine is ' runnning ' , and I 've decided to start to run . Writing is necessary to improve langure So , I will search for anothe plan ! ! Tonight , it is such a beatiful night , the stars are so beatiful . I saw a news report about a soler - powered airplane that can fly using soler power in the daytime and with batteries at night . Several days ago , I had a conversation with a foreign teacher , who comes from Germany and teaches German in my universty . I could n't canceal my excitement at this cummunication , because it was my first time communicating with a foreigner face to face . We just briefly greated each other , and then there was a long silence . The score was 7 - 83 , Japan was completly defeated . ( How should I discribe a person like him ? ) anyway , I 'm still coufused how to use it ? When the climate is wet and really cold , it 's hard for me to wake up earliy . I do n't have enough willpower to study more and more in moring , wasting lot of time . Fortunatily , this week is holiday and I do n't have to attend classes . Their dance and rythm is fascinating to Japanese people . I play the fulte . That makes keep up hope when whatching dreadful stories of the world . I guraduated at a univercity this year , but the ceremony was carried through . It was postponed by infruence of Hukushima 's strong earthquake about 3 months ago . He has just gratuated About 15 minutes in the first half , Paul Scholes was kicked by a danish player and got his knee ( or lingament ) injured . Before I went there , I did n't like studing English . And I like taking picturfes , traveling , eating good food and dreanking , haha Tommorrow , I will look for a new resedence . Due to the specifics of being with the people who are from elementry school to high schoolers , I am supposed to know how to treat them accordingly . There are about ten little kids in my school bus ( mainly , I am in charge of monitering the school bus ) and among them , there is a first grade kid who I have scolded a lot for being loud . Relieved : I 'm reliecer that I obtained the offer for the job . Recentry , I do n't have high motivation . . I wil leave to Tokyo , by JAL at 3 : 50 in the evening . Then , one of my colleagues assend me and appealed that kind of needs When I meet the manager of the HR , he demanded an English interciew . I 'm 24 yaers old . My mother , father , yonger sister , yonger brother and me . For Valentines day I make gateau chocolat every year . So , I like gateau chocolat . Because it is funny and diferent . Red can pretend to be dangeruis and it 's sexy . The whole tasting process was so enjoyable , watching the sparkling champagne in the glasses made me feel living in the high sociaty , although I am not ! Singing Taiwanese songs in KTV makes me high , and I hope tommorw I will have my cell phone number ready for a good hiking trip ! Two of them are on Visual Basic 2010 , the other is on Vicual C + + 2010 . I have programmed in C + + before but I have totally forgotten the specifiation . I want to be an efficiant progammer ! ! and earn more money ! ! I 'm already depressed with my exams , I do n't need to hear that 3 hospitals and 5 Primary schools have been bombarded this morning at Gazaa . When I first came to Taznania , we changed at the rate of 1300 Tsh to the U . I went to a Vegitarian festival in Kyoto with my friends today . It 's not good looking or usuful so far . I used easy word , only present tense , and not complex words ; parfect tence , passive voice because I want to know whether subjects can make relatice clauses or not . How do you studay language ? It 's a software to memorize woards and phrases efficiently . Are you good at memorizng new vocabulary items ? It 's not surprising that we forget our memoly Please tyr this method if you would like to study new language eficiently . You can surely memorize meny new words ! But my family had trouble , so I had to solve the problem immediatelly . It has been ten days since the Chinese Lunor New Year . Now I have a lots of great photos that me and my friends took yesturday and today . The next time I 'll see her is in the summerday . In my opinion we have argument between secrity and the risk against [ urasite ] of each school . I have never serch it and also read , so I am not sure how [ ura site ] is but it seems that student write about other student 's bad point or something hurts others . Moibes could be very useful to prevent the crime from children . If my freind has time , we 'll play catch ball or whatch games . If you are the one of people who lent me a hand on my survey , I really appriciate it . In the end , she sent me some useful resouces about the theme by e - mail . Today , I had three classes ; English , Japanese and Chainese . Besause it was the weekend today , many people visited . Because all of the emploee are kind and happy . Sometimes foreigh people go there . American , Korea , and Chainese people . And I also attended the Chinise classes in my Company . Yesterday , I had a class titled `` perfect pronounciation `` at the university . We learn the North American English prononciation in the class . Michael Scofeild . Like other girls , I was meant to be a fan of Michael Scofeild . Anyway , I looked up on the internet about Wentworth Miller hoping that he is really a person who is like Michael scofeild in Prison Break . When I was a junior high school sutudent , I went to Kyoto . As I 'm interested in Japanese history , espesially the `` Shinsengumi `` , I want to go places that have a connection with the `` Shinsengumi `` . People do n't look interested in a naked artist performing on the street , a group of tap dancing people or a movie filming location with a lot of famous acters . Their birthday is tommorow . I 'm looking forward to tommorow . When I pay , I foud that I have 4000 yen . There are buautiful flowers here . However , it was luckey we was able to meet one of the customers and tried to make him purchase our product . So I can not understand the actions of the sea chepherd . Although the decrease in conversation is a very serious matter , the number of such families habe increased . The holliday is celebrated every year on 1 September since 1984 . I am not a student for 9 years already , but I have never forgotten this holliday ! So now I need a good envirenment for me to learn . I will wach it again when I go back to Japan . I 'm studying Engrish and Chinese . Our teather asks us several questions . When I looked around on the way to the school , cars were stacked , and strees were filled with people . To make matters worse , evrybody was walking very slowly like a turtle . English is my second language and I have been having a hard time getting Canadian profesional accredetation in order to practice nursing here in Canada . Although she always made out with her hasband , she ca n't speak English that well . doom : The criminer was doomed to get the chair . We Chinese can not log into SNS websites such as Facebook and twetter . We can just lives under the `` ummbralla `` I made handmame BBQ sauce today . It contained soi sauce , garlic , sesame seeds , sesame oil , and suger . Inside of it there were 3 motours and metal frames , This Exhibition is called `` Interior Life Style Exhibition `` in Japan . It is done onec a year . She told me about her friends who went to america to work and tranvel and take care of the childrean in the usa for one year . A pack of cigarrete is expensive , is n't it ? ! I swear , I will never smoke cigarrete . So I will have to study hard from tommorrow . Hi all . This is my first time posting something in English . I 'm from Moldova ( If you know where that is . ) Soon I will imigrate with my family to Canada ( My father , mother and sister . ) So Girls , I 'm free . ^ _ ^ . . Today , my father will cook Okonomiyaki for dinner , whici is a Japanese style pizza , for the first time in a long while . I am going to keep waching CNN somehow , although I ca n't completely understand what they say . . One of my hobbies is playing the guiter . I 'm learning Japanese but now I 'm just a begginer . So that 's why I chose the 5 - fingered socks as his bithday present . I held a drink party for my friend who will get married this Octorber . I hope for their happiess . Yesterday , my friend told me about Lsng - 8 . Sometimes I pretend I 'm one of the charactor and say their lines . Mabybe I just have no feeling , no spirit , no inspiration to write an English journal entry , I do n't know . This evening I got the news about a volcano on Monnt Kirishima in Japan ! but when I take her for a walk , she is so crzay ! I wanna sky jump and bungee jump and go surffing before I die . but I 'm a little chikin , can I really do them ? by the way , during 2nd perod , I went to a tiring progress of education class . It had English languge for the details . Then I checked it , and Insite of the idary there was a story from someone . I was really excited and kept reading the diary . Then I saw many pictures from him that were insite the box and a card that said `` Happy brithday Noy . `` ^ _ _ _ _ _ ^ Ohh my , that was the frist prasent I got . insite it was written something such as `` I hope it will reach you before your brithday . `` Then my mouth opened and fanally smiled and I said to myself `` Thank you , my wonderful from Lang - 8 . `` I want to write about one of my favorite series Desperate Housewives . It tells about their life , their husbands , their children and relations with their neighbors . I woke up at 7 o ' clock , and then I washed my clouthe . It cotinues from June to July . I wonder why there is no rainy season in Hottkaido . I hope to go to Hottkaido during this season . We enjoed it . I found the Penguine Readers books in my town 's library today . She is so frinedly and nice . The visible air polution reflects certain wavelengths of sunlight back into space and this weakens the effect of visible air pollution on the earth . I think I 'm going to go to the libraly later ( today ) . What I do is I first check my library , and then only if thay don ` t have what I want , I 'll think about whether to buy it or not . I like shooting games , some of them are violens , but I never want to kill people . also I do n't think I 'm atupid . Movies , books , TV dramas , thoes entertaiments have some violence , but adults judge only video games that are not educational . And do you think violance expressions make us obscene ? And surpriseingly , when I went out to drink some days ago , all of my friends said `` Wow , are you on diet ? `` OJT wa tanoshii katta ( The OJT was fun ) Watashi no Jikan de hiragana wo benkyou imasu ( I was wasting my time by studying hiragana ) Hello . Starting from this week , I 'll be writing a bolog . By the way , I decided ( descided ) to write a diary EVERYDAY ! My condition consists of phisical and mental something . Maybe we can excahage opinions ! If you want to make freind , let me know ! In the futuer , I want to write about my hobbies and music . Now Japan has queke and radiation problems , so yeaterday 's concert was held for charity . Women 's final of the Wimbledon chanpionship tennis tournament will start at 22 : 00 Japan time . He is going to Kouchi Prefecture today . I 'm going to meet some friends and have dinnar with them . In the congress , 7 minutes of presentation and 3 minitues of guestion time is allowed for each presenter . What a wonderful food name XD Has anyone aten it before ? Today is holyday work . I went to the office in Tokyou by Shinkansen ( bullet train ) . If it 's right , does this sentence , `` Bob does n't like you very much . `` exist grammartically ? I wantto them to overcome the pressure and win the next game as well . We went to Palece of Verailles , the Louvre Museum and Mont - Saint - Michel . We went to chateau and took part in Marason . Weather forecast says it wll snow till midnight . Have a good weeken I think I will go to shopping and look arond the market . I would like to buy a new magnet . There are a lot of stores in the weeken market . I hope you have a good weeken . Her school has a cafetera , but underclass students tend to bring their own lunch boxes . I like incestigate blood types . The result was n't bad bcause my score was fifty points higher than last exam . I think that the closhs which are sold in the shops at daikanyama are somewhat more expensive than in other shops . I think it is good for me to inproved my English . My Enlish is so poor ! It was a windy day in Tokyo yesterday and the day bfore yesterday as well . Our country have been inviting soldiers fom many years ago , but they areonly a handful ofthem . Whould you check my English sentenes , pelease ? I am confident that if you pratice Korean with me , you will have progress . And I forgote my umbrella . I have a friend who is very populur with men . It 's complately obvious that he is into her . ( His behavor is better ? ? ? ? ) Firstly , Let me introduse myself . Our tennis team prastices almost everyday . calligraphy is defficult , but it 's a lots of fun . However , I wrote not only my insistense but also my gratitude to them in it . We would just simply conect to the Internet . My major is archtecture . I coul n't figure out why because he never told me how he felt . because the wather was bad . Today 's schedule includes ethics , mathmatics ( logarithrm ) , Korean history , mathmatics ( matrix ) , Korean literature ( poetry ) , and Korean geography and self - teaching . When you were a student , what was your faverite subject ? Also , I 've been searching for a Japanese lunguage school abroad . I hurtmy finger when I was making dineer . Halloween is not as familiar in Japan coparing to other countries . This neckllas was made by me . A Church is in fact a place where people who admit that they are sinners ghether . He sucrificed himself for me . I hope I 'll be able to visit there somoday ! 2 ) that the modern youth are so silly / perversive / just awful etc . It 's complicated to judje though . But when I looked at the tables after the costomers had left , there were so much leftovers as if some of the dish were left untouched . But sometimes I see costomers who order a lot of food and only eat a little of each dish . Food should n't be wasted , and both costomers and shops need to consider this problem . So I moved a littel to give them some space . I tried writing what I 'll talka about in an interview . The senteces below are ones that I made for small talk before having the actual interview with my job interviewr . even though I lived in Australia for 1 year , my Englsih is not perfect . I 'm doing better at Englsih than I ever have before . ( Frankly speaking , I used to say this expression like `` I 'm getting better in Englsih . but some good firend on this site corrected it ) . In Februar 2010 I bought a new one . I 've rea that this grease is cool , because it 'll cause sand and other things to not stick to the chain . Againyesterday I read the label on the grease and . . . I used it as was wrotten in the manual and it works . and it was my first time to hike with a bike and also my first time to be on the top of the vaolcano . The crater was just in front of us , it was amazing . So the result may not be too much valueable . I wonder why I do n't like the feeling of the upcoming Valentine 's Day , maybe the reason why I dislike the day is becauce Im 'm single , and have n't celebrated with anyone yet . some guy told me that I 'm too picky , and my expection were too high , but that was not true . I have to be patient to wait for my prince , the one that may not look good but has the responsibility to build up our relationship , the relationship that I 'm looking for is one where we understand each other , and no mather happend we can forgive each other . It was cloudy and raindy . This was a good oppotunity to improve our relashionship . Please could you correct my sentenses ? Adress : I live at Sunter Jakarta Utara street ( , ) Agung Perkasa 1 Blo ( c ) k J 4 And with futsal untill now I 've made a lot of friends . So I have to learn at least two languege . However , the decorations were totally well done ( they must have spent a lot of money ) and there were some big actors like Meryl Streep and Dastin Hoffman playing small roles in it . Many cherry blossoms were in full bllom and many people were walking and playing . Why does the govermment hold these flower activities in the fall ? My vishon Someday , I would like to go abroad for buiseness . I 'd like to make some sentenses to using these below ; If we went shopping together , I would n't go well - known luxuary brand shops with her . I know [ that ] , we shoud n't go there . I thought , `` This schoool is suspicious . `` It 's an honor for me to meet you on this webcites . The referense is below . At the same time , anoteh roommate said : `` Teachers ' Day is on September 20 , is n't it ? `` This time I could n't help but laughed . She has been living in Japan and can speak almost fruently . they were considring only buying one bottle of whiskey . Forunatelly I got a chance to study at a university in northern England from February to June of this year . ( In other words , the spring semester for 2007 / 2008 ) . But I saw a good site at my offce . I have n't met anyone in this apartment but I 'm looking forward to meeting inhabitans . Today I watched sequences from Mubarek 's trial ( ex - president of Egypt ) . I saw in old Egyptian movies that they put the accused in a cage , but I thought it was an exageration for dramatic purposes or it was only used in the past . I was wondering how he managed to remember who was representing who in that chaos ; lawyers and attornies were scrambling in the front . He asked in an angry voice for everyone to sit , and they moved slowely as if they did n't want to . Even though we do n't know the correct pronounciation in English , we can still type English words . So I guess it was a good desidion for me . Through traveling , we can learn to cherich everything that we have and encourage ourselves to work harder . When I took a buth , it smarted . These places disply a slice of traditional Korean life for both domestic and foreign tourists . Also , the Korean folk villages showcase the ancient techiniques of making pottery , baskets and insrument . But I want to recommand this place for foreign tourists who plan to visit Korea soon . When I was a junior high school stundent , I belonged to a basketball clud and I enjoyed playing games . After we got a new coarch , my club won the first game . new coarch , `` Thank you for coarching us . `` He said that our club It was important to have a good coarch to become betther . My mother is growing some harbs in my home garden . My favorite is Caffarel whichi is a famous Italian chocolate . Today is my birtyday . becouse I have many bad days When I met him for the fiirst time , I did n't know . Okinawan poeple do not have a good image about the American military . I thought he had not forgotten about hes exx - girlfriend and still loved her . So we became a firend . Shoul there be more government control of the Internet ? Some people say the goverment should reinforce control of the Internet . The goverment fears that in other countries the public can easily share information and in the end this may lead to political upheavals . Nevertheless , some people argue that the need of goverment control is to prevent frawds from using the Internet . But most people know how Internet frawd is and are more cautious than before . Hallo , I 'm Kana . recentry I 've begun reading a book by H . I want it to be like programming other computer langages very much . Today , I had three courses to take , but , after taking just one course , I must go home because I hitted my hip while stepping down on the floor . They are sooo sweet and jucie . I ca n't belive that I have an acne problem now . I 'm bummber out from trying to find a way to lose it . What does ' twist of lemen ' mean ? that 's because I do n't know when I can use ' be awre to ' It seems as if we have shared this bad conditon . My first food was scrumble eggs . I took Jyoban line from Ueno station to Katsuta Staion . It seemed to be close to the Kitasenjyu station . He was n't intersted in Tokyo skytree but Jyoban line . c especially funk musc ! My father is indefferent towards money . I should go to univercity now . the TV seid , BANH MI is the top favorite food in NY . of couse , sometimes I need to wear a swetsuit if I enjoy free diving or swimming in the ocean for more than an hour . A shark is bihind you ! ! In that picture , a shark was bihind a man ! ! It is so scarry . . . Hi everyone : ) My name is Arisa . I 'm planning to go back to there again really soon to work on my undergraduate deproma , and get a job there . Anyway , I congraturated him on his wedding and then I went to take a computer exam . MOS is an exam which tests my ability to process office programs ! I made some sentense . I went to the university library in order to stuby for final exams . to tell the truth , I have written an Enjlish diary before . . but I broak down . What do you wnat me to do ? ( We prefer conveyor - belt sushi restaurants to classical sushi bars , because it is less expensive and has an inviting atomosphere . ) But , unfortunatelly , I failed to take pictures since my camera had run out of power . 4 , Click `` Upldate `` button , and that 's it . Their expressed policies in the manifesto are as follows : The government subsidyzes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . I 'm so glad to jion you , a platform from which to communicate with friends all over the world and improve together . Their songs and consert are very powerful . Meals are also more expensive than it was before Spring Fastival . When my classmates asked me about how my spring break was , my ansawr was homework , writing , writing , homework , and homework and writing . Forth , I ever chat with one guy in a QQ group who ignored me after I talked only a few words to him dued to my bad English . With my hardwork in this passing days , I could veiw the progress of my english . From now on , I will strike while the iron is hot to further my Englsih study . The snow masks the top of the moutain , even when the sky is clear . There 's been so much news about Google in the last two days , since Google indicated it 's considerring closing its business in mainland China . Philippine advanture I am learning how to survive in the Philippone now because the people and enviroment here is so different campared to Taiwan 's . Every jeepney on the roads has a different appearance and I guess they are all decoreated by their drivers , some are really cool . If the jeepney is full , the other passengers will stand outside the jeepney hodding someting ( ? ) to make them steady , would you dare do so ? As a result , the heavy traffic pollutes the air terriblely . Foos here is sweeter and there are few vegetables . My mom has 3 bothers and sistrers , and all their family will come back to spend New Year togehter . They do n't know how to talk gentaly and I always just feel so umcomfortable and try to escape them . Althoug we are good freinds , but I still think it 's embrassing to show her my room . That made her sick eventully . Some students told me they want to come to watch the bee fireworks when it 's latern festival . teachers told me that writing a diary in English everyday helps you make sence . but I 've never tryied that before . Once you experience a striking event that affects youf , you can not help feeling this kind of event will happen again . around you thinks you to be less attractive and even to be ugry even thouh it 's not true . I assume almost everyone has exrerienced a similar feeling and realized `` I can not live that way , I wo n't give a hoot no matter how badly I climbed the tower and I had a beatiful view from the tower ! ! I found tenkaippin nooodle shop in Ebisu Tokyo . While I was trying to build a fire , my daughter was playing around and searching for wildlives . Of course she relieased them before we left . This day is devoted to the memory of millions of Jews killed during Sevond World War . We do n't have TV today and all public entertaiment places are closed . I tried to make plans on friaday , but it did n't work out haha becuase we dropped by taco shop . A Magnificant and gorgeous view greeted me , and I said `` hello `` . And I saw the mension ( ? ) of the owner of Ralph 's grocery store , and we went to a friend 's house to eat burritos ( ? ) ! However , as we chiled out and laid back on the sofa , they did n't want to attent the party . This afternoon , I suddsenly remembered my Lang - 8 's diary when I sat in front of my computer . There are some cities with over 1 million habitants . This is a happly fact . But , I think the most popular and usuful language is English . it 's really usefull . A : I do n't agree with this idea , but actualy , it is important for young people to learn English for jobs , licenses , and so on . In other proglams , she will take part in a footrace , a dance and the race in which all the students roll over big balls for about one meter . Her grandfather and mather will come to see it . It is a very intresting position . I wish every dream of yours comes ture . Becouse my univercity 's English courses do n't include speaking and writing . I hope summer wil come soon ! : D It was during bastet ball . We 'll Meet Again : The Most Beautiful Scene in All Movies about Neclear Weapons Tomorrow is Surterday but I am writing a test . . . but I was very nurvese because I had to play with many good musicians . I hope to meet a lot of friedns and have a great time with you here ! . My bad habbits I have some bad habbits . But recently I have been trying to fix my bad habbits . When he meets me , he always smily . Contect lenses The economy still has n't recovered since the Lefman Shock and we unfortunately have had a terrible earthquake and nuclear accident . I was suprised to see a juniour high school student ! I bought underwear and accesories at h & m . all the dishes taste very dood ! ! It was a pretly good day : ) Unfortunatry my university curriculum did not include English courses , so my English ability has not improved at all . However , nowday I feel there is a necesarity of studying English whether I like it or not . nowday , English is a mucual lungage to be used to discuse . There are a lot of turist from all over the world . But I like not onry Japanese culture but also the cultures of many countries . You know , it 's a kind of notebook in which I write my favourite recipies . Of course , one which is made baced on Chinese geomancy ( feng shui ) . However , I can nt stand the train rush hour anymore ! ! ( could n't ) You may feel thatyour ribs are nearly broken , or that you nearly lost all your sensus from the oppressive feeling / strain on your chest . Actually I 've heard that there are alos severe traffic jams on the road among commuters in the morning in some countries , so I dont know which is more stressful - a crowded train or morning trafic jam . Now , I tortally enjoy managing the club . I am always thinking about how I can implove our team . They are a wish for especially boys to climing higher and higher or rise up and up in their lives like a carp . They will collect 1000 charity bags into which are put various things , such as stationaies , toys , animal dolls , books , candy , cookies , sweets and so on . She said to me , `` I like Japan and Japanese people , so I will stay , even though 90 % of my friends have returned to thier home countries now . `` That was in March . But , strangely enough , I can naturaly wake up at the same time as before . Few days ago I luckily met Andy on the Internet , he is also involved in the mentoring program , as a mentee . Can I have him be my mentee , if it is convenient ? At the break time , my class mate gave me a sandich and I ate it . After school my classmate and I went to a foodcoat and we chose Indian food . But after the last election held this August , the LDP failed to continue as the ruling party , and gave way to the LPJ . I worked in a Japanese restrant for four years as a waiter and cook . It gave me a strong sence of responsibility and helped me learn the importance of communication . Would you teach me correct English , ( space ) if it is not too much troule ? When I went into the shop , I was surprised by their manu and atmosphere . But it 's difficulut to make them by myself . It 's been a while since I have logged on to Lang - 8 to write a diray . Japaense SNS `` mixi `` But these days , many mixi users have stopped using it , and moved to `` Twiter `` . I am now having a plan to study aborad in Britain , so I have been to an english cram school for a couple weeks , but it 's hard for me to improve my weakness . The romm is packed with people . If you eat too muh , you wll pack on some pounds . English clss He always talks with `` Thank you `` `` That 's fine . `` , `` Good `` , And he 's very fasionable guy . The last perosn is Barney ! He is teaching about how to conversate well . We had pizza while conversationing with other freely . It was my fiirst time talking with a guy ( ! ) in a coffee shop ! Please check if my writing is corrrect or not . Rencently , I 'm crazy about ' gossip girl ' - an American series . Love , sex , scandal and framing are the hot points of their life , endlessly and addictedly . The complicated love game and expensive fashion of the show acctracted many people 's eyes including mine . I think that 's the reson why this serise is so popular with people all over the world . I think my presentaion was not good enough beacuse I was too nervous ! ! But I 've decided that I will go aborad next year ! ! ! ! ! ! I want to write eassay . Now I found this site and start to write English dialy . I decided to send a text massage in English as soon as possible for studing English . I tried to spand time with my son on the weekand . But , I had such a hard day on the weekand , so quite a few tourlists come here from abroad . oh my godness . . . . . I graetly appreciated Samgoht 's review . So I still went to the `` International business negotiation calss `` . It is the most chanlleging part for me . I felt a little bit embrassed at being incapable of performing as well as them , so I seldom speak in the class . They all agrred on my terms and it made me feel so good . My ( self ) selfintroduction . Since I was hoping that Tokyo would be elected as the next place of the Olympics , I was disapointed by this election . Olympic is the most popolar sports ceremony . and I want to wacth this event directly . They offten wake up early , and go to sleep late , which me feel challenge around . is somewhat unbearable . However , the most depressing thing is I might move to a new compus with my classmates that is far from the city center , far from my girlfriend , far from my love . I have no choice but to try a long distance love . He is a very dependable worker , and the boss will promote him to supervisior in the furture . It was a J - leage match in which Sanfrecce Hiroshima ( our home team ) fought agaist Jubiro Iwata , and they 're going to fight in the final of Nabisco Cup in Nobember . ^ ^ The result of the game was a tie but they needed to win ( ? ) to move up near the top rank in the leage . Now I 'm making up my portfolio for my . job - hanting . I found sometnig in front of us I was suprised that 5 chikens were wlaking My fiend said , They sometimes apper and I thought that this movie was a commedy . because the aliens and humans were gambling and buying and selling meat and catfood food . connect with last sentence to do walking instead of runnning to keep fit . prepared dinner with my mather . Usually people are afriad about the future or the past . When you live in a foreign country and get a cold or virus , I 'm sure you feel more lonly than you would in your own country . I just started using Lang - 8 becorse my English is getting worse . I had been studying Korean lingustics in Korea My photolog blog 's text OK , A little about myself , I am 22 , I like music ( Leona Lewis is my love ) , sometimes I play the guita , but I am really not good at it because my hands are so small that I ca n't hold the string correctly . Although , when you want to have something you should try to be consistant and learn to love it , right ? I 'm a Japanese web programmer that is studying English . I want to talk with people of a foreing country during a trip . How can he remenber people 's faces ? I 'm going to go on a business trip to Nagoya city to attend an exibition about dental techniques . I 'm going to go to Germany and France during the Cristmas holidays . I want to see the cristmas market in Germany and go to Paris . Actually , the stitnt at my current job has been shortened . It means mountain girl , yama equall to mountain in Japanese . They wear colorful sports clthes and with pretty bags and shoes . Of cource I have climbed the highest mountain in Japan , Mt . Anyway I ca n't recomend climbing mountains in the summer . I ofen felt thrilled and could enjoy those all . Actualy , I have a sleep disturbance . This sicness is called `` Periodische Schlafsucht `` . Drowsiness makes me embarrasse . The doctor gave me some medicin . It seems to complate the recovery , usually by the age of 30 . The next day was a long - trip day . We traveled to places as many as we could : Tian ' anmen Square , Summer Palace , Wangfujing Street , etc . We took lots of pictures , especially at Summer Palace . It was definitly a nice place in Spring ; the warm soft air blew , the green mountains appeared to be tumble masses , the lake lay smooth and clear , and everywhere in it was a fantastic picture . You would feel relaxed and happy . However , there was one thing I did n't like - there were too many people there , people people people . . . A consultantant I saw yesterday told me that he painted pictures for fun and sometimes put his components in exhibits . He also * said he should have painted ealier . What is the diffrent ? I want to go abroad on business near future , so I neet to work hardto learn English . I went to karaoke with my firend ! I went to an Indian style restrant with my new friend . her manners wes really bad . She was extremely inpolite to the salesclerk . When I was a univercity student , I was a part time salesclerk . I used to seeing inpolite attitudes . I felt bad for salesclerks all over the warld . BGM `` Natural Beauty `` Kimi ha tennnennsyok puburished 1981 This CM was boadcasted in the Summer of 2004 . Stress makes me inflexable . My enegy is being decreased more and more . I want to go to Vennice with my friend . and then visit Vennice . Classics makes great effect on our life because they can teach us how to confrim our aim and they can help us figure out things that we must hold , they can tell us what words are the most beautiful and make us feel happay , when we are reading classics . First , in the modern times , people have more and more work to do , so they hav n't any time to read books . Can I meet Arnold Alois Schwarzenegger ? LOL I feel nourvous now , but I 'm looking forward to going there anyway ! : ) I spend most of my time ( conscious and conscioius time ) in the library . I decided to get some excercise every day or every week to be healthy for my family . The movie makes me feel `` disgusting , rediculous , warm , and suprise `` at the same time ! I was reading The Guardian this morning , trying to find some interresting news when I ran into this subject : URL I think we 'll get recover from this situation soon and wish for the peope in Miyagi and Fukushima a better life and peace . Today , I went to `` Shionoe `` with my garlfriend by motorcycle . The Amego was good tasut . At this moment , there might be many peaple wracked by violence . I think a person who is not suticefied with their life is usually violent to relieve their bad feelings . `` He loves snowbording `` was in front of this sentence . `` That `` in this sentence points to snowboridng . Can I say `` It 's righ up my way `` ? Some people think it would be a good idea for schoolc to teach every young person how to be a good parent . The class may touch on the parents ' difficutlies and the students can understand the tough situation . I do n't know the reazon . The reason why I agree that meats are better than fishses are as follow : There are many trees near my place , and lots of cicadas are singing from early mornig till * midnight . I am goint on a vacation tomorrow . I liked ' Romance ' songed by Yoon Sang Hyun and Yoon Eun Hye . And also liked `` I Love You `` songed by Narsha . For example many goods shown on comptur screen are n't what you actually get . Today , I read an interesting arricle in the newspaper . Ten years ago , NY was number one , , the second was LA , and the third was Bankok . About my Hobbie My hobbei is snowboarding ( ^ ^ ) But I did it only once when I was fifteen . I belong to the snowboard cirkle with my high school friends . I went to a snowboard goods autlet on this weekend . I boghut gear . Hello , this is my firts post here . I want to use English fluentry . Preachig is dfficult . Lately , I often listen to the CD `` Rythm Nation 1814 `` by Janet Jackson . I endeavor to deal with this promblem . 2 . I rndeavored to get good marks in the mid term exams . I had to haurry to I 'm going to th hospital But , I know I have to study basic grammers and words . This book does n't have a lot of sentences that explain grammers and words . At leaset its possible to buy it this year . So it is a helthy fruit . Because of the break down , there are some unconvinient situations . Because of lack of electricity , some things are unconvinient for the uneventful people like me , but I 'm afraid for the people who live in the north east part and the people who depends on medical insutruments which needs constant electricity . I thaught `` who moved my cheese ? I wonder what this means . . ? `` Then I read it but . . . it was not interesting . Yesterday , I watched the movie `` Hally Potter and deathly hallows `` . I have watched Hally Potter movies released before this , I enjoyed this movie . I am looking forward to waching partv2 of Hally Potter and deathly hallows . at 8 : 30am on August 61945 the first nucler bomb was launched on hieroshima city in japan . The poeple did n't know what happened , The light turn to darkness and the poeple who were under the bomb disappearedlike sand . How it is go with wind I was hear about hiroshima bomb but when you hear about thing it does n't like when you see it Radiation from the atomic bomb chenge the human body and DNA of those that were not born yet . Perhaps I am a lazsy girl . Lately my daily rutine start with Starbucks 's black iced coffee with sugar but no cream . The first one is a picture from a megazine . Second and thrid are captured pictures from Um 's MV . My favorite foods I usually eat bagle with ice cream and syrup for lunch , and I 'm going to do some streching tonight . I 've been getting up at unregular times latley Pleasse tell me your favorite book , will you ? she did n't understand that thire pics showed the same person . Worst of all , grammer is very difiicult . I like him , but comunication is very difficult . I was pretty hungry , so I oder extra large portion . `` Everything 's gon na be alrigh `` is a song that I like very much . This advice carries out my thoughs . If my mother deleted my facebook ID or Game ID of High level , I would not panic but instead quell my anger by writing something , but I ca n't do anything like him . ( but it 's so funny haha . ) I thought getting furious differs between individuals wathcing it . When I was in International school , I met many forigners and one of the things we talked about was marriage . The writer said that Japanse education is based on the national isolation policies ( ? ) of the Tokugawa Era . It means that Japanse education is affected by Japan 's isolation . But he did n't come anytime , so I coud n't see him . Yesterday , I had lunch with a collegue . She majors in vilin . She played the vilin to a piano accompaniment . For the concert my friend practiced the vilin day and night . This is my second time working as a pormter girl . When I took her to find service personnel , no body could help her because thet could n't speak English . There was an earthquake in Christchurch , so my mang friends worry I never feel flightened . I wolud like to learn how to write English good and to make some good friends . One week has passed sice I came to this farm . I 've been enjoying taking care of the ducks althoug it has been the first time because they are really cute . Wedding / marreid ceremony I met a Japanese guy who looked abouut 40 years old , and 20 years ago lived in the U . I think it is the happiest thing for children and young people to receive `` red papper `` from their elders . The tobacco association publishes that tobacco sales will be down by 25 percnts . It is a shame that even my English teacher 's English pronnunciation was very bad . The doctor suggeted to me that swimming is better than jogging for my injured ankel . On `` my `` way there , I stopped by `` a `` well - known ragmen shop . I spent 10 hours from Taipei to San Franscisco , and I stayed there for one night . I clearned my house and aired a futon . Like Harry Potter or Daniella Steel or Candace Bushnell . Internet shops offer more opportunities but all the books I really want are very expensive , nevetheless sometimes I can find something not crazy expensive and interesting there and buy books this way . I would like to make freds and practice English here . Does it depend on the situaton ? The Beatles are very famous in Japan and I 'm one of their funs . Anyway , the Beatles song that I like best is `` The Long and Windin Road . `` My favarite time is watching TV while eating side dishes and drinks . Android by google . These phones are the best in technology and have wifi , gps , 3g conexion and more . I 'm really interested in that . Also I likecameras with high resolution and a good flash most . I really take a lot of photos everywhere / wherever I go . Well that 's all for the moment but if someone has one of these phones then please tell me your experiencies with it . Morover , I only bought it about a month ago . I hope I can enjoy the rest of life here and the experience thet I got here would be helpful for my life . There are so many adults , thoughts of people tend to complication , sometimes , you do things unintentional , but it 's seems that you 're on purpose for others ; and then , you will ( see ) jalousy from girl 's eyes , do n't dare look into their eye , so cold , unfriendly . * * * * A Singaporian blogger on Naver , the No . 1 Korean search engine , introduced this site on her blog and I wanted to see how it works . There is an old saying in China , `` Trip to China 's five great mountains render trips to other mountains unneccessary , and a trip to Huangshan ( the Yellow Mountain ) renders trips to the five great mountains unneccessary . `` by Xu Xiake , a famous ancient geologist . Another famous scenic spot is the Guest - Greeting Pine , people usually wait there to take photos of a tree so vivid it looks like it 's saying hello to the tuorist . However , no matter how many companies I appied for , I haven ' t I go to the caligraphy school every Saturday . It was so deliious . But , I theatened ( worried ) that I gave them too much information about it beforehand . From what I have heard , some people say that movies will definitely be eliminated because they are old - fationed while other people say movies will exist until doomday . Big misundersanding concerning `` about `` by Japanese people ? Although I can write only short sentenses , please correct my entries strictly . If you woud like to learn Japanese , let 's learn each other 's languages together . Soon I found out that all its feathers were wetten by the rain . The movie was about the end of the world caused by the sun 's radition . I 'm a Chinese giri . In addition , I have learned a Geman word `` Hallo `` . Today , the traditional New Year event is being hled in my town . But it 's Alril already . I do n't know exactly who his first owner was . But when the original owner was about to abbandon him at a children 's playground around his apartment because he was so naughty my grandmom saw him and she asked the owner to take the puppy to my home and feed the poor one , he lived along time with us , but I 'm affraid he could have lived longer . I still belive some animals are better than humans . Although I hate skipping an appointment to chat with my Skyp friends without sending any message , I skipped four appointments today . gread closed But , many students in our gread were absent from school . So our gread was decided to be closed . I hve to learn more about how to use it ! MT stands for merbership training and it 's a time when a group of frinds take off for a quickly overnighter . I love this fantastic story / movie because of its beatiful images / cinematics and its cute charactors . They are ' Yae - zakura ' cherry trees and are of a differnt variety from the cherry trees , which bloomed at the begining of April . It was clair and bleu . In their mind , English is storongly associated with taking tests . Since globalization keeps going on , we Japanese have to improve our ability to communicate with people from different countries more or someday we 'll be left behind from other coutries such as Korea or China . Bassiclly I 've been depressed recently because some of my friends are going back to their countries soon . I saied thank you and good bye to him and went home . He was deppressed and unusual . Today we are having a forum about the reaerches that my lab conducting ! I will be back at Lang8 tonight if I am not exausted ! After graduattion , I will go back to Japan to be a teacher at a high school The reason why I feel so is that Japan is a homegenious coutnry , to make them broden their horizons I know that this story is a little naive ( I mean the BBC serial ) , but I like it mostly for wonderful music , costums ( Morgana 's dresses are extraordinary ) and pictures . The strong advantage of the book is the author 's orginal point of view on the `` old religion `` involving the Great Goddess , magic etc . and her dissapointment about Christians who does n't understand that `` All gods are one God `` . I am rading a book entitled , `` The Presentation On Secrets of Steve Jobs I will write a report and do a presentation on the book next manth . So I made an alubum for him . Fourth , I have a plan that I go camp with volunteer group , But there are n't many adult so I 'm worring if `` We can care about children perfectly `` . . . Obama 's inauquration speech I 've heard Obama 's inauquration speech by tube ( web - site ) today . I reseigned from my job last month and will work in NYC from Dec . 31 , 2010 . I like surffing , running in the early morning and going to musicals . Who can deny the cuuteness of the muppets on the children 's TV show Sesame Street ? If a waiter like him was exsist in the real world , it would really disturbing . And this will make your life brighter , I promiss ! Do n't ask me why , but she told me that we had to investigate cellor phones in Japan . Plese look at the picture . In fact , the boss was almost ready to make the dicision to expel her . One thing I really want to say , especially to teenagers , is that , please do n't hasitate to tell the boss the truth if Unfortunately , the whather was bad while I was in Taiwan . We actually concede that & nbsp ; it is n't a smart thing to try to keep this relationship after our saparating since we do n't have any actual plans to meet each other . I knew that this was going to happen the day he leaves this country from the beginnig of our realationship . & nbsp ; It does n't mean that I can handle this . Today , I will go to IKEA to buy my TV - boad . and I felt excited to see someond 's correction . Yeasterday there were just 6 people . . . It was conspicuous becuase my hometown only has few buildings . . A New Year 's paty was held . We drink alchool until midnight every night . : Colse your eyes , otherwise , you would n't see anything . A firefly was flying as higt as the roof . If they come agian , I 'd like to teach them Korean games . Recentry , I saw a lady wearing make up in the train . But many pepole cry over naughtiness of young people . All day , I was under the sun , I might get sunbernt . I saw a lot of sheep , and took photograhs . As for me , it 's unlogical to celebrate Christmas on this day , because originally Christmas was related to the Winter Solstice . it is an amezing drama : ) I regretted that I had watched it too early . I want to wacth it for fun and studying listening in English . I love English , but I am not good at writing essey in English . In fact I guess I might not sound too modest but I think I 'm fairly good in English , good enough to sunstain basically every type of conversation . I thought it drilled so deep into the soil that it had to be close to the center of the Earth by now . Monsters were coming out of the hole in the groud that the machine was drilling into . I used lettuse , tomato , onion , cheese , fried egg , bacon and a burger of course this time , and made the sauce a bit sweeter which was little more luxurious than last time . I went with some friends and that did not cost so much because one friend of mine gave me his ticket and so I flyed for free . My jac - o ' - lantern has two faces , funny and scared . I will take a white handkerchief from my poket and signal with it by waving . So diffecult . The video was about a person who tried to play bumkijum in the river where there has got cockodie inside . Frist , I saw this and not sure whether is a fack video or not , but I thought the man who did it should have ben eatten by crocodile or got a little hurt . Today I have finally rcoverd completely . Even thoght I know that walking is good for health , I prefer `` Gran Trino `` , with its lingering depth , over `` Hereafter `` . The AA English conversation club menbers came to the party . If an enemy came in front of me now , I would just want to say : `` Do n't look down on me . I wll knock your head off ! `` & nbsp ; To achieve a breakthrough on the Global Finaicial Crisis . My kindergarten was attaached to a temple . But we have many teachers and when they started teaching us they start teaching the same tching over and over . In efect , we can not speak English at all . I ran ten kilometers up along the mountain and then down the other side for another ten kilometers . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide opend view makes me feel freed from everything . If your native laguage is not English , do you remember your first English class ? I was so excited when my frist English class was about to begin . After surfed the net for a while , I got hungry and made myself spaghetty . Altough I do n't quite understand what the movie is all about . This actually happend 4 months ago I cried again and again and finaly my boss answerd me ! I am a student of the dept . of commce management . For example , my friends are from Okinawa , Hukuoka , Oosaka , Kyoto , and Sendai etc . . . And also , there are a lot of foriegn students from all over the world . It is the greatest thing in my life that I can meet many people who come from diffrent places ! On Novenber 2nd and 3rd , there was a festival at my university . The bad thing is I do n't have many opitions . vaction Abroad ! I will join my friends in Singapore and we wiil stay there for three days . Although the weather forcast said that the rainy season is over , It has been rainiing frequently for the past few weeks . When the solar exlipce could be seen in Japan , The weekend is over , I do n't like monday , and im login the lang8 to see wheather someone corrected my diary , but the result let me down . It 's not that I am missimg my family and friends in Korea ; I opend my refrigerator . I had some chiken . First , I marinaded the chiken in soy sauce , cooking wine I then rolled the chiken in Japanese basil . I fried the chiken . It was very deliciaus . I will cook it agin someday . I looking forwward to meeting us . `` day hospital `` meaning outpatience clinic Yesterday I arrenged the song for we will use for dancing , We could sing to the accompaniment of a guiter which the master played . My favorate sport is table tennis . Lang - 8 is very interesting because many people are comunicating with each others languages . but eveything that was said has truly become past tense ; which we can no longer change through useless force the beaty of your background resembles a beautiful burning fire Because I will want to enter univercity . I want to study biomecanics . I went to the driver 's license test course to pass the driving skill exam this mornig . I was so tired today , I wook up at 7 am and rushed to my training place . We started our rope skipping training in tahe early morning until 11 . 45am . Just like me , she likes to travel a lot , but we do n't have enought time . Last holliday we went to Normandy in France , but this holliday we are going to go to Italy . Today is the last day of my holiday in the Spring Festival . I will have to go to the office tomrrow and work hard every day , so I have to wake up at 7 : 00AM every morning . But I did n't speak Enilish well . The foreign conversatin school that I 've been studying English at for about five years has gone bankrupt today ! Japane 's English education system 's history . So `` English native speakers `` means Amrican . This morring , I read all of the handouts the teacher gave us . I 'm a bigginer here , but I 'll make effort 's to help guys who want to study my mother toungue , Japanese in turn for your help . I 'd really apriciate if you helped me ! ! I was involeved in a dance club . The only thing I can do is to apolozige , explain , and hope that he will forgive me . I think that this is a also reasons why people commit sucide here besides of the maintainig path . The atomospher was very quiet . The board said that those caves were used to preserve foods iseveral hundreds years ago . As I have long expected , today is the day that my new scool term is starting . Of course , I was studying hard at my house ullntil now . Human power created by peddaling a bicycle is being considerd in an institute as a renewable energy resource , says the Shukan - Press in Yahoo news Japan . It says you can watch TV for an hour using the power from peddaling a bicycle for 3 and a half hours . At fisrt it makes me angry , but then I think that they are right ! The sauce contains mustard , mayonnaise , a little bit of garlic powder and chile powder . Lagn - 8 is a special website . I 'm glad that I can use it to improve my second language here . I was shocked at the news about Asakusa samba carnibal 2011 . Tha participants are American , India , Brazilian and so on . We ate our lunch in buffet style and we were full and satisfaid . We bought clothes , ate an ice cream , playng a console game and talked about fun stuff . There were many dogs and kizs at the park . thay are really good and cute and have ideal figures - long slender legs , well knit bodies and biautiful big smiles . I am senier university student . I went to San Diego with my husband and dog for thaksgiving . San Diego was different from Chicago in weather , topocraphy , even in houses and people . 3 - Dreams . This interesting topic has been on peopl 's minds for a long time . Some peopls even say that dreaming is a sign that we are sleeping the perfect sleep . I 'm listening a song called ' Nothing Lasts Forevr ' by Maroon 5 . It was a SF & horror short story and very fashionating to me . And I found that it was maded into a game . I thought if this short novel would be maded into a movie , then it would be very interesting . I read a comment on Youtube that this novel is going to maded into a movie . And also someone recomented , `` Where did you hear that from ? `` When I searched for other information , I found a post that tranlated in Korean ( but not all of them ) . I 'm so exhausted from standing throgh the night . inai ! un daijobu daijobu , netto tsunaide , tomodachi no Kazu to hanashi wo , netto ni tsunaide , skype tachiagete , log in . . . but I 've made up my minsd to only study hard / concentrate on my study . Today 's dialy which I was just writing has disappeared ! I do n't have callange ( ? ) to write the same dialy . . . I have to prepare boild eggs . All of the media outlets here keep reporting news about New Zewland 's devastating earthquake here which is said to be New Zealand 's deadliest natural disaster . plese tell me how to study ! ! This is my first time writing songthing about love . I left my girlfriend two weeks ago . I can lon in on the weekend ! ! I want to improve my vacubulary and train my ear . For example , I microwaved the pasta that a coustomer bought and forgot to take the vinyl out which made the pasta explode . Anyway , we ` re going to meet tomorrow and I hope it will be a great randevous ! Many historic architecthers are much bigger than Japanese ones , such as temples and cathles . `` Please remember me kindry to all your people . `` Because of a lot of drinking chances , my condition and wallet funds drastically decrese . Today I encoraged myself to But my opnion caused a strong beacause we desides the final choice we need . mabey she was right . I 'm a little nervous , but I 'm looking forword to working there . Got an iPod touth I got used to traditional American happy endings and I hoped that everything would be all right untill the last moment . . . Naice to meet you . My hoby is fishing , skiing , and playing the guitar . I wathed the movie in einglish . I want to be good at Englsh . we were studing together and one of my friend said I couldn n't remember who paid the bill this mornig I woke up bording house of my friend S , when you eat out at restaurants you normaly can take the leftover home . or other europian countries , which will lead us to save food , money and the earth in effect . ( In Japan , the beggining of the semester starts from April ) Althogh I have the experience of doing man - to - man one - to - one lessons , this is my first time performing my lesson in front of a lot of people . And I was very norvous and could n't do a good lesson . Legs : Closs - legged , the right foot placed on the left thigh , and the left foot on the right thigh . The Zen Master struk my sholder when I lost concentration during the practice session . I want to improve my english , so need ur help to correcti my english : ) I choose to learn physics departement there If it 's not rainy , I would like to go to a sports event in a rocal junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operationg hours of their airports to accommodate passenger and cargo flights from foreign countries . Residensts near airports argue for curfews . Discuss both points of view and give your opinion with reasons . but , I feel a confatable mood . Hi , I want to learn englishi . haha I am a bie clumsy Anyway , it seems so exiciting to ski or snowboard in a foreign country ! But now I still have a musle ache . . . Please , correct this passeage . We will play a plactice game tomorrow . I could speek in English fluently . I would be capable of a heavy worklord . and be cheaten by vendors . It took over 40 minutes , but it was good exexercise for me . My laboratory was not comfortable since it was terriblly cold and dry . ( more concise ) Actually , I dicided that I am going to remain here yesterday . I couldn n't bear the heat . In addtion , many newspapers said the TEPCO CEO 's annual salary should be cut down more . Recentry , I read and voice the same article such as address , novel , thesis and so on . Ultimete Frisbee My friend Jeanie took me to the evnt . Before the game started and after it was over , I talked to many Amenrican students and all of them were so nice . The teacher complimented me on my pronounciation . The shoes that I orderd came to my clinic yesterday . When I saw them on the internet , I coulod see them black and the infomation about the shoes and it also explaned that they were black . What is diffrent between ( the ) and ( a ) ? How shuld I use them ? I want to hear about how cabodia is now from him . I think doing exercise is a sutable way for me and I started go jogging after work . But the problem is when I go joggin . I 'm a little bit conncerned whether I will get sick because of the hard schedule . . . I know a light daily excercise is good for the health but I should think of when to run . I 'd like to know your thoughtness about it . The silver weighed abouot 200 tons . I am ruluctant go to college because of the chilly and strong wind . I thought she would be very pleased when she entered the room and saw these small decoreations . When I saw her at first , she looked gogeous ; like a super model . Unfortunitely , I could n't see her there , for various reasons . We Japanes love that poetry . I prefer writing in English to listeing , speaking and reading English . Therefore , in English class , I sometimes felt embarrassed with my poor ablity of English I lern English . But even 8 marth wo n't be a day off because of the stupid university 's shedule . she said `` I watched an English TV program , It shows the latest English to us , and famaous TV programs have the power to keep anyone 's interest . `` It contains big fillins ( which are usually , meat , onions , carrots and potatoes ) I am a university student but I am not goot at English . It is so moist that we break a sweat every time under a non - air - cnditioner ! There looks to be much more sediment disasters by the heavy rain , espacially in the Kyushu area . They always make me feel happyness . Today would have been fantasitic if it werent for the bad weather . I heard and was very surprisd that there 's no rice cooker in a foreigner 's home . something like ' day book ' when you transate it from German into English , so perhaps it is something where I have to write what I 've done today . When I finished , I went outside and helped my granpa in the garden . It started to rain , so we came in and my granpa and I tryied to make a meal , but it was n't good , what we cooked . And I 'll do exersice tonight . There are many types of drinks that tasete like beer at the supermarkets in Japan . I was advised from the doctor I 'd better not to eat or drink too much , performmoderate exercises , avoid a stressful atmospere as gout is a desease caused from unhealthy wy of living . One of my friends from Canada has a lot of knowleges in improving health , ( There 's nothing to stop him talkig on that topic once he starts , and you 're doing nothing but just nodding . ) Although I 'm interested in this book cover and title , I hardly have the time to read this book as I am busy studying German and attending a Political sceience cource . But now I 'm in Beijing , so I 'm homesik . , I try to learn English , but I do n't like to learn words in another leanguage , which I do n't use in my daily life . If I do n't use a leanguage every day I 'll forget some of the words . I do not mean that 's bad , I hope everyone has a happyness life . Birds Singins I sometimes hear their singins at the same time . I can hear these singings near my house . Please check the grammer and logic in my blog . An appologize from Japan If you speak native English and want to learn Chinese , then we can be language parterners . Second period was boring , and in third period we ate tortillas and salsa ; fourth period was study hall , and in fifth priod , my friend and teacher were so kind , so I felt happy , and ( but ) the other classes were also boring . My stomack was full from all the rice . But it was very nice movie ! It 's a selious but heart - warming story . In the evenig , I did n't bring my text book to my English class . For example , I like to invite my friends to my place , enjoy my favorite sigarette in my room , listen to rock music , and drinking a little alcohol before going to sleep . . . so on ( souds like I am a teenage boy XD ) . Living under their careness make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . This is my first entriti , please , have patience with me . I do not speak English but I really want to learn . The Remains of th Day is a great novel written by the Japanese novelist This novel is the winner of the Booker Pize . The protagonist in this noovel named Mr Stevens is a great butler in a house called Miss Kenton loves him also and she spents a lot of time trying to draw his attention to her love for him . He knows that , but he represses his feelings and ignores her . The first choice is docter . The secound is engineer . But , so long as I do not give up , I konw that there 'll be an end to my hard journey . My car has a garanty of 2 years without any limit . I have it for 75 mounth ( ? ) and has my car running 30000 km because I 'm like a tourist on a car . I was sad sad , but I rememberd about yesterday 's work . The day before yestaday , I cooked rice with hashed meat . I had not cooked too much untill I became a unidersity student . So , I was researching it for a longn time . For exsample . . This situation has recentlly been severely condemned . I went out with Yumiko Syaku . Ms . Syaku is a Japanese actress . Then you put them into a pot with a glass of white wine , chopped vegetables like onions , a piece of garlic bater and a little bit of red pepper . Yoo seem happy . Today , it was held a display of fireworks in my rocal city and since it has been conducted nearby my house , I have to hearsounds of the fireworks every year whether I am unwilling to or not , because I do n't have a girlfriend . In fact , I have leraned English during junior and senior high school . We would often wave an antena to catch signals from the transmitter while monitoring . The explosive on the GPS collar was triggered when we pushed a buttom on the controller . Suffice it to say that the point of my research was to see whether or not the distribution of the persimmons coinsided with the emergence of the bears in the residential areas in 2005 . Nothing has happend yet ! I woke up around 7am and I thought that it would better for me to go back to bed so I could have some extra sleep , and since today is Sanday , I have a right to indulge in my sleep . I gave up on sleeing and desided to cook something . I borrowed the DVD `` Saburina `` last week . I wear llike the same clothes everyday . hello eveybody ! I was so excited since I did dont need to resume my assignment again ! Ah , I assume I 'm gon to move out of this house on the start of November , but have n't found a new place yet . . . althought my studyng habits are n't good enough , I 'll do my best . . In my eyes , she is an 88 year old woman acting as my grandmather and guardian , I wish her good health ! You have to know the customers , competiters , and products . My job is to loan out electonic devices . so I see many travelars . but we have few custumer - - only about 10 people in a day : ( I 'd like to talk to travelar every time I see them , but I 'm worker , so I shold speak fluentry in English . . , , ( confusing sentence ) I started a new project about food thes week . The first chapter tell us that it was the god who creat the world . Someone may believe that `` God creat the world `` and someone may not belive . As an elementry school student , I hated diaries like this . so I had a rong rest last night . Hellow . My name is Hayabusa . I 'm going to Hukushima with my boyfriend and club frieds in February . And going to Kyto whith my best friend . Of couse I will never fail to live up to what our parents expect of me : I had hope that during these days , I 'll be able to walk in our moutains , collect some spring flowers and feel the fresh , warm sunshine on my body . Every single room is already cleaned , on TV there are only 3 channels , so probably nothing intresting there . I think we are going to the French restrant with you and my daughter . Two reserchers . I do n't think it 's a bad translation , the language represents the national culture , if I want to understrand novels and the other arts from abroad , I do n't think it is a good idea to translate it . I checked it with a mirrow and did n't find anytghing wrong . However , it hurt and started to swallen . I am going to put some eye drops in and stop using contact lense until it gets better . A big earthquake happend in Japan The buildig which I worked in shook very much . At that time , I did n't know that many people sufferd from much more damage . I discussed this probrem with my co - worker who stayed at my home . ( Her home is too far to go back on foot . ) What should we prepare for in the time when the infrastructure such as water , gus , electricity stops ? I will graduate from my unniversity after one year . In fact , I am a little worried about my job which I thougut was so nice . I want to brige between Japanese companies and foreign companies . I think I want to take it esay . I knew it through a TV comercial . I wanted to look for some imformation about Harry Potter and the Deathly Hallows part 2 . Therefore , many peole have already watched the movie ; they had seen the kissing scene betweeen Rupert Grint and Emma Watson . I 'm not crazy like this but I 'm a bit disapponted as we have to wait for it until August or September to watch it on DVD . I downloard some applications like Kanjiryoku , Pac - man , Fairies Life . I do n't know thier details , but I thought that their family relationship had become very strong . They love a stuffe frog that we have . We got on airplain with Kero . I do n't know wherther or not they are better than the job I am doing now Your carrer is just beginning The head of my ward told us that he would like to hold a feast at our pablic house . When I was in university , I read lots of histry books . I can cocentrate ( center ) myself when I do . ^ ^ It will be tough , but I beilive in myself ! This Capilano Suspention Bridge is 137m long and 70m high / in height . But , it was very diffcult . I CAN ' T speak , write or hear English . This is the same for almost all Jpapanese people . I was taught English in junior high scool , high school and university , but I still do not understand English . Therfore , I would like to be able to learn english as soon as possible . It 's delicous ! Sometimes there are foreigners who have funny Kanji tatto . I 'm wating to have a meal I plan to mee my girl friend todat . I was glad to see famouse seanes of Swan Lake . Near my house , KIA has some voulanteer language classes , we call them `` Englsih table `` or `` Korean table `` or `` Chanese table `` This article was `` Disabled athletes have balloon in thier court . `` He ca n't speak because he is using a respirater . I start keeping my daialy entry since today . I 'll be glad if you enjoy reading my dialy entry . I noice that American movies ( are filled with humor ) , and Euroean and Azian movies have great story lines . My problem is , I ca n't stop wathing them . It was very exciting to watch the later part of the game , but the first half was boring bucause both teams attempted a brake attack . My friend SONG intoduce me this website just now , which looks funny . I tried to change to nother bus to go my house . It was the frist time I had taken it . I have someethigs harry . It 's my telephone and modeim to connect to the internet . I had solary 9000 baht that I spent to connect the inthenet and retren to my mom 2000 baht ; at the moment , I was poor . The theacher asked the class whether earning money was a good or bad thing . But I ca n't think that it 's a very very giood thing either . Fryday night ! It 's Fryday night . I have a sore throught from the cleaning spray and my hands get rough from the washing up . Today , I have two clases in my major . Weather is very good and very confortable . My company is crose to the park that the ward office maintains . Usually , people look forward to cherry blossam viewing . so most of people had cancelled the cherry blossam festivals . I will tell the folling story tomorrow . I saw Carice on TV Do you know the Philipino singer , Carice ? That may be the reason I feel afaid to meet foreigners who can not speak Korean . The Mid - Autumn dfestival My trip to Huzhou I 'm home . I feel so tired . . I want to go bed immediatly . . . . I ca n't speak english very well as if I foeger everyrthing I know john saied practice made a perfect which means it mekes me feel alive and makes happy There is a song named < who says > by Selena Gomez , who is Justin Biber 's girlfriend , which I love the best . It 's a beautiful song which has a large umbers of fans supposedly . But it is diffrently from the others . Intresting huh ? I 'm going to my grandmather 's house in the evening . Tonight is one of those nigths where you are with your friends ( who are dancing in front of you trying to have a good time ) , but you feel like you are missing something or someone . I just whant to share my thoughts . I hope tomorrow can be a beatter day . And a suiside rate has been increasing in recent years . So , the government needs to change the policy abpit worker 's environment / working environment . Moreover , because of its efficiency and sonvenience , we use technology even if we can do without it . And some traditional arts are in danger of disapprear because young people are less intersted in them . Hello , Thank you for coming to my paqe and helping me correct my journal entry . Then we sent retunable postcard to all of the 400 alumni , all men . After making the postcards , it was time to enjoy the full moon in autum with good food and good music . We grilled Saury on Shichirin , which are used for traditonal Japanese cooking of begetables , meat , fish , and other things . I like cycling very mouch . But of course people in the hypocenter got extremely damaged . Usually , I should write Koji , but the American teacher at my university said I had better write Kohji if I went to USA or any other foreign country as the pronunciation of ' Koji ' is more natural ! ! Another perosn in the passport center told me that if I decide to use Kohji , I have to use it all the time from now on when I write my name . I have asked my teacher friend how he uses potoshop to detate a backgrand . yesterday my friend helped me to clearn my computer and delete the virus After listenning to four announcements related to each of the pictures that were printed in your test book , you should select the right number , among four , that best describe them . because I had imgined that `` to hang up `` was used for `` picking up a telephone `` . The torouble is that I often skip it in spite of knowing I should read . I only played aboud thirty minutes , so I did n't sunburn , which is good . He is tannning because he surfs every weekend . Suprisingly , there were some people who were even suntanneder than him there . I suppose they occured some trouble . Just when I realized Nobember has started , it 's already finished . December starts tommorow . sister also jioned the exam . All her roomaters had However , my seniormates ( or upperclassmen ) said it was just so so , obviously my seniors ( or upperclassmen ) had confidence in passing the exam , He screemed because he wanted to sleep . I am sure that this message is true because I had experieced this before . Most families will watch special progrem for the Spring Festival on CCTV and chat together while waiting for the new year . I nedd to wirte slogans for some of these products and services . Write a sentence , [ space ] use comparision . Recentry , my hair falls out very easily . : O ! ! One way is from spring flowoers blooming . Some sales clarks are very friendly in Japan , for example , at Starbucks , but they never joke around . . . Ordinally , I go to a shopping arcade which connects with Shinsaibashi - suji shopping arcade . You can also say usually My English probably has a lof of problems . They are speaking , reading , writting and listening Anyways , learing English is harder than I thought . This time was the scound for me , It made me very relaxed and comfortable . Above all , the cost was reasonably priced . I thought I am proud of him and that I am a very lucky mother because of I have a great husband and wondeful son . The Olynpic have started ! Especially oral English and listenning . I was very sleepy , but I did n't have any classes , so it 's ok . Because I just woke up , I 'm really hungly , so I ate a lot of sushi . This dvice enables people to have relationships with others all over the world . But sometimes we do n't care about a person actualy in front of us . His looks as if he has no enthusiasm for enerything . He wantted to sleep but he could n't . Ah , I 'll go to Itary again someday . I bought a video game `` assasin 's Creed II `` for XBOX360 . The relationships are sometimes obsucure and many of them are formed impulsively , such as friendships and love relationships . In cotrast , Facebook has succeeded in expressing them on the web . The winter from the four seazons by Vivaldi is good 5 minuites after we had entered there , we had gotten sweaty in small steps . I think that I ca n't sleep deeply becouse of the heat . But I 'm confused becouse learning Italian is reading Roman but English is not . I 'll resume studing Italian when I have made progress in English . Today I found this language learnig site . During this season , flowers come out sprendidly , and evrything starts . I told to the participants about the folloing : [ colon ] there are black and white pictures Merline Monro . picture and in my favorite store , `` Bathroom graffity `` they sell pictures of Merline Monro gnawing on her nails ! In 2005 , there seemed to be lots of sightings of the bears in risidential areas around Japan . As far as I 'm concerned , they had been killed for nothing besides the safty purpose . Some parts of them are edible and I do n't know what to call it , but some of their organ seemed to be sold for expensive medicin . The Argentinan football squad will come to Japan on Octobar 8th to play a friendly match . The presale of the tickets began last week and I tried to get 2 tickets , but unfortunitley I coud n't get them . The official salese of the tickets started at 10 o ' clock yesterday online . There were so many people accessing the website that I could hardly access the parchase menu . Filnaly , I could do it after a 20 - minute effort . I met many different peaple . A couple of dyas ago , when I worked there , I happened to miss something . Yesterday was very hot and very wetty . I showed the pitures which we had taken in Korea . So I have no conplaint about it . . . exept the price . Evryone have his / her most dislike things . For example , I extraodinarily dislike cockroaches . Ich lernend Deutsch . Oxygen itself is not combustible , however it is required for nearly all combustion as a gas that supports the combusion process . But of course , while they were talking about their favorite topics , I could n't follow them . I hope this new job will be awsome and really nice . . . This title is not a Dniel Powter 's song ( ^ ^ ; ) . My favorite is travelling , especialy going abroad . We took a souna and had a body scrub and massage . I found that laughing made the people opend their hearts . Most of their storylines were like holiwood movies that I had seen before . I have invested almost all of my assets in to stocks , maily Japanese stocks , but also those of emerging countries . Then he will become a member of the Pharmaseutical industry in Japan , as well as myself . He will ues English for his work too ! Essay . . . soulution to Overcome the Threat I found that it is very good for eveybody who wants to learn a forigen language . Secondly , I hane plans to deal them on a website . As your guys see , I 'm a bboy and I have gotten involved in this since I was 16 . At 29 years old , when I was working at a swimming pool as a part - time job , an elementaly school student said , Yesterday , I applogized to my customers because I thought that When I was in my undergraduate course , I took some classes on French , but I 've fogoot most of what I learned unfortunately . However , I always end up adjunting the batter many times by adding more milk and powder . Two bags were discribed as `` purse `` , aonother one was `` clutch `` and the last one was `` mini bag `` . Nevertheless , In many cases , exam questions are about complicated glammar points that never occur in daily conversation . So this is the most exciting moment now that the sumer is getting closer and closer . I ould have kept a dialy on this site every day . . I wonnt to get a high score in TOEIC or TOEFL . `` espesially `` long distance love . So I 'd like to keep the motivation and be able to communicate with a lot of foreignners . But because I did not paticipate any organizations like Students ' Union , I get no extra credit . I do not know whether to jion same activities or study much harder . I did n't set my alerm . Bacause I had parted ( broken up ) with my boyfriend . Of cource there is a Japanese kind . I especially like the curry in tailand . And coconats milk makes the taste mild . I will go snowboad this weekend . Now , I am so into `` tomodcahi collection `` game on the DS . The story was based on a true story regarding a Japanese young woman ; she was a bride whose remining days amounted to only 1 month . So Chie disappeard from his sight by herself . But she felt shocked that the shape of her breast was cut off becuase of the operation . Unfortunatelly the happiness did n't continue long . Becuase Chie had cancer again . Her doctor told her family and Taro that her remimng days was only 1 month or less than it . So after crying I feel so sleeapy now . . . I ca n't write sentence in English without `` Googl Translate `` , _ and if I were to be speak English , I ca n't say practically anything . but the day of the exam is approahing . She got her driver 's lisence about a half year ago and has n't driven the car that much , but today , it was her third time to drive a long - distance Then , she loked into the mirror , she checked that the left side was facing to her . If thats what you mean . Then she was able to controle the car and ( it / everything ) was back to normal . It is so popular that you may have even seen it in Japanese TV programs ( I . e . if you like Japanese amimes / TV dramas ) . minna san dozou yoroshiku It was shocking to see that dogs sre dyed black and white ! It 's the story of the guy who want to be the king of pilates . When she reads it , my wife is so consentrated that she neglects my calling . . . I thoutht I had to ascertain whether the judgement of the Academy was reasonable or not , so I went to the theater . However there were some unclear expressions about the Blitish Royal customs . I thought Blitish is the Queen 's kingdom because the Blitish national anthem is `` God Save the Queen `` . I 've celebrated the Nular New Year for 3 days . It 's such a big holliday in Korea . However , I do n't understand why we should celabrate the Lunar New Year , cuz it would be better to celabrate the solar calendar . I would like to execercise and live more fully , starting tomorrow . Today I had a very funny nightdream with headcrabs ( from the game half - life ) ! XD Very strange . . . So I phoned her a couple minites ago . To all the beautiful girls and boys or kind - hearted men and wemen , I 'm a sophemore student , and will be a junior student after the summer holiday . I had an English conodversation class . Such as , The Mentalist , CSI , Hawai 5O and of course Aghata Christies series ( and novels ) . I am writting a diary of the lang - 8 community at first time . for example , my major papers , and preparing for a test , I am especially preparing for the listening test and voca test . Now , I 'm studying English at my universiry 's conversation club . It was owesome . Today , I ate lunch near my universary . It was telibble ! ! The Brihish meseum is famous all over the world . The meseum is famous for art . the meseum . The man is very embrrassed . He deldtes the picture from camera . I found I must make an effort perticularly on listening . After taking a college enterance exam , I felt relaxed . Of course , who would study in this stuation ? I have some variations , Japanese taste , Tyland taste , Indian taste , and so on . There was one time , a Nepali student in my class taught me how to make his coutry 's curry . He used many kibds of spices . Moreover the doctor asked the man `` Do you like a gampling , driving a car at a high speed or spending a lot of time on women ? `` Becaouse , this is my home twon and Many hula dancers were dancindg on the stage . I 'm ecited ! ! but first I will connntinue ! refrection . I think It is important that you think about your lisner when teaching English or other languages . I prefer exchanging on a regular basis , but irregualr pracitive is also welcome . I 'm intereseted in traveling `` . So I want to be a travelor . So now I want to be a parmasist . I will earn money by working as a parmasist . I 'd love to anser your questions ! ! It is four days long , and it is going to bigin tomorrow ! Yestarday I saw a very funny film about Bushmen . Yestarday evening the film was successfully downloaded and I had a lot of fun watching this old movie . I starded loving Bushmen even more - they are so smiley ( informal ) , so naive . It is about one Bushman who goes to `` the end of the Earth `` in order to get rid of a bad thinkg ( a bottle of coca - cola ) that has caused trobles in his tribe . I can recommend `` God must be crazy `` for everebody who likes hoaxes , nature and old movies . However I could buy the air cleaner for about 20000 yen at an Inernet retail shop . At present , I have a number of aquantances but as for me , I have only one friend who can understand my thoughts fully and stay with me whenever I 'm blue or down . Her name is XX , and she 's my best friend . Even now , I still remember exactly how I got accquainted with her . It was a nice morning but unfortunately , I was late for the frist day of class . My frist impression of her was quite great . Morever , she also has white skin and thin lips . And whenever I get into trouble and realling need a helping hand , she always stands by me and sincerely encourages me . The extracts are used for cosmetics and others to protect from aging or rinkles . But it is really difficult becouse NYU requieres a 85 score for TOEFL itb . Recentry I have n't exercised , so I was really tired . I also hope that I do not have to pay the twenty - pound reconection charge , as this whole situation is not my fault . About 10 years ago , when I went to kindergarden or elementary school , I qurrel with my freind . Sometimes when I go to the hospital , the docter says I am going to give you medichine . I bought a book `` foolish economy ! `` , whichi is a paper back pocket edition . For a few days now I 've really wanted to eat spagetti . and I really likethat the design . As you probably know we pronounce a word as we read it : in most cases there 's a corrispondence between the sound of a vowel and consonant with its character / letter . The announcer was joking about our difficulty of pronouncing the name of this volcano , expecially after listening to its real pronunciation . But the most groce , annoying thing is when he thinks he 's mating with Boubika , iieuw ! It 's just too groce and really annoying . Boubika is too docile to grawl at Aristos , or just muster up the courage to bite his balls off ! The British English accent is easy to regonize for me . `` Gyaku `` means opposit . As far as I can remenber , `` apple diet `` , `` grapefruit diet , `` and `` boiled egg diet `` were once popular with the Japanese woman . I do n't know how to further explain my feeiling , so . . . . I have never learnd how to write Japanese . Last Saturday my friends held a lunch party to celeblate my birthday . My friends visited a soy soysause factory . Street uses jumping landforms , riding on walls and gliding on the hand lails around the street during the competition . During the school festival , I was in the haunted huse all the time . So , I did n't wirte a diary about Jeju . Reacentry I often go to school On the other hand , the movie producer creat a way for readers to enjoy the atmosphere inside the book . Thus , the moviemaker may rewrite the plot or even creat a surprise ending . Yesterday was Saterday . Generally , anytime I go out out , I always find something that makes me remember some unforgetable memory - - or at least , it makes me think . And when the trafficlight just remained 17 seconds , a begger passed by . In his arms he was carring a doggy . It was not strange because there are many ( ? ) beggers in this town . I was wondering why a begger would carry his doggy when he begs . At that time , the trafficlight changed to green , and the begger did not have enough time to come to my where I was . Well , I am not a studious girl , I can not insisit on reading English everyday , even for 30 minutes . I hate myself becouse I ca n't learn english . I have already bought my flight ticket to go back to my contry . I think Destiny 's Child who split up in 2005 was the greatet girl 's group . As I mentioned in the privious message on this site , I 've been practicing listening in English by listening to songs . I think that the young people maybe can , but not the old eged people . So , I deciderd to go back to America again someday ! ! ! ! ! Cathy asks Miss Isabella why she has this actitude towards her . Miss Isabella confesses her love for Heathcliff and acuse Cathy of being a selfish thing for wanting Heathcliff for herself . Mybe I can help you ! A chikin curry , I will make it ! I have been very busy and I have n't written on Lan - 8 for several weeks because I had to write a article . Can you view this website and write your dialy ? ? ? ? ? Some of the them havewireless radios , motion sensors and touch screens and they each produce diffrent noises . It can be true that we can cmanage everything with only a phone . I think cooking is intereting , and I feel I can get relaxation from it . He met , face to face , an unexpectd enemy , Ethan . I think it is interesting because korea food does n't use rice paper . Recipe for Viernamese summer roll is that raise meat and various vegetable in rice paper and roll a rice paper . I hate studying writing English or grammer etc . . . In fact , I must take TOEIC test . Even thouth Japanese people ca n't use garmmer correctly sometimes . Espesially young people ca n't write right Jpanese sentences , I think . There is a `` te - ni - wo - ha `` in Jpanese , that 's how to connect nouns and vervs in Japanese . So I suggest for foreginer do n't mind such a thing , we can almost get it . In addition , Jonas was a Yankee and hated all Southernors . As I can see in this school , nobody is interested in foreing languages including the teachers . I ordered vegitable curry which twelve kinds of vegitables were included in it . but now I find it difficult to speak English influently , and to listen to others speak English . I think this is Asian caluture . I want to know when thay call a teacher , how do they call them ? Please reffer to Seeing so many forigners can learn Chinese which is already a hard language , I think I should word hard too . At lunchtime , Yoshinoya is usually crouded with many businessmen . However , I do n't play anymore becouse I got a referee license 9 years ago . I get to meet a lot of diffrent people and to be at many games . Today is remarcable for me because we planted a tree with my boys . How I wish to make our city beutiful and green as a fairytail . My efforts are awkard and shameful . In my opinon , ttipping is unnecessary . We should make people happy even if they dont n't tip . In Japan , if you go to a restraunt and you have a good time there , you can go there again and again . What they lose is each other 's trust and valuale friendships . I laughted when I heard this . : p Graduates of other colledge or universities are not welcome . Personally , I like being in the atomosphere of celebrating April Fools ' Day . However , I hate being teasted by my close friends for no reason . Each of us hate to be teasted by others . There is only one hoildy in the year so get ready for a fun and interesting April Fools ' Day . I thought that the flower school was a solem place . Thank you for correctings . Her abirity makes me change my heart . She does n't only have Grammer skill but also writing poem skill . Because since I havebeen been here , I never use my own car . I expecially like `` Venus `` . Although my youger sister loves Maru more than I do , Maru always goes in my room . Just trying this webside . She told me she has not talken to her father for more than a year . Is it a big deadl ? The way of my shopping has been convenient , meanwhile ever sinse the international company came to Japan , many local bookstores have gone out of their business . I 'm a little collecter of My Little Pony figures , and I love toys and all stuff from Hasbro . inc which is a toy campany like `` Little miss no name `` , `` Wuzzles `` , `` Rainbow brite `` , `` Popples `` , and `` Care bear `` . of MLP figures are still nice , but I 'm not atrracted to them so much . . I love toys and characters in the westeren style . this is becasue of the defference in the network system and / or the business custom in the cell phone business in Japan . He was very cheerful , active and having a great talk , which entertained his greatparents very much . I really enjoyed this moment . I feel very luky . In Japan , having a gun is extremely unnormal thing . Today 's ivent . When we judge our times as good or bad , we ca n't know untill the end . I work at the customers ' company with my collegues . the customers strated using it . If my guess is right , in other words , can I replace `` best regards `` with `` all the best `` in the furture ? Lately I have been staying up late ( late at night ) to prepere for the tests It 's been ove 10 days since I wrote my last entry . It was reall funny and interesting . His name is Paul , and he is certainly Canadian because I cann see him on a webcam . That 's also why this class is relatively expensive altough I only take it once a week . He told me that `` V `` is a drama about ailen and really interesting . ( is `` is `` in this sentence correct ? I did not sleep too much becaues I was trying to find them . Because my MacBook 's battery was not charged accidentaly , I went to a Apple store in Ginza , Tokyo . Hence , for peoole coming from different countries , the Narita Airport is more famous In recent years , the voluntaristic spirit has spread among the Chinese people , especially among youngesters . Without them , it would be a tough task to hould this un - precedent Olympic Games . English begginer Now I 'm planning to take a trip to the Phillippin because it 's warm there and I 'll be able to practise English with the Phillippin . And I must ask my pearents . She 's going to Indonasia with her husband . In Taiwan , Christmas is a festival that we celebrate with our firends or lover , not family . I think a plan is fiding a part - time job where I can live in the work place and get meals from the work place so that I wo n't spend money on rent and meals . So , she chose this chekered fabric . I can hopely exchange with many people . The supermaket is named `` FOOD ONE `` , one of the cheapest supermakets around . For example fruits , such as Oranges or Grapefruits , are importted by USA or South Africa . Meets and Fishes is importted from the USA or China . The purpose of this year is lerning english . Today I got up early to eat brefrest . I always get up late in the winer Besides today , the two things are to do the winer vacation work . I am determined to write English everyday , so I try to write in My Journal everyday exept when I ca n't do it . I got to know a lot of my future calleague there . Then I noticed that the department I am suppoed to join is ( somewhat ) smaller than the other departments . The news really shoked me ! Then , my college cannceled the enrollment ceremony due to the big earthquake . Now , I will study fot the test ( TOEIC ) on this sunday . When he was sent to the hospiltal for his serious disease which was caused by his unlimitied smoking and drinking , He decied to quit smoking and drinking . . . . . . But after about one or two years later , he beagin his ugly behariover again ! but he did not even care and contine smoking . . and recently he was attratied by lottry . . you will never win when you play such games with goverment ! And with the bad effects of such lifestyles , he can not contrl his emotions sometimes ! sometime I think his empor is out of hand ! he even roard at home . . but if this kinda situation contiune . . . . . It 's hard for me to get up eary morning . I am now woking in a foreign trade comany . I have to talk with my customers in English all day Any topic is ok . We had a ncie day . The gugle satellite took a photo of something which is almost 30m long and looks like a snake . They are n't sure if it is a real snake , but it is highly possiblility . I think that there are many misteries in the world . There is a very interesting mith in my town also . Two hundred years ago , a wise buddhist priest who can see the future told that my town would be destoryed by a huge flood . It was just a mith befor one statue was founded . However , we had a really big flood after that , so many dwellors pushed him to bury it . It is a very intresting miths to me . Scince I entried a college , I do n't have much time to study . more than 10 years have passed scince I graduated university with a degree in English . However , after graduation , I never really got the chanses to use much English . The tyhpoon has passed , and the weather is really nice right now . The new staff said , the other staff members taught her a diffrence way to do something . All of these are good methods to ease strss . Although we know taht is not good for the Earth . Please tell me some other good short sentences for use when prizing . Even after he went back to Sweden , he contiuned to study Japanese . from different contries also loved Japan ! ! ! ! Our appearence is given to us by our parents , and it is what we differs from others and it tells us who we are . Life is short , and we shoud use it to pursue the most important and valuable thing - - - - a beautiful heart . Now , I have become accutomed to working in Tokyo , I think I 'll try to resume this dairy . I alomst havd no time to relax myself . . . For instance , a hair designer would start learning to be a make - up designer , an animation professor would change his major to be a biology professor and a bus driver would start selling motocycles . First , let me intrduce myself . But it costs 4 times more than the oringinal one . that one second isn n't a second at all . I guess I could be pretty pissed off about what hanppened to me , > ~ < ) In love , I 've been passive excepet for one slightly unhappy experience . As we always say , money ca n't buy hapiness . I 've always been envious of people who have charming looks and perfact bodies . Just at the moment when we arrived at the doormitory , The wallet contains ( contained ) as much as 1000 yuan , which had disappearanced just in several minutes . What 's worse , he wil be faced with even more pressing economic problems ( during ) the next two months . Before then , I was a student and usually got up at about 9 a . m . When I arrived at my school , it was often abaout 9 : 30 a . m . Althoug , these days , I usually get up before 7 a . m . Working changes one 's life style . How diffcult ! I used to think it was easy . It is beacause I want to learn about international politics at my university , but I am worried about my future . For me , that way is realy helps me to understand english . Also , correct / proper gramer . actually I started using this site ealier . . kinda polite sentenses ! ? or dournal ? ! I think it 's quite similar to japanease mixi . . Just look straigh at the future and overcome challenges that we have to face . I 'll introduce to you my favolite tools . First , Lang - 8 of cource . Now I am reading The Mistborn Triology . I would like to make a cofession . And other lenguage . . . . For these reasons , the newspaper says the younger they start learning a second langage the more such classes will exercise the effect . Above all of this , William , the student , was kind to us and handsomelooking . Now a lot of words come to mind , but I ca n't expresse myself because of my low English level . Enghlish occupies a very impotant position in Korea . I joined an English class after work on Thersday and after the lesson students got together . Every year , we drink that after we visit a shrin , Finaly he said to me `` we have diffrent thinking because we are n't the same nationality . `` I feel really angry because he does n't try to understand my thinking . One of them is going to hve a match this weekend . Last weenend In my daugter 's class , there is a boy who ca n't walk by himself . When the boy 's group finished , he teied to sit down on his chair , but he fell down again and again . I wanted to help him , but I thouht I was little too far frm the boy and there were many other mothers or fathers near the boy . Finaly , a girl helped him . See you tommorow ; ) Hi everybody , I 'm Vietnamese and I want to study Enghlish . I want to make friends with you , will you help me ? In the last bar he went to , there was an accedent . Last night he was interviewed by the TV station and he appologized for his recent behaver to Kabuki fans . I was surpried becuase I was not that close to that friend . So how was my friend able to smell my hair even though even I could n't smell it ? It is good thing that karaoke is comunication tool . In short , I imagined a relaxed life , but my life is tottally different from I like to see out from the window when it 's rainig , but I ca n't see out from my office , I watched AVATA with my friend but we wanted to see the 3D film . From now on , I would like to write a entry on a dayly basis . I really apreciate if you are able to correct my entry . The theory itself is debatable and the so - called proof is generated from archeological excavations . I was so surprised and on a high 'cause it was really unexpectable ! Sudenly , they asked me to do them a favor and call a worker in a ministore nearby . They wanted to buy some cigaret and a moment after I walked out of the store and I became angry because I saw my girlfriend crying beside the car . First in The Hours , making a complexe and poetic recontruction of Virginia Woolf last days , combined with the lives of another women who , although they were not marvel writters as Virginia , they have the same feeling of anxiety and fear , the feeling of being prisioners in a society which was not sensible enough to understand them . I 'm a secreaty . I 'm going to get her a birtday present . On the second day , I might go to AKITA with one of my myfriend . Every year my children ask me the questions concerning the Holocost in the Memory day . Yesterday they asked me how could it happen that millions of peple followed the words of one - Hitler . I told them about the phenomen of the leader in society . I told tham about the totalitarian way of state . By the wey . . I 'm looking forward to paticipate in the X ' mas party with my friends . Becouse in the party we exchange our presents with each other . I go out and drink somewhere almost every night and immedeately I go to bed when I get home . However , in my heart , I want to decrease my spare time and I want to do things that will give me more benefits , not only financial benefit , but olso friends , talents , and a peace of mind . . . I also wish the foreign friends who are living in China can enjoy the spring festival with our Chinaese people . Now I think I need to ungerstand men more . Suddenly , she relized her cell phone had been stolen . In the WHO 's releas , the president of the American red cross board , Bonnie McElween - Hunter , highlighted that `` the credit of this success is deserved by the thousands of heath worker volonteers of the Red Cross and Red Crescent organizations who had taken the time to be informed , to raise awarness and motivate the mothers and the family circles as to the critical importance of the children 's vaccination . Ocarina concert at the Japanese - stle hall This was sixt time we performed there . I remenbered something writing just now . Yesterday I went to my favorite live - music pub in Sinjuku after my church visit . My home town is not in the country side but it is still inconvinient . If I can et really big money , I 'll go abroad to see world heritages . They all said that we have to save money to have a memorable cellebration party . So , I 'd like to deposite money to have big party of my own ^ ^ The Chinese Ministry of Education wants to change the writing of 44 Chiness characters , according to news . The Hallween Party ! Even when we are asleep together in bed , she does cnstantly even when I do n't want her to . I love her so storongly . I 'm a big fan of se7en , who is a korean singer and has become well - known thoughout Asia in the past few years . He advanced his carrer to the US but it was waste of time . Additionaly , the time when he spends with his family is the most important for him . because tomorrow is Chuseok holidaay in korea . It 's a good tool to study anothor language . Bacause before , I had the wrong sentence : `` How do you think ? `` From this experience , I have decided to correct Japacese for those who are studying the language and make mistakes ! At his last visit to the pediatrician in order to get vaccinated , this latest gave us some advices on `` weaning food `` which are contradictory to those given by the Korean pediatrician ! ! Izakaya is Japanese whitch means tavern in English . They heve one price , unlimited drinks system so I drank beer first and Sake next . and , I 'll meet wonderful peaple . AD tells me that I must make my dream come ture . Yestady was my friend 's birthday . We ated from the chaffing dishes . Every one of us was happy . Even though the activcty were over , we were still drinking . eventually , I wesh my borther to have a nice future and a happy birthday ! I have nothing to do all day long except daze quietly and daydreming . Damn , I couldent n't find one word to describe what I have done with my life these days , such BAD luck , keep bad hours everyday and achieve nothing . The next morning , I woke up from the dream to the electorical alarm clock . I study in The University of Engineering and Technology ( College of technoloy - Coltech ) . We live in Nam Thanh Commune , Nam Truc Distrct , Nam Dinh Province . I came accross these pictures while arranging the folders in my computer . If you haven not wathched this movie I reccomend that you also watch this movie . How beautifui a scenery ! Do you feel the same way ? Come on ! My dear friends ! I I guess some of you ` re studys Einlish is very hard . At laste , I know horror movies could make me have nightmares . ) OK , I will prepare myself and start again from an optmistic attitude . During college , I knew of verious senses of value and culture . A custom may be reasonable in some countries while it is n't reassonably in Japan . I want to learn the cluture ( and customs ) of foreign countries . Time limit is only 1 month , I am so nurves , , , , Tommorrow I should write my dairy early so that I do n't go to bed late . Ohaiyo gozaimasu - Good morning Komba wa - Good evening I will practic magic . When I was a university student , my proffecer told me that my pronunciation is dreadfully poor . I had nothing to do except laghing . ( HAHAHAHA . . . ) Sometimes , I talk with one of my friends , who speaks English very fruently . As ou know , Windows 7 was released today . My friend told me that I can borrow her custume for Halloween . Plactice Test According to the digram , children in some countries help with their parents well while other do n't do . Though it was truly a parrot , the conbination with the tree was nice . Today I went to a kimono shop with my mother because I intend to wear it to my friend 's weddding party . Japanease people do n't have many chances to wear it . I have worn it once at the coming of age celemony . I am worring about it . . First part in chapter one , `` Create a Pwrsonally , Professionally , and Financially Rewarding Career Doing What You Love `` . We talk to each other about our culture , food , clouthes and building in the past in our own country , and we try to compare between our cevilisation . We also talk about politics , sport , and trying to khnow what is new in arabic coutry ( because we are both arabic ) . I can read ( though I sometimes need to use a dictionary ) easy English but it 's difficutle to write in or speak English . And now , I want to begin learning English carefuly . `` I Call It Love `` by Lionel Richie is one of my favorit songs recently . Every time I threw hursh remarks to him , he accepted them all and kept on being sincere and sweet , except for my one word . Some people I know said that he is talking to me , because he wants a parmanent visa . He got furious about it and then said `` Foget about me . `` I strongly regretted about what I 'd done to him and appologized to him . Needless to say , broadcaster 's speach is amusing . Is it famous in your contry ? And I got conecter with iPod : ) I couldnt n't write down here my ideas . . Japanese citizens were stupid as well , and they kept believing in thier cruel dictators until the end of WW2 . In short all aspects of Japanese culture such as journalism , philosopy , scientific techniques , educational systems and freedom of speech were completely immature at that time . So Japan 's completedefeat in the last world war was inebitable . Oh , I forgot to explain about this movie and this usless battle ship . This usless battle ship sank in Okinawa with all its poor soldiers in 1945 . a battle scene was good but the other senes were boring . But I listen to a various music , Pop , R & B , Hiphop , Blues , Countly , Reggae . . . . But we can only chang new cellphones the day you bought them . There are many plase to go . I 'm looking forword to going there . Novemver comes in one week . Last Sunday I had the Toeic test and it was not quite good as much as I expacted and even after having this test , I lost my self - confidence about my English . I know I am verr lucky , furthermore owing to everyone 's help . I mean , I 'm so scared . I want to be a teacher , but I feel nervous . I am worried about not being able to provide the adequate instrucion , and I 'm scared of not being good enough for my students . Does this soud familiar to you ? In Japanese , there are meny many words wich are used only by man men and only or women . Some oversea studnets who really want to stay here have alredy found internships , but I am still struggling with my search though I am almost to the end . Recentry , I 've been really tired . . . . . I like the sitcom because it is realitic and the characters are so lovely . I 've seen many movies that Jeneffer has participated in . Todey 's Lunch I read a news site and the news site says that there wewe five hundred It is so interseting for foriner . My friends are foriner so I think that they will be interessted in that . Our city held the coming of age ceremonies yesterday insted of today . My parents bought my frisode ( long sleeve kimono ) for me . That early morning , I went to the beauty parlor , and I had my hair set and wore the frisode . Good mowning ! On Saturday I went to Edinburg for a vacation . english is not bad , but tiping is really hard TT It is very confortable to speak Japanese withont any stress and I am quickly drifting away from English . I am doing my best to recoll things about the pharmacy . Occupation : univercity student Finaly , I got my new driver 's license . creazy ? It 's already midnigt . It is so noizy . Sometimes my frinend and I go the supermaket to buy some sort of japanese snack to go with our beer , I 've got it all under countrol though . This is about educatioin , and I want you to correct it . For example , in en elementary school , you can learn the way of comunication not to mention studying , and you can learn to cooperate with your friends in a junior high school and high school . I think the tewm is a very important time for us , because you can find yourselfe . What is your dream , your thinking , your position and your best friend , through othere people . ( in anothere words , the people who do n't know how to comunicate with othere people ) Bcause I do not have a bad case of acne . When I speak English , it takes a lot of time to come up with right words so I guess I shold train my English so as to speak instantly . If his grandfather could eat a piece of memory toast which contains the memoey of Peter , his grandfather and he could chat to each other as before . why did Paku Yonha commite sucide ? ? : ( and he said that he really wantted to meet his Japanese fans . On the first day we went on an excurcion to / in the Kremlin . May 7th We went on an excurcion to the city . Suddenly , the bus driver hollered at me and said `` Congrandulation to you ! `` and kept explaining to me while I just try to figure out it as I woke out of my dream . I just want to write sth in English . and was mostly restting . So , we went to a zoo , and ther was a cheetah , which is my brother 's favorite animal and ther was a zebra , which is my favorite animal . then I can go to a Japanese colleage or graduate school . I watced `` The Sixth Sense `` . Yesterday , I watced `` The Sixth Sense `` on TV . Since it was something misterious , I was caught up in the story in a moment . I love watching the TV proglam ! I guess it is going to be a white Christmas tomarrow . / / URL Happenning ! ! The piano priced $ 130 seems to be accuate to a beginnner like me . I can connet a headset to it and play silently . I appriciate them . But a lot of people like too shopping there because it has a lof of things to buy . When I was younger I liked to go shopping at Sapan . They are open every day and all night , except Wennesday . They have a lof of dresses . In the Bangkok we have lof of supermarkets too , such as The Lostus , Big C , the mall , Centrel , Careful , Slam , Centrel World , etc . I live in Hokkaido , which is in the northen part of Japan . An auncle , as well as my cousin and his wife ( last month of pregnancy ) was there . Supermerkets . Supermerkets in Australia are far larger than those in Japan . I feel happy as inported foods are so useful ( ? ) such as anchovies , beetroots , fresh mushrooms , etc . I could n't get information about the tyhoon from my TV . It is prety good . I want to write a new dialy but I 'm so sleepy . . . so I created an account and now I use this servis . but guraduately I could handle and enjoy it . I have been so tierd since last night . Bringin back 4 chairs was so tiering . I think the new Singapore Presidnt will be elected today . The cafe makes a `` hanmade pork cutlet `` . So they depended on their relatives , but they teated them very bad . So the brother his sister all the time , up untill she died . I plan to go to South Africa with some Americans , and Brithsh in February . My friend told me I can use omegle to chet with foreigners . Actually , My mejor was computer science . First , I want to study Englsih and then get a job . ocassionally , you may grow very tired and frustrated . This is an open - air bath at the alcony in the room where I stayed . Because I felt very sleeply and the wind was so strong . Voice phishing is the ciriminal act of using a telephone to obtain financial gain . And amazingly , many people become victioms of their scams . It was intertesting , and we all enjoyed it . when I smelt somothing burning . So I looked over my shouldar to find my favorite my favarite blanket burning a lettle and fire was about to happen . but after the happening white smake lay around in my small room , Podcasts are amaging ! ! ! The title looks like it has a special meaning , but acutually it has none . : p So , starting with an easy question ; What do you think about lerning languages ? I have a plan to stay in USA next year , it 'll be the most owesome time of my life ! First I watced `` The Blind Side `` . It was at midnignt and so I recorded it on my DVD recorder instead of watching it . ( I 'm sorry this site is writen only in Japanese . ) Well , thanx for reading ! ! My English teacher in Japan reccomended me to study for IELTS before for staying in Canada . However it 's not nessesary for me to take it now for either school or immigration . However , I can not speak English well or understand talk among native speakers beacuse it 's too fast . So , somehow I try to listent to their lines , but it 's too difficult . I drank alcohol which name is Soju ( kind of Korea vodca ) last night ! In the past three mounthes , I had to join in my company for practices . It is realy suited for me . I mean , English is sproken all over the world . Becouse , I do n't like carrying around an umbrella . The orijinal is a manga written by Shotaro Ishinomori . I haven ' tbeen back to Japan since December 2008 so I was so excied about seeing my parents , younger sister and friends . I stayed my paerents house and had really good time . But actually I found this system very attractive because when people study a sencond language , it would be a great support if their writing were checked by native speakers . I am so apprecitated about the fact I had preapared TOEFL because it gave me many valuable experiences in Reading , Speaking , and Writing , Without TOEFL 's experience , socre , and training , I could not get those jobs in just two weeks . The university entrance mark will come out ! I am nerverse because ( I do n't think ) I ( will ) have a good mark . Vocubulary section 's results Mispronunciation or Mispelling - 19 % Actually , appropriateness and relevance as separate categories are kind of reductant . The bridegroom was the guitalist of my band , the bride was a staff member , and I was the vocalist . I want to send cristmas card to my friend . I heard that a lot of Finnish like Robert 's coffe . Is it ture ? Happy cristmas ! I am sometimes in a bad condition myabe because of my unbalanced diet . And then , at about 11 : 30 , my mom and I went to Waikiki to go shoppin and eat lunch . Mybe one day , when I start working , I will use it . If I give it up now , someday I could regret it . So , keep at it and do n't give up ! That said , I absolutly have to clean it up before October , because next year I go in to my third year of University . My program is called `` Arts and Technologies of the Image `` . I 'm realy happy ! ! I have reseved a mail from my friend in Korea . I mailed her that I worte Korea . She was so surpriesed ! ! Aomost 6 months Can I speak English very well with foreighn ? Most westen people have long arms , legs and big hips . I have a plan for leran English Frist , study grammar , second , read anything in English , third , see a kid 's movie repeatedly , fourth , write a diary . I remember especially the english exam . paticular the composition which asked us to write about a hot pot . God , I just wonder that there are how many Chinese guys that eat with foreigners . In fact , when I went to Canada last summer , there was many kinds of Englis because there 're many immigrations and foreign students like me . What I have to do is simple - put the clothes and detergent into the proper places in the machine , switch on some bottons and then hang the clothes in the sun . Through this inccident I learned that we must n't leave clothes outdoors when we go out , even thoguh the possibility of rainning is less than 30 % . Now we know they are peaceful speacies in general . `` I was moved by the ceremony and I am surprised at the things that vaorious countries take part in in the Olympics , even regions without snow . I was given souveniors from the Olympics . Even so , I should have kept practicing English writting . I only stayed there ond day or two day long . I do n't like ECC 's reading mehod . ( It 's not contenuous . ) The word SOHO , which is an acronym for Small Office Home Office , has become familiar sinse the Internet has become prevalent in society . Recently Japanese sewing companies are having trouble surviving because of low pay , lack of workers ( especially young generetions ) , and so on . They can use Chinease trainees with cheap wages since the middle of last year . Naturally enough , they have not been able to employ the Chinease workers at such a low cost . The Japanese government changed the minimum wage for foreing trainees . At tha time I did n't want to cry , but I could n't stop my tears . On the other hand , social enterprises can obtain funds regularly because they are run through the business mothod . I have been studying English , sinse I 'm junior high school student ; but , I ca n't speak English . At last I found a shoese store . I uesd to like partying and things like that , but not any more ~ ~ because lately every time I have been to one there is always some dirty secret for me to find out . I 'm trying to be a good girl ~ ` not saying bad things bihind other people 's backs ~ ~ but I always break my promiss ~ ~ girls are all about gossip I guess > < But now I realise how much happiniss I have missed during the period when I was dying to grow up . My favorite fruit is the peach because of its scent , juice , and sweety taste . The travelling time was more than 2 hours by car , especially because it was the first day of a three - day weekend ( Jul 18 is a national holiday in Japan , Marine day ) and there was a lot of trafficky . Fortunatelly , there have been no injuries reported so far even though 21 fire engines gathered and were fighting the fire for 7 hours . I will write an orizinal story . Because I nealry have a test . I write mistery , series . . . . I was concertrated on wacthing the fight . Every time a round ends her job is to walk around the octagon with the round board . Then she walked around the octagon and she blew a kiss at the cameraman before returning to her seat . I went to the university 's hospital even though today was Saturday because our doctor told all the members of ou team to go . We attended the morning conference and had short lessons from doctors , and had my instuructive doctor check my patient 's report . The messages said that my card 's number corresponded to the card company 's one , so they canceld my orders . I hava a bad memory . Recently I 'm trying to select English - speaking ones , beacause I can study English while watching them . The advantage is that I can watch it again and again , study natural dialogue , and for better or worse , learn some slungs that I was n't able to study at school . Russian is a wondervoll language because the sound when you speak is great . But I do n't like the votings , because the politic sythem is awul . I mean tracking ( change pages ) speed were slow and someteimes errors occurred . So I will wtite a diary about English Writing at Lang - 8 . But they are definately not . We are all Japanese habitants , so we must share the pain and the goal to overcome this crisis . How can I relex my mood ? farst day Intereview 1 Hello teachers on the interenet . But I have to take an intereview to go - which will surely be a hindrance for me . The following are some of the questions I will face in the intereview . I have put a lot of effort into the past 3 years to learn English languag . This included payingful a private tutor , taking English radio progurams , listening to pod - casts and using lang - 8 . The skills I 'll obtain will help me to faciliate meetings with foreign organizations . A Tyhoon will come to Japan . . . This tyhoon is so strong according to the weather forecast . Helll . When I saw the characters being chased by a big firce bird and flying about among the trees , it strongly reminded me of a scene from Nausicaa , a Japanese anime , where humans were chased by huge insects in a poisonous wood . In order to make the flash work , I did n't have a afternoon nap , but I debugged it after I finished it , it still didi n't work . I toally failed . I must practice English skil . I was suprise at how much water we use . From now on I will care about how much water or any kind of enagy I use . I want other people to care about enegy . We know that any kind of enegy is limited but many people pretend to not notice . If someone has a good idea that saves enegy , please let me know ! ! does it all make sence ? Therefore , that is cheap but the shop warker made a mistake . He gave me a warkman with speaker and cable ! Eventually , I bought a warkman and speaker 6000yen . There were many beachgore on the Zushi beach today . I think that writting skills of any language are very important since you try to use the grammar and vocabularies correctly when you are writting , that is also a key to influence your spoken languages . Many celeblities have the same one . It is a very sunny day today , unfortunatelly , the weather forecast saids that it will be crowdy and rainy in Hiroshima tomorrow . Althogh Mother helped me , it still took 1 and a half an hour to put it on . I offen call China 's embassy , My little sister actually had to study for an exzamination . She started working earyer than when I got my part - time job . The Majoriy of them in the west part of Japan are known as kuma zemi ( means bear cicada ) . Many people that live in the east part of Japan do n't know it and are suprized that it is so loud . Because , I went to a restrant with a discount ticket ! Then I went to another restrant and ( I ) drank some liquor . So , I restart studing ! I 'm woke up too late this morring , so I ca n't sleep now . That 's why I have felt abnormal about this summer 's climinate in Japan . Please tell me howe to write in English well . DoAre you interested in becoming Language - Partnaer ? I want continue my study at unefersete , but I am affraid that I did not do good on my exams . As you may know , wetbacks are Mexican and they enter America as illegal immigrtants . 80 persent of illegal immigrants are from Mexico and the other 20 persent is from Latin America , India , Brazil , and Chaina . The picture below are coffirs . The main reason is to get a job , earn money , and support thier family . Teenger Sayra lives in Honduras . Her faether in the America is deported back to Honduras . That 's why the farmer lose thier jobs and go to America . If global warming become worse than it is now , the production of corn will decrease 48 persent . One of my friends told me that the thing that you do not want to do is often the very thing that you need to do if you are atriving for success . celebrationg grandad and grandma . However , it is difficult to creat anything that does n't look like a blog . I 'd appreciate it if you would corret this . Which sentenses is better ? ? ? It reminded me of my baloons and how they used to fly in the clear skies . This is because there are many high school student who are studying in the libraly , so there are no seats left . I found the below canpain . If I get this money , I 'm want to make a piramid of hambergar . Hallo ! Nice to meet you ! They stay at my schoo and then tomorrow they 'll come to my house . This song is one of my favourtie . When you are lonley , I 'll be your friend . Today was the first time I have listend to this song in ages . I learned many things from him : Korean , Korean musuic , Korean culture and so on . Last night I have n't slept , because my nighbour has tourned his music sooo loud . . It make me agressive because he ist a Nazi - . - * I wante to learn about new computer technology and make it . When I went to a restaurant and orderd a Coke , the waitress could not understand my English . The restaurant was built as a place for disbaled people to work . Most beauiful place But temparature has been below 10 degrees . Some people say that it takes a pretty lonf time to be good at English , but I do n't think so . I was n't ready to speack any English when I got the U . Today , I bought Kimchi at a Korean maket on Geary street . There was something wrong with the bus that I took coming back to my house . Shoul I have got in a taxi ? I believe we can reconstract the devastated areas . I have made my son who is 10 years old learn to playing violine for two years , because my son was always just watching TV in his free time , and because I have good memories of learning to play the flute . At that time , my city carried out a plan to make this regeon active using music , and junior orchestra club was organized as a part of the plan . The city prepaired many musical instruments , and rents them to children for about 45 dollers per year . A private music school also got angry with it as competition with their business , and the school director blamed it in teir homepage . In my son 's case , the most difficut thing about it is putting off attluctive TV and making time for a lesson . He often frauns when I say `` Let 's begin music time ! `` I traveled and worked in Australia for 10 months 2 yaers ago . It is not a very toching story but I have watched the series since I was 10 years old , so it made me cry ! LOL I will definatley come back to this beautiful country again ! I am going to find a goot teacher and take some lessons . I want to communication with people from defferent cultures and countries . When I read the newspaper this mornimg , I saw an article about the ( I Attacheed the article in Japanese ) so that I get ascore of 800 on TOEIC . I think that I will enjoy myself more if I learn the culure and the history before traveling to the place . So I am going to learn the culture and the history of Hawaii from books and / or websites before visite it ! I try to read newspaper , some business magazines and website articles to inprove my English skills . But it 's too dificult for me ! ! SO , it took more than 30 mitutes to read just one areticle . I do n't think I can read that articles in the nere future . . . It 's easy to read and I can learn some usuful phrases . Besides that , it still has an antique little trian . And Ilike music , hip hop music . So please make me your freinds ! ! I think that Japanese people , of course incuding me , difenitely lack exposure to real conversation in English . This is in spite of the fact that most Japanese students usually study English for more than 6 years at school which is a form junior high school to a college . After all , the mojority of Japanese people can read English to some extent but most can never speak it . I recieved a picture of my female friend . She is twlve years old . So , I have to learn obout manegement a buniness . But I enjoy the challgenge . I 've experienced a roling power outage tonight for the first time . I want to improve my abilty to make a sentence . Has your father visited a lot of coutries ? Has n't your father visited a lot of coutries ? My favorite person is Ichoro Suzuki . Bcause he is a dream maker . Here we have a very large Russian speaking community ( appr . 1 million , we have onlye 4 . 5 mln peple in Israel in all ) . But our habbits and menthality keep us together . First dialy in English Today , I am writing a dialy in English . And at the time American ppl said ' ' Yah - ! ! It 's about the fanous historic detective BaoZheng . He was bery kind and helpful towards the common / ordinary people and detected ? ( resolved ) ? many complex problems . Today I sined up to this site . I can check your dialy written in Japanese . I wanto to help you , and I am suposed to attend one of my co - workers wedding . I thinkh has nice character and is a well rounded person . When he anounced his wedding we blushed out of shyness . And I will tell you what had happend at the event later , maybe it will be on Monday . This sait is diffrent . public or private , from primary school to junior high , hischcool to college , and university . This is my first dialy on Lang - 8 ! Today , I serfed the Internet as usual . I think it is important for me to write in English to learn correct grammer . So , from today , I will try to write a dialy in English every day . When I entered my office I found mony on the ground and I picked up it . I was at a loss whitch to bring it to the police station or bring it to my office 's director . After a while director said to me `` The money 's owner was founnd and he said to thank you for it . `` I tought to myself , `` I did a good job `` . What should I do when I feel life is treating me unfairy ? But there is no softs at my house . During winter vacation I will buy softs and go back home . They made announcements about Lion ( Mac OS ) , iOS5 and iColud , as reported in various articles . A film called `` The Stoning of Soraya M . `` has sturred controversy . Top Seles Hello . This week my classe begin . I am studyng to enter college , and it requires a lot of preparation , so I have to study hard . They give relief supplies and money and run relief operetions for victims . I wondered if I could do anyting for them , so I went to the Japanese association to give a donation for them on the weekend . I want to express an appreciation for the many people who help the victims in Japan , becouse I think they give a wish and courage to victims in Japan to live a positive life . Everytime , when I clean my room I was angry about why I have so much hair and why they ca n't stop droping . A Welcom Party Some people treat animals as objects and use them on a great scale since it can possibly maxmise the benefits for human beings . because my favarito lady is taiwaneise we talke in English . The LUMIX Phone is great because the camera is very high quality , as high as a normal digital camera . It also has seg , which notifies me of severe weather , such as an earthquake . It was a very actual theme because almost every person today has a personal accaunt in some social web . Every time whren I am given a topic and asked to talk about it , I find it is hard for me to arrange my thoughts : what are the issues in the topic , what to write first , how to develop it , and how to conclude it . Althought I see the many books about how to write essays , it remains a problem . After the younger guy left the bathroom , he went in the bathroom , but he had been in the bathroom about 15 mitutes , so there were a few people who were waiting for him . I 'm maiking a movie to teach the idiom `` come clean `` . Plese check it ! A : I saw You and Kana thare , `` come clean `` . It is a short - haired cat and has a bright braun color hair . Furthermore the climat of our room became more favourable and calm . In short , I think there is a big difference between guys ' disire and girlss desires . . . Acording to the book , love often increases , but lust just decreases . Jon always teases me that my Enlgish is regressing . And , I want to buy the lastest by `` ONE PIECE `` ! I have two elder brothers and one litlle brother . I read an article about The karete Kid I have watched The karete Kid 12 , 3 By the way , I 'm starting this dialy to study English . But I 'm very relieved bacause the mistake was not correct . I cleaned my house . My bedrom was dirty . I do n't wanna look like a wierdo . The thing that I will never forget is that an old geezer talked to me even though I had another custormer , and he did n't leave the store at once . Tourists can enter limited areas inside the mosque , even not isram believer . It was a drink that I had not known before coming to singapopre . It 's unhealthfulness . Then they cleaned up the nusery . Finaly , they went to a supermarket to do some grocery shopping on an errand for their mother . Many Japanese look fowerd to it every year . But Adlut have to think about something . Therefore , adlut shoud not be selfish . I 've forgetton a lot of the Japanese bussiness rules . It 's really imprtant for bussiness in Japan . I have n't forgetton this one , but when I 'm in this situation , I sometimes use some casual words . Come to think of it , I sat down in a chair without permission from my cliant . They go to elementaly school now . It is still chilly in the eary morning and night . Do you like to stddy in the weeken ? Thank you for helpping me correct my journal Do you use `` that `` when you say something you already mentioned or something mutully known ? ? Last night , the teacher is a blocak man . He come from Botswana . I hav n't hated Japan any more . I think this is a past thing . I studied aerospace engineering and probabily I will continue to study it in October ( another 2 years ) . English in fondaumental for my future job and for my study . . . but I struggle to pass from grammar to costruct phrases , speeches . . . I enjoy soccer ( football ) , basketball , cycling ( road racing ) , using my Mac and iPhone , taking photos with my degital camera , and so on . I 'm moving to another seet . But I forgot all the pain when I saw the beauiful sunset ! I could n't understant the story because my lisning skills are bad . Theseday , after work , I 've my waist ached . In the morning today , I was so surprized to look at my waist . I do n't feel regretless for sacrificing sleep . They are greate ! If I want to thanks you , I would write in the card to ex `` Thank you for cherring me up ! : ) `` But when I remembered that he has seventy milliar dollars when thre are a lot of hungry people in his country , I said that he deserves what happened to him because he didn n't have merce on his people ; we shouldn n't have merced on him . Eventuially , I want to say congratulations to all the Egyptians . You have been patiant for thirty years . Congratulations to all the youth , men , women , and children who spent more than two weeks in the streets making their demands . After he returns from work , he takes off his clothes , of coure dirty socks to be contained , in the room . I stuied german in high school and I stuied french and chinese in university . Anyway , I 'm going to eat evrything I want to eat . But today , I did n't have anything to do , so I went to the Japnese market near my home and borrowed my favourite DVDs . It will probably be performed untill the twenty first or twenty second of this month . He 's a menber of group clled SMAP . because I ` ve just signed up to the Lng - 8 website 3 days ago ! The rest of us was very suprised , but we all said together , `` Indeed ! `` For example , if a gay couple from California go to Texas , their marriage bacomes illegal , which means they are not married anymore . Thphoon 12 However , I have n't spoken English in a while , so I wana to inprove . I ` m stdying English because I want to travel abroad and talk to foreigners . However , most of the time I was talking to Japanese people . I had hardly talked to local people or foreigeners . I felt disappointed that I couldn ` t speak English and so I dicided to study the language . We are staing here until next Friday . Also , our hotel is fantastic ; we have a really exlusive and pretty apartment with the most beautiful seaview ( which ) I have ever seen . They ( have ) sent our dog to a different continent ! Amol is propably in China ! And last , but the most annoing thing is stupid French people . They are so rude , they propably think that they are the best in everything in entire world , and they treat tourists the worst . The number of subjects is few and easy this year , unlike last year and the yaer before last . Will I receive the answer by cristmas ? I will go to the same concert tomoroww too . She told me she had gotton a driver 's license in Vancouver . Because before thet , I had only been around downtow in Vancouner . If I had a driver 's lisense and a car , I could go to any beautiful place in Vancouver . But for now , I want to forcus on studying English and getting a job . I am a biginner of this site , Lang - 8 and I do n't know how to use it well . I would be greatful if somebody can help me . I submitted a job application last manth . Althoght , I got a sad reply . I have been suprise to see this is a nice website that has a lot of friends to learn language . Therefore I wanna see many things , eat something delicioius , and have a good time with my frineds ! ! ! I had a headeache , stomacheache , fever and a sick feeling last night . We deepend our friendship . I will spend the money on deliciaous on our trip tomorrow . I couldn ' t attend the class althogh I went to school on time . dialy ? When I listning to songs that are written in English and watch Hollywood movies , Aham ! I do n't want to do it and I get so frastrated . Sometimes I can write in English easy and comfotably . Bella 's pronunciation is especially difficult fot me . I went to my friend 's baby shower last Satuday ( two days ago ) . My friend tried fertirization treatments for the last seven years , so I kew she was really really happy about . giving birth to twins . We had delicious food and a lot of girl talk . We all cried when she told us about her babies . We were very happy and many people came and cereblated . with her . Studying everyday was so hard for me , I have to study English , mathmatics and Economics . I will traver to Busan , South Korea . The coloers which are used in the movie are so beautiful . If someone likes Japanese movies , I 'd like to reccomend that person to watch it . I went to the liblary this morning . `` POMERA `` is a writting tool . Wheter they 're brothers or parents , they propose marriage . Can you belived it ? I get transffered every three or four years . In the last while TV in Spain ( but realy I think in all countries ) has become crap . I realy hate them . Now I have more time to dedicate to myself , for learning about the things that realy concerne me . Many people spend time complaining about TV and those programs , but they continue watchim them , creating a vicious circle . I do benefit a little bit from promogeniture . This is a typical Japanese male hobit . And the techniqe called `` Mushup `` is interesting . Have you heard of this proffesion ? I am studing mining enginnering and I want to learn English , please somebody help me beause here ( in my city ) it is very dificult find somebody to practice with . I 'm on the burret train , the `` shinkansen `` I did n't wacth TV at all . I do n't get time to wacth it at all . So I have no idea about news liike nfluenza ( disease caused by a virus ) . There iare many people who have masks and do n't sell masks now . Today , I dicide to start a diary in English , because I want to improve my English skill . They are used in semicconductor , degital devices , and so on . Recentry , I like foreign dramas . My favorite drama is `` frends `` ! massege to . . . I hope you enjoyed being in Jordan with us , and goodluck luck , we wish to see you onother time . First of all , I ca n't correct my compositions , because I do n't know how to display the keyboad when I want to correct . expecing a reward after a good deed has never been seen in the Chinese society not untill recently . for example , some people claim for money after helping someone catch thieives or returning another 's picked - up purse . and whether a reward should be expected has arosen unprecendented heat discussions . Furthermore ( or `` In addition `` ) , I really do n't think rewards could stimulate more people into doing goos deeds , for it can only rot one 's pure mind and complicate one 's simple thought . my boyfriend Andrew got acquainted with my father and I think they deslike each other . . . I love Andrew so much , but I ca n't desagree with my father 's opinion . . . and it is my favoraite . and I 'm going to movie theater tomarrow ! ! ! I 'll make an appointment with a pediatrics on Monday . I really hope my doughter will be well . So I will go for it and learn somtthing from it . The passage said that if I ask someone the way to my destination , I should say `` Could you tell me how to get to ~ ? `` rathr than `` Please tell me how to get to ~ `` . I study English everyday to enter University or graduate schhool in USA . But I think I will eat before I joine my class , because I did n't have a breakfast . becase my major won in the quiz competition . and I will appricate if you comment on this diary `` You killed two innosence soldiers , But you denied the suspicion of murder so you will be imprioned . Take the defendant to the prision ! `` in fact , it was a kind of elivator . then , Tessadar touched someting that looked like a ball And , the basket moved quickely . Tessadar swung his arm slowely I shold sleep I 'm glat to find this useful site . I 'm a staff at a wedding celemony . I got a lot of messeges for birthday wishes ! Today , aSex and the City premiered in Roppongi Hills . We ate Shushi for lunch . I ate pretty great Shushi . I got really excied and missed japan while eating it . Fortunetly I did n't need to pay , Tomorrow I have to get up eariler , But I 'm in Hokkaidou now becouse of the summer vacation . And there are two answears . Which ine is coorect ? It was quite expencive , but I 'm feeling good though ! So it 's ok . Moreover , the slogan `` Waht are you made of , `` shows ownership of the watch . However , this advert can adress people who drink Pepsi . wohoo . . As you may konw , the highest mountain in Japan is Mt . Fuji is coverd with lava rocks , so it is not very fun to climb up , at least for me . ( : p North is a fascinaing mountain becouse it has a lot of alpine plants in summer . I 've been into mountain climbing these past 5 or 6 yaers . I went shpping for 3 hours . A pease of square paper was the universe to me when I was littele . I was luckey I did not see real / live boar while I was enjoying hiking : ) Because Ihope I can talk to forleign . But his words are relly hard for me to understand , because he always talks to me about philosophy , at the same time , I am a girl who majors in business administration . of cauce it 's not all . but I cought exprience of a lot of things ! A Return to Beginenr 's English : 6th day I 'm placticing ballet in my house now . I think we shold protect the earth from getting strange . You should be get a budy ! ! ! I get iritated whenever everyone else does . I think it 's really inportant to sleep well . I 'm majoring in law , and I 'm a nember of the GCP . GCP stands for `` Grobal Citizenship Program `` . Do you watch the TV program `` Frends `` ? Frends is a very popular US comedy . Frends is very funny . Non - alchol beer This week I have not been drunk of any alchol . It 's a miracle for me duaring the past twenty years . There are reasons why I have n't drunk non - alchol beer this week . In Japan , we have seven kinds of 0 % - alcohol / non - alchol beer now . When we drink any alchol , we feel comfortable and dull . I think that alchol is a time - robber . But if I dring alchol , I lose my motivation that I want to do something . Owing to non - alchol beer , this week I began to participate lang - 8 to study English again . It took for 2 hours , first 45 minutes for the listening section , and then 75 miniutes for the reading section , without a break between the two sections . I asked myself why I could n't cathch the answers I could at home and I became more nervous . I relly enjoy learning English . Today is the first day that I regisited on Lang - 8 ! When I went home , Paster 's waife gave me a ride to go home . I thout that it would be convinient if I have a bicycle . I knew that the one person who I have ever quarreled with is semilar to myself . I do n't want to metion his name here . I just hope that he has enough skilled and stuffto overcome the seducement . It seemed their opinions are conpletely different . We confused and mad , but we obeyed the indecation of Doctor F . This moning , I got my grade There are 4 parts in the exam which are grammer , speaking , assey , and listening . I looked around it and joined immediately , because I thought it was very usefull for me to learn English . This site is great for us to study foreigne languages . This is the highest temperture I 've had in my life . I study Enblish in class . konichiwa felow friends I finaly got a sneek peek of my comic on facebook but its backwards and summimasen about that but hope you can see its artistic work if do but vol 2 is better than one and im also try real hard to study more japanese so syonara freinds When the two boards touched a line 50 meters away , we went through a net tunnel , then stopped at a shlfe which had six toy oxes on it . We had to knock down the six oxes with little bags filled with sand before we hit a gong at the finish . The gruop that had the shortest time won the championship . I was hoping to find someone to teach me spannish : ) I am totally fasinated by this beautiful language ! I would rather the maneger would n't tell his secretary about the deal . Tere are these kinds examples in my textbook . Additionaly we can patiently hear their speaking because we know how they feel . This orchestra was structed by handicapped people . Yesterday morning , I had a regulaly medical check - up and drank a lot of varium . After I drank a lot of varium , I had to be rolled sideways three times on the stage of the X - ray equipment . I 'd like to try to make a good solution by using what I have leared this time . Peopele lined up for hours there . That means tmr is the last day of my holiday ! ! Finally I decided on my favorite one , and then I brought it to the casher . It was warm and sunny in the morning and windy and rainly for the rest of the day . They are so so cute becaouse they are very much like me . I tried looking for a paking area but all of them were full . . . Becausae it was a sunny day , I felt comfortable . Today my mother 's friend with her dauhter came by . Her daugter is 9 years old . And I will appreciate the hepful corrections . I realy respect them . There were people / students doing different activities , some were playing football , some were ( ranting about their naggish mothers and their shopping trips on weekends , some are were developing films . 1 I got a chancce to talk with him I hope my personality will grow through my realationship with her . I often egnore the alarm and do n't go to turn it off at its first ring and it makes my mother annoyed . I 'm teaching mathmatics . Oh and sadly , actually not so sad but troblesome , my periods just began yesterday . And coincidently , the day after I emailed them was the new member night that is held every two years in the choir . I started to write a disry on lang - 8 . We had such a good time that we decided to meet again next Wednesday at Nara , whre I live , I have to carry them form town to my palce , so I only buy necessary things such as rice , vegetables to make some soup , water , and so on . . . . . . Tomorrow , when I go to town , I 'll buy some cookeis for her daughter . I write a dialy for the first time . I got some live experience , and I used to think that all experience are usefull , no matter good it or bad ( the situation ) . I used to hate English ( I really DID ! ) , but now I love English : ) I 'm now using this site to find new friends and improvw my English even more ! I 'd like to speak these languages fluentry . Looking forwad to your `` Motor Season `` come soon . The contents of the other book is English for bussiness . The needed skills for bussiness is comunications and technical skills , is not the right English . I hope that I get qualification of a Yoga instructer and international of it . I ate susi . The point is that we ca n't determine what kind of inpacts the products will have on our helth in the long run even though they might prove to be safe in experiments done by scientists . After all , I think our helth is irreplaceable especially with the low prices fulfilled by the mass productions . becouse I had oversleping . I had gread time . It had softer fur than I thougt . * My grammer is probably terrible today . I have just started to larning English . I know that my English is not ecxelent . It is that I will be able to explane my true feeling with someone even if / though they do n't understand . I had better fhinsh now and go to the bed . Fortunetely there were no broken items in my house . However , I still can not ajust myself to this new life . Mealwhile , there were also many rabbits in the tree staring [ in ] at what was happening inside . After I finished work , I went to the chep restaurant near my house . And I took two math tests , one mechaniscs test , one biology test and one thermodynamics test on September 1st to 3rd . Yesterdsy I went to the city where I used to live as a student ten years ago . This is my first daiary . It is practice course and shorter than a real golf cource . plese tell me . These sentences , or parts of sentenses have some gramatical error , ( or misapplication ) but I ca n't understand what is incorrect and how I should correct it . 1 . Make students translate only the sentenses in which there are grammatically important parts . 7 . To concentrate on Japanese sentenses makes students think that they 're more important than English sentences . 10 . japanse has many ways of expression , as well as English . I hope to have a great night . Nagoya has several pleace to enjoy . I went to yoga lesson this moorning . I get stuck in traffic so I was late a littele . Today , I worked to clean and movemented my firefox blowser Because my old account occured some problem , , and I hope that I can do somthing that can only be done in a student 's life The eariest train is at 9 : 00 . Bills at Tokyo opend last month . I had been eager to taste it . I need to know not only English but also the choise of words . I wish a happy Chiristmas for the both of us ! A werid movie : It was croeded with many people . I found an interisting painting there called the `` Tinga Tinga `` . They 're calorful and beautiful with dericate brushworks . The reason is taht I am too lazy ~ HAHA ~ The actor is so cool ! ! ! ! I recomend it ! I 'm Yukiya Japan . The heavy grouth of white narcissus looked like a white carpet . And I had no idea what to say upon seeing the hill , decolated with bule Nemophila and rape ( ? ) blosspms , the most popular place in this park . This year I participated in the `` North Califolnia Cherryblossom Festrival `` located in San Fransisco . San francicsco has many large hills . Some people dancce with us while others took pictures . This link is precios to me and I would like to keep it that way . I 'll tell you guys about fasion , which I love . I really love fasion , clothes , shoes , bags and accesory etc . . . Nowdays I notice that with good sense I can make a well coordinated outfit with cheap or reasonable clothes . Fortunatelly , we have many choices because there are increasingly a lot of good stores , which are , Foever 21 , H & M , UNIQRO , MUJI , GAP and ZARA . Please tell me your tought . Well , this post is not about the date of Hikoboshi and Orihime , who are the couple of the Tanabata regend , but the one of my daughter and her boy friend . These3 guys can ( both ) sing and play well and they made theaudience laugh with thier funny things they said . Yesterday my friend and I went to a Restrant to have dinner . Bread ( toast ) gets mold quickly , too . Now I am learning English for CET - 4 , I like English , but I find it such a pian to study . Especialy remembering new words , I have a feeling I 'll nevre remember them . I currently use a `` futon `` , Japanese matress , but it is too thin to sleep well . I 'm looking forward to the deliverly . Earthquake and tunami . I 'm OK . So many people died in the tumami including some of this hospital 's staff and some patients ' families . There were collapsed shops , overturned cars , much wested ( ? ) material . I think winter is comming soon . I had n't eaten during the twenty - four hours before ( noo , I did not eat him ! ) , so I bought a burger because there was nothing else . The main charcter of this comic is a man who is an asasin . So he needs to disguies himself as a woman . I am worried about tomorrows wheather . It was for Christans who want to learn more about worship , praise , and prayer . It was a blessed holyday ! : D And , of corese , we have one too ! If I should break my right hand , shoulder or an elbow , I wolud use the others . I registed with this website to learn English . Before I 've got to konow lang - 8 . I really appreciate if you colud correct my bad English . Now I can see that writing on a computer in diferent languege is more dificult than using my native one . It would be a great opportunity to learn foreign languages and make freinds . I recommand these songs of his : Gick in the pink , Remedy , and Wordplay . only the sound of rainning . Do you still remember me from the day it was rainning ? Ykiniku is broiled meat . Reunion Pary First , we were a little bit nervous to converse with each other but after 30 minites , it was just like the old days . We got imformation from the service desk . I want to go anywhrere ! ! I guess it 's just a more polite way to ask for information or a favor ? I tried to conect the internet , but I couldn ` t get it to connect . Very siriously . My favorite game is syogi . Do you know syogi ? Finaly I found a good one . Also , we ordered ice - cream , tosts with ham , cheese , and bulgarian pepper , and herbal tea . In conlclusion , technology is useful for education , but we need to have the ability to carefully find and sellect information . For example , themal / electrical conductivity , lustre , ductility , malleability and so on . . . . . I went to the hospital yesterday , and took a lot of medecines . I hope they make me comfortable quickley . The medecines costs 2500 Yen . Favourite : basketboll I remenbered days in Japan . I 'm very happy to strat writte something in english . it Seems I like a good chace to improve my english writing skills . But the vocalist forgot the lirics : p I had a grest day : p Here you can see a picture from October 29th , 1929 , the day of the stock market carsh . There was a fly on the celling . My room had a high celling and the fly was on it . Besides , _ there are few powerful and united orgnizations or associations that can shoulder the responsibility for holding massive and efficient activities on a worldwidely scale . What is needed , _ therefore , _ is education and pubilising . Meanwhile , _ governments have an obiligation to encourage citizens to take actions to preserve creatures via legistation and public media . Likewise , _ national and international orgnizations aiming to save the Earth also can play an pivotal role in publising and education . I think the reason it is hardnessof to learn english is remerber vocabulary words and speaking fluent English and listening every English . Hello ~ I 'm a newbee haha I didnt mean I wanna be a singer or someone famous , I just want to do something about music . Auch ! I hope that I will find a good job adter . graduation I insist that dreams will come ture if I try my best to achieve them . I changed my job to an Amarican campany . I am going to keep up writing my dialy . I think this is a very interesting and exciting survice . Some peaple think hobbies are a waste of time but I do not think so . I have a stomatch to go to the office in such a day . My area was n't damege . But a friend of mine from Lang - 8 was worrid and sent me an email . Words are the smallest unit of languge . You should study this Before you start learing or speaking English I ca n't write good English when topics are complicated . sudenly , my English is going to sound strange . I would aprecciate it if you would talk to me in English , 'cause I would really like it . I 'd also like to have someone to talk to , so thank you . I hope I will also be usefull in teaching you Portuguese as well ! One Onigiri has only 150 calory . I lik Onigiri very much . Today I ate roll carvege lunch with my corworkers . In my office restrant , we can have lunch by 500yen . I could sympathyzed with it very much . even I have 3 accounts of twitter * I forget the oasswords of the two accounts , . . I have been eating a lot of fruits and vegitables . But I still have this constant feeling of laziness and fattness . . . Please do n't hesiteta to talk to me . In the city people respect the players who bring their own gear , especially viloinists or cellists . But they ca n't drink after a gig ( because drunken driving is a crime in Japna ) . Finally I recommned you play the cello if you have a choice between it or a contrabass . I lve my home and my parents . he told me to , cross the road , turn right and go staight along the street . Thanks million for readin my entry ! ! The Web is Degenarated Actually , it 's given us uncountable benefits and an unblievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on thier cell phones and who are absorbed in the web for long hours , not to mention myself . Fortunately , we didn n't sustain any damage . The next day , the Chile earthquake happend . I carrently share an apartment with a Chainese man . However , I 'm thinking about moving to another apartment , becouse my present apartment is far from my office . Today , I was very suprised to see a piece of Yahoo ! It said that KENJI OZAWA is re - starting his music activtiy after 13 years of silence . But because of Woods 's scandal , other important news was overwhelmed , e . g . the national health insurance problem , the Afgan war . . I 'm not noly excited but nervous too . I will send an emai to you when I leave for America . I really enjoied myself . The Theachers are jentle and nice . ( spelling errors ) I 'm a Chinese girl , I like speaking English , but I only speak a litte . class begins at 7 . 00 and is over at 21 . 45 , so I go to bed at 23 . 30 , I will studt for1 hour before I go to sleep . In about a fortonight , I 'm going to Sydney to study english for 6 months . I am really interested in global environmental problems , so I want to study that in univercity ( Im not a uni student yet ) . Japanese eat rice alomost everyday . last night I saw sseveral young jews taking pics with menorah and singing songs in the streets . ahaha I chaged my profile picture which I had taken on wednesday . Today , I listend to music and . . Now you have two opcions : soft yolk or hard yolk . Tret ' yakov 's Art Galery Many ages ago in Russia leves the merchant Tret ' yakov . He liked Russian art and bought paintings from great Russian paintists . This museem is named `` Tret ' yakov 's Art Galery `` , or in Russian , `` Tret ' yakovskaya Galereya `` . And now the Tret ' yakov Art Galery is a great Moscow museem . Every day this galery is attended by a lot of people . They look at pictures of great Russian paintis . Tret ' yakov 's Art Galery has not only pictures and statues , it has Russian culture and history , becouse these pictures show Russian culture and history . It seems like Obama will stregthen gun registration or reguration . 3 . shoot the ground or sky before shooting a fuman . 5 . anyone shooting a fuman must be guilty . I wanted to go to bed but I could not becasue it was too early to sleep . because of his fast pronunciation and an accent different from an america . anyway , today is my first day in londonm . I think I will need time to adapt but I belive I can do everything like studying and making friends . I went to shopping with a good frident of mine whose name is CHENG . She was shocked and felt ashame of herself . Yours sincerly , Plobably they will become sweet tomatoes . : ) I am waitting for my visa Today I 've decided to skip some classes at school and just rest a little , enjoing my free time , I hope I 'll be perfectly healthy on Monday ! First I will try looking for a new appartment . It helps me find a appartment quickly so I can save time . I do n't need to check the website The end of winnter vacation . I am feeling diamal . I am a real igonorance with the PC . Many pictures and paintings are exsihited on the walls , which add some entertainment to the place . My brother and I went to a health club in the evenig . In this thinking , every person has three unluckey years in his or her life . Sevastopol 's small streets are attrective for photographers . The outskirts of Svtpl were built in another way : small white houses predominate there , with colorful roofs and doors ( we took our photos . The rest believed the use of cyber cyberlanguage was more convenient than the formal one . While we are alive , we ca n't juge whether our life is going the right way or not . Although it 's a new generation now changed , the education coruses have not changed . That is the reason why untill I graduated high school , I hated Korea 's education courses . But after entering university , I was dissapointed , After graduating school , when I 'm looking for a job , the interviewers check my abillity in grades , licenses , TOEIC score . . . So we should try to think about it from the yonger sister 's point of view . The yonger one , Bess , has to depend on her elder sister , I 'm chatting with my friends on messanger to plan our Christmas party . I expalined the problem to the clerk at the bank and who sounded very kind . why did n't you hanp up ? `` I highly ricommend that if you have any iPod . Japanese are not as careful as Koea about it . I used a lot of expressions whic I learnt today in my entry . I deside to practice English by reading magzine ~ And I spent about $ 100 on magzine , so I really want to know how to use these words : If I have a oppotunity I would like to use the slang words from now . I would say to my freinds `` Hey what 's up , dog ? If you have cool a hat `` That 's hella cool `` If I get angry at my freinds `` Hey stop trippin , dogs `` What would I gon na be if I use those words for strangers ? I wake up in cold weat . Well , anyway , I 'm still waiting for my cell pohone to ring . I went to a trik art museum today . Some projects are implemented in big citty , such as Tokyo and Osaka , but others are in small and poor villages . hope I 'll be ok tomorrow morning . Each charactor in it has their own features , especially Jeeves . I bought some grosseries . Are the following sentenses correct ? Hi , my name is Javier , I want to learn English and make many friends , if I can help someone to learn Spanish , I 'll be glad to corect him / her : ) The fried vesitables were good too . I told them that I have a lot of small things and I often forget where they are , so I can this blsket to organise my things . I 'm studing English : - ) And I can help you studing Jpananese : - ) many people visite there . Many foreinger who were missionaries and business people used to live there . so there are many charches . I saw the first charch of karuizawa . One good thing is that I made my mind to try to speak to foreineers at the birthday party next month . Today I taked to my freind who went to same university . I taked him our lives and girlfreinds and jobs . But I prayed for a wish to be peace in desaster area in Japan and all over the world . First : after lanch I ate lanch . The Japanese Royal family has over 1000 years histoy and there are so many traditional rules . So she had straggrled about traditional rules and the pressuer to have son . she finally got mental diseas . She has an only daugther but she is loved by her husband . Actually , as I wrote long ago in an entry , I seldome look at those ranking pages . If I had time to read the page , I would rather use the time to correct my friends ' entries more . I want the webmaster to delete those pages , because the pages are not so usuful for me . I 'm just a 19 - year - old college student , and I do n't think my native langage is better than many other members from Japan here . They are probably thinking it wil take a long time to feel relieved , this means they will grieve for a long time . At the beginning , I think they are qualified to comfortting those who are now grieving . I will go to KYUSYU for a bussiness trip tomorrow . I work in a Hospial . Our relationship has continued for more than 3 years after we left the university and when we both got jobs , our destinies were separated unfortunatelly . These days , I watch Deseperate Housewives . I 'm tired due to shoppig and going home with very heavy baggageeveryday . I 'm afraid of making friends and studing etc . . . Japanese , espicialy thebaby - boom generation , believe all ofwhat commentaters say on TV . Schedule for tommorow Espesially the big problem is dismissal of temporary staff or part - timers . Went to a classical consert and Kamio Mayuko played as a solist with the Budapest Festival Orchestra . I have listenned to her performances by CD and TV until now . What do you usualy do while you 're on the train ? additionaly , I am paid 1800 Yen a hour . Nice to meet you . Would you mind correcting my plofile ? My English Language ( Gramma , Speaking , Reading , Writing ) is n't very good . Next saturday will be my friennd 's wedding . Recently , I learned the role of social warker . I think the social warker are an important part of the community . But , we do n't appreciate the importance of social warker in Japan . My life in Jakara ! ! I am enjoying myself so bad . It is defferent from my previous impression , meeting new people people , eating food , sight seeing and stuffs . As you know , Indonesia is still depeloping itself as a country and I feel enthusiastics every day by seeing people on the street and huge traffic jam . everone asked what my name was , where I was from , and how long I had been here for . One thing happend that happened surprized me . There are many hills in the city , that 's why I can always btreath fresh air when I go hiking . Most of the members came from European countries such as Germany , Italy or Rumania and they speak really well . Do you think that writing posts on this page is the only option / posibilities ? I hope I can enter my ideal college and get an ideal job , and take responsiblity . I thout , `` I will also come `` . after military training , my mother teld me that she wants to buy a house for me . Good mornig everyone . Here is the email that I would like you to crrect . I think that he is cool , but to tell you the trurh I think that he is coquettish . I like yakiniki very much . She was a travellar . Perheps that is because a large amount of students are studying in universities far from their homes , so parents use them as a way to give them money while they can not make money themselves . I think that a credit card has become a neccessary in daily life even for students . Thirdly , using a credit card to pay tuitions is also very convinience . On twitter , I heard my frined bought a peach from Fukushima because it looked very tasty and was very cheap . The first exam , called ' the Center exam ' is held on Junuary 15th . Fireworks in Darling Harver I went to Darling Harver in Sydney with my friends from Korea and Japan . It 's terrorable . I had to return it by the mext day . . . I tried to buy some shrits , but I did not have much money , so I walked around looking in department stores . Please imagin that if your eyes were bigger than your stomach at dinner . You would find a pile of leftovers in front of you . We heardly heard of the Asian black bears coming to residential areas after we started to stay there . Knowing how to use body language effectively is very important for me , beacause I think one 's frist impression on another person [ can help me to strive my dream job in the future ] ? This was the first time taht I used an Internet shopping service . I am very sorry that I have no time to correct the dariy . Because I chose this work , maybe it is the fale that l should do . Sping Festival will come , it is the most busy time in our company . I can not go back to my hometown to get together with my family and friends . Why it is the pegion ? A smeil for you . My shop is salad shop , and my lunch is always salada . I ate the salad fast , and after I opend the hamburger 's bag . . . I enjoy the time when I study miocrobiology . San Francisco is very exsiting city and I 'm engoying some activities here . I 'm lucky to experience this rare ivent . Outside is still dark , becaues it is 4a . m . Becauses yesterday I went to bed so early and this is spontaneous : Dhahaha He did not know whether the post office ws nearby . It 's hard to explain why I like rany days . I belive that TV has reduced communication among famillies . Diffrent clothes sometimes influence how people behave . but I like cherry blossam in Japan . unfortunately my alergic can be caused by a chelly blossoms x ( Today , I attended my first seminer by Randstad . I deciede to restart my English and Russian study . Your attention will be apprecited ! My group picked up `` at fast food shop `` , because one of my group member is working at KFC : ) The situation we came up was a couple making out come to KFC and KFC staff complains about it , but then the caple fight about silly things and break up . I have worked in a government - owned company for severl years , my post and salary are OK . I 'm always eating tomatoes because it is healty for me . A charity match for Tohoku victims is being held in Oosaka today . I met pickpakets in Spain today . : ( ( The pickpakets had gone away , but I still felt scared . The cost would be compared / compable I thaught they were almost the same . Despite resistance / resesiting I learned the grammer ( preposion + ~ ing ) My eldest doughter had a sports day last Saturday at her junior highscool . I 'm a Russian but actually I live now in Moldova ( it is at the border of ucraine ) Iife is short , while art is long . Apple funs must be buying their products again and again like me . There were some stans and I bought a crepe and a pack of fried noodles with sauce . ( factally nowdays the depressed economy in Korea is causing a decline in the price of houses ( ? ) . Howerver becauseprices were skyroketing in recent years , the actual price is still quite high . ) Then I woke up my second daugther . She looked outside and she said `` Snow ~ Snow `` such a very happy smail . Helooo ! Lately , I have been eating boiled brown rice because it is healty . Recentry , I 've been realy absorbed by glee , a drama made in the U . is very delightfuly ! ! Of couse , high school life in Japan is also very , very fun ! I never thought it would be so inconvenient chang majors . So today my cosin came over to my college to help me . Chaina Business Trip I 'm a begginer . I 'm studing English . So , I entered university again adn major in English . There are still afterquakes several times a day . The Japanese cheif cabinet secretary said , `` There is little radioactive leak by the explosion . Untill I become a uiversity student , I have to study English because I may be not able to keep up lessons . I 'm goint to the office now . Pleasa assist me . When I was a junior high school student my teacher taught me that there are many defferences between Japan and America . Now , it 's time for everyone to clean up your place throughly in preparation for welcoming New Year . America pregident changed obama , in Japan the Democratic party has had powerfor 50years . Last praime minser Aso can ` t read Chinese Characters ! For example , they marrige , have children , get a house or lose money . I was sent to rescure a man whose neck was nearly broken He was bleeding steadily . I was very tense at that time . I said to myself in the dream , `` I am the only man who can rescure this life ; I must do my best , and do it as fast as I can . `` Golf excerise I excerise last weekend near my apartment . I hope to become a golf player in the furture . I am going to learn how to use phoshop . I will spend my time today looking arond for a photoshop feature that I can learn to use well quickly . Then , he showed me his left arm which had a tatoo ! Although I quitted piano , I 'm making extra special efforts to be a frigt attendant in the future . I 'm looking forward to your reply , and also plese tell me about your daily life ; D I came back to my hometownin on my vacationm . Actully , I 'm worried about my English . . . When I was skating , I had follen down . . . ! ! ! These days we can buy many pre - prepared foods at glocery stores . Qustion in English So , if you are interested in it , please chate with me . A waitting for your reply . Wecome to our club Wecomre to our basketball club . We beliveve you will jion a wonderful club . A strong person will bacome stronger . Whatever your answer is , it 'll be a fullfiling experience . 5 days ago on Auguest 2nd , I left Japan to study abroad . I also have problems with tenses and grama structures . It dessapear in an instant , if I try to swat it . I heard from my colleage yesterday that tomorrow is Teacher 's day in vietnam . I practiced a vietnam song that young peole like . After I sang the song , I gained strenght and confidence because many peole complimented me . `` you sang very well `` , `` good jop `` . And I successed . Did you watch the Tunami videos ? Everybody just thought that was a pretty strong earthquake so it would probably cause a bit bigger Tunami than usual . I would like to take the end of the company graciously , and veer my attention to another futur . The Toughness of the charactiers ( no I ) . And one of the grayhoud staffs told me we might had to wait more . Yestarday I went to the seminar at roppongi . I could have had the chance to speake with an American and I tell him my thoughts . As Pual the octopus predicted , is Spain going to win the victory ? After reading this article I felt inclided to go there . If you check with them I would be very pleased and appriciate it . Some birds were singing , the sunshine was warm , the breese was stroking me kindly . So `` Sesami Street `` means a sall seed street or something like that ? I was recommended by a frind of mine to register and become a member here so that somebody can correct my English mistakes . The author says when speaking you should know some rules which are comon among English speakers . For example , it says you should use some words without pausing , and that you should know whether an exspression is formal or casual depending on the stuation . We had a Christmas party that was held on Dec 24 , and we reserved a cafe that my friend maneged . Have a good nigth ! ARASHI , a Japanese idol groupe , seems to be very famous in Korea and Taiwan . Have you read the book called something like `` To Find a Happy Bluebird `` ( I do n't know the correct title for sure . ) Are you looking for a happy bluebird even though the bired is right near to you ? `` I think success is near to me . I have been practicing it for 13 years . Beatiful Town Me and my parents have a worship sevice everydady on these days . Our church minister , Mr . Kim runs the Beatiful Town with his wife and teachers . I tried to have a job at there but gave up in a day because of anxiety disoder . I feel sorry sometimes when I hear their parents does not get in touch with their childeren . Qeustion : What chapter and verse include this words ? Autum [ Spelling ] is starting ! You know I heve wasted too much time in past year . Currently the globel economic crisis is having a great effect on my company ; it seems like everyone will face the danger of being fired . In fact our company had reduced more than half the number of employees from last yesr , but our business has still not been showing a tendency of improvement : ( Now you can perhaps imgaine my mood recently ; I am dying for leaving your present copany but I feel it is not the best time . I would like to chage my cellphone model . The LG Optimus - Q has a good design and useful `` querty `` keypad . The buses in Thailand do n't stp completely when the passengers get on and off . Luckly , the bus was moving at walking pace and the injury was minor . It 's not appropriate to say this , but I thoght I might be lucky that my damage was not as bad as his . . . I dicided to try blogging here . In fact I 'm not a blogger and usualy I only read some programmers ' blogs . I cleary remember that I was a high school student when I took an airplain for the first time . I miss her warm accomany from last winter very much . Andoroid phones are on display at the cell phone store in my neighborhood . Because the shcool has not only students born in Japan , but students from Brazil . I heard that most guests who are going there like me are reall teachers . Then the contry image will downgrade by that shot for why they did n't solve the problem in peace . Today , I will write about a quesiton I have about English I 'm not good at Engrish . Engrish is difficult . It was difficult for me because of the difficulties in German pronounciation . Today 's dinner menu is sweet - and - sour pork , boiling hijiki and soybean , mizuna and chiken salad . Almost foget to return Rental DVDs Yesterday evening I walked around in Ikebukuro with my friends to do some shopping and to see the new IPAD which was finaly released in Japan on March 27th . Suddenly , I remenber that I rentaled DVDs at GEO last saturday . In the future , I wanna work in a foreign - affilisted company . We can learn from them , know their culture , and also can traval there . I ca n't instoll Chinese on the PC I usually use , so I decided to use my second PC . It 's too slow to handle softwear and the internet . To be honest , I am not in the habbit of keeping a diary . Even though I look up each unfamiliar word , some sentences do not make sence to me anyways . It is totally different from speaking because it requires me to have a lot of vocaburary to express what I feel clearly . It is a usualy an event that my relatives have every year in this season . I often do foot massages when I sit down on the chire . I was reading a Japanese comic yeaterday . When they grow up maybe they will regret what they did when they were yong but it is too late by then , it is n't . On the Saturday morning I vaccumed the rooms . So I was cleaing short breaks the pasta I had eaten at the restuarant last time . Now , every members is cooperating with each other tword the exhibition . Koria Trip 1 I 'm student studying science and technology , today ( in class ) I made biodeiesel from fish - oil . In addtion , I went to Ginkakuji , Kinkakuji , Kiyomizu temple and so on . Then , I had delicious denner near Kamo River : ) The delicious denner was made of tofu . Last week I went to opympic Park , which is in my neighborhood . There were many kinds of fraggnant roses . Why did I lose my earings ? Soy sause I bought a little bottle to keep `` Shoyu `` = soy sause and ate pasta in a In japan , it is really hard for parents to have their children go to nerseries . First of all , there is a condition to do with anuual income . The more money they earn , the more difficult it is to get permission to enroll their children in a nersery . We are scored A ~ D finacially and according to our working situations by the administration . A is the most adavantagious rating Fortunatelly , my daughter goes to a nersery . But , I hope all children can go to a nersery , which will help parents who are working very hard everyday for their families . If you want to travel both , my appartement will be convenient for you . There are no beds in my appartment but there are futons like matresses of coton . You do n't have to prepair your blankets . ( In the winter , it may be cold . . . ) Near my appartement , there is a lot of nature . ( Maximum 2 nights ) Please come to my appartement before 7pm . I want to improve my Enlish , and most imortan , make friends . To tell the truth , the Enlish lesson is not easy to learn . I became bushful a little bit because of the situation that I use Japanese , but I 'm in Australia . I have to go back to Japane in the middle of April because I will attend my sister 's wedding party . So my parents were very deligent at that time . Campared to my mother , he can be recognized as a sinner . And I 'm pround of her ! His mother wants to go to the templas . ( Acutally , I recommended [ that ] they go to Gyeongju , if they really want to experience temples in Korea . ) I played golf wiht my father , mother , older brother and his wife at Otaru in Hakkaido , Japan this weekend . * Lang - 8 satff I went to Okubo in Tokyo , to eate Yakiniku with my friends . Okubo is Kolean town . So many good restraunt are there . I 'm active again ( or so I think , I allways have long breaks ) . Doraemon is very famous animated character from Japane television . Students have to deside course , apply for job or take a masteral course . I ca n't deside . My friends already deside their courses . I must deside by this year . It was very useful for memorizing words and phrases but I was n't familier with listening to my voice through the device . Recently , I 've became crazy about shopping , I have bought lots of clothes , but I want to have more and mors . Am I a shopholic ( shoppholic ? I do n't know , please tell me the correct answer , thanks ) , haha ! So terrible ! Hot and humitted weather will welcome me at Narita airport . Thisi is the charenge ! I started this brog today . It is my big charenge ! There is Euro 2008 going on in Europe now , and I truely wanted to watch , but I could n't without cable . I decided to write my dialy in English ! ( Today is the first time I am writing my dialy in English . ) I 've decided to write my dialy in English from now on ! ! Also , Japnaese elementary schools are going to start teaching English to fifth and sixth grade kids . I think English grammer is so easy and logical that it is easy for non - native speakers to master it . Hpwever , I hope to improve my writing soon . I need to get 5 in IELTS as soon as I can . This ouctpus can kill a person who is bittenby it . . Of course , I know it 's bifferent depending on the person , but I just want you to tell me as advice . There was the annual meeting today for a presentatoin on research and development in my company . I went to Moscow and Sankt Peterburg with my family . My father bought me a photocamera , so I could take some snapshots . The distingtive yellow circles on the lamp which had n't being dusted in a long time . We prepared ourselves for the worst , because youth hostel food is n't renowded for it 's quality . > < Everyone looked suspicous at the fish and chips . I ca n't trast the company whose name is Tokyo denryoku . In Lonsdale street there was the Greek Antipodes festival . In feretion Square there was live music . On Saturday nigth I went out with my Italian friends . It was very nice , I bougth a very nice dress ! I have three yonger brothers , soI had dinner with them , too . I want to say , that I want to leant English that much . So it was really hard to do it again because I felt hard my finger . By the way I can ' tplay this song because maybe It 's really dificult because I do n't know how to sing the song so when I play the song I do n't know the timing . I really like this song so I did nostudy English hard like my friend siad so I am sorry . What do I want ? What is the thing I am goot at ? Becouse my left knee got hurt in a traffic accident and got hit many times during basketball games , The team aranged it . I wish to memorize Qura ' an and remeber all its words like I remeber my name . I wish to puplish a lot of books and become a famous author . I wish to speak English flunency without thinking . To become that , I regestered on this site . Before I did that I was listin for many different Islamic nasheed by English speakers , like Yusef Islam and Dawud Wharnsby . I reary want to study more . After the meeting , the other menbers and I went out to have lunch . We went to an Italian restaurat and had a pasta lunch . A waman said one day she had been very tired and she wanted to be alone for a while . So she had said to her hasband she had wanted him to go out and would hand over ten thousand yen . I met a foreigher who is from Mexico . I should go to the hospital befor it gets worse . I do n't know how many people read my dialy , but I welcome you who clicked my diary . Today was a very importent day . They always intarrupt me before I finish speaking . So I felt reflesh a bit . To practice English I start writing dialy in this site . I set a target to write dialy once a week . There is a new sellection button called `` Match `` on the upper part of the page . I can make myself confortable here . There were 5 other studnets in the class . The fisrt person who completes 2 lines accross will recieve candy . We believe eating eel gives us vigar . Dashboard is , in my knowledge , the part of a car just in fromt of the driver with various meters . And when I 've read tha part fifty times , I got an idea . The executive is a dviver of the company ! You find peope who speak English and communicate with them , when you make a mistake , they can help you correct it . 7 / 26 I went to aTERKEY . By the way , today I went to school to sprinkle watter on the plants . It was an eciting day today . my reltives and I are safe . My friend told me that she already knows the grades from all classes she took this semerter . About festibal for children aged 35 , and 7 Today , only girls who aged 3 and 7 participate the festibal and only boys who are aged 5 participate the festibal . Many families get photos of their childeren taken at a pofessional photo studio . As she said , there was a simular korean food with the same shape I think one way we get them is from our experiences perticularly from hardships , ordeals and harsh adversities . In a sense , everone experiences them and we might as well enjoy them . About Yestaday On the other hand , other people who come from European countries do n't feel that speking English is difficult . I olove tennis and I want to be ( come ) good and strong ^ - ^ I am a homewife . The Reason I 'm Studying Engkish There are many embassies of several contries near my hospital . I 'm looking forword to graduating . My dog is 7 years old . She hardly burk and is housebroken . Actually , I sometimes go to these shops to walk when it is raining , but I always feel a little bit embarassed , and I feel like I have to buy something . According to a report , the big reasons are climate chainging and the lack of habitat . Our environment suffers more and more polluations from human destory . It can use many aspects of nature such as be maded of natural products . Our new term has begun , I feel excited ~ One of my friends who loves English songs ofen sings `` Everyday is wonderful ! `` . Although I could n't registered for a popular class when I had asked for any available seats of that class in the Restration Office , but I could make it by asking for the professor ! I have just returned from a bussiness trip to Shanxi and Henan , this morrning . In fact , this was my first bussiness trip since joining my company . TOEIC is a test that lets many Japenese know more about their own English ability . Since then , I 've been incleasing my Skype contacts day by day . It is Log cavin . Moreover my nose was runnning and I ca n't stop sneezing . : < Lately I have been working part - time at a Takyoyaki shop inside the kitchen of which the tempreture is usually around 45 degrees , so I always feel like I 'm going to die x _ X When I am off work , I study Lingusitics , specifically , Cognitive Linguistics . But I have few oppotunities to speak Engligh in everyday situations , so my speaking is gradually deteriorating . . . + ~ + I bought snow boots yeaterday . This food is simple and consisted of noodle , soupe , and some ingredients . But it 's very difficult to cook good soupe . Today , my father will come back from haspital . lf he comes , that 's too bad , lf not he will get well , but the money wo n't get too much better . . . . . er . er frist , l must get a job . Then I can fix the proble . I bigin this SNS now . I found the bookself costs low . I 'd like taking pic and litenig to music . And sometime I draw peple and animal . The problem is losting keys . I know a lot of people who does n't know were it is , maybe because it 's a little island and is n't as important as Barcelona or Madrid , but Ibiza is such a beutiful place . building mills , stoneholds , and city buildings . He can build an excellent defensive building ( the great wall ) , develop a destintive technology ( computers ) , or get new colonies like Columbia . My friend tex me saying she is in Nakameguro . For example , if they prefere earning money by a part - time job as opposed to majoring in subjects that they have not ever majored in . I want to tell them `` you can earn money to earn a living even if you wo n't after you graduate from university `` . I 'm eating more vagetables for food . Photo albam It 's the first week at work since the long national hollidays . We keep talkig when OCC 's proffeser was explainning . I must practice my English listenning But I found my English listenning is still very bad . I did some English listenning test by myself . I thhink I must practice my English listenning every day ! because it does not require phicical strengh ( I am not particularly strong ) . But the biggest reason is that I like to grance at many different kinds of people . Is that bad reanon ? and many salarymen and students come to buy breackfast or lunch . For instance , people arrive at the same time and buy the same or similer foods . which is why they do n't remember being resisterd ( ? ) ( assisted ? ) by the same staff . If you always go to a paticular store , you might be observed by the staff ! My purpose for this year is to stady English . Today , I will go to the one of the biggest shopping morll in Tokyo , where I have lived for a long time . Ever since I was young , I have behaived confidently when I have done everything . The title is `` Seccessive Holidays `` I want to watch the volleyball games on TV . ( I want to watch the volleyball gemes in a stadiam in reality . ) finary I asked her . This is a tlanslation of a Japanese fairy tale . On the day , he received a gift from them , it was a big kyte ! All of a sudden , a strong wind blew and the kyte took the pig way up into the sky . The kyte transported him to his grandparent 's house . These therapies are very interesting and inovating . I 'd love to get any imformation . I found the teacher had a good way of teaching , which gave the children an instering in the violin . * okara ; kind of leftover when you make tofu , but it contains a lot of protain . When I make a cake , I reduce freash cream or cream cheese and use tofu instead , and also when I make a hamburger steak , I add tofu in mince . I really do n't like to prepare for the festival , but I like to paticipate in it : p But I 'm jelous that most of countries have halloween parties because we do not have that : ( And we went to the famous tample called `` Chuson - ji `` . I also have read his other wroks like , Have A Litthe Faith and For One More Day . Today I wrote only this sentense . But I cound n't beacuse I was in Au . I had to send the leter early . When they recive my letter , they will be surprised and happy . Surely we know a lot of grammar because we 've studied it sinve we were junior high school students . It 's no wonder that Arabic people of lawer level can listen better than us because they 've been staying here for longer than us . Even if I have a chance to meet the celebrties I 'd prefer to meet enconomists or business people instead . Tom grabbed an orrange . Bom hit Tom . I have a dialy in English . I write for a Jaanese soccer team , Sanfrecche Hiroshima . The team is a J1 leage team . Ithink Sanfrecche will get the titel this year . I was not entirely concentrating on the wedding party because I often wached the photographer . I have to finish some peports tonight . Keep enjoing ( ( = today 's actresses do n't have such atomosphere . . . Global crisis , London Fashion week , lections in the university , my friend 's troubles . Last , you clean your class room , carridor , stairway and wshroom yourself . This is my first entry writeen ! Anyway , my English level is realy low . But if someone wants me to say something in English , I realy do n't know how to say it . Next to my company , there are many foriegners . I want to communicat with them , but I do n't know how to begin . Sometimes it is very borring becouse I do n't like klassical music . Music is the most beautifull thing in our lives . There are different surprises in our life everday . Maybe next time I can do something to trainning my mucles . I 'm Tak , 26 , Japanese who loves to play basketball , watch movies and enjoys the beuatiful ocean to swim , free diving and hunt fish . Also I 've been studying English sicne I had experience to study abroad in U . After I came back to Japan , I continued to study English in a univercity . So , I take pleasure in looking all alround these Languae sites . We eat it with soy soup ( made from tuna ) not OKONOMI souce . I just made the words ` language quention `` , shorter to say `` L . The wedding party lasted two and harf hours . We enjoyed some gemes and talked with friends . 9 years ago , I went to the United States as anexchange studens . After having said my first English sentence , all the thestudent laught at me . So , I lost my confidence in learning English . Moreover , the English teacher who taught me for three years in senior high was a very annoying and ascivious man and that made me hate English too . After graduating in 2008 , I found a jod in a joint venture , lucky . It is about a cute girl who was murdered by her neighborhood . two years later , Susie 's family , her father and young sister still cant give up finding the murderer , fanally , her sister found the evidence to prove that the neighborhood is the killer . Well , I bought a new game called , ' ' DISSIDIA FAINAL FANTASY ' ' . I have to be carefull not to spend too much money . I 'm going to Roppongi tommorow to meet some friends who can speak English . He also ovey our commands , such as : sit , wait and shake hands . Futhermore , every cigarette company should be banned for selling toxic materials ! According to the weather forcast , it seems that it 'll snow tomorrow . Being a careworker is a great job . A careworker has to have a likable personality . I thought she had potential as a careworker because she has a good smile and a friendly atmosphere . But , hearing her story , I found out that a careworker should not only have a likable personality but also a strong heart and a flexible personality . All buildings are of histprical importance . According to news and documentary programs , the huge amounts of gleenhouse gases such as CO2 , cause the change in grobal temperature . It is said that trees absorbe CO2 . automatical translation is not accurate . . ? Romoi is small rural county . If I have a private teacher it would cost 20 ~ 30 dollors an hour . Today , I need to write a review of a famous Japanese writter Therefore I always miss the first chace to reply to my messages here . Sandra Bullock is always a nice actross that holds a special place in my heart ! Banks do n't trust JAL 's management and are fefusing to lend additional funds . Tha topic is maline living body molecule faculty chemistry . Last year , 80 % of the students who majored in maline sciense failed the test . But I will study chemistry even more becouse on June 11th , I will have another chemistry test . Seeing this socre , I was very surprised that the writing score was the best and the listening score was the worst . Reading and listening skiils are the fundamental ones . I 'm writting this entry by laptop on the train . I do n't really know how to describe this feeling , but it starts when I think about what lies beyond our solary system and how tiny we are . Only 5 days lator New Year comes . When she arrived at the hospital she looked scaerd but stayed . It looked like she was alomost crying but trying not to do so . I wil go to India this year . . Hallo . There were beautiful ocean views and a cozy atomosphere in that video . This Matsuri was small and different from Japan 's one ( of couse ; ) . But now , I do not feel good . Because I find if I open the computer , I just play games , chat with friends and receive the E - mail . When I want to learn some things from the computer , the time has passed . Maybe two or three hours have passed , by that time I need to go to sleep . The plan to learn something about English is always delaied . I like the scene when Marty plays the guitar at the parety . Bas ga ososugiru ( past form ) kara , watashi wa shigoto ni osokimashita . * PM Form + Yasai = easy doing verb Watashi wa nihongo wo miruto sugu kandou mimasu . ( hmmmm how can I put the `` yasai `` in this sentence ? ) Actually I 'm still afaid of them though I have gruwn up now . My dentist was a funny lady . She told me to just relex and not to be afraid of her . I shoud ( will ) be more careful with my teeth 's health from now . I believe I can be a good student ang a good teacher ! Certainly , people in South Korea are intelligent , but such competition may cause mental exaution . I think then we can be more free , espesially in Japan . owener of lental apartments ! For a long time , I thought being an owner of lental apartments is one of the easiest jobs . Cleark `` Hi . `` Guest `` I am looking for a wich . Cleark `` Yes , we do ( have them ) . Cleark `` ( How about ) This one ? `` Cleark `` It 's 3 dollars . `` Geast `` I will take 4 ounces of this ham , please . Cleark `` Sure . `` One day , the same scene happened agian . When the bus had just stopped , the conductor shouted to the people who were ready to rush into the bus , `` Do n't rush ! The driver did n't notice the conductor was n't in the bus untill he found nobody reported the bus stop . psychologist must be familiar with biolgiyu , Russian and math . Hellow World reseption party Today I went to a reseption party at Tokyo modern museum . happy new yar Nobody interapts me . . . I definitely agree with the thought that men and women have diffirent I did n't have an opportunity to listen to jamaica reggae music a long time ago . Cats make me confortable . I asked about Marchants ' International Shipping rates to japan , and you said that Please look at the marchant `` * * * * `` . ( link to the marchants ' Shipping rate ) I came home and I tyied to connect it to my computer . There is Somethink about them I just ca n't understand . My name is Jack , I 'm from Syria ( the eastern coast of the mediterrinian ) . I am so pround of myself because of my small diary in English Recentury , I am busy everyday . And on Sunnday , I was invited to my friend ' s I need rest and treatment from a chirodoctor . but I received a notification from a memorial park office a few days ago , whitch is located in Narashino where my mother 's grave is . An entry on Lang - 8 after a lomg time . On the other hand , phones , expecially mobile phones , are playing an increasingly important part in our lives . Tommorow is the last full day for me here . Is it a person who talks everything with you or just a person who often agrue with you ? Is it something that ca n't be replaced or something that 's not essntial ? We do n't feel ambarrassed when we do n't say anything , we just sit behind each other . Personlly , a friend is a person who make you feel at ease / make you feel at home . By the way , I 'm going to the hot spring with my friend at the end of this manth . In Chinese , the word Dog is called `` gou `` which ( the word ) souds like Goal . Watashi no namae wa Zoli des . Hajime mashite , Yoroshku onegaishimas . However , he has to go to school with the neibor students for a while . I said ' she wanto to get me a suit . Iwas very happy yesterday . I asked my roommate ( she was sitted near me ) took a picture which contains my cake and cookie ( but this picture maked me look fat , ha ) . I do not want to back to Taipei becase it is the time near the final exam and my transfer exam . And I found messeges from somebody who is in another country and also sutudy languages . After I clean , I 'm going to go to sport shop to buy sportwear because I have a school excursion next Friday . Of couse , not only speed but the complexy of the content was a problem for me . On the other hand , the English with diarect was OK , as I frequently communicated with such people including German , French , Thai and Taiwanese . Nonetheless , I felt it was an honor to listen to some wonderful presentations and saw fruitful communication of distinguished scholors as a would - be scholar . I have big dream - an American dream ) ) I want to learn English and go to my favoirite city - New York ! ! ! I want it now , now , now ! ! ! I hope this site and U can help me ! ! ! Thank for your attention ) ) ) I remenber that I must buy white shoes . I think that there are theree keys to success . Second , there are many bonus evernts . Yet we can not help but obsess about growing crops anywy . This surgery lasts only 10 minites , but is it safety ? ? By the way , today this video helped me to change the eye color in Photoshop . Usulally , my mother puts a sweet potato in a microwave oven , but today I made a sweet potato baked with hot pebbles with thaw function of the microwave oven . I want to improve it and hope someone can hlep me . To achive this , I am now required to achieve a certain score on the IELTs test . I can study for reading and listening secsions by myself but it is very hard to practice speaking and writting essays . So now I definitely know what I need to ask when I go to the schoold . Compared with other classes , my class was really peacefull and hadgood team work . I went to Osaka on bussiness . I am interested in Amerikan culture , life , and history . In the future , I would like to use English for business , or cominucate with people who live in other countories when I travel . I love music ! ! My deream is to join an International Cooperation . I wish only to enjoy life and to do somthing I like . The movie is Alce In Wonderland . I am goint to accompany my Mon to Japan or Cambodia and study TOEFL regularly and hard . But she sturdied Japanease very hard . After one year , she could speak enough Japanease to travel to Japan alone . At that time , I had n't realized how short of a distance coummuting was . After she got off the subway , I came close to not getting off at my stop becasue of my very high spirits . I know that she has a boyfried . So I feel counfusion and flustration . I 'm a Fenix though . For / On my birthday , seven frinds of mine came to celebrate . I recieved clothes as my birthday presents . As title , in our Graduate School of Science , we have a team competition of tebletennis at the end of every year . From the undergraduate student to the professor , every 3 - or - 4 - person - team can enter and paticipate in this game . The recycle material is used for variety purpose : for exmple plant pots and exterior materials like wood . I will see many of my frends ! Though I had desided to write my entries everyday at first , I 've been feeling the difficulty of continuity . Hi , hieveryone ! I 'm a Chinese girl . Could you be my fridend ? Duing those days , I had no other wish except to pass the examination and get high grades . Because I will turn into 18 on my brithday . She wii be three years old next month . The temprature may be 28 degrees C or so . I do not use air conditioning due to helth reasons . Also , I want to limit emissions of carbon dioxide and other greenhouse gases . As I could n't sleep , I coundl n't help but use the air conditioner . Finally , I was able to sleep weel . It is one of the most innvative methods I 've found ! Almost every menber is a student . We were realx at this point . I ate two pizza slices and somthing else . I have tought English . I am very nouverse beacause I have never presented at a conference . They are simillar but different . Everybady : ) So , I 'm goning to practice baseball with my college friends . We ate `` zouni `` , which is the traditional soup containing `` mochi `` ( rice cake ) , vegitable and chiken . After graguating from senior high school , I spent three - months as a holiday . During this time , I forgot lots of English grammer and vocabulary . So today , I brout the cat to a vet again . Takao , which is calld `` Takao - san `` in Japanese . I went to the park for a stroll in the daytime . Butterflies were fring around the flowers . In addition , I plan to take part in an international conference for Asian students , which will requre me to speak in English more fluently and precisely . The secon goal is to study economics . In the conference , I will discuss ecnomic , with emphasis on matters concerning East Asian contries . I want to break this habbit . A lot of things droped off , and I , people from work and costomers panicked . I was so terrifyied that I could n't think about what to do . My family was not attacked or harted , so I got releived . I 'm nurvas . The mutch was the Carling Cup Final , `` Arsenal VS Barmingham `` . It was an exciting game . The teacher said `` Walk around in the water to rest . `` and then she said `` It 's time to learn backstoke . `` She told us how to do backstroke . And tomorrow is athletik game . I think you want to contact the Hosan Industry Company that makes things for outo and rain ( ? ) , but I do n't have their website or email address . It 's very intereting . Chirstmass day is coming . Curry was too spicy , but Cheese was most dlicious to me . I watched the Olynpic games on TV , and I want to enjoy skiing with my friends . . . In Japan , publication contracts between authore and publishers are n't documented cleary . It is easy to controll the royalty rate . However , Murakami does n't have to pay roalties to a pubulisher because he released his novel as an e - book . For readers , it has many merits ; book prices will drop , readers may be able to read books wherer they want and so on . I heard that these two cities have nemerous Japanese companies . The real deasign That is the typical traditional Japannish thought . English poeple never remove foam from dishes after washing them . Is this true or false ? He ansered that it is the stereotype like the illusion that most Japanese people wear glasses with big lens . Currently , here in Brazil , there are many cases of UFO abduction , but the government still has no comment on the subject . Even so , there are many communities that do ufology studies by itselves . I wonder if in the near future all information regarding UFOs will be decontroled and the truth will come to light . . . But I think I can handle this in the fulture ! I 'll tell you about my favorite moive . Becouse I love drums and marching . Recently I undrestand CNN News ( pod cast ) which is an improvement from 1 year ago , All of us complaind about our speaking teacher because she 's not a good teacher . I like building by design master . Their construction can transmit great informantion and express their unique ideas , so I like this the best . Japan should stop whlaing Secondly , Whles are our friends and we live on the earth together . Finally , each species has its reason to exist and the whale 's activeties makes the ocean clean . It is a kind of magical creature . We left the Marlion Park and went to the Raffles Hotel . It was too expencive for us , but we were interested in the hotel so we went to look around there . The roby was well cleaned and its cortile was so beautiful . We were very satisfied with luxary there ! Fortunatelly , we have not been dissapointed . But it is too bad that it is so durty on the road . the Lovegood 's house is exactly like I imagonation too ! I cried when dobby died ~ and when Hermione `` obliviate `` her parents . I have a gift for palying music , but I have to learn another profession , which is my parents ' expectation . Hepefully , there wo n't be any trouble during my trip ! English that Japanese high school students are studying is really grammertically difficult . And the vocaburally is so , too . I remembered almost all the English grammers , but still , it is sometimes difficult to tell where S ends and where V is . But this word is actually difficult and it is wierd if I use the word when I talk with friends or children , right ? ? I thought it was too big for my coumputer , so I canceled the download . because I wanted to be Network Engeneer . But now I 'm not so sure about that , and that 's why I want to practice , to see if I can really speak enlish . I tought that I should take care of my health beause it is so weak . However , our town has not campaigned to buid windmills . There are some differences in opinion as to whether the view with mindmills is acceptable or not . While I was looking for the place , I tried to call my friends , but `` they `` did n't ansewer . I stayed up there untill next morning . I want to discucss a lot about grammar relating to our feeling , and also our mind with analytical way . This is a heroic town , because it is servived the Great Patriotic War . Sometimes , I work , and now I water the flowers around my school ) ) I have a yonger brother , he is 8 years old , and he studies in my school . There are , however , many things we have to do to protect and develope their understanding of human rights . Spanking is needed sometimes , especially when children are too young to hold desent conversations . I was also studing English in my dream ! ! I believe that time solves enerything ! Somtimes I had to choose between them . So I 'm afraid you ca n't see the upper rainbow so cleary We enjoy wachting programs on it ! ( Of cource , I want to study English . ) I am so happy today , because my company got this big case this morning . It 's big news for all of the staff in our company , because it means we have things to do and that there is no need to afraid we will be laid off , or take unpaid leave . ^ ^ , Recently the globle economy is so bad thatmany people got fired , so it 's very helpful to have a big project in our company , ha ha ha ha Since it 's raing , I ca n't go out and play , Recently , I fool around anywhere and surf over the Interent all day . My mobile phone is possily broken . I 'm really worring about this problem . I want to speak and write English well , so I have begun keeping a dialy . It was slipepery and dangerous . New vocabulary plactice Mar 19th , 2009 Please help me to crrect my English . I met my sister at the restraunt . I still remenber I went to this school alone with a big luggage three years ago . I will always cherich the experiences I had at SCNU . So , I went to reserch the market in Italy . quite religios . I am determined to learn English , but my English skils are not very good . This surely incruding me . It might be becouse Japanese does not have similar words . I experianced various things that were good and bad . make my mind to go abroad to study , help with some company wokring . . . At Sydney , there are ten campuses such as Camperdown , Cumberland , Mallett Street , and so forth . When I wtote the tile and the first sentence of this diary , I wondered if `` Families ' New Year 's Party `` was more suitable . However , if we lose air we are unlikely to survice . In present day , air pollution get worse and worse , Industries at will eshale the waste gases , more and more people drive to work and like smoking . we should find a method to slove this problem . Before exhale the waste gas , industries must instell waste gas puification apparatus . As promoted by the development of modern science and technology , television programs today attact a vaster group of audiences with tremendously enrichied conten and a 24 - hour rolling schedule than ever before . The fact that television seems to control our choice of leisure and entertainment has recently brought a problem to focus on : whether has television destroyed communication among frineds and family ? Beside , in my own family , my parents and I enjoy the time when we are sitting together and watching tere - films . I do not deny that there may be some cases that people are so addicted to television or some other habits that he / she will probably ignore communication with friends adn family . Rumor has it that Seth Rogen did n't read off the same sheet of music as Hong Kong 's famous actor Stephen Chow for the flick `` The Green Horner `` , which will hit the big screen in early 2011 , thus Taiwan 's hottest singer `` Jay chou `` substituted for Stephen Chow , as the lead male 's assistant `` Kato `` that used to be played by martial arts master Bruce Lee . I have never eaten a sandwitch there and wanted to eat one . So they came to my house and celeblate the new year . Every year we watch Ekiden where college students run a long distance and pass a batton ( taski ) . my cousin 's childlen came to my home for the first time . I enjoyed the new year holyday enough . Is it true or false that cellphones influence the functioning of pacemakes ? So I hope somebody can help me correct my gramma ! Third , the author described that the ultra malathon race took place in a mountainous area in Mexico , where American top ultra malathon runners and Tarahumara runners competed against each other . In 1996 , the writer died because of liver fauler . I have begun writing a diary in English using this web site . I also try to correct diaries writen in Japanese . I will need your helf in the future . My companys holicay lasts from the second to the sixth of May . But if I thoght , my holiday could not become long . I wanted to a cold drinke . 4 custermer were there . That 's because we are taught grammer , not conversation . I know grammer is very important when learning a foreign language , but I think we need more practice speeking . I have a frind in Oregon . We visited many palces when she was in Japan . It is afternoon in Thailand and I feell really hangry , I will find something to eat . . Since my daughter is still a baby , I cann ` t do anything I like if she is awake . because my friend told me that reading books helps ur spellings and reading skills . So they often sprincle water on the coal in stockyard . It looks like not only me , but also other people all aroud the world are interested in the Android phone . I often use subjects of sentences repeatly . I could see piled stones , vertical criffs and rough sea . While I had n't booked any hotels or other accomodations , it was not too difficult to find vacancies there . So , I was thinking that I could easily find a room available on this small ireland , too . I therefore decided to aks him what I should do . After school my firend consoled me . I watch movies and read English books , but my main problem is with speaking , writing and using grammer correctly . ( I 've studied grammer but I do n't know how to use it when I speak . ) Today is rainny in Kyoto , Japan . My favorite music is Perfume and Lady Gaga . I ca n't wait until the Gaga 's new alubum is released ! Perfume is made up of 3 Japanese gilrs . Some peple say `` If you want to live in Japan , you should apply for citizenship . Of caurse , I love Japan more than Korea . I came to Toronto in February of 2009 . I wentto English school and got a job . It was geart experience for me . Can I get the target I palaned at the beginning of this year . I want to go to Janpan after 2 years . I want to know more about life in Janpan . I hope someone can tell me if a student studying abroad can find a job and support himself in Janpan ? Anyway , I can not write in Hirakana today like magic . todey is wrok tekes a rest . it was possible to run 10Km todey . Many questions have not been slved . . . . I 've noticed that the reason for my lacking English adility is my small vocabulary . And the avant - title of `` A Channel the Animation `` shows the names of criateors with a very cool style . I 'm trying to study grammer from the beginning now . These are quite expencive here in NZ . I usualy ca n't afford to buy these things . It also reminds me of Ghaza and our situations these days . I Ibelive you can do it , too . Fist , you can remember some set phrases and senentce structures . Then try to form them into a new , ete sentence . I stayed my friend 's house and I come back to my room next da . I sepend the whole day at home today . While travering , I ate varios food in each town . Next manth , I will make and launch a model rocket . My grandmother lives in Hukushima . Hukushima has nuclear power plant which has been issued . We had special dinner with our grandparents and cousnes . I belog to the basketball team . Today praztice was so interesting . I just wake up 7 AM , and take half an hour for shower and breakfirst . But there is specally nothing to do in winther . My boss , who has good sence of humor , is nice guy and allows me to study something when I do n't have any work to do . I love soccer so I watch soccer gemes , not only Japan 's but other countries as well . At the beginning of the year , there were many goals that I set up with hope but now , I guess , there were few things that happned . It means `` the goddedss of liberty . `` Recently , a close friend of mine hestitated to apply for the receptionist job . She stayed at home all day to prepare everthing for her husband . Abolusily not ! We somtimes must endure their unreasonable requirements . Even though I come from a non - unwealth family , I never look down at my family and myself . good mornig everyvody ! I woke up , and then I had a brealfast of steamed bun , a banana and milk . I keep writing on my diary recenrly . it 's becaouse I do n't have an opportunity to speak english . it sounds a litte strenge but I do n't think so how boering ! becouase we do n't meet everyday Although I 've learnt so much , I still do n't have enough confidence to face my furture . It is an outdated thought to discriminate against bi - biracials in the age of globalization . but it is rainning in Japan . . . . menu : vinegared rice topped with fish , melon , noodles and green soybeens . Tomorrow I 'll paticipate in a water melon festival . Although I am not gay , I do n't think people should kill someone just bacause they do n't like them . My friend who went to Canada says crows there are very small , like spallows ! ! Japanese crows eat bagages and grow fat . `` I went to an English seminar last saterday near Tokyo station . But that seminar was good opotunity for me , due to meeting people who are highly motivated and achieve higher levels than me . I will have a TOEIC TEST in Novemver . Ran to th public bath Because I do n't know much vocaburary and ca n't speak well . For today 's dinner , mashroom was served . Well , that 's ok because I ate delicious tacos and pizza after that . My gentle host mother allowed me to pay tommorow . I 'm interest in playing and listening to classical guitar , riding bicycle , traveling abroad and playing Starcraft craft etc . Please enjoy my posts and give me advice about my posts with type - o , grammer and vocabulary etc . I have a girlfrind . She told me to let our relationship return as it was before when we were frinds . Shortly after I went back home to put the souveniers in my room , I left my home for a Japanese restaurant . I 've got to appriciate that . I think that Koreans like to go to the brand name coffee stores especailly when they want to meet friends or want to read a book , study , etc . Firstly , Koreans have a tendancy to look for brand name products when they buy something . The boys had breadkfast . I want to take a rest after class but my famaily said , `` you are a high school student , so you should But many people think speaking and writing English well is somewhat of a previlege . So I went to the secod floor . I did n't understand why he could n't see me , because he saw the first floor where I shaked from . At the moment , all my classmates are typing their essays on the Intrnet . Indeed , it was as hot as cragy , Insteadly I swimmed 1km . I think this is a hard problem because owners might say : `` It is right to buid my house on my land `` and need to immediately be solved by the government . Speaches , chatting , twittering . There were some core developers of CakePHP and they made speaches . I was there a few years ago and that rame was very delicious . One feature of this rame is that it is rich . I registerd at Lang - 8 Today . I think Lang - 8 is a great SNS because it has the express purpose of studing English . Today , I 'm in a bad mood because of my college entrance examination , I did n't perform well , especially Math . But now I still ca n't commend cenimas with English . If so , I 'm courious to know what they are doing . I want be always surrounded by peaple who enjoy talking with me . Worring about security , I set a password for the file . Autumn season is the best season to excercise for us in Japan . Why do n't other contries clean their ears ? The news lepoter said `` Alomost all the world 's people do n't clean their ears . `` There are ea cleaners servis in Japan . We sometimes clearn our ears . Clearning ears is good feeling . How does it become if you do n't clearn ( your ) ears ? The tradisional earpick of Japan hasa top of cotton or Daruma . My bithday is at the end of December . I make it a rule to go to univetcity by foot . I must pay my univercity fee without my parent 's help . I pay my univercity fee out of my own pocket . I got up at 8 : 00 and had breadfast , The city is very polular with people having fun , especially surfers . Kanji is Chanese , some are the same but others are different . Recently , I have been warried about my future . I found that I neaerly have no free time for myself , but I will still try my best / hardest . I printed out my diaries with your correctings . Im reviewing my diaries and reading many people 's correctings now ! ! ! I hope that I increase my vocabralies and learn how to express myself . It tasts very good . Though I have been learning English for many years , I find it 's really challenging to improve my spoken English because of limitted learning environment . WHEN I LISHEN TO THEM MY COLLEAGUES SPEAK ENGLISH WELL . EVERY DAY I GO TO WORK , TELLING MYSELF I SHOULD LEARN SPEAKE ENGLISH . My friend took me out the restrant . In the afternoon , I rode my eletrical bike to work . It was 9 p . m . when I arrived at the centrul of Bergen . Fimally , I will always clean up our apartment . On days like today people use electocity a lot , but due to the earthquake that occured on 3 . 11 , we are short of electrocity . The government told us not to use electrocity carelessly , but they did n't announce any countermeasurement against the shortage of electrocity . By the way I want to buya pair crocs . The station staff told me that I may have to wait about 3 hours , so I went to Xihu to kill the time . I was walking arround the lake for nearly 2 hours and took more than 100 pictures , then I went back to station to catch the train , but the depressing result turned out that the train has been cancled . What shoud I call this phenomenon ? For example , the word `` perfect `` is `` perfekt `` in Greman so I ofen make a mistake . So I get used go to bed at three or four o ' clock in the mornig . When teaching Japanese , I need to explain so the other person can clearly understand the basic gramatical concepts . I heard from my friends that there was a website in which we can get corrections from real native lunguage speakers . Is it a correct sentece . We should work together and try to buliding our future ! know how many rich men can be avalible for their request ! I belive my life will change for the better and I will I am a saleman in spite of having a problem with speaking . If I were not a person that stutters , I would probably laught at it , too . I did n't even think that I would become a saleman . I have met several people who have overcome their stutering . They said that being old and having experience counts , so I belive that I can get over it . I 'm ok with the dress but really do n't know what in green can be added to the outfit : scarf , hairband , necklace or bracelet ? She is a student at an insitute . She likes chockolate very much . I combined this into the previous center . But I could n't drink beer becouse I went by car . One of the plece I would like to visit is New York . My plan is to open it near a university , because I want to cook delicious and unexpensive lunches , cake , coffee and tea for many students . I want a lot of advice and masseges about my dream ! ! ! Recentry , we had Weight training . We enjoyed gliled fish , Japanese radish salad , yakitori ( chicken roasted on a spit ) , and ochazuke . I did n't feel bad at frst . I have already reserved the bullet tarin 's sheet which I 'll ride on . We should notice that school education starts too late , at which stage , the fundation of a child 's personality has already developed . basically I lost attension easily man , that is fraking gross lol It was a very hot day , but I had a very good time with my campany . It has been rainning cats and dogs this week . I chose two songs `` Somewhere in my Broken Heart `` by Billy Dean and `` Song from a Stormy Night `` by Secrect Garden `` . I found out this song by chance but it is perfect from the lyrics to hythm . And sice I 'm a person that 's easily distracted , it 's good for me to learn how to use my time more efficiently . Oberserve the progress as you go and see whether you are staying on the task . Most Japanse people are Buddhists , but they are not seriously religious . I ca n't resist eating my fovorite foods like cake , ice ( cream ? ) , and snacks . I 've come to realize that that is not helthy . I should save some money and be carefull not to eat junk food . I will eat chiken and more delicious food . Those are just begining words ? because I just have been studing Chinese I have totaly no idea what to do now , but I 'm going to find a way to help them one day . I went to the graveyard with my family bacause it was Obon . Checking my grandfather 's Buddhist name is like preparing for my father or my mather 's death . Only a few munites after my first diary here , the kind snowleopard helped correct my mistakes . In onsen - hotel housewives can relux to their heart 's content . Because she can not only escape from her daily house choires but does n't have to do anything for her family . So , their dream was go to onsen and relux ! The shcool keeps me very busy , I was able to book a concert ticket that I appied for last month . Correct fanction , Coment fanction and so on , is PCver . the beautiful sky after a rainny day . I love the sky , especially after a rainny day . Some foeigners want to add strangers as friends I do n't want to connetct just to collect friends . After arrived at home I recongnized whose house it is . Most of them are not good at Englsih and do not like studying Englsih , [ comma ] In the show , a man who lives in Mali sent a walmful message to Japan . Interduce my self telemarker for the day . This symposium is thought that the biggest one in the magnetic societly . mmm . . . Before you achive success , you may go through tough experiences . I constantly recieve things that make me wonder what I should do to make them pay for it . our food self sufficinecy rate is really low , compared to other countries Mnn no , actually my friend 's mother gaved me chocolate ! A few days ago , I ( we ) started twitter for appeare our issu . 140 letters at a time seems too short , but if you squeeze your brain , 140 letters can be good enouhg . The problem is if I can continue to wrigt or not . I sowed some moning glory seeds , but only 3 of the sprouts came out . These days I 'm so weary because of losts of assingments . Hello , I found this site by accident , and it is cool , I realy think this site can help me a lot while I am trying to improve my English . I think her traverls are 5 times better than her novels . But not anyone can travel to 3 coutries during a 1 year period like her . I am a lucy guy . : ) If my sentences do n't make sence or are grammatically incorrect , then please correct them . My favorit subject was Botany . Recently , I 've come home without work , so I habe time to learn foreign languages by myself and train for Aikido . That 's why I realy want to speak English . Saying `` IPhone is necessary for you `` , some of my friends bought it , in fact . Also , it is good for the enviroment . all teachers understand my seepch Also , my expression is same everday Nowadays , fast fastfood restaurants are also beginning to provie a light meal like a salad or a lower calorie drink like a diet Coke . I hope the sun will be shining when we arrivr at the park . so not only soloists but also groups can hav an audition in season 3 . When I speak , I become confuse beacause English and Japanese have different word orderings . . . Also my writng is not good . . . I 'm really upset , because I have 1 mounth before I leave . I miss Taichung and my old frenids . I usually grind the favourit coffee beans and make some coffee . My favourit coffee beans are deeper roasting , bitter - tasting . ( Sometimes when the coffee beans are sold at a bargain price , I make the dicision to buy immediately . The city was hit by a a atrong earthquake , but Tokyo has stayed strong ! I did not know he was sit near my foot and playing in the computur . He siad to me `` what ? What did I do ? `` . I come ftom Taiwan . They came from England , Canada and Amarica . But , fortunatly , I 'm better and now I am coming back . I will plant them some bright day in the middle of Novenber . Of course it has cool music , a good cast , and an awosome script . I want to study englsh . 1 cola is about 250 yen , a burger set from Macdolands is about 1200 yen . . . will not be able to eat humberger for 1 year . . . . The sennd one is the Chinese Pavilion in the EXPO . A lot of new similar idoms The other day , I went to the Kyushu National Musium in Fukuoka , Japan , and I saw `` the national treasure Asura `` . There were many people , so I wated in line for a while . The moment I saw the Asura statue , I felt ious mystified , because in spite of the many people / the big audience , Asura was standing there quitely . I know both the bride and the bridegloom , so I hope they 'll have a truly happy new life together . Then I had breakfast and did not konw what to do next . I arrived at InCheon Internation airport early . I was so nervours , However , my teacher is very strict to me , and she always tells me that the facial expression of my painted cherubs looks so weired that I have to repaint them . I had never gone abriad before I went to Ireland . I was only Japanese person in tjis stable . And it 's the first time as well that the original will be played without turning it into a simple one for beginers . It 's `` Gymnopedie `` conposed by Eric Satie in France in 1888 . Creck here . I dicided to buy it . It let me study about Korean history such as how the North - South war started in 1950 and the annexation of the Korean pennisula by Japan beginnig in 1910 . But I workd . . . . . I got some chocolate and a maffin because it is White day . The one I had most success with was a rabit . I fed it from a little rabit to a big one . Alan Rickman plyaed in this movie . But I believe that if there are diffrent forms existing , then there must be some reasons for them to exist and for natives to use the way especially about the usage of articles . Although I have learned a lot in school , I ca n't turn all Chnise into English because I do n't know the vocabulary . I am worried about my English resume , because I 'm afaid that my broken English would make the offices laugh over their head . I recived my telephone bill today . I use that phone for internet access . It 's not suppost to be used to call friends . It 's just me that uses this number to call people sometimes . The details of the bill said I called and used it for arond 1 . 30 hous or something like that . I did not use it like that . I just use it for 5 minutes to calle my friends . They ca n't check it right now but they said they will let me know lettar . and I am very busy preparing for departuring ! We were able to listen to the sound of the waves while we were soaking in the buthtub . Some friends talk about their seacret stories , usually related to love . I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the buthtub . But the importent thing now is to organize a rescue operation . In fact , my father and I just went to the store ( on ) the day beofre the murder . I was really surprized because the horrible murder happened close to where I live . I got a cash gife . I 'm so stressed that I ca n't concertrate on the presentation . There are five people in my family . My mother 's name is Wanpen , my father 's name is Sonjonh . I have one sister . Her name is Tudsanaporn . I have one yong brother . His name is Lertchai . I want to make friends when I travel to foreign coutries : D I wanted to buy 500g of chiken , but there was n't such a volume , there was either kirograms or whole chicken carcasses ! ! The shopping cart was very larege too , so I could n't help but buy more things than needed . I love to lsten to classical music on the internet Radio `` Classic FM ( UK ) `` . Sometimes I have listend to `` Out Of Africa ( Screen music ) `` on the radio . If I have mede any mistakes in these sentences , please correct them ! ! Of course Macdonald 's food is not capable to properly keep us healthy because they use lots of oil and it 's hard to keep good balance of nutrition if we only eat from their menue . if I stop , many things will change . I do n't like my life at this moment . I ca n't realx myself . What I can do is make fun of the people who live around me . Someday , I wanna watch those movies without English subtitles and speak English fluentlly like a native . I love oily American food , but over - eating is bad for our health , so I need to exercise more self controll ! ! ! Today is Moteher 's Day ! ! The peanut butter includes pieces of peanuts and is a little saluty . Also , I like paticurally bitter chocolate . I Worry about it verry much . But I kown I will get busier and busier . Maybe I enjoy it , I 'm also afriad of it . One day goes by angin , en ( ? ) a little bit helpless , but also with some regret ! ah ! It sprended good smell in the bathroom . I am watching a foreighn drama . It was popilar in Janan awhile ago . I heve not watched all of season 1 yet . I think I need more regular excercise . People have many excuse for not to excercise , mine is I am afraid of my skin getting darker . Even thouh he said he wo n't develop a relationship with someone just passing through , I still fell into his warmness deeper and deeper day by day . No matter how loud the clock rang , I had no reaction , so I skipped class this morning . : p But in facts I want to know if there 's any way can make me miss him lessly , cause my friends always told me to forget a person it is impossible to be with . I like the cleass so much , but it 's pretty hard for me to follow up . 1 - Watashi no ima wa ookikute hiiroi desu , sorekara okki mado ga jitensha - doori ni menshite imasu . 3 - Chairoi taku wa arimasu , desuga zenzen watashitachi wa tsukaimasen , nazenara itsumo okimono de ippai dakara desu . todya there was a flamenco show in this restaurant . I can aiways listen to the music of flamenco . I like this music , but can not dance fulamenco . It 's Especialy comfortable to run in the morning . I wore a beatuful dress and had a lot of make - up on . Is my feelings straing ? ? So I asked a salewoman if she had the novel ' The English Patient ' . # 2 is her diaglones and cut her teeth . # 3 is her medicion . I ca n't fall asleep today , because a hurrican has come to Korea . Hello my friends , I have miseed writng in Lang - 8 . It was the mopst Lovely Holiday of my Life . The only thing I am worried about is that someone might hit me and try to steal my money because I have heard there are poeple who assaulted and stole money from people at ATMs in Japan . Turnitin is a detector for bad academic practice or pladiarism . Without having to include any references it would mean it 's pladiarism . If Turnitin warned you that you have pladiarism , you must rephrase the sentences in your own words or include references that you borrowed from other writer or creator 's ideas , otherwise you will lose a lot of points and , to make matters worse , you will fail the course immediately . I have been a public servent for 2 years . I 'm going to join in the Engrish cominucate Forum tornament . `` it 's time I 've wated for your rose that makes your rose so important `` It is like a child 's drawing , so I get embarrasssed . The firewood is fuel for the water wamer . Nowadays , fuel for water wamers is mostly gas or electricity . I am feeling a littel bit sad . I went for a walk around my neiborhood and found that many things have changed . Many intereting shops have been built and it is a pleasure to enjoy them . I did not intend to addess political or environmental issues . For everyday since I had to care of my grandmather , who has I remember when I enjoyed some seasonal festivals with neigbors , went to temples or shrines to be grateful , cook and eat traditional food to be eaten at the particular period . I 'd never heard of such costom before . Yhen I went to the little shop ( on campus ) , it was crowded too . One of the children is eitht months old and the other two are one year old . We have saperated axactly one year ago . I played Cod4 in an internet cafe with a Japanese girl , but we did n't talk much with her , because she was too depressed when shi was playing the game . Actually , at first I wanted to study phsycology as my major away from my hometown ; As a result , I followed one of my best friend to enter the university that I 'm at stuying now . Besides Japanese , I 'm also very interested in other cultures , like European and American culture . ; p I hope I can make more friends from different contries , learn more about different cultures and make a difference in my life . ; p Becouse the bang has hang over my eyes . If you use Twitter , let 's become friends . Ha haha ! I am very happyyy ! ! ! It occure to me that we could have a uesful and interesting time together . But the wheather forcast said it would snow by midnight . But if the tenperature is not so cold then there is a lot of rain or snow . Snow makes tranceportation difficult . I feld very good and helthful . I will take my holiday for Chinese Spring Festival from tomorrow till Frbr . 102009 . So in this perion I may not come here as frequently as I 've been doing now due the inconverence in accessing the net . Today I had planed to read my book before I went to sleep but I am still spending a long time correcting my diary I think I will probably read it tomorow morning . Also it is much more defficult to talk to someone when I can not see his / her face . Unfortunatly , I have no chance to speak English in Japan . I boutht roled fruits cake for him at Shinagawa station on the way home . Dragon Quest joker that I boutht one month ago . If they play a game for thirty muniutes in the morning they shoud go and play outside for one hour in the morning and the same in the aftenoon . These are really necessaly clothes but they are also a little expencieve for me . Also , I love `` Vronica Mars `` ^ ^ We can inquire about the resulst . You also have to believe in youself . This is Beacause it should help me to improve my sense of rhythm . ( I want to be a good singer ! ) I feel like I am a good frind with this device . If he is forgotten by evreyone , he will receive a real death . However , that is not real space flight , but that is the first step in brining space tourism to our daily life . many Korean students do n't like to styudy for TOEIC , The purpose of visiting Nikko was to talk with forigners in English . After lunch we walked around Toshogu Shrine , but we did n't catch / meet any other forigners . Conglats ! ! I 'm no longer supprised when we have blackouts because I 'm now prepared for them . Now , I look at my game collcetion and I ask my self : how did I play all these games ? I am studying to prepair for the promotion test . I 'm having trouble with my anoying neighbor . I 'm at the univercity in Japan . I do n't bileave that news ! ! butI reallywant to communicate with a foreign student , especialy with chinese or japanese student . I 'm looking forward to making many friends here , so please contact me if you have any of those hobbies listed obove . I had a 5 minites nosebleed but it was nothing serious fortunately . Studens really wanted to watch that game . We were really depressed and did n't consentrate . Not being able to stand and see the unacceptable truth , we are planning to creat a new club where students can stick together and share experiences in learning English . To have a success in orgernizing an English club , the leaders need to have interesting activities to contribute and maintain it . because I do n't have enough English skill and vocabrally . Beacuse Baigou is `` The city of Bags `` in China . After the meeting , we ordered a pizza and had a dinner togerther . First taime ? So . . . here is a question from me , what shoud I do each weekend ? Today , I showed my mother how to make a decolation mail by moble phone . It is wholesome erotic , so it 's safe for childre . The day before yesterda was Eurovision . many thought that it was a failrute . I fortot to erite X ' mas cards to some friends , so I wrote some in class . or Europian countries because Nobita is so lazy . Occatinally , we should go through trial and error to determine the best process . I love to watch mvies . I go to the movies and rent DVDs oftenI also have movie channels on my TV , so I can wach movies almost every day . I have a lot of favorite movies , and I want to recommend `` Beauty shop `` with Queen Ratifha . and `` Nobit `` ( I 'm not sure if the is correct ) with Eddie Marfhy . ( It 's so difficult to spell peoople 's name ) My favorable feature about the game is that you can go a battle against your enemies even if your are only level one ! Because I do n't think I 'm ready enough for my futur . And I think getting older means having many responsability . Now , I really want my wife to be a Japanese cartoon whorshiper . As I had thought , she entusiastically read it HAHA . Probably because , in Singapore , Japanese comics are littile more expensive than in Japan . I heve to get better , especially at long - distance Free style My job is engeer in semiconductor . I recieved a mail from my daughter in Bali , Indonesia . I have always been interested in online learning and am looking forward to gaining more experience in tis field . I look forward to seeing my friend becuase we have n't met for a while ! I hope to improve my English becuse my grammar is bad and my vocabulary is so poor . I hope someony will correct my English . He remenbered his father , mother , brother and sister . His tearcher liked him , not only is he a good student , but also he is only foreiger in the class . Can you guess how many men are in Jam 's familly ? Yesterday morning , I did n't check a weather forrecast . writing skills , but also it will be a good chance to get various expirience with I should have spoken clearly and maken sure . Of course , I watched `` Ugrry Betty `` . I will probably watch `` Ugrry Betty `` tomorrow too . m and finished at 7 p . m . After that I had to togo to the office for study session with my co - workers and my boss . Is that right sentense ? Uuuuu I becam sleepy , I think I should stop imagining stupid things . I 'm 12 years old , I want to make a lot of frend . today I took a bubble bath , for the forst time , The Feamale instructor is very nice . The most popular one at the libraby in my town was `` Magical Cleaning : Clean your house with pounding heart . `` The waiting list for this book had more than thirty people on it , so I did n't enroll my name on the list . I have to pass a State English exam so I 'll be very gratefull for your help and corrections ! There 's a chance to meet a person who has a simillar inner world like mine . It was very dericiouse . In our city , winter is ofter cold ; strong frost , snow storms , and ice . Auturm will bring joy to us , when nature comes alive and becomes warm and affectionate . I sometimes felt sea sichness . Yalta is a centre of tourism and enternaiment - well - looked after parks and alleys , a wonderful beach , waterparks and many cafes . All of this attracts many tourists every summer . Alupka has a beatiful botanical garden , which contains a collection of plants from all over the world . 1 To polish my shoews after coming home . 5 To raise my English skill from beginners level to intermeditate Misterious man They came by submarine and consisted of 11 people . They then finally sucsessed through to the boundary of the Korean forces . But all of them were killed by the Korean soldiers , and so he continued to find them while woonded on the mountain with his spirit ! ! So I brought hime to a pet shop in the evening . According to the weather forecast , it will continue to rain untill tomorrow . Yeahhhh - - - - - - - - - - - - - - - - - - - ! ! ! ! I 'm studing English little by little each day . Therefore , I was reserching the market related to these products and costomer . I 'm still cotinuing to reserch today . Then , I play that melody with the new keyboard I purchesed recently . I 'm writting an E - mail . My mother and I hope she stays in Canada and takes ESL at univesity or college becouse it can be more easy to enter , save the money and Univesity in Canada is not bad ! r Umm chould you tell me two ways ? ( take some exam course and ESL class at university . I heard her thinking that she want to do roomshare near downtown from 12 / 26 and it is better that room mate is Japanese becouse of safety . Chould you ask your friends ? Sorry , my English is really wrong , I appriciated your support . Many Japanese prefer to use mixi rather than facebook , because they have resistance to being discoverd by acquaintances ( e . I 've had a funny evening with friends . We went to a big shopping center , then went back to my home and had dinner together . I am working in an `` Automobile Industly Corpolation `` . The machine 's name is a `` Gear Incert System `` . We have until tomorrow to finish any ajustment . Hmmmm , what shold I write about . . My Japanese friend Momo and I are in the same englich class since this semester . For example , she can understand what I say like `` sit down . `` , `` get the doll . `` , `` wanna eat ? `` , `` take money `` , `` wanna have a snak ? `` , `` wanna take a walk ? `` , `` bring the line . `` and so on . cought a cold ? I think I cought a cold . So I shoud go to bed earlier today . I am writting my dialy for the first time . Nowadays I study English for bussiness . My bussiness is sales , and it imports produts from the USA for sale in Japan . I need to conduct sales meetings with foreigners seeral times in Japan . And since I 've used a lot of my time to read English , I am not good at speaking Enlish . So I want to get my speakin ability better by writing a dialy . I feel these 10 years have really flom by . I rentel a car . I am worring a lot about my future . Althought I may spend all day making this cake , I still want to do it . On the thired day , after I left the hotel , I drove my car to my home . I was impressed by the size and the cultureal diversity of America . I got rock salt of the Hymarayan as a ledies ' gift . Most Japanese students do not go to school on s `` a `` sturday but I `` am `` this year . The course instructer is not stricy but gentle and polite ; I thought in my mind that I could keep up with the course ! It is the start of `` a `` new week and study on c `` a `` cumpus . But it 's diffcult to do . Now , I moved to another place , so I have to trancefer to another school named Northview ( read like `` No frills `` LOL ) . A third dolphine apparently tried for two weeks to swim through the icy channel , but reportedly a teenage boy dove into the water , wrapped his arms around the dolphine , toddled it to the boat , and released it safely . I called her back , wondering what happend . Due to the child 's mischief , I enjoyed a lovely conversation with my old freind . These grils did not seem Japanese from any angle . Anyway , I sighed with reliaf . . . Last week , I sang and played the guiter in front of my friends . I have been playing the guiter for two years , but I have never played it in front of so many peaple . Recently I had a headach and a stomach ache . Dealing with all that daily hassle . . . . ( although that 's what ppl are supposed to do everyday ) I went to bed from 4 p . m . to 8 p . m . , so I 'm not sllepy . But they said `` Do n't use lip balm outside of its intended porpose . `` I had a fantastic year . I passed the hair dresser national exam , I met wonderful frends , and I 've had lots of experiences after coming to Vancouver . Now I am learning two languages , the first language is English , the second is Serbskiy . I have proposed many business plans and a business model , which I think was nice , but he only said that he takes them into considerasions . Now , I am studying programming and a system engeneer . A lot of people , not only Chinese but also other countries ' , are used to downloading pirated moives or music from Chinese sites . I went to the International party in which anyone can participate as long as they have alredy paid about 3000 yen each before the party . I think peple are can move from country to country more easily than in Japan because Japan is an island . I have a qurstion ! Two celebrites committed suicide recently . on my importent day I hope to make friends with a lot of peaple on Lang - 8 . It happend in the north east area of Japan when I was at home . I then turned on the TV and watched the News . An earthquake is dreadful but a tsunami is much more dreadful , I thought while wathcing TV . Amazing goal achievment To achive that , I need to take breaks efficiently . MUSIC is one of my lifelines to survive in these stressfull days . Remember , you should listen with the higher quarity HD mode . according to the rankings of the most popolar dogs in Japan , I wana speak English . How can I speak englsh ? How many times has the prime monoster changed in the last a decade ? I like to take pistures , and I want to become a designer : D When I go to foreigh countries sometimes , I want to speak English well ! Scientists think that the entrance to this cave collapsed and animals died from the lack of oxigen . It was a really good dinnner , but I 'm so full now . I aired out my ' zabuton ' becaouse it was fine . To Forigner , Japanese women look kind , tender , and honest . She wrote her feeling and appologie in it . Today , I went to a Vietnamese restrant with my friend after work . I took part in Enlgish Speech Contest yesterday . However , we have n't made reservations for a hotel , train or flight yet because I do n't kwow wheather I can get an annual paid holiday on 28th December . However , I 've gradually learnt / learned what is needed and recentry I 've learnt / learned how to enjoy the job . Jeajung not only sing but also cook XD This was a big celemony on new year 's eve . My daughter was diagnosed with hand - foot - mouth desiese . I 've heard this disease has been going around my frineds ' kids . I just came back from a trip to sikoku . It has beautiful and soft sands and little bit of waves ( Probably , breeze made that waves . ) It totally looked like seashole . it could n't compare to the joyment that the real Aussie beach gave me . Illuminations from each house were brilliant and conjured up a feeling of nostalgea for a fleeting moment . ( it takes you 7 years to become perfert in piano ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school to only learn basic skills or I can not even start . Her full name is Shakira Isabel Mebarak Ripoll ( Oh I ca n't remenber long names like this ) and was born in Colonbia . I hope I can sing , listen , and enjoy Engilsh songs without subtitels . : Do you know who this is ? The lead singer of Guns ' N Roses , Axel Rose ! : Well now coming in , were you rooting for the rakers or the Sixers ? ; The rakers are my favorite team but I 'm a huge Iverson fan , so I 'm rooting for the underdog because the rakers are like a given , so it 's like I went either way . : Now , Axel , you sat out there , you experienced the Philadelphia fans . . . : I know it 's your first basketball game ever , and I know its pretty exciting , but when it 's all said and done , the season will have been long enouh . : Axel , thanks for stopping by . They have `` kushiage `` , the spit fried stuf . You can see how the cook prepaes kushiage from your seat . Such as meat , seafood , vegitable and even seasonal fruits ! If you order the `` omakase `` course ( 2500 or 3500 yen ) , they will serve kushiage one after another untill you say `` plese stop `` . Since Demekin is a small place , it is better for you to make a reservation beforhand for dinnar time . Fortunatly eveyone was on time ! We ate good food at a restuarant We could see the nice ocean from the restuarant The host will invite their relatives , friends or classmates whose closed relatioship from each other sides . In that day , our old friends or colleages will travel a long way to join the wedding without complain . The same people were basicly found at two places : your relatives , friends or old classmates . I 'm so lucky that today is not Friday the 13th , because if it was , I could easily be a charracter of some horror film ; ) I would aprreciate it if you would correct this . The article was ineteresting . I think enantioselective synthesis is very important , espescially as it affects medicine . So I answer , `` I understand a litte `` or `` I understand most of it `` . Last week , I bought his book titled `` The Last leacure `` . Yesterday was November the first . Some people call this day the Bachelar Day . I guss it seems that the figure `` 1 `` looks like a stick in people 's minds so that mang guys link it to a bachelar . Furthermore , January 1 represents small Bachelar Day and November 11 means big Bachelar Day . water - sensitibe dye using onions , so this time , Let me explain how to make it breafly . I would like to do a research on one of the reports about a sports meeting featured in the Renmin newspeper , which is not easy because I have to read all of Maybe the managers of these comany did n't understand the chinese market at all . Time : 8 AM on a Weakday ( if possible . ) However , some items have n't been configurated yet . I hope I can make more English speaking firends . So there are a lot of idioms Japanse do n't know . Our house were really large and we lived with many famlies . My job is a certificated public accounter ? This year the weather is expecially bad . Reading an English newsparer Tomorrw is my mother 's birthday . There was a small town in China and the civils lived peaceful lives . However , an eathquake hit this town and many buildings were collapsed . Visitors from foreign countrie also loves Baked Sweet Potato `` Yakiimo `` ? had beer a littie while ago . A lot of foreign guests visited my commpany . Tomorrow I have a date with my colleages , we 'll climb a mountainj , I the futuer , I will do it . It 's very important to me . Happy weedend ! Maybe my hair is a littele longer than Nicole Richie 's hair . Japan is seen as a representive developed country , and everybody says that Japan is such a splendid country . So we canle the plan and then I cooked for the first time . The answer is absolutly not . Althogh I have studied English for 5 years , I ca n't write and speak English well . But my english was not good enough , so we had trouble comunicate . I was tired because of the time difference , so I went to sleap at once . How can the human heart be fullfilled ? I started thinking about such things , because I wonderd how my heart could be fullfilled if I ca n't satisfy my desires or achive what I want to achieve in life . I 'm interested in learning to annreviation messages like people do on Twitter . Another friend is comming here with a cake he made himself , and others will bring something delicious . everyting is perpect . my firend , whose birthday it is , will come here . My main perpouse was to study English . I deside that when I leave Los Angeles , I will return or stady hard . 2chan is the largest bulletine board site in Japan . This scene must be shocking for many Bruce Lee funs . when I was awake , goodness , the pain was decresing and now I 'm fine , heheheh thanks god ( _ _ ) There wil be articles , prepositions , phrasal verbs , tenses etc . I hve n't made up my mind if I would go and see a doctor tomorrow . Also , the Furugana are a big help since I 'm so bad with Kanji . Now I want to draw a simple high school love - Commedy . I 'm hesiting . When I rode my bicycle , I took my phone from my poket , But I 'll try to keep writng jounal regularly from now on . My present circumstaces are very hard [ / difficult ] . Especialy , poor people suffer the most . Although we did not make moeny this year , I had a great time . Good luck my firends . When I was in 6th grade , suddenly I was out of freinds . My best freind said other freinds not to play wi Since then I 'm afraid of other people , expecially their eyes and words . To find good freind , I have to go outside . But by writing my fellings I want to catch myself . This summer vacation my family and I got tegether . But as times go on , there arises some disagreements between my mum and I . I 'm a colleage student on vacation and I want to study because I must take an exzam in the later term . The government takes these measures just in order to bring about some converient . In my opinion , opening the museum is better , we can learn about the advantages that the goverment providing . Realizing the policy that is offered to people , knowing that country is always cares about ciril life . It will promotr our country 's development . But , I saw a mechanical rubber ducky like RobCop for the first time . One is heading to Dash Village , which is artificialy created for a TV project . Near the end of it , the earthquak struck Japan . Through the accident , I take pride in the consideration and cooporationship of the Japanese people . This site is a little diferent . . . I was looking for a song , then I tought : why not pick something related to Sailor Moon ? Then , I tought back to those days when I was watching PSGM . . . What happaned to my computer ? bcuz my English is terrible yet . so we can make time to have fun in Vue and it 's so valueable watching movies . I am so Thanksful . fry chopped garlic and bacon with olieve oil . I enjyoyd myself . Last year , its value went up double or triple compared to the one at the beggining of the year . Do n't be suprised too much ! When I try to memorize them , I write them on papar and read them with speaking out . I did n't do enything today and yesterday . He said it is culture shock , moreover Japanese service quality is awesome and creative and enjoynable . I hete gorst , heights , dark spaces [ / BLUE ] , sander , when someone hates others , wars , being hated by a person , dying . . . . . I was very surplised [ at ] the announcement . I love the scotish accent ! I 've desided to study English everyday ! And at the end are the angels singing in chorus `` Halleluiah `` . Shengbing is the most famours societies in my college , I want to join them very much . Recently , I watched a video blog posted on ' YouTube , ' and the vlogger said in the video : `` The best person that you possibly can be , is yourself . `` Have you already had the oportunity of meeting that girl whose pronunciationin of Russian is very good ? There seems to be many internatinal people here . And I saw a vedio from youtube . Menu items are named after certain magic and monstars , and the waiters talk like people in the game . Whatever happens , I definitly do not have any excuse to lose heart . Becouse they get marrige young . By the way , today we celebrated the `` green festival `` which is tradisional in my city . Despite the young age , the groom looks really calm and plite . We are supposed to play our song in the ceremony , which wil be fun for us and the guests . Please check this sentense . I often travel aboroad alone . I have been to Vietnum , Cambodia , the UK , Spain , Turkey , the UAE and Greece alone . When doing so , it is necessary for me to communicate with local people in foreign coutries . I try to buy my airplane tickts by myself . It gives me a sense of achivement . Introducing myself and thinking about a gifft for my friend . Please let me know if I have made any mistakes in my sentense . The cow is an old friend of the old man , who has raised the cow since it was very yong . so I only learned grammer , reading , and writing , but not speakingg . Especially when I talk to nateve speakers , I feel a bit nervous because they sometimes reply , `` Pardon ? `` or `` Say Again `` , `` What was that ? `` It really made me unconfident to speak . It helps us improve the ability to relate or summerize something in ways that are easy to get . Anyway , I have to say that learning anything is not a piece of cake but our passion for them will helps us be good at them easilier and sooner ! ! ! I do n't like only the Europian one but also the Japanese . I wrote a report about `` Wagashi `` ( Japanese tradditional confectionery ) at university . Foods are parishable and it 's easy for them to gather mold . Today , it raind for a long time . These days , shares of smartphones in Japan are increasingrapidly the same as ohter countries . So , I do not want to delay making a dayly diary , and the `` Big Bang Theory `` sope opera is waiting for me ! Some friends told me they also have the same feeling as me , they said sometimes they would feel loney , and when they want to call sb to have a chat , there is nobody to call . . Badly , I do n't know why should I do about reseach topic . this is my reseach topic . And now , nobody does dont know what Facebook is . However , the fact is that we can never garantee that those people will be with us throughout our life . We keep learning to be independant , starting at a very early age , and are encouraged to creat things by own hands . By making different decitions or choosing different life directions , we depart from the same junction where we met , became acqauinted , created lots of good and bad memories , and then began our own distinctive jurneys . There 's nothing unchangable in the world . This sometimes leads to desapointment . my and a reading room . Starting today , I will go to an English acadamy and reading room . And I dicided that I will write journal on Lang - 8 as much as I can . I study English because I 'm intersted in it . his wife in a wheelcar , - > wheelchair Today , I woud like to write an essay about the Tohoku queake . The train swang back and forth like a swing . I did n't know what happhend and I thought it was a breakdown . Whan I heard of the earthquake , there were no trains moving . It was more terrifying than the queake itself . I heard that many children were helped by strengers that day . I do n't know which department I 'll work for yet , but I feel like I 'll be placed in men 's clolthing . I hope I can improve my english by taiking advantage of this site . He meets her evryday . My frieds also like movies but their favorites are mainly Japanese or art - house films . Now I am worried that I may feel that same way and delet this new blog , And because I also want to promove my blog hehe ( http : / / room - 501 . I am looking forword to experiencing life and culture and so on . Good eveninng ! ysterday , I went to work . This is my senond day today . I checked my dialy entry , and it had many mistakes . It seems like it is not perfectional at all . I daydream about having a great job , and being a milliomaire . But while fantasy is pretty , the real word is cruel . I hope I can imporve . Additionary the Internet can solve unemployment problem which developping countries have . The Internet helps us with communicatig with foreigners . Before the Internet became common , we had to serch for information in dictionaries or books . Thirdly , the Internet can solve unemployment problem which developping countries have . By giving buisiness oppotunities to developping countries people , the Internet can make their economy much better . As you can see many people use the Internet for communicating , finding informaton , and even for developping countries people , they can find jobs by the Internet . Im often watchi foreign dramas . I went to the libraly to do some writing homework . TOEIC is one of the Japanese Enlglish qualification tests , This mroning , I got up early . Seoul is expected to be cloudly and without rain . We went to Koube . However , I have n't prepared for that at all in this month , so I am very worrried about that . Since then , I 've visited Korea and the philipine . Father took the yonger of the two children out of the car . He is a budy of my friend . They finally successed So I 'll try jogging with my iPod touch and a Nike censsor . And then I aslo want to traslate papers on other topics which I wrote about , like A town of Tokyo and Images , ( That was my specialty . ) or something . That 's what japanese does while Japan was invating Asian Countries when Japan was once under imperialism . But can we say that it 's the right thing that it 's been a weakness of Japan at deplomacy and Japan is blamed about it forever by some countries ? At first I was surprised at reading a sentence that said `` I felt very happy about Japanese being afflicted by the atmic bomb , when I saw the photographs . `` When I read the sentences , my head seemd to awake suddunly . In addition , it described the terrible behavior of Japanese soldiers concreatly . But I think about it calmly now ( when I was 20 ) , I have an opinion that it 's not a right way of thinking like `` I 'm very happy about japanese being damaged . `` Because the `` eveil `` is not one of soldiers or one of the citizens . Fuji , wchich is the hightes mountain in Japan , and Hamana - Ko lake , Sekigahara . The stage , the crowd , the light , all has disapeared in a flash . As I get accustomed to the real world , I start smilling to myself . Parents threanten children to do or not to do things with horror stories . He creats his own world , and is great within it . We enjoyed a delicious lunch , after which , we went shopping and enjoyed the atomosphere of Christmas . Today was great througu I still felt like a isolated knight except when talking to this girl who was really sweet who taught me the words `` serendipity and kismet `` . are lots of action sean and I liked the story . But , for tommorows ' classes I will be absent for all of them . So , I will study hard tommorow . I have n't gone to any foregigh countries yet . Perican eat pegion Genshiken is a club for studying varous anime , video games , and manga at college . Most the menber in Genshiken are male . We were a good convination and our team was strong . I did n't remenber that Mia lives in San Francisco and I was really surprised the city had so many slopes . In the book I thought there were a lot of instances of lessons on how to be a princess and affairs between Mia 's mom and a teacher , but they were omitted . I also thought her granma was older and meaner , but she was so elegant in the movie . So she can do whatevery she wants . Becasue I like the French bread best ( from all types ) . Her actios are so cool ! I think her activitie are worthy of praise and she is a wonderful person . Representaion of the `` Life of Pi `` One srange thing in the story is that nobody cleans the molded cheese on the ground . If I had n't seen the movie , I chould n't understand the story . When I go to a supermarket , I walk around to see various marchandise . I enjoy finding new marchandise . The inside of it was a paste of sweet potate and rice cake , though it is ( usually ? ) bean paste . I had a lot of time which I could spend studing English . But now I work every day exept Sunday and sometimes Saturday ( ? ) . For the last few months , I 've been trying to be more progmatic , to accept the harsh realities of life and to do more down - to - earth things . Luckly , I 've found this website . I said to myself , `` This is a good chance to improve my English . `` I want to thank anyone who will heip me . Do you have any idea how to spend time in the dark without using electrisity ? I am a little nervous because I will be embrassed if there are not enough topics and we just sit there in slience . I hope I could help Japanse as much as possible , also improve my language skills . I naievely believed those who told ( and are telling ) His belief is undarstandable and I agree , it will be the new common sense of this world . instead of believing in critisisn , But actually in Japan , where anonimity looks more important than in other countries , We have to do the parformance in front of the classmates . They 'll eveluate my lesson . Many classmates make nice matelials like picture cards , letters card , and so on . They will become my property ( ? ) , seeing medical care and meeting English docors and students . They will become important persons for me in the future because they can cange Japanese medicaln , thinking about Japan objectively . I wnat to talk with her This was the nice greeting I heard today , and it should be the idea that radio peiple should keep in mind on Valentine 's Day , I think . But look after , it was n't that big or complecated . But there 's no regrete . It 's very quitet in the office . Today I dicided to study English again . After I watiched in the Garden , I wanted to be regular emploee of this company . Cotton increased its sales as well , except that it was a rather dramatical rise from twenty thousand to a peak of eighty thousand . In January , some menbers of the team changed . I drank Soju which is Korean traditinal liquor . I went to the Central department on the 3rd of April where an anti government raly was being held . Whenever I 'm workig in the morning , I hear birds singing and remember a holiday I had taken . I stayed in Sukhothai , Thailand . in Jingu studiam today . So I can speak a littele French . In Japan , a sense of crisis is in the air that tha the nuclear power plant accident might destroy Japan . Not only the Prime Minister ( , ) but the peaple should also help revive japan . Since GEVEY , which I have used for my Sim - locked - iPhone4 , has got some ploblems and became Although It 's rather exepensive it 's so yummy ! _ The same level of Chinese food as in Japan . A 32inch Samusung costs 23000 _ peso . I carried it back to my room by hand , _ and applid for cable TV which costs 500 _ peso / m per month . My degital life in Manilla has made rather big ( or good ) progress ! ! I belonged to a musical club when I was a juior high school student . So I should study Engrish harder . Of cource , bad things happened . Alomost all my friends sayd , `` You are very outgoing . `` Therefore , my English gramer skills are very poor , probably this diary has a lot of misstake . I want to go abroad through a school schlarship program and earn a lot of money for going abroad . because I got sick recently and I felt that English was hader than before . Suddenly , I was really worred about that . Speaking is especialy difficult for me . It happened suddunly . I thought it was an emargency . My boss called me to ask if I could go to waork next Saturday . I decided to start using Lang - 8 to stydy English . Athough some people believe a considerable proporton of rural students should put a lot of effort into learning , there really is a phenomenon that rural students are more likely to have problems with getting into an university . Despite that , as an enlightened and obligated government , it shold make this top priority to these originally disadvantaged students . One of the ways to jugdge if it is okay to lie in a specific situation is to consider the reason for lying . But since I have gotton friendly with forien people , I found out the fact that we do n't tell the truth to people is more common in Korean culture . Yestoday the dentist ( denstist is the name for tooth doctor ) gave me a painkiller injection after he pulled a broken tooth from my mouth . Grammar questions , in paticular , were key problems . Having a cold is very tierd . It went the oppsite way . I 'm from China , I can speak chinease ! After sdudting at GV , I camehome . I would like to buy a red trevel mug . It looked tasrty : - ) I would like to eat it ! I had never eaten vienam noodles . I 'm worring about my English speaking skills . Therefore , people gradually lose the capability to cherish the elegant tasts of natural food . I am sorry , I do not have my hometown 's photograhp , but I can introduce it to you ! It 's a beautiful city , It 's very pleasant . People always come in July , August , and September to our city for holidy . Keeping water confortable for saltwater fish using chemicals is difficult , so we took some tanks and carried them filled with water . There were Spinach , brocoli , Japanese radish , etc . These home grown vagetables taste better than the ones in the supermarket . I always appriciate my parents . It remainds me of when I was a child . after getting used to being lazy duging the holiday . My first lang8 diary is this pege . I read ' Billy Elliot ' , a book I brorowed from Jackie . One day , afther the boxing class , Billy learned some ballet moves in Mrs . Wilkinson 's calss by chance . When he went to the school for the audition , Billy was frightened of the posh otmsphere and after the audition he thought he would n't get in to the school but he did ! ! I ca n't rememger all of it . . . . . . . . She suggestted for me . coffee jelly 110g , 1 / 4 whipe cream , 1 cup latte pudding , 1 scoop vanilla ice cream Seattle vs Detroite . Seattle 's starting picher was Michael Pineda . These days , I have been very busy writing 2 kinds of graduation thesis ( because I belong to 2 kainds of seminars . . . ) , but these letters were refreshing : ) And after school I go to additional classes in informatics , biologi and algebra . We had a ferewell party for overseas studens yesterday . However , the result was incrediblly bad . . . Recently , I 'm always tired because everyday I wear fomal dress and am asked So today we 're going to renew our expired pasports . August 11th . * Ougust 11 August 12th . * Ougust 12 August 13th . * Ougust 13 Atheletes playing sports encourage people to be more alive in their life . Assuming the amount of enjoyment people obtain from waching is proportional to the amount of money athletes obtain , it is even less of a surprise that they receive such a large amount of money . From a different standpoint , we might view the mountainous pile of money with suspicion of whether they , atheletes , really need such money . I think that they do n't have enough provisions of electrisities . Anyway , I gave up on taking a shower last night , and I tried again this morinig . But my heater was broken becuse of too much heat . That heater give out a white smog and it smells as if something 's burnig . A few weeks ago , I watched the movie `` Dawn of the Dead `` with my firend . People who were not infected tried to survive and gethered at the mall . Nonetheless , they desperately waited for help from outside in the hope that there must be many people out outhere alive . Nabe is boioled vesitable and fish and meat in a boul . It was very delisious and filling . these days people do not have time to stay healthy , they do not have time for exercising , eatting and sleeping well . First , nutrition is one of ther most important for good healt ; therefore , we should have a healthy food . One strees clear of high cholesterol foods , such as eggs , fatty meats like pork and sausages . Abstain form dirnk acholo anf caffeine , and try not to drink more than a sip of water within one hour before going to bed . Thirdly , exercise to firsr bulid heart rate . However , if people too busy to go running , walking is another choice or taking the stairs insteed of the elevator . After that , buliding muscles . Of course I am allowed to sleep if nothing has happend . so I am really happy that I learned a alittle bit about e - bay . I 've alredy written three articles ^ ^ If we change the way we think , the protests could be a good step toward making Thainland a better country . It is sooo sad , but it is very real . One of the Krean student made a frog using origami paper . My sister highly recommanded me to watch a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about its storyline because there were a navie guy and a weired guy dressed in and put on evil - likers . It was like writting in some strange language . I can not let this feeling distory myself , I should find something to do , it is urgent . All I get here is loneless . The third dialy ; ) The doctor said ( that ) maybe I felt presured or too nervous . Yesterday , I went to see a doctor of traditional Chinese mecidine again , He foun it ! ! Accrding to this program , Dutch people eat sandwiches that have a biscuit on top of bread . Both counties have a lot of worldwide counpanies despite their small land . We do n't uaually connect each other . I did n't really put as much sunscrem on my body as I did iton my face . Well , I gusse I 'm feling much better . I have a lot of fun when I 'm writting it . When I think back , there were a lot of things that happend on this year . It was very awful that no one else cound take care of my son . Selebrate the 1st of . I am going to make her a pasta with tomato - sauce and baco , and the cold potato potage soupe . I like cookineg and I 'd like to make my wife happy . When spring has come , we not only have a lot of cherry blossons but it is also the time for graduation celemony at school . I feel malancholy . I think nodody could know how I feel . I need to think that everything will gose well . Was somepeople not happy today ? If you were n't , I want to tell you to smile . But some of my friends have already had opearation , and in addition I 'd rather enjoy the present time than worry about the far future ! ^ ^ But the cost is very expensive , 20 thousand yen or 2000 $ using a dicount coupon . . . What 's the reputaitons of Lasik in your country ? How about in other counrty ? ? Today my sisiter came to see me . such as the current economy , climate , entertainment ets . During the stay in Toyama , I relished mountainneerings to my heart 's content . One time , I climbed a mountain called ( if I 'm not mistaken ) Tateyama to , hopefully , observe Grouses which are disignated as an endangered spieces in Japan . The summit , we found , was replete with alpine plants and some sighnposts proclaiming that we could n't set our foot in the places palces where the plants was growing . This is between us , but we broke the rule and sneeked around on the plants to see some species spieces we could n't see from pathways . Or most of the plants were very medest t and even tiny projecting a humble atmospher and might have graced our eyes for a fleeting moment . Yet , mountainneerings was certainly worth no matter how may times we did it . It was parked by my dapartment parking lot last night . I did giological field survey . For example , : Japanese Vocabulary is a Japanese study tool designed to help you lesrn more than 400 Japanese words . One thing is that I wanted to comitte myself for the couse of whole Japan . It occered to me that I would rather be poor than to live thinking only myself . If you correct this entry , it is very instractive for me and I will be very happy . I live in lapan . I am a college student . It was the traditional festivel of China - - - - - Mid - autumn Day , it was sunny and at night we enjoyed the beautiful moon . I need more excersise . Japan drew with Jordan at the thir first game on 9 January . I thougt that Japan would absolutely win . I 've just registerd on this site ! The car nabigation system in my car is broken . Friedrich : Jo , such a littel name for . . . I had a good expresson of him . Hallo Everyone ! Its saling now . It has slices of cheezes , meat , lettuce , taco meat and hot tomato sauce . I wrote a diary just now and got a response imediately . I feel you guys are so passionated . Some ( people _ insist this methoad is bad cause we can use the worng expression again and again . so put on a smill I did n't concentrastion in class . more interesting was my collegues who didn . t speek chinese . because she is Korean . I live in Hokkaido , the nothern island of Japan . We have to live with just one , small electical fan . Bagles are So Expensive Today I went to a bagle store I have been interested in . It would n't have cost me more than 5 dollors with a drink . My favorite idol committed suiciside . My hobbies are snowboarding , travel and andstudying foreign langueges . Now I am studying English and Spanish . If you learn Japanease , I will help you . If Jpanese peopel learn English based these misunderstandings , they will use English rudely and upset others . This show plays on TV at 6 ' o clock pm but I ca n't watch it because of my church servise . It has aleady become my favorite show . In this show 7 singers apear and sing a song against each other . but I preffer a whole one with its insides . I 've been ready for my new bisiness for many years . I 'm planning and making a new web survice with my friend who is an expert at computer programing My ideal web survise will launch soon ! To develop a web survise takes many years and a lot of money , and no one can know what web survie will succeed . I 'm going to take a chance on my new bisiness ! The school has the same service but it has some kind of rules like the deadline to recieve that service . The first 3 weeeks was a challenge . Pronuciation , intonation and stress were defficult and they killed me . Sometimes cultual differences caused misunderstanding . The word I used were taken as a different meaning but it told me a lot of things . How important it is to understand backgrand of the language . I went school and leared about English Education . My frind visied me . He is from Malysia , and I met him in Australia . It was about Japanede culture . I cried whan I left my home stay because they have been like family . I will difinetly come and visit people I have met in Vancouver . The othre day , it was broadcasted that an entertainer was hospitalized for tubeculosis . I heard that she had had storong cough and felt lazy for long time . These days , she went to the hospital and was checked up , and she was diagnosised with tubeculosis . She is very popular and appeared on TV every day , so she had many contacts with many people , so it is possible that tubeculosis was transfered to many people . Patients with tubeculosis need to be insulated into special hospital . Tokyo prefecture and the office that she belongs to started to inform the people that may have recieved tubeculosis from her so that they go to hospital and get checked up . Cerebrities many opportunities to comunicate with a lot of people , so I think that they should go to hospotal and get checked up soon . Today I talked about a shortage - of - clean - water problem in my English converstion It 's Rainning . It has been rainning for 3 days . If you come to Japan , I definitely rcommend you to eat Ra - mens . For such reasons , I sometimes forget easy grammer and words , but I am glad that u correct my dialy willingly . 1 : to talk about daily life in easy English with foreiners I do n't have enough knowledge adout every genre . Althrough I 'm an English major , my English is not very good , Recenly my eyes have become worse and my last pair of glasses were in bad shape . They mit my face . Mussle training ( weight training ) and walking have made me slim . I was invited to a lunch by my hasband 's colleagues . The oven was out of oreder ? I could n't understand why it was not working , and I asked for help to my hasband . I want my English sentenses to be polished up . So , Amelican or someone who can speak English , could you correct this diary ? ? I 'm a little lonly , but I 'm looking forward to visiting her in NYC . Today , I 'm going to the English club in my neiborhood . Randon toughts of a silly ( and sleepy ) mind I started this entry whitout any ideas to write . The wheater ? Well , today the sun decided to show all his magnitude and the resoult was a realy hot day . ( Maybe he picked a fight with the poor clouds and banned them from the sky . ) Okey , I just finished talking about wheater . . . I know that is only 9 PM but today was a realy tiring day and I 'm realy sleepy ( that 's why my post is so silly and have almost no sense at all ) . I can get realy silly when I 'm sleepy . ) Today we seperate the teams into the 2nd and 3rd class versus the 4th class . After a couple weeks I decied to buy it , but it had already been sold . Since then I have been looking for this guitar everywhere / in every coutries . I can understand the doctor 's workloard is very heavy but her attitude is not very nice and friendly . I 'm considering working hard to imprvoe my English skliis . After a moment , one man came up to me and sat down besaid me . Then , I got to the Foreing Book area , I found an English wordbook . Today , I am going to go to the lalaport , shoppong center and buy some presents with my wife . There are a lot of advanges ( when ) attend ( ing ) a live performance . For example , watching / ( hearing ) the muscal in the seat near the stage is the astounding . I belive 2009 will be great time for me to improve my international experiences . welcome freinds ! ! For example , I do n't like shopping , I have no interstes in those silly rumors about boys , and I 'm totally not addicted to love stories or movies . Instead , I play DS or PSP games , read detective novels , or wrting posts in internet forums . But I am oing to change my place of work because of the crisis . My company has suffured because of this crisis . I read `` The Da vinch Code , Lost Symbol , and Angels & Damons `` My name is Liuquan . I want learn English well , but my English is so poor , so I want make more friends to hlpe me improve my English ! So It was very derty . His performances aways influence me deeply . Of course , we can also see his great performances in Chocolate Factory , Pubilc Enemies , Edward Scissor Hands , Sleepy Hollow , Chocolate , etc . graguate program is n't an easy work . I have applied for up to 8 shools , costing totally 1000 USD for Considerating school reputation , cost , and lenghth of program , I Being admitted is only the beginnig , loads of works are waiting to be done . This evening , I watched a movie called `` This is it `` which is organized with footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London schejuled in July . I am intersted in American comic culture . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tsuna , and many other ingredients that were available in my home . Matsushima is one of the beautiful spots in Japan . We call it ' Nihonn Sannkei ' as there is so much beautiful scenery . So It 's my favorit driving courses . In addition , I am worried that there will be a typoon today . we have a long hoilyday . my Enilsh is very bad , I want to made good use of those days to improve , espesally my speakon Enilsh . I have been learning english for 22 years , from junior high school , and now it has been 10 years since I graduated from my univercity . ah , that is such a long time , right ? And yet Ifind that my English capability is the same as 22 years before . Today , my family went to a shusi restrant and enjoyed sushi dinner . No . 3 : tuna eith leek The series has been pubrished since 1994 . I think that if you want to be rich you had bettr learn three categories . Economics , politics and money ( that includes money market and investmet ) . I do n't remeber at all , but I was really , really happy because I received the entire `` The Lord of the Rings `` collection from my grandma . I usually eat cut tohu in miso soup and rice for breakfast . Miso soup is soybean paste disolved in hot water . I plan to have a big dog on the huture . The cherry blossoms near my house , bigan to bloom . I was thinking of getting a driver 's risence during the spring break . As I have never ridden a bike before , it is very diffcult for me to get started . Back then , I believed that I could n't keep my banlance so I was afraid to have a try . Untill now . Now I have a strong will to master this skill . First , I had a sore throat and then I had bad caugh . . This TV program videotapes everyday lives of patients with Alzheimers and thier family . Then I saw that the patient in the show could n't wear jacket correctlly ; she put it on inside out . I waana have it . though my lips and teethridge feel paralysised . I 'm so nerveour and feel like I have butterflies in my stomach . Athough it is late , happy new year and I hope your business will be seccessed . I 'd like to have a succeful life . We all knew that Microsoft set up a website to moniter the usage of IE6 . A grammer book A grammer book made me fall asleep . All products are 30 to 50 parsent off this season . This will be a good lesson foor me . If I say something in Taiwanese , it lets my feelings transfer to the other person very dirct . January 17th was the 15th anniversary of the Great Hanshin Earthquak of 1995 . Kobe is an urben city and famous for fasion and nice food . Many peopl were chrushed and burned to death under the rubble of houses . There were many blue plastc sheets covering the debris . I truely wish for Haiti to recover as soon as possible . Some kindegarten have school buses . Its ingredients are potato , carots , sosage and so on . I remember the song ' Lonely Day ' by Sistem Of A Down . `` The most loneliest day of my life `` . . . I need cry , but I have no reason to . Once upon a time , one man wrote a sad song and upon hearing this song , people would commit suicide . I think ' Gloomy Sunday ' is a beatiful song and therefore I didn not kill myself . Japanease and foreign people visit this city for sightseeing . . Do n't depend merely on infometions . I am keep going to write Englis entries . I hope my englis gets better and better ! I 'm going to gather some imformations about it . Nagoya is the thirs largest urban area in Japan and is located between Tokyo and Osaka . I 'm working in a restrant It is a high school 's baseball ( team ? ) and youthfull . I am very glad to finish it successfuly . I am studing english now . peaple all over the world have to help each other . if we ca n't communicate with foreigners by talking in our native lungage , we have to help each other by using euglish in the world . When I came home I looked at the moutain of his toys toys that he had made in the living room . When we were young we responsed to our dad or our mom for their love . before I signed up it , I looked it up on wekipedia Whether nighttime demonstrations should be permitted or not has long been a controvercial issue in Korea . But since it 's quiet and confortable for me to cycle from the station to my home , even in Tokyo , it 's cool and silent at night . I 'm 20 years old , and a student of univercity of design in Japan . and we recognize them as `` real `` foregin women . ) And Japanese tradiitional behavior , too . I gess the pictures are rare . As I usally put on makeup , these are very important . Third , It was my porpose , I chose Yukata . If I were to be a pianoist , I would like to play the piano for children . Many tipical Japanese companies have new years vacation during the first three days of January . I normarlly lie on my stomach when I have Yakiniku . I wonder what had happend to their relasionship after dinner . I have never visite a place where the tempureture is so low ! ! ! I will visite the USA this winter ! However I have a plobrem with a certain personality in my seminar . My fevorite team is Consadole Sapporo . Could you please tell me othere sites where I can read texts written by native English people ? I wanna be a Chisese teacher My company serves ous box lunch for a small fee . but the curry tast different from previous one . Ketchup tast was strong even though I poured soy sauce on the curry and rice . Korean peple made a good impression on me because they were very kind . I have change tha Tire . Have you ever seen cherry bloosom ? Many people who travel around the world can not exactly explain what culture is , beacuce the feeling is beyong words . Those who exprience culture in preson are different from those who just watch travel channel . If you truly love a certain nation or place , the best way to understand local culture is definetily by traveling . If not only to experience the culture but also broaden your horizen . Then , the next time someone asks you what the culture is , then you will realize how improtant slience is . Lisning pracice . What is he saying ? I 'm reluctunt to work on English . Anyone have any tips on how to cotinue studying English ? Do you use Iphon ? Today was not a spesial day . Next spring , I will attend Univercity of Kyoto ( not Kyoto University ) . This ketchup made the chili more tastey . I presented a marrige present to my colleage . practicing English , I write a diary here . She picked it up and brough it to their house to eat it . Late in the afternoon , I finished my graduation ceremony for my diproma . I was encourge by her and was warmly received with a friendly smile ( I can see that she is a religious christian ) , then I began to talkwith my friend whom I 'm afraid of and hated before . I receved notice of an Informal Decision yesterday ! The alternative medecine In the linear algebra class today , we listened to an academic lecture . ( Usualy we are taught the baisis of linear algebra . ) Today 's class might be special . Unfortunately , I did n't have muy own a lot of colonial places to visit , and has many foreigns . Okonomiyaki is made of kneaded flour and sliced cabbage with some favorites . Recentry it 's been getting hot . I like flavored strawverry milk in it . Usually I buy botlled tea when I go to the languege school vending macine . but I do n't want another bottl becouse it 's heavy ! On that occasion , she got mad ! ! I do n't undrestand ! ! ? ? Today I ate Takoyaki with my friends , which we made togrther . Es tut mir bleit , aber ich werde heute Abend nicht hierhin kommen . But there is a Japanese craftman , who has lived there for 20 years and has devoted himself to restoring the tradition . It eventually came from the germ of an idea , tentatively tried out by the oboes , clarinets and bassons , which the cellos and bass turn into a fully - fledged theme which was taken up with incresing enthusiasm by the full orchestra . These memories are unforgetable . Fusen volleyball was born in Kitakyusyu in 1989 . A : Of couse . Each uncle or aunt has a son and a daughter except my yougest uncle . I am losing confidence now . . . . . . bad listening aptitudes , poor reading abilities , even wose writing competencies , and the worst speaking skills ever . . . . . I am very much looking forword to my day off . `` Hakone `` is the name of a place which is famous for hot sprongs . Every year many daramas unfold . I want to send a letter so please correct my sentense . I want you to play the guiter and sing songs ! ! I got this moive from my malay friend . Studing abroad He also taught me about food from vorious countries . Because my mom went to my grandmother 's home in the moring . more than usuall , and here is the fact . Second , I 'll do some anaerobic excercises every morning such as sit ups and push ups . It is famous for the Otaru canel . At this event , the city is lit up with many candoles . I worked with my gloup activity members . We made a snow slide and places for putting candoles by shaving snow and ice . But the candoles were beautiful and I met many lovely people . I like the SPA ` cause it ` s a very relaxing and commfortable place . After I go to the spa , I want to go to shopping ; I also want to buy shampoo and some snuck . because their plays are dinamic and speedy . I want to say to everbody that I want to make friends with you . Today , I was thinking that I 'm a loving persion . Esepecially when I am doing something or making decisions , they do not always agree or understand my view ( continue ) Here in Russia we have `` May holidays `` , that is additional days off on the 1st and the th of May . First , I read the Liberal Democatic Party 's manifest which was the governing party before this election . I thought it was terrible how they wirte against the Democratic party . I am planning to visit many cutomers for new year greetings on Tuesday and Wednesday . Usually , I have done that at the end of the year and new year holiday , however my wage has decreased for the past five months . On top of that , my December bonus was really poor due to the hige recession . We decided to share the suffring and regain our profits together . I am a kind , funny girl with a big heart and know 4 languages ; : ) Russian , English , French and japoneese . Hallo world ! Aiso , I wanna know about foreigh countries ' cities . And some of the most presious traditions such as reading together , singing after dinner , walking along the riverside , have become diminished . Probably , becaus of age . I have stayed there aroung 3 months to study English . I was sleepy , so I could n't answer the theacher 's questions . I dreamed for almost fifty munites during the lesson . I 'm starting to write down a dialy from today . I want to communicate with them fluentry , and enjoy conversation . Thay are professional guys . I have to make a twenty - minute presentation tommorrrow in front of about 30 people . Additonal , I would like to receive recommendations about more interesting dramas . After the exhebition I can go home ~ ~ Becouse it is very warm today . But I am very poor with gramma . Today my work was publicated in newspapers under the title , `` Students read and write newspapers . `` Today his essay was publicated on the reader opinion page . As the final examinatine is coming , my domitory matters and I was busy writing a review , so I do n't have enough time to write a diary every day . I am looking forward to attendding the wedding because I 'll be able to see friends after a long time . I think that it depens on each countries , what kind of number does your place dislike and like ? Hi , I 'm Japanase and English biginner . Unfotunatery my English skill is no good . ( what they did was alculating and memorizing rather than studying , though . ) There are many kinds of chilren . My mother is a holdhouse . Recently , there are many proglem in the world . When I went to my office , I was goin to call to my wife , but I did n't know her phone number because it was in my mobile phone . . . I moved to Hong kong recentry . Because I played baskectball after class . Do you get nurves talking with foreingners or feel pressure ? I tought that he was a very kind . It 's too expesive . As a result , the vegitables are too expensive ! I want to speak It very well and make new friends elso . I start wirting my diary on Lang - 8 from now , but my English abilities is n't good , so please teach me correct and better than grammer or words in my diary . She went abrod to many countries when she was young . Because she ikes traveling very much . I think it will be a good influence on us to spend more time in sunlights because it would improve our efficiency . I bought a degital camera and flowers for my mother , because Mother 's Day is coming . I wanna travel to freign countries as soon as possible , but I ca n't do that , because I do n't have the money to travel . But he was happy and laughed a lot while takling with us . All most of them have ( thier ) own jobs and they practic soccer in their off time , nights and holidays . I belive that they will get the gold medal in Olympic game in LondonDo n't need comma next year . My throat is still swallon . I need to learn English becase I live in Boston with my husband . His job is reseacher in university . ( See below . ) I need to compare the test case with mine for checking if ther are discrepancies between both test cases . `` Can we do this ? `` when I heared words , I imagined that If I did something impossible , what would I asked myself first ? The men in this room had begun to make plans , they wrote every problem which they would meet before they landed on the moom . First , my english leavel . Second , My editing leavel and CG leavel . When I putthe popcorn in the microwave I set the timer 5 minitutes . Tomorrow is mother 's day , when we were young our mom took good care of us , as we grow up , our moms become old , some of us do not treat our mother very well , now I just want to say everyone of us should take good care of our mothers , tomorrow we must tell mother `` I love you , mom ! `` I hope every mother in yhe world will be happy everyday ! Maybe tomorrow night he will be very tired because he is a heavy drinker , so I 'll going to there with my friends , who are shielders . ( I 'm sorry to my freinds ) He had a dream of being a computor engineer . Now I 'm a computor engineer . Moreover , I went to shcool to last Monday from last Friday . I have lots of friends here , but they are Singporian or foreign people whose first language is n't English . So I want / to get an oppotunities to talk to caucasians , and I want to improve my pronouciation . Today my business partners invided me to lunch . She previousli lived in the UK to study abroad . But she said that to study abroad a savings is repuired . She has also been to France to snowboad . I will have to study hard , especially bussiness English . My favorite sezsom is summer . Tell me how to ddistinguish Masayoshi Son , presidenr of Softbank Group has sufficient talent and strong leadership , just as as Mr . Eiichi Shibusawa did during the Meiji - preiod . Japanese believe that it is a luckey symbol . Afterwards , my friend said he wanted to see Avater , so we went to a movie theatre and saw Avater . I 'm a little nurvous . Today , I borrowed a book about Robin Hood written in English from the libraly in my univercity . I have graduated from univercity . But I do n't have a job due to the resession in japan . The formr is important to the Japanse . I know that is too taugh My jop ! I work at the Hosan Corperation , a company that deals in industrial tools . I 've been there for a year . It was alright , thogh . I am very weak at gramma and speaking . They tried to exclure me from the group . In Japan , it is vaction from January to March . Since English is spoked all over the world , if I can use English , I can communicate with billions of people and learn about many countries . I felt a great shock and asked him why he never spoked in the language to me before . `` You are too enthusiastic when you are using English , too much gesture and too much face expression , `` he looked at me with his sincere eyes , `` what 's more , you English pronounciation is too much like a chinese . `` Why do many people come to me these days and tell me thier ideas ? The word is that Amercan Blockbusters is on the brink of going belly - up and its 500 to 800 branches will be predestined to close up within 5 months . to see turips at the flower garden . In order to write great compositions , I asked for my English teacher 's advisements this morning . I will patiently follow those advisements and write English compositions diligently . The biscuits do n't contain suger , so I love them . `` How tired I am of this unburiable distance between us . I should go play tennnis . I shoud go to tennis practice . I helped my friend in a diffence position do a job . I heped her cut the peper for a long time , and then we went home She had an umberla , that is good for me as I can walk with her and not get wet . My friend sent a message to me in the afternoon . She said she was excited to meet this weeken . It really helps me to study Enligsh and makes me study harder than before . I made a marrige contract with my girlfriend . That data is not credibirity because it is of low presition . The simple fact is , however , that it is difficult to get accurate imformation , eat enough food and avoid the poor hygiene . And as a matter of fact , confunism belief tells you to respect the elders just because they are older than you . It is true that a young people may be inferior to the elderly persons in terms of knowlsedges , skills and experiences . So my opinion is really nutral . The elderly people are not good at adupting themselves to the new situations with flexibilities , but they can show or share good advices with the young from their knowledge and experiences . And on the other hand , the young people can support the old with flexibilities , aduptabilities , and enough energy . My mother and I will be going there to congraturate him . Hello friends . Today while I was chatting with my frinds , we talked about bungee jumping and I asked them who would dare to jump out of an airplan ? For me that is a silly thing to do becasue I am scared to do it . . But I will never forget this good experient in my life . . Learning while having fun is such a good exprien . Until the quakes calmed down , I coulud n't move anywhere . . . The radio told about TUNAMI , but I could n't believe it . However , my Englishi skill lacks vocabulary . Threfore I feel anxious about the examination XD First , we can know many things because we can read it speedly . Next , we can find it again very quickly because it will be in our house . but English says to me `` Vitaly you are so stupide . `` For example , a bowl of rice topped with many kinds of ingredients such as flavored boiled beaf ( Gyu - don ) , pork cutlet with lightly cooked egg ( Katsu - don ) and slices of row tuna flavored with soy sauce ( Magurozuke - don ) . ( Sounds delicious ! ) They have varyous course menus . What shouldnI I do ? There have been a lot of things I felt there , but I culd n't express to someone what I experienced . It 's my first dialy . Because I 'd like to use English with my buisiness ( job ) . Though I am a master student and major in civil engineering , I have a choise to decide whether I get a job as a banker or an engineer or others if I want to work at an international organization . If climate changes , some probles may happen . But unfortunately , I did n't take the entrance exmination for college . Now I am studying to get a adult college degree . I think this degree is not as good as a4 year degree , but it 's better than nothing . because she is good at cooking , cleaning , and landury and so on . ! ! The Tyhoon still affects the whole of Japan . I went to work the day before yersterday . The Tyhoon was approching my city . During my breaktime , the train which I allways use had already stopped operation . Even although ofiice bosses sent us a messeage , `` If you are worried about returning home , contact us . `` I knew that I could only wait because of train being stopped . I can safely come back my home , albeit it took a longer time to arrive than usuall . Instead , I concentrate on studing . If you were me , which would you choose , having a part - time job or studing ? Yeaterday , I went to Ann Mo Kio Aria , to meet a friend . We are langagge exchenge partnar . I went to the park begind MRT Station and had a nap at the park bench . I do n't like eating breakfast at home because I prefer to eat delicious food such as continental breakfasts rather than tranditonal Chinese food such as congee ( rice soup ) and plain vegetables . I know the tranditonal Chinese food is heathier than greasy food but I want to eat something special occasionally . The man was arriving home with his new second hand television , which he had just got , when he was surprised by the local police and imediately arested . How efficientely the local police are ! I have visited Greece , India , Peru , Jamica , Cambosia , Thailand , Chaina , and Bolivia . One of my New Year 's resolutions is execising every day . I 'm so nervous because I am writing a letter to you for the frist time ! There are so mant people in McDonald 's at dinner time ~ I waited for a few minutes and got a seat ~ Reserch project What dou you think would be an effective way for me to get corrections from English native speakers ? Why do some students study aboroad ? At first , I write a jounal entry in English on lang - 8 , then I write down in my notebook and after that ask someone to correct it . When I told them the price of these at least are more $ 200 as new goods , they were very suprised . I can not explain it exactly only in writting . I had been keeping my hair short since this year started , but I got boared with it , so I did n't get my hair cut very short this time . I heard that Tagalog , indonesia , and Malay are absolutely the same . I knew that indonesia and Malay are absolutely the same . Preparation methods include nurses explaining to children how receiving an injection works , examination and treatment and how to prepation tools such as books , dools , toys , conputers , etc . but I knew it 's in their genialities . So I have n't goen out for several months . But it is ok nowdays . So , I have an importent responsibility to fulfill in Hong Kong , and our nation , China . At this school British English is taught , so sometimes when she is speaking I do n't understan inmediatly . However , I will do my best to try and learn American , British or whatever English accent is required . xD I wish someday I could teach English and travel to Toront or London , maybe Washington . xD l love climbining mountains . I beared the pain as the feeling was good . So they bacame to be together . I respest him . Well , my priority now is English , because next year I 'll take the entrance test at the university , and I chose English as my foreign language , but I 'm falling in love with Japonese ! Natyrally , I will correct your Japanese too . Althouth his name was little bit difficule for me to pronounce , he was nice person . After lunch , I was waiting for the staff member who orgnaized the homestay program for me . Astronaunts brought back a moon stone to Earth for NASA to analse . Lastly , the number of crimes increas when the moon is full . Btw , I have alredy experienced being the only girl in the class , and I changed the class . I hope I can enjoy all my classes during the second semestter . Then I cleaned the kitchen , ewpecially the kitchen range . The more I learn English , the mroe difficult I think it is . I 've just reaized what her friendship means to me . I think at this stage in my life , I shuold not defraud myselv . HOWEVER . . . . what she told me at that time was only a lot of complaints for her husbund . Most of that were caused by a difference of costom and the way of thinking , such as religion , thoughts of how ( a ) husband and ( a ) wife should be , etc . But through the experience with my foreign frinds ( I ` m still a university student ) , I have really started to want a `` natural `` kind of conversation , I mean the kind of conversation even native English speakers think sounds natural and common , not strange . For one thing , I want to study at the same unerversity as my brother does . Although we can now change our appearances with plastic sugery , it is almost impossible to change our voices . Even if I do n't have anything to write , I shoud write something . Almost every mornig he barks at me , but when he is satisfied , he wags his tail . His eys always look sad . In the morning I went tob see a doctor . Finally , I ate out with my speaking class menbers and my speaking teacher , Paul . In the afternoon , I went shoppin with my mom . I 'm from korean . I live In Sapporo city , which is located in Japan 's most northest island called Hokkaido , located and on the 45th parallel . In fact , this year it has hardly snowed untill today , although we usually have quite a few snows around this time of year . And - then - unfortunately - I - forgot - my - commutor - ticket , so - I - had to pay - JPY1200 . Lately my Italian friend and I have been to a few buffe a few times together , none of which were Japanese restaurants actually ! But what I am trying to say is that the places where he took me were 70 % buffee . . . . Though I do n't eat a lot normally , going to a buffe restaurant made me want to eat a lot more foods than I eat usually do ! Haha What I was thinking was to genelate a full payback of the foods which made me such a big eater ! He looked at them just once and then ran out of the base imidiately ! ! ! Topic ; it has recently been anounced that a new restaurant may be built in your naighborhood . I know a sentence `` She is a woman who I think is the most beautifl . `` Is this quote the same kind of sentence gramatically ? I decided to start with Aeschylus , because he is one of the fisrt playwrights . I should go there early because I am affaid there might be a traffic jam . I think she will have a lof of things to tell about her interview . I ` m 19 yaers old . I have not called her recentlly since she got angly . but I dont know the reason why she got angly . By tommorrow , I will be happy thanks to her who helps me relax . Today I sat in the office where I work and chatted with my friedn . Getting over the hardship of your parents contral and your self control tends to stop you from being a good student . But she was very concerned about graduation works and graduation exibits so , I said `` Do n't worry , never mind , you 're getting better and you can do those soon enoughly . `` I chose this name from an Austrailian shor soap opera , But I guess this site is very helpful for me and my Englsh skills . Could you help me with Englsih ? one of the main langauge in the world . I desperatly want a rewarding job with good pay . . . Oneday , I want to find a part - time job ! Beacuse I have so much free time , and having something to do is a good way to spend my free time ! Also , I can leart something in it ! I do n't kown what I should do ! Could a native speaker please read it , and please do n't think it 's strange and ridiculus . But it would be imposibble for me to learn everything in the world . The South korea goverment asked them , My wife is a docter and busy , too . Today I want to write something about travle . On the other hand , if one wishes to travel to a natural landscape , traveling on ones own would be a convenient choise . For instance , last year I taveled to the Yellow Mountains by myself . I am not sure if this kind of operaion is known all over the world , but it is relatively common in Japan , at least by name . The advertisements of LASIK say that we can regain our vision drastically on the same day of the operaion and that it is not necessary to be hospitalized . easy for an operaion to regain one 's vison . operaion should be much more difficult and complicated , and to tell you the However , after the operaion , I have more than 1 . 5 vision in both eyes and I can see anything without contacs So I determined that in this newn year I will start to study English all over again ( abreast with Polish in earnest ) ? ? . When I went to a restaurant for drinner with my wife , I felt tired because the streets were crowded , maybe everyone was buysy . On Valentimes 's day , I was verry happy because I ha a sweet time with my wife , but I was verry frustrated when we went out . After breakfirst I went to the library and did some studying there . However , I am really worried about the people who lives in the severery damaged area . It is very sad for me that the university entrance ceremoney was canceled . I have many frieds who are going to the same university , and we all felt disappointment that we could n't have the ceremoney . I want to teach sciense . So , after I graduate from college , I 'll earn monney to go abroad . However , I often choose the opposit of the function I want . Fortunatly , my teacher gave us a 2800m run , but that was n't easy . I saw many donation boxies everywhere in New York . Actually , I like the charactarisity of this man so much , I have been watching his program since I was fifteen years old . But I went out to a parent 's association meeting at elementaly school that my son Because I pushed some children away who were playing whith snow in front of it . So , I study and traning in my imagination now . I drank tea a lot , because in every house you were offered tea and if you refuced they could be offended : ) ) A herd of hourses walked through the village , how there told ( ? ) , because many mosquitoes and flies were in the forest in this year . Oneday day , I had a sore throat . Now , I ca n't breath by my nouse . By the way , I watched the TVdorama `` soredemo bokuwa ikiteyuku `` . But , the raiting is low . In Japan , there is always bothe iced and hot coffee . The secend day in the new semester . Today is my secend day of the semester . I am taking Business English , Finacial Management , Statistics and Intermediate Accounting . What a crul teacher . `` If you pay attention what I am teaching , you will not fail this course , and you should practice it after class , `` said the terrble teacher . All over the world , porple other than English speakers used to learn English in school . so what langugage does English study in school ? I 'm trying a new product from Suntry , ALL - FREE . This is beer without archol . belive how stupid I was , I hate myself . How could I fall for such a It is heatered by electricity . He said `` an allergic reaction to metal is almost always caused by cobalt and nichel . She should avoid contact with accessories that are plated with cobalt or nickel . `` Becasue I would like to go to the USA to study in the future . I want to go in 3 to 5 years so I am starting to prepare now . I plaied tennis with my friends . We plaied tennis together . In the afternoon , we 're going to Night safari park by taking a bus untill 10 : 30PM So I can gain weight easly . it nead a recket and a ball , as well as the instructer too . I could swim farster than last month . I like here very much because I can make so many foreign friends that I dreamed for a long time . And the most importent is that I can improve my English . They want to make student have more intrested and abilities in other areas . As for me , I chose Film Appreciation . The most important reason for this was I find it intresting , I like watching movies , and I 'm a couch - potato . Leonard and Sheldon have two close freinds , Raj and Howard . I do n't know if my recording souds strange because of it or because of my pronunciation . Some residents could n't understand how important we separate garbege and recyclable wastes . The garbege in the recyclable waste container had rotten and attracted flies . An apertment 's mentenace personnel came to fix the problem promptly . The second , women workers likely to quit their job because of child care or the transfar of ther husbands . Though there are many women workers who have excellent potentil , employers often hesitate to hire them . My hobbies is playing teniss , listening music and spekaing english in a compettition debate . In a word , I love my hometown no matter if it has develp fully yet or not . Lanch break Every Wednsday , my friend and I practice soccer for about 2 hours after work . I 'm not happy right now , I do n't know why , and I do n't want to cry , but it 's difficult to stop my tears . This is really embarrasing , but if you have a girl that you love , you should n't say this to her . I 'm sorry , I know we are just friends , so I 'll never say that agian . One of my cowoker treated me to it ! Randum topics If I had many money I would treavel to the summer country ^ ^ I rememer that . . Polamalu was tackled by his hai . `` Thank you for your time yeaterday ! And I didi n't know that they would be such good guys . Because I shifted to a big bag for carring my laptop and forgot to take my wallet . Taiyaki is very famouse in Japan , so we never think about people who do n't know of / about Taiyaki . I went to the funeral and my classmate came to me and expressd her thanks . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe chinese food , maybe japanese food or maybe other ajian food ! ! because ( beacause ) the test season ( is ) over . It was held in Jingu Stadium where professinal baseball games are usually played . Roppongi 's `` Keyakizaka Ilumination `` This photo is Roppongi 's `` Keyakizaka llumination `` . I read your correcttions two hours ago during my English class . and then he went to watch a professional succer game in the evening . on the shelf 's in the afternoon on Tusedays . I do this for two hours . I plan to take part in three full marathon races ( the first race will be held Novenber 8th `` Shonan Internatioal Marathon `` ) . There were 3 Japanese , 1 Thainese . Since they knew I love raggae music , they took me to a raggae bar . Strang to say . Maybe if you are fighting with your girl / boy firend , you turn it off . selt - introduction My favorite activity is playing the piano , though I do n't publicly perform . It 's my bad Unluck : I had just bought it a week ago . . . He also said that nobady cares if I leave food on a plate . It is a normal thing , but today we sold dishes at cheaper prices than usualy . Anyway , I just hope the victims can pull themsleves together and let the people who care about them help them throught this difficulty . You just had 3 or 4 minites to prepare for it . But the main idea was I would be in charge of the familiy 's finance if I got married . ( what I ordered was simillar to bread , I do n't remember the name of it now . ) It is the title of the jazz album which now I am lisening to . My fovorite Japanese jazz musician , ' Issei Igarashi ' plays the trumpet . I was suprised how tollerent my class and school is . Actually , it happed to me once . I came here to watch a presentation about doing a graduation thesis , to ask the clerks a few questionsabout scholorship and about returning to school because now I 'm not attending school . A : I met my custoemr at Tamachi . I have gone into 9th year and I must pass four exams at the end of this shcool year ( these will be in June ) . japanes traditional cake Now , railroad stations have Automatic ticket getes . If there is no proble with the ticket , the passenger can go throuth . My friend often suffered from heavy coughts . He told me how he was surprised at his docto 's comment . because he did n't tell his doctor that he had a hamuster in his room . A humster came to my house in a deriveriy box with a seal . `` This pacage is very fragial and do n't throw it . `` It was called `` chew - chan `` from my freind . I thought chewchan was male . ( My freind did n't tell me that . ) He said `` Humusters like being alone . They need their own teritory . She lives a nice mantion and has another house and eats nice food . He got some popularity for his talent to learn foriegn languages . Even if some visitors drink some purification water despite the warnings not to drink or gurgle it at the waterbasin basin which is for washing their hands and rinsing their mouths for purification . I recomend the `` hureai no hiroba `` . It 's not exactly freedom because I 've already enrolled in some courses and compititions , so I 'll be busy . But at least I 'll be doing something onmy own will . I have carried on / lived a peaceful life as a family man so far but there is one big problem here ; what will happen when I find sophisticated ladies in my work enviromment ? His one of my best firends . Here 's the kind of radito program that he made . We recorded it in Japanese , It ' svery natural , high speed and storng accent from the western area of Japan . I ate tofu and scalop at lunch . I usually buy an Engilish newspaper once or twice a week . Actually , marathon events bring back my bad memories from when I was a junio high school student . There must be southans of reasons why you want to learn Japanese , and it seems not only a few people were led by Anime or Manga to start learning Japanese . Here , I introduce a website called `` Japanese in Anmime & Manga `` This wiebsie , pronunciation of lines are very good . and I prefer to see a varioty of clouds on the blue sky . after that I can not imagine how good the food wil taste at the barbeque compared to having dinner at home . That 's why some parts are sharp , inclined and zigzagged , amd it seems curious . This morning I had two spoons of honey like Pooth bear . They were very delisious . I was so sleey . I think meeting my frind is a good opportuniy . I wolud like to master English , and my dream is watch movies in English without subtitles and make many foreign friends . They saved my life during a period of great frustration in my teens . A huge crowd of ppl got extremely excited cause the dream finally turned into reality after many years of yearning and longing . But I want to ask them ; why do n't you pay more attention to their songs which have given strengh and hope to our people ? All I know is to let the politiks roll . We still do n't want to leave the colloge yet . I went the library with him , but I forgot the librarhy card . He said to me , ' I reallhy want to borrow the books , let 's return home and get the card . ' We retened home and went back to the library again . Thus , I 've joined this community at Lang - 8 to output things to improve my English and communication skil . Nobady can infridge on their rights . My parents never force me to do anything , they even negociate with medecine haha so I know that the decision is mine . I like deodrizer I went to look for a deodrizer at the drugstore . There are many deodrizer there so I could n't find what I wanted to get it . I wanted to get made in Amerca but they did n't have it . I had n't used Dreamweaver for half a year , it was hard to remenber how to use it . However I ca n't talk to anyone in English on Skpe at the office . Besideds when I get home from work , it 's midnight in the United States . I think I can get over the diffculty . This is my first day at Lang - 8 , I found Lang - 8 in a forum , ppl suggested joining Lang - 8 if we wanted to improve our English . We can post a diary here , if our gramma / words are used incorrectly , someone can point out our mistake and give us some advice . I was buffled and said `` No , no I 'm not . . . `` Even though I know I paid much money to take a class , after I lost interest to study in school , I do n't feel like going to scholl at all . 3 months already passed , and I 'm still having a hard time understanding what my hoouse family says to me . Although it seems a kind of poison , it must be a midicine ; it is alcohol . Some people belive drinking alcohol is not good for their health . According to a health resarch istitute , drinking has a positive effect on health . While one drinks alcohol , they should be able to express inner thoughts that are usually not exprss . However , people can get these kind of negative effects only when they exceed a moderate amout of alcohol . When focusing only on the health effects of alcohol , there are no bad effects if one does not esceed their limit to accept alcohol Consequently , expanding boold vessle and eliminating depression , which are healthy effects , can be brought about by dirinking alcohol . `` Nadeshiko `` Japan , the Japanease women 's saoccer team , won the World Cup championship . . I was so excited and proud of the Japanease spirit that did n't give up in the disadvantageous situation . I expect the Japanease men 's soccer team to win the World Cup championship next . Good night , everybodies ! ! A few seconds later , I underwstood what they meant , they were asking for a handkerchief . After all , Kikuchi could n't shout at the oppising team . I was even at the railway station in order to go to the university ( or : school ) libarary . My parents and my granma were disapointed in my failure . My granma cried . I am worrid about it . He just said `` If you are interested in this story , please search Wikipidia or something . . . `` . And I really like the hansome middle aged Chinese teacher : ) Chinese has nearly no honorific expressions and the grammer is actually very simple . I want to learn about the English langauge . ( Actually they are about vegeterian diet and environment . There 's a lot a lot a lot a lot of reasons why vegeterian diets can help Earth , I hope tommorrow will be warm . . . so the only way is . to continus working . I have not studied English latery . I do n't want to be in this rut because I do n't want to forget the English I have learnt up untill now . Yesterday , I had to go to some buliding to take part in a briefing session . There will be less of my friends in the univeristy , because some of them have alreay grauated . Akiwabara is full of computer professionals . Most men judge a book by its appereance , however ; most women normally follow their feelings . Actually , I do n't like doing sth , but I have to do it . Sometimes Ido n't have an explicit way of doing sth . I would appreciate if someone corrects my English or gives some adveces . This movie is very interedting . Thank you reading my journer . I travled to the western part of Korea , Kanghwa Island last weekend . I watched TV anime wiht a friend . I have to get accustomed to my new life without the habbits formed before . I 've aleady preceived that I must get rid of this condition as soon as possible . Yet , earsier said than done . I 'm just a little nervors . Is English the language that will chanege my attitude , my personality , and my life ? at almost 5 a . m . young men do n't get up that earlly though . I 'm helpless from secon smoking . It was difficult to understand what they were saying , because they were speking Blitish English . ( I feel like it has been longer than it actually has . ) I have gradually come to understand that it is not a complecated movie , from what my host family was saying . I was really shocked that he killed a yuong woman in my town . Today I 'm talking about an Itarian restaurant . . . . . . . I went to Saizeriya , an Itarian restaurant with my friends , do you know it ? It 's very cheap and dericious , for example milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , a president of Saizeriya , is very clever becouse he always tries to put the price down and make it more dericious . He has his own farms and grows vegitables there and uses them in his dishes . Besides , from the farm to each restaurants , the vegitables are kept 4 degrees becouse the vegitables can keep freshness in 4 degrees . He try so many different things to serve cheap dishes and make them more dericious ! But the problem is when I cameback back home . And , as with most tours , this tour included a visit to a survenior shop . The shop clark 's sales talk was interesting . I searhed on an online auction in Japan , and today I bought a good one ! It 's lovely ! Oh , really I have to learn English and look for a scool , but there are It 's the same every time , to choose somethig in life is hard every time for me . Yeah wrtiting is my weak point , even when I write in Japanese ! At first , three monkeys and a eagle conspired togather to oust the dust from Horton , and throw it away in the fierd of clover . When a shriker made a sound togather with the rest , though , they succeeded . I should have stuied more . peppers ( very important ! ) , an agg , minced garlic ( 1 / 3 of tablespoon ) I just took my daughter to the kindergarten and now I am in my car , waiting to go to one of my clients in 15 menutes , which means I 've got ten minutes to write something here . Seven Eieven 's Oden S / E 's Oden is very dericious . You shoud eat Oden with masterd and miso sauce . It 's very dericious . Moisty summer finally , the moisty summer comes to japan . Japan 's summer is more moisty than other countries . So , I think I do n't hate moisty summers . 9 : 00 - worte a weekly report for my customer . I am thinkng about a hand blender as present . I 'll have to do my dest . I want to learn English because I like talking with forigner . My cold is dissapearing quickly . We played at the park by our cond and she seemed to have fun . Tanke you for everyone . In the evening , I watched TV again and ate `` soumenn `` ( this is a type of japanese noodle , we often eat it in summer . ) But it was out of date by more than one year , so it was n't tasty . I want to eat delicious `` soumenn `` ! I feel pround of my country because the popularity of Chinese means that my country is more popular and stranger . I hope the learning of Chinese can contuine . I rewrite the medical infomations in Japanese . I listend to his newest album ' the pursuit ' many times . We were not aware of the fact that this day has such a remark untile it was over . I cleand up my room this morning because I 'll be away for 3days . I feel that summer is comming soon . So far , there has been no contact with one of my friends since the eathquake . Oh my god , I hesrd that this test will be very difficult . What should I do ? How can I improve my English ? My glumbbling . The result is slightly suprising and bothers me , but I have an idea to solve the problem . Therefore , today 's dialy is over . Everytime time I cook it at home , I can see the sparking lights in my roommate 's eyes . What shold I do ? In London I felt like a morron ! Trabajo en Tokyo ? Trabajo en un escuela de Ingles . But my teacher said thathis house was very safe because there are a lot of guards and if prisner escaped from the prison , they would n't come near his house . We drank a lot of alcohole , talked and danced ! ! ! I 'll visit Wasington , New York , and California all within one week . There 's just one thing I 'm worried aboout . The next day , he enterd another smaller hospital . Is it a common thing in foeighn companies ? How to write a good essay in intergrated writing for TOEFL ? There are two types of writing , and one of them is intergrated writing . How do you write a good essay for the intergrated writing section ? I always do n't write enough words for it . ( In ibt , the intergrated writing requires at least 150 words . ) Or , do I not need to seperate my paragraph ? Nagoya 's subways are so complexed . I was moved by her heartful visit . When we arraived , on parking lot which was near start line , there were no cars ! I want to meke a lot of friends ! Desingers who can draw beautiful pictures on computers stronglytend to have such a personality . I live in Fukuoa , south of Japan . You might be wondering why we eat shurimp to live longer . The back of boiled shurimp is similar to one of an elderly person . Is that man lonly ? We have our own aerodrom and planes for practice by pilots , controllers and ANIS . It will be a naice time . I study phychology . And one more thing that I wonder is whre Japan 's cold climate ranks in the world . How about the climate whre you live ? Also I want to increase my English vocablary . While I was riding a bicycle , I slipt and fell on the ground in the morning two days ago . After he became professor , he has been strugling to change his department , and he is succeeded in many aspects . After that , I went to a driving school so that I get a car lisence . I beleive Japan will never give up and always rise again . There were so many competetors prepared to study Psychology . And even I do n't know which way I shoud go . Recentry , I found a new singer . English makes me carzy ; ; so I decided to go to an English acdemy . It 's not neceessary to tell everyone that I was born today . However , Thx Sun - zi for your birthday wishes . Sun - zi is a Korean lang - 8 user I made aquaintance with here . adovocate > > But I had the job today and of ofcourse tomorrow . For the moment , I 'm not sure if I will become a teacher , but I 'm going to take this teaching course because I can gain expeience from it ^ ^ I usually atend my English class once a week . I wonder if writing jounals will help me improve a little . When I eat onigiri ( a rice ball ) which is purchesed at convenience stores , However , I want to at least greet my Chiense here in Chiense . Now I practice Chinese pronunciation , but it 's not very anunderstandable because there are a lot of pronunce rules like pin ying . We Japanese use Kanji , so I sometimes undestand the words ' meaning , but I ca n't prounce them at all . So he need a translater . But I 'm not a good translater . My high school libraly has some MANGA books . `` 20 Centuly Boy `` , `` SLAMDANK `` , `` The other story of Kamui `` and so on . I like MANGA just as much as novels or essey . Yaki - onigiri is broild ( ? ) rice ball . We can get them anyware in Japan . After the big quake in Japan , we have experienced a number of aftershoke . My doughyer 's university graduation ceremony was suspended . I am going to do a presentation in my english classe next week . Lsughter is the best medicine We enjoyed talking , having some snacks and drinks and lauthing out a lot . There were the words in today 's Englih learning video ' Laughter is the best medicine . ' That is to say , we all have the best medecine in us . As for the site `` Lang 8 `` , to me it seems to be not only a good educational resource , but also a place where we can see other people 's chane . While thinking that nobody here knows them , people write about the smallest & most hidden perts of their daily rouine , and while taking the first steps , they feel extreme & pure happiness even after the smallest victory . . . I think Chinse can learn English better than Korean . In this class I saw a very beatiful Chinese women . I could tell my teacher what to say but I coud n't use perfect English . It was really good oppotunity to have a conversation with foreigners . And I realized how convienient being able to speak English is ! At some point I want to think about it seriousely . It shoud be and also must be serious . It 's a story of two boys who adapt to the cryel world . Even though I ca n't stadn such things , this book is the best book I 've ever read . I learnd that I ca n't do anything in a poor fisical condition . Yestreday I joined this Lang - 8 website So I created 3 ( brand ) new communities : Playstation3 , Japanese sports cars , and Plastic kit modeler . It 's lunch time : ) My mother made me a luncn and it included a deep - fried pork cutlet but I think she forgot to put sauce on it : ' ( Haha ! I just finished the other of my assighment . It always takes an incredible lot of time for me to get my assighmets done . I will go shopping at a mall , because it is coller there than it is in my room . So I can say it that it 's a totally rediculous habit . I think particulaly it works well to make it easy to bring up phlegm . So this is a rediculous superstition in Japan , I can say . I just registered here , tonight , but I have already found out / discovered that this is really an awesome place . I used to find it so difficult to practice my bad Japanese , but on here , just 5 minutes after putting up / publishing my firt Japanese entry , runtyan has revised my articale in detail . I 'll come tomorrow earier ! I do not have enough cofident to accomplish it well , but I want to do my best . study with her so I tried to go but I did not reach there im just half of the way I am lost and then I desite to take the sky train to go there then I just realize that my motorcye do not has any lock so I can not leave it anywhere around . Umm , I have a question . After work yesterday I went to a nearby movie theater . The theater was crowded with a lot of movie lovers , as it was just after the announcement of the Award . The Cinese hospitality My body clock seemed to be malfunctional . By the way , I 'd like to write about an elementary school loccates in Toyosato city . They came to a win - win situatio by deciding to buildind a new school in front of the old one . The school parking lot is filled with a car decolated with a Kei - on character . Why do the Otaku who like Kei - on go to this school ? Because the old school in Toyosato city resemles the school in Kei - on . An expert in Japan who specialaizes in Japanese subculture said ' cities will thrive by using animation character should become commonplace ' . Because in the neighboring lane someone was learning to swimm from a trainer , so the trainer saw me trying to learn the hips motion . And then we went to the street stalls and got some festiv food like Takoyaki and Ikayaki : ) Actually I faded a little cuz now I 'm dorinking a tequila . I 'm not sure whether I heard it correcly or not . Please check the following setence to see whether it 's right or not . I went to an English Cafe yaesterday = D Befire I sent a e - mail I have to show my e - mail draft to our boss to check it . Then I went to a beatiful bakery . I bougut some bread . Er trinke gern Bier . Er hat kurze schwaze Haare und schwaze Augen . Meine Mutter ist Housefrau . Sie hat lange braude Harre und schwaze Augen . Er ist ahatzeen Jahre alt . Er supielt gern Videospiele . Er hat kurze schwade Harre und schwaze Augen . Meine Familie whont in Hyougo , aber ich whonen in Shimane . Meine Familie whont in einem Haus , aber ich whonen in einem Apartment / in einer Wohnung . He is fourty - nine years old . She is fourty - four years old . My youger brother is a high school student . Anyway I still want to make full use of this website and keep practising wirting here . So I decided to use Einglish at this page . I follow power bloger , so I got some nice information from the blog . Do you understand what this stupid scentence means ? wih my Boss Last time , I wrote about my first chice of a future job , in the movie industry , especially in advertising . It is so complicated to remember ecverything ! ! I had been kind of lazy in Feburary becasue I chilled with my friends , drinking , and singing karaoke . A new twitter acccount Thank you very mich : ) Certainly , nuclear energy is very dengerous , since Japan relies on nuclear power for much of its electric suply . So younger peopole in Japan should have more interest in these problems or What do you think about nucler poower plants ? I must sutudy English harder ! ! I deside to study a little more . NO wonder there may be other solar systme like ours somewhere in space . . . anyway this movie gets me to think about a very romantic story about the universe . It 's worth seein . ; ) So , I took a walk for 30 minutes almost every day for 3 manth . I am so happy to join here . I whant to practic my If I were a player on his theam with him , I would assist him . Since my school parking is really bad and in the mornining it is so hard to find parking space , people always ask you if you are about to leave when you walk inside . I do n't mind anwering their questions , but I was bothered by their reaction when they heard me say I was not leaving . Now I 'm drinking a can of beer at home , because the presentaion was finished finally ! ! ! The tempura today was prawn and mashroom . This mashroom is called `` Maitake `` in Japan . I happend to read a megazine I found in my club room . I recived the glasses there . We used to studay at the same school for a long time . She is older than me by 2 years . We lovers of martiail arts can not , in today 's democratic world , use our technique in our daily lives . Tomorow my nephew should go to school to register to study for another gade becasue he finished the patum < - - ? 5 and is going to patum 6 . Anyway he was still not calm , he truned and watched me moive frequently . After I had finised cutting his hair . He really became shy and came to ask me to do it agian . . And I 'm interested in dance ( a little ) and bloging . ~ ~ lol . . Watashino Hashi desu Kore ha watashino hashi desu : ) Ohashi wo tukau noga suki desu . Today I revieved my first correction in Lang - 8 . Our class is making a presentation of ocarina performance next Saterday . She gave me many souveniors ! ! Because I think she misses Japanesefoods food . I usually wtite in a diary in Japanese , but it 's the first time for me to wtrite it in English . I totaly agree woth the auther of that article but most koean can not speak English fluently , , but , , when we face with foreiners . . they were fluent speakers . . and they were also enthsiastic about English . . . Heppy New Year ! listenning test Today I want to try a listennig test with `` Man in the box `` From youtube . I 'm not sure how many of you gusy know this short video . Greg : the Japanes number puzzle game Jim : No I mean , about me whinying to you - - - - - - - - - - - - - - - - - - - change sceen - - - - - Jim1 : I just I miss her you know , like yesterday would 've been our seven and a half monday anniversary . The ShangHai Kights came on TV . - - - - - - - - - - - - - - - - - - return to the original sceen - - - - - - - - - - Jim : Ok , I guess I 've been a little preaccupaie with her . so waht is it today Jim ? What sad little pices of information do you want to share with me about your ex - girlfriend that I dont give a shix about it becouse you 're a pathetic losser that ca n't let go you towat . Jim : Call you twevle times a day ~ ~ I think that 's perfectly ok ~ ~ you dont answer anymore ~ did you change number you chitting whore ~ thanks in advence for your guys ' corrections . Thanks for the coments on my previous diary . I discoverd the name of my illness . We have regional map , but not a grobal map , even if we did n't count the number . I am going to write my dialy in English . The title was `` CASE CLOSED `` , which is a japanease story . The true love between vampire and human beings moves me and I always look forward to watching `` New monn `` . I 'm wriing this entry for you . News about the earthquake is reported from mornig to night everyday . Fortunely , I live in an area where there is no damage . But I think my English skills will improve by studyng abroad . Yesterday , after a riduculous class in which we talked about what a second grade student can teach ( us ) about leadership , I tried to go home . Then a girl spoke to me and asked what the Korean homework was , because she was absentt . Free time & Favarite movie I ofen go shopping in my free time because I live by myself . In addition , I ofen read books . My favarite movie However , they become gradually fuscineted by jazz . Then if you become unrooted , you feel unsettled . `` Today , staff members were told by the personnel departmemnt that if we ever had a problem , we should take it up with our supervisors . in the forein country , what u gave to a girl or a boy ? There are two professors in my laboratoly Today , one of my lab members gave a presentation at his difense ( ? ) . Who is the most populer pop star in the US ? Recommand me someone ! Whenever I try to record something , something has to interrupt me : the phone rings , the door bell rings or the cat meaw . Each time I start recording the cat is stuck with me in the room and wants to get out and when I get her out of the room she meaws because she wants to get in . Duaring the holiday , I tried to return to Japan . But company denied my request as I am now working in Beijing as a trainee . As I have no freind in Beijing and came here by myself , I wonder how I will spend one week ! But , today , I enjyed the beautiful eary fall . On the 4th floor , we will wehave a cinema room and a karaoke room . Perhaps , some people would like to vote for building a factory simply on ecnomical grounds that a large factory will probably bring about a prosperous future to the area around . She chose a grey one at first , but I adviced her to choose the red one . But recently I change the / / my / / opinon . This week the Japanese telecom company `` au `` announced the release of a new series of cell phones . Both of them are very talkactive so we talked all the time . I wonder whether I should write about it , but I decied to because I just want someone to listen to it . I coud n't catch his saying completely , but he told another person and laughed , `` Wow , someone is talking Japanese ! `` After several hours of reclection though , I kind of reached a conclusion that I should never try to be hostile to him and I would keep my doors open for him , for him to come back to me as someone I felt the best spending time with . The weather is changable and the sun goes away sometimes . Yesterday I was supposed to join the Job Fair in Zhong guan cun , but unfortunaly I felt lightheaded , drowsy , dizzy , nauseated , unusually tired , and I began to think I 'd been infected with H1N1 . After supper I hurried up go to the drugstore and buy a themoeter . Thank goodness my temperature was within normal range . He went out with 23 women , so he has a lot of knowledge and experence . If I kept a kiddy cat , I wish her to lay on my PC like the following picture . Very strong men atacked bad men . He likes to watch K1 and boxcing . To begin with , in my reading , a successsful career is assosiated with how well - off people are . Whereas , the professer states that students should decide their major before taking a wide variety of general education courses . Consequently , the proffeser maintains that when you find employment , you should be careful of how the vocation fits your interest . My Labo work If someone can explain the meaning of these sentenses , I 'd really appreciate it . It is light , it has big blinds / curtains , it is reverseble , and Two Australian men opend the bar , so most of clients are foreigners . I think that maybe it is not only about differnet , it is a complicated issue . Ok , I think this method is good for beginners , you can get an understandable pronunciation , and some basic knowlegde if you want to travel to the country soon . Please feel free to add me to your friend list in Lang 8 ^ ^ I welcome everbody . The raeson I am busy is that I am learning sign language . However I ca n't communicate with deaf peaple . Why do you think that we ca n't communicate with such peaple ? I want to try to talk with such peaple . When I was a student in France , I was suprised that a lot of people there came from several foreign contries . In Japan it is not like that but there are more and more foreigns here . It is one of my reson for studying English . Representative high school teams from each of Japan 's 47 prefectures copete at Koshien Stadium in Kansai area . Althoug I tried to not eat sweets everyday , my homestay family eats dessart after every supper > < When I watch comedy shows I 'm not really able to understand what they say because there are no subtiles so I ca n't understand the English without subtiles well . Are there often celeblities who have funny voice or do they change their voice on purpose a little ? Though when necessary ( under pressing circumstances ) , they never fail to be short of money for basic necessities , rather than letting the expese bocome an obstacle for me . I earn pockt money by doing part - time jobs . What do people usualy talk about when they have no topics for a chat or when they need to keep up the conversation ? Unfortunatelly , in my country it is , in contrast , very hot and dry in sommer and very cold and frosty in wintr . The weather forecast promiced it would be much cooler tomorrow It 's gon to start in 30 minutes . I hope all my friends onLang - 8 who live in japan are all safetly . I hope all Japaness are safe and sound . I was there for a week for a business meetiong . I am comming back home from Narita airport by bus now . Yesterday I took part in this Lang - 8 and wrote the first jounal . And I thought , `` There are so many jounals here , it must be impposible to get someone who can help me . Evencally the winter is coming today . I answered `` I 'm thinking of enroll in this school . Could I have a trial lesson to help me to decide ? `` Actualy it 's not always raining , but the air has the sense of rain . Why , why on earth have you made me so incapable of consentrating ? I had acctually contacted him many times , so I may have got him down . But from today forward , I will try to write a journal every day in lang - 8 becase I will start a job next spring , April 1st . On the other hand , I can understand recorded English dialogs & nbsp ; when I listen to it . So I will write my diary with the `` Look `` or `` Look like `` I leared . Depending on the outside ingridients and the shapes of them , the name changes to things like ' Daifuku ' , ' Monaka ' , ' Taiyaki ' , ' Taiko - yaki ' , and so on . They arent not at home now I am staying at home with my uncle , even thougn I wanted to stay alone . He is the husband of my second anut . He asked me `` Would you like to eat ckicken for lunch ? `` In korea , ckicken stores sell chicken with cola . Hello my friends , this is my frist time here . You are welcome to make frinds with me . Recently , I started skeatboard . I want to improve my skeatboard more . I want more time to practice skeatboard . Hellow . My name is Kim Dong Hyuk But I do n't like Harry Poter . I think that Harry Poter is childlish . ( I meant the Harry Poter translated into Korean sound very childlish ) se you soon Since I could not get the pronanciation of Kanji instantly , it meant I took a lot of time for reading and understanding the meaning of a sentence . I have got a very interesting book from my brother , sweetnesses from my parents and friend , a pineapple from my class tutor and a lot of wishes from colleagues . Altough I 'm happy , I 'm also very worried because the school districts around here are not hiring at all . Reports and presentations are wating for me . intruduce myself I tweet only in English , so I can stady . So I spend 10 minits doing one tweet . I have to repare it , so I need more than 20 thousand yen , probubly . Next exm is July . I am writting now by cellphone though it is difficult to write . . . If it 's sunny out today , I will go to the park to go running / tunning and stretch . It 's way too short but that 's all for this mornig . Some of the victims ca n't get enough food because rodes were broken by the earthquake and tunami and the amount of food is too low for all of the victims . Of course , the Japanese government and other organizations are tring to help with the food supply , but it is difficult because of these reasons : This problem 's news is bigger than the earthquake 's dameges . Nuclear power plants were damaged by the earthquake and tunami . The Japanese government and Japan Self - Defense Forces are tring to reduce damage of the radioactivity . Remember , the nuclear power plant is a power plant for Fukushima , that is the place that was given the biggest damage by the earthquake and tunami . ORION brewer had manufactured their products only in Okinawa prefecture before , but now they made a business tie with ASAHI , so we can ORION beer at supermarkets and alcohol shops . Today , there is a very interesting shogi game between shogi softs and Ms . Ichiyo Shimizu , who is the best woman player of shogi . He is a studednt who has participated in our Dojo . Furthermore , we need your coorperations please . It was 40 degrees Celcius and meteorilogists have n't stopped to announce fall of temperature every week . By the time we talk about food we were hungery so we went to Korean resturant near my work . Third , well cooked barly with soy paste soup . Fourth he bought out rice , Q . groud beef steak , fried fish , eag soup . Five more side dishes came with it . We had a great time , and we left our stress at the Resturant . I was moved when I listened to his profermence . Yesterday , when I had to go to school by bike , the thermometer registered - 15 Celcius ! And just like every mum does , she pointed out my stubborness . Although it 's cold , I really enjoy watching the white landscape just like I 'm doing now with a cup of hot chocolade , yummy yummy ! ^ _ _ _ _ ^ Screw you summer , hot chocolade rules ! I am a beginer . Could these advances in techmology also cause some problems ? Devember 30 , 2010 Korea , depending on the contens of the diplomatic negotiations . After that , I rented a DVD and wnet home . I said `` Of cource `` There were no LAN conection in the room , so I had no choises to use internet I went to the langage school . There were many Japanese student there , they will graduate with a strong achademic background . I was ready to stady painting with kids in the 1st grade . There are many cultural facilities , like a concert hall , movie teathers , department stores , an ice rink , football stadium , shopping mall and two parks . I talked with a friend in Texas with Skaype this morning . They try to get a summary of the cadidate . The candidatie , is usually asked to speak English by the foreign - invested companies . I will separate between what I need and wht I do n't need . Help with my house 's agriculuture , rice planting and harvesting cherries . He stood there for 10 mins and he held the piss in . Today , I went to a concert in which my preveous English teacher played . Firstly , The Beatles has `` opened `` up for me the majic world of the rock - n - roll . I think that it 's possible , and as Jonh Lennon said : `` You may say that I 'm a dreamer , But I 'm not the only one . Even when I 'm in an awful mood , their music makes me smile , and I 'm very happy that they have suche an influence on me ! When I saw the terrifying tsunami that destroied houses , bridges and roads , I was shocked . : ( Anyway , I have to concentrate on his class and writting down what he says in the next class . I was curious to know why they made it like look like a fallen leaf from the beggining . When time passes , from spring to auturmn , the wakaba becomes momiji which means red or yellow leaf in Japanese . I was going to write in my dialy about my cute female friend but I changed my mind , because I had heard a rumor about her and it was a terrible shock to me , so I could n't write anything . It 's a little roundabout out of the way but really nice , I can choose from 3 supermarkets to buy something and there are 2 movie theaer . I thougt it was a little expensive in the auction for me ( but it was too very inexpensive compared to the real price ) . We would say `` I go to scool `` if we were outside of scool . If they were with you , you would say `` go to scool `` . ( In English ? ) I clip my nales regularly so I do n't know the reason of holes . I felt a seriouse ideal and belief from his speech . The following sentece is in the presente passive voice : The company promised to give 40 yun for each day . Half a year has past , the money has not been given , so I am disappointed with the comany . Almost all week , I thought of preparing spicy chiken wings on the weekend . We read on the Internet a lot of different recipies for chiken wings , and went to the store to buy food . We made a honey mustard marinade from honey , common mustard , french mustard , spysies , soy sause , salt , and garlic . We put the wings in tis marinade for 2 hours . We are eating the delicious chiken wings right now , drinking light beer and tomato juice , and watching the movie `` Uoll - street `` with Shia LaBeouf , Michael Douglas and Carey Mulligan . This paragraph is my model anwer for my OPI test . The exhibition of Fernando Botero has been there since Julyl . The first exhibition I volunteerly attended to appreciate art works , not for a mandatory school field trip , was in 1999 . Twe girls and one boy . Why do n't you tell me wht you want me to do ? `` Well , obviouslly there is no stand - by drink for tomorrow , ca n't you see that ? ? `` I should go there becouse I want to graduate without hindrance . Everybady likes her ! ! I hope she has a fatastic day ! ! ! ! ! ! ! ! he has two personalities OR double persnalities . he always gives me helpul advice . and I assist my proffesor with performing an ultrasound during an operation . I 'm looking forward to knowing my secound impression of this book . So I 've decided to make a list of questions that could be helpful for both teahcers and stuents . Actually I always preferd Damon to Stefan . I 'm so gla that I know more than I knew then ! It is sunny today , so we are warking in the park this afternoon . This year the topic was `` Should the Japanese goverment authorize the system of casino gambling ? `` Each team had two battles , and the rankings were determined by the scores the judges gave . In addition , there was , for example , the argument `` after the plan Korean casinos wouldgo bankrapt and many Koreans would lose their jobs because 70 % of such casino 's customers are Japanese . `` Debating is too difficult for a freashman to do alone . ) The first book begins with a guy called Arthur Dent , who wakes up and sees lots of buldozers in front of his house . I do n't how it wroks but I am writing my first diary . I ate more than 15 dishes , so I bacame full . He told about his homeland 's histry and answered people 's questions . I am going to Jermany to study Electrical Engineering from October to Janua . And in the town , I have to speak Jerman . I love Jermany and English so much . I sometimes watch this forest on TV and in magagines . To understand the meaning of the commands from our boss exactry . I have jhust finished applying for Working Holiday Visa in Australia ! ! ! I went to Chibi cannada . I 'm going to participate in a Zonbi Walk on Sturday , downtown . We prepared for the Zonbi Walk . We cut some clothes to mimic zonbi . My studens enjoyed it . Too many extra curricula 's chosen by their parents will inetitably take up the kid 's time and change their nature . becouse I have n't finished writing my resume yet . I 'm so tired , becouse the night before , I slept only 3 hours or so . My best froend and I have n't seen each other since Halloween , It was awsome ! ! It was really fun , but I got dtunk and I had to practice danceing . I have to write about something I like internathional , but I have no idea how to write it . ( [ Recently * OR * astornishingly ] google has released Google Chrome . . . ) The process is suprisingly easy if you understand its frameworks . The gaps are being speading in the point of costs and indivisual capability according to ' ' The World is Flat . ' ' Whenever I head down to the station , I can see many blood senter workers on the street shouting My frirst log . I thougt so , but I chose this nickname . In the future , I want to wark making steel . He swiped a bottle of vodca from his family 's shelf . The vendor 's headquater are in Europe . I want to help martha , but I can not fiund the correctur set in this system . Of cours he is the most popular ~ in the world . and thanks a lot that you tought me At first I chose it because it 's only for women and that makes me comportable . curcular exercise ! ! `` I work at an elementaly school in France . I do n't have much faith in my ability to remenber so much professional vocabulary . Because I could n't archieve my target IELTS score . Japanese are killing themselves apporximately at the rate of 35000 people every year . I think the root of this problem is that Japanese companies have a traditional stlye . Exhaused people ca n't talk with someone , although they want to explain / reveal their troubles . Is this rigth ? It was about ' Racelism of South Africa ' . I forget what its name was , anyway there were a lot of foreiners , especially Americans who have studied Japanese . Many foreiners know very difficult kanji , including some ones even most of the Japanese would n't know . What 's more they know old - fashined and obsolete gramatic knowledege . The site gave me new information on japanese . So I found out that learning too much detailed gramatic information or memorizing innumerable words is not very effective to master a foreign language What I would like to say is that territory issues like that are occurring between many countries , such as between Vietnum and China , India and Pakistan , Israel and Palestina , and so on . I saw a 3D movie on Saterday . but also it makes me missming America so much . We ate delisious dishes / foods and talked about our own dreams . Onjyuku in Chiba is a very beautiful blace , blue sea , white beach . To pass the Korean summer , we definately need these things . The following is the ps that I wrote for my cousin , pls give me a hand to correct it . But I am goint to visit the grave tomorrow . But he is also charming and has a great abillity to diagnose sickness . However , I have to admit that the festival is so fantastic , it 's worth enduring all that troubble . At the park , I found thata lot of `` tukushi `` hadgrown . ( Tukushi is called horsetail in English . ) I remember her teachingme asI tried to cook tukushi . There are two important preparationsfor tukushi food . 1 : Remove the `` hakama `` ( It is calys , inedible part ) . 2 : To remove strong bitterness , boil or put in cold water for 10 minites . I stir - fried tukushi and Rape Blossoms . I thenseasoned itwithsalt and papper . unbilibably fat . . . While I was choosing some books for my children , one of the books cought my eye . I take an English - lesson on a web site every day , and I gradually became interested in the Phillipine because that is where my teachers are from . I 'm currently reading the book , and I 'd like to spend some more time discussing things related to the Phillipine or Japan . I read some of the messsage my friend sent to me on hotmail . 90 % said when a woman has long hair becasue it is easy to pull her hair 70 % said they chane their mind if , before they are going to injure a woman , she sees them and asks `` Sorry , what time is it ? `` He recommanded rice noodles and beef fried rice . It 's a story about a girl going abroad , who is taken hostage by an international terrorisim organization . St - Pierre has been practicing karate since he was 6 years old and respects Japan , so he wears a Japanese headband during the entrace before his match . My family had a student from Germany since Aughst Today , she was supporsed to move to another host family . which is so / very inpressive . I also pay the security deposit and brokerage which is eqivalent to one month 's rent . I bought a new engrish book ^ ^ To study engrish is a lot of fun ! I want to study engrish more and more But I don ` t have much time to study engrish and German I bigan Lang - 8 , becouse I want to speak , listen and write in English . I had a dream about a woolen scarf at that time . My dad watches tv and my mom sleep in moring ! But they also have tried to grow a lot of vegetables for themseives in their farm . It was big , beautifull , and had a perfect shape . We would always go to dinning room of our college school ( beacause it 's very close to our company ) but recently , our boss wants to have lunch with us , and I feel very uncomfortable , we can not talk about anything like before . Because I want to study Phmacy after that . Please correct some of the presentation / some sentense . What a beauiful Cherry Blossam Shi is very cute . It was more growing than I throught becaouse she is mix of regret : I regretted to call her such a crel words . givern : In the ancient times , Rome was governing all of the world . bend : I will not bend my oppinion even though all the people here are opposed to it . I 'll start larning English again . I 'm very busy , so I stopped larning English 3 months ago . Today is great . For the first time I met a cool laday . I 'm so excerent . Could you explain the differencey between the meanings of the words above ? Are there any differencies ? Teaching is Learing ^ ^ I believe that the learners can help each other and can make more progress for theirself . Just rotating and browsing itself is really enoying . I would like to devellope my vocabulary and learn to speak , at least , the english that people are speaking every day . The friendship was beautiful and maybe his friend assisted the goal , I thougt . . . One of villains , Griff also said it to his grampa . But he only said the same words more louldly . In some other cities ( like Milano and Napoli ) the winner has n't been decided , yet : the two candidates who gained most of the votes are going to `` fight `` for two more weeks , at the end of which there will be a new vote . She calls me `` my clone `` because weresemble each other so much . For example , when we go to the musium and look around and ask each other , `` What paintings do you like ? `` We choose the same paintings . LOL , I was superman at that monent ! I told him one of them was cheap , so I skipped the explanation of the two companys and their cards . Firstly , because he is the most popular writer among teenagers , I 'll ask him the secaret to writing funny stories . You know , he stopped studying regularly at the end of prmiary school . I really want to know the secreat . terribel day She always has courage to face every difficults , but this she had to give up . One of them is flexiable , the other one is positivity . sevire problems or are in a slamp One more of his good points is that he is extremely flexiable ; he tries to gain new ideas from part pime workers , trinees or whomever has good ideas . words in front of the employees unless the company is in an affluent posission . His possitive way can influence the emplyees obviously . depends on the enploees , because , if they do not work aggresivily , the company their proplems nicely . I think that a good supervisor should be flexiable and possitive . keeping the workers ' thinking possitive . workes should be flexiable and possitive too because without their ccoperation , one good supervisor could not change the company surrondings at all . When I left my grandmother 's house , she said softly , `` You can forget about the marrige . I need think about my future separetly . I 'm very happy becasue I 've spring break until May 3rd ! In this time , each student does n't have seminar and celebraties from morning until hmmm morning next day . Today is last day of this ficical year . I 'll go on a training camp of the Model United Netions this afternoon . The advantages and / or disadvantagges of public transportation . Firstly , public transpotation makes teenagers more independece from their parents , because when they take public transportation , they have to mind their good manners , like how to behave in the situation where other people are around . Thus , the situation where they have to think how to behave by themselves improves their indepenence . Secondly , let 's consider public transportation 's environmental effets . Thirdly , public transportation makes traffic conditions confortable because if many people use public transportation , people who drive cars will decrease and we can ease traffic jams . However , when I was just about to leave home , the telepone rang . We do n't know which one to choose because there sre so many beautiful pictures . When I met them for the first tim , I was so confused others run around all the time even in formal celemonies . goodbay . and creat a sustainable future on our own accord . Hi , it 's my first text on this page ang I hope that this page help me learn my english . I just started writting my journal in English every day . Recentry my class did pre - lessons to be a teacher . But I want to be a teacher , and I want to meke a good future for Japan . I 'm so hanppy have this terrace that I can learn language . My English is not very well , I hope other people can hepe me , I can teach your Chinese , we kan help each other , could you ? Now , I am always going to a support ecompany for studying in UK . According to the IELTS module test , my IELTS socore is about 5 . 0 ~ 6 . 0 overall . I would like to go a UK university and major in Entrepreneurship or someting related to Business . We went hunting in Laxali Clearing after chatting . ablity . Oh , my eassay has been so long ! Thanks for reading my eassay . Please read my eassay , , ! One day , she heard a funny rumor from a junior high school student who said `` There a cursed video tape at a campsite hut , and if one wathch it , one dies after 7 days . `` Asakawa immediately decided to cover the story just out of curiousity . As you can see , I suspended my dialy again . The keyboard layout changed for some reasone . For examle , when I pushed `` k `` , it typed `` 2 `` ! ! I tride many ways to solve this . By chance , I pushed one kye , `` NumLk , `` and the plobrem was easily solved . . . I live downtown with Mexican friends now , but since they are going back to their contry , I have to find a new apartment by the end of jun . The owner is so kind but the poblem is that she does n't like the smell of meat , so she asked me not to cook meals with meat frequently . Anyway , I have to complete packing until nghit . He 's a Saint Bernard , like the dog from `` Bethoven `` . These sentenses say the same situation ? Thailand has a good relatioship to China therefore the Panda were the good gift . They invite the children and toursits who would like to visit Baby Pandaand and watch them playing with snow in that dome . There was one more important purpose for going to this museum , whih was the restaurant . Every freshman in my university is assigned to study calculus , the subject at which I failed in the first year of my universuty life . There coutinues to be illegal videotaping of movies in public movie theaters . It was so imperssed for me and I was shocked . I thought it was much more sofisticated and attractive than that of the Japanese version even though PS3 is originally made in Japan . I heard of `` Umbrella `` from recomendation songs at the cyworld which is a website in Korea and similar to Facebook in U . S . If you know this kind of music , please recomand ! Say it againg sung by Marie Digby My student will challeng relativelly advanced high schools . But I think this music clip is good entertainment and a song I can describe as one that 's really `` This is a Michal Jackson `` . Michale Jackson is the first America pop music star for me . When situation got worse , my comupter just freezed . I am goning to back - up my files and update the anti - virus software . 2 customers , and 3 stuffs incrude me , at bar my working place . I will go to do `` karaoke `` with my fliends . Unbeliverable ! Who Are They ? The Avatar Put banilla ice cream . Hi , I 'm Silver and I 'm learning Japanese and English . I 'm studying these languages because I want , someday , to spend some time in Japan and the EUA . Some people like a western style breakfast such as a peice of toast , scrambled eggs and a cup of coffee . I made some English sentenses with my friend . There are many people with allergric in the world . However , my sister ca n't eat those things , so my mother asked the teacher to give my sister treets without chocolate and peanuts that other children would also like . I could find a convincible opinion . Also my teacher adviced me of following : according to yestoday ` s translation , boss correct them himself and praided me for a good job . But , I ca n't write natural - sounding sentences in English nor can I speake it well . My second son knows how to swim because he has alredy had lessons . Afterwards , the hypothesis dissapeared . Every time I hear blood type character classfication , I 'm bored ! Plactice makes perfect . Everybody syould buy Volvic ! ! ! ! Last weekdend I climbed Yuelu Mountain / Mount Yuelu . so I dicieded to do something to help my English . that 's why I joined `` Lang - 8 `` and started writting diary entries . To make Ramen , we mix pork porksoup , oil , sause , noodle , and some toppings . Maybe I should find something intersting to do . Still , I feel sorry for having to make them liste to my strumbling around in their As a student studying Statistics , I agree with his opinion about the importantce of statistics in our life . Also some universities have a statistics departmemt in the undergraduate and graduate level . I like visit aroud there especially the sea side . There is a water park by the sea and they have long slidings . My kids are looing forward to going to the water park . It looks like a human physcally . He was astronomer and doctor in Midlle Ages . Poland in Midlle Ages was much larger than it is presently . He was first polsih pope . Englis as a second language Japanese and Koreans naturally have morebarriers to overcome because of the huge diffirences between English and their mother tongues , whichunlike Chinese , whose struature is somewhat similar . Frustration is always followed in the quest to be perfect , perticuarly in learning a language where there is no clear finish line . Astronomical sums of moeny has been invested on English education in Korea . `` I know many people who went to Ameria at a very young age . And their prounantiations and accents are just perfect . `` I dont n't have the instict or intuition for English language . `` My hoby is doing sports . As I love many kinds of spors , I have a muscular body . Yesterdy I went to work part time and I taught swimming to children and gim trainers . tomorrow , I will performe it in livehouse . Japanese blieves that the new Year God ( Toshigami sama ) aloso comes when new year comes . This is the preparation for revceiving new God . It has some theory and it is very comeplex to explane in English . It contained grammar , vocablaries , listening and reading sections . Anyway , no mather how hard it is , I know I should get through this hard peried of time all by myself . I do n't like the feeling of hanging aroud . Mybe taking photos can be a nice choice . Not only because of the bad environment in that ciity , but also because of my feeling of learning nothing there . It seems rediculous . The Korian tempercher will be sixteen degrees centigrate tomorrow . Compared to the Japanese tempercher , Korea is a little cold . My condision is a little bad . That sonetimes stimulates my appetite . Then , ( after ) arriving home , I ate a large breakfirst , See you ! Good nisht ! ! I decided that I will naver take PINAIR . NAVER ! ! ! proboblely the hottest day of the year . No , my intere life . I like Yui and Azunyann , Oppps I 'm Korean guy . Youyube caption download Today I heve found that Youtube gives subtitles for some movies . We count nunmers starting at 1 and the person who said 30 will be the loser . I think you can change this into a beter explanation ! Recently , I 'm lerning not only jazz , but also hip - hop and lock . It was very dilicious ! And now I coufuse English and Russian words ! ! _ It 's terrible . . . . . . . . . . . I will visit Ho Chi Minh City and experience a Mekon river cruise . I will stady English hard every day ! Two days ago , a dog my girldfriend 's family kept , Bell , passed away . This happened as expexted . People who consider watches as a tool for timekeper , Everybody in our dormitory waited for them , decided to make it a surperice . We had Mexican food for dinner , it was dilicious for us . English is very diffcult . to grapes , apples , fineapple , lemons , peaches , kiwis . If I had an oppotunity to eat fruits , Recentry , _ more and more people change their cell phones to smat phones . I began to be warried . I registerd for this site , immediately . Today I went to library and studied about various financial produts like ( / such as ) bonds or derivative financial instruments . By the way , I am becoming a little nervous these days because of the pressure of job hunting , and I often feel lonliness . The group invites a foreigner to be an adviser onece a month . I was supurised when I reseave the corrections . I 'd like to conntineu writing my English diary . first of all , I made korean soup which is for birth day soup , today was not anyone 's birthday thoug , beacuse its taste is great ! ! There were also kimch soup , Korean pancake , rice and kimch which are all traditional Korean foods . I decided to study English and Japenese yesterday , after washing , I read a Japenese book . because I just studied Japanese in the 3rd year of univercity . I dicided to study English writing in this site from today . I would like to I introduse my character . This job somtimes makes me feel tired , because I have to work in the hospital the whole day . So , I want / decide to ride a bike / bicycle with my frind . but when I go out to fetch my frind it 's still rainning but it 's suuny again I 'm very lonly . I dont understand the proper precedure to do these things . On this special day , some people are celebrating and some people are still in dangerious . Now we are focusing on the grammer when we start learning English , but not listening or speaking . I 'm one of the people who claim that speaking and listening are more important than grammer for beginners . Would you proofread these sentense ? And I bought stickers , so I will give thiese to you ! By the way , the 31st of October is Helloween ~ ! ! If you have free time , I want to exchange Helloween goods . I am studing English and Thai . I have 2 dougthers and a husband . We are living in Thai , becuse of my husband 's business . I like reading books , drowing pictures , playing the piano And they complaim about the participation cost . At last , I found one to sutisfy my requirements . I 'd like to live near the staition . I met a childfood friend . If I am free tommrrow , I will share it with you . Does anyone wnats to comunicate him ? For example , all us Japanese people lived in Japanese - style houses , but recently this type of building is becominng a thing of the past . Nne of the reasons is that the develpoment of the air conditioner lets us not need to choose the Japanese one that is built so that you do not feel uncomfortable without them . A man who like to wathch old - fashioned things has no choice than to go to a history museum where they are on display . What improvements have I exprienced ? But it is clear that I have relize the mistakes repeated in each entry . Learning so much vocabulary is making me confused and frusted . Could you see my weaknesses throgh my journals ? By the wey , I am going abroad to study English in Australia on February 12th . I am worring about the flood which have been occuring in Australia . hagout = play ? When I was student in High highschool , I was interested in Middle East . We playe dodge ball , catch the tail and ran in a race . I stayed up all night talkig with my new friends . I went to the web site of , `` the new york time `` it has beautiful calligraph . These days , I have begun traning to quickly translate Japanese sentenses to English ones one after another . Japanese sentenses are chosen to be translated easily so that we can concentrate on learning the grammar and the use of it . Becasue there 's no need to get any certification when you act as anyone , I remaned my acount and uploaded some pictures and became a well - known comedian of China this afternoon . But I can comunicate with others somehow . And unluckily I 'm incruded in those people ! Our enzyme , alchol dehydrogenase , which metabolizes the alchol , is less active compared with the enzyme that heavy drinkers have . I seems strange that my friend never recived a letter ! I have English conversation lessons on Satarday . I will enter a university in Aplil . do you have another expresson for `` it takes long time `` ? as with many korean students , I think I have a weak point for speking or listening in english . I watch my usual knitting shows , ready my favorite knitting books , and check out all my tools and knitting - wool in the colset . recentry , my hobby recentry , I 've been interested in Mr . Children which is a Japanese musician so , I listen to thier songs almost everyday ^ ^ and now I am listening to one of their songs . According to the weather forcast , it 'll rain tomorrow . But recentry , there is no one who takes care of these things . ' Your grandfater died . ' Oh , you have to wear something on your underware , right ? I used to sleep at arround 10pm and wake up at 6am . this weather makes me really dipressed ! ! ! The reason why I decided to live in NZ was that I wanted to recover the nodes on my vocal chords by being in the clean New Zealnder air , and also I was tired of being in Japan . He needed to push the on off - botton immediately . you 've learnt many languages , it 's very interesting , but learning to be fluential in any language can be very difficult What do you thinhk ? the internet , junk punkfood and smoking was my life . I 'm swallowing tablets and other medicaments for pain ( painkillers ) , my body hurts so I 've been lying down all day . Although all this has been happening , I wo n't stop pratice English . It is true that English is becoming the world language in globarization . I am reading a comic book called Dilbert , writen by Scott Adams . It was about M . 7 around Fukishima , the nearest place to the hypocenter . Her strongest point was that I ruin my health by not eating eggs and diary products while my brother slowly empoisons himself , it 's something nobody could do anything about it . She is just too stubburn , but so am I . . . Fresh vegitables were very good ! I have tried to grow vegitables on my balcony but it ended in failure . I have stayd at an Australian home and there I ate pasta made by the home family 's mother which is was the most delicious pasta I have ever had . I have to pay 1000yen every manth for the membership fee . I do n't need to pay for the car insuarance , either . Becouse it is included in the membership fee . This system is not populer yet in my nighberhood . In the future , this system may be pupuler among young people . on friday I just went out with some friends to have fun in a latin bar . It was nice , I met a lot of people there from differents parts in the world and oviously from my country as well . . . on sunday I went for a walk with my flatmate she 's like my sister here so we just went for walk and a cup of coffe and then I back to my flat . . . Yeasterday my mother and I drove to the Wake Mall and bought many things such as clothes , shoes , food and other stuff . They all enjoyed the sunny day and took their rest at the eeekend . My shedule in Bangkok had changed so I could n't arrange things around my schedule . So , I predict that this year 's theme will be ' nana ' or ' sichi ' I will take an examnation on the 24th of April . I am planning to have a trip with my college friends before guratuate and I have not decided where to go . The beautyful flowers There were the beautyful flowers at the reception of my company . I am not wearing a wedding ring , neither is my hasband , because we did not buy them / any . Of course , we visited a jewerley store like other people when we decided to get married . I ordereed some items from drugstore . I think they are a really big campany . I checked out that massege . I parchaced a lot of items so they will ship my items in two shipments and I would like to make sure that they will ship my items in two shipments . Mami Kawata This is a letter of complaint for a psychologic journal I was examined and the doctor said that I have signs of paranoia but I do n't belive him . I realy do n't know ; what do I do ? I also want to make freinds all over the world . At first , we had a Korean luncn . I bought colthes , boots , body care creams , and so on . We were reliefed , but we should have make sure of the bus , especially when we come to a place we do n't know so much . Since I have the shop bag of FORVER 21 , some girls asked me , ' ' Where is Forver 21 ! ? ' ' It waa interesting for me . In addition , students and their parents complain of the incompetent teachers who do not strive to show any effort to imprive their teaching skills . The governmnet insisted on a new system that requires teachers in secondary schools to renew their teaching certificate every ten years . Therefore , I recommend the method of using the score of authorized linguistics exams in the case of subjects related to language or tests made for assessing each subjet . In conclusion , I agree with the implementation to reform teacher 's regular assessment becasue it has more advantages than disadvantages , such as the improvement of a teacher 's teaching skills and the recovery of students and their parents ' attitude about public educaion . Jim Carrey 's acting was wonderful . I 'm going to write a Jornal everyday . SAKURA is cherry tree in Jpanese . I stayd home all day . I 'm a univesity student ! ! ! ! ! ! I have a friend from Japan in NewYork who is currently working in the real estate industory . However , if the teacher 's pay is based on th achievements of his students , Teacher A will work harder , and Teacher B will stop complaining It is lanch time now . I was very surprised because Austrailian eggplants are much bigger than Korean ones . Only those who are bilingual [ will ] pass the bar eaxm . Actually , I like watching movies which are dubbled in Japanese . I sometimes feel the gap between the dubbled voice and the real voice of actors . Recentry , I watched a movie with subtitles in order to learn English . 5 in terms of job hunting in America , they considered that people who emphasize their skills , achievement or quolification are likely to be a useful resorces for the company . Of course , this is a characteristic of Japanese people , and there are people who are very frank and are never diploomat . If there 's any opposing veiwpoints or advices , please tell me . ( ^ ^ ) As the Internet becomes more common , we can reach a vast quantity of infomations . Also , we can easily offense other people by using tools as slander . ( Some ) People are scared of being slandered , as the people do n't have common sence . Today I want to tell you about a festival , what happened yeasterday in my town , Vinnitsa . In the centre of town people could see the stands where there was the name of a Europian country that describes this country - population , area , official language , nationalities that live in this country and gave information about the history of this country . All of these interesting actions were accomponies with nice lively music , masterful displays of dancing and of couse a good mood . there are so many things I have to lern . . I went up Abura maountain this Sunday . We arrived there abourd half past two . And then we started climing the mountaion . While climing , I was out of breath because I do n't usualy excise and do n't have stamina . It took me about one and a half hours to arrive at the top of the mountaion . Going down is eary for me compared to going up ! We arrived at the bus stop aroud five . After that , we went to the restrant to eat dinner . I usually do n't excise so clming a mountain is new for me and I 'm excited . I like moives that make me `` think and treasure . `` Most of things that happen in our lives only make us anxious and depressed , and those negative feelings kill our minds little by little . As time goes by we become aged , experieced and learned . We minght not look at things as we did when we were younger . So I need to use English at school in order to give new impormation ( knowledge ) to my students . I kown . However , today I somehow repeatly listened to a song but I have many difficutise in math ! ! ! I servived today ~ haha Actaully I live in University domitary , so I 'm always in the school = ) Every Monday and Thursday , each class lasts for 1h 15mins , unlike the ohter days on which the classes are 50mins so these 2 days are more tiring . And fortunately during the second calss was no lecture because the professor was absent , so I went to library and took a nap ~ hahaha Third class was again Constitutional law but this time it was about construcures of controlling a contry ( state ? ) so it was more understandable than the first calss . 5th calss was Civil law ; I studied contract law . After fomal class , I had Japanese class which I take every Monday to Friday . healthy kutlet I made chicken kutlet for lunch today . Today , I am going to tell you how to make healthy chicken kutlet ! Today 's lunch was very yammy . At about 9 : 00 , I have to perpare my afternoon job . I think it is a wonderful oppotunity for me to improve my English and my teaching skills . ( PS : I am a college student and I major in English teaching ) So , I always prepare carefully before I have a class with the student . To be honest , driving a car is a big challege for me . But I know I am making progress every day , which is the most imporant part . What I 'm doing now is because I want to go to abrode to study , and I want to meet some friends from others countries . I want to know anything about others countries , and at the same time , I hope I can let my friends konw more about my country - - CHINA ~ I hope I wll be not be sleepy . It was temted to do some shopping . In 80 % of my time , I do what I 'm abligated to do . Unneccessary expenses mean low efficiency , and that 's what I dislike . However , I can only explain it in Japanse and Korean . One more thing , Februry second is the Ezaki - san 's birthday . When his son was sick , he had his son eat oyster sirub as an attempt to make him feel better . ( Because his son 's disease was epidemic , and the doctor gave him up . ) Miraculousely , his son escaped from death . After that , he wanted to have more children eat oyster serum / sirup . As I did n't focus during the lisning part , I do n't think I will get good score . Resently , after I had got home , almost everything I did was in the chair . I know exercise keeps not only my body sharp , but olso my mind . Hello , I found today this site , I decidet help other people learn polish language and I need help too with english language I had studied English to enter coullege but my English is poor Today is a biautifulday day . Rainny season The rainny season started in Tokyo this Monday . ( Sounds better ) The rainny season is very filthy , but we need it so we can get enough water this season . I will wash it untll noon . My teacher is Filipiono . I want to make progress in my english study ( studay ) . We would like to hand our property of chilren 's songs down to the next generation . I tjink they are more attractive than Tokyo . This year I want to be able to speak English very weill . thaks for reading ! I hope you have a great day ! ! As there are two more rings on it for the index finger and middle fingerr . self intorodaction What did you do for Cristmas ? By the way , yersterday , I bake and eat it with soy sauce or cheeze . A good employee should have this skill and also be able to communicate well wuth his co - workers . I entryed Lang - 8 today . Sakra is beginning to blom near my home . Anyway we enjoied the beautifully displayed dishes and the scenery of the countryside . He might be straved ! The A - course ( we oderded ) Grilled octpuses with herbs . Caprese scollop and tomato salad . Three kinds of curroes . When one reachses old age , he / she tends to be more conservative and reluctant to accept new ideas and innovations . As a conclusion , one 's retirement age should be decided according to one 's own conditions and willness . I suggested some Japaese books for beginners like him . He was walking to the opposite derection ! His head was facing me ! The main reason for their success is havig good results from lots of international competitions . So I am going to be a girl who has a boyfriend especially a bf from Amereica . In additon to this , there were many people standing by either side of the road selling foods , drinks , ice creams and so on . I always say that I want to keep it and lose weight but I hardly rechieve my goals . Do youo have any good ideas to resist the food offered in front of you ? The incurcion of a Typhoon yeserday afternoon , our teacher said to take a day off the next day . Of Ofcouse my mother was really angry . ( / _ ; ) I think I have a pretty ok command of the English language , but sometimes I get confused about prepositions , grammar etc . Watch is uncounable , I was up all last night playing on my computer , talking to my friends on Skype , watching Frends , and cleaning up my room . So , I 'm very stisfied with them . Now I do n't have to carry with me so much encash . Many people say bad things about my country , but Colombia is a buatiful place to live . The people here are so kind and happy , and everbody works hard to make Colombia a better place . Corrently , I feel hungry even though I have just had breakfast a few minutes ago . especially new recuits who recently graduated from college . And then , I found a favorite musician called `` Zainichi Funk `` I 'm lokking forward to it ! ! ! I 'm definitly not an `` otaku `` ( anime nerd ) because I 'm fairly mature , However , I have to reviw and prepare for the next week . I want to talk in Engulish more . I made `` macalon `` . I gon na try again near futer . I have to take hime to and from the school . Runnimg with my friends I used to subscribe to the Financial Times via Kindle , but after it got broken , I cancelled my subscripting . In the nersery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . But I never woory my English exam hehe As you can see , it has steps which are mede from glass Today ( ? ? ? ) National Foundation Day in Jpan . They ( was ) training ( ? ? ? ) the weves of the sea . World Cup is an exciting frestival . I recorded while I was waiting my train to work ang getting on it . There 's no foods , no erectric , no gasorine . . . Hoestly I tried to make my avatar based on the picutre , but I did n't know if I could make it . Now , I come here becouse my English is not fluent [ proficient ] . Actually , my dayly life does not necessarily use English but my father lives in California so I want to grow my communicaition skills . Anyone please give me help and be my freiends . It is for my illustration project and the other one is like a Japanese `` manga `` for bussiness on a web gallery . Anyways , this is a first note to say hai to evryone and nice to see you . K - 1 fight show is my favorite . Hello frineds . I finished Public Admistrater . . I took a lot of pictur with my friends . . I do n't have anyone to give me fower today . . I 'm a korean learing English . Zamzm : Holy Water Some Muslims even cry over Zamzam when they return to thier countries . But I dould n't do it because on the road I lost my way . I have heard that this way , the supplements are aborb well . ( ? ) Because I sit a lot in front of my desk , I would go out for lunch with collegues whenever I could . I do n't eat a lot becuae I am supposely on a diet , although the diet seems never really to succeed . It seems to be a cultual difference . Bankluptcy by eathquake I met one of my frined after a long time . I was suprised because she got a new job this Janualy . Pround to be Spanish In the last 10 years all the political parties who had had gobernment resposabilities in the different administrations , have accumulated enormuos amounts of power . In this political sitiuation with the current horrible economic and social scene , people have said stop . Unfortunately most of the media , supported by the political machinary , have been uninformtated about the little revolution . It seems that this social movement has been imitated all over the world , and that is wath makes me feel good and proud to be Spanish . First , I felt unconfortable having it because I 've never had such bright color things before . And , I was really dissapointed with the climate . I regretted that I did n't realizaing it before . I had an awesome trip with my famliy when I was studaying in Shanghai . . After that we visited Japan Parillion . It is the largest country parlillion and is also so beautiful . We also visited some other country parliion such as the United States , Spain , Netherlands and South Africa . Although I believe my knowledge of English is allready advanced , I am lacking usage and lots of tiny specific words from every day life . If you need any help in learnig German , do n't hesitate for ask me for advice . If you meet people that you have bae memories with , and you have not kept in touch for years . My favorite English words are `` lovely `` and `` briliant `` because I like `` L `` sound . I also would like to taik to anyone overseas on skype . When I was an elementary school student , my dream was to be a professionl football player . When I was a colledge student , I majored in Danish language and society . Besides , Danish people do n't open thier mouths wide so it is really hard to tell the difference ( between vowels ) . Today is my birtday . Finallymy father arrived at the hospitl and he was able to be present at my birth . Today I will look for an apartment for my freiends and myself . It 's my first time living with freiends . So I would really appreciate if you would correct English compotion below . The manuscript is so long that I devide it into two pieces . The non - directive play therapy and eight principles whick Axline V . Axline 's client chilren often ask her not to change the area they 've played in . I feel DIBS developed his ego through thinking and pursuading himself . Later , I went to a French resturant for dinner . I also had some rough times in my chlidhood . I 've found a software program that helps English learners to improve their English pronouncitation . My tongue is structured differently , so the pronounciation of my mother tougune is bad , too . I need to practice my pronounciation more than others because if I do n't practice , then many people may not understand my words / me . Yesterday , My farents and I went to see the baseball game in Munhak stadium . So My farents and I went to the traditional pub to drink some traditional liquor . Although Samsung lost the game , I had happy time with my farents . I will take a TOEIC examination on Janualy 302011 . My friend adviised me to first study t English grammar I am lucky to meet you at the vety beinning of the new semester I did n't forget about the white paudry sands , parm trees , good wind , beauteful light and the emerald green sea . He said : `` MoM I 'm hungery . `` My mother said , `` There is nothing to eat but some instant noodles . `` ( moved below ) The speed of the Internet here is slow and is causing me to have complete nervouse breakdown . Duirng the movie , the memory of Italy trip keep popping up in my head . The Liar Game is a TV series of Japen , which was adapted from a comic book . reasons , they join the Liar Gme for the second time . It 's too ache to concenerate on anything . A Chinese ole says `` Toothache is not illness , but it will take your live . `` Now I can unterstand it well through it . It ` s reary little shoe . However , I passed the test and I got my driver 's lisence two hours later . It 's so exceting ! ! You can go to the famous Shida nightmarket market , then ask anyone for the restaurant . These include Mexican food ( burrito , fajita , quesadilla , taco ) , every kind of burger ( pita , focaccia , burger , wrap ) , different flavors of omelets , salads , some specail breakfasts ( like English breakfast and mexican rancheros ) , pasta . Our most recommended is the chef meal , such as meat loaf , beef burgundy , German sausages and chops , parmesan pasta , eib eye steak and things like that . The flavor was unfamailar to me . There is also a specailty here , on the second floor , our boss provides and welcomes anyone to put their art work on the wall dispalying . I think that many HEROs are strong and have special power untill now . Otherwise her eyes will itch , and have a stuffy noice . I want to enroll into a forigne university as a master student . I can speak conversational Engish , but I ca n't use English for academic purpose . So my listenning skil is getting worse ! It 's my pleasure to join this website / site for learnning English . I was even more shocked when I knew that Miyagi prefecture sustained more damege than us ! Although I did not think that I had time to enjoy it in this journy , I had a swim suit in my suitcase . For example , reading , speakin , writing , grammer , etc . . . . As soon as I looked at her pale face , I called my workmate to aske how to deal with our emergency . Even the chance of talking with restaurant clerks has been getting smaller recently ; they have vending machines evertwhere which sell food tickets ! I started to wach this TV series on DVD last year . I think Samanth is very cool because she is strong despite her cancer . and I heard about shyphone . To use skyphon , I need a camera and microphone , ect . We like to relax in hot springxs . Then I want to go to an open ari bath . But I wonder if forigner will know about an open air bath . Which is better for forigner , an open ari bath or an outdoor bath ? But the other day I read a grammer book . And I went to school directry . Yesterday , on my way home I ran into Cindy who is the wife of the marketing maneger at our company . One of the big reasons why I 'm into it is this sereis is based on the daily life in Manhattan . It 's a good way to improve my Engish . I should prepare some snoe equipment such as a snow shovel as soon as possible . I 'm studying `` Computer Sistems `` . It 's preferable that its thick and made by chemical textail . I was worried about leaving Japan , but there were no worris or problems in Canada ! ! Unfortunetly , the website is written only in Japanese and the vanue is Aomori city , The Japanese temperature graduelly rose every year . There were few confortable spring days . I like confortable autumn days . I have to change somethin , but I have no idea what I regard this activity as a part of liveral - arts . But I want more opportunity to comunicate with English people . Because of watching drama or film without English subtitle and comunicating with our business partners without interpreter and living forgien country someday . I edited my frofile . At the beginning I did n't like Tony , he would always bully Sid and behave unfaithfully toward Machelle , I do n't understand him . At the end of the first season , Tony had an accident when taking a phone call with Machelle , he was apologying . . . I realized there are too many ligths in Japan . Also there are many 24 - hour convinience stores open here in Tokyo . I do n't think 24 - hour stores are nessesary . My feriend said that `` avocado tastes like tuna if you It 's wanderfull ( - _ - ; ) ! ( It 's called `` Doyou ushinohi `` ) Howevey , I 'm lacking the momey to buy it . It is a little bit expensible for me . . . . Yesterday I bought a wonderful black dress which I 'm going to wear on the wedding of my cousine . I ca n't understand why , because it 's really beatiful and , moreover , I 'm not a bride , just a guest ) ) ) ) my department is finance but I 'm a biggner so I read bookkeeping at first . In China , students choose their mjor before being admitted to universities . Befor the college entrance examination , I read a lot about OR researched electricity and its developing trend in a newspaper . She told me she usd to be a princess in China , but now she does everything by herself Today I teach the children reading and writting . I know I will use this experment in my future work ! ! My thecher is male and is from america . [ Because pabulic bathrooms are dirty . Realy ? The frist day I am now working as a public servent in Shinjuku . Everyday I 'm going to practicewriting , ristening , andreading , So , I went to the location of the fire as soon as possible in my car , alound five o ' cloc . Study methods that work well for oneself is readlly found . I speak English and I 'm also intereted in Japanese and Chinese . My girls are playing a lot with their cusions . 5 minutes is 300 secoconds . It has passed 50 seconds alreay ! ! I travelled to Tailand last month . He said , `` This is your first visit to tailand , right ? Then you must to drink to Tailand Yogurt . `` I was very suprise by the SIZE . Yet , dispite the fact that I have plenty of days in my hands , I do n't have any plans to do anything except for a short day trip to my grandparents ' home in Yamagata prefecture . By the way , I 'm going to Euroup on the 26th . The day before yesterday , my cumpany announced it 's first quarter financial results . As a result , my cumpany stock rate decreaced 10 % yesterday . At the same time they lose theirselies in the internet and the computer games . His performanse very good . He performed well . I like his performanse . My stomeach is getting bigger and bigger . Incheon city holds a big internetional rock festival I felt very nervious and could n't say much about the PR expression in English . And I know they are disgausted by that . By the way , if English speakers speak Asian languages in Asian coutries , Asians are interested in them . Anyway , speaking English is in Grerat demand and speaking Asian languages is in small demand . Why I sellect advertising is still a mystery for me . Maybe some people think commercials are a bad thing , because they interrupt people 's favorite TV programe . So I ca n't cotrol it . Oh , I am sorry , my doy . 3 , Try to speake English more actively . see you agein . Tempra was tasty , but I had a hard time talking with my colleague in English . I also studay English by playing video games in English . I do n't have much self estime . schoool was cancelled because there was a typhoon . Forcast of this week In today 's class , I was confused with the usages of ajectives . `` You kidding , hoon . `` A middle - aged man said . This is my second English diary . ( Or to someone who migh look at it and corrct it . English was a main subject at that time , but the importance of Enlgish is growing more and more each day . English education in elementary school started in 1997 in Korea . ( from 3rd grade ) Korean Goverment has an Enlsih education policy to be extended to 1st grade someday . I have 14 - years of experience teaching elementary school here in Korea , and like every other teacher , I am feeling the stress of Enlish . After entring university , I started to study Chinese . I really hope that I get better at English and make a lot of friends throug Lang - 8 . Well , when you were a little toddler , you problaby watched some cartoons on the telly . I will begin my wark from tomorrow on . I also bring magazines into the bathroom such as fashion or photo mazazine with beautiful pictures . Here is the reanson . He said : `` Time is flying by , this time last year we were stil playing together . `` He also asked me to visit his hometown when I was free . I want to work hard to offer better survis to the guests . But I should n't really be , because I have an English presentation I iIhave to write , and tomorrow I have a piano lesson . She is very beutiful with the clothes . If you have a chance to travel in Zhengjiang , I recommand you should takea trip trip toHangzhou . Fortunately , there are two drivers incoulding me , otherwise it would take longer for me to drive back home . This resuce was a miracle . By the way , I 've been interested in slungs because I take a slang idioms workshop on Fridays . Do you use slungs in your daily life ? And I cought a cold . Or , I wear my favorite earings or necklace ( expensive ones ! ! ) . as a beginer , I think acoustic guitar is the best choice . one , it 's dericious . Next morning , luckly I felt so much better . I know it 's been long time no jornal , but I finally came back to my home town from two weeks of vacationing in Hawaii . It was the best vacaiton ever , I think . My Japanese friend took me to play soccer and hujng out , and my best friend took me to Byodoin temple in Hawaii . It was so beautifl and the area in which the temple is reminded me of Japan like Kyoto , you know . I have tought myself english for a long time . Our memories in Austria ( Australia ? ) are especially awsome ! ! ! I 'm confident I will pass the IELTS because you have taught me aussei English , so I 'll study harder to speak English well thanks to you . There is n't any garten , but there is a big balcony . It 's beyond my expectation that I writen a paper here which is responded to so quickly . It is made of soy . When it is sold to coustom , it would have suger water poured on it , But I eventually decided to go as the plan was to visit Praque and I had never been abroad before . Once we arrived in Praque , we started sight - seeing . Pitty that we could n't watch more of it . I felt a bit drowsy , so on the way back home I fell asleep and sleept like a baby . I do n't know why I fall asleep imdiately and for a very long time recentely . If you have a facebook acount , please connect with me ! It is so lound and noisy to me . However , I ecountered a difficulty in my English writing . Due to above these reasons , I decieded to try to improve my English writing , by writing diaries every day . My faborite game is `` Monster hanter `` . And , I enjoed chatting with my friends in my colledge . I was suprise ! ! Of course , there are a few possitive apsects about telly . I have nothing against educational programmes which have a possitive effect on our development and I sometimes watch them with my little sister . I beared it for a long time . One is the way you learn in school , by reading books , the correct way , but not used dialy . He was a very nice person before , but he has chaged . - He could not make himself heard in a crowdy street . I think that I still have good prononciations and more delicate way of expression in Chinese . some habits seriously illegal : violance in the family , drug abuse . . . etc . I was very surprised that there were so many people to see the ceremony in Wasington . For example , International Mime fesival , Puppet Festival , International Yesterday I flew to Hokkaido for a buisiness trip and came back home today . I felt flight attendants are very tactiful . ? ? However , I 'm not afraid of aftershoks , Instead I am scared of the earthquake alarms . As we sadly partake in the last moments of pleasur from our summer vacations I 'm unhappily reminded of the dreabful schoolwork that lies ahead . However , I think I shoud n't sleep now because I have only written one diary entry in 5 months . Beer , MACHA ( bitter green tea ) and soy sauce were real Japanesell ! ! If I keep smily , happiness will surely happen to me ! ! What are the supporters like ? How is the pitch ? How is stadium outlooking ? When the check was recieved by my boss , It was corrected a lot . If there are any problems with my pronounciation in this song , As such , I feel so stressed out affter school . Affter studying about 30 minutes I start to feel sleepy . so effectly ! So if you find anything wrong with my sentense , please correct it or point it out . Today , I whatched an Icecream car ( ice cream van ) near the my house . ( Totonto Lake shore west ) You can make a Paper lounge to be longest as a 16 - seater lounge or shotest as a 1 - seater sofa . I recived an e - mail from her that told me about shis scheal . The Techer was going to camp whith his girlfriend so I felt jealous . I took an evningclassroom class by myself . I plaied with a child and I used eat lunch at a place where there are children . Shipping mothod He checked the attendance seet and rearised I made a mistake ! Audry was very cute & charming Today , I have 3 classes which are sports business , academic writing and a seminar about world haritage sites . I talked a lot with my new friend who is half Japanese and haif French . Today , I went Downtoun with my friend and I took many pictures . I engoyed myself but , I experienced some strange things . By the way , I also went Chinatoun and it was awful because many people are thin , smoke and have tattoos . However , I wonder why a poor place was made near the center of Downtoun and why the poor people are still poor ? We should donate more moeny and support them , bacause they have the right to live safely and peacefully . I did n't know much about it , so I asked the staff which is recommended for a bigginer . By the way , I work for the company in Tokyo and our headquaters is in the United states . A Cammpaign Speech I 'm jiaru , I 'm froom class 4 . I bealive I can do it well if I am elected . I was fully satisefied with the swamp and marsh of oze . this was my favorite part of the day ! She is from Austria and her hasband is from China . I was surprised she knen Chinese characters . Today , I rentaled some CDs The house had a large garden and a garage while our appartment does n't . My hasband did n't want to because changing the tires by himself was n't easy . Aroud 5 o ' clock his mother came back home from work . She had picked up some vegitables - a Chinese cabbage , spinaches , and long green onions at a small farm and gave them to us . The pot had a partition to enjoy two diffent types of soup . We were able to eat any meat for about one thousand yen at the restaurant so we ate a lot of vegitables , beef , pork , and chikens . I 'm going to cancel my purchase of this item , but I want to buy that new cleanzer . I 'm trying to buy this cleanzer and if I can get your items I will re - order them ! I picked up my son at the satation yesterday because he came home for the first time in a month . While I was watching Australian TV , I felt liike a child . wkeather is r , she took me to the store , and I purchased an electri heater . a lot of dilicious food . ^ ^ But I am sleeoy now . . . bcause I did n't know how to use it well : ( but I think this is not good thing . recentry I 'm hunting for a job . in Japan , univercity students must get their job soon after grauation , and keep working all of their life : ( I think this is a bad system . if I ca n't get a job , I would go to potographer school and become a phtographer : P Gramatically is it a conjunction ? My freign friend told me about how to prevent the cold . But my study habit is if I do n't know the words means I always use . dictional . What is the most portant is to burn paper money , we think our ancestor will recieve it and can use it in heaven . That will be thought as very pityful . For example : `` So to speak `` , `` on account of `` , `` bacause `` , `` thus `` . . . expressions like th . How can you get friends in this SNS ? + Short Message Service + Of course , I have a Mixi account , the largest SNS in Japan . So , I deside to study English harder this year . and thank you so much for leaving your nice commets and corrections for my previous entry ! ! I was very happy to make some firneds and I want to make more now . I had to write it until the 22ndof last Desember , so I am filled with a feeling of freedom , ^ ^ but I will have to do more one thing to do for my graduation , which is an oral assessment . Which is maybe about 15 minites . Harry Potter and the Deathry Hallows Today , I went shopping with my daghter . I want to visit Tokyo of course : Harajuki , Shibuya , Roppongi etc . Last week , my frined went to NY to study English . I bought lesons on etutor . Preparing for travering I want to enjoy travering there . I have to ( must ) remember to do it on wedonesday . I just read a setence in a dictionary . So local hospitals are inviting madical students to their hospitals and asking medical students to come to their hospitals and look around inside . For hospitals , they can use them as labor force , accept money from goverment and get compensation by being selecting . So I went there and looked aroud with my friend . I will leave after watchig the Japan team WBC game . I have a plan to look aroud there from 24 to 27 . Afterwards , I might go to Okayama ( prefecture ) to lookin around on the 29th . Well , I feel like panching someone ` s face righ nowlol I have been flustrated all day coz of someone I dislike , in fact I hate them . If my wish could come true , I would wish to let someone kill them and vanish in front of me . . . lol now probably u can see how flustrated I am ? howevrer , I forgot to save them before shutting the excel . . . . I totally felt dipression and dizzylol therefore , I was fucking something stupid around till I calm down my flustaration . so I wana ask u about ur solution when u get flustration or something bad happens to you . How can u get that out of ur mind ? Many ppl have given me messages although I 've just started taking part in this SNS . Because of the typoon , the train that I usually use for going to my company is cancelled now . Althought it 's bad news , I still had a memorabal Sunday . I 've now written elven entries on Lang - 8 . He asked me , `` what are you going to do tonigh ? `` So at first I introduced myself , but then I could n't remember their name at all onece ! ! First , I could come back home earlier than usual from the restaurant that I work at because of hevy snow . Yappie ! ! I always get up at 4 o ' clock evety morning . Only one student in my class fainally came to school . But almost all Japanse are not good at English , including me . We can ' t play soccor like Lionel Messi , who is a super soccor player , only by watching his games and studying the rules of soccor . So , I think I have to try more ( or harder ) althogh it is often a bit hard ( or difficult ) . I am looking foward to meet you and your family . I 'm / am really surpised bause I think she will forget later what I teach but she wo n't ( will not ) . I ca n't imajin how much work I have to do tomorrow because I could n't finished it on Saterday . I do n't like raiy days . I hope it will be sunny on tuesuday of next week because the sports festival will be held . on tuesuday . I went to London , Paris , Francfurt and Lipzig . they were very beautiful . they often slept in the day and catch mice at night . iwe buy fishes for them and often played with them . so we like them very much . at last , the other cat was stoled by other people . mom said that the strangers might haveeaten it . Totally I spent 300 $ and became a begger . I amd a vet . The following day after the show , my friend who came to the two - day festival mailed me , a company which sponcers artists invited her to see Buckcherry , one of the bands in that festival , at their own show in Hiroshima . That fact makes me hesitative when I am going to meet someone . For whomever is reading this , if & nbsp ; I have mistake in grammar , PLEASE check and correcthat it . There were lines of poeole at the place pretty far from the city . That is more sirious for people live in Tokyo . He always puts his face near my face and his wiskers touch my cheek . I tickle his wiskers ! I stuied English , then prepared to go out . We went into a restaurant and orderd our meal . My univercity started classes on the 27th . I ca n't deciide which classes I want to take . This museum and this tour taught me that communist countries exsisted . I do n't know how to express my apperciaition Wish things will get better tormorrow after some negotiation ! Please ! If you do n't know sumo , ckeck it out . Yestaday , I had an interview with an associate consultant company . What should I do to be more enegetic ? My heart sank from the bad result in the postgraduate entrance exam but I must force a smlie and carry on with more courage . One class is Principles of Language Learing and Teaching , and the other is English Literature . In the lesson , we read Macbeth , a / the famouse play written by Shakespeare . At the time of the first lesson , I thougt I would n't be able to keep up with the class . I do n't have a good head for buisiness . T . , who is a professinal Japanese illustrator . I was very busy with her own job , so I needed to trancelate it for her to reduce her burden . She saw it and read the translated message , and then she replied to Miss K that she would be able to draw some illastrations in black and white , but she would not be able to make them in full Manga style . It is too much work for her , but if Miss K accepts her suggestion , she will draw it on a volantary basis . she thought that it would be a good oportunity for her to make children 's book and co - operate with British people . I have another story and I have n't made any illustlations for it yet . `` I and myself do not have a good head for buisiness Becouse , if I watch it , I ca n't sleep . We were satisfied with our shopping very much because their fablic is always high quority . She was fastned to the bed , her face was sweaty and her eyes wide open , because she was afraid . I have n't written daiaries for a long time . . . Please correct my daiaries ! I am just used to words and saying realy small things . I think , I do n't need to translate Korean into English but to thinkinh in English directly . I try to sell them on Japanease auction sites . I keep buying them and it is like my side biginess . Now I 'm really disapointed that my American friend left me . She came here on the same day whic I came back . So I took her , went around our school and some fomouse place of Beijing in these 3 days . She refused to eat any Chiese food . But it did n't work , because she foud some friends who came from the U . Our life style , I mean , Asians have already westernied so much . After the Olympic games , the life of Beijing complitely changed . We have cars , PCs , humbergars , everything same as U . I swept and polished the floor of the kitchin . But they will only show it on WOWOW wich is pay TV . I was excited when I checked the morning paper , because my fraiend was in it . evern more than last year . Very intresting but CRT moniters were still being used . Somebady said the Cloud is the third industrial revolution . When the Imam said , `` Allah is the greatest , `` all my family started to eat the breakfast with apices of dates . Then I said , `` Mum , Dad , my brothers and sisters , this is an Indian rice and I made it for you . = ) `` My hobbies are playing video games , surffing the internet , listening Althought it might have bothered others , I ca n't help but to buy and set off fireworks . I came acrross this website in a magazine called AERA ENGLISH ( a Japanese publication ) recently and thought ' wow , this is such a good match for what I want to do now with my English ! ! ' . I enjoyed doing netserfing . I steeled myseif to start running Have you ever tried Bouldring ? I tried Boudring last week . I took looking for a Bouldring lightly . Anyway , today 's topic is the death penarty , which is very conroversial around the world . They are seminer , writing , special topics ( I can choose a class ) and presentation . Although one has a strong desire to be successfull or dreaming to be a famous person , without knowledge of manage time , he ca n't achieve his goals . So I should be more carefull in managing my limited time which can lead me to success . It is proud that I can make full use of my leisure time skilledly . I do n't like rain , because it 's not possible to take a wark . I wish the rainy seson did n't exist . I 'm intersted in demi pair ( ? ? ) and in an internship program in Australia or New Zealand , so she explained those in detail . Here , I just stay at homestay . So I could get one degital audio book instead of paying a monthly fee . I shold have bought a much more expensive book . However , he was told that everone had to leave the building , so he let us leave . I just recognized , If I want gud English I have to have more friends to contact . I want to have lots of foerigin friends . I love British stuff and want to stay in the countrysaide of England someday . If any British people see my daiary , please give me advice . I would say Sushi can be devided into 4 parts . The scond bottom layer is called the `` popular class `` . The scond highest layer is called the `` advanced class `` . When I was studying German threre , a man came over and talked to me . So he left my house with `` Sidartha `` in his hands . Then I watched the Chelse vs Inter game on TV . I did n't like Inter , so I wanted Chelse to win . Kaera Kimura married yesturday . For example , last summer there was a so called ' sandy town ' in the middle of our square where our citizens could see world - famous sights such as Eiffel Tower , Egyptian Pyramids , Coloseum , Parthenon etc . I thought I would live like this forever but lately my thoght has changed . I speak some English and try to learn Italiano , but I 'm only a beginniner . I enjoyed watching her dynamic perfomance on Youtube . That is , the Star Spangled Banner by Jennifer Hudson at the Democratic Party National Convension . I felt tired and lethargical . Flowers are blumming now , and I 'm in good spirits = ) I hope to have a rest in the forest this weekend , and my friends have just told me the weather will be good . I hope they are rigt . . . = ) ) ) ) Therefore my friends on Lang - 8 are increacing everyday . ' Tideji ' means tijou degital . Today is a traiditional festival in China : the Mid - autumn Festival , family members will try their best to get together and enjoy the happy and warm atmosphere , a very good and important day for every Chinese . I am living in the same way everyday , doing all of the same thinhgs , studying all different papers . Everyday I compete with my limitations . I always feel like I do n't have the abilityies to comfront society and work . A beatiful future is waiting for you ! ! He quickly hid behind the buldings . And , I checked the history of Slovenia on the internet and found out that numerous peopls were killed by false charge during and after World War . In Japan , almost all games are shown at midnight , so I have a lack of sllep . I hopefully think I cound finish by tomorrow night . He even fored us to apologize ! Cherry blossms Another friend is taking matenity leave . She is looking for an interesting job , and appling to many companies . I decided to try writting the diary in english from today . I watched a movie tonigh , actually it was not as good as I had expected . I made tuna and potherb mustard with tomato sause . I hope some foreigen friends can give me some advice on how to study English ! Thang you ! And I 'm at the Staebucks coffee near the beauty salon . These thesedays , I really want to make freindship with people from other countries . By meeting them and communicating with them , I want to learn their cultrues , languages , and unique perspectives . Shigyo - shiki is an opening celemony for the beginning of the school year or semester in Japan . It is usually held in the frist week of April . Typically , students are gethered in the school gym or the playground , then the celemony begins with a speech from their principal . A girl who spoked to me said , I might have some difficulties fulfilling this target ; too much work , not enough vocaburaly , and so on . It 's been a long time since I 've written a dialy . I 'm not good at Korean , but we could use English and Japanese in Seoul a littel . I felt that Seoul has great poplation , and that the economy is prosperous / prospering . Actually Younger brother came back home before 5 days already but he returned to his home ground the day befoer yesterday because his vacation 's over . I was so surprised and embrassed . I usually eati , t fresh fruit juce first . . . . So It is literesting . I went to a hospital , and all four doctors who saw my thrort said My favorite TV show will be on tonaight . And I have been working as a designer for acsesorry , bags , shoews , necklaces and so on in Kobe for 4 years . Oops , I 've ran from my main point . Anyway , I want to leran English , and make friends from forein country . So please send me a / the letter and correce my diary . becasue I was very tired . I 'm especially very sorry that we could n't go to Tianamen Square . I want to learn English , so I started Lamg - 8 yesterday . The Thai goverment gives money to students to study for free for fifteen years . My nephews got money to buy stationery and student uniforms . After buying anything the guardian is supposed to return the receip to the school to confirm that the money is being used for the student and not for other things . We have never had an offer from the goverment like this before . Usually parents pay for their children to study . I do n't know the amount that each grade recived but my nephew recived around 560 baht for this term . I know abroad you study for free until universitry ? That is a really good goverment who supports you . Because it can introduce something fresh to our life , like changing your shirt color for instance . In the past , I ostracized gays all along , because I thought that was nonnatural and abnormal , but now I have changed my mind . I do n't know the exact reason - - maybe because I am more mature , or something else . I believe that true love can exist between two men or two women . the Highwest fashion , which acters wear often , is popular in Korea . All things considered , no carefree future exists for those of us who live in megapolises unless we are prepared to put some effort into working together and involving government in the problem right now . I have many clothes because I like Fasion . I took too many clothes to the flea market to be sold , but custmer bought For example , neil polish , sunglasses , a watch . . . But today was n't a nonconsultation day . Today I am very happy , because I have just made my frist friend on Lang - 8 ! I 'm going to give a Farawell party tomorrow . I choiced a Dopamine keychain ! Summer is finshing , and soon automn will come . . . I dont wanna do , I have do it becouse I need a lot money if I want to travel . Every day I think about how it would be to live in london or new york ? ? ? this trip is to forget about everything that hapen at my work . . After performanced , she did an intervew and started crying . Today I feel happy bacause my flat mate went back to his country ( Yeah ! ! ) For example , He alwasys smoked in the living room even though I told him that I 'm a nonsmoker and I 'd like him to somke outside . Oh godness ! It is such a confatable place , and so beautiful ! So I 'm unluckly . We have a lot of onomatopes in Japanese . One food texuture word , crispy is used for potato chips . I 'm too busy or I 'm too lasy Sometimes I cut these boring classes then went to the library because I just wanted to read some books , which I think is much more & nbsp ; intersting than my teacher 's lectures . It had survived some falls and I accedentally sat on it once . ^ ^ ' ' I 'm so sloppy when it comes to handling my stuff . ^ ^ ' ' So our teacher devided us into many teams so we could talk to the foreign friends in a small group . Tommorow I 'm going to take my children to a soccer lesson . From todays neww . In Japan , many peaple measure radiation recently . When it comes to crimes , I think mass media plays an important role in informing citizens of what 's going on at a natonwide level . Right now I am practicing it , but it 's so hard to pronunce well . Whould you advise me on how to improve my English ability ? However , they were surprisedly . Koyasan is very famous for a type of Butism , called SHINGONSYU . I invited my foregin friends to my town . My dream is run a youth hostel in my town and I hope that many foregin people visit my home town . becuse I think she 's a nice girl and a good match for me . It includes many incorrect sentences that I am wrinting . This month the examimation are over , so right now I 'm happy . I 'm going to celebrete with my classmates , but it 's raining with a posibility of snow in the east city , near the Andes mountains . As you can see , I have a very hard time using Englsh . & nbsp ; This following diologues is from the sitcom Friends that I 'm watching . I just got the test result this Fridy . I was waiting for my result on the web site with my mom and when the word `` Pass `` appeared on the scrren I almost shouted with excitment . But I 'm trying to focuse on my study and work . My homedown is much noisier than Calary . My homedown is busier than Calary . Maybe my homedown is the noisiest in the world . My homedown has more a bigger population than Calary . My homedown is noisier than Calary . My homedown is brighter than Calary at night . My homedown has more traffic jams than Calary . My homedown has more public transport than Calary . My homedown has the best public transport in the world . My homedown is younger than Calary . My homedown has more moutains than Calary . I strogly suggest not going to the English school after the dentist . . . I was concerned about such an extremely low temperature and yet I still let them do a lot of preparation excersise . And when she wore glasses for far - sighedness , she could n't see things at a distance ! How to defind the distance between far and near ? It was a chllange if my mom wanted to watch TV and write somthing down at the same time . People always say : ' The eyes are the winodw to the soul ' . In 2007 , I went to America for 2 weaks by myself . I was surprised at the sashimi of colorful tropical fish and giant clum in their beautifl shells . By 2012 , I 'll have hinished school . I have n't gone anywhere because of increadibly hot weathre . That is why I will write this daiary in both languages ! Actually I pland a lot of activities during this holiday , but I could not do them at all ! ! But during World War II , the castel was burnt down on May 14 , 1945 . I try to keep writing in my dialy for 3 days starting from today . Hi , this is An , and it 's my first time writing in Engilsh and Spanish . It 's sxxk ( ? ) to show my poor English and Spanish in a public space , but it is very very important now . I have to studing and face it , so get on An , everything will be good , haha . . . Now I must fight with my laziness and try to write more , becouse really I ( I really ) want to become fluent in English . Although I spent my birthday in a forigne country , My Korean friends congretulated me on the Internet . I was touched and it was absoultely briliant . Maybe I do n't need a boyfriend , I hate marride . My fater and my mother do n't like each other , they affect my opinion about marriage . and after 6 pm people went around the street carrying a torch on their sholder . I hope my face does n't become swallen . I will change them to a mixed ceramic and prastic cap later . So Access is a DateBase softwere . I think each company has an exclusive datebase softwere . If there is a reason to use it , the exclusive softwere will be expensive . Looking forword to your reply . The gym is not crowded and has enough machines for many kinds of excercises . I was almost cried some times and I was moved so much altough today was my second time to see it . After the show I went to back of the theater and I could meet some cast . I could get an autografy from MARK , Beny and Mimi ! ! When I said to MARK `` I 'm your big fan ! `` he only nodded me saying nothing . . . . I could have his autografy on DVD ! ! My sister is in high scool and my brother is in middel school . Althought I was cold , I said : `` No probiem ! `` he finished wrting a letter to his friend , it was 1 a . m . We decided to watch another movie called `` Source code `` . It was enterning , but there were too many mistakes about the informatic technology . Next time we will book in advence on the internet . My favorite Podcastnamed Morning Ireland releaced a podcast so I will keep it on my iPod . I tred many mays to relax : listen classical music ; talk with friends ; a cup of hot milk . . . . . . . I usually wake up alound 6 : 00am . My friend in NZ introducemed me to these funny comedians ! I do n't have any foreign friends near here , and I do n't have enough maney to go to English school . It is designed to keep the right tempature by the roof made of warm felt and the wrapping cloth easily flips partly open . This technology which can provide electricity anywhere is very good for thir lifestyle moving through the vast steppe . I know it 's a little arrogant to contribute consective entries and beg such a favor . My comany recently expressed that they want emploee to study Engish , to be successful First , our president sends an English message to every emploee Some of my colleagues have already worked overseas in China , India , Ameria . . . Yesterday and today I 've been to Toyohashi , Aichi prefecture to attendattending anin - house conference , called Research Policy Retreet . I stepped on a cockroach accidently ! ! ! ! ! Moreover , according to a book , more and more companies tend to value thier abilities or personalities over their careers . Therefore , salaries should be paid for the results of daily work such as thier perfomance and the benefit they have brought to thier workplaces . One thing that I think really interesting is that each person has a different percepction about the tempreture by each hometown . By the way , this year 's summer is carrzy ! ! A few days ago , the highest tempreture in my room was 36 . 5 degrees ! Instantly , I doubted my themometer . I always tought this sport would be too tiring for me . But , while playing basketball I was so exitied , after all . Now , I 'll keep plaing ! Nicwe to meet you . It would be a fantustic school . . . . Not outsite , no stories to talk about with my friends . Hello , my wonderful friends . When I do n't go outsite my house , By the way , I am feeling muscler pain in two days after I got exercise . Friday is colled ' HANAKIN ' in Japanease . So residents are required to help each other and participate in comittee . There are many comittee like the Representive Committee , Bath Committee and Welfare Committee . Unforunately , some members of the Netwokr comittee graduated in the last month . But we , Japanese , use Chinese letters that have their own pronounciation and meanings when we write and read Japanese . This is my first time to write a diary online in Engish . The sunlight shining in through my window acts as my alarmm clock . However , I recieved an r E - mail from her saying , `` It was so fun to hear your broken funny English . `` I was very interested in that particular kind of memo , and so I reserch it on the Internet . Please thell me the differences I like to talk about space , biomechanics , artifact intelligence , motorcycles ( Yamaha Vmax owner ) and something fun . I believe there is a very good company somewhre in Japan . I have n't eaten any sushi for a long time because there ist n't any fresh fish in Frankfurt . I 've got two weeks laft here in the UK which is kind of what I do n't want , however part of me is also wantingto go back to Japan . They are pretty cute and quiete . I always have eaten meat ( likesteak humburger ) when I go abroad . Still do n't forget the acdamic paper ! Spain is a quite cozy country and the people there are kind and lovely . I was there for 2 weeks , met a lot of new people and made frienda with them . I was tierd , becouse I took over the job . I have to get up early tomorow moroning . I think he has deeply understands Japan and its coulture . The practice time for playing the violin has to be maintained for a successful addmition . Therefore , September is the last apportunity during which I will have time to study English . I know talking with foreigners is an important thing to do practive Eng . He refused to take reponsibility and exchange my computer saying , Despite everthing that was happening , I am sure that I am still a lucky guy who was able to When we are togother , we often have lots to talk about , and if we do n't , we just keep silent . As you know , Fukushima 's nuclear plant has been having toruble since March 11 , the day of earthquake . I wanted to have more comversation with him , but I could only trade FB id 's . I can understand writed English better than spoken . So make sure take your own precautions , such as washing hands , wearing a mask , dont talking to ppl , and staying at home all day . hahaha I recommend it anyone who is studiying second languages . I really appriciate your help . It 's opend every Satarday . Foreighners speaking in Kansai - ben as a challenging topic plase help me ! ! ! it 's urgent ! ! ( Punishment fits the cirme ) I regarted it so much . I could write essey easilly , so I 'll try to do my best ! Please correst my wrong sentence . we won an aglicultural product this year ! I have never got gifts excpt at that festival . It was sunny and muggy this mornng . It was only after a second that it started to rain heavly ! It is ratehr wise to follow what my mother says . But I still feel my English is not good enogh . We talked about our research and how to be popular wiwh girls . She said she was pregnat , but had a miscarriage . I assurd it is because there are some reasons . I ordered an iced coffee , and sat in a comfortable sofer . I 'm interested in this subect . It 's also a good experience which can arouse my interet in language and at the same time help other people . I am willing to correct those articles in Traditonal Chinese but Simplified Chinese seems to prevail . Although grammer and usages are the same , I am wondering if my corrections were well understood . ( grammar was misspelt ) Today I want to tell you , about my holydays . My holydays is so boring . Our forest is greene and it grows diferent trees and flowers . Herhaps it 's because she is my baby , not someone else 's . Untill this time , from junior higj school to now , I have had practice everyday at the club . Because , I want to speak English while on Bussines . I organize loudrock comunity website in Japan . I would be glad to organise a loudrock comunity together . A more beautifl Lang - 8 It has been a long time since the last time wrote entiry on Lang - 8 . Pls help me correct it . I 'm not familier in programming . And there were lots of custmers ! : D hehe Every custmer seem to love our shop ! : ) What 's the defference betweem `` go mad `` & `` get mad `` ? Anyway , I had taken TOEFL several times to get 550 point to enroll college . It was huge boom to grow up in the Japanese economy andbecause of that , my parents believed I would apply for major companies such as panasonic , nitendo , and so on . I do not know how the Americans really feel , but as far as can tell from newspapers and TV programs , they are tired of being at war , and of suffering in a financilal crunch and so on . As he mentioned in his innauguration speech , greatness is never a given . We do n't much go out to eat much , but sometimes it 's fun to go to restaurat that we heve never been to before . I was not ready about today 's topic which is `` hablts `` and `` fun story `` . I ca n't speak and explan what I 'm trying to say to other members in English . I alwasy wait and listen to other member 's topic . One member enrolled about a week ago said that although there is many memebers but it 's too quiet . I decied even though I have misstake with my explation and grammer . Yesterday I went to lisetn to a design speech with my classmate . But I felt satify after listening that speech . Sometimes , listening to a positive talking or happy proform may give us power to live in this complex generation . About 3 months ago , she told ( discolsed is very formal ) me that she had some feelings for the guy , so I gave her some advice to test if the guy had any feelings for her . In addtion , I do n't know why , but some Australians can speak Japanese . I still remenber that . He said it was so complecated to explain . Seems I was ready to belive everybody and everything that might happen on this day . The anymal symbols are representative of twelve specific years . We also call those twelve yeaes `` one period `` . And if you were born in a year when the anymal symbol was the rabbit , you are called a `` rabbit person `` . I am a chiken person . Dary start The first day I went to scool I was very excited because evirybody was very kind . My first friend is Iand J because I play math bord games Then I do sience but I do n't understand English so can someone cafetria . His father is a Japanese Jyudou player . To be honet , I would like to buy CDs of my favorite bands but because I 'm broke now , I waited for the rental . Ever since I listend to their music , I have been fascinated with them . Though I bring my home to my PC for work , his e - mail was transferd to my mobile phone . healty . I made up my mind to study English intensively untill I become fluent . stupit . : ( I understand what he worte , but I do n't find I am also interested in why they conquested South America . I am going to read the history of Laten America . Recentlly I finished a big exam and realized how important English is . Also , I want to be qualified for being an exchange student next year . My unforgetable winter cacation Although the cacation is over , the nice memories are still in my head . I feel so pround for the devolopment . I uplode some photos and share with my dear friends . If you want to kown more about , please write to me . The oridinal story comes from Heidis Lehr - und Wanderjahre . She granduated and has been a civil servant in another city , since then our love has been harder and harder to keep . As I guessed , she had read the SMSes saved in my cellphone and found out I was dating other girls and that I was contacting my ex - girlfriens and it had hurt her deeply . Below is more detailed information from Wikipedea I watched Oprah 's 2008 Stanford commencement address on onthat website . Fortunatelly , I got to know the lady who works at City Hall and helps Japanese who want to study at the base . She is soooo coporative and helpful . Actually it costs a lot of money to pay the tguition and fees . But I also thought it might be a great chance to stuyd in REAL AMERICA without leaving Japan . Everything hides in the deep foerst I 've been enving those who are able to model as 3D models with beautiful curves . I believe that is a nessesary skill for an industrial designer . I have n't log in to Lang - 8 for more than 3 months , because I spent more time on daning in my spare time . I 'm really gratefull to you People want thier life to be special and want to live differently than others . More and more people seem unsatisfied and think `` my life should not be like this . `` Though , they usually do n't act to protest society 's flawns and do not improve their own situaions . Team work is the most important thing in Japan and team peformance is highly esteemed . If somebody was infererior to others or imcompitent , I was blamed by the boss . I do n't write his advice here because I think everybody has a different situaton . But they spent too much time in perparing and , when they wanted to sing a song after the introduction , the music teacher asked them to stop . My doctore said Japan and South korea have the highest asthma mortality rate . The karaoke industry should introduce offcial music videos into the karaoke machine . I 've just watched Fulham vs Newcastle play a live match at Fuluham 's home studium . Then I will decide my favorite team and register as a member . Also , I do n't know as much about Enlish writing or English listening skills as other people do . Enjoy the nice summber weather ~ ~ Today I met the models the agency sent to our class , but I decided to not choso any of them . I know the fashion industry demands this extreme thiness , but I do n't think its beautiful . Mout Fuji is the highest mountain in Japan . I do n't know how to explain it ( or `` explain my feelings `` ) to my girlfrend . She said that people who only contect each other via messages and calls are silly . How to remmenber / memorize more words and ues them rightly There is a woman with her hans all over her on this sleeve . I 'm going to visit Equador next week . Also , I 'm a little nervous about A ( H1N1 ) virus , casue I have to take an airplae , which means they also use the airport which is one of the routes of infection annouced by most publc news media . Like human beings conqure the Black plague in the past . You can see beautiful views in the picturue . If there is interaction between characters , the system should consider all charactes . So beutiful and cute . I and my husband and my son have hevy hay fever . These days I 've beem thinking about dreams and visions of university students just like me . Living in this society , we face lots of problems and feel destrusted when we have no success or any kind of accomplishment . We aew too busy to remember that pure and noble reason why we are studying here and now . I sympathize with those young people who are meloancholy and depressed in this society . or I am just a slave of this cometitive society ? `` Whatever the situation is , I really want to find my true value and live authentically as myself ! Now , the Japanese goverment regulates imported rice by imposing high tariffs . I agree that the government shoud protect rice farmers from chep imported rice because Japonica rice is definitely better than imported rice . Recentry I have been feeling something strange . When I woke up and looked at the clook , I was surprised . Its script is very good and the designs of the * other * planets , alians and vehicles are wonderful . But when I want to pick it up , I find it really diffcult to balance these two languages - - - Japanese and English well . Sometimes I even ask myself whether I have the ability to aquire these two languages at the same time . It is sooo fun and I think it 's easy . And pronunciations are easy for Japanese , grammer is similar to English . For this porpose , I should study hard and work hard for travel enpenses ! ! I lost the name of the person who sent me a fraind request . If you see my diary , please send me a fraind request again ! But I do n't think the following ones are correct , though the slimilar forms ( e ) and ( f ) are natural sounding . Although I did not believe in his existanse until watching this , Superman exists in the world ! Thanks to him , I get to believe that there are a lot of things which are beyond our imagination in the world . I always think that relationships with peole are difficult . I 'm going to the liberary this afternoon . Of course , not only books are there but it 's also a confortable plase to me . Hattrikid is one of my Lang - 8 friends . About the animation : Fullmetal Alcheminist I watched a very popular animation program in Japan called `` Fullmetal Alcheminist `` with my children . It includes the human 's carma ( desire to reunion with lost mother ) , the Seven Sins and the war generated from the worship etc . Especially , I ca n't get one woefull image out of my mind : it 's the image of the chimera animal made from a innocent girl and her big pet dog . I do n't think this is specific thing becasue this is just literally talking , not some sort of speech or presentation . That 's why I sometime hesitate to talk in a class , trying not to making mistakes and be humilliated , which I think is just lazy as well . I think this is a hilarious show where a bunch of guys and girls hang out together and have a life filled with comedy and other ridiculosity things . As a man , he shoule compromise a bit . but he is so bad tempered and irrtable that I ca n't bear it . Thanhk you very much . A large portion of new games are released on PSP or Nintend DS . I remembered that I need to go to the supermarket to shop with friends . We will eat steamboat tonigt at home and will play cards and mahjong . He is a very famouse korean actor . He is good perpormer , especially to expresss setive emotion . the play is so famouse in Korea . My frieds are not interested in plays T ^ T I did n't knnow what trust is . I gurantee that nobody will find these bodies unless the landform is changed extensively by something . Finally , I estblished my objective to major in history . I will be going to canada to study for one year in augest . I do n't know why I had to see such dreams , but when I was dreaming , I had many things to doo , more importantly a deadline was threatened . I was exhausted beacuse I moved the office 's things all day long . That 's a freshing feeling for me though . I just finished taking shawer . I met such lovely friends from all over the world who I woudl n't have met if I had n't come here . I was really really greatful that I met them . . He has to find another job in this desparate moment . My wife took child - care leave , but she went back to her job in Fevruary , so we have had less time to take care of the children than before . Now I have complete some of my tasks , I wish I could wirte in my journal and proof read my Lang8 friend 's journal like before . There are meny shopping centers . Everything was very dericious . On the last day , my friends cereblated my birthday . They held a birthday pirty for me . We grank Makgeolli and ate cake ! ! Every seane is actually real ! ! Thisfilm has many ironic and humourous messagesdealing with celebrities , eco business , and homosexality . It is very direct , so people under 15 years old can not wath this movie in Japan . He can speak Deutsh fruently , andwhen he spoke English in the movie he had a Germanish accent . Oh , I 've quite forgotten to write `` every little helps `` in my firsy journal ! Nice to meet you all & yorosiku onegaisimas ! ! Anyawy , This Saturday is my school festival . I 'm a leader of the Inhwa herald , our English newspaper culb . I 've been studying English for several years , but there are really few oppotunities for me , like most Japanese people , to write in English and use English in conversation . I really need to brush up on my English , and it would be a great help if you correct my Emglish . Althoug I had a bad score in Economics , I still got a second chance in my cram school exam . When I was in Tokyo , my sons went to school and to their football clubs by theirselves . Every time I listen to my voice , I feel very embarrased by my English , my way of talking , and my voice itself . His physical condition has recoverd . First , I have to do exercie evryday . Apparently I threw it away when I was sleeping . It was uncomfotable because I had a stuffy nose . I expect CNN is very difficult , extreamly hard , smashing me . 2 . ( which is a better sentenc ? ? ) Is there any grammer mistakes in the following dialoge But I am not sure what my atitude made them angy . I explained to the people who came for the first time as an experiencer worker . When they were talking in English , their talking spead was so fast that I could hardly understand e what they were talking about . I 've not dicided yet . I do n't understand why my alram did n't work . I have no idear about it ! Hong Kong ( ese ) people speak Catonese too . This spring , Japan is very hot in comperison with last year . My wife and I really are big funs of it and my wife named our dog `` Hal `` after the super computer in this movie . That iwas why the students had complained to me about the contents and direction of my class . amazaing ! Cheristmas day , I went to watch illuminations in Roppongi and omotesando with my friends . I think Melbourne 's enviorment is very suitbal for living . cosmestic surgery If the cosmestic surgery is able to remove the complex of appearance , they will be able to regain their confidence I think cosmestic surgery is good . Maybe it 's their culture , so if you want going to Hong Knog you had better do n't mind it . In Hong Kong , my strongest impressional is the shopping malls , outlets and night places , especially the night places , so beautiful and so good , it 's the most beautiful night place I have seen . The KTX ( Korea Train Express ) ran very fast at super superhigh speed , approximately 300 km / hr . Thanks to everyone who correted my poor english / The Frist time I saw the movie was when I was a high school student . I like cooking various soye - bean milk ; sometimes I put some red dates into it , and sometimes I mix it with a little black rice , still oat , ormosia , black sesame . . . I have to say my mother is an ace food buyier . Morever , undergrade students come too ! Be careful with Ninjya , thiugh you ca n't lol ( another typographical error ) All restaurants in the huge walterfront area were reserved for us . I have two more choises which are to use the bus or to use the train , but the buses run infrequently near my house and it takes time to walk from my place to the nearest station . There are a lot of buildings which I think are Europian ( ? ) Mom is so talkaive that she is always talking to me . In Japan , we have a holiday for three days straight this weekend ! However , highway trafic will be very heavy and most highway tolls will be the maximum of 1000 yen because of the holiday ! So I will stay home this weekend . And his daughter is pazzling . . . I should wait until my proffesor explains the meaning of this novel . I have been studying English for 3 years in Japan but I have only been to hawai . Personly , l do n't like living in New Zealand . When you look up a word in this dictionary , it always gives you a clear definision of the word in a user - friendly layout . I used to use a Japanese - English one ( and addmittedly still use it from time to time ) , but now I usually use the English - English one . This is because I find that it is a more efficient and interesting way of learning a language to read the definision of each word in its original language . Beaside this , the more harder part in the English language is the pronuntation ( talk ) , the combinations of characters do not have the same sound that I can find in my native language and the same combination have a different pronunciation in others words , this is a nightmare for me . I hope lang - 8 and all their wonderfull people help me to improve my communication skills . What Im am expecting from this post is to know how I am doing with my grammar , my bocabulary , and my english expresion . This morning I went to work , my fater has a plece inside the local market so I go there and work as the casher . When I am at work there is not much to do , so I pick up my notebook and start to practice my hiragana / katakana , I hope some day be as good at that , so that I would go to Japan to sharpen my skills , my all life my dream was to work in internacional business and to be working all over the world , but now it seems so much like a dream , that much of the time I feel down unmotivated . Getting back to the main point , after I finished my work at my fathers place I took my computer and watched some anime material I did have in . Afterwards I met my friends , at a movie theater to see the movie `` monsters vs alliens `` . The movie was cool and perhaps had some random tophics in it . My boyfriend is an Amarican . In the wake of big myhem like september 11th , Japan 's security level was leveraged especially at the airport so as to take precautins to prevent violence swiftly . Sherlock and his ols friend Dr . Waston spent many hours looking in the mud on Laver Gill Moor . Waston thought it was not possible to find the answers , but Sherlock thought every mystery has an answer . What a long time agao . I did n't get back untile 9 PM last night . I want to watch more movies and dramas from foreign contrys . I know nothing about the relationship between men and women in foreign countires . But actually we were totally chiken , even though some woman passed by , We did nothing . also if you are learning Korean , let 's be a freind with each other Jessica Alba and Michelle rodrigus appeared in Machete . Becuase she was younger than me , I paid for the meal . Although we only had Fried Dumplings and some noodles , it was more expernsive than I had expected . Prease answer . What do you think about the difference between spending about a hunred thousand vnd travelling by bike and paying only 50000 vnd for a commuter ticket . Futhermore , if you travel by bus , you do n't have to wait in line to buy a parking ticket , or pay a fine because you went through a red light or were riding without a safety helmet . I used to see some terrible bike accidents so maybe travellling by bus is safer . Besides , when the weather is bad - too hot or too cold - choosing the bus for travelling is resonable . In the ( translation to ) portugues , all these sentences are right . That 's why Present Continuous and Presente Simple are so tricky for us , brazilians . I think I could not lose weight becasue I already had rice and coke as well as pizza at lunch time . In spite of the rain , I have a graet passion for Archery . . . . I have n't been ablo to see her for a few days . Also , it is still connected to a worker 's promotion or career track after enterning the company . I know the governer of Miyazaki used to be a comedian , but after studying politics at Waseda University , he was elected as a governer . I think the media 's influence was inportant for him because if he was not well known as a comedian , he would not be elected as ( a ) governer . In Japane most people are punctual and honest . Last week , I went on a picnic and ate barbecue at a restrurant It exceeded 30 degrees Celicius today . Today I found a news article which was written about the Erupean payment system . Receently , I have beenlooking for payment services abroad for my buisiness . That white paper is convinient for me . He ca n't speak in complate sentences . poor weather forcast in Shanghai The weather forcast was totally wrong . I 'd like to make a good sentance , but it is not easy . I 'm biginner of sutdying English . In various business sence , English ability has been requied recently > . < But it was too late perhaps , they did n't give me anithing . Even if my brain was not totaly in it 's place , I was still able to do a 20 Japanese character study instead of the required 30 . We will have an orvernight stay in a traditional Japanese hotel ( Ryokan ) . Nagoya Granpus climed their first J - League title yesterday . Cororado Rapids got their first title of MLS on the same day . Thank you for readnig this ! Japanese people are adent insect fans I saw this story in a Japanese jaurnal . Yangyang felt guily for not staying at home at the time when there was a fire . The wall is a wall around myself , the river is a river that is flowing in myself , and the smoke is smoke from burning myseif . His pieces were ( are ? ) displayed at Yokohama triennale . I study Italian too . I feel that this language is fresh because I have studied Italian forthree manths . Those sandwiches are shawirma made with chicken in a special way . The last one is baqlawa . As it turned out , my anxiety was n't justufied , and the music intrigued me after a few minutes of listening . I had n't noticed any sharp changes of dynamics like an Opeth and dynamics changes so smooth that heavy fragments are separeted by only a little ( small ? ) changes of tone of instruments and a particular emphasis in the drummer 's rhytm . In my optiton , the best track on this album is ' Not Unlike the Waves ' . And you want to return to this world agait and again . . . I 've just moved here at the end of Auguest . - > August I 'm studing my spanish textbook . . Last semester , my Spanish professor said the midterm would be very difficult and the final exam , which is weighted strongly in my fnal semester grade , would be very easy . Today is sooo hot , even at night , it still feels hot in my room . `` Dradon Ball Z `` Breathing Exercize I attended a breathing exercize class called `` KIKO `` . It is like Yoga but a bit diffrent . She has been doing this for 9 years at another trainin hall in Osaka , which is two hours by train . so it ' sa little starange . Frist day The beach was crowded with visiter . first , they are going to lose thier confidence . Thanksto evryone who edits this . My favorite American TV show is Frends . We ejoyed swimming and doing other activities . E - mai I am doing my best ( watashi ha ganbare ) , and I am really enjoing it , no matter if thing not always go as smooth as I can wish . And we can manage to solute the problem of low birthdate . I have worked in this company for two years after graduation , This company is a state company , no exployees ever worries of being out of work . I do n't how to work in this company , I am only in the beginning of my work time , maybe I should change my perspective on working , Unlike other older exployees I should always remmber that I am young , I need deal with Then , I jumped becouse I felt swetty . This light has the performance of low energy and high blightness . If there is the controller to change the blightness , even better . I finished reading `` How Sratbucks saved my life `` today . He started cleaning the store toilet and bagan to learn valuable things through his job and finally found his true happiness in his new job and unfamillier environment . I like both of ficition and non - fiction ! Correct feedback helps students to implove . how diffrent are feedback and assessment in English ? the temprature is getting lower and lower . Past experence ( Please someone help me . I am going to write this topic in this Friday 's exam . ) I walked through the entrace of the alley to wait for a motorbike taxi but a minibus came instead and I decided to get in . Seattle Mariners were / went againsttheLos Losangels Angels . But after I understand the first sentence , thier second one has already been said . Afterward my lunch , I went to an rental video shop and rented 5 DVD . Whent the concert started , I did n't know most of the songs and I wondered why there were 5 people on - stage . I work for a pharmaceutical campany , so sometimes I have to use English for my business . Anyway for the first time I visited church , I felt that there was something there which I had been eagering to have , eager to know . And I would like to improve my English writing ability to pass the intermedia level of General English Proficiency Test . We were completly taken aback , but we decided to search for the wallet on the same pavement on which we had ran . The comapny produces mostly cosmetic products . I may go on business trips to the overseas branch someday , by some chance , I may be transfed there for a while . But everyday this bottle tenaciously appears somewhere in the race , and then disappears the next morment . I paied 4935 for it The office was quiest because of the holiday so we ate out at lunch , My new friend messesge me `` happy languege `` . I am very tired noww . Though Japanese are known to like fish extremely much , Sakanakun particullary has an extensive knowledge about fish . Japanese chiks are easy targets I see so many Japanese chiks in the city . Getting married with anAustralian guy is aneasy way to get PR in Australia , so some Japanese chiks try to win over Australian guys . Japanese chiks are popular in Australia , but it does n't mean Japanese chiks are beautiful . Those Japanese chiks probablythink `` if we can get Australian boyfriends , we could easily study English and get PR . It 's the easiest way to master English ! `` It 's rediculous , There is no `` shortest way `` to master another language . They ca n't understand that . Most Japanese chiks get dumped by aus guys . Of course those bithes thenlook for theirnext partners and then get dumped again later lol I am really disappointed with ( by ) Japanese people who live in sydney , especially some of the chiks . It is very populer in Jaapan . I already heard the news from his mather 's greeting card . He wore the costume of an anime characer . It was broradcasting on Sunday in the late afternoon . But I was out just then , so I copyed it . Seeing people falling down from the skyscrapers was horrable . BTW I have a grammetical question , which one is correct ? based on what grammetical rule ? Alcohol and Drung Education Program To continue someting will bring you great power . For everything , to contine is most important thing . For example , walking for helth , learning foreign language , etc . . ! But I do n't think I can get it , because it 's a littile difficult for me . This day me and my fammilly was on picnic and after that , when we have been going home by car , my dad gave me 1 lesson of driving car . Even though I 'm Korean , I am staying in INIDIA right now for studying abroad . I know I have problems with grammar , especially with phrazal verbs and idioms . I think I will rewrite it here and find someone whou can explain it to me . Have you seen Japanese mobile phones in Japane ? Eva 's new movie will be released this summer , and the charactors use this phone in the movie . My breakfast for this morning was protain powder mixed with water . I graduated from colleage and majoed in radiology . Currently , I am workin in the cardiac and vascular center at Samsung Medical Center . I am an outgoing person who has a positive atitude and a sense of humor . I want to make many international friends and have good realation with them . I 'll gradurate Univercity next year . And , I have been singing at an acappella group during my univercity life . In fact , seniorities born after World War II , in the generation of babyboomers , will rapidly enter their aging years in the near future . Meanwhile , the birthrate in Japan is declining . Anyhow , this inclination will possibly put a heavy burdene on the next generation 's shoulder . I think the elderly people will be expected to work into their later years to reduce the burdene on the society . I 'm always thinking of them every day . Even though we have never seen each other in real life , we always have a wonderful time together on Skype , MSN and on our webcame since I came to Lang - 8 and met them . My day is really wonderful . Actually , when I come home I need to trun on my computer before I take a bath because I would like to see them and read their comments on my page . my wonderful frinds . `` Because witting the article is difficule , I do n't know which way is right . I heard that he chose to kill himnself last Friday . Now I have only half a containner , about 10 liters . Recentry I 've been interested in martial arts . I hope someday to challange . Goning to the sea I want to speak English so I deceided to write at Lang - 8 in English from now on . Lasr weekend I had a drink with one of my old friends . Sencond , I have to wash our dishes after having dinner . I went to the Toba aqualium and Ise temple . I feel like I can be a good mom . ( No , I can not say this only because of tha lunch box haha ) But many people adviced him not to do it . The news was brordcasted all over the world and he delivered his speech in English . I gogled , rechecked on the web and found it on Youtube . Lots of novelists like me tend to choose the oppsite decision . I wish the war disappered and a peacefull world will arrive before long . Alan gives a long closing which is passionate and - - - like shirley said - - - always makes people find the darker side of themselve . I 've seen a Japanese translater using this show for continued learning of English . Keeping a diary is a good babit . becas my friend has come back from Japan . I have not eatten rice yet . I am bit hangry . I did not plan a costom for the party . In conclution , English is marvelous ! Today , I had a New Yea ' rs party with my collleagu in my company . But , I had verry happy time at the New Year 's party . Alcohol makes peaple happy . we ate luch there . I was disapointed about that . It was a geart time . But , I am double majoring in mecanical ( I think it should be English literature or English educatinal , right ? but , at my uni it is just Enlgish . . To coordinate the work of TA evaluation and TA certificate : TA Evaluation Forms start to condut during the 13th of Dec . After arriving at the station , we went to the hotel we had a reservation with frist , and checked in , then we went to another hotel to have lunch , of course my wife had found this . So I canceld one dolce . After the meal , we went on a strall around San Marco , which is the symbol of Venice , I 'll talk about it next time . Look at this crip , please : D In China , evety student in a university has to take the test . But the firts book is a real autobiography of Mineko Iwasaki and the second one is just fiction . Then we gradually realized that the shake was weired . Our manager murmured `` It 's weired . . . . However , when it comes to our office , some windows and doors were destroid by the quake . Tokyo Electric Company decided to cut the power tomorrow so that the newclear plants in Fukushima will be able to recover . . . . My hoby is listening to music . I 'm a first year Univercity student . At first , we did n't even know how to start a conversation because we 've never had a silmilar experience before . Yesterday 's Otumai was gizzard , fried chiken , okonomiyaki , and something else . But , I do not have an interessing theme . I thounght I could translate my favorite Japanese music ! Here in Miyagi , we had few utilities - no water or gus . In particular , there were wide desks for directors with tranparent glass dividers . I am not goint to criticise my company 's facilities but just want to compare them . I hope you take advantage ; I hope you see things that surprise you , I hope you feel things that you have never felt , I hpe you meet people with different opinions , I hope you are proud of your life ; if you are n't , I hope you have the strength and you can begin it again . `` The Curious Case of Benjamin Buton I was shoked by what she said . Today is mother 's day , so I went to a deparetment store with my wife to buy a present for my mother . because suffed animal suits are a little bit childish . Today I 'll writte about my family . Today I had a class about edcation . We do not have to paln . I have 4 family members : my father , mother and littel brother . My father is motherate , he is not so agreeable . My littel brother is active , he likes playing soccer . in the afternoon , my anut asked us to visit her villa . So my company desided tomorrow will be a holiday . Tommorow is opening day at Sun Peaks Resort for winter lift operetions ! Of course I 'll go snowboarding tommorow . Today was a dayoff off . I enjoied this summer ! The first day , I went there at midnaght . But , I akways think that it would be troublesome for them . But when I see this festival I foget my boredom . My daughter likes to put syrop on vanilla ice cream . Day by day , it becomes well - droped . But still to read writing by non - native speakers , studing Japanese , helps me to understand Japanese grammar ( more ) clearly and gives me the joy of discovering how Japanese is learned / acquired / thought of by another culture . Anyway , we will see . I 'm only sure of one thing , that I will keep practicing my English with or without Microsot : ) I met another Japanese recruting company 's staff to arrange job interviews in Bugis ( a name of a place ) . He told me he would want to know my English skills , so we had a conversation in English for around 5 minites . I could arrange interveiws for Japanese and foreign companies . First , the upside to the urbanizaion is that it makes our lives convenient . I was so excieted and expecting a good ending but . . . This Saturdey I took part in an American contest FLEX consisting of three rounds . Now I have no idea what to write ) ) ) Next time , I think , I 'll write smth more valuable . Blue tinctured cartain is popular . It 's similar to Japanese Karate , but I ca n't discern their difference because I even do n't know about Katare that much . , for example , kindergarden ( My daughter 's starting kindergarden in a year and a half ) , favorite foods ( Our children are too picky about what they eat ) , etc . . . To couqure the British accent , I have started to watch British dramas I teach physics , Ana teaches Japanese , Ega teaches Indonese , and Yanti teaches music . Learn something from the falut instead of blaming yourself . I have to write an eesay in about 200 words . Some are popullar landmarks and have many people visit every day . We will learn by chatting about different topics and news headlines ( stories ) . It 's not a vedio chat but only typing . because My computer 's output broke down and I can only hear other people 's voices and you wo n't be able to hear mine . I think it 's unfortunate , so we will learn by typing . Native English speakers who just want to know the the different thoughts between Eastern and Western cultures by disggusting international issues and everyday news . I feel we should treasure Japanes culturs . I have studied English hard , but I thought that it was regrettably neangless if I could n't use it . In Japan , for example , when the total amount is 900 yen , and I receive 1000 yen , I will say that I return to you 100 yen or somothing of the sort . But , I 'm feeling that to increase my English skills , especialy listening is difficult for me . I forrowed her to see a specific house for rent . I like leanring Japaness and English , reading and traveling in my free time . Today I swimmed with Manatees in Crystal river , it was second time I 've seen them . Manatees are considered as an origine of mermaid . She told me to searcy for `` piano `` and song names on Youtube , and that I could find a lot of clips to teach me how to do it . This car is n't good for parentsI . I do n't know much about cars , so I do n't know whether this car is expensive or not . To tell you the truth , I was totally intererted in the snowboarding events in this year 's Olympics . but recentley I did n't study that much . A big earhquake occurred yesterday . When I asked my friend `` Who is Jeles `` , she loughed at me . It really diferent me because I never to make up . . I should be going to wash my dresses for tomorow Today , I had a practice with my vioiln classmates . ( How can I say this ? ? ) We played ' Edelweiss ' and some other songs . becuse I think it maybe better to study English there , Originay it was Chinese food . And then , recently a new tipe of Ramen appears . Tsukemen is different from ramen , the soupe and noodles are served separately . However , learning about this is very reasonable ( understandable ) if you understand the simillarity between the Vietnam War and the Korean War . They knew all the military secrets of South Viet . What this is telling me is that there must be a lof of spies in South Korea as well . I was an abacus teacher at cram shcool at that time , so I decided to email her . Finally , we have exchanged hobbies successfully . My sister likes language exchanges and studying more than I do . I like hobby exchanges or taking part in diffetent kinds of activities . Why are double teeth considerd charming in Japan ? I prefer an ( in person ) intervew over a written exam , because grammatical mistakes in the interview are gone in a moment , but my written exam paper with many mistakes will exsists until we are all familiar with each other . Thirdly , they recommend that I should use `` I `` insted of `` we `` . I would like to say `` we acomplished the project `` or `` I acomplished the project as a member of a working team `` . I know that there are many cultural diffrences between Europe and Japan . And the cultural diffrences have influenced my own way of thinking . Could you please give me your suggestions franckly , and let me know if the suggestions on the web site are true or not ? If I had a girlfriend , I would travel to a foreign country tihs year . . . Everything is so starange . I thought the river is very polluted , however , frogs still can exeists under those conditions . I graped the frog and placed it in a box . This is my first time to write a Lnng - 8 diary . I vistied Nijojo Castle as part of a Kyoto bus tour . Inseide , the castle is so dim that we could barely see the wall and ceiling pictures . If we had had sunny weather , we could have ejoyed walking around much more . Are these sentenses correct ? Please teach me , are these sentenses correct ? Tomorrow is Lovor thanksgiving Day in Japan ^ ^ I think it is very wastful to live all my life here . It is a greatful opportunity to work in a country which speaks a different language . Language is wounderful way to have contact with foreign people . I cound n't get up However , I can not proctice pronunciation on a train . Hi , I 'm a new exchage student of Aalto Univ . in Helsinki . If you find a grammatical falut , just pinch it out please . I have n't met my friend recentry , so I was happy to see her . This fucture is kind of horrorific . There seems to be no moral in the story , but you could find what the promblems in Japan are . Hello eveyone ! ! I worked overtim last weekend I was very satisfacted . Mario , Pokemon and Saler Moon : > The shipping method was DHL premire shipping mail . At the benning of our trip , I had a very nice time with them but on the last day of our trip , we got into a rollover accident . Nobody was n't hurt , but I worried a lot because that car was lented and we were driving it . The moment I noticed like this , I decided to find a differnt sport . I recently read a book about traslate and language . At the beggining we were going to go only to New York and stay there for a month , but my girlfriend 's father lives in Miami . We visited Maimi Beach , with its wonderful white sand and cristalline water , _ and realished wonderful food , because my girlfriend 's father is a great cook . To sum up , I have had a beatiful experience with excellent company and visiting excellent places . I am suprised , so I decide to go for a swim too . But the weather was rainning , I give up . It is quite difficulte . Though it has some words written like Chinese words but they have different meanings and pronounciation . I graduated from junier high school in june . This decision will infuence my future forever , so I must be very careful . One joke fom my friend I guess my push ups and situps was bad , and I was very suprise . I listened her vocie and I missed her . `` I 'm afrid I could not afford this in Japan ! ! ! Now I am an undergradute in I logged into my acount on Lang - 8 . In the near future I want to visit many counrites . old korea people think that the son is important . Since I could n't understand anything , I do n't know waht should I do during the class . She knows that I want to improve my Japanese and my English , so she introude me to this webside . basketball funs . Someday I want to taravel around the world . wroten by Ted Chiang . I 'm interested in the issues about time tralve mentioned in this story . This site is so amazing that I continu to write diary entries . I 'm wondering if I should keep studying conversiation more , or change subjects . I have 4 classes , and all subjects are conversiation . Other students usually covere subjects . I study English and Chinese at the univercity in Japan . ayakumaru or machigaeru - to be mistaken agemaru - to gather It is possible to arange one more ticket for `` trance energy `` for one of the girls in my house . I wish that she would come with me becuse we will be doing something together . I 'm so exsiting . Hello friends , this vedio . This is the frist time I have tried to upload anything , so it 's a bad vedio but just a test . I stayed at home with my nephew and one of my nephew 's use my telephone to record the vedio . I saw her for the firtst time in six years . sonebody just corrected my diary , but I do n't know how to say thank you . Algumas vezes eu jugo Dance Dance Revolution . There are 50 poems with pictures companying them . I wil try hard . It 's 3 US $ for 2 different movies but the equipment is not as goos as that at the first - run theaters . Hape I will get good news ! I 'm Japanse . However , my English vocaburary is very limited . Readint is the best way for me to improve my vocabulary . I found a potential land parcel in an advertisement , and visted a real estate company . It is a very beautiful place having a merveous landscape . At that time , we went from charch to the host family ` s house . We were halfway from charch to their house I was rearly surprised . It is the first merverous sky I have seen like that . I will contact student of various contries . I think taht it is important for me to concern world education . Since I want to be an exchange student in Swiden , I must improve my spkoen English . As a stomach doctor , my little uncle who is also my grandma 's son , gave her a series of madicines , and hoped she could survive another five years or more . I found my favorit song again , but the video features a defferent player . . He has really nifty fingers when playing the gutar . Tha mi ag ionnsaich feallsanachd . I am a Urdu speakres , but I want to know how I can speak Farsi . Some roads do n't have a cycleload / bike lane or a sidewalk . I need another sence of driving in Japan . This afternoon , I used a subway to go to the cener of my city . I wonder if public manners for young girils is chainging I live in a dorm and I have four roommea . It takes about 20 minnutues by car . Therfore , I have to ask someone who has a car to take us to the grocery shop if we need some fresh food , like vegitables , fruits , or meat . Also , we ate a many kinds of food , for example Yakisoba , Tamasen , banana which coverd with chocolate . . etc . We enjyoed a school festival . And we watched Michael jacson 's movie `` This is it `` . Actually , I did n't know details about Mickel jackson until he died . Becouse I mainly liked rock music . `` Mickael is great . `` Mathematics , `` `` Physical Excersices , `` `` Music `` or `` Geography ? `` ( They all ) These are only the titles of subjects , but when you do n't know at least one of them , I think it may cause you a good deal of frastlation in a Japanese conversations because you ca n't understand / make yourself understood immediately . There ara a lot of international student , so I want to be friends with them . When I took the train , I saw a forigners boy . Because he and I have matual friends who came from Europe . Accoording to my memory , the bears moved widely but repeatedly visited the same areas . I usally spend my free time playing games , watching tv sho , go to the movies , and when I was in Loas , I met 2 foreigners and we became good friends . They knew some Japanese Many kinds of people had different kinds of roles in the Railload , including preachers , politicians , farmers and storekeepers . And just 30 minuits . well , I do n't get tooo much , but it 's stil good deal : D If it is possible , I will write my diary entry using at least one new unkown word in every sentence . The usual rules of time and spase do n't function in this House . There 's nothing disgasting or compassionate in the novel . Usualy I do n't reread books , because I 'm always in a hurry to read something new . They were very derisious ! ! For xeample . . . . . . This grammer is difficult . It is straight and has a wide sidewalk , I saw some people who were either walking , ranning or walking with their dogs . Birds were singing and the frowers bloomed with the morning dew . I 've been reading The Wondeful wizeard of Oz . does that mean that Dorythy finally caught Toto ? Shoking News We also joined in something similar ( Some events were held to encorage the audience in the middle of the show ) . because I had stey up late yesterday . and I had got myself for net surfine . ^ ^ Since then , I sometimes listen to my favorite wastern music from my ipot when I go to school . Thanks to this mathod , my listening ablity became greatly improved . Now , I 'm still doing it and I wanted to improve my writing ablity through this site , so I 'm writing this diary . After I talked her , I realized she is billiant , talented , I enjoyed their beaches , and I missed a lot with their lenguage . I was speaking half in Spanihs , half in Portugese , so I was n't understood by anybody . Now I 'm back , and have to accomodate my lenguage again . But , It did n't really occure to me to go abroad . It explesses the mind of the speakers . Ocassionally , I am unsure how to say it ( correctly ? ) , It was cilly today and I 'm sleepy now like I was yestarday . She said to me `` Please give me information about Singapoer if you can get a job there , because I dont want to go back to Japan `` . if you are in Singapoer , give me information about that `` So , I politely and immediately answered her `` I do n't have any intentions to give you any useful information about Singapore , go to hell you fat bitch . I hate people who laugh at others who are trying to achive something difficult `` . Could you explein it to me , please ? It was delisious ! Fall is comming ~ When you started there was still comunism , even if it was the beginning of the Perestroyka era . But I 'm noto that good at writing . It was a procession when I went to my favoriate ramen store . This store is small and many people wating for me to finish my ramen . Next , it is a very low price and we can take trains all day exept express trains . I use many of google 's aplications and services . But , he & I will both make ture dreams come true . Althought it 's always funny to play with 'em it 's often very tiring and today we played at a playground near my flat all day long even though it was freezing cold ! The legal department is located in Germany , the headquarters in Swizerland . Last night , I was looking at the TV program - the hundred munite talk about the MINERBA 's detention sensation . Now , the major news is about Mineraba in South Korea . Although my Enlish course has finished a long time ago , I did n't want to stop learning . My friends and teachers from Lang - 8 , would you please give me some explaination ? She 's on holidey in France . 1 ) What 's he studing ? I also like Eva , but I watched the whole story 34 years ago and now I 've fogotten the details . I had a great time with my family duaring the year - end and New Year holidays . We had a delicious japanese traditional cuisine ( osechi - ryouri ) and went to shrine and tenple . My conpany started today . The pasta 's sause is ratatouille . But I ca n't see my improvements . I was dreaming I could speak English fluntly , but it 's still a dream which I ca n't touch . I live in Northshore . Northshore is a very quiet palce , especially at night . I guess in some coutry it is morning or noon now . `` Torchwood `` is a very unique sci - fi drama and contains very adulty things such as swearing , indiscriminate snogging and shagging , and viorence . and I quickly dicided to fly over to the U . People who had lost all their money became alkoholics or started thinking about suicide . I have to practice alots X ) Yesturday , I made a idiom thing that was when I went out , and I forgot that I was More and more Chinese like to travel around the country or go aboad . Yes , I 'm defnitly happy tonight , I 'm going to play tonight ( soccer of course ) , I 'm sure you know that in Europe , soccer is the most popular sport All European people have a passion for soocer , but none like Italian people . For some it is not simply a sport , but a religion , in fact every day and especially every Monday you can find a lot people , in offices , in coffe bars , on buses , everywhere you can find someone talking about their own team 's match . A beatiful actress passed away This is a nenowened line that she said in an alcoholic beverage commercial on TV . I 'm going to see the movie ' Social netowork ' tonight at 10 o ' clock . My English teacear said the same thing as me . After the party ended , I went to my cousin 's attlier to meet my sister . I am lerning the English language ! ! ! ! My favorite painring is ' Fat Monarisa ' . I painted it by copying Fernando Botero 's style . I went to vitsit my uncle . He is sick and he ca n't move his body because last year he fell at his house . he is really nice . sometimes when I have a proble I really like to ask him , because he can help me solve the problem . I looked at youtube for a long time about the animail and fish and I felt happy to watch it . thak you very much . Start Writing dialy in English It is very nice wheather , so today is a perfect day for me to just be lazy . It is difficult to write a long sentense in English . elementary school , middle school , high shcool . . My destination would be Afrika , needless to say . Now , the mobiel - site is important for E - commerce in Japan . Describe a person who has a good leadship . This time the big earthquake had hit mainly the northeastern district and Knato district . Leraning other language is difficult for me . So I studies English for three or four hours a day since I started lerning English . I decided to start keeping this diary in order to improve my English and probably to find new foreing friends . In my institute I study two foreing languages : English and Chinese . Will be waiting for your comments , corrections and enything else Class begins at 8 pm with ordinary conversation for a hour , then Bible study for 30 mins . but he had a chance to live another life and he chose to marrige . after I saw this movie , I graully took more care for my family . I like to watch American TV , and my favorite is desperate housewifves . I have a philipino English teacher named Nephelie . Even though I ask about English everyday , she just smil and answers my questions . I 'm sicerly thankful for her . I 've been having too much suger recently . Today , my friend and I will make a newspaper with this article in our English class , so I 'm very looking foward to doing it ! ! Yesterday , our univeristy held a graduation ceremony . unfortunatelly it rained , though . They were beutiful . Instead of competing against each other , they can achieve goals together which will shapen their skills and bring forth beneficial effects on their learning . Generally , it appears that online learning is a more advanced and fuitful tool for studying . All of his or her coworkers are busy all day long but they do n't konw what they are busy for . We always spend a lot of time confirming every detail and spending more enery than others to ccommunicate with other coworkers because he always gives us unclear tasks and seldom gives us enough support . There are four Saudi Arabian , three Korian , one Mexican and three Japanese in their class . I 'm learnnig English by watching House M . For some reason , I could n't sleep well last night . So this morning I was ver , ver sleepy . Tonigh , I want to sleep better . We talked adout each other . I 've never seen an Amenrican pop - corn maker cook , so it looked so interesting to me . I wondered if I could understand what they are talking and laughing totaly , it would be more fun . I 'm grateful if you make my English crrect . Lang - 8 is one of my challange to change my daily life . And just to make you smile I 'd like to put some funny children 's pictires here . Thank Godness . . The internet is very usefull , right ? ! Of course I had known about him , but the show told me that he was definetely one of the greatest baseball players ever . Istanbul splited by Bospurs I joined fido which is a canada cell phone company . It is very unconvinient and uneasy . Recentry , I neglected to study . I am listening to some piano pieces George Winston played , especialy the songs in his album `` Winter into Spring . `` Tset week It also mede me feel good . My newl computer We tald about cases of each country . I 'm warried and quarreled a little , because of sensitive problem . However I wiil go there someday ! I ues a pen when I write a diary . I do n't know what I want to be in th future . I added bacon and garic to them . This time , the drivers wer very cool ! I studied how to anwser CET - 6 papers , and found that English is more delicate than I ever knew ~ ^ _ ^ ~ I needed a break , so I worte a very short entry and wrote a Chinese prose poem ~ Because I fell asleep at 3 : 00 AM since three days ago ( but it was n't wise dicision ) . If someone misses a peroid of study , There is no way to wriggle out ! Today , I bouglit some dolls . However , very few Japanese people have such a long - term experience in the Staters . The reason why she likes them is that the first Japanese NBA player ' Yuta Tabuse ' was on the team and she is also a fan of Amar ' e Stoudmire . Who was in a good mood ? Who was positive , and who beuteful ? Will Suntory defeat Coka Cola or Nestle if this goes on ? Allow Me To Remaind You Yesterday , I tried making a silver juwel / jewelry from a silver clay . At the end of extra time , Japan finally scored a goal with a beutiful shoot and won the game . I 'm a big fan of soccer and I belonged to a succoer club when I was a student from elementary school to high school . Japan has now become the chanmpion in Asia . In Japan we usuary get into a bath after filling it halfway with warm water . Recentry I like going to the spa near my house . When I took one of my frigner friedn to spa , she blushed because people saw her naked . There were many foeighers and Japanese people there , Anyway I got 2 friends , one sweddish and one Japanese . After I came to Singapore , I have been lonly becase there are no friends in Singapore . Praying everyday was getting hader but I realized the heart of the Lord . I also live in Nagoya , therfore I ` m looking forward to seeing ( watching ) figure skating . Nowadays , since Kaiten - Zushi are spreaded all over Japan , we can eat Nigiri - Zushi at a rasonable price . Today we will have a birthday party for my firiend . It was in a Traffice jam , a terrible traffice jam . Our opponents were storong . I am the younster Finnaly the rainy season has begun in my city , after the long heat wave ! It 's so fresh on the street ) I 'm happy ! He was talktive and he talked to me a lot . I have a cat , a dog and two gebrils . They alwyes help me . thx for reading my stupid jornal , I 'm get better right now , thx for the medicine too ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ I do n't know how I can find freinds , or where I should write my entries to get some corrections . It 's increadably hot today ! She texed me yesterday that there is a test today and aked me the range , but I replied to her that I did n't know about any test . I tried to buy some alchool at CVS the other day , but they did n't accept my passport as an ID , because they only do that for Americans or Canadians . I think conservative clothes are always good if you are trying to give a good first impresson . so please hlep me . Do you have any sugestion so that I can make my dream come true ! ! ? ? I thoght the girl in the wedding was the most beautiful in her life . I hope that she and her husbund will be happy . Actially , my first aim was to support my friend Kostia when he tried to talk with Arina . But Karina , the Arina 's friend , was even cuter and more beautifull me ! That evening Kostia did n't succeed with his beloved Arina , unfortunatelly he was too shy and confused . santan and her hair is very messy . Why has no one corrected my previous jornal ? Usally , I do n't know what to write . . . This trainin program is a little hard on me physically . He sometimes DJs for just one houre . It 's only 29800 yen includ tax . I happend to meet my friend in the center of a city . Today , I happend to meet one of my friends who was one of my friends when I was in high school . Throughout your life , have n't you ever thought about why you have been able to meet the same people among your friends or aqueintances over and over again in different places such as in a big city , while you have not been able to meet other friends or aquaintances of yours at all ? Based on their reports , the pool ( algae plant ) which has 20000 ha and 1 meter depth could supply Japanese anual consumption of oil . I come from Taipai , and I 'm not student . My habits are playing basketball , using the computer ( facebookXD ) , reading some economial books and comic books , and see every kind of movies . He is docter who lives in the U . In two hours they did , but they were not unsatisfily ! I tried to make a short inpromptu speech with thanks for my foreign friends here on Lang - 8 . Maybe I 'm just feeling lonly . I , personally , felt that AVATAR 's story was okay , but the visuals and 3D tecnology make it worth seeing . I reccoment ( that ) you go see it . I will try to introduce to you the story of AVATAR briefly tommorow . Oficial Avatar Trailer female : I wanted to have my hair cut by a female whrn I went to have my hair cut . principal : The principle reson why Japanese people came to the current continent is because they were cheseing Monmos . After a long absense , I can wash my clothes . The big earthquake and tunami in winter destroyed many houses , buildings and cars etc . Unfortunately , the Hukushima nuclear plant was partially destroyed , too . I 'm happy gril , because there aregood people around me . Today , I was a cuple of minutes late to school because I got up later than usual . I should have reviewed the vocaburary before the quiz . I suffer from a lamguage barrier . I hope that next time I can speak english fluebtly . Since my ability of Emglish is improving , I do n't dislike it like as much anymore . What can I do to resovle this daily problem ? ( I 've ) Started to write a dialy in English . A few days ago , my friend and I went shopping and found that some foreigners were having coffee in Starbudks Coffee . It was brown ( in color ) . In this entry , I will tell you about my power point skil . This is a very famouse movie , so I think everybody already knows the story so I do n't need to explain it . I hardly ever listen to classcal music . We can go anywere without a car . Or they might stay at a cheaper capsule hotes . Can I say I cleand my room inside out ? I provided them with some technical support to help them pass an aduit ( like ISO9001 aduit ) . I was at the Shanghai railway station on Tuesday morning . Nanjing is not far . I spent two and half a hours on the train , had lanuch in Nanjing , and started my business in afternoon . After that , I go to bed at around 10 : 00 pm , thinking of tommorrow 's plan . If you selece me , you 'll never regret it . Now , I 'm living and studing in Germany . There are four subjects in this semaster . It is crunchy , yammy ! yammy ! I thought it 's a fine day to go cycling early in the moning . GDP is the abbreviation of Gross Domestis Product . That 's the best thing these thesedays . lol I wonder if I should play truant for the Bookkeeping exam . . . . no no ! no way ! ! I cant ! I have to get a license for bokkeeping . The factory is in the suburbs and far from the train staion . Firstly , I found that Tube in London is not so crawded even in the rush hours . Subways in Tokyo are very very crawded in rush hours . There are people distributing the newpaper near the station and we can get it . Unfortunately , I do n't have muy own a lot of colonial places to visit and many foreigns . My company 's main discription is listed below . 2 ) My company carries out transport of computers and accessary . It is somewhat ironic ; large amoung of money sleep in bank accounts but are pulled out again by criminals . She told me that she received a call from my husband , but it was quite bizzare . [ spelling ] Acutually , I 'm a Japanese high school student , so I study English everyday . At the moment , I was excited because it would be very usefle for me . I definately want to use this site , and will keep writing . I look foward to attending an English class every Thursday . One lady just returnd from her trip to Spain ! I hope that soon I can read English noval directly and speak English fluntly . Another earthquake just occured the day before yeasterday . Today , as the first haf year ends , I presented the report to the members . Then , I was released from this job finaly ! I live in Novosibirsk , if u know this is ituated in Russia . I 'm interested in it , because my english is not so well , as I need = ' ( I think , this language is very omportant in my future , for my education and especially for my career . I expect that will be very effctive for our freshmen . My hometown is very rural , so there are a lot of rice feeld . I personally think words have power , so I 'm carefull of what to say . But I realized that I 'm too carefull of what to say . My friend said `` Christo got angry with you , and you have to apology to him `` I 've been working hard latery in a guesthouse , on the night shift . However , I 've become relaxed and I can smile natulaly , Remembering this makes me feel like scrmnming , especially at night or when I feel depressed lol . I ohten feel that women 's job is more better than men . If women and men work together , we can build a bettter company , society and world . When I was 15 years old , I staied only a week by a home - stay . I could n't go to fomous plase . It 's interesting why I disided to go the UK though , since I dislike it here . I enjoy this life and sometimes I remenber what happened ten years ago . I realise , that there are maaany ways in which each person could increase his or her level of any language , but as I see it , this one is almost the best . It was a very secret catacumbas , where there are still . Please check my dialy and cheer me up ! ! I was informed that it was the last day to work at one of my jobs yesteday while I was there . I will try to keep this daiary , using a lot of words in the future . But , English is really dificult for me . . . It was heavy , even without french fries the double - decker humburger was enough to fill my stomach ' til the evening . Perhaps people find that it 's more healthy to eat natrue food and keep a healty lifestyle than eating processed health food and using health - related products nowadays so that they are not going to buy any health - related products . Although people in Plainsville have set off a boom in exercise and it factually promoted the bussiness in sports , it 's possible that people there are interested in pusue a good figure more than fitness . And the ' fitness for life ' program , which just mentioned the benefits of regular ecercise at an early age , may also lead to the improvement of bussiness in sports . First of all , if the costs of opening and operating a new store in Plainsville are very high , the ncomes might not exceed the expenditures . While considering the possibility that the people in Plainsville are loyal to local brands , new store would not be welcomed and accpected by the local people for that reason . I appreciate your answerings very much . I have only watched just five stories , but I 'm looking forward to waching the next story . I 'll clean my house and do the laudry , then I 'm going to watch them . It is decided by whther one 's mother tongue is Japanese or not . It took two days for me to finish `` Anne of Green Gables `` , a marvelous book imbued with natural beauty and gentelly expressed love for life . So I like to communicate with people ; - ) I 'm a pscifist , open minded , friendly and unique . I 'm a person who loves nature and helth . But I promise to be more carefull = ) I still remember that in the first English class she responsed to our doubtful eyes that she always dressed casually and looks like a student . I took a lot of time to write my adiary . The sun was rising up gehind the Angkor Wat . The image of the Angkor Wat was refrected on the surfaces of the ponds . I 'm a Japanese studyinf English in Japan . I am a person who has no religion ( I am not a Buddhistic or Christan ) so when bad things happen I do n't blame anyone . These three words are all uncountable nouns : fish , damage , and advie . My daugher is two year 's old . This is the best way to learn a foreigne language . In Japan , Japanese use dish dishingwash liquid on the dishes and then wash them off with water . I distincly remember the first night when I came to Australia , and had dinner with Aussie and saw her washing the dishes . We attended this evnt and opened a small shop for selling some goods . My friend broke up with her boyfrend , because she doesn ` t love him anymore . If a young person sits in these seats , they will most likely be criticized by someone esle . There was a bic issue here in Korea about a woman who did n't give up her seat and even shouted at an older person . Because I am going to go to the Philipine to volunteer in Sep , 2009 . I saw the movie `` King 's Speech `` last Sundy . I started taking so much time to find apporriate words and sometimes never find them . I 'm still aliving . I 'll be really muscler . I have known that the ditails about what will the film describe as when I have been preparing to become a spectator by sense & sensibility again . After I practiced , I realized that my pronounciation made me tongue - tied . wherere 's my laggeges ( idk sp ) . . . . Yesterday and the day before yesterday , I attended farewell paeties . Althogh I 'm far from them , I always cheer for them from New York ! ! It is the costom that we go back our parents ' home for New Years in Japan . Originally , we wnat to have a free and independent travel , but one of our friends who had never been to Korea suddenly could n't go with us . I did n't believe the scenes on TV had happend in Japan in addition to Tohoku that north area of Japan . I was born in Aomori the northest prefecture in Tohoku . I think Japan is an earthquake - prone contry . At that time , electricity had recoveried . and bounght a pair of sneakers , pants , and a poro shirt . I thoght I should have eaten it before I go to the office or have writen my name on it . I saw the movie frist and was very impressed by it ! I have had a hestic time this week , becouse I had a test in chaisene Do you mean Chinese ? Actually , school prevented me from going to yaga . Fortuneately , the weaher was also fantastic ! My cell phone was broken accidetly a few days ago . So now , I 'm using payphone after a long time ( not exactly , cause when I was in the military I could only use the payphone , but I mean as a civilion ) . Hollo 2011 I want to go jurny , again . We had n't got any vocabulary material , speech practising , and one of our teachers make major grammatical mistakes , like she said once ' they was ' in a past continuouse sentence ! ! ! It 's interesting , because during her lessons , and while prepating for the lessons , I learn words much more easily than in the school . It tooks half an hour or maybe an hour , and I remember almost all the words , with only one or two exceptions . I joined this website yestertoday , and found that it is very interesting and people from here are very friendly . The korean officer in active preparation was , regardless of me , panicked at a boading arrangement . My company is planning to change the website and I 'm in chage of it . It 's been almost 3 mounths since I came to the UK to study . Do you heve high tolerance for alcohol ? ? Usually we play table tennis or basketbal . He does n't think that he is handicapped and he tries to do everything which he is able to do or new things that he wans to do . I heard someone said that watching moive is a good way of learning English . I will try this out . using forein languages ( Upon ) Finishing my work at mountain lodge in Hakuba , Nagano pregecture , I 've returned to my university . Besides , in my Russian class , there is an Ametican student who majers in Japanese and Russian in his home country . That 's also disappopinting . I was very surprised , and turned toword her . Only ( The ) one thing I regrret is that I could n't speak English very well . We chose one and write a resume , imageing if I apply for the job . I told him to finish what he had to do because it could have been avoided if he just had n't been watching TV , but he did n't continue tyding up , so I had to do it instead of him . Ohayo gazaimasu . Rrading is my weak point . I know it ` s not good for our helth . But I want to be an early bird so I 'm tring to wake up earlier than usual ( although I could n't make it this morning . . . ) Usual days are full of hapiness . I go to Buck County Comunity College to study English . I think I will just memorize Enlish words and sentences . I do n't konw why , perhaps because I really see you as my good friend I want many foreing people to use it . low lighting , silence and lonelyness . However , I was gald to hear that the Japanese team had won . . . I am living in southern carifornia in America . I will not have decided that untill this weekend because I have a long winter holiday . Some people enjoyed dancing together with firiends or even other people . I know that Bob Dylan is famous singer in America , but I ca n't imazine what that phrase means . I found that there are many fashionable runnig outfits . becouse of a whole new model change . I thought I made it clear that tomorrow couled a day off . However , I had to do it , because it was one of the activities on a bisiness trip with our customers . The shop did a campaign that if a person was still hungry after eating one humberger , the shop would give the person one more humberger . I tried it and got two humbergers . I had to buy a pickel , climbing iron , and Gore - Tex products . Maybe you will find that life is so beautiful when you know someting . By the way , Tsuyoshi Kusanagi will be on terevision . We ate SOMEN ( japanene food ) . I 'm glat to have met it . Hi , my nane is `` napoleon - fish `` . It 'll so crouded and I should not get separeted from my friend . So my garden in spring and summer is very fragrant and colorfull every year . I went to lunch with my English scool friends . Here it is buffe style . gettig a job . But I have a many reasons for learnig english . Of course , in literature classes we heard so many times `` oh , how great is Russian language ! `` ( I do n't remember who did say these words , but I know that it was one of our writter ) . And I know only 5 kanji and a few simple sentenses . I have a sligt headache . Now I have a slighht headache . I saw someone draw many interesting pictures of their grandfather with an iphone App , so I decided to dwaw too . I drew a cute pink cat the firse time , but I coud n't draw any interesting pictures . I must either study drawing from the basics , or must stay humor ? I love my sharing feelings and experiences with people who have different thiughts and experiences , so I have thought of joining a club . I do n't know why I hesistate so much . By the way , I 'd like to sing `` start of something new `` ( from high school misical ) BTW , do you think this introduction is too simple ? Please correct words for me if you think it is neccessary . You said I was ( still ) a child in ur heart , you said I have not matured , you said that our relationship should not be broken up . He is going to try _ out for a team for the firt time . When we visited the temperate amimal zone we met a few American Africans , who were trying to read the Chinese text on the noticeboard . Out of all the zones , my favorite is the temperate amimal zone because elephants and giraffes are there . Penguins like big places for their environment , so the Zoo uses big mirrows as walls to make them feel more comfortable . About five years ago , the goverment of Japan retooled the system of the law . Now people who want to become laywer have to graduate from college . the eaxms are held in November . welcom to my home ! Hallo , welcom to my Lang - 8 . com profile . Firstly , I will introduce myself , I am a 21 year old Chinese university syudent . You can write in English or chineese . Correcting my words , grammer and so on . Thank you . Morning does n't have heigh temperature as in the afternoon . I intended to go to Tokyo and spend time reading books or studying at my favorite coffeehosue . 24hours after the extraction , now my lower jaw is swellen . I like jelly , but wanna eat humburgers broadcast on TV ! ! They looked very delicious ! And then I 'll eat humburgers XD When a man is walking down a street , he sees a man who is aout to jump from the 10th floor . english is so duiffcul eighteen years but I have nvere had any confidence using it . What can I do to srretch my english skill . restart studing English Now I 'm concentrating on studing Japanese only , I respect John Paul II , he dould speak 11 languages . . It was exciting and improved my English skils . Expecially , when I saw Totoro in Toy Story 3 for first time I was very happy and proud of it because Japanese character appeared in such a popular and famouse movie ! It is amaizing ! Today , I learned many colloqyitial words as well as bad 4 letter words . For evemple , ' Take it . ' ( When I headed and Kinoko item appered ) I 12 years old now , so I 'm gon na say good byr to my school and friends . There are 28 students ( exept for those ill ) in class , so we did rock - sissor - paper . After class the last runner of the losing team was scolded by teacher beacause he gave up in the middle . I hope I can make true frineds here and There are vegitabeles in my house . What kind of vegitabeles do you like ? I try to remenber to write it ! It was emballasing because everybody stared at me then . `` Of course I will `` I replied , but he had to go to a diifferent room shortly after that . Bye bye my lovly family . I really do n't like earthquakes and Tunamai . . . Reading and writing is okey ( I can use a dictionary when I 'm not sure about any word or grammar . ) but speaking and listening is so difficult to me . Every month everybody sould go on vacation . If people stay at home they could watch ( whatch ) TV , listen to the radio , go on internet , and be lazy . I 've gone other times in the past , but now , there are new atractions , like the Dark Knight Coaster . I miss her ver much . In this situation , her sister ang I decided to change the bibimbap with her . Yesterday I was planing to go to the skytower with my three friends but onf of my frineds and me had a class so our other friend had to wait for us until after school . And after school we were supposed to go there but due to bad weather we could n't help gaving up to go to the skytower . Then one of my frineds went home . It was good : ) I ate oyako don : ) The taste was milar to the one my mom cooks . Twitter is addicting / addictiveness ! I understand that Twitter helps ( to ) conect a lot of peple , but I think that I am spending too much time on it lately . . . I want to use this tool to study ( and communicate using ) foreign langage too . I usually have lessons on Tursday , but I could not last week . I woud like to buy and enjoy cakes with my family agein someday . First of all I have to overload my hands with iron and at the same time I have to deside the problems with my studies , which I was forced to skip for couple of weaks . I like listnening to music by bands such as ' the Offspring , Weezer , Sum41 , Simple Plan etc ' However , my co - morker suggested that I shound go see a doctor again to see if I have H1N1 . My husband brought my nephew , niece and my doughter At the beginning , I felt nervous and did n't konw how to talk with them . I have a lot of things I want to talk about with them but I do n't konw how to use English to talk about it . My sister introduced this wepsite to me . It 's my understanding that they are identical , but my Canadia roommate said that they were different . Do n't woory my babies , It 's not a rat , It 's certainely a cat . Now Minourou is like our pet , he comes and goes as he likes in our housse to recived hugs . and sleep if he needs it . He is a very social cat , he loves people , he 's a real well known cat in our street , because he stays under the hole near the pavements in order to recived caresses . Fortunatelly , conditions were good in Fukuoka , and I was able to get good pictures of the sun . Then the man waves ( his hands ) to the woman and maybe that diturbs the woman . Michael Jakson I think Michael Jakson was a great pop - singer . I took a lecture last thersday . I 'm not intersted in their job , but I learned some important things from their lecture . and , finally , I Do Dont give up . I will never forget thier words . Starting Lang - 8 for studing english I have n't used Kansai diarect in a long time , because my wife hates the Kansai dialect . It is international language , but I plan to learn france For my laiziness , I always watched funny films and cartoons only . I bet you will get a lot of chocolete from your students . Nowdays , I have have been thinking a lotabout my plan to go toKorea . Hellow _ ! It 's defficult for me to find a topic . I 've been playing a game made by another country recenty . But I 've not improved my speaking or writting yet . In 1192 , Yoritomo Minamoto who was a general desinated by the emperor of Japan established the shogunate in Kamakura . While I was suffing the internet , I saw one intervew about Dr . I really want to have a cat but my appartment does n't allow it . I planned to go to Okinawa this coming Octorber . But I had to cancele my trip due to the Swine Flu . I said , `` I know that because I sometimes read English jounals . This is his diagnsis . What is the medicen ? Unfortunatly , there were only four of us from SPARKS there . Lack of time to studing I was lerning English compulsary in primary and high school . A First day of languege school One day I went to a popular Japanese restaurant to hava lunch . I thought that `` this was ridicurous `` , `` it was normaul she did n't do that `` . To my surprizing , I got an e - mail from her . According the e - mail , she is alse university student and she studys economics . We had turky dinner and had a great time . I do n't remenber the conversation in detail , but it 's true that I love her , not just like . Although I lost 300 dollars , it was a great fun and new . expierence . - helps peole train their characteristics . The world of games is like a minuature social life , which has good , bad and evil so gamers will know that they should protect good things ( or people ) and fight bad things ( or peole ) . For example ; I have managed to develop a good habbit during the month . Many people from different backgroud and places chat with each other there . Alghough he was small then , he has ( now ) grown up . Do you know how to help a workcoholic ? I think my mom is a workcoholic because she works most of the time in a market . She generally gets up very early and stays at the market from 7am to 4pm . There is always something else to do such as shopping and fixing electronics . She goes to different places to get everything fixed . Do u think she is workcoholic ? Because the major I study in is software engineering , and my favorite part is mobilphone , I set my target on mobile phone and pay all my attention on this field . The arstis debiuted with his first album `` My World `` which was published in November 2009 , November . It was a night of miricle , because Bieber become famous when his mother uploaded the video with Bieder onto the site youtube . Until now it 's been / I 've found it confortable enough to just sleep , listen to the radio or music whenever I was alone on the bus . Then I sent a messwage to her . It sets people 's nevous on edge ! Let me relax myslef for the first and only time . . . Thanks to you and myslef . . . I have camped at Jecheon in Korea with my family for the first tim . The next morining , when my children woke up , they were surpised . They were delighted because they could play ball and swim in the velly . Maybe it 's a bit silly , becouse all my life is ahead . Have some jelous ? What is the diffrent between accident and incident ? Of couse we would n't have as much vocabulary as we do now back then . Have you ever been confused about the use of prepostion ? And best time to be home next to laptop with coffe . . . Almost all the costemers need new paper money for ' ' OTOSHIDAMA ' ' , money gaven to children by their parents and relatives in the new year . On TV an expert about the human body says that Americans and Europian I could n't find a promble . I was releaved when I was able to talk with them and knew that they were alright . We satyed for a long time . About morals and ehics But I think , convertaion camp was the biggest help . Do n't be coldy and be gentler . We plaied basketball in Dokkyo university . I thought taht I need to practice more . After much consideration , I made a dicision that my favorite food is Coke . It is brain excacize for me . I can also teach korea to you . We shoul be delighted with their creative ideas so that we can get more relaxed on our free time . Yesterday and today have been fabolous ! . . . I 'm enjoing living in Robe but there is one thing that I 'm deeply regretful about . I heard that we make one team with 4 player ( robot operater ) and 1 tactical opereter . Second step , I am looking for the internet webcite that able to write english diary easyly . I wnat to improve my hair . Do you konw how ? I wnat to know . Habits are very imprtant in life . feel subtantial and get a big harvest . Lisening to the sound of waves . Unfortuately THE BEAUTIFUL BAY will not blong to everyone because it was costucted for the hotel . The beach will blong to the hotel owner . The beatiful sea will disapper . Sherk 2 I saw `` sherk 2 `` last night . He was paying attention for the cars but he didnt notice taht bikes . He stepped onto the road and there was a loud sound , the honking horns ( from the bikes ? ) I was looking forward seeing two star players , Rose in Bulls and Novitzki in Marvericks . On the other hand , compared to him , Novirzki has not as speedy plays as Rose 's , but his fadeaway shots , shoots with body staying behind in the air are UN - stoppable . Against him , Novitzki also tried to shoot , but his shots were off . There are several categories . Example : Animals , Healt , Family relationships , etc . Yesterday middle auterm festerval was held , so all of us went together with to celebrate . Recently , the bathtub in my house was remodeled and I am studying Vetnam I do n't like it very much because it tasts child like . Although I hav n't seen any American style shortcakes here in Japan , I guess I prefer American style to Japanese . I 've already known that is really stupid thinking because I 'm definitely a stranger in Australia moreover ca n't speak English fluently as well as I 'm surely one of the lazest people in the world . The view from the school is pretty beautiful , there is moutain behind the buildings and blue ocean facing . I thought that I would have to write it again because the diary I just wrote disappeard when I clicked `` publish `` . Althought there were some words missing , at least I did n't have to write it all over again . but the point is , in the related photo , one can see obviously the traces that the photo has been photoshoped , for the three officials are flying in the air . Then , this caused a new bash of photoshop in the Chinese twitter - - - - - - - Xinlang Weibo . This country is boring for me because I know almost everythig about my own country . I feel dezzy and down . I need to go to bed earlier than usuall . Unfortunately , everyone fogive that day . I was unhappy about that . So , I asked my best friends about my britheday in yestheday . We 'll arive at my house at 7 : 00 pm and will go to Naeba in my car . Finaly , want to have a good traving . Recently , I skipped writting a diary . I was very busy recently , so I skipped writting a diary . I often say `` I beg your parden ? `` . At first , I thought the tactic did the trick , but no sooner had I tried to bring it to the window than the spider sarted to hang from the pen with its thread . Now I 'm studying English vocab , but I ca n't memorize it becouse I 'm getting sleepy . Using preposion is difficult for me . Becouse I will take an enterning exam for university . To solve Japan 's English test , we should plactice how to solve grammer . practice and a rewarding desart Sometimes , I feel pessmistic because of my bad pronunciation . my teacher 's guideness . I like Carbonara , do you know any other delisious recipe for pasta ? I 'm sad when I oreder soba and I get very little of the toppings . yeaterday , I was free . : ) Therefore , I stuydied English and Korean . Wiht its popularity , Kokyo - Running is producing a lot of money . And of cource , they buy their runnning shoes and running gear . that is one of the reasen I work there . Althougo we are a very short distance from each other , in reality we are very far apart . I do n't know how to shortten our distance . Good morning evryone ! ! ! ! I must get to threre by 1 PM and also I got up much earier than before in order not to miss the train . Genarally speaking , if the man has a date with girls , he would get there before she does . It was the most embarasment time for me in my life . Presantaiton on Monday to my CEO There will be presantation about my job on the next Monday . ( 22nd June ) I am not good at presantation in English . But , I 'll be a hostfamily for the first time so I do n't know anything about it ! How does a gallon compairs to a liter ? Thare are many reasons : They are teaching / We are learning the alphabeth right now and the days of the week . I recomend you to visit it . My job is to be a clerk in a conveniense store . So are there any archi students or architects here ? In spite of the great destruction _ caused by _ WW2 , lots of historical monuments were restored and are now kept in oder . last time I cooked , I tried Thailand Curry soup , and today it will be japaniese sushi . Do you belive them ? I often find my favorite musician 's video clip by chance , which ca n't be found in the ordinary way . - - as it is too old , not in sales , or discontinued . interpersomnal relation Its really diffeicult to deal with people . He said he mixed grape jouice , coke , Karupisu , and melon soda . In fact , I wanted to watch ' Avator ' , but it had stopped showing in the cinema . guys , today is Chrismas , merry Chrismas , it 's a happy tday today , enjoy it . The sysem of reward cards is so effective because it ensures repeat customers . Start writing a dialy I have beenthinking thatI want to write a dialy . I remebered that my parents tried to give all of them away , and would n't let me keep any of them . When a frined of my father came to our home to take the remainder , I belived that if the guest could not find them , I could keep them at last . My and the others ' cell phones suddunly started ringing loudly to give us the earthquake warnings while we were stretching in the gym . She explatined to us that the lights on the ceiling were very dangerous , so if you felt a big earthquake , please came out of here and stand next to the entrance . He 's out - going and likes to comunicate with others . And I 'm going to study abroad in Boston in Septamber of this year . please chack my diary . Those were lovery memories He studies at a university in our prifecture . We enjoyed his message on the cellur phone . The world hisry test was difficult for me . Today I watched AVADAR When can we Earth people become harmone with nature , at on with the animals and plants ? There 's a reason why I learn English , and that is because I want to become a great developper . I hope many people outside of Japan learn about anime , manga and Japanese culture . I do n't want him to be just a subsutitute . She is also a biginner , but she has already had some golf lessons from an instructor . ~ that I can easily tell the differece . My friend and I are planing to go snowboarding at a nearby mauntain . I ca n't speak English , So , I need my firiend 's speaking ability . By varbal communication . I first listend to Avril when I was a junior high school student . Although I know it 's necessary and heilful for me to get license of the apparatus , but I just ca n't raise my interest . but it was very esciting ! We ate lunch then after that we met her hasband and we did some sightseeing in San Francisco . It was very wounderful . And we went to eat denner IZAKAYA ( Japanese food ) in San Jose . I gald you corrected my sentence dialy before . But I ate too much ! I had potato chips , chocolate , and pokkyX ( Lately I exercise to core rythm . I 'm a big fan of micheal Jackson . We can view the supurb landscape from the observation area / deck just like the Tokyo Tower . Additionally , the invention of the airplane led to the reduction of the amount of CO2 emmitted into the atmosphere . However , during most of its flying time , it uses the netural wind in the atmosphere and does not require to use its engines to fly . Therefore , the amount of CO2 emmitted by an airplane is much less than using a car or ship to travel the same distance . I 'm transfer student from Japan so I am a unior and my major is Psychology . The title is `` Gay regeree `` . I could n't help laghing when I saw this at first . It 's the first dialy ! I met old friends in Shinjyuku ! I 'm very tiard . Of course parents have to train thier children to be good adults . Friend 's fathere : `` what is your name ? `` I was very surprised lol My friend 's father was a gentleman like buritish nobles . I have few chance to communicate with foreign people and my classmates do n't want to spend much time learing English . I am learing English . Do you have any travel palns ? My company is a large employer and the CEO resinged for health reasons . Your country has provied technical assistance to developing countries , right ? The Japanese have thought of sakura ( cherry blossom ) as the flower which symblizes the nation . But , there was no officiator so it was ineresting I have a pre - level 2 English Language Proficienty test on Sunday . That means our item has potential , and we could get captal support . I need to keep up with studing English ! n I 'm always nervous whe I 'm trying to speak ini English . One of important point of presenting is to use simple and short senstence . Next , I put data such as `` logos `` `` picutre `` and `` links `` all in the same folder . my homehown BUSAN Hello everyon ! ~ Today I am going to tell you about my hometown , Busan . Suddenly , I wanted to eat fried chiken ! The beakaly sells fried chiken . My fauvorite options are clinical psychology , industrial psychology and social psychology . When it comes to English pronuciation for non - native speakers , the ' El ' sound is one of the most difficult consonants . Is it understanble if I read them without the ' El ' sound ? I 'm superied that my Japanese entry had been corrected by a netizen last night . I 'm gon na Edinburgh ( The capital of Schotland ) on thursday with some friends . Her wedding will take place in nordern Ireland . It is far from here ( Dublin ) , I was surpurised to know there are a lot of people who want to learn Japanese . I thought that learning Japanese was difficult for native English speakers but as I read their nornal , I saw that they have seriously been learning Japanese . Now , I 'm attending both Buddism temple and Christian congregation . The believers are forbidden to smoke , and male atendants must wear neck - tie at every congregation . We got to learn its doctorin deeply before we become believers . I hate to tell eather group that I am not interested ! Then , she emaild me for replying . I 've been surffering from a lack of Vitamin B1 . this mornig I met my chinese friend to go to a exhibition . I have been living in Los Angeles for three month alredy . But my English is stil poore . about my luhcn . So , I baught luch at NATURAL LAWSON . I had never talked with English spealers before , and I 'm terrible at English . There are many people which are not able to rent any flat in Moscow therefore a campus is th ideal variant for them . Today , I ate Mister Donut with my friend . Recently , a new donut was put on sale . My friend ate `` MOSDO `` , which was collaborate Mister Donut and MOS burger . Something happend on the site I Contunued and the educatoin at high school and university . Today I waited for my girlfriend at the stasion by the university , and we went to McDonald 's . Of course it 's cheaper to cook at home using ingreadients from the ' fridge rather than eating out , but I know very well the taste of food I have cooked . We put our small sotnes on Kanaeisi and prayed about our wish . and the waiter serves you the `` tapa `` - it can be anomelette , saussages , bread with ham , etc . It was an opportunity to auquaint myself with everyone some more . I played valleyball , basketball and watching movies . The docter prescribed some medicine . In last sumo tornament , he lost easily , so media said that he had to retire because he bacame weak . But , in this sumo tornament , he won the championship . People are willing to study English , Reading , Listening and Writting but not speaking . The first factor is that people shy and have less confidence when compared to foriegners . hired at frist sight ? I think I was calm when Iintroducing myself . If there 's `` Love at first sight `` , is there any interview called `` hired at frist sight `` ? I want to wear it and work at there earlly . This beacause I like to talk topeople . Therefre , summer vacation is boring forme . I love him even though he is very noughty and I can feel that he loves me too . I 'm a sociak smoker . ' Are you aveilable now ? ' This is my first time to write a diary entry on internet , so I have no idea what to wrire . and talk very smmothly . Secondly , I am interested in the NY because it is the ceter of the world for the economics field . This weenked I stayed at the school . This is the first time I did n't come home on a weenked . Nxet week I will prepare for a final exam . I would appericiate it if you could check my dialy . Last Fryday , I met one of my university classmates . So , I wantched my favorite American TV drama ( to motivate me ) / ( as motivation . ) When the fertilization succeeds , the pumpkins ' babies will brillant . By the way , human girls in love are brillant , right ? The pumpkins are in love and brillant , too . So , it was a great previledge for me to be there and I was also very happy to see that the two of them looked like the happiest couple in the world ! Today 's seminor just ended . Every time the seminor finishes , I feel like I should have studied more in depth . My friend invited me to go to see a football match `` Blazil vs Scotland `` He is from Blazil . After school , I talked with my friend in a caffe . I have been waitting for the D - S company 's response for a long time , but I have n't received anything yet . Because it 's a big multinational company , I think it would be a great chance for me , although the positon is n't as good as I thought . I love Indian dishes , especialy Curry . I heard that in India vegetarian food is very populer . So I went to India this summer and enjoied it . When I stay at home instead of staying at scholl , time passes so fast . But I 'll keep wrting to practice my Engilsh . He also spreaks English . I was suprized to see how different Okinawan customs and culture are from that of themain land , where I lived before . One of the main differences is MOAI , which is similar to privatized insurance coverage sistem in other countries , but with some differences . If one of the members is havingtrouble economicaly , he can receive money through the donations made at the party . Lets start studing English ! ! I am beginer . - - - used at a restrant - - - I pepared to leave for the station and slipped on my shoes in a hurry . It was an interesthing and slightly embarrassing day . The movie was called `` Inception , `` and it was very interesting . I recomend it . I wil change . The Englishman who is a member of my gym came to do some tarining . He tought me some English words today , too . `` Consult a dictionary `` sounds too sirious . I would talk with him using the words that he tought me today . Of couse , I went to vote for a mayoral election . The anser starts with yes or no . I would like to speak English mooore ! `` Hello , my name is Abby , a high schhol student . By the way , yesterday , I editted a film that my friends and I took . I especially enjoy making scripts for listners . At night , my next neighbor always was annoying me because he played games with his freinds which annoyed me , but he disapeared lately . Anyway , I felt a kind of healing by watching such cute , adorable fishes , birds , and manmals . . . My God , I 'm going carzy . My firrst writing My job is a docter . most of the ambulance users are patients of mild disease that dosn ` t have any need for it . Japanese society is asing rapidly . Is your countrie 's ambulance system free or not free ? I am thinking that 's bad for my body but I can not stop takeing coffee everyday . I 'm a university student in Japan and want to be major in controll theory . I put in more effort in indain english literature , so my dissertation is related to this . There were many Managa pictures that were drawn on small or large papers . I enjoy working there because I ( get to ) see many diffrent people every day . when I got back , I met a breakfast saller . I went ahead and bought breakfast for my friend , but when I gave the money to her , she charged me more money because she thought that I did n't know the price of the breakfast . It was so bad . When I was a high school student , my team won in the national athletic meeting but I did n't paticipata in that ! ! But to join this company , I need to acqirery English . I want to make you an aquaintance ! today , our customer manager came , he asked me some questions , and then he asked me wheather I 've began my foreign trades or not , I answered ' not yet ' , at the same time I felt so ashamed . In order to receive a present from my friend , I went to Hibiya sutation . The present was some uncured hams and cgeese . Of couese , I also taught him Japanese . I gave up doing climbing because my hio was still in pain . I joined the English conversation circle in the moning . I better work hardey because I need lots of money . Local people may not think they are intersting but I do . Sobald ich mich entschied auszugehen , fing es an zu regnen . Ich bin ein faule Person . My listening / speaking lebel is very poor . . . I go to middle school as a vvolunteer on Friday mornings . ( every Friday morning ) Certanily I know it is important to do so to improve my English . It may be fun for beginers to talk such as things . Do you have any ideas and can you recomend something to me . Wednesday - - - presen a report of China and Macao I must go and do somethink for my studies . So I live my life as usual after tha disaster . Even though I feel sorry about the cancelation , I will cancel it because the Australian one is a better program concidering more earnest students of English will gather around it than the Davis one . . . . in order to know more about the differet between theory and reality . I used to think that working in a library must be boring , but after a while , I found that every job must have its boring or mundane part . But , every job also must have its meaningfu part , and how much you learn from that job depends on the efforts you put in . As for those earrings , do tou think they | fit | him properly ? I hope he over come wasely . Thses days I have been very happy because I made many friends here . . . lang - 8 is really a beautiful website . . . On this website I 've met a lot of native English speakers . . . . it is so cool . . . Where I am the time is 1 : 34 . . It is very late , but I 'm not sleepy . . I just rememberedthat I hav n't written a new diary . . so I must do it . . . Usually I think dogs can be good friends with human beings . . . They are loyal and thay can do things that people ca n't . . Maybe some of you like dogs too . . This is more like Google than the one that was criated originally . In addition , excess money means a student can enjoy his compus life . Second , a student working as a part time job has a chanve to expand his relationships . They can learn a lot of things to be required from a company throught a part time job , for example communication skills , experience in varous jobs in varous office shops to get a better idea of what kind of job they want . But we cooaparaited and cooked . I can encourage their protest and criticize the dictator immidiately by writing an encouraging comment . I 'm looling forward to that ! We were very very tired , bacause there were many steps in front of the shirine . Especiary my wife was so tired , because of the baby in her stomac . I had learned early on that it is a common convintion to do volunteer service in communities in many western countries . Further efforts are needed to spred the concept of volunteerism among people . In many ways , voluntary activities are alawys linked with official factors which can be an obstacle for people to be ( come ) a volunteer . For example , we are often motivited to do voluntary service to gain the edge on / over the academy in school . But envidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporaens hang out with Singaporeans , Indonesians stay with Indonesians , Vietnamese play with Vietnamese . And we are trying to figure out the most efficient motheds to improve our speaking . SO , good lcuk for us . Ninjya still exist ! ? Then I will call my friends to tell them I have just arriveled in sun city . I plan to vist the Grand Canyon . I could n't stop teaing up when I thought of Jenny 's sad life and Oliver 's feelings after he lost his dearest wife . ' ' The time when you think it 's late is perpect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' There was one thing I coud not understand , so I went to my school to study it with some books there . I think that as far as temperture , my country is about 10 degrees C lower than here . My house is particularally old and too big . . During the lesson , I I becamse calm . So , I going to my parent 's house to join a oister party now ! Am I am getting old fation ? ? ? I am very / feel dreadfull . During this idel time , I watched T . V . In my school it is traddition to wear something green . Tommorow will be an easy day . It was a very enjoyful time . Today , I had suffed some sites and I found Torrent . So I downroaded some dramas about 70GB . But I hardly speak , hear , and I 'm not good at readig and writing . The unspoken , passionate coherence which unites a large numer of people , is one of the most fatastic parts of going to a concert . If there was less funitures in the room , it could reduce the time needed to clean the room . thogh it was quite late night , we discussed lots of things such as religeon , national spirit , as well as ourselves . be American actors ( such as Keanu Reeves et . ) It 's my frist time writing in this diary ~ I hope to meet other friends meet unexpecedtly the author introduced this web page , so I ' m We walked to Kine Naoto 's open air consert tonight . He is menber of TM NETWORK that are very famous in Japan . The open air consert is held by volunteers every year . But the consert may not be held next year . I hope that the consert is to continue . My favorit story is `` A Study in Scarlet `` . Moremove , I have other parties and events for Christmas this weekend . Ten years ago , I wathed the TV with my family when the second airplane crashed into the twin towers . I never thought that suiside terroric attacks would happned in the US . The terrorists made airplanes turn into misiles and destroyed not only the world trade center but also other important American facilities . I think the difficulty of English for most Japanese is pronounsiation . We Japanese start to study English from Junnior high scohol days ( 12 years old , but now it got changed to earlier ) translate to Jpanese . The pronounsiation was ignored ! because actual native speaker ca n't understand badly pronpunce English like I do . . . I read books written about some schoolor 's theory and try to understand the rules , ' When you pronounce th , your tangue must be between your theeth or something like that . Today , I watched the soccer match between Japan and korean . If I knew how to use foreign emoticons , _ I can describe my emotions clealy . It made me amaged and excited . I think its opening movie is the best one in any japanese aninme 's . Today , the professor of the energy trasnsforming engineering class tould us some of his doubts on global warming . This PIXER movie contains fellowship , enviromental issues , problems and love . On Saturday , I had a baebecue near the river . Therefore , astronauts should have the ability to solve difficult qustions / problems . Because I have made many friends among the people studying Japaense with me . I have always thougt study is a tearful thing . Tommorow it will be fine all day . My grammar is bad , that 's why my artical is very terrible . My English teacher always want me to write an Eanglish composition , but I am scared about it . My father took me there , and my boss was wating for me Okay I 'll expalin this . I like travering arownd the world . Tokyo is Japan 's center of fasion , show business , economics , and politics , but the centr of American politics is Washington DC . My memorie of a trip . It is located in Palo Alto , Carifornia . During the Gulf war , because we were not able to dispatch the SDF to Kwait , we assisted Kwait and the international force with a plenty of money - - more than 13 billion dollars . ( After the end of the Gulf war , the newspaper in Kwait listed the countries which had assisted them on its paper , but there was no mention of Japan . ) I 'm cunfused . I met frieds from university days from five years ago . Our company helds English classes twice a week on Monday and Saturday . In the Saturday class , there are only 3 or 4 members resisterd . I 'm suprised ! Every day is a pain ( Okay , the dictonary translates like that but I would n't say it 's a pain ; too powerful a word . I 'd say it 's crap . ) because I need to find a topic . Yeap , rebellion ! Yeah , typos ! Dear reader , if you have sometime , do n't hesitate to read my last text about the Wild West because I had no correction . Boo - hoo . ( really weird that onomatopoeia , I do n't think about someone cryin when I read that , a barking dog instead ) When I got here , I found the people here are so friendly , ang I believe that my English will make great progresses ! I like seeing street fashoin pics . . So I ofen go on street fashoin webzines and buy fashoin magazines . It is very intersting how people wear clothsing . So if you are curious about young Korean fashoin trends , I recomand going to that site . . I think there are people who wear various styles of clothsing on this site . I wento to London four years ago . Tatemodern museum there is very good ! In the fomer situation , there is a `` Wow `` , and in the latter , `` Olleh ! `` . I will contine to write this . Everyone , please be carefull ! Japanise summer 's are very hot and hummied ! Did we copy the European stule ? For all intents and purposes , it 's arduous for Taiwan 's baseball team to defense against Korea , which recruited many elites from KBO and MLB . Hi , I am a cathlic . I always go to cathlic charch on Sundays . Cathlics 's name is Francesco of Assisi . Thes have a lot of fans who like 2PM 's funny shows and unique character . They have culture - centered projects like graffity , hip - hop dance and movie making all over the world . Yet , The question is alaways be answered by asking this question : Then I would have brought more advanced technoque back at the ' same ' time . . . . . . . is it an endless loof ? Of course , all of this thing I label it with ' I think ' , because I have no conidence that I could represnt these correctly and exactly . minna san konnichiwa kyou , boku wa anatatachi ga boku ni stuite mo shitte hoshii kara , boku no shumi ni stuite hanashite mitai to omoimasu . Watashi no geinoujin no keiken wa takusan dewa arimasenga kodomo no toki kara hajimeru . Watashi no gakkou gekijou no kurabu de , 9sai kara , takusan no katsudou wo shimasita . mata stune ni shuyaku dashita . Today I tald about trains which are the main transportation in Japan . Some people say `` I do n't have a favorite color , `` which I find unbelieveable . It says that this color gives impresson of cowardance . It was because she was in danger due to a life - threatening premature delivery and her fatuses needed to be taken care of in the NICU ( newborn intensive care unit So I made the dicision to become a fire fighter ( It 's very suitable for my character . ) I am waitting to call the fire station . They are very beatiful . I ve never been able to part with those cards . Use Google to find some Linux distibutives compiled for non - geek users . The visa system is discriminatoin on the national level ! If cases when you do n't need a visa are an exeption , however , you will understand my feelings . The two reading tast were worse and worse . Theortically , it is the easiest task but I got just 2 points out of 10 . I 'm wer sad . I think thet Tatsuya is lovely ! Mainly I want to go shopping , view the very high skycrapers and go sightseeing . This year , I aim to get a TOEIC socore of 800 points . My favorit musicians are OASIS , The Beatles , Ashlee Simpson , I can send my money to China by an illegal method - - we call it the `` black macket `` , but you know it 's illegal and it will cost me too much . So masterfull . I am a temporaly worker now . The exam was about general knowledges writing . Ofcorse , I shouted `` No way ! `` haha : D From there , I write sentense to describe my ideas . I used to make rides by using vegetables which are looked like a horse for my grandmother to ride when she comes here and goes back to heven . My lunch was pickled cowpea with some meat and tomoto egg soup today . But I did not go to the gallary because I was lazy . I decieded to go there , but now I do n't really want to go . Firt time I got interested in it was when I studyed at school and joined an english study group . Then , a few years later , I went to Germany through international exchange , there I had to communicate in english cause my german was even worse than my english , and my language barriere was broken there ) Prepositions and phrasal verbs - that 's what is driving me crasy now % ) since Edison 's great invension ( mmm , is this true ? ) . the situatuion where you do n't sleep all night long In Japan , fake erotic crimes have been growing into public problems and many accused victem end up getting arrested . I do n't know why parents treat teenagers ike children . Gambling is frightening and dangerous , the goverment is trying to dael wiht it , but not successfully . . * Plener - painting of countryside or of tne streets . The scentifc name is Bellis serenis ( Perennis ? ) I heard Google , the giant intenert company , will relase a brand TV service called `` google TV `` The idea is very simple ; it 's just putting internet funciton on TV . Google TV seems to offer us a user - friendly interface and enables us to enjyo internet videos on TV . But I think the Youtube viedo are not high quality videos , so it 's hard to adapt them to HD TVs . My son appearanced in 3 games . At fairst , he ran the 15MR race . He got off to a bad start . Then I realized that I should use new vocabraly when I learn it . I hope it will help me to acquire new vocabraly easily . I deplate so much of my energy when I read English articles because of difficulty . I used new vocabrary of `` deplate `` , precipitous `` , `` retiring `` as well . Neverthless , I like to study English . They are very worried about thier future . I wrote some English sentensces . He tought English to us by using the book . In this class , it was impressive for me that Simon & Garfunkel 's `` I am a rock `` was tought . and when I 'm active , it 's very painfull . after about 2 weeks exceise , I feel great . Recentry , I 've been thinking about how I used to live in Japan . Next , we shot the soccer - ball , and touched the boundry markers with the ball . My father is a piblic servant . He supervisee civil construction . He is familier with cars . My name is Roger , I graduated from the Maritime colloge . togeter . It feels like whenever she wants sothing - even a big item - she just buys it without shopping around to compare prices beforehand . I have been thinking wheather to buy ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convinient and usufull . The distanse was about more than 50km ! If you want to join this activity , you need to buy your bycycle . But general bycycle are no use . You have to buy a sophisticated bycycle which can go in all places , like high steeps . My bycycle cost me 62000 yen . becouse I 'm here . Once a foreigner talked to me in English , and I could understand him , but I cound n't express myself . Because of the earthquake in this year . But many people do not go abrode . And I liked the desseart called Kazandibi . He told me `` Your mother is frastrated right now . Japanese cooking uses soy sause and sweet rice wine . I maked on a program in the afternoon . I made an appoinment with a person in charge yesterday . etc . are also in existance . Belive in Jesus is cool . I belive in my God We can share our secrets tigether he had thrown it away and wenr home . * I guess * I feel uneasy about my fuetur , because an important exam is coming near . How should I try to wark hard ? Do te benefits of genetically modified crops outweigh the danger ? After jod Then we can each talk about our jobs , ideas or anything alse freely . Baba is like a prist . I could see the fast rever from one of my windows and the mountains from the other window . This is the first time to write in my dialy ! She spoke English so fast that I could n't undesrstand . It is very cold at the office because of the air airconditioner . ( by the way , Do you knouw about `` UFO cathcer `` ? It has no nicotin or tar but it glows red on the edge and puts out smoke . I went to scool yesterday , It is much easier to catch a precise meaning when we study using a introduction wrtitten in English not Korean . I have a medical test tommorow . but here was my weeked : I did not study hard . I was searching for an intership job recently and I got one yesterday . Finally , I work as a imformation collector . May told Guy that she wo n't come to work tomrrow . Oh , what should I do ? Should I continue ? The work is boring and repeatful . Today 's fireworks are so eraborate , and we are very impressed by them . We wanted to speack to them , but we could n't because we could n't speak English well ! I have not written dialy for Lang - 8 . I have been thinking of writting an entry durring these two weeks . I 'd like to continue this dialy . I bought clothes yesturday . I am wearing it in my room receutly . Am I sick ? Why do I have two conflicting thoughts in the day and night as if my brain seperates into two pieces ? Momentarily , I wish I would not consider the comlicate love without end . I just want to come back to NanNing as soon as possible ; I just want to date Evan ; I just want to go shopping in the Intenational Trade Center ; and I just want to do my own bussiness . Love is not just magic but it is something you ahve to keep . We have n't met for a yaer , so I was very pleased . And I thought that they are tring with much effort to improve their English skill . The contents were about how administarate the seminor in this term . I went to tranditional martket with my wife today . We bought vegetables , squid and apples . First of all , most of them married among the attendents to keep their community . So many Peranakan Chiese learned English . Many Europeans hired them as translaters . Hahaha , I just watched the first episod of `` Primeval `` . A few days ago , my oldest son had a sye , today my second son got an infection of the middle ear . Fortunately the ear clinic opend , I took him to the clinic . After entering university , I rarely read English stuff , except for thoes news about my beloved singer . I am studying Engrish for the TOEIC test on January 11th . I work at a clothing store in large shopping mall , which is tunning 20 years old at the end of this month . Despire that , I was not able to keep myself from getting bored . I am a Chinese girl living and studing in Beijing . I have trobled in English . I want native speakers and people who are lerning foreign languages to teach me . I often hear that English is the most important language of all to learn in order to succed in the world . I am wery sad , I reccomend this Manga to everyone . I 'm looking fowerd to seeing them . I 'm a Chinese girl who is learnig English and Japanese . I 'm so happy to join to this site and I 'm so interesting to rcognizeing to another peapole from all the world and finaly Ifound groub who interesting with reading books I like reading so much speacialy novels and stories thank you and I want to be a friend Last year , I went to Anchor Watt , which is one of the most famouse ruins is a city near Anchor Watt , and went to the ruins by bycicle . I loodked aroud not only well - known spots such as Anchor Watt and Anchor Tom but also little - known historical sites , stopped by villeges and experienced some adventures like encountering cows in the jungle . I stayed in a city near the histrical site and went to the central market there before going to Machupicu . We immediately became friends and I promised that I would give her a sevenior , a book about the Inca Emperor , after I came back from Machupichu . Acctually , I ended up not being able to meet her again because she was in school at the time I visited her , so I left my souvenir with her mother . Does it exsist in other countries ? The other day , I was watching a variey show on TV and an Australian comedian said this proverb . I expect it does n't exsist . My company has high torelance for diversities . The fare I paied for the cab is half as much as the fare I paid for train . And if we do it . He will give us happenese , and Heaven after death The last prohet who sent was Mohmmad . But I rarely use this machine , bacause I have a lot of gadgets . In evening , we went to the eel bowl restrant near my house . We arrived at the restrant am at 5 : 30 . The restrant opened at 5 : 00 . We were suprised that there was a long line in front of the restrant . Just 30 miuntes after the restrant opened . I have to check whether the wired funds were recieved into my account . I hesited as to whether to buy or not to buy it for a long time , and I decided not to . Lettle by little English is spreading through my mind , and the more I express myself in English the easier I can listen to it . I hope I 'll be helpfull : - ) I just regestered on this site to learn English and to communicate with people from other countries in English . But first , I haxe to pass the oral examination on May 14 . but this is a deffirent country . By the way I ` ve been to Singapor , Guam , Korea and China . I felt very good about my Chinese pronounciation . And I also realized what a small warld I 've been living in and I want to explore the bigger world that is out there . Which Divices Do You Recommend for Reading Electoric Books ? iPad or Kinddle ? We cooked bread , tofu , and Zoni which is a soi sauce based soup in a baked rice cake . However , we were all simling and it gave us a happy feeling . but other options are not perfect . ( My goal is to study Medicine , which is why I need to get my enlish upgraded to a certain level . . . America has decided to send more humanitarian aid to Pakistan to put a dent in the ati - America sentiment . Not after long , I got a chance to go to Cambodia for 10 days as a mission trirp . And I felt shamful about my very comfortable life . So I want to study engllish to get a job in this field and help many people in the world . The new term is the time for me to make a new resolusion to stop playing online games . So far , I am pleased that I have resisted the temeptation of the game for a week . To be honest , I am not sure whether or not I will stick my resolusion for a long time . None the less , I 'm taking French lessons , I am thinkng about the party after class . K who is the organiser of today 's hparty asked me , whether I will come to the party or not . He and my clasmate said something , but I could n't understand . In France , women kiss my cheek . I was very embarrased . So if you hope to work at a large company , I think you have to have exellent abilities . A : It is a different mindset , going on stage with th band , as opposed to goig to a studio . . . . They will speak fuluent Japanese in future . s : The food in Australia is not to my taste at all : < It 's so oilly . . there are lots of Chinese or Japanese restraunt except there are no Korean restraunt . Just now I saw the news of Pina Bausch 's death while browsing the webpages . Some kind of beauty , understanding , and imense love , has gone . This is my first time writing somthing here . The Examinner asked me something ( I forgot lol ) . I answerd , `` there are many costs to make a mascots . `` These casted had been created to collect taxes from the ships that passed through . We were on the couse best suited for sightseeing because there were lots of these ancient castles . The reasion for which they were created is terrible . Wakeboarding is not a popular suport in Japan but it is a very fantacitical ? suport . Anyway , The performance wae interesting ; I had dinner with my friends , and we At the company my trainer called me and blam me about the car details . I must check before giving detile to her . You know , when she is training me she never teaches me a lof about my job , since the first 2 days . She would like me to be perpect at the job . I do n't have experience so I do n't know how I can be very good . I would like a long time to become perpect but she does n't understand about that . I would like to be able to speak and writting English very well and then I can find another job ang leave the company . I do n't like the people , I can not accept insincerity . I would like like to puch her befor I leave , too . I 'm jocking . I just realized my journal entries are becoome to 443 stories already . But I think I need to learn English from a profetinal English teacher . Finaly , she said `` I 'm looking foward to seeing you . `` This is my first dirly in English . Making imitations is very bad but in cases where they can make lots of people happy , I tnink copy products are okay . Is her disapearance really not sad ? I then tried to examin this thesis . Then I tought : Do I really play a role in my family ? She laughed and said : I left you some spaguetti bolognaise in the kitchen . I know your stomach by heart ! And as I dug into my spaguetti , I tought about something else . It says the existing education system is for traning professors , researchs and laywers . Most people enter graguate school becuase they enjoy synthesizing and analysising information . They like to read , write and debate over acdemic issues . People in TWN persuit a master degree in order to find a decent job , including me . I really regreat my decision to go back to school , but there 's no going back . I hope to finish my essay as soon as possible and devote myself to my areer again . But these honey was really one drug for children in my childfood . Most supermarkts and shops are closed all day . In addition , I want to speake to people all around the world and to work in America . So , I need dictionary . I want a degital dictionary very much ! Personaly , I think their view only partially true . We ca n't use a lot of electricity after the eathquake caused a fire in the nuclear plant . Since it was late and it was rainy , I decied that I wo n't read English today . To some extent , I am , but today my throat is still hoase , so I chose to give up . After breakfirst , I spent some time studying grammar as well as some reading practice and dictation exercise . It 's overweight for my heght . It was a trap . Have you ever seen a Coralla broken down ? Of cource , it 's good for our health . I eat it evry morning with soybean flour and green tea powder . Yes , WONG , I think . I was tired , but it was very intersting . Please be really extrict with my written expressions , not only with the faults I commit , but also tell me how would you say anything if it sounds weird . I have to transfer gallons to liters , miles to killometers , and dollars to yen and then make the calculation . This is a Japanese popirar song . It 's Usuarlly performed solo . This is othea arrangemennt . But I did n't spoild it . I lke to think a lot about Miyazaki 's animation . It gives me peace in my heart and relaxes me a lot , though maybe some Japanese think that it is a little old - fashioned . I like to communicate with people all around the world and share the culture and life of different places . absolutly , these results are not enought for me . My vocaburary is over 18000 ! ? I forgot where I heard about it , but acording to some site , an average collage graduate native knows more than 50000 words . We were going to join a Glass Boat Tour , but we could n't do that because of the tyhoon . Hayao powa ! I love these movies because they are full of suspense , feeling and andbeatiful music ! I have Ponyo 's and Mononoke 's music and I listen to it every mornig before class . I splinkled a little salt and pepper on the fish , and poured some white wine . The docter said `` she has the flu , too . `` . All employees attendted this party . It 's a very important party becasuse it expresses each person 's thanks to their co - workers . Then I noticed the cups and glasses displayed in the bar had some very beatiful and artistic flower paintings , such as orchid , jasmine , lily , rose , etc . Plus , the mashed phoato were topped with brown gravy and it was delicious , very soft and smooth . So , I am learning to play bass gutiar . at the biggining of next month . I fulfilled it succesfully . I am too busy these days , so I have had no time to practice my English writting . Since then , I can concentrate on reading the book and understand what the auther says clearly . I tried to make my friends , family , and mynself . Swimming lession . She goes to UNO while rasing her doughter who is just 2 years old . I really wanted to see her doughter . Her doughter was soooo cute ! ! Furthernore , she has so much energy ! She ran around the room , kitchne and the ailes all the time except during the dinner . hahah , I am sorry to leave for a long time becaus of my college 's military training . tonlesap lake rock ' n ' roll show ! ! Finally the day is coming , Tonlesap Lake Rock ' n ' Roll Show ! ! I wonderd if the boat will go under . . . We already know the way to study langugages . I know that listeng to English conversation and speaking in English a lot are good ways , but I think memorizing is the best way . I think I would n't be able towrite diaries in English , speak in English , and listen to what foreigners say without memorizing English words and sentenses . I felt like I was in a sardin can . An au - pair lives with the host family and takes care of thier children and does a little housekeeping . but it 's a very famours program . I 'm seriously concider the au - pair program these days . In Janan , students usually have to wear a uniform from elementary high school studends to wear uniforms . The Japanese education system puts enphasis on reading and grammar . He made a lot of friends who like to drink alcohole . I rarelly drink alcohole but I thought it was good I am going to excerise near my house . They said , `` you can have a second inteview and take a second written test . `` I have to review excell and word , and Japanese . I can not study and work at the same time because English fluence is required . English quizu Which do you want to learn , English or Sience ? After three mouthes , you will have a skinny and healthy body . I will eat a lunch with senior co - workrs who , I respect . A few days ago , I tackled the repairment of my mountain bike . So I decided to overhaul it by myselt . I like japanese culture and its atmospher , last year I spent 3 weeks studying the language to see if I liked it or not . I liked it because of the way it sounded to my non japanese ears , I liked it as I learned hiragana and katakana but as soon as kanji began to show his scary face : D to me , I got disappointed and gave up , can anyone tell me why japanese people do n't use only hiragan and katakana to make their language easier ? If not , I 'll strongly recomment you to read because it 's very effective to improve . Second , you can increase your vocaburaly much , much faster than comapared to when you just write what you want . There is n't any comment for my previous dialy . Please feel free to write a comment to my dialy . For instance , plants utilyze the light of the sun to conduct photosynthesis through thier chlorophills . The solar panels absorb the solar energy and generate some electoricities without sustenable and possiblly has the potential to enable us to coexist with any other creatures paticularlly those on the verge of extinction . This may be belavoring the obvious , but the sun is the source of our energy . First , I must hand in the application for seminor by 1 p . m . We just decidet to meet . Luckly , it did n't rain although it was cloudy . It tasted great but it was also expebsive . Though English is difficult because it is so different from Korean , but it is intersting . It 's realy wonderful ~ I played basketball with my classmates in the afternoon . I have never heard Jpanese in the English song . but I do n't know the veffierence . Yesterday , my daughter took part in a Cheer Cheerleading Competition which is also an annual festival where the cheer leading team my daughter belongs to participates every year . The competition was held at the studium called Kita Yell . The studium was so big that my daughter got a little nervous . It 's said that a famous TV series producer has been producting several series which are all copied from classics . Im just riting this to myself , since there will be lots of people waiting to be corrected . I 'm mix ( I 'm not sure if you guys say mix or mixed but I 'll just wair until someone tells me : p ) Does it make sence ? ) In this case , what does `` lovery `` mean ? And , more sadly , now his wife and my aunt , have been diagonosed with lung cancer too . In conclusion , I will try to know about my own country in order to knou about many countries all over the world . However , I want to enjoy this wonderful oppotunity . This movie 's title is slamdog $ millionaire . it was not a bit of problem to me because I was full of expectation and pleasure that I was going to see the exhibtion at last ! It was a very surprising and amazing artwork that expressed negative social trouble using fancy and unique color . Whreas restaurant - delivered meals are convenient because we do n't need to cook . I can see many picturesfrom restaurants facebook . In conclusion , home - made meals are nutirisious and inexpensive , so I agreethat home - made meals are thebest . We need to cook almost every day , but occasinal restaurant - meals are enjoyable . I went to Breeze - Breeze which had a grand opend today . But luckly , she looks fine and feels just a little bit of pain . And I am a bit familiar with reading english using technicalterm terms , but not of daily life so much , or politics , and so on . This afternoon , I had an oral English cource . He is a very good teacher and I love him and his cource very much . He said that it was not a problem and he hoped I would come back to take part in the class . I thoought he was very friendly and generous . I like coldplay 's yellow , I wanted to sing that song tonight and recored it , but I could n't sing the words clearly and fluently . I recall that when I was in junior high school my English teacher taught me a song named `` yesterday once more `` , and I can still remember some words so I recored it and uploaded it to my voice blog . I would like to ponder about the case and to hear your opinion ( if only my friends did n't lose hope to read smth from me , sorry for my long break ) . But they live 5000km away from each other and do n't get the oppotunity to pay visits each other often . YAMATO does vorcal . My body is likey to be influenced by weather . But why at that perticular point in time , prediction was important , is because it is closely related to my argumentation . I am disapointed in my English You said you can pick me up at the airort . Who will get to be the chanpion in Germmany GP . About a month ago , it was announced that Doragon Quest 9 ( DQ9 ) 's release would be postphoned . The next series is supposed to be reliesed by NINTENDO DS . I was fully prepared to buy it only for the perpose of playing DQ9 . I felt very sad because SQURE ENIX announced it . NINTENDO DS is the hardware which is worth completely nothing because DQ9 is n't reliesed yet . But that annoucement is unacceptable . There are many rumar about that on the net . I read many articals and thought about it . It 's the device by which we can play games without buying softs . In the previous series , SQURE ENIX set up a provision agaist Majicon . In the start of the game , the ship where the main charactar get 's on did n't arrive at the harbor even if the player waited for a long time . The company produced the game lik that in case that player uses Majicon . But I heard that the provision / trap was broken in 6 hours after DQ was reliesed and was published on net . I think that SQURE ENIX is preparing for a complicated provision next time . In general , high school does not have a professional career conducter in each schools . However thachers also have their own work for everyday tuituins ( ? ) , and it seems to give them limitation on working for their students who have difficulty thinking on their future career . Therefore , it is recommenden for teachers to share the work load with professional career conducuers , and teachers will be able to reduce their amount of work . What do you think , are they alive or just an imarginary animal ? If god , ghost and creater from outer space are in existance , it 's only natural that a Vampire also live somewhere . Does it sound wierd ? I understand that I can use 20000 yen for Shinkansen bullet train tickes , horse riding lessons and Cyndi Lauper 's concert tickets ! At times , we even establish an interesting rapport trascending the relationship between teacher and students . So , I want to learn English hard , and talk English on skipe . The year before lastyear , when I visited France , he was kind to us . He staied at our house for three months then . His Japanese has implove very much now . It is colled `` Setsubun `` , and is done the day before the coming of spring . colsed friends are like our own mirrors He also has some mental problems which he seldome faces himself . That 's why , even in praivate , he has never had a relationship with a girl - even though he is fairly handsom . He ca n't do anything without communicating with collegues . O , my senior , is 27 years old , a vergine , and has n't had a job for 2 years . He is now studyig sociology to get a certification . He tends to flawn on his enviroment . Before I had respected him as if I were his real younger brothre . I hope it is n't diseaseand and , if it is , it will be well soon . It 's very convinient . However , It is difficult for me to understand Russian grammer . By the way , I ca n't understand English grammer too . But , I want to improve my English skil . Should I write down my thoughts and feelings , using words and grammer as simple as I can ? Or , should I use unfamilier and difficult woreds and grammer ? Many Japanese are unable to understand grammer like the present perfect tense ? when I stayed in the philipines , althouh , around here , most of my friends like aocole At one time I Thouht that people who exhaust their lives were succesful . I feel satispaction working . Now is the time when I have to be enthosiastic All these verbs and fraseology . If I 'm consistant , I 'll not slip so often . The reason why is when I noticed my mistake I thought the boss was absolutely angree with me . It is because my boss sometimes is angry about little things to my co - worker and the othere reason is from my old mind of childfood . And I became prpotect over myself . Avobe all , I can take care myself . I am going to try to improive again as an adult . One of my favorite fruite is ' ' BANANA ' ' . I know this sentense is damn wrong but I think you can get an idea from it How should I correct that sentense ? I promised myselt to not just party when I got back . You know , customer service will be a big business in the furture . Beacuse , they thenselves are the baddest of bad , thieves . Untill his father was dead and his mother 's health was becoming worse , his mother started imploring him to work . After his mothe died , he started to work , however ; he always complained that the work environment was too hot and work was too hard . Finally , he could n't prevent DATH to snatch away his life . Taday , my best friend Doll gave this website to me . she knows I need help to improve my english for my job . After signing up for Lang - 8 , I have found it is a very usefull website . There 's so many people who want to study foreign languages . We always send cars or give gife to my friend ! Recently I 've been busy writing speech contest sentenses . so Exhauted . . In Korea , there are so many beggers in the streets . When I was a colledge student , I met a Turkish guy . So , I will keep a short dairy here as freqent as possible . There is no sick leaveina at a normal company in Japan . My house is n't far from the University of Washington , and I 've always wanted to watch a live game of basketball ( `` If I have the oppotunity `` does n't work here . ) I have been suprising at the popularity of university sports since I came here . In Japane , most university sports are n't as famous as in America . I 'll try to watch thier game live someday . If you go see games in a sport studium , can you recommend me a sport to watch ? I really need to improve my English skills including listening , reading and writting . I gess no one read my journal yet So , in the end , I did n't buy them . : p I hope I can find my favorite chothes again somewhere . Afer having gone through all these busy and boring days , I totally have no idea about what I can say ! 4th Mar 2010 Thuesday . Many tayphoon approach Japan every summer . I ` m looking fowerd to going to Taiwan next month . In the summer I have been taking an English course at the Direct English institue , I am in the 3rd level class there . I have many hopets such as reading novels . Also I use fotoshope to desine pictures . Today I have had a good day but I got up late . Anyway , just before my class friend asked me about my weight . It was embarssed for me because I 'm a Korean girl and some young girls do n't like to be asked about that . If a girl asks me I might be ok so I hope that my classmate friend never asks me . He went to seinor field of the game , through been killed a million times for learning how to survive . capture the highend user first , the total opposit in India . localization in areas / countries where most Japanse company failed even though they have high - tech . So , I picked two guides titled `` Canada `` and `` Germanry `` . this is the chinese traditional festival , maybe other familise are happy and excited , but mine are not , He recorded himself speaking in fluent Japanease . And today was no exeption , fundamental : I need to study the fudamentals of Japanese history . indespensable : He is an indespensable force for our company . splendid : Casa Roma is a splensis castle built in Tronto . cultural : We can treat each other well even if we have culrtural differences . To make your date more intersting , you should add a surprise . It ` s been over half a year , but I still have many problems both speaking and understanding English . . . My working visa will expire at the end of February . The time I have left doesn n't seem like enough for me to improve to the point of satisfaction . Lately , I feel more and more tense , and frastrated . I know the best way to learn is to enjoy what you do , however I am not the sort of person who is able to make everything enjoyable . I probably need to prioritise that over learning the language . . . hmm . . . . . When my friends called , I tried to only have a short converstation . If I were to keep learnig English , I could speak English well . After all , our meetig was delayed for a few minutes . . . , I 'm sorry . but the problem is that these lifestyle 's change makes people overweight easily . Also , people do n't want to excercise . But I always tihinking my English level is so low . . . The more entrertaining , the more gaming technology is developed , but it increases danger to mix up what is real and what is not . alright guys , forgive my crap jokes , good nite , I will do my best . Choicing a PC Since I was in a hurry , I thougt I would pick them up and throw them away later but forgot about it . It is unlikely that someone would take only the chotsticks out of the plastic bag to use them . I think both the goverment and all universities must get prepared for its future impact . When I first listned to it , I did n't know what he said . I felt especially sad when I wacthed that last scene . because I will graduat . I got to know a Nepalese person , who is the owner of a Nepal restrant in Japan . He told me that his restrant provides very delicious Nepal food . = to move from side to side in an insteady way Thinking about this , I was spritless and fell in a deep mire . A dog was resucued when it was on a roof of a destroyed house that was drifting 1 . 8 kilometers offshore . One of my friends recieved disquilification letter from the company he applied to work for . However , unfortunatly we do n't have any vacancies in that department you applied . Cadidates are also our customer ? There is a lot of damage becasuse of the typhoons this year . When I was a high school student , House of Wax was broudcasted on TV at night . I wached this movie to the end . Every Wednesday , I have an English conversation lesson where we watch a movie in English , write notes about the story and then present a report at my unversity . It 's my second year in the university , and despite not being able to inadaptation to campus life , I have been getting used to various things . It is something round , hung with a string for example in the middle of a room , and the palyers have to break it with a stick : what is inside ( of the `` pentolaccia `` , for example flour or sweets ) , will fall down . She told me to buy a balloon , the powdered paste used for wallpaper , a lot of newsprints , some giftwrap and a string . My school held a festival yeaterday . In my new life style , I have a lot of change conpare to before . Especialy now , I am beginning to spend all day at university during the week . I have also / never ? watched such interesting Amrican dramas , for example , 24 , prison break , lost , X - file . . . If anyone likes these Americandrama dramas , let 's talk about them ! From now on I will try to reduce the choice , _ concentrate more on what I decied . I wonder if the menber of that kind of association are get in easier than others . Harry Portter I read books `` Harry Portter `` It was 2001 that the movie titled Harry Portter appeared first In thoes days , movie `` Harry Portter `` was a objeck of attention and I bought books `` Harry Portter `` , Watching the movie . On the otherhand , almost all cars exhaust caron dioxide . I do n't want to have a fatal accident or even a traffic accident , secondly I woud like to make the air clearn for the next generation In class , we were given the follwoing question : So could you pease tell me your reasons for studying Japanese . . Although their songs mixes Japanese , the vocal who is a native Engilsh speaker sings with an English accent , so even native speakers of Japanese , and of course me too - ca n't tell which is Japanese and which is English . Are sure you checked the emal I sent to you . I usually read a lot of metarials when I have spare time . I think reading is very benefital for me . But my parents started to complain about the caligraphy and ordered me to put not only the next year 's Chinese zodiac character but also something for good luck . I want to feel a defferent culture by mingling with the local people . How to contect me . ^ ^ I want to speak English more naturary . There are too many self - develope or self - motivation or self - help books in Korea . I 'm wonderring if these books are really helpful in one 's life ? The beautiful woman translated it from Ukrainien to English . I rided on it without thinking . I found many fountains and also many people refleshing with it . Although I was always moving with my heavy backpac , I did n't feel tired . Korean pop has won a considable following in Japan . Similary Korean drama has been a great hit . Why they have won this popurality ? Their dances and songs are interseting and memorable . I hope we can have classses on MSN or Skype regularly at a fixd time . I 'm majoring in computer secience . nowdays I 'm leraning English . I have exprience in preparing for Korean language ability exam . so I can help you effiectly . and send a messege to me Bradley has changed through talking to a good councelor . Sometimes I tink I wanna go back ! ! ! ! ! My hobbie is scuba diving . I 've traveled some places in not only Japna , also other countryies . PNU cosist of 12 departments . I 'm going to see my school scenarys . Last weekend my wife and I went to tennis matches for beginer mix doubles . It 's dilicious and rare , I want to learn how to cook this kind of beef . I found out about Lang - 8 today and registerd right away . After I graduated from high shcool I started learning English alone . I stuied English by watching NHK TV which is educational . By the way , Feburary 14th is Valentain 's day . Japanese girls often give chocoletes to their boyfriends . Not for boyfriend ! lol I 've made chocolates for Valentain 's day since I was an elementary school student . It 's soft , moisuturized and always fresh baked , not too sweet and you can see sliced piece of carrots in the cake . However , I ca n't explane . I felt sympathy for the Kambodia refugees , and wanted to know more about it . And now , I 'm researching The Indochinha War , mainly focused on the deplomatic relation between Vietnam and France . It was so hard because there were n't enough referencel , but I made my effort to research , and I understand it very well . Kendou is a contrast to wieght training . Weight tarining is reasonable . It is difficult for rationalist Americans to understand Kendou spirit . Someday , I want to watch the MLB game live at the studium . Therefore I ca n't continue to use it , I was dissapointed . . . They usually boile Hijiki with soy souce and sugar , I can understend them . My favorite ( shop ) is a Chinese restaurant nere the school . This song is about `` bounsing back `` . I 'm not good at expressing myself , I do n't have any qualifications but a driving lisence , I have never had special experience such as internship and being a volunteer . plese teach me English . The Flinstones The Trasformers 2 : Be engaged with an instiute related to UN operations or non - profit operations . But , , , , I always feel dissapointed with my poor English skills , especially when speaking : ( Sometimes I get tired of the piles of assighnment , but I enjoy spending lots of time with good teachers and friends who aim high . I 'm tired because I have to go to the lab evryday and take care of the fish . And I went to the class and I was so dessipointed because this room is very hot : ( . In the moring , I chedcked my phone but there were n't any calls from him so , because of that , I was angry at him and , still upset , I went to my part - time job . These days I worry about my future and become senstive thinking about it . now I am living in the southest of china , Now the temperature is very hig in the daytime . howerver it is low in the morning and night when is very cool and the wind is very soft . I like it very much , but I hate the daytime . Of course , do n't forgert marathon ( 42 km ) . Today , I start my lan - 8 life . My father did it for my parents becaise they will back to Brasil ! My theacher told us that in Korea there was a race yesterday . They checked 5th and 6th greader . . . I need to practice more each day . `` Jill Stuart `` is my favorit brand . This fregrance is like vanilla mixed with flowers I would like to wear its dresse in a party after the graduation ceremony . If I were her , I would be very embarrased and stop right away . However , she was tough becuse after that , she tried to use her cell phone again and was called by the professor again . Somthing that I learnt today First , I want to share my exprience when I traveled to China . When you visit a shrine , ring the bell , bow twice , clap your hands twice and then bow deeply onece again . On the train , I 'm listening to R & B music to use in my lessun . I preffer read some easy books , watch American TV , movies with English subtitles and these funny things to learn . My main dificulty is understanding spoken English . When the groom kiised the bride , many cameras flashed . I am happy for them siecerly . The reason I want to wirte English is to enhance my English skill . It is n't neccessary to write in English . will someone correct my grramatical mistakes after I post it or should I add someone to be my friend first ? My favoriet sports are Football and Snowbord . When we were done skating , the metro was not working , so my dad drov us all home . Depending on how she is feeling that day she may begin to imagin the very worst - - `` He hates me , he does n't love me , he is leaving me forever . `` This may then trigger her deepest fear , which is `` I am afraid that if he rejects me then I will never be loved . I found him on YouTube : ) He made a parody of Mirely Cyrus 's 7 days . 9 bus that caught itself on fire in Chendu . ( Star Ruby is a library to develope computer games with Ruby language . Just 12 hours left untill I go to Cambodia ! Vor . 1 ( Prayer etiquette in temples ) Yey ! ! I did n't think they could wil , therefore I was really surprised . Many friesds cheer the team of your own country . So it was difficult for me to read a lot of passege in a short period of time . I upgrated lang - 8 to premium . Are you surprized that we did n't fly on the plane / go by plane ? What I 'm studying at univercity I 'm studying mainly Mathmatics and phisics at university . I was good at Math and phisics when I was a high school student . Although I do n't study English at the univercity , I want to be able to speak English fluently . , and you wll be friends with me ! ! It is derived from `` familly `` In jappan is wintter now . Recentry , I happend upon very nice music . I watchd `` Enchanted `` by disney . Somedey , I 'll try to fall in love with such a prince ! ! Know that no gain withut pain , this what I learned from life . Speaking the truth , what I would like is to make foreign friends mord than leanning english , I am very curious about everything outside China and I dream about travelling around the world one day . But accoding to his facial expression , it seems to have failed . I want to comunicate with a lot of people . example : The teacher used his car as an example when he was teaching about the hibrid car . But I think it is good way to improve my English writing skills by dialies . I 'm a little good at writing and grammar of English but I 'm poor at speaking and listenig because Japanese educational system of English focuses on writing and grammar . But I think this system derives from Japanese nationarity . What is your favorite russain song ? I decide give up on these nerouse . I want have a better life ! I want to smeil and I tried to sing . I found the world become bulitful and everthing became right ! so happy ! I konw the life is myself and if I felt good it will fell good ! hope everyone find yourself I trust you will get what 's you want ! Hi evrybody ! ! ! Anyway he fell in love with the smat phone , and his explanation made me almost fall asleep . Oh , it is n't snowing and I ca n't go snoubording . . . I need to revice the text for retelling for my English cources , but it is very difficult for me & nbsp ; because my pronouncication is not very good and I find speaking & nbsp ; more difficult than listening . Yesterday , I was tought how to play golf by a professional golf player . I did n't have any appoinmets or plans yesterday . I first took my seat and I ordered an iced charamel latte . I must speach about my country . I came up with some ideas for my speach . I always go to English classes Saturday 's at 3 pm until 6 pm so I did that , and also in the morning I went to a pole dancing class , I do that to lose weight and gain strenght , and it is a fun activity too . I dicided to write a diary entry . so I can not talk with my friends on abroad with humorness . I 'm bad at pysics and math . She is twrenty - six who is living in Tokyo for a job / work . select : She selected the blue flowersfor for her friend 's gift . divide : We were divided into two groups in / by that arugument . convey : Sometimes it is difficult to convey what we want to say in a foregin / another language . I like drowing characters very much . My hobby is watchng baseball games on TV , because I like baseball Then they make unhappy faces and ask me again , ' What can you cook without currry ? ' My roommate and I decided to clearn our dormitory tomorrow . Goos night . So it was a preasure . It costs 55 aus dollers . I have to sell my car for at least 4000 aus dollers . I talk with my family using Sype almost every day . I 'm a normal man . someone pealse help me lol I thouht he put my socks in his closet again . oh my godness , it was a gay magazine ! I was really surpurised , and I also became scared of my landlord . I promise , no , I gurarantee , I 'll never come back to Australia again , even if my mother is kidnapped by someone and taken to Australia . I kinda wanna change from flontline to some other medicine . But since I have few oppotunite to use it , my English still looks like Chin - glish . I wich I would not get in trouble with anyone during my trip since people are the most dangerous creature in the world . Because this spring I have to take job jobhunting seriously as I am going to be last grade in my uni . I have to endure missing my family and frends in Korea . I have been learning yoga for three years Becouse I have stiff shoulders . I think that the hula dance is elegant and somtimes difficult to execute . well you are fack basically , so it is okay . I 've been studying English for 4 onths in Sydney , but I still ca n't see the top of the montain at all . How high have I climed from the foot of the mountain ? Anyway , everyone is lreaning a second language on this website ; I reapect all of them . What I 'll write is just my opinion , so even if my ways of studying will be deifferent from you , do n't worry about that . Speaking skills are propotional to writing skills . If I wanna understand waht English speakers say , I have to read English books and I have to ask Japanese who can speak English very well about why I could n't translate it . I do n't think that way beacuse , when I got up that day , I felt a little bit tired Accroding to researchers who foucued on the relationship between the length of sleeping and whether you feel good when you get up , Pathinco is one of the gambling methods . However they are expensive , because they can do many thigns . However , I have no need to record conversations and am not intersted in any radio programs . . . I have studyied for over 10 years to pass an exam for some national qualification . T `` in English with Japanise subtitles on DVD . As you know , ET is a famous movie , but I watced it for the first time . I 'm always thinking about the reason why he did that and why he always refuses that someone helps him after I watche `` HOUSE M . I ca n't just skip unknow words so reading this book will take a while . TIME is futuring superbowl ads as follows : I 'm going to get a job until March and its gon to be okay . I do n't have to rush ~ ~ My Recommedation Movies I intend to discribe daily happenings here . The celemony at the kindergarten We attended the celemony at the kindergarten last Thursday . The celemony lasted about 1 hour and thirty minutes , and The reason we think so much about those news stories is because even if the news content is quite ordinally , it picks up and repeats many times just because famous people are involved . My friend itroduced me to this useful website . Althought my Japanese is not good to write an article ( entry ) . IN DEFENSE OF MR . FIX - IT AND THE HOME - IMPROMENT COMMITTEE When a woman resists a man 's solutions he feels his competence is being qustioned . As a result , he feels mistrusted , unapprciated , and stops caring . He can reflet and discover how he was probably offering solutions at a time when she was needing empathy and nurturing . Here are some brief examples of ways a man might mistakenly imvalidate feelings and perceptions or offer unwanted solutions . Thia is what you should do . `` Each of these statements eitheer invalidates or attempts to explain upset feelings or offers a solution designed suddenly to change her negative feelings to positive feelings . By learning to listen , gradually he will experiece that she will appreciate him more even when at first she is upset with him . She can reflect and discover how she was probably giving him unsolicited advice or criticism rather than simply sharing her needs , providing information , or making a requst . When I woke up , I could see the heavy sonw . hellow ~ : ) I live in korea Yesterday , the Dobai World Cup ( horse racing ) was held in Dobai . It was very exiting , because it was the first time that a Japenese horse won . I think Japnese horses have achieved world - class status . as playing basketball , swimming , running and so on . If it is sunny , I 'll go fashing with my friends and swimming . I think that is impossible . wuwuwu . But I can play computer games at home , hehe . Thease days , it is getting colder and colder . I realized I could not be friends with autom and winter . No matter what bevarages she drinks , almost nobody would mind . Possibly women , who tend to have great interest in thire own figure and weight , believe they have an obligation to refrain such drinks . What I strongly want to mention is that all we need to do is develop and bulid good relationships with various countries . I went to Canda on spring vacation . Hi , my name is gulizen and I 'm very happy to meet you on lang - 8 . It 's a good way to learn other lauguages . I thank them for their heartfull concern ; however , dare I say , they have misunderstood the situation in Japan . Resently I watched the news on the central Russian TV - chanel , and they said that Hollywood has started sooting a film called & nbsp ; `` Georgia `` . This is an information war and the film `` Georgia `` is its logical continion . Today , I read a magagine about license in school librery and find this site . But , I want more comunication with forighner . I am a member of the `` Guidelines comittee on Hypertrophic Scarring `` of the Japan Academic Societty of Plastic and Reconstructive Surgery . It was ranny from morning to evening . plz ~ help to correct my writtings . If so , I appreciate your favor . The Carrer is `` Softbank `` . ( we have d a bad impression of them ) iPhone does n't have IrDA . ( we use this for excanging mail addresses usually ) Java apprication does n't work in the iPhone . On Monday , I went to the scholl pool for the first time in this year . But I do n't like sewimming in cold water . . I wii keep swimming untill I 'm a Kosen student . I 'm having a tornament of swimming ( or swimming tournament ) for high school student on June 5 . A Japanese women was taught not to express their thoughts or opinions since their childfood . Many foreiner believe this . Book retiew - Black Boy , Garden Party . Because it has too many fage . Reading the book , I am reminded of Korea occupied by Japan in the 1930 's ( although I was n't born in this age , I can only imagine ) . Like many Koreans , Ricahard has had hard time . I guess ' nigar ' and ' black boy ' are bad words . Her mather is very expected . Luary wanted to end the party but her mother didnt n't want to because she did n't want to ruin the fun for everyone . Laura felt guilty and visited the dead man 's home to pay her respects . The JLPT just examines the learner 's kowledge . When I arrived at the clothing department , the sales clark was only one there . I cooke a full - course Italian meal , Salad , AcquaPazza , Pasta . Whereas there are wide range of Nabe in Japan , we ate quite simple nabe , mainly ( ? ) . We put all of the leftovers from te refridgerator , such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water , into the pot and cooked them together . Five months ago , I met a Filipino student on Smar . The day before yesterday he sent me a message that he applied for the job as a totor . I already have some favorite toturs at my conversational school . I do n't know that song lilycs is `` Mr american pie `` . becouse there is nothing aboput `` american pie `` . The hit single of this album is called / named ' Stupid , ' which is about a man whose heart has been broken by a gril . During an interveiw , he said that he wanted to become a radio DJ with his own show after releasing the album . It is very difficult to find a good definitio for friendship . A ture friend finds pleasure in our joy and shares sorrow in our grief . The people who are my friends are alwats at my side to give me help and comfort . I think this is ture friendship . These days I have been exchanging messages with my foreign firend , and it is as pleasant as a real conversation . Farst diary To change the subject , earthquakes & tunami are terrible . The cerebral wave activity is clasified into groups , each one named with a Greek letter : Alpha , Delta , Gamma and Theta . So , Alpha waves have a frecuency of 0 . 5 and 0 . 4 cycles per second , and they are often found in a state of deep sleep . Theta waves have a frecuency of 5 and 7 cycles per second , and they are found in the state between wakefulness and dreaming . Alpha waves have a frecuency between 8 and 14 cycles per second , and they are found in states of peace and a relaxed alert . Beta waves have a frecuency of 15 and 22 cycles per second , and they are found in a state of crisis , anxiety and agressiveness . The massive production of Alpha waves in children makes them have a great learning capacity that can even allow them to attain / achieve super - learning or acelerated learning when there is a state of peace . On the other hand , if there is a state of agressiveness or stress , learning can not be achieved . These ways are called the perception channels , and are usually used by the NLP ( neuro - linguistic programming ) to generate positive and permanent changements in people 's behavior . I want to comunicate with people . I started a part - time job in a convenience store two manths ago . I have been very busy for this two manths . For the first manth , I cleaned the toilet facilities , took out the garbage , welcomed the custmers and ( ? ) helped to organise the stock of goods , on top of working as a cashier with seniors and so on . I was tremendously encoureged when I was told off by a manager . Thanks to them , I got used to work litle by litle , as time passed . One day , the store manager said to me `` It is important to greet with a smile and make eye contacts with the custmers `` . Then , some custmers thanked me with smiles and left the store . There is a gerbille at my home , but it 's not the only pet we have . But it 's a pity that I could n't find a mousetrap in my home , it made the mice leave my appartment last time a few years ago . It 's really interesting , and a lot easier for me to read , probably bacause there 's a bunch of conversations in it . I asked them `` why does the elephant need to be on diet ? `` They said `` Because we have to minimimize the transport fee . `` I feel managing teh Elephant is very difficult . I gaved up on it then . I respect strong - charectered people I respect strong - charectered people . She moves whith difficulty . She still goes to University and continues her education by correspondance . Recently she has started to make ( create ) beautiful accessoiries . She is talanted . I ca n't get up eary in the morning ! ( Fixed ) Odell was n't certain of what he saw . The mbers may have been at a much lower first step , with a formidable second step still to come . ( corrected ) Odell has n't confident about what he saw . The mountainer may have been at a much lower first step , with a formidable second step still to come . Althogh I am sure you know of them , I want to introduce music by these singers and anextra song by Andi Gibb , who in my mind , is the very image of the past american people because of his fasion and long blond hair . But I 've changed my mind recentry . In the playoffs , everyone is very important to the team , not to mention Rockets lost the African Moutain . I decided to undergo a long jurney by bike , which took about four hours to arrive at my destination . During the recent winter vacation , when for the greater part of the time the temperatuer was always under - 20 degrees . Now the temperatuer has increased , and it usually ranges roughly frome - 10 to 2 degrees . Even with this increase , a long time exposed to the cold , proved to be moer than I could bear . I was traneling to China with my friends until yesterday . I want to be able to speak English and communicate with Peoplle all over the world ! Since I work in my office , looking outside through the windiow is fun and relaxing to me . Last year , I ate and drind freely and as a result , I did n't gain weight but gained visceral fat . It is one of the largest ones in Japana . So the teacher came to our room at 10 : 30 each night duing the four days . My unbrella was broken yesterday . I 'm going to write about the spacecraf Hayabusa today . The body burned , but she relesed a capsul toward the earth before she was burned . Nobody knows what was in the capsule untill it was opened . If there were aliens in the capsul , We would be surprised ! However , wrinting in this diary gives today some meaning . but he didn n't find one The tyhoon has approached . I will do it steadly . I found `` Train Man `` which is a very famous story in Japan in 2006 transrated in English . It attacked me like a mosqiuto . I chose the book related to my major ( machanical engineering ) so that I could practice my English reading skills . meeting facinating people These days , I have studied promotion on a Japanese musisian and today is last time to study it . Someday , I want to sing songs in other lanugage . Inportance of reading This is the first time for me to write my dialy in English . The aim is to experience a wider world and enter a more challengable life . But first , I should speak in English very influently . And I have to overcome my fear and shyness especially when I meet an agressive person who feels frustrated while talking with me . Fortunatery , I found a newspaper clippings . Although , I 've been feeling lonely rately . I tried to call my frends several times yesterday . That made me lonlyer . I have a troubled personarity . As soon as you are busy enough , you will forgrt what you want because you have no time . So , the cultural festival is a place to understand the school atomshere . My friends said that this website benifited her a lot , and she recommened it to me so I came / joined . So let me introduse myself a lettle bit . My 3 - year - old daughter was born here and that was a tough experience for me becuase I was not able to express how my wife was doing when a nurse / doctor asked . But I belive that if I just go on and study constantly without being lazy , then I definitely will achieve my goals . I belive in myself . I wrote that I was going to watch the movie ( or : a movie called ) `` A Phophet `` . I have two tommorow . I 'm gon na eat Rusian cuisine tonight . I live in a dorminotory near my home . meybe ! ! ! Many elementary studnets in Japan ride unicycles . unicycles are very popular amang girls . I did n't know how wonderful peformance with unicycles could be until she started it . I watched `` Swan Lake `` at Lincorn Center tonight . I did n't know that early day tango was played with flute and gitar . He is really scarely and aggressive . Multimdia Class thus all of them are bound together by affection , and they find their friendship to be the cheriest relationship in the world . first , it is difficult to suppose that one can experience anything , continously . I am writting a program for learning foreign languages ( next version ) . The Version for Linux works great , not beacause I like Linux , but that on Linux using UTF - 8 chars in console is possible , in Windows it is n't possible . I have stusied english for about a year . but my english is not at a pratical level . What do you think of working at resoat area ? I 'm not sure the name of the place , This area is famous for snowboad and skiing . I need to chekck it ) I will go to the airport with my aunt , uncle , and my brother by car . I will ought to have breakfast by stopping the rastaurant before we get to the airport . My dear fridends , please tell me how can I do ? I 'm a 21 - year - old girl , and I 'm sudying English literture in my univercity . I 've also been studying Brasilian Portuguese for one month . So I was sourching for a website to help with my studies . Today I am not going on a bussiness trip . So I was very comfused when I noticed it . I tried do my best and as much as I could all day today because I do n't like to make someone feel uncomfortuble because of my action . So I just aporogized to everybody on twitter . I think that I ca n't say that I am okay because I am not sure about my aciton . The euro is very weak and the yen became very storong . I checked the exchange rate for the New Zealand doller but it was same . . ( ^ ^ ; One of my friends who plans to go to Europ this summer changed yen to euro yesterday . Tomorrow I will go my daughter 's kindergarten to join in the Summer Festival celebration ( promorted by teachers ) with my family . It was cold today , those days the outside temperaure was 0 degree . Hello , frined and teachers ! I have plans to teach my native languge in Bangkok . . I really want to help you enjoy your experence here in Thailand . . Private classes are available evey day inculding Saturdays and Sundays from 8am until 8pm . nithty - night naka . . . Because it is very diffrent from what I have ever used , it is very difficult for me to use it . When I drink with my close friends and If I determined to hang out till morning at clubs or somthing , I drink roughly a half bottle of tequila and a couple of bottles of beer . Sometimes I kicked the ball and hitted someone who was running toward me . I was running , too , then all the players ran into me , even though I was running as hard as I could . I agree with the opion that Kokubo should wear his tie and pants properly because he is now a representative of Japan under the national flag , not just an athlete who is abroad to attend international matches as a qualified individual . I played softball with a Heavy Industries custmer two weeks ago . Although the first game was fought well very much , it was reversed and by the last roundand and we lost . As a result , our tema had the lowest grade at the tournament . I think it is a good thing to form relationships outside of work with my custmer . Do you have relationships outside work with your custmer ? I need to wirte my diary in a short time span , but I will keep updating And recently many murder events have happend in Vancouver . Tonght I will sleep early , and tomorrow do my best . I majore in international relations . Especially Tchaikovsky and schuvert are my favorites . I 'm going to stay here just obout one month . He declared that we would never get any furnitures IKEA . I try to think postive , but It is such a hard thing to do . today . I went to yaga shool . so recently I started to yoga , Big queues , crowds of people , everebody is angry - all of this is a consequence of Russian education reform . Unfortunatly , I realized that it is a fairy tale . But I still believe that I will enter the university / institute , Russian corruption wo n't be a problem on the way to my goals , nd I will be lucky to say that I am a student of university ! Tangue twister with Insomnia As a result , I did n't go to the labrary and I regret my idleness . It is becase there are many things I 'd like to do and Please correct it on grammer and suggest a more native usage of the language . And they are also often said to have poor imaginating . And as you know , Japanese animation is now highly recommendated worldwide . I am going to hold omn my English . I am suppouse to talk with my freinds if I need to talk with them . I habve finished reading a book . But they disappeaerd soon afterward . He started to study this phenomenan . Thnaks ! millitary base near my town , so many Americans live in the city . I think I have many opportunities to speek in English close to home . I studied Amarican sign language today with some girl on edufire . The girl who tought me , She also tought me in English . Today , when I went into an oriention & nbsp ; workshop , I was surprised to see a lot of people there . I gain my wehght rapidly last summer season . I will contienue my english learning journey . . . My dear friends , it has been months since my last vist to this website . I ( will ) start my colleage junior life in the beginning of september . I can read Englidh a little bit , but I 'm poor at speaking , listening , and Wrighting English . Now , I want to appare some useful sentences , for example : For examle , there are bedrooms , a bathroom , a kitchen , and so on . This is because if you eat dinner togher , you can have coversations and it helps us understand each other . In this way , I can get their counsel and , at the same time , they can make out my thoughts and the situation I am currenty in . In my opinion , close family bonds are one of the most imporant things in our life , and the dining room plays an essential role in it . Thus , the chance of making a new acquaintnce who I did not know well before increases . In conclution , I believe that the dining room is the most important room in a house . We can maintain a good relasonship with our family by communicating in the dining room , and we can also use it for a party where we can invite people from outside our house . For exemple , If you have a dog , you need time for it : buy it food , play with it , take it for walks , etc . I Ibelive that a pet is more responsability . I plaied a game . I do n't feel very good today . Everything is going the wrong way . I try my best to let it go into the right way , but I failed . mybe I should think more clearerly , but I ca n't . In short , we still dont know why consciousness exists , why I 'm not a philosophical zombi . The pianist was born in a poor family , but he had the chance to become a famouse pianist . The rapid development of information techonology , especially the Internet , has made an increasing number of e - books available to people . Therefore , traditional books will continue to exist despite the rising popolarity of e - books . If they get their total salary , companies will go bunkrupt . Most of them are non copylightted because the authours of them died over 50 years ago . I just recived an e - mail from my friend . Before that she warked in a public hall , same occupation . Now she warks with teachers and she is very lonely . Today I realized why it is so importand not to give up . Hanging Out Wih My Friends He explained his critial situation to her . I was surprised at our enexpected visitor . `` My elder sister is also a geek , sometimes we discuss about the future of the Japanese animetion industry . `` I relly love teaching Samulnori with traditional Korean equiment . While I am writting this , I want to eat it too . I do n't get feedback immediatly when I write . Many native animals live in the tropical forests in Austraria . Of course , I 'm planning to go to the city zoo in Cairns and kuddle a koala bear . Actually , I prefer wombats to koalas , but I 'm uncertain whether visitors can kuddle a wombat . Assad 's shop attracts crowds of people and the queue extends to the street conner everyday . People like me wish that he canfforever leaves China . thirds of the book but I have n't found any impressive sentenses . 4 ) China 's economiy is gaining strength as it continues to increase its exports . I 'm going to be able to drink alcole . Yesterdeay was my 4th wedding anniversary ! This event is a forum for professional or amature artists . I 've studied enghlish for more than 7 years , but my english is still so poor , I ca n't even talk to people , I hope one day I can speak english like a english spoker . cause , I was bron into a poor family , I could not go anywhere but stay here , and my parents did their best to support me through school . I want to change my job , to improve my life , to earn more money to make my family more comfortable . Ever since the first time when I saw a blackberry phone , I have been totally into them . They look luxuary , and the design is stylish . I am still concidering whether to buy it or not . Stiff shulder again Steve ' Apple - Head ' Joves is really cool . `` We are forced to learn English since our chindhood . Until now , I 'm learning it . This has become a big part of my study . We do n't hear our students reading poetry , the essence of Chinese literature , which were paseed down for generations . However , we alaways read and recite English instead . Oh no , those are not oral English , just so called Chinglish . What a sad thing ! On that day , meny people come to my city . ch it on TV . But my friends interested in F1 , so we wach on TV . Because , there are meny races in a month . I sae colorling ( colored ) leaves . It 's veyr beautiful . Autam is my favorite season of the year . Rusian are mysterious . Chanese people are also mysterious . Althogh Samet island is not as popular as Phuket or Samui , its beach look very beutiful ! One can say that creating sentences is also a good activie that might Many have oftenI thought about living in a place where two or more languages Last week my degital camera broke and I need get it a new one for my trip next mounth . I could see many diffalent costumes and dances . We have called each other whether we were happy or groomy . I attended it , and we cried utill we had exhausted our tears . I think Japan is gentle for a smoker because there are a lots of smoking areas and cigarettes are chaper than any other country . The restaurant is what is called a `` revolving sushi bar `` , where dishes are carried on a conveyer belt . Two pieces of sushi are on a dish and you can eat a dish for one dallr . An increasing number of revolving sushi bars have opend recently , so we can have sushi at an affordable price . There is no doubt that it is not good for our environment to bulid a factory in our community . First , it will pollute the river near the community , which was full of fich . It is not smart to depend the increase of the economy on the damage of the environment , which is very weak and can not be rebulid . Living in a community with fresh air , clean water and slient environment is much better than in a polluted area . He told me to use the expressions that can be found in the dicrtionary , otherwese my English would be strange . I hope that the people can find a way back to their normaly life and be happy again . My mahor is Engrish . My Japanese teacher asked me to focus on listening , talkiing and grammar . I hope that I can improve my talking and listening as soon as possible because I really want to have perfect Enghish . Hello evryone . I did my study abrod in Fiji and it was sooooo good . Especially over Hotele life . After that I moved to a hotele whose manager is a Fijian woman who was so Some of my firend who were also going back Japan cried and cried . . . Anyway my English is better than before , particularly my spreaking but my vocablary is n't good enough for staying in another country , I think . that 's why I am going to study abrod again soon . I was really desappointed with my English skills again and again during the show . Anyway , very few Japanese actors can speak English or Mandarin like native speakrs , so most of Japanese actors ca n't appear in famous Hollywood movies . On a lemon tree which I bougt 5 years ago , swallowtails laid eggs since the last summer . Living expens South Dakota ! Today , I began this lang - 8 survice hoping to improve my English - writing skill . Time permitting , I would like to take part in advsing on Japanese usage , and am very glad to get any tips on my English use . Kingland is a beatiful counry in southern Asia . People in Kinglang eat sea food every day . I would like to see the coutry Kingland atleast once in my life . I promissed my friend . Even though we had never aten with each other , we had a good relationship . Yet , I do n't like to have a lot of free time , especially when Ioften sleep halfa day ratherthen spending time in the Intrnet , or even watching TV . My goals are good pronunciation , writing English easily and reading English websites and books speedly and accurately . Regular membar Cambodian vocalist Sokha joined us for 1hour . Rurouni Knesin They are very professionalist , friendly , and seem to have respect for all of the workers . But there 're only words and I feel that it 's not enought . ( enough ) Everywhere I go I keep listening to my favoriate song . . I made lots friends who came from all over and I always felt happy . I never felt bad because I realy enjoyed living in Australia with my good plicks ! haha About 10 days after got to Australia , when I was hunnging around , I found posh cafe and dropped my resume off . They said , `` Come to an interview tmr . `` Why on earth has our rejection of nuclear power desappeared ? So today we went in and out every shop downtown and we trid on styles we like . After that , we went to dinner at a Thai resterant . I really want to visit it again and , if I can , ( I will ) live there for sevearl years . Today I heard that my younger colleague had started writing a jornal at this great site . Recently I have been practicing reading English sentenses loudly many times to brush up on my skills . But I have yet to learn more words and flases , so I 'm back to writing in my diary again to practice my writing skills as well . The new year still has many challenges waitting for me . Goodbye 2008 , Hellow 2009 ~ ! NINE is a movie derected by Rob Marshall . In this site , I feel that I 'll study more , and I 'll be able to communicatin better in English . Torne has a `` trophy `` function , which is someting that records my viewing history . This story is a parody of The littler match girl and shows the European toumoil pretty well . Recentlly , the Euro has dramatically fallen against the dollar and yen . It was a beautiful day yasterday I 'm going to go to an art exhibision in Hakone this Sunday , so I hope it will be sunny there . Then she disappeard with her son . At tne end of class I wanted to try to talk with him , and I asked him how I was in his class today , he just nodded I promised him to show the winter scenery of Hokkaido such as Sappro city covered by snow , the festivity of Sappro Yuki Maturi by `` You tube `` . 5 years ago , I would have never guessed I would have commnication this way . However , all the children became very queit I just wached the 1st and 2nd episodes . One of the survivors , Jhon Rock , should have been dead , but he was still alive in the hall . Why did the crowd apper ? and I was always looking foward to it . I was given a degital camera . There is no way that showing kindness , affection , or any other form of positivity wo n't be appriciated . You are the most jearous person in my class . He is the second weightest boy of my friends . We finished the ( / our ) test and then we were going to the Black Cat in Brunswick Street , Fizroy . Before we went there , we had talked about the distinctives features of this cafe . So the teacher recomended a good restaurant near the Black Cat . including Janan . And I watched a movie in the cafe , `` The Bourne ultinum `` , whose main acter is Matt Damon . Also , Interenet Cafes in Japan have varsatile services . You can spend a night on a tatami - floor at a price cheaper than a hotel . ( but limitied room though . . ) Of course , they ordinarily serve free drinks such as coffee , tea , or juice . Some of them have darts or billiyard ! IF I Won 10 Million Dollers If I won 10 million dollers , I 'd like to buy a lot of games for an Xbox360 and go abroud right now : ) If I still had a lot of money , I donate to people in need . To begin with , I 'll finish my last semister at university for graduation . Employees fingers are not put into the soup , making it cleaness and safe , preventing burns . Or is it truely beyond my understanding ? However , my friends told me it 's really yummy and sweety . One of them is Israelim ; she speaks English with a strong accent . Should someone solve my writing error and layzines problem ? I have two children : one is in colleage and the other is in elementary school . What kind of peple do you like ? The title is `` The Castle Of Cagriostro , `` which is made by Hayao Miyazaki , the most famous director in Japanese animation . I find it very useful when reading entries written by other Jananese corrected by native speakers , because you can tell the difference in expressions between English and Japanese . It touches the heart of Japanese culture for Japanese people learning English . Thus my evironnment seems never could make me have a new dream . How to choose an appropriate article ( that is , ' a ' or ' the ' ) is a very difficut question whenever I study English . Thanks for reminding me and I remember this / that moment . It was very amaizing . Life was beatiful . I read in a magazine that the BOB cut is now the treand . I was dissapointed . To improve Enlgish is very very hard ! ! ! When I left the subway , I found the paper paperbag that had my lunch was torn because the subway was so crowded . I do n't want it to cost a lot of maney . I enjoyed a fireflower and Japanes Origami with my siter 's daughter and son . I 'm looking forward to whatching them grow up ! In fact , it 's ture that many people are not hardworking after they go to college in Taiwan . I watced Agatha Christie 's work - Murder on the Orient Express and Miss Marble . He put on a talk show at this event , but unfoutunately it was full before I could make a reservation . ] ) but beforehand , I have to have some theoric and pratic knowledge about traditional art ( painting , architecture or color theory , management of space ) . You know , you can only apply for one school for your bechelor 's degree . The weather is cool and my friend is going to see a movid but I have to work Please correct and answemy my question ! I do n't know what happend . plese ~ teach me English . I 'm an unversity student and my major is international law . If you wanna learn chinse regularly , just add me . Finally I got admitted to the International Trade Institude . In my school , we are plaing instruments in the school musical . because in 3 - 1 we are plaing instruments ! ! ! I needed a person who would let me practice verious skills . I want go to shopping but I 'm aways busy . lol And because of the rain , I could n't go very far for dining , and I could only choose the near restaurents Especialy , anyone learning Japanese ( ^ - ^ ) / I heard and thought , `` what shoud I eat ? ? `` Because Bobby advised me to follow them to Chitaqua Park , I went there . I spred it on toast every morning . But one thing I have to be carefull about is not getting a bad tooth . I starting Lang - 8 rigjht now ! My English writing skill and bocabraly are really not enough . First of all , she is a very hard working person . She has the capacity to work for a long time without complaining until she acheives her goal . Besides that , she tought us to care about our studies and to search for knowledge everywhere and by any means , because she believes that man without knowledge is like a body without a soul . They are Probablly around 7 centimeters or so . I heard that our common frind , who is I will show a video of thai fruit carving to you . When I was yung So women would stay at home and learn about cooking , especaullly In Feburary , I dropped and broke my camera . Also in March , I dropped and broke my boyfriend 's camara . Tommorrow will be a great day , I believe ! My brother had a PSP ( but he sold it ) , and we had seve games for PSP console . If you can recomend me some songs , I 'll be grateful . He told me that I was addicated to the university . During the past theer years , I felt tired from time to time , and sometimes I wanted to give up , but I told myself `` I must be keep it up , I must work hard . `` Now my efforts have paid off - - I was addicated to a good university . The phone that can be superior to iphone is nowher to be found . Hi ~ I thank you for your lobour . When I first visited this web site , I was suprised at how helpful the people on this wabsite are ! I am a little troubled because I want to help those who are helping me by assisting them in their goal to improve their writting in return . But many peaple , inculding you , like to learn Chinese or Japanese . I 'm Korean , so I ca n't help you directly . If you 're not disturbed by my hamble level of English , I hope that you will consent to being my neighbor . You can grow tired of explaning the same thing , and lose your creativity . For example , when I am stressed out from studyiny , I start to eat more or to sleep more than I need . My faverite of them was a woolen coat . I do n't like you , not beacause you are an American . I think I do my best to do your homework amd understand when you teach class . I am vety happy to have a girl . This is the first time I write in tihs diary . In order to better learn the intentions behind his paninting , I want to take some classes to learn painting skills , like water oil . find my diaries to recorrect . In Taiwan , there are many people with a teacher lisence , but there are just a few students . As a resule , most of these teachers are waiting for a job . Tomorrow I 'm going to have a test of Classical Japanese and I hope everyting ends up alright . My holidday Actaully , I do n't miss Taiwan so much . My roomate are always asking me , `` do you miss rice ? `` I would rather try exotic food while in the U . S . , rather than Taiwese ones . I feel like experiencing the American life - stlye and being assimilated with them . Even though he said that I should taste some Taiwanese cuisine here , that way , I could campare what the differences between them are . A book I read when I was a freshman in my university explained that people want to work atDisneyland because everyone working there can do what he / she truely wants to do . Xtina is amazing signer . ( NOT xtina ! ) The idea occerred to me that , why is the image of a flight attendant different from Japan and in the other countries . I can buy avery cheap clothes at Dinos . roma - hiragana translator So I want to use a roma - hiragana translator with this site , like the one below : As you know the Korean penisular is still devided into the South and North . Efectiv way of learning English . I am always thik how I can improve my English . Less efort , much more efection . In that show the resercher said read letters in books scilently . So we have to know sound infomation even if we read scilently ( in English spelling and pronounceation are difarent ) Seemed that this was n't her first suicidal attemp . Nuh . . . Tomoyo and I went to a new caffe and talked about art . That nigth , I called my boyfrend and Mayuko . We are going to deinner nest Saturaday , On such a big holiday , our family always gets toghter to He was expected to win a gold medal , and all of his supporters in the arina became silent the moment he retired . Anyway , from now on , I will come and write etreis at least once a week , so please help me to write proper English entries . I 'll try to write things here and it will be happy or good things which happens to me every sigle day . Despite this constantly expanding library of exotic colloids , however , the advances in colloidal self assemby are surprisingly scarce , and the corresponding self assembled structures still remain quite simple . Altough she is a second grader in high school , We taled a lot ! In my first dgree , I went to Oxford Universtity in England . I want to visit more and to talk with many kinds of peopole . So if you are a very kind person , please cheak my poor Englsih ! ! the weather forcast said ( that ) it will be hot again ( soon ) . First , today I am going to play Futsal in the evining . What dou you think about the USCPA in America ? Ken adviced me on how to make a good presentation . or going walking in nature for reflesh and health . I do n't have a perticular genre of movie I like . But , I do n't thik movies are made for fun . sometmes they give me deep inspiration and make me think about a specific topic . I want to be an obstetrician or an engineer who makes medical machines to help as many wemen as possible to live happier lives despite their diseases ! Because sometimes it seems to me that most of them are very intelligent , organized , and priviledged at the same time . He told me that American people are different from Egyption people in thier thinking , and in their professional and personal lives . But not everyone is different . I wrote this entry beacuse I want American people to reply to me How they think in thier peofessional and personal lives and I also want to know how the noraml people spend thier normal days Thanks to anyone who will answermy qestions . First I want to express my happiness at Srahu coming back from her vacation ! ) this is very importent fo me I really norvos . take a pll , but It 's not usefull I have a importent test next week I belive I can do it well For instance Taylar Swift , Stevie Wonder , The Smashing pumpkings , Offspring , Sum41 , Steve Appleton , A Tribe Called Quest , Pixies , Jay - Z 3OH ! 3 , etc . . . I really like her excentlic fashinon , action , peformance , and of course songs : ) Whenever I questioned something , people responsed very There were ( only ) a few people who came to the Izakya Now I am planning to travel to Tailand for my next vacation . There are a lot of historical places to visit in Tailand . After finishing the TV program of Gundam , at first all of the Gunadam freaks tried to buy plastic models . But it makes me too addictiv . Fashon Show One thing that I noticed is that they ( all ) wore fasionable clothes as well as a lot of perfume . Hello , my name is Sar . I am interested in the English languaga . So people can easily make rhyms in English since English is avery flexible language in terms of sound . The answer is quite symple : they use rhymed verse when they make songs . So we are limited to manipulating rhythm in Japanese . Therefore , ancient Japanese people controlled thenumber of words in Japanese poems in order to make rhythms instead of rhytmed verse . The teacher was Filipina who can only speak English , that means she ca n't understand if I speak Japanese . I was nervous talking with her ! I booked accomodation , which looked like such a treditional and awsome cabin for a night , through the internet , and bought a pack of beer and some food at the market . The enterance was pretty , and the usher , who was a very old man , was kind to us . Anyway , the accomodation was the opposite of the pictures on the website . My husband worried about me as my codition was getting worse . At last he confessed to me that the smell and atmospher drove him crazy , too . I stopped drinking beer and smoking ; I ca n't let them help me fall alseep . I remembe I have a black ipod in my bag , It seems difficlut to make new friends when we get older ( and older ) . I serched for good movies online and eventually I found As I saw the first scean , I felt very peacefull and Japanese culture and he was always given a cup of coffe for free I went to an Uniqro store and bought some cute t - shirts . I have n't been to Uniqro stores before . Uniqro is really famous in japan . I think he was chinease and he was buying lots of clothes . I was born in Riyadh , but I am organaly from Yemen My relatives want me to go to Ucraine for the whole summer ! This year , I 'm teaching 200 students . They are not relly goot at speaking English . just be pacient . I met my relatives and gave them some survenir . It 's the first time that I wirte a diary on the internet . If I knew of this site ealier , I could write English very well . . My majoy subject is English , but in fact , I have a little hatred towards English , for In modern times , English is as commom as a piece of bread ; You can find it everywhere . A hiway is free , and that is quite amazing . rarely : She rerely finishes her homework on time . Sory ) Again ) But I have been stydying it every day for a month . I ` m a junior at Hankuk University of Forign Studies . This is a japanese kinf of custom . Heven is over . . . . The loan officer approaches the blonde and says , `` We are very happy that this transaction has worked out , but while you are away , I performed a background checkd . And I 'm a little puzzled . The blonde replies , `` Where else in New Youk city can I park my car for two weeks for 15 bucks ? `` . Prease correct my diary . < ( _ _ ) > The skanning and skimming reading comprehension had too much information for me to finish the questions in fifteen minutes ' time . Last Monday , I got in a new office that is a clum ( ? ) scool as a Math and Science teacher . I have to be in school untill 8 : 20 a . m . After having dinner , there is a self - study period untill 10 : 00 pm . . I bacame to hate my country , my language , songs , and Russian films and books . . . Every night I imagine lttle houses on the cleanstreets of a small town in America . . . I also set off big firworks I think it is one of my favorite festival regradless of my increasing My pertner for this trip , Nao , had a strong desire to visit there . Especialy , the whale shark feeding in a standhing posture was interesting . I just passed through it souldlessly . . . I am stupied . . Because I have a improtant exam at the end of the month . . . I should prepare for ( ? ) my sofermore year . . It troubles me acttually . . Since It is not combenient for me to pay by cash every day , I bought a 5000 - yen bus card . `` Your card does n't have enogh charge . `` As I was stood in front of the charge machine biside the bus driver , so many people were were waiting for me getting off the bus . He was probably in his mid fourty , and was a kind driver . Of cource I repayed the 50 yen the next day ! I am scoled by the instructor every time . However , there are diadvantages . The biggest one would be environmental pollution . Social problems might be caused as well . If one factory were built near my community , then it would bring more investiments . In reture , improving our economy . Nevertheless , there would certainly be negtive effects as well . The most serious one must be environmental pollution , particularly in regards to pulluting the water and making noise . Equally trobling for me is my debt . . . I had a job interview last Friday , but I coul n't / did n't do well . I may not even recieve any notice of an informal outcome . How do you feel if you get a call like that suddnely ? Thinking about it , I feel sick , deep lonliness when it is a full moon or new moon . Start of English larning from Today I quit English larning because working is very hard . Acutually this is an excuse . . . . But I should thik about that . As soon as I can do that , I will tell everyone aroud me . Because Japanese people emphasize groupism and tend to avoid conflict personnaly with other passengers about their bad behavior . Many stuednt were in Nara park . It 's a moving skatebord and it 's cool and fun . Please correct my senntennce Today it is essencial to have reccomendations because the human resources are too busy to receive a lot of candidates . Today I went to Hong - dae to meet my best friedns So I went there to see eath other . But I want to write an interesting and funny daiary in English . You do n't think this applys to Korea ? No , it 's not Gomei . Gomei is . . Gomei is , for example , maybe having sundried tomatoes I just got thorugh with my work . Today is a burnning hot day . I like summer bacause it has many advantages , for exemple Swimming in the sea , doing BBQ party near a neighboring steam , playing baseball on the field . 1 . He is tired of foreget important documents for the meetings . Most salons encourage customes to buy a package of ten sessions upfront by offering discounts and special perks for your prepaid loyalty . However , if they pay for some money to get manicure or padicure regularly , it could be a waste of money . And the town is very small and quiet , fai away from the city . The English poet Wordsworth said that `` The child is father of the man when he raises the son up innocently `` 1900 has lived on the sea since he was born , cut off from the outside world which is full of lies . He was innocent forever and had no flae until the moment of his death . When the grown - up 1900 sat in front of the piano , using his slender hands ; which are smooth like the keys , the ship bouncing on the sea waves , the piano 's pulling and melodious tones , entranced by the music that he played for the poor people , my heart followed the tones up and down and the happiness on eeveryone 's face . Someone said that 1900 is happiness . He lives with his favourite music , people surrounding him are all friendly and kind , he need n't care zbout numerous complicated things and disturbances . Is this true ? Everytime the boat draws into the shore , he looks at the island in a lonely way . He called strangers secretly with a nervous and expectant voice , `` hello , you do n't know me , but , can we have a chat ? `` . Especially when that tramp told 1900 his experience . He wanted to experience standing on the island and listen to the sea . What would that be like ? I 'm not 1900 , but I can definitely identify with his loneliness and longing - he was very keen to be on the island that he had never experienced . This is a pictur of my dog . In this country , the price of cigarlett is 5times higher than that of in my country . Furthermore , every single pack of cigarlett contains advertisements which give us warning with horrible pictures about the harmness of smoking ( Such as cancers ) . I think I 'm severly addicted to smoking . Thanks for reasing my entry . Japanese usualy begin to learn English when they are primary school students or junior high school students . I want to improve electric vihecles and save the earth . About 2 years ago , I went to Australia to study aboroad for a month . I will send a letter to my fost family today . - Coincidently their horses got tired in the middle of the way , at the same place that the moon was washing her hair But , I 'm sad , becouse she is one of my close friends . At the beggining I thought I could put a picture representing France ( = picture of France ? ) Well , then I thought about that supid stereotype : French people are chauvinistic . That 's slso exciting . I will sell Japanese cakes and poteto . When I liesten to the songs , I feel happy . She would say to me : `` You always remember your birthday , but you never remember your father 's or my birthday . It make me very sad ! `` I 'll said to my mother : `` sorry , mum , I 'll nerver forget your birthday `` . I received an English lecture from my philipine tutor last Sunday . She taugt me that there are only 2 seasons in the philipine . ( dry and rainy seasons ) Goooooool ! ! ! goal Japan beat Danmark and booked a spot in a secound round of the FIFA world cup this morning . with thire mobiles . I remember when I was in college , my tutor said `` there is a gap existing between a customer 's expectation and perceiption . `` As far as the hospitality industry , it 's easy to understand the meaning . 3 stations later , I just stood up and said to her , `` pls sit down . `` Guess what happened ? ? The trueth is , do I have to tell her I was uncomfortable at that time ? Cars were congented around these buildings more than I had expected . French verbs are changing so dinamically . This is what it 's facinating with French . My dog died recently so I was suppoused to cry easily if I watched a sad movie . As usual , I did my favorite exercice ( and the one which is the most difficult for me ) . I do n't think this is quiete the place for you . After I solved my thirsty promble I wanted to write something . But I have no idea what I should write about . . . . . . . . . because recently I did n't do any thing that made sense . it killed more than fifty thousands people . and destroied so many buildings . I 'm going to go to an italan resurant tomorrow . If I eat slowry , will I lose weight ? But , authorities say the Tokyo area would be all right if the Fkushima plant were in a worst - case scenario . The running menu was 30km with a pace of 4min per kirometer . If you know , plese tell me . HONORISTICS AND `` THANK YOU `` and tried to use `` Keigo `` or `` honoristics `` , in Japanese . It is very interesting to correct sentences that are writtern by foreign people in Korean . In the futuer , I also want to learn Chinese and Japanese . I always says that I have eanught time tor that , and I learn in the night . So naw I have to write again . because a lot of Japnese companies are deep in red for the fiscal year of 2008 . My co - worker whose name is Agnes went on a bussines trip . My first daialy . I think that I might not have enogh time to see you , but if I have , I 'm looking forword to seeing you . I am still comfused about the realationship with my BF I doubted anyone could do the same as him , but after the seminar I could belive . My systert got married We will meet up and have a meal toghter , After the home celebration , I wil go to the pc room and play the game sc2 and then I have to down load some files form the brokend computer . Hm , maybe it 's not so easy to down load files fromenthe the computer . I was busy , I had a cold and I exausted so I did n't over work today . Recentry I have n't been watching TV . is we go into retail stores talk to people about Microsoft techenologies . You spoke up about what you wanted to see the next virsonal of Windows Windows 7 is designed be faster , more livele , and more conpartable , with more devices and applications , than ever before . so they 're really convinient to get to . And with the new preview pane , it 's easier than ever to see all the windowns that you have open at the same time . which allows you to interact with the conputer using only your fingers . now it is easier than ever to share those documents , pictures , videos , music , even prirners , with anyone in the family , from anywhere in the house . With Windows 7 , and suport devices , you can get even better experience with Device Stage . We hope you are as excited about the next version of windowns as we are The Reasens Why . . . But it was realy difficult - there was snow , a blizzard and I was very tired and weak ! : - ) Thak you for reading and correcting my sentences . . . When I reached the railway station , I choiced the wrong exit . I changed the date of my tecket at the front of the railway station and came back . My parents write more because they send it to ther friends , colleagues and relatives . Yeserday , I had a chat with a friend on Skype in English . Before departing from Tokyo I woried about my kids 's health conditions . I 'm currentry being extremely lazy , more than ever in my life . even though im still keeping in touch with them , some of them seem to have forgetten about me already ; that I even existed in their life or not . If so , I would n't chase after them , as I got to used to forgetting my friends intentionaly due to the problem of distance . The seasonings are soy sauce , mirin , sake and suger . Put the all ingredient in the pot , and boile it for about 15 minuts . Put it in a plastic bag whith flour , then mix it . Next make the sause . Its ingredients are soy sause , rice wine and rubbed garlic . Put the fried wing tip into the sause . I had a chat with Erica this moning . I asked her about the present perface tense . She said that , in France , the wather is bad ( ? ) but that she and her friend were really happy at the When they came to Thailand , we traveled togetter and had Thai food togetter . Good nite . They intended to make their local Bon - dance into major dance like Awa - dance , and held a dance festival in Omotesando , Tokyo , which is famous as a site of Goth - Loli fashion and of yougster who appear dressed as manga characters . There are his favorite phreases . He likes to speak these phreases onece every two hours . My anty and uncle are coming over tomorrow morning for New Years ' greeting . and poor people will stiill be poor . . . . No one wants to wastethe their income . Heppy new year , Every one It is a small class with only 4 peaople . There were small candles on evey table . But we chose a main dish owrselves . Lerning another language However we should use formal phrases in particulary situations . Definitety the word meaning is right , but actually it is not acceptable acording to the time and circumstance . My university , university Keio , is one of the most difficult to enter out of all the private schoo in Japan , so there is many people who are able to speak English as fluenty as native speakers are . It is regreted that I have not had such experiences , as I have studying English for so many years . It is tipycal of Japanese students that they can not speak nor write . Aside from abobe story , I am excited whenever I jump out of the cage and enter the new world . I need to do some shopping or lestting . As the reviews on the website said , the service was terrible , but the tast was good . I didn n't know about this nice site . I only staied for a few hours but it was so nice to see them again and chat . It featured TWO DOOR CINEMA CLUB , PASSION PIT , TAHITI80 and SMATHING PUMPKINS Of course , I ` ve learned English at school and at the University - but without any visible sussess = ) Once I started to read `` Harry Potter `` and , you know , I was totally irritated by the wokr of the Russian translaters - they perverted all the names in the book ! And I just do n't want to feel shame for my knowledge when I talk with foreingers or sending postcards on Postcrossing . . . I received my new sleeping pill , because I 'm insomunia . So nice to meet you , my freind ! `` Katuo bushi ( a piece of ( bried or breaded ? ) bonito ) `` and mayonnaise if I 'm not sure whether this rumor is true or false becasue But in fact , I really do n't like the deadish coding . Words and vocabraries Are you trying to let get your parents to start joggig ? I watched a documentary progaram on TV . Learning and promoing language ability has no ending . Many Japanies students do n't have their own religion . However , I was absurbed in the fantasy world and it did ' nt feel like a long movie . My friends who watched Avoter said this too . There is a Chinise ( maybe it 's Buddhism ) temple near my house . It occasionaly has events held in it . What celemony is it ? They should spare a thought for their neighbors before offering prayer for the dead , should n't they ? I think it 's worth to go to Guamu just for the color of the sea . When we smile , happieness comes to us . He told me his father just passed away due to a heart attact . But it 's quite shocking because his father was quite healty . In fact , I do n't know wherther or not he is my boyfriend . I 've been thinking that I realy want to go everywhere in the world . Because , when I watch movies about Victoria in Canada , I 'm always stunned by the pictures of huge forests and high criffs and the views from the top of the famous mountain . One tourist wants to watch Japanese Cosplayers on Harajuku streeto , another wants to be a Ninja . I do not know what should I say , and as you can see , I am not good at Engllish . I like wathing movies and TV shows . It 's the reason I want to learn English . My husbund and I visited his parent 's house yesterday . During occured talk I got shocked . In Decenber 2009 , I 've quited the job . Expecially , I like to smell the cold dust near nightfall . borrowing custumes I often feel lonly and bored though there still a lot of things I should do . Naritasan is a famous temple in Japsn . Ther was TV program on about pyramidz . I found TV programs about piramid on the last day of last year too . I wandrer why there are so many about piramid on new year 's days in Japan . But , as I watched them , I gradually bacame interested in piramid ! Some day , I wanna ( want to ) go to Egypt and enter a piramid ! Once more sad Middle Auturm ! Anyway , children will be sad if they will not be able to go out to join a lanters parade . I know some people who really do n't like Polish bands and singers because they say that Polish music is n't as goog as music from the USA or other countries . So , I know how much it costs and its consentration . I walk 20 minites to go to school . Several years ago , a famous mathematician named Arnold refused to enter the Pope 's academy because the people there did not justify ( ? ) Jordano Bruno . I am going to go to Iwate tonight to see my grondmother . So I must ride shinkansen altough a Shinkansen ticket is twice as expensive as a bus ' . . . I have to memorize many chords and pratice for a long time . The size is smaller than guiter and the guitar has 6 strings , playing it is easer than guitar . Right now , I am praticing `` Somewhere Over the raindow `` . However , I have to install the applications I installed on the last version AGAGIN , because the initialization was necessary for me to upgrade Proyo version . I 'm taking a correspondence course in pedagagy , I 'm so sorry to break my promise . I promised that I 'll keep a diary to improve my wrting skills . But every day I think to myself that I 'm too busy to keep it . Tomorrow do it , ok ? Then I dind n't do it when tomorrow comes . Yes , I know I should n't delay what I should do tomorrow . But I ca n't obey it , It 's strange . I really want to improve my english . And I know the way to improve English in my mind . But I do n't follow it . So sometimes I hate myself . Why do n't you do it ? Why do you delay it to tomorrow ? Why ? You ca n't do things like Aya . you prmise you will do like the way Aya does . but you break it . it 's so terrible . But I do n't know why I ca n't . Every day I want to be better . I study hard to catch up with my calssmates , I think that they are really great . I must study hard to overtake them . and I do it im my own way . Every day I study English untill about 12 o ' clock . I review my subject . I do lessons carefully . I hope I can catch up with them through my hard work . I know it ca n't be callde `` hard `` , in another 's mind , it 's a ordinary life , ca n't be callde `` hard `` . As for me , I think so , but if I stay up too late , I 'll feel too lethargic to have lessons . It 's my weakness as well as laziness . Second , the governmewnt should take Japanese twin sisters are roll playing MAIKO with a univercity student . I am attrcted by MAIKO . Try to sarch `` NHK - DANDAN `` in the internet ! ! Her daughter is going to start kindergarden this April . somebody wrote that this website almost has Japanese as the mother tongue laguage and I think I could not get to sleep . because I feel so excting . It 's expensive but usefull for me . SUBWAY - sandwitch I always order Subway 's dayly recommendation . Yesterday , I ate a BLT sandwitch . One reason that I like to eat sandwitches is I can eat vegetables . Recommenndation of today is `` Avocado Veggie `` . I thought I could study hard in my dormitoty , however I was overconfident . com is still undergoing maintencance . I decided to unionize with the others to show our attitude that we wo n't aceept it ! Today I talked with my best friend , and she said thath her mother is sick . I 'm impressed by his belife and I hope the Prime Minister of Japan has I want to visite Bhutan one day . In China , parents always treat boys better than girls . Also , I 'm smarter than her , so I gian more attention from our relatives . I cried out : how could you say that ? you mean I just help you because I want something from you ? okey , you tell me , what should I ask from you ? I wish you can get me a girlfriend ? or , or wish you can marry me ? My sister totelly drives me crazy . . . My parents and I just confussed about what 's happening to her , and what can we do for her . She feels longly and homeless . These days / Recently , I 'm redading a book called `` Small Steps `` wrirtten by Louis Sachar in English . To some extent , experience can be said as a custom or behavior that was formed in past days , and can give you ability to know what to do when the case is different from what exists in textbook . Recently , I feel conttantly irritated . When I see people who are very ill - mannered in the street , I can not help but get angly . I feel very relieaved when I communicate with you on Lang 8 . I enjoy holydays ~ I 'm reluxing on the holydays from 8 / 13 . Today I 'm going to clean my room , loundry , washing the deshes and so on . So , I 'll do these things on my holydays first . My sonsin is sick and I think I am going to be sick too . I am a univercity student . So I gose to baseball stadiums at least once a year . Later he is going to show this pickture to his friend and say you are his girlfriend . Filally I agreed to do it . So at this period , I do n't have enough tme to administrate my blog . Coundry Living At the time , I could n't understand English well ; I just enjoyed looking at the colored pages without reading the articles in English . She did not study hard and endded up as a maid too . I 'm sorry for the person who replied to my writting . After I saw your writting , and tried to see it again , If you see my writting again , feel free to mail me . but useally I do n't have to write in English . I do n't think that I can say , `` I livd in England , `` as the first sentence of a speech . After that , I moved to the living room and called police but , at the same time , he cames in to my house . The police was asking me for my adress , as he keeps coming closer and croser to me . I put the telephone receiver on a table because I thoght the police could get my adress with their tecnology . He cames into the living room . I attacked him again and again untill he could n't stand up . hallo ! Everyone : ) I want to study English little by litlle so that I can go study abroad to in the future . The Ueno zoo was fomous for having giant pandas for a long time . Especialy Indian movies . becuase I was n't sure about a few of the questioons , I guessed . My out - patients could n't rearch the hospital due to stormy weather . It 's so beautiful and . wondaful . Fact : I attended a trainnng session for running . It said that scientists have found a new species of spider wich is able to spin webs about 25 meters long ! I do n't think I 'll ever go to Madagascar for a hollidays . . . There 're common sence that It 's difficult to memorize vocabulary and there 're too many thing to memorize . I do n't known what happend to her . She often graspde / rubbed her ears . It trubled me . It would be very effective if your working atomosphere is like a English speaking country . Name your dog or cat , Jack , David , Alice or Cartherine . Hia teacher is an American who stayed in Japan more than 6 years and is learning Japanese . He likes Sumo and he belongs to a Sumo club where he must speak Japanese , because all the members are Japaneese , he said . Some Japanese are excellent teachers who can teach you good English and their grammer knowledge is marvelous . Hi , everuone : ) But the article I read was critisizing this movie because it is historically wrong and Pocahontas is too sexy : ( And that this wrong image will affect the thoughts of children too much . In the article , this kind of thing is written : `` this story is like Anne Frank falling in love with a Nazi ofiicer . `` It means that this kind of love can never happen between a new settler from England and a Native American . I want to study languages by chatting with people on my computer and I serached for a website like that . ' Maria ' wanted an option of replying to comments to be implemented , with which I strongly agreed , and she encouraged us to use ' native nod ' function more to confrim the other natives ' correction would be beright or fair . Maybe all we want is to make this wonderful language - learinng site ' sustainable ' in terms of funding or in terms of level of correction of any languages . When I went out to the exit from the circle road crossing route19 and route1 in long beach , my car bumped a car which overpassed my car on the left side . what is why , I migth go to phuket . Because I think that they sang more earnestly about people 's feelings than in comtemporary songs . It was too difficlut . I think taht Italia has many home - loving people . I realized there was an increase of foreigners from various coutry . I really love a multi - cultural and chaotic enviroment ! the main avenu is srrounded by many anime signboards , which are huge and crazy ( as many reasons . . ) . and illigal merchants were selling illigal software or erectric goods to pedestrians . Becouse , We have to do practice and more . I want to obtaine a driving license soon . Mexico is just as beutiful as Canada . My town is as big as Calgy . Mexico is not nerly as big as Canada . I do n't like the bus becouse the bus is very crowded . If I ca n't find a seat , I have to stand for fourty minutes . The grammar in these two languages is pretty simmilar , though . If there are any affixed decorations ( for example , banboo leaves ) , you should hide the small bone with it . However , I only have a few imformation about Mexico . If you have been there before ( even if you have never been there , but you are familiar with Mexico ) , please let me know which places I shold go to . and foriner . haha My dream is to go and live in another country and marry a foreiner . Finally I am wrting a letter to you that I hope you will like . grandfater , I love you . . But I left my work for parentally leave . The concert thema is the Final Fantasy game series . Today I saw an article that if express tolls become free , many pepole will use cars , and as a result the theat greenhouse gas emissions will increase . I do n't think it 's smart to waste the commutin time . But , I 'll be larning English on Lang - 8 . It 's a very excting spot for Ghibli fans . Today was was very ivent ! this is my frist time writing something in here . I am restarting this bolg . The main purpose of this trip was to attend a wedding celemony . Because sometimes Japanese wedding celemony are really long and boring . On the way , I am really scared if I ca n't explain why I did n't ntice the valid period of the pass which depends whether I can keep on staying in Singapore and study . Bu lucily at last , after 5 hours of waiting I spoke to the counter staff . I am a software enginner . Somehow a lot of sofware enginner like animation compared to people with other occupations . I expalined my patent to them . I noticed that the American culture is very diffrent from that of Japanese . I 'm very very suprised , and I have to study the culture of other countries more and more , especially Australia 's . It was tasty , though I fogot the name of it . but I like everyoone so much . I went to Germany for bussiness last weekend . I ate sarami , it is very good . I am looking forword to drinking it ! Strangely , I think that Koreans bear a resemblance to Isreali because they share the same passion and temperament . How misterious and marvelous things God will do ! I called why the notice is not announced , and they said that it was delaied to next week . There are a few visotors and huge , about a meter of snow . I got into a blkes It was preasant to rige on my bike . I rode on a bike as a child so I still ride on a bike even after I become an adlut . I have got to be carefull so I 'll never break the speed limit . Today the wind is really storong . My collegue , who come to our clinic by bycycle , said that it was really tough to pump the pedals because of the oncomming wind , and that it took twice as long for him to arrive here than normal . He saw some people fall off on the road . This is sometimes dangerous because in the day when the wind is storong , we have more patients who break ther bones . The purposr of doing that is to enhance my English skill . I want to get other people to understand my English . unfortunatelly , I can not step in because everybody else changes a certain topic too quickly with smooth English . Jizo holds a staff in his right hand and a wish - fulfilling jewery box in his left hand . Thank you for understanding my situation and please do n't be offense if I can not provide you with my Skype ID . The photo studio brought me these nega . . btw today I worked at the cram school and it was my last calss . Anyway after I made a leson as usual , I started to give the students some advice like ' just be hoest about what you want to do when the time comes to think about clleage ' ; ' please do n't lose your pottential ' ; ' do not be afraid to take on a challenge and make a goal to motivate you ' ; and ' please study what you are interested in and enjoy developing your knowledge ' . Because many japanese students including me study just for collleages . Although they still do n't know what they wanna be or what they can do , they have to decide what their major will be beforehand . But I think that 's rideculous . After I entered coulleage , I found out many things that I should have noticed when I was in high school . The reason for my studing English In fact , we are very worried about it , because if we fail in this exam , oue parents will feel very disappointed , and we will feel very ashamed in our classes . It 's going to be a very spontanious trip ! So , I have to learn something new to do during long hoidays . My sister was good at the Flash MX Proessnal . And she gave me the So , I feel nervos . I ate a croquette of crub cream curry . I love croquette of crub cream ^ ^ Rtythm games are similiar to learning languages because both of them require so much time , persistence , and unceasing effort . This passege is mainly about the U . And I belive that without challenge there can be no self - respect . veryone would like to have it , and at the same time is afraid of losing it . That was a wondeful sunny day ! Luckly , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . Fior instance , I was asked to find the mistake in this sentence : You should n't turn down an opportunity when you get one . Tommorow is the first work day this year . I hope my work in this year is successfull . I 've just startpoint my job - training . Tday , I went to Cross Iron Mills ! A clush bag is a trend among young peple . Gary is ild . They are wroung . I 've been planing it recentry . All the Chinese food even vesetables were too . I tried to eat the food but It made my stomic upset . It was three tims greasier than the Chinsese food in Korea . Last year , the new ful ( from pig ) came here , too . ( the swine flu ) But it is bad to touch our eyes and nozes , so it will protect from the virus on hands . She and I were so excited and fureaking out ! ! Story of two mice . Mee & Moo the mouce 02 Actualy , I have no idea how to get an ice cream . Although private schools are still in the experimental stage and are much more expensive in comparision to public schools , there is no lack of application for the enrollment . and the acter Eric Mobius . After that , one of my friends wanted to play a shotting game . I tought Facebook is a tool of communication for people all over the world . She just stood outside the door untile her mother came home . Have you ever eaten Japanese fast fastfood ? If you come to Japan , I encourage you to try eating Japanese fast fastfood . The Yoshinoya is very famouse in japan . Hapy birthday to my friend ! ! 7 / 5 was my friend 's birthday , so our friends celeblated his birthday last weekend . Today summer vication ends . I was so happy during this holyday , I traveled outside the city . I missd my friends very much , so I am ardent to see thm tomorrow . I am going to study gramer next class . I do n't like gramer . Now , I 'm staying in Fiji becaouse I became student . By the way , lately my English school 's regidence was atacked by It was so denjarous . But abroad study campany still has n't tolked about it to us . So , every student thinks this campany can not be trusted and it will be bankrupt in the near future . So I am going to serch hard for another job from now on . I want to know about recomended shops , the climate , places that I should visit and so on . A week ago , I held a conference call with my manager and knew that the clients of new project are australians , so English skill is really important to communicate with cliens for new project . I cooked eggplant - laced pan - fried noodles , boiled radish , and natto omelet . So I hope thay you can help me with my English ~ It felt like my togue was burnning , During third period , we have to practice chourus . I wish to win the crown in the chourus competition next month . I 'm not strong in english grammatics , but I 'm still studying . . . pleasa help me ! ! I 've taken a bas everyday , but my feeling and scenery was different from everyday . It is a preatty day in Bangkok . I am going to have freakfast . It was a preatty dream . If I saw her in Bangkok I wonder what my frist words would be . I do n't know but maybe I would hug her frist . Despite this , I foun it 's quite difficult to speak Englis well . I planned to be awake in a few hors after my nap . According to the e - mail , I made it to the finel ! The finel presentation will be held this Friday . The templarature in Beijing is over 30 degrees . Now the landlord of our office is going to break the contranct and kick us out because he wants to use the place by himself . I 'm really willing to learn French and English , but at that time I was starting to forget my Frech becasue in the other Canadian cities I did n't have to speak or write it for about 8 months . It was AMAZING for me , because I was always dreamingn about the moment I could speak both languages very fleuntly . Could you tell me What the dorama ` s title is ? I had been exhasuted from all the stuff that I had to handle , so I thoght I needed a break aand this was the right time to take a break , even if I end up doing well and getting good grades this sememster . The temple 's quiet and calm environmentnd and my meditation may help me think more clearly . Had quite an interesting tiscussion about routes and reason of fic - writing . I junt found this site and I am a newbie here ! one of the important reasons why I study enlgish is that I 'd like to communicate with other nice people from all over the world . Although it is strange to talk to myself when I am lonly , I enjoy practising English this way . I was so surprised that I have been asked to take a break from my current job on Thirsday since my poor performance at my job due to my body condition is not good . I will seize this period of time as a vacation to recover my energ and ability . Today , the typhoon privented me from going to school . I can do houseword . Then my mather will be happy . ca n't go to school untill Friday . Be carefull , everybody ! I hav n't gone to the sea and gone swimming yet so I really want to go ! Korean 's big hoildays Korean 's big hoildays are coming up soon . What am I going to do for the coming hoildays ? After thses holidays are over , it seems really gloomy because there are almost no holidays in 2009 . These days I keet losing money from the stock market , which always makes me feel like I got up on the wrong side of bed . My friends said to me ' odajinii ' and I was a little happy . I read junp and magazines every week B : Well , I understand what you are saying but I want to keep this cordial relationshio with you guys . Anyway , you have a captivatig look . Englisih is not easy . . . I am studeing Englsih . I went to an amateure rakugo meeting yesterday for the first time . I like the chiken pies ^ ^ Sometimes I feel frastration about my computer skills . I truly belive that . I want to become a customer survice agent in an airport . It was very interesting and inspirable for me because they seemed to enjoy their conversation and I could feel their energy , even though some of the sentences could use correcting . Actually he can now speak Japanese more influently than before . Now I 'm following my acestors to be living where they had lived , therefore I 'm going to the past . ( I know for me is the right answer but I just want to memorize wihtout understanding ) I went to Graymonth with my flatmate . Testerday I went to the NBA game , Toronto Raptors vs Chicago Bulls . My cellphone accidently rang warning me of to charge my phone 's battery , that is also when I got a new idea . `` if you could , next time can we have tea in starbacks ? `` Im goin to finish writin my graduation thesis soon . Today , I 'm goin to go out for a drink with my friend . I try all the time to find an answer for the reason , I mean the most impoprtant reason we are here , on earth . I asked myself , did I do what I should onearth , sending the good messages for my envirment by studying , then working and trying to help people . . . . ? At the end , I felt even if I did and I am still doing this , I will never be satify with myself . If I help people materially or mentally with what God gove and ? still gives me ( like money , health , knowledge . . . ) I will never be at the top to thank God . no , I try to get hapiness and not just pleasure . I went to the hospital and the docter checked my temperature . Today , I will start dialy in English . I took the introduction to theater class this semster . As you can see , this is an introductory course for theater , but it is still chalenging . And next week , we will performe monologues in front of our classmates . Details of the monologue assingment is that we have find books of monologues , and pick one to recite . The exact performance day is next Wednwsday and Friday . After I read it , she will explain deatails on how to performe the monologue in the class tomorrow , so I listened carefully tp improve mine . I think I could do a good reheasal before the performance . I like croqutte because it does n't cost much ( around 10 - 20 yen each ) and croqutte with brown ( worcesteershire ) sauce is the best with a lot of beer . I ` m going to go to Australia in semptember I am stll worried about it We wirte a diary in English , read an English newspaper , read original booksin English , and study vocabulary together . Thank you for your kindness and hospitarity . I had not spoken English for a longtime , it was difficut to speak fluentry . I think learning anothe language is like sports . According to him , to keep your abity of playing basketall , you need practice everyday . I do n't work at the moment but I am going to look for a job , which I hopefly To be honest , I do n't hve any interest in soccer at all , Well , I thougt as soon as possible meaned just a few days . Rakhmaninov 's `` The Bells of Moscow `` is difficult music for the figure skating , and maybe for the judges , I think . I love this weather because it is like apring ! I hope to gain new knowladge ! I found it just now whilw I was using another site to learn English . What a splended site ! The only things I know about him are that he is marriaged and had a baby recently . So I boutgut two sets of coffee cups - Pink and Blue for him and his wife : ) When I got home , I checkd the word with my dectionaly . By the way , the reason why I mentioned abot movie theaters above is because I will write an essay about the construction of movie theaters . First of all , I agree that constructiong movie theaters is necessary . I wil upload the cat 's pics someday . I want to be a member of lang - 8 , so allow me to introuduce myself , I 'm Hill from Mainland China . I have writen a love letter ( But I 'm not sure ) for the principal when I was a kindergartner . I 've had no chance to play with kids resently , so Becouse I have exams untill next Wednesday . That is because foreign people ca n't come this univ if they do not have much money and considering the living standard of Chinese people , ordinaly could not come . However , many Japanese people , including myself , have several complicated feelings concerning Chinese people , because the Chinese response to Japan is unacceptable to the Japanses mind . Of couse this does not apply to all Japanese people ; but it is a pity that some of them it does actually apply to some of them . Therefore I will end my commmet . addiditonally , I have to cut and cut ( all the ingredients ) to eat . Terefore , I want to let univ . If I take part in such an activity , I can contribute largely to students and their parents concering their meals . My rome is very hot right now ! I thoght that my accident was awful , but I appriciated my friend 's kindness . Playing guitar is interesting , althought it 's a bit hard , I think I can have fun from it . Suprisingly , my guitar teacher is younger than me , and he said that there is a seven - year - old child playing guitar well on Youtube . He said if you pratce hard , you will also play guita well . What is the most inportant characterastic to being a good teacher ? The unuversity is the most famous shool in Shanghai . There , I made freinds with one Shanghainese girl . First of all I 'm going to lose 5kg of my weight without demaging my health . I will neither skip a meal to become thin , nor do sports exaggratedly . The same happend when I skipped meals . Yesturday , itturned out he had been sending it to `` big ' r ' obe . Travel to sinapore . Theycan get to choose their last meal . She said , `` Many citezn thouht some judements were unfair . How do you want to be procucceted ? I am going to pet shop becouse I want to get her some clothes last week , I was there as a substitue . I may get tir in the middle of the game . then , I felf I need to improve my English more and more . I have ( basically ) been starvining myself for an upcoming examination . . . When I study for a long time ( especialy subujects which I 'm not interested in ) , I become a bit crazy . . . If peaple look at me , they will ( quickly ) look away . . . We talked about the examination like I thought we would . . . while having dinner . . . . . . though we all really wanted to change the subjuct . . It is writen in English ! So , in my opinion , the economy gives us a kind of grammer to recognize the environment around us in a new light . After all , meeting strangers means facing the unknows . And it 's human nature to feel a bit uncomfortable about the unknow . Most of our fears about dealing with new people come from doubts about ourselvse . because it is defficult to put on . It makes me creay , because I will feel very tired when I am busy with my work , I want to take a break , but my colleage ask me to do something important . But I ca n't , nor can I talk about this with my friends , they will think I am creay . But what I am doing now has nothing to do with English , and it is in cotrast with my aims . I do n't know how to hang on here , but it also very difficult for me to change another job , because the high cost of living in Shnaghai . I am a little afraid of this kind of thing , because I do n't want to ask my partents for money , because it is hard for them . Please correct my writing from now on and engage in conversate with me . Also , what kind of materials should I study that will allow me to speak out or verbalize more complex ocabularies ? But , because I have never been to other conturies , I am a little worried ( Past tense ) One imortant reason is that my birthday is on the 9th October . I went to practice bollroom dancing for the first time in two months . The Teacher 's eaplanation was always precise , and it was easy to understand . Lomg time no see everyone ! ! Though we promised to meet at Kichijoji stationon on September 29 , he could not get on the right station . In Japan we call America , Canada , France and England the four main contries . Thisfamous story dipicts well how large Inokashira park is . However the girl did n't stop standing on the boat and finally , she was scolded by the superviser lol . The master repled `` none . `` Unfortunatly , they had no money so we went to a cheap one . But they were hopehully satisfied with my translation . I did streach my body fully before the class and it helped me follow the moves easily . nunance , implication and connetation , ect . In addintion , I 'm curious about ' would have p . How differant is it . . . Korean English teachers taught me incorrect grammer in my school . I believe you homest . How differant is the nuance of these sentances ? If you are interested in Korea , korea language , culture or singers , I will help you , Would it require an addictional fee ? I persented yesterday , but the presentation did not go well . I ca n't recogonize what the questioner was saying . I was shoked ! ! ! ! ! ! ! ! ! ! ! ! I talkd so much on Saturday because I joined my friends ' bridal party . I would like to know if I have written it / this correcrly . Hi ! ! ! Now , I 'm studing `` Media History of Japan `` at my college . My other lenguage In Spain , Spanish is the oficial lenguage but there is also Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak all 3 of them . ( ? ) As for Catalan , it is a romantic language derived from Latin and is spoken in Catalonia . ( Levante is in the area of Valencia , the Balearic Islands , Andorra is a small country in the Pyrenees , southern France , and some in an Italian city called Alghero , is the 75 most widely spoken language in the world and I am very proud to speak . ) ? ? ? I cut my hair for the first time since I came to Austraria My favolite hair style is short hair ! ! ! so my schedule is very flexiable . I would be greatful if you let me know when would be I 'm a menber of Track and field club . Fortunately , I could avoid that and I 've beeen working as an teacher in a high school . Is realy hard write here everyday when you have a endless routine . And I thought the only thing that made us feel a little unhappy is that the serving fee is 10 % of the price , even higher that the GST ( the Tax ) , which they did n't meantion outside the restaurant . Super robbot Wars L This is tha latest in this serize . Today , I restered on the web site , and then added friends . The main materia inside the cabin is leather and aluminum . I came to take an interest in it because when I 'm reading Japanese journals that male native English speakers wrote , I ocassionally come across feminine speech and I 've had a feeling of uncertainty about feminine speech in English . Todya , I 'm in a bad condition . I bought a bottle of watter first thing when I arrived . I felt good working because my friendly calleague were just seated next to me . Shewent to China adn studied there for 4 years . The researcher , however , argures that it is no problem because it is not clear that carbon dioxide causes global warming . The restaurant is one of the most delicious creparie in Paris . At last , T ( t ) he Summer Vacation is coming up tomorow ( r ) ow . My Pregnunt Friend She is pregnunt now . Touhoku has a lot of beautiful nature but the nunmber of historical tourist attractions is less than other areas because it used to be the barbarian area in this country . Ritht now everybody greets me like this . LOL In addition , I 've considered my plans to improve my listening ability : listening to some CDs for TOEIC or Western music carefully and confirming those lylics ( As far as the latter goes , I think it 's kinda meaningless though LOL ) Actually , I came to know my big weakpoint in English . Is reading nobels or magazines best ? I can not get to sleep until 1 o ' clock in the moring . Watching two episodes of FRIENDS before sleep is my hobit now . So after all , it is 1 o ' clock in the moring . She invited me to a restrant and we talked for a long time . After gratuating from university , the rest is beautiful when we remembered the past between classmates . This was my frist time making a cheese cake ~ Therefore , I could enjoy driving while admiring the beautifle view of nature . We could go out to eat delisious Japanese kaiseki , which is a set of Japanese food , becaue my grand father was pleased that we visited his hous , so he celebrated our visit and the new year by treating us to kaiseki . I 'd like to get well soon , because I 'm going to go to Ausyralia on Sunday . I probablly understand Past Perfect Continuous which I mentioned in the latest diary : D Thank you everyone : D I do n't think I could live in the room where someone was killed or committed suicide and nowadays appears on full fullmoon nights : ) There were Mexican vampires , El Muerte , Retablo , Santa Muerte , Mexican holydays . . . It 's convinient to use , but when I turn on the heater , ( the air in ) my room is becomes dry . I think it 's the biginning of a cold > < ! So I 'm hanging out a lot of wet towels in my room for my thrat , because I do n't have a humidifier . I entered into a Japan masters swimming commpetition . Ten years ago , I was in my second year of unicersity . I dind n't have a exact address . I rememeber when an English teacher who came from American said that Korean emotions are affected a lot by the weather . I was really surprised because my feeling is often changed by weahter , too . I 'm a bigginer in english The house was increadible beautiful . Heloween is popular with young people . So when I feel ache on my back , I look at my addomen immediatly . Oh , a litle part of the world . Good sleep is very improtan for our health , especially for girl 's skin . If I mention Japanese Manga subculture , and how it is gradually spreading wirldwide nowadays , I can give a basic outline for Manga fans . Like for kindergarten boys , kindergarten girls , young teen boys , highteen girls , men who golf , for gamblers , for marhjan fans etc . All manga is able to be clearly devide into two family trees . One belonging to men ` s culture and the other women ` s culture . Today is like yesterday and I think tomorrow will be ilke today as well . I 'm sick of the same rutine . My husband told me about Buddhism meditation , and reccommended me to wish well on myself , on people who are close to me , on all living things , on others whom you dislike , and on others who dislike you . do not hesistate to ask : ) At beginning , I thought we would barbece by ourselves . I apperciated their hard - work so that we could have such yammy food . I diside to study English more / harder . If I wrote this sentence , I would plobably mistakenly use `` which `` or `` that `` . So many suggestions and advices were buzzing aroud my ears to tell me which way should be taken and which should be isolated . I do n't konw why the first letters can not be auto - capitalized . Welcome to correct my takes misktakes . One of my favorite caractors in Greek myths is Hermes , the Romans call him Mercurius . My littl finger got in my nose . I saw it in the ketchen after that . mayby somebody will help me ? Stomack Flu But having found this site I dicided to start a diary here instead . Now I am quite exhausted , but it 's okay because I would have been dpressed ( for nothing ) if I had nothing to do today . The day is Nayional Maritime Day . Recently , I love looking at the National Geograpic site . After few years I dicided to brush up my English . I attempt to listen to English podcasts , and the radio every day ( Maby you know some good radio stations with are lot of stories or interviews ? ) What 's more , I bought a computer program . In Japanese , however , it 's totaly the opposite . I really enjoued it ! I want to be able to speak English fruently . Lately I like to watch `` The OC `` series dorama on DVD . However , after comming to the US , I feel this is not true . I 'm translating some part of infographics book and ca n't say in russian `` mapped image `` or `` mapped picture `` . I have an example sentance : I felf his love for her . I visited sports shop to buy a belt bag for runnninng , which can hold a pet bottle . Hoever , recently I 've been reading some books ^ ^ I do n't know the sistem of lang 8 . Yesterday my wife and I went to see Avatar , the 3D verson . We did n't plan to see it in the first place , but after viewing so many recommandations and the high ratings people gave it online , we decided to give it a try . Hope to see your letter or masege . . . Are the governments grasping the serverity of it ? It is still hot in Japan dispite it being September . Almost half of my time at school , I sturggle with Internet exlorer , not MS Word . Today , the feneral for two Marines killed in Yonpyong - do was held . I cried during the feneral . Like bungie jumping and free fall . Janpan 's earhquake I remeber thant I forgot to take a bath this morning . I like harbs . Many kinds of harbs are in my house . Especially , he likes Tyme , Lemongrass and Chicory . I sometimes use my harbs for cooking . He sometaimes watches Japanise movies . It 's a holyday today . Perticuraly when we crack jokes each other , we transcend the generation gap . I understend a lot but my speaking is awful ( ? When I was a high school student , I was always cocerned about the school uniform 's somehow ugly style . When I touch my uniform , I remember my teacher , my school life and all my efforts in that lovly high school . I started to study English on Lnag - 8 . I watch animetion every day . Some parts of the aninemation I have watched few times . I hope the animetion can come out again . I understand myself , I lack some grammer and vocabraly . However it 's may be difficult for me to make my dream come ture , because I have a four month old baby . . . Maybe it was a deram . . . If he kept shotting in a normal way , he may never have caught a sheep . There , he walked cheerfly . Our country affected by huge natural disastute . The aftershock contine now level 3or4 . I do n't like scinece . I want to meet her again and talk about things that had happend lately I can incroduce myself here and we can make good friends . Before I watched the class , I did n't know how a nursery was differnt from a kindergarten . I want to talk in English with foreigners but I do n't have an oppotunity like that . So , I ca n't speak English with a foreinger . There are many foreiger guest in Roppongi , I think . Actually , I tought the beach was huge when I took a trip to Miami . . . Well , I enjoed that time ! What a borring news ! ! This is my fiest diary . It is very cold , thougt today 's weather is fine . From Fumi in Nara , strugging with my final thesis ^ 0 ^ He went there with almost no English skills and he also did n't have money except for the scool fees for the university . The lessons are one - on - one , and the teatcher is a very intelligent person , not to mention an exellent player . My colloborator from Chine puts a lot of pressure on me . Please let me know the rasism that your country has . Speaking of `` sakuramochi `` , Japanese traditional sweets , there are 2 diffrent types : I feel lonely , but , next month , we will enjoy beautifull wisterias in Nara . hai , are you still awake ? I need your help to improve my vacab . So if you have any good suggestions on how I can improve my English , please let me know . In the morning , there were lots of gray clouds . They put me in a bad mood . We stayed under one umbrella and talked , laughted , and did different , funny things . I luve live in Taiwan . Currently I am searching for a new job while learning English and Japenese . My interests are reading and listening to music ; I like to read novels and comic books , and enjoying listening to Vocalid songs . It 's not my first time writing an entry in Leng - 8 , as I 've worte in Japenese before . I love jogging , I used to have this habit , but sundely I stopped . It 's fun , especialy to me , because I do n't like to exercise myself in the gyn . It 's too crownd , I do n't like the music , and I alway have a excuse not to go . I 'm working realy hard because I 'm going to travel on June 28th , this summer , and there my aunt works with models , this boders me a little . I 'm trying to use words that I usualy never use . SAD PS : My guitare was broken last week quite badly . I 'm still waiting for the luthier to fix it , but it seems that he is taking his time . Recently in Japan , animation dance is becoming more and more popular among young people becouse of a dance team . Their name is Hamutsun Serve . Furthermore , even when someone has a good command of a certain foreing language , if he or she has no absolute idea about the culture of the other person who is speaking , it will affect their conversation . I went to the Abercrombil & Fitch to buy clothes . Then , I reserched this song 's infomation . It is just a tweet in the early hours of the moening . . . I found this web - site in Nikki 's daily newspapper . I know , freedom is realy good thing . I have to read a lot of documentation , comment 's from programm code . It 's realy amazing Sometinmes , I want to try to apply to be admissioned by some American school , but I know , I wo n't accept it if I do n't study hard ! This year one wo n't be able to see the fireworks show . The municipality ( Edogawa ward ) has dicided to refrain from holding the event because they feel it would be insensitive to ( the ) victims of the 3 / 11 disaster ( the huge earthquake and tsunami that hit northeastern Japan ) . For several weeks after the disaster , some people accesed ones who were enjoying joyful occasions by saying `` That 's unscrupulous behavior `` or `` You should refrain from such activities . `` These sentenses are correct ? The luckist man in the world , Steven Bradbury , took the gold medal in the Salt Lake City Olympics on 2002 / 2 / 16 . I 'm so exhausted becuase I worked out for 2 hours . Even thogh I do n't have any energy left now , I feel much better . I asked a shop girl if she can try to find the Leggins in other UNIQLO shops around Tokyo Ikebukuro area . She phoned many shops , but the result was the same . I highly recommand you all to use a bluetooth keyboard . Did anyone whached the news about the earthquake in New Zealand ? Yesterday , Christchurch had a big earthquake . At lunch time , our teacher told us Christchurch had a earthchurch which is level 6 . 5 . When I came back home , I watched TV , I heard that about 65 people died . Now , that 's amazing , I hope that people who live in Christchurch can be better . In concusion , these are the reasons why I think the Internet , mobile phones , and the development of the medical technology are the main inventions and innovations in the twentieth century . There is no judgement , no confradiction and nagative talk and we sometimes can teach each other something we know . I do n't have a lot of friends but I do have a few close friends . I know they have their own themseives however ther are helping me improve . I want to write English very well . I want to speak it very welll too . My mother is a nurse whose job is to care for hadicap people . Her hospital has a school , car , and bus for them . But , in the country I am living in now , many handicap people use the pablic bus , which have a lift for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work whthout hiding thier identity , and the class - mates talk to them as a one of their friends . Most of my friends will choose coporate life . studing overseas would also take almost all of the money I have , and I would need to sell my apartment which my parents bought for me . It is so hard to make this decesion . I hope verything is fine with my friends . If nobody wonts to correct my notes . It took me about 10 years before I lerned English . As a Japanese , I also worry about TOYOTA 's probrem and situation . I 'm looking forward in prepere the school 's festival . such as Germa , French , Korean and so on . He has gotten a girlfriend recentry . I felt so lonry . I volunteered at the univercity last Saturday . the parents of first year students come to the campas . the campus tour was so popular , we incleased tours . It took more time than re - installment . damm . `` You will be here in 5 munites ' time `` . Does `` in 5 munites ' time `` mean within 5 minutes ? on an early mornig he chased me and then he finaly stopped after a few moments . Begause we can operate it by putting our fingers on the screen . I still ca n't bilieve it . . . But today , I found on the interenet that the U . K youth moility scheme was already full by 19 - Jan - 10 ! I feel also this cetntury 's moving very fast . So I definately recommed that everyone comes to Seattle to study English ! ! For that reason , multiculture is a big advantage of the tourism industry and this can contribute to the development of the whole society in general . I have had some frusutation in my office . Hellow everyone , my name is nakasan . I want to spaek English . Yesterday , I went to Toukyo Art museum . The museum features [ Stadio Ghibli ] now . [ Stadio Ghibli ] is a Japanese animation company . I heard Napoleon Bonaparte was a short sreeper . I 'm embarrasshed / / The day after tomorrow , I 'm going to move out from the currnt place to new place ! I ca n't belive this many things are here . Because I 'm taller than avarage for Japan and my shoe size is bigger . Have you ever heard about the Winner winner chicken dinner ? It is an old American motto with long histroy . OK , let me tell you something about it . It is said that in the 19 centry in american , Las Vegas had already become a fairly famous place where rich and wealthy people spend their money . At that time , there were few casinos there but each of them provided good service for custorms to enjoy ther time there . At firt the custormers mostly consist of the rich and famous people , but as time goes by , the economy got better , so it brought more typical people without fame or a high place in society to Vegas to try their luky . At that time , almost every casino brought out a new service in which the custorms were able to buy a kind of dinner with chicken and some meat in it . That was such a cheap choice for most players , so it gruadtully become an American motto : Winner Winner Chicken Dinner ! Now I am looking for a new opportunity , espeically in a foreign company . Please check this text for me , ergent We have Chinese people who can speak Itailian , English , and germany . . Reacently my opportunities for sleep have become short because my work schedule is too full and Actually , I got merried and have been here for a year . I usuall use broken english when I talk with American or other people , but it 's enough to be able to communicate . Life in a forign country is hard . Lost ( my favorite ) is about the survivors of an airplane accident that crashes on the beach of a misterious tropical island . The survivors try to escape from the island where amazing things can happen ; for expample : people are healed from illness , there are polar bear attacks and a smoke monster that kills people . I hope you 'll help me brush up my Enlish . White day is a very happy day for somone who has a boyfriend or girlfriend . And they give presant , such as candy or red - roses . Aside from the chimps , Rideing them seems to be fun , First of all , most of our cities are very dense and our roads are very , very nallow . Secondly , Japanese people are very health - consicous , so they tend to walk places , or ride their bikes . I saw on the news on TV last night that the goverment and some of people in Thailand do n't understand each other . The people who call themselves ( red shirt ) are protesting against the goverment because they do n't like the Prime Minister . They want the Prime Minister to resign from the goverment . We have had this problem for a long time , but last night something that we did not expect has happend The goverment decited to stop the Red Shirts . One of the people who died is a photograpy from Japan . I am looking forward to know what the goverment will do in the future to make the improve the suitation . and they can understand each other . I hope everything will be all right and that no one else will die in the furture . Thank you for helpping me with my English long time to write my journal entry . He did n't send any messages or emails during his absence , nor did he take the innitiative to talk to me after coming back . While having lunch with my junior colleaque at a pub , I saw the selected design for the 2nd phase of the Yongjong passenger terminal on a newspaper , and I was almost stunned by their reckless design scheme choice . There are very beautiful flowors in Japan during the spring . I am still a student , and my major is Internation trade , Oh , I forgot , I 'm a freshman . To make friends is to improve my spoken english level , so , hurry up , plesae help me , let 's work hard ! Whatever your dream is - studying abroad , working in another culture , communicating with friends from other contries - it will come true with your little but continuous effort . They fought bravely against Japan and died for indepence . So I bought a white watch for myeself and a pink one for her because my estimate was 2000 ~ 3000 yen . I went to a golf practice center and enjoied golf . I 've found that lots of how - to books on developping I - phone applications have been released . I do n't know it is ture or not . He konws there . I hav got the entrance exam today ! Subhects are math , Japanese , English . It 's not difficult but I maed mistakes , OMG I hav to study still ! The Japanese govenment decided to start an English education program at public elementary schools in Japan starting in 2011 . It creats a big mess for homeroom teachers . The govenment is ordering teachers to teach English by themselves without any training in how to teach English to kids . That is , the govenment throws things at each elementary school . It 's on a first - come - first - served basis but capmer should come with an open mind . + ) I have one question . . . Where do you usually get your travel infromations ? I want to make a lot of friends throgh this Lang - 8 . I 'm going to practise my English conversation though skyp . I like it becouse I never had it before . I used to have long black hair with my bangs aparted . Being a millionare , the presendent of the world , a super hero , a famous actor or traveling all over the world might be part of our dreams when we were kids . Losting the passions we once had , now we pursue a common life , simple and stable . I saw an eclipse this morming . We Japanese tend to gather and drink when we feel sad , stressed or unhappy , the typical example of which is a `` compaining drinking session `` after work . Normally , a couple of colleagues gather together and drink , complaing about their superiors after 5 . The same thing can be said at the end of the year , taht is , most of us would want to forget sad and unhappy events of that year while drinking with a couple of friends or a couple of colleagues , etc , etc . . . . Godness . I prefer Q and A sessious report writing , because report writing is very difficult . I have to write the report in a specific style , for example , each sentence has to end with the same inflection . For my presentation , I will talk about my research for six minutes , and afterwards there will be a Q and A sessious . Yestarday I was not working at my second workplace , because the rules allow me to have one day for rest . For now I will just have to study English harder in Jpan . ( ^ ^ ) / \ ( ^ ^ ) But my bank account still shows a double devit . Althoughn I have the chance to take the test but I do not have enough confidence and always consider that I wo n't pass the CET - 4 . I just found this good place wich may help me to improve my English capability . It is freezy cold today . Three of us , including the taxi driver , were so embarrased that we said nothing for a while . So , we just had the Gay ( Pride ? ) Parade , which is one of the gratest paredes in the world . In particulaly , biology and chemistry . My ielts has passde 5 . 5 two years ago . I 'm fine with my classmates but some think studying in such a big group isn n't good for us , as it can distract us from our studies . And furthemore it puts things in perspectiving . And you must to know a foreingh language very well in order to be understood . On the other hand , education in your own country , for example , in Russia is very perspectiving too . Russian , Literature , Physics , Chemestry , Chemestry extra and History . . . . . . . . . . . . . . Yeasterday , I went to Shinjyuku to meet my friends . I think my heearin skill has gone a liite up ! ! There are no more than 5 people who can prononciate my name . I have a cat , it is a gril . It 's verry good gadget for me . I rented the second apisode of HullHouse . But I was suprised when I went through the toolbooth . Ithink people who normaly do n't use this toolbooth will use it from today . I have to be careful diriving tomorrow . I 've never been to such a place as the Rokies . But I laid down without hunging them out ! Recently I have n't writen diaries for a few weeks but I can get feed and other necessory things for free . This is a thank you to all you kind people for your yourpatiences in correcting them . It is natural that Japanese go to shrines when we need a peacefull mind . I feel TOOOO BAAAAAD ; [ I nerver thought about writing a journal in English . you will get a speeding ticket in Japane . you should drive by a speed of up to 40 kilometers to 60 kiromters . If you drive on the road with many houses on eather side or by a shcool , you need to follow that sighn . Can you corroct my sentence ? I felt it was eerie and thought the national histerics were something like fascism when I was watching TV . There will be the exhibition at my daughter 's kindergrden tomorrow . She brought the program from kindergarden last week . My daughter is in the yougest grade so she made `` daruma `` and `` christmas trees `` . So , how do you guys study for learning your secongd lunguage ? my computer broke when I tried to start windows and instanling some software , if I had enough money , I would buy a latop , a toshiba one . During my turn , the examiner just could n't find the form for the examine next to me , and he looked like he was very busy , so he was not so strict when I was driving , and that made me get 100 points on my dirving exam ! ! Sue : Parden ? I will call the others and tell them to get ready in advence . Santa clous came to the party / visited our party and gave me a present . My teacher say / said that Santa Clous is / was majoring in engineering . I had n't a chance to say `` good bye to Santa clous , so my teacher will call him later . Because Sant clous brings them gifts in that night . Children are hopehull on the 24th night . She has finally become accustomed to staying there just in the past cuple of weeks . At fiest I was worried about her mental condition in the changing surroundings . Thank you for readind ! Paragragh 1 : Intoduction : Travelers from other countries bring more advantages than problems . Paragragh 2 : Paragragh 3 : Overseas tourists purchase surveniors they can not purchase in their own country . It brings a lot of intersts in the country . Paparaph 4 : In couclusion : Generally , it appears that there are more advantages than problmes . I 've been studing it since I was six , but in recent years , I have n't been able to practice it . We had an all inclusive stay , meaning that we could eat and drink everytime for free : ) Egypt is a very interesed country . . . Kiss for Egypt : ) Bye . See you tommorow . ; ) The dauter thinks that roles should not be determined by gender but by personality . Louse in `` Fat Girl `` is closer to the contemporary woman than to the American sife in `` Cat in ther Rain `` . `` Cat in the Rain `` focuses on nuturing . Unbelivble ! So my town is convinient located but it is n't too busy Life will be defferent then . I would like to improve since being fluent could help me in my futur career . Even though I study englishI , I really want to write in English . I am going to enter univercity come Feb . 26 . If whatI am writing is wrong , please corrct me . Japan usualy hires the students as new workers until Spring . American , Europian , Chinese , and so on . . . One day , he happned to meet a pretty girl and fall in love with her in their childhood though he does n't look young , and after a long time they meet for the first time and they are so passionately in love . He had already lost 2 baibies because of famine , and now he had a new - born baby Pauro . Pedro never forgot this promise , and he sent his son to school . Pauro was n't a very good student , but he was a goos futball player , and when Pauro was 15 , Pedro sent him to his Transport Workers club , where Pauro trained very hard . When you open the card , you can see Santa Claus and a raindeer coming up to give Christmas presents . For most of defenitions , thesefeatures are : So the solution is reduced into a simple in theory : if yuo want to be successfull ( happy , lucky , rich etc . ) , simply think that you are . Woukd you please teach me this word ? Girs in Thailand were very beautiful and kind . But my girlfriend fobad me to dateother girls . 2008 . 11 . 18 Tusday Sunny My eyes were red and swellen , and I sneezed a lot and had a runny nose all the time . By the way , I ate beaf bowl at lunch . , I added too many red peppars . Have you ever imagined your future lover seoriously ? Finally , I could n't even shouw my smile in front of them , therefore I could n't see their smile either . I am extremly excited to hangout with them ( who is them ) as a friend or more than that even . Morover , I found the hottest girl one week ago by accident . Im really ashamed of the beheivior I 've had so far . If you are also trying to learn Madarine , it is good way When I am very moved by some sceans , I get gooss bumps and I ca n't stop my tears . Recently , I 'm so busy preparing my resume for appling for jobs in Singapore . . . Now , I 'm trying to learn in this way in order to distinguish casual Englis from business English . The first day was so crowded we could n't cross the streat . I enjoyed the weekend nights at hoom . I think it 's a great website because I can partice English here and I hope that I can help others to learn Chinese too . Salt or Suger ? And I mistakenly used salt insted of sugar . + Oh no ! + I do not have one thougnt . A lot of people are still missing or waiting to be rescured . For many people , it 's a very confortable temperature . By the way , I do n't heve a part - time job . 5 mounths of winter ! I only want wormth . Because I have played badminton for fifve years . So I can ues the computer . I retern books . : ) Yesterday , I drank too much alcohal Yesterday , I drank too much alcohal because of alumni I called my mather , I thought if I could hear mother I feel good , but it 's not ok . I want to say , we heve to be able to distinguish between correct and incorrect information . My day started at 10 a . m . I just went to kitchen , made some food ( it was an omlet made from three eggs and some sausages ) and I ate all of it . And in that dream was britain comic Sasha Baron Cohen , Britney Spears and some other TV - stars . My dreams are reaaly strange . I was the leader of the international club for two years , and I aslo stueid aborad for a year . Hi . Introdusing myself . My teacher gave me advice to look at this site to practice my grammare and writting . Next time I 'm going to do a transletion of some parts of sume books or something like that . Do n't laugth at me ! After class , I have twe meetings with other teachers . This is my frist time But my spoken and writen English is so poor , that I am afraid open my mouth . I do n't have a foreign friend , and there is no freigners around me . What if I speak English to my friends ? That 's so wierd . Second , they may not konw what I mean sometimes , because my English is not good enough for them to understand . But , she showed me how to cook it very carefuly , so it was very delisious ! Soak the fish , the onion and other vegetables in the sause . If you have a recomendation for flowers , please let me know . I had met a Phillipine girl who needs to learn Japanese . Through teaching it , I could have noticed diffierences I 'm too entuhusiastic to fulfill my work plans recently . But some clouds was hidding it . She took me all over the resort and showed me a lot of Disney history and tought me a lot of Disney knowledge . I think she is the most beautiful personwho who is alive today . Free as a croud , I learned a lot of things about shinto . Before going through the Torii , we bow tword the main shrine . Prists always say the most important thing is to respect the gods . Do n't warry about making misstakes . If you cleanse your hands parffectly , Japanese people will be serprised . I do n't believe in the existance of gods , Anyway , it was a nevel ( ? ) experience for me . Next time , I wish that I could meet another beatiful actress by chance . the story was about a mathematician who tried to prove Fermat 's unproofed theory . It tuen out that it 's made from glutinous rice and powderd tapioka . It tastes terrific and the textude is like that of a rice cake . After that we had lunch togeter , we had udon ( Japanese noodle ) Accoding to the Bus guide , there wer 2000 temples and shrines there . We laughted together and played pes 2011 . It seems that there was not any diseaster in my life today , so I closed it and logged on to the internet to realx . . . When you speak Japnese , you will find that your I have not gotten used to Japnese pronounciation until now . It 's the one of my favority sports . But I could n't do it . When I try to post it , I always recieve an error . Why ? ? ? How does everyone get cute pistures ? ? ? The striong wind was blowing and the rain was pouring . she gave the world a moral exemple that bridged ( the ) divedes of culture , class and religion . I have to travel by plane on a businnes trip tomorrow and the day after tomorrow . So I 'm very concerned wheather I can come back to the Kanto area on Thursday . I 'm really nourvos becous I was not taught on how to use the registeration machine . However , my corwarkers are very kind : ) it is so confortable to be with them : D she said one more thing that if you had made a call this mornig you would get the whole fee So I was little Luky . I am not really a hard - working or dilligent student , I always join in on some activitives in school rest time , such as dacing ( Jazz ) , when I dacing , I feel happy . so the Chiken 's name is vons chicken . Is it reallly good / interesting ? My birthday is janualy 17th . My family consists of 5 menbers . My dream is to be a good busness person . Becausem my family are not so rich . Some people say ( that ) the placement of her features ( eyes , nose , eyeblows and mouth ) is perfect . The story of the play is based on the dayly life of citizens of `` Edo `` ( medieval Tokyo ) or Osaka , usualy funny and sometimes moving . Please tellme me if you have time ! ) I thought that foreigh gods are very strange and interesting . I changed my job at the bugining of this month . Its been alomost a month . where I work is confortable and the enviroment is just what I wanted . So I decited to start studying English again . I 'm studying English so hard in order to go abroad and study English this Augst . So , I 've been atending English conversation classes since a year ago . She has wounderful stories about her life and her ministres in the church . Now , I i intnd to participate in an internship overseas next spring . Also , some elderly peaple think , a cool body is bad for yourhealth . When we think negatively about a lot of things , our mind can be filled with horor disbelief , anger , and other unproductive emotions . Today , I discoverd this site while I was surfing the web . I tkink I should drive more frequently . Today I had a soy latte , egg toast , salad and yogult . They had lots of stock , so they just wannaed sell them . . . `` Do you have any plans to get merried ? `` My hundle is Sukesan1984 . On the menu was `` Sukiyaki `` ( Japanese stlye beef and vegitable pot ) So I really feel greatfull for my friend ! ! My command of English isn n't very good . Sometimes , millionior give money to society , which is then useit to make a better place to live ( in ) . Even though we use the barter mechinsm for the market economy , it is not true that people do n't have the eagerness / desire to own things . Recentry , I do n't take any medicine . In a case when the symptons are serious or continue on for days , I will . prepar finaly chopped green onion , and grated ginger . I 've heard before that people in Australis eat a lot of soup when they have a cold . Because Dazaifu - Tenmangu is a beatiful shrine . When we are angry , not only ca n't we slove the problem very well , but we also make the conflict grow ( or worsen ) . The earchquake and tsunami are devastating , and suffering continues in northern Japan . I traveled to Punom Pehn , Combodia last week . bikers , taxi drivers , the staff of the guest house , a poor person said `` give me ur money `` , and more . . . This white cat has yellow eyes amd looks fat . I enjoyed myself chatting all day long with my friends on cacaotok , which is a famous smart phone application , and also the most useful messanger in Korea called NateOn . Children should be given guidance when watching TV due to foul language , and objectionable / abscene scenes . English is not good becouse I ca n't use English fluently . tasks given to me are not int ( re ) intresting , . They are boring . Lotte Mart stopped selling Tong Kun chiken because of pressure from public opinion . Tong Kun chiken was released at the incredible price of 5000 won . Actually , this is a naturall process as the company becomes larger . That 's why there 's conflict between the two intrest groups . The second issue is the conflice between the small scale sellers right to live and the consumers right to choose . Some groups who represent the rights and intrests of small scale sellers argued that Lotte Mart sold chikens unfairly in spite of the deficit . Regardless of whether sth sis true , it is natural for consumers to choose cheapper and higher quality prodect . The third issue is the properiety of the comment by Mr Jung , a top politician in Cheongwadae . But I can ' t do anything now . I can only do one thing , which is prastic my dance seriously and I hope I can get rid of my stiff dance step and not tear my trousers , so that my poor family will be proud of me . I 'm wondering what this santance means . `` Buill said you were in charge of real estate . They are outstanding , kind and always willing to assit in my homework and reports . Actually I mean I 'm happy because I can write here freely without warry about people laughing at me . I want to speak English more comfotably Every begining of classes , I get too much nervous . They were so delisious ! ! But still It showed increase in performence . I used this cart so I should return it over overthere `` . She answered `` It 's their jods `` . I 'm looking forward to talking with new frend from all around the world . Japanese TV broadcasting will be changed to degital after July 2011 and TV prices are lower these days . I am very satisied . About Paper media graphoc design a French friend tald me : I serch the correst recipe , the main crux is eggs temperature and setting oven time . In time , he rose to the position of a head agent soon after his appointment to Heiti on a mission . No one suspected the Colonel until he was caught when he was trying to sneak nto a confidential room of the Pentagon which he had no access to enter . Yesterday , I was very suruprised at the earthquake . At the beginning of the shagking , we thought it must have finished as usual , but it continued for a few minutes . My friend bought a backpad and a pair of slippers . Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as the cortoon , and they are interested in Japan ! I often talk about Japanese anime and cortoon to them . So , I want them to know another aspect of Japan , and I also want to know the cultuer of the other countries ! I can not alseep so I have to wake up . . . . . . . . take my money go to bank . it is hot today . I hate to walk in the street . . coz make me sweat . . but I wanna . . . . . . save save money . . . for my plan . . great plan . . . . I got kicked . . I am the amdin but they deleted my ID . . 2 years time gone to watse . . . . . I worked for it everyday . . . The number of paticipants was about 100 . So I ( deside that ) learn English every day , I ( belive ) that I will ( get sccess ) in ( June ) . hold on , I belive thati will pass english 4 examination f finadlly . I 'm sutuding English for an exam to enter a college . The second exam will take place half a manth later . This is a writen test . Coulud you please help me with my writting ? I 'm lokking forword to collecting my journal . I hoped to go to the hot spring in the south town . ( My country has a lot of hot springs around ) But It dpends on weather from now on . I should brance myself . by the way , I wrote the difficult poety phrase in the first paragraph , so It took a lot of time to write that part . I recieved an e - mail from someone who saw my profile at that website . And I recepted his invitation . I have learned that I should never use the webscam with strangers . And I delited my profile instantly . watashiwa nihongo benkyuo anatano ie pasokan wa arimasu ka ? The purpose is studying English , especially speaking and listning . They offer discounted prices on flights , accomadation , and car rentals . 6 ) and there are too many applications whose functionalities were extramely similiar , Unwillingly , I wasted 2 days recovering the OS , removing some applications which were rarely used , cleaning and defragment the hard disks and regestries , and so on . It is about 18 miters high and 12 miters wide . my overall high school score was not that good for my orignally university selection , and although I did n't have a very big passion , it ca n't be helped that I choose the Korean history section . but as I say , I was intersted in korea history . my familly motto is that everthing is influenced by the heart . When drivin my car , I plan the things I have to do today . I do n't hink I have any . . . . after that , I wanted to keep the class giong . I think that my studnets was so suprised that a beautiful woman was belching . . waht do you think makes a respected teacher ? study hard , and symphathize with studnets by reading their mind . at last , advice to lovely Chirwon highschool studnets . at this time , yu do n't have to be greedy , so they can find their own beauty , make impressing momory , and grow your self confident to challenge new things . so I wish you become the most sparklest star in the world . `` the new day , the owner of the most sparklest star is just you . That I was surprized and disappointed that many people said we do n't have to help Japan because Japan pilaged us before . ( I know , these kind of people are olny a few and they never stand for all of us Koreans and Korea . It 's not gossip , it 's a terible disaster that happened to human beings . He lost his house and family , only thing he has niw is a life . hellooooo everyone . woow , I am so happy . I slept for 14 hours . heeheheheh . I downloaded a movie that I am very excitiying to watch . imagine spending two and half days dawnloading movies ; two of them . So I had to go to the site where I oppend the movies . _ _ _ _ O luckly , I found the movie on direct links . It fit my toes and it was so confitibal . I canged my shoses to Geta and went to my home . Ito Yokado , one of the biggest super market chaign in Japan I tried to study Spanish after I came back to Japan , but There 's no lectere in my university and I did n't have enough time and money to spend for it . I bought one easy book for biginer , but that 's all what I did . , I dicided to study it again recently ! I enjoy finding unique names and I imagine what kind of pople they are . It means pig in Japanese , so I couldn ` t confirn to her that she was Ms . After I went to a cafe , and went to a shopping moal . I got that at half plice ; ) Of cource , most utilities and restaurants separete non - smoking area from smoking area . So , there are a lot of people smoking on the atreets . For example , very high tax is imposed on cigarettes , and smoking at public place is comletely prohibited . Last night , my friends celeblate my birthday . So I quess we should live our lives as happily as we can and let our government take care of the rest , pretty little citizens as we are . I went hiking in the mountains with my friends and my sisiter . althogh nowadays it takes only 45 minutes by car through the highway . I piched those from the internet because My photes at the shrine were not very good for showing how it was there . Next time I 'll show my own photes . What a pitty ! When entering into a boutique or facing a clerk over a casher counter in a supermarket , Japanse customers do not say hello to the clerks . ( They wanted to know where the bag was available , but they were dissapointed to hear that she bought it in Japan . ) I have heard she has many funs all over the world . Jigisaw Puzzle of Mona Lisa The man who drove the car was very rich , and he had been punished twice because of overspeed . We swet , and felt healthy , fresh , and hungry . We ate a humburger around midnight . Our jogging did n't make sence . This book is the second volumn of the series . This book is also interesting , as much as the first one , but could n't show the deep impression of the firtst one . My name is Nasser and I am from Yemen . I work as a pharmacist and I need to study English becaouse I am going to travel abrode to study for my Master 's Degree . At this time I worek in Saudi Arabia , but realy I cant stand it here . There are many many mistakes in Saudi Arabian living . They 're terrible in dealing with foreigners . ect . Am I wrong ? I want to clarify our realationship . I could enhance my relationshipo with my friends by using mixi . Are you good at mathmatics ? ? I 'm not BAD at mathmatics . I mean , I can get a so - so scole on an exam . For example , people who really understand mathmatics can get visualize things in their brain quickly when they are working with a trigonometric function . Anyway I think when I study math I need a mathmatical way of thinking . That is the fact that I need to take a mock exam tomorrow and I need to face that fact before thinkng about why I 'm not a mathmatical person ! xD hah But whenever they speak with a pronounced accent , it 's too difficult for me to undestand them . I habe never gone abroad , so I want to travel around the world and see many places . It was bery cold this morning . I offen sit vacantly at my desk and do nothing on a summer afternoon . Maybe I 'll gain weigt ! ! Soon after the quake , we found ourselves unable to buy any food because of the immidiate closure of establishments forced mainly by the interruption of utility service . Yesterday was my first day back at school and I stil feel tired . I am bored with my studies , as well as other things in my life . I 've worked part - time as a home tutor , read articles and watched anime ( or ketp quiet in bed ) . Nowdays Japanese society is / has become personalized . It 's really amasing ! So , Perth was celected for Best Place To Live . precious mamories His university is very famouse . But I have no plans , I have n't dicided where I will go . Definetely , I have visited most of the sightseeing places like diamond I received a new spanis text from Japan , which is for beginers I am just leranig `` ser `` and `` yo `` with it . I was so impressed by his acting and got interested in spanis and its countries culture so much . Although I have been studing English , speeking english is difficult for me . Actaully I was there when they met each other for the first time : D I could n't belive I laughed . . . I think I have to study harder , because I ca n't speak English infruentry . Every summar I have to prepare for a formal teaching test . When I was in the college , I always went to her class and did teaching - obersation . I love teaching and I think it 's a most sutable job for me . Haruki is my favoirt author . I recomand reading `` Kafka on the Shore `` By the way , I 'm not sure about the defference between `` it `` and `` that `` . I hope that it wil be very interesting and funny here . or how did she already get many corrections even though she has olny 2 friends on lang - 8 . The second reason is our school uniform is a little expnsive . ( URL I rarely cry when I watch a movie , but I crid . I will stay in the administion department . In the moring , my phone rang . beat Manchester United footbalteam . Of cource , I will study ! : D He intervied me for an admission interview 5 months ago . The full moon has very strong and strenge power . Soymilk tastes simipar to milk . The meeting lasted 6 hours and attendants asked the board members about newclear plants . I am still poor at wrtiting English . But if I cotinue to write in an English diary every day since today and someone corrects my poor English , I will be able to make progress . But it was boring and I thought it was nonsence , so I was out on my own way silently . Nomally the way to make noodles to is boil in a pot . When you have bothered with everyting . However last Sanday , I left for Mt . Fuji is full of / covered with volcanic ashses . The temperature at the summit was very low even though I wared a down jactet . My friend said they went to Univercity at night or during time off from work for the last 5 years ago . I have n't tried to do anything for a long time , so hearing about it was really tuoched my heart , because I have also wanted go to Univercity , but I could n't decide how to get started . My friend 's talking made an immpression on me . I have struggled with it up until now because I have no confidence . As a bussiness couse would make it easier to find a job in New Zealand . But - he left more messanges to me . Last night he left messenges for me again . I 'm very nervas , but I can only study for next examination . well today I have n't done anything special I have just visited the shopping centr Filion at Fili station . There are many staind glass windows there . I am a bit comfused . They looked as if they were walking or running near me , and I enjoyed the feeling that I was diving from the clif . But to my surprise , when I just beginned to talk that I felt so bad on Saturday , they gave me a `` Sorry `` immediately , I thought they would argue , but they did not . . . . . . . . . . . . . . The day before yesterday , I went out with 2 of my friends ^ ^ We got togather in Sendai , the city which got hit by a big earthquake . It seemed like the reconstraction was going on pretty fast which made me feel happy . We studied togather there . I want to say to every single user , `` Thank you for helping other people who want to learn foriegn languages . `` However , when I got to the college , I heard that the story got brighter in season 4 , so I decided to give it a shot and rewatch it again . knows aboyt many things like classical music , clothes , or shoes . As far as I remember , people in Wenchuan , Sicuan province who experienced the earthquake recieved a lot of help from the whole country . Hope we can go to Euope next time . My Mother Is Storong She 's storonger than me . My superiors were arguing about subjects I did not kwow so , I have to so , it was confusing to communicate with a patiant . First , When I ask the condition of the patiant , Are thease correct ? ? or what are other real English conversaion , please For example , reflux in veins , clot in areries , venous insurficiency , and from different countires . It should be deliveried in mid Apr . However , ometimes we go on a picnic or walk in the city . I would like to listen to classical music in a theather / theatre . Last year , I realised how beautiful classical music sounds when played / performed by an ochestra . Because of that , I now employ a guy from Austraria as a waiter from yesterday . He wants to learn Japanese and stay in Furano untill the ski season closes . And he can speak Japnese well . Of course , he has to work as a waiter for the guests from Austraria . There are many differences between Japanese and English , especially the Grammer , I missed my Englsh conversation club two weeks in a row . However , as I said , since they had to observe the strict rules for whatever reason and they were almost not allowed to express their own ideas and opinions , sometimes some people felt very unconfotable and tried to get out of the community to seek solace in another place . Wow it 's an owesome place ! Will I meet some good foregin friends ? My dream is not to just be a doctor , but a skilled , heartful one . And as a phisitian , I 'd like to make many people feel at ease , and happy . I wish that he could live as lomg as possible . It seems like a boring and hard suumer day . I took the airport shuttle to Wikiki and then took a taxi to the place where I 'm going to stay untill Januart . It is in the Hawaikai area where my homestay family lives near the Koko crater which was an active volcano along time ago . I am so glad to stay in such a lovery town for an upcoming 4months . I learned about stress reduction and how to relieve axiety . I heard that she bought a lot of alchol , especially Japanese - sake , when she went Therefore I have to be possitive and do my best every day . Sometimes English prononciation is hard for me . I ca n't prononce `` squirrel `` and `` POLO by Ralph Lauren `` perfectly . One of the reasons was she was unafford and two , I did not understand about the job . My ex - colleague was not receiving saraly sometimes , when he worked in canada . tongh or nipple . I want to go there onece a month ! I went to see my friend after I finished work . We went to the same reatuarant . We were sitting in the suanlum night bazaar and listening to music . We had drunk friuts shakes and ate something . She invited me to go night clubbing on saterday but I did not say yes . I permis to tell her tomorrow . I can not dance very well and I think I will prictice today . I like to play the guitar when I have free time but not now because at the moment I would like to prictice English more than play the guitar . I always think about it more seriously than anothers . But I found a diffrent kind of fashion from traditional fashion . From nezt week I decided to go to community center 's English club . I really do n't want to foreget English . I am worring about your condition . But I was not aware of somebody ever approching me . Why did they chosed me ? There are 4000 American psehrases . Hello , my frends . I also hope that I can make many new frends here . But here , I can say angthing I like , even throught it wil lwrong . I should finish my English practices and understand the most elementary English knowlege , before the school year begins in September . But I feel that it 's important for improving my English to express my thoughts and describe my infomation . I like to watch america , Korean and Japanese T . V . . I am a colloge stdent . I study spycology . I know that spychology in foreign countries is very famous . If you like me , you can leav messege to me . I am very gratrfull to everyone who correct my diary . I admit that , while studing , I have become bored . I was also impressed by your many heartful words . For the last few months my parents and teachers have been talking about nothig else but my exams in May . There are relativly many English speakers in my company . But because there are not many shoppigng areas , restaurants , or cafes , it is a little inconvience . Maybe the weater changed too fast . I do n't like this weater . I went to Hwagye Temple to join Sunday Zen program with my English teacher , her friend , and my friend yesterday . We practiced meditation while sitting for 25 ~ 30 minutes , walking for 5 ~ 10 minutes , and disscuss Buddhism together . Hwagye Temple is a special temple . I wanted to participate this Hwagye temple 's Zen program , but I hesitated . You can custmise your home on the `` Settings `` page . I love my little docher very much and she knows this . It is only 40 years old , but there are very talanted actors and actresses . Dinner was also great ! particurally , the chocolate fountain , which was delicious ! I cleand the aquarium and did away with books and CDs . 25 I happened to meet my friend who has been frieds with me since we were students on my way home fron London . That things are unperfect is the reason that each day is new and gives the oppotunity to make things better . I majored in English and judt took an Italian class . Most of them must have been / were made in Japan , but all the lebels were written in Chinese . I normally do n't use them , becase I always rely on the dictionary . But I dreaming of going to another contry someday , to appreciate diffrent cultrue and do language exchanges . I think the internet is wondaful tool . I am trying to write my message and exchange with other leaners . I am studying English in an enlish trainning school . My friend wanted to study enlish , too . She finally enrolled in this English trainning school . Everything was ok , and we could study English together . The problem is , this trainning school gives me a `` transportation card `` , which you can use to take buses or the undergound in return for my recommendation . I am very disappionted in her . So , I gave the card to her . I am really dispointed ! Please check my diary if you coud , I have to study English thoroughly ! First wrinting This is the first time to wirte a diary on Lang - 8 . Yesterday one of my firends recommended me this service , Some Japanese can obtain very haigh marks on it . How on earth did they score such high marks ? I wrote I am goiing to a concert on Saturday . But I missed out on my favolite band 's performance , cos I was late by an hour . I had rememberd the incorrect opening time . It was rainning . I waited for the plice for about half an hour . It was already midnaight . They asked me many things . But I love tropical fruits ! ! ! I can not contrl myself when I face them . : ) I think it 's good for us because we do n't have a lot of money so we ca n't afford to visit foriegn countries . the frist diary in English I heard that people normaly type their resume in America . The frist one I happened to know this website , and registe as soon as possbile . When I was taking a Japanese course last summer , my teacer told me there are some websites where you can write artcle and help to But after that , I forgot it amoug the darily affiars . I am weak in . writting . My speakng and listeing skills are exacty low . . . But I know practicing is te best way to speak English very well . I wish I wo n't think that I wish I had stuied harder / / / I 'm goino to school in September . Maybe the reason I am so much silmmer than everyone else is because I am not a big fan of eating food . Korea was very strong , but fainaly Japan could win . we were realy excited and happy . Especially , I like that , I can see the each prefectuer 's special products and famouse things . I learned of Nebuta Matsuri from that , which is a famouse and unique festival in Aomori prefecture . At the same time , some people play and the other people dnace by jumping . If you are interested in Nebuta Matsri , I suggest you to serch about it on the internet . As you you can see around us people are increasingly subhealthy . why ? He is a foreiner and has lived in my country for a _ long time , but he can not speak the language very well , so we usually talk in English . But it did not work well , and our relashionship finally collapes . . . It is not easy to find foreign freind in my country . Of couce I am not a perfect person , and I have my faults , but I couldnot n't accept what he said . . . So our relashion has collaped . . . and if you have a simmiler experience , please tell me something about it . I selpt late last night but I have to do that because I intend to improve my strength . Today I am going shopping with my sister and my cousin . My cousin wants to sleep at my house today . I am so happy . My baby sister is slepping now . ^ ^ I will even know some laws of Ukranian ` s Rights of byers . Embarrassing siturations It 's annoying Becase it means I ca n't speak loudly . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own proplems . But it 's usefull for me because watching foreign news is good for those studying English . My [ teacher ? ] taught me taht you should watch it every day if you want to learn English well . It is time to go to work ! If you do n't get up , you will be late . `` I responsed , `` Mom , please give me five more minutes . `` But now there is not much water , _ canned food or lamen . noughty . I ate rice alrealdy in the morning . Now I think I will have enegy again to do what I want to do today . ^ ^ I forget grammar so it 's very diffucult for me to answer them . His favorite charactor is Bumblebee . Today , I went to the library to study with my frend . l heard some bad news from a dotor . He said my frist son needs to have an operation . It is a national test for all the univeisity students . The test is a little differcourt , but this is not the point . I am so dissappionted that my boyfriend did n't come to go with me together ! Maybe , he never love me . In some sence I think , he do n't takecare for me like before . A month has passed , he said that we should go home together . looking this time , whate said is ampety . Some foreigners , who love Japanese culture , always said that they learnd Japanese from animations and manga . A : After joining a clup in my college , I met many people . Most shops do n't close on Saturday and Sunday in Japan because all shop staff work for the service industory . Becuase I had a lot of work to do , I work up early in the morning . my family and I sometimes enjoy talking about disguisting things during dinner time . A : One day my mum bought a yarm for dinner , and we dicussed the turd - like shape of it ( = m = ) % ^ & * & ( & ) % $ . . . ( talking in detail ) Their offense and denfense are great . Recently in Japan thre have been a lot of disasters , for example the Tohoku - Pacific Ocean Earthquake . Actually , I desided to be a waitress at one of your restaurants , because I thought the hospitality in all your restaurants was very high . However , I relized a problem in my work place . I found the problem 2 weeks ago then I sorted out the regular customer 's deta . At that time , suddenly all the detas was lost . I want you change the protection software and check all computrers in your company . So I 'm writing these sentense for the time being . I do n't have schoootol today . I did n't use to raed a lot but I try to read more now We 've now become familar with his songs and can imitate all of his songs ! If he had strong Cristian beliefs , I thought he might not be able to accept ( his ) wearing it . ipad is also a really special gadjet . I will pass through Brisbane , and if you have time to see me , I will change my schedule to stay 1 night in Brisbane befor going to Melborune . Please give my regards to XXXX ( her hasband 's name ) In my house , it feels as if it was a family menber , or it is n't too much to say that it sometimes has a bigger inpact on us than a family member . I mean I want to improve through conversations firsthand rather that unilately in front of screens no matter how inaccurate the information is compared to those of mass media . During rush hour , one guy said , `` Sorry , I am in a hurry right now , so I will give you two stikcers . `` When I collect 30 stikcers , I can get a Doraemon fan . The highest level of heaven . . . wow . . . amasing ! Bean is very funny and foolsh , Rowan Atkinson is usuary a serious and calm gentleman . The Mid - Autumsn festival night And I kenw she stole a glance at me and me too . I look forwart to seeing you and chatting with you on twitter ! ! My favorite display was a groupe of sardines . Novemver ? December ? I 'll talk about one characters in one of my favourate / favorite films . It is a very imppresive film . He does n't give in to the contemporary sociaty . He wo n't do things which he thinks are meanningless . Eventually , after his insisting on the things which he thinks are meanningful , he succeeds and gets a genuine career , genuine love , and friendship . So it encourages me to persue things which I think are meaningful , and which I think are right . becaouse last night I ate so much . . . it 's becaouse I want to leaen englsh So , I want to practice wrihting about many different kinds of themes . Today , I wriht about following teame : `` What person do you respect ? `` Although I still dont n't want to go to bed , I can ajast to cold wheater but not to hot weather , because I can put on more clothes . Unfortunately , I was using my raptop and I did n't have a mic . I must work bucause there are lots of bills to pay . Hi , I am susan . Today is Valentine 's day and this diary entry will be my frist on lang - 8 , I am so happy . Yakiniku restaurants are very populor in Japan . So we eat Kimchi , pickles , and Chijimi creap with baked meat . We can eat a lot of different kinds of beaf and poak . Some restuarunt bake our meats for us . Both have melit and demelit , so it 's nice to have a choice from the view point of your lyfestyke . The tecknique for cooking Karbe beef , is not to bake it for too long . Be careful , and resarch the homepage of the restrantl first . If you worry about how to resarch , My Singaporean frend tood me that Singapore has no `` White Christmas `` but we have `` Wet Christmas `` this year . He is a professor of phamacology and a friend of my last supervisor . Neverthless , he listened to my story earnestly and gave me many great suggestions and opportunities . Third , he knows some pharmacy studens who are interested in Japanese and he will introduce them to me . On usual Manday , my feelings are low because it 's right after the weekend but only today , my mind was clear and I was excited even during work . She said that `` I promis you that I 'll do my best to study hard . `` However , I did n't think I made a wrong decions . About earthquke . What do we as common people deal with these really sad sitations ? The man who looked like a sincerefamily man actually turned out to someoneseriously addicted to porn and `` casually hooking up `` with women whom he had met at soem on - line dating websites . Of course friends , relatives and loved ones expecially his wife and two children have been so shocked about what had happened to their husband / dad . . . eveyday I will write in English in my diary . I decided I wanted to give a souvenier from Japan to my American friend . He is a male and mybe 26 or 27 years old . What would you like as a souvenier of Japan ? I 'm worring about accessing the Twitter site . Some patient do n't understand that tey can totally remove the scar but only make it lighten . winter 's holidy has started . . . I was suprised about it snowing in October . I went shopping with my firend . Are you satisfied with your carrer ? Because , I 'm just starting / in the middle of my carrer now . I have not imagined my carrer goals yet . You know , it is one of the most famous universities in indea . Thd Story of Coffee The night view from Victria peak was wonderful . I love this season because autumn brings us tasty foods and beatiful weather . I got up a little late in the moring , but she got up earier than me . I saw a dilicious breakfast on the table . Now I feel this unpleasant stmosphere has gone . First , in my case I wanna go to Tokyo because it is such a huge and dynimic city . Which sentenses do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? I will write in my diarly next week . . . When I was a juniour high school student , there was a Kendo tournament . becuse I have to go to school ! In addition the steak is served with an ice tea as huge as a samll bucket . When I left part of the salad unfinished , I felt kind of apologestic to the reataurant . Is this a kind of Sothern hospitality ? There is a diffrent between South and North . I often go to a restrant near my office . The way comedians make a lot of people laugh is defferent in each country , is n't it ? After that , the trafic jam started , so when I arrived at the office , it was already closed for the day . Life is always full of frustration and disappointment . As you just surmount the present ones , new challengesare are constantly arising . As far as my recent condition is concerned , a serious obstale ( actually a really frustrating interview for a position in the student union ) has now left me feeling disappionted , worried and annoyed . All applicants , some of them my classmates , were hired except me . When I found this out I could hardly believe that I was the loser . It really hert me and affected me badly . When a person ca n't reach his destination he may fantasize about success . I suddenly remenber this line from a magazine . So this state of mind made me revise my performance . . Maybe I was too childish . Maybe my ability to tackle personal relationships is lacking . Maybe I was n't qualified for the position . Still , I never doubt my persistence and patience . . Everybody has his own adventages and disaventages . My rivals , no matter how immoral or even evil they are , were all accepted . Sometimes I feel it 's unfair and think about the value of my existence . However , I also think that it 's reasonable that I , such a silent , humble and inactive student , should not be given many academic affairs to handle . We did n't even go out gor months . I talked wiht an American friend this morning . I became a mentor in the buddhism temple . And my anncestor would exclude everything . But he suddenly died from major illness befor he was about to succeed to rule the whole country . After his sudden death , our ancestor 's commonder became weaker and weaker . I come from a small family in Taipei . I live with my parents , brother and 3 pet brids . They are lovely , espcially my 3 pet birds . I like to take pictures eveywhere . I know English words and a little bit of grammar , so I can write English sentenses like this . At first I want to concentrate on improving my English avility . about 30 % of the exam , I am afriade I can not pass it this time . Today I will go see a movie in central Melbourn . It is so defecult for me ! Child education is a very usefull subject because I want be mother I want met people abot the sme age as me . I will cntinue writing my diary to improve my poor Engrish . I want to exchage letters with new friends who are n't Japanese . It was quite useful for building up my vocabrary . The owner is a huge fan of pro - wrestling and he does up the restaurant with various colorful masks . I met some guys whoc always stay at home ! They said [ we know you are good at English , so is it possible if you could cotnet with japanese people who are also good at english and ask them for some adult movies ! ! ! ] THIS ESSAY NOT JSUT FOR CORRECTION , IT ' S ALSO FOR [ HELP ] ! ! In Osaka , it 's quite warm todyay . I turned off my computer because I 'm afraid the computer would be attacted . I 'm nervous because the result of the University Entrance Examnation will come out in two days . When it comes to human relationships , inferring a counterpart 's feelings or thoughs plays an important rolle in comunicate well with others . They ca n't help foster our imaginations , but imformed us with a lot of fucts about the world . I gave cosmetics to my friend and sent an enail to her . I 'm will be glad if the items will arriv this week . If I have the power , I 'll write an essey . the accupuncture university . While I was studyng English , I could see two pigeons walking by the window . And then , damin it , I took a nap . Today I went to a Maxican Restaurat , to try out other nation 's foods . Maxican Restaurant in the U . I wasn n't drunk but it feels good . First , I needed to go to the box office to get a tiket . I scarried to the next . Suddenly it spilled out sollid excrement from it 's behind . Opps ! It 's a pun , intended hokum . I wondered why it was awake in spite of its ' being . nocternal . For a long time , maybe for seven years , I had n't been to Okaska therefore , I really enjoyed it there / this time . University athletes compete in a 200 km marathon to decide which unversity is the best . I really want to bacome good at English . secoundly , I must listen to English CDs every day . Thirdly , I must remembar an English word . Not only were the scenes emazing , but the actor was also handsome . But I like it , exausting myself doing the thing I like best It is only Japan where you can eat raw interal organs from all over the world . Almost all turists who come to Japan eat `` sushi `` and `` tempra `` . But raw internal organs lead you to a special and unkown world . That 's not so surprinsing , is it ? I did n't undastand all of it , but it 's an interesting and fascinating novel . However , the other day , some Japanese delivered my baggags for me . This walk was a very rare chance to exprience the beauty of American wildlife . This bivillage has 5 springs , 1 souvenir shop and 1 green tearoom . When considering pronuciation , English and Japanese are so different ! In a pool , she is scared to put her face into the water , and at a park , she can not spin on the iron bar , because she is scared of bending her body toward the grownd . But I want to be an a programmist so I want to know English for my future study and work ! . . . . The tenstion between Pakistan and India has been strengthened by the terrists attacks recently . I wark as a bellgirl at a hotel . We have a wediing hall and a banquet hall , so we are so busy on holidays . Seventeen wediing ceremonies were held today . But , ( ever ) since I became intersted in English , I have wanted an English name . S plese , recommed an English name to me ! About 35 thouthands people participate . Yestarday , a subcontractor visted my company . Part of the Tokyo area strated to have power failure . He ofen makes a round trip between Tokyo and Nagoya city . I think it 'll be helpful and interesting for me to study Englsh because I can practice writing and someone will check my grammar . I 'd like to say `` nice to mee you `` A wanderfull event has been held in Okinawa . Tomoroow I am going to watch `` Sex and th City - 2 `` with girls and will ry to be merry , carefree and so on . They were my first choice company , so I 'm very dissapointed . . At the time all stores closed from the 30th of Dec to the 3rd of next January , so we had to stock everythig : drinks , food , videos , refreshments , snacks and so on . Now , 24 hour convenience stores have spead out everywhere . It is literaly convenient but I am a little bit disappointed that such a thriling custom has gone . . . Luckly , my children like my cooking . we belive it is normal that we graduate from a Japanese university The test consists of two section . The first section is easy and almost all exaninee can pass , but the second section is hard and very few people can pass it . If I spesk English fluently , I will / can go abroad . I want to go to many foreign countres . Then he found a bed and strat taking off his clothes . However ; there is not yet consenses on thether rich countries should give financial aid to poor countries . The first point with respect to this is that powerful cpuntries could offer advanced techniques to the poorer countries . Take China for example , when scienitsts developed new tehcique to plant crops ; China could stop importing crops from other countries . Last but not least , powerful copuntries should also offer medical facilities to poor countries . In other words , disease also plays a criticalkey part in economics . Adimittedly , it is not enough to provide financial aid to poor coumtries . But my wife ilkes it very much . I have certain ( stereo ) tiypical images about certain countries . I went to a music instrument shop to check guitar - efecter . tommorow , I will go to BBQ shop with my friend . Today my colleage talked about Western culture and Christmas presents . At least one people is happy this Christmas , the giver or the reciever . So they tend to decline the invitation to paticipate in the WBC . I was almost on the deadline , so I needed the Exchange Coordinatrors to fax the documents ( to be sure that they made it on time ) . I asked them to mail the documents to Japan . The bizzar weather . I watched something on TV about the bizzar weather all over the world . I 've heard many stoies about the collapse of the earth . I belive that she will get the gold medal and I can see her best smile that I ` ve never seen . Mind probram . . . I do n't like English classe . Please . . T ^ T correct some setences . feel relieved bisa menerjemahkan menjadi ' bersantai ' ? On this special day , we visit out family , eat eatdumpling , and walk out to enjoy the beautiful lanterns . I explored the area where Prague catsle , the river and the Old Town are located and enjoyed myself at various entertainment places . It was about a teacher that was fired from his work becouse he did a little trick in the classroom . I realy laught a lot when I heard the story for the first time , but now I feel sorry for the teacher . And what a crazzy principal ! ! I was cought in a shower last night . Acording to legend , ' Exposition of the Hieroglyphicall Figures ' was written by Nicolas Flamel . I tried to eat sandwiches for the sake gainning a variety of nutrients . In my family , when we get a cold , we drink roasted tea with a little solt . I walk 15 minutes from the station to my oficce . But I do many things durring this long commute . listenning to English conversations using iPod . So , It is very important for me to spend time in the train , valurable studing time . Good - gye . Now let me intouduce our cityy to you . We expect more and more forign friengs to invest in our city . This is my first writting . I wounld like to know how to learn English faster , can anyone tell me how to learn English faster ? She drinking beers and smoking chicarate in a club . I could not find it yestoday morning . JIANGHEN told me that he took this book when he went home yestoday afternoon . The school festival begins today and it continues until this weekand . I saw this game last year , I heard many departments did that and they earnd lots of money ! ! ! Chinese uses hieroglyph characters . English is phonogram letters . Each Chinese character is different from one othres , but English words are all assembled by the same 26 letters ; it 's easy and efficiently , especially when inputting them into the computer . Chinese words are assembled by charachers . English words come from [ creation = ? ] , affixation or compounding . Most of people said `` Avatar has a kitsch scinario , but is a movie with excellent spectacles `` . Surly , the scinario is kitsch . So recently my ability to speak English is incerasing . . . . I want to be an emproee of that bank . In rencent weeks / Lately , nearly everyday I self - study with my boyfirend . I learned many students have read the book , but I 'm not sure that they have the kownledges , but at least they 're a step further than I . With the passage of time , I feel a lot of pressure arround me . This week is really important and preciuos for me . In recent years , enviromental pollution has become more and more serious . Many countries pay attention to the enviroment . Because I wantto perfectinate my English and have good conversations with people without having tothinkfor one or two minutes to talk or answer one question . If you want to talk to me , let me know and I wiil stay in contact with you I 'm begening to read this book in English . I remembered , that I have a transleter book on Russian . I want to develop my English in oder to be better than before . I might not get used to this weather becuase some coworkers are wearing short sleeve shirts . In addidion , I 'm using a blanket . This is my secnd Home page on Lang - 8 . It is named Femt . But I am looking forword to meeting many people . Now Im have a lot of free time to spend , but I do n't have anything to do . In this case , if you were me , what would you do ? I want to go to Macdonalds to eat their new hamburger . According to reserch , theaverageage of Japanese people when I 'm tired but I cant fall resleep again . Theseday days I 'm so lazy . `` keep yourrselves from Idols . `` I will probably have coffee in the furure because it 's easy to make and tastes better . It has already come extermely hot tempreture in Qatar . I really want today to pass imdiately . When I was an elementary school student , My father bought a PC made by Fujitu . I want to know why unhealty foods always taste good . I went to a park called `` ge yuan `` , which was built by a bussiness who sold salt . There are four different views in his gardon , In 1999 , a horrible nuclear incident occred in Ibaraki prefecture . But one month after I moved back to Japan , I could n't speek English any more . He is always smoking and drinking coffe alone . Then suddenly the man ( who was reparing ) opened the door and shouted like this , `` Water please ! ! ! ! ! ! ! ! ! ! `` . And when I entered my room , it smelled like yhe aroma of coffee beans . I 'm learning English and woule like to improve it more so that I can travel all over the world and communicate with a lot of people . It said about Rat - as big as a cat discvered in Papua New Guinea . This tital is `` National Security `` . It was very dericious ! Because of the high tempreture , the snow was kind of melting . In this shop , I could have coffee with rabits . I look forward to meeting with you on this wonderous and beautiful site , because it lets ushave Communication with others from other language speaking regions with peace . I look forward to ur visiting and participation . Activity 2 : sepetember 28th , 2010 , Xinshi center park , Xinshi agnello and Shaoxing wine celebration feast That 's whay I joined this Lang - 8 . Japan wil play in the finals with e South Korea at 10 am tomorrow . I mean , I guess many people break their sellphone because of their habits . And when I was 8 , my father went out for binese . Anyway I can make my freind verry happy and that is my plsure . I 'm lokking forward to eating them ! X ) I apreciate it . I could catch his English , but I could n't speak as good as I expected , and I did n't know how to make sentances , so I 'll try to improve my speaking skill . If I need to make an appointment with my friend , but I am not sure when he would be avliable . I love her evry much . But , If I take a careful look at my life , things are changing at a leasurely pace that I barely recognize it . We were really lucky because it was a fine day yesterday , though there has been a long spell of bad reather recently . I 'm thinking about beginning SKYPE English conversation with a foreigner . My friend gave me a blacelet . My favorite taste is solt , but , today , I ate miso noodles . It will hold to appeal that Tohoku is fine so pay visit each festival in Augast . When I entered my university , I took TOEIC TEST . I wote in a journal entryyesterday that I wished something special happened , and here it is ! Everyone can coment on my writing . If students want to go to college , they have to go to school where they focus on stying . Then I broug the bicycle to a shop to ask them to fix it today . I will not give up to lift untill last next time . ( ? ? ) Umm , it 's kind of intersting . And why are so many of them collecting unemplyment benefits ? Japanse call that type of person `` a paper - driver `` . Although I was a little ashamed of my fertileless results , I had to pretend to be satisfied and present it confidently to all the professors invited to my defense . The main reasom I write ' this ' is Until today , the family 's schesule were different from each other . I did this unconciously . In the class , there was a women who is a foreing student and she spoke French so fluently and talked with the French teacher in French . Starting today , I 'll do my best to study not only English , but als French . : ) Subsistence cyecle . My introduciton He could have been sucessed as a doctor , but he choose to become a compter engineer , even though he could n't be sure of being sucessed . Now , he has become a professioner at Seoul University . I want to remaind young at heart untill I go to heaven . You can make youself So I believe the best way of window shopping is bringing mothing A newborn baby brings happness . A newborn baby always brings happness . Blue sky and blue sea , a very nice conbination . The Sunshain is a little bit warm . When I comrare it with the opportunity of a book , I can get more benefits from a book than a movie . Today , I had an English lesson with Brian , who is my new English teacher , at 8 : 30 at Starbacks cofee . I am eager to speak more intelectual . I would appriciate it if you corrected my diary . When I was in China , I uesd to walk around the lake in front of my house every evening . I want to understatnd movies without japanease script and listen to English songs directly . Of cource , I want to be able to use einglish for business purposes . whice the temple is named . Some people prefer entertaining TV shows , talk - shows , quises , such as `` The Ground of Wonder `` , `` Let 's talk `` . I 'm not atracted to humble - looking people because I look so humble too . It is not dyed , and looks healsy . What made her look humble is defenitely the combination of her damaged jeans and sneakers . But it is very sepcial for me because it 's the last summer holiday in my university life . In addtion , I want to do meanningful work from which I can not only earn more money but also get useful social experience . Everyday I come across many custmoers including native people and foreigners from all over the world . Though it exhausts me , it is a new challenge and a good opportunity for me to touch the competetive society . I 'm always worring about that . Before , I lived in the domitory of my corporation alone . I used to cook or buy something to eat in my domitory alone . But now I enjoy dinner time with my famiry ! I live in the Russia in the city Khanty - Mansiyske I like Kanty . = ) It was very tasty , and I felt comfortabele . Could anybody explain the sentense below ? And I help my moter with house work . It is important for me to study hard , but it is also important to help my moter . I try to study hard and help my moter this month . Please help me with any grammatical mistakes in my entry . If something does n't sound innative , please help me refine it ! It was not difficult to drive in the Drievr 's license test course . Hope all of you have a fatastic day ! ! ! ! Yesterday , my mother 's friend and her hasband came to my house . There was an amaging accident in the championships . . . Tomorrow , I will go back to Tokyo with her and her hasband . As a result , I felt terrible for a had a darrhore in the afternoon . After taking a barium , I 've realized that taking the stmach camera ( or spectroscopy ) may be easier than ( the ) barium . It took a lot of time and I didi n't know whether my sentences were right or not . This is the last day of Eastrn . The more hot weater we have , the more I need a sweater . But I feel like the temperature in the library is below the freesing point . Summer weather in New NewYork is similar to weather in Seoul , Korea , but I think New NewYork is a little bit nicer than Seoul . After I heard the news it will be made a movie and will be released in autume . He said some caustomers misplaced it after they read it and they did n't put it back in the right place . So I counld n't help taking time to find it . Athough I was too late for the festival , I went to see my friends . I belong to the Guitar and Mandlin Club . there are many shops . ( sports shops , clothes shops restaurant and so on . ) it was very vrowded because it was a holiday I heve to do an assignment about industrial dynamics in this morning . because the Japanse economy was so good at that time . I hope their bussiness is going to get better . basseball and Yakyu Of course , I always wached them in Japanese when I was a child American life is cool for me though I ca n't bring spesific examples I feel srangely dull everyday so I want to finish My orlder brother and orlder sister give me a present every year . A few days ago , I used up my rotion . I shopped oline for about 1 hour , I bought a rotion . The rotion arrived this morning so I used the rotion . But I do n't like the scent of the rotion . I live by myself now but I try to prepare meels by myself as much as possble instead of buyng food . For my health , recetly I try to eat back beans and agar and drink at least 2 litres of water a day . Peaple say that black beans are good for your blood circulation and helps your skin stay healthy and the agar has a lot of faivers which help our circulation . I enjoy cooking and increasig ( more my repertoires . ) = ? In addition , I 'm refreshed by it because I would experience new things whenever I go to an infamiliar place . The sales person looked a little in a hurry and she rushed to anwer our questions . And what makes you absulutely Happy ? I odered some hijabs , I mean special muslim 's veils , not all clothes , only for the head from the internet , because here there is only one shop with muslim 's thing , and there are almost only books . - - > On 26 May , my team needs to finish the final porject , I must work hard to do that . I hope I can pass the exam because if I ca n't , I will have to study one more year . Because it was the TV drama of the BBC , the acters and actresses were speaking in British English . I gained weigt ! ! ( T T ) My weigt . . . . However , I was surprised when I saw the awesome scenary . At nigth , I cooked hashed beef and rice for dinner with my mother . But he is also gathering infromation about jobs in another country . Anyway , yeasterday was Chiniese new year , so there were many Chinese festivals in the city . We can always see many Chinese people in the city , so it is like Sydney is part of China . I had a sore throat today , so I took some strong herval cough drops . There , you will find everything from street vendors to hign - end designer brands in huge department stores . What I found is that the sound and the rythm of It takes about a hour to get ther by car . I Watched a Horro Moive I accidentally tuned into a moive and started to watch it . It was a horro movie . That was the kind of moive I like so I contined to watch it to the end . Three diedthroughout the moive . It was a heavy moive . Recetly , I have wanted to get it more and more . Thre are Maguro ( Tuna ) , Botan - ebi ( Shrinps ) , Hamachi ( Young yellowtails ) , Shima - aji ( Horse Mackerels ) , and Hotate ( Scallop ) ! ' till then I 'm goin to visit a couple of Arts courses . Today , I woke up at 8 : 30 am and went to school for my practiceng play on our school festival . Many poeple had their dog walk around the lake . As you know , in most companes , there are more than one employee , and we can call all them co - workers except you . It 's difficult to speak to forgin peopke in English . My friend asked me to transrate it English from Japanese . Could you currect it please ? Cross my fingars , Last Sunday I was at PROPET ( pet industry trade fair ) for a dog grommer course It was cheaper for me than other similar courses , because I had a proffesioal invitation . I want to say I have several promble with studying English . How do I solve my english promble ? Becouse the entrance for foreigners was brightly opened , I just passed through the gate of the Ewha Womans University easily . Actually , I 've been in Vancouber for more than one year studying English . She also likes natural foods such as seet potato , pumpkin , Although I spend much time on it , it seems as though it makes no sence . I like this period from summer to autumun best of all the seasons , because I feel energetic during this time . but I can not learn bengal . and I want to eat deliciauce Indian food ! ! I didi not have time today My oreginal color is dark brown , now it is chestnut because I dyed it . I am Bulgarion and leve in the town G . Orqhovica . I am a studnt in Veliko Tarnovo city I enjoyed Rock Crimbing ! I think having a car is very important for colledge students because college students need to make friends . When I was a colledge student , I went skiing twice a week with my friends . I used to watch Twenty Four , and I watch Full House these thesedays . ( I mean `` copy `` and `` cpy that `` ) Her mother married a man who is the brother of her former hasband . However , today , by purchasing a flight ticket in advance or carrying no eatra luggage , customers can get tickets at a incredablly low price . Amittedly , without globalisation , economic , culture , literature and legislation would make little progress or envolvment . I have been to London , Hawaii , Shanghigh , and the west coast of the USA . I went to wach my dauther 's badominton games yesterday . My dauther 's skill is getting better and her patience has increased while playing . He has taken a tennis lesson bofore . On the other hand , if you talk to your boss or people you are n't familiar with , it 's more appropriate to use indirest questions . Is studying abroad or going to an English comversation school necessary for speaking English to some extent ? The Asian Gemes excited me ! Water is droping down from the pipe . . . . I will complan to my landload . I was absent from university because I had a bad headace . He is called `` King of Pop . `` I 've never seen his performance , but if I have a chance , I want to seet it . However , that 's an impossible dream as long as he 's not a lier . As a matter of afact , I had been a kind of an old fogey . But beliave it or not , I had n't bougt my own cell phone , or car , But nobady is going to stop me . If I could think in English while reading Enlish sentences , then my English comprehension skill wouldimprovng rapidly . I arraged it for me , adding cabbage under the pork and a soft - boiled egg on the pork . One is by Renka , who is my favosite actor . It is one of my favotite books ! And also Renka has always been ( ? ) my favotite person ! One oneday I hope I can become a rich woman like her , Maybe there are not too many people that know them in Taiwn . When I was feeling sad and lonly . Are the following sentences I wrote gramatically correct ? I 've been studing English . In addtion , I recently fell into a slump . Although Lewis 's piano solos are somoetimes a little bit annoying , Somethings that are truely new are often accompanied by some kind of discomort . There were too many people that Johnny separted from his mom . The shop is in Kitijyoji City , Tokyo . The reason why I walk is because I am engaged in a walking competition with my collegue . I thought it would be difficulte book them for during the Christmas holidays , but it was easier than I thought . I will be living in a domitory next semseter . and I bought a lot of things for my domitory XD There is no intresting places to go for a wolk . For the first time these places seem like something unreally intresting . My grandmother was from a wealthy marchant family in Sakai ( in Osaka ) . ( It was misteriously beautiful , she said to me . ) It also pourd into her ears . She has a elder brother who was sent to Siveria but fortunatelly She can use walfare for the disabled , So I decided to cut her hair , and leanrd about how to do it on the web . Also , I can be more aware of the auther 's ideas and imaginations by writing on them . Because this pen uses thermo - techinology , therefore even if you erase it perfectly , the ink would still appear under some conditions . but I 'm glad to see he is active in another coutry . We have to study or research very hard to wident the tunnel and to learn how to dig tunnels . I came accross some sayings when I was reading an English document . Some have already been ( provisonally ) chosen for jobs . I like japanese food , because it is frash and heathy . In Japan , we are anxious about relationships with neighber countries , ie China and Russia . I 've selected out of those and developed about 150 and enlearged 10 . When I was young , I went back to visit my grandmother every year for the Songkarn Festival to receive her blessing . The belief is that doing this will bring good luck and prosperity for the New Year . l have brrow books . Why was my diary not corrct by anyone ? So I hope to meet more foreinger friends and learn languages from each other . But it has passed a half month into Feburary . I love sakura bloosams . It means Sakura bloom beatiful becouse of cold winter . It means ordeals will make our mind and humanity beatiful and strong . I bet tonight I will sleep well and I 'm looking forword to seeing someone who is coming to visit Thailand . . Hallo eveyone ! Today I have written a diary in Englich . Plesae checke my diary . I love Einglish and childeren . I must study hard in EInglish ! ! ! What a supecial day it is ! ! : ) Legister lang - 8 Today , I legistered in Lang - 8 . The Writting and speaking skills are terrible . And I put it in the refrigerater . It was so much fun , my friends and I stayed in a hostel which was a 15 - minite walk from the beach ! After playing that , whe were so tired because we were rasing our legs , jumping and dodging etc . I want to go to aroad , and make friends there ! / Although I am ashame , I also feel hateful towards myself . But to give an example , I have a / sence of justice ! ! ! It is famous for it 's painapple . For instance , many exotic countries make millions of dollars on foreign * turists . Not all of the turists know how to keep the area around them clean . I 'm a biginer at Engrish . I hope to use Engrish beter and to meet some frend . todey , I will eat kaki fureit . I like it . It is sweet and derisuse . Now , in Japan , there are many kaki fruits on the trees in the gardens in tawn . Nowdays , I am reading fanfic of Sherlock ( BBC 2010 ) . Have you been to a sushi restaurants in your citis ? A television is being truned off . Is there any differece ? I 'm a little upsed by it because unlike many people in my age I like going to school and I 'm keen on learning new things . I love this fiction mostly because of its exquisite psychologic description . They ask me to wear office cusual clothes . He just said `` not too formal and not too cusual `` write in Enlish daily and watch NHK 's English program . But I overslept today , so I could n't study Enlish . I turned arround and arround , which made me dizzy so I could n't walk well . I have to go to bed in oder to wake up on time . Last Sunday , I watched a film called The King 's Speech . I recomend it ; it 's a very good movie , not only because of the story , but also because it has good actors and a good soundtrack . Thre were UFOs in my house . Wathing TV ( ^ ^ ) I 'm Wathing tv now ! ! And now there exists a major problem that my vacabulary is not enough and moreover I am forgetting what I remembered . An improtant text awaits me and I try new ways to remember words by is skimming through part of the vacabulary regularly . Do n't tell her that I was druken last night . We buy a lot of vegetables and fruit ( appels , oranges , strawberries , bananas ) . I always buy semi - skimmed milk and my mother buys goat 's milk because she is alergical to cow 's milk . On Sunday we are going to make a big cake with strawberries and a littel chocolat . When I 'm on a diet , I wanna eat a small quantity of high quality food insted of making a pig ( out ) of myself by eating low calorie , chemically enhanced food . I slep with my sister last night she is always welcomes me to sleep with her . He likes to come to my house because he has many friends incoulding with my counsin , who plays with him . Today I plan to read a book somewhere arond my house and coppy a book for my student . It has come to reach the conclution that we will be playing covers of the rock band `` slipknot `` . For the next class I have to listen to a Korean song and try to write down the lyrics , I want to choose `` I ca n't let you go , even if I die `` by 2AM , can you recomended another song to me ? level , especially my speaking skill is bicoming bettter and better . We know about sharism and we 're better at creat something new and special , but the old generation may feel nervous about the PCs and iphones or androids . People may pay more attention to their individual experience and their need to satisfire their desires other than those built on possessions . People are crazy to own a house or an appartment . If you were a boy or a man , you should have an appartment , then you can marry . I Love `` kaitennsusi `` I love susi . Do you know `` kaitennsusi `` everyone ? I ate a lot of susi . becouse it was cheap and delicious . I think I have to go on deit ! ! but maybe I will go to `` kaitennsusi `` hi guys , I am Mohamed sadiq from sudan I 'm 20 years old , itz ' s my first time writing an entry in this beautifull site and I want to tell I had been working at a damage insurance research company for 20 years untill years ago . This work had grately developed me and a thoughtless remark disappeared . ( more specific ? When I try to remember new words , I look them up immidiately and review them before I go to bed . And I hope everyong to be happy and safe I paid two handred Hong Kong dollars to him and shook hands with him . I thank not only everyone who made crrection , but also Lang - 8 a lot : ) I wish ALL people who are studying a foreign langage knew about this beneficial item / website / place . The short time makes me rised my concentration for studying English . Addmission was 8 Euros . My fisrst time was over 10 years ago . I had a soup curry in Sapporo which is the bithplace of soup curry . The shop I went to is 3 stories tall in Sapporo . I home stayed in Austaralia for a week . It was an amazing experince . I do n't know if it is difficut to write what I want to write in English . About English singer , I like evernessence , britny Spears , and Avril Lavigne . I 'm gon to count sheep . I 'm a native speaker of Spanish and I 'm trying to improve my English as I 'm studing a teaching programm of English at the University of Santiago of Chile ( USACH ) . Certainly , I 'm not good writing in English and I still make silly mistakes , so I joined this website in onder to improve my writing - and speaking - skills . I 'm interested in English and I think I need Endlish in the future , so I study English now . I will write my diary everyday to improve my writing sklils . Sonunds crazy , right ? In the last set , I was trailing by two points at gamepoint , but luckly , I got four points in a row , not only did I win the game , but I also controlled my stress well , - this made me even happier . I can not understand some corrextions . I 'm so sad becouse he was a person I respected . . . . . . . . . . . . . . . . . . . . . . . GMO ( genetically modified object ) - foodstaff , a living organism , created with the help of genetic engineering . Finelly , the butterfly to the back . Bon moring . I found this wedsite by random searching with the goole bar . The different cultures of each country in which I am interested can be learnt from this wedsite through our communication . We are in spring now andI saw the cherry blosom with its roses . I irealy like this kind of tree . And I have liked it sinc my childhood . The cherry blosom is called the tree of `` sakura `` I have a lot of hobbies . I do n't like spending my hobby alone . I like spending my hobby with my frind or with my brother or with my family . I engoy with all because I spend a long time when I make my hobby . When I heard this , I was realy shocked . . . My job is called center operator which means home electrical repair . So , these sweets bring out the delicious tasts of powdered green tea more and more . In other spots of the mouth , bitter tasts of powderd green tea bring out these sweets . In addition , my company usally do n't work on Saturdays . but yesterday ( sateurday ) , we worked . I could n't go to the clininc ( or ? ) to work . because I do n't neet to work today . So I was relexing and watching TV shows which I missed because ( or due ) to working overtime . It is the firt working day . I like Ken becaushe he helps me when I have a broblem . Ken is good my friend . He 's a businessman . He has many houses . His main hourse is very beautyful . He usually travels by plane . I beleive that this culture is stupid ! ! ! Today , I watced a movie again Everybody drank and tolk a lot . For example , thanks to the developmemt of the Internet , we can now communicate with people wherever they live , without the limit of distance or time , by using e - mail , Skype , and so on . I straddle the line between these wrolds . During the weekdays , I am obsurded in my classes while on weekends I am devoted to part - time work . I have a part - time job at a watch boutique within a hotel resort . Today in the morning , one couple walked in the store , and I talked with the customers actively , I was going to tell customers things about which watch they are gazing . Since most of our customers come from mainland China , I tried to communicate by using Chinese . However , they do n't seem to understand what I said , and there was no response with my talk . So , I turned to specak in English , but it was so embarrassed that once I finished my sentence , the guest replied me in Chinese . I like making someting . But I can not chatch the meaning of the following sentense : Jinger tea I 've been drinking Jinger tea for a couple of days . Because of a hard schedule , I stayed there for only 10 hours , but thanks to my friend I throughly enjoyed the food and a massage . I live in japan , and I am a Japanese callege student . There were mamy people there . Today my coworker invited me to his orchestra cocert at Feb 22th . `` Nooooooooo Im Japanese ! ! ! ! ! ! `` `` Oh you are lier . . . . `` `` I never lie ! `` so many japanese people have got Tatoooooooo . . . . . Its getting populer I thought . . . It was a really fuun day ! ! ! I 've heard an expressin to do something to reduce stress is ' vent ' , And I will go to chitopractic tommorow too ! ! But I feel refreshe so much afterward ! ! `` Just cut my friange , plase `` . `` Cut up to above your eyeblow ! ? But actually I wanted him to cut same line as my eyeblow . . At the moment , I did n't recognaize my misunderstanding . Just being attracted by something will make people drop into a `` sea of knowleage `` . Everybady , take me there ! ! In Japan , tatto are not socially acceptable . But in other countries , tatto are socially acceptable . I wonder if this situation shows that Japanes people are on the very conservative side . Every morning I wake up and feel so good , though , a liitle bit tired . Lesson making sentenses after reading Myanmer over the horizon It was only a one hour meeting but a giant step for a fruitiful future for the Myanmar nations and all the other neighborhood countries . I 'm wonderding if the Arab spiring movement has warned the regime to grant a democratic voice . These words below are from the article and I made sentenses using them . 2 condemn - Japanese Govenment has offically condemned the Russian President , Dmitry Medevedev , for paying a visit to Kunashiri island . 3 mar - Kosei Gaukuin 's honorble result in the Natinal high school baseball tournament was marred by the announcement of some members ' drinking last winter . 4 detention - High school Baseball Association does n't give any detention to the school because the students concerned are in the highest grade and the team has launced the baseball team with their new members . Therefore , I seldome tell my friends about the existence of my blog . That person kept responsed to my article . I goole it and I found his blog . beuacuse , we lose the power and courage to carry out our dreams . I want to traverl the whole world and go everywhere , while I am young . The day everything will be restorted is not far away . . Anyway , I became aware of the following statement last nignt : I was denied when I asked to request a highter selling limit applications . Why was I dennied ? Currently the nursing system is a ploblem in Japan . I think it is not good to have a society that afflicts the eldely . But I 'm not decite on whom to vote for yet . I want to ( listenin , write , speak , and readng ) English more . I feel it is hard to study English because since I graguated high school , I have n't studied it . During World War 2 , Japan colonized Korea and took some poeople from Korea to their own country . Today , I went to a languege school for a trial lesson . Because some students absulutely did n't speak better than me . So please correctu me if it is neccesary `` So , do you want to try the yummy soup ? `` She asked me with her eyes shing . `` Take it or leave it ! `` She yelled and shutted the door . you said it ! `` The wiered voice came again . I hope I can travel to 7 countries befor I die . Another teacher called Mr . G treats us very nicely and aften entertains us by making jokes . I 've worked at a law office for a week , and everying is a new experience for me . Then I heard the most unbelievealbe words come out from a reporter to a big star . The female reporter shouted the S - word to Nadal , turned aroud , and left wihtout looking upset . ( IHere 's a question to British people : Having used it just now , does the word ' bloody ' sound so vulgar that it sounds weird when used by non - natives ? But I think I should supress bad feelings as soon as possible . A transition into a new president of the United State has many significant influecnce to many people and many nations . In fact , many pople are still suffering from predudice or discrimination . The message is that we are not stupit , and if we wish , we can overcome the discrimination . Two years ago , I went by myself to Lasvegas Vegas to see an Aerosmith and Motley Crue show . He and three other major players expressed their unpleasant feelings by quiting the Winter Traning in HaiNan Province . I want to go to the sea this sommer . Am I a Charactor in someone 's dream ? When it comes to travl , different people have different ideas . First , travel will help you to acquire bnowledge . When you travel to a place , you will have a better understanding of the local culture , tradition and costum . Second , travel provides you with the oppotunity to practise * . I also went ( / visited ) the Aso Farm Land where you can find many shops , accomodations , hot springs , and so on ( / and more ) . That makes absolutely no sence ! ! I made a mistake that and deleated many songs in my I - pod . . . It is everybody 's day tommorrow . . We can rest for 3 days . Epecially , the wind flapped us . ( ? ) It became a good opportunity to know the difference between my mother launguage and other launguage well . I have to teach my workmen some knowladge about our production . It was beyond my English vocaburaly . The differnces between humans and chimpanzees Maybe I will have a topit to write tomorrow . I have to get home aroud 7 : 00pm to take care of my baby . After a while , I recerived her abdominal x - ray . Just overeating can mimick the symptoms of a severe disease . I think everyboy has a window in their heart . first of all , my name is tulio , and I want to learn English , becuase nowadays companies requier that you speak English Last week , I saw a new advenstiesment , `` they need a new reporter , but he or she must be able to speak in english . Firstly , my hairstile do not set . threrfore I do not like June and July . Las Vegas is an exciting city , so so I 'm agrry when it 's called sin city . Vegas is awsome ! And the conference that I had hoped to participate for many years was awsome too . If I remember correctory , your brother lives in NY , is that right ? Do you go to NY occationary ? My favorite auhers are Haruki Murakami , Soseki Natsume and so on . Haruki Murakami also translated some foreing works into Japanese . I sometimes feel very confuzed . C . without subtittle now . I want to visit the place wher the drama was filmed . Because my best friend gave me a free tchiket to the gym . I thought that the cafe was so confortable . It is really cruel ! The team protected the Kekexili for 3 years without any support from local goverment . The bullfighting is a ceremoney not just killing the bull but looking forward to a good harvest . In 1990 , he became the first left - hander to win the United States Amature ? Championship title . According to the article , he has a left - handed golf swing after mirroring his father 's right - hande swings . I was at the company sending for a long time . My boss musst use the detile today for presentation ( ? ) but I did it slowly because my computer at my company is quite slow . I falt bad I could n't send the file to him in imtime . I tried to ask a colleague to help me send email to my boss because I must change the details . He is very cute . My friend called me to make an appointment on Sonday this week but I did not say yes because I would like to sleep at home for my weeken . I checked email today . It 's great to hear from my French friend . They sent a text to me , I had not seen them for ages . They had lived in Bangkok for a long time . I knew them when I went to packtice English in Impini park . They are so cute and taught me a lot of English and French . I had studied French language for 3 years but now I have forgotten it . I can not say anything , just bogjour , comment ca va and Je t ' aime . I was fanatic about Gyoza today since I was in the midle of working . Incredible three thimes . Most people ( can / could ) have difficulties when they speak a foriegn language which they 've alread studied for a long time . Moreover , I can even hardly express what I 'm thinking in the foriegn language . What do you think the most important things are when you study a foriegn language ? Everything was expensive and there was a variety of marchandise that kids love ( even adults . ) They looked quite mature for thier age at the entrance ceremony , because they wore suits . My university does n't have a lot of students but because of this , I can make friends with almost everyone and I 'm looking foreward to that . It 's difficlut to discrib the receipe . We saw a bear acrossing the road . I hate waching violent films . Outrage has sirious and comical scenes . Today Osaka is soooo hot ! ! xO So Green tea is Ryoku Cya in Japanese . I felt it was weird to put something in green tea but we put suger in English tea so maybe it 's the same thing ! : p Then it becomes two parts in the calssroom : I teach my own things This is my first diary entry in Lang - 8 , I hope I can improvment here and make friends with you guys ^ ^ . I like reading cookbooks , the pictures in the books look so delicious and meke me happy . Do you know the Jpanese noodles called `` soba `` ? Reducing carbon dioxsides is attacked by TV commercials frequently . While I feel they are similar , I 'm assured that Toyota 's car is safer , more economical and envernmental friendly . It is eviidently that the car 's fuel consumption is 23 kilometers per liter of gasoline . And I am learning Thai unformally . Last week , I did n't paln to go traveling over the weekend . But one of my roomates asked me to go to underwater world with them . Unfortunately , I was busy all the time and had not had any chane to visit it . Unwxpectedly , however , it was raining and it seemed like it would continue to rain . wha a pity . I wll study more English and go to bed . The Interenet in Thailand is not as broad or commercialized as the one in Hong Kong , but the quality of its system is high , built around the country 's universities and technical institutes , guaranteeing a large supply of Internet - literate people . Today , the day was darking when I left the reading room . This theame is my homework . I 'll explane about Hikikomori . I 'm sure all of us can be hikikomori , because we are weaker than we think , and the reasons are more complecated . My English is n't very good so I want friends to talk with so that I can use it more regularly and improve my English expecially my spoken English . During this period , I was fasnatend by other worlds and cultural things . I locked the door in 3 different steps so he coul n't open it ! To be blingual is my dream , and Singapore has a good economic situation and working environment . It has a monster mathematic thery behind it , and people will never think any raw data is useful unless they understand the theory . It 's good when you sit down in front of the screen , watching the earth move like water , the spoon drift touch the cloud , and the dramatis personae always stands on the edge of death . The end of world , this concept has never been a part of Chinese culture , and no one belive it . Of Ofcouse , maybe this is the difference between the ease and west . I use a Bkack reather planner . 1 , manthly callenders for proglaming long tarm sucedule and maiking apointment 2 , daily sucedule and task notes for protecting me from forgetting and increasing efficiency 4 , rifills written about information which I need to watch frequently . This sistem is like Franklin planner . I studied the sistem of Franklin planner , and reproduced this sistem with blank rifills . I do n't have any confidence in my memoly , Actaully I ca n't believe it yet . tommmarow is the end of vacation , Global warming is a thred for all man kind < or > humans . The weatherman on TV said that February will be rxceptionally warm . yhat would be nice . I was very suprised that every person I met was also korea . I 'm currently * developping iPhone application in a Japanese company . these days Japanese goernment is very weak and tends to be changeable . I aften eat a dish called NABE , which consists of vegitables and chickins , pork , or whatever your favorite ingredients are cooked together in a soup . However , I did n't have anything to do and could n't even take a shower becuase the water was cut off . we met and then we went to eat somting . It was very deilsious . Then we went to the acdemy again . I did n't know this actually but yerterday they had a Japan versus Scotland football match , here in Tokyo ( I guess ) . Yesterday , she taughat us about how to pick - up a Canadian guy . Today is my aniversary He has powerfull energy and charisma . I would like to learn Biomechanisms and Robotics at Thukuba graduate university because I want to make a Robot suit like `` HAL `` . I watched the movie , title is `` zonmbieland `` and `` kickass `` , today . zonmbieland is very a sweet movie ! I couldn n't turn it over well but it was delicious . Although nuclear power produces nearly no coventional air pollution , qualifying it as `` clean energy `` , the disasters it brought have thrented the existence of human beings . For example , I had to be home by 5 o ' clock untill I graduated high _ school and I could not leave any food , even a single grain of rice . They were prety naughty to me but not to thier mother . I told them to stop it many times but my face and head got hit by sevral stones . Next day I was dismissed becouse I punished them . Although I am sigle , _ I am nervous about becoming a parent . I feel a little bit nerous . Snacks goes crunch crunch in people 's mouth also drinks goes gulp gulp in children 's throught . The speakers are birsting out with loud and clear music . There are full of regretful coments with regards to his death which can be seen below the video . I did n't recite all the vocabulary , so it took me a lot of time to read the sentance . I want to buy some clothings for winter . I 'm tired but I thougt my work is was pretty good I worked for one month so dedicatidly for him after my ' afternoon work ' and during my days off . I was so surprized . A funeral ( PLease correct my sentense ) I like its coloer , very pale pink , almost white , contrasting with the dark brown of the trunk . In my opinion , all males should leave on Women 's Day also so that they can consort with their firlfriends and wives . I found it very intresting . I like rock ' n roll , for example : ZZ - TOP , JIMI HENDRIX , BB - KING , METALICE and so on . . . If I can , I hope to take advantage of my previous experience and English conversasion . I thought it was a bit wierd because she and I were not so close as to exchange messages . So , we can easily understand the why people crowd in the promotional merchandise and discount sections , and the people produce and sell unsafe food , which seems strange in some foreogners ' eyes . However , food securtiy takes money , which raises the cost of food . He was an about three - merter silver robot . Today , I have entried with this site . English conversation , English grammer , TOEIC Reading , . . . I have to study English for bussiness . However , I didn n't have enough money to order ramen because of the book I had bought ! I repplyed OK ! While playing , I strumbled on the soccer ball and fell . Then , I strained my left hund ! It 's makes me feel good to express my own feeling in another countrie 's language . The senteces below are one 's I made up today . It 's not perfect , so I want you to correct my senteces . Beef is quite expenssive . And they are destined to trade goods and merchadises with each other . Thanks to your hlep , I 'm doing better at english than I ever have before . There are a lot of Japanese toys for kids , and I would be happy if foregn people also liked them . I 've been having a cold and a stiffy nose for a few days . So , Okinawa prefecture has different culter from Japan 's mainland . I love the compassionaite people , the subtropical climate , and the beautiful sea at Okinawa . I had a pracrice of soccer at night . However , I had a lot of fairures . I was shocked because bomp sound . I 'm so excited to see her on the other hand I have to tell her my desition . . . But I have to tell her imidiately . . . . . . Anyways , how diffurent is `` Be going to `` to `` will `` ? Referring to those information , we discussed what Japanese Goverment should do . We hope we can solve thie problem next time . I went to my restrant to work . Meny people visit there . Born in 1869 in the hinterlands of Siberia as a son of a mere peasant , Grigori Yefimovich Rasputin would have appeared an unlkely candidate to rise towards a position of considerable personal and political influence over Russia 's ruling Imperial family . Yestarday , I was depressed because I want part - time job , but it was a day off for me . This weekend I want to rest and review my seminor textbooks . I felt the Chinese pepole 's energy in the festival . It was because I caugh a cold . The `` Sping Bank Holiday `` was on 25th May in the UK . I finally figured out how to use my electronic dictionary which I got from my family as a graduting present . Suddenly `` Go for your cowokers . Love is paradax , do n't you think ? I having a troble right now . I and my friend Eri tried to stop continuing ssociation with him . These are pictures provided by Multonman County Sheriff 's Office . He understaned the my problems . I really do n't feel like going becuase I have other things to do at home . This afternoon , I played ' Zhen san ' with my clsaamates , but we lost every game . I felt so upset after that that I went with some glassmates to play ping - pong . I had n't palyed it a long time , and when we were just getting started I felt like a beginner . About my syster and her husband ( Iwork Jinbocho . My university has a lental DVD center , and all the students can rent some DVDs with cheep price . Is it normal to rent DVDs on campas in The States ? That 's more weired than doing nothing ! There is not a crownd of peple and it is not noizy . Being a college stdudent is terrible . I 'm so norvouse . > < ? The adventage of Lang - 8 is that I can have my composition corrected for free ! Therefore , I will wrire diary or essay day after day . She saied that she really wants to sleep over . Functional Magnetic Residence Imaging , FMRI , is a parsisure that uses magnetic residence imaging to measure the tiny metabolic changes that take place in an active part of the brain . My first writting . In generaly , _ it is meant to symbolize that I should be loved by many people and also love many people . But in fact , _ my father had a fovorite child at his workplace when I born , _ and her name was `` AI `` . But I like my neme very much . We cant communite very well . I laothe english . Like I said before , I will keep movimg on . The newscaster said that in Islington the number of cars runnning on the street has genuinely decreased . The univeristy try to push students to communicate , and use a lot of English for studying . That was realy realy interesting ! ! The aftershock is coming , the nucleare problems have n't been solved and victims of the tsunami have not been rescued yet , but I believe we can repair the broken city . I like `` Toy Story 1 . `` I hane watched it more than ten times ! ! In other words in English , ' The whoopper is very delicious ' Today 's lanch I like spycy and ethnic food , so I sometimes have Thai or Indian food . To take in nourishment , I endevor to cook light dishes through trial and error . But , I am not goot at cooking . . . It was very windy last naght . It is especially exceccive today . I thought the stuff is too exprensive . I ca n't afford it . My friend He spent 400 yuan to buy a cloth . He is very pround because the cloth is a famous brand . But when you receive t the jeans , you find this jeans is diffrent from the picture . Eiglish is difficult for me . tremendous damege from the earthquake in Japan . Now , over 1000 peaple have died or are missing . Sendai , one of the biggest cities in Japan , was heavily dameged by the tsunami . It was the biggest qiake since we began to measure earthquakes . I cought a butterfly . After that , I sometimes caught other butteflys . There were some foreign toureists Her occapation is as a beaucian . They were very kind to me and their house was confortable . My scool is ACE , Australian College of English . I love flwers . My best score today is 89points , and today 's avarage is 85 points . A Headace I hate math , so I allways get a bad score , Some people say that simply read through the words is enought to memorize those words . Some people divorced 25 minits after they got married ! I was very surprized to see this news . But I think it depends on their personarity , so that ca n't be the only the reason . Reading is very funny and excitting for me . My body is heaby . Today , I was very unfortune . It seems like a ( very ) geat community . I 'd like to make use of it , and iimprove my English ability . It 's one of the parts of speech in Japanesese grammar . That is absoluly fantastic awards I 'd never seen before . He 's act in the Dark Knight was Amzing . I think that the train stopped and I could n't come home becaues of the typhoon . When a typhoon almost comes the train stops at my office neary the statiom . I became very scared and decited to be careful from now on . Last week a paster said that we had to take a pious attitude during Lent . The date of Easter is decided each year according to a given rule of the church , [ / BLUE ] and the dates of Ash [ BLUE ] Wendnesday and Good Friday depend on the date of Easter . This year Easter falls on April 12th , so Ash Wendnesday was on Feburuary 25th , and Good Friday is on April 10th . Many Christians fast on Ash Wendnesday and Good Friday , and the mony saved from the fast is given to poor people . Lacky me ! He is marriaged to a Japanese woman , And had mongolian traditinal boiled mutton 's leg . I realized the necessty of English for global communication like this . Today I went to school , because we will start our new semerster the day after tomorrow . I 'm into holoscope these days . His Paformance is attractive . I 'm glad I can join thise site and meet many new friends . Having a phone call when their roomates are reading . Washing things when their roomates are sleeping . Thanks to this journal I rememberd the washing ! I 'm looking forword to meeting them ! ! My sister 's family picked us up and then wer went to the Korean BBQ restautrant . We have n't been there in nealy a year , so we were so excited for their food . I ate eatwatermelon , and caught beetles . It 's a precios memory . The old house was remodeled . Hatupousai is Chainese food . I fried many vegitable , shrimps , and cuttlefish . The victims of the tsunami and the radiation leaks are suffuring from a serious shortage of food , _ water , medicine and heating oil . I was impressed with both contries . I am 20 years old and studying in a univeristy in Taiwan . I think I will start trying to write my jornals in Japanse , but I 'm using Engish as the ( median ) supplement since my Japanese is so poor ! ! Anyone who can help me correct my jornals will be greatly appreciated ! ! Yesterday , I posted an entry for peoplo to correct and no one did . I have to returen some books . The Japanese person is a gril . Her name is Ami . Me and her are the only two gril in the calss , so we are very good friends . Our human should unite togerther to build a United Human Republic . I have already wached the first one . I am not good at writing essey . I have poor grammer . I am working at a restrant . Thamk you ! We were imppresed because the illumination was very beautiful . Today is the startig of my 4 day holiday . Out of all foods , it is the most delicous Please check my crumsly English . It had a lot of thinds . When drinking with friends I 'm not well aqauinted with , I have to say ' ' I have to be up early so I can study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , the last two were jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe than usuall so we have n't much work to do . My cats are running aroud energetically in the house . I 'm chainese . I 'm good at sprots . Repeat this 20 times , then put your hands on the back of your backhead , and repeat . I was in the lab untill 11 pm because I had a lot of things to do . My alam clock I alway set up my alam clock . The alam voice is a music . I think I have to change the alam voice to be noyierso that it can make me get up early . I 've been interested in English since I was a young gril . I still can not imporve it as fast as possible . . . . My writter neither . . . She bought a lot of things in the web and spend a lot of maony . 2ne1 's chams attracts people . Although I 'm also fond of watching other singers ' performances , these days I 'm sure that 2ne1 's perfomence makes me feel good . I also know that the eliminatin of nuclear weapons is nearly hopelessly impossible . regarading earlier posting I wrote a brog post for the first time on this site some hours ago . I had a graduation examination yesterdar and today . I ` m expecting Japanese figure skater Mao will get the goald medal . 12 year artwork project `` Story to build a ship `` , This project works by PH Studio ( group of architectures and artists and photographers ) and people living in this vallry . It was not until then that I actually felt I was in Europe , which is quite differnt from Japan . I think I got sick from overexposure to air comditioning . . At that time , the weather was so hot that I was wearing a lessveless dress . So I shived in the cold while watching the movie . : ) The pictures that I have attached are not cleard because they were taken with a mobile - phone camera , but you can feel the joyful atmosphere . But I will rather buy my safety and comfatable There are so many aaants in my house especially around the kitchen . Taipei New World Mall boasts all kinds of shops , spoiling tourisms and passerbys with their boutiques , snack stalls , apparel stores , video game stores and so on . I had good experiences to comunicate with people of diverse nationalities . In diaries that other sutudents wrote on lang - 8 , the word `` busy `` stands out . I have n't cooked rencently because of work . I would n't say that I am a vegetalian , though I love all kinds of vegetables ! And I realised that even my childish laugh had disapeared . But I am trully surprised . Today was a liesure day , because I did n't need to go to work . I got up late , then I felt confulesed - - what should I do ? Wind flowed , clouds were beatutiful , the sun was so hot . My kids have changed my thougt . Then , we entered the same high scholl and joined the volleyball club again . What do you think of my pronuciation , to be honest ? The report noted that the student hung herself in her bathroom with a terrible pose directly because the school rejected her mother to live togather with her in the student apartment . As a young person , I knew ; either for others or for myself ; I shold work ( in order ) to live . I 'd like to make friends with everybody , to know each other and make progress togather . My other firend and I were impressed by his comment Ohh how surpised I did n't think I would see them there . . I wish that snows would be melted by tommorow night . Arfter that , My Korean housemate came to my room and told me he had tried to made Krean food and eat it . I am studing English hard these days because I want to expand business in the world . I usually use our dialect , so peple ask `` Are you from Osaka ? `` . `` Yes , of couse . `` I occasionally watch TV ploglam . It is the last year for me to be in the univeristy . So I want to go to experience and campare personally It is btter to travel than to read voluminously . After that , I dropped in to a carrer center in uni , and wrote a report on job hunting . Every stuedent has to hand in the report , so that it will help the students who will go on a job hunt next year . I reccomended to him to download a word file from a website , and told him how to put a photo on a document . Do you belive that Mary is going out with Tom ? Tom was a quite , handsome man , ( do n't pretend you do n't remeber him ! But I still have no ability to write or to speek on an acceptable level . I fenished my job today . ( ^ ^ ; ) I 'll go shower after writen this sentence . I want to know abouto foreign comics . After ( ? ) Openning the window , rain drops come into my room . Before it came to my house , it was my grandfater 's . I saw each year a countdown festival from bradocasting on television . But she recieves a small salary . I always feel excited when I go to Karoake . Suprisingly , he bought presents for me and my friend . Today is reiny in my hometown . I think Saiunkoku is a fun story but the thema is politics . As my homework is so heary , so I have n't watched any drama . They are the reason that I have difficulty writing oftenly . Recentry , I do n't feel well . I just do n't know waht to do when he is grumpy and disappears . The third son recently hung on to somotyhing to stand up for the first time . However , he is very dangerous because he very often falls andoversets . Those years were great , I met so many people from diffrent countries . I liked them all . The world is so interesting . We are all are so diffrent , but we are all human . We have the same wishes , the same fears and emotions . . . Hi everyone , I 'm Chinese , and I 'm studying Englis and Korean now . Now I totally regret my behavier . > < The most precious moment was when I passed the final interview for going to Vancouver for the inter skills training program as one of the representitives for my university . Lastly , I feel grateful to Byron for helping me improve my English and encouraing me to practive everyday . I was smilling shyly in the pictures , and looked happy . That is meanless , in addition , This word must make me walk back . He is the most interesting and well - ingormed person I have ever seen . He told me that there are many treatures in books . Moreover , he loves to travel to diffirent countries . I remeber that I wrote one diary yesterday here , but I ca n't find it . return gifts as a token of thanksness I think that it is important for Japanese to show ' a token of thanksness ' in some way if we receive a gift or favor . Any way , desire of studying or learning by inspiration helps us not to learn at high level but helps to learn for discoveing the real wrold . The little pies and chocolate pumps at a candy store little popular but with nice swetts . it doens n't make sense . The whole city is pluged in confusion and sadness . I was despiced X ( Rose shall retuen again ! nihonggo daisuki demo It is a convinience with many transportation sites . I prefer to swim in a swimming pool because I do n't like getting a sunburn , butI sometimes I want to swim in the ocean . They have been supporting me whenever I 'm in troble . One of my doble majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rnb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationshop ! So you have to study it very hard . `` I have to say that 's ture . You just have no gift in studing foreign languages . You should just take pride in yourslfe , because you can speak the most difficult language in the world , Chinese . `` Writting an English diary is a new way . The glasses I bought are light and taugh more than my old one . Studying at colledge is a lot of fun . I 've met nice friends and I have wonderful teachers . I 'll try the TOEIC in the next six months . I 've decided to study hard and earn a high score , so someday I 'll be able to talk English fluentry with you . Boys especially behavior like this . What I can do is to wish him a pleasant jourary and fly higher in the future . I have tried to find the reason , I think there are two : one is that I did 't get a good start , which means my colleages do n't like me very much . They just keep making fun of me , and they do n't distribute some of their work to me , but to another colleage who came this compang later than me . This month , I faced a lot of difficulties , one is about work , and another is zbout a relationship ( actually it 's also about work , because what I am going to talk about is difficlt to deal with - the relationship with my colleagues , and some of them are my roomates . Usually , I like cooking , but my roomates do n't like it . This kind of things always happens , but I 'm not usded to it , I am innocent , I have n't done anything wrong . After so much time without a single word here I have decided to return to my blogg again . I stueying English . At the meeting , I had to explain the doccuments I wrote . I planned to visit my wife 's parents this weekend , but my wife wo n't be going back together with me since she has to receive one - day 's training in onmodern management on Saturday . I already need to sleep again because I need to get up early tomorrow moning . Moreover , overseas visitors chose June nad January in second and third places with around 600 thousand respectively . Furthermore , similar treands are reported except a siginificant decrease in September with just over 600 thousand in 2004 compared to around 350 thousand in 2005 . In terms of the top 5 countries , the talbe shows that Japan , Australia , the USA and South Korea were the commonest countries as tourists to Britian in both years . * The top 3 countries did not show big changes in their percentages , although Japan was reported as the first country in 2004 and became the second with the only nagative change of 2 % . But many people think that it 's a sahme for an adult like me to be a fan of this story ! But I can not do anithig about it . I 've alredy read all five books ( including the last one , written from Edward 's point of view and its fan fiction ) first in English and then in Russian . I restarted studing English last month . I quit studing English 6years ago . There are a few sounds I ca n't pronunce yet : . For example , I do n't know how to roll my R . A seriouly infected patient is a 6 - month pregnant mom . The eighteen year old mom has been confirmed with the 2009 flu . She revealed pneumonic symtoms and respiratory failure , she needed urgent treatment for her life . PS : This is my first entrie . But enexpectedly as soon as I got up in the morning on Monday one of my friends called me and told me that she wanted to visit my home . I 'm was really happy and she came in the afternoon , brighting me delicious food which we ate while watching TV . In the afternoon after she lefe my home suddenly another friend called me to go shopping on Tuesday . Surprisingly , while I was eating my middle school deskmate called me and asked to meet in a coffe bar on Wednesday . So on Wednesday I drank a cup of coffee in a coffee bar with my deskmate while we were chating and playing bridge . The next morning my classmate called me and said that she had an upset stormache and she wanted to know if I felt ill as well , but luckily I did n't . The cange 's god . It is chenges or bills . Maybe There is a cange 's god . The cange 's god , thank you very much . I bought a lot of things that I loved including a buttle of sweet cream wine . Yesterday I terned on the air - conditioner ( or the AC ) , but today I terned on the heater . I know the meaing of word , but I do n't understand the use of this pharse when it occasionally does n't seem to suit the conversation . This school 's theme is : I will be a professonal business person and president . The europe buildings were resplendent , elegant , and spirtless as they always are . I want to be a scoial worker or a reporter . I 'm looking for goint out for dinner with her . Thank you ffor commenting in my last journal , I feel better and better . I figured out what it is was thet was bothering me . I try caping with my life . It helps to step foward from dispair . Some students were runnning around the school . I was not good at sports , and I did not like runninng . But , lately I starated slow jogging for my health . Some day I want to run a marathone . One day , I found this website on the komica . It 's a ACG website and I immeidetaly found that it 's a very interesting website . When I think of people who live far away communicating with each orther , I feel very excited . The other smartphones are not very atrractive for me . Reading Habbit summerize the book using charts and graphs with just 1 piece of paper read your book dirtly , do n't save your books . build specific point of view , write general subject like prizm , not just dig subject ( ? ) . I went shopping at an erectric store . I want a small parsonal computer . It is very expesive . I do n't have enogh mony . I want a lot of mony . The population is on the decrease . More specifically , young people are leacing , and old people are on the increase . On Friday we had American gests from New Oreans stay at our hotel . They were so friandly , easy - going , talktive , even , and they just start dancing . I 've liked history since I was a child , and I studied it in univercity . I did n't even look down , maybe by that time I 'm a little sared too . At that time , he knew that he must go or he would be a delious meal for the fox . My wouk schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarden teacher . I want to go to foreign contries and thought that Macao is good for me because of the language and the money . After that , I listend to music . I have several comporsary duties [ compulsory already means ' which I must do ' ] . I awaken and I am very tired , totally exgusted from it . There is a pharase in Korean like , `` Men have only three chances to cry `` . I must keep calm in front of my subordinaries , so I had to find somewhere they could n't hear and see my weekness . It 's very peacefull because everthing fell asleep . . . except for me . It publicate itself as ' L ' ife is ' G ' ood . Of course , since it 's only a semester - long course , it 's not enough to cover all the problems there are , but it still can give a general impression on how complex and interesting this area of engeneering is . I wonder if fornigners have a difficult time trying to speak Korean too . Today ( Japanese ? ? ? ) I wachied Tonari no Totoro by GHIBRI on TV But I 'm cheering Daiske Takahashi ! ! ( ? ) If you have some good abvice for me and find my errors , please tell me , I will thank you for visiting my blog ! I could n't understand it completely , due to its historical background . After seeing the movie , I want to know the hisory of Spanish . This morinig , I watched the movie ( called ) ' Beautiful Mind . ' I like to drink alchol ; beer and Shochu are the best . I started writting a Japanese diary entry . I started writting a Japanese diary entry the day before yesterday . Because I was not intersted in all of my studies in those days , Now , I saw many people studying Japanese on this site , so I was growing more interst about Japanese . I decided to start writting a Japanese diary . I think that studing foreign languages will be one of my hobbies . In the case of a movie or TV , the actor 's speech is very fast , so I ca n't catch on normaly . Today , I joined a local soocer club . One Aussie guy was alreday sitting on the grass . It was so greate , and it was Rock ' n Roll ! I think ther are a lot of good things about the bus here . I mean , most of the time they are clean , they have a sistem for people in wheel chairs , and they are big . Taht day we played card games and chatted about summer plans . Then we decited to go to the Taipei Water Park together . It was not very exciting but intresting . I like computers and the internent , and have & nbsp ; read many books about & nbsp ; them , such as The Microsoft Word by Bill Gates , The top of the wave by Wujun . The dead lenguages . We could not finish the work we planned on doing , becuase the customer got the wrong program . The weather is vry hot here . Hard schdule . I feel I 'm luckey and I want to take care of care my daily life . Mia has no father , becouse her parents had divorced . Many of our firends came and we had a good time . I wish one day I could be an excelent teacher as they are now . What we should do is respect them and try to inmprove teir lives . Yesyerday , while I was on YouTube site , I found nice hip hop groups in Japan . My major was internatilnal relations especially East Asia , as an undergraduate and graduate . ( It 's new expressiton for me ! ) `` This is a kind of fundamental soya bean . . . . `` We received a persent from the science club ! Her voice did n't sound as lovly as it used to . I Iwaitted 3 hours for my mother to comehome . In the hall , I listend to the lectures about which course to take in the future by two midical interns . I 'm so worried about which course to take in furuture that these lectures are I 've been longing to make freiends all over the wolrd and enjoy chatt and spending a lot of fun time with them . Avril Lavigne is my favorate singer . And Japanese is prohibited from now on . `` It was a suprise attack . Altough most students were calm , a few were shaking . The notion I was not alone comfrted me somewhat . I will post some essays in the furture and I hope anyone who reads my eassy gives me some suggestions . I spent one day playing with and taking care of my addorable niece . I will import the CDs to my WALKMAN tomorrow and I will listen to thie music every day . Who are your favorite musicias ? But this quake bacame strong and someone shouted . I have worked with DSK in kroea before , I am sending our main products list as attahced . Thus , I think it is natural taht parents are the best teachers . It 's so difficult for me to use English in my surounding . I live deep in the mountains where there are no people who use Enlish . We came back from Boston late on Sunday , so we colud pick her up on the way back to home , but the kennnel was n't open last Sunday and Monday for pick - up , due to Memorial Day . First , I saw the Japanese style armers . For example , some armers seem brave , some dignified and some intellectual . The weather forecast said , `` Pay attention to heavy rain till tomorro morning . `` Actually , the previous article I wrote was never crrecting . What kind of promblems can this cause ? If people inve in other countries , they would experience the difference . Connecting a city road system to make other free travel moreeasily and more quickly than steets and roads congested with many singing andlight bus stop . Today it 's raind so ~ ~ ~ ~ much ! but it raind , so I could not go out . what happend today : ) I saw a TV program about the new year 's marathon while getting ready for goin out . Just the diaries of a stupid gril . that is nothing spciel . This is becouse the light reflected off the water bottles repels the cats . I think that is interesitng . Soprts bicycles are expensive so it is necessary to be carefule when selecting a bicycle parking lot . And I guess electirc toothbrushers make my teeth more clean than manual brushing . I suddenly realized that it was time to pull myself together despite my parents ' broken marriage , and focue on studying again . My friends taugth me how to use the computer well . While we were going home , we tried to speak only English istead of Japanese . Although our conversation proseed slowly , I thought that it was good idea ! I feel the diffrences between two sentences . But I can not explain the diffrences clearly . I am in a ELD ( English langusge development ) class . If my English improves , I will take some science classes because I want to go to a good university . However , I do n't remeber what it is about or how good it is . I paracticed playing this song today : ) Today , I dropped by a glasses store and bought a pair of sunglasses for my use on a short trip the day after tommorow . Tommorow , I will wash my car with my elder daughter for the purpose of a short trip . Then , I thoght I 'd study English words while reading book . Is there a book that you can recommend for biginer . Do you know a book which you 'd recommend for a biginer ? Acutually , we all felt that way . 'cause I blieve that to do one 's best is important and valuable . I 'm not a ginius , I 'm just a nomal person . . ^ ^ but maby I can do it . speaking of methed of studying English , I beilive that Lang - 8 is very effective and addition , it 's free of charge . usually I would work out , before swimmimg lessons , but I did n't do them today , I rarely have an opportunity to work with foreigners , so it is a prime opportuniry for me ! I LOVED TAHT ! The temple was good to see and Seokgatap in the temple , which was constructed in the mid - eighth century was simple , but had a good blance . The homework is to read a book witten in English , and write about the setting , summary , and my impression of the book . : quated from `` Pay It Forward `` . He allowed me to , so I called my mom to pict me up to go to the hospital . Itarian restaurant Yesterday I went to an Itarian restaurant famous for organic vegetables in Ginza . Theoritically , Indonesia is located in a strategic position . And they were touched by beuty of Korea 's traditional house . Now it is neary 6 : 00AM . Parhaps , it will shock everyone . I hope my poor words can descripe it clearly . What 's more ? eah . . . wait for me to have a dream tonigh 2 days ago , at Yoyogi park , I drank wih my friend . I was completely drunkn and fell aleep on a bench in the park . By having this faith , I have the confidentence to face the next challenge presented to me and I am not afraid of facing problems . Second , I want to go to my home in Hirosima prefecture . I look forward to reading my diary after it 's crrect ! In the future , I will take more time to read , because I like reading very much , and I want to have more kownledges about all over the world . The job is difficult but it brings me a sence of fulfillment . movies , news , novels , grammer , diaries , travel news and so on . hello , it 's the frist day I came here . I 'd like to make friends with everyone . I have to work hardwork for the meeting of our project in Sep . In China , finding a good job is very harrd , in New Zealand it is 't so hard than China , but it 's not easy . When I missed getting off of a bus and was concerned wheather I could get to my home safely , the bus driver made the effort to make sure I got home safely . It is that the weather in Seattle is very changable . I miss my country 's familiy , friends and food but I know there are lots of interesting things in Seattle . So I hope you can correct my worng expressions . we are gon na go wacth the musical `` the lion king `` : ] Resently I got a new job . I am not sure if they do drugs like drug addic or if they just did it once , because I heard it from someone else that I hardly even know . So I decided I want to ask them face to face if they are drug addic or if they are dangerous , because I do n't want to bejudgmental , talking behind their backs . I want to make a friand ! I have friends in the UK and we exchage emails with each other but I make mistakes all the time . I will write my journal and emails which I want to send my freinds . I enjoyed many experience , such as Mekong river cruise , long tunnel of Kuchi , and shopping . They have food that goes with drinks , such as fried rice , grilled fish , and Chiken karaage . This September , I will be promorted to a position that requires me to fill out a lot of documents . Please resolve my quesyion . I 've fainally finished school test last week . I challenge cecondary level so I want to improve my English . Yes , my handle name comes from the from famous musician Jaco pastourius . I was very supprised , because his sound was very unique and very interesting . I like learning languages , so I interviewd with a foreign exchange company . A litle bird We used to be more talkertive . Refference : The teacher said we can read toghether in 6 months to a year . ( half or a year . Or what do you recommand ? I 'm a bigginer so please recommand easy ones ! XD So I buy a fiction named `` the Lost Symbol `` which written by Dan Brown , one of my favourate writer . Hence , I am not good at speaking and listenig English . How shoud I study to be able to speak and listen to English better ? I felt reflesh after a 90 minute nap . Ican have breakfast for a half of the day , reading lj and planning smth for theday . Before I posted it to tiwitter I had deleted it by accident . Do you know that Japanease mobile phones are very high qualty and have many functions so they are very expensive items ? I have heard that there are simple mobile phones for average users and kind of pda for heavy users in foregin countries . My Japanese collegues are morons , nobody can speak English well except for Seki - san . I am going to take the test in Feburary . Now sixteen years later I still take time off of work and study to play it very ofen . I 've nerver had formal training or a coach . But I beleive I have a gife for this ! Ysterday I found a website which has many people that live in my city who love this sport . Also : according to past exeperience , the attendees are mostly professors , NGO staff , governmental associates , and university students who are related with this subject . Dispite yesterday 's continuous rain , the sky was completely clear . I cleaned my room a little becase it 's nearly the end of the year . You are a worker of a large supermaket . Maybe your supervisor has a trouble infoming somthing to all the workers . Because the supermaket is very big . When I listen to music through headphones a little loudly , sometimes I feel I am in my own small unversity . It has become cold these days , so I bought oil for the air heeter . However , I could n't use it because the pump to pour the oil into the tank of the heeter was broken . A raccon on the balcony It was very surprising to see a raccon on the balcony ! Well , I 'm living on the second floor , so it 's a big quiestion about how he could get here . I like it when I touch the keybord for the first time . However , the typhoon is comming to Tokyo and will be here soon . I was surprised by this number , because the iPhone , which is the largest competitor to the Nexus One , had sold over two handreds and fifty thousand in first week , according to this article . My dad is the most ugly man in the world . I hate him hate him so much , what a horrible man he is . We hardly ever talk , and we are always angry when we speak more than 6 words , so I perfer to talk with a stranger than to him . I have been satisfing with this vacation . As a result , my study is prompted superefficiently . I am a grade one uniersity syudent now . I 've studied for two months . How follish I am . everybody has different plans & dreams in the their colledge life , I want to be a business man in the future and have my own company . That journal was written by a japanses person . I eat dounuts and drink coffee , of course . I finished a chinese chracter 's homework during break time . When I took a bath with my younger daughter last night , she asked me , `` Can I get a baby with my tummy ? `` Ske is 9 yaers old , a little chubby but watches her weight . My American friend told me that she had a friend in Australia and we found out that her frined was a student at the university where I will take an English course . After words , l went back to my home and watched the movie `` Btterfly Effect 3 `` . I like to have a my own garden where I can plant some vegetables and herbs , set up a table outdoors so I can read and realx In addition , another advantage of living in a house , it is much quiet than an apartant . However , therere are also some advantages to live in an apartment , such as better location , cheaper rental then a house , close to public transports and variety of facilities from the apartment , For example , a bigger swimming pool , Gyms , theaters and a security system which is very important of our properties safety . I wana study science in a university . I like scienc very much . But then I realize that I 'll never learn how to if I dont n't make these mistakes , even if I get embarrassed because of them . I lost my moble at a bus stop . It is certainly a new way of communication wich we did not have some years ago that provides posibilities not available before . On the other hand , we must accept they have weak points , like risk of addiction and possible unintentional public exposure wich of course can be found in other very old examples of our societies . The brain of that computer is composed of 2 Bouble - Core CPUs . I belive I can do it by Mac . Short time ago I read my acquintance 's diary in mixi talking about lang - 8 . There are three words which mean the same thing as `` result `` meanslol ! I met one of my friends who I have been best friends with sinse we were high school students . I had a plesant time ^ ^ He has a very global philosopy . They talk everyday in lovery voices . If you are free , please check my sentense . The theme of the lesson today is net play and practicing vollay . ever since I came to this school , I have kept tolding myself never Actually one of co - workers is complaing about her cuz she is strict on everything like cleaning , manual and so on . Sometimes I really like to live here , but I feel sad ofter . In October of laast year , I went to a Chinese restaurant in Fort Lee with my friend and her five - year - old daughter . Nevertheless , my friend kept telling me that they served delightfull meals / dishes , especially shrimp dumplings and wonton soup . I did n't undersand what she meant by that phrase . She replied , `` I said it 's my treat . `` I was comfused , but I finally got the meaning . When I was a high school student , I lernt it / learned it as `` Be my guest . `` Ttip to India ! Please correct my diary I hope the nuclear emittions will be stopped as soon as possible ! Are these three the right expresstions ? I can talk to meny people . So , I can / get to learn some English from ther . I watiched a debate between Toshinao Sasaki and Son Masayoshi on Ustream . Sasaki guesses reform would need an application layer before rebuilding an infrastracture layer . Math quesiotn Let me talk again about my rubbiish story . I feel more confortable in them than shoes . `` Please tell me the differences bitween these two sentences , I recieved a picture card from a male friend of mine . He is an archtecture , designer , gardener , and a ceramist . He has a broad maind and he is an independent person . He grows rice and vegitables for his own needs . I want him to get marrid and have a family . Becides , I have to admit that I am a playful boy . However , I think that I will have fun with lang - 8 as I am interactin with people on the world on the web ! ! on the other hand , I do n't belive that I am loved And let me know if you have any reccomendation for places / food etc in Ho Chi Minh city . such as Manga , Music , Snowbord , food etc . Resipe for `` Okonomiyaki `` is very easy . But this food is very derisious . `` Okonomiyaki `` is a local dish in Osaka . So I took an aspirine and it went away . Without a doult , Obama got what he wanted . Will Martin say his dream come ture when he hears of this news up in heaven ? not attack China as much as before , this has made Chinese peolpe observative the two candidates in a more objective way . I do n't use the air conditioner and every nigthts feels so hot . My favorite season is Autum . So I did n't go to my English school and canclled my trip to Nagoya . . . . Fortunately , the job is finished at the end of this month ~ Then I am going to travel to hokaido . I have stayed in another Joy for a really short time [ ? ] , and I left there because of an event that I could not edure . I am so appy to join this site . Thanks in advance to all of you who help me . Today I was drawting a lot of pictures . becouse I had an appointment with my friend . In my living memory , I 've nver seen someone who can survive without the help of nutrients that are mainly provided by food . It 's no woder someone in Japan brings up this subject although we do n't need to be worried about our food for the time being unless something irksome affects the food markets . Therefore my brother temporarily adopted the stray , who is more loving and well - behavior than my own puppy . Today was an ordinaly day . I woke up and went to university , a part time job at Starbacks and then home . I think Oden is a uniqe Japnese food . It is an easy to cook and econmical meal . I have no idea about grammer . . . and vocab . . . But , my English is my biggest plobrem . . . We ate okinawa cuisine together . I go to work almost every day so it seems a little bit hard but it is fun to work with my coworkers , and I have to earn money for my working holliday , so this noodle shop is the best place I 've worked so far . I arrived at my first distination , Montreal , two days ago . And due to the distance from Toronto , the time zone between two was plas one hour on Toronto time zone . I missread it as she was good be born as good cooking person . Thinking in foreign launguage . In adittion , when I encounter daily things , I have started to describe daily events . But Japnese 's advantages , as it may seem , is a paradox . If I have my owon house , I would like to try `` DIY `` : ) . Maybe I was gradually becoming Chinized ? Greeting with strainger is a wonderful habit . Today is the Larntern Festival which I love very much . The story comes from a manga in a magazin for adults . Watashi wa Torukojin dese . It is one of the most popular atraction , but I was able to ride it soon , I only watied 5 min . I managed to ride 12 atraction and Sprash Mountain was the best of all of them . I wanted to ride Space Mountain but it was closed because of mentenance . The electorical palade was sooooo beautiful ! ! ! When I got home , I still felt as if I were riding roller coster . I will talk about the advanteges and desadvanteges of a computer because I want talk about the advanteges . About the desadvanteges : At first , I thougt I just had a hangover . I shoud stop working and go home right now . . . . And I 'm sure that I sounded funny and akward because I just created most of the expressions right off the top of my head . although the first price is chanegs , my expectation is n't changed . I 'm wating for May for my travels to begin . In the beginnig of our relationship , he made me dinner that consisted of fried meat and instant mashed potatoes . Honeycomd & hive Here in my citi there are a lot of buildings , and there are also a lot of museums and parks . Our problem is that in other years you could walk across the streets free , without problems . Now , at this time , it is imposible because of security problems . Bracelona . Faced agaist Real Madrit . I went back tomy seat and drank the caffee . My parttime - time job is from 3 times to 1 time per week . congraturations ! and today is our domitory festival ! I 'm a domitory student council member . As a result , I regist an account immediately and began to look for some friends whose goals or hobbies are similar to mine . Theer is an exam about house building in Octorber . So far I do n't miss Japanese food very much because there is a large Chinese supermarket in the neighborhood . I can get vegitables , fish , tofu , soy sauce and many things to cook for myself . I really regret not going to my colleage reunion ! I missed my colleage reunion . Which is more popular in your contry ? Today I changed my celler phone to a BlackBerry . Of course , including `` Lang - 8 `` to improve my English skil . However it is a dilenma . but the recrute is going to come soon . I like to focas on my feelings . A podcast is a free intenet service that supplies you with numerous topics in various languages . People that host podcasts for begginers speak about / on topics at a slower pace . If you do n't use podcasts , then I strongly reccomend that you use them . Even so , I believe that Podcasts are still a verry effective way to learn a forein langueage . Recentry , I 've been going to an English Conversation school on the weekdays . she spoked to me in a clear voice , and she knows a little Japanese because she lives in Tokyo . Rather than that , it seemed to be from norvice to an intermediate level . My name is Akito . I am18 years old and am a University student . I live in Shizuoka in Japan . Mt , Fuji is in Shizuoka . Why then , do you know Okinawa in Japan ? I l ived in Okinawa before I moved to Shizuoka . I love Okinawa . There are many great things such as the clear blue sea , very delicious fruits , and native animals . By the way , I want to study abroard after two years for learn Engish and a different culture . But , I am troubled about where I should go . My senior advised me to go to America or Australia . In his opinion , in America , American English is spoken and in Australia , Blitish English is spoken . So I should select them . Where do you think I should go ? I have little time to sutady becouce work began . I 'd like to introduce my houmetown . It is the tallest mountain in Kyusyu . It takes 1 hour and 10 minutes to get there from Yakushima ariport . I 'm studing art at Zhongyang Meishu Xueyuan ( CAFA ) . Outside of art , I like shopping , _ play the trumpet , guiar , piano , _ studying languages , _ taking pictures , cooking , watching movies , etc . Encantado conocerle . Today is Satur . I got up early in the moring and did some exercises with my mom in the park . Since last year , I have been studying ecinimics for a civil survice examination . ( Sounds better . ) I thught that might be why I ca n't be good at it . Today , An unpleasant thing happened , , One of othodontic appliances came off . I have to go and see the Othodontist tomorrow . brillint . Recentry I can talk with them more smoothly than before , so I had thought my speaking skill is growing ! ! ! But in fact , thier listening skill is growing : D I atteded the wedding party . I wear contact lenses instead ) , unmblellas , scarfs , jewelry and so on . Even at home , many things disappear , so I 'm always fooking for something . Yesterday I watched the moive Blood Diamond on the internet . The story is about a diamond smuggler ( Leonardo DiCaprio played this role ) who meets a fisherman by accitent . Chiristmas Party Howevey , I also know technologies have been changing very fast and the cost of the products are decreasing quickly so I decided to buy middle range products . I am satified . Howvere , there are a lot of blog sites , which is the best ? At that time , there was a docter on the train and he was OK . Anyway I think that they should n't learn bad Italian words expecially because what it is said could be very hurtful in your mother tongue . Since I finished my Chinse writing assignment at school It is very srilling and fun ! He looked fatter and he said `` singapole food is very nice ! `` Certainly , singapore food is so good ! Ofcourse we took a picture together and after that we had a dinner in a thai restaurant which alongs the singapore river . Maybe I should go to bed earier . Have you decided what presents to give your friends and familiy ? The website said they sent exams result out last Wenedsday . Today , two people did n't attend lab becouse they had a cold . Now , people are catching colds easily becouse the season is changing from sammer to fall in Japan . You shuld take care of yourself too . English is vey difficult Another song `` Kidz `` sung by Take That has ( their ) MV on the Youtube . According to the theories of the great psychologists , I analysised myself , encouraged myself , and enlightened myself . Actually it tastes good but sushi as raw fhish on the rice is definitely better ~ : ) I watch Koby Brient the most . We ate many humbergers because we were very hungry . ( But this was a big misstake . ) But the problem is my cousin seems like a mysophobia . I baked chocholate pie and apple pie in the afternoon . I 'm preparing for a college entrance examination because next year I wil attend a college for further study . So my resolution is to continue buying lotteries in order to pay for the expences . But I try my best to heip those who are learning Chinese . So that 's the first dariy that I publishse here . Moreover , doing churus in class brings them together . Each one feels he or she is a member of the class and through singing they bond with thier classmates . Apart from preparing for studying examinationand learning capacity examoination . Morover , it will be more fun than studying by myself . Second , I often help my friend who studies better than I do with my favorite subjects , except ( ? ) for English such as writting , reading , etc . When I was a high school student , I had a rival to increse my studying skills . Finally , studying with classmates will give me great oppotunities to make a lot of friends who like to study with others . I could get used to wirkung with many companies who can give me some kind of advice to run the company . For these reasons , I prefer studying with friends rather than shuding alone . Hellow , I want to practice my writing skill , so I enterd this SNS . What are your favorite chatting toos ? QQ or MSN ? We got gethering to celebrate the day . I just smiled and said `` Mom I 'll get merried this year ! `` I might have dreamed , but I counld n't remeber . But it gave me a headache . I have n't finished writting new year 's cards yet . I may need to have a narve extracted if I feel any pain today . I want to spek English . I put it into my computer , then my Media Player showed `` under constraction `` as the tytle of the CD . I would like to leaen real English . The lesson of this story is that if you invest in artst 's works , you should resarch the age and health condition of the artsist . I wanna know many countries and talk to diferent people , know different diferentcultures not from tv , but in real life . in the picture above is the city that I live in , the upperview is so beautifull ! And now I 'm oficially on vacation , so I 've decided come back home for one month , with my mom and younger bro . Then I will exert myslef to study . This is a very encouraging animation , so I recomend you guys watch it ! There is very very small pond in my greden . I ( previously ) mentioned that I wanted to watch Incepition . It was a very compricated story , but because my Engilsh teacher had told me the basic story , I could almost ( / just about ) follow the story . I 'm pround that Japanese actor Ken Watanabe plays an important role . I felt that a typhoon carried someting adventurous . I think it is diffecult . And It is esay to find people who are you looking for . But it was blamed by many mixi users and it was callpse just one day . I guess I want to cominucate with friends who study language . ( In Lapan , it has become popular for people , especailly business workers , to get together and study in the morning . I surelly depend on my iPhone ! ! ! ! ! ! ! ! ! ! ! ! ! ! It is reaaly nice day for me , because this morning I found some money in foront of my house . The motorcycle came to my home , I do n't havea a license for motorcycles over 400cc yet . I like something simple , so my fovorite coffee is an americano . The owner of the cafe is very kind , the price is not expencive . It is mysterous . . . . . I have difficulty explaing the rules in English , so you may not understand . Today , it was extremelly cold ! ! Students at many unicersities in Japan are requered to study a foreign language , usually English . I succeeded in comunicate with them because English was spoken . Today I had a graduation exam and missed many guestions . I always have trouble keeping up with the rythm , The story is about a woman who travels to Itary , India , and Bali ( in Indonesia ) . So I 'm a bit nervous but I am looking forward to studing English here ! I thik language is very important , because who study various languages has more opportunuty . I have two favorite books . I am sorry about that . ) , Chamber of Secrets , Prisoner of Azkaban , Golbet of Fire , Order of the Phoenix , Half - blood Prince , and Deathly Hallows . Dumbledore is the principal of the magic - school , named Horgwart . I envy the author 's emagination . And he wrote a very awful letter like ' I wo n't thaks you for the present . I 'm looking forfard to it . As an English teacher I should encourage students to write more so that they can review and grasp the knowledge well , such as words , prases and sentence structure . Of course , teachers themselves must have a good understanding of grammar and expressions so that they can give stidents right and instant correction . When a thphoon comes , elementary schools are closed . HALLO ! ! In this way , autonomous enrollment is a good additional procedure for Colleage Entrance Examination . For another , Colleage Entrance Examination is a only way for students to enter Colleage before emergence of Automonous enrollment . Therefore , Automous enrollment is benefical for students to do their best . Taking into account of all these factors , we can draw the conclusion that Autonomous enrollment is necessay not only for universities , but students as well . I have a good Korean frinend . He in on doctrial course . I went to a korian restaurant . Additionaly , I learned about many delicious foreign dishes when I came here because there are many foreign restaurants here . My favorit foods are Thai food , korian food , and hamburgers . korian food is a little bit similer to Japanese food , so I like it . I love green cury because it tastes spicy and sweet . I think American food is more yammy than japanease food . Because of this , my weight increases litle by little , but I enjoyed today 's lunch . These rights guarantee equority without distinction of any kind , such as race , colour , sex , Because of it imported goos become cheaper . At the same time , I have started to learn Jepenese so that I can watch Jepenese T . V . programs . I 'm a Korean colleage student . But it will cost about 50 trillion yen to realize this plan , so it is supposed that the consumption tax will be raised by 4 % , health insurance premiums will be raised by 2 % and premiums for nusing - care insurance for over 65 will be doubled . It 's made from roast cereals and does n't contain any coffeine . My favorite music ! Part 2 my frist entry here nighttime , I either went to the library or had a wolk with friends on the athlete groud for more than two hours to practice our cantonese going to skate togher . Houever , the service industry is really intresting . The dishes were very delisious , but I got the same dishes also 1 month before . There was a dramatical change in the youngest group , but the two other groups showed gradual increases as well . He was very the one who had been teaching me and keeping me safe before the accident happended . How can I meke her like memorizing words ? This picture is our national flage . It is a peareful country . We Welcom you ! We orderd chicken dishes . I have to buy a chcket , pay travel expenses , and book a hotel . I 'll spend much maney this summer . When you draw natural things like trees , stones or clouds it does n't metter how the line goes . I bought theipod touch with 64GBs , because I want to download a lot of autio books for now . Still there seems to be a pile of arduous taesks in front of us . My phone rang [ past simple ] at 0 o ' clock hmhm a new messager is the first in my day . We could enojoy karaoke more than ever . cooking is splended . As commander in chief , the game user has to manage money , resources , supplyment , equipment , military forces in order to command an space army and defeat the enemy . So I want to see a lot of things , and talk to some peaple . Tis trip will be a great pleasure for me . Ramadhan is coming , so I will have a lot of time to stay at home and do nothing . Today , I will try to think about the ways of studing . So some people say a way of studing is good , but other people say this method is bad . I have read dozens of books about ways of studing . Because this journal is really long , I will write a concrete way of studing tomorrow . She is studing and works now too and she is paid about 500 $ a month . Yesterday , I recieved my TOEIC results . Hello , I am tdesesk . I am from Spain and I am learnig English to speak with my friends and to understand people when I go to other countries . becourse he always talk big and he is mean . 2 yorks in my bowl , every morning . It is an international and professional organization . The members can improve their speaking skills by givig speeches . I hope someday I will be able to talk fluently in front of the public without tention : D Other than that , we also need to turn in ( or submit ) a group project assignment of 15 pages and have one group presentation and one individual oral prezentation . Yesterday , I signed up for the correspondence cource . The contents of the cource consists of hearing English for 1000 hours in a year . According to the explanation of the cource , it is generally said that about 1000 hours are required to get used to hear foreign language accurately . The cource costed about Fifty thousand yen . It was not low but I could pay for it by the welfare progrum which my company are offered to me ! The cource will begin in next month . I feel neverous right now . But I hve no idea how to stand out during the interview . I 'm so nurves . . . . So praise God I can take the class , and hopefully everything will be ok until the end of the semester . Well , even though it is September , it 's scorchingly hot today . They are so strenge ! If I will go to oversea , I would like to see munument ! I think there are so many monuments that are fashonable , and strenge in other countries : ) Today I discovered an amasing work of art and a good atist . I think that his artwork is miraculous and beautyful . When I went out for work , the temparature was onry - 10 degrees . I usuealy work until 5 : 00 PM from 8 : 00 AM . I understand now why I could n't write anything ; it was because my motivation came from showing off / looking good to other people , not from a desire to express my criativety . ESL Podcasts are for English beginners and it 's easy to listen to thier pronunciation . I went to my University thise morning . To be a telemaketer for the day . Thise topic was `` No smoking at work `` . Reapting the same questions again and again was vapiditive . First I want to learn English , so if you want to help me I will be very gratefull . : ) The first people who take paid leave ( days off ? ) in 1936 go camping and danse the tango under the windows of a britain manor . Another reallity makes trouble in the manor : the influx of foreigners coming from Germany to escape the Nazis . This happiness dissapear because of the agitated defenders of Occident . Studiing English and massage She has a nice bodyline and beautiful legs . We 're trumbling together , to get more clear that what is tender Although it might be tiny numbers compared to the US market , we 've begun to ren or purchase movies via the internet . Today is a very comforortable / pleasant / nice day , hello , I 'm interessing in learning english but it 's very difficult for me . . . I 'm learning English and Japanise . I want to speak English and Japanise better > - < I think I should study more ! My lunch today is fride rice and fruit . The leaves change thair color to red in November . I have many doreams . I think all are future tence . . . . . I woke up in a very good mood , but the sand in the wind was very strang . A strang wind blew the sand in the air , although it was not much sand so I could still see the sun . But the sky changed to gray . That was the first time I have seen sand in the air . Dehehe . He is an English teacher at the stitute where I 'm teaching . The answer is a Japanese celemony . Japanese children are wearing western cthothes usually . but now the 753 celemony is more simple . I 'm affraid Japanese traditional celemony are smaller than old times . since I opend this web page last time lol I do n't know what bad tranlations are . v valantine 's Day . Of couruse , I 'm included . It made my taste change spaicy ! Ater that we enjoied shopping and became tired , so we went a cafe . After hiking , we went to a Japanese Sushi restaurant in Okland . On July 24th , an earthquake with a sesmic intensity of upper 6 occurred in Iwate prefecture . Fortunally , buiding damages were small . I desided to translate a short story ( well , actually it 's not that short ! ) by Somerset Maugham `` The force of circumstance `` . But for my dismay right now I can remeber only one of them . Reading these books helps me learing English , but it is bad for the store if I never buy them . Electorical supply store I was happy just looking and imagining what life would be like with thme . The surgery was about 20 minuetes or so . Theere were 6 or 7 pieces . He cleaned and stellerized it . I 'm OK now , but every time I eat something , food gets stuck in there and I feel very umcomfortable . The reason is , fiest of all , that he has a lot of knowledge about architecture that he is always willing to pass on to his students . However , in fact , I do n't know , and I 'm afriad about the exam next year . About The Canadian International Doragon Boat Fastival . Dragon boating appeared in Vancouver as a demonstraition sport at - Expo 86 . The peolpe raced out in their fish boats and used their oars to keep the fish and water dragons away from his body . But it so exciting to know something about a foreign education sistem . I felt English was really interestig ! ! So , I wanted to become a costomer service agent at the airport . I am learnig English and Chinese now . It is funny for me to waching sters while thinking about myths . When I try to charge on a customer 's credit card , I call a company called ' Authorization Centre ' in Japanese in order to get the transuction number from the company . I 'm studying Japanese teaching and I want to live in a forign country . Reacentry I studied English hard to improve my TOEIC score . These sucide bombings have taken place universaly so the United Nations officals felt obliged to investigate . The situations told by witnesses who claimed to have seen the incident were extraordinarily similar . Though I 'm not a follower of the press celebrity , when daily we are harassed by bad news , a wedding does stand out from the rather mortiferous current events which surround us . What makes them so fanatic ? As I grew up , I became a little bit buddhistic - minded , but I have not practiced any of the disciplines . HE IS ONE OF MY FAVORITE SINGERS I TO LISTEN EVEN THOUGH IT HAS BEEN JUST 1 WEEK SINCE I FOUND HIM ON YUTUBE . SINCE I ' M NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNOR THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` INSTED OF JUSTIN BEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID `` NO WAY ! ! ! ! `` . I find it is very diffecult thing to do . In fact , I have a new dog two weeek ago ! Inspite his tiredness , it took a long time for Shu to fall asleep , which made me exhausted . It is my wish that chidren become fond of mathematics in the future . But , I 'm a littele worried if I 'll be able to when I 'm hungover . They were so delisious . Havee a good night ! Thank you . When I rode home , the breeze smelled so sweety and anmiable that I felt just like a bird , soaring freely in the sky . This election was my first big elesction . I think it 's a very big event and it is just a nomal thing too . And I saw a TV dorama on PC . We drank shampaign and beer . We requested songs and drank some shampaign . Sentence structure and grammer are very important when we write . I hope this article is almostly correct . I bought Draino yesterday . Why are you waiting untill it fails ? `` A few days ago , I was really confident and believed I could do everthing . I could even act like a well - known actress . I want my mom or my close friend to hug me whether I do well or not . I have just started to write a dialy on Lang - 8 today . But I do n't have self - confidense with letters . A good frend . I have a good frend , an e - pal , but I treat her as my frend . She is an interesting person , I wonder whether the word `` interesting `` is right or not to descibe people , lol . Although I am older than herI think we will be really goos frends , I thought tomorrow is Sutarday , so I do n't have to work , but my customer said `` Let 's have a meeting tomorrow . `` . I shold have watched them before going there . If you have kids , you can bring them there to jion the story - telling event . When I chatted with my American friend about a Japanese hologram idol , Hatsune Miku , over Skype yesterday , he sent me two very funny video clips from YouTobe . I am Ukrainan , but I live in Russia . Ergo Proxy , Texhnolyze , Ghost in The Shell ( I like movies more ) , Whitch Hunter Robin It is an illastraion of girls dancing a fula . A for a long time that it was not correct , because a cunjunction must be used in the middle of the sentense . but I do n't konw what to write . This movie did n't meet / satisfy my expectance , but it 's still a good movie . We may be as happy as can be to read the books which our favorite writers wrote or are about what we are interested in during the long nights in this most comfotable season . There was an old man & nbsp ; wating there , too . It is the UEFA chmpion 's leagu . So I am writing a dialy and killing time . I hope the drinking party will be over in a few minuetes . I have been learnning English for five years and I have no one to communicatae with in English . I want to go to Canada to study Engrish . I was at sea this summer the ferst time . Today , I thaught of a difficult grammatical concept . Today , the water suppliment our neighbourhood was I want to try a lot of thinds actively in this year . We cosplayed as KOF , a popular Japanese fihgting computer game , and placed third in the Beijing area . If I wanna make a foreign firend I must command this language . Today when I woke up and brushed my hair , I found a part of my hair was ttangled badly . Fianlly , I used the brush to comb my hair again and this time I was able to brush it through . I am proud of the workers who are warking at to solve the nuclear power plant disaster . In fulushima , although they are working hard , there is still no electricity . both residents and Japanese natinal . The rocks wiould be slippery and waves would be high , so we decided to cancel it . My English graeds are still very bad . I 'm Japanese and university student in Kyoto which is the most histrical city in Japan . I 'm majoring in cultural anthoropology . Simply put , it 's comparing a culture with other cultures in a histrically context . For example , if I study about a festive , I have to inspect the place , the histry , and refer to certian books . Humnn , it 's difficult to explain exactly . Anybody could passiblly be `` otaku `` . This theme is very challenging for me because the invstigation of the matter is still under way . When I was a junor high school student , The Beatles ' best album `` One `` went on sale / was released . It brodcasted The Beatles ' promotion videos , `` Yesterday `` , `` Let it be `` and so on . To be honest , it was not grat of a festival , but if it had n't been rainy , I would have enjoyed very much . I uplaoded a new picture as my avatar . her classe 's new teacher came . She said that she was planning to visit eight studednts . She staied at my home for only fifteen minutes . The resolt was that there were two wins and two losses , so it was draw . Their performance , music , jokes and color atmosphere were wonderful ! : ) ' You 'll get fat ! ' , they said and laught at me . If I had to pickjust one , I would choose honor the most important characteristicI want in a friend . Do you agree or diagree with the following statement ? As a result , I can learn English leanguage from native speakers with the use of a new internet service technology . Yestaday an accident happend in my train . In summer time , sex crimes on trains happend sometimes . But if his company knew about it , He would be fred . I am going to an outlet shop in Gotenba , Sizuoka prefucture , today . I lived there untill graduating from high school , after I left Hokkaido afterward . I felt very thanksful to my professor . So , I stadied Chanese . Chanese is very difficult . going fisshing , taking a bath at the onsen , and swimming at the sea . I will callenge this new job ! ! Today I ate `` Abekawa mochi `` with my American friend at a garden of Shinto Shirline . We are saved by your warm hert . Plesase call me okinawa . I have graduated from Shenyang Airspace University in july , I mayored in Japanese . Can someone to search this book 's Engish version ? So my stady has been very very poor . spicy foods & cat 's toungue `` I watched TV and learned that it 's because the tangue 's movement People who have cat 's toungue can not avoid the part of the tangue which can sense the heat the best when we eat something hot . They end up touch something hot by that part of the tangue which senses the heat the best . The problem is the way the tangue moves . `` My favarite recipe I have some favarite recipes . Of them , my most favarite recipe is acooked dish with beef and vegitable . The trick of tasty food is entering spices which are Soy - sorce , Japanese - Sake and a Sapanese spice called `` Mirin `` . I have been going to driving shool since Feburary . It is Valentain 's Day ! bacause it 's my mother in laws birthday . I hope my whises are granted . I like to watch TV . I like watching `` Spongebob squarpants `` but I do n't like Spongebob , I like Patrick . He 's so cute . Rainny day . I 'm very happy becuase I wanted to learn English in more proper way . It was ranning heavily today . many things about my life on ranny days . That factori makes toilet paper from using recycled paper . I think taht much water is needed to make the paper and recycling is very important for a susutainable society . Of Ofcouse they asked us questions like what is life , what is die and what is a family . Becaue the temperature of 37 . 2 degree C in Taipei , was too hot to me . In Nepal , many poeple consider it bad luck . I learn lingustics at a university . The languages I learn are English , Chinse and Korean . It 's hard to pronunce . . . There are many girls in my course , but please do n't get jelous of me . About Archtecture I answered : There are some issus remain to be solved . It was with hoipped [ ? ] cream and chocolate sauce . ( I watched `` My Cusin Vinny `` last night . Barger King but a few years ago there was no store in Japane , I understnd about a harf of this radio program , It 's very good program for biginner in English . This first restaurant is a traditional Korean restaurant that serves a style of Royal court food ( that is ) inherited from 500 years a ago , with the main ingredients being fresh seadfood and seasonal food . Since 1988 , this Chinese restaurant has run for 20 years because of it 's clean sanitation , fresh igredient , and , by extension , delicious dishes . Moa is the best restaurant for your health and extending your life with our refined and various Jeonbok disheds that are good for your body . I went to Okinawa on my spling holiday with my friends . I went to duty - free - shop , did scube diving , ate `` So - ki soba `` etc . . . . . We also went to `` Nago pinaple park `` . There are many pinaple foods . I especially liked pinaple pie . During the trip , it was rainy or crowdy . yet I can not speeak English very well . antway . . . Dear Japanese , you guys do n't have the right to critisize the riots in London . I can imagine that some of them think , `` See ? Japan is a safe country . Fierce riots only happen in foreign coutries I am proud of Japan . `` Therefore , Japanese people do n't have the right to critisize the riots in London . His name is Igor Vladimirovich , and he professionaly plays volleyball . I think that the pronuncation is pretty and fun . Today , I began studing hard because I want to get a better score before I take a TOEIC test . If you have some advice for studing English , please teach me how to study ! ! I did n't know there was such a famous festival untlil which means it was really fun hunging around ! ! in winter of 2009 , The movie ' AVATER ' was released in japan . Acturlly I did n't try my best to find a new job . Beacuse I spend my time thinking what my favrite job is . thease days I am thinking of becoming an actress to earn some money and also to kill time . I will write about my business ( I am salesman ) and my hobbies ( reading Japanese manga , playng poker - Texas Hold 'em - , playing video games , and cooking ) on this diary . We had pretty hot weather last week but the tempreature dropped down about 10 degrees since last Sunday and now rain start amd stop and start and stop . because I work at a very famouse hotel . The other students said `` Teacher , he does n't want to learn , our main teacher said that you can let him out `` , but I said `` If I do that , he will be poor in his studies becase he will miss the course and ca n't catch up with us ! `` Today ( 15 / 12 / 2009 ) at Macquarie in Sydney , I 'm studying in the computer room , it 's so goog that I 'm not late . So last night Im went to bed before midnight but I do n't like waking up early in the morning . I hope that he is happy with his music and also with his doughter and wife . Me llamo Tammy , escantado . Such a thing has happend a few times this summer . I want to become a fluentry English speaker . Study animetion abroad . He is studying Japanese animetion at school . I do n't know what kind of animetion he was studying ? But we had a nice conversation togher . He looked fuuny and friendly . Nace to meet you ! Nace to meet you , Lang - 8 members ! I 'm waiting for your coment ! Today is a holyday called GW _ ( Golden Week ) in Japan . Therefore I 've been searching a package trour to Hawaii . Companies care for their emploees ' health . Today is my students ' entranse exam . a large part of students and their parants choose the public ones . When we had tried to go there last autum , an autum outing ( holiday ) season . in the moutain . l 'm amazing beacause I knew this site . I put my daughter in a summer workshop that 's called `` The Stage Coash `` which is a school teaching children how to act , sing , and dance . My husband went to the work this morning , but he came back to Wimbledon from fis office in the city to watch her first performance . Anyways , the thema of the show was `` The Wizard of Oz `` and our daughter was one of the villagers in the Munchikin Land . Of cource everyone wants to be Dorothy or a princess ! The 22GH incorporates - HDMI , DVI and DSub interfaces . The reason why I have selected this monitor is that it will produce a quality picture due to it 's 97 % ColorSphere . Driving in American is easy , althought the city roads are very wide . As there are severl blind points ( or spots ) , you ca n't see in your side mirror and rear - view mirror . I am so gald to find a place to learn more and improve . I think it 's very deliciace ! ! History , Maskd Rider I am unskilled at drawing , but I like to drow . I have a questin . The frist picture is the river where I went to the temple to pray the monk to ask a blessing . . we saw a lof of people there and I used the Chinish language a bit with the netive people . I would like to show you some video but youtub do n't want me to make video ^ ^ . . . thank you for looking my picture and coming to my page . The end of Nov is the time for gloomy , windy and depressing weather here in Russia ( I guess there are lucky people enjoying something completely different ) I would like to grasp this opppotunity and share some photos I have taken in Italy . couple of hours getting there : first by car , then by feery . The avarage temp is around + 20C , the sea ( ocean ) is still available for swimming , the food is excelent and people are very friendly . 1289 one thousand two hundred eigty - nine 45989 fourty - five thousand nine hundred eighty - nine 667890 six hundred sixty - seven thousand eight hundred ninty 5098433 five million ninty - eight thousand four hundred thirty - three I thought `` I won `` was correct , because it was for a past ivent , Answers on his cellphine during the exams . I 'm very confising . ( This is confusing ) Beause I felt he was difficult for any one to get close to . He half - opend his eyes and his eyelids were very sharp ! I thougaht that Sendai had a l poor economy this time . There is a nuclear power staition . So I have to do sarch about malta . I 'd like to speak English fluentry . I 'd also like to know how to study Japanease . There are lots of English conversation school in Japan , but few Japanease conversation school in America or other country right ? Whitch is better Iphone or android ( google ) phone . Recentry he comes home very late because of his job . She said `` no `` to marriying with her boyfreind recently because of something that changed her mind . But in the afthernoon , weather became so hot ! She has four big titles : a jude wrestler , the wife of a famous baseball player , a politician and a mother of two children . One of my classmates has been a beautiful policewomon ^ ^ ; wowo , I feel a little pitiful LOL . What a hard work in Tokyu it was , with my hands ! ! Rcentlly , I have started a part time job . I went to the Pride parede . Especially when I wacth the same TV show as before , She said to me `` I put too much Cranberry souce in it . As a Documentation enginner and English translator , I 'm now doing Photoshop - related things now . However ; I really feel sad that I can not even be brave enought to start up a conversation with a native English speaker . I think I 'm ike a worker bee . I also dislike my life because it 's boaring for me . ( Especialy my best friend in London who is busy with her job , study and boyfriend ! ) The picture you see here is one serving for the King of the Chosun dynasity . But imagine all the ingridient that were prepared like that . But you can taste similiar food for a much more reasonable price , with the preparation process reduced . I 'm happpy . I am more intersted in taking a belly dancind class than the other exercise classes . I am going to visit you as soon as posible ( You 're my best penfriend ; D She defeated her opponents maty times . I 'm gon na beat the conpetition . Because I had to prepare for the Intenational Japanese test 1st grade , My Techer told us , `` You guys should memorize the presentation scripts . `` Moreover a classmate always complants about my pronounciation . Yesterday I met my high schoo friend who just came back from Japan ! ! she also brought her freind who is a Japanese called `` Mimi `` . . Korea soccer team beat Japn yesterday . So I anticipte more success this world cup . Each design desicion made to create this site appears strange to me . This is the first time I ues this style tool just to learn time Before I used to think that fall is the wors season , becouse it is always rainy , there is dirt under the feet , and sky sudenly turns into bright and blue . I have registered for this website for a pierod and I added some new friends here . This is a language exchange website , right ? At about half past eight , we had enjoyed so many seesights such as pure water streams , grean trees , colorful flowers , etc . And we had also taken many interesting photos together . For example , a cellphone , degital camera , and car . . . ! ! ! It 's becoming colder these days , I runed everynight last month , hmm , I forgot why I quit , maybe cause of laziness , or I do n't know . ^ _ ^ . Back to the work topic , there are some difficults . First , the junior of my tean does n't work hardly , and is less patient . They 've just graduated and have a lack of work experience . The point that I want to say is also a problem of China , is that the Chinese young people lack a sence of responsibility , are selfish , lazy and empty - headed , I think all the derogatory sense words can be used on them . My English is so poor that I choose to major in mechanical system disign in Hongik university . I have to speak English to sign up for the calss that I want . It 's a perfect fite that focuses more on me . My friend and I finished militery service last May . K ! ! ( republic of korea ) `` . We enjoyed the performence . Although KORN is eaker now than in thier golden day , I was moved by them . I hope I will enjoy snowboading this season ! I do n't have gray hair , but some day I want to color them into brown , because I have never colored my hair . I wachted `` The World Athletics Chimpionships in Berlin `` on TV last night . Someome may think that I 'm stupid . Every athleter was very beautiful no matter where they were from . I just want to know how to discribe different races . Have you ever seen an Olmpic Gold swimming medalists who was fro trivial techniques and have paitence . How about figuer skaters ? Especially women . Asian women rank the toppest positions now . It 's still rare to see African figuer skaters now . Some sports require trainning It means that where your country 's lacate is connected to popular sports and the number of players . Black people can play better when much musles figure skating and sincronazed swimming . ( I said the same thing too ) Did you really wellcome Afro - American female champioms ? Finally I could conclued with a nice comment . ! ! I 'm regrectting to write such a long story ! Now I 'm trying to make warmer my relationship whith grammar . ) ) And we will go to eat pork cutlet `` tonkatu . `` This weekend typhooon approach . It 's too difficukt for me , and I have little time to study ! The final SAT is on December ! vocabrary is difficukt , grammer is difficult , and I still do n't know much about American culture . What shoul I do ? It scares me that I ca n't see my future ! I am new here . Please do n't ignor me because it will make me sad . ( This may sound better ) It comes as no Unsurprisedly that I still have lots of homework and exams this week . I have three lectures at my iniversite . I am not affraid of earthquake , but I got stranded for about an hour Touhoku traffic got wrose and there was lack of gasoline and broken highway and train . Today , I went to a industral festival . Optical fiber TV I 'm studying English voca . I think language begins with voca . Because the perspiratson ran down my face and back . Finally , the dean of the department of dentestry decided to resign . When the French teacher asked us some questions in French , we had a tough time trying to answer because we had forgetten so many things . That is why I have just sent him an e - mail explaining the current situacion at the university . ELLEGRDEN is known as a rock ( punk ) band , and most of theri songs are up - tempo . When I was first selecting a jazz piece , I could n't pass this piece : `` Walts for Debby `` by . Because as always , I have troble with my bf . Actually I 'm kind of tired of studying for a TOEFL . . . my motivation is getting lower I guess . . oh my god . . . that 's not good you kno . . . I really want to know what people think from thier behavior or attitude . It has been abour a month sinse I joined my current department . Korean Kimuchi fried rice . I received Korean Kimuchi from a Korean colleague as a souvenir . Korean Kimuchi has a rich flavor . I would like to take free tiral lesson of another course this Friday . Life : I want to asighn as volunteer for COP10 ! Currentry , I 'm studying English hard . I ca n't speak and write English very well , but I would like to communicate with peaple from other countries . I am happy to meet my roommates , because there was no one excert me yesterday . Local people , who live in the provonce of B . came here with thiir families . I feel strongly about the cooperation of thir families and the passion of their parents for them . So he comne home on Fridays and returns to Gage on Saturdays . By the way Most Japanese ppl have learned English for more than six years . IWe think so too . But Unfortunately , Japanese people do n't have many opprtunity to use English everyday . If people start noticing that learning English is for communication with all over the world , population of ppl who can use English will increace , I think . In particular , in Japan , we are well on tha way to an aging society more and more . The Japan national soccer team won the game agaisnt Australia and have now advanced to hopefully become the Asia Cup champions . The most impressive part of this game was that Zacch , who was the mananger in this team , had a good command of things as well as changing players . The Japan team could use a good leader ! I 'm loooking forward to seeing the next game ! Today is the Japanese holliday `` Children 's day `` . When I worked at the consulting firm , I respected my co - workers , especialy my boss . There are so many punkish guys , foreighners also . Espeially , the band that I was there to see , LOST PROPHETS ! He useally sleeps . I enrolled in an online English school a coupple days ago . Can you believe that the price of one leson fee is 1 $ to 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expenssive . ere is one of my favorate proverbs that I learned from my English teacher . What 's your favorate idiom or proverb ? Please teacch me some , if you know any . Once I studied English grammer books or something else , but I realized that I like reading books more than grammer books . The schedule aprication is really great , and I do n't need to carry big and heavy schedule notebooks . If you have some aprication to recommend , please tell me ! ! Acordingly , my company put up some mottos . A colleague wore a green skirt , and another wore a green ring and neckless . Anyway , I enjoy chosing out clothes . Have you ever sucseeded in losing weight ? ? We ate strawberries and beans that she grew for denner tonight . My englishi skill was build up through Lang - 8 . An Amazing Wesite for Langauge Learners Right now I 've come to be albe to understand recorded voice in English , but it is still hard for me to understand what they are singing in English . My hobby is playing the flute in wind orchstra . Why do I feel very fashinable ? ? I guess I feel like that because of the well organised blaimwashing from Japanese shopping malls . I as a Japanese put more werth in New Year 's Day I guess . l know even if l ca n't speak English , l can tranvel and see the beautiful landscape ; but l want to coummnicate with native speakers and l want to make friends . l have traveled some of europ and aisia . When l came back to traveling , l felt that l owe thanks to my familiy , frends , my job , and much more . Recently l felt that l shuld spend my life challenging things . Sometimes , l thought that l was too old to challenge new things , but l chang my mind . Even though when l challenge anything , l spend more time than any aother people . hi guys . . I 'm laura from italy . . . I need some help for emprove my english and my japanese too . . . I 'm new at this website . . so if some kind person wants to help me . . I will be very glad . . I would like to help you with italian . . : ) thanks and bye : ) The suite brings welcome upgrades [ ? ] and is composed of three traditional aplicatives ( Word , Excel and PowerPoint ) , plus Outlook , which replaces the e - mail client Entourage that had been integrated into the suite since 2001 . I belong to an English club in my universtiy , and I have an activity every weekend in my club . I will go there to guide travelar from abroad . I will talk to them in Englsih . Well , seeing the `` dolls `` in this drama , I remembered the people who were incubated and their enegy ripped off by computers from the movie , The Matrix . The badies are merely containers , and the data in the brain is what is human . Beacuse I did n't have any special feelings about X - mas . I will never saty alone anymore . First of all , we spend too much time and are overly enthusiastic about grammer . . only grammer . Also english teachers use difficult words to explane the english grammer . Many korean students are get good grades on grammer tests , but they ca n't actually speak to people from other countries . My farourite sports are swimming and running . Also , I like English very much . My home is colse to a river , so when I was 8 years old , I learnt to swim . I believe that failure is the mother of success . You tolking to me please . It is important for me to pass my English test so , please enoeryone help me with my English . She said that it was the beginning of the year , so she thought she could get througt the whole year well if she did it . When she was bengee jumping , she felt like committing suicide . As I listened to her , I suddenly wonderd about the feeling of commiting suicide . No one can commit suicied twice . We got a shopping cart before we entered the store and I was pusshing it . There were some people who were also pusshing their carts , but the person in front of me stopped suddenly when she heard the voice . But afte a while , one of the clerks was very kind to take me to the product I was looking for , and a customer who had a big package of potato chips answered me with a big smile when I asked him where the potato chips were . I went there and ate pork vegetable miso Soupe . Finaly , if you want to learn Chinese , I think I can help you . I learned a new word at today 's lessson in starbucs . Tha word is scapegoat . I realsed that I ate dinner for 2 days . Using this dictionary will be a lot of fun , as if I am travering in a foreign country . When we left the market , we bought some cherries and two cakes , beacuse cherries were really delicious and chaper , cake was for my best friend , beacuse they left Christchurch today . After farewell , we went to the Sumner , acturlly this is my seacond time I have been there , but last time my homestay father took me around Christchurch and past Sumner , so I do n't remenber everything . I want to learn Chinese and English in this universiy and speak them fluently . I 'll tell you one of the most scarist story I 've ever heard . I do n't have confidence whether I can tell you guys scarrily , but I 'll try . That man was wearing coat over his shoulders , and seemed hiding his face from around , he walked while leaning on a wall , he came toward to elevator while holiding his hands over his stomack And Chiang Mai is a prime example of thsis strategic model . I hope that is the case becuase I want to hang the picture in my room with me in it . I 'm gon na write a short dialy or what ever I happen to be thinking about twice or more a week in order to be diligent : p ( as long as possible ) Let 's study languages togrther ! ! ! More and more I am interacting with many foreigh people , so I joined Lang - 8 . I have Facebook , my account is takaxile , so plese request me on the web . My first Periond is years lesson . Topic was about past tense , and student chenged ' tanoshii ' to ' tanoshikatta ' or something . Today all the students do n't attend class , so we palyed a kanji game . At first students devided into two teams , and put some Hiragana cards on the floor at regular intervals . My fifth Periond was year11 . They were writing essey about the difference between Australian table manner and Japanese ones . My Last periond was year 9 . Super collabolation I happend to find this song on Youtube . This collabolation is quite good . Recently many singers relase a song feauturing rapper singers . Well , the story is about aliens that ( who ) come to conquer our planet ( the earth ! ) , but their plans always fail . They are so funny . I always laught when I watch the episodes on the computer . There are five main characters in the series . Keroro is very childish and selfish and always tries to make people laugh , but he is a very bad comedian . Then we have Giroro ; he 's always thinking about the invasion because he 's a military man . The third character is Tamama - he 's a toadpole * , so his sex is not defined . He is bipolar and he likes sweets . The fourth member of the platoon is Kururu . He is a mad scientist , and he likes bothering people . He 's a pervert . Finally we have Dororo , an econinja . He came to conquer the planet , but when he saw the beauty of it , he decided to save it . He is always forgotten by the platoon . Poor Dororo ahahah ! ( haha ) I should have gone back to home at midnight , but the airplanet was delayed . Simirarly , natural expressions are natural only because the most native speakers feel so . Learning languages , either foreign or mother , is to acquire not only words and grammers but also different manners to perceve and represent the world . How about your contry ? ? I dry the washing in the sun , then I air out the hutons . Therefore , I dry the washing and huton everyday . It is has been more expensive recently because it is imported merchandise which is affected by an excange rate . It is a hard situation for me to buy an ipotT _ T And I wnat to but a cell phone . But it is too expescive to buy . and I also watchd Eastwick s01 ep01 ~ 04 , it 's a funny and weird TV show And whenever having ( instan noodle soup / it ) , I crack an egg into it . To be honest , I always check the spelling out with a translater : D so it 'll be cool and confortable while I sleep . This was callendars , stamps , coins , but none of this became a seriosly hobby . Now I have only a few callendars and a few stamps from all of that . Nowadays I collect other things , like pens with beautifull pictures . Of courcse I do n't consider this very seriosly either , but if I see a nice pen , I will buy it . My friend led me to this hobby , because she usually gave me beautifull pens . I chose tha class with the smallest number of people to understand English better . And I took the class Amarican literature and so on . I felt something was missing at today 's luch time . There are novels which include mistery , fantasy , historical , adolecence , heartwarming and love , business which are made of philosophy ( ? ) , ways of thinking , finance , how to express yourself , and so on . But the Gelly beans are my favorite Jelly ! ! San frasisco ! I went to San Fransisco from Aug 19th to the 22nd with my girlfriend . I already got home , and I still ca n't believe San Fransisco is in California . As you know , San Fransisco is famous as crabs , shrimps and lobsters . I strongly recommend you go there , if you go to San Fransisco . These reasons are extermly gerenal . What mekes you study Japanese ? It tasted really good , adding condiment paste made from yuzu zest and chile peppers . The guitar is a beatifull instrument , but much more easier than the piano or violin . I ` m like leaning Tourism English because the city I ` m living in has many foreigen tourists , I want to talk with them but my English is very bab . Maybe I can say this in a more buatiful way ? As a volunteer , I went to Hukushima ( near the troubled electric nuclear plant ) I am currently eating Sumtum and writing my journal enty . Sumtum is delicious . So I can corrent Japanese grammer . When offered large plates of food most people would eat all of them regareless of whether they are hungry or not . I llike Harry Potter very much . I also admire Luna Lugwood . well , I can only tell u that I 'm in bed and my rigft hand is very busy . . . . . I did n't like animesToT My favurite game is `` Diablo II : Lord of Dectruction `` ! So we celebrited it yesterday . Recently , I went to the eye doctors and had undergone some chicked up . We are afraid of and struggling against the tremendous earthquake and Tunami . So I wanted the charenge of a different job that time . She offred me the job in a foreign - affiliated company in Akasaka . I 've just renewaled it the day before the phone call . From what they said , it sounded like they were enjoying their unversities . I do n't usually use a casette player . Last mounth , I spent three weeks in the capital of the UK - London . But now only the names of the streets indicate this . They are named after famouse lakes , rivers , harbours , etc . I lived on the street wich was named `` Lagado Mews `` . This month , has run & nbsp ; 10 kirometers . yesterdya I wrote an article about searching for a job luckly , lang - 8 is good to learn English because some people can teach me how to use correct gramma and I can make a friend . I study animation at univercity . But I like desgin now . For example , sandwish , spaghetti , Chinese food , and so on . But I ca n't speak Itarian or English . . . . Quite a few people believe taht the lucky numbers can bring good luck for them . But it does n't mean that lucky numbers can really bring goog luck . Second , the lucky numbers are just a viual for hope . My teacher , who teaches the students technick for it , said that bussiness vocabraly is most important . I think the weather here is really cold . It 's about + 18C , but I heard that the winter in Canada is abute - 30C . Here is the firework show of the new year in Taipei 101 . A lot of people say that it is not as amazing as they expect , and think it is the worest firework show they have ever seen . I was vey tied , but I thought it was worthwhile . My final examination is comoing ! Now I 'm in Beijin , China for a trip . Today I wanna talk about my trip in Beijin . That 's why I 'm in Beijin now . Actually , it 's been 2 days since I arrived at Beijin . I have n't eaten any Chinese food , like Beijin Duck , I 've only eaten some rice porridge and some pickle . . . It 's a phantasy story . In this hopital , nurses have to complete some reports to make it to the next level . This year is my second year here , I have to translate an English paper into Chinese , making it a short summary for all my coworrkers ( about 16 people . ) In the end , the nurse maneger of our ward will decide if I am qualified to go to the N1 level . I was taken to one of Canada day events at a park by my hosfamily the day before yesterday . After thet they can get a toy depending on the number of stamps . dismiss about fifteen thousand emplyees . Sould I work harder ? When will the deprssion end ? The Chinese tradiational holiday , Spring Festival , is coming soon . It is my favorate holiday . I think it is also most Chinese people 's favorate holiday . So I juse wonder if Americans or other English - speaking natives have a good knowleage of English grammar . I read a book or listen to mucic and so on . It is first time my daughter is to join a paino recital . When golden week starts on a Saturday , we can receive 5 consequtive holidays . I 'm jelous because I have to work during this great consecutive holiday . I 'm so tired , becaus today 's tests were very difficult for me . I 'm so happy because there are some people who correct my Emglish . I 'm going to go to the restaurant to eat dinnar with my family . Off cource , I can move today . And a friend said `` you 're such a boring gril . `` corean women have to behave carefully as long as possible . Hello ladies and gentalmen , and all of my friends around the world Where do you tinhk God is ? Of cours it 's never at ' temples ' , ' shrains ' , chaches and moskes . I became refreshed and wlilling to do things actively after singing . I read books and newspares , or study English . we could sort out the probrem of the Iranian election . The probrem are very diffcult because we ca n't understand others and ca n't think about other opnions . The idea of peaple all over the world using my program ! It exites me . In our company , there are wide - open opportunities for profesional growth . We are a company that enjoys an enviable record for stability in the dynamic atmosphere of aerospace technology . hollo world ! ! Now that I 've seen it again , I still think that Jeffrey was one of the most intresting people who ever lived in this world . S - ok just to make it clear I 'm not a fan of him or something ; the fact I 'm finding him interesting ( and this is not from now , but from years ago when I herad about him for the first time ) does n't mean I think that what he did was anywhere near okay or that he is something he is not . So hope you find it at least as intresting as I do . Kitano is famaous for Ijinkan which is where many foreign people used to own residences during the Meiji era . I can pass it ^ ^ later I went to pub where is so fashinable and a little bit expensive - - I had ( pasta / a dish of pasta ) , cheese , sarada , noodles ^ ^ then we went to an internet cafe where you can play table tennis , darts , and karaoke . We just sang 2 hours , and played table tennis . It was a warm day , so we felt comforatable having lunch outside . They are women who work in the comons , in the clerk , in the university convenience store and in the library . The best food I liked was `` Khao man gai `` - steamed rice with chiken and raw cucumber . I thought of the opposite views that once you had done the preparation well , you need not to worry any moe . The IELTS class is more serious than the general English class so during the class eveyone focuses on studying . Especialy my Spanish frined , he is so funny ! ! I thought it would n't happen to me but my spanish frined . . . ! I was supprised to hear that de facto marriages are common in Frence . There are variouse types of cakes there . In the latest journal , I said my father 's private inurance expired . He stil can have an insurance from the government , which will cover the cost to some extent . Roy became nervous and tought that it was too late . He tought that Harold was responsible for this . Unfortunatelly , the weather was bad . . . Yesterday I went to play tennis , but I could n't play because it started rain , then my friend Marsha and I went to a caffe and waited for the rain to stop . I find you and I spend time navigating between the mistery and your taste . I can harldy find out the meaning from each word of it . `` Stop hidding ! `` , I told myself . However , starting now , I 've told myself that I must stop hidding . Just now , I realized that I was hidding in my imagination ( ? ) But I must stop hidding now ! It 's because I entried an online English conversation class named `` rarejob `` After I regaind my self - confidence , I took part in a game against another unversity team . As for me , I 'm on Summer holyday starting today ( for 4days ) . I intend to attendent here every day . Thans ! ! When I j just started going to a university , I found my life comfortable . I saw life with simple eyes . I never thought everyone would be so kind to me and ready to help me anywhen I had trouble , but this was not right . Only when you live far away your family , will you truly understand the feeling of beeing alone . I know I will never be alone because my family will always love and support me . They helped me get through my failures so that I would be sucesses in the future . Now I always make an effort to live well . I hope my folks will always be happy and I want them to know that I love them very much . However , it 's difficult to speack in English when I stay in Korea . I hope to improve my English skills thanks to this site and your help , ( which is very pracious to me ) . I study things taht are connected to English in my university . I 'll go to Osaka by Shinkansen bullut train to attend a meeting with other companies . I lived in Osaka until 2007 for nealy 6 years , so Osaka is like a second hometown . I hav n't been to this site for a long time . So I got an agreement with my friend that we will study hard without thinging about anything else . A person who I met on Lang8 contacted me on Skipe when I had just woken up . But , my friend saied to me `` hourly wages of 800 yen is very low ! `` I was emotionaly , and I quit my part - time employment . At frst , I was worried . Besides , he seems to change the bike into a good desine as well . I wonder if he could transform it complately While the Jews were out of Israel , Arabs called Palestina moved there . The Palestina , of course , opposed this and attacked the new residents , and thus the strife began . I will study hard so that I can go to the university that I wnat to go . In school ther is an English native teacher whoes name is Sony . But resently I learned that 2010 will be the year of the Metal Tiger . Funny that Russian sites say it will be the year of the yellow metal Tiger and English sites write it will be the white metall Tiger . Before the season started , I was looking forwaed to it . Actually , I 'm bad at using electronic things like that , but I can hadle it so far ^ ^ There is no instruction bookwith it . Though it was a hard time , one thing I ca n't forget is that children were so cute and dorable . The minimum temperature here this winter was negative 33 degrees Celcius . Today , I bought The Littele Prince . So scarely You must know it 's lenth is 5000 kilometres . Most of it is unexploied . Young Pioneer means morals for the children . We were prond of it when we were young . We had to fight the tired body , fight with the strong sun , fight with the lack of water , fight with the dangerours of the moutain . Diese Woche habe ich viel ( Unterricht in Deutsch . ) besser : Deutschunterricht Whether we like it or not , inequality is a funddamental concept in a free economy . To make the point clear , we thoght about its opposite . In perfectly equal world , what would happend ? We can not posess anything , be free to choose our clothes , or even what to eat . The only thing we can do is to adapt ourselves to it to live a good quakity of life . However , every gils likes fancy smell such as CHANEL NO . 5 . I perfer flowerscent perfume such as sunflower or rose . I wound my bath towl arround my waist , when I was changing my clothes to go to the pool . Does this actress think she can laugh all the way to the bank by rinding on a millionaire 's cocktail ( coattail ) ? I go to the univercity in Nagoya . I also study Chinese in my univercity I whached `` Lie to me `` on DVD . They will bloom at 8th , th weather news said . I think tha it is difficult to grant a dream . In my oppion , nothing is not perfect . Because we can get delicious food such as matsutake ( a kind of expensive mashroom ) , kaki ( a kind of fruit ) , kuri ( chestnut ) , nashi ( Japanese pear ) , sanma ( pike fish ) and so on , ( Is it starange for foreingers ? ) It 's my favorit : - D This year , I will dress neartly X - ( I need to take the TOEFl test in February to apply for graduate school , and I 'm looking for someone who can chenk my writing . `` I need to read thouse academic readings so fast ! ! `` As a result , even though I sped up , there were about three questions left . The Secound part was listening , which was also tough because some lectures were not subjects that I was familiar with , such as history . Althought a guide might ask us how the museum was and we might be forced to say , that it was wonderful even we actually did n't understand its value . There is even a small museum in my home town . They are exhibiting some bowls and paints that look like grafitti . ( two sentences ) becouse I do n't have money and there is no food shop near the / my office . Bcause of the car which was ahead of my car was moving very slowly , I passed it at high speed . I was cought and lost 3 point ( if you do n't have penalties , you can keep 3 full points ) . After I was cought by the police , I made my way back to the ( driving ) school , but I was not happy . But , the relationships beetween the main characters are so complicated . Piter 's family is brilliantly hilarious , especially Stewie . At firest , I went to Kumamoto and I ate Kumamoto ramen . It was so dericious that I ordered seconds . The different colored tree leaves are very beautiful at the back of the pond in autumu . So I 'm learning English . Its pronunciation is very difficult , but I undertood that there are days when I will want to learn more and more . I called my colleague in to show some sentense . I 'm leaning Italian and inglish . I came in italia to study arts , but I need inglish . Becouse in school , everyone speak in inglish . I ca n't speak inglish at all . Can you imagine who performe without an actual instrument ? Air Guitarists had to perform a 60 - second song of their own chocie and pretend to play rock or heavy metal . Is the day that I can understand English news programs without subtitles truly comming ? This is an artical I heard from my friend Tyler ~ haha hope he does n't mind , I just tried to listen to it very carefully and transcribe it . Music is my favorate thing . I 'm glad to haer his voice . He has two childeren and bought a new house . Then , he said , `` Mandy , in the furture , you should study abroad and know the world . `` I saw some figures like Madonna , Sharon Stone , and Blad pitt and so on . Today , _ some of my classmates said that they think every counry should close every nuclear power station , _ but I do not think so . Although I am in New Zaeland where there are no nuclear power stations , I think nucler power stasion help people a lot , for example , nucler power stations provide people with electricity , and I think that is good . On the other hand , _ when nuclear power stasion fall down , that will make a big problem for the world . Independence Day in Mexico was yesterday , September 16th , and as usual we celebrated this date with the independence shout , eating `` pozole `` , a Mexican food , prepared with corn and chicken , drinking tequila and listening to `` mariachis `` . At least , this is the most tradicional way to celebrate this day . Even though this region is one of the oldest places because it is the origen of civilization ( when Mesoamerica joined with Mesopotamia ) , Mexico is a relatively new country , with just two centuries since having been founded as a nation . Second - hand smoking is really disgustiong for non smokers . But what are other habits or lifistyles that are responsible for health costs ? I had 4 days off last week and I went to Vancouver with one of my frinds . We stayed in the Youth Hostel and visted UBC ( University of British Columbia ) , Nitobe Memorial Japanese Garden , Tower Beach , Kitsilano , Gastown and Lookout . I did n't go to Stanley Park and visit my acqaintance who I met 20 years ago in Vancouver . It has a dignified elegance supported by its pefect shape and white walls . Those Proffesional players had an impact on me ! The logo is of a very strange type and paticular color compared to usual . It has various contents named podcast , such as news , comedies and documentories . I 've studied English ever since I was a junir high school student , but I ca n't write , speak , or listen to English well . In the balcony , people can not ony sit on the floor but can also lie down . I heard that listening to the clasical music while lying down is too good for words . It 's ranning today . I am not very busy at work today , so I have a short bit of time to go to Starbucks for a break , and I found this branch has many foreigners , especially many foreigners who need one - to - one Chinese converstion to learn Chinese converstion . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closetrooms . I think most of the people in Japan will say `` I 'm soory `` when you are asked to do something . Japanese peole and Chinese people do n't have the hugging manner . She is my family and inportant to me . But , everyboby ! Do you remenber one of my post / journal ? It 's okey . I 've been learning Eanglish for 10 years in school , but my language skills are still at a low level . I want to practice Eanglish to use it well . The hardest fot me is the grammar , My wifw cooked lunch . I know that the vocabraly and the letters are obviasly different ! But I want to think about not the visible surface of the langage , but the concepts or something like that . She sent an e - mail to me on Manday morning when she arrived at her flat to get her notebook PC before going to university . I will try to chang my attitude ! ( It 's the first time I went to that restrant ) They are all coming tommorow . I am sure he will be nurvous there for a while . to fashion , centain styles look better on some girls than they do on oters . I like nearly all color clothing except red , but I do n't konw why . I perfer the fashy things . So I like many kinds of jewerly . My faviorite pieces of jewerly are earrings . so I want to go abrord . Someone tell me about a good palce in a foreign country I could n't sleep well last night becaouse I have a cough and He was named a menber as a goal - keeper . He has many experoence . We alighted from the train ( monorail ? ) at the last stop and walked from beach side to fisrt station while talking about a lot of things . Unfortunatery , I was laid off at the end of 2008 . The staff began to explain it to me , and then somehow I turned my head towrd my left side . Today , I ate takoyaki ( octopus dumling ) . My son plays in the Tamagawa rever , small forest and the park . Well I will try to write with capital latters in the beggining of a sentences , because I always forget about them , and the teachers always tell me they do n't understand why I do that . . . Today I cleaned up a little my desk , but it 's all messy again , becouse I started to make a drawing for my grandmother before she returns to her countrie . . . We set up our tent on the coast of a small bay , near a greate cliff named Scriper . It was a very out - of - way plase . ( is it correct ? It is a plase that is very difficult to reach ) . Majestic Baikal was amazing . The water surface was like a mirror , and astunding sielence was breacked by gulls ' cry , trees ' rustling and rote . But we were realy mistaken ! Dropping a tourist group including ten people , and they camped at a distanse of fifthy meters from our tent . They did not look like inadequate , noisy or problem , but I suspected that somethong was wrong when saw among them things several boxes with beer and vodka . We broke our camp , foulded up the tent , packed all things into rucksacks and in spite of the sunset , went away to searh new plases . It was quite dificult and dungerous . PS : You can see foto from summit of Scriper . It was very nice , sweety , juicy and fruity : ) Today , I got last month 's mobile phone buill . ForTo all surfers , surfing is ddengearous . dangerous I decide to pay more atenntion attention to my bord . Whether we can ring up sales or not depends on sales in the Tokyo branch office orgnaized by only 20 people . Now we 're forcusing on direct mail marketing , though that might be junk mail for many people . One was about Budden the other was abour the brain . I need to go out ater to buy a shirt for a wedding party tomorrow . Here in Hawaii , I go to a laungage school on weekdays and I go there by bus . It nomally takes 35 minutes to get there but it sometimes takes 45 minutes . . . I want to improve my English in half a year , but this seems like a difficulf task . So I thoght that this site could help my English , right ? I could answere the questions but listening examination was bad . . . I could n't answere . . I wonder if you could do me a favor . But her speach was so boring that I fell asleep . It said : `` congraturation you have passed the exam . I do n't remember about the details of our conversasion , but I think he said so . I would often wonder what the diffence between the two them is since then . Secondly , I will go to library to review my lessons and do some ILETS tests and I want to go to foundation in April . and my budget is limited , I wil have to also limit my destinations . The crient is very kind and and passionate . I 'd like to return a the fabor to him someday . It is dizzylingly hot . I 'm now studying English and Japanes . Does anyone want to be my freinds ? I like English , writing , speking ! ! If the wind is too strong , I ca n't go suring . I had a very wanderful day . As I would like to be better at English , I started wrinting a diary in English . Now I specialize in comunication studies , and study English and Chinese . It seemed my heart is still living in Shanghai , I must have lost something , something I dare not to face , or I just ca n't face myself , my weekness . I will tell evryone about a creature that makes Japanese people feel it 's summer . Its creature is called cicade . Japanese people feel summer when hearing cicade 's screaming . By the way , Some carcasses of cicade are scattered around the entryway of my apatment house . I thought this cicade was already dead , so I pokesd it with tip of my foot . I want to ask everone . It is very itresting to learn English , and I shink that I can learn to speak it very well ! Of course , I like to travel around Japan too . I went to Hiroshima last month , and I met an Australian frined and got drunk on good sake . In English class , the English teacher taught students the expression , `` Graveyad shift . `` I thought it was an interesting expression , because there is not an expression like that in Japanese . Firstly , there is a growing awareness that using public transportation instead of driving a car leads to the reduction of green house gases because cars produce more green hosue gases than trains or buses . My borther helped me work this morning . I want to learn English wiht the help of lang - 8 . Unfortunatelly , my work does not require English . The other way is to think about where it came from , and try to figur it out . It 's like unbelievable medicine , which absolutelly heals my body and soul . Is it natural to feel like that or am I too shy about speeking a foreing language ? In China , students have endless exams to pass along our lifives , even after ( maybe ) you have entered society . How abou your countries ? my use of English in the publie examination , My life became somber . These thesedays we are unable to see each other . I always feel I 'm still not familiar with calculating the money especially when I shope at a mall here in Durban city because this country has decimal money and most likely because I have not stayed so long to calculate money smoothly and Japanese has a tendency of keeping other people from waiting so long behind a line . It is very fun , and I will have an excit experience . I feel that maiking ceramics is a kind of physical labor . However , You 'll get tired of it if you imagine that you put it into the mouth , chew and then swallow it as many as 30 times repeatedlly . We may be able to use it to dcrease the intake of unhealthy food and drugs . They feel ahamed if they are found wetting their pants . thanks for taching me correct English ! I , am a really short temperd person . and I try to speak in English with my friends and I restarted to communicate in English convesation class in my university . My major is Managenent . if I keep on studying English hard , I belive I can be a person who can speak good English Untill I go there , I will do my best with presentation ! ! I took off my shoes at the porchI and sat at the kind of table which can be seen at many korean restaurent . It tates good . Although I say that I will save money , I 'm actually going to spend a part of the bonus on a handbag , a pair of shoes , accesories and so on . Many trains will be suspended tomorrow , so many people ca n't go to ( get to ) their schools or offices ; of ofcorse I ca n't either . First , great teacers have a passion for their job . I had time to go to see a movie called , ' Pirates of the caribbean 4 ' . It was n't as interesting as I 'd expected , becuase it was n't much different than the first two films ( movies ) . She told me that I have an interview changce to her department as an executive assistant . It 's a big company , but the salary is not heigh . What elso do we need to do ! ? The act prebents my body from getting cold . I want to returen to my normal life soon . Before their concerts , they pronounce the members of the day , and funs can choose the day their own favorite musician plays . I have heard that there are some funs coming to hall not to listening music but to watch their dance . My friend gave me a book titiled `` The Authoritative Calvin and Hobbes `` I was so surprised to hear that when he first attended the law class in graudate school ( He anttended Univ . Also I think those foods must be atracting to people , arging people want those foods . Some of my frined were in a bad mood , so we went to a loungh Today was very intersting and fun ! The shpe of UK I went there to get my bicyle yesterday . When I saw my bicyle , I was astonished because . . . . . . . . Befeore I came here , I thought `` If I live in the U . for a year , I will be really good emglish speaker . `` But I was wrong . I am surprised how difficult it is to learn other langages . So I was really disapointed in myself and kinda bored studying English . But Lang - 8 often encourages me to study it , because I see many other people who study other langages and may have similar feelings . I really like to correct forigne people 's English . I really like the way people act , american greecy foods , stupid cartoons . . . In Japan we have to follow certain social rules like showing politness to people who have seniorityand giving many complements . a lot and This makes it extremely hard to be close with people who I meet for the first time . . . I think I ` m going to study a little bit but not the way the teacher told us because everybody studies in different ways so I ` m going to do waht I feel like doing . I started studying Russian , and I 'm trying to improove my skill . Little typo on improve . My school is very small and almost all of the studenst are Japanese or Korian . I really want to talk with foreiners . I have watched a few . . . stries . . . . I want to make foreiner friends I was thinking of it as a normal self - advistising website that claimed to help people greatly improve their English . Of course , thanks to today 's grobalization , Japanese people have been getting more and more somewhat open - minded to the outside than ever before . Listening is diffirent , because every day you watch BBC , CNN or varieties of English programs on TV , and automatically you will listen to the same word again and again . I quickly took off the headphoe from my ears and tried to listen to her . She said something but I could n't catch her words becaue my heartbeat was louder than her voice or ( perhaps ) because of my poor Japanese listening ability . And , I was a just poolish Ossan who did n't know that I was on the express train and needed to pay or buy not only the normal ticket from Osaka to Kyoto but the express ticket too . And that mainland China stops its boring threat to Taiwn ! ! ! ! Seperated family members gather and celebrate this holiday together , enjoying delicious foods on this day . I dicided to use this site because I wanted to improve my English writing skills . I feel that it will be bustl in our home this summer . First of all , my English teacher recommanded them to improve my English . Most Japanese people do n't know what `` premotion `` means , but we use `` shuffle `` as Japanese word . There are two types of digital Camara . I really had fun and thaught `` I must study English harder `` so I will write a diary from now on . I definitly will NEVER forget this summer memory . I like that I feel the cold in winter at mornig . I strongly reccomend this book . ( this sounds better ) I especially loved that the process throughout which the King 's trauma was gradually healed was very carefully descrived . I usually feel down on sundays at midnight ( it 's arelday Monday . . . ) , but I am still in a good mood . Anyway today my neice ( my old sister 's douaghter ) came to my house and I was asked to keep an eye on her for a couple hours Since she brough the movie Totoro from her house , which is a very popular anime film in Japan , we watched it together . For some reason I want to post a picture of the main caracter on my account . The most sccary roller coaster is the `` White Cyclone `` without a doubt . And English is the most popular langage . are there any gramatical error ? I ran 100 meters in 11 . 2 secounds . Typoon Aere , which was the strongest typoon this year , has passed us by . When will the next typoon appear ? Most of you have not experienced a typoon , right ? So we asked a staff member in the boose . The rainy season has statred . Thanks to the fan , I can be confortable . I grilled an eggplant and meat with katakuriko ( potato storch ) . I added a drop of chinese soy souce to the eggplant . Jesus , please attrac me more and more . My heart is your thorne . She emphasized `` The beauty can be maked , and it 's the easiest way to get love . `` From last sunday , it has kept rainning for a whole week ! Cold , bleak , and bitter are OR would be the best words to discribe the terribel weather . I find what my goal is and what I shuold pursue . I have to study grammer from the beginning . definately the one I would recommend . Anyway , most of the movies on th above list are not that thought provoking You say , `` Japan is the best counry `` ? It was fresh in a sence . The wall was gray , the humidity was excesive . Haaaaaaaa ! ! part - time jod . because our techer absence . resturrant together , we drinking and eating there . So as the punishment , I drank a bottle of Japanese liqure . Guys , who can tell me how to leave a message on other people 's page in Lange - 8 . Next comes three years of middle school which is mendatory . That 's because I 'm foreign to the diffrent school system . I was walking around the `` Wakayama jyo `` for abaout 20 minutes . Because of the butterfly storoke , I 'm losing interest in swimming . I was in a hurry , but I didn n't understand this sentence , `` Do n't post to Twitter . `` In the end , I did n't publish it . I 've been taught English by a philipino . , Accutually , making holes is boring work . But It looks like she is looking foword to her two granddauters growing up . So , I went to see my tutor on Monday to discuss the project ( Design A Train Schedual Based On Baidu API ) . Now I have chosen to continute my Computer studies to become a web designer ( not really sure . . . ) and the day afer tomorrow I will meet with my angent to determine my major . What should I do to in order to be more skillfully in Japan ? In fall , there is a junor college festival . Unfortunately I have a little oppotunity to speak and write English . I am taking care of my causon . and I drank lots of alcohole . but I ca n't stop drinking ( alcohole ) ! XD Next time , I 'll take care when having alcohole . Especialy , Italy . I want to talk about my unusual exprince of a traffic jam . I guess you wo n't often see a main road where there are many empty cars in the peek houers . But that time , all the drivers left their cars and openen their doors , since the main road would be closed for 2 to 4 hours . But today 's wheather is bad . I 'm disapoited , that 's why I did n't go shopping yesterday . in fact , nowadays I 'm studyng english because my major is business administration , so I need to study english and learn how to write and speak in english . She was adorable girl so I thougth , `` I want baby , it is about time to have baby . `` I want to talk with them if I have an opputunity . I felt sicky before long . I want to leave for Toronto sonn , but I have a lot to prepare for a new life over there . Writting Practice 1 Desipe how I know they can benefit me , I do n't have enough time to study details . Besides , I must spend more time improving my poor English . Then are ' Can I go home ? ' or ' Can I try this ? ' , all unnatrual expressions ? Then I rince them with water for a couple of minutes before placing everything , including the bowl , up on the side . Next , I deal with bigger ones like round - bottomed pans and sadad bowls . The tenpareture was less than 0 ! ! Today , I woke up eraly ( in the morning ) and I baked bread . Breakfast was very good , becouse bread was very hot ! ! I greatly apreciate everyone who helped me with correcting my writing . Becouse Argentina 's team is so strong team this year that most soccer fans rate them number one . The lover of the protagonist died because of failure of abortion which was not disired by her . Moreover , the friend of the protagonist felt sad due to lack of understanding by adults and finally he committed suicided . . Alomost of all of them were arranged like alternative rock music . The air was freezingly cold and the sky was cristal clear . But there are very few because almost all internship events have already finished their applicantion . I went to my grandmothers house and saw my ratatives . Beef tongue is especially deliciopus . I noticed the information writted on the board . To complete this course , I have to take some English classes for horing speaking and writing skills . However , the atmosphere is good in this class and the instructer was nice and had a sense of humor . I am looking forward to nexr class and talking with classmates in English . A woman is introdusing extraneous matters into the debates . my hobby is taking piture , they are extremely beatiful ~ Thanks for inviting me as a frined Recently , I have been busy but I want to introuduce something to you ! ! , The Jananese economy is getting worse and worse now . Usually I hate to go to there because I am tone - deafnesss , but my friends really want to go , so we did . I will excersise tommorrow . I will do Yoga and streching . This is my first diarly on this site . ( Maybe , this is not like a diarly . ) I think these are good for improving speeking and hearing skills , I will write this diarly every weekday that I can , so please correct my diarly . That bothers me , because I have plans to travel with my family at the end of yaer . We knew each others ' new parsonalities , thinking and own past stories etc . . I think that if you especialy enjoy your recreational times , you have to do something your job or you have to do reguraly . Becouse if you lazy in your job , do n't you feel lack of pride ? ? My girlfreind and I That is not alloved in our country . Actaully it 's not just raing . . but after a while our mood became natual . We were talking about eatch other and had a lot of things in common . IKENOBO is an old and traditional style / art / tradition of fllower arrenging in Japan . For example , the life of Thomas Edison , Madame Curie , Hideyo Noguchi . . . ( Nogichi is famaous only in Japan ? ) . Therefore , it is hard to imagine how they look to us modern peple . You may lose everyting in the blink of an eye . Today I scruw up the midterms . I want to go to Itary : ) The touch of my hands , and the touch of your hands too , will never be imited . That is the reason behind my interest in exploring the limitis of control , the reason why I am going to move to London at ( or after ) 18 years , that 's why I have sex in my room while my family is sleeping or have my hip bone tattoed with a colourful dragonfly . Kindly , she acceped it & made a dish which inclued Kimch . Soon I asked a person on duty and I found out that this failure would continue until evening due to constraction . Well , I 'm just starting to learn this language . To tell you the truth I 'd like to learn japanese , but I thought it would be better to `` start from the beggining `` . Are there ramen reataurant in your country ? Of course , we need to pay for the basic charge , but it is n't so pricy . So we Japanese have a party called a `` Bounenkkai . `` I plaied a sport . Actually I 've been learning English since I was in first grade at elementry school . I 've been learning it for more than 10 years , but I 'm stiil horrible at speaking it . Thease days , I am waching the Toy Story movie to get English experssions such as , ' is mom losing her marbles ? ' . . . The shop keeper recommnended the point card ( PONTA in Lorson ) . I am interrested in several point cards , so I applied for the point cards that I wanted obtain . It is organized into Reading , Listenning , Speaking , and Writting sections . I wathch the concert in the church . Thier music was truly matching . I watched a movie called `` In her shoes `` last night and rememberd that I wanted to read poems by E . E . Cummings . My plan ( on ) this weenkend . I met them when I worked in the military servie . So I am extremly excited to meet my friend who came from New Zealand . After our meal , we will go to a coffee shop to talke about lots of things . Of course , I also have to meet my girlfriend this weenkend , but it is not because she is going to work tomrrow morning , so we are going to weenkend about this weekend 's events . Have a nice weenkend , everybody . But , we shared a large lobster since we could n't waste the good opprtunity . Since entering hig school , I often get migraines She cleans often and cooks delicion meals , My girlfirend called me this moring before I got up just to tell me it ` s snowing outside . I think that it is more convinience for us to have a car in such a situation . I 'm writing in a dialy for the first time in my life , Yes , I love books , and in particulary old books . This book is about complex analisys of a field of mathematics . It is not very easy to understant , because it left several parts of the demostration to the reader , or it asume that the reader knows things that nowadays are n't taught in school . I 'm going to study abroad in AUS from March to Sebtember . I 'm majoring in International Communication at the university and I study Eniglish and cultures in class . I 'll always challenge myself to speak English and to get accostomed to my new surroundings as soon as possible . If you have an e - mail adress , I 'd be glad to receive your mail . My e - mail adress is - - - - - - - . My hoby is to make sweets . However , Cantonese , which is widely used by ppl in Guangdong Provice , Hong Kong , Macao and nearby regions , is definetely distinct from what is generally refered to as a mother tougue spoken by one or several ethnic groups . Instead , in my view , Cantonese is a competing force against Mandarin , mainly due to its popularity and dominace in the most well - off areas in China . and that would be the reason that the center authority is becoming anxious . Cantonese ppl surely take pride in the special dialect they own , because Cantonese - speaking regions are a statement of wealth , development and fast growth . But in the neighborhood is also the ownner 's other homestay , which is the homestay of other students . I have twe fears . So many people say taht . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese straight away ( that was the main purpouse of my joining to learn a bit of Japanese and to polish my English ) . . . . Yestoday I bought a belt as a first experience . What 's terrable about custom house ? Today , I began keeping a dialy on Lang - 8 . Please contacy me , if you like . My department is the School of International Liveral Studies . Yesterday my stomach hurt very badly . I felt better and worse . It did not take Dad and Mom , only myself . My good friend was not around me , but I was told my friend was aggry from the close encounter . I went to Tokyo in Simokitazawa with my frind . The apprearance of someone like him has been expected for many years , so people tend to have excessive expectations of his policy , action and statements . He may be required to hundling some political situations with severity . . . . Investment trusts ( the indexcial funds ) are worth less day by day , Of course I hope to return to the level befor subprime occurred . I ws exhausted that I just I bought something on the internet . I thike they 're difficult ! When I spoke to my American friend , I am speaking English but Jpanese words are always spinning in my head and they would even slip out of my mouth and cause some embrassenments . . threre 's no time to have breakfast . . I know a lot of words and grammer but it is a little bit different to speak freely . sometimes I ca n't stand my vocice and pronunciation . I felt so exicited that I could n't control my tears . I could do nothing but say thank you , my dear frieds . He has seached , looking not only for Japanese cuisines but also the spirit of Japanese dishes . In this sence , I like it . The Aretist is Maurice Brazil Prendergast . I do n't know if it 's valu * * * * * The other is a wooden escalator near Antwerp Cathedarl . ( I forgot what name it was . ) Today is national fundation day in Japan . So today is a holyday . Recentry , the weather is bad . I do n't have much money , so I ca n't go so far , but at least I 'll be able to visit `` Amano Hashidate `` , which is oen of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I have to reply to my Garmany Professor for correcting my paper . I attached corrected tex file with this e - mail . Dog meat is a part of the traditional Korean food cultrure . Next time when I see an opportunity , I would like to tell them about our recommeded places . I am still waiting for her asnwer . . . It was so confortable ! ! I thought it was a interesting system and I _ Ican use it for free . She is my best friend on my universitydays _ days . Moreover I shoud improve my speech again and again , latery it 's so cold ! And you must set it concrately , which means the plan must include a numerical target . The more concrate it is , the better the result will be . By the way , this morning , I resieve an e - mail from the Education Department in the company where I warking . I 'll do my best to do well in the exam thuogh it 's quite late to start practicing . I 'm a 21 year old Japanse girl . Today I 'll once again write sentenses to help me incorportate new idioms and words into my vocabulary . hatcket > A man cut a smalltree with his ~ . Although , thoughts of a blissing family life might change a person 's perspective . Do you speak forgein lenguages ? Why are you going to univercity ? It is similar to Hungarian in many ways , but nately unfortinately differences are frequent , too . Miyazaki Gorou received bad ratings on his first work , Ged Senki even though it was clearly good . he is an Architect in the next proverbace . I fele angry , and I did n't communicate with him . he is by himself and I hvae a good family . It is neither a typical familiy , nor romantic movie , but it contains elements from both . The dog slowly transforms their views and opinions about the most important things , like taking responsibilities for something , planning babies , helping to find the balance between the carreers , the family and themselves , etc . Butthe most importantly , it is really funny : ) Hallo frends ! ! ! On Saturday I climbed up on the Eureka Skydech . I entred the showroom and took photos , then I climbed up on one of the Ferraris , my dream is realised ! ! On Sunday I went to Philip Island for to see the little pinguins . I saw the little pinguins come in from the sea at night , and I saw the pinguins walking on the beach to ther house . I love the natural sights in Tibet - the animals , people , mountains , lakes and tamples make the perfectly harmonious photograph , that 's where I want to live in the future . This year , after BEC exam , I decided go to Tibet . It 's really a long time to wait for the perfect time point , maybe October , for around 14 days . It will be 55 hours by train . I will see the transition from city to valliage , and eventually to altiplano . My training always starts at 8 a . m . I llive not so far from the place where I train , but nevertheless I was almost late . The first prize was a degital camera ! ! I ate food already even though I did n't feel hangry . It is important to eat food for breakfust . Hao are you ? ! The preocuppations of an ordinary man are to make sure he wakes up in time to arrive at school / job , to earn his living and in his free time , to watch a movie or get out to his friends . Thank you for always teaching me varius things ! Ohh no , I did n't know that they do n't have any homepages aprt from geocities Japan . . . I always remembered that a girl once told me : `` When I saw you at frist , I thought you were a very serious teacher , but when you started teaching us , I saw / found that you are very gentle . `` For example , last month I 'd read `` Alice in the Vonderland `` by Luise Carrol . I thought , `` These words are used in formal writting . `` We waited 90 minutes for Tower of Terror , but we enjoyed the time because we could look at many atractive objects that had the story on the way . Of course , Tower of Terror was so funtastic ! ! I loved the senery too . Tokyo Disney Sea has American , Arabian and Europian streets . I especially liked the Europian street , I felt as if I were in Europe . I spent a lovery day ! I did n't ask further ; therefore , I did n't know excactly what in the picture needed to be modified . When I went to the hospital , a nource said to me : `` Lets check your body temperature `` , and she found that my temperrature was 37 . 8 , so she told me not to take a medical exam today . It was very intresting to learn about the future relationship between Russia and Britain . A set of unimaginable elements occurred around me , destroying many greatful memories , harmonious relationships , as well as laughter , which all attribute to a benefit that is not worth mentioning at all . I feel complicated like a kite having lost her line , like a boat in the darkness having lost his direction , like a lione having lost his temper . . . . . . They have a lot of beautiful parks , fashoinable street and shops and classical buildings which made me happy ! I konw new friends from a clowd called the heart . She lost her hasband three and half years ago . I had gone to her house to see her occationally when I was a high school student . However , I ca n't do it easily now . I do n't mind what cuisineis it is . I was wearing ugg boots and as you know , they easly get soked so I had to walk very carefully till I got to work . After I finished openig the bar , I tried to order some food because I was starving . But sadly , the restaurant could not deliver food because of the frozen road due to the heavy snow . Okey , let 's do something . Recently , I ` m studing at the Goldsmiths university in London . I need to be slim ( especially my weist ) because I have to select clothes that can be wore from my closet every morning . to return to the topic , how are they able to round their hips so fastl like that ? ? In Amereica ? Recently I ca n't play baceball because of my injury . I 'm busy studing , so I ca n't show myself . I heard that Christmas Isrand has nothing at all . I want to go Sentimental Jorney alone in Island . I want to improve my Englishi , so I joined in this activity . There is no spcial topic every time . She really likes talikng , that 's why I always ca n't get a word in edgewise . At first , he pronounced one of four words , `` very `` , `` bery `` , `` velly `` or `` belly `` . They are also cute even thouch they are Mexican men ! Steave Jobs announced this morning that the new iPhone is going to be launched onJune 24th . The cat who lives aroud my house had five new babies . I feel tired at afer work . . . . He plaied a guiter and we made a song . So I will enjoy my wrinting from today . My brogher never gets used to get up so early . I 'm a third year universitiy student and I have to face job hunting from this spring . I have to thank this site and you for helping me to impruve my English skills . Mabye , that 's because my friend came to my home yestrday . We ended up doing an all - nigth . My firiend is very funny . How does she thnk about me ? Questions about a short sentece pt . 4 Fortunatelly , she loves English books and reading them to her will be useful for me too . And when it comes to speaking , French people are also tempted to prononce in the same way that they would do in their native language . My major is Inglish . tenant - recident restore - fix - repaire Every time I speak English I think , `` which words ( phrases ) should I use ? `` I want to understand these alittle differences . Somebody can read my English and correct it ! It 's really amazing . : ) I want to say thank you directly to people who read this diarly if I can . Many apple and grape trees , and rice fields . . . ( a little boaring . . . but I like this town . I studied English at school ( junir high school , high school and University ) , The movie 's tital is `` The World of GOLDEN EGGS `` . Bothe of us were a little uneasy . So it was diffcult and boring . Both were woolen garments . One was a light orange skirt and a jacket ; the other one was a voilet dress . When I saw my mother brushing her shoeson the proch , I felt thankful to God that my mother is alive andin good health . And it 's a new oportunity for me to study my english * - * ( ( I know , my english is n't good ) ) It was very hot and humit . I had beem running . I had beem running for 40min around my house . Hower , I found all the girls who I knew were boring , so finally I decided to ask her . I am SO busy this week that I 'm close to explod ! ! I wnat to know why the vacation ended so quickly . . . . Therefore I went to berbarshop . It was distiny ! ! I was going to a Susi restaurant for lunch with my wife . language exchange Taipie I now live in Taipie I would like to find a langauge exchange to hepl with my English I could n't run in the halway any more ! It 's also painful , especially the toes . I have n't dicide which country yet . And I will make a plan for a trip with my famaily next year . My dream is to travel around the world with my famaily . We were going to play borling , but we could n't because there were lots of people . I sincerely repect computer programers and PC technicians . yesterday , I had a conscription examination , I am very nervous , about whether or not I will successd She was having a small conversation with another passanger next to her . I think the most challange thing in life is negative feelings towards others or things . If a person always thinks positive , he would be happier and healthier . maybe it will not take effect that fast , but in the long run , after anyalise and thinking it over , I may behave more positive next time when a similar challange attacks me again . I rememberd someone once said , do n't spend a second to think of those who make you unhappy . hi , I am newly registrator on Lang 8 . my master 's degree in taching Chinese as an second languae . I need to prepare everything and be careful takling with people but I am a sincear person I do n't want to a liar lol . It seems I should describe about two jobs and also my bisiness ( teaching Thai ) too . Later that day another acquaintance wants to find poeple for his business too . htere , every summer a few old people die of heat stroke . Yestday I had physical examination for this year . Hi eveyone ! In this course , the teacher tought us how to use acrylic paint , but it gets dry very quickly and the final result is not as beautiful as if it would be done with oil paint . ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very beiftly . When I was holding a class in this late afternoon , my son sent me a text ( / phone ? ) messange , ( and ) said `` Shall we eat out this evening ? `` / `` How about eating out this evening for a change ? `` . We stood in a long line under the white snow because my son wanted to eat in a small reataurant . I came here with the hope that I could chang myself . We relaxed and talked about thier journey . That was a cockroache ! ! We were upset and tried to throw it out , but it was so fast , and hiden behind a cooler . `` Somethig is And then the cockroache appeared from his pajamas . I feel a little bit narvous . The cat lets them get on itself and geso to look for Mei , and they can find her . Hanami is like you go to parks or somewhere with your friends or colleages to watch cherry blossoms . I went for Hanami the day before yesterday and played UNO with my frieds . On the other hand , the full - blooming cherry blossoms were really beuatuful ! ! ! And I beleve that to be in contact with students who are learing Mandarin is a good start . There are too mant things to fix ; it is more than I can bear . I feel pretty prussure as I ca n't do better than other students . But I think that it is because I love Disney , espesialy Disney philosophy . In Japan , there 's a phrase like this with the same meaning ( transrated ) . Hey my name is , , Sana From Palestine I 'm a studet of English litrature . I need Some helo with my writing . . I will get enough pay even eventhough it is at my house ! ! ! So many people couraged me so I appreciate you guys . . . . It says `` Vivid separates in contrasting hues ( such as this fusion of tangerine and plum ) feel modern when accented wioth a structured purse and wood accecories . Does `` sturucutured bag `` means the bag which is made of connected parts ? Lavora a scuola . English speeches are really good to practive English with . Besides , it feels great to givie a speech in front of many people . I always becomw extremely nervous though : P Anyway , the kids were lovely and a plesure . On the way , I bought a mocha and sandwitch at the Excesiol coffee shop . I wish to have many meetings throgh this diary . At least I must be couscious and careful of my bad habit of getting easily absorbed in Net - surfing . . . It is alredy passed midnight , so I am very sleepy : ( However , I can not go to bed yet as I have not finished today 's part of my studies . . . These days , bisiness at our store is very slow , and it makes me I 'm not a beginer anymore , but I 'm not an expert either . I 'll go to Enoshima island with my friend by motorbike tommorrow . Enoshima island is located near Kamkura . Today I watched the Japanese story from VCD , The story was about a woman cartoonist who raised an orphant cat named `` Sawa `` . I like Japanese Horror more anyting else since it does n't need any explanation . do you know Ghibiri movies ? Raputa is one of the best . ( I ca n't decide no . 1 ) which is your best ? Some people observed my class so I was a littele nervous . Today 's lesson objestives was & nbsp ; to get used to using the name of body parts such as nose , mouth , ear , and eye and to enjoy activities . I 'm in chage of a second grade class . I think there are some things to modefy . Koushien is high school student 's Baseball conpetiton . In japan , almost all people know of some programs about langage aired by NHK . In fact , many people skilled in foregin langage such as billingal and trringal people have made use of them . To follow in thier footsteps , I have tried to watch the program . So , sometaimes I fall behind [ ? ] I had wanted to practise writting English , Now I 'm writting an article in English . but I wanna keep writting for the sake of my English . It has been rainiing since last night . Soon the festival is going to end , so both flowews and tourists are few . However , all of it waere rich and delicious . I often go to Jingu studiam to cheer for them . Today , I 'm writing this diary at the terrace of a starbucks caffee . I did n't see his races in the past becuase F1 is very difficult for me to understand . What was I wanted to go was Mikunopolis , which is the virtual idol Hatune Miku 's concert at Anime Expo . I put some ' KAKUAGE ' on it . I want to intriduce my character today . When my teacher enterd the classroom , we sang a Teachers ' Day song for her . because up untill yesterday we donate our holiday for this project . . . But I think some poeple are nomal . The test is a conversation with a native English speaker for 15 minites . becouse I want to study arts in foreign countries . I finished my hamework very quickly bacause of the drama . . They had n't known their responsibility untill the party finished . But it is not easy to decrese the welfare budget . Many contury are facing this ecomonic crisis . It 's beem a long time since I last visited this site . Actually , When I was plannig to visit South America , But I guess that mission has not been uncomplited . Studying aburoad is my important dream . My father hasn not stood up since 2 days ago . B : Do n't warry . I might love her , but I hardly know about her feelings and what she thinks about . Althogh she is reallly attractive . . . I 'm from the fromsouthern part of Korea , so I have n't seen much snow there . Last night , I wached `` Hairspray `` . Mayby I like his voice . Tonight , I 'm going to take part in a Gohst tour . Therefore , we can only imagine how life would be withot schools . I saw Gandam Then my mother took me to buy some watermether , because it was so cheap Sapporo shirine When I heard the news the prime minister did n't make an offering at Yasukuni shirine , I remembered Sapporo shirine . Sapporo shirine is a shirine in Hokkaido . I think this shirine is a park rather than a shirine . I live in Saga , Japan and I go to univercity in Fukuoka . I often watch movies and doramas with my mother . I thought it was some kind of a suspence movie , but it filled me with a warm feeling in my heart in the end and reminded me of my brother . Next day , my husband found an extra lock and attaced it to the bike . To avoid intensive use of electricity during weekdays , the rest - days of our company have been changed from satauraday and Sunday to Thursday and Friday . So , today and tommorow are my days off from work . Therefore , I went to a Public Liberary to borrow 9 books . I remember the liberary is full of books about Technology & Program , Geo & His . Also , Hong Kong 's Liberary lacks Audio Books . Thomas the steam engine is one of the most popular animation calactor in Japan . It was held in a suburb of London with a lot of spetators . It is defficult to have a chance to watch and ride on steam engins in Japan . It 's very important and singnificant to keep the old items in good condition . lf you ride trains , you can see a lot of people using celphone , Or if you are walking down the street , many people walk while using their celphone . But thinking about a 9 / 11 - type attack , it seems to be defficult to abandon our weapons and arsenals . We 're forced to defense ourselves and our allies . And then , we would n't have to defense against , or deter any adversaries : P President Obama 's way of speeking is quite respectable . After graduating from the colleage of pharmacy , I joined a Japanese pharmaceutical company . At that time , we had the dog ( attached pictrue of beagle ) who was a cute and smart boy . Because she is too lould to make me consider everything . There are a lot of pop up rabels explaininghow themusic is nice . . . something like that . Thank you for readling that . It sounded like they were not native speakers of Enlish . I am from Colima , Mexico and my first languaje is Spanish , so I hope that I can help you to learn Spanish . well if your answeer is NO ! , I send you an invitation to come to Mexico so you can get to know this beatiful country . I met a friend who could spoke English and I siad to her `` Could you give me some adivice on how to speak English fluently ? `` She siad `` Probably your English level is good but you do n't seem to speak English well so you should talk with a native person all the time . `` That was nice advice for me because I was thinking that I would try to talk with native person . Recentry I have studied English at an English website . Nowadays , people face a series of problems surrounding the enviroment . We uaually do the things we want to do but damaged the enviroment at the same time . I thought it 's very very useful and helphul . On Saturday morning , my fridnes bought breakfast for me . The movies were very interesing . It 's not broadcasted enougj in Japan . Those photos are `` The old Hrosaki city library `` , `` The old touougijuku foreigner teacher 's house `` and `` Hirosaki castle . `` ( I forgot to writting this . But interetation is very diffrent from speaking English . I boutght a coffee . Wounded and breaked , I have been making bread for two years at home and it has been a fun and refleshing te for me . She just refuses thme without giving them any chances . I was in charge of facilitating an English conversation clab for biginners today . We have the class almost every week , and I often join it as a facilitater . I thought vidual aid can help me facilitate the class , and I was also able to enjoy watching the video . I go to shcool . Before I photoshop an image to upload onto the web , I 'll finsih the Coke , grab some fries , and write something here . However , what should have been an impressive exhibit of his gifts , became an embarrassing moment because he did n't understand what he was asked and he also made misstranslations . One of my favorite things about Jpan is the cherry blossom season . However , they are only enjyoed fora week or so . The lifespan of them are very short and this , I think , makes cherry bloosom more special . I had a cherry bloosom party with my friends today . I have to cook my own breakfask , lunch , & dinner . Yesterday , I drew graffti on a public road near my home . Many , many kids drew graffti with chalk . And I drew graffti ( too ) ( . . . . Drowing on the road was very interesting . My first experience with Russian was not very good , because there is no appropiated practice material and all that remains in my mind when I read a title like `` Russian in 30 days `` is an extreme frustration of not having mastered all the thousand ways to decline . My poor Einglish My major at University was Einglish . Soon I will probably have a nateve English speaker friend . It had been a long time since I saw my firends . We had much to talk about . I had a long walk , went to Freshness Burger , listend to music that I like , let my mind drift back over rundom things , and tidied my stuff a bit . I was kind of thinking about what happend to me yesterday . I 'm not going to write about this in the diary but some thing special happend to me yesterday . I 'm going to get ready for tommorow I have to specify cupcino or espresso or americano here . I want learn the englisn language . Becaus I was in a private educational institute , I could n't see the first half . At the beginning of the first half , Lee Jung soo scored the frist goal . But , at the end of the second half , Greek players palyed really well . Although World Cup was held in another country , Korean people gathered in stadiums or big sqares and cheered for Korean players . Congradulations , to all the people from Krasnodar ! I have found that befor I submit the paper about nationalism to my prof , I must perform a presentation about sociological methodology in my seminar . That is more difficult than writting a paper ! There were so many participaters . You can read a veirety of topics wich a bit taugh to find in regelar lapraries . When I write , it 's ok but when I speak that is not ok . My Engish is broken by me when I talk . I 'm very happy that I have no class today because the tyhoon is going to hit TAIWAN , and the authorities have decided to close the school and the company . The tyhoon may even cause a serious disaster like a flood or a in it , but the pictures often come out blurredly . I finished working earlry today . I then drank alchol in a pub in front of Shizuoka station . Honorific expressions are usefull in business . This summer holiday , my 11 - year - old male consin came to my family , taking two references of grade 5 . The task to assist him to review his courses in grade 5 burdoned on me naturally . When faced with my naughty consin , I almost had no strategies . Although imposing is unwise , it is obviously effective especially when coping with such a noughty boy in a short time . I 'm very sorry Fukushima has become infamous for the accident at the Fukushima Daiich nuclear plants . Becouse she likes to play pc game , Work using English in a Japanese compay . I did not know there was a wepsite which brings together so many different people . He was a professonr of computer science and he was diagnosed as having an incurable cancer at my age . Because the brick walls are tere to stop the people who do n't want something badly enough . I think it 's a very usefull tool to learn forein langage because whererever I am , if I 'm in the situation where I can use internet , I can talk to anyone all over the world . but weekdays I get home at about 9pm , so I serch for an online ( Skype ) English school . serch . . . . Hou many school are there ? And now I 've found a very nice website for learning Engish : I 've already signed up , and now I 'm writing my self introduction on it . I subscribed to micro - microblog on QQ , where I encountered a famous saying that says you shold use your mobile phone , when it has n't been ringing for a while . Someone once said , `` Our life was made of 5 percent of surprise and the same amount of grife , the rest is normal things that you can not remember . `` My eyes glisted with tears . Like this dialy , whenever I have time to teach . I am looking for begginer , intermediate and advanced persons . And tommorrow is May 1st . Now , I do n't speak English much . In japan , there is no oppotunity to talk to anyone in English . I want to introduct the review in the book , and I 'm going to translate the review little by little . I am interested in ' Mizuhiki ' , which are colorfull strings used for special occasions . Actuall it was still raining outside when I was writing the sentence . Hi bbvoncrumb , thanks for your comliment . because I have low blood pressyre and I 'm senstive to cold . If I can pass the test , I can go abroad and get trainig , take part in editing textbooks . . . We will eat loacal food and go shopping ! kkkk Because I will study hard for examination befor it . He said , `` I slept yesterday without using a heater , in order to save elecricity . I enjoy exchaging postcards with people in other countries . at that time , the appearence was just like a bamboo stick . Everyone will go somewhere even if it is expencive . I 'm writing in the ealry moring just after my job has ended . . . . Thank you for reding my diary . It 's fine today although some clouds sporadicly adorn the blue sky . If you are allergic to polens , I 'm sorry to say so . I do n't have hay heyfever , so I ca n't relate to the calamity . If you were in a quiant village where the roofs of the houses were thatched and you were surrounded by a number of beatiful cherry blossoms , even the word `` specutacular `` would n't suffice / be adequate . People revel in drinking and eating there and eventualy grow into boisterous because of intoxications . I do n't know where this ' UNCOMPORTABLE ' feeling comes from . I can do it agine , keep going ~ ~ ! ! we felt happy because we had been out of contact for a long time since we went to college . Hence , we talked about a lot of things including tiring things but finglly , we both had a good state of mind . 4 What 's the defference between ' I have some questions for you ' and ' I have some questions to ask you ' ? Today , I came into the office as earily as usual . I remember the time of my interview , during which my manager asked me whether I could get through difficulties or not , and my answer was difinitely yes . Howerer , I feel it 's a little difficult to do it now , because it 's very hard to get along well with my collauge . This is my first tiome using Internet to learn language ! To type English with keyboard makes me crazy , 'cause chosing the word to describe the situation that I wanna express takes me a lot of time ! Today I have stronger pain than yasterday . While watching posted videos on Youtube , I am discouged Geroge Michael and Shogo Hamada . My loundry wo n't dry ! : ( Eating and drinking good food and wine with ppl is fun , what is more , the dinner is free . I apprecite having the chance to go to XXXschool and I hope that I do There are some things that we are not clear about , and then we have misunderstadning and it makes people who are affected by our mistake feel angry , or at least uncomfortable . We ca n't deny the dominance of Endland in comparision with the rest nations about aspects of life , but it should be clear in the way we call nations ' names . I have ever thouhgt that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . And now , after taking a class on British cunture , I know exactly the reason . Because , I did n't transfar money to bank ! I transfared money to bank a little while ago . . . I hope that my website 's data is n't deleated . . . Becouse the wine distributor arrived yesterday . By the way , it will be rainny tomorrow . I can write some sentences in English because I studied grammer in Japan , but I 'm not sure if it is natural or not . I prepaeared to go to colleage in a haset , because the speed at which the lec takes place is very fast . This is the reason why the lecturer illustrates with a moniter , not a blackboard . So I thought `` What 's that ! `` when I woke up this morining . Do you agree or disagree with the following atatement ? Parents are the best teachers . However , we havn n't tdecided the day when we will go yet . I do n't know why , but foreign senior men who apeer on Japanese TV shows also speak ' OYAJI - GAG ' on the show . What was more , I did n't want to get off the bus even though I traveld from Barcelona to Madrid for 8 hours . I read the news recently and heard about the major earthquake that happended in Haiti and killed many people . I belive that my country make sure to help them . Cause he will back to Hong Kong and will not return in vaction . I think it begins with noting , then it finishes ethier with nothing . a freaky intervirw experiencs Now it wants to launch its own shops ; hence , it needs to recruit some store managers , sales persons , and maketing executives as well . HR called me yesterday and asked me if I was interested in the position ( maketing executive ) or not . However , this company has totaly dispointed me . First , I filled out a sheet of personal information and a sheet of MERTKETING questions - - freaky qestions . The interviewer asked me to breif introduce myself and asked me severl questions . Thus , I asked how many brands they would launch soon and she was n't abled to answer me . I also asked about the location of the noew shop and she said she did n't know . That really surpriced me because the new shop will be launched in the coming April . So I wanted to go to Kyoto in the morning for siteseeing . But my spine ached . . . therefore my motivation disappered . Mayby today 'll be consumed by reading books . I 've had my chopstics in my left hand when I had a meal 3 months ago . Left handers are exellent at feelings and inspirations compared to right handers . After that , we had a barbecue party to clebrate the sucsessful completion . I come from Vietnam , a beatiful country . . Austrailia . It 's 23 . 14 and I 've hust finished watching the first episode of Gilmore girls . I had classes every day durng my first year at my university . S is composed of 99 members devided between 5 sections , this is my frist diary . . I decided to improve my Engkish and I need your help . Searcging for the meaning of life , human - beings seldom think about the Working like a bee and then panting like a dog , this kind of lifestyle keeps bothing us people day to day without an end . It was aduring Happy Hour . I like beer , but I have n't drunk it in my home for about 2 yeras . part time jop I went to my part time jop . but I have to work to earn mony . To waht extent do you agree or diagree with this idea ? `` If the company sells their goods only on the internet , waht would happen to people who cannnot use the computer ? In my country , Japnan , many company use web - application systems . It is a smarting pain rather than just feeling a twingle . So my room became simple and ( refleshed ? ) She told me that she would quit teaching English school , because she was busy with raising two young children aged 9 and 7 years , and support her husband who would like to change his job , and also she wants to pursue her carreer in writing . I need to Travel arount my contry to finish my job . but I do n't have much opportunities to practise my oral englsh . I have strted to snowboard since this year . This Sunday was a little bit different than usual because we had twelve visiters from Cambodia . When he asked her if she would do it , she wlillingly accepted his plan . Eventurelly , the plan proceeded this afternoon . After I became a grown - up , I 'm likely to be shy and nervous , so sometimes I lack agrresiveness . When I think about Arabian people and Ratin people , even if they do n't know much about English grammer , they can speak and listen to English , and they do n't seem to be shy or nervous or hesitate . Japanese especially have a tendensy to be silent , I think . In Japanese education , listening to what teachers or people say is a viture , so people wo n't say anything while someone is speaking . , and happy holloween ! We plan to go drriving tomorrow , however a meeting time and our distination is not decided . She probably dirnks beer in a pub . It was very sunny today , so I went to Osaka castel Park to see cherry blossoms with my son . because everyday I think `` l 'm happy , l have all the things l wnat `` but sonetimes l do n't want anything . So , I have to eat lunsh alone ! I did n't eat breakfirst yet . My English teacher recomended it to me , so I expected a lot before I watched it . But after a while , you will know it has been spritual nourishing . I 'm not good at larning English . I 'm in my final year of the duch equavalent of high school . I still made my first entry here an English one , mostely because I have my first English final comming up and it just happens to be a writing assignment . And also because I just really enjoy writing in English , and I 'm kind of affraid to write in German for some reason . I 've never felt sick since I came to Australia , but at that time , just that particuler day , I was n't fine . Last Monday , I met my former crassmates . It was lovery day so we bougt lunch and ate in the park . But I did an oral test , I do n't speak English very well , I do n't have the opportunity to talk in English , I need to find some way to train my conversation , but I dont n't know where . TUTER ! I 'm looking forward to seeing my lovery wife in yukata . You told me that you were taught Shakespear with boredom when you were around 8 to 11 . I love TED and Steave Jobs ' speech in Stanford university . I appriciate learing 2 . 0 : - ) If you want a product cheeper than the retail price , it is very usefull . Many Koean use Coupang , Ticketmonster , Gurupon . . . Social commerce site have various kinds of coupons : shopping mall , bueaty shop , hair shop , nail shop , masage shop , restaurant , cafe . . ect . . Becouse if I think too much , I ca n't continy . I am buzy , so I am going to just try and try . I thought it must be a lie , but when I visited her apartment , I saw there were four bannas in the kitchen . so my daughter was eager to go out somewherer . Haneda airport was used mainly for domestic flights and connected to only 4 foreign ariport in China and South Korea . The workers took off their shoes inside the building until it officailly opened in order to keep it clean . Dear friens ! It is difficult to point out the errors in the Japanese sentences non - naitlives write . We read a recpi while we cooked `` tororo - conbu - nabe `` . It was a great success , Thoug it is our first time cooking it . The part ' hoor ' sounds like ' whore ' in English ( srry for the wording . . So the Englishman thought my mother often called her collague a Englishman thought my mother called her collegue whore for sure . so my friend advicsed to write my journal in this site . mmmmm , I 've got to make new friends . I want to use the phrase , `` Get to the bottm of this `` . If you ca n't beleive in yourself , just concentrate and keep up the effort . `` A Claas of Art `` I will have an art class and I 'm going to go to near the port , and I will paint a pecture of a fishing boat . Yeaterday , I played soccer from early morning . I will join a soccer tornament in November . Pls correct my English . When I drove my car , I was aware that the right side blinker of my car flased faster than the left side blinker . I found that the bulb on the fornt right side blinker did n't work . It might be more expesive than fixing at a gas station . That reminds me of the death of princess Diana who died in Paris when she was followed by many paparrachi . Also , people missunderstand the important news of the world , since every time you see the television in Japan , there are so many programs with information of the star 's gosips ; because of such nonsence information , it reduces the time to show other serious news that is much more important for the world . By the gosips from the media , these fans can be confused of the difference of the image and behavior of such stars . My birthday is this Saterday . I think I didn n't do well . : ( After the test , a cinematographer came to my school and gave a speech . there are n't a lot of days left till the worldcup Cup ! If someone asks me `` how about writing an essay togeher about his From tomorrow I 'm gon na start to attend a English institude . He is Korean but at this moment lives in Japon and studies Spanish . I am goind to visit Tokyou tomorow as my sister is getting married . Althout I habe visited Tokyo once before , I am excited to go there again . A mail from a colleage was about my boss ' I chose chemistry while others chose geography , biology , physics , politics , or histry . In my piont of view , that is just because they all belong to science . In university , the phydics class is much more difficult than before . I have thought that a person would be slimmer after finishing a series of difficuld questions . We had a wonderfull time in NYC and Washinton , DC too . I thought that maybe they were born in ( came from ) Europ when I first listened to their music . I felt the Eropean style in their music . Polular places for Hanami such as Ueno Koen are usually very noizy because of people talking , shouting , singing etc . I am Koream . Althought I ca n't speak efficiently , I want to enjoy with friends who can speak English . The main topics of conversation were all around me , like seasons , alchole , hobbies , gambling , etc . . . However , this experiment has encouraged me to leran English . Yesterday I took this picture because the flower was so beautifl . I mean that even though people prepare enough to achieve something they would like to get through sucessfully , when it counts , they get so nervous and worried and as a result they ca n't perform as they had thought they would be able to . It 's difficult to discribe . The animation is so beautiful and I think it can be proud as a Jananese calture . So today , I was looking for good ways to practice my english in an interesting way - waching movies , chatting , and talking are very good ways are n't they ? Good night and thaks for reading , It is the most excitest MANGA I 've ever read . They sometimes make me angry , but not really because they 're my lovley dogs . But it 's lanch time soon ! Hong Kong was a very fun and lovery place . There were many different foods , it was very yammy , As I could try the flavors of several countries , it was very interensting and celicious . My colleague from the previos company ( I worked for ) called me last night . `` The competiter ca n't do it . `` because I 'm affaid I will need a alot of corrections . . Good morring from Thailand As soon as I got up , I washed my fece and brushed my teeth . I 'm looking forware to that , someday . You also would n't hear the noise of cars on the road , beause there were few cars at that time . Most of people went to work by bicycle . Their were green plants instanded of high gray buildings . I suppose their strategy is very successful among this generation besause of their reliance on the Internet . In addition , the laziness of their customers resuts in the offer of a delivery service . The older we get , the better we get at handling human relaitonship . And then I went to snowboard about twice a sisen . In the future after our dreams come true , I hope to travell overseas with her . I want to write the reason why I stady English . Above all , I just stayed and traveld there without any consideration for my future , whether I could get a job , and so on . Belarusians almost never say `` Good morning . `` This earm This earm is so interesting . I am surprised that so many people are able to speak good Japanese which is said to be one of the most dificult languages in the world . My dog is calld Rei . My dog is sheeping on the sofa . My first trip outside Taiwan was Japen when I was 13 . Earning money by myself is not unusal for me ; however , it 's really something to make money in a foreign langhage and a foreign country . When you wnat to rent equipment such as a camcorder , a lighting unit , a microphone , etc . , we ask you to register as a member of the Community Media Center . somethinf happened to me recently . I went to a japenese food resterant with my boss yesterday . The G7 meeting ended and they dicided to carry out some provision which has never been done before . I have to have my motocycle looked at by the motocycle shop 's employees . Yesterday , I was very excited because it was my frist time Because there was already existing resorce which I did not create . The strategy is how I shoud make use of the resorce , thinking of priolity and limits themselves , I guess . But I realized the existance of copy right , and I gave it up . I asked an electiric store to repair my air conditioner . I want to know about Minnesotta . Today I went to the club camerot in Shibuya . I relly think `` What a wonderfull world `` every morning . Becouse it is intersting and fashion in the clothes . I would like to join the next perty some day , as well . As I didi n't know when to submit it , I asked my friend for the deadline . I really recomend this book . It 's soncond Sunday of May today . Now they 're keeping that secret just between themseives , their mother has not known that it 's Mother 's Day today . Each Ramen shop chef has his or her own recipie . There you can be satisfied with each bowl at a reasonble price . It raine yesterday , so I came home to my dorm by school bus . Also I think that we have been only larning formal sentences because when I talked to native English spealers , I could not understand anything they said even though they spoke slowly for me . Facing the failure of my College Entrance Examnation , I felt depressed at first . Fianaiiy , I want to be rich . I feel sometimes it 's good to get away from electrical gudgets and doing something diffrent from what I usually do . From today , I want to keep writting as many entries as possible anyway . Today 's picture is the most beatuiful beach I visited in Taketomi island . and our body gets older . We need to take care for ourself such as eating a velue food that is useful for the body . Even `` water `` seems to be important . I tried to comunicate with British people . There are three pieces of news which I 'm worring about : We have classes in her office over tean and cakes . Susan and Catherin are very American . She wanted to be a conductor of an orchetra when she was a high school student and she majored in music in college . They are Chiba Lotte Marines ( a Japanease Professional Baseball Team ) fans . I had took this methord for the past six months , but I did not improve much . If you have a good methord for learning English , can you share with me ? I am from Saudi Arabi . I joined this community site because one of my friends reccomended it to me . it 's difficult , for me , writing in English dialy . Anyway I had a gud day . The store is very big , and I was so excting about shopping . time and I also forgot that I came there frome the other side . Am I your daughter ? `` My parents laught . Do you remember ? `` The Assisrants laught too . When I was growing up , my parents often tell me about / remind me about this thing , and we laught about it . I 'm getting better recentry . Then I wondered why all of girls who you kissed were very surprised , when they looled at my face . In the world , there are many people that commit suicide . Maybe they have many defferent reasons . People always do sonmthing they are unlikely to do but they must do . People always do someting bad for themself but they still do it . I think my smoking is the same with those people . I want to make foreign fridends ! ! ! I 'm enjoying 1 Liter of Tears now . Yesterday I stopped by some Indian - currey restaurant to have lunch . So I encourge myself . I 'm learning Jazz dancing from 4 years ago and I 'll try to do yoga and velly dancing this year ! sun . Meanwhile , my boys workd very hard . They cleand at the bottom of the mountain . True or Flase ? We try to gether audience , but only a few people come to our show . Like most of the Chinese students , I have been learning English for a long time and improving it by taking various langage exams . It should be after my Jappanese languge proficiency test level 1 and earier than my 1 - year - exchage in Jappan next year . To recite all of those vacabulary and pick up English writing , I have decided to start writing dairy on Lang - 8 once again and I hope I will do it longer this time . I am learning some words that I am not familiar , espacially those from TOEFL vacabulary . 3 , I reaaly need to improvve my English which is very important for job and I 'll do it with my full heart . I feel lilltle ashamed of myself . My frieds what are your suggetions to my English study ? I can type anthing I i want to share with you guys . The main actor is Won Bin , who is very handsom and tough . Especilly in the last scene in which the main character struggles with all the bad guys is very cool and exciting . So I recommond that children and pregnant women do n't see the movie . but I coul n't . I like winter but today I thought that this winter is too cold & long / hard and it will be wounderfull if it is over sooner and spring comes . I went to see Jusesu Christ Superstar by a Japanese theatre company yesterday . Yesterday 's stage was called `` Japonesc version `` . Kanamori as Judas ' song is ringing in my ears . . . painfuly sad voice . For serveral years , some friends of mine , who are very well versed on the subject of comic books , suggested that I read Watchmen / suggested to me that I read Watchmen . The depth and humanity of the characters makes them different from the stereotipical comic book heroes . The plot deals with several interesting themes such as human nature , perceived reality , politics and the difference betwen ideologis and reality . She says she enjoyed it , but I think it was a little hard to understant for her . It 's the sweet poteto season ! ! I like sweet poteto very much . I want to make baked sweet potatoes , tempra of sweet poteto , and many other delicious things . I 'm going to get some sweet poteto , so I can start cooking seet poteto ! ! Are there other dishes using sweet poteto ? Some people might say it is meanigless . A 100 yen shop has daily goods , stationeris , toys and even food . The rent is determined by various factors such as location , neiborhood , building age , amenities , whether or not there is a doorman , elevators , and so on . Since the neiborhood itself is very popular , the rent level is very high even if quality of an apartment is low . I prefer to live comfortibly comfortability inside an apartment because I spend more time inside than in the neiborhood . Thank you for reading my dicitonary ! However , a familiar word , `` McDonal 's `` , as we can see around the world , has the letter `` D `` in it as a captial letter . Additionaly , she was a patriot and we should construct a statue to extol this noble spirit . Statues are built to remember people who contributed to society , and thereby making more people realize theire responsibility to the country . We went to Bexhill which is near Eastborne . We went to see The Red Arrows show in Eastborne . We saw two ponnies , a pig , chickens and many kids tried feed them all the time . I went to see the broadway musical `` Legally Brond `` last night . Please check my grammers . My favorite figure skater is Plushenko , _ because his sketing is very good and exciting . and because now I have native speakers to speak with and practice with , even this site is one of my important reasourses ^ ^ These things , for me , are so beatiful . Please correct any grammatical errors or any expreesion not commonly used . I rememeber when my girlfriend and I started to see each other , she always made fun of me and told others that I 'm so stupid to be with a girl in the same department , even in the same scholl . Sters are very beautiful . My heart becomes peceful . The view from the small mountian is especially good ! I 'm liiking forward to that time . In an hour 's time , I will go to school to cintinue my studies . Chonese lesson , english lesson , maths lesson and so on . I hope to ellect the person that has proper thoughts and actions . Sorry , I have n't posted my dialy for two weeks . A presentation topic will be attractive with the support of examples and proof , especially for academic , sientific and technical presentations . I 'd like to improve my spaking skill by using my iPod and this speaker . I am an account ececutive . Everyday I need to handle all kinds of things that are complicated and irritaing . I think I should be more careful and deligent in my work . I 'm a bigenner on this site . This is my first dialy . I read a book about organizing of desk , infomation and thinking . Most Popular Chara in Japan After I moved it , I chaked the data on the DVD - Rs . and after a while , thenPC went blue ( secree ) again . Beause I felt very cold , we went back early . Hai ! My name is Yasuna . I am a freshman at a Japanese college . The Fitst Below is my introducation . In the future , I want to becom a successful secretary . That 's all to my personal introducation . As I did poorly on the listening ang writing . Quatitive , Verbal . . . . I wonderd a little bit if the bubbles are bad for the lawn . Chinese tekens , gebruikt in het Japans , kunnen op verschillende manieren worden gelezen zonder dat hun betekenis veranderd . I wanted to watch them because they are so famaous . Naruto is famaous in Japan too . I tried drowing at the workshop . But I could n't even drow straight lines . But our program teachers , yong Americans , have opened my eyes . what 's your mathods ? I am a Univercity student in Kyoto and I am 20 years old . It 's an old Japanese mortercycle . Sometime last nonth , At the biggining of counseling , I asked a student what the biggest problem facing him was . Maybe someone wants to know someyhing about Russia . The song I want to practice next is the classic old song [ Juat Once ] . It is `` I 'm not okey `` composed by My Chemical Romance . The sky in autumn is so beatiful especially in Japan ! If you have not seen it , I will realy reccomend it . `` autum `` and ' `` fall `` Some sentances in the novel `` Night `` which I do n't understand . And here are some sentances that I found emotional and beautiful ( I do n't know how to descibe it appropriately , maybe you can help me XD ) and want to share with you guys : It is famous for its `` night marcket `` . Wooh it is almost 4 o ' clock in the mornig and My voice surprised my son when I read his picuture books . My company is a commercial firm so we purchase products from Swithland and sell them . Since we send products to the costomer after we receive their order , it takes a long time . Our products are very complicated and people may be unfirmiliar with them ( it is a device for vacuum ) , so we need to think of it and find a good way . My main job is solvning my client task by digital communication . I can hear spectators sing a song together in order to cheer players up at sport events such as soccor and baseball . I make it a poin to listen to Enya 's songs when I am stressed . It looked like weezers . He told me `` These are tongus for chips . Are they convinient to eat snacks with ? ! I want to study English and Spainish . I have been studying English for a long time , I bought 20 greaded readers books I 'm looking forwad to receiving the package . We are looking forward to visting Denmark very much . Since January 1st , I have been writting diaries in English on another site . The Sushi he made was so delisious , and his delight ( from it ) was able to be seen . And a smile on people faces who ate his Sushi was noticeable . Knowledge is what maks adult and chilren different from one another . Finailly is skill . Consequently , my consentration increased and I could go home early . It seems I have a new computer rigth now but I do n't lilke it . I like the old one because I was used to uisng it . There are many atractions . Speaking of atractions , some of them will scare people but they are out of order . I have a fear of hights . I 'm a chiken . He has a very good psysique . We asked a peson there to take pictures of us . When my daughter found the bycicle after waking from her nap , she said , `` The bycicle is laying on the ground ! `` sunndy day perosn in the music industry . Friendship is an essential ingredient in the making of a healthy , rewaring life . All people have the right to access the best medicien available . While some people think it is necessary to ensure human lives by providing them with advanced treatments and the best medicine , it would be very difficult to take care of or save thier lives completely in terms of the budget and facilities . It is true that people should be treated equally regardless of thier level of income . Rich indivisuals or companies can not take responsibilitiy for the medical world . For exmaple , in Japan , it takes a long time to raise enough funds for patients ' opperations . The goverment still lacks money even after abolishing unnecessary business activities . I have been impressed by the theory of Ebbing house befote . I 'm visitimg websites , including this one , by using my cellphone . How dericious it was ! Firstly , miso can be devided into two types in terms of its color , aka ( red ) miso and shiro ( white ) miso . It 's really hard to discribe colors in English precisely ! so I 've been tierd these days . OKINAWA 's music has very special hermony . Your country may have that kind of biscuit too but Tim Tams have a special ingredient which your contry does n't allow to put in biscuits - drugs ! ! My next English lesson will be about surperstitions . Now I work in a kingarden , I do like children , but I do n't like to play with them all day long . It 's my frist time logging in LANG - 8 , so I 'm new . I want to chang jobs , but I have no confidence 'cause of my poor English . Just kiddning ^ ^ But I want to if I can . My dream is to become a management consultansy . I cough so seriously that sometinmes I ca n't even breath . After coughing for 3 days my mother said `` I think we should see the doctor , the doctor of traditional Chinese medicine . `` The doctor of traditoinal Chinese medicine is about 60 years old . English buisiness letter My custums broker says that the importer 's name was my storage company 's name on the B / L . I think it 's very hard for a person with no experience like me to get a job . It must be very hard at the beainning , but I believe that I can have a better tomorrow if I work hard . ^ ^ I used to save my small allowance to buy a new album and then listend to it thoughtsands of times . What is strange is that on the other hand they 're willing to pay 300 - 400 yen to download a single ' chaku - uta ( music file specialy coded for mobile phones ) ' , to get the song immediately when they want it . I guess what they value more is convinience than a small amount of money , which is I think a bit too expensive for a single song though . Dubois put her girls to bed and was wating for her husband while sitting on the sofa alone with the lights turned off , when Mr . Dubois , who has been deeply destressed , finally said to him , `` Honey , it 's already 9 o ' clock . `` I was got a little cultral shock at that scene . The younger people in their 20s usually go out with freinds till very late . When my husband and I were dating , we used to meet aroud 8 or 9pm after work and hang out in a cafe or bar , then went our seperated ways around 10 or 11pm . Restorants usually close at 10 pm and supermarkets and shops usually close after midnight . Moreover , there are lots of bars which stay open through the whole night . Topic : you need to write an appropriate response to Eeil , being around 100 ~ 150 words in length How are you doing ? Last nihgt , I saw a TV program that said Japanese people eat Japanese food less these days . How are you ? Your letters never sease to enjoy me . Second , the number of Japanese families who buy groceries from online supermarkets increasing these days is not a good way to buy food because , in my opinion , using online servises like this would discourage people from enjoying themselves before making meals . Personally , even if a custom in one country is so crule or so stupid seen from people from other countries , they do n't have the right to say if the country 's custom is good or not ; all costom have the right to exist in the world . Althogh this entry is so long , please correct this > < ; sorry ! Today I slept untill 10 : 00 . I started to write a diary to improve my engilsh : ) So many people were there . I saw many beautiful girls and florts . But the most surprising event was the Stels B - 2 fighter flying over The Taiwanes perple are very kindful . I love Taiwan and Taiwanese perple . I can make various pound cakes , for example , chocolate , pecannuts , banana & walnuts , raisins , and some dry fluits . I take pictures of some triful object that has a nice atmosphere . Then he suddenly started talking about gambling and the rich man who is the president of oil company in singapole and winning 20000 $ last night and he taught me how to win . I 'm Jpanese and I 'm buddist . However , a lot of Japanese people like to celebrate Christmas like foreign peple . I 've heard that in many foreign countries , people buy prezents for their family . However in Japn it seems to be only for children and cupple . Maybe it is used as advertisement for toys or jewelly ? I gave prezents to my nephew and niece . After graduating from ESL and switching around some majors such as Spanish and Social Work , I felt like studying more about the earth and the things related to it , so finally I majored in Geography which foucus on resources and the environment . My school life here in TX has been intersting and fun although learning English is still in progress and I still have long long long way to go . I 'm a graduate student and will graduate from my univeristy next spring . I need to wait until the company starts intervies again . So I deciede to return to the place where my university is located . Neighbor restaurants menu I could add new a item to my neighbor restaurants menu . But it was not the that strange untill my college classmate appeared . I do n't know why I always dream about my elementary school , highschool , and the places I played in when I was a chind . Suddenly I feel like readng blogs that / which are written in English . There are many language in the world and I selected English first because I 've been studing since junior high school and orignally I liked English , especially I want to understand and use `` jokes in English `` ( hahaha ) To be awkard , I want to teach more to 13 girl and play with 11 girl ! It is of the `` Godzzila Rock , `` which is in Syari town of Shiretoko peninsula . I sat for examinations from Tuesday to Sataday . My classmates suggested we go to see the movie 2012 to relax and relase our pressure that 's been repressed these past few weeks . I 've skipped it twice , and if I am anbsent the class three times , I ca n't pass the exams , even if I get 100 points . Even watching TV is a lille bit hard . And I looked up about my class ' tacher too . Luckely , I downloaded all the episodes from the Internet and watched it within half a year . But the even busier season is comming soon . I work alone untill very late in office when I have big projects to complete . Sometimes untill 3am or 4am . . . I got an offer to do website and product design from swissland company . But it faild . For exeample , optimistic , negative , positeive , cheerful , kind , strong , and more Please give me your good advaice ! ! ! ! In November I will go to Finland to meet an international coodinataor who is in Uni . Actually , it took longer becouse I transited in Malaysia . I enjoyed talking with them , and could feel cultural diffrences . When I heard that , I felt the immense distance between countries becouse the sun sets earlier in Korea . But there is a diffrence between only knowlage from a dictionary and the stories we can listen from people living there . I wish I could have traveled around Australia becouse there are a lot of good places to visit . I shoul have gone to the Great Barria Reef for squba daving . So , I 'll go to the Kaname - cho station to study English with my friend who theaches me . Thterefore , I make it a habit to check calories . I 'm disappointed with this result , but prbably I 'll study basicly English , like I studied when I Once I have begun to write diary , I check for my buddies and reple everyday . . . Although I 'm doomed to fail , It is an ordianry thing for me and I will do it again and again . . Today I made fried celery and becon , boild spinach with sesame , and rice balls . Tomorro I 'll make boild poteto and beef with soy sauce , and some appetizers . I 'm on a bussiness trip in KOBE , HYOGO - prefecture . Many foriner are in KOBE . I usually go on a bussiness trip for ten days in a month . It 's hard for me to take a long time for torancepotation . Recently I was thinking about two quetions : second , where can my own happiness and expience come from ? I will go to France for 3 months from august to october to do reserch for biology . In the labo I will go to , everybody should comunicate with English . My major is Japaness . I have a lot of intresting . I can not contect some friends who live in the devastated areas . We also decided that we would sing together one Englis song and one Japanese song and after we sing well , we will post it on YouTube . I will use ipot and master singing English songs . But the yonger one hates it . Of course this is a good way , but before doing that , for people who are not confiden with their speaking like me , it 's very useful to learn how to write well organized English . So I 'm practicing in this way so that I can put toghether English words quickly . I found the anser to this question . Work is impotant for me to enrich my life . neice to meet everyone ! Recentry , I was too busy . Please look forward to my next jurnal . From tmr , I 'm gon na start working on my desk and I feel like that 's gon na go well . So I could not agree with his ponion . For some pelple , red is a beautiful and lucky color . But , I learned that it 's sad to regret in the furture . VietNam learning English Hello everybody , I am VietName and I want to learn English . I think that is a long time , but I am not goot at English . Im love shopping , besides I 'm just a student yet and , because of it , I 'm constantly poor . Cut an onion leangthwise in half and slice the halved onions . Place some butter into a frying pan and and fry the onion over a moderate flame until golden brown ( for about 8 minitus ) . While we were walking , we discovered spinich in the field , which is a vegetable I really like . I could enjoy having a dinner with a wonderful side - dish of refreshing spinich . They always say , `` We are too busy now , so we ca n't deal with your things at once . `` And when we ask them when they can do it , their official response is `` we will do it on our own schedual , but we do n't know when we can finish it . `` Nevertheless , our leader has no power to ask them do our matter as soon as possible . I do n't know whether I should work harder atmy job , or look for a better job in near futire . I love automn too . I like this season the best because the clamate is very accurate to do anything . As soon as I woke up I felf a sore throat . I thought `` Today , I 'm not so busy , I wiil be OK , `` but unfortunately . . . ? ? ? Becase I find I 'm wasting my time . We should combin them with some other ideas or some global standard . To me , English is a chaming language . Some students use color or hightlighters . I 'm wokr at a logistics company , Today the weater was bad . When I stayed at home in the Kanto - area on Frieday , some violent shaking occurred . But a tyhoon hit . I hate when independent rock bands break up because they are not famous and they ca n't find the oportunities to sucseed . Filipina girl , 3 . But I ca n't speak Englishu fluently , so I will mend my ways and enjoy everyday to the fullest . Ten days later will be Chistmas , but it will also bring me a difficult problem . That is what should I buy for my supersivor as a chiratmas gift ? I work in a InterCintinental hotel ( a ingternational hotel ) where most of the mangement staff are foreginers . Such as my direct boss is from Austrlia , our manager is from Netherland . our GM from italy so on . Generral speaking , we celebrate christmas just for pleasure in China . But this time it is absolutely differen . We will be celebrating christmas with some real foreginers ! So I think it 's necessary to buy something special for them as a christmas gift to help them to have the same christmas as before . At least they will also recieved a gift . I think theis fellings about Christmas is a bit diffrerent from China , and my main task is to make chrismas as fun as it would be in their homeland . . Shino - chan also came to Osaka from Hiroshima for to take tha lesson . I heard an interesting speach . But I think it 's very important that we have to show concideration for each other . Our group 's main purpose is introducing Japanese student guides to student travelar . My freinds reccomended that I eat dinner . I migth look for people who can advise for me about diet . In order to do it I walk aroun and go up and down . And through some windows I can see some greeen around my house . As you know , the roads in the morning are full of cars which are droven by workers . In my opinion every subject is importent . Many students think maths is more difficlt than Chinese , so they spend more time doing maths than they do practicing chiese . It will make me feel longly . How do mivies or TV affect people ? No . 4 Heroes and heroines achieve great sucess of their business , attain sweet love of their life , and gain high respect of their fame so easily within a two - hour long movie . When watching it , audiences can experience the same events and share the same feelings . As a result , this whole process would fulfll their fantasies and cause them to find balance in their lives , or to some degree , lose the balance in their lives . This all depends not only on the movies but also the audiences themselves . To put it differently , takss are arduous for mass media to bring people laughter , joy and relaxation , and at the same time some pedagogic meanings . I 've been practising magic trics since I was in the university . The earthquake happend in Tohoku and along the Pacific Ocean coast this afternoon . So you might see a rainbow , Althouh there are some other necessary conditions . I went to an Italian restaurante with my husband . It was so delisious that I ate too much . I want to tell my sister about this restautante . The end of it threw me a curve when her hand suddenly appeard from her grave . Also , she said that `` You can never be cereful enough ; you are a girl . `` This evening , I read a novel wrote by a Britian womon writer titled , `` Harry Potter and Magic Stone `` . His uncle has a chubby and spoided son . The uncle and aunt treated Harry curelly . Harry went to the Witchcraft and Wizandry School with the help of an escort who was from that school , and began his lengendary experiences . There was truble on Wednesday , The sore thorat will heal by gradation . I am verry happy ! Tomorrow I hane an interview test to work at a part - time job . I am a bit narvous . Then , we took the travel angcy 's bus there . We were disappointed becuase we had spent time and money . We just took the bus all day . Then I went to the travel agncy , and they returned some of our money . Accorinding to the news , it is an aproaching Typhoon . I heard about Lang - 8 incidently from a Chinese website called CnBeta , a IT news website . One measure I am taking is the pursuit of muscle excercise . Unfortunatly , There are no lessons in the holidays . They live in appartments near the university so that they can go to school by bike . First I need to coppy a book for him . Do I sound a little mysterous ? My bad luck began when last month I went to a temple to pray for mome money . So I was thinking , `` I definetly have to go there again . `` Now , I feel like my esophagus is buring . I need to find a way to alliviate my anxiety . As a female patien , I have good reason to lose my rationality . We talked about the past , the embarrassings happened to us . I 'm twenty - one now , and I have many random thoughts . ( my friends call me `` poet `` sometimes ; I wish I would n't make you luagh ) . I 'm sorry I konw I should . but still I do n't know what I want to do after I finnish these studies . I continued to make the panda that I began ( ? ) yesterday , again I made some mistakes - . - I was really hoping to finnish it today , but I guess maybe it will be tomorrow lol Because of that terrible life style , I had a high fever every month , got the flu in winter and suffere from chronic constipaion . The host family was good , I thoght ! `` It makes no fifference to me . `` I want someone to correct my dialies . As a aaresult my performance was OK but my index finger was burnt . Well , I will enjoy the perty . I just need to be happy but it 's so difficle . Our country has a lot of good culuture . , so I want to introduce it to people . And recentry , the custom of wearing kimono is dying , becouse many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . Thanx ! ~ ~ Hair Of Beutiful Women I want to improve my English and it depends on the criticism , so turely , I hope you can help me correct my English . However , all the hotels around the airport are exspensive . Oen day , my co - wroker told me about lang - 8 . I feel that here is a good place to learn , beacuse many people share their diaries . First , I have an English test in Augest , so I must spent a month in for preparing it . Well , I 've mostly just hung out with my freinds and went the library the last few days . After Choo - Suk , Korea 's second job recruting season will be begin . I hope to work for an international company where I can use Enlgish or Chinese . Of course 10 people including me were attending the meeting for a system assesement ; 4 people were foreigners who came from our HQ and most of the other people had a good English speaking ability . At first , it was a little exciting . I tried to listen to them and undertand what they explained . These exams will be very deifficult for me . Recently , I watched the movie `` A single man `` with Colin Firth as lead actor and the briliant Julianne Moore . * It 's just beacuse of Tomek Michniewicz 's book `` Samsara `` . But I will write a blog evreday . So he is sleeping beside me at the momen to rest . I appreciate in advanced to peopel on this site , because I need help with my English writing . Yestereven was Christmas Eve . After this trip , I think I should study English haeder all over again . Today I writr an email to my customer . But my collge said , `` it is incorrect . `` Originaly I was n't a person who was in charge of anything because I was the youngest of three chilren in my family . I went to an exhibition about the / our solar system with my BF because BF 's major subject is electronics and his fater recommede it to us . I also played bloon 3 and bloon 4 . I went to sell unwanted things to a recicle shop last weekend . Though I 've thought about these words lately , I sitll do n't knowwhich situations these words are used in by native speakers . I often hear `` definitely `` when I am warking on a street . I remember when I was in high school , I seldom had a feeling that `` I do n't know what I 'm writting about `` but now I do feel unsure sometimes . Because my school is close to my home , I can go home every weeked . My byfriend asked me to go to his boss 's cottage 2 or 3 weeks ago . His boss , Nancy , and her hasband , Steve , are really nice to me . He said , `` I woud like to say something . But , I realized what he was trying to say from his serious face and eyes . . . . then * I * was afriaid to hear the words . What I said back to him was , `` Thank you , `` and I explaind my feelings to him . vey hard week espaccialy at weekends I am a Jpanese man living in the Miyagi prefecture . I usually paleyed Metal Gear3 on a Play station3 . So , I will quit the game and start to studiy English . I do n't like to be in the cold , so I wore a sweter . I think one of the scary parts is there is no vaccine againt the new flu yet . I thinck I can write a dairy or something related . I would like to buy new dictionary , because my degital dictionary is old . Of cource , the class is all taught in English . Also , I ` m goindg to go to a theater in Osaka with my friend . Resently , I have studied English . Your cooperation is appriciated . I have to addmit that I 'm in love with Engish as a language and I wish one day that I can speak it fluently like the natives without stammering and pausing in between words . I have a big cozy whithe bath with different kinds of foams , salts , soaps , gels and many other sweet things that are necessary in the bathroom . I sometimes take a bath and read a book or a magazin . Ruby is developed by Matz , who is Japanease . `` Year 3000 `` is a big - sellor song originally made by Busted , which is a British band . Today , I planned for this year what whould happen and when I 'm going to take vacations . And , I want to watch a baseball game with Ichiro , who plays for the Seattle Marinaes . There 's too many seminars , and I 'm not concerntration . It should be peaceful between conuntrys . After that , We went to the erectlicity shop , and played with iPad . All of thoes are totally different . Adaptable , versatile , indusrious . It 's still lika new , because I do n't really know a lot of miso menus . But 4 years ago , I went to Okinawa with my family and I tried snorkling for the first time . My heart was pounding while snorkling . I do n't know why , but I beliebe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenary . I can not understand his behavior , eather . Krean friend and food I have been to Souel in Korea once more than ten years ago . Even after the lesson , she used to go straigh to his house with him , not back to our house . I was quite sure he always looked down on my plan that I would go to Austraia to master English . I wonder how you guys can stay in such a cruel and hopless country . Today I am going to the sotore and shop . Later I am going to eat with friends afther that we are going to my friend 's house and we all are going to wacth movies and listen to music . ` Let us discover the sigunificance of birth and the joy of living ' Every shake remainds us of the disaster . There is a coin box in the convinience store I work in . Becouse now that is all I can do . The GM asked me to be his assitant and he told me I could do something in a prefessional setting in logisitics . Internet calls have many adventiges , but lots of things still remain to be fixed . In the beggining , I was just looking for people to talk with in English to improve my conversation abilities . When he was a baby , he had an experience of curing a decayed tooth that was cused by his mother 's milk . I sometimes feel lonly and I feel jealous of his ex - girlfriends . how about doing an internship and studying English in the Philipines ? Salary and supply survice is not bad . Fortunately , I have enough time to think and decied . My co - worker had told me about this site and I have registrated ! I was not confident I could learn the symbles and I am not sure about studying pronunce , but after the lesson , I studied a little bit myself and I could hear English sounds more clearly . I 'm dissapointed . I followed my husband to a dental clinick in the neighber town after work for treatment of his decayed tooht . Sushi is my fevorite food . The DVDs I bought were `` No resavations `` and `` Wanted `` . I like Catherine Zeta - Jones and Anjelina Jolie . Probrem students Next year , some problem students will be coming to my raboratory . This is a difficult problem in my univeisity . What 's worng with me ? ! ? ! but I 'm really angry to myslef . Maybe we will get stiff muscles after climbingLOL There are always many customers on the weedend , _ but that day it was very empty . My friend has got a headake after this travel ! ! ! Especially the grammar , it 's so complecated . In Japan , basicly , we do n't kiss in public and also we do n't kiss on the forehead . I saw a car ornamanted with Red Bull signs . I started to practce the drums 11 years ago . Hello , my friends . First of all , I want to apologize to all my friens at lang - 8 for being absent for this long period due to the requirements in my last year of college . No doubt that I miss you all . I pick up this topic because everybody here is talking about the referendum in sudan these days . To the people who do n't know much about Sudan , it is the biggest country in Africa and located on east side of Africa ; south of Egypt . My country has struggled with political instability and prolonged wars since being liberated from the Britich 50 years ago . Unfortunately Sudan was born with wars and the most harmful one was in South Sudan . That war is considered the longest war in the history of Africa or modern history . The war continued 50 years after liberation , killed two million Sudanese citizens , and caused four million Sudanese citizens to emigrate due to the paralyzed economy we had during this ugly war . Sudan is a country of diffrente races , languages , and religions , but specific parts in the north are more educated than other parts of Sudan . This is because during britich rule the south and west of Sudan were closed areas and the government did n't allow any cultural developmental . So , soon after liberation the Sudanese found themslef with big challenge of how to rule this wide country where the north Sudanese were more educated . The government was ruled by them and other citizens felt like this government does n't represent them . The biggest historical mistake is that this government did not change britch policy of closed lands . As result of this huge mistake , the racism grew between Sudanese populations and rapidly the southern Sudanese took up arms to get their rights in Sudan . At that point , no Sudanese , including southern Sudanese , had the idea for a separation . They just wanted their rights in their country as whole Sudan . And , as days go by , and wars burned houses and killed children and women , the idea of separation from Sudan arose . In 2005 , the happiest year of sudan history , the government and ( splm ) stopped the war in South Sudan the Nifasha Peace Agreement has born . The goverment promised a lot political changes : the system became democratic and a successful election also occurred . sothren sudanes can rule their own lands by the new fedral system . In the Nifasha Peace Agreement , the goverment sponsored the referendum right after six years of the treaty . This period was supposed to be the rehabilitation period of the wars affect on the south . The south took more than 50 persent of the oil to rehabilitate southren Sudan by SPLA . Due to the bad situation in the south and huge corruption , not many changes took place in health and education and most of the money was spent on southren sudanes army . Due to the environment wich lacks any trust , now the 6 years is running out fast and the Sudanese face a referendum one month from now . The news is not good about the south , because a lot of politicians see the sapration as the start of a new phase of war in Sudan because most of the oil in Sudan lies in the boundaries between south and north . And these boundaries have not been defined yet , so the Sudanese are worried about witnessing another endless war . The situation is very tense and everybody is expecting the worst , but there is hope that the referendum will lead to unity . And if that occurs , it will be the true liberation of Sudan and a promising future . We pray for our children to be raised in a united Sudan without bloodshed . thakns for reading : - ) For that reason , I love fruits such as pears , persimmons , and the like but I rearly eat these . I 'm studying English with a textbook titled ' Common mistekes at IELTS Advanced ' . If the AAMC is going to enter the Philippines ' education and training market , it could be difficult to prepare these enviroment in order to offer their services to custermers , much like Ausralia . It is essential to collect as many customers as possble to make a business succed by keeping prices low and hiring local employees . This is my first dariy on this website and also the first day of 2009 ! I hope I have the patience and perseversance to keep on writting my diary in Finally , pls please feel welcome to correct my mistakes , and thanks a lot for reading my long passage . becouse I overdid it Because I had to finish my intership . Cuould you give me some tips about teaching myself to play the drums ? So foreigne people can not understand what Japanese people think about . But I was able to study although being preasure . This month I have to do night - shift on Mondays and Wendsday Baisically I work from 15 : 30 to 9 : 00 the next morning . Last Friday and last Saturday , I went to bed but I could n't sleep untill 5 : 30 in the morning . . It 's so unhelthy . Unfortunately a lot of peaople forget about family atmosphere . By the way , I registerd for facebook yesterday ! I 'm stydy English , but I 'm a beginner . Good things happend I kapt calling and calling , trying different country code but just did n't work . ( Murphy did n't give me , so I searched for his company on the website . ) As I was confused and considering what to do next , Mr . The first route from Taipei sould be JAL instead of AA . Psychologically watches can be replaced by ' the guy of your dreem ' . Is this sentence gramatically correct ? I ' ve got to fight this evil falb . Tommorow is ! ! This is my third visit to Beijin , and I feel that it has developed rapidly ! ! Most of Chinese people start to learn English when they are still chirldren including me . I hope nothing else bad happens , and that my friend is going to be ok . When I got off the train to transfer at a certain station , I rearched into my pocket to check the time on my phone . That 's my favorite bevarage when I went to resturant or picnic . My head is whinning . I think I had better not drink anymo If I they speak English , I can go to tojapanese people and buy food or go to Europe and see the difference of how Japanese peoples ' world view and thinking . and when I hang out somewhere , I wish I icontributed something . There are very few changces to practice . So ashame ! I have learnd English for 5 years . Acutually , I 'm afraid of making mistakes . I 'm studing English because I want to change my career . I 'd like to know what does everybody else think about this suddly change ? My teacher is from the Philipian . I 've been very tired and sleepy lately , besause I 've had a lot of homework to do . And my frineds suggested to watch `` Saw `` . She is very kand to everyone . I also walk around the park every evening . In addition to that , I walk as fast as I can , which means I always try to walk as often as possible insted of using a car or bicycle . Second , I make sure that I eat alot of vegitables at each meal . I also eat a salad , potato , or different fresh vegitables with lunch and dinner . Finarry , I always try to ease myself of any stress that I feel . But feeling too much stress can be dengerous , and what more , it can cause desease . Listening to music , chatting with friends and singing songs are ways that I can quicqly and effectively release the stress that I have inside . In conclution , joggingevery day , eating healthy food and elimitation stress can help me maintain my good health . When I was a child , my mom had sent me to a swimming class once , but I quitted when I learned it in the helfway . It can make your body more healther , maybe works on your immune system , so you wo n't get sick so easily . But in my country , students do n't really focuse on sports , even parents and teachers do not like to force children to take part in any sports games . `` Our university is really colsured ! ! ! `` This news spread very quickly . I 'm supposed to work there and I do n't even know how to cook or clean because everything I 've wanted has been gioven to me from a very early period . Thanke you from the mountain . His sister was well kown as a slut among us . But they 're alraedy engaged OMG . Kiyota : Oh raelly ? Even Kiyota had not expected that she said such a preety rude thing in front of her boyfriend and her older brother 's friend . But sadly making a close friend and a girlfriend is quite difficult in foreign countries because of the language barrer . However this kind of dishonest women can easily get conversation partoners by using their bodies . Every Japanese woman in foreign coutries has possiblity of being a dishonest woman to study English and settle down there . I play games in my speas time . We just do congraturate each other with comments or very small presents . It was my frist time in 2 years , so I was a little bit nervous to play . Later somobody assassinated Eliabeth in Swiss . Soooo nurvous The temparature was 21 degrees . Now , I work in sales department which is in chage of overseas makert . I saw the Chin gay parade on 12 th of Febrauary during the Chinese new year . I 'd been insiting that I wanted to work in Tokyo though it seemed likethere was a slight chance I actually would . Of course it 's definately the busiest city in Japan and acutually one of the busiest cities in the whole world ! I think I will miss the grocery store I 've been going to , the hair salom where staff is really nice to me , and the karaoke box I 've always been going with my friends . To remember new vocabraly , I would like to read books ! On the other hand , the younger brother was facinated by the circus . The sentece below is what I will talk about in a interview for a job . and had a lot of chances to talk with foreign people such as Iraqe people , Iran peope , etc . This is one of the biggiest shopping centers in Australia . After working there , I moved to Canverra , the capital of Australia . When I worked there , I found out that Australians like Estern food . Sushi is originally Japanese food , but amuzingly Korean tend to be like Japanese . Please correct my sentece . I bought a fasion magazin recently , and I found a remarkable article . People are always wonderring whether the country or the city is the ideal place to live . The foremost reason for dwelling in the countryside is the soothing and confortable life provided by the pastoral view . Those who have enjoyed the first cock crow in the morning , the twettering of birds in the trees and the breathtaking sight of the rising sun would go into rapture at only the mere mention of the idyllic life . Relaxed and suburban dwellwers are able to hold a more positive attitude for life and achieve more accomplishments . Another subtle explanation rests on the fact that country habitants are fortunate enough to enjoy the cozy and pleasant amience of the family without exhausting their social life . On the contrary , it would be far more difficutlt to acquire such pleasure for those urbanites . Naturally , it is possibly too reckless to assert that nothing beneficial comes from city life since several accompanying merits aslo come along with it . Flights do n't movied by one person 's contribution . Not only did I see thier collaboration , but I also saw the back side of their jobs . Especially the cabin crew Echco ( Haruka Ayase ) . They were so funny . He looed at his feet ; there were tiny animals . He was scared , he ran along the innor way . I like to drow art ! Of course , I know that it is regarded as taboo to talk about religion with strangers like this daialy . All in all , Going abroad for study brings us a plently of wealth indeed . Japanese weman are strong . I 'm not an athleat . I made a proxy server for Chainese people . Farthermore , some adults are there too . But it was a sucsess . Oska was famous as the most polluted town , but this city has been changing recent years . For instance , disposal of food oill and garvage . It 's near the * * * * * station , acroos McDonald 's , next to the * * * * rent - a - car office . My Frend 's Birthday Party I would like to opint out discrimination against women in broadcasting , which has enormous effects on people 's way of thinking . In Confucious cultures , as well as in many Western cultures , the left side is considered inferior to the right . IU intended to temt Evian . Now it 's time to prepare for my studies , because next term I have a lot of ability tests to pass , like Japannes ability test 1 . I have already made a plan for myself and I believe that I have the courage to make it come ture . and I have a curiosity to meet people throgh skype today I went to a korea restaurant where there is really delicious seafood Recentry I was emotional unstable . I want to have a storong mind . I have a bad feeing about last night 's dream . It ` s sort of sad , eventhough I don ` t know why ? It was a jouranl about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! Kan made economic activities worse in Japan because of his inconsistent policy regarding an economic growth strategy and an enegy policy . I was supposed to only drink little bit , but of course I drank a lot , untill 4 am . I didi n't have that much money inside the wallet , so I do n't care about the money so much , but I had put some cards in it . That 's dengerous . After that , an ALT teacher told me that the former sentece was not wrong . Last weekend , I went to a playgroud and filmed the children . He was a Rusian Blue who had beatiful gray hair and blue eyes . Befor I met him , I was not interested in living with any animals . I met with my proffecer This morning I went to Tokyo University and I met with my proffecer . resemble : The behavior of her son resembled his grandfather . deceive : You can not decive me because I saw you walking in the station with your dog . doubt : I doubt that , meybe she forgot about the promise we made . Hello : ) ) ) My name is Nastua . I am a student of L ' viv State Colleg of Light Industry . : ) ) ) I am 16 years old ! ! My future proffesions is clothing designer . : ) ) I like my future proffesions . People whant to know English because it is a very important languge . : ) ) THANK you whery mutch . : ) ) Houser chores are terrible , and taking classes is troublesome for me . One resason is that there are not only books but also newspapaers and magazines . I think that voluoteer does not always make the poor people who are the recipients happy . I was going to a job interviw for an internet job that I got on the on web . first , it is far farway . If possibe would you correct any of my incorrect English ? Two weeks ago our attention was drawn to a LEGO evnet in Taipei . my wife took part in the evnet and filled out the form . I shot a video my son 's happies face . I click `` Save Draft `` and I can see a dot cicling , but sometimes it never stops and it ca n't save the draft . It was realy wonderful so I was moved . I need to finish my aasignment or else it 'll ruin my holiday ! I was reary impressed with Ginkaku - gi . I want to visit Kyoto agein . I am going to Tokyo Dinsney Resort today . A collision lets you konw what issue makes him or her feel upset . Its title is English Grammr in Use . The book is basically mede of short stories like a diary . The main character is the author in his adolescence or youth , and the suppoting characters are his family and neiborhoods . The docotor told me the ways on how to treat . I hope the docotor can treat my teeth well this saturday . When I arrived at Osaka , it was rainning heavily . It seem very hard to servive in this world without paying money . Actually I am going to take the TOEFL test and am therefore preparing for my further studing in the USA . And I am really looking foeward to the day that I get the results and the letter of admission to a good school . Her son is also the same age as us , but we have n't had a chane to get along with him . I was trying to talk to her , but she seemd to refuse answering me . I am so embarrased . I just rode on a bycles and had a dangerous experience . Somtimes I think of you . - Familiy , close friends and living healty . I learned the cultural deferences and how useful English is . But , every year , by the end of summer , I always feel a bit lonly : - ( lol I 'm already a univercity sophomore , so I have to study harder than ever ( - `` - ) ! I think the best way to overcome the problem is talking with many peaple who live in other countries in English . They laught at me of that time , but I could learn . I am shure that I will learn to play flute now . Correct or Incorrection ? Please help me . . The story semed quite silly and the characters were really steriotipical . This past year ( 2007 ) I stumbled upon the Abridged series . It was a dramaticaly shortened vercion of Yu Gi Oh , paroding the show 's sillyness and the changes of the American vercion . Just a few others have done voices for the abriged series . I would like to try and do the Spanish vercion of the abridged series , with the exception of asking my friends to do some of characters . One funny thing about this whole thing is that I always have a hard time trying to pronunce ABRIGED ( the meaning of which I did not know before ) . Its really anoying . It 's so pitful . It was difficult for me to remenber the children 's name 's . Weather forcast give you some information on maple leaves everyday . From more than a thousand years ago , Japanese peolple have First , I ate some noodles and a polk rice with friends . `` We will execute plans to disetablish atomic energy plants . `` But he did not tell a specific plan . I just want to read English articals just like reading Chinese . We can see a foreseable future that the resolution of LCD or TV 's will be progressing with technology 's advancement - - maybe far beyond human eyesight . I watched a debate comepetion tonigh , One of my best friends jioned it , and his team won the competition , I am very happy . . . . . . . So , I 'm always very carefull when speaking in english . Is it as bad as the expression of rasing the middle finger ? ? The toilet , lestaurant , and all the other places were very busy . I get mad whenever it occurres and I worry about the malfunction . I went to Tsukiji yesturday . Probably , the dream warnned me that I should better take my license out of my bag which I usually do n't bring during weekend . Happy birhday to me . I drank many beer , and I became dranker . Yesterday , I went to a night club in sibuya that plays hiphop n RnB : > I want there to be a soft bed behand me so I can go to bed and relax . I am used to making coffee every day at 3 : 00P . M . , but when I opened the ice - box , there was no milk insinde . Suddenly , I had an idear . I some goingko ( goingko ? ) powder . `` Oh , It 's not bad , but it seems strage . . . . `` then , I make the same for myself . So , I made a plan that I aime to keep to 1000cal ( ? Bad idea ) per day . I 'll experience them , and decide what I sould do in the future . Of course , some of us have happy memories and others have sad memories . I iam one of the ones who has sad memories . Although I was very sad , I did not cry , because at first I could not process that mother had died and that I was n't going to see her face again . The people who came to console me were very puzzeled by my reaction , but they understood it . I could n't waite to be alone with her . Being a little sleepy when times carry you the day after today , smelling a cup of coffee , imagining the thing that you want to write , thinking about your sentences ' sensibility and sensivity also properity ? in gramatic structures . . . And when I am not able to write what I have imagined , I feel dissapointed . That is somethinng like having the same feelings as a director of a movie . However , I want everyone to see the movie in my head while I am desingning it but It is n't possible . After maybe a hundered times I am again crumpling a piece of paper . English has plenty of vocabralies ( include slung ) than Japanese . I should have very strong willness to improve my English and keep my memories of life in the U . I live neary Yokohama . And trying to be as naturl as children can enable us to receive as much as they do . educatinal oppotunity are available to more people too . So it looks like the life of human beings is definitly better and better , as we own the latest tecnological gadgets in the house , and live with educated people in an intelligent society . I hvae to study here harder and harder day by day . I think that practicing a languadge for 15 minutes everyday is enough . I was driving a car near my house which is in a residencial area . Then bihind me , another car tried to pass my car several times . He was probably in a hurry , but of caurse passing is prohibited in the area because of the nearby school . But I was a Japanes business man as well . Chloe desperately asked father , but he kept laughing for aound 10 minutes . We are going somewhere for the fisrt time . On the other hand , when we return from somewhere , we tend to feel it 's not so far away comepared with the first time . I taught English to my junior high shcool studnet and I found this in the dictionary . Of cource I know the meaning of the word ' walk ' I 'm suprised by her English skills . Beause I need you , I just need you . I foud that we Chinese students could n't understand our European teacther very well . Our social envirenment has influenced us so much . I pepared for this test a long time , but still lack confidence . So , I guess the test is like a door in my way , if I do n't pass it , nothing will change or hanppend . I think I can do it , I belive I can do it , but success is not only composed by just believing . Some people have gotten married already ; others have bought their ouw house or car . We are living a diffrent life style . But the good thing ist that I will see all of my relatives which I normally do n't get to see . For people in Touhoku , which is loceted in northern Japan , the situation is much more serious . I like sushi , which is a Japanese tradisional dish . It is delicious and interesting because you can choose various types of sushi whiich you like . Except the learning aspect of the internet , I ca n't forget about funnier ones , such as Manga , Anime , drama , films , books , songs , and a lot more . These things not only help me learn the language in certain situations , but it also gives me a lot pof pleasure , SO THANK YOU INTERNET xD That is why I write [ in my ] diary when I expelienced intersting things or have quetions . I think I have to get to bed rigth away ~ I learned hangle today by myself . It was very easy lol I leanred most of them in a day . This airport was equipted with WI - FI and I had a new smartphone . That means it is necessary for me to learn a new language , Dutsh , because it is required . I want to say hello to ererybody . but , suddendly , I found I do n't know how to say it . maybe I 'm ritht . maybe you have another better way to say hello . see yoo We can work with an enthsiasm or tried mind . I went to a hair salon with my friend after shcool . depature date : ddmmyy As a reasult As a reasult , I was asked to pay 250 dollars for the Internet fee . I got the reasult this dinner . Some really want to change their aggresive personality or bad atitute . There are exceptions , of coure , but those are few . Recently anime costume parades are very popular especially among geeks and foreing people ; P Several years ago , on Halloween day , many foreing people with costumes got together on the Osaka loop line and stayed there many hours ! It was so fun ! ! but it bacame a problem and was banned for next year : ( There were many Thiland food stalls and , someone who was from Thailand was singing her country 's song . I ate kaomangai ( rice with boild chikin ) , tomyamkun ( spicy red seafood soup ) , and pattai ( noudle without soup ) . I recommend visiting the artificial lake in the certer of the city which is surrounded by a park . There is a comercial zone along the widest street of the city where you can find all kinds of businesses : banks , bars , chemists , cinemas , pet shops , restaurants , fast food restaurants , grocers , travel agencies , supermarkets and others . Consequently , I realized that although ciclyng outside helped me to improve my fitness , really I enjoyed most breathing fresh air and taking pleasure in the countryside . The best place for young people in our aree is without doubt the lake . Luckily , the scouls are closed for ten weeks , so the young girls and boys have a lot of time to spend their Leaving my country , Soamlia , was very hard for me . But when I was there , I began to make new friends that I never thougth I would have , and I never imagined the way that I was going to know them eather . At the beginning , I felt very strange talking with them , but now we are very good friends . We went to to Acapulco to play , to an event where unuversities from Mexico go and present cultural activities . Then we went to Cacahuamilpa to play there . That was an incledible experience that I will never forget . Using public transport can be difficult , because we have a strict time and , normally , we do not have a place to sit and that can be extremely desconfortable . One argument for not using the car is that petrol is very expensive , but public transport tickets are also increasing , so that advantange is not so good , actually . The story took place in the USA a few years ago when the regression method was accepted by doctors and cientifics . But we should n't forget the pollution cause by cars . We should use a bicycle or public transportetion more . If we are working with sameone in the same job who lives near us or is our neighbour , we can go to work in the same car . This way we use less petrol . The governents are also important for taking care of the environment . In total , there were 32 pelople , a white kittie and a dog . That night , the dog , the kittie , Tom and Michel slept in the same room , and that was n't too bad . When Michael got up in the morning , he realized that his kittie had disapeared , and he found Tom 's dog with some white hair in his mouth . He thought that the dog had eaten the kittie during the night , so he shouted at Tom , opened the door and went away . For those people who want to start to do the street workout , I advise you to start with basic exerscises such as pull ups , push ups , dips and squats . Edison is said to have created the first comercially practical incandescent light . Edison and his research team made his discovery comercialy and create a company called " Edison Electric Light Company " . In my bedroom there is a brown bed , a yellow chest of drowers , a little light brown bedside table and a big brown wardrobe . The environment is our surroundings . There is no aleartness in our locality . They are busy with their own work . No one focuses on or sees what is hapening in our town . They usually speak about how hot it is today , but they do n't know what makes it this hot . I am interested in planting trees and making our sorrounding clean . Some people used to burn the forest as if the forest is useless . Man is greedy because all the things we get from the forests are free . Managemant acountant practice is very important for an organization for making decisions about human resources , sales , marketing and potential customers . To take care of the environment , each of us has to do something such as propaganda to the people in the country . About my village , we use banana leaves instead of nilon , dispose of garbage sensibly ... and so on . Are you studing mathemathics for your exam ? I 'm a happy , energtic person who likes to work with children . In my country peole make a lot of mistakes and have a lot of bad habits concerning their attitude towards rubbish . They are always throwing their old things and rubbish away in public places . The governement also can not do their role towards their people and their bad behaviour . The thing that he ( the monster ) did n't know about was that he had a spectacular infection ( literally spectacular ) that I think had no cure . It was called " The Monsteration Infectations " . Scientists were trying to find a cure for the Monsteration Infectations , but they still do n't have it . I have neded to use English a lot of times during my professional activities . For that reason I took some English lessons many years ago . I can tell you that I feel I can understand over 90% when I 'm listening and when I 'm reading , but my main problem with English is , of course , when I have to speak . I fee terrible and without confidence . I think that I 'm always thinking in Epanish and then doing the translation into English . Maybe at this moment , while I 'm writing this composition , I 'm making the same mistake . I know that learning English is a long process , but I must follow that process because I 'd like to be an excellent bilingual person . Currently , I 'm working as a teacher at the university and teaching in English is my gol . I also work as a freelance worker with the same subjects because it is necessary to increase my incons . I 'm writing now without using a dictionary and doing this composition without traduction from Espanish ( I hope hahaha ) I hope you can help me undesrtand more about how to improve my English level and develop my skills . Thank you for your attention , and I 'll wait for your advaice , ( this is my first time writing over 50 words ) Nowadays a person 's worth seems to be judged according to social status and material possessions . This mostly happens in high class famiies , as they foccus on achievements like power , political influence etc . On the other hand , for middle class families the old - fashioned values are still important as they are inherited from our ancestors in terms of values like honesty , kindness , loyalty , etc . Public transport has no future . The crisis in 2008 has reduced oil prices , The oil is cheap now and new cars are more efficient and the goverment give incentives for consumers . I know that I have not wraithen it but I have a brother . I like to speak English at school too , but my friends do n't like it when I speak it in school , so I speak Swedish ther . My fewrit lechon are the Swedish lections because I like to write stories . My family livs in a How are you ? I am going to describe myself so you will be able to reconize me when we meet at the train station . If I am right , continou reading this . I applied to a music club in our city and I was really excited when they repplied and asked me to help , because I enjoy going to rock concerts and I was truly curious about how the backstage works . What was mny job ? See you arrond This year is my sixteenth birthday and I 'm going to celebrate at home , with my familiy anda some friends . This summer was the best . I went to Cuchilla Alta with my best friends . Their names are : Emilia , Agustina , Micaela anda Lucía . I like English because it is very important to know other langeuge to communicate with other people and if I go to another country it is very inportan to know English . We got to work at four in the afternoon and it was very relaxing . I had a day off when I spent time at home or going to the gym , where I met hansome guys . You see , man , I do n't like crowded roads , a nd prefere to travel by tram . The development of the railroad and highway are easy to pulished , but the construc of seaports and airports must with congenital condition . I rather enjoy spinning , feeling the rhythmn of the music lowder and lowder . This gives me high energy each time I go spinning . To conclure , in bigger cities like Bern or Zurich there is no doubt that the public transport system would be less inconvenient than travelling by car . First , the bank notes are considerated how to design , including background colour , artwork and security issues . Then , they are prepared by skiled machinists . If the sheets are good , those sheets are then cut into separate bank notes and packed into cars in order to be dispatach all over the city . I believe that using your car has a lot of advantages or benefits . It is more comfartable and less expensive . Yoga calms und vitalizes body and mind . And government , pls do n't be so flabby with your own citizen . For begginers in this sport I would recommend that a trainer teaches swimming properly because it is very important to pay attention to the position of the arms . May Maybe they are comfortable , terrible , , dangerous or avrage . Cars and buses become dengerous and cause problems in the street . She turned her haid and saw him . " He was following me " , she thought . " Well , I should ask him what he is doing here " . First of all , finishing high school is a rite of passage that indicates the begnin of a new chapter for students . When you are travelling around the world by yourself , you gain a lot of knowledge , culture , discorves and , with all of this , you gain personal experencie . The job provides , like the trip , responsibility and experencie . The consequences are n't good as the reasons , for instance , they may have the career prejudicate , or they spend so many years travelling that they are too old to study at a uniersity . Besides that , they have different points of view on many sublects , that is why they may not like the fun and the conversation in the social life with other students . They can not enjoy this chapter with oung and fresh thoughts . It is a big dedcision , that brings great consequences and great experencies . AAs an example , if a student needs to recuperate a subject or has to get a good mark , they ca n't go to do a sport because there is no time . They would consider you as an indpendent person . Accrodingly , you would take responsibitity for what you did . I am ovewholemed with grief , living with them . Eating habits in my country have really changeged in the last ten years . it 's r is n't clear complety , but I sopuse it depends on chenging life habits in the development process of our sosiety . But a good change in our habits is the attention to calery and healthy food , because of getting information on the internet and other media that are easily accessible for all people these days . Peter looked at his watch and knew that he had to do something immediately but he had forgotten what he had to do . After thinking , he rememebred that he had to visit his grandmother as she was ill and his mother told him that his grandmother wanted to see her doctor and wanted him to take her in his car as the doctor 's clinic was far away from her house . Peter decided to go and he drove his car to his grandmother 's house in the next street . After he arrived , he saw his grandmother was waiting for him on the street . He apologized to her and asked her to get into the car . " Never mind " she said and got in the car beside him . However , travelling by bus or tram never get away from our daily routine . Travelling by bus is not as convenient as getting in a car , but you can never know what might happen with your car , where it might get stuck in traffic or some other accedient might happen . Travell plans need to depend on public transport timetables . Besides , Hong Kong also has many country parks for hikking . Tom is sutding in London . Alrough Canada is an English - speaking country , in Montreal , the offical language is Freach . So I do not have the opptunity to practise English , because most of my colleagues speak French . I was inspired by a true ledgend . His name is Edan Hazard . That fact behind sense because the maintainance of public transport is not the responsiblity of the traveler . If we want to count function of public transport because it 's not enough words to say . But public transport is a much needed service in big cities as well as small villeges . I 'm sure you 'll agree that Red Square is the most popular sight in the captial of Russia . I remember two contrats moments . One day , we had to create a team to do an exercise which used the brain ; they chose me . The reasons for stress are more diverse ; perhaps because we have an exam period , family proplems or because we think in a negative way , or we have destroyed ourselves through long hours of working and canceld our needs for enough comfort , and lots of reasons to stress ... We must get rid of the stress quickly before we lose ourselves , because it 's very harmful . For example , you can read a book , do sport , play music , eat delicious food , remmeber all the positive things that have happened to you , talk with someone who you trust , get rid of everything that makes you upset and makes your life tiring , go out and eat a meal with your best friends , and there are a lot of things you can do ... Remmeber that stress is not a lasting thing , and you can avoid it . In other words , both bad sheets and the ones which are seperated badly need destroying in a safe way which can stop them from getting into the market . Many people believe that nowdays there is no future for public transport , because travelling by car is so much more convenient , but others continue with the tought that they do help , for example , with travelling long distances . The ticket does n't cost too mutch and it is avaible for the majority of people , at least compared to buying a car . Secondly , public transport is more eficent for travelling long distance than cars and people would n't have to purchase fuel . When people need to tavel to other continents or far away , they may need a plane , wicth is a form of public transport , to complete the journey because they have to cross oceans and clomplicated distances that have different landforms . However , a car is something which belongs to the person and he can do wathever he wants and find it in the same state he left it in , and sometimes public transport vehicles are n't left in the best way . In addiion , you have to share with people you absolutely do n't know and probably wo n't see again . But , by obseving all these people , you can enrich yourself with the different cultures and manners the others have and incorporate new topics . That was my first time on holiday in another country that was n't nourth Italy . We fisited a lot of monuments , museums and churces , like the Louvre with the Mona Lisa by Leonardo Da Vinci . It depends on five main steps , which include desigh , preparation of metal plates , printing , inspection , packaging and destruction or disposal depending on whether the fourth step is good or bad . Secondly , we need preparation of metal plates that subsidiarize with skilled machinsts . If it 's good , they go to packing and distribution , whereas the others shoulde be distroyed as well . In conclusin , the whole process is an unreversed schedule . It cosumemed the power which includes humans and machinic . To begin with is design , we have to consider backgroud colour , artwork , and security issues , and then we are supposed to prepare metal plates , using skilled machinists . Secondly , printing -- including sheets of bank notes , are printed ( 50 bank notes per sheet ) . There are some requestion -- colour on both sides , special ink , slightly raised images . Finally , if it is a good sheet , the porcedure is packaging and distribution , including cutting into separate bank notes , packing , dispatching . If it is a bad sheet , the porcedure is disposal -- bad sheets and bank notes should be securely destroyed . And then he realised it was an enourmous lion . But suddenly he heard a noise , it was his mum . " Max where are you ? " she screamed . The lion dissapear in one second , running . Max spent the rest of the day thinking about that lion until he went into his room . " What an mazing day ! " , The most diffucalt area in English I have trouble with is writing . I have no problems with reading , speaking or lesining . As part of my plan to improve my English skils , I decieed to search on the internet for any free program which could help me with the plan to improve my English writing . Trieste is a little town situated in the nord - east of Italy . So the ambiental impact is very attractive . Another problem is that the citizens of Trieste do n't pay attention to the ambiental problems of their city . I think it is important that , not only in the family , but also in school , we could raise a new generaion sensitive to the ecological problems of the earth . I usually go two days a veek but henxt month I am going to go three or four days a week because I hope to enter a local competition . It turned out that that young boy had a good head for fishing and now they always go fisihng together . I like running , riding my bike , playng football , skiing in winter , climbing , etc . I like football because it is a sport that I have practiced since I was small and I think that it is the most fun and exciting team sport . The amount of garbage is encreasing at the same time as the number of humans is increasing . The growth of consumption in developing countries leads to encreasing consumption of energy , water and other resources . Nowadays , our local governmet is making some desisions to improve the situation . There are a lot of citizens movement except oficial activities . People orginise common action for cleaning areas near houses . These activities take place especially in spring and in outumn . Everyone is circious about making bank notes . The bank notes are designed carefully . Workers need to design their background coler and artwork . Then , the notes will be prepared on metal plates . After that , printing . The notes will be printred in colour on both sides with special ink and they will have slightly raised images . Good ones will be packaged and distributed . workers wll cut them and deal with them carefully . The rest of them will be disposaled of . I think that Cádiz is the perfect place to meet , because Cádiz has coast , sea , and mountais . In Cádiz , in summer , there are a lot of oportunitis to work . I hope I will get my order and I hope you eill be more on time for the customer order shipping . These people can influence our lives . For example , if you have bad friends you become a bad person and you will have probles in your life . So , your education depends on the people around you . In general , people have the possobility to study in libraries or using computers . Personally , I think studying on a computer is a better chooise . We need to do something to sabe the world ! I think they are our first friends and our first confidents . Thionk about a family 's routine . The Brazil and Nederlands games were a real test of our health . And I think that it 's not technology that will change , but the people and their caracteres . Unfortunaly , for this generation , there wo n't be real relationships , all relationships will become virtual relationships . According to my experience , if we do n't exagerate the way we use technologie like the internet , phone , satellite . For example , now high - heeld shoes are very trendy but they cost a lot and most women do n't look good in them . Transportation is one of the most essential parts of our day to day life ; whether it is puplic or private , transport takes the same priority in each person 's life from the very early days . In the age before industrialisation came into exsitance , people also used various alternatives to travel from one place to another . Then the technology improved gradually towards mechanical engines to make the transport more convinient . Continuing my visit to London , I will visit the largest park in London , Hyde Park , which has a full day of guided outdoor games and activities for the perservation of the park . follow in London I 'll go for a walk to get to Big Ben , which is the most beautiful bullding in all its splendour , where I will take pictures . Later , I 'll take the London Underground , which is a public fast transit system . I 'll trawiling on it . My favorite band is " cbjr " ; it 's a brazillian band . The type of music is rock and rap . Their music is very easy to single . I usually play it with my frindes . We won 1st place and got the cup . If anyone intends to play this game , he should practise hard to be able to play it proffesionaly . To sum up , I thonk it is enevitable . He loved Rose with his entire soul , a soul that he was losting . Suddely , he took the agreement and signed the piece of paper with his blood . Do you know a new recet for cooking chicken ? Our town takes care of the enviremont of our neighbourhood very seriously . Not only the supermartket has these containers . They are also in the schools of the neighbourhood . In my opinion , this gives a good example of the involness of the local government . The majority of people visiting Katowice are focused on three things : sovenirs , fashion and food . Fortunately , visitors will find all of that in the Tourist Information Ofiice and in shops on the outskirts . So , he is hard - working . He is a lawyer and always helps me with all my professional problemns . However , a few years ago , the government has paid more attention to the environment of our country . For example , they did a lot of advertising on televion , in newspapers and on the internet to explain that rubbish is not good for our world . In the castle there is the Holy Trinty Chapel . The famous dishe of this restaurant is a huge hamburger . So , train is an intermidiate way to tarvel . I am writing to aplaay for the job in the USA published in an advertisement last Monday . Additionally , because public transport is expensive and does not have a comprehensive coverage of most cities , private cars are more attractive for most poeple . Some people say that a tripp by car is more convenient than by public transport , but that statement has a lot of issues if we think about the limitations . But public transport has a future for a lot of reassons . First , time . If the place you want to reach is really far , the different types of vehicles of public transport will get you there faster than your car . Also , the complications about the field , like if you want to go from America to Europe , there is no highway that crosses the ocean . You need an airplane and , unless you have one , you will not be able to achieve travel between continents with your car . A different reasson is politics , because if you want to go from anywhere in the USA to Alaska , you will not need to pass through Canada . Comfort is a really important reasson , because driving for 8 hours is exhausting and it will also be unsafe . Economics is a factor too , because the wear and tear on your car will be more than in normal use and the price of food and extra stops that you will need to do . It will be more expensive than on public transport . In conclusion , for me , it is a lie that public transport has no future . However , they have to make improvements to this , like the use of better types of fuel or energy . One way is using renovable sources of energy , such as solar , haeolic ( wind ) or hydraulic(water),Also , there are biodisel and gasoline extracted from seaweed . Dear Anne , Thank for your letter asking about my fmily and my friends . When somedoby gets home , he wants only to relax in front of the television . Besides this , TV companies have understood sports provide this relaxess moment , mainly for men . In this view , I think that though there are lots of sports on Televison , there are not too many , because people have looke for it . When the day came , we performed an amazing coreography and we went back home with 3 gold medals . This American band is known for their lyrics that something different from other bands , something close to an emocional statement . My techer said that public transport has no future in our society , because travelling by car is so much more convenient . Nevertheless , I disagree with her opinion because if we use public tranposrt we will pollute less . Without travelling , people would be very bored , life would be very monotunes . Nowdays people use cars a lot . In the past , it was n't like that . People did not have cars . They just relied on puplic transport . There are a few people who use puplic transport , like students and people who have a low income . In my veiw , I can say the public transport might be going to e close because nobody is going to beclose He has been done several laws again Spanish citiziens . I have been playing this sport since twelve years ago . This sport has taught me to respect others and not to assault them.there is the only reason that makes me choose this sport is that I do n't want to be weak . I would n't like to be nothing in this country that has a rule : the strong dominate the weak . When I step foot in the gym , I forget everything : shcool , home ... . Therefore , I enjoy it . Humans are looking for power and they apply the law of the jungle , the stongest beat the weakest . What are the critria of this ranking ? and ... Chemical drugs can help peolple to heal and recover from diseases , but they have another hidden effect . Therefore , The afformentioned information above shows that our future could be worse than our present . We should live in a stabele and peaceful world . Nowadays , people use their cars to travel for work , for holidays ...... but if the petroleo were cheaper , they could travel a lot . After the preparing of metal plates by skilled machinists , they take sheets of bank notes . There are three requirements fot this : colour on both sides , special ink and images that are slighty raised . It smelld terrific , and teasted so good . It was panncakes and egg with bacon . After that I polyeder with my brothers out in the garden . They usaly do n't want to be with me , but today we played all day long . It was such fun and I could n't stopp smilling . He told us that he was really embarrassed about what had happened and he apologysed for his attitude . It will not be tredy because everybody will have his own car . There are advantages and disadvantages ; television can also cause a dipendence , cartoons and " stupid " programs can harm young people most . Today , there are many children that have a dipendence on television , they prefer to stay at home to watch the various children 's TV programs , while once our parents preferred hanging out with their friends . Television can be a useful strument if it is used with caution . Therefore , I recommend using it less to prevent damage to the mind . In order to help reduce pollution , I take acction using the three " Rs " : reduce , reuse and recycle , so I am more and more eco - friendly . I reduce the use of innecesary power at home . In other words , I turn on a light that I need while I use it ; I take cooler showers ; I heat only the neccesary rooms . In order to reuse , I convert all things reusable , for example , a plastic bottle as a plant pot ; a glass bottle as a food container . I take my reusable shopping bag and refuse to use a plastic shopping bag if a salemen offers me one . A car is less expensive , more confortable , faster and safer . For example , travelling by train is cheaper and travelling by plane is faser . On the other hand , it helps to reduce the polution made by cars , .. The picture illustrate the progrocess of making notes . Then , preparation of the metal plates and skilled machinists are needments . If the printed sheets are good quality , they will be packed and distributed . Some partially damaged sheets will be cut into separate or packede or dispatched . The bad sheets will be disposed on . The destruction will be secure . So it is not always a good thing , unless they are open - minded or have their own methods to punish you in a gentil way that wo n't make you regret telling them your faults or mistakes . I felt that I could lose consciousness . That 's why I removed the braclet . I am glaed to hear frome you . I am 24 years old . I am frome Lviv Ukraine . My hobbies are footbal and gym . I am stydying envaermantal science . Now , to answer your question , I have many favourite places near my town because I live in a lovely little town , but there is one place taht is special to me : ' A Fervenza do Pedregal ' . ' It is a veri quiet place . Because of its location , in the middle of the forest , only a few people know how to get there . It is an invledible forest , the ground is covered in low grass and there is a little river where you can swim . It is the perfect place to have a quiet day . That is all I can tell you about this place . I hope tath my answer will help you with your project . What is your last neame ? I say to people that want to tay this sport that it ' s easy if you love it . If you try this sport in the wrong way you could have health problems . For example , you could have problems with your hands , in your neek and in your legs . Emily knew she would have to come to a decisión soon . The problema for Emily was that her boyfriend was as cold as the weather . She thought he was so boring , but she did n't want to be alone . she did n't know how to live on ther own and Emily was utterly terrified of being alone . The purpose of this report is to make people more aware of the importance of taking care of the environment in order to erradicate this problem which has serious consequences nowadays . The council is carrying out a project in order to erradicate rubbish from my town . Combating the distriction of the enviornment , this is a serious problem throughout the world . Nowadays , many trees and grassland areas are damaged in many countries , lots of building are constricated . And people should pay attention to this problem and try to slove it . For instance , people need too many places to build the modern society , so they cut down lots of trees , burnning many grassland areas . Another factor is that the animals do not control themmselves and eat the plants leading to the distriction of the ecosystem . Althought this change makes the life of people efficient , the problem should not be ignored . It would really be helpful if the government made tighter restrictions . In today 's world , there are lots of constrication companies and factories are not admission , they are destroying the forest , farmland and wetland , discharging waste water and emitting greenhouse gas . It leads to a serious enviorment problem . Taking the train is more cost effective than taking a car to work , as petrol is costly and the new transportation office has reduced the cost of tickets to assist with the daily living expesnes we encounter . The other benefit of taking public transport is fewer people are taking cars , reducing the amount of toxic gases released into the environemnt . Karate is one of the best sports I have ever enjoyed in my life . One of the reasons behind my passion for karate is that it 's a means of tamming the mind and the body . I have learned to get control of myself when someone teaes me , and to be alert as well . Also , it helps me to always look slim and put me away from the ghost of obesity as well . People who want to start doing karate have to be patient . They should emerse themselves in daily exercise as well as eat healthy meals to keep them active . for instance , it 's adviced to eat large amounts of fruits and fresh vegetables because they contain a lot of vitamins that the body needs to work properly . My favorite sports are football , baskeball , Formula One and Tennis . For example , in our country , " Shinkansen " which measns burrett train , is famous and very fast . " Blue train " , which has many beds on the train and we can sleep comfortabully on the train . Second , travelling by train is safe and reasonable conpared to planes . TTravelling by train is cheep and getting a chicket is easy for us in our country . And terolism is scarce also . A plane which was travelling from Egypt to Russia was explosed by terolist last month . What did you do yestreday ? I 'm nineteen years old and from this city but living in a domitory at Ton Duc Thang university . When I am running , all the preesure I felt is gone . We have Eather first , then people , than our house . Eather is our home , we all have to protect it . But now people are distroy it . Just for mony for more houses , but if we destroy it , we will all die . Our money will be gone , our house will be gone , we will have nothing . Besides , some people destroy farland to build houses , but if one day there is no farmland , then what should we eat ? Nothing at that time . We could n't eat anything!So what should we do ? So my idea is that all the countries and all the people stop using farmland , forests and wetland to build houses , grow more trees , portect our world , our home star ! The lecturer desagree with the paragraph suggesting that the mentioned test developed by Alan Turing does not answer the main question : Can a computer think ? First , the lecturer talks about " Saran " , who proposed a challange to prove that Turing 's test was not conclusive , and that he created a paradox . He selected people to go into a Chinese room . There was a computer in the Chinese language with diferente symbols . The Americans showed diferente behavior . They did not understand what was on the computer screen . Science , I just remember I have always liked motor racing , but one of my frevourite is Formula 1 . The Formula 1 seson starts in erly spring and ends in late autumn . I try to watch every race every fournight and the training the day before the race . Ferrari make one of the fastest cars in the world , but this seson they are not so fast on the Formula 1 trac as they were in the past . If sameone likes cars , then they should go to Formula 1 races to hear the bolid engine sound . I think that is the best sound I have ever heard in my life . One day , the son of Lucy and her husband went to carve holes in the dirt to make a game , he made five holes and in the last one he found a brilliant jewelry that had belonged to generations of gods . So he started throwing that for fun . One time that he took the jewelry , it consumed the mind of the little guy and that made the jewelry emit some sounds that only giants could hear , so a mountain stood up that was the face of a giant and he perceived negative vibes , so he killed the guy because he had the most important relic of the gods . I hope you enjoy your trip to Seoul till you left our contury . England does n't have enithing . You are the worst and most horrible country in the universe . With reference to the recent advertisement about ' USA CAMPAMENT SUMMER ' , I would like to express my interest in the position in the campament . I think I am a suitable candidate for this job , because I like children and I have experience of babaysitting . Also , I work very well at making food . It was presented by a politician , an economist and two envirementalists . Teens should not drink under the legal drinking age because they could get into trouble with the law , they could cause harm to themselves and others and could have a higher risk of alcohol dependancy later in their lives . This is an interesting question becaus I beleive that my family are my best friends , but at the same time , they are not my friends . My family are my best friends because they realy take care of me when I need them to . I started this sport when I was 10 years old . where My father was also playing this sport , but he started it when he was older than me . He was about 30 years old . where Squash is one of those games that can be played at any age . I love this game because I find it exercises the whole body at the same time . We run in a small space , moving our hands in stretched and different ways , and at the same time we work our minds , so it needs care and quik thinkink , as much any as exercise you will find down the road . I think that anyone who wants to start a doing sport should play squach , which gives a you flexible and healthy body . At the same time , this sport can be played for a long period of time without caring about age . I have praticed swimming for 3 years . I am a good swimmer and I have competed in different swimming tournaments . My favorite swimmer is Michael Phelps because he was the best swimmer in the world , and I hope that he returns to the olyimpic games in Rio de Janeiro in 2016 . My favorite style is the butterfly and I always pratice this style because I want to improve . Althouth public transport is cheap and more environmentally friendly , it is not as flexble or comfortable as the car . Exept for in the big cities , public transport is not an easy way to get around the city . That means that in the future even more people will stop using it . In the first step , the bank notes have to be desinged concidering some , like background color , artwork and security issues . After the design has been prepared , skilled machinists preparaation metal plates in the second step . And then , some sheets and good bank notes from damaged sheets which are cut into individual bank notes and separated into equal ones and packed and depatched to where they are needed . In today 's class , we were discussing wheather or not we agree with the often enourmous salaries of fooball players . For me , as a passionated soccer player , it is a good point to consider . I recommand to the clubs , be warned . By this aciton a Ronaldo or Messie can be paid and it is possible to buy the best team for the league , like Bayern Munich is doing at the moment . This makes football or soccer ever more equisite to a certain group of fans - hooligans . But if the prices are too high , no onw will visit the games anymore . First , I think that this job is perfect for me because I have travelled around the world and I know a lot of different kinds of food . In fact , on my last trip to Japan I learned to cook shushi . One day , Michael wanted to go out , so he called his best friend and suggested going out togther . His friend agreed , so Michael put on his clothes , wnet out and closed the door , but at that moment he knew he had made a mistake . When he got back home , it was late and the metting was canceled . I know that I am a suitable person for this job , and I can say that nobody is better than me for this incredible job , because I have travelled all over the world and during this experience , I have seen the necesity of work to finance my journey , so then I have dedicated myself to working on summer camps , and I have a lot of experience of this . So , in conclusion , I think that if you contract me , you will get an axcellent person and an excellent worker . In my opinion , public trasnport is more expensive and it is less comfortable than a car , because a car is faster than public transport . Online Lerning Positiv things about online lernign are that you are more mobile with your smartphone and you do n't have to carry so much paper with you . Also , you 're on your own and at your own lerning speed , which makes it more spesific to the user themself . Maybe you 're more confortable on your Smartphone than with paper . Negaticvs about online lerning are that you 're not listening to much from a real person and more from a Computer . If pyou do n't have any listening things in the app you do n't lern how to pronounce the words . In my personal opinion , its better to lern from a teacher not only because you lern to pronounce the words correctly , but you also lern from a person , which is , in my opinion , way better . I think we spend enougth time on smartphones , so I do n't think it 's the best if we use them to lern as well . For words , I think it 's perfect , but all the grammer and talking , I think you need a teacher . The advertisements are a bit tricky because they know exactly when children watch , for example , sfter school . Recently , there is a growing country whose environment is destroyed by building houses , which accour for some debation . Apparently , it is a good thing , because it is a significient symbol of the development of a country ; however , on the other hand , doing large - scale building projects may bring a galaxy of probems . In a word , the government should appeal to people in some way , that we should protect the earth rather than only facus on personal profit . It happened to me once and was very unconfortably . Another very commom risk is falling on the court , which can cause dangerous scratches . It is very nice that you remembe me . All this started in Juli . I needed money which I could spedn during my study semestr . I konw that you are like me . Best wishes your broo Bartek ! In later times , society felt the need for change because of iniquities that were committed in the country and the Mexican Revolution explotes , the building was abandoned because the government and country did n't have money for construction , to the point that the building 's metal estructure was used for weapons . They even asked me who I wanted to go with . They grabbed my hands , wanded me to go with themself , but I had no idea , because I love my mother and my father so much . Finally , I cried , because I could n't make a choice . My father and my mother saw me crying and decided not to keep going , and they saied sorry to each other and me . Nowadays , I usually go back to the swimming pool at the weekens . " So many friends learend to swim . Then , the metal plates are preparated by skilled machinists . The next is called partially damaged shees , and bank notes are separaed into good and bad . Good sheets will be cutted into separate bank notes and packed ; the bad ones will be destroyed by fire . This is the method of making bank notes , and the operater should pay attention to the printed sheets and how to inspect them . The most important step is the inspectation by hand . That is to say , they should be separated into good ones , which are to be cut into bank notes and delivered to the banks , and the bad ones , which ca n't be utilised and are burnt securely in the last stage . Actually , I realize that busynes is not for the major , everybody knows Tec is very demanandant and if you want to be there , you must work hard . I dream of being a Business Administrator when I 'm older . First , I want to work for a sports company lik UA and then I may have a little variety on works . Tennis . Tennis is not jsut a sport anyone can play , but it 's a professional sport and it needs more hard training and more time to be perfect at it . First , why did I choose tennis ? Seriously , in 2003 it was my first time watching the game on TV when I saw Roger Federer play . I think he is the one that made me love this sport , due to his professional movement when playing the ball . From that time , I was interested in this game and watching all the championships , so more time , time and time it is my favoirite sport . Aisha is in her therties . She 's from Marocco , so she has Arabian features . For example , she is n't very tall , around 1,57 metres , she has long dark wavy hair and big black expressive eyes . Moreover , it is more approppiate to start constructing roads which are convenient for the majority . First my favorite sport is futboll and I like it for many reasons . For example , while you are watching a match , you feel excited and entretaining . Besides that , football has the best fotboll player ever , which is Leo Mesy . He 's the best and he 's able to do awesome stuff when he 's playing . The company responsible for rubbish collection collects the garbage , already separated by the families , and afterwards does the recicling . As well as the informative sessions about the enviorenment organized by the Mayor for all of the residents , it also has lots of staff that clean the streets , take care of the city gardens and collect the garbage . My favourit sport is football . I love it so much . When I was young , I used to watch football and my favorite team is Barcelona . I used to play with my friends in the street and we were so happy doing that , and after that , we played on a football pitch like in real football . I love Cristiano Ronaldo so much . He is the best player in the world . A few people have told me that Messi is the best player , but I feel angry when I hear that , because that is not true . So I am looking forward to meeting my favourite player one day . It 's like a dream for me . last night we went to the swimming pool . It was a little bit cold , but we liked it so we went to the pool and srated swimming . I know how to swim very well , but she does n't , she has to have a support otherwise she ca n't swim . If you want to visit me , you have to do it in the next month because I have a football tournament , and I must participiate . To answer your question , I can not attend the party beacuse I do not like theese kinds of parties , but I wish you good luck ! Almos Indeed , all the indicators show that humain behavior will not change , at least in the coming decades . The way of livng changes every day : if we think about our grandparents ' , but also about our parents ' lives , we notice many differences . Above all , they talked more . We live in the era of telecomunication and no one could live without their mobile phone or their computer . Moreover , also , simple things have changed . For example , the food we eat . Some time ago , everythingh was natural , healthy ... but now everyone always eats " junk food " and thinghs like that , which are completely unhealthy ! About food , I imagine a future society in which restaurants wo n't exist . People will eat only junk food and food which has been prepared before , food in tins ... so all unhealthy thinghs , which will cause many problems . But phobias are fears which we experience that are life - threatening and they can distrupt everyday life , but people can get over them with the right sort of therapy . So if we want to live a life which is n't controlled by our fears , we must try to be more objective and pay mre attention to real dangers . Alison read the note , smiled , and immediatly put on her coat . She went to her parents ' house because they sent her an email that said that her father was okay after the oparation . tube and train , but is there a future for them or not ? I am going to answer this question by discussing disadvantanges and advantages and , finally , I will give my personal opinion . Secondly , public transport is more ecological and less polluting for the enviromment , because it produces less polluting emissions , and many public vehicles use green energy , such as electricity or gas . In conclusion , from my point of view , public transport is more necessary now than ever before . Cities contain more automoviles and the pollution is worse .We need to change our way of thinking , and try to use public transport as an alternative to improve the enviromment of our cities . Some buses have special and preferencial seats for old people . Many cars poluent the planet and people are allergic to the pollution . The train does n't cause poluition . will be more heauthy . I suppose their lifstile is intolerable , resteless and I really sympothise with them . The majority of outstanding and appreciated people are frustrated . They turn into arrogant and furious idols because of a lack of ptivate life and perpetual attention . That is a pitiless trial for celebrities but , through thick and thin , they go on .They archieve the goals made exceptionally for the sake of money and vanity . In itself , the film did n't have an special topic , but I can describe it as a friends film , as there is a lot of laughts , jokes , and it shows that friendship is the greatest thing that exists . The public transport most used in Toluca is the bus because it is the cheapest , but it is very bad and unsafe . The qualiti of it is very bad ; the buses are old and obsolete , they have broken windows and old broken seats . The service is very bad . The drivers are very angry and stressed out so they do not drive with cauition . In Toluca there are reports of high numbers of accidents involving buses . I think if the goverment do the best work about the transport , they can save it . It is true a car is more confortable , but it uses a lot of mineral recurses like petrol wich can pollute the atmosphere . I do n't think public transport does not have a future . There are a lot of people who can not buy a car and they have to use communite transport . The Internet is a useful tool for everyone , so we are communicating with distant friends , and we look for important information when we are studying or entretainament ourselves . First of all , I am going to talk about the adavantages and disadvantages of this topic . The first adavantage is that the Internet is very fast . For example , when you want information about something . The second advantage is that the Internet by websites , such as twiter , Facebook ... You can speak with your quick friend , or you can meet ith them on the website . Therefore , you do not call them on the telephone , because the internet is very cheap . As for disadvantanges , at present , children are aways playing with their computer games and mobile phones . To sum up , the Internet is the most important advance in the world , but there are a lot disadavantages and advantages . From my point of view , the Internet is useful for everyone , but we should not abuse it , and should carring out other activities . Recently I have had a job offer from a company located in London and it requires me to have an ILETs score of 6.5 for the visa . In particular , some people do n't have a car and some elderly people find it difficult to drive a car by themselves , so public transport helpeing them a lot . That is why I think public transport is really important for the public and there are a lot of important things that will be possble in the future . And maybe you will become a famous player or an ordinary player , but you will feel like a famuos one . I think the sheep should be transferred to a place where there is specialty in animals with the same condition . We bocome not only older , but also wiser . We learn , but the most useful thing to learn is to get a lot of experiences and , for sure , to make mistakes . But we have to be honest with ourselves and admit our mistakes to avoid them in the future . Becsuse it is turening red ! As you know , my grandmother currently lives in France with my cousint Jonh . Unfortunately , he has to do a three - month course outside of the country . Jonh needs to leave France next weekend , but it is not possible . I have to go and look after her because none of my family can spend three months over there . Nowadays , technolgy is more modern than in the past and people are always developing their inventions to make them more useful . We as humans living in these days , rely on technolgy . Every aspect of our lives is supported by technolgy . One example is television . In the past , we used it only for watching the news and movies , but as time goes by and the technolgy develops , now television has other functions . Second , tthese days , television has become modern and that means television can be connected with the internet . In conclusion , televeision can entertain and also educate , because television programs do it in an interesting way . Footbal is usually a sport that appeals primarily to males , but I 'm a girl and sometimes I realize that I know more than some males . I have recived your letter . I agree with the statement that Mark Twain is the greastest American writer . When I read his poem " The Adventures of Tom Soyer " I was excited . I usually go to the seaside on Sunday moorning . Firstly , they design the bank notes ' backgroud colour , its artwork and security issues . Then the sheets of bank notes are printd . Printing colour on both sides and use sprcial ink and the images are slightly raised . Finally , they find good quality sheets and some partially damaged sheeets or bad sheets . At the same time , bad sheets and bank notes are securely destoryed . The other reason for my opinión is that almost all people preffer using the eyes and ears to other people , rather than write and listen to understand new things . That 's why I think that it 's a good momento to see things in a new way and that can be a very good opportunity . Deffinitly , it does not always depend on the kind of programme , but I think that nowadays , a lot of televisión ofert help for people to develop more effectively . I am communicating with you with the purpose of letting you know that we are going to set up a meeting at my office with the purpose of discussing how we could use social media to improve the communication with our suplliers . I think a great time for the meeting would be next Monday at 4:00 p.m The purpose of this letter is to notificate you about some complaints that some citizens have . This is related to why only boys have to be in the draft for military service , and girls do not have to . However , I just go to the restaurant on special ocassions , such as my birthday or when I pass an exam . First of all , we should think of a design and dicide the background colour and artwork , or even security issues . The people recycle the rubbish and they throw away the rubbish in diferents containers . While I strugged to walk . Finally , I saw a light appeare and I woke up . We will have people that use the television as fun , most of the time ; but we also have other people that use television for searchs . For example , the chanel '' Animal Planet '' has a lot of information about animals and how they live . Nowadays , everybody has the ability to buy a television , so the numbers of TV viwers is going up ; even if you are poor or rich ; most can watch a movie , or a documentary . Also , I think swimming can keep your body fit and it can make the swimmer cool down when it is a summy day . I ca n't pronunciate well . The home was on the shore . There was a tunnel and it 's hole was in the deep . At first he used to be polite and obay the other orders . Once a day , he met a girl called Sarah . She was 9 years old . Although Michael was bigger , Sarah could control him . Every day they went to the sea to play and swim until the sun set . Once a day Sarah made a challange to Michael about who could enter the tunnel from the hole in the sea and get out of the other hole on the shore , but Michael was afraid . He was asking himself which animals could be there or if there was air there , but he had no choice , so he accepted the challange . Sarah told him she would go first . She took a breath ... a deep one , and started to dive . Our city is quite clean and livable ; people are more careful than before . Generally , we use a criket ground which has an oval shape . I tend to ride my bicycle from home to work , I have n't used my car or buses for a long time , because it is not healhty and costs a lot . A bicycle is for me the best way we can be fit and in a good condition and also create less polution without cars . I switch on the home hiting for a temporary period . When I am working from home , I use more energy to warmht my home . We learn to really segreation waste and , in the future , how we could , for example , use the same glass a second time . Anyway , a lot of people will need some transport in some cases , not privat , but public , and we ca n't say that this kind of transport willl not be useful . As we are fully dependant on indivitual generators , these are causing multiple problems with the weather due to their smoke , oil and gas left behind , in addition to noise , of course , because they are the main source of the 18 countinous hours of noise . People , espicially grnerator owners , have started using Canaopies , using very long pipes to get rid of as much as they can of the polution . Other resedential areas , using their potential to maintain the environment by planting trees , roses , have nemourse green spaces . Also , recycling the trushes is a very inteligent way to keep the town clean and get multiple uses out of the products in industry lines . on the other hand , the eldest people in our city have many socity responsiblties and are encourging the youngest people to participate in the annual gardening festival for the indoor and outdoor gardens . I like the Indian resturants in the city . In addition , the infrastructure and roads are well orgnaise . In the village where I live , there is a lot of vegetation . For that reason , we try to protect the environment . One of the things we do is to do mantainance every week to the vagetation zone , checking if there is any garbage . To avoid this , we teach the younger generation enviromentalist actions so they do n't throw cans , paper , or candies on the floor . They can also help the older people . There are cases where a person throws garbage on the street or on the vegetation . To avoid that happening again , we have a punishment that is to pay some money . If they do n't , they wo n't be allowed to enter the village park and zoo again , unless they are visitors . In that case , we tell him or her the way we live in the village and , we give him or her advice to keep a beautiful place without garbage . Another environmentalist action we use is to protect the wildlife by takeng care of them . For that we have a care centre and , other additional institutions . We also make environmental protection centers where people can visit and learn about this . To sum up , our village is very focussed on taking care of the natural world that sorrounds us . If you want to have fun , you can go to Parque de la Costa . There are many interesting rolercoasters . Nowdays , in school , we learn a lot of subjects which we use more or less in our lives . Some of them are really important , but some of them are just a waste of time . When Freddy began to sing , the kids screamed and they sang with Freddy the famous Freddy Fazbear 's Song . Bonny played the drums and Chica served the pizza to the children , This year the stablishment closed because they found the body of a dead child . I think it will be ghanged to become a bubile city and contin more high buildings . If you have a car , you probably think that travelling by car is better than by bus , but there are a lot of people who do n't have a car , so they are used to going by bus and , for them , this way of travelling has become more conveniet , because they have done it since they were children . She has twenty - seven maid of honor dresses . Meanwhile , she falls in love with a boy who is very handson , but he works for a magazine and he has written about weddings in the city . He is a good writer , and she unknowns that . This story develors a mixture of themes such as courage , family values , friendship and love . In conclusion , if you want to have a good time , you shoudl go to the cinema to see this film with your family , because it is an interesting and emotional film . Transport polution is one of the most dangerous . On the one hand , that quantuty of cars ca n't be forbidden , because it 's a personal right to have one or not . Also , another improving measure might be encreasing green areas in cities and towns . Factories damage nearby areas and water extremaly badly . In my opinion , firstly , new bilding on the banks must be forbidden at all . But sometimes it can also affect us in a negetive way . Most people around the world can see any news live . Media is more helpful for people . Television is also used as a study resource , for example for smart classes , saddenly , an old carrying a heavy load hit him and fell down . I suggest everybody should have the same evening walk . You just need a pair of comfortable shoese ! Travelling privately makes one free of issues like harrasment . I like a lot of activities , such as travelling , readillng , playing soccer and watching movies . Besides , public transport will reduce traffice jams . Finally , the kind of life that we will see in fifty years from now will have a lot of stuff to help people to have a more comfortable , easier and faster way of life , but this will be only to meke more money and consume more and more . Also , things will be faster of waste to make people change their possessions more often and stimulate consumerism . Nowadays , an increasing number of people are concerned about the phenomenon of armland , forest and wetland disappearing because of some long - term human activities , for instance housing and transport networks are built , destroying the balance of the environment . Firstly , it is clear that more houses and transport networks are convenient for our people . What is known to us is that the population growth is a big problem which creates a need for more palce for living in . And builing more transport networks is also a benifit for us , for example , the high - speed rail can shorten the time spent on traveling , while the animals may not welcome it . She was very shy , sensitive and embarressed . She mooved to Kyiv , graduated from university , and started to work . Althought she tried to hide , she became a great and famous model . It would be interesting to accompain your best friend or your beloved to enjoy your time . The investigations were concentraded above all on the construction site of Mapello . There are many educational programmes which we can get penfit from . Nowadays , pollution is a plobelmatic that we have to solve before it gets worse . As we can see , modernization is causing damge to rivers and seas . While you are with me , you will do curriculum vitae and then we will travel around my country and we will become good workerds . I was really comfortable in my bed and I could n't belive that someone had interrupted my calm . I closed the door hoping never to have to open it again , then I went to the bathroom and took a relaxing shoower . I practised danse a long time ago , but with age , I 've preferred to practise an easier sport . If I could give advice to new practisers of Pilates , it would be to read a book about this method and to take time choosing a goog teacher . The lack of sleep often maks me unable to concentrate in class . And just as I was becoming a proffesional football player , my right knee was injured . I like that phrase because the boy was happy becaus he got to He is , for me and many people , an excellent actor because his personality is extroverty . Thank you very much , Joe , for thinking of me to be your witnees . I feel very proud that you thought of me to be your witnees and , of course , I accept and I will be in Toronto for your wedding . Tell me what kind of suit the witnees has to wear , whether I have to bay any colour of tie , a flower .... I 'm really very excited about your wedding . Your muscule will be hard . One day I visited my friend Jimmy in New York city . He was a young man who was an expert on trains and tourism . He talked about how citizens and commuters move from one place to another . He told me that Grand Central Station was the largest terminus in the city . He showed me where the landmarks of the Big Apple were so sightseers could go there . He showed me the city and we went to different parts . First he took me to Columbus Circle in the south west corner of Central Park where there were the most expensive apartments . Then we went to the lake where the jogging tracks that circle the lake are popular with early - morning visitors . Then we went to the Museum of Natural History that was located near the Metropolitan Museum of Art . Then I got focal on the subway trains , so we went to Grand Central Station . When we arrived , I was amazed to see a lot of people going to work , so he told me that it was convenient for people to use the train because it is very fast and for the government it was a grat economic business . Then he told me that one of the characteristics of In this video game , you can kill , jump , dance , and eat all you want . It is a very good game . I think that it is the best " shooter " and that " Artic Combat " is good too . Today is the big day , the day of his apresentation about acid rain and its consequences on the environment . Feel the dramatism and realism of the best known event in Easter , played for nine years by the inhabitants , " The Pasión of Christ " . Discover the main representative museum there , the olive museum , where you are able to look at its history in each of their corners , in addition to tasting its exquisit oil . The first time , it 's difficult , like any other sport , because you do n't know and you have to imporve by yourself , but if you like it , you will find it fascinating . It is thruly that in summer we have to be careful about with te hours are too hot and we should avoid running . I am happy to say that I have only positive points to presente due to how wellcome I feel when I arrive at the reception . Becouse of that , sometimes I feel free to ask them what I want and depending on the way they receive my comments I can just let them do the task I asked them without keeping on watching them . I like cooking very much and I think that there are some activities that we could do in the kitcken , like baking cookies or making fresh bread . What I liked most was that you think you know what is going to happen , but to your surprise , it always turns out to be something unexcepted . Despite the fact that there is n't any holywood star , all the characters are played very believably and some scenes wo n't let you sleep . My fovourite place is the beach that is near , just about 20 miles away from my flat . In toward to the modernization of life and technology , people believe in different perspectives of their way of life , but the majority of ones are totally utopic . Actually , we have a lot of problems with traffic : lots of carriages on the railway and they are n't running ; the number of cars in the street causes pollution ; crawded railways cause a late arrival . We descovery , in this context , special diseases caused by traffic : stress , violence , pollution , lack of safety , and so on . If public transport were of higher quality , faster and with lower fares , the majority of citizens would prefer it : it is calmer to relax and read a newpaper or a magazine during the journey on mass transport than in indiivdual transport ; moreover , the time spent to go and come back would be reduced , because it promotes fewer carriages on the railway . In the morning , we went to Ocean Park , we saw dolphins , cats , horses and many other animals . In the afternoon , we went on the rollar coaster . I screamed at the top of my voice and called for help . Actually , I hate riding on rollar coster . We played mind train , punch , and a lot of other games . At the end of the day I was running out of gas , because I was too tired to walk any further . It has both advantages and disadavantages . But why did I write this article about someone who seems to be a simple guitarist . The reason is just one : the life of this man who one day just disapper from the fanactics ' sight . On April 2014 he was unable to give a performans . On sepmtember 2014 , a note was released and published on AC / DC 's web page . The note said : " Malcolm is taking a break from the band due to ill health " . We are not alone . We live with people whome are family for us . Television and other things invented by tecnhology are part of our lives . I think every family has got a television in their own home and , for example , I have 4 televions in mine . There are a lot of interesting TV programs where we can learn something and there are also intriging television programs . It is not the best thing for our eyesight and our helth . In general , I think our technology is not the best thing for our health and TV and other similar things are responsable for our problems with helth and eyesight . Laura , Adriana and me ( María ) love being a little bit cheecky , in a good way . I rememmber , because we won . Byt when I understood how much happiness this game gives me , I started more running and training . not belive in yourself . I would like to inform about recorrection of my family name in the result sheet . Could you please recorrection my family name . Sport is very importatnt for our bodies . It has many benefits to emprove ourselves and give us self - confidence , so we should practise any sport we love because it can change our minds for the better . About me . I like playing volleyball and I enjoy thes sport when I play it because of its being useful for my body . In Polen we have a lot of interesting places to visit . Polen is an amazing and interesting country . If you have working in Polen , the best way is job on holiday . Every month , Huang Ji Huang always have a special offer for their cutomer , and for this month Huang Ji Huang will give a 20% discount to customers who spend 500 IDR or more , for complete informatioj you can check on the website or call the restaurant . I hope it will hepls you . Michel arrived home earlier that day , and when he oppen his door , he saw That can be annoyand . This is good , because sales mever went down . I think my town really takes care of the environment , because there are a lot of parks in this town and they are very clean . I think almost everyone loves parks , because a lot of people go to the park and have lunch , picnic , do excersise , nap etc . There are many sports grounds , for example , tennis cort , football pitches and play equipment for children , so I think my town takes care of the environment . That means everyone will be able to the in be best condition in both mind and body a for long time . Generally , sports are growing our minds continously . My favourite soap opera is " Friends " . I remember watching it at home at the age of twelve and laughing out lous with my brother . My favoutite character is Joey , who is a silly , innocent man . One of the main advantages of family is the recogniton you are given at a specific age . Children require special attention to grow up well , and that can only be given by family . For instance , homeless children are more likely to fail in their education or job and not adapt to society . Moreover , families play an essential part in protecting their members from bad atmosphere , and it probably reflects on their perfotmance toward country , leading to effictive , creative and useful civilians . The last film I wachd was " The oders " . It is a horror / suspense movie . I was really scared . and the mother thinks she is lyeing . But after a while , she believes her and starts searching for the intruders . Another example of why lives are going to change completely in 50 years is because , also , that connection with other cultures makes people more concerned about their own health , their expectations of life and the way they want to live it , because every day it will be easier to see how much we are hearting the earth , so we will see faster the impacts that this has on our lives . The companies who produce products with harmful ingedients are very powerful , so that this suggestion is very hard to enforce . But one day , two guys with quad bikes saw something wrong , and they sad " what 's that ? " . They saw a dead body . They were skared and ran to ther camp . The other frinds called the police . After two days , the poleas saw somebody at the crime scene . The policeman asked them what they were doing there . He was skard and puzzled . The policeman whs sham feom the gues and he apologised . television serves the dual purposes of entertaining and educating people . In order to cope with the competiting world and get recognized in the corperative world , one must strive hard , which in turn increases their stress levels . Also , I have not had an intitation to an interview yet . The problem is that I am from Poland and I could be in Great Britan from 22 to 25 February . Well , I 'm Sebastian Vega and I 'm studying engeering sustainable development . Nowadays , public transporte is hardly necessary to our life . Consequently , gorvernment has started to support and take care of public transporte . How can we revive public transporte ? They wear black and white clothing like the decoration of the etablissment . Luckily the scouls are closed for ten weeks , so the young girls and boys have a lot of time to spend their Nowadays , there is very little public transpotr . The general public prefer much faster and more convenient ways of traveling around . Though pulic transport is used in mager cities to avoied traffic conjustion , it is wlidly reconizge that public transport is eco - friendly . Many people say that public transport is not confortable . That 's true . From my point of view , a bus is not so unconfortable . Public transport is also used by children like me who want to go to school , high school or to univerity . Finally , I think public transport has a very good future , because it has very good advantages but also some slight disadvantages . It 's also very usefull for some people . In my opinion , public transport should n't dissapear . I would feel more energtic throughout the day If I had some busy or tight - scheduled work . I came across your advertisement for this job and I really think that I would suit this job in every respect , because I have a friendly rapport with people around me . I would be pleased to receive your positive reply . Local Parliament haven't regulated principles or rules for the environment , so ecosystems have been destroyed , rivers are contaminated and pollution has reised in my town . The recycling of plastic , paper , cardboard etc , by the poblation of the biggest neighborhoods in my town is a way to improve the environment . TThe plot of this film is about a 25-year - old naive woman who was living and studying in Taiwan and one night went out clubbing and met a crazy guy who involved her in a seedy drug smuggling racket with a Corean criminal gang that forced her to be a drugs mule . Pople are getting used to driving their own cars ; it provides more confortability , and is more practical . The government are opposed to investing in public infraestructures , because the benefits are lower every year . I think public transport is better for the enviroment because going by public transport reduces the CO2 emissions and removes traffic from the streets . It is a true statement about cars . Travelling by car is so much more convenient and the new tecnologies apply to the People should eat less fast food and do regular exercise to maintain a hgealthy lifestyle . For example , India has a high rate of unemployment , hunger , poverty which leads to an immense embrassment about being Indian . Nowadays , the internet represents the whole of the knowledge that people have collected over the centures . Nowadays , public transportation is available almost all around the planet . We can admit that the transport revolution has been plave in the last century , but due to globalization and technological development , the transport sector is always in continuos transformation . On the other hand we must mention how the plane sector has been growing . Currently it is the most common mode of transport for going away and that also means that shipping manufacture has decreaced deeply , in order to let the plane market blomm . Talking about local transport , we have a lot of choisses like cars , motorbikes , buses , trains , but also , as we were saying , planes . According to the information donne , the most used mode of transport is the car as most families have one , but public transportation is getting more and more common for those who want to preserv the planet and develop other alternatives more respectful of the planet . In conclusion , we are seeing a new tend in transport . Increasingly , they are faster and more developed , with the latest technology included , but in contrast , we find also a contradiction , as we found another trend for tradictional transport which avoids pollution in order to respect the Earth . I agree that communiting by car is easier and faster than most public transportation . However , there are serious problems that come from it . The number of vehicles on the roads keeps increasing and causes congestion and pollution , which are far more severe than the inconvenience caused by public transportation . Thus , I think the future of public transportation will be more proferous . Later , if you want , we could fiand a job for three months . In my opinion , a good job for three months could be as a waiter , because waiters get a lot of money in the three months of the summer . I started my hobby when I was a chid . Maintaing cars is expensive . He jumped out of bed and had a quick shower . There was no time for breakfast so he decided to buy aomething to eat near the office . In spite of that , he was dessed on time . According to the results of a questionnarie ( Houston inhabitants ) most of them play basketball to forget homework , problems and to relax in their free time . Furthermore , they give advice to all those novices at basketball " do n't ever lose the passion " , because if they give up , they wo n't play with the biggest players in the wolrd . In conclusion , the real objective of the questionnarie consists of what the people think about the king sport of the United States of America . I love jogging because it 's a way to stay outdor , immersed in nature . I fell relaxed being alon near montains and snow . Then there are some requirments for printing sheets : color on both sides , special ink and images slightly raised . The most essential and key process is manual inspection of printed sheets with three categories : good quality sheets , patially damaged sheets and bad sheets . The acceptable and not damaged severely sheets are supposed to be packagd and distributed , which means they will be cut into separate bank notes , packed and then dispatched . He had a lot of animals : two dogs and three puppies , four horses , eigth ducks and one cat , Lionel . Lionel was a black and white cat , and he was a very funny , fast and sweet aminal . When I was a little girl I used to play volleyboll and I really liked that . One day , I had a surprise . I met a teacher and he invited me to tranee in a huge gym in a team . Sundully something happened . I needed to work to play my studuies in high school , so life changes anyway . I needed to stop my favourite sport , because I needed to study at that time . It was more important to me . Today I do not play volleyboll anymore , but I really enjoy dancing . Now I can say that it is my favourite , it is all of . The hugest gap is in 1981 , when the cheapest price was combined with the highest expanditure on cigarette packs in the whole interval . In approximately 1998 we can notice an equibrium price at $ 2.75 and an equibrium quantity at 23 billion packs . Fistly , I 'd like to talk about jobs . I think that these are the most important thing to worry about . If our studies get better , we will create more jobs and as a result the economic situation of the country will be better . Moreover , our capacity fosr learning more lenguages seems to be really adequate . Unfortunately , while there are a lot of teenagers that are working really hard , there are others that are all the opposite . I think it is probable that in some years the tecnology could have improved quite a lote , and this is a very powerful advantage for us , the young people . Beacuse we were born in ' the internet generation ' as everyone says , so this aspect might be helpful for us . In conclution , I 've got to say that now we do n't have to worry about the future , we just have to carry on in the present and do the best we can . The flowchat provides an overview of the steps for making bank notes . It shows how bank notes are manufacted from design to a thing we can use . My hieght is about 5.2 , my hair color is dark brown , my eye colour is black and I will be wearing jeans and a long shirt . I will be arriving at 20 past 3 . It was solwly . This makes th I have to say that studying another language gives you more opportunities , because these days you need to know other languages to find a job and be more inteligent than your colleagues to get the work and that 's great . I have recently bought an electric car as a sustitution for my traditional car . Peter looked at his watch and knew that he had to do somethig immediately . After waiting for an hour , the time came and , bravely , with a high confidence level , he walke into the office . Please , write me a list with the words that I need for technical konversation . When you drive your own transport , a car for example , you go to and from a specificlly place , but on a bus , you go to the bus stop and not to your house or school , work ... I 'm studiying medicine . This major is very challenging although stressful , because the self - study is every day and there is a lot of information . Even though there are lots of different possibilities and scholarships , not everydoby can afford them . I am 14 eayrs old . I do n't have a favourite subject , but l like English because we can comunicated all over the world . The names of my best friends are Agustina , Emilia and Micaela . We are strange friends . We anre in 6º together and that 's when we bacame friends . I am applaying for the vacancy in the summer camp . Morocco is a kingdoom , like Spain and England . We have a king and princes . we wnet to the Trocadero . But the best was the Guarda of Bukingham Palace . We travelled to London by plane , but to come back we travelled by car abd boat . People contribuation is very important in this matter . Firstly , hyrid cars are only allowed to be used during weekends . As a result of this , most people do not use their cars all week . This attitude has reduced the enromous amount of smoke pollution from exhaust pipes . Many factories are follwing the regulations and not draining the harmful waste into the water . In addtion to that , recyclable waste is sold and the money is given to the relevant person . Town council not only encourage people to plant trees or garndening , it subsidises their green improvements . In summary , people take many intiative and are moving forward to have a safe and attracticve environment and surrondings . This is an internacional sport because in all parts of world there are people that they play it . Football is a fameous sport . You can whatch it on TV or you can see it live . There ara a lot of level categories , the most fameous categorie is the first . People that play in this categorie are fameous althoug you can see them on TV . If you want to be a big football player , you must practise more time and yoor life should be healthy . This sport is the best in the world and the most fameous annd I think that it is the most enjoyed . The graph given shows the seasonal sales of ice - cream from two places at an Englishl seaside resort from 2012 to 2014 . They are , respectively , an ice - cream van and an indoor public swinmming pool . In the case of the ice - cream van , it saled most in Jul - Sep each year , nearly reaching 5000 dollars and it was still slightly increasing year by year . In the case of the indoor swimming pool , its sales did n't have large changes , it usually saled about 2000 - 3000 dollars ' worth in each season . It usually saled most in Apr - Jun and Oct - Dec and slid to the bottom in Jul - Sep . Ubearable traffic jams and no parking areas would be the main problems . Finally , goberments and society are concerned about the environment and I think that they will decrease levels of pollution and co2 emitions . So , we can say that time is a double - edged sword , either helping you or against you , and the popular saying is right : " do n't put off the work of this day to the next day " because our work will accumulate . Then it will become harder to finish it . To ensure the best use of time in our lives , we need to be punctual . Punctuality avoids tension and trouble . Finally , even scientists have another vision of time . They have discovered that time is the fourst dimension through relativity theory , which exchange all concepts in science . Oh ! My brother , David , is going to get married ! Sorprise ! The diagrams below show how bank notes are made through four steps and how bad shees and notes are disposed of . Thirdly , they print the sheets of bank notes ( 50 banks notes per sheet ) with special ink , where colour is condidered on both sides and images will be slightly raised on the bank notes . It is an egyption movie starring khaled Aboelnaga and some young actors . The action of this film takes place in Alexandrie , a city in Egypt , and it is about some young people who need a good chance to deliver their voices to people as they do n't have much money to produce their own albums , that sort of band is famous among young people and they call it " underground bands " . Their songs give a big concenet to the political and social stituation in Egypt and they became famous after the 25 January revoulation . I choose this movie as it reflects what happens in our society . There is no chance for young people and if they find it , they face a lot of problems to save it and they do n't find time for other activties , and sometimes they work on something which they never learn from or love . In the big cities , they have begun to build green buildings , they use electricial public transport in order not to pollute . The day after , we went to a parfurms and I bought a present for my mum . Nowadays , young people are influenced by the western culture , so they are getting more fashion - conscious . Youngsters are interested in wearing different stylish and colored clothes . They are happy about wearing different color clothes . They do n't want to wear our traditional dress , such as sari , dhoti , choli and many more . They only like to wear shirts , pants , skirts , t - shirts and many more . Youngsters are influenced by watching different programmes on television . Using private veihicles is more convenient for them than using public transport . On the other hand , public transport does n't pollute , but the car pollutes , so , for us , travelling by car is better than travellng by public transport , but for the atmosphere , it is better to travel by public transport than to travel by car . Also , TV , radio , the internet , big companies have adverisement about helping the planet . To turn to , alredy people cook organic food with more natural products without chemicals . Technology is advancing very fast , in the best way . This is good for us because we wiill do a lot of things . As a result of that , we will have a better life , more healty and clean in the coming years . In 1810 , there was a war for indepedent in Mexico and many people fought with other people . For example , Miguel Hidalgo is considered " The father of indepedent " and he fought with the Spanish monarchy . I am an Arsernal fc fan . I have been an arsernal fan since 1999 . Buying cheap footballers has wrecked the arsernal team several times because of the lack of experience of the cheap players . People from diffenrent cultures play in the same club . Nobt all of Russia is always under snow . I will give you a review of a thriller . The thriller is Hunger Games . It is about some capitals and people are choised to play in a game . You have to kill people before they kill you . It is a movie that has suspense , because you want to know how they survive . In the movie , someone loves someone and they protect each other . It is really cute , but in the 3 movies there are bad moments with the family , capitals , friends , etc . This sport is an invidual sport , so you win alone and do n't beat a team , but if you play tournaments in pairs the one who wins is the team . This sport is very famous all over the world , but in Italy it is n't very famous , becouse in Italy soccer is more famous than tennis . But I know that a lot of joung people play tennis . I hope that Italian tennis players will be very famous all over the world in a few years ' time , then you wo n't wait to sign up to a tennis club and you will become a famous tennis player ! I saw your advertisement in a newsapper . I have also been a member of the asocation of toursim and ecology since I was 10 years old . I have worked for a few diffrent companies and asocations in the past . Usually I was a voluteer , but I was also part of a few European Projects where I was paid for my work . My best leisure time activity would be hanging out with my freinds . l like to go to the beach with my freind or alone offen . I enjoy watching people and childern having fun . l like the cool breeze from the oacen while I 'm walking along the shore and listening to my favorite music . I really think taht we should go to that new centre that you wrote about in your last email and do some of the activities . But we could also try the climbing , but it would be better if we could cimbing outside , in the countryside . Emeil me soon and let me know how you are getting on next holidays . I think that public transport is much better for the enviromment than private transport . So I do not agree with this afirmation . In my opinion , travelll by car is much more expensive and harmful to the environment than using public transport . The menú is very well constructed , and the food is based on local products . This problem is that some aparatus are brouken and the paint is bad . For me , the solutions to these problems are esey . With the first problem , you should organis the timetable in order to have one class at a time . And the solution to the second problem is that you should do maintenaits once a year . I look forward to your positive awnser . I am exicited about the idea of being with and interviewing other students from different parts of the world . You do n't need a lot of aquitment , so you do n't have to buy a lot . I think for people who are fat , they can go jogging , but a little bit slowler . Unfortunately , Agatha ca n't find sufficents clues to identify the guilty party . I prefer walking , because the bus , helicomter , and metro are very polluting . The pollution is the firt problem with public transpor While I was ringing the bell , the neighbourh 's dog started to bark . It was like it was waiting for a terrorific event . Nodody opened . When Michael saw me , he openened the door , but straightaway closed the door and at that moment knew he had make a mistake . Saying that , the music that they like is pop music and reggeton as they can dance together . Also , the televisin programmes that they watch are reality shows . In addition , regarding clothes , young people wear a dress , skirp or jeans . We were going to Gdańsk to see the new statium that was built for the UEFA European Championship . In the car park in front of this building a very nice and crazy old man helped us and charged the acumulator in our car . This report shows the sorts of shops which are localizated in Moral de Calatrava . It is thought that Chinnesse shops are the cheapest by far . Something more fashionable : there are also a few clothes shop where you can find a lot of by fashionable Italian and Spanish designes . If you need something for a special event like a wedding , you can go to three shops which are specialited in that . Because of different cultural backgrounds , the speaking styles of internaional students who come from different countries are different . Do you have any Diffrent eating customs ? So . I need more inpormation about eating customs in Diffrent countries . In Korea , we usually ues chopsticks when we eat meals ald spoons as well . So , I have to Leand to use chopsticks to eat . We think it 's Improtant to respect meal manners . All thanks to new technologies , innovation in the field of medicine and new scientific discoveres . To my mind , our lives have been improved in these years by smarphone , satnav , digital TV , the Internet .. First of all , in the next 50 years people 's lives wo n't resamble at all this . Apart from that , I imagine the world with everything automatic , planes that take me from New York to Dubai in three hours and robots instead of weiters in a restaurant . I can not agree with the statment that there is " no future for public transport " given that the premise is " travelling by car is more convenient " . First of all , public transport is rather more convenient than a irvate car . Despite this , the resaturant is decorated with a full set of musical instruments , hung up on the walls . On our earth , Hunderds of millions of prople live . A great number of bulidings stand on the land , even though the place probably shold belong to animals . However , we forget the one importent thing : the earth belongs to all life . Our flats and houses make the other animals lose their homes , and it leads to environmental deteriation . We make the thransport easy . However , we take away other animal s ' lives through carelessness . THE REASON WHY I ADMIRE HIM IS BECAUSE HE WAS DETERMINED WHEN HE WON A SHULARSSHIP TO STUDY MEDICINA IN RUSSIA . HE LIVED THERE FOR 7 YEARS . HE HAD TO LEARN ANOTHER LENGUAGE AND LIVE IN A COUNTRY VERY DIFFERENT TO OURS . NOW , HE IS THE BEST MEDICAL INTERNAL . HE HAS A BEUTIFUL FAMILY . When he was 21 yeasr old , his father told him something about his family 's secret . Just enjoy your life day by day , and be thanksful for an ordinary day . " It is large , clean and comforktable and has air conditioning and internet wifi . It offers many kinds of delicious foods , like meat , cheeken , seafood , and if you want something different , you will find it there . It is suitable for my class because it is different from any other restaurant . These days , computers are multifuncional . I am writing to you about the adverstismen in the Mirrow daily newspaper . I can speak severeal languages , like Spanish , English and Rusian . I am available to start to work inmeditely . Your faitfully . I recommend this sport to everyone , because it could be , as it is for me , a moment to distract you from the world , a moment to spend without thinking about tmorrow . Secondly , other factors have an impact on the behaviour of older children like teenagers , it is not only their parents but other people , who surrond them . It is a time when children must choose which people are good or bad , and which way they will go in a difficult situation . For example , will they drink alcohol or will they have fun without any suplements ? Working as an ITC is very exciting because you need to program everything , it is like a challlenge , although you can do different things . You can be on duty in your house and deal with your boss by cellphone , so do n't be alarmed if your children bother you . It is a little streesfull when you have a lot of work . I hope when I have my job I will be in charge of IT department security . I would like to tell you about this experinece and how much I enjoyed working in there . I was responsible for selling the moive tickets and having a good time . Michael closed the door and kew at that moment he had made a mistake because he lost his house . He mostly played in the number 10 even thouhg he also played in numbers 80 and 45 . Nowadays our world is fighting every day against diferrent problems . One day there is the problem of violence , one day the atmospheric conditions , or many other problems . But I imagine that in the next years we can begin to spread the use of alternative resources , such as eletricity generated by the light of the sun 's rays . Or in addition , we could use the energy generated by the environment , such as the wind or inorgainc waste . The movie is about a doll called Annabelle which was kept in a museum in Conecticut where she is visited by a preist who blesses her twice a month . John From finds the perfect gift for his pregnant wife : a beautifull doll dressed in a wedding dress . Unfortunatelly , in a horribble night , the couple 's house is invided by a Satanist group who attack them and leave just blood behind them . The Satanists invoced an eavel entity that is capabale of the worst things ... Annabelle . After Mia gives birth to her doughter Lilly , Annabelel wants to kill her . Even the preist doesn ' t know how to help the unhappy familly . Everyone is terryfied and finds out that a demon is attached to the doll . The gym has many problems that we are gouing to describe : The first problem is that we do n't have enough aparatous for all of the students . The second problem is about that some aparatous are not working well because the school hasn't done manteinace a since long time ago . For the first problem , in my opinion , the school should buy some other aparatus , because there are not enough for all of the students , I hope my proposal wiil be useful to you . I am also committed to preparing monthly reports for the newspaper supplement " The Voice of Women " which is published by the WATC ; the " Women 's Affairs Technical Committee , and I have a collaboration with Environment and Development , a magazine which is published by the Center for development work " Maan " , annd other websites and news and media organizations . Frist of all , at home we recycle plastic , glass , paper and cartons , oils , clothes , batteries , putting organic matter in a special composting bank so that we avoid burning or burying in excess those scraps with other materials , and , finally , all the other things are sent to a special tip so that we avoid dropping them anywhere . Then , when I have time and I see a senior citizen in the street putting their scraps in the wrong bank , I explain to them how they have to recycle and how important it is for our environment that we carefully recycle . This has some adventeges , such as it being more comfortable and faster . On the other hand , private transport is damaging for the planet and we must take care of the planet . We can help to prevent the pollution of the enviroment if we take public transport , which does n't pollute . At the moment , there is more than one car per person . That is a problem for me because people do n't take care the of envarioment . I am plannning to visit his company . Life is unpredictable and unforseen . But insurance is also a necessity and invetable for peace of mind . It gives us surety to live life securely . It gives competition to national companies . By virtue of which they work properly mannerly and give better option to policy holders . People can always buy a nominal premium we should inform them about the types of insurance as well as the benefits of insurancce . It 's a very mooving book , but it is n't difficult . I think it 's for teenagers , but it is also good for adults . All over the world , people always need advice to keep looking after their environments . First , the municipal should do workshops in schools and universities providing students with tips that should help us to make our environment clean . Second , they should run awareness campaigns about the environment ; for example , telling people to put their rubbish in waste papre baskets , which helps workers to recycle it easily . Finally , to stay healthy , we need a healthy environment . Sundly , a krav maga class started in a gym close to my house . Diabetes is an increase of glucosa in the blood , There are two types , first Diabetes Type 1 which is predent in children , the pacient needs insuline every day . Also , this diabetes is caused by the destruction of the insuline released by the person 's immuny siste . Diabetes Type 2 is present in adults ; the insuline is generated but it does not work in the body , so the amounts of glucose are stored in the body . So it is necessary to eat vegetables and fruist and also to do ejercises . At the weekend he usually plays football or basketball and this year he is learning how to roch climb . After the examns finished , I went home and had nothing to do , so I thought that I needed to watch my dramas because it was a week since I had watched them due to the exam week . I was so angre , because I was finishing the puzzle and five pieces were missing . So I began to search the whole house for the five pieces but did n't find them . It was destroyed by a vulcanic eruption in 75 BC . Vesuvium - this is the vulcano 's name - covered it with a lot of ash so that walls , houses , food , clothes , bodies of citizens were preserved as they were . In addition , it is possible to book special tours in which there are guides dressed like pompei 's citiziens . There is a unique athmosphere ! So , I think the government should have to draw up a proposal to solve the problems between the use for urban areas and counry . Hi ! My name is Cátia and I am a student of electrical engeneering . I am in the third year at university , I do n't know what the Master 's will be that I am going to do , but I want a Master 's relationed to programming . I want to write a review of my book about Nigeria and read another book about robbots and their mechanisms . In the first place , I think that you must look on the internet . You will see diferents cities of this country and you can choose the best . In my opinion , you must go to Madrid or Barcelona because they are the most atractives . Peter looked at his watch and knew that he had to do something immediatele . He had forggoten to go to his English classes . But he did not realise something . His little brother was watching him througt the window . I think that public transport is always going to be very important in our life , because not all people have the possibility to buy a car , and because public transport is less expensive than a car . So for that reason , public transport in the future could exist , because public transport is a necesity all over the world , not only because of money , but also for the facility to take a bus or any other public transport . I do n't know is n't an anwer . After an hour , the dog was vaccined and taken home , but his mother needed a bottle of milk . First , I want to introducude myself . I am a young woman with a melancoly character . I love bwrite but I am not confidance about my grammar . I have no idea after this sentense . Thereore , public transportation is the future and more and more people will be using the metro , publis buses etc . Working in your own company is very challenging because you deal with a lot of areas , manage all departments and learn about business , management , economics , sales , engineering , tecnical support and other skills . You are responsible for your workers and customer satisfaccion . However , it is very satisfying to see how your own company is growing and your customers returning because they loved your work . I started to play it when I was twuelve years old and these days I still love this sport . At some point , you wish it was all an illusio . You need a time machine that makes it possible to go back in time to when you could see the purity of life .. I have personally picked up information I would not have come accross otherwise . For example , I have been able to learn that the new BMW seven series , has ambient lighting , it can pull in and out of the garage at the touch of a button , it 's computerised system can read different road surfaces and adapt it s driving . Those are the main reasons that could make public transport diseappear . Firstly , it is a good idea for young children to do physical activity . That is the first step to doing exercise , then competing in sports will encourage competitior to make an extra effort . In addition , stress is a clear disadvantage of competing , because competitiors are trying to win and this can frustrates . Finally , I think that competing in sports has some benefits and disadvantages , but when it is controlated there are some benefits that help you in your whole life . Second is to prepare metal plates using qulified machinists . If the sheet is good or partialy damaged , it can be packed and delivered by veichals after being cutted into separate notes . I advise peolpe to start this sport , because it is complete and makes your mind and body feel very good . When I was fourteen years old , I won a championchip because , in that period , I swam as a competitive atlet . It was a real satisfation and I was happy . Michael is a 22-year - old man , he has studied for a degree in electrical engenieer and now he wants to put his knowledge into practice . He went to buy a newspaper to search for a job . He looked at all the advertisements but he never found the one he nedded . In contrast , you could suffer some nasty cuts or , though , be sunburnst . I used to live in assistent house . It was the first place where I lived in Tijuana , then I moved to an aparment with two friends . The garbage truck picks up paper once a week , plastic two times per month and undiferretiated three times a week for all people who live in my country . It is true that there are a lot of users that want to use a car and that number is growing . There are also a lot of people that do n't have the posibility to have a car and some use public transportation for many reasons , like the price , because it is easier to get to the place by public transportation rather than a car , or because of the traffic . Sometimes it is so exhausting for people to drive for many hours and even sometimes public transportation is faster . Secondly , there is a programme with the water company to cut down on the use of water by 50% using a recycling water treatment and recirculating to the house without dumping the wasten and so saving our planet . I strongly believe that grammar is not the most important element for speaking English . If you know grammar , you only know certain rules for writing , but I think that speaking is more important than writing , because when you go to any place in the world , you have to be prepared to talk and understand whatever they say to you . In this part you may notice that if you do n't know vocabulary , you wo n't unsderstand anything . But here is another topic . Whether you understand or not , you have to notice the way that people talk to you , and try to understand what the person is trying to say . I enojoy this because I like it . I see myself as a perfect candidate for this positiona . I live in one of the most beautiful countries - Ukrane . When I was at school my friends and I attended unior swimming school . My friend and I always had ice creame and fun after training . Nowadays , the obtion of broadening the mind while traveling is very commun . Apart from that , you see new places and you have fun . You also learn about other cultures , historical facts , you also lern to respect other people and thirs costums . In addition , you do n't think about your problems and the only thnig that you do is have fun and do what you whant to do . Besides , you see new worlds and thirs ways of life and that helps to open your mind , to see the world in another way . In conclusion , I think that it is the best way to opemn your mindn . Not the only way , but yes , the best way . I would like to recoomand friends to visit Italy . So if you want to visit any country , I 'm going to recoomend Italy . This afirmation : travelling by car is so much more convenient , says everything . For example , if we think of the time we spend on waiting for a bus to arrive at our destination , and the traffic is one of a lot of things that makes everyone prefer to buy a car . It is more practical and faster . Do n't forget the cust . When my sisters are married they have one or two children at most . I think the Egyption family has become simller with the passage of time . Finally , the consecuense of cocaine is death . If you inhale cocaine all the time or a lot , you will die prematurely . We enjoyed swimming in the sea , sunbathing , having a barbacue and seeing the sunset . Young people want to find a good job here , but they are working in MacDonald 's or burguer king for a low salary . Television plays an essential part in our life ; we turn it on nearly every day , since it can make life more interseting . There are two pionts to prove it . For one , a show broadcast on television may enlight us and give us some enlightenment . From : horses , steam vehicle , first petrol and gas car to future cars when the fuel will be electricty . My hoby But now I really enjoyed it , and my best friend bought me a ticket to a theatre to see the musical show , which was amazing . For s cuople of hours , I did n't move . It was a brilliant present . In 1994 , The Scream , one of the most expensive paintings in the worls , was stolen from the National Gallery of Oslo ( Norway ) . When he stole the painting he wrote a note sayng : " thank you for your good security " and when he was arrested he declare that it was very easy to steal the painting . There are mainly 4 stepts : design , preparation , printing and inspecting . This essay will explain these different stept . Firstly , personnel design the background colour , the artwork and the scuriity features on the bank notes , which is also done in process of other card , such , such as notes for supermarkets . After sheets of bank notes are printed , there are differences and specials for it , it uses special ink , and prints colors on both sides , and images are slightly rised . Finally , inspectors at the bank manually check all printing sheets and devid them into three categories : " bad sheets " are sent for disposal , where things are sercurely destroyed ; " Good quality sheets " will go for packaging and distribution , where sheets are cut , packed and dispatched . However , sheets that are " partally damaged " will be inspected again and separated into good and bad sheets and sent for further actions . I 'd like to wtite on this subject because it 's a very importnant topic . I enjoy it when I watch it on TV or when I attend it in the stade & supporte my team with my flag & cheers . I advise anyone who dreams of being a member of the most famous teams to work on hisself a lot and play football a lot to be profectional in this sport and show a lot of matches & followed by captain supervised on him When you have the desire to do something , somehing you always dreamt of achieving , something touches you inside not only when you do it , but also when you think about it . First , this kind of advertisement should be forbiden on account of the fact that young children are still very vulnerable . Kids around these ages ( 2 to 5 years old ) do not have a mature critical sense and anything can easyly persuade them . In conclusion , I am strongly in favour of this statement . Advertisements for young kids , not only upto 5 but upto 8 years old should be forbiden because of the kid 's vulnerability and the risk to their parents ' relationships with them . I am writing in response to yor advertisement which I saw in " The Daily Magazine " last week . I am a twenty - year - old student currenly studying to be a chef . If you need any further information , please do not hesitate in conctact me . Nemo 's father knowns a fish called Doris that wanted to helped him . They cross all the ocean to go to Nemo 's location to save him , while Nemo tries to survive in a dentist 's house . In the following paragraphs , I am going to analyze these issuses in a detailed way to provide a solution . I like volei because it is part of my life and of the life of my mother . It is my favorite sport , but I like other sports too , same I do n't play volei because I 'm bad , and my friends that I know , do n't like people who are bad at volei . But today , things are changing and technology plays a significant role in our lives . The automobile industry increased its vertical and having a car has become a necessity rather than a luxory . These days a lot of children wish to be professional players and they practise this sport all the time and everywhere to improve their techinique . The diagramm shows the development from 1998 to 2014 . At Easter time , the important thing is to consecrate Christian tradition . In contrast , the pagan spring festival does n't focous on consecration but rather on celebration . Not all people can afford to make journeys by car . A car is easy and cozy also , but public transprt is fair and is very affordable for all clasess of people . Public transport mainly means public bus . People used to travell long disistance by publis bus . It is possible to carry large numbers of people to different places by bus . Although I knew that there was some conflication between England and Scotland , the vote really shocked me . I have been travelling with both for yeras , and I reckon everyone ends up needing public transport one day or another . My favourite sport is soccer , because it is the most popular sport in the worl . But every time , I get trubbel . The hudsband of Grace is called Charles . Her sons have a problem which means that they ca n't look at natural light , and one day , Grace got up because her children were shouting and crying . So she went to their bedroom and the courtins were not there . So she went to the other room and the courtins also were not there . So she starts getting more and more nervous . She goes and talks to the servants , and she gets very angry and she tells them to get out of her house and they do not care so she picks up a gun and the old lady returns her keys . MOTASSEM is nice and a lovely fiance . He loves his job as he is patient when doing his jop . he is a hard worker and he has an amazing laugh . Nowdays , the number of endangered species has increased . But a lot of people say that a zoo can protect endagered species from illegal poachers . To sum up , there are a lot of cleary strong arguments against keeping animals in zoos . In my opinion , people should bulid some kinds of wildlife parks . This solution will allow It 's a really expensive sollution , but we must do that for The charts below give information about the most importent reasons for studying among students of different age groups and the amount of support they received from employers . The first chart is the resons for studying according to age of student . For carreer has 80% ; under 26 years old students selected it . For the over 49 years olds , only 20% of people selected it ; but if you compare this with interest , it is totoly different ; under 26 years old have only 10% ; but over 49 years olds have 70% . The other chart is about employer support . Under 26 years old is the highest because it is almost 70% , the scentd higterst is aged 26 - 29 years old ; it has 50% ; the lowerst is 35% and the age of the group is 30 - 39 years old . You can visit the old city and see old buildings and the castel , you can see the beautiful view from bridges over the water . is n't good for stydents . First of all , by getting students out of the classroom , students take a breack from the school routine . Fythermore , going on field trips gives students a chance to try things for themshelves . In adition , field trips are an important part of our school activities . Unfortuntely , I saw you last many days ago . My flatmatter is my best friend today . Susan told me that you need to khonw a couple of things before your visit to Spain . At that moment , he knew his decision was going to afect his whole life . When he was scaping from the prison , he bumped into an old friend callled Charlie . Why do I enjoy my favouite sport ? I love it when the temperatur is a little bit cold , but not too much . But there 's a differenc between eating a good meal , and eating by the way . They were talking about their lives and he remembered how he met her on the bus . Maybe she had always been the woman of his life . He looked at her eyes and smile he wanted to ask her whether if it was not too late to satart to get to know her . But he decided to leave the pub . He walked to the exit . All in all , I stil had a memorable vacation . In addition , there is a small blackboard for my littel brother because my mother wants my prother to learn Arabic and English letters . My country is a very interesting place . We have a lot of ancient and mistyc places . I think you could n't work in my country , because it 's illegal for foreiners . The town hall put containers for trash in the streets and the workers from the tomw hall clean the streets . To begin with , nowadays more and more people prefer trevelling by car rather than by bus or train . In the end , I want to tell you that we are not robots . Everyone deservs what they want . I like public transport and I love my planet . I think the best method for reducing polucion annonced the way they take care of the town . My aprtment is very beautiful . It has some disadvantages like , it hasn't a praivte parking lot . Finally , my apartment is very beautiful , and it has a lot more advantages than its disadvatages . There are various kinds of different things that happen in peoele 's lives , some may be normal and nothing special , while others may be so meaningful and unforgettable that you will remerber them for a long time . Eventually , I was third in the comtest . The most important thing is that you can learn a valueabe lesson from failure . Resolve/ dertermine / insistence I like how the players move around the court and how the audience applaused them every time they win a point . Although I 'm not on the court , I can feel the feeling of the game . It 's really awesome . Once in a while , I enjoy watching tennis when there is a competition or tournament , besides watching and enjoying it , I can also learn how real the game is , what its rules were or what happens when they yell at the jumpire for no reason . You can learn all these details and wait for a future day to put them into practice , or helping the players is one of the things that I want to make real . Público transportation is excellent ; you sabe money , take care of the environment and make friemds . On the other hand , she has never been a talktive girl , so it 's usually me who is always talking a lot . It is conveninet to travel by private car everyone can afford it , so that everyone has a private car nowadays . Some people suggest private cars are going to replace public transport . For these reasons , it is unlikly there is no future for public transport . Alison felt desesparate . She noticed that her husband 's car keys were in her house , so he was walking or someone had picked him up . She picked up the phone and she called all his group of friends . Nobody knew anything and now they were scaried . My favorite sport is footboll . In my opinión , if you want to start to do this sport you could write a team . Moreover , I think that it is good because it could help you to lose weight . On one hand , public transport is good because it does n't pollute so much and you can muve around the whole city . We do n't use so much petroll as if each passenger were to use their own private transport . In conclusion , public transport is very good and if it desapear it will be a big problem . It is true that sometimes you need private transport , but apart from that , public transport is used a lot by people of all ages . I 'm a comitted , responsable , and organized person . First I would like to intoduce myself . My name is Joaquín Gutiérrez and I want to tell you why my favourite sport is football , which is a sport that I have practiced since I was six years old . I like this sport very much because it must be played with a gruop of people and is more fun than other sports which you play alone with one other opponent , like tennis . Currently , I play in the first divission of the club River PLate from Argentina . In my opinion , people will travel by public transport more frenquely , because this type of transport is less expensive , more reliable and even more environmentally friendly than travelling by car . My trust in futuric technology is so enormous that I hope there will be new environmentally friendly and cheaper ways to travel around our world . At 2 p.m. my mum decided to go to the hospital because I could n't undestood anything and I could n't talk . We do not respect traffic rules and drive only with the intention of going as fast as possible to our destination . This often causes traffict accidente and congestion . For this reason , people are becoming acure of the terrible problem and are learning and teaching vial culture to new generations . In addition , public institucions are promoting this and also private companies create advertising to increase awereness . This is due to the fact that Lima , in the beginning , did not have a plan to desing its public roads and highways , and it has only been improvising to build them without any criteria to transport its population . I usually take public transport to go to the University , because public trasnport is cheaper than a car . ( 5 ) establish a mechanism in collaboratedly exploring and developing resources in the East China Sea . As he got closer , he saw a lot of people around tha Kabaa . My favourite sport is badminton and I always get up early to play it every day . I like it becasue it is the best way to lose weight and improve your health ; better than medicine . The purpose of this propossal is to provide details about shopping facilities in my hometown , Vung Tau , and give some recommendations for tourists . They offer a wide range of choices , from souvenir items such as pictures and jewellries to local specialities , at a reasonble price to suit the interests of different people . I assure you that there should be high - quality and varied products there satisying your needs . I highly recommend local shops to our tuorists for their cheap prices and the hospitable manners of residents here . My hobbies are meeting Friends and hanging out with them or playing baskteball in my spare time . Peolple do n't use the five seats of the car to travel . From the point of view of the invaironment , this is a bad idea , because it uses a lot of gas per person . A new problem is in the small towns , because they are not disigned to accommodate a lot of cars . I think that the main problem with piblic transport is the communications between villages and small towns , because they only exists between the big cities . It is a problem of mentality . If we had been born into a society that used public pranspor , I think that would be better and we would use it normally . There are so many educacionals programs , like Animal Planet , and so many others . Sometimes , some TV shows are so great that they help you in certain classes , for example , Animal Plante can help you in biology . The History Channel can help in history , etc ... In my opinion , television can be as good as books , and can also be a form of learning as good as only reading books , because TV is something fun , so you can learn and have fun at the same time . I am writing in response to your adversiment for SUMMER CAMPS . I worked as an assintant chef in a Lagunak Restaurant last summer . I worked in another restaurant in London , but I would like to look after children , because I have studied to be a teacher . yors faithfully . Here in Brazil , it is very difficult care about it because it demands serious action and skills from our gorvernants , which unfortunatuly wo n't happen soon . And why am I talking about it ? I am talking about it because the foundation of environmental protection is our minset . Just with knowledge and information , we will be able to manage actions to save , protect and improve the environment , and instead we have the current result . This aphirism is famous and true . People try to build big and laxuries houses but they forgot about the main thing . We can choose expencive things for the interior , n the town , he tries to make people aware of the sitiations and they take care of the environment . In my opinion , we should be conciencious and stop it . If we do n't stop it , after , it will be too late . The best present that I have received was ... I do n't remebmer ! Another thing , in my home there are some rules : my brother and I tidy our room , we clean the bathroom after we use it , we ca n't eat on the sofà .. . Let us examine the aventadges and disavandges Nowadays , people have a stressfull life , so we ca n't spend time waiting for public transport . The Scorch Trials is one of the best films and thrillers that I have ever seen . It is so exciting to see all the thing that they do to survive in the outside world with all those people that are infected with a virus and the reason why they put them in the glade for them to be inmune if some sick person bites them . I think I am the right personn for this job because I have a lot of motivation and a good level of English . Firstly , Django Unchained reminds us of the hard life suffered by black people in the past through a great introduction without dialogues , where black people were unchained while they came back to be sold to an owner farm . This was matched with an amanzing soundtrack as identity Tarantino 's films . In my opinion , volleyball must then be considered among high - risk sports according to the frequency and gravity of our surgical findings . My advice for someone who is starting this sport is that you will be refreshed after you play this game and it makes you do your work in a relaxetion way . It is upstearm that irrigates our economic life , and there is no doubt that negligence has the ability to destroy many good aspects of our lives , and our government is doing its best to put an end to negligence , but we also must coparation to save our town . On the one hand , we must Presentation an awareness program for all people , There is no future for public transport , becasue travelling by car is so much more convenient . I do not agree with this statement becasue in big cities there are a lot of cars . If all the people in a city use their own car at the same time , there will be a huge traffic jam , so travelling by car is n't much more convenient in this situation . My email adress is xxxxxxxx . As a result , I think that I have some intellent for swimming . From then on , I felt my disease decreasind and feel relax . I am prepared for long working hours . That 's no problem for me , because I am young and I like working and spending timee with people . Although some people prefer individuIal games , I prefer team games . They must know , people will identifie them , walking along the street . I would like to tell you that I have done a course on which I learnt to organise all kinds of activities for children , from canoeing to swimming competitions . Also , I worked in a summer camp last yaer , where I could put all the things that I had learnt into practise and it was a very pleasant experience which I would like to have again . I look forward to heraing from you as soon as possible . In my opinion , music like this should be diplayed more often on the radio and other mass media . I play football for Waitakere college school first eleven as a deffender and I enjoy playing in that position because it is easy for me to play . When we arrived there in July last summer , the owners welcame us with a magnificent basket of fresh fruits in the room and a variety of drinks in the fridge , all included in the room 's fee . There is perhaps notthing more pleasant than when your favourite sport is as healthy as it is enjoyable . A lot of children usually do n't know how to study Engilsh , and you could help them to get there . The other team was profesional , they had won many competitions , they were really good , but Tom and I knew that we could win . I 'm the rigt person for the job because I 'm reliable and experienced . Sport is an important thing for all of us because it helps us avoid disease and become healthier . My favuorit sport is swimming , so practising this kind of sport is the best because it helps me feel fresh and relaxed . Moreover , daily excrsise is a very good idea which helps us to avoid becoming overweight and to keep our body healthier . So I always want to advise people to practise this sport or other knids of sports to avoid diseases . Dear Sir or Madan , Called in a malicious way , there are 6 floors for jewerly , clothes , accessories , gadgets , books etc . Being in the centre of Bucharest , you can go outside , in the downtown area to consider visiting new cultural things while shopping in boutiques and relaxing on a terasse with a cool lemonade . Although using your own car is betten for moving around the city , public transport has been shown to be a good option for travelling long distances at a low cost and , depending on its quality , also low budget . Your health needs calm , friendship , happiness ... You must keep in contact with your friends and spend time with yourself ( do not forget your hobbies and learn new things ) and your familiy . It follows that , on the one hand , I have extensive knowledge of how to be on good terms with different people and , on the other hand , I have a perfect coomand of English . In addition , as I have been determined to build my career as a teacher since my childhood and , moreover , I definetely have a way with children of any age , after graduation I gained experience at university and in a local school . I feel these skills would allow me to perform effectively in this posistion . A wise man in the past said once , " If you want to be a good badminton player you need the nerves of a climer , the strength of a shot putter , the condition of a marathon runner and the elegance and cleverness of a fencer . " It 's exhausing and you have to move fast to get every shuttlecock . You have to be competitiv ! My coatch was very nice and mostly we played in teams . I had a lot of fun at the sommer sports camps and I made a lot of friends . Envide your friends from school or work . Practice together with people of your age . It is a lot of fun und you will get better soon . Every lost game gives me more motivation to practice harder and every won game makes me proude and happy about all the hard work that I have done in the last few mounth . Particularly in Barcelona , the trouble was that they could fish in the sea but there was n't an aproppiate place to keep the fish , so they could n't eat it one or two days later . You start living on your own , make your own decisios and plan your future . The year off gives them apportunities to get a job . You can get to know other countires and new individuals . If you have any questions , please do n't hesitate to cantact me . I am wrtitting this letter in response to the job advertisement for working in a summer camp in which I am quite interested . Since many European tourists like to have their holidays on the beach enjoying the sunshine and also discovering the historical remanings from the past , Antalya ( Turkey ) is the best city to work in . Finally , I personally disagree with cyberschol . Cyberschol are n't interested in health and safety issues ! In fact , it ccan help them to speak with their friends more easily . In conclusion , so family and friends are very necessaris in your life . I remember that you are fascinat by nature , so you could go to Guembe to eat delicious typical food . You will see an amazing view and a lot of kinds of tiny butterfly , there are amount of variety . When it 's cold , I always go to a covered swimming pool , and when the weather is warm or hot and the sun is shining , I always go to a reservoar . In present - day society , sustanable development is of paramount importance as our environment is being destroyed at a fast rate . It is definitely not envirnmentally friendly . And last but not the least , public transport is muche safer than private transport , because it transports many more people , and so , there is more cauttion . Film stars and politicans are interesting to people because of their talents and special abilities . On the one hand , famous people try to hide thier lives from journalists . In everyday life , the internet has become one of the most important things and it is becoming more and more influental . So , I enjoy running alone or with friends , because this sport has a lot of possibilies , more than I thought when I started to run after finishing High School . This has resulted in only very needy people using public transport , and the vast majority of people still use their personal automovile , with incovemiences and safety being the excuse . In the past , I tried to play basketball , tennis , ping pong and so on , but the outcome made me depressed and less confedent . The first point which I would like to menchioned is cost . That could be frustrating , especialy when you have a long journey and you need to spend long hours driving . Finaly , the word conviniend means something different for everyone . For one person it would be option that you have a car which is parked along your road or on your drivway and at any time you can go wherever you want , for the other , it would be a pleasur that they coud enjoy the trip without thinking about any car issues . They are faitfull that they could meet some new people and take part in others ' lives . But there are some disadvantages , like stairs because we are on the second floor . We would like to keep fit but we have to use too many strairs to reach our classroom and that 's so annoying sometimes . Travelling could be a good way to improve your lenguage and to get to know Italy better . Meaybe you 'll choose to attend univeristy in one of these cities ! It is a turist country , you could work as a waiter in my city . As it is a movie related to magic tricks , when a sequence is played and it seems simple and easily understanable , you know that , in fact , it is not . Long after that , because I had such a natural talent at engeneering , I began to write books and essays about everything realted to my job . InBy February we 'll have finished our exams and we 'll have more free time . Birdwathcing really relaxes me and brings me closer to nature . Do n't you know what to say in the presence of a huge audence ? The new activity which I have thought could be organised and could have success is called " The Club of dicussion " . In addition , it could be interesting , although you do n't have to do physical actitivy , because your ability to edit a speech , support an idea , have connected speech will be improved by this kind of activity . In conclusion , making a speech contributes to our social relasionships and it allows us to define our personality . We found very cosy and traditional houses , the market was very populary , with a lot of people walking around , and the people were very nice to us . For this reason , when a woman and her family decided to live a whole month without plastic they had to change treir lifestyle . So they would help to solve a bit the problem fot the UK 's recycling system . Such us yoghorts , biscuits , etc , was wrapped in plastic . However , I also think that it 's important to be concient of environmental concernts , so some ideas like this could be good to reduce rubbish . If someone asks me what is the most important thing to start practicing ( or even following ) this terrific sport , I 'd say it 's passion for wearing your club 's jersey and respect for your adversaries . For years of wars and difficult situations , history was creating people 's beliefs and convintions . Conclusions and recommendatios I really like reading many kinds of books , magazines , etc . When the weather is bad , I love sitting in my favorite armchaire , near the fire place and reading . I enioy hearing the rain while I am reading at home . Howhever , I like walking very much , too . I prefer comedy and romance , but I like triller and drama too . Finally , I enioy taking care of my garden , where there are many flowerbeds with a lot of different kinds of flowers . We like the sea very much , so we looked to rent a little cottage in August in a lovely place in Sardegna . I was looking forward to going to the beach and swimming in that wonderful wather . By recycling , by tryng to reduce the traffic , walking and cycling . That also impruves our health and fitness . People of all eages must help to clean up the city and protect the wildlife . At school , children are tauhgt about how to make apropiated use of electricity . There also a lot of plans for the futre , to start using electric cars . I 'm chatolic and I play the guitar in the Church choir . Each year , in the summer holiday , I 've worked in the " Summer camp " organised in our neighboorhood , both helping in the kitchens and organising sports and various activities for children between 6 and 13 years old . The perfect atmosphere for me is a modern building that has different rooms with different styles : modern , classical , gotic , etc . However , not all is OK . A trip to Italy is so expensive and many clasmates ca n't afford it . At that moment , the phone started to ring , I pick it up ... but no one answeared me when I asked ' Who is that ? ' . I liked this shopping centre because it has a lot of women 's shops inside , the facilities are quite atracctive and very up - to - date , the green zones are broad and it is supplied with a lot of wooden benches . It brings you directly to my subburn . Using this transport I will go to New Zeland then Australia and other countries . Travelling by car is muc more convenient , as many people say , but public transport is much better for the environment . In my opinion , it is one of the healthiest sports there are beacuse you can train not only your body but you can also develop your breathing . I think it is a really good idea to use stem cells in order to save other people 's lives , even if they come from an abroted foetus . There are a lot of people in this world that are ill and need stem cells in their healing process , so parents that had an abroted foetus should let the scientists and the doctors use the stem cells in their research and help other people . How are you donig ? I remember you wanted me to tell you about my experience with helping at a concert I went to last month . After some time , I felt sad , because I realised that I would n't be albe to see the band playing on the stage , because I had to stay in front of the entrance . We took some pohotos and got autographs . great starter and when you finish it , they bring you the barbacued meat . Then the main course is the barbacued meat that is very tender and tasty . But , considering the increase in private vehicles in our crowdly overpopulated world , it is recommended by geologists and ecologists that we use public transportation . The family might exist on paper , but not in reality , because each member of the family will be busy and they will just send some masseges from the high - technology phones they 'll have at that time . I know , it sounds boring and pessimistic , but if we do n't change our minds imediately , the future is going to be like that , for sure . Developed countries , Latin America and East Asia are the three regions that show a low percentage of illiterate people , expresed as below 20% , whereas Sub - Saharan Africa , Arab States and South Asia have over 30% of people who do not know to how read and write . There are also places where peolpe can buy the typical clothes ; dark dresses for women or a ' tango hat ' for men . Even if you just want to go shopping for clothes , there are so many places you can go . Palermo is known as a little New York for the disigners and well - known brands , and technology is located in Recoleta . During this day , the students had the oppportunity to hear very interesting things , but not in the same way as if they were in a class during a traditional frontal lesson . I worked at a nursery school in London last summer , which led to the improval of my English skills . On the other hand , you have the public service called Metrobus , and in this case you will hop off the bus a few times . When you arrive you must find the A - line , go to the Patriotismo starion ( C line ) , then go to the delta station and walk to # 76 Acrone Street . If I were you , I would choose the subway because the wearher in Mexico is too hot , so , I think you do n't want to feel the sun after your tiring trip . In the last ten years , Brazil has created a wide range of governamental programmes . Educational and medical assistance , as well as infraestructure improvements are some of the recent advancements . It offers students a unique opportunity to study abroad and aquiring an international standard qualification . I found your addvertisment in the newspaper and I am very interested in working in your summer camps . Suddenly , a thumledown cottage emerged from the darkness . Well , since my chillhood I have always loved weapons . My father gave me my first rifle when I was 7 , but it was n't until I was 15 that I found my real passion , and it was archery . Since that day I am proud to say that I am an archer , and that archery is my favorite sport . After more than seven hundred years , in 1733 , the Roman Catholic bishop 's residence was moved from Cenad to Timisoara , where the first cathedral became the church of jesuists monks . Journalilst and paparazzi constantly follow them and try to catch them in a stupid situation and enhance ath the value of them . Everybody makes mistakes , but their mistakes are wtitten about and known by society , which is unfair and harmful . They ought to apprecciate what they have and stop complaining aboout their life , because there are plenty of people , who dream of being them . Famous people have to notice how much they have , apprecciate it and stop complaining about not having a private life , because it is not such a disaster as they often think . It was reported that for one hundred kilometers , each car consumed ten to thirteen liters of gasoline , and released a certain proportion of air polutted . can also satisfy passengers who can not travel by plane and need to take long - distance jouneys . To summarize , he arranged a meeting with the head of Ferrari and the press because he would like to announce his defenitively Furthermore , as the programme is endorsed by the European Union , the trainee has accident and liabiliy insurance . It was a good experience . The hotel had every comfort you can imagine : a reastaurant , a spa , a gym , indoor and outdoor swimming pools , a beauty center and a church . Efficient sweat expeller socks help one reduce uncomfortability and keep one 's feet at a nice temperature . Players must be considered as a paintor working on a piece of art . It 's not the efford they have applied or all the hopes they had . Their expectations will be considered unuseful . Poeple do n't stare at a painting in a museum thinking how hard the artist tried to do a good job , they will judge only it . So , if someone is ever woundering to whether start playing this sport , they should be aware that lots of people will be expecting them to win . There is a great number of politicians and film stars who are followed by paparazz who are trying to find out more about their private life . There are a lot of places where you could work for a short period of time . Beeing a witress or something like that is well paid and not so dificult to do . I have noumerous reasons why I choose this sport as my favorite . THE STRENGHT OF SPECIAL EFFECTS Taking into consideration our interest in the field of thrillers , under no cicumstances should we miss it ! I like to read too . My favorite type of book is horse books or just random books . It 's hard to explain , but I mean books with everyday action not sciene - fiction or romance . Parkour is a discipline in which the main proporse is to train your body and mind to be able to pass through a point A to point B , in any kind of environment , the safest and fastest way , without causing any harm to your body . Parkour was developed in Lisses , Frace , around the 1980 's . One of the faundations used to develop Parkour was the Natural Method , created by Georges Hébert . Basicaly , the method is based on developing the main foundations of moviment of the human body . These are : swim , run , walk , jump , quadruped moviment , climb , lift things , balance and defend yourself . Raimond Belle was a former Vietnam souldier and worked as a fireman in the French army . The roots of Parkour were developed by him and he taught some Parkour thechniques to the firemen who he used to work with . His son , David Belle , was taught some of the faundations of Parkour too . Some people say that David criated Parkour but , in fact , his father developed all the ideas of the discipline . Parkour is n't just a physical discipline , there is also the philosofical part . Altruism , " be strong to be useful " ( it is actually a frase from the Natural Method ) , develop your body and mind so that , in a dangerous situation , you will be able to save yourself and other people , and so on . Therefore , it is due to its philosofy and the joy that I feel before , during and after a training session , that Parkour is my favorite sport . For me , people have become very lazy and they prefer the car rather than puiblic transport , because you can take the car when you want and go where you want whotout spending hours waiting for the bus . The product will be registered with the Ministry of Helath and Sri Lanka standerds Association and adhere to their rules and regulatiuon for production , storage and distribution . Their opinios varied a bit here . An argument some used was : ' In case we removed this whole industry , then there would be a humangous group of peoole unemployed , and that would be a problem . ' Finally , the Metropolitan Museum of Art is a good place for people who like history , antropology and seeing a lot of types of art . I agree with the statement , that fmous people deserve to have a private life without jouralists following them all the time . Sometimes it happens that journalists write some silly gosspis about famous people which is not true . Altought it does n't mean that the press should write about your private life . And , as a draback of being a celebrity , they are followed by papparazzi almost everywhere . Besides , being foollowed by unknown people must be quite a scary experience . My listening is goood and I can understand . I look forward to hearning from you very soon . If you have any questions , you can mail or contact me . First of all , travelling by car is more expensive than travelling by public transport ; cars have to pay for gas , insurance , repairs , environmnet fees etc ; travelling by public transport is more ecological and cheaper . She kwew that he would be staying away for so long but she would wait . She loved him and no World War was able to separe them , because she was pregnant and this baby was coming . It was a boy and his name was going to be Taylor , just like Jason 's father . Although most tourists come to Pamplona for the famous festival of " Bulls Running on the street " , many become passionite about the cuisine of Navarra . As a result , a few shops such as " LA VINOTECA " and " DELICIUS " are dedicated to selling selected top wines and typical food . There is little doutbt that they will not only find original products , but will also enrich their minds . On the other hand , they are still normal peolple , who have families , partners and friends and they sometimes want to have a few private minutes , without cameras , media , newspapers , flashes and spotlights . Wahat is more , I am sure that most of them do it on purpose because their main aim is famuos . I 'm available every aftenoon from 5 to 8 p.m. , when it is morning in the USA . Of course , some famous people might like this feeling that they are so liked and favourite and those who do n't like it have the posibility to protect their privacy better or more or pretend that journalists following them do n't exist . Nowadays , people care more about themeselves and doing good things is wrong for some of them ! I am really happy you wrote to me for some advice and I am very honourated that you want to spend some time in my country . First , you have to decide if you want to visit the north or the south part of Itlay , because if you do a full immertion tour of the intire Peninsula you will visit only half of all you have to visit . If you like Egyptian history , you can go to Tourin , where you can find a huge and beautiful museum of Ancient Egypt . If you want to visit the south part of Italy , you must start your trip from Florence , the bithplace of the culture . Then you must go down to Rome , the capital city of my country . After you have seen the Coliseum , the Basilic of S.Peter and the Trevi fountain , and so on , you must visit Naples . The idea of finding a job that lasts thre months is great . I think you could work as an entretainer in some tourist villages roun the country . In that way , you colud improve your way to make a relationship with people and it could also be a great help for your theatrical experience . I know that you are a brilliant photographer and that you want to improve your hability , so I think that you could take some photos during your trip and then you could send them to some experts . Let me know if you enjoy yout tour and take lots of photos ( I want to see them soon ) I 'm writing to reply to one of your advertisements publised in the local newspaper last week . I 'm 31 years old , and I have had the priviledge of working as a teacher all my life , so I am an experienced person capable of taking care of children . As well as taking part in activities relating to cookering . At night , the noise was annoiying . I was not able to rest properly . Also , the phone did not work properly , it was imposible to use it to call the receptionist . In addition , the elvetor was out of order . My favorite restaurant is a restaurant in Stockholm at Östermalm called : " New Peeking " . It 's an Asian buffé and they make the best food . My favorite subject in school is probably Swedish , English or biologi . I think that , in particular , spinning is a hard sports activity because when you have spent approximately 1 hour on your bike you 'll probably feel taired . This could be good , allthough some people say we do n't need all this time and we have to work more . Another point is that we can meet friends more or visit our family if we have more free time and that is allways good . In other words , it could be said that if we had more free time , our lives would become better , because we can enjoy ourselves with friends and do thigs with our family . Frome my point of view , having free time is perfect , because we can do more things that we are fond of and our quality of life would increase . I study filology . Now I am working as a jornalist at National Radio . But instead I am writing abour stupid decorations , illnesses and other boring stuff . Well , I have good news for you ! I met a wonderful girl last weeck when I went to the cinema . I want to introduce her assap ! Besides btilliant actors , they have incredible decor and it 's perfectly situated as it is very near to the bus stop . Since graduating from University of Eduaction majoring in business English , I have been working for a food joint stock company on a contract basis . Meeting new people and setting up new social relationships are also the temting point attracting me . In addition , your cafe is conveniently located near my home , which takes about 10 mintues to go to on foot and I have 2 days off a week . That gives me the opportunity to take on a new job . I enjoyed this unforgettable trip to the meseum , and hope you can take time out to go one day ! It requires a vivid imagination to try to put a view of the future . First of all , the means of transport will change . Vehicles will depend mainly on solar energy or nuclear energy . A flying public transport bus will be a fast ride to work . You will need to supply your car with spinache after they invent a spinach - fuelled car . I think that 's the only negatieve point about today 's television , because maybe there 's too much choice ! When we were schoolgerls , we used to spend all our free time together . To find out about other cultures and get new knowledge completly different from school . On the other hand , maybe if we have a break before university , the routine of working and studing every day could break . So when univerity starts , people will become busy , the routine will not be the same , and , as a consequence , the marks will be lower . At first , I did n't belive that this place would be as amazing as she said . It has almost everything that you need in a cafe : comfortable chairs and sofas , beatiful features and really good - tasting coffee that they serve in most of twenty different ways and with all toppings you can think of . Althoug the most important thing is that there were not only friendy staff but they looked like they were having tea in Wonderland , with Alice and the White Rabbit . If TV programmes are a lot of rubbiss , it is because some people prefer them . I had a great time with my friends , but I have a few comments concering the organisation . However , there are a couple of small sugestions . First of all , the vanue itself was very crowded and parking almost impossible to find . I would like to suggest hiring special animators wgo will entertain kids . You should think about reducing proces or offering special discounts , for example , for students . Yours faitfully There , you will see beaultiful cities with European architecture and you will find nice vineyards . Chinese , Spanish and Portuguese . None of those languagues are as popular as English is . Brazillians need to learn English because it opens doors in business and in higher education . Learning English as a foregein language will have a huge impact on brazillians ' professional lives , helping them to get a better position . The brazillian educational system should be aware to develop students ' language skills more . Learning English as a second language will help brazillians to get a better job and have more opportunities in their careers . I love outdoor activities . I have been doing rock climbing for nine years now , and started motocross in 2010 . Also , I consider myself very friendly with children and teenagers . When I was a child , my father and I used to go camping almost every other weekend . That was until four years ago , because he is no longer able to stay out of the city . But he taught me all that I need to know to suvive out there , so , I really know how to do things in the woods . Third , public transportation sucks , when you think about it . You can picture the crowded subways , dirty buses , and the difficulty / hussults of the public transportation transfers in your mind . Secondly , Eveybody seeks safetiy in their lives . Look around you , crimes and death are srounding us . All these people are dreaming of living a peaceful life without all the problems of killing and sadness . For that reason , I beleive that being safe is absloutly better than being sorry . I will always remember my dad telling me to calm down , saying that life will go on and one day all of us will be satsfied with this life . In conclusin , I think that all of us should see through rose -tinted glasses and be happy , because you live a calm life without anything making you sorry . I will start by telling you something about Paula Echevarria . She is a very pretty and famous actress . She also writes a fashion blong . She is 34 years old and she is married to David Bustamente , who is a popular and hadmesome singer in Spain . They have a daughter - her name is Daniela - and they are like a perfect family . Therefore , she has everything good aobut being a celebrity , but the most important is that she is a great person . By increasing the veriety of cars with new technolgy , people 's demand hasnt ' stopped . As technology enhances the life system in any way possible , people become more dependent and ca n't avoid it beacuse of many different attractions that these cars have . Trafic jams will cost a lot , causing problems such as pollution , which certainly causes more health problems and will create expenses not only for us , but for others as well . The solution is public transport again , which increases the pace of life and makes it easy to accsess by subways and special roads . To sum up , as thought cars are too covenient to some extent , but the cost will reduce the benefits . I am writing in response to your advertisment for the job in the USA summer camps . This job would give me the opportunity to pactise my skills and get more experience with children as well . The plot is about a man , Arthur , twenty - five yeras old , who is engaged to a nice girl . The company requested him to go back three days later , so he was looking for a hotel that someone had recomemded him . It is universaly accepted that shopping is not always enjoyable . The doorbell rang insistetly . It was Saturday in the early morning and I was still in bed . What an amazing surprise ! I was very emocional and was about to cry . " In answer to your question about the use of the internet by young people of our age , I think it is very helpful to get information more easily and quiker . Also , it plays a freat role in removing the borders between nations . In a matter of seconds we can now communicate with people around the world , whether for important business matters or just to talk to a friend . Obviously , we can not imagine how much time we spend online , because the whole day we are connected , in our houses , on moviel phones and on computers at work . They have to realice that if they continue eating that way and not doing any exercise they are more likely to have different diseases . When the light sensor is in the shade , the synthesizer emitts a lower pitch , and when the sensor is exposed to light , the synthesizer 's pitch rises . I had to work as a liase with clients as well as the company officials ( since Shriram Law Consultants is a part of the Shriram Group of Companies ) . She explains that in the process of purefication , a large amount of coal and oil is burned , which pollutes factories rather than the environment . He was the pastor of a Bautist Church and he fought against the dicrimination against black people in the Unated States in the 60s . He founded the civil rights movement to free black people from racial segragation and inequality . One of his most famous speeches was " I have a dream " , where he discrives equality in society beetwing waith and black people , where all people can live together . He was murdered in 1968 , in Menphys . He was 39 years old . In the city there are a lot of museums and art galleries , theaters and clubs , a few parks which priveds different events like open - air concerts or public muster - classes . Wtite soon Let us look at an example of a univesity student . The student had a great number of assighment and projects , so he spent more time on accessing the libabry , becoming more ambitious to study books , and using a computer to search the for latest information . Therefore , not only did he get high scores in the reports , having absorbinge a great deal of knowledge at the libabry , but he reduced the study stress and kept healthy at the gym . At university , I also have a lot of assighments , so I like to go to the libabry to study , where it is more quiet , spacious and internet accessible . It is a great life stage , but at the same time , it is difficult . Sometimes teenagers have problems with their families , with themselves . As a result , they do n't know whah to choose . Twenty years ago , no one would have thought of the invention of the iPad or smarthphone and how they could change our lives , but today , these items have become necessities of our daily lives . Nowadays , many people have got into the habit of carrying their smartphones no matter where they go . To begin with , I am a fluent speaker of English . I worked in noumerous camps last summer . As a result , I could be very helpful with oranising sports and activities , but I could also provide assistance in other places , including the kitchen . The crucial point is the transformations and exprerienced contradictions of the characters . In our imperialist and capitalist world , we need more films or arthistic influences which mention the problems of our life and realities . There are such interesting websites and blogs where you can find out something very useful that you would never have expected or , unsurprisingly , missinformation . We know that making social contact can sometimes be a problem for a wide range of people , who sometimes find it a lonely and dauting experience . However , both readers and writers do not only do it in an altruistic and philantropic way , but to get fame and popularity at the same time . Blogs and websites could give them the chance to become famous if they really appeal to a large number of people and they will also be able to earn money thanks to advertising . To clarify what the situation is , it is true that not everybody may be interested in blogs or websites , but the fact is writing or reading a blog can give people a practical way to communicate and share preferencies , beliefs or thoughts . however , more or less reliable . Peter looked at his whach and knew that he had to do something immediately . Jon did n't usually go to the countru , so he did not know how to walk over the stones and he was afraid . After drinking water from the bottle , he fell over on the gress and Peter saw that Jon 's leg was broken . There was a lot of blood and it was then that Peter looked at his whach and knew that he had to do something immediately . I like that book so much because it is pretty realistisk and it could happen in the real world sometime . There you can see dinasours from prehistoric times . It can be amazing to see different sprecies of animals which are no longer living . By visiting museums we can learn interseting details about the history and culture of that society . In addition to having lots of information , we also can have fun seeing interesting things in the museums , such as huge dinasours . You may feel incomplete if you do not visit the museum of the new place you visit . Every day in my town , people talk only about football becouse it can give you a lot of emotions . On the other hand , my advice that I would give to someone who is starting this kind of sport is that he must do it with a lot of responsability and sacrifice if he wants to become another Maradona . In the morning , everyone goes to their job by car , but I think that the real reason for doing this is that we need to do a lot of things durind the day and with public transport we spend more time than doing the same with our own vehicle . For example , during a foorball match , if you make a mistake it is n't too important because you have a team which can remedy it , evin if ypu do nothing . The most interesting is the art gallery , Oko Miasta , which is located in the city centrr . What 's more , in the middle of the biulding , there is a small library where people usually buy the latest books and papers . Furthermore , in the biulding of the art gallery there is a club Oko . Not only is it the popular place among young Polish citizens , but it is also really extraodrinary : people can walk the red carpet and drink the most famous drinks . Grass hockey is a popular sport practiced by people of all ages and it 's played more in countries like Britain , Argentina or Germany , than in Spain or Italy . In my opinion , grass hockey is the best sport you can play as it requieres you to be really focused on hitting the ball correctly . Firstly , Disney is not an ordinary destination like beaches or mountains , it is a place that requireds a different means of transport since it is a long way away . The vacatios starts when the plane takes off and nerves and happiness blend , creating an experience you will never forget . When the plane arrives at the airport in Miami , you can appreciate the beautiful viwe that thid place offers . Each one has a different topic and amazing rides perfect for adolecents . To conclude , Disney has so many facilities that it is impossible to get bord , you can relax in your hotel and have an unforgettable time on the roller - coasters . He is a soilder in the military in Thun , where he works as a teacher . Then Robert smailed and giving his hand towards hers , said : ' I have missed you a lot ' . In addtion , farmers , huntsmen , fishermen and any other people that are used to living in such areas have to move to cities and try to find new jobs . Meanwhile , wild animals which have forests and wetlands as their habitas will lose their homes and find it difficult to survive in jungles of concrete . Endangered animals will be harder to find after the destruction of their homelands . Also , there will be no fresh grass and grains for domestic animals , such as cows , lambs , chichen to be fed . To reduce the above problems , it is necessary for governments to plan carefully before the construction of builings and transport and try their best to decrese the side effects . In my opinion , there are a few advantages of shopiing . Another good point of shopiing is the fact that it could be relaxing for some people . Everyone considered him a crazy and boring guy obsessioned by his passion , except Kate , his only best friend , who encouraged him every time he wanted to give up his dream . They wanted something that could be traditional and revolutional at the same time , something that could give a new vision of reality , and Kate started to offer some information about many artists . She started to be a little bit nervous , she was n't able to find any solution when , suddeny , she remembered that Michael 's art had the features requested by her clients . Michael was very excited because he finally had the opportunity to introduce his view of art throut his pictures . After lots of meetings and conferences with the representation of China , Japan , the USA and Oceany , Michael began to be the man who he had dreamed of being since he was a child . Kate was really angry and she oredered him to leave her room immediately . The personal space in their life should be larger than in a movie star 's , but they should make their descisions transparent for most of the population though . It is their job to make descisions that ensure the benefit of the people in their country , but we do n't need to know anything else about them , after they come home to spend some time with their families . He was a very big menace and the villagers hated him because of his mischievious behavior . This film was about how a previous roberry which had been committed by Vin 's gang leads to the hatred of a criminal played by Jason Statham . As I see it , there are severeal ways to improve , it because we are trying to invent a lot of things every day . You may not think , it but when you are just thinking , you may have the chance to invet something new and useful for humanity . Using new vehicles , travelling can be more comfortable and easier .Everyone in this world would have a better life . I am really happy when I simply see a new bus with air conditioning or anything which can make travling enjoyable . Artifitual intelligence is one of the best ways , we can switch drivers to these vehicles . We can also help by paying for our tickets . Yes , this is simple , but these companies need money to improve their businness . The Number of the Beast was the third album Iron Maiden relesead . In this album , the drummer was really great and fantastic eletric guitar solos were performed too . Since he took up office in 2002 , Lula has made major structural changes in Brazil , taking more than fourty million Brazilians out of extreme poverty . To curb corruption , new laws were created , instituions were re - structured and innovative mechanisms were developed to engage and give voice to the civil society . For the Brazilian elite it is unacceptable that Lula , a poor migrant from northern Brazil , overshadowed all the presidents and most politicians of their own , priviliged , university - educated and careless about the real Brazilian problems . Yout do n't have to think about bus timetables and stops . You can stop wherever you want and there are a lot of other reasons to travell by car . It is really good . It is better than the previous novel , FSOGrey . I really mean it . It is not porn . BE GROWN UP PLEASE . If you do n't want to read the " sex parts " , just turn over the next page till it ends , that 's all . I did that to finish that novel . This novel is just to tell us the passionate love story between a sucessful businessman , chairmen man with a very unhappy childhood , and he only refers to his birth mother as " the crack whore " , which is related to his recent behaviour - BDSM . And the girl seemed very bored of her rountine life , innocent , did nt know anything about life . Apparently , THEY were so diffirent from each other , but somehow , some magic connected them and made them a very lovely couple . But most importanly , one should enjoy all of this fun . I 'm going to make you a very nice ittinerary and , hopefully , we 'll also find somewhere for you to work . We 'll visit the Hall City Tower , the zoo , the citadelle , and we also have some beautiful parks with a lot of green grass and old trees . Concernig your work plans , I have an uncle who owns a farm , so I think we can arrange for you to work there . They can barelly breath with all those photographers around them . For example , when a fan follows a cab , she or he could be hurt , because the traffic is really unpredicable , or when there is a huge mass of fans , they could hurt each other . Why is it that when men stalk women they forbid them to come closer to her , but when a papparazi hides in the car of a celebrity , he will get a huge pile of money for the photos ? One example of this could be North Corea or some Arab countries , where their governments ban internet access for citizens . In other words , they want to mislead the people about reality to avoid the population claiming via these networks or being up in arms against their system . So , this means we are getting less intimity and becoming more gossipy at the same time , as a consequence of sharing our lives on public sites . You can follow your favourite celebrities and have direct interaction , but this also has negative consequences such as some followers critise them . It was a new thing for her to know that someone had the guts to sit next to her because almost all the people in that school defined her as a weirdoe . She was on her way to the court where Michael was practing when she heard guys talking . Then our trainer , Nico , shows us a lot of tipps and tricks . This is an original and moving love story that has people who are agaisnt the relationship between the main characters . Besise this , it tries to give us a real idea of what an innocent child might do to help people without being told the real truth . Warning the responsible departments how much they can do for the city in relation to employment opportunities , tourist atractions , enrionmental education , ecological preservation and make it the best tourist city in Litoral Paulista . Preserving , exploring the trails and beaches , encouraging extreme sports are what we believe are attractives to tourists of this wonderful coastal city . Nevertheless , travelling by car could pose a real treath to public transport because it is much more comfortable . It will even get more popular because it will be faster , more modern , and cheaper than travellng by car . The aim of this report is to give some tips for tourist who come to the city . I will provide you with some pieces of advice about shopping for clthes in the city , as well as some recommendations . In the city there are many fashion shops where you can get the most trendy clothes . You must be aware that maybe you will spend more money than expected , but if you are a shopaholic , it will be woth it . You will fall in love with them as they are pstel colured . If the idea of a street marke does not seduce you , I recommend you visit a little shop in Saint Peter street , The Old Bag , where you can buy bags and other accessories , such as umbrellas , gloves and scarfs . In addition , the shop is very cheap and you can have a cup of coffee iside while you are shopping . I suggest a quick visit to every shop and making comparations of price and quality . This film is interesting because it drafts work problems , but not only this , it also shows some important values , like the importance of solidarity , group cohesion and the importance of not losing fait in dreams , even if the situation is withstands . The problem is that you have to book the hotels you want to stay in so yoou need some time to prepare it . The Televion of the future will be amiazing , because it will have a 3D projector , which means that movies will look extremely realistic . You can see , for example , tigers , lions , zebras , birds , pinguins or horses . If you were hungery , there are some restaurants and fast food restaurants . In my opinion , sometimes stars ' behaviour is very suprising . Film stars have very duties , for example , going to the parties organized by other people from show buissness . You are very lucky in choosing a life partner . I have seen your life partner . She is so beuityfull . You both have a perfect match . First of all is traffic jams ; if you are stuck in a traffic jam in a big bus you will waste much more time than you expected on the road . Bisedes , public transport is overcrowded in rush hours . Another downside is that most buses are old and dirty . On the one hand , if you belong to a school , you can participate by giving information to the children about the cathastrophic image our village would have if we did not reduce the pollution to the minimum range . Forthly , I only buy organic products for consumption and keep a small spice garden in my backyard . First and formast , the bank notes should be designed and the design includes background colour , artwork and security issues . The last but most important step is the ispection . If the sheest is bad quality , it will be securely destroyed . The " Di Roma reataurant " is a restaurant situated in the heart of a small village , " Monção " . It is very popular with teenagers and adults who love to eat pizza or any other fast food . Public transport is not as valorated as it should be although a lot of people use it every day . It 's a big country and does n't have many inhibitants . Most people go to high school and unversity . In Sweden , we have a lot of different people from different kultures . The problem is that there are a lot of Swedish people that are razists . Not the majority , of course , but there are many razists . That can be really painfull for those who are n't from Sweden originally . The first one is to study a lot of Grammer lessons , and the second one is to learn how to organize my ideas for a long period of time speaking . It was written by John Clees and Conni Both and it shows the daily life in a fictious hotel . Particulary when the owner gives orders to the waiter , these situations become hilarious . Its shorters stories have a funny and relaxed time . Fitst of all , the environment that belongs to both man and wildlife is going to lose balance in the ecosystem . It means that more kinds of species are endagered because they are unable to adapt themselves to the remaining land . As far as I 'm concerned , it 's critical for governments to take mesures to reduce the problems . Firstly , relevant laws and principles should be put in place to forbid extravagent expansion in the natural system . In addition , supervision of the protecting steps needs to be undertanken by the government . He still needs to find an ATM to withdrawl some money to pay for his appointment . SEAWEED : OUR FUTUR Thanks to a crowd - funding campaign , we obtained the mininum funds to develop our innovate work . Unforturnately , the process only works for twelve hours . No matter where a famous person goes , he must realize that , next day , he will be on the front page of the newspepers with lots of rumours . Beacuse , what is proper in living when journalists are following every step the famous person takes ? We are all free people and everone deserves to have his own life . I wish to express my dissastifaction with this course . perphaps because there were too many people and also , the more people there are , the more space we need and the room was too small . We felt hot and we had no refeshment facilities . The hotel would be luxorius but everybody could come because the prices would be low , so the hotel would be always full . I think that many people want to go to a luxorius hotel but they ca n't . The hotel would have many services and facilities , like a good reception , spa , wifi conection and pay - per - view TV in the rooms , a great chef who cooked the dishes of the Mediterranean cuisine , a swimming pool , a bar on the beach and a boat for trips around the Mediterranean sea . I would like to hear the point of vieuw of tourists to improve the hotel . One day a friend of mine was going to an amatuer theatre to see a musical and asked me if I fancied joining her ; I am not fond of musicals , but I went . The peformance turned out to be enjoyable , with a lot of witty jokes . After the show , I was introdused to one of the actors , who was my friend 's cousin . They can do nothing that ca n't be gossipped about . Why do n't we want to give people entertaning us a chance to be themselves and to have a real private life ? " I would say stop the arrogance by my cousins " said Michael to his friends and thought about stealing the keys of one of their millionar houses and having a party with his friends . But the house was destroyed and the neighborhood , furred for the confusion caused during the night , had called the police , who , without his knowledge , were waiting outside the house to take him to the police station . Sometimes I have to take care of my little cousins or my neace and clean my bedroom . It 's not much . Peolpe have never taken into account that fact . All in all , it seems that if such tiny changes are made , a huge help to save natural resourse will be done . The main attraction here is absulotely the beach . It 's a nice beach with white sand and blue wather . Perphas I 'll describe our journey by boat round the island . Subject : Opinion on what young poeple are interested in clothes , not too hipi , but something comfortable . time , then I suggest some other style . It has to be comfotable but I have expenience of cooking and reception for parties / functions as I was a member of the School Parents Association of my children 's school . These was invalunable and relevant experience for the job I am applying for . Also , I am availalbe to work for long hours at weekends . They do not want to learn so much becuase they just watch movies for fun . It is said that the main objective of telelevision is to entrentein people and make their free time happier . It can be really frustriting . The most famous person from my country is Mr. John Stefferson , who worsks in a department store and is always planning how to make people 's lives more comfortable and better . Sometimes I lisen to the radio and hear his comments about some problems in my own country and some suggestions about how to make our life better . It was an angagement ring ! In Mexico , a foreign person does not face difficulties getting hired by a company . I would be pleased to help you with this part of your experience in my contry . I know that you are someone who loves animals , perhaps we could go to the city zoo in order to find out wheter there are any vacancies that suit you ? Something I can do is to do some research into places that need people who speak Englsih fluently . A good ilustration of this would be children . Mr Keffe , who lives with his wife in a housing commision home , is an old - age pensioner with no children . Therefore , it would be greatly appreciated if you could organize a home visit and provide further assisstance for this family . We tried to contat as many family members as we could . My city , Valencia , is a touristic city situaded by the sea . In addition , I suggest going by bus around the surroundings of the city , where you can do adventure sports , like canoening , climbing or just walking around the mountains and enjoying the countryside My favourite kinds of movie are comedy and comedy drama because they have interesting plots and characters , someone and who watches comedy can lought all the time . He presents a theory in which buying lottery tickets is not a misguided input into wealth production as some critics believe , but a valuable input into creating a sense of possibilty of scaping from one 's current life by acquiring wealth . Cohen 's knwoledge is that playing the lottery is not automatically irrational . Some people like to calculate the gain or loss from buying the lottery but other people that can afford a dolar ticket now prefer to keep their dreams . Taxy is the first possibility . Famous people have always been sorrunded by a lot of journalists and paparazzi who follow them wherever they go . Therefore , most of these famous people complain about this , but it is logical that all the media , television , radio and journalists are constanlty devoting every minute of the day to them , because people are interested in them , in knowing what they are doing every second , in knowing who they are with , in knowing what they like or do n't like , their hobbies , in short , in knowing everything about them . In Italy there are few cities with an hunderground and often in the smaller cities there are only buses . I hope for the next generations for a better public transport service and an increasement of its use . Overall , it is clear that the main causes of land degredation were deforestation and over - grazing . These causes also had a negative impact on two regions that were analysed , in Europe and Oceania , and , consequently , these areas had higher rates in terms of total land degreaded . On the other hand , Oceania had the highest land degraded rate at 11.3% bacause of over - grazing , which also contributed to having 13% of land degraded . For this resaon , this region presented the lowest percentage of land degraded , with only 5% . If a person wanted to trevel from Kano to Lagos he had no choice but to trek . We can travel by air using aircraft ; aeroplane , helcopter etc . So , whoever wants to star a journey has several choices of transport , eaither by sea , by air , by land or on foot . At 17:00 they let us into the venue and they carried out all the checkings . When everybody had taken their photos , Emblem3 went backstage to get ready for the concert and after one hour it sterted . Kitchens will be better eguipped , maybe with smart appliances , and people who ca n't cook will prepare the meal by themselves . He was so cynical that he turned out to be very nasty and unpopolar . Sooner or later , mariied people will get divorced . In addition , public transport is cheap because buying a car means spending a fortune and in big cities where people are concerned about the environment , such as Amsterdam or Tokio , there are many facilities like mobile phone apps or special offers . loverer . It is not necessary to say I am able to work to a cafe schedeule . I have experience working shift days and weekends . If you are looking for an enjoyning shopping day , Madrid is the best choice . In Madrid , you can find clothes by the best desingners , such as Carolina Herrera , Dior and so on ... But do n't be afraid if your budget is quite limited , because we have some places where you can find great colections at 50% off . Nowadays , people 's lives are undergoing an unexpected change all because of globalitation . Globalitation started in the 20 's , so a huge proportion of the population has experienced this change . In my opinion , it is kind of good . Personal contact shows a decrease in this time , because people do n't want to face their real problems . Instead , they can see all the poblems happening in the world on their smartphones . In the future , people will comunute via their computers , cellphones , and tablets , and this kind of technology will lead us to a lonely life . Of course , there will be some more electronical things like some new mobile phones with functions we could not expect right now , and there will be some other gadgets . To put it in a nutshell , we could say that our global world will be more electronical , and there will be more gadgets , but that wo n't change our lives dramatically . However , others companies will dominte half of the projected market share in jeans next year . They help me to develop and to see the world from a difernt perspective . Many people think living in the counrtyside provides a better way of life . My town is one of the cleanest towns in my country . The authorities have arranged amny procedures to ensure that the town stays clean at the same time as being environmentally friendly . Another handy rule has been introduced , which is that plastic and glass need to be thrown in different bins that are available for public udsage in each supermarket center . In these , people can find these bins at easy locations available everywhere . All the previous steps and more are being applied by my town 's sitizens in order to improve the environment and go together with all the procedures that help them live a happy , healthy life . ' Gravity ' is an otstanding , brilliant , sci - fi film , directed by Alfonso Cuaron , starring George Clooney and Sandra Bullock . After a long sequence of events , the remaining astronaut first gets to the ISS , then , with a Russian spacekraft , moves on to a Chinese space station called TIANGONG . Never in her life had she been to as crowded a city as Danang , so she feft very nervous but extremely excited about meeting her lover soon . The more excited she was , the more dissappointment she had . Mimi caught sight of her lover kissing another young girl in his room . As you know , in our country there 's trash being thrown everywhere and most of the things that are thrown away are recyclabe . This is the main reason why our environment is being destoryed . My name is Pawarit Chonlahat and I have lived in Bangkaen district since 2010.I found that this area has changed so rapidly , such as , now it has a lot of condomedium a long the main road and nowadays this area has a big shopping mall and a modern hospital and a large police station . That makes my life so convenient and safe because I can walk from my house to go to the shopping mall in about 10 minutes and I can walk to the hospital in just about 5 minutes , so I did n't worry when I got sick and the large police station is located in front of the hospital . That can assure safety for everyone who lives in this area . For this reason , this is the adventages of living in this area but because of many people in this area , traffic in rush hours especially in the morning is very heavy and it takes so long to drive a car to work .That is the disadvantage of living in this area . So , in my opinion , this area should have an improved transportation infrastructure like investment in Sky train system to cover this area . Pat and Tiffany are trapped in their psycologically difficulties ; Pat 's desire for his ex - wife can not be fulfilled , while Tiffany can not get over her guilt over her husband 's death . In these times , we can follow sbd 's Twitter newsfeed , ' like ' his Faceboog fanpage and , of course , follow news about those famous people . Fisrt of all , remember to take food that can be eaten easily without much mess ( Spanish omelette , fried chicken brest , sandwiches , chips ... ) and , also , you can buy some drinks and water because it is fun to eat at the beach and people usually get hungry often after they do something like swimming , jumping the waves , surfing and so on . Furthermore , going on a hike among trees with a cool breeze around you can be the kind of place that allows you to forget the busy ciy life , too . However , documetaries are being forgotten and only twenty - six percent of them would like to watch more interesting TV series like Lost . In Spain , the vast mayority of schools are state schools . I am also a talented cook for kids . My view is also trying to convince them that cooking is fun and sometimes they ask me to teach them how to make basic dishes , such as ommelettes , spaghetti and more . The problem with this mansion is that it hides a lot of secrets and misteries which are going to be discovered by its temporary owners , who are a family whose husband went to war and died . So the real ocupants of the house are Nicholas , an easily scared boy , his sister Anne , who turns out to be one of the most important characters in the film , and their mother , who is called Grace and has a particulary obsession with catholisism . The film descrives how the love that a mother can give to her children can easlily turn into an obsession . However , what makes this film so special is that it pretends to be a typical horror movie , but in its final scene , there is a sudden change wich makes it more interesting . I would recomend this film to anyone , even those who are easily scared , because it is not like the resto of the horror movies . It is a film in which you are continuely discovering secrets as if you were another character . So it is a cuestion that requires deeper reflexion from all of us . Wheter public transport might be the solution , or be more suitable or not is something with arguments in its favour and against it . You do not have to wait for a specific time to cath the bus , for example . However , a lot of people are becaming more and more consciencious about how important travelling by public transport is . One of the most important reasons is precisily to take care of the environment . I really liked working with special effects and the best thing was that I learnt a lot about that tehnology . Summing up , I prefer doing my shopping by means of websides or auction portals . He 's been doing great in both academic and extra - curicular activities in the school . On the one hand , we could live in a more relaxed way ; on the other hand , we colud think about settling on other planets . Then Sergio left Mycrosoft , created his own website which gave him enough money , and travelled wherever he wanted . As you asked me , I prefer sailing on the river to climbling a wall because I want to connect with nature . Though the modern cities are emerging repaidly , the problems caused by excessively exploiting the enviorment are severly various . The red coral reef off the coast of Austrialia , for instance , serves as a shelter for algea and other tiny sea fishes and an index of enviroment fragility . Due to the massive construction of five - star hotels on beaches , the biological chain there is cut off and enviromental variations are gone away . On top of that , it is the regulation capacities of the enviorment for temperature , moisture and even sandstorms are eroding as less plants inhale carbon dioxide and exhale oxygen into the whole system . In a bid to address these side effects that civilization has brought about , governments must take measures stey by step to tackle them . Apart from the natural areas , the minimual areas for forests and wetland have to be ensured . In this place , there are guys and girls attending pedagogy who organize activities to entratain children of every age . Not only because of oil prices , but also the costs of enssurance , the car , the parking fees , etc . In comparisson with a bus ticket that costs four pesos and you are sure that sooner or later it will come . What about lookig for colleges which offer Wi - fi Internet connection and a proper meal at lunch ? We have subjetive opinions ; we normally judge because we have a preconceived idea . For example , in work interwies and jobs that have direct contact with the public , it is better to wear a formal or smart style . Overall , my personal opinión is that we give too much importance to clothes and appearance than we should . Although on some occasions some clothes styles are required , people should have the freedom to choose what clothesdo they want to wear , and it should not have consequences in our lives . In countries like Mexico , some people have the opportunity to use Uber , which is a service that you can use if you have a credit card . It is an amazing service , but not all the population have a car or the financial status to use an Uber , so people have to use public transportation , no matter if the bus or cab driver yells at them or drives badly . In Mexico , the public transportation , in particular the cabs , are not a very secure services , because some of the drivers steal and kindnap , in many situations they could kill you if you do not take precautions . But despite this , it is very sad that in that place people can not do some things because they do not have the possibilities to pay for something more , so they have to take public transport . Although we did not have the current social communication means such as Facebook , Twitter , Whatsapp , we were very sincere and close to each other , more than these virtual frienships prevailing today . I have already exprienced one friendship through an organization , International Youth Service IYS , a charitable association established for youth friendship . The best of all in real frienships is to always believe in your friend 's abilities and be his real mirror for good and bad actions . He will be the same for you . Despite the bad weather , if you travellled by car , you could park your car near your destination , so that you could arrive comfortably . I think that I 'm good for this job , because I really sociallize with children . Well , the part of the day that I enjoy the most is nigth because it 's when I arrive at home and I have finished my whole rutine , so I can take a break and I can do whatever I want and I can just relax , so I would say that nigth is the most relaxing part of my day , so it is the one I like most . I think there are things you need to plan because it 's important for your life , but it depens on the situation , because I also like to let things be alnd let them happend because they have to happend , so the majority of the time I prefer not to think about it and just let them happend and not to plan anything . But if it 's something related to my future or sometehin that will really afect me , I prefer to plan it , like what kind of job I want to do or about my dregree or things like that . David is always ready for a joke , but amazinly , he has the ability to appear serious . I do n't like to travel by boat , because it 's unconfortable and it takes ages till you arrive at your destination . Cordoba is a trhee hour train ride south of Madrid , and attracts visitors from all over the world It is the only Mosque in the world that is not oriented towards Meca . For a job , i recomended you travel to the coast in Cadiz , Malaga or Huelva and look for a job on the beach , because at the sime time as you are on the beach , you could earn money . Among my aquaintances I have a reputation for being a friendly , positive and talkative woman . When he was little , he heard his family talking about how happy they were because his brother Peter waas following in the footsteps of his mom . Every day , scientists try to develop new ways to improve the way we live , so that we are hable to pollute the planet less . It sounds a little bit strange , but by installing solar paniels and other features in these homes , we live a much greener life . Undoubtedly , there will be some changes but , because we know why we are doing it , there would be no problems . We take food and drinks and we spend a day in beautiful places such as the top of a montain , an amazing castle or a tipical market in a town . The film is about this CIA assassin who ca n't remember his past , but he knows he 's being chased by the agancy . It was so exciting and funny listenig to all those musicians , because some of them actually did n't have the skills to play and did n't have the charm needed to warm up the people . I 've had a little bit of experience of summer babysitting for some kids . In Italy it is more diffiult to be a babysitter because , if you are underage , parents should take responsibility for you , so it is better to be over 18 . To be honest , I 'm not the best cook ever , but I can cook a few good things like scarbled eggs , pasta and meat . One of my carachteristics is that I 'm a very precise person . For example , I enjoy making lists because they make my mind clearer , and I strictly follow what I wrote so everything , hopefully , ends well . I am 25 years old and I finished my studies in psicology this year and I am available to work from July to September . As for languages , I speak native Spanish and Catalan and also I speak French and German fluenly and recenly I passed the First certificate in English . Furthermore , if I were you , I would go with joining a healh club . You will not feel self - confident and happy , but your outward appearance wiil be better . I arrived extremely exahusted , because I could n't sleep the night before . All day I was liying on the beach , talking with my friends and having an incredible time with them . I 'm Catholic . I believe in God , but I 'm not very friendly with the Vaticano 's rules . Travelling by car is so much more conveniente if we think about small places such as villages or small towns . If you consider the cahotic traffic and the long queues to get there and the impact of these factors on people 's health and people 's finances , I 'm sure you 'll change your mind about public transport . On the other hand , it is possible to find hibrid cars , but they are more expensive than those that work with normal fuel and , for that reason , this kind of car is not people 's first choice . Such policies will involve taxes on poluent cars , the increasing of fuel prices and the introduction of benefits for those who opt for more environmental means of transport . Shakespeare provided everything the people asked for --- laughter , romance , and tragidies . We would buy next , impractical high - heel shoes , which will spend a couple of years in the wordrobe . The last but not least disadvantage of doing shopping , is that in the mall could prowl many pickpokets , and they could rob us . Interestingly , the pruchase price of " Carde " and " KD " is almost the same . However , " Sebu " leads with a pruchase price of $ 1,000 . Wherby " Carda " and " Sebu " score with warrnty expenses of under $ 150 . As a long term investion , I would choose the " Sebus " model even though its purchase price is very high . Inhabitants can go to the countryside to have a pacnic or excursion with their friends or families to relax . Ater natural areas , such as farmland , forest and wetland , are destroyed on a large scale , there are no close places with beautiful scenery to visit . The building land is supporsed to be their home . It will sabe lots of plants and animals . It will save the environment , so it will save you and me . She had a feeling that her birthday would n't be oridinary . Firstly , just after she went into school , they greeted her with a million colofull balloons with inscriptions with all the best wishes . Eventually , they came to the lake on the suburbs and then she saw something unexceptable . In my opinion , I recommend you to stop going to sports classes , because I think music classes are better , because you can also get a job in an orchesta or something like that . Ever since a curse was put opon Ailee 's grandmother , the girl has been living a daunting life . Max was so anxiuos to see all the different kinds of wildlife . Halfway through the trip , Max heard a wierd noise close by and he decided to see what was going on , but before he knew it , he was all alone . Max coud not have been happier . " I practised Ashtanga and Iyengar 's styles of yoga and Ruesi Dat Ton ( yoga of Thai hermits ) , learned different approaches during my training in India and Thailand , and my practice brought me to Classical Yoga - Correct Approach to Spine school , the way of exersising I found the safest , the most beneficial for health and scientifically grounded . She was a foreign student in Palmira , in the north of Siria . Then Stefan 's daughter , Aurora , goes to live with three faires . The three faires lead a prince , Philp , to the castle because he has to give the kiss of true love . After taht Aurora does n't wake up . Subject : Aplication . I am writing to apply for one of the camp monitor positions you advirtised in last Monday 's Daily News . I am interested because this post will give me complementary experience . To begin with , evidently , technological progress has noticeably enhanced quality of individuals ' lives , controbuting to the economic growth of numerous nations . one of the most ecxiting days of my life was the 23rd August 2014 . ! If , ( one day ) I have the possibilty to do it , I will go to distant galaxies and I will see how the universe began . I mean the timetable punktuality , time interval until tne next bus and so on . It opened more than twenty years ago and still now is the leader in the chimical sector . Try to be spontaneus and not too sliced . Do not talk too much , as it is a sympton of anxiety . I worked on that team more than ten years ago ( new employee recruiments ) and I can guarantee that for the first interview it is important only to make a good impression . I also teach childring at the age of 10 or 11 how to play it . " Carne Enchipoclada " you need to choose the meat ( pork tenderloin , beef steak or deer meat ) and it is accompanied by a sauce of chile chipotle with potatoes cambray . " As a matter of fact , televiewers are not able to decide the script , but they can still decide to switch the television off . I am looking for the chance to work for your company because I know that your store is the leader in large department stores in the UK and last year your company won the prize of " Best place to work in 2013 " , and I want to share my knowlegdge and my work experience to improve your profits every year . According to the CDC , the percentage of children aged 6 to 11 years old has increased from 7% to about 18% in 32 years in the Unitated States . This means that in the past three decades , obesity has more than doubled in children , same that had diseases just like diabetes , ashtma , cardiovascular risk factors , mental health disorders and muskuloskeletal problems . I have little cousins and sisters so I 'm very good with kids . I 've experienced all kinds of situations , so I think they wo n't be a problema for me . As I said before , I have young cousins and we meet on Saturdays so I need to think of activities and games to keep them entretained . I 'm also very good at sports . I practise trak & field and pingo pong , so sports are n't a problem either . I 'm an outdoors person , so I will be very happy with the accomodation . I would be very thankful to work for you if you decide to accept my application . The cards included the programmee of the concert and some photos of children from all over the world . I did everything by myself because everyone had sometihng to do on their own . I 've been doing martial arts for eleven years but I havent lost the passion I feel for it . Many people oday have pets of all kinds . First of all , a pet is a friend for the family and , much better , is a memeber of the family . One more advantage of qning a pet is that it helps children learn to be responsible and carring . On the other hand , there are a lot of disadvantages to owning a pet in big citiew . Pets and animals in general need fresh air and exercize outside and not to be always in an apartment . I have heard abou pets that get sick through living in a small apartment in town , and that is terrible . In my opinion , it might seem good to have a pet if we teke care of it . All in all , qing a pet in a big city must be done carefully , ensuring all that the pet needs . In the class , you should take notes and write down what is Iimportant . If you have any questions , then you should ask teachers to help . I really do hope you get used to the neigborhood . Neverthless , I would like to improve some skills and although I did very well , I still got confused . Nowadays , people are aware of environmetal problems and they will try to figure out solutions . Moreover , there will be important thecnological advances in our lives , like intelligent mobile phones which can help us with day - to - day tasks . Nevertheless , poeople try to save money by every conceivable means . You have all the kinds of German food you can imagine , from sausages with chucrut to Gullash with spatzle . Most of the paintings and photos are from Germany , because that town was occupated by German people many years ago . Almost everybody has at some time thought of taking a gap year between leaving school and starting university , but do we really know all the advantages and disadvanatges that it entails ? It is also said that at the time of heading to college , those people who have taken a year off are the ones who have least difficulties learning and relacionate with other students because they have got used to it before . Many automobile companies are working for a new future of automobils . Some people argue that this new idea of cars is a milestone for us and it will bring only positiv effects with it . At the moment , people who have got a handicap can not drive a car by theirself . In contrast , self driving cars are very expensice and many people can not buy one . Buses are the mai transport in my area . If you are not keen on travelling by bs and you do not want to get the car out of the garage , taxis may be the best option . conclution The mayority of users are young or elderly , since they are n't old enough or they are too old to drive . This is happening now , and we are not even fully devoloped in technoloy . So , I would recommend this CD to other people because I think that they could get to know the signer depply through the songs which are on this amazing CD . I do not agreee with the idea that there is no future for public transport , because it is a perfect means of transport for commuters and , nowadays , a lot of people are conscious of global warmig and the envirnoment , and refuse to use the car every day . There are a lot of benefits to public transport . First , you do n't have to drive yourself , you can listen to music , read a book or wathever you want without having to pay attention to the traffic . It is true , too , that travelling on this mode of transport helps the goverment because you have to pay for it , and the majority of modes of transport are cheap enought for everyone . However , so many people love having their own vehicule , a car , a bick , a moto , because this give you other kind of freedom , you chose the way , you chose the time , you chose the way in you drive it , the positive thing about this kind of vehicule is that you do n't have to take a bus , for example , crowded with people , you can go alone in your car , or with whoever you want , but the important thing is that you choose . In conclusion , we can say that every kind of transport has its own pros and cons , but in my opinion , the difference between both of these is that in the secon you choose your own way . Guys should not go snowbording . Most people eat scrammbled eggs and drink a cup of tea . As usual , I 'm on a diet , so I prefer only yogurth . In recent years , people 's attidute has been changing . However , public transport has been critised more and more in recent years because of its inconenvience . Therefore , buses do not run as frequently or reglulary as they used to . In the end , the public transport service needs to change to attract more people and to have a rosieer future . The purpose of this report is to inform you about how the city of Granada takes care of the envirnoment . And there is a big universitary commnunity involved in recycling . However , Granada can not be considered as cycle - friendly . There are fewer ciclyng lanes than in other cities of a similar size . I consider that Granada scores 6.5 out of 10 for taking care of the envirnoment . When the weather is good enough , close to the castle take place many kinds of parties and enterinments . That day was a terrible day for Michael . He woke up and felt totally exhauted after an overwhelming birthday party . He did not answer at all , besides , he hit the chair near her , and unfortuantely , that chair hit her in a serious way . I think that many google users will be happy if the developpers bring more useful information to the main page , for example , weather information , carrency rates or hot news . Moreover , google map service needs some improvements , such as street names , map accuracy and more city panorams . In my opinion , a trip will be fascinating because of the fact that the building of the Brewery was orginally a German - owned brewery which has been brewering beer for almost 400 years . It contains a liitle museum which is open for tours . There you could buy some souvenirs - glsses , bottles , T- shirts , cups and , of course , beer ! They serve all meals in small portions , and they suggest that the servings can be shared , so everybody can try more itens from the menu . As a result of this , many people are trying new opitions , like car sharing . I 'm a teeneger and nowadays I recognize there are a lot of ways to get to know something . In the past , technology was poor and only a few people had a smarphone or a computer . Here we have some of them : anemia/ anemia ; rickets and malnutrion … The lacck of a sense of civic responsibility leads easily to bushfire . Its true atractiveness , in addition to the decoration which is at the pinnacle of Andalusian art , is also its location , which is unique . If you are lucky enough to visit this wonderful place in summer , I recommend you attend the Granada International festival of Music and Dance , which is celebrated in Genelalife 's gardens , where you can enjoy amazing artists and orquestras in an unrivalled setting . After that , the pringting process comes into play . The most significant procedure is called inspection , which means mannual checking by special machines and staff , and then they are classified into 3 different categories , including good quality sheets , partially damaged sheets , and bad sheets . Namely , Design , Preparation of matal plates , Printing , Inspection , Packaging and Distribution and Disposal . process is inspectation , where the printed sheets are If they are not very good , we can destroy them securely . However , a few sheets may be partially damaged . That does n't matter due to the fact that further seperation will assiste you with getting rid of the wrong sheets . Remember when in school you learned the three esential things for living ; reproducction , nutrition and interaction ? Well , humans have become more and more sedentary whith the passage of time and have forgotten about interaction and mevement . I might not have the tipical sportswoman body type , but I really enjoy doing sport and feeling the glory of movement . My fabourite sport is tennis . Although it is not the only one I practise , it is the one I most like to play . Apart from ovbiouslly having fun and socialice , the way you feel after running and burning feels really good . Therefore , in the future , I will keep improving those abilities and become a more oragniezed person . If you want to start practicising this sport , you have to get fit and run a lot because you have got to have a good physical condition to play because it is a very demanding sport . Let me introduce myself . I am Luis from Spain and I work as a civil engineer in a Spanish infraestructure company called Acciona . I was very surprised to hear that you want to spend your year off from university in my countrey and I am also extremely flattered . It 's one of the most beautiful castels , in my opinion , and it represents the most important thing this countrey is known for , and that is Dracula . He was actually one of the rulers of this countrey and his real name was Vlad Tepes . And if you want to have some fun too , there are some fastivals that you might enjoy . The biggest one in the countrey is in the cty where I live , so you 'll have a place to stay , and for free . I hope my advice was useful and I look forwored to seeing you next year . For three years , I babisitted my neighbor 's two daughters . There have been rumors of the contruction of a Metro in our town . The statement given in the rubric proposes an issue of the future of pulic transport in developed countries . Modern megapolises are suffering because of a surplus of automobiles . At the beginning of the 7th century , Cáceres was conqueted by the Arabs . At the end of the 14th century , Cáceres was conqueted by the Romans . Therefore , it is a multicultural and multirracial society . The center of the historical city is the Big Square . There are mixed Arabs and Romas buildings , and two cathedrals . My favourite restaurant is Chinnesse . In Caceres we can eat Chinnesse food at Food House . I love swimmming because if you are angry or your job is very stressful , you will feel well after thirty minutes in a pool . Actually , this sport is very healthy , so some doctors are recomending this type of sport . Afterwards , I will have the right to take part in the intarnational missions to maintain peace under the patronage of the European Union . Secondly , I am going to inform you about how our citizens are tryinq to keep the area clean . - There are cleaning campagnes twice a year . - Last year there was a campage to renew and repair the most attractive parts of the village . I hope this report informed you fully on the environmental situation in our villge . In Budapest the rubbish is collected separetely . For a very long time I 've been doing my best to separate rubbish , and then , it was a really bright summer morning , I saw that the special yellow bin for paper and glass was emtied into the same lorry with the other rubbish ... I have been learning English for 8 years and after I sat r the FCE exam two years ago , as soon as I passed the exam , I started preparing for the cetificate in advanced English exam so that I could demonstrate my English skill even more , both written and spoken . Although there are a lot of people who strongly believe the best way of travling around the city is by motorbike , there is also a large proportion of society who are sure it has too many drawbacks to be worth buying one . It makes my every journey unpleasnt and I feel uneasy all the week before the flight . But this mode of transport is n't so comfortable , esspecialy when we must travel onshore ; then it 's complicated because travelling by boat is allowed only on the sea or any sizeable river , the courses of which are usually placed less conveniently than roads or even railway tracks . In general , the facilities are well maintained but the majority of the users think that the installation should be improved in the baskteball and tennis courts and maybe the bathroom should be remodelled . The workers are very kind and simpathetic and enjoy teaching . Desadvantages Our cities emit too much carbon dioxied , making the earth warmer . Floods , droughts , and famines . All of these have great effects on humans and animals . For instance , the loss of properity , the disappearance of people , which is not good for the development of human beings . Finally , governments should ues the space properly , for example , making plans before building buildings , estimating the effects on humans and animals . I think I could be the right person for this job . I 'm really patient and I really liove to be with kids , play with them and take care of them . I always have fun with them . I also know a lot about cooking because in junior high I took cooking leassons and I learned a wide variety of dishes and snaks . However , aquaintances of hers , the students at the University , comforted her . Surprisingly , when you are practicing this sport you improve your speed and coordination too , so that could be an interesting reason for taking it up if you are not involved in it . Personally , what I can say is that practicing this sport makes me feel really alive and not only when I am playing it , it also happens when I am watching it , especially during the World Cup . Curiously , there are many ways of taking care of yourself when you are taking up this sport , so what I advise you to do is to do some exercise before you go on the pitch , because it not only prevents you from suffering from spraid or other kinds of injuries , but keeps you active to keep the level of your game . It is a majestical castle conviniently located on the river . First of all , they are supposed to be desighed with great care and many considerations , such as the background colour , artwork and security issues , all of which are crucial for bank notes . Next , it will come to the most improtant step , inspection . The next step is the most important and it involes inspection , which means good and bad sheets are separated during this process . One of the measures that we , as world citicens , can take is to leave our cars at home and start to take public transport or to share cars with others . This is causing diseases and alergies that are affecting the citicens . Enginers are studying new engines that are more environmentally friendly , but even so , we have to reduce vehicles to help reduce the greenhouse effect and pollution . Plans and programmes are being developed to reduce the number of cars driving throuhgt cities . Some of these oave the same aims . Taking public transport can effeciently reduce the emmission of carbon dioxide and will help the earth to recover from those disorders . The above reasons I mentioned explain why I do not agree with the statemant that public transport has no future because travelling by car is more convenient . It is importatnt when we work or study in international areas . I think that there are not many disandvantages of learning another language . Also , I found some books on the internet with Crambridge 's exams . The Forbidden City , one of the most famous museums in China , has opened its online version to the public , which means people can visit the Forbidden City on the Internet instead of taking a time - consuming flght to Beijing where the museum locates . Once I visited a museumm to find some pictures of cave painting in France , but when I went to France to see the real painting , I found it was more vivid and could show you how great the French cavemen who painted it were . Admittedly , a museum has its owm merits ; it is easy to find on a map and is always emphazised as a symbol of a country . A documentary , a book about the culture is cheap and easy . We can consider it an ecomomical method . If you decide to find out some information about a totally unknowed country , a museum is not a wise option . Machines can tell us lots of imporatant information . The tables and the chairs are very beautiful because they are like in the American films but they are very inconfortable . It would be incredible if you started your trip in Cartagena , which is a caribean and tropical city . We think that it will be convenient for him to apply for a Postdoctor position during his military service . His ideal plan is that he will try to apply for a Postdoctor position this fall or winter , and then he can work abroad after finishing military service ( August 2015 ) . In terms of protecting the environment , taking public transport may cut down the carbon emmittion . It is urgent timing to avoid the greenhouse effect that people should think about how to decrease the carbon emmition . There are a lot of places where people are building their houses . perhabs we will be living under water ? Many buildings , like skycarpers suggest we will live in flats which exist above the ground , and that is not extraordinary , but how about whole cites prospering under the water with their own source of light which could replace the Sun ? The marketing departerment also gave me the responsibility of publicizing events via Facebook . In my opinion , the obsession with business trasforms society into a ring inside which every man is against his friend only for the sake of an excellent career . The last point that has changed people 's lives is the tendency to have the same thougths or the same goods . Yes , they will , and I hope that we will improve our thoughts and we will have the cosciousness that we are not " supreme " and that we will never have the right to imposing us in the world . To my mind , the beautifulness of music does not depend on its varieties . I think that Spain is an incredible country since it has all kinds of landscapes : mountains , beaches , lakes , and you can enjoy adventure activivities , for example , trekking routes , climbing , bungee jumping , surfing ... You can do different kinds of tourism depending on the city where you want to go . However , I recommend travelling to Extremadura in spring or Autumm because in summer it is too hot . In Extremadura , you can enjoy the environment and you can walk across the famous Monfragüe Nacional Park or Tajo - International Natural Park . John talked about the serious problems caused by not recycling things like plastic bags , bottles … that end up floating in the sea because humans do n't take care of their environment , and all this is causing loads of acuatic animals to die . I had the chance to be introduced to a different world and I started looking at everyday life through differnet eyes . There seems to be nothing better , nothing more interesting , exhiliring , breathtaking or stunning than taking up this sport . It 's also not said but tennis is one of the sports which causes an enermous amount of injuries , so it 's necessary to be under the constant supervision of your doctor ! There are a lot of bergains and cheap items on the market , which very often catch our eye , but I definitely want to warn you against them ! The " Mariahilferstraße " is the perfekt place for people that want to avoid overcrowded malls . Espacially on a rainy afternoon , the " Donauzentrum " and " G3 " are the prefekt way to spend your day . I 'm also a volonteer for the Red Cross , so I 'm used to looking after children and organising all kinds of events . We do n't have to think too much about almost anything , needing no person for company since we have all these distractive devices for entertainment and relaxation . I 'm really glad to know about your future plans . I definitley think that this year of travelling and exploring will be a great way to grow up and meet new people from different cultures . I worked in the OIL MINSIRTY 's central library on foreign scientific books which mainly concerned the petroleum field . Just do not order the pancakes , because they do really bad pancaces . There are about a thousand animals and in the midlle of it is a gorgeous castle . Their novels have a lot in common : first of all , the plot is usually pretty complex ( as we can see in David Copperfield by Dickens and Wuthering Heighs by E. Bronte ) , and so are the characters , who are always well described , especially on a psychological level . Furthermore , both the authors included in their works the figure of the noble who helps the hopeless child who comes from a lower class . If they want to use it , they should try to focus on getting important information which is benefial to improving their knowledge . Nowadays , it 's common to think that travelling by car is much more conventient than travelling by public transport , but it 's not true at all . As for the pullotion , it could be reduced if people used public transport ; it is well - known that CO2 emissions per passenger kilometre by public means of transport are 80% less than a car . They ca n't do trivial things such as shopping or going to the cinema with their family without being aware of the fans and papparazi . Sometimes , famous people look a little bit different than on the stage and their faces wihout any make - up appear on the Internet . As a result of this , many studies have shown that athletes shuold be motivated to push themselves beyond the record . You certainly will learn to fail and win , but the most important thing that you will lern is never give up . It usually starts with small talk or compliments , as at school I was taught that expressing appritiation to people can be a good start of any kind of relationship . Now the question uder discussion is whether public transport has a future as travelling by car is gaining more and more popularity because of its advantages . It 's not a secret that gas , insurance and reparings are costly . Safity issues are also very important . It is obvious that it is safer for the environment than thirthy cars with a single person inside . Moreover , cities ' authorities encourage the development of public transport because it creates employment , lessens the impact on the environment and contributes to road safity . He knew that Peter was a little bit irisponcibile , but he thought that the arragement sounded perfect and nothing could go wrong . But there 's something in her big bright eyes , circled with long brown eyelashes and frecles , that makes her appearance unique and causes Tom 's heart to flutter every time he brings to his mind her piercing gaze . Their transformation from innocent posters to digital screens ranging in size from miniscule to vast has made adverts all - pervasive . Local people were invited and a talent competiton was held . I am currently an intern on a scientific research program in a group called GALP - Logical Programming Teaching Group , that , with the local city hall of Araraquara , aims to transform the city into a national technology , research and software producing center , accomplishing this goal by teaching logical thinking and alghoritms to kids , diminishing future evasion in many exact science courses . It was aweful . Thus came the question of what I was going to do next , but I was n't ready to make that descission back then , so with the agreement of my parents , I decided to take a gap - year . I was going to spend the next 6 months in the United States which actually teriffied me . I also got to know myself better and I have reached a descission about what I want to do next year . I am going to study at the university . Even though they are well known , they have a right to have free time and they should be albe to spend it however they want to , without anyone disturbing them . The idea of the sublime that Wordswoth had is considered by many as the standard idea of the Romantic sublime : forms of nature that inspire feelings of awe , danger or weakness . There is also a food court on the third floor , catering to all sorts of customers , as well as a few restaruants on the first and second floors . Another shopping option is the main streeet in the centre of Viña del Mar , which used to be more popular in the past , but which was displaced by the shopping centres . I 've always liked to play with kifds and do fun activities with them . Away from busy and noisy roads , the beautiful old inner city reflects what Brussels really was for centuries ; small but cosy cobblestone streets flanked by small houess and shops in light colours and with old - fashioned roofs . Travelling across the Atlatic Ocean , for example , requires an airplane or a ship . Fortunatley , Hundreds gather there , parking spaces are full , again facing long queues in stores - no matter how unpleasant it souds , it is the reality nowadays . Afterwards , some get into their cars and get stuck in traffic jams on the way home , it causes more tension and disimproves your mood ! On the other hand , the majority feel lazy and they go shopping just for special occasions , without any rush , they dedicate time in search of fashionable clothes , best quality garmets , stylish items . On the other hand , searching for your favourite brands , non - seasonal products , some special goods , just looking through shelves , trying the garmets on , asking for advice , testing products , there is plenty of work to do to make a perfect purchase . Fortunately , this unnavoidable part of our lives is not that problematical anymore , as we may experience the pleasures of online shopping without leaving home . As a shy person , I can confirm the differences between real life and virtual interacion . I am at home in my lovely house , where I love every detail of the interier , where everything is in its place . My kids are proud to have parants like me and my husband . Friends , colleagues , family all thes people who were next to me on my way to this wonderful day . Much shorter than their fellow tennis players , they have always been able to compensate for their physical shortcomings with an extremely good tecnique accompanied by a strong head . You must never surrender : until the last ball has bounced twice on the ground , you have to keep fighting , regardeless of the score . Nonetheess , it helps to shape your own personality . She is regreting because their relationship got worse and it was n't what she supposed it could be . With this in mind , money would be spent on constructing a running track where no - one would have to worry about traffic or obstacules in their way . Conclusión The lecturer 's second argument invovles capturing and destroying the toads using volunteers . One of the main advantages of cutural practices is that they allow societies to maintain their identities and gain economic stability . My study plan is to untertake a pre - university programme locally to prepare myself for further studies overseas . It is worth mentioning that schools are considering the environment as part of the education sytem that should be taught to students . Trash distribution , using green products that repect the ozone layer , not wasting water and many other actions . For exapmle , we can take at least one family member with us . When it seemed impossible to catch him , a girl , who was crossing the street in a wheelchair , crashed into the thief and he fell down on the paviment . DYI Classes As most college students will soon leave for university and will live in dorms , without their parents , they are oblidged to fix malfunctions by themselves . It takes a higher level of creativity and spontaneity to succeed in it than your usual basketball match , since its flexible rules , no - coach system , intensified relationship between the player and the crowd , and reduced number of participants widen and complexify its field of possible actions . But still , our customs have evovled a lot . Due to the geographicall conditions where Japan is located in the Pacific Ocean , people here have adapted to eating raw fish and like to offer it as a main dish to serve customers in most restaurants . Successful communication between different cultures will happen only when we express oueselves precisely and interpret the information accurately . They are courtous and industrious . And then severything had crashed . Michael tried not to think about it and to listen instaed to what she was saying ... Her voice was weak and fleble as she said " .. and I was really depressed , you know , and then I thought ... we always talked about going to India ... and I thought ... maybe we could fix everything .. so .. I'm just asking .. will you go to India with me ? " In the case of politicians , I do n't mind what they do on their holdidays , for example , if they work properly when they should . I think the Royal Family is an exception because they are supported by all the citizens , so I think we ( as citizens ) have the right to know eveything they do if we want . I had to take care of other volounteers . Dealing with other people is the hardest part , escpecially when they 're the same age as you . When we want to go on a weekend trip to the countryside , a car is irreplecable for families with children or animals . She used to live in a flat , so she had never disovered how different and beautiful the world was . Therefore , one should not waste time watching tem . In these cases , TV is undoubtedly bad entretainment . If you are looking for a film that provides you with suspense and action at the same time , I recomend you to watch " Now you see me " . So if you enjoy magic tricks , surprises , very handsome actors and splended actresses , why would you miss it ? But , let 's face it , doing these things is not as wonderful as discovering magic powers , being kidnapped by aliens or singins a song with Justin Timberlake and Lady Gaga . We will be travelling by car to a campsite in Gemany . To help with this issue , the nurse should make certain that Mr. Sharma is confortable , and elevate the head of the bed for a more upright position in order to facilitate and increase his oxygenation , helping him to recover from his respiratory instability faster ( Snowball , 2012 ) . Also , I encourage you to visit Ukraine and to see its sightseens , to feel the culture and speak to nice people ! If you prefer shopping outshide , taking a trip to King Street would be the thing to do . If you want typical souvenirs , you can go to Buckingham Palace , you will find a lot of small shops that sell souvenirs for a reasonnable price . I have a high level of spoken English , as I have been learning it since early chidlhood . Companies like Monsanto that engineer plants with steeril seeds , encourage non - sustainable production models that promote the extinction of independent farmers who have to choose between their lifestyle and the new farming era . In many cases , volunteers are crucial to helping support life , as when meals are delivered to homebound people . Things gradually improved day by day for a time and my reneues started growing . It turned out that they sent my work to a few Instituts and one of them was interested in me . When you use a technique or defense against a technique , you control your body 's movement and coordinate them to work at the same time . I throughly enjoyed the lesson and , according to student feedback , so did they . I suggest visitin the Vatican , as I said at the beginning ; the country inside the city . On the one hand , I have been learning English for so long that my good profeciency has given me the chance to get a position in an international team . On the other hand , I have learned French and Spanish just for a few months , because I was curious to learn the oficial language of the countries where friends and relatives are living . The writer lets us observe the fear , anxiety and the defenceslessness of Sam , a neurological patient who is just beginning to emerge from his comatose state and who has yet to deal with the reality of his new situation , sorting out pieces of memories involving relatives and not quite understanding why a woman he does n't know anything about claims to be his wife . In Korea , we have many kinds of work which are related to English , so you can get a job easliy . If you get the intership , you can work as a real businessman . Sheets in the second group then get seperated into good ones , which , together with good quality sheets , enter a process of packaging and distribution where seperate notes are cut and finally enter the market , and bad ones , which go to disposal with bad quality sheets , where both groups get securely destroyed . First of all , let me tell you the adavantages . She nooded and made another effort to look around . The other person was n't convinced , howewer . " He made sure his voice was heard on the streets , to reafirm his social position . The couple nooded and showed the ID of the man from the other city . The receptionist nooded and conducted both to the main hall . It is in these moments that I give it my all and realize that all the pratice I had really paid off . I am a cheerful , energetic and hardworking person , and I am also a very responsible person , able to deal with small and medium groups of children , and for this reason I consider myself as suitable for the potition advertised . First of all , in this film you do n't see a gangster Al Pacino . It 's about a retired army coonel who suffers from loneliness and depression . There is a great public transport syste . He used to dream about him coming into his bedroom , laughing out loud , showing off his sharp teeth , threating him with the most horrible punishments . Secondly , public transport is better for the environment than using cars because a bus has more space than a car and many people can go on a bus , thus decreasing the amount of pollution and helping the enviromnent . Without the routine that studying gives you , with all the dealines , the exams , and other stuff that force you to get things done , and , as a consequence , teach you to be a responsible person , which you will need to be when you get a job , you will simply be wasting one year of your life by taking a break . One thing that I 've learned in my life is that you should never take a break from your everyday routine unless you really need to , due to fatigue or for some other physical or pscychological reason , otherwise you will be , I repeat , just wasting time , time that you could be spending in a usefull way , by getting something done , or improving yourself academically , intelectualy or doing whatever you think can enrich your life . I like to beleieve that , like the old Latin proverb says ( and I have already said this ) , there will be glory at the end to the man who endures hardships on his path . I hope you do n't think that sharing these thoughts with you makes you my new best buddie . I am writing in reply to your advertisment published in the local newspaper for the vancancy of Junior Chef . Moreover , I am currently undertaking a Chef Training Course which provides me with not only practical but also theorical knowledge . Furthermore , I alwyas try to maintain a positive attitude towards my responsibilities and sort out any problem that may occur . I have fond memories from my childhood . She was always cheering me up when I was in sad or difficult times , even when she was not feeing well . Dancing requires a lot of things , like cordination , flexibility , and physical fitness , just to mention a few . This can range from the rules your parents have set for you , to the laws created by the governmen . And , of course , to add an extra actvity to my CV as I usually do every summer . I must say that not all of them are veru easy to work with . However , I must agree that travelling by car can give you more freedomn , you can carry your shopping and pick up other people on the way . It is known , that it is the job of paparazzi to follow famous people and look for sensation in their daily behaviour , and celebrities are aware of the fact that they are recognised everywhere , but an interest in someone 's private life , when the person does n't want it is basically a synonim for trespassing . If there is any problem with the cash registrer ( very common , actually ) , you have a phone number under it of a good technician . He was following an important European summint on environmental issues . Such an experience made Jake realise the considerable impact that a good public transport system has on people 's lives and their surrouding . - access to public transport is way cheaper than taking care of your own car ; though initially it might look like a huge disbursment of money from the community , in the long term it shows itself to be the most efficient way to travel ! This kind of action , when peformed collectively , requires coordenation of efforts and an abitity to work together , two qualities that are frequently forgotten in our individualistic world . If you play footbal , you know how to act when in a team . Also , footbal is a physical game . In times of escalators and cars , it is refreshing to find an activity that involves movement , velocity and strenght . In fact , it can be argued that the human virtues are a by - product of conflicts and fights ; that they are those character traits that we aknowledge as important for everybody engaged in a competition , be it for a trophy or for a country . In a club , you will find professional advice and also as many peopole as are necessary for a match . My name is Aly Meeuws . I am 16 years old . I live in The Netherlands at the moment and I am really planning on going to the USA in the future , so this would difinitely be a great experience for me , especially for my English and being away from home . Besides that , I also really enjoy cooking with my mom at home , so working in the kichens would not be a problem at all . Finally , it will look into possible future implications of this kind of technoogy . Namen and Kinnison ( 2012 ) indicates that " the three types of social interactions that social networking enables include ( 1 ) creaction of an online identity , ( 2 ) establishment of relationships between users , and ( 3 ) development of layered communities defined by the lists of connections each user establishes " . On the other hand , on Facebook , people can share pictures , vídeos and thoughts without restrictions . Furthermore , some departments of police in the USA have used Facebook to share a vídeo of a felony with the expectation of identifying the suspects , and their followers were apt to say something about the incident in response to the publication . For example , while women think about millions of things like what they want to do or have to do during the day , men just do nto think about anything and can be like that for hours , just whith a blank mind . I also learned that it is the mother that gives the principles and the direction of a man 's mind , and depending on her , he is going to be a sexist or not , he is going to help and be an honor man or not , he is going to be a good and caring father or not , he is going to be a responsible human being or not . Women do not knoe their importance for the future in their own homes . I found this movie both exciting and emocional . Both thumbs up for me ! We regulary organise film projections and discussions around a subject related to the film . For example , with every film seen , our students have the chance to practice their language and to develop their own opinions , particularly as we always have discussions aroud a subject related to the film . Also , our monthly speakers are exellent . For example , last year we invited a well - known actrice , Janet Hewitt , to share some of her experience on Broadway . Unfortunalety , organising these kinds of events is costly and the money from membership fees is not enough . Being founded in 1920 by our well - known alimni , John Carter , the English Language Club is the oldest club in our college . The fact that everyone from the community cand participate in our events helps us to develop a positive relationship between the college and the community . We hope you will be ablte to take all this into account and will find it possible to help us continue and improve our club by funding us . It was a hot summer 's day , everyone was walking to their usual destination ; work , school , to buy some groceries , pick up the laundry or their clothes from the cleanners . Everyone except Peter . In her left hand there was a large steaming cup of coffee that landed on Michael 's new shirt when he bumpped into her . One second later , Michael was covered in coffee , burnt and sticky and his mobile phone screen was twinking until it finally turned off with a dying flash . In this article a teacher refltcts on his experiences of creating plays and using them to help motivate students to develop their English . The most effecnive way is to practise every lesson for ten minutes at the beginning and end . Some learners will not want a spiaking part . You could even ask them to be promters . Also , they can see how much language they can produse . Regarding my academic experience , I am currently completing my degreee in Primary Teaching and Psycology at the University of Valencia , Spain , where my current speciality is misbehavioral children . So far , I have recieved excellent grades in all sabjuects , and I am on course to graduate with distinction at the end of the semester . Encoled you will find photocopies of all relevant certificates . It was from the most dangerous and terrifyng gang in the village . That was the first crime I comited and here I am now , in jail . If you like animals , you 'll ejoy seeing those beautiful horses running and jumping as fast as they can . However , I personally think that it should not be regarded too critically but should only be handled responsably , according to one 's personal needs . Before the trip started , the company who decided to make this trip said that everything was perfectly calculated so that it was imposible to have any kind of problem with the spacecraft . When you are sitting in the plane next to your instructor , with your legs hunging and your arms crossed … It makes an indescribable impression on you . And obviously , you should n't be afraid of hights to enjoy skydiving fully . My colleauges are nice but the management are terrible and recently I just stopped talking to them . Perhaps it is not their fault that this entire operation is so dysfuntional . In these cases , jounalists themselves should realize that they are taking it too far and that they should respect them a bit more . During this period , the town has seen extensive growth in residential areas and local amenities , and the modernisation of leisure faclilities . She was walikng around the city thinking about the job she just got . Everything was looking perfect and it was something she enjoyed ndoing before the accident took place . This is an easy word to understand , but it hides more than the defination says . I have 5 years of experience of managing , PR / marketing communications for leading brand nzmed companies : " Barbie " , " The Children 's World " , " My Toys " . In these companies I was engaged in the advertising of toys . These images became the subject of Feurer 's eponymos book , lavishly illustrated with 175 photographs , illustrating his five - decade - long career . The aim of this report is to inform the committee about the wishes of the students who took part in the survey that was conducted lst week in our school . Improvemnts to socialising opportunities Modern life orders our days and weeks in a packed schedulle of activities : job , children , housework , fun , free time ... By the time he arrived at the rivershore , some of his colleagues were already digging the ditch . I remember the warmth of twilight , wnich lures you to the heart of this town . I remember children , running about the small squares in fronf of the cathedrals ; elderly people in wheelchairs ... Nevertheless , when you are learning a language , it brings confussion . As a concecuence , he had no money to pay for a sod , so he was thirsty all morning . Tom was getting really anxious , worryng that he would never make it back to his job . At 2 pm , the flight arrived . Also , in Red Square one can see the Muasoleum , which is can also be called one of the symbols of our capital and the country . A corious fact is that , out of the five most popular sports in the world , only basketball keeps track of possession time and to me that 's exactly what sets it apart from the others . While watching or playing any kind of sport , there 's nothing worse than a team or a player trying to waste time untill the clock runs out , the game becomes dull and boring and you ca n't enjoy the excitment that only the up - tempo style of play can provide . The bottom line is ; a fast - paced game is a much more exciting experince for players and viewers than a slow paced one and that makes the " shot clock " fundamental to the dynamics of the game . Practice is the one thing that can increase the probability of desireable results and awareness is what gives you the ability to adapt to different situations , and the combination of the two is the only way to success . So if you want to be a good player , you need to put your energy and focus on practice and stay alert and surveing the court at all times so you can be aware of what is happening around you . The " 10,000-hours rule " is said to have a scientific basis , in spite of the fact that most of its defendants have never read the study that stablished it . A network developed from the South of France to Switzerland , espescially to try to save thousands of Jewish children . But now , they have told the whole world about it , some of them are now considered as heroes in Insrael for what they did during those hard times . As the population grows exponentially , the resouces fail to do the same . The hard truth is that until somenoe has to face the situation himself , it 's quite difficult to restrain oneself from wasting energy , food , materials , water ... We will have a great time together here in Uruguay . You will see some of the most popular places in this beautiful conuntry . Kyiv is a good destination for shoppoholics . The best manufacturers of clothes , linnen , accessories have their shops there . Jewellery and watch shops can also be found nearby . Different shops will offer a wide range of goods and impresse with interesting design ideas and unique styles . Even though their relationship was of the quarelling type , everyone around them , friends and family agreed on the fact that the pair were as solid as a rock , and despite the ups and downs , love had always won in the end . Frist of all , the biggest problem is that the world 's resources are extremely unequal . Secendly , with the increasing of the earth 's population , the areas of farmland are also decreasing . People in economically developed areas are in pursuit of the perfect life and the people in undeveloped areas are strving . Grandma 's wrinkled face can be horrofying at night . After an hour Mindy was holdin her baby- girl and Peter was trying to realize what had just happened . This kind of transport is regarded as a covenient way to travel . However , I disgree with this idea . On the one hand , it is enviornmentally friendly to use public transport rather than cars . Although I rarely watch the show on TV , I like the way they are trying to keep up with modern technology and that they are always making boring nes so vivid and interesting through short video clips , pictures and their choice of words . They had all got special clothes and dressed up in colourful , old - fashined dresses . Its historical importance lies in the fact that this place represents the fall of the Muslim kinddom in my country . After a few drinks , I told him that I 'm currenly looking for a job , nothing big , just a couple of hours during weekends to make some money for my journey to the Netherlands . It 's literally 10 - 15 hours on Friday nights and Saturdays , stuff like carrying instruments ( which means hanging out with musicians ) , tyding after ( finding things , like wallets and cellphones ) and , generally speaking , - helping . I 'm a chemist , I ca n't kill people becasue I want to . However , their whole lives will be turned upside down when an elegible bachelor and his friends set up home in a nearby mansion . Friendship is overall an acto of will . Friendship is a type of love which is characterized by being incondicional , reciprocal , and ready to forgive each other . Since ancient times , public transport has existed , and it suffered numerous assassination attempts . In China , for example , the dynasty Yuan prohibited public transport ( at that time , charriots ) because of fear that Han people could plot and riot against the Mongol 's dictatorship on it ; the situation was reversed in an early socialist regime when , in 1960 , Mao considered personal cars an instrument of opression and symbol of devilish capitalism . Convenience has litlle to do with the fate of public transport . Countries with high HDI ( convenience to be drivers ) , like Germany and England , are those with better public transport systems , and they are even boosting them . Hi ! My name is Alexia , I am twenty - three years old and I live in Argetina . As I have alrealdy said , I play sports , and that is why I could be helpful at organizing sports and evening activities . I learned how to cook when I was eight , so I am pretty confidente and well prepared . Bad sheets and bank notes will be securely destroed . My goal , I decided then , was to become a pilot when I grewn up . My mom has a kindergarden and I love helping her out . Every summer I help on my mom 's summer camp , but it 's a summer camp for babies and I would like to work wth older children , because I think it 's more challenging . I would love to work at any place across th US . I am very good at artistic things , such as , drwaing , painting , cooking , dancing and a lot of other things . My cousin , who is studying English Literatura , told me that you have much more freedom when you start university , so do n't worry ! Lnguage itself also becomes vitally important : the boy s ' speech is peppered with made - up words that highlight the isolation . There must be something very special about a movie when , after the third time , you 're still leaving the cimena thinking " I have to see it again " . Starring Italian comic Roberto Begnini ( who also wrote and directed the movie ) in the main role of Guido , this life - affirming tragi - comedy is about a Jewish father trying to shield his young son from the horrors of nazims in the Italy of Mussolini . To achieve this , Guido creates an imaginariy game for his child once they are deported to a concentration camp . The strength of the movie relies on the goofy , loving , eccentric character played by Begnini , his exceptional comic talent and his ability as a director to deal with such a delicate topic as Nazism while managing to drive through a thick line bettween comedy and drama . Honestly , I could not agree more , as the website as it is available today is an inconvenient tool providing insufficient informaton . If you haven't been yet , you should definetly do it . I promise you will love it ! But most teenagers are even more intelligent than adults or erderly people . Sometimes it happens that a couple who have a child aged from 12 - 16 , querls . Tennagers also have to make serious decisions like choosing secondary school , future job , which way they will go in their life , if they want to be in a relationship with someone . Thirdly , I do not have to be concerned about the loss of qualitiy of photographs and pictures . When we thouhgt that the night had ended , we had the perfect dessert . One of Slovenia 's qualified somnelliers will help you choose from the good wine cellar , so this is the place where I recommend our class can relax , eat , drink well & enjoy the happy atmosphere . For example , in India nd China the technological advances have enabled them to mass produce really affordable cars , which are also imported . After aeting a delicious salad and drinking tea , she went to her room to do her hair and put her make - up on . Lancaster is situated close to the Irish Sea und just around the corner you will find the stunning Lake District with its romantic lakes and peaks . If youe leave the main roads and turn into the little alleys , you will find charming tea rooms and goregeous antique shops with a wide range of antique goods . I did that for three summmers and I still help out at my parents ' restaurant when a they are in need of a hand . from her outter appearance , she seems like a little girl . Talking about her outter appearance , one can easily see that Scout is not " the usual " girl . Instead of celebrating it , she somhow inhibits Scout 's learning . The most important ones are probably hotchpotches : mashed potatoes and vegetables , often combined with smoked sausage . In today 's intercultural world , one of the best assests people and nations can have is tolerance and a deep appreciation of cultural values different from their own . However , it is probably a truism that reading about or watching films about a country are only pale subsitutes for actually going to visit a place and experiencing the differences yourself . The article " Stairways to Heaven : Gothic Architecture , Heavy Metal , and the Aesthetics of Transcendence " is an unparallelled one in terms of the discussion it provokes . I conpeted in singing competitions when I was younger and I took acting classes . And finaly , the moment was there , the opening night . I put on my costume and walked on stage . I had to wait untill the curtains opened . A clear example is that watching television in another language is of vital importance if you aim to learn new vocabulary or improve your comprensive skills , and it makes studying a language really fun and enjoyable . Kachl 's Park is a perfact place to spend some time walking along paths , sitting on a bench , talking to each other . Security against terrorist atacks was promised to be stepped up , but policemen are not seen in the streets and neither are security cameras . If you have strong neves , do your window shopping in Bahnhofstrasse in Zürich . Usuallly he was energetic , full of confidence , ready to party . He was not stupid , but you could not expect any perls of wisdom from him . However , all the people in his neighborhoor feared him because of his past . In this way , he moved to his new neigborhood where everybody respected him . Although he had been trying to hide this , his personal problems were ovbious and Magda did n't feel happy with him . This means you can set the time you want to leave , because you do not have to respect a specific timebable . This way you will have the chance to have a more relaxing journey through the countryside , traffic will not be so intense and aggressive , and finally , you can plan the time you want to arrive , using a GPS or other technolology to help you plan your journey . To sum up , travelling by public transport can be advantageous when you travel inside a town , but when you have to travel outside your specific territorry , nothing is better than a car . You can tell because eyerybody looks at her like she is some crazy murdering kid . If I have to , I search the web for information and implement it but it requieres time . His name is John , and like me he is doing a degree in Phisics Engeneering in the hope that someday he can work at a research center , such as CERNE , convinientely located a few miles away from his house . But getting used to the Internet 's rules of comunication , they might find it difficult to face up to reality , and make friends in the real world . Using messages , people forget to use grammar or even form full sentances . There is also a building which can be considered an interacive museum . In a very interesting way you can find out somehing about the history of Siemianowice and about mines . One day I dreant that I was a millionaire . I bought a huge detached house surrounded by tall trees in a beautiful city , maybe in a city like Seville . I enjoy partcipating in debates . If you would like to take my appliciation further , then I would be pleased to hear from you . All in all , I think this woould be the best restaurant for our class to go to , since it 's close to the school , it has good prices and a friendly ambience . You only live once and wasting such a great possability is unthinkable . We are slowly but inesorably loosing readiness to solve problems , unless we can surf the Internet , so that even a single day without technology would turn out to be a nightmare . In my view , we should all riconsider the role that computers have gained in our lives . In addition , my knowledge acquired by managing a bar and a certificate in hygeinic food handling will guerantee a clean environment in your bar . Now we are going to evaluate the main charactheristics and differences between a pellet stove and a pellet boiler . As mantion above , the heat is necessary to warm up the air that , thanks to the fan , will be blown out to the room in order to warm up the external ambient ( e.g. room , bathroom , kitchen ... ) . The structure is pretty much the same as the pellet stove . The difference is that , instead of a fan , here we have a pump due to the fact that the goal of the boiler is to warm up water and send it to the heaters all over the house , so it needs a pump to do that instead of just a fan ( the pourpose of a fan and a pump is the same : move fluid from a point A to a pont B , but in one case , you have to move air and in the second case , water ( they have a different density : water has 1000 times the density of air ) . Then with TVs , information started to spread faster and faster until our contenporary instantaneous reports from across the world in the palm of our hands . Sometimes , it seems we have reached the pinacle of existence . I 'm sure the pharaos of Egypt felt that way when they gazed at the Pyramids . Firstly , online learning conveys flexibility in its shedule . Studentd can attend courses when they decide , but always respecting due dates . Consequentlu , both learning options have their positive and negative aspects . Publis transport is always going to be slower , less flexible and much less convenient , but we have the reassurance that we are doing what is best for our planet . These people believe that ver the next few years we will see a severe decline in the number of people using buses , trains , trams , etc . to get to places . In my opinion , this is dissapointing for a number of reasons . Imagine going to work on a rainy day : you have one hand on your umbrella and the other clutching your bag , the wind is blowing mist on your face and a puddle of water is sprinkling tiny dots of wet dirt on your stilleto while you are making your way to a bus stop . He walked up to her room , where she was comfortly sleeping in her bed . When I was in school I used to go to my granparents ' home to have lunch because my parents were at work . I fondly remember my gandma 's great cooking skills that she still has to this day . By the time my high school years were done , and when I attended university , I developed a certain predilection for typical healthy Spanish food , unavoidibly combined with less fast food due to the usual dinners with friends . The cost of the waste disposal service depends only on the volume of non - reciclable waste produced . There are also public conainers for glass and clothes all around the village . Michael had a chemestry test the next day , but he was n't in the mood to study and so he decided to call Alex , his best friend : - Souds great . Michael grabbed his coat and creept out of his house in order not to wake up his parents . He remembered that he still had n't studied for his chemestry test . If we think about it , the car is better because we do n't need to wait for it like we wait for the bus or underground , but on the other hand , cars cust more money than public transport . In a car , we can just be by ourselves , which can be good because we can listen to the music that we like and we do n't need to be around people that are unknown , but if we choose public transport , we can meet friends or family , so both modes of transport are good , and cars do n't need necessarialy to bring an end to public transport . But , even if it 's true that it 's the fastest option , you must be very carefuly when it 's time to get off a plane . If you are looking for confort and relaxation , obviously , you have to take a boat . There is n't any comparation with watching the changes in the landscape through a window , enjoying the route that you are taking and , the best part , the cheapest way to get away some days and take the routine off some days . I went to the abandoned house and started to think of the best way to make his life miserable . I spent the next 2 weeks looking for ideas to make him sufer . As I did n't find anything , I went to the place where he lived and started to look for some information about his life and find people who he cared about . So as I continued to go to his house , I noticed he would alays go to tehe same house , s I decidec to follow him to the house and I foun out he was dating a girl . She might be his girlfriend , so I finally gota an idea . I would drive him crazy just as he did me . That way she would think he had problems with his mind and leave him . But soon i thougt about it again and realized that if I did that she would try to help him and they will be more united , so I decided to drive them both crazy , almost to the brink of death , just as he did with me ! I screamed . My anger had dominated my mind . I did n't have any control over my actions . I was afarid of what I had become and what I could do , but I could not control myself and the only thing I could think of was him suffering a slow death and the satisaction I would feel when I finally had my revange . The best revange . But I was so mad at him and so ansiouns to make his life imposible , and soon my fear of death and my anger for all of the sufering I had been throug became stronger and greater . I had made a decision and I was goingo to do it . If he dedicated 4 years of his life to tourtoring me and not wanting me to be happy , the time is nesesary for him to have a miserable life and I wo n't stop until I have acomplished my goal . I graduated from National Taiwan Unerversity of Science and Technology . I am interested in looking after chilren and playing with chilfen . I always simle at people . I want to play with children and see their simle all day . This conclusion becomes more prominent if we look into the data of the car companies and the exponential growth in their sales figures and , with low budget private cars in the picture , the scenario has ddrastically changed in the past 10 years . At our school or villiage football stadium I spend a lot of time every day . I want to give advice to anyone who starts this sport : " You must believe in yorself " . Hallo my firend , You regret that you were n't there with me . I 'll try to dicribe everything precisely , becouse I know that you very It was a long time ago , but , I still keep the rhthym in my body ! Around the city , you can find many places where people throw frigo , ovens , " amianto " , old things or furniture . I remember , when I celebreted my 15th birthday , only one schoolmate wanted to come to my party . I think that that day was one of the worst days of my life . I 'm lerning a lot and the students are very friendly . But I need to study harder because I want to pass the exam , and it 's very dificult . Technology has chanched people 's lives a lot . In fact , we can think how different our life is compared to either our parents ' or our grandparents ' lives . For example , my parents did n't watch TV , because there was n't any TV in the world when they were young . But that is n't the only difference : we can think about the mobile phone , the computer and finally the internet . Our grandparents could n't have imagined a strange machine like the computer in their lives . So the best way for them to travel is public transpotations . Each person should practice saving energy when using any source of eneny to protect his own life . In conclusion , investments in developing public transport will be increased considerably . Public transport services have a bright future and their existence in the future ca n't be replaceble . Are you free at the weckend ? Have you got any plans ? If you are interesedt , meet me at 8 o ' clock near the cinema entrance . Jason is my friend , he is drunk and he also dances with his girfriend . A friend of mine recently explained that if a zombie apokalyspe should happen , he would be prepared because he has been watching Walking Dead for some time now - so in his eyes , he learned how ( not ) to act in that case . Apart from eduational content , there is so much bad content , business advertisements and fake information on TV that citizens wo n't be able to tell right from wrong . First of all , you need to be able to afford to buy it . After that , you must pay for the asurance , road tax , and mechanic 's bills , and so on . On the other hand , with public transport , you only have to pay for the ticket , you do n't have to drive , and if the bus or train or whatever vehicle you use breacks down , it is n't your responsibility . The next day , Huck went to Tom 's house to tell him that there was an abandoned house up the hill , so the two boys considered like an andventure . So they went to the misterious house and when they were inside they heard voices , so Tom and Huck hid and they saw that Injuin Joe was the one that was talking . So he went back to Sarah 's house and cleaned the whole bathroom , but Sarah already knew that he had left the bathroom like that , so before Michael entered the bathroon she said : " I know what you left there " and Michael went running to the bathroom . I like my maths teacher very much because her teaching style is very realistic and simple to understanad . I said that because when I was eleven my best friend had an operation on her back and , before the operation , he came with me and , every day , I had to wait for her because she spendt a lot of time in the shower cleaning her long hais . I hated that ! I have a dog and its name 's Chente . It is a golden retriver . Also , I have a brother whose name is Jose Luis . He is twenty years old , his personality is dinamic and funny . My mom and my dad are goog people . Another thing that you must know is how to deal with people . We are searching for someone who can impress everyone , also someone who can give the customers good atencion and service . It is easyier than you think . Every Sunday , we do a mutual cooporation where anyone can treat rubbish as well as they treat themselves . Meanwhile , we recyling inorganic rubbish too . First , I agree with the given statement that there will be a tough time for public transportation in the near future , because people wamnts privacy as well as freedom , which is quite impossible on public transportation . as much as possible of the city or town which mismanaged routine for people who travel by public transportation . As a consequence , generally , people avoid travelling by public transportation . Finally , I can say that there are various modes of transporotation avaliable which play an important role in giving tough competition to the government . As a result of this , the consumer gets more benefits , like lower faire , privacy , freedom and safe travelling . In addition , many automobile companies launcing new cars at affordable prices , which encourages people to use more and more private vechile . Usually there are generational problems ; sons do n't understand parents and vice versa , but by dialoging and listening to emotions and facts , everyone can have another point of view . It will be very cool to see the las part of Mokingjay ! In my opinion , it 's very difficult to fnd this advantage with other sports . He took the money the next day , he finished the registration and started writing the story . After spending a long time writing and doing a good job , he went to give his story to the international student magazine office . He found out there was a notice on the door saying that the competition was canceled . He came back vey sad and told me what had happened . Michael closed the door and knew at that moment he had made a mistake . The vandalisme in Patras has increased a lot . In my opinion , the police should stop the Vandalisme . What they will do in future they see as in a fogg . Secondly , such a year off would give future students a chance to try themselves out in new professional sphears . Also , they would have an opprtunity to be involved in volontier work . This year - long holiday would be really helpful for relaxation and gettin new energy for further education . I believe that there is no future for public transpot , using trains is mor convient and less expensive , so to decrease the carpon gases which are affecting the ozone layer , people should be aware of the effect of using public transpotation on the econmics and enviroment . goverements should encarge people to use other modes of transport . This subject should be issuesd in all media to teach and encrage people to use the wrigth mode of transpot . Because if we are Chinese , why do we give up our mother tongue and learn about our owne culture through a foreign language ? Woolypools is a speciallist of meal , it 's a meal restaurant . With the sweeping progress of development and the booming of populations , a lot of agricultueal land , forest and ocesn has been used or destroyed to build more buildings and transport networks . To start with , there are a wide range of problems it may leadding to . Additionally , people now continue to destroy more agricultural land and forest in order to satisfy all their needs , which will distory the ecosystem , diversity and biodiversity , especially the endangered species . In light of the problems mentioned above , there are various approaches that governments should adopt to deal with this problem . First of all , reducing building constructure from now on , and planting more trees instead . Sustainadle development should be awaness to all human beings and start to porteat the environment and preserve the animals . To sum up , this unpleasant phenmenon and its problems should be worked on to resolve them before things get worse , ang the governments have to take the responsibility for that . I took that decision because I was tired of trying to learn English and I did not have the level that I wanted , so when I heard about that ooportunity , I said yes . I want to say something about learning the English Languaje . It is hard for me for the following reasons : First reason : the grammar that teachers or institutes teach is like the Spanish Languaje , my native Languaje . I want to say that it is very difficult to understand the conjuntion of the verbs in Spanish , so just imagine the same but not in your native lenguaje . Second reason : in English syntaxis , the rules for constructing paragraphs or sentences , the verb is written before the subject , but not always . What is the rule ? I can recommed you to my uncle 's company to get a job . In view of my age , evening activities are not a problem for me , and I have played many sports during my life , such as socker , bolleyball , ... To sum up , I still consider having your own car way more safe and convinient . Even if it happens , there are many people who ca n't get a car , because it is too exspensive , not only to buy , but for fuel , service and so forth . Whethere tourism has had a positive or a negative impact on our lives , it remains quite a dilemma for the ignorants . Alongside its development , the ablity to travalling has become easier to such an extent that it is now quite common to commute from one country to another . The existence of multinaionals is tightly connected to the idea of tourism , as well as to the idea of globalisation , since a traveller is not just a citizen of his own country , but a global citizen . There are countries , such as Greece or Bulgaria , in which the econmoy relies completely on tourism . If tourism influences the econmy , it thereby influnces the environment , and if it influences the environment , it influences transport . How ? people become more careful at their historcal sites , thereby preserving them . Transport is developed both on a small and a large scale . On a small scale , in cities , in a way which will allow citizens and tourists alike to reach important places more efficently . I would like to go to a new artist rolls competition , although in my city there are n't a lot of competitions of this kind . If I had the posibility of going , I 'd already buy the tickets . At the beginn I went to the childgarden and they taught me to ski . My father took me between his knies , because I could ski without falling over and it was fun . I had my first snowboard lesson und I loved it . I enjoy snowoarding , because you feel free when you are going down the piste . You are very happy und sometimes I sing a song and the world is perfect . No future for a public transpotr ? Is this claim true or not ? I think that it all depands on the development . Yes , I agree , if you planned the journey for a faraway distation and for a long time you would prefer to do it by car , because , firstly , you 'll spend less time , your journey will be comfortable , you 'll have the possibility to stop any where and for a long time , as you need to . But if we are talking abot travelling across your city , would you prefer public transport or car ? I think that this is the guestion for everyone , and there ca n't be one answer for all , because one person can use public transport , and save in this way not only money , but the environment , but some people do n't like to use p.t . because they spend more time travelling or they simply do n't like to travell with other people . guide people and give them infomation , details and guidelines about pollution . I 'd like to tell you about my favorite restaurant . It 's name is " Lemon " . I go there every week . It has different food to other restaurants . I like crispy chicken with garlic sauce . It 's an excellent choice for me . And my favorite appitizer is susage and in order that dessert I like " Vadge " cake with chocolate sauce . I feel at ease when I go there . I enjoy classical music while having lunch . About the service : it 's very good and all the staff are respectable . I ca n't imagine one week without going there . That would drive me nuts . I advise everyone to go there and enjoy their time there . Also , this restaurant has a relative advantage in hygiene really . It 's excellent . The striking thing for anyone , is that despite all of these advantages , the prices are not expensive . Volleyball is my favorite sport because when I am playing with my team , I am in another world in which I can be free and happy . Apart from this , when I am feeling bad , this is a distration from university . You should try playing , it 's such fun , but I warn you , it is not easy at first , but you hace to try many times like you should do in life . On weekdays , I get out of my bed at 7 in the morning to go to my work , which startst at 9 AM . In the newspaper , he read an interesting noticie . The noticie was about a competition . The story was very good but Michae did not know how to end the story . Public transport is usually restrected because of the timetables and you can only use transport at the time that the timetable lets you . I felt like a star ! Crowds of people were waiting in front of the dressing room for autographs , but only me and my sweety girlfriend got them . Advertising is everysite . TV is the most accesible means of communication and people can see the messagen in this way . It was really importatnt to him because he had been training for 5 long years since he was 15 and he had n't achieved anything . As our town is well - known for our magnificul beaches along the Mediterranean coast and for the Olympic Canal of Castelldefels , many foreign and local people come here to do activities like kitesurfing and windsurfing at the beah or canoening and waterskiing on the Olympic Canal . Well , the airport is located just outside Reus . It 's small but it has a lot of servicies and transport . With the purpose of actract more peole to join the club , besises its good points , I would highly recommend that they should arrange the time suitably and avoi they hold the acivities to avoid problems . Desgin the bank notes is the first and indispensable step . Peple should decide the background colour and thw artwork and they have to consider the security issues . As for good quality sheets and partially damaged but still good sheets , people will cut them into separate notes and pack them together in order to dispacting and distribute the bank notes . If the partially damaged sheets are bad , they will be treated as bad sheets , which will be securely distoryed . Everything began a few years ago , when Alfred , the Mayor , read an article about the importance of the surroundings to the health and happinness of people . You probably wo n't believe me , but I met all the members of Dżem band . I talked to them and we had lunch together . They 're very nice men . Because of helping them , I had the best place during the concert and I have their authographs on the latest record . I did n't have many duties and none of them were unpleasant . I am keen on cinema and I love to watch all types of fims . In addition , I think that the settings are very reallistic and the actors gave a great performance . Although I am a young girl , I think I am a quialified person for the post . I am a preschool teacher and I have experience looking after chilren from 3 to 12 yeras old . I consired myself quite patient and fun . In my opinion , they are two highly necessary qualities for this kind of job . Although privately oned cars are more and more popular , and they are increasingly becoming a common asset even in developing countries , it is not likely that this means of transport can be the means of transport of the future . The flight was approximatly five hours during which I watched beautiful movies . In New York I ate so much . I also went to the city thay never sleeps : Manhattan . My aunt gave me a lot of presents because she said they do not see me frecuently and many other members of my family . In conclusion , I had a perfect vacation where I saw new things , visited awesome places like Niagara Falls and Time Square , recieving a lot of presents and , especially , ate a lot of delicious food . In order to enjoy travelling to Mexico , I would give two important pieces of advice ; first , try to get along with your travel companion and enjoy the Mexican food instead of criticising the spicy savor . In this way , visitors will be able to enjoy Mexican food with less pepper and the same delicious savor that is so characteristic of our country . Also , this phenomenon of taking photographs is part of our daily life , because it is the best way to capture special moments like birthdays , travel , special ocassions , etc . What if you do n't have any of those requierments ? Then you know hockey is the aswner . Nevertheness , it is never enough , because dog owners are mostly to blame . We live in a cottage and we have several bins which are clasified according to the material we want to recycle . They occupy too many seats , inclouding priority seats . Moreover , some old people might take this considerative action for granted and they might even command young adults or students to offer their seat without manners ! I have also worked with large and small teams in back - offices , managed many administrative activities related to mortages , personal loans , contability and investments . We are told about a lot of innovations in this spheare . There are a few reasons whcih show you why it is important to learn a foreign language today . Second , for finding a good job opportunity , the business exchange is increasing at the intrenational level . If you speak a foreign language , certainly it adds some value to your profile and you can get a higher salary . Dear Sir or Madamme , On the one hand , holidays are the best for people in terms of thinking clearly about their experinces in life . The reason is that people must complate their tasks in order to earn more money to maintain their lives and they forget about these emotional feelings such as love , helping people or thinking spiritual thoughts . I have worked in an Easter camp too , and I have already organised a lot of ativities , like " rappel " , paintball ... What an unfoggetable day ! Swimming as a sport is very useful for wieght reduction if you are obese and need to reduce your wieght . It is also the best sport for asthmatic patients , because it strengthens the chest muscles and decreases the vulnerability of those patients to respiratory infections . I saw so many interesting things during the preparetion time . Regarding advertising , technology is having a huge and not always possitive impact on outdoor advertising . It will suit me sometimes , and it will even be useful , but I 'm also sure sometimes I will find it aggresive . The way it feels aggresive to enter a square or plaza in my town and find it full of bright screens , no matter how beautiful or artistic the pictures displayed are . But , technology is hre for better or worse , and we have to learn to deal with it the best we can . I 'd like to have a big detached house in the sububs of Artem or Vladivostok . If I had this house , I would decorat it in a modern stayl . It costs less money and you can choose exactly the moment , where and with who , to watch this or that televison program . Actually , students eat a lot of fast food while they are studying at university , because they do n't have time to cook food . For these reasons , I think that the best restaurant is somowhere where they do home - made food , and a good idea for the main course is : baked potatoes , steamed vegetables and , for dessert , apple cake . They are incredibily delicious . She was eighteen years old , she had to be indepedent . She went there and thera was the doll with a knife in her hand . ' ' Bell , why do n't you play with me anymore ? Are you bored of me ? Just because I have only one eye ? But you removed the other one . The girl had a knife in her kneck and on the wall there was a sentence , ' ' Why did you leave me that way ? '' You can even talk with native speakers by using some Chat Rooms online such as Skipe and others . One thing you should keep in mind if you want to play football , is that you have to be ready to reacive some punches . On one hand , becoming a public figure is associated with jornalist , mass - media , flashes . It seems to me that journalists might be absolutely toxic and they have a bad infulence on society , which assesses celebrites through the prism of journalistic documentary . The value of their talent and abilities is measured in the amonut of tabloids scandals . When I worked as an educator , I used to plan and manage some sports and outdoor acitivities . The same with my parents ; they are old and sometimes they call me to talk about their healht . Concerning video - games , I agree with scientits that think it helps children 's brains to develop , but it is important to supervise them , because there are a lot of violent games . DOING EXCERCISE IS GOOD FOR YOURE HEALTH Doing excercise is an important thing to do in a healthy and happy life . While you excercise you feel well in yourself and in your body . Soccer is a great sport where you can make a lot of friends , you can stay fit , but you also need some skills because it 's not easy to controll the ball and dribble your rivals on the field . I know that catching a celebrity doing celaning or taking a dog for a walk is shocking news for people who read tabloids . So , as you can see , I agree with the statement that famous people , who are recognizable , deserve to have a privte life and the ability to have a normal life should also be given to them . Once per week on Wednesday , robbish is collected . That is a very good idea , because that robbish undergoes recycling . Everybody cares about cleanlinees in front of the house and in the garden . Margination has a link with the illegality of this activity . I am writing to apply for the post of summer camp councellor currently advertised on your website . I speak English , German and Polish and as a councelor that is very handy . I am hardworking , reliable and well - organised and I can take control of difficult situations . I am talented when it comes to entertaining people , which might come in very useful in my role as a summer camp councellor . I 'm seventeen years old and I 'm an electonics student from Italy , in the north . Recently , I started studyng English in particular because it is the most important language in the world , so I need to know it well if I want to communicate with other people from other countries . Mar Azul Resturant , in the north of Mexico City , was the location for the fourth day of Puerquitour . After her 18th birthday , Anna felt a sudden need to know what happened to her bilogical mother and why she gave Anna away . After finding the adoption papers , she contacted the adotpion agency . She convinced the lady at the agency to give her the name of the biological mother of " her little sister who had a disease and needed to know if her bilogical mother would be a match for a kidney transplant " . The importance of working hard to achieve goalы and practicing regularly to become good at something are also demonstrated by professional sportsmen . For instance , if my goal was to increase young people 's awareness , some strategies could be to increase online social media presence by posting regular updates about my language school on Twitter and Facebook or to offer discounts for sibblings . The last step would be to recruit a staff of prfesional , experienced and qualified teachers and to set an attractive and reasonable price for the services I would provide . Undertaking a scholarship and admission to one of the universities I have selected above will provide me with the opprtunity to apply the knowledge gained at high school in a business setting , as well as develop the communication , organisation and numeracy skills I acquired at high school . In conclusion , I can assure you that I will be a capable and dedicated student who has the committment and dedication to work hard in order to be a graduate , whilst at the same time , contributing greatly to my chosen university in more ways than one . Despite these two being the most popular sports amongst atlets , many more are just as interesting and beneficial . For example , things might not go as they had expected for multiple reasons , such as not having enoff money or not getting a job . In addition , we had to have one year of volunteering in a Youth Supervision environment in preparation for our final assingment , so I am able to be a member of your highly - skilled staff . Since I was 13 years old , I have helped my parents with bringing up my four junger siblings . I have a friendly , happy personality and find that I enjoy the chalenges of working in youth environments . Max and his friends took a walk under the trees when , acroos the river , they saw something that looked like an animal lying on the grass."What 's that ? " , Max said aloud . It 's about a teen couple who are diyng of cancer , and they have different ways of thinking about life and death . This movie touched me very deeply , it made me think about life and about the way people usually live without apprecciate the really important things . It is a ciclical process . Rome had its hayday in the first century AD , but just three centuries later , it was only a shadow of its past . One day in the future , another Franz Ferdinand could be killed , and that symbolic event could serve again as an escuse for some country to declare war on another , but the true underlying causes that actually led the countries to wage war against each other would have their roots in much older times . As the causes of the Second World War had its roots in events that were the outcome of the First War , a Third , hypothetical war , could have its roots in a past conflict that may well have happenned already . During the next centuries it was expanded , and in the 16th century , finally rebuilt in a Renaissance style , which has remained unchanged until today - the most representative remnant is probably the famous arcaded coutyard . During the tour , the visitors are shown several rooms and apartaments , as well as the Royal Private Apartaments with world - famous tapestries of the Polish kings ' collection . Everybody say it 's the best period in our whole life ; what they do n't rembember is that it can also be the worst . This could be one of the reasons why we get angry so easily and so often with our parents : every time we descover something new or we say something , they judge us or they begin some long speeches to try to change our ideas . As I said , adolescents can be very confused and if there 's one thing that gets under our skinn , it is when moms say something and then tell us to do the opposite . That kind of love that we see in movies and we dream of ; the type of love that does n't let us fall usleep at night . Travalling by car is also much more convenient . In conlcusion we can say that , from the standpoint of doctors and nurses , working abroad is a much better deal . Dangerous dogs who were trained to kill and maim in similar underound dog fights have already proved deadly to innocent people . The new boxers could be even more at risk . There are all sorts of proposals ; lighter and more cushioning gloves could be worn , ban punches to the head , headguards worn , or make fights shorter , as most of the serious injuries occur in the later rounds . These would all show off the boxers ' skill and tallent and still be entertaining to watch . However , such a rebellion can not be seen clearly in each minority work , and , therefore , the products of ethnic American literature can not be catagorized as merely the result of years of oppression . Emphasis changes with each work , and although figures of authority are particullary oppressive in works such as Like Water for Chocolate and The Color Purple , other minority works including Love Medicine and Jazz do not reflect the clearly defined authoritarian figures nor the obvious rebellion of the characters ' responsive action which the previously mentioned works show . This again implies that these etnic American pieces of literature can not be catagorized as merely rebellious responses to oppression , but as individual reflections of personal and cultural experiences . Philosophical optimism -l'optimisme- is the philosophy that everything and any occurence is for some good . The supremacy of Parliament will never be challanged . But with the average jingoistic Briton there is no chance of us curing ourselves of our xenophobia and ever wishing to be fully intergrated with Europe . In fact , in political , economic and defence terms , I feel this realocation of resources can and will be very positive . Whilst , to a certain extent , I may be guilty of having an island mentality , I would n't go as far as to say Britain is in danger of handing all control over to faceless beaurocrats in Brussels or Strasbourg . This process will continue and Europe and the rest of the world will evolue with or without the participation of Britain in this process . In relenquishing and thus centralising certain powers , the aim is not to diminish the strength of individual nations but to increase the overall impact of Europe on the world stage . It is up to Britain therefore to accept this fact and to show an example by leading the way as regards tolerancy . These superpowers were economically , militarally and politically stronger than the divided individual European states . Whether or not the continuation of the progress in the field of European unity is sucessful depends very much on the people of Europe . To remedy this , the government has started adding a fourth lane on some streches of our motorways and constructing ring roads and bypasses , with mixed reception . The inability to cope with the ammount of traffic on the part of the road system obviously increases the risk of drivers having an accident and the drivers have to be constantly alert as they are nearly always in capacity traffic . It might seem an easy soloution to this mayhem would be to use public transport ; i.e. the railways . People are not taking to the rail system because of its lack of integration due to the recent privitisation of different areas . Then people would be more likely to catch the train , as they would not have to look forwards to a long walk , wait for a bos or pay for an expensive taxi ride . My soloution to the problem would be to improve the rail system and its related bus services . This would get people off the roads and onto the trains . To improove the rail service , trains have got to be timed to arrive and depart at key times , i.e. arrive at eight o'clock and leave at half past six . The train and bus companies have to liase with each other and the train fares have to remain relatively cheap , i.e. the same price as or less than it would cost to go by car . The basic dilema facing the UK 's rail and road transport system is the general rise in population . Most large cities have managed to incourage commuters to use public transport , thus decreasing major conjestion in rush hour periods . Another major problem created by the mass of vehicular transport is the pollution emitted into the atmosphere , damaging the ozone layer , creating smog and forming acid rain . Tourturing the Earth we are living on . To illistrate my point , if every time you took a train , it stopped for 2 hours on the track , everyone would stop taking it . The most likely answer lies in 2 areas . Firstly , the attitude of many westerners is that it is their right to travel in such a mannor . I am by far and away no ' greeny ' who wants to make everyone live in tipee s and eat soya bean soup . However , I do agree that somthing should be done about the volume of traffic that is on our roads today . Do we , the westeren world ( 5% of the population of the world ) , have the right to use the resources of the rest of the world at this environmental cost ? Just beause we can not be bothered to get out of bed a bit earilene to catch public transport . That could have disasterous implications . The 2nd reason , is the promblem that the public transport service , for example rail , is declining so much ; there is no train to catch in the morning . This has now been intensified with the sale of the railways to privite rail companies , profit motivated . The vital , small rail links may now be closed , whereas priviously they where subsudised to make up the loss . Now the privite companies can not afford to do this , so many will close , cutting off small towns and villages . The only way to stop the circle will be to break it , and the only people to do this is the government or ourselves . If we make the effort to use public transport , it will expand into a good service . Unfortunately , the public seem to be appethetic towards this idea . Although it may sound cruel , I do not beleive that any fighter has entered a proffessional boxing career without knowing the risks . The boxing federation is trying to do as much as it can to make the ' sport ' safer : having rungside doctors , banning bare hand fights , but the top and bottom of the argument is that any blow to the head causes considerable damage . A recent death in the ring has inevitably led to a public uproar on the safety of the sport , and the controvesy over whether the sport should be banned or not is yet again at the forefront of discussion . The family , who were originally against the idea of their son finishing college early to take up the sport , would be leading the protests againt boxing . This hypocritical view is shared by so many that whether boxing should be banned or not will remain a controversial issue for the forseeable future . The lottery has also suffered alegations that it is addictive , especially with the introduction of scratch cards . It has been claimed that it is so addictive that people will spend all their availiable cash on lottery tickets , only to be disappointed . It has been calculated that only 4 pence out of every pound recieved by the lottery goes to charitable causes . The rest is tax the prize fund , profits , and the so - called charities . It has also been calculated that the chance of winning anything substantial is one in millions , ie highly unlikely . It has also been alleged that the jackpots are too high . Most of the lucky winners have said themselves that the jackpot had runed their life , alenating them from friends and family . In conclusion , I think that the lottery should be retained , but not in its present form . I think that jackpots should be capped at 2 million pounds , and the prize fund shared between more people : it is better to give forteen people a fortune than to give fourteen fortunes to one person . I would also remove any American buisness interests and give the charity money to a more diserving ' charity ' . The most obvious example of this is the calculator , an instrument used by mathmeticians and scientists for making numerical calculations . The world watched in anticipation . We were mesmirized by the images of the TV , expecting something new at every moment and not wanting to miss it . I remember that day it was the only topic of conversation at school : " Have you heard ? " , " I ca n't believe it ! " , " After all this time ! " , " I never thought it would happen . Bolstered by the Germans ' success , the people of Hungary , Tchekoslovaquia , Poland and Rumania rose against communist regimes as well . Now , three years later , communism as we once knew it no longer exists . The repetion of tapping keys all day and staring at the screen can be harmful and , not only that , it is highly boring to do the same thing over and over again . Whether it be a kitchen knife used to stab someone , a car used to run someone over , or something as harmeless as a pillow used to suffocate . Normally , more than 1 egg is taken from the mother so that the eggs can be stored and used later if the pregnancy is unsuccesful or so that more than one can be fertilised at the same time to increase the chance of a succesful pregnancy . There are people who are agains this , saying it is not natural and asking is it fair to the child to have started life in a test tube , as they believe life starts from the moment of conception . , at what age should the treatment not be given and is it justifiable to spend so much money on in vitro fertilisation for one person when the same amount of money could be used to saves hundereds of lives by vaccinating people against measles , for example . I therefore think it is necessary to have certain regulations ie . People in our modern times are now able to have liver , heart and even lung transplants . There are many complications but many are succesful . The test tube is then incubated for a few weeks and when the fetous is formed , and the baby is then inserted back into the mother . The fetous is left to grow and develop naturally . This idea is extremely benificial because married couples who have been trying for a baby but have been unsuccesful are able to have children . As the fetous begins its life in a test tube , and the sperm is selected , this means that the sex of the sperm could also be selected . The main reason for the people of Britain to stop eating beef at the moment is the threat of BSB . This is a viral disease that attacks the central nervous system which can be passed on through consumsuming the animal . Another reason for the British people to stop eating beef is the push for vegetarianism , although this is a much smaller threat to the trade than the former point about BSB . Although British farmers have learned to diversits , dairy farming and the sale of beef products still forms the backbone of British agriculture and would completely change the face of farming in Britain . People throughout the United Kingdom were , doubtless shocked and perhaps upset by images in the national press and television news of cows who had contracted the disease bovine spungiform encephalapthy , or BSE . For beef to be repreived or condemned , we are forced to turn to the scientists to establish whether or not BSE and CJD are linked , and , more importantly , whether the latter can be contracted by eating meat contaminated with the former . This claim has devestated the British beef industry as people are now too scared to eat beef in case they contract the illness . As you can imagine , this has had a tremendous inffluence on sales in places such as fast food restaurants , where beefburgers are the main item on the menu . The answer to this question lies in one 's feelings about Democracry . Since its beginnings in the late nineteenth century , Women 's Liberation has been met with adamant , and often obstinate oppostion . This ignorance of other less aggressive feminists , made it seem as though the feminist movement was headed only by wild , disgruntled zealots and was , therfore , detrimental to the good of society . Like many other aspects and movements in life , they would be more readiliy received if the public it was being aimed at was not so jaded . However , throughout the years , television has lost much of its integrety ; the programs offered are usually cheap entertainment rather than education . The entertainment aspect of television has offered society an easy escape from its problems and dificulties . Though it has probably been around for a while , it s presence hasn't really been known untill fairly recently , and it s consequences have been devistating . AIDS has definately had an impact on people in the United States and probably all over the world , because it always leads to death and there is no cure . As a commonplace goal and testimonial landmark to 9 presidential administrations , the cold war has manifested its awesome power and control over nearly every facet of Americana ; from survival kits and basement bomb shelters to an ever - circulating cheif Executive command post from the air . It was also attemped to increase the production of the naturally - occurring antibiotics through synthesis . In part , it has created The Information Age , as the latter part of the 20th ctry is often labelled . Presidents and dictators alike switch on the channel to recieve first - hand information from the network , such as impeachments , coups d'etat or civil wars . 40% of U.S. millionares are entertainers . Unfortunately , the day will soon come when the damage caused by this apathy will be irreversable . The waters of the culunary seas had been calm and consistant for centuries . Progress had moved slowly like the tides and the constant rythm of the waves showed little change . However , with the dawn of the twentyth century , a storm brewed . In an age where time is the scarcest comodity , our society has embraced this eliminator of wasted hours in the kitchen . This marvel of technology has helped propel people into the dizzing pace of life that most of us lead in the 20th century . Every morning I listen for the weather forcast and dress accordingly . TV comercials and TV programs project models of how one should be . People are more mobile , can work more , and buy more things , but time for relaxation and family are often substitued with TV . In America , this growing individualistic society , one no longer sees the realitive humanness between people , instead one sees the differences , the unlucky , the unsuccessfull , and attribute thier inability to achieve to a lack of effort . There was a group of scholars in France , l'Academie Français , that set guidelines for French literature . According to l'Academie Français , all literature of the Neoclassical period must follow the rules of propriety which regulated the author should avoid certain topics , including sex , violence , church , and state issues . He told of the two girls of Orellion who were lovers of monkeys , and of the Baron who bathed with the Musselman and was punished for his homosexual act . After the Baron is caught bathing with the Mussalman , he receives 100 lashes for his sin . He attracts the hippocracy of the Church in the old woman 's father being the Pope . Desegragation reduced some prejudice , but it still exists . This is based on eauity theory . The opposite of love , beauty , intelligence , light , joy , life and growth are not their familiar ontonyms but indifference . When we learn of the trials and hardships that they went through , we can sympethize with their emotions and try to accept that diversity . The stories of black American slaves and of concentration camp victems are necessary to avoid indifference . That 's why I 'm very excited to teach studens English ! ! ! I do n't understand why so many people are into this stuff . Anyway , I deceided to arrange some nice dates for my friends by / following my own style / doing it my way . I attended Japanese tea ceremony lessons one day a week for three years , befor I came here to Japan . I wantet to study more . It was kingdergardan level . The roses grew and thir flowerpots are now too small for them . Well , I 'm into the Ray Charles song `` Hit the Road Jack `` recentry . Strange Japanes Customs ? One example is drinking alchole outside . Most countries it appears , does n't allow drinking outside . It is very convenient that it 's codeless . Today 's calss is the same class which I was n't able to teach because of CHOTA MAJI . And I fall in love with the liberary in our school ! ! ! I went to a balloon lecyurer as an assistant at `` OMOCHA OUKOKU `` . My mother committed suicided when I was only one year old and since my father worked in a town far , far away , I was raised by my Grandma . Because of its particle size , which is less than 100 nm , the nanparticle has mechanically , physically , chemically , and electronically different properties than that of bulk materials . Japanese marrige system The bride and groom simply go toa registryoffice andcomplete the marrige application form , which has the bride 's , the groom 's , and two witness 's sigunitures . No picture IDs are requiered to complete the marrige applicatin form . Somebody else can go there insterd of the couple . Becouse of the system , problems sometimes arise . When a couple go to the city office tocomplete their marrage form , they sometimes find out that one of them ( or both of them ) is alredy married to someone else . At that time , he was just interested in this class but had no awared of the importance . It 's a kind of a hot - water bottle , but there are cerry seeds in the bag . So I bought two , one for my feet and the other for my nec and shoulders . This is my fitst post in English . He joked `` Please buy meat for me when you visit me . Especially chichen for Dak Galbi . `` By the way , a Typhoon is coming soon and maybe a lot of studeants think , `` Whoa , I can rest a day and hope the typhoon stays in Taiwan . I would like to wirte a letter to my English teacher , so I want you to correct my English . I drove alone . I 'm not afraid of drivig anymore . Next time back home will in many month later , I realy do n't want to go back to school in a broken - hearten state , but I ca n't do nothing ! I am writting the diary and doing many other things . I chack my e - mail and read my Hi - 5friend 's comments to me . Hi 5 is like Facebook in English . I think It is very famust in Thailand , and I chat with my university friend there . We taked about the job she has . I do not have a job at the moment because I left Bangkok . She lives with her family . I know her becarse she went to Bangkok to study . I was so humiliated because of our accent during my chilfood that I tried to modify it . Because it was a gift from my ancester . Yesterday I rided from our main campus to the medical college . I took part in a job interviw this morning , but after the HR kept asking me questions for about 30 minutes , she told me that maybe the positon did n't fit me well for me because I do n't have the SQL skills required . I 'm looking forward to waitinig for what Apple will make in the future . But I want to continue studing English every day . Today I felt very happy , bacause my class was very funny . I also have to shovel the snow around my house , my parking space and my offise . . . I just sterted this SNS . Spring is comming ! Today is a holiyday . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittet laughing sounds made by a female , and monotonous , enthusiastic talks by a male , which might have given you an impression ; the atmosphere was not too bad , or too good either . We have n't had a lifetime employment system sice the late 80 's . Instead , I 've witnessed powerful harassment like `` You 're incompintent ! `` , or , `` We do n't afford to pay people like you , `` in order to force them into early ritirement . Luckly , I have a job and a depenadable income . And yesterday , I ate dinner , but I ate two humburger late at night . . I have not drank alchohol in a couple days . But now most Japanese buy it at the supermaket and department store . Because there once lived so many people in a family , and the mother and grandmather made many dishes for their children and guests , however , ( nowadays ) there are many nuclear families in Japan and guests are few . When I listen to this music , in particular Marc Anthony , I become one with the melody and I feel really free and every thing around me disappears and I feel only the hertbeat of my heart that follows the rhythm of the music . A Little Hestitation and Nervous Now what can I do for peaple in MIYAGI ? ? I went to Chibi Canada to prepare for the zonbi Walk . I practiced making a zonbi face . I think I 'm good at mimicking zonbi . All of the animals I saw in Mongolia seemed confortable . Right now , my favorit song of her 's is `` If I were a boy `` My family came to my house and we cooked carne asada . We were all together to watch Teresa 's last episode , hoping that she would end up homeless and lonely ( like in the original version ) , but to our suprise she did n't . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film thta deals with the history of the electric car , mainly focusing on The General Moters EVI . 7 students paticipated in it and they were great ^ ^ Some students did n't memorize their script enough not to look it but still I thought they put in a lot of efferts . I 've studied English in Canada since this mounth ! Mainly , Japasene teacher taught English grammers , accents and various words . Another boring week is watting me . I do n't think they shouldn mention such details about the flight ! Tonigght , I will stay inside ; I wo n't go out . For that , I am studing English for many years , but not many . . I would like to speake and write more natively . . Publick service personnel is a part of the conscription system . We have to studed English now , or we wo n't pass an important test in three years . Also , there is going to be a Jananess school visiting our school . There will be eight Japaness students in each class . And we will teach Taiwaness history about Japan 's aggression towards Taiwan . We have a lot of activies planned for when the Japaness students come . before she had gone , she did not say some thing before as give me anything as usaullly , she did it because she sundently had gone . He could n't sing but he could hum and dance and and play the quiter . But when I tried to go there yesterday , it was diffuclt to drive my car because I had to meet a friend who lives in Seoul . I 'm a piture and 5th hiiter Our game started at12 : 00 , and I was so nerveous . My beseball career is shorter than anyone 's , but I have good physical abilities like fast feet , strong sholders , and an endurance for pain . The famaous rapper known by the Japanese . The reason Eminem is known by Japanes people , is because he was an actor in the movie , 8 Mile . There are many rap music artists , but there is only one Eminim . Introdeuce myself dreadfully spycy . . . But I do n't understand English grammer . I could not explane `` a certain probability `` in English when I talk to my friends . So I want to explan it here . The probalility represents how many people are watching ( a ) particular program ( s ) in each area . I take Garman and I study various countries ' cultures . So it is very expencive . I like listening to music , like every type , expecially jazz , rock , and some nice soft music , some times I listen to death matel too . and also do some reading , which r written by ppl who r not famouse but special . . . . This is because I 'd love to TAIWAN . Itried to study Mandarin when I was in junior high highschool . Chinese - charactors are used in Mandarin and Japanese , so I thought learning Mandarin would be a lot easier than learning any other languages . However , Mandarin has four accents in one sound ( I ca n't explain it crealy in English , try to understand ! ) . I participated in a web developer 's event last Satruday . But , in a foreigh country , does the person who has a birthday treat the guests ? By the way , my Japanese friend in France had dinner at his friend 's Taiwanais wedding party . This temprory job ends on the end of this month . It is uncomfortable to stay in an unfamilier place . So I had my boss buy some vesetables for me . After I recieved them last night , I kept them in the refrigerater . : ) I would like try this webside out , but I dont n't know how to use it . It 's an important professionnal cycling race . Thanks for yout help for improving this passage . I 'm not sure how to tip at restaulant because I 've just moved to America and my mother country , Japan , does n't have such a custom . If I do 3 , shuld I write the tip on the bill ? I went to the shopping mall becasue my daughter wanted to go . When I tried to buy the ticket for the film , I wss recommended by a clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemote was impressive ! We 're going to move to another building next week so today all my cowokers and I were packing a lot of stuff . I lived with my parents and my elder sister who is now married and raising her son and daughter with her hasband . and I 'm learning Japanese tea celemony once in week . Some people wear kimono often or everyday ( for example , people who are obsessed with Japanese culture , who study / teach tea celemoney , Japanese etiquette or Japanese flower arrangement . . . However , many japanese do n't own their own kimono ; instead they use a service to rent kimono when needed . We do n't do tea celemony in daily life except when our families or ourselves are famillier with it . when I study tea celemoney , I become eager to learn good handwriting , languages , behaviour , and flower arrangement . whe I studied martial arts , I became eager to learn behaviour . As a begineer , you need to have every skill at a beginner 's level . If you progress to the intermidiate level in one genre , you need to have skills which are better than a beginner 's in other genres as well . I will try writing about these things I learnd . The Tengu 's bodies were like a human being 's , but he had wings and could fly , so we adopted it as a charactor and our squadron 's good angel of flight . Actually , each squadron 's yearly flight time is assigned by our headquater . I mean , we were too busy both mentally and phisically to take time for others . To solve these problems , I shoud relax a bit . I got a serious headacke this morning sitting in my cubical , so I took a half day off from 1pm . I was very busy in April because of recruting Even if I try to find a lauguage exchange partner , they will think I 'm boring and bothersome girl . I useally get on a / the train from Zushi station , it 's in next town . I do n't need money , or anything else for that matter , but simply to hear from you about my party . I think you will be satiisfied ! various kinds of vegitables that are pickled in a sakekasu , which has a slightly strong sake flavor . I asked her to promise me to eat brackfast before going to the school . His exbition is held this year in KYOTO . Now , I 'm gowing some scallions , turnips , and lettuces . I felt the climinate in Japan has been getting warmer and warmer over the last several years . I will try to looking for a pair of cute sandals tommorow . I picked up my hasband this morning . Yes , I 'm thin - skkined . When I watche a TV program and I learned about the store . I can not be here in Kyoto untill April because of my job . I realize now how easy the laguages we learn are forgetable . I 'm always surprised by those who keep thier journals in foreign languages . I elnvy them . The recent consective hollidays , which lasted for ten days , are now over . By putting daily events into text , I also aime to review each day and make the next day better . It takes ( about ) 30 minitus from here to Tokyo . I like spicy foods such as the Kolean dish , Kimchi . It increases one 's excitometabolic . In Japan , a sad incident ocuured . I will eat at a restrant in the department store . Incidentally , I enroll in a temporary employment agency . Athough we always have dinner with her , this is the first time I 've invited her on a formal outing . My favorite movie is `` Back to the future `` . To do so , I have to work harder on doing reheb . Trains run every 2 minutes following timetable and if a train is late for more than 5 minuites , we can get a refund . There are chain restaurant whose plices of foods are n't that different from Macdonald 's . but I perfer Chinese . Fortunately , it is easier for Japanese to learn Chiense characters because we use them in our language . It tasted yammy because it was free . I forgot to bring a thoothbrush . I have been feeing frustrated to see talented people who can not express their opinions due to English skill limitations . Can you expanation thisto me ? Will this pharse , `` th , `` keep going ? My pehew is coming to my home . It was the book I had borrowed once but faniled to finish reading because the due date was up . I would like to celabate the new year in Bangkok thoung . this moive is really famos in Thailand . The man who running on the elephant is a really good boxing expert who did not use a stant - man . . . The stationaly whitch is used for erasing pencil wiritig is called an ' eraser ' in America , and ' rubber ' in England , right ? I ate yammy bar of chocolate . Write your five items in the coomments , if it is n't difficult for you . = ) Canadian Dollar shepard chocolate ! Terefore , I go to Kyoto several times a year with my family . I 've dedided . . . The table shows the percentages of water pollution due to four major pollutants in four cities ( Taipei , Sao Paulo , Tokyo and New York ) in 2003 . Aside fromthem , Tokyoreported `` presticides `` as the worst waterpollutantwith 31 % whereas theamountwas much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage for `` Erosion `` with 23 % as well as `` Demestic Sewage `` and `` Phospharates in detergents `` , which was larger than that of the other coutries . At some points I laughted , and at others I cried . Snow aroumd here is very rare . My inglish level of conversation is ibetter than my writting , but I need to practice a litle more . I do n't mind if your Spanish level of conversation is not very good . I think that together we can improve our cualities Does it furthurmore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this webside , and I don ` t know how to use it properly yet , but I hope that I will meet new friends , and that they will help me . I would like to speak English fluently , but I do not have any friends who speak English , so I have been learning English for sereral years , and still my knowledge is not enough ! ! ! ! I often go out to coffe shops . Usually I go to `` Tully 's coffe shops and my favorite coffe is always `` Today 's Coffe `` . Of course , I have a cup of delicious coffes when I go to there , but my real reason for going is not only to drink coffe . to my seprise , when I arrived at his house , I foung it to be very chean . Something I like but someting I do n't like ( also ) . Umm , sorry , I 'm being nagative today , are n't I ? Hello veryone I am back . It said I should follow the sentense from newspaper or book . and then read it again atfer finished writing . I wonder what clothes are suitable for gests . I heard that Americans give presents from a wish - list ; is it ture ? The customer was so delighted that he adviced the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' for the sake of prosperous business . I 'd lile to communicate with ( those ) people who speak English to study . I 'm going to go to COSTOCO . What do you recomend ? After bathing , he alwasy took his teeth out of his mouth . What singers do you like from Japam ? I started stady EngIish today . I 'm not sure if it works but I would really appreciate it if native speakers could point out which words I do n't pronociate well . The recent boom or topic of my works is `` Our company will take the cusutomer experience to the next level with digital `` . But now is the time to use IT for developing a cloose relationship between our stores and customers . I cooked curry with a pressure cooker last nigt . I usualy push the reset botten each time I boot my PC . One layer was a cream cheeze layer which was heavy , and the other was a strawberry layer which was sweet - and - sour . You have to know how stubborn your little dauther can be ! ! ! The teacher told me that my daughter is not good at remembering the multipulation of 3X8 and 2X6 . My head was bumped onto the floor really hard so I feel a bit weezy . My daughter is one year and therr months old . In the afternoon , I did my landry , baked muffins , and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earier today , and wake up at 4 : 30 as usual tomorrow , preparing for the begining of the next week . I think I can keep a good rithm for my lifestyle this way . I like drawing with a boolpoint pen . When I was a child , I used boolpoint pens for drawing . So the boolpoing pen is useful for me . Suddeny I felt it was something strange , she looked like she was ill . But I really enjoied this race . But as I have been exposured to a lot of kinds of English on the net , I really surprised when I heard my alarm clork . I did n't go out exept for when I went food shopping . UNIQLO is a brand name , and it 's corporation 's real name is The FAST RETAILING , established in Ube sity , Yamaguchi prefecture , in the western area of Japan . Ahetr that , I could meet him at around 7 : 00pm . Every time I drink beer or some alchol , I always feel like going to Karoke ! My Wacom Graphire3 tablet ( computer drowing tool ) so I 'm learning English because I 'd like to watch movies without subutitles . I lov rock - n - roll : ) But I lov bossa nova too : D I often herad that many girls have no sense of direction . We have similer pespective on many things and I found that he 's so funny and smart . Sunmer is coming soon , so I need to lose weight in a short time . Sunmer . . . I love it , but I do not love fat ! ! ! It was worht climbing all the way up there , it had a beautiful view . I especially love ramen , ice cream , Tenpura , and so on . It has been / will be a tough month at the univercity , but there is nothing I can about it . I enjoyed palying soccer . In the new millennium , with scientific technology becoming increasingly advanced and the disparity between the wealthy and the poor increasing , some individuals link the gap to technologyies . An empirical point of view , I was really hard pressed to believe how the technology spectrum lead to the wealth gap ; since it gose without saying that scientific technology decreases the disparity between the wealthy and the poor . It is widely acknowledged that the cell phone , as one of the most significant inventions in twenty century , transformed individuals ' lifestyles making them highly efficient and convient , especially for the poor . I guess I need much more vocabulary and a large amont of reading . Aaahhh I ca n't believe it , spring is coming soon : D . Ofc course , it 's still snowing , it 's windy and the temperature is - 3 degrees ( Celsius ) . . but the birds are singing , the sun is shining and everyone 's smiling . I liked to see them suck sap we fed and occationaly fight head to head over sap or females in the plastic case at night as they are usually nocturnal . just wanted make fun of that because I 'm tired of studing this laguage yea I know this lonely diary can also help my studing According to a newspaper article I read recently , people with higher salaries produce higher quility goods than those who have lower salaries . This is my first note in lang - 8 , also is my frist time . I am learning English now , but I feel a little sad . It 's hard to struggle with what I want to say day after day , and I do n't know how I can do better . Moreover , I am afraid to dissapointe others rather than I myself . However , it is difficult to keep my tention calm when she seems not to hear me , or does the same mistakes again . The sheep was finally found by the sheepherd and felt relieved . I am Booddhist , but unfortunatelly the temples generally do n't give this kind of service periodically for small children . It will lead to the increasing of enthusiastic Booddhists in the future . Seriously , it is supre expensive ! I lack of fhysical activity . When I used to use an iPod Nano , the bettery would be drained really quickly . without running out of bettery ! My friend told me it was not a copy but a hommage . KAWASHIMA will be traded to another team in the Plemier League ? I ` ve heard that West Bromwich Albion FC in the Plemier League offered him to play with their team . so I will buy the book , Eclipse 's original virsoion . Even though it is still late June , the air temprature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insulance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insulance . I emaled him this morning about tomorrow 's plans . It 's needed to live abroad or you work in campany which need to speak English . `` Sometimes people in forign countries do n't understand them . Tiger Woods has forteen girlfriends . I apologied with my freind but she seemed to hate paying for it . I negotiated with my freind so I can pay for the meals next time . I think it 's tastey ? I hope to make frends with you ! I talk to my parents on Skype evry Sunday night . Skype is very usefull , because we can see each other 's faces . For I live in kansei area , my family and I are all right naturally . I 'm not surprised because the March disaster in Jaspan was broadcasted all over the world . And my friend tought me about it . However , vigorous pictures and unforgettablely vivid sound would be engraved in their minds . Stimulating the subconsious may help your memory . Today I had lunch with my colleague . We had a nepal curry . If you look for the city on a map , you 'll find out that it is situated in Ural mounatains . Some tourists are very dissapoited by this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains . If you go there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( You can see in the first foto ) And , when I got a mail from him , my heart ached . . . ( I was ) nervus . In only four days I will be back home , and I will begin my summer vacation . I have made a plan for this vacation : I want to join my cousion 's company and work for him for free . Therefore , companis should contribute to remedy the environment as much as possible . Now that environment problems shuch as global warming and air pollution are among the most discussed issues worldwide , people tend to have much more interest in the protection of the environment . Futher more , it has even become a trend for the stock investors to buy stock off the companies that contribute most to the environment . If I speak English , I would like to visit many contries ! In fact Napels is famous for its pizza ; D Thomas Jefferson was born in Shadwell , Virgina . In these acres , he built his residence , called `` Montilcello `` . He was continental delegate of Congress , Governor of Virgina , state secretary , vice - president and president . Are the idioms and slungs which are in these books still used in the world ? If not , how can I learn new idioms and slungs ? I just went ( over ) to Yokohama where my ancle and his family live . Trimming is important because it is easiear for bacteria to grow the surface of the raw beef . As a result , his restaurtant caused food poisoning and killed four people . However , she often fussies a few weeks ago because of many reasons , the reasons were simple though . It seemed that she reliesed them by accident . The doctor diagonized that she suffered from a hemorrhoid . So , I speak English at school , but I usually speak Swhili in my village , because most of my neighbors who are in the family of my cowokers can not speak English . My cowokers and students know English , but others do not . ) So , I have received / gotten a lot of chocolete as a birthday present . I like chocolete but not this day ! ! I hope study abroad , and work oversease . Though I like to read , I amd not really good at English literacy . Today we had a violn class . My arm was getting tired from holding the violn . Tommaro is the concert ( sort of ) . We 're playing the violnin at the school library . My brother 's girl friend is Tiwanese . I am about to stady English for a really long time . I will stady English hard . Yesterday , I went to Yoyogi park , which is located in cener of Tokyo , and saw cherry blossoms . Even though our millitary corporation is a good place to live , Anyway I will ask him to read it because the examination is really importent . Have a good weeken . Tomato sause I made tamato sauce today . ( I am or I 'm ) going to go to a Taiwanese restrant for lunch with a coworker , The reason is clerea , I ` ve been to a Go - kon party when I went to the college , but people say there is something diffrence between a student ` s party and an office worker ` s . I went to Utah , US 2 years ago to study English & to teach Japanaese in an elementaly school . The wather has been really really cold for several days . Because of that , I cought a cold and had a headache . There will be a dance performanceday in our studio on the 22nd of March . We started with the coreography yesterday . For example , I magage to write these sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . However if I get areally bad headach , I might as well take the medicine rather than just suffer . I wached 90210 I watched the final episode of seoson one of 90210 . I 'm looking forward to watching it next seoson . Today , I studied phisics for an exam . So , I always glew some vegetables in a planter . I 'm looking foward to it . I need you to help me improve my english leval . It 's 6 hours to go until the biggining of the match . How to condjugating for Lang8 ! ! After he left , my daughter and I talkded a lot . It is the central city the northernmore Japanese island , Hokkaido . I am sad beacause my sister deleted the program ( of the keyboard ) for writing in Korean ! . The stylist in the shop was a very friendly woman , and had a good sence in cutting , When I checked my diary this morning , the freind whom I had just met had already corrected it . He thoght that I rarely ate meat ( beef ) because I live by myself . If I eat a hanburger slowly , chewing it well and tasing it , I always regret eating it . On the way home , I bought seven bottles of maple syrup and three boxes of maple coockie at a supermarket . Additionally ( or , Also ) , prices are negociable . From your cazy sister , Haruna I registed an account with Lang - 8 , but ca n't understand this usage . I 'll stop complaing . Sory , just a question . Even if I get a boyfirend , I will choose to live alone , because even we broke up , at least I would have my home . I do n't want to end up not having a boyfriend and a place to live , that would make me feel like a loser . Mainly because I was in the Fhilipines and Due to tayhoon I dont have class in the morning u know a thyhoon will be coming to japan . I heard it was the same in China or in some Europian countries . I have a problem with choising new jeans . He faced about one thousand and nin challenges , and finally , he met a person who was willing to buy his recipes . I guraduated from Nihon University last lear . I majored in International Reralitons . I did n't know the name untill then I know they are not interesting at all , so everyone whould n't want to read my entry . I 've had a lot of experionces like this and I 've realized that men and women ca n't be close friends . , so we would like to make the accommodations as comfatable as possible for the newcomers . but there was a launguage problem . ( Sounds natural ) but after drinking a cuple of glasses of champagne , I was very drunk . Recentry , I make many kinds of bread too . Do you remember those days , your mother knit a sweater in the dimp light for you when you woke up at midnight , or because you came home so late that she was n't ? able to be assured ; you know that there are many things like this . I went to a study group for CMS ( Content Management System , an internet system for blogs and websites , like WordPress ) and had discusssion with members . Because I am abstaining from drinking , it seemd that not having much alchoal made me drunker . Hummm . . . Mubark was the priesdent of Egypt for 30 years . Allah helps peole in Egypt . What are your favorite sports ? There are many beautful clothesand dance movements in the film . But I have the good luck to be surrounded by briliant friends , excellent teachers and an affluent campus ( The only weakness is that it is too far from my house . . . ) . Even by doing so , it might be difficult to attain somethig special , but what is important is to try to have an awareenss of issues and start a voluntary pursuit . On top of that , I heard that grown - ups feel as if time has passed faster than in their childfood . Thanks for reading my jouornal A public veiwing is an event where you cheer for the team through a huge screen with a crouwds . Japan played well , but I think there was a clitical diference between Japan and the Netherlands . I do n't konw why we 're supposed to take classes in shch a marvelous summer vacation , which should have been full of joy , laughter and merriment . Alought it sounds a little pessimistic and overstated , what I really want to say that learning should be a lifelong and happy activity rather than pushing us to the limit when we are in a bad mood / depressed . Improving our knowledge by practicing instead of talking thoretically is the most significant , positive and effective thing in our life , in my opinion . This week , I 'm staying with another fost family because my host family is going to be in Bali for two weeks . It was so amaging . Then , I remembered that the foreiner was seating alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speaks English . I carried him in my arms and looked aroud to find his master . She doe n't have confidence about English , but she knows many verbs and conjuctions . To my surprise , there were no stories nor paragrafhs on her textbook but conjuctions and exercises . Thank you for yor cooperation . The shop where we went to was ouwned by chiken egg farmers . Of offcorse I also liked `` Jack and the Beanstalk . `` : - ) So I hope that I will be wrting at least one sentence correct . After that I lost my confidence in speakin English . Although I did n't get first prize and practicing English speecg is really hard , this English speech contest was a really good time for me . I hope my engish speech skills will be as good as a native speaker ! I would like to introduce some disgusiting examples to you . When I was a student , I spent a lot of my monet on music . Okinawa was warmer than Tokyo , becouse of its location . This time , the airplane was deleyed by 2 hours due to the maintenance . It 's on my way to mya hometown . I thank her for heling me to study English . I ask my coach if I could take a break , then he suggested that I take the intermidiate - first lesson . hello guys from japan ; my first diary abt japanese disaster Two women are in their forties , another woman is in her thirties , and I 'm in my twenties , but we only speak in English when we get togher so I ca n't feel the generation gap . I feel like we are friends . And I find that even after severl Chinese have corrected someone 's jounarl , there are still some errors / mistakes . Sometime its punch lines are too ridiculous to believe that anyone on earth is really that stupid , but that 's what makes it so good . Somehow I ca n't help wacth it everyday . Recentry I have been busy with job hunting and class in university . So I am so happy that I had slept untill noon . In Japan , the replacement of prime ministers seemd to have become an annual event . Universuty is said to be a life experience . They can strengthen thier bonds deeper through other school events such as cultural festivels . Doing somthing for the frist time is very exciting , as you know . My counsin bought a chiken for my dogs . . But I also lack English languate skills . Do you know Kao Corpration ? So , in conclusion , I want to state that not only must the government make the already existing laws tougher , but also cencor the media , which has a trmendous influence - especially on young people . It is a little dificult for me , but I always enjoy discustion with her in English . I 've only had a few food but I do n't feel hugary . Sometimes I 'm not hugary but I want to eat . . . . At last , I arrived at my destination , Marita Airport . The goddess did not want them to be togather , and so used her power to turn them into two stars . but I broght < / FONT > some bread to eat with friends . Shiba dog is a Jananese dog . They are medium size and very It 's her first time to go to a forein country by herself . Do you know `` Syabu - Syasyabu `` ? It is a dinner that consists of many vegetables and thin beef swished in boilling water . There were many foreign visiter in the restaurant . I have made some friends who are japanes . Thank you for coming and seeing us at Onoda - shi , in Yamaguchi on Juniary 21 . One mother said your reading of the picture book was wanderful ! ! The first time I met him , he talked about `` SD Gandom `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand anything he was talking about . After leaving Tokyo , he will go to Shizuoka to view a big Gandom model . Withoug Anna , my English might not improve . Anyway , I have one thing I want to say : that I leave on Aughst 26th , for the US . I want to thank eveyone who has helped me with my English so far . So , I expect that many people read my diary and correct sentenses . please correct the sentenses and be my friend ! I never learnt ( / do n't know ) how to play the pinao or guiter , or learnt French or Japanese like some people . As a result , I found this website and enjoyed correcting articles written by some foreighers because I am good at it and it makes me feel good no matter if they thank me or not . I had lunch with two friends ( and friend 's daugter who is one year and seven months old and very cute ) today . This afternoom , our class will be having a class meeting about electing the elite as members to the Party . I do n't care if other people say `` You ca n't be a milionair because you are not already rich `` . This suturday I went to Shiga because of my group activeties . Today , I got some classes at my colledge . Showing my ture colors , I want to skip my classes ! ! So , now I should go to colledge . I did n't have any Indian friends in , Taiwain , befroe . All my foreign pals are Japanes . But the type of rice is different from Taiwain . Every etnic community has their own character . My favorite color is white , so my car is also whiet . becaust of that , I want the white iPhone 4G . I also want to learn German because I really luv German football and Fc Bayern ; - ) This is my first diary . I am interested in Fashon , art , and 90 's music ! I am `` good at `` speaking Japanese but I am `` not good at `` spesk English . Please hlp me ! I am going to send an E - mail to my friend who is an internationai student today . Mixed feelings agian . Frist I feel happy because of someone who told me I look like a singer . I 'm not alome , right ? I think it is about the guy who kept eating only McDonald 's Humbargers and potetos . Yesterday 's deinner I started surfin about 2 months ago , but then the earthquakes and tsunami hit the Tohoku area . Now I want a motercycle and dream that I will get a big one and travel around the world . It 's like making blended whiskey using single molt ones . Not to metion learning other languages . For these reasons , I thnk the education that aims at the development of individual tarent rather than learning by rote is needed the most . One of my classes called International comunication course is one of those systems , where we can learn other country 's traditional way of life as well as English , and we can see many people from other countries . My high school gives us many opportunities to go to othere countries . What is the Au pair Prigram ? I can study Eiglish in various ways on the internet . By taking class in an English center , I can practise listening , pronounciation , . . . Generally , I do n't say much if the atmostphere of a conversation gets stressful . She never thought of anyoue else . You waana be somebody who complains , but you wo n't be a listener . I am sacre of you now . . . . Usually , the beans are sold with seasoning such as soy sourse . I was born in a city north of China , and I went to colleage at a city north east of China . I love snow very much , and the winter time during colleage gave me deep impressions of good memories . Hence , more and more visiters should have opportunies to travel to other places . I 've been a lacross player since I was university student . During that time , I felt quite umcomfortable . It was atough time , but I enjoyed taliking with thecustomers . These flowershave special coloer and shapes , too . Recently I could only go to work for two days a month , because I have been receiving post - surgical chemotherapy to prevent a recurrence of my cancer and metastatis . Though it was regrettable that I got sick , I belive that my disease has developed a greatness within my soul . These days , I 'm always shoppinng , singing in the `` KARAOKE - BOX `` , drinking riquere or doing many other things . The Spring Festival is the Chinese New Year , and it 's the day when all the family members come togther and celebrate . Why can you earn more & nbsp ; in Canadian companies that estimate indindividual skills more than Asian companies ? & nbsp ; It really depens on the your skills , whether you earn a lot of money or not . I hope my English will be getting better for many resons . And I will Ihelp you with Korean , a little bit of Japanese . We are going to go to Himeji catsle and some other places . but , my englsh is not good . Nobady knows what will happen in the future . I think it would be fun to write a daiary on the web . Everyone seems delited by it . My fother had a lots of potatos in my house which was more than he can eat before they get spoiled . I mean , real diary . Of course , I have written English compostition in school , but those are not diaries . One of my friends reccomend it to me . When I found the ( rain boots ) , I ( thougt ) I ( loved them ) . My Frist Time Writing In My Diary In English I purchased a traning suit , which is similar to what boxers use before their matches . They controle effictiveness ! But , I relly feel unhappy with my English right now . . . In this movie , Led Zeppelin 's famous song , ' Immingrant song ' was used . Unfortnately , the long holiday ended today . I 'm going back to school again this March and I 've been planning my course schedule while reconnecting with my friends via MSN messnger . And then , after reading those comments , I was really pleased and happy becase the explanations helped me understand the parts that I did n't understand clearly and there were a lot of examples to help me too . Well , I had a delicious breakfast , and the weather today is n't as cold as it was befor . But musicals contain many songs , and it is a bit more accesible for me . I really want to reccomend it to everyone ! However , I suddenly heard a terribly lowd sound . When I say that , people aroud me look at me surprised as if they did n't expect it and I looked odd . We can listen to the radio and do simplitic jobs at the same time , and also feel relaxed . But I apparently looked like I was listening to an iPod , so most of the people were surprised to see me change the radio chunnel . I was surprized that Filipinos do n't use such a convenient tool in everyday life . If we find out this information we can help satisfy the niche foreigner 's desires and it is a buisness opportunity too . People there are very coool , I love chatting with women . For example , they can learen how to speak and begin to understand different languages by watching TV . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the soud of my mother 's breath , remide me to be more stout and obstinet about my hard - to - reach dream . Of cource , I recognize that my range of vocabrary and how to express myself are not enough . I 'm feeling more comfortable even though I recognize that there are still many mistaks . I want to take advantage of this hapiness and time to improve my English . I should remove the worms from these leaves to let them keep gorw . Because of that , the first day was going to be canceled , but the typhoone has gone the other way , so we were able to continue with the festival . During the ride , a Filipina woman spoke to me in Japanese . I hope this accomodation remains for a long time long agaist the upcoming tough economic condition . I 'm going to stduy English and German hard on this site . Should one ecpect a reward when doing a good deed ? My body is still craving a cup of coffee , so I am counting down to the opening time of my fovorite coffee shop . It is also difficult to explain tecnical documention in English . I 'd like to join in fittnes clubs gymnow . In the gym , there are a lot of foreiners so I 'd like to get in . Sometimes I think that days are too short , because I cant do many things , but on weekends the days are longer and I dont know waht to do ! When I watched his behaviors these supermarkets , I found that he was walking around there quickly . We can enter free of charge and the plice of food and drinks is very reasonable . I 'd really be greatful for any help in improving my English abilities . I think that it 's about time when I start Skype and talk English possitively . When I am walking down to the street , it looke like only umbrellas are moving on the street . Maybe they have seen my old pictuer on laong - 8 . In my senior high school , HK friend and I have writewrote a letter to JKR . Althrough I did n't gain any messages from JKR , HK friend sent me a great Christimas gift : A HARRY POTTER MAP . ( Print by himself ) The map is just like in the movie . Because Japanese books have manypictures about maids and Vctorian time . France has ballet , and Hawaii has the fula . Generally speaking . most of them were built during the feudial Period . Each of them has distictive feachers . So , even if I was a lttle bit interested in these kind of things , I tried to hide my curiosity . We have re - instructed the packers to take notice of proer packing material to ensure that panels will not shift in the carton to avoid any damages to the board . It was my falt , but he did n't need so angry . I hope he will be re - assigned to another department next quater . He had a heart painted on his forhead . That is lovely for valantine 's day . I would like to ride him , even though the frist time I might be scared of him It is famous for hot - sping and it 's beautiful ocean . June is the rainy seazon in Japan . When the rainy seazon is over , summer has come . I am twenty three ( years old ) ; it seems that I 'm not yong , but I am still in school . I hople in the furture I can have a beautiful life and I konw it 's not easy . But I 'm still a student now and can do nothing escept learn and learn every day . I hope I can do songthing for my family , but I do n't konw what to do . Jeju is a beatiful island . How about your countory ? Do you display Restart Toiret Training Mothers should n't be too nurvous about this kind of discipline . One day , she was playing with her friend climbing the jungle gym , but her friend climed higher than her , so she started to cry out of frustration . We are plannning to play games with kids . Also , I grilled chicken breast and spwrinkled some salt and pepper on it . Obama 's presidencial inaugural address . Honestly speaking , I had never heard a presidencial oath in detail in the past . The Ecconomy is badly weakened . . . `` - He helds respect at the forefront . . . `` For us , they forght and died in places like . . . `` But when you come ( go ) to their country , and begin living as they do , and begin speaking their language , you undastand that they are not different from you . I am studing two languages every day . Do you know of stores that sell many inexpensive swimwears ? She is aways kind to me . She is lovly to me . Maybe I can borrow some more accesories for my other friends . We will see . . . Although you have many manythings , if you see something your friend has that you do n't you really want to have it as well . However , although this is true , I believe we can learn to be satified . I came to Australia last September , and it was my first time traveling aborad . Actually all of my lugguage had been automatically transported to my next airplane . But I had already made a fatal mistake because I was waiting for my depature time at the 1st gate but I actually had to go to the 60th gate . I am an engineer at a construction company and I am constructing a phermaceutical factory in Shizuoka . Hence I enrolled at a correspondence university to get a teaching lisence . As usual , I had some bread , coffe , and salad for breakfast . It goes very well with Franch bread . Today I happenly to meet with my ex - colleague . So I adviced her some advice . It is more relaxable there than in the library . Therefore I 'm goind to go to New Zealand next summer vacation . Starting today , I 'm going to write a dialy in English . I took an exam this moning . I will have to have the same classe next term . Yet it is very warm and splinglike beautifull day ! In the first , he threw a carrot , in the next pan he put an egg , and the last pan was filled with granules of cofe . After some time , he took out the carrot and the egg and poured out the cofe . - The carrot and the egg have boiled and the cofe has disolved . But what about the cofe ? - It 's most intresting . Oh , it seems like the ' Spam ' sketch by Monty Phytons , I watched it just last night ! I got into a university finaly ! ! ! ! ! Today we finshed lessons earlier than usual , so we returned home earlier too . It would suck to be sneezing all day when the long and cold winter is filnnaly coming to an end . I am going outsite Bangkok today . I have to syudy tonight for tomorrow 's tests . We were strangers , but he made a good impressiom on me . a montain eruption = ( Yes , I know I will soon enter universty , and that Iam 18 years old when some people find out about that , they are suprised and they think I have a proplem I can learn new information from it . spically if it was about history . I love a lot cartoons , spically Japanese anime . Such as : Conan , Anne shirly , Remi and many other anime . I like anime that showcases proplem in socity , or about history . Anyway , my friend who lives in Christcharch was fine . and she dicided to move to her relative 's home . If a dog is a rabid dog , it 's very dengerous . I 'm correge student . So many of my vegan friends cook 3 times a day , and I always help to read what the package of ingredient says at supermarckets : ) Nowadays , I found out that people smoked in the streat . I was driving my car , feeling that I lived in the early 21st centry . Right now I 'm at the bank , where the last fireworks fes of this year will take place ! I know I 'm crazy , but I love tham and really think they 're beautiful ! I grabbed a great spot up front where the fireworks are being shot . Many fireworkers are now setting up fireworks : ) Im 'm happy if I get one ! So everyday or maybe sametimes I 'll send you even if you will not reply . so it dameges the hair . I want to improve my English because I like talking with people , girls in particulary lol . Because of exam day , we left school before 4 o ' clock and soonly got to the studio . We practiced calligraphy at frist ; after that teacher started teaching us to sketch . sound in Brithsh English . tell me wheter the British are more likely to pronounce it as ' I : ~ ' ? Ipo is also a city in Malaysia . My computer is slightly old and slightly whierd . I 've already graduated from university and my mojor was occupational rehabilitation . I have just registersed in Lang - 8 . I usually record musci from CD and transfer them into my iPod and watch DVDs on my PC . It worked well except the thing it didn n't have any disk drive . My life seems such a catastrophe that I counld n't help but sob for all my past teen - life . Is it alright for a sophemore to dream anthying about her future ? I had to mediate a conflict of opinions , because an employeebe had been in trouble with the store manager for a couple of weeks . On the other hand , 12 % of people report that they dislke obese people , less than the 16 % in 2003 . By the way , recentry one my lang - 8 friends said that he dislikes female smokers . The idea that a person 's character is desided by blood type is wrong , because the fact that there are n't relations between a blood type and a character has been proved scientifically . ) I studied English in many places in Peru . In Japan I use the little I know . Maybe I speak English poorly , but I feel that I speak fluently . I do n't think I can undertand much . This morning , he woke up earyl at 7 . I usually eat out becaouse I have lived a single life for 9 years . It 's a very famouse dish in Japan and it 's very easy to cook ! I have n't writton a diary entry for a while , haha ! I found I would be late to my germany class . ( A heavily editted and dubbed English virsion of this film was released under the title `` Worriors of the Wind `` in the 1980s , but it did n't follow Miyazaki 's original plotline . Now a `` no - edit `` virsion is available . ) I recommend the manga virsion too . My husbund called , `` Pass the solt ! `` I did n't know why he asked , but I brought the solt box to him . She said that she wanted me to read outsite her room , because she would like to sleep in her room , but I did n't mind ; I still stayed there for a long time and fell asleep in her room . I write down my firts entry into my english diary today . I 'm very nervous becouse my english is so terrible . I had my hair cut doday . What was interesting was that someone who wore an armband which had the characters `` STAFF `` warned a man who was smoking in the yard neaby my lab not to smoke there . My other friend Netz ( Short for Nezacant ) gave me a shield . The reson was work . before I answred that question , I asked how old she was . One of them is the Gneral Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the futuer by way of Relativity . But , there are problems ( with going ) to the futuer . You can go to futuer when you slove these problems . So light spread as wate and ligth is composed of particles which we do n't see . Light is the only material which has qyantum nature . Even if I get a full score on the writting test , it 's unlikely that I 'll pass the ikkyu test . I 'm a house wife but my family let me alone and prepaired food for me during those two days . When I went around Pris , I saw a lot of beautiful places , including classic and old buildings . I coud not write my entry yesterday because there was thunder and lightning last evenig . My friend and I looked for somewhere quiet to study Chinese and Thai language , we did not find a good palce so , yesterday we studied at Macdonald 's but there was a lot of music and a lot of student doing their homwork . I do n't know why but I know we have a good mood all the time and like to smile at people wheather we know them or not . I asked her about if in China they have Kung Fu or not , she laught and said yes but it 's diffirent in the movie because they ca n't sping up a tree or a roof and things like that . Look at the frist picture . Have you seen it before ? I 'm reading , serching and writing in the train using my MacBook Air . I have some plans and hopeness for 2009 . I hope to study English continueally with members of my office department , as well as start studying Chinese and other languages . I think it is difficult for me to choreographering dances , Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since the Jpanese market is shrinking due to the reduction of the population . But it 's a little bit contravasal because it 's very rare for a Japanese company to use English as an official language . Even successful Japanese companies in different contrieds like Toyota , Nintendo , etc do not use English as a official language yet . I think people who alredy study English like us in Lang - 8 do n't think it 's a huge burden . I wonder how they prepare for its gols . This Diary is an English - Laerning - Record and Life - Record . Today I attended an editorial meeting of an acamic journal of gerontology . I 'm fifthteen , I study Art in Malaysia . Yesterday was very good taiming to come back to Japan , because now a big and Next time I write , I 'll discribe many things . I love anymal . Eating dgs shoud be banned . Headache occured by a bad smell . Do you have any hoppies ? Do I call them `` hoppies `` ? Because , coffee farmers should get a higher imcome . This game is between Japan and Hollad . my sentencies are very foolish . . I ca n't serect good sentencies . . I studied much harder than before , but unexpectly , I got poor grades . She is such a cool woman , isn n't she ? But , the only word I know of to describe her is `` cool `` . I am a person who looks on the bright side and is an enthusiastic self - motivater . These days young people do n't necesarilly have it on New Year 's , I live alone and far away from my hometown , so I was n't gona to have osechi ryouri because it would be too much for me to eat by myself . Last December , my sister called me all of a sudden and said : ' ' I won this expensive OSECHI ryouri in a BINGO game at my company 's party , but I can not receive it on December 31 because I 'm going back to our hometown . So I 'm asking if you could go and accept it at the restaurant . I heard its very delisious ! ' ' She said that she misses me , and she may possibly come in Oktober , but only for a weekend . Shikoku is noted for their noodles , hot springs and beautifl nature . If I run into a foreiner , he / she gives me a kind of smile . But neative speakers occasionally ca n't understand what they want to say even though we as non - natives can understand it . For our office , we usually buy toilet papers thorugh the delivery service of office supplies , however , because the earthquake occurred on March 11th , this service had stopped . I lile him because he is very kind . I didn n't know that many people in korea can speak english fluently even though they do n't have any experience abraod . I was shocked and I thought back to mayself . I am taking English lesoon . Do you guys care whether your borthers and sisters are older or younger than you . When I ask you , `` Do you have any brothers and sisters ? `` , you might answer `` Yes , I have two borothers . `` Every Friday I felt tired , although there was little work that needed to be comopleted immediately . But , I could n't undestand his English . . . I shall call him again after I can soeak English fluently . The reason is : there is no chaire . Waiting for the bus took about 40 minits , until it came to the station : ) ! According to the wheather news , it will snow next week here in Niigata , Japan . This is the first time I 'll experience the winter in Niiagata so I 'm wondering if I will survive the upcoming winter . it might be bad thing brcause many men would like to marry women who are good at cooking . As I get married , it would not be good for my relatonship because my husband will be eating my dinner and my breakfirst . So if my cooking is bad , we would have some issues that I ca n't make a nice dinner . I am jealous that this site 's members can write such good Jananese compositions ! ! and yet we sonetimes regret our choices . Just compare marits ? Or just risten to advice ? But the rasult was the result , I must accpet it . I usually tap tapdance alone . It was colod , but we felt hot He is th blind twenty - year - old pianist who won the thirteenth Van Cliburn International Piano Competition in June . I am not familliar with classical music , but I think his music is very beatiful and touching . Today , I went to shopping near the station becouse today is a national holiday in Japan . oooh FUN ! Electric utility expense reises this summer . Hm , sounds studpid ? I was so proude of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my fmaily twenty years ago ? When I was a junior high , one girl who was not my classmate came up to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an anwer at all but I managed to say that . It is very rural . I love Yamagata becaouse I can relux . I practiced drawing dinosaurs , but they look like crocodilia a little . I don ` t have anything special to do , so I usually watch america dramas . The other thing I remember well is that the victims were transfromed into hedgehoggy monster - like figures like once in the aircraft . Bean throwing , which is called mamemaki , is done at home on the day of Setsubun . But such a considertion is a dangerous myth . I think they 're difinitely great . I begin to study Enlish with this site . I pefer the version where the princess kisses the frog and the frog turns back into the prince . We promissed to go to another tennis camp in the summer ! I have memorized lots of vocaburaries , but the dictionary that I use is still very limited . deeling off the bottom The police found evidence that the two companies had been deeling off the bottom of the deck . I see a pile of clothes and I question / ( ask ) myseft : `` Why do we wear clothes ? `` She was a completly / really stupid girl and she spent two years in jail in America . She experienced life in an america jail . My neme is Kaori . becouse it is n't the same as Japanese . I 'm going to shcool tomorrow , so I hope it 'll be good weather . I 've been learning english sice last summur . and I want to talk with forigner . My friend who is a 28 year old woman is thinking about getting marrige . Her thoughts are completly different from his parents ' . I wiil go shopping to get some groceries . l am studying English at a langage school in Brisbane . I want to speak and undersand English better . I made Miso suop and another dish . The Miso soup was a littel bit thick . I always wantded to be a cook . I sometiomes use stamps at my job for my customers . I made a decisioin to buy a house , and moved to a better neighborhood in late 2007 . I will write just a little abit of English today because I wil read my old diaries nd try to understand them again to help me make my English good in the futur . Although the internet is more and more popular among students , there is no doubt that a book is a vital way of studing . However , I have to consider the people who corrected my grammer . It is still very hot , burningly hot , in the daytime , but it has been getting cooler in the morning and the evening day by day . Moreover , all of the users are friendry and very kind . Last nigth I spoke on ICQ with my friend in English . Themes were different : religion , musik , job . We address those who are older than us by their names + san , but when I was in Cairns , Australia , nobady asked me to call them ' Mr or Ms ~ ' . Perhaps they would get nervos in the fight and they could n't give their full power and technique because they are polite and gentle guys . This is my first english diray , and I am very excity . I reside in Chengdu , China . It 's a very nice and friendly city . hehe , It 's like a panda country . Have you seen Kung Fu Panda ? She thougth that she had been living a boring life . So many people are suffering because of unexploded bombs and mines in Bietnam and around Tailand . But at Shinjuku , JR also anounced that their service was stopped because of an accident . On the way there , I drew out 100 thousant won from my account using a card . The roads / roadways of HCM are always jammed / jam - packed with traffic . For entainment and creation , all you need to do is install it . beauifull Spring ! I offen see caple of Japanese woman and foreign man . is Jpanese Man not popular with foreign girl ? Plese correct my dialy . I hope I will have someone to give chicolate to next year ! ! Also , I realised that I got close to paradice or heaven in a different way . In the bus , I met three foreign student , one is American , another is German and the other one is from Holand . They want to vistor the `` Tian an men `` , but they did n't know how to get there . I want to go to many resturants , but I 'm only here for five days . Before the coming winter , I ( prepar ) for the cold . I saw two of my idels today . The corectee might have believed those mistakes were right . I have notied that I feel the Japanese economy gradually worsen . To sove the problem , I believe that youg people should go overseas and study , travel , help developing countries and so on . I went to this course , becouse I can read English text ( not good , but I can ) , I can understand english speech ( worse , but I can ) , but I ca n't speak it ! David Coverdele is one of my favorite singers . Because his voice is adrable , many people are fascinated . I could n't unerstant ! ! ! I have n't wrotten a thread for a while . Meetting my friend , Eatting nice food , Sleepping a lot , studying english , I can do that ^ 3 ^ I 'm going to take part in Hana where I learn English skeaking with . foreigners . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` while eatting . So I 've made up my mind to learn it seriously as I studay for my profession . I 'm growing some vegetables in my beranda . Last Suturday I had my hair cut . Today is April Fools ' Day . In the US , peopie usually fool their good friends to make everyone happy . because the older generation do n't like it . In their ideas we will be very impliet if we did that . After posting my journal yesterday , I regretted it a lot because I wondered if my journal entry might sound offense . I want to say that English helps me to express my emotion more easiler than Japanse . I think that there are some culuture differences in there . As my college is in Kyoto , I usualy only go around in that area . but , I am going to Tokyo to take a seminar for job appricants tomorrow . So I think that I am busy , but I would think that `` busy `` is evedence of living a full life . Well I just signed on . I hope that with this web site I will improve my englsh skills Eeting is important . They do n't want to upload their own pictures or carrers . I want to have the ablity to be able to help somebody easly . May this new year bring you many oppertunities I 'm a university student studying archtectures . This is my frist trip abroad . The next day , my left hand had turned pale and a litle swollen . I went shpping with my mom . There will be an unique ceremoney . By yhe way do you know , ' ' Turtle Talk ' ' ? First I have to decide a specific goal for example to pass one qualification , to teke an exam , or to get a job . It is most inportant that I continue with my goal . I ended up eathing too much . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more unconfortable . I think music is like a beatiful performance . It 's something essential like a type of language . There is beautifl natural places in NZ , and it is similar to my hometown . Tommorow , I will walk around town . The day before yesterda was the Midsummer Day of the Ox . Even if I achieve that perpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studing the written and reading tests do n't help me speak English and learn English expressions . I ve just looked up the word `` progress `` on an English dictionary which is Longman dictonary . I came back from my business trip last night and I jogged to the office to deal with the receipts to get the compensaion now . I often eat out , like at McDonal ` s . Right now , I 'm watching a TV program about the Houbble ( Space ) Telescope . Mein Vater ist beamtin . Active : I washed my dishes befor I came here . * Japan 1 - 0 Camerune ! ! They had great performanced It was too difficult to communicate well with the foreigners , but I enjoied spending time with them . As a matter of fact , I like listening to him at th meetings . Some of my frinds ca n't drink them because if they do , they hurt their throats . The most important thing about English is to grasp the common vacabulary and the prenounciation of each word , which I am sticking to neither . We mostly choiced the topic about the teacher , only he choice tennis . He also used his camera to record other student 's activities exaggeratively . When once in the class , he aslo did this , the teacher was very angry , he hit the student 's head with a dumbbell . I want to wisit the school to pay my respects to the teachers but I can ' t I feel like the happpiest person in the world It is my firt time writing a diary in English . In conclusion / Finally , I think I become a more comprecated person when I speak English . Actually , my parents are getting divored as they always argue about things . even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can be return to after I graduate from my college . . . even though the real reason why I wana leave Japan has something to do with my big dream . I wanted to go on a trip abroad during GW , but my wish was n't realized beacuse of the reason above . some people mihgt tell me I 'm styaing in Australia to study English . I drove my car onto the main street and found that it was congested ( du che ) ; it was rainning at that time . Heavy traffic blocked the street . Thirty mintutes later , I got out of my car to find out what had happend . I walked back to my car , turned on the radio and waitted . beacuse this book has so much slang Other than the internet I learn from apllications such as `` Windows `` : ) ) ) ) I need a lot of help becouse I find English a dificult language to learn . Because it takes about 30 muinites to drive there from my house . I need to do some streching and start to take care of my health . I wo n't fail to fulfill my resolution . If I become a menber before Jan . Yesterday I arranged that I would lern English grammar . He jumped into the sea and he almost drowed . Whenever I see an English sentence , I have to think about it , and then translate it before I can undertstand the meaning of it . This space seems like a place to wirte a daily diary . I thought , I shoul write something in the `` About me `` section . I was unplezantly surprised that a lot of my mistakes deal with articles . But I found that Janpanese was much more difficult than English to learn . I wonded if he mentioned it because he wanted to invite me or because he just wanted to tell everyone the news ? But the realiy is not allowed us to choose right ( decesion ) . First , when I wanted to buy some street food or drink I always used my fidex and middle finger to show I needed two meals or two cups . But they show a thumb for one , and the fidex finger was for two . They were allowed to smoke in the restaurent , too . Silvano was so patient wih me . As you know I do n't like politicians publically speaking , but there is one politicions that I want to hear speak , Junichiro Koizumi . Now Tarou Asou is president , who is known as the way to fun speach . ( ? ? ) I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( I feel very frustrated and I 've been wondering when my Emglish will improve ! But my vocabularly was too limited to make the conversation interesting . I 'm not going to say anything about the story anymore becasue there are some people who have n't seen it . In Germany , a genius Japanese doctar named Tenma had seaved a boy 's life through operation . Unfortunately , Johan was a genius person who killed without thinking about the siginificance of human life MONSER is one of the most populer comic book in Japnan Thanks a lot for reading my sentents . I even thought anything would do as long as it wsa a living thing . After I separated from my friend , I also felt another afterschock in Tokyo while I was waiting for my bus . After taking my antibiotics , I made a rush for the school so desperately that I forgot to eat something . I tought I would be able to buy something once I arrived . But my vocabulary is poor for traslate the meanings of this . Befor the semester started , I was join the magic clob in my university . Fireworks to be held tonght in my town Fireworks is an anual summer event in my town . But according to the weather infomation , it seems like the weather might be poor today . In Japan , the 29th of April was a pubulic holiday . However , I am often said `` You look like a half - beed ! `` I think that 's because of my brown eyes , but I 'm pure Japanese . Today , I woke up at 8 : 00 AM , drank cofee , and watched TV . When I am writing a diary , I use a vocabllary book . Do you know about Nagano ? Do you know about the Nagano Olympics in 1998 ? Nagano also has famous plase . For Forexsample , Zenkouji is a very old shrine ! Would you serch the internet ? It is a very big shrine ! In 1992 , I went to Thiland for meet my famiry . But evetually I managed it and we made dericious `` Japanese mugwort rice cake `` . It rainning cats and dogs in the morning , but then turned sunny in the afternoon . In the Middle East , they 've made a truce between the Isralis and the Palestanians . I 'm not as fascinated with it as she is ( that would be difficult : P ) , but I enjoyed the beatiful romanticist and photo - realistic paintings . They are so carm . When president obama was speeching , Recently I 've watched ' Star Trec - Voyager ' to improve my listening skill . But my english teacher recommended to watch ' Star Trec - Voyager ' because the actors and actress speak clearly . So here I 'd like to study techical English and find new friends ( fram all over the world , but it seems to be only a dream ) . However there was no answer and I opend the door . A middle - aged woman in a green shirt was sat down on the toilet . When I opened the door she looked surpried and I was also surprised because I thought that nobody was in there . . . . We looked at each other for a very short time . Today , _ it was a beatiful day . I sterted a Twitter account . So I hope that some day , we can meet in heavn . Everytime , I always use my iPhone for something nonecessary . I have been in the USA for 1 and harf years . While I was working at a Japanese company in Japan , I sometimes got phone calls from the other contry 's company . I 'm fine thank you and you ? `` at athat time . Please collrect my sentences if I make a mistake . I have been working for one year and I have learned a lesson - - I lack counage , which is a disadvantage at work . Life sucks without true love , I msut learn what to do to find zeal for my work . I woule not be skilled enough . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into the living room , and she said that some blak object fell . Do you knou `` Fantasista `` ? First of all , population growth has gratly influenced the world . For this reason , I discided to use this gym quickly . But to be honet , it was totally fun . haha . If only I could belive it caused no pain or little pain . . . . . It is very cothic and turned my thoughts to ghosts . I was taking some photos of the church iyself , and of me next to it , but this photo is the best one for me , becouse it creates jouful emotions in my heart and soul . My mother took us to the station and I took the trin . I think I lack knowlage and books may help me to express my own ideas . I finished reading `` Wuthering Heights `` yeaterday . If you have any reccomendation , please tell me . ^ ^ I only have the datebase in my PC . I got a ticket for Kenji Ozawa concert . He is very critical of capitalism ( particulary Amrica ) on his site . I sometimes use paper or solid models which I made , beause it 's hard to describe through only speaking . I jogged only on the weekend , but I think it has is little effect in decrese my weight . Please crrect my Poor English sentences . The daughter who will arrive first will arrive early next Tursday morning . But she is really Enlish , and she speaks almost exclusively in English . Since everyone has his own fata . Another two days of the week , I worked in the training center of an universitie from Could somebody think of adjectives which do not have superlative or comperative forms ? Hello , evryone ! I got always flitened ( scared ) every time I heard it . It 's especailly good for improving my listening and speaking skills in English . I think studying Engish by watching soap operas is more effective than studyng with books . `` Charo `` is a Eglish learning program by NHK , a Japanese broadcasting campany . The radio version is little bit longer and more difficult and has more datails . When I get tired of studing English , I just listen to the story . That 's why I believe it is the best brogram . I am writting for the first time at Lang - 8 . I know some of my frieds work about 14 - 15 hours a day . So I practise my English , study accounting and go for a run to excercise in my spare time . I think that forigner are more open - minded , so I can make friends more easily . I see Jhon get on a train and it leaves XXX station at 6 p . m . And on the tarin I come across a man and he asks me what train Jhon got on . I think I could say something like , `` ( Jhon got on ) The train that pulled out of XXX station at 6 p . m . `` But , I want to explain without referring to time . ideal : What 's the ideal educational style for Americam people ? ( for ? ) However , because we chose an area of higher altitude , we had very good snow condithon . : - ) I felf very tired and stressed , but it was very interesting . What is culture ? It refers to the civilization and customs of a cretain race or nation . We do and say things that maybe we would not do in other counties , so knowing a counties ' culture is improtant if you will communicate with global people and travel to different areas . I think a very imprntant reason is that we have different religious beliefs , follow different customs , and live in different environments . I am learning English leanguage in a short time and I do n't know how to write it well . I think that it is a nice website because a lot of people can quicly learn language , so I want to write here once a week and if you can , show me and correct my mistakes . Today I recive 4 pieces of clothing that I bought from Taobao . `` Gheimeh `` is a popular dish in Iran and it is also cooked in most religious ceremonies like some cermonies that are held in two days called `` Ashoora `` and `` Tassoa `` ( `` Ashoora `` and `` Tasooa `` are the days that Muslims , especially Shias mourn for `` Emam Hossain `` ) . Becuase of this use , some people called `` Gheimeh `` , a dead person 's meal . For cooking `` Gheimeh `` we need some ingeredients like beef or lamb that are cut into small pieces , some onions , split - peas , tomato paste , some potatoes , cooking oil , salt , and some spices like red or black peper and tumeric . In the next stage , peel and cut potatoes and fry them ; you can also cut some mashrooms and a green pepper into small pieces and add it to the frying potatoes , then add salt and red or black pepper to the mixture . But when my room is tidy , I feel more enegetic . I 've alwalys wanted to buy shoes for spring . When we lend some money to someone , we should determine a pricise date of repayment . I aprreciate the memories and wonderful favors in my life . One of frineds said they are just looking for a Japanese girl because they are pretty and easy to play . According to the program , he still lives in a small town where he was born and lives like an ordinary local person even though he is a billionair . However , I 've succeeded in redusing weight byten kilogram within a half a year . Actually , I like wearing smart clothing and want to be seen as having acool apearance but it is clucial for me to have a good , healthy body . I am goig shopping today andI ca n't waitt . I am looking for my own house thes days . So hte proncipal decided to suspend the first grade class . I hav n't been here for more than a month because I did n't have a conputer . But I coud n't understand very well . So , I am starting on the diet when I cook traditinal Japanese food . Today 's manu is Udon and seawood salad . I was amaized that Japanese food really does n't need oil . I felt that I could n't do that , so I reamined standing . On hallowwn day , I joined the parade at 6 av in NY . I want to have a more crative job . conditionaer makes my difficult hair easy to comb . Reading sections , espcially the grammer section , were not very good . I bought many souveniors , for example , postcards , ornaments and a lot of tableware . it takes ten minutes to get there by bcycle . It was made using concreate , not wood like the other castles , so it is just a museum inside . The fondation of this castle is a stone wall using a lot of big stones like other castles , but there are some huge stones here , like the second photo attached . My ankle still aches a lettle : < Tomorrow , I 'll enjoy being with my family , playing game together and talking about something in traditonal event days . Im 'm worrying a lot these days . Finally , they bacame friends . I was frasturated . After watching the movie we went to an Italian restrant and chatted a lot XD They usually say `` happy Valentine 's day `` . But then I often feel annory because the day did n't belong to me . But then other people messaged me `` happy Valentine 's day , even though we do n't love each other `` . haha ~ ~ now I feel happy , even though I have n't * * But I have some good friends . The last time , we went to Barbecue restaurant to eat a lot of different foods . And it 's interesting , a group of obaasan ( old women ) were singing loudly and drinking next to us . They looked so happy that day . Just some old womam , no roses , no chocolates , but happy all the same ! My hpliday has been going so fast corecting donations and taking them to the communities office before ten . I saw an USPS driver throwing a package up onto the second - floor balcony of an apartment haouse ! To my dear friends who are living arond the world now : If you do n't have that , I too sugest you find it out soon . I hope you will be happy to finding a nice pertner . Anyway , the doctore ( s ) told me to get some more excersice ( > _ < ) At the end of the month , we must submit our presentation to the chief excutives . Mebourne is good city to live but I hate Melbourne weather ! It 's the last concert of univercitiy . When people crticized it is hard . . The sports festival wii be held next Friday . I evny her because her English pronunciation was more fuluent than when I saw her 1 montn ago . My department held a welcome party for new empoyees today . I want to be a prischool teatcher . I 'm in my friends room , in Yokohama , ristening to music Talking to him , I dected that my english was becoming poorer nad poorer . It is very important becouse there is a danger that a new product will eat into the share of the market ` s existing products . She told me that the company wanted to fill several manager positions with people from all areas of Japan , then she called again to tell me the day of the interveaw . Today , I will answer a qestion . The Qestion is : `` When you 're feeling sad , what do you to feel better ? `` It takes 60 mins to get there and 60 mins to come back . . . Ono was taken to a plice station under suspicion of violating the ( a ? ) Maintenance of Public Order Law . The prosecution and the Court ratified the `` Black Trial `` made up by the Tokko Plice . Because it was so hot and humid , just staying at hotel was irriating enough . However , there was a laiser show that night . But he is pritty cute to me . I figued out the reason . I think that they met their fiances , fell in love , knew each other well and decided to get merried . My older sister sent me a picture of her and her hasband . Recently , I bigan reading and listening through iphone . English tutor said : `` You have to study grammer lessons . `` The main purpose of this trip is to attend a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm goint to Las Vegas today ( for no special reason ) . I want to join other class from this autumn , kins of gym , tennis , or something like that . It was not too sunny yesturday and I did n't care if I became sunburned , but now my skin has become an awful red color . I 'm a Chinese girl who lives in Austrilia now . This is my first time using this kind of website because my friend recommonded it to me . But I always do my best to comunicate with foreiners by using as many expressions as I know . I have never come into so difficult questions given as prictice . A few mins ago , there was an announcement that the flight to Shenzhen will be delayed for about 2 hours . My granma said that holy ghosts protected me as goardian and kept thier eyes on me at my birthday . Acutually , I finished all of my classes except an English Adcance class . When I lived in Japan , playing the piano and going to my favorite places with my hsband were the best way for relieving stress , Of course I like talking my friedns , going shopping and so on . Shoud CEOs be limit on salaries ? This theme is mentioned by that Wall Street provided complax financal products that led to resession on worldwide . Of course I sent a message to my English teatcher . There is not a single clowd in the sky . But I do n't like to study grammer , so I allways use few words with broken grammer . Like every studengt in China , I have studied English for 10 years . We went shopping and bought pants and a jocket . This test is very important ( no comma ) because it is essential for me to be an exchange student between my university and Frorida State University to study . My cousin tought me how to see my friends ' sex and native language at Lang - 8 . I can use skype & yahoo messanger ! We played sccoer game and wii sprots . I have two ways to improve my vovabulary study ; one is to read DUO 3 . 0 books and the other is to read a simple English news site every day . Recentaly , I have n't been studying English because I have been neglecting it every day . But , I will start sutudy English again from today onwards . I 've taken care of the people who have deppression , so I can handle them , but it was my first time treating a person with bipolar disorder . Here in Japan there are many rain showers in the spring and automn . I 'm looking foward to coming back here next time . I want a Korean - Jananese dictionary to understand the words oftheir songs ! I 'll stick to studying Ebglish the future ! ! My supervior told me that it is tough to teach students English . So she is qute . The guy sitting next to me is borhering me . There are Japanese , Korean , blazilian and Chinese students in my class . My teacher looks like Hagrit . But to tell the truth , the reason why I love her is unexplanable . I wish everyone a happy happytime on Valntine 's day . . . I rememberd my trip to France three month ago : ) I have some quetions . When we take this examination , we are all very nurvouse because volanteers play the role of patients . Then he died at 65 years old while I was in my first year of erementary school . I posted my first diary half a month ago , but to my dispointment , it After that , I went back home and cleaned . In the evening , I went out with my friend . He isn n't my boyfriend yet . We 've only known each other for one week , I 'm afried that I might be falling in love ! I 'm wathiching the Japanese movie `` Death Note `` on TV . Both an investigator and the climinal who uses the notebook take center stage . What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitubishi and Mazda ? I read books for 10 minutes when my eyes feel sored , or I 'll run outside to make my blood stream more active . It 's time to finish writing this entry because at this time , 8 p . m . , I 've got to walk around for exersice . The books are `` The traveler 's gift : seven deisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . After half of a day I recived it by a deliveryman and read it immediately . Fanally I finished reading the book I accepted the situation , and now I 'm clazy about Lang - 8 right beside them . I couldnt n't calm down , so I hit the wall in a restroom in the station . Yesterday , my syster and I went to the cinema and watched `` Gnomeo and Juliet `` . reflect : If the light from a mirror reflect to the paper , it burns . ( I feel this sentence is wierd but I do n't know why : p ) defend : He tried to fefend himself but everyone spoke at once , so he could n't even say anything . My parants and uncle visited a temple where she was buried . My family is buddism so we believe that the 49th day is We had a relligious servis and prayed for her . but I ca n't think of a serious topic so I decided to talk about techniqques for men . `` Do n't raugh ! `` I said to him in English . ( Question : ) shoul cars be banned from city centers ? It leads global warmin . donno why , but I was cracking up badly lol Tha band I saw is a Japanese band called Kirinji , which is not so famous even among Japanese . It 's sometimes not fun ( to much presure ) doing work in my clinic . I feel intersting when they smile after I say something to them . Let 's try having fun ( plesure ) in our day even if it is work ! The right picture is the secound tea . Wave dinamics , thermodynamics . . . ( particularly WAVE ) everything about physics makes me confused . We 've had studied English at least for 6 ysers . My familly is going to my grandmather 's house . Ahaha , I looked it up in the dictionary , but I could n't catch the slight difference . I can read English newpapers and books without big problems and have made a big improvement in listerning , I should learn more about grammer , I cooked Tandoori chicken with my friends at a cooking class . Last week one of my friends said , `` Let 's go to a cooking class togather . `` I wanted to know how to cook Tandoori chicken . I decided to go to it . And , the order , starting from closest the barin is ; thecerebrum , the brain stem , which is a vital part in center ) spinal cord , whichis atthe end of the central nervous system ) and peripheral nervous system , whichare the nerves below spine ) . In Japan , I ca n't imagine all adults would wear helmets when they ride their mama charis ( ? ) ; that would be ridiculous . But I do n't forgetot to drink beer ! While she was out , I came into the house and hid in the box which my mother - in - law had parepared . I swithed / turned on my favorite radio station . So , I think that my poste is finished . It 's my firt text on this site . so I maked a cake and made rice this morning . I gave her a present for her Bithday , which was 5 days ago . I think that remebering other people 's names and calling them by them is very important . When it comes to remembering people 's names , we try to make excuses saying `` I am busy with my own work , I do n't have time to remember people 's names `` , or `` How can I remeber everyone 's name ? `` . A leading actor is Sylvester Starlone , and he was the movie director , too . Another actors were Iason Statham , Bruce Wlills , and Arnold Schwarzenegger . Yup , I was correcting some texts at midnight when this little creature silently glid from the yard of my house into my bedroom . I got up early this mornig because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsiblity to memorize them with a mor efficiency . ' ' Was my borther reluctant to get up at three in the morning ? ' ' My major is international relations , and I want to be a dplomat . In Japan , TV programs are highly developed adn devised `` ; `` or `` , and `` culture and languages can be shown through the device . There were a lot of people coming from diffent countries . I thoguht he was poorly taken care of . I was surprised becuase I often parked there instear of parking in the parking lot by now . I 't is weird becuase I do n't see the red line marked along the street , I do n't know why it is illegle to park there . And the same day , I arrived at Heathlow , England . Originally I 'm not good at Englih , and additionally , Japanese people learn American English in school . Maybe I saw Selena Gomez ( After seeing her , I used `` gogole `` , since I knew her name ) . Last , I ate a delicious cake and that was the end of my brithday ! ! I mande an appointment with my frined , but she is not the same person from the chicken conversation . They all said that the cabbage I cooked was delicious ! It was a great success ! They gave me the courge to learn more about cooking . Though I study English a lot , my score is the worset score in decades . I started studying English because I am a computer programer . I 'm optimatics ha ha ha . When we are learning foreign languages , we are liable to think that we should n't use our mother tougues often . What makes our lives collapse is defenitely negative thought . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo , opening a new tarminal for international flights . They emerged from MySpace first , and recently they have become famous in JapanI , I think because of her cuteness and some songs . . . They must have felt more scarly than me . I have some flowerpots and a veriety of flowers are planted in those . Thanka for your reply a few lines . If we recite a sutra once , we will live peacefuly in the next world . I found this site on AERA engilish and I 'm interested in it because I am studying English now . My husband has entried for a full marathon but he has n't run such a long distance in his life ! I do n't want to paticipate in any marathon definitly . I remember how I got discouraged by my English teacher inthe cram school . There , instructers always cheer me up when I ca n't say what I want to say . I can learn what is wrong with my sentense and a more natural style of writing . * Today I learned where can communicate with other country 's friedns . * As English major student , I think I should learn English well , so I am reading an English book , ' Blach Boy ' by Richard Wright . I could n't understand all of the story , but I know aproximately what this book is about . Althogh I read the book slowly and do n't understand all of it , someday I will be able to read fluently . I bilieve that . How about brithen ? ? There were many believers and tourisms visiting the famous temple . However , in high schools we ca n't choose the classes . That also includes middle and elementry schools . And if we want to make high schools bigger , we have to build more constructure and it will waste a lot of money . Some iPod appications are very useful to me for learning more English vocabulary / phrases and sentences . Some example senteces are welcome . I am a new employee in a company , and because my job may use English , I have to improve my English . When I was in school , I studied 6 years of English , but I have forgotten somemore . Since then , intricate networks of power lines and utility poles have become prevalant in a short time with the increase in human residences . Now the beauty of the neon from human civilzation is are replacing that of the starlight here . We went to an all you can eat restaurant , and the price was NT550 per person , which is equivalent to 15 us dollors . Besauce the restanrant is so popular , we had to wait for like a half hour . That Taiwanese guy asked my studnts 's phone number , and she gave it to him . I realizd that I had wonderful friends and that I should enjoy anything that may happen . It was not possible to go to nanode sea . and I arrieved at city after 30 minutes . There was a lot of delicouse food . I have been waitig for `` twilight `` . I asked my friend for the audio books as suvenior . I will continue reading from page 52 tonigth . In addition , walking and hiking aroud parks and collecting flowers and plants are also a good example . I saw many of my myfriend online . artical . In addition , I have something to request of you . Can you share your expreience about learning Japanese ? I even forgot a lot of garmmer . I 'm in such a good mood becasue my weekend was wonderful . It 's rainning today , thus I 'm so gloomy . Since this morning , it has been rainning outside . We had some bread for breakfirst . I 've decided not to use a translator for looking at how sentences shoul look . I would keep dancing but I do n't have enought money . Accessories like rings , neckless and bracelets , Hanbok , Korean traditional clothes , and more . I feel so bad after getting angery . Is he a clone of the armer polot whose father is a heroic astranaut ? I had no plans to begin with , so I went to school to check if the exchange list and the exam scedule were available yet . Returning home for the second time , we rememberd that two of our friends have a birthday in the coming month . We do n't like them because they 're good at sports ( football , tennis , cyclism . . . ) . They eat horrible things such as jely or pudding , one of the most horrific nightmares for a French person . - Africans ( black people in general ) : they are lazy , only good at athletism or football ( but they 're not technical , they only run ) . French in general : it 's agreed that we strike , criticise / critize , and moan too much . And my car will be a totall loss after test - driving it ! Its contente is to improve the communication skills . I was a system enjener in Japan , but I want to find anothe intersing job here . I was so sleppy , I could n't consentrate on tha class . But if you are in relationship and if you say to your friends that you are not going out with your boyfriend on Christmas holiday , they would think it is a little wierd . I registre on this site because I want learn English . He ack like he really cares about the buppy in the computer . He might want to say ' Hello I am a buppy nice to meet you ' : ) After checked in the hotel , I went to Union squqre to take part in a ride on a private cable car that took us to our diner restaurant . It has been while since I last wirte here . So please keep wirting in here and I will continue to support you . One of them brought insecticide and an antiseptic spray buttle , and he squirted and sprayed me . They are crazy and make me frastrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped ( loved ? ? ) Ross & Rachel , because I always thought they belonged togehther . I do n't usually buy imported items because they are a bit pricer than regular items , but they were on sale . Going to ltaly ~ Today , I will introduce my favorate building ~ The great wall . But I do n't wanna be in this present situatuion . Yesterday I was caught in a sudden shower when I went out with my girlfrend in Ginza . Therefore , it encouraged me to commuicate with others . There were also a lot of people who had frequently spoken English , they could talk with others as what they wanted and express theiy thoughts and ideas clearly . yoiu can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get pissed off and say that I have bad attitude . I just found this site now accidentary , and I think it will help a lot with improving my English . But to me , his English seems excelent . The other ingredients are Tofu , cabbege , pork and mushrooms . * * space after commas Although a `` know it all `` is an ironical title , I still persue to be one . Hachi goes to the station with the profressor every time , and from home to the station when hearing the sounds of the train . Hachi never missed one train and never missed the proferssor . He still never missed a train , though his master never appare again . One day , he fianlly goes to heaven to find his master . I want to make freind all over the world . But , nowday I have began to say to them . when we spoke , I coul n't help embrassing like stammer . They were very beautiful and looked like big frowers . Finally , Tegomass ( whichi is a Japanese idol group ) appeared on the stage . Also , you should sit down at a seet near the door . I often practice dancing with a mirrow , but I can dance freely , using my practice , at nightclubs . As a matter of fact , I spent about two to three hours talking to my friends on Skipe and serfing the internet , so I did n't get enough sleep . It coudl n't be helped . At least I can say I did n't waste my time thiniking about the things that could never change . I work as a privart tutor for students . Today , I 'm very angry besause a my unitersity 's student break of traffic rules . Today I registed for a Lang - 8 account . I work for a Japanese restaurant as a waitless . Oh my God , It costed 80 thoundsand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price , just 10 thoundsand Vietnam Dong . This week is bery hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAMI STREET podcast on my ipod in English . my reasons to stady english so I have to aquire good English communication skills in order to work well . My plan to study english is to write English compositions and watch DVDs of `` FRENDS , `` which I heard is an intresting comedy in English , everyday day . In spring every year , Japanese hold partirs in which they welcome freshmen . Some get too drunk and misbehave . They can be seen sohuting and urinating in the street , while breaking signboards , and so on . A few days ago , a drunk celebrity was arrested on a chage of indecent exposure , but many people put their signatures on a petition . Kiyomiya , a very famous Japanese prfessoinal rugby team director . I know of one great japanese restaunt in shanghai . My feeilngs were a little bit complicated because I did n't study very hard so I wonder if I should go up or not . . . He is shy , so I thougt he might hate me . ( = this means grandmoter ) `` , and hugged her . The memo 's contents are life , dialy , work and so on . I hope I can learn more Endlish and share my life . Oh , I dont n't have time now . There are many dishes and many thinds such as choppsticks and so on . One of my friends is going back her own country at the end of Octorver . I will introduce you an interesting article in the moring papers . I am watachiing ' Ponyo ' created by Miyazaki Hayao on TV . After lunch we strolled along asmall streeat . I became a menber of `` Lang - 8 `` today . American Yahoo 's accont I would strongly recommed that you go make an account too . Then , when I started an aplication `` S / W `` to make a design for cards , I noticed the adress data or information was missing . the adress again . But my callphone did n't ring . Other contestants ricited formal speeches , for example some presidents ' speeches . I thought my recitaition was out of place but one of the professors said it was good because everyone knows the story . When I was a student at university , I crimbed it two times . I 'm excited and feel a little aneasy . At the end , they played at Camegie Hall . Thus I always wear contacut lens In Japan , most high highschool students wear loafers to school . ( `` when they go `` is not necessary . ) This is the secound time I write a diary . I can go manywhere I want . I could n't find any empty seats so next time I will come into the class earily . I am fed up with arguing about probleams . It is first time I have gont to the mexican restaurant . Sometimes , I dream of speaking english enfluently . The lake water was glowing and shimmiering . The graduation ceremony of our universty takes place on March 17 . Each of our club students traditionaly / usually write comments on a large graduation card to each student every year . Because we have commen topics and talked very well before . I told them I would sign off soom . I 'm not goot at electronic stuffs . . . so now I 'm fighting with them . I wish that all the world 's problems could be solved like children 's way of thinkig , naive and simple . Today , I bigan Lang - 8 ! Little Amy was fearfull . I worried about what shoould I write on here mainly . Exotix Zest Oh , I have a feeling no one ges them to her . . . My grade is not good encough at all . So I try to keep a close eye on the holl and the costomer . So I could n't concentrate on the costomer . My Vietname colleague asked me to go to a karaoke shop and I went to karaoke . So , I need to write jornal about this , and post ? ather ? web site or make somefor notice it . Recent , I wrote on lang - 8 , but lang - 8 did n't recived it . That resoult worries me ! My hasbund and I went to a hot spring last weekend . Anyway I took the English conversation class yesterday and I was so dissapointed because I found thatI could no longer speak like I could when I was in Canada . and of course I have to answere them in English . If you found any mistakes or kinda correct but awkword expressions , please correct them . I hope I do n't commit errors , othrwise I will have to recover with your corrections . I 'm not sure how I can make this a sentense if I want to talk about this topic . I 'm attending school to be a japanese teacher for foreigners . So when I get the skill , I can teach anywhere in the worls ! ! So , I can baite him from the tail , better than having had eaten him from the head . I almost lost my life , but at I last defeated any difficlt and caught my life again . I will vist the US next year so I need to know more about the US culture . It 's defference from Japanese culture . I have n't experieced giving tips to a staff . The Korean woman who served him in the small restaurant was probably suprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . Unfortunatley there is no chili papper Kimbap on the vast list of this restaurant though . He told me that the spa is becoming popular in the Filipin . I finished giving a Halloween lesson in my classroom even though hallaween has not happened yet . It was popular with the mothers , but the littel kids did n't know what a sisiter was . Some students had thought she was a ghoust so they felt like crying . There are 2 months left untill this year is finished . It is never pleasing or proud to hear that the origin of your name came from an advertizement copy ! `` Whenever I call your name , I feel like my tongue rolls smothly . I went to `` Dockland `` where there was a shopping center . I loveher so much but I ca n't meet her in reall life . But I could not do anyting about it . I couid n't believe it . Althougt I filed a complait against him , I did n't feel good . When I get stressed , I will take a bath for a long time or I will watch a moive . I prefer comedy moives to action moives . It is fun to watch if there are unkwon actors in the movie . I wonder what he means exectly . . . Second , I jogged 5 miles this morning and practiced golfing in the driving range for 3 hours . The scenery was so beauriful and there were wonderful buildings in Disneysea . Because we were there from openning to closing time , my legs hurt . That night , we had a lot of fun tallking . We had a relly good time , even though we were tired . I remembered the theme song of holloween . Because her birthday was coming soon , we gave her a dinner chicket for that night . It seems like the inside exposure 's damage can be lowered by taking iodine as it halps the body excrete harmful chemicals . but please do n't take this too seriouse . I have loved a boyfriend until recentry . Of course we feel a sense of alieanaiton when we see foreigners at airports , other countries or our towns . Imagine if your country was a samall island and if English is spoken in only your country ; it would be a big handicap for you guys . But of course they only spoke English while we were drinking , so I counld not join the conversation . The cheaper price and the better qulity are the characteristic of our center canteen . I like sutudying other languages becaouse I can meet a lot of people and learn about the world ( ? ) . The things that happned last night did n't arise from the differences of our calutures but were personal matters , I think ; - ) But our American frends could n't understand her feelings ( of course , they did n't understand Japanese ) . I think it is natural that this happens and it is interesting to comunicate with someone who is from a different country . Anyway , I am turnig 20 this month . But I figured out the view of the town is so amazying ! ! twice , and been to 4 cities , Pheonix , Chicago , Wshington . When I had some oppotunities to speak in English , my Japanese supervisor was in the audience and said `` You said a water and forgot to add s to he want `` and so on after every one of my speeches . I became more nurvas about doing speeches in front of him . hey guys , it 's my frist time in here , I am so happy to know you guys to help me to learn English . In thinking about languages , I am always haunted by my enourmous ambivalent emotions . Tnanks a lot . His wife is a Japnaese . One of my cool Japaness friend told me about this website . Firefleis . My favarite person , Kudo - san , is from Iwate . At my school , I have a Benuzuela friend . Everything abuot Me : ) Especailly on festivals and weekends , KTV is almost the premier gathering place for young people . So scarely : - ( After we left the shop , we went to two ther shops and only looked for something in the shops . By the way , I 'm going to Spain , France , and IItaly next month . The reason whhy I spoke so loudly was that I wanted everyone to be able to hear me no matter which corner they were in . Anyway , I enjoye it . Yesterday it was rainy , but I took them to the docter . My daughter did n't like ENTdoc . She did n't sit still and cried , so I had to hold her whilethe docter examinedher ears . They pester me to go outsideeven though I play with them , suggest new games , give them new DVDs , new snuck , and so on . I began studying English two months ago because I want to go abroard to stady it . I hope I will have a parmanent dream . I started this job in Janualy . I have to comuticate with custmer and take care of them . I have confidence working with people , but selling is not just about comunicate . In fact , _ I am cring as I read his mail `` We had two visiters from Vietnam at my home . I watched the news yesterday and I heard that there are many people in the world affcted by this influenza , and also there is one person who visited Mexico and guessed having this disease in our country , My daugther slept by my side ( last night ) . So , I alwaya feel sleepy . . . I forgot the timetable was changed from usuall day . Unfortunatelly , I was eating lunch in the park so I was 10 minutes late . I ` m not sleeping , becouse I am trying to translate my favorite songs . In the x - ray , he and the docotr could see one earring . Actually , I 'm pregnant and often have morinig sickness , so I felt gloomy before the wedding . I hope I wil be a top salesperson . I 'm great because I keep momorizing boring words . I 'd never played tennis before I took the class , but the corch teaches me how to play step - by - step , so I 'm getting better . LOVE AT FISRT SIGHT ( part 2 ) I think the theater will be crowded this weekend because of `` Avator `` fever . I believe `` Avator `` will reinvigorate me with its visual technology and emotional story . I 'm learning new information that I did n't kown Altough I memorize that , I ca n't make use of it . The differences between America 's and Japan ' abaut traffic rules When I came home , the game had just just finised . . . So , probably I will have ineternet there , too ! They are learning Japanease in uni , so they practice Japanease with me , and we Japanease exchange students practice English with them ! ! My name is Frank , and I am Chinese . I live in the Guangdong Province with my familier . I graduated from the univercity 2 years ago . Since all the groops would probably be using Powerpoint , I went to the electronics store to buy it with no worries , My concern was the compatibility of the English software with my Japanease OS . There have very beautiful traditional Japanise gardens . But whenever I meet my firends , But I do n't have any complainment . I really enjoyed my home life because of my email ( ? ) freinds . I do n't want to go out , I do n't want to cook , I do n't wanto to study . All of my friends will spend long 4 - days vacation in thire hometown except for internatinal students who can ` t go back theire own country . They are not vegitalian . When I read about this website , I could n't bealived that someone would help me and correct my mistakes for free . If anybody of you are intrested in the history or geography of my country or city - please write to me - I will do my best to help you . That 's why I reserch some local tours through the internet and some books . I sometimes teach sutudents Japanese and Mathematics . My favourite articles are about the international life , design , and fasion . They throng to pub on Friday night to sing a song , play an instulments , and , of couse , drink a beer . During summer quarter , I took an ESL ( an abbreviats of English as a Second Language ) class . The main activity of this corcle is organizing what is calld `` IW ( International Week ) `` . Let me explain , my university cooperations with foreign ones . I 'm sorry for long sentensces . . . After that , we dated a few times and I was a little comfused about our relationship . In chinese , relationship has a widerly meaning than in English . Fortunatley , his skill was not that good and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) He asked me do I know anyone who would go to Japan , and can buy Japanese cigaratte for him . I helped him to get the cigaratte so he should come to see me to take them . Frist let me introduce myself . Altough I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an Internetional college . Alomost all of my teachers are foreigners . I am a college student and my major is informatics and comunication . I want to learn English to study computer langualge and technology . I look forwad to seeing your correction . Actually I graduated from Seoul Women 's Uniersity about two years ago , but it 's near my house so I see it almost everyday . . Bahrom Education , teaches people to share and learn important things with others , like philosophy , etiquette , religion ( christiarity ) and even the history of SWU . Classes include group discussions , performances or indivisual learning . Atter 30 minutes of walking , I felt tired . Althought , I do n't really have to go to bed right now . I like a movie in which I discover and solve some mistery with the main charactor , so I was unhappy with this movie . Actuaaly , sometimes old eggs cause food poisoning like salmonella , I am pleaced to meet you . Tomorrow and the day after I am going to visit Miyagi prefecture in Japan , where there was severe damegas from the huge tsunami that happened in the last 11 March . I have had two jobs for two and harf yers . this is more natural . His act was illegal of cource , but was it so serious a crime that investigation of his house was necessary ? Then , I happened to think , `` It 's unusal for me to eat bread for breakfast `` . It 's unusuall in Japan , because there are rice cookers in all the houses in Japan . I bought my new Windows PC for mobile last Thurshday . Yet weather focast said it would be snowy today . We usually start to study English from junior high school as a part of compalsory education . But the native English teacher speaks fastly instinctively . In Japan , it is vey popular for girls wear them at a fireworks display . We did some sightseeing , had lunch , and bought seefoods , such as crab and flatfish , there . So I keep on studing ! It 's just nothing else than a program which is displaying us the fishcards and making sure that we are learning them . You may also ask , ' what the hell are the fishcards ' ? I do n't even have the sterngth to go prepare myself tea . I have a bad headache recenly , so I ca n't easily think in other languages . I want to be able to writting fluently and quickly . . . Please teache me the meaning . I have to get my lisence by April , so I 'm learning how to drive . I 'd like to talk and dibate with my kid ( child ) in English in the future . Sorry I ca n't write anymore caz I 'm so fuckin ' sleepy right now . I worried about getting fat because I put sugar and milk in coffe . After graduating junior high school , I joind the Japan Air Self Defence Force . Today I had an appiontment with my friend . I 've just finished writing my lyrics ! Prease read ! I 'm goint to go my friend 's wedding , and I 'll congrate her . It 's famous for it 's peaceful villageand atmosphere . I did n't even realize that the HALLS were making my stomache ache worse . To my sadness , villains certainly do exsist in all societies . Rencently , I am tired because of work . However I was able to understand her by watching her body langauges . . I got out of bed , and opened the cartains . I finaly got a day off . I am a cook , but also a student in univercity . I still have lot of things to write but the things above can describle my feelings for Zidane . I have n't written in my jurnal for one month already . It 's delisious ! ! ! becouse you are a japanese , you can get huge income . But I think going on a tirp on Christmas is a good idea , because you can enjoy illumination for Christmas in a place you have never been and also sight seeing . Yesterday , I read an airtcle about `` Lang - 8 `` on the Internet . She also sometimes stays at achool until 9 p . m . working on the project . If you say yes , you 're a person who likes advanture and lives now ! He hit his head on the celling hard and gave himself a concussion . HI I 'm an Italian girl , studying English in Melbourne . I studied in Pisa , but I 'm calabrese . One of my friends called me this evening and told me one of my friends from high school was dead . It was dificalt for me to accept the news even though she was not one of my close friends . However , I used to coppy her homework before excam , and go to her house . We liked to sing songs and go shopping . I did n't think she would leave my life so soon like this . I am sad . My idea throuhgh my experiences is that work requiring brainpower ( like studying something ) in the morning is much more efficient and effective than in the evening , keeping away from sleep . I do n't want to stop challening myself . Yestereve , I helped my friends wroten compositions until 3 am . So I 'm so tird today . Many people who can speak English fluently are intoroduced in the book . I was happy because I got him smling ! Actually I 've been going with my girfriend since my time as a student teacher . So I hasitated to go there , but today I decided to go because it is fine and cool day today . I 'm happy to have 3 frineds on Skype . The island was so wounderful , and from that time , my dream has been to live in Hawaii in the future . I have dicided to go on a working holiday in Australia . If you speak English and maybe interested in Ruccia , or the Russian language I guess you 'll have something to talk with me about . I 'm a college student in Japan , and I 'm gonig to go to Vnacouver this April . when you go to different countries , you will learn more abot your own country than abot the others . I 've been meeting Japanese leaners through internet and they are very good at writing Japanese on text chats , even though they are very young . attend : I dicided to attend the language school in Umeda . occupy : In this company women occupy 60 percant of the excutive officerpositions . concentrate : I was scoled by the teacher and told to concentrate on the class . persue : Humans have been persueing the truth but only few people have found it . Fisrt , I want to take a city - tyour bus in Seoul . It 's famous for a hugh bamboo forest and a metasequoia road where metasequoia trees are planted along side of the road . I 'm learning English to comunicate to foline people . Please check my sentense and pick up on my mistakes I palnted sweet potate last Sundy I also palnted cuvamber , eggplant , tomate , corn and watermelon . I 'm lokking forward to a big harvest . Everything is nd beyound my imagination . That 'd be because , when I study by myself , I can proceed my own pace , and so I do n't need to wait for other amatuar users that are less skilled than me . `` Pirates of the Carobbean : On Stranger Tides `` was also exciting . Evencally , I stayed with my friend . I bought pasta , iced tea and a chicken and rice casserrole . I want to study English by using this cooooool website ! Actually , I 'm not good at speaking or lishtening to English . So eterday I looked frearfuliy at the scales . Ao I am willing to reduce by diet The way America killed bin Laden doesn n't reflect the democratic face of America . The way they used instead reflecs an indemocratic face of America . Oh , America if you call for respecting human rights and human dignity , why did you throw bin Laden ` s cropse in the sea as if he was an animal instead of a human being . It 's so expencive . Am I too serious ? definately yes > < is a good nigth I am on tha computer , my family is asleep beacuse is late at night ! ! . . . We live nere Zi Jing montanil . This is my firt time on this site , I 'm excited ! I seem to have no talent for learnign forien languages . Today , I made some frinds . ^ ^ Recently , Lerning English makes me very tired , but Taliking with frinds in English is very fun and it makes me How do you spend the valentin 's day in your countries ? I will take the TOEFL test befoere long , so I am going to practice for the TOEFL Writing Test . First , we were devided into two teams . Of Ofcours , the team being questioned had to answer quickly ( too ) . I 've spent my time drinking with friends and watching america dramas . Today , I just found myself whatcing an America drama again ! ! I met some foreigners and many students who also want to practic their language skills . Sometimes some people asked me questions , but I did n't respond to all of the questions becuse I was n't sure what was said . I remember that I did n't speak any words expection `` sorry `` when I first came to here , what 's more , I did n't know any of their dailog , but I can ask some questions and can communicate with others in English in here . I have no friends to studyy English with here . We went to a library to study until 4 in the aafternoon . Our heartbeat was the rhytm that made us connected , and we were dreaming together about this new life we 'd live . I 'm working as a cram school teacher anf I 'm good at Japanese ^ ^ As interesting as these activities are , some people still regard Ghost Month as an unluck month ; hence some people keep out of the water , some go to temples every day , and some are very wary of what they do and say Oh ~ My ~ Godness ! ! I 've made a dress for my doughter . I have made my doughter 's dress which is pale yellow because she wants to be a princess too . Their dance is very energic and I think it would give others a power when they saw it . The two brothers are very vigor and their mom says they have fights constantly with each other . We made an appinment to meet at a cafe near my house . We arived at the cafe at the same time ; 10 muinites before our lesson was to begin . So I want to leran this very important information . Becouse I watched it a lot of times before . Recently the weatger is so bad . According to the wheather news , a typhoon caused this rain . ( the PlayStation3 has individual e - mail adress ) [ remove the period ] So I was a littele bit disappointed . About the mine accidenf in Chile At first , I _ Iwas happy and impressesmd by the news that all the miners have been rescured . After that , I felt a little starage . Why did Chile govornment agree to re - digging such a dangeorous mine without the appropriate researcing ? I belive learning languages is the same as learning another world . There were many beutiful , big , traditional buildings . All of the food was funtastic ! ! ! I wondered if I was a prioncess . It was I inconvinience , but I thought it was actually kind of funny . I have read another piece of news just now ; according to this , at least 51 people were confirmed dedad due to `` Ondoy `` storms and 280000 displaced due to the flood . In the beggining , I was at a loss . 3 ) My another parter , who is an American - Born Chinese , told me that he was busy typing a manu for a restaurant . I had a bit of trouble when I attemped to sign up the forum . The song was used as background music for a documentary of The Olympic Games in Grenobe . Maybe I 'm still scared of the feeling of lossing him , someone who was very precious to me . I got myTOEIC resulte . Sportsday is going to be held at my son 's preschool next nextweek . Becuase I did not get up eally . Plesas check my diary I also met new freiends , a Japanese woman and a German man in Zurich . Yesterday , I had an English lesson where we tolked about abotion using an article titled , `` Obama Lifts Ban on Abortion Funds . `` So , prease talk with me on Skype . has tought me to stay whole . How I miss the days when I speak Cantonese and proudly take people speaking Manderin as outsiders Yestarday , I bought a video game . There is only one cabinet competing so it 'll atomatically win At the checkout , a casher told me that `` this is for display , not for selling . `` Then , I had to go back to get another dish set . She had had no children but she had enjoyed her life with working , hobbise , and socializing . ( For Chinese factories , Chairtmas is n't a holiday ) They were very sweet and delisious . My first dialy in English for you So I intend to write irregularlly . If possible , I want you to correct my dialy and know about Japan or Japanese . I raust it with garlic and put added some basil sauce . Marina became a famous language teacher and her website hit more than 100 milion . I 'm always wonderling if my English is natural or not . I had tea with the particioants after this class . I had a good time because we talked about sysytem of studiying English . We decided to get a construction company repear them . I was stuck in the tube for 40 ninutes and had to abondon the Picadilly line . I could n't understand why she choiced that place . , and I didn ' t I want to become friends with those who are learnig Japanese . its been a long time since I spoke english , because I 'm studying japanese in dalian , the beatuiful city in northeast china . there are many interesting things and delcious food in my homeland , especially hot food , pandas , and lots of good indie music . Yesderday I started PickupPhone study . So , I think we should keep and preserve our old buildings because of our culture and histrical legacy . It 's a big dicision and quite a challenge for me . Now I 'm worring about homestay I am always looking at my co - workers and folloing in their footsteps . Broun is my natural color ; my mother 's hair is the same color , too . `` No , I have n't ! It 's nuture , honestly ! `` Each time I got a scoling , I grew more tired of it . I hardly understood what my terchers said during my online English lesson . Freedum ! On hot days , I need a handkerchief becase I 'm very sensitive to heat . Tonight , I drank a little alcohole with my co - worker near our office . Today , we changed the aword . According to my Singaporean frirends , in Singapore , a flight attendant is a not high standard job at all . For Singaporeans , flight attendatns are just servants or something . And we promissed to help each other with our language learning . Now I can write in my dialy in English , on my PC . For instance , `` I graduated from Waseda uniersity ( it is the very famous Japanese university ) `` `` I studied hard , for theentry examinations `` `` I did not study that much when I was a student `` ( But this guy graduated from a famous Japanese university ) . We were looking forward to having a pecial dinner at your restaurant . Recentry , I was surprised by the financial results of a certain company . This weekend , I will play football , as / because I am looking forward to participate in a soccoer festival . Recentry , I 've been interested in diet , learnin English , the Internet , and shopping . Im am studying at the Tokyo Institute of Technology . ( another option ) Im tired becaurse writing in English is very difficult for me . . . There is firewoks display today . But the wheather takes a turn for the worst . Sometimes , foreign custimesrs come at KFC . Finelly , should I say anything ? Bacause I often think `` I want to some sweet coffee ! `` complain : I complained to my teacher about the scole of the test . hate : I hate insects , particularly cockeoach . despise : I dispise people who think money is everything . worry : You do n't have to worry about your health , you 're hearlth enough . I feeld vey comfortable . I booked the tickets for the 9o ' clock ferry the prebious day , so I left our home early so I would not miss it . I asked strangers if there were another way I could get there , fruthermore I ran at both the platform and the road , finally I reached the ferry station almost too late . I could n't climb the stairway to the crown bcause it was already fully booked into next September . But I spent much time there , and I learned more of the history of America than I knew before . A lot of cerebritise have gone there . I said , `` What a beutifull view . `` but I could n't find any difference beteen religion people and non religious people . . , I was so surprised that some developing countries donated releif and condolence money . So , I 've been eating a powdery fermentation cabbage ( It 's a powdery TUKEMONO ) for 2 weeks . I 've been here for one and harf years . But unfortunately , as well as no inteviewing , there was no reply for my application . thanks for your comments on my prebious jounal . I want to compare the two great religions as there are many diferences between them . . . however , after many years becoming an apprentice , he found it difficult to lose his worldly desires and he desided to leave his master . I sometimes watch METAL GEAR SOLID 4 videos on yotube these days . which may be difficult for foreiners to understand . soccor ? Football ? The American soccor team is also very strong . Some people were hoeing and fertilizing the soil and some were wartering their plots . Last time I put a mark on the juice 's labell , and I looked at this mark and thought that they drank at least 400ml . If you wnat to know about Korea , please contact me . the laidy uses a marker to mark two dots on my ear , and then ( she ) just uses the piercing gun to poke two holes . although it looks like it 's very painflu , I just feel a little bit itchy . thanks to alicia for acompany me to the piercing shop . In1803 , Thomas Jefferson , the 3rd president , purchased the great wild west fot about $ 15 million from France because it doubled America 's land mass and would provide rich natural resouces as well as great farmland . Maybe it seems like no big deal to most of you , but since I 'm now studying in Japan , ( and the Japanese are so difficulte to understand ) , I must be careful about everything I do . At the end of each semister , the teacher asks us to write something about the lectures : advice , suggestions or even just some opinions . It may not look very strange in Enlish , but I am really not sure if it sounds like a compliment ( in Japanese ) to the Japanese teacher , who really did do a good job . Some people think that the death penalty is the best way to punish muders . Suviors must want muders to live so they can reflect on their cruel actions . I am going to go Bijing to present my research results in English before the end of November . The title of the book is `` How to Walk in the warld `` . I reccomend you to have the book ; however , do not read it all , because if you know everything about the trip , the trip becomes less interesting . Anyway , Washington will be rainly or snowy . . . . . Today , I 'm going to watch an america movie to help me learn ( study ) English . The genre that I want to watch is either ' melo ' or ' comedy ' . and , I did drank vanilla latte at Jave city Coffee I iove coffee ~ very very much I 've just found this lang - 8 place today and resistered right now . Actually , I was warryed about this thing . so when I knew that it was not my mistake , I was relieved , at the same time , I am now aware to be very carefly not to do that again . To finde the best friend is very difficult . A lot of people don ` t have friends , amd me too / and neither do I . Chrildren like to play pranks on people on this day . In other words , It had become a piece of garbedge . There are many things affecting the world like air pollution , climate change , enviroment pollution , the destruction of the ozone layer , and the clearing of the forests . . . . . And every year we suffer many natural disasters like earthquakes , hurricanes , floods , vocanic eruptions , and tsunamis . And they unfortunately kill millions of people . Mastering Natual Expression Recently I met with a friend who is living and working in Vancouber . Why did I have an interst in America ? And also , I felt like I came to a diffent country like a resort : ) haha By the way , it 's difficult for me to figure out the differnce when I use the same verb but with different prepsition . Because he appears to have been on bad terms with the exectives like the front staff , ownner and so on for the last few years . I work with free medical insurance . If a person 's income is low , they can qualificate for free insurance . It includes coverage for medical prescrptions , dental , vision and emergency care . I realized that even if people live in different countries , they learnthe same inportant things . It is liquid and it conteins nessesary nutrition . I am sad that I do n't have a lot of sophiscated ( sp ) writing skills . Tommorrow , I 'm going to practice drums and English ! Stady ! ! I 'll stady English a little by little . . . I pre - orderd a concert tiket for a front row seat . I 'll go to the mountain regulariy every moring ! I 'm a Brazilian , I 've studing English for 3 years and I just noticed that my English is not as good as I thought . Whether or not we have a lover in the future , we 'll still support and encourge each other . And , bilingal people usually say that you should reject Japanese when you 're learning English . So , if you meet an incomprehensible word , you should search in an English - English dictionaly . But , I ca n't write or speak English without using a Japanese - English dictionaly . Learning a foregin language is hard . It has a very confortable room , gim area , and spa . In villages , farmers are very poor . They need clear water and lvestocks . But if some fctories just emit dirty water , its not good for people 's health . My coutry needs to care more of its people 's welfare , and not focus only on good things . Of course , if you tweet in English , follow me , and I will be more than willing to refollow you too . : ) rumur has it that the first year of college is the most comfortable one , but somehow , I think I was cheated . I have strange havit of going to Odawara castle every day . I take the first or second Tokaido train from Hratsuka . Recentry another person took the place of our president , so his prediction was n't realaized . It 's located in Kyusyu . I shoud study harder . The lecturer gave those attending the task of discussing the governemt 's new policy that English classes should be taken by native English - language speakers only . He arranged us into small groups , so that I ended up talking to two peole who are English - language teachers . I heard that in Finland there are no textbooks , so I was so curious to learn how the Finns could be so sucessfull without textbooks . The students in my class are clearly bored and I too find the learning experience unenjoyable . Especally when the stories in the textbook are so dull . Would n't it be better , in such a case , to have no textbooks at all ? They 're famer . curently they prepering for planting rice . The price in the reataurant is fivefold more expensive than general Taiwanese diners . Yesterday , I felt sicky because I got drunk . Suddenly , I realized that I had been a college student at taht moment , and I would start a new stage in my life . I went to the libraly after the test . I 'll go to Okinawa this comming Sunday with my school friends . But , because I 'm shy it was so difficult to make firends there . . . I maneged to talk with some people . my listning and speaking skills are not good . . we have learnd only grammer or reading . . . I 've been writing very simple sentences , but it tooks a long time for me to make them 'cause I 'm not used to doing it . The tomato jolted in the basket , it makes made tamato juice . Sometimes costomers scold me . I have a friend who lives in Hawai . After that , he went to Hawai . He has lived in Hawai for 9 years . The question is whether we should elimilate the one child policy . I always regard her as my anti , although she is Vietnams . Indeed , why do I learn the languages , if I have no one to comunicate with it ? I 'm fond of music , aspesualy , of Folk - music . I 'm jpanese but I feel that I must learn the Japanese language even more . He has to stay at home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guity and I really miss him : < Whre is the sunshine going ? Of cousre , I am really happy that we realized that we loved each other though . Yesterday , we had a tranlating class and it was exciting for us . In the class , we learnd how to translate texts from English into Vietnamses and vice versa . So far , when I read something in English , I can understand them if they are on the fields that we have been tauch . So if I am not good at my own language , it will be even more difficult for me to be good at other lanuages . long time Boading is very tough for me , but I had to take a bus after arriving in Tokyo to go to my hometown , Sendai . We are planning to meet sometime , as we are living in defferent places . As you know , we have a new president , goverment , and a new coalition . Since 7 people are using my stuff , the roll of paper towels is diminishing fastly . so I was jiterry when we could n't park there . Besides I 've been expecting a pacage and letter from another place in Japan which has been delayed TRY - WORKS conducted questionnaires on the web and the street to ask girls about which charactor was the cutest . They were sold at game arcades as a prize , and Kapibara - san became the most popular charactor of all the prototypes . He became a big hit among girs , and he has kept his popularity ever since . I am currently studying at Gifu National Colege of Technology . My favorite sport is snow bord . She ` s sooo cute , especially when she makes Homer chew on her fasfire by force . A patient came into my clinic 3 minuits before consultation hours ended . But nobody coment on my diary . They 're very nice but later , my regs ached . This holiday has many days togather . I enjoy staying at home with my family . He loves diseny , so I wanted to send a diseny one . However I could n't find one . It was my first time going to a job interview in Enlgish . I 'm wondering if the scentences below have any differences . I studied English at school , but I never did leaen it . I finished my bachelor 's at the beginnig of the year . I almost forgot all the words and grammers . Just because they are so yumy , they become others ' prey including ours . Sudenly I felt sad about quitting this job . The auther of this book is genious or god indeed . Since I was brought up in a poor family , living withought worring about money has been very important for me . We gossiped about our borring routines and talked about some interesting things , like the Casino . I 've wanted to have as many friends as possble worldwide , because I beileve being friends with them broadens my sense of view by sharing our opinion about things ! Because of this , when we went out last weekend , I kind of got lost in Harajyuku and beleive it or not , he led me to the right direction . When I came back home and opened it , I just went insain . . I deside to make a plan in order not to waste the time left . So I would like to keep writig and speaking English . My grandmother bigin to has started going senile . I have finisshed ( watching ) Gossip Girl season 1 on DVD . Since yestar , I began to study English by myself ! First , I read and recite words . At first I dind n't know the cause of this riot , as Japanese TV station dind n't report the details . Today , I saw my psychiatrist because of my deppression disease . So unfortunately , my deppression disease is getting worse , . frist diary I 'm so happy , even though it was expencive . But I thought the tiger one was cuter than the lion one , so I choiced the tiger . My adress is on my profil . Thay do n't like me because I was put in charge of an important project and I 'm much younger than them . She was my friend when I was in elementaly school . I saw `` The Blind Side `` yeaterday . I 've been engerly expecting this parcel from my parents . These days the temperature is allways 25 to 35 degrees . I 'm learning conversational English through the enternet . Althought it is a site that focusses on children ( the books are divided in three categories : from three to six year old children , from six to ten , and from ten to thirdteen years old ) , there are many different types of books and in many different sizes , so I think it is a good way ( for us ) to increase our vocabulary in a second language . [ too long ] Alice runs after the rabit and disappears after it , into a hole in her backyard . Unlike forigner , people like going to the beach , having picnic or outdoor actititice . All in all , I think that both inventions are good but the Internet has more adventages . If I eat an ice crean every time I feel it 's hot , I might gain some weight : ' ) is rly bad especially writing T _ T I 'm trying to talk English and listenning to English every day . The tytle was `` Science Allergy `` We Asians performed a play ( or skit ) . To tell you the truth , I did n't really performe . At lunch time , I was talking with a maneger . Anyway , I recomend that you should watch this movie ! First dialy I am a biginner . The people who will attende Zufar 's class are better than I am , and I think I think one peron only has one life , we should cherish our life , and live happily . I saw a movie which is called Harry poter . Today was the last day of my course and I received a certifate . They are famous in Osaka , where I was originaly from . I have always been a gir who really likes to smile . ( There are two types of Zorb . In one , you can grab the hundles inside the compartment or you 're fixed with your arms and feet and there 's no water . In the other , the `` hydro zorb `` , there are three or four buckets of water in the compartment . But , sometimes I am dying to eat a lot of junk food like pizza , chips , and bergers . Yesterday I piced some . As long as I am writing this , I suppse that I have to withstand biases ( or comments ) from other people . Today , I 'm goig to write about yesterday . I always eat food carefully and with grtitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very populat in Japan . I feel this way stronly , especially when I feel insecure , like when I walk alone at night . As soon as I realized that I was beenig chased , he grabbed my neck and choked it untill I passed out . But in 30 mins ' time / But 30 minutes later , I was almost dying in the river . She 's a golden - retriver that is very pretty , cute , and clever . Morever , I did n't take charge of the register today . I 'm styding English and Spanish . Now I 'm considering apllying for the Fashion Designing Course at the Central Saint Martins in London . By the way , I have been inerested in Spanish since before I entered my high school . It 's nice , because it was made so that we can larn it in 30 days ! But I do n't belieave it , because I can not speak English very well even though I have studied it for long time X ( Despite a japanese society , I feel happy whenever I have dinner with my family . We should n't lable it right or wrong , but explore it in depth . There was a teribble typhoon . Hello , everyone . I 'm a new member of the lang - 8 community , I find that this is a very interesring site . I 'm not restricted to only learning English , but I can learn Korean or Japanse as well . He is a very poerfuol man . When I was littile , I watched the Gundam series as well , but even women and young boys died easilyin each episode . I finally stopped watching halfway because of depression lol In order to save money I decided to ask my parents for some books I 've wanted to read for a long time . ( I 'm also a little chubby ; that 's another reason why I would rather readind a book than eat chocolate . . . ) : D Yesterday I bought them . In many cases , which is even more disappointedly , typhoons cause landslides on weekends , just screwing up our nice Sunday . I felt that they deliberatley come on weekends . In reacent days I feel good to drink hot green tea , some intersting things . Learnning English alone makes me feel that English is so hard . I answerd my boss , I 'm your `` right elbow `` or rather `` right arm `` . Last time , I mentioned my undergraduated days . Actually , the women 's college from which I guraduated is in Kyoto . It is a pretty historical and misterious place . I have heard that Kyoto 's central city is being protected by a magic squere . In the Heian era , a noble women who was very jerous I alived in Canada in april . Other sources say that children who have imaginary friends may have advantages in terms of language ability and other inteligent functions . I suppose that this is a defficult problem . In winter holidy two big events are celebrated , Christmas and happy new year . I ca n't drink alchol . My friend and I decided to launch a project called ' getting a boyfiend . ' When we 're in front of the restraunt , we 'll pick one guy a week . `` The workers in Google doing the smallest developments have a doctrate . `` If I had n't found out about this method , I wouldn n't have I hope Lang - 8 helps me improve my wrinting . But in septenber , I will go travelling to `` The Hakone `` with my girl friend Fujiko . The friends gave her earrings and FORCED to have her ears pierced . ( It looked painful , so I coul n't see her get it . ) and I made her choose as to what she would recieve . In my hard times of adaptation to a strange place , they will be a kind of energe for me ! I think it might have been anemia or an epilepsy attack - I think it sounds better now : D My mother just listend to my opinion and encouraged me . Tonight , I attended the public speeking club I joined last winter . There are many kinds of people in the club / Many kinds of people enrollmenting in the club . There are bussiness people , college students , foreign residents , retired people , house wives , etc , , , , , , , ( but I will not be a brackberry or Mac pc user . There 's no water , no electricity , no gus , or no food . Okey ! I can cherich a teachers relationship with students no matter what . At New Year 's Eve , many Japanese preparate for a good New Year . By day we preparate New Year 's dish , general cleaning of the house and write New Year 's postcards . Today , I went to a fruit market and ate some drian today . The first picture is the ancient tomb of Umako Sogano , the most powerful ministor in Japan at that time . So I went to the supermarket in this mornig . But I 'm a little nervours becouse of my poor communication skills of English . My job is a project manager for developping web sites . This is my first trip since I got my job , and every month I save a lot of moeny in the bank . I want to say `` thank you `` to my lang - 8 frends , thanks for your help ! ! ! At midday / In the mid - afternoon of August 4th , one of my new collegues and I came to the company to report together . On Monday August 8 , at about 10 : 10 am , we got on the company bus that was waitting for us near our apartment and headed to work . How becautiful the sky was ! It is a popular sport which has spread to evey corner in China so much so that we now call it the national ball game ! Thank you very much for improving my sentences . & nbsp ; I really apriciate everyone 's help . When most Japanese people speak to someone who is older or whom they are meeting first , they usally use honorifics . My First Dialy However our company ( probably all companies in Japan ) is very nervous about the flu and gave emploees an instruction note if we have symptoms of the flu . Do n't go directly to a hospital or crinic . `` Doc , I know I 'm OK , but I have to see a doctor due to company reguration . I saw a foreigner who imitated DRAGONBALLs charaster Gokuu . I like Roppongi , but I do n't have many oppotunity to go there . It was slightlt rude of him , was n't it ? I 'd like to watch some TV progeam but . . . You can find a lot of churches , temples , mosqhes and indian temples . Malacca is a historical place where it was colonized by the Portugis . It is famous for its cable car travelin the fastest speed in the world and is the longest in asia . And the theme park is facinating with its rller coaster . And when I ariived at the library , I noticed that on Sundays this library does n't open ! ! To make him intersted in the Korean language ? After that I went to Chofu where my frirend lives . Maybe it 's because of the differences between our caluture . . . . ? ? The latter part of gorlden week , it rained . By the way , are there long vacations like gorlden week in other countries ? Today I went cycling to keep helth . I bought it at Takasimaya . But I do n't usually do famrmwork , so I was exhausted . I was finaly able to come to the site a few minute ago . So , my friends and I would go dressed up with a cosplay ( costume play ) to the events celebrated in Madrid for comics , manga / anime or japanesse culture . It 's raining heavily in Nigata and Fukushima prefacture . Those prefacture are raining so heavily that an evacuation order was put out by the government . And about four handred thousand of Nigata 's peopel have been evacuated to a safer area . Shopko is one of the biggest shopping centers in Wisconcin where I am living right now to study English . After I walked 30 minutes , I had the worst thursty I have ever had . I decided to buy juice in the shopko insted of from the old vending machine . Au pair is famouse in Europe , but does n't seem to be in America . If anybady does n't mind talking with me , could you help and advise me ? As I have shown , art festivals are stlongly dependent on local people and contribute to stimulating aregional economies . From now on , try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs all aroud you . But I 'll uproad entries at my own pace from now on because I 'm satisfied with this . I got bored whith that . Althoug I konw my new school , I have many worries , but I think I will study hard . BUT my parents do n't always argee with me . The Asahi Beer Company should appriciate the fortunate coincidence , should n't they ? I try to talk with forgine people often . I am happy if we do n't have snow in winter because I do n't have to shovel snow . ( It is taugh work ) But it means the earth is getting warmer and warmer . . . . When we entered an Okonomiyaki restaurant , we were showen to the seat in fromt of the big window . ( shouwed to the ? ? ) We could see the Doutonbori river from there . I had not awared of this profession , but as I looked back on my life , that maybe influenced me . When I was in Ireland , I was in TV add for sumiroff Ice in 2002 . The first reason is : I ca n't come upe with the next word to say quickly . And my mum rase me . Mom passed away in 2001 and her room is now quet and empty . My class teacher is a forigner . I want a relationship with american peple . We are woking hard to fix this problem . Recentry , many people have been visiting this area . First , I saw it in English with no subttle . Reacently , I read ' Norwegian Wood ' by Haruki Murakami . My home and car is covered with snow and the landscape is beutiful . Accully we did not yet know what we would buy . But I know she like to cook and read books . Everyday , I have to do a lot of experiments and resarches , so I have no time to do what I want . Dier friends ! We ate lots of chikin ^ - ^ It 's rainning hard outside . I like the landscape after the rainned days . I like it , it draws a smile on my face and it aften makes me think of many thinkings . Shound I put off some tasks to complete the following day ? All presemt politicians should watch it . Seita is hero of this story . His father was an officer of the Japanese navy ; therefore , his father was not in his house but on the battlefield . ( I guess his father had already died in the war but his family did n't know yet . ) He had a mather and little sister , whose name is Setsuko . When his family tried to escape from bombing , his mather got invloved in the explosions . Seita 's house was completely destroyed as well by the bobming . Many Japanese people who were in right screen completely forgot these historycal facts , and they enjoyed their luxury and busy lives in a big city . I 'm studing English , and Recently I happened to find that itunes has many internet radio staion channnel in its menu . The itunes list of internet radio is good , and almost all of staions are now in service , so I can hear lots of different music jenre . ( Fiton is on my bed . ) I usally sit on the floor and use the PC but it 's uncomfortable , so I decided to buy them . I should have separeted them into two parts , and cooked them twice . . . I mix it into tomato sauce or curry sause as a hidden ingredient for extra flavor . Can you tell me what this sentense means ? She decided to take the seashells which she foud home . But they gave me portaits with a message . Although the price of a plane ticket is not as expencive as tickets to other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of getting a visa is complex . There are a lot of kinds , such as : yolk mooncake , ham mooncake , moon cake with meat ect . The Miod - Autumn Festival is a time for family . I do n't think all Singaporian are lazy . There are many kinds of food like seafood , meal and vegitavles . Dealing with hectice schedule Today , I went to a book shop in sinjyuku . Octpus is a sacred living thing , is n't it ? Hi all , I 'm Midory from Hokkaido , the northeasternmost iland of Japan . It is a good time to visit overseas because of the high - valued yen , but the oil sercharges are still expensive ! The hero , who names Luffy , fights an enemy every everyweek . : ) On the way home , I got cought in the rain . . I often see it . so I asked my mother where the cat gone ? My monther answered me that the small cat was dead . I bought jasmin tealeaf at department store in Kobe a month ago . I ca n't leave it so its goona na cause me to gain weight . . . He and his friends made capcakes at the night because of white day . I love a Techono music . I heard that nowadays sake is more popular in forign countries than in Japan . A Japanese company annouce that they will use English as the official lunguage in their offices . But she said in a shopping center ( COSTOCO ) in the neighborhood , two people were killed because of the collapse of it 's parking . I 'm planning to play baseball but it 's rainny . Maybe you have to write a long and boring essay , maybe you have to find a job , maybe you are suffering from a disease , maybet you just lost all your money . . . On Girls ' Day , Japanese set up beutiful Japanese dolls . But the dalls which , we call Hina dolls , are very expensive I want to write [ my introduction ] agaein . One day I told a story about the `` Gorgon `` . She feld very afraid . However , she painted a picture on a piece of paper and put the paper in her pocket . I 'm going to unversity to attend classes . Yeah ! I passed the quility test today . The diference between them is the long tour permits you to go inside . And we sould do something we can do easily , for example , to send some food to the areas with a food shortage . In places which do n't grow crops , it may be difficult to increase crops even if htey can use technology from developed countries . But also I think that having a relationship while being young have bad effection . I can speak it a little , and gradually getting worse these days because there are fewer oppotunity to talk with English speaking people . Whatever hppens , I will never quit studying English . ( At this time , she was eating a rice ball with seeweed . ) Then I went to the libruary to study my major , and I always swet in this season . Then , our topic slided to onomatopoeia ( This means imitative sounds like bark etc ) . That Eglish school sometimes holds some events , like a picnic . tempt : Advartizement exist in order to tempt customers to buy their products . conceal : He did n't try to conceak his scandal , but instead , he appligized to everyone . decline : He dicided to decline the offer from the IT company . I start working in my office in the mornig , but I have to work till late at night . On september I am thinking about going to Victoira , BC . I am an easy going girl , and I ` d like to having many freinds ! ! I am very confused about using grammers and the sentences I wrote . I 'm going read a drft ; please check my gammar and pronunciation . Hello , My name is seohyun and I 'm scond grade . scond , I have to study about hair - style . I also made hairstlye to my friends or dolls . I want to buy something that 's not so expensive but is very usefull . Maybe this town is also a very famous place to visit among forignen tourists . Nowadays , Akihabara is becoming diverse , and there are a lot of shops featring anime goods . Japanese anime is expanding in overseas markets , and many foringers know ( about ) Japanese anime . I will write ( about ) it sometiem soon . After that , we played sekand game . Since 11th March , they had taken shelter from aftershocks and activeradion . I want to get into university , but also I want to go abroad to America , so I will have to go to univercity 5 years . Today , I am / I 'm going to an English club , because I realy want to study English . Yesterday I bought new shues for jogging . Three years ago I was a menber of the fitness gim , but I resigned because of my busy job . However too many people are here just looking for someone who speaks Japaness . I did n't play video videogames for many years because you know , studying , working and reading . I recommed to you FF X . I recomend : www . My grand - father made a liveing by raising chikens and a calf . It tasted different to Janpanese beers . Today is the general election which looks set to bring a historic change of goverment . The Liberal Democratic Party has govered for over 50 years . Please introduse yourself . Thankyou [ space ] you for reading : ) Is this my reducdant reaction ? I am taking an oral examination in five theological subjects this week . The subjects are the old testamen , the new testament , church history , systematical theology and practical theology . Most Japanese people are not good at speaking English , because we only study English grammer when we are students in Japan . Yesterday Jei taught me one rule of grammer in English . As the motion of their gestuings are too large and radical , it 's easy to hit me , especially when I stand by them too closely . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a respose to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these cunsumers are really smart . . My winter holiday has already begun , in my opioion . I want to read some English magzines or newspapers for inproving my English during this holiday , but I do n't know what I should read . I hope to get some advice from here . I 'm expecting to have a good inprove when the holiday comes near to end . Japanese are only spoken in Japan , so when we go to other coutries , we will feel loneliness . I want to ask English speakers `` Do you feel a sense of closeness to people from English speaking countires ? `` At least , it does n't seem as hard to get good grades in university as it is to get them in ( seinior ) high school , because I only need to take some subjects I 'm interested in . Recently in Japan , there has been a deemand to save electricity . beacause in China people always learn languages from books , so there is no chance to speak them . I also like Janpanese , because I like to watch Japanese cartoons . I watched a baseball game in the Nagoyadoom yesterday . A lot of people have asked me what restaurants I would reccomended in Kamakura . ( Indirect question . ) What I had was various sashimi ( raw seafood ) : tuna , salmon , horse macker , scarop and salmon roe . I heard that people who have experienced study abroad need a score of more than 800 to prove their ability baced on their experience . The business carrer exam is coming soon The business carrer exam for logistics is coming soon , but I still have n't prepared enough for it . While hearing the quiet , slow tempo music , and calm voice of the instructor , I stretched my boby . A neighbor 's help can be the fastest . The shop was proud of various high quality , imported products There were many customers who came from othe countries , looking for ingredients to make meals from their homeland ( I would often be asked by Australians - `` Where 's the VEGIMITE ? `` ) . It was really traditional , so just few people ( familly or relatives of the bride and groom ) can go to inside the Jinja during the ceremony . Please , correcion and comment my blog . A lot ppl who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese ppl are kind . : P In my school days , boys competed against boys , and girls against girls , but in my daughter 's school , they did n't devide the boys and girls . Recentlly , I think about that everyday . However , I could n't write them because of myh English . Becuase my train leaves at 7 : 30 AM . An agent named Smith found these pictures of President Clinton and Ms . Lewingsky . My final goal is not to be a permanent resident in Austrailia , but I was planning to obtain a permanent visa to accomplish my goal . Then I found a recipe in internet brog and started making a pizza . Aritayaki is pottery from the Kyusyu region . I coould not answer him clearly . . . I went to Seoul for a lomg time . So he called every anymals with `` mung - mung . `` It was especially a great purfomance from the trainner riding the dolphin . After th show , we ate lunch on a mat in the forest and it was more delicious than eating in at home . It is a cloudy today but the temperture is not too warm and the weather is confortable and I 'm looking forward to rhe start of the school year . Althogh It is hard , I 'd like to study English . and I beleive it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achive my goal . As I went shopping , suddnly my shoes broke . When I 'm writting my diary , I 'm not certain on the tense of the verb . When I speak with a foreinger , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I think I shoud be able to learn from you Though Asakusa was crowded with many sightseers , according to my frinend , there were fewer foreign sightseers compared to before the earthquake had occurred . V - day is the only day when girls declear their love to boys . Before the test I always feel pressre . My husband is Indian and he commenced running a small guest house in Rishikesh from this Aplil . It is fomous place for yaga , maditation , the Ganges River , and the ashram where the Beatles visited once . Yesterday , my fmily and I went to ganghaw - Do . It was a beautyful place . It was surpriese , too . That 's what the parants of Harry died from ! Tommorow I have an exam in mathematical statistics . It was slipperey and dangerous . He tought me that dreams can definitely come true if I do n't give up . In Japan , most people start working as regular employees immediately after ther bachelor degree . Waking up early makes me feel more tired and frusterated . Hellow , I am feeling very good . I like English , but I am not very good at English as you can see . Help me whrite in english ! `` I 'm fine ! `` `` I 'm good ! `` and , `` I 'm OK ! `` What 's the diffrences between these three sentences ? It is aprox . 10 feet tall . I took my motobike and drove to the dog market , where they sell pets . I agreed and sat down , waitting for him . Hello , Lnag - 8 users First I write some words in English , drink cup of coffe , and read my e - mails . What is the best metod for learning new words ? It 's too difficult for me not only because of the grammer but also because of the words . So we counld n't go anywhere else . I do n't have confidence in whther native speakers can understand my English . I 'll attend some meetings and an exhibition of the heating , air conditons and ventilation industy in Las vegas . ' Poets are not so scrupuluos as you are . But I like going back to sckool , because I can be together with my girlfriend and play with my friends . I 'm studying English right now and hope to aquire skills to speak fluently with native English speakers . Philosophical issues , Religional issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . Today , I went to the plice station to get a new driver 's license . If they find one of participants to be good , they exahnge phone numbers and they will be friends or boyfriend / girlfriend . ( There will be ) my friend , a frend of my friend and Iso men 's team had three people as well as women 's team . We enojoyed the party and had a lot of conversation . We play roles of yakuza , Japanese gangsters , of Kyusyu district , southwest Japan . After some time we separated , promissing to meet again . But some say that the goverment and electric power company are trying to I am learning English . I 'm espically instresed in learning spoken English . I am a postgraduate majorde in computer siences , and I am instersted in network security and DB . I welcome more friend exchanges . I 'd appriciate it if you read and fix these sentences . I think that these toys may be good fot people who are not allowed to have real pet hamsters , or for those who love hamsters but are too lazy to take care of them . In Japanese , this is called ' toilet trainning ' I prepared all of the tickets but not completly . I was comfused because I heard it just before bording the airplain and I was arriving in Bergen at 11pm the hotel would be closed . I looked around in the airplain . We talked about why I was staying at their house and they recomend some good places to see in Bergen . Could you change this paradraph into something more ' speech ' like ? or if you do n't have enough time , just correctong is of course very welcome . By the way , I think I am quite a strang persoon because I feel excited when I hear the wind screaming , or just maybe because I just drank a cup of coffee , which always makes me excited . You are ( were ) my friend and I always beliving you . Why did you have to lie to me ? I comuute by train every day . In the evenig , I catch the 8 to 10pm train . I ofhen read books on the train . My friend recomend Korian movies to me . Some georgrapers say `` There are no places where we have not explored on the earth . `` I say this because only little girls are horeines in his works except for in this work . ) Nobody belibed in the testimony of his father , except for his son Pazu . The girl who slowly came down from the sky , whose name is `` Sheta `` , had the magic stone ; she was pursued by the army and she had a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheta . I 'm goint to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . In Tennoji , we were spoken to by drunkun men . Could you give me some advice to learn tecnical writing ? Also I like green tea candy and adzuki bean flavored candy . I was waiting for the powder snow because I really like go snowbording , but it seems there is little chance for it this year ! Does speaking only improve your / ones speanking skill ? Please recommand : ) Unfortunatly , I might lose the draw as I anticipated . . . I was born in Ooita preficture which belongs to Kyusyu area in Japan . Also of course for talking with foreginer on the phone in English . Some of my favourite locations include Lubok Semilang , Kisap , Telaga Tujuh , and Datai . The first dream you have on the first of January is improtant here in Japan . Unfortunatly , I had a bad dream . You 've screwed up everything , you know ! `` I coud n't understand what he was shoutig and I was just petrified . Last English lesson , the instolactor told me about this site . My head itchies ! This is my nineth entry . I 'm wrigting a manual for the installation , maintenance or conversion of these machines . Yesterday I set up a Chrismas tree . when my dauthers were very yong , I felt the tree was too big , Becouse my daughters can do it themselves . But I desited to keep setting up our Christmas tree every year if they go out in the future . But when I went to university , I knew that English would be very impotant for my future career . I can tell my opinion in simpl words , write ( with mistakes , of couse ) and undestend other people when they do n't speake too fast . First , we are reading a book about stock for bigginers . PS : rewirite or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too yong , but I want to learn English very much ! ! ! Laterly I feel very , very bored ang upset when I have to study . I dont know what is wrong , but it 's just boring ! The difference between `` jorunal `` and `` diary `` The car exhaust messed up my landries . . . And I love him playing the violine ^ ^ Tomo - chan `` wears `` the laundry basket like a backback , and says , `` I 'm a turtle . `` I always go there by car with my hasband . Buying groceries for 7days , the laggage is very heavy . On the way home , It 's difficult to contorol the bike because of the heavy laggege . In Japan , there are manu delicious foods , such as sushi or tempura , but I do n't know any American foods . My daughter always wears a one piese dress . In my opinion , you are already so busy studing and working , you wo n't have time for a dog . You shuld give this matter ( some ) ( serious ) consideration . Recently , electronics tecnology has improved so much that it is common for people to have a mobile computer such as a notebook PC or a cell phone . Afterwards , I listend to it many times while studying . That song supprted and inspired me while I was strivng to pass the exam . I 'm determind not to sell the CD I bought because all the songs remind me of my `` golden `` time . Only unmarried women can wear a Furisode on celemonial occasions . I think they have strong motivation for working and learning but they have no self confidence , so they can not try to deal with a new enviroment . They need to find enough power that they could continue to the future even after they faild once . Now my wife is preparetion herself by make up and winding her hair . I 'm comefrom China . Have you used an air conditionar yet ? Anything I read teaches me somthing : new and different ideas , to understand and know how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I have already taken the circuit anylisis exam Even my professor , who is a `` sister `` from America told us about this situation in class beofre . Taiwanese are xenomanias . Are Taiwanese really xenomanias ? That sounds not too hard , I would just translate my oringinal report from Chinese to English . . Please give me some possitive words to encourage me ~ I will be full of energy ! ! ! I need help to correct my scentence . Een hertwarmende video ( in het Japans ) Of cource it is very important and I never considered not attending the party itself . I was watching TV , so I slept in my living room whithout covering my body with my bedding . That is why I cought a cold . There is nothing but rice fields in my hometown , but I feel lonly when I think about He knew it was ridicious to do something like that without realizing that everyone could see , and was n't so proud anymore . So , I go on bussiness trips often . shut down all neclear power plants ? As far as the Fukushima neclear power plant is concerned , it had been operating for My first daiary I wii go to the park near my house to play catch with my boyfrend . Next term , I will be very busy , I have to prepare for the TEM8 and post graduste examination . But I am confused because I have no idear how and what shoud I do or what to do . . This is my first time writing a dialy entry here . Today , I left a comment on someone else 's dialy for the first time . The door was in fron of the class so I had to pass the professor to exit . but I 'm 19 ysars old , so you may think that to watch anime is funny . So I hav n't read the book . anybody knows some ways to treatmaent this bad illness ? . . Has anybody seen fhe film Brazil ? When I was a junior high student , I used to write my dialy in Japanese but I quit . Even more funny was when I was walking in front of her house and I passed by the windown where he was placed . I usually spend time watching DVDs of American drama to studay English . From now on , I wll put today 's date as the title Recently , I have been seekig a new job in which English is required . I need to get a high score on the TOEIC test nenx month on Sept . 11th . I also want to improve my spoken and Writeen English . In Kyoto , there are many hisytorical monuments , shirines , and temples . After the object was gone , we started to see a series of images proyected rapidly in the sky . A few days later , a beautiful girl appeared at the grandfathere 's house . They could hear sounds of weabing . We had our senior 's guraduation celemony on March 16th and it was a very important event for this school . In Taketomi - island , we stayed in a Japanese - style hotel and enjoyed awimming in the hotel pool and the beautiful sea . Forthly , I ca n't use the punctuation in rigth ways , so when you read my diary entry you would feel confusion . Yesterday I ate sushi for the first time in my life ( I know that is a little shameful , becouse I 'm fan of Japan culture and . . . Although I wanted to talk about the Lions , I degressed from the subject . I am lazy to control myself , as a result of that I 'm always desgusted with myself ! gee ! Today , I 'll tell you about a famous Japanese comic called `` ONE OIECE `` . I got a holidy for five days . This Jindaiji park did n't seem like a place that was 30 minites from Shinjuku because the area was very calm and has old traditiona atomosphere . I 'm excited with the class even though I 'm still not in the unhabit of using English . Long fligt The novels were writte Japanese . I 'm loven ' it ! And , I 'm loven ' it . I seriosly need staple food ! I ate lanch and then went to English school . I 'm studying at the University of Arts of muy contry , I 'm studying Liric singing . I am planning / ( I plan ) to visit Singapore in the midle of May . `` Staying healthy is the most improtant thing in our life . `` I totally agree . . . . . . . . . Actually I really appriciate him because I knew he is always taking care of me and trying to encourage me , and doing his best for me . ( I accept recomendations for places or courses . : D ) I asked my teather about this . I think this is a strange thing in japanese . The Simsons is an animated film . I am at Chingi air port . The following is just something I heard from a Krean radio program . Please do n't hasitate to correct my sentences , and I would very much appreciate if you would write another natural expression in addition to my sentence They are going / willing to pay up to $ 2500 to patients ( paitients ) if the paicients ( patients ) are qualified / qualify . Tanabota probability is suppoused to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . The students who ca n't come to scholl will be behind . So many things have happend since I last wrote in my diary on December 14th in 2010 . In this field , you have to be very careful of every detials . When I was a high school student , I studied English to preper for college entrance exams , I certainly feel like dietting is not easy . hahaha ^ ^ ; Our relatives all came together to talk to each other and to cook a lot of dilicouse food that we all ate together . The massage fee is so expesive , but I will go there again . So you add me , friend , and help me improve my Enlish . Yesterday I was listining to Gilles Peterson 's show on BBC Radio1 thorough internet . I do n't like to rest from work but I coud n't move this morning . Some pople feel that it is necessary to know what is going on in the public through the infomation provided by advertising . Thanks to advertisements , we can gain the lastest infomation effectively . I was at my mother 's home from Friday 11th to 13th of June to particepated in the reunion of my Junior high school class which have held on the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on the Sunday morning because my home town is Shimoda , three and a half houre from the center of Tokyo . Because I slept in the room next to the kichen . Then she called me from the kichen `` Are you all right ? Thank you for reading this poor leavel English composition . Although we are not togather anymore , he still rember me . I feel very happy . Becaouse I 'm cold - natured . It looks boring , ha , however I understand why it really attarct men . Pho tasted verry well . there was n't any probelm throughout the group reague since Japan was keep on winning to next round step by step , but it is tornament now . While a docter was treating my teeth , I cried all the time . Do you have your profile , where you can write short menssages ( no more than 140 characters ) , and those menssages will be displayed for all your `` followers `` ( people who follow you , have acess to your updates ) . I saw that fhe sky was quite blue , and seemed very far away . There were many people who belived in it . In order to use the internet via I pod touch , wireless LAN is nesscessary , unlike the iPhone . Chakras are ubicated in each auric body and are responsible for retaining and metabolizing the energy that the body needs to work optimally . In fact , we do n't have ( just ) one cardiac chakra , for example , but seven : one in the etheric body , another in the emocional body , another in the mental body , another in the astral body , etc . Usually the literature on / about this topic describes chakras from the emocional body as the only ones that exist . And I think these tastes are greatly influenced by each country 's clutural backgrounds . You may feel thirsty without milk or aything else when you eat sweet potato . My mother keeps saing that I should solve more math problems , and my father keeps saing I should do three things this summer vacation . Monday , Thursday , and Friday , I have a clase in the morning , and Tuesday and Wednesday , in the afternoon . I want to speak English and Spanish , and of course Japnese : ] It is sad to reaiize , but for the last 4 days , that I 've spent on this site , in my posts there was done only one correction . My favorite ramen restraunt I have a week - long vacation , but I do n't have anthing to do . First I got up late , then then while I was in class , my teacer aske me a question regarding the meaning of a word . I always think too much and hesitate when I want to speak in Engligh . But , I feel so nurvous about it ! ! xd I 'm wating for the delivery . Because it can be used for exercing . Yoga , boxing , bowling and mouscle work outs are available as well . C . Escher drew immpossible archrectur structures , they seemed like infinity but limitedness and they seemed to change pattern . I like play gitare , draw and play volleyball . Peters stupid jokes always amuze me . More often than not I feel that there is / a cultual difference between Japan and Korea while I 'm staying in Korea . Most of the jeweleries was huge , so they seemed to not fit Japanese people because we are smaller than European people . He replied to me with an intersting and long message when l sent I 'm flom Japan . Now , my father is in the hospital because he has a mental desese . but I warry that she will collapse . but today , when I rubuilt my computer ( system ) , there was no problem . Can anyone help me with my Englsih ? Im chatted with my finternational friend on Facebook . Because I just had gotten results and throughaway them away . Please teach me I ca n't superate them . What is your teqnic in learning the language you are interested in ? In my opinion , you can not learn a new language or even travel through the world ( wich is my dream ) if you do n't know how to speak English corectly . Hello my wuderful friends . What an unfogetable day ! But I have been continiously woken up by aftershocks . I konw that everything depends on God and my abilities in English , but I really want to pass it . I 'm worring about two things . Anotoher is the expensive tuition fee of business schools . now I 'm considering ( think about ) which contries I 'll go to . And this vacation is alomost 1month long , so I want improve my English level . I wanna send `` Thaks for pointing my mistakes and correcting me `` and `` good job for correcting `` , but I have no idea where to click on my page . . . They shut down the factories and laid off labors / workers . I have n't raed the book Black Boy yet and I have to write this diary . `` The fandamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by I do n't know why . Maybe it 's becouse it 's 35 degrees C and you ca n't do anything outside . Then I was hangry an hour later and ended up eating a bowl of noodles . If this continuts , I think my friends will not be able to recognize me over vacation . Most of my friends alredy already gone He plays basketball with his frients after school every day . Last year , when I walked around my neighborhood , I noticed a small signbord for a Shodou school . I will enjoy this page . aaAnd I want to help the people who study Japanese . The story is about a girl called Jessy who has a grandfather who faces dealth . Sea is the goal for each peoson . Homecomming visit I was suprised at the air ticket price . Public bath in Japanese is called Sento and I love it . In Sento , everyone is usually naked without a bathing suit . I am proud that I have such a friend , who knows english very well and can travell in England and other countries . My friend said that the ( air ) temperature was tewnty degrees this afternoon . . . Because of some very spicy ones and coreanders . However , I want to mention that my English is very poor so if you are reading my diary right now , please have patience and I 'll be very greatful , < 3 thanks a lot . I am not a romantic person so my wife alawys say to me that I should be more romantic I really appriciate it . I bought many things , for example , a vacuume cleaner , a refridgeator , a table , a bed and curtains . . . I ca n't sleep because I 'm loney . Pls be informed that this shipment will be deliveried as LCL via Hongkong . May be this is because I do not want to learn English in the beginning . But I will try my best to learn it in fruture . My glish teacher has taught us many words , but I can not remember them and use them in the wrong way . What can I do ? The food is not as delicious as I expectaion . The food does n't taste as good as I expectaion . We happed to meet a Japanese tourist group . I asked someome in the group in Japanese . My bad English was n't understood to Perucian . I want to go to Peru agian . It was a very nice memory ecxept for the Japanese torists . I was impressived ! ! Besides , as this hospital is highly specialized in cardiovascular surgeries , I am able to improve my skills and develop my carrer . So I remembered about the time I chose my job when I was a ager . I dropped by the library on my way back and I brrowed `` One Piece `` . Today , when I was about to get in my car , I found something on the glound . I quit smoking in April of this year , but because of stess I started again . I know it 's not good for my health , but somoking after feeling feeling so much stress is beyond expression . I 'm Japanease , but I live in Beijing presently . Today I learned some new words from this convasation . I think the uniforms you see in the picture are orenge and bule , In the practice mutch , I got punched in the stomach and fell down ! The instructer said that it was n't very strong , but I could n't speak . We laied on our backs , and the instructer stood on our bodies and jumped three times . We voters probably wo n't be able to konw all the results of the election till midnight ( today ) . This election also addressed the ? resultion ? with many foreign countries . The U . S . / The USA , China , North and South Koria and all the others countries around the wourld . The resultion is known by God alone . They probably broke bacause I listen to music too long > _ < ( this also works ) When I become a teacher , I would like to be the caoch of a high - school football team . Anyway , football is an extremely organaized and systematic sport . I replaced the sentences in the grammer book with my own sentences . As a wowan , wrinkles are the number one killer of beauty . My big brother participaterdin in Tokyo malathon last month , which is one of the biggest citizen race . He finised in 3hour 6minites . The saddest part is that his older sister had also committed suicided . I do n't know why , but this year has had a lot of Fridayy the 13th . As a result , we have Hence the spectacula congestion on the highway . my name , special hollyday e , photo and so on . Today is a boing day . I want to drink alchol . After that , I wathed a DVD at home . My elder sister is a doctor too , so once they start talking about thier jobs , I have no idea what they are saying . We go to the temple and pray for our family 's health and heppiness , and for world peace . Thease are very delicious . Next Tuesday there wii be a presidential election in Sri Lanka . I do n't know what the most important thing is for me ; I have many probelems that I have to solve . While I was studying , a frined on the Internet told me about an interesting video game called Age of Empires 3 ! The test was quite difficute , especially the listening section . We spent 2 hours at sturbucks . My friend geve me a Goya yesterday . If I keep on my regrefrigerator it will change to yellow color and very sweet taste . My father is paster , and he loves studying . If you buy deers rice cracker , I caution you . Deer will paster youviolently . He had no problems or consern and was very happy . We cried and said good - bye to our best friends with whom we studied and lived together for 4 years because we were all going to different parts of the & nbsp ; country and pursuited our dreams / goals . My favorite fruit is pinapples . I always wonder if it is better to buy a cut pinapples or a whole one . Just have to live for now and preparate for the future . go abrod . . some of my friends have gone to forine countries to learnd English . . . but I do n't have the time to go abraod . . and other uroup cntury ( nation ) Because they are in small gages always and walking time is once or twice a day which is only ten or twenty minutes . I know that it 's gon to be difficult to keep up with this class , but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . At first , I felt a little down , but I like it now because my frends said it looked nice : ) ) I took TOEFL this morning and I found my English typing speed is too slow , despit my fast Chinese typing . So I made the dicision during the test that I must find a way to get more opportunities to type English , in order to improve it ~ Maybe I should keep on blogging in English . Hrajuku has its own character and is representedby ( ? ) the lolita look and cosplay . So she wanted me to get an arrenged married . Once I was forced to see a man on a date arrenged by my mom . Actualy , she did liked him at all . It happed a long time ago but I still am reminded of it whenever I see my mom . At last , I hope erverything will improve ! They are have good servie , and changed it to / gave me a new account . It 's about a pirate called Lufy who is the hero in this comic . It 's called `` devil 's fluits `` I am Interestd in videogames ( for example : PS3 , PS2 , PSP , Xbox , Wii , NDS ) . Also anime , and technology like the iPhone and iPad . Have you planted the seeds of appriciation ? Here I uploaded some screen shots from this docmentary . becasue am a lazy girl . I heardly save any money . Please enjoy the song while you helping me corecting my diary both internal and aborad . But , , after this episod , I 'm careful eating Kimchi in other country . and it 's a bit boring , but there is a crack from where you can enter the underworld if you kill all the enemies on the area that leads to the crack / opening and to the garden and at the end , you can enter the Hero 's Hall . There , everithins is made of gold and in the last part you can find three mesmer ( ? ) bosses called The Darkness . If you kill them , they give you two green staffs , and each staff can be sold for aproximaly five thousand gold coins . If I had spoken earlier to him and my seniorities , that would not have happened . And also there are a lot of various metter ( ? ) . . . . . This is my new goal , and I 've set a date : 30 juny 2011 . I have been using the iPod application and iTunes so that I was little more familier with the Apple products . My classmate and I will play it at a pormance in July . I felt so much cooler despite knowing that the tempreture might / may not actually go down that / so much . I hane to make a presentation about Accounting . So , I hane to study Accounting ! ! I think they 'll give you good anwers and help you resolve your Japanese problems . My target : I want to talk with forign people in English ! I belive that the first experience of everything is very exciting / memorable When I chatted with Atuya , who can speak English fluently on Skype , he recommended that I buy them . When I went to Canada I was impressed with the stuuning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more mafnificent . But at my home we have not used it yet , becouse the weather as changed so quickly . . I thihk it is very fun to make friends . Green leaves work and create energy vigorously on the trees during summer ; they turn golden , and fall onto the ground after thier hard work . I wanted to buy another magazin but I did n't buy it . I found some nice clothes in this magazin but they are a little expensive . Since I went to Neko cafe for the first time , I was so surprised to see many cats . And also , I cought a cold from him . In Japan , almost all students ( elementary school , junior high scool , and high school ) get summer vacation from the 4th week of July to the end of August . Reserching also requires English skills . Today March 10 is the day when candidates can know whether or not they passed the entrance exam of national univercities in Japan . I have a girlfriend and love her , but I ` m so embarraced that I have not yet told her so ^ ^ . We go to the same private univercity ( Univercity of Keio in Tokyo ) and belong to the same class . But she also studied to pass the entrance exam of the Univercity of Kyoto ! I feel sorry because I wo n't be able to meet her if she passes the exam ( Kyoto is far away from Tokyo ) , while I support her and believe she will succces . The topic is staying healthy , we have to write some points on the note card and say it in front of calssmates in three minutes . here 's my whole sppech And then , I did n't exerices in the past , because I hate sweat . But now , I realize that I ca n't be like this anymore , I want become healthier , so , I changed my dail rountine . I want to learh English because my dream is to visit many countries . Maybe all countries of the world . Luckly , we had nice wather . My favorit thing . They will see the full bloom cherry blossoms for the fiest time . I was tlanslating an English e - mail for my boss the other day . But I have gotten the idea that it 's good enogh in quality and looks at this moment . I 'm lookimg forword to this weekend very much . Even now , the accident is going on , and because it is known that bolacic acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I could not watch the perfect ecripse , My iPod does n't work becuse I washed it today . But , these thougts make me feel pressed and I have done nothing recently . I had a conversation with him about complaint of our current state untill 1 : 00 a . m . I felt really happy when my former boss told me that I would move to the Okinawa office , because the Okinawa office is quite popular amang my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so by my wife driving us we could go anywhere we wanted ( In those days , my drivers lisence had expired because I forgot to renew ! ) . It is true to studing languages consists of the letters . If you have done that yourselfe , share your experience , please . So I think it 's good to keep in thouch like now . Another one was personalifying risks are percieve to be riskier than enormorous risks . I 'm working part - time at an Italian restrant . I want to make frends with people all over the world , especially English and Spanish speakers . Maybe we wo n't be able chat ( often ) because of wime zones , but I really want to get to know you . I used to hate writing something because I felt it was such a hussle . have no substitle . But the next exam is coming soon , it makes me a little nervious . This is becouse it was just in full bloom . He said `` take this / some medicinene ( anthelenintic ) . . . . . `` But I had not eaten ( yet ) . Here have a quantity of foreigers . Sometimes the foreige friends help to correct my English diary . I spent some time , to think of an ansewer . But I think people who have beards do n't look good . ( on some people it looks cool , like jhony Depp ) I get a runny nose very often ( kind of allegic ? ) and I get tired easily . I have n't writen this blog for a long time . I was suprised and ( still ) feel very thankful . The dolphin was spotted bearing deep wounds from the bite of a large shark on Friday . Until Monday the animal had not emerged from Moreten bay for its nightly feed , and it was feared it may have succumbed to the injury , but the twelve - year - old dolphine returned to his regular feeding spot on Monday night , and was transported by boat to Sea World on Australia 's gold coast , where he underwent the surgery and now recovering . I will go his reatraurant again in the near future . begiin new days . Please recommand an English name for me ! ! Please recommand an English name ! ! Actually , I deleted history on Windows Exploer , but I did not clear the document history . I 'm greatly lokking forward to meeting him . In the morning , I hurried to get up and eatted the sanwiches that I prepared yesterday night . At that time , I began to realize that I forget my tiket and wallet at home . The relationship between parents and children is very improtant . If you 're interested in the special culture , I 'll introduce a useful tool for browsing throught the night markets in Taiwan . My lithneing skill is very weak , so I always got the lowest score on the listning category of the TOEFL . Are there other effective ways to train the listhening skill ? I always go to clinics , to meet doctors and advatize or inform them about my company 's medicine . However , sometimes I am appriciated by dotors for my support . In Madrid , it has been raining all day and going outside has been imposible . My hobbies are listeng to music , watching TV , playing sports , and so on . According to the weather forcast , it will rain tomorrow . And two tyhoons will come close to Japan . Because I hope to make a present for my mather on Mother 's Day . According to the article , in Bulgium , there are four parties and they all have trouble with language . This writer 's point of veiw , you can tell there are two worlds in the Cinderella story . In 2009 , many scientific studies showed that chocolate has many interesting properties : it is rich in flavonoids , provides good protection from the sun , improves heart health , decreases blood pression , and even protects against cancer . What is coreect ? is there anything elso . . . ? If I go there again , I will go bankrapt . While there , we were thaught about the Asuka era of Japan in English by foreign people . I went to a toy museum with a forener . I hope one day I will speak inglish , one day . . . . I also like cosmetics , fasions , and magagines . Movies make me excited . Today , a tayhoon hit city . I wo n't go to wark . I wish tommorrow will be fine . The differnce was , however , he kept on going to his potty even when wearing his diaper . When I found this site , I decited to post in my journal everyday . When I said that her studens seem to have been improving their Japanese a lot , she looked really happy to hear it . I know her feeling . When I was an instructor of drawing software at a bussiness school , I was happy to hear about my students ' efforts and improvement . They often gave me the enagy to teach . I could do it anyway but my friend coul n't and held the bar whole time . . . it was so cute : ) I want kimono for myself but you need speacial treatment to keep the kimono in good conditoin . I love this lenguage , and my greatest wish is to speak and write English ( fluently ) . And it eables us to enjoy taking a bath outside and to overlook the valley . It seems a little bit complecated to me . It seemed to be a very nice day . . so I took a chance to ride my bike becouse it had been a long time without using it . I am so depressed . I study English every day , and when I finish class , I come back to home . I continue to study English , but I feel my English is not improve much , I memorize English words every day , bu next day I forget half , I feel so upset , I think my IQ is good , but my memery is not so good . . . . I want to know whether foreign people have dyed thire hair or not . Because an upstairs room is cheaper than a downstairs one in an apertment house in India . But I ca n't remenber everything I study . If you know the best way to remenber , please write your way in a comment . Today I finished my thesis finally and I may be able to graudute from school in two weeks . My brother has told me that my grandmother has been transfered to the emagencey room for brainsurgery . My allawence is far from being able to afford even the cheapest one . Soo today I will write somethink in English . I desperately searched for an Austraian conversation partner , but three months were not long enough to masnter conversational English . He answered me , we introduced each other , and bigan to talk . Maybe you will meet a lier that will steal your money , because who knows anyone on the internet , where people can promise anything ? God knows ! There are aminals there which have been abandoned . However , he miraculously recoveriedand and he is full of energy now : ) I needo to study English , but I do n't have any motivation . . . . . . I admit that I 'm a lil insecure , which I do n't like to be . She fascinates me though I do n't linten to pop music very much . Althoug the weather was not perfect to see as far as Mt . I am really nervouse . It 's the bussiness language . . . . . Untill I read another person 's journal , I had never heard about it . Only suginami - ku ( one of Tokyo 's towns ) was entryed in Japan . Now , I want to be a coustomer survise agent in airport . Hope I can successfullu pass this examination . I 'm a big fan of `` The Dark Knight `` and `` Mement `` and I like Ken Watanebe . Absentmindly story How about in your hoilday ? I 'm sorry for no contant for such along time . While I was at work , I met a pofessor sho was Mr . ( nome of my lats supervisor ) 's friend and he introduced himself to me . I am not sure if I will have good topics in the future , if I will pass exams and enter the Unirvesity , or if I will find a job in a good newspaper or a magazine . On top of that some fuel rods have alread suffered damages . [ suggestion ] I wish I could recover immidiately . I hope I recover soon Whose backgroud music is excellent . my choir teacher has been soo anoying lately . The population of Japan is decreating now , but business in Japan is poor . Gon na work as a web creater after graduating ( only 2 months left ! ) , They were the offense side , and we were the defense side . I need the computer because I am studing English and I must do myhomework . So , they are not eager to get mariage . I did n't think it was relexing . We slpet only 3 hours every day . I think pople are unaware about how little we care about things as we get older . Anway , I think this movie is not only for a child but aslo an adult . It 's a very exciting , entatining , and heartwarming film . I was going to buy running shoes but what I actully bought were like DVDs and so on . He will soon stand by hisself . I 'm planning to get a driver licecse before long . I nerver finish reading the books that I buy ; I am a cracy girl . I know it is really hard to do it . Sometimes I am lazy ; sometimes I am drosy and would like to sleep . I 'm practcing `` In too deep `` by Sum41 : ) In japan , girls give chocorate to boys . Aroud 328 pepoples & nbsp ; died . Last week , my classmate who is & nbsp ; now a & nbsp ; teather . Told me that & nbsp ; two classes have been & nbsp ; Cancelled , due to the H1 / N1 in her school . I think I have a responsity to remind you , my friends , to pay more attention to your health . Personly , I insisit that health comes first . I am looking for peolple who can teach me English . To tell you the turth , I felt sorry for him , because he really looked sad . . . I went to Izu znd Kumamoto in this summer vacation . Humm I still do n't know what to write about . I definitely need some help , because I never have time to practice my writen English . . . AlthoughI do n't know hou to use it . It rained heaviliy today . Espeicially if you take two totally different language courses , it would drive you crazy . He played football till he was a highsool student . And I 'll correct entries writen in Korean on Lang - 8 . But after a little training , I learned to opreate it . In the end , we choose to wait for the special bus because it was more convinent . Havy raining ! ! It is hard for me to consentrate on my studies . because my frieds all have girlfriends , except me ! from IT technology to peaple 's values . The Tokyo Electric Power Company said `` We will use the accomodation later as we do n't want the field workes to dirty it . `` Therefore , I waitd for her at the station yesterday , so she was pleased as well . And by this morining I 'm already almost finished ! He can speak intermediate level Japanese , and would probably be able to explain English glammers in Japanese . Now , I rerally talk with people even in Japanese because I am busy with work . Ttherefore , I decided to run at my fun - run pace . It is very beneficial means to learning a foreighn language , so I 'll try to use it when I have time . I have been having toothaches theese days . The TV program showed / explained that the children of emmigrants who had to go back to `` their mother countries `` were not receiving adequate attention . ( by whom ? ) I would like to study abord . Generally spearking , most Taiwanese are warmhearted and friendly . He then had an operation at a Nanjing hospital where the docotor removed half of his lungs . Now I 'm not confortable eating hot and spicy meals . . . Then , I talked to many people , but I could n't comunicate well . And now , I want many foreign Frends , I wanna talk about many things . I guess this is the most importan quality that I write until now . Moreover , a thaughtless act or remark can spoil a perfect relationship . Recently I take a shawer twice a day . Menbers arrange a meeting in the local area via twitter . I try to do exercise but I usauly must open the window all the time . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I recenyly have n't been to a music concert so I decided to go to a concert . Something hapended to me that put me down . I get up evry morning and feel like a loser . In fuct , I was studying meteorology when I was about 20years old , but before I knew it , I stopped being interestd in Meteorology . Today is a historical day because we could see a solar eclispse over almost all of Japan . It means the electricity is cut off at a regulat time every day . So I found that electricity is one of the more important things in our dayly lives . I made a big effort to learn , because this is so intereting for me more and more . People in Canada usualy put their foots on across a seat in the bus . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all the day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some conforts . The man . was a Cadian But my new office is in the city , so I have to wear bussiness suits . Today , I bought a lot of new things to wear to work , for example : bussiness suits , shoes , and so on . I can control my computer to play a vidio from far away . I was going to make a team but I coud n't afeter all . I was sad and disappinted . And I doother sport which are badminton and volleyball every Weddesday . Altough I do n't know if I will get the best By the way , I want to learn Japanese during my snmmer vacation . I ` m a studend and I can work only at night . I hope you can help not only correct my grammar mistakes but also develope my arguments . Of course I liked them , all the same , I was getting sick of the coulor gradually , so I asked my husband to paint it white . But it seems to be impossible for me . hahahaha In erementary school , we are taught to protect conformity amongst the people in our class . When I told them what time I started cooking that day , thay were surprised because it was too long and pointed out that I tended to cook time - consuming foods . Basketball , Vallyball , Soft - ball , Tennis , Table Tennis , Soccer and Jump Rope . I played Basketball and Vallyball . A couple of mothes ago , I took a test called TOEIC , which is a Engilsh reding and listining test . When the score was anouced , I was supriesd becouse I got a 930 . I was relly gratifed and I was proud of my score . He is a Japanese coedian . The score is not that satisfactory , but I 'm just really happy that one of the biggest burdens on my sholder finally got offloaded . There was interesting camaign against hunting cheetahs in Africa . This campaign was led by the African ogranization of cheetah , and there were a lot of well - known people . For example , Oprah Winfrey talked about the horrible decrease of the cheetah population for 50 years . Also I paid the organization $ 1000 so I ca n't go to the cinema with you , because I do n't have any money now . But I 'm very pround of myself and its so much better than this new film with Stallone . Today , our laboratory willl have a student from Mexico . Foe example , we can get healthier bodies by physical exercise and improve our blood circument . Playing basketball is good for increasing the height of the body and improving fridndship . and I got your infornation from the internet . These wege pages are for your reference : Giant suhi I always gaze at my PC screen , and I make dicision whether the applications are similar to previous ones . And I hope I will make friands with many people for international exchange : - ) You may think I stayed there verrry short time , Suppose we could only get food that is tasteless or stinky ; we might be able to survive , but we might also find life meaningless since the essance of life is gone . Lucky enough as we are , we do not have to worry about this hypothetic tradgey . For this , I have been practing speaking in English by using a textbook and a CD . come on ! God help those who help themseves . So today , I want find ( or make ) some friends to hlep me with my English By the way , I love Geo of `` Ugly Betty `` and I think `` Jim `` of `` the Ghost Wisper `` is the ideal hasband ! ! We are a lttle tired , so we are taking a break right now . We are wating for an answer now . I feel really good becase I will not go to work tomorrow mornig . I plan to go there later after I have finished reviwe some things at Sanamhoug . I 'm really happy . She teaches me like I paid her money and we plan to study English and chainese together . She is really nice and will teach me Chinese while I plan to help her speak Thai very fust . I really like when she speaks Thai with me . So , on Sunday , we plan to wath a free movie together at Suvimvit 55 road . I like reading books which teach me how to deale with the things in human life . Before I left for the shopping centre , I looked up the collections of my favorite clothing companies online . I started off looking round my favorite clothing shops , but they had nothing in stock that I liked . I purchased them , but in my haste I made the mistake of picking up the wrong color ! ! I will stydy English . Then I tried to add ice but the ice came out so quickly that I received a _ alot more than I wanted . One thing I was suprised about was that the people on Car1 got off at Suidobashi station . It is too difficult to become fluent in a `` no - Enlish `` environment . . . I 'm interesting in seeing how the Japanese govenment handles To achive that , I should study English grammer and increase my vocabulary . I think it helped me regain my health ( get healty ) again . Although I have learned English grammer for six years throughout middle school and high school in Japan , my conversational skills are not enough . I 'm in the lab waiting to assist students who are learning Japanse , but no one has come so far . I have read a few blogs which say that olibe oil makes vanilla ice cream more delicious . Because it cools your body down , you comsume the calories in order to warm your body up again . I only go back to my parents ' home every annum . However , this time , it seems to be fixed easyly . But the computre was down with a blue screen . My roommy , a Japanese , introduced me to this site . I 'm really happy to have known this site and it 's a pleasere to show my ' useless ' diary lol I will take an English conersation class at the office . It will bigin from the 13th of October . I alawys think and worry about my fears . Worrying about wheather I can make it and what should I do if I fail . . . This time , I boght English books . But I 'll try to stady hard . I came across an article on the CNN website last night which enumerated a number of useful sites specially designed & nbsp ; for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm & nbsp ; for learning foreign languages will be sactisfied & nbsp ; on this site , and also I 'll be zealous with people & nbsp ; who need & nbsp ; my help . I answerd , `` I do n't think so . They do n't get holday or days off . I am Korean and I 'm studying English for an enterance test for a university . Then I will go to sleep . I aways sleep late . I love MINISTOP 's chocolaite and vanilla mix Ice cream . Now , my throat feels much better and I do n't have a headche anymore . I have been trying to find a frind for studying ( ? ) Russian - English a long time . The day before yesterday , the president saied , `` Everyone speak English . For example you can say good morning `` in the monrnig meeting . I can speak in English to everybady . Perheps they are impressed by the boy 's deep - rooted loyalties to his teacher but it seems like an effort is made to nip the talented untouchable boy in the bud by the nobles . I walked fourty minutes . So , I started this site , and I also boght a DVD called `` CORE Rythms `` . This DVD has gotten popular in Japan , because a Japanese comedian ( woman ) tried this DVD and she suceeded in losing weight . The DVD itself was not funny , it was just a regular dance excersise video . Especially , my bocubrary is terrible . . . That made us laugh loud since our class is in warm atmosphter . It was especially difficult because each sentense was very long . I spend a lot of time drowing . When I went to a supermarket last night to buy some flozen fishes , I was surprised that there was a difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! I graduated from high school on marth 1st . But I did n't tear a lot during the graduation celemony . The show lasted only a few minture , because the boss was back so soon , I had to stop the music and lhad to stop the dance . It 's been getting wormer and warmer by the day since summer is coming very close ! Today we watched the movie called `` An Inconvinient Truth `` which was made by Al Gore . I played soccor with my friends in the park last Sunday . I visited frends who graduated . There are IT - English courses provided by my company , but they are rare , quite exspensive and all the places are currently taken . Catalonia ( Catalunya ) is now an autonom comunity of Spain with specific caracteristics like its language ( catalan ) , its culture , its gastronomy , etc . compets to get the best score If you belived in me `` If someone belive in you , you belive in the world . If you know good way , pleaze teach me . I really appriciated that , especially my girlfriend . Moreover , we are expected to have a wide range of imformation not only to teach all subjects but also to help students broaden their world . Will they keep me standing until I concide on some issues ? Next week our family is planning to go campping in the forest . Flour contains water , proteins , carbonhydrates , lipids , minerals ( inorganic substance ) and vitamins . By the way , he is a very nive person , as well as being shy sometimes . As I have said in my self - introductioon , I like meeting foreign friends , so I do feel desperately happy to meet or receive any information from them . I have to write an essay on Japanese education for foreign students , and I 'd like to know how all you Japanese lerners really think . Throught I am a leader of my department , I always feel that I 'm lack of confidence . I told somebody , but of course they did n't bileave me . Untill what age did you believe in Santa ? On another note , I bought a grammer 's book . because I do n't like grammer . Those who can not pass the tast will have many problems next semester . That 's the reason I 'm able to learn it more effectly than English and I have more fun with it . I live in taipe now . I lesten to a worker speak about job hunting . I think I have to aim and try to acheve the goal . From now on , I wil try to explain about the basic rules in Japanese . If you need to be plite , you can say `` watashi ha hashirimasu `` . Regaedless of the subject of a sentence , you must not forget to add `` ha `` . If you have some questions , I 'm wiilinng to answer you ! I tried to cook something like that even though I did n't know the vegitables . And then soneone in the Japanese EMI heard the album , and asked me why could n't I write in Japanese ? Internet additon I am addiced to the internet . I spend much time serching for information on the internet too . She and her family camr to Japan for work 21years ago and now , they 've become Japanese citizens . I am very happy to encounter a good teacher , but I always feel that to learn foreigh languages in Japan , an island country , is really difficult . Since I do n't have any chance to talk with foreigher , especially in a counryside like where I live . Sadly , I did n't bring a good camera with me , so I could onlly use my cellphone to take pictures . earthquake in the Tohoku district and there being lots of the victims from it and the tunami , some parks are asking people to refrain from hanami this year . What I thought , though , was that the part time job was unnecessity at the test because there was no examiner who was a native speaker . I promised myseIf to write a diary entry every day since I found this great website , but I already failed to stick to my word . I was going to write this last night , but the temptation of chatting with my friend was so powerful even though there was nothing beneficail for me ( it was just time - killing ) . finally , I went to bed at three am this morning . what 's worse is that I cound n't go to my class that started at 9 o ' clock . Saury is in seazon now . But actualy , it is an old American car . There have been rumores of match - fixing . However , the rumores has never been proven true . The Japan Sumo Association has decided to cancelle the next sumo tournament . Today , pastors and leaders from Taowan , Uganda and Singapore came to our church . ( Someone said that this sentenience is the worst opening in the world ) I have just graduated from my university , in which my major was computer science . After th coffee hour , he had planed to play soccer with his friends , so I joined them . - The North - East direction is considered to be a source of bad unluck . I wonder when my tootchach will get better I am writing this entry on my journal at McDonald 's , the famous worldwide humbarger chain . in all the stores in Japan I can use my PC with the broadbank network when I come and sit at McDonalds . But in reality I can use the internet under the broadbank connection of 20Megabite / sec over a cup of coffee , which costs only 120 yen here in Japan . I think I should go to the hospital , but recieving tretment in a hospital abroad is a little bit scary for me . I was wating for my friend in front of the school . Kimch has a strong smell . The husband is a native canndaian and his wife is a Filipina . I hate complicated movies because I ca n't understand the story as soon as I concentlated on the subtitles . Jane is tired of dealing with customer omplaints and wishes that she could do other work . I 'm a Cresso Osaka supoter . Shinji Kagawa was a menber of this team . Now he blong to Dortmunt in Germany . Making freid is absolutely another gole for me . I bought it , and of couse I bought a battery too . Would you explain thse sentences below ? I was happy to learn that there is such a good restraunt nearby ! We had a big humburger . To take the side of Superman is very easy . He can fly and shoot rays from his eyes . He has super strenght and incredible endurance . I decided to take the Graduate exam instand of finding a job . Ithought June has cool temperatures and cold rain . words , spelling , grammer , and pronunciation . Since Australia used to be aBritishcolony English in Australia is besed on British English . I 'm going to write the text `` End N `` at the lower - right corner of the illustrarion . She is one of the most famouse singers in Japan . One of them adores Ayu and she gose to Ayu 's concerts all the time ! ! ( Of course , the contents of the concerts were the same . ) It meant that she paid about fouty - thousand yen only for this time . . . I do not see Pepsi in neighborhood supermarkets or convinience stores . Yesterday night , I had an arguement with my 14 year old little brother who is in juniore high school . After finishing up the friyers , I will hand them out at the station . Needless to say , they ate it greedly and quickly . I think they are the cutest of all animls Oh , I wish I saw many beatiful stars when out in Mother Nature . If you know English and want someone to correct your Japanese sentences , please be frindes with me ! ! I want many friends to help me improve my skill . The Moring was not so bad because the teacher was not so tired and had a sense of self - composure . As the techer felt tired , she became nervous . As kids were scoled , they became defiant . There are many fravor : salmon , cod roe , sea chiken and so on . Suddenaly , it started raining and I had to go home T T I prefer Chinese , but I do n't want to lose my Japanese songs and I do n't have enought time to expose myself to two languages , the former for the fun of the learning experience and the latter for the pleasure of the songs of my childhood . I want to see more color butterflies . So people in Tokyo buy eberything in the shops and I can not buy water , rice or paper . Yesterday , I went to Restrant Hajime for lunch with my girlfriend . My favarite dish was loasted lamb . It was so cool that we felt very comfatable . Let 's plant good seeds in our hearts togerther . [ Please plant good seede in the garden of your heart and you 'll be happy for sure even if someone doubts it ] . Plaese tell me your thoughts about this . My headset was damged by someone I know , but I did n't want to directly blame her ( for this incident ) . After that , I baceme worried about my friends who are living in the area near the Tohoku area , the worst - hit area . One of my friend said that she is suffering from afterquakes and blackouts . She told me that she is very scared because afterquakes occur from time to time . They even use the wrong gammar ( in lessons ) . I really want to study English . Well , hope you can hellp me ! ~ My husband is goot at working with wood . A couple of days ago I joined a team , that was created , to have University students translater English into Korean . Our team 's slogun is to be in the middle of the world that is emphsizing indepence and creativty . I went to the building near the Pusan sity subway station to attend OT . So my primary problem is pnunciation . they lost to the Orland Magic . ( ; _ ; ) It was a little groce , but I liked it because its plot was easy to understand . The only way to make me happier is to find someone esle . Every year , I gave hime chocolates . I cought a cold ! ( I evaluatde this cooling system - It is weak . ) I went to the department store on New Year 's Eve to buy some ingrediants . On the morning of New Year 's Day , many people go to a temple or a shrine to pray to achive their goal in that year even if they do n't have any religion . The story is mainly a piratie adventure , and the characters also have special abilities that are similer to Naruto 's Ninjutu . And , this drama satisfies me with the fantastic graphics and unbelievably suprising plot lines . I normaly play I have a habbit of checking the back of my hair a lot . It is funny that even thoght I know my hair ca n't grow that fast in one day , I check it anyway . I wanted to eat someting for lunch , so I went to the kichin . I made macaroni and cheese yesterday , so I desided to eat that . I looked for it everywhere in the frige , but my lunch was n't there . Then , my hostfather came to the kichin joyfully and began to talk . I wnat to solve this situation . About two months ago in the US , I saw a free traial service on a cosmetic company 's website . I only started lerning English recently . I 'd like to speak fluently , but it 's quite difficult for me now . I recomend it . One of my firends went to Myanmar as a vlunteer with her circle members . I 'm goind to introduce some of the goods later . It 's too complecated > < I wish someone could teach me how to use it > < aah Anyways , I tought one of my dog a new trick yesterday . In Korea , there are four seasons which are cearly different from each other . In the evening the weather was good so we palyed badminton for a long time . When I got it , at first , I suffered from tremedous pain for 2 days . Many things have happend around me during that time . That 's why I 'm writting a diary at this time . . . It 's 6am in Japan now . . . This earthquake happend when I was traveling in Europe . I 've never seen the forigners coming to sightsee in Tokyo after I came back . All paper towels at the public restroom are a waste of resorces , so people should bring their own hankershieves to dry their hands . I answerd , `` Actually , I dye my hair a little lighter . I 'm going to wirte a jorunal in English everyday . Even though I visited Vancouver for 6 months to improve my English , my Enlish sucks . . . . Anyway , China 's nationtal Day is coming , and we will have an eight day holiday all over China ! That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I want to be good at using the compurter . `` Japanese scientific thechniques are no . 1 in the world . `` An unforgettable moive Unfortunately , I 'll likely to have to sell my motorcycle because I 'm going to study abroad in Victria , Canada this September . The Green revolution has broght about great benefits for humankind as a whole . After he successed in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . The core concept of this theory is based on reversing the ideas of drawing a pecture . Untill the last moment the mother kept hugging and protected her However , I made a stpid mistake at the bar . I though it was a straw , so I tried to dring using it , but the dring did n't come up to my mouth . I was so embaressed lol What is diffarence bitween a mouse and a rat ? It felt ( so ) unnatutral . I want to make a bisiness card and I 'm thinking about my catch phrase . I wrote it 4 times on paper and looked at the sentence before correcting diferent words . I find out about me when I write the senten like the diary . I feel happy and I wait for someone to correct it before I check it . I feel exsiting and I think today someone will help me correct it . Futon is a bedclothe . It is obvios that I am easy to make happy . I know that it sometimes seems meature , but candies are my favorite , so they obsolutly can make me happy . do my best , even though I could not answer all the quetions perfectly . You know what they say : `` Winners never quit ; Quiters never win ! `` And my mum , she is generouse and linient enough to make me brown bag lunches when I need them . She sutisfies my familie 's culinary taste . Whoes is this car ? Whoes car is this ? They have three rooms decolated with many accessories that are hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . I have to read some scientific papers by tommorrow . First of all , your families are alwals near you . This means that you can learn what you want to know anytime you want to from your parents , brothers or sisters . When children are troubled by their relationships with their friends at school or solving thier homework , parents usually tell their children friendlly what to do for problems , and what they teach will remain in children 's memories forever . In general , the things pepeople learn when they are little are hard to forget , and sometimes are indispensable teching for their life . Agemanju is very derisious . One of my co - workers is Philipino and we talk in English although I am Korean and she is Philipino . And when I work with foreiner teachers , I feel the cultural differences more . I swim at gim once a week but my output of energy is smaller than my imput ( eating ) . At that time , I beleaved her . We held a parewell party for him at an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the most famouse Japanese dishes in the world . ) the most important thing to remember is one that I did n't spent the time being with my familly although I 'm the only daughter . I practiced prnounciation this morning with my teacher over the internet . But today I enjoied my lesson because I did my homework . I want my own domain and I can pay for someone to creat my homepage . Wirting in english is little bit challenging for me . He said , `` I was raised in Japan untill I was 14 yeras old and then moved to Portugal due to my parents ' work , and now I 've been living in England for almost 3 years . `` In August 2010 , I left Japan for South Korea to study economics , and Korean culuture and language . I could n't say anythig in reply because I could not speak Korean but my Western friends could . This is really helpful for foreiners . I check meanings and example stences , but it does n't always work well . Maybe I will be a tour guide , but not sure . Maybe I will just ues it for my own travel because I could get free access to some scenic areas with it . These grown ripe are very sweety and tasty . Her grandparents are comming over for the festival too , I wonder if an school athletic festival is commonly held in other countires Summer vacation will be over this mounth . I was lazy about sutuding English . But he only talk to me for about 10 min , when he waited for the meal in a restrant or only if he had spare time . His house maid said his mother did not wish him to get married , because they needed his saraly for the whole family . When I was in his room for a few days a year , I was dissapointed with his behaviors ; watching TV , checking his phone , no talking . I want to spend my time with my BF and have dinner togather . In particulaly , after his anger surprisingly hurt me . I had a BF , but I can not talk , called up , share any ideas , no oppotunity to go out often and have a temper . I 'm looking forward to receave it ! ! I will hang out Ikebukuro and eat some nice food . The correct sentence is : `` Wolud you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutly do n't want to make mistake like this ! However , this situation symboled the kind of distorted affection and shallow nature some people have , called ' Naebi - geonsung ' , boiling fast and then getting cold just as quickly . I am hurngry I prefer low sugar to high sugar and I prefer fruite cakes to vesitable cakes . Give me news of you regulary and also news of your mom , your dad , and your brothers and sisters . At first , my friends did n't want to watch it but I reccomend it because this movie is made by Disney . I live in a rental house , so I called the onner . I can wash my fase comfortably becouse the sink is new ! what can I do abt it ? Maybe she had gotten infulenza . All actyvities were great , especially The Hallywood ( Hollywood ? ) Ride ( this is a roller coaster ) and Spider - Man The Ride . While in the US , I went to the starbacks . Still , I go to starbacks becasuse I can spend a longer time studying there than at other cafes . I am working in a Group Home , where old people who suffer dimentia related deseases live , and we take care of them . I think I should explain my situation first . I have been living in Australia for a year and 9 months in order to study English , and have been living with them for about a year . They are really nice friends so I want them to see my home town where I was born . The Zew Zealand friend also took me to see her country this past January . I really want them enjoy this Japan tour , and it will be a good chance to be like a bridge between Western and Japanese people , because one of my dreams in the future is to become a transrater so I will be able to see how good my English skills are . We are going to go to Okayama ( my home town ) , Hiroshima , Osaka , Kyoto , Shizuoka and Tokyo , I ca n't wait to go there : ) At frist , I did n't believe it because I thought it was a joke . I lacked confidence at that time . I talked on Skyp with my router . I woked today . It was a sanny day . But after I entered a university , I realized taht I ca n't speak English as well as I would like . If people eat it , according to the animal expreiment , it causes kindey calculcus and then finally becomes carcinoma . I disagree it , because I think people will not be motivated to do thire work . Thtat will make me more stressed . In our lifetime , about 100 yers , we are supposed to choose only one person to have sex with , but sometimes people try to choose two people at the same time . First , when a couple gets divorsed after 10 years of marrigae . Second , whther a father or mother has a relationship with other man or women while still having a life as a family . However , I have n't recieved any satisfactory replies so far . What I am worring about is the fact that if I ca n't find a internship position this summer in Shanghai , I will have to go back home and stay there all vacation . After that , I 'm going to study English at the ECC schooi . I was only free for a short while to buy vegetables and choclate in the city ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . The event was canseled , due to the over crowding at the race track . The holidays are called Golen Week in Japan . But how can I acept him ? And I look forward to drinking with the teachers becaouse I promised them we would go drinking someday . But , I wanna write my dialy on lanf - 8 as much as I can ! They lable the phonetic symbols beside the Chinese characters . All Chinese students begin to leanr pinyin for at least for 3 months once they start school . I am still thinking about how humans can solve the energy problem themslves . I keep searching the internet for answers but still havv not gotten them . Are you influenced by the economic crisis ? What infuence can you have on your country ? From now on , I have to prepair myself for the up - coming examinations . That was the highst record ever . ( Yesterday I taked about a Manga Cafe . I 'll talk some more about it today . ) I married fourteen years ago , but I do n't live wirth my family . Providing a good educetion for their child is also important though . Besides , think more befor what doing something , The volunteer work is basicaly something like this : if tourists ask how to get to their destinations or particular places , we 'll show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked a lot about work , marrige , siblings , friends , etc . I went to Yoyogi Park for cherry blossom viewing last satruday . I am studing commerce in Melb . I still feel unfamiliar with Melb , Most of the Arabic lands are covered by deserts , therefore the animals in Arabic are very spicial . Of course , I 've never donete blood . All the professors have gone to the conference , I am having a bresk . It said `` expectually small penis . `` Then he laughed so loud at me . Now you know why I can remember this word nmore easily than other words . > _ < After that she is going to do yoka and I am going to go home full . There all people were foriener . Bcause I can catch my teacher 's pronaunseation . I had a bad hedache today . By teaching your knoledge and trying to convey it as simply as possible , you can obtain deeper understanding about your knowledge . I 'm a university student , and I major in Chenese Literatre , One semester of studies in Brussels resulted in unforgetable memories and valuable experiences . Lastly , Brussels is a beatiful city to visit with pictureous places , numerous parks and museums . My most favolite song is `` Lovers Again `` . This song is one of the most difficult songs in te game . I 'm so happy that I have found some friends here ! I like to play games , let 's disscuss it . I 'm really sorry for my friends who are waitng for my pictures . Maybe wikiedia is better than me ! ! I also met my parents and reltives . I like to eat Umeboshi , Mozuku ( like seaweed ) , and fried chikien ! Because I do n't knouw ! However , when my first leg stepped out of my room on the way to complain about this to the hostel office , my cool mature roomate stopped me . `` A true / real man will never be afraid of little insects . `` And he said with a calm voice , `` I used to be biten by insects too , but now they can not harm me any more , coz / because I have already grown a layer of iron skin . `` I think it is a good oppotunity , so I started & nbsp ; my English diary ( it may be weekly or monthly . . . ) Becouse my English class finished on Friday . Prease , would you become my friend ? `` I like that menu , but I have an allegy to curcumber and tomatoes . I fogot to tell the chef to avoid those ingredients . Yes , he startd to feed them , but I have been taking care of them instead of my son . My son is four yeras old , and he is too young to feed the larvals well . As summer is coming , cockroaches appear in the kitch , my room , and everywhere else . As you know well , this is a tarditional tactic of ours . ( `` For us `` is okay also . ) I am writing a diary in English beause I have a few pen pals and I want to improve my English skills . He is the opresident of his company . The race in the Northen America is not good for people in Japan because of time difference . I went to Chinatown in Yokohama on New Year 's Eve and celebrated the new yeare there . It was yummmmy ! Anyway , this is so famous in Japan that banaa used to sell out lol If u are interested in this diet , try it ~ I 've never tried this though ~ ) Our class has Korean , Japenese , and Taiwanese students . They 're good classmates who are stuyding with me . My teacher is Aamerican . Citizen watches Japan can not suuply just the parts . but he is going to be deployed to one of the goverment offices because he got in a car crash several years ago and doctors implanted some metal parts in his left leg . I 've ever seen either but I still belive they exist . Places has indentical features . These last few years , I have come to love the beer , `` Kirin the Preimium Muroka `` . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyricals are cool and their music has a lot of energy Of corce , amime is Ok . The class always gives me stress / stresses me out because I teach students who are preparing for their university enterance examinations . ( It 's very difficult and important for them in Korea ) I played the pianno with my daughter in the concert for the first time yesterday . Are people in modern society losing thire moral values ? Nowadays there is a growing awareness that poeple in modern society are losing thier moral values . Every year , bullying at school occurs and it does n't seem to disapper , rather it 's becoming worse because there are some students who commit suicide after being bullied and the way of bullying is becoming terrible . There are some pople who talk so loudly with thier movile phone in trains or buses , not considering other people around them . Have you seen Avator ? Yes , comics called Manga are part of our culture , there are many managas for adults and Manga is translated all over the world now . I used to read fiction when I was young had a lot of free freetime . I went back to my farher and mother 's house . then she craped her small hands and swayed to the song . Jim Parsons 's Smail is cute . XD Many flights have been canceled . Anyway I had a chande to talk with many people , including a few members who I do n't like . . . I thoght I would be late . When I got to my office , the meeting in the mornig had alredy started . There is not much differents because it 's Asia . confuse : Both of them told me different imformation about nuclear plant so I was confused . compete : 57 succer teams will compete against each other this summer . Recentry , there was a big earthquake in Japan . We appriciate it very much . On the second day we went to an iland near Kota Kinabaru , by boat . We returned to the hotel and had a nup . I asked ` What do you recomend ? ' ' There are many shops , factories , campanies , and even a bank . Then , he worked as a engineer of a printing company and a researcher of a medical labo . Hi , today I bought an electric guiter on an internet - shopping site ! I decided to start guiter so I joined a music club at another colledge . My senior said `` I advise an early start on guiter and you should buy a guiter priced between 70000en to 80000en `` She instructioned me to call her friend who was a professional guiterist . He told me his favor internet - shopping site where he bought his guiter from . And he said , `` I think at first you should try a cheap one and if you think you want to play the guiter more , you should buy a more expensive one . `` I trust his word , because he is very kindful man ( and my mother 's friend ) Will you listen to my music , if I could play guiter very well ? ( haha ) They 're really relly cool pants . They are my dream pants xD and now I will go to my summer hous . Poteto chips However , it can be hassale to wipe it every time . I will be starting work as a computer programer from next April . If I was not able to understand slang , it would be difficult to comunicate with native spekers . Of couase , I know it is important to learn these things . I think something will change in Japan now that spring is comming . It has been a very long time sice I last saw snow . She describes the mental state of women in a vriety of situations in her songs . They cry for a lost love and are dilighted with a new love . this season will be meanful . I 'd like to tell Japanese how foreiner are interested in Japanese . By wathing NHK , I can watch many kinds of programs . Plus , when I listen to English in a similiar - way , I ca n't keep up with the conversation . I heard that some mosquitoes ( 3 ) which inhabit in Australia are really harmhul for Japanese people because they ( 4 ) do n't have immunity for some types of mosquitos . My friend was bitten by poisoness spider and she now ( 8 ) has fever from the venom . Her situation is much ( 9 ) worse than mine . Geez , why dind n't I realise this before ? But I will go there tomorrow anyway . I wo n't care about my anckle : P When I was a kid , I bilieave that rabits lived in the moon , And so , I go to the small kitchen in the office and drink coffe . I appreciate it if you cheack my English or send a message . When I was 14 years old , she came to my houese . A very , very beautiful godess stays in a toilet . That 's why if you clean the toilet everyday you can become beautiful like a godess . Because Stockholm is made up of many islands sorrounded by the Baltic Sea . I am a doctor , specializing in anestheology . So I 'm searching the Inrernet for a long time . I take English coversation lessons online every night . Soon after that , the problem eas solved . My reading teacher tells us that in this final exam we will have a reading exam , a writing exam , a grammer exam and a listening exam . But I have things to do such as the laundry , buying food , making some plans for an exam , studying English and even edting a movie ! Father and mother r . work as teather . USA and Japan will go bunkrupt like the russia economy 1990 I even do n't knoe what I can do for you . Actually , _ I like more kangaroo more than beaf . I atached a picture taken through the window in my house . Tihs is the first time I came here , and I hope I could find friends to By this tool , we can have more opptunity to practise our language ability I think . We can share each other 's cultures and luanguages . I was really suprise and happy for her ! ! Japanease horror movie . Sommer is horror season in Japan . Japannese horror movies are very scary and interesting . I so hated cleaning , espessially washing floors . And I like to rid of uselss things . I must will have to find mysels very embarrassing one day , than there will be no stuff to through away . Sometimes my friens are joking that someday I 'll turn to Monica Geller . ) ) Three years ago I visited Rio de Janeiro , Brazil together with my friend and kher mother . They openned EVERYTHING : bags of souveniors , pouches of cosmetics . . . The Brazilian officer openned her bag and found a pack of umeboshi and was asking her what it was . The officer openned the package . At first , I was saddened , because it gaves me a feeling that she does n't think I am her friend because she always complains that she really wants to meet the other friends . I registered on this site a few minites ago . Recently I attempted playing the guiter for the first time in my whole life . I go to guiter school and have a fun time with my teacher . But I want to play for sameone sometine . I want to enjoy writing my dialy and get to know many people around the world . One of my goals is to improve my English ability so I can comunicate with foreingner . If you underatand my goals , please help me improve my English . Usually , many Japanese spend the GW by going for an overseas trip or goint to their parents ' home . However , I had to go to the driving lisence senter , because my driving lisence was almost overdue . Moreover , the diring lisence senter was so crowded . They overcome their weaknesses throught religion . ' Cause I finished my eassay just now . So I cancle my plan , and instead , played the guitar . . . I decied to have a personal trainer at home . Then I 'll play tennis with my friends , study English , and apply myself to my reserch to graduate from my university . Many Japanse English teacers use college entrance examinations as an excuse for them to stick to the traditional method . Friends is so fuuny ! ! I accidently started watching the North American sitcom `` Friends `` . I ate an eel and he ate curry and rice for lunce . Hi THIS IS MY FIRST ENTRY ON THE WEB , I 'm a studiant of English . In Spain we have a bad sistem to learn idioms . ( It 's not like the anothers countries in the European Union ) , in those countries when you are 18 you can have a normal conversation in 3 or 4 idioms , but in Spain you ca n't talk very well in English and you only can say the numbers 1 - 10 in French . . . hahaha , I should learn as much English as I posible can . I workover overtime today . I enjyoed this trip . I startde to study English yesterday . I 'm vey tired . Also , it was exiciting for me to play with my niece ! I expect it will arrive tommorow . So at 10 o ' clok p . m . tomorrow , I 'll be going to my hometown and maybe , the morning after tomorrow , I 'll have been there . I thoght `` I need to learn English because I want to make a trip to somewhere I would like to tell you about yersterday 's lunch . This sounds more natural First , they did n't separate the non - smorking area from smorking area . In fact my teeth is not so great , since I didi n't know how to brusy my teeth when I was child . It was fun for me and maybe theuy also enjoyed the story . So I said if you really crean your teeth , you wo n't have a bad tooth like me . There are many interesting places though , but it 's really clowded everywhere and rather dirty , and it also makes me very stressed . My co - cowokers all quit their jobs because of depressioinlow . . but it is also very stressfull work . I am stading English now . We did n't feel like sitting in a hot car so we went to there by bycicle . It was a little funny because we rode down a srange road because my boyfriend thought it was too dangerous to go on streets where there are cars . Someone else said , `` a theacher has authority because he can educate people on not only ( academic ) subjects but also ways of life . `` I undestand any situations , they have a different porpose for using the SNS . I know I need to be confident and patient while larning another language . Anyway tomorrow is Fraiday . She is going to have the baby in Octorber . But It 's unbelivable that she is having a baby at such an early age . I do n't have a cavicity , but my teeth are poorly aligined . I have been studying Eglish for many years but I am not yet good at writting English . To improve my writting English , I joined Lang - 8 today . This summer , I had an opportunity to contact with an African - americanese , but I could not understand what he was saying . I went to a ritzzy restaurant . I always nibble food like pizza , hamburgers and spagetti . A Jananese novel I think that it is too difficult for forigner to read . She said , `` Outside it 's very cold ; would you like to borrow your uncle 's ssocks ? `` Of course , it 's a very common operation but when it 's happening to me , it 's much more dramatical . Today is Augst third . When I finished studying at my cram I was happy beacause it has n't rained in Taiwan for two or three months . do to attratct the man . In Japanese culuture , people clean their house at the end of the year . I want to improve my inglish . However , in the midlle of ( the ) development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` are becomming popular and more and more people are interested in recording their activities and making their lives better with ideas and tools . Nomally , y $ 20 a week for each person was the regular price . Everyone who registerd on this site would like to practice , and they need people to correct their writing skill . Since I am not an English native speaker who is familiar with writting skill . So I concluded that my learning process is best experienced from other peoples mistike , especially the best writer and a brillient helper . Yestuerday , I went to an Onsen near my home . I have nothig elseto do so I powered on my laptop and amchecking thelang - 8 site now . Different from our Chinese TV series , plots of American ones are more intriguing , which are containing more imformation . So I choose this picture which was taken at Fushimi Inari Shrine which is famous for having thounds of Torii in Kyoto 2010 . 12 . 31 . So today we 'll go there togerter . I hope our convasation will be fine . First of all , regardress of living in a grobal world , we still can not stop wars and many countries have illegal weapons . Although the human lifespan is longer than ever before , we still have to cambat diseases that are lethal to humans and animals . Maybe some news from offical not true . I was very perplexd but I managed to explain my innocence . It happned at 4 o ' clock . I ampleased when I can hearthem singin . However , I was just lazy tempolaly . Everything that I do is recorded and is going to acmulate in my body . I studied English at scholl 6 years ago and now I 'm trying to learn it again on my own . He has been a fugitived for two and a half years and was hiding in my Is this sentence grammartical ? I felt like a salesperson visitting the door . I wish I could have these wisdom teeth pulled out , though romours say that it would hurt the nerves and made one stupid . There are a lot of tourists frou various countries in Japan . Besides , on Oct . 15th , our college will have its celebration of its 80th anniversary . I 'm very lucky I can witniss this important event , and I 'm also very honored to be a volunteer for the anniversary ! I think that it ` s important to study hard and have hard time ( ? ) a lot when we ` re yong . Besides , our team virtually does n't have a player to replace my possition . It was dilicious . Last week I got a fwe orders . I feel better now , and I can forgget ( about ) it because I wrote my complaint here . What a beautiful and wounderful movie / film it is . On Friday , I went to my friend 's biethday party at Shevron Renaissance . After that I went to `` The fiddelers `` . My frist English diary has not been corrected , I do not know why not . Since I have bad stiff shoulders , I wellcom the campaign that we don ' t After three hours of shimmmering , however , it all came together . = It was okay . We do n't have oppotunities to express ourselves in English . I can not explain the reason , perhaps Sengawa has a loungy atmosphere . So , I would like to make some junk entries here which are comletely meaningless and trash and from which I ca n't expect any positive comments or corrections . Maybe because my summer holiday is coming , and there is only one exam which will be helding ten days is waiting for me . It was so palacable that I did not notice when I became really full . Eating slowly makes the feeling of hunger dissappear more quickly I did not abide by the rule . Instead , I just pigged out and now I feel stuffed and somewhat drowzy . Recently , I 've been busy , so I coud n't write a diary in English . So , I entryed tonight . For the first 3 months , I had been very busy and had not been undersleeping . It 's because I want to improve my pronouceation . But I do n't know if my poronounciation is OK , or not . When I went to a neighbor beef barbecue restaurant , which has many students because of how cheap it is , two of my friends and I ate raw meat . My friends , not I , had stomachaches . I hope I can return your help in the furture . Today , I read that Japanese law now says a Newclear operator has to keep the general public radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that the general public radiation exposure has to be keepen below 1mSv / year . In spite of that , Japanese govenment said that it is OK to expose radiation upto 20mSv / year . I think this is too high , especially for cildren since they are more sensitive to exposure than adults . Can you tell me the differance between `` can `` and `` be able to `` ? What is they differance in meaning ? I brough her to a hospital , so that 's why I 'm late the class `` . My husband , mathe - in - low , son , doughter and me . I 'm a Japanese girl that 's learning English at the Kansai Gaidai univercity . The black car started to move again when the traffic light chaned to green When we crossed the brigdge , there was a big intersection . The traffic light was ( showing ) blue . If I had been cought , I would have been killed or beaten up by them . Macaron is a French sweets . My doughter is really looking forward to seeing the house of wax Today 's manu is tsuna sandwitch and milk tea . I look foward in going to the cafe every Tuesday . Two or three years ago , I tried to learn English because it was needed for my job to communicate with my collegue abroad . Last evening , I got insomnia and could n't fall sleep untill 3 : 00 am . All kinds of things came to my mind : work , study , life , famillay , friends and so on . It 's difficult for me to hear speaking at ordinarly speed . I feel very unconfertable today . From last week , about ten people from Los Angels have been staying at her chuch . recentry , there was a chiristmas . but I had a speciall day on 12 / 26 . when I went to her house , her Hong Kong friend Tifanny was there . Then , I was very nurbus . cause it was the first time I 've talk wirh a native speaker of English . the year 2010 is almost finnish . the picture is of my breakfirst I ate . The doctor told me that the cause of the symtoms was my warped pelvis and At first I had planned to travell with my friends , but at the last minute I pulled out . But anyway , there was still a pain in my soulder . . . But I think that my writing is not good enough because I have no praktice . My Budy , Koflach KC725 Racing Comp , because the inner was worn out , had gotten hard for me to ski with for a full day . I woke upat 6 o ' clock this morning , then I got dressed and I had to hurry , because my friend and I were going to the beach , but he was late lateand I ended up ( plus idiomatique ) waiting for him for a few minutes . You know tha Vietnam War broke out in the late 20th century . I think that America would n't have fought against Iraq and Afghanistan this time , if Americans had learned something important from thier failures . I saw it in a theator yeasterday . I 'm so crumsy that it still takes me at least 10 minutes to open a can . I am a memder of soccer club . But ther is some fun in my school life . We will conduct reseach for about one year , and our goal is to create a similar proposal for Japanese open innovation . We are now learning about open inovation in Europe , US and Asia as compared to / with Japan . The next day , I took my computer to another specialist , he identfy the cause quickly . I suggest you to employ someone more skilled and with a better oarsonality in order not to cause your customers to lose their time like me . I said it is nice we laern about other countries . I like my country but I also like anoter countries . One of my friend asked me before whether you like other countires because you do n't like Japan because most Japanese that go overseas becasue they do n't like Japan . It cause of my countr 's system , I feel . And I know that I am courious about all things , and it dones n't matter whether it is in my country or some other . I was happy becasue we talk about each other . And I touched a humster . I could n't use all of lang - 8 's functions before by iPad , but apparently now I can use all of the functions byt iPad . Woud you mind telling me how to get it at the discount price that your invitation letter said . This evenning , when I loaded on the news web 163 . He was only 48 years old . He was very excellent that almost every Chinese man knew him through his news report programm . There are more diseases from pollution of our envirenment , so we should protect our surroundings in every day life , so we can enjoy our beautiful lives . This month I have written 48 jounals . Can Japan national team wint the game ? The Announcemet said that some people might have a heart shock because around the top of some attractions , the temperature was too low . I am going write about a person who is not only respected , but also sccesfful . I hane learned english for more than seven years now . My momther recomended that I buy a cheaper one , but I wanted to buy an umbrella with cute characters . I 'm looking forward very much to sees my firends and family : ) Though I ca n't help worring about places that have been affected by the earthquake , I 'm going to go out more frequently . I feel reflesh . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sence of . Becouse , the big earthquake came to Japan in March . . Here , I am studying EE ( electrial engineering ) in graduate school . This sounds boring and difficult to others . I got ta go , so I hope you correct my Eglish writing and that I can be your friend . I found an interesting article in a magajine . Does it Make Sence ? When I hear someone say `` Does it make sence ? `` , I have a feeling that the peron is either getting impatient or just being rude . However , I am not a native speaker . My opionion is not for certain . and in one of episodes , I heard the phrase , `` getting back on the hores `` . Can anyone explain what `` getting back on the hores `` means ? Are thery any differences between them ? Zousui is a japanease risotte which is good for hangovers . My wife 's zousui contains sliced japanease rudish which are supposed to be good for you when you are feeling sick . Speaking of zousui , Japanease sometimes eat zousui or `` Otyazuke `` ( rice immersed in Japanease tea ) at the end of drinking . However it is probably a strange custom for Western people . I had an experience being rejected with a chuckle by an American and a German when I proposed that they have zousui when they finished drinking in Izakaya ( a Japanease restaurant and bar ) . `` Let It Be `` was released after * album but Abbey road was thier last album , because they recorded it later . It is usefull to me because of the English subtitles and it 's free to watch . I am suprised by them . It seems taht I will have to watch the whole episod each time . Indeed , sushi tastes good if the shef is nice and tastes terrible if the shef is not nice . But traditional Japanese cuisine is different from sushi , tempra etc . There are a lot of restrant are in Kyoto . But you can find good Japanese cuisine restrants in Tokyo and Nagoya , too . Becouse , I enterd passward wrong three times . In Japan Japan TABACCO INC which prodece and sell tobacco is very influential in many areas , for example the media , the Federation of Economic Organizations and politics . The tax on cigarettes is extraordinaly low in Japan . However many politicians opposed it and the policy was abandaned . There is a persone who is against increasing the price of cigarretes in the medical field too . He always makes comments in the media like `` what is the scientific proof that smoking is dangerous to our health ? `` `` Can you proove the relativitaton between smoking and health ? `` `` Of course I dont need to say anything about passive smoking `` It is abvious that smoking is bad for our health in Epidemiology , but he insists that there is no perfect explanation , so we mustnt impose a special tax and exclud smokers I got a small gift from an English magagine company today . Some Japanese are getting crazy about this , even they do n't drink that much wine regulary . Almost all the people there felt the red wine had a rasberry or cassis flavor . The pregnant was sudden , she said `` I 'm relly happy , I 've never felt like this before . `` Many of my co - woker helped me learn the new system . I went to the wax musium . The musium was brilliant . When they looked closely at the airplains , my elder daughter was frightened of the sounds of takeoffs and landings . My younger daughter also began to run a race against an airplain . Oh my God , I 'm crazy , frist I do n't love him , second I think he ca n't finish with her , but he does n't listen to me . I do n't know what to do . I am looking forword to the dance class on Friday Afterwards I was biten by one of them and got hurted . After that , I went to the hairdressor 's . Oh , my sidelocks went away : D They weok for our subsidiary in America , but I had not met them before . When they went back to Amerika , They told me ' Learn to speak English and come to America ! ! ' So , waht do you think about it ? Last Thirsday I got a homework assignment to write an article about a famous sports person using enphasising phrases . and this is the first step to learing English ! ! I have never stuied English seriously before , but I believe that my English will improve if I study hard . The snow is beautifull , but it 's so cold : ( But I am still looking forword to going to Taiwan . unfortunatly it was very windy and cloudy . Kim Yuna 's performance was excelent ! ! If I spoke more English , I could make many foreigers friends . So we loughed . Of course , money is very important for living in society , yet , we sould not forget that this is an illusion made by human beings , much like laws and countries . My niece who is 5 years old came to my house and gave me a suvenior yesterday . Tweney minutes later , I found that my stomach was making some sounds . I couldn n't concentrate on the exam . Tuna is reallygood , so I hope thatbreeding tuna will be achived in the near future for tuna loversall over the world . He said to CNN that `` I can do anything , I can be snything `` I often watch several sprots games after I finish exercising and studying . It 's a live meeing by phone . There were people who work in ther countries participating in the conference meeting . Others are hunging wind - bells and banboo blinds as devices to create that `` cooler feeling `` for getting relief from the summer heat . In Japan , we can watche it on Sundays , so I am in the habitof watching it . Creating a vitual life that / which correlates with your destination is the best way to get it . When I get tired of studing , I can take the stiffness out of my face . Today , I am joining the big familiy ( lang - 8 ) I am a chinese girl . I want to make good freinds here . I 'm a bigginer learner of English . I read an English newpaper about art in the morning . I tried to memorize new grammer ( grammar ) for the next lesson . Today I met a forein couple . I heard that there are a few forein people who do n't eat raw fish . The weman was almost not eating raw fish . Recently I have had a keen interest in taking photograh again . I am sitting and enjoying the view from the wimdown of the hotel and I feel a bit regret because I am going to leave Nha Trang tomorow . So please seach for me ! ! ! ! ! ! Some people say it is due to the influence of electromagic waves . I could 't eat it 1 year ago , but now I am familiar with the spicy currry . On the way to there , I found the big rainbow acrossing a river . And If I have Chinese freinds , I might come to like Chinese as an individuals at least . I beilive her rival , Asada Mao will do better next time , ^ ^ althogh in today 's game , she made some mistakes . . If you want to say `` of coffee `` , then it would be qfwatan ( `` tan `` is fatha plus tanween ) . When I was busy , I just wantted to have free time , I have an appointment with my firends tomorrow Good moring everyone . I go see my hiephew , who had invited me . The first time I was in England was 4 years ago . I liked the indie rock music of the UK , it made me want to stady English . I heted English , but now I like English ! Rakugo is one of the Japanese traditional art of storytelleing . Our oldest son went to Austraria this summer for a week . Fortunatery ( fortunately ) Grace got her space in the car . My husband set up the hummmock between the trees for the children . First two years , it was very hard like I 've never experieced . I hope it will be good appotunity to get my motivation up . In my prediction , Hideo Higashikokubaru has a slight advantage over the others because of his publicity and his achievements as the former governor of the Miyazaki prefecutre . When it comes to the types of damege done to crops , in Australia `` fire `` was the greatest After that , we went to a boldering gym . Boldering is a sport in which you attempt to climb a wall about 5m high . We practiced boldering for about 2 hours . First of all , I have to thake `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me . It was really helpful . This morning , I suddnary wante to make a Spanish omlet . I really missed her Spanish omlet , so I desided to make it myself . Instad of potatoes , I put tometoes into the omlet . I recomend you try it ehn you make an omlet . I am turning into a lonly person . When I was young , I fell in love with American - style junk food shuch as pizza and hamburgers . At frist I thought that is like English languge but not really , It is for people who can not hear so they converse through signing . good nign from Thailand now . I went to a chili festival in Frementle today . I hear that the best way to studying English ( especialy reading ) is to start by reading very easy / simple stories . I 'm sure this is n't my general level Enlish because it only measured my writting skills . I invited two young ladies to come to my hometowun , Kamakura . The first video clip was taken in Torres del Paine , a place near Chili . This place is coincidently located in South America like the the place I introduced just prior to this . Since I did n't answer with the number of the apparment , he asked me again ( a bit louder now ) where I was going . She sent me an e - mail , informingme how she 's been geeting along . During this time - space travel he found his first love , Livia Beale starring Moon Bloodgood , who left him without saying goodbay 8 years ago and disappeared since then . I dicided to go back to Japan . I 'm goint to turky ! I 'm going to Turky with my custmers tomorrow . I met with my frined 's friend last night . Vasicaly , this is the first time I have spoken with regular people . I will keep on making an effort to write the English diary ong Lang - 8 . They should control theirselves although there 's the word ' youthful mistake ' . avoid : We should avoid direct conflict when we desagree . delay : The flight from Tiwan to Japan was delayed because a Tiphoon was approching . interfere : Some kids say that they ( ? ) do n't want their parents to interfere with them , but actually kids ca n't live withought their interference . Answering my own question : inteview style Nara is one of Japan 's more traditional prefectures and is famouse for its deer . I have just joined this site and I do n't understamd how to do corrections , not comments . I tried to correcte some people who want to learn Russian , but I could only leave comments . And She reccomended me to do it . But the classese will start the day after tomorrow ! I have been so deppressed and sad because he was leaving . he did n't want to spend four days with me before he left just because he is tired of seeing me deppressed . I 'm going to Glastonbury Festival from Wendesday . Or I want to go backpacking aroud Europe . Autumn is just aroud the corner . Everbody at the circuit immediately regarded him as being special . Only optimyzing programs so that they use the CPU or multi - core CPU more efficiently makes me happy . And my teatcher ca n't do anything because it is my friends ' last year of high school lol ! So I 'm happy because the holydays are coming and I can get out evryday with my friends = D I want to go to Ameirca , Britain , and Australia . I would be grateful if you could correct all my mistaces . I am studying at the gimnasium No . 32 . Minsa is very well known . This beautiful woman fabric can be found in gift shops throught Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the poeple , their families and the village . My friend said his relative who is fifteen years old is going astray resently . those are very expencive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alchole is from double to triple price of Japan one . Additionally , the goverment manages them strongly and if they go wrong once , it 's very difficult to recover their carrer . They can buy cigarettes and alchole , and also drug . We wateched a comical movie and drank together . Recentlly , on Sartuday and Sunday , I helped out at the preliminary games of a senior high school baseball tournament . In paticular , I activate the electric scoreboad whenever the teams get a strike , ball , out , etc . I also keep the score . It 's very fun because I love baseball so much ! ! ! I am taking TOEIC test , which is a famous English test , next weekend . This hotel is managed by a nice weman , she is about fifty years old and she treats us as if we are her own daugters . What I learned from today 's lesson is that I have little vocabulary , so I dicided to do some difficult paper work . There are four different plastic bottoles and a can of green tea . If not , you shoud go there for a day trip from Budapest , otherwise you will be obliged to stay at pricey hotel . I cought a cold . As you can see , they were almost naked with the exception of a Fundoshi . It is a type of Japanese traditional men 's underware ; I do n't have my own , unfortunately . Sometimes , though , it is really difficlut for us to keep our motivation high to do it for a long time . Altough , It was so chilly , I felt very good . I thought that art and business are unrealative . ( or unrealatide field , right ? She also is intersted in social welfare and social irregularites . I do n't agree , which one is right ? ) Altough , no doubt about that he is much more famous than she . Becides that , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street restrant ^ ^ Nontheless , there are many buildings here that are several hundred years old In software business , English is one of the most important languages because almost all majar software is created by the USA . Technical documents are writen in English . The time for enjoyning the blooming flowers this summer was so short ; I felt sad . It is Kansai - dealect . Plese help me with my English . I had a goot time with the little cute girls . The TV program is going to be on until 0 : 55 a . m , therefore I 'll have set it to telerecording ! I was going back to Tokyo form Izu on Sunday but I could n't because of tunami forecast caused by Chile 's earthquake . Railroad campany decided to stop all their trains until 5 pm on Sunday . Many news sites provide us with vioce files and scripts of the everyday news . Nevertheless , some companies still take advantage of the Japanse with ' English complex ' to advertise suspicious items . When I see a sentence or a word , I can remeber the meaning of it . The king said to one of his sarvants if we bring one day from Janually ? `` Janually is an auspicious manth . from Feburually ? `` All children have dreame . But I think a lot of college students do n't have dreame anymore . I bougt some English movies . I do n't know what I sholud do . I thought I had to spend time at McDonald 's or a place that is open for twenty four hours like Karaoke box , but luckily I found a private room at a net cafe even though rooms at the net cafe do n't have any locks and it 's a little diffcult to sleep without thinking about security . I had a banquet today in Japanese restrant . Probably , the pictuer makes me who I am . I believe my dream will come ture . But now , I noticed that I 'll be having my presentation tommorow . When I was young , I read through this comis . I am happy today , I can spend time checking e - mail and reading English books . I can write English too . Tomorrow I must arrang a document for the employees in my company I have a job far from my house so I must feel tired every day when I get here . Before I go to the company I cook food to eat there . I ca n't cook a lot , just omlet . I must read books befor I sleep today After watching it , I bacame positive , and I think It is important to do n't be afraid of anything . Her director recommaned her to quit because he thought that her work was not important and that the other staff could do it instead of her . I have a boyfriend who is younger than me . He is 6 years yanger than me . I was in love with him a lot in the beginning 3 months but now I am confused whether I love him or not ? We have been togehter for 7 months and we stay with each other all day . Recentely , I have had a problem with my neck after I hurt it 2 weeks ago . It is very usuful and makes it easy to write English diaries on the train . I want to become a translater especially of the movies . It will be so hard wrok because words that translater can use in a line is specified by the rule of translation . I do n't know how long I will spend time , but I want to become a translater Well , I 'm going to buy some ingreadient for our lunch after this post . In this country , foreigners ca n't buy flats except condoiniums which are super expensive . But there are many foreingers in Singapore , and accordeing to some websites , 45 % of people in Singapore are foreingers . In Japan foreingers still can rent rooms from real estate companies . It 's defenitely because many people want to live in Singapore for the rest of their lives . I know that English is supose to be people from England . Is this correcte ? Learning a lunguage takes / requires patience , motivation , and opportuinities to use it . The mouse ' name is Chu . I creatived him . He can fly because he is a supermouse . He knows he is speciall . They should have considered thier plan more carefully . I had a vaccination against flu today so that I wo n't catch the flu when I take the entrance exams for univercity . I actuallu like having an injection , but it hurt much more than previous ones I 'd had : - ( I have to have it again next month . . . ) Also , I want to know which Japanese grammer I should introducefirst when I teach survival level Japanese to my foreign friends Today I went to a Ykitori restaurant with my family . coated with a sweet soy - based soysauce called Teriyaki Sauce . Do you I can gurantee there are no young Japanese people who do n't know this song I read a few peges , it is very interesting ! I 'm looking foword to continue reading . My recent waorries are that it is too hot in Japan , and my back is aching . . . . . . He looked embrarrassed because I did n't get angry before . `` The Academi consists of many departments : The Academy also includes / There is also the Institute of / for Advocacy and Municipal Law , and the unititute of European Law . Professional educators * who have Doctoral and Canditate Degrees give lectures and organize tutorials . * more formal ( The ) / Graduates work as officals in central and executive bodies of power . Some graduets later / eventually become judes , prosecutorrs , and lawyers . I was amazed by how realistically the auther described the thoughts and actions of the main character . What 's Pirete English ? When I was trying to chenge the language from Japanese to English on Facebook , I found some other `` English `` es there . What I saw on the screen was really unfamilier English for me . In Japan , customers always come first , so we have to treat custmers like a god , so that kind of thing ca n't happen . But I 'm sure many people are atressed out and really want to relieve their stress , so I also think he is a hero ! ! Other members did n't want to dress up as seafood but nobady stopped him . Before I passed them my clothes , I throughly checked in my pockets , and I found about 60 dollars . Children could carry out experimentations . Yagyu pays for other reguler customers to eat food and drink alcohol . Since then , he has n't liked to drink and thinks that his vice is drinking alchol . They like to cook with suger . Sometimes their dishes taste a little strange . And I must mention the terrible traffic , Bangkok has the worst transport system I konw . For cities other than Bangkok , the situation is much better . Other cities are queit and beautiful . Time is useful and life is beautiful . Someone told me that and I beleaved it , Although the weather was hot , I feld merry . Because one of my French friends said that she will go back to Frence soon , so she asked me if I can take a leave and go to Taipei with her . After I filed for a leave , she told me that she needed to go back to Frence earlier . I felt Ireally happy and sad . These days I am busy because I have a lof of work to do . Her American jokes make feel happy and I think it is the defference between American jokes and Japanese jokes . We visited almost every city in Holand , but by far the most beautifful was Amsterdam . Now we 've gained more experience , I would like to travel again some more . Today I helped a friend with work from 5 PM unitl 8 AM this morning . in my corntry you can easily buy the `` fake `` thing . I took a pictrue . they were my favourite cigarretes . ( I do n't smoke anymore . ) They were `` run out of , `` `` put off , `` `` put up wih , `` and `` put up , `` but since I did n't know their meanings , I could n't make sentences . Yesteday we had a hanami patry , it means a ' cherry blossom viewing party ' in Japanese . Most of the partisipants of the party were working everyday on weekdays , so ( naturally ) they wanted to sleep on weekends . We shraed the only blanket and drank lots of whisky to endur the cold . We often hear that foreign people living in Japan are suprised by the Japanese train system . Today , I received a phone call from my family , bceause of the big erathquake New Zealand had . I found Lang - 8 to be interesting and very helpul to improve my English skills . I was very exicted about the after party on a boat . So today I called the Apple suport center . I like to read books . If it 's literature I can get into the story , if it 's society books , they can sugest to me ways to benefit not only myself but also everyone else . But today , I just studied English . My neme is Shogo , graduated from Hiroshima univercity . I 'm good at creating new plans and unipue ideas . When I become a working member of the society , I want to make full use of my creativity and recieve others ' opinions to make things better . weil es vielen Gegenden gibt , wo es selten regnet , und wo die Menschen immer an / unter Wassermangel leiden . The quality , the art , the charactors ' emotion . I want my writing avility to improve so badly . I expact / hope that my English and Japanese will improve . The Lucky bags , called Fukubukuro in Japanese , are very populer . . . URL I 'm an interior designer , but I 'm working as a market resercher now . . . . . . . . . Unfortunately , one yeung couple that sat near us were very impolite since they were discussing the movie very loudly , this behavior is very irritating when you are trying to watch a movie . She released her new alubam in Japan . One of the remakable sub - plots is that at first , humans created robots for themselves , but at the last , it backfired on them and the robots nearly destroyed all humans lives . My hobby is listning to music ! I want to study English to comunicate with lots of people who can speak English . I intoroduce you to my dear pet . My familiy has a cat . We decided to keep it , because we throught it was sad and loved the cat . We throught it was a `` she . `` But I ove love love him . I wunder what is your opinion , dear reader . . . time after time , unusual things and coincedenses occurred more in my life . nearby the river , there is a resutanrant that served pizza straight out from the oven . Self - introducation ! ! I can help you with correcting your material written in Japansese in return . This company continued aggresively overseas marketing , and as far as I know , today is opening day for this corporation in Japan . I desided to study English again to accomplish that dream after I enterd university . I thought I was not good at English , so I relearned it starting with the fundementals , such as pronunciation , grammar that I learned in junior high school , easy vocabulary and short phrases . But I ca n't do that forever , I got ta make my new gole . Einglish is very hard . He will massage my muscles and stick needles in my neck , sholders and back . The area where I am living is arrounding with many apartments and residents like me . It 's not the time for writting a journal otherwise I ca n't go back to my place and sleep peacefully . I had a deep talk with my pshychology . The reason why I do n't rue the past is that I think no matter how much we try , we ca n't undo the past , at least with contemporary technologies , and there 's no momoent when we did n't choose what we 'd done . Usually it is rainny , cloudy and cool . Did you see the movie Karate kid that rencently premiered ? However , I am in Singapore now , it is clean and safe here , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to wrok so hard and for a long time as slaves , no worse than them . I felt shameful while watching the movie , this movie showed foreingers how disgusting the Japanese culture is . That is why I worte this letter to you . Though it is the big city in the north England , I hear that living expence are low and the people there are friendly . Oh , it is not determined yet wheter I 'll be employed or not ! now , I am studing English . I can read English books which are writen with easy words . As expected , after the anouncement by the health minister about swine flu , many people ran to buy masks . I went to a study group , so I could study for the midtern I have next Monday . We studyied for over six hours and afterwards , I was so tired . That is becuase , in one hour I am going to see a foodball game and after the game , I am going to eat at a friend 's house . I decided to enter the Chinise speech contest this October . I 'm working at an English conversation school as a front desk personnel , but my English skills are n't good enough so I ca n't comunicate with the native English teachers . I saw on the news that many contries are praying for Japan , and give us aid ; money , foods and so on . Sometimes genes have a great influence on children , but the quality of upgrowing at home and teaching at school would be more important . It 's a piity that I have not found this webside ealier . My son has been in the hospital for 9 ddays with a serious diseas . I want to speak this beautyfull language ! And our school has farming class , so some teachers have to work in the domitory , but when my son enters erementaly school , I will have to to do night duties . I wanted to talk to other Japanese morons about how big Australian cheeze bugers were with a stupid face . But when an Australian Chinese staff member brought my meal to me , I was very disappointed with the Austrailan society . I gazed / stared at the cheeze buger meal for 5 seconds . When I started talking about the weired news , I found him under my table on the floor . I have been finding books writen in English for my studies . Reasently , websites introduced a lot of books and digital books . Resently , free digital books were introduced . Digital books have many good points , for example the digital dictionary soltware that we can use in digital books . This April , almost all my freinds are starting to work , so we wo n't be able to meet and drink easily ; but I hope that we will meet and drink a lot together again ^ ^ They are precious freinds to me . Today Threre is a fireworks festival in my city . But , now I think this is good for me , I 've kept studing harder than usual since that happened . Merry chrismass Dear * * Assiciation Staff I want to become a menber of the * * Association , and I have attached an application below . I 'd appreciate it if you could registrate me by Jan . 5 . I have a lot of hoemwork , and have to make a presentation . . Yesterday my boyfirned and I went to a nice place . Although it had been only thirty minites since the festival started , the lobster was sold out when I arrived . . happy they understund each orher before they had problems and I 'll be back on Monday , the other members will be back on Thesday . I wish I could get paid - holiday for thesday , but I ca n't . I 'm looking foward to going next Sunday . Everytime I go to bookstore , there are so many foreingner . So I belive that I alreay know English grammar . I 'm learning a group of vocabulary to be acusstomed with it efficiencly . Schocking LaLa mountaion trip We got stuck in a traffic jam on the way to LaLa mountaion . cockroack ! ! ! I could n't belive it . We killed ` ` five cockroack ` ` that day and retained the ` ` corpses to show to the manager . Of course , this sence of security is one of the attractions of Japanese way of life but unfortunely we often behave the same in other contries as we behave in Japan . but it 's very diffiiculty . I think my reading skills and vacabulary are good so I 've decided to write a diary in enlgish on this side every day . A part - time job will start tomorrow and school todays will startthe dayafter tomorrow . I am reminded of Steve Jobs , the CEO of Apple Inc . , who gave a speach to his investors while wearing jeans . Yet , Engglish as a second languge is so hard for me . There is a very interesting phenominon in Hong Kong . nippel & pacifier I 'm not netive speaker of English , and I do n't like talking people who do n't know well either . Fortunely , I like to go on journeys alone , so I made the decision soon after . To make maters worse , the cost of transportation fees is very high ! ! Since then , his mother has slept in her son 's bedroom for around one year , even though my patient 's daughter recoverd long ago . I 'm studying Japanese , but suddenly I wanted to write an entry in Englsh . but , after I came to University , there was no reason to study Engilsh . So , Aftter work I did a relaxation exercise at home . That coaches ( or instructors ) are two beatiful ( ravishing , gorgeous ) women . For eample , I 'll read a book , play on the computer , wash clothes etc . Hallo , everyone ! The invention of the computer brings us a techological innnovation . Obviously , our life has changed enormously by the use of comeputers . I like reading comics and watching moveis in my free time . If we had few vending machines , Japan would not have nuclear power plants and less accidents such as Hukushima would occur . It is unbeleavable . We never wear coats in Sempember or October . Even after my guraduation , I will still often go the cafe . Because my grandfather and grandmather were Finns . These stories contribute to the understanding of Japanese Arkeorogy . Thankd ! One of the Japanese formula races , Formula FormulaNippon , takes place this weekend . I stopped for 2 years and started playing piao again but with a different teacher : ) But I am scared of her during teaching sessions , because she gets angry easily and tells me to use my brain propely T _ T I found this website in a magine . And surprised to see so many people here speaking several langues . Do I use this site stedily ? Being nervours easily is my drawback and defect . I tried to read ' Heart of Gold ' by Niel Young . Cleary , I lied intentinary when you asked me wheather I will study in the USA . I have Eglish class , Math class , piano class , and Chinese class . Anyway I do n't know wheather I can continue to post diaries . I also try to read paperbag ( ? ) , do some walking for my excercise , I have studed English a lot every day , but I can hardly speak it . I ca n't easily / comfortably make sentences for converstations Because my school work is interesting ( very fun ) , so I 'm having good time , but I will have to graduate from school nexy March . I do n't have cofidence but I do n't want to change . I went to Canada to stady ( the ) English ( lunguage ) . I hope to speak Engilsh very well and to speak to peopel from all around the world . I live in Vancouver , it 's an intersting city . It consists of 8 witing test which will take about 17 hours and 7 multiple choice tests which will take about 5 and half hours . A 2 - hour witing test on civil law , a 2 - hour written test on civil procedure law , and a 2 - hour written test on commercial law . I have consective three days off , but I recently stopped jogging for a while 'cause it 's too hot and muggy these days . Today , I find this web when I look over the web of my friend . I find that it is real usefully for our to improve launavage leval . I 'm very happy that I can express myself here . But we can not descide on the country . Last Sunday , my Tiwanese friend . . . ( And it was the first time for her hasband to eat beef tongue ! ) Yestarday , I ate and drank with my sister and my boyfriend at his house . he cooked Cold Shabu , lasagna , and fried chiken . It was verry delicious . I can bring some spring rools and clues . ( clues ? ) He was teaching a half year seminor of gospel piano and he invited me to join . ( It was not for free ! haha ) The concert was very good and it became a pleasent memory for us . There was an aftershock and the builging shook like pudding . And the ' progressives ' insist that the conservatives are using the death of the North politicain to strengthen / improve / further their political position . Then , a jentleman from a foreign country escorted me . I 've always wanted to become an animator or illustrator , but right now I 'm studying junralism . First , the acters performed the process of dying with horrow . Second , the special effects were added to the prelimiary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his bory . . . But my friend said , `` I want to meet thier request . Culture is always changing , is n't it ? Of course , I like scienece but I really like English , too ! The hearting system in my house stopped working two weeks ago . It has pictures of sandwitch uploaded on it . There are many unique sandwitches which were designed using ham and cheese to look like something . My boyfried washed the dishes after dinner ; that 's nice . One of my collegue will be transfering from Fukuoka to Tokyo . After transfering , he will work at the headquater of Japan 's Air Self Defence Force . The students in the class congratulte him on this great news . I seem to always get into this stuation . While listening to music , we can eat american foods such as hamberger , spaghetti , steaks and so on . My dream is to go to carifolnia in the U . S someday . Nintendo shipped 400000 game consoles , and almost all of the distributers were sold out within two days . I thought they are famus thai foods . . . . crowded with old people , young people , men and wemen in spring or summer . Basically , the problem is that it 's difficult to answer with accurate grammer . Well , I will do my best ! I 'm not sure hou well I can do . Maebe people live within the foreign country for a long time . Mariners starting picher is Doug Fister . I like his piching style . I enjoy these programms a lot . I was bit afraid to watch without writen help . There is comedy and rommance in this show . This sunday my French reiend and I will play badminton . I redistered at this website today because I wanna brush up on my English skills . Well , I 'll write my next dialy soon . : ) I went to a chainese restrant with a friend who is chainese . I mean , he gets his money from pearents . It will be releaced as a film in 2010 . 50 years ago ther was another enormous earthquake in Chile . I saw through their sad or pathetic eyes so I desided to ask why Recentry , ihave not beensleeping well , so I took these drugs . Sometimes we use foam balls or styrofoam , and when there is n't enogh money , simply wrinkled newspaper sheets . On top of that , local governments relatively far from Fukushim prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . Many typhoons come to Japan every year , especially in Kyusyu where I had lived until after high school . When I was child , I felt happy when typoon would hit Japan because school were closed , so I did n't need to go to the school . I went to bed hoping that tommorrow 's typoon be very storon and it would bring much rains in this area Of coars , he was dead . I remenber him whenever any typhoon hit 's Japan . Weather forecast is currently saying that typhoon would hit Japan tommorrow . Today I 'll explane why I 'm studing English . While I was at work , the sound of an explosion surprized me . Thank you for readeing . I plan to travel to Thailland next February . And next , I will try to find very , very cheap fligt . I 'm looking forward to visiting Thaillan . Recently , many water acciedents have appeared around me . The flow of the water was stopped because of the wastage of the fileter . One of my dreams has came true , and of course I will continue to persue my other dream ! ! ! I bought 4 packs of Sushi and some dilicios beers . My neighborhood has a gohst . That is to say , it 's a scar of golry ! if you ca n't get a satisfactory score , it means you ca n't go to the topest I can write my mood or interesting things in freign language everyday . Yesterday , I went shopping to buy a present for my collegue . Please give me your addvice . I was very supprised to hear that . The weather ( news / report ) said `` there wii be snow `` . The only things that I need to do are to take the ingrediants from I am Biqi , and I want to study bouth English and arabic . However , I am rather inept at bouth . I sudied English in college < a very little bie > But now I realized GPS systems are very useful and even the cheepest one is very relieable . Very delicious sushi are very expencive . As a matter of fact , I could hardly liseten to what they were saying , because they spoke so fast . Actually my pronounciation and intonation ( ? ) were quite weird . Everyone in our class was laghing out loud . I called the ETS lost and foung office and left a message according to the directions . So far , I did n't get a call from them , but hoperfuly they will informe me soon . At 5pm , we met at the classroom , and walke to the pub . Some of them including a Swiss guy who organized the party for us , a Chinise girl and a South Korean girwould were leaving Edmonton soon so we took many pictures . I revewed her plan , which was for a server hosting company 's website renewal plan then I made a report . It 's a really nice place but there 's someting a little bit troubling . . `` It is a good daily practice for me , so I can study Englsih hard at the moment . Even the pleasure boats on the Tosabori River were coverd with jolly lights . I happened to see the lighting ceremony , and a governer of Osaka . my student got driver 's lisence . The K - BOX has a free car service , so we took the car when we went there and returned bakck to school . I think that life can be very hard and sometimes very sumple . All of them use English or Chinese or half and half , I am not sure , so I want to hear to your suggetions . Second , I have sent all the agents ' ( have the VIP status ) full names to you , plese check them . After that , could you get back to me ASAPA ? I also want to drink bowls of gruel and eat steamed buns , which are not easily foung at night . To become a skilfull computer user . I 've heard that Japanese tend to follow the mojority and reject anything different . They always accusue me of being too stubborn and tell me off that why do n't I accept other ideas . Inspite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summerizing his story , even though he had 10 minutes left for finishing his lectture . I saw the professor was upset about that , so I raised my hand and said to him , `` The professor seems to want finish his lectture first , so could you talk later ? `` and I stopped . Afterward , some of my friends came over to me and started critcizing me for it . They asked me why I did that thing to a vice - president , that was too inpolite and so on . However , I also think it might be not about Japanese culture , just anout me . I usualy try to take a nap , study English . I lack exersise now . Now I am dying to learn English , since I will go abord to study next year . Today is 16th of April , but it 's very cold , so I 'm wearing a winter jaket . A Nurse of Indnesia . If I could polish me . . . . I do n't like examnation even though I know we sometimes need them . I think everybody is born with thier own abilities and posibility . They really wanted to get a nurse lisence and wanted to learn good Japanese . But we have a lot of work to helping our patiens . I know that they were sometimes comfusued when they could n't understand quickly what we were saying in Japanese . Essentially , when we intrduce people from another country , we must help them to feel comfortable living here . They say it is too difficult doing both work and studying a second launguage . So , I brashed my teeth quickly and got ready . I went to a Krean restaurant today . I love Krean food . He also taught some tougue twisters . I do n't know foreign songs well , but I like `` Red Hot Chili pepers `` . I 'm looking forword it : ) So I do my best to study English , and I made it a rule to keep a dialy in English . This term , I shall keep a dialy . But unfortunately , I do n't know any classes for begginer . The Japanese government sent her some gifts to show our gratitude because she donated a lot for Japanese people after the big earth quake happend . I read a lot of aricles about Michael . Another of Guiland 's popular destinations is Fantas , which has a musuem that shows what life might be like in the next 100 years and also has many shopping centers to enjoy . My native language is Chinere . I hope I can help someone here . I have a chemistry experiment at my univercity on Thursday and Friday . Unfortunately I have n't had any weekends to slow down a little , sit down and relaxe . A long bath and more than anly 5 hours of sleep are the things I need the most . I think I did it badly when I chatted with you the day before yesterday . Maybe it was first time that I had communicated with a foreigner . When I wanted to say something I searched the related words in my mind , and I could n't expressed my ideas properly . . My voice and intonation may be abnormal , I did n't know whether my speach was sounded a little impolite or something bad , if I had , I ask your forgiveness , I did n't do it intentionally . We helped him in meak the dumplings , but when ( all the ) people arrived , we noticed that we did not make eoungh for everybody . I will go to my friend 's house instead , and maybe we will drink a beer or some other kind of alchool . I wathced the movie `` TRON `` last Sunday . I 'm going to have a Cristmas dinner this year with my host mother , who I have stayed with before . Last weekend I was going to get her family Cristmas cards for Cristmas but I could n't find ones that I liked . Last month I asked my firend , who is coming to Canada on December 1st , I got a sunburnt the day before yeasterday , and later bought aloe vera to treat it . Christams is a big deal for me . This summar vacation I have always woken up around lunchtime I am intrested to learn English = ) I am also intrested in Japan : I want to learn a bit of their language ( I 'm registered here for this ) and its culture . . . Then , we went to a Tailand restaurant . Although it was horror and I wanted to sleep , but I still finished all of the movie . When I went to bed , my mind was full of images of blood and guts ! I should not watch horror movies at nigt . . . . . . . . But in the moring it is very comfortable ! It 's my frist daialy . I must say : Chinese food is so good , expecially in Taiwan . But my wife belonged to the brass basnd in her school days , Althought Science and Politics have been developed suprisingly and Our lives have been changedto be mademore conviniently , we are not satisfied with now . It will be a really short saty . I suggest drinking coffee without suger . I like watching moive with my friends . Wakayama is an old town with a beautiful casstle built during the feudal age . To sum it up , VCS is a really a usefull tool to backup the computer 's files automatically and smartly . I do not kown the answers at all . In fact , I really want to impruve my English . the title was `` ON Long distance education . `` oh , really diffcute , right ? The day before , it lasted untill two in the morning , so yesterday my husband wrote a letter and put it on his door . I thught that I could write in Japanese here and then it would be translated from Japanese into English . I went to chainese restrant with my chainese friend . After that , I teach japanese languege for him . I 'm a shy and unsocialble person . After I finsh my English lessons , I think English is a language used to express somthing and Japanese is Today , I attended a conferance . For two days now , my wife and I have been walking to the park early in the morining The right one in the photo is Maccha Azuki ( green tea and red bean ) , the other is rainbouw : D Today , I had seminarys during afternoon , and evening , I 'll return to college for more and more seminarys . I think , writing here is more confortably for me , because I can think in English much faster ( Yatta ! ) . Watashi wa supein ni umaremashitaga kodomo no toki , irelando to furansu nimo sumimashita , sonotame , eigo to furansugo mo sukoshi hanasu koto ga dekimasu . Watashi no otosan no okage de , nihon no bunka ni kyoumi wo motimasita . Boku no nihongo no reberu ni stuite , takusan no kuni ni sumimashita node , betsuno gengo wo benkyoushinakereba narimasen desita , demo daigaku ni benkyousuru koto wo hajimemetatoki , hitori de nihongo o benkyoshite imasu . watashi no otosan to watashi no nihonjin no tomodachi nihongo wo renshuu shimasu , rainen waseda no daigaku ni ikimasu dakara ryuugakusei desu . I went to a bank to get a financial stamp to apply for a teaching lisence . That was ture . Have you ever had any big dissease or injury ? I really enjoed it ! I 'd like to go by car , but my car has been broken sinse 2 days ago . I hope it will be repaird as soon as possible ! ! I want to speake English fluently like an American . I dicide to go to America as an aupair this Summer . I 'm gioing to visit one preschool this Thursday . But I 'm a beginner at English , and I have Inever been to England before . But in this class we did a wide range of activities using english . For exaqmples sang songs , role played in front of the class , didyoga while following English directions and so on . Also , it would be great to studdy another language , maybe italian or a slavic language ( Polish , Serbian , Slovenian etc . ) These cultures are intresting for me , and the words ( are ) not so hard to learn , I think . Distance is not probrem for me , because it only takes 45 minutes by train . But the train ticket is expencive for me . . . It was quite expencive , but the atmoshere was nice . This is the reason why I have not been sleeping well recentry . I am a colleg student . Nomally in Tokyo , this occurs at the beginng of April . Japan has a long and glorious histroy , good public safty and a strong army , Tokyo is one of the biggest city in the world , Japanese science technicians are the best `` . The Japanese gevernment and companies really know this fact . Having such a life for one and half years , my English skills decends . Because , there are n't famous Japanese celeblities in America . . Maybe Americans are not interrested in Japanese celeblities . I do n't know why Japanese celeblities are n't popular in America . A funny guy from Russia said that he realized Japanese women walk with short steps , and he tought that it was because Japanese women used to wear Kimono . A girl from Sweden tought that it was because Japanese women usually wear high heels , and so they can not take very big steps . My favorite mounths are October , June , July and december . Everyday when I wake up , the first thing I do is to power on my laptop and log into QQ ( It is a software like MSN , in China it is the most popular instant messenge ) . Have you heard or thought about the size of the vocabulary of the average naitive American or British ? I think the most important thing in learning a new language is to memorize a lot of words and idioms untill you are able to read a newspaper without a dictionary . I 'm going to pick up noe of my friends at Nriata airport . I put emphasis on human resorces development . They seemed such kind and comportable people . I did n't neccesarily take the exam light . Unfortunately I was too hungry , dizzy , sleepy and sored in every part of my body The oscillation continued for more than 3 miniutes . Of course , it will be more expencive but it can take more time . 0 It 's not confortable to live due to the bad plan of the house , even if we have some house renovation . Gaga is at least being ture to herself than those who mock her and those who try to be as bewitching as her . I could n't contact her but I guessed I could meet her if I went to her restraunt . Yesterday , I took part in an actibity in my circle , university COOP . Then , Shinobu Moromizato , who was the second money list player in Japan , appered behind us . Though she is the same age as my yonger daunghter , she is very coutesy . However I did n't buy anything because I did n't have any maney on me . So I replied to her on what I had beeb doing before and asked her what she had been doing too . Straight after we made an apointment to have lunch together . We spent the time just talkig , using a lot of technical terms and eating a lot . Forgetting their daily lives , two mothers enjoyed thier past golden days . We had grilled chiken there . Especially the chocolate cake they served as a dessert was excellnt ! I think , I will sleep all this weeken like death . I normally get excited to see this unusual weather in Tokyo , but this timeI I hope that it will stop soon . They tasted good , were healthy , nutritions and warmed our bodies . There are sentences , which use both `` that `` anad `` which `` . I am wearing a short t - surt , which has blue and gray stripes . It was ver fun . Secondly , without mobile phones we can spend more time with our amily . Thanks to the mobile , we can easily keep in touch with other people , make apointments and speak with long distance friends . The mobile phone is not only for talking and sending messages , but alsof for enjoying music , taking fhotos and gathering information . I was watching the final with nondescribable excitement . It 's rainy today in Kyusyu in Japan . Acutually , this is my first time coming to the US . But a littel far away from the port , there are a lot of hills . If the flower 's leaves are a beautiful green colour and the corola is bright and pleasant colored it tells ( OR : shows ) us that the flower is alive . I think that talking with sby is a good way to get to know ( and understand ) each other . I want to be a high school teather . Because I want to teach sience to students . When I was a high school stuent , I did n't like sience . I went to Barcellona by ship two years ago and I have no words to explain to you or , at least , to try to explain what I felt on that ship . My psition is forward . my english is so pure that I wnat ( want ) to ( make ) some friends whose mother tonge is english . Because Janan has isolation policy from seventeenth to nineteenth ( centuries ) , Janan was not influenced by foreign countries / foreigners . Lastely , he mentioned Japanese AVs ( adult videos ) , which are considered to be pornography . When I dehulled the peas , I dropped one pea . Japanese tasete seems too light for him . At last we went suffing . Now I 'm here writting my first posting , saying hi to all in this community . Also , I 'm intrested in music . I hope that I can do a perfomance on stage of their songs after finishing military service . Sharing thoughts , opinions and my photos with my close friends is really fun and intresting . So does it mean that I should n't go to Austlalia this year ? : p My husbant 's mother grew sweet potatoes last autumn . If there is anything I regret about choosing to be a law student , it is that I underestimated the proportions of civil and bussiness law in the field . it is so hard to spend enogh time to do what I have to . Each of Japanese cake had a lovery , colorful shape , but 800 yen was rxpensive . I said , `` Will you plase sell me just one of these ? `` The saleslady said , `` of couse . `` Because I 'm a Japanese , she might have been nurvous . Therefore , I guess our company recognized her skill and actual achivement and offered an extention . I have to get lime sulfur ! You can get some information about the earthquke in Japan from the URL below . I think that his is earier than mine ! ! ! The topic of this saminar is export documentation . Watching movies without subtitles is my way of studing English . American , British , Eest courst , West courst , etc . I believe that their writing abilty is probably equal to their speaking one . But his English pronuncation was terrible . ( I 'm sorry . ) Recentry I realized that writting is more difficult than speaking . I 've escaped written English tranning . Perhaps you have problems when you are writtin in Spanish because you do n't know about the accent rules ! It is a superior souvenior for me . And , I will give you a souvenior . I think I 've remembered abou 200 words in these 2 weeks . Fruits , vegetables , milk , chiken , and the ingredients for pasta like anchovies , dried tomatoes , dried mushrooms . I tansefer the fee to a convinience - store today , so the daywhich I can get it will probably be Thursday . But I tried to write somthing even though it is short or borring . The sentences , phrases and words are filled with his affection for children and nature , and his expression is so beautiful that I was filled with romantic feelings and was able to imagine each secen clearly . I have read `` Grimm 's Fairy Tales `` , and Andersen 's , but I feel that Ogawa 's works are diffrent from them , although they belong to the same category I am an exchang student , so I need host family to live with them , and also there are some exchange students in my high school , they also live with their host family . So this time they do want to change thier host family . I hope they will have new fost family soon . They should be more energetic , otherwise they might have to change to another family again . But today at dinner , she praised the cake , whtch I made , she asked me if I had made it ? Novac Dokovic became No 1 yesterday by advancing the finals in Winbledon . It was said that he is the etenal No3 tennis player . Bagk problem I have no confidense in speaking and writing in English . and you know what ? Japanese sutudents who are in junior high school and high school have english classes 3 or 4 times a week . and fortunaly at that time , I was really intersted in English because I wanted to be American or someone who speaks English very well , such as native speaker . I was planning to go to high school in America after I guraduated junior high school . It 'll be so woderful ! ! ! ! My dishes are surely like paella in the sence that the recipe - book said so . Am I making sence ? Some of them looked at the business hours but did n't cathc the small words on the top about the holiday information . He looked at me at onece and suddenly he scolded me about my hair color ! He could n't overlook that I seemed like I changed my identity and lost my pride in beeing Japanese . So the neext day , I had my hair cut really short , and dyed my hair black . Beyond that , I only could tell him `` Thank you for everyghing , everyghing you gave to me . `` And I left his house with saying `` See you later `` . So I decided to try to take more oppotunities to tell my friedns , my jouniors and you who is reading my diary what I learned until now . I represent my honorable grandpa . One of my classmates from college already got married last year . I 'm a little surprised becase it 's only been two years since graduation and I think that their finacial status may not be good enough for raising a family . Since I need to use my English for my job and my boss scolds me about my poor English oftenly . Furthermore , I always introduce our culuter if you are interested in Korean cultuers . I hope we can becaom good friends . Should I get married and have a family , bring up a baby , and find happinese in my daily life as my friends who look so happy do ? I got an early retirement when I was at the age of 56 after 33 years of being an electlic engneer . Since then I have beem studying English at ISS school , an English school in Japan . After about five years passed , I have noticed I have various difficulties : vocabulary , grammer , and so on . My friend told me , `` Noy , try to speak English . `` I could not hear my friend very well because the restaurent was very loud and I am not good English so I just said a bit . . Our 95 - year - old mother had been spending a day at a local day service senter . That is , I always get sleeply after I hear the alarm go off , then I fall back asleep again . We went to a good restaurantm , and had a good dinner . We have not seen each ohter for a long time . It 's ok ! ! I guess ^ _ ^ I 'm not supposed to have had anything to eat or drink , including warter , but I already forgot and drank some milk tea . I sut down there and thought about my future . If someone asked me do you like englishi . I 'm probably making some mistaks since I am ignorant about this site . The final resulf of the Formula Nippon Round - 1 The final result was not bad considering it was his first Formula Nippon race , but most of his funs expected him to win because of his experience with Formula1 . I entered a site and chatted with an English teacher through a ( mirophone ) Today I was late for work again . I was late by 1 minture . : D KOICHI ( koichiben ) and Emily ( applemilk1988 ) are youtube video bloger . They really do n't care about eenvironment . Is this sentecne correct : I did n't see my parents , because in the town fire had broken out and people must have been evacuated to save their lives . My father and I plan to tend to my garden every Saterday morning . Tought I reached my office late about 20 minutes . I am Nana , I 'm from Japan but I have been living in Engldand since August , and I will be here for another ten months . He took me to this studium for the first time when I was 6 years old . Of cource , ( space ) I can do it . We should try to get some benefitable information even if wecould n't catch some sentences . . Only the elite can enter this comapany . Fukushima newclear plant has already belched a certain amount of radiation there . My sister who tied the knot with a man who lives in Yamagata last year and enjoy their hanymoon traveling to Italy , she got pregnant at the beginning of this year . I have to pick them up at the pire soon . I thinnk today will be a wonderul time for us . It 's quiet and comportable . Already uncomfortable with muggy weeather , their loud sounds makes me feel much more uncomfortable ! In autumn , the sounds of insects such as crikets , singing crikets or Japanese bell crikets , green tree crikets , and so on are very nice . I want to know about your idea about sounds of insects from meny people from many countries . This is the first enrty in my diary . Beside that his speeking speed was so fast for me : ( Of couse my Engilish skills were part of the reason . So what can I say when sombody 's voice is noisy like in the voice - chat room ? He saied this place is a good way to learn English . But nobodey asked me why I was late since they knew about today 's traffic jam . Most foreigners think that it tast good too . Coffee beans are more effecter than Coffee Mix when on a diet . I 'm so sleeply . I 'm sure that I have a lot of misstakes . or optimistic imformation , we would n't take action propely during a crisis . I can only speak eazy English . All children , especially boys , have the experience of searching for a `` big treature `` with their friends They were deeply grieved over thier fimilies ' situation . Goonies ( name of their group ) went in search for the treature to help their parents . I think if I practice this , my grades wil increase . Now with my friends I live in a very nice house with a balkon and four rooms . We only finished moving yesterday , because on Saturday soon after we arived we started an opening party . A famous middle - aged American actor , who went to Japan for a business trip , met in a hotel with a young pretty American girl , who came to Japan with her husband , who was a busy phographer . Please read my dialy post and correct my grammer . I read the newspaper befor breakfast . It 's wandarful . I 'm looking forward to watch next 3D movie , Alice in wondarland . I have a major in Architecture , but now I develop PC software to do business for emproyees only . I ca n't speak and write Engrish well . Recently , I 've realized there are many similer words in English . Please let me konw the deferances . I like princess caracters , so I enjoyed it so much . Drivers lisence in NY A drivers lisence is mandatory in the US . Even though it is convenient enough , most poeple tend to apply for a drivers lisence . That 's because the lisence is also used as identification . I take English leeson once every week . Factory owner , who professionaly breeds pugs , said me that it is a characteristic of black pugs . I can remenber running around the surpermarket We also listened to some litlle stories from my dad 's CD ( a CD that came with a book from his English class ) , then we listened to it on the car cd - player and translated to portuguese to see who got what the story correct ! ! I have trouble writnig an English self - introduction . I was very shocked by the news about the disaster in Japan , and I could n't belieave the things that happend to my country . As a person who is taking care of chinldren , I am realy worried about mothers who are protecting their children without heating and water for drinking in stricken area . Yesterday , Mocty who is my senior student of my laboratory introduceed this SNS to me . This week I chose to learn French as my sendary foreign language next semester . and I thout about `` I want to go to abroad ! ! `` I must be more carefull or I may set a fire . Toyota had grown continuously besed on strong consumer trust . But now due to this defect , the company has been losting the public 's trust . Losing the public 's troust may collapse even a stable company such as Toyota . This restaurant has been serving very good mutton because they 've been raising the sheep theirselves . When I woke up this morning , my wife had a blak eye . The firtst diary I 'm at a loss on what to write in my daiary in ENGLISH . Colledge students produced this show and placed a lot of artistic lights here and there around town . For example , I went to Victria Peak , Tsim Sha Tsui , Jordan , and so on . I have nothing to write down anymore because I 'm exhousted and I 'm starving now ! abou me I need to ues English and Japanese to watch tv , read comics and go on a world tour . Tonight I went to a susi bar with my family . Many susi bars let you order using a touch panel . However , I realized that if I had told the truth to her , she would be hurt very much because she liked those clothes and the color . In thespeed skating women 's team pursuit , japanese team got asilver medal , losing to Germany . She said thet the Chinese are not diligent as diligent as before . I want to use the phrase `` over my daed body `` . They have had thier own schedules already . This is a photo of a man walking on a tightrope over the void against the background of Rio de Janairo in the sunset . I am really happy here . My new home is very beatiful . I am hitun ! Fuji is center overe there . I like intelligent and thoughtfull people . But they ca n't help orher children , for example , they cannothelp diarrhea children . I 'll go to the studiam next month to watch the national team . Several days ago , there were over one hundered school clubs looking for new members . sinse the sentense structure is quite different . finaly , I get out of bed at 7 : 00am . Come on , let 's exprience this amazing world : D Once a week I take a tango lesseon . When I close my eyes and just move my body to the tango rythem , First of all , I want to chane myself . He has a fatal deasease a student in his last class wrote this book . If the raiin had started sooner , I would n't have been able to have my lesson . Someone read my dairies and told me that : what your said is too chinalish . You can translate the titile as `` My House `` in English . If you want to know what a Japanes family is like , maybe this manga will tell you about that . This is because I decided by myself to announce without asking them whether my annoucement was convincing or not . Another altar in Berlin , is very simular to this one , , so much so that a long discussion has taken place on which alter is actually the original . On the first panel you can see a describtion of the birth and the naming of John the Baptist . The last panal is about beheading John the Baptist . Also , I talked with my chiness friend on skype . When I arrinved to my house , It was time for dinner . Starting this Novenber , I 'm going to go to Canada to improve my English and learn a way of teaching English called TESOL . You can see bazil , thyme , lettuce and tomate in the picture . Many univarsal students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . Why does this sentence above use ' has basketball ' , not ' baskball has ' ? I 've heard that when women go through menopause , they 're more nervouse and fickle than they would be normally . I love MOS ( not Macdonalds ) . I like most fastfood restaurants including Mcdonalds but I think MOS is the best . Although I am very exciiting and I 'm really looking forward to gouing , I am worried about one thing : the temperature . Actualluy this is the biggest preblem for me . I prefer a hot crimate to a cold one . yoru ha hataraku shita . Car wash to Jollibee to Greenwich de hataraku shimashita . After the game , Okada who is the coach of Japan asked the chariman of the Japan football asotiantion if he will continue as the coach . I love this kind of moives . I want to write dialy . But I want to write dialy in English . Yesterday , my hunband went fishing and brought many fish for me . The summer vacation is drawing nere . I like to watch movies , so each year I am looking foward to see who gets the award . Why did `` Avator `` lose many Oscars despite the having the best performance of the year ? I thougt the competition was only for dogs , but everyone was there . There was also a mummy ( the dog ) and a witch ( the owner ) , and a hotdog ( the dog ) and mastard ( the owner ) . However , when I looked at the units carefully , I found the unit was KJ , not calory . It is hard for me to walk araound TDL & TDS all day ! ! Telling The program is about other TV programs I like , USA or UK drams , for exsample . About 10 seconds later , the raindrops suddenlly became large and heavy . My English is at basic or pre - intermiddiate level . And I made it a habbit to memorize what native speakers corrected . What do you recomend me to do ? One of my female freind suddenly said , The way to pratice I found this website on a discuss borad and it seems interesting . I 've been learing English for many years , but still have problems on expressing my feelings . It 's very convienient to go to other countries in Europe from the UK . It seems that it ( was ) the 5th biggest ( earthquate ) ( since ) 1900 . Munster city decided to ban cars in the city and use bycycles . Suddnly my friend said : Toshiya , you ca n't go back home because the train left a few minutes ago . I 'd like to explain Himeji catsle . In my opinion , we do n't need to be strong and parfect to I love readnig , so I love a book shop . When it 's someone 's birthday , we always make the presents by outself . there was an earthquate . By the time I thought about it , the earthquate was finished . Today when I was on break searching the internet , I found that there are really a lot of peple who speak highly of this film . I 'll be a sutudents , so I 'll have many student 's discounts . Thogh all of my friends laughed when I showed them the picutures . Now I 'm watching Macros Flontier while working . you can googole it with `` * ( asterisk ) `` . And to earch for an exact phrase , enclose the phrase in double quotation marks . Japan has diversitied climates , so there are unique local spcialties in each place . At the shop in Niigata Prefecture , the emplyees carry plenty of snow next to the shop every winter . Did Sant Claus come to you ? ( Claus is right . ) School just started one week ago , so I decided to insist on writting here every weekend . LMAO , two Americans in the audience in that coffee shop were surprised when they saw Sunnie and I going in the one bathroom at the same time , and they were also surprised that we were holding hands all the time . They thought we were lesbin . If I correctd someone 's entries , I can get ' stars ' on Lang - 8 . I want help from everyone whose Eenglish is good ! I am Nao , a japanse person who is studying in India . How dou you think Sony products are ? But after a while , some of thembecome tired of raising the animal , and inthe worst case , they abondon them . I 'm trying get in shape lately becasue I have put on weight . It might be succes if I keep deiting for a while . He also liked soju ( a Korean popular alcohlic drink ) . his cousin , owned a small yard , but there was only graveled there . But the goverment wo n't do that because they get a lot of tax income from them . . `` Calrify `` is a very useful and common word in daily life . I 've desided to dilute my passion for everything British , with American literature . I do n't know American literature very well , so I would apreciate it if you could recommend some of your favorite American novels to me . From his movie , his harmony sounds quite excentric , he used Aside from these , his appaerance and behavior is also strange . Every three days I chang the water . Today all my classes were cancled so I had much more time . This book is about a traveling essay abouy Latin America . It is so fascinating and it 's an attracitive place . In my case , since I 'm an elementary school teacher , the government adopts new teachers , we basically train by ourselves , principals deside which grade we would be in charge of , and we have to cope with all of the problems and complaints . My hobbie is playing the piano . Recentury , I made an original song and played it . Especially , I love gyo . * I especially love gyoza . How do you say gyo / gyouza in English ? Many my freiends are going back their countries in Decmeber . I 'll try hardest on grammer , spelling and pounctuation in my journals . bacaouse today is our 5 month anniversary . I practice some tirics . recentry I am crayzy about `` hannah montana `` ! We will be watching the movie ' Avartar ' . Controllering an avatar that is something you are not but represents you seems awesome . The members and I have placticed very hard for that show . As a result , it was sucssesful . When somebody eats my cokking smiles and tells me it 's delicious , it makes me happy . Please send me a messase . Good mornig ! Before she started her IMBA program , we often hang out togerher . I can tell she does n't appreciate some Taiwanese cultrue . Tonigt was fun for me . Our conversatin was in English since I needed to practice for the up - coming interview . I do n't like hollywook movies either . We played togeher , laughed . . . Of course , sometimes we guarrel , but then apologized . He was a Canadian army officer and made a fortune from the hydroelectric power of Naiagara falls . Specyfying my language goal . We enjoyed visiting Kamakra . In my next class , I have to teach a lesson , so I need to prepary a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , yonger people , close friends or acquaintances . I tought them some things ! Today , I got a health check at my shcool . Notihng was wrong . Computer graphics is a very difficult field , so I often search for hints to solve a problem on the intearnet . since I had no opopportunity to communicate with them before . I finally finised my first semester in China . As it happed , that she was n't with my friend at all . Resently , I 've been trying to remain calm and to alter the way I think and my attitude about everything . And it mekes me slightly kinder to other people . Meeting with Alchol As electricity has been cut off because of the earthquake , I can not cook nor eat food which is sold at a convinience store . The best one is a baked slmon rice ball and the second best one is a fried rice ball with various ingredients . I recoment you to visit Nagashima Spaland ! By the way , she paied 170000 yen for the painting . When I went into there , we walked down a slope which went along a large aquarium , which was cylindric in shape . As the slope is spyral , it made me dizzy . We could see these fish right next to us , so I felt like I cound touch them . One day my mother took me to a psychiaty , though to be honest I did not want to go there . A big Tunami has hit Miyagi , Hukushima , Iwate , and so on . This Tunami is the biggest I 've ever seen . I experince many things this year . I ordred seeds of a flower called solube YTT . A white flower boolms ( on ) the first day , The staff cheekly tried to make him apply for the half year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recentry I resolved to be vegitallian to lose weight and because I saw shocking video which made me think about various problems ( I will skip the details ) . I watched a movie whose tiltle is `` Land of Lost `` . In fact , I wanted to watch the 3D disny movie , but the tickes were sold out . Three advnetures go to an anciant world , and they meet a monkey - man . Hi , starting today , I am going to introduse you to Japan . Actually she 's not a social woman , and she does n't have any opponunity to meet men . One is an Engrish magazine , and one is a quilting magazine . In Japan , I had attended a quilting class for about 5 years and an oil painting class for about 10 yeras . The climate here always changable ; There was a typhoon only a few days ago and now it 's already a sunny day of over 35 degrees ! Before coming back home , I bought the ballons and the pump to inflate them . So I was very interested and excitng ! One Italian guy said that he does n't like MacDonalds at all , and that the Italian MacDonalds is different from American MacDonalds . Then , one Korean guy said that the Korean MacDonalds has a kimchi hamburger . I do n't have a drivers lisence yet , but I soon hope that I 'll pass the test and a get one . But getting a car lisence is quite hard for me . Because I am worring about slamming and crashing with other cars . fortunaly , that has n't happened yet , and I hope it never will . She is supposed to stay in Arlinton in Massachusetts . I think it 's very cool , if I could watch the english movie without undertitle written in japanese . And I believe that , if I do so , finaly I can make a extremely beautiful girl friend . It 's only 12 : 26 and I ( already ) wana go home ! I wana try the real full - course French meal , or whatever you call it : S Recently , I could n't wrote a dialy in English . I think that this has a nice sence of rythm . XD So , I have to overcome this psychological obsticle . . . . . . . First , I plactice speaking in english through videos . Then , I wrote an nessey . Today 's topic is `` a park near my homw `` . Today , I had a tea party at Yoyogi Park in Tokyo with some memebers of Tokyo Toastmasters , the local activity group where I can learn how to do public speaking . The movie was very enjoyrable . I recomend you to have fun in your own special style when you see a ' colorful ' movie like ones Disney produces . ( Could also say : I feel comtrtable and at peace when I take them . ) Of course , I knew that I had no choice but to learn a foreign lanuages if I wanted to be successful in the age of globalization . We all close our eyes before starting the game , but the thieves can raise their heads up , open their eyes and look at each other to find out who the other theives are . After we begin the game , we guess who thieves are by discussing like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes and poins at the people who we think are thieves . A lot of intelesting andspecial TV shows are on the air in December . I 've justbeen so busy that I could n't finish watching ( and deleting ) the recorded prograns ( T _ T ) . I applied for a position and went to an inverviewed last Wendesday . Today , I made some sentences using dialog typing for learning I inginterrogative sentence . good moring everybady ! Last night my freind came to my house . she first staied at my home This moring I made her breakfast . beaouse she thinks I 'm a good cook . I wasted 2 months on my dissertaion period . . . I woner if my students will like it . From now on , I got to have snikers on for a while . I like me as I am nowadayas . I want to try to write some of my thoghts but unfortunately , I have n't read anything recently . Including me , most Japanese are parhaps good at Listening and THE DEATH OF MICHAL JACKSON And my oral Englsih can deal whith some easy topics . What 's more , I have also begun to read Englsih novels such as ' The Red And The Black ' and so on . Some people sasys It is n't practical . . . Even though I 'm using this website to improve my pronaunciation , in the following passage , I can never pronauce the same sounds properly . that 's the reson I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thougt . Then I had INARI ZUSHI and mashroom Salad for lunch . I was not tired becasue I had taken a nap . And my neck is very good doday . However my friend whois going togather with me says that a natural disaster may strike evrywhere and whenever . We ca n't epect it . Since I have the experience of beingkept in the elevater by blackout of due to lightning . I am really nervouse about these kinds of things . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowlede about your own country 's traditions because some people are interested in Japanese clture . It 's a Japanese traditional food eaten on New Year 's Eve and it 's said that this custome was started in the middle of the Edo era . Second is the belief that eating the noodles will cut off your troublesomes instead of carrying them over into the new year . I will be nuervous ! ! Anyway I try to set up my uccount now ! ! Are they diffelent ? The very quick responce really encourage me to study my writing skills ! ! After Gladuating university , I had worked as a chemist in Japan for a couple of years but quit the job to study English . I studied in Canada and Engladd for over one year in all . After that , I became obsessed with English becouse I met a lot of people who come from various countries and learnt about different culture , history , food , and ways of thinking . ( If I had known the water in a pool was acutally shouder height ( or : shoulder deep ) , I would have tried three years ago . ) Anyway , I decied to give it a try and now swimming is my favorite sport . I hope to make my English more fluent so that my English would no long be an obticle when talking with others However , there 's good news espeially for me . The book was written by a twiiter user . The book store near my house had a bargen sale up to 50 % . He told us that proununciation is very important in the learning process , but he said we need n't worry about our poor grammmer , because just about nobody will care about it when you are just chatting . Except for formal situations . There was a beautiful yong lady in the show that was forced to leave her lover unwillingly . I know that it 's better to turn off the Japasene subtitles , but if I do that it would be hard to keep watching the movie and have fun . If I do n't watch them regurally , then I will not be able to improve my English ability , so I watch them the way I said previously . I feel that my vocabraly expands / grows by reading Englsih subtitles . When I feel that way , I bring myseld into feeling that I want to write more entries here . and I am really looking forword to these events . ^ ^ I have been looking for some sites which are better than this one , somehow , I still couldnt ` t find one . * Increase the hability to concentrate . When we got out of the attractions , I found that my unbrella was stolen . Although practically the number of peple who are wahlers has been decreasing in Japan , some people who live in these specific areas continue whaling to make living . just that it is more difficult to find the time to learn compared to when we are studens . I think that the student who recognizes the importance of thire privilege can make use of thire college life for sure . Are Japanese elevater the only ones that have a door crose button ? The opening sound is really familir . I am earger to go to a theather and watch it . However I noticed him in the trailar ( maybe , full CG ? ) . Hi evry one ! I want to improve my inglish skill ! Thank you evry one . Insidentally , our opponents were much stronger than us . I could n't believe my eas . It sucked . And you are very good at drowing pictures . I can crearly remember Melbourne . Be hournest , it truely works . I am studing English at SDA . Why do n't you just fill the fucking vancancy ? Why do n't we just keep silent and let time fill the vancancy . Hi , I 'm a student for product design 's master degree , and I have complated a work Iicall it Finger Dance , which is a kind of dIgital communication equipment for cold evironment , and be suitable for outdoor survival and rescure in the ice - disaster or snowstorm . welcom to my blog to see my other works : This is the first time that the DLP lost thier seats in last 50 years . - - > Now I have started `` The Namesake `` by Jhumpa Lahiri , which is reall interesting so far . ) I try to stay fit while not using cigarets . The pair of shoes I bought are Nike brand and they are avairable with the iPod plus sensor . When I was a child , I heard from my grandmather that there were many treasures ( buried ) under the groud at the end of a rainbow ! ! ! In the beagining I was a little bit nervous , but the conversation went smoothly ! Twenty minutes is such a short time and I had to say goodbye , beacause the international fee is expensive , this can save money for our company . Recentley , I have had no time for myself . Sometimes it makes me tierd . Without anyg interupting . Yeah , finially , I opened my mouth . Three of my friends came to my home to studey English together as usual this morning . It is a vry fun place for me because there are many kinds of cool shops , for example apparel stores , restaulants , sweets shops , nail salons and so on . So , when I found this site , I was pleased with it and registerd right away and then tried to write a lot . I do n't know if this method will lead to high score in the TOEIC test immediately , but acctually , I really enjoy studying and I sometimes think in English now even during daly life . Then , I can somewhat unserstand what they say . My thow is in such pain ! We foucus on difficult words and torture ourselves . During the holiday , I had to finish my school work , essays , and other impotant tasks which still were n't done . He had nothing to grab onto and hardly any place to stand . & nbsp ; However , there was a midle - aged man that was sitting in one of the priotity seats . The milde - aged man looked at the old man and back at me again . I thought that his conscience was starting to bother him . I have to go to must work and perfome my experiment tomorrow morning . To begin , I wrote my intoduce . I am studying for my exams at the university 's cluster room , but I am fleezing as the air conditioner is turned up very high . She went out to the new sun room that 's waiting for the maerial to finish the floor where she found an old man . He walked into the imcomplite sun room so Siri said `` Who are you ? `` . He did n't say anything for a while then Siri found that he had a name tag on his shirt and recognized the name . It is the internet that has had the most powerful infulence on me by the prevailance of computers . I think I wo n't go anywhere so I 'll clearn my room and I 'll cook what I want to eat at the time . For example , the shape of the rice cakes ( round or square ) , flavors of soup ( soy sause or miso or sweet bean soup ) and other ingredients ( chicken or seafood and many kinds of vegetables ) . Fortuntely , South Korea has developed accommodations called Jjim - jil - bang . When I was overseas , I did n't watch English news channels or movies . I could not understang popular programs , as I have no idea about their cultural background . I 'm requied to learn formal words rather than informal . In my case , I 'm exporsed to formal situation too often . During class or school , I hardly get a chace to use slang words . but statisyics is very difficult . By the way I would like to know th difference between ' personal ' and ' private ' . So could you help my studing of English ? In Japan , we have a lot , like candied apple , cotton candy , takoyaki , roast squid , okonomiyaki , yakisoba , taiyaki , creap , pickled cucumber , kababs , shaved ice , and countless others ! ! In my opinon , there have been many changes in american 's thinking . They want chage and achive their hopes by voting for Obama . My hope was also that Obama would be president , and I am looking forward to watching the nauguration speech on tv . I have no doubt tomarrow will be a historic event . It 's origine is a mystery novel `` kokuhaku `` written by Kanae Minato , it got an book store reward in 2009 . I have to get the certificaiton , which is called MCAS . So now I am not working , because according to our Holyday tradition , we must meet our friends and relatives today to exchange gifts . This provides many programs to watch , whearas NHK does n't have so many . And after reading it , we had to explain and summerize it . Due to the pronunciation of a Chinise English speaker . Anyway , I had to follw her explanation and summerization about it . I just stayed silient . I am feeling nervas . I do n't know why , but I drank 2 cups of coffe at 4 AM . Both of them are from the same conpany , are n't they ? I decided to strrugle with studing English , for the same opportunities that foreign costamers had visited . Futhermore , some of the main characters also died from that . I had calss this morning so I had to get up early . . . . Saty up late is so tiring for me . In good weather like this , I whant to meet friends and sit at a fire in nature . onsequense : We decided to go for a trip as a cinsequense of the long discussion . Today I bigin my diary . It was 32 years ago , so I do not speak Engrish . This weekend , I am going to teke a test called ' Eiken ' . It 's always a pleasure to read your guidebooks about any place of the world , specialy about towns I know . When the dorama started , I felt I was having `` deja vu `` ! I am too anxious to make many good friends who come from different countries and from different cultrues . I paied a deposit of thirty thousand yen . Today im very unluck . And in bio I did n't finish my homewoke . ( teacher let 's me go to lunchbox . ) ? ? ? I like it when the sea is smooth and motor motoryachts sail on it . Sometimes you can see ( some ) coulour fish . Peple hung fish windsocks from their looftop and wished for their children 's health and success . If a factory is not managed very effectively and efficiently according to specifif rules , it 's prone to polluting the local air and water . An ideal community should be quiet and have fresh air . My best friend said , `` you shoud just ask him and do n't talk about your dogs . I remenber when I talked about my dogs with the doctor , he almost yawned and I was a littele bit emotionally scarred . However , the man 's attitude twords her is deteriorating . Sor far , you have n't shown any successful results . `` I was happy to het him . When he feels good , his color is lighter and when he feels bad , his belly becomes a brack stripe pattern . The instruments they play are guitar , drums , bass , keybode and many others ! Did a tyhoon hit Hamamatsu ? and I 'm writng a diary just to kill time until I 'm ready to go out . But on a second thought , I 'm learning English online , too , so I can keep studying it ! Of course , I want to keep writing dialy on this site . By the way , after I registeration , I can now use `` PhotoAlbum `` above . It 's defficult for me to express my opinion . I might have hurted feelings unintentionally . I worked for my new job for almost one month , and I contribute many of my `` first times `` to this job . For example , this was the first time I walked to an office that was n't only10 minutes away , or I ate a French dessert named Macaron , and today is my first time going to a photography studio for a photo shoting of our product Althought it 's boring when we are wating , I believe that when we see the pictures on the magazine everything will be worth it . We enjoyed it and feld happy ^ ^ So I can eat those without having to think which dish is cheap or expencive . It was ivory , long sleeved and hagh - necked . Japan has had a taugh experience in the big 3 / 11 earthquake and tsunami . When I see the people 's attitudes toward saving electrivity , I am reminded of our national character . This events often take practiced in summer . Thirdly , I like to make new friends and get to know more abount the places I 'm travelling through . Mobile phones are becoming fashionable recently , there are so many colers and designs . And they have a lot of different fanction . For example , you can use it to listen to music , to take a picture , to use the internet , to arrenge your schedule and even to watch TV . . . I do n't need too many fanction . I have one but I do n't know all the fanction of my cell phone . . . Thesse days , most people have one . Sometimes it gets too expensive . . . We should be carefull when using our cell phones . I 'm looking forword to belly - dancing and also to meeting my teacher next Thursday ! We study at differet places . We both wanted to learn independently so we were seperated by our parents . And second , It is eay to raise cats . I entiely understand that , and that 's why I want to raise dogs and cats . Now , huiman control this world , so we take care of only ourselves . It had n't been stong enough to damage anything but it reminded me of the tragedy of Haiti . usually , I do n't make a habbi of writing in a diary on websites . . . I am trying to look for a sentece so I can ask you but I ca n't find it . It 's not a noproblem , I can read it by myself again . Things intersted me . I 'm sure it will help you broaden your horizen . I commut to a language school . By the way , the illumiation at the racetrack is very nice . Of couse , I am one of those losers who regret their gambling . Hoever today is Friday ^ ^ Besides , I can not read fast , speak fruently , or write quickly . granfa , granma , everybody is welcome ! ! I have a presentation next Tuseday . When she found the truth , she was very upset about it at first . But now , she is looking foward of seeing her baby soon . So I 'm not surprised that she was upset because deliverly would be difficult for herand it 's pretty expensive . Hiroshima is famous for the atmic memorial park and Miyazima . I dod n't know him well , but I want to hear his interpretation of Paganini . Um I wanna chanege my life . I opened the egg pack in the refrigerator and found out the eggs were fronzed solid . I was able to see skycrapers and the Opera House from there . It is clean and confortable ! I would like one day to leave my country and travell to England , but the problem is that my english is very bad and I do n't know enough so I could travel there . . . I will take part in a Chinese Speach Convention . This is my third day isung lang - 8 . I 'm not really familiar with the functions here , so I always sents the same It is good to meet many friends from different countries , and help each eachother . When I woke up early midday , I hada severe headahe because of a terrible hangover . and I asked my friends about heloliday when thery traveled but they said they did not traval often . somtimes they think if they use the money to traval they ca n't use it buy something better . I think we have a lot of beatiful beaches like in Phuket and Krabi ( ? ) . so about me , I did not traval in the south . I plan to go there one day when I have enough money . Studying in Canada is a valuale chance for me to become mature and to [ learn to overcome many difficulties and barries . Last time when my friend and me were leaving the Superstore and decided to walk back to the drom , a Canadian couple drove us back . Dath from the usual flu are more than swine flu which is simply not mentioned . I consider the vaccines , not just from swine flu , itself to be harmfull . Suddently I recalled one thing - - - I have a TEST in a couple of days ! ! ! Afterward , I looked in the mirro , and I liked my new hairstyle very much . As I was passing a parck , I found that my shose was loose , so I sat on a white bench to tie it . After leaving the parck , I continued on my way home . However , many people just stared at me and laughted . At that moment , I thoght , `` What 's wrong with me ? Arriving home , I rushed to the mirro to look at my new hairstyle again . When I turned my back to the mirro , I saw white paint on the cloth of my skirt . So many things have happend since I was here last . I 'd liike to get another dog . I feel [ as if ] my oppinion is [ very ] selfish . . . [ Because ] I 've never discussed about it with my husband [ yet ] ! ( Hasband to be ) . Before that , I need to get my father 's permition . Waching movies and listening to podcast or radio programs or even music would be a great help for the better understanding . These days I think I ate too much so I am gainning weight . I like to drink a cup of coffee when I feel tired or want to sleep , aspecially after lunch ! In my opinion , no matter if teaching ( the ) sudents who have already had plenty of knowledge of English , or the children who have never contacted English before , the techer should recognize the importance of teaching . And they shoud know well the different methods for teaching different grades of students . The Art of Disney Gallery is held outside in Downtown Disny . The Legend of Sant George part - 1 I timidly tried to sink it in the bathtub a few days ago and I timdly tried to take some photos with it in the bathtub yesterday as well . So far I only watch about two movies a week becuase I do n't have enough time . They were `` Graded Readers `` , Penguin Readers , Oxford Bookwarm , . . . and etc . * When I work at the hotel , I will not only need the ability to speak English , but also the abilty to express my opinions clearly while using appropriate jargon . I played the guitar in a band at that time , and we copied thier songs . 80 % of Japanese Boys talke to others with humility and rest of 20 % boys are totally insolent like kids . How about the boys in your contry ? This phrase seems impressive to me in junior high scool The sentence structures are not falimar to me . The cherry blossoms are blooming in Kyuusyuu which is in southern Japan . My husband and I went to see a muvie . Before the muvie , I went to a department store and bought a pretty ring . The muvie was called Gulliver 's Travels . I slept during the reading section and lost about 100 points more than the listeining section . I wil buy more of them later . It 's really difficult to think of it becasue he 's straight . I ' VE HAD ENOGHT ! ! ! ! I 'm glad to hear from you , and I 'm also glad that you ve just returned from a trip to Scotland . I fell asleep last nigt in front of my pc because I felt sleepy after I ate supper . I am planning to go abroad in about one year to study fashion desigh in England or France . Even though most employees are Japanese , some have sent emails to their boss , I have had the oppotunities to see such emails sometimes . When I went for a walk , I passed by a little retaurant . We had a thunderstom last night . So I ( often ) pour some syrop into my Caramel Frappuccino . I 've remembered his free kick at the chanpions league 2006 - 07 at the games vs Manchester united . Because I also have a mooustache and a beard . Now I 'm going to read a chapter of Dickens ' book ' A Tale of Two Cities ' and maybe later I 'll write an entrie about the book . Orginary , I wanted to work in a pub in itaewone that is located in Korea and where many foreigners come to hang out with their friends . Frankly speaking , I expect that there are many beatiful weman . But I was dispointed . One elderly man said `` There is someting under the machine . `` Once I start writing , I ca n't limit myself to an propre amount . Today is Wendnesday , February the second . Voice blog is where you can make your acount and create your voice blog . I have just resistered with Lang - 8 . But I hav n't start new things yet . shight seeing ? MY ASNSWER : Finally I finished one of them , and then I emailed one of my coleagues to ask for his advice . Fotunately , I was not injured in the earthquake . But when I started talking , nobody responsed to what I said . So my topic did n't make sence . In Japan we can see a rabit on the moon . In diffent countries they also see different shapes made by crater on the moon . To learn a forign language , we should try to speak it as much as we can , and in my opinion , a test will push us to speak more and seak better . European contries are near each other . So it would seem to say that men tend to be more of romanticists than women , who tend to look at reality and securelity . I like hime because he is plugged in . One part of our job as an intern was to interface with the customers , which includes introducing the products , recipting the attendees at seminars , selling the Xbox 360 , or hardwares , etc . That 's why it surpirsed me very much that he went for brok on those jobs , expecially on selling the product . And I like to play footbal very much . Maybe wewill developped iPhone app , a simple game . so , , , , we were hanging out till night , walking too much , my lesg were hurting . I drunk a lot of alchole last night . American tornades are also American size . ( Sometimes tornades appear in Japan as well , but most of them are generally small . When we first see American tornades on TV , we are surprised at the size of tornades in America . ) There are many visiter and workers from foreign countries . Our Prime Minister , Hatoyama , said that he would resolve Futenma problem by the end of this month . My fvorite drink is green tea . When someone kndly corrected my text , I feel happy . I learn English at samrt . So , I am happy that her boyfrined is my friend . I am very embarrassed with my weak avility . My refrigerator is still operating now , but I bought a new one because the electricity bill is too expensibe . Yammy ( T _ T ) Some young boys were playing barsketball , while some young girls were listening to morden songs and many old women were dancing . Lately , I have been carzy about DIY . I really like wisper of the Heart espesially from a lot of the movies by him . How could he tell her gilrfriend ? Can you help me write a conversation ? One day my doughter said to me . I watched `` The Big Bang Theory `` agian today . Hi , everybady . Everyday , I have to acheive all kinds of imformation on amazing destinations . I would appriciate it if you kindly help me correct it . < just more formal > So recently I 've started faining weight . I decided to eat to helthy food , eat less , and to exercise . It 's greate . They were above my sholder in height . Unfortunately , the tempeture of water was not warm . I did not know what was happning . When I get home and settele in , I will write about my trip and put up some pictures ! ! ! ! ! ! ! There are some vegitarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabeties . I want to work internationary . I am studing Korean too ^ ^ Anyway , it is a hard for me and I am worred whethr it would hurt their feeling If I ask them several time to repeat what they said . Therefore , I have to find someone whom I can practce conversation with the eldery . I have worried about my English skills recentry because it is one of the most important skills for working or enjoying our lives nowadays . Alhtough nearly 20 years old , I need 10 minutes to write these three sentences . When I write something here in Englsih , I always try not to make a mistake , but still , my entries always get corrected after all > < His homework includes three book eport , an English penmanship , and a math workbook . when I have free time , I always goole words . It was very dificulte . And we are going to have test agein . Although it depends on the country , as far as Japan goes , there are some reaasons why we attend college . They have great influence on children in the same genaration , and those children show that practice leads to great success . The reason why I wrote such an impolite thing is because I really wann go to Singapore immediately . I 've only sudied in Sydney ; my real intension is to go to the beautiflu sea or something . So , probably I can enjoy Australia and I can affrod to see every thing . As friends have helped me correct my blogs , I have gained confidence to go on writting . Then , I prictised my English listening skills by listenning to the New Horizon3 at double pace ( double speed ) . He said that at his work ( Japanese company ) , he is aften told that he is too self - assertive . Sports is not only physically chalenging , but it can also be mentally challenging . Criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Unfortunately , I ca n't run this year , but I 'm going to run in another marathonraca which will be held in my home town . I will cost a lot of mony . I long for thire life . I want to be a millionair ! ! Afterall it all , we discovered that we ca n't recollect ( or : remember ) anything from the last school year ! ) We had a headache , but it 's natural ( or : normal ) , because we had n't been practicing for 3 months because of vacation . But yesterday , I coudln ` t say `` Happy New Yeat `` to my friend . Sushi is a very ( populer ) food in Japan . If the people of the future see the current world , they wouldl not be approve of it . By the way , could you tell me wheter it is not difficult for native English speakers to distingish `` want `` from `` wo n't `` in conversations . I bought a magazine , `` Business English `` a week ago and I 've just starded learning with it . This is my first time at langu - 8 . I want to improve my English level , and make friends from other countries . I look forword to receive your message . But I tryid not to change it not very often . I think the main causies of my not being very successful are - laziness , misallocation of time and tasks , and again laziness . Today , I was working at Lotte World which is similer to Disneyland . * The original sentence sounded confusing . * Although this Christmas I was lonely ( lonlely ) , I hope that I will be happy for a whole year from next year . But I think the Singaporean government wo n't be able to settle this problem unless humanbeings beings successfully develop a technology which can change sea water to clean water . The movie is about the life of Cuban Revolutional leader , Che Guevarra , and his inspirational journey . I did n't know of Che Guevarra until today , because I did n't know much about the Cuban Revolution . We are currently using a customazed program that we developed ourselves . Unfortunarelly it is not very common in my country . By the way , today 's weather was strange , because it suddenly began rainig harshly . I am not famillre with Maiko san , Kyoto became one of my faborite cities . `` Can you play teniss ? `` and `` Do you play teniss ? `` She had even worn a mask from the biginning of May . No one can give us a clear answer about the effect of long - term low level of radioactive explosure especially in relation to children . The most importernt thing I learned is making a special point of ensuring their safety . After they had their afernoon nap , I woke them up and asked them to His medal was bronze indeed , but I thought that he deserved a gold medal because he must have made a lot of Japanese impressed and encouraged by his comingback . He always cracks some inappropriate joks that make me sad and uncomfultable It was a very preasant party . I got a good grades on most of my English exams , but English is still a feild filled with confusion for me . I must control my physical and mental well - being to conplete the Tokyo marathon . I conplaind about my looks to my mother . A few minutes later , a friend of mine asked me `` oh - I did n't recornize you because you looks like different person today . `` Ok . . . . I am now wowking in Tamaki . Sometimes I move my boday if I hear some hign tempo music at home , but I never do that when someone else is there . But it 's ok , I said before , I will profect my dreams , no one can take them from my hands , today I may be stupid , but what about tomorrow ? Different from middle school and high school , college campuses are much more interesting and fasinating . Furthmore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . Usually I read sentences from the TOFEL and literature , but I do n't talk in English , I idrank at my home town . The fugu is deriiouce but a littel dangerous as a food . mmmm , I think MacBooks are not made for cats Ize peninsula where I live , is a warmer place tnan the other areas in Japan . If the Ume tree does n't exsit in the other contry , I think it 's okay to just write Ume . My other favorite things include playing the guitar , eating snacks ( especially chocolate ) , dancing , wathing movies ( on dvd ) and so on . YAKUZA appers in this game , I like Pikatyu the best . But I also like Raityu . My freinds and I often talk about our other friends . Or : As food safety is becoming quite a worrisom problem ( here ) , Beijing citizens are trying to find / locate farms themselves that can provide safe agricultural products . But when I 'm able to comprehend the means of songs , I feel a huge sense of achivement . The Maldives has recentry become popular for honeymooners . A Jaapnese friend of mine called me this morning , almost crying . We hope this maintainance will bring . . . The class is very interesting , I laern English and Chinese . I live in Shanxi province which is locat in the northweast of China . I am a student and I want to learn ingles . I never thought of meet such as great person in the unuversity . The price of poteto chips has increased little by little . Today I went out with my son , and we took a walk under the spring sunlihgt . In the evening we went to the market and bought something to eat . I took many picturs , but I ca n't function anymore . The aftershocks have faded out but another ploblem is coming . This plant sends electric power everyday to large areas icluding Tokyo . Because of this , Tokyo electric company and the gaverment have decided to share the power in order to prevent sudden blackouts in all areas . Ashita wa nichi chu koko ni wa narimasen . Watashi wa Scout no atsumari ga aru masu . I think it fits the atomosphere of anime . Yesterday ( February 3rd ) was `` Setubun `` in Japan . Congraduration to me ! ! Taiwanese people are always open to others from all over the world , so travelers can feel the Taiwanese eenthusiasm very much . I like cherry Cherryblossom . There was a single cherry cherryblossom surrounded by other kinds of trees ! ! This party is sponsored by the English conversation shcool that I go to . About 70 people , including twenty foreigher , will attend the party . I 'm not used to communicating with foreiners . Also , my English is poor . I 'm looking forward to the party , but I feel uneasy about whether I will be able to communicate with the foreiners there well . I hope to make friends with foreigher at the party . Perhaps some ( someone ) may want to ask me why I worried about my relationship with my girlfriend , as I wrote several days ago here , even though I beleive this . First my throat was jutst a little bit sore , but now I have got a cough , a runnning nose and a seriously sore throat . As I said above in the title , I fianlly got a job = ) But the surprise is that I am not going to work in Korea . I am leaving for Vietnam next month to work there . I feel I shoud take care of myself more carefully . . . . Nonetheless , after the Muji Revolution , Japan grew as one of the developed coutnries in teh world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glamor in the Muji Era when Japan was the king of Asia . We had to do sth in the room , so we staied in our room for 1 hour . They are athors of several books , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'll introduse myself a little . And also I know that the JLP teachers have spent so much time prepearing for this summer course . Acording to my memory , I might heve done about 3weeks ago ? I met my friends in my high school class , went cmaping , experienced heart - breaking . . . I do n't know the case of forein countries , in Japan many high school and university students tend to start their first part - time job in it . My English is not good . There are many words I do n't know and I do n't understand grammer . rain was like one of Tuyu and called Natane Tuyu in Japan . I went to Voncouver for 2 days . Yesterday was the last day of my Mailitray service . It was a very happy ending for a long hard year . I have gone through some very rough situations The 1st word is ' I ' whenever I speak English or I write a dialy in English . Im went to hot yoga class yesterday . What is the best way to hundle conflicts ? Cultural differnces often cause confrontations . Even in a classroom , thiere are cliques . When we are in a conflict , we tend to reagard our own opinion as right , Firstly , we can seach much faster for information regarding things we want to know about by using the internet . Recentry I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . And , Tasmaniasalmon salmon tastes very good . I am quite luckly after all / though , my college classmates have had a lot of interviews , however they did n't receive any offer yet . I seached for information about Los Angeles at home . I had an orientatation for an English conversation class just 45mins ago . I was asked some questions in Enlgiswh from an American Teacher . just lagughing and chatting or thinking deeply about our future . I do n't have the right volunteer spilit . If I can control my emothion , I will be released from my pain . I attended a seminar about social networking services a few days ago , and one of the guest speakers indicated that human beings ' abilities are atrophying while information and Internet technologies are advancin . This is because the evolution of technology makes it easier for people to solve problems . All these technological advanes changed our life for the better , but at the same time we should realize we are becoming lazy and our abiltity are atrophying because of our invetion . I 'm stressed out by many things and have nou energy . . . : ( = more natural I sold for 20000Yen a CD boxset of my bussiness teaching materials , which I used to listen to There were so many people screming and yelling . They reproached the director and actors for lating the premiere so late and so short . That day was my birthday , so I deside to eat unadon for my birthday present . I like thinking about how should I take picture to makes averybody interested Can you thinking about what 's a different bitween them and you . But sometimes I forget to try , so I think I should try to something againg . I hope this wabsite will be help me with my English skill . I went to a Chinese restrant downtown , with my friends . how much it needs effor to make it something But It is hard work for me to write what I 'm thinking promtly . On top of that , speech delays always make forienger confused when I 'm speaking with an American friend . And another reason the friend is confused is lack of vacabulary . It is difficult for me to transfer the meaning of what I 'm thinking completly . However , I konw that it is unhealthy , so in order to be a healthy and lovely girl , I decide to eat more of a variety starting tomorrow . Lastly , I want to make forigner friends . I ordered foctory size spaghetti with rich meat sauce . Konbawa . Tree lieaves have turn into red and yellow . you can feel Japanese autumin if you look at . but sometimes , I 'm impressived by it . I wanted to wear skiny jeans so I went on a diet . I had to stop losing weight , but I 'll keep excercise for my health . Actually , computers wer n't my frist choice when I was invited by Shaoguan University . He has a big desease , cancer . . . School festibal . It was a very big ivent x - D Finarry , I will spend less money if I live on campus . But , as you can see , my English level is not good enougt to enjoy English . For example , watching CNN and BBC news or listening to English songs . It 's a rare oppotunity to talk with a native speaker of English , most of them come here to study Chinese . I had been introduced by another Japanese friend and already knew him , but I had no time to meet him then , only knowing his celler phone number . But he wants to speak conversational Japanese fruently and he has plans to go to Japan . I unblanced my rhythm of life a little . I will write about that very tiring trip , some other dialy . What 's a good way to joing the conversation ? All of the band members have already had expierience with other musical projects . worked with many differet musical styles from Ska - punk to Hardcore . electronical samples . So I had to look in the dicshonary many times . This means I have to read about 100 pages a day because I justy started to read this book today . Even btter , I can assign different purposes for a few cups and only use one with its assigned purpose . I was discharged from the army on Octobor 31st , 2010 . It made me desperated I feel enphoria . I asked eneryone : `` Would you add me on Skype ? He is always full of enagy and a real hundful for me . After dinner , we went to a caffe . It was a great movie , as many people including my frineds said , but it was a bit complicated . I have two turtoles and I have had them for about 15 years : - ) Their names are `` KA - `` and `` ME - `` . * Lang - 8 is very good website for learning langauge . I found it in a magzine . Recentry Lang - 8 has not been running smoothly . It 's a little embarassed to play it when there are a lot of people in the elevator hall . So let me intridue myself ! By the way , I took part in an internatinal party in Ginza , Japan the other day . We can taste delicious foods in Hokkaido , such as chikens , Japanese crabs , shrimps , various vegetables and so on . I 'll look forwarad to it very much . When I made a woolon tea with a tea bag in hot water as I usually do , I noticed a diffrence in taste . I could n't stand the diffrence in taste , so I went to an electric appliance shop to buy a water purification appliance . In a part of the Fukushima prefecture , which has had a serious problem with nuclear power plants from the March disaster , thosands of residents have been told to leave thier homes . In adittion , my laundry wo n't dry because of the humidity . I performed two songs as a band member in the universty festival last year . We all have beatifull penmanship . ( or handwriting ) I found out how good mutton tastes when I lived in China for three years for bussiness . Anyway , mutton is less popular than other meats , like beef , pork and chikin . in Japn . I do this so I can have a lot of berad , even though I 'm on a diet ! Many Japanese foods are sould on the street , such as Tenpra , udon , dango , kakigori ( shaved ice with syrup on top ) . I deliveried to six families for only two hours . During the meeting , a profeccer and I discussed a way of teaching science . Once the mark is caused , it is permenent . So it dameges a lot of things and many people feel uncomfortable . When Joy entered Mcdonald 's , Ji and Min were alread sitting down . This was her first solo cocert and the first CD was released on the same day . so my assey are always basic level . It is nutural phenomena , is n't it ? Please read my dialy . Today I cooked a cheescake . I pretened to call a policeman . A Chinese women bullied a kitten like people do the laundary . My dog died and I lost my job , my bussness failed and my money ran out . and did not do work out as much as usuall . and after dinner , I went to the health center which is located in baseroom of the dormitory . and I excercise with my best effort . I appriciate your help and advice . Althought the temperature there was much more higher than in Taiwan , but the weather in Taiwan is usually hot and humid , and that makes me sweat all the time and feel unconfortable . It was July 4th yesterday , the bitheday of America . I 've been trying to figure this out : what do budhist monks do when they encounter sexual lust ! ? I have pearents , a brother and a dog . It 's been a long time since I last logined in to Lang - 8 . My major is informatics , which is rather new and interdisciplinary , and includes many disciplines like phylosophy , contemporary thought , science , engineering , design , social sciences , and so on . I want to make friendship with many forigen people I could n't canceal my excitement for this cummunication , because it was my first time to cummunicate with foreigner face to face . We only briefly greated each other , and afterwords , there was a long silence . I felt that it had been a complete faluer of a conversation . Anyway , I 'm still coufused about how to use it . I do n't have enough willpower to study more and more in the moring , wasting a lot of time . Fortunatily , we 're on vacation this week and do n't have to attend classes . That gives me hope while whatching dreadful stories of the world . I guraduated at a univercity this year , but the graduation ceremony was not held . And I like taking picturfes , traveling , eating good food and dreanking , haha ! I want to speak Enlgish like a native speaker . How do you studay language ? It 's a piece of software to memorize woards and phrases efficiently . Please tyr this method if you would like to learn a new language eficiently . You can surely memorize meny new words ! Apple 's technorogy is amazing but I have n't yet learned how to search for words and write at the same time . If my freind has time , we 'll catch ball or whatch some games . My thesis was mainly about the relationship between languages and colors in old Japanese , morden Japanese and morden English . If you are one of the people who lent me a hand on my survey , I really appriciate it . Today , I had three classes ; English , Japanese and Chainese . Besause it was the weekend today , many people came to the restaraunt . Sometimes people from foreigh countries come to the restaurant . Americans , Koreans and Chainese people . Yesterday , I had a class titled `` perfect pronounciation `` at the university . His / Her birthday is tommorow . I 'm looking forward to tommorow . When I had to pay , I foud that I only had 4000 yen . I have not been a student for 9 years , but I will never forget this holliday ! Inside there were 3 motours , a metal frame She told me about her frinds that went to America to work , tranvel CROSS OUT ] America [ / CROSS OUT ] and take care of the childrean in the U . S . A for one year . Yesterday my friend told me about Lsng - 8 . But when I bring her out to the street , she is so crzay ! Then my mouth opened and fanally I smiled and said to myself , `` Thank you , my wonderful friend from Lang - 8 . `` It ' very dificult . Have a good weeken I think I will go shopping and look arond the market . I would like to buy a new magnet . I hope you have a good weeken . I think it is good for me to inproved my English . My Enlish is so poor ! we just conect to the internet . In Februar 2010 , I bought a new one . It was a good oppotunity to improve our relashionship . My vishon Okinawan poeple do not have good a image about soldiers of the American military . I thought he had not forgotten about his exx - girlfriend and still loves her . So we became firend . Someday , If I can speak Enghlish well , I want to tell him thanks and what I think of him . I want so much to program in other computer langages . Sooo sweet and jucie . 4 , Click the `` Upldate `` button and that 's it ! Their expressed policies in the manifesto are as follows : The government subsidyzes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . Meals are more expensive than they were before the Spring Fastival . Fourth I chat with a guy in a QQ group who ignored me after we exchanged afew words dued to my bad English . My mom has 3 bothers and sistrers , and all their family will come back to spend new year togehter . They do n't know how to speak gentaly and everytime I just feel so umcomfortable and try to escape them . Althoug we are good freinds , I still think it 's embrassing to show her my room . That made her sick eventully . In addition , I dont n't see the reason why people are eager to volunteer work for poor children and sick people in another country . People are probably just exicited to visit another country even thogh they are going to waste a lot money to visit . I tried to make a plan on friaday , but it did n't work haha becuase we dropped by taco shop . And I saw the of owner of Ralph 's grocery store 's mansion , and then we went to my friend 's house to eat britto ! However , while we chiled out and laid back on the sofa , they decided that they did n't want to attent the party . The population is heavily concetrated in large cities . Becouse in my English classes at university we do n't practice speaking and writing . It 's a very beautiful and yet awful movie about nuculear ( anti - nuclear ) weapons , and it is also a bad comedy . My bad habbits I have some bad habbits . But recently I have tried to fix my bad habbits . Since I 'm not interested in studying English , I did n't study English after ( since ) I gruduate from high school . When I went into the shop , I was surprised about their manu and mood . The romm is packed with people . If you eat too muh , you wll pack on some pounds . It is a big city , and big cities are nt made for living in , they are made for work . Except for the many shops along the street , there are many dolls made from bamboo and paper ( papar mache ) hung from the roof It means mountain girl ; yama equall mountain in Japanese . They wear colorful sports clthes with pretty bags and shoes . Anyway I ca n't recomend climbing that mountain in the summer . I ofen felt thrilled and could enjoy all of those . It seems that this usually could be complate recovered by 30 . He said also he should have painted ealier . I went to karaoke with my firend ! The web covers the entire world . Many people have their own PCs which contain multi - language enivironment and are always online . Today , I Went to `` Shionoe `` with my garlfriend on a motorcycle . I argue that meat is better than fishses for the following reasons : Lately , I have been getting up at unregular hours . Wedding / marreid ceremony It was sobad that my English teacher 's pronnunciation n't so good . According to the weather forecast , the typoon is moving Northwest . However , no matter how many companies I appied for , I haven ' t I hve to learn how to use it better ! Today we are having a forum ( discussion ? ) on the reaerches that my lab has been conducting ! I reseigned from my job last month and I will work in NYC starting DEC 31th 2010 . I like surffing , running in the early morning , and going to musicals . But many pepole cry over the naughtiness of young people . I like Michelle the best because her character and behaviors is soooo cute , especially when she is talking with Uncle Jesse . The video was about a person who tried to bungee jump into a river that had a cockodie in it . Frist , I was not sure if it was a fack video or not , but I wondered if the man who did it got eatten by the crocodile and was hurt . I ran ten kilometers up along the mountain and then down the other side for another ten kilometers . The mountain I was running over today was a symbol for Buddist prayers . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide opend view makes me feel freed from everything . The weekend is over , I do n't like Monday 's and I 'm logging in lang - 8 to see wheather someone corrected my diary but the result let me down . I am looking forwward to meeting them . We could sing to the accompaniment of a guiter , which the master played . Because I will want to enter univercity . I want to study biomecanics . Although I have nothig special to write today , I still feel like writing . if you 're intrested , then please pay a visit to my page and take a look at it ! So ` native English speakers ` refers to the Amrican . I thought that more people would come here for sightseeing and the number of sucide here would decrease as long as the path was maintained . I think that this is a part of the reasons why sucide happen here besides the not maintainig path . The atomospher was very quiet . A littel farther from the Forest Trees of Mt . The board said that those caves were used to preserve foods iseveral hundreds years ago . I was shocked at the news about Asakusa Samba carnibal 2011 . I have to prepare some boild eggs . I can lon in on the weekend ! ! Got an iPod touth We were studing together , and one of my friends said , This mornig I woke up at my friend 's house . If it was n't raining , I would go to a sports event of a rocal junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operationg hours of their airports to accommodate passenger and cargo flights from foreign countries . Residensts near the airports argue that there should be curfews . Discuss both points of view and give your opinion with ( supporting ) reasons . But now I still have a generalized musle ache . . . I orderd black ones but gray ones arrived instead . When I saw them on the internet , I coulod see that they were black and the description also said that they were black . The cargo of silver weighed abouot 200 tons . I am a university student , but I am not goot at English . There are many types of drinks that tasete like beer at the supermarkets in Japan . These drinks are so - called `` non - alcholic beer `` and the ingredients include sugar , calorie , among other things . I was advised by the doctor I 'd better not eat or drink too much , take moderate exercises , and avoid a stressful atmospere as gout is a desease caused from an unhealthy wy of living . I can sometimes hear both of them singins at the same time . If it is nice tomrrow , I will fly the Koinobori . For example , I like to invite my friends to my place , enjoy my favorite sigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( it souds like I am a teenage boy XD ) . Living under their careness make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . I was very sad and I rememberd then what happened yesterday . t was a tiny mistake but of course it was my mistake so I aporogized for it to the doctor . For exsample . . I played some games online and then studyed English , and played the piano . Yoo seem ( to be ) happy . My job is loaning out electonic devices . But we only have few custumer , about 10 people a day : ( Fortunatly , the chinese New Year , which has eight holidays , is coming soon . my family consist of 5 memner : my father , my mother , 2 younger brothers and I . I will graduate from my unniversity in one year . In fact , I am a little worried about my job that I thougut was so nice . I want to brige Japanese companies and oversea companies . The KIC is near by my house , where KIA has some voulanteer language classes , we call them `` Englsih table `` , `` Korean table `` , or `` Chanese table `` . Since he ca n't speak , he is using a respirater . I 'm glad if you enjoy reading my dialy . I tried to change to nother bus to go to my house . It was my telephone and modeim to connect to the internet . I 've got a sore throught from the cleaning spray and my hands get rough from washing . The weather is very good and very confortable . So , most people have canceled their cherry blossam festivals . Do you know a Philipino singer , Carice ? When she was sitting in the airplane on her way home , just before taking off , the directer of the competiton entered and asked a flight attendant where she was . And the suiside rate has been increasing in recent years . Moreover , because of its efficiency and sonvenience , we use technology even if we can do without it . And some traditional arts are in danger of disapprear because young people are less intersted in them . One sign is the blooming of spring flowoers . I thought I am proud of him , and I am a very lucky mother because of I have a great husband and wondeful son . His attitude looks as if he has no enthusiasm about enerything . Relationships are sometimes obsucure and many of them are formed impulsively , such as friendship and love . I think that I ca n't sleep becouse of the heat . But I 'm confused becouse Italian is reading Roman but English is not . Then he will become a member of the Pharmaseutical industry in Japan as well as me . He will ues English in his work too ! Essay : A soulution to Overcome the Threat I had to applogize to my customers for it . As usual , I was trying to use it but unfortunately , today I could n't do that because my office web security programm blocked access to Facebook . She got her driver 's lisence about a half - year ago and has n't driven car that much , but today , it was her third time to drive long - distance . I accidentaly came across the movie when I was surfing you tube . When she reads it , my wife is so consentrated that she does n't hear my calls . It sounds more natural . Hello all you beautiful boys and girls or kind - hearted men and wemen . I 'm a sophemore now , and will be a junior after the summer holiday . Anyway , the TEPS score appeared on TEPS hompage . Today , I ate lunch near my universary . The Brihish meseum is famous all over the world . The meseum ia famous for art . the meseum The man is very embrrassed He deldtes the picture from camera . As you probably know we pronounce a word as we read it : in most cases there 's a corrispondence between the sound of a vowel or consonant and its graphic symbol . The announcer was joking about our difficulty of pronouncing the noun of this volcano , expecially after listening to its real pronunciation . So he bought clothes at Abacrombie and Fitch , and finally we went to Universal Studios . I think Destiny 's Child , who split up in 2005 , was the greatet girl 's group ( ever ) . As I mentioned in the privious message on this site , I 've been practicing English by listening to songs . I hate studying English writing and grammer , but I like to study speaking . I ordered vegitable curry which twelve kinds of vegitables were included in . I laughted when I heard this . : p The way of my shopping has been convenient , meanwhile ever sinse the international company came to Japan , many local bookstores have been going out of their business . Lately , I 'm fascinated with `` Wicked `` , so I watched thier videos . of MLP figures still nice , but I 'm not atrracted to them so much . . He was very cheerful , active and fun to talk with ( all adjectives ) , so that he entertained his . greatparents a lot . butI have a difficulty still communicating with foeign people . The supermaket that is named `` FOOD ONE `` , is one of the cheapest priced supermakets around here . Meets and Fishes are importted by the USA or China . Today I got up early to eat brefrest . I always get up late during winer Besides today , I have to do two kinds of winer vacation work . The gugle satellite captured something like a snake which is almost 30m long . I think there are many misteries in the world . There is a very interesting mith in my town . 200 years ago , a wise Buddhist priest foretold that my town would be destoryed by a huge flood . People believed that it was just a mith befor one statue was found . It is a very intresting myth . Yestarday , I participated in a conversation party for exchange between English speakers and Japanese . I na speak ! It has been more than 10years scince I graduated university majoring in English . Sometimes , I got assinments to have interviews with exchange students who spoke English as their mother tounge . However , after graduation , I have n't had many chanses to use English . All of these are good methods to release your strss . I alomst havd no time to relax . . . For me , it realy helps me to understand the English . Also , the correct gramer . In my opinion , even if he was just a victim , he has to recognize the weight of his responsibility and the influence his behaver on the society because he is the Kabuki icon . If I was rehired , I would not be able to go abraod . ^ ^ ; ; ; ; Today I went to a kimono shop with my mother because I intend to wear one to my friend 's weddding . But Japanease people seldom have a chance to wear one . I wore one once at my coming of age celemony . But I listen to a various music , Pop , R & B , Hiphop , Blues , Countly , Reggae . . . . Shanghai noon is under a lot of rain today , my friends did n't catch the train , she was supposed to go to xian taday . The capical city Tokyo is a big city . There are many plase to go . Yesterday , I went to city hall to recieve my passport . Toda , I had a part - time job . It was hevy rain , so my toes were soaked . I expect to go to Syabu Syabu with my friends next Tuesday . It is so interseting for foriner . My friends are foriner so I think they will be interessted in that . Occupation : univercity student Right now we have a long holoday in Japan . For example , in an elementary school you can learn how to comunication not to mention studying , and you can learn how to cooperate with your friends / classmates in junior high school and high school . When I speak English , it takes a lot of time to come up with right words so I guess I shold train my English so as to speak instantly . On the first day we went on an excurcion in ( the ) Kremlin . In the evening we went to a water park and water - sked . On May 7 we went on an excurcion to the city . I almost go to the gym everydey before going to the company . It is prety good . Podcasts are amaging ! ! ! If I start doing this , I will get to know exactly what I am eating and exactly what my calory intake is and I will feel bad when I eat a lot . have been learnig Japanese . `` It 's impposible because they do n't listen to me , especially mom ! I so apprecitated that I had preapared TOEFL test , because it gave me a lot of valuable experience in Reading , Writing , and Speaking English . Without the TOEFL experience , socre , and training , I could not have gotten those jobs in just two weeks . I want to send a cristmas card to my friend . Before , I heard that a lot of Finnish like Robert 's coffe , is that ture ? Merry cristmas ! The westen body has long arms and legs , and big hips . I have a plan to leran English . Frist study grammar second read anything in English third watch a children 's movie finally write in my diary everyday . When lunch time came , I was going to go to the restrant . On the other hand , social enterprises can obtain funds regularly because they are run through the business mothod . Disappointedly , I could n't enjoy tasting wine when I visited a winery , because I had to drive a car on the way back home . I went to my university 's hospital even thought today was Saturday because that 's what the doctor said to all the members of ou team . The messages told me that my card 's number corresponds to the card 's company 's , so they canceld my orders . Last saturday I 'd have a private concert with freinds for piano . Helll . I wanna get an internatinal license . I want continue my university studies , but I am affraid that I did not do well on my exams . It is not a very toching story , but I have watched the series since I was 10 year old , so it made me cry ! LOL I will definatley come back to this beautiful country again ! So , I want to communicate with people of defferent cultures and countries . So , I have to learn a lot obout manegement a buniness . I know that it is not easy to sucess . I want to improve my abilty to make sentences . My favorite person is Ichoro Suzuki . First dialy in English Today , I am writing a dialy in English . Today I sined up at this site . I can check your dialy journal written in Japanese . I thinkh hes ' got a good personality and is well grounded . When he anounced that he was getting married , everyone blushed . A Welcom Party we talke in english . I saw the corrections , and I had to start to translate with google translater . I use google translater when I do n't know the words . Jon always teases me that my Enlgish is regressing / getting worse Impactful tiltles ? ? ? Tourists can enter a limited area inside the mosque , even a non isram believer . It was a drink that I had not known before coming to singapopre . It is a cuppchino of tea version ! Last night , our teacher was a blocak man from Botswana . I 'm moving to another seet . If I want to thank you , I would write in the card , for example , `` Thank you for cherring me up : ) `` He 's a menber of a group clled SMAP . I submitted an application to a new job last manth . I have lived in Hukushima , Sendai , and Iwate before . It has been inconvinient to go around the Kansai district from Hakodate since the Leaman Shock . . . Today , I dicide to start a diary in English , to improve my English skill . My favorite drama is `` frends `` ! I 'm glat I found this useful site . I was part of the staff at a wedding celemony . Wearing perfume is not familier culture ( / common practice ) in Japan , so not many people use it . It was quite expencive , but it feels good though ! So it 's OK . You may konw that the highest mountain in Japan is Mt . North is a fascinaing mountain becouse it has many alpine plants in the summer time . I 've been into mountain climbing for 5 or 6 yaers . GCP means `` Grobal citizenship program `` . When I went home , Paster 's waife gave me a ride home . I thout that it would be convinient for me to go there by bicycle . We were confused and mad , but we had to obey the indecation of Doctor F . The gruop that has the shortest time wins the championship . Tere are the examples in my textbook . I 'd really like to thank you for giving me a good oppotunity . I had a gread time . I had better fhinsh now and go to the bed . It is a practice course and shorter than a real golf cource . Well , this post is not about the date of Hikoboshi and Orihime ; who are the couple of the Tanabata regend , but the one of my daughter and her boyfriend . He is a coffee beens buyer from a different company I am worried about tomorrow 's wheather . Do you still remember me , the day it was rainning ? First we were a little bit nervous to make conversation with each other But 30 minites later , we talked a lot and became really really freindly like we were then . Almost all of our firends have already gotten married and had children . . ! We got imformation from the service desk . I tried to conect the internet , but I couldn ` t conect it . In conlclusion , technology is useful for education , but we need to have the ability to sellect information . In my office restrant , we can have lunch for 500yen . However they ca n't drink after a gig ( Because drunk driving is a crime in Japna ) . Finally I recommned a cello for you if you have a choice of a cello or a contrabass . The Web is Degenarated Actually , it 's given us uncountable benefits and an unblievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on thier cell phones and who are absorbed in the web for long hours , not to mention myself . The tachers are jentle and nice . There are lots of evets this month , for example midterm examination , school excursion , and club activities sports day . Tret ' yakov 's Art Galery is in Moscow . He liked Russian art , and he bought paintings from great Russian paintists . This museem is named `` Tret ' yakov 's Art Galery `` or , in Russian , `` Tret ' yakovskaya Galereya `` . Now the Tret ' yakov Art Galery is a great museum in Moscow . They look at pictures by great Russian paintis . Tret ' yakov 's Art Galery has not only pictures and statues , it also has Russian culture and history , becouse these pictures are a part of Russian culture and history . I will add photos of Tret ' yakov 's Art Galery . Anyway , today is my first day in londonm . Plobably they will become sweet tomatoes : ) The yonger sister , Bess , likes to travel all over the world , and got married to a second - rate ( horn ( trumpet ? ) ) player . So we should try to ( consider / think about ) the yonger sister 's point of view . Bess , the yonger sister , has to depend on her elder sister . If I have the oppotunity , I would like to use slang words from now on . I would speak to my freinds , `` Hey what 's up , dog ? `` If you have cool hat `` That 's hella cool `` If I get angry at my freinds `` Hey stop trippin ' , dogs `` What would happen if I use those words to strangers ? Many people visite there . Still , I prayed for peace in desaster areas in Japan and all over the world . It was an intansity 3 quake . I want the webmaster to delete those pages , because the pages are not so usuful for me . I 'm just a 19 - year - old college student , and I do n't think my abilities in my native langage are any better than many other members from Japan here . What do you usualy do whilst you 're on the train ? As you know , Indonesia is still depeloping itself as a country and I feel their enthusiastics every day by seeing people on the street and huge traffic jam . everone said things like , `` What is your name ? `` , `` Where are you from ? `` and , `` How long have you been here for ? `` among many other things . Most of members came from European countries such as Germany , Italy or Rumania and they speak English really well . If we were in foreign contries , we would have to ask someone who is unknown to us something , for example , how to get something , like a vehicle , how to use stuff , or the ways to destinations . But how is it in your coutry ? The first exam , called `` the center exam `` , is held on Junuary 15th . It was the first time taht I used an Internet shopping service . My shop is a salad shop , therefore my lunch is always salada . I ate the salad fast , and when I opend the hamburger bag I enjoy the time when I study miocrobiology . San Francisco is a very exsiting city and I 'm engoying some activities here . I 'm lucky to experience the rare ivent . He did not know whether the post office ws nearby . It 's hard to explain why I like rany days . I belive that TV has reduced communication among famillies . I dought whether the daily homework would help students Diffrent clothes sometimes influence how people behave . I wish that this fundraiser will help to cheer on / support Tohoku people . The cost would be compared / compable Despite resistance / resesiting I learned the grammer ( preposion + ~ ing ) I 'm Russian but I actually now live in Moldova ( it is at the border with ucraine ) . I now have an iPod touch , a Mackbook , an iPhone , an iMac and an AppleTV and I am looking forward to the up coming new iPhone ( iPhone4S or iPhone 5 ) . Apple funs have to be buying their products again and again like me . She looked outside and said `` Snow ~ Snow `` with a very happy smail . And I 've realized that rassy , an Indian yogurt drink , is necessary for eating hot dishes . First of all , it requires a lot of excerise with mental control . I am going to learn how to use phoshop . I will spend my time today looking arond Photoshop . I would like to become good at it in a short time . I went back to my hometownin for vacationm . We can buy many prepared foods at the glocery store . More and more women are getting stronger and scarely than before and beat their husbands . I am waitting for your reply . Wecome to our club Wecomre to our basketball club . We beliveve you will jion a wonderful club . A strong person will bacome stronger . Everybody just thought that was a pretty strong earthquake so it would probably just cause a bigger Tunami than usual . Anyway , I learned several expressions and words which I 'd not been faimiliar with until today . My parents and I go to a worship sevice these days . Engrish is difficult . I was reading a Japanese comic yeaterday . In addtion , I went to Ginkakuji , Kinkakuji , Kiyomizu temple , and so on . Then I had a delicious denner near Kamo River : ) The delicious denner was ' tofu ' . I lost my earring agein . A is most adavantagious for them to enter nersey . I had a job interview in a Japanese restarurant . I have to go back to Japane in the middle of April to attend my sister 's wedding party . Today was the annual meeting for the presentatoin of research and development in / at my company . The distingtive yellow circles on the flecked lamp betrayed the lack of dusting . We prepared ourselves for the worst , because youth hostel food is n't renowded for it 's quality . > < Everyone looked suspicous at the fish and chips . I have three yonger brothers , so I had dinner with them . But I think that I want to speak that langage , so I want to study hard . He and I had a trabble today . I wish to memorize Qura ' an and remeber all its words as I remeber my name . I wish to puplish a lot of books and become a famous author . Before I did that I was listin to many different Islamic nasheed by English speakers like Yusef Islam and Dawud Wharnsby . A magazine guided me to this fanastic web site , so I 'm in . I do n't know how many people read my dialy , but I welcome you all who clicked my diary . I started writing in a dialy on this site to practice English . I will write about a festibal for children aged 35 , 7 . Today , only girls aged 37 participated in the festibal and only boys aged 5 participated in the festibal . Many families take photos of their childeren in pofessional photo studios during this festival . As she said , there were simular korean food , and it was the same in texture . About Yestaday I am a homewife . I 'm looking forword to seeing us graduate . I like taking pics and litenig to music . And sometime I draw peple and animals . I 'm eating more vagetables . Could you have my written work in the language corredted ? My aim of this year is to stady English . Today , I will go to one of the biggest shopping morll in Tokyo where I have lived for long time . I took a usual train . Then I sat next to foriegn a girl . I excited for I colud speak in English ! It 's no wonder that the Arabic people at the lawer levels can hear English better than us - - they 've been living here so much longer ( than we have ) ! . Bom hit Tom . We enjoyed playing gemes and talking with our friends . 9 years ago I went to the United States as an exchange studens . I 've aready been to Oosaka this summer so I ca n't travel too far again , however , I plan on visiting my friend 's house . I have to be carefull not too spend too much money in the meantime automatical translation is not accurate . . ? I 'm writting this entry by ( on a ) laptop on the train . When she came to the hospital she looked scaerd but stayed still . she repliled that even her slightest move would stimulate it into rustling There were beautiful ocean view and cozy atomosphere in that . I think we can be more free , espesially in Japan . Occationaly , I open windows even in winter day ! English in China is very importamt for my job , so I continue to learn it in my free time . I am so pround of myself because of my small diary in English , although it 's infantile . Recentury , I have been very busy everyday . Then one Sunnday , I was invited by my friend to go for a drive . I think my family will appriciate eating it every day . Personlly , a friend is a person who makes you feel at ease , or make you feel at home . I 'm glad to join Lang - 8 ! ! I hope I can make some firends here . I was very happy yesterday , so I asked my room - mate , who was sitted nearby , to take a picture of me and my sweets ( but this picture let me look fat , haha ) . This surgery lasts only 10 minites , but is it safe ? ? ) He is working for a Japanese company in Shabghai now . I am goint to accompany my Mom to Japan or Cambodia and study TOEFL regularly and hard . Everybody came from different fields and backgrounds but they all have the same eagers to learn new things and make breakthroughs inlife . So now I feel counfusion and flustration . I heard it from my co - worker only today and I was so suprised because she heard it last Firday but it was the first time I had heard of it . Althogh before I could not reach my head to the floor while sitting down and opening my legs , now I can do that . * Video Grid - - smilar to Picture Grid . English that Japanese high school students are studying is really grammertically difficult . I remembered almost all the English grammers , but still , it is sometimes difficult to tell where S ends and where V goes . But this word is actually difficult and it is wierd if I use the word when I talk with friends or children , right ? Yey . . . I am so happy today , because my company got a big contract this morning . It 's big news for everyone in our company . It means we have things to do , and do n't need to be afraid we will be lalaid off , or forced to take unpaid leave . ^ ^ , At present , the globle economy is so bad , so many people have been fired , so it 's helpful to get a big project in our company , ha ha ha ha It was slipepery and dangerous . I 've continued to learn English , but my skils are n't looking to good . This surely incruding me . becouse Japanese does not have words with those meanings . I experianced various things both good and bad . So they came to my house and celeblate the new year . Every year we watch Ekiden where collage students run long distance and pass a batton ( taski ) . my cousin 's childlen came to my home for the first time . Third , the author described a ultra malathon race that took place in a mountainous area in Mexico , where American top ultra malathon runners and Tarahumara runners competed against each other . I began writing a diary in English at this web site , and try to correct diaries writen in Japanese . They looked like people who belong to karaoke clabs . These are quite expencive here in NZ . I usualy ca n't afford to buy these things . Next manth , I will make and launch a model rocket . My boss who has good sence of humor and is nice guy allows me to study something when I do n't have any job . I went to an English seminar last saterday near Tokyo station . But that seminar was a good opotunity for me , as I was able to meet highly motivated people with a higher level of English than I . I will sit for a TOEIC TEST in Novemver . Ran to th public bath I have girlfrind . She told me to let our relationship return back to when we were frinds . I 've got to appriciate that . I work in big brewery in Poland as a chief technolog . I did n't think I will like the book cuase romantic novels bored me There are ear - clearn servis in Japan . Clearning your ears feels good . What happens if you do n't clearn your ears ? The tradisional japanese earpick has a top of cotton or Daruma . I printed out my diaries with your correctings . I 'm reviewing my diaries and studying English by reading many people 's correctings now ! ! ! I hope that I increase the range of my vocabralies and how to express myself . It was 9 p . m . when I arrived at the centrul of Bergen . I have had a spech disorder since when I was 3 - years - old . I am a saleman in spite of having a speaking problem . If I were not a stutterer , I would laught at it . I did n't even think that I would become a saleman . I have met several people who overcame stutering . They said that being old and having experience counts so I belive that I can get over it . I did n't feel bad at frst . basically I lost attension easily if I had to read shakspeare right now , I would probably die instantly . And sice I 'm a person who easily lets distractions get in my way , it 's good for me to learn how to use my time more efficiently . I have been studying Chiense on youtube . On 31 Dec , I ate Soba ( Japanese noodles ) and watched the Kouhaku song competion TV show . In an onsen - hotel housewives can relux to their heart 's content . It means they can escape not only from daily household choires , but also from having to do anything for their family . our food self - sufficinecy rate is really low , compare with other country . If my sentences do n't make sence or are grammatically incorrect , please correct them . They had come from England , Canada and Amarica . I was very nervours , However , my teacher is very strict with me and she always says to / tells me that the facial expression of my painted cherubs looks so weired that I have to repaint them . But I believe that if there are diffrent forms , then there must be some ( We were able to listen to the sound of the waves while we soaked in the buthtub . ) ( Some friends talk about their seacret stories , usually relating to love . ) ( I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the buthtub . ) This prroduces good harmony with white bread . Also , I like chocorate paticurally the bitter kind . Are my feelings straing ? ? Turnitin is a detector for bad academic practice or pladiarism . If Turnitin warned you that your work is pladiarism , you must rephrase the sentences or reference where you borrowed otherpeople 's ideas . Otherwise , you will lose a lot of points and , to make matters worse , you will fail the course immediately . it is like a child 's drawing and I am so embarrasssed . Actually , at first I wanted to study phsycology as my major out of my hometown . As a result , I followed one of my best friends to the university that I 'm stuying at now . Becouse the bang hung in my eyes . These clothes are a necessaly but they are also a little expencieve for me . Now , I look at my game collcetion and I ask my self how did I play all these games ? It only bleed for like five minites or something but it was nothing bad . Now , I really want my wife to be a Japanese cartoon whorshiper . As I had thought , she entusiastically read it HAHA . and brigth is my English name . In our city , winter is ofter cold , with strong frost , snow storms and ice . Summer will give the possibility of travel , opening new picturesque corrers of the motherland . 5 To raise my English skill from beginner 's level to intermeditate . So I was reserching the market related to these products , and costomer . I 'm still cotinuing the reserch today . Sorry , my English is really wrong , I appriciated the support . I am writting my dialy for the first time . Nowadays I study English for bussiness . My bussiness is being a salesman , importing produts from the USA and Japan . And since I use a lot of my time to read English , I am not good as good at speaking Enlish . So I wish to get my speakin ability up to scratch by writing on Lang - 8 dialy . I talked to my high school frind about school life . Saturdy 16th , Sunday 17th Most Japanese students do not go to school on sturday but this year I will . I called her back wondering what had happend . Due to her mischief , I enjoyed a conversation with my old freind . Recently I 've had headach and stomach - aches . And I think peple can move much more easily from country to country than in Japan because Japan is an island . Two celebrites committed suicide last week . Amazing goal achievment I am busy because I have to hold a public hearing for my doctrial degree on Friday . To achive this , I need to efficiently take breaks . MUSIC is one of the my lifelines to survival in these stressfull days . I aired out my ' zabuton ' becaouse the weather was fine . She wrote her feelings and appologie in it . I took part in an Enlgish Speech Contest yesterday . It had beautiful and soft sands and a few waves probably made by the breeze . It totally looked like a small seashole . The lights from each house shone brilliant and conjured up a feeling of nostalgea for a fleeting moment . ( It takes you 7 years to become perfert at the piano . ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school and learn the basics or not even start . : When I 'm coming in , we would live for the rakers or the Sixers ? : No , I know what your first basketball game ever , and I know its pretty exciting , but when it 's all said and done the season would n't be long enouh . In the beginning , I guessd that 1000 people would register . We met in the uiversity classroom . Finally , Josep , a friend of mine here at lang8 , corrected it . : ) Since then I 'm afraid of other people , expecially their eyes and words . There were serveral kinds of rubber duckies in a basket . This site is a little diferent . . . Later , I saw a vedio on youtube . Despite this , the groom seems very calm and plite . The cow is an old friend of the old man , who has raised the cow since it was very yong . So I only learnt grammer , reading , writing , but not speakingg . It helps us improve the ability to relate or summerize something in ways that are easy to understand . Anyway , I have to say that learning anything is not a piece of cake but our passion will help us improve easilier and sooner ! ! ! ysterday , I went to work . I am a process engineer in a foreign - funded company , but my job is tranning the operators in how operate the machines and maintain them . I dream about doing a great job , I dream I am a milliomaire , but fantasy is pretty and the real word is cruel . The Internet helps us communicatig with different people . That 's what some Japanese had done while Japan was invating Asian Countries when Japan was once under Imperialism rule . When I read the sentences , my sleeping head seemd to awake suddunly . Instantly , the whole world disapears and all I can see is the light with all the colours . Today was great througu I still felt like a isolated knight except , when I was talking to this girl who was really sweet who taught me the words `` serendipity and kismet . `` I do n't understand why we must not talk on our mobile mobilephone on trains . Most of the menber in Genshiken are male . Becasue I like the French bread most of all . I want to eat it soon , but I 'm waitting to eat it till today 's dinner . . . ( > - < ) But I have to pass the school exam which has an interviw and a resume before IELTS . They will become important people to me in the future because they can cange Japanese medicaln practices , by thinking about Japan objectively . I 'm looking foward to seeing old friends in this ceremony . Even if things were not wrong and made sence , I would still correct things if things sounded unnatural . But since becoming friendly with forien people , I 've come to realise ( noticed / discovered ) that bending the truth is more common in Korean cultures than other cultures . I went to the gym to play baskt ball . I 'm from china , I can speak chinease ! These days , I have been busy writing 2 kinds of graduation thesis ( because I belong to 2 kainds of seminars . . . ) , but these emails made me feel a little refreshed : ) We had a ferewell party for the overseas studens yesterday . So today , we 're going to renew our expired pasports . Of course , I am allowed to sleep if nothing has happend . They are vey useful and fun ! ! I alredy have three articles ^ ^ My sister highly recommanded a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about the storyline because there was a navie guy and a weired guy . The navie guy acted in Death Note and it 's quite different from that movie . His hairstyle was so funny that I could n't help but laught at it . Im ( like to ) stay home and take it easy without doing anything Selebrate the first of I am going to make pasta with tomato - sauce and baco and the cold potato potage soupe for her . I think that everything will gose well . I just came back from my trip to Mui Ne , which is in the Binh Thuan provine . It was in a restsaurant , and there were 7 people present : myself , my parents , my husband , his parents and a go - between . I think my English is getting better and one day hope to speak English fluntly . ^ ^ My favorite idol commit suiciside . My hobbies are snowboarding , traveling , and studying foreign langueges , now I study English and Spanish . If you are learning Japanease , I will help you . but I preffer a whole one with its insides included . I garmish saury with some grated Japanese white radish , Sometimes cultual differences caused misunderstandings . The words I used were misunderstood , but it told ( taught ? ) me a lot of things , such as how important it is to understand the backgrand of the language . I went to school and leared about English Education . Recently , she went to hospital and was given a check up , and was diagnosised with tubeculosis . Tokyo prefecture and the office that she belongs to started to move for the purpose of informing many people who might have caught tubeculosis from her so that they go to hospital and are given a check up . Cerebrities have many chances to comunicate with many people , so I think that they should go to hospotal and be checked up often . I could n't understand why it was not working , and I asked to my hasband for help So , will who is an Amelican or someone who can speak English please correct this entry ? I started this entry whitout any ideas to write about . The wheater ? Well , today the sun decided to show all of his strength and the resoult was a realy hot day . Maybe he picked a fight with the poor clouds and banned them from the sky . Okey , I just finished talking about wheater . . . I know that it 's only 9 pm but today was a realy tiring day and I 'm realy sleepy ( That 's why my post is so silly and has almost no sense at all . I do n't know what I will say here , I just want learn more about English and at the same time make friends with whom I can comunicate and pratice the language . The hightway in the capital was so packed that we kept moving really slow for an hour . I am 19 yaers old girl working in advertising agency . My position is a secretary . But I am oing to change my job because the financial crisis happens . This evening , I watched a movie called `` This is it `` which is composed of footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London schejuled in July . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tsuna , and many other ingredients that were available in my home . we have a long hoilyday So it was too late to get a driver 's risence during this break . When I saw that the patient in the show could n't wear a jacket correctlly ( she put it on inside out ) , I was astonished . I 'm so nerveour and I feel like there 's butterflies in my stomach . I opend an e - mail from my friend , It was about ' Facebook ' ! Last January 17th was the 15th anniversary of the Great Hanshin Earthquak in 1995 . Kobe is an urben city and famous for fasion and nice foods . Many peopl were chrushed and burned to death under the rubble of houses . I am going to keep writing Englis diaries . I hope my englis gets better and better ! peaple all over the world have to help each other . we have to help each other by using euglish in the world . Many tipical Japanese companies have new years vacation during the first three days of January . Today was n't a spesial day . She picked it up and brough it to their house to eat . Wollen Sie hier kommen ? / Wollen Sie herkommen ? My friend who used to lived in Kitakyusyu created this game . Each of my uncles and aunts has a son and a daughter except for my yougest uncle . By the way , I wanna know about cities in foreigh countries . 4 ) Each compartment has priority seating for eldery people , pregnant mothers and handycaped people . I think that it depens on each country 's culture and history , which numbers are considered unlucky ( They studied alculating and memorizing instead , though . ) I tought that he was very kind . Then I 'm very surprised by the price of the vegitables . For exanple , a head of iceberg lettuce is 295 yen , a cabegge is 299 yen , and a tomato is 199 yen ! ! I want to speak It very well and make new friends elso . most of them have thier own jobs and they practic soccer in their off time , nights and holidays . Last month , the Goverment gave a medal to them for their glorious match in the Women 's World Cup . My throat is still swallon . Tomorrow is mother 's day . When we are young mom takes good care of us , but as we grow up , mom becomes old , and some of us do not treat their mother very well . Now I just want to say everyone of us should take good care of our mothers ! Tomorrow we must tell our mother `` I love you , Mom ! `` I hope every mother in yhe world will be happy everyday ! I have lots of friends here , but they are either Singporian or from other countries whose first language is n't English . So I want to have oppotunities to talk to Caucasian people in order to improve my pronouciation . Today my business partners invided me for lunch . My favorite sezsom is summer . Afterwards my friend said he wanted to see Avater , so we went to a movie theatre and saw Avater . I was really shocked and asked him why he had never spoked to me in that language before . Why do so many people come up to me these days and tell me thier ideas ? ^ ^ During the Cristmas season , I was too busy to enjoy the festive feeling . Actuallly , I really like this drama a lot , so I made korean subtitles for the episodes . If you have The time , I recommand you to watch that drama . ! I heped her cut peper for a long time and then we went home but English speaks to me and says `` Vitaly you are too stupide `` Yeaterday , I went to Ang Mo Kio to meet a friend . We are langagge exchenge partnar . At first , I would only write a jounal entry in English on lang - 8 , then I wrote it down on my notebook after someone corrected it . Well , my priority now is English , because next year I 'll take the university entrance exam . I chose English as my foreign language , but I 'm falling in love with Japonese ! Natyrally , I will correct your Japanese too . I hope I can enjoy every class during the second semestter . Even if I do n't have anything to write , I shoud write . His eys always look sad . Topic : It has recently been anounced that a new restaurant may be built in your naighborhood . Moreover , if the meals prepared by this rastaurant are tasty , you can treat your guests to a meal at your favorite restaurant . I should go there early because I am affaid of a traffic jam . I think she has a lof of things to tell about about her interview . and we all felt disappointed that we could n't have the ceremoney . So we dicided to go to the university together another day . However , I often switch the opposit way of the function I want . I often get anygry with myself , when I go to get the coffee . I find nothing , and I have to do all over again . One day my throwt was sore . Now I ca n't breath through my nouse . By the way , I watch the TV TVdorama `` soredemo bokuwa ikiteyuku `` . Quarralling severely with my mother , working for the whole day till 5 pm . I plaied tennis with my friends . We plaied tennis together . In the afternoon , we 'll take the bus to the Night Safari park and be there untill 10 : 30PM . I do n't know whether my recordings souds strange because of that , or because of my pronunciation . . . Some residents could n't understand how important it is for us to separate garbege and recyclable wastes . The garbege in the recyclable waste container had rotted and attracted flies . One of the apertment 's mentenace personnel came to fix the problem promptly . My hobbies are playing teniss , listening music and spekaing english in a compettition debate . If I had a lot of money , I would treavel to an other country for the summer . ^ ^ Polamalu tackled by hai Taiyaki is a Japanese famouse confectionary . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe Chinese food , maybe Japanese food or maybe other ajian food ! ! Since they knew I love raggae music , they took me to a raggae bar . Every time when a disaster happenes , many politicians would asumed each other for it . However , they do nothing about it He told me he was surprised with his docto 's comment . The humster arrived at my house in a sealed box . I thought chewchan was a male . My freind did n't tell me otherwise . He is [ He 's ] one of my best firends . Here / This is a kind of radito program that he made . Outside is heavy snowing , although it is just biginning of December . and I prefer to see a varioty of clouds in the blue sky . I wolud like to master English . My dream is to see movies in English without subtitles and make many friends with foriegners . I wanted to buy an Amerca brand , but they did n't have any . I have n't used Dreamweaver for half a year , so it was hard to remenber how to use it . However At the office , I ca n't talk to anyone in English on Skpe . Besideds , when I get to my house for the work , it is already midnight in the United States . I 'm srue my speking level has been going down . . . . Even though I know I paid a lot of money to take the class , after I lose interest in studying at school , I do n't feel like going to scholl at all . Although it seems like a kind of poison , alcohol has to be a midicine . Some people belive that drinking alcohol is not good for their health . According to an health resarch istitute , drinking has a positive effect on health . My parents and my granma were disapointed in my failure . I am very worrid . There will fewer friends in the univeristy , because some of them have alreay grauated . Thank you for reading my journer . I travled to the western part of Korea , Kanghwa Island last weekend . I 'm just a little nervors . My neighbor Department 's peaple went on a business trip today , So My Department 's peaple have a little free time . I 'm helpless from secon smoking . It was difficult to understand what they said because they were speking English with a British accent . Today I 'm talking about an Itarian restaurant . . . . . . . I went to Saizeriya , an Itarian restaurant , with my friends , do you know it ? It 's very cheap and dericious . For example , Milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , the president of Saizeriya , is very clever becouse he always tries to keep the prices down and make the food more dericious . He has his own farms and grows vegitables they use . Besides , from the farm to each restaurants , the vegitables are kept at4 degrees becouse the vegitables canretain theirfreshness in 4 degrees . He tries so many things to serve cheap dishes and be more dericious ! I am thinkng about giving her a hand blender I didi n't know why , so we stopped eating , and I tried to make her sleep . I listend to his newest album ' the pursuit ' many times . We drank a lot of alcohole , talked , and danced ! ! ! His work requires him to stand up for long periods and carry heavy water - filled pots from the sink to the gas oven many times a day to prepare for the restaurant opend . The next day , he enterd a smaller hospital . Also I want to increase my English vocablary . I usuallly go to the school 20 minutes or so before the class starts . But these days , I feel relaxed and mannage to communicate with them . My doughyer 's graduation ceremony from university was postponed . We enjoyed talking , having some snacks and drinks while lauthing out a lot . Soy bean milk is not only water but also it 's useful for your body because it can help to reduce a colateral in the blood , reduce the risk of cancer , reduce the risk of heart disease . I will go to the shopping mall because it is coller than my room . I talked with an American guy and a philipina whom I met here on Lang - 8 using Skype yesterday . But the citizens ( residents ? ) did n't want to abondon the school . The school parking lot is filled with cars decolated with a Kei - on character . Luckly my mom lives near the place , so I parked my car , went down to the river bank and spread a tarp over a good spot . Befire I send an e - mail we have to show my e - mail draft to our boss to check it . He told me there were two verbs in my sentense . Anyway I still want to make full use of this website and keep practicing wirting here . Tempureture was n't so high , but it was very humid . Certainly , it is very dengerous , because Japan rely on nuclear power for many part of electric suply . So younger peopole in Japan should have more interest in these problem or What do you think about a nucler poower plant ? I must sutudy English harder ! ! If I could play on his theam with him , I would assist him . I recived the glasses from there . We used to studay at the same school together for a long time . She is two years older than me . So I that 's how I apented my time in the afternoon today . I am going to write my dialy in English to practice my skills The title is `` CASE CLOSED `` , which is a japanease story . The true love between a vampire and a human really moves me and I always look forward to watching the `` New monn `` . So I decided to read the book , but its contents are a little defferent from the movie . I found it in two articles , but each sentence is defferent from the other one , so I ca n't understand how to use it exactly . I wondered whether or not I should write about it , but I decied to do so because I just want someone to listen to it . I coud n't catch what he said completely , but he told another person with a laugh , `` Wow , someone is talking Japanese ! `` I earn my pockt money by doing part - time jobs . So I will write my diary with `` Look `` or `` Look like `` as I leared them . Shihomu , my freind from Japan , even told me `` I thought you looked Japanese when I first saw you `` I want more time to practice skeatboard . ( whoops ! ) Hellow . My name is Kim Dong Hyuk . However , I do n't like Harry Poter . I think Harry Poter is childlish . I feel like many reports and presentations are just wating for me . An exhibition of the works of Fernando Botero has been on view there since Julyl . The first exhibition I volunteerly went to in order to appreciate art works , other than a mandatory school field trip , was in 1999 . In addition , there was the argument `` after the plan , Korean casinos will go bankrapt , and Koreans will be jobless because 70 % of the casinos ' customers are Japanese . `` It was really fun , but I needed to get dtunk and also practice some dancing . cours he is the most popular singer ? in the world . and thanks a lot that you tought me anything . I like watching movies , especially movies like `` THE DEVIL wears PURADA `` . many foreiners know very difficult kanji , including some of the ones even most of the japanese would n't know . I fell asleep twise or more in an hour . 2 : To remove the strong bitterness , boil them or put them in cold water for 10 minites . I seasoned them with solt and papper . It is a rental apartment , the rent of wich is over 1000 dollars per month . I never think that let it snow in my reagion , but it makes me smile . I saw the rainbow on tha way to the English speaking society at 5 : 30 p . m . yesterday . Please correct some sentense . She grew more than I expected becaouse she is a mix of givern : In ancient times , Rome governed all the known world . bend : I will not bend my oppinion even though all the people here oppose it . LOL , I was the superman of the monent ! and creat a sustainable future on its own accord . Hi , it 's my first text on this page ang I hope that this page will help me by improving my English . You must control the robot arm with the two bottons : `` forward `` , `` rightward `` on the control panel . I 'm so hanppy have this platform that I can learn language on . My English is not good , so I want have other people help me . I can teach you Chinese , and we kan help each other . Since Presient Obama seems to be loosing his `` magic touch / magical powers , `` I am not surprised by the outcome . But I think this music clip is good entertainment and a song that gives me the impression `` This is Michal Jackson `` . according to yestoday ` s translation , boss corrected them himself and praided me for a good job . But , I ca n't write natural sentences in English or speake English well . Englis as a second language Frustration is always followed by the goal to be perfect , perticuarly in learning a language where there is no end in this field . Astronomical sums of moeny has been invested on English education in Korea . I dont 't have the instict or the intuition for the English language . `` I guess that 's because I have n't had much ( a lot of ) oppourtunities to make small talk . my hoby is sports and I love many spors so I 'm massule . Oppps , I 'm a Korean guy . We count nunmers starting from the number one and the person who says the number thirtywill be the loser . Recently , I 'm lerning not only jazz , but also hip - hop and rock . I will stady English everyday hard ! I registerd at this site immediately . First , I made Korean soup which is for birthday soup . Today was not anyone 's birthday thoug , but it tastes great ! ! I dicided to practice English writing in this site from today on . so I decided to take a bike ride with my frind but when I went to pick up my frind it was still rainning , Now it 's suuny again , Would you help proofread these sentense ? I bought stickers - thiese are for you ! By the way , the 31st of October is Helloween ~ ! ! If you have free time , I would like to exchange Helloween goods . For example , people used to live in Japanese - style homes , but with the modernization of buildings , these types of structures are becominng things of the past . The vast amount of vocabulary is making me confused and frusted . Do you relize my weaknesses in my journals ? At first I could n't believe wheter or not the news was true . this weather makes me really dipressed ! ! ! the internet , junk punkfood and smoking have been my life . Her strongest point was that I ruin my health by not eating eggs and dairy products but when my brother empoisons himself it 's something where nobody could do anything about it . She is just too stubburn , but so am I . . . I think I made mistaked all the exercises and I 'm going to get 3 ( a really bad mark D : ) . Of course , there are people who are very frank and never diploomat . If you have an opposing veiwpoints or any advice , please tell me . ( ^ ^ ) I like to play guitar and sing , but I ca n't practice all the time because I work in System of enginering . I made chicken kutlet for lunch today . Today , I am going to tell you how to make healthy chicken kutlet ! Today 's lunch was very yammy . One more thing , Februry second is Ezaki - san 's birthday . I wasn ` t able to focus during the lisning part , I don ` t think I will get a good score . Resently , after I get home , almost all of the things I do are doable while sitting . I know exercise keeps not only my body sharp but olso my mind . I had studied English to enter coullege , but my English is poor . I will wash it untll noon . We would like to hand our property `` chilren 's songs `` down to the next generation . However I tjink they are more attractive than Tokyo . Anyway , we enjoyed the beatifully displayeddishes and scenery of the countryside . He might be straved ! The A - course ( which we oderded ) Grilled octpuses with herb . Avogado and fruit cock - tail . especially new recuits who recently graduated from college . I 'm lokking forward to it ! ! ! In the nersery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . No food , no erectric , no gasorine . . . I 'm here ; becouse , my English is not so good . . Actually , in my dayly life I do n't have to use English ; but , my father lives in California , so I want to work on my English . Anyone , please help me and be my freiends . It is for my illustation project and the other style is like a manga for bussiness on a web gallery . I will have a lof of pictures to show you . . I have to wake up early becuase of the heavy load of my job . Because I sit a lot in front of my desk , I go out for lunch with collegues whenever I can . I enjoy working and I always appreicate the opportunity to work with I do n't eat a lot becuae I am supposely on a diet , although the diet seems to never really succeed . If you meet people you have bae memories of , and you have not kept in touch for years , My favorite English words are `` lovely `` and `` briliant `` because I like the `` L `` sound . Sometimes I have to write business sentense in English , but I do n't have the confidence that it would be written correctly . However , I can manage to communicate , so no noone tell me whether the sentence is correct English or not . When I was a colledge student , I majored in Danish language and society . Japanese has only 5 vowels so 17 vowels is a surpriring amount . In the end , my father was able to arrive at the hospitl in time to be present for my birth . I wo n't forget white paudry sands , parm trees , cool breezes , and the beauteful light emerald green sea . I woke up this morning with a little sfuffed nose . . . one of my friends to explain this something to me , she told me that she also didn n't understand it I wached the last season yesterday . ( It 's called `` Doyou ushinohi `` ) Howevey I lack momey to buy it . They are a little bit expensible for me . . . . And I know they are disgausted by that . Well , when you were a little toddler , you problaby watched some cartoons on the telly . I 'm confident I 'll pass IELTS because you have taught me aussei English so I 'll study harder than you to speak english well . I enjoed chatting with my friends in my colledge . I felt flight attendants are very tactiful . As such , I feel so stressed out affter school . Affter studying about 30 minutes I start to feel sleepy . so effectly ! Today I whatched an ice cream truck pass my house . ( Totonto Lake Shore west ) I know that sometimes they do n't ship an item with insurance or traking number . I sent a masaage to the seller . Today , while I was taking the bus to the place where I study Japanese at , I saw somone offering their seat to an elderly person . Coincidently , there was an elderly person standing next to me . By the way , I work for the company in Tokyo and our headquaters is in the United states . Gramatically , is it a conjunction ? Yappie ! ! Vocabs : I do n't like raiy days . In this photo the Yukata features `` Pika - chu `` , and is designed for the children . I recognized abdominal walls , that were cutted open and the bowels came out . To be surprised , she told me that many peoples was arrested by false charge and killed in the cummnunism age . Cherry blossms Another friend is taking matenity leave . She is looking for an interesting job and appling to many companies . I 've decided to try writting a diary in english from now on . These thesedays , I really want to make freindship with people from other countries . I 've gotten talking out of the way , I want to leran english , and make forein friends . I 'm going to give a Farawell party tomorrow . I choiced the Dopamine key chain ! This trip will help me forget about everything that hapen at work . For example , He alwasys smoked in the living room even though I told him that I 'm a nonsmoker and I told him to somke outside . A Japanese person posted a comment in Japanese which basically said `` I think your journal is very nice , but I ca n't understand why people made so many corretions to your journal . When it comes to crimes , I think mass media play an important role to inform citizens of what 's happening on a natonwide level in terms of violent crime . Koyasan is very famous as a place of a type of Butism , called SHINGONSYU . I invited my foregin friends to my town . My dream is to run a youth hostel in my town and I hope that many foregin people will visit my home town . How to defind far and near ? It was a chllange , my mom wanted to watch TV and write somthing down at the same time . The eyeballs ca n't balance as well as uaual . People always say : ' The eyes are the winodw of the soul ' . In 2007 , I went to America for 2 weaks by myself . Maybe I do n't need a boyfriend . I hate the idea of marride . My fater and my mother do n't like each other . Persoanlly , they affect my opinion about marriage . Some day I will change them to a ceramic and prastic mixture later . . . . more and more companies tend to value thier employees ' abilities or personalities over their academic qualifications . Just taking classess then graduating would not help themgain knowledge and improve their skills . Therefore , In my opinion salary should be paid for the results of daily work such as : one 's perfomance and the amount of benefit they have brought to thier workplaces . So residents are required to help each other and participant in comittee . There are many comittee , such as the Representive Committee , the Bath Committee , and the Welfare Committee . The members of the comittee are engineering students , but they are amateurs . Because of that , sometimes they ca n't deal with problems , and then the internect connection is cut . Unforunately , some members of the Netwokr comittee graduated last month . Disconnections from the Internet have happend more than ever this month . I tied it with a ribbon and painted it penk . Therefore I ate a salad so as not to skimp on vegitable . I ca n't give up on comunicate with him and all English speaking people yet . It 's also a good experience which can arouse my interet in languages and at the same time help other people . ( interest was misspelt ) I am willing to correct those articles in Traditonal Chinese but Simplified Chinese seems to prevail . ( Traditional was misspelt ) Although the grammer and usages are the same , I am wondering if my corrections are easily understood . because I want to speak English for Bussines . I organise a loudrock comunity website in Japan . So I 'm not familier with programing . And there were lots of custmers ! : D hehe Every custmer seemed to love our shop ! : ) Oh , thank you God , You saved me . `` Right after expressing my thankness to God , I fell on the ground again . I still remenber that . Seems I was ready not to belive anybody and anything what might happen on this day . We also call that twelve yeaes `` one period `` . And if you were born in the year when the anymal symbol was a rabbit , you are called a rabbit person . If you want to kown more , please write to me . People want thier lives to be special and want to live differently than others . her hasbund is cool and a kind man . How to remmenber more words and ues them correctly Altough I do n't think that learning history was the waste of my life , I should have majored in English . I know that she particulary likes Japanese chocolates . My wife hasbeen having a child - care leave , but she went back to her job in Fevruary , so we have had less time to take care of children than before . Now that I have completed some my tasks , I wish I could come to wirte my journal and proofread my Lang8 friends ' journal like before . Apparently I threw it away when I was sleeping uncomfotable because I had a stuffy nose . This spring , Japan is very hot in comperison with last year . It iwas because one of the students had complained to me about the content and direction of my class . Maybe it 's their culture , so if you want to go to Hong Knog then you had better not mind it . Yesterday , the minister announcemented that maybe a blackout will occur . When I 'm at work there is not much to do so I pick up my notebook and start practicing my hiragana / katakana . I hope that someday I can be good so that I can go to Japan to sharpen my skills . My life dream is to become an internacional businessman and to be working all over the world , but right now it seems like such a dream . So much like a dream that I often feld down and surpassed for such a dream I have . So getting back to the main point , after I finished my work at my father 's place I took my computer and watched some anime . Also , if you are learning Korean , let 's be freind with each other . Prease tell me your answer . In Japane most people are punctual and honest . I also want to watch a bsseball game at Yankee Stadium since I am a big fan of baseball . Even if my brain was not totaly in its place , I was still able to do a 20 Japanese character study instead of the required 30 . Cororado Rapids won their first title of the MLS on the same day . The audience at Nagoya was comprised of 12650 spectators , and Cororado had 21700 spectators . I study Italian too , I feel this language fresh because I have studied Italian since three manths ago . This is the fiest entry of my diary . `` Do you speek English ? `` Thanks to evryone who edits this . I finished reading `` How Sratbucks Saved My Life `` today . He started cleaning the store toilet and bagan to learn valuable things through his job , and he finally found his true happiness in his new job and unfamillier environment . Good feedback helps students to implove . How diffrent are feedback and assessment in English ? As you might know , it 's not as easy as it seems to keep writing diary entries continously . But in these free days I had also done hard for my English , even some of the days I had to perpare to my exams . Did I just make an execuse not to do something ? I 'm a bit hangry . I did not arrange a costom for the party . But , I am double majoring in mecanical ( I think it should be English literature or English educatinal , right ? ) Look at this crip , please : D My father is motherate . He is not so agreeable . My littel brother is active . He likes playing soccer . Blue tincture cartain are popular . I teach Physics , Ana teaches Japanese , Ega teaches Indonese , and Yanti teaches Music . At the benning of February , some friends of mine also came to visit Tanzania , and we traveled Zanzibar island , which is the best place in Tanzania to rest ( or relax ) . So I decided to use my vacaton ( only 5days including Sat and Sun . ) for English lessons ! Since I could n't understand anything , I do n't know waht should I do during class . Someday I want to taravel around the world . I stayed at home with my nephews , and one of my nephews used my telephone to record the vedio . Since I want to be an exchange student in Swiden , I must improve my spkoen English . This afternoon , I used a subway to go to the cener of my city . I wonder if public manners for young girils are chainging . I live in the dorm and I have four roommea . It takes about 20 minnutues by car . Therfore , I have to ask someone who has car to take us to the grocery store if we need some fresh produce ( another word for vegitables , fruits and the such ) or meat . His concert was very fun , we enjyoed listening to his songs . Also , we ate a many kinds of food , for example yakisoba , tamasen , bananas coverd with chocolate , etc . We enjyoed the school festival . Becouse I mainly like Rock music . Let 's go to the movie theater `` And for just 30 minuits . Well , I do n't get tooo much , but it 's stil a good deal : D I did n't execise last week since my job training . It is straight and has wide a sidewalk , then I saw some people who enjoyed walking or ranning with their dogs . Birds were singing and frowers bloomed with morning dew . I 've been reading the wizeard of Oz . Does it mean that Dorythy finally caught Toto ? I got myself into net surfine . I hate people who laugh at others who are trying to achive something difficult `` . Although my Enlish course has ended a long time ago , I did n't want to stop learning it . he really nice sometimes when I have a proble I really like to ask him about it because he can help me solve the problem . I looked youtube for a long time about the animail and fish and I felt happy watching it . Now , mobiel - sites are important for E - commerce in Japan . Leraning another language is difficult for me . So I studied English for three or four hours a day since I started lerning English . Competing with each other and achieving goals together will shapen / shape their skills and bring beneficial effects to their learning . Generally , it appears that online learning is more advanced and a fuitful tool for studying . Istanbul is split by the Bospurs . Recentry , I have neglected studying . Tset week However I wiil go there someday ! I studied how to anwser CET - 6 questions lately and came to realize that English is a more subtle language than I ever imagined ~ ^ _ ^ ~ She said `` Just listening or writing wou n't work . I 'm writting this with a dictionary , but I wish I could write without it ! Yesterday , I tried making silver juwel from silver clay . The game remainded scoreless for 90 minutes and went into 30 minutes overtime . Japan finally scored a goal with a beutiful shot to end the overtime and won the game . I 'm a big fan of soccer , and I belonged to a succoer club all the way from elementary school to high school . Japan is now the chanmpion of Asia . After coming to Singapore , I have been lonly becase have no friends in Singapore . Praying everyday was getting hader but I realized the heart of the Lord . Nowadays , since Kaiten - Zushi are spread all over Japan , we can eat Nigiri - Zushi at a rasonable price . There was a terrible traffice jam . Moskow very nice city , but here derty air , therefore in future I want live in the country or abroad . I thought it would be a nice opportunity to improve my English writing skills and make good freinds . But Karina , the Arina 's friend , was even more cute and beautifull to me ! That evening , Kostia did n't succeed with his beloved Arina , unfortunatelly , he was too shy and confused . I will try to introduce you to the story of AVATAR briefly tommorow . I 'm a happy gril , because there are many kind and good people around me . Today , I was a cuple of minutes late to school because I got up later than usual . I have started to write a dialy in english . Last month I took the `` Toulism English Proficiency Test `` and passed it ! We can go anywere without a car . Ironically a big amoung of money kept in the bank accounts are pulled back into society again by the cheaters ( OR swindlers ) . After I graduated from the university as a matematician , I decided to change my life and now I am doing my best to become a student of Prague University I next year . I will try to keep writing this daiary using a lot of words in the future . It was heavy , even without french fries . The double - decker humburger was enough to fill my stomach till the evening . Perhaps people find that it 's more healthy to eat natrue food and keep a healty lifestyle rather than eating processed health food and using health - related products so that they are no longer going to buy any health - related products . So I like to communicate with people ; - ) I 'm a pscifist , open - minded , friendly and unique . I 'm person who loves nature and helth . My daugher is two years old . I took so much time to find the apporriate word , sometimes without ever even finding it . It is a costom that we go back to our parents ' home for New Years in Japan . becouse I had a test in Chinese . Fortuneately , the weaher was also fantastic ! I 'm going to go to a drinkng party today . We chose one and wrote the resume while imageing if I applied for the job . But I want to be an early bird so I 'm tring to wake up earlier than usual ( although I could n't make it this morning ) . I thought Puff Diddy ( Do you call him that ? He is going to try out for a team for the firt time . The eaxms are held in November . Hallo , welcom to my home in lang - 8 . First of all , I will introduce myself . I am a 21 year old Chinese university syudent . ( Such as in ) words or grammer and so on . I will thank you very much . English is so duiffcul . English is that I do not know how to remeber new grammar and But it feels very confortable for me . In my laiziness , I only watched funny films and cartoons , I bet you will get a lot of chocolete from your students . A clock , a cute notebook , a big mirror , a keyholdar , hair accessories and an English language picture book ! I 've been playing a game made by another country recenty . But I have n't improved my speaking or writting yet . But I had to cancele my trip because of Swine Flu . This is his diagnsis . The first day of languege school I think mastering our mother tongue is compeleted when we are very young . Of couse we would n't have had such a big vocabulary back then . Have you ever been confused about using prepostion ? Maybe you already knew what prepostion you shoud put in a sentence much earlier than you can remember . we satyed for a long time . Brain excacize for me , lolz : ) My second step is to look for internet webcite that easlily teaches writting English dairies . Last Saturday I went to the beach called `` The Beautiful Bay . `` The sea was really beatuful . Lisening to the sound of the waves . Unfortuately , the Beautiful Bay will not be accessible to everyone anymore , because it was costucted by the hotel . The beach will blong only to the hotel owner . The beatiful sea will disapper . He was paying attention to the cars but he was n't watching out for taht bikes and then he was across there was a loud sound from the honking horns . On the other hand , compared to him , Novirzki is not as speedy as Rose , but his fadeaway shot where he shoots while jumping backwards is unstoppable . I am dezzy and I feel down . I often say `` parden , please ? `` Now I 'm studying English vocabulary , but I ca n't memorize anything becouse I immediately become sleepy . I think that using preposion is difficult . I work at a conviniene store near my house , on Saturday and Sunday . Many people come in who behave deifferently . That is one of the reasen I work there . I stopped writting my diary for a few months . But I deceid to start writing on lang - 8 every day . In fact , I wanted to watch ' Avator ' , but it was n't in theaters anymore . Guys , today is Chrismas day , merry Chrismas day , a happyday , enjoy it . It is called `` Gay regeree `` . I could n't help laghing when I first saw this . Friend 's fathere : `` What is your name ? `` I was very surprised . Lol . My friend 's father was a gentleman like buritish nobles . Last night I ate my favorite foods which are sashimi and BBQ . ( r ) I thought that learning Japanese is so difficult for native English speakers but as I read their nornal , I thought they have seriously been learning Japanese . Then , she emaild me back in response . I have been living in Los Angeles for three months alredy , but my English is stil poore . The writer is a Pcycologist , he tried to explain about happiness and good life . He wrote the Bhuddhism way and how to take on the meditation , he told that the Bhuddhist need the faith to keep meditating . I think that most English learners dislike grammar which is essential for study and to understand well when speaking English fluentry . I have alredy noticed the reason why Japanese people are n't eager to speak Englsh in front of Native Speakers . It 's been almost two and half years since I moved to Okinwa . One of the things is MOAI which is similar to privatized insurance coverage sistem in other countries but somewhat different . I pepared to leave for the station and slipped my shoes on in a hurry . Even being happy only for today is not always so easy , so how can we be sure we would be happy tommorow or even in the future ? He tought me some English words today . `` Consult dictionary `` is just sirious . I would like to talk to him using the word that he tought me today . I have looked up the word , you tought , in the dictionary . Of couse I went to vote for the mayoral election . At night , the next - door neighbor was always annoying me because he played games with his freinds so it was annoying but he disapeared recently . My firrst writing famous as the place name of a certain Japanese rigion since the beginning of the Kamakura era . I 'm a university student in Japan and want to major in controll theory . On certain web pages that we can talk using each others language , I liked textchatting with English speakers . If you have any good ideas can you recomend something to me . Hello , my woderful friends . I saw my friend on MSN and she asked me to go somewhere with her . I think she wants to go to the club . But envidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporaens hang out with Singaporeans , Indonesians ( stay ) with Indonesians , and Vietnamese ( play ) with Vietnamese . And we are trying to figure out the most efficient motheds to improve our speaking . SO , good lcuk for us . ' ' The time when you think it 's late is perpect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' Right now , I 'm going to my parent 's house to join an oister party ! But I hardly speak or hear english , and I am not good at readig or writing . Fortunately there is a box office or ticket outlet in my neighborhood , and it 's so close that it only takes me 5 minites to walk there . Even thogh it was quite late at night , we discussed lots of things such as religeon , our national spirit , and ourselves as well . Hi everone ! We bow to our ansestors with the foods arranged on the table . My favorit story is `` A Study in Scarlet `` . I was surprised holmes ` s reasoning skill . I never thought terrorist suicide attacks were happned in the US . The terrorist turned airplanes into misiles and destroyed not only the world trade center but also other important American facilities . I think the most difficult thing about English for most Japanese is pronounsiation . We Japanese start to study English from Junnior high school ( when we 're 12 years old , but now it can start even earlier ) because actual native speakers ca n't understand badly pronpunce English like I do . . . The difference between ' wrong ' and ' long ' is the pronounciation of the first syllable . I read books about some schoolor 's theories and tried to understand the rules , `` When you pronounce ' th ' , your tangue must be between your theeth `` something like that . I actually struggled to find a correspondence spelling and pronounciation . She corrected me and tought me English and that was what I really wanted . My grammar is bad so my artical is terrible . My English teacher always wants me to write an Eanglish composition , but I am scared about it . My favorite foods are cabbege and cheese . if you want to write a Japanese message , you will send a message or coments . memorie of a Trip . It says that this color gives impresson of cowardance . They are very beatiful . I ` ve never been able to part with those cards . But I have started to enjoy London life recentlly . So I started teaching English to young children and then adolscents and finally I learnt more about English grammar and became better acquainted with it I have been thinking wheather I should buy an ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convinient and usufull . Sudeenly , She was silent . My seat is a right under the air - conditoner . I have a medical test tommorow . but here was my weeked I did not study hard . We wanted to speack to them , but we could n't because we could n't speak English well ! Hahaha , I 've just watched the first episod of `` Primeval `` . I have trobled with English . I can read and understand English sentences , though sometimes inperfect . I want native speakers and anyone who is lerning a foreign language to teach me . I often hear that English is the most important language of all who want to succed in the world . I 'm wery sad . The other day , I was watching a variey show on TV and an Australian comedian said this . and if we worship him , he will give us happenese and let us go to heaven after death I am off today fortunetaly , so I will be watching TV , internet surfing , and so forth . But I ca n't sleep until I finish writing my ent . . . . . . . . In addition , I want to speake to people all around the world and work in America . Of cource , it 's good for my health . I eat it evry morning with soybean flour and green tea powder . There are many English schools online , some are American and some are Phillipinos . I forgot where I heard about it , but acording to some sites , an average college graduate native knows more than 50000 words . We ordered the New York and Angus steak , and both came with mashed phoato . Since then , I can concentrate on reading the book and understand what the auther is saying clearly . I know that listeng to English conversationsand speaking in English a lot are good ways , but I think first of all , memorizing is the best way . could you explain about the use of ' with ' in the senteces below . I thought I could hardly sucsess . I 'll try dont to be nervous and do my bed . I prepair for the interview from now . I have to review excell , word and Japanese . Which do you want to learn English or Sience ? The competition was held at the studium called Kita Yell . I would like to ponder about this case and to hear your opinion ( if only my friends did n't lose hope to read smth from me , sorry for my long break ) . But we live in different cities and have n't had the oppotunity to pay each other visits very often because the distance between us is 5000 km . About a month ago , it was announced that Doragon Quest 9 ( DQ9 ) 's release would be postphoned . The Next series is supposed to be reliesed by NINTENDO DS . I was fully prepared to buy it only for the perpose of playing DQ9 . I felt very sad when SQURE - ENIX made that announcement . There are many rumar for that on net . I read many articals and thought about it . In the previous series , SQURE - ENIX set up a provision / trap agaist Majicon . The company produced the game lik that in case the player uses Majicon . Do you think they 're real or imarginary creatures ? If god , ghosts and creater from outer space are in existance , it 's only natural that vampires live somewhere . He staied at our house for 3 months then . His Japanese had implove a lot now . through liqour and another people who can get rid of the stress At one time I Thouht that people who exhaust their lives were successful . I feel satispaction when I 'm working . People sometimes volutarily enjoy something bad . Somehow we feel happy when they succeed in accomplishing something worthful . I will go to Taiwan in October on bussiness . I 'm looking fowerd to going to Taiwan next month . this is a traditional traditional festival , maybe other familise are happy and expected , but my family is not , fundamental : I need to study the fudamentals of Japanese history . indespensable : He is an indespensable force for our company . splendid : Casa Roma is a splensis castle built in Tronto . The problem is that these lifestyle changes can make people overweight easily ; also people do n't want to excercise . Choicing a PC In my new life style , I have a lot of changes conpare to before . On the other hand , almost all cars exhaust caron dioxide . There are too many self develope , self - motivation , or self - help books in Korea . I ask him to let me sleep 30 more minuits , but he never does . I 've traveled to some places not only in Japna , but also to other countryies . Last weekend my wife and I went to tennis matches for beginer mixed doubles . It 's dilicious and rare . I want to learn how to cook this kind of beef . However , I can not explane . But today , I found out good website for my thinking which can not explane right now . Kendou is not just a sport , it is also Budou . Kendou is similar to wieght training . I can understend them . I 'm not good at expressing myself , I do n't have any qualifications except a driver 's lisence , and I have never had a special experience such as an internship or volunteering . Since the entrance exams for univesities take place next year , Sometimes I am tired of the piles of assighnment , but I enjoy spending a lot of time with my friends , and having high aims and good teachers . I have desided to keep a diary in English as often as possible , so My main dificulty is understanding spoken English . When the groom kiised the bride many cameras flashed . I am happy for them siecerly . Will someone correct my grramatical mistakes after I post my articles or should I add someone as my friend first ? I found him in YouTube : ) He made a parody of Mirely Cyrus 's 7 days . Although I do n't study English at the univercity , I want to be able to speak English fluently . It is derived from `` familly `` In jappan it is wintter now . Recentry , I happened to hear very nice music . I watchd `` Enchanted `` by disney . Somedey , I want to fall in love with such a prince ! ! I want to comunicate with a lot of people . I 'm a normal man . someone pealse help me lol I 'm in a hard situation , no , I 'm in predicament now . The reason why I say so is because I found surpising stuff in my house . I thouht he put my socks into his closet again . Oh my godness ! It was a gay magazine ; I was really surpurised at it , and I was also scared of my landlord . I 'm gon na have to keep protecting my ass from now on until the date of depature to Singapore lol . Although the vet told us flontline is working , and that we should n't worry , we are not happy considering our dogs ' conditions . What I 'll write is just my opinion , so even if my methods are deifferent than yours , do n't worry about it . If I wanna improve my speaking skills , I should make a certain number of sentences a day and have them crrect by native speakers . If I wanna understand waht English speakers say , I have to read English books and I have to ask Japanese people who can speak English very well if I ca n't translate it . My Recommedation Movies / My Movie Recommendations My friend itroduced me to this useful website . Althought , my Japanese is not good enough to write an article . as playing basketball , swimming , running and so on . If it was sunny , I would go fashing with my friends and swim . I think that impossible right now . wuwuwu . But I guess I can play computer games at home , hehe . But , I want to comunication with more forighner . The JLPT just examines the learner 's kowledge . In the Pasific seacoast region of Japan , the rainy season is from the end of May to the beginning of July . there is a wide range of Nabe in Japan , we ate a simple kind of nabe . To make nabe ; put all of the left - overs in te refridgerator ( such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water ) into the pot and cook them together . Alpha waves have a frecuency between 8 and 14 cycles per second , and they are found in states of peace and of relaxed alert . The massive production of Alpha waves in children makes them have a great learning capacity that can even permit them to attain / achieve super - learning or acelerated learning when in a state of peace . I respect people with a strong charectered . Recently , she has started to make beautiful accessoiries . She is very talanted . I ca n't get up eary in the morning ! ( original sentence ) Odell was n't certain of what he saw , the mbers may have been at the first and lowest step , with the all - too - formidable second step still to come . I 'm going to write about the spacecraf Hayabusa today . The body burned , but she relesed a capsul toward the earth before she was burned . If there werealiensin the capsul , Wewould besurprised ! Someday , I want to sing songs in other lanugage too . This is the first time for me , writing my dialy in English . When you are busy enough , you will forgrt what you want because you have no time . I 'm going to eat Rusian cuisine tonight . I did 't know that early day 's tango was played with flute and gitar . Meanwhile , most of the oldershops in town do n't have parkings require you topay parkings . I have stusied english for about a year . I sometimes import Manuka hany from New Zealand myself . Because it is very diffrent from anything I have ever used , it is very difficult for me to use it . I ca n't go home untill you give the report . I majore in international relations . We ca n't see anyone succeeding just because of his or her talents . Rather , we can see many people successed by their hard work . We learn from pronunciation , but learning languages is n't esay . I habve finished to read reading a book . He then begins started to study this phenomenan . I am contienue my English learning journey . . . I was surprised at an enexpected visitor . I relly love teaching Samulnori with traditional Korean equiment ( or : instruments ) Do you think that it is too late for someone at my age to be studing ? Since the first time when I see blackberry phone , I have been totally into them , they look luxuary , and the design is stylish . I am still concidering to buy it or not . Althogh Samet island is not as popular as Phuket or Samui , its sea and beach looks very beutiful ! I didn ` t have a fever , but I had a bit of a headahce and stomach ache . I saw many diffalent costumes and dances . I have been here for 3 months , and now I am iving in MELTON , which is a little bit far my college . If there are not any dishes you want , you can order through the touch screen controler . An increasing number of revolving sushi bars have opend recently , meaning we can eat sushi at an affordable price . He told me to use the expressions that can be found in the dicrtionary , otherwese my English will sound strange . Today , I began this lang - 8 survice hoping to improve my English writing skills . Time permitting , I would like to take part in advsing on the use of Japanese , and am would be very glad to get any tips on my English . I was rised in a small village , and my father is very poor , of course so am I . I really want to visit there again , and if I can , I will live there for sevearl years . It was a beautiful day yasterday . Then she disappeard with her son . FridayIhadhis class ( no comma ) and I was happy on the way to school . ( period ) I imagined how happy ( I wantto ues a similar word tohappy ) I would be to see him again . ( period ) When I arrived in class , I said `` Hi `` to him , but he just said `` Hello `` to meas he would to a stranger . There is no way that showing kindness , affection , and any other positive thoughts wo n't be appriciated . And I saw a cafe in the movie , `` The Born ultinum `` , in which the main acter is Matt Damon . If you won 10 million dollers - the same mistake : ) To begin with , I 'll do my last semister at university for graduation . I 'm sleping in until the afternoon , eating lunch with breakfast , and surfing the net until it is time to eat again . Then , I may bathe and go back to sleep . Holiday is so boring withouth friends . Should someone correct my writing error and fix my layzines problem ? I have two children , one is in colleage and the other is in elementary school . What kind of peple do you like ? Thanks for reminding me ; I remember those moments . They were very amaizing , life was beatiful . I went to a shopping mall in the neighbor city to buy a Christmas gift yesterday . plese ~ teach me English . If you wanna learn chinse , just add me . And because of the rain , I could n't go very far for dining , and I could only choose the nearby restaurents . I 'm starting Lang - 8 rigjht now ! My English writing skill and bocabraly are really not good enough . The high heel is acctually not so high . find my diary entries and recorrect them . Actaully , I do n't miss everything in Taiwan so much . I would rather try exotic food here than Taiwese ones , Even though he said that I had to taste some Taiwanese cuisine here , that way , I could campare what the differences between them are . Do you have any idea what causes this defference in perception ? Nuh . . . Sometimes , I see that that they are very smart , organized , and priviledged at the same time . He told me that Americans are different from Egyption in thier thinking and in their professional and personal lives . But this does not include all of them . I write this entry beacuse I want Americans to tell they spend thier vacations . Thanks to any one will answer to me qestions . I really like her excentlic fashinon , action , peformance , and - of course - her songs : ) I have to wash a lot of landry ! But it makes me too addictiv . Hello ! My name is Sar . I am interested in English languaga . It seems more difficlut to make firiends with new aquintaince as we get older and older . I ` m a Junior at Hankuk University of Forign Studies . Please correct my senntennce . Today it is essencial to have reccomendations because the employers are too busy to receive a lot of applicants . I do n't have anything to do now , so I 'm writting this journal now ~ A kind mariner adopted him and tought him how to read , write and his own interests . This is a pictur of my dog . Japanese usualy begin to learn English when we are primary school students or junior high school students . He was non - Japanese and about 60 years ald . I will send a letter to my fost family today . I am slso excited . I always say that I have not eanught time for to study in the night . With Windows 7 , and suport devices , you can an even better experience with Device Stage . Put the all the ingredients in the pot , and boile them for about 15 minutes . Put them in a plastic bag whith flour , then mix it . Put the fried wing tips into the sause . Its a small class , only 4 peaople . There were small candles ( on evey ) table . But , [ comma ] we chose a main dish for ( owrselves ) . need some shopping or lestting . There is a Chinise temple ( maybe a Buddhist one ) near my house . It occasionaly holds events . What celemony is being held there ? In fact I do n't know wherther or not he is my boyfriend . When I watch the movie about Victoria in Canada , I 'm amazed at the huge forests , high criffs , and the incredible view from the top of a famous mountain . I saw many things and bought some comodities . Ther was a TV program about pyramids . I found TV programs about piramid on the last day of last year too . I wandrer why there are this many ones about piramid on New Year 's Day in Japan . But , as I watched , I bacame interested in piramid gradually ! Some day , I want to go to Egypt and enter ( inside of ) a piramid ! It 's a huge mistery ! I am going to go to Iwate tonight to see my grondmother . Secondly , the governmewnt should take I always order Subway 's dayly recommendation . Yesterday , I ate a BLT sandwitch . Recently , I 'm conttantly irritated . I am very relieaved when I communicate with you through Lang 8 . I 'm enjoying holydays ~ I 'm reluxing during the holydays from the 13th of August . Today I 'm going to clean my room , do the loundry , wash the deshes and so on . So , I do these things on holydays . She did not study hard and endded up as a maid too . hallo everyone ! : ) I want to study English today little by litlle in order to study abroad in the future I want to study languages by chatting with English speaking people through my computer and I serached website like that . I do n't like the bus becouse it is very crowded . If I ca n't sit on a seat , I have to stand for fourty minutes . However , I have only a little imformation about Mexico , I left my work for parentally leave . Today I saw an article that said if express tolls become free , more pepole will use cars , and as a result greenhouse gas emissions will increase . But , I 'll be larning English through Lang - 8 . It 's an excting spot for any Ghibli fan . Today had many ivent ! I am redoing this bolg . As time gose by , we 'll go our own ways and become busier , but we will still remain in close touch with each other even though we are in different situations . Strangely , I think Korean resembles Isreali in some ways because of some passion and temper . Beacause the job notice was supposed to be annouced today . I called asking why the notice was not announced and they said that it was delaied until next week . I 'm into blkes ! It was preasant to rige on my bike . I rode on a bike as a child , so I have gotten used to riding , even as an adlut . I always have to be carefull so as not to break the speed limit . My collegue , who came to our clinic by bycycle , said that it was really tough to pump the pedals while traveling against wind , and that it took twice as long for him to arrive here and saw some people fall off onto the road . This can sometimes be dangerous because on days when the wind is storong , we have more patients who break ther bones . Rtythm games are similiar to learning languages because both require so much time , persistence , and unceasing effort . Luckly , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . For her parents - my grandparents - we prayed in the Chion - in temple , which is the headquarters of the Zyodo sect of Buddhism . I have to study Japanese more , not only grammer . After that , one of my friends wanted to play a shotting game . 7 / 5 was my friend 's birthday , so our friends celeblated his birthday last weekend . that was a preatty dream . If I saw her in Bangkok what to say to her ( in frist word ) at first . Korea 's big hoildays Korea 's big hoildays are coming up soon . What am I going to do for the coming hoildays ? After thses holidays are over , it seems really doomed because there are almost no holidays in 2009 . My mom came downstairs to comfirm whether I scored 71 or not . Testerday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croqutte because they do n't cost so much ( around 10 - 20 yen per piece ) and croqutte with brown ( worcesteershire ) sauce are the best with beer . As I had not spoken English for longtime , it was difficut to speak fluentry . I think learning anothe language is similar to playing sports . I do n't work at the moment , but I am going to look for a job which is hopefly the same job I had while working at theimport department in 5 months . I thoght that my experience was awful , but I appriciated my friend 's kindness . She posseses a lot of talents such as teaching English . She is willing to be taught Japanese in a friendly manner . . . Last week , I was a substitue . I may get tir by the middle of the game . And it 's human nature to feel a bit uncomfortable about the unknow . Hi ! ! ! I 'm studing the `` Media History of Japan `` at my college right now . My other lenguage In Spain , Spanish is the oficial lenguage but also spoken are languages such as Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak some them such as Catalan , which is a Romance language derived from Latin , and is spoken in Catalonia , Levante ( in the area called / of Valencia ) , in the Balearic Islands , in Andorra ( which is a small country in the Pyrenees , southern France ) and some in the Italian city called Alghero speak Catalan . It is the 75th most widely spoken language in the world and I am very proud to speak it . And I thought the only thing that make us feel a little unhappy is that the serving fee is 10 % of the price , even higher than the GST ( the Tax ) , which was not meantion outside the restaurant . She has been to China adn studied there for 4years . I sometimes have difficultycorrecting students ' English compositon , so I need someone 's help . After a few years I dicided to brush up on my English . However , after comming to the US , I feel that this is not true . When I was a high school student , I was always cocerned about the school uniform 's ugly style . However it may be difficult for me to make my dream come ture , because I have a four month old baby . . . Maybe it is a deram . . . I have played the saxophone in school club activity since I was a Midlle School Student . I want to meet her again and talk about things that have happend to each of us lately . There are a number of runs in this `` Festa `` . Please let me know is there any rasism in your country . I love jogging . I used to have this habit , but sundely I stopped . It 's fun , especialy for me , because I do n't like to exercise at a gyn . It 's too crownd , I do n't like music , and I always have an excuse not to go . Then , I reserched this song on the Internet . When I hear this song , I remenber her face and her singing . `` Ann and I are going to go to Chaina . `` Are these sentenses correct ? The luckist man in the world Stephen Brad Bury took the gold medal in the Salt Lake City Olympics in 2002 / 2 / 16 . My eyes are sore these thesedays . My mother is a nurse whose job is to care for hadicap people , and her hospital has a school , a car , and a bus for them . But , in my living country , many handicap people use pablic buses , which have lifts for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work whthout hiding thier identity , and their classmates talk to them as friends . I volunteered at the univercity last Saturday . Campas Tour was popular , so we incleased our tours . Japan has very beautiful flowors in spring . I will talk about my research for six minutes , and after there will be a Q and A sessious . For now , I just have to study English hard in Jpan . ( ^ ^ ) / \ ( ^ ^ ) So , we just had the Gay Parade , which is one of the gratest paredes in the world . And you will need to know the foreingh language very good in order to understand and be understood . On the other hand , education in your own country , for example , in Russia , is adds perspectiving too . Russian , Literature , Physics , Chemestry , extra Chemistry and History . . . . . . . . . . . . . . It 's verry good gadget for me . Can you corroct my sentences ? Santa clous came to the party and gave me a present . * * My teacher said that Santa Clous majored in engineering . Are the problems which international tralvellers cause greater than the advantages they bring ? Intoduction : Travelers from other countries bring more advantages than problems . It brings a lot of intersts to the country . We had all inclusive , so we can eat and drink everytime for free : ) Egypt is a very interesed country . . . I 'd like to help people trying to learn French too , that 's why I find Lang - 8 wonderfull . Japan usualy hires the students as new workers until spring . Have you ever imagined your future lover seoriously ? In the end , I couldnt even shouw my smile in front of them , and I could n't see their smiles either . I am extremly excited to hangout with the girls here , as a friend or more than that . I always pazzle on choosing between `` to V `` or `` to V - ing `` . I think it 's a great web site because I can partice my English here , and I hope that I can help others to learn Chinese too . For many people , it 's such a confortable temperature . This is my frist time However my spoken and writen English are so poor , so I am afraid to open my mouth . I do n't have a foreign friend , and there is no freigners around me . ( Just space . ) What if I speak English to my friends ? That 's so wierd . ( Space . ) Second , they may not konw what I mean because sometimes my English is not good enough for them to understand . But some cloud was hidding it . . . I learned a lot of things about shinto . but I can increase my consentration through prayer . It is the story about mathematicians who try to prove Fermat 's unproofed theorem . It tastes terrific and the / it 's textude is like a rice cake . Its been alomost a month . And elderly peaple do n't feel hot very much . Also , some elderly peaple think that cooling your body is bad for your health . They had lots in stocks , so they wannaed sell them . . . Because Dazaifu - Tenmangu is a beatiful shrine . When we are angry , not only can we not slove the problem very well but we also make the conflict grow . I believe my English is not good becouse I can not use it fluently . I made a less than delisious cake I serch the recipe , the main crux is setting time and temperature for oven Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as cortoon , and they are interested in Japan ! I often talk about Japanese anime and cortoon to them . So , I want them to know other aspects of Japan , and I want to know cultuer of other countries ! I 'm sutuding English for a college entrance exam ( ination ) . I 'm lokking forword to receiving corrections on my journal . AndI recepted his invitation . I have learned never to use the webscam with stranger . AndI delited my profile instantly . anatano ie ni pasokan wa arimasu ka ? koro atarashii oobun wa yasui desu . In highschool school , I fell in love with my korean history teacher , so I did well in korean history . my family believes that everthing is influenced by the heart . and I usally think positively and enjoy day with a smile . I do n't hink I have any . . . . I think that the studnets were so suprised that a beautiful woman belched . . at last , please gives advice to lovely Chirwon high school studnets . At this time , yu do n't have to be greedy . Find your own beauty , make impressive momory , and build your self confidence to challenge new things . He lost his house and family , the only thing he has niw is a life . I bought one easy book for biginer , but that 's all I did . Only recently was it that I dicided to study again ! When entering into a boutique or dealing with a clerk over a casher counter in a supermarket , Japanse customers do not say hello to the clerks . ( They wanted to know where the bag is available , but was dissapointed to hear that she bought it in Japan . ) For example , people who really understand mathmatics can visualise things in their brain quickly when they are working with a trigonometry . I habe never gone abroad , so I want to travel around the world and see many places . It is bery cold this morning . I received a new spanis text from Japan , which is for beginers Sometimes I ride it instand of using the bus . As you know , the town of Iringa is pretty far from my place , so whenever I go there , I sould stay there overnight . Soymilk tastes simipar to milk . She said , `` I 'd never done something like that such a long time , `` so hearing about it made me tuoched because I 've also wanted to go to Univercity since before , but I could n't decide what to do for it now . My friend 's talking made an immpression on me . I have struggled with it until now because I have no confidence that bussiness couse can be useful in assisting me to find a job in New Zealand . First , when I ask about the condition of the patiant , Are thease correct ? ? What are other real English conversaion , please tell me . For example , reflux in veins , clot in areries , venous insurficiency , or thrombus . I heard that she bought many alchol , especially Japanese - sake when she went I always think about it more seriously than anothers . But I saw a diffrent fashion from conventional fashion . From nezt week I decided to go to a community center 's English club . I really do n't want to foreget English . I 'm waitting for your mail . But here , I can say angthing I like , even throught it might be wrong . I have writen two diaries since I have started using Lang - 8 . I am a colloge stdent . I am very outging and very willing to make friends with everyone . If you like me , you can leav a messege for me . I am very gratrfull to everyone who corrects my diary . Today , I have two anouncement . We think it will be help you with your language learning , to see the entries written by people who are lerning the same language as you . You can custmise your home page on the `` Settings `` page . If you are interested in gadgets and games , please contant me ! I do n't know why , but we are normaly supposed to write our resume by hand in Japan . I went to see the World Baseball Classic 's final game that was against Korea at dogers Stadium yesterday . Korea was very strong , but fainaly Japan could win . We were realy excited and happy . As you konw , recently more and more people have poor subhealthy , why ? She 'll probably stay at my grandmom 's home for a month . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own proplems . but now , we do not have much water , canned food , or lamen . Maybe he never loved me . I sence that he does n't takecare for me as before . A month ago , he said that we should go home together . Looking at it now , whate he said is ampety . so I 'm writing these sentense for the time being . I mean I want to improve through conversations firsthand rather than unilately in front of screens , no matter how inaccurate the informationis compared to that of mass media . Bean is very funny and foolsh , Rowan Atkinson is usuary a serious and calm gentleman . The Mid - Autumsn Festival night Novemver ? December ? Unfortunately , I was using my raptop and I did n't have a mic . even if I have no boyfriend , I wish all the grils who do have one will eventually get married . She said , ' I promis you that I 'll do my best to study hard . ' Are you satisfied with your carrer ? Because , I 'm just making my carrer now . S . , I will never have a prenty of free time . You know , it is one of the most famous universities in indea . Which of these sentenses would / do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? When I was a juniour high school student , there was a Kendo tournament . One day I was on the way back home in the everning . I know some English words and grammer , so I can write English sentenses like this . At first I want to concentrate on improving my English avility . I want to help you improve your Japanese avility . Now , it is rainig , again . I ca n't go out 'cause it is a little difficult to see the streets due to the fog . Child education is a very usefull subject because I want be a mother . I sent cosmetics to my friend and sent an enail to her . If I have the ability , I 'll write an essey . In a pool , she is scared to put her face into the water . And at a park , she can not turn the iron bar , because she is scared bending her body toward the grownd . They were my first choice company , so I 'm very dissapointed . . I 'm preased to love it because I want to spesk English very well like a native speaker . Thefore , I must study everyday , especially English . Well I decided to take the TOEIC test for whatever reason . ( Ah of course I have been studying English so that I can use English for some purposes . . . ) I am at ( the ) Ohtani Univercity in Kyoto . I want to be an emproee of that bank . I might just not be used to this weather becuase some coworkers are wearing short sleeve shirts . Theseday days I 'm so lazy . `` keep yourrselves from Idols . `` In afternoon , we had a body - building examnation . I really want to pass imdiately today I tried all the rides , and I screamed something terriblle to help myself feel better . Japan wil play the finals with South Korea at 10 a . m . tomorrow . But recently , I enjoy learning English , because sometimes I can notice an improvement in my English , either when I talk with an English speaker , or when I watch `` TED `` ( This is my favorite programme ! ) If I need to make an appointment with my friend , but am not sure when he is avliable , I wote a journal entry yesterday saying that I wished something special could happen , and there it is ! Then , I broug it to the bicycle shop to ask them to fix it today . We have a peacefull life here , so sometimes I really want to go out and experience an exciting and unusual life , but my parents are worried about me , because they think it 's better for a girl to live with her parents . My introduciton My hobbies are to learn languages , to speak with a lot of people via Skype , to drink at the bar with my frineds , to read books , to go abroad , and etc . So I believe the best way to do window shopping is to bring mothing Of cource , I want to use einglish in business . It is not dyed , and looks healsy . What made her look humble is defenitely the combination of damaged jeans and sneaker . I 'm always worring about that . Before , I lived alone in a domitory of my corporation . I brought something to cook and eat in the domitory Now I enjoy dinner time with my famiry `` my son will start to become ' homeless ' in America `` to the neighborhood . It was very tasty , and I felt comfortabele . But I feel like thetemperature in the library is below the freesing point . but I think th New York is a little bit nicer than Seoul . I shopped oline for about 1 hour , and I bought a bottle of rotion . I gained weigt ! ! ( T T ) My weigt . . . . I feel it 's really hard to speak to forgin peopke in English . I would like to say I have around several promble in my English study . Although I spend a lot of time on it , it still seems to make no sence . I like this period between summer and autumun best of all seasons because I feel energetic ( I mean copy and cpy that ) never mind a computer , dispite the fact that I 'm already 30 years old . If I could think in English while reading Enlish sentences , my English comprehension skill would improve rapidly . I arraged it by adding cabbage under the pork and then putting a soft boiled egg on top of the pork . Are the following sentences I 've created gramatically correct ? I 've been studing English . Although Lewis 's piano solos are somoetimes a little bit annoying , Something truely new is often accompanied by some kind of discomort . There are no intresting places to go for a wolk . The first time you go there , these places seem unusually intresting . Especiall talking with someone to gain more skill . I want to go aroad , and make friends there ! I feel ashame and sometimes I feel hatred toward myself . But I will give an example to you . I have a strong sence of justice ! ! ! I 'm a little upsed by it because unlike many people my age I like going to school and I 'm keen on learning new things . what the heroine thought when she met with the vampire , Edward , impressed me so much . It 's jsut like what I experienced when I was a teenager . write in Enlish daily , and watch NHK English program . But I overslept today , so I could n't study Enlish . I will have to go to bed early in oder to wake up on time . more time to know more peaple and time for improve my english What I try to do is to increase my vocabulary : if I run across new words , I look them up immidiately and review them before I go to bed . From tommorw I will start studying for exams . Firstly , I like music . My favorite artists are BUMP OF CHICKEN , Sister jet ( they are a Japanese rock band ) , Avril Lavine , Hilary Duff , Sugar cult and so on . It was an amazing experince . I 'm interested in English and I think Endlish is needed in the future so I 'm studying English now . And one hairdressor came to me and asked me `` just cut my friange , plase `` . After he [ / BLUE ] finished cutting , I saw my face on the mirror and I was awaked by it . I made a mistake that I deleated many songs in my I - pod . . . Maybe I will have a topit to write about tomorrow . When you come to Japan , do n't foget to contact me . Because Japanese is quite similiar to Korean . The bullfighting is a ceremoney not just about killing a bull , but also about looking forward to a good harvest . They looked quite mature for thier age at the entrance ceremony because they were in suits . My university does n't have many students but I can make friends with almost everyone and I 'm looking foreward to that . So Green tea is Ryoku Cya in Japanese . Reducing carbon dioxsides is highlighted by TV commercials frequently . I am also learning Thai unformally . tommmarow is the end of my vacation , I was walikng around Akihabara to shop in the middle of summer . My aunt was an acadamy teacher . It was very deilsious . I thought it was a bit wierd because she and I were not so close as to exchange text messages with each other . I had strained my left hund ! It was cloudy this morning , but at the scheduled time of the solar elipse , we all went to the roof of our building . There are a lot of Japanese toys for kids , so I 'll be happy if foregn people also like them . I 've had a cold and a stiffy nose for the past few days . She saied that she really wanted to stay over at my house . The univeristy tries to push students to communicate and use a lot of English in their studies . It was realy realy exciting ! ! Two days ago I went to Hyde Park with my classmates for a farwell party for one of them who was leaving . Whle walking down the street , I thought I liked the atmosphere of the town . I 'd already seen the movie based on it before reading it , so I could understand the whole story even though I could n't understand some chapters in detaily . But I couldn ` t find any place to play with my daughers because it was rainy . We watched prerecored programs and she let me read books to her . I 'm into holoscope these days . The victims of the tsunami and the radiation leaks are suffuring a serious shortage of food , water , medicine and proper heating . I feel ichy . Please check my crumsly English . When drinking with friends I 'm not well aqauinted with , I have to say ' ' I have to be up early for study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , last two of three are jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe even more than usuall so we have n't got so much work to do . It 's bacause the older students attended the international conference my professor helped organize . I alway set my alam clock . The alam sound was set to music . I think I have to change the alam sound to be an noying thing so it can make me get up earlier . She bought a lot of things on the web and spent a lot of maony . There are so many aaants in my house especially around the kitchen . They are mostly fickle , disobedient and not smarter than dogs , and this is probably istrue . My other firend and Iwere impressed by his comment Arfter that , My Korean housemate came in my room and told me he had tried to make Krean food and to eat it . It is my finnal year in the univeristy . Both of these contry must have a lot of similar places . So I want to go to experience and campare them personally . Every stuedent has to hand in the report , so that it will help the students who will go job hunting next year . I 've been playing `` City vill ' ' on Facebook . Recentry , I do n't feel well . I think that it is important for Japanese to show ' a token of thanksness ' through some ways if we receive some gifts or help . The whole city is pluged in confusion and sadness . It is convinience with many means of transportation . One of my doble majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rnb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationshop ! When they are alone , they uauslly feel heart - tired . What can I do but wish him a pleasant jourary and fly higher in the future ? They just keep making fun of me , and they do n't share their work with me , but with another colleage who came here later than me . This month , I 've faced a lot of difficulties , one is about work , and another is zbout a / the / my relationship ( actually it 's also about work , because what I am going to talk about is the difficlt with dealing with colleagues , and some of them are my roomates ) . In terms of the top 5 countries , the talbe shows that Japan , Australia , USA and South Korea the weremost common origins of tourists to Britain in both years . These days , I often lisen to Arirang radio which is a Korean program in English . The europe buildings were resplendent , elegant and spirtless as it always be . I 'm looking for goint out to dinner with her . Some students are usually runnning around the school at that time . But lately , I starated slow jogging for my health . Someday I want to run in a marathone . One day , I found this website on the komica , an ACG website , and I immeidetaly find that it 's a very interesting website . When I think about people who live far away communicating with each orther , I feel very excited . The other smartphones are not as atrractive to me . I went shopping to an erectric store . I wanted a small parsonal computer . It was very expesive . I want ( to have ) a lot of mony . The population is decreasing . More specifically , young people are leacing and the population of old people is increasing . My wouk schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarden teacher . After I ate the toast , I listend to music . You can browse all of my blog in this website and I had a list of my other blog websites in blogs of this websit . The dead lenguages Hard schdule . I feel I 'm luckey and I want to take care of care my daily life . We got a persent from science club ! I accidently locked myself outside my room door like an idiot . After several afterquake , I checked the newssite to research this earthquake . Today it raind so ~ ~ ~ ~ much . but it raind , so I could not go out . I am in an ELD ( english langusge development ) class . If my English improves , I will take some science classes . I want to go to a good university . Some presidents runnning Gourmet site and some run SNS sites . Reasentry , I have been bored studying English words . Then , I thoght to study English words while reading book . Is there a book which you can recommend for a biginer ? Do you know a book that you can recommend for a biginer ? As far as I 'm concerned , English is a beautiful language but I really do n't want to accept the fact that my English is really poor especially in speaking and writting . In China , finding a good job is very harrd . It is n't as hard in New Zealand but it 's still not easy . I am not sure if they do drugs as much as a drug addic , or if they did it only once , because I heard it from someone else that I hardly know . So I decided to ask the two guys face to face if they are drug addic or if they are dangerous because I do n't want to judge them and talk behind their backs . Today it is the birthday of my lang - 8 id . I am writing this article to celebre starting my blog . My Japanese collegues are morons , nobody can speak English well except for Seki - san . A raccon on the balcony On the other hand , we must accept they have weak points , like the risk of addiction and possible unintentional public exposure , wich has happened before with previously developed communication methods such as the telephone . Traveling to Busan last weekend with my friends was a really nice experience , but it was exhausing . I want to get marrid to him and have a family . Becides , I have to admit that I am a playful boy . There was a idel Dell Server in my office . Today was an ordinaly day . I woke up and went to Univasity , worked at my part time job at Starbacks and then went back home . I think Oden is uniqe Japnese . It is easy to cook and an econmical meal . The beginnig of our relationship , he made me dinner which only had some fried meat and some instant mashed potatos . The healtiest food among what he think is healty is a subway sandwich , but I know that the white bread made out of flour is n't really healthy at least for Koreans . My dad is librianan and always has a book for me . How about : Face to face against Real Madrit . congraturations ! By the way , I want to study abroard after two years , to learn Engish and different cultures . However , , I am having trouble deciding where I should go . My senior suggested I go to America or Australia . In his opinion , In America , American English is spoken and in Australia , Blitish English is spoken . I should select one of them . Where do you think I should go ? Encantado de conocerle . Since last year , I have been studying ecinimics for a civil survice examination . I thught that is why I ca n't be good at it . Many of my friends are sending and recieving this email even now . My father fainted on the sinkansen once . At that time , there was a docter on the train , and was ok . Fortunatelly , I have many an opportunity to communicate in English now that I live in Singapore . English is vey difficult It takes a alots of money to go Canada . Moreover , doing churus in class makes thier relationships closer and stronger . They would cry , geting angry , e . t . c . Above is the picture of the city whereI live . The upperview is so beautifull ! Every summer saeson , frogs cames . So I hope I contribute to all peaple ! I have difficulty explaing the rules in English , so you may not understand . Students at many unicersities in Japan are requered to study a foreign language , usually English . We succeeded in comunicate with each other because English was spoken . Generally , each age group showed a consistant increase in literacy rates of up to 100 % or almost 100 % , although the level of changes were different according to each age group . There was a dramatical change in the youngest group but the two other groups showed gradual increases too . Yesterday , I signed up for a correspondence cource . The cource costs about fifty thousand yen . It 's not cheap but I can pay for it by the welfare progrum which my company offered to me ! The cource will begin next month . Tomorrow I 'm gon to London for 4 weeks to study English . If I go overseas , I would like to see more munument ! We will be going to a wedding shop beacuse my friend is getting married soon . Fortunally , the damage to buildings was small . It is good for learing English but it is not good if I have not bought them . The reason is , fiest of all , that he knows a lot / is very knowledgeable about architecture , and he is always willing to pass that on to his students . About the Canadian International Doragon Boat Fastival . Dragon boating first ? appeared in Vancouver as a demonstraition sport at Expo 86 . The peolpe raced in their boats , using their oars to keep fish and water dragons away . I felt English was really interestig ! ! So , I wished to become a costomer service agent in an airport . I am learnig English and Chinese now . SINCE IM NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNOR THEM WHEN I FOUND THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` WHICH I LISTEN TO INSTED OF JUSTIN BEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID NO WAY ! ! ! ! ( I find ) it is a very diffecult thing to do . To the fact , I will get a dog in two weeek ! I am majoring in Engrish . We entered the competition as KOF , a famous Japanese fihgting computer game , and got the third place in Beijing area . I have not wirt on Lang - 8 in 3 days . I am proud of the workers who are warking at the nuclear power plant during this disaster In fulushima , although they are working there without electric lights and with no I 'm a Japanese university student in Kyoto , the most histrical city in Japan . I 'm majoring in cultural anthoropology . Yestaday an accident happend on my train . I am going to an outlet shop in Gotenba , Sizuoka prefucture today . I had lived there untill I graduated from high school . Then I left Hokkaido after . I have graduated from Shenyang Airspace University in July , I mayored in Japanese . Spicy Foods & Cat 's toungue `` I watched TV and learned that it 's because of the tangue 's movement . They end up touching something hot with the part of the tangue which senses heat the best . I 'm very happy becuase I wanted to learn English in a more proper way . It was ranning heavily today . many things about my life on ranny day . Of Ofcouse they asked us questions such as / like `` What is life ? , What is death ? `` and `` What is a family ? `` I like Barger King very much . I went to Okinawa on my spling holiday with friends . I went to a duty - free - shop , did scube diving , ate `` So - ki soba `` etc . . . . . During the trip , it was either rainy or crowdy . Me llamo Tammy , escantado . Study animetion abroad . He is studying Japanese animetion in school . I do n't know defferent between American anime and Japanese anime . I do n't know what kind of animetion he is studying . We had a nice conversation togher . He looked like a fuuny and friendly guy . My students have their entranse exam today . Driving in America is not easy , althought the city roads are very wide . It is very deliciace ! ! I have a questin . I 'm very confising . I 'd like to speak English fluentry . I 'd also like to know how to study Japanease . There are lots of English conversation schools in Japan , but few Japanease conversation school in America or other countries , right ? Whitch is better , an iPhone or an Android ( Google ) phone ? I wroked from 6am today . One of my former classmates has become a beautiful policewomon ^ ^ ; 5 - ( ( ) , ( amost all of ) , ( the hotel rooms are reserved . But recentry I discovered that `` Mr . My perents like his music too , so it affects me . I think this will be very interesing . Today , I went to an industral festival . It has been abour a month sinse I became a part of the company . I enrolled at an online English school a coupple days ago . Do you believe the price that one leson fee is 1 $ to 2 $ ? An Amazing Wesite for Langauge Learners ! ! Right now I 've come to be albe to understand recorded voice in English , but it is still hard for me to understand what they are singing My hobby is playing the flute in a wind orchstra . The leading singer , whose name is Toshinobu Kubota , has an amzaing voice and is a well - known soul singer in Japan . Simirarly , natural expressions are natural only because most native speakers regularly use them . Learning languages , either foreign or your own mother tongue , is to acquire not only words and grammers but also different manners to perceve and represent to the world . We stopped by an eletronic machine store where you can actually try using them . And I registered for the class Amarican literature and so on . When I hear the song , I can not understand it prefectly . But the Gelly beans are my favorite candy ! San frasisco ! I went to San Fransisco from Aug 19th to 22nd with my girl friend . Maybe I can say this in a more buatiful way ? So I can corrent Japanese grammer . I study Animation at univercity . sandwish , spaghetti , Chinese food and so on . Yesterday , I came to Totigi for work . dismiss about fifteen thousand emplyees . When will the deprssion end ? Thousands of people are crowded in these temprary markets . I 'm so tired , becaus today 's tests were very difficult for me . I 'm so happy because there are some people who correct my Emglish . I 'm going to go to the restaurant to eat dinnar with my family . Hello ladies and gentalmen all of my friends around the world Whatdo you tinhk aboutwhere our God is ? Of cours Henever beat ' temples ' , ' shrains ' , churchesand moskes . we could propose to sort out the probrem of Iranian elections . The probrem is very diffcult because we ca n't understand others and ca n't think about others opnions . But my sister said she can laught alone if she think of something funny . There are variouse cakes there . In my latest journal , I said my father 's inurance expired . He stil can have insurance from the government , which will cover the cost to some extent . It was such a nice and exciting game , and I 'll contine to practice . I study things taht are connected to English in my university . I 'll go to Osaka by a bullut train called `` Shinkansen `` to attend a meeting with people from other companies . I lived in Osaka for nealy six years , until 2007 , so Osaka is like a second hometown . The Palestina , of course are opposed to this establishment agreement , that they attacked the new residents , and the strife occurred . Before it started , I was looking forwaed to it . I attend the univercity in Nagoya . I also study Chinese at univercity . I whached `` Lie to me `` on DVD . And we took a rest and ate the watermelon that was gaven to me by my brother . Bcause the car in front of mine was very slow , I passed it at too high speed . I 'm learning Italian and inglish . Becouse everyone at school speaks in inglish . Is the day when I can understand English news programs without subs / subtitles truly comming ? He has two childeren and has bought a new house . Today , some of my classmates said they think every counry should close every nuclear power station , but I do not think so . Although I am in New Zaeland wherethere are no nuclear power stations , I think nucler power stasion is help people a lot , for example , nucler power stations provide people with electricity , and I think that is good . I have studied English since I was a junir high school student , but I ca n't write , speak , or listen to English well . In the balcony , people are not ony able to sit on the floor but also lie down . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closetrooms . But I think I perfer the clothes which suit me . to fashion , centain styles look better on some girls than on oters . I like nearly all colours of clothes except red , but I do n't konw why . I also have many jewerly . I perfer the fashy things . So I like many kinds of jewerly . My faviorite jewerly are earrings . I could n't sleep well last night becaouse I have a cough and So I am looking foward to it a lot . I love my grilfriend very much but she does n't seem concerned about my feelings . I want and need to study Engilsh . My mom who is living in Korea is feeling sick and I 'm worried about her . Thanks for taching me correct ( or proper ) English ! If I keep on studying , I belive I can be better at English . I took off my shoes at the porchI and sat at a table that is commonly seen in many Korean restaurent . I ate Yukkegiang , a kind of soup with chopped beef . This prebents my body to get cold . Before their concerts , they pronounce the members of the day , and funs can choose the day of their own favorite musician acts . I have heard that there are some funs coming to their hall not to listen to music but to watch their dance . Befeore I came here , I thought `` If I lived in the U . for a year , I will be a really good emglish speaker . `` But that was wrong . I am surprised how difficult it is to learn other langages . So I was really disapointed in myself and kind of bored with studying English . But Lang - 8 often encouraged me to study it , because I can see many people who study other langages and may have same feelings . I really like to correct forigne people 's English . You know what , in Japan we have to follow some rules sometimes like we have to show politness to senior people , we have to use compliments a lot and it is extremely hard to be close with people who I meet for the first time . . . My school is very small and almost all the studenst are Japanese or Korian . I really want to talk with foreiners . Most Japanese people do n't know what `` premotion `` is , but we use `` shuffle `` as a Japanese word . And English is the most popular langage . Today , I tried to call the hospital and I was able to get an apointment . Accutually , making holes is also boring work . But it looks / seems like she is looking foword to her two granddauters growing up . and I had drank a lot of alcohole . yet , I ca n't stop drinking alcohole ! XD Next time , I 'll be more cautious when drinking alcohole . Especialy , Italy . An alternative : They emphasize that you should just reaserch and read more and more to get knowledge and experience . Next , I deal with the bigger dishes such as a round - bottomed pan or sadad bowl . The lover of the protagonist died because of the failure of an abortion which was not disired by her . Moreover , the friend of the protagonist felt sad due to the lack of understanding by the adults and finally he committed suicided . The air was freezingly cold and the sky was cristal clear . Actaully it 's not just raing . . . After a few minuates , I stopped thinking , I could n't think anymore . Are there ramen reataurant in your country ? Today is my first day working at the new company . It is samll with only a few staff , but it is short distance from my house and new company . I wathch the concert at church . `` Mom , What a lovery puppy she is ! she is sleeping . 2 So many people say taht . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese right away ( that was the main purpouse of joining : to learn a bit of Japanese and to polish my English ) . . . . Today , I went to McDonald 's to sutdy with my friend . Of course , I hope return to the level of befor the subprime loan crisis occurred . When I talked to my American friend , I was speaking English with Jpanese words spinning in my head and they would even slip out of my mouth and cause some embrassenments . The painting is of youroppu in the middle ages . I do n't know its valu . I do n't have much money , so I ca n't go so far , but at least I 'll get to visit `` Amano Hashidate `` , which is oen of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I fele angry and did dont communicate with him . He lives by himself , and I hvae a good family . Thank you for always teaching me varius things ! I loved the senery too . Tokyo Disney Sea has American , Arabian and Europian streets . I especially liked the Europian street , I felt as if I were in Europe . I had a lovery day ! The picture I drew which is shown as my image was critized by one of my friends a couple days ago . I did n't ask further ; therefore , I did n't know excactly what in the picture needed to be modified . I took a nap in the afternoon , but afterward I didnt n't feel rested , because I had several nightmares while I was asleep . I stuggled to wake up , because I just did n't feel able to do so . When I went to the hospital , a nource said to me , `` Please check your body temperature `` , and she found my temperrature was 37 . 8 , so she told me not to get a medical check - up today . I was SO HUNGRY that I even drank three glasses of kalua milk Okey , let 's start something ! Get into action ! I want to improve my Englishi , so I joined this website . I think it may be because my friend visited my home yestrday . tenant - recident I ca n't find o my favorite program because there are too many channnel . The movie 's tital is `` The World of GOLDEN EGGS `` . It 's becauce I could finish my job within the day . What is worse , `` Dressmaking / Needleword / Knitting `` was selected by only 9 % of them , which was a smaller percentage than people aged 25 - 29 ( 14 % ) and people over 60 ( 27 % ) . She smiled and aske me , `` Why did you choose me ? `` ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very beiftly . We stood in a long line under the white snow because my son wanted to eat in a small reataurant . The cat lets them get on itself and geso to look for Mei , and they are able to find her . I feel pretty prussure because I ca n't do better than other students can . because , untill yesterday we donated our holiday for working on the final work . . . I ca n't image my driving an erectric vehicle , but the development of the technology is tremendous . Studying aburoad is my important dream . I might love her , but I hardly know about her feelings and what she is thinking about . althogh she is reallly attractive . . Therefore , we can only imagine how life must be like withot schools . The Gandam is very big . Althought I had class at night , I made a phone call to my friend and then my mother took me to buy some watermether , because it is so cheap I think the staff in this store have agood sence on how to present CDs . There are a lot of pop up rabels that describe the cd 's and the genre of music . I met a friend who spoke fluent English , so I asked her `` Could you give me some adivice to speak English fluently ? `` She siad `` Probably your English level is good but you seem to not speak English as well as you should , try talking to a native person daily . `` That was great advice for me because I was thinking of trying to talk with a native person . Nowadays , people face a series of problems regarding the enviroment . We uaually do the things we want to do but damage the enviroment at the same time . It 's not only for other lives in the world , but also for ourselves to live more safely and colorful . I had a long walk , went to Freshness Burger , listend to music that I like , let my mind drift back over rundom things , and tidied my stuff a bit . Becaus I was in a private educational institute , I could n't see the first half . I had tryied speaking correctly but when I did so , the words would not come out . in it , but the pictures often come out blurredly . Becouse she likes to play pc games , which is the reasonable Skype English shcool ? My eyes glisted with tears . because I have low blood pressyre and I 'm senstive to the cold . If I can pass the test , I can go abroad and get trainig , and take part in editing textbooks . . . But I will go there tommorow . I was glad to hear the forecaster say that tommorow will be sunny ! I 've not been hay heyfever so I ca n't relate to the calamity . 4 What 's defference between ' I have some questions for you ' and ' I have some questions to ask you ' ? We ca n't deny the dominance of Endland in comparision with the other nations , but we should be clear in the way we use nations ' names . I have always thouhgt that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . I felt very comfortable every night even though I had stayed in an 8 people domitory room . Because he will go back to Hong Kong and will not return during the vaction . I think it begins with nothing , then it finishes ethier with nothing . A freaky intervirw experiencs HR called me yesterday and asked me if I was interested in the position - maketing executive or not . However , this company totaly dispointed me . First , I filled out a sheet of personal information and a sheet of MERTKETING questions . Freaky qestions . I did n't believe any marketing manager would ask the questions like that , execpt for managers in the PR . The interviewer asked me to breif introduce myself and asked me severl questions . So I asked how many brands they would launch and she was n't abled to answer me . I also asked about the location of the noew shop and she said she did n't know . That really surpriced me because the new shop will be launched ( opened ) in the coming April . So I wanted to go to Kyoto in the morning for siteseeing . We planed to go drriving tomorrow ; however a meeting time and our distination is not decided . because everyday I think `` l 'm happy , l have all the things l wnat `` but sonetimes So , I have to eat lunsh alone ! I have not eaten breakfirst yet . I 'm looking forward to see my lovery wife in yukata . Becouse if I think too much , I wo n't be able to continue . I am buzy , but I just have to keep trying . We read a recpi while we cooked `` tororo - conbu - nabe `` . so my friend advicsed me to write my journal on this site . I want to know how to use the phrase `` Get to the bottm of this . `` I will have an art class . I 'm going to go to near the port , and I will paint a pecture of a fishing boat . Yeaterday , I played soccer from early morning . I will join a soccer tornament in November . Pls correct my english . I will remind you of the death of princess Diana , who died in Paris when she was followed by many paparrachi . I do n't think I didn so well . ( After the test , a cinematographer came to my school and gave a lecture . He is Korean but at the moment he lives in Japon and is studying Spanish . Polular places for Hanami such as Ueno Koen are usually very noizy because of peple 's talk , shout , song etc . I am surprised that a lot of people are able to speak good Japanese , which is said to be the one of the most dificult languages in the world . My dog is calld Rei . I have had a dog for ten yaers . My dog is sheeping on the sofa ( now ) . somethinf happened to me recently . I went to a japenese food resterant with my boss yesterday . When I go there , I usually take a motocycle . It took nearly two hours to finish writing the essay , but I was glad I could practive making an essay . It 's the soncond Sunday of May today . Now they 're keeping that secret just between themseives ; their mother does not know that it 's Mother 's day today . Each ramen shop chef has his or her own ( special ) recipie . Though I 'm wondering if she 'd ( like to ) eat out at Italian or French restraunt and so on . If you have a chance to come China for busniess , you can use this good chance to taste the wonderful Chinese food . If you also want to find learning a partern . Anyway I had a gud day . I have been smoking for three years . Frankly speeking I really do n't know why I began to smoke . Maybe there were many troubling things ( OR things that troubled me ) at that time , so why I started smoking is n't important I think . People always do sonmthing they are unlikely to do but that they must do . I recently finished watching 1 Liter of Tears . I 've been learning jazz dancing for four years , and this year I 'll try to learn yoga and velly dancing ! I made many foreign freinds this winter vacation too . Since the neiborhood itself is very popular , the rent is very high even if quality of an apartment is low . I prefer a comfortable apartment because I spend more time inside than in the neiborhood . Please check my grammers . My favorite peformer is Plushenko , because his sketing is very well and exciting . And because now I have native speakers to speak with and practice with , even this site is one of my important reasourses . ^ ^ Sorry , I have n't posted in my dialy for two weeks . I am an account ececutive . Everyday I need to handle all kinds of things that are complicated and irritaing . I think I should be more careful and deligent for work . Most popular Chara in Japan Beacause I 'm already watching One Piece , Conan and Hajime no Ippou . I wanted to watch them because they are so famaous . Naruto is famaous in Japan too . If you have not seen it , I realy reccomend it . My main job is solvning my clients tasks by digital communication . I make it a poin to listen to Enya 's song when I am stressful . When was casted in Japan , I was a big fan . The Sushi he made was so delisious , and he was delighted to see the pleasant faces of those who ate his Sushi . There are many atractions . Speaking of atractions , some of them would scare people but they are out of order . I 'm a chiken . We asked a peson there to take pictures of us . perosn in the music industry . Dubois put her girls to bed and was wating for her husband while sitting on a sofa alone with the lights turned off , when Mr . Dubois , deeply destressed , finally said to him , `` Honey , It 's already 9 o ' clock . `` I got a little cultral shock from that scene . Taiwanes perple are very kindful . I love Taiwan and Taiwanese perple . I can make various pound cakes , for example , chocolate , pecannuts , banana & walnuts , raisins , and some dried fluits . I 'm a graduate student and I will graduate ( from my univeristy ) next spring . I need to wait until companies start intervies again . So , I deciede to return to where my university is located . If someone finds any wrong sentense , please correct them . Neighbor restaurant 's menu It is the Godzzila Rock , which is in Syari town , on the Shiretoko peninsula . My classmates suggested we go to see the movie , 2012 , to relax ourselves and relase the pressure repressed these last few weeks . I 've skipped it twice before , and if I am anbsent three times , I ca n't pass the exams , even if I get 100 percent . Even watching TV was a lille bit hard . We also decided that we would sing one Englis song together and one Japanese song , and then after we sing well , we would post it at YouTube . Of course this is a good way , but before doing that , for people who is not confiden with their speaking like me , it 's very useful to learn how to write well organized English . I found an / the anser this question . Work is impotant for me because it enriches my life . But nowdays , Japan has not any `` Dunkin ' Donuts `` shops . I thought `` Today , I wo n't so busy , I wiil be OK `` but unfortunately ? ? ? When I lived in a apartment , I coud n't endure staying inside all day . In my opinion , every subject is importent . It was so delisious that I ate too much . She also said , `` You can never be too cereful , because you are a girl `` . My sore thorat is gradually healing . My ankle hurt last Thursday , and I got another unknown illness last Satruday . Do I sound a little bit mysterous ? So I was thinking , `` I definetly have to return . `` The host family was good , I thoght ! As a aaresult I played OK but my index finger was burned . I ca n't wait to have the party : ) and also for the holloween parade at 6 AV : ) Recentry , the custom of wearing kimono is dying , becouse many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . At first , it was fairly exciting so I tried to listen and undertand all the explanations . These exams are very deifficult for me . I remember when I was in high school , I seldom had the feeling that `` I do n't know what I 'm writting about `` but now I do feel unsure sometimes . Now I 'm larning English for business and communicating with foreigners . I have a big cozy whithe bath with different kinds of foams , salts , soaps , gels and many other sweet things that are so necessary in the bathroom . I sometimes take a bath and read a book or a magazin . Comparing these two versions of `` Year 3000 `` , I definetelly like Busted 's original version . But 4 years ago , I went to Okinawa with my family and I tried snorkling for the first time . My heart was pounding while I was snorkling . I do n't know why , but I beliebe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenary . I was quite sure he always looked down on my plan to go to Austraia to master English . So when he called me , I was extremly happy , because I got the best opportunity to show my present situation off to the useless Japanese man . Actually , I ca n't understand what native English speakers say at all yet , and my salary is quite low compared to normal Singapoerans , but I bluffed him into believing that my life became much better than I had been in Tokyo in order to keep my cheap pride . Later I am going to eat with friends . afther that , we are going to my friend 's house and to wacth movies and listen to music . This is my first dariy in this website , and it is also the first day of 2009 ! I hope I have the patience and perseversance to keep on writting daily in So ashame ! Acutually , I 'm afraid of making mistakes . This shopping center is one of the biggiest shopping centers in Australia . After working there , I moved ( or decided to move ) to Canverra , the capital of Australia . When I worked there , I noticed that Australian people liked Estern food . Please correct my sentece . Flights do n't movied by only one person 's contribution . He looed at his feet , there were tiny animals around them . He was scared , he ran along the innor way . Japanese weman are strong . Farthermore , some adults too . IU intended to temt ( seduce ) Evian . I have a bad feeing ABOUT THE LAST NIGHT ` S DREAM . It ` s sort of sad , eventhough I don ` t know why ? It was a jouranl about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! deceive : You can not decive me because I saw you walking in the station with your dog . doubt : I doubt that meybe she forgot about the promise we made . When I arrived at Osaka , it was ing rainning heavily . Of couse , the sound was very good as well . I just rode my bycles earlier and had a dangerous experience . He was running away from anoher kid so he did n't see me . They laught at me at the time , but I was able to learn . I am shure that I will be able to learn to play the flute now . It 's so pitful . I spent 30 minutes writing these sentenses . . . we will execute to disetablish atomic energy plant `` But he did not tell a specific plan . Is it as bad as the expression of rasing the middle finger ? ? My work is in acpuncture and medical massage . I drank a lot of beer , and I became dranker . And trying to be as naturl as children can enable us to receive as much as they do . educatinal oppotunity have opened to more people too . So it looks like our life as human beings is definitly becoming better and better . We own the latest tecnological gadgets in our houses , and live with educated people in an intelligent society I was driving near my house which is in a residencial area . Prebably he was in a hurry , but of caurse in this area passing is prohibited because it is a school zone / area . That is why I write diary when I expelienced something interesting or when I have quetions . Recently anime costume parades are very popular especially for geeks and foreing people ; P Several years ago , on Halloween day many foreing people with costumes got together on the Osaka loop line and stayed there for many hours ! It was so much fun ! ! But it bacame a problem and was banned the following year : ( I took a Japanese tea ceremony lesson once a week in Japan for three years befor I came here . I sometimes want to drink green greentea here . Plese tell me if there are any other often - used words that mean `` very good . `` Japanese marrige system Brides and grooms simply go to city offices and turn in their marrige application form , which has the brides ' , the grooms ' , and two wittnesses ' sigunitures . No picture IDs are requiered to turn into the marrige applicatin form . Someone else can go there insterd of the couple being wed . Becouse of this system , sometimes problems arise . When a couple goes to the city office to turen in their marrage form , they sometimes find out that one of them ( or both of them ) is alredy married to someone else . When we entered , my every my tought addressed the music ; so after I removed my coat quickly I began to tune myself to the track . When I listen to this music , in particular to Marc Anthony , I be one with the melody and I feel really free , that every thing around me disappears , andthe hertbeat follows the rhythm of the music . The line was sort of stuticky . Mainly , a Japanese teacher taught English grammers , accents and various words ( / vocabulary ) . For that reason , I have studing English for a long time , but not very well . . . I would like to speake and write more like a natively . There are many rap artists , but there is only one Eminim . But I ca n't understand English grammer . I participated in a web developer 's event last Satruday . It is uncomfortable to stay in an unfamilier place . So I asked my boss to buy some vesetables for me . Last night when I got them , I put them in the refrigerater . What shoud I do if a rat , mistakingly eats the poison and suffering , jumps from the kitchen cabinet ? I work for the Japan 's Air Self Defense Force and I operate a F - 15 fighter airplane . When I watche a TV program , I recognised the store . I can not stay in Kyoto untill April because of my job . For `` Domesctic Sewage `` , Salo Paulo showed the highest figure , 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . In addition , Tokyo presented `` presticides `` as the worst factor for polluting water ( 31 % ) whereas the pollutant was a much smaller factor in Sao Paulo and New York with only 9 % and 6 % respectively . It ` s my first time on this webside , and I don ` t know how to use it in an apropriate way , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for sereral years , and still do n't know enough ! ! ! ! Usually I go to a Tully 's coffe shop , my favorite coffe is `` Today 's coffe `` . Alternative : I always have a cup of delicious coffes when I go to there , My real reason for going is not to only to drink coffe , I have been working as a system planner in the IT devision for one year this June . But now is the time to use IT in order to develop cloose relationship 's between our stores and the customer . We as system plannner must think to embrance social and digital media and continue to look for new ways to bridge the comfortable experience at store with the digital world . I usualy push the reset botten each time I boot my PC . But as I have been exposured to many kinds of English on the net , Even though they have an Indian accent they seem to be able to both work and live in America or other English speaking countries as a member of socities . Even though it is still late June , the air temprature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insulance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insulance . And my friend tought me about that / it . It 's nice to learn new things or acquire new knowleadge . Only four more days until I can return home and begin my summer vacation . My plan for this vacation is to join my cousion 's company and do work for him for free . I like chocolete but on not this day ! ! Hello , friends and teachers , I went to university today to prepar averything before recive my cetificate . Today we had violn class . But the theacher keep saying , `` Hold your instruments up . `` I made tamato sauce today . and I need you to help me to improve my english leval . If I eat a hanburger slowly , chewing it well and tasing it , I always regret eating it . ( I 'll stop complaing about it . ) I 've had a lot of experionces like this and I realized that men and women ca n't be close friends . Recentry , I made many kinds of breads . When I was student , I use a lot of monet for music . A Shiba is a type of Jananese dog . They are medium sized and very clever . As a result , I found this website and enjoyed correcting articles written by some foreighers because I am good at it and it makes me feel good whether they thank me or not . I am `` good at `` speaking japanese but I am `` not as good at `` spesk English . I think it is about the guy who kept on eating only Mc Donalds Hamburgers and potetos ( french fries ) And now I want a motercycle , dreaming that I get a big one and travel around the world . Take for instance English Central : I can study listening and pronounciation on the site . Usually , I do n't say much if the atmostphere of a conversation gets stressful . Recently I can only go to work only two days per month because I have been receiving post - surgical chemotherapy to prevent canser recurrence and metastatis . ( alternative ) Though it was regrettable that I got sick , I belive my disease has helped me develop a greatness in my soul . He 'd prefer to work in Canada than Korea , because if you have good & nbsp ; bilities and & nbsp ; experience , you 'll be able to earn more in Canada & nbsp ; than in Korea . We are going to go to Himeji catsle and some other places . One of my friends reccomend it to me . My Frist Time To Write A Diary In English When I say that , people aroud me look at me surprised as if they did n't expect it comoletely and I looked odd . We can listen to radio and do simplitic jobs and at the same time feel relaxed while listening to the radio . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio chunnel . Of cource , I recognize that my range of vocabrary and how to express my thoughts are not strong enough . Recently , I have had difficulty wrtiting my resume in English . I 'd like to join fittnes clubs gymnow . This gym has a lot of foreiners , hence I 'd like to join . It was my falt , but he did n't need to get so angry . I hope he will be transferred to another department next quater . It 's a traditional ivent for Japanese to visit their family graves . Restart Toiret Training One day , she was playing with her friend on the jungle gym , but her friend kept climed higher than her , so she started to cry out of frustration . However , because she has been suffering from hemorrhoids since last month , we finally succeeded in convincing her to wear diapers to heling her buttock . She is aways kind to me . She is lovly . She aways teaches me or She teaches me always . Even though I 'm Japanese I do n't understand it very well ^ ^ , I wonder if it 's because I 'm not intrested in this period so much . It would suck to be sneezing all day when the long and cold winter has filnnaly come to an end . I have tasts tomorrow at school . I have to syudy tonight for tomorrow 's test , When some people find out about this , they are suprise and they think that I have a proplem . I can learn a lot of new information from cartoons , spically if they ( the cartoons ) are about history . In Japan , there is a costom to send New Year 's cards to familier people . Nowadays , I 've found that people smoke in the streat . I intend to pronounce corretion of my compositions and practice my pronunciation by native English speakers with skype . On the other hand , 12 % of the population dislke obese people , which is less than the 16 % in 2003 . My husbund called out to me `` Pass the solt ! `` I did n't know why he wanted salt , but I brought the solt box to him anyway . My friend and I searched for somewhere quiet to study Chinese and Thai . We did not find a good palce , so yesterday we studied at McDonald 's ( ? ) , but there was a lot of music and a lot of students doing their homwork . I do n't know why , but I know we feel good all the time and like to smile with people wheather we know them or not . I also asked her about whether in China they have Kung Fu or not , and she laught and said that they do but it 's diffirent in the movies because they ca n't spring up into a tree or unto a roof or anything like that . I 'm fifthteen and staying in Malaysia to study art . Do you have any hoppies ? Do I call them `` hoppies `` ? I like to choose coffee that is freshly rosted because coffee farmers should get more imcome . I am a person who always looks on the bright side , and am an enthusiastic self - motivater . The issue of whether we prefer to eat at home or in restaurants has been widely debated in our community rencently . When I was in junior high , one girl who was not my classmate came up close to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied , `` well I have a sister so you might think so . `` This is not an anwer at all but I managed to say that . As there are no neighborhood on either side , our flat is totally open to any directions with lots of windows and every time we open all the windows , we always hear winds or breezes whistling from one to another directions . I made miso suop and another dish . Miso soup was a littel bit thick . I wantded to be a chef before . I can say from my exprience that I have carefully monitored my life I go this course becouse tho I can read English text ( not well , but well enough ) , and understand English speech ( a bit worse than reading , but I am able too ) , I ca n't speak it ! As my college is in Kyoto , I usualy only travel within this area . May this new year bring many oppertunities your way . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more unconfortable . I came back from my business trip last night and I jogged to the office to deal with the receipts to get compensaion now . I often eat out at places like McDonal ` s . I have learnt from the internet and from apllications within Microsoft Windows , although I need help becouse I find English a dificult language to learn . However , I am often told `` You look like a half - beed ! `` I think it 's because of my brown eye color , but I 'm a full - blooded Japanese . So here I 'd like to study techical English and find new friends ( fram all over the world , but it seems to be only a dream ) . I only have the datebase on my PC . I jogged on the weekend , but I think it seems to have little effect in decrese my weight . What is culture ? It 's meaning is the civilization and customs of a cretain race or nation . There is a very famous road called Savile Row in London . I am goig shopping today , I ca n't waitt for that . I was talking about names with my firend . The conditionaer makes my difficult hair easy to comb . Mebourne is good city to live in but I hate the weather here ! After eatting dinner I immediately got hungry again . Maybe I ate too little . It took 60 mins to get to there , and 60 mins to get back . I 'm a Chinese girl who now lives in Austrilia . This is my first time using this kind of website which my friend recommonded to me . Therefore , I 'd like to practice my English with you guys and also learn something about Frensh . My granma used to say that holly ghosts protect me as my goardian and watch over me on my birthday . I 'm looking foward to coming back here again next time . Yesterday , my syster and I went to the movie theater and saw `` Gnomeo and Juliet `` . And , the order ( of parts ) , starting from the nearest to the barin , is the cerebrum , the brain stem ( the vital center ) and the spinal cord ( this is the end of the central nervous system ) and peripheral nervous system ( the part of the nervous system below the spine ) . `` I read the newespaper in the web . `` And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courge to learn more about cooking . What ruins our life is defenitely our negative thoughts . They emerged from MySpace first , and recently they have become famous in JapanI , I think because of her cuteness and some of the songs . . . * As an English major student I must learn how to understand English well , so I am reading the English book ' Blach Boy ' by Richard Wright . I could n't understand all of the story , but I know aproximately what it 's about . I bilieve that . I 'll go to dancing lessons ` again but I do n't have enought money at the present moment . . French in general : it 's agreed that we strike , critize , and complain too much . I was a system enjener in Japan , but I want to find anothe intersing job here . We delivered punches at each other , but it was only me virsus three students . I do n't usually buy imported items because they are a bit pricer than regular items , but they were on sale . The labor force , composed of prisoners , soldiors , and workers , built the wall . This is my first writting on Lang - 8 . I just found this site accidentary , and I think it will be a lot of help to improve my English . Recently , a friend of a friend of mine who was born in Austrailia , teaches me English on the phone . This week is bery hard for me , because I have part time job on Monday , Tuesday , and Wednesday , and I plan to play on Thursday , and I plan to go to Kyoto on Friday . ( ^ ^ ) * Of course , I have college classes that I must study for . I watch SESAMI STREET podcasts on my ipod in English . So I have to aquire the English language in order to work well . My plan to study english is to write english compositions and watch DVDs of FRIENDS , which I heard is an intresting comedy in English , everyday . In spring every year , Japanese hold partirs in which they welcome freshmen . I 'm afraid I lost the opportunity towork at orthopedic hospital . I 'm fed up with arguing about probleams . I 'm afraid to become audlt . < best Its defference from the Japanese Culture . Unfortunatley , there is no chili papper Kimbap on the long menu of this restaurant though . He told me that the Spa is becoming popular in the Filipin . Of course we have to feel sense of alieanaiton when we see foreigners at airports or other countries or our towns . If you imagine your country is a samall island and English is spoken in only your country , you will see it would be a big handicap for you guys . But foreingers have been speaking English since they were little as the publicly spoken language . But of course they only spoke English while we were drinking , so I counld not enter the conversation . When I had oppotunities to speak in English , my Japanese supervisor would say things like `` You said ' a water ' and forgot to add 's ' to ' he want ' `` after every one of my speeches . We had two visiters from Vietnam at my home . I watched the news yesterday and I heard that there are many people affcted by this influenza in the world , and also there is one person visitting Mexico and is guessed to have this disease in our country . Actually , I 'm pregnant and I 'm suffering from morinig sickness , so I felt gloomy before the wedding . We went sightseeing , had lunch and bought seefoods such as crab and flatfish there . Please teache me what that means . I have to get the lisence by April , so I 'm learning how to drive . I rearry enjoyed her performance . I 'm worried about getting fat because I put sugar and milk in my coffe . I 'm goint to go to my friend 's wedding , and congrate her . Rencently , I have been tired due to my work . becouse you are Japanese you can get a higher income . But I think going on a tirp on Christmas Day is a good idea , because you can enjoy Christmas lights in places you have never been and also sight seeing . So I 'll try it with an accompanying CD of a English diglogue textbook . `` Pirates of the Carobbean : On Stranger Tides `` was exciting , too . So eterday I looked frearfuliy at the scales . It 's so expencive . I have no friends to studyy English with here . But now , he has found hisself and is reflecting on what he did . Sports Day is going to be held at my son 's preschool next nextweek . So , prease talk with me on Skype . Yestarday , I got / bought a game . If possible , I want you to correct my dialy and know about Japan or Japanese . My dialy is mainly about my own daily happenings , Japanese news and culuture etc . If you are intrested in that kind of japansese culture , I 'll be so glad . There are various types of Japanese ' Sake ' like `` hakkaisan `` , `` koshinokanbai `` , `` kubota `` , etc . Freedum Day ! ! Finelly , should I say anything else ? Therfore I need to achieve a score of 6 . 5 or higher on IELTS I was surprised how fast she mastered phraises I tought her . the laidy used a marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks very painflu , it just felt a little bit itchy . Do you know about Bobbby Valentine . I 'll stady English little by little . . . They 're famer . curently they are preparing to plant rice . It starts in the afternoon , so I 'm planing to go to the library in the mornig to read a book ! I went to the libraly after the test . I 'll go to Okinawa this comming Sunday with my school friends . He has lived in Hawai for 9 years . The question was whether it should elimilate . Yesterday , we had a tranlating class and it was exciting for us . In the class , we learnd how to translate texts from English to Vietnamses and vice versa . So far , when I read something in English , I can understand it if it is about the subjects that we have been tauch . A patient came to my clinic 3 minuits before the end of our consultation hours . In spite of being busier than usual , we enjoied our work . So I would like to keep writig and speaking English . But I thought the tiger pencil case was more cute than the lion , so I choiced the tiger . At lunch time , I was talking with my maneger . He said to me , `` Speaking is most important when studying Englsh . `` I 'm a biginner . But I dont n't know the difference between tacos and burritos ; ) Morever , I was n't in charge of the register today . Learnning English on my own makes me feel that English is so hard . As we stand in the front of the restraunt , we pick one guy every week . But I 'm a little nervours becouse of my English speaking skills . My job is a project manager for developping web sites . , , , to make him intersted in the Korean language . It 's raining heavily in the Nigata and Fukushima prefacture . I was more intersted in wearing a Yukata than in seeing the fireworks . My English teacher is a forigner . There is big statue of DAIBUTU in TOUDAIGI - JI ( temple ) . It 's the biggest statue of DAIBUTU in Japan . First , I watched it in English with no subttle . My home and car are covered with snow , and the snowscape is beutiful . Dier friends ! The people are nice , the beaches are beautifl , and Okinawan food is awsome ! Maybe someone has to wite a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybet he just lost all his money . . . On september I have a plane about going to Victoira , BC . I am an easy going girl , and I ` d like to having many freinds ! ! Three years ago I was a menber of the fitness gim , but I resigned because of my busy job . It was really traditional , so just a few people who are familly or relatives of the bride and groom could go inside the Jinja . Recentlly I think about it every day . It is a cloudy day today but the temperture is not too warm and the weather is confortable and I 'm looking forward to rhe start of the school year . Althogh it is difficult , but I 'd still like to study English . and I beleive it will be difficult ( hard ) . It was a surpriese too . He tought me that my dream will definitely come true if I do n't give up . It is aprox 10 feet tall . I 'm studying English right now and hope to aquire the skill to speak fluently with native English speakers someday . You are my friend and I always beliving you , but now I see you lied to me ! In my textbook , it was mentioned that many people in Okinawa live untill 100 or more , is this true ? I can say my opinion in simpl words , write ( with mistakes , of couse ) and undestend other people when they speake , not fast though . They should find the power to look to the future when they faild . I was watching TV , so I fell slept in the living room whithout covering my body with my bedding . That is why I cought a cold . Today , I 'll tell you about a famous Japanese comic called `` ONE OIECE `` . Long fligt The novels were writte in Japanese . Becouse I study English these days , I always read English children 's books . Tanabota probably is suppoused to be very high tonight , because on the night of July 7th , we celebrate the Tanabata Star Festival . I went to jym after work . Today , I can eat a lot of dilicious food and get many gifts . There are many people who belived this . I learned that there will be a Gemini meteor showe ! I like meteor showers . You may get thirsty without milk or aything when you eat sweet potatoes . Even though I did not want to learn English in the beginning , but I will try my best to learn it in the fruture . My glish teacher has taught us many words , but I can not remember them and always use them in the wrong way . What can I do ? I was impressived ! ! I replaced the sentences in the grammer book with my own sentences . My big brother participaterdin in the Tokyo malathon last month , which is one of the biggest marathons in Japan . My friend geve me a Goya yesterday . I would like the chance to at least eat with sombody . Some friends of mine have gone to forine countries to learnd English . . . but I do n't have sufficient time to go abraod . . ( good ! ) they were all so great , especially Hrajuku and Odaiba . I want to ask you something : What resorces do you recommend for learning English ? In Japan , almost all students ( elementary school , junior high scool , and high school ) get summer vacation from the 4th week of July to the end of August . Today , March 10 , is the day when candidates find out whether or not they passed the entrance exam of national univercities in Japan . But she also studied to pass the entrance exam of the Univercity of Kyoto ! I 'm sad because I wo n't be able to see her if she passes the exam ( since Kyoto is far away from Tokyo ) , but I support her and believe she will succces . Even now , the accident is going on , and because it is known that bolacic acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I felt really happy when my former boss told me that I would be moving to the Okinawa office , because the Okinawa office is quite popular amang my coworkers . I 'm also keep reading a English book ( HOLLES ) . so if the company does move to another place I must go to the main bance and work with him every day . I often have a runny nose ( perhaps a kind of allegic ? ) and I tire easily . Plz recommand me an English name ! ! Actually , I deleted the History in Windows Exploer , but I did not clear the document history . This morning , I rushed to get up , and eatted sanwiches which I prepared last night . Then , I realized that I forgot my tiket and wallet at home . When I found this site , I decited to post my journal entry everyday . I know how she feels , because when I was an instructor in drawing softwares at a bussiness school , I was happy to know my students ' improvements and efforts . They often gave me the enagy to teach . I am so depressed . I study English every day , and after I finish class , I come back to home . I continue to study English but I feel my English is notimproving much . I memorize the English words every day , but the next day I forgothalf . I feel so upset . I think my IQ is good , but my memery is not so good . . . My brother told ( or `` informed `` ) me that my grandmother was tranfered to the emagencey room for brain surgery . Untill I read another person 's journal , I had never heard about it . I 'm a big fan of `` The Dark Knight `` and `` Mement `` , and I like Ken Watanebe . However this was the first time I enterted a high school debate contest . Um , I still do n't know what to write about , and I definitely need some help , because I never have time to practice my writen English . . . Havy rain ! ! And I almost finished it this morining ! I try to do the exercises but I usauly must check the anwer . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I was going to make a team but I coud n't do it afeter all . And I do the other sports which are badminton and volleyball every Weddesday . A couple of mothes ago , I took a test called TOEIC which is an Engilsh reding and listining test . When the score was anouced , I was supriesd becouse I got 930 . I was relly gratifed and proud of my score . For example , we can get a healthier body through physical exercise and improve our blood circument . Playing basketball is good for increasing body height and also helps to strengthen fridndship . I have read a few blogs which say that olibe oil makes vanilla ice cream taste more delicious . Because it cools your body down , you comsume the calories in order to warm your body up again . I 'm really happy to have learned about this site and it 's a pleasere to share my useless diary . lol I 'm gon to try to keep a diary and also correct others written in Korean . I will take an English conersation class at the office . It will bigin from the 13th of October . I spend a lot of time drowing . Visiting frends who have graduated . I really appriciated that , especially from my girlfriend . I have to write an essay on Japanese education for foreign students , and I 'd like to know what Japanese lerners really think . From now on , I wil try to explain a few basic rules in Japanese . If you need to be plite , you can say `` Watashi ha hashirimasu `` . I spend much of my time serching for information on the internet too . The eperiment is also waiting for me , So then we promised that I would do nouthing to help household and study English all day long . Every year , I give hime chocolates . I am going to LV because I want to see Cilque du Soleil 's KA and O . The story is mainly a piratie adventure , but they also have special abilities similer to Naruto 's Ninjutu . I only started lerning english recently . I 'd like to speak it fluently but it 's more difficult for me now . When I first got it done I suffered from tremedous pain for two days . Green revolution has broght about great benefits for humankind as a whole . Untill the last moment the mother kept hugging and protecting her I studied my prnounciation with my teacher this morning via the internet . But today I enjoied it because I did my homework . Wirting in English is a little challenge for me . We live in diffrent countries and spend time togather for less than 10 days every year The correct sentence is `` Wolud you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutly do n't want to make a mistake like this ! I talked on Skyp with my tutor . I woked today . It was a sanny day . She often walked on the up - upslope . Thtat will make me more stressful . After I had done the trancery I took pictures of it . The event was canseled midway . All the people there were foriener . As you well know , this is a tarditional tactic for us . The race in Northen America is not good for F1 fans in Japan , because of the time difference . Our class has Korean , Japenese and Taiwanese . I went back to my farher and mother 's house they are really relly cool pants . If I am unable to understand these slang expressions , it will be difficult to comunicate with native spekers . Of couase , I know it is important to learn these things . this season gets more meanful . I would appreciate it if you cheack my English or send a message . A very very beautiful godess stays in the toilet . So I 've been searching on the Inrernet for a long time . But I have chores to do , such as laundry , buying food , making a framework for an exam , learning English , edting a movie , and so on . We can share each other 's culture and luanguages here . Sommer is horror movie season in Japan . Japannese horror movies are very scary and interesting . I so hated cleaning , espessially washing floors . And I like to rid of uselss things . I must will have to find mysels very embarrassing one day , than there will be no stuff to through away . Sometimes my friens are joking that someday I 'll turn to Monica Geller . ) ) hahaha I should learn as much English as posible . I enjyoed this trip . I thoght `` I need to learn English because I want to go on a trip tsomewhere It 's unbelivable though , having a baby at such an early age . I do n't have any cavicity , but my teeth are poorly aligined . A Jananese novel I wish I could help her because it makes me happy that the forigner read a Japanese novel . because I want to improve my inglish , However , in the midlle of the development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becomming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . I have nothig else to do , so I powered on my laptop . Then I check the lang - 8 site . Although a human 's life - span is longer than ever before , we still have to cambat diseases which could kill both humans and animals . For the first 3 months , I had been very busy and had not been undersleeping . It 's because I want to improve my pronouceation . But I do n't know if my poronounciation is OK , or not . Last evening , I got insomnia , could n't fall sleep untill 3 : 00 am . All kinds of things came to my mind : work , study , life , famillay , friends and so on . It 's difficult for me to understand people speaking at ordinarly speed yet . Anyway , my soulder is still very painful . Woud you mind telling me how to get the discount that your invitation letter said ? I hane learned english for more than seven years now . Becouse , the big earthquake struck Japan in March . . I 've never trid this product but when I was young and stayed in my home town , my mom often cooked curry and I would eat it in the morning . Does it Make Sence I have a feeling when I hear someone say `` does it make sence ? `` that it is either the peron is getting impatient or just being rude . Because English subtitles are usefull to me and it 's free to watch it online . It seems taht I will finish the whole series soon . . There are a lot of restrant in Kyoto . Some Japanese are getting crazy about this , even when they do n't drink wine regulary . I visited the wax musium . The musium was brilliant . Do you have a Twitter acount ? I made a new Twitter acount for practicing my English today . I tried to memorize the new grammer for the next lesson . Fortunatery Grace had space in the car . My husband set up the hummmock between the trees for the children . I really missed her Spanish omlet and I desided to make it myself . Some spelling errors . Instad of potatoes , I put tometos into the omlet . I went to the chilli festival in Frementle today . Is the teaching ( studying ) method defferent from other countries ? I 'm going to Turky with my custmers tomorrow . postpone : Our school postponed the beseball game because of the bad weather . delay : The flight from Tiwan to Japan was delayed because a Tiphoon was approching . And She reccomended me to do it . Autumn is just aroud the corner . And my teatcher ca n't do anything because it is the pranksters ' last year in high school lol I 'm happy because the holydays are coming and I 'll be able to get out every day with my friends = D Please , correct all my mistaces . Additionally , the Singapore goverment disciplines harshly . Once a citizen commits a mistake , it 's very difficult to recover their carrer . We wateched a funny movie and drank . In software business , English is the most important language because almost all majar software is created by the USA . But I think a lot of college students do n't have each dreame anymore . But now , I 've realised that I have to do my presentation tommorow . I want to become a translater , especially for movies . It will be hard wrok because words that a translater can use in a line is specified by the rule of translation . I do n't know how long it will take , but I want to become a translater . But I 'm sure many people are atressed out and really want to do something similar , so I also think he is a hero ! ! But outside Bangkok , the situation is much better , other cities are queit and beautiful . They are always coming to the staition on time and very clean . They have comfortable and soft seats on the trains . I want very badly to improve my writing avility . My hobby is listning to music ! I desided to study English again for my dream after I enterd the university . Actually Ive already graduated from beauty school in Osaka in 2006 , but I still wana go . It 's not the time for writting a journal right now , since I might not be able to return home early to sleep peacefully . ( A1 ) My family makes me happy ( sad , angry , surprised , unhappy , bored , frastrated , etc ) . I work at an English conversation school as a front desk personnel but my English skill is n't good enough so I ca n't comunicate well with the native English speaking teacher . Sometimes genes have great influence on children , but what would be more important would be the quality of upgrowing at home , and teaching at school . So I thought I alreay knew English grammar So , Aftter work I played an exercise game at home . Obviously , our life has been changed enormously by the use of comeputers . It is unbeleavable . We never wear coats in Sempember or October . So I am going to take her to the pediatrics , which she is not used to going to , because today is Sunday when most medical clinics are closed . I do n't have cofidence but I do n't want to be stressed . I went to canada to stady the English lunguage . I live in Vancouver , it 's an intersting city . I took pre - tests for my law exams from Februaly 28th to March 2nd . There will be 8 witing tests which will take 17 hours altogether , and 7 marking tests which will take 5 hours and 30 _ minutes altogether . The students in the class congratulte him on this great news . I redistered at this website today because I want to ( `` wanna `` is considered slang ) brush up my English skills . In the Fukuoka prefecture of Kyusyu which is in the southern area of Japan , typhoons come at least five times per year . I bought 4 packs of Sushi and dilicios beers . Weather news says `` it wii be snowing . `` He articulated the connsonant sounds very clearly . Everyone in our class was laghing out loud . I called ETS lost and foung office and left a message according to the directions . So far , I have n't gotten a call from them , but hoperfuly they will informe me . At 5pm , we met at the classroom , and walke to the pub . Some of them , Switzerland guy who organized the party for us , Chinise girl , and South Korean girl will leave Edmonton soon , so we took many pictures . South Korean guy became 25 , so we definately celebrated him . I also want to drink bowls of congee and eat steamed buns , which are not easily foung at night . I usualy try to take a nap or study English . I am weak from a lack of exersise . . Unfortunately however , I do n't know of any classes for begginer . My native ( mother ) language is Chinere , I hope I can help someone here . I got sunburnt the day before yeasterday soI got somealoe to treat it . In the moring it is very nice , though ! So if someone has experence with this grammar , please tell me how to use it . In the past two days , my wife and I wlked to the park early in the morining . Kodomo toki kara , geijutsu ga suki desu , ongaku , ya kakukotoga dai suki . Boku no nihongo no reberu ni stuite , takusan no kuni ni sumimashita node , hokano kuni no gengo wo benkyoushimashita , demo daigaku kara ( nihongo wo ) benkyou shihajimemashita , hitori de nihongo o benkyoshite imasu . watashi no otosan to watashi no nihonjin no tomodachi mo nihongo wo renshuu shimasu , rainen waseda no daigaku ni ryuugakui shimasu . . I hope it will be repaird as soon as possible ! ! I 'm going to pick up noe of my friends at Nriata airport . Sometime it takes a long time to see them , and I have to wait a little bit of a longer time at airprt . However I did n't buy anything because I did n't have any maney on me . When I was a high school stuent , I did n't like sience . What difference `` anytime `` and ver `` `` whenerver `` , `` anything `` and `` whatever `` ? We went to a good restaurantm , and had a great dinner . We have not seen each ohter for such a long time . We plowed a new field and scatterd a bag of the fertilizer around it . My sister who tied the knot with a man who lives in Yamagata prefecture last year ( and enjoyed a hanymoon traveling to Italy ) got pregnant at the beginning of this year . I am already uncomfortable with the muggy weeather , their loud sounds make me feel much more uncomfortable ! or optimistic imformation , we wo n't know the proper action to take during a crisis . When I was a major in Architecture , but now I develop PC software to do busines for emproyees only . abou me I do n't kow how to use it in context . I hate crowded places , If I were there , I would have a headach . Of course , Eglish is required in the other three sports . And then I want to present the ikonography of the altarpiece that is focused on the biblical narration and mention some features of this work . The example in Berlin is very simular to another John the Baptist altarpiece in Frankfurt , so a long discussion has taken place on which is the original . The last panal is about the beheading of John the Baptist . These three painting works are supplimented by a detailed illustration of miniatures in a Gothic arch which funtions as a frame for the pictures ( or : subjects ) . Telling The program is about other TV programs I like , USA or UK drams , for exsample . And I made it a habbit to memorize what the native speakers corrected . We discussed transportation duringmy Engligh lesson yesterday . The shape reminds us a white heron flapping its wings , so It is called `` Shiresagi jyo `` ( white heron castle ) . When I was thinking about it , the earthquate finished . Killimanjaro . Lately , I 've been trying to get in shape becasue I 've put on some weight . I might be succes if I keep deiting for a while . Aside from these , his appaerance and behavior is also strange . The Japanese movie `` Hankyuu densya `` is modeled after the Imazu railway in this town . I especially love gyo / gyouza . Good mornig ! It happed that she was n't with my friend . When I went inside , we walked along a slope next to a big aquarium tank shaped liked a cylindric . As the slope was a spyral , it made me dizzy . They are an Engrish book and a quilting book . so I was very interested and excitng ! But getting a drivers lisence is difficult for me to get . Because I am worring about slamming and crashing into other cars . It 's only 12 : 26 , and I wana go home ! I wana try the real French full - course meal , or whatever you call it : S Recently , I could n't write a dialy in English . First , I plactice speaking in english with videos . Today 's topic was `` a park near my homw `` . I feel comtrtable and at peace when I take them . good moring everybady ! Last night my freind came over to my house . she first staied at my house This moring I made her breakfast . beaouse she thought that I was a good cook . Since I have the experience of being trapped in an elevater during a blackout , I am really nervouse about these kind of things . Every time I became exhasted and went looking for another sports , I would gain the weight back . ( If I had known the water in the pool was acutally up to my shouder 's , I would have tried three years ago . ) However , there 's good news , espeially for me . I try to stay fit without having an cigarets . Three of my friends came to my house to studey English together again this morning . I went to an Englisn - speaking country and have been there for 7 years . Also when they said something to me , I always can not understand them straighaway . When I was overseas , I did n't watch English news channel or movies . I could not understang those popular programs as I have no idea about their cultural background . He lives in a northan part of Tokyo . I just kept silient . I am feeling nervas . Althought it was boring while we waited , I believe that when we see the picture on the magazine we will find out everything was worth it . So I can eat those without thinking which dish is cheap or expencive . When I see the people 's attitude toward saving electrivity , I am always reminded of the nature of Japanese citizens . Studying in Canada is a valuale oppurtunity for me to become mature and learn , and I 've had to overcome tons of difficulties . Last time when my friend and me were leaving the Superstore and decided to walk back to the drom , a Canadian couple drove us back . Before that , I need to get my father 's permition . I 've am always thinkng about what makes a good speaker . These days , I think I 've eaten too much so I am gainning weight . So I pour some syrop into my Caramel Frappuccino . But after I started talking , nobody responsed to what I say . We memorize new words everyday , take classe during summer and winter vacation , and read newspapers and magzines once a week . To learn a forign language , we should try to speak it as much as we can . And in my opinion , a test will push us to speak more and seak better . The PM Hatoyama said that he would resolve Futenma problem by the end of this month . I did n't know what was happning . For example , when I go to supermarket , there are many things wrriten in Japanese on the packages . If there are ( some ) words that I have n't learnt yet , I would write those words in my notebook and serch them in dictionary after I return home . Anyway , it is a difficulty for me and I am worred whethr it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone who I can practce conversation with the eldery . Finally , I have no idea how to learnig to listen to English . YAKUZA appers in this game , Since the problem of food safety is becoming quite worrisom , Beijing citizens attempt to find farms themselves that can provide safe agricultural products . Maldive has recentry become popular for honeymooners . Also , I love lerning about cultural differences between my country and other countries . However the trees looks like all the others , except in spering . I 'm looking forward to the party , but I feel a little unease if I can communicate with foreiners well . anyway I will go tomorrow agian . . . . . . I sold a CD set of the bussiness teaching materials I used to listen to for 20000yen . I answered that I 'd like to eat epecial food . `` Think about what 's different bitween you and them . `` But sometimes I forget , so I think I should try something againg . So I have to look up the dicshonary many times . This means I have to read 100 pages of the book each day because I justy started to read this book today . I have had two turtoles for about 15years : - ) Their name are `` KA - `` and `` ME - `` . That was her first solo cocert and her first CD was released on the same day . I pretened to call a policeman . I could n't canceal my excitement about this chance for cummunication , because it was my first time talking face to face with a foreigner . We only briefly , greated each other , and that was followed by a long , awkward silence . I guraduated from a univercity this year , but the graduation ceremony never occurred . How do you studay a language ? Please tyr this method if you would like to learn a new language eficiently . In my opinion , we have an argument between secrity and the risk against [ urasite ] of each school . Moibes could be very powerful to prevent crime against children . If my freind has time , we 'll play catch or whatch sports . Her birthday is tommorow It 's very dificult . Have a good weeken . People probably just want to visit other countries even thogh they are going to waste money by visiting . My bad habbits I have some bad habbits . But recently , I 've tried to fix my bad habbits . The mountain I was running over today was a symbol for Buddist prayers . The weekend is over , I do n't like monday , and I am logging in the lang8 to see wheather someone had corrected my diary , but the result let me down . I am looking forwward to meeting them . Because I want to enter univercity . I want to study biomecanics . So ` native English speakers ` refers to the Amrican . I thought that more people would come here to sightsee , and the number of sucide here would decrease as long as the path was maintained . I think that is part of the reason why sucide occur here besides the poorly maintainig path . I have to prepare boild eggs . For example , I like to invite my friends to my place , enjoy my favorite sigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( souds like a teenage boy XD ) . I 'm a little bit of a collecter of My Little Pony figures , and I love toys and all things Hasbro . The gugle satellite captured something that resembles a 30 meter long snake . They are n't sure if it is a real snake , but it 's highly possiblility . I think there are many misteries in the world . There is a very interesting mith in my town . Two hundred years ago , a wise Buddhist priest who could see the future said that my town would be destoryed by a huge flood . It was only a mith until one statue was ( actually ) found . There was a heavy rain in Shanghai this afternoon . My friend did n't meet the train . She planned to go to Xian taday . Without that TOEFL experience , socre , and training , I could n't have gotten those jobs in just two weeks . I heard that a lot of people in Finland like Robert 's coffe , is that ture ? The messages said that my card 's number corresponded to the card company 's one , so they canceld my orders . Luckily , my daugther 's team won the victory . Now I restart studing ! My favorite person is Ichoro Suzuki . A Welcom Party I saw the corrections , and had to start translating it using google translater . It 's unhealthfulness . If I wanted to give my thanks to you , I would write in card to X `` thank you for cherring me up : ) `` I submitted an application for a new job last manth . Additionaly we listen to them speak with patience because we know how they feel / the feeling So we should try to think about it from the yonger sister 's point of view . The yonger sister , Bess , has to depend on her elder sister , If I have an oppotunity , I would like to use slang words . I would say to my freinds `` Hey , what 's up dog ? `` But what is it like in your coutry ? I ate my salad fast , and after I opend the bag my hamburger was in . He did not know whether the post office ws nearby . It 's hard to explain why I like rany days . I belive that the TV has reduced communication between family members . I dought whether daily homework helps students Diffrent clothes sometimes influence how people behave . I was reading a Japanese comic yeaterday . Futhermore , every cigarette company should be banned for selling poisonous products Recentury , I have been very busy everyday . Then one Sunnday , I was invited by my friend to drive around . This surgery lasts only 10 minites but is it safe ? ? I 've kept learning English , but my English skils do n't look good . I did n't have many jods at work today . I have a girlfrind . She told me to let our relationship return to how it was before , when we were frinds . I did n't think I would like this book cuase romantic novels bore me . I am a saleman in spite of having a speaking problem . If I were not a stutterer , I would laught at it . I have met several people who have overcome stutering . I did n't feel bad at frst . Some were from England , Canada and Amarica . I called her back wondering what might have happend . I aired out my ' zabuton ' becaouse the weather was fine . : Well now , coming in were you rooting for the rakers or the Sixers ? : No , I know it was your first basketball game ever , and I know its very exciting , but when it 's all said and done the season will have been long enouh . This site 's a little diferent . . . My hobbies are snowboarding , traveling , and studying foreign langueges . Now I study English and Spanish . I heard that she had had storong cough and felt lazy for long time . Was the oven out of oreder ? The traffic ( on the hightway ) in the capital was so heavy that we kept moving really slow for an hour . Almost all of them have thier own jobs and they practic soccer in their off time , nights and holidays . My favorite sezsom is summer . ^ ^ During the Cristmas season , I was too busy to enjoy the festive feeling . But English is telling me * , `` Vitaly you are so / too stupide . `` * just a third option I often get anygry with myself , when I go to get the coffee . I find nothing , and I have to do it all over again . One day my throwt was sore . Now I ca n't breathe through my nouse . On another note , I watch the TV TVdorama `` Soredemo bokuwa ikiteyuku `` . I had n't used Dreamweaver for half a year , so it was hard to remenber how to use it . However , I ca n't talk to anyone in English on Skpe at the office . Thank you for reading my journer . It was difficult to understand what they were saying because they were speking Blitish English . Today I 'm talking about an Itarian restaurant . . . . . . . I went to Saizeriya , an Itarian restaurant , with my friends . Do you know it ? I think Shogaki , the president of Saizeriya , is very clever becouse he always tries to keep the prices down while keeping the food dericious . He has his own farms and grows the vegitables they use . Also , from the farm to each restaurant , the vegitables are kept at 4 degrees becouse the vegitables will keep fresher that way . He tries so many things to serve cheap dishes and be more dericious ! I will go to the shopping mall , because it is coller than I just sit in my room . Certainly , it is very dengerous , because Japan relies on nuclear power for many parts of its electric suply . so younger peopole in Japan should have more interest in these problems or in politics . What do you think about nucler poower plants ? Yesterday I took part in this Lang - 8 and wrote my first jounal . regret : I regretted calling her such crel words . givern : In ancient times , Rome was governing all the world . Hi , it 's my first text on this page ang I hope that this page will help me in learning english . As I was n't able to focus on the lisning part , I do n't think I get a good score . Anyway we enjoied the beautifully displayed dishes and the beautiful scenery of the countryside . He must be straved ! Avogado and fruit cocktail . If you meet people with whom you have bae memories and you have not kept in touch for years , By the way , if English speakers speak Asian languages in Asian coutries , Asians are interested in them . But if I hear Asians speaking poor English in English speaking countries , English speakers treat those Asian without considareation . Anyway , Speaking English is in Grerat demand and speaking Asian languages is not . For beginer , I think acoustic guitar is the best choice . It 's a greate web site . Koyasan is a very famous place for But - Butism , called SHINGONSYU . And I have invited my foregin friends to visit my home town . My dream is to run a youth hostel in my town and I hope that many foregin people will visit my home town . I do n't why , but I just feelling sad ! Therefore , I think that salaries should be based one 's perfomance or the amount of benefit they have brought to thier workplace . I tied a ribbon to it and painted it penk . Therefore I ate a salad to not skimp on vegitable . It 's also a good experience which can arouse my interet in language and at the same time help other people . I am willing to correct articles in Traditonal Chinese , but Simplified Chinese seems to be more prevalent . Every custmer seemed ( or : seems ) to love our shop ! : ) When I enter into Lange - 8 , it was a big change . In Japane most people are punctual and honest . Watch these crip , please : D for just 30 minuits . Well , I do n't get tooo much , but it 's stil a good deal : D I 've been reading the book ' The Wondeful wizeard of Oz ' . Now , mobiel - sites are important for E - commerce in Japan . Recentry , I had neglected studying . However I wiil go there someday ! I personally felt that AVATAR 's story was not so bad , but the visuals and 3D tecnology is worth seeing . I reccoment it to you . I will try to introduce to you the story of AVATAR briefly tommorow . . Oficial Trailer of Avatar female : I wanted my hair cut by a female whrn I went to have my hair cut . Last month I took the `` Toulism English Proficiency Test `` and passed it ! It was heavy , even without fried potate the double - decker humburger was enough to fill my stomach till the evening . english is so duiffcul What can I do to srretch my english skill . It is excacize for my brain . I often say `` parden , please ? `` . I work at a conviniene store that is near my house on every Saturday and Sunday . many people come in and behave deifferently . that is one of the reasen why I work there . I think that most English learners dislike grammar which is essential to understand well when speaking English fluentry . I have alredy noticed the reason why Japanese are n't eager to speak Englsh in front of Native Speakers . An English man came to my gym to do tarining . `` Consult the dictionary `` is just sirious . I looked up the word you tought me in the dictionary . But envidences ( OR my experiences ) proved that I was wrong since most Singaporeans can speak Mandarin . And we are trying to figure out the most efficient motheds to improve our speaking . SO , good lcuk for us . ' The time when you think it 's late is the perpect time to do it . ' and ' The man without motivation is not different from a dead body ( man ) . ' But I hardly speak or hear English , and I am not good at readig and writing . My English teacher always wants me to write Eanglish compositions , but I am scared to do so . Even so , those gadgets looks convinient and usufull . Sudeenly , she became silent . It is very cold at the office because of the air airconditioner being put on high . My seat is right under the air conditoner . The next game is supposed to be reliesed in the NINTENDO DS . In Japan it is wintter now . Recentry , I happened to hear very nice music . I watchd the Disney movie `` Enchanted `` . My friend itroduced me to this useful website . Althought my Japanese is not good enough to write an entry yet . I have stusied english for about a year . I ought to have breakfast by stopping at a rastaurant before getting to the airport . Because it is very diffrent from what I used before , it is very difficult for me to use it . I really want to visit there again , and , if I can , I will live there for sevearl years . Last week , the whole northern part of Taiwan had been enclouded by depressing rain for a long time . And because of the rain , I could n't go very far to eat out , and I could only choose the restaurents nearby . I have to wash a lot of landry ! I 'm reluxing on holydays from 8 / 13 . Today I 'm going to clean my room , do loundry , wash the deshes and so on . I do n't like the bus becouse it 's crowded . Beacause the job notice was supposed to be annouced today . I called and asked why the notice has not been announced and they said that it was delaied until next week . There were many venders selling everything you could ( possibly ) imagine . Testerday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croqutte because they do n't cost very much ( around 10 - 20 yen each ) and croqutte with brown ( worcesteershire ) sauce is the best with beer . Since I had notspoken English for longtime , it was difficut to speak fluentry . Sometimes , I encounter difficulty in correcting students ' English compositon , so I need help to correct them . However , after comming to the US , I feel this is not true . Please let me know about the rasism that your country has . I love jogging . I used to have this habit , but sundely I stopped . So , we just had the Gay Parade , which is one of the gratest paredes in the world . I think it 's a great web site because I can partice English here and I hope that I can help others to learn Chinese too . this is my frist time I recieved an e - mail from someone who saw my profile on the website . And I recepted his invitation . I learned that I should never use the webscam with a stranger . And I delited my profile instantly . I tried to study Spanish after I came back to Japan , but there was no lectere in my university and I did n't have enough time and money to spend for it . My friend has been going to Univercity at night time or holiday as well as going to work for the past 5 years , they said . I have never tried something like that , so hearing about it tuoched my heart because for some time I also wanted to go to Univercity but I could n't decide how to do it until now . What my friend said made an immpression on me . As you konw , more and more people are subhealthy , but why ? Which of these sentenses do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? If I will have any power , I 'll write an essey . I 'm preased to love it because I want to spesk English very well , as if I was a native speaker . If I need to make an appointment with my friend , but I am not sure when he is avliable . Then I broug the bicycle to a ( bicycle ) shop , to ask for a repair . My hobbies are learning languages , speaking with a lot of people via Skype , drinking at the bar with my frineds , reading books , going ( travelling ) abroad and so on . Recetly I have started to want to get one more and more . Especiall , I want to talk to improve my English skill . And one hairdressor came to me and asked me They looked quite mature for thier age at the entrance ceremony because they were wearing suits . My university does n't have a lot of students but I can make friends with almost everyone and I 'm looking foreward to that . Yestarday , I was depressed because I went to my part - time job , but it was my day off . I 'm into holoscope these days . I always feel excited when I sing Karoake . [ alternative ] One of my doble majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rnb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationshop ! I 'm looking forward to goint out for dinner with her . I am a 23 - year - old Japanese girl , as I mentioned in my profile , and I mainly work as a kindergarden teacher . Hard schdule . I feel I 'm luckey and I want to care my daily life . I am not sure if they do drugs like drug addic or they did it just once , because I only heard it from someone that I hardly know . So I decided to ask the two guys face to face if they are drug addic , or if they are dangerous , because I do n't want to judge them and talk behind their backs . Near the beginnig of our relationship , he made me a dinner and there was only some fried meat and some instant mashed potato . The healtiest food among what he think is healty is a subway sandwich but I know the white bread is n't really healthy , at least for Korean . The e cource involves listening to English for 1000 hours in a year . According to the explanation of the cource , it is generally said that about 1000 hours are required to get used to hearing a foreign language accurately . The cource cost about fifty thousand yen . It was not cheap but I could pay for it thanks to the welfare progrum which my company offered ( to ) me ! The cource will begin next month . And when I was a high school student , I experenced a job at an airport . So , I wish to become a costomer service agent in an airport . I am learnig English and Chinese now . It was a game in the UEFA chmpion 's leagu . I had lived there untill graduating from high school , after which I left Hokkaido . Spicy Foods & Cat 's toungue It is a Japanese custom for wowan to give a person she likes sweets : ) I 'm very happy becuase I want to learn English in a more proper way . It was ranning heavily today . about my life on ranny days . Study animetion abroad . He is studying Japanese animetion at school . I do n't know what kind of animetion he was studying ? But we had a nice conversation togher . He looked like a fuuny and friendly guy . It is a deliciace ! ! I enrolled in an online English school a coupple of days ago . Can you believet that tt one leson ( or : that the fee for one lesson ) is only between 1 $ and 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expenssive . An Amazing Wesite for Langauge Learners ! Right now , I 've come to be albe to understand recorded voices in English , but it is still hard for me to understand what they are singing in English . They sell variouse kinds of cakes there . [ alt . ] But I think I perfer the clothes which suit me . oters . I like nearly all clothes colors except red , but I do n't konw why . All reds ? I perfer the fashy things . My faviorite jewerly is earrings . I could n't sleep well last night becaouse I was coughing all night . I 'm a really short temperd person . Befeore I came here , I thought `` If I live in the U . for a year , I will be a really good emglish speaker . `` But I was wrong . I am surprised at how difficult it is to learn other langages . So I was really disapointed in myself and kinda bored of studying English . But Lang - 8 often encourages me to study , because I can see many people who study other langages and may have the same feelings . I really like to correct forigne people 's English . I was typing my first jornal on Lang - 8 little while ago , and when I hit preview , my computer screwed up . . . so I am re - doing my Journal . Are there ramen reataurant in your country ? frist diary ^ ^ I 'm interested in learning about other country 's culuture and making friends ^ ^ She smiled and aske me , `` Why did you choose me ? `` I do n't think we are either close or distant ; we just call or text when neccessary . But in the last few months we have been ignoring each other due to my imprudent words . I think everyday , `` l 'm happy , l have all things l wnat `` because of this , but sonetimes because l do n't want something Becouse if I think too much , I ca n't continy . I am buzy , so I am going to just try and try . So my friend advicsed me to write my journals in this site . I want to use the phrase `` get to the bottm of this . `` I will have an art class . I 'm going to go near the port and paint a pecture of the fishing boat . Yeaterday , I played soccer from early morning . I will join a soccer tornament in November . I have a dog for ten yaers . We saw two ponnies , a pig and chickens . Many kids kept trying to feed them . I think I should be more careful and deligent for work . Dubois put her girls to bed and was wating for her husband , sitting on a sofa alone with lights turned off , when Mr . Dubois who was deeply destressed finally said to him , `` Honey , it 's already 9 o ' clock . `` But in Japn we only buy presents for children and cupple . So , I deciede to return to where my university is located . My ankle was hurt last Thursday , and I got another unknown disease last Satruday . My bad luck began when , last month , I went to a temple to pray for mome money . So I was thinking I definetly have to go there again . I ca n't wait to have the party : ) and also for the holloween parade at 6 AV : ) I hope I have the patience and perseversance to keep on writting diary entries in By the way , I registerd on facebook yesterday ! He looed at his feet , and saw there were tiny animals . He was scared , so he ran along the innor way . Farthermore , some adults play sports there as well . When I arrived at Osaka , it was rainning heavily . If I eat a hanburger slowly , chewing it well and tasing it , I always regret eating it . Recently , I could only go to work two days a month because I have been receiving post - surgical chemotherapy to prevent the cancer 's recurrence and metastatis . Though it is regrettable that I got sick , I belive my disease has helped me develop a greatness of soul . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio chunnel . Of cource , I realize that my range of vocabrary and way 's to express are limited . I have to syudy tonight for tomorrow 's tests . Yes , I know that I will soon enter into a universty and I 'm 18 years old . I jogged only this weekend , but I think it had a little / some effect in decrese my weight . This is my first time using this kind of website ; My friend recommonded it to me . Example senteces are welcome . I would keep taking lessons but I do n't have enought money . I rearry enjoyed her stage performance . `` Pirates of the Carobbean : On Stranger Tides `` was exciting , too . curently they are preparing to plant rice . It starts in the afternoon , so I 'm planning to go to the library in the mornig to read a book ! But I 'm little nervours becouse of my English communication skills . My job is a project manager for developping web sites . On september I have a plane about going to Victoira , BC . I was impressived ! ! The first one is called Tirya and has a more detailed history than the other two , I 'm also reading an English book called HOLLES . In the morning , I rushed to get up and eatted sanwiches , which I prepared yesterday night . At that time , I began to realize that I had forgotten my tiket and wallet at home . When I found this site , I decited to post my journal entry everyday . I know her feelings because when I was an instructor in drawing software at a bussiness school , I was happy to know my student 's were improving and using effort . I know it is really hard do it , but sometimes I 'm lazy or drosy and would like to sleep . The story is mainly about piratie adventure , and they also have special abilities as similer as Naruto use Ninjutu . I woked Today . And , Thtat will make me more stressed . I would appreciate it if you cheack my English or send a message . I really hated cleaning , espessially washing floors . It is usefull to me because of the english subscriptions , and it is free to watch . Do you have Twitter acount ? She reccomended that I do it , too . I 'm learning new vocabulary to become more efficiencly I took practice tests for my law exam which will be held from Februaly 28th to March 2nd . It consists of 8 witing test that take 17 hours and 7 marking tests that takes 5 hours and 30 minutes . Everyone in our class were laghing out loud . I called ETS lost and foung office and left a message according to the directions . So far , I did n't get a call from them , but hoperfuly they will informe me . At 5pm , we met at the classroom , and walke to the pub . `` `` from South Korea became 25 , so we definately celebrated his birthday . So if anybody has experence with these , please tell me how to use them . Kodomo no toki kara , geijutsu ga suki desu , ongaku , ya kaku mo dai suki . I am an exchang student , so I need a host family to live with , and also there are some other exchange students in my high school , and they also live with their host families . And then , I want to present the ikonography of the altarpiece , focusing on the biblical narration , and mention some ( special / particular ) features of this work . Since the slope went in a spyral , it made me dizzy . First , I plactice speaking in english with videos . Then , I wrote an nessey . Good moring everybady ! last night my freind came to my house . she staied at my home this moring and I made her breakfast . beaouse she thinks that I am a good cook This is Sarah 's douyhter . I went to an Englisn - speaking country and was been there for 7 years , So I can eat without thinking which dish is cheap or expencive . Before that , I need to get my father 's permition . So , English native speakers meant Amrican . When it was lunch time , I was going to go to the restrant . It 's unhealthfulness . So we should try to think about it from the yonger sister 's point of view . I aired out my ' zabuton ' becaouse the weather was fine . The hightway in the capital was so congested / packed / busy that we moved really slowly for an hour . I ca n't talk to anyone in English on Skpe at the office . Anyway we enjoied the beautifully arranged dishes and the scenery of the countryside . Anyway , Speaking English is in Grerat demand and speaking Asian languages is in little demand . For a a beginer , I think acoustic guitar is the best choice . My dream is to run a youth - hostel in my town and I hope that many foregin will visit my home town . And for just 30 minuits . My wife was amazed at such beautiful pictures that she was excited all the time while waching the movie . I , personally , felt that AVATAR 's story was not so bad , but the images and 3D tecnology are worth seeing . I reccoment that you watch the movie . I will try to present the story of AVATAR briefly tommorow . Oficial Trailer of Avatar An English man , a member of my gym came for tarining . while trying to figure out the most efficient motheds to improve our English speaking abilities SO , here 's wishing good lcuk to us . Althought my Japanese is not good enough to write an article . I called to ask why the notice had not yet been announced , and they responded that it was delaied until next week . Please let me know the rasism that your country has . I felt weird putting something into green tea but we put suger into English tea so maybe it 's the same thing ! : p However , to me , the most important things are relationshop ! He is studying Japanese animetion at school . He looked like a fuuny and friendly guy . I enrolled an online English school a coupple of days ago . Of cours , he 's never at temples , shrains , chaches , and moskes . There were variouse ( types of ) cakes there . Today , I tried to call the hospital and I was able to get an apointment . ( so ) OR ( therefore ) my friend advicsed me to write my journal in this site . We went to Bexhill near Eastborne . We went to see The Red Arrow show in Eastborne . We saw two ponnies , a pig , and chickens . Many kids tried to feed them all the time . Though it was regrettable that I got sick , I belive my disease developed in me a strong will to recover ( alternative ) It starts in the afternoon , so I 'm planing to go to the library in the mornig to read a book ! And he has learnt some japenese words . The story consists mainly of piratie adventures , and the main character also has a special ability similer to Naruto 's art of Ninjutu . But I ca n't unbelivable she is having a baby at an early age . I 'd like to go by car , but it has been broken sinse two days ago . last night my freind came to my house . this moring I made her breakfast . beaouse she thought that I am a good cook I reccoment it to you . I really wanted to go to the English school but I have stopped because the lessons were too expenssive . so my friend advicsed me to write my journal on this site . He can speak some japenese words . ================================================ FILE: data/example_data/bea60k/subsample/corrections.txt ================================================ I WANT TO THANK YOU FOR PREPARING SUCH A GOOD PROGRAMME FOR US AND ESPECIALLY FOR TAKING US ON THE RIVER TRIP TO GREENWICH . IN MY OPINION FAMOUS PEOPLE ARE BEING OBLIGED TO PAY A PRICE FOR BEING FAMOUS THAT , IN SOME CASES , COSTS MORE THAN THEY DESERVE TO PAY . Also , I want to say that the plays and films were excellent , but there were n't enough of them for me . In our Academy we are not allowed to smoke . I was truly disappointed by it . Secondly , I had to wait forty - five minutes before the show finally began . I 'd like you to send the money to this address : ul Taklowa 10 It is a dream come true and was really unexpected for me ! If not , what do you suggest ? The festival was excellent in many ways , and in particular it being an international festival was a challenging , but brilliant idea . MY NAME is JAMES CAMIREZ AND I AM WRITING THIS LETTER TO YOU BECAUSE I HAVE SOME COMPLAINTS REGARDING THE DISAPPOINTING EVENING I HAD LAST NIGHT . SECOND I GOT TO THE THEATRE AT 19.20 BECAUSE IN THE ADVERTISEMENT IT CLEARLY STATES THAT THE SHOW STARTS AT 19.30 , AND I GOT REALLY MAD WHEN I LOOKED AT MY WATCH AND NOTICED THAT I HAD BEEN WAITING FOR 40 ( FORTY ) MINUTES AND THE SHOW HADN'T STARTED YET ... I MEAN IT WAS AMAZING ! I COULDN'T BELIEVE IT . HOW CAN THIS CLASS OF THEATRE BE SO .. OH I'M GETING MAD AGAIN SO I AM GOING TO TELL YOU ONE LAST THING , IT WAS THE MOST HORRIBLE NIGHT I HAD EVER HAD SO I DEMAND MY MONEY BACK ! MODERN TECHNOLOGY HAS AFFECTED ME IN SEVERAL WAYS . I MEAN THE MORE THE TECHNOLOGY ADVANCES ; THE MORE COMFORTCOMFORTABLE WE GET . BUT I THINK ALSO THAT WITH MODERN TECHNOLOGY WE GET MORE COMFORTABLE SO THAT MAKES ME A PASSIVE PERSON AND NOT SO ACTIVE . THIS CAN BE BAD TOO BECAUSE IF I GET USED TO BEING COMFORTABLE , WHEN I NEED TO DO HARD WORK I WON'T BE ABLE TO . Everybody attented go to the show , funny , and happy in the end , and what have we go then ? Disappointed ! If you could not manage the programme , why did n't you inform people before the programme started ? I thought you understood ' ; please send money back to me , you know why , do n't answer me ? Now we know , our world has developed to new world , because we have high technology to do . Today , technology is a part of life . It started from got up in the morning , we have the machine help us to cook , iron , cleaning , washing , and then we went out to work , there are car , sky train to travel for help us convenience and quickly . We appreciated the modern technology changed my daily life for help every easy and quickly , we have time to do many things . It is a good start to go on a sightseeing bus on Monday morning , because we can see all the famous buildings in a few hours . On Wednesday after we have visited the National Art Gallery , we can have a chat about our next holiday during the free time in the afternoon . Nowadays the main attraction in the newspapers and on television is the private lives of famous people . On the whole , being rich and famous does n't always bring happiness , whereas the majority of the population wish they were rich and famous . Last week we had another demonstration of this . Firstly , it will introduce the latest fashions connecting Millennium . Whenever I recollect it , I feel self - confident . Firstly , I would like to say that I 'm very glad to have been chosen and I will do my best for this competition . As you mentioned about the accommodation , I would prefer to stay in a tent , because it 's more exciting and I really love camping . However , I would choose sailing because I am fascinated with the sea and its mysteries and I also like the water , the wind in my face ... The other one I would choose is basketball because I 'm tall and very fast with the ball . It was unbelievable ! ! ! Are you studying a lot ? I have just received your letter which made me so happy . I can not believe that I won first prize in your competition , because I have always believed I am an unlucky man and now I think some things are changing in my life . I would definitely choose basketball and swimming which are my dream sports . I would like to ask a few things , especially about the weather : what is the weather like in July in the U.S.A ? What kind of clothes will I need and how much money should I take with me ? Because I have never been to the U.S.A. before I do n't know anything about it . I have never enjoyed doing shopping , but nowadays there are some people who are called shopaholics . They are just like alcoholics and these people go shopping every day because they can not stop themselves unless they have not got money to spend . Because nowadays wherever you go there is a big queue and I hate waiting . The queues are not the only problem . If you go by car there is the problem of parking , if you go by bus there are also queues and you have to carry a lot of carrier bag carrier bags during your journey and you wo n't always be lucky enough to find a seat . Especially if you want to buy clothes with your girlfriend or if you are a girl , you have to be ready to spend hours trying on clothes . I really hate going shopping with girls to buy clothes because when they go into a shop they want to try on every single item of clothing and they do not realise the time . Some people say " shopping is not always enjoyable " but for me it is definitely unenjoyable and I think it will be the same for the rest of my life . First of all , when I bought the tickets it appeared that there was no discount available . It was awful when he started to laugh and everybody was staring at us . Firstly when I went to the show it was written that the start time was 19.30 but it started at quarter past eight . I had waited for forty - five minutes . I just knew I should n't have trusted her but as I went in the house my dad asked Pat to stay for a meal . I was in shock , thinking why is n't anyone getting angry with me ? After a while we sat down for dinner and Pat just told my parents that I was smoking and when my family heard they got ever so angry . As my husband is a native and we live in Switzerland , we appreciate spending a week in London every year . First , we could n't get a discount , although you mention it in your advertisement . I walked back , hoping I would n't come across anyone and be able to drive back home . Firstly , could you invite stars and artists from more than only six countries ? In my opinion , it might be better to have time with a variety of nationalities . As they know about your interests and personality , it is easy to help you . I would like to make some comments about the event that I went to . - Art exhibitions to teach us more things about the artist 's lifestyle ; and Well , about rules in my country , the situation is not different from other countries . The rules must be respected by all people if you do n't want to be kicked out of school . However , some of them have read an advertisement about the London Fashion and Leisure Show , which will take place at the Central Exhibition Hall in London on 14th March . Also the most famous star can be unhappy and depressed : in fact , money and celebrity do n't always bring happiness . In addition , admission for students is free . Yours sincerely , On the other hand , the bond between parents and children is unlikely to change . The smokers in the school yard , the buffet and the other pupils , who are sitting at their tables doing their homework . That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredom . I am sure that eventually we will take off our clothes and in the future we will be undressed and free . There wo n't be any problem with being up - do - date . Of course , you ca n't afford a luxury car and a large apartment unless you 're born with a silver spoon in your mouth . It 's also a really popular job among university students because of the good salary . I was really surprised when I opened it . I look forward to going to the Camp California in the USA . Because it reminds me of my childhood . I used to go with my friends to a camp , which was situated by the seaside . Nowadays we have many big shopping centres . The most suitable time for shopping is the weekend when parents do n't work and children haven't got school . Because of that , shopping centres are overcrowded . You ca n't buy something in a peaceful and calm atmosphere . However such centres are very useful and necessary . In my opinion the worst thing which may happen is an extremely long queue for the changing room . If you bought something gorgeous , you will be very happy . Yours sincerely I 'm writing to you because of the musical show " Over the rainbow " , which I saw on Friday the 16th of June in your theatre . There are several points I have to complain about which meant the evening was not nice at all . Instead of half past seven the show started at quarter past eight . I could n't go to get any refreshment for two reasons , the first one is that there was no information about how long the start of the show was going to be late by . On your tickets information is written that discounts are available , when I asked at the ticket office I could n't get any discount for being a student . After one hour the whole class had heard about Sarah 's secret . Everybody was interested in what she had won but nobody wanted to ask Sarah because it was told as a secret to them . Sarah realized that everybody was nice and friendly to her but something was going on in the class , when she turned around talking and whispering started . Sarah looked at him for a while , then she stood in front of the class and explained to the others that she had won a prize for 20 people to travel for 1 week to the coast of southern France and every one of the 19 pupils was invited , except Pat who was n't very good at keeping secrets . I read your advertisement five days before , and I was really impressed by it . But , the quality of this show was n't what you led me to believe it would be , and I feel really disappointed by it . For all these reasons , and if you want to keep me as a customer , I would be grateful if you gave me some or all of my money back . Yours sincerely , My marks were n't good enough to obtain my degree in Computer Science , and the exam session was finished . I never talked about this project to anyone , except my best friend Pat . It is a great opportunity because this show is only every two years and normally it is difficult to go in . Or going to the show on Wednesday morning and in the afternoon , we can choose between free time or the National Art Gallery . I look forward to hearing from you . They found him two months later and six months later he was in jail . I am writing this letter to complain about your advertisement for the musical show " over the rainbow " , which is misleading in a number of ways . Sweating and afraid I waited outside the director 's office the following day . Tears ran down my face as I admitted having stolen . I was surprised that my father did n't watch me but I soon understood that he was ignoring me . That evening my father said a few words : ' May this be the end of your career as a thief ; we are only ready to forgive if you promise never to start again ' I am writing to reply to your letter in which you told me I won first prize in your competition , which is two weeks . I was very happy with this result since I did not think I could win . The aim of this report is to suggest which activities in our daily life at school should be filmed to give the other students an idea of what we usually do , not only during the lessons but also the rest of the time . The purpose of this letter is to complain about my experience with the musical " Over the Rainbow " , which really disappointed me . First of all , there were no discounts available such as were promised in the advertisement so I had to pay the original price which was n't cheap at all . Then , I was forced to wait forty - five minutes to see the show because it started at 20:75 instead of 19:30 and , when it finally started , I was really disappointed to see that the actors were n't Danny and Tina as it had said in the advertisement . Your really dissatisfied customer How has modern technology affected my daily life ? We live surrounded by inventions which help as through the day . The reason for my decision is that other activities are also available in my country , except climbing , but I have a fear of heights so this one is not destined for people like me . Actually , they put me very close to the stage , in the middle of the real hell . This is the main reason why I want to ask for a refund . People wo n't be embarrassed to show the beauty of their bodies . Moreover , I have chosen this month because I think the weather will be fine . During my stay at Camp California , I want to go swimming because I practise this activity regularly and I often enter competitions : this is one of my hobbies . Then , there was only one hour left to install the different coloured lights ; it was just enough time . We would suggest going to this fabulous show . Yours sincerely , Despite being used in many ways , it could entertain us as well . Although I imagine them in my house in my future , I am sure I would be surprised if I had them . A useful helper : the personal computer can quickly help you in lots of situations . Although the world of computers will develop day by day , I lively hope we ( human beings ) can maintain our way of seeing things . I'M VERY PROUD TO BE THE WINNER OF YOUR COMPETITION ! I HAVE NEVER BEEN TO SUCH A CAMP BEFORE AND SO I'M LOOKING FORWARD TO SPENDING TWO WEEKS THERE . IT IS ONLY POSSIBLE FOR ME TO TRAVEL IN JULY BECAUSE OF MY IRREGULAR WORK . HE 'S A SMALL ONE ! I'M LOOKING FORWARD TO HEARING FROM YOU YOU KNOW THAT I ALWAYS WANTED TO HELP AT A CONCERT . TO BE PART OF THE STAFF WOULD BE WONDERFUL , I THOUGHT . AND I WAS RIGHT ! AS YOU KNOW I WROTE TO THAT ORGANISATION WHICH IS ALWAYS RESPONSIBLE FOR BIG EVENTS . ALL OF THE STAFF AND THE ORGANISATION SPOKE ABOUT THE RULES AND HOW TO SAVE PEOPLE . WE WERE A GROUP ! ONE TEAM ! BEFORE THE CONCERT WE HAD A BREAK TO EAT SOMETHING AND TO TALK TO EACH OTHER . THE CONCERT WAS VERY LOUD AND LONG BUT WE DIDN'T HAVE TO WORK HARD . GREETINGS AND HOPE TO SEE YOU SOON However , it was a very disappointing evening for me . Firstly , it was mentioned that there were going to be two stars but , in fact , only one actor was performing in the show . Thirdly , the advertisement said that discounts were available but the ticket seller said that there was no discount allowing or available . In addition , the advertisement mentioned that the restaurant would be open after the show but it was closed because short of cooker . Finally , I would like to ask for my money back on the ticket due to the disappointing evening out and the misleading advertisement you have created . Nowadays , modern technology is becoming absolutely essential to our daily life . Without all this your life would definitely change back to the same position as it were 50 or more years ago . If this continues to happen our life will be very miserable as accidents happen all the time . Thank you very much for the many interesting positions in this schedule , especially the river trip to Greenwich , which , we are sure , will be very exciting . I would like to inform you that we have seen an advertisement for the " London Fashion and Leisure Show " and we have found it very interesting . Suddenly I heard a noise from my garden and I wanted to know what it was , but it was impossible to do it . I was afraid that someone was near my house and wanted to get into my house . I was very frightened , but I knew that I had to do something . I was sure there was someone on the other side of the wall . The only thing which really disappointed me was a visit to your theatre where I wanted to see the musical ' over the rainbow ' , after I read the advertisement for the show . The things that really disappointed me were that you said Danny Brook and Tina Truelove were the actors but they were n't , different actors played and to be honest they made the whole show very bad . To be honest that was not a great experience and I hope you will see my point . Since everyone can afford modern technology everyone 's life in the more developed countries has changed completely . So in the last century our daily life has changed dramatically and we have become lazy and our life impersonal , fast and unromantic . Your advertisement mentioned that the famous Danny Brook would play in this show but disappointingly it was another , unknown actor who starred instead of him . All those inaccuracies spoilt what should have been a memorable evening so I would like to be refunded at least for the price of my ticket . He did it some more times , and in the end nobody took any notice of the shouts . You are working with your ideal woman , I still ca n't believe that I spoke with her . At first I could n't believe that I was a winner My school starts in September and it finishes in June . If I could go in July that would be grate . I would like to ask you , what sort of clothes should I take with me ? I do n't want to take too much ; jeans , jumper , swimming costume , T - shirt , sports shoes I think should be O.K. At first I was helping to sell the tickets - it was n't difficult . We had to check every plug , switch , light . I could n't believe how big a lamp can be . Fortunately nothing had happened . Only people who were helping and organizing this concert could meet her . Some of them were speaking with her , I was n't this lucky person , but still I 'm happy , that I could be there . Log cabins may be more comfortable . On the other hand I think that I will be able to " survive " in a tent . I wish you had been here with me . You can not imagine how disappointed I was with myself . We started to put everything on the stage and after this we realized that the band was coming onto the stage near us . After all of this we saw the show from the best place , near the stage and afterwards , the thing that I most liked , we were invited to see the group and got their signatures . I have got a few things to complain about regarding your theatre . I decided to go and visit your theatre restaurant . For example , once people had to walk from one place to another , but now we can use science and technology to produce a lot of petrol - powered vehicles and we can travel faster with them . We can also use technology to produce more food and help them grow faster . The rules at home are very different . I am allowed to do what I want as long as I study enough to aprove . It is not always easy , but there are rules in every home and you have to respect them . I hope you will agree with our suggestion and if you have any further questions do not hesitate to contact me . In addition to this , you may have some robots bringing the newspaper to the table , tidying up the house , and doing the shopping . Maybe they will also be your life partners . I and my friend Emma helped to paint the scenery on the stage . As you know , I like drawing and painting when I have some free time so that is why I chose to paint the scenery . Moreover , the restaurant was still under construction so that we could n't use it when we were extremely hungry . One of the biggest things that have changed is the change in the methods of communication . I have mentioned a few changes above but there 's still the biggest one left , which is related to the field of computers . I refer to your advertisement in the Herald Tribune where you advertised the Circle Theatre and the recent musical : When we arrived at the theatre we realised that there were no discount tickets available as were mentioned in your advertisement so we had to buy the most expensive ones . I am looking forward to your prompt reply . Today the fashion industry has a great importance in the commercial market . There are the natural materials on one side whereas on the other side the fashion industry produces more and more synthetic materials , which relay on the production cost . In 100 years most clothes will be made from synthetic material . The contrast will be especially attractive . Furthermore the style of the clothes is going to be more crazy and individual but there will still be numerous clothes for conservative people . On balance fashion in 100 years time will be comfortable and colourful . There will be clothes for everyone 's taste . Our school is really very disciplined , especially about our clothes and behaviour . When I read the advertisement , it said that the restaurant would be open . On behalf of the class I would like to thank you for the excellent programme you have organised , especially the idea of visiting a gallery . I grew up through the water world and I could n't live without it . I love sports so I would like to play some basketball at the camp . By the way , my team and I won the last school championship . I play guard on my team . I also like tennis but I am not very good . I was wondering if you could give me some lessons while I am there . I do not have words to express how happy I am . I would like to thank you and Camp California for this opportunity . Since man became man he has needed to hunt to survive . In ancient times he used spears , bows and arrows , and the woman 's role was to collect items like vegetables and stuff . Nowadays , in the year 2000 we still practise this ancient art but in a different way , we do n't use weapons for hunting animals in the jungle , we use the remote to hunt TV shows , and we do not collect vegetables any more , we go shopping . This activity of shopping has become one of our most important , after all , we go shopping for any reason , we have developed such an instinct for shopping that we can proudly say that we are some sort of kings of the urban jungle . If an activity has stayed with us , mankind , for so long , it must give us some pleasure and maybe that 's why shopping has become such an important thing in our lives because it gives you pleasure when you find what you have been looking for and if you can get it for less than the price marked on it , that is the greatest of ecstasies . But where is the bad part of it ? Well shopping can became horrible at Christmas for example , when hundreds of people go to the shopping centre and it also can cause many problems when you become an impulsive buyer . Shopping is not always enjoyable because of several factors . One could be when you go into a shop and you find something that you like , and you decide to buy it , but when you see the price , you find out that it 's too expensive , and you can not afford to buy it . This situation is very annoying for most people , and that 's what makes shopping unenjoyable . Why do n't we include some sports , for example , volleyball ? Furthermore , it 's a worthwhile experience for people who want to know about other countries ' arts . Finally , with regard to tickets , it is a really wonderful idea because it is more convenient to enjoy the festival for one day among a lot of people . One day , when the old man went into the bamboo bush , he found some bamboo gritted white . He had never seen such bamboo before but decided to cut it down . THE KIND OF ACCOMMODATION I PREFER IS A TENT BECAUSE AT SUMMER CAMP I FIND IT MORE INTERESTING SLEEPING OUTSIDE UNDER THE SKY WHEN THE WEATHER IS NICE AND WARM . I'M QUITE GOOD AT PLAYING BASKETBALL BECAUSE I USED TO PLAY FOR ABOUT FIVE YEARS AT SCHOOL . WE USED TO HAVE TRAINING SESSIONS TWICE A WEEK AND AT LEAST TWO GAMES A MONTH AGAINST ANOTHER SCHOOL , WHICH WAS GREAT . PAINTING ALWAYS DID FASCINATE ME , EVEN THOUGH I'M NOT SO GOOD AT IT , BUT MY FRIENDS SAY I CAN REALLY PAINT AND THEY LOVE THE THINGS I DO . THE TECHNIQUE I LIKE THE MOST IS WATERCOLOURS . DO YOU REALLY WANT TO KNOW ABOUT MY EXPERIENCE HELPING AT THE POP CONCERT IN OUR TOWN ? The reason I 'm writing this letter to you is that during my stay in London I felt very disappointed about your theatre . After all the inconvenience that made me feel really mad . I think I can only forgive your theatre if you give me a refund of the money I spent there , and some more for all the problems I had . As you already know , I am trying to become a professional photographer , consequently I would choose photography as the first activity and painting as the second . However , I would like to know if by any chance the photography activities are only for beginners . Actually most people work hard to earn their money and consequently , the occasion on which this money is spent to buy something useful , or simply something they like , should be considered a very pleasant occasion . In fact , the shopping you do for your daily needs is seldom enjoyable , as it is clearly more a duty than a pleasure and moreover you are often faced with some nasty situations . First of all , when I paid my entrance fee they did n't accept my discount ticket , they told me that the ticket was fake , then I entered the theatre and I had to wait 45 minutes . The show was supposed to start at 19:30 and it started at 20:15 , " this shows a lack of respect " . Manager , I expect that you have considered my bad experience at your theatre , so I 'm asking you for my money back , because it was a very bad evening . It all started when Pat , Nick 's best friend , wanted to have the party at his house . Most of the class disagreed with that because the Pat 's house is extremely little , they started to say to him that his house was like a box . Pat got very angry and sad . At first Nick got angry but then he forgave him because they were friends and each of them could trust in the other . Nick told the situation to the class and offered his house for the party , because it was very big , with large gardens and a big swimming pool . To begin with the school rules , we have in fact some important ones . Since I have studied photography for several years , I would like to take some pictures of beautiful scenery in California . I had to pay the full price for them , which was quite expensive . It turned out to be impossible : the restaurant was closed and we did n't even receive an explanation . The development of portable communication systems , such as mobile phones , has greatly changed our way of life . It is now possible to talk to a friend almost everywhere and anytime , even if we are two thousand kilometres away from each other . Precision industry has changed my life a lot too . I go Scuba Diving during the weekends and holidays . I would like to travel in July because I have to go back to my country in August . How can shopping be enjoyable in this situation ! I believed everything she told me . I was surprised that he believed me . Yours sincerely , They are human beings and they need to keep a little bit of privacy and freedom in their lives to continue like normal people , to feel that they are unknown and anonymous and they do not have to wear sunglasses , hats or caps every time they want to leave home in order not to be recognised . Furthermore , you asked me to choose two activities I would like to do . And now for them shopping can be considered like a contrariety . It is quite obvious that celebrities ca n't lead a normal life , as they are constantly followed by reporters , which makes their life miserable . I am thinking here particularly of the fact that every event and action is widely discussed in the mass - media . Last of all , it says in your advertisement that there is a theatre restaurant open after the show but it turned out to be closed because it was being redecorated and no announcement was made . Therefore I would like are refund of my ticket and I would like an apology . Yours Sincerely , What do you think models will wear on the catwalks ? In my opinion , clothes will be a lot different in 100 years ' time . For the accommodation at Camp California , I would prefer to have a log cabin because I think it is more comfortable than a tent , and in case there is a big storm with heavy rain . A log cabin 's more resistant than a tent . For the activities , I chose climbing because I took a course for 2 weeks last year and now I have a good level of proficiency . For the other one I chose photography but I am not a professional , I just take some pictures on my holiday ! Next weekend I have a date with one of them , but I wo n't tell you the name because you 'll feel jealous ! I would like to do photography and swimming . I love to take photos but I do n't have any technique . Of course it is good to buy things for ourselves , like clothes , jewellery , anything . When you buy something you were looking for a long time and , when you arrive at home , you discover some defect on it and have to go back to the store to complain . Secondly , I would like to choose a tent for accommodation , because I have never spent time in a tent , that 's why , I think it is a good opportunity for me . I have plenty of experience and knowledge of both aspect of part . I would be grateful if you could inform me . My jobs were collecting tickets , selling goods and refreshments , guiding people to the right seat and cleaning up the concert hall after the concert finished . What I particularly liked about the experience was the concert was achieved through our support . I really recommend you to help them , I think this is a good opportunity and I want you to understand my feeling well . I want to know your opinion . On the other hand , their stories always make them embarrassed because most of the journalists create their own story based on the true story just to get the people 's attention . All of them were shocked by what they heard . She became very shy and angry . She could n't talk with people and she was just very sad . I want to tell you that I am very disappointed about the play . In the advertisement it said that Danny Brook was in the starring role . And also it should have started at 19.30 , as I saw in the advertisement , but it started at 20.15 ! And so far there were n't any discounts available which were said to be " available " in the advertisement . You should have written it in the advertisement . Absolutely it was very disappointing I hope you understand and will correct your mistakes in the next advertisement and send me my money soon ! Today 5 out of every 10 pupils can use a computer basically . It is really enjoyable when I chat with people . Technology is also important in another area for me . But some naughty students in my class were throwing paper aeroplanes when the teacher was writing something on the board . Unfortunately I have to complain about the musical show put on in your Circle Theatre last night . When I received your advertisement concerning the show " Over the Rainbow " I thought that I 'd have a great evening , but unfortunately it was a big disappointment for me . First of all , Danny Brook - the main actor in this musical - was absent . You also offered discounts - what kind of discounts ? Because the show was very long , we were getting hungry but of course your theatre restaurant was closed because of the holiday . I had not any money for travelling and my parents were going to give me some only if I had concrete plans . After one month , I went back home and told my parents what a lot of fun I had with my friends - I do n't know why I was such a liar . My parents believed my story until my younger brother Pat told them the truth . Now my parents do n't believe my story . I hope you will not feel offended , but I really need to complain about your theatre . You can believe I was very disappointed when I saw that he actually was not performing and I was more bewildered that no one made an apology for it ! Although , I would have felt better if I had had a discount on my ticket , as you mentioned in the advertisement , but unfortunately , these could n't possibly be given either ! If more and more engineers work in science and technology , it must be because it is really useful : but in what particular way ? I would like to travel at the beginning of the month , which could be between the first and the fifteenth of July , because afterwards I have several business meetings and it would be difficult for me to take a trip . Although I like camping and sharing with different kinds of people , I 'd prefer a comfortable and private place ( if it 's possible ) where I can sleep , or be quiet .. I am not a teenager ! I was running the whole show . My responsibility was to dress her . I really liked the exhibitions . The band " Three Kings " presented a new style of music . I would like to notice that the dance show was absolutely marvellous . What a great idea to invite writers ! I really liked talking with them . You wrote an advertisement saying that people from more than 15 different countries were going to visit this concert , but there were artists from only 6 countries . It was really a pity because I expected to see artists from France and Italy . The International Arts Festival was organised quite well . I would only recommend you have more artists and the classical concert should be in a bigger hall . They were so poor that sometimes they hardly had anything to eat . She persuaded him to go to the sea to ask for a lot of things for her . Also , the e - mail system is really helpful . Circle Theatre Finally we had the worst evening I have ever imagined , it was definitely not the " perfect evening " as written in the advertisement . Synthetic materials have developed and become very popular so they would keep going . I guess they will wear a sort of tunic over a shirt and a skirt , or more masculine clothes because they want to change . About the accommodation , I would prefer a tent because I enjoy the contact with nature as well as camping activities . In conclusion , like all things in life , shopping can be pleasant or irritating depending on your patience and on your mood that day . It gives us knowledge useful for many school clubs , like the " marathon shell " club or the robotics club . Besides it gives all the areas covered by a mechanical engineer and it is very important in a school where you will probably become a mechanical engineer . It lets us identify our abilities and the part of mechanics that we prefer . Our engineering school is specialised in mechanics and thermodynamics . First , we could film the fluid mechanics lessons and the general mechanics lessons . I wonder if we could not feet between some short view of the laboratories , in which we could show a student doing experiments . Future students could appreciate coming if they could still do their sport . Another point to record would be the time we have got between lessons or at lunch time . It will show a part of the way of life in the school . If possible , the type of accommodation I prefer is a tent . I will be very glad to participate in your camp ! Yours faithfully The show 's date is very convenient - March 14 - , and it is on in the Central Exhibition Hall so I do not think it would be a problem to get there . Although this statement is absolutely true , it seems there is no way to stop public attention , so they will have to keep living with journalists . My name is Marcia Fomalar , I am writing to let you know how disappointed I felt when I went to the musical at the London theatre . I went to buy a ticket and as I like to enjoy the show near the stage I bought a £ 20 ticket but when I asked for a discount they told me , " I am sorry but there was an error in the advertisement . It will be impossible to give you a discount " . At 19:15 I was very impatient , waiting for the show to begin , and a man announced that the show would start at 20:15 . Finally the show started and to my surprise my favourite actor Danny Brooke had been replaced by another actor . Pat sent a fax to my house with the different alternatives she had thought of but unfortunately my grandmother was there and she saw the paper so the surprise was ruined . The other activity that I chose is painting . I am not as good as I want , nevertheless I think I can improve my skills during this course . I would like to know how the weather is in California during the summer so I can bring with me the appropriate clothes and the last thing I need to know is the amount of money that I have to bring with me . To make this report easier and faster , it was necessary to make a questionnaire which was given out in the school . However , 15% thought that it was not a good idea because it would be boring to see other people enjoying themselves and they mentioned it as not really important . As you can see , my classmates and almost everybody in the school are happy with the facilities and activities that we have . A few weeks ago , my family and I had a holiday in London . The holiday was n't too good ! During the week we decided where we wanted to go . We all agreed to listen to music so then we decided to go to your musical show and listen to " Over the Rainbow " . That evening we did n't want to have our supper before the show . Anyway I thought it would be too early to eat and also because the timetable or candidates you give me have say : " visit our theatre restaurant after the show " . So we did , but unfortunately it was closed and I was so disappointed about it , not only because we had expected Danny Brook and Tina Truelove to be the actor of starring . We do n't expect much bad to happen on our holiday , but this was a perfect show as well , it was the worst show and theatre I have ever been to in my life . sincerely Ki To help us to live happily , scientists can easily predict the changes on earth , so that we can have time to prepare or defend ourselves from natural disasters . Weapons are designed to kill and defend in a fight . In the Second World War so many Germans were killed . Also many people died in other regions , Poisonous chemical compounds , e.g. gases and liquids , are created too . They have been used to kill people . Most of them produce radiation , which can disable a person , mostly harming their brain and their bodies , and it can also cause death . Communication technology , e.g. internet ( networks ) and mobile phones . In wars soilors communicate with mobile phones though places to place to get or give information about themselves and the enemy . By using the Internet we can make new pen friends overseas , and create clubs and societies . Now a message can travel quicker and it is also worldwide . sending letters takes about a week from Hong Kong to the U.K. , but network , e.g. Modern technology saves us a lot of time and brings us many benefits when we use it in the right way , but some bad way to e.g. send virus to break down network . Unfortunately , Pat was n't very good at keeping secrets and this was the reason why the party was n't as successful as we thought . We decided to go to his place ( I 've got a copy of the key ) the evening before his birthday while he was at work and decorate the lounge , then turn off the lights and wait for him in silence until he arrived . With reference to our trip to London , on behalf of all of us , the English class in this college , we would like to thank you for your special attention in organising a good programme to learn about the interesting and cultural places in London . We have been very excited about this and coincidentally we have found another option to add to our programme , certainly if you agree with it . We thought that The London Fashion and Leisure Show would be a great opportunity to give us more information about the main transformations nowadays in England concerning fashion , leisure , sports and lifestyle . It was dangerous , but I knew I had to do it . I was at home putting my makeup on before going to a restaurant with my friends and , suddenly , he rang the bell . He was so tense with a gun in his hands and I could no longer speak . He took me out with him . I had tried to think about stopping him , but he was stronger than me and he had used all his power to scare me and he forced me to buy cocaine using my cheques . I am writing to make some complaints about the musical show " Over the Rainbow " , of which you are the manager . Although it was written in the show 's advertisement that the main actor was Danny Brook , it , unfortunately , was not him . It was also written in the show 's advertisement that there would be discounts available on the tickets . Even though the advertisement said we should visit it after the show , it was closed and no explanations were given . In conclusion , the advertisement promised this would be a perfect evening out , but it was not , so I would like to ask for my money back . One day , I innocently told Pat that I was dating Philip Smythe , the school 's hunk and most popular boy . Suddenly , an enormous sadness caught me , because Philip had begged me not to tell anyone , so he would definitely break up with me , and I knew I was going to stop talking to Pat , because she had just ruined my happiness and I could n't trust her anymore . One day , while I was studying maths , one of my friends , called Pat , asked me to have a coffee with her . The problem started when I confessed to her that I had fallen in love with Larry , who was my cousin 's boyfriend . Surprisingly there was a completely different actor starring . Unfortunately the restaurant was closed . He is only looking for the biggest fishes and he has been unsuccessful for 86 days . Little by little we were growing up and becoming close friends . I relied on her and our relationship was excellent . It is my only favourite hobby . To reply to your question , it was really a nice experience . As you know , I like pop music so much and the singer was one of my favourite singers . I would be most grateful if you could let me have some information : - Are there leisure and entertainment facilities close to the camp ? I am really surprised for the information because I won , and I would like to say thank you for everything . This is why I wrote and sent this letter with the information you need I can only travel in July because it is the only time when I can do it before for my work I do not really care what accommodation I will have . I would prefer to come in July I will be available for the moment . I would really appreciate it if you could tell the people who work at Camp California I choose the Golf and Photography because I think I am really interested in those subjects . I am not really really good but I have some experience . I think that is everything I would like to know . I want to apologise to you , because I haven't written to you recently , but I want to tell you what happened to me last week . I had the opportunity to help at one of the most pop concerts in my city . So imagine , I felt really really good and excited . I do n't have words to describe it but I will try to do it , OK ? What 's more , your letter said about the chance to do two activities during the camp . I have even won a competition once . I would like to know if the , , travel costs '' which you had paid include entrance tickets to the museums or any other cultural places , because I would like to do some sightseeing in the U.S.A. Furthermore , if there will be cmy tumble dryer or washing machine to clean our clothes and if there will be a guide who will be responsible for us and the camp . When describing the advantages , we should remember that most people like doing shopping . Very often people go to a shop - usually a big department store and buy things which they do not need . From my point of view it depends on us whether shopping will be enjoyable or not . My name is Manu Roddos and I am writing to complain about some things that happened at the performance of the show Over the Rainbow , which took place in your establishment , The Circle Theatre , which made me feel very upset . I was very excited to see it yesterday , but as soon as I arrived at the theatre the problems began . Yours sincerely , Firstly , the great boom in mass communication which happened at the beginning of our decade , with the development of telephones , radio stations , television and even satellites , and of course , the Internet , gave ordinary people the chance to take off on a trip all over the world , and this allowed health and education research to increase as well . In addition to that , people will always be afraid of a technological war . In conclusion , from my point of view , people must learn that despite technology being such a new area to explore , we have to use it with a great deal of responsibility for us all to survive in the future . And is there anything else I have to take with me ? Yes , it is true . This is only because nowadays people have more money than ever before , and some women do n't earn money . They have no idea how difficult it is to earn money . It would be wonderful to buy some books or programmes with the signatures of all the stars and artists taking part in the festival . I hope this letter will help you with organizing the festival . Every pupil has to sit alone . ( I mean that one desk is given to one person . ) 2 . One should have such marks as , , 3 " , , , 4 " , , , 5 " , not , , 2 " , which is equal to fail . We do n't have old - fashioned rules or anything like that . First of all , it would be a good thing to say that July would be the best time to travel because it is the hottest month in the year , and the weather will be really nice . Despite my lack of experience in climbing I do want to try this type of sport . The aim of this report is to suggest which lessons and other activities should be filmed . I have interviewed each student from my English class . Firstly , the English lessons must be filmed as the most interesting lessons at our school because it will give students an interest in studying and improving their knowledge . It contributes to the world 's treasure house of literature and arouses an irresistible fascination . We should n't disregard and neglect to film the buildings and the gardens of our beautiful college , especially if we take into consideration the fact that it is in the city of Shakespeare . Also , painting is one of my favourite things ! Anyway , I really enjoyed helping at a pop concert last month so that I 'd like to write about it ! Anyway , by the time we finished everything , thousands of fans came into this concert hall . I 'm writing to you with reference to the letter I have received from you saying I have won your competition . Well , as you ask , I will tell you I would like to travel as soon as July begins , I 'm going to be able only to travel in that month because of my job responsibilities . Regarding the choice of tents or log cabins , I think I will turn to the first one because I have always loved camping close to nature , if possible , in front of a lake or a river , if your campsite has one , so that I will be able to do my favourite and skillful hobby : sailing . I would like to travel only in July , because I have only one month 's holiday this year . It is not too comfortable , but that is not a problem for me . I like this kind of holiday . I never had met pop stars before and I was very impressed , but I was too happy to show my shyness . I stayed with him until the concert began and after the show I had the opportunity to stay in his private room with him and the other dancers . So , unfortunately , I must say that last night was one of the worst nights I ever had , and having given the reasons , I expect to be able to count on your sense of responsibility , so , I feel that I must ask for my 20 pounds I spent on that terrible night . Also , with today 's machines , factories have significantly increased their production , which brings progress to humanity , but also , with the continuous replacement of men by machines , unemployment is increasing too , and today , it worries every single citizen of the world , specially the ones who live in third world countries . It would be a fun experience ! Women , in particular , have the annoying habit of always having to touch everything they see . This was the best thing that had ever happened to the Fennall family for yeats . Which was very shocking for her mother . SINCE I HAVE A CHOICE OF ACCOMMODATION , I'LL DEFINITELY GO FOR THE LOG CABIN , BECAUSE I CAN'T BEAR THE HEAT INSIDE A TENT . I WOULD LIKE TO ASK YOU ABOUT THE WEATHER CONDITIONS , SO I CAN DECIDE ON WHAT CLOTHES TO TAKE , AND ABOUT COSTS , SO I CAN MAKE A BUDGET FOR THE HOLIDAY . AFTER THE STAGE WAS BUILT , THE REST OF THE THINGS I HAD TO DO WERE QUITE EASY AND ENJOYABLE ; I COULD STAY EITHER BEHIND OR IN FRONT OF THE STAGE AND GIVE A HAND IF NEEDED . I REALLY ENJOYED IT BECAUSE I LEARNT A LOT OF TECHNICAL THINGS I DIDN'T KNOW ; AND WHAT I ALSO ENJOYED WAS THE GOOD PAY ! I 'm writing to you to complain about a play I have seen , called : " Over the rainbow " . It was clear that Pat had to change and show his friends that they could believe in him thoroughly . For those next few days , Pat would do his best to be as sympathetic as possible . To begin with , every morning Pat said a pleasant " hello " and added to that a big smile . His mother always says : " If you are smiling and are nice to people , people will be nice and will smile at you " . I would prefer to travel in July . I have only this time , because my summer holidays are during these days . A cabin reminds me too much of my home and is too comfortable . That is n't what I want to have if I stay in a wild area . I was able to ask anybody , and he answered in detail , although he had a lot of work . I 'm writing to you following our visit to your theatre last night . And I would like to know if it is possible to have our money back . And if someone else knew , I would n't be able to go back to heaven unless I killed the person who told my secret . And I would like to go in the first part of this month , the second part I spend with my family . While I will be at the Camp I would like sailing , because it is my favourite sport . Yours faithfully In my opinion this book ' The Old Man and the sea ' is the best book which Ernest Hemingway wrote . Thise book is about a man who knows that he will die soon , he knows that he did n't make his dream come true . So he decided to go for a last trip in his life . He needs to rest , but he does n't give up . In the end he makes his dreams come true , he catches a vast Marlin . In this book Hemingway is trying to tell us , that if we want something , we can get it , it might be difficult and take a long time but we can do it . Sometimes they give up , before they get something , I read the advertisement and I thought it was going to be a pleasant evening . From the beginning it was all a disappointment . When I went to buy the ticket I tried to get a discount with my student card , but that was not possible . I let this pass and I bought it anyway , thinking that it was possible that this was only a mistake in your advertisement . But the play started forty - five minutes late , and the star of the show , of whom I 'm a great fan an who was the main reason for why I decided to see the play , had been changed for another actor , who turned out to be really bad . I think you realise why I 'm writing this letter to ask you to give me my money back . All the things that were promised in your advertisement were untrue , and it was definitely NOT the perfect evening out . Expecting that you will resolve this misunderstanding . There 's no doubt that modern technology has changed our lives , but how ? I think that some of the changes have been very good , like the improvement in medical science , which now can save millions of people that one hundred years ago were doomed to die or to live miserable lives . It has changed the ways people communicate . But technology has not only changed our lives in a good way , giving us things that can make our lives more comfortable , it has also created things that are n't bad , but if they are in the hands of the wrong people they can destroy the world . Weapons and factories are destroying our planet and we need to realise that we have to use technology to improve our lives , while always trying to respect nature . Regarding the accommodation , I would prefer to stay in tents rather than log cabins because I have a lot of experience of putting up my own tents . I like to go window shopping that is good to go around the shopping centre . Then I can say I definitely do n't feel it is enjoyable . - Accommodation : a log cabin would be nice for me to stay in when I am in California . Before we can give our opinions on this statement we have to make sure that everyone knows what we are discussing . We do not speak here about luxury goods . But if you realize how important what you buy is for your health you will go shopping with a far greater consciousness and more joy than before . ' How incredible it is ! I love swimming and also I 've got a scuba diving licence . I used to enjoy floating on the water whenever I was on holiday . Singing is the most favourite hobby for us . I 'd like to know how much money , and how many clothes we need . Of course , the shopkeepers are human beings as well . But for their considerations , they 're working in their routines . I sometimes lose my desire to buy a thing because of their bad behaviour . For example , for our jobs , special ceremonies , and so on . Your advertisement also failed to mention the fact that there were no discounts whatsoever and , finally , because of a shortage of staff , your restaurant was not open . I asked myself how I could be so stupid , telling her my secret after all I had been going through to keep it to myself . Now I did n't need to go around worrying about it anymore . I decided to thank Pat , and maybe , if possible , teach her a lesson . I pretended to be totally miserable . Pat did n't know what to do . She apologised over and over again and I could really see that she was more than devastated . After hugging each other we promised never to tell others about our secrets . However , it was delayed and it started at 20.15 . The theatre restaurant was closed after the show , they said funds had run out . Those are totally unacceptable so I would like to get paid for my ticket cost . I ask you to transfer money into this account . Think about the computer , the speed of computers is much faster than before . Nowadays , technology keeps developing and better technology gives us an easier life . In the hope that you understand me . Unfortunately , Pat was n't very good at keeping secrets . At first , when he had a girlfriend , they talked to each other frankly . But after they separated , he told his friends her secrets without thinking . It is like one of his bad habits . It was a very unpleasant evening . The restaurant should have been open when I came out , but it was closed because of the time the show finished . After breakfast I have to use my car to get to school . Without technology I would get really bored . I would be very grateful to receive answers to my questions . Boy , he 's really really handsome ! Secondly , the show was meant to begin at 19.30 pm , actually it began at 20.15 pm and that was without giving any explanation ! Another thing that has changed my daily life is the mobile phone . Sometimes the ring is annoying but , finally , the mobile phone is a great , handy object . About the accommodation , from the two options , I choose to sleep in a tent , because I think that a log cabin is n't as authentic as a tent , at the camp . I would be grateful if you could send me further information about details like how much money or what kind of clothes I 'll have to take with me . You know that I 'm a little bit lazy , but the main reason for not writing to you has been the accumulation of exams during this month . There I was impressed by how a singer can cause such hysteria in teenagers . During the two - hour concert we had to attend to thirty - six people who became unconscious after being trapped in the first row by the other people . Answering the second question , I would prefer my accommodation to be in log cabins . And when it finally started , it was n't Danny Brook who performed . After the show I wanted to drink something in your theatre restaurant but when I arrived it was closed because the show started too late ! So I ask you sincerely for my money back because it was n't a perfect evening out . I told her that my parents are getting divorced and that I will move to Chicago with my mother . One day , Pat and I were going home , when she asked me if I would give a party before I go . I had to tell her that I did n't have the time to organise anything because we , my mother and I , had to get our stuff ready to move . But when we got into the house there were all my friends ! We had a great evening because Pat was n't very good at keeping secrets ! I am writing to give the information you asked me for and also I would like to request some information about the prize . Furthermore I would like to choose to stay in a tent instead of a cabin because I think it could be more exciting and could provide more contact with the environment . He had a puncture and he did n't know how to repair it . Then I changed the tyre and during this time he was asking me about my hobbies , studies , everything . I am writing to you in order to give you some details you asked me for in your letter . The job was hard , but , from my point of view , it was worthwhile . The most exciting thing was when we removed all the stuff the day after the concert , and we went to the Highlands to spend the whole day there . That was fantastic ! If you have never been there , I really recommend you to go . But we decided to buy a picture , because she had always told us about art galleries with great excitement . Yours sincerely Despite the fact that going to school by bus was easier than going by bicycle , I had preferred going to school by bicycle to going by bus . When I went to see her play , I really would love to be an actress . It was my dream . I wish my daddy Especially in the summer when the temperature and humidity are very high . From the list of all the activities I have chosen photography and golf . I have chosen golf because I have never played this game . My friend offered me a job as a member of the technical staff at Sting 's concert . We 've built it using ready metal and wooden parts . I was working with a specialist who had to connect all the lights together to one computer and prepare a colourful show . It was a totally new experience for me and a real pleasure working with professionals . For me - the dance shows were absolutely wonderful . I prefer them to others . We chose some of them and we were glad that we had our reasonably priced ticket for all the events because we could change our plans during the event . Most students wear jeans and a sweater . Next year , you should calculate or examine how many people will come before you choose a hall , which I feel very good was plays and films . And the offer of a " weekend ticket " was an excellent idea . Because the price was cheaper than buying it separately and more convenient . Yours Sincerely , Finally , food shops should be added to this festival next year because only plays and films were not attractive enough to get audiences . Yours sincerely , However , I can go out whenever I want , even at midnight . Secondly , boys are not allowed to have long hair . I feel that they would be fabulous places with a western design . Another disadvantage of the festival 's programme was the lack of plays and films which are the best to display a modern country 's culture , I think . In conclusion , I would like to say that in spite of the success of the festival some improvements still can be made . Fortunately , there are many ways to earn some money nowadays . In addition to baby - sitting , you may also give some lessons to small children such as ( tl ) teaching them to read or write or just basic rules and words of a foreign language , English , for example . But if you do n't like children and are not easy - going enough to work as a waiter you may choose the more peaceful job of a typist at home . So , you can help them and earn quite enough . Moreover , men prefer to do sports , because shopping wastes a lot of time , which is contrary to the tastes of women , because if they have any free time , they will go shopping . Finally , I would be interested in meeting artists from everywhere in the world not only European artists . In conclusion , I had an unforgettable time . The restaurant was closed because there was n't any electricity . You should close the theatre until the restaurant can be used . I was totally unsatisfied with the theatre and I would like to have my money back if that 's possible . I 'm quite sure that people all around the world will be wearing very different clothes in the future because people , especially women , who like to be very elegant and beautiful , will create and invent all kinds of clothes to anybody and that 's it . You ca n't be careful because you do n't know what time it will happen . But you can be careful when you speak with he or she who is stealing your things . I am writing this as a reply to your request to provide you with some information about my preferences . I am not so keen about the accommodation but would rather stay in tents than cabins . We live near the seashore and swimming is the sports activity I am really good at . Sometimes I feel very sorry for her . Lots of families plan a day out to go to a shopping centre , and it is a normal routine for them - to spend all day just shopping . I would like the trip to start in July if possible . Because this is my holiday start at the Camp California , I would like my accommodation in a tent , because I work in the Army and on the camp I usually stay in a tent at night , so I will feel more comfortable . Regarding the activities I would like to choose Swimming and climbing for my activities at the camp ; I usually do these two activities on the Army Camp . I know how to climb up on Rachiat outside and help other people to climb up . To make a daily life video in school , we should concentrate on the things we do most in a school . The thing we do most in a school is have lessons . It will be a very useful part of this video and should be the main subject . At the end of the video , we should find one or two students sit together and ask them a few questions about how they feel about studying at the school ? This is the suggestion to making a daily life video in school . It would be great . And we could n't wear any colourful clothes and socks . I 'm persuading my mum , perhaps . I am writing in response to your advertisement in today 's newspaper . In addition to this , I was wondering if you could organize the same festival in the summer . Unfortunately , Daniela fainted . This story happened a long time ago . Now Pat realized what was going on and could understand why her boyfriend got so nervous about the secret . Nevertheless , I lost my concentration on my studies and I spent the money on entertainment . I will never ever help anybody to organise a pop concert again . But after this servile work I met Eminem . As regards painting , I know a lot about it since my grandmother taught me when I was five years old . She also told me that she has some connections with the people in charge of the lights at the concert . Since I am going to travel I would like to know how much money it would be advisable to take and what kind of clothing I should take . Or approximately how much money would be enough to buy souvenirs because this will be the first time for me visiting California . Finally , I must choose travelling there in July because I am not allowed to take holidays in other months due to my work . However , things which you can get with money do not necessarily fill your dissatisfaction or even as you buy something more and more , your emptiness might be greater . And shopping is also a difficult hobby to go along with your friends or your partners . On the whole , shopping can be harmful rather than enjoyable because you might be extravagant , lose your friends and have what you do n't need . We think we could change the shopping to go to the show . To sum up , there is no perfect job , and being famous involves a lot of money , but also a lot of journalists following your private life . All the group would enjoy going to the show , because it is a great opportunity to see an exhibition of the latest fashions . For example , we ca n't go to the toilet during lessons . We have to go there in the break . It 's too strict . I do n't like it . My name is Sandre Atos , I am writing to you because last weekend I went to the theatre you manage , to see what was called " London 's newest and best musical show " . That 's why I am writing to ask for some money back ; I believe I have this right . Unfortunately my parents did not realize how TV was creating a role among us . On the other hand , due to scientific developments , I am getting better , recovering from asthma . I had a very disappointing evening last Saturday . I had everything planned ; my family and I were coming to watch your show and then have a decent meal at your theatre restaurant but it was disastrous . Then everything was going well until the show did n't start ! That was a disappointment for my whole family . In fact all the audience were very disappointed . Anyway the show was nowhere near as good as it was meant to be and it was definitely worse than I had expected it to be . I did n't enjoy it at all so I was relying on the food to fill me up and relieve some of my stress . So as soon as the show was over we walked out and followed all the signs for about 5 minutes , desperately searching for your restaurant , our stomachs rumbling for food . What kind of an organisation do you call this , sir / madam ? You do n't understand how disappointed and angry I was that night . In fact he was one of the principal busybodies of his neighbourhood and his school so not a lot of people in his school liked him . Some were just friendship groups but others took it seriously , maybe just a bit too seriously . They gave themselves names and acted like gangs rather than just groups of friends , and started picking on younger people , or members of other gangs , trying to start fights with them . This went on and on , got more and more serious , but it was so secret that the teachers did n't notice . Everyone in the year was annoyed , but not with Pat , oh , no ! except a few psycho groups . Some of the more serious ones decided to raid this party , just for the fun and meanness of it . Everyone was enjoying themselves except Pat , who had heard about the raid . The time had come . The who groups had combined their forces and were ready to strike . Lots of People were injured and even more were suspended the next day at school , when the Headmaster found out what had happened . Pat received no punishment at all and he was n't blamed for anything by his teachers or friends . But he felt awful because he knew that all this had happened because of him . Do you like do - it - yourself and is your house full of marvellous but useless things ? You could sell them to a specialised shop and finally tidy up your room ! I am writing in response to the International Arts Festival , which took place on 21 - 22 November . I would like to inform you that it was a great idea and a valuable activity as a social event . However , it was a disappointment when I realised that not many countries were attending the event . I would have liked to have seen more countries from all around the world , for instance , the Far East , Indonesia etc . On the other hand , I enjoyed being one of the people seeing the plays films , the dance shows which were brilliantly performed and the art exhibitions . Finally , I appreciate your organisation and look forward to hearing about the next International Arts Festival . What a pity ! Private schools have a more relaxed atmosphere than the state schools . Of course smoking is n't allowed in any part of the school . Apart from that I would n't mind at all whether I stay in tents or log cabins but if I have to choose between these two I 'd prefer to stay in tents because they give me a nice feeling of relaxation . It is very unusual to stay in log cabins while you are camping . Photography is a very interesting activity , and is not too hard to do either . Worst of all , at the end of the Musical , I went to your Theatre Restaurant , in order to have dinner , because I had left home without eating and so I was hungry at that time . First of all , modern technology has changed my daily life in the last five years more quickly than in ancient times , or even than a decade ago . Nowadays , I ca n't go one day without consulting computer communications via e - mail or the Internet . I exchange correspondence with all my family via the Internet , with my mother and 2 brothers who live in Curitilra City and also with a brother who lives in Italy and another who is living in New Zealand . It 's written in the regulations that we ca n't leave the school during the breaks ; we ca n't smoke near the classrooms ; we have to justify our absences or lateness and even if you 're over eighteen your parents have to justify you with the teacher . Regarding accommodation I would prefer sleeping in a tent because I enjoy the closeness to nature while camping a lot . I sort of felt like I had done my part to make the concert a success . The show is going to be on Tuesday the 14 of March from 10.00 to 19.00 and we find it very interesting , because we will have the opportunity to see mews , firstly about the latest fashions , secondly concerning leisure and sports wear and finally about make - up and hairstyles . Thank you very much ! Most of the time they have journalists following them everywhere , looking for a great story or interesting pictures to put on the front page of the newspaper , and I do n't think this is very nice , but it is the price that famous people have to pay , just because they are popular . Anyway , this is not always necessarily a problem , but it can be a big thing for the famous person , because it gets people talking about him and increases his popularity . In conclusion , I can say that this is not the biggest problem that the world has and -- it is not my problem because I am not famous ! Coincidentally the show is in London and on Tuesday March 14 , which is during the period we are in London for the three - day programme . However , journalists should not only think about commercial value , because morality and principles are also concerned . I remember in August 1997 Princess Diana dying in the car crash was one of the most disastrous examples . Although we can not deny it is our nature - we are curious - we can improve our sense of morality and try to think about the importance of privacy for them . Basle , 12th December 2000 In your letter , you asked me whether the book I 've read would be a suitable present for your cousin 's fifteenth birthday . You wrote that your cousin is quite interested in magic , detectives and sport , did n't you ? I think this is the best choice for him ! As you know , we are in England to learn your language and also to learn about your lifestyle , and we thought this show would be a good opportunity for us to discover this aspect of your country ! Thank you for your letter , as usual , it 's a pleasure to receive news from you . It 's a fantastic book , which I recommend to everybody keen on love stories . It 's a perfect combination of passion and life 's difficulties . I reckon that it 's not an easy read , but as you described your cousin , I think she really will enjoy it , she 's so good at literature that it wo n't be a problem for her . I really think you should choose this one for her , it does go with her personality . It 'll be a good point for her general education . Wuthering Heights is a classic , which everybody knows about , even if they haven't read it , they at least know the story . How has modern technology changed my life ? A computer is extremely helpful with writing reports and essays . But also I am not able to imagine my life without this nice way of receiving news with help of it . I would be very grateful if you could let us go to the show . Furthermore , admission is free for students . Unfortunately , our programme is fixed but I think we could change part of the programme . Firstly , most people can remember the sad story of " Princess Diana " . She died in Paris a few years ago while she was escaping from lots of journalists called " Paparazzi " . However , secondly , famous people are not " alien " so they might do something , for example , shameful things in a public space , or argue with a partner or family , even put on a swimming costume like us . So they can be just ordinary people like us . Overall , people should think about what it would be like if we were famous people ... and then we can find the answer that all people , including famous people , need a private life and would like to have an ordinary life . They were eager to have a child , but they had never been able to . About when I would like to travel , I think that my answer will be easy for you , because I have two months off , those are July and August , so my trip should be in between . Regarding my accommodation I would like to stay in a tent because I remember my holidays in the south of Peru , a long time ago ; it was wonderful . If it is possible for you to help me clear up some doubts I have , I 'll be really grateful . Yours faithfully . First of all , I 'll tell you that on the day of the concert I woke up at 6:30 a.m. , very early for me . You know me , I 'm lazy . The work began around 8:30 . It was very hard but then the band came to rehearse . From that moment I enjoyed working until the concert had finished . The atmosphere was wonderful , the musicians were very kind to everyone who was working because they understood that putting on a concert is a job to be done by a team . Finally , we would like to get your permission to go . Maybe if it is possible that you can change your programme , we can go to your college any time after Tuesday . This story happened two years ago . Not only was I a member of the swimming team in our school , but also I had been taught by my father since I was five years old . I started thinking about it . After all , either had I never done this task before , or trained . It was really a reasonably priced weekend for me , but you should also introduce new activities like competitions in singing songs or drawing a portrait next year . Secondly , the show should have started at 19:30 p.m. , and it began forty - five minutes late . Moreover , when I went to buy the tickets no discounts were available . Furthermore , I wanted to have a coffee after the show , but when I tried to get to the theatre restaurant , it was closed . Balloons and coloured lights were put in all the trees . I carried a lot of chairs and looked after the queue or people who lost their way . As we are going to be in London on this date , we think it could be a great opportunity for us to go there because we are very interested in the latest fashions , make up , etc . and it is free for students . Because of this , we would kindly ask you to change the programme so that we could go to this particular event . A special invitation It allowed people to enjoy their weekend , relax , and also it brought a foreign culture to them , broadening their knowledge . In addition to this , one weekend ticket for all the events was only £ 10 . This was excellent . It meant people only spent pocket - money , and then they could watch all the events at the weekend . For them it is a really economical way to spend their weekend . Moreover , the stars and artists were from only six countries . In my opinion , if you can invite more stars and artists from more countries , it will make the festival more exciting , more interesting , and in my opinion , some of the concert halls were too small . The people in there could n't even go to the loo , because it was too crowded . These are only my immature views . If it is considerable for you , I will be very pleased . Thank you very much . It was very uncomfortable for me . Today I received your letter . It is the most wonderful news I have heard in a long time . I am so pleased that I won this prize that I can not explain how grateful I am . Because of this situation I will be very busy in the first week of July , and I would appreciate it if you could give me the option to begin my " Camp California " experience on July 10th . About the accommodation I would prefer to sleep in a tent , because I have never been in one , and it is a lot more fun than log cabins . Because I have seen my father playing golf since I was a child I am very keen on this sport , and also I love photography because I have got a great camera . When I was a child I never liked to go shopping because my Mum spent so much time in the shops that I remember that going shopping with her was a nightmare . It is amazing how people change over the years For example now shopping for me is one of the most entertaining things , and every week I have to buy something . But these days shopping is not always enjoyable , because if you decide to buy a very expensive designer and you pay the full price , at the end of the season it is half price . I find it very unfair for people who pay a lot of money for their clothes . Anyway , shopping is always satisfying for rich people , because they can afford it and they do n't mind paying the full price for their clothes . Modern technology ca n't not transform our daily life . The inventions of the aeroplane , of the train and of the car , have reduced the distances of the world , so we can go to the other side of the world in half a day . Everything has changed : style , colour , quality . Fashion . We saw almost all kinds of skirts , trousers , coats , skirts and even hats - which until now have been the main point of many fashion creatures . Grey and black - like the seasons , like people 's characters , like all the night and dark surrounding us . In the advertisement , it said that Danny Brook was starring , but in place of him there was a different actor and he was really disappointing . As you can understand , it was a dreadful time and I want my money back as a consolation for the disappointment I had . I support this idea which is convenient both for the public and the organisers . It is awful ! However , we promised our parents to do some cleaning every week . What is more , there are many new ways to produce medicines and modern hospital equipment . The second is nuclear weapons and the many wars in which modern equipment is used . To sum up , as far as I am concerned , modern technology has changed my life completely . Last week , during my holiday in London , I had the opportunity to see the show " Over the Rainbow " at the Circle Theatre . The day of the show , we got to the theatre at 19:30 . Third , the theatre restaurant was closed because the chef did not show up . You can feel the fresh air and listen to the animals . This will be a great opportunity ! I am not good at either activity , but it will be a pleasure to try them , especially surfing . I would like to feel the wind in my hair , and enjoy how quickly the board goes over the sea . I mean , it is too crowded , you have to wait such a long time before you can pay , and most of the things are too expensive ! I was looking forward to a great evening , but much to my surprise , that was not exactly the case : there were no discounts available , such as were mentioned in the advertisement ; the show started 45 minutes late ; I was then very disappointed to see that Danny Brook had been replaced by someone else . Yours faithfully , I will take the example of the use of the Internet . I am writing to you because yesterday I went to the musical " Over the Rainbow " and I had a bad evening . First of all , I would like to travel in July because this is the beginning of my holidays , and I would not like to miss some of my school classes . Besides , I would prefer to stay in a tent , because I got used to being in tents since I spend my holidays every summer with my friends in the hills . In addition , I would prefer playing tennis . I also like surfing . I think it is a dangerous sport , but I know how to do it , because of the fact that last year a professional surfer taught me . I'M WRITING TO YOU TO COMPLAIN ABOUT THE MUSICAL SHOW " OVER THE RAINBOW " WHICH WAS PERFORMED LAST WEEK . YOURS SINCERELY Because I am a university student , I have got classes until the middle of June and I have to attend a ' Research and Development Conference ' at the end of June . Otherwise I have to work at a business department office as an assistant from the beginning of August . I always want to buy T - shirts , Jeans , Skirts , cosmetics , haribands , accessories , rings , earrings , bracelets , shoes , hats , bags , fancy stationery , interior stuff and CDs . Instead of buying something , I buy some fresh food and Ice - cream . I can try all the shoes , clothes , hats , accessories and jackets on . Actually , I could have a chance to ask her about music , her favourite artist and her hobby . Likewise , there were no discounts available . Because of all these inconveniences , I ask you for a total refund . So when Caroline , his girlfriend , told him something personal and very important , because she trusted in him , immediately he went to see one of his friends to tell him the secret . So immediately she went to Pat , angry , in order to argue with him , saying that she was annoyed by the way he behaved , and that it was n't the first time that he was n't capable of keeping a secret . But after I climbed two steps more , my right foot slipped . I nearly fell , but luckily my hand caught a rock . It was dangerous , but I did n't have any choice . Finally I did it . I think it was definitely not the perfect evening guaranteed in your advertisement . I was terribly annoyed ! I am always available on my mobile phone , which is also boring sometimes ! I often go on the Internet to find information when studying a particular subject more closely ( university technology sites ) . At work my particular job involves two standard PCs with specific software plus one workstation with the Stanford University Network ( SUN ) operating system and a special computer that my firm is now developing . I hope this matter will receive your prompt attention . For example , if you were hurt seriously like cutting your leg off , the new medical technology could rebuild part of your body . Also we should be careful as we could be watched by security cameras which have been combined with modern technology . In conclusion , I conciderly said we has been charged by morder technology in two ways . I am not very good at painting , but I choose it because it is a good opportunity to do it . I do n't want to disappoint you , but I am beginner ! In this book , Heathcliff as a child was n't a bad character , but the situations he lived through with the Earnshaw family , where he grew up , made him rude , aggressive and noisy . Before Heathcliff died he achieved what he wanted . In your letter you ask me to choose between tents or log cabins . Well I prefer to stay in a log cabin . It is more comfortable and I am afraid of wild animals . The other activity I like very much is swimming . First we had to prepare the stands with food and drink and buy something which had been forgotten . He is very beautiful ! Fortunately we had no problem . I was very proud of myself and the work I had done . Modern technology has completely changed my daily life , which has become more comfortable , and easier . Thank you for the excellent programme you have organised for our class . We would like to inform you that we are all extremely interested in this show and that it could be a great opportunity for us because entrance is free for students . We would like to ask if we could go to this show on the 15th March instead of doing the visit to the Science Museum . Who has never dreamed of being a famous singer , sportsman , actor or a politician ? Firstly , this is because there are a lot of scandal magazine readers . What a catastrophe ! A disaster ! Also , I used to assist my brother , who is a professional photographer . When I read the advertisement for the show I was really excited but after the show I was not very happy because of the following problems . The advertisement says that Danny Brook and Tina Truelove would play but in this show there were totally different actors and that was really disappointing because I was looking forward to them . The advertisement also says that there are discounts available but this is not true , there were none . Why do you give this information in an advertisement ? I have only one question about the baby 's accommodation . So , you wo n't believe me , but I enjoyed helping at an Oasis concert . Me and my friend were there to hear the sound - check , and when I understood what was happening on the stage , I decided to help them . Of course you know I 'm a singer , so I came back quickly to my home , I picked up my microphone , and I handed it to the singer . Can you imagine ? I will consider taking this complaint to court if I do not receive an acceptable explanation from the theatre . On the other hand , people in the future will probably wear clothes to protect themselves from the polluted air and water , the harmful ultra - violet rays from the sun and all the dangerous and poisonous gases or chemicals which are the product of a developed and full - grown country . Therefore , I will suggest that we all nov to keep the environment clean and healthy for the next generation . When I first heard about Over the Rainbow I was very excited about the idea of seeing it , plus when I heard about the extras that the circle theatre was offering , it became the best opportunity I ever had to attend a musical of that type , but instead of being the best evening I ever had , it was a total disaster and that 's the reason why I am writing to you . First , the actors that the Circle theatre publicised on their tickets for Over the Rainbow were not there , which was very disappointing because the actors starring in the musical were one of its major attractions . Another point that I want to complain about is the time that the musical was supposed to start ( 19:30 ) but it started at 20:15 , so there was major dissatisfaction with that , but the last and worst thing was that your theatre restaurant was closed because the British health institute considered your food unhealthy , and I am not taking into consideration many other points like unsatisfactory service , and uncomfortable seats . Science and Technology is a theme very much discussed nowadays , most of the community of our city , and of the world , where technology has arrived , confirms that it has in some way improved their way of life . But not everything about technology and computers is good , because many people , and me in a control way , have become computers ' and technology 's slaves , and we can not do anything without a machine , and I am not saying that it 's wrong or bad , and I accept that they make our daily tasks easier , but we have to maintain our independence as humans . First of all , there are quite a lot of advantages to shopping , which are that it can be the solution to our stress and boredom . Also shopping makes people happier by costing a lot of money and it even influences the economic situation more flexibly . Also there are plenty of dangers since lots of people have their wallet stolen because it is a public place and there are too many people . In addition , shop owners often cheat their customers by increasing the cost secretly . I 'm really pleased I won your competition ! I 'll give you the necessary information about me . The most suitable time for me is July because in August I intend to go to the countryside , where I have a small farm . You offer me a lot of activities . It was absolutely great ! I gave information about correct ways to other places like toilets and medical points . I looked very carefully at the organisation of the event , you know I 'm interested in it . I was so surprised to hear from you . I was really grateful when I received your letter which informed me that I have won first prize in your competition . Personally I prefer to stay in log cabins because they are much more comfortable than tents . Unfortunately I am not good at either of them . I really hate it , because we 're not allowed to wear casual and fashionable clothes , colourful shoes or colourful socks . I am very excited and looking forward to the new experience I am going to have . I would prefer to stay in tents because I love the atmosphere of camping , but I would n't mind staying in log cabins . It is based on information made available by students from each class at school . It seemed to be the most interesting lesson , because students always make some mistakes while they are practising with their partner , in spite of having been told by the teacher ten times . Spending time together out of the class is a nice experience . Firstly , I should say that I would like to travel in July because that is the month which I could most likely have off from work to go on holiday . That is because , I do not want to seem fussy , but I like to have some luxuries when I am going on holiday and I think sleeping on the floor without electricity may annoy me . Conversely , painting is an activity which I have never tried before , so I have not any skill in drawing but I would like to start doing that now when I have the chance . On the other hand , I would like to know some information which could be useful on my holiday like : what type of clothes would be more suitable for me in the Camp ? I am writing to tell you about my experience at the pop concert last month , where I was helping my friend Nick , who was the bouncer at the venue . My job was to accommodate to the people of the main sit of the theatre . So , I hope to see you soon to show you all my photos . I think it was very clever of me to record that moment which I will never ever forget , and that was the thing that I liked most about that experience . I 'm writing to you to make a complaint about your musical show : " Over the Rainbow " ... Last week , I , my husband and our two children went to your theatre to have a good time , but we were so disappointed . Moreover , there were n't any discounts available like writing in your advertisement . I will always say thank you very much to the inventor who has invented the machines which do the washing and the washing - up , before this , women spent a long time doing these tasks . I am writing to give you further information about me which you need for Camp California . In conclusion shopping is enjoyable but not when it is too busy . 1 . Grammar , which is the basis of learning English . Speaking : it makes you more confident when you talk with other people . It lets you get more practice . Writing . This class teaches you how to organise what you want to write . It is important to practise your English after lessons . If you have a problem studying , try asking the teachers about which is the best way to study . Yours sincerely I am writing in reply to your letter in which you told me I won the first prize . So I want you to send me some money back for that unpleasant night . The headmaster wanted to tell the police what we had done so we decided to imprison him in a little house we had twenty kilometres away from the village until we could change his mind . We took some photos of him naked and told him not to tell anybody about this because if he does we will hang the photos all around the village . In the following edition the headline was : " Why does a teenager sleep with a toy called Max ? " Everybody laughed at her . I would like to travel only in July because I will have some holiday at that time . 3 When you are ready to shop , sometimes you know beforehand what is your priority , because probably you need one thing rather than another . But the best thing that we do , when we go shopping is spend time having lunch at a snack bar , watching movies and playing computer games . Last month , I worked as a roadie at a Rolling Stones pop concert . I was responsible for the sound . Some people when they are tired relax by sleeping , reading a book or watching television , but not me . There are always , at the end of the afternoon , some well - dressed women coming from their offices and they just spend one hour in the shop without buying anything . However , it is true that shopping is not always enjoyable , for example before Christmas or during some special sales . Secondly , the show began forty - five minutes late and nobody told me what had happened . I preferred riding a motorbike with the people who studied with me in the Institute . You have a chance to meet people and now you have an opportunity to select good friends . I like Danny Brook as an actor and when I read that he would be starring , I booked the ticket immediately . I belong to the generation who have grown up with a lot of new technology . For example , TV , telephone , microwave etc . I thought I would never need a mobile phone , but my mum and dad gave me one for Christmas last year and now I ca n't live without it ! But the invention that I 'm most thankful for is the computer and the Internet ! So , I start every day by switching on my mobile phone , to see if there are any more SMS messages before I go to the library to check my e - mail and that 's just the beginning of the day ... Second , I would rather stay in a log cabin , because I tend to get very nervous in small closed places , so a tent would be inappropriate for me . I haven't played golf for a long time , so it will be pleasant to do so . Yours sincerely , The fans started shouting and whistling for the show to begin , while I just stood there trying to see what had happened . When we saw your advertisement for the musical show , over the rainbow , we immediately decided that this would be a perfect evening out . Thirdly , in your advertisement it said that discounts would be available , but they were not . I am therefore asking for compensation for our disappointing evening and hope we can reach a solution as soon as possible . I really like Pat , she 's funny , has a good sense of humour and like me she loves to discuss everything . I have received your exciting letter , informing me that I have won two weeks at Camp California in the USA . I much prefer sleeping in tents . It seems more sociable and really sounds like holidays . So one week before the concert I went to " L'Arena " to meet the other worker and receive the instructions . I 've had the honour of helping their sound engineer and branching the cables for microphones , guitars etc . We really started to work like ants the morning before the show . It was exciting looking at all three men working together and building a stage , and it was interesting to help the sound engineer to check the sound and configure his computers to get the best sound possible . About two hours before the beginning of the show , we met the band and received tickets to go backstage . That was wonderful , maybe better than the concert itself ! That 's a great experience ! Apart from this , photography is one of my favourite hobbies and I usually spend nearly all my spare time doing it and of course I have some diplomas as well . I would like to request some information about accommodation and if you could specify what this trip includes , since I need to know how much money I have to take . I feel that this was a good opportunity for me , not only for my professional but also for my personal life . According to my job , I had to help the teams with the outlights and , of course , it was my first professional experience : in the end I felt like one of them , because they were so kind to me , and I could help a lot and I learnt a lot with this project . I prefer that kind of accommodation because I can have a kitchen or even a bathroom there , but I ca n't have it in a tent . These are my favourite because they have a lot to do with water , but I like them more than surfing . I agree with this statement especially when we talk about small shops in the centre of a big town . These days people prefer shopping at supermarkets rather than at shops or even shopping centres , because shopping at a shop is less enjoyable and you spend the same amount of money . There were 963 people at the " Armageddon " that night ! You must show a great sense of responsibility . I 'm sure you are jealous now . Now I am studying and I 'll continue my studies until the end of June . I think it 's a very useful and helpful thing for my health , especially when I do it with pleasure . The second of my favourite sports is tennis . I 've played tennis for ten years . I 'm a professional and I have to be good at it , in any time . The most enjoyable thing was to dress people . But when we saw our show and heard how loudly the audience applauded them we were proud and understood that we spent a good time . You should try it and see . I would like to stay in a tent because I used to go camping at weekends but if there 's any problem I could be very comfortable in a log cabin too . I have never tried either of them before and as a result I ca n't be good at them but I 've always wanted to sail because I love the sea and now I have the opportunity . If you do n't mind I would like to know what kind of clothes are appropriate for the camp and for the Californian weather . First of all , we usually go to the shops at the same time as the rest of the world and that 's a little bit complicated because the shops are full and it 's impossible to try accurately . I would be grateful if you could send me the full details . In the following paragraphs I will discuss the advantages and disadvantages of shopping . In a supermarket , shop or department store they have many things . It is very convenient . Sometimes , there are so many people and they are not friendly at all or you are in a hurry while you are in a long queue . Most people enjoy shopping because it is more convenient today but if you found a busy place for shopping or it was not as good as you expected . Dear Sir or Madam , With reference to your advertisement regarding the musical show " Over the rainbow " I am writing to you with the intention of giving you an impression of our experiences attending the above - mentioned show . We were disappointed to realize that not Danny Brook but a different actor played one of the main characters . According to your advertisement the play should have started at 19:30 . What made the situation worse is that no explanation for the delay was given ; not even an apology . A story of an old seaman leaving his town to prove that he is still able to catch the biggest fish ever caught . Last week I was on holiday in London and I was very disappointed when I visited your theatre . First of all , the show was supposed to start at 19.30 , but it was delayed until 20.15 , and when the show finally began we were surprised to see that Danny Brook , who was the star of the show , was not playing and someone else had replaced him and he was really disappointing . Anna told her again : " Pat do n't tell anyone please , especially my brother , everything would be ruined then " . And Pat answered : " Do n't worry I wo n't tell anyone " . The big secret was that Anna was preparing a surprise party for her brother John and she did n't want anyone to know about it . It will be a pleasure to give you all the information which you need . As far as I know accommodation at Camp California is in tents or log cabins . It 's more convenient for me . I am a good defender . I 'd like to know what temperature it will be in July in California and your advice about how much money I will need to have an unforgettable holiday ! If we decide to buy something special and we have enough money for it we have to go and buy it . During a prior holiday in London I came across an encouraging advertisement for the show and decided to see it . Unfortunately , I was very disappointed to find out that there were no discounts available ! In addition , I was very annoyed by the fact that the event had started at 20:15 - not 19:30 as stated in the advertisement . I 've always enjoyed danger and this time getting the password was , indeed , a tough cookie . Especially now , when ' big - mouth ' Pat has spread the news to literally everyone . I would n't be surprised if suddenly something bad happened to me . Furthermore , for the activities I want to select Tennis and Basketball because I have been playing tennis since I was young and basketball because I played for the team in my college as the captain . Anyway , this was my experience working at the concert . If you have an opportunity to help at any concert you should help because you have a lot of fun as well , OK . I am writing to you , in reply to the letter I have recently received , to inform you about some details that I am concerned about . In your letter you presented the possibility of choosing two activities and I would like to let you know that I would be pleased if I could join in with basketball and climbing , as I am very good at both of them because I played basketball in my secondary school as captain of the team and due to my long training sessions lifting weights . There is , as well , the struggle you have to endure when you find yourself in the crowds , crammed in the small shops during the only day - off you have to buy something you like . All this can easily lead to a nervous breakdown , particularly when you realise that your money has been stolen either during your difficult way through the crowds or while you were queuing to pay . I 'm the winner of the first prize in your competition and I 'm writing to you to give you some information which was requested by you . And it 's creating a lot of addicted people , called " shopaholics " . I am writing to you because I had a very disappointing evening at the Circle Theatre . He told me that it was necessary to do something about it . As Pat was losing his patience , he decided to talk to him . I can say that I was very nervous and anxious about what was going to happen . I am writing this letter to inform you about the decisions I have made regarding your questions . When I was a child I was afraid of all these little insects that live in the ground and this fear still remains now . I also think that the log cabin will be much more comfortable than the tent . Basketball and swimming are the two activities I have chosen . Finally I would like to ask you for some further information about the clothes and the money we will need . I was only responsible for the property of the back stages . I was shocked and terrified the first time I saw them , but the truth is that they are men like us . They have a very simple life and behaviour when they are n't on the stage . Definitely , it was not my perfect evening at all and under these circumstances I really believe you should give me my money back . I received your letter about the two weeks I won at camp California in the U.S.A. I would like to travel in July because I will have holidays in that month . Yours sincerely Also , we will take the drinks from our canteen and there will be a group of musicians for our entertainment . I was surprised because I did not know what he wanted . When I went he wanted to tell me that from the next month I would be his personal secretary and my salary would be twice what it was previously . Unfortunately , the musical show was n't much like that the one the advert had described , and that is why I want to ask you for some money back . Now I have a new computer , which is very easy to use , and comfortable for my fingers and also faster . And he can answer me very quickly . I think it is now the future of big companies to work with the Internet . I am writing to inform you of some problems we had . We had to wait over 40 minutes It seemed to sink into the sea , but fortunately , the storm soon went away . Finally when it started we noticed to our surprise that it was not the right actor on stage . Afterwards we wanted to go for a pleasant dinner . Anyway , we definitely know that they 're going to change . In the paper it was written that the principal actor is " Danny Brook " but it was n't him , it was a different actor whom we had never seen , or heard . Unfortunately , Pat was n't very good at keeping secrets , this sentence is very popular in our school . I helped to guide foreigners who would like to participate in that . Thank you for your letter . I was so happy to receive such good news that I could n't believe it . Regarding the accommodation at Camp California , I prefer to rent a tent , which is going to be more fun , I think , but are the tents singles ? Is there only one teacher for each sport , and how many are in each group ? It 's the place where you can meet your friends , where you can talk freely , and there are no teachers . It could be a good contrast to the seriousness of the lessons . Finally we should film the lunch , which is also a moment for the students , and for the teachers , to relax . We must n't forget to film the staff room because if a school is made of students , it 's also made of teachers . I would like to thank you for your letter you recently sent me concerning the competition for two weeks at Camp California in the U.S.A. First I want to thank you for all the congratulations , and I 'll try to answer all your questions about , for instance , travel and accommodation . I have to tell you that it is only possible for me to go on holiday in July because my father is very ill and it is only possible for my sister to take care of him in July ( because her small children are in summer school at that time . I was so happy and surprised that first I could not really believe it . Secondly , regarding the accommodation , I would say I prefer living in a tent rather than in a log cabin because I used to sleep in a tent when I was staying in a local scout camp in my country . Thirdly , I have chosen Sailing and Photography from the list you gave me because both of them are my favourite hobbies and I have been enjoying Sailing and Photography for several years so I am quite good at both of them . Finally , I would like to ask you whether I have to prepare any special clothes for camping or will the camp provide them for me . A group of girls can stay in a shopping centre forever . Thank you for your letter and I am very pleased that I won the first prize in your competition . In addition to all this , I would appreciate it if you could let me have more details about clothes and how much I shall be paid for the trip . Another reason is that it will be more useful for foreign students who want to speak English . The number of foreign students has recently been increasing . To sum up , it is recommended that speaking classes and school trips should be filmed . First of all I would like to thank you for giving me the opportunity to travel . You asked me some questions about the day that suits me the best to depart , the accommodation I would like to have and so on . Travelling in July , I have to say , would be perfect for me because my birthday is on the 24th of that month and I wish to spend my birthday in the best way possible , so that means there . I also would prefer to sleep in tents , which are more comfortable , and , because I have been doing lots of camping , I am quite used to this kind of accommodation . The activities I have chosen both represent a passion for me . We are writing to you to complain about the musical show " Over the Rainbow " , which we saw last week in your Theatre . The advertisement said that it starts at 19.30 , but it actually started at 20:15 due to a problem with the sound . We were also surprised to discover that the student discounts were n't available for us , because they did n't accept our student identity cards from Switzerland . What is the effect it has on your environment ? The major problem for the industrial cities is to deal with the bad effects of pollution on the environment . A lot of money is involved in research to stop the increase in levels of pollution . To sum up , all the improvements come at a price : the condition of the environment . When it was time to take the final exam , she became ill and she could n't do it so the teachers decided to allow her to pass the course because she had a lot of good marks , but on the other hand the principal disagreed and did n't give permission to pass her . She had to repeat that course and all her friends passed and as is usual the girls from the last course became popular . Pat , to win her new classmates ' friendship , told everything that she knew about her friends and , because of what Pat said , her friends ended their friendship with Pat because their popularity was damaged . And it is even more difficult to predict what clothes in the future will look like . I saw the performance and it was not as it was described in the advertisement I read in the local newspaper . Then , I was planning to buy three £ 20 tickets because it was mentioned in the advertisement that there were discounts available but that was not true , so I could just buy two tickets and my son could not see the show . Finally , I was thinking of having dinner in the theatre restaurant after the show but it was closed due to some problems with the employees . What was supposed to be a perfect and enjoyable evening , resulted in a very disappointing time . So I would be grateful if you paid for a full refund of the money I spent on the tickets . Computers , radio , CDs , satellite television and a lot of other things have changed my daily life . Another advantage is that , for example , satellite television , which is an example of modern technology , keeps me informed about what is happening in the whole world . After considering your accommodation offers , I 'd rather stay in a log cabin if possible . It would not only emphasize the sharp contrast between this and the classroom atmosphere but also show how they are as young people . On top of everything , the restaurant which was advertised in the advertisement was closed because it was being arranged . You can imagine how disappointed I felt after that evening , and I am writing to ask you for a refund of part of the money . But , in other things , I think modern technology hasn't changed my way of life too much : I do more or less the same as I did some years ago : I get up in the morning , go to school , have lunch , study and go out with my friends without being affected by microchips or nuclear energy . I have happily received your reply and I want to thank you for this marvellous prize you have given me . After helping to do that and many other things , my friends and I watched the concert and before Green day ( the group ) left , they came up to us an thanked us for all the hard work we did , and shook our hands . It started at 20:15 leaving us waiting for forty five minutes . In the future people will wear clothes made of polyester and nylon because cotton and wool will be rare and expensive . Also I think clothes will have many gadgets on them like a small oxygen mask in case someone goes in a place with extended pollution - I think there will be many such places in a hundred years - and a hat designed to protect people from the strong rays of the sun at midday because the ozone layer will be destroyed in a hundred years and the sunrays will do damage to the human skin . Now , it is already possible to send our shopping list by computer , and this option , in the next few years , will become the most common one . The new technologies will probably produce a considerable revolution in some essential parts of the house . For example , we will have computerized ovens , microwaves and freezers , or we will probably have central heating controlled through the Internet from our office . Firstly , log cabins are more comfortable than tents . ================================================ FILE: data/example_data/bea60k/subsample/sources.txt ================================================ I WANT TO THAK YOU FOR PREPARING SUCH A GOOD PROGRAMME FOR US AND ESPECIALLY FOR TAKING US ON THE RIVER TRIP TO GREENWICH . IN MY OPINION FAMOUS PEOPLE ARE BEING OBLIGED TO PAY A PRICE FOR BEING FAMOUS THAT , IN SOME CASS , COSTS MORE THAN THEY DESERVE TO PAY . Also , I want to say that the plays and films were exellent , but there were n't enough of them for me . In our Acadamy we are not allowed to smoke . I was trully dissapointed by it . Secondly , I had to wait fourty - five minutes before the show finally began . I 'd like you to send the money to this adress : ul Taklowa 10 It is a dream becames true and was really unexpected for me ! If not , what do you sugest ? The festival was excenent in many ways , and in particular it being an international festival was a challenging , but brilliant idea . MY NAME is JAMES CAMIREZ AND I AM WRITING THIS LETTER TO YOU BECAUSE I HAVE SOME COMPLEINTS REGARDING THE DISAPPOINTING EVENING I HAD LAST NIGHT . SECOND I GOT TO THE THEATRE AT 19.20 BECAUSE IN THE ADVERTISEMENT IT CLEARLY STATES THAT THE SHOW STARTS AT 19.30 , AND I GOT REALLY MAD WHEN I LOOKED AT MY WATCH AND NOTICED THAT I HAD BEEN WAITING FOR 40 ( FORTY ) MINUTES AND THE SHOW HADN'T STARTED YET ... I MEAN IT WAS AMAIZING ! I COULDN'T BELIVE IT . HOW CAN THIS CLASS OF THEATRE BE SO .. OH I'M GETING MAD AGAIN SO I AM GOING TO TELL YOU ONE LAST THING , IT WAS THE MOST HORRIBLE NIGHT I HAD EVER HAD SO I DEMEND MY MONEY BACK ! MODERN TECHNOLOGY HAS AFFECTED ME IN SEVERAL WAYS . I MEAN THE MORE THE TECHNOLOGY ADVANCES ; THE MORE CONFORTNESSCOMFORTABLE WE GET . BUT I THINK ALSO THAT WITH MODERN TECHNOLOGY WE GET MORE COMFORTABLE SO THAT MAKES ME A PACIVE PERSON AND NOT SO ACTIVE . THIS CAN BE BAD TOO BECAUSE IF I GET USED TO BEING CONFORTABLE , WHEN I NEED TO DO HARD WORK I WON'T BE ABLE TO . Everybody attented go to the show , funny , and happ in the end , and what have we go then ? Disapponted ! If you could not manage the programe , why did n't you informe people before the programe started ? I tought you inderstood ' ; please send money back to me , you know why , do n't answer me ? Now we know , our world has developed to new world , becase we have high technology to do . Today , teachnology is a part of life . It started from got up in the morning , we have the machine help us to cook , iron , cleanning , washing , and then we went out to work , there are car , sky train to travel for help us convenience and quickly . We appreciated the mordern technology changed my daily life for help every easy and quickly , we have time to do many things . It is a good start to go on a sightseeing bus on Monday morning , because we can se all the famous buildings in a few hours . On Wednesday after we have viseted the National Art Gallery , we can have a chat about our next holiday during the free time in the afternoon . Nowadays the main attroction in the newspapers and on television is the private lives of famous people . On the whole , being rich and famous does n't always bring happeness , whereas the majority of the population wish they were rich and famous . Last week we had another demostration of this . Firstly , it will introduce the latest fashions connecting Millenium . Whenever I recollet it , I feel self - confident . Firstly , I would like to say that I 'm very glad to have been choosen and I will do my best for this competition . As you mentioned about the accomodation , I would prefer to stay in a tent , because it 's more exciting and I really love camping . However , I would choose sailing because I am facinating with the sea and its misteries and I also like the watter , the wind in my face ... The other one I would choose is basketball becouse I 'm tall and very fast with the ball . It was unbelivebly ! ! ! Are you studing a lot ? I have just received your letter which made me so hapy . I can not belive that I won first prize in your competition , because I have always believed I am an unluky man and now I think some things are changing in my life . I would definitly choose basketball and swimming wich are my dream sports . I would like to ask a few things , specialy about the wheather : what is the weather like in July in the U.S.A ? What kind of clothes will I need and how much money should I take with me ? Because I have never been to the U.S.A. before I do n't know anything about it . I have never enjoyed doing shopping , but nowday there are some people who are called shopcholic . They are just like alcholics and these people go shopping every day because they can not stop themselves unless they have not got money to spend . Because nowdays whereever you go there is a big queue and I hate waiting . The queues are not the only problem . If you go by car there is the problem of parking , if you go by bus there are also queues and you have to carry a lot of carrier bag carrier bags during your journey and you wo n't always be luky enough to find a seat . Specialy if you want to buy clothes with your girlfriend or if you are a girl , you have to be ready to spend hours trying on clothes . I realy hate going shopping with girls to buy clothes because when they go into a shop they want to try on every single item of clothing and they do not realise the time . Some people say " shopping is not always enjoyable " but for me it is definity unenjoyable and I think it will be the same for the rest of my life . First of all , when I bought the ticets it appeared that there was no discount available . It was awful when he started to laugh and everybody was stearing at us . Firstly when I went to the show it was written that the start time was 19.30 but it started at quarter past eight . I had waitted for forty - five minutes . I just knew I should n't have trusted her but as I went in the house my dad asked Pat to stay for a meal . I was in schock , thinking why is n't anyone getting angry with me ? After a while we sat down for dinner and Pat just told my parents that I was smoking and when my family heard they got ever so angry . As my husband is a native and we live in Switzerland , we apreciate spending a week in London every year . First , we could n't get a discount , although you mention it in your advertisment . I walked back , hoping I would n't come accross anyone and be able to drive back home . Firstly , could you invite stars and artists from more than only six contries ? In my opinion , it might be better to have time with a variety of nationallites . As they know about your interestings and personality , it is easy to help you . I would like to make some appoitments about the event that I went to . - Art exbitions to teach us more things about the artist 's lifestyle ; and Well , about rules in my contry , the situation is not different from other countries . The rules must be respected by all people if you do n't want to be kicked out of scholl . However , some of them have read an advertisment about the London Fashion and Leisure Show , which will take place at the Central Exhibition Hall in London on 14th March . Also the most famous star can be unhappy and depresed : in fact , money and celebrity do n't always bring happiness . In addition , addmission for students is free . Yours sincerily , On the other hand , the bond between parents and children is unlikly to change . The smokers in the school yard , the buffett and the other pupils , who are sitting at their tables doing their homework . That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredome . I am sure that eventually we will take off our clothes and in the future we will be undressed and free . There wo n't be any problem with being up - do - date . Of course , you ca n't afford a luxualy car and a large apartment unless you 're born with a silver spoon in your mouth . It 's also a really popular job among university students because of the good salaly . I was really suprised when I opened it . I look forword to going to the Camp California in the USA . Because it remainds me of my childhood . I used to go with my friends to a camp , wich was situeded by the seaside . Nowdays we have many big shopping centers . The most suitable time for shopping is the weekand when parents do n't work and children haven't got school . Because of that , shopping centers are overcrowded . You ca n't buy something in a peacful and calm athmospher . However such centers are very useful and necessary . In my opinion the worst thing which may happen is an extremly long queu for the changing room . If you bought something goregous , you will be very happy . Yours sincerelly I 'm writing to you because of the musical show " Over the rainbow " , wich I saw on Friday the 16th of June in your theatre . There are several points I have to complain about wich meant the evening was not nice at all . Instead of half past seven the show startet at quarter past eight . I could n't go to get any refreshment for two reasons , the first one is that there was no information about how long the start of the show was going to be late by . On your tickets information is written that discounts are available , when I asked at the ticket office I could n't get any discount for beeng a student . After one hour the hohle class had heard about Sarah 's secret . Everybody was interested in what she had won but knowbody wanted to ask Sarah because it was told as a secret to them . Sarah realized that everybody was nice and friendly to her but something was going on in the class , when she turned around talking and wispering started . Sarah looked at him for a while , then she stood in front of the class and explaind to the others that she had won a prize for 20 people to travel for 1 week to the coast of southern France and every one of the 19 pupils was invited , except Pat who was n't very good at keeping secrets . I read your advertissement five days before , and I was realy impressed by it . But , the quality of this show was n't what you led me to believe it would be , and I feel realy disappointed by it . For all these reasons , and if you want to keep me as a customer , I would be gratfull if you gave me some or all of my money back . Yours sincerly , My marks were n't good enought to obtain my degree in Computer Science , and the exam session was finished . I never talked about this project to anyone , exept my best friend Pat . It is a great opportunity because this show is only every two years and normaly it is difficult to go in . Or going to the show on wensday morning and in the afternoon , we can choose between free time or the National Art Gallery . I look farward to hearing from you . They found hime two months later and six months later he was in jail . I am writing this letter to complain about your advertisement for the musical show " over the rainbow " , wich is misleading in a number of ways . Sweating and affraid I waited outside the director 's office the following day . Tairs ran down my face as I admitted having stolen . I was suprised that my father did n't watch me but I soon understood that he was ignoring me . That evening my father said a few words : ' May this be the end of your career as a thief ; we are only ready to forgive if you promiss never to start again ' I am writing to reply to your letter in which you told me I won first prize in your competetion , which is two weeks . I was very happy with this result since I did not think I could win . The aim of this report is to suggest which activities in our daily life at school shoud be filmed to give the other students an idea of what we usually do , not only during the lessons but also the rest of the time . The porpouse of this letter is to complain about my experience with the musical " Over the Rainbow " , wich really disapointed me . First of all , there were no diccounts avaible such as were promised in the advertisement so I had to pay the original price wich was n't cheap at all . Then , I was forced to wait forty - five minutes to see the show because it started at 20:75 instead of 19:30 and , when it finally started , I was really disapointed to see that the actors were n't Danny and Tina as it had said in the advertisement . Your really dissatisfied costomer How has modern technology afected my daily life ? We live sorrounded by inventions wich help as through the day . The reason for my decision is that other activities are also available in my country , except climbing , but I have a fear of heights so this one is not destinated for people like me . Acctually , they put me very close to the stage , in the middle of the real hell . This is the main reasone why I want to ask for a refund . People wo n't be embarassed to show the beauty of their bodies . Moroever , I have chosen this month because I think the weather will be fine . During my stay at Camp California , I want to go swimming because I practise this activitie regularly and I often enter competitions : this is one of my hobbies . Then , there was only one hour left to install the different color lights ; it was just enought time . We would suggest going to this fabolous show . Yours Sincererly , Despite being used in many ways , it could entartian us as well . Although I imagine them in my house in my future , I am sure I would be suprised if I had them . A usefull helper : the personal computer can quickly help you in lots of situations . Although the world of computers will develop day by day , I lively hope we ( human beings ) can mantain our way of seeing things . I'M VERY PROUD TO BE THE WINNER OF YOUR COMPETITION ! I HAVE NEVER BEEN TO SUCH A CAMP BEFORE AND SO I'M LOOKING FORWART TO SPENDING TWO WEEKS THERE . IT IS ONLY POSSIBLE FOR ME TO TRAVEL IN JULY BECAUSE OF MY UNREGULAR WORK . HE 'S A SMAL ONE ! I'M LOOKING FORWART TO HEARING FROM YOU YOU KNOW THAT I ALWAYS WANTED TO HELP AT A CONCERT . TO BE PART OF THE STAFF WOULD BE WONDERFUL , I THOUGTH . AND I WAS RIGHT ! AS YOU KNOW I WROTE TO THAT ORGANISATION WHICH IS ALWAYS RESPONSBLE FOR BIG EVENTS . ALL OF THE STAFF AND THE ORGANISATION SPOK ABOUT THE RULES AND HOW TO SAVE PEOPLE . WE WERE A GROUPE ! ONE TEAM ! BEFORE THE CONCERT WE HAD A BREAK TO EAT SOMETHING AND TO TALK TO EACH OTHER . THE CONCERT WAS VERRY LOUD AND LONG BUT WE DIDN'T HAVE TO WORK HARD . GREATING AND HOPE TO SEE YOU SOON However , it was a very dissappointing evening for me . Firstly , it was mentioned that there were going to be two starrings but , in fact , only one actor was performing in the show . Thirdly , the advertisment said that discounts were avaliable but the ticket seller said that there was no discount allowing or avaliable . In addition , the advertisment mentioned that the restaurant would be open after the show but it was closed because short of cooker . Finally , I would like to ask for my money back on the ticket due to the disapointing evening out and the misleading advertisement you have created . Nowadays , modern technology is becomming absolutely essential to our daily life . Without all this your life would definately change back to the same position as it were 50 or more years ago . If this continues to happen our life will be very misarable as accidents happen all the time . Thank you very much for the many interesting positions in this schedule , especially the river trip to Greenwich , which , we are shure , will be very exciting . I would like to inform you that we have seen an advertisement for the " London Fashion and Laisure Show " and we have found it very interesting . Suddenly I heard a noice from my garden and I wanted to know what it was , but it was impossible to do it . I was affraid that someone was near my house and wanted to get into my house . I was very frethend , but I knew that I had to do something . I was shure there was someone on the other side of the wall . The only thing which really disapointed me was a visit to your theatre where I wanted to see the musical ' over the rainbow ' , after I read the advertisement for the show . The things that really dissapointed me were that you said Danny Brook and Tina Truelove were the actors but they were n't , different actors played and to be honest they made the whole show very bad . To be honest that was not a great expierence and I hope you will see my point . Since everyone can afford modern technology everyone 's life in the more developed countries has changed completly . So in the last century our daily life has changed dramandesly and we have become lazy and our life unpersonal , fast and unromantic . Your advertisement mentioned that the famous Danny Brook would play in this show but disappointingly it was another , unkown actor who starred instead of him . All those innacuracies spoilt what should have been a memoriable evening so I would like to be refunded at least for the price of my ticket . He did it some more times , and in the end nobody took any notice of the shoutings . You are working with your ideal woman , I still ca n't belive that I spoke with her . At first I could n't belive that I was a winer My school starsts in September and it finishes in June . If I could go in July that would be greate . I would like to ask you , what sort of clothes should I take with me ? I do n't want to take too much ; jeans , jumper , swimming costium , T - shirt , sports shoes I think should be O.K. At first I was helping to seill the tickets - it was n't difficult . We had to check evey plug , switch , light . I could n't belive how big a lamp can be . fortunetly nothing had happend . Only people who were helping and organizating this concert could meet her . Some of them were speaking with her , I was n't this lucky person , but still I 'm happy , that I could be thear . Log cabins may be more confortable . On the other hand I think that I will be able to " survive " in a tent . I vish you had been here with me . You can not imagine how dissapointed I was with myself . We started to put everthing on the stage and after this we realized that the band was coming onto the stage near us . After all of this we saw the show from the best place , near the stage and afterwards , the thing that I most liked , we were convidated to see the group and got their signatures . I have got a few things to complain about regarding your theart . I deciced to go and visit your theatre restaurant . For example , once people had to walk from one place to another , but now we can use sciene and technology to produce a lot of petrol - powered vehicles and we can travel faster with them . We can also use techlogy to produce more food and help them grow faster . The rules at home are very different . I am allowed to do what I want as long as I studie enough to aprove . It is not allways easy , but there are rules in every home and you have to respect them . I hope you will agree with our suggestion and if you have any further questions do not hesistate to contact me . In addition to this , you may have some roboters bringing the newspaper to the table , tidying up the house , and doing the shopping . Maybe they will also be your life patners . I and my friend Emma helped to paint the scence on the stage . As you know , I like drawing and painting when I have some free time so that is why I chose to paint the scence . Moreover , the restaurant was still under construction so that we could n't use it when we were extlemely hungry . One of the biggist things that have changed is the change in the methods of communication . I have mentioned a few changes above but there 's still the biggist one left , which is related to the field of computers . I refer to your advertisment in the Herald Tribune where you advertised the Circle Theatre and the recent musical : When we arrived at the theatre we realised that there were no discount tickets available as were mentioned in your advertisment so we had to buy the most expensive ones . I am looking forward to your promt reply . Today the fashion industrie has a great importance in the commercial market . There are the natural materials on one side whereas on the other side the fashion industry produces more and more syntetical materials , which relay on the production cost . In 100 years most clothes will be made from syntetical material . The contrast will be especially attractiv . Furthermore the style of the clothes is going to be more crazy and individuell but there will still be enumerous clothes for conservative people . On balance fashion in 100 years time will be confortable and colourful . There will be clothes for everyone 's tast . Our school is really very diciplined , especially about our clothes and behaviour . When I read the advertisement , it said that the restaurand would be open . On behalf of the class I would like to thank you for the excellent programme you have organised , especially the idea of visiting a galery . I grew up through the water world and I could n't live whitout it . I love sports so I would like to play some basketball at the camp . By the way , my team and I won the last scholl championship . I play guard on my team . I also like tennis but I am not very good . I was wondering if you could give me some lessons while I am there . I do not have words to express how happy I am . I would like to thank you and Camp California for this oportunity . Since man became man he has needed to hunt to survive . In ancient times he used spears , bows and arrows , and the wemon 's role was to collect items like vegetables and stuff . Nowadays , in the year 2000 we still practise this ancient art but in a diferent way , we do n't use weapons for hunting animals in the jungle , we use the remote to hunt TV shows , and we do not collect vegetables any more , we go shopping . This activity of shopping has become one of our most important , after all , we go shopping for any reason , we have developed such an instinc for shopping that we can proudly say that we are some sort of kings of the urban jungle . If an activity has stayed with us , mankind , for so long , it must give us some pleasure and maybe that 's why shopping has become such an important thing in our lives because it gives you pleasure when you find what you have been looking for and if you can get it for less than the price marked on it , that is the greatest of extasis . But where is the bad part of it ? Well shopping can became horrible at christmast for example , when houndred of people go to the shopping center and it also can cause many problems when you become an impulsive buyer . Shopping is not always enjouable because of several factorors . One could be when you go into a shop and you find something that you like , and you decide to buy it , but when you see the price , you find out that it 's too expencive , and you can not afford to buy it . This cituation is very annoying for most people , and that 's what makes shopping unejoyable . Why do n't we include some sports , for example , voleyball ? Furthermore , it 's a worthful experience for people who want to know about other countries ' arts . Finally , with regard to tickets , it is a really wonderful idea because it is more combinient to enjoy the festival for one day among a lot of people . One day , when the old man went into the bambo bush , he found some bambo gritted white . He had never seen such bambo before but decided to cut it down . THE KIND OF ACCOMODATION I PREFER IS A TENT BECAUSE AT SOMMER CAMP I FIND IT MORE INTERESTING SLEEPING OUTSIDE UNDER THE SKY WHEN THE WEATHER IS NICE AND WARM . IM QUITE GOOD AT PLAYING BASKETBALL BECAUSE I USED TO PLAY FOR ABOUT FIVE YEARS AT SCHOOL . WE USED TO HAVE TRAINING SESSIONS TWICE A WEEK AND AT LEAST TWO GAMES A MONTH AGAINST ANOTHER SCHOOL , WHICH WAS GREAT . PAINTING ALWAYS DID FASCINATE ME , EVEN THOUGH I'M NOT SO GOOD AT IT , BUT MY FRIENDS SAY I CAN REALLY PAINT AND THEY LOVE THE THINGS I DO . THE TECHNIK I LIKE THE MOST IS WATERCOLORS . DO YOU REALLY WANT TO KNOW ABOUT MY EXPIERENCE HELPING AT THE POP CONCERT IN OUR TOWN ? The reason I 'm writting this letter to you is that during my stay in London I felt very disappointed about your theatre . After all the inconvenients that made me feel really mad . I think I can only forgive your theatre if you give me a refund of the money I spent there , and some more for all the problems I had . As you already know , I am trying to become a professional photographer , consequently I would choose photograpy as the first activity and painting as the second . However , I would like to know if by any chance the photograpy activities are only for beginners . Actualy most people work hard to earn their money and consequently , the occasion on which this money is spent to buy something useful , or simply something they like , should be considered a very pleasant occasion . In fact , the shopping you do for your daily needs is seldom enjouble , as it is clearly more a duty than a pleasure and morover you are often faced with some nasty situations . First of all , when I paid my entrance fee they did n't acept my discount ticket , they told me that the ticket was fake , then I entered the theatre and I had to wait 45 minutes . The show was suposed to start at 19:30 and it started at 20:15 , " this shows a lack of respect " . Manager , I spect that you have considered my bad experience at your theatre , so I 'm asking you for my money back , because it was a very bad evening . It all started when Pat , Nick 's best friend , wanted to have the party at his house . Most of the class disagreed with that because the Pat 's house is extremly little , they started to say to him that his house was like a box . Pat got very angree and sad . At first Nick got angree but then he forgave him because they were friends and each of them could trust in the other . Nick told the situation to the class and ofered his house for the party , because it was very big , with large gardens and a big swimming pool . To begin with the wchool rules , we have in fact some important ones . Since I have studied photography for several years , I would like to take some pictures of beautiful scenaries in California . I had to pay the full price for them , which was quite expencive . It turned out to be impossible : the restaurant was closed and we did n't even receive an explaination . The developpement of portable communication systems , such as mobile phones , has greatly changed our way of life . It is now possible to talk to a friend almost everywhere and anytime , even if we are two thousand kilometers away from each other . Precision industry has changed my life a lot too . I go Scuba Diving during the weekends and hollydays . I would like to travel in July because I have to go back to my country in Auguest . How can shopping be enjoyable in thoese situation ! I belived everything she told me . I was surprised that he belived me . Yours sincerelly , They are human beings and they need to keep a little bit of pirvacity and freedom in their lives to continue like normal people , to feel that they are unknown and anonymus and they do not have to wear sunglasses , hats or caps every time they want to leave home in order not to be recognised . Furthermore , you asked me to choise two activities I would like to do . And now for them shopping can be considerated like a contrariety . It is quite obvious that celebreties ca n't lead a normal life , as they are constantly followed by reporters , which makes their life miserable . I am thinking here particularly of the fact that every event and action is wildely discussed in the mass - media . Last of all , it says in your advertisement that there is a theatre restaurant open after the show but it turned out to be closed because it was being redecorated and no annocement was made . Therefore I would like are refund of my ticket and I would like an apolygists . Yours Sincelery , What do you think modles will wear on the catwalks ? In my opinion , clothes will be a lot differente in 100 years ' time . For the accomodation at Camp California , I would prefer to have a log cabin because I think it is more comfortable than a tent , and in case there is a big storm with heavy rain . A log cabin 's more resistant than a tent . For the activities , I chose climbing because I took a cours for 2 weeks last year and now I have a good level of proficiency . For the other one I chose photography but I am not a proffesional , I just take some pictures on my holiday ! Next weekend I have a date with one of them , but I wo n't tell you the name because you 'll feel jalous ! I would like to do photografy and swimming . I love to take photos but I do n't have any techinique . Of course it is good to buy things for ourselves , like clothes , jewelery , anything . When you buy something you were looking for a long time and , when you arrive at home , you discover some deffect on it and have to go back to the store to complain . Secondly , I would like to choose a tent for accommodation , because I have never spent time in a tent , that 's why , I think it is a good oppotunity for me . I have planty of experience and knowledge of both aspect of part . I would be greatfull if you could inform me . My jobs were collecting tickets , saling goods and refreshments , guiding people to the right seat and cleaning up the concert hall after the concert finished . What I particularly liked about the experience was the concert was achived through our support . I really recomend you to help them , I think this is a good oppotunity and I want you to understand my feeling well . I want to know your openion . On the other hand , their stories always make them embarras because most of the journalists create their own story based on the true story just to get the people 's attention . All of them were schoked by what they heard . She became very shy and engry . She could n't talk with people and she was just very sad . I want to tell you that I am very dissapointed about the play . In the advirtisement it said that Danny Brook was in the starring role . And also it should have started at 19.30 , as I saw in the advirtisement , but it started at 20.15 ! And so far there were n't any discounts available which were said to be " available " in the advirtisement . You should have written it in the advirtisement . Absolutely it was very dissapointing I hope you understand and will correct your mistakes in the next advirtisement and send me my money soon ! Today 5 out of every 10 pupils can use a computer basicly . It is really enjable when I chat with people . Techology is also important in another area for me . But some naughty students in my class were throwing paper aeroplanes when the teacher was writting something on the board . Unfortunatelly I have to complain about the musical show put on in your Circle Theatre last night . When I received your advertisment concerning the show " Over the Rainbow " I thought that I 'd have a great evening , but unfortunatelly it was a big disappointment for me . First of all , Danny Brook - the main actor in this musical - was abbsend . You also offered discounts - whot kind of discounts ? Becouse the show was very long , we were getting hungry but of course your theatre restaurant was closed because of the holiday . I had not any money for travelling and my parents were going to give me some only if I had concret plans . After one mounth , I went back home and told my parents what a lot of fun I had with my friends - I do n't know why I was such a liar . My parents belived my story untill my younger brother Pat told them the truth . Now my parents do n't belive my story . I hope you will not feel offensed , but I really need to complain about your theater . You can believe I was very disappointed when I saw that he actually was not performing and I was more bewildered that no one made an apologie for it ! Although , I would have felt better if I had had a discount on my ticket , as you mentionned in the advertisement , but unfortunately , these could n't possibly be given either ! If more and more ingenors work in science and technology , it must be because it is really usefull : but in what particular way ? I would like to travel at the beginning of the month , which could be between the first and the fifteeth of July , because afterwards I have several business meetings and it would be difficult for me to take a trip . Although I like camping and sharing with different kinds of people , I 'd prefer a confortable and private place ( if it 's possible ) where I can sleep , or be quiet .. I am not a teenager ! I was running the whole show . My responsability was to dress her . I relly liked the exhibitions . The band " Three Kings " apresented a new stily of music . I would like to notice that the dance show was absolutelly marvelous . What a greit idea to invite writers ! I relly liked talking with them . You wrote an advertisment saying that people from more than 15 different countries were going to visit this concert , but there were artists from only 6 countries . It was relly a pity because I expected to see artists from France and Italy . The International Arts Festival was organised quite well . I would only recomended you have more artists and the classical concert should be in a bigger hall . They were so poor that somitimes they hardly had anything to eat . She persuide him to go to the sea to ask for a lot of things for her . Also , the e - mail system is really hepful . Circle Theater Finally we had the worst evening I have ever imagined , it was definitely not the " perfect evening " as written in the adverstiment . Syntethic materials have developed and become very popular so they would keep going . I guess they will wear a sort of tunique over a shirt and a skirt , or more masculine clothes because they want to change . About the accomodation , I would prefer a tent because I enjoy the contact with nature as well as camping activities . In conclusion , like all things in life , shopping can be pleasent or irritating depending on your patience and on your mood that day . It gives us knowledge usefull for many school clubs , like the " marathon shell " club or the robotich club . Besides it gives all the areas covered by a mechanical engineer and it is very important in a school where you will probably become a mechanical engineer . It lets us identify our abilities and the part of mecanics that we prefer . Our engineering school is specealized in mecanics and thermodynamics . First , we could film the fluid mecanics lessons and the general mecanics lessons . I wonder if we could not feet between some short view of the laboratories , in which we could show a student doing experimentations . Futur students could appreciate coming if they could still do their sport . Another point to record woubl be the time we have got between lessons or at lunch time . It will show a part of the way of life in the school . If possible , the type of accomodation I prefer is a tent . I will be very glad to partecipate in your camp ! Yours faightfully The show 's date is very convinient - March 14 - , and it is on in the Central Exhibition Hall so I do not think it would be a problem to get there . Although this statement is absuletely true , it seems there is no way to stop public attention , so they will have to keep living with journalists . My name is Marcia Fomalar , I am writting to let you know how disappointed I felt when I went to the musical at the London theatre . I went to buy a ticket and as I like to enjoy the show near the stage I bought a £ 20 tiket but when I asked for a discount they told me , " I am sorry but there was an error in the advertisement . It will be impossible to give you a discount " . At 19:15 I was very impatient , waiting for the show to begin , and a man anounced that the show would start at 20:15 . Finaly the show started and to my sorprise my favourite actor Danny Brooke had been replaced by another actor . Pat sent a fax to my house with the different alternatives she had thought of but unfortunately my grandmother was there and she saw the paper so the sorprise was ruined . The other activity that I chose is painting . I am not as good as I want , nevertheless I think I can inprove my skills during this course . I would like to know how the weather is in California during the summer so I can bring with me the appropiate clothes and the last thing I need to know is the amount of money that I have to bring with me . To make this report easier and faster , it was necessary to make a questionarie which was given out in the school . However , 15% thougth that it was not a good idea because it would be boring to see other people enjoying themselves and they mentioned it as not really important . As you can see , my clasemates and almost everybody in the school are happy with the facilities and activities that we have . A few weeks ago , my family and I had a hoilday in London . The hoilday was n't too good ! During the week we descide where we wanted to go . We all agreed to listen to music so then we descide to go to your musical show and listen to " Over the Rainbow " . That evening we did n't want to have our supper before the show . Anyway I thought it would be too early to eat and also because the timetable or canidates you give me have say : " visit our theatre restaurant after the show " . So we did , but unforturnily it was closed and I was so dissapointed about it , not only because we had expected Danny Brook and Tina Truelove to be the actor of starring . We do n't expect much bad to happen on our hoilday , but this was a perfectic show as well , it was the worst show and theatre I have ever been to in my life . sincinerly Ki To help us to live happily , sciencetist can easily perdict the changes on earth , so that we can have time to perpare or defend ourselves from natural diseasters . Wapons are designed to kill and defend in a fight . In the Second World War so many Germans were killed . Also many people died in other regions , Posin chemical compounds , e.g. gases and liquids , are created too . They have been used to kill people . Most of them produce radiration , which can disable a person , mostly harming their brain and their bodies , and it can also cause death . Communication techology , e.g. internet ( networks ) and moible phones . In wars soilors communicate with moible phones though places to place to get or give information about themselves and the enarmys . By using the Internet we can make new pen friends overseas , and creat clubs and sociatys . Now a megsage can travel quicker and it is also worldwide . sending letters takes about a week from Hong Kong to the U.K. , but network , e.g. Modern technology saves us a lot of time and brings us many benifects when we use it in the right way , but some bad way to e.g. send virse to break down network . Unfortunately , Pat was n't very good at keeping secrets and this was the reason why the party was n't as succesful as we thought . We decided to go to his place ( I 've got a copy of the key ) the evening before his birthday while he was at work and decorate the lounch , then turn off the lights and wait for him in silence until he arrived . With reference to our trip to London , on behalf of all of us , the English class in this college , we would like to thank you for your special atention in organising a good programme to learn about the interesting and cultural places in London . We have been very excited about this and coincidentely we have found another option to add to our programme , certainly if you agree with it . We thought that The London Fashion and Leisure Show would be a great opportunity to give us more information about the main transformations nowdays in England concerning fashion , leisure , sports and lifestyle . It was dangerous , but I kew I had to do it . I was at home putting my makeup on before going to a restaurant with my friends and , sudenlly , he rang the bell . He was so tense with a gun in his hands and I could no longer speak . He took me out with him . I had tried to think about stopping him , but he was stronger than me and he had used all his power to scare me and he forced me to buy cocain using my cheques . I am writing to make some complaints about the musical show " Over the Rainbow " , of wich you are the manager . Although it was written in the show 's addvertisement that the main actor was Danny Brook , it , unfortunately , was not him . It was also written in the show 's addvertisement that there would be discounts available on the tickets . Even though the addvertisement said we should visit it after the show , it was closed and no explanations were given . In conclusion , the addvertisement promised this would be a perfect evening out , but it was not , so I would like to ask for my money back . One day , I inocently told Pat that I was dating Philip Smythe , the school 's hunk and most popular boy . Suddenly , an enourmous saddness caught me , because Philip had begged me not to tell anyone , so he would definately break up with me , and I knew I was going to stop talking to Pat , because she had just ruined my happiness and I could n't trust her anymore . One day , while I was studying maths , one of my friends , called Pat , asked me to have a coffe with her . The problem started when I confesed to her that I had fallen in love with Larry , who was my cousin 's boyfriend . Surprizingly there was a completely different actor starring . Unfortunatly the restaurant was closed . He is only looking for the biggest fishes and he has been unsuccesfull for 86 days . Little by little we were growing up and becaming close friends . I relyied on her and our relationship was excellent . It is my only favorite hobby . To reply to your question , it was realy a nice experience . As you know , I like pop music so much and the singer was one of my favorite singers . I would be most greatful if you could let me have some information : - Are there leisure and intertainments facilities close to the camp ? I am really surprised for the information because I won , and I would like to say thank you for everyting . This is why I wrote and sent this letter with the information you need I can only travel in July because it is the only time when I can do it before for my work I do not really care what accommodation I will have . I would prefer to come in July I will be avaliabel for the moment . I would really apreciated it if you could tell the people who work at Camp California I choose the Golf and Photography because I think I am really interested in those subjects . I am not really really good but I have some experience . I think that is everyting I would like to know . I want to apologise to you , because I haven't written to you recently , but I want to tell you what hapend to me last week . I had the opportunity to help at one of the most pop concerts in my city . So imagen , I felt really really good and excited . I do n't have words to describe it but I will try to do it , OK ? What 's more , your letter said about the chance to do two acctivities during the camp . I have even won a competion once . I would like to know if the , , travel costs '' which you had paid include entrance tickets to the museums or any other cultural places , because I would like to do some sightseeing in the U.S.A. Furthermore , if there will be cmy tumple dryer or washing maschine to clean our clothes and if there will be a guide who will be responsible for us and the camp . When discribing the advantages , we should remember that most people like doing shopping . Very often people go to a shop - usually a big departament store and buy things which they do not need . From my point of view it depands on us whether shopping will be enjoyable or not . My name is Manu Roddos and I am writing to complain about some things that happened at the performance of the show Over the Rainbow , wich took place in your stablishment , The Circle Theater , which made me feel very upset . I was very excited to see it yesterday , but as soon as I arrived at the theater the problems began . Yours Sincerelly , Firstly , the great boom in mass comunication wich happened at the beginning of our decade , with the devellopment of telephones , radio stations , television and even satelites , and of course , the Internet , gave ordinary people the chance to take off on a trip all over the world , and this allowed health and education research to increase as well . In addition to that , people will always be affraid of a technological war . In conclusion , from my point of view , people must learn that despite technology being such a new area to explore , we have to use it with a great deal of responsability for us all to survive in the future . And is there anything eles I have to take with me ? Yes , it is true . This is only because nowadays people have more money than ever before , and some women do n't earn money . They have no idea how diffcult it is to earn money . It would be wonderful to buy some books or programms with the signatures of all the stars and artists taking part in the festival . I hope this letter will help you with organying the festival . Every puple has to sit alone . ( I mean that one desk is given to one person . ) 2 . One should have such marks as , , 3 " , , , 4 " , , , 5 " , not , , 2 " , which is eaqual to fail . We do n't have old - traditioned rules or anything like that . First of all , it would be a good thing to say that July would be the best time to travel because it is the hottest mounth in the year , and the weather will be really nice . Despite my lack of expereance in climbing I do want to try this type of sport . The aim of this report is to suggest wich lessons and other activities should be filmed . I have enterwed each student from my English class . Fistly , the English lessons must be filmed as the most interesting lessons at our school because it will give students an interest in studying and improving their noleges . It contributes to the world 's treasure house of literature and arouses an irresistable fascination . We should n't disregard and neglect to film the buildings and the gardens of our beautiful college , especially if we take into consideration the fact that it is in the city of Shakespear . Also , painting is one of my favorite things ! Anyway , I really enjoyed helpying at a pop concert last month so that I 'd like to write about it ! Anyway , by the time we finished everything , thusands of funs came into this concert hall . I 'm writting to you with reference to the letter I have received from you saying I have won your competition . Well , as you ask , I will tell you I would like to travel as soon as July begins , I 'm going to be able only to travel in that month because of my job responsabilities . Regarding the choice of tents or log cabins , I think I will turn to the first one because I have always loved camping close to nature , if possible , in front of a lake or a river , if your campsite has one , so that I will be able to do my favorite and skillful hobby : sailing . I would like to travel only in July , because I have only one month 's holliday this year . It is not too confortable , but that is not a problem for me . I like this kind of holliday . I never had met pop stars before and I was very impresed , but I was too happy to show my shyness . I stayed with him until the concert began and after the show I had the opportunity to stay in his private room with him and the other dansers . So , unfortunately , I must say that last night was one of the worst nights I ever had , and having given the reasons , I expect to be able to count on your sense of responsability , so , I feel that I must ask for my 20 pounds I spent on that terrible night . Also , with today 's machines , factories have significantly increased their production , which brings progress to humanity , but also , with the continous replacement of men by machines , unemployment is increasing too , and today , it worries every single citizen of the world , specially the ones who live in third world countries . It would be a fun experiance ! Women , in perticular , have the annoying habit of always having to touch everything they see . This was the best thing that had ever happend to the Fennall family for yeats . Which was very chooking for her mother . SINCE I HAVE A CHOICE OF ACCOMODATION , I'LL DEFINETELLY GO FOR THE LOG CABIN , BECAUSE I CAN'T BEAR THE HEAT INSIDE A TENT . I WOULD LIKE TO ASK YOU ABOUT THE WEATHER CONDITIONS , SO I CAN DECIDE ON WHAT CLOTHES TO TAKE , AND ABOUT COSTS , SO I CAN MAKE A BUDJET FOR THE HOLIDAY . AFTER THE STAGE WAS BUILT , THE REST OF THE THINGS I HAD TO DO WERE QUITE EASY AND ENJOYABLE ; I COULD STAY EITHER BEHIND OR IN FRONT OF THE STAGE AND GIVE A HAND IF NEEDED . I REALLY ENJOYED IT BECAUSE I LEARNT A LOT OF TECNICAL THINGS I DIDN'T KNOW ; AND WHAT I ALSO ENJOYED WAS THE GOOD PAY ! I 'm writting to you to complain about a play I have seen , called : " Over the rainbow " . It was clear that Pat had to change and show his friends that they could believe in him thrutly . For those next few days , Pat would do his best to be as sympathic as possible . To begin with , every morning Pat said a pleasant " hello " and added to that a big smail . His mother always says : " If you are smailing and are nice to people , poeple will be nice and will smail at you " . I would preffer to travel in July . I have only this time , because my summer holidays are during these days . A cabin reminds me too much of my home and is too confortable . That is n't what I want to have if I stay in a wild area . I was able to ask anybody , and he answered in detail , althoug he had a lot of work . I 'm writing to you followwing our visitting to your theatre last night . And I would like to know if it is posible to have our money back . And if someone elso knew , I would n't be able to go back to heaven unless I killed the person who told my secret . And I would like to go in the first part of this month , the socond part I spend with my familly . While I will be at the Camp I would like sailing , because it is my favorite sport . Yours faitfully In my opininion this book ' The Old Man and the sea ' is the best book which Ernest Hemingway wrote . Thise book is about a man who knows that he will die soon , he knows that he did n't make his dream come tru . So he decidet to go for a last trip in his life . He needs to rest , but he does n't geve up . In the end he makes his drems come tru , he catches a vast Marlin . In thise book Hemingway is trying to tell us , that if we want something , we can get it , it might be deficult and take a long time but we can do it . Sometimes they geve up , befor they get something , I read the advertisement and I thought it was going to be a plesent evening . From the beggining it was all a disappointment . When I went to buy the ticket I tried to get a discount with my student card , but that was not posible . I let this pass and I bought it anyway , thinking that it was posible that this was only a mistake in your advertisement . But the play started fourty - five minutes late , and the star of the show , of whom I 'm a great fan an who was the main reason for why I decided to see the play , had been changed for another actor , who turned out to be really bad . I think you realise why I 'm writting this letter to ask you to give me my money back . All the things that were promised in your advertisement were untrue , and it was definitly NOT the perfect evening out . Specting that you will resolve this misunderstanding . There 's no doubt that modern tecnology has changed our lives , but how ? I think that some of the changes have been very good , like the impruvement in medical science , which now can save millions of people that one hundred years ago were doomed to die or to live miserable lives . It has changed the ways people comunicate . But tecnology has not only changed our lives in a good way , giving us things that can make our lives more confortable , it has also created things that are n't bad , but if they are in the hands of the wrong people they can destroy the world . Weapons and factories are destroing our planet and we need to realise that we have to use tecnology to impruve our lives , while always triying to respect nature . Regarding the accommodation , I would prefer to stay in tents rather than log carbins because I have a lot of experience of putting up my own tents . I like to go window shopping that is good to go arround the shopping centre . Then I can say I definatly do n't feel it is enjoyable . - Accomodation : a log cabin would be nice for me to stay in when I am in California . Before we can give our opinions on this statemant we have to make sure that everyone knows what we are discussing . We do not speak here about luxuary goods . But if you realize how important what you buy is for your health you will go shopping with a far greater consiousness and more joy than before . ' How incredable it is ! I love swimming and also I 've got a scubar diving licence . I used to enjoy floting on the water whenever I was on holiday . Singing is the most favarite hobby for us . I 'd like to know how much monery , and how many clothes we need . Of couse , the shopkeepers are human beings as well . But for their considerations , they 're working in their rutines . I sometimes lose my desire to buy a thing because of their bad behaviers . For example , for our jobs , supecial ceremonies , and so on . Your advertisement also failed to mention the fact that there were no discounts whatsoever and , finally , because of a shortage of staf , your restaurant was not open . I asked myself how I could be so stupied , telling her my secret after all I had been going through to keep it to myself . Now I did n't need to go around worring about it anymore . I decieded to thank Pat , and maybe , if possible , teach her a lession . I pretended to be totaly miserable . Pat did n't know what to do . She apoligised over and over again and I could really see that she was more than devestated . After hugging eatch other we promised never to tell others about our secrets . However , it was deleied and it started at 20.15 . The theatre restaurant was closed after the show , they said funds had runn out . Those are totally unexpectable so I would like to get paid for my ticket cost . I ask you to transfor money into this account . Think about the conputer , the speed of conputer is much faster than before . Nowdays , technology keeps developing and better technology gives us an easier life . In the hopeness that you understand me . Unfortunely , Pat was n't very good at keeping secrets . At first , when he had a girlfriend , they talked to each other franckly . But after they seperated , he told his friends her secrets without thinking . It is like one of his bad habbits . It was a very unpleasent evening . The restaurant should have been oppened when I came out , but it was closed because of the time the show finished . After breakfeast I have to use my car to get to school . Without technology I would get realy bored . I would be very grateful to recieve answers to my questions . Boy , he 's really really handsom ! Secondly , the show was meant to begin at 19.30 pm , actually it began at 20.15 pm and that was without giving any explainations ! Another thing that has changed my daily life is the mobil phone . Sometimes the ring is annoying but , finally , the mobil phone is a great , handy object . About the acommodation , from the two options , I choose to sleep in a tent , because I think that a log cabin is n't as authentic as a tent , at the camp . I would be greatful if you could send me further information about details like how much money or what kind of clothes I 'll have to take with me . You know that I 'm a little bit lazy , but the main reason for not writting to you has been the accummulation of exams during this month . There I was impressed by how a singer can cause such histerism in teenagers . During the two - hour concert we had to attend to thirty - six people who became inconscious after being trapped in the first row by the other people . Answering the second question , I would prefer my accomodation to be in log cabins . And when it finaly started , it was n't Danny Brook who performed . After the show I wanted to drink somthing in your theatre restaurant but when I arrived it was closed because the show started too late ! So I ask you sincearly for my money back becaus it was n't a perfect evening out . I told her that my parents are getting divorsed and that I will move to Chicago with my mother . One day , Pat and I were going home , when she asked me if I would give a party befor I go . I had to tell her that I did n't have the time to organise anything becaus we , my mother and I , had to get our stuff ready to move . But when we got into the hous ther were all my friends ! We had a great evening becaus Pat was n't very good at keeping secrets ! I am writting to give the information you asked me for and also I would like to request some information about the prize . Furthermore I would like to choose to stay in a tent instead of a cabin because I think it could be more exciting and could provide more contact with the enveiroment . He had a puncture and he did n't know how to repeared it . Then I changed the tyre and during this time he was asking me about my hobbies , studies , everything . I am writting to you in order to give you some details you asked me for in your letter . The job was hard , but , from my point of view , it was worthful . The most exhiting thing was when we removed all the stuff the day after the concert , and we went to the Highlands to spend the whole day there . That was fantactic ! If you have never been there , I really recemmend you to go . But we decided to buy a picture , because she had always told us about art galleries with great exitement . Yours sinecerely Despite the fact that going to school by bus was easier than going by bycyle , I had preferred going to school by bycyle to going by bus . When I went to see her play , I realy would love to be an actress . It was my dream . I wish my dady Aspecially in the summer when the tempereture and humidity are very high . From the list of all the activities I have choosen photography and golf . I have choosen golf because I have never played this game . My friend offered me a job as a member of the techical staff at Sting 's concert . We 've built it using ready metal and wodden parts . I was working with a specialist who had to connect all the lights together to one computer and prepare a colorful show . It was a totally new experience for me and a real pleasure working with professionalists . For me - the dance shows were absolutelly wonderful . I prefere them to others . We chose some of them and we were glad that we had our reasonably priced ticket for all the evants because we could change our plans during the evant . Most studenst wear jeans and a sweater . Next year , you should calulate or examine how many people will come before you choose a hall , which I feel very good was plays and films . And the offer of a " weedend ticket " was an excellent idea . Because the price was cheaper than buying it sperate and more convience . Yours Sinicerely , Finally , food shops should be added to this festival next year because only plays and films were not atrractive enought to get audiences . Yours sencirely , However , I can go out wheneve I want , even at midnight . Secoundly , boys are not allowed to have long hair . I feel that they would be fabulos places with a western design . Another disadvatage of the festival 's programme was the lack of plays and films which are the best to display a modern country 's culture , I think . In conclusuon , I would like to say that in spite of the success of the festival some improvements still can be made . Fortunatelly , there are many ways to earn some money nowadays . In addition to baby - sitting , you may also give some lessons to small children such as ( tl ) teaching them to read or write or just basic rules and words of a foreign language , Eglish , for example . But if you do n't like children and are not easy - going enough to work as a waiter you may choose the more pieceful job of a typist at home . So , you can help them and earn quiete enough . Moreover , men prefer to do sports , because shopping wastes a lot of time , which is controry to the tastes of women , because if they have any free time , they will go shopping . Finally , I would be interested in meeting artists from everywhere in the world not only Europeen artists . In conclusion , I had an unforgetable time . The restaurant was closed because there was n't any electricity . You should close the theatre untill the restaurant can be used . I was totaly unsatisfied with the theatre and I would like to have my money back if that 's possible . I 'm quite sure that people all around the world will be wearing very different clothes in the future because people , especialy women , who like to be very elegant and beautiful , will create and invent all kinds of clothes to anybody and that 's it . You ca n't be carefull because you do n't know what time it will happen . But you can be carefull when you speak with he or she who is stealing your things . I am writing this as a reply to your request to provide you with some information about my preferencies . I am not so keen about the accomotation but would rather stay in tents than cabins . We live near the seashore and swimming is the sports activitie I am really good at . Somitimes I feel very sorry for her . Lots of families plan a day out to go to a shopping center , and it is a normal routine for them - to spend all day just shopping . I would like the trip to start in July if possible . Because this is my Hoilday start at the Camp California , I would like my accommodation in a tent , because I work in the Army and on the camp I usually stay in a tent at night , so I will feel more comfortable . Regarding the activities I would like to choose Swimming and climbing for my activities at the camp ; I usually do these two activities on the Army Camp . I know how to climb up on Rachiat outside and help other people to climp up . To make a daily life video in school , we should concentrat on the things we do most in a school . The thing we do most in a school is have lessons . It will be a very useful part of this video and should be the main subject . At the end of the video , we should find one or two studen sit together and ask them a few questions about how they feel about studying at the school ? This is the suggestion to making a daily life video in school . It would be greatful . And we could n't wear any colorful clothes and socks . I 'm pursuading my mum , perhaps . I am writing in response to your advertisment in today 's newspaper . In addition to this , I was wondering if you could organize the same festival in the sommer . Unfortuneatly , Daniela fainted . This story happend a long time ago . Now Pat realized what was going on and could undstand why her boyfriend got so nervous about the secret . Nevertheless , I lost my concerntration on my studies and I spent the money on entertainment . I will never ever help anybody to organice a pop concert again . But after this serville work I met Eminem . As regards painting , I know a lot about it since my grandmother taugh me when I was five years old . She also told me that she has some conections with the people in charge of the lights at the concert . Since I am going to travel I would like to know how much money it would be adviseable to take and what kind of clothing I should take . Or approximately how much money would be enough to buy surveniers because this will be the first time for me visiting Carifolnia . Finaly , I must choose travelling there in July because I am not allowed to take holidays in other months due to my work . However , things which you can get with money do not necessarily fill your unsatisfaction or even as you buy something more and more , your emptiness might be greater . And shopping is also a difficult hobby to go along with your friends or your pertners . On the whole , shopping can be harmful rather than enjoyable because you migh be extravacant , lose your friends and have what you do n't need . We think we could change the shooping to go to the show . To sum up , there is no perfect job , and being famous involves a lof of money , but also a lot of jouralists following your private life . All the group would enjoy going to the show , because it is a great oportunity to see an exhibition of the latest fashions . For example , we ca n't go to the toliet during lessons . We have to go there in the break . It 's too strickt . I do n't like it . My name is Sandre Atos , I am writting to you because last weekend I went to the theatre you manage , to see what was called " London 's newest and best musical show " . That 's why I am writting to ask for some money back ; I believe I have this right . Unfortunatly my parents did not realize how TV was creating a role among us . On the other hand , due to scientific developments , I am getting better , recovering from ahsma . I had a very dissappointing evining last Saturday . I had everythig planned ; my family and I were coming to whatch your show and then have a decent meal at your theatre restaurant but it was disasterous . Then everything was going well untill the show did n't start ! That was a dissapointment for my whole family . In fact all the audience were very dissappointed . Anyway the show was nowhere near as good as it was meant to be and it was definately worse than I had expected it to be . I did n't enjoy it at all so I was relying on the food to fill me up and relieve some of my stress . So as soon as the show was over we walked out and followed all the signs for about 5 minutes , desparately searching for your restaurant , our stomachs rumbling for food . What kind of an organasation do you call this , sir / madam ? You do n't understand how dissappointed and angry I was that night . In fact he was one of the principal busybodies of his neighborhood and his school so not a lot of people in his school liked him . Some were just friendship groups but others took it seriously , maby just a bit too seriously . They gave themselves names and acted like gangs rather than just groups of friends , and started picking on younger people , or mempers of other gangs , trying to start fights with them . This whent on and on , got more and more serious , but it was so secret that the teachers did n't notice . Everyone in the year was anoyed , but not with Pat , oh , no ! exept a few phcyco groups . Some of the more serious ones decided to raid this party , just for the fun and meanness of it . Everyone was enjoying themselves exept Pat , who had heard about the raid . The time had come . The who groups had comdined their forces and were ready to strike . Lots of People wher injured and even more were suspended the next day at school , when the Headmaster found out what had happened . Pat recieved no punishment at all and he was n't blamed for anything by his teachers or friends . But he felt awfull because he knew that all this had happened because of him . Do you like do - it - yourself and is your house full of marvellous but unuseful things ? You could sell them to a specialised shop and finally tidy up your room ! I am writing in response to the International Arsts Festival , which took place on 21 - 22 November . I would like to inform you that it was a great idea and a valuable activitie as a social event . However , it was a dissapointment when I realised that not many countries were attending the event . I would have liked to have seen more countries from all around the world , for instance , the Far East , Indonesia etc . On the other hand , I enjoyed being one of the people seeing the plays films , the dance shows which were brillantly performed and the art exbitions . Finally , I preciate your organisation and look forward to hearing about the next International Arts Festival . What a pitty ! Privat schools have a more relaxed atmosphere than the state schools . Of course smoking is n't allowed in any part of the schol . Apart from that I would n't mind at all whether I stay in tents or log cabins but if I have to choose between these two I 'd prefer to stay in tents because they give me a nice feeling of relaxation . It is very unusal to stay in log cabins while you are camping . Photography is a very interesting activitie , and is not too hard to do either . Worst of all , at the end of the Musical , I went to your Theatre Restaurant , in order to have dinner , because I had leaft home without eating and so I was hungry at that time . First of all , modern technology has changed my daily life in the last five years more quickly than in anchient times , or even than a decade ago . Nowadays , I ca n't go one day without consulting computer communications via e - mail or the Internet . I exchange corespondecies with all my family via the Internet , with my mother and 2 brothers who live in Curitilra City and also with a brother who lives in Italy and another who is living in New Zealand . It 's written in the regulament that we ca n't leave the school during the breaks ; we ca n't smoke near the classrooms ; we have to justify our absences or lateness and even if you 're over eighteen your parents have to justify you with the teacher . Regarding accomodation I would prefer sleeping in a tent because I enjoy the closeness to nature while camping a lot . I sort of felt like I had done my part to make the concert a sucess . The show is going to be on Tuesday the 14 of March from 10.00 to 19.00 and we fained it very interesting , because we will have the opportunity to see mews , firstly about the latest fashions , secondly concerning leisure and sports wear and finally about make - up and hairstyles . Thank you very mutch ! Most of the time they have journalists following them everywhere , looking for a great story or interesting pictures to put on the front page of the newspaper , and I do n't think this is very nice , but it is the price that famous people have to pay , just becouse they are popular . Anyway , this is not always necessarily a problem , but it can be a big thing for the famous person , becouse it gets people talking about him and increases his popularity . In conclusion , I can say that this is not the biggest problem that the world has and -- it is not my problem becouse I am not famous ! Concidently the show is in London and on Tuesday March 14 , which is during the period we are in London for the three - day programme . However , journalists should not only think about commercial value , because morality and priciples are also concerned . I remember in August 1997 Princess Diana dying in the car crash was one of the most disarster examples . Although we can not deny it is our nature - we are curious - we can improve our sence of morality and try to think about the importance of privacy for them . Basle , 12th Decembre 2000 In your letter , you asked me wheter the book I 've read would be a suitable present for your cousin 's fifteenth birthday . You wrote that your cousin is quite intered in magic , detectives and sport , did n't you ? I think this is the best choice for him ! As you know , we are in England to learn your language and also to learn about your lifestyle , and we thought this show would be a good opportunity for us to discorve this aspect of your country ! Thank you for your letter , as usual , it 's a pleisure to receive news from you . It 's a fantastique book , which I recommend to everybody keen on love stories . It 's a perfect combinaison of passion and life 's difficulties . I recone that it 's not an easy read , but as you described your cousin , I think she really will enjoy it , she 's so good at litteracy that it wo n't be a problem for her . I really think you should choose this one for her , it does go with her personnality . It 'll be a good point for her general education . Wuthering Heights is a classic , which everybody knows about , even if they haven't read it , they at liest know the story . How has morden technology changed my life ? A computer is extrrmely helpful with writing reports and essays . But also I am not able to imagine my life without this nice way of reciving news with help of it . I would be very greatful if you could let us go to the show . Furthermore , addmission is free for students . Unfortunately , our programm is fixed but I think we could change part of the programme . Firstly , most people can remember the sad story of " Princess Diana " . She died in Paris a few years ago while she was escaping from lots of journalists called " Paparach " . However , secondly , famous people are not " ailen " so they might do something , for example , ashame things in a public space , or argue with a partner or family , even put on a swimming costume like us . So they can be just ordinaly people like us . Overall , people should think about what it would be like if we were famous people ... and then we can find the answer that all people , including famous people , need a private life and would like to have an ordinaly life . They were eagar to have a child , but they had never been able to . About when I would like to travel , I think that my answer will be easy for you , because I have two months off , those are July and August , so my trip should be in between . Regarding my accomodation I would like to stay in a tent because I remember my holidays in the south of Peru , a long time ago ; it was wonderful . If it is possible for you to help me clear up some doubts I have , I 'll be really greatful . Yours faitfull . First of all , I 'll tell you that on the day of the concert I woke up at 6:30 a.m. , very early for me . You know me , I 'm lazzy . The work began around 8:30 . It was very hard but then the band came to rehearse . From that moment I enjoyed working until the concert had finished . The atmosphere was wonderful , the musicians were very kind to everyone who was working because they understood that putting on a concert is a job to be done by a team . Finally , we would like to get your permition to go . Maybe if it is possible that you can change your programme , we can go to your college any time after Tuesday . This story happed two years ago . Not only was I a member of the swimming team in our school , but also I had been tought by my father since I was five years old . I started thinking about it . After all , either had I neve done this task before , or trained . It was really a reasonably priced weekend for me , but you should also introduce new activities like competitions in singing songs or drawing a portrate next year . Secondly , the show should have started at 19:30 p.m. , and it began fourty - five minutes late . Moreover , when I went to buy the tickets no discounts were avaliable . Furthermore , I wanted to have a coffe after the show , but when I tried to get to the theatre restaurant , it was closed . Ballons and coloured lights were put in all the trees . I carried a lot of chairs and looked after the que or people who lost their way . As we are going to be in London on this date , we think it could be a great oppurtunity for us to go there because we are very interested in the latest fashions , make up , etc . and it is free for students . Because of this , we would kindy ask you to change the programme so that we could go to this particular event . A especiall invitation It allowed people to enjoy their weekend , relax , and also it brought a foreign culture to them , broadening their kownlegth . In addition to this , one weekend ticket for all the events was only £ 10 . This was excellent . It meant people only spent pocket - money , and then they could watch all the events at the weeked . For them it is a really economical way to spend their weekend . Moreover , the stars and artists were from only six countries . In my opinion , if you can invite more stars and artists from more countries , it will make the festival more exciting , more intesting , and in my opinion , some of the concert halls were too small . The people in there could n't even go to the loo , because it was too crowded . These are only my inmature views . If it is considerable for you , I will be very pleased . Thank you very much . It was very uncamfortable for me . Today I recived your letter . It is the most wonderful news I have heard in a long time . I am so pleased that I won this prize that I can not explain how greateful I am . Because of this situation I will be very busy in the first week of July , and I would apreciate it if you could give me the option to begin my " Camp California " experience on July 10th . About the Accomodation I would prefer to sleep in a tent , because I have never been in one , and it is a lot more fun than log cabins . Because I have seen my father playing golf since I was a child I am very keen on this sport , and also I love photography because I have got a great Camara . When I was a child I never liked to go shopping because my Mum spent so much time in the shops that I remember that going shopping with her was a nigthmare . It is ameaising how people change over the years For example now shopping for me is one of the most entertaining things , and every week I have to buy something . But these days shopping is not always enjoyable , because if you decide to buy a very expensive designer and you pay the full price , at the end of the season it is half price . I find it very anfair for people who pay a lot of money for their clothes . Anyway , shopping is allways satisfation for rich people , because they can afford it and they do n't mind paying the full price for their clothes . Modern technology ca n't not transforme our daily life . The inventions of the airplane , of the train and of the car , have reduced the distances of the world , so we can go to the other side of the world in half a day . Everything has changed : style , colour , qual . Fashion . We saw almost all kinds of skirts , trousers , coats , skirts and even hats - which untill now have been the main point of many fashion creatures . Grey and black - like the seasons , like people 's charakters , like all the night and dark sourranding us . In the advertisement , it said that Danny Brook was starring , but in place of him there was a different actor and he was really dissapointing . As you can understand , it was a dreadful time and I want my money back as a consolation for the dissapointment I had . I support this idea which is convinient both for the public and the organisators . It is awfull ! However , we promised our perents to do some cleaning every week . What is more , there are many new ways to produce medicines and modern hospital equipement . The second is nuclear weapons and the many wars in which modern equipement is used . To sum up , as far as I am concidered , modern technology has changed my life completely . Last week , during my holiday in London , I had the opportunity to see the show " Over the Rainbow " at the Circle Theathre . The day of the show , we got to the theather at 19:30 . Third , the theatre restaurant was closed because the cheff did not show up . You can feel the fresh air and listen to the animals . This will be a great oportunety ! I am not good at either activity , but it will be a pleasure to try them , espacially surfing . I would like to feel the wind in my hair , and enjoy how quickly the board goes over the sea . I mean , it is too crowdy , you have to wait such a long time before you can pay , and most of the things are too expensive ! I was looking forward to a great evening , but much to my surprise , that was not exactly the case : there were no discounts available , such as were mentionned in the advertisement ; the show started 45 minutes late ; I was then very disappointed to see that Danny Brook had been replaced by someone else . Yours faithfuly , I will take the exemple of the use of the Internet . I am writting to you because yesterday I went to the musical " Over the Rainbow " and I had a bad evening . First of all , I would like to travel in July because this is the beggining of my holidays , and I would not like to miss some of my school classes . Besides , I would preffer to stay in a tent , because I got used to being in tents since I spend my holidays every summer with my friends in the hills . In adittion , I would prefer playing tennis . I also like surfing . I think it is a dangerous sport , but I know how to do it , because of the fact that last year a proffessional surfer tought me . I'M WRITING TO YOU TO COMPLAIN ABOUT THE MUSICAL SHOW " OVER THE RAINBOW " WICH WAS PERFORMED LAST WEEK . YOURS SINCEARLY Because I am a university student , I have got classes until the midle of June and I have to attend a ' Research and Development Conference ' at the end of June . Otherwise I have to work at a business department office as an assistant from the beginning of Aguest . I always want to buy T - shirts , Jeans , Skirts , cosmetics , haribands , accessories , rings , earings , bracelets , shoes , hats , bags , fancy stationery , interior stuff and CDs . Insead of buying something , I buy some fresh food and Ice - cream . I can try all the shoes , clothes , hats , accessories and jakect on . Actually , I could have a chance to ask her about music , her favorite artist and her hobby . Likewise , there were no discounts avalaible . Because of all these inconvenients , I ask you for a total refund . So when Caroline , his girlfriend , told him something personal and very important , because she trusted in him , immediatly he went to see one of his friends to tell him the secret . So immediatly she went to Pat , angry , in order to argue with him , saying that she was annoyed by the way he behaved , and that it was n't the first time that he was n't capable of keeping a secret . But after I climbed two steps more , my right foot slipped . I nearly fell , but luckly my hand caught a rock . It was dangerous , but I did n't have any choice . Finally I did it . I think it was definitely not the perfect evening garenteed in your advertisement . I was terribly ennoyed ! I am always joinable on my mobile phone , which is also boring sometimes ! I often go on the Internet to find information when studying a particular subject more accutely ( university technology sites ) . At work my particular job involves two standard PCs with specifical software plus one workstation with the Stanford University Network ( SUN ) operating system and a special computer that my firm is now developing . I hope this matter will recieve your prompt attention . For example , if you were hurt seriously like cutting your leg off , the new medical technology could rebuilit part of your body . Also we should be careful as we could be watched by security carmera which have been combined with mordern technology . In conculsion , I conciderly said we has been charged by morder technology in two ways . I am not very good at painting , but I choose it because it is a good oportunity to do it . I do n't want to dissapoint you , but I am beginner ! In this book , Heathcliff as a child was n't a bad character , but the situations he lived through with the Earnshaw family , where he grew up , made him rude , agresive and noisy . Before Heathcliff died he riched what he wanted . In your letter you ask me to choose beetween tents or log cabins . Well I prefer to stay in a log cabin . It is more confortable and I am afraid of wild animals . The other activity I like very muche is swimming . First we had to prapare the stands with food and drink and buy something which had been forgotten . He is very beatiful ! Fortunatly we had no problem . I was very proude of myself and the work I had done . Modern technology has completly changed my daily life , which has become more comfortable , and easier . Thank you for the exellent programme you have organised for our class . We would like to inform you that we are all extremly interested in this show and that it could be a great opportunity for us because entrance is free for studends . We would like to ask if we could go to this show on the 15th March instide of doing the visit to the Science Museum . Who has never dreamed of being a famous singer , sportman , actor or a politician ? Firstly , this is because there are a lot of scandale magazine readers . What a catestrophee ! A desaster ! Also , I used to assist my brother , who is a profecional photographer . When I read the advertisment for the show I was really excited but after the show I was not very happy because of the following problems . The advertisment says that Danny Brook and Tina Truelove would play but in this show there were totally different actors and that was really disappointing because I was looking forward to them . The advertisment also says that there are discounts available but this is not true , there were none . Why do you give this information in an advertisment ? I have only one question about the baby 's accomodation . So , you wo n't believe me , but I enjoed helping at an Oasis concert . Me and my friend were there to hear the sound - check , and when I understood what was happing on the stage , I decided to help them . Of course you know I 'm a singer , so I came back quigky to my home , I picked up my microphone , and I handed it to the singer . Can you immagine ? I will consider taking this complaint to court if I do not receive an acceptable explaination from the theatre . On the other hand , people in the future will propably wear clothes to protect themselves from the polluted air and water , the harmful ultra - violet rays from the sun and all the dangerous and poisonous gases or chemicals which are the product of a developed and full - grown country . Therefore , I will suggest that we all nov to keep the enviroment clean and healthy for the next generation . When I first heard about Over the Rainbow I was very excited about the idea of seeing it , plus when I heard about the extras that the circle theatre was offering , it became the best oportunity I ever had to attend a musical of that type , but instead of being the best evening I ever had , it was a total disaster and that 's the reason why I am writting to you . First , the actors that the Circle theatre publis on their tickets for Over the Rainbow were not there , which was very disappointing because the actors starring in the musical were one of its major attractions . Another point that I want to complain about is the time that the musical was supposed to start ( 19:30 ) but it started at 20:15 , so there was major unsatisfaction with that , but the last and worst thing was that your theatre restaurant was closed because the British health institute considered your food unhealthy , and I am not taking into consideration many other points like unsatisfactory service , and uncomfortable seats . Science and Technology is a theme very much discussed nowdays , most of the comunity of our city , and of the world , where technology has arrived , confirms that it has in some way improved their way of life . But not everything about technology and computers is good , because many people , and me in a control way , have become computers ' and thechnologic 's slaves , and we can not do anything without a machine , and I am not saying that it 's wrong or bad , and I accept that they make our daily tasks easier , but we have to mantain our independence as humans . First of all , there are quite a lot of advantages to shopping , which are that it can be the solvation to our stress and boredom . Also shopping makes people happier by costing a lot of money and it even influences the economic situation more flexably . Also there are plenty of dangers since lots of people have their wallet stollen because it is a public place and there are too many people . In addition , shop owners often cheat their customers by increasing the cost secreatly . I 'm realy pleased I won your competition ! I 'll give you the nessesserly information about me . The most suitable time for me is Jule because in August I intend to go to the countryside , where I have a small farm . You ofer me a lot of activities . It was absolutlly great ! I gave information about correct ways to other places like tooletes and medical points . I looked very carefully at the organisation of the event , you know I 'm interestsing in it . I was so suprise to hear from you . I was really greatful when I recieved your letter which informed me that I have won first prize in your competition . Personily I prefer to stay in log cabins because they are much more comfortable than tents . Unfortunetley I am not good at either of them . I really hate it , because we 're not allowed to wear casual and fashonable clothes , colourful shoes or colourful socks . I am very excited and looking forward to the new experiance I am going to have . I would prefer to stay in tents because I love the atmosephere of camping , but I would n't mind staying in log cabins . It is based on information made availble by students from each class at school . It seemed to be the most interesting lesson , because students always make some mistakes while they are practising with thier partner , in spite of having been told by the teacher ten times . Spending time together out of the class is a nice experiance . Firstly , I should say that I would like to travel in July because that is the month wich I could most likely have off from work to go on holiday . That is because , I do not want to seem fuzy , but I like to have some luxuries when I am going on holiday and I think slepping on the floor without electricity may annoy me . Conversely , painting is an activity wich I have never tryied before , so I have not any skill in drawing but I would like to start doing that now when I have the chance . On the other hand , I would like to know some imformation wich could be useful on my holiday like : what type of clothes would be more suitable for me in the Camp ? I am writting to tell you about my experience at the pop concert last month , where I was helping my friend Nick , who was the bouncer at the venue . My job was to accomodate to the people of the main sit of the theathre . So , I hope to see you soon to show you all my phothos . I think it was very clever of me to record that moment wich I will never ever forget , and that was the thing that I liked most about that experience . I 'm writting to you to make a complaint about your musical show : " Over the Rainbow " ... Last week , I , my husband and our two children went to your theatre to have a good time , but we were so disappointed . Moreover , there were n't any discounts available like writting in your advertisement . I will always say thank you very much to the inventor who has invented the maschines wich do the washing and the washing - up , before this , women spent a long time doing these tasks . I am writing to give you futher information about me which you need for Camp California . In conclusion shopping is enjoyable but not when it is too buzy . 1 . Grammer , which is the basis of learning English . Speaking : it makes you more confident when you talk with other peoper . It lets you get more pratices . Writing . This class techer you how to organise what you want to write . It is important to pratise your English after lessons . If you have a problem studing , try asking the teachers about which is the best way to study . Yours sincerly I am writing in reply to your letter in wich you told me I won the first prize . So I want you to send me some money back for that unpleasent night . The headmaster wanted to tell the police what we had done so we decided to imprison him in a little house we had twenty kilometers away from the village until we could change his mind . We took some photos of him naked and told him not to tell anybody about this because if he does we will hang the photos all arround the village . In the following edition the headline was : " Why does a teenager sleep with a toy called Max ? " Everybody laughted at her . I would like to travel only in July because I will have some hollydays at that time . 3 When you are ready to shopp , sometimes you know beforehand what is your priority , because probaly you need one thing rather than another . But the best thing that we do , when we go shopp is spend time having lunch at a snack bar , watching movies and playing computer games . Last month , I worked as a roadie at a Rolling Stones pop concert . I was responsable for the sound . Some people when they are tired relax by spleeping , reading a book or watching television , but not me . There are always , at the end of the afternoon , some well - dressed women coming from their offices and they just spend one hour in the shop whithout buying anything . However , it is true that shopping is not always enjoyable , for example before Christmas or during some special salles . Secontly , the show began fourty - five minutes late and nobody told me what had happened . I preferred riding a motorbike with the people who studyied with me in the Institute . You have a chance to meet people and now you have an opportunaty to select good friends . I like Danny Brook as an actor and when I read that he would be starring , I booked the ticket imagetly . I belong to the generation who have grown up with a lot of new technolgy . For example , TV , telephone , micrown etc . I tought I would never need a mobile phone , but my mum and dad gave me one for Christmas last year and now I ca n't live without it ! But the invention that I 'm most thankful for is the computor and the Internet ! So , I start every day by swiching on my mobile phone , to see if there are any more SMS messages before I go to the library to check my e - mail and that 's just the beginning of the day ... Second , I would rather stay in a log cabin , because I tend to get very nervous in small closed places , so a tent would be unapropriate for me . I haven't played golf for a long time , so it will be pleasent to do so . Yours sincerately , The fans started shouting and wistling for the show to begin , while I just stood there trying to see what had happened . When we saw your advertisment for the musical show , over the rainbow , we immediatly decided that this would be a perfect evening out . Thirdly , in your advertisment it said that discounts would be available , but they were not . I am therefore asking for compensation for our disappointing evening and hope we can reach a sollution as soon as possible . I really like Pat , she 's funny , has a good sence of humor and like me she loves to discuss everything . I have recived your exciting letter , informing me that I have won two weeks at Camp California in the USA . I much prefer sleeping in tents . It seems more sociable and realy sounds like holydays . So one week befor the concert I went to " L'Arena " to meet the other worker and receive the instructions . I 've had the hounour of helping their sound engeineer and branching the cables for microphones , ggitares etc . We realy started to work like ants the morning befor the show . It was exciting looking at all three men working together and building a stage , and it was interresting to help the sound engineer to check the sound and configure his computers to get the best sound possible . About two hours befor the beginning of the show , we met the band and recieved tickets to go backstage . That was wonderful , maybe better than the concert itself ! That 's a great experienc ! Apart from this , photography is one of my favorite hobbies and I usually spend nearly all my spare time doing it and of course I have some diplomas as well . I would like to request some information about accommodation and if you could specifie what this trip includes , since I need to know how much money I have to take . I feel that this was a good oportunity for me , not only for my professional but also for my personal life . According to my job , I had to help the teams with the outlights and , of course , it was my first proffesional experience : in the end I felt like one of them , because they were so kind to me , and I could help a lot and I learnt a lot with this project . I prefer that kind of accomodation because I can have a kitchen or even a bathroom there , but I ca n't have it in a tent . These are my favorite because they have a lot to do with water , but I like them more than surfing . I agree with this statement especially when we talk about small shops in the center of a big town . These days people prefere shopping at supermarkets rather than at shops or even shopping centres , because shopping at a shop is less enjoyable and you spend the same amount of money . There were 963 people at the " Armaggedon " that night ! You must show a great sence of responsibility . I 'm sure you are jalous now . Now I am studying and I 'll continue my studies untill the end of June . I think it 's a very usefull and helpful thing for my health , especially when I do it with pleasure . The second of my favorit sports is tennis . I 've played tennis for ten years . I 'm a profesional and I have to be good at it , in any time . The most enjoable thing was to dress people . But when we saw our show and heard how loudly the audience claped them we were proud and understood that we spent a good time . You should try it and see . I would like to stay in a tent because I used to go camping at weekends but if there 's any problem I could be very confortable in a log cabin too . I have never tried either of them before and as a result I ca n't be good at them but I 've always wanted to sail because I love the sea and now I have the opportunitie . If you do n't mind I would like to know what kind of clothes are apropriate for the camp and for the Californian weather . First of all , we usually go to the shops at the same time as the rest of the world and that 's a little bit complicated because the shops are full and it 's impossible to try acurately . I would be greatful if you could send me the full details . In the following paragraps I will discuss the advantages and disadvantages of shopping . In a suppermarket , shop or department store they have many things . It is very convenien . Sometimes , there are so many people and they are not friendly at all or you are in a hurry while you are in a long queu . Most people enjoy shopping because it is more convenien today but if you found a busy place for shopping or it was not as good as you expected . Dear Sir or Madam , With reference to your advertisment regarding the musical show " Over the rainbow " I am writing to you with the intention of giving you an impression of our experiences attending the above - mentioned show . We were disappointed to realize that not Danny Brook but a different actor played one of the main characters . According to your advertisment the play should have started at 19:30 . What made the situation worse is that no explanation for the delay was given ; not even an apologation . A story of an old seaman leaving his town to proove that he is still able to catch the biggest fish ever caught . Last week I was on holiday in London and I was very dissappointed when I visited your theatre . First of all , the show was supposed to start at 19.30 , but it was delayed untill 20.15 , and when the show finally began we were supriced to see that Danny Brook , who was the star of the show , was not playing and someone else had replaced him and he was really disappointing . Anna told her again : " Pat do n't tell anyone please , especially my brother , everything would be ruined then " . And Pat answered : " Do n't wory I wo n't tell anyone " . The big secret was that Anna was prearing a suprice party for her brother John and she did n't want anyone to know about it . It will be a pleasure to give you all the information wich you need . As far as I know accomodation at Camp California is in tents or log cabins . It 's more convinient for me . I am a good diffender . I 'd like to know what temperature it will be in July in California and your advice about how much money I will need to have an unforgetable hollydays ! If we decide to buy somthing special and we have enough money for it we have to go and buy it . During a prior holiday in London I came across an encouraging advertisment for the show and decided to see it . Unfortunately , I was very dissappointed to find out that there were no discounts available ! In addition , I was very annoyed by the fact that the event had started at 20:15 - not 19:30 as stated in the advertisment . I 've always enjoyed danger and this time getting the password was , indeed , a tough coockie . Especially now , when ' big - mouth ' Pat has spread the news to litterally everyone . I would n't be surprised if suddenly something bad happened to me . Furthermore , for the activities I want to select Tennis and Basketball because I have been playing tennis since I was young and basketball because I played for the team in my college as the capitan . Anyway , this was my experience working at the concert . If you have an oportunity to help at any concert you should help because you have a lot of fun as well , OK . I am writing to you , in reply to the letter I have recently recived , to inform you about some details that I am concerned about . In your letter you presented the possibility of choosing two activities and I would like to let you know that I would be pleased if I could join in with basketball and climbing , as I am very good at both of them because I played basketball in my secondary scholl as captain of the team and due to my long training sessions lifting weights . There is , as well , the struggle you have to endure when you find yourself in the crowds , crambled in the small shops during the only day - off you have to buy somthing you like . All this can easily lead to a nervous breakdown , particularly when you realise that your money has been stolen either during your difficult way through the crowds or while you were qeuing to pay . I 'm the winner of the first prize in your competion and I 'm writing to you to give you some information which was requested by you . And it 's creating a lot of adict people , called " shopalcoholics " . I am writting to you because I had a very disappointing evening at the Circle Theatre . He told me that it was nessary to do something about it . As Pat was lossing his patience , he decided to talk to him . I can say that I was very nervious and anxious about what was going to happen . I am writting this letter to informe you about the decisions I have made regarding your questions . When I was a child I was affraid of all these little insects that live in the ground and this fear still remains now . I also think that the log cabin will be much more confortable than the tent . asketball and swimming are the two activities I have chosen . Finaly I would like to ask you for some further information about the clothes and the money we will need . I was only responsable for the property of the back stages . I was shocked and terrified the firt time I saw them , but the truth is that they are men like us . They have a very simple life and behavior when they are n't on the stage . Definetely , it was not my perfect evening at all and under these circumstances I really believe you should give me my money back . I recived your letter about the two weeks I won at camp California in the U.S.A. I would like to travel in July because I will have holidays in that mounth . Yours sincerily Also , we will take the drinks from our canteen and there will be a group of mucisians for our entertainment . I was surpised because I did not know what he wanted . When I went he wanted to tell me that from the next month I would be his personal secratary and my salary would be twice what it was previously . Unfortunatly , the musical show was n't much like that the one the advert had described , and that is why I want to ask you for some money back . Now I have a new computer , which is very easy to use , and confortable for my fingers and also faster . And he can ansewer me very quickly . I think it is now the futur of big companies to work with the Internet . I am writting to inform you of some problems we had . We had to wait over 40 minitues It seemed to sink into the sea , but fourtunately , the storm soon went away . Finally when it started we noticed to our suprisement that it was not the right actor on stage . Afterwards we wanted to go for a pleasent dinner . Anyway , we defenately know that they 're going to change . In the paper it was writting that the principal actor is " Danny Brook " but it was n't him , it was a different actor whom we had never seen , or heard . Unfortunately , Pat was n't very good at keeping secrets , this sentance is very popular in our school . I helped to guide foreginers who would like to participate in that . Thank you for your letter . I was so happy to receave such good news that I could n't believe it . Regarding the accomodation at Camp California , I prefer to rent a tent , which is going to be more fun , I think , but are the tents singles ? Is there only one teatcher for each sport , and how many are in each group ? It 's the place where you can meet your friends , where you can talk freely , and there are no teatchers . It could be a good contrast to the seriousness of the lessons . Finally we should film the lunch , which is also a moment for the students , and for the teachers , to relax . We must n't forget to film the staff room because if a school is made of students , it 's also made of teatchers . I would like to thank you for your letter you recently sent me concerning the competiton for two weeks at Camp California in the U.S.A. First I want to thank you for all the congratulations , and I 'll try to answer all your questions about , for instance , travel and accomodation . I have to tell you that it is only possible for me to go on holiday in July because my father is very ill and it is only possible for my sister to take care of him in July ( because her small children are in summer school at that time . I was so happy and suprised that first I could not really believe it . Secondly , regarding the accomodation , I would say I prefer living in a tent rather than in a log cabin because I used to sleep in a tent when I was staying in a local scout camp in my country . Thirdly , I have choosen Sailing and Photography from the list you gave me because both of them are my favorite hobbies and I have been enjoying Sailing and Photography for several years so I am quite good at both of them . Finally , I would like to ask you whether I have to prepare any speacial clothes for camping or will the camp provide them for me . A group of girls can stay in a shopping center forever . Thank you for your letter and I am very pleased that I won the first prize in your compition . In addition to all this , I would appriciate it if you could let me have more details about clothes and how much I shall be paid for the trip . Another reason is that it will be more useful for forigen students who want to speak English . The number of forigen students has recently been increasing . To sum up , it is recommened that speaking classes and school trips should be filmed . First of all I would like to thank you for giving me the oportunity to travel . You asked me some questions about the day that suits me the best to depart , the accomodation I would like to have and so on . Travelling in July , I have to say , would be perfect for me because my birthday is on the 24th of that month and I wish to spend my birtday in the best way possible , so that means there . I also would prefer to sleep in tents , which are more comfortable , and , because I have been doing lots of camping , I am quite used to this kind of accomodation . The activities I have choosen both represent a pation for me . We are writting to you to complain about the musical show " Over the Rainbow " , which we saw last week in your Theatre . The advertisement said that it starts at 19.30 , but it actually started at 20:15 due to a probleme with the sound . We were also surprised to discover that the student discounts were n't available for us , because they did n't accept our student indentity cards from Switzerland . What is the effect it has on your environement ? The major probleme for the industrial cities is to deal with the bad effects of polution on the environement . A lot of money is involved in research to stop the increase in levels of polution . To sum up , all the improvements come at a price : the condition of the environement . When it was time to take the final exam , she became ill and she could n't do it so the teachers decided to allow her to pass the course because she had a lot of good marks , but on the other hand the principal desagreeded and did n't give permision to pass her . She had to repeat that course and all her friends passed and as is usuall the girls from the last course became popular . Pat , to win her new classemates ' friendship , told everything that she knew about her friends and , because of what Pat said , her friends ended their friendship with Pat because their popularity was damaged . And it is even more difficul to predict what clothes in the future will look like . I saw the performance and it was not as it was described in the advertisent I read in the local newspaper . Then , I was planning to buy three £ 20 tickets because it was mentioned in the advertisement that there were dicounts available but that was not true , so I could just buy two tickets and my son could not see the show . Finally , I was thinking of having dinner in the threatre restaurant after the show but it was closed due to some problems with the employees . What was suposed to be a perfect and enjoyable evening , resulted in a very disappointing time . So I would be greatful if you paid for a full refund of the money I spent on the tickets . Computers , radio , CDs , sattelite television and a lot of other things have changed my daily life . Another advatage is that , for example , sattelite television , which is an example of modern technology , keeps me informed about what is happening in the whole world . After considering your accomodation offers , I 'd rather stay in a log cabin if possible . It would not only emphasize the sharp contrast between this and the classroom atmosphear but also show how they are as young people . On top of everyting , the restaurant which was advertised in the advertisement was closed because it was being arranged . You can imagine how dissappointed I felt after that evening , and I am writing to ask you for a refund of part of the money . But , in other things , I think modern technology hasn't changed my way of life too much : I do more or less the same as I did some years ago : I get up in the morning , go to school , have lunch , study and go out with my friends without being afected by microchips or nuclear energy . I have happily received your reply and I want to thank you for this marvelous prize you have given me . After helping to do that and many other things , my friends and I watched the concert and before Green day ( the group ) left , they came up to us an thanked us for all the hard work we did , and shoke our hands . It started at 20:15 leaving us waiting for fourty five minutes . In the future people will wear clothes made of polyseer and nylon because cotton and wool will be rare and expensive . Also I think clothes will have many gadgets on them like a small oxygen mask in case someone goes in a place with extended pollution - I think there will be many such places in a hundred years - and a hat designed to protect people from the strong sunrays of the sun at midday because the ozone layer will be destroyed in a hundred years and the sunrays will do damage to the human skin . Now , it is already possible to send our shopping list by computer , and this opption , in the next few years , will become the most common one . The new technologies will probably produce a considerable revolution in some essencial parts of the house . For example , we will have computerizated ovens , microwaves and freezers , or we will probably have central heating controlled through the Internet from our office . Firstly , log cabins are more comportable than tents . ================================================ FILE: data/example_data/bea60k/test.bea60k ================================================ I WANT TO THANK YOU FOR PREPARING SUCH A GOOD PROGRAMME FOR US AND ESPECIALLY FOR TAKING US ON THE RIVER TRIP TO GREENWICH . IN MY OPINION FAMOUS PEOPLE ARE BEING OBLIGED TO PAY A PRICE FOR BEING FAMOUS THAT , IN SOME CASES , COSTS MORE THAN THEY DESERVE TO PAY . Also , I want to say that the plays and films were excellent , but there were n't enough of them for me . In our Academy we are not allowed to smoke . I was truly disappointed by it . Secondly , I had to wait forty - five minutes before the show finally began . I 'd like you to send the money to this address : ul Taklowa 10 It is a dream come true and was really unexpected for me ! If not , what do you suggest ? The festival was excellent in many ways , and in particular it being an international festival was a challenging , but brilliant idea . MY NAME is JAMES CAMIREZ AND I AM WRITING THIS LETTER TO YOU BECAUSE I HAVE SOME COMPLAINTS REGARDING THE DISAPPOINTING EVENING I HAD LAST NIGHT . SECOND I GOT TO THE THEATRE AT 19.20 BECAUSE IN THE ADVERTISEMENT IT CLEARLY STATES THAT THE SHOW STARTS AT 19.30 , AND I GOT REALLY MAD WHEN I LOOKED AT MY WATCH AND NOTICED THAT I HAD BEEN WAITING FOR 40 ( FORTY ) MINUTES AND THE SHOW HADN'T STARTED YET ... I MEAN IT WAS AMAZING ! I COULDN'T BELIEVE IT . HOW CAN THIS CLASS OF THEATRE BE SO .. OH I'M GETING MAD AGAIN SO I AM GOING TO TELL YOU ONE LAST THING , IT WAS THE MOST HORRIBLE NIGHT I HAD EVER HAD SO I DEMAND MY MONEY BACK ! MODERN TECHNOLOGY HAS AFFECTED ME IN SEVERAL WAYS . I MEAN THE MORE THE TECHNOLOGY ADVANCES ; THE MORE COMFORTCOMFORTABLE WE GET . BUT I THINK ALSO THAT WITH MODERN TECHNOLOGY WE GET MORE COMFORTABLE SO THAT MAKES ME A PASSIVE PERSON AND NOT SO ACTIVE . THIS CAN BE BAD TOO BECAUSE IF I GET USED TO BEING COMFORTABLE , WHEN I NEED TO DO HARD WORK I WON'T BE ABLE TO . Everybody attented go to the show , funny , and happy in the end , and what have we go then ? Disappointed ! If you could not manage the programme , why did n't you inform people before the programme started ? I thought you understood ' ; please send money back to me , you know why , do n't answer me ? Now we know , our world has developed to new world , because we have high technology to do . Today , technology is a part of life . It started from got up in the morning , we have the machine help us to cook , iron , cleaning , washing , and then we went out to work , there are car , sky train to travel for help us convenience and quickly . We appreciated the modern technology changed my daily life for help every easy and quickly , we have time to do many things . It is a good start to go on a sightseeing bus on Monday morning , because we can see all the famous buildings in a few hours . On Wednesday after we have visited the National Art Gallery , we can have a chat about our next holiday during the free time in the afternoon . Nowadays the main attraction in the newspapers and on television is the private lives of famous people . On the whole , being rich and famous does n't always bring happiness , whereas the majority of the population wish they were rich and famous . Last week we had another demonstration of this . Firstly , it will introduce the latest fashions connecting Millennium . Whenever I recollect it , I feel self - confident . Firstly , I would like to say that I 'm very glad to have been chosen and I will do my best for this competition . As you mentioned about the accommodation , I would prefer to stay in a tent , because it 's more exciting and I really love camping . However , I would choose sailing because I am fascinated with the sea and its mysteries and I also like the water , the wind in my face ... The other one I would choose is basketball because I 'm tall and very fast with the ball . It was unbelievable ! ! ! Are you studying a lot ? I have just received your letter which made me so happy . I can not believe that I won first prize in your competition , because I have always believed I am an unlucky man and now I think some things are changing in my life . I would definitely choose basketball and swimming which are my dream sports . I would like to ask a few things , especially about the weather : what is the weather like in July in the U.S.A ? What kind of clothes will I need and how much money should I take with me ? Because I have never been to the U.S.A. before I do n't know anything about it . I have never enjoyed doing shopping , but nowadays there are some people who are called shopaholics . They are just like alcoholics and these people go shopping every day because they can not stop themselves unless they have not got money to spend . Because nowadays wherever you go there is a big queue and I hate waiting . The queues are not the only problem . If you go by car there is the problem of parking , if you go by bus there are also queues and you have to carry a lot of carrier bag carrier bags during your journey and you wo n't always be lucky enough to find a seat . Especially if you want to buy clothes with your girlfriend or if you are a girl , you have to be ready to spend hours trying on clothes . I really hate going shopping with girls to buy clothes because when they go into a shop they want to try on every single item of clothing and they do not realise the time . Some people say " shopping is not always enjoyable " but for me it is definitely unenjoyable and I think it will be the same for the rest of my life . First of all , when I bought the tickets it appeared that there was no discount available . It was awful when he started to laugh and everybody was staring at us . Firstly when I went to the show it was written that the start time was 19.30 but it started at quarter past eight . I had waited for forty - five minutes . I just knew I should n't have trusted her but as I went in the house my dad asked Pat to stay for a meal . I was in shock , thinking why is n't anyone getting angry with me ? After a while we sat down for dinner and Pat just told my parents that I was smoking and when my family heard they got ever so angry . As my husband is a native and we live in Switzerland , we appreciate spending a week in London every year . First , we could n't get a discount , although you mention it in your advertisement . I walked back , hoping I would n't come across anyone and be able to drive back home . Firstly , could you invite stars and artists from more than only six countries ? In my opinion , it might be better to have time with a variety of nationalities . As they know about your interests and personality , it is easy to help you . I would like to make some comments about the event that I went to . - Art exhibitions to teach us more things about the artist 's lifestyle ; and Well , about rules in my country , the situation is not different from other countries . The rules must be respected by all people if you do n't want to be kicked out of school . However , some of them have read an advertisement about the London Fashion and Leisure Show , which will take place at the Central Exhibition Hall in London on 14th March . Also the most famous star can be unhappy and depressed : in fact , money and celebrity do n't always bring happiness . In addition , admission for students is free . Yours sincerely , On the other hand , the bond between parents and children is unlikely to change . The smokers in the school yard , the buffet and the other pupils , who are sitting at their tables doing their homework . That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredom . I am sure that eventually we will take off our clothes and in the future we will be undressed and free . There wo n't be any problem with being up - do - date . Of course , you ca n't afford a luxury car and a large apartment unless you 're born with a silver spoon in your mouth . It 's also a really popular job among university students because of the good salary . I was really surprised when I opened it . I look forward to going to the Camp California in the USA . Because it reminds me of my childhood . I used to go with my friends to a camp , which was situated by the seaside . Nowadays we have many big shopping centres . The most suitable time for shopping is the weekend when parents do n't work and children haven't got school . Because of that , shopping centres are overcrowded . You ca n't buy something in a peaceful and calm atmosphere . However such centres are very useful and necessary . In my opinion the worst thing which may happen is an extremely long queue for the changing room . If you bought something gorgeous , you will be very happy . Yours sincerely I 'm writing to you because of the musical show " Over the rainbow " , which I saw on Friday the 16th of June in your theatre . There are several points I have to complain about which meant the evening was not nice at all . Instead of half past seven the show started at quarter past eight . I could n't go to get any refreshment for two reasons , the first one is that there was no information about how long the start of the show was going to be late by . On your tickets information is written that discounts are available , when I asked at the ticket office I could n't get any discount for being a student . After one hour the whole class had heard about Sarah 's secret . Everybody was interested in what she had won but nobody wanted to ask Sarah because it was told as a secret to them . Sarah realized that everybody was nice and friendly to her but something was going on in the class , when she turned around talking and whispering started . Sarah looked at him for a while , then she stood in front of the class and explained to the others that she had won a prize for 20 people to travel for 1 week to the coast of southern France and every one of the 19 pupils was invited , except Pat who was n't very good at keeping secrets . I read your advertisement five days before , and I was really impressed by it . But , the quality of this show was n't what you led me to believe it would be , and I feel really disappointed by it . For all these reasons , and if you want to keep me as a customer , I would be grateful if you gave me some or all of my money back . Yours sincerely , My marks were n't good enough to obtain my degree in Computer Science , and the exam session was finished . I never talked about this project to anyone , except my best friend Pat . It is a great opportunity because this show is only every two years and normally it is difficult to go in . Or going to the show on Wednesday morning and in the afternoon , we can choose between free time or the National Art Gallery . I look forward to hearing from you . They found him two months later and six months later he was in jail . I am writing this letter to complain about your advertisement for the musical show " over the rainbow " , which is misleading in a number of ways . Sweating and afraid I waited outside the director 's office the following day . Tears ran down my face as I admitted having stolen . I was surprised that my father did n't watch me but I soon understood that he was ignoring me . That evening my father said a few words : ' May this be the end of your career as a thief ; we are only ready to forgive if you promise never to start again ' I am writing to reply to your letter in which you told me I won first prize in your competition , which is two weeks . I was very happy with this result since I did not think I could win . The aim of this report is to suggest which activities in our daily life at school should be filmed to give the other students an idea of what we usually do , not only during the lessons but also the rest of the time . The purpose of this letter is to complain about my experience with the musical " Over the Rainbow " , which really disappointed me . First of all , there were no discounts available such as were promised in the advertisement so I had to pay the original price which was n't cheap at all . Then , I was forced to wait forty - five minutes to see the show because it started at 20:75 instead of 19:30 and , when it finally started , I was really disappointed to see that the actors were n't Danny and Tina as it had said in the advertisement . Your really dissatisfied customer How has modern technology affected my daily life ? We live surrounded by inventions which help as through the day . The reason for my decision is that other activities are also available in my country , except climbing , but I have a fear of heights so this one is not destined for people like me . Actually , they put me very close to the stage , in the middle of the real hell . This is the main reason why I want to ask for a refund . People wo n't be embarrassed to show the beauty of their bodies . Moreover , I have chosen this month because I think the weather will be fine . During my stay at Camp California , I want to go swimming because I practise this activity regularly and I often enter competitions : this is one of my hobbies . Then , there was only one hour left to install the different coloured lights ; it was just enough time . We would suggest going to this fabulous show . Yours sincerely , Despite being used in many ways , it could entertain us as well . Although I imagine them in my house in my future , I am sure I would be surprised if I had them . A useful helper : the personal computer can quickly help you in lots of situations . Although the world of computers will develop day by day , I lively hope we ( human beings ) can maintain our way of seeing things . I'M VERY PROUD TO BE THE WINNER OF YOUR COMPETITION ! I HAVE NEVER BEEN TO SUCH A CAMP BEFORE AND SO I'M LOOKING FORWARD TO SPENDING TWO WEEKS THERE . IT IS ONLY POSSIBLE FOR ME TO TRAVEL IN JULY BECAUSE OF MY IRREGULAR WORK . HE 'S A SMALL ONE ! I'M LOOKING FORWARD TO HEARING FROM YOU YOU KNOW THAT I ALWAYS WANTED TO HELP AT A CONCERT . TO BE PART OF THE STAFF WOULD BE WONDERFUL , I THOUGHT . AND I WAS RIGHT ! AS YOU KNOW I WROTE TO THAT ORGANISATION WHICH IS ALWAYS RESPONSIBLE FOR BIG EVENTS . ALL OF THE STAFF AND THE ORGANISATION SPOKE ABOUT THE RULES AND HOW TO SAVE PEOPLE . WE WERE A GROUP ! ONE TEAM ! BEFORE THE CONCERT WE HAD A BREAK TO EAT SOMETHING AND TO TALK TO EACH OTHER . THE CONCERT WAS VERY LOUD AND LONG BUT WE DIDN'T HAVE TO WORK HARD . GREETINGS AND HOPE TO SEE YOU SOON However , it was a very disappointing evening for me . Firstly , it was mentioned that there were going to be two stars but , in fact , only one actor was performing in the show . Thirdly , the advertisement said that discounts were available but the ticket seller said that there was no discount allowing or available . In addition , the advertisement mentioned that the restaurant would be open after the show but it was closed because short of cooker . Finally , I would like to ask for my money back on the ticket due to the disappointing evening out and the misleading advertisement you have created . Nowadays , modern technology is becoming absolutely essential to our daily life . Without all this your life would definitely change back to the same position as it were 50 or more years ago . If this continues to happen our life will be very miserable as accidents happen all the time . Thank you very much for the many interesting positions in this schedule , especially the river trip to Greenwich , which , we are sure , will be very exciting . I would like to inform you that we have seen an advertisement for the " London Fashion and Leisure Show " and we have found it very interesting . Suddenly I heard a noise from my garden and I wanted to know what it was , but it was impossible to do it . I was afraid that someone was near my house and wanted to get into my house . I was very frightened , but I knew that I had to do something . I was sure there was someone on the other side of the wall . The only thing which really disappointed me was a visit to your theatre where I wanted to see the musical ' over the rainbow ' , after I read the advertisement for the show . The things that really disappointed me were that you said Danny Brook and Tina Truelove were the actors but they were n't , different actors played and to be honest they made the whole show very bad . To be honest that was not a great experience and I hope you will see my point . Since everyone can afford modern technology everyone 's life in the more developed countries has changed completely . So in the last century our daily life has changed dramatically and we have become lazy and our life impersonal , fast and unromantic . Your advertisement mentioned that the famous Danny Brook would play in this show but disappointingly it was another , unknown actor who starred instead of him . All those inaccuracies spoilt what should have been a memorable evening so I would like to be refunded at least for the price of my ticket . He did it some more times , and in the end nobody took any notice of the shouts . You are working with your ideal woman , I still ca n't believe that I spoke with her . At first I could n't believe that I was a winner My school starts in September and it finishes in June . If I could go in July that would be grate . I would like to ask you , what sort of clothes should I take with me ? I do n't want to take too much ; jeans , jumper , swimming costume , T - shirt , sports shoes I think should be O.K. At first I was helping to sell the tickets - it was n't difficult . We had to check every plug , switch , light . I could n't believe how big a lamp can be . Fortunately nothing had happened . Only people who were helping and organizing this concert could meet her . Some of them were speaking with her , I was n't this lucky person , but still I 'm happy , that I could be there . Log cabins may be more comfortable . On the other hand I think that I will be able to " survive " in a tent . I wish you had been here with me . You can not imagine how disappointed I was with myself . We started to put everything on the stage and after this we realized that the band was coming onto the stage near us . After all of this we saw the show from the best place , near the stage and afterwards , the thing that I most liked , we were invited to see the group and got their signatures . I have got a few things to complain about regarding your theatre . I decided to go and visit your theatre restaurant . For example , once people had to walk from one place to another , but now we can use science and technology to produce a lot of petrol - powered vehicles and we can travel faster with them . We can also use technology to produce more food and help them grow faster . The rules at home are very different . I am allowed to do what I want as long as I study enough to aprove . It is not always easy , but there are rules in every home and you have to respect them . I hope you will agree with our suggestion and if you have any further questions do not hesitate to contact me . In addition to this , you may have some robots bringing the newspaper to the table , tidying up the house , and doing the shopping . Maybe they will also be your life partners . I and my friend Emma helped to paint the scenery on the stage . As you know , I like drawing and painting when I have some free time so that is why I chose to paint the scenery . Moreover , the restaurant was still under construction so that we could n't use it when we were extremely hungry . One of the biggest things that have changed is the change in the methods of communication . I have mentioned a few changes above but there 's still the biggest one left , which is related to the field of computers . I refer to your advertisement in the Herald Tribune where you advertised the Circle Theatre and the recent musical : When we arrived at the theatre we realised that there were no discount tickets available as were mentioned in your advertisement so we had to buy the most expensive ones . I am looking forward to your prompt reply . Today the fashion industry has a great importance in the commercial market . There are the natural materials on one side whereas on the other side the fashion industry produces more and more synthetic materials , which relay on the production cost . In 100 years most clothes will be made from synthetic material . The contrast will be especially attractive . Furthermore the style of the clothes is going to be more crazy and individual but there will still be numerous clothes for conservative people . On balance fashion in 100 years time will be comfortable and colourful . There will be clothes for everyone 's taste . Our school is really very disciplined , especially about our clothes and behaviour . When I read the advertisement , it said that the restaurant would be open . On behalf of the class I would like to thank you for the excellent programme you have organised , especially the idea of visiting a gallery . I grew up through the water world and I could n't live without it . I love sports so I would like to play some basketball at the camp . By the way , my team and I won the last school championship . I play guard on my team . I also like tennis but I am not very good . I was wondering if you could give me some lessons while I am there . I do not have words to express how happy I am . I would like to thank you and Camp California for this opportunity . Since man became man he has needed to hunt to survive . In ancient times he used spears , bows and arrows , and the woman 's role was to collect items like vegetables and stuff . Nowadays , in the year 2000 we still practise this ancient art but in a different way , we do n't use weapons for hunting animals in the jungle , we use the remote to hunt TV shows , and we do not collect vegetables any more , we go shopping . This activity of shopping has become one of our most important , after all , we go shopping for any reason , we have developed such an instinct for shopping that we can proudly say that we are some sort of kings of the urban jungle . If an activity has stayed with us , mankind , for so long , it must give us some pleasure and maybe that 's why shopping has become such an important thing in our lives because it gives you pleasure when you find what you have been looking for and if you can get it for less than the price marked on it , that is the greatest of ecstasies . But where is the bad part of it ? Well shopping can became horrible at Christmas for example , when hundreds of people go to the shopping centre and it also can cause many problems when you become an impulsive buyer . Shopping is not always enjoyable because of several factors . One could be when you go into a shop and you find something that you like , and you decide to buy it , but when you see the price , you find out that it 's too expensive , and you can not afford to buy it . This situation is very annoying for most people , and that 's what makes shopping unenjoyable . Why do n't we include some sports , for example , volleyball ? Furthermore , it 's a worthwhile experience for people who want to know about other countries ' arts . Finally , with regard to tickets , it is a really wonderful idea because it is more convenient to enjoy the festival for one day among a lot of people . One day , when the old man went into the bamboo bush , he found some bamboo gritted white . He had never seen such bamboo before but decided to cut it down . THE KIND OF ACCOMMODATION I PREFER IS A TENT BECAUSE AT SUMMER CAMP I FIND IT MORE INTERESTING SLEEPING OUTSIDE UNDER THE SKY WHEN THE WEATHER IS NICE AND WARM . I'M QUITE GOOD AT PLAYING BASKETBALL BECAUSE I USED TO PLAY FOR ABOUT FIVE YEARS AT SCHOOL . WE USED TO HAVE TRAINING SESSIONS TWICE A WEEK AND AT LEAST TWO GAMES A MONTH AGAINST ANOTHER SCHOOL , WHICH WAS GREAT . PAINTING ALWAYS DID FASCINATE ME , EVEN THOUGH I'M NOT SO GOOD AT IT , BUT MY FRIENDS SAY I CAN REALLY PAINT AND THEY LOVE THE THINGS I DO . THE TECHNIQUE I LIKE THE MOST IS WATERCOLOURS . DO YOU REALLY WANT TO KNOW ABOUT MY EXPERIENCE HELPING AT THE POP CONCERT IN OUR TOWN ? The reason I 'm writing this letter to you is that during my stay in London I felt very disappointed about your theatre . After all the inconvenience that made me feel really mad . I think I can only forgive your theatre if you give me a refund of the money I spent there , and some more for all the problems I had . As you already know , I am trying to become a professional photographer , consequently I would choose photography as the first activity and painting as the second . However , I would like to know if by any chance the photography activities are only for beginners . Actually most people work hard to earn their money and consequently , the occasion on which this money is spent to buy something useful , or simply something they like , should be considered a very pleasant occasion . In fact , the shopping you do for your daily needs is seldom enjoyable , as it is clearly more a duty than a pleasure and moreover you are often faced with some nasty situations . First of all , when I paid my entrance fee they did n't accept my discount ticket , they told me that the ticket was fake , then I entered the theatre and I had to wait 45 minutes . The show was supposed to start at 19:30 and it started at 20:15 , " this shows a lack of respect " . Manager , I expect that you have considered my bad experience at your theatre , so I 'm asking you for my money back , because it was a very bad evening . It all started when Pat , Nick 's best friend , wanted to have the party at his house . Most of the class disagreed with that because the Pat 's house is extremely little , they started to say to him that his house was like a box . Pat got very angry and sad . At first Nick got angry but then he forgave him because they were friends and each of them could trust in the other . Nick told the situation to the class and offered his house for the party , because it was very big , with large gardens and a big swimming pool . To begin with the school rules , we have in fact some important ones . Since I have studied photography for several years , I would like to take some pictures of beautiful scenery in California . I had to pay the full price for them , which was quite expensive . It turned out to be impossible : the restaurant was closed and we did n't even receive an explanation . The development of portable communication systems , such as mobile phones , has greatly changed our way of life . It is now possible to talk to a friend almost everywhere and anytime , even if we are two thousand kilometres away from each other . Precision industry has changed my life a lot too . I go Scuba Diving during the weekends and holidays . I would like to travel in July because I have to go back to my country in August . How can shopping be enjoyable in this situation ! I believed everything she told me . I was surprised that he believed me . Yours sincerely , They are human beings and they need to keep a little bit of privacy and freedom in their lives to continue like normal people , to feel that they are unknown and anonymous and they do not have to wear sunglasses , hats or caps every time they want to leave home in order not to be recognised . Furthermore , you asked me to choose two activities I would like to do . And now for them shopping can be considered like a contrariety . It is quite obvious that celebrities ca n't lead a normal life , as they are constantly followed by reporters , which makes their life miserable . I am thinking here particularly of the fact that every event and action is widely discussed in the mass - media . Last of all , it says in your advertisement that there is a theatre restaurant open after the show but it turned out to be closed because it was being redecorated and no announcement was made . Therefore I would like are refund of my ticket and I would like an apology . Yours Sincerely , What do you think models will wear on the catwalks ? In my opinion , clothes will be a lot different in 100 years ' time . For the accommodation at Camp California , I would prefer to have a log cabin because I think it is more comfortable than a tent , and in case there is a big storm with heavy rain . A log cabin 's more resistant than a tent . For the activities , I chose climbing because I took a course for 2 weeks last year and now I have a good level of proficiency . For the other one I chose photography but I am not a professional , I just take some pictures on my holiday ! Next weekend I have a date with one of them , but I wo n't tell you the name because you 'll feel jealous ! I would like to do photography and swimming . I love to take photos but I do n't have any technique . Of course it is good to buy things for ourselves , like clothes , jewellery , anything . When you buy something you were looking for a long time and , when you arrive at home , you discover some defect on it and have to go back to the store to complain . Secondly , I would like to choose a tent for accommodation , because I have never spent time in a tent , that 's why , I think it is a good opportunity for me . I have plenty of experience and knowledge of both aspect of part . I would be grateful if you could inform me . My jobs were collecting tickets , selling goods and refreshments , guiding people to the right seat and cleaning up the concert hall after the concert finished . What I particularly liked about the experience was the concert was achieved through our support . I really recommend you to help them , I think this is a good opportunity and I want you to understand my feeling well . I want to know your opinion . On the other hand , their stories always make them embarrassed because most of the journalists create their own story based on the true story just to get the people 's attention . All of them were shocked by what they heard . She became very shy and angry . She could n't talk with people and she was just very sad . I want to tell you that I am very disappointed about the play . In the advertisement it said that Danny Brook was in the starring role . And also it should have started at 19.30 , as I saw in the advertisement , but it started at 20.15 ! And so far there were n't any discounts available which were said to be " available " in the advertisement . You should have written it in the advertisement . Absolutely it was very disappointing I hope you understand and will correct your mistakes in the next advertisement and send me my money soon ! Today 5 out of every 10 pupils can use a computer basically . It is really enjoyable when I chat with people . Technology is also important in another area for me . But some naughty students in my class were throwing paper aeroplanes when the teacher was writing something on the board . Unfortunately I have to complain about the musical show put on in your Circle Theatre last night . When I received your advertisement concerning the show " Over the Rainbow " I thought that I 'd have a great evening , but unfortunately it was a big disappointment for me . First of all , Danny Brook - the main actor in this musical - was absent . You also offered discounts - what kind of discounts ? Because the show was very long , we were getting hungry but of course your theatre restaurant was closed because of the holiday . I had not any money for travelling and my parents were going to give me some only if I had concrete plans . After one month , I went back home and told my parents what a lot of fun I had with my friends - I do n't know why I was such a liar . My parents believed my story until my younger brother Pat told them the truth . Now my parents do n't believe my story . I hope you will not feel offended , but I really need to complain about your theatre . You can believe I was very disappointed when I saw that he actually was not performing and I was more bewildered that no one made an apology for it ! Although , I would have felt better if I had had a discount on my ticket , as you mentioned in the advertisement , but unfortunately , these could n't possibly be given either ! If more and more engineers work in science and technology , it must be because it is really useful : but in what particular way ? I would like to travel at the beginning of the month , which could be between the first and the fifteenth of July , because afterwards I have several business meetings and it would be difficult for me to take a trip . Although I like camping and sharing with different kinds of people , I 'd prefer a comfortable and private place ( if it 's possible ) where I can sleep , or be quiet .. I am not a teenager ! I was running the whole show . My responsibility was to dress her . I really liked the exhibitions . The band " Three Kings " presented a new style of music . I would like to notice that the dance show was absolutely marvellous . What a great idea to invite writers ! I really liked talking with them . You wrote an advertisement saying that people from more than 15 different countries were going to visit this concert , but there were artists from only 6 countries . It was really a pity because I expected to see artists from France and Italy . The International Arts Festival was organised quite well . I would only recommend you have more artists and the classical concert should be in a bigger hall . They were so poor that sometimes they hardly had anything to eat . She persuaded him to go to the sea to ask for a lot of things for her . Also , the e - mail system is really helpful . Circle Theatre Finally we had the worst evening I have ever imagined , it was definitely not the " perfect evening " as written in the advertisement . Synthetic materials have developed and become very popular so they would keep going . I guess they will wear a sort of tunic over a shirt and a skirt , or more masculine clothes because they want to change . About the accommodation , I would prefer a tent because I enjoy the contact with nature as well as camping activities . In conclusion , like all things in life , shopping can be pleasant or irritating depending on your patience and on your mood that day . It gives us knowledge useful for many school clubs , like the " marathon shell " club or the robotics club . Besides it gives all the areas covered by a mechanical engineer and it is very important in a school where you will probably become a mechanical engineer . It lets us identify our abilities and the part of mechanics that we prefer . Our engineering school is specialised in mechanics and thermodynamics . First , we could film the fluid mechanics lessons and the general mechanics lessons . I wonder if we could not feet between some short view of the laboratories , in which we could show a student doing experiments . Future students could appreciate coming if they could still do their sport . Another point to record would be the time we have got between lessons or at lunch time . It will show a part of the way of life in the school . If possible , the type of accommodation I prefer is a tent . I will be very glad to participate in your camp ! Yours faithfully The show 's date is very convenient - March 14 - , and it is on in the Central Exhibition Hall so I do not think it would be a problem to get there . Although this statement is absolutely true , it seems there is no way to stop public attention , so they will have to keep living with journalists . My name is Marcia Fomalar , I am writing to let you know how disappointed I felt when I went to the musical at the London theatre . I went to buy a ticket and as I like to enjoy the show near the stage I bought a £ 20 ticket but when I asked for a discount they told me , " I am sorry but there was an error in the advertisement . It will be impossible to give you a discount " . At 19:15 I was very impatient , waiting for the show to begin , and a man announced that the show would start at 20:15 . Finally the show started and to my surprise my favourite actor Danny Brooke had been replaced by another actor . Pat sent a fax to my house with the different alternatives she had thought of but unfortunately my grandmother was there and she saw the paper so the surprise was ruined . The other activity that I chose is painting . I am not as good as I want , nevertheless I think I can improve my skills during this course . I would like to know how the weather is in California during the summer so I can bring with me the appropriate clothes and the last thing I need to know is the amount of money that I have to bring with me . To make this report easier and faster , it was necessary to make a questionnaire which was given out in the school . However , 15% thought that it was not a good idea because it would be boring to see other people enjoying themselves and they mentioned it as not really important . As you can see , my classmates and almost everybody in the school are happy with the facilities and activities that we have . A few weeks ago , my family and I had a holiday in London . The holiday was n't too good ! During the week we decided where we wanted to go . We all agreed to listen to music so then we decided to go to your musical show and listen to " Over the Rainbow " . That evening we did n't want to have our supper before the show . Anyway I thought it would be too early to eat and also because the timetable or candidates you give me have say : " visit our theatre restaurant after the show " . So we did , but unfortunately it was closed and I was so disappointed about it , not only because we had expected Danny Brook and Tina Truelove to be the actor of starring . We do n't expect much bad to happen on our holiday , but this was a perfect show as well , it was the worst show and theatre I have ever been to in my life . sincerely Ki To help us to live happily , scientists can easily predict the changes on earth , so that we can have time to prepare or defend ourselves from natural disasters . Weapons are designed to kill and defend in a fight . In the Second World War so many Germans were killed . Also many people died in other regions , Poisonous chemical compounds , e.g. gases and liquids , are created too . They have been used to kill people . Most of them produce radiation , which can disable a person , mostly harming their brain and their bodies , and it can also cause death . Communication technology , e.g. internet ( networks ) and mobile phones . In wars soilors communicate with mobile phones though places to place to get or give information about themselves and the enemy . By using the Internet we can make new pen friends overseas , and create clubs and societies . Now a message can travel quicker and it is also worldwide . sending letters takes about a week from Hong Kong to the U.K. , but network , e.g. Modern technology saves us a lot of time and brings us many benefits when we use it in the right way , but some bad way to e.g. send virus to break down network . Unfortunately , Pat was n't very good at keeping secrets and this was the reason why the party was n't as successful as we thought . We decided to go to his place ( I 've got a copy of the key ) the evening before his birthday while he was at work and decorate the lounge , then turn off the lights and wait for him in silence until he arrived . With reference to our trip to London , on behalf of all of us , the English class in this college , we would like to thank you for your special attention in organising a good programme to learn about the interesting and cultural places in London . We have been very excited about this and coincidentally we have found another option to add to our programme , certainly if you agree with it . We thought that The London Fashion and Leisure Show would be a great opportunity to give us more information about the main transformations nowadays in England concerning fashion , leisure , sports and lifestyle . It was dangerous , but I knew I had to do it . I was at home putting my makeup on before going to a restaurant with my friends and , suddenly , he rang the bell . He was so tense with a gun in his hands and I could no longer speak . He took me out with him . I had tried to think about stopping him , but he was stronger than me and he had used all his power to scare me and he forced me to buy cocaine using my cheques . I am writing to make some complaints about the musical show " Over the Rainbow " , of which you are the manager . Although it was written in the show 's advertisement that the main actor was Danny Brook , it , unfortunately , was not him . It was also written in the show 's advertisement that there would be discounts available on the tickets . Even though the advertisement said we should visit it after the show , it was closed and no explanations were given . In conclusion , the advertisement promised this would be a perfect evening out , but it was not , so I would like to ask for my money back . One day , I innocently told Pat that I was dating Philip Smythe , the school 's hunk and most popular boy . Suddenly , an enormous sadness caught me , because Philip had begged me not to tell anyone , so he would definitely break up with me , and I knew I was going to stop talking to Pat , because she had just ruined my happiness and I could n't trust her anymore . One day , while I was studying maths , one of my friends , called Pat , asked me to have a coffee with her . The problem started when I confessed to her that I had fallen in love with Larry , who was my cousin 's boyfriend . Surprisingly there was a completely different actor starring . Unfortunately the restaurant was closed . He is only looking for the biggest fishes and he has been unsuccessful for 86 days . Little by little we were growing up and becoming close friends . I relied on her and our relationship was excellent . It is my only favourite hobby . To reply to your question , it was really a nice experience . As you know , I like pop music so much and the singer was one of my favourite singers . I would be most grateful if you could let me have some information : - Are there leisure and entertainment facilities close to the camp ? I am really surprised for the information because I won , and I would like to say thank you for everything . This is why I wrote and sent this letter with the information you need I can only travel in July because it is the only time when I can do it before for my work I do not really care what accommodation I will have . I would prefer to come in July I will be available for the moment . I would really appreciate it if you could tell the people who work at Camp California I choose the Golf and Photography because I think I am really interested in those subjects . I am not really really good but I have some experience . I think that is everything I would like to know . I want to apologise to you , because I haven't written to you recently , but I want to tell you what happened to me last week . I had the opportunity to help at one of the most pop concerts in my city . So imagine , I felt really really good and excited . I do n't have words to describe it but I will try to do it , OK ? What 's more , your letter said about the chance to do two activities during the camp . I have even won a competition once . I would like to know if the , , travel costs '' which you had paid include entrance tickets to the museums or any other cultural places , because I would like to do some sightseeing in the U.S.A. Furthermore , if there will be cmy tumble dryer or washing machine to clean our clothes and if there will be a guide who will be responsible for us and the camp . When describing the advantages , we should remember that most people like doing shopping . Very often people go to a shop - usually a big department store and buy things which they do not need . From my point of view it depends on us whether shopping will be enjoyable or not . My name is Manu Roddos and I am writing to complain about some things that happened at the performance of the show Over the Rainbow , which took place in your establishment , The Circle Theatre , which made me feel very upset . I was very excited to see it yesterday , but as soon as I arrived at the theatre the problems began . Yours sincerely , Firstly , the great boom in mass communication which happened at the beginning of our decade , with the development of telephones , radio stations , television and even satellites , and of course , the Internet , gave ordinary people the chance to take off on a trip all over the world , and this allowed health and education research to increase as well . In addition to that , people will always be afraid of a technological war . In conclusion , from my point of view , people must learn that despite technology being such a new area to explore , we have to use it with a great deal of responsibility for us all to survive in the future . And is there anything else I have to take with me ? Yes , it is true . This is only because nowadays people have more money than ever before , and some women do n't earn money . They have no idea how difficult it is to earn money . It would be wonderful to buy some books or programmes with the signatures of all the stars and artists taking part in the festival . I hope this letter will help you with organizing the festival . Every pupil has to sit alone . ( I mean that one desk is given to one person . ) 2 . One should have such marks as , , 3 " , , , 4 " , , , 5 " , not , , 2 " , which is equal to fail . We do n't have old - fashioned rules or anything like that . First of all , it would be a good thing to say that July would be the best time to travel because it is the hottest month in the year , and the weather will be really nice . Despite my lack of experience in climbing I do want to try this type of sport . The aim of this report is to suggest which lessons and other activities should be filmed . I have interviewed each student from my English class . Firstly , the English lessons must be filmed as the most interesting lessons at our school because it will give students an interest in studying and improving their knowledge . It contributes to the world 's treasure house of literature and arouses an irresistible fascination . We should n't disregard and neglect to film the buildings and the gardens of our beautiful college , especially if we take into consideration the fact that it is in the city of Shakespeare . Also , painting is one of my favourite things ! Anyway , I really enjoyed helping at a pop concert last month so that I 'd like to write about it ! Anyway , by the time we finished everything , thousands of fans came into this concert hall . I 'm writing to you with reference to the letter I have received from you saying I have won your competition . Well , as you ask , I will tell you I would like to travel as soon as July begins , I 'm going to be able only to travel in that month because of my job responsibilities . Regarding the choice of tents or log cabins , I think I will turn to the first one because I have always loved camping close to nature , if possible , in front of a lake or a river , if your campsite has one , so that I will be able to do my favourite and skillful hobby : sailing . I would like to travel only in July , because I have only one month 's holiday this year . It is not too comfortable , but that is not a problem for me . I like this kind of holiday . I never had met pop stars before and I was very impressed , but I was too happy to show my shyness . I stayed with him until the concert began and after the show I had the opportunity to stay in his private room with him and the other dancers . So , unfortunately , I must say that last night was one of the worst nights I ever had , and having given the reasons , I expect to be able to count on your sense of responsibility , so , I feel that I must ask for my 20 pounds I spent on that terrible night . Also , with today 's machines , factories have significantly increased their production , which brings progress to humanity , but also , with the continuous replacement of men by machines , unemployment is increasing too , and today , it worries every single citizen of the world , specially the ones who live in third world countries . It would be a fun experience ! Women , in particular , have the annoying habit of always having to touch everything they see . This was the best thing that had ever happened to the Fennall family for yeats . Which was very shocking for her mother . SINCE I HAVE A CHOICE OF ACCOMMODATION , I'LL DEFINITELY GO FOR THE LOG CABIN , BECAUSE I CAN'T BEAR THE HEAT INSIDE A TENT . I WOULD LIKE TO ASK YOU ABOUT THE WEATHER CONDITIONS , SO I CAN DECIDE ON WHAT CLOTHES TO TAKE , AND ABOUT COSTS , SO I CAN MAKE A BUDGET FOR THE HOLIDAY . AFTER THE STAGE WAS BUILT , THE REST OF THE THINGS I HAD TO DO WERE QUITE EASY AND ENJOYABLE ; I COULD STAY EITHER BEHIND OR IN FRONT OF THE STAGE AND GIVE A HAND IF NEEDED . I REALLY ENJOYED IT BECAUSE I LEARNT A LOT OF TECHNICAL THINGS I DIDN'T KNOW ; AND WHAT I ALSO ENJOYED WAS THE GOOD PAY ! I 'm writing to you to complain about a play I have seen , called : " Over the rainbow " . It was clear that Pat had to change and show his friends that they could believe in him thoroughly . For those next few days , Pat would do his best to be as sympathetic as possible . To begin with , every morning Pat said a pleasant " hello " and added to that a big smile . His mother always says : " If you are smiling and are nice to people , people will be nice and will smile at you " . I would prefer to travel in July . I have only this time , because my summer holidays are during these days . A cabin reminds me too much of my home and is too comfortable . That is n't what I want to have if I stay in a wild area . I was able to ask anybody , and he answered in detail , although he had a lot of work . I 'm writing to you following our visit to your theatre last night . And I would like to know if it is possible to have our money back . And if someone else knew , I would n't be able to go back to heaven unless I killed the person who told my secret . And I would like to go in the first part of this month , the second part I spend with my family . While I will be at the Camp I would like sailing , because it is my favourite sport . Yours faithfully In my opinion this book ' The Old Man and the sea ' is the best book which Ernest Hemingway wrote . Thise book is about a man who knows that he will die soon , he knows that he did n't make his dream come true . So he decided to go for a last trip in his life . He needs to rest , but he does n't give up . In the end he makes his dreams come true , he catches a vast Marlin . In this book Hemingway is trying to tell us , that if we want something , we can get it , it might be difficult and take a long time but we can do it . Sometimes they give up , before they get something , I read the advertisement and I thought it was going to be a pleasant evening . From the beginning it was all a disappointment . When I went to buy the ticket I tried to get a discount with my student card , but that was not possible . I let this pass and I bought it anyway , thinking that it was possible that this was only a mistake in your advertisement . But the play started forty - five minutes late , and the star of the show , of whom I 'm a great fan an who was the main reason for why I decided to see the play , had been changed for another actor , who turned out to be really bad . I think you realise why I 'm writing this letter to ask you to give me my money back . All the things that were promised in your advertisement were untrue , and it was definitely NOT the perfect evening out . Expecting that you will resolve this misunderstanding . There 's no doubt that modern technology has changed our lives , but how ? I think that some of the changes have been very good , like the improvement in medical science , which now can save millions of people that one hundred years ago were doomed to die or to live miserable lives . It has changed the ways people communicate . But technology has not only changed our lives in a good way , giving us things that can make our lives more comfortable , it has also created things that are n't bad , but if they are in the hands of the wrong people they can destroy the world . Weapons and factories are destroying our planet and we need to realise that we have to use technology to improve our lives , while always trying to respect nature . Regarding the accommodation , I would prefer to stay in tents rather than log cabins because I have a lot of experience of putting up my own tents . I like to go window shopping that is good to go around the shopping centre . Then I can say I definitely do n't feel it is enjoyable . - Accommodation : a log cabin would be nice for me to stay in when I am in California . Before we can give our opinions on this statement we have to make sure that everyone knows what we are discussing . We do not speak here about luxury goods . But if you realize how important what you buy is for your health you will go shopping with a far greater consciousness and more joy than before . ' How incredible it is ! I love swimming and also I 've got a scuba diving licence . I used to enjoy floating on the water whenever I was on holiday . Singing is the most favourite hobby for us . I 'd like to know how much money , and how many clothes we need . Of course , the shopkeepers are human beings as well . But for their considerations , they 're working in their routines . I sometimes lose my desire to buy a thing because of their bad behaviour . For example , for our jobs , special ceremonies , and so on . Your advertisement also failed to mention the fact that there were no discounts whatsoever and , finally , because of a shortage of staff , your restaurant was not open . I asked myself how I could be so stupid , telling her my secret after all I had been going through to keep it to myself . Now I did n't need to go around worrying about it anymore . I decided to thank Pat , and maybe , if possible , teach her a lesson . I pretended to be totally miserable . Pat did n't know what to do . She apologised over and over again and I could really see that she was more than devastated . After hugging each other we promised never to tell others about our secrets . However , it was delayed and it started at 20.15 . The theatre restaurant was closed after the show , they said funds had run out . Those are totally unacceptable so I would like to get paid for my ticket cost . I ask you to transfer money into this account . Think about the computer , the speed of computers is much faster than before . Nowadays , technology keeps developing and better technology gives us an easier life . In the hope that you understand me . Unfortunately , Pat was n't very good at keeping secrets . At first , when he had a girlfriend , they talked to each other frankly . But after they separated , he told his friends her secrets without thinking . It is like one of his bad habits . It was a very unpleasant evening . The restaurant should have been open when I came out , but it was closed because of the time the show finished . After breakfast I have to use my car to get to school . Without technology I would get really bored . I would be very grateful to receive answers to my questions . Boy , he 's really really handsome ! Secondly , the show was meant to begin at 19.30 pm , actually it began at 20.15 pm and that was without giving any explanation ! Another thing that has changed my daily life is the mobile phone . Sometimes the ring is annoying but , finally , the mobile phone is a great , handy object . About the accommodation , from the two options , I choose to sleep in a tent , because I think that a log cabin is n't as authentic as a tent , at the camp . I would be grateful if you could send me further information about details like how much money or what kind of clothes I 'll have to take with me . You know that I 'm a little bit lazy , but the main reason for not writing to you has been the accumulation of exams during this month . There I was impressed by how a singer can cause such hysteria in teenagers . During the two - hour concert we had to attend to thirty - six people who became unconscious after being trapped in the first row by the other people . Answering the second question , I would prefer my accommodation to be in log cabins . And when it finally started , it was n't Danny Brook who performed . After the show I wanted to drink something in your theatre restaurant but when I arrived it was closed because the show started too late ! So I ask you sincerely for my money back because it was n't a perfect evening out . I told her that my parents are getting divorced and that I will move to Chicago with my mother . One day , Pat and I were going home , when she asked me if I would give a party before I go . I had to tell her that I did n't have the time to organise anything because we , my mother and I , had to get our stuff ready to move . But when we got into the house there were all my friends ! We had a great evening because Pat was n't very good at keeping secrets ! I am writing to give the information you asked me for and also I would like to request some information about the prize . Furthermore I would like to choose to stay in a tent instead of a cabin because I think it could be more exciting and could provide more contact with the environment . He had a puncture and he did n't know how to repair it . Then I changed the tyre and during this time he was asking me about my hobbies , studies , everything . I am writing to you in order to give you some details you asked me for in your letter . The job was hard , but , from my point of view , it was worthwhile . The most exciting thing was when we removed all the stuff the day after the concert , and we went to the Highlands to spend the whole day there . That was fantastic ! If you have never been there , I really recommend you to go . But we decided to buy a picture , because she had always told us about art galleries with great excitement . Yours sincerely Despite the fact that going to school by bus was easier than going by bicycle , I had preferred going to school by bicycle to going by bus . When I went to see her play , I really would love to be an actress . It was my dream . I wish my daddy Especially in the summer when the temperature and humidity are very high . From the list of all the activities I have chosen photography and golf . I have chosen golf because I have never played this game . My friend offered me a job as a member of the technical staff at Sting 's concert . We 've built it using ready metal and wooden parts . I was working with a specialist who had to connect all the lights together to one computer and prepare a colourful show . It was a totally new experience for me and a real pleasure working with professionals . For me - the dance shows were absolutely wonderful . I prefer them to others . We chose some of them and we were glad that we had our reasonably priced ticket for all the events because we could change our plans during the event . Most students wear jeans and a sweater . Next year , you should calculate or examine how many people will come before you choose a hall , which I feel very good was plays and films . And the offer of a " weekend ticket " was an excellent idea . Because the price was cheaper than buying it separately and more convenient . Yours Sincerely , Finally , food shops should be added to this festival next year because only plays and films were not attractive enough to get audiences . Yours sincerely , However , I can go out whenever I want , even at midnight . Secondly , boys are not allowed to have long hair . I feel that they would be fabulous places with a western design . Another disadvantage of the festival 's programme was the lack of plays and films which are the best to display a modern country 's culture , I think . In conclusion , I would like to say that in spite of the success of the festival some improvements still can be made . Fortunately , there are many ways to earn some money nowadays . In addition to baby - sitting , you may also give some lessons to small children such as ( tl ) teaching them to read or write or just basic rules and words of a foreign language , English , for example . But if you do n't like children and are not easy - going enough to work as a waiter you may choose the more peaceful job of a typist at home . So , you can help them and earn quite enough . Moreover , men prefer to do sports , because shopping wastes a lot of time , which is contrary to the tastes of women , because if they have any free time , they will go shopping . Finally , I would be interested in meeting artists from everywhere in the world not only European artists . In conclusion , I had an unforgettable time . The restaurant was closed because there was n't any electricity . You should close the theatre until the restaurant can be used . I was totally unsatisfied with the theatre and I would like to have my money back if that 's possible . I 'm quite sure that people all around the world will be wearing very different clothes in the future because people , especially women , who like to be very elegant and beautiful , will create and invent all kinds of clothes to anybody and that 's it . You ca n't be careful because you do n't know what time it will happen . But you can be careful when you speak with he or she who is stealing your things . I am writing this as a reply to your request to provide you with some information about my preferences . I am not so keen about the accommodation but would rather stay in tents than cabins . We live near the seashore and swimming is the sports activity I am really good at . Sometimes I feel very sorry for her . Lots of families plan a day out to go to a shopping centre , and it is a normal routine for them - to spend all day just shopping . I would like the trip to start in July if possible . Because this is my holiday start at the Camp California , I would like my accommodation in a tent , because I work in the Army and on the camp I usually stay in a tent at night , so I will feel more comfortable . Regarding the activities I would like to choose Swimming and climbing for my activities at the camp ; I usually do these two activities on the Army Camp . I know how to climb up on Rachiat outside and help other people to climb up . To make a daily life video in school , we should concentrate on the things we do most in a school . The thing we do most in a school is have lessons . It will be a very useful part of this video and should be the main subject . At the end of the video , we should find one or two students sit together and ask them a few questions about how they feel about studying at the school ? This is the suggestion to making a daily life video in school . It would be great . And we could n't wear any colourful clothes and socks . I 'm persuading my mum , perhaps . I am writing in response to your advertisement in today 's newspaper . In addition to this , I was wondering if you could organize the same festival in the summer . Unfortunately , Daniela fainted . This story happened a long time ago . Now Pat realized what was going on and could understand why her boyfriend got so nervous about the secret . Nevertheless , I lost my concentration on my studies and I spent the money on entertainment . I will never ever help anybody to organise a pop concert again . But after this servile work I met Eminem . As regards painting , I know a lot about it since my grandmother taught me when I was five years old . She also told me that she has some connections with the people in charge of the lights at the concert . Since I am going to travel I would like to know how much money it would be advisable to take and what kind of clothing I should take . Or approximately how much money would be enough to buy souvenirs because this will be the first time for me visiting California . Finally , I must choose travelling there in July because I am not allowed to take holidays in other months due to my work . However , things which you can get with money do not necessarily fill your dissatisfaction or even as you buy something more and more , your emptiness might be greater . And shopping is also a difficult hobby to go along with your friends or your partners . On the whole , shopping can be harmful rather than enjoyable because you might be extravagant , lose your friends and have what you do n't need . We think we could change the shopping to go to the show . To sum up , there is no perfect job , and being famous involves a lot of money , but also a lot of journalists following your private life . All the group would enjoy going to the show , because it is a great opportunity to see an exhibition of the latest fashions . For example , we ca n't go to the toilet during lessons . We have to go there in the break . It 's too strict . I do n't like it . My name is Sandre Atos , I am writing to you because last weekend I went to the theatre you manage , to see what was called " London 's newest and best musical show " . That 's why I am writing to ask for some money back ; I believe I have this right . Unfortunately my parents did not realize how TV was creating a role among us . On the other hand , due to scientific developments , I am getting better , recovering from asthma . I had a very disappointing evening last Saturday . I had everything planned ; my family and I were coming to watch your show and then have a decent meal at your theatre restaurant but it was disastrous . Then everything was going well until the show did n't start ! That was a disappointment for my whole family . In fact all the audience were very disappointed . Anyway the show was nowhere near as good as it was meant to be and it was definitely worse than I had expected it to be . I did n't enjoy it at all so I was relying on the food to fill me up and relieve some of my stress . So as soon as the show was over we walked out and followed all the signs for about 5 minutes , desperately searching for your restaurant , our stomachs rumbling for food . What kind of an organisation do you call this , sir / madam ? You do n't understand how disappointed and angry I was that night . In fact he was one of the principal busybodies of his neighbourhood and his school so not a lot of people in his school liked him . Some were just friendship groups but others took it seriously , maybe just a bit too seriously . They gave themselves names and acted like gangs rather than just groups of friends , and started picking on younger people , or members of other gangs , trying to start fights with them . This went on and on , got more and more serious , but it was so secret that the teachers did n't notice . Everyone in the year was annoyed , but not with Pat , oh , no ! except a few psycho groups . Some of the more serious ones decided to raid this party , just for the fun and meanness of it . Everyone was enjoying themselves except Pat , who had heard about the raid . The time had come . The who groups had combined their forces and were ready to strike . Lots of People were injured and even more were suspended the next day at school , when the Headmaster found out what had happened . Pat received no punishment at all and he was n't blamed for anything by his teachers or friends . But he felt awful because he knew that all this had happened because of him . Do you like do - it - yourself and is your house full of marvellous but useless things ? You could sell them to a specialised shop and finally tidy up your room ! I am writing in response to the International Arts Festival , which took place on 21 - 22 November . I would like to inform you that it was a great idea and a valuable activity as a social event . However , it was a disappointment when I realised that not many countries were attending the event . I would have liked to have seen more countries from all around the world , for instance , the Far East , Indonesia etc . On the other hand , I enjoyed being one of the people seeing the plays films , the dance shows which were brilliantly performed and the art exhibitions . Finally , I appreciate your organisation and look forward to hearing about the next International Arts Festival . What a pity ! Private schools have a more relaxed atmosphere than the state schools . Of course smoking is n't allowed in any part of the school . Apart from that I would n't mind at all whether I stay in tents or log cabins but if I have to choose between these two I 'd prefer to stay in tents because they give me a nice feeling of relaxation . It is very unusual to stay in log cabins while you are camping . Photography is a very interesting activity , and is not too hard to do either . Worst of all , at the end of the Musical , I went to your Theatre Restaurant , in order to have dinner , because I had left home without eating and so I was hungry at that time . First of all , modern technology has changed my daily life in the last five years more quickly than in ancient times , or even than a decade ago . Nowadays , I ca n't go one day without consulting computer communications via e - mail or the Internet . I exchange correspondence with all my family via the Internet , with my mother and 2 brothers who live in Curitilra City and also with a brother who lives in Italy and another who is living in New Zealand . It 's written in the regulations that we ca n't leave the school during the breaks ; we ca n't smoke near the classrooms ; we have to justify our absences or lateness and even if you 're over eighteen your parents have to justify you with the teacher . Regarding accommodation I would prefer sleeping in a tent because I enjoy the closeness to nature while camping a lot . I sort of felt like I had done my part to make the concert a success . The show is going to be on Tuesday the 14 of March from 10.00 to 19.00 and we find it very interesting , because we will have the opportunity to see mews , firstly about the latest fashions , secondly concerning leisure and sports wear and finally about make - up and hairstyles . Thank you very much ! Most of the time they have journalists following them everywhere , looking for a great story or interesting pictures to put on the front page of the newspaper , and I do n't think this is very nice , but it is the price that famous people have to pay , just because they are popular . Anyway , this is not always necessarily a problem , but it can be a big thing for the famous person , because it gets people talking about him and increases his popularity . In conclusion , I can say that this is not the biggest problem that the world has and -- it is not my problem because I am not famous ! Coincidentally the show is in London and on Tuesday March 14 , which is during the period we are in London for the three - day programme . However , journalists should not only think about commercial value , because morality and principles are also concerned . I remember in August 1997 Princess Diana dying in the car crash was one of the most disastrous examples . Although we can not deny it is our nature - we are curious - we can improve our sense of morality and try to think about the importance of privacy for them . Basle , 12th December 2000 In your letter , you asked me whether the book I 've read would be a suitable present for your cousin 's fifteenth birthday . You wrote that your cousin is quite interested in magic , detectives and sport , did n't you ? I think this is the best choice for him ! As you know , we are in England to learn your language and also to learn about your lifestyle , and we thought this show would be a good opportunity for us to discover this aspect of your country ! Thank you for your letter , as usual , it 's a pleasure to receive news from you . It 's a fantastic book , which I recommend to everybody keen on love stories . It 's a perfect combination of passion and life 's difficulties . I reckon that it 's not an easy read , but as you described your cousin , I think she really will enjoy it , she 's so good at literature that it wo n't be a problem for her . I really think you should choose this one for her , it does go with her personality . It 'll be a good point for her general education . Wuthering Heights is a classic , which everybody knows about , even if they haven't read it , they at least know the story . How has modern technology changed my life ? A computer is extremely helpful with writing reports and essays . But also I am not able to imagine my life without this nice way of receiving news with help of it . I would be very grateful if you could let us go to the show . Furthermore , admission is free for students . Unfortunately , our programme is fixed but I think we could change part of the programme . Firstly , most people can remember the sad story of " Princess Diana " . She died in Paris a few years ago while she was escaping from lots of journalists called " Paparazzi " . However , secondly , famous people are not " alien " so they might do something , for example , shameful things in a public space , or argue with a partner or family , even put on a swimming costume like us . So they can be just ordinary people like us . Overall , people should think about what it would be like if we were famous people ... and then we can find the answer that all people , including famous people , need a private life and would like to have an ordinary life . They were eager to have a child , but they had never been able to . About when I would like to travel , I think that my answer will be easy for you , because I have two months off , those are July and August , so my trip should be in between . Regarding my accommodation I would like to stay in a tent because I remember my holidays in the south of Peru , a long time ago ; it was wonderful . If it is possible for you to help me clear up some doubts I have , I 'll be really grateful . Yours faithfully . First of all , I 'll tell you that on the day of the concert I woke up at 6:30 a.m. , very early for me . You know me , I 'm lazy . The work began around 8:30 . It was very hard but then the band came to rehearse . From that moment I enjoyed working until the concert had finished . The atmosphere was wonderful , the musicians were very kind to everyone who was working because they understood that putting on a concert is a job to be done by a team . Finally , we would like to get your permission to go . Maybe if it is possible that you can change your programme , we can go to your college any time after Tuesday . This story happened two years ago . Not only was I a member of the swimming team in our school , but also I had been taught by my father since I was five years old . I started thinking about it . After all , either had I never done this task before , or trained . It was really a reasonably priced weekend for me , but you should also introduce new activities like competitions in singing songs or drawing a portrait next year . Secondly , the show should have started at 19:30 p.m. , and it began forty - five minutes late . Moreover , when I went to buy the tickets no discounts were available . Furthermore , I wanted to have a coffee after the show , but when I tried to get to the theatre restaurant , it was closed . Balloons and coloured lights were put in all the trees . I carried a lot of chairs and looked after the queue or people who lost their way . As we are going to be in London on this date , we think it could be a great opportunity for us to go there because we are very interested in the latest fashions , make up , etc . and it is free for students . Because of this , we would kindly ask you to change the programme so that we could go to this particular event . A special invitation It allowed people to enjoy their weekend , relax , and also it brought a foreign culture to them , broadening their knowledge . In addition to this , one weekend ticket for all the events was only £ 10 . This was excellent . It meant people only spent pocket - money , and then they could watch all the events at the weekend . For them it is a really economical way to spend their weekend . Moreover , the stars and artists were from only six countries . In my opinion , if you can invite more stars and artists from more countries , it will make the festival more exciting , more interesting , and in my opinion , some of the concert halls were too small . The people in there could n't even go to the loo , because it was too crowded . These are only my immature views . If it is considerable for you , I will be very pleased . Thank you very much . It was very uncomfortable for me . Today I received your letter . It is the most wonderful news I have heard in a long time . I am so pleased that I won this prize that I can not explain how grateful I am . Because of this situation I will be very busy in the first week of July , and I would appreciate it if you could give me the option to begin my " Camp California " experience on July 10th . About the accommodation I would prefer to sleep in a tent , because I have never been in one , and it is a lot more fun than log cabins . Because I have seen my father playing golf since I was a child I am very keen on this sport , and also I love photography because I have got a great camera . When I was a child I never liked to go shopping because my Mum spent so much time in the shops that I remember that going shopping with her was a nightmare . It is amazing how people change over the years For example now shopping for me is one of the most entertaining things , and every week I have to buy something . But these days shopping is not always enjoyable , because if you decide to buy a very expensive designer and you pay the full price , at the end of the season it is half price . I find it very unfair for people who pay a lot of money for their clothes . Anyway , shopping is always satisfying for rich people , because they can afford it and they do n't mind paying the full price for their clothes . Modern technology ca n't not transform our daily life . The inventions of the aeroplane , of the train and of the car , have reduced the distances of the world , so we can go to the other side of the world in half a day . Everything has changed : style , colour , quality . Fashion . We saw almost all kinds of skirts , trousers , coats , skirts and even hats - which until now have been the main point of many fashion creatures . Grey and black - like the seasons , like people 's characters , like all the night and dark surrounding us . In the advertisement , it said that Danny Brook was starring , but in place of him there was a different actor and he was really disappointing . As you can understand , it was a dreadful time and I want my money back as a consolation for the disappointment I had . I support this idea which is convenient both for the public and the organisers . It is awful ! However , we promised our parents to do some cleaning every week . What is more , there are many new ways to produce medicines and modern hospital equipment . The second is nuclear weapons and the many wars in which modern equipment is used . To sum up , as far as I am concerned , modern technology has changed my life completely . Last week , during my holiday in London , I had the opportunity to see the show " Over the Rainbow " at the Circle Theatre . The day of the show , we got to the theatre at 19:30 . Third , the theatre restaurant was closed because the chef did not show up . You can feel the fresh air and listen to the animals . This will be a great opportunity ! I am not good at either activity , but it will be a pleasure to try them , especially surfing . I would like to feel the wind in my hair , and enjoy how quickly the board goes over the sea . I mean , it is too crowded , you have to wait such a long time before you can pay , and most of the things are too expensive ! I was looking forward to a great evening , but much to my surprise , that was not exactly the case : there were no discounts available , such as were mentioned in the advertisement ; the show started 45 minutes late ; I was then very disappointed to see that Danny Brook had been replaced by someone else . Yours faithfully , I will take the example of the use of the Internet . I am writing to you because yesterday I went to the musical " Over the Rainbow " and I had a bad evening . First of all , I would like to travel in July because this is the beginning of my holidays , and I would not like to miss some of my school classes . Besides , I would prefer to stay in a tent , because I got used to being in tents since I spend my holidays every summer with my friends in the hills . In addition , I would prefer playing tennis . I also like surfing . I think it is a dangerous sport , but I know how to do it , because of the fact that last year a professional surfer taught me . I'M WRITING TO YOU TO COMPLAIN ABOUT THE MUSICAL SHOW " OVER THE RAINBOW " WHICH WAS PERFORMED LAST WEEK . YOURS SINCERELY Because I am a university student , I have got classes until the middle of June and I have to attend a ' Research and Development Conference ' at the end of June . Otherwise I have to work at a business department office as an assistant from the beginning of August . I always want to buy T - shirts , Jeans , Skirts , cosmetics , haribands , accessories , rings , earrings , bracelets , shoes , hats , bags , fancy stationery , interior stuff and CDs . Instead of buying something , I buy some fresh food and Ice - cream . I can try all the shoes , clothes , hats , accessories and jackets on . Actually , I could have a chance to ask her about music , her favourite artist and her hobby . Likewise , there were no discounts available . Because of all these inconveniences , I ask you for a total refund . So when Caroline , his girlfriend , told him something personal and very important , because she trusted in him , immediately he went to see one of his friends to tell him the secret . So immediately she went to Pat , angry , in order to argue with him , saying that she was annoyed by the way he behaved , and that it was n't the first time that he was n't capable of keeping a secret . But after I climbed two steps more , my right foot slipped . I nearly fell , but luckily my hand caught a rock . It was dangerous , but I did n't have any choice . Finally I did it . I think it was definitely not the perfect evening guaranteed in your advertisement . I was terribly annoyed ! I am always available on my mobile phone , which is also boring sometimes ! I often go on the Internet to find information when studying a particular subject more closely ( university technology sites ) . At work my particular job involves two standard PCs with specific software plus one workstation with the Stanford University Network ( SUN ) operating system and a special computer that my firm is now developing . I hope this matter will receive your prompt attention . For example , if you were hurt seriously like cutting your leg off , the new medical technology could rebuild part of your body . Also we should be careful as we could be watched by security cameras which have been combined with modern technology . In conclusion , I conciderly said we has been charged by morder technology in two ways . I am not very good at painting , but I choose it because it is a good opportunity to do it . I do n't want to disappoint you , but I am beginner ! In this book , Heathcliff as a child was n't a bad character , but the situations he lived through with the Earnshaw family , where he grew up , made him rude , aggressive and noisy . Before Heathcliff died he achieved what he wanted . In your letter you ask me to choose between tents or log cabins . Well I prefer to stay in a log cabin . It is more comfortable and I am afraid of wild animals . The other activity I like very much is swimming . First we had to prepare the stands with food and drink and buy something which had been forgotten . He is very beautiful ! Fortunately we had no problem . I was very proud of myself and the work I had done . Modern technology has completely changed my daily life , which has become more comfortable , and easier . Thank you for the excellent programme you have organised for our class . We would like to inform you that we are all extremely interested in this show and that it could be a great opportunity for us because entrance is free for students . We would like to ask if we could go to this show on the 15th March instead of doing the visit to the Science Museum . Who has never dreamed of being a famous singer , sportsman , actor or a politician ? Firstly , this is because there are a lot of scandal magazine readers . What a catastrophe ! A disaster ! Also , I used to assist my brother , who is a professional photographer . When I read the advertisement for the show I was really excited but after the show I was not very happy because of the following problems . The advertisement says that Danny Brook and Tina Truelove would play but in this show there were totally different actors and that was really disappointing because I was looking forward to them . The advertisement also says that there are discounts available but this is not true , there were none . Why do you give this information in an advertisement ? I have only one question about the baby 's accommodation . So , you wo n't believe me , but I enjoyed helping at an Oasis concert . Me and my friend were there to hear the sound - check , and when I understood what was happening on the stage , I decided to help them . Of course you know I 'm a singer , so I came back quickly to my home , I picked up my microphone , and I handed it to the singer . Can you imagine ? I will consider taking this complaint to court if I do not receive an acceptable explanation from the theatre . On the other hand , people in the future will probably wear clothes to protect themselves from the polluted air and water , the harmful ultra - violet rays from the sun and all the dangerous and poisonous gases or chemicals which are the product of a developed and full - grown country . Therefore , I will suggest that we all nov to keep the environment clean and healthy for the next generation . When I first heard about Over the Rainbow I was very excited about the idea of seeing it , plus when I heard about the extras that the circle theatre was offering , it became the best opportunity I ever had to attend a musical of that type , but instead of being the best evening I ever had , it was a total disaster and that 's the reason why I am writing to you . First , the actors that the Circle theatre publicised on their tickets for Over the Rainbow were not there , which was very disappointing because the actors starring in the musical were one of its major attractions . Another point that I want to complain about is the time that the musical was supposed to start ( 19:30 ) but it started at 20:15 , so there was major dissatisfaction with that , but the last and worst thing was that your theatre restaurant was closed because the British health institute considered your food unhealthy , and I am not taking into consideration many other points like unsatisfactory service , and uncomfortable seats . Science and Technology is a theme very much discussed nowadays , most of the community of our city , and of the world , where technology has arrived , confirms that it has in some way improved their way of life . But not everything about technology and computers is good , because many people , and me in a control way , have become computers ' and technology 's slaves , and we can not do anything without a machine , and I am not saying that it 's wrong or bad , and I accept that they make our daily tasks easier , but we have to maintain our independence as humans . First of all , there are quite a lot of advantages to shopping , which are that it can be the solution to our stress and boredom . Also shopping makes people happier by costing a lot of money and it even influences the economic situation more flexibly . Also there are plenty of dangers since lots of people have their wallet stolen because it is a public place and there are too many people . In addition , shop owners often cheat their customers by increasing the cost secretly . I 'm really pleased I won your competition ! I 'll give you the necessary information about me . The most suitable time for me is July because in August I intend to go to the countryside , where I have a small farm . You offer me a lot of activities . It was absolutely great ! I gave information about correct ways to other places like toilets and medical points . I looked very carefully at the organisation of the event , you know I 'm interested in it . I was so surprised to hear from you . I was really grateful when I received your letter which informed me that I have won first prize in your competition . Personally I prefer to stay in log cabins because they are much more comfortable than tents . Unfortunately I am not good at either of them . I really hate it , because we 're not allowed to wear casual and fashionable clothes , colourful shoes or colourful socks . I am very excited and looking forward to the new experience I am going to have . I would prefer to stay in tents because I love the atmosphere of camping , but I would n't mind staying in log cabins . It is based on information made available by students from each class at school . It seemed to be the most interesting lesson , because students always make some mistakes while they are practising with their partner , in spite of having been told by the teacher ten times . Spending time together out of the class is a nice experience . Firstly , I should say that I would like to travel in July because that is the month which I could most likely have off from work to go on holiday . That is because , I do not want to seem fussy , but I like to have some luxuries when I am going on holiday and I think sleeping on the floor without electricity may annoy me . Conversely , painting is an activity which I have never tried before , so I have not any skill in drawing but I would like to start doing that now when I have the chance . On the other hand , I would like to know some information which could be useful on my holiday like : what type of clothes would be more suitable for me in the Camp ? I am writing to tell you about my experience at the pop concert last month , where I was helping my friend Nick , who was the bouncer at the venue . My job was to accommodate to the people of the main sit of the theatre . So , I hope to see you soon to show you all my photos . I think it was very clever of me to record that moment which I will never ever forget , and that was the thing that I liked most about that experience . I 'm writing to you to make a complaint about your musical show : " Over the Rainbow " ... Last week , I , my husband and our two children went to your theatre to have a good time , but we were so disappointed . Moreover , there were n't any discounts available like writing in your advertisement . I will always say thank you very much to the inventor who has invented the machines which do the washing and the washing - up , before this , women spent a long time doing these tasks . I am writing to give you further information about me which you need for Camp California . In conclusion shopping is enjoyable but not when it is too busy . 1 . Grammar , which is the basis of learning English . Speaking : it makes you more confident when you talk with other people . It lets you get more practice . Writing . This class teaches you how to organise what you want to write . It is important to practise your English after lessons . If you have a problem studying , try asking the teachers about which is the best way to study . Yours sincerely I am writing in reply to your letter in which you told me I won the first prize . So I want you to send me some money back for that unpleasant night . The headmaster wanted to tell the police what we had done so we decided to imprison him in a little house we had twenty kilometres away from the village until we could change his mind . We took some photos of him naked and told him not to tell anybody about this because if he does we will hang the photos all around the village . In the following edition the headline was : " Why does a teenager sleep with a toy called Max ? " Everybody laughed at her . I would like to travel only in July because I will have some holiday at that time . 3 When you are ready to shop , sometimes you know beforehand what is your priority , because probably you need one thing rather than another . But the best thing that we do , when we go shopping is spend time having lunch at a snack bar , watching movies and playing computer games . Last month , I worked as a roadie at a Rolling Stones pop concert . I was responsible for the sound . Some people when they are tired relax by sleeping , reading a book or watching television , but not me . There are always , at the end of the afternoon , some well - dressed women coming from their offices and they just spend one hour in the shop without buying anything . However , it is true that shopping is not always enjoyable , for example before Christmas or during some special sales . Secondly , the show began forty - five minutes late and nobody told me what had happened . I preferred riding a motorbike with the people who studied with me in the Institute . You have a chance to meet people and now you have an opportunity to select good friends . I like Danny Brook as an actor and when I read that he would be starring , I booked the ticket immediately . I belong to the generation who have grown up with a lot of new technology . For example , TV , telephone , microwave etc . I thought I would never need a mobile phone , but my mum and dad gave me one for Christmas last year and now I ca n't live without it ! But the invention that I 'm most thankful for is the computer and the Internet ! So , I start every day by switching on my mobile phone , to see if there are any more SMS messages before I go to the library to check my e - mail and that 's just the beginning of the day ... Second , I would rather stay in a log cabin , because I tend to get very nervous in small closed places , so a tent would be inappropriate for me . I haven't played golf for a long time , so it will be pleasant to do so . Yours sincerely , The fans started shouting and whistling for the show to begin , while I just stood there trying to see what had happened . When we saw your advertisement for the musical show , over the rainbow , we immediately decided that this would be a perfect evening out . Thirdly , in your advertisement it said that discounts would be available , but they were not . I am therefore asking for compensation for our disappointing evening and hope we can reach a solution as soon as possible . I really like Pat , she 's funny , has a good sense of humour and like me she loves to discuss everything . I have received your exciting letter , informing me that I have won two weeks at Camp California in the USA . I much prefer sleeping in tents . It seems more sociable and really sounds like holidays . So one week before the concert I went to " L'Arena " to meet the other worker and receive the instructions . I 've had the honour of helping their sound engineer and branching the cables for microphones , guitars etc . We really started to work like ants the morning before the show . It was exciting looking at all three men working together and building a stage , and it was interesting to help the sound engineer to check the sound and configure his computers to get the best sound possible . About two hours before the beginning of the show , we met the band and received tickets to go backstage . That was wonderful , maybe better than the concert itself ! That 's a great experience ! Apart from this , photography is one of my favourite hobbies and I usually spend nearly all my spare time doing it and of course I have some diplomas as well . I would like to request some information about accommodation and if you could specify what this trip includes , since I need to know how much money I have to take . I feel that this was a good opportunity for me , not only for my professional but also for my personal life . According to my job , I had to help the teams with the outlights and , of course , it was my first professional experience : in the end I felt like one of them , because they were so kind to me , and I could help a lot and I learnt a lot with this project . I prefer that kind of accommodation because I can have a kitchen or even a bathroom there , but I ca n't have it in a tent . These are my favourite because they have a lot to do with water , but I like them more than surfing . I agree with this statement especially when we talk about small shops in the centre of a big town . These days people prefer shopping at supermarkets rather than at shops or even shopping centres , because shopping at a shop is less enjoyable and you spend the same amount of money . There were 963 people at the " Armageddon " that night ! You must show a great sense of responsibility . I 'm sure you are jealous now . Now I am studying and I 'll continue my studies until the end of June . I think it 's a very useful and helpful thing for my health , especially when I do it with pleasure . The second of my favourite sports is tennis . I 've played tennis for ten years . I 'm a professional and I have to be good at it , in any time . The most enjoyable thing was to dress people . But when we saw our show and heard how loudly the audience applauded them we were proud and understood that we spent a good time . You should try it and see . I would like to stay in a tent because I used to go camping at weekends but if there 's any problem I could be very comfortable in a log cabin too . I have never tried either of them before and as a result I ca n't be good at them but I 've always wanted to sail because I love the sea and now I have the opportunity . If you do n't mind I would like to know what kind of clothes are appropriate for the camp and for the Californian weather . First of all , we usually go to the shops at the same time as the rest of the world and that 's a little bit complicated because the shops are full and it 's impossible to try accurately . I would be grateful if you could send me the full details . In the following paragraphs I will discuss the advantages and disadvantages of shopping . In a supermarket , shop or department store they have many things . It is very convenient . Sometimes , there are so many people and they are not friendly at all or you are in a hurry while you are in a long queue . Most people enjoy shopping because it is more convenient today but if you found a busy place for shopping or it was not as good as you expected . Dear Sir or Madam , With reference to your advertisement regarding the musical show " Over the rainbow " I am writing to you with the intention of giving you an impression of our experiences attending the above - mentioned show . We were disappointed to realize that not Danny Brook but a different actor played one of the main characters . According to your advertisement the play should have started at 19:30 . What made the situation worse is that no explanation for the delay was given ; not even an apology . A story of an old seaman leaving his town to prove that he is still able to catch the biggest fish ever caught . Last week I was on holiday in London and I was very disappointed when I visited your theatre . First of all , the show was supposed to start at 19.30 , but it was delayed until 20.15 , and when the show finally began we were surprised to see that Danny Brook , who was the star of the show , was not playing and someone else had replaced him and he was really disappointing . Anna told her again : " Pat do n't tell anyone please , especially my brother , everything would be ruined then " . And Pat answered : " Do n't worry I wo n't tell anyone " . The big secret was that Anna was preparing a surprise party for her brother John and she did n't want anyone to know about it . It will be a pleasure to give you all the information which you need . As far as I know accommodation at Camp California is in tents or log cabins . It 's more convenient for me . I am a good defender . I 'd like to know what temperature it will be in July in California and your advice about how much money I will need to have an unforgettable holiday ! If we decide to buy something special and we have enough money for it we have to go and buy it . During a prior holiday in London I came across an encouraging advertisement for the show and decided to see it . Unfortunately , I was very disappointed to find out that there were no discounts available ! In addition , I was very annoyed by the fact that the event had started at 20:15 - not 19:30 as stated in the advertisement . I 've always enjoyed danger and this time getting the password was , indeed , a tough cookie . Especially now , when ' big - mouth ' Pat has spread the news to literally everyone . I would n't be surprised if suddenly something bad happened to me . Furthermore , for the activities I want to select Tennis and Basketball because I have been playing tennis since I was young and basketball because I played for the team in my college as the captain . Anyway , this was my experience working at the concert . If you have an opportunity to help at any concert you should help because you have a lot of fun as well , OK . I am writing to you , in reply to the letter I have recently received , to inform you about some details that I am concerned about . In your letter you presented the possibility of choosing two activities and I would like to let you know that I would be pleased if I could join in with basketball and climbing , as I am very good at both of them because I played basketball in my secondary school as captain of the team and due to my long training sessions lifting weights . There is , as well , the struggle you have to endure when you find yourself in the crowds , crammed in the small shops during the only day - off you have to buy something you like . All this can easily lead to a nervous breakdown , particularly when you realise that your money has been stolen either during your difficult way through the crowds or while you were queuing to pay . I 'm the winner of the first prize in your competition and I 'm writing to you to give you some information which was requested by you . And it 's creating a lot of addicted people , called " shopaholics " . I am writing to you because I had a very disappointing evening at the Circle Theatre . He told me that it was necessary to do something about it . As Pat was losing his patience , he decided to talk to him . I can say that I was very nervous and anxious about what was going to happen . I am writing this letter to inform you about the decisions I have made regarding your questions . When I was a child I was afraid of all these little insects that live in the ground and this fear still remains now . I also think that the log cabin will be much more comfortable than the tent . Basketball and swimming are the two activities I have chosen . Finally I would like to ask you for some further information about the clothes and the money we will need . I was only responsible for the property of the back stages . I was shocked and terrified the first time I saw them , but the truth is that they are men like us . They have a very simple life and behaviour when they are n't on the stage . Definitely , it was not my perfect evening at all and under these circumstances I really believe you should give me my money back . I received your letter about the two weeks I won at camp California in the U.S.A. I would like to travel in July because I will have holidays in that month . Yours sincerely Also , we will take the drinks from our canteen and there will be a group of musicians for our entertainment . I was surprised because I did not know what he wanted . When I went he wanted to tell me that from the next month I would be his personal secretary and my salary would be twice what it was previously . Unfortunately , the musical show was n't much like that the one the advert had described , and that is why I want to ask you for some money back . Now I have a new computer , which is very easy to use , and comfortable for my fingers and also faster . And he can answer me very quickly . I think it is now the future of big companies to work with the Internet . I am writing to inform you of some problems we had . We had to wait over 40 minutes It seemed to sink into the sea , but fortunately , the storm soon went away . Finally when it started we noticed to our surprise that it was not the right actor on stage . Afterwards we wanted to go for a pleasant dinner . Anyway , we definitely know that they 're going to change . In the paper it was written that the principal actor is " Danny Brook " but it was n't him , it was a different actor whom we had never seen , or heard . Unfortunately , Pat was n't very good at keeping secrets , this sentence is very popular in our school . I helped to guide foreigners who would like to participate in that . Thank you for your letter . I was so happy to receive such good news that I could n't believe it . Regarding the accommodation at Camp California , I prefer to rent a tent , which is going to be more fun , I think , but are the tents singles ? Is there only one teacher for each sport , and how many are in each group ? It 's the place where you can meet your friends , where you can talk freely , and there are no teachers . It could be a good contrast to the seriousness of the lessons . Finally we should film the lunch , which is also a moment for the students , and for the teachers , to relax . We must n't forget to film the staff room because if a school is made of students , it 's also made of teachers . I would like to thank you for your letter you recently sent me concerning the competition for two weeks at Camp California in the U.S.A. First I want to thank you for all the congratulations , and I 'll try to answer all your questions about , for instance , travel and accommodation . I have to tell you that it is only possible for me to go on holiday in July because my father is very ill and it is only possible for my sister to take care of him in July ( because her small children are in summer school at that time . I was so happy and surprised that first I could not really believe it . Secondly , regarding the accommodation , I would say I prefer living in a tent rather than in a log cabin because I used to sleep in a tent when I was staying in a local scout camp in my country . Thirdly , I have chosen Sailing and Photography from the list you gave me because both of them are my favourite hobbies and I have been enjoying Sailing and Photography for several years so I am quite good at both of them . Finally , I would like to ask you whether I have to prepare any special clothes for camping or will the camp provide them for me . A group of girls can stay in a shopping centre forever . Thank you for your letter and I am very pleased that I won the first prize in your competition . In addition to all this , I would appreciate it if you could let me have more details about clothes and how much I shall be paid for the trip . Another reason is that it will be more useful for foreign students who want to speak English . The number of foreign students has recently been increasing . To sum up , it is recommended that speaking classes and school trips should be filmed . First of all I would like to thank you for giving me the opportunity to travel . You asked me some questions about the day that suits me the best to depart , the accommodation I would like to have and so on . Travelling in July , I have to say , would be perfect for me because my birthday is on the 24th of that month and I wish to spend my birthday in the best way possible , so that means there . I also would prefer to sleep in tents , which are more comfortable , and , because I have been doing lots of camping , I am quite used to this kind of accommodation . The activities I have chosen both represent a passion for me . We are writing to you to complain about the musical show " Over the Rainbow " , which we saw last week in your Theatre . The advertisement said that it starts at 19.30 , but it actually started at 20:15 due to a problem with the sound . We were also surprised to discover that the student discounts were n't available for us , because they did n't accept our student identity cards from Switzerland . What is the effect it has on your environment ? The major problem for the industrial cities is to deal with the bad effects of pollution on the environment . A lot of money is involved in research to stop the increase in levels of pollution . To sum up , all the improvements come at a price : the condition of the environment . When it was time to take the final exam , she became ill and she could n't do it so the teachers decided to allow her to pass the course because she had a lot of good marks , but on the other hand the principal disagreed and did n't give permission to pass her . She had to repeat that course and all her friends passed and as is usual the girls from the last course became popular . Pat , to win her new classmates ' friendship , told everything that she knew about her friends and , because of what Pat said , her friends ended their friendship with Pat because their popularity was damaged . And it is even more difficult to predict what clothes in the future will look like . I saw the performance and it was not as it was described in the advertisement I read in the local newspaper . Then , I was planning to buy three £ 20 tickets because it was mentioned in the advertisement that there were discounts available but that was not true , so I could just buy two tickets and my son could not see the show . Finally , I was thinking of having dinner in the theatre restaurant after the show but it was closed due to some problems with the employees . What was supposed to be a perfect and enjoyable evening , resulted in a very disappointing time . So I would be grateful if you paid for a full refund of the money I spent on the tickets . Computers , radio , CDs , satellite television and a lot of other things have changed my daily life . Another advantage is that , for example , satellite television , which is an example of modern technology , keeps me informed about what is happening in the whole world . After considering your accommodation offers , I 'd rather stay in a log cabin if possible . It would not only emphasize the sharp contrast between this and the classroom atmosphere but also show how they are as young people . On top of everything , the restaurant which was advertised in the advertisement was closed because it was being arranged . You can imagine how disappointed I felt after that evening , and I am writing to ask you for a refund of part of the money . But , in other things , I think modern technology hasn't changed my way of life too much : I do more or less the same as I did some years ago : I get up in the morning , go to school , have lunch , study and go out with my friends without being affected by microchips or nuclear energy . I have happily received your reply and I want to thank you for this marvellous prize you have given me . After helping to do that and many other things , my friends and I watched the concert and before Green day ( the group ) left , they came up to us an thanked us for all the hard work we did , and shook our hands . It started at 20:15 leaving us waiting for forty five minutes . In the future people will wear clothes made of polyester and nylon because cotton and wool will be rare and expensive . Also I think clothes will have many gadgets on them like a small oxygen mask in case someone goes in a place with extended pollution - I think there will be many such places in a hundred years - and a hat designed to protect people from the strong rays of the sun at midday because the ozone layer will be destroyed in a hundred years and the sunrays will do damage to the human skin . Now , it is already possible to send our shopping list by computer , and this option , in the next few years , will become the most common one . The new technologies will probably produce a considerable revolution in some essential parts of the house . For example , we will have computerized ovens , microwaves and freezers , or we will probably have central heating controlled through the Internet from our office . Firstly , log cabins are more comfortable than tents . Is there a possibility of exchanging different currencies to US dollars ? When you think of shopping , it reminds you of going out ( mostly ) with friends , looking for new things like clothes , accessories etc . and buying them . Then in the advertisement it said that the performance began at 19.30 . I was very nervous . So this evening was terrible . And now I request my money back . Among them , the mobile telephone , computers , telefaxes , different appliances for the kitchen , machines which help housekeepers to do any work about the house . So with the appearance of new modern technology people have got much more free time . Some years ago people , especially students , had to run to libraries in order to find a book about something . I use the Internet very often , and I must say it is very convenient . If I need to say something important to my parents or my friends , or if something terrible has happened to me , I do not have to run somewhere to find a telephone box . With it people do their work more quickly and successfully . I saw an advertisement which made it seem very attractive to me . Firstly , I decided to go see your show to be entertained by the performance of Danny Brook so I was very sad to find another actor on the stage . It 's unbelievable it was 45 minutes late . We stayed with a host family in a suburb of the city . The man said it was OK this time and we got in quite easily , we 'd made it . I 'm excited to be going on holiday there and , thanks to you , I will realize a dream that I always wanted to do . Yours faithfully On Monday we could first go to the Science Museum and in the afternoon to Greenwich . Everyone knows you because of the journalists , so you ca n't just ignore them , can you ? I am writing to you because of the unpleasant evening I have had recently . Earlier I had seen an advertisement for the show but the information on it was false . The last thing is that it was impossible to go to the theatre restaurant because it was closed . I would like to write about how it has influenced my daily life . I am a student at a technical university . When I needed some information I had to go to the library to find it in books or newspapers . The computer is helpful when I want to contact somebody very fast . The second thing is that when I needed a phone card to call somebody I had to stand in a long queue . Although we would like to visit the science museum , we can leave it to the next opportunity . What we suggest doing is instead of going to the museum in the morning we go to the Leisure Show and keep the afternoon programme the same . I knew I could not make any movement for my safety but I did and to my surprise it ran away . Since I am a student I have to follow the vacation programme of my school , which means that I would only be able to travel during the month of July . Concerning the activities , as a matter of fact tennis is my favourite sport and I am very keen on it . For the second activity I would like to enrol in surfing , because my husband , who is already a proficient surfer , keeps telling me about the excitement of this sport , and I think it is worthwhile trying , therefore I 'd love to be in the beginners ' group . It offers a wide choice of courses from cooking , computing , make - up , languages , geography , to culture and civilization . Once students have taken a shower after hard physical training they enter real life . Depending on their levels of proficiency , they have to study for instance languages which I personally find very important for a person working in the tourism industry because they enable staff to communicate with clients in a proper way . Students have to manage to speak at least three languages . Another important lesson to film is " culture and civilization , " so people will know that the waitresses trained at this school are not simply , as the French say , " pot - au - fleurs " , beautiful faces , but also well - read people . Last but not least is the class called " know - how " , which shows students how to cope with unexpected problems even if they are stressed . To whom it may concern , Firstly , the advertisement said that Danny Brook was going to star in the musical but it turned out to be a completely different person , which was very disappointing . Secondly , according to the advertisement , the musical was supposed to start at 19.30 but it actually started at 20.15 , which caused me problems . With all the dissatisfaction above , therefore , I would like to ask for some of my money back as my evening was not what it should have been . She saw some familiar faces on the other side of the street . And if it is possible , I would rather be accommodated in log cabins because I would not like to share the bathroom facilities with someone who I do not know well . I am in the school swimming team and I am interested in photography professionally . Could you please tell me what kind of clothes I should bring with me and whether the company offers us some expenses money to spend ? And what 's more , there were n't any discounts available and the theatre restaurant was closed : the only people who could enter were the actors and the staff . Well , it seems that it was n't my perfect evening and for all these reasons I demand to have my money back , I wasted £ 20 to see a show which does n't respect the programme I paid for . Science and technology can be useful : see for example the use of TV in the school or the use of the radio to learn a foreign language or the use of the computer to get further information about something that interests you . Again we 're so sorry that we are causing you inconvenience regarding your plan and thank you for considering us . But we could have everything we want . Home might be a mixture with modern styles and a natural appearance as well . These days a lot of countries have been worried about lands that ca n't have enough space to build houses . Because we are living a computerised life , we 'll able to do most things at home or these flats'll have these places as well . On the other hand , what might still be the same is to have good places to take a rest at home , such as a beautiful garden , a small terrace . Last week I went to the Circle theatre , for which you are responsible , to see the musical show " Over the Rainbow " . I think modern technology has changed mankind 's life a lot , especially since last century . The changes brought by modern technology are so important that today no one can live without this technology or without a part of it . In my situation for example cars and motorcycles are a necessity : I live on a little mountain at 160 metres altitude so I can not go to the city using a bicycle . Because of my " isolation " the telephone is very important and I need a good personal computer with a modem and the Internet to study or do research , because there are not any book shops to buy or borrow books in my little town . Only those who get good marks can take part in these activities , so sports activities are seen as a prize , so while the students are playing basketball , tennis , volleyball ... or they are swimming you can see satisfaction on their faces , and our volleyball team is excellent . Be careful , my own technology can kill me . The only convenient time to travel is in July . This part had to be saved for later because the concert organiser wanted to know the exact number of visitors . Here , I had to check the bags and coats of the girls . I think it 's because the last time I travelled ( with my friends ) , we stayed in log cabins , and when I was sleeping I felt something moving on my skin , then I woke up frightened and when I opened my eyes , I saw lots of big ants ! Gratefully I met all the staff , and Ricky took lots of photographs with me and gave me an autographed Record . I am also writing to make a suggestion and to give you my opinion about next year 's festival . An international arts festival is a great idea , but at the last die there were stars and artists from only six countries , and it could be more interesting to have the opportunity to meet artists and stars from more than six cultures . I could not listen to one of my favourite classical concerts , " La Moldava " by Smetana . In Italy there are n't a lot of rules at school and they are n't very strict . I am writing to you in order to describe my last visit to your theatre . Unfortunately , I am very disappointed about the organisation of your company . Firstly , the musical show started not at 7.30 p.m. but 45 minutes later . I do n't know whether it is a typical situation in the Circle Theatre that it promises much more then the people can get for their money , or whether it was on June 7 ( my visit ) only , but I do not approve of such a situation and must ask you for my money back - my bank account number is enclosed . Because people have fast and comfortable cars , they are much more mobile and can spend their free time more actively - they can often visit their friends and travel much more . Secondly , we can do our jobs today more efficiently . I found your advertisement in the tourist board offices and as the musical " Over the rainbow " seemed to be a good option I chose it . After a long time walking we decided to return and now the weather was so hot we decided to find a place to drink something . I 'm really very unlucky . However , we saw an advertisement for " The London Fashion and Leisure Show " and we would all like to go and see it . We could immediately see that it was broken . All synthetic material will be uncomfortable for these people . Women will prefer long skirts and short blouses and jackets . Men will wear as usual - a suit . For special occasions , for example a party , a concert , people will dress very smartly . I think that it will be dresses , and suits sewed by the well - known tailors . I think that we will observe a few slow changes in fashion , but I hope that new clothes will always be pleasant for people . As we have seen the advertisement for the programme the school arranged for us as a farewell activity , we are very appreciative and would like to thank you for your kindness , as all of them are very interesting and give us a chance to meet and join the other class , which we have hardly done at all . So this is a great opportunity for us to get used to the real world of fashion design , because in this show there will be a fashion show , a demonstration from make - up artists , and a contest for hair stylists . Furthermore , most of the famous brand of sportswear companies will be at this exhibition with their new products for the coming season . Anyway , instead of going shopping in the afternoon session , we will attend the show . We all think the programme is organised well . In particular we 're so keen on the idea of going to the National Art Gallery , to see the work of the greatest painters in the world . I 'm writing to you because we saw a great advertisement for the London Fashion and Leisure Show and we really would like to go to see that show . I think it 's a great opportunity , because we will have a chance to see the latest fashion , leisure and sports wear , and also the way to do the perfect make - up and hairstyle . In my opinion , we can have a great time there , and entrance is free of charge for students , which is very important as well . We thought that with that beautiful weather the seaside would be just perfect for relaxation , sunbathing and joy . However , the truth was a little bit different . The weather had changed suddenly , and there was no more sun , but strong wind and heavy rain . Despite that we were still thinking optimistically . We were thinking is so many other activities to relax and enjoy ourselves then sunbathing on the beach . The sky went completely black , so at first it was difficult to see where everybody was . I looked around and I realised a friend of mine was still in the sea , and fighting against the storm , trying to get to the shore . Everything was looking so dangerous but fortunately it ended well . I would like to apologise to you for my controversial opinion but I feel really disappointed . I came to London for a short holiday to meet new people and to have a taste of English culture . I 'd seen your advertisement which recommended the play ' Over the rainbow ' and I liked it very much . In the advertisement ' DISCOUNTS AVAILABLE ' was written . Shall I ask you one question ? - Why were n't they available ? Everybody was shocked and I was trying to keep the faith . Nevertheless , after the show I was very hungry so I went to the theatre restaurant and what did I see ? Finally - you offered a wonderful evening but I must say that if I had known that it was going to be like that I would n't have wasted my time . I feel entitled to write this letter and I feel the opportunity . Yours faithfully The main advantage is that it provides you with all the information that you need . Furthermore you can play with the computer , and unfortunately this fact especially has changed my life . On the other hand , playing games and using a computer widens my brain so , as you can see , this modern stuff has got many advantages and disadvantages . I saw the advertisement for the International Arts Festival which is a great idea . Firstly I want to congratulate you on the festival . I have a surprise for you . Shopping is not always enjoyable . Secondly , you have a lot of choices and you do not know what to buy . Lastly , there is a recycling problem , which many people do not care about . In my opinion , small shops and the street markets should be supported . On the other hand , the big supermarkets should think more about the recycling problem , which will be the most important problem in the near future . Secondly , the show started at 20.15 . I will be glad if you will send my money back . Yours faithfully , This was the reason why we were in horrible trouble with the police . Let 's go back to the beginning of this story . There was a secret place where a robber kept gold stolen from a bank . We found the solution to this desperate situation - to say nothing to anybody . Our class really appreciate your preparing this programme , especially with regard to Monday 's attraction . We are extremely interested in visiting London . In the last edition of ' London 's Guide ' we saw an advert for ' The London Fashion and Leisure Show ' , which will be held on Tuesday and it lasts from 10 a.m. to 7 p.m. The offer mentions the ' latest fashions ' , which we are incredibly interested in . Nowadays famous people do n't have an easy life . They are always attracted by naughty journalists , which have a desire to earn big money for writing an extremely good report or article . When choosing this style of life they should realise what their life would be like . On the other hand , their life has no privacy . Some people may argue , but I think that politicians and film stars belong to the public . In conclusion , I believe that we have a right to be informed about their lives , providing that journalists respect some important rules . We think we 'll have one free hour before the River trip . Regarding accommodation , I would prefer to have a log cabin . It would be better to leave money or anything in without worrying about theft . I 've always dreamed about climbing but I have never had the opportunity to try this sport . I have already thought about a change to the programme . But the worst thing about " London 's newest and best musical show " , as you called it , was the absence of Danny Brook . The actor who was " dancing " was horrible . I want you to give me back my money . I hope that in future you will correct all these mistakes . That was supposed to be a joke from my " colleagues " ! I enjoyed it and here are some feelings and advice for next year . They do n't fancy going into the crowded shop . I received your letter congratulating me for having won the first prize in your competition . I am very grateful and I want to thank you very much for letting me go on this trip . They are much more comfortable than tents . Apart from calling them , I also helped build the stage , and took care of the lights . I can tell you that it was a wonderful experience . But Pat , coming back home , told her mother everything . The advertisement I had read did not tally with the performance . Today it is used practically in all spheres and its influence on people is not unnoticeable . I am writing to tell you that the students of my class have seen an advertisement for the London Fashion And Leisure Show . I had to become a burglar again and steal jewellery from the jewellers nearby . As I knew the techniques to break into a place without being noticed , I should not have been afraid but tonight I had to steal the most precious diamond in the country , which was very well protected . There were lasers all over the place , which I had to be careful of . I got into the car and gave the jewellery in exchange for my brother , took him and left the place . The programme offers enjoyment and education , which is essential for young people . Secondly , because we do not have to pay for the tickets . We have already organised our visit in a new programme . We are looking forward to hearing from you . The future is unpredictable and human beings are afraid of dangers , such as tornados or earthquakes . What we really need in the next millennium is love , that is what will keep all the family together forever . Life is too short to think about possessions . Our houses will change because of new technology , which may make our lives more comfortable . What depends on us , is the atmosphere we will have in our houses . The home of the future , for me , is a place of happiness . We can not be aware of future technology , but we might still have some feelings for each other . I have swum since I was in primary school . In particular , I liked cleaning the stage , because I could stand on a famous singer 's stage and I could feel his enthusiasm , even though I had to clean it . I go to the beach almost every weekend to improve my surfing - it is the sport I like best - and I think it would be a nice opportunity to practise surfing too . There are some things I would like to ask about : the type ( and quantity ) of Clothes I will have to take , and if it is necessary to take some money or any additional stuff ( like raincoats ) . Since we were kids people have told us stories about two sides in conflict : the good and the bad side . What was more , it was closed because of refurbishing . When I was a university student , I had to find out some information for my homework . I imagined where other countries are like England . I am still a student and I saw in the advertisement that there were some discounts available . The first thing I do every day , when I get up , is to prepare a fantastic cappuccino with my coffee machine . All day I speak with the majority of my colleagues by telephone or e - mail . If I haven't enough time to cook I prepare my meal using my fantastic microwave oven . The home of the Future Technology is changing very fast and at the same time as I 'm writing my article about the future maybe technologists have made a new oven which co - operates with your refrigerator and has a program to make dinner for you every day without you having to do anything . What about rooms which can sense your mood and act according to that ? If you are tired for example then your stereo might put some relaxing music on and turn down the light a little bit . I think that everyone should think not just about the positive side of technology but also the negative . First of all , the advertisement I got placed emphasis on Danny Brook 's starring in the show , but actually , a disappointing , unknown actor played his part , and I wonder whether he had real skills . To make matters worse , not only was the restaurant closed , for no apparent reason , but also the discounts that were said to be available were not . We are all excited about the programme you 've prepared for us , especially about visiting the National Art gallery . We have seen an advertisement for the London Fashion and Leisure Show in a newspaper . We think it could be a great opportunity for us because we 'll see the fashion show might shop for leisure and sports wear and all the girls in our class are interested in new styles in make - up and hairdressing . A scientist could discover the 4th dimension and we 'd get unlimited space inside the house . You could tell your wardrobe what clothes you 'd like to wear , your hob will cook your favourite meals and your refrigerator will send orders to the supermarkets to buy the food . I AM WRITING TO YOU IN ORDER TO GIVE A REPLY TO THE KIND LETTER I RECEIVED FROM YOU . I CANNOT EXPRESS HOW THANKFUL I AM FOR THIS BEAUTIFUL PRIZE . I HAVE CHOSEN THOSE BECAUSE I AM QUITE GOOD AT PLAYING BASKETBALL AND I SING EVERY WEEKEND IN THE CHOIR OF THE LOCAL CHURCH AS WELL . I HOPE YOU WILL BE ABLE TO ANSWER ALL MY QUERIES . THANKS FOR THE KIND LETTER YOU SENT ME LAST WEEK . BUT TO MAKE THE THING BETTER I WAS CHOSEN TO HELP THE BAND AND THE ORGANISERS OF THE CONCERT . AS YOU KNOW , I AM A SOUND TECHNICIAN , SO I HELPED THEM TO SET UP THE SOUND EQUIPMENT AND THE INSTRUMENTS PROPERLY . I am writing to you in order to get my money back , concerning the musical show : OVER THE RAINBOW . First of all : the actors who were mentioned in the advert are not the same as the ones on stage . Or special flying shoes , and maybe you would have a screen on your watch to watch your favourite soap operas . It could be any day but please let me know nearer the time . I recently was in London , staying in my sister 's home , and I went to see " Over the Rainbow " . Sorry , but none of this is professional , and I am going to make a demand exactly because you do n't have that , if you do n't give me my money back . But there was a little problem and it was that my parents did n't let me go to discos alone , so I had to go illegally , and I decided I would do it . To summarise the night , I am going steady with him , and he took me home . All the truth was then told , and now I am grounded for life . She definitely does n't know how to keep secrets . I want to know if I can take my cellular phone , too . To Mr. Smith , Circle Theatre 's manager We had prepared this quite a long time ago , this trip to the capital and saved a lot of money as well . When we saw your leaflet that mentioned " London 's newest and best musical show " , we were so enthusiastic and curious that we immediately bought the tickets . First of all , I think we should consider the way people are dressing at present to see how it 's going to be developed in the future . In 100 years , it 's possible that everyone will develop his own style using all the new materials like plastic , latex , everything possible , as a way to create their own clothes . Finally , life in France is crazy , this is the tradition . I am writing to complain because I was really disappointed by your musical show , which is " Over the Rainbow " , last week . First of all , the advertising shown us starring , which is Danny Brook and Tina Truelove . However , when I saw it , the musical starred completely different actors . I was really disappointed about it . Now then , how was this advertising , it was completely different . I am really disappointed with your musical . I am asking you for my money back , because I did n't enjoy your musical . I am writing a composition about " How modern technology has changed your daily life " . This is our subject . This modern technology gets closer between person to another person , get close between worldwide , so that , this modern technology changed our daily life so different . First of all I would like to travel only in July because I am going to work in August to earn money and after that ( from September to June ) I go to university as usual . About accommodation at Camp California , I would rather be in a tent than in a log cabin because in July the weather is really good and when I am in a tent I feel closer to nature . That show was n't what it was supposed to be and it is for that reason that I am writing to you . I am writing to ask for the refund of the £ 55 which I spent on the ticket for that miserable show . All the time there are more machines helping doctors and nurses with their difficult tasks . Going shopping is a good thing when you do n't know what else to do but it also has many disadvantages . I am writing to complain about the musical show at the Circle Theatre . By using a car I not only get an easy way to move around , but I also destroy the environment . For instance with the arrival of the Internet , the new digital television and the researchers in medicine , we are discovering how we can change our lives with only the press of a button , or look for something new by only thinking about it ... we realize that the new technology has just begun to advance , and it is likely in a few years we will be very advanced in this way . In my opinion the new technologies have more advantages than disadvantages . My reasons for saying this are that we can live better , we also have more ways of knowing now to live healthily and how to spend our free time . As you offer many activities it was hard to choose which ones I want to do , but I decided to take swimming and photography , because I am very good at swimming and because I am currently attending a photography course in Vienna . There was always a lot of security stuff around us to make sure everything was OK , because there really were thousands of people . Edi Vedder even talked to me about their programmes ! My golf teacher is my father and I 've only played in a practising centre , but my father and his friends say I have good talent for golf . Firstly , we should definitely put the news review lesson in , because we start every morning with that class and it is where we have a lot of discussion . I think , next we can film either the development class or the society class , because in my opinion they are the most interesting classes apart from the FCE class . Secondly time starts at 19:30 on the leaflet but it actually started at 20:15 . Finally it said we could visit your theatre restaurant after the show but it was closed because your excuse of being used at that moment . It said in the leaflet that this would be a perfect evening out , while it was not that at all . She was so frightened and sad that she had no energy . Furthermore , no discounts were available . You have a responsibility to the audiences . These things are very convenient ; on the other hand , there are lots of disadvantages . Unfortunately it is not so cheap . I was very surprised when I got the letter from you . And you need some information from me . I would love to try surfing because it is a very interesting sport and uses a lot of power and energy so now is the end of the letter . And I want to know more about the money . Can you give me more information about the money that I need to bring with me ? Now let 's start with shopping at the Beverley Centre . The Beverley Centre area is the place that the teenagers like to go shopping at the most . Because everyone has different thinking like Beverley Centre if you go there every day or every week for shopping you will get very bored because sometimes there are too many people everywhere , like in the restaurants and shops . Because all the smells in the market are awful - there is the smell of the meat and dirty water , black and smelly water , all over the market street . We hope to see you at the party and have a wonderful time together . It means swimming at the wonderful beaches , tasting the delicious food and having a wonderful time every day and every night with your friends . I am writing to complain about the musical , OVER THE RAINBOW , and also about the service . Secondly , in your advertisement I had read " Times 14.30 and 19.30 " . I look forward to hearing from you in the very near future , to offer me my money back . After that a being climbed out of the potato . I could not believe my ears . The being moved its hand forward and ..... Immediately after I heard , " And do n't forget your homework " . Moreover there will be a demonstration of modern make - up and new different , shaking hairstyles . I look forward to hearing from you in the near future . The wind was blowing and the heavy rain was drumming against our bedroom window . As a postman , Peter had to deliver letters around our little village . Recently , I had the opportunity to go to your Circle Theatre event . Unfortunately I never thought it could be so disappointing . The first problem happened at the box office because there were absolutely no discounts available . Because of all this , what was supposed to be one of my best nights turned out to be definitely one of the worst . Technology is always getting better . And it is responsible for many changes in my life , and I think I would n't be able to live without it anymore . Nowadays , with the Internet it has become easier to do school work and I also like to chat with other people or maybe read the latest news about my favourite football team . I also recently got a cellular phone and I do n't know how I lived so long without one - because it helps to solve problems so quickly , it 's really amazing . But for me , the best thing is definitely the microwave . There are some of the devices of modern technology that most help me but there are some others which are also very important for me . Lastly , can you please tell me how much money would be appropriate to take ? At the end of the concert , when it was after midnight and everyone had already left , the group came up to each of us ( who helped out ) and thanked us personally ! Now I have the opportunity so I shall inform you fully . The opportunity of being able to help in the concert knocked on my door by chance . She is a very nice person . I managed to scavenge an autograph for you as well , I will put it in the envelope . I am looking forward to receiving your answer and do n't forget that it is a surprise birthday party . In spite of that fact there are of course many families especially in small towns who eat lunch all together and then they solve their problem all together . And the difference is that those children are effective when they grow up and want to have a family , they do the same as their parents and have a happy family . Besides that the most important thing is that these children have an easy adolescence and they haven't got psychological problems and they are useful in society . To sum up , family life is the most important thing for children 's psychological world which helps them in their education , job and their marriage in future . I'M WRITING THIS LETTER BECAUSE TWO WEEKS AGO I WAS IN LONDON AND I WENT TO THE THEATRE TO SEE YOUR MUSICAL SHOW . AND THROUGH SEEING IT MY FAMILY HAD A VERY DISAPPOINTING EVENING AND SO DID I . YOU CAN READ BELOW MY POINT OF VIEW REGARDING THIS . FIRST OF ALL , WE COULDN'T SEE THE FAMOUS ACTOR " DANNY BROOK " BECAUSE HE WAS ILL . I THINK THAT THE MUSICAL SHOW SHOULD HAVE BEEN CANCELLED FOR THIS ALONE . NOWADAYS THE MAJORITY OF PEOPLE HAVE A COMPUTER IN THEIR HOME AND SOMETIMES WE ASK OURSELVES IF MODERN TECHNOLOGY WILL CHANGE OUR DAILY LIFE . About accommodation I would prefer a cabin , because I suffer from allergies , and I think a tent would not be very suitable for my health . I won last summer 's swimming competition in the school . Although I 'm not very good at surfing I like it , and I always practise on my holidays every year . I would like to know if it is necessary for me to bring some money , and if we will have time to visit the City . About the clothes , do I have to bring some winter clothes ? I 'm very grateful to hear from you . You asked me to tell you about my experience helping at the concert last week . I was asked to put all the chairs in order for the singer . This was only in the beginning . After that I needed to check all the microphones . After that all the singers arrived and I was in charge of greeting them and giving them something to drink . You can imagine how excited I was , especially because I always wanted some photographs of them and this was a special moment and I realised I had n't brought my camera . I was very sad . Actually this was because most things I saw were different from what the advertisement said . Unfortunately , Pat was n't very good at keeping secrets . One day , we went to a party , where she met some of the most popular girls in the school . Afterwards , when I saw her , she laughed at me and the next day all the school knew everything about me . I would like to have accommodation in a log cabin because I think it is more comfortable than a tent . So as we can see - shopping is not always enjoyable . About the accommodation , I would rather stay in a log cabin . For weeks I 'd been planning to go to the theatre with some close relatives and friends but the problems that we had made this perfect night a disaster for all of us . To begin with , in your advertisement you say that Danny Brooks will be starring in the show but instead there was a different actor , which made us very disappointed . Another thing that is said in the advertisement is that the evening show will start at 7:30 but there was a forty - five minute delay . The crowd got really upset and we were going to leave at the first chance we got . If you do n't do as I say , an article in the biggest newspaper will definitely change your mind . This is something that has troubled many people , especially those who work in the fashion industry . Fashion has made great progress since the early days . In the early 90s it was in fashion for women to wear only skirts . Nowadays women wear really short skirts , short t - shirts , short tops , and cut their hair short just like men . Boys pierce their bodies just like girls do and vice versa . People will wear all those clothes that expensive designers design but no one wears . I took the decision to write to you because I would like to complain about your theatre . I am writing to you because last night I expected to have a wonderful evening and unfortunately I was very disappointed . I and some friends decided to go to the theatre to see a musical show . We were so excited . We are on holiday and we decided to go . We had never been to a musical show and we thought that it was a new opportunity . I believe that some other actors maybe made the whole story more interesting . The first was very early , at 2:30 , and the other at 7:30 . We went at 7:30 . Finally the musical show started at 8:15 . We waited one hour . When the show finished , we went to the restaurant and it was closed because the people who work there do n't work if they do n't get their pay first . I and my friends would be obliged if you would give us back some of the money we paid . Humans have done many things through the years and made many things possible . Now we are in the 20th century in which people have been to the moon and discovered medicines for serious illnesses . I live in that century too . I believe that I am like that , I belong to that century . I believe modern technology has changed everyone , especially now with computers and all the other machines . First I want to talk about the computer . Before , I used some other ways to get information or play or communicate with people . I can spend so many hours because day by day I discover new things . Maybe it is not good because you do n't have the opportunity to meet people and talk face - to - face . Apart from computers we have the telephone , TV , and gyms . About the TV . I spend many hours in front of the TV . It helps me to relax and spend some hours alone . Exactly happened and with telephone . About the gyms , I like them very much . Those places have so many machines that you can easily lose weight and develop a wonderful body . Now , in conclusion we can see , or I can see , that maybe I am not a very sociable person but I can do whatever I want and take whatever I want only through technology . Firstly , I was disappointed , because the actor Danny Brook did not appear in the show . I am writing to complain about what it says in the advertisement is not true . 3 You recommended the restaurant after the show . It would be great if you considered returning my money as soon as possible . This is not normally what people wear every day . The 2nd F is ' fulfil ' wear ever you have in your mom 's cupboard . For example long baggy trousers , which cover your bright brick shoes . Wherever you go everyone would love you because of your trousers , which would clean away all the rubbish that is on the road . If I can choose my accommodation , I prefer staying in a tent . I prefer this accommodation because I think it 's easier to meet people when you stay in a tent , near them , than when you stay in a log cabin . TO ANSWER YOUR NEXT QUESTION , I WOULD RATHER STAY IN A LOG CABIN . THE THING IS , I HAVE A PHOBIA ABOUT INSECTS AND MY DOCTOR RECOMMENDED THAT I SHOULD SLEEP IN AN ENCLOSED AREA . I WOULD LIKE TO ASK YOU IF IT 'S NECESSARY TO TAKE MONEY , FOOD AND CLOTHES WITH ME . NOW THAT THE STUDENTS HAVE GATHERED TOGETHER THIS YEAR TO MAKE A VIDEO ABOUT THE BEST LESSONS AND ACTIVITIES THAT WE HAVE IN SCHOOL , EVERYTHING POSSIBLE OF COURSE WITH HELP OF TEACHER MS . WESTBROOK . IT WOULD BE MY SUGGESTION TO THE PRODUCERS OF THIS VIDEO THAT THEY SHOULD FOCUS ON OUR WRITING AND CULTURE LESSONS . FOR CULTURE LESSONS WE DON'T NEED TO GO SO FAR BACK IN TIME ; FOR THE LAST 60 YEARS OUR CULTURE HAS BEEN CHANGING ENORMOUSLY AND WE CAN TALK ABOUT COMPUTERS , WARS , CARS , WEAPONS , ETC .... ALTHOUGH LOTS OF PEOPLE DON'T BELIEVE IT , OUR SCHOOL HAS A SPORTING IMAGE . I THINK THE VIDEO WOULD ENCOURAGE STUDENTS TO DO SPORTS AND BE GOOD ATHELETES . I have received a letter from you saying that I have won the first prize in your competition and you need some information from me . I would like to travel in July because my holidays are only in that month and the weather in California is better then . They liked me so much and invited me to be responsible for the lights and sound . I told them that I will think about it but I believe I will accept the job . The most incredible part was the laser show . They were drawing a lot of things in the sky during the concert . I 'm sure that you are going to love it . About my accommodation at the camp , I would prefer to stay in a log cabin because it 's safer than being in a tent and because you sleep more comfortably . The activities that I would like to do are singing , because my friend told me that I 'm good at it , and the other activity that I would like to do is climbing because I think it is very exciting although I have never tried climbing , because there are no mountains in my city . I appreciate the opportunity that you are giving me and I 'm very grateful to you guys . Well on march 11th there was a group here in brazil called " Los Jagoares " , they sing pop music . And they are one of my favourites and as you know I have a cousin that works as an organizer for all the bands that would like to have a concert in Brazil and when my cousin knew that my favourite band was coming he called me and asked me if I would like to help them to install the speakers , microphones etc ... and I said , " Sure man . " Last Sunday my friends and I saw that advertisement about the play you were supposed to put on . We waited there for forty - five minutes for it to start ! We really got bored , like all the other people there . And then delate forty - five minutes to present the show . That was very disappointing . My friends and I demand our money back very soon . And please do not be very surprised if you receive more letters about this . Pat , my sister and I felt very responsible . I did n't believe him at first . But I could see that his face was happy and he was n't telling lies . I could n't believe it . I had not seen him for five years . How are you ? I 'm not so well , and that 's the reason why I 'm writing this letter to you . Unfortunately your advertisement said that the show starts at 19:30 but it started 45 minutes later . Children are not studying as much as they ought to , because they are watching TV , talking on the phone or even playing computer games . This is also another cause of heart attacks . Your advertisement for the musical Over the rainbow said it was London 's newest and best musical show . I agree with that because it is a wonderful show but it said that Danny Brook would be starring in it . In the advertisement it also said you could visit your restaurant after the show , and that is what I did , but when I got there it was shut for no reason . Pat could n't resist and told her brother Jacob . He was quite shocked about the news because he misunderstood . There , Jacob approaches him slowly and tells him . It was all a misunderstanding . I hope all my wishes are realisable . I can not bear it when somebody says something and then does just the opposite . It must be our decision whether to stay and eat there , or not . To cut a long story short , because of everything I have said above , the correct thing for me to do is to ask for my money back , and for you it is just to give it back to me because of all the trouble and disappointment you have made me suffer . HOW HAS TECHNOLOGY CHANGED OUR DAILY LIVES ? In our grandparents ' time life was so different that we can not believe that this huge change to our daily life happened in only one hundred years or less . Furthermore , as we all know , daily life nowadays is quite simple and an example of this is that instead of buying a piece of ice to cool drinks ( as our grandparents used to do ) we not only have a refrigerator but also a freezer in case you want it faster and colder . Strange as it seems , we now have all types of machine or specialised technology to make our daily life more comfortable and less stressful . I am writing to thank you for notifying me about the competition and I would be very grateful to give to you the information that was requested in your letter . About the Accommodation , I would like you to take careful consideration of the fact that I am asthmatic , so I would appreciate it if you could reserve a bed in a log cabin . If you have this opportunity one day , you had better buy the ticket to the concert or just watch it on TV but never do something like this just to get a free pass . If this had been my only disappointment nothing would have happened , but I had to wait till quarter past eight to watch the show , instead of it beginning at half past seven as you had written in your advertisement . As a conclusion to that horrible evening I decided to visit your theatre restaurant once the show had finished , but what a surprise when I found it closed . It consisted in having to memorise a whole book of 250 pages in order to pass a final exam . On the exam day everybody answered every question correctly . Secondly , although the log cabins appeal to me , I would prefer a tent because I think it is more comfortable and attractive . Nowadays most people are attracted to shopping centers , which are not always enjoyable . Fourthly , that product is too expensive for you and the last problem is you buy too many things but you have not got your own car so you have to carry big boxes by yourself . First of all , the show was supposed to start at 19.30 , but it started at 20.15 . I am looking forward to hearing from you . Nowadays , there are more and more people who want to become designers and the competition is increasing . I always wanted to go and see the USA ! In my opinion , staying in tents is more exciting than staying in log cabins . I 'm very happy about this because I spent most of my school life playing sports , especially basketball . They mixed up our traditional music and pop music . In reply to your letter received on the 13th of June , I first would like to say that it is a great pleasure for me to have been chosen . In fact there would be only one possibility in July because I will finish my exams at the end of that month and begin vocational training the 1st of August . Then , during the concert , I helped to serve the beers at the bar . I met a lot of interesting people while I was serving drinks . Everything was very interesting , but what I particularly liked about the experience was the human relations . I met a lot of different people and they all taught me something new about behaviour or compassion . I prefer to stay in a tent so I go camping every summer and am used to sleeping in tents . I 'm very good at swimming as I have been a member of various swimming clubs since I was 6 and I chose photography because I have a new camera and want somebody to teach me how to use it . Introduction : To support an idea to make a short video about daily life at our school I have spent some time discussing it with other students , and observing and analysing an average day in our school and have come up with some suggestions . I think it is a good idea to include a record of one of our big events such as the annual sports tournament or welcoming evening for new students . Conclusion : To sum up the above I 'd like to suggest not filming anything longer than 1 or 2 minutes and having a nice mixture of places , faces and events . First of all , on the ticket it says that the actor was Danny Brook and really he was not . Then , on the ticket it says that the show starts at 19.30 and , I do n't know why , it started at 20:15 , very impolite on your part , and , also , you wasted my time . The other thing is that on the ticket it appears that discounts were available but when I asked about it , there were none . I thought you were a good theatre , where people can go and have a good evening alone or with somebody else , but really I am very disappointed and I want to ask for my money back . I 'll never return because of the bad service you offer . Truly . Considering my whole life I can say that modern technology has changed my daily life in many ways . It has , in some way , separated the family , making all of us worried about our own things . We all work separately , developing individually and forgetting we have to all talk together to know about each other 's life . First of all , we went to the theatre to pick up our tickets . We sat in our seats and waited for the show but it did n't start on time , it started at 20.15 which was a ridiculous time . They are just wasting time on it . Both of them I am not as good as you expect , but recently I have been interested in them . However , we decided to have the job , because of good money . However , it was a great job . I haven't hade such a great experience before . I was very disappointed to find out that most of the things said in the advertisement for the show were not true . I think it will be a very good experience for me . I 'm really excited about it . I 'd love to come earlier , but I really ca n't because this job is very important to me , and I 'll need it as work experience for my further studies at University . I would also appreciate it if you would offer me accommodation in a log cabin , because of some health problems that I have , which do not allow me to sleep outside on the ground , and to be honest with you , I never liked camping . At the end I feel very tired and angry , because I have spent the whole morning doing nothing , except for looking at them trying on different clothes , and that 's not enjoyable at all , in fact it 's really annoying . To let you arrange the details of your programme , I 'm going to give you my answers . Firstly , I 'd like to travel in July because I 've already registered on another summer course which starts at the end of July . About accommodation , I prefer tents to log cabins . Actually I 've been in an amateur photographer 's organization for 3 years . At that time , I took the course which covered all the 4 kinds of strokes . And please tell me how much money I am supposed to need excluding transport and accommodation . Concerning the accommodation , I prefer to stay in log cabins , finding them much more comfortable than tents ! Last week during my holiday in London , I found your advertisement in my newspaper . You stated in your advertisement that he would come on stage , but instead of him someone else turned up . Luckily I could keep my secret for a couple of days but then it became urgent and I needed someone to talk to . I 'm looking forward to learning how to take care of myself in dangerous situations , such as getting lost in a forest , and I think staying in a tent will be very useful for that . This is something I will never ever forget . I could n't believe that I had met that superstar who was dancing in front of a crowded soccer stadium . Unfortunately my feelings are rather bad . The advertisement looked pretty interesting and I decided to go to the theatre to watch this musical show . The ' theatre ' did not even apologize for this change . Despite my being a student and the advertisement saying that discounts were available , I was refused a half - price ticket , and the explanation ' why ' was n't sufficient . Unfortunately it was not , which made me even angrier . Saturday morning I went to the driving centre for my first lesson . The instructor opened the car door and asked me to sit in the driver 's seat . Then I drove very slowly very often crossing the white line on the road . I looked in the mirror and I saw how my friends were laughing . Pat apologized to me for not keeping my secrets . An admirer I am writing to inform you about the differences between your advertisement and the real show . Then , as we were told that the show was beginning , the second shock of the evening faced us . Maria spent all day thinking about who told them that . There were two possibilities : one , her best friend Becca , or her sister Pat . Obviously , Pat first denied it , but then she accepted that she was wrong , and apologised to Maria . After that Pat never again talked about anyone without his or her permission . It is your decision . I would like to send you some further information which you need . I am grateful that I have the chance to choose the accommodation . I would rather stay in a tent if it 's not a problem for you . I would like to experience a real camp again . I would like to thank you once again for this great opportunity . We would like to believe that shopping is the most wonderful part of our life . When we finally do this , we can not be comfortable because of the crowds . The answer is that we choose the same street ( usually the most popular ) and the same time as six hundred other people . I am writing to you to give you my opinion about your festival . To conclude , I was very happy to have a ticket for all events at a reasonable price , because for someone who does not especially like art , it was very attractive . I am writing to you to answer your question about school rules and what I am ( and I am not ) allowed to do at home . In my home , the only things I am not allowed to do are things which might disturb my family . For example , putting the music on too loud when my sister is working . I believe that it was a great idea to organise such a festival , connected with art and culture . What is more , there was a wide variety of music . Although the artists were supposed to be from all countries , there were only six nationalities . However I was really surprised that the entrance fee was so low . I hope that this will clarify your questions and doubts . I 'm looking forward to hearing from you . I am writing this letter because I am very disappointed with your musical show . When we arrived , there were a lot of people , the place was beautiful , all seemed perfect . After that they changed the principal actor , the one that replaced him was very bad , that made us really angry . How has modern technology changed my daily life ? I think that technology has changed my life and everybody 's life in many ways . Nowadays , technology is everywhere , all over your house , your school , office or any place you can be in a city . This technology has helped to make my life easier and more exciting , but like everything it has had some negative aspects . This technology has helped in many fields , like medicine , entertainment , work and other things , so it has obviously changed the lives of many people . The bad consequences that this could have are unimportant , in comparison with all the good things it has done , so let 's not focus on the negative aspects of it . This is a new era , an era for a new type of people , the future people Secondly the time on the leaflet is totally wrong . Thirdly the ticket was not discount and after the show I visited the theatre restaurant but it was closed because the show started late . Finally last night was not a perfect evening . But when I hear the word future , I have an image of metallic colours so that in my imagination they are wearing metallic or brightly coloured clothes . I think people will wear clothes which are metallic or bright colourful colour with mixture of history and future fashion style in the future . Firstly , I must say that I 'll be able to have two weeks free only in July , since I have started work and am entitled to have a holiday only in July . Despite my appreciation of all kinds of sports and activities , I 've chosen my favourite ones , which are swimming and tennis . Another thing I dislike about shopping is some annoying shop assistants try to sell any product to the " victim " coming through the door . Our department , which is the sales department , have to make good sales results before the end of June because of the financial month . About accommodation , I prefer to stay in log cabins because I do n't like to stay in tents which are uncomfortable for me . In Japan , I often play Golf but as you know Japanese weather conditions are not good enough for enjoying playing Golf , but California has good weather , which means sunshine every day , hopefully . I am interested in playing tennis very much . Finally , I have some questions . So , my temporary job was sound engineer but I was not main engineer . When I was a university student , I studied sound effects , but I had n't used effect equipment my whole life because our school does n't have it . I used this equipment during the concert , but I was so complicated system . They taught me specially . Take care of yourself . Hello ! I am very pleased that I have won the first prize in your competition and I want to tell you that it would be better for me to go to your Camp in July because that month I usually have a rest and now I am thinking about it . To answer our first question about where I would prefer to sleep , I prefer tents because they are closer to nature and I like sleeping in sleeping bags ( = BV bags ) . Now let me tell you about my sports preferences . Yours sincerely In our school we have a system of " double lessons " . It means that every day except Sunday we have four lessons and each of the lessons lasts for an hour and a half and it means a " double lesson " . I think that is more convenient than seven lessons every day and each of the lessons lasts forty - five minutes . It is convenient , I mean " double " lessons , because you have more time to understand the material which is given out and because you have to prepare only four subjects for " tomorrow " and it is fewer then seven subjects . On Tuesday we have these lessons : English , Maths , Economics and Physics . Not only these subjects are studied by us , but also Latin , Russian , Ukrainian , Biology and Physical training , but as we study them we understand that they are not so important as our main subjects . I have always been interested in arts and festivals . It was great that you organised the Arts Festival in this city , because people really need this kind of social activity here . I spent two days at the International Arts Festival with some of my friends and I must say we were really delighted , it was a great idea to do that in London . I hope you will consider my opinions and that my suggestions will be helpful for next year . When I grow up I 'll change all the rules in my life and I 'll make my own rules which are not going to be too strict . ( It is a graduate engineering school where we are studying mechanics and energetics . ) That is why we have to single out which lessons and other activities should be filmed . Secondly , we should interview the teacher of heat transfer since his lessons are really breathtaking . On the other hand , we should be interested in the other activities such as sports , which could appeal to more students in our school . To make matters worse , we have never had the opportunity to see Danny Brook because , instead , there was a different actor ! You wrote so persuasively that it would be our " Perfect Evening Out " ... I hope you will agree and share my disappointment . Sincerely yours , In fact , winters will be rare or will maybe even disappear . The ice will melt , the weather will be warmer . People wo n't wear warm clothes anymore and they will certainly be synthetic , because there wo n't be enough places to cultivate cotton and to let sheep graze . Our feelings will be transmitted electronically through our clothes to other people . " The Internet on our body " .. I 'm sure that is not impossible ! I am writing to you with a request for a change in the schedule of our trip to London . Unfortunately I have to suggest a change for the programme for Tuesday the 14th of March . All of the students - including myself - think of this as a great opportunity that it would be a pity to miss , especially when students can enter for free . I 've always wanted to taste the freedom that birds have , always been interested in listening to my blood pumping in my veins , full of adrenaline , to let myself free , to shake from excitement . The home of the future will be very impersonal and the atmosphere will be cold and very essential . I think this tendency will become more common in the future . What is important is not their fashion but their knowledge , attitude to everything including fashion . I apologise For any inconvenience and I am waiting for your reply . Last week I received your letter in which you told me that I won first prize . I am writing in response to it . Please , when you receive this letter give me a call so we can arrange everything . We are going to make a video about daily life at school . The following classes are the ones I recommend filming . ENGLISH : the classroom is beautiful , and on the same day we do a lot of different activities , so it wo n't be boring watching it because we can have a great time there . Those three classes are my choices . I hope we can do them and make a very good video about our school . Finally , I would like to ask you for £ 20 back as I was not satisfied with your services . But Pat could not resist the temptation to call the police . I am not used to sleeping in a tent and I think it might ruin my holiday . I hope it 's possible to sleep in a log cabin but if it 's not , you can also put me in a tent . Surfing is my passion . I live near a beach and whenever I have the time I grab my board and go surfing . I am really looking forward to this holiday . The real thing was that I had to look after them because without me they would have been lost . The thing I really liked was helping the artists and talking to them . I really got to know them after the concert . Maybe next time you can come with me . That would be a lot of fun . Finally , I did n't understand why you pushed people to visit your restaurant if you do n't open it after the show ! If I want to discuss something with friends or order a Pizza , I can do it as easily as I want , when I want . A good example is the cellular phone . I can contact my family without any problem , I can inform my company if I have an accident in my car . To sum up , although I think they ought to abandon their lives partly when they enter the world of fame , they should take some action against journalists in order to protect their human rights . An actor was changed and the public were not informed . Finally , the theatre restaurant was closed for the holiday ! I think modern technology is very important in my life . I also think I am lucky , because I live in a period of technological boom . In the last fifty years human technologies have grown exponentially . First the conquest of space , then computers , and now the new biotechnologies have changed , and are changing , the face of the world . In the present day , for example , a lot of people have a personal computer at home , and a very large proportion of those also have the Internet , the new frontier of computer evolution . If I look back to the past I find that the computer is following the same route as television , the telephone and a lot of other things that now the largest part of the population have at home . So , in my opinion , new technology has changed , is changing and will change my daily life ; I hope that afterwards my life will be better . The whole class and I would like to thank you for the good programme which you have organised for our trip to London . The reason why I 'm writing to you is the class and I have seen an advertisement for the London Fashion and Leisure Show on Tuesday , March 14 from 10.00 am - 7.00 p.m. We all are interested in fashion and hairstyles and it is a great opportunity for us because students do not have to pay and we will know what we can buy on our shopping tour . I would like to suggest to you how the programme could be changed . Instead of a shopping tour on Tuesday afternoon , we could go to the show and do the shopping on Wednesday afternoon in our free time . What do you think about this suggestion ? I hope you will understand this kind of matter . The class and I are looking forward to hearing from you . That means for example , while you are sitting in the office you are able to control your home with the computer . You can open and close the windows and switch the light on and off . Your freezer tells you when you have to buy some milk , eggs or cheese . Or , without leaving the office , you are able to heat the water for a hot bath . So in fact people 's homes will become more convenient and more comfortable . I think also housewives will receive more help with a robot in the home . As representative of my class may I kindly ask you to partially change your plan for our visit to London ? It would be beautiful if you would agree to change your plan . It happened on a very lovely day in summer . I knew I could n't swim so I realized it might be dangerous for me as well . The most important thing was a little boy of about ten years old , who was in the water without his parents and could n't swim . It was difficult for me because I am afraid of water . He was exhausted and could n't breathe . I am a good swimmer and I have some experience in photography . However , I have a lot to learn . Actually , the price of the weekend ticket was excellent ! I , myself , was expecting a more expensive ticket as there were so many magnificent events . Well , I hope you found my suggestions reasonable as I deeply congratulate you on the great success of the festival . I would like to stay in a log cabin as I have an allergy to grass . If you have to go shopping again , because the fridge is empty or you need some new clothes , a lot of time , patience and strength are needed . So even if it 's nice to have food or new clothes at home , without patience , time and strength you had better stay at home or try to find the most convenient time for shopping . 2 December , 2000 I am writing to suggest a few things that could be changed or added to next year 's International Arts Festival , which in my opinion has been a great idea . Although I read that stars and artists came from around the world , I realised that they only came from six countries . All my family liked the films and the plays that there were very much , but I personally think that it would be better to add more because there were only five plays and seven films . The rest of the activities were very interesting for us , we learnt a lot of things and we met a lot of interesting people , and all of this without being expensive . I think that the ticket was excellent for us because of its price . You know that I 'm studying in a difficult school , and as you can imagine you have to work hard and you have to do homework every day . I have friends that are studying in other schools and they are very happy with their freedom . It is true , they deserve to have a private life without journalists following them all the time , however this publicity brings them money , and a comfortable life . They can travel around the world , buy everything , it is a good life , but at the same time , they must be very good people , because " Fame " is just for a short time , nothing lasts forever in this world . I would not really like to be a famous person , because you are not really yourself , and for me that is the most important thing . The first thing that disappointed me was the star . but the restaurant was closed because the show started at 20:15 and finished at 00.15 and the restaurant was open until 00.00 . After all these problems I became disappointed . If you could give me some of my money back that would be a great apology for the waste of time and my disappointment . It was about Marine , who was our close friend . Marine 's real father wanted her back but the other couple did n't want to give her back because they loved Marine so much . The couple could n't tell the truth to Marine because they were afraid of losing her . I was grateful to hear I have won first prize in the competition . That 's why I 'd like to feel adventurous . And according to the interviews , the most interesting class is the " upper intermediate " class . The point of " upper intermediate class " . Yesterday morning , I went to the toilet . I overheard two people talking about my son . I felt sorry for myself and I burst into tears . I quickly got out of the toilet . " Dear " manager of the Circle theatre , I was getting angry , but , finally , the show started and I became quieter . In the end , I asked for I money back ( and payment for my horrible night ) : do you think anybody will give me something back ? ! Science and technology characterize our modern society . Walking on a city street , it 's difficult to find parks or " green " places with trees and clean air : actually pollution , traffic and noise are the main problems of our society . I know I 'm a " daughter of this technological world " and unluckily I think I could n't live without it : it 's rather strange that today there 's still somebody without a phone , dishwasher , TV ... But , sometimes I ask myself if the " ancient world " , without science , technological innovations and industries was more authentic than our one . It sounds very promising . I could feel every movement which was caused by clouds or wind . I 'm pleased to win the first prize in your competition - two weeks at Camp California in the USA . I 'd like a log cabin for my accommodation , because it 's safer and cleaner than a tent and I would n't share it with anyone . We can analyze when shopping is enjoyable , and when it is not . Buying coffins and graveyard plots to bury relatives is not as enjoyable as buying clothes . The rules in Poland are quite similar to those described in your letter . I 'm a student from St. Petersburg , and I 'm studying in a drama academy . My friend & came to London for an excursion . Danny Brook is my favourite actor & to see him was my dream since my childhood ! It was a surprise when we were told there would be another actor . Also , we expected to get a discount as students , but international students cards are not valid in your theatre ( that is very strange - even your advertisement has information about discounts ) . So we were late for our supper in the hotel and the theatre restaurant was also closed without any reasons given . In the advertisement it said , , your perfect evening out ! " , but it was n't . I 'm waiting for your answer and hope I can get my money back ! I would call our days days of great technological progress . Industrial wheel going faster and faster . They have more different functions and forms . It is very interesting for me how new works , their possibilities . My job , I think is a good way to get a profession in the future . And I hope to find a really good job in a good company . More and more people buy mobile phones , because they are very useful , you get a lot of possibilities like : using the Internet , buying different goods , booking tickets , controlling your home technic and many others . Mobile communication is a key to success in all professions that we have ! And I think that I made the right choice of profession - it is the perfect combination : a very progressive form of modern technology , and the most important thing - it is extremely interesting to me ! Regarding the accommodation at the camp , I would prefer the tents , because it is something different which you do n't do every day ! Finally I 've got a question : What clothes must I bring with me and how much money ? yours faithfully , Another thing that makes you furious is when you see a great shirt in a shop and somebody else takes it away or buys it before you can react . At that time I was lucky and also , I would like to recommend it to other friends . But people would like to change the lifestyle in their house because there are n't convenient appliances in their houses yet . I 'm writing to you to explain the problem that I have had in your theatre . I recently had a week 's holiday in London , and , during my stay , I went to your theatre to see " Over the Rainbow " because I had seen an advertisement for this show and I was really interested in seeing it for many reasons , one of the reasons is that I love the star , Danny Brook . Secondly , in your advertisement the time of the show was 19:30 and in reality the show started at 20:15 and the discount was not available . I think you can do a lot more things now than before with technology . best regards . There are many ways to earn money , especially in a big city , like the one where we are studying all year around . To be more technical and specific , we need a very flexible job , which gives us independence and allows us to stop working when we are not able to , for example during the exams period . As a result I asked my acquaintance to come with me to the show . By the time he got out of the building , the cops were everywhere but as long as Mallory is alive , he wo n't be arrested , with his unpredictable mind . Secondly , we had to wait until 8:00 pm before being able to take a seat and the show finally began at 8:15 ! At that time , I used to buy a lottery ticket once a week and I sometimes won small amounts . One day , while I was checking my weekly ticket , I found out that I had five numbers out of six so that I would surely get a substantial amount of money . I had to wait ten days before the lottery head office would give me the cheque and one week before I could learn how much I had won . But soon everyone in the class was looking at me smilingly and I found out that I had many unsuspected friends ... Not long after , they were asking me to buy a coffee or lunch for them ; some proposed going shopping , others going to the cinema and a restaurant . Finally the end of the week came and I went to the lottery office to find out the amount I had won . With this letter I would like to ask you if you would change it because we saw in the London Advertiser an advertisement for the London Fashion and Leisure Show . The show is on Tuesday , March 14th , from 10.00 - 19.00 in the Central Exhibition Hall . Yours sincerely , I knew that my brother was at home , although I did n't know where he was . In fact when I do n't feel very happy I decide to go shopping to try to cheer myself up . It is at this moment when really I realise I am getting fat and it is a horrible feeling . Another thing is my accommodation . I prefer to have log cabins because it 's easiest for me . And how much money I should take ? If you have children , you will know very well that when you are busy doing something and the children see something they want to have , they will do everything they can do to make you buy it for them , sometimes they even cry or shout at you and it is really annoying . Anyway , in families they usually have this problem that when they buy a new one , suddenly they have a problem about where the old one is going to be and that is the beginning of an argument between mother and father or parents and children . Eventually I like shopping too and I believe everybody likes shopping , but before you buy something think first and you will not have any problems after that and the most important thing is make sure you have enough money to survive . Secondly , my choice is the accommodation in tents . I think it could be more interesting . I could enjoy my time with other people playing , eating and talking outside . In my opinion if I choose the log cabin it will be like being at home . My other choice is painting . I have been painting since I was ten years old . I used to go to special classes and I do n't mind if you need me to help in the class . The most popular " sport " that everyone does is obviously shopping . Some people think that going shopping can keep you away from depression . You can enjoy your time spending all the money you have , buying clothes , jewellery , furniture , etc . But other people do n't think like this . For example , there is a case of a woman who was shopping with her little daughter and without intention the girl got lost . The mother was shocked . She did n't know how to look for her because all the shops and streets were full of people going in and out the places . It was a nightmare but fortunately the police found her . Can you imagine being in Japan or China and having to go to the shops ? I do n't think that I 'd enjoy it , all the people kicking you , you ca n't walk properly or buy anything . And also there are a lot of cases which show how people can be in shops . I mean that some people can fight to get something . Dear MANAGER of the theatre So try to imagine my situation . I had paid a lot of money and I did n't see a good show . I am really disappointed . Unfortunately , Pat was n't very good at keeping secrets . Many years ago , more or less seventy years ago a young man , with an excellent capacity for thinking and inventing things , started building a big thing called a " time machine " . The only thing Pat had to do was to choose a date , one he liked , and to press the starter button , and you know what ? He did it ! I am very happy to hear from you that I have won first prize in your competition - two weeks at Camp California in the U.S.A. and I am writing to tell you my information . Firstly , I will be able to travel only in July because I go to university and I normally spend most of the time working . to do . and I have holiday only in July . And I choose photography and tennis from the activities list . I am taking photography lessons at university and I started tennis when I was 10 so I am good at both of them . From the 10 options that I have to choose from I will choose two , climbing , which I have been doing for three years because I know it by heart , and swimming which I have also been doing every day as part of my daily routine in Portugal . I hope that coming after July wo n't disturb Camp California 's plans for me . A survey has been done , and the issue is which subjects ( lessons ) and activities the students think are the most enjoyable . Someone says it is maths - practical , useful - but the majority say it is boring , unless you 're choosing a job which demands all your maths knowledge such as accounting , otherwise you can use a calculator or a computer . The majority have chosen History , which means a big journey around the world , either at the Roman life style , or in the middle ages , when a revolution happened with deaps and new lands . At all schools there is a similar daily life which must be filmed . This is an important part of our life , which is full of emotions in development . How has modern technology changed my daily life ? Sometimes , I think I am a computer addict because whenever I come back home , my hand goes to the computer switch , automatically , even though I do n't want to use the computer . I received a paper in which I was told about a play you are putting on and of the advantages I would get if I went to see it . I wish that had never happened . I am really disappointed , and I want to have my money back . First of all , on the sheet I received , it says that DANNY BROOK was one of the actors . That is not true , because instead of him , there was another actor , and I do n't know what his name is . You must understand that you promised me I 'd have a good evening and I really did n't . I write this letter to tell you about the programme that starts tomorrow , about that excellent book I have told you to read . This excellent book tells the story of a man of 25 years that has a little boy , his son , that lives in a very bad condition . The book is very easy to read , but if you do n't have time I recommend listening to the programme . Also , that they will invite a psychologist , the author of the book and maybe the president will talk so I recommend you listen to it . I might say that I am really good at swimming and sailing because I have been doing these kinds of activities for five years and I have had a really good training in water sports . As you know , I 'd never been to any activities as a volunteer before . The concert tickets were very expensive and I 'd seen an advertisement on TV . It said , " Be a volunteer at our concert and get a free ticket . " We have bought some snacks to eat and three students will sing for him , too . I 've just received your letter , and I must say that I am so surprised . I was n't expecting to win it . I am still studying at the moment I will finish at the end of June so I will be able to leave at the beginning of July . Regarding the accommodation , I would prefer a log cabin instead of a tent so as to get a better rest . I have a problem sleeping and a log cabin will be more peaceful than a tent . It 's quite difficult for me because there are 4 of them I like a lot , which are climbing , tennis , surfing and photography , but if I have to make a choice , I choose climbing and surfing . I 'm rather experienced at climbing . I have done it once a month since I was 17 . But on the other hand , I have never been surfing . I am a complete beginner but I am dying to do it . A good idea to start will be an alarm clock ringing close to his bed , because that 's the way everyone gets up in the morning ( apart from the people who do n't do anything ) . After this introduction , it will be time to show some of the activities everyone can do at the school , such as lessons or others like the library , our protagonist having a coffee with some colleagues in the cafe bar , the reception service . First of all , the most favourable time for me to travel is July , because I am in the final year of University , so I have to attend classes for a thesis almost throughout the year apart from July , when I can take a relatively long summer holiday . Secondly , I would prefer to stay in log cabins to staying in tents , since I have had a horrible experience being attacked by a swarm of midges , when I camped out . This is based on a questionnaire conducted in the school and our English department 's investigation . According to statistics based on the questionnaire , the majority of students feel the most enthusiasm for an English class . In fact , I visited some English classes to find out that most students tried to answer questions and speak to native teachers . Consequently , it might be a good idea to film the English class so that the vibrant and active atmosphere may be able to be filmed . The girls ' football team is also famous for its reputation of keenness on practice . Actually , I can work with it in my office and visit some website using the new technologies such as the Internet . The new inventions have transformed my life , so it is easier with modern technology ( the mobile , the car , the plane , the coach , the train , the medical advances and domestic appliances ) , they have created more comfort and pleasure . In fact , I expect a full refund plus compensation for the dissatisfaction suffered . I trust you will give immediate attention to this letter and I look forward to receiving a satisfactory response by return of post within a week . When we think about clothes in the future , we should think about the environment first . Of course , technology will have developed enough for us to invent new material for those kinds of clothes . So we do n't have to worry about how heavy they will be . Firstly , I expected Danny Brook and Tina Truelove but I felt very angry when I saw different actors . What is more , you advertised there were discounts available but there were not . You said that the musical show started at 19.30 but recently it began at 20.15 . When I was 16 years old I fell in love with the most handsome boy in our school . Everybody started to laugh at me . I 'm sorry to tell you that I 'm really disappointed with your advertisement for the musical show at the Circle Theatre . And because of these circumstances , I would like to have a part of my money back . Faithfully , He said , ' Sure , no problem ' . As to accommodation I would like to choose a tent because I am used to travelling with my sleeping bag and my tent all over Europe . I am very good at basketball , and even if I am not a tall boy , I am a good player and I play in a local team . I connected wires , I carried loudspeakers , and so on . Towards the end of the concert I handed a bottle of wine to Poolo Conte . As you know he 's my favourite singer . Secondly , the two activities which I 'd like to do during the camp are sailing and surfing . When you go to a shop it is difficult to find what you are looking for without the help of the shop assistant . After that you have to wait a long time in the queue to pay and many times it is n't possible to pay with your credit card and you do n't have any money in cash . You said there would be stars such as Danny Brook and Tina Truelove , whose music is my favourite , but the musicians were actually some other people whose names I had never heard of . When they finished singing the last song I was surprised when they called me up on the stage and said thank you to me in front of hundreds of people . I am not good at either of them . I haven't written a letter to you for ages . I did n't need to pay an entrance fee because I was working there . Plus , I got an autograph from a popular singer . I 'll give you the autograph as a present . It is valuable of keeping on your souvenir . I would offer you one suggestion that concerns the classical concerts . For me , it 's very stressful and I usually run a lot to do it . In response to your letter that I received last Saturday I am writing to answer your questions . I usually sing in my spare time and my friends love it when I sing and regarding swimming I was champion last year in my city . Are tablets necessary ( for headache , insects ) ? It is wonderful how technology makes things so easy . That will be great because teachers are part of our life and they have to receive all our attention and friendship because if it was n't for them we would never grow and learn how to live our lives more confidently and with lots of good experiences that we will never forget . The reasonably - priced package , including tickets and accommodation , well suited my personal situation : comfortable rooms that are easy to reach and booked tickets can help you if you decide at the last minute . - improve your kindness and ask for work in restaurants or bars . It is a good training period for real life too ( being patient with demanding people is required ) . - check your wallet and if you have enough money ( a very small amount ) you can arrange a trip to reach countries like Chile , Cuba , Zambia , and Morocco where people ( poorer than you ) will offer low wages for ôsmallö jobs .. you might enjoy your summer holidays and ôfind yourselfö I am keen on singing and I have won several singing competitions at school . When I first entered the concert hall , I was given a pass for working here . The programme is very exciting and interesting , especially the river trip to Greenwich . This is the arrangement that we founded with the other students and everyone agreed . We had n't enough money to buy food or new clothes and the worst was that my youngest brother was terribly ill , and without money we could n't take him to a doctor . I want to travel only in July because now I 'm studying at National Academy of Defense and I do n't have time for anything else . I prefer that because I will travel with my wife and she always prefers that kind of accommodation . I tell you in secret that I do n't know why she does that . I like to catch fish too . My personal best is 27.66 for fifty meters . I would like to ask you about the weather in California in July . Are there any discotheques or something ? I would like to know if my wife can come with me , because without her I ca n't be there . Everybody gets up at six , and the first thing they do is run for about two thousand five hundred metres . Then they take a shower and everybody goes for breakfast . Two times a week I have W - F. This is very important , because every soldier should be strong . After this competition there was mathematics , and two hours of biology . I do n't like biology , so I slept on the desk in a classroom . I think that competitions should be filmed because my school is a kind of sports school . On video there should be how we get up . Houe we run , how we eat breakfast . Then you should show how our school looks from outside . There should be an interview with students and with professors . Daily life at my school is not only school and teachers and mathematics problems . We must know how to use a gun , or how to drive a tank . And , finally , right before the start they announced that Danny Brook would not be in the show that evening . After the show I was not surprised at all to learn that the theatre restaurant was closed for redecoration . Undoubtedly , modern technology has changed my daily life . And the best word I can use to describe all the changes is " drastic " . Among the greatest inventions of man I come across daily are the telephone , computer and automobile . The computer , probably the must versatile invention , allows me to get access to huge informational sources through the Internet , to do shopping without leaving my house , to do my work more effectively and quickly . People used to wear very different things from the clothes we wear now , we would n't even say that they are ' clothes ' . The things that people wear are changing all the time , everyone tries to be different in public and very different sorts of clothes are being created . I believe they will wear very different things . By contrast , in the future , I guess we would rather go back to the ancient time , owing to have natural life style . We will be unwilling to give housework away . They are more comfortable and really match with the environment . Although this is a new experience , I would prefer climbing and photography . The concert was a big success , a lot of excitement . The students mentioned that it would be very interesting to show the English lesson because some foreign students will probably join our college next year and it is the best way for them to find out about our English course . Additionally , the advertisement said I could visit the theatre restaurant after the show . Unfortunately , Pat was n't very good at keeping secrets . I told Pat everything even my secrets when we were still friendly . However , we are not friends anymore because of a secret in the past . I told Pat that my father and mother were going to separate . Maybe it was the wrong decision to tell her . She began to share that secret with everybody , including the teachers . Finally , I decided to go to another school and I will not tell any secret to anyone . To begin with , in your letter you asked me when I would like to travel . Thanking you in advance for your help , I look forward to hearing from you . Also you can compare the different cultures of all the countries and sometimes there are planned visits to historical places . In this lesson you can learn how to speak , write and read this foreign language with teachers that are well prepared . theatre To sum up , it is a big school where you have a lot of interesting lessons and some optional activities to do in your free time . Regarding accommodation at Camp California , I would prefer to stay in a log cabin because I think it is safer than a tent . Now , my English teacher has asked me to explain what I think . In my opinion , nowadays , shopping is very easy and at the same time very hard . Amazingly , doctors tell people to look after their bodies during Christmas time : shopping can cause you a large variety of undesirable pains . About the activities that I can do at the camp , I chose to play Basketball , which is my favourite sport , because I want to do some exercise while I am on vacation . I also chose photography because it is one of my hobbies . I 'm writing you a letter , because you are the organiser of an International Arts Festival . There is only one bad thing , that this festival was too short . I 've just received this letter from you , so I 'm writing to you . On Saturday and Sunday we do n't have lessons , but it does n't seem that we do n't have work . I do n't have trouble with my education . My friends and teachers are nice and friendly , but there is one thing I 'd like to change in my school . I 'd like to have more tests during the whole course , not only at the end , because it 's making me very lazy . Apart from that , the show was delayed forty - five minutes , consequently , everybody there lost control and became angry . Finally I would like to inform you that I have never had such an unpleasant evening in my whole life . The worst was that he did it unconsciously . Later , I realised it was the worst thing that could happen to me . I 'm writing to express my feeling and opinion about the International Arts Festival which was held a few days ago . For example , there were some concert halls which were too small to hold so many people , the stars and artists were just from six countries , which is not enough for the audience . This reminds me of what I experienced during my teenage years . We believe that the programme is very good and well organised and we would like to thank you one more time especially for that . The exhibition is called the London Fashion and Leisure Show and it takes place at the Central Exhibition hall , in London , From 10.00 till 19.00 . The class is very excited about that because the Show covers the latest Fashions , leisure and Sports Wear , make - up and hairstyles . Of course if you are in the public eye , the reasons why you want privacy are different , because if you are a politician , for example , you fear for your life . Because As for accommodation I would prefer to stay in tents . It is amazing and sometimes amusing how charming and strong the spell of luxurious supermarkets and cosy little shops is . But I do feel ill at ease when I see disappointed or angry assistants ' faces on leaving the magic world without any souvenirs of it ! I do apologize about that . If this is an inconvenience , please feel free to tell me . Guess what I 've done ! The preparation days came . I had a chance to talk to them about their jobs and it was amazing ! In particular , going to the Museum and the Art Gallery will be a great opportunity for all of us , as they are world - famous places in London . It was okay , because I was quite good at that , but the problem was that I had to jump onto the roof ! Another point which I think was annoying was the concert hall . Yours sincerely Actually not all the schools in Turkey are so strict but unfortunately the school that I 'm going to is like a military camp . My family allows me almost everything except smoking and drinking alcohol of course , which I do n't do anyway . So if it 's possible could you arrange it for me please . And also , I would prefer the log cabins to the tents , as I have never slept in a sleeping bag before . All of her fans were stood up the whole concert and dancing . Some of the fans were not good at all because they shouted and argued , but most of the people were very good . I must say though , I would have to travel in July because it 's the summer holidays for schools and I would like to spend some of them in California and visit a few friends if that is possible . A log cabin would be the ideal accommodation . Presumably they are more spacious than tents and it would be easier to keep tidy . I would like to know how much money people usually take and how much clothing . I know it sounds extremely boring and that is exactly what I thought when I was asked to help , but to my surprise it turned out to be much more fun than expected . Thirdly , I would prefer to swim and play tennis , because I have been doing this since I was I child , and I think I am very good at each activity . A few minutes later the show started and the group appeared on the stage . Later , when the show had finished , I stayed with the group in their room for a few minutes . What I really liked doing was helping them with their clothes and make - up , because I learnt how to do make - up for someone and I spent a few minutes with the most popular group in the world . Regarding starting time and the theatre restaurant , to see the musical I had to wait about 45 minutes because it started at 20:15 . I know you are always interested in detective stories , especially Agatha Christie 's . Do n't be surprised ! Where the stories are concerned , they will not be difficult to understand because you already know the stories and the narators are going to read clearly . Regarding the accommodation , I would be pleased to stay in a tent , because this reminds me of my holidays with my family . I just had to take care of them , serving some drinks and food during the rehearsals . I write to complain about the musical show " Over the Rainbow " . I had a very disappointing evening because of many things . First the actor was a very average actor . Also in the advertisement they talk about discount tickets . Well they did n't accept my £ 20 discount ticket . Why ? And finally I could n't visit the theatre restaurant after the show , it was closed . Why ? Also I wanted to tell you that the show was very boring . It was always the same . Because of all these things it obviously was n't the perfect evening as was said in the advertisement . I had to explain to everybody that I actually did n't have a girlfriend . I explained to them that it was a good possibility , nothing else , but no one believed me , because Pat had told them that I had an actual girlfriend . This problem with Pat had a lot of consequences , because I had a very heavy discussion with her about it . It was so heavy that one of our teachers had to calm me down , because I was very angry with her . Regarding the accommodation , if possible I would like to stay in a tent because I think it is a relaxing place to stay . And if during the nights there are any entertainments ? The opposite situation is when I pass my exams and I really need to buy something as a present for myself . It is really interesting . That is the second day of our trip and it starts at 10.00 in the morning and lasts until 19.00 . This technological improvement is changing people 's lives , behaviour , even their homes . But we ca n't stop these technological improvements . We should use them in positive ways . and we are practising these things . In the future life will be more artificial than it was . How delighted I was when I received your letter ! I would like to ask you how much money I need , how the weather is , in order to pack the necessary clothing , and whether I need anything else . I am sending you some pictures , the best ones only because there were some quite embarrassing ones . It was n't a spokesperson Kim but just asked him a couple of questions behind the stage . You did n't tell us any details about how much the ticket costs to go inside . In my class room somary people stay outside London about 50% in my class room and everyone is very worried about how they can stay for three days in London . And we 're very excited about your programme . Because in London there are a lot of shopping places , can you tell us about shopping and the time For spend or day ? Thank you For any detail more I think we go with you and enjoy a fantastic programme . If I tell something in the college baby someone like or dislike about my story but I think my story it very good for someone . In my college have got a new student every Monday and very big college around heir . and we have got three buildings and we have got a lot of teachers the teachers have got experienced about teaching I think somebody come in my college you fried want to study in my college and you want tall anyone for your college you ca n't tell for something but you know yourself about college you know just you love it and very like it nobody dislike it somebody tall about class rooms it very big and comfortable . It starts with food ( monstrous ) and goes on to clothes , pills , games and so on . A simple and well - proven architecture . Every electronic gadget in the future home will be able to communicate with other machines or computers . Regarding the accommodation at the camp , I would prefer a tent . The reason is that I like to live really naturally and it is more enjoyable to live in a tent than in a cabin . It was marvellous . It was hard work for a while but I was so happy to help at a really big pop concert I ca n't describe it . I really enjoyed that and it was one of the greatest , if not the greatest experience of my life . The organizer of the tour spoke with me and asked me if I wanted to do the same work in two months at the Rolling Stones concert Is n't that fantastic ! That 's the most suitable accommodation for a camping holiday . They also gave me a ticket to watch the concert live . I was really happy to be seeing the " Best Musical Show " in London . By problems I mean that the show started at 20.15 and not at 19:30 or why there were no discounts available ? The most disappointing thing was that there were different actors to those advertised who were not very good at acting . It was n't really a perfect evening as you promised on your flyer . I was very disappointed and I would like to have my money back . If you think about the early days , when no cars were on the roads and no one had an opportunity to fly to another country for a holiday , people had to walk or go by horse and ship . Today , everyone has the opportunity to just get into a car and drive wherever they want to . This is also a very big disadvantage because many people are losing their jobs . Another disadvantage is that everyone becomes a bit more lonely because they watch TV or play or work on the Computer and do n't see each other anymore because they do n't have to . We can hardly imagine life without computers , TV sets , microwaves , and so many other things , and yet none of these things existed seventy years ago . Her parents have been so upset that they have asked the school to help their child and that is the reason why I 'm writing this story . I have received your letter concerning two weeks at Camp California in the USA . Regarding my accommodation , I would prefer a log cabin because it 's more comfortable than a tent and less hot with the sun . However , I hope , there is water and light inside this log cabin . The saleswomen are too busy and haven't a moment to give you advice . The other one is tennis , which is also my favourite sport and I have been playing for several years . Lastly , I would like to know how many people are coming to the Camp I will go to . I should be grateful if you would send me the further information that I asked for and I look forward to hearing from you soon . Favourite lessons Favourite activities I would like to tell you about the show which we would like to see : It is " The London Fashion and Leisure Show " , which is going to take place at the Central Exhibition Hall in London , on Tuesday the 14th March , between 10.00 and 19.00 . I 'm very pleased to receive this prize . Other workers are taking on other months so there is only July that is available for me . I 'm very good at tennis , and I was a professional tennis player . Unforgivably , my climbing skill is nothing like my tennis skill , but I always love climbing . I 'm afraid of heights and I have always wanted to conquer that fear ! Filming life at school means filming the students ' actions and behaviour . It is very interesting and fun with the experiment . Lots and lots of experiments produce quite interesting and amazing results and I think Science is very useful in life . Also it is not a very easy subject so we can capture other students ' faces in confusion and puzzlement . We can see students expressing their feelings , wonderful and exciting story that the student made up or from a well well - known story . Another exciting subject which most of the students like very much is P.E. Many students like to play sports . I do a lot of sports , so apart from playing tennis I am a member of our local swimming centre . I can assure you that I am gradually improving my sports skills . It took place in a huge stadium which had over 4,000 seats for the " spectators " if you can call them that . The musicians brought it in order to achieve a high standard of sound quality . I visited your theatre and I was very disappointed for a number of reasons . I 've read your advertisement and the reality was different to what was written there . There was no Danny Brook but instead of him there was a different actor and I 'm very disappointed about that because I 'm a fan of his . There were no discounts available so I overspent . The theatre restaurant was closed for no reason apparent to me . It was a really bad evening and because of that could you possibly give me my money back ? Everything was going perfectly before last month when I met a girl from the other school . So one day she invited me to come to her house at night and to do so I had to run away from our boarding house and that was illegal . So I woke up at 2 o'clock in the morning and climbed out of the window . Next day my best friend went to the headmaster and told him about me so he put me on suspension . At this we can see the latest fashions , imaginative make - up and hairstyles . I am sorry to cause you inconvenience . Last night , when I went into my house it was quite silent . My father always remembered his responsibility was to provide his workers with a good salary , which is the aim of his life . When I , with mixed feelings , went home I found my parents were standing at the door looking very cheerful . ' It is a good idea to include the visit to the Science Museum and the National Art Gallery in the morning on Tuesday and Wednesday respectively . Firstly , there will be leisure and sports wear and the latest fashions . Secondly , there will be exhibitions about makeup and hairstyles . And on Tuesday we will enjoy the London fashion and Leisure Show till 19.00 . I am looking forward to receiving your positive reply . We are interested in politicians ' and film stars ' clothes , hobbies , passions and intrigues . There are large numbers of journalists following them all the time , even in their private life . We can go for a walk , go shopping , go to the cinema , get married or divorced . Why must everybody know and talk about their private life ? I was not satisfied with the show at all because it was very different from the description your advertisement had given . It was a disaster and I am going to tell you why . But it has advantages as well as disadvantages . On the other hand there are disadvantages , too . Firstly , the environment is polluted because of technology , although this is our fault . Secondly for us there are disadvantages because pollution affects us indirectly , and because I do n't do anything but watch television , and it is n't very good at all . I am writing to complain about your service . You were meant to start the show at 19.30 p.m. but you started very late at 20.15 p.m without any explanation to the audience . Unfortunately , Pat was n't very good at keeping secrets . I knew that but I needed someone who could understand and support me at that moment . I told her about my pregnancy because she has a friend who works in a hospital as a doctor . I asked her for help and she promised me she would do everything that she could and keep my secret . Pat gave me some advice and I decided to have an operation . I got a bit depressed but my parents supported me . They stopped me having the operation . You wo n't wait in the queue . I am a good swimmer and also good at golf ( handicap twelve ) . I took a certificate to become a teacher in both of them six years ago before I went to " CROARA GOLF " in Milan where I organised the evening 's entertainment for the customers . First of all , I believe that if someone has time to go to the shops has the possibility . Do you know I am amazing when it comes to playing tennis ? Great fun , very happy , if go with your girlfriend it will feel romantic , you should think something like this , but do you know it is not always like this ? If you interested in the clothes as well , but you need to remember , one is male , but one is female , they should have different fashion , at that moment should be had one is boring or have some bad chat , so in the end you both will feel unhappy or angry with each other . Mr. Manager , In this uncomfortable situation I am writing to tell you about some irritating problems . Then , the time stated as the beginning of the show was 19:30 and unfortunately it began at 20:15 . Closing these facts , when the musical finished I was very , after waiting for the start of the musical and I was disappointed with this version of Over the Rainbow . Everybody went to the restaurant , which was closed without any explanation . I am very disappointed with this evening and with this disorganised way of dealing with problems so I am asking for my money back . They always did things together , and they were the most popular boys in school . Both were very handsome , played football ; they were an example for everybody . Unable to keep a secret he told everyone , ended his friendship with Ted . Now Ted is rejected by everyone , no one talks to him and Pat is the example , but without his best friend and his honesty . In accordance with what you have told me about the accommodation I would prefer to go and stay in tents , because I think they 're unusual and that is not something that you do every day . In my opinion you have to give some money back to me . She is a very good girl and she can deal with every problem she has . My name is Agripina T. I just received your letter and I would like to answer and ask some questions . While I 'm at the Camp , I would like to do two of my favourite activities , which are basketball and singing . In the past I was in a basketball team and I enjoyed it a lot . At the Camp , is there a free uniform or will we have to wear something special ? And is it necessary to bring money , will we need it ? Students think that we do n't do anything and we do n't learn anything special . Our music lessons are special . And it 's always interesting to watch others while they do something like that . You can find further information from me about Camp California in the USA . First of all I can go to Camp California only in July because I will start working at our local leisure centre as a swimming instructor . I would like to stay in a log cabin because I have had bad experiences with tents . We are all customers of the big supermarkets . They have all that we need . But when we think about it seriously , shopping is not enjoyable , for example , if you forget something that you need for a salad . You have to go back to the supermarket and find the nearest parking space , then before someone takes the last fresh lemon for your salad , you must find out where the lemon section is , because they love to change the store around again and again . Firstly , I read in the advertisement that the actor would be Danny Brook , and this is one of the reasons why I went to the theatre . But I had a big surprise when I saw that it was a different actor , and I was very disappointed . I was very angry with her . I did n't know what to do , I was afraid that I had lost all my friends . After a few seconds of thought I went straight to Pat . " Why , why did you do that ? " Firstly , you advertised that Danny Brook , who is my favourite , is the lead but there was another actor instead of him . In accordance with study or work , I use the Internet , which is the easiest way to get information from all around the world . When I asked for the price I was surprised because the assistant told me there was n't any discount available . After two hours I thought that all of this information was written from a foreign point of view and it was n't the native opinion . I used my computer to collect reports from the Internet and I can promise I found so much information that I could n't analyse it in two weeks . Changes wo n't stop coming : the WAP technology ( you 'll buy a cake from a vending machine without any coins , only one call ) , digital TV , virtual reality and more ... I would prefer to stay in a tent to staying in a cabin . Because it is something I feel more familiar with . I used to go camping with my family every summer . Sometimes you can stay out all day just to buy a present for someone . It starts in the morning , and of course you have breakfast somewhere , and it gets later and you are still looking for it , so you have lunch , and finally you spend more money than you thought you would . RECOMMENDATIONS I have just received your letter informing me that I won a two week holiday at Camp California , so I am writing to you to tell you my preferences for the travel and the accommodation . About the accommodation , I have no problems , but I would prefer staying in a tent , so that the holiday may be more adventurous . First of all , the reason why I bought the ticket was Danny Brook , who is my favourite star , and was going to appear in the show . I could say that we can not survive without them . It is getting more convenient and useful than our past life . Furthermore , it is possible to treat many patients who have serious diseases more effectively , if we use modern technology in medical science . Because of convenience , we can use our time more effectively , but we should not rely on these things too much . Last week I attended the musical " Over the rainbow " , and I am writing in order to complain about things that really disappointed me . Hello . I 'm Robert and I 'm writing an article about clothes in the future . In my opinion , in a hundred years we 'll wear the same kind of clothes that we wear nowadays . I received your letter and I 'm very happy because I did n't expect it , so first of all I want you to know that I really fancy going to Camp California in the U.S.A . for two weeks , especially because I 've never been to this country . Finally I want to find out if there is a supermarket near the campsite and if there are any facilities for washing my clothes on the camp . I look forward to receiving a reply from you . We arrived quite early because we had to work out how we were going to serve people did with which order , so we started putting all the stuff in the appropriate place . I was very nervous because I 'd never been to a concert before and an hour before everything started the singer and the musicians were there and I could n't help it and I started crying - you can imagine , they were so handsome that I could n't believe it - I tried to calm down because I had to work , and later I began to feel more comfortable and when the concert started everything was so exciting that the time went very fast - although I was working - and it was like a dream . I want to know if it is available at that time . Furthermore , I would like to ask you which kind of clothes I need to take and how much money I 'll spend . But a lot of inconveniences annoy them . First of all the parking is not convenient and is expensive . Sometimes you have to park your car in a further place then walk to the supermarket . Furthermore , when you look around the supermarket , you ca n't easily find the goods which you want to buy . It 's very confusing without the right signs . As I understand , it is very important to confirm the date of my trip . Now about accommodation . If it is possible I would prefer to stay in a tent . I am quite good at tennis , especially playing doubles . Also I like swimming and I 've got two years ' experience of teaching swimming at a leisure centre . I ca n't concentrate in a shop , and I ca n't relax either . On the other hand , I understand very well that it is really necessary . I also understand that nobody will do that in my place . I think it is an opportunity to meet different people ( even if they are pushing you ) , to understand what they like and what they do n't , because even some kinds of food can be in fashion . I am writing this letter to inform you I had a very disappointing evening at your musical show " Over the rainbow " at the Circle Theatre where you are the director . This was a very difficult decision but I had to take it because of my personal situation , all the time shouting and fighting with all my family . I 'm writing this letter to you to make a complaint about the musical show " Over the Rainbow " which I saw yesterday . I have to say that I 'm very disappointed with what I saw because after seeing your advertisement I expected more . The show was entirely different to what it says in the advertisement . I was a little more patient so I stayed to watch the whole show , which by the way was the worst I have ever seen . I do n't know why I paid £ 20 with no discount , which the advertisements said I would have . Then I thought that I should go to the theatre restaurant to have a drink or eat something so that I could n't say that I had wasted my time by coming here . Computers have entirely changed people 's lives . There are hundreds of programs which help you communicate with your cousin in Australia or with a complete stranger who you want to meet . I wo n't ever forget the day the doctor told me and my Mum the truth about my strange disease . Before it was packed into by the audience , we had to clean around the reception , but totally it was really exciting although I was just a member of staff in the small reception , because I felt great excitement ( especially girls ! ) from people queueing . I know this is one right love . I 'm absolutely besotted with him . She told everyone that I fancy him and everybody always makes a joke of it . That makes me feel so embarrassed : I was very angry at that time ! Amazingly , we can find that there are more and more computer users . My daily life has also changed a lot through the use of computers or modern technology . Regarding the accommodation , I would prefer a log cabin because in my opinion tents are very uncomfortable to sleep in and they are n't very cosy . I would like to ask you for vegetarian food for me as I am a very strict vegan , and to suggest what kind of clothes to bring . In a nutshell I think Maths , basketball , Speech and Drama , and History should be filmed . Firstly , I would like to thank you warmly for this great prize . Of course we will also show other activities , such as PE , the lunch break and the theatre workshop . It was n't a " perfect evening out " like you said in the advertisement , so my friends and I would be grateful if you would give us some money back , if that is possible . Your faithfully It 's a sad story but it lets you know about a type of life that you ca n't imagine really exists . I would like to travel only in July , because I am going to study at my university until the end of June . I have a lot of possibilities for spending my spare time . Generally I paint some landscapes by using watercolours , but sometimes I try to paint like during the impressionist era by using blobs , oil paint and canvases . In order to prepare it I visited some classrooms during the lessons and I interviewed a number of students from our school . Some of the teachers are very good professionals . Their lessons are valuable , rich in knowledge and funny . According to students ' opinions , the most popular activities are basketball , tennis , swimming and also the photography group and the painting team . It could make the video more interesting . It will show that during every day we have great fun and we receive good , important knowledge . My school starts a summer holiday from 1st July and I am going to take a summer course from August . They can relax , reduce their stress and they are happy when they find the thing which they wanted . However , shopping sometimes makes them stressed . People often waste money on worthless things . During the camp I would like to practise my swimming ( I have attended swimming lessons for 3 years ) and also I would like to learn how to take some good photos . Sometimes , unfortunately shopping can be very annoying , especially at Christmas or Easter time . The only advice would be : " Do not do your shopping at Christmas or Easter time " - but it will not make any sense , will it ? In addition to this , it was not the famous actors that you had mentioned in the advertisement performing , so we were disappointed . Then I had to wait 45 minutes ; the show started at 20:15 . At that moment I was really angry , so to calm down I went to the theatre restaurant , but it was closed , because of its bad hygiene and food . Now I only need to push a button , and things or machines work on their own . Homework is easier to do with the computer than with a book sometimes . Maybe , I wo n't be able to understand how the things work and that scares me . I will be useless , because a machine will do all the work . To begin with , it was not Danny Book who acted in the show , as you wrote . And then about the tickets , you wrote that there were discounts available but there were not . Finally when we had seen the Musical , we went to the restaurant and it was closed because they were doing some decorating , and you wrote in your advertisement , " Visit our theatre restaurant after the show " I am looking forward to hearing from you . Clothes are a very interesting subject to study . If you travel around you can see a lot of difference still between different cultures . First I think that in the future we are going to wear fewer clothes because the climate is going to get warmer and warmer . Finally in my opinion I wish we would dress more as we did in the past , using natural material . We must think more about the environment and live closer to nature . In the past , for example , we used to write letters to communicate , but now we surely send an e - mail , a fax or make a phone call . Nowadays , you get everything immediately , but will it always be a good thing ? I think not . So they prefer to leave their sons watching TV . In my view , it was extremely interesting and satisfying for me all the concert long . Although I can not explain any more about the thing I felt during the concert in this letter , I 'd like to recommend you to help at a pop concert . I am afraid that I could n't write to you immediately , but last month I enjoyed helping at a pop concert and so I was very busy . Regarding the accommodation I would prefer to stay in a cabin . I think that the cabins are safer than the tents and they can protect you better in case the weather changes . I chose climbing because I 'm interested in this sport even though I 'm not experienced . Yours sincerely Before the concert I helped with carrying and putting in order some chairs on which some special people would sit . In addition I had the opportunity to talk to the singers and get a lot of autographs by them . I was doing different activities , from designing fliers to selling tickets . In addition I checked the e - mail daily and answered the phone . In the advertisement it said that discounts were available , but when I asked a member of staff in the theatre about the discount he did n't offer me one . I expect this will be possible . Like earrings , necklaces , bracelets , rings , glasses , hair bands , handbags , shoes , watches , etc . We had a great time together until we decided to visit the musical " Over the Rainbow " at the " Circle Theatre " . So when the miserable musical came to its end , we were happy to leave the theatre auditorium , but we both wanted to have dinner in the theatre restaurant , because no restaurants were open anymore , because it started too late . Pat was my big brother , who had heard of some people paying , " safety - money " , but never know the reason , until he found a large amount of money in my room . Yeah folks , that was the point I got interrupted by my parents in this beautiful dream , but if you want to hear the end of my story than buy the " Rossall - School - magazine " , next issue , and you will hear the end of this unbelievable story . Secondly , for accommodation , I prefer to say in log cabins , as I have no experience staying in a tent , I hesitate to try . I used to belong to the singing club when I was a high school student and once we won the contest , moreover , painting is one of my favourite hobbies . Finally , I would like to ask you whether there is anything I should bring on this trip such as specific clothes , extra money etc . It was a privilege to help at a pop concert . My dear friend , if I tell you this , I am sure you will get jealous . Dear Sir or Madam , I 'd appreciate for giving me the first prize in the competition . The aim of this report is to summarize the results of the survey , which is about making a short video . Yet , one extremely hot day while I was peacefully walking by the sea and thinking about my own problems , I discovered my elder brother 's girlfriend with another boy . So , the next day , I nervously came to Pat 's apartment where she had been living on her own since she was eighteen . From the activities , I would choose painting - which I am keen on and I have done several courses - and Photography - about which I know just the basic skills . Besides , it was confirmed by scientists that consumerism may develop into a compulsion . First of all , I was looking forward to seeing one of my favourite actors , Danny Brook , and it was very disappointing for me to see a different actor instead of him in spite of his name being written in the advertisement . I 'm writing this letter to inform you about the disappointing evening I had when I visited the Circle Theatre . It 's something absolutely necessary for every action people perform . It affects us both positively and negatively . I 'm writing to you on behalf of all the English class in order to let you know how excited we are about the trip to London and to give you some ideas of other things we are interested in doing in London while we 're there . First of all , we 'd like to thank you for the programme you have already arranged . It 's wonderful because it covers most of our interests . But also we would like to visit The London Fashion and Leisure Show that will be held at the Central Exhibition Hall on Tuesday March 14 from 10:00 - 19:00 . Thank you for your time . We 're looking forward to hearing from you soon . I had always wanted to travel abroad and experience other people 's lives and cultures , so I decided to go to Paris as soon as I finished university . But in spite of all of these disadvantages , I was pursuing my dreams and objectives and in spite of everything I was going to do it . It took me three months to learn the language and by this time the whole family had fallen in love with me , so that when they decided to move to London , they invited me and now we all live here and I feel like part of the family , even though it was very hard at the beginning . First of all , the stars of the show were not Danny Brook and Tina Truelove . But your stars were not there . From every singular things I have complained , it was totally different from what your advertisement said . And I can send e - mail to my friends via the Internet fast and cheaply compared to the old - style mail - services . I 'm writing to you to complain about the disappointing experience I had with your theatre . And last , the most disappointing thing , the advertisement also said that Danny Brook would be there , my favourite actor , but there was someone else instead of him . So , the show was not good at all and my evening was spoiled in spite of all that the advertisement promised . So , that afternoon at lunchtime , I went into the teachers ' room and opened her desk and took the paper out quietly and calmly . That was the most scary and daring thing that I did in my childhood . Sincerely ... Unfortunately , Pat was n't very good at keeping secrets and so his whole school knew about Sara 's experience . Sara was a very good pupil . She spent the money on a magazine . I am writing to you to thank you for your very good organisation of the International Arts Festival , where I spent two excellent days recently . I suggest it would be very interesting to meet artists from faraway and exotic countries . To finish my letter , I hope that my notes can help you to make next year 's festival more interesting and comfortable for the public . It is so because you are young and need to make your life as interesting as it can be now . Naturally , it 's easier to get a job when you are good at foreign languages or computers . Also some concert halls were too small for this many people . The school is like a dungeon here . I do n't want to be so evil about school but rules are rules and they are limiting us within the borders of our school . We are not allowed to compare our thoughts during the lessons because the teachers think that we are chatting . I had been looking forward to seeing my favourite actor Danny Brook , but he had been replaced by some other actor . I was not too happy about that and why did n't the show start when it was supposed to start ? Your advertisement was full of false advertising . I hope you appreciate my letter and that you 'll try to amend these problems./ Sally Svenssen I do n't have to mess around in the supermarket on a Friday evening , when I 'm tired from school , I just get all the groceries I need delivered to my door instead . Nowadays I spend 2 hours in front of the computer every day , shopping or chatting to people . The last thing I would like to know is what clothes I have to take , even though the weather in July will be good . So , let 's imagine that your credit card is not working , or some one stole your cash from your pocket . Also it is very difficult to shop if you are handicapped . Staying in a queue or crowd is also unpleasant . Your advertisement for the show contains further inaccuracies ; this show did not start at 19.30 p.m but only at 20.15 . Under these circumstances , as your Theatre did not fulfil its commitments , I ask you for a full refund and I expect to receive a cheque for £ 15 , as soon as possible Yours faithfully Mind what you tell her ; she can make the worst of it ; gossiping is her favourite leisure activity ! A couple of weeks later , my sister called me when I was at work ; completely devastated and weeping scalding tears , she could hardly pronounce a word . I could get her to simmer for a second or two then she suddenly started shouting uncontrollably : - " Never have I met such a poor cow like Pat " , Olga hurled this at me down the phone . For activities , my first choice is basketball . I have been playing it since I was nine years old . My second choice is golf . However , I could enjoy it , even though I was a beginner , so I would like to practise and have fun at the camp . As I have told you , I had a chance to help at a concert of Majesty , a local band in which one of my friends played guitar . At first I just helped setting up the stage ; setting microphones , and tuning guitars . He explained to me that it was to control the light . It was fun practising how to move the lights and change the lights . Beside that , I 'm allergic , and that causes me problems when I 'm close to nature . I 'm quite good at painting and I play tennis . I 'll be very happy if you can give me a chance to use the camp 's art studio and you 'll be able to prepare some painting materials like oil paints , canvas and brushes for me . I think the result of that action was marvellous . Everybody was very surprised that you can create such amazing things , using scissors and paper . The light on the stage was very bright and very warm which made the scenery very pleasant . The organisers paid for my accommodation and flight to Ireland . On the next day I helped them to build the scenery and I had enough time to visit a museum in Dublin in the evening . In order to know what sort of clothes I have to take , please can you tell me about the normal weather for this period ? One of the most important things we have to film is our bicycle classes . Our school is now the best in the country in all ages . We are prest with this . We can show what we do in order to be the best . It would be good to show the swimming pool , the gym , etc . And on the other hand we also have a very important museum , and a very beautiful building in the school grounds , bowls them ! ! After that , your restaurant was closed without reason . Introduction : The aim of this report is to summarize the right lessons and activities to be filmed . Conclusion I have always been interested in visiting other countries . Below is a summary of the most important relevant points with some recommendations . The fully equipped computer centre in the main building is extremely good . 2 . The school arranges an amazing range of activities , such as excursions , sports and different kinds of trips . Regarding accommodation , between tents and log cabins , I would prefer a tent , because I love adventure and also because I can be freer . I know I will have the chance to do two activities , so I have chosen two from your list : basketball , because I have been playing it since I was eight and I have been part of a strong team for three years . The other one I have chosen is swimming ; for the same reason why I chose basketball . For example , if the shop is full of people , it is not enjoyable , because they will create too much confusion , too much noise with the risk of wasting time . The last problem I would like to tell you about is about the restaurant there . First it helps to make my social life convenient . To sum it up , as technology is improving my life itself is becoming convenient . I would like to know with whom I 'll share such wonderful days with the sports activities . My Russian friend invited me to set up an exiting new business . First of all , in order to our firm purpose I wrote an invitation to my favourite idol - the poet and singer Boris Grebenchekoff . His one - week concert programme was so successful that we decided to invite him else , as soon as the tickets were all sold . I had a nice experience as manager too . I am writing about the letter that I recently received from you , which is about a competition in which I have won the first prize . About the accommodation , I would prefer a log cabin instead of a tent , because it is safer and more comfortable . The two activities that I prefer are Basketball , because I played in my school 's team for almost a year , and Photography , which is a hobby that I am good at and I have done since I was ten . People are used to going to the shopping centre because it is easy and familiar . It is one place where you can have lunch or dinner , watch a movie after that , and , if you want , buy something at the shops . Instead of going to the theatre , which is more cultural , or even having a picnic at Ikurapiura park , people prefer spending all their money at shopping centres . Circle theatre 's Manager : I am writing to you because I felt disappointed after seeing the musical " Over the Rainbow " . First the actors who were supposed to star in this show were not the ones put on stage . I had a discount ticket , but they refused it and I had to pay the full price . Apart from this , the show started forty - five minutes late . I think these reasons are sufficient to ask for my money back . She was also concerned about being pregnant , but she was afraid to tell John about it . He could n't believe what Pat had told him , so he broke Pat 's nose . I am now writing this letter to give you further information about myself with pleasure . Regarding the accommodation , I would prefer to stay in tents because I think it will be closer to nature . Tennis is my favourite sport . Shopping is becoming a popular way of killing time nowadays . Try to imagine the scene : twenty or thirty or even more people are in a queue outside the fitting room . The accommodation that best suits me is the log cabin , as the space in tents is very limited and I am not used to having all my belongings in order and packed at all times . With regard to the activities you offer , it is difficult to choose from such a huge variety , but I prefer to do those I know better such as climbing . There are many things that can go wrong in the process of acquiring a product or service . Hunting on the high street , or the shopping malls for the desired bargain - because we ca n't afford to buy anything otherwise - often becomes a desperate attempt to attain a lifestyle promoted by the new consumerist society . In the end everything depends on our attitude to life , including shopping . But even without money to spend it is fun to rush from time to time through the sales that seasonally appear , or simply look at the superb displays that shops have in their showrooms . First I did n't accept but finally she convinced me . I would prefer a tent rather than a log cabin because I have been told that the Californian summer is hot and dry so , because a tent 's wind circulation is better , it would create a comfortable coolness . It is finally your turn and you reluctantly hand the money over to the hypocritical cashier . They had a concert in my home town , that 's why the organisers were looking for young people who could speak English . The staff in that department were really friendly and helpful and they were also huge , like giants . Basically , I helped them liaise with the local police and get some electronic equipment that they needed . By the way , I have already been invited to their next concert . You said that some discounts were available . When I went to the restaurant I was really surprised . In the advertisement you wrote " your perfect evening out " , that 's very funny . It helps me when I study . I can find many things on the Internet or write my compositions on it . I can find cold water in the refrigerator but 50 years ago they did n't have the refrigerator , so our life is easier today . I think it depends if you are a man or a woman and now I have to say I am a woman and I enjoy it . First of all , as I see it the idea of an Arts Festival is great because in this way many people can get to know artists who come from different countries . I always prefer to read books that are unusual in some way , because they give me the opportunity to escape from everyday reality . They are the main characters of that book , and what characterizes them is the violence of their passions . To make it worse , neither discounts nor restaurants were available that night although they were said to be available . According to the owner of the restaurant , it was closed because the plugs of some lights were cut off . However , I think there will be some differences in the quality and materials of clothes . Although the appearance such as shape and colour will not change so much in fashion . Some people are in a hurry , others are aggressive and most of the others are very stressed . It is not always like that but we often see such a scene , even though shopping is becoming an entertainment not only for teenagers but also for adults . Then , the show was meant to start at half past seven and I had to wait forty - five minutes because it started late . I am writing this letter to complain about the treatment that we received when we went to the Circle theatre in order to see the musical show " Over the rainbow " , whose actors were Anthony Keens and Tina Truelove . Indeed , it had a big swimming pool and a beautiful garden . At first I was irritated that contrary to your announcements no discounts were available . To my greatest disappointment Danny Brooks was not in the show , but his part was played by an actor whose ( lack of ) singing and acting skills did not make him a suitable replacement . yours sincerely Technology is essential to our life , we need it each minute , each second . Good because you can have access to a lot of information , and it is bad because the computers are doing people 's work . We really appreciate your organising a very nice programme , which has been organised by you this time . In particular the River trip to Greenwich makes us very excited and we are really looking to forward to this . We 're looking forward to your reply . Invent glass was very eventually to architect . Architecture with use of glass brought us modernism in 1980 . In the future we can expect to have a new material and it will make our life more comfortable and convenient . It is said that one of the reasons is that a small separate room makes children unsociable and depressed . Also as producing new electronic , our home of the future will be more convenient . In addition I would like to choose singing and photography because I am good at singing and taking photographs . Last month I enjoyed helping at a pop concert a lot . Really it was a very interesting experience , particularly when I had to deal with a young group of children from Latin America . It was incredible , because I learnt some Spanish words such as Hello , How are you ? goodbye , What is your name , house , dog , cat , boy , girls etc . I am very happy that I promised myself that I would learn Spanish this Summer at Huntingdon College . At the concert they were very successful because they were very confident and I helped with the sound system and our equipment was extraordinary and the audience were fantastic . It seems to me that all these failures were your fault , because you were responsible for the organisation of the show . However , considering that I saw the show , I would like to get a 50% refund . Please reply at your earliest convenience . That is why I think that modern technology helps me in my daily life . I have once experienced having been soaked while I was sleeping in a tent due to heavy rain several years ago . I would be really grateful if you could send me some information or any relevant brochure . I 'm writing to you because I wanted to tell you what a bad experience I had during my holidays when I went to see the play on at your theatre . To begin with , the actor you published as going to perform , did n't . People are getting more and more addicted to this , because it helps to make everyday life easier and more comfortable . I 've recently been to one of your musical shows called " Over the rainbow " at the Circle theatre in London , thinking it might be a good idea but it was disappointing . I 'm writing this letter to explain to you what happened and to look for a solution . To begin , the organisation of your colleagues in the theatre was awful for various reasons . Unfortunately , Pat was n't very good at keeping secrets , so without want I knew that there was going to be a concert in our city given by , from my point of view , the best group in the world , Oasis . At first I got more angry with Pat than with my other friends in the group , because Pat was and is my best friend . Then I realised that she had reason . I was irritable because my parents were going to get divorced , but Pat would always be my best friend so I told her that I was n't angry with her and I was not going to go to the concert because I had to go to the court to solve my parent 's affair . And that 's the story of how I missed the opportunity to go to the only concert that Oasis have given in my city . Well , some people would say yes whereas others would disagree . However , I would add that journalists - being aware of that hard topic - should try to moderate what they write in order to respect other people 's privacy ; since they would probably not be happy to have their own private life exposed ! I was bored , so I decided to follow him to discover where he was going . I would prefer to be accommodated in a log cabin as I do not like sleeping on a mattress and I get an allergy to rubber . Could you , please send me some extra information regarding the amount of money I should take to cover any other expenses , and also , what kind of clothes I should take . For the two activites that I chose are at first swimming . I am in the swimming team and I must go two times per week to train because I have a competition every weekend . Could you tell me approximately how much ? The concert sarted at 6:00 pm until 2:00 am , and I started to work at 12:00 pm to prepare the stage with the musicians . After that , at 2:00 pm , when people arrived , I was at the entrance to take the tickets and , you know , it was incredible because some people slept all night in front of the stadium to be in the front row . I saw old people , children .... and for me it was very strange and it was very interesting , because I met a lot of people and the best thing was that I knew the pop group who sang . It was fantastic . I am writing to express my dissatisfaction with the musical show which the Circle Theatre is staging . I recently had a week 's holiday in London and during my stay I went to your theatre to see " Over the Rainbow " . In the advertisement , I had read that Danny Brook was starring but he was not . The play should have started at 19.30 but it started forty - five minutes later , we were waiting there without anything to do . After the show had finished , I went to the theatre restaurant to have something to drink and relax but it was closed because the staff was on holiday . Moreover the discounts were not available as you said in the advertisement and I paid £ 20 . I would like a refund because it was one of the worst evenings of my life . If this matter is not resolved , I will take it further . Everybody agreed with her . I 've received your letter and I 'm very happy to know that I won the competition and the first prize . In answer to your question , I will have to say that I can only go to the camp in July because of my job ; they only gave me that month off . I would prefer to do some climbing because that 's what I do in my spare time and I do it quite well . Apart from that , if you give surfing classes I would love to take them ; surfing is one of my chilhood dreams that never came true . I do n't know what type of clothes I have to take or the amount of money that I 'm going to spend , so if you , please , could help me by giving me this information I would be very pleased . Shopping is not always enjoyable . We have all been shopping once in our lives and sometimes it probably has not been very enjoyable , why ? We had a class discussion and we all agree on some points . For example , if we go to a big mall we will probably never find what we are looking for , and instead of buying what we came for we will leave with lots of things that we liked but we will never use . Most of the time he gets lost , or they start playing around , making noise , bothering people , etc ... And when this happens you get in a bad mood and you 'll have a bad day shopping . So if you want to have a good , relaxing day shopping , we recommend you do n't go with your little brothers and to go with enough time to look around for what you really want . I 'm writing to you because I went to the International Arts Festival and it was a pleasure . On the other hand , I must tell you that some concert halls are too small , so you ca n't be comfortable enough to appreciate the event . Considering the advertisement , which appeared in one of London 's newspapers , I would like to present you with some of my complaints about your musical spectacle . Secondly , the time when your musical should start was changed , delaying your show for nearly one hour ! Neither the beautiful surroundings near your theatre nor the comfortable seats compensated for my horrible evening . However , technology has a bad influence on us - generally on our health . However , he did not act , and his substitute was not very good at acting . I went to buy the tickets but when I paid there was not any discount available . That Wednesday Pat phoned me and told me that Sally also loved Paul . The weekend came and that Friday we went to the discotheque . When Sally came out of the discotheque I was very angry and I started to shout at her . Unfortunately I was very disappointed with it ; I was expecting the opposite . First of all , the advertisement where you advertised your show and what the theatre provides is totally wrong . I came to see my favourite actors Danny Brook and Tina Truelove , but the actors whom I saw were other people . Another thing is that I took a particular amount of money to buy tickets and when I appeared in front of the ticket desk I found out that the cost of the tickets in your advertisement and the real price were n't the same , the real price was much higher . Also the show started very late compared to what was written in the advertisement . before the beginning ? So , after all of that , I wanted to have a nice relaxing dinner in your restaurant . I was very angry when I appeared in front of closed doors and there was a notice that the restaurant was n't open . In fact I am writing to you with just one main aim . I 'll be really delighted to receive the money back for my ticket . I 'm looking forward to hearing from you . Faithfully yours Look at the history books for 400 - 600 years ago , or even for the time of the First and Second World Wars , to see how society has changed , just because we stepped up the advance of science and technology . On the one hand scientists have discovered a lot of medicines for different illnesses , but on the other hand they discovered many illnesses which we had n't heard about before . More and more people die from some illnesses whereas a long time ago fewer people died from the same illnesses , despite the fact that they had fewer medicines . However , technology nowadays has improved so much and it has changed our lives a lot . Today we ca n't even think how we could possibly live without computers or without aeroplanes . The computer is our way of communicating with the outside world , whereas with aeroplanes we can reach our parents and friends easily and much faster than we would if we used boats or trains . Every day scientists and technologists discover and produce more and more new things and that is good . It has to be like that , we have to go forward not backward from the point where we are now . Society has to go forward not to stop in one place . Actually , I read the advertisement for the show and there were a few mistakes in it . After the play , we wanted to eat at the theatre restaurant but we could n't . As you can see , there are some ( deliberate ? ) mistakes in the advertisement you made . I quickly became bored by this hypocritical attention they gave me . I am writing to complain about a musical show last weekend when I was in London . I felt very upset about your advertisement was totally different from the musical show . It was quite ridiculous ! She enjoyed sharing everything with Pat , whatever it was . This made Nick very embarrassed and he felt hurt . Finally , they got separated . For example , if Diana , who was the ex - wife of Prince Charles , had n't been followed by paparazzi when she was dating a man , there would n't have been a car accident which caused her death . It was a pity that the halls used for the classical concerts were too small . When the sons were old they began to talk about their life , beginning with this story , which happened a long time ago . 17th June 2000 I 'm in London for the first time and I wondered what is interesting on your stage : I read in the newspaper the advertisement about the best musical show . In the advertisement the cast was very interesting - Danny Brook and Tina Truelove . I decided to go to your theatre but at the beginning it was the tranbles . In the advertisement it said - " discounts available " . I 'm a teacher and in Poland I have discounts but in England I do n't . I know this is another country . I was very suprised when I saw a different actor . It was n't Danny Brook . I saw one week ago on TV ( the 23rd annual ) the fashion show in Paris and I was very suprised because of the style . All the models had very strange long shoes made from black leather , the trousers were quite short and the jackets were elegant with emblazoned material . People will wear clothes made from natural materials like silk , which will be comfortable and elegant . Because the world is now a global village people will wear at least one item of traditional or national clothing ( for example a peasant jacket or hat ) , like they do now in rural areas from time to time . Sailing means an ever renewed adventure as you can not control the atmospheric conditions . When you ask to , the sales person often answers that your size is out of stock . It seems like a good opportunity to practise it . I would rather stay in a tent , because I have stayed in tents before and I liked it . It is more pleasant than staying in log cabins and it is such a wonderful experience . I agree that shopping is not always enjoyable because a lot of things can happen to you . Therefore she had to do a lot of tramits to cancel her credit cards and to change her plane ticket . Well , regarding the accommodation at Camp California I would prefer staying in a tent . Well this is absolutely true , especially when you go shopping on Saturday . For example , you go into a clothes shop , you see all those women running around trying to find the shirt that will match their new skirt , so they are looking everywhere , pushing you because they think that you will take the shirt that they want . You get headaches , you get stressed , and finally you get bruises because of the woman who pushed you to get the pretty skirt before you ! ! ! I would prefer to stay in a log cabin rather than in a tent , because I find it more comfortable to sleep in a bed , but it would n't be a problem if I have to sleep in a tent . I would love to do climbing and surfing just because those are sports I have never tried before . That means I do not have any experience . The part that I enjoyed the most was that I felt I was doing something worthwhile for the community and also that I got to meet a lot of people . I have just received your letter saying that I have won the competition . I must say I was really surprised and happy to be given the opportunity to join the Camp for two weeks . I am concerned that you offer me the chance to choose two activities , while I am there . Because of my studies , I will take painting , as this is the subject which I am finishing at college , always with important qualifications , and photography which has been my hobby since I discovered that I can mix , in practice , paint and photography . Concerning accommodation , I would prefer a tent since for me if I go to a camp or on an excursion it is n't the same if I sleep in a cabin . I really liked one of them concerning a holiday in Spain for 3 days with hotel and breakfast included , for only £ 250 . I went inside to ask about that package but they told me that it was gone , so , I went to many shops just to get the same answer . As and advise try to go shopping in the out pick hours , and do n't waste your time asking for promotions advertised in the windows of the shop . I 'm not really a young man and during the recent years of my life I becamehave become accustomed to comfort . That was cruel , because I was very hungry after the show . In spite of this , I have got all the equipment I need for painting and I paint very well . The food was delicious and fortunately I did not have to pay for it . I am very pleased to be the winner in your competition . When I was at the university I was very keen on basketball and I played for the university team . In 1998 we were the champion of the First National League . Nowadays our shopping habits seem to have changed . I can clearly remember my childhood and our only local shop . I was really astonished by all these shopping centres , like ASDA , HOMEBASE , etc . One day I decided to go to the shopping centre which is only 40 metres from our house . I 'd walked around for about 15 minutes until I found the door . When I entered the shop I was a bit angry . In fact , this activity seems to be very interesting . Unfortunately , I have never tried but I feel like trying it . The best thing to do would be to show the cooking personnel because they are very nice . I advise finishing with a chemistry lesson so that people see the laboratory . The advertisement promised us a perfect evening but it was n't , so I would highly appreciate it if you could completely refund our tickets . Since Paul ran a very popular hotel in London , he told Pat that on Sunday the superstar Madonna was supposed to be staying there with her new mysterious lover . I 'm writing to you to complain about the musical that I saw when I went to the theatre during my holidays in London . To my surprise Danny Brook never appeared . He is my favourite actor and I paid to see him not to see a different actor . Finally at the end of the show I decided to go to the theatre restaurant but it was closed because it had n't been repaired . I enclose my postal addresses and I will be looking forward to a complete refund Most of them believe that they are kind of crazy or evil . Carol , a 16-year - old girl , said , " I imagine clothes in the future will be very strange . Maybe they will be in many colours and they will be very tight . They will be synthetic clothes , I think , made of plastic or something similar . " Most young people like Carol believe the same and use their minds to imagine the variety of clothes in the future . After all , they 'll be the ones that decide what the Fashion of the Future will be like . My name is Joseph and I am writing this letter to complain about the mess that the administration of the Circle theatre presented to me . We paid to see Danny Brook , my son 's favourite actor , but we were quite disappointed . My son was very happy because he would see his favourite actor for the first time . Expecting British punctuality , we went to the theatre at 19:00 to watch the 19:30 show but it only started at 20:15 . It finished later than it was supposed to and then we missed the train . I did n't see any discounts available ; I thought my son would have paid less than I. As we had already missed the first we went to the theatre restaurant , which is famous for its good food , however , it was closed . Because of this , the least you can do for us is to give me my money back and work hard so that this theatre , which is famous for its beauty and punctuality does n't become famous for its disorganised shows . People have seen in the last 10 years how different our clothes can become . Clothes used to be made of cotton , but nowadays we can see shirts , pants , socks .... made of almost anything . Computers are little things nowadays , but at the speed at which technology develops , in the next century clothes will tell our doctors about our health at any moment , any time , anywhere , people will be able to locate us around the world . In the future we wo n't buy clothes according to size or even colour . Our clothes will adapt to our bodies , the weather , our fit , all our needs . I saw the musical show in your advertisement during my holiday . I think after 100 years , at least something will change as regards design , material , colour , etc . Since I was a child , I have been interested in camping and sleeping in tents . For example , how much pocket money will be enough and what kind of clothes I should wear . We think that this is a great opportunity and we are all very interested in going because we can see there the latest fashions , leisure and sports wear , a lot of different kinds of make - up and some famous hairstylists . The show is absolutely free for students . I have further ideas . In the future , maybe in 2113 , there will be houses like now but with more technical things . But I think that people will also need a bed and a table with a chair . houses will only be more modern and more practical but not very different from our homes in the present . The whole show and the acting was of a standard comparable to school theatre . When we decided to visit the theatre Restaurant after the show it was closed because some decorating was n't finished . It was this last point that got me angry . After everything that had happened we went to the hotel tipped and very affect . From a small village to the town was a very long way because people used a horse and wagon . Every family now has a TV , to travel long distances we use not just the car but also the train and aeroplane . Before we had a fantasy about how people might travel to other planets , and what we see now is a spaceship cruising in space . Before it was only in our imaginations . New technology has made our lives more comfortable and easier . Everything that we do now we do with a computer : it helps to look after the house , to perform very difficult operations , because the computer can think much faster than a human . And I can continue my list in this way ... because science never stops in one place . Looking forward to your reply . It was such a wonderful experience ! When Jane asked me to help her with the publicity and specially with the interviews , I just could n't believe it . You know that I love going to concerts , but being at the beginning of the show and a member of the staff was something I was always interested in . In the area of publicity we were about 50 guys , all of us investigating , calling radio stations , organizing the reporters , specifying where the press would be for the interview that took place afterwards ... yet , it was incredibly satisfying when everything turned out just fine ! Before I go to the Camp , I would like to know what type of clothes I need to take and whether there is anything I should take in case of any emergencies . I was one of the luckiest people from my school to be picked to help at the pop concert which took place in my town . Me and my friends were very excited , not because of the stage decoration but because of the pop singers and bands whom we would be able to see ! However the best part was watching and listening to the singers and bands practising on the stage . He started to consume the stuff at the age of twenty . He had problems at home because his mother wanted to settle down in Australia , but Peter was used to living in New York , where it is overcrowded and he was surrounded by people . But I have booked a flight home at the beginning of August . Nowadays the Internet brings us closer and closer . 3 . Library . We not only borrow books from a library but also study at a library . With reference to the accommodation I would rather stay in a tent because I think it is the best way to socialize . In addition I need to know whether meals are included or not with the accommodation so that I can decide how much I must have with me . Just then Ake exclaimed that I could play the piano . yours sincerely The restaurant , which I decided to visit after the show to eat something , was closed without any explanation and the perfect evening was completely imperfect . Often you wear very little but short skirts and tops . The summers and winters get warmer . Besides all those improvements and comforts I ca n't stop thinking where all this will lead us . All these items of equipment are applications of modern science . Thank you for this prize , I 'm really excited and emotional . To answer your question , I would like to travel only in July because I really appreciate this kind of trip and I 'm really grateful for your attention . Yours sincerely , Women ca n't resist the temptation of shopping and they are disappointed when they do n't have the desire to shop . Shopmania is really unstoppable . I know women who do everything they can to buy only a dress , or even worse , women who buy things they have no use for , for example , snap , sculptures , kitchen tissues , or everything sold by telemarketing that really is useless , but they can not resist the fact of it " being there . " There are many facts to prove that shopping is not " pretty and harmonious " , so believe me , it is not always enjoyable . I am writing to you because I was very disappointed with the show you have put on to attract people to come to your theatre . First of all , I came to see the play just because my favourite actress should have been in it , but she was n't . The time of the evening performance on the ticket was 19.30 and actually it started at 20.15 , which forced visitors to stay in one place for 45 minutes , a waste of time . The ticket discounts were not available under any circumstances and the theatre restaurant was closed . I strongly recommend you to pay a minimum 50% of the full price that I paid . Your faithful I think that in 100 years from now , the clothes fashion will be totally different . In my opinion the world itself will be different in temperature as a result of global warming , also people will become nicer , less this will take place , so the clothes will mainly be made from cotton with smooth colours like dark green or grey . They will be comfortable clothes because the main point for any kind of clothing is to be comfortable . Also there will be no leather or feathers used in making these clothes because by that time the animal population will have fallen and Green peace will be very strong , much stronger and more powerful than it is now . So we can imagine the Future Fashion might be pleasant or unpleasant for different people . The styles will be more or less the same as each other and everyone will be satisfied with them . I am writing to reply to your letter and communicate my acceptance of the first prize in your Competition . This summer , I am available in July because in August my family and I are going to go to Canada and in September I will go back to university . If there is no chance to go to California in July , I could wait until next summer . About accommodation , I would like to have a log cabin because last year I had an accident and my back was injured , so sleeping in a tent would be painful for me . Due to my back injury , this year I could not train and play with my team , so I am not fit . It would be a good idea to be a referee . Although swimming is so boring , it would be a good thing to help cure my back . Could you please let me know where I will eat ? If there will be a vegetarian menu ? And how much is it ? And please could you give me some details about what the weather is like there and what type of clothes I will have to bring ? It was a hard month because my job was very hard . I worked 12 hours per day but always with fun people . I 'm writing this letter to complain about the musical show I saw during my stay in London . If I feel like talking to a friend I just have to call him and wherever he is I will be able to get through to him . I 'm extremely happy because not only do I earn a lot of money but also I 'm learning a lot . I 'd like to travel in July because I 've got an examination at USP in Roo Cohelo in July . And I 'd like to stay in a log cabin because I ca n't bear sleeping in a tent . I hate that kind of accommodation . I have recently received your letter saying that I have won the first prize in the competition . It was very fortunate for me . Please could you send me an itinerary of the trip ? I think that shopping can be both enjoyable and unenjoyable because sometimes the shops are full of people , especially at the weekends , which normally is the only appropriate time ! Danny Brook was meant to be the starring actor but he was not , another actor took his place . In the advertisement you say that there is a discount available but there was not . I think the next time you write an advertisement you should put in the right information . I did not have a perfect evening with so many problems . Yours faithfully Does technology have a bad or a good effect ? In the 18th century , technology started to grow more and more and the 20th century was called the century of technology . Technology helps people . It informs people , hospitals use modern technology , and the computer helps staders and helps people do their job . A lot of countries buy guns , for their defence they say , but they buy them to kill people . Technology ca n't ever stop going forward , and so people always go forward but with the same effection of modern technology . In the advertisement you promised a perfect evening out , but it was n't . It was very disappointing for me that the actor was n't Danny Brook , as was promised in the advertisement . So I want to ask for my money back , also I had to pay for but cancel the arranged taxi because of the wrong starting time in the advertisement . But are they useful in every situation and everywhere ? My opinion is that modern technology can help you to save time . But in your advertisement you wrote that people can visit the restaurant after the show . If I search for something like a telephone number or an address I also look it up on the Internet . Another important point for me is that things like listening to music or watching TV sound better and the pictures on TV are being improved , because the machines become better . The third problem was that it was written that discounts were available , but when I got there it was not true . For example , a car , which is used by everyone every day , changed my daily life in the sense that I do n't need my dad or my mum to go ice - skating or to go to work . I can do it by myself and for me it is important not only because of technology , but because I can show that I am responsible . In spite of the fact that the weather is bad , I play tennis . In addition speaking activity includes everything for learning English such as listening , speaking , and grammar as well . In other lessons , the teacher teaches lots of things which are grammar , English culture ... etc . I play the classical guitar and I also sing . I have been playing the classical guitar for three years . I wonder if you could tell me about the weather and what kind of clothes I ought to bring with me . It was very shameful for my mum . You also mentioned the activities I 'll be able to do . Although I 've been playing tennis for five years , I ca n't say I 'm a very good player . Firstly , the story takes place in South Africa , during the period of apartheid . I think that you ca n't understand all the links between the events without reading the book more than once . Moreover , once I was paying for the tickets , I found another thing out : there were no discounts available . I had to go back to the hotel , because all the restaurants in the area were completely crowded . Summing up , you might have realised that that was n't " my perfect evening out " which you promised , so I would like you to give me the money I paid for the ticket back . She works as a model , and she was advising him about what clothes , etc , ... to buy for her . I decided to go to a play at the theatre of which you 're the manager to see " London 's newest and best musical show . " The principal reason I 'm writing to you at the moment is that I want my money back , because I felt so disappointed with the theatre and also with the play . Before modern technologies arrived , you could n't communicate as easily as we can do today . You can communicate with people in places where you would never imagine going to because it would be too expensive . But , if you do n't like using the keyboard to say something or to communicate , you can use video conferencing , a system which lets you talk with other people simply with a microphone and speakers . The modern technologies mean I am able to listen the music I 've downloaded with the same quality as a CD , and if I buy a reproductor , I can carry this music everywhere . Also computers and mobile phones have evolved thanks to modern technologies . As far as accommodation is concerned , I would prefer to stay in a log cabin because I think it is more comfortable , and , therefore , I have never stayed in a tent . To sum up , it is clear that not only should the film be about the subjects they study , but it should concern their sports activities as well . On that date , I decided to spend one evening seeing a musical show as I was on holiday in London and was interested in the musical show . I found the theatre rather noisy as I arrived very early to sit in the front row . However , something wrong occurred again . The actor ' Danny brook ' , whom you advertised in the brochure , did not play a part in the show . I am not satisfied with your show as it was completely different from the advertisement . It 's completely different ! Have you ever been to a fashion show named " New trend , New Millennium " ? ' How can we go out wearing those clothes ? ' On the other hand , some people refuse to wear that sort of clothes so they prefer to wear nothing . In fact , unlike the perfect evening out that you promised in your advertisement , I had a very disappointing evening . There were also the discounts which were n't available . Can you imagine how exciting it is when we are in the dark and very quiet and we can hear the sound of the animals . I have been doing a lot of them when I have had some free time and when I feel impressed with where I have been . Finally I would like to ask you about I have to spent any money over there without my shopping and how the weather is over there in July because I will pack the clothes as useful . It was brilliant . You know , you have to very strongly when you have to do that because when people came in they could n't wait to get to the front and they try to go through very quickly . So you have to explain a lot of times to make people calm down and stand in a row . Apart from that , here is the information that you asked me for : - About the accommodation , as I read , you can offer me a log cabin or a tent . That 's so good when you have the money to enjoy it but , apart from that , there are many problems . Also there is a big problem : the money . Secondly , I would be very grateful if you could accommodate me in tents rather than log cabins . From the list of activities in which I will have a chance to compete I have chosen basketball and swimming . But , is n't it a kind of entertainment ? For example , imagine that you are a bride and you have to buy an appropriate outfit . I am writing this letter to complain about the Circle Theatre . Secondly discounts were not available . What 's more , the theatre restaurant was closed when the show finished , because the show started at 20:15 . It was not a perfect evening whatsoever . Everything will be useful and convenient , even fashion . The most important thing will be your figure , such as long legs or pear - shaped . Traditional or Contemporary In conclusion , the clothes will be more interesting than now for everybody . I 'm used to sleeping in a tent from my previous holidays and I always enjoyed it . I actually enjoyed it working there and I would n't hesitate to work there again . The activities listed in your letter all seemed to be interesting . I chose to play basketball ( I play in a club , I am quite good ) and to do photography ( there must be beautiful pictures to take in California ) . You asked me which accommodation I would prefer . Moreover , the admission fee is free for students . In addition to this you will be able to control all parts of the house by computer such as temperature or vacuum cleaning . About the accommodation , I would prefer to stay in a log cabin rather than in a tent because I have a bad back and I think that sleeping in a tent could be not just uncomfortable but also painful for me . Let us then ask : ' Is this activity always enjoyable ? ' Far from the strength that doing a sport or even going to work requires , going shopping is something you can do either on your own or with all your family and it could not be easier ; you only need a good pair of shoes and a wallet full of money . However , this apparently quiet and relaxed activity can sometimes turn into a living hell ; you may only be able to go shopping at the weekend and then , if you do go , you will find yourself in the middle of a huge crowd of people , unable to get to any product or even shop and feeling dizzy with the mixture of smells that come from the people . On balance I would say that although it is true that shopping is not a difficult activity , it is also true that it is definitely not an enjoyable one . I received your letter this morning and I was very surprised by it . I am writing to you about your questions . First , I can come there only in July because of my examination , I have to take it in June , and my new term will also start in September . My main work was to take people to their seats because of a concert hall , which was the millennium dome . I also sold a pamphlet of that concert , CD and T - shirts . I told you before Elton John performed at that concert , so there were a lot of famous people . She was absolutely beautiful . I 'm pleased to receive your letter and really happy that I won the first prize . July is also good because the weather is warm and I could enjoy the time I will spend in the camp more . I think I can handle it very well . I 've chosen Photography because I love to take pictures ! if I have to take any special equipment for the activities that I 've chosen Whether there is a phone , a fax or e - mail so I can be in touch with my family . Yesterday was Valentine 's day here in Portugal . In particular I had to spend it alone ... again . I 'm writing to you to tell you about a pop concert that happened here in São Rafael . Red Hot Chilli Peppers came here for a short time and they played at the " Chedicard Hall " . It was really cool because I did some backstage work . I was everywhere . I took lots of pictures , asked for autographs and I even gave them my cell phone number ! They promised me that they would call me someday , which I particularly doubt . I hope you answer this letter as quickly as possible with lots of thing to tell me . Dear Manager : I am Angela Ounis and I am writing to you because I went to see ' Over the Rainbow ' , London 's newest and best musical show . Also it was said that Discounts would be available , but I did n't receive any discount as you were cheating us . I know that you have a big responsibility but if you have told something to people , stick to it . I have learned a lot with the Internet . It gives me the opportunity to know more about things I never knew about . I had n't thought about a restaurant to go to after the show , because if the advertisement had been right , there should have been a luxury restaurant where I could eat . Yours sincerely We are in the age of technological development , of that there can be no doubt . First of all , we would like to say thank you very much for organising our tour around London and our programme , which is considered especially good for us because of the places we will visit . Secondly , we saw last Saturday in the Oxfor News an advertisement about the London Fashion and Leisure Show and we would like to know if it would be possible to include this show in our tour . The show is going to take place in the General Exhibition Hall in London , Thursday the 14 of March , so it could be a good idea to see this show instead of going to the Science Museum . We think that it could be a great opportunity because in one day we can see everything concerning fashionable clothes , new make - up and hairstyles . In this letter you ask me for some further information for my convenience for this trip . I received your letter , which says I won the first prize in your competition - two weeks at Camp California in the U.S.A. I appreciate that and I thank you sincerely for having chosen me as a winner . I accept and I want to inform you that I can travel only in July because I have booked my annual leave for that period . I helped them to prepare the room for the bands and I decorated the place for the singers . It took a long time to test the speakers and the microphones . The audience was excited and I can not describe my happiness . I still have the sound of the music in my ears and the voices of the young people who were accompanying our songs . I am writing to you to give you some required information . As you can see , I have absolutely no experience in it . During my stay I went to your theatre to see a musical show and unfortunately I had a very disappointing evening . Lastly , about the ticket . The advertisment said ' Discounts Available ' but no way , I had to pay the full £ 20.00 and the restaurant was closed because of rebuilding or something . However , the point that I am trying to make is that you just ruined my holiday . Your advertisement was unfair . As you are a manager , you have responsibility for justifying this problem . and I have a right to get fair treatment as a customer . But I say fashion is Artistic inspiration which is expressed by fabric and all sorts of material . As I said before , fashion is somehow influenced by science and inspirations that we get from all sorts of environments . These days we are very interested in space and the millennium and things and many designers have shown millennium looks recently . I expect human beings will live on other planets and travel around under the sea . I think people will wear those spacy- and cyber - looking clothes after a century . Can you imagine you and your friends going on a picnic to the Moon with a silvery skirt with astronaut boots with fire coming out at the bottom of your boots ? It could be more fascinating . Swimming is my favourite way of exercising and keeping fit . THIRDLY , I WAS VERY EMBARRASSED TO DISCOVER THERE WERE NO DISCOUNTS AT THE ENTRANCE . I always have a positive approach with all of the most recent inventions or any other kind of modern appliance . Anyway , the thing that has changed my daily life most is the personal computer and , especially , the Internet . Also , the times printed in your advertisement were 14.30 and 19:30 . In your advertisement , it said that discounts were available for the tickets . I was rather thirsty and hungry after the show and your advertisement made a cup of tea and some cakes in your restaurant sound rather inviting . It was not my ' perfect evening out ' , as your advertisement said it would be , and I would like some money back . It 's a natural reaction to be angry with somebody you do n't trust for gossiping about you and bothering your personal thoughts . But they do n't consider the problems the rumours may cause the famous family or couple . In conclusion , no matter what the journalist 's aims are , famous people deserve to have their problems , their affairs , their private lives just as normal people do . I saw your advertisement for your show at the circle theatre , over the rainbow . Also it was written in the advertisement that some discounts were available , but there were n't any discounts . First she said to her father , then to her mother and finally to her brother , that I was from another planet called Orion , that was a billion kilometres from Earth and then I was so ashamed because I have been her boyfriend since I came to Earth . I would like to thank you for choosing me . I am good at Basketball and tennis . At university I attended tennis lessons for two years . Finally I would like to ask you . As I told you two months ago , I saw the advertisement in the newspaper . Just before the concert I had to check that everyone was present . The concert was brilliant . It was terrible ! We had a lot of problems from the beginning . Everything was all right during the band 's performance , but at the end some spectators came up on the stage and did some damage to the band 's instruments . As you can see , hardly anything went well , but the lights and the sound - for both of which I helped carry things - were appropriate for the concert . Firstly , it was written in the advertisement that there would be stars and artists from around the world . I believe that it 's difficult to arrange meetings with foreign stars but there were artists from only six countries and in my opinion there That was excellent because it attracted people 's attention . regarding the accommodation , I would prefer a log cabin . I think that will be safer for all my things . The stage was gigantic . The crowd could be all around . I mean , it 's still unbelievable . Can you imagine how like a dream it was to be shaking their hands . Your advertisement was excellent and it gave me a lot of enthusiasm . Then , I think it 's interesting to answer the following question : This little essay shows that I depend on technology and , moreover , because I 'm in an electronic engineering school , I 'm keen on technology . I presume if the term becomes longer the festival will become better . I can say the actions which are prohibited at school are no problem at home . We think that it is a great opportunity because it is just once per year and it is free for students . We stayed at my aunt 's house which was in the centre of the village . I looked outside and saw two men go into the house in front of mine . The policeman came to take the burglar and thanked me for catching him . The concerts and the dance show were incredible , except for the classical concert that was in too small a hall . Secondly , the plays and films were very well organized despite the low numbers . The art exhibition showed us a new lifestyle and society that was totally different from ours . The talks by writers were very technical but they could be understood by all the people who were at the festival . In conclusion , I was impressed by all the good organisation , the service and the cost of the weekend ticket for all events . The price was excellent because there was n't any time limit . I hope that you organise this festival for all the coming years . At school you are n't allowed to bring in connected mobile phones although there is more than one student that does . Teachers will take it from you if it rings during school hours . If you break one of these rules you could be expelled for a week , a month or for ever . As well will have the responsibility of looking after my brother when they are n't at home . In answer to your question , I would n't change anything because I think that these are the minimum rules that a teenager has to have to be responsible in the future . I would be very grateful if you could give me some additional information . When she finished the sound check , I went to meet her . I told her I was very happy to be there and to have helped at the concert , and I asked her for an autograph . I am willing to show you the autograph and the photograph . When I got to the theatre I asked for the discounts shown in your advertisement , but they were not available . Despite this I was still excited about the show , but then I suddenly realised that Danny Brook was not performing , he had been replaced by an extremely disappointing actor . I 'm writing to you about our trip which you have organised . Sincerely , They need to be with their family in peace . In fact on the stage appeared a completely different person . But to make everything clear I 'll start from the beginning . Our parents were very pleased and happy we were so ambitious . As a result we were grounded for all the holidays and all because of our almost perfect Pat . And what better way to solve this than to give the festival an international character . If you like fishing , you can try to collaborate with the local market or some shops , in order to sell them the fish you catch yourself . I prefer to stay in a cabin because I have never been on holiday in a tent before , so I think it is more comfortable to sleep in a bed instead of outside in a tent . The activities I would like to do during these two weeks are basketball and swimming . I think I can play basketball well , because a few years ago I was a member of the school team . Swimming is not my favourite sport but I prefer swimming to golf or tennis . Please could you inform me what you mean when you say all the accommodation is paid for : is that including food and drinks , so that I know how much money I have to bring with me , and what kind of weather it is during this period of the year so that I know what kind of clothes I have to take . I was the assistant of the person responsible for the clothes and make - up of the pop group . Really I was very nervous about that because it was my first time with such famous people , but I am very happy that all the things went very well . Kim , what I really particularly liked was when I was asked to do the make - up on my own . Really I was very nervous but at the same time very happy , but everything went well and everybody was very happy with my work . Really I think you have to try to do the same thing next summer , I really enjoyed it . You ca n't go outside in peace , and there is always a crowd of people who stand in front of your house waiting for you . We have seen it in an advertisement and I would like to go to the show . It is a great opportunity for us because the fashion is fascinating and free . For example , we would be able to put off our visit to the science museums on Tuesday morning till Wednesday afternoon . The fashion show starts at 10 o'clock and finishes at 7 o'clock . Journalists follow famous people , such as politicians and film stars , in order to take photos and get information about them . I think that it is very dangerous because the famous people can not have a private life and consequently they may suffer from depression and sadness , which may lead them to suicide . I think that the government have to protect them and their private life from the journalists , by punishing journalists . I am writing to complain about the Musical ' Over the Rainbow ' , performed at the Circle theatre last week . What was supposed to be a perfect evening out turned out to be a disappointing one instead . If I want to know how a friend is , I just have to phone him ; I can see how the world is getting on just by switching on the television , and I can cook in a few minutes using the Microwave oven . In conclusion , I think that technology has two faces which affect my life as well as everybody else 's life . As far as accommodation is concerned , I would like to live in a tent at Camp California . I prefer this type of accommodation because I am used to living in tents during my summer holidays . Concerning the accommodation , I would prefer to sleep in a log cabin , because to sleep in a tent would remind me of the bad experience I had in Ireland because of the weather ... But so far I have only taken pictures on holiday and of some family celebrations . Otherwise I had to keep walking until the train started . I was sitting under a full - bloomed cherry blossom tree . Their hobbies were listening to the radio , reading books or sitting on a chair without doing anything . The performances were great , but some halls were too small to accommodate all the people who were there that day . So , in the daytime , we can focus on our studies . George was about to be lynched on account of his skin colour . The place where I was hidden was overlooking the house where he was kept prisoner . No one was guarding him . One of the reasons that I have visited your arts festival was to see a lot of plays . In the future , I hope to be an actress and that 's why I want to learn something from the professionals . They want too much fromstudent and are unkind to them . I 'm writing to you to answer the letter in which , as you probably know , you congratulated me for having won first prize in your competition and tried to encourage me to travel to California and attend that camp . I 'm writing to you to tell you how much I enjoyed last Saturday . It was such a beautiful night ! Unforgettable . I had always dreamt of being near " The Cranberies " , but I had never thought that the dream could become reality . During the afternoon , Tim and I spent the hours before the concert lying in the park next to the sports hall where the concert was to be held . After a few minutes the dream happened : Kare - the guitarist - appeared over there . Finally he said how grateful he was and allowed us to stay with them till the concert started . As far as accommodation is concerned , I would prefer to sleep in a tent . I have been travelling every summer since I was eighteen years of age and this type of accommodation is part of the ritual . Thanking you in advance , I am looking forward to your prompt response to my questions . I went as a volunteer in order to go for free . The accommodation and the food were part of the contract ... everything free . I met lots of nice cool people , and what I most enjoyed was the crazy atmosphere of the whole thing . The best thing was that I have learned how to take care of their expensive instruments and I have sung my favourite songs with them . There are so many monuments in California and so I will remember this holiday with my photographs . Finally I would like to ask you if I need any money , because you say all accommodation and travel costs are paid for . He also gave me his address and telephone number if I need help from him in the future . It continues to develop and always will be the most important thing in our life . When I asked something about a " discount " , your staff said that it was impossible . Becouse my favourite actor appears in it . We waited for the show to start for about one hour and forty - five minutes . During the show , we did n't see Danny Brook , who is my favourite actor . If Danny Brook does not appear , you have to say something about this to the people who are there in the theatre . This is your unforgivable mistake . After the show , we were still angry . We wanted to eat something in your theatre restaurant . Yours faithfully Everything is easy now . There was n't any discount available for the tickets and I went to the theatre with my three cousins from Brazil . faithfully , With the introduction of the computer in our civilization we can access the Internet to communicate with our relatives and friends living abroad or far from us . Besides this , the information goes faster than it used to now and it 's available at the same time in every part of the world . First of all , in your advertisement for the show you wrote that Danny Brook and Tina Truelove were taking part in the show . The people who were there to watch the show were very angry and they were shouting because they had to wait too long . And I absolutely agreed with them . Also in the advertisement you wrote that discounts were available , but they were n't , and also that people could visit the theatre restaurant after the show to eat some thing or to have a drink . So , the next day Pat went and told his sister Sally that her friends were organising a surprise party for her birthday . When Sally heard that , she was very surprised and very excited . But although she was acting like this she was very angry with her brother Pat , because he did n't keep the secret . Suddenly they all shouted " Surprise ! " . Sally , although she knew about it , seemed very surprised ! So her friends did n't realise that she knew about the party and they were very happy because they believed that the surprise party had been a success ! It was an unforgettable night ! ! ! I am writing to complain about the evening at the Circle Theatre presenting " Over the Rainbow " . Everybody will wear anything he / she likes , choosing clothes from any century they wish without this being strange . On the other hand , if human society changes to become stricter and more limited , there will be only 2 or 3 types of clothing , formed by the needs of society . I 'm very sorry to tell you that I had a very disappointing evening . First , I got there at 7:00 pm , because the show was about to start at 7:30 pm , and I needed some time to buy the tickets . I bought two tickets for £ 20 and when I asked for a discount , they did n't give me one , then I was kept waiting for the show to start until 8:15 pm . Later when the show finished , I planned to go to the restaurant and get some food , but it was closed , because it was being repaired . I was in love with a friend 's boyfriend and we were about to have an affair , but when I made the big mistake of telling my little and terrible secret to Pat , everything started going wrong . Katrin , my friend , and the one I was being bad to , was very upset with me , and she was right , but I really did n't know what to do . I was in love with Brett , but I loved my friend too . Then I decide to talk to Katrin . I was very sorry for all I had done , so I apologised to her and promised her that this would never happen again . Recently I decided to see Over The Rainbow , a very famous and well - known show . Furthermore , I was shocked when one of the main actors came onto the stage . He was n't Danny Brook , one of the reasons for my choice of coming to see Over the Rainbow . A century ago , when a farmer took the horses out of the stable and put the plough behind them , we 've got the word " time " . I must say a few words about the new electrical cars which surely will have a central role to play , especially today when fuel is so expensive . I am writing to you to complain about the differences between what the advertisement for the Circle theatre said about the musical show called ' Moreover , as I had read the advertisement carefully , I had planned to invite some friends to have dinner at the theatre 's restaurant . So , because of the things I have mentioned , I think I should be given some money back . I look forward to receiving some information from you . In addition to this , there is less communication between members of my family , because when we arrive home after an exhausting day racing against time , the only thing we want to do is lie on the sofa while watching television . On the other hand , and in conclusion , I think that this development has made my life more comfortable living surrounded by lots of gadgets with different functions . In the advertisement for the show you said that one of the stars was going to be Danny Brook , and to my surprise there was a different actor , and that really disappointed me . Then the show was supposed to start at 19.30 hours but it started at 20:15 , more than half an hour late . I had read in the advertisement that there were some discounts available but there were n't . And the theatre restaurant was being painted , so I could not go there . As you may understand it was not a perfect night and I was not pleased with the show or even with the service . Technology , are we prepared for these advances ? Technology improves our lives , we have high - tech equipment for cooking , for work , for study , well nearly for everything . And when we understood the Internet , we thought that meeting people from other countries and being able " to chat " with them was the height of technology . But now we can even see the face of the person we are chatting to . The Internet is amazing . And now of course there will be someone trying to improve it . Technology changes our daily life , it makes our life easy to live and of course more comfortable with computers , televisions , radios et cetera and sometimes safer , as with medicine . Definitely we should try to understand technology . If we know how to use it , technology will improve our way of life . When I met Caballos , my best friend , I felt embarrassed and disappointed and I could n't say anything . It is as if they lose their conscience while they are shopping . When you go shopping and there are a lot of people in the same place , all trying to find the best prices and not caring about anybody , this could drive anyone crazy . The long queues , crowded places , high prices , sales , all these things combined could make shopping an enjoyable thing for people who like doing it . So while I am at the Camp I want to take a lot of photographs and climb a mountain . Shopping sounds very enjoyable and is fantastic for women . You can find a lot of interesting things which were unexpected . They are also the lessons which English people and other foreigners are particularly curious about . This is a good opportunity to see how they learn in class . In conclusion , besides all that I mentioned , I highly recommend you video the students ' daily life and interview them . In fact , now I can write to friends who live in foreign countries , for example , in the morning and receive their answer in the evening or even just a minute after writing . Therefore I regard the Internet as quite a powerful tool and I believe it has given more strength to relationships between people . I am really glad to receive the first prize in your competition . It will be very pleasant joining the holiday . Regarding your first question , I would like to travel only in July because it is my school holiday so I would not miss any classes . As regards activities I would choose singing and surfing . Surfing because it is my favourite sport . I have been surfing since I was a child so I am pretty good at it . And singing because I really love it . I am not as good at singing as I am at surfing but I like doing it . I only had to stay behind the drummer supplying them with water whenever they wanted . I had a really nice time with them even though I would've preferred to stay at the front with the other people , I hope you 've enjoyed my experience , and I hope to hear from you soon . I received your letter and would be glad to spend two weeks at Camp California in the U.S.A. but I will only be able to go in July because in June I will be in Austria with a friend and for August I have rented an apartment with my family . You can come across a very disagreeable shop assistant and if you find what you wanted , you will not want to pay him or her for it . There is nothing more disagreeable than that . Further to the unpleasant event that took place last week , it is my right to complain about the musical show I saw when I was in London . The show was supposed to start at 19:30 and it did not start until 8:15 . Then I felt disappointed because the main actor had been changed . If that does not seem enough , after the show my boyfriend wanted to take me to eat something in the theatre 's restaurant but the unpleasant surprise was that it was closed because all the waiters were on holiday . I 'm always having holidays in July . It is my favourite time for holidays . Just the necessary . I think the people who enjoy shopping are greedy for materialistic things and they haven't any interests in the spirit ( ? ) , in the intellectual life . We must do something to help other people to feel better and be useful . It was very interesting , because I did different things . I took some photographs and I 'll show them to you when you come next week Dear director of the Circle Theatre ! On Friday we , my friend and I , visited your theatre to see ' Over the rainbow ' . It should have been my best evening that week , unfortunately it was n't . Instead of 7.30 am as your advertisement said , it started at 8.15 am . When the show started Danny Brook was not acting , which was a great disappointment for us both . We are both big fans of his When the show was finished we went to the restaurant to have something to eat . But then it was closed for repairs . Because of all this trouble I think we should have our money back . And next time , make sure that your advertisement is accurate ! When were nine years old and were in third grade we had a ' House ' where we used to play all afternoon . In fact it was n't a real house , it was some stones between the trees in the little forest near our house . It was a secret place and we had promised each other not to tell anybody about it . Usually we were cooking flower soup , and swapping secrets . One day when I was there alone , I heard some other kids approaching . I sat down behind one of the stones so they could n't see me . One minute later , Pat and half our class stood in ' the House ' looking and laughing at me and my flower soup . Maybe she did it to make friends . I do n't want to be rude , but this is not professional at all . Lastly I would like to inform you that I wanted to have dinner at your restaurant but they told me it was closed because it usually closes at 11:00 o'clock , So I am asking you : why do you advertise it if is not going to be available to the audience ? First , I am very disappointed about the star . I'M WRITING TO YOU TO DESCRIBE MY DISAGREEABLE EXPERIENCE IN YOUR THEATRE LAST SATURDAY , AT YOUR SHOW " OVER THE RAINBOW " . BUT WHAT I CANNOT FORGIVE YOUR COMPANY IS CHANGING THE TIME IT STARTS AT THE LAST MINUTE , MY HUSBAND IS A DANNY BROOK 'S FAN AND HE FELT REALLY DISAPPOINTED . WHEN THE SHOW WAS FINISHED , WE WANTED TO GO TO DINNER , AS YOU SUGGESTED IN THE PROGRAMME , BUT THE RESTAURANT WAS CLOSED BECAUSE IT WAS ON PUBLIC WORKS ! ! ! Definitely the worse . I would be grateful if you could consider our suggestion and please inform us of your decision as soon as possible . There are people from both sides of the argument who have strong feelings . Both of them are my favourite sports and I 'm quite good . You asked me for some further information and here are my " desires " : I stood at the entrance and there I had to check the tickets . Famous people , such as politicians and film stars , deserve to have a private life without journalists following them all the time . Famous people have always been the centre of interest for a number of people . This show would give us a lot of information about current activities , fashion and what is happening here in London with , for example , the latest fashions , leisure and sports wear , make - up , and hairstyles . If you agree , after the Science Museum , we can have lunch at a restaurant near the museum , then we can go directly from the restaurant to the Central Exhibition Hall . It does n't matter who they are , where they come from , what colour skin they have . There will be a number of Developments in Technology in the future , which could make our life easier to live but what should remain the same is the feeling of being together and love . Therefore , I hope that you can agree to a suitable arrangement between you and me . I started training in 1996 , and I have never given it up . There are more and more retailers opening . I could n't believe my luck . I was really sure that I won a return ticket to the Mediterranean Sea . Thirdly , the person on stage was very strange to me , because I expected to see " Danny Brook " , but I did n't . Although modern technology gives you many comfortable things for living , can it give you nature , peace and fresh air ? Let me express how disappointed I feel at this particular moment , or I should say angry , better sad . I would never have expected that I could be so deceived . This is not the first time I have been to your theatre and I have to tell you I have enjoyed many other plays , but be sure " Over the rainbow " will be the last one . As I am specially fond of musicals , I even travel abroad to see what 's new , I am probably one of your most devoted customers . I know this word is not the best but you have demonstrated that the theatre can be just as cold as any other business . Of course , you should give a refund for the money spent , not only to me but to all the audience . New fabrics create new textures , all kinds of accessories are added to create new versions , to refresh old ideas , to make new proposals that will last , as always , just a few weeks . Have you noticed that all the classic gentlemen wear the same type of suit ? And what about those kinds of intellectual and progressive people , do n't they all wear the same type of ugly but comfortable shoes ? I am sure that fashion will survive for ages , it will even change to become easier to use and cleaner , because we all need to feel a part of our society , communicate our way of living and thinking , be part of a group and , at the same time , be different . - When the musical finished I was terribly hungry so I decided to have something to eat but the restaurant was closed and the advertisement said that it would be open . Modern technology has changed my life in many different ways : To summarize , the modern technologies give you and allow you to do many things which would be impossible in the past but also creates many problems . As I was so looking forward to seeing Danny 's performance , I was very disappointed . It is a very good schedule , especially because you have considered different activities for us . Personally , I think it could be a great opportunity because it is something we all want to attend , and we are all interested in the latest fashion . We discussed the programme , and because the show will take the whole day , we would not mind going to the Science Museum on Wednesday instead of having free time all afternoon . I did n't even think of looking down . The clock was running .. tick , tock ... And suddenly everything stopped . I felt an enormous peace . Fortunately , I was n't alone . Thank you for the effort which you have made to organize this three - day programme in London and I am sure that we will have a great time there , especially in the National Art Gallery . The thing is that we have seen an advertisement for the London Fashion and Leisure Show . Furthermore , students can enter free ! Thank you for your attention and understanding . Perhaps , there will be personal computers which will control everything , every item of furniture , light , temperature . But , on the other hand , people will still have to programme them , as they have to do nowadays . All the rubbish , dust , dirty dishes , plates , cups will be washed automatically . IT 'S UNDENIABLE THAT DURING THIS CENTURY OUR WORLD HAS BEEN CHANGING . IN CONCLUSION , I REALLY BELIEVE THAT OUR DAILY LIFE IS VERY DIFFERENT TO WHAT IT WAS IN THE LAST CENTURY AND EVEN IN THE BEGINNING OF THIS CENTURY . During these past few decades , or rather in the 20th century , there has been a great deal of development in modern technology . One of the essential developments has been in our means of transportation . Another significant technological development is the invention of electrical appliances . Modern technology helps people in many ways and is indispensable . When the show finished I was intending to visit the theatre restaurant but it was closed . I was expecting a lovely and perfect evening out but it was the most disappointing experience I have ever had . When I wake up I take a shower using electricity then I prepare my breakfast in the oven then I go to school by bus , when I arrive at home I put my lunch in the microwave then I watch TV and do my homework using a pen . When I come back from jiu - jitsu I eat something that was cooked in the oven then I go to bed . About a millennium ago everything was different ; people did n't have electricity , they cooked their food on the fire and they did n't have pens . Regarding the two activities I have to choose , I decided to choose a new activity that I have never done before , which is Sailing . I am a total beginner at this . The other activity is Photography . I am not an expert , but I know how to use a camera . All I want is to improve my knowledge . I helped them with organizing the stage , cleaning everything , fixing what was broken and they even let me play with their guitars ! I had put some money aside for that month , thinking about the discount , but when I went to buy them they said that discounts were not available . Waiting for your reply . When she finished school , she went to study at the Agent Training Agency where she learnt about guns , clues , agencies , etc . She was sent to New York to discover how some people from the government gave money to the merchants because they wanted to build a Trade Centre there . Here is some further information about myself and a few enquiries . It is really fascinating to challenge the waves . As for accommodation , I would prefer log cabins , because I believe they are more comfortable than tents . Will I be given any pocket - money or do I need to bring my own money to cover additional expenses ? Martial arts are really exciting and are a great thing to film . The main character is the old man who has to fight against the sea to stay alive . They 're fighting for the same reason with the same strength , the man has to kill a brother , as he calls the fish . On account of the fact that staying in log cabins is much more interesting than staying in tents . I can sing plenty of songs , which include English songs and the Japanese songs , and I have a part - time job singing at a restaurant . Furthermore , I am going to enter a competition next year . Shopping is not always enjoyable . Sometimes there is a long queue or a machine is broken . A lot of circumstances will arise . Everybody had gone to buy lunch in the supermarket . In fact , nobody likes crowds and queues , especially not in the summertime . Obviously , I had to try another aisle . It was the longest queue I have ever been in . Even though I think most of the time it is very interesting , sometimes it gets people upset . Finally , the reasonable price of the tickets for the weekend was a good point , because all kinds of people can afford to buy them . I also think that you should have a snack bar or a little restaurant so that the people are not too hungry and moreover you can make a lot of profit . In conclusion , I do n't want to change anything in my house or at school , because I totally agree with the few rules that I have . I have chosen the two following activities . I have chosen sailing because I would like to try a new sport . I love water but I have never tried this sport before . Yours sincerely . People are often irritable and aggressive . Because women love shopping and you have to follow them everywhere and always give your opinion about clothes , music , perfumes ... yours sincerely The things I did were : preparing and checking the equipment , I had to clean all the stadium , making sure that all the lights were in perfect working order , that the singers were comfortable and relaxed , etc . It would be a great pleasure to spend two weeks at Camp California and I ca n't find any suitable words to express my enthusiasm . With regards accommodation I would prefer log cabins , as they are more comfortable and I like convenience . They are ready to sacrifice all their savings to get something that will make their neighbour jealous . So , as a conclusion , I might say that shopping is n't enjoyable at all and I 'd rather stay at home instead . After the show I needed to drink something in the theatre restaurant as the advertisement conceived , but it was closed . When Pat first came into a class or a group of teenagers there were no problems . Insofar as I came here especially to see him play , I have been very disappointed , and this could be the understatement of the year , as he is my favourite actor . Thirdly , the ad mentioned possible discounts . Personally speaking , I did n't see them and did n't even hear of them : I asked about it , but nobody seemed to know anything concerning discounts . As he closed his eyes , he started to travel along the dark paths of his conscience . The boy could not believe what he was hearing . At these words , Paul suddenly awoke . The show was called " Over the rainbow " and should be , to quote the advertisement , London 's newest and best musical show . I was very pleased that the main actors listed on the advertisement were Danny Brook and Tina Truelove . Furthermore you had mentioned some discounts in your advertisement , but I had to pay the full price although I am a student . The perfect evening you promised in your advertisement was the complete opposite and that is why I want to get some money back from you . First of all , I was attracted by the actors - Danny Brooks and Tina Truelove - and not by the actors who performed effectively that evening . These actors appeared forty - five minutes late according to what is written in your advertisement . And in conclusion I want you to give me my money back , ( I still have the advertisement if you want proof of what I say ) . As regards accommodation , I would choose to stay in tents . I do n't know much about the weather down there , in California , so I am rather puzzled about what to wear there . Also , I would like to know how much money I will need and which expenses I will have to cover myself . All these exhibits are really important and exciting for us because , nowadays , fashion has a huge influence on our lifestyle and we would like to know more about it . We think that we could go there on the 14th of March , in the evening , instead of going shopping . Nowadays , there are a lot of people who live only on the money they get from advertisements , reports about their last romance ... but not everyone does the same thing . On the other hand , there are the ones that are also respectable but , apart from their relations with journalists because of their work , they really need to be constantly sought by photographers . The media moves the world and famous people use it to improve their work , politicians for their campaigns and film stars to make their latest movie famous . In conclusion , I believe that shopping is not always enjoyable if you accidentally get into a bad situation or you can not control your expenditure carefully . In your letter you ask me to choose which type of accommodation I prefer . Hopefully I will meet some other girls interested in the same sport . Woods is thought to stand for all white people and this book could have an influence on them . Secondly , I would prefer to stay in a log cabin , because I am allergic to some insects that might get in a tent . I spent two weeks preparing the stage , speakers , backdrop , microphones , everything , with all the staff , and every night the artists came to rehearse their show . I could see how they really improved , and how nice they were with the staff . I am writing this letter because I had a week in London last month and I decided to see your show called " Over the rainbow " with my wife and children . We were disappointed because your advertisement was a misleading one . But cars create pollution : for example the greenhouse effect . Technology allows us to improve our knowledge in the sciences like medicine so as to cure more illnesses or to make people live longer . In my opinion it 's a lot better than the dictionary because it 's faster and you really find what you need . I am writing to you about an enjure that I had at your last musical at the Circle Theatre . First of all , I was surprised that Danny Brook and Tina Truelove did not perform . I read in your advertisement in Friday 's edition of the Times that the show should start at 19.30 but the performance started at 20.15 . I was waiting 45 minutes for nothing ! I am a student and I did n't get a discount ticket . I do n't understand the problem between your advertisement and the reality . For example , if I do n't have time to do my shopping after school because I have to do my homework , I go on the Internet and ask for what I need . From my point of view , the Internet is the most important invention of the 2000 century . You can book tickets for the theatre , sport , etc . I use the Internet all the time for my homework and in the future , I hope , I will be able to use it for my own work . Technology will not stop growing and helping people in the future . It was n't the first time I saw this show in your theatre , but it was the worst one . At first it was a great pleasure for me to get a ticket because I 'm one of Danny Brook 's greatest fans . It 's not that problem that there was no more discount available - but I had chosen it , because I 'm ( allowed ? ) . When the musical started at 20:15 ( not at 19:30 as advertised ) I was really shocked when I realised that a different actor was playing his role . You have to know that I am very sick because of my blood pressure and so I was laying down the whole weekend . For me , as a scientist , it 's a big problem to show how the innovations of the last century went up with the environment and nature . Nowadays a simple thing like a computer includes so many possible ways of destroying different environmental compartments . On the one hand there are the materials from which the PCs are made , on the other hand is the huge waste problem . Now I try to show , in my daily work , how the airborn chlororganics , which are degased from plastics , will be separated and damaged by green plants . Sometimes it seems to me like a joke if I think about all the dangerous materials I need to do my job . Therefore it makes sense to use the innovations which are causing environmental destruction . When I was 15 , I was starting to look for new clothes , shoes , and everything I would find now unnecessary . I would not dare to calculate how much I have spent on those things without thinking . However , it was not bad . My mum always told me that I had n't earned enough money so I should n't have spent it in the wrong way . I have never been to the USA , so I think that this trip will be an unforgettable experience . I look forward to receiving your reply . For practical information , this show starts at 10.00 and closes at 19.00 . It is not too far and the opening hours suit us . We also suggest visiting the Science Museum on Wednesday morning and in the afternoon , if some of us are interested , we could see the National Art Gallery . They will become less dark and more comfortable than today . These improvements will be involved by the lack of petrol and non - renewable energy . About the size of houses , I think that in cities houses will be more and more small because of overpopulation . But about the differences between the homes of the rich and poor , they will be the same in the future . I think that people will be as alone and jealous as today . As if this were not enough , once the show ended I had to walk twenty blocks to find a Restaurant since the theatre Restaurant was closed for maintenance . After reading the whole organized programme , we all agreed about the sightseeing tour by bus around London , which will give us the knowledge of this fantastic city we have all wanted to have since a long time ago . We found the advertisement in a local newspaper and have been thinking it could be such a good opportunity , because the show consists of these topics : Instead of going to the science museum , we could go to the London Fashion and Leisure Show , which is open on Tuesday , March 14 , from 10 am to 7 pm . Yours sincerely Not only because she 's famous and wrote lots of books , but she knows how to introduce characters and how to tell a good story us though deceiving the readers . In other words the story is set on a train which takes a trip along the orient . On the train , all the passengers seem to be involved in a crime . This is such a fascinating story and it 's the way Agatha Christie tells it . The mystery is drawn out until the last page of the book . I like Danny Brook very much , and his unexpected absence caused me great sadness . It 's all right , but I also think that he 's exaggerating . I do n't think I have done such a bad thing as to destroy our friendship . I like his company , and we are happy when we are together . I AM WRITING IN ORDER TO EXPRESS MY DISAPPOINTMENT AT THE SHOW " OVER THE RAINBOW " , PERFORMED 2 WEEKS AGO ; FIRST OF ALL , I READ IN THE ADVERTISEMENT THAT DANNY BROOK WAS TO ACT IN THE SHOW , BUT THE ACTOR THAT REALLY PLAYED WAS A DIFFERENT ONE , AND THIS WAS VERY DISAPPOINTING . I THINK THAT FASHION IN THE FUTURE WILL DEVELOP ALONG VERY DIFFERENT LINES : THERE MAY BE A RETURN TO THE FASHION OF THE PAST , AS WE CAN NOTICE NOW , OR A MORE FANTASTIC AND TECHNOLOGICAL DEVELOPMENT . SURELY , ORDINARY PEOPLE WILL NOT FOLLOW ONLY THE MODELS PRESENTED ON TV . AS REGARDS EVERYDAY LIFE , I THINK THAT IN THE FUTURE ATTENTION WILL BE FOCUSED ON COMFORT MORE THAN ON ELEGANCE . BUT IF IT IS DIFFICULT TO FORECAST THE DEVELOPMENTS OF THE FASHION WORLD , IT IS NEARLY IMPOSSIBLE TO FORECAST THOSE OF THE COMMON PEOPLE , THAT IS A TOO VARIED A CATEGORY . One of my hobbies is photography , so I think I am rather good at it , but I will take painting to learn , because I am not very talented at it . After carrying stuff like lights , microphones , wires and some other equipment for about three hours , I was exhausted . It 's a great opportunity for me to participate in your Camp California because normally I work a lot and I ca n't spend money on travel . Moreover , I have to support a big family because I 'm married and I have three children . I have to choose painting and photography therefore . I would prefer surfing or climbing but I have to think of my health . I 'm very enthusiastic and I wait for your answer as soon is possible . FIRST OF ALL , IN YOUR ADVERTISEMENT YOU SAID THAT DISCOUNTS WERE AVAILABLE , BUT I COULDN'T FIND THEM AVAILABLE ANYWHERE . THE PLAY STARTED AT QUARTER PAST EIGHT : FORTY - FIVE MINUTES LATE . MY ADDRESS IS IN THE ENVELOPE . I'M LOOKING FORWARD TO HEARING FROM YOU IN THE VERY NEAR FUTURE . I like to sleep in a tent under the open sky since I have done military service , therefore I would prefer a tent as my accommodation . It is important for my health that I swim an hour a week because I am overweight . When I have enough money the price is n't important , then I can buy a lot of things without considering my money . Finally , I am going to write about the theatre , the Circle Theatre . I 'm looking forward to receiving a letter from you . The rooms will be designed in a futuristic fashion , where there will be less furniture and everything will be compact . Even TV - sets will be on the ceiling . Technology also means all electrical machines , which do n't stop being developed . Machines have replaced the work of humans . Our whole life is being simplified by machines for not waste the time to work on their development . Here I will answer all the questions that you asked me , and I will ask you about other things that you did n't mention . I 'd like to organize my trip for July because that is when I have vacations , also because it is summertime in the U.S.A . About accommodation at Camp I 'd prefer a tent , because it 's a new experience for me and I 'd like to sleep in a tent to have a great time while having a new adventure . Thank you very much for your cooperation . Most of the time when we go to the shopping centre we have a lot of fun . We go to stores to look at clothing , we also eat something like ice cream or French Fries , but is not enjoyable all the time . In that instance we do n't enjoy shopping because we ca n't find what we are looking for and we have a bad time in the shopping centre . I was absolutely thrilled to receive the news about my winning a competition . I do n't like cold nights and mosquitoes . Yours faithfully Usually people do n't have time for shopping . There are huge queues to the tills , noise , hassle , poor customer service . You 've got more stress , you feel fed up and finally when you get home you think that shopping is not as enjoyable as you thought . There are so many varieties of products , different prices , different qualities . Nowadays technical progress gets close to us , to normal customers . Without any hassle , sitting in your chair in front of your computer , in a second you can get to any shop that has an internet site - most of the big companies have one - get all the information about the product , get a cheaper price and buy it . I know that staying in a log cabin is more convenient but I just want to have a wilder experience . And I want to know how much money I have to bring for personal expenses . Besides , I really would like to know approximately how much money I should take with me . Concerning the activities , I have chosen two of them . It was boring that nothing happened for such a long time on the stage . And finally , I would have had my dinner after this disappointing musical and thought I would go to ' Theatre restaurant ' . This is not a taboo subject with me and my friends . I had doubts when somebody said that the fashion of the future would be different . Are they included in the prize ? I 'd prefer it if you gave me this information as soon as you can . However , those days were unforgettable for me . I will be very happy to travel in July because in that month I am going to have my holidays , so I will not have to ask permission from my boss . I would prefer to stay in a tent , because in that way I can feel closer to nature , and I can remember when I was a girl scout . At the camp I would like to choose two activities , Painting and Singing . I love painting . At university I studied art for two years , but now I do n't have much time to paint because I work in a bank and I have a baby . The reason for my choice of singing is that I feel embarrassed about my voice , so maybe I could improve it . Thank you for giving me this opportunity . You are never going to believe what I did last month . I was walking with my sister in Oxford circus , when suddenly a man stopped us saying that he was looking for people to help at a concert and they were going to pay us five pounds an hour . We said yes immediately . I nearly shouted with happiness when they told us that Luis Miguel was giving the concert . He is my favourite singer . The concert was on a Sunday and we had to work at the back of the stage , doing all sorts of things like collecting rubbish and helping other people who were working there . Other bad points can be mentioned , like pollution for example . I am writing to you to complain about the musical show , where everything was completely different from the advertisement . Modern life has been full of science and technology . I am very pleased that I was born in a time when there is such good technology but my parents did n't have the same luck . My life is much easier with all this stuff mentioned above - technology and science . The bad side is we can use technology for war - missiles , weapons , etc .... Indeed technology has changed our lives , we have become more sceptical and cold . Sometimes I think technology is not a good thing .... People whom I work with are going on holiday in June and August . Also , the accommodation I would prefer at Camp California is the log cabin , because first when I was a little child we stayed in a small house every holiday and I like that . However , drawing some beautiful scenery and taking some pictures would be a very good experience for me . I 'm not keen on liars , Mr Smith , and I think that you 've lied to naive tourists like us : some brilliant actors were supposed to play the parts and we only had different , pitiful ones . Otherwise I 'll have to put some other ads out in London saying that your show is just a fraud ! Nowadays , the Internet and the mobile phone , with the development of satellite communication , seem to take the lead . As far as I am concerned , the first way modern technology influences me is through my work : the Internet has become such an incredible tool , I can research into everything I want , find information for lectures , for example , or exercises . Maybe it will change me into a kind of self - centred person , a loner . But we should not forget that they are only tools and should emphasise human relationships . Finally , I 'd like to play tennis and to try climbing . This book remains one of the best in American literature . Based on a very simple story , the story of an old man fishing , it is a deep reflection on age . A veteran fisherman takes his boat and goes fishing to convince himself and other men that he is still able to do it . The 24-hour fight is described in such a peaceful , faithful way that it callas a though about life and death . I recommend this book as a way to discover both Hemingway and American literature . Before answering your letter ( which I have just received ) about the prize for the competition I recently won , I 'd like to say thank you very much for giving me the chance of going to the USA . About the accommodation , I think I would prefer to be in a log cabin instead of a tent , since it is more comfortable . In addition to this , I would like to know the amount of money I should bring , as well as the kind of clothes that I could need and the sort of people that I will find there . None of the groups are known at the moment , but I believe they are well on their way to becoming famous bands . This was the best part because when everyone was gone , Billy Joel arrived to give his support to the beginners ! ! ! I could n't believe my eyes ... Jane took a photograph of us together . Lastly , I do not think I would call this my perfect evening , so I would like to ask for a refund , and I hope as the Manager of London 's newest theatre , you will handle the situation favourably . Even though Pat has got a great sense of humour and wonderful personality , he 'll never be able to keep any secrets from anyone , even himself . Although , we are great friends , sometimes people can make such stupid mistakes , and so there was one time when Pat and I had a fight . It all started when once I accidentally took the wrong bag back to my house , and there were lady 's knickers inside . I was so nervous and embarrassed , so I told Pat and off he went : he told every single student in the school that I 'd stolen a girl 's knickers , and everyone started to call me a pervert . When I was a young child , I used to be interested in reading science fiction . First I can travel only in July because I will finish school at the end of June and I will sit my exam in September ; so I have to revise for it a lot during the month of August . I particularly liked seeing all those people , and I met a lot of new friends there . I would like to travel only in July because I would be on school holidays then and the weather is hot and the sea 's temperature is less cold than in winter . It is very nice to stay in tents which are strong and comfortable . And you need a strategy to win the match . But you ca n't play if there is too much wind , because the ball becomes uncontrollable ! It looks fragile and it could break easily . It has always been my dream to go there and to be able to see that beautiful country . It will be very interesting for me because normally I do not have a lot of time to do activities . I would prefer swimming because I really like it and I am trying to swim whenever I have got some time , and painting because I have finished a painting course and I have some practice with this . That is very nice that all costs are paid for but I would like to ask you how much money I should take with me because I do not know anything about prizes in the U.S.A. and please tell me if I need anything to paint because it would be difficult to take it with me , so if I will need to take everything I will just change this activity . It was a really wonderful new experience for me . The people were wonderful , they were helping each other with everything and it was a lot easier to do . I am writing to you , because I would like to disagree with your advertisement for the show ' over the Rainbow ' . As it is said in the advertisement the show starts at 19.30 but I had to stay outside for 45 minutes , because according to the programme it started at 20.15 , but that is not the end of the story ; in your advertisement it is clearly said that you have discounts available on tickets . That was not true ! I was still not very disappointed , because I hoped that I would have a good meal with a glass of wine in the restaurant , which I could have according to your advertisement , but what I did not realise , it was closed , because the chef was in hospital . Such as a mobile phone that helps me to communicate with anyone in the world , even if I am not at home ; I use a stereo if I want to listen to my favourite music ; I use tapes , CDs , hairdryers , etc . Many years ago people did n't have an opportunity to use all these things and they had to work a lot . This is just a note to confirm for you that I have received your letter . To answer your questions , I would like to tell you that I can only travel in July , because I will be studying for the Cambridge exam till 1 July . Would it be possible to have accommodation at Camp California in a tent , because I haven't had a chance to sleep in one . And would it be possible to do swimming and surfing . I have been dreaming about this activity since I was 10 years old . I would like to know how many people will stay with me in the tent , and do I have to take with me any special clothes for surfing . I look forward to being at Camp California in the U.S.A. I think going shopping in a big space like Harrodss is not a pleasure . I like to be in small boutiques , and I would rather go shopping along and during the weekend . And going shopping after the weekend is not for me . I would like to travel in July because I am a student so I only have holidays in this part of the year . About the accommodation , I would like to stay in a log cabin because I am used to staying in them when I travel . Sometimes , shopping can be really boring , especially on important dates when the shops are absolutely crowded and you ca n't see anything you wanted with careful . I received your letter this morning . Thank you very much for your kind letter and for choosing me . I have knowledge of navigation , engine , ropes and knots , and sails as well . It was a nightmare , there were pickpockets in the shop . But you must always be on your guard against pickpockets . I am only able to take my holiday in July . The rest of the year I work . I 'm crazy about tennis and swimming . Can you imagine Friday night ? You have worked hard all day . On the way home you want to pick up some milk from the shop and you have to wait ten minutes on average . There are a lot of options and items to make our choice difficult . After shopping you have to carry a heavy bag a long way home But the situation was n't simple , so Hill decided to discuss it with Mary , the teacher 's cousin . I would be grateful if you could put me into the tent side of accommodation because I have had all my holidays with my parents in luxury hotels . Pat entered the fight , and it became more loud and aggressive . I went to London to see this musical but I was absolutely disappointed by the show . It was about 21:00 , I thought it was a bit later but it was n't my fault anyway . 100 years ago , people dressed differently . The environment will be very polluted and finally we 'll get diseases . We will need helmets to cover our heads and we will also need air - supplyer . Maybe , science will be developed and make our environment clean , and we will not wear anything at all ! ! ! ( except underwear ) . I hope that the environment will be better than now in the future and our fashion will be changed but nobody knows how it will be . The advertisement promised there would be my favourite star , Danny Brook , but there was another actor who could not play his part as well as Danny Brook . In addition , the performance started 45 minutes late , so we could n't visit your theatre restaurant after the show because it was closed already . So I am sure you will understand why I am so annoyed and frustrated with the whole incident . Two days before , her best friend Maria told her that her parents were going to divorce . Maria was so upset that she could n't keep it to herself . They could not believe their eyes . Maria had bought his favourite food and she threw it into the bin . She went to school , but she could not follow the lessons as easily as she used to . Moreover , the theatre restaurant was closed for maintenance . In addition , I can go to Britain by plane to see her . When I received your letter , I could not believe it . Unfortunately , I will only be able to go in July because the restaurant where I am working will be closed for that month . I am in doubt as to what kind of clothes I have to bring with me . I had the best experience in my life . Can you guess who they chose for the job , " me " , yes , me , I could n't believe it . My job basically was to , before and after the actuation , make everything ready . To be honest the most exciting part of all this was getting to know the group . Yours Sincerely , First of all I helped with the decoration of the place where the concert would take place . I am writing to you to " help " you with your festival next year . Last year was n't very good so maybe we can make it more attractive this year . First , I think we should rent bigger halls so that we can make a better sound and give more space for the audience ! We can invite stars and artists from around the world who will play and presentspresent all kinds of music like jazz , rock , classical etc . Afterwards we could let people talk with the artists so they could get to know them personally . If you want to hear more of my suggestions and opinions about it please contact me on my cellphone . Yours sincerely First of all , it depends what kind of school it is : Polish students have to study a lot with books and they have fewer practical lessons , and sometimes it 's hard to get books or other things needed for studying . School is supposed to be our second home but it 's not . We work hard and at the end of our education we still have nothing . I would make schools less stressful , with added fun 'cause that way it 's easier to learn and I would give students more chances to share their fantasies at school . Maybe the Polish system is not bad , but it 's comfortable too . I know that this letter will not change anything but you can see how complicated a Polish student 's life is . I 'm not sure about the weather in California in the daytime and in the nighttime . Thank you very much for your offer . From my point of view , your organisation has to be careful to organise an activity . It was unpleasant for me to see different actors on the stage . In the advertisement that I received , it was written that the show would start at 19:30 but I kept waiting for it to start for half an hour . I am writing to you about my complaints about the musical show at your theatre that I watched a week ago , during my stay in London . Another problem was the male actor who starred : the well - known and talented actor mentioned in the advertisement was replaced by another one , who was really very disappointing and after the performance , I visited the theatre restaurant , which was supposed to be open and available for meals after the show , but it was closed . I appreciated this big news . I am very keen on photography so I definitely will choose this as one of my activities at the camp . I have got some experience already and I 'm used to any weather conditions , furthermore I simply love water sports and their challenges . My tasks were very specific . Its name is " Best Detective Stories of Agatha Christie " , and I really was impressed with the coherence of the stories . It 's stimulating to read them . I 'm sure that if you listen to it you will start reading the book immediately , and find out there are many challenges in your new career . We are waiting for your decision and we will accept it whatever it may be . The clearest example is to compare a house from the beginning of the 20th century with our houses . Both are very similar but now we have new technologies . I am writing this letter to inform you that I have received your letters and I am going on the trip . Every night I would like to go out of the small tent into the nice environment outside the tent . I was a bit disappointed with the result because I was expected to win the first prize or second prize . At first I was surprised but a few seconds later , when I realised that I was n't allowed to go , I tried to persuade my teacher to let me go . I had to keep things in place and check that the microphones were working properly . I was really embarrassed because I had to dance in front of a lot of people but that was the very best experience I have ever had . Tell me yours . I want to know what experiences you had when you were in England . I would be grateful if you could include this show in your programme . This is a great opportunity for me to explore and experience London myself , especially The London fashion and leisure shows . Most of the shows are about fashionable things for students my age . I think it is a good event and suitable for all of us because there are many different kinds of show , for instance latest fashions , leisure and sports wear , how to put on make - up and how to have appropriate hairstyles . In my opinion , I think you should have this event in the afternoon instead of going shopping and move the shopping slot to the afternoon on Wednesday . I trust you to pay immediate attention to my suggestions . I closed my eyes , took a deep breath and jumped out of the tower . There were hundreds of Thai students waiting to take this test . I was very afraid of the height and was very nervous . I was given the list of activities while I was taking part in the adventure school schemes at the soldier camps in the north of Thailand . The last task I had to do was jump out of the high tower . I eventually managed to complete all the tasks that I had been given and I was very proud of this . Surprisingly the show started at 20:15 . Of course I accepted immediately . After school Larry and I went to the cinema , but at the entrance there was a beautiful girl waiting for us . When we arrived at the shopping centre , I saw a lot of people . The task was not easy , at 18 you do n't know too much about cryptographic algorithms and databases but anyway we decided to do it . There was nothing to lose . Both of us went to the NASA university and nowadays we work for the CIA developing secure systems and new encryption algorithms . You should n't go shopping when the shops are so busy because it 's so annoying . You do n't have to be a genius to notice that technology has evolved so considerably during the last few decades that our everyday life has changed . I 'd prefer to take a tent because it is more romantic and exciting to spend nights in a tent . And with the tent I can go to another place in the camp . And I like painting because I like to paint nature , sea , mountains . I want to know some information about it . I 'm really looking forward to your answers . And I hope to see you soon . Yours sincerely Gubin . I abolutely agree with this . Because I have my own experience of shopping . For example , recently I was shopping at the market , which is located in the centre of our town . When I was there I saw a very beautiful T - shirt . I was upset about it . Our government is very bureaucratic . Our ministers are really criminal . They often break the law , stealing money . Because of it our state ca n't pay workers in schools , hospitals , on building sites . In our country there is a high number of unemployed . Often people ca n't buy a piece of bread . And they ask for money from other people . I wish that my accommodation at Camp California it must be in a tent . Anyway I enjoyed it so much . I haven't been to a concert before so the atmosphere was really good . Do you remember the computer course that we took together . It was very useful to classify each person at the concert . I congratulate you because that 's perfect . The advertisement for the musical said that it was going to be Danny Brook . Unfortunately there was someone else - an actor who I do not like and if I had known that he was going to be there I would not have gone to see him . In fact , modern technology was already very popular and commonly used when I was born , so I can not say that it changed my life suddenly . All these products of science are with me from the very beginning of my day . On the other hand , I am aware of all the disadvantages of modern technology ; pollution and the dangers it brings . But I think it has more advantages than disadvantages and it is O.K. I am really glad that I am a child of my century - the age of modern science . I am writing to answer your invitation which I have received as a first prize winner . There are also many kinds of take - away restaurants , where I can taste my favourite foods . But there is always a lot of traffic at all times , and the air is so polluted that I ca n't even breathe . I always feel very tired after the shopping because of unfriendly people who are too busy . What is more , admission for students is free . However , we have got a suggestion : we saw an advertisement for " the London Fashion and Leisure Show " which is going to be on Tuesday March 14 from 10:00 to 19:00 . I was pleased to receive your letter recently . Now I 'm going to give you some information you asked about . I 'm sorry to say this , but the only time I will be able to take this trip is in July , according to our team 's schedule . The next thing - I would prefer to spend all the nights in a tent , so I can move it to the place that will suit me best . I like to wake up with a view of mountains , which reminds me of my 5 years ' experience of climbing . So , is it possible ? I would like to continue doing my favourite hobbies in the Camp . Otherwise , you will either not find what you are looking for , or you will , and spend the rest of the day in a bad mood , because of the bad manners of sales people , who do not give you advice every time you ask for it . To summarise everything , I would recommend spending less time indoors , shopping during the weekdays . You wrote ' discounts available ' but they did n't offer any discount . But it was unpleasant because of these things . Owing to all of them , I can live very comfortably . In your letter you wrote that I will have the chance to do two activities ; first of all I would like to play tennis because I have been playing for seven years . Secondly I would like to attend a surfing course but I have just some elementary knowledge . It will be interesting to show how the lessons are organized , showing that we are never doing just one activity during the class . After that we have to make sure that we explain about the relationship between teachers and students , showing the times that we have been out together . Finally we should give some information also about our tourism , business and computer courses . Secondly , I would prefer to stay in a tent because I enjoy being outside close to nature . Sometimes the bad characters in a story are more interesting than the good ones . Its title was : " The Mystery of Hunter 's Lodge " . The character whom I liked most was that of Mrs. Havering , the mistress . It was very exciting because she could play two people at the same time : herself and the housekeeper . First of all I would like to say that it started later than it should have . I had to wait for about forty - five minutes . Then I realized that Danny Brook did not appear in the show , which was very diappointing for me because I like this actor very much , and I think that I was not the only one who was upset . Yours sincerely , They are very useful things which sometimes are necessary to survive . I watch about four hours of TV a day . I even eat my meals in front of the TV . We can see PEOPLE 'S LIFE in other countries , which is very interesting for me and my friends . Also the Internet has an influence on my daily life , because I can find there many interesting things , or I can meet with people from all over the world , which is exciting for me . I think that life without modern technology would be simple and boring . That 's why I am using it in my daily life . I am happy that there is such a thing as modern technology . Finally the day to pay my credit card arrived and where was my money ? All the students are happy that we will have the opportunity to visit London for three days . In the morning , we will have the chance to see some of the sights of London by bus , for example , the Science Museum or the National Art Gallery . The reason I write to you is that we have seen an advertisement for the London Fashion and Leisure Show , for a few days . The show is free for students and we can see the show instead of having free time on Wednesday in the afternoon . Nowadays , with the help of the media , famous people , like politicians or filmstars , play an important role in our community . Who got married , who got divorced or who has experienced a remarkable change in his complexion , these are questions that most journalists are interested in . There were some problems that were not displayed in the advertisement . In the advertisement it was clearly written that Danny Brook and Tina Truelove would play the main roles . The advertisement said that the show would start at 19:30 but it started at 20:15 . The advertisement said that they would be available but they were not . It was written in the advertisement that I could visit your theatre restaurant after the show , but unfortunately it was closed . We build big cities , there is hot and cold water , electricity , gas in practically every home . Many different incurable diseases have appeared . I 'm writing with reference to your letter . I was really thrilled , when I found out that I won first prize in your competition . I always dreamed about going to California and now my dreams are coming true . I 've always wanted to learn to sing professionally , but I 've never had an opportunity . When she tried to answer me , one small child took her picture with a flash . Truly , my work here was n't very important , but I really enjoyed it . I 'm writing this letter giving some opinions about the three days that the class will spend in London . So I 'm writing this letter , asking if you can change the programme . There is a great opportunity to go there because students need not pay anything . Our first challenge was stealing Dick 's girlfriend 's panties , but we failed . Nick and Dick could prove their bravery stealing their mother 's panties . " It was dangerous , but I knew I had to do it " , to prove my bravery to everyone . I USUALLY SWIM THREE TIMES A WEEK IN ORDER TO MAINTAIN A BACK TREATMENT WHICH MY DOCTOR HAS RECOMMENDED ME TO FOLLOW . SO , IF POSSIBLE , I WAS INTERESTED IN THE POSSIBILITY OF CONTINUING MY ROUTINE THERE . LASTLY , I WOULD LIKE YOU TO TELL ME IF I HAVE TO BRING SOME MONEY WITH ME TO BUY FOOD OR DRINKS AND HOW THE CLIMATE OF THE CAMPING AREA IS SO I CAN PACK MY LUGGAGE , BRINGING ONLY THE APPROPRIATE CLOTHES . THIS BOOK CONTAINED NINE STORIES WHICH WERE WRITTEN BY WELL - KNOWN WRITERS LIKE RAY BRADBURY . BUT THE MAIN PURPOSE OF THE BOOK IS TO ALLOW YOU TO FLY WITH YOUR IMAGINATION AND TO HAVE A GLIMPSE OF HOW LIFE IS GOING TO BE IN THE FUTURE , WHEN , PERHAPS THE WORLD WILL BE RULED BY MACHINES . SO , IF YOU ARE LOOKING FOR A " REALLY SPLENDID SCIENCE FICTION BOOK " I WILL RECOMMEND YOU TO READ " A WINDOW .. " AND I'M SURE THAT WHEN YOU FINISH READING IT YOU WILL WANT TO READ IT AGAIN , AND AGAIN ... ! I would like to ask whether you have competitions or different activities . Do you recommend me to take only summer clothes or some winter clothes as well ? I worked until midnight every day . It was very enjoyable . I made lots of friends . We were together all day , painting the walls , cleaning and putting up some balloons and other stuff everywhere . Famous people must understand that the journalists are doing their job . Second , regarding accommodation , I 'd like to stay in a log cabin . I also want to know if I should take any money , or if all the expenses are paid by you . That makes those people frustrated and they do n't enjoy themselves . Regarding accommodation in tents or log cabins , I would enjoy much more being in a tent as I believe that is the right type of accommodation for going camping . Men tease women for being shopping addicts and for having shopping as their favourite pastime . Everyone enjoys wearing nice new clothes . However , do we really like the process of choosing them ? I 'm writing to you to give my opinion of that great festival you organised last 21 and 22 of November . The festival was very well organised with a lot of alternatives like concerts and dance shows . In my opinion the hall for the rock concerts was too small . You have to consider booking a bigger one for next year because these kinds of events are attended by a lot of young people . At school it is completely different because the teachers do n't forgive you anything . I would n't like to change anything because we all need some discipline to do the right things . At first my favourite actor Danny Brook did n't perform , without any explanations being given , and the show should have started at 19:30 instead of 20:15 ! ! I was sure that discounts were available because I had read that they were , but at the ticket office they did n't offer them . All this story was a secret but Pat revealed it to his mother . I am writing to you because I am really disappointed about " Over the Rainbow " which I saw the other day during my stay in London which your company organized . I explained to you every detail about what happened at the musical show and I want you to refund my money and send me an apology for what happened there . Yours faithfully If we create guns to protect our homes , others will use them to burgle our homes , and take advantage of the defenceless people . Because I have had experience of staying in a tent and I like it very much . In my opinion tennis is the best sport I have ever played . I have just finished a professional photography course and I would like to continue my education in this activity . I was shocked because I had already spoken with them and I had got two autographs . Another part of my experience at the pop concert when we meet each other . First of all , the actors mentioned in the advertisement were not those who performed in the show . Plus , it is mentioned in your advertisement that discounts are available . In fact , no discount was given to me , though I am a student and as a student I was entitled to get a discount but I paid £ 20 because the cashier had never heard about any discounts for this show . As a student , the low priced ticket certainly attracted me a lot and gave me the opportunity to see and hear wonderful artists . Finally , I would like to make one big suggestion : you should find a place for a campsite so that people who come a long way do n't have to spend money on accommodation . Furthermore , department stores are always looking for students who would like to work . The London Fashion and Leisure Show is an amazing show because there are parades with the latest fashions . We could see some famous top models . Also there will be a variety of clothes either sports wear as elegant designs . I realised that my bag was outside and I went out to look for it , when a shower of stones covered the entrance of the hole . I walked alone a long distance until I found a telephone . I called the police and they ask for a rescue . When we finished at our primary school we went to the same secondary school too , but we were in different classes . And when we finished at the secondary school , I decided go to a foreign University . In my opinion , the clothes will be more colourful , fun and comfortable . People will prefer to wear comfortable clothes , even to go to the office . Actually , I think that the clothes will be really simple in 100 years and I hope to be alive until then . However , when I saw it , I was really disappointed and I must ask you for some money back . First of all , Danny Brook was not there . I was very upset because he is my favourite singer and that was one of the reasons why I wanted to see this show . On the development , they also said that there would be a discount for students who are between eighteen and twenty - five years old but that was totally wrong because I paid the full price , which was £ 20 . I am writing in order to complain about the musical show " Over the rainbow " . Regarding the times of the performance , the show was supposed to start at 19.30 and it started at 20.15 . Nobody likes to wait 45 minutes just watching empty scenery . I was waiting for 45 minutes . You can send a letter to your friend by e - mail instead of writing it on a piece of paper and sending it by post . After that " show " we were starving and we had planned to eat in your theatre restaurant but what a surprise ! Let 's take the mobile phone . Nowadays everybody has got a phone which is " mobile " . I 'm writing this letter to complain about your fake advertisement . First of all , in your show advertisement it says that Danny Brooks stars in the play . In the evenings before I go to bed I sit in the living room and watch TV via satellite . When I go to bed , because there are many mosquitoes , I turn on a special machine with a battery - like thing in it which kills them . I believe that modern technology has positively affected our lives . In order to fulfil their readers ' requirements they constantly follow them . On the other hand , famous people have a point if they do not allow the paparazzi to take their pictures , because although they are famous they also have their private life . Your programme is very good , especially as we can go to visit the Science Museum , which I heard is very good , but a visit to the London Fashion and Leisure Show would be a good opportunity for us to see the latest fashions , leisure and sports wear , make - up and hairstyles and it is free for students too . I climbed up the tree . It was badly hurt . My friend rushed to me , then ran back to my house and called Mum . Mum came in , looking very angry . I prayed for a short conversation . I want to complain about your advertisement for the production ' Over the Rainbow ' ; I had a very disappointing evening . Yesterday when I arrived at college , I saw Pat standing with Peter and a lot of other boys and they were looking strangely at me and laughing . People started to write things on the board and to point at me . It is a great failing of responsibility for a theatre like yours to have a delay like this one . Finally , the restaurant where I would have liked to have dinner with friends after the show was closed , contrary to what was announced in the advertisement . I 'm writing to answer your questions but , first of all , to thank you for the prize . I would like to travel in July because it is the school holiday here in Portugal and I will have the entire month to travel , so I have no preference for which weeks . I 'm looking forward to receiving your letter . I have to say that I am really disappointed with your advertisement because you mentioned some points that are not true . Secondly , another problem was the starting time . According to your advertisement , the play starts at 19.30 but instead it started at 20:15 , this is almost an hour 's delay . The simplest example of modern high technology is the introduction of the computer - better known as the PC . Research has shown that almost every single household owns a PC . Some people use them for their job because they need it , but others , like children , use it just for fun . Other examples that may not look like huge technological miracles are the TV , the microwave , the video , the satellite dish , the CD player and hundreds of others . All these play an important role in our daily life without us ever understanding them . Those things can and do make our lives easier and more comfortable , but they take us away from our friends , our families and moreover they lead us to madness and cut off any relationship with everything that surrounds us and keeps us alive . I think that is going to be more comfortable for me due to the fact that I am very sensitive to changes of temperature and I ca n't take the risk of catching a cold because , as you know , I 'm going to start to work . How are you ? I 'm fine and I am writing to you because I know that you want to know about my experience at a pop concert ; I have to tell you that I did help there and it was very hard work . You ca n't imagine all the work that goes into preparing a concert . I am writing to you to complain about the last Saturday evening performance at your theatre . Finally , I want to know what the weather is like in California in July . The teacher uses video and pictures to teach students about festivals , sports , museums , etc . Basketball is the most popular activity , which takes place between 4:30 pm - 6:30 pm from Monday to Friday every week . I have received your letter and I am so glad I have won the first prize . I have been playing tennis for 2 years and I won the Under 16 's U.S open tournament last summer . I 'm writing to complain about your theatre and its show last night . Firstly I would like to say that I was very disappointed with the show and that I did n't have the perfect evening out , as advertised . The main character of the musical show , who I 'd like to say was n't the " BEST " , was awful . And then , when I arrived at the theatre , I expected to have a discount but unfortunately I did n't . On top of all this , the theatre restaurant was closed because the chef and the waiters were on holiday . I was very disappointed , what else can I say . It was supposed to be my perfect evening out . In conclusion , I 'd like to recommend that you should first know what you have to offer and then advertise it . Yours sincerely Unfortunately , Pat was n't very good at keeping secrets . I should n't have told her that my dad had psychological problems . All these years I believed that my father was killed in a car accident . When one day Pat came over to my house , we started arguing about ordinary things and during our fight the subject of my father and his problems suddenly came up . Pat started shouting and screaming , saying what was really going on . Also with weekend shopping , you ca n't find somewhere to sit down comfortably to have a cup of tea . According to your advertisement , it stars DANNY BROOK and TINA TRUELOVE , but surprisingly , was performed by a different actor of whom I did n't even know the name . Nowadays , we use a lot of modern technology both at home and in the office but it has its advantages and disadvantages . The first and most important thing is that modern technology has made our life easier , for instance the rice cooker is a great invention , all you have to do is put rice in it and switch it on , it makes cooking more efficient . Furthermore , we use the computer and telephone a lot . Mankind became more and more clever and built wonderful things thanks to his thoughts and his hands . Although there are new machines etc , medicine makes many discoveries thanks to research into different diseases in order to make the population live longer . I have won the first prize ! I am extremely happy about this . I can only take a holiday in July because I am going to start a new education at the beginning of August . Staying in a tent will remind me of an unforgettable time . Given the circumstances , I would like to learn more about photography and painting . Is it possible to pay by credit card or should I take travellers ' cheques ? I applied for a job at the ticket office because I hoped to see a lot of different people . I had to prepare the ingredients for every meal . That meant I had to read the recipes very carefully . I am writing to you to complain about the show " Over the Rainbow " at your theatre " The Circle Theatre " . I am deeply disappointed with the service and the unreliable information at your theatre . I am very disappointed by this . You also mention that your show would start at 19.30 but to my knowledge it started at 20:15 and that meant forty - five minutes of waiting . It also mentioned other services would be available to the audience . For Example there were no discounts available and the theatre restaurant was closed after the show , when it was meant to be open after the show according to the advertisement but it was closed due to the delay with the performance . And I would like a refund . You have wasted my evening and money . Synthetics have been created by scientists . Clothes are now mass - produced and designed by designers . Designers are unique in a way but their designs are sometimes more a piece of art and not for everyday purposes . It is hard to imagine what people will wear in 100 years ' time , because since the 1900s clothes have reduce into smaller item and more practical . Maybe it would continue reducing in 100 years to come . Scientists might discover a new way to make clothes more fixalde . It would provide you with a new type of material to cover your body and you could choose what you want to wear by pressing buttons . This would be very easy to manage but it would mean no more shopping for girls . It would be scary to live in the new 100 years , but it would be interesting to see what will happen . The next thing is that I would prefer a log cabin . I was responsible for the advertisements and I also had to invite the " important people " from our government . It was really a new job for me , but I think I did well . There were two other problems : there were no discounts , contrary to the information in the advertisement , and the theatre restaurant was closed because of the repair work . However , she definitely deserved to have a private life as a citizen . Thank you for your letter and for having informed me about the results of the competition . I also want to congratulate you on your excellent competition , thanks to which I have the opportunity to go to California , a place that I always wanted to go to . About the trip , I think it would be preferable to do it in July , which is a holiday period and so I wo n't have any special obligations . Spending a lot of time in the same place in my opinion is the worst thing to do , especially during a holiday ! Any little tournaments of this kind would be great . Moreover instead of buying a ticket I went there for free , as a helper . The pop concert was excellent and I had a lot of fun . I AM WRITING IN ORDER TO COMPLAIN ABOUT THE SHOW THAT YOUR THEATRE PUT ON . I WENT TO YOUR THEATRE WITH THE IDEA OF HAVING A GREAT TIME . UNFORTUNATELY , THINGS WENT VERY WRONG . SECONDLY , THE SHOW WAS SUPPOSED TO START AT HALF PAST SEVEN IN THE AFTERNOON , BUT IT STARTED AT QUARTER PAST EIGHT , THAT IS FORTY - FIVE MINUTES LATER ! IT IS ALSO ADVERTISED THAT THERE WERE DISCOUNTS AVAILABLE . HOWEVER , THAT WAS ANOTHER LIE . LASTLY , AFTER THAT AWFUL EXPERIENCE I TRIED TO VISIT YOUR THEATRE RESTAURANT , OF COURSE , I COULDN'T DO IT BECAUSE IT WAS CLOSED . UNFORTUNATELY , PAT WASN'T VERY GOOD AT KEEPING SECRETS AND I DISCOVERED THAT TOO LATE . THE CONCERT WAS PLANNED FOR THE FOLLOWING FRIDAY , WHICH WAS THE DAY AFTER MY TEACHER GAVE ME MY MARKS . Dear Mr. manager of The Circle Theatre : Could you , if we may ask , reorganise our visit to the museum and also to the shopping centre . Perhaps we could spend our free time at the museum before going to the shopping centre . Whatever you do , journalists should not follow you every second . The problem is that most of the advertisement was misleading . But the main reason for my complaint , is that in the advertisement it was said it would be my perfect evening out , and it was not . And the best thing is that it entertains me alone or with people . I have just received your letter and I thank you for your invitation and congratulations . As regards accommodation , I prefer a longer , Canadian tent in a quiet place because I am fond of nature and I would like to feel free in an informal setting . I like competitive and challenging sports . I enjoy comparing my skill with other players and , if possible , I would rather not do indoor sports activities , but open air ones . I have given a questionnaire to other students in my class to know their preferences regarding this choice and we all believe that the first lesson that should be filmed is philosophy . The reason is that all students are interested in it and the teacher is so good at explaining problems that the whole class takes part in discussions about specific aspects of the subject . Also the sports activities should be filmed ; they express an aggregative and social way of living school life and can be useful to show the movements of the bodies during the school athletics events . The dancing lessons should also be filmed , especially because of the fascinating beauty of the girls and the elegance of their movements . We were interested in seeing the actors that appeared on the tickets and I was very disappointed when , in the show , we saw other actors . I am looking forward to hearing from you . I 'm looking forward to hearing from you . I have just received your letter and I 'm very happy because of it , especially because the competition was so hard . Being at Camp California was one of the dreams of my life and now I can realise it . However , about accommodation , I 'd prefer a log cabin , because it is more comfortable than a tent . Firstly , I was very embarrassed during the concert , but all the staff were very kind to me and Tom too . THE HISTORY OF THE HUMAN RACE IS THE HISTORY OF WORLD CONQUEST . THAT SAID , TECHNOLOGY HAS ADVANCED CONTINUOUSLY SINCE THE BEGINNING OF MAN 'S EVOLUTION . FURTHERMORE , DURING THE LAST TWO CENTURIES , THERE HAS BEEN AN ENORMOUS TECHNOLOGICAL EXPLOSION . WHILE THE XIX CENTURY GAVE US THE STEAM ENGINE , FACTORIES AND THE ELECTRIC LIGHT BULB , THIS CENTURY HAS GIVEN US NUCLEAR ENERGY ( AND SADLY ATOMIC WEAPONS ) , THE COMPUTER , THE INTERNET AND TELEVISION . I 'd like to tell you that the best month for me to travel to the U.S.A . is July because I will be on holiday in that month . I do n't really worry about the accommodation at Camp California , but if I can tell you which one I prefer I 'll choose to stay in a tent . The concert was in a massive club and the tickets were sold out . Marvellous ! Two days before I read an advertisement for this show , which said that Danny Brook was starring . Apart from that , the show started at 20:15 , not at 19:30 , as it said in the advertisement and the theatre restaurant was closed when the show finished . When I went to my bedroom I realised that Pat had told my mother about the party , because no one else knew that my mother did not know that . I am writing in order to complain about the musical show , the name of which is Over the Rainbow , which I saw in your theatre recently . It was a pity but it did not annoy me because I thought that the musical was good enough to pay £ 20 for . After the show I decided to go to have a coffee and to smoke a cigarette to try to calm myself and suddenly I could see that the restaurant was closed because it was the barman 's day off . I am very indignant because I wasted my time and it was a horrible evening so I would like you to return my money and take note of all these problems . Maybe it would be a nice idea to analyse these changes and to put limits on technology , because I think that the most important thing is to understand our life and know the ways we can improve it . Firstly , the show did not start on time but forty - five minutes late . This actor was not nearly as brilliant as Danny Brook and I would not have paid so much money if I had known this before . The worst thing of all was that at the beginning of the show I realized that the actors were totally different from the ones advertised . They were worse than the previous actors . They believe that people in the future will wear comfortable clothes because they will be outgoing , amusing , etc . And people will wear cybernetic clothes but at the same time comfortable clothes . I received your letter recently , and I am really happy to learn that I have won the first prize . About the accommodation during those two weeks , I would rather stay in a log cabin , as it is really difficult for me to stay in a little close room . I had an induction climbing course two years ago , and I still climb regularly . I can do a V+ level climb . Going out to spend a day shopping is something very popular . The shopping centres are always busy , with people going up and down carrying bags and looking in shop windows ; it seems everybody is happy . To sum up , shopping is not always enjoyable , but do n't worry , the shopping centre is still there waiting for you ! I can only travel in July because this is the month when I have holidays . I 've already talked to my manager , and she said that that 's the only month I can have my holidays . I 've been playing tennis since I was seven , and I 've been studying how to play tennis for a very long time , nine years . You know how good I am at music Anyway I was helping at this pop concert to get the correct sounds . At the beginning I was connecting all these wires into speakers , music system , guitars etc ... The bit that I particularly liked about the experience was when I was standing next to the singers and playing a guitar - you know how much I love playing guitar - and all these video cameras were just filming us . I asked one of the cameramen when they 're going to show this show on tv , and he told me they 're going to show it on the 10 of June , so turn on your tv on this date , channel three , and you will see me there playing this guitar . AH , it was lovely . What I realised was they were not different from any of us but they were called celebrities . I particularly liked listening to their musicians when they played the piano , clarinet , drums , violin etc . Pat promised not to speak to anyone about the car , but one evening Philip overhead her speaking about this with her boyfriend : " It will be delivered on Thursday ! Furthermore , the show started at 20:15 while the advertisement said that it was going to begin at 19:30 . I am very surprised that such a reputable theatre like yours has been able to break all the promises that were made in the advertisement . Of course , what was going to be a perfect evening out turned into a very disappointing evening , and I would be very grateful if you could refund me the price of my ticket . Scientists will invent new materials that will keep the body 's temperature in a suitable range . For that reason clothes will be simpler and more practical . Of course , the resources used and the manufacturing will be completely harmless for the environment because people will be more aware of the necessity of taking care of the world we live in . And it 's all the more tiring since you often wait for two weeks before getting it . I think that this tendency will not change but what will change is life . With regard to your International Arts Festival advertisement , I would like to share with you the pleasure I had to be part of the event and make some suggestions for next year 's festival that you might take into consideration . In your advertisement you mentioned that there would be artists and stars coming from all around the world , unfortunately I found out only six countries were represented . The night he came into this world was one of grater for the inhabitants of the country and also of the town where he was born , it was an ordinary night . To begin with , according to your advertisement , discount tickets are available . The tickets were rather expensive , and the discounts mentioned in the advertisement were n't at all available at the theatre . Pat was my friend , I trusted her and we got on very well until she repeated to everyone the secret I had told her . Regarding accommodation I 'd prefer to sleep in a tent because I like being outside and hearing the noises of the sea . a maths lesson , an English lesson , a swimming lesson , the break and the staff room . - We could show the activities of the students during the break . For example , students who play football or volleyball . We could find out what this room is like and what the teachers do in this mysterious room . I can be closer to nature and I have never used tents before . My parents were very proud of me . My hands were trembling but I did it very well . I 'd like to say something that I felt during the festival , and give my opinions that would be helpful for you to prepare for the next festival . People believe that the bird was sent from heaven . So I am going to ask for a refund ... I hope this is n't offending you too much ... When it comes down to colour , I think it 'll be much brighter and maybe glittery . Colours to match the clothes . First of all , I would like to thank you for doing such a good job organising the competition which I luckily won . I have been really very impressed . In fact I will finish my university exams only on the first of July and after the 20th it is impossible because I am going to do four weeks ' voluntary work in India for UNICEF . If it is possible I would prefer to stay in a log cabin , because , in spite of my love for nature , I am terribly allergic to pollen . Thank you very much for your attention on my behalf Why have so many people been infected by this " psychological virus " ? We are always trying to have more things , which lead us to neglect our family , our future , and other things which are probably more important than a new perfume . Maybe you think I am exaggerating but recent studies prove that this mania can be really dangerous . Certainly only the fact of having something can help people to be more sure of themselves . Probably when Oscar Wilde said : " Superficiality is the supreme vice " he was right . You can not imagine our disappointment when we realised that the show had been postponed to 20.15 instead of 19.30 and that the restaurant was closed because of repair work ; as a matter of fact , after the show we only ate a hamburger in a fast - food restaurant . She was so angry and felt so betrayed by Mr White that without any hesitation she went to the school Headmaster to report everything she had seen . I have just received the letter , which lets me know that I have won the first prize . This is because I intend to take an examination in September . And recently , I have been practising tennis as a school activity . The reason I enjoyed it very much is that I could meet the vocalist during setting chairs just before they started practising . Can you send me a letter back writing what happened to you recently ? Finally , what kind of weather is waiting for us ? Surprisingly , there were no discounts . She just remembered it ought to be a secret , and she became really embarrassed . I swim really well and I am a professional basketball player . It all started when one of the organizers asked me to help him at a concert of my favourite band . I am writing to you about the show . The woman who sold me a ticket was very rude to me , actually she started swearing at me . They were just playing and , by accident , Peter shot him . He promised to keep it secret . The next morning we had an argument with Pat . The 3 of us were shouting at each other . In short , Pat left us . Secondly , I am interested in trying something that I have never done , so I would like to do sailing . First of all I have to say that the whole festival was a great success and I also think you chose an appropriate title for the leaflet . Nearly at the end of this letter I have to say that the idea of the weekend ticket was really good because it gave the people the opportunity to attend for a whole weekend for a cheap price . I am writing with regard to your advertisement . It was my favourite musical . I was very hopeful that I was going to have a good time . The worst thing is that I could n't see my favourite actor . I was so disappointed about that . I could n't concentrate on the play any more . In contrast to the advertisement everything was disappointing . These days we can use a computer , television and some sophisticated equipment , which were unusual once . Children play with computers instead of the usual toys . There has been a change in the relationships between people . We have noticed the environmental damage in recent years . I think this festival is a great idea because it 's an opportunity to see and to appreciate art , but I also think there are some things that could be changed . I noticed that the artists were from only six countries instead that from around the world . This choice does n't give many artists the opportunity to express themselves . I hope that my opinion can help you to organize for next year a great international arts festival alone to young people . I am writing to complain about a musical show on the 10th of June , and I was very disappointed . I was promised that the star was Danny Brock but when I was there I saw another star that was completely different from your brochure . According to your brochure , the show would start at 19.30 p.m. but it started at 20.15 p.m. I wanted to sleep and it was very annoying . I was promised that after the show I could go to the theatre restaurant but due to the show starting late it also finished late , therefore , when I went to the restaurant they were definitely closed . I have a really good friend , Pat who I trusted and counted on . One day , I fell in love with my closest friend . We were studying in the same class at school and he also knew Pat as well . Personally , I wanted to keep it secret because I was afraid that we might split up . And I would like to make sure that he really loved me . My boyfriend told me that he wanted to surprise his friend in his class when the time came . One day I decided to tell my best friend - Pat , who I relied on . I told her everything about my boyfriend and when we met each other and eventually fell in love . On Monday morning , I walked into the class and all of my friends were shouting at me and calling my name and my boyfriend . I was very embarrassed and I wanted to run out of the class . I received your letter and I am very excited about the camp . I would like to go in July , I do n't mind which two weeks , but it has to be that month because in June I am still in school and in August I am going on holiday with my family . I would prefer to sleep in a tent because I think it 's different from where I sleep every night so I would appreciate it if there are still tents available . Here is where the good part starts , I was doing the curtains ( opening and closing ) when Nick came up to me and asked me to go on stage with him . My heart started beating very hard . DANNY BROOK is one of my favourite actors so I decided to buy a ticket even though I had to cancel my appointment on that day at 18.30 and also notice of price discount impressed me . However , when I got to the theatre , you not only did n't have any discounts but also had to apologize to us for the delay in starting the musical . In addition a different actor appeared on the stage and I could n't have dinner after the musical because the restaurant was closed . It made me so disappointed and angry . You should return my money immediately because that night was far from perfect . When all the money had gone from a bank , nobody was there except Pat . Then the police realized who the bank robbers were and arrested them . I 'm writing to answer the questions that you sent me in the last letter , so referring to the question of when I would like to travel , I would like to go anytime during July , because I have to be back home in August , because I need to apply and get everything sorted out , to go to college next September . And referring to the question about which type of accommodation I prefer , I choose a log cabin , because I think that a tent is messier , so I would appreciate it if you give me a cabin . And my answer to the question about which activities I would like to choose , well I choose swimming , because it is my daily exercise , and surfing . And well , Mrs Helen , I would really appreciate it if you sent me back a letter with all the answers to my questions . Yours truly Well here in Dublin things are still the same , but I think somebody told you that I went to the Moby concert here at the Point , which is the big venue for events and concerts . I guess it was the best concert I 've ever been to , but the coolest thing is that , well do you remember my friend Luke , the one that works as a security guard ? Well he told me that they needed people to put everything on the stage , so I went to help them and everything else , and when I got to the Point , do you know who was there ? Can you believe it , it was Moby . So I went to say hello to him , and he asked me , ' Would you give me a hand with my decks ? ' So I went , and when we finished he gave me a T - shirt and a gold pass to see the concert from the first row . Oh my God , Kim , that was the best thing that ever happened to me . Well Kim , I hope to receive a letter from you soon , and please tell everybody about the Moby concert and everything , thank you . It is wonderful for me to have the opportunity to visit Camp California in the U.S.A. I think this topic is so exciting from the anthropological and psychological point of view , because we can study the subject 's reactions before , during and after shopping . For men and women appearance is important and they spend a lot of money buying clothes , cosmetics , accessories , jewellery etc . I think in the near future we need to decide with the government which special place in the town will be left just as a commercial area , but of course with all the facilities to get there , like a big supermarket and mall centre , from different areas of the city . IN ADDITION TO THIS , I DID NOT HAVE ANY DISCOUNT ON MY TICKET . Firstly , the actor was supposed to be Danny Brook , but he was not , it was another actor , who I have never seen before , so , as you can imagine , I was very disappointed . Maria talked to Pat about the stupid thing that she had done , but Pat refused to apologise to her , because she felt it was n't a mistake and she did it for only one reason : to help Maria to get the man that she loved . First of all , we would like to thank you very much for organising such a wonderful trip with an interesting programme . It is a coincidence which we would be extremely happy to take advantage of . This is a great opportunity for us to see the latest fashions and famous fashion models who we would like to have autographs from . I personally think the best would be to put the celebrities in cages and let people touch them , point and ask for autographs . It may , in many cases , not be true but we can suspect that most of them wanted to become a celebrity and they had to know there is no private life unseparately connected to it . The purpose of this letter is to congratulate you on the International Arts Festival I attended last weekend . Firstly , I would like to tell you that the idea of organizing an International Arts Festival is fantastic , but in your advertisement it said that I would find stars and artists from around the world , when , in fact , they were from only six countries . Secondly , I believe you should know that a lot of people , including me , were not able to enjoy the concerts because some concert halls were too small . Last but not least , I would like you to know that I think the idea of the weekend ticket for all events was excellent because in the end it was cheaper than paying for each event separately . Another way our home could be different in the future is probably the utilities we will be using . This is because people wo n't give up the great taste of food . Although it could be substituted with a vitamin pill or two . Lastly , I think that all these changes wo n't really be noticed as we change things daily and slowly instead of abruptly . Some people think that being a famous person is a very exciting thing , that all the time this makes you feel complete and also they think that if you are famous you are special as well . I believe that if somebody wants fame and glory he must be totally clear about the results . Another successful career such as , film stars must also be balanced . If somebody wants to be famous of course they must be on the top and the mass media will be following him or her . It does n't matter what kind of career or job you have . Firstly , I 'm writing to thank you for the great opportunity you are giving us , especially in planning all this programme in such an accurate way . Also , this show is free ( another positive point ) . I mean I do n't think we 'll change cars into aeroplanes ... In conclusion , I strongly believe that the house of the future will be the house of a new awareness . It will be a very positive point for opening up our lives . Technical and Warm Home People 's way of life has been changed considerably by rapidly developing modern technology . Since the electric fire and microwave oven had been invented , their lives have been far easier than before . I was enthusiastic about receiving your letter . I will give you all the necessary information . You ca n't imagine how many people are involved in the organization of a concert . Apart from the musicians and the singers , there are people who work with lights , who organize the security ... it was so exciting ! I 've received your letter and I am pleased to have won because I needed some days to relax and to leave the city , which is very stressful . I can travel in July only because I am working in an office and I must ask my boss for a holiday and it 's the month he can give me one , so I hope that is n't a problem for you . I would prefer to spend the two weeks in a tent , that 's , in my opinion , a way to be nearer the environment and the animals , although I do n't mind staying in log cabins . To sum up , everything you do in small quantities is good and fun , but do n't increase the amount you do if you do n't want to feel uncomfortable . Well my friend , I have to go , because I have got an appointment with the Dentist . How much money do you recommend me to bring with me ? While we were in Florence my wallet was stolen , probably by a gypsy . I had to buy my dress , its accessories and also clothes and souvenirs ! Thank you for choosing our ticket at the final . It would be great if we could choose swimming and golf . Finally , we would like to know when you will send us the airline tickets and the brochure . You are interested in my last job ! I really want to tell you all about my experience . In addition , it was nine days of hard work to mount all the different spot and hundreds of Coblights in the right place . Finally , we worked the whole night before the concert . We had to adjust the laser extremely carefully to get it in the correct position . Finally you said there was a Restaurant , but it was closed , so we could n't eat anything until we got home . I have chosen these activities because these days I am playing on the university team , and photography is my favourite hobby . Is it necessary to bring any money ? I am writing to you to tell you about my experience at a pop concert . It began when our mutual friend Martha offered me the chance to help organise the concert . Obviously I accepted . Now I can tell you that it was an amazing challenge for me because I had never done anything like that . My duties as a staff member were various . The first day I had to pick the bands up from the airport , and for this I hired a van . I am very disappointed because the things that were written in the advertisement were not really true . It was written that the stars would be Danny Brook and Tina Truelove . Danny Brook is one of my favourite actors and there appeared a different one . I felt very disappointed . The musical should have begun at 19:30 , but it started at 20:15 ; this is unacceptable ! As you say in your advertisement , it was not my perfect evening out and therefore I would like to have my money back . On the other hand , the main disadvantage is that using modern machines can be very difficult for elderly people ; it would be very pratitable if the modern industries trained people to use modern technologies . I 'm writing to you to thank you for the excellent programme for our English class in London , especially for the river trip to Greenwich . It will be a great experience for us . But the students in our class have seen an advertisement for the " London Fashion and Leisure Show " , which will take place in the Central Exhibition Hall , London , on Tuesday March 14 from 10.00 to 19.00 . At the same time we have to go to the Science Museum but we would all like to go to the show . Please let us know as soon as you make your decision . This book helps us to improve our logic , mind , and memory and it teaches the reader not to lie , to be more honest with other people and pay attention to the smallest details in our life because sometimes that can help us very very much . In fact , shopping can have some disadvantages for different reasons : It became essential to doing my homework . The place I 'd prefer to stay in is a log cabin , where I 'm sure I 'd feel more comfortable than in a tent . I think I 'm not bad at painting either ; at least everyone in my family likes my work , including myself . If it is possible I want a log cabin for my accommodation because I have been suffering with my back since my childhood , therefore I need a comfortable place to sleep . I selected swimming because it is a cure for my backache and I have not done it since I started my new job five years ago . On the other hand , shopping can be unenjoyable . Peter and Sue asked Francis for some help with their exam subjects and Francis , all week , was too busy to help them . I looked at her and she became pale and suddenly left the class . Recently , some students have seen an advertisement about a fashion and leisure show in London . It will be on the 14th and we all want to go . So , it would be great if you could give us this opportunity to watch the show . At that time he was unconscious . I kept asking myself ' Should I wake him up or try to use my dubious first aid skills to help with him . " Can you please give me some recommendations about the clothes I will need and also the cost of the food there to plan my budget . I start thinking about what she or he prefers and I try my best to buy something appropriate no matter how much money it costs . In conclusion most of the time that you spend shopping you put a lot of effort into choosing things and making decisions and they are more or less important , or more or less enjoyable depending on what , why , where and who is the person that you are interested in pleasing . I AM WRITING WITH REFERENCE TO THE LONDON TRIP WE ARE MAKING VERY SOON . WE ARE REALLY INTERESTED IN THIS SHOW . WE THINK IT IS A GREAT OPPORTUNITY , BECAUSE AS YOU KNOW , WE DON'T HAVE ACCESS TO THAT KIND OF SHOW IN THIS CITY . IN CASE YOU DECIDE TO CHANGE THE PROGRAMME , WE SUGGEST GOING TO THE SHOW ON TUESDAY AND ON WEDNESDAY , INSTEAD OF FREE TIME , VISITING THE SCIENCE MUSEUM . YOURS SINCERELY , I WAS LIVING QUITE CLOSE TO PORTOBELLO ROAD BUT I DIDN'T KNOW THE AREA VERY WELL BECAUSE ALL THE TIME I JUST HAD TO GET OFF AT THE CORNER OF MY STREET . BUT THAT DAY , AS I WAS KIND OF DRUNK , I DIDN'T REALISE THAT THE BUS TOOK A DIFFERENT ROUTE . SO , WHEN I NOTICED IT , THE DRIVER WAS ALREADY ASKING ME TO GET OFF , BECAUSE WE WERE IN THE GARAGE IN PORTOBELLO . I TOLD HIM I DIDN'T KNOW WHERE I WAS , BUT HE JUST SAID SORRY . I WAS REALLY SCARED . THERE WERE SOME PEOPLE AROUND BUT I WAS AFRAID TO ASK THEM THE WAY . AFTER FILLOWING HIM FOR 10 MINUTES , I STARTED TO RECOGNISE THE PLACE , AND I WAS FEELING MORE COMFORTABLE . Definitely , it was a very disappointing evening and I would appreciate it if it is possible to have my money back . I thought that Dany Brook , who is my favourite actor , would perform in that show . Please , if you would be so kind correct this mistake . I would be grateful if you could correct too that show starts at 20.15 not on 19.30 . Another thing was that there were no discounts available , and that the restaurant , which I wanted to visit after the show , was closed because of the main cook sickness . Unfortunately , Pat was n't very good at keeping secrets . I knew that he 's a very talkative person , but it was necessary because I wanted him to be the main organiser of that birthday party for tenes . I made beautiful invitations for all of Agatha 's friends with a note : " Do not tell Agatha about this . This is a surprise party for her . Please keep the secret ! " Pat arranged a great DJ and drinks . My friend and I made the perfect decorations with balloons and other party stuff . It was so exciting ! ! ! Anyway the disco was great , music also . And your last festival was very interesting too . But also there are some notes that you should improve in next year 's festival to make it absolutely wonderful . I think that one reasonably - priced weekend ticket for all events is an excellent idea because it is n't so expensive as buying a ticket for each event , and with this ticket you can visit everything you want . So the main rule in our school is regarding teachers . I have chosen as my activities surfing and photography . How is the weather in California ? Afterwards , I felt tired and unsatisfied with the store . I 'm very happy that I won first prize in your competition . I can come to USA in July because in August I will be working with my father . You offer a great variety of activities . I have questions too . People always queued for stuff from the west . Nowadays we have capitalism , free market , lots of private shops , markets and supermarkets . They are imported from another Western European country . I appreciate these shops for lots of products , cheap prices and big spaces . On Friday evening and on the weekdays all supermarkets are crowded . I am writing in reply to your letter in which you told me I have won first prize in your competition . Now I am answering your questions and then I would like to know some further information about travel and accommodation . For instance , it is fun to enter a clothes shop and try on a skirt or a T - shirt although you do not buy anything . CONCERNING THE ACCOMMODATION - PLEASE BE INFORMED THAT I WOULD PREFER THE LOG CABIN AS IN THE MEANTIME I SHOULD WORK ON MY LAPTOP , PREPARING SOME FINANCIAL REPORTS SO ELECTRICITY WILL BE NEEDED . I THINK THAT THE LOG CABIN WILL BE MORE COMFORTABLE OVER ALL . REGARDING TWO ACTIVITIES - I HAVE CHOSEN TENNIS AND PHOTOGRAPHY . PEOPLE LIKE DOING SHOPPING ( ESPECIALLY IN POLAND , WHERE MANY NEW AND MODERN SUPERMARKETS HAVE BEEN OPENED ) LADIES PREFER TO VISIT UNDERWEAR SHOPS OR DEPARTMENTS IN HUGE HYPERMARKETS AND MEN ARE HAPPY WHEN THEY CAN BUY SOMETHING NEW FOR THEIR CARS , MOTORBIKES OR COMPUTERS . ANYWAY EVERYBODY SHOULD DO SHOPPING AS PEOPLE NEED TO EAT , NEED CLOTHES AND MANY OTHER IMPORTANT THINGS TO LIVE . Furthermore , I prefer to do painting and photography as my hobbies and my fascination for art and enjoy taking photographs of wildlife . Sorry I haven't written to you for such a long time , but I 've got a good excuse ! What a surprise ! And unbelievably , I was responsible for looking after the pop stars . But , I got through it . I had to take care of them during the break , serving drinks , clothes , I even brought them some cigarettes and anything they wanted . What I most appreciated was that they gave me their latest CD with their signatures . Marvellous thing ! And of course , as you have seen , I 've given one to you . I 'm sorry but I am very disappointed with the show . We arrived on time but the show was delayed until half - past eight . Moreover , we were n't given any discount for being students . Maybe the reason for that is very simple : lack of money ? It may sound funny , but mud , gravel and snow lying on the school floors is not a nice sight , so we change our shoes without questioning that rule . Also , in August I will be studying a summer course in English . Also , I felt wonderful when I saw that the concert was a success and every day it was crowded . All the students would be very grateful . We call home the place where we live or the country where we come from . Working long hours , doing plenty of activities , going out , going on holidays . Probably in the future we may be too busy to go to our own home and spend some time there . Finally , we went to the restaurant in your theatre after the show . It was closed because of the staff training . It is believed that our lifestyle has been changed by modern technology such as computers and washing machines etc . First of all , dishwashers are very convenient for me because I work full - time and look after my children . In my opinion , modern technology makes our life easier . Unfortunately , Pat was n't very good at keeping secrets . That was why our great plan for our holiday was not be real . It happened last summer . We planned to go on holiday in the southern part of Thailand by motorbike but we could n't tell our parents because they would n't allow us to go . While I was standing on the beach , suddenly I heard someone call my name and say that I had to go home . That is right , it was my mum . I am writing in reply to your letter I received yesterday . ' As I have a choice I would prefer to stay in log cabins rather than tents because they seem to be more comfortable and you are not so dependent on weather conditions . Last year I took part in a photographer 's contest and I won a second prize in Poland in the category of , , beautiful scenery '' . But you could give me a chance to get more familiar with it . Have you ever been to a big supermarket and tried to find something you really like or want , looking through shelves and not finding that in the end . Moreover , you could face an aggressive and maybe even drunk shop assistant or manager . These are some points I want to mention about the differences between what the advertisement said and the realities . It was so boring to wait for the show in a noisy and hot theatre . It was the most imperfect evening out I ever experienced . It took quite a long time to adjust to the multi culture in the language institute . Since then we have visited each other often and spent time together on the weekend usually . And sometimes they do something in the library by themselves in the afternoon . I am writing to thank you for your letter confirming that I won the first prize in your competition . But I have finally got around to writing and you 'll see that it 's definitely been worth waiting for as I have some great and unbelievable news to tell you . You will see why I 'm describing it as the most unforgettable one when you read through my letter . She invited me to the rehearsal of a huge concert by a singer who is a well - known pop star as well as my favourite . Despite the fact that I felt exhausted I must admit that it was one of the days I will never forget throughout my whole life But if the politicians or the film stars ask for privacy the media has to respect that . Second , the show started at 20:15 , although I read that it would start at 19:30 ! How has modern technology changed my daily life ? When Thomas Adison invented electric light , it was the greatest invention for people of that century . I mean , almost everyone now has a car , a computer , a mobile phone and even an airplane . Cooking has become faster with the help of the microwave . They become lazy because they know that they can sit on the sofa and change the channels on the TV by pressing a button . This would be a great opportunity for us because we are all interested in clothes , sports and fashion . There is also Hercule Poirot , the famous detective , and he finally solves the mystery . And another question is what are the prices of things like there , which I want to know so that I can make a better budget for my trip . The place where we worked was a football pitch ; we spent 3 days setting up the stage , the equipment , and the lights . I only put the speakers in the right places , or helped the engineers test the lights . But in the breaks and after work , I had a chance to talk with the engineers , and I learnt something about setting up the equipment . Finally , the day of the concert came . After the concert finished successfully , I was happier than ever because the success included my work and that was the most enjoyable moment in my life . According to your advertisement , the stars were DANNY BROOK AND TINA TRUELOVE . I decided to go to see this show because of its stars , but on the day I saw it , a different actor performed . Before using e - mail , I used to write letters and sometimes used the telephone . Secondly the show started late and I had to wait for 45 minutes doing nothing . If you compare the fashion now with that of 100 years ago , you 'll notice that there are incredibly big differences between them . It 's like a joke , but a bit scary . There was no discount at all , which was in contrast with ' Discounts Available ' . Concerning the fashion of the future , I think it depends on people 's personalities and they develop their own styles which suit them the most . As for the colours , I think metallic colours , especially silver , will be the most popular . As different kinds of fabrics will be invented and the clothings will never be just cotton as always been seen . Maybe paper can also be a fabric used to make clothing and for those who like to wear new clothes every day . While I 'm staying there I would like to practise tennis and basketball , as I have been playing both sports all my life , and I have to say that I am very good at both . And that is always what we want . A huge queue that lasts half an hour or more and finishes with you completely freaked out . I 'm writing to you inform you about the disappointing evening I had when I went to your theatre to see the play called " OVER THE RAINBOW " . According to the advertisement you published , there should have been some important differences to the production I saw . Finally , I want to tell you that it is not useful for you and your theatre to cheat your customers . If you do that , there will be no business for you and no satisfaction for them . I look forward to hearing from you Emilio Almodar , 18 years old , University Student , and the career I have chosen is in International Commerce or Market . In addition to this we use the net to communicate with some friends we have in the U.S.A. It 's really amazing . Maybe some people will be naked . Last but not least there are some things I would like to know : What kind of weather do you have in California ? That means that there are more and more big supermarkets and big stores , where no one has time for you to help you or explain things to you such as what kind of bicycle is the best for you , no one to talk to and no one to complain to . That is the most important reason why I only like to go shopping in small stores , where I have peace and quiet and very often nothing to complain about . I am writing in reply to your letter . I am glad to have won the first prize in your competition for two weeks at Camp California in the USA . About the information that you need , I must tell you that I will be able to travel only in July because I have got a new job and I ca n't ask for more than one month of holidays each year and in the other months I will be very busy because my workmates will take holidays in these months . Regarding the accommodation , I would prefer a tent because it is more appropriate to a camp . And regarding the activities , I must choose Photography and Painting because I am not very good at sports and I think I do well at these things . Here I am , writing to you to tell you everything about my wonderful experience at the concert . When the concert started , I was preparing some drinks for the band because after the concert they would be very tired and thirsty . In order to celebrate the 125th anniversary of the city , the County Council organised an open air concert . Although I was very nervous , I knew I could do the job well . I am writing to express my disappointment with the play " over the rainbow " , which is showing at the Circle Theatre . Finally , when I asked about the discounts , an aggressive employee refused to answer me . Definitely , I want my money back as soon as possible . So , I told Pat that Lynne was ugly , fat like a cow , and extremely aggressive . But , well , the unhappiness started with Pat and my revealed secrets . Organise your shows better and do not exaggerate with publicity ! Despite this , I 'm convinced all this progress has caused some damage to the community , not only physically . Finally , everyone should slow down his own life 's rhythm . Second of all , the play was supposed to start at 19:30 , but it started at 20:15 . To finish my " marvellous " evening , I wanted to eat at your restaurant , but it was closed and no reason was given . I was punished , nearly expelled , but Pat did n't receive any punishment . According to your advertisement I could have one but in reality there were no discounts at all . One of the reasons for my visiting your show was Danny Brook 's participation . To make matters worse , the restaurant which was mentioned in your advertisement was closed . So I did n't have such a perfect evening as was promised in your advertisement . In fact there were a lot of mistakes in your advertisement and I would be greatful if you could give me back a part of my money . On the one hand , the Internet is often used for entertainment , but on the other hand it 's also used in different business and education processes . If we are talking about accommodation then accommodation in tents would be great - I love being close to nature . I am not talking about some kind of achievements in those disciplines but they are my big passion Unconnected part of all people 's lives is shopping . As a teenager I must admit that there is nothing more enjoyable than shopping . It 's like , , walking in the clouds , , you feel like you are flying . Choosing gives me such great pleasure because I never have to worry about where I get money for my wishes . It 's hard for me even to imagine a situation when shopping is not enjoyable . Probably it is one of the moments when you want something badly and you ca n't have it . I hope your questions have been answered appropriately . Instead of traditional telecommunications , we can talk by , e - mail or even see each other with the help of a computer network . Among the large number of choices , this unfinished church offers a gorgeous view from the top of its towers , a charming story and one of the most representative examples of Catalonian modernist art . We looked at every hotel in town , trying to give you the best offer . You do not have to wear any special kind of clothes but in my opinion you can wear very casual clothes . Finally , on the last day I suggest you go to the mall where you can enjoy shopping and looking around . The aim of this report is to recommend you to visit the Fuerte de San Diego Museum . I asked some people in town and this was the best place to choose . The Fuerte de Sandiego Museum was built at the time when the Spanish people were trying to take all the lands from Mexico , one of the most important people who was at front of the Fuerte was Hernon Cortez , the first Spanish in have more lands than anyone at that time . The Museum is situated in front of the sea in the centre of Acapulco . This invention has made our lives easier and quicker . Service : It is over 100 years old but it is kept in good condition by the local people , who are proud of this castle . It is a different experience . History : At the castle there are always a few guides , who will show someone around and tell him about the history of the castle ( when it was built , by whom and why ) , which makes everyone enthusiastic . I recommend visiting this castle , because it is interesting , marvellous and something different . Nyremberg is also famous for this castle and the students will have a different experience and a lesson too . Finally , there are a lot of museums in our town . Therefore , I would suggest going to the frogs museum , which is really fascinating . subject : Aboriginal Art Museum . The aim of this report is to describe the biggest building of our town . b ) The building was built in 1999 . Therefore , it is an example of modern architecture . In addition to this , we have chosen the luxury Palace Hotel , which is comfortable enough and in a good location . Cars , boats , motorbikes , airplanes : Who has never used them once ? In this world , where the nations fight to be the best one could n't be different , the airplane became the most important thing in the war . The best way is definitely by air . Thank you for your letter . The bus will pick you up right at your hotel entrance . You do not have to wear special clothes , just wear what you always wear . On the top of the tower it has a huge clock on each side . It was rebuilt in 1948 because of the Second World War , when it had been damaged . The tower is absolutely marvellous . I received your letter and I 'm happy to help you . We booked the Palace Hotel for your group . It 's nice and quiet . When you go out of the hotel turn right and go straight on ; turn right again at the first crossroads . In the big room where we 'll have the party , there 'll be some pictures of our college . You 'll see all the generations who passed through here . The group has been booked into the Palace Hotel , and the best way to get from there to the conference is by tube . The location of the conference is then five minutes by foot . For the party I suggest you wear classic clothes ; maybe something black and not red or pink . I am going to wear classic black trousers and a white jersey - it might be that this information gives you some idea too . I am sorry to hear that Richard Brown is n't well and hope he 'll get better soon . I am more than happy to give you the necessary information . Regarding what you could do in your free afternoon on the day you leave I would suggest you take the students to our History Museum . There is also a gift shop in there , where your boys and girls can buy some souvenirs for their families and friends . More and more people are learning how to drive and choosing to travel by car , because it saves a lot of time compared to travelling by public transport . You do n't have to wait at a bus stop in cold and windy weather for a late bus , or be stuck on a train for an hour due to some track repairs . You can just jump into a car , tune your radio to your favourite station and have a pleasant drive to your destination . I use my car every day everywhere I go and I absolutely love it ! I can listen to the radio and sometimes can listen to Thai music , as I brought some cassettes with me from Thailand . I took a driving - theory test last October and I passed it and I will take a practical driving test very soon . It is called the Palace Hotel , and we hope that it is going to meet your expectations . I strongly recommend you to use public transport in order to get there , because you may find other types of transportation quite expensive . Moreover , you must be aware of the fact that the conference is going to last two hours , until 10:00 pm . After that our college has organised a barbecue night , with traditional local music that you must not miss . I hope that you will find my information helpful . THE HISTORICAL MUSEUM Without any doubt , it is a historical place which provides its visitors with the opportunity to discover different aspects of Greek history during the passing of the centuries . Do n't miss the chance to visit the historical museum , located in the heart of the capital city . The historical museum is simply a symbol , a proof of what the Greeks have always considered as a fundamental principle : their freedom . There are five different floors , each of them presents a different chronological period of Greek history , starting from the period before the birth of Jesus and concluding with the revolution of 1967 . Inside the museum there is a bookshop with a large variety of historical books , maps etc . If you really want to discover what Greek history means , we strongly recommend you to visit the historical museum ! ! ! When you are in the bus station you will catch bus number 37 , which will go to the town centre . Anyway the college is the first road on your right from the town centre . Architecture : It is a typical from this epoch with beautiful drawing on the wall and first kind of writing in the sports centre . They decided to build more schools , especially in Switzerland because the people there were considered clever . The people who will attend the party include many professors , semi - professors and faculties . Firstly , there is the aquarium in the building . I hope when you visit you will be favourite place . Firstly , Palace Hotel has been booked for the group 's accommodation and I spoke with the hotel manager about travelling to the conference . I am writing in reply to your letter about the international student conference . And the best way to get from there to the conference is by coach , as there are about 35 international students , and they are all strangers here . A big Buddha was built in 1997 just next to the temple , and it is the largest outdoor Buddha in the world . It is easy to get there and free admission . On the other hand , Hong Kong is known as a highly commercial city , and you could find something different in Po Lin Temple . To hear the voice of the person you love is a feeling that is hard to describe ; it 's wonderful and so real . You can imagine their face clearly . I had a problem with my best friend once when we kept in touch through e - mail . With reference to the information that you have requested , the hotel that has been booked is the Holiday Inn , in New Port and to get to the University of Wales , which is not far from the hotel , you only need to take a diversion where clearly indicate Carleon and once you are on the main road , all you need to do is to follow the country road which takes you directly to the place . As for the last day , I would suggest you make a visit to the local museum and the ruins of the Castle . In the first you will find a very interesting collection of Roman remains , also you can visit another section which is supposed to be a Roman site . I always had considered myself to be very lucky to be born in the century because of all the amazing human inventions . However , I feel that at the moment there should emerge more groups to control this development because of the industrial pollution that has been created and it seems that it 's very little , what is being done at the moment in relation to our environment . I think that it will be nice for the end - of - conference party if you invite somebody to sing and give the students the time to enjoy themselves and to dance . First of all we need the telephone in our house because it 's important to make a call if you need something or if something happens to your house and nobody is with you . In the past people did n't have electricity and if they wanted , for example , to read or to cook something they used to light a fire . You must have a TV because you can learn about what is happening in the world and you can see some places that you haven't been to . I 'm very glad to be able to help you out with such a situation . At the same time you are enjoying the castle you can take a break to go to the beach and you can look at the castle from the sea . That is also amazing . Yours sincerely , I am writing to answer your letter where you asked for information about the conference and other points in relation to it . With the Internet you can communicate with people in different places of the world at the same moment . I am writing to inform you that I have received a letter from you about helping you to organise an international student conference in my college . For those students who are very interested in shopping , clothes shops , jewellery , stationery , bookshops , fashion and beauty departments and many more are available . For those who want something more exciting and adventurous , you are recommended to visit the Fun Fair and amusement arcade on the top floor of the building . I am writing in connection with your letter about the international student conference . You will never regret about my suggestion . If you need more information let me know . I 've received your letter asking me for further information about the conference that you are going to organise very soon . Here you have a little help for it . First , I 'd like to tell you that the hotel where you are going to stay is " The Palace Hotel " , which is situated at the centre of the town . It is a well - situated town with a lot of museums to visit , especially " the History Museum " , which I visited last year , and I think you will enjoy it . It 's impossible nowadays to imagine a life without that invention how quickly affects our life especially in business . The answer was always the same : " Impossible " . An old woman told me how important the phone was when her only son was abroad studying computers at " Chicago University " . She told me that every night she expected a call from her son , because her was the line of the happiness . However , there was one person who told me he was n't happy at all with the phone , because he used to write a lot , especially at Christmas when he wanted to wish all his friends a very nice Christmas but now everybody phones him , ending a very old tradition . Firstly , about your accommodation , the college which I belong to offers visitors free accommodation with full of facilities This party is unlikely to be that formal , but I recommend you do n't wear jeans and trainers . I 'm sure you 'll enjoy it and maybe become familiar with our culture . These days , we 're surrounded with so many different kinds of products which our ancestors invented . Let us try to appreciate their importance again . When you take the class on computer programming , you will definitely need one and that holds true for the class on politics , because you have to study statistics on your computer to do social research and some analyses . My professor said , ' Go and get familiar with your computer , otherwise you 'll fail ' . I find it amazingly easy to forget the importance of inventions which we usually use without thinking . At the end of the conference there will be a reception at the hotel . Lots of books , papers , lots of things on the tables . Computers have helped to improve health because in this century we can use them in medical operations . Doctors can manage the most extreme operation easily and confidently . No matter where you are , what you do , apparently , you need electricity . For your last day I think it would be interesting to visit our historic and famous city centre . People now had the chance to move to faraway places to spend their leisure time , to relax , or just to see something different than their home . Your group has been booked into the Palace Hotel , which is situated in the city centre , 15 minutes ' walk from where the conference takes place . The group has been booked into a comfortable and well - situated hotel , whose name is the " Palace Hotel " . Naturally we have a lot of interesting things to visit but something that is special is our cathedral . Finally , I am sure you and your group will spend some enjoyable , relaxing days here . It is well known in almost all families , often with a lot of different channels . I can not imagine living without television , it is something that we need for our education , and for getting news and other helpful information . Nowadays everyone has a telephone . Nowadays we are very busy and we do n't have free time to see our friends , but we can call them and talk or chat with them . The telephone is a very important invention if we can use it correctly without using it as a type of entertainment as many people do nowadays . However , if you 're interested in archaeology you should visit the History Museum in Garden Square . In the last forty years people seem to have become completely addicted to using their car . In fact we can go everywhere sitting either with friends or with our family and carrying our luggage and shopping bags . For example , in the past it would had been extremely exhausting to travel on a horse but nowadays we have lots of big and spacious cars and a wide range of options to choose from . On the other hand one of the main advantages is that we can save time and money as cars have long last and allow us to get about quickly . There are eye - max cinema , museums , a gallery . Pusan Castle is located in the South of Pusan . It was built four hundred years ago . With reference to your letter which I received yesterday , I would like to give you some details about the international student conference , also the accommodation and activities that are planned during this week . I hope this letter answers all your questions , if you want to know more about it just give me a call or send me a letter . The aim of this report is to give some information about the new Acapulco resort buildings which were built 10 years ago . They are some of the first buildings that were built with the latest technology and designed by an important Mexican architect . In addition , the resort has an interesting historical background concerning the architecture and the best facilities and activities that you could have in Mexico , for example , it provides different kinds of tours around Mexico . In spite of the disadvantages , I would strongly recommend students and the public to visit the new Acapulco resort buildings and have a great experience learning about the buildings ' history and at the same time travelling around Mexico . For the end - of - conference party we have booked one of the halls of the hotel and they will provide us with live music and catering . Finally , to fill your free afternoon I would definitely recommend visiting the cathedral and having a walk around the old part of the city . If you want , it will be my pleasure to show you the area . Chairs are not only part of the furniture , they are also objects of decoration and you can even find some in museums where they are art objects . The world is packed with so many types of chairs , from the common wooden ones to the most sophisticated and comfortable others finding a basic range of prices . From my point of view the chair is without a doubt the most useful gadget ever invented . Some people use them in their work , others wish to sit in one by the end of the day and for some other people a wheelchair represents the possibility of movement . I phoned the tourist information office last week and I got some information about the accommodation for the students . As requested , the aim of this report is to assess the suitability for a group of American students of the visit to the Etruscan Museum . It contains lots of archaeological Etruscans founded and some remains from the Estruscans ' necropolis . Also there are some free headphones that explain the history of the museum . Although the entrance fee is quite expensive for a group of students , I strongly recommend it for their excursion and because of their interests . In my opinion the easiest way to get there from the conference would be by taking the Picadelly line . Basically , during three hours in the afternoon nobody is able to visit all of the interesting places in London . Are you always happy when your telephone rings ? Since I have been travelling around the world , I would have imagined being in touch with my family or friends without the Internet or my mobile phone . This is an International student party , so I suggest you wear traditional costume . You can inform all the students that they can take some traditional food to the party . It includes a library , II suit , academic rooms , a GYM Club and a restaurant . There is a very big library . Just in the same building , you can find a restaurant . They can also talk with British students to communicate study experience . The group has been booked into the " Maria Luisa " Hotel , which is situated in the centre of Wimbledon called Wimbledon Village . The purpose of this report is to give a brief description of the Academy of Art in St Petersburg . This building is situated on the magnificent bank of the Niva River with an excellent view of the Hermitage Museum . The building was built by a very famous Russian architect and is a marvellous example of Russian classic architecture of the XVIII century . In the Academy of Art you can find the oldest art library , with a wide range of books , and the Museum of Russian Art , with a huge collection of paintings , sculpture and architectural projects from the early eighteenth to late twentieth centuries . For example , I work for a bank , and we need to have weekly meetings with our Director living 800 kilometres away , and he does n't have to come here , we just have a phone conference where everybody can talk , and that is it ! Finally , on the last day you have three hours before you catch the plane so we suggest you go to the shopping centre and buy something for your special person or go to the museum because this museum is the biggest in the world now . It is up to you . for Example , THAILAND , the United States of America , INDONESIA and CANADA . Therefore I am thinking of selling my car , which has changed my life over the last 10 years , which has given me a kind of freedom , which has gone with me to all sorts of fantastic places , and changed my life for a new life : without a car . Finally we enjoy a disco party so you should wear a suitable dress . So he climbed on the ladder up to the window and he opened the door but policemen came there " what happened ? " Jane explained that situation and they understood her . I am writing to give you the information that you asked me for . From there you can get a taxi , catch the number seven and eleven buses , which both take you very close to the conference centre , and also you can go by underground to get there . Then , after the Conference , there will be a formal party at the group 's hotel , which starts at 9:00 pm and finishes at 12:00 midnight . Yours sincerely Hampton Court Palace is located in Hampton Court . For the last day , we have arranged a small party in the hotel . Then we all set off to go on a sightseeing tour of Bromley town centre for about two hours before you leave for the airport . Bromley town centre is the most beautiful shopping centre in South East London . We definitely need light to keep on . I dare say , without light , our life would go into a dark , dark hell . I am writing to you to answer your question about the conference in London . Thank you for your letter . I would like to inform you that the group you belong to has been booked into the Palace Hotel in the centre of London from the 24th of June until the 25th of June . Ladies should wear an evening dress and gentlemen a dark suit . 1 ) " Fontana di Trevi " sited in Trevis Square in the centre of Rome . 1 ) First of all , they are located in the centre of Rome so they can take a bus to get to them move and around the city . Regarding your last question I can suggest visiting the Royal Castle . Actually it is a whole complex , the Old and the New Castle , the cathedral and the very interesting underground part with its amazing crypts . And if you climb to the top of the main tower - the keep - you will see unforgettable views of a white town . You will find there an amazing collection of old weapons , armour and , we are especially proud of it , the great collection of swords . After that I am sure you will be happy to find a few restaurants located at the New Castle . I am sure that should be enough for a one - day trip . Please note that alcoholic drinks are only sold until 11 pm . Coming back to ideas and Suggestions , I 've promised to give you a free afternoon before you catch your plane . I would advise you to visit our zoo or to go for a picnic in a park before you go to the party . Such simple and everyday things like a telephone , a car , a computer only seem to be normal and everyday for us as we use them every day . These inventions have improved our life a lot since they appeared , but not everyone believes it is really so . First of all they talk about the environmental pollution which cars and other vehicles create , overspending the electricity using electric equipment and some other problems . I think the telephone is the most important thing in many people 's lives as it allows you to get in touch with anyone and it does n't matter where you are ( I am talking about mobile phones , which a majority now have through choice ) . I think it would n't be possible for us to survive without electric light . Because of shipbuilding developments people were able to make all those geographical discoveries , and automobile transport is an undeniable necessity in our life . Because of everything I have said I am more likely to think that the benefits of people 's inventions are much greater than all their disadvantages . If you have any further questions , please do not hesitate to contact me . SUBJECT : Recommendations for a place to visit The place I would like to recommend is the seventeenth - century Royal Palace . The Old Town is the best place for an afternoon stroll , with a great deal of restaurants , cafes and street performers . There are a number of hotels or youth hostels to stay overnight , if necessary . I am pleased to provide the information you need for the group . The hotel I booked is the Palace Hotel which is in the centre of London just two blocks from Victoria station . I think it is very convenient for the group . You know the Victoria area , it is easy to travel from there to the rest of the city . About the hotel , it is clean , and provides a good service . The rooms are doubles and each has its own bathroom and for the number of students we are getting good value . And the best way to get to the College for the conference is to walk to Victoria station , get the tram to Glouster Road and after 3 blocks on the left - hand side you will find the College . However I am going to make a plan for each student with all of the details and the address . About the party at the end of conference , we are organising it in the same hotel which has a nice salon . It will be good for your group because you do n't need to move to another place . It is not a formal party so I think it is fine to wear something not too formal . I want to suggestions for the last day . You and your group could maybe go to Green Park and visit the Queen 's house and Parliament , this area is very nice and the group would engoin after the conference to get some fresh air . Another option could be the new Tell Gallery . I have never been there but it could be a good excuse to visit it with you . I have been hearing about the Ave they have in the exhibition , it is interesting . I hope you found this letter useful and if you have any questions , let me know . I am looking forward to seeing you soon . Yours sincerely The computer was invented 30 years or more ago and started processing information with a big card which was perforated and made a small hole and each hole meant something like a code . The machine that was used for reading this card was very big , you used to need a room for the computer . I remember when I had the first lesson at the University and the teacher took us to the Computer Centre and I saw these machines , all my colleagues and I were laughing was very difficult to imagine how you can work with this kind of computer . These days the computer is part of your life , you use it all the time . Sometimes you do personal and other times it is just the things you need to do like go to the bank , use transport , go shopping etc . It is a machine that makes life easy and ibendow you can carry it everywhere . It is amazing the way as the fas the computer changes , the programs are faster and more useful and practical . But the computer has a bad side too . I whand mean we life each day we depend more and more on it . So I feel scared when I think about the consequences if some of the viruses or mad people misuse as happens these days with sex or other . I work with children and the computer helps me in my job but affects it too . So I hope the world reaches agreement about this and computer engineers have to prevent these problems because something good could be something very dangerous . Both of them are as convenient as getting there . End of all , in my opinion we could go to the centre of the town because there are many places to have a look at and go shopping . So that 's why they have invented the telephone . Take the bus in the direction of the centre of town . With the computer , we can write a letter , correct a word or change the name without writing the whole letter again . We save the letter and in three weeks we could send it to another person . If we had n't any , we would have to write all the transactions on paper . I would like to inform you that Centeral Red Lion Hotel has been booked for the accommodation of the group and it will be quite easy to get everywhere on foot from the hotel during your stay . There is no need to bother about clothes . Before you leave England , I suggest you visit the canals and small villages around Basingstoke . You could have the opportunity to see the country life . Would n't it be unbearable and painful ? Certainly it would be just like mine . Because I live in a rural area , far from any village , town , or city centre . But also I 'm aware that time flies for me . I must do whatever I want before it is too late . And I have to confess the invention of the car was the most useful invention for humanity . As you need more information , I will answer all your questions with pleasure . It is one of the most comfortable hotels in our city and situated only half a mile from the main building of our college , so it is very simple to get from there to the conference by foot . Finally , you can spend an afternoon on the last day visiting local historic places ( castles built in the 13th century ) or art galleries , as well as the beautiful Bodnant Garden . I think that one of the most important inventions affecting our life is the telephone . I have just received the letter from you and I 'm writing to you as soon as possible . The best way to get from there to the conference is by coach , which I have arranged for you . Then we can have a rest in the cafe and talk before your flight home . I think I have given you all the important information . Nowadays motorization is one of the most important inventions . When you look around everybody has a car or motorcycle . No matter that people started worried more about pollution in the world . I love motorcycles and I do n't think I could live without them . I have ridden a motorcycle since I was 16 years old . We rode motorcycles for a few days before we finally got to our meeting points . I really enjoy riding my motorcycle . When I ride it is only me and my motorcycle . I am really grateful to the people who invented the first motorcycle in the world . To sum up , I can say that the greatest ever invention is the invention of computers , which has affected both individuals and society as a whole . Personally I recommend the Dickens tour because it is a good length walk and very historical . The bus leaves at 8 a.m. from the front entrance of the hotel . The end - of - conference party is in a tent and in the grounds . It will be a surprise ! On the last afternoon you could go on a city tour , visit the Museum of Fine Arts , or enjoy the beautiful flower garden next to the public park . The museum is near the city centre and is accessible by bus or walking . It is a very cosy building that is on the same avenue as the conference building , approximately one mile away . The increasing number of cars related and infrastructure is now creating problems . A lot of roads and motorways are overcrowded , and environmental problems are more and more related to the intensive use of cars and lorries . People and governments are concerned about how to limit the effects of cars on the environment without affecting their mobility . If you are free I will show you around our college . The countless fascinating things will definitely take you the whole day to appreciate . I love baking cakes , cookies and breads . However , there is something about which it is still believed that it was an extremely important invention . In my opinion , the reason why electricity is such an important invention is that most machines , appliances and equipment which are used in modern times can only be operated with electricity , which makes people not do too much physical labour . Dear Mrs. Maria Smith , I hope that our friend Richard Brown does n't have any serious illnesses . This party is for the students so the clothes wo n't be so formal . We can choose between two options for spending our free time . I do n't like thinking of my house or my life without all these facilities . Now , you just need to think that you would do or what would happen in a city , with a car , aeroplanes , shops , all these things without lights . It is supposed to be from 7 pm to 11 pm . I hope I have given you enough information and if you still have some questions , please do not hesitate to contact us . Lots of great inventions have been invented in order to help people live comfortably . Because there are a lot of beautiful trees and you can see the sea . By the way , the end - of - conference party is a kind of farewell party . The first part , the chairman and a few guests will give a speech and the second part , the participants will evaluate themselves , and the last part will consist of dinner and drinks . For example : electricity , the computer , telephone , boat , and car ( wheel ) , etc . It has absolutely reduced women 's housework time . She appears occasionally and opens every window in the castle . I would suggest they wear formal clothing , such as tie , trousers and blazer . The building is called the Chiang Kei - shek Memorial Hall . The Memorial Hall is surrounded by large playgrounds . As you go into the main Hall , you will see a huge statue of Chiang Kei - shek . This is because the building is the remembrance of how well Chiang did in History . Apart from the main Hall , there are also lots of other galleries . In these galleries there are Historical paintings and antique furniture which Chiang used . there are also restaurants and modern galleries . When you are tired after looking around you might want to buy drinks or something to eat , or if you are fed up with historical things , you might as well just pop into the modern gallery to see things which are more modern . Finally , if you want to visit this building I would recommend you stay at a hotel not far from the memorial Hall called the Hyatt Hotel . OLYMPIC MUSEUM The Olympic Museum is situated near the lake and offers , for the tourist , an unbelievable view of the mountains and the lake . I hope you will enjoy the visit and I wish you a nice holiday in Yverdon . It is a modern hotel , near our college , and it is also very convenient for the airport . You can take either bus or taxies . The number 101 bus leaves from the airport , then you can get off at the " city college " stop . Nowadays people have become used to watching television programmes every day . Someone is talking , laughing , crying on there , so join them . You will feel much better than you would just by yourself . Some TV programmes are enjoyable ! In conclusion , TV has both advantages and disadvantages , but on the whole the advantages are greater than the disadvantages . On the positive side , you and the group will be able to learn more about Welsh artworks which are presented on the wall , on the door and some furniture . And some old toilets might look awful . So , I 'm writing to reply to give all the information you asked for . The best way to get from the hotel to the conference is using the tube because it takes only 20 minutes . And your speech would be better for the end of conference party . Some people might say electricity is more important than any other thing . For instance , when I want to contact my friend , it 's quite helpful to use e - mail . However , the computer is worth using in our life until a more convenient machine is invented . It also holds an international exhibition all year round . In my early childhood my mother said to me that when she was a little girl there was only one telephone in the building where she lived . It was in her parents ' apartment . It is not an easy decision how to react now . thank you for your letter , which arrived yesterday . I hope to give you all the information you need and , please , if you want more information or something is not clear , please do n't hesitate to contact me again . It 's a very comfortable hotel where you can find everything you need . From there to the conference you have to take the number 50 bus , which stops near the hotel and arrives in the town centre . For this conference I suggest wearing something very comfortable but elegant . The organisation wants all the men to wear a jacket , but a tie is not necessary . If I find something special you will be able to visit in three hours I will call you . It is the most important church in this area because of its architecture . It is something very special . Its ceiling is made from many small pieces of wood . Its windows with many colours . It is fantastic . I look forward to hearing from you I hope that all the information you need will be provided satisfactorily . Secondly the best way to go from the hotel to the conference centre is to use one of the shuttle buses we provide at this event . Finally , concerning your free afternoon , there are plenty of activities , but I suggest you visit the Caldea centre , which is a very special bath centre . If you need further information do not hesitate to contact us . There are plenty of churches , cathedrals , and old cottages . The churches and the cathedral are very interesting because of their different Romanic styles . Finally if none of my suggestions fit with your expectations , let me know more about what kind of buildings you are interested in and I 'll do my best to find something more suitable . To finish , if you have spare time , you could walk in the centre of Poitiers which is very beautiful . In the Pompidou centre , there are different exhibitions on different themes . So if you visit Paris , the Pompidou centre is a very interesting building to visit , even if in Paris there are many other buildings . It is situated in the centre of our town and it takes five minutes to get to the college , where the conference is going to be held . I think that the best choice for you is to take the 234 bus . Also there is a very good shopping centre next to the museum . To conclude I would like to say that the governments of all developed countries would n't have been so concerned about the so - called " problem 2000 " if the computer had not been so important for modern society . First , I would like to congratulate you on your new responsibility , because of Mr Brown 's illness . There , I saw the exhibitions and admired the building itself . If you go down a few steps , you will discover the cellar . When you go uphill , you have to bend your back . They paid much attention to their faces and spent lots of money to shop . I started to notice the ways of foreign clothing and hair styles these past days by watching TV programs , such as Friends , Scrubs , etc . I like you give me any comments and opinions too . It was like water and his bottom was red . Everyday , there are new things to try . It 's a kind of Tai - wan style massage . After that , I went to a fitness club which has bedrock bathing . It 's nearly 12 pm . Elections will be held on August 30th . This time they may lose administration . It is made of sponge : ) It is cute . I 'm learning English , but it 's really difficult for me ! I was relieved to hear the doctor 's diagnosis , but I 'm still worried . Innovative and original ideas are good , but if you can not find them , you should know that most of research work is just refinement of other 's work . I was somewhat puzzled what to say . So , after he was made consul by the Romans , he went to Africa , where he fought against Yugurta , who was king of Numidia . cuz I don have a school until then ! ! That 's why I 'm very excited to teach students English ! ! Those are such things as playing sports , reading books , listening to music , taking walks . My favorite hobby is talking with my friends , because I think it is the best time to be with my friends . The other day , I met one of my classmate from high school at a station , for the first time in fifteen years . Although I know a private school student like me in Singapore is stictly prohibit to go to have a job . Today , I went to the karaoke box with my son and neighbors . I slept all day until I had to work . Fortunately , I am a hero of justice . I think that the war should never of happened . I do n't understand why so many people are into this stuff , I decided to arrange some nice dates for my friends by following my own style . Without audiences , love judges , parents , just a friendly and private atmosphere , which allows them to be themselves and enjoy the moment . Going abroad is my dream , so I really cherish this opportunity . It is a good chance to strengthen my knowledge , broaden my horizon , enjoy foreign customs , and also realize my dream . I just listened to his bandBoyzone 's brilliant song `` No Matter What `` on the way back home . Next Wednesday , the economics seminar softball match will take place . When someone asks me , `` What 's your favorite thing ? `` Oh , how wonderful the college life is ! Once you get into the society , your life won ' 't be as simple as that in college . Steven taught me today . I attended Japanese tea ceremony lessons one day a week for three years , before I came here to Japan . I liked to learn how to serve green tea . I made some friends at the lesson . After I made it , I drank the green tea . In the grammar exercises , which I did for hours ( ? ) I could n't correct any sentences ( ? ) . Because it is very important ; I 'll never get a good job without it , and I 'll never understand half of the beautiful sites in the Internet ! And I like to draw in Photoshop and Illustrator , and many other things ! He is crawling everywhere as his instinct tells . I put my fingers into his little mouth , and pull it out . My very first diary entry on Lang - 8 The first half of the game was a draw and the second half of the game was a draw . Finally , Japan won the game , so `` Nadeshiko Japan `` is top team in the world ! ! I was excited , so I could n't sleep ; ) But I do n't regret watching soccer . This is the most important thing to them but , my opinion is different . Today , I went to university . I wanted to more study . But , I 'm going to do it now , because my laptop is supposed to get repaired , and in a couple of hours , the mechanic is going to be here to pick it up . Yesterday was a busy day , but I was very happy . We have many foreigners as our clients and I really could try my strength in English ) It ` s so interesting to talk with the British , Germans , Italians , Danes , Finns , Croats . . . He has recently been accused of punching a man while drunk . A sumo champion , called a yokozuna , is required to be strong not only physically , but also spiritually . During the last summer vacation , I traveled around Southeast Asia ; Malaysia ( Malacca and Kuala Lumpur ) , Cambodia ( Siem Reap ) , and Myanmar ( Bagan ) . He is now in Israel . May it be sunny tomorrow . . . May it be sunny tomorrow . . . It is said that you can be healthy and happy or your wish will come true if you climb this mountain . My junior high school friends and I are very interested in this legend . It was the kindergarten level ~ ~ . . Please tell me : D Yesterday , I went to Home Depot to buy a bag of soil and a planter . The roses grew and their flowerpots are too small for them . I think I caught a cold : - ( Epitome of Cool But the stuation is being recovered by help not only from other Japanese but also from countries all over the world . We walked around the garden , we saw the animals and differents trees ; we had a small lunch He has a funny and interesting dance . Well , _ I 'm into Ray Charles 's song _ `` Hit the Road Jack `` _ recently . My grammar is very poor , and my poor grammar always drives my SAT grammar teacher crazy . Luckily , I have some Korean friends so I worked on it while asking my friends whether the translation is correct or not . this is just an excuse . It was a margherita pizza . Strange Japanese customs ? So , whenever I pass by , I am sure they must be new employees . It is very convenient that its cordless . By the way , do you know ' Lucky Taxi ' ? Today 's class is the same class which I was n't able to teach them because of CHOTA MAJI . When I was in Korea , if we skipped the class because of other affairs , they seemed very happy . However , in here , my students do n't want to skip the class . And I fell in love with the library at our school ! ! ! According to the book , taking a nap is not good for digestion . If we get very sleepy , we should go for a walk to forget about our sleepiness . Actually , it requires lifting up their knees high enough to make the Kinect sensor to sense their move , so he was correct and had fastest speed in the race . I went to balloon lecturer as an assistant at `` OMOCHA OUKOKU `` . It was difficult to lecture to small children . My mother committed suicide when I was only one year old , and since my father worked far far away in a town , I was brought up by my Grandma . I went to the gym in Neyagawa city so that I can strengthen my muscles . And people seem as if they were constipated ( this word is funny because in Spanish `` constipado `` is `` cold `` , and it 's easy to mistake the meaning xD ) . But I suppose everybody has a reason why they want to study a second language . I could come into contact with a lot of music , from Billboard to Classics , because of it . But there were US Armed Forces in Korea , and they radio broadcast their Billboard songs . I replied , `` Yes I have one , but in Russian `` . So I think it 's time to create an Englishversion . I am a college student . Today is a special day . I did n't know whether he 's worried about it or is looking forward to it , but I hope that it will be a special and wonderful experience for him . Many people visit there . In order to drink , I finished my work early . I do n't know the reason on why I was so annoyed about everything . I got out of temper to my friends as much as I felt sorry for her . I do n't think students scores should be the standard for an establishment . For example , varieties of teaching methods and materials should be involved in the criterion for assessing the teachers . The result of my check - up was also anemia . I am really looking forward to it . I will do it on monday for sure : ) I have become the director of a company now . Interdisciplinary , practical studies , a wide choice of courses , experimental spirit ( ? ) and open - mindedness are reasons why I am so enthusiastic about RU . My favourite subjects are maths and physics , so probably I will have a problem with connecting them with traveling or something like that . But recently I heard about charity organizations which need engineers and it could be a nice idea . but I feel tired because of difference temperature between Singapore and Japan . Actually , I love cats ! If I can be a cat , I will go out for a walk the whole day , sleep until I feel good , be along with people when I lonely . I noticed that a crow dropped the walnut from his beak to the ground in order to break the shell . He played the contra bass and the guitar . Since summer vacation started , I always stayed up to play computer games and even until AM13 : 00 . And we planted trees and cleaned the garden . Today I bought a book by Morimi Tomihiko at the bookstore in my college , where all the college students and teachers can buy books at a five percent discount off the regular price . Furthermore , his stories are very enjoyable . The sandwich costs 280yen . I ate that one first . I probably ca n't get raw ham at ordinary stores . Now I 'm working in my company and I feel a little tired . Maybe I enjoyed too much during this holiday , so I ca n't acclimatize myself to different place or people , etc . English pronunciation Other countries , Germany for example , most of their employees can speak English rather than Japanese . For Americans , Japanese `` Futon `` is a mysterious sound because shape of mouse for `` Fu `` is different between American English and Japanese . it was rainy today . it was very difficult ! ! ! ! Japanese marriage system Brides and grooms simply go to city offices and turn in the marriage application form , which has the brides ' , the grooms ' , and twowitnesses ' signatures . No picture IDs are required to turn in the marriage application form . Somebody else can go there instead of the couple . Because of the system , sometimes problems arise . When a couple goes to the city office to turn in their marriage form , they sometimes find out that one of them ( or both of them ) is already married to someone else . Until he created the first APPLE computer , all the effects what he had done before came back . Hot coffee , cigarettes and a warm blanket - this is what I need today . So I bought two , one for my feet and the other for my neck and shoulders . In korea foreign missionaries have been succssefully brainwashing people . just one reason I did n't believe him . This is my first post in English . I know this SNS , using learning foreign language , `` iKnow `` ( http ; / / www . iknow . co . jp ) . Good Dinner at Omiya Anyway , someday , I want to get lasik if it can improve my eyesight causing no side effects . A single house This is the first time I write a diary in English . What changes happened ? Fortunately my husband does n't interfere with me . He joked `` Please buy meat for visiting , esp chicken for dak galbi . . . `` It reminds me of the Bable story , God separates people with different languages , and people are never united as one any more because of the languages , then the world is full of suspicion and frustration . By the way , a Typhoon is coming soon and maybe a lot of students are thinking , `` whoa I can rest a day , hopefully the typhoon stay in Taiwan `` . After I entered elementary school , my parents switched from running a supermarket to owning a fried chicken restaurant . Now they run a grilled meat restaurant . I would like to write a letter to my English teacher , so I want you to correct my English . I drove alone , I 'm not afraid of driving anymore . I can hardly wait for spring vacation . And I have learned another important skill , that is to write down everything that you do n't know , or you can not remember clearly , especially things which are very important to your job . yesterday ? Typhoon came , so the sky was cloudy all day , and temperature did not become hotter . I still belongs to my company in Japan . I can do Japanese company 's business in NY . If you have a more suitable English name , please tell me ~ I felt sad and my sister got out of the house ! I will back to school soon , my school is in another province ! My next time back home will in many month later , I really do n't want to back to school with a broken - heart , but I can do nothing ! I 'm writing my diary for the second time because wrong . ( ? ? ? ) I am writing the diary and doing a lot of things I check my e - mail and read hi5 . My friends send comments to me . Hi 5 is like facebook . It is very popular in thailand and I chatted with my university friend . We talked about work . She is not working at the moment because I go to out side of bangkok . ( ? ? ? ) she lives with her family . I know her because she went to bangkok to study . I plan to party this sunday at my closest friend 's brithday . We played a computer game . The newspaper and the weather forecast inform us when the cherry blossoms come out . I was so humiliated by my accent during my childhood that I tried to modify it . Because it was gifted by my ancestors . listening nemo Nemo : Daddy help me Nemo 's friend ? Daddy : I 've got to find my son Nemo ! but my classes ended late . We talked a lot and had a blast , and it was interesting that one of the participants talked his experiences when he 'd been in Germany . Life will be devided into each part that let him feel safe when he separate people into various groups . Yesterday , I rode from the main campus to the medical college . I usually study at a certain cafe & restrant which is called Saizeria . I am a junior student majoring in Japanese . After graduating from high school in June , 2008 , I have studied Japanese for nearly two years since August , 2008 . I run for my health so I never over do . But I run at least 3 kilometers when I feel something bad . one class is ninety minutes , so I got exhausted . I take as many classes as possible , because I have a voracious appetite for studying ! So we had a lesson with another teacher who is Ethiopian during his holiday . It ended with an unpleasant atmosphere . My friend told me that she wanted to give me a surprise . I am planning to stay in Hong Kong for a month . And I 've searched information about where to stay ( there ) . I could n't get back home before 9 pm for awhile and had to rely on baby sitter everyday . But I ca n't decide what to spend it on . I want to buy an ipod music player . I want to take a flower essence seminar . A new semester ! Tomorrow a new semester will begin . And I watched on TV that US journalists have been detained in North Korea . Journalists that go to dangerous places are so crazy , even though there is possibility of dying . So , I will write what I 'm going to say . When I arrived at Copley , I 'd never seen such a tremendous amount of people there . I hope that the Red Sox will be the winner of the World Series , so then I 'll have a chance to watch a parade again ! It 's a love story , during the war , between a hurted prostitute and a soldier who has to fight . and I took out some economic books from the library . Tommorow I will have to study English and economics . I took part in a job interview this morning , but after the HR kept asking me questions for about 30 minutes , she told me maybe this position does n't fit for me because I do n't have the SQL skill . I 'm looking forward and waiting for what the Apple will bring I came here to learn English . I laughed and said : You 're a hairy , obese idiot ! But I want to continue studying English every day . Happy day ! So I want to watch movies but it ` s too expensive for me . . . Thus , in the movie , Coluche travels around the world , and experiences some adventures in various countries such as Morocco , The United - States ( Harlem ) , China and so on . . . I think it may be interesting to listen to the French accent and the ( maybe exaggerated ) view of Harlem by the French at the time . I also have to shovel snow around my house , car parks and office . . . In addition to this , traffic is so crowded . . . I just started this SNS . People who have already graduated can also take this exam , so that makes this exam more competitive . But actually , people may have the ability to pass it , but they still ca n't communicate well in English . I passed it half a year ago , but writing passages are still really hard . . . Dakdori was just one the recipes included in the book under the chicken menu . I surf the internet with an air - conditioner and a fan turned on . After surfing the web I watch TV with the desk - top still on and use a stove and microwave to have a meal . All I could do was drink beer going stale in the refrigerator . I can understand its meaning , but is it awkward for the English reader or listener ? English Again ! After an English lecture , I tell myself over and over again : I must learn English now ! I have to admit age is a becoming more and more a sensitive issue as I get older and older , and the older I get , the more responsibility comes along and the more mature you should behave . Well , I think I wish I could welcome the moment at home as usual , but I failed for the last couple of days which flashed through so quickly in a northern city I have never been to before . Travelling makes the time elapse so quickly that I have hardly any time to digest the change of age satisfactorily , Even though I have been able to come back home this morning , I still ca n't take my time and am actually struggling to keep awake to digest it as much as I can , because I hardly slept yesterday . Moreover , I still did n't like it when I bought a can of spaghetti ( canned spaghetti ) and had it because it was like jelly , and was essentially just a can of meat sauce . Why is n't al dente that common in this European country whose people are the most omnivorous ? I want to write my profile first . And I like Lolita fashion ! This movie is talking about two different American girls who spent their summer in Barcelona , where they have a romantic , unforgettable adventure . Meanwhile , they are still learning how to face some issues in their lives . This movie 's spirit seems give us the idea that everything is possible , especially relating to love . When it comes to the subject of love , some people tend to be realistic , some people are always expecting something very different . But I think most people in our country , we do n't have enough courage to change the situation , or sometimes we just carry more moral responsibility . The fireworks were the most beautiful which I had watched ever . `` earthquakes , thunder , fires , fathers `` I 'm planning to go to Sapporo ( the capital of Hokkaido , Japan ) this weekend and I feel uneasy about going through the pass because it 's very dangerous to drive on icy roads . Thank you for reading and for your corrections . Is this Peter Pan syndrome ? I think the definition of an adult is different throughout the world . But maybe there are many countries that define `` adult `` at an earlier age . Basically , it is said Japanese people are not good at speaking English . We begin to learn it in junior high scool . My name is oanhchau . I 'm from Vietnam . My language is vietnamese . Until the start of this year , he was my classmate , and he suggested this website to me . In my point of view , it 's a complicate website , but I think if I practice , I can use so goos this site , and finally reach my objective . I 'll appreciate thosewho correct my text , and thanksssss ( a lot of `` S `` it 's a internet form or expression that we use a lot on MSN , here in Brasil ) I especially like watching European soccer ! I was hoping this time she could win a medal . . That made me think that I should support her ever though I am not sure if she will continue with mogul . Anywany , I think it 's going to be one exciting Olympic . I did n't prepare for it entirely . I wish that place was a non - smoking place and That mechanism is , When I access `` URL `` , proxy response `` URL `` . normally , Ajax can not cross site . My friend is a teacher at a junior college . I thought about it a little bit , and I answered , because of the school opening ceremony I am going to go to the library and study hard Today is a holiday . Because they are so beautiful with beautiful music . I 'm a Japanese . It 's very cute and I feel relaxed . And today after working I had dinner with my acquaintance , a person who is working in the famous consulting company accenture . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittent laughing sounds made by a female ( 1 only ? ) , and monotonous , enthusiastic talks by a male ( 1 only ? ) , which might have gave you an impression ; the atmosphere was not too bad , or too good either . I bought a package of muesli , mixed it with yogurt and put it in my refrigerator at night before going to bed . Instead , I 've watched company harassment like `` you 're incompetent ! `` or `` we ca n't afford to pay you `` in order to force them into early retirement Luckily I have a job and a dependable income . My cute `` My Little Pony `` should not connected to such a nasty word . lololol No , they should not . . . . . . . . . My coworkers all work until late at night . One of my friends on skype told me that all you have to do is concentrate on the exam and relax . Well , studying business English is bloody boring . I do n't think that much business English is needed to communicate with foreign people . When I speak English , although it is n't in a perfect sentence , a native speaker can usually understand what I mean . I had dinner the day before but I ate two more hamburgers late at night after dinner I was hungry soon after eating . . . I found Mr . hou8592984 's blog . In order to continute to write English , I should decide a theme . Theme : Depression By writing his depression journal , I would like depressive patients and their families to know about this disease / illness and surely believe in his or her recovery . I did not drink alcohol in a couple of days . We also visited a soy sauce museum . Every term we study Chinese , Math , English , Physics , Chemistry , Biology , History , Politics , Geography , Music , Art , and Physical education , 13 in all . That is scary , do n't you think so ? ? Can anyone tell me the way to improve my conversational skills ? My student visa was sent to my house from the American embassy this morning . When I got there , I was so surprised that there was a lot of people waiting outside the embassy . More than 150 people were there . Upon entering the house , a man checked me , and my bag with an X - ray machine . I needed to have an interview , and then have my fingerprints taken . The style of all the furnishings in the building were American . Next , I should remember lots of Eglish sentences . I really want her to come back and release new songs someday . I think everyone hastheirown favorite song that makes them better . I like both Japanese songs called J - pop and foreign music . But Japanese music is more comfortable for me , maybe because it 's easy to understand the meaning of lyrics . Speaking of lyrics in English songs , it 's very hard to lisiten and understand compared to in aconversation . . . In the future hopefully my English will be better and I will be able to understand lyrics . I have been studying English for eighteen years , starting from grade school , continuing at the institute , to now - by myself . But I have not had much success with my studies . For example , I can understand only a very small part of radio and tv broadcasts , or dialogs in movie pictures . My Summer holiday finally started on the 5th . But I have got a lot of plans this Summer : D hope it 's going to be a great Summer Vacation ! The happiness on their faces means I did well . The weather is bad . It is wast to have a cold . Long , long ago , there were a couple of lovers . There were just only two students in the classroom . `` Otlob `` is a delivery - service site address in Egypt . I think health is the most important thing for life . To celebrate I called my friends and we decided to go to dancing at a club that has Caribbean styles of dancing ( salsa , merengue , bachata ) . As soon as we entered , my every thought was addressed to the music . So after I removed my coat quickly , my body began connecting with the track playing . Between all the Caribbean dances , the one which I prefer is salsa . That is because it expresses passion , a characteristic that is part of me . In fact I 'm a scorpion ^ ^ . A Little Hesitation and Nervousness My group 's leader asked me to prepare a race speech and a show of accomplishments because we have a vacant position for secretary of the youth league committee in the group . Every time I meet a foreigner interested in learning Spanish and also interested in learning the language in a spanish speaking country , their natural choice was Spain . Now what can I do for people in MIYAGI ? ? Its like a ricecake and is made of potato , tapioca flour , cheese , mayonnaise . On June 9 , I joined to Google Developer 's Day . It fascinated me and I began to develop software for the platform . Preparing for Zombi Walk part2 . I practiced making a Zombi face . Please look at these pictures . I think I 'm a good menacing Zombi . I was surprised , and rushed into the bath room to wash my hand . The prettiest sister who Today I had plenty of time in the afternoon so I took a walk around my hometown . I should avoid to take a bath . . . It will be great if I make friends with English and Japanese speakers . She is Korean , while I 'm Japanese . . . All animals I saw in Mongolia seemed comfortable . . I believe he was into it all along . But as I graduate from high school and go to a university , I 'll begin to be busy in different places , with different people and in different ways . Elaborate pratical plans can give you a hand when you face difficulties or feel depressed and help you get rid of unexpected It is only once a month and so it is difficult to improve with each other . Jack Bauer always says `` What 's going on ! ! ! `` : ) . I would like to listen to more English through e - dramas and learn more about daily conversation and debate . I know that I will lose my way if this situation continues . Nevertheless , if we dare take a closer look at creativity , ( and what is learning if not a fascinating mixture of experimenting , forming , shaping , producing and the like ? ) , then we have to admit that , in the long run , success is not a bed of roses , albeit highly rewarded in the end . Short stay in Senegal If you have time , please give me a little advice . It makeS me sentimEntal and moody . Tonight , I went to a curry restaurant with my friend ( s ) . Do you have a favourite Japanese food ? I recommend the Japanese food ' Tempura ' : ) At the moment , my favorite song of her 's is `` If I were a boy `` It 's raining It has rained for three days , and the temperature drops to 18 degrees centigrade . It 's cool now . I got to know this web site several days ago , and I have got through some entries written by others . I will spend some time to correct Chinese learner 's entries . She was mean , she lied to her friends , and she said her mother was dead cause she was embarrassed of her humble roots . My family came to my house and we cooked carne asada . We were all watching Teresa 's last chapter together , and were hoping her to end up homeless and lonely ( like in the original version ) , but to our surprise she did n't . What was the message , be a tramp and you 'll succeed ? Polaroid faced financial crisis and stopped selling instant film and instant cameras . I regretted that Poraloid stopped selling their photography products and think if I were a rich man , I would buy the Polaroid company and continue to sell their products . I went to the Shinagawa Station from Shibuya . I was impressed by the superior the focus and shutter speed of the camera . I have to pay close attention to avoid the new camera being broken by my son . It is a rainy day today . They are taught by one of five ALTs ( Assistant Language Teachers ) who work in public schooling . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film that deals with the history of the electric car , mainly focused on The General Motors EVI . First is the tea ceremony room ; second is the imperial room ; third is the samurai room . There is a pond in front of the pavilion . There are many kind of foods speculiar to each country in the world . They always recommend me doing Yoga , but I 'm afraid I 'm not interested in exercise . I have to speak English at my office . It was a little bit boring . That is why , it would be helpful , if you could give us some advice for the evaluation of the research and provide the details about the rating scales that were used in the book . They do not want their siblings to make sacrifices as well . 7 students paticipated in it and they were great ^ ^ Some students did n't memorize their script enough not to show it but still I thought they put in a lot of effort . So in the train , I do things like read a book , listen to music and so on . I wanted to listen some music in the bath room . Besides , offering various help is a government 's obligation , whether it ` s necessary or not . After work , I intended to surf again , but it was windy . I 've started studying English in Canada this month ! My summer holidays were too short , as usual ; - ) The reason why my school starts on Thursday is , pupils with the grade 5 in their school reports can make a test about the whole last year to get in the next higher class . I am learning Electronics with Informatics and Computer techniques . The Austrian schools are very universally that we know from everything a little . After passing all tests , I can decide to start working or go to a university . Additionally , after 2 years work experience , I will get automatically the title `` Engineer `` . So I was surprised at how much it 's changed ! ! Chicken Curry , Saffron rice with Japanese pickled plum , mixed dried fruits Nan , peppermint chai with cinnamon and shochu , Japanese sweet potato wine with kabosu , an Oita prefecture produced fruit that is just like a lemon . Mainly , Japanese teacher taught English grammer , accents and various words . I always wanted to have a pet at home . My mother was very sceptic of this idea , but my father fullfilled my dream by buying me a beautiful dog . I was very happy , and I spent almost all my time with my Friend . : ) But one day my dog disappeared , and now I ca n't find him anywhere . I will congratulate you starting next year . I will take the TOEFL next weekend ! Oh my god ! Although I am not good at English actually , but I just want to try and to know what level I am . I feel nervous because this is the first time I will take it . `` I know we have different values and thoughts , In the evening I found out that he had disappeared . And he said to me , `` I was going to break up with you , actually . `` Just joking , but when I heard this , I realized how mean I was to him . . Even though , this was bad somehow I 'm still relieved Self - censoring an event makes economy decline . This sentence is printed on her son 's T - shirt . One day when her son 's English teacher saw that T - shirt , he took pictures of it and said it was so funny ! I tried to translate it but it 's a little bit complicated . In the morning we started our walk to Fort Cunning information center to get a map . Unfortunately , it was being renovated ! We quickly looked on the map for other restaurants and found one . It was a nice looking restaurant on a hill surrounded by a beautiful forest . If the restaurant had not been closed , we could have had lunch on the terrace ! The restaurant was closed every Sunday ! On the way , I happened to see a traditional Malay wedding outside . When my wife was pregnant , `` just like all the other husband and father `` , I thought everything was going to be beautiful just like on TV . Reality is a whole lot different from imagination . We have to learn a child 's thoughtful consideration for others and frankness about it , because we know consideration and frankness always work . When I found this , my bag had been scratched by the thief . This is the third bag which has been cut by a thief . My favorite manga is Dragon Ball , I guess even if I take a vacation , I 'll have to spend much time on homework . life has no end of troubles . I experienced the gigantic earthquake in north - east Japan . I walked back to my house after about 50 minutes . On the way home I saw the people filled in the streets walking . It is not a business trip ! I 'm planning to go to Izumo - Taisya on Saturday . Wandering on the campus , green trees , colorful flowers and clear water catch your eyes , fragrant smell of flowers occupies your nose , and voices of reading aloud and singing of birds captures your ears . It was irritating . > < , Another boring week is awaiting for me . Then I searched online . If you study Japanese , I recommend it ! ! I 'm looking forward to seeing my family . The restaurant was so nice , and the food was delicious . I visitedmy cousin 's house last weekend . Some foreigners tend to think that Japanese men don ` t do housekeeping at alland women work for their husbands devotedly . That ' swhy , I want to insist toforeign women . `` Don ` t feel that it is worst to get marriedwith Japanese guy ! I do n't think they should mention details about the flight ! Typhoons going through Japan are not as strong as cyclones . Tonight , I will stay in my house and wo n't go out . That 's why every Korean thinks they have to go to college . The last 3 days we had very good weather , but today it 's cloudy again . . . adios . . . A nice script : First , you must grab people 's focus . What you want to say and the content determine whether people want to keep watching it . Of course , the character designs and their actions are important . . hahaa like this octopus . . it 's very cute even though it does n't have any lines . I would like to speak and write like a native We studied in the same high school in Tibtet , we often communicated with each other about things like a football match , beautiful girls , foods or the CCP . Tibetan children are loyal , friendly and smart . Sometimes I felt they were sensitive about some political topics , but for of many reason , they felt happy too . Our high school teachers cared for them , and the ethnic Han classmates were glad to help them to study many subjects too ` ` ` The dinner was delicious , and we drank a bit of beer and played jokes on each other . It was a wonderful time . I forgot many annoying things temporarily . What a happy night in Beijing ! ~ ~ life is cool ~ ~ My english teacher recommended that I get an English Dictionary . The meanings of English words are explained in English . My teacher said `` when you study english words , think of english words in your head . I received a lot of messages from my co - workers and friends in the real world and on this web site . My host mother plays the piano very well . but I ca n't play any up tempo music like she does . Good night . 7 . 8 : 2 . 2 This is my work and private balance . Public service personnel is a part of the conscription system . I worked hard at the place and explained things to many customers . In April , I also led the division to manage a network division . Although I feel a bit bad , and disappointed of myself because I 've decided to be more responsible with my homework and I did n't do it . In both presentations , I did n't make an effort to get a good note and I know that I could have done it better but I did n't , but also , I did n't receive the support of my team . On the other hand , I felt very amazed about some classmates . They did a wonderful job and I felt envious of them because I 'd love to do it in the same way or better . I have read some articles saying that some English classes do n't teach good english , or that some students do n't make any sense of it , or that it does n't fit their english level . I might be a lucky girl because I can understand English even though I do n't take any lessons . I am glad I speak English and can converse with native people . He wanted to say he was in the middle of the campaign and said loudly , `` I have an erection now ! `` I think everybody has similar minds and similar potential . Maybe there is some research on why people fail when they try to learn language ? We have to study English now , or we wo n't pass an important test in three years . There is going to be a Japanese school visiting our school . We will have eight Japanese students in each class . And we will teach Taiwanese history about Japanese aggression against Taiwan . Maybe we will say something about their contribution after the Japanese were aggressive towards us . We will do a lot of activities when the Japanese students come . I have been quite busy the last couple of days because of my exams at the university . It 's really cool to meet a lot of foreign friends here . So I 'd like to continue my diary . My dog `` Fal `` , who is Italian gray hound , does n't like Some people say it not only helps to end their pain but also it helps to solve their family 's economic problems . I think they are still relevant today because history has a way of repeating itself . That way , they can feel familiar with ancient history . the reason that she was deprived of her custody of their first child , was she overdosed on cocaine ( I forgot why she had it at the time ) About 5 seconds later she called me again to say good morning . I did not answer because we know if she calls me it means she would like to say good morning or good night . She got disconnected from Skype yesterday while me and Tyler were talking because it is a bad connection from her country . Before she left she did not say something to me as she usually does because she was suddenly gone . He ca n't sing but he can hum and dance and and play the guitar . If I 'm a Pitcher . . . For a long time , I went to Song gang Dong field in order to play a baseball game in early morning . Then , I tried to go there , and also It was difficult to drive my car because I met a friend who lives in Seoul yesterday . I 'm a pitcher and the 5th hitter . Our game started at 12 : 00 and I was so nervous . My beseball career is shorter than everyone 's but I have good physical abilities like fast feet , strong shoulders , and endurance for any pain . Chinese Calligraphy and Traditional Chinese Painting ! Chinese calligraphy and traditional Chinese painting both Because it is near the station . This year I 've started to study ballet . It 's known that you only can learn to dance ballet when you are a child , or at least that was I always thought , but I was lucky to have the chance . We are doing `` Coppelia `` , even though we are not professional dancers . We are adding a little bit of fun to the original play and it is going it great . In my culture , people are not always aggressive and we are always thinking about others , as much as , or indeed more than ourselves . [ 1 ] As far as I have heard and experienced , the culture here is that people care about themselves more than others . They are more self - centered , which I do n't mean in a good nor bad way . For example , in my country , the distance between people is less , so everything can be flexible and it depends on the relationship between the people involved . Therefore , I always think before I act because I am not sure what the correct way to act is . The main character traveled to Italy , India and Bali . She met many people and found herself . She performed meditation in India . Friends , no matter what countries you come from and what languages you want to learn , I think we can become friends , not only for the reason of `` learning languages `` . Or does it mean `` go out with their boyfriends or girlfriends `` ? The other artists are probably not known by Japanese people . There was a lot of rap music but there was n't one such as Eminem . Introduce myself Hello ! ! But now , I study economics more , since my job is deeply related with economics . My favorite football team That is too many countries but , I 'd like to visit those countriesT . Next week I will go to a language school to improve my speaking abilities . English speakers use high frequency . ; ) I think that I have to search for a friend to converse with on skype or to help me with writing letters . Is anyone willing ? ( 9 . In Japan , it is autumn . These days I am reading the novel `` Master of the game `` written by Sidney Sheldon . My friend recommended me that book and it 's so interesting that I ca n't stop reading it . Because his wife Marianne was dead . Today , my roommate woke me up early in the morning because she thought I was oversleeping . Blackouts , floods , strong sunshine and very very hot days . I went to Japan to study , but I had never studied Japanese before . Because I ca n't speak Japanese , it 's hard to make friends in Japan which makes me feel so lonely , and want to give up studying in Japan . After a long time , I did carpentry work today . It ` s so frustrating , but it ` s reality . dreadfully spicy . . . Although my mother language is Chinese , I quarreled with my friend yesterday . The teacher made us to make sentences using simple past and past perfect continue . S / he then looked at our sentences and pointed out some mistakes . I have been enjoying learning English since last year but I still sometimes feel despondent a little bit when I can not remember how to spell a word by myself . It always goes this way ; I finally remember a new word and then want to type it next time , but then I forget again . Now I wonder if this reason is too weak to learn efficiently , because there are few chances to use English at my job . But I ca n't understand English grammar . Yesterday was different . Unfortunately , there was very strong rain and thunder at that time so our flight was delayed thirty minutes . We were satisfied with our room and went to bed early so we could wake up early in the morning . I could not explain ' a certain probability ' in English when I talk to my friends . The probability represents how many people are watching particular program in each area . Then , if we know a certain program has high probability compare with other programs , we might want to watch the program even though we are n't interested in the program . Today at 4 a . m . , I and my father woke up because we heard the gate creaking . Our first class usually starts at eight but on Tuesday , it starts at 10 . How to get to my car parking space from my apartment . And I found a very exciting stastic today . There is an oil heater in the { staff } teacher 's room . So one of the teachers brought sweet potatoes and burnt it . is doramas , not just Japanese but also Korean , Chinese and Taiwanese . Now I have fallen in love with the Korean dorama `` You 're Beautiful `` starring Lee HongKi from FT Island and Jang Keun Suk ( Baby and Me , Beethoven Virus ) . I got lost on the way back to my house . So , I called a taxi . Especially to Germany ! I 'm taking the German class . The reason I have a double major was because I could see the world was heading towards a global economy and society . It 's a little small , but it 's enough for me . In fact , I would like to look for a friend who likes using Skype and MSN and usually chats on Skype . I hope to chat with him / her on Skype to improve my oral English , and I will teach him / her Putonghua . I can speak standard Putonghua . If I can find a friend like this , we can make a concrete plan to help each other . If he / she wants , except teaching Chinese , I also can tell her / him what he / she wants to know about China . So , anybody who wants to learn Putonghua and will help me , contact me . Thanks . I am online all the time . How they behave is their choice , but there are n't only gentlemen in the world . `` Judas `` by Lady Gaga and `` Toxic `` by Britney Spears I like Lady Gaga and Britney Spears . One of the songs is Judas and the other is Toxic . When I was a university student , I was a member of the ski team . Hi ~ everyone Golden week is a group of holidays in Japan . I think my diary needs a lot of correction . Yeah , this is my favorite sport . If we have class , we must go , because the teacher will check . At work , my cell phone did n't work as the telecommunications cables were destroyed by the quake . After I reached home , I knew the situation was much more serious in north east of Japan . laborers will be older . Roast beef , mashed potatoes , pine nuts roll ( this is that stuffings which consists of pine nuts , flour , meat and so on is rolled into pie sheet or something ) and dessert with eggnog ( this is a kind of drink . There were a lot of Lotus flowers . I had fun and was really surprised because of my friend who called me . In that place there 's no telephone signal and no money on my phone so I did not reply recently , but then when my parents took me the city I had refilled my money and sent the message back to her . who is my close friend I am thinking of her too while I was not in Bangkok Hey friends do you think my new avatar looks lazy ? so just some picture and in Bangkok is okay now do n't get worried I think every thing is going to be better . . A Handy Clear Folder Within Textbook ( Brushed up ) I copied my text book into half size , and sort them out according to each period . Why do n't you make a ubiquitous studying environment ? But we missed the airplane ! We missed our airline . So it 's very expensive . We took an early bath and ate toshikoshi - soba , the buckwheat noodles eaten on New Year 's Eve . My neighborsare having a party and I have been hearing Latin music since this afternoon . This is my homework for my English writing class . Also , my old brother attends Kongju University and his major is tourism . The university said I passed the entrance examination . Athlete 's foot I 've got athlete 's foot . It started a long time ago . It was around my highschool days that I first got athlete 's foot , so it has been almost a decade . So I went to a dermatologist downtown . The doctor looks careful and probably credible but since I am for now translating one doctor 's book which criticizes doctors who are too readily `` putting their patients on chemicals `` I am a bit nervous . I am a genuine fool . I worked outside only wearing a down jacket , I shivered from the cold wind . It is not the movie itself that made me cry , but the fact that we missed the first ten minutes , because Mam was mistaken about the time . `` I 'm writing a diary after a long time . because I have never been there . I went to a university that is my first choice today . It was full of fun , and I found a way of learning English . I do n't have enough time . . . I hope that everyone had been having a good time in the latest holiday . been happy because I have a new niece . She was born on January 1st , and her name is Maria Alejandra . She is so cute . There are many things that I have to do tonight . I like listening to music , like every type , especially jazz , rock , and some nice soft music , some times I listen to death metal too . and also do some reading , which are written by ppl who r not famous but special . . . . My sister and I were very joyful . On the last day , my aunt gave me some Australian chocolate , a kangaroo doll , and a suit . I had lunch at this shop . We drank alcohol and ate Korean food at the first restaurant . I wonder why Japanese people like to eat ramen noodles after they drink a lot of alcohol . I think it 's a very interesting place . I always want to make friends . I love foreigners so much . that ` s why I ` m learning english . I have tried to study Mandarin when I was in junior high school . Chinese - characters are used in Mandarin and Japanese , so I thought Mandarin would be easier to study than other languages . Some of meaning of chinese - characters in Mandarin and Japanese are same but some of them are not . Although , Mandarin has four accents in one sound ( I ca n't explain about it clearly in English , try to understand ! ) . I often postpone various things that need to be done . I 'm housewife , so it 's convenient for me to do such a short time job . What 's is your weak point in your job I was so upset when I was asked that , because I had not prepared for the job interview . I will keep every Thursday for your students . Today he went to nursery school . Poppin is my best dancing style in which the movements are so freaky . I recommend you watch this dance if you are interested in it or you have never watched it . If anybody wants to know more about dance , comment me please ! In addition , corporations can , every so often , organize some recreational activities , which may let workers feel a sense of belonging . I watched Lovely Bone . Generally it is called a pickled plume in English . I am going to graduate from Seoul National University of Technology this year . Afterwards , I would like to go to a graduate school . My daughter and I want to go to Egypt . I will overcome many sufferings and difficulties . I hope for an early winter vacation . This comic is the story of MUSASI MIYAMOTO . The idea was pleasing to the hotel 's callers . It takes about 40 minutes altogether . It is a door that when you open it , you can get into wherever you want without moving . My biography He proposed all of guests ( 4 people ) to support for this couple because it 's a marriage party . In a foreign country , is it not the custom ? I am going to visit Australia for my school excursion next February . So , I want to improve my English skill and know ( more about ) the Australian culture . and in my job there are opportunities to meet foreign visitors . I have been at North Carolina for 2 month . But unfortunately , my English skills still remain poor . This temporary job ends at the end of this month . It is uncomfortable to stay in an unfamiliar place . So , I had my boss buy some vegetables for me . After I received them last night , I kept them in the refrigerator . However , it may cause air or water pollution and noise which comes from factory disposal . It 's because I 'm connected to them . But , there are circumstances at the organization . My favorite movie is `` A PERFECT WORLD `` . Finally , Buch died because of a policeman acted by Clint Eastwood . My Husband and I know that his work is very noisy , for example , cutting wood boards , color on spray and using a chain saw , etc . I want to apologize about this problem to you and to the other neighbors . : ) I would like try using this website , but I do n't know how it works I am not a Sumo fan and do n't have a favorite Sumo wrestler . Wow , it 's October NOW ! Shockingly , the room that I used to use became my father 's hobby room , so I slept in the guest room but that was not so uncomfortable . So cartoon artists work hard , out of every cartoon I love Tom and jerry I do n't have time to take a rest because I have a lot of reports to write by Saturday . we often use Japanese grammar , but explaining is difficult . It 's an important professional cycling race . I had lots of opportunities to have some fun and make friends . However , I did not realize at that time how precious an opportunity I had . It 's quite ridiculous to prohibit her to call , mail and to have a mobile phone even though I have no idea about the Indian way of thinking or their common sense ( or this is not about Indian but just my landlord as an individual ) . today I had a lot of work but I was very lazyso I am not going to work . I have to go to chess training soon so I need to sit in the sauna and take a cold shower . However , since it is winter , I must take a cold shower after the sauna and then I will go the chess training ( or Chess Class ) because I will play an important match next week . please pray for me to win ok Thanks for your help to improve this passage . Japanese is easier than English . As soon as we finished eating , my girlfriend and I left the living room and stretched together . What should I do if a rat - mistakenly eating the poison and suffering - jumps from the kitchen cabinet ? The ceremony about mourning the people who died from this bomb has been held every year ; this year it is even more historical because the representatives from western countories participated in the ceremony , especialy the United States . This change was due to the speech that was given by President Obama in Berlin . What I was most impressed by , was that the Secretary General Mr . Ban Ki - moon read a speach , speaking strongly , about how it is necessary to have a strong will to achieve world peace without Nuclear weapons . He visited and made some speeches in Japan over those feelings . I 'm not sure how to tip at a restaurant because I 've just moved to America and my mother country Japan does n't have such a custom . If I do 3 , should I write an amount of the tip down in the bill ? Soon I will take an English exam . I graduated from my junior college on 15th March . I sometimes dislike her because she scolds me for not following what she says . Yesterday was Sunday . Next year ` s symbol animal is the rabbit . I have decided to post voice journals here , because there are only so many opportunities to speak English in my everyday life . I went to the shopping mall because my daughter wanted to go . Unexpectedly , I fell into the deep lane that was used only by adults . In Japan , after having graduated from college , most of Japanese students work immediatelyand continues to stay within the company for at least 3 to 5 years . While I took a look around in the Vietanmese mom - and - pop store , he petted my shoulder and said , `` Here you go , a Vietnamese sandwich . `` At recess today , he still pulled me to the corner again and asked me if I wanted the plums and vegetables . He knows that I usually cooked on my own to save money . They should use English in every situation . Halloween party Actually , it depends on the person . Today I changed my hair color because my brown hair was so bad and my hair was so damaged : ( I decided to change my hair color ! ! Question 2 , `` Where was the port that the Black Ships ( called the ' Kurofune ' in Japanese . However sadly , still I still have n't worked through what I am going to do for my happiness . That way he 's always have a meal beyond midnight and talking , trying to get me to eat with him . I wish that Korean schools were more free like foreign schools . I studyed English from 7am to 9am this morning . Yesterday , I started a new activity , Capoeira ! When I tried to buy the ticket for the film , I was recommended by the clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemort was impressive ! I am a sales person , so it is okay since I have a contract nowadays . ( I am the second person who has the highest sales . ) I mainly do the kind of simple , repetitive work that anybody could do We 're going to move to another building next week so today all of us coworkers were packing a lot of stuff . sorry for the ( irrelevant ) details . This is my first time coming here . I learned of this website from my teacher and found it to be a really good place to study English . At the same time , I want to make some friends here ! Whatever my roommates and I will solve that . This time I know the person who can be friend or just have distance . I lived with my parents and my elder sister who is married and raising her son and daughter with her husband . And I 'm learning Japanese tea ceremony once a week . I 'm interested in Japanese traditional culture , such as tea ceremony , kimono , and Japanese flower arrangement . Some people wear kimono often or everyday ( for example , those who are obsessed with Japanese culture , who learn / teach tea ceremony , Japanese manners and Japanese flower arrangements . . . We do n't do tea ceremony in daily life except when our families or ourselves are familiar with it . When I learn tea ceremony , I became eager to learn good handwriting , languages , behaviour , and flower arrangements . When I learn martial arts , I become eager to learn behaviour . As a beginner , you need to have every skill at a beginner 's level . If you go intermediate in one genre , you need to have skills which are better than a beginner 's also in other genres . I will try writing about these things I learned . Dec 10th : Shrek 3 I watched ' Shrek 3 ' on TV tonight . In fact it is very useful and has a cool design . The Swedish man said ' ' Kampai ' ' every fifteen minutes . After just 5 minutes , the sake bottle was empty . Although the waves were small , there were a lot of surfers in the sea . The shape of the Tengu was like a human being but he had wings and could fly so we adopted it as our mascot and our flight squadron 's guardian angel . Actually , each squadron 's flight time for the year is assigned by our headquarters . `` Yes , just do it ! `` . I praised myself so much that I only ate a cup of sesame paste , a banana and an apple as my supper . to look on the bright side ! There were a lot of people wearing costumes ; they were crazy and funky . Now , I am in the middle of preparing for exams , He is n't famous among Japanese , because he did n't have a professional career in Japan . It was an amazing trip due to beautiful scenery in the country . I saw native Australian animals such as kangaroos , koalas and many varieties of birds . The scenary was overwhelming and the company was smart and decent . Teacher said that Expressions of frequency , speed , and duration do not use ' in ' . I work very hard and I get so tired from working from morning till evening . I talked with my friends who live in Japan by skype after so long . Since they have not changed a bit , I was relieved . I listened to their story , they are still having a hard time due to earthquake and electric power plant in Fukushima . I caught a cold . . . : ( And I caught a cold today . So , I my cold goes away soon so I can avoid going to the hospital ! Hello every one ! Probably , I am not interested in that topic , my vocabulary is not enough or my English is still very poor . We discussed about smoking . Indian parents teach their children smoking , but their least age is 2 years old and yet , they can already smoke several cigarettes a day . He was sophisticated like an adult and can smoke 2 cigarettes at the same time . Parents should be responsible for their children . They must protect and guide them to a right direction . I hope my English will get better if I could continue writing a diary in English . I mean , we were too busy both mentally and physically to take time for others . To solve these problems , I should relax a bit . Yesterday I went to a Korean restaurant with my close female friends . We were chilling out with delicious dishes and drinks . I was invited to go skating by my friends today . Actually my Silent Night , was really nothing special . From the first day I cut my long hair until now , I ca n't remember how many times I have cut my hair . I am a college student in China . After the graduation ceremony for junior high school , I called at her house by using the yearbook which told me her address . I want to introduce the Hanbok to foreigners because it is very colorful , and I thought the hanbok was very old fashioned and not chic , hanbok is very special . Hello , everyone . I want to see a lot of foreign poems . Of course , I want to see Japanese poems too ! Please check it ! I learned a lot of new words dealing with financial vocabulary . I got a serious headache this morning while sitting in my cubical , so I took a half day off and left work at 1 pm . Well , if anyone who happens to see this entry , and is interested in getting a Chinese New Year card , please let me know : D I guarantee the card is going to be cute , and Chinese : ) A cassette tape changed into a robot , or a gun changed into a robot . . . If you get it up onto an Internet auction , collectors will buy it for half million yen . `` Then I wanted to exhibit some things to Yahoo auction , abbreviated to Yahuoku , which is similar to eBay . I was very busy April because of recruiting . ( job hunting ? ) Feeling Bodyaches Because I have to contact another foreign buyer by phone today . Today I 'm going to write about my career . Even if I try to find language exchange , they think I 'm a boring and bothersome girl . I could n't stop staring at the beautiful phone , I believe that this whole swine flu panic is steered by the media to improve the economic situation . In my opinion , everything that has happened is very artificial . Some Japanese office workers dream about living in the town because it does n't have a train station , hence it 's difficult to commute to business zones / districts such as those in Tokyo . But I chose to live in Hayama despite the long commute time , I work in Shimbashi central of Tokyo . I went to some Yokohama ramen restaurants this time . I will write down the list of good or famous ramen restaurants here . She taught me the importance not to give up and we can get a happiness to keep trying . I 'm kind of a perfectionist and once I start a role playing game , I do n't stop it till I perfectly complete it . It 's like an obligation to collect all the items that exist in the game and acquire all the abilities . Usually , people in western countries will celebrate Christmas Day with enthusiasm , and as theirculture globalised , we in the east havealso started to note Christmas Day . And it seems an honor to me that I received an apple from my little sister . Is it true that Father Christmas will send gifts to us this evening ? I will have a chance to travel to Thailand ~ my house phone has broken down Continuing to do something is very wonderful . Before coming to Keelung , I heard the rumor about A City of Sadness . I do n't need money or anything , but just a response as to what you think of my idea . Would you be satisfied with it ? And this can also eliminate what causes conflicts , such as misunderstanding about their customs , and he determined that he will do `` The last concert `` for his young baby . The last concert was so impressived to me . I toasted some bread with the toaster and I ate the bread without spreading anything on it . Nara is covered by mountains and forests . About 77 % of it . Deer might attack you . Various kinds of vegetables are pickled in a sakekasu . It has a little strong sake flavor . See you tomorrow ! I do n't know exactly when I can use `` any `` in sentence . I know it 's difficult to explain . She does n't like to eat breakfast in the morning before she goes to school . and also lunch . I asked her premis ( ? ) me to eat breakfast before going to school . She said she premis ( ? ) eat breakfast in the morning . What I study at university is mainly subjects related to English , such as English linguistics , English education , American and British literature and so on . Hi I 'm a new member My name is Luca and I 'm a new member in the community . New year 's day is already over as you and I know , but I still feel like I have n't regained the energy I had last year . and his exbition is held this year in KYOTO . My mother tried to go there , but it is very popular and she had to wait in line for more than one or two hours . . . Last Saturday , I relaxed in my home with my family . In fact , I feel very sad , but I still need to work , eat , and so on . Now I 'm growing some scallions , turnips , and lettuce . I think this one tastes good but my European friends do n't seem to like it that much . Anyway , when we got there , we were the only customers in this restaurant . First , it makes me to sweat easily than what I expect before and this means that it is also helpful as an aerobic exercise . Besides , my major is not Chinese . I really enjoyed working over there . Upon seeing what I bought , my little son looked disappointed because I bought more clothes for his elder brother and did n't buy shorts for him which I told him that I would buy one for him . I am using simple English vocabulary to write this diary . I like English very much but my English writing is too bad . The main street was crowded with so many tourists , who came from home and abroad . These days , I 'm doing a part time job to save up for a trip to England . Before I took the class , I only read my vocabulary notebook for about three times a week , but I learned many strategies in how to expand my vocabulary in my university . Moreover , I put vocabulary tags on my funiture . Ironically , these kind of movies are n't always historically accurate . Snow causes many traffic delays here because it does n't often snow . Che Guevara I watched movie about the life of Che Guevara . I write poor English , so please teach me English . Girls are willing to forget the surname given by their parents and follow their husbands ' surnames . I guess you could call me ( a ) `` Germinese , `` but please do n't call me Chimany ; it reminds me of the word `` chimney . `` The typhoon is coming to Japan now . She immigrated from Korea to America 15 years ago . I 'm breaking my record of keeping good health for at least two years : ) My mother and I took a walk this evening . Lots of people who were playing outdoors said that this kind of scenery was really beautiful . I think I forgot all of the grammar and vocabulary . I take care of myself , eat right , and exercise . Osechi ! ! ( A Japanese traditional dish ) The purpose of my part time job for me was to eat the most delicious dish in the cafeteria . It was delicious and its cost was low : 380yen . But , my colleague told me that there is not a rainy season in NY and the weather this year is unlike the usual in NY . I felt the climate in Japan was getting warmer and warmer in several years . We can see extraordinary climate in every area across the globe . Hello , everyone ! My foreign language teacher told me about this site . I had hardly opened my laptop when I came back home and made my first diary entry . I hope I can make more new friends from around the world . This sentense explains the children ` s liking . I was given many feasts like a sand rice ball , a sand pancake , a sand juice , a sand meat , , etc . But you may not experience joy like that if a dying baby had not been rescued and grew larger . Yesterday 's movie is about when Shakespeare wrote `` Romeo and Juliet `` . I like this movie and I can study it . So Shakespeare wrote a passionate love . Today is very sunny day ! I went to interview at a Japanese restaurant . I have to be careful about figuring out my job and the way to achieve my dream , because it is not like I 'm very young , or like I have many options ( since I do n't have enough money ) . So I will try to do my best to find my way and achieve my dream , rather than being frustrated about my poor situation . When I was elementary school , ALT teacher from Australia showed us pictures of Australian nature , sea , koalas and so on in his class . And I have never gone abroad and see the scenery apart from Japan . So I saw such a scenery of picture for the first time and Of course , Kabuki , Waka , Samurai , Yamato , Wabi Sabi and so on . In ' The Last Samurai ' , which stars Tom Cruise , this idea is the subject . Aftrer the war , we succeeded economically , but we lost our culture . I believe this is the best chance for Japanese people to regain our identity and culture and to work together . It 's gorgeous . I went to Costco with my friends a few days before . My friend recommended Cheerios to me . I picked up my husband this morning . I thought it would be easy to get there , because today is Saturday . We take a walk a little , then I heard dog 's bark . , we can be good friends ! Please leave your message and some comments . I appreciate it ! ! ! There is a gold accessories store next to my store and opposite to Boost . souvenir . . I play guitar , watch anime ( yes , I ` m one of _ them _ > _ > ) , and learn English . There are so many theories in one academic field . For example , in software engineering , both Java and C + + are very useful programming languages . In China , C + + is used more frequently than Java ; consequently , teachers should pay more attention to C + + . Students who learn more useful technology will have a big advantage in finding a job . In some circumstances , theories in textbooks are no use in real life . Moreover , it is better studied on campus , in a lab , not in a company , As Bertuard Russell said , `` Experience without learning is better than learing without experience . `` Every professor in a field that offers the opportunity to work outside , should ; the others may stay on campus . For students ' futures , universities should find more opportunities to give their professors . Yes , I 'm thin - skined . When I watched a TV program , I knew the store . I 'm a light drinker and I do n't like alcohol . Actually South Korean people usually are n't interested about / in North Korea . actually I did n't know about my blood relatives before I saw it . So , he decided to go to China and go back to North Korea after finding some medicine . I cried a few times when ( while ) I was watching the movie . Thinking that if I was the man who had a sick wife but could n't find the medicine and the food was decreasing . . . The song make me remember my life , my faith is shaking , feels lost with no direction . I ca n't wait to watch that , either ! ! I 'm looking forward to that . I 'll always smile tomorrow : ) I wanna tell the character a crucial thing . When I approached the operating room , I heard After she had an operation , she quickly died . And still , I have this eerie idea I forgot about something . . . American Idol , a TV program , is an good example . For example , when estimating the number of balls in a jar or the murder rate in New York city , the errors between the crowds always be cancelled out by each other so that the average answer is often surprisingly accurate . I watched high school musicla at first , it 's very interested and powerful . Today , I nearly slept in the midst of doing work . I hope to have better house , earn more money , provide my child with a good education , buy what I want and go for a trip . . . It is November and winter will soon come ! So many shops sell snowboards and snowboarding wear . We went in the shops and looked at the many boards . My height is 165cm , so I should use a board about 145 - 155 cms . long . I found my favorite design . I looked at the underside of the board . I , of course , looked at the price tag . At last , I found a good board . Morton Island is the biggest island made of sands in the world so it has many deserts . maximum : You need to pay maximum attention when you use gasoline . minimum : I think his immediate action kept the damage minimum . ( just minimum seems wierd . . . I met my language exchange partner today . Keep studying , it is hard but really essential In addition , he recommended me to read many books , not only Japanese literature but also foreign ones . This would broaden my outlook on life . I heard about this web site from my co - worker today . I 'm very excited to learn this system , and I 'm looking forward to trying it out ! That 's my favorite team . I 'm always surprised by people here who keep their journals in a foreign language . I envy them . When we met , we didnt know where the `` budaezzigae `` restaurant was . So we walked to look for the restaurant for an hour . We found the restaurant in the end . I caught a cold Those are symptoms of a cold . I caught a cold today : ( Some of my friends have been to concerts and they all say they enjoyed them soooooooo much , and whenever I hearthem say anything like that , I envy them so much . Kagawa who plays for Borussia Dortmund in Germany got the goal . It was beautiful goal . The consective holidays , an event which lasted for about 10 days , was over . Consequently , we now have a hard time living economically So I will write messages this week . The government imposed a tax on carbonated drinks ( like Coke ) , and every food has a label indicating nutrition , especially trans - fat . As they heartily congratulated us hearing our news , I was very relieved . By writing down the daily events , I also aim to review each day and make the next day better . Now I can concentrate my attention on the final examinations and essays . Tomorrow is my birthday . I ca n't wait to know what suprise my classmates might give me . I believe that tomorrow will be an unforgettable day because of my lovely friends . When I began running , especially longer distances ( it took me awhile to build up to that , though ) , I would go to bed and welcome the sweet release of sleep . Yes , I am writing this diary with a brand new PC ! It takes 30 minutes from here to Tokyo . I registered for this site to study language . My friend recommended My teacher is an amusing guy . He asked Turk to teach us Turkish , and asked me to teach them Chinese . After the class , I bought a bottle of local wine ( a kind of sparkling white wine which has low alcoholic strength ) in order to celebrate X - mas . Hokkaido Pollock Today , I offered Hokkaido pollock to our Chinese client . because Japan has a large quantity of pollock , but the market is small . My Chinese client will sell the pollock to the Chinese market . Yesterday , we had a tournament but unfortunately we were n't able to win . As soon as I entered thepub , I drank soju ( korean alcohol ) . Well , that 's nice and full of sunshine and sweet smiles . All the beautiful things depressed me . After graduating from college , I want to go to France to study for my Master 's degree . I caught a female beetle on my way home from the office despite that there are not many trees around here . I went to my friend 's house . I like spicy food such as kimche that is Kolean food . It contains lots of red chilies But I still want to write it , because maybe I can have a good experience . I 'll see in the future . . . . I 'll eat at a restaurant in the department store . but first , I will go to Starbucks . I read books , write daily and study English in there . The dog 's story is broadcast by NHK radio and an English course on TV . Some runners give up without finishing the race due to extreme dehydration and low blood sugar . Yes , this race is difficult because runners run almost 20 km . Especially , this race is separated 10 sections between Otemachi , Tokyo and Hakone ( 5 sections for one way ) , and runners must run 850 meter above sea level in the 5th section . And the reason why I am so attracted to this race is that the runner 's perseverance encourage me to persevere no matter what happens . but when I read the diary about my ex - girlfriend , I decided to update my diary , I did n't answer him , because I knew that he just wanted to remind me that I should be serious about dancing , and not be worried about anyone else 's opinion . Also he is very smart and good at architecture and history . We can speak to them and teach them what is wrong and what is right and in the long term that will be more effective than hitting them . Trouble is kind of a trademark of children . I have to go to university now . Is American English pronunciation different from British English one ? Later I helped two friends to correct their Chinese writing . * Do experiment ( changing the medium ) There are chain restaurant whose types of foods are n't so different from those at Macdonalds . I yearn after them , because they have blond hair , and blue or brown eyes , and high noses , and they have very good style . Okay , I am going to listen to an English drama first , starting with `` Friends `` . I enjoyed the food , the nature and the festivity of the small town very much . but I prefer Chinese . We can not use the exact words ( we would like ) to express ourselves . hat 's more In addition to that , most of the grammar we learned in high school has been forgotten . I have a lot of friends from Lang - 8 . They gave me the power to study English . They would cheer me up and make me feel warm inside . I will now read a book and comeback to use my computer again . Although there are some opinions that cars have many profits , I think that they have had a greater negative impact on various things than a beneficial impact . There are two reasons : harming the environment and decreasing a chance of communication . The first reason is the environment being harmed by exhaust gases . The exhaust gases from cars affect the environment in various negative ways . The second reason is a decrease in opportunities for communication . But I think it is unprofitable for us to continue using them . It 's quite different from the standard Paintball in most part to its rules and military characteristics like tactics , strategies , missions and moves . I am quite disappointed . I bought a book called the 4 - hour week from Amazon and I am impressed with the speed of the buying process She 's also been vaccinated every year . Today , I will meet a college student who is looking for a job . She is eager to research many kinds of jobs . The above was made by his mother ( my wife , of course ) . : - ) Recently I ca n't take pictures . I have pain throughout my body because of it . and I am really looking forward to seeing you sometime in the coming next couple of months . Anyway , happy birthday sweet heart ! ( dear friend ) Actually , she would have left the day before , but because her plane had engine trouble , she had to stay there for one more night . This week I 've been relaxing , I went to Uni . , stayed home , ordinary days . . . There will be a party organized by `` Bape `` - the famous Japanese fashion brand - @ `` Club World `` in Koyoto . Something but not empty in my heart I was depressed today . I felt lonely . Use my time efficiently ! I thought the answer was ( a ) , but the answer is ( c ) . Because of this , I set aside time to exercise . Fortunately , I have a VIP card , so I enjoyed a discount of 10 % . I do n't have time now because this year I have exams . . . I used to learn English , Japanese , and French . Fortunately it is easier to learn Chinese characters for Japanese , because we use them in our language . We improted the Chinese characters to our language hundreds of years ago , and the meaning of most of the words are still the same . I 'm lonely . I wrote a letter today . Is that right ? Studying English She lives in US , and is studying to be a nurse . She was growing up with adopted parents . She says that being alone is comfortable . . . . . Her character is cheerful . I think she will have a happy life . Fortunately , I passed the 1st test at Korea University Medical Center . The 2nd test is agroup interview so it 's more important than 1st test . I wrote not long ago , because I got discouraged by learning English . Recently I had depression because I did n't see the meaning of life . I heard in news that many Russian people drowned because they were swimming in the river while drinking vodka to cool down . Is this global warming effect ? It tasted yummy because it was free . I forgot to bring a toothbrush . So after that , I mailed her `` I know your kind heart and ability to chat sincerely `` . There is Chinese cabbage , spinach and Japanese radish in the fridge . Of course , I like Euclid as the great mathematician . because commuting by train becomes very hot and makes me feel bad ! ! I 'm looking forward to my friend 's marriage ! ! I think the hotel gets ( / holds ) a lot marriages per day . I was so excited . My husband was a systems engineer , but he quit his job last year and has been preparing to become a physical training instructor ( physical trainer ) . Today I cooked Spaghetti Bolognese for lunch and baked a sea bream , tai [ ? ] with vegetables for dinner . My husband tore his Achilles ' tendon on the 9th of October , and he has n't been able to work for two weeks . One colleague 's husband who is an IT consultant , said to me . But I 'm embarrassed to say that THANK YOU for raising me until now . Today I made spaghetti . Whenever I make spaghetti , I feel proud of myself . I was shocked when I saw this changes in Alice . Today is a beautiful day . I woke up at 9 o ` clock , and had more delicious food for breakfast . In the afternoon , I surfed the internet . That was tough for a single girl in China . Although they 've already brokenup , their music is cheering people up . I 've been studying until now , for about 3 months . There was a lot of delicious food , some drinks like champagne , wine and beer & pleasant conversation & Dancing ! Wow I had n't known about this brilliant site . North and West Europe composed the largest portion of immigrants to Australia with 34 % . From these pie graphs , immigrants moving to Australia consisted of almost half of the new population in 2001 ( , ) although there was no significant growth in the total population . I met my friend in on - line messenger r 2 days ago . I think that I want to eat it sometimes . I sometimes make mistakes when I write English . It 's actually not a long time after that thing , but it 's seemed to be a very long time for myself . About love , Respect yourself , that 's the most important thing I learned , if you want to give , just do it , never expect anything back but respect yourself , rub her / him the right way is not the way you should do , be yourself . I 'm very happy that my first diary entry had been correctedby Lang - 8 friends so soon . does anyone know UNY ? I usually sell Can I say `` Every time I have to be the cashier . `` ? It means `` I have to work as a cashier too . `` I had to translate to Thai the word `` craigslist `` but I ca n't find its meaning . . How do I pronounce it ? We have to make lots of friends when we 've done those things because we could get more information on Vietnamese culture . But there is one thing we should be careful to do and that is to take care of each other . I LIKE hanging around people who like them ~ ! ! This picture is of my grandmother Kailan ka ba pupunta doon ? A Total of 200 people participated in the session . I that I had caught a cold this morning , so I was in a bad mood when I had our hand - painting class . I was so excited , the adrenaline rushing to my head . That night , I could n't sleep at all , because I was so excited . Not sleeping on the transf ( p ) ortation is a kind of my bizarre habit . no matter how I finish this research I ca n't explain . Can you explain to me ? Tomorrow is the 16th . If it passed a year , it is 380th . The waitresses had to be so strict to control the time that a person took eating a meal The subjects were various , such as about experiences from jobs to the funny things . My nephew is coming home . It was the book I had borrowed once but failed to finish reading because the due date was up . Today I just watched the latest episode of ' Gossip Girl . ' What pleases me is that I think the story is going back to normal . I mean , the last couple of episodes have been kind of ridiculous . And in fact , I would never have the lives like theirs . Nate , one of the characters in ' Gossip girl , ' said , `` Growing up , I never knew what I was supposed to be . . . `` This moive is really famous in Thai . The man who running on the elephant is really good at ( kick ? ) boxing and did not use a stunt man . . . When you come back to your country maybe you should work for a few years to prepare for studying at university . In my opinion , travel or work for a year will give the students a lot of experiences that will make them successful in the future . This week , we 'll return to lighter meals . The item which is used for erasing pencil writing is called ' eraser ' in America , and ' rubber ' in England , right ? This sound file was made by me and my American friend who is learning Japanese . We , for the first time , actually talked to each other . Even my brother , who never remembers the date of my birthday ( but you can see it 's not a problem ) ) , told me that everything that I paint sucks and presented me with a picture . ) I did mathematics and Japanese . It was fun that I did homework . I ate a yummy bar of chocolate write your five items in the comments , if it is n't difficult for you = ) I can learn not only English communication but also business skills like how to be a good facilitator and how to negotiate effectively . There were many games , such as , Hula - Hoop Throwing Game ( a competition on how long they throw ) , Catching Paper With Chopsticks , Scooping Water Walloon , Dropping 1 Yen Coin to the bins in an aquarium tank , Pitching Game , and so on . And there was a booth giving snow cup with syrups as a present to those who played three games . So , if the school is a member of this neighborhood community , Imagine you want to buy a melon for 500 yen ( fixed price ) . You have 100 yen coins , 50 yen coins and 10 yen coins . How to learn the fundamentals of other languages The first step in studying language I struggled to find the way to learn other languages efficiently . ( or effectively ) . I did n't have enough money to go to a language school , After 5 years of looking , I found one of the ways to understand the foundation of other languages . I think we have to fill our brain with the fundamental sentences of the new language . When we have to use the language , the sentences will appear automatically . To fill up your brain with the sentences , This text explains the way of fundamental training . Of course the method can be applied to other texts containing fundamental sentenses with CD I 'm looking forward to the day that I can explain the effectiveness of this method for gaining ability in foreign languages . However , it was not planned and there was evidence . Spending a foreign festival like Christmas in a `` foreign `` place seems very interesting . And that means the exams are right around the corner . Perhaps it is due to our education system - you come to school to study , the school gives you a mark on your paper . Impartiality is what everyone pursues , but no one really succeeds . I live in Incheon with my family and puppy . I go to Hanshin University . Sometimes I forgot to do , because of my busy work , or heavy drinking . . . Canada Dollar shaped chocolate ! He wears glasses , and always wears cotton pants . The next day , a reunion party will be held and I will meet my old classmates at my elementary school . I develop new products of air conditioners making use of the technologies I have learnt these days . Therefore , I go to Kyoto several times a year with my family . Article 131 . - The Federal Government shall formulate and keep the Risk Chart on water basins updated , in order to set in place the disaster prevention programs , which shall include soil and water conservation works as well as flood management . The method of the Muslim funeral is the burial . But in the case of Japanese Buddhism , it cremates a corpse and puts a bone in a pot by using chopsticks . The cremation is decided by a law in Japan , and the burial is permitted only in some areas . I absolutely love English and I need more practice talking with native English speakers , so I would love it if you add me to your Skype list . Today , my university finished first semester . First , I want to go to Wakayama , ( comma ) I 've decided . . . I am posting another text bloq . For `` Domesctic Sewage `` , Sao Paulo reported the highest figure of these countries with 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . Aside from them , Tokyo reported `` pesticides `` as the water pollutant with 31 % whereas the amount was much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage of `` Erosion `` with 23 % as well as `` Domestic Sewage `` and `` Phosphates in detergents `` , which were higher than that of other coutries . There are significant differences between the four pollutants in the three cities . I 'm bored Sometime I laughed , sometime I cried . Anyway , today is Rodrigo 's birthday . Happy Birthday , Rodrigo ! ! cheap , the engine sound is quiet , the interior is kind of clean , and the exterior has a few problems , even though it is old and has high mileage . There are 3 big problems , oil leaking , radiation , and Brake pads , Snowing around here was very rare . Now , it 's a beautiful day today I love this site , and I want to make friends through it . I remembered my past work until now and inputted it to the Excel . This activity was interesting because I was able to discover my work style and my strengths and weaknesses . Nice cut designer They are usually cooked in Sukiyaki , Tempura , and so on . I 'm not sure where we 're going , but we 'll be sure to go somewhere where we can have king crab . My boyfriend may not want to go , because he always feels tired . He 's yawing at the moment , but I will make him come along . There are old temples and historical places . We decided to call a salvage company to haul them away . I heard muscle is heavier than fat . Exchange language My interpersonal skill for English is better than my writing however I need more practice . I do n't mind if your interpersonal skill for Spanish is not very good , I think that if we work together , we can improve our qualities . Do you often use formal words and with a straight face on your usual conversations ? People said he has such nice manners . I saw pictures about that . Probably , I will become addicted to this SNS and try to upload my dailies ( daily thoughts ? ) . Does it furthermore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this website , and I don ` t know how to use it appropriately , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for several years , and my knowledge is still not enough ! ! ! ! And in my research activity about oncology , I thought I did n't have any choice but to enter a med school to study the medicine . Eventually I became a medical student . ( In Japan , in February there are entrance exams for most universities . ) Snow fell yesterday early in the morning but it melted . my favorite coffee is always `` Today 's Coffee `` . Of course , I have a cup of delicious coffee when I go to there , but my real reason for going is not only todrink coffee . To my surprise when I came to his house , it was very clean . Today is Thanksgiving day , and I am at my friend 's house . I 've taken a nap at least 7 hours in the last 4 days , and I eat my fill every day . And we will have to go to the another shop which is near my house . I went to catch squirrels last Sunday . The rain made the hillsides became a little wet , so we should watch our step and tried not to fall down . We all went to a summer festival held in Mukaigahara which was held at a nursery school near my house . I 've been listening to his songs recently . I like Masaharu Fukuyam too , they are similar . One of my favorite movies is `` Innocent Steps `` which was produced in korea . After I woke up , I went to a Thai restaurant where a my friend works . One of my friends began to study English and he introduced this website to me . I love languages , in particular , the sound of English . Umm , sorry , I 'm negative today , is n't it ? I felt that I need to improve English for listening and speaking . Luckily , I finished my exam already , and I can celebrate Christmas wholeheartedly I think you should decide to keep the maintenance time on a regular basis , because a lot of people have signed up to this site lately and you will have to keep the configuration simple and clear all the time . I am practicing listening to English . So I told him that he should work on it little by little every day from the beginning . Of course , he wo n't be able to prepare for the test on the first day after the holiday . . . I found this good website and I thought it can help me learn english better . Please , reply for me ! And now , I 'm going to play on my home court because I need to practice for the match tommorrow : ) ! Its design is very good . I always listen to their English conversations , but I still ca n't fully understand ( white and black people 's English are very difficult to understand for stupid Japanese ) lol . I would add a little soy sauce and natto , too . They had a grand - daughter , Mashenka . Her - friends wanted to go to the forest for mushrooms and berries . I bought coffee , patbingsu , and pizza . My older brother is Sin . My first day with a foreign friend on the internet Thanks to globalization , a Taiwanese person and a Japanese person can chat in English , we are able to communicate on the internet even though our mother tongues are different . Looking back on my past entries , I 'm pretty surprised how horrible my English was , and at the same time , happy to see improvements in myself . I recommend this movie . In this context , the word , `` clutch `` functions as an adjective in order to describe I believed what you said completely at that time . . . `` I thought to myself . My personality is easygoing and outgoing . If someone has any question , just ask me . I 'm too lazy to customize my page with HTML , and some pages have too many applications . I wish I had friends who could speak English ! I had some vegetable juice . Not only because Chinese New Year is coming , I 'm listening to good music . She makes beautiful , exciting music and performs perfectly . An expert said , `` When you say negative words to yourself , your brain has only negative images . My office needs to help many customers ? So , Saturday and Sunday are working days for me . Now I 'm writing a journal at Urawa Central City Library while sitting beside a large window . I ` ve been feeling bad for the past 30 minutes . Welcome back , robins ! We were looking forward to seeing the pair raising a brood . I wish my English writing skills would get better Sorry , I ca n't write English well tonight because I 'm drunk and I want to play paintball next holiday . . because my house is situated near the sea I 'm tired of translating from Chinese to English , so I 'm writing this diary without translating . I know my English is very poor , but I really like learning it . So I decided to resume my studies by writing in my diary here . This made me recognize that communication to others , especially people not only Japanese , is very fun . Several months ago , I went to Mount Tai with a friend of mine and her mother . but our family did n't have buchimgae . fm is a language study site . I took an examination in Physics today . But I still have tests in , mathematics , English , German , and electric circuit . I know it 's not that big of a deal , but I wanna stay in shape . Ukraine has a very old history . Many tourists from other countries come here ! ! We have many places where we can spend time together ! I hope you will help me with my English . ) ) It is said that he killed a British 22 - year old woman who was an English teacher living in Japan . I 'm a newcomer . I hope someone can see it and help me by modifying my article or introduce a good way of improving English . I must learn English , but everyone knows my level is too low . When I was a junior high school student , my English class teacher laughed at me , because my pronunciation was unique for him . hope I can bear to live in another province or city . My teacher asked us to write a personal statement , and she showed us some examples in which there were various tragedies such as parent divorce , serious illness , and car accidents . I ' m intrested in history , literature , sport , geography , religious etc . I haven ' t done too many interesting things recently , because I ' ve been so busy in connection with the end of the semester at school but winter holidays are close ; ) I 've been 2chan mad for a decade , and I deeply like Futaba Channel , which influenced 4chan 's culture and structure . Compared to 2chan , their hatred seems disorganized . On 2chan , they attack mainly weak people . Especially Koreans or Chinese in Japan , integrated people , women , and anyone with a percieved weakness . Hello , everyone , I have come back . and then read it again after one has finished finished writing it . No doubt , it is kind of traditional Confucianism . For my part , I firmly believe that one who has a kind - heart should be given a reward or aapplause . London has so many people and it 's too expencive . . . I can read Japanese but ca n't type in Japanese . . . I have sooo many stories to tell about Monaco . I have an enjoyable time each lesson , In addition I feel comfortable when I carry out the procedure for making tea . In Japan , there are not any traditions of having a long summer time vacation , as in France . I think I am oversleeping . I ca n't believe a song could make me feel so sad . It had really nice lyrics though . I was so happy as well that I still could a friend who still remembered me after one year . I felt a bit sorry , however , they smiled at me and said `` Eat more : ) although there was n't plenty of food I could make friends with many people through being a volunteer . So , I ` ll study hard and find something interesting about economics . Strangely , many people do n't understand that sometimes a man watches it just alone and some people feel shy ( about it ) . So I revise the lessions I have learnt during the holiday . I 'm afraid I ca n't be the best in our class . I Wish I can get a good result . I bought juice which was a fruit and vegetable mixture , I thought it could improve my immunity , but it was too cold , and I had to mix hot water in . The funny thing was that I could n't measure how much hot water I needed , so the mixture was either ( too ) hot or ( too ) cold , which made my throat ( even ) more uncomfortable T _ T . After three years I listened to his music again because one of his music videos , `` man in the mirror `` I was shoked by this video , I did n't know what to say , I was impacted . Comment : Me too I found that I had n't see all his music videos , I did n't really know him , afterward I read some information about him . If you would like to learn Cantonese or Chinese , I can help you . I wonder what clothes are suitable for guests . I heard Americans give the couple presents from a wish list . Is this true ? I highly recommend the film as well . I like photo booth machines , so I always take a photos inside them . I 'd like to know if there are photo booth machines in foreign countries . They seem to enjoy taking the photo . Until before , I heard my recorded voice but my voice is a little bit strange to me and I felt ashamed and funny . Please proofread it . Especially they often have an original or special lunch . UNIQLO and Their Business Strategy One of their feature items is the so - called ' heat tech inner . `` In my opinion , what he said is true . However , when you are at the top , you are also responsible for your co - workers and their family . You may need financial support from your parents . Some people succeed very easily because of their family . Now I just read the latest news that UNIQLO has announced that they are going to change their company 's common language to English from 2012 - 2013 in order to keep up with global growth . I find that Chinese exams are more difficult than English exams . which language should I choose ? German - I have learned / studied it for one year , but I can only read without understanding its meaning . They were very embarrassed about this . It was very funny . By the time I get married , I will have gone to Este six times . My First Sign - In If you understand my meaning and I know what you mean then that is enough . What do you think of this supplement ? and diabetes . This supplement is just like an all - around medicine . compare someone who shares the bad and good but , most of all my best friend is like me in every way . Recently , the junkyard where I work is very dull . The customer was so delighted / enraptured that he advised the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' to attract customers to the business . In a sense a customer named their specialty ' Cat rice cakes ' . I think non - licensed writers should be appreciated more . There was not a tsunami afterward today though , - The size of his house gave me a shock . - As far as I know , most Korean and Japanese people know what the `` general character of each blood type `` is and I think they take its significance seriously . I 'd like to communicate with the English - speaking users and start to study English right now . So do n't hesitate to contact with me . I 'm Going To Go To Costco Have you ever gone to Costco ? What do you recommend ? Please do n't change all of the sentence into new sentences . . . Though some people believe a considerable proportion of rural students would put great effort into learning , it is manifest that there really is a phenomenon that rural students are more prone to have difficulty entering university . When I was a kid , I stayed at my grandpa and grandma 's house every month . After bathing , he always took his tooth out of his mouth . I told my mother about this after I grew up , she laughed . The woman in the video , whose name is Aum , is really popular in Thailand . Men love her because she looks sexy . My sons received their presents from Santa . and I believe I can do it ! ! GUNDAM ( RX78 - 2 ) What singers do you like in Japan ? To tell the truth , I went to Vienna for a school trip last summer and saw some of Otto Wagner 's buildings . This post office , the Savings Bank , is one of the World Heritage sites in Vienna . I do n't wanna work anymore . . . I was born and raised in Japan . My dream is to have my own shop . I 'm studying English and Chinese . I did n't have any experience doing the tasks required of the position . She asked about my salary expectation and how I could think I worth that much money . She said my expectation could be reached after I work for 2 or 3 years and I have to work from the most basic position . The problem was that my expected salary was the common standard in graduates . Since I go to a remote place I have not been before this is a good exercise . It does not cost us a lot of money to go cycling . Study abroad is necessary to speak a foreign language skillfully ? ? The year before last and last year I passed the first test but failed the second test . I hope to pass the second test this year . Yesterday I made new friends at Lang - 8 and I got my first correction on my entry ~ I had to clean my room before Chinese new year . It was very exciting , important , happy , and peaceful for me . I 'm not good at English . English is very important communication tool for talking to each other . He is a famous Japanese musician and a guitarist . He appeared on various TV shows , movie and CM . Since at that time , I respect him . I study English . ( ^ . ^ ) I start studying EngIish today . I 'm not sure if it works but I really want native speakers to point out which words I do n't pronounce correctly . The recent trend at my company is : `` Our company will take the customer experience to the next level using digital technology . `` But now is the time to use IT for developing a closed loop relationship between our stores and the customer . anyway I went to the mountain which is famous for rock climbing a week ago . we are feeling happy at first , but the higher we reach I got difficulties in breathing > < . Finally , we arrived at the top ! ! ! I cooked curry with a pressure cooker at last night . We went to a bomb shelter and listened some stories from Okinawa people and visited the museum . I went to one of the most famous aquariums in the world , a beautiful sea park and the castle influenced by both China and Japan authorized as a world heritage building and so on . I enjoyed diving . According to official information , Tokyo will be having a big earthquake Recently I started to prepare evacuation equipment , food , towels , toiletries On the other side , you know , asians are little conservative sometimes , they control their emotions , but if something sad were to happen , they go out of control , and become temperamental . It 's ( both ) nomal and abnormal to you , If you can find any mistakes in my diary , please indicate . But , something bad happened after taking my baby to a park with my mother - in - law . I know she really likes talking , and she was really happy to show her grandkid to her neighbors . After studying , I had a meeting for the shodo club . trip ( Vietnam , Guam ) Do you know Lady GaGa ? for example , MAC , Lunasol , RMK , and so on . I usually push the reset button each time when I boot my PC . I want to see `` Avatar `` and `` Alice `` some day . We must think about having a good time for welcoming club members next year and so on . One was a cream cheese layer which was heavy , and the other was a strawberry layer which was sweet and sour . That 's why you have to organize your work so it will be comfortable for you . I decided to make a necklace using power stones . The dessert I had was so good ! ! We agreed it 's best for us to break up and concentrate on our dreams . After get back home , I am so sad because I notice she does n't call , send E - mail , talk by skype anymore . Tomorrow is a holiday ! ! I was punished by my ever so strong inclination to procrastinate and procrastinate . I went to a Japanese restaurant there with my host family . The menu of the restaurant includes Sushi ! ! came back after 3weeks I was looking for the other one attentively . I looked into my bag carefully , turned back to check on the ground , but I failed to find it . What was the happiest moment in your life ? Workaholic guy . The happiest moments in my life are when I achieve something at work . For example , I felt happy when I won a sales award at my workplace and I feel happy when customers give me a perfect score on a customer 's survey . I like my job as a sales person because I can contribute to customers ' business . Working very hard is a part of Japanese culture and we can feel our happiest when we devote ourselves toward a customer 's success . I could see water from the sky covered the trees around my house . The day before yesterday I went to watch a movie with my friend around my house . I was really scared and enjoyed it . Do you like scary movies ? ? ? Of course , Most are from China , In particular , writing and speaking skills . Today , I found this SNS and . wrote a letter read the paper and said `` your english not enough `` This is one of my favourite tracks / songs from this album . My College Life ~ ~ I major in Japanese , which is supposed to be a time - consuming subject . At the beginning of college life , I considered taking part in some clubs , and filled in some forms to hand in . They 're all older than me , so I often receive useful help from them , and I am grateful for it . After I got used to college life , the place which full of challenges , I began to think of how to balance the time between studying and life . lots time everyday . I attended a Japanese Speech Contest and won a prize . And from now on I will try my best to become a successful college student , no matter how many difficulties comes . Then I want to get my driver 's license . I think my memory is too bad , so I do n't like to remember words . The baby refused everything but the sugared yogurt and then the little scary fiend burstout crying , my friend said . I have the same experience actually , so I could understand totally how much she was embarrassed . I felt guilty so I hugged him for a while . The situation that the babies ' mother saw seemed peaceful and perfect . You have to know how much your little daughter was stubborn ! ! ! Tokyo Disneyland ! Yesterday , I went to Tokyo Disneyland with my friends . Although we could ride only three attractions because it was very crowded , YOSAKOI is a powerful dancing competition and it encourages people . However , it is necessary to revise the policy on electronic power , given the disaster of the nuclear accident caused by the Great Tohoku Earthquake . The main character Annie , who is twelve , likes running and drawing . Recently , I 'm into DIY . My sister ` s boyfriend has sent me an invitation for this online game . When I started playing it , I felt bored , because I have played Travian before which was an exciting game . There is wood and other four luxury materials from the other islands , so you can bring just one of them . There is researc , where you can invent new buildings and other extras , there are gods ( this is a ancient Greek game ) , you can attack other players , and build new colonies in other islands , so you need to buy ships and build battleship . If you feel like playing , I can send you an invitation to the hungarian servers ' Lambda ' and ' My ' : ) and I 'm new member on lang - 8 , I hope I can find some friend who can teach me some languages , and of course correct my English . Now when I try to say something in English , Japanese always comes to my mind first , although I still ca n't use ( speak ? ) Japanese fluently . My level is lower intermediate . Yesterday , I went to an Italian restaurant with my wife and my Korean friends who are a couple . None of us can speak English well , but the funny thing is , we could communicate very smoothly because the pronounciation of English that my Korean friends speak was easier to listen to than a native American one . Mistakes my Korean friends made were very similar to mine , such as tense and singlar / plural . He always said that I should practice Japanese more while I am in Japan , because it 's hard to find a Japanese to practice with you in Taiwan . I study English very hard , I got 90 points which is over average about 30 points in every exam , and I like dancing ( jazz ) , I can do it well . In a word , this gold was golden for the movie market . By the way , I will have fun with my family during golden week . As it happened , my wife - to - be did not have a TV either . Yesterday , it was my boyfriend 's 24th birthday . But in my opinion , all time is very important to me . I need to earn more money so that I will make my wife have a wonderful life . I can not believe I managed to live there before . Our teacher asked everyone to choose a foreign paper , and interpret it into Chinese . He listened quietly . Sometimes he says his opinion and I listen to it . This picture was taken in a zoo I heard that people in other countries are very interested in internships . This was my first lesson at the art therapy class . ) During our first lesson , The teacher told us , `` Please image your life five , ten , and twenty years later . Even when you are an old person , then draw the different periods . `` When I became conscious , it was nearly 6 : 00AM . The teacher told me that my daughter is not good at saying the multiplication for 3X8 and 2X6 . My son who is 9 years old , does n't like doing ( his ) homework . I have thought of new good tastes that do n't sell in Japan . I hit my head hard on the floor so I feel a bit woozy . And so , I have to study some foreign languages . If you have an interest in cooking and studying German , read it , please . My daughter is one year and three months old . Wearing shoes is strange for her , I guess . In the afternoon I did my laundry , baked muffin and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earlier today and I will wake up at 4 : 30 tomorrow as usual , in order to prepare for the beginning of next week . I think I can keep good rhythm for my lifestyle this way . I like drawing with a ballpoint pen When I was a child , I often used a ballpoint pen for drawing . The ballpoint pen is thus useful for me . If you finished a medical college you have to be able to diagnose this case . Suddenly I felt something strange , and she looked ill . The way she sings made me think so , and she seemed to be very confident to sing and enjoy singing and such . But I really enjoyed this race and I tried to move it to a safe place , but before I did , it got up and started to walk . They are little Einsteins , totally free and always eager to learn new things . Of course you have to be careful not to force them to do things which seem / are meaningful to grown - ups but do n't mean anything to kids ) , and you should n't expect any immediate results . What is an appropriate subject for small talk ? However , we should n't talk about money or private things such as politics and religion unless they mention it first . There are many advantages to small talk . Everything stands on its head . This year we are repairing and liming our home together with my son . As the population density increases , various problems arise : air pollution , water pollution , lack of water , waste disposal , and energy consumption . He enjoyed the long slide . But as I have been exposed to a lot of kinds of English on the net , Even though they have Indian accents they seem to be okay to work and live in America or other English speaking countries as members of society . Are you interested in the news ? It 's very difficult to understand all the information , for example , political , economic , and societal problems . Some of my friends do n't even know who the the prime minister is in my country . I was really surprised and shocked . We eat fancy dinner ( actually I eat KFC ) and cake , and drink sparkling wine Today is my birthday , but just like every year , nothing special or important happened the whole day . I think maybe because people are busy with enjoying their summer holidays against the extremely high temperature . I always feel it is difficult to talk about my work , Besides , if you leave Obi just tied simply , it 'll be loose because the cloth of Obi is broad and thick , so it needs to be dealt with so that it 'll keep in place for a long time . I did n't go out except when I needed to get food from the shops . But in this case , I used soy sauce . But , I think it is necessary to relax occasionally . I was hurt by a strong team , which is the top team in my town . Finally , I decided to keep playing baseball . My teammate told me that `` You are abnormal and you should see a doctor . `` Preserved flower lesson The rabbit wearing green clothing is an easy - going guy . I saw a movie yesterday , because I felt like seeing one . My roommate recommended `` Skyline `` . UNIQLO is a brand name ; its corporation 's real name is The FAST RETAILING , established in Ube city in Yamaguchi prefecture in the western area of Japan . UNIQLOCK was published about a year ago , and is popular among geeks and people who are fashion concious . It is known as a very fashionable and technical screensaver . I think you will be surprised by the music and dancing . I know it 's important that I keep studying English to improve it . I will start studying by podcast from now on ! Today 's first diary entry : My co - worker 's daughter has been infected by the swine fl I hope the Swine flu issue will pass soon . . So if you want to study Chinese and your native language is English , you can contact me . Leave your email address or send a text ! : ) / / / After that I could meet him at around 7 : 00pm . It was the first time in almost 2years . Every time I drink beer or some alcohol , I always feel like going to Karoke ! I should be careful for not drinking too much beer . . . These days , dangerous lads were sneaking everywhere . But I believe that God helps me all time . Those are very healthy . Thus , women play an important role in the labour force . I wrote this entry preparing for the writing part of the IELTS . Current Japanese custom of Saint Valentine 's Day is changing that girls give chocolate to their boyfriend for that girls give it to their friends . My Wacom Graphire3 tablet ( computer drawing tool ) Therefore , I decided to change school to improve my English ability . My new school is just close to my workplace and has a good environment . So that is why I 'd like to watch a movie without subtitles . We did girltalk in a cafe over a cappucino and small cakes , which made me so happy . A typhoon will get closer to Osaka my hometown tomorrow morning . A professor might say something important about the exam in the class . My first impression of him was not bad . I love rock ' n roll : ) but I love bossa nova too : D I often heard that many girls have no sense of direction . 2 weeks have passed since I came to London . Now I live in an international dormitory , but I can not make any international friends here because my roommate is also Japanese . . . We have similar perspective on many things . I find that he 's so funny and smart . Just before we talked , he put his message for me in the chat box , and it said `` I missed you . `` I was happy about that he had thought in a similar way that I had . My ideal house She bought a new cottage recently , so she invited guests to it . It was a wonderful lake side cottage ! The lake is big and clear , and there is convenience area . Maybe it 's difficult but I want to find an ideal house because we can not live in it Because I go library to study English at 9 : 00a . m . In Korea , there are many holidays . I can still see the grape trellis of the neighbour . I 'm studying in college . Summer is soon coming , and I need to lose weight in a short time . Summer , I love it , but I do not love fat ! ! ! In has been rainy this week in Hyougo , and the weather forecast says it will be rainy until this weekend . I had Nagasaki Champon and it was delicious ! I like Nagasaki Champon . After awhile the Ex - president opened his mouth . I have to study myself . In my opinion : The reasons people read books are : This site is helpful to me , because I do n't have the opportunity to write in English . Incredibly , we had to climb about 500 stairs to go there . It was worth climbing all the way up there , we had beautiful view . I carried out their favor with pleasure . Boys be ambitious ! In some areas of China , if a family gets a girl , the husband treats his friends with red eggs and if it is a boy , the husband treats his friends with the red eggs with one black point on each of the eggs . They will hold a concert which requires us to come wearing black clothes . We are in a room on the second floor of my wife 's parents ' house . It was very interesting ! And feel so happy everyday - thanks for eating icecream . I did not want to watch such disgusting movies , but I am very a honest and sincere person , so I obeyed his order . Most Singaporean friends laughed at me land said `` You pervert , How cheeky you are , This is not your PC but your landlady 's , Why did you do that ? `` . So Japanese government made a decision to stop providing electricity in Kanto distinct , even including the capital city , from tomorrow . I like sports ( especially karate , table tennis ) , and I also liketraveling , films , and photography . I was almost done . Only foreigners , Asian people in particular , live in the city . If there were not Chinatowns in the city , Sydney would not be so active . You will be able to see its huge and beautiful Chinatown . Those districts are not like Japan , but like China as well . I hate the English article systems . So when average Japanese students study English , we are always suffering from these devils lol . If English speakers study Japanese , is it difficult for them not to use the article system ? Warsaw in Poland is very famous for hosting the International Fryderyk Chopin Piano Competition . It 's a day for returning a present to a person who gave me a present on Valentine 's Day . He had a brother named Moon . Lately I have been thinking about how my life will be in the future with my family and friends . Okinawa is an island and is situated south of Japan . Okinawa has a unique culture , food , language and atmosphere . I have not decided on any of the trip details as yet , but it will be nice trip ^ ^ I hope I can go to Europe in the future . I have always liked Baroque music , especially Vivaldi . Which kind ofgirls do u prefer ? But it 's difficult for me to talk to someone fluently . l am Mahi . I 'm a Japanese engineer . I hope I can speak and write English , and comunicate with some people ! There was a few minute blackout , because there was a power / electricity interruption in my house . Today , I watched a documentary program on TV . I know that it comes from a famous Japanese cartoon and was remade as a soap in Japan and Taiwan already . But , after I saw the drama with friends , I became hooked on it . ^ ^ Although it includes unrealistic situations , and is sometimes hard for me to understand , the main actors , who are called F4 , are gorgeous and I ca n't [ find a reason to ] object to its popularity I 'm worrying whether I can do it by the deadline . Not Japanese music . something is wrong with my Skype mic . It is a tough month at the university , but there is nothing to do about it . On my Christmas list I said on my Christmas list She was diagnosed with a health problem recently . I should keep a record of my body 's ailments . I saw the beautiful snow , but temperature go down . One of the most beautiful things in the world is watching a baby growing up . `` Kyle and his men were able to take a great many photographs of the mountains below . `` soccer is played around the world . I enjoyed playing soccer . Now in the new millennium , scientific technology has increasingly advanced and the disparity between the wealthy and the needy have greatly enhanced . Some individuals have link the gap to the advanced technologies . However , from an empirical view , I really hard - pressed to imagine how the spectrum of technology has attributed to the wealth gap since it goes without saying that scientific technology candecrease disparity between the wealthy and needy . To begin with , the proliferation of the information highway have taken possibility to the poor to operate a host of things , which would have been unimaginable two decades ago . Moreover , it is wild acknowledged that the mobile phone , one of the most significant inventions in twenty century , has transformed individuals ' lives into highly efficient and convenient living , especially for the poor . By pressing a button , we can connect with anyone anywhere , which in turn enriches people 's life various and enables the human race living in different economic statuses . I guess I need much more vocabulary and a large amount of reading . because I run out strange things I remember that I havne n't been contating my boyfriend for a long long time . I have taken charge of all arrangements of on - the - job training . Today , I enjoyed my time in my house until my work started at 5pm . Every day , my work starts early in the morning such as , at 6 : 30am , so I went out before dawn . And as I get older , there is an increase risk . It is interesting . Since we first met , we have spent a lot of time together because we study at the same university and we always take the same courses . I have a constant headache these days , especially when I hear loud voices . I love to plan birthday parties for my children ! Last week , I met a strange man . It has many kinds of issues and organized by the level of difficulty . So , I do n't know my future . . . The reason why Philippinos and Indians can speak English is because they used to be a colony of America and they had to use English to live a smooth life . First of your questions , I think the most popular season for wedding is spring . It is weird : ) Maybe she asked the cabin attendants to write a Japanese message on her expensive bag on the plane lol She also said when her fans see her in Japan , please write a message on her bag . Today , I am going to go to a photo shop to get a picture of my family taken . I liked to see them suck saps we fed them , and occasionally fight head to head over saps or females in the plastic case at night , as they are usually nocturnal . Fishing was also my favorite activity when I was in elementary school . This morning , an insurance lady visited my house and offered me the same job she does . That was very annoying . The first time , it was an old event during the Nara period . Today is the turn of the season , We have distributed medical herbs to avoid sickness and misfortune . I thought that this site would help ppl who wanna improve their language skillz yea I know I have & nbsp ; this lonely diary which also can help my study The first thing important in education is knowledge . Education gives us the knowledge of the world around us . Education is not about lessons and textbooks . It is about the lessons of life . Again Euler , this guy never stopped . He always speaks like , `` Let me blahblahblah , `` or `` Please allow me to blahblahblah . `` I learn many things about both English and mathematics from him . As the Beijing Olympics started a few days ago , I think many people are interested in this topic ! Ryoko Tani could n't get a gold medal , but she got bronze medal . I went to the Nas & Damian Marley Japan Tour yesterday . They performed for about 2 hours . It was very exciting , so I watched it 15episodes in one sitting . So I WILL get it this year because The employees do not need to domath or hire accountants to get their tax return . However , t people who are self - employed , landlords / landladies , or have certain types of expenses over $ 1000 , have to report for their final income tax return . It has been raining in our city for several days . I felt so bad . Everything is bad . He is a busker , who does acrobatics very well , usually performing in the square of Xinyi Vieshow . It 's exciting to dig an unknown story . I think this site is really useful for people who study forein languages . This weekend , I 'm going to run a marathon race which is first time for me to run 42 . 195km . Now , I 'm a team leader of ekiden which is a relay race run by four people , with each person running running five kilometers . I want to lead to team the triumph , and so I want to have superior record . But many Japanese think that they are reluctant to divorce if they hold a wedding ceremony that costs much money ! ! I am annoyed by my toothache , but I 'm looking forward to going to the dentist again . According to the newspaper I read recently , it is easier to get a high salary person to produce high quality goods than a low salary person . Furthermore , in my case , when I worked with a low salary , I could n't gain any interest in my job and I answered yes . . . Since I had just gotten out of bed I was still in my pajamas . . ( ^ ^ ; But he said that he was traveling around the area and suddenly thought that if we ( my family ? ) were home , he wanted to come visit meet us . Anyway he is very cheerful person , so we had agood time . I think I need to take some gift to him this Friday . Do you think a bottle of alcohol is a good idea ? By the way , I was surprised when I came here . I think Japanese have difficulty accepting people coming into their houses except themeselves and their family . My girlfriend chose green latte . I chose hot chocolate . We ate together ( without our boss ) and my colleagues liked my dishes . Every time when I promise others to fulfill an assignment , I can accomplish it very well even though the task seems unconquerable . Moreover , I am afraid to dissappointe others rather than I myself . I like different coffee . When I 'm sad , I drink cappuccino . When I 'm deppressed , I prefer black coffee . I used to limit my time to 30 minutes , but 10 mins is more intensive and makes me concentrate more . It 's a time when many people make their resolutions for the whole year . Keep your fingers crossed ; ) However , it is difficult to keep my tension calm when she seems not to hear me , or does the same mistake . The sheep was finally found by the shepherd and felt relieved . I am Buddhist , but unfortunately the temple generally do n't give this kind of service periodically for small children . It must lead to increasing of the enthusiastic Buddhists in the future . different world I overslept this morning I put on my clothes hurriedly and went out . Because I made a mistake . So please tell me how to study speaking English . Seriously , it was super expensive ! I found many colorful fighting airplanes , flying in the sky . Then I realized it was just a dream . Hi everyone ! ! ! ! ! ! ! I bought two puzzles because the puzzles were on sale . For about an hour we continued walking , visiting many offices , ascending and descending stairs , and opening and closing shutters . I must go to take a shower and make myself beautiful ! Scenes of destruction broadcasted on television make me sad . I will go to convenience store to make a contribution tomorrow . My boyfriend went to Guangzhou to make clothes for his fashion design competition . I was happy because I helped her . I lack physical activity . However , I think there will be a lot of professional athletes competing for China . I 'm really sorry that I did n't talk a lot with my friend . Even though my feeling is not good , I had enjoyed the time with my friend , I do n't like a person who says , ` Because I am a very busy person , would you do that ? ` But these days I think about my studies and how I can develop my skills in language quickly all the time , so I 've been trying to find some books that will help me to learn this language . Actually , I like to study many languges . I am a teacher , I teach chemistry in senior high school . The text is about well known people and their private lives which nowadays is often exposed to the public . The author of the text gives us a shocking example about a policman from Los Angeles who used police computers to find out private information about the stars . Probably the policeman searched the information about the stars in order to sell it to celebrity magazines , and the police database as well as the internet are places where private information about stars is really easy to find . In Japan , the age of adulthood is 20 . But now , I do n't need to drink alcohol secretly . But she played very well . when I used I - pod nano , the battery of that would be really fast gone but now when I use iPhone , the battery is longer than it ! I am going to my family 's at about 17 pm , I think . I want to overcome those problems , so I registered for a new site . ( Really , although I have registered for it , I have n't used it because I thoughtmy PC did n't have a mike . Recently , I was asked which train to take by a middle - aged traveller on platform 15 at Shinagawa station . I worried about taking the TOEIC Brige test tomorrow . So , Do other countries have TOEIC Bridge tests ? The TOEIC Bridge test is a primary test . I do n't know what to say . And tomorrow it will be hotter ! uuugh - where is the rain ? . . . Today , I was fainted at a morning assembly . To make a friend learning a second language is essential . My friend , who will get married in May , and I went shopping to look for material for her wedding bouquet . We finally found the best flowers , my friend smiled beautifully . I 'm not familar with the company . I went to study with my friend I went to study with my friend today near the BTS saladang We have been studying English and Thai for a long time . I was happy to see her today because last Wednesday I did not go to study with her . I had forgotten that I had an appointment to study Chinese with her . I was happy because she was not angry at me . Who said sorry no , I am busy very much at the moment . I was reading your diary already , I see that you have improved . Thank you for reading my journal entry all Japanese and English people , have a nice day . . . . . . . . . . . . I ca n't speak English well but I have to study English . When I was walking on campus on the way to pick up my car , a woman stopped me and asked me the way to the Pavillion . Copy or Homage ? McDonald 's Happy Set for children is nice for adults too . If you have a coupon from the mail , you can get it cheaper . I am preparing for the TOEIC exam . The test is on November 31st This is my first time to write an English daily diary on a website . KAWASHIMA will be traded to another team in the Premier League ? I heard West Bromwich Albion FC in the Pemier League made an offer for him , Next October I 'll run a marathon . Now , I will practice it everyday . I 'm still a student in a foreign country ! ! ! ! ! ! I do n't know much vocabulary . I have never written this kind of sentences before so I will try to write it by following my book . I take comfort in watching sitcoms on my laptop . Although it was morning , there were a lot of people , especially foreign visitors . We bought some souvenirs for our family and friends and afterwards , we went to Tokyo Station to take a bullet train . We returned with a lot of stuff . My name is Aya . My idea is you are either a victim always affected by your external environment including people or . . . I went to `` Ryuichi Skamoto 's Piano Solo Tour 2009 `` on April 2 . I promised myself that I write a story here once a week at least . Summary of plan of a new Microsoft operating system Seriously ! ! Here is the reason why job - hunting in Japan is terribly complicated . Therefore it can be a huge disadvantage in job - hunting not to work at a company right after graduation from university and to be `` KISOTSU `` . - Dream collaboration - He continued , `` This starbucks works in collaboration with Tsutaya ! ! Khabarovsk is a large city in the Russian far east and it takes almost 2 or 3 hours to get to there from Tokyo by plane . They built cars for competitions and later , in 1947 , also began to make sports cars . It was so windy that my kite flew very high . I remember my first shopping experience on the Internet in 2003 . I had scored some points , and although my colleagues helped me , I could n't continue playing . Some would just fulfill their ( sp ) passions for languages , studying different languages and exploring different countries , cultures , histories , cusine , . . . . . . Then I got 2 tomatoes from my apartment 's owner . Robert 's pale skin & Tayloar ' abs were fantastic . . . . maybe the movie 's promotion strategy . another is in charge of the wedding car , Married couple keep it as a memory for all their lives . People usually thinks murder is absolutely a bad thing . ( I do n't think it makes sense , 'cause that should n't be a reason to kill people . He was arrested a few days ago . I might be able to improve my English speaking but my grammar is horrible . So I want to ask everybody how do you study a foreign language ? I will study more and master it to become a more sophisticated ( resourceful ; ) man . TV news about Greece reminds me of the trip . We enjoyed walking along the seashore , eating Greek dishes , and cycling around the island . It was very windy everyday , and it was cool to swim in the sea . The preperations for the presentation this week , household tasks . . . We are living with problems . Work problems , family problems , money problems and stuff that we have to solve . If we can not solve them , we will feel a little bit down . So we need to vent and relax to balance our life . We can go out for a vacation , watch a movie , listen to the music , do some exercises or just have a nice sleep to make ourselves better . Sometimes I do , and I have a lot of ways to relax . everything is possible , please believe in yourself and action now . If it is good , I 'm going to acquire my driver 's license ! I wrote them exploring the Korean - Japanese dictionary very often . Today is Easter ! I think all of us should remember the Jesus ' death . I 'm just going to get a part - time job . But we could visit only two , because I did n't wake up early - _ - ~ ~ ~ as usual . When my lesson finished , we went to center of our city and decided to begin from there because there is many of temples and other religious organizations . In a Japanese map , Japan is located in the center of the world . I do n't know if he actually meant it , 'cause I am planning to go somewhere for travel after the exams are over . who knows from which country you come from in order to help me on this website . Just a question . I watched Dragon Ball a little while ago . Dragon Ball is an old Japanese animation . I love Dragon Ball . It is not too much to say that I grew up with Goku , vegita , kuririn who are characters in Dragon Ball . The heat wave is expected to continue for a while . I 'm looking forward to the cool fall weather . The thunder was so intense that the windows trembled and car alarms sounded . I will let my shop open in April 1st Maybe , it 's time to give up now . Even though it is still late June , the air temperature became 31 degree celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insurance . My duty still continues , when I finish to talking to the boss , I have to go to a motor bike shop to renew my bike insurance . He is a mentor in my life and offered to support me financially when I decided to study in the Netherlands . Recently he offered me financial support again . I emailed him this morning about our plans for tomorrow . I drank heavily ! I want to go abroad in summeeeeer vacation ! ! The demerits of capitalism would be if you lose in the competition , you may not get a bonus so the system is good for winners , but it may not be frendly to losers . So , in a capitalistic society , there is a need for a safety net so even the losers can live happily as well as winners . It 's required to live abroad or if you work in company which requires you to speak English . `` and they ( in their cars ) slept for one night . Now , They have been rescued by the Ground Self Defense Force . And finally , the snow was 138cm ( = maximum ) between the 25th and 26th . I 'm bored . . . I miss my friends , but it is hard to meet them for various reasons ; marriage , moving . . . But I thought `` If I do n't say anything , my partner ca n't tell me anything `` , so I said everything I just had thought with courage : ) I decided to join an English conversation school called `` Rare Job `` today . I applied again and I succeeded to recontract for more 2 years . My mother managed to even go skating . I was surprised when I heard this fact . I think `` a couple of `` is a useful expression when you speak English . Moreover , gasoline , which is fuel for automobiles , is made from fossil fuels such as coal and oil , and the process of making it may also need fire , which causes CO2 . For example , the higher the global temperature is , the higher the sea level will be and as a result , some islands will sink . Of course people who live on these islands will have to leave their country . temperature has been increasing . If global warming lasts , our lives will be destroyed some day , and these effects are mainly caused by driving automobiles . According to recent research , we can get more than 80 % of information about other 's characteristics based on looks . This means that when we make judgement counts on appearance , we can know his or her characteristics It 's very simple to understand and full of obvious cases . I like playing video games on Xbox360 and listening to music . That 's all for my introduction . I feel like I do n't want to do anything all day long . So opening the window and checking the weather is the first action I do when I wake up . It was nearly terrible . Sometimes people in foreign countries do n't understand it . Tiger Woods has fourteen girlfriends . Maybe the action / activity has to be a single , atomic action for the continuous tense usage and the difficulty is the consideration - is an action is a single or , actually , it is a set of actions . 30 ( Mon ) was a bank _ holiday in the UK . Self - introduction Hello everyone . Especially on the first day , a very sexy and beautiful woman Singer ' IVY ' came She works at cosmetic company . I paid for the meals for my friend when I did n't have money to pay for it . I apologized to my friend but she seemed to hate to pay for it . I negotiated with my friend who will pay for the meals next time . We usually call each other very often , sharing all the small details of our lives . I think it 's tasty ? ( It seems tasty ) It 's a good thing to learn a new language from a professional teacher . Akira is a member of Exile , which is Japanese pop music group . They are childhood friends and Akira is four years older than Masami . Of course , I have the original Japanese version . It was my third time and quite interesting . : ) And what I noticed in the class is that there are many Americans who tend to drive agressively . It 's gon na be ridiculously expensive . I talk to my parents on Skype every sunday night . English instructor murder case Recently in Japan a popular topic is who youg man killed english teacher three years ago . As you know , the other day a major earthquake hit Japan severely , especially the Kanto area , and a lot people there are facing many difficulties . For example , according to reports , they suffer from food shortages and ca n't get enough sleep . To be honest , the earthquake has little DIRECT influence on our daily lives . ( Of course , it has many indirect influences on us . This is shown by the fact that I 'm very very worried about people in Kanto , partly because many of my friends live there . ) But I 'm suffering a kind of setback . But at the same time , I also think I manage to brush up my speaking ability to some extent by reading books or listening to many materials in English . So nowadays I 'm reading a lot of newspapers and books and watching videos or movies in English and thinking how I can get a chance to express myself in English . My hobby is listening to music and playing bass guitar . For example , I know the phrase `` Lehman shock `` , but I do n't understand how it effected the World Economy and ca n't explain it well . Now I am not a student any longer , so I think I need to have knowledge about these things . Therefore , I borrowed a book called `` To the people who became working people without understanding economy `` written by Akira Ikegami at library . I hope it helps me gain more knowledge to understand the economy . I really dislike reading books , but I try to do it little by little . I watch it whenever I have free time like after work and / or on holidays . Write to me , please ! In a large scale company , it is difficult to evaluate each employee 's contribution to their company . So even if someone could achieve his best result , he can not get a bonus because of his company 's loss . I 'm not surprised because the March disaster in Japan was broadcast all over the world . Many Japanese artist appear in this one ! ! It would be a Japanese - English word ; it means that ladies - talk about female - particular things . Recently I have found a need to study English again because of my Job . I think it could be a good practice for me but I feel it 's more difficult than before . I try to continue to do this listening . PS I love tennis very much so I play it 2 or 3 times a week , and if I find some free time I would search for a tennis movie in Youtube with a term such as Federor etc . If you like to watch or to play tennis , pls reply to me hopefully to be my friend ! It 's a fashion magazine in Japan . Some people may say that there are not as many places in their office , where they can smoke , as before . Well , it is n't something I should think about . I will go to bed early and prepare for the next day ! ! After the East Earthquake , two months had passed quickly . One of our deals is to combine our products with 3rd party products . I want to make friends who are interested in learning English or who like traveling . I study English at my university . Actually I had my first experience with a Pick - Pocket . Then I checked all of the pockets but unfortunately could n't find it . In the capital , Athens , the average temperature in January is 10 . 1 degrees , and in July is 28 . 0 degrees . It was a remarkable experience and interesting but I have to go back to japan . As you know well , Japanese is a minor language . And I know it 's very difficult in many aspects , like grammer , 3 different characters , pronunciation , etc . . . Also it was so difficult for me to understand what the newscasters were saying on the TV . This song is famous because of its lyrics . Her future self writes back to her 15 year old self saying that it would be all right , I am an adult now but even I still have difficulties but I am doing well so please do n't cry . And y friend taught me about that . It 's hard for children to judge which is right . In addition , students only put a lot of information into their brains in schools . However , vigorous pictures and unforgettably vivid sound would be engraved in their minds . Brazil ( Brazil ) , Korea , Iran , and Japan . Probably , my speaking skills will be better and better if I more phrases in English . I like this phrase , ' I could eat a horse ! ' it means that I amextremely hungry ! My first diary . Can we call them or their ancestors ' wild ' , or will they never be categoried as ' wild ' because they 've once been totally domesticated ? Now I have started research on subjects which I will study next semester . I studied aesthetics at undergraduate level and planned to continue further at postgraduate level and aimed to acquire an MA in that area . According to the professor , 3Ps ( Poverty , Population and Pollution ) are the most discussed topics in the aid organisations . I can understand it , but these topics are too broad to choose a specific issue to write a dissertation . I , however , However , I didi n't speak and write enough to communicate with people . Because of the big / recent earthquake and tsunami that happened in Japan this year , so there is not enough electricity in whole Japan . Many companies in Japan take more holiday to save electricity as usual . Stimulating the subconscious may help your memory , That is very beautiful . Last week I had a bad job ( experience ? ) with one of my supervisors ( bosses ) over some issue . We had a good time at some Izakaya over a couple glasses of beer ( called ) chu - hi . I will study at an English language school for ten weeks . Do you agree or disagree ? A person should never make an important decision alone . There are many famous people who succeed in their fields : like one of the greatest entertainers , Micheal Jackson , or a good Japanese baseball player , Ichiro . Famous successful people surely put in a lot of effort . Given such points , I strongly reccommend you think that way . On the first half , the Argentinian scored two goals . I Caught a Cold . I 'm feeling really bad today . I am so sorry that I can not reply to some of my friends ' e - mails punctually . Unfortunately , summer in Russia is not long enough to spend it at home . As you know , Hong Kong is an international city and the financial hub of Asia . Thus , there are a lot of people who have different nationalities . Anyway , Hong Kong is located near the ocean so the humidity in Hong Kong is incredibly high . I think , due to the high humidity , Hong Kong people have great skin ! ! I really appreciate his meeting with me . Many artists live in this area and we can meet them and their artworks . When I was choosing some food and there was a cute kid . The boy said to me that one item was not so good , so I should choose another . I chose the one that he recommended to me . They seemed like westerners . I was moved and appreciated their bravery I 've decided to keep a diary in English starting today . I was hit by a car and broke my collar bone during my time in the US , so it 's a little bit hard to use my hand . . . the instructor of level 4 is British ! I went to sleep at 9 pm the day before yesterday , and I woke up at 1 am yesterday . . . Today , We shot a music video . So , it is not that incorrect . It was about 3 best friends putting message on personal ad for finding boyfriend / girlfriend . Invoice that you added was also written 1 of it . Of course , I will go to temple to worship with my family . My town is surrounded by mountains and nature . There are some rivers nearby where I raft and sometimes go fishing with my father . It 's really peaceful . If you search for the city on a map , you 'll see that it is situated in the Ural mountains . Some tourists are very dissapointed with this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains , and if you come there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( you can see on the first photo ) I could n't sleep because I watched football games at midnight . So unpleasant - to feel yourself strange , empty . . . I want to feel refreshed . I hung out with my friends ( today ) . college entrance examination the college entrance examination is the most important exam in every chinese student 's life . this is a brief introduction of our country 's college entrance examination . I need your help . The first English book I could finish reading through was `` Fried Green Tomatoes `` . I could finally get to know the details of the story and And everyone was quite friendly . We should 've talked beforehand about which foods we would be bringing . Who can help me ? I have a problem with myself ( in my spirit ) . I ca n't escape my past . Those were my bad things such as being belittled because my grades were very bad . during the time it took them to leave home , Bae - chu came constantly to eat . Light Pollution They are for advertising , commercial properties , offices , factories , streetlights and illuminating sports venues . We should turn off the lights for a little bit sometimes so we can save energy and retain the ecosystems . So now let 's be responsible and clean the sea . I bought an umbrella for my friend . How wonderful the life is ! About TOEIC I decided to take an examination of TOEIC . I want to improve my English fast . and I want to work all over the world . They have a rule that limits the number of foreign players in the team . He gets a title and is proud of himself . It touched me and I borrowed the album ' ( What 's The Story ) Morning Glory ) from my friend 's friend , then I found that all songs on the album were so wonderful ! I could n't hear what you said . And , when I got a mail , my heart is very hurt , , , nervous . At that time , I was really tired and sleepy . A percentage of the audience `` decrees `` the success of all the work that is behind this show . The winners are chosen by an audience , who can vote for his , her favourite singers by a phone call or a text message , with a code number , and by a jury of quality . I am a lazy person , and I often give up on my declarations . Because they study hard foreign languages for various goal . The result of self marking was bad . After we knit the things , we sell them on the free market or donate to institutions . Because This club will recess from December 14th to January 4th of next year . It is the last piece that we need to finish the shape of our blanket . If I could speak English well , then I would n't have to study so much and working in Canada would be easier . The Game and English Conversation Programs This is my second time staying here . So I want to change my email address Tracy Whitney , the main character of the story , is a young , beautiful , and intelligent woman working as a computer operator for a bank . Ielt examination in September I would like to learn English . Only four days more and I can be back home . Also , I 'm beginning my summer vacation . I made a plan for this vacation . I want to join my cousin 's company and do work for him for free . I also think I can get more experiences . He bought some souvenirs for us . I think many Japanese people would n't want to eat a snack with a color like that . I need background knowledge in order to be able to obtain higher score of TOEFL . Anyway , I will buy a magazine called ' ' English Journal ' ' , but I do n't know whether it wiil help my background knowledge . His skills are unbelievably fantastic ! My friend and I went to Ansan where my friend J lives . We ate a lot of food in a family restaurant called , `` Vikings `` . I will go to the market and play with ma dogs . I wish to go to america and study abroad in order to get job in the near future . I hope I can find good friends to study language with each other . Yesterday , I was very busy because I had two exams , three classes and two tutoring sessions . When I went home , I just sat in front of the computer to watch a few video clips . I hope I am not depressed whatsoever . Yesterday , I watched `` The Lion King `` , the famous Disney movie . The blue bucket has polka - dots ( on it ) . If I speak English , I would like to visit many countries ! I ca n't express in English what I want to say , so I need to study speaking . And I want to belong to community , then I would like to make friends there . I was so excited because I like this brand very much . So he will be pleased . In fact , Naples is famous for its pizza . ; D It 's interesting for me , not only because of the story but also the illustrations are great . Unfortunately , I ca n't put the link of myfacebook on herebecause the national network control centre has banned it , so I ca n't connect with my friends there . My skin condition is pretty good and I hardly feel itchy . As one of the members here , I will do my best to communicate with others and write more dairies . I think I 'll be successful and change my way one day . He was Continental Delegate of the Congress , Governor of Virginia , State Secretary , Vice President of the United States and President of the United States . I would have often remembered and dreamed of it . Today I studied about FriendFeed ( URL This service is very useful for me to search the information that I got from each service . I 'm waiting corrections from everyone . But I thought for a long time and I decided I will stay this way You go abroad and meet good friends who have different cultural backgrounds but they make you feel that there is no border among us when it comes to friendships . Are the idioms and slang which are on the books still used in the world ? If not , how can you learn new idioms and slang ? At first , I was not so sure about this observation because there was an exception in one person , who works regularly but has the highest operational capability in the ship ; he can fix almost any mechanical failure which occurs during operation . I just went over to Yokohama where my uncle lives . Finally we rolled them carefully , and we 're done ! ! ! Anyway it 's really nice to eat sushi with students . What are the important things in a restaurant ? we should always provide a warmheart to them . comply with customers and give them high quality service . As a professional . I do n't doubt that we should have this as standard . How 's everyone 's day going ? I already knew there is no clear answer I got up dazy to day my brain is so confused because I have not slept enough . I love to travel to unknown or beautiful places . But , I will do my best to overcome all my problems . I thought `` cash out `` was unbelievable , because nobody withdraws cash in a supermarket in China , but it happens in Australia . We have few factories that make bats or the other baseball equipment , so the bats and gloves , everything except clothes have to be imported . Thanks for reading my bad English diary : ) We parked the car nearby and had to walk to the site because of the traffic control . During the event , we saw a magic show that was preformed by a good - looking young couple . However , when the midnight came , we could see two firework shows from her balcony at the same . Today was the first lesson . But I looked like the most foolish person in the class . Recent occurrence We have n't played on playground equipment for a long time . After that , we climbed to the top of the slide . Regarding the meal , some fancy dishes were served . But he did n't emphasize the safety of the food . Trimming is important because it is easier for germs to adhere to the surface of the raw beef . As a result , his restaurant caused food poisoning and killed four people . The purse was 81RMB . For us , it 's not that expensive since the purse is of high quality . It is actually extremely hard work to raise two newborn babies at the same time . I read an article about the stress that an older child experiences once a newborn baby is born . anyway , we have done it , all we need to do now is wait for feedback from our customer . Camping `` Twilight `` and `` New Moon `` , I prefer Twilight , because it is more romantic to me somehow . I was really excited to see kangaroos in the wild like this . It 's quite different from Japan . I 'd be grateful if you correct my English . Alsmost everyone , no matter if they are young or old , male or female , they are keen on it . It is really a challenging work since there are so many books , at least one million . I like reading , so next time , I will spend a lot of time there to broaden my horizon . Oh , I remember that I want to inform you that I am going to change my schedule so I wo n't write so often later . The doctor diagnosed that she suffered from hemorrhoids . So she stubbornly killed her desire more than ever . I 'm a sophomore at Hanshin University . I 'm a South Korean girl and I 'm very much interested in English , French , IT and electronics . There are radioactive contamination , earthquake and tsunami in Japan . So , I speak English at the school , but I usually speak Swhili in my village because most of my neighbors ( the families of my coworkers ) can not speak English . There have been cases when / where a dead body was discovered after weeks or months , and this was only because the stink spread all over the building . [ spread = spreaded ] I wonder if I can get English skills now , even though I 'm over forty years old . There are so many beautiful structures influenced by Christianity and I had hard time to forgetting it . If I want to talk about things that I like , I can talk with others who are interested in it . Each person has their own tastes . Here is a video clip , from the movie [ The taste of others ] . No doubt , natural gas industry is the most hopeful industry in China . If you find any mistakes , especially grammar , correct me . : ) Cuz , their MC and performance was fun ! ! But I can not go for a working holiday because of my job . So , I have got a lot of chocolate as a birthday present . I like chocolate , but not this day ! ! I hope to study abroad and work overseas . I have n't been writing here not because I am lazy or anything but because I do n't really have time . I played the music `` Silk Road `` composed by Kitaro at the rehearsal . I ca n't speak English well and typing fast . I 'll see the club member of the university . I was a part of a brass band when I was an university student . Now I 'm a little nervous . My company 's global language is English , however I can not speak English well . Some of my classmates plan to go abroad , and some prepare for graduate school exams . Though I like to read , I am not really good at English literacy . Hello , friends and teacher . I went to university today to prepare everything before receiving the cetificate today . I paid a lot of money there for the picture and my dress and associate old student um . . . Recently my younger classmate Raquel told me that there was a website which helps people to practice languages that they want to learn . There was a picture of Carl Lewis in a textbook . It cost nerly two hundred dollars to join this party , I got ta say . Hello , my wonderful friends . Do you like to listen to a story before you sleep ? I like it . Today we had violin class . But the teacher keep saying ' hold your violin up ' . Tommorow is the concert ( sort of ) . We 'll play violin at school library . My brother 's girl friend is Taiwanese . This year , in September . . . . Article 9 of the Japanese constitution states that ( 1 ) in order to aspire sincerely to an international peace based on justice and order , the Japanese people forever renounce war as a sovereign right of the nation and the threat or use of force as means of settling international disputes . Anyway , I had an amazing time because Japanese people would never imagine meeting famous people in person here . After I came back home , I told the story to my friends who are native English speakers , and they all told me how stupid am I . . . damn . Yesterday evening I sneezed several times . I will study English very hard . Actually I had been suffering from my knee 's pain I got last December , therefore I asked him some advice about which exercise would be good for my knee 's rehabilitation . He kindly taught me some stretching exercises and how to use a machine exercise and I did them for a short time . I thanked him very much and decided to go to that gym regularly . The Health Minister is trying to convince people of this . Medicine services should be free for everyone , people want to feel safe in the hospital , no matter how much they earn . He is good with children , never barks ? to people , and always stays by my side when we go outside . Winnie the Pooh - My review I do n't know why but I loved him and his friends , Piglet , Rabbit , Eeyore and so on . The characters are very cute but not very clever . Yesterday , I went to Yoyogi park , which is located in the center of Tokyo , and saw the cherry blossoms . Because of thetragic earthquake and Tunami atFukushima nuclear power plant , which supplied energy to Tokyo was dameged . Both its functions but especially its appearance appealed to me . ( Or , `` I was attracted not only to its functions , but also its appearance . `` ) It 's a technique that applies pretty seals or pictures on things with glue , and the things that are worked on are glasses , plastic bottles and wood , etc . . . We could enjoy verdant scenery anywhere when we stayed there . In 2005 , the black bears surrounding Toyama residents were a controversial issue . The lack of food in the mountains would have made them dare to risk their lives by coming near populous regions . Japan won against Argentina in today 's soccer match . I the enjoyed Chinese lunch , night view and shopping . My room , my clothes , my brother , and so on . . I go to college . She should n't . There were a lot of people waiting to find out if they were one of those successful candidates . I was quite annoyed by the important items on the agenda . These lessons are for the TOEIC test . During the lunch break , I was suprised to see my friend disguise herself as a `` Pokemon `` . I want to hold a halloween party , like how & nbsp ; American students do . I wanna go home ! to make a sentence . My job is in the service industry and merchandise management . Anyway , I will ask him to read it because that day is really important . . Have a good weekend . Recently , it has become hot . I would like to learn English and I registered on this site . She is tired in these days because of daily child care . From thenon , I often went to him to learn English grammar and vocabulary . I used to wear brown contact lenses for half a year . Although I know that contacts are bad for our eyes , I did n't believe it . And all the families are talking about it . While I watched it , I was able to study English and catch spoken English . One day I want to speak English like that . Because I want to study English more than I want to study finance . So I waited in front of the door , and then I entered it on opening time , so I was the first customer today . My classmates from elementary school I saw my classmates from elementary school last night . Besiedes , the cruel organizers of this test put many difficult and rare English words on it without any hesitation . The listening comprehension part especially is super difficult . On top of that this test has 200 questions , so if we come across successive difficult questions and we can not properly answer , we would be FUCKIN frustrated . If I can not obtain a high score on the 29th of January , I promise , I will assassinate the organizers of this test . Because my PC had some problems , I could n't connect to the internet . I had never been to an American school , and I was impressed with the classroom , corridor and students . I was happy they tried to speak Japanese as much as possible . one is singing a song , one is playing a guitar , one is playing a dram As each Mr . children 's member has good skills , Japanese people have been impressed by their music . Especially I recomend you a song ' ' HERO ' ' . Now it 's raining outside and it 's very cold , I really miss the sunshine and the temperature in the south . Open University It ` s my first day to know the Lang - 8 , I tried to use it once and succeeded . Have a nice day ! I am going to go somewhere for my English and IT skills . I work for a real estate company as a sales manager . And I like hanging out with my friends and finding good restaurants / bars / shops / etc . I ca n't hear them because it 's a noisy place . After that I danced with a Filipino friend . He could dive under the water without breathing for about one minute . This winter is especially frigid . Do you know the player Ichiro on the Seattle Mariners ? When I had online lessons between Japan and India before , there was no problem . I 'll play with my friend next Sat . I watch the news every evening . It remains to be seen whether it is feasible or not . Tomato sauce I made tomato sauce today . If I had had more energy , I would have gone to a fitness club . I am going to go to a Taiwanese restaurant for lunch with a coworker . The reason is clear ! I ` ve been to Go - kon party when I went to collage , but people say there is something different between student ` s party and office worker ` s one . I think office workers tend to join more seriously , because they have less chances to meet other people than students have . At last , I went to Utah USA 2years ago to study English & teach Japanese in an elementary school . which were some hand cream , body lotion and shoes . It will be hot in this afternoon , so I 'm going to clean the bathroom using a high water pressure machine . The good things waiting after that include drinking beer and taking a nap in this comfortable weather . I love my new job very much , and I cherish this chance . The weather has been cold for several days . Of all the seasons , I like spring the best . . Engrish is a funny English expression by a non native English speaker , especially ( by ) Japanese . ' All your base are blong to us ' ( AYBABTU ) is one of the most famous and popular Engrish expressions especially among Internet users . They are not very famous in Japan now , but I believe they 're going to be famous soon ! Thanks for reading . Do people who live in developed countries and are not materialistic ( ? ) think so ? There are many kinds of food which are not expensive and taste good . So , my next big journey is next summer . And I hope my English is n't too bad . So that everyone that reads this can understand what I wanted to say . . . I want to be a good student and a good girl this year . It makes me very happy to have an American friend named Almir . ^ ^ . My specialty is sculpture . And I must draw [ ? ] every day . I admire them a lot . I 'm a writer for Japanese daily newspapers and magazines . He taught me ' GO DO ' ( name of a tune ) which means we can do anything . She passed the entrance exam , although I was surprised . Jacrine 's books describe girls with big troubles , who grow to be independent . He 'd like to play a guitar someday . Thanks for reading my diary . Please correct my diary and be my friend ! It is hard to get interpreters if the language is not so common , for example , Swahili , Nepalese , and so on . . . . . Long interview take almost all day , while short interviews takeonly 30 minutes or 1 hour . I literally ran to the nearby supermarket and purchased a steriliser . ( x _ x ; ) It seems the temperatures in September and October will be higher than the average of the previous years . . . It 's because of the tuition fee . The choreography started yesterday . I will do my best on my essay . When a woman is stressed she instinctively feels a need to talk about her feelings and all the possible problems that are associated with her feelings . finding solutions to her problems I 'm worried that recent Japanese youngsters tend to go to various foreign countries and know much about foreign countries , but they know little about Japanese history . For example , I manage to write this sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . I mean if an English - native speaker is very good at Japanese , is she / he thinking in Japanese first ? Hi , I wanna make some foreigner friends She also says that I 'm not paying enough attention to French because I started with Japanese this year , and it makes me really angry because you have no idea of how much I enjoy studying Japanese . Finally , I transferred my day off from today to another day . Then I will make pickled Chinenses and eat that them with curry . I believe in your help guys : ) We choose `` OMIKUJI `` for the fifth time ! ! In Japan , people choose `` OMIKUJI `` to know your fortune for the new year . This book level is beginner but it is difficult for me . Since most of them are online shopping I hope I 'll receive the dresses exactly the same as they are posted . This recession has hit me pretty hard . I have no experience of editing and writing , but I want to try . I do n't know this job is really interesting , but I want to try . Today , at last , he recovered and came back to our house . Most of the time , Spiderman is airborne with his web , swinging from building to building . . . I 'm going to a bargain sale this weekend . because I have graduated from high school . I 'll go to bed early to prepare for tomorrow . I 'm not a Tri - Athlete ! First DialyDaily I read a book for 30 minutes , I heard English CD for 30 minutes . Recently I read a book called Christmas in summer . But I want to write , since I decided to write in the diary every day ! ! I ate a watermelon for lunch for the first time this year . Is it the same in other countries ? My duty is oversee and analyze ground water , waste water , exhaust gas , and so on . Compared to other divisions , we have a lot of overtime at the end of month . Today my daughter went back to Okinawa , because she has to work . I wrote a diary because I want to practice my English . Yesterday , I had a terrible headache so I took 3 pills of medicine . But if my head aches from a bad headache , I might as well take the medicine to endure it . I barely found the pharmacy and I got treatment . I watched 90210 I watched the final episode of the first season of 90210 . I 'm looking forward to watching the next season . They were very healthy . Extremely , dirty and fun ! I ca n't tell whether it 's going to be the same in the case of Japan ( halt of growth in economy ) , but it 's sure that the economy of Korea depends on the flow of the real estate market . Before entering university , I did n't worry about my writing because there were not many changes to write one 's opinion at school under the Korean education system . Today I studied physics for an exam . In the library . I 'm very happy because there are many people who have helped on my way to success . firstly , I want to say thank you to my good friends , my classmates and many other people . They encouraged me when I fell and supported me when I made decisions . They gave me a lot of powers and made me confident as I was constantly moving forward . Because they hurt me , I was motivated to continuous efforts until I became an excellent and successful person . So , from my career standpoint , I thank everyone I 've been in contact with , no matter if they helped me or hurt me . What shall I grow ? I was given some onions and potatoes . I plan to grow summer vegetables this summer . Are there goyas in other countries ? and I found one of black cars hung flags on its bonnet . The organization that made the JLPT does n't publish the test questions right after the test . However , a lot of text books for preparing for the JLPT have been released . I 'm looking forward to it . Although I 've had an ID in lang - 8 for a long time , I always have no time to write a diary entry . Most students are under stress like me . This Saturday it was my first day in college . She was nice and cooporative . The lecture was about how to write a good essay , and I have an assignment to write and I need you to help me to improve my english level . I entered university this summer . After that , I can calm down . They are very big and are strong . I went to the movies with my husband to a theater near my home . I felt real action . there was something in front of my eyes . because I payed 1800 yen plus an extra 300yen for 3D . It was cheaper than other similar courses , because I had a professional ? invitation . Help me to love learning English again ! How can I get rid of these bad feelings , how can I learn to love using English joyfully again , like I did a year ago ? They do n't help other people . She is studying Japanese . But the weather is cold and gray . Tom Waits is one of my favourite singers . it was my first time watching a game . Good evening everyone . I will go to Shodou school now . I am sorry , I ca n't explain well . I have trouble with the language and enviroment . . . . . I was surprised at his thought I came across the Japanese speaking Japanese . If it 's true , I think the Norwegian goverment has to review their laws . So she asked me , `` How do you say in English , black framed glasses are popular in Japan ? `` Although , I know she is nervous about speaking English , I have no idea why she wants to know that expression as the first thing ! There are 6 hours to go to until the beginning of the match . I answered two phone calls from my clients regarding a big contract , which could feed me for a couple of months . Today , the weather is warm and comfortable . Following that , we played basketball together . How to condjugate on Lang8 ! ! Everyone danced happily . After he left home , my daughter and I talked a lot . When I get older I want to travel to Canada because I would like to know the country where I hope to spend the rest of my life . If I see that Canada offers the opportunities that everybody says it offers , then I am going to go back to to my country and apply for a permanent resident . . This is dreadful for me because I must write treatises in English . So we are going to buy some vegetables and meat for dinner now . she was angry at the TV , and she went to bed angry . It is the central city of an island which is northernmost place in Japan , Hokkaido . 2 days ago , I wrote a journal about whale hunting . My journal asserted `` Australian ways of protesting against Japan are very impolite and rough `` . Surely , if Japanese people try to change something or protest against something , we would only read a note of protest and shout something a few times in front of the oponent 's organization . lol Of course , the opponent 's organizationwo n't change their attitude orway of thinking in any case . Japanese people should watch other countries ' ways of protesting and their passions more . I am sad because my sister deleted the program for the keyboard I use to write in Korean ! . It reminded me that I 've seen a bear - shaped keychain in a shopping center near my home . So , I thought it was a girl ! I think she made me a little better looking . I know that bad things can occur all at once . From September 22 to September 24 , I went to Hokkaido for a trip with the friends of the university . My teacher gave me until May 4 to hand in an essay . Finally , if you decide to buy a dining table mat , what kind of style you prefer , a table mat that would put you in a good mood or a table mat that would open your appetite ? long long ago I studied english , but I still remenber a little . My task today is designing . Since we got two new workers last October , the opportunities I got to design web sites decreased sharply . So a person who is good at everyting has to do the remaining things . But these kinds of expressions are not familar to me . I 'm using a nicotine patch . When I checked my diary this morning , the friend who I met for the first time had already corrected it . I appreciate that all friends support me . S . I want to use more precise complex sentences . I read a new guide book for the JLPT . It is sure that the test will focus more on comunication ability than grammar . I have not been able to write an entry or correct other entries although I 've sometimes visited this site ! The reason why is that I 've probably caught the Rubbela virus or another strong virus ! ! ( Oh my gosh ! ) 39 degrees ! ! You know , in Japan , the temperature is still high and the sun supported by the summer attacks us , but at least for me , it was such a cool day , or , if anything , a cold day ^ ^ That 's ridiculous . Today I asked him to help me correct my studying abroad SOP and I told him I need it tomorrow , that meant I wanted him to accompany me , but after correcting my SOP he rushed home and told me `` I have a couple of things to do before I go to bed `` . In the beginning , I supposed that we had interested in each other , because he gave his phone number to me and said `` If you want to call me , call me anytime `` , and asked me to take MRT home together with him . Yesterday , I attended a party from the company where I 'm going to start working this spring . Another student and I will start working for that company and we are going to be in charge of global marketing . Then , I was puzzled because my English speaking , listening and writing skills are poor . It has already been about three weeks since I registered on this site . A surprising event A officer who was taking care of international students said that he could help me get accepted as soon as possible . Thank you guys , Thank you for supporting me ! ! ! Is it called ' being selfish ' in English ? You ca n't understand what I 'm talking about from these sentences . . . We can obtain so many things from that . Although they cherished the notion of life - long employment and the idea that the older you are , the more likely you are to get a chance of promotion , we do not seem to have these kind of thoughts at all . We know that we have no guarantees in a company . Hello all my friends . We should never forget those who are sad about their important family member ' s Of course I want to be glad that they are coming back home safely with all of them . with everyone else ? But at the same time , I never want to want forget about all of people lost in the war of Iraq . I caught a cold . Maybe because I was around lots of people yesterday . I can read simple sentences now , but I ca n't really understand normal passages and books . Today he took me to a restaurant as gratitude for the present . He thought that I rarely ate meet ( beef ) because I live by myself . Father is going to Tochigi for business tomorrow . If I eat a hamburger slowly , chewing it well and tasing it , I must regret having it . The production is started after ordering , so I have to wait for another month before the product arrives . She was so off tunethat I could n't remember what the song title was . The mattress of my bed sinks too much . The throne in question was a graceful sight : it captivated the eye of a beholder with beautiful , hypnotic silver filigree decorations . Fascinated with Lord of the Flies Nearly almost all my friends have it and they all reccomend getting it . Because I did n't have enough money with me at the time . . Today 's examiners were about 60 students of an elementary school , a junior high school , a high school and an university . because the Korean team played so fantastic . There is no need to mention that when your father is getting married you ( as the most beloved and wise of all cock - owners he has ever been acquainted with ) instantly become the one who has to put up with all the fits of pre - marital neurosis ( as well as being an unlucky witness of all this stuff ) , take care of all the sodding preparations ( `` we need to do a great deal of work to make this day really special `` , Goddamn it ! ) and just try not to go mad or turn into a `` bridesmaid bitch `` . frankly I do n't like these things . . . `` interested in women . . . `` Today I have found out about a postgaduate program . But I decided not to surrender and for one month ( it 's time I have before the interview ) to make my English as good as I can . And one step of my plan is everyday writing at Lang - 8 . What should I do first ? I like cooking Korean food . ^ ^ im a high skool student who 's tryin to learn english n been stayin in aus for nearly 2 years so far . firstly I will just write about my self , I am 18 years old now n turning 19 in a few months and plan to go to uni in jap after leaving skool where im now goin in aus . I 'd really appreciate if someone taught me here coz honestly I was totally lost at how I could improve my writing skills , there r no ways to improve my writing skills around me . btw , it 's already been a half hour since I started writing this lol im a very slow writer obviously . well wat should I start writing ? I reckon there is nothing like japan in the world , you 'd probably understand if u have the opportunity to go visit japan ^ ^ What a lovely phrase ! A metaphorical expression . / A metaphor . After we fill half of the pot up , the rising of the water also become obscure . Nobody can sensitively recognize the rising , and then suddenly this pot becomes `` unbalanced . `` This kind of corns , in other words , many intermediate Japanese students will start thinking `` Is mastering English from 30 years old impossible ? `` , `` Probably I do n't have a talent for language `` ( ? ) `` I do n't think my English is improving , It 's waste of time and money , I gave up . `` I tried to use a metaphor in this journal . On the way home , I bought seven bottles of maple syrup and three boxes of maple cookies at a supermarket . Are you actually using it ? Anyway , I think it 's a good idea for revising words , not by learning new words in my opinion . It 's also brilliant for learning KANJI CHARACTERS < 3 xD . I have to stay here until tomorrow morning . The other day , I went to a musical instrument shop and bought a saxophone . This morning , homestay father took me and my roommate to school , and taught us how to catch the bus go to school and back home , and he is interducing a christian church to us . There is beautiful scenery , modern buildings , and animals which I have never seen before . I sent you a sweeeet present ! From your crazy sister , Haruna Like my mum and dad always love me despite all of my imperfections `` When you have a daughter just like you , then you can understand how I feel about you `` . After that , the girls prepared dinner . It was very delicious . I did n't know which course was suitable for me , so I selected the basic TOEIC course . correct me if necessary . I am Lena , 15 years old . Well , I like swimming , watching TV and different movies , listening to music , watching football , hanging out with friends , etc . This is Oribe ware , one of Japan 's famous potteries . It has a strange design and beautiful green glaze on it . When I drink a cup of coffee with this , I am very relaxed . Last night one my good friend and I decided to make an air balloon out of paper . And we had a balloon with a diameter of one meter . We had a flat paper which turned into a big ball ! Today after lunchi thought : `` I would like something else . . Sorry , just a question . Maybe because I lack a sense of security , some people might rely on their closest friends , their families or their boyfriends very much , but for me , I rely on my home a lot . Even if I get a boyfriend , I will choose to live alone , because even if we break up , at least I have my home , and wo n't end up without a boyfriend and no place to live , that would make me feel like a loser . I have n't contacted this for a long time contact Becase of not enough time and the low intenet speed in I went to my grandma 's home with my parents today . My grandma is living in a nursing home now . and my grandma will be joining the wedding party . Due to typhoon I do n't have class in the morning u know a typhoon is coming to japan . I can even attach photo of these buildings . ) But anyway I really want to visit other countries , and with a great pleasure I would like to meet foreign cultures . I exercise every night before going bed . In can by easily demonstrated by comparing different Asian communities , such as the Man lineage or the Asian - American community . To sum up , this kind of Asian community seems to be mainly the result of a Western idea . Neither do I feel isolated nor do I feel inferior . `` Reading thousands of books is not equal to traveling thousands of miles ; But traveling thoudands of miles can not beat communicating with more people . `` by Yu Minhong , the chairman of Xindongfang . Modern cities have been planned as business place , that is , the main idea is not have people living there . Today , I bought a bottle of rice wine , `` Fuyu no sanpo `` , from the nearest supermarket . I think this bottle is showing chilliness and silence , and its naming is very suitable for this bottle . The only thing you want to do is this shit `` , and because the little girl did n't have the force to fight with this sadistic ogre named Kabi the barbarian , she had to do all the things he said . Every morning I meet him on my way to school , so we quickly became good friends . If we asked for directions , they brought us there in person . So , we went to a hot spring which took thirteen minutes by car from our house . We often go there because it 's equipped with not only hot springs , but a heated indoor pool , too . I heard it was the same in China or in some of European countries I have problems with choosing new jeans . It 's so ironic - low - waist fashion comes to Siberia from warm countries , but everyone just accepts it despite cold and long winters in Siberia . I could n't believe it , but there it was in black and white , as clear as it could be . Please look forward to my diary . She is working in a kindergarten as a doctor . He faced about one thousand and nine challenges and finally , he met a person who was willing to buy his recipes . But I realized that I can access it with ease . I wish everybody a pleasant journey and a perfect future . Then , we climbed up the mountain . If it clears tomorrow morning , I plan to snowboard with friends . Thanks to lang - 8 , I am so happy because I could make some new friends on this site . I think next year will be more fruitful . At the same time I am trying to be good man , so I can maintain positive relationships with others . The first thing which came to my mind was , `` Why ? `` The second happiest is North Korea and , the third is Cuba . It is very interesting to try teaching ! Then next week on Tuesday we will act on film about our school life . Before this economic crisis began last September , a lot of workers had come to London from other EU countries ( for example , Poland ) . However , the UK , as well as another country are suffering financially , therefore it is very difficult for foreigners to get a job . To tell the truth , I have hated studying foreign languages . But there are few clouds today ! We used a separated room so going together did n't make sense . The main reason that I came here is that I want to get a letter of recommendation from my professor but also I want to take a rest with my family . I do n't know . I will make a presentation about a city : Hong Kong . . . and read a scary story . . . . Because there were just two banana sautes with powder sugar , no ice cream , no fresh cream . . . The purpose of this trip is to make inventory clearance , to report the settlement of account in Augusut to the board members , and to take part in a conference . It may be because of getting nervous or excited , however , I do n't know why . Please tell me the difference and situations between `` I will miss you . `` and `` I 'm going to miss you . `` In fact , in high school my scores in English were good or excellent , especially in structure , but not so well in reading and writing . When I entered university and met different students , I realized actually how my language needs to be improved . I 'm a medical student and I find difficulty in understanding some terminology , particularly at begning of my first year , even though I got a 6 on the IETS exam ! Now my medical terminology is good , but I need to improve my general language because I still ca n't read long stories or novels in English . I do n't like having to open the dictionary each time to understand a word . Then , I tryed to introduce myself . I majored in International Relations . Today it 's windy . I was so disappointed . . Day by day I feel the autumn getting deeper . I love watching baseball games on TV and English football premier league . Next month , I am going to go to Turkey with my girlfriend . Please help me to learn English This is the first time I have used this website with the help of my colleague . Just like in every other country , McDonald 's restaurant can be seen here and there in Japan . Many Japanese people do n't think that McDonalds ' hamburger is yummy . As proof of that , here is the result of a questionnaire about hamburger shops . According to this article , many Japanese think that the most tasty hamburger chain is Mosburger , a Japanese hamburger chain . His sudden career change was very amazing news in Japanese Economic circles . I was VERY interested when I was at his house . offense to Aristotle , but in my four years at ShanDong University , I have come to find that passion is a key ingredient of the study and Academic life was fascinating . What I remember above all was always being It was exhilarating , intimidating , sometimes even discouraging , but always challenging . Let 's appreciate it and look Refusal . It is always difficult to refuse a date , because I do n't want to look all conceited but I really do n't want to go out when it is not the with the right person . I had a lot of experiences like this and I realized that male and female ca n't be close friends . an overcoat is 3000yen , and a hair cut is 1000yen . How do we stop deflation ? My friend So , I used this opportunity , I met my friend who is a teacher at a university . I think that parents have to love their children . I didn ` t think it would be a love story and I was sure it was a typical modern book about nothing . I 'm tired I feel a little tired , I do n't know why though . Although I want to believe this world wont enter into war , I feel something worse ( coming ) . It may not be delicious to foreigners , but if you have the chance to visit Korea I recommend you try this food . I mean those who were previously diagnosed and require assistance no longer require assistance at this time or those who were diagnosed and now require assistance . I know it 's mean for me to say something bad about someone behind their back . Recently I went to a game shop to find some new games . This Thursday , I will go to Tokyo to attend a ceremony of the company that I will enter next year . I have been living in a student accommodation for about three years . Then it would not make ( any ) sense for me to stay in the Netherlands . Therefore I like this accommodation . One of my friends did not ( get to ) know his neighbour [ UK English ] for six months . So we would like to make the accommodation comfortable for the newcomers . I 'm learning to speak English in school because I studied very hard . . . . I 'm afraid of swine influenza . I want to play sports occasionally , but do n't want to belong to a sports club because it is too hard for me to participate a lot of days . I really wanted to buy it , so I ordered it on the internet soon after I watched the TV program . I skimped on dinner yesterday . and I met a lot of foreign students . But I had a language problem . Recently , I made many types of bread . I intend to teach Chinese around the world one day so I need to enhance my teaching ability . People gradually become to stay at home in winter . I think the weather is a very important factor that influences people . Before the food is done , my husband put part - baked bread into the oven so that we could have it with the casserole . You remember those days ; when your mother knit a sweater in the dim light for you , or waited for you until midnight because you stayed out late and she wanted to make sure you came home . You know that there are many memories like that . In the future , I might experience the new world with the one . Expressing my appreciation - A useful Hiragana website . I always appreciate your corrections to my journals . Why should people get TOEIC score ? Because my birthday is in the summer , it means I 'm going to get older ? I have native speakers in my school but I 'm ashamed to talk to them . It 's a pen set and culture gift certificates ! ! ! The interest in reading It is bad news for everyone . Initially , I was supposed to wake up at eight o ' clock and Monday morning A turtle lives a long life . Every time I have to write an English report , I can not help but use an online translation application . A phrase I like is : `` knowledge is power `` and English is the most useful power right now ; there are hundreds of millions of English speakers . It 's no problem if the new students have a good personality . We went to an Indian restaraunt . Their atmosphere is high quality . Anyway , I know I still have a lot of opportunities to improve my writing skills . This is my first diary on Lang - 8 . Now I major in english literature in university . Mubarak has been the President of Egypt for 30 years . They want to see the fall of Mubarak . Allah will help the people of Egypt . but the people of Egypt ca n't , because their government has blocked all Internet access . My Favourite Sports There are many beautiful clothes , dance movements in the film . Please do n't hesitate to correct my English . When the earthquake happened , he was in a mansion . I do n't understand it myself ^ ^ ; This season , a lot of colleges held school festivals . In my college , I sold Adobo . It 's a Filipino food . The goods were from developing countries . my first diary I 'm studying English every day . It 's because I 'll go to Toronto in Canada in April on a working holiday ! Eventually , I 'd like to get an interpreter license . But now , I 'm not good at English . Today , I tried to install EVERNOTE on my PC . It seems convenient for me . I definitely recomend this book to every child , but if it happened that some adult had not read it they should read this one . I got up pretty early this morning . Although nobody was walking along the dark street , I enjoyed walking briskly for about 30 minutes . Looking forward to the future , I can see this is going to be something I have n't fully grasped . I got the feeling that every skaters performed very well and they showed their high techniques under all that pressures , many expectations . Mao Asada , the 19 year old captured the audience by completing a triple Axel successfully . I like her performance in the short program . I spend everyday just attending classes , doing homeworkand hanging out with my friends on holidays . Even by doing so , it might be difficult to attain somethig special , but what is important is to try to have an awareness of issues and start a volunteering Barcelona was a very exciting city for me . Last weekend , I went to watch the rugby games . Thank you for reading my journal In the afternoon we played a difficult game . Oh it was crazy , I could not understand everything that the teacher said about the questions and the answer was also difficult but it was interesting . Recently , an accident happened . Japanese famous ex - F1 driver Katayama Ukyou climbed the mountain while training , for he has been planning to climb the highest mountain in the Antarctic ( south pole continent ) . They camped at the middle hight and a powerfful gust puffed off their tents . He said at the interview that he will withdraw for at least one year . The public viewing is an event where you cheer for the team through a huge television screen with a crowd . It was a good game for Japan , but I think that there was a substantial difference between Japan and the Netherlands . Today , I was required to go to school puntually and behave myself well . I do n't konw why we 're supposed to take classes in such a marvelous summer vacation , which should have been full of joy , laughter , and merriment . It seems that everything in my life just enveloped in terrible atmosphere . although it sounds a little pessimistic and overstated , what I really want to say is learning is a lifetime and happy activity rather than pushing us to the limit with our mood depressed . So I suppose we should cut down on the time we spend at desk . Improving our knowledge by practicing it instead of talk about it thoretically is the most significant , positive , and effective in our life , in my opinion . Today 's menu is omurice ! I should be more optimistic . Japanese food is popular in the Europe , US and China those days . And also I push the wrong buttons on the keyboard , even when I write in Italian , my native langueage xD uh , it 's not exatly right xD but I 'm trying , but I 'm a self - taught girl ( ok , I think this expression is incorrect ) and I 'm actually still at the ' HI , MY NAME IS ELENA ' - things like that . Hmmm . . . I went to watch baseball with my friend a the ballpark . A ballpark that has chicken and beer is like a paradise to me . I think meeting is a good opportunity to grow by myself , so I must make good use of this meeting for my growth . It 's summer in Japan , so it 's very hot and humid . I went to a cell phone shop today because I lost the one I had before in Australia . I 'm looking forward to seeing my friends . The College English Test 's listening comprehension is difficult , but this is not the worst . The dentist said it is not serious but I should brush my teeth in the morning and at night and seldom eat something acidic or spicy . My roommate Fengyuan Zhu or ZHU Fengyuan have gone to Bejing . Tomorrow is my last workday , because I told my boss I would be resigning from the job . So I sometimes have a chance to talk to customers in English , and translate documents from English to Japanese . I think it is good practice for improving my English , but I ca n't tolerate my boss 's arrogance . After finishing work tomorrow , I want to try to get a new job ! Then my English teacher said to me . `` Please call your roommate and tell her do n't lose this test . `` As soon as my English teacher finished talking , I got my telephone . The color is good , but my bangs are too short ! is a necessary class in our school . Next , our school life will be happier . classes are necessary because of the reasons stated above . If you understand the humor , you could be from Osaka . I know that I would n't have known how to read words , how to count the numbers and I would n't even have heard about the internet if I were in a severe poverty with unenlightened parents who are dying because of a lack of food . If I were alive around my age luckily , my life would have been beared hearted towards the indiscriminate world . I believe that people dominate environments , but at the same time , I also believe in the fact that environments can change people . The survey of that most people in Africa live with less than a dollar proves it too . I am going to bring some gifts for her , do you have any recommendations ? In spite of this situation , I 'm spending the day as usual . Incidentally , I 'm going to watch hockey for the second time in a rowsinceI 'll be watching sledge hockey at the Paralympics tomorrow . Yet , the frequent descent of the bears caused some serious problems such as causing some casualties . I really want to do lots of valuable things in the future , so I may have to do regular exercise for it . But , I enjoy the festival ` s atmosphere . It is so convenient for me . I already watched `` Pursuit of happiness `` and No matter what , I feel warm and comfortable . I wo n't sleep ! ! I 'm also learning Portuguese . They taught me a little Portogeuse when I showed interest in Brazil . Today I have decided to visit Brazil in 2016 because Olympic 2016 will be held held in Brazil . He is only 28 years old , but is at risk for hypertension and obesity . When I use English very often , I become better at speaking . I am worried . I received private request to talk . `` If someone does n't know the history , he must see this history personally . `` About 4 months have passed since I came to Aus . For this week I am staying with another host family because my host family are in Bali for 2 weeks . It 's used to explain hierarchical organizations that separate software developers from end users . But we have never forgotten each other . Kameta is from Kame , which means tortoise . Japanese sometimes name their pets from their species . She has shortened her hair . I watched a movie yesterday . It was my first time to go to the Tokyo Dome . You can enjoy studying and learn some slang and daily conversation which you ca n't learn from textbooks or class . If you can get Japanese ones , you can learn Japanese more efficiently by comparing with this site . So , I bought a book called , `` Basic Grammar in Use `` written by Raymond Murphy and published by Cambridge University Press . `` Basic Grammar in Use `` is an American English Grammar Book and `` Essential Grammar in Use `` is a British English Grammar Book . I appreciate this site ! Recently many people have their own blogs and some of them are open to everyone to communicate with each other ; just imagine it 's like a kind of class room or something . I hope they will find an awesome drummer , because I like the band because of their drums . There were some students who tried to remember , and then four of five students were given the gift . I really like to sing this song when I watch the film with titled `` THE LORD OF STUDY `` made in Korea . the Japanese lived during the Edo era . Do your country 's people know where Korea is ? Terrible ! ! ! ! ! I have various memories . . . . I 've read twelve books by Agatha Christie so far . We are going to have a gyoza party tonight . I 'm gon na cook gyoza for 6 people . So she bought me clothes and a pair of shoes . Afterward we went to get coffee and we ate a big cake . When his father got ill and was dying , he called his son to his bedside and said against his will , `` I 'll say goodbye to the present life very soon . 3 days ago I took a math test , today philosophy , monday I 'll have history , the day after English , then physics and then science and then physics AGAIN ! I 'll try to write some answers here to check my horrible grammar < < ' ' ' Maybe because of our new roommate , or maybe not . It is good for me to make a new habit , meet some new friends through here , create some ideas . . . I am trying to create something new . I 'm working for a bank now and it is okay . It is a system whereby salary and job position rise in accordance with age and length of service . For example , in a traditional Japanese company , things like letting a young person make a big deal almost never happens , no matter how brilliant he / she is . 20 minutes later I had to transfer to line number 3 . During my teens , I always listened to their albums . Today , I bought a magazine in a convenience store that was on my way home . I think fashion is used to show up my character . I do n't know much about that student . ( The only thing I know is that she is one year younger than me . ) This company holds a composition competition . ( Normally it 's 1800 yen ) ( $ 1 = 90 yen ) I went to see `` Inglorious Bastards `` today . What will happen in the future ? I look forward to it . because some of my friends can not speak Chinese very well I also started to watch foreign films I thought it was weird because there is priority among the issue that are reported . That is to say , I do n't think it is appropriate to report all these issues about cheating . Similarly in Japan , TV and news paper do n't tell the really important news and avoid the topics that threatens the power . movies , novels , and fairy tales talk about good triumphing over evil . I 'm Japanese , so I support Japan . I wo n't return to face the difficulty , but these days , my mood is so down , I do n't have a reason . One of my cats loves to sleep near my PC . It is so amazing . I recommend it ! Thank you for reading my diary ! The job is very interesting and unique . I want to study design in a foreign country in the future . For example , good restaurants , beautiful sightseeing places and so on ! Of the Japanese artists , I like Shiina Ringo ( toukyoujihen ) , Bump of Chicken , and Beat Crusaders . If you get sad , whose songs would you recommend to me when I get sad ? When I 'm stuck in my relationship problems , Britny Spears songs make me happy ! ! ! But I will be a supporter of Arsenal from now on . However , the Japanese parties are defferent from the European ones . After I arrived in Narita airport , I sent some of my baggage by delivery service . They are older than me by 9 years and they are married . Ummm , it 's interesting . When I arrived at the park , I saw the monkey . Since I wanted to take some pictures of the monkey , I touched the little monkey 's head as quickly as the monkey back head and bite me arm . Today , in English class , we thought of why people attend college or universities . In my opinion - increasing demand of human resources with specific knowledge - if we would like to succeed in our career , we should be well - rounded people who have a practical and expertise background . They must be required to submit a graduation thesis when they start job hunting . I knew it after coming back from NZ , I really prefer living in country other than Japan . . I met some students who went back to their country after Voluntary Service Overseas . It 's a voluntary service to teach science with English to African middle school students . ) `` I called the center , They told me So , today , I went to the center for a physical examination . So , English is essential for me to communicate with them . I 'm afraid of mistake . I discovered that the cushion of the seat fell in . Then , I remembered that the foreigner was seated alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speak English . Because the cushion of my seat is so bad `` I can fix Korean entries . There are some many analysis tools . I am a single working mother . So , to avoid the feeling of loneliness , I am getting started studying English ! I realize that many people study other languages hard as I correct and write journal entries in ' Lang - 8 ' . Let 's start by studying English and Ehinese ! im not Japanese ! ! Although I 'd tried to make a good first impression it all collapsed in a second . I carried him in my arms and looked around to find his master . People write New Year 's cards called `` nengajou `` in Japan . Nengajou is a kind of unique card I have finished writing nengajou today . It 's fun to get nengajou from my friends and former teachers . The level of my English became better , but its just when I am talking with people who are not from UK or USA . The seniors sometimes link daily things to technical terms . ( I know ! ) The wing was elaborate and delicate so it seemed there was no strap on her shoulder , and it looked real . Following her downstairs , I was pretty sure that she was wearing platform shoes with high transparent soles , because she looked like she was floating several centimeters high above the ground . I found ' ' osechi ' ' , which is a Japanese typical dish , being sold in a convenience store . These days , I feel unhappy ! So she and her husband have to fix a lot of things like the ceiling , wall and floor . What a coincidence ! ! At first , I thought it was just an evacuation training exercise but I soon found it was n't . I smelled smoke as it filled up the building and saw dark grey smoke rising from the backside of our building from the window near reception . Coincidentally , this was the last day of one of our classmates who came from Sweden . I was tired , because there are always so many people in ikebukuro . She 's so brave to try to break down the barriers in the pursuit of love even breaking the rule set by god . Recently , I 've been muscle training . Today , I went to Shizuoka airport by bicycle . If you kill someone , you will become a murderer regardless of wether you are in lawful society or not . However , if you kill someone in a war , it is likely that you would become a hero as you kill more . I just want to say hello . It 's my first day using this epoch - making service , which my ex colleague recommended this Sunday . I used to work for one of the translation / interpreting service agencies in Tokyo as a sales representative , and heard many of our Japanese clients wanted the service called `` Check by Native , `` especially in cases where they had to present something very important in front of their clients , using memos ( ppt . ) which they wrote in English . Like in the first case where you just want to know the `` facts , `` often seen in daily interaction in business , it does n't matter whether a native or non native English speaker wrote the passage . But in other cases like in a restaurant , `` feeling `` has much to do with your action . It 's interesting that the toughest subject for me is writing , which is totally different from what the teacher lead us to believe . I tried to find the answer to that sentence for a long time . The first answer is `` was `` and the last answer I do n't know because it is difficult for me to understand and also I am too lazy to read the book . One thing was very unbelievable . During the two days of competitions , the cheer leading squads performances of each cllege ( Such as China , a university is make up of many colleges ) attracted us the most . It was also wonderful that some college girls dressed in bikini ! Because some colleges had professional athletes , our college did n't get one any gold medal but just only a few of copper medals . But it does n't matter , we all enjoyed the spirit of striving ! Therefore , I believe that we need artificial sweeteners as a substitute of sugar . But I was not able to let my fingers move on the piano keyboards well . then my friend , ( she is japanese , of course . ) we went to wp to gather with my cjs friends ! I 'm physically getting weak . Now , I 'm drinking a lot of sport drinks such as Gatorade . I heard that the foreign companies ' turnover is big . I have attended someone 's farewell party every weeks in September . I am going to write this for tomorrow 's exam . Second , I often see people smiling despite their difficulties . She fornicated with a friend of mine who came out of the closet , so you can say that was adultery and infidelity . She got groped ( felt up ) on the train , which made her androphobic . . . I took a nap for fifteen minutes before leaving home for my part - time job . She doesn ' t have confidence about English , but she knows many verbs and conjunctions . To my surprise , there were no stories nor paragraphs on her textbook but conjunctions and exercises . Thank you for your cooperation . It was owned by chicken egg farmers . It can match with everything so I do n't think it has a character of its own . she ` s left only I stay here I ` m lonely but I don ` t know what do I do But if you finish your plate of food , the amount of vegetables and fruits you have eaten will be huge `` Sometimes I can not understand you . Amusement park has disappeared . That park resembles the Teletubbies hill . so I hope that I will be writing one correct sentence . I took my youngest son to the hospital because he had a fever for 5 days . I went shopping inYuraucho last Saturday despite inclement ( bad ? ) weather . I was thinking my budget for them would be within ten thousand yen . After that I lost my confidence in speaking English . I hope my English speech skills will be great like an American ! At 11 : 00 , I always get out to eat , because I 'm very foolish . I do n't know how to cook ! Then I searched on the Internet , and I found some information that said the strings of a guitar need to be replaced every three months . audience : There were many people in the audience at the concert so the musician was nervous . My hobby is watching dramas and collecting lots of hilarious . jokes . If you know any funny jokes , please tell me ! ! I 'm a new member , and I would like to improve my writing skills . I plan on taking the Ielts exam , and I want to get 5 . 5 to enter the college . I really feel lost and confused , because I do n't know how to improve my writing skills . I know that they say practice and try to write and to show it to someone who is fluent in English Unfortunately , these people are not immediately available to me . For a few minutes , I was browsing the internet , and I found your website . I hope I find what I 'm looking for . For example , the topic was `` How do movies or television influence people 's behavior ? In his correction , he used the sentence `` As can easily be seen , watching a movie and learning about worldwide issues influenced me to make a donation . `` At the same time as this party , the ' LADY GAGA ' concert was held at this stadium ! ! His car skidded and overturned . Is it wrong if I say `` Let 's get started `` , omitting the `` it `` ? . If it were not Japan , the superior would be sued . When I was a student , I spent a lot of money on music . It said there is a still caste ( ? ) system in certain areas in India . A young woman was killed by her mother because she was in love with a man who has a lower caste than hers . This sounds pretty much ridiculous ( please stop putting - between your words . ) and unacceptable in this society . I want to speak more English ! ! It looks very futuristic Okinawa was warmer than Tokyo , because of its location . This time , the airplane was delayed by 2 hours due to maintenance . It 's on the way to my home town . The first thing we did when we arrived to the city was going to the graveyard , to pray for my grandpa 's brothers who already died . You could realize at first sight the city was colonized by Slavic countries by the names in the graves : Mostowski , Olosz ( my family 's name ) , There is a wide street near - `` Kutuzovskiy prospekt `` - but trucks that deliver goods are forbidden there because it is a government street . I have n't finished my bachelor 's degree yet like normal people around my age . But there , we study American English and we have few oportunities to hear a British accent . My British friend recommended me theBBC 's web site to study British English . it is my first diary written in English . I hope I can use this place to enhance my English ability . Especially my writing . I love Caomima , because they are very brave , they are able to speak the unspeakable about darkness in our society . I will write my way to utilize this web site . I had many parties ( eating jumbo parfaits , smorgasbords , and so on ) and often eat something around midnight . My family won the contest . Because it makes me think about my dog . Today I do n't have any plans . . . ( some games in arcades disappear ) My friend `` aquadee `` has pain , too . I pray that God heals the both of usr as soon as possible . So she and I headed for Starbucks . Tonight , I will watch the Japan vs Thailand & nbsp ; volleyball game . The last sentence I want to say is : `` Correct my entry , please ! Having been told about the website for quite a long time , I could not make a resolution to start writing until now . Yesterday was an incredible day . daily life while I 'm here in Japan , I have little chance to use English . I am glad to come on here and get to know this website which may help me to improve my English / Japanese . On April 1st , April fool 's Day , my country manager was layed off . I need to try my best to build our relationship and get close him . Now , I pronounce all words like in French . I wrote about myself here just because I wanted to post with correct English on my profile space . If you are a boy , It is very important that you know you have great potential to succeed . It is important for me to find my favorite things in the daily life . I Thank her for telling me to study English . and I 'm interested in French too when can I use this sentence in conversation ? In the middle of it , I felt breathless and flush . . . hello guys from japan , and my first diary about japanese disaster thank _ you : > Chinese people might be struggling If you see me crying in the corner , do n't laugh at me , please give me your sincere wishes and energy . I also thinking that if he is curious in our life , you can enjoy being together with him . You will be proud with yourself `` I am also happy if someone like me because of who I am . Do you like egg & rice ? He 's so cute that I still ca n't resist and get sentimental . because my husband is in the UK on a business trip . There was a cute painting drawn in sugar on the top . I will wait for my next chance . As for me , I promise to help in studying English . And of course I will try to provide a funny and interesting meeting in Nevskiy prospect . = ) The severe lack of housing for students is reflected by the numberof students in dorm over the total number of students . Workers have also encountered the same situation . Recently , one of the goverment spokesmen said on the public media `` [ we ] will move the metropolitan universities to the suburbs `` . They could also make wrong sentences . And I find that even after several Chinese have correctedsomeone 's journal , there are still some errors . It is easy - - easier than any other foreign language . twilght is my favorite , now ! ~ vampire > _ < I have been watching this channel for 3 months after I planned to practice my listening . Not only does it have funny programs like Scrubs , Friends , Simpsons , etc , but also it 's very convenient for me . Whenever I want to watch it , I can . Sometime it 's hard to believe that someone on Earth can really be that stupid , but that 's what makes it so attractive that I somehow ca n't help but watch it everyday . Today , I taught 6 children English , Japanese , and geography . I used to have a fluent accent , a decent vocabulary and a good understanding of the spoken language too . The disadvantages are you really have no say in your environment , hindsight is 20 / 20 , and even if you have a good plan you do n't always have the resources to execute it , while the future seems so far off and your parents seem so old you think you have a lot of time . She has become beautiful . I have only one brother so it 's a bit of an embarrassing fact for me to have a sister . In middle school , my most cherished time , I could do everything with my friends , say anything with my friends , and I didn ` t feel bored on weekends . Love is n't everything ; our family , our study , our career , our friends , and so on are also necessary . I go to the library everyday because I have many times . My favorite thing is to read a biography . I borrowed a Walt Disney 's biography today . Recently , I have been busy job - hunting and attending class in university . I 'm a student who lives in Taiwan and I am studying in University . I 'm trying to learn English from them , but it does not help very much . And needless to say , I 'll visit The Tuol Sleng Genocide Museum in Cambodia , which shows the savagery of Pol Pot 's regime . I have not had enough break time at my job these days . I have studied English only by listening to audio lessons on the way home and on the way to work . I thought , these days a lot of people study Chinese . Hello , I am Japanese and I live in Japan . Speaking English is one of a very difficult thing . It is difficult for me distinguish between [ L ] and [ R ] . he was always in a good mood and always had something positive to say . when someone would ask him how he was doing , he would reply , `` if I were any better , I would be twins ! `` That 's sounds a little bit weird for foreigners being asked for their age . It is kind of taboo especially for westeners . The big event , The Winter Olympics starts today ! ! I want to write things but english is very difficult for me . University is said ' Hesitation term of life ' . The problem about that is that do n't how how to earn ( money ? ) in those places . I may not be able to say anymore , though foreigners say Ghibli is not so much fun . I know the insurance fee is $ 12 per package . I ordered 3 DVDs . Strawberry was 100 yen for 20 pieces or so . A pickled green leaf vegetable was 50 yen . It is a grated radish . I ate Daikon Oroshi and pickled vegetables with rice for lunch . I hope this marketing style ( local product for local people ) should be more encouraged for both consumers and farmers . They had tried to keep in touch but it was impossible . Unfortunately , she just called him to say that she was leaving him , and to let him forget her . Please correct it I am fond of foreign cultures and interested in people who are from all over the world . I was a mechanical technician in the past 3 years . I can not translate the sentence below . She asked , `` Son , are you okay ? `` I am not a mysophobic , but I can not stand dirty floors . Give reasons for your answer and include any relevant examples from your own knowledge or experience . Even if they did not have any music class at school , they would listen to their favourite singers and groups . They can deepen their bonds through other school events such as cultural festivals . * * That is why students should learn more practical and useful subjects first which will help them attain their goals . * * * * In my own opinion , although music has many advantages of relaxing and making people happy , we can live without using it as a job . Therefore , more significant and valuable subjects should be taught with a priority . November 23rd is Labor Thanksgiving Day in Japan . Labor Thanksgiving Day ! ? When I passed by ' The Rogers Center ' , I realized that there was a flyer posted on the wall for `` Toy Story 3 On Ice `` , a ticket booth was nearby , so I stopped at the booth to find out the details . When I asked the clerk how much the tickets were , and at what time the show would start , she replied that the cheapest ticket was 15 dollars and the show would open at 7 . So then , I bought a ticket . My favourite scene with Barbie and Ken was also fun . During the interval , Mickey , Minnie , Goofy and Donald Duck warmed us up ! And ( their ) pizza is so delicious . . . : ) We will stay for one night at a local inn in Toba , Mie Prefecture , next to Aichi where I live . Busy day which I did n't expect . . . . But , if it snows , there are many troubles in everyday life . For example , I have to be careful when driving a car , and snow prevents the traffic system from working normally . I hope I can practice using more English here . I deposited in my best friends Sung - hwan & Krissy 's account because of my loan ? @ _ @ ; ; then I ate a Korean noodle with Krissy at lunch . In the early morning , I got up because today I had to take my daughter to meet her first teachers . I dont understand them . Doing something at first is very exciting as you know . I 'm a little bit nervous and excited . because today is a rainy day . can you help me ? For example , the people with pets generally have lower blood pressure and lower rate of depression than those who do n't own pets . 75 % of families who acquired pets reported an increase in the level of happiness and enjoyment in the homes . And Start to exercise ! It is a long - running doll , much like a Barbie . I used to play with Lika - chan when I was a child . But we could n't find any water . Many people are out buying water after hearing that Tokyo Water Official detected something bad in the city water a few days ago because of the Fukushima nuclear power plant . But I ca n't take the medicine for a cold . Because I have already taken medicine for my eyes , However , nobody helps me even if I worry about this situation . Shop assistants in Japan say `` I ra ssha I mase `` . It 's sort of like saying `` Welcome . `` The last time I wrote something in some kind of journal was a really long time ago and I stopped because of my ultimate laziness . Lask week , our school did / carried out a survey about / on whether it is good to make friends on the Internet . Firstly , some students believe it is easy to get on well with net friends . Secondly , we can take part in interesting activities with net friends . Not just for the short term but also for the long term simultaneously . When October comes , I always think about how I fill the gap between the goal I defined last year and the actual outcome . My cousin bought a chicken for my dogs . . Today 's dinner was chicken . One learner wanted to transfer to other jobs using his billingal skills . I 'm not an expert but I tried to do my best for him . It was a question which asked you to chose the correct conjunction among some choices . He had to put one additive conjunction on the sentences . It 's a traditional way to celebrate new year 's in Korea . Although It was the coldest day , I 'd been waiting an hour to see that But I could n't because it is unusually freezing outside . Especially a boy called Haidar . He is very clever , because he knows a lot of Chinese words , although most of them are bad words . But if I failed the exam I can not go there . . . It is popular among young Japanese girls . At that time , all high school teachers told us , `` Keep studying hard for one year , after entering a good university , your bright and easy days will come . `` The thing is , this area does not follow the Traditional Chinese culture and people here speak Cantonese , a language I ca n't understand . My colleague asked me why I want to study abroad today , and , frankly speaking , I am really not sure why I want to do it . A : The weather is raining outside , remember to `` take `` an umbrella with you . B : The weather is raining outside , remember to `` bring `` an umbrella with you . Some college students held a birthday party for babies born in December . But a baby came on the stage while they were playing the show , and it interrupted a student who was playing music again and again . So I stayed in my companies dormitory over 2 days . Teachers belonging to ALC taught us English conversation . I watched a TV program called , `` Sekaiichi Uketai Jyugyo . `` In this program , they said that crocodile tears means untrue tears . I noticed this is happening for rest of the world . One of my friends , who is a foreigner told me this web site . I ordered an iPad2 at the Apple online store almost a month ago . I think my reading comprehension needs to improve , and it 's difficult for me to get the main idea of a paragraph . For me , too many practices before the language test are not helpful ! Because when there are some questions I ca n't get the answer , I will become nervous and anxious , these emotions only made me perform badly when testing . Hope , I wo n't be asked the questions which might be too difficult for me . But I also lack English language skills . First , I went shopping at UNIQLO . They 're very warm clothes . They 're too expensive . ( ; _ ; ) The status of my application had been changed to `` Pending Contract `` after being stuck `` in Review `` status for a week . I participated in the bowling event held by my English school last night . It had been a long time since I have done any bowling , so I wondered if I would do well or not at first , but my team ( my friend and me ) won third place ! ! Kao Corporation is one of the most famous chemical and cosmetics companies in Japan where their products are used almost in every house ( in Japan ) . Although I can study and I have many ways to learn it even in Japan , When I visited Philippines last month to study English for 2 months , I might as well use English to communicate with them . I stayed there almost for an hour . I considered whether I should get one of them or not . But the most successful of them all has always been capitalism . , people are scared to take them . So the real cause of the spread of drugs , especially among young people , is the misconception about marijuana . Many gangsta rappers rap about smoking weed . . . I watched 8 mile ( about half of Eminem 's life ) 3 years ago , and the movie depicted people smoking weed as a matter of fact ! ! So , as a conclusion , I want to sate that not only must the government make the already existing laws tougher , but also censor the media , which have a tremendous influence , especially on young people . First , I like this website because everyone is kind enough to correct my poor writing , ( though , my dictionary is always beside me , just in case . ) Usually those who correct my diary leave messages for me . That is what I meant yesterday . I received two packages `` seeing is believing `` ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ It is a little dificult for me , but I always enjoy discussion with my teacher in English . Since I had a day off this year , I went skating with friends . Was it ? I will be satisfied with it as only space for sleeping `` What she recommended is managed by her office . I do n't know if I should be studying the Japanese grammar at the same time . . . I 've only had a little food but I do n't feel hungry . Sometimes I am not hungry but I want to eat . . . . I 'm gon na read the book entitled , NY Institute of Photography . OK buddy , I 'm gon na learn more slang later , I hope RAVI will be mad at me . Shame on you ! LOL I will be careful about that from now on . Though I speak say travel is my hobby , I have n't actually gone to many countries . When I was on the campus alone , maybe I was seen as a strange person by many students because of my appearance . The first time I tasted it I thought it was too sweet . Two chocolate buscuits sandwich a hard chocolate inside and again , the biscuits are coated with chocolate . The first Tim Tam I tried had orange tasting chocolate inside . Bite the head and the bottom off the biscuit . I am going to exercise every day . To teach Korean to them is not easy but very exciting to me . July 7th is a special day for us Chinese people because there was a romantic story that happened on this day a long time ago . A Goddess did n't want to see them together , so she placed them into two stars with her magic . One day , lots of magpies flew together from all directions to formed a bridge in the sky . The pair of lovers could then meet again by the magpie - bridge across the Milky Way . missing him made me not interested in my job , my sale performance was not so good , my boss was very angry with me . I like this song 's melody and lyrics . However it is difficult for me to sing to the guitar , and to pronounce English lyrics . But I brought some bread to eat with my friends , The table is very dirty . < buy a dictionary please Have a nice weekend . I am majoring in English literature and I feel it 's a burden . Have n't been here for a long time Have n't been here for several days . I feel so frightened / scared . Sometimes I see other ( people 's ) excellent articles and I just admire them . In these times , I sometimes think about the reason why I continue to work . I feel very happy if my colleagues and friends are envious of my promotion . I 'm really glad if my wife or parents give me some words such as ' congratulations ! A public servant must serve our nation and people ! We would like to know if there are no problems for us to act as as the sole distributor ? Well , I 'm really interested : Do you , English speakers , use all your tenses which we ( foreigners ) are studying at schools or universities ? Recently we learnt about the future tense and there are so many kinds of expressing it , like future continuous , future perfect continuous and future perfect simple . and in the afternoon , in the Classical Literature class , I watched an animation called Bleach , in which my favourite actor is cast . He was the most famous pro - wrestler in Japan . He was stronger than any other wrestler so he was the strongest , in first or second place . He was the president of his pro - wrestling company called Noah , It was big news in the sports newspaper in the morning , so he was on the top page in the sports newspaper . Other sports newspaper 's top page was also him . He often appeared on TV programs so people will be sad for him , even those who do n't like pro - wrestling or watch pro - wrestling . His cause of death was being hit on the back of his head because he took a backdrop from his oponnent . Two men 's wrestlers have died in the ring since the year 1953 . She refused to watch the Titanic movie . Shiba is a Japanese breed of dog . They are a medium - sized and very clever . It 's her first time going to a foreign country alone . because I thought I could get good score like 700 . mn - - - - - - can I excuse this result ? lol . and it felt troublesome to read them again . I spend free time absently . I think I am lazy . I have n't write anything . Today , I received the decision for studying abroad . However , studying English while also studying chemistry was difficult , so I felt relieved a little . Hi , thank you for your reply . Luckily , I am not . Studying English and Japanese The building in the Heian - jingu shrine is a replica of the imperial palace in Kyoto city in the 8th century . After shopping , we ate `` Shabushabu `` . It is a meal where many vegetables and thin slices of beef are dipped into boiling water . The `` Shabushabu `` restaurant which we went to seems to be popular with many foreigners . There were many foreign visitors in the restaurant . Second , I wish to speak engish very well . Third , I will help members that will learn the Korean language . Because of these reason , I registered for this website . my objection for in internship Oh my goodness help me ! By the way , his name is `` Free - Za `` . He appeared in Dragon Ball Z , which is a famous animation in Japan . to keep competitive in the intensive race . I had made some friends who are Japanese . He wanted to have his own farm / poultry farming and really healthy poultry . I 've started reading the manga One peace , which is written in English . Sometimes decisions are made regardless of our opinion , and we have to follow them anyway . Thank you for coming and visiting us at Onoda - shi , Yamaguchi on January 21 . A mother said that your picture book reading was so wonderful ! ! I wanted to enter it but I was afraid that the price might not be friendly for my wallet . And I learned about life through movies . Sometimes , when I am bored , movies help me to spend time . Please recommend interesting movies . A strong typhoon is approaching the main island of Japan . The weather forecast warns that there will be strong winds and heavy rain . Poverty in Vietnam will increase because of soaring inflation over the last time , thus the Vietnamese goverment has to continue implementing measures to curb inflation , said Mr John Hendra , the chief executive of the United Nations Agency in Hanoi However , there are still areas in poverty that are difficul to address , particularly in ethnic minorities and he called on the goverment to adopt a new approach But it has been a tough month because I had to settle the accounts for the fiscal year of 2009 . I 'm in charge of the accounts of a production affliate company in Kyusyu . The first time I met him , he talked about `` SD Gundam `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand everything he is talking about . After leaving from Tokyo , he will go to Shizuoka to view a big Gundam model . Without Anna , I can not get my English better . Anyway , I have to mention that I leave on August 26 to US . I want to say thank you for everyone who taught me English so far . Especially , writing is mush better than before even though I still have a lot of mistakes which I ca n't notice until people say . However , he does n't know that she recorded every song he sang each day . Compared to Asian culture , somethings were similar but somethings were completely different . I want to get a driver 's licence . Watching the lower classmates take part in it . I suppose he is in pain because he has been alone for a very long period and has to deal with the feeling of being the last one of his race . I ca n't forget the peculiar taste of ttomyangkkunh of thailand . I will write in my diary continually . It is a service is similar to Lang - 8 but this can help us exchange languages with foreign friends and practice the language you are studying . In addition , dormitories are safe . These days , I 'm very tired and sad because I have to study hard for my University entrance exam . I love listening to English music , but I often do n't know what they are singing about . The story is happened in some high school . the biology teacher experimented on one girl named Hyeon - ju . She bit the teacher . And they bit others . And Hyeon - ju bit the ambulance driver and paramedics . You need to be independent . I have not felt aftershocks since last Friday . In Tokyo , there are aftershocks everyday . I hope that many people will read my diary and correct my sentences . please correct the sentences , and be my friend ! I passed all my exams with excellent scores , and I am very happy ! I want to go to Moscow to the theatre . Sorry for my bad English . They were standard questions , like self - introduction , your personality , why did you select this major ? And now look at my essay : Games are undoubtfully important for the health and physical skills of children . But unfortunately , today we can see that our favorite yard games are not so popular among kids . I am not an athletic fanatic , but at least they have to feel curious and to be interested in Open air games develop physical skills , make children stronger and faster and improve their health . I drink a few cups of coffee everyday . I can not rest because I have been so busy . I will go in for an English recitation contest at university tomorrow . It consists of fifteen pages and takes eight minutes to read . I hope I will be to able to be calm during my turn . I read a book written by an American professor in Japanese . I was not the presentation today , which meant all I had to do was just listen intently . Besides , everyone of us has to participate in preparing for the procedure . This ceremony derived from the event that the prince of Nintoku emperor sent a gift to his fiancee . I may discontinue again , but I 'm gon na continue learning ! Even though I am Chinese , The reason why is because graverobbers destroyed tumuli ( plural of tumulus ) lead to many mummies being dismembered and moved out from coffins , so empty coffins were recycled and used again . Apart from people 's mummies , it displays / shows animals 's mummies , which is a cat , eagle , crocodile , and mini snake . Honney - ginger means `` bottled ginger with honey `` . This year my friends and I have decided to attend seminars by ourselves . Since we have lots of free time we waste it without doing anything in college . And I can do one of my hobbies with friends . That is , learning new languages . Yesterday a big ship came to Kobe . I guided foreign travelers yesterday . However , I was n't nervous and could guide them after all . I will go to a university to have an interview tomorrow . I have a question about a column . I never know how to play the piano or guitar like others , or do as well in French or Japanese . As a result , I found this website and enjoyed correcting articles written by some foreigners because I am good at it and it makes me feel good no matter they thank me or not . Eid al - Fitr is an event usually staged by the religious community , which is a group of people who practice the same religion and it is one of the two most important Islamic celebrations . Eid al - Fitr happens on the first day of Shawal month , which follows Ramadan and we celebrate because we have completed one month of fasting . The second most important Islamic festival is Eid al - Fitr and it is organized by the local community . He says : yeah , really cute ! Another example , you find yourself alone with your dad 's friend . I broke up with my boyfriend . The principal speaker asked us a question at the very moment the class began : `` Have you determined to persevere to prepare for the 2011 Postgraduate Qualifying Examination ? `` Then he explained his question , `` To start to prepare is different from to persevere to prepare . `` Everything sold out , but my lower back hurt . The pain was awful and uncomfortable . This afternoom our class will be having a class meeting which will be about electing elite as Party members . I submited an application for Party membership when I entered the university the year before last . For people from outside like me , adapting themselves to the community is little bit difficult . In other words , for someone who is member of the community , it is very comfortable and safety place to live . My favourite team lost ! My favourite team lost ! ! > < My husband told me to call the office for sick leave , but I knew I could n't . My dream is to be a millionaire . I do n't care even if other people say `` You ca n't be a millionaire because you are not rich right now `` . I must be successful because I believe in myself and I try to be a good person . This is a sentence which was written by a native English speaker . I 've wanted to see these shows because my friends always tell me that these shows are very interesting . `` sometimes people need to have a break `` . I can only console myself with this thought . I got up at elevent O ' clock , then had breakfast and lunch . Tomorrow I have English class , so today , Sunday , I am studying very hard . I listen to English a program on my ipod every morning while I 'm on the train going to my work . I do n't have a foreigner friend . They 've studied all subjects like mathematics . Three days from now I have a chance to go to New Zealand . This saturday I went to Shiga as a part of my group activities . Today , I have some classes at my college . Especially I love my pet dog ! On Saturday morning , my friends buy breakfast for me . I heard from my parents that the pollen count is expected to be two to six times higher than average Lately I walk with my dog early morning . When the number of ATPs becomes less than the number of AMPs ( having 1 phosporic acids ) , a hormone called AMPK , which senses the balance between ATPs and AMPs , will be activated . This exposition was devoted to Salvador Dali . I never have seen his painting in the museum until this moment . I knew little about him . I 'm so glad to see that my diary has been changed . I believe in ghosts ! ! My friend has seen ghosts and he has a special ability that he can see ghosts . The drama is really fun ! ! David Byrne is always cool . I 'm studying English in my school . I will keep on trying ! ! ! : - ) The weather is cloudy . But , it 's beautiful . I did n't have any Indian friends in Taiwan All my foreign pals are Japanese . The flavor of curry is so unique . She mixed yogurt , basil , cilantro and chicken together . But the type of rice is different from Taiwan . Every ethnic community has their own character . I 'm worried that drinking too much coffee may be bad for my health . My favorite color is white , so my car is white . because of that , I want a white 4G iPhone . Last Thursday I quit my school . It seems to follow that I decided to buy it . My favorite author . For example , a 32 inch TV , a bus trip , a toaster , etc . Because , I am so busy on business , so I ca n't get straight holidays . Sometimes I make an English sentence for foreigners . I wonder if my writing is correct or not Why do n't they standardize the size of books like Japan ! If you have an opportunity to come to Japan , I recommend that you to go to a `` Yakitori `` restaurant . I also want to learn German because I really love German football and FC Bayern ; - ) this is my first diary . The sun today was so hot that we were all getting faint . Today , when I was about to eat curry rice , I saw the curry soup was sticky . Then , I smelled it and found out that the potatoes went bad . Today , I went to the supermarket named Ralphs near my hotel , and bought sushi . I interested in Fashion , Art , and Music from the 90 's ! And the game featured them will be released this December . I am `` good at `` speak Japanese but I am `` not good at `` speak English . This function is said to be very convenient for people who suffer from hemorrhoids . When I left a restaurant , it stopped raining . . . . I visited Yakushima . Today I met juniors in my university , and tomorrow I volunteer for an elementary school I feel an urge to preserve the wildernesses for the sake of the beautiful planet . I like a crescent moon better than a full moon . I have a sore neck because I leaned my head back and looked up at the crescent moon . I am a software engineer . my boss is coming ! See you later ! He spent almost five years working in Indonesia , my family changed a lot in both a negative and positive way . Honestly , this is an extremely unnecessary incident . Mango has become my favourite fruit since I traveled in the Philippines three years ago . Please help me ! I am going to send E - mail to my friend who an international student today . Do you remember me ? My name is ko - chan . Please correct my sentences . With this new awareness , Lisa got the permission she needed not to worry so much about Jim . She may try to pull him back mentally by asking him guilt - inducing questions such as `` How could you treat me this way ? `` or `` What 's wrong with you ? `` or `` Do n't you realize how much it hurts me when you pull away ? `` HOW A MAN ' S PAST MAY AFFECT HIS INTIMACY CYCLE Deep inside he may be afraid he is unworthy of love . I want to get high score in TOEIC . I 'm waiting for Avril Lavigne now . As it is so amazing , I choose it after taking the 2007th college entrance exams . Recently , I 'm writing a science thesis to participate in a science thesis comptetition . Whatever the outcome , I will do my best and not disappoint you ! ~ I 'm looking forward to it ! Mah - jang culture came from India or China in ancient times , and finally came to Japan in the17th century . He is acomplete beginner , so I can easily earn money from him and his friends . I drew a picture with green and brown crayons yesterday . I have n't used crayons since I graduated from elementary school so I 've forgotten that ' Crayons Are Great ' . I ` m a university student now , and I ` m studying organic chemistry . Because I do n't know how I can begin to learn this unfamiliar language ! As it stands , I am azoospermic . I toasted some bread and then put a lot of cheese on it . I microwaved the cheese bread for a minute and the cheese melted out of the bread onto to the plate . Although , the language I want to learn the most right now is japanese because I really want to go to Japan one day . Because of this I have n't used an internet cable yet . Last week , I could browse and make corrections easily . She was wearing a shocking pink sweatershirt . It is difficult for me . I 'm a software engineer I 'm studying Chinese and English . My goal is to use English for business and to communicate with foreign friends . Go studying English ! I also receive some ^ ^ . I 'm convinced that is the reason because other students played their parts very well . Today , Richard asked us to talk something about the global finacial cricis . yeah , many students in my class can speak fluently english , but no one can say it well , and we just had a three - days holiday , little had found this online , Richard seemed a little angry , but he did n't tell us , just asking us to do it for the next class . I found this statement ( as follows ) in my textbook for studying English . ( optional ) I hope there is no damage from this earthquake . I have been aware that I really need to improve my English skills , such as speaking , writing , reading , and especially listening , because now my listening is not very fantastic . I do n't know how to use this , I am a Chinese girl , but I am in US now . The main characters are Tom and Huck . Now I 've been singing Vanessa 's song `` Come Back to Me `` for 3 hours . ( Maybe my neighbours can hear a little of my voice through the walls . . . . It 's OK . Or is Zac going out with Ashley ? But I have also seen photos where he hits it off with Ashley . Then , we chatted about matters of common interest . After that , we took a special lecture by a Professor from their university . More and more people , especially women , would like to live a life which is full of freedom , and many of them may choose to be single for life , for example . I like walking in the a shady path alone . Ever since opening Taiwanese investment in the Mainland in 1990 , the outflow of the capital has caused an economic crisis in Taiwan . My English cram school teachers are foreigners . I ca n't imagine that I go abroad alone . Mixed feelings again . Firstly I feel happy because of someone who when we first met told me I look like a singer . This Wednesday I had a Chinese speech contest at my school . I 'm not alone , right ? I ca n't speak fluently Cooking lesson My favorite baseball team is the Yomiuri Giants , Cakes made at the cake shop are strange , because the cake shop is a Japanese sweets shop . Just a month has passed since a large earthquake hit Japan ( 3 . 11 ) . So in Japan there are 2 layers of high presure : the Chibetan high pressure and the Pacific high pressure . That 's why I am almost dying . . . I 'm currently a college student at Jiang Xi Normal University , majoring in Business English . Reading books , watching movies , listening to music and collecting pins are my hobbies . I 'm teaching an American friend Chinese as a part - time job . This minute it was raining , but the second minute it 's sunshine . I have been thinking about this question since I decided to take the New And now what I came up with is to make `` kisapedia `` , which is just an explanation of the things I am interested in . That is , writing a personal wikipedia . I want to read English books . But I have no chance to read English books because English books are too expensive . I am writing this diary without looking at the dictionary . Please help me with my diary . I am wondering how much time it will take for me to be able to use English like I used to be ; but , I will do my best , be diligent and be proud of myself . Recently , I really want to go back to Vancouver , the best place in the world , especially in the summer . I hope that one day I will go back there and watch the brilliant fireworks again . It is located in the center of Tokyo , and famous for many big shops of electronical appliances . There are many `` Maid Cafe `` , where girls in costumes of maid serve you with interesting performances . Beside the mantelpiece he was scheming his escape from his home . When I was an elementary school student , I hated writing a diary . ( even though it was homework , I did 't do it ) In addition , a journal will be the most priceless thing for me when I become an old man / grow old . I saw Happy turn , which is a Japanese rice cracker CM . I think it is about the guy who kept eating only McDonald 's Hamburgers and fries . Starbucks Japan announced that they will sell a new instant coffee in April . I hope that the new instant coffee does n't destroy Starbucks 's brand ( OR name ) . I 'm interested in your Japanese class , and hope to join as a tutor . And how many Japanese tutors will be there each day ? Through this class , I want to make American friends , and enjoy talking . Thank you very much for your time . Everyone helped me so I will do my best ^ ^ Even so , we saw lots of beautiful trees ( even they were more than 3000 years old ! ) . Yesterday 's dinner We entered the Izakaya and ordered from the menu . We ordered non alcohol drinks because we both came here by car . There are a lot of people here who decide that they are native English speakers , such as Pakistani , Nigerians , Indians , Ghanaians , South Africans , Irishmen etc . Please , if anybody can make a few comments concerning matters of my introduction , I 'll be very glad to share a lot of interesting stories about the UN , Africa , Western Sahara , Morocco , and I 'll be ready to be a good adviser for those who want to improve ( their ) Russian or start to learn it . Well I am Chinese . Some people on the internet ask me whether or not I am a foreigner . Well , if I do n't know your nationality I ca n't give you an exact answer : ) If you are not Chinese , then to you , well , I am indeed a foreigner ! but actually , Chinese new year has n't come yet , coz we celebrate a lunar new year . My girlfriend and I went to Yilan this Monday to Wednesday . I failed again and again , and I never successfully stood up on the board . I will talk more about the places of Yilan later . The screen was spinning before my eyes , so I totally got disorientated @ _ @ I tried to get myself on track , but then my friends suddenly screamed : ' ' Will , you idiot ! ! ! ! Now I want a motorcycle and am dreaming that I can get a big one and travel around the world . I 'm so looking forward to going there , but I also wonder if I 'd hit it off with Europeans . Goodnight , byebye , see you . When reading Pygmalion , I find that my `` descriptive `` vocabulary is very poor , e . g . about / concerning architecture , or furnishings . I am so curious how some people can speak their second language as proficiently as their mother tongue . The test had grammar questions , close questions , essay writing , and oral questions . I made three friends and had lunch with them at the foodcourt . who can possibly imagine that I can download a 30 gigabyte HD movie file in 15 minutes ! so its very delicious . Open source conference in Tokyo I joined the open source conference yesterday . All the people I met yesterday were gentle , and they taught me the various things about open source on the internet . In my hometown , this rent could give me a 1R which is 3 minutes ' walk from the station and provides comfortable amenities . Prices in convenience stores may be almost the same , but when I go shopping in vegetable stores or the local market , things are as different as in rates ( ? ) . This difference robs me of opportunities to eat fruit ( ^ ^ ; ) ( in Tokyo I rarely have fruit anyway , though ) . When I got home I was hungry and tired , but I liked it . Relaxing day He showed me a lot of postcards . I would n't like to lose interest in swimming , so I must warm my body through exercise before I start ? . Again , I was too lazy to make any compositions . I listened to his songs today and he 's my favourite rapper . I think he 's the most handsome of all rappers lol Hello Everyone ! I read English Books to help children to study . Please help me to fix this document . I 'm going to Asakusaby bicycle for health . Saturday ! ! ( OR - I will be going for a drink with my former high school teacher the day after tomorrow . ) I have n't gone drinking with anyone this much older than me without somebody else , so I feel a little tension . Are the students able to understand English grammar ? I thought that I was definitely not good at it . In other words , I 've totally screwed up . The white and well ripen corn ( ) out of the hus ( k ) makes me happy and I anticipate how ( ) it will taste ( ) . So I 'm very happy because hiking is my favorite hobby . But I am a little worried for the rainy season . I will organize an English Club for my company and also host it next month . Our aim / goal is to let the English learners around us get together and open their mouths to practise their oral English . For these reasons , I thnk education that aims at development of individual talent rather than learning by rote is needed . My high school give us many chances to go other countries . `` Everything was over - produced or just junk . It is so splendid . Because , we were able to eat fresh fish , shrimp , salad , etc . I do n't want to let he be unhappy . As soon as I arrived I noticed there were a lot of foreigners , but I did n't talk with anyone . I tend to get nervous when I have to speak in English because I have no confidence with my spoken English fluency . One of my elder sister 's family came back from Kagoshima to live with our parents seven years ago . Since then , my sister , nephew and niece have lived with them . I think this movie is a very interesting story . Finally , we made an appointment to see him in his home town , Bergium . Cloudy , rainy and sunny , Tuesday , 28 , April , 2009 Sweet Moment - Translation # 03 I want to learn child - nurturing methods used in the US , and to do the work that is related to the child 's future . It is maybe an action movie like Independence day or Armageddon . . . . I can study English in various ways on the internet . Take for example EnglishCentral ; I can practice listening and pronunciation on the site . It 's so happy for me because it 's a chance to improve my English skills and I can save money for buying my favorite things . I remembered it was very interesting and wonderful , and most of the pavilions had a long line . I want to go again , although I forgot the name of the restaurant . I feel Christmas is coming , seeing people who have Starbuck 's tumblers with the Chiristmas colors ; red , white or green . In order to attend a kimono auction , you need a license . I will go to Hawaii next summer . Generally , I do n't say much if the atmosphere of a conversation gets tense . However , I will find another way to say sorry for my irascibility . Because I had to teach her math , I do not want to go library . She never thought of anyone else And there is a bad smell around them because they became spoiled ; ( I think a man who threw them away is very stupid and cruel . It 's a little inconvenient , although it 's good for relaxing . Maybe I should live life more slowly . Why do people think days pass by so quickly after forty years of age ? But she felt days past by really fast when she was forty . Usually , the beans are sold with seasoning such as soy sause . So , a little bit of soy sause will spice up the beans . Due to the unique texture and taste , some people are not fond of it . Yeah , at least I 'm alive , and I have a job . It 's similar to `` Mentalist `` in that both protagonists of these two dramas can read someone 's mind with their amazing skills . Would n't it be awesome if we could read someone 's mind like they do ? Well hope I can make lot of friends here and exchange languages ( language correction ? ) with each other . In modern life , I think most people have an image ( icon ) . Maybe the image is ( of ) an economist , a president or a drawer ( artist ) , and so on . These people have an important influence on the admirer . In the first instance , I think that he is a prime singer and dancer . Because there are n't ( many ) people who can reach the attainment like he reached in this world . He often takes much money to help ( needy ) children through social welfare institutions . After school , I have to go to cram school . Now I 'm writing the text of my presentation . But , it 's tightly connected with the previous stories . If you do n't remember the stories , it 's better to watch T1 & T2 before you go to the theatre . It is always nice to write here for I am always so curious to find out who will be my first writing corrector ( or should I say who will be the first one to correct my writing , but no matter who you are , I would like to say `` thank you `` to all those who check my writing , you are the most wonderful people in the world ! You 've got to know the difference between `` given name `` `` family name `` and `` middle name `` . I often mixed them up before , but now all is clear . There is one thing you should always keep in mind : when you fill in a form , please mind your writing . If you use joined - up letters , then it would cause people trouble ( in ) recognizing what you wrote . This weekend I 'm going to the beach with my girlfriend to meet our friends there . Although I have listened to this song somewhere before , I did not know the title and singer until quite recently . My chance to get to know the song was a CM by a company of Instant noodles . I was born in a northern city of China , and I went to college in a north - eastern city . I love snow very much , and the winter in college left a deep impression in me and gave me good memories . It 's so delicious ! Hi , today we are having good sunshine . Last week I went to Hokkaido , which is in the northern part of Japan . . I went skiing there . Since I started to work , I had no chance to go skiing . I have actually witnessed a cab driver bargaining the ride fare with a foreign lady who was extremely tired after daylong shopping with her young kids . I 'm planning a summer camp with the pastors for all church members . The place we will stay is awesome , with little streams from the hills and half of the area is covered with trees , which is wonderful in summer . I 'm looking forward to going there . Are the problems international travellers cause greater than the advantages they bring ? Hence , More and more visitors should have opportunities to travel to other places . It 's a format of program when learning a new programming language . The company that I work at forced me to take a test yesterday . Today is the start of my english study . I went there , at that time , the doctor said to me `` there is a wisdom tooth in your mouth `` Stupid Day and Assertiveness Today , write your incorrect behaviours and write your correct behaviours , and perform the correct behaviours the next day . Recently , I often feel this way . Thank you for reading and correcting my entry . I think politicians should sacrifice themselves , less vested interests . This is what really happens in Japan . good job But his friend did n't come back till the middle of the night , he feel tired after a long journey , so he could n't keep on waiting for his friend . Well , it 's not really `` do nothing `` but studying Japanese . My parents want me to go for an exam of TOEIC and JLPT , then use the advantage of these two languages to get a job . Honestly , I 'm not really good at socializing with people . Stranger makes me nervous . Of course not to mention using the adventage of English or Japanese . . . . . . I have been a lacrosse player ever since I become a university student . Hello . It 's my first time using Lang - 8 please check my sentence . please make this diary sound more natural ~ ~ ~ ^ ^ If it is not for an important thing , I prefer not waiting . First of all , the small cute `` Daphne Odora `` , which is in full bloom from February to March , reminds me of going to cram school in Hiroshima where I stayed at my uncle 's house to go crram school . It 's like delicious , vanilla flavoured chewing gum . On the other hand , I felt an elegant atmosphere . unpleasant , such as strong s cologne , hair pomade , women 's perfume , ( it always smell good alone ) , just mixed up , came up to me and then , I got sick . I want help and to make friends in the world . Sounds more natural . My favorite artist is METALLICA . Today 's journal became about discontent . Today I read a translated fiction of chinese writer . While the man dreamed about country house and want to live in a farm , the girl liked to use brain not the strength for work . It was fun story that the English man can imagine how the young Eastern will be . So , dad said to eat dinner in the restaurant . It was a tough time , but I enjoyed talking with the customers . That 's why many people , especially men , were wonderinghow to pickthe ( right ) colors to make aflower bouquet . These hydrangeas have special colours and shapes as well . But as a matter of fact I got car - sick , being unable to say no when I had little appetite on our way there . Today I went running about twenty miles , but I could n't hear the footsteps of Spring yet . One is the Honolulu Marathon in Hawaii . just signed up to belong to a basketball team , yoga class , volunteer and so on . Recently I can go to work only two days in a month because I have been receiving post - surgical chemotherapy to prevent cancer recurrence and metastases . Though it was regrettable that I got sick , I believe my sickness have developed greatness to my soul . She majors in fine arts and she want to study in france in the future . The movie I want to watch recently But they alone do not warm my house , so I also use an oil fan heater . I 've kept playing basketball from when I was an elementary - school student . It is a very difficult sport for me , because I 'm not tall . But , I practiced shooting many times by 3 - point - line . In these days , I 'm always shopping or singing in the `` KARAOKE - BOX `` or drinking riquere or doing many things . When I gave a speech here the first time , I was a little nervous . I have to programming for my research . The language is OpenCV . I 'm going to study C and C + + language at first . Before long , you will find your home becoming neater . I should have worn a long bottom . However , the Japanese do not really understand the logic of star signs because they believe the blood type is more conceivable than star signs . Everything has an exception , and I guess I am not counted in the statistics of the star signs and blood types . This is my first entry on Lang - 8 . He often asked me how to study and manage time . changing my plans like doing this 3 times a week . memorable day and music This was the last time that my classmates and I had a meal together since next semester we will be divided into two different classes . So I lay down on my bed and listened to music on the radio , which made mehave a good mood . Additionally , light music helps me to fall asleep quickly . From that day on , I dreamed of mastering english as well as her . What is your favorite music ? Messi is great player ? Why you can earn more at Canadian companies is that they estimate individual skills more than Asian companies do so it really depends on your skills whether you can earn a lot of money or not . I hope my english gets better for many reasons . and I can help you with Korean , and a little bit of japanese . Does anyone on this site have such symptoms while staying in Japan or in your own country ? Recently , I felt like watching `` Avatar `` . My foreigner friend told me about that magazine yesterday . He possesses a lot of authority as businessman . He has taken care of his parents until he dropped out from a private university . I wish one day Catalonia will become an authentic country , and then we will be completely free . Men 's formal dress is easy . I went to buy a dress suit from a tailor yesterday , because I 'll participate in a friend 's wedding ceremony and I do n't have formal dress . If I were a woman , it would be difficult to choose , but I am a man , so it is easy . Men 's formal dress is more uniform than women 's . When we try to study English in Australia for six months by using a Japanese agent , can you guess how much money we have to pay for them ? I got angry , so I slammed the door . I knew nothing about foreign countries either . I developed chest muscles , upper leg muscles , and so on . Today is thursday . If you are a smartphone user . We are going to go to Himeji Castle and some other places . I want some things in my life to change such as finding a boyfriend , getting a job , being successful . . . But , my English was not good . Recently I often went to the States , almost 3 times a year in last 3 years . Nobody knows what would happen in the future . So , I need to improve my speaking and writing skill in English . The Rabbit has the personality traits of active , tame . . . . etc . I bought the paperback and an electronic dictionary . I stood all day long and arranged the company 's products . We have a big test tomorrow , and I mean BIG , very big . . . I am very , very , very nervous , because studying is not my favorite thing . I understand some English sentences which I could n't before . She was just fine , so I ` m really happy . Everyone seems delighted by it . My father had lots of potatoes in the house , more than he could eat before they became rotten . So I gave most of them to my yoggy teatcher with two carrots when I visited yoga studio . Their menus look so yummy ! ! I absolutely have to study English . Maybe , because it makes me have a headache . but I will try to learn more English There is a satellite school here and I 'm kind of an exchange student . Also , I think my English has improved more than when I was in Japan . It is my first time writing a diary in English . I hope someone will revise my mistakes in this article . I would really appreciate that . I 've gained some weight . The device is turned on every morning , but today something was wrong and it did n't work . She rode her bike and she gave me a chocolate , which was delicious . After reading a record about the debate between Obama and McCain , I thought there was a great difference between the 2 candidates , and that 's why everyone said Obama was better . Obama 's speech is full of numbers and truth , he memorized and used these records cleverly to support his opinions . On the contrary , McCain usually used concepts or vague words . When it turn to McCain , he said that it was right to do so because of justice and the government 's calculations . However , maybe fighting in Iraq has more benefits than disadvantages . But if McCain ca n't explain it clearly , I think it was clear that Obama was a better option than McCain . In Japan I watched the full moon on 20th , January . I forgot its title , but it was about designers who come up ( invent or design ) with variousequipment that help people , such as people living in developing countries . Yesterday , I used the Skype for the first time . For example , I like to read books which are , of course , hard - covered . The standard mobile phones which are sold in Japan have high - tech camera devices and internet connecting services . But I do not need such kinds of high - tech functions . Therefore I bought a very low - quality mobile phone which has just e - mail service and a very low - tech camera device . Nowadays , Do you think I need to own a car ? Therefore , I can do work more speedily / quickly and efficiently by using machines . All of above is a part of my essay that I wrote in a class during my study abroad in Hawaii . This is my first journal . WhyHaruki Murakami ? I guess they were on a day off . . ( It 's an absolutely impossible case in Japan ) Fortunately , the light was fine and we could phone . My First Time Writing A Diary In English It depends on the woman , but I think most women who are given a lot of love from their parents do n't do that , unlike this Taiwanese woman . If you type your name in the box , then the program shows some Kanjis in your illustrated brain on the screen . In the end , he talked about his experience of how he accidentally met his friend exactly on the day after he dreamed of his friend who he had n't seen for a long time . If anybody knows how to do , please teach me : ) The operator calmly said `` First you have to make sure he is already dead . `` After that the operator heard a gunshot from the other end of the phone . The hunter said `` What should I do next ? `` I 've never stayed in foreign countries , so I ca n't describe my feelings in proper expressions . And I know it could be the most precious part because Chongqing , together with its people and mountains , has inevitably constructed the background of my university life which has been maybe the purest yet most complicated period of my life . Differences between wish , hope , and believe A lot of frustration came out from both teams . Some players fell down to the ground and looked very hurt . TV program on - air : TSUNAMI . The father of the bully came to school to apologize to the student and However , the girl who was bullied retired from ( quit ) the team at that time and This time the bully told me that she wanted to retire from the team ( too ) . For example , he uses public transportation when going Our city is in the suburbs and it is difficult to travel I want to buy a beautiful wool cap to warm myself , red is best , which looks like fire in winter . One person who fooled them is making music on the Internet . My teacher would like to everyone write sentences . I think this technique is special . They control the effectiveness ! And exercising makes me feel refreshed ! After exercising , taking a bath is my favorite thing ! ! But , I really feel sorry / sad about my English right now . . . For example logarithms , vetcor operation and integral calculus . I took some photos with my digital camera at my bitthday party last week . This semester I 'm only taking 2 courses , but there are some other things I have to deal with . . . Now the area I live in Japan is in the rainy season . I 'm at a point where I can no longer find any appropiate books to study with , so I 'm basically wandering around in circles . So far , I 've completed a 1 - year language exchange programme in Japan , and have picked up an insane amount of vocabulary . I 'm not so sure about kanji compounds , vocabulary and grammar though . . . In this movie , Led Zeppelin 's famous song , ' Immigrant song ' was used . In 2008 ( two thousand and eight ? ! ) I earned a degree in Journalism at the University of Palermo and the first week of next November I 'll take the program to earn a specialist degree in Social and Institutional Communication . It 's a thick and soft udon with only simple soy sauce , and it was delicious but softer than I expected . After that , we had luxury dinner which had various sorts of sea products ! they usually go there during their middle semesters . There is no sunshine but there are strong ? high ? winds , therefore , I 'd better / rather stay at the dormitory , playing on my computer . And then , I read those comments , and I got really pleased and happy because those explanations helped me understand the parts I did n't in an easy way , & nbsp ; plus there were a lot of examples . Well , I 've had a delicious breakfast , and today the weather is n't as & nbsp ; cold as it was & nbsp ; before . Recently , I wonder whether foreign language should study in the country . Everyone please help me . I try to start writing a diary on Lang - 8 I think I want to study English more but it 's expensive to study English in japan . Kono neko wa okashikute hen desu . Kono neko wa senpuoki no mae de nemasu ga , sono nezou ga omoshiroi desu . Tabun , sore wa totemo atsui tenki no tame desu . Whenever I watch that show , I 'm haunted by the fear of terrorism haha . I am interested in `` SILS `` ( School of International Liberal Studies ) in Waseda University . After that , I talked with a college student . She has studied abroad for a year . I have returned to Fukuoka prefecture . I enjoyed looking at the choices in the beginning , but it was going to be complicated . So I am going to stay in Fukuoka for at least two years . Today We talked about blood type and many personality traits according to blood type with my phone conversation teacher I told that him in korea people believe that blood type affects the thinking and personality of people I thought I had to study English , especially the listening part . I received my laptop from repair . I paied the mobile phone & amp ; GABA ( English school ) 's expenses . Well , I 'm trying to translate a contract about medical instruments from Japanese to Chinese . Why ? `` At that time , I did n't know the meaning between drug free and free drug . The mackerel was roasted and dipped into sweet soy sauce . Memorial day ! ! Today I just wanted to say `` Hello `` to all of you . : D what my friends are thinking and can also send what I 'm thinking . Therefore , I 'll just go to bed right now . However , that blogger says that before you make friends , you have to input lots of words , about 5000 . Please somebody help me ! ! ! My dog gave birth to 1 boy and 3 girls on April 13th . After that I often visited the States for business and leisure . In another two years I will be sixty years old and I plan to have a trip to USA with my friends to drive across from LA to NYC . Today I went to a funeral in a Buddhist temple . The road was like the river so I was afraid of driving my car . I 'm excited a little because Lang - 8 was exactly what I wanted to find . I 'm getting a bit annoyed by all the spam accounts on sites that I like . At least , I personally do n't know anyone who is just waiting for that mail which promises a true and passionate relationship . And the ones that do make a living out of ' being a webcam girl ' or the like , the people that do have an interest in such things will naturally search for it themselves , wo n't they ? I have been looking for an interesting American drama that can help me improve my English listening skills , and today I finally found ' The Mentalist ' on an Internet site and downloaded 5 episodes from the first season . This drama is about investigators who belong to the California Victims Investigation organization and try to find murderers . It is very fascinating because the mentalist uses his mental power and hypnosis to track down the murderer . ? Anything else ? I like / enjoy playing tennis , skiing , and especially travelling ! We will enjoy ourselves this weekend . However , I suddenly heard terrible loud sound . And a lot of UFOs came over us , then they sprinkled poisonous rains ! This is an email requesting reshipment of my purchases . Library 3 < story > Second diary . I have never written a diary , even in Japanese ; They are learning ballet , piano , art and abacus , which is a Japanese crassice calculating tool . I think they are learning too many things for their ages . But , I never succeeded in teaching her continuasly . Thank you so much for reading my diary . If you have time PLEASE correct not only my spelling and grammer , Watashi no jimusho ( kaisha ) wa sochira desu . I had a computer certification test at 12 : 40 . I Have Questions Again . Well , I 'm reading at the moment a book called ( I do n't know the correct translation in English , I 'm translating the Portuguese title ) The girl that steal books . . . I 'm in the beginning , I ca n't undestand the story so well . Since a lot of people told me it 's a wonderful book , I 'm excited to read it . . . Usually it is played by professional SUMO wrestlers , but on this show , it is played by other fighting sports players and TV talents . The unique concept of it , and the amazing sense and talent of some players excited me so much ! Lo and behold , the Strikeforce champion as well as the DREAM champion Alistair Overeem was there , and he won ! However I gradually noticed that I ought to have more chances to speak in English . because I wanted to kid around , I said `` Good morning man ~ blalbla `` and we received guidance from him about how to get rid of the mouse . He said that at first we must find where the rat started the invasion . . When I say that , people around me look at me surprisingly as if they did n't expected me to say that and I end up looking odd . I say , `` We can listen to radio while doing simple tasks ( maybe give examples ? ) . I feel so relaxed while listening to the radio . For example , a Filipino said to me he wanted the bicycle - cargo on which I usually carry my kids . If we find that information , we can help satisfy the foreigner 's niche and it is a business chance too . I 'm a little bit nervous . At the beginning , I didnt 't like it so much , but gradually it caught my interest . Next I would like to watch the DVD of part one . with the differences , we ca n't learn the foreign cultures completely , and then if we do not have a good knowledge of the different cultures , it is a big challenge for us to write an English essay well . As foreign language learners , we seldom communicate with others in English or write English letters to others in our daily life ; that is to say , we do not have a good environment to learn and we regard the writing course as what we have to learn , but what we want to learn well . And I believe that if we learn more foreign culture and develop a better language environment in our English study , we will find that it will be easier for us to write . Somehow , I recently have n't talked with Americans in English . A few days ago , we went to the cinema to see `` Shrek forever `` near my home . Shrek was very funny and fantastic . Shrek feels that his married life is suddenly very boring . Shrek accepts the proposal and he is trapped . Could you do me a favor ? How are you ? I think my English sentences are cheesy . . . Can you believe a guy around 20 watched such a love story ? LOL In fact , I like love story movies because I do n't need to think deeply about them after watching them . Mio loves tomato . But these papers are too difficult to write , I feel that I will have a very `` good `` days in these two weeks . I had to speak English through a microphone . And I had to type English sentences with my keyboard . . I can improve my English ~ ~ It looks like a white carpet and it is very beautiful . because outside was sunshine and I did n't wear lots of clothes . Haha , wonderful snow I like it . No matter what 's sad things are in my heart , I always encourage myself finally ~ Hope is light ! They taught me how to play pool . I want to go out with them again ! While Gods is plural , but it is preceded by an article , I mean `` the `` . And this kind of tea was promoted by one sentence advertising saying : `` Please drink this tea if you want to control heat . `` It tasted very odinary when I drank it ( for ) the first time , before this advertisement started bombarding us from all directions . Many people fed them . no suspicious people following me It 's testosterone itself that makes the difference . The amount of testosterone released decides the sex of the fetus . Surprisingly , the more testosterone released , the more uneven the length is between your ring finger and your middle finger . To my opinion , I do n't think it 's good to pioneer biofuel , It will be a problem since it still needs fuels to transport the ingredient . If we start to use biofuel , people may think that the problem of food lacked has been solved , and start to use things unlimitedly , it will cause a waste , too . He said it 's kind of awkward because last year we ( both ) studied together at the same school , Yesterday , I registered with the sns site which my friend on this website recommended . I interpreted it as ` Im a lazy woman ` little mistake in grammar . Once I understood what he meant I quickly apologized . When we study a foreign language , we usually memorize one meaning or two for a single word . My neighbor , who lives in the ground - floor apartment across the alley , adopted two dogs . I called one Small White as it 's a white dog , and the other Spotty , as it has black spots . A few months ago , Spotty died due to old age . I thought it felt very sad because Spotty was gone . I saw him / her wandering in alleys and lanes nearby , I guess he / she was searching for Spotty . Although it has been three or four months since Spotty died , Small White still whines sometimes . In the contemporary world , technology is advancing at an astounding speed . But in the meantime , whether technology causes environmental problems has become a highly debated issue . Specifically , instead of wasting our resources , a simple life can conserve non - renewable resources , such as metals , minerals , petroleum and fossil fuels . It may be tempting to argue the easy life may carry potential drawbacks . However , the benefits reaped by technology far outweigh the disadvantages . so we are stayed in military service . . I think it 's our first travel . . But nobody wants to go military service . . ^ ^ ; Compared to real travel , joining the Army is a little different . Of course , travel make me flutter . . Everyday we should go to school or to work . . For my refreshment , I travel . . Have you ever had an experience in foreign travel ? How many different kinds of travel are you familiar with ? I am not too good at English For example , they can learn how to talk and begin to understand different languages by watching TV . The first lesson I learned was how to communicate properly with different people , including classmates , professors and people of different social status . We had a task that assumed you were in a lift with your boss and he did n't know you , so you had to try to promote yourself naturally . This kind of thing seems like a piece of cake , but it 's definitely useful in our daily lives . I stayed home the whole afternoon and became fat . Though my ability is still not good enough for the impending examination , it seems something constantly coaxes me to find other ways and escape from this endless yet doomed to fail enigmatic swirl . Only in daydreaming or the dreams of deep sleep could I find the contented smile with the delightful wrinkles embellishing my cheeks , carved by all the wounds from my sacrifice and torment . At that damn moment I just ca n't do anything practical or effective to cure or soothe her pain from the aches and itches , and all I can do is to comfort her with my care and words . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the sound of my mom 's breath reminds me to be more determined and obstinent for my hard - to - reach dream . The great mother 's day is around the corner , but I am still a dependent child who does n't have the ability to buy her any luxurious or exquisite stuff or treat her to a dinner in a great restaurant . I 'm feeling comfortable even though I recognize that there are many mistakes . I wanna take advantage of this happiness and time , to improve my English . And I worry about zemi that starts the second grade at university . I had write in English because I want to know what I wrote incorrect ! They will have a life of happiness . On this day , the obstruction will become a bridge . That movie is very interesting . I should remove worms from these leaves so they can keep growing . but I do n't have any friends to teach me English . That is how we show our strength to our customers . One of my colleagues became a father yesterday . I want to have such a great feeling , but sadly I ca n't give birth by myself . Shinokiya is wonderful place . I came to Singapore from South Korea . I have looked for courses in community centers in Singaporean websites yesterday because I want make a local friend so I looked for an English it was my first premiere . Because of that , the first day might have been canceled , but the typhoon went another way , so we were able to hold the festival . I got a pair of dumbbells to train my upper arms . They are not like regular dumbbells . This city falls victim to a disease we 're afraid of . Because the actors are perfect , and the genre is action . Now , I will introduce my favorite song . I drank too much . He seemed cold because he was n't wearing a jacket . Then I learned thatNicotinell patches are released fromNOVARTIS Pharma again . This situation has lasted for a couple of days already and the roads are littered with ice . I want to make many foreign friends , and learn about foreign people . I 'm going there by a working / holiday visa . In episode 1 - 3 , Rachel said , `` I should really get back to work , `` and Phoebe answered `` Yeah , 'cause otherwise someone might get what they actually ordered . `` . While other waitresses could serve well , Rachel could n't serve well . I think we have to care about wrong stereotypes . I am also expected for the coming new semester . but the leaves in Kyoto are especially beautiful and amazing . While I was riding on it , a Filipino person spoke to me in Japanese . But I thought the atmosphere was better in Sky Spa . I wish I could speak English fluently ! In order to improve my writing skills , I think I 'd better add a daily record of my activities . it 's really not easy to balance those three things at once . She gave me a shuttlecock key holder and some cookies . I will put it on my badminton 's racket case . I hope this accommodation remain for awhile , in spite of the upcoming tough economic condition . I 'm nervous recently . But it was quite easy for me , and I wanted to read something more proffesional , like a paper or thesis . It 's more bright here now compared to what it was before . All of my students passed it , which made me happy . Also , I thought I need to study harder not to be beaten by them in the future and always to be their teacher . Usual day Izumo is more beautiful place than where I thought about before visiting . I am disappointing now , I saw announcement today , and I now realize how difficult it is to apply for that program . Sometimes I think about why my parents always work so hard , yet my family is still so poor . I really do n't understand this . Even I am trying my best to get that scholarship , because I can ` t afford the sky high fees of graduate school . Some cell phones are very expensive , but they can do more things than cheap cell phones . I 'm going to study English and Germany hard on this site . This is the first time that I write my diary in English . In my dream , I could smell the cat and my nose was tickled by its fur . So it was very tough . Recently , the movie ' The Hurt Locker ' showed . My friend asked me about this sentence `` Enjoy your life there . `` That sentence is supposed to mean `` enjoy your life in canada . `` The daily temperatures here fluctuated between / from - 2 to + 3 degrees Celsius . Should one expect a reward when doing a good deed ? For example , he takes care of his friend 's wife when his friend goes abroad . Because if you try and prevent the thief who is doing something illegal Anther reason is doing a good is always recognized as a silly symbol . So why does n't the government give some reward and let them feel a sense of pride . I actually was not expecting such a great response by anyone since there are so many people writing a diary and wating for diary corrections . I just want to hear your voice again . I went out with someone to test and confirm how much I love you . though it 's very interesting to be with that boy , Since there had been unexpected visitors , I used up my coffee beans and I forgot to buy new coffee beans . I love the smell of muffins and coffee . It makes me feel so happy . That is my favorite moment of a day and it is where my energy comes from . My body is still craving a coffee and I am counting down the time until my favorite coffee shop opens . Today was a boring and a tedious day . So I feel bored ( & tedious ) . I want to go back to school . But , the language specs were very interesting . I cook every day because I have experience working at a restaurant as a part - timer , and saved money . And I also heard that sometimes lions show up . . . . the University 's library to study for myupcoming master course entrance exam . The exam is onthe 25th of August and we have to take 4 subjects including English . - It 's the script when I prepared the English speech contest in my 1st year in Uni . The leader seems to be a little bit strict . Since there are so many non - japanese people working out at our gyms , I 'd like to welcome them to our running session , too , which is exciting ! : ) If you skipped this step , the remaining temperature will harm the freshness , which means it will inevitably pull the rug out from under the all efforts you have taken . I am going to visit Pune for a business trip for several days and I want to get some informtion about Pune especially about tourist attractions in the area . The first one I draw is based upon the `` Madonna Della Seggiolia `` by Rafaello . Because it is so difficult to explain and express my job in detail . Many good friends who have different countries are probably here . To get a satisfactory result , I decided to get a 600 score . Next time , I will see her before my day off : ) Hello everyone . One day , I used google to help me improve my English . I do n't know why but I probably spend too much time on Internet or I do n't eat a lot of food and I often drink a lot of coffee . I 'd like to get in fitness clubs ' gym . This gym has a lot of foreigners and that 's why I 'd like to get in . I learned that some western cultures have the concept of ' personal space ' . This means that people think they have an invisible area around their body in which they are righteously occupying and when some an unfamiliar person comes in to that area , to them , it is an intrusion of their privacy . I hope that these past weeks were also useful for you . It snowed occasionally . And in the world , it is natural that lots of people spend it with their families . They want to spend it with their special boy - friends or girl - friends . Although speed limit is 55 mile an hour , most cars drive 70 miles an hour . Normally , rainy season lasts until June if my memory serves me right . Sometimes I felt uncomfortable , because my boyfriend seemed to love talking with the girl . Although I know they ca n't have any relations , I do n't like that he talks so much with her . Suddenly , I felt angry and asked him , ' Why do you know she loves it ? ' there was a menial man who graduated from Cambridge University The man went into military service and passed away in France . one of the my most favorite authors At the milk celebration , there was ' milking experience , making milk cheese , First , we put 8 lavender oil drops , 2 drops of milk concentrate , Previously , you guys corrected my resume for me . Thank you for that . I am interested in this new experience . I need to bake a pie , fry potatoes with beefsteaks , little pastries , what else . . . Well , I 'll invent something else to cook . The Korean national holiday `` Chu - Suk `` is over . We talked nicely 2 days ago and he was in bad mood . I stood next to him , helping him through his problem . because I like movie so I would like to watch english movie . My fanorite movie is Jackie Chain . Because my husband 's work was decided in Frankfurt . Sometimes I think that days are so short because I ca n't do much things . However , on weekends , the days are longer and then I do n't know what to do ! Now it is winter vacation , so I am happy : D Today I enrolled in Lang - 8 after a friend introduced me to the site . She said I can write on this website , and someone will correct my writing . Taipei 101 was build by the KTRT team and there are 101 floors above ground and 5 floors below ground . During the power outages , the traffic lights do n't operate . a bit tired as I am , I am pleased with him knowing more about chemistry . I am satisfied with my attitude towards the job . By the way , my friend and I studied MATTHEW on Saturday Bible study . but I have some free time to do something like this nowadays , so I 'm doing this . If I passed , I have to do the interview one more time . Sometimes I have a cough , runny nose , How can I learn English ? I had bread and soup for dinner while watching TV . However I think this situation is not common for the typical Japanese . That 's terrible . From the 8th to the 10th of May I was in Nizhniy Novgorod . A typhoon is approaching . The wind has picked up and it 's pouring . I 've just started Lang - 8 I 'm an IT engineer , so from technical view , it is not so hard , I thought . I always eat dinner at 11 p . m . Since she is very knowledgeable about architecture , and we have different opinions about it , we do n't get tired of discussing it . Besides , we can enter free of charge and the price of food and drinks is very reasonable . Volleyball Game I entered a volleyball game last Sunday . I usually use some LUSH products every bath time . So I decided to be an instant volunteer interpreter and help them . Well , I 'm a graduate student now . Of course , it 's a part time job . The party will be given in Tokyo at Roppongi . The recruitment number is 1000 people . What dress design we put on ? Is anything I can write that has never been written by others ? I will study tourism in university for 4 years . I am interested in the food problem . I am looking forward to going abroad to study . Yesterday , I had a party with my neighbors . Three people are living in our apartment , and sometimes we have dinner together , or talk over a cup of coffee . Although we only had 30 min to cook , the meal turned out to be really gorgeous ! ! ! Although I failed to win a prize at Seoul office of education KOI , I thought I was very good at programming . I 'd y be very grateful for any help to improve my English . The corn bits tenpura was the most delicious dish . Naturally , we looked the bill and were surprised and laughed . To be honest I do n't like to study or memorize grammar rules . I ate chicken rice twice in Singapore . I prefered the grilled one , so I placed an order for it . I felt it was like teriyaki chicken , a japanese dish . I ate an entire half of a chicken with my husband . I tried chicken rice again at the changi air port . I am going to live in singapore from 11th October . I want to eat chicken rice sold in different places ! I am becoming an architect and want to know more about my work , buildings , and designing in general . and music ( I dislike pop music and prefer genres like metal , metalcore , hardcore , punkrock , etc . ) . Sooooo . . 27th February is my father 's birthday . I bought his favorite ramen and wine . This is because it makes my shoes and skirt damp . it doesnt have any point . you shouldnt read this lol hi guys , sorry I havent written any entires . I have been forgetting about this sitelol I did n't expect that I could have such a lovely time there . its already been 3 weeks since I came back here . I def will keep studying english . If you are gooing to get scared , I suggest you stop reading . I think if you see something scary , you will keep your eyes open to protect yourself . But it 's the first time I 'm going there and Kyoto is one of the famce ( ? ) It 's because I heard from my friend that I would get many calls and messages from unknown people . But I recently have become confident about my English step by step . I think that it 's about time that I start skype and talk English positively . The Shinshouji shrine has a guardian angel for the Kabuki artists and the Sumou athletes . You can find Kabuki artists and sumou wrestlers on February third . People who got chocolates , cookies or various gifts on Valentine 's day give presents to the people that they received them from . Firstly , I think there are three ways to understand the meaning of words of second languages - replacement , internal definition , and external definition . Internal definition means learning words by dictionary definition . External definition means learning words by guessing its meaning when they are used in particular situations . Our experience has taught us that it is difficult to learn words with only their dictionary definition . By learning second languages , you can enjoy traveling abroad . First , the only way for Japanese people to understand English is to learn by external definition because of ( due to ) large cultural differences . So we have to learn English by external definition . By doing so , we can understand the exact meaning that we ca n't if we interpret English into Japanese . We have to stop the traditional way of learning English : interpretation . this is my first day using lang 8 and I made a blunder , because I choose german as the langauge that I m learning but the fact is I m learning english ! ! I came to singapore 7 years ago I m here to learn a new language also I wanted to start a new life in a totally different place but of course singaproe was just a temporary place for me , the place I really wanted to go to is england , the reason for me to go there may be ridiculous but I think it is tolerable , the reason is I wanted to have a british accent , its cool furthermore it sounds professional isnt it ? While depressed , I glanced at the date which is April first . I believe that memory is never lost , even when it seems to be , because it has more to do with the heart than the mind . So , we can walk around Shinjuku , Harajuku , Shibuya , Aoyama and everywhere in Tokyo easily . Maybe they have seen my old picture on lang - 8 . I 'll have a nap now and memorize some words this afternoon ~ This Sunday I will visit a host mother for just a look . For me it 's fascinating looking into people 's eyes and reading through them to know their real feelings , their eyes can tell me something hidden , what the mouth wo n't say : fear , sadness , happiness , envy , shyness , embarrassment , anger , surprise , pleasure , lies , pain , complicity , reproach . . . If we look at the most famous paintings , for example Mona Lisa , the intensity of the look will capture you and will invoke an emotion . I hardly understood what everyone was talking about . On the way home I stopped by the book store to buy a textbook to make my listening skills better . The big problem is the ice wind that blows right through me . Besides , I really like to listen to the sound of nature like birds singing , water flowing and rain falling , and the best place for it is Unmun Temple . Please give me advice ! ! ! ! ! ! ! ! ! ! ! ! ! ! : D But until now , I have n't been able to figure it out . I got the first comments for my journals . Thank you for checking it . Today , I went to my other campus . It 's much farther than my main campus . Yakuza is a Japanese gangster . when you take only the first syllable from each number , they are called , 8 ( ya ) , 9 ( ku ) , 3 ( za ) . My hometown , Kobe has a big house of a gangster known as `` yamaguchi group `` . However , I can not help but be impressed by the beauty of the tattoos on their backs . Tomo : `` ( Pointing at a sweet shop with Christmas decorations at the door ) Daddy , can we go into that shop ? `` I 'm going to restart to write . If you do not know what a Chikuwa is , read my previous post . Because of Harry Potter series , I began reading English novel : such as Henry James 's short novels and Jane Austen 's six novels . Besides children novels , I also think gothic novel are interesting . And this semester I need to write a research paper about Dark Romanticism Because Japanese book has many pictures about maids and Victorian times . France has ballet , Hawaii has the hula . I 'm very busy these days . When I go to bed many kinds of problems are coming and going in my brain . Someone taught me that if you have a ploblem you should n't think about it at night , because it makes your brain more excited . Generally , most of them were built during the Feudal period . Each of them has distinctive features . Previously , visitors used to be middle - aged or older men . Besides castles , Generals and Lords in the Feudal Period are also popular . But when growing up , you 'll find everything is different than what we thought before . We have to learn to bear what we do n't like , and we have to work to feed ourselves . We have re - instructed the packers to make sure to use proper packing material and we have made sure that panels will not shift in the carton to avoid any damages to the board . Yesterday , the temperature went down , and many people feel that autumn has come . and I am not prepared to give a presentation ! I 'd like to read this book a lot of times and to develop my skills . And I do not have a kimono for such a formal place in April . I have questions now , so I want to answer these questions , but these questions are a little difficult and abstract . What is the difference between a scientific argument and a speculative argument ? Suppose that you are developing a medicine . Is such an experiment likely to give you new insight ? ? This way of living can be defined as ' ' passing through , `` which means that one finds the meaning of an act , not in the present , but in the future . For one person , ` ` praying `` itself is an act and a pleasure . I love kimonos very much , but I do n't wear them very often . Now it is raining and sometimes snowing in the central area of Tokyo . From my personal viewpoint , I do not like cold weather , so I really enjoy the warmth of this winter . That 's just what one would expect of a Harvard grad . A : I 'm afraid it 's too much to ask , and I hope it is n't too much trouble of you , but . . . . I 'm not a fashionable person , but I 'm interested in fashion : ) We got to the trash bin and found my empty plate , empty juice bottle and empty sweets box . . . Some hungry people should have been eating them . It was my fault , but he did n't need to be so angry . I hope he will be assigned in another department next quarter . He was very surprised and looked at me sullenly . Because I was content , I went to sleep , Because this place is closer to the seismic center than Fukushima - nuclear power plant AND Onegawa - nuclear power plant was hit stronger than the Fukushima - ones from the Earthquake , Tsunami and seismic intensity . . . . . . I would like to improve my English skills and learn about each other 's cultures . My first english diary . These day , I have been scolded for not resting sometimes ! in the following sentence : my classmate is warning me that if I still have n't sent any part to my supervisor the worst thing is my friend just came to visit me from Nottingham . . . According to their comment on NicoNico Douga , they put sticky notes on a piece of drawing paper to make Mario , Goombas , and theKoopa troopas . Probably that partner could be an lang - 8 user , that would be nice too , so I am starting this search . Then I spend every weekends to study Japanese by reading aloud , for I have to study hard for my major as a junior whose dream is to pursue further studies . Almost all of my classmates have begun to prepare for NETEM , and that 's a little scary I think . You have touched me so much that I do n't know what to say . It looks like three - dimensional art . Geography class 0904 : What is the difference in taste between IR - 8 and Japonica Rice ? I hope that they will eventually remember each name and location . What is the difference between IR - 8 and Japonica rice when eaten ? They are really clever . He had heart on forehead , which is lovely for the Valentine 's Day . I would like to have ridden him even the first time I was scared of him At first , I could n't adapt to those teenagers who were noisy in my class or doing unrelated work . The parts that I ordered last week arrived today ! ! It looks good ! ! I look like a hamster with big cheeks ! I am very glad the other person corrected my errors . I gave lot of care to the schedule , ingredients , data of customers and so on in this one month . It is famous for its hot - springs and beautiful sea . June is a rainy season in Japan . When the rainy season has finished , the summer season comes after . Some people do it like kissing or something before they even get a boyfriend or girlfriend It is just like you liking somebody . What is the difference between before and after something ? Sending emails and making calls use a lot of electronics . Also used telephones are always abandoned in remote areas . It is not good for the environment . Nevertheless this movie was a comedy , at the end the women made it up and it drew tears from me . and I wondered why the blank of `` school and address `` is very small . I am twenty three years old ; it seems that I 'm not young , but I am still in school . I hope in the furture I can have a beautiful life , and I know it 's not easy . As a man , you must give your family a comfortable life . you should make your father and mother know you are strong enough to support a family . But I 'm still a student now ; I can do nothing except learn and learn every day . I hope I can do something for my family , but I do n't know what . I am listening to Eminem 's music right now ! Jeju is a beautiful island . One of the women and the three men are my friends in my university . We scheduled to meet at a pub in front of my university . ( not necessary ) We introduced each other and then we drank soju . ( Korean alcohol ) We had a very fun and interesting time . Recently I 've started listening to English audio books to improve my listening skills . Now I 'm listening to a book titled < Witch & Wizard > and I . . . I think the author of the book must have either seen too much Japanese animation or is a huge fan of the Harry Potter series . Anyway I 'll finish it somehow some day . It is traditional event to visit the grave of the deceased . How about your country , what occasion 's do you display / celebrate Okay , anyway what I am trying to say is that cheese cake is not just a cake to me , it is a gourmet to me . A sponge cake should be the most basic step of any cakes . My daughter wanted new outfits as her Christmas gift and I wanted a new laptop However she grew up and she already knows who Santa is . Watashi wa Surobenia - jin desu . So , in future ( when I start my world travel . . ) , I will go to many countries and meet my friends . . . I welcome many friends from other countries . . . I already died so many times . . . But it will be very deifficult to make . This is just the beginning of making my app . The next morning I felt exhausted . Now that I 'm healthier , it 's time to resume learning English ! ! I read some diaries written by Lang - 8 users learning Japanese . Restart Toilet Training Mothers should n't be too nervous about this kind of discipline . One day , she played with her friend climbing the jungle gym , but her friend always climbed higher than her , and so she started to cry out of frustration . However , she has been suffering from hemorrhoids since last month , and we finally succeeded to have her wear diapers to heal her buttocks . Van to iimasu . watashi ha nihongo wo renshyushitai desu ! Though my job position is a common clerk ( I belong to the sales department ) , I have a lot of responsibilities to my customers . After the Tohoku Earthquake , electric companys are saying that people should refrain from using electricity . We believe this means that gas users will come back , but still many people are choosing all - electronic residences . This is the first time I 've joined this website . I heard about it yesterday and I want to improve my English , so I joined it . I hope everybody will help me improve my English skill . The beautiful trees on the right side of the street where I 'm walking are blooming . Riding a bicycle up the hill on summer days is very hard . ( in summer ) I wish to get to know some friends here to study together . Merry Christmas Merry Christmas and A Happy New Year . or when I see a car of the same type and color which he drove . He was my dreamer , he showed me a lot of things . We are planning to play games with kids . I 'm trying all that I can to learn English and Japanese too . . . Today I was , in a `` how to learn Japanese `` blog , and I found a theme about my japanese . . . also , I grilled chicken breast and sprinkled some pepper and salt on it . My summer vacation in 2005 was exciting because I went to Dagupan City in Philippines where my cousin 's family lives . But I especially remembered visiting the Hundred Islands . I had a nice and peaceful time with my cousin 's family on a island which was chosen by me . Obama 's presidential inaugural address To be honest , I had never heard the presidential oath in detail in the past . The economy is badly weakened . . . `` - He holds respect in the forefront . . . `` For us , they fought and died in places like . . . `` I wanna study english because I will go abroad this Andy Warhol 's work made my view be widened . I will eat soumen , which is like a noodle . The favorite book center where I want to go shopping is located in Guangzhou . But when you come to their country , begin living their life , and speaking their language , you understand that they are not that different from you . I usually use QQ ( similar to Skype ) on the internet with my girlfriend , who is Chinese , at 8 PM . Why would you make coffee before going to bed ? I should have more interesting things to do rather than sleeping almost all morning . I wanted to upload these dishes ' pictures but my cellphone 's battery had gone off . At the party , we talked about many kinds of topics . For example , economics , other colleagues , men and women and music . I am studying two languages every day . Hopefully , tomorrow I will have enough time to sleep Two German women came to this farm yesterday . Today was the first day to work with them . there are 5 friends I 'm familiar with . Actually I 've heard that such an action , when lots of electrical devices are turned off and on at the same time , can damage the power supply network . I will introduce myself . It is cloudy today . She is always kind to me . She is lovely to me . She always teaches me . I have a class in one hour , so I 'm listening to music and writing this . But if I want to raise my score much , I had better study Listening . Because Listening should raise my score more than Reading . I visited my parents and drank with my parents . I 'd like to see her and her parents soon ! Of course I like Japanimation too . She is so cute and looks like an angel . I practice on Monday , Tuesday and Wednesday . That 's equal to 9 hours . Thank you for the reccomendations , Beth , NurikoSpecial and Kchasm ^ ^ ( I saw KCasm 's correction , and afterwards I went to buy the DVD . . . ) Can you see the paper disk ? It says `` You can place the disk containing episode 1 here , after buying it . `` Why the hell do I have to buy it ? ? ? ? for my birthday I spent very good time in shanghai . I was very happy . I really like my familly . Maybe I can borrow some more accessories from my other friends , we will see . . . I 'm sorry I ca n't explain my feelings well about it . My mom bought me oysters as a souvenir from Sendai , Miyagi . This is my first diary . because my actual name is , duck jun kim . I 'm very glad to know it , but before I do I must pass my exams , because I want to continue my education in the institute . They are very difficult subjects , but I hope I pass them very well ! Thus , I 'd like to correct my English by writing in my journal every day . I have no Japanese friends in Hong Kong so I am looking for Japanese friends . I have never met people who can speak Japanese in Hong Kong except my company staff . Even though you have many things , you see something of your friend 's that you do n't have , and you really want it . Although this is true , I believe we have to be satisfied . He was nice guy , cute and very gentle . Though I have no chance to speak English in my workplace now , Because my friends or relative always remember that today is my birthday . I 'm looking forward to this meeting with my friend . I knew that IKEA in Japanese pronunciation is different from English . I had to ask somestaff members about my luggage , but no one could speak Japanese at theHonkong air port and no one helped such a miserable Japanese man . I made a mistake , and almost went to thecutoms counter because some members of staff told me I should go there to receive my lugagge . Some members of staff stopped me at the entrance of thedepature lobby , because they found asmall scissors in my bag . I confirmed my flight schedule at the big electronic board . And after that , I felt he became somewhat better than he had been . It 's very necessary ! JUST WAITING , WAITING FOR SUCCESS , I DON ' T BELIEVE GOD , BUT I STILL HOPE GOD can GIVE ME A CHANCE TO TAKE CARE OF MYSELF AND YOU ! ! I learned English for some years in school , but I was never succesful . So , I am trying to improve my English with this blog ( journal ) and I hope some people will correct my posts and help me to be better in this language . fortunately my friend drove to the theater . so I appreciate her thanks to my friend ! terrible , I wrote a lot , but I lost them , how could this happened ? he is an inspector of agriculture and has a big tattoo on his back . You can communicate with anyone in foreign countries , since English is the most important language . Nowadays , even a strong country ca n't easily make colonies in the world . Hi all . I am new to lang - 8 . I need som help . Question about `` most `` Cameron Diaz just now on TV . Tom was so handsome and Ms . I am an engineer of a construction company and I am constructing a pharmaceutical factory in Shizuoka . So I enrolled a correspondence university to get a teacher license . At a hair salon in Harajuku I was off today . I always have some bread , coffee , and salad for breakfast . Especially , extra virgin oil is very good for health . However , I have to admit that I should put much more effort in studying English . But I 'm still murmuring when I speak English with a native speaker . Japan is in deep recession . I heard from xx that you helped deal with office matters for me during my sick leave . I really want to thank you . For example , kindness , sincerity , strength and so on . As for me , I think friendship is important . It 's my first time to register here They were amazing and their monuments bear witness to how great they were . The ancient Egyptians managed to build their country and leave their footprints in the land so that we can remember them . Osama Bin Laden was killed in a mansion outside Islamabad and his body was recovered by US authorities . I am going to begin writing a diary in English tomorrow . Although real cars is consist of hard iron , this movie portrays many personified cars as soft and cute . I told her of my recent problems , and she advised me to do everything slowly , and at my own pace . Japanese people have a many opportunities to hear American English from movies , dramas and music , but in my case I hardly ever hear British English in my everyday life . MF consists of / consists out of three families having distinct characters . But she has difficulties studying , which worries her mother a lot . My friend works making Bizenyaki , so I will get a chance to visit the Bizenyaki work place . So some of them are very skilled in their use of English and they are even better than I am . So I advised her . Today , I listened to Taylor Swift 's songs . a sandwich . The following are the comparisons between them . When I watch the financial news lately , almost every time , many traders on the stock exchange bury their heads in their hands looking distressed . Soy sauce factory and the end on the tour , you can get a bottle of soy sauce : DD So I booked a nice restaurant to hold a end of the year party for my office friends . If someone has to check due to an emergency , they should ask permission before checking it . airplane because the body color is blue and I like blue very much ! At my university , there is a place I often go these days . It is more relaxing there than in the library . especially my speaking and ( my ) listening . I do n't know what I have to do : learn each pronunciation of a kanji , or learn pronunciation of words using this kanji . I went to the baseball park with my friend on Saturday . Some friends have already started finding employment . This makes me nervous . I studied there for two years , and graduated in 2007 . When I moved from my parents house , where I had my own room , to the dormitory I had to omit some things I wanted to get because we did n't have enough space in the room . Why did I grow up like this ? I enjoy optimistic people , who want to do new things and who laugh a lot . Her friend said that if you soaked this mango in a yogurt , it would become a fresh mango ! She is very positive person , which makes me a positive person . Can you help me translate this into the right grammar ? The plane has been carrying more than sixteen - thousand passengers without any serious accidents for the last ten years . Today 's weather is very fine ~ Well , I 'm going to go to New Zealand during the summer vacation . In British custom , putting red poppies on their chests is to pay respect to all war deaths on the 11th of Nov , an armistice day . By the way Catcher ~ 's influence is a little strong . This periods American authors are very good . Fitzgerald , Capote , Richard Brautigan , Charles Bukowski . . My favorite short story is Fitzgerald 's ' Babylon Revisited ' . It 's a lonely and a little sad story . This story 's character 's conversation is very cool . Hi everyone , I just registered this afternooon , and wish someone who could improve my poor English . I also help my friends with Chinese . . I agreewith her opinion . I have an iPod touch which I won as a prize 2 years ago . except for the phone and mobile internet features . I did n't get used to searchingfor a web manual , This opened thegateway to knowledge , information and passtime . I was able to show friends theOdawara castle . But the risk is it prevents me from studying and reading . But before sleeping I can enjoy watching movies in bed . iPod touch is my tough and enjoyable friend . In the central neighborhood every ten steps that I took there was a newsstand . I 've never seen so many newsstands together . . Two survivors were found today in Japan ! Today , two survivors were found after 9 days . I had an exam this morning . I will have to take the same class next term . The Delay Because of the Typhoon The texts which should be read are fortunately not difficult . If I were more acitve in the seminar , I could learn more , but if I concentrated more on the seminar , I would be tired . Yet today is a very warm and spring - like beautiful day ! So I decide to take the exam although I do n't want to study the laws and theories . The gangs of New York , the black underdogs , the Indians in reservations that lose their spirit . I want to enjoy keeping a diary . fable about coffee ( translated from Russian ) In the first , he threw a carrot , in next pan he put an egg and the last pan was filled with granules of coffee . After some time he took out the carrot and egg and poured out the coffee . - Carrot and egg have boiled and the coffee have dissolved . But what about the coffee ? - It 's the most interesting . The granules of coffee have absolutely changed the water . Recently I am very sleepy . Hello ! My name is Sumi ! It 's my first time to write my diary on this website . I hope I make a lot of foreign friends and learn other languages and teach Japanese to whoever wants to learn it . It 's getting warmer and warmer these days . By using this device with 4 kinds of filtration , clean water emerges in the end . In a small town , you have to own a car to ensure a comfortable living . Another aspect of the excitement of city living is the variety of cultural activities available . Still , I would rather be a bit more cautious and live in a large city than to feel secure but bored in a small town . Guess how many times I can write `` clouds `` in a paragraph so short ! I got in one university finally ! ! ! ! ! I might live in Kyoto ! ! wow ~ I 'm so happy now Please check my diary . We went to drink after the race and caught up with each other . Whether you believe it or not , Tsukasa and I had already thought about an escape route just in case before we went there . On the thatched roof I read an internet blog article reporting a new program , titled `` Kimchi Chronicles `` , which will air this year on PBS channel in the United States . Both noodles have a very similar flavour , but the noodles are different . It might be uncomfortable to a foreigner , especially if the she did n't like the untidy atmosphere of a small restaurant . The restaurant is very famous for Milmyeon and as I heard , the taste of the noodles are quite delicious . It was an experimental exam , so we ` ll write it for a note in the end of May ^ So I bought several lottery tickets . To spend several minutes dreaming and being excited is not so bad . On the other hand , when the bride arrived at the wedding , she looked so relaxed and happy . It has been one year since I met them last , so I enjoyed talking with them . African music is so rhythmic and has an unique tempo . So , I like it ! I didn ` t research anything about the country yet . I sometimes pick up those leaves that have grown enough and saute with salt and pepper . We tookthe train to go to school and we would come home together from doing ourhomestay . His name is HYON . You can learn about Hideyoshi and the relationship of people surrounding him with English infomation and also can see a lot of works of art there . Since the new SCM project started this March , I 've been quite busy . . . Although the temperature is still low ( like - 5 to - 10 ) , the weather has been sunny recently in Toronto . The other day , even though the temperature was - 5 , people were drinking on patios in the afternoon ! Unfortunately , it is prohibited in Toronto to drink outside . It would suck to be sneezing all day when the long and cold winter has finally been coming to an end . doctors always write down main diseases , but from my point of view , it does not always mean main disease . We should look into the patient 's diseases if the are correct enough to justfy their treatments . I 'm hungry . I 'm hungry now , but I ca n't eat anything because I have to get a medical check at 2 : 30 in the afternoon . Some people caught influenza . But I still caught a cold again : ( And I finally decieded to get it . But I felt something strange with this cloth Tonight , I received a notebook cover that I bought by mail order yesterday . It is very expensive but it did not satisfy me , because it is a little bigger than I thought . Please contribute in both English and Japanese . I have tests tomorrow at school . I have to study tonight for tomorrow 's tests . but I continued studying English after work . but English studying is very interesting ! ! It 's been a long time since I have written an English diary , so it will take me some time to get used to it : ) haha ~ ~ nice to meet everyone ! ! Champions ! ( 24 / MAR / 2009 ) I didn ' t go anywhere because I watched the WBC on TV . I was disappointed . Question : How to learn language ? ThAnks TO them , I can listen to English while having fun . Incidentally , because it is very difficult , I gave up reading `` SHERLOCK HOLMES `` . Today , I talked and played tabletennis with him . Since he rolls a turban on his head everyday , and I had caught sight of him praying several times . Anyway , I have taken an interest in Islam culture since long time ago . Frankly speaking , I wanna ask him some questions about his religion . Learning norsk . . . We were strangers , but he made a good impression on me . But maybe you ca n't tell from this pic . . I never accept some stimulation like . . . mountain erupt = ( LMAO Yes , I know I will soon be attending a university and that I 'm 18 years old . When some people find this out about me , they are surprised and they think that I have a problem . I can learn a lot of new information from cartoons , especially cartoons about history . I love a lot of cartoons , especially Japanese anime . I like anime that are about problems in society or about history . My favorite game My mother told me , `` You should create your everyday life to bring more brilliant moments in it . `` About Shi - itake mushrooms ww I 'm recently interested in California , because my university recommends us to go abroad to study at University of California . That is because McDonald 's in Japan campaigned various American Hamburgers . It is famous as the home of the deity of studies . In my opinion , Korean food is the most delicious food in the world . When it comes to things that are `` slow and patient `` , nothing quite matches the variety of Korean cuisine . I felt it 's important to study English recently . You know , Japan is a small island , so we do n't need to speak English . We rarely meet Westerners , especially in rural but urban areas such as Tokyo and so on . I felt it 's necessary to learn English lately . So I started this service , `` Land - 8 `` . sometime I think I am really want to study architecture or . . I like vegetables because they are not too rich to eat . I 've been temporarily back home this holiday . The consumption of energy is clearly increasing all over the world recently . The excessive consumption of energy has caused various environmental problems . This very famous song is written by the extremely talent musician Jose Feliciano . That is the epic goal of every musiciain , to reach to the heart of others . From today , I will write consistently in my diary . If a dog is a rabid dog , it 's very dangerous . Nice to meet you . My favorite character is Donald Duck . By the way , I have n't logged into Lang - 8 in a while . I could n't log in because I had forgotten my ID & password . Also , I have not been able to find joyfulness to keep a diary here . I would n't like to add any more social networks . Despite my feeling , my English teacher eagerly encouraged me to keep a diary and write something in English yesterday . I read a scientific magazine a few days ago . I 'm a vegetarian , ( actually I 'm a pescetarian , it 's almost impossible to be a perfect vegetarian in Japan ! ) and it 's very rare here in Japan , many Japanese do n't even know what a vegetarian is ! I go abroad quite often and it 's not hard to find vege food in other countries , esp , in India all food is marked saying whether it is for vege or non - vege . Maybe I should open a restaurant for vegetarians ? ? I did n't go to work because of a toothache . But just after lunch , my toothache flared up . I hope my toothache can heal quickly . It is an English composition about studying foreign languages . Three Russian sumo wrestlers took some drugs ( marijuana , hemp , etc ) and then they were caught by the police . I want to learn Japanese . I 'm ready to help your Bulgarian . The Earthquake wreaked havoc upon the country especially in the Tohoku region . Nowadays , I see people smoking in the street . Today is extremely cold . If it is excluded , it 's all fun . I tried again and again . pas de volley , pas de vie . . . I know I 'm crazy but I love them and I really think they 're beautiful ! I 'm not sure if it 's cool or not , but he appears from the top of the fire engine ! I have a great spot at the front where the fireworks are shot , many workers are now setting up the fireworks . : ) I was surprised that they had gotten my phone number from a teacher ( not sure what this last part means ) But I am still happy , I am no longer worried about how I can attract more members , and that adds to my confidence . Now , I have to prepare the welcoming ceremony to let more freshman participate in the club . E - mail makes me feel happy , but uneasy and sad sometimes What does `` text contributions `` mean ? Is it something like ' This book is for Helen ' or ' For my parents ' , written by the writer on the reverse of the title page ? so it damages the hair . I want to improve my English because I like talking with people ; girls in particular . lol I intend to pronounce the corrections of this entry and be corrected by my pronounciation by a native English speaker on skype . I love spring because it 's warmer than winter . Yesterday I bought a used bicycle cheaply from a co - worker . That 's why I made plans to snowboard first . I do n't like to go the amusement park because the route to there is heavily congested all the time . because 2 days ago I hung out with my best friend I mean , for instance , at first they only detected oil in one place . Besides , before the petroleum was found in Daqing , it ( the region ) was a wasteland . Grammar and listening were more important than speaking for taking ( the ) exams . We are comfortable with each other . Moreover , I like the atmosphere of getting together with my family . I am now an exchange student of Bergen University in Norway . The document is very important for our work . We have to improve the service continuously . to evangelize the Pakistani people . When I heard of her story , I decided to be a teacher A way of thinking by Japanese is restricted by Japanese social convention without realizing . because the girls there are beautiful . We wrote calligraphy at first , and after that the teacher started teaching us how to sketch . today I met my older sister and her baby . I like the British spelling , pronunciation , and expressions as follows : sound in British English . tell me whether the British are more likely to pronounce it as ' I : ~ ' ? What happened ? For this competition , I needed gain weight so I would have some to lose . So I did n't fear gaining weight until today . : ] Secondly , `` t `` play more sports I decided to run 10 km ( about 6 . 2 miles ) per day , and to ride a bicycle instead of riding on the train . All the santa and easter bunny things disappeared and now , it 's only about eating . I have to put some money onto my rechargeable creditcard in order to buy the tickets ( for me and my friend ) online . The building has two towers . Tomorrow , I 'm gon na leave here for Ipoh by a express , KTM . Ipoh is also a city of Malaysia . I will try to write English and want to be able to express my thoughts in English . So I thought there is no problem if our store is closed today . I 'm very satisfied with that color I hesitated dying it . I have heard that the Maldives ' sea level has been rising as the Antarctic glacier melts . This also affects the animals and plants in Korea . So , we switched from the restaurant that we were going to go to , to the bar . All I need is courage . My computer is slightly old and slightly weird . Weird . . . I hope that my english writing skills will improve in the future . I would like to thank everyone who is going to give me good advice . [ First contact with an alien civilization ] It is not certain that we will see any aliens because we should have already seen some of them if they existed . It is certain that more and more people will visit and stay in cities because a lot of people in the world seek more convenient and comfortable lives . Of course , the number of computers increase and more people have the chance to see and use them . However , it is difficult for computers to become popular in all nations including developing countries . She visited my house twice a week and studied eagerly . I already graduated from university and my major was occupation rehabilitation . When I get up and look out the window , to my dismay , it is still raining . Rain has recently become common in most areas of China . In Japan this is called an `` American dog `` . This is not the case in the US I am wondering about the name `` corn dog `` , why `` corn `` ? ? I usually record music from CDs and transfer it into my iPod and watch DVDs on my PC . The device is an important tool for me to learn English through music and shows . I can watch DVDs again and it will help my listening skills ! ! Enoshima is centered along the coast of Sagami Bay . The region along the coast is called Shonan . Shonan beach is the most popular in Japan . Getting back to my main subject , I recommend two Ramen Houses . The book is full of unexpected twists and we do not know who the terrorist or the guardian of freedom truly are . And if you are not I would still recommend it because Digital Fortress contains an amazing story which drags you away from our gray reality and certainly changes your opinion about thrilling books . Indian food is like roti canai , which is made of dough tighter with some soup . MERRY CHRISTMAS Today is Chirstmas day , but I just stay at home ~ without friends ! What is a terrible day ! A foreign customer is coming tomorrow . Unwinded at the classic concert . Although it was Wednesday yesterday , the movie theater was full of the fans of Evangelion and many had to stand to watch it . I chose Business Administration when I enter the school . But I do n't want to give up , I will study harder than before . Do you agree or disagree with the following statement ? and co - workers is extremely good . recommend on television , popular TV programs and their children not to watch television . watch television all night . really unhealthy for them . avoid useless and noneducational information . My life seems like such a catastrophe that I could n't help but sob for all my past teen - life . Is it alright for a sophemore to dream anything about her future ? I work for an IT company , supporting on - line community developers like Lang - 8 's development vendor . I 've worked here for about three years . Our clients require us to make business plans to generate profits via internet communities . This job is difficult but it interests me because we can directly recognize the reaction of the users through our plans . I , however , want to learn more , and I know that there are azure , emerald and pale * . My older sister also bought a little turtle after she saw my pet turtle . There is a crown at a science museum in Tokyo . Trad Japan is one of my favorite TV programs . It explains many traditional topics with unique perspectives in English . His favorite pagoda is Touji 's ( one ) . The host asked another question . The host compared European church towers with Japanese towers . We have never heard stories about tall towers falling down in our earthquake - plagued country . I wonder if most of foreigners think they can climb Japanese five storied I had to mediate a conflict of opinions , because the employee was in trouble with the store manager for a couple of weeks . I have no plan to become a polylinguist at all , but I might have to study basic grammar and conversations in those languages . This weekend has been very boring . I have also sent an email to my director of my project ( the professor who advises about it ) . Now , I 'm waiting for a phone call . But I did n't have a cast , so I bought pudding . When I do n't have something to do , I go to the convenience store . But , it became a good memory ! ! The good news is that I can get home earlier , so I think I can have more time to type my journal now . It was the first timeseeing an university festival . . It was the usual time . I like reading novels and books on economy at home . I 'll go to another country to teach Korean language maybe for 2 years but I do n't know when I will go there . If I live in another country than Korea this summer , can you come to me still ? I have only heard of this movement until my company made us notice about it and suggested to participate . If we do it for 40 consecutive days , that 's only about a month and ten days ; we could save a life . She and I were supposed to go somewhere , but the weather is so fickle . Just a while back it was really windy and there was snow everywhere but now it looks as if it 'd never snowed . I wanna enjoy the weekend . kk Plz gim me advice ! This is a very serious problem . I spent a lot of time learning English to get agood position in the company and I am really interested in communicating with people oversea . Luckily for me , I have had a hope for the future since I found apurpose for my job , when I was young , I just worked hard without any suspicions to my job , because I thought that working in the company is our duty , even though the job is not interesting . He told us , because he thinks we are innocent , that he was willing to keep in touch with us . I have been studying English for over 15 years . I had learned , at language school , however I could not understand and I forgot . I use a electric dictionary and it contains some definitions . This time I thought it was good to use English - English dictionary in order to learn the differences . But the descriptions of silly , stupid and also foolish were slightly similar . And I hope to study English very hard ! On the other hand , 12 % people dislike obese people and this is less than the 16 % of people in 2003 . By the way , recently one my lang - 8 friends said that he dislikes female smokers . I will have my 20th birthday in two days ! A 20 year old girl , but I think I know a little about all aspects ! what a pity ! think of Willy Wonka and he got knighted . But if you are a person who is able to make your brain always drive on , I guess you are able to think about more useful things although it is different from person to person . I 'm a medical 6th grade student at a medical school , so I 'm busy preparing for the examination for medical qualification . I ate fried chicken and had a beer . For the two paper assignment , I need to write about four pages . I 've used it for approximately a week , I feel it suits checking feeds , watching iTunesU courses , reading some comics in bed before going to sleep . I 've done everything that my English teachers taught me to do : recite English words , recite passages , learn grammar , and do listening exercises to prepare for my exams . l am very uneasy . The idea that a person 's character is decided from blood type is wrong , because the fact is that there are n't relations between a blood type and a character has been proved scientifically . We have different personalities , and nobody can decide their character . I have updated my profile but I think it is not perfect . Please read the following : Today I went to a children gym . He usually plays with boys of the same age in the nursery school , but he can play with boys of different age too . After that , we went to a restaurant ( Big boy ) , and we had lunch there . After lunch I played MARIO KART on the Nintendo DS with my host sister . A Typhoon is coming . The wind and pouring rain made it difficult to control the motorcycle . My host family is Filipino I have a toothache ! I went back to my parents ' house in Japan for the New Year 's holiday . In Japan there is really cold weather and the financial crisis too . So I went to `` hatsumoude `` with my parents and I watched the `` Hakone Ekiden `` on TV . I used to have 20 - 20 vision , but now I need glasses . I enjoyed a pipe organ concert . Organs and pianos are so different . recently asked me about the condition of my car by telehpone . but all I can see is a rice field because my area is the country side . So I 'm not good at playing sports but I enjoy leisure sports . I want someone to help me with my English and Chinese . I 'm a Japanese computer engineer . So I try to study English by some ways , such as translating computer related documents on the Internet , reading a grammar book and taking lessons in conversational English . It 's a place where people with disabilities and children stay . It is my first English dairy today . I do n't know how to write . I do not have to go to work , I do not have any duties , except learning English of course . This morning he woke up early at 7 . I usually eat out because I have lived the single life for 9 years . It 's a very famous food in Japan , and it 's very easy to cook ! However each country has a different language even though the EU is one land . Which ones of the following sentences are possible to use ? I learned about O - mamori in English and Japanese , so I will write about traditional Japanese O - mamori . Usually , pieces of paper or wood are put inside a small bag or cloth . Later it enabled me to play my kids their favorite songs - - most of them were anime songs or nursery songs . I enjoyed speaking with many customers . Do you know at least three countries where more than two languages are spoken ? There are many new things , such as a dictionary , translation , and so on . I have n't written a diary in awhile , haha ! I know it 's really hard ( do n't you think so ? ) but I 'm just trying to do my best . The woman said , `` Would you like a cup of coffee ? `` `` No , it 's okay , `` I replied . By the way , I have luck with my acquaintances . The powder is in fact from China , but it is cooked with an Arabian touch . I think I did n't do my best . Today , my father will take her to the hospital . Electrical vehicles I watched a TV about electrical vehicles booming in China . The TV said that motor bicycles using electrical power are popular in China , so they already have a foundation to make batteries . I felt nostalgic . We tried to meet the professor and we were successful ! He remembered me . My birthday was on the 22nd of August . My brother lives together with his girlfriend and their dog , Mazsola . I was very happy because my boyfriend did n't have to work that day and he could be with me . If you read my former entries you may know that my boyfriend is a cook and he has to work 4 days a week , but he does n't know when . So after lunch , which was a bit late at 4 : 30 , me and my boyfriend sat in front of the TV and watched a cartoon , and my mother , my father , my brother and his girlfriend went to the garden to chat . After half an hour my brother took me to the garden where I blew of candles on my birthday cake . I was very surprised , but I was very happy . When we arrived at home , I immediately decorated his aquarium and put the fish in . He swims a lot and he seems happy . but something else means special . And its meaning includes good things and bad things . what do you do first ? I found I would be late for my German class . He has been fighting against cancer since last Fall . I 've grown up with his films , so as a Japanese , I 'm very proud of him being recognized around the world . ( A heavily edited and dubbed into English version of this film titled `` Warriors of the Wind `` was released in the 1980s , but it did not follow Miyazaki 's original plotline . Second , there was no heavy traffic , so I could get to destinations on time . But I like rural areas like this town , because they 're peaceful and there 's plenty of great food . In Kokugikan , audiences were being crazy about game . it means , `` I have no lover `` , and I want one . The person sitting in front of me complains a lot . . in which , Goku was being playing by american actor , When I was 19 years old , I watched a TV drama , ' Shiroi kage ' . It 's weird ! ! When I was in the military service , I took the opportunity to go out for only one night . The magazine which e took today 's articles will be on sale all over the country on April 25th . What is the difference ? I have many plans . It was Wednesday afternoon , I did the same thing as usual , did my work , drank my coffee , everything seemed normal , but a terrible thing just happened . . . . When I was typing on the computer and thought how I should respond to an e - mail , I noticed something strange , something was moving very slowly , when I glanced at the flower that I bought few days ago , I was shocked . . . I imitate my teacher 's pronunciation but I can not pronounce `` r `` , `` th `` and `` V `` well . And I can not pronounce and distinguish `` very `` from `` vary `` . Everyone hoped the happiness for the newly - married couple . When I see clothes that I like , I just wait until they have a discount . Hello ! However , I think , if there was enough time for me , I could get the right answers to most questions . You just prepare some vegetables and seasonal seafood , Last night , my sister and I sat on the bed and talked about her boy friend ! `` actually , a boy loves himself more than his girl friend , including my boy friend `` she told me not in my area : P I really wanna finish the training in there , and go to Heti ASAP . anyway , so far I really love it here , the pay is good , environment is great and the people there are so friendly ! I felt like I did n't need to worry anymore about mistakes when I am speaking & writing There is a traditional custom in Japan that a blood relation will pile up small stones to mourn their child 's death . And it 's a Canadian version of piling - stones ( cairn ) . I do n't like to be treated unfairly or unfavorably . `` So , he has a heavy accent which is quite different from Taiwanese dialect . Life should be on the go . Desperate housewives Her narration is rich in black humor . My work is boring in everyday life , but it is also difficult on my days off , because I am working in a park . Actually , I love my company , and considering the current economic climate , I ca n't leave . Please tell me how to play them well . . . My car was bumped . . . . My husband called out to me , `` Pass the salt ! `` I did n't know the why he wanted the salt , but I brought the salt box to him . Anyway , I felt tired and started to go back to my home . , On the way I saw a pair of really beautiful , high - heeled shoesthat were marked down . But when I was cleaning a shelf , some old photos came out and my attention shifted to it . I 'm not sure about Nagano ( because the TV news reports do n't mention it ) , but I can see from this blog that there is also big damage there . I do n't understand what he meant , but it is n't bad . Our 20 surfer friends were picking up garbage from the beach and sea . It is like a dream come true . `` Ciaooo il mi rammarico ! `` I studied English a long , long time ago . Now I lean ( Learn ? ) to Japanese . I planed to have a professional syougi player play an instructional game , but I arrived there later than I expected , so I could n't . Watched drama . I watched a drama that was recorded . This morning , it was cloudy . Anyway , I went to Niagara Falls last Sunday . My Japanese friends willingly accepted my offer , and we had a very nice time ! ! I wrote my first English diary here today . Recently in Japan , he has become a famous director . Watching videos on you - tube that Ellen appears in , it dawned on me that she got married to her girlfriend and it is out in the public . After knowing the fact , I felt awkward about watching her show because I could n't help myself feeling some discriminatory against the insanity of tying the knot with same gender . And I read an article in the newspaper that in New York , marriages between gay couples is officially legalized and it is becoming the fourth or fifth state where the gay marriages are allowed without being against the law . My colleague said that Chinese drivers ca n't understand even easy English . Sometimes , I feel so confused . All I hear are the sounds of typing and music . Everything else is silent as though people did n't exist ; as if I 'm not alive . Especially after getting married , as we have dependents . It gives us a responsibility to support them . When they started their business , they made many mistakes Finally , they succeeded with their business . It became their culture of the company . my website Chinese names is different from western names . I live in Shanghai , I have studied English for many years , but I still ca n't speak or write English fluently . I happened to meet a muscular man at a shopping center . He was speaking with someone by use a cellular phone and then he suddenly got angry in a loud voice I was a little scared and I thought he was so rude . However , I was wrong again . I also play the trumpet in a Jazz Band and actually I wanna be a professional trumpeter in my future . The new job is totally different than my old one . I had my hair cut today . Some says that radioactive revel around Kanto area is higher than usual on Twitter . Another funny occurance He turned around , ran out of the court hall , which was on thesecond floor , and ran along the hallway to the stairs . There areso many occasions like thisall around the world . . . It was an irresistible impulse . Although the summer was extremely hot , it was a short period during which I could 've seized the opportunity to get intimate with her . I have since returned to campus and the signs of summer are gradually fading away I checked the Japanese - English dictionary from the column of Kana syllabary . How can I possibly teach them ? In the end , I accepted their request . Happy Halloween ! I was sent birthday emails by my friends . Other specialists say that you should eat a light breakfast . What was interesting was that someone who wore an armband which had characters `` STAFF `` warned a man who smokes in the yard near my lab not to smoke there . I know there are so many differences between the eastern and western culture , so some people may think ( that ) I should n't be so worried . I have problems with the past continuous , past perfect and present perfect . `` You know why you are having problems with english grammar ? `` I asked , `` Why ? `` She said , `` The reason is that you are thinking in Spanish , that is why . `` You know what ? I think everything is going to be just fine ! I have been making progress now I feel more comfortable talking with people whose native language is English . I 've hurt my wrist She said she was 49years old . When I heard her age , I was very surprised because I thought she was around 70 years old . by the British government . UK economy shrank by 0 . 5 % which is a surprising result for all because it had been predicted to be between 0 . 2 % to 0 . 6 % . This disappointing figure is partly because of the extremely cold weather in December , but it is said that public spending cuts have also affected the UK Although it is important to tackle the huge debts of the government , I think it is also necessary to reconsider the amount of spending cuts and make sure the economy will continue to grow in the future . First , I think I should introduce myself . I showed reluctance to go on to a Japanese University So I want to go to an American University . After graduating from an American University , I want to work for a foreign - officiated company . Happy new year ! I went to my grandmother 's house . Otoshidama is present money . We just played one game because we were so hungry that we could n't wait for dinner . In this job I will be a supervisor of sales , although it 's new area to me , I ca n't wait to try it out . So I have to take her to the hospital in the next city . she is one of the Japanese popular singers and I love her very much ! I had to practice dancing every GW so far , for I belonged to the dancing club . I could say that Ayumi Hamasaki is the most professional and artistic singer in Japan ! It is the first time I am writing in my diary , too . I dreamed / dreamt of hugging her , telling her I 'd missed her so much , and she just smiled at me without saying anything . The dream is so warmly unforgettable because I could see my beloved family member and tell her how I had been missing her . When I was born and growing up , my grandmother cared for and encouraged me all the time , and now I think dreaming of her will surely bring me good luck . I was embarrassed . My teacher saw that I was making an effort to solve the questions . His advice is right ( * ) , but I thought that I was expanding my English knowledge through research , reports and presentations . The gap between my recognition and the ( this ? ) objective assessment , caused me great shock and disappointment . Learning academic words is also an important issue , so now I 'm looking for a nice word book . Some TOEIC word books might be good , but academic vocabulary is a little different from what TOEIC handles . . . ? I am majoring in Japanese in Taiwan University . In the second year , we had all Japanese class up until now . I think English is an important and an international language . I think we can teach each other our mother tongues . ( why I am writing a English daily but with all the Japanese in my head ? In February , my friends and I will go to Singapore for sightseeing . Maybe Lang - 8 will be a suitable place for me to learn English . That movies main characters name is ' BEN ' ( starring Will Smith ) Please tell me about some recommended movies or books Do you have some recommended movies or books ? One of them is General Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the future by the use of Relativity . But , There are problems going to the future . The problem is that if you run at light speed , Friction of the air sets you on fire . You can go to the future when you solve these problems . So light spread as watering and light is composed of particles which we do n't watch . Light has quantum nature , Solves many physical phenomenon . Material which has quantum nature is only light . Light is very unique matter . I 'm a house wife but my family let me alone and prepared food for me during those two days . What I realized as soon as I looked at the school gate from across the crossroads was that the construction next to the gate had finished . I tried to watch supernatural online , only to find that the site had been renovated and I could n't watch the latest episode . . . . In addition , I write a diary in English for the first time . I will have a conversational English class at night . When I was touring around Paris , I could see a lot of beautiful places , including classic and old buildings . I did n't have any Indian friends in Taiwan , before . But the type of rice is different from that in Taiwan . Every ethnic community has their own character . ( its own character ) Beautiful sunshine and comfortable breeze What is the difference between `` other `` and `` another `` ? What is happiness in your life ? For you , what is the happiness in your life ? Because if I thought otherwise , I would become unsatisfied . Everyone was excited and we got NO . 1 among 12 classes . I was born in Tokyo and have been living here up until now except for the one year that I attended a university in London . I want to make foreign friends . I must study English hard because English is an important tool to communicate with foreign customers . Dear teachers , please kindly correct my sentences if there is bad grammar , wording , and so on . . . I could not write my entry yesterday because there was thunder and lightning last evening . For example , a guide , a translator , an interpreter , and a teacher . In that Avenue , there is held `` Pageant of lights in Sendai `` every December . My friend and I seached somewhere where it is quite to study the Chinese and Thai language , we have not found a good place so , yesterday we studied at a Macdonalds shop but there was a lot music and a lot of students do thier homework . and I asked her about her about in Chinese they have a kungfu she laughed and said that she has a different type than in the movies because they ca n't spin in the free ( air ? ) or a roof like that . I really nice when we talk , good thing we understand each other some times I think she is Thai because she tried to speak Thai with me alot . `` And let 's start to speak up when people are assailing us with the noise that I played you early on . `` Her kindergarten class was on a one day vacation because sports meeting was held on Saturday instead . How difficult is the TOEFL ? I hope that I can apply for Master this year , but I am afraid that I wo n't be able to apply in time most schools ' deadline are in March . Why is English so difficult to study ! During the test I could understand the lecture , if it was about an unfamiliar field . Come on , you are 15 and grown , why do such childish things ? I 'm a graduate student studying architecture and urban design . I want to go abroad to study architecture , urban design and landscaping in the future , so I need to study English . Although it was not matter itself , I was interested in urban design and landscaping , then I decided to study it . After I went to the grad school , my desire became stronger . In grad school , I 'm studying the development control system of England . The Japanese planning system refers to the European one . After graduating from grad school , I wanna go abroad to study . Although I think that , it 's important to work in society firstly before going abroad . I want to go to the University of Pennsylvania in America to study how to design . I do n't like to wait for anybody . The Marilyn Monroe picture is world famous . Yesterday I looked into an apple store with a friend of mine . All the merchandise displayed in the store had sophisticated designs . I wannna study abroad someday , maybe in America or Britain . Recently , because of the pressure comingfrom all over the world , they are asking Chinese government to rise the exchange rate between RMB and US Dollar . At my current job I work long hours , I ca n't take consecutive days off , I get home late at night , and the pay is small . . . . Moreover , because I 'm tired out , I do n't feel like doing anything at all on holidays . I am ( almost ? ) 30 , and I am thinking of the future seriously . So sorry for the complaints ! It 's comfortable . I need a slight professional point of view . Therefore , they overcome the weakness by the influence of alcohol . I wrote Taylor 's interview 's dictation for about one minute , but there is no way to know if they are correct . So , it 's a really cool balance of them being completely supportive but never pushing me too hard in one direction . We do n't see my brother and my dad as much , because they stay back home in Tennessee . It 's really good gauge for my actions . Back to the JDORAMA 's valuing jobs : whatever they may be was really pointed out in them . Their Japanese society 's portraits showed that whoever you are you can do the jobs . Like in Gokusen : she 's ( who ? ) a teacher who also works on a construction . In Yama Onna and Kabe Onna there 's a lady who can buy expensive bags that are sold , but yet she works as a saleslady on department store . We took Line 3 again and we went to the same but still interesting restaurant again . We strolled around the campus again . Finally I bought anipod touch . Since I came to this college , I no longer complain unreasonably when I have to do something I do n't want to do but am forced to . I am supposed to be responsible for my own actions , speech , and emotion . When I get hurt now , my parents are not about to support and encourage me . I must shoulder the burden all alone . studying , and working condition I must establish new personal relationships among my classmates and think from an adult 's perspective . However , I have n't totally converted myself from my previous state to this new one . I tend to escape and avoid this reality often . I frequently ignore that I should take a solemn attitude instead of inappropriate expression in formal situations . Consequently , We gain maturity , deliberation and confidence as a boy becomes a man . But I ca n't feel these in my mind . Maybe I have n't grown up at all . By the way , In Japan , thanks to the mass media 's biased broadcasts , people who love manga or anime are called `` otaku `` . My favorite song in his album ' Human Nature ' is , `` Billie Jean `` . Her job is a policewoman . She is a policewoman . Although it is only the 1st day we talked a lot Of course , the taste was so delicious . He is a very energetic and naughty boy . It is his favorite . She is in kindergarten . During this term , I want to communicate with them a lot and be close to them . Do you know an inexpensive but good restaurant in Hawaii near Honolulu town ? Seeing dolphins , eating hamburgers , reading books on the beach and diving into the sea might make me free ! ! What else should we do there that you guys recommend ? After the class , I retouched a famous musician 's picture , and some other tasks . So , we 're choreographing our dances . It is difficult to choreograph dances for me , Now I 'm still at work , but I ca n't concentrate on my job : ) The little turtle replied , `` I will , if you do n't drink my coffee . `` Particularly young people love it . Slowly , but surely . I am a university student and I 'm majoring in economics . Affluence does not always gurantee a happy life , because people with a large affluence do n't think often on the problems which they may have , when they live as they like . Because of their high standard of life , they buy what they want for a better life and eat what they want to eat . especially in the U . I 'm addicted From my experience , I know that if I begin breaking the rules like this , I can easily give up the / my plan . We could become addicted . It 's a simply quiet and peaceful place . You can see children playing with puppies , and people are sitting around enjoying their breakfast while talking with each other . However , you can only have a simple breakfast when you are in a rush worried about traffic jams in the morning on workdays . I always write a strange diary , and it is different than my thoughts Sometimes I went to clubs or parties with them . Day by day we became friends . I got a feeling that tonight is going to be a good night ! tonight is going to be a good night ! I 'm so excited right now . I do n't know why , I am lazy , I have no plan , I only want to chat with foreigners to improve my English . Actually it 's not good , I know , I am young , I should do something for society , I will change myself . English become official Language in Japanese company in the future ? ? ? Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since Japanese market is shrinking due to the reduction of population . But it 's a little bit controversial because it 's very rare for a Japanese company to use English as its official language . Even successful Japanese companies in different contries like Toyota , Nintendo , etc have not set English as a official language yet . I think people who already study English like us in Lang - 8 do n't think it 's a huge burden . Anyway It must be very difficult to achieve goals because English is rather difficult and doing a meeting or making a report in English takes a lot of time I wonder how they prepare for its goals . If English is understandable , you can get more chances in some way . But I refused answer because I did n't put any make up on my face . I missed a good opportunity to talk with him . But when I told that I am 38 man , almost people disconnected immediately . Almost every time , I lied that I am a 15 - 19 girl from cali . People would come up with the stupid idea of comparing them . Hahahaha I want to run so badly in the next 21 kilometer marathon in Tijuana with my official Japan shirt and that my brother wants to wait until the end of the world cup to see the list of rankings . Although Japanese people are becoming aware of the environmental issues , yes its gon na b last day of skool tomorrow in this term n after tomorrow , I have couple of week days off : ) well I got punished by a teacher today . . . hopefully tommorow , my last skool day is gon na be awesome not like today lol bye I was so lucky that the bus was not crowded this morning . To my surprise there were not that many mistakes in my diary , which re - ignited my enthusiasm for writing . Japanese university entrance exams are very hard , so I have to study as much as possible . I have enclosed all required documents except the affidavit of financial support from my company . Some people agree with that opinion but others disagree . However , there is n't any chemical seasoning in the foods made at home because individuals ca n't buy the chemical seasoning . We can also see the process of making the food , thus if we eat food in our home , we can prevent serious diseases and become healthy . Although she looks weird all the time , I still like this character . I want to travel to Canada . During summer vacation , we want to travel to Canada because we have never been to Canada . I often hear that there are beautiful nature spots to visit , like Niagara Falls , in Canada . This Diary is English - Learning - Record and Life - Record . There are many books . I will read books I borrowed in my school 's library , surf the internet like lang - 8 , go somewhere with beautiful scenery , etc . There are many sources of knowledge . Today young people not only use books to gain knowledge , they also are search for it in journalism , on television , on the radio , and through meeting with other young people . The refrigerator has a function that makes ice cubes automatically . So I decided , `` I will get an iPad at the Apple retail store on FIFTH AVENUE next month ! `` . It is important to guarantee opportunities to recieve fundamental education to everyone . Many people think that politicians and high society want to keep education expensive to maintain hierarchy . For example , Waseda University , one of the best private universities in Japan , has its corresponding high school , junior high school , elementary school and even kindergarden . If your family is rich enough to send you to Waseda kindergarden , you will not have to worry about future academic competiton . Simply , most Japanese people do not consider education important . Most companies do not consider academic backgrounds of prospective employees from humanities departments . I did n't know that , so it surprised me . He also showed me the neighborhood , like where was the nearest ATM machine and where you could got a bus ticket . During our short trip , I saw a great view when we passed the Saskatchewan river . There was a clear blue sky behind the bridge and I saw a beatiful river and green area . Basically , it took 35 minutes though , I made some minor mistakes and took 50 minutes . The faucet was very rudimental but it was quite difficult for me to control the temparture . Although I was quivered a little bit ( ? ) , my palm was hot and thumbs were working . I am afraid that I will become busy , after the class and internship - program begins . When they they told me they planned to go to Europe , they asked me about my experience , and especially about how I made specific plans all by myself - - from the list of cities I 'd hoped to visit to ticketing , transportation , and accommodation . It reminded me of memories of / from my own trip . I won 8000 yen after 30 minutes , so I will buy Dragon Quest 9 . Today , I attended an editorial meeting for the academic journal concerning gerontology . Because it is my strength . After graduating , I worked as a military officer . At the same time , I 'm the second leader of my company . It 's to be an Internet marketing professional . As of now , I 'm looking for jobs in a private dormitory . First , if you live in dormitory you can save a lot of money on food . The public library is so close to my dormitory I do n't need to take a bus to it . The third and maybe even the biggest reason for living in a dormitory is so I can live freely without my mother 's repeated talk . Dreaming about my future , I 'm studying in this small space in the dormitory . Additionally , starting this week the tempurature has been very low , so it makes it more hard ( or harder ) for me to get up early . First of all , I achieved the goal to pass the examination for CPA . These days , I have read The Japan Times and The Nikkei Newspaper via internet andwrote some diaries like this in English . Although I had time to touch up on English and studied English autonomously when I I really , really want to make a friend who can teach me . . . I 'm fifthteen and I 'm staying in malaysiato study art . Yesterday it was repaired by one of my best friends and it is normal now . Generally , I spend all my spare time with my computer every night , but when my computer was broken , I had to watch I like one channel named HBO because Yesterday , I came back from a six day trip with my friends in Paris . Yesterday was very good timing to come back Japan , because now a big and powerful typhoon has been travelling towards Japan , and many flights are being cancelled . Im from Russia , and I live in Moscow . I like to chat and speak with people from different countries . I dream about Japan and Ireland - I want to go there very much ! And I like Germany very much too and I would like to go there too . I did n't have a fever , but had a cough sometimes . I love animals ! I love animals . Dogs are always very affectionate and kind to people . I want to work in the World Animal Protection Society . So I have to study English very hard . Eating dogs shoud be banned . Ok first off you guys SHOUUULLLDD already know that I 'm a respiratory therapist . Today I was assigned to the emergency room , which was FULL . Well I never expected a lazy day there but it was busy as hell ! Headache caused by bad smell . I ( and almost all passengers in the train ) was surprised and confused at the strong and weird smell . We guess that one or two of the members bring rain with them . My friend introduced me to the job , so I learned the what to do from my friend yesterday . I hope that if I keep working out and swimming it will do me good and it will keep me & nbsp ; healthy , mentally and physically ^ - ^ Nowadays , my mind is stuck . . . Do you have any hobbies ? Would I call them `` hobbies `` ? My mother regrets that I do n't care for her . My family house is in Chiba . Until today I have a lot of heavy tests , so I all I did was study , study and study ( I cut down even on sleeping , these days I went to the bed at 5 : 00a . m . and I still went to university I 'm going to do one or two more , and then if I have enough time , I will draw some pictures for Christmas ; - ) But my colleague told me that `` I will put you through xx section . `` Me and my school friends can see cloudless skies from my school . However we could n't . a park in the begining of winter I feel refreshed . Since he is living alone out of Korea as an old bachelor his parents have been worried since he came to the US . My idea is that love is always changing . . . , last month I had a kind of BF . They say the Japanese have good manners , but I think this is not correct . Now , there are more than 4 ' VOCALIOD 2 ' characters , and some PSP software of ' MIKU ' is available . However , sadly , we have n't met each other since her wedding . quarter pounder I definitely hope that she lives as long as she can . I did not learn English diligently at school . Also I 'm corresponding on ICQ with people who want to chat in English . . It 's from Star Trek . the following is from a radio show . I studied a lot there , and now I 'm really tired . Coffee farm workers should receive a higher income . An acquaintance from the other lab said to me , `` I heard you have become a chon - mage man , and that was true `` when we met yesterday . tomorrow I work again . First of all , I want to express my deepest appreciation to my nice friends who helped me to correct this . I 'm really honored to share this short story with you . My friend Kazu - chan was stabbed to death by his skiing associate when he was a third year junior high school student . I was so relieved and I deeply thanked him for his brave deed . He said that he would need fried chicken , some Umebosi - rice - balls and sausages for his lunch . I went to see the doctor for my broken leg . So I had the chance to see my leg bone again . Shall I say hi to it ? Having seen the picture , Doctor was not very worried . It was really wonderful that I could see world - famous table tennis players playing just in front of me . But my English is incorrect , My sentences is very foolish . I ca n't create good sentences . I have a question about English grammar . Writing an essay is a little difficult . Because this is the fourth time I have attended this test ! Still , I getEnglish . I think learning languages is an interesting thing ! Now I am listening to , `` Born This Way `` by Lady Gaga . She is such a cool women , is n't she ? But the only word I know to describe her is `` cool `` . I am a person who always looks on the bright side , and enthusiastic self - motivator . A barton relay the most interesting of all the competitions . Although I have skype and msn 's ID , I really do n't use it . I usually go there by motor bike . We learned about passive phrases . The next class was about comparing different cultures . ( Sato , the cartoon I watch recently is a Japanese one named Detective Conan . With tighter and tighter relationships between each area across the whole world , any change that occurs in one region can influence the rest . I am not sure what the Chinese economy will look like in the future ; can we keep our rate of growth as fast as before ? She is annoyed about the difference in culture . She did n't do good research about American culture . I have read an American newspaper . The most important thing that I should be careful about is that I have to speak English well , and talk with Americans well , too . I heard from my friends that if you make a mistake in English , they would become a little upset if it 's at fast food stores or restaurants . My co - worker has comprehensive knowledge of computers . ( thanks for checking my letter , God bless u . ) You want to disappear . Everything in under your control . I was trying to know your sorrow , the details help me realize your heart , Today it 's your birthday , Are you happy ? ? I am happy to celebrate your birthday in my blog . Michael J , I just want to say thank you for you . I was very happy . but I have not received a lot of mail . I like drawing the best , watching movies and listening to music too . I thought many street vendors would be preparing their shops . Marco , a Italian guy I had met in LKF in June , texted me back finally . These distractionsprevent me from concentrating on my work at my desk . I often hear a phrase in songs which is `` never be the same `` . It was a comedy , but it was very touching . In colder countries , moccasins kept peoples ' feet warm . The difficulty of learning English for Japanese people But as I am proving that I am capable of grasping Japanese in a short time , I feel that my English is getting worse and worse . However , she is very naive and gullible , so that she gets easily deceived by other people . Durian smell was not good but , , the taste was good . Eating durian was a new experience to us ! If I have a chance , I wanna go there again . I am so tired , and do n't know what to do . The doctor advised that he stay off his right leg until the pain is relieved . I was n't going back to my hometown on the 31st of December , so I accepted it . I look like a telephone appointee / operator , because I am always wearing headphones and a mic / microphone . It 's been a long time since you went to hospital . Whether you forgive me or not , it was definitely my silly mistake . She said that she misses me , and she may possibly come in October , but only for a weekend . Shikoku is noted for their noodles , the hot springs and the beautiful nature . I made a lot of friends there , including our leader Rick ! But I regard integration courses not only as a social political measure for foreigners , but also as a place of learning . One definition of learning is to change human actions through new experiences . If I run into a foreigner , they are giving me a kind of smile . I bought an electronic dictionary at electric appliances store . Tomorow is a big day for our school because we will be celebrating its fiftieth aniversary ! But I had just ran a 5000 meter long - distance race ! It did n't seem like that long of a distance when I was first told about it . Now I am in the internet cafe . You might ask me `` What have you achieved in 2008 ? `` Even if a non - native speaker speaks incorrect English , we occasionally understand what they want to say . But native speakers occasionally ca n't understand what they want to say even though we understand it . The drink is so sweet , and it feels like I am taking in 1000 calories . now I 'm interested in fitness . after school , I 'm going to `` Fitness First `` which I heard , is most popular gym in australia . The concert was Base Ball Bear 's . But it was unexpectedly difficult . Anyway , one thing highlighted for the next semester is that I 'll have to start up the preparations for `` job - hunting `` seasion , which I think officially starts next year . For our office , we usually buy toilet paper through the delivery service of office supplies , however , because the earthquake occured on March 11th , this service had stopped . I went home late . I normally prefer to wait for my friend at the company . However , because she had a lot of work today and I realized she was going to stay alone at the company for a longtime . Are you sick or something like that ? Maybe that man will gossip about my ugly face ! I like him because he is very kind . To catch the information about Web technologies , servuces , etc . I 'd like to continue reading books . I hope I can communicate with people all throughout the world . Because he is not so good at mathematics . I really need to appreciate him . International School . . . ? In the world around us today , we are surrounded by a variety of technical mechanisms and tools . Starting from the eighteenth - century , the development of technology has never ended , and has advanced faster than ever today . Technology such as air - conditioners and electronical dictionaries do lead a much more convienient life than ever . Some people might argue that technology undermines the relationship between people because once we are developing and using the technology , we forget to keep in touch with others , and that is the `` convienent ( ? ) `` character of technology that makes people more careless about the way to get along with others , thus , everyone feels lonelier than ever . I am in charge of 26 cosmetic shops . I suggested that the owner analyses how her customer buy a commodity and apeal to nighborhood for shop 's existance . My English name is Betty , I am fifteen years old , I like music and sport . Of you ( who read this ) do n't mind , please give me advice . I 'm going to visit my mother in law 's house this morning . After the final exam , I have to find a job for the summer holiday . I have already been working for four days , but I still ca n't focus on my job . I don ` t know how many people in Korea can speak English fluently even though somebody has n't lived abroad . I was shocked , and I looked back myself . I 've been so lazy , and I did n't do anything to get to my goals . Once we want to achieve great success , we have to invest our own ability by over a hundred thousand . Because of my school studying , I have little time to browse the internet . In the following days , I will do my best to update how I learn something everyday , but it 's possible my schedule might change . Two are for writing . The high - potential young guys asked questions . `` What kinds of computer languages do we need to know ? `` , or `` What are the most important things for working here ? `` I just wish that they would recognize what curiosity means . . . I am taking a English lessons . After I woke up , I turned on my laptop . This is an amazing place ! I hope that I can improve my English writing skills and make some friends here ~ These stories are so gorgeous and moving that many times I could n't help crying . This is what I translated while watching the drama , Lie To Me . This was made in Korea just for someone learning English . I could n't approach you . our business plan is clearly spot - on . We took a boat that had a clear bottom and saw many kinds of coral , fish , and so on . Although I have always wanted to go abroad , I think that there are many great places in Japan too . The design is similar to foreign web sites . Do you guys care if your brothers or sisters were older or younger than you ? When I ask `` Do you have any brothers or sisters ? `` to you , you might answer `` yes , I have two brothers `` . I mean a lot of people I met do n't care t whether their brothers or sisters are older or younger than them . Oops ! similar to me . My thesis is on the director Hayao Miyazaki , He was born in the 1941 and grew up in the post - war years . We can see in his works most of the time , the protagonists are strong , independent girls or young women . In Spirited Away , Chihiro is forced to survive in a bizarre spirit world , and had to work in a bath - house for spirits after her parents were turned into pigs by the sorceress who owns it . Kiki is based on the novel of Eiko Kadono , and tells the story of a small - town girl who leaves her home to begin life as a witch in a big city . I researched the program later on the internet and I found out it was a long - lasting program , but each time the topic changes . of course its beneficial for me . before I would drink almost everyday . `` Saki no yu `` is a hot spring with a very beautiful panorama . I feel that the hot spring is very relaxing . My ears are very cold when I ride my bicycle , Something substantial like `` beauty `` or `` money `` are reasonable for me . Articles are tricky ! ! I talked on skype with John ! ! I will call him again after I can speak English fluently . Not a hamster . The reason is `` there are no chairs `` . After waiting for the bus for about 40 minutes , the bus finally came to the station : ) ! Yesterday , I did the presentation about my research ( computer circuit design ) in front of my professor . I went to a training center with my friend today and worked on my weight untill I can be satisfied for the first time in 2 weeks . Tomorrow is a national holiday , I decided to take the three days to travel . The customer often says , `` Our system needs these functions . They said , `` I have never seen such a huge swine `` , but actually , the size of those pigs were normal for us . The prizes for participation are a T - shirt , a bun and a carton of milk . In fact , I want to have a new smart phone . I 'm just a human being , not a machine . I don ` t understand how you can distinguish between present perfect and present perfect progressive , etc . . . I watch movies without Chinese subtitles to listen and speak English . I am interested in the energy policy , especially , eco - friendly energies such as wind and solar power . My mother is a full - time homemaker . These days I often think Japanese noodles are good . I consider myself a patient person . I like to help , and enjoy teaching . Today , I went to the beauty salon and enjoyed a face massage for the first time in a while . After a meeting we went drinking with my colleagues . I 'm not good with cold weather . My hobbies The expression is perfect for me ! Celebrate for my marriage . `` Newton `` informs us of many kinds of scientific things . I want this fascinating magazine to go on forever ! Recently my wife watches a SMAP 's DVD every day which was released on December 8 . I would like to learn Engligh for travel and communicating with others . It makes me sad because nobody believe me . it might be a bad thing because many men would like a women who can cook . As I get married , it would not be good for our relationship because if my husband did n't like my cooking , we would have a problem if I could n't make a nice dinner . So I ate food , took some medicine and a bath . Then , I went to bed early . I know very well that English is so important to me , so I hope you can help me with my English . I have a plan that I 'll go to Japan to study law 2 years later , so I must study hard , and I will . But during interviews , when I am asked to describe myself in English , I always become nervous . My friend organized free tickets for us but because we went parasailing in the morning , we did n't have enough time to go there . I am jealous that site members can write such good Japanese composition ! ! To take an ojek , a passenger should go to the ojek pool . I can help you with Russian and you can help me with English or Turkish , if you want ! yet we sometimes regret . Just compare merits ? Just listen to advice ? But the result was the result , so I must accpet it . ( 2 ) Students who are expected to graduate from high school at March of 2011 . ( 3 ) Students who have ( an average grade ) higher than 3 . 4 Japanese grade points average ( maximum 5 . 0 ) ; 3 . 6 japanese GPA for students who apply at the faculty of law ; and 4 . 0 japanese GPA for students who apply at the college of technology . It was cold , but we felt hot . because we could earn that money with our feet . From now on / From this point on , I will prepare for the written module . I am not familliar with classical music , but I think his music is very beautiful and touching . He was n't embarrassed at all with such an unusual girly outfit , so I thought he was completely miles away . After all it said and done , I feel like my body clock is very strange ! Every year is representived by an animal in Korea . I will also run around the neighborhood every morning . The topic of whether we prefer to eat at home or outside in restaurants has been widely debated in our community recently . As a consequence , this will lead to a very inefficient life . The people eating at home may have sufficient time for their favorite interests than the former . Besides , we can cook dishes according to our own appetites if we prefer the food to be hotter or have less sugar . This is the best way to learn foreign languages . I want a man who is ambitious yet family - oriented . I read Japanese blogs which are popular each day . But I 'm not satisfied with those because there are few blogs which treat politics or social subjects . Mostly they treat a subculture or talk about the writer 's life . He advised me on many things I will try to study English This morning I am tired from lack of sleep . I think my cousin is a night person and she feels vibrant around that time . I must learn business english . It contained pork back ribs , carrot , onion and potato . ( back ? ) Today , I went shopping near by station because today is national holiday in Japan . so I went my home rapidly . I was cycling along the river with Yuya , who was riding behind me and shooting camera with a lot of enthusiasim . We run and run and run through these people . Anyway , I will keep trying my best . Electric utility expense rises these summer . So lots of things will rise too . Studying history . Yesterday I started to study Korean history again . I prepare ( d ? ) some things to study like a Korean history book , a reference book , a laptop for searching some subjects about which I might want to know more on the Internet , and a radio for listening to AFKN which has a lot of good popsongs . I think I live in the happiest time of all human history . After I get it done , I 'll study history again tonight . So , I recommend that you find your favorite , and make ( good ) use of it in your life . I have nothing special right now to write about and I 'm determined I must stay up all night for my schoolwork which is due tomorrow so I 'll finish writing now . Swine flu has spread over my city . I started learning Hula this February . I am on summer vacation , but I will have to make a graduation thesis . Hm , sounds stupid ? I was so proud of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my family twenty years ago ? After work , I went to my boyfriend 's house and we met out in front . I traveled carefully . It 's been raining since last Sunday , and according to the weather forcast it will rain until next coming Saturday . I have experienced rainy seasons so many times in Japan and Thailand . Each rainy season 's characteristics are totally different . But I 'm pretty sure that humidity makes Toro sick . Today , it 's a public holiday in Japan , I confirmed and called office of English Studies . When I 'm thinking about this , I sometimes think I will go the UK and meet her . I want to talk with the members on this site in English very well . ! ! When I was a junior high , one girl who was not my classmate came to close and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an answer at all but I managed to say that . When I was in college , one of the exchange - student who came from Canada , he asked me same question . He apparently denied me . I went to BORDERS last sunday with my friend . I love this feeling , calm , , , and cool ! I think there are many different people and cultures in the U . S . etc . . As you know , a person 's personality is different from everyone else 's . But oddly enough , my blood type is a little similar The reason is that we can order by phone call and get delivery service . Naturally , their intonation and pronunciation does n't sound familiar . I was quite shocked about their carelessness and horrible food . It is very rural . I love Yamagata because I can relax . I had a violin competition this morning and went to my violin class this noon . I have to write about Japanese actors using computer - generated characters , about why I think adults in Japan read comic books , and about whether I prefer fiction or non - fiction books . That 's why we are working longer than other developed countries . When I stayed in the US , I often heard people saying `` that is my job . `` I think there are two meanings in that sentence ; one is that I will take full responsibility for my job and the other is I will not care about other people 's jobs . Today was a little warm , _ so I irrigated the field . Hello , I 'm adaobi ( not my real name ) . I practiced it but they look like crocodiles a little . At end of the year in Japan , we have a custom of having a meal with someone you had business with . I think this custom comes from the saying `` All 's well that ends well . `` Tomorrow I need to deal with a customer who really gets mad at our product . . . I was disappointed with that . Because I love playing soccer . But , an individual is important for an alphabet culture country . I think it is very important to think deeply well , would you like to make / be friends with me ? I am the only person to deal with legal and compliance affairs Actually , I don ` t understand all the lines of the characters , because I watch it without subtitles . Just to see the local merchandise , and the people look vigorous there . My breakfast was sunnysideup - ala - Thai , fried bread , and coffee with condensed milk . the street vendor cooked two eggs in a metal saucer which is just the size for two eggs . The coffee was really sweet , half coffee and half condensed milk . I should n't have stirred . I think he was also embarrassed . It is definitely part of dynamic relationships with him , but it is not so easy to control it . A ceaseless effort to improve yourself makes an unchanged value throughout your Just now I received the acceptance letter for my poster from the conference committee ! But such consideration is a dangerous myth . I said , `` Congratulations ! ! `` . I 'm afraid of opening the windows in my room because it 's very cold these days . Japanese famous actress , or infamous celebrity , Erika Sawajiri suddenly announced that she decided to divorce her husband Tsuyoshi Takashiro , so - called hyper media creator ( though no one knows what his job is ) the day before yesterday . Moreover , stating that he did n't know what was happening with a desperate pale face . By lights , it was a bit strange that Erika , who is a beautiful young lady , married with Takashiro , who is over 40 's and not so good looking with an ambiguous and suspicious job . I think , however , Erika 's abrupt decision without contacting with her husband was really cruel . Although my situation is too ordinary to compare with this case , I once experienced a sudden break up . There were 7 members altogether . . It 's Sunday , and it 's hard to see in northeastern of China in winter , but I have many tasks to do . Some reports ( about computer , assembly language ) , and some electrician reports . It 's must be hand in tomorrow , so I have no time to go out . First , we drove to MeiLing where a company 's broadband network was wrong . We found that the fault point had n't been there , so we drove to Zhongxi and fixed it well . I think they 're definitely great . Each character has their own special accent and it confuses me . I begin to study English with this site . A mikoshi is a portable Shinto shrine . It 's much heavier than it looks . My shoulder is still aching . . . Anyways , there are so many clothing stores in Dong Wu Yuan and all of them are terribly cheap ! By the way , I 've been studying about what is the best kind of industry for me to work in after my graduation . I 'm considering about my career plan , but I still have almost no idea . Many university students have been doing job - hunting every day . In Japan , first of all we have to write `` Entry sheet `` ( Resume ) to the company which we chose . Also , we have to write the reasons for our applications , self - introductons , and so on , into the Entry sheet ( Resume ) . Now I attend a translator school and an interpreter tour guide school . I watched `` super 8 `` , which was produced by Spielberg yesterday . In a sense , this film is very Spielberg . T . , Jurassic park , War of the worlds , and other Spielberg films . I must be careful of unconscious habits . I 'm going to Nara for / on a school trip , so I wo n't write any journals for four days . I am studying at a foreign language college now . She does n't wash dishes , she does n't throw away trash . . . I visited China for sightseeing this year . Actually , some opinions expressed in these museums are problematic in Japan . After watching the movie , I felt that the hero is very genius . We promised to go camping this in summer ! All of them They all called themselves Tiger Mask . My experience is that I have learnt English for many years , however , I still find my english skills are not good enough and it is also difficult for me to use a new vocabulary . I have memorized lots of vocabularies , but the diction that I used is still very limited . After 45 minutes of driving , we got to the field . We had a primary school performance . I can insist that a greeting is absolutely important when studying English . Second , there was pronunciation training . The pronunciation 's role is also important when we talk to others . Because listeners can understand our words when we speak to them correctly . Every time I contemplate the fact , I think it 's interesting . Even though we are far from each other , we can still chat about everything , such as our feelings , our life , our work . this afternoon I reached the downtown to buy some computer consumables . A lot of groups go to the Aquarium just like us . dealing off the bottom The police searched out the evidence that the two companies have been dealing off the bottom . - Communicate with collaborators until you get confident with your results and interpretations . Some of us are a stumbling block , but we believe God is our rock . Will you help me to learn Thai language ? I am going to the disaster area next Monday . I see a pile clothes and I question myself , `` Why do we wear clothes ? `` Finally , it 's better that we should wear clothes when we get out of the house . / ( go outside ) But Is it common word ? It 's such an exciting game for Disney fans . And my eldest sister promised to buy me a bag which is worth 130 bucks . Everyone knows that each country has its own unique and fantastic culture ! so I decided to walk from the school to the station . A foreigner who is married to a Singaporean . Foreigners ca n't buy new HDB flats in Singapore , even if they marry Singaporeans , in short HDB flats are for only Singaporeans . I 've never done this before , but I reckon it 's going to be quite helpful . . . My mother was more scared than me so I comforted her the whole time . She was a completly stupid girl who had spent two years in an American jail . She spent her life in an American jail . My father goes to Pachinko for his entire holiday . It 's a buffet party . I was surprised by her energy ! So I tried to find a way to buy the previous model of MacBook with a US keyboard , and finally I decided to buy a model from the US Apple Store . With this marine sport you can experience speed and exhilaration by riding on the water . I was very surprised . On the fifth day , I packed souvenirs for my friends and my family in my suitcase , I prepared to come back Japan . In short , he has an concise policy . I had an optic test . I want to change my character . My name is Kaori . I 'm going to school tomorrow so I hope for good weather . Since he is currently staying at Zac 's house , I can talk to him every day along with Zak . When I was in junior high , one girl who was n't in my class came to me and asked , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an answer at all but I managed to say that . When I was in college , one of the Canadian exchange - students asked me same question . English work interview Recently I applied for a job as assistant to the teacher in cram school . If I conform the conditions that were asked for there will be a interview . what is the best response ? And I lacked preparation for this challenge . Of course , I 'll try the second challenge . Next time , I 'll pass Grade Pre1 on merit and not luck . I want more of an American atmosphere to a fast - food restaurant ! But the whole restaurant is an important place for me . I want to enjoy another country 's atmosphere . So I want to ask them to sell toys of Ronald and his friends at McDonald 's . I 'm sorry , this is a negative diary . I have been learning English since last summer . To learn is my brain 's training . and I want to talk with foreigner . Yesterday when I spilled my cookies , he ran to eat them as fast as an F1 car ! It is said that Toriyama Akira , Dargon Ball author , was It is difficult to become a famous cartoonist . Only 2 % ( in all ) cartoonists can become real / professional cartoonists in Japan . What do you think about marriage problems ? My friend who is a 28 years old woman is thinking about getting married . She said that he is the perfect guy for her ( and they are having a good relationship ) , but she has problems about his parents . According to her , her boyfriend care about his parents a lot . On the other hand , I do not think that they can solve it after getting married . Every couples have a problem , because we all are different . My friend and her boyfriend are keeping a good relationship , so they will be able to accept his parents . Honestly I think that she has too big a problem for her and she will regret to get married several years later . My English did n't make sense to her . I will go to shopping to get some groceries . And l studying English at language school in Brisbane . I want to speak and understand English more . Many people were studying very hard . Afterwards , we went to Doutonbori . He smiled at me , what a pretty baby ! I still remember the feelings . . . But my mother said `` Korean women tend to get plastic surgery . `` I made miso soup and another dish . The miso soup was a little bit thick . In the past I wanted to be a chef . I know I should n't go on this , but I hate studying at home . Result is . . . listening 78 / 100 Grammar 32 / 100 Today , I finally get back to school and my dormitory after an 18 hour train journey . when I travel , writing a letter is one of the things that gives me enjoyment . My English teacher is old , but she is very strict . I got a SHOCK ! > < ; I was very disappointed about this . . . Usually they sell the books at a 50 - 70 percent discount . On March 11 an enormous earthquake happened in north - east Japan and an enormous Tsunami was generated . This incredible huge natural disaster caused extensive damage to the cooling system in the nuclear power plant . Japan is one of the top level industrialized countries , the government and nuclear power companies repeated that using nuclear power is safe and no problem . People against nuclear power in Japan were even seen as a little politically extreme . Now , the accident is still not under control and the mythof perfect technology is broken . One day Sarah decides to go to Norway and surprise Jim . there were always some retired people chatting and kids playing downstairs . I made a decision to buy a house and I moved to a better neighborhood in late 2007 . Chocolate truffles , scones and gateau chocolate The topic is ' international marriage ' . I wil read my old diary and try to understand it again to help me be good at English in the future . Although Internet is more and more popular among students , there is no doubt that book is an vital way for studying . All of my servants have gone , they already go home when the Ramazan holiday come . and my mom do n't want them to come back , cause they are thieves , they stole some of my stuff , and often steal some food . I am lucky girl beacause I know about this site I hope meet friend on this website There are a lot of tasks I have to do , and I have to be thankful for the actual status under this economic crisis . We have rolling blackouts tonight because there is not enough electricity . I think he urinated frequently because of the psychological stress . I am writing a Master 's thesis now . Moreover , every user has been friendly and very kind . And I hope that Lang - 8 further develops in the future . I 've just finished watching this movie . Tomorrow night , I will speak to my friend in English with ICQ . We will discuss different themes : religion , music and jobs . today , a frend of my girlfrend introduced me to lang - 8 , and , it seems to be a good website . I thought there would be a clearance sale because it was President 's Day , but I realized that I did n't have any money to spend for myself . I hope I do n't catch a cold Maybe just a little bit , but I think they are so I want to continue writing entries and improving my skills . Another thing is that I 'm writing about different things in my entries , so in fact , there is n't just one topic . RIGHT : He , the hero , has already gone on his trip . This could be a one - time - only lecture or consecutive lessons on regular basis depending on the company . Yesterday , I asked / consulted the weather center about the average wind velocity of the area where the building is located In order to accurately predict generation performance , I will use CFD and geographic software . I need to do more research on the feasibility assessment of generation . But from now on , I will try to write one diary everyday to improve my written English . Written for the first time But , interestingly , I have to call a American professor of my university Mr Duggan . He conducts a class entitled ' Linguistics . ' The reason that I joined this website is to write a diary in english . To be honest , I think I do n't speak english very well . I hope to keep practising english and speak it well someday in the future hopefully I can get the help I need here by asking many questions . If you have a question , I will answer it to the best of my ability . One meeting , one opportunity . He can learn about our culture through Japanese folk tales , too . They want to drive with their friends , and that is breaking the law . It seems that their difference is power . Perhaps they would get nervous in the fight so they could n't use their power and techniques because they are polite and gentle guys . Of course , the owner keeps the apartment clean so that there are no bugs at all in my room . I was so hungry but there is no food in my refrigerator . I have ramen , instant noodles . After coming home , I tidied up the room for a moment . I 'm going to watch a movie and write a movie review , read a book , play with my pet and study English until dinner time comes . This is my first english diray , I am very excited , I reside in Chengdu China . It 's a very _ _ _ _ city , hehe , panda country , have you seen kongfu panda ? I thought that I should e - mail my Japanese friend to ask him / her to come . Unlike the other species , humans have culture . The other day , I got the result of theTOEIC Speaking and Writing test which was held last month . They are open on a national holiday . I thought he might be angry . . . . . Otani says that `` The evolution of an insect is very fast . Humans have great intelligence , but insects are more great than us in vital force . Six years is such a short time that we could still remember each other distinctly , yet such a long time that we all amazed at the changes that had occurred among us . Our teacher was an energetic and humorous young man , and he still is now . sorry for any incorrect english However , I think that it is not the case . Moreover , I suggest that our lives are occupied with what passes for leisure in our society . Today is wonderful , sunny day , but I have no spirit . I feel sick . What should I do ? The reason why I got such a good grade is by studying many English words Fortunately , today is Friday ; I can have a rest tonight and also on the weekend ! I listen to English on my / an MP3 player when I go to my company . What kind of MP3 is a good choice ? Hi everyone ! first diary I live near the Urals mountain in a big industrial city . This is school of design . We told them about it , and they advised us . Yesterday the worlds famous movie director Steven Spielberg talked about East Japan Earthquake at an interview in Paris . I went to Singapore to attend a conference from Feb . 25 to Feb . 28 . To quit smoking seems like something impossible for a heavy smoker . Yesderday , someone went to my Blog and left me a comment . I am very weary . I have to writea diary that is attractive to readers so that it can be corrected by someone . To pass another car , I must handle the controls carefully . Recently , an unrealistic politician has become an issue online . The government supports poor people financialy . The day before yesterday , a politician who agrees with the current policy wrote an article on the web . He only ate fast foods - due to lack of money , and he did n't consider other factors such as phone bills , electricity bills , transportation fees , etc . I read an article on newspaper recently . this is my first time here , my classmate told me this place , today , so , I came ~ She thought that her life was boring . I did n't find her life boring . It was common , calm , but not boring . She recollected her previous life and realised that it was good . We should find joy in our everyday lives . I could n't express what I feel in this post . But , some of my Chinese and Taiwanese friends does n't like him since he has a dirty mind . . . Japanese companies often evaluate one 's score of this test when university students are applying to their companies for a job , so it is important for us to achieve a high score . This test includes written and speaking sections , so even if you are native English speaker , it is very tough to get a perfect score . I had n't really talked with her husband because he looked really tense when he came over to my parents home . I can understand a little of the movie with japanese subtitles . There are a lot of countries in Asia such as China , Laos , Vietnam , Cambodia , Burma , Thailand , India , Srilangka , Pakistan and Nepal as well as Korea and Japan . So many people are suffering with unexplored bombs and mines in Vietnan and around the Tailand . I do n't understand why we are fighting each other because of different identity , sex , race , class and religion . Several rock bands had exciting and passionate performances . It brought strangers together in a common interest and it represented young people 's attitudes towards life . I moved to Haruyamachi ( ? ) , Mizuho ward in Nagoya ( ? ) city . On the way I go there , I drew 100 thousand won out of my account by card . In comtemporary society , the amount of information broadcast by media such as internet , radio and newspapers Newspapers play an enormously influential role within the whole media . I do n't know this function well yet . So , I will often use this useful tool : ) I commuted to English language school and stayed with an Australian family for two weeks . My part - time job is at McDonald 's . does erratic mean really bad , harmful ? A human being is a lengthwise creature , so you must always keep balance . I was wondering about applying to your school for admission in hairdressing . I think it has not finished receiving applicants yet We were confused because we thought it was supposed to be in the mall not outside the mall . After going to the hospital I felt better about my anxieties over ticks and skin issues . Why do all the non - heterosexual people have to make an extra effort to do anything . I 'm angry with all these people who are talking nonsense against gay marriage . I 'm extremely angry with all the people who says things like `` it 's unnatural `` or `` it 's against the moral concept of family `` or rubbish like that . Homosexuality is not an illness , but homophobia IS . I am hosting my support group , which helps facilitates our lifestyle , in my house today . There are for people who want to improve thier life for the good . I want to go to Hawaii ! I am looking forward to the weekend already . Please tell me how to be more positive . I want to get along and keep in touch with him in the future too . Now , I am thinking of starting to work part time , so I have a question : `` How often do students ( like in universities ) in other countries do part time jobs ? `` In Japan , from what I know from my friends , many students do part time jobs and spend many hours on them . Does this mean that I am very dependent and childish ? I am worried about this now . There was too much water on the floor ^ - ^ because it has some important features such as Contactless IC smart card , You said you would treasure that clock forever , but you 've gone against our rule again ! I wrote my last entry without checking it , so in the last paragraph were many lower - level mistakes . I finished my journey in Australia and got that job vancancy in BAHA after going back to Taiwan . And the song that I am going to be cover is called You Can Win . Today , I played futsal with my co - worker . But unfortunately , I am overweight and have a wider waist . I am a middle - aged man . I heard about Lang - 8 from my best friend ( love you ! ) and I became interested in it . I keep saying that I only study English this time ! ( ? ) I wanna change my job and it requires me to speak English ! I 'm writing this diary with a translation site . Before writing my first journal , I read a lot of entries that other lang - 8 users wrote . I remember seeing it years ago and I was really impressed by the story and characters at the time . Many kinds of fish , freeze dried , half dried , salted , and fresh , raw fish . But still , I 'm excited I 'm on vacation . When trade tensions heated up in the 1980s and early 1990s , these years became known as the era of `` Japan bashing `` . It was my choice . Then I bought a Chinese phonecard at Peking Airport but in Tianjin it did n't work . I 'm not newly graduated anymore , you know ! ! `` was what he said . Well , I 'm glad that I 'm one of the very first people they think of when they 're in trouble , but please , 3 calls per month is just waaaaaay too much for me . . Ever since I started listening to Mariah Carey 's Memoirs of An Imperfect Angle , I was deeply attracted by these kinda music . It has a convention hall for 1000 people and eight banquet halls . So I started a wild English project . Beautiful spring ! Spring is very beautiful ! In this season the flowers bloom , grass sprouts , and there are green trees . I had thought that reading practice and having conversations with my wife everyday were enough to master English . So since one week ago , I have started ( doing ) listening comprehension exercises there . Now , I ca n't understand what the announcers say at all , but after I read the texts , I can understand them . Inspiring quote : `` Possessions do n't define you , your lifestyle defines you `` I can say that from my personal experience I carefully monitored my life . English Conversation I have started to take lessons on English conversation recently . He 's so talented because he can play the guitar , violin , and piano . Usually , I 'm not a casual sort of person but They are newly opened malls ( department stores ? ) . There are many people there . I often see Japanese woman with foreign men as couples . Japanese men are not popular with foreign girls ? But , the club chief is planning to have some parties regularly after the dissolution . Perhaps because of age ? I will play tennis in this afternoon too . However , I conquered my self / emotions at last and tried very hard , and became one of the best workers in that factory . Meanwhile , I try to find the weaknesses in myself and try to be optimistic towards life , even occasionally somethings will happen unexpectedly . As some famous people say : we can not change anybody else but ourselves because we have to realize that in these hoards / masses of people there are without doubt many kinds . I like your display of courage but at the same time , I envy it . Quitting my job The food was wonderful and the people were very friendly . I sometimes go to coffee shops such as Starbucks or a Doctor Coffee . What is your favourite season ? Major companies start in April , so my neighbours will move soon . I would like to make a special ( ? ) day for my 2 neighbours but I have n't hit upon a good idea . I thought that the meaning of mature was to pretend that you have a high status , to handle everything with high efficiency , to keep steadfast with my principles with high profile , and to treat those who are younger than me well . For example , cleaning up campaigns and collecting trash in the street to contribute to society . I also have to carry all of my luggages to my new house tomorrow . Before I re - entered Singapore , I withdrew two hundred thousand Japanese yen in Japan . Why does n't anyone correct my diary ? pleAse correct my diaRy . 5 . A momentary separation . Because he slept all day . midnight crying So tonight I will sleep soon . The bank was pretty crowded at the end of the month . I hope to give someone the chocolate next year ! ! I went there early in the morning . and the rest was the endodontic treatment . We will need more time . `` Miyajima is an island , so we took a ferry to get there . The other day , I decided to attend an English school called Presence at Omotesando . I will write here regarding the progress of my English skills through the English school , `` Presence `` . Because people who speak English very well are cool in Japan , some Japanese people try to talk to them in English . Modern day people can use the internet , thus they can easily contact their families and friends and can watch the broadcasts of foreign countries . I really want to ask English teachers living in Japan , please learn at least intermediate Japanese , because Japanese students really want teachers like that . I do n't have any complaints that they only speak English during lessons , it 's essential for us , but sometimes we need explanations about English grammar or difficult expressions in Japanese . It 's always interesting to learn something new , and I personally like studying foreign languages . This week I 've been feeling like I live in Siberia . Fortunately , the snow began to melt . I brought my mobile items . ( laptop PC , G - shock cellphone , Android phone , Voice recorder , Handy video camera , Anyway , I made today 's an appointment . He replied , `` What ? `` with a frown on his face . I 'm Sho , a college student studying engineering in Japan . Well . . . and I like listening to music as well , especially foreign music , for example Linkin Park , The Used , My Chemical Romance and so on . Gee , I should n't have written about New Year 's resolutions . Anyway you 'll see how my resolutions go around June . because I moved back home last summer from another prefecture look for a band partner in my city . I like my city but I prefer Canada to Okayama because I like North American culture , customs and music . Child abuse I want learn to English ( I 'm a beginner ) . It is very expensive , but all my friends said that if I buy a cheap one , I 'll regret buying it and will buy a new one very soon . I want to decorate my wedding party with many beautiful flowers . Now I am in Chain China next to the Hong Kkong area . We were once in a primary school . Also , I understood I got close to paradise or heaven in a different way . In those days , the most interesting thing was maybe fashion magazine . beautiful clothes and shoes . I remembered that when I lived in Japan I had a lot of trouble with the language barrier and customs . TOEIC is the English test . Yesterday , I stayed up late at night . So , it was unusual for me to wake up that late . Especially my father does n't believe in God at all . An interesting day The weather is warm and sun is shining . In this bus , I meet three foreign students , one is American , one is German and another is from Holand , they want to visit `` Tian an men `` , but they did n't know how to get there . what a good chance for me to practice my English . What an interesting day today . The school provides one on one lessons . I talked with a native speaker . The picture is of a SHOKADO BENTO ( It 's a high quality lunch ? ) I was exhausted while making a 100sheet presentation file using the power point . Recently , during a protest to condemn an ineffective legislator there was 67 years old man who painted the house of representative 's roof . By January 1 , I received a lot of New Year 's cards sent by my friends and relatives . First of all , you can see different types of Japanese culture in Tokyo . My mother usually buys dried bonito and shaves it when needed . My hobby is playing the guitar and singing . Lang - 8 is amazing ! ! The game was held very early in the morning in Japan . I 'm really relieved to hear that . I am suprised that I got the pass mark in my CFM EXAM , the LAW EXAM result got a high mark as well . It feels strange , funny and interesting . So I finally noticed my bad behevior . ( acustomer ) ( ? ) I decided to try to close my computer immediately after I finish writing in my diary . Many people think that time passes quickly when you use the computer . Now I am going to try a lang - 8 marathon ( I named it by myself ) My love is always something strange . This picture is from the Kumagaya Fan Festival . If you have a chance , come over next summer . I saw two idols today . But , he made every endeavour to speak it , and at last he was able to convey his feelings . Moreover I find that my sentences are too long and it is difficult to understand . this is my first post on this website and first English in my life . I especially like Krispy Kreme Doughnuts a shop opened in Shinsaibashi . That is amazing to me because I 've never been abroad before . He always makes me happy . I am good at mathematics so I easily understand the subject that relates to mathematics . The benefits of this website are not only learning languages but also making friends . I called him when I heard about the incredible disaster with the earth quake . I just called my sister and I found out he is working very hard with very little sleep . He is kind of shy . . One day , he told me that Japanese Self - Defense - Force was trained for disaster relief from earth - quakes and tsunami . But , unfortunately , the worst nightmare has come true . . . helping thousands of people to the safety - area before the tsunami hit . I thought the way it tasted was different from how my boss makes it . Then , I realized my mistake . So I 'll make the sauce again this weekend , and perhaps a Hollandaise sauce too . She became sensitive . He explained her that Michael had the same disease as she does but he is cool and became famous . She was encouraged by him and recovered her confidence . Can you imagine if your color of skin changed ? ! She and Michael are brave people who got over their own disease . . . . . . the garden of a nursery school A nursery school which I can get toon foot in 15 minutes , opens its garden for children . but I never thought that there were very mess ! ( ? ) Meaning most people were cheating on the examination . I always consider Chinese students quite smart ! Yeah , of course they are smart ! But it was not fair to cheat on the exam , right ? That 's unbelievable ! I can read English stories and articles , and I know many English words , but it is very difficult for me to listen , write and speak English . . . Sorry about the negative outlook . There is a simple answer ) ) Congratulations ! I 've already worked at new work for a month . I have been asked to translate this ( below ) into Japanese by my friend . I can not translate . Can you translate this sentences into Japanese ? But I 'm happy anyway because it 's SUMMER ! ! ! The correctee might have believed that those were right . Oh ! That 's great ! To solve the problem , I believe that young people should go overseas to study , travel , help developing countries and so on . I think it would be better to lower the air conditioner . And I regret a little bit that I did n't try to ask in detail for alternatives because I barely understood what the clerk was saying . He spoke too fast to catch it ( all ) . I know to handle a thing like this ; you have to be proactive and patient . Oh , being in the States , feeling alone , it 's just hard to handle it . I went to this course , because I can read English text ( not good , but I can ) , and I can understand English speech ( worse , but I can ) , but I ca n't speak it ! Recently I wrote new year cards for my friends , and put them into the post . It was a loud thump . . . In my spare time , I have broad interests like many other young people . I ( usually ) study for a long time , so it is important that I find a more convenient coffee shop for studying . Additionally , it lets us use the AC power , so we can use our laptops there . A lot of my friends are worrying about their future , because many companies have decided to cut their costs so that they do not need to recruit others to join them . I also worry about my future . I have been working as an intern in an international company for 2 months , but I 'm not sure I can stay there . The reason for my call is to confirm the shipping date . I am working in Procurement Department . In addition , jogging after working became my hobby too . my husband does n't think it 's good . I might be more strict with her about money , rules , and study than he , , We will go to Belgium from 29th August to 3rd September . I work in the Jewellery department and my partner works in the fashion department . About Libya . I have heard much news these days about Libya . And I also heard that many countries are concerned about the exodus of Libyans . From what I 've heard Tunisia was no longer able to deal with such a influx . But I think he does n't feel much responsibility because he said Libyan people love Libya and Gaddafi . It 's ridiculous . Suppose that a girl has loved some guy secretly for a long time . You are interesting . ' I 'm Japanese . If you watch the news on the tv or internet , you will get information about the nuclear power station in Japan . In my opinion , I think we should close that , _ firstly , it is too dangerous and we can not control radiation . Secondly nuclear power stations could produce some nuclear waste . We also can find other resources to replace nuclear power , _ for example solar power and coal and oil . In the case of Shizuoka , Yakisoba ( grilled noodles ) is a very famous food . David Coverdale is one of my favorite singers because his voice is adorable . Many people are fascinated by his voice . Nowdays , many hotels offer a discount price , it would be cut in half . Could n't understand ! ! ! I could n't understand English or organic chemistry . I have n't written a thread in a while a while . Usually it is / it 's warm over there , because of the sea , but that summer , the weather was either cloudy or rainy . but recently I really ca n't have confidence so much about my English skill . I do n't know why they can remember vocabulary so much ! ! ! umm anyway I have to study more . After arriving there , she did n't want to get out of the car and cried very hard . The teachers were worried about her . I thought she just wanted to ride in my car more but could n't . . . . I 'll keep watching next episode after ! ! ! ! ! I could n't go outside because of the typhoon , but today was fun : D These two movie stars are the beginning of my study . I 'm suffering from a migraine . It 's something like a migraine . BUT I WHEN FOUND OUT THAT HE SHOULD COUNT THE QUANTITY OF SYLLABLES IN THE LINE , THE DEVIATIONS FROM METRE , PECULIARITIES OF GRAPHICAL FORM AND RHYMING SCHEME . . . The wall , the table , the counter , and all of the stuff are made from ice blocks inside . Even drinking glasses are made from ice . I like to write a diary entry but this is my first diary on Lang - 8 ! I have known about Lang - 8 for some time but I 've been nervous about writing a diary on Lang - 8 : ) I 'm learning English in several ( different ) ways . I am reading a newspaper , ' Student time . ' I watch web TV , and so on . Hello ~ ! ! Foreign Friend ~ ! because , I have freedom . Meeting my friend , eating nice food , sleeping a lot , studying English , I do that too ! ^ 3 ^ I 'm going to take part in Hana , where I learn English speaking with foreign people . On a cold day , I feel like eating a hot food . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` eating . But it was put off due to the big typhoon . I wanna write a letter for to host family . In Melbourne Because this is my first opportunity to go overseas and Melbourne , in Australia , has a lot of nature . First , we got on a plane for the Gold Coast , where we then transferred to a plane for Melbourne , then my host mother picked me up and took me to her house . We have three classes tomorrow , to teach us what Melbourne has . I gave it to the station cleark . Recently , I 've been addicted to eating crackers . In Beijing , I have a lot of trouble crossing the street . Actually , compared to Japan , Chinese drivers drive very fast and roughly . Today , we sold the same frypan again . My favorite color is blue . Today is my first visit here . A case in point is Edison who invented the light bulb through numerous experiments . What 's more , he was n't defeated by frustration , and he also said , `` Failure is needed and it has the same value as success for me . `` I plant vegetables in my veranda . Last Saturday I had my hair cut . Chris Moulin of the University of Leeds , you can induce jamais vu through semantic satiation , which means basically fatiguing a patient 's brain by overexposing him to a word . After reading the aforementioned info , I wonder whether there could be some implications for language learning over the short and long term . Today is april fool 's day . In the usa , people usually fool their good friends to make everyone happy , because the old generation does n't like it . In their minds we would be very impolite if we do that . Tomorrow we 'll have a outing . My company organised it . We will go to a famous and beautiful place , and we will see a panda . I am so excited and I 'm really looking forward it ! I always try to broaden my perspective , which means I can not easily answer any kind of question just from my knowledge . Even native speakers have a hard time writing something abstract , what it will be for a Japanese kid to do so ? Although some emotions and morals are still cryptic to my age , I was touched and just ccould n't stop the tears because of the beautiful regret and the heart - breaking ending . Are people in modern society losing their moral values ? Some of parents are very aggressive . In such tight situations , teachers find it difficult to provide good education and teach good manners to children . Youths learn very naturally how to respect their seniors . Each of us has to recognize the importance of morals . After I posted my journal yesterday , I regretted a lot because I wondered if my journal entry sounded offensive to some people . I want to say that English helps to express my emotions more easily than Japanese . I suggest that there are some cultural differences there . I am nearly forty , I work for a company and I am a department manager . M every day except saturday and sunday . Because I ca n't type a letter on my PC . . . . SUMMARY OF QUALIFICATIONS Um . . . . see the Jeepney in Manila , Philippines . . . They always give you an uncomfortable face when you hit ( bump into ) them on the road . Of course , he did n't hear that , and he picked up his hat I had hit off . As my college is in Kyoto , I usually only go around in this area . but , I am going to Tokyo to take a seminar for job applicants tomorrow . Thus I think that I would be busy , but I think that `` busy `` is an evidence of one 's living life to it 's fullest . He used to work in a sushi restaurant when he was a child . But she said `` I have never used it because I have a poor background . I want to speak English fluently and I want to get a job in London . I was a bit confused . Today I met my new roommate , who came from England and worked in Australia . He went to New Zealand to work and just stayed here for a couple of weeks . Actually , I do n't want my roommates to change constantly . Best regards / Minato because I think it 's not interesting and there was a typhoon then . My room was a little messy before . Oh . . . I forgot to write that I 'm not lazy ! ! So my room is good now . Of course I know there are a lot of mistakes . Well , I just signed up . I hope that with this web site I will improve my English skills . However , I received an E - mail from the community center , saying my reserved books have been prepared , so I 'm happy . I am born in Jiangsu pro China , so I have no chances to communicate with foreigners . Eating is important . Well . . . to be honest , I am totally broke . . . So now , I will be open and flexible for any financial suport from any of you ! Anyway , money is not the subject now . The more important thing is to have great and unforgettable memories with my freinds during each trip which I hope will cheer me up sometime I 'm upset or depressed with my work in the future ^ - ^ while I ` m taking lessons , I put my usb to a computer and study English from Eigoduke There must be a certain relationships in which you tend to hesitate to leave a comment unless the topic is absolutely familiar with you . His full music video will be released on the 21th . They pretend to be intimate with us when they need our help , why are n't they satisfied by our benefits ? We talked about various things for two hours and had a wonderful time . I 'm a student at Hanshin University . Someday I hope to play the guitar . However , I definitely am going to enjoy my life there . . . ! We are going to the selection football - soccer match when the American Cup is in Argentina . I often meet my friends to watch TV . I came here today ( yesterday ? ) on business . Most of his works are painted wide lonely landscapes with tiny objects such as houses , , boats , animals , trees . . . His first illustrated work ' The white bird on my bench ' has been published in various European countries after which he won many awards . I want to have the ability to help somebody easily . The sweat was pouring off my body . May this new year bring you many opportunities along the way . Because , when we caught up witheach other in my English lesson , I told her about the changing of my way of thinking these days . She also took the class to improve her pronunciation . I talked about some topics including international marriage with her in the car . I 'm a university student learning about architectures . Last month I visited London for 2 weeks . This is the first abroad trip for me . co , I would like to apply for the position of a Service Quality Manager . My ring finger bone was broken the other day accidentally , during a soccer game with my students . I attacked one students by accident The next day , my left hand turned pale and a litle bigger . It 's now a chance to strengthen my right arm and hand . I always love my mom but sometimes I lose control when I start talking to her and I become crotchety with her . I act crotchety but it 's hard to keep my composure with her . It would be very bad if I had to be with others in that time . Actually , my son is always being mistaken for a girl in china . This weekend I 'll take part in the National Computer 2 C language exam , but I have n't prepared well , so I do n't have confidence . The third question was , `` Describe one of the situations in Picture B `` . I went shopping with my mom . And at night , I went to eat curry rice in a restaurant with my family ! ! I am going to introduce Japanese folklore to you . I had watched Supernatural previously but now the season already finished . This is a really good hidden taste except for one thing : it takes a long time to cook soffritto . The received items are white belt , shirts , and black cut and sewn . It will be an unique ceremony . By the way do you know Turtle Talk ? Otherwise , The sentence does not seem to have enough meaning and structure . I can understand the teacher speak but I ca n't answer questions correct . There was a English Promoting Test at the end of the month in my academy . My teacher said , But your writing is not good , So I recommend you write a diary `` ( I ca n't remember it exactly , , ) I did n't see fear from radiation in their faces . Especially in past 3 months when a big natural disaster has happened and the affected people need help immediately . I question why my country does not allow both strong and long administration . In addition , Japan has a mono - cultural society so I think Japanese people tend to be affected by the media 's opinion easily . I want to travel to Europe , Australia , New Zealand and so on . Mah - jong day This weekend Then we talked about our jobs , hobbies , marriages and so on . We had several opportunities to speak English , but I do n't speak it well right now . I am convinced I will speak very well in the future . Within a few days ' time , we had to quickly switch to wearing cotton - padded jackets . I study very hard here because English is not my own language . A : I have a lunch box everyday . However , you enjoy hot meal there ? I am watching Criminal Minds on TV . I need immediate answers to these questions . No one can live without peace , which means that the Palestinians can not live but only try to survive . First I have to decide a specific goal , for example to pass one qualification , to take an exam , or to get job . Second I have to plan until I achieve the level and I know I I have to do this thing in one year , so I have to start today . It is most important that I continue that thing . My small objective is to go to an overseas university to study next June for 10 weeks . My daughter 's school is having a field day tomorrow . I ate stuffed chicken carsarole ( ? ) sounds like that . I resulted in eating too much . I very much want to improve my English I love to play with friends , plus singing and dancing . Could you tell me about your favourite music and singer ? Japan is the second biggest economy and the biggest economy of Asian countries . For example Japan is good at making video games so a lot of young people play video games and enjoy them . ( enjoy video games ) In today 's class , we talked about `` the unnecessary things in the world `` in English . But I do n't have any plans to go the sea . Because I have too much homework and I also have a test for tomorrow . . . . I 'm working at a restaurant because I need to pay the school fees . I was running , dodging many people to get a boxed lunch at reduced price . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more uncomfortable . To teach my students mathematics . If I did n't have it , I might have fallen behind . But , I wonder if young game lovers can understand them . Today , a foreign friend gave some advice to me . He said , `` I just hope you can open your eyes to the possibility of meeting new friends . `` Today , we had a trip with my father 's friends . My major is English language and literature , so I like English language and literature , I began to write in English daily . Because I want to be good at English . My teachers and my classmates never called me by my name and they always used to call me ' ' hergiin ezen ' which means troublemaker . I was called a troublemaker because I was a boy who always used to get in trouble and got my classmates into trouble . The journalist published a newspaper about the celebration of my school 's 55th anniversary . On the top side of the newspaper , there was an interveiw of our school director , but below his picture there was a picture of me peeing into the corner of teh school building . she was a young American woman . I asked the person that the scary mails , , , , she said to me `` you dont need to be worried about it , and you should believe in yourself . `` Lang - 8 has deeper communication , too . Sometimes even companies have a kind of sport 's day in October . Do you have a such kind of day in your country ? Recently , I have taken box lunch with me to my work place . We ordered lunch specials . After I got inside the store , I wound up buying things I would never thought about buying before . Unfortunately , my puppy hurt his left leg yesterday when he was trying to jump across a bush . But it is important to talk to each other , well thinking . baby are you down down down . . so0o leave it behind cause we have a night to get away . . . so0o leave it behind cause we have a night to get away . . Koreans have a lot of fun cheering in the streets but today 's match is too late . the frist video and this second video are a little bit different . . . If people ask you do you know how to cook Pad Thai , Now , I spoke to an American who lives in New York by chat . I would like to help someone 's dream to come true . It 's a fantasy and dreamlike . BLESS JAPAN I hope the Japanese soon have peace . God bless you ! I think music is a beautiful performance , it 's something essential , like a type of language . * I would be grateful if you could tell me how you express this because I really want to learn how to converse naturally . It 's so fun to play here . She said that it is a good site to study languages . But I am required to write a daily entry . But , I 'd like to be a programmer . The day before yesterday was Midsummer Day of the Ox . I went shopping with my daughter . People talked to my daughter because she was wearing a princess dress . These groups can not inherit if the prior rank inherits . Oh ~ God , he changes his mind like a girl changes clothes . Even if I achieve that purpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studying paper tests do n't help me speak English and learn English expression . Studying language steadily is very hard . I just looked up `` progress `` in an English - to - English dictionary called the Longman Dictonary . I think it happened because I changed my diary 's title style . Winter is ending , and Spring is coming . It makes me feel more powerful and it 's fun . If you have better idea , please talk to me . My skin had a blotch , and it was abscessed . So they had to cut it open , and mundify it . I appreciated all of our members singing . But since I 've returned to Japan , I have been drowning among huge amounts of information spoken or written in Japanese , and I recognize my brain is going to melt . . . . So , I decided to take action immediately ! I will be very happy if I find lots of friend here to communicate with and get achievement for my dull brain . Speaking of the airport , I found out about a new `` ticketless system `` this time . The media says that the public has the right to know about the private actions of famous people but the media does not have the right to ruin their family 's lives . I often eat out , such as at McDonald ` s . Now I 'm watching a TV program about the Hubble Space Telescope . Mein Vater ist Beamter . My weakness is my impatient character . I like to travel around the country to eat at famous restaurants . Certainly , the dove is an emblem of peace . The explanation about the exchange rate in cargo Insurance In case you fill in foreign currency in the application sheet and require the payout of Japanese Yen , the exchange rate to the payout is the rate agreed at the time of payout . Please be advised ahead of time that due to exchange rate fluctuations , the exchange rate at the payout may turn out to be less than the rate at the time of application . Actually , writing this diary is the first time after graduating elementary school . 2 Whisper of a thrill , there is no sense living your life without it . 5 Okay , stay open . Therefore I will have to take a bath alone in the near future . Yesterday , it was a little bit cold . Today , I went to primary school for one teacher ( physical education teacher ? In a podcast program about how to wisely choose lite and free apps , I heard something weird : My topic of research is `` spider silk `` The research is difficult , but I want to study more about this silk ! ! especially , I look forword to eat Temmusu that includes a fried shrimp into riceball : P Konstantin could not slept with her and came to me lol . Therefore we ( the employees ) have to work late everyday . So after Koizumi retired , the succeeding prime ministers ( Abe , Fukuda , Aso ) suffered from the poor legitimacy of Koizumi . Later today , I 'm going to treat my classmate to dinner . Yutori education system failed I suppose this is what the journal 's writer wants to achieve . I used to use a dictionary for writing sentences in English . I did n't want to make mistakes and I do n't know a lot of vocabulary . I usually check my sentences with a / my dictionary . When I cook a new dish , I follow the recipe for it . but next time I could n't make that dish again without the recipe . It 's been a quite long time since I had a great time on Christmas day . When I woke up in the morning , I felt that I was n't in good condition . My body 's temperature rose up to 40 degrees and I kept coughing and sniffling badly the whole day . It 's unbelievable to be in good health condition after I missed Christmas day . Even though I have no religion , I 'll have to appreciate to God whenever Christmas is coming . But my American teacher said `` No more freedom in America now `` . So many people in China throw away garbage anywhere and there are no rules of politeness and I just thought China is a free country . Actually Japan is one of world 's most polite countries , but there are so many unwritten rules that we have to keep , so I just do n't feel that Japan is a free country . Because it brings me pleasure to speak English with foreigners . They want to talk with Japanese people because they 're living in my country if they speak Japanese very well they want to live in Japan for a long time . At noon a keyboard at Ningguo Jiangnan hotel had a problem . Firstly , I would like to say `` Happy Chinese New Year `` to my friends in lang - 8 . My mum gave me some money but I need more . Active : I played volleyball today Passive : Volleyball was played by me today Active : I wash my dish before I come here . I 've promised that I would go out with my friends today . On Sunday my flatmate and I cleaned the kitchen . In addition , successful sportspeople / athletes also make your country become better known all over the world . During that time , I thought the sky might darken to some degree , but it had not changed at all thanks to the clouds . On the information page , a movie about Apollo 11 landing on the moon was broadcast . I just watched the movie , `` Apollo 13 , `` two days ago , though I did n't know July 20 was the day mankind first stepped on the moon . I felt that the business class is another world . This means , it has a different quality , different sentences , vocabulary , students ' attitude and class method . What an influential person he is ! My kids and husband saw Doraemon the movie . Sadness , loneliness , there are a lot of feelings there and that I ca n't sum up in one word . So my doctor examines me very carefully and researches this illness enough before my consultation ( appointment ? ) . Beginning of May ! ! I 'm studing economics in university , and my seminar focuses on international trade and developing economics . Today 's topic was on Chinese inequality , then we debated about education , social security , and occupation . The reason is that there is a correlation between inequality and education , so improving education in rural area will help reduce inequality . looks like a japanese comic character `` Black jack `` Korea is a very good place . but people have their own character . I do n't know why I could n't open the website , but fortunately I can open it now . I am in the middle of the mid - term exam , and I feel like I did terrible on the first subject : Grammar . It is one of my weaknesses in English , but I really like my grammar teacher , she is very talkative and likes to gossip . I have to prepare for the debate . I was so surprised becouse so many Koreans stay there , even Toronto . I read an article about Japanese school uniforms . AL Chinese Language and Culture I really appreciate AL Chinese Language and Culture because it is one of the tests to check our whole life skills in reading , listening , speaking and writing which we always use when we are a university student . But I am very much disappointed with AL Chinese Langage and Culture in its culture test , testing our ' Chinese culture knowledge ' and ' Chinese culture judgement ' , which I find most hateful . Carefully , there is a difference between ' Chinese culture knowledge ' and ' Chinese culture judgement ' . Testing your ' Chinese culture knowledge ' is based on what the famous Sophists say . But testing your ' Chinese culture judgement ' tests your judgement on using your ' Chinese culture knowledge ' . This is my first point why I am disappointed with AL Chinese Language and Culture . Why do I need to use ' Chinese culture knowledge ' to comment on certain kinds of events ? hate Chinese Culture because I have realized that some of the Sophists ' theories are too ' ideal ' . Although my teacher said the answers are correct in the right direction , no matter what you think , the answers are still always wrong in two ways . And two your answers go against what your teacher 's thinking about . This is the second reason why I am disappointed in AL Chinese Language and Culture because you need to think what most of the people are thinking . I found Lang - 8 by accident , I still do n't know how I was able to get into this website . But it is wonderful , because I found a new way and new place to improve my English and German . The people on Lang - 8 are really warmhearted , I want to make friends with every one who loves and enjoy life . Because he knew that I have been studying English , he thought it was a good opportunity for me to speak English . It was too difficult to communicate with foreigners , but I enjoyed that time . * North America : US , Canada Luckily , I was able to arrive home without getting wet . Technology and Environment Specificially , instead of wasting our resources , a simple life / lifestyle can help conserve non - renewable resources such as metals , minerals , petroleum , and fossil fuels . It may be tempting to argue that people who make their lives too easy for themselves may also implicate potentially harmful drawbacks . However , the benefits reaped by technology far outweigh its disadvantages . I am going to Thailand soon . . . My favorite is Thai food . . . In fact , this gentleman was also a business man and he had just finished some business negotiations and then took the train to Shanghai . Maybe when I go to university tomorrow morning it will be wet and there will be a lot of puddles . And in the afternoon it will be raining again . I wanna talk about the habits of my company today . Unfortunately , the meetings always take more than an hour . What is worse , even though we have morning meetings for more than an hour everyday , we have to give him reports , about what we did that day , before going home . Some of my colleagues have gotten sick of those habits . As a matter of fact , I like to listen to him at the meeting . I get a lot of business tips from him . The most important thing about English is to grasp the common vocabulary and the pronunciation of each word , which I am sticking to either . Thank you for reading my English . I 'm a business man in Japan . Someone could help me how to use this site please ? thankyou I hope to make more friends who like studying foreign language . I ca n't write or speak in English very well . Please look at my sentences and correct them . First Message I 'm trying to study using this site in English . During a party this evening , I got stressed out because of the infinite reliability on my English capability from my boss . I 've been studying English for two months . I wish I could speak English . you can study any language you want . I am going to see an animated movie tomorrow . My daughter & I had the flu ( type B ) for two weeks . Learning a language may be a good tool to make friends . I am a little bit desperate because I need a epiphany or something else . My English skill is poor . Today I spoke to a friend in Australia I want to visit the school to pay my respects to my teachers but I could n't , It is my first time to write a diary in English . I think I am poor at English grammar . All in all I think I become a more complicated person when I speak English . I decided to try it again next year . I have to go to the library again and stay there for 8 hours everyday . I erased him on facebook . I like eating and siteseeing . And surprisingly , I noticed that today - - August 13th , is International left - handers Day . In my opinion , using whichever hand wo n't determine who a person is . Just let every unreasonable injustice disappear on the earth . In my college in the Department of Communications , we have to do an exhibition in our last year in / of university . I feel reliveved I 'm not even sure what elderly people are nor what it means to get older . Especially gimchi is a very good food for our health . really , I have n't been studying it . So I hope you can help me . Japan is very cold these days . I do n't want to spend a time shopping for something I do n't want . If there were no laws , we would kill each other and the weak would be victims of the strong . If it is excessively or only violent , people can not have fun with it . Therefore , all violent scenes are not always bad influences on people . Humans are different from animals . That time , I forgot to turn off the gas with miso soup cooking and what was worse , I went to bed ! It is very unpopularto help others . We do n't understand how we can care about people who will not return the kindness . The most delicious way to eat vanilla ice cream is to pour a little balsamic vinegar on it . After playing badminton , I went back around by bicycle for exercise . Golden week was finshed . I will go back to work tomorrow . I 'm so disappointed with foreigners who are so rude even though they really do n't have any idea about Korean history . I really wanted to go abroad before , The boring day I am chased by a lot of problems now . As she is very friendly , she approached the other dog today , as usual . `` GD `` stands for `` Getting Divorced `` Truthfully , my parents are getting divorced as they always argue about something , even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can return to after I graduate from my college , but the real reason why I wanna leave Japan has something to do with my big dream . There , I have to give a speech . If there are people who need seats , for example , an elderly person or a pregnant person , we should give our seats to them . Golden Week started yesterday in Japan ! ! But I could n't have a paid vacation on 2 May because I was asked to perform some task on that day by my boss . I wanted to go on a trip abroad during GW , but my wish was n't realized because of the above reason . Their music is so emotional , but it contains lots of electronic sound and it 's so fashionable and pop ! I will wash our colthes and make dinner with my daughter . Today , I went to Japanese Grammar seminar . Of course , I 'm Japanese . These days , many foreigners go back to their countries . trying to university , I enrolled at a university to decrease the chance of studying English completely . I had a high fever , so I did not feel like any writing diary entries ( now I feel better ) , so I 'll start writing something again . Because the academic atmosphere is not good and the basic laboratory equipment is insufficient and out of date , it is hard to achieve much progress and make discoveries in a short time . I started working for a liquor company 11 years ago . The first month of company life we studied in a factory and a sales branch . Then he quit our company and entered Waseda business school . Now he has graduated and started working for another liquor company . 2 other friends live in Tokyo after being / working in other areas now . I 'm looking forward to seeing them . they mentioned a brand name that I had never heard of This was a funny experience I had in the supermarket . Some people might tell me I 'm just lonely . . Although I am a little nervous , I will do this job as best as I can . First , I will welcome them in the entrance and lead them to a elevator . `` Nice to meet you , Welcome to our company `` , `` Let me introduce myself `` , Now I am working in the bakery and learning how to bake bread . I 'm working at a flower shop , and that is very hard . I 'd appreciate your corrections , but I probably wo n't rewrite this until I am able to write it correctly by myself . When I learn more kanjis and feel more comfortable , I will begin to post in Japanese here . Beforehand , I 'm grateful for your corrections . Nice to meet you . They are supposed to cast their own benefits and prejudices aside . To make matters worse , the wind blew very strongly and broke my umbrella ! ! I know I love her ; I know she does n't love me . He does n't know . From my perspective , this game 's fantastic point is , using very realistic human avatars for acrobatic movement . I feel that , the central focus of Mirrors Edge realistic body exsit in the `` body image `` . Mirror 's Edge `` realistic body `` does not depend only on the graphical detail . Avatar 's breath and the crashing sound is very real . If the avatar runs for a long time , the avatar start to become breathless . Secondary avatars ( NPC ? ) action is not realistic , but the action variation is based on generall human action . Most of avatar 's actions are possible for general human . [ * Self Modify ] Probably , these `` realistic `` functions do not equal a high - resolution graphics efficient . Because my friend has his own car . His driving is soooooooo CRAZY . I have been eating so much that my waist is bigger and my stomach is sticking out . I do n't know why . : S Some people maintain that attending art classes may broaden kids ' horizon and enrich their knowledge . He was mooned - face and there was brightness and lightcoming from his face like a sun . She interpreted the words as a promise he made . Today I wandered around town and tried to take artistic pictures , but my pictures were mundane because not only do I have no clue about photography , I am also not good with artistic things . To be honest , I 'm still slightly confused on how to use Tumblr , but hopefully I will become good at photography and upload fantastic pictures ! I have studied painting for a month . I think it is difficult for me , the colour is most difficult in painting . These days , I think I make little progress in it . What a pity ! It is a big island located in the northern part of Japan . ( I do n't know whether the expression of island is correct . ) As a third - year student , I will be job - hunting after a year and I am improving my English level at the present . Kyoto has some foriegners who comes to sightsee in Kyoto city . There are bus terminals to some famous spots in Kyoto . I would like to help some foreigners who are lost in Kyoto station . Blinds are the opposite . I 'm staying in Australia to study English . I 'm Japanese so I can teach you Japanese . I drove my car in a main street when I found that it was hard to move and it was raining at that time . The heavy traffic blocked the street and thirty minutes later , I left to look what had happenned . More than a hundred cars were blocked up at the crossing , the street was in chaos . and improper grammar . Other than the internet I learn from aplications such as `` Windows `` : ) ) ) ) I need a lot of help because I find English a difficult language to learn . That 's because I had to get my bank card reissued ; yesterday 's accident was not my fault . I ca n't trust or believe anybody anymore . Hey wait , so my landlord tried to use my bank card ? Even if some hackers have great skills , is it possible to learnaPIN number without touching my wallet or bank card ? From now on , I can focus on my study and job hunting . Influenza is awful for Be carefull of influenza everyone ! Kano and I went to Tokyo Disneyland the day before yesterday . Because it takes about 30 minutes from my house . Nihongo no tanjoubi no uta wo shirimasen . This shop sells various goods . For example : bowls , dishes , cutlery , bags , and plants . In the past architecture was built big , new , and public . Today it has become small , re - built , and private or commercial . Although they are only primary school students , I found it difficult to handle them . There is still room for improvement of my training skills . Wow , it was so hot in school ! There was no air conditioner in our dorm , so it was a great challenge for me to spend the whole night . Since I 've registered on this site , I 've always been writing in Japanese . I love learning Japanese but I think I should make better use of this site to improve my English writting ability as well . All of my family became members of Lang - 8 ! It 's a fun to write a diary in foreign languages , although it would be a little bit hard to keep it up . Sometimes I think they do n't care about the grammar , but I am kind of worried that they do n't understand me . On Monday , I failed in the rehearsal . I think it 's going to be a big challege to successfully play the role . I 'm not good at touching other people deeply , and I do n't like touching the bodies of other people . ( I thought so at a nursing home where my grandmother stays , and while I was caring for my grandmother . but of course I care for my grandmother . ) I ca n't do anything for other people . I heard it is a little famous in the world . This comic has such a heartfelt story ! I have an exam . Secondly , I will work out very hard because I believe I have HIVD ( herniated intervertebral disc ) and scoliosis . I need to do stretching and take care of my health . I do n't want to fail to fulfil my resolution . My mother and I went out for a long walk . Even though it was so cold that we were almost freezing , I felt really cool and refreshed . Exercise makes people cheerful . I am now planing to join a member of * * * as a trainees , If I become a member before Jan . Would you mind telling me about making it in time , if I apply for a membership in a couple of days ? I also know that some of them have been became shorter which is good , therefore `` Heroes `` season 4 was denied to that only having around15 episodes . . Ohayou Gozaimasu - Philippine wa mou shichiji desu . Nothing bad or lucky happened . hmmm . . . what should I do ? I 'm studying about welfare . My hobby is reading books and looking at the blue sky . Of course , I like watching TV too . But , now I have so many tasks about my studying , so my days are so busy , which is a strange feeling . To make matters worse , because the disaster - stricken area is very wide due to the huge Tsunami washing away everything like main roads and docks . Also the uncontrollable Fukushima nuclear plant , severe shortage of gas , and the situation of shelters and hospitals in the disaster - stricken area are very serious . It was written about her . He flew to the sea and He was drowned . I do n't feel comfortable . I have a simple question today . I 'm hungry ! I know that many young woman have had breast cancer recently . I think this is because of bedbugs . Although I wash my bed cover and bed sheet regularly , so why ? So should I change the mattress ? For example , we played Street Fighter II which was made for PS2 . B ) installed the software onto the desktop of A 's computer , it seemed A was disappointed by B because the desktop was filled up with many folders . A was angry until I removed it ! ! Nobody will notice that I ate one apple or I ate many apple . I learned ' Gostop ' which is a kind of Korean card game from my friend . There were lots of rules and they were very hard to remember . Each card has a different score and it 's very flexible ? as well . It was quite a strange time moment as it was my first time to play Gostop I want my English to be as good as my Chinese , which means whenever I see English words I can spontaneously catch the meaning of it . My friend got a score of 850 on the TOEIC the first time , and 905 the second time . ' One ' is pronounced as ' yi ' in Chinese , and it is similar to the pronunciation of ' two ' in Korean . This space seems like a place to write a daily diary . Perhaps we need to go back to the basics of this problem and assess the possible causes . Furthermore , providing owns < - - ? criminals only addresses part of this problem . So far there has been lift < - - little ? success in the war against sex crimes . I thought , I should write something in the , `` About me `` section . Perhaps I should do some grammar exercises for this topic . I thought `` to get caught `` is useful in a conversation . It has been 10 years since I first learned this language . But , I found that Japanese is much more difficult than English to learn . temperature on the increase since the temperature has been increasing very slowly and sometime even falling again . 3rd picture : At Ginkakuji ( Ginkaku temple ) I listened to some music . My baby pressed the power button repeatedly . Today , I tried to correct a diary which was written in Japanese I felt it was difficult to get up punctually and actually it was so . * Oh yeah , I 'm afraid that after I write a few diary entries that I wo n't visit this website again , and accidents often happen , so I always pay attention in order to avoid them . I saw a boy cross the road . A man came and examined the boy . Many people surrounded the accident looked puzzled . About my work , there 's so much works I have to finish within this month . I 'm afraid I ca n't finish the mission that my manager / boss gave to me on time . Yesterday was a sunny day . All of a sudden , it started raining hard . Personally , I think these girls are ridiculous and their attitude towards life is too childish , it is so stupid to copy someone 's style ! So , returning to England , I can say it is a nice country with excellent traditions . In Japan , many flowers start blooming in March , Spinach Salad . There were two Myanmars and one Italian in our group . So I have my moments where I 'm too careful about my words . Yet , I feel an invisible barrier which prevents me from posting my compositions . I was surprised . I thought to myself , in this town , how could one possibly gather 8 uninteresting people ? ( Except for me , of course ) But every time , I ended up disappointed like today . I had an appointment at 9 : 00 in the morning . And I need to use the money in the right way . He is the most enthusiastic and energetic person I have ever seen . But once I tried to speak , my tongue was twisted ! Fact : I went to a university and measured my maximal oxygen uptake during running . They are second - hand Timberland tracking shoes costing 15000 shillings . Also , many people say that the adoption should only be allowed to heterosexual couples because children could be confused in a gay marriage . Many people think that they are one of the favorites to win the World Cup . Some weeks ago , Japan lost to Korea . Why do young American people say ' I love very very very crazy about him ' in real English . And I also want to tell my other friends if you feel bad about your body , go to hospital immediately , don ` t wait . We will talk about many things today and have delicious food . Too difficult . Being honest Should be our obligation in whatever we do . But the reality is not allowed us to choose right decesion . There are so many things in the ( world ) . , , , , , , , , , , , , , maybe . He tugged the rope and pulled the bucket free , leaving a hole - a hole in the water ! The young couple married with fairy 's consent and lived happily ever after . How glorious it would be . I ate a hamburger . I immediately decided on what I should eat . There was a picture of a delicious hamburger on the menu . I ordered a hamburger and it came at once . I would not feel better if I had been eating a hamburger for a long time I was excited and full of confidence . I was n't until I found my driver that I realized I had left my backpack at the security checkpoint . The next day , my cousin met up with her classmate at the World EXPO park . I had to get up early to helped her prepare . Although , I have to take two pictures of myself , I have n't prepared yet : ( When I was 14 ( approximately ) , I watched one of my first serials in English . It was `` Charmed `` , an American serial with 3 witches . So Embarrassing The class teacher wanted us to have a discussion with a classmate . That 's so embarrassing . First , when I wanted to buy some street food or drink I always used the index and middle finger to show I needed two meals or two cups . But they would show a thumb for one and the index finger together for two . They were allowed to smoke in restaurants . I talked on Skype with my friend who lives in Tokyo now . Although I wrote a related article before , I still think this topic is hard Analysis : SWOT for Yes ( For SWOT ) Analyis : SWOT for No ( Against SWOT ) 3 ) O : Everything still remains the same And I did n't know that a Tsunami has so much power . Why were the Tsunami 's waves so much higher than expected ? ( predicted ) The winner can go to a Korean University for free . In the afternoon I went to the place where I was supposed to learn to drive , but the driving instructor was n't there . For privacy , my brother is teaching me to drive at night , and we paid Trying to learn to drive a car is so difficult , because it is about keeping safe in traffic . We ca n't learn English conversation from either a professional future . I hope all of you have wonderful days in 2009 . Christianity in the US actually supports the Republican party in various ways ; the party which love guns and wars rather than helping needy people . I 'm going to find a friend so that we can help each other learn languages . Sometimes we get free tickets and go watch the other shows which are being performedin Las Vegas . He is great as well . Recently , many unlucky things have been happening to me . rotation this year , mailed me and asked me to report next week . I went to a flea market with my friend yesterday . Silvano was so patient with me . For example , I read articles on the internet or in a newspaper , listening conversation in a website for English learners . I help you improve your Korean Furthermore , now I am interested in Japanese . I will try to write in Japanese in one day . Though I expected Miami would win , Dalas won . So we feel very uncomfortable . We are college students . There is no need to warn us to be careful . So you can imagine how limited we felt when we had the teacher following . It 's very good news . I hope they will be rescued quickly and will stay alive . Actually I stayed with them for about only one month but I am happy being their friend : ) What a CRAZY bicycle ! ! . Noisy politician 's public speaking 2 As you know I do n't like politician 's public speaking , but there is one politician that I want to hearn and that person is Junichiro Koizumi . Now Tarou Asou is president who is known to give a fun speech . Well , I 've just now registered to this site , and due to the excitement , I 've decided to skip the next lesson , which is PE ^ ^ Today is the `` Setubun `` ceremony . It is the `` Setubun `` ceremony in Japan . I wished for my family 's good health . `` Setubun `` means `` the day before the beginning of spring `` in Japanese . I finished my lunch I felt depressed because of the weather . I did not exercise because of the rain . I 've just finished language school and started college . I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( It 's very frustrating and I 've been wondering if my English is getting better ! We had a conversation for about 15 minutes . She can speak Engish very well . Her English is probablyalmost perfect . not again , oh my goodness ! I 've only met a fewJapanese people who can speak a certain degree of English or Mandarin , but on the other hand there are lots more Chinese bilinguals in Sydney . At the end of the lesson , my tutor encouraged me by saying `` You can do it , you already have good English skills . After you go to Singapore , you will probably have many English questions , but you can ask me anytime through the Internet . `` I 'm really grateful to him . I want go , so I have to improve my English skills immediately . But it seems to measure speaking skill , listening skill , writing skill , and reading skill . The tutors are students of Phillipine University . Just keep studying . It 's the only way to make my English good . I was surprised that lots of foreign people were visiting there . I have to start working tommorrow ! ^ _ ^ ; I did n't know why , but I had a sexually transmitted disease and everyone invited me to hang out . They are related to death like euthanasia , patient 's right to know about their terminal illness , cloning etc . It 's a very controversial issue even for native English speakers and actually it does n't have any answer . Like Tsunamis , earthquakes , typhoons or meteorites ? It will be a central - exam of Japan tomorrow . Today the movie `` Summer Wars `` was shown on TV in Japan . It 's too troublesome ! My sister and I made cookies yesterday morning . I made up my mind to listen to English songs and watch English movies . Susan falls in love with him . News that an intruder had breached the security of Wisteria Lane spreads like wildfire . I borrowed it from a friend who likes comics In Germany , a genius Japanese doctor Tenma had saved a boy 's life by operation . Unfortunately , Johan was agenius who can think of killing without anysiginificance to human life . Tenma learned about the facts , he felt that hewas responsible because hesaved Johan 's life when Johan was achild . MONSTER is one of thepopuler comics in Japan . I even thought anything would do as long as it was a kind of living thing . Recently , I 've been very very busy . So I want to see a lot of my favorite movies and spend time relaxing ! ! to succeed in the event . . . . I went to Career Prospects in International Business last week . Omgsh , this morning was awful ! I was so hungry that I could hardly see ! I had taken my antibiotics but I was in such a hurry that I forgot to eat something , I thought I would buy something once I arrived . In geography there was the rivalry between China and Japan , or the French economy . I chose Asian decolonisation and the rivalry between Japan and China . I thought , did I really go through this much trouble ? Last day , it was raining day , Within such a short span , I visited Washington D . Know Now I can understand the teacher in the Foundation , becauseBrendan helped me a lot in listening . After I had to go back to my University and wait 1 hour ( until OR for ) my next How can I translate this ? But my vocabulary is too poor to translate the meanings of this . In that class , I learned about a strange concept : that perception is not the re - creation of reality but the constructing of an image . Furthermore , the illusion of sight is the result of the brain 's activity . The professor said that the brain copes with information from the outside through sensory organs , and makes the image , which is easier for us to understand . Therefore the image I 'm seeing is not the real object but the image constructed by myself . The poor gamer 's busy days . I saw my younger sister reading Harry Potter this morning . I read that novel a long time ago . It was very magic and ridiculous . Before semester , I joined the magic club in my university . I often listen to the album `` In My Own Words `` by Ne - Yo . I am lonely . ( I feel lonely ) Because of work , I have been working over 12 hours a day for maybe 2 weeks . It 's really very exhausting ! ! The weather was a little bit hot , but I could complete the play . My score was 91 ( 45 . 46 ) . However , my listening and speaking are still the same , and I tried to improve it by listening to music with lyrics and watching movies with English subtitles , and I have a lot of friends from different countries , and I speak with them a lot , but I still have some problems with explaining what is in my mind . I 'm the engineer in the manufacturing department . My favorite musician is Kobukuro , a famous Japanese band . What 's up ? Besides after school lessons , most schools let students play there until around 6 P . These boys kept threatening us . Bastard : `` Hey I am asking you , do n't ignore me , do you have money ? Bastard : Huh ? Bastard : . . . When I prepared to fire it , the wind was so strong that I could not do it with a lighter . When I was reading Newsweek magazine , I came across the following sentence . Of course I did work on learning English in other ways . Now , English is very important to me because I need a job and money . If I dont learn to speak English , I wo n't find the job . Fireworks are to be held tonight in my town In Japan , on the 29th of April it was a public holiday . That was the Emperor 's Birthday Showa . One cup of yogurt , two cups of milk and one tea spoon of honey . I lost it last Thursday in Tokyo on my business trip . Many researchers argue that due to the genetic similarity between humans and animals , experiments can help us discover the cure to fatal viruses and diseases . So I went to the school for the first time by bicycle . I 'm interested in foreign countries and their cultures . I do n't use English in my ordinary life , You know Russia is big . Next , the phone was taken by another classmate , he told me that he really thinks that I should talk to the teacher to see if there 's anything I could do to fix it . Because I did n't do the project well , and my final presentation was not okay . Ohhh , what a relief ! So , I hope I really can help her and take care of her . Firstly , I want to meet with my friends from high school . Secondly , I have to write many letters called `` Nengajo `` . I have not written any Nengajo yet . There are more than 100 letters that I have to write . An electronic dictionary is a tool for learning English . It is just a machine that is use for translation , and sometimes it is not a precise machine . ( It was my homework , please figure out the mistakes in my composition . ) It 's really interesting and I 'm having a Cherry blossom viewing party on April 5 . But we have n't decided a place . I 've been studying english for something about four years , but still having difficulties with the language . I started studying english because of my parents . In a first moment I really hated the idea , English was terrible to me . just another thing : I started German classes today and I 'm really loving it ! However , I will try my best to write more essays here : ) Unfortunately I lost my wallet and I looked for it for half an hour . It was really exciting and interesting . I went to a desert island and ate a lot of crab and shrimp ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! Whoa ! ! ! I will write daily as much as possible . Please help me study . He was totally exhausted so he was sleeping when I called . Pleeeease be My Friend and teach me English . However , people often say to me `` You look like a half - breed ! `` I think that 's because of my brown eye color , but I 'm a natural Japanese . I need to wake up early tomorrow because of my friend 's part - time job . My wife took me to the `` Cirque Du Soleil Theatre Tokyo `` for my birthday present . The theatre is near Tokyo Disney Land . It was built especially for the famous group , Cirque Du Soleil . During holidays , I sometimes play analog games with my friends . Tom Cruise acted very well . I don ` t speak English because it 's very difficult . I think I speak very good English , but I don ` t really - when I meet my friend , we only say ` hello ' and ` hi ' . Today , I woke up at 8 : 00 AM , drunk coffee , watched TV . When I write a diary entry , I read vocabulary books . Do you know Nagano ? Do you know Nagano Olympics in 1998 ? Nagano is a famous place . For example , Zenkouji ! It is a very old shrine ! Would you search the Internet ? It is a very big shrine ! In 1992 , I went to Thailand to meet my family . I am part Japanese , Thai and Chinese . My older brother lives in Thailand . Labor Festival is a big holiday in China . At college I have a lot of time to study and play with my classmates , but we are not always together . Today my math teacher told us about Furbies in the class . He feels vexed so he forced it to eat ( by touching its tongue ) even it when it says `` I 'm full ! `` . recently , I have become interested in Korean drama . But evetually I got throught it and we made delicious `` Japanese mugwort rice cake `` . In the middle east of Asia , they 've had a truce between Israelis and Palestinians . Hello ! ! ( Hallo is German ! : P ) Till now , I think that difference between ' see ' and ' look ' is whether it includes actor 's purpose . It 's elegant and gorgeous , I 'm practicing often : ) If you 're sick or get wound accidentally , that means you have to spend valuable time during the day waiting inside of the hospital . There are so many troubles in our life such as family , friends , love and so on . I 'm confident of my ability to work for myself . I love music and watching movies . What is the difference between them ? I know some of them pretty well , ' cuz they live my lab . ) `` The professors have the title ' Prof . ' , we put Prof . So I asked them to put the title `` Agent `` . ( Wie soll ich die Umlaute schreiben ? ) They were in the same situation as me of having a hard time communicating with Australians . I finally could communicate with Australians because I got used to and gained confidence in my English . I have enough money to go to Australia but I am a little afraid of the swine flu . Swine flu has prevented me from to going Australia . . . . We enjoy trips during vacation . What are your school assigments like ? How long are your essays ? I 'm not as fascinated of it as she is ( it would be difficult : P ) , but I enjoy beautiful paintings from romanticism and photorealism . Please correct my English with the appropriate words . My friend asked me to write a draft to ask the university in California like below . I have not confirmed that my degree is eligible to enroll in your school and sit for the bar exam in California , however , Hiroshima University is one of top Japanese national universities . As for writing essay skills , I 'm planning to receive support from a local English school in Japan and I want to try to polish up my writing skill enough to pass the bar exam in California in the future . I mean I prefer autonomous distance learning , is that an option through your school ? Thank you for taking the time to answer my questions , I realize that my English writing skills are poor For our honeymoon we went to Turkey . This was the first time I went to Turkey . First , I went to Istanbul . I thought so . I was surprised and also shocked to hear that . Like Brunei ? , Singapore , Korea , and also Brazilians from Nagoya prefecture , ( There are a lot of Brazilians in Nagoya . ) and I was very happy because I could get to know them and became friends with them . They are so charm . The Brazilians are in high spirits and I were happy to be in each other 's company . I admit I had overslept one time . . . Just one time ? I 'm always nervous when I have to speak in front of many people . They 're sitting there staring at me and then I forget what I have to say . . . And thanks a lot for correcting it . . . I 'm going to live with a guy from Taiwan this month ! I can live with a guy from Taiwan ! So , football could be world wide sports compared to other sports . I was so shocked because it was a total misunderstanding , so I explained it carefully , but she still did n't calm down . My careless behaviour might have upset her , but I thought the focus of her anger was not the main subject we were dealing with . However , this earthquake was too strong and brought a 10 - meter - tall tsunami . The earthquake was 8 . 9 on the richter scale . The biggest earthquake in Taiwan was just 7 . 3 and it made us lose a lot . It 's hard to imagine what became when a 8 . 9 earthquake and 10 - meter - tall , 3km per second tsunami happened at the same time and the same place . If it was in Taiwan or if I was a Japanese , where would I be or where would I be standing now ? It 's rains sometimes , but the next day the whole world becomes so green . It 's windy today ! But sometimes it is a little hot and windless . We chose classes by computer . We needed to remember the class number to choose classes . For a long time , I have n't logged into my account of Lang - 8 . Two schoolboys began to play agame to warm their body 's . I took a trip to Tokyo Disney Resort with my boyfriend . hello everyone , today is my first time to use this website . I found this website to be very useful . I 'm 20 years old . They speaks English fluently , but his boyfriend especially has a marvelous talent for languages . like spending time in dormitory ( sharing room with friends ) , playing seasonal sports and learning about other cultures at that time . That 's why I decided to write a diary or something on `` lang - 8 `` . Recently I 've watched ' Star Trek - Voyager ' to improve my listening skill . But my English teacher recommended me to watch ' Star Trek - Voyager ' because the actors and actress speak clearly . I want to write entry on the trip to Malacca , but I do n't have enogh time to write . I will be glad if will you correct these sentences ! It seems like I 'm writing monthly journals repeating `` Long time no see ! `` The connection to the web browser is in VERY poor condition inside the dormitory where I am , so it 's difficult to enjoy web surfing . My old PC is broken , so my mom bought me a new one . Doing volunteer work that helps some exchange students to study Korean , I realized that Korean grammar is too difficult to learn , which make me wonder how I learned Korean without any difficulty . He came to the university to receive that costume from the store . So here I 'd like to study technical English and make new friends ( from all over the world , but it seems to only be a dream ) . He corrected it and taught me about the word `` appointment `` . We are going to buy some things for her and go to northern Thailand to congratulate her . It has very wild & beautiful scenery , and the food is more delicious than anywhere else . In particular , the seafood is delicious . I read in the news that sushi is a popular food around the world . I will take the chance to eat sushi when I go abroad . Each of them got a prize at the photo convention for tram cars last fall . Actually Roh - bai is not the same as Ume but very similar to Ume . Japanese like Ume fully blooming on Februaly after the Roh - bai flower fell out . However the answer was `` no `` so I opened the door , but middle aged woman in green shirt was sat down on the toilet . I interviewed in Tokyo last Tuesday . Anyway I do n't have a lot of time to live in Korea . Today , it is a beautiful day . In Japan Saint Valentine 's Day is the day for men to present chocolate to their lovers . But we did n't have a Christmas party recently . Have a nice Christmas Eve ! I started the Twitter . It is an action movie about the conflict between Batman and the Joker . Batman represents justice . Christian Bale plays the role of Batman and Heath Ledger plays the role of the Joker . I had been doing nothing but studying for my university entrance examinations for a whole year . Then , this spring I thought in this spring `` I should work ! though I had been given a scholarship until I dropped out of the university that I had been at before . Today , I thought that money is more precious than ever before ! Many of the people who gathered at the park were holding flowers to show their sympathy for those who died in the massacre . The last three problems were really convoluted . the following sentence . . . Today my coworker told me about a Korean singer . I also believe in Chinese fortune - telling as well as Tarot cards and blood types . For me , I live a life with a contradiction of modern technology and the old - fashioned ancient knowledge . I plan to go somewhere to see the cherry blossoms . ( But they are n't cancer ) I have had some changes lately . First , my spoken English is very pool , so I think I should speak more with foreign teacher . I should also look back the old knowledge . For this exam , I must have a good grade , It matters my English Band Four . I 'm so lonely , because he supported me . He said `` Let 's cure the illness together . `` I 'm so lonely . So I hope some day we can meet again in heaven . That year , The Sydney Morning Herald and the World Wide Fund for Nature conceived the idea which was observed / celebrated in Sydney as well as in some other Australian cities , followed by other cities around the world . Because I intend to change my rooms interior . Recently , I am interest in Northern European kid 's room interior . Recently , I am interested to go to Korea , China , and Europe ! I 've been to Korea , Singapore , NY and Australia . This is my very first diary , I 'm quite lazy , but I really want to improve my poor English so I 'm thinking to write every day , , , , as much as possible , so please check them ! If I keep using my iPhone like that , I 'll develop bad health . But actually , my iPhone used me ! Please give me some good advice . Drinking an alcohol beverage ? Riding a crazy ride at an amusement park ? What about taking a bath in hot bathtub ? You may pass out due to the crazy hot , spicy taste . I 've decided to travel around ( in ) Europe when I do my masters degree in the UK . Among these , two of them are Safeco Field and Yankee Stadium in America . My grandfather cut the rice plants in large quantities with a reaper ( photo 1 ) . Apart from that , I can amuse myself because these days I have a bad mood . I was really disappointed in myself and feel sorry for my parents coz I ` d been studying very hard for the test and they invested lots of money in me , like hiring a private teacher and letting me go to cram school , but I still did n't do well . . . its a kinda english test with 4 sections : speaking , writing , listening and reading for people is who are studying english as a second language . I dont feel like studying anymore . well the test score really discouraged me . `` Likely I will continue , `` another person said . `` Cigarettes are part of my life and I ca n't abandon them unless I die . `` In Japan , a lot of restaurants are starting to offer hot pot dish . I found this website on the Internet . Please correct my sentence if I make a mistake . Some experts say that a lot of natural resouces have not been found yet and also it will give us the opportunity to start business ! ! Holding your hands tightly , my heart would burst into fragments . I have been working for 1 year and I have learned a lesson - I lack of courage , which is a disadvantage when I was doing work . But many times my friends have told me : `` You do n't look like the ( conservative ) kind of person ! `` because I usually take it easy when I 'm with them . Life sucks without true love , and I must learn what should I do to find the zeal for my work . It caused a thunami . What do you think about this catastrophe ? In short , it is okay that we use 2000 kanjis . I am reviewing the German culture NYC is a very very exciting , amazing , beautiful city . Coming soon ! ! ! A few hours ago , I read an article about Winston Churchill who is the most famous prime minister in Britain . I want all the friends have a happy time in this lovely internationl social network . Please be my friends . My car has a sheet of ashes on it . For example if you do n't take Math or Biology you cant go to medcal school ( I dont wanna be a doctor or surgeon so I want to drop it anyway ^ _ ^ ) . Well it 's a difficult decision but I have plenty of time ! Because of this , I 'm sing have less opportunity to study . I want to recover my diligence without rejecting my friends ' invitations . My favorite Today , I will write about one of my favorite things . Comiket , Comic market or KOMIKE in Japanese pronounce , is a kind of market place dealing withpopculture andit is theworld 's biggest festival for amateur artists and manga - fans . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into living room , and she said that some black object fell . It was so yummy . After I have finished the class I will ask you to join and learn Thai with me there . Why can foreign people speak Englsh ? I conceal my feelings and emotions unconsciously . Also my wife and I have a bit of the cold so we are taking many vitamin C supplements . We had having a special course menu as below , Of course it was very delicious . Although I did n't know exactly who he was . Where I work , there are lots of real bilinguals who make me envious . my English is very bad , I need to learn it , very fast , some ideas ? Do you know `` Fantasista `` ? Furthermore , ecotourism , whose business takes advantage of the wilderness , may have harmful effects on it . I love to exercise . So I decided to do some exercises for my health during summer vacation . The course for students is inexpensive . For this reason , I decided to use this gym quickly . My body will change in the summer when I keep training . Thus , what I should do is to get used to the current life and rhythm . It is so comfortable that I am not willing to wake up . Many of my friends spend a lot of money going to a cram school for English . But to be honest , it was totally funny and fun . haha . I swear to read English everyday . I swear to read English everyday , because my English is too poor . It 's embarrassed me and I noticed that it 's time to improve my English . . . By the way we went to animal hospital to vaccinate my ferrets . I ordered a ticket to Arch Enemy 's concert through the internet but I have n't gotten an email confirmation from the company . Actually , I knew that already but I wanted to study etymology anyway . Today , I had a three hour lecture on political science , and a three hour lecture on world history A few days ago , I started to translate Machiavelli 's `` The Prince `` from English to Japanese . I feel as if I 'm decoding a cipher when I translate . Well , I do n't know if this comparison is right . `` What does this sentence mean ? `` I repeatedly think and imagine the meaning . It is very gothic and makes me think about ghosts . I was taking some photos of the church itself , and of me next to this church , but this photo is the best one for me because it creates joyful emotions in my soul and heart . Let 's write about Joni Mitchell , one of my favorite musician . The occasion of the first meeting to her music was in my boyfriend 's CD rack those days ago . A musician and a painter . My mother took us to the station and I took the train . It was lovely , was n't it ? ; ) There were many stands there that sold vegetables . Past tense . The street there was made of bricks . I think I lack knowledge and reading books would help me create my own idea or anything . I had finished reading `` Wuthering Heights `` yesterday . Although it is a small and characterised by its long heritage , Yangzhou is flourishing and becoming more and more flourishing . An industrial park has been built just beside / next to the old town , where many new high tech companies are booming . When people realize that they can develop careers in small cities , large cities like Beijing and Shanghai may be relieved of some burden . I run every night to refresh my body and mind ( ? ) . in order to refresh my body and mind . Back then , I always ran before dinner . I only have a database in my PC . After that , I did my homework til 10 a . m . After doing my homework , I started cooking and had lunch with my roommate ( s ) . Yesterday , I had my wisdom tooth pulled out . The exam on history of Russia was very difficult . I expect a lot from my new life at university . This is a photo of my class = ) ) ) Only girls as you see = D We eat grilled beef , chicken and vegetables . I have studied English for eight years and I usually talk with my friends in English . So , if anyone would like to teach me proper phrases , I 'd be most appreciative . First off , I went to headquarters where I got heartwarming welcome from all the people on the staff , including the section director . Maybe this is common sense but it always annoys me . . . I saw three other cruise ships that were different to yeaterday . Prime Minister Members of Hatoyama 's cabinet were introduced in today 's newspaper . He looks earnest and persevering . The economic bubble burst suddenly , and that effect spread quickly all over the world . From his official web site ' HIFUMIYO ' , he has traveled to many countries , and seems to have become a socialist . He criticises capitalism incisively ( particularly in America ) on his site . I have been studying English for about 5 years , but , it has not worked . I 'm trying to learn grammar , words , etc . Everyone 's help is welcome ! Because of the school garden party , I teach undergraduates Architecture at my university . I teach Descriptive Geometry , a kind of drawing . I sometimes use some pieces of paper or solid models which I made for them , because it 's hard to describe things somtime by only speaking . I jogged only on the weekend , but I think it has a little effect in decreasing my weight . It 's been so long time sice I wrote something the last time . Please correct my poor English sentences . The daughter which will arrive first of all will arrive early next Tuesday morning . I think I only enjoy being with them such as right now . The Japanese landlady was going to England to celebrate Christmas and New Years day with her family members and husband 's relatives . Deschanelis one of my favorite actresses . I 've seen an acquaintance use this phrase before , but I was n't able to understand the usage . To enter that high school I should get a good grade on this midterm test which is next month . I am looking forward to hearing their new sounds . Despite embarrassment , the Russian people , who get by in foreign languages , pick them up with a great pleasure and are ready to help you find your destination . At last , I finished writing about my last Seoul trip . But she really likes English , and speaks almost exclusively in English . Unfortunately my school field trip has been postponed . That trip is sceduled to go on Aug . So , It may be all different . And , I encountered why I feel cute . ( not meaning sexually ) I drank orange juice . And it ` s gon na take a few more minutes for us to really clear up our heads . I should have eaten a balanced diet with plenty of vegetables and gotten some exercise , but it 's too late now . Hope that I will be admitted to the HKU . I 'll watch ' THE PRODUCERS ' next . Yesterday , I went to two museums : Quai Branly Museum and Paris City Museum of Modern Art . This is my favorite movie I recommend you go see it . Now I 'm faced with the prospect of studying alone abroad within 2 years , without hearing my familiar mother tongue , without my boyfriend or friends , and maybe becoming overweight and lonely . She said that `` I ca n't walk a step , not to mention running , because my Ipod has n't been charged `` . Meanwhile reading professional text books written in English is also in my schedule . I think my ability to write English is worse than before because I did n't any write journals in English . Of course the same goes for German . Ah , they were very strict with me growing up and , um , I used to have to sit at the piano for hours to practice . Ah , when I was younger I , um , resented my mother for this discipline , but when I turned about eleven years old , I was very grateful to her . I was probably better at piano than I am now . You can see there are a few books but a lot of wood materials . Not only human being but , also animals too . but I know he has such kind of character . As for me , I always use English - Japanese dictionary and translate to Japanese because it is the faster way to understanding what is the meaning of words . Please judge this sentence . It seems very crazy . When I play mahjong , I get a lot of money . in other words , I make money . The reason seems bad . Could somebody think of adjectives which do not have superlative nor comparative forms ? One of my favorite English teachers wiilwill leave the school at the end of next month . Hello , everyone ! We met my friends cousin and her friends in new york during weekends . We were able to stay at her cousin 's friend 's hotel so we payed less than the usual cost . when I see more things I often feel that I could control them . What ( Which food is famous during the winter in your country ? ) Hello , People please help me out here , sometimes I have some doubts about how to use the words ( up and out ) after verbs . For example : clean up , check out , coming up , carry out , etc . ) I do n't know how to explain but sometimes I ca n't understand the meaning of the words that come ( up and out ) after some verbs . Can you guys tell me ? Our hula impressed many seniors very much . Above all , `` Heal the world `` by Michael Jackson was surprisingly asked for an encore ! I was always frightened when I heard this music . FUJIYAMA is a roller coaster . FUJIKYU HAILAND has lots of roller coasters . I do n't like roller coasters , but I went there with my friends . It 's called Ramen in Japan and is very popular . Ramen has many flavors . They are soy sauce , soybean paste , salt , and tonkothu . I like tonkothu the best , because it 's poplar in Fukuoka , where I use to live . Tonkothu soup is made from the pork , and the taste is rich . The last Japanese food I ate in Japan is tonkothu ramen at Nagoya airport . My sore throat was cured , but I have a headache and a fever . Are you familiar with riverdancing ? Riverdancing is an Irish tap dance . My sore throat has not changed . The hero in the story is n't the typical character in Korean dramas . My hobby is watching American soap operas . Watching American soap operas really help me to study English . I 'll watch ' Desperate Housewives season 3 ' , next . I 'm traveling Mie now . Trick or Treat I want to know if this is a correct sentence or incorrect sentence . But I am still waiting . So , I want to go abroad to learn how to prepare foreign food . Charo is an english learning program by NHK , a Japanese broadcasting campany . The radio version is little bit longer and more difficult because it has more details . The cartoon and book are good for me and my daughter . When I get tired of studying English , I just listen to the story . That 's why I believe It is the best program . Now I 'm watching a football game , and I 'm relaxing . It was about the ages from highschool to university . I basically agree with this thought . I 'm very busy everyday because I 'm preparing for Koshosai . Would you correct my grammar Please contact me , and become a friend . I wonder if I should update the firmware of the wireless router . They were delicious and awesome ! ! I have a long hair and blue light eyes . I 'm tall 1 . 63 cm maybe ; my fisical is normal - thin . . . bhe I hope to learn something from your corrections . . . Vanguard Princess He is a MacGyver . This week is the Buddhist Lent and get one day off on Monday . I 'm currently on maternity leave , since Sep 2009 . I love steaks so Australia is HEAVEN . I know some of my friends work about 14 ~ 15 hour day . I went to the 2010 Iwate Art Fest at the Iwate Prefectural Art Museum , with my friend . I got the pen and a postcard at the museum shop . I have many hippopotamus goods . Mid - term exam day , family 's birthdays , writing contests . . . This year , my mom wants to get an electronic bible . life consists of many trivial things , and those things built up life . I bought it a few years ago . But I had forgotten I had bought it ! Last night , I notice the card and I tried it . The card was written in perfect message for me . I wrote many New Year 's cards to my friends and relatives today . Here in Japan , New Year 's cards are really popular . On the other hand , Christmas cards are n't as popular . You know , it 's the most famous American animation . We Japanese speak English , I hear like Words of Space . I 'm so exhausted , I just finished teuk kong mu sool which is called martial arts ? ? ( I do n't know how spell it , , , ) I had highking on my neck by the guy who is 5 years younger than me , , , I think that foreigners are open minded to everybody , so I can make friends easily . Now I 'm learning English and Polish at the university . Unfortunately , you ca n't understand the [ useful ? ] of the song if you do n't speak french because the lyrics create the [ variation ? ] ( but listen to it anyway ^ ^ ) . Everything in the outside world was scary to me , and I could not move at all . He is 9 years old now , and still believes in Santa Claus . I must change to Santa Claus in secret at midnight . Lately , my parents always complain about my learning schedule . I feel jealous ! A screw is difficult to take off and took about an hour . There were n't many bicycles . A lot of big and high buildings were there . The hotel we stayed was gorgeous . Then put in the backpack and we climbed the mountain . And in the train I came across a man and he asks me what train Jhon got on . What I came up with is , `` ( John got on ) The train earlier than this by two trains . `` Does it make sense ? I received a telemarketing call today . Nowadays , I receive them every day . I have n't put my coat away in the drawer yet . I 'll sleep now . January 14 ideal : What 's the ideal educational style for American people ? ( for ? ) basic : I thought I needed to study basic English grammar . Finished ! : D Otsukaresama Everyone ! XO ( btw how do you say Otsukaresama in English ? ) Unfortunately , this weekend was very warm , spring is coming early . It consisted of two parts . In the second round , Manny Pacquiao , the pride of the Philippines , K . Yesterday , I read a documentary about the `` blood diamonds `` or `` conflict diamonds `` The diamonds which from the civil war country was called conflict diamonds , or blood diamonds . But in 2003 , diamonds company , civil society group and governments around the world began an effort to stop the trade in conflict diamonds . The diamonds from the civil war country will not be sold in the international market . Although there are many illegal diamonds traders , they bought the conflict diamonds . Because it is the first time that I went on a trip with my boyfriend , I was so excited . If you visit KOREA , I strongly recommend visiting geo - je - do ( there are many fascinating spots ) . I have to prepare for the class and I have new students whose names I should remember . April or Spring is the time when I 'm very busy worrying about a lot of things . . . . So , I would like to be find a language exchange partner My own dream across the sea . I and my friend went to nearby lake and we swam and walked in forest : ) There are many trees : D and it 's green and brown : ) At this lake there is a beautiful beach . We think we want to stabilize our salary . I think companies have a responsibility to stabilize our salary . I have to work until at 6 : 00 and than I going to the English Academy from 7 : 00 until 8 : 00 and then I will go take care of my daughter at my mother in law 's house . That will help him / her cultivate the ability to concentration . I am not the kind of person who would want to be a professional housewife ; however , I feel happy every time I make the house clean and tidy . I felt very tired and stressed , but it was very interesting . That 's surprising is n't it ? ' A person whose name is written in this notebook shall die . ' due to the movie `` Notting hill `` What is cultural ? It is defined as the civilization and customs of a certain race or nation . How can we avoid it ? It 's easy to assume that there must be a scramble and I 'm not used to doing things like that . I love The Stiff Dylans ' version . Reading practice What a stupid introduction lol . It is really difficult even for me as a native Japanese to get used to it . to begin as a beginner but I just waited 15 minutes . Hi = ) ) ) I want to continue my favourite dorama list ! I was shocked so badly after I watched this dorama ! Ok , to be continued . . . = ) Yesterday , a T - shirt was enough . Before I go to bed , I should prepare my quilt . If I do n't , this evening I wo n't sleep well . Today I receive 4 clothings that I bought form taobao . He diagnosed him with a cold . He is cranky , so I have to hold him all day . I started learning the use of the Excel application on the first day of this month . I spent 9 months in Manchester with my host - family so they 've become like my real family ! Just went to the gym , and as usual I am working now . Go straight along Peter Street and take the second turning on the right . Then , turn right and go along the road until you get to Piccadilly Circus . I had a lot of nightmares last night , because I watched the horror movie `` ghost ship `` before going to bed . And I 'm a beginner in Chinese . Now I 'm taking class called Children 's Literature . We are planning to repaper the walls , redo the floors , and change the cabinets in the kitchen . It 's named Bianchi . Bianchi is an Italian maker . What 's the difference between them ? `` Gheimeh `` is a kind of `` Khoresht `` ; `` Khoresht `` is a meal that consists of meat , vegetables , and beans or grains . Because of this use , some people called `` Gheimeh `` a dead people 's meal . In the next stage peel and cut tomatoes and fry them ; you can also cut some mushrooms and a green pepper into small pieces and add them to the frying potatoes , then add salt and red or black pepper to the mixture . First of all , spring semester has come and I 'm taking some classes , However , my speaking and writing score wasn ` t good . My colleague 's space was so impressive . I ate Ayu , river fish in summer , tofu , white beans and sashimi . This photo is of a place where I usually go fishing . These laboratories contents have many subjects and they are hard . I have just finished my SPM which is the exam that must be taken by the 17 - year - old students . After that , some of my friends are going to pursue their studies in colleges and universities . There were lots of friends ^ - ^ When my room is tidy , I feel more energetic . Today , I consulted the agency who are involved with students studying abroad . The councillor said that it would n't be useful to study abroad for only 2 weeks . I stay with an Italian family in Canada . Reference book I Bought shoes . I 've always wanted to buy shoes to wear for spring . I bought songs by Ann Triskel at the iTunes store . without a title Can it be interesting ? But the temperature was terrible , Because summer starts in a week . When we arrived at the aquarium , we were very tired We are not given any time for debate or questions . So he is not popular with students . A month has passed since the big earthquake has hit Japan . All we can do is to keep donating money to them and spending money to buy goods from the regions suffering . When someone ignores me , I 'm hurt . I think being hurt is not bad , it 's sometimes necessary . A hot day ! The temperature is 35 degrees . How I wish I can stay at home forever ! If I had enough money , I would buy many bags and clothes , but I don ` t have enough money . Because I must save a lot money to change my car . I have stayed home almost every day since summer vacation began . . . I 'm an entrepreneur in Japan . Some people use their real name and others do not . After a short walk in this round market I went to a coffee bar to get a coffee . For example , Naruto , Keroro Gunsou , Evangelion . . . and more . I downloaded Merriam - Webster dictionary , English magazines , and an English word book . Then , I came to the conclusion that I am experiencing difficulties because of the difference in cultural background . Although it was the first time we had made one , it took us only thirty minutes . 2006 Completed Japanese instructor course 420 hours at Hiroshima YMCA 2008 Had experience as a Japanese instructor in Melbourne When we borrow money for someone , _ we should determine to precise date of repayment . `` No smoking `` signs surroundour daily life as we walk in the streets , shopp in the malls , travel on buses , or watch movies in the cinema . I 'm so sorry for not being as active as the past weeks here , but I truly am busy because it 's one week left to the Persian New Year ( Nowruz ) . People get really really busy from about two weeks before Nowruz to two weeks after it . I went to the National History Museum on foot ! The police said , that they evacuated the houses of two old men . In English class , we are reading an essay which is about the moon 's mystery . When it is near the horizon , it looks bigger than when it is overhead . So , we get impression that the moon is big because its real size is bigger than expected size . Because I am not satisfied with my circumstances or myself sometimes . During the test we needed to read an article and answer some comprehension questions . I think the context was too sophisticated for me ; like `` message from the cultural elite : read , you morons , and eat your spinach while you 're at it ! `` My friend said I did not understand because I do not know the American culture and it 's kind of a joke . I am quite excited to have my own lang - 8 username . * * * Dalian is a beautiful city with lots of delicious food , pretty beaches and warmhearted people . I got a used notebook computer to study the structure of the PC from my friend , but it 's broken . It was heating gradually , and the operating system was shutting down repeatedly . I have little experience dismantling PCs , so I do n't know what to do . I have to buy books to study . However , I feel sad because I am going to leave my school that I have stayed during five years , and I miss the people and everything that has happened in this school . I appreciate the memories and the wonderful favors in my life . I think the second way is the most suitable for me . Previously I worked as a full time employee for the same company as now . It 's much simpler than you think , inspector . or is he serious ? One of my friends told me that they are just looking for japanese girl because they are pretty and easy to play with . I 'm sure that sometimes it 's true . An old film , `` Phantom of the Opera `` was played on the screen . I wonder whether I can live in a foreign country or not . Today , I begin to keep my diary in English . but is it really ? According to the program , he still lives in the small town where he was born and lives like an ordinary local person , even though he is a billionaire . As we know , there is no special machine we can use . Last weekend / a vegetable yard and my small pots of plants . I 'm going to Tokyo for a job hunt . I am going to go NY next year for my private exhibition , so I have to learn English . However , I 've succeeded in reducing my weight by ten kilograms within half a year . Actually , I am keen on wearing smart clothes and want to look cool but it is crucial ( ? ) for that to have a good shape of my body . I am goingshopping today . I ca n't wait . Second time , I should use `` glad `` . Somehow , I am writing my dairy now , it may be a good day today . ( ? ) Because not only is it hot outside , but also it 's cold inside . And electric power needs to be too cool in rooms that make more CO2 . I can do this but can you ? I would never lie to you but you do n't believe me . Tell me what I should do . I miss the times when we were happy . I have been looking for a new house these days . I would like to try being an actress in Hollywood . So the principal decided to suspend the first grade class . I also work in an apparel company . I found every sentence I wrote usually contains `` I `` , can anybody suggest a better structure ? We would take a ride every Saturday . The winter coats that I had dry - cleaned were needed again for today . I cooked two salads . They were so juicy and sweet . The afternoon is very quiet , I can only hear the sound of typing keyboard . but , do n't call me neat . I 'm not neat . I have n't been here for more than a month because I have no computer . So , I am starting on a diet where I cook traditional Japanese food . Today 's menu was Udon and seawood salad . I was amazed that so much Japanese food really does n't need oil . I think that this is because the earth is dying . The issue of global warming is getting worse and worse . The last day I logged in was . . . . . . They help me to live and to change my life . I 'm suffering from a backache . My favorite is LINKIN PARK . It 's good season for autumn leaves ^ ^ Peco is extroverted and has a passion for table tennis . Thier characteristics are very different , but neither has real talent . I felt that I could n't do that , so I remained standing . We call them , `` Thunderstorms Guerrilla `` . First , I will turn off my lights frequently ^ ^ Recently , I 've been getting very sleepy . , What reason is this ? There might be some Japanese people who would come up with a Korean drama , but it 's not that Full House . The picture is from a scene where Michelle says `` Duh `` to Stephanie . Maybe in this sentence , the man will be suspect , not the police . . . right ? Most Japanese People can not speak English . so I want to work for a software development company But I think I ca n't take advantage of what I 'm doing now B : continue my studies and try to become a researcher . I was a sexy pink cat with my friend . ( we wore the same costume : ) ) I think the Japanese cherry `` Sato - Nishiki `` is the king of cherries . My home town , Yamagata , is famous for producing cherries . Once , I ate another kind of cherry , but I realized that Sato - Nishiki is better than the other cherry . . . JOB SEARCH I make customs documents . I have no interest in it . It is OK to make customs documents and make reservations for shipments . I want to do a more creative job . Many friends often tell me that I must change . . . Change what ? I was talking about a name with my friend . Actually , this is my first time that I have stayed in the United States , and I missed Japan during the first few days . It is dedicated to the roots of the Japanese and is a very solemn place . I chose espresso ice cream and it was a right choice . Today 's theme is `` room fragrance `` , because I bought some room fragrance yesterday . And Rowan Atkinson was nice to the boy . I heard that Fahrenheit is defined by normal body temperature . Recently , ' OTOKO - NO - KO ' are increasing paticularily in Akihabara , Tokyo . On Thursday morning , I took her to the clinic and the doctor prescribed some medicine for a cold . Their conditioner makes my difficult hair easier to comb I 'm sorry for the filthy talk . I feel itchy so often but I wear shoes or slippers so I ca n't scratch them . I turned on my computer and connected to the machine at my company in order to examine the check list . After two hours , I finally processed all of the problems . It 's special kind of relationships - language - relation ( furthermore - LR ) , relation , which based on wishes to communication . I decided So I decided to become a manager and change my department . I 'm feeling excited . They can talk before we know it . How can I enjoy studying English grammer ? ? Actually I do n't like studying grammer . . . . . I wonder how I can enjoy studying grammer . . . Our house is on the 7th floor . I then pressed the button for the 7th floor . . . His mother or his family 's maid was already on the elevator ( I could n't see who was inside of it from my position ) . As far as I could see , he was not even embarrassed . But we 're in Singapore . Besides if I did so , he would probably pee on our doorstep to take revenge on me . I hope some peverted kidnappers will take him to their house which has a lot of sex toys , and keep him as a sexual pet forever . I bought many souvenirs . For example ; postcards , ornaments and a lot of table wares . TOday I went to Fukui prefecture . sometime I will go with my boyfriend to watch a movie or walk in the afternoon . Maybe just watching TV or talking with my mother or give my dog a bath . I came back to Korea from Austraila a few days ago to prepare for being an exchange student next year . I started studying English by becoming interested . . . I like listening to the radio , especially late at night . To my surprise , It cost me about 2500yen ( almost 20 dollars ) . Everytime I breathe the dry and cold air , I feel warm , because the smell is familiar which makes me safe . I have studied in Beijing for almost 3 years , but sometimes I still miss home . Yesterday at the restaurant I really had to study English for the TOEIC test but as I was with my friend , in fact I could n't do it . ( My friend would study something as well ) Do you know why ? / But you know , whenever my friend talks to me , I will have a chat with him and I concentrate on talking with him and studying is out of my objective . . . Shonan is in Kanagawa prefecture which is near Tokyo . Near sounds more natural . It takes ten minutes by bicycle . Whenever I want to relax , I can easily go to the beach and enjoy the beautiful scenery and delicious food . Because they stay up with their crying child all night . The gray sky seemed to cry miserably , and the mental energy in my body has been fading away little by little . Another thing in order for you to keep healthy is to cut over - eating in your diet . The parties that out of power are asking the ruling party for a change in government . You can divide people into two groups . Do n't get cold everybody . I went on a business trip to Chiba prefecture . I have to make preparation for my visit to Australia . Training course of business strategy The world will form a necessary combination for you to keep your life going on : ) So many people who said `` I can never live without you `` live without and feel very happy . I was tired and I enjoyed it . It was used the concrete , not the wooden building like the other castles , so it is just the museum inside . The foundation of this castle is the stone wall using a lot of big stones like the other castle , but there are some huge stones here , like the second photo attached . along the road to the top , the scenery was so beautiful ~ I saw many notices on the moiuntain , like `` please do n't go near the cliff as it is dangerous `` `` do n't go down the wild path unaccompanied `` . when we arrived home , I found my skin was burnt bitterly and turned to red and will maybe change to black , hh ~ By watching the episodes , an English learner would not only be able to practice English , but also absorb the Western culture . They are always are the same as before . So , some effective measures have been taken to improve the quality of the spring festival gala . I think most of the time I 'm just studying to pass the exam and never think about mastering it . I know that he isn ' tsick . My friend suddenly called me and said she wanted to have fun at Roppongi because she has a lot of friends there . She had worked at a sports bar before . He is a teacher at a junior high school near my house . On the menu for lunch was chinese food , like a dumpling , dim sum and things like that . Recently my hobby is writing down the line from a movie into my notebooks . And then I memorize the line , and say it . Japanese sauce is made from various things such as vegetables , fruit and so on . Salted fried Chinese noodles have recently become known ( or popular ) in Japan . A typhoon is coming to Japan . Let 's save energy together . I would like my friends to have strong bodies so they can visit me in the future . I read an article today that said if we turn on lights often at night when we are sleeping , that can make us get a bad disease . By the way , it can waste our electricity . Let 's help our country to save energy before we go to bed and help the world . It is called euphemism . It is the euphemism `` when a native speaker says the connected `` t `` or `` d `` sound like . . . Recently , I have been getting ready to travel around the world . I want to help out in biology research and to absorb knowledge about it . First of all , thank you very much for your concern and lots of helping hands from outside Japan . Still I believe Japan 's Defence Force and other rescue teams from outside Japan will never give up finding the survivors . I 'm very busy now because of a essay for graduate school . As I travel more and more , what I find is the tough quality and open - mindedness of Hongkongers . I could get over not sleeping more than drinking coffee . Also , I have n't met a girlfriend . I want to go to Thailand . I can not stop thinking of them , but one thing I definitely can say ; her Japanese was not so good , and the descriptions / portrayals of Japanese ( people ) were very biased ( stereotypical ) to foreigners . Finally , they became friends . 11 eleven 14 fourteen Since my shop is very quiet , I have a lot of free time at work . So I have decided to write all the English words I knew starting with an `` A `` , and then check those at home . The important words are written in red ! Today was `` B `` s turn . I was wondering what is their meaning , because in Japanese , black - bellied means wicked , evil - minded or scheming . But of course , it is idiom for Japanese people . She spoke to me . I was frustrated . In that period , my teammates and I shared joys and sorrows and helped each other . Though after 14 days when our work as a volunteer finished , we would leave each other . Perhaps we would never meet again , but we still cherished this friendship and those unforgettable days . There are staff members from many countries that can talk with customers . They are not teaching English there but customers can learn English naturally . On Sunday , I went to T - place again , but this time with my daughter . My daughter brought some picture books to ask a staff member to read for her . If you have them , I would like you to communicate with me in English or Japanese . After watching the movie we went to a Italian restaurant and chatted a lot XD for me , it might be the most exciting day of this summer vacation I 'm working at a convenience store and it was very busy today : ( I wrote a self - introduction for my friend . They can say `` happy Valentine 's day `` as usuall . then I often feel annoy , because the day does n't belong to me . But other people message me `` happy Valentine 's day too , although we do n't have love ones `` . haha ~ ~ now I feel happy , although I dont have a boyfriend * * but I have some good friends . the last time , we went to a Barbecue restaurant to eat a lot of food . and it 's interesting , a group of obaasan were singing loudly and drinking in the next place to ours . They looked so happy at the day . just some old women , no rose , no chocolate , but happy the same ! When it comes to the factors in successful development of a country , no one can ignore the importance of education , and no one can draw a conclusion of basic factors in the development of a country . Take South Africa for an example , as is shown in the statistics provided by the government of Africa , there are so many families which are too poor to send their children to get an education . I saw a bird knocking on one of the trees in my garden this morning . My holiday has been going so fast I quickly ate a simple breakfast . collecting donations and taking them to the community office before ten . I image what might happen . I think they will communicate using their own words , waving their hands , compare their voice through crying , not just using eye contact . Actually , I was really thankful because they give me fun in this busy life . Then I think if we put ourselves out of our work and life , and give an eye on other people or things around us . We will find a lot of fun in our world . My favorite artists are Avril Lavigne , Greenday , Linkinpark , Fort Mynor , For example Naruto , One - Piece , D - Grayman , Gintama , and Fullmetal Alchemist , and I like Final Fantasy and Legend of the Zelda . The times we practiced were fun , and we took many pictures to remember the best times that we shared being that this is the last time we can work and play together at the anniversary of Chhs . I began learning the guitar one year ago , and I hope I could be a great guitar player as him ! Why do I have to pay as much as 15 - 20 % to servers who just take my order and ask me if everything is OK ? There is holiday on next Monday . I received a call . Often , I try to practice speaking English on this site , but I do n't think my English pronunciation is improving . In the end , Yu - Na won the gold medal with unbelievable points . Yesterday in Russia was the holiday ' ' Victory Day ' ' . First , we went to my cottage and rested there . The first diary I sometimes ca n't answer the questions because I would be nervous during the interviews . I 've been studying English for 9 years . My home 's Christmas tree My 4 - year - old son decorated my house 's small Christmas tree . So the Christmas tree decorations are unbalanced . I gathered a lot of toys , books and my children 's homework . I read a book called `` Number the Stars `` because I am interested in learning about the Holocaust of the Second world war and how the Danish rescued the Jews . To my dear friends who are living around the world now . Please listen to what I say right now ! If you do n't have them , I too suggest you should find out them soon . I hope you will become so happy to get to find a nice partner . We had a fantastic time . We were supposed to go to Stanley by mini bus from Causeway Bay . Afer that , I told the mini - bus driver that I would like to pay the fare of the other 5 members fare with my Octopus card . It makes me feel willing to continue this diary . Tomorrow , I must write and thank the people who watch this diary , and who teach me . I 'm stumped . I just want to say that I was in love with Japan and now , there 's left nothing . My major is English education , and I like English . I 've wanted to learn English for a while because I want to communicate with people all over the world and know their ideas about things , dreams , interests , character and so on . It sounds really interesting . Pendulum - Granite is my favorite song ! Even if I get acupuncture therapy regularly , the cold weather triggers it more often than hot weather . According to the book , we can live long by caloric restriction . It has been shown that when animals , including humans , execute caloric restriction , it will lead to a very active and extended life . It 's a pity that I do n't know how to reply quickly . : ( ( Can anybody help me ? ) Getting to know somebody from a different country is really exciting and surprising . Now I 'm looking forward to an extraordinary February ! my father and my elder brother had to visit to Osaka for business trip , By the end of this month , we must have our presentation to the chief executives . How can I change this status ? No zest , no power to continue studying . Also I guess it 's a little bit hard to find a person for Language exchange in `` Chinese `` here ; however , I still want to give it a shot . . . It 's depressing for a person who has learned English for If I can speak more languages , then I would speak to more people . and my sense of value will become greater . l practiced I learned / studied English at school and since that time I had no practice . I 'm so tired . I can not take consecutive days off and holidays are irregular . I Wan na Enjoy Watching Kid Movies in English ! Melbourne is good city to live in but I hate Melbourne weather ! But this month , I came back to the head office and I took part in the new project . This summer I have little free time . I only have one and a half months off . There is no heat this month . I 'm so nervous . Because I have n't prepared anything for me to stay here That 's all my fault tho . It was my father 's souvenir from Hokkaido ( a place in Northern Japan ) . I also like watching movies and if I have a long vacation , I would like to travel all over the world . These days in Brisbane , for me , it is not an unfamiliar city , because I have lived here for 3 months , but I still feel strange here . Toby knocked over some empty milk bottles . Suddenly Mr Spry 's house door opened , and a man held Toby 's arm . My pronunciation sucks . . . He 's already mastered some of those languages perfectly and is going that my pronunciation sucks . I 've never thought of the way I pronounced things as wrong , Even though I 'm a foreigner , I have to try to make it sound fluent as long He was transferred to the other branch office . I was really impressed and I cried . I have become accustomed to this changing weather , declining temperature and perpetual rain . There is a bizarre phenomena , to you guys it may be really hard to understand . Due to this reason , I can only use prudent words to record my daily life . But today when I logged into my msn , I got the information that Microsoft will not provide blog service to us and hope that we can move our blog to Wordpress . I do n't wanna be lazy anymore ! It is written by Eric R . She took the doll , and called her Rika chan . I visited the Blenz Coffee at Yokohama and the NewYorker 's cafe at Ginza . Recently I notice , that more and more of my students are being late or skipping my class . This course of action is ruining my teaching plan because many games ca n't be played with small number of people . I went to a family restaurant with my friend Mari . But I thought we should find someone to correct us like lang - 8 ! ! Nowadays , Japan is in a very difficult term . Still , many people are missing in last natural disaster and nuclear power plant still difficult situation . . . . . . Do you know the license called `` IT Passport `` ? If you have this license in Japan , you are qualified as a person who knows the basic knowledge of the information technologies . I have to study English hard until I go to the Philippines , Trip to Hundred Island and Baguio ( June ) Because we did n't have anything interesting to do , though It was already 4PM , we chartered a boat for island hopping . Soon after we got inside the boat , great awesome thunder began to rumble and the sky became jet - black darkness . . . The hotel `` Camp John hey `` where we dropped by for the cafe is awesome . but the grave was saved from the Tsunami by a hairsbreadth . In the coastal part of Miyagi , debris lays in heaps here and there , To improve my French , I have to take lessons with many teachers soI have no choice . This is a rule in Taiwan but I got a little nervous . XD im waiting for a heatblock to get warm enough . I 'm sleepy , but I will definitely go . I was trying to translate a Spanish post but . . . I love him . I do n't know why I love her so much , do n't know why I ca n't forget her , I 'm not stupid in this problem , I just do n't know ( or / understand ) why . After eating dinner , I got hungry immediately , maybe I do n't eat enough some foreigners were swimming . Sometimes they are very strict towards us . Thanks for everyone 's help and she wishes you success . I thought the life of University was busy than anytime before when I was [ sitting on the chair of classroom and listenning everything the teacher said . One of the sentence was that the students at a university did n't have free time to play , because the students need to learn many many things and pay more time than before to learn . Your kind support would be appreciated . I do n't know why Keirin , a bicycle race , can not become major compered to Keiba , a horse race in Japan . Fingers crossed . Do You Know `` Job is Shit `` ? The title is `` Job is Shit `` . Neoneat has been writing articles on his site about how disgusting the Japanese working environment is . He is also insulting even strict Japanese office workers severely . For example , `` Japanese workers are weak and dogs of their companies `` and `` I 'm working in better working environment than them . Do you envy me ? `` I think the Japanese government is shit , but the Japanese office workers do n't have any reason to be guilty . The Japanese office workers are working every day for themselves or their families . I read that sometimes Japanese people are cheated in foreign countries , and then lost their money . It contains English reading , English composition , mathematics , physics and a special subject . I am very worried , I was studying 14 hours every day for the past day , I could n't sleep without drinking , I was tried . So , I decided that I will take a vacation after the test to reduce my stress . I wish the pain ( would ) disappear by ) tomorrow ) morning . I lived on the sixth floor . I hope that I can improve my English skills , and I welcome people to give me some tips for my writing . Thanks a lot . When I found out that he really believes that I am going to India , I laughed . A question about grammar I have a question about English grammar in the case as follows . An electric bulb has a filament , but a fluorescent tube has two electrodes . I think `` We usually use a fluorescent lamp , which has 2 electrodes `` or `` We usually use fluorescent lamps , each of which has 2 electrodes , `` is correct . My question is whether the first one makes sense or not . very very bad ! I 'm so miserable , I need to learn English , but I do n't know how to study it . Please help me ! We usually stir - fry it with egg . I 'm not a vegetarian . Today , I will explain why I think subtitles are important . ( We do n't really study subtitles . . . ^ ^ ; ; ) When people criticize , it is hard . . The trips purpose is to learn The sports festival will be held next friday . I met her 1 month ago and I thought she was not speaking English as well as me but now I noticed that she seemed to speak English better than me . I envy her because her English pronunciation was more fluent than when I saw her 1 month ago . I 'm working for a life insurance company in Japan . by pumping these billions in renewables instead of pumping it in I have n't gone on lang - 8 since I went to my papa 's home . because my papa 's home is high in the mountains , I had no chance to check my mailbox and answer your messages . I felt so sorry . I miss all of you so much . When I rode moter bike , suddenly speed down . I was supprised because itwas the first time my mortor bike became in abad conditi Although there are many unhappy things in your life , you must believe there are also more happy things that will make you happy . So do n't treat yourself as a tragedy . Anyway , tomorrow is another day . At first , I thought playing cards was so boring and it does n't make any sense , but in the end , I got to meet a lot of new friends . I thought it was interesting to play cards , which was boring for me at first , but then it gave me the chance to meet many friends who can make my days in New york more valuable ! please teach me ! ! 2 I want to be a preschool teatcher . But English is difficult . . . But I was Kindergarten teacher two months ago . My hobby is watching movies , photography , watching TV , and Karaoke . I like Japanese dramas too ^ ^ Two months ago , I landed in Toronto with my husband and little baby . Today is my husband 's birthday , we plan on buying a cake from the supermarket to celebrate his first birthday in a new country . I do n't know what to say to you right now . I hope we all here will make a huge progress on what we 're willing to learn , and do n't forget to make some good friends . Interestingly , I met Koreans on my way , so we attended service together , and furthermore we were joined as one cell of CHC . Next , if the machines produced goods , there wo n't be any quality in that goods . However , if people made that , people have to make them very hard , and there will be a lot of quality . Recently , farming online is becoming more and more popular amongst young people . What 's more , it is high time that the young should be taught how to use the Internet properly . I went to western Canada on a trip for 26 days with the Greyhound `` 30 days discovery pass `` I like to paint using a small number of colored pencils . Hope make true friends through it and improve my english . I like snowboading a lot . Everyday I just get online and read some articles . It 's already Febuary and my birthday is coming . Last year , I celebrated it with my 7 fairy friends , but I was not happy then . Is it only a physical problem ? Now I get some acne on my left eyebrow and some are near my chin . I google why I have these wierd things on my face and figure out maybe I have a hormone disorder . ( Is this because I do n't have a sex life for a long time ? I 'm in my friend 's room in Yokohama now and listening to music . Because the government started a campaign called ' Cool Biz ' about five years ago to save energy . But I was surprised about it , so I could n't say anything . She told me that the company wanted a few managers from all areas in Japan , so she called again to tell methe day of job interview . Sometimes I go to a big supermarket called Woolworths in town but it 's very expensive . Do you know anywhere I can buy food cheaper ? Do you believe that there are some ghosts in the world ? I love chocolates more than bf . Last picture is green tea with milk . I wanted to take a mock interview , but before I tell it to the tutor , she showed me a ( ? ) text . It is a very delicious food . he is from Australia . My English is getting worse and worse since I graduted from senior high school , so I need someone to help me with my English . My luck was `` Kichi `` , which means so - so or normal . a few minutes ago , I said to her , `` Shall we go to eat anything ? `` She said yes . An interesting phenomenon I found in `` lang - 8 `` . If I 'm wrong , please help me correct it . You often hear this question being asked in Korea . Koreans like to classify a person 's character by blood type . A types are usually narrow - minded . They write down what or who made that day bad . Their character is also tough . They usually have analytic thinking similar to a dictator . They have many friends . Because we have two children who will have their entrance examinations of University and High School soon . Recently , I 'm studying English . Today I answered a question . The question was `` When you 're feeling sad , what do you do to feel better ? `` My classmates and I discussed death penalty in law class because our teacher could not prepare learning packs for the seminar . Ono was taken to a police station under suspicion of violating the Maintenance Public Order Law . It was the commemorative party for publication of Karoku Hosokawa 's book , who was a political scholar from Tomari . The prosecution and the Court ratified the `` Black Trial `` made up by Tokko Police . I found out about this site from a magazine yesterday , and so now I 'm trying to write something in English . The former sounds like `` it 's OK `` , `` I do n't mind it `` , or `` forget about it `` . I never been outside of Japan to anywhere except Hong Kong . Definitely it remains memorable . Because it was so hot and humid , just staying in the hotel was irritating enough . However , there 's lazer show in the night . But he is pretty cute for me . Anyway , I will write daily as much as possible to study English . On wednesday I saw a movie with my mother , my friends and my friends ' mother . Themoviewas very funny and impressive . I 'm very interested in expressing my thoughts in other languages . I figured out the reason . You 're very thankful to me , because you also like to learn other languages . You were singing a song of Guns ' N ' Roses . One of my friends invited me to go camping in Saitama prefecture . Furthermore , I 'm planning to go camping at the end of next week with my university friends . I have one daughter and one son . I remember that my mother said `` you ca n't beat your children . `` I 'm appreciative of my mother 's efforts to raise me . Please help me . I live in Tashkent city , Uzbekistan . My hobbies - basketball , listening to music , playing bass , and reading books a little ; ) I hope to make more friends throughout the world , and speak English very well . Should I introduce myself ? Anyway . . . The Japanese government right now is reviewing its nuclear energy policy due to the Fukushima nuclear disaster . Under The Basic Energy Plan , nuclear power will be Japan 's `` core source of energy `` in the medium and long term . And I want to try writing about India and its culture ! ! ! there are 6 preliminary matches of GP . My favorite program is last year 's performance with the music ' the Moulin Rouge ' in which yuna kim set up a new record in the short program . ( figure skating is divided into two sections , short program and free program ) I am going to write about arranging a meeting . I think that they met their fiances , fell in love , knew each other well and decided to get married . My older sister sent me a picture of her and her husband . I was so nervous . A friend of mine said something about the hidden messages in songs . I 've never thought about it . Have you ever found a song with a special hidden message on it ? She told me that most rock songs have a hidden message , what do you think about it ? Since I have never been there , I 'm not sure what I will do in Seoul . Recently , I began to read and listen with the iphone . How can I get grammar skils ? English is very difficult , but I have a fun time when I study English . My aim is to write a diary every day on Lang - 8 . The main purpose of this trip is attending a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm going to Las Vegas today ( for no special reason ) . After I put my cat in the kitchen , I went back to eating my supper , until I noticed that my cat was behind me again . It 's the first time I heard of this kind of website which I think is a great help of language learning . I like to read novels and watch movies which are very ordinary interests . We , an audit group , are sending the Accounts Receivable confirmation letter to overseas customers . Hello , my wonderful friends . Today we had a special class at my school . instead of hiragana . . . But I have no opportunities to meet with any so I checked a website that introduces Japanese people to foreigners . My main object is to learn and improve my English as much as I can . So why am I going to the Philippines ? There are three reason for this . Could you paraphrase the meaning ? Is is kinda `` I should 've been more careful about my . . . `` ? He also said that the first Japanese he had learned was in the menu of the YAKITORI ( Japanese food ) restaurant ! Every time I look back , I am very surprised of how sensitive ( or wussy : - ) ) I can be . I have registered here only today and I was surprised how great this site is . I saw how you people correct mistakes . Now it 's so good to make mistakes , because I know you 'll correct it , so I will improve my English . Thank you ; ) When it snows heavily , trains sometimes stop or delay . Most of my friends do n't use their cellphones for this long , but I 'm not good at using electric things and also I do n't like reading directions either , so I tend to use my cell phone till it gets any damaged . Well , but I always fell happy , somehow fresh once I change to new one . I intend to meet our second eldest son at the end of this month . Unfortunately , recently I have made a lot of absent - minded mistakes because I was very busy . My free time has almost come to an end . It is five minutes to eight now . I received an A or A + on all subjects . Taking this opportunity , I decided to study harder . Do n't know when I 'll be allowed to use the computer again . I 'll tell her to raise my grade a little and next term she can lower it . Any way the rest of the day was kinda fun . I already explained why . I wanted you to know why I 'll be gone for a while . I had been lying down at the poolside for 6 hours yesterday . It was not so shiny yesterday so I did n't notice the sunburn , but now my skin has become awfully red . In addition , it 's bad that I slept last night on `` Igusa `` , a Japanese rug made from grass , so my sunburn became worse by rubbing ( ? ) . Ponto - cho is a street famous for good dining , restaurants and bars in particular for night time . It 's Labor Thanksgiving Day today . The devil felt she needed the heroine . But when the heroine saw that the devil had lied to and fired another staff member , So I resumed writing in Lang - 8 . If the band was lower than that , I think the road to the goal would have been much further and my departure would have been delayed for a few years more . I 'm a Chinese girl who lives in Australia now . + G ' day + This is my first time using this kind of website that my friend recommended to me . Therefore , I 'd like to practise my English with you guys and learn something about French . This is because the unemployment rate is gradually increasing and many international students from South Korea are returning and actively job seeking . Now we are gathering donated goods and practicing music . A year ago , I was n't interested in Canada . Other picture is New Years hors d ' Both of these are Sakura flavored . I know that ghosts do not exist . Tsunami killed many people and destroyed villages . Thank you so much . I could n't go to school today . Recently , I enjoy writing my diary in Engilsh . But I always do my best to communicate with foreiners foreigners by using expressions the best I can . . The world is n't equal , and the inequality in life is continuning . The Mid - Autumn Festival is comimg , and may everyone have a beautiful and happy moon festival ! ! Recently , I 've read a book written by a mathematician named < beat the dealer > . So I went downstairs to eat breakfast , and I checked my email . This is a good way for me to get rid of stress . Because I am an office worker I seldom have a chance to exercise on weekdays . But I try to exercise for at least 30minutes on weekdays except on Monday and Thursday . Because I go to Korean class on Mondays and English conversation class on Thursdays . We usually have a good relationship , but sometimes we have a little trouble . Also my family believes in me , A few minutes ago , the announcement in Dalian airport said , the flight to Shenzhen will be delayed about 2 hours . Laborers get more power to protect their legal interests . Until now I have studied Japanese and have traveled around my house area ! To make friends , I know that I have to speak Japanese well ! my English is still terrible , but I will write dairy day by day ! and then when my Japanese class will be off to beginner , I 'll write this diary in Japanese ! ! My first time to write an entry on Lang - 8 . because I decide to immigrate to Los Cabos , Mexico . `` Recent research has shown that children are more relaxed to study than ever before , since the light education policy was introduced a decade ago . I am a Japanese college student studying English . Lang - 8 is a platform for multi - language studying by mutual assistance . With the platform , you can correct mistakes in people 's articles , give them your advice , to help foreigners to study your native language , while you could get a good feeling by helping others and get help from other friendly people . Because your journals maybe refer to your privacy , the study platform allow you to select who can read your journals , for example Internet users , the Lang - 8 users and so on . My grandma said that holly ghosts protected me as my guardian and kept their eyes on me during my birthday . Because my life is individual and joyful . I am currently attending a university in the U . Actually , I finished all of the classes except an advanced English class . When I lived in Japan , playing the piano and going to my favorite places with my husband were best way for relieving stress , Of course I like talking with my friends and going shopping and and so on . So I have to learn these words before I start the second one . We have ten levels and a staff member told me that the four classes from the top are ranked the highest group and these four classes use the same textbook . walked there holding to my brother 's shirt in my childhood . There is a piano that my parents gave me in my room . One of the main dilemma goes : should I marry someone who is similar to me or different from me ? Marriage is an important thing for people where we choose someone to live so intimately for such a long time . Therefore he had the nickname `` Dokuganryu `` , it means one eyed dragon . It tastes like good beef steak . Those chaos , confusions , depression . . . It seemed like it was never going to end . And I did n't have a clue . This is the first diary for me ! This theme came up after The Wall Street provided complex financial products that led to a worldwide resession . I wonder whether CEOs should have limit salaries or not . However , if the company has debt and will go bankrupt , CEOs should have limits on their salaries for the company and employees . we want to make repairs ( or overhaul ) , and buy new equipment . I feel that there are many mistakes ) ) ) ) I entered university in Osaka . Of course I sent a message for my English teacher . I 'm now studying English . I want to make friends with more people from other countries and I learn English . There is not a cloud in the sky . Actually , there is the nice beach that I can get to by running ten minutes from my apartment . I could see the really beautiful view especially today . I am going to go to the beach again after writing this diary and visit a cafe where I can see the beach in order to study English . Studying should be comfortable , should n't it ? ' Our case is not a Chernobyl , and the accident does n't have any effects on those of us who are living near Tokyo . ' as of March . But I dont like to study grammar , so always use simple words with broken grammar . Please check my writing to help me ! ! Because my parents always spent the weekends for their hobby instead of spending it with us . I will pay $ 85 tomorrow ! I cooked a pie in the microwave , washed some salad and fry an egg every day for my lunch . To my surprise . When I was in elementary school , I wanted to be a teacher . Because mathematics usually have definite answers . I ate noodles and it was to my taste . Therefore , we have decided to offer some discounts for a period of time , and provide interest free instalment for a certain number of customers . Like every student in China , I have studied English for 10 years . I agree with them now though . When I watch CSI , I ca n't understand what they say . Taking buses , going shopping and chatting with friends in English are my dreams in other countries . There are beautiful varieties of dolls in that country . It was weird for us to clean up stuff like her friend 's old letters and cards . I learned about ' present perfect ' and ' present perfect continuous ' today . I 've been very confused when choosing between ' present perfect ' and ' present perfect continous ' . Because my eyes were itching . I am very comfortable ! Therefore , I 'm going to try to write journals in writing style from now on . Also some high schools or universities are very difficult to enter , due to the exams and competition . We actually call the cram school ' ' juku ' ' in Japanese . However , when we look up the word ' ' juku ' ' in a Japanese - English dictionary , it says ' ' cram school ' ' . My online English teacher told me about a popular sweet from the Philippines . So most of us laughed at him , and looked down on him . Maybe you also can find more advantages of the big gray wolf from the cartoon . professors ' announcement or the materials that he posts for the class . But at the same time , I wanna master English and go to restaurants to talk with my co - workers . Tuesday I was at my Japanese class after work , and I was REALLLYYYY tired since I only slept 3 hours the night before ( hard to go from night shift to day shift in one day XO ) . ( Think with a twisted mind if you still do n't catch it . . . ) Trust me , I was redder than a juicy tomato . If I could have hidden between the glue and the floor I would 've = _ = The even funnier part was that the teacher did n't understand and made it even worse , so afterwards when everyone calmed down she said : The owner of horses have to select a strong , able horse and make him into a race horse In order to be a race horse , he needs parents who were race horses . The Special sauce was made with Go Choo Jang , and a little vinegar . How about Oyster food in your country ? The price negotiation was tough but they finaly offered me a good price . Can you imagine that a man can control the weather ? In some Tribes of native Americans , they are given names which are derived from a vision at a certain age . Then , their synod or chief endows them with a name in accordance with their vision . Now that it is seems that topics about native Americans are consigned to the dustbin of history . If anyone suffers from migraine , how about drinking herbal tea ? I recommend it ! We went shopping and bought pants and a jacket . To better act this drama , we practiced half - hour every day for about three weeks . when we playing , I was very nervous . our drama was very popular , and we won the NO . 1 in my company . The other day , May 8th , I went to the fair trade day festival in Marunouchi and it was one of the greatest experiences I have ever had . ( The ) Healthy and tasty foods , non - wasteful products , and organic products and clothes were very fascinating to me . And also I was strongly attracted to fair trade products because most of them are high quality . Of course , I love cheap , fast fashion like forever21 , H & M and so on . Please forgive us . This test is very important , it is essential for me to become an exchange student between my university and Florida State University . I like to read gossip news about American celebrities . Lately I 've been reading her gossip news everyday . So , we were quite a bit worried first , but finally it was proven unnecessary because they were very well accustomed to the car itself , as well as dealing with risky situations . Anyway , It was very far to go to our destination - the eastern beaches ( kangreung ) - from the city ( seoul ) . I am really pleased by it . The lyrics written by him are easy to sympathize with . My cousin taught me how to see my friend 's sex or native language at Lang - 8 . I can see my friends ' information by myself . I will try my best to do it , trust me please , haha . I am sorry for the earthquake in Japan . The stalls sell shaved ice , apple candy , Yakisoba , Wataame and so on . Of course , there are game booths too . In addition , we can make friends from different universities in the club . They caught clams in a full basket . Apparently , it can be said that they copied the concept from the game . I want to pass the exam . Wonderful ! I finished my exam yesterday . It 's so agony while preparing the exam . . Although the exam has been over , I worry about my result . Having this exam again is what I do n't want . So ( therefore ? ) , please let me pass the exam . You need no crystal ball to know what I did next ; nothing at all ! That does n't mean I did n't care about my exams at all ; I always checked my answers , I could n't help it ! We were allowed to take the test sheets with questions home and the answers were published at a website exactly one hour after the exams had ended . If I screwed up my French or Maths exam over the next few days , I would definitely have to do a resit or in the worst case : fail . Of course , it had already passed my mind a couple of times before , but now it was serious ! To make matters worse , I totally lost my appetite the following three days or so , so I ate nothing more than one sandwich and some crackers each day . I got something I call the ' ' vacuum cleaner - syndrome ' ' . . . I can use skype & yahoo messenger ! Today picking many Potatoes . they do n't have practically any friends . because I was disobedient . that 's why I have n't strayed far from the right path . We played soccer and Wii sports . I have two way to learn vocabulary , one is to read DUO 3 . 0 books and the other is to read the simple English news site every day . I was not just moulding raw thoughts into a linguistic form , but trying to produce new perpective to view things . It can possibly give birth to some deformed or a lateral thought ! Then I might need to wear new glasses to view another world hidden from ordinary Japanese colored glasses . Although Chinese is a little difficult to learn . . . it is an Aussie tv program , you know ! Yes , we can see many celebrities from many different industries such as films , music , literature and politics there and we also can listen to their interesting interviews . No way ! ! ! Also it is true there are many celebrities who are quite defensive of gay things . I can correct articles that Japanese studying users write . Thank you . I should spend my time efficiently . bad : fuck ( lol ) It was so delicious . I enjoyed . I like it because it is good for my health . Order is the longest book in the Harry Potter series . The Japanese government told the president of ANA not to allow the same problem to occur . I 'm going to go to Fukuoka tonight . I really do n't want to stay at home during winter holiday . Tonight , I have an appointment with someone who bought a computer from me at the restaurant . I went to the library to study physics because of an upcoming examination . My instructor suggested that I read a good essay written by one of our classmates from Quwait . My pronunciation was really bad , and it was very hard to say water . In Japanese , it is difficult to pronounce ' water ' , because we do n't have the `` w `` sound in our language . In my neighborhood , the electricity has failed . This happened shortly after the earthquake . I logged in tolang - 8 for the first time since May 01 2009 . afternoon . Recently , I have n't studied English because I neglect it every day . But , I restarted studying English since today . Most of Indian people are Hindu , so they do n't eat beef . It is unusual to use meat and fish for a meal . I stayed there for 10 days because I got the swine - flu ! I had almost a 40C fever , and could n't get up . It was very cold this morning , and I found him trembling ! I think he will be trembling tommorow morning too . But already four days have passed ! Their messages encouraged me very much . Let 's go boating on the sea . Wo n't it pleasant in the cool breeze ? Sincerely yours . I 'm not a psychiatrist , so I did n't know how to take care of the patient . I 've taken care of people who have had depression , so I can handle them , but it was my first time to have treat a person who has bipolar . I 'm in Vancouver . I am in Vancouver . It 's frustrating that I ca n't speak English well enough . I met my friends I had gotten to know when I was a university student I enjoyed talking about many things and drinking with them . Though the news may create argument , I felt very happy that a woman who had longed for a baby , finally had a baby at last , at age 50 . Probably in our time , the definition of being a mother may become nonsense . There are several battle scenes ( not as beautiful as before ) . I was nine years old and studied in the fifth form of Russian Secondary School , in a small town . After that I studied English at college , if you can call it studying . : ) ) We had only 36 hours of English lessons over the whole four years of trainign : O I would have most likely called it a revision of I learned at school . Recently , I played a game called `` Mind10 `` with a co - worker at break time . I say `` Are you yellow ? `` , and look at everyone 's face . On the third day , it was rainy , but we went cruising I had been very impressed . he is very similar to me . Mabe a lot of meetings make me stupid and foolish . cause , will is similar to me . My hair color is brown . However , I had some concerns about my fitness and health , so I started to work out . The first place I picked a wallet up was in front of a shopping mall which is near my home when ( while is better ) I was going to my work place ( work is better ) . Nowadays , I 'm so terribly sick of lacking money . . . Now I 'll go shopping in Harajuku . but my next holiday , I am going to Akihabara with my French friend . thank you for reading my diary ! I will compare my sense of values with foreign student 's and January 3rd 2009 Actually I had taken such an injection when I was 10 years old . Encountering so many supernatrual things at the same time , the situation of my brain was kind of touch and go . I did n't speak to myself too often , just once in a blue moon , but be prepared , something was definitely wrong . `` It 's not my day . . . `` I whispered , `` I 'm just too tired . . . `` I want a Korean - Japanese dictionary so I will understand to the words to their songs ! I 'll stick to study English in future ! ! I have just finished cleaning up my room . My supervisor told me that it is tough to teach students English . Although to leave my city is very sad and I do n't want to live apart from my family or friends , I think this chance and experience will make me strong . I can imagine the situations and dialogues through the characters motions and expressions . So she recommended the drama to me . My son and daughter take care of her mainly . So she is cute . So I think it is best for my request She said `` It 's like a home drama in America ! `` Today , I went to a Japanese super market . I went to school ( ESL ) early fast time today . My class is Pre - intermediate level . There are Japanese , Koreans , Brazilians and Chinese students in my class . During this three days , I will will be in training at work . Today is my first day of training . But to tell the truth , the reason why I love her is unexplainable . It was terrible ! ! however sometimes I feel lonesome during the night so I always listen to music that I love I wish everyone a happy time on the Valentine 's day . . . I remembered my trip to France three month ago : ) I thought he was a young lady when I just saw him from behind . But he was a little different from before , because this time he was wearing a green wig . First Writing As the title said , my new car has arrived this afternoon . Of course , it took me about a month . ( it 's two times longer than studying in the academy ) I 'm studying the other subjects by myself . It is a samurai movie . The main character is Ichi who is a blind girl . I have some questions . In our university there is a tradition . Next , the fourth grader plays the role of doctor and the fifth grader is the patient . When we take this examination , we are all very nervous because volunteer 's play role in patients . There may be inappropriate expressions . . . But remember , remember to go home to chat with your parents , to cook for them , to eat with them etc . My favorite shampoos and treatments are `` Dove `` and `` Pantene `` ! ! ! ! My family have managed a liquor shop for 40 years . Then he died 65years old when I was in the first year of elementary school . I can correct your Japanese diary a bit . They can sacrifice theirselves for the family 's happiness . Attending my friend 's wedding banquet I attended my friend 's banquet on October 3rd , which was also my 20th birthday . We could n't find the restaurant for 30 minutes , because neither of us has a sense of direction . Finally , we found the restaurant at the last minute before the banquet started . I was always scolded by my art teacher , because the picture I drew never looked like what the art teacher wanted . I hope she has happy life with her husband . I 've posted my first diary for half a month , but to my disappointment , it Im really excited right now but , at the same time , I feel empty . . . . I have a hamster . I think her name is very cute . It means flower . It makes sense though . Most young people have goals like fame and financial security so they tend to study for the sole purpose of their career . Recent , I played bowling . If only we could be delivered from this enormous amount of homework ! I may sound silly , but I love every lesson ( except Physics and Chemistry ) . . I am afraid that it seems I am falling in love . I 'm wathching a Japanese film called ' Death ote ' on TV . The film is based on the popular series of comic books of the same name . Both the investigator and the criminal who uses the notebook take center stage . So my Waterman fountain pen has irregular ink flow . ( ? ) I studied my English 4 years What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitsubishi and Mazda ? So please check and correct my diary and please send me a message if you have interest in Japan , Tokyo , me , or whatever ! I am sleepy because yesterday 's seminar was harder than 2 days ago . Separating Apollo with your teeth is sort of common memory among us ! I tried to start the session in safe mode and after a couple of attempts ( twenty minutes or more of waiting ) all seems normal , until I saw an error message that warned me about an error with the NVIDIA graphics card and its drivers . I am visiting my daughter 's home in Toyama pref . I have problems with building constructions , free conversation and fast English - speaking . I attached these pictures , please view / do take a look them . I was thinking of how I saw it without my glasses while wearing only the 3D ones . I have no power to continue writing . so today I am not writing anything . Recently , I 've been reading Alice in Wonderland written in English . I am learning in a Medical College now . There are only seven boys in my class of 30 . At first I thought that such a class might be boring , but in the past few months my life has changed . They are all very humorous . First I want to introduce our hostess Bin . I call her Boll - piging . When she begins to talk I laugh because she will always say something funny or interesting and she is a very cute girl . Yesterday afternoon during PE class , when we started playing a game , she was still carrying her bag . It was a really huge bag , which made her look like a snail . Our teacher asked her to put down the bag , but I was wondering ' ' Can a snail put down her shell ? ' ' The books ' names are `` The Traveler 's gift : seven decisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . A few days ago I searched on an internet book store casually . After half of a day I received it by a deliveryman and read it immediately . Finally I 've finished reading this book I went to San Diego with my friend last weekend . The beef was baked with onion , green pepper , and tomato . I was lucky because I took a bath last night . They answer to Mickey 's questions , but they never answer to me ! I accept the situation , and I 'm crazy about Lang - 8 beside them . Many people went out to join the evening party . She said she was tired but strangely I suppose that sometimes people need unpredictable incidents . My partner for Catalina was Kathy , Next I had a dictation lesson with a Japanese teacher . In summer , I could n't go out , because it was too hot and I did n't want to tan . The rainy season between spring and summer is called `` Tsuyu `` in Japanese . Incidentally , in the gallery , I was intrigued by the publicity for Guerilla Girls which said , `` Do women have to be naked to get into the Met Museum ? At the beginning of the exhibition , there is a board that formed with the name of male artists ( Andy Warhol , Josephine Beuys etc ) . At first , when I saw this work , I was fascinating by the dress but after a careful observation , it made me to think about criminal fire . . . It means there is no data on my desktop , in folders and even in `` favorites `` . shippai ( fail ) and shinpai ( worry ) Kaeru ( frog ) and Kaeru ( come back ) I do n't think that the amount of posts or comments about a certain player / club / league exactly reflect how many fans they have in this huge community . In Japan , a university student 's tweet became the topic of conversation . A student confessed his cheating in an examination . Nobody pushing me to do anything , noone to exploit or manipulate me . Yesterday , my sister and I went to the cinema , and we watched `` Gnomeo and Juliet `` . It 's very funny because when a human sees them , the little gnomes quickly turn into porcelain figures , in the position they are in at that moment . So I 'll be training till dinner ! Perfume : The Story of a Murder I stood contemplating the rain under the leaves . They were glistening and clear as crystal . Especially in the University , I can spend all my time in my studying my favorite things . In the library of the University , there are almost all of the books and newspapers I want to read . Today I 'm going to the theatre . While I was in NZ I had to speak English everyday , but after I came back to Japan I became so lazy in learning English . . . I teach him math , physics , and chemistry . defend : He tried to defend himself , but everyone spoke at once , so he even could n't be heard . I have my own lang - 8 account and I hope everybody comments . My family are buddhists so we believe that the 49th day is My study methods using the nintendo DS mainly consist of studying vocabulary . Health is the most important thing ! ! Our family went to my grandmother 's house to thank her for getting my daughter a get - well gift . She was so glad to see my daughter had been better . A Japanese friend of mine who has n't yet recieved a license had a hard time driving . I think he has a good idea , but regarding how to persuade people So , If we preach Jesus ' teaching So you must have a valid reason to make her accept your invitation . I think troubles and hard times make a manmature . These dayswe 've been studying `` The Loons `` and I think I am similar to Vanessa who learnedfrom the suffering in her life . And I used to attend the foreign language college in Kyoto , but I dropped out because of economic problems I was invited to go to Summer Sonic , which is a famous music concert in Japan . There was further proof about his preference . He picked up the principal 's plate every day so that the principal would n't break his spine while bending his back to pick up his plate . `` Do n't laugh ! `` I said to him in English . Each party is focusing on consumption tax , which is like `` value added tax in Europe `` , whether to raise the rate or not . I think rising the rate is understandable , but I want politicians to stop wasting money first . This leads to global warming . our strange melody from choking up I started to make a chronological table of architects this year because I want to understand the history of architects and how they relate to each other . As I 'm going to travel to foreign countries , before my trip I want to memorize the table . Today I made a table of Arata Isozaki who is one of the most famous Japanese architects and I think he is one of the men leading the international architectural world today . According to his portfolio , he completed his first public building at 35 ! Second , I went to a concert which took place in Sanomiya city . This month I went to Vancouver and met many foreigners . I believe that it means I have the potential to improve my marks . So , I will write about some freshman girls who were behind us and saw my friend and me . At the end of the conference the school 's directors arrived and finally he told us that the alert was false ( thanks God ) . My summer vacation plan I think it 's hard to travel but it 'll be meaningful . I 'm looking forward to going there ! In the past , I hated the rainy season . I always got wet . I have lot of things , for example - some English textbooks , a backpack to go to some mountains , many instant food for dinner just in case I can ` t go to my home , and like that . He borrowed a book about ' ORIGAMI ' at a library today . We are very busy during this season from November to January because we are providing toys and goods for children and babies . But , it 's combining all mathematics functions , like integrals , inverse , trigonometry , natural logs , and many more . . . It sometimes not fun ( pressure ) working in my clinic . I feel it is interesting when they smile after I say something to them . Let 's try having fun ( pleasure ) in our day even if it is work ! I can not be absent from practice from now on . They are very convenient because I do n't need to leave home to check money in my bank account or to purchase books or something . People often say that Japanese girls are kind , obedient , and so on . I think contemporary Japanese girls are not so obedient as people may think . They are getting strong and selfish , including me . haha . : ) I usually study until twelve I have a father , mother , younger sister and grandmother . My sister is 3 years younger than me . Well , this blanket is very useful , like for example , it is easy to carry and I can save on the electric bill as well . Just a simple question to the Japanese people or anyone good at the Japanese language . . . 1 - How much Kanji syllables should I memorize before I 'd be able to start reading anything ? Some international travelers stay in Tokyo , and I am often asked to guide them to Tokyo tower . Could anyone please help me with the interpretation of this simple sentence ? How could you , if you were I . Do n't hesitate to ask me to add you to my friends if you want to exchange green patch plants ! The right picture was the second tea . Wave dynamics , _ _ thermodynamics ( particularly wave thermodynamics ) , everything about physics makes me confused . If you do your best and make the most your of talents , you will able to turn your dream into reality . Iya - na ichinichi / hi da . . to omoi mashita . Kinou - ha tomodachi to aka ( I ) wain wo nomimashita . Takusan ( no ) mizu wo kono jikan kara nomikomi / nomihoshi mashita . Tenki / kion ha mo tsumetaku nai desu dakara yuki ga mo furimasen . Boku no bunpou no tame ni . . Ima ha mada kurisumasu turi - wo katteimasen . Yasumu ha uchi de sugoshimasu , motto motto jikan koko ni kakarimasu . mo sono jikan desu . boku no bunpou . . totemo hen na bunpou desu . . dakara mouichido sumimasen . Mo motto motto ganbarimasu , Sa . . So , I am going to study , and improve my skills in English . If I learned Japanese the way I learned English , I 'll grasp Japanese quite effortlessly . I 'm not really worried about writing or talking in Japanese . Today , I went to Azuki museum in Himeji with my sister . ( Then ) I went to eat lunch at a to curry shop . I ate butter chicken curry . It was really delicious ! ! We have studied English for at least for 6 years . I think have n't studied speaking ( languages ? ) enough before . Then it became my work . If I had wanted to improve my English , I should 've written even one sentence . I am working as a mechanic at a big chemical plant . It 's dangerous because different emergencies and accidents are usual events in our plant . I thought that I would work seither thenightshift or thedayshift . He probably wouldsay you hadhurt him , either you take him to thehospital check - in or give himsome money . Wait for further news . That time I could use English . Even though people think I have many opportunities to use English , the only chance I can use English is just when reading English news / messages from the / our head quater . You will do great things and surely triumph . Starting to study English I was looking for an English school on the internet . But I ca n't find a good teacher . My family is going to grandmother 's house . I am searching for a good English teacher . let me tell you a funny , maybe not funny to everybody ( but I could n't care less , it 's my journal so if you do n't like it , piss off ) story . anyways , she looked so amazing and dignified ; in a nutshell , you could say that she was like an angel . not a big deal , you could just simply say `` he was impotent `` or `` he had a problem with his sex life `` or maybe `` he could n't get an erection `` , Especially , the grammar , which is very difficult ( for me ) . To improve my English , I borrowed a magazine from my friend . I am going to Naeba with my friend Megumi and some foreign people for 15 days ! ! I can read English newpapers and books without big problems , and made a big improvement in listening . To me , my love for the novels , movies , and characters , the happiness or even the tears they have brought to me will never change . I cooked Tandoori chicken with my friends at the cooking class . Last week one of my friends asked me , let 's go to cooking class together . I wanted to learn how to cook Tandoori chicken . I decided to try it . It was very delicious when I cooked it . ( ^ ^ ) Because of this pollen ( I 'm allergic to this ) , I have to wear a mask which is used by doctors in procedures And , the order , starting from nearest to the brain , is the cerebrum , the brain stem ( the vital center ) , the spinal cord ( this is the end of the central nervous system ) and the peripheral nervous system ( the nervous below spine ) . People who begin learning in our school are very rude , bossy and greedy . Normal people of Japan could n't meet them in life . It is the common story of Mito Koumon : ) My college classes start earlier than my friend 's and I am hopeless . Moreover , declaration of the Fair Trade Commission of Korea played a decisive role in Lotte Mart 's unconditional surrender . The commission said it will investigate whether the conglomerate had violated the Fair Trade Act by selling chickens at an unfairly low price . Today my class teacher was from Scotland . In the classe , he said ' Have you a pen ? ' . They use gerunds for mainly three type of things . First sentence , he was smoking , but he quit . They broadcasts international news . It made me feel so comfortable . In Japan , I ca n't imagine every adult wearing helmets when they ride their mama chairs . I was n't strong enough to press the power button . There is one bottel of peanut butter in my kitchen . Especially as lang - 8 is faster than before ; its previous speed was slow and frustrating . This was actually one of my excuses for not doing any writing . In my point of view it 's very good to support such a project which helps the urban poor in Africa 's largest cities to adapt to chellenges posed by the changing environment . People there are very poor . They do n't have enough food and water , and this is , in my opinion , caused by the colony politic . Especially England 's colony politic . Because in those days everything that was planted in Africa , for example fruit trees , after a harvest , were transported to England . Minerals like gold or diamonds that were found there were , along with food , transported to England . However , I 'm happy everyday Your input will be very much appreciated . The drama e commemorates the 600th anniversary of King Tilokarat . It was quite a good opportunity to view the drama , and we also donated the proceeds to the student fund . My freinds stayed at my house . It 's 3 am and I am still awake . it 's not that complicated . perhaps I am the one who messes thing up even if it does n't seem ( ? ) to be important or serious . some moron came to me late this afternoon and said `` you are a failure , I really do n't think you will achieve anything worthwhile in your entire god damn fucking life `` . Studying English There were many people waiting in line , including me . But my foreign friends often point them out to me . It 's design [ ] was so - so , but I liked its shape a lot . Phew , perhaps I should n't get anything with English words on it in Japan before I go to Australia . If you 're interested in Japan , please feel like to ask me a question ( about it ) . In the morning , I went to the office . I 'm studying at a university of technology , so I do n't have many English classes , and I do n't want to forget this language . TOEFL listening section is quite difficult We are looking ( forward ) to ( their ) promotion . Trying to practice with yourself and ( with ) others to improve this skill is a beneficial method . As far as I know , the main purpose in conducting them is for human beings . He said that at times , he had to kill molmots ( ? ) or guinea pigs for operations or dissections , if I recall correctly . Am I right in thinking that veterinarian 's profesion is to save animals but kill animals even if the animals are guinea pigs ? Then I had muscle ache . But I do n't forget to drink beer . While she was out , I came into the house and hid in the box which my mother - in - law had prepared before . I have a wide variety of friends from university . They are brain surgeons , gastroenteritis , respiratory , pediatric , pathologist . Cause I really hate pressure . As I have finished my exams and university semester , therefore I have more time in the morning , and I can write a more posts in English . I switched on my favorite radio station . So , I think that my post is finished . For example : Slumdog millionaire , 2012 , etc . Then , I played tennis . But , when I practiced tennis , I injured a foot . Because , I did n't do stretches . Korean grammar is similar to Japanese grammar . I mean , because it was a comedy , the only important thing was whether it was funny or not . Thanks for reading . I was surprised that people from Lang - 8 are so kind and polite . Anyway , I 'd like to say thanks to my new friends . I went to hospital and I knew I had little sick . . . In order to get a share in the Japanese SNS market , Facebook should focus less on having users upload their personal information to get rid of this unique resistance from the Japanese population . I like coffee when the weather is gloomy or rainy . At those times coffee is more delicious . Parfait was huge . . . . The Yakult Swallows , my favorite baseball team , beat the Chyunichi dragons . Shouting the player 's names , singing fight songs and cheering can reduce stress in daily life ! Tomorrow is the junior student 's play in the drama club . I have n't even read the script of it , so I 'm really looking forward to it ! I 've been there for . . . I suppose this place is one of the most wonderful places in the world ! Look at the mountains . . . You are simply staying on the beach looking at endless sky and high mountains and smiling because life is a good thing = ) April is the start of the new semester in Japan . `` Of course , `` he said . `` Please ? `` Here is the topic : `` Does the government have to spend taxes for UFOs ? `` `` For Japanese people , when we think about what an UFO is , most people probably think UFO is an `` Unidentified Flying Object `` or `` Unidentified Aerial Phenomena `` . I think it should go to pension after we retire or scholarships for students . . . . Recently I bought an iPad , and I 'm looking for the best application and the best way to learn English . I like drinking a lot , and I usually only sleep for five or six hours a night . It 's my first text / entry on this site . In Japan , junior students start to hunt a job and get the job until they are seniors . In the Philippines , they start looking for a job after they graduate from the University . I think it 's very hard for Filipinos . I went to drink at the bar with my friend in the city . I 'm so thankful to him every time . Actually , he looked older than the last time I met him , about ten years ago . Perhaps I can apply for the working visa here in the UK and get some working experiences in a different culture from that of Japan . Saying `` What can I do ? `` thing , I might sound a bit pessimistic and seem like I have a lack of self - esteem , but I am actually not that worried . < Character Description > I asked him what had happened , he answered `` nothing `` . I presented a necklace to her one year ago . Summer Events There are many kinds of summer events in Japan . We have to forego summer events this year in Japan because of the earthquake . I think summer events give us energy . My family and I went to a Chinese restaurant to celebrate Mother 's Day . Mum thank you ! ! You are the best Mum . This weekend I will go to Shizuoka to make a speech about my research . It 's quite interesting and I would recommend it . Before coming to Toronto , one of my friends who once studied here told me Of course , my host is very friendly and their meals are good ! `` I read a newspaper on the Web . `` But , I feel confident that I wo n't get swine flu , because I almost never catch colds . I 've given her a present for her birthday ; that was 5 days ago . It 's a wall clock , where Winnie - the - Pooh is drawn ( we like nice things ) . I 'm looking forward to meeting my host mother . And then , she made a decision to lose weight . She succeeded at losing weight 30kg and getting her ideal job , which is an editor at a fashion magazine . All employees have to evaluate themselves . `` Did you communicate with colleagues and customers I want to communicate with them too . And finally I 'll travel around the world ! Yesterday was comfortable . I went to the elementary school that I graduated from a long long time ago . On the cherry tree , I could escape the sunshine and feel the nice wind . I 'm a little nervous because I have never taken TOEFL before . It 's my favorite meal , especially kimchi ! The title is a bit long . These days , I have been feeling lonely . He is in graduate school . I think remembering other people 's name and calling them by their name is very important . When it comes to remembering people 's names , we try to make excuses saying , `` I am busy doing my own jobs , I do n't have enough time to remember people 's names `` or `` How can I remember everyone 's names . `` holiday season is coming ! ! But he said in gentle and low voice `` do n't worry about that , just always try to do your best , and do n't make any excuses in your life . `` He said a lot on our way home . He said I should be braver , and life always rewards the courageous . I need to sleep ! ! But actually , I forget lots of english , my own english skill is getting worse and worse . So maybe , it is a good opportunity to study again . Criticism about Japanese Working Condition Before they work in Japan as an immigrant or temporary worker , they need to know about how weird Japanese working condition is . Japanese 3rd year university students generally do jobhunting in order to get a job from autumn . They register in this site to check up - to - date information about the companies they want to join . I think it is strongly weird to prepare for jobhunting while they are studying in university . Starting job hunting from 3rd year is too early for both the students and the universities , I suppose . We take 1 to2 hour lessons about what the company 's vision is , what kind of people work in the company , what kind of people they need . They have to struggle to simultaneously do job hunting and write thesis . He said `` I did n't want to work in Japan next year because of its weird workplace . If you can speak English and have specialties , try to work in America . I 'm fed up with the Japanese working place ( condition ) lol before I work there . It 's brutal but nobody changes this random phenomenon . Why do n't they go home early ? They are being observed by supervisor . In order to be promoted , they can not go home before the supervisor goes home . So if the supervisor is a kind of workaholic , you can go home at 10 o ' clock , even more , you might have to spend time in the workplace . I heard that Japanese productivity per person is lowest among advanced countries . How hard they work is hard to evaluate under the Japanese working system . If the evaluation system goes well in Japan , nobody stays late . Watching Mamma Mia unbelievable , you never know what would happen around you , maybe that 's the reason why our world is so colorful . That reading give me some pleasure and I decided to take the title of this book for my nickname . I will write a journal because I decided to do everyday . today 's menu was chicken , steak and croquettes ! Please check my sentences . Afterward I could play better than before it happened ! Hllo ! Hello ! I thought that I have n't seen any good powder snow good enough for snowboarding this season compared to what I 'm seeing snow in Tokyo . We did our best to make these questions but we are not sure that the sentences are grammatically correct . If you are correct our sentences , I really thank you . ( D ) She stood still on the spot . I heard that the new place is the most exclusive building in this area . We saw The Pirates Of The Caribbean . It 's about pirates looking for a fountain of treasure and they battle other pirates . I 've never seen The Pirates series . Of course , I like studying English , but I think studying the mother language is more important because it becomes the basis for all subject such as mathematics . Yup , I was correcting some texts at midnight when this little creature silently slid ( or glided ) from the yard of my house into my bedroom . Of course not , but I do n't think they should be killed , because their massive existence is due to our massive exploitation of natural resources . My family does n't think my way of thinking is appropriate for a country where not only rats , but also mosquitos and fleas become a great enemy if you do n't control them . So , I finally decided to take my umbrella and I slid its end under the sofa , and then . . . it quickly escaped to his headquarters . . . Meanwhile , I am a bit paranoid , because I just think that it escaped somehow and it 's looking for meeeeeee . . . Tonight I 'm keep writing about my favorite characters . Well , the mysterious stuff , black clothes , mask , cape , every one likes . Also the idea that not to become like his enemies , he does n't have to kill them , but he knows they will kill again . Of course , it is nothing compared to Aristotle or Montesquieu but whatever , Batman 's also fun . Mainly fun , by the way . In the future , I want to be a teacher in junior high or high school , but before that I am planning to go to Australia or New Zealand for my master 's degree . It includes action , mystery , and partners who trust each other . I got up in this early morning because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsibility to memorize them with a more efficiency . ' ' Was my brother reluctant to get up at three in the morning ? ' ' It seems everything is the same as yesterday . 3 Fujikyu highland ( there is the highest roller coaster in Japan ) It requires patience and a lot of time . The more new knowledge one learns , the more confident he will be . Live for myself , live happily every day . And the teacher also said to us , `` Practice your presentation skills . `` By the way , speaking pumpkin , Halloween is coming soon ! ! For this reason , a heavy equipment company asked me to inquire about a special air conditioner for a fork lift . I will entry about some of our habits and what 's normal in life for my Blog , hope all of you can interested in my Blog . Usually , I practice golf at other golf driving ranges . I could n't get up early this morning . The government promises to have an election this November just to pretend to be democratic . It is utterly ridiculous ! I have already left the country , but am wondering how long the Myanmese people should put up with this period of hardship . The Photographs Of Before and After the Earthquake Here , you can see the satellite photos of theTohoku area of Japan , before and after the big earthquake . For example , who will wash the bathroom and restroom ? Others say that some children tend to watch too much , which has a bad influence on them . In Japan , TV programs are highly developed and devised , culture and languages can be shown through the device . Even if people do not visit book stores or shops , and they spend plenty of money on transportation , they can study culture and languages with pictures . Moreover , people learn kanji with famous people such as artists and talents . Thus , the level of interest in programs teaching kanji increases dramatically . But I did n't recognise the number . . . . And 1 guy disappears . Nadeshiko Japan is the reigning champion of the world cup . I saw a lot of people who came to perform Hajj . I enjoyed seeing different shapes and colours from all over the world . Because of it , most of the cherry blossoms have n't come out yet . It can be cooked in many different ways . In the West , people often boil it and eat it with salt and butter . So sometimes my elder sister treated me as like a slave or her follower . This year , I experienced big events in my life , job hunting , a journey to England and graduation from university . I was n't happy at university because it was boring for me . I wanted to go anywhere abroad to study English and I wanted to know a different culture . that is why I went to England with my friends this year for a short period . I wanna speak with foreign people someday . He was bored and he was always looking for food . I thought he was poorly taken care of . Although he looks like a stray dog , he is the coolest dog for me . I was surprised because I often parked there instead of parking in the parking lot by now . It is weird because I do n't see the red line marked along the street , so I do n't know why it is illegal to park there . I was moved by that scenery because many of these flags seemed to be a part of peoples ' soul . So , my sentences are likely to have become unnatural and bookish in style . Rather , it 's better to say that I 'll find enough strength to postpone other matters for studing English , especially improving my writing skills . And the same day , I arrived at Heathrow , England . Originally I 'm not good in English , and additionally Japanese learn American English in school . But she recommend a more special one for me . I guessed special means better but more expensive . But I could n't reject it , because it has already been done . And I have decided that I have to check the price before the order ! ! ! The writer is a Taiwanese woman who married a Pakistani guy . She shares her experiences of Pakistan in the book . `` I think that this book is interesting , because I have a Pakistani friend , but I am a bit curious and do n't know what the culture of Pakistan is like . Oh ! My daughter has woken up , which means another blatting ( ? ) day has begun ! So I planned a trip another prefecture . In Japan Silver stands for our elders so this long vacation is called Silver week . I love apples and bananas . I was excited at the curling game , actually , it was my first time watching it . But I do n't have anything like that . * working sample can be seen here on the original blog * to one 's best advantage Today , I turned in an analysis report about myself to my teacher in the morning . Lastly , I ate a delicious cake and that was end of my birthday ~ ~ I 've been studying English for a long time and used to read in English but I 'm still a bad English speaker and / or writer . . . Hair color and cut My front hair was cut about 3 to 4 cm . I 'm looking forward to reading it in English . I made a date with my friend , but she is not the same person I had the chicken conversation with . its giving us a hard time and makes me feel so lonely because everybody is so busy these days and I have n't found anyone else who is gon na live with me after they leave . I want to feel relieved and comfortable at my home without any worry , and have great japanese food and just get a nice and hot bath . its gon na be so much fun definitely ! Actually he always helps me a lot and is sincere to me , The pavement was extremely slippery , so I could n't walk [ [ very ] ] fast without risking an accident . If they had enough money to live , would they still work ? He carried a notebook with him , believing that he could analyze the winning number . This mystery might not be able to be solved until dying . And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courage to learn more about cooking . To begin with , I change the ingredients of ozoni , chicken or beef . By the way , I have a `` MEDIA SKIN `` produced by au . She has a great voice and wonderful pronunciation even though she caught a cold . Because it has gradually become colder these days and I need it to keep me warm . When riding on a motorcycle , I feel colder than when I 'm walking . I study English . I do n't like one of the vice - presidents of my current company because he usually does n't talk to me except when he needs some tea when his guests arrive . He always says that he needs to get a high score on the TOEFL because he 's going to a foreign university . It leaves me relaxed and comfortable , Though I studied English a lot , the score was the worst ever . That 's because , recently , I found a nearer subway station than the one I usually go to . This year I 'll try writing every _ day to improve my English . I know that I make a lot of mistakes but with the help of my friends I can / will become able to write better than last year . Because , I am a computer programmer . I 'm optimistic ha ha ha . I went to the disco where my senior resident living in my dormitory was DJing . I tried it again for the second time but I could n't do it like the first time . I tried it again till I decided to go to bed . Next , I went to the drug store tobuyinsectcide . that I do n't know the types ofinsects , so I bought insecticide that is effective on all types of insects . He loves theatre and all music , from classical to rock . . . . [ BG ] A Thai client wants to sent a sample to my colleague , and ask him to fill out a form which needs to be submitted to the Customs ( Office ) of Thailand . My heart is full of sunshine , I 'm eating dinner in chinese restaurant near my office . I just stayed for 3 months , but I think I learned many things . . . If I have a chance , I want to visit the Philippines again . my friends , teachers , and Korean friends . . . . . When we are learning foreign languages , we are liable to think we should n't use our mother tongues often . I thought I had a talent for drawing . What collapses our lives is definitely our negative thoughts . I have to attend some class that has practical training at the industrial firm . I applied near my home . Nowadays , lots of big companies like LG , Samsung and so forth want more variety and special experiences . Sometimes my dream changes . They are able to remember words faster than adults . This lecture gives listeners how amazing the faculty of their language and raises a question how children learn languages so well . My class and club students enjoyed it very much . Japanese call it `` syouyu `` . Because I do n't know about logical constitutions in English . The match is between the Rockets and the Bulls . Usually we have class on weekdays and no free time for surfing the Internet . Because of their negligence , 5 patients got HIV infected unexpectedly by taking an HIV infected donor 's kidneys , lungs , heart and liver . Now not only do the 5 patients have great pain over this error , but also those doctors and nurses who did the transplants surgery were not aware of the fact in advance . Diary : Adapting a recipe There is a plum tree in my yard . When I was a child , it looked small and weak . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo that has opened a new terminal for international flights . Today , Haneda starts its flight service to major cities around the world . I heard from my friend that her friend was lost in the earthquake and I felt sorry about that . One time in Thailand we had a tsunami that struck people around the beach who were swimming , many people were killed by that . I can study about vocabulary by a reading reference book . I wish I could have an air conditioner in my room . . . Actually it should be gradually getting cooler after mid - August , We 've got to be very careful and stay hydrated . It 's not related to today 's topic , but I need to mention that a bad thing happened this morning . . . I have to work hard on my experiments and application for the graduate school these next few days . In nowdays we have so many informations , what we hear in the radio , see in the TV and read in the Internet . If you are interested in it , maybe we could follow it together . Take this diary for example , I have written it for about three months because I 'd like to improve my English skills . In summer , watermelon is my favorite fruit . In my opinion , it is rare for such a big event to be held in China , so I should take the chance to visit the expo . Since I love travelling so much I faced many problems in order to have a good time . When I look at the pictures that I took during the trip , I remember all the happy memories . Some people are singing a bit out of tune . * euphemism * But I must admit that it 's far more amusing to hear someone sing out of tune then someone who sings beautifully . Ahem . . . They believe in their voices , although it 's so obvious that they ca n't sing ! And `` Eastern Plays `` is a Bulgarian film . This decision might change my life . I played baseball from my childhood . My appetite often disappears when there is a lot of load to take care of . Every time I raised my head , I would feel like I was sinking . Third , I watched a video about a cute kid who likes to recite poetry . On the Wa - tokei , the day and night are each divided into six parts . Although Taiwan is not a Christian country , we like to celebrate this meaningful day as well . And I ate a beef steak and a chicken steak : D I have n't eaten beef for a long time ! I guess that the air is leaking from the torn cushion every time you sit down . It seems that the suspect did not miss shoot . At that time , I lived with my host family . They have three small kids . They must have felt more scary than me . The thing I like about my university is that the whole education system is based on the one in the US , and that we have some professors from different countries . It 's all about getting a good start . Never say never is a good song and it inspires me to hang on . Every classroom has a very large TV set . My university is in Xian but my hometown is n't . He told me lots of things to say in order to have a successful blind date . However , very luckily , I could escape from this snow . Consequently , it was not easy to concentrate on work . That will be a big lose if you have never been to Tainan . It 's really difficult for me in this process . I 'm studying English at university , and I want to study Korean language next year . In addition , starting the day 's work early in the morning is a healthy lifestyle . Sometimes I wonder whether or not I have made the right decision to go there . It is very comfortable . My teacher started writing on whiteboard to explain something . Or is it accidental ? So I will study Reading and Writing hard work is hard work . . . ( ? ? ? ) His father died of old age , and so three co - workers and I went to Busan yesterday . I 'm working at a company related to the financial industry . As soon as possible , I want to speak English fluently and write sentences in proper English . I was waiting in the parking lot for cars to leave so I could park my car . When you 've finished something , another thing comes soon the next minute . American football is very hard , but very interesting and exciting in terms of high sophiscated tactics . What is most exciting in the American football game is hard TACKLE ! ! it is one of big skarte boarding races in the world . That 's so amazing ! I was so excited ! I ca n't believe that such players exist ! Fortunately , my wife and all my family were alright . I have been preoccupied with the news of earthquake and radiation released from the Fukushima nuclear plant for the past week . To be honest , I 'm a bit worried about the situation surrounding Japan . We practice using Japanese chopsticks properly . It 's really hard to explain in English , and it 's very difficult for students to use them that way , because they are not familiar with it . One student asked me why I could use it so properly , and I told him because I am Japanese . Can you use chopsticks properly ? Well this moment I ( space ) am receiving English classes I would like to improve my English , because this way I will possibly pass the exam . I 'm 29 years old man who also love basketball , soccer , drinking wine and Hugh Grant 's humor sense . I realised that Usagi - chan and me have a lot in common , so I understand my friend 's comparison between me and her , and why they gave me the name : Usagi - chan is very clumsy : I am extremely clumsy , too . I was interrupted and could n't keep myself studying . He was mad at my coming keeping him from watching the climax ; I also expressed my rage at the noise about the TV stopping me from my studying and I hoped that he could turn off the TV . I told her that I will accompany her to see a doctor tomorrow . We will go to the hospital at a half past seven tomorrow morning . My house was damaged and flooded from the earthquake and tsunami . I attended the conference about the next officer 's exam . After all , I hope to be a officer . Though we also use Chinese characters , it is very difficult to understand . The pronunciation is especially hard to get it . Clean Up It is warmer here than Tokyo . I believe this website is very useful , especially for english and mandarin chinese learners . Thanks for your reply of a few lines . So I ca n't write in this diary these days and I 'm a little bit disappointed about this . When he kicked a wall of a building , a man noticed and confronted him about his act . I want to practice English . Basically , they are more than 5 minutes long . But you will not be bored because they are stunning and fascinating with vivid words and melodies . I was a little tired , but I still enjoyed fishing . Hiei , where I dated with my first girlfriend while in university . That mountain , even now , makes me a little sentimental . I started running a month ago . Running refreshes me . I am going to university . Today my classes are `` Social Policy of EU , `` `` German `` and `` Sociology . `` But she is too capricious and hot tempered for me . Last night , after the Celebration of Chinese New Year , I text him , `` Happy new year , and I love you ! `` No rejection , no contentment . I took my daughter to the place where this party was held . My wife also had a year - end party with her colleagues . A typhoon is coming . By the way , one of my front teeth is fake and it became loose recently . After this , a new special lecture will start . We decided to eat roast pork belly . Today , after lunch , I was watching the news on the internet while I was drinking coffee . I was very interested and , I registered to it immediately . It is universally acknowledged that a pile of things have happened in China ! When it was Feb . in 2008 in most areas of China it snowed heavily . It experienced a lot . So many things were destroyed . Buidings , plants etc . It shocked China . The 29th olympics was held successfully in the capital of China . What made the Chinese sad is the absence of Liuxiang who was gave the most expect . ( ? ) This month I 'm very busy because I have to do many things . It about the school festival , I 'm a leader of it ; English and Korean studying etc . So , If you want to become my penpal , please send me a The Lang - 8 system is a Japanese site but seventy percent of the users are foreigners . If we recited a sutra once , we would live peacefully in the next world . I had nothing to do today . Therefore , today 's diary is very very short . Tomorrow , I want to write a diary with no Japanese thinking . Sunday wants come . . . My part time job is as a coffee shop assistant . because , person not doing anything / doing nothing I like to make people happy , I am reliable and I have a strong sense of responsibility . In my job , I succeeded to make repeat customers by meeting their needs . Finally , we decided to accept his request , although it was risky and we waited for his answer till the morning of the first day of event as he wanted us to do . I really appriciate the kindness and courtesy from him after the event . But as for intermediate class study free - talking so even if it will be beyond me , I want to try it . I recommended an LG phone as it is cheaper than other ones , but she wanted a SAMSUNG phone . Thanks to her stubborn attitude we spent ' 5 hours ' looking for an internet shop that sold the cheapest one . If the government had more support for safe energy , I think we would be able to meet more energy needs . I 'm really looking forward to that day : D I knew this site because of AERA English and I 'm interested in this site . My husband has entered for the full marathon but he has n't run such a long distance in his life ! I do n't want to participate in any marathon definitely . I thought that possibly his English is better than mine , but why did n't he directly call the American department rather than the Japanese department ? If he is in America , he should call the American department in English ; so , probably his English is not very good . Having a conversation with a native speaker on the phone can be extremely difficult . They were so old that the corners of them were limp and it was difficult to fold them into a rectangular shape . The sewing machine is my mother 's and its old and yellowish . I recommend it . He sometimes made me read sentences or words and teased me in front of other students . There instructors always cheer me up when I ca n't say what I want to say . My mother - tongue is Spanish so If you are interested in learning my language please be confident about contacting me : ) and If you speak English , we can share our knowledge : ) For example , `` I would write diary everyday . `` I would never drink alcohol again . `` Today I would study more than 12 hours everyday . `` If you do it , nobody controls you . `` According to him , a very kind Japanese guy showed him how to use a public bath . It was very very delightful , because it was for the first time for me to have been quoted and reblogged . When I put on a skirt , it would n't fit . . . The Japanese labor market for teleworkers and SOHO ( small office home office ) is still small . I often see some ducks , so I took some pictures of them . Yesterday I posted an article about a museum , and nobody in this website could correct it . The title of that comes from Tofel , but I really do n't think that 's a hard thing to do ! My friend and I went to Dazaifu Tenmangu shrine and Rakusuien . I bought Umegae - mochi ( A - branch - of - plum mochi ) on the street in Dazaifu Tenmangu shrine . Adults will pay 3000 yen ( junior and high school students : 2300 yen , elementary - aged children : 1400 yen ) to go up to an observation deck 450 meters above the ground . Hahaha chihuahuas are too funny . Generally , people think that it is wrong to look at the past , but it amuses me . My weekend plans . My weekend plans are to do my part - time job . The whole time , happiness was flowing across my cousin 's face . But for now , I simply wish that my cousin will live a happy life in the future and have a lovely baby some time . Although I read the book so slowly and do n't understand it all , someday I hope I can read fluently . I believe that . How about Britain ? ? Please check my English ! ! There were many believers and tourists visiting the famous temple . However , in high schools , we ca n't choose our classes , same as middle , and elementary schools . So , the Australian government granted him citizenship If students go to class and learn , according to school requirements , should n't those students be allowed to express themselves in clothing ? If school administrators would just grant us some freedom in dress , we 'd feel better in the classroom and be better citizens in the future . As per our Chinese tradition , you can tell other people you are pregnant until the baby is 3 months . Last Saturday , I got her phone call in early morning , I was wondering why she called me at 7 : 00 am . I really want to be a good English speaker and writer . Some applications of I pod are very useful for me to learn more English vocabulary and sentences . Do you agree with it ? Oh , I forgot to mention that our team had 5 members and I was the 2nd ( second ) one to do the presentation . We were required to do a team task ( `` do a work `` is incorrect ) to fix two problems - - - who has an apple tree in his yard ? Everyone of us were given 6 sheets which had different information and were told that we could communicate with others using words , but could n't show others our own sheets or make notes . some example sentences are welcome . I was freaked out and started checking the list of the recipients . I 'll go out since It 's been a few days since I 've gone out , because of the hard rain and strong wind of the typhoon . So ! I just returned made from the business trip to Hiroshima . They worked for my parent 's small resort facility , but the building was destroyed by the Tsunami and they lost their jobs . So they came to Tokyo and began to look for a part time job . It 's my responsibility to help them look for a job and feed them until they get their jobs . My English listening and speaking is very poor ; this usually spoils my job . There are so many bad things happening everyday . Things have happened , and the effect will not change whether you stress or relax . I mean it 's kind of a trauma . Since we are talking about character , I do n't believe a single judgement can be made . It depends on the individual whether it is his family or his social acquitances who carry more weight on his decisions and behaviour . After they go through the first years of their adult life , youngsters usually turn back to their families looking for support and advice . It examined Royma Sakamoto , who was an historical person during the Edo period . It 's different from Starbucks . Since then , intricate networks of power lines and utility poles have become prevalent in a short time together with human residences . The variety of neon lights from dwellings illuminated a part of scenery through the window . In Okinawa , at night , the sky is studded with twinkling stars that described innumerable constellations . Now the beauty of the neon light from human civilization are replacing the beauty of the light of the stars . I ordered `` Today 's Lunch Special `` , which consists of a chicken gratin with salad and toasts and , one drink after a meal . Because the first time I watched the movie was at the height of ( the ) summer . But I ca n't quit this habit . Actually , I am a little worried about my financial situation even though I like hot pot very much . We went to an all you can eat restaurant , and the price was NT550 per person , which is an equal to 15 us dollars . Because the restaurant is too popular , we had to wait for like a half hour . The Taiwanese guy asked my students 's phone number , and she gave it to him . They are friendly to foreigners especially to white people and will seize every chance to make friends with them . When we said goodbye , my friends told me , `` This is the last time we can see you until you come back to Japan from the UK `` . I was moved so much that I was about to cry . I realized I have wonderful friends and I should enjoy anything that will happen . We hope that you 'll enjoy these new features , and that they will help make Lang - 8 an even more vibrant language learning community with a uniquely social appeal ! I 'm studying English , because I love foreign countries . Because I gained weight ; about 2 kg , which is totally intolerable ! My appetite is kind of . . . I was just wondering if this nightmare is because of my bad eating habits or the outcome of me working out at the gym . lol But what really makes me nervous is that I rapidly gained weight . I know it sounds silly for boys to care about how much weigh is but that 's what some of Japanese boys have on their mind sometime ! Yet the professor always says that it is `` ok `` . In English It was not possible to go to Nanodee sea . I 'm going to Ueno Park which has a lot of cherry blossoms and is famous for them and have a party with my friends this weekend . I 'm a planner working at a web service company which supports small retail businesses emerging in e - commerce . and I arrived in the city after 30 minutes . There was a lot of delicious food . When I am enjoying listening to music on my iPod ( actually , it was a podcast ) , she told me that she felt like getting an iPod for herself too this morning . After I had pancakes which host family wife made , I hung around the neighborhood . I asked AU about the charges but their answer was `` I do n't know , ask the local cellphone company `` . So I speculated that Rogers would handle this problem , but they had no idea about the charges . But I could check some ingredients like thin pork , onion , potato and carrot , for Nikujyaga which is a japanese cooking recipe . I promised to treat my host family to it someday . But nothing happened actually . So I did n't cut corners . so I made and intended to print it out soon , When I cultured plants to test tubes , I have to heat the tip of Erlenmeyer flask with sterilized water . And I sprayed alcohol to my gloves to sterilize them . I want to try doing experiments carefully from today . I wish this happiness could last longer . The cakes were tomato cream cake , banana cream cake , and custard cream cake . Custard cream cake is coordinative with americano . A survey says that one ca n't just love only one person in life . It is said in that survey , the average amount of times people `` fall in love `` in the UK is 13 . This survey really gives these facts ! I think it is because one may be attracted by different points or attractiveness of different people . feisty . . . I 'm glad if you can tell me the meaning of `` feisty `` . Maybe she was scared of my voice and was worried about me . However , I 've just gotten well . In addition , walking around and hiking around parks and collecting flowers and some plants are also good example . There were some Chinese some Thai and some Japanese . Because I have stayed in Hong Kong and Australia for a few months as a student , I remembered feeling so free then , as compared to now . It is a pity that I can not get back there , but I hope and expect that I might be able to work at an overseas branch office someday . I tagged `` my cat `` on my facebook cause I like this title . Because this title makes me laugh . Nowadays the cold weather defies description . But sometimes I can not follow ( the ) cultural differences between Holland and Japan , especially being naked in public such as a street or a park . Besides , I do n't like sashimi . However , those factors also make rafting very exciting . But when I meet a foreign friend , I do n't know how to give an information in English . actually , I had confidence about my English skills , and it 's true . But only with grammar . . . I 've been thinking that Korean and Japanese are very varied and highly developed in respectful words , on the other hand , English does n't have any respectful words . article . Then , I dreamed I went back to Japan but I felt bored so I came back to Malta and I started a job at a souvenir shop . . . Many people think that Japanese cats generally eat fish . I must pass the exam and continue to state university . For lunch , I cooked an omelet containing fried rice . He told me everything is ok , but there are no trains running just after the earthquake occurred , so she was on her way back home . I hope everyone in Japan is safe . I write a diary in english and I have studied english for a long time . I was sympathetic to the fact that creating a sustainable society means help from not only people in the government but everyone . Although I think the trick to make it is difficult , it is very very important . To be honest , I think what I said had some grammar and pronunciation mistakes . Firstly , they are both the most important day in westen and easten countries . Then I need to change all the address registations on cards , insurances and registrations associated with the internet . So , My younger brother and I will invite our close relatives to a seafood restaurant . If not , he would set fire to the home of the president of her agency . They sent them to the hospital . My mother and older sister scattered roasted soy beans all over the place . It also took more time than I had expected to fill out the application forms . I gradually am coming to love this school . What should you do to make your dreams come true ? I do such as eating , sleeping and seeing people . Today , I ate 3 sushi and miso soup at Melbourne Central Station near my English school . One of my hobbies is flying RC planes . I made a new RC plane . The first flight was a nice flight but an accident occured on the third flight . I corrected and evaluated the compositions of 20 examenees who took short - tempered Japanese training . I want to ask of a . favour . ( Sorry , I do n't know how to explain it in English . ) I transited at Taipei . Fortunately , it was low water season so it was n't much harder than I expected . I love this season in Japan so much . Teenagers spend all their spare time surfing the Internet instead of studying . The point is : if you have the main concepts of a question , you can make any theory based on them . I bought a pretty pair of & nbsp ; hot pink shoes so I can wear the new shoes tomorrow . I do n't want to be pessimistic , but my current workplace was a bit weird . . . Fortunately , with the progress in modern technology . convenient . . . etc . Housekeepers can store some in the refrigerator and quickly prepare the meals for the whole family . frozen food technology and the new equipment allows people to accessibility and the convenience helps these people a lot . Critics may argue that the frozen food could have less nutrition or they can not offer the balanced nutrition that people need daily to keep In my opinion , it might be an old angle . in the aspects of fastness , accessibility , convenience , safety . . . etc . Electricity and water have been stopped in Ibaraki where I live 100 km north of Tokyo . One of my favorite singers is Shouta Shimizu . Now , a typhoon has hit the island . They said that Americans support the underdog so they supported Nadeshiko Japan who were competing against the champion , the United States . In Japan , there is no such word as `` underdog `` but there is the same spirit . Eventually they became rich . Today I have a / the day off and I will try to spend it usefully . I will try not to be lazy and I will try to do what I 'm planning for the day . It 's raining today . so I 'm feeling gloomy . It has been raining since this morning . When I was looking for a hotel . Blue seas , blue sky , seafood , a beach , sunshine , flowers , all of these are familiar to me , and days pass on very quickly . The Tonkatu made in this shop was very delicious . This makes them lazy in learning a foreign language later . I will ask many questions and try to be friends with the teachers : ) I envy that Europeans allow ( permit ( ? ) ) them to play music there . ( Permit is okay ) She was helpless , crying out for help , and then , from the ashes , Harry Potter came to help her , using his spells and a magic broom to defend the scared lady ! But that which not even Harry Potter had expected , happened : Hermione came all the way from Hogwarts with her new husband , Ronnie , and killed Harry Potter in the worst way possible , with a broken heart . I used to go out with my wife to visit galleries and Because even if I do n't know them personally , I felt their love and passion in their music . When I speak and write English , I always feel the lack of my grammar skills . We changed to another point . so I went to `` home plus `` which is a kind of super market . in the car returning home , I was happy : ) I bought some apples , a headset , sparkling water and some pringles . We had some bread for breakfast . I decided to not use translator to look up how sentences should look . She looked after us , told us many interesting things about life in Sweden , and introduced us to Swedish cuisine . I love rice more than noodles . I would go on dancing but I do n't have enough money . Every culture has their own traditional way of conducting their wedding ceremony and of course , we Koreans also have our own style . Accessories like a ring , necklace and bracelet , hanbok , Korean traditional clothes , and more . In the winter , you can go skiing . Please say many comments ! ! ! ! ! ! ! ! ! I want to speak English fluently someday , and I want foreign country ` s friends . kanojo no oba ha ( kanojo ni ) okurimono wo . shimashita . Kanojo ha kare no heya wo souji shimashita Ototoi ajia kappu de nihon no sakka chiimu ha kankoku chiimu ni kachimashita kinou no asa okaasan to issho ni isha ni ( byouin ni ) ikimashita . soshite , sukoshi nihongo wo renshuu shimashita . Onegai shimasu We will make some sandwiches and salad . I visited my friends house , and there were many people there . I cooked some dinner for guys . Before cooking I left my watch on the table . However , I 'm not sure my watch was on the table . We had dinner and enjoyed each others company and passed the time . Then , I wondered `` where is my watch ? `` I was looking for my watch but I could n't find it . While I only bought it for 10 dollars . I am really fond of this site ! The Chinese whiskey called PAISHU that my Chinese friend brought for me as a souvenir , is too heavy for me . But my stomach was satisfied . However there is one problem . I already know about the problem , so I will try to be diligent . Do you think that I can sleep enough tonight ? In such occasions , it helps to just say `` Dobin , Chabin , Hage - Chabin `` on the street in a loud voice . It 's Golden Week in Japan . My research was in intellectual law , especially patent law Of course my reserch was very difficult , but I loved it . Therefore I decided to go to the Fukiware falls nearby . For the first time , I know that Lang - 8 is a good means of studying ENGLISH . All the people in the village were very grateful and created this dance . I feel so bad after getting angry . Gundam seed destiny Is he a clone of the armer polot army pilot ( ? ) whose father is a heroic astronaut ? I had no plans to begin with so I went to school to check if the exchange list and the exam schedule was available yet . Since there was a lot to talk about , I went with her to pick up her new passport and she accompanied me to the supermarket . My friend which I was shopping with also does the same . I was very amused because I really want to develop my English writing skills . Awful . . . I belonged to rhythmic gymnastics club . Reading articles and books about astronomy , science and world business is also my favorite hobby . We do n't like them because they 're good at all sports ( football , tennis , cycling . . . ) . They eat horrible things such as jelly or pudding , which is one of the most horrific nightmares for a Frenchman / French person . - Africans ( black people in general ) : they are lazy , only good at athletics or football ( and they 're not technically - minded , they only run ) . French in general : it 's agreed that we strike , criticize , and complain too much . And my car will be totaled after test - driving it ! I only hope that when she wants help , I will help her . When I knew that some famous killers are affected by this book , it really interests me . Secondly , I did n't understand well about why the book have such power at that age . Last but not least , I like Holden 's sister , Phoeby , very much ! Today , I have become a new member of lang - 8 , this is so exciting . It 's very intersting . So many people from other countries , they all chat about language and exchange ideas . So we all can improve ourselves . I used to be able to play the piano . When I arrived at the studio , the cute staff took me to the reception and asked me to fill out a questionnaire . I want to be a researcher . Hi monkeys , you are welcome here , but please do not steal my food . She is kind . These seeds weed out other plants , so the diversity of nature will be changed . If the diversity of plants is changed , the diversity of animals will also be changed . The ecosystem will be destroyed by GM seeds . If we change our lifestyle and are more interested in protecting our nature , its content was meant to improve communication skills . 1 ) an eye opener for humans to see something amazing / a way of entertainment . We talk about how disgusting the teacher and the school are . We all have no freshness for the new semester like before , everything is so familiar . I was a system engineer in Japan , but I want to find another interesting job here . I was so sleepy , I could n't concentrate on class . Being hit on Me : No , Japanese girls use a lot of makeup ! Many girls make chocolate on their own to give it to their boyfriends . But Korean girls are privileged because we have White day ! ( So I personally think it is really girls who have the right and power to make a choice . ) Sometimes boys give some accessories or other gifts with candy to their girlfriend ( s ) . But if you are in a relationship and say to your friends that you are not going out with your boy friend on Christmas holiday they would think it is a little weird . Ah , this is a storybook for children . ( For me , this is better for languages like Korean , because study material is limited in my country ) . They tried to talk to Japanese women , and never to Japanese men . But conversation did n't last for very long . yesterday I went to the supermarket . I was surprised , so , I bought it . Infact , I am a vegitarian . I always eat carrots , broccoli and so on . how about everyone ? I 'm looking for new friends and practice English together . I 'm Korean , 24 , female . . People who ca n't see themselves do n't need help by a dog . Rowling `` who is of course the author of the Harry Potter fantasy series . I registered on this site because I want to learn English . Anyway , I 'm studying real English , recently . . . . Debut ! He acts that he really cares a buppy in the computer . I wonder if I need to put them in the refrigerator or leave them on the counter . It 's going to come and take my Tarot is a way of fortune - telling . I 'm a fortune - teller . Fortune - tellers has a part of counselor . So fortune - tellers need the ability to listen to other people 's tellings . Many people who need a fortune - teller have big problems . If you want to be loved on sightby everyone , becoming a good listener is very important . I have a violin competition tomorrow . I bought iPod touch , but I do n't know how to use it . Am I lucky ? An important feature of phrasal verbs is that they are typically idiomatic . Recently , I had a wonderful time . I have discovered this website today , and , as I want to learn English for my job , I have decided that I will write one message every day in English . But when I left home , the sun was shining brightly . I 'm going to send New Year 's cards to my old friends as usual . I will get on a bridge to see the first sunrise . I have interest in language and cultures so I begin to study English , although I ca n't speak English , French , Japanese I will never give up So this is very difficult , but I want to speak in English very well . So I want to find an exchange language friend . Let 's be friends ? I have funny story about getting this nickname . My name in Russian language can sound like Shura , which is consonant with this tasty food . The dish is made from grapes juice and nuts , and looks like red sausage . I have a blog . You can insert the Google advertisement ' Adsense ' . That was a wonderful event . I have to cook my father 's dinner at once , because my mother is out on a business trip today . Nobody is walking now . I have been reading about the present perfect . Have I learned how to form questions properly ? But I do n't know how I should study English . This is my first blog in this SNS . In the end , the song we played live was LAST CHRISTMAS . I was surprised to know the way different kinds of diets . English grammar looks simpler than Polish , but it has many more prefixes and sufix ( suffixes ) - before and after any word . The question was ' If you only had one year to live , what would you want to do ? ' . However , if my life only lasts one year , I 'd want to go to around the world by ship . So I am studying English as a global language . Especially , it has so many mountains . I often walk near the mountains , and I am always moved to see beautiful nature , I found I am very tired although I have done nothing . We have to live separately for the next 2 years . Yesterday , my wife and I enjoyed talking with Skype . After I checked into / After checking into the hotel , I went to Union Square to meet the private cable car that would take us to the dinner restaurant . It has been a while since I 've written here . So please keep writing here and I will continue to support you . I 'm depressed . Yesterday I lost my Polish - English phrasebook when I was buying coffee . It is small , red , and it looks like a dictionary . My wife is frugal , my children are well - behaved and cheerful . I want to try to understand foreign people and get various living in a strange country , and I have no confidence in my English . I like The Beatles , The Rolling Stones , and Simon & Garfunkle . to stand in the society . and stayed loyal to Frodo although the latter misunderstood him . The reason I went there was to buy some vegetables and other things . New onions and potatoes are sold this season . So , I bought them in the vegetable shop . I also bought eggs , strawberries , milk and so on . I was surprised at that there were so many people there on a Saturday moring . I thought I would n't be able to go to my music club today but I could . I went to the college 's club house where I usually enjoy playing and listening to music . But I am not surprised . Why is it that I live in Australia but ca n't make one Australian friend ? On the way back home after finishinga whole day of study , I thought about my parents who are working damn hard tosupport me studying in Australia ; I could n't stopmyself crying . They are 50 years old already but are still working 10 hours a day for their disappointing daughter who is a stupid burden . . . . and I 'd like you to help me with Chinese . Gender : male Major : electronical engineering and computer science . This are special plants , because they subsist from / they survive off of vermin . I have to achieve this goal before Chinese New Year , because I want to wear beautiful clothes , so I just have three months . Why are neighboring countries like China and Korea developing , and why is the Japanese GDP falling ? ? ? Korean drama used to be famous in Japan a few years ago . The first three days , we 'll stay in Cairns . Sometimes a student asks me some questions about the English grammar textbook . It 's raining today . That 's because I like sunbathing , swimming in the open air , and eating the freshest fruit . I 'm going to get wonderful bronze tan and a lot of unforgettable memories and good photos . My name is shige . Nice to meet you . Because I want to study abroad and go to law school in America . But my English skill is poor . I decided to study English through this web site . I used to commute by bike . You are ( all ) invited to my Japanese style homemade cyber dinner party today . Vermicelli soup - Seaweed and Okra Oinari san - Rice ball wrapped in a thin slice of sweet flavored deep fried tofu . Savory consomme Okra cold jelly How can I control this emotion ? ? The nuclear power Japan has been having trouble with the nuclear power . We usually gather to admire the bright mid - autumn harvest moon and eat different flavours of mooncake . If you have time to help me increase my vocabulary , I would really appreciate it . I do n't think we need that museum . They are crazy and makes me frustrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped Ross & Rachel , because I always thought they belong together . It 's because speaking needs quick response and what 's worse , the order of words in a Japanese sentences is quite different from English ones . After I start talking , I realize that I should have started my sentences in a different order . That 's why I decided to start writing English sentences . Mie , where I live , has a fantastic city called Matsusaka , which is famous for delicious beef : D My friend and I stopped at a convenience store to eat icecream . I want to have friends for all over the world ! My sister needed me to help her tanslate something from Thai into english . But I am not good in English . So I tried to use a translation program to help me , but it got the the grammar wrong . So , I 'm going to Italy I have to admit that when someone says that he or she loves [ enjoys ] my writing it makes me happy , but that is [ that 's ] not my reason for writing . I had to write in English , but I 'm afraid it is not [ it 's not ] good enough to write something good / interesting . I 'm a university student . I do n't know why or how they treat their bus , because everytime I took the bus , during the drive I worried that the bus might fall apart suddenly . ( the bus company is located at a small famous town ) BTY , the buses were extremely old , old enough to be junked , but I guess new buses are too expensive to afford . Today I will introduce my favorite building ~ The Great Wall . The labor force , composed of prisoners , soldiers , and workers , built the wall . I entered the university and chose english literature as my major , and I read a lot of english books every class . sexual and humorous ! ! However , I take a senior course which is associated with my minor and that course 's professor is the chair of that department . The professor said to me that he knows I 'm an international exchange student , but I have to speak more about the class and the next class he 'll give me questions about a main subject . I think it will help me to learn about English , but I 'm starting to feel little nervous about that . Right now , it is very fragrant in my room . I was in right field when we were in defence . If you need further information , please let me know . I heard that American or other countries ' university students are more serious than Japanese students . He is eleven . He plays games everyday ! Recently I 've had trouble sleeping . How comes it 's difficult to sleep ? I want to buy skating shoes . I 'm from Osaka in Japan , but I live in Santa Barbara in California now . I have stayed here for 2 months . I really want to watch splendid dances from around the world from now on . When I write a diary in English , I have my English corrected . I had nothing to do today . He always thanked her heartily . What I Think from Reading the Newspaper Many companies have disclosed their financial results between April and June . Of course , the earthquake also hit the Japannese companies to a large extent . I started watching an episode from season 1 for fun . Recently , I have been watching the 13th episode , of season 3 of that drama . My husband told me `` You look like you are addicted to that drama . . . `` However , I think it is entertaining and I think the writer of that drama is a genius . Others said if Ilisten to English ( English what ? ) one hour everyday , I will be surprised bymy English after listening a month . I prefer to as a foolish Old Man , and do something everday , and finally I will be successful . They were 20000 yen ( 200 dollars ? ) She is a conservative and pretty girl , so I gave her a short message to say : ' I love you ' . I thought she might be scared , and she said she had a boyfriend already , and they were very happy , of course , there was a rule that teacher ca n't have an affair with a student . . . . . . I would appreciate it if you could edit my writing or even leave me a comment ! I like snowboarding , but it 's too cold to go outside X - < I 'm planning to go snowboarding next Sunday , I hope that the weather will be good that day . I know but . . . . . I participated in a free trial lesson of English conversation today . I think I will not pass the exam . I have three chances to take the exam in this year . It was just a nap , but I slept nearly 6 hours . . . I would like to tell you some details about my country , because many people have misconceptions about Poland . I want a job as a machine designer . Somes scenes were pretty gross , but I 'll spare you the details . I have been checking all of the systems and functions in iphone So one of my new year 's resolutions is to publish at least one diary entry here per week , even it will only contain a few of words . I 'm also ironic , sarcastic , audacious and really aarogant ( You have no idea . . . ) . I 'm going to go to Tokyo tomorrow , it is a holiday . I had no holiday during this summer vacation , so I want to enjoy and relax . The woman said to me : `` This llama belongs to me , and I want you pay me for the picture ! `` I decided to give her some money to help . Everyone everywhere wants to get money from tourists ! ! I thought he would just play around and not wander far away but , suddenly my dog disappeared and I tried to find him . But I do n't want to because of the recent situation . the illegalisation of marijuana was done without any studies . Yesterday I was caught in a shower when I went out with my girlfriend in Ginza . It encouraged me to communicate with others . There were also a lot of people who spoke English well . They could speak with others easily and express their thoughts and ideas clearly . You can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get piss off and say that I 'm having a bad attitude . We arrived at the beauty shop at 2 o ' ( 2 o ' clock ) . I hate repairs to the train in the morning . I feel that the Japanese are very rough and that Western people are more like gentleman riding horse . At the drop of a hat , I 'll dump something into it . I think he has a good personality . At lunch - time , I had a special lunch . My friend is a chef and cooked Japanese food ! First writing This is my first writing on Lang - 8 . I just found this site out accidentally , and I think it will help a lot to improve my English . The other ingredients are Tofu , cabbage , pork and mushroom . The robot girl can smile . Hello ! This is first time to write a diary in Lang - 8 . Please correct my diary and be my friend ! ! ! This is my second exam ( I have taken ) since I came to UNO . My father , a retired policeman , said that if I want to be a policewoman , I have no need to get a Master degree and a Bachelor is enough . Although `` know all `` is an ironical word , I still pursue to be . I counseled a client for my assignment , not for money . We need to counsel other people and write reports . The word means boys who can not take an active , aggressive or enthusiastic attitude , and do not have an affinity towards girls . Like horses , rabbits , and so on ; not like lions , tigers , and so on . Personally , I do n't like effeminate , delicate men , so I hope `` carnivorous boys `` will increase more . Tomorrow , I will have my favorite class , so I hope my cold goes away soon . I had not ridden a ferris wheel since I graduaded from school . whenever you need me that I wo n't be far away . He told us this joke ; What 's the difference between a pregnant woman and a light bulb ? I have used this tool to train my speaking skills . I 've studied English in order to obtain skills to read and write articles about various science articles . In short , new scientific words continue to be created . The column went is like this . However the balance of your account is resettled everyday . This means if you do n't spend all of your money , the rest of the money is lost . So you should do the maximum with your investment . In fact , I think it is very good to study English with a textbook that is written in English . and I think using a Chinese for Chinese speakers textbook was pretty good . Years have faded away many peoples ' memories , but Hachi 's memories never faded away . I just do n't know how and where I should start . `` Some of students said that they were good at English . `` Also , I have to write some reports . . . Please help me to correct my article . What 's the difference and how can I use it correctly ? An advertisement I always hear the sentence ( nan datte yo ) in the animes . Do the laundry . I 'm going to work starting next Monday . It 's a little bit difficult to sing English lyrics , and memorize it too . so we decided , we went to the Chinese restaurant . We ordered sisami chicken . The overtime is usually 1 or 2 hours . I like to create games So I like to create all kind of games . I want to make friends all over the world . When I try to write a sentence in English I 'm composimg a gloomy sentence every time . I have learned English for many years , but I have not found a good learning method . I always see the spelling sheet before the test . The necklace with two stars is his favorite one . She was so friendly and smart . I 'm gon na write diary entries and essays as much as I can . We can help each other ! The whole world is so exciting , is n't it ? Just after running , I thought I did not want to run , Now , I have a little muscular pain . I would love to learn feminine stuff that relates to American culture from her while I doing language exchange with her . He is a pianist and accordionist in England . Surprisingly , she attended the same university as me but I never met her on the campus before . I have studied english hard since last month , , , it 's our city 's most important festival , because the man who created it was our king . I will keep on writing , studying hard and become a good speaker in English . The Autumn colors I love to see the autumn colors . But I always fail to go at the best time because I ca n't wait and go before they look the most beautiful . Since the temperature in October was so high , , the leaves changed their colors later than the previous years . It is my second time traveling in GuiLin . The last time I went to GuiLin was one year ago . This time I feel GuiLIn will be a little noisier and it will be more modern . The environment has been broken . I worry about whether in the future GuiLin will lose its beautiful scenery . This time I stayed in YangShuo for three days . It makes me feel like YangShuo is so small . There are too many people in YangShuo . I do n't think YangShuo is OK with so many people there at the same time . However , I must get the skill of writing and speaking English for business . I am shocked ( surprised ) to know the reality about people living in a suburban area . We enjoyed going to the grocrery store , preparing the BBQ , and talking about recent things . I ` m a freshman at meisei university . I study english everyday . I think studying english is very interesting . Because my university is in Seoul , I 've been separated from my parents , who live in Chung - ju . The reason I took that exam is that it will help me to manage a business someday . I went to watch movie of Brazil President Lula . I was so excited . when we talk each other , I could n't help but feel embarrassed and stammer It was very hard , but it is very helpful for my work as a cashier : ) I am still in training ; however , I have to run the till by myself . I was delighted ; therefore , I could really enjoy working today ! It has been a long time since we had been working together , maybe 8 years ago or so , but we still get together and go drinking around twice a year . By the way , a Japanese actress whose husband is American said , even if he is in a bad mood , once he eats pizza he changes to a good mood . I 'm glad to have joined this community , because I want to communicate with people living in other countries and to learn about their culture . Even if I had a bunch of opportunities to listen to English , I had n't realized them . They were very beautiful and looked like big flowers . Finally , Tegomass which is a Japanese idol unit appeared on the stage . I was so clumsy , was n't I ? But their power was great ! Even though I have n't watched this match , I am pround of the whole United team . Shirakawa - Go is one of Japan 's World Heritage Sites . This paper presents an approach to support top - k flexible queries using knowledge discovery in large data bases . The new portable game machine Nintendo 3DS was released on February 26 in Japan for the first time in 7 years . I 'm curious about how many people will buy it . Pssive : Fruits are going to be eaten by me right now . . I look like I just had my hair permed . I made a lot of foreign friends and learned a lot . I ordered a new iPod touch from Amazon on September 2nd . My friend told me about this website . When I joined in , I found that it 's very interesting ! I 'll write something to describe my life , and learn English with you . Seating Arrangement I confess that I have worried a little whether I can graduate or not , since I submited a master 's thesis . I am going to introduce something I have learned , because it might help you if you live in Japan . It is the etiquette of seating arrangement . In Japan , higher - ranking people should have seats which are in the inner part of the room . Thus if you invite your customers and clients to your office , or if you entertain your guests at a restaurant , you should give them the seats in the inner part of the room . And you should sit down at a seat near to the door . Conversely , when you are invited as a guest , you will be offered a seat in the inner part of the room . I 'm sure he was very annoyed when Rowling sold millions of books . For example , writing a blog becomes resentative of modern life . Also , I write various kinds of blogs . It seemed he understood how difficult it is to master a foreign language . When he was a little , his parents encouraged him to do everything which could do himself and treated him as a normal person . The minimum temperature in Tokyo was about 0C . I like some American culture . I often practicing dancing with my mirror . However , I can dance freely at nightclubs . Hello everyone ! Her neigbours often helped her . But I dont know what should I do , everytime I look at a long English article , That morning , we got up really early and drove all the way to a distant aquarium . It was good to see the orca , however , I had little time to watch the other fish inside of the aquarium . It took me several years to strengthen my perseverance . I often change my mind easily and fail to get through some difficulties in my life . My friends once said to me , `` You are n't mature amply ( enough ? ) . My writing English is better than my spoken English . and encourage each other . I will stay in Colombo for about half a year . But there was no colour that I wanted . Her clear explanations were good . She even included a picture of an anvil , which looked weird and unique in my eyes , especially because it looked like a horn . Well , I 'm likely to faint with fatigue , because I did n't rest enough . As a matter of fact , I spent about two to three hours talking to my friends on Skype and surfing the internet , so I did n't have enough sleep . It could n't be helped . The least I can say is , I did n't waste my time thinking about the things I could never change . My job is as a private tutor for a student . I have recognized what I really do n't like about cold weather . Every morning waking up is so hard . I am sleepy . . . and outside also is cold . It makes my motivation smaller and smaller . Idiom of the day : ) Whenever I go home at night , I would stay overnight at Nanjing and take the next avaiable bus , in morning . It was so difficult for me while I watched this movie . I never thought that I would have to face that thing at this moment It 's never a problem for me and I always know what I want . What should I do ? Shopping Mall Glee is about high school life and musical drama : ) `` Soybean flour `` is called `` kinako `` in Japanese . Today my choice was Mary . One sentence , or one word , I 'll be happy . I start writing this diary today . Today , I 'm very angry because students at my university break the traffic rules . There is a large road near my school , we must n't cross the road near the school because it is heavy traffic and it 's dangerous . I like travelling ! ! ! ! I wish I can get to know about lots of interesting things here . hopefully twice a week . so I became a member of a gym which is very famous here in Toronto last night . I 've just watched a sad episode of a korean drama series so I feel very sad now . It helps me to learn a lot of information and knowledge about computer and software devices . I know the Linux0 . 01 architecture and how to implement and compile it on my computer . But if I did n't go searching any opportunity to meet such people , I could only see my colleague . Most of their minds are limited . I 've felt so lazy ever since I moved from Seattle down to San Diego . I ca n't even count how many times I get angry at them from the moment they wake up until they go to nursery . I think I have the ability ( or potential , which is better ) to study and enjoy tourism or hospitality . Give me a chance , I can prove my strength . I spent an hour everyday , memorizing new words . I worked hard independently everyday . I usually went to the library to memorize new English words . So he decided to try again . I sometimes have difficulty reading an article or paperback , which is written in English , more than usual although I do n't know why . The manager must speak , read and write English in a high level of proficiency utilizing technical terminology . I 'm not authorized to make a decision from my company but required to make a decision for my client . Today I registered a Lang - 8 account . Nowadays , mobile phones are rapidly becoming common all over the world - even elementary school students have one . I had work until 12 : 00pm last night and right now it 's 8 : 00am , the morning again . I work for a Japanese restaurant as a waitress remove the bacteria on the surface of your body makes you weak . For example , he never eats at fast foods and he recommended And he recommended for me to friend went to interview in at the university . Curry is hot , Naan is a little sweet There was a mirror on the wall in the Cafe house . When I realized that , I could n't stop laughing ! Youtube content is good for listening practice . Afterward , almost all of my colleagues went drinking again . However I do n't know if I will be able to do it this year because of my busy life . Oh my God ; It cost 80 thounsand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price ; just 10 thousand Vietnam Dong . I have been living in Melbourne for 1 year , I feel my English skill is better than before , but I sometimes get disappointed with myself because when I listen to news on the radio or watch TV , Recently , I have been studying for the TOEFL Test to study abroad next year . Because it is so different from Japanese grammar , and there are sentences which contain difficult words for me , for instance , `` anatomically `` , `` Confederate `` , and so on . Nothing is difficult if you put your heart into it . So I believe I can be a good doctor in the future . I 'm sorry I posted a new journal . It 's great cause you can go there just to kill some time and end up staying there overnight . This week is very hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAMIE STREET podcast on my ipod in English . Koreans are used to having an English name for easier communication with foreigners . The closest pronunciation Because there are duties to do everyday . Besides , I am a little inefficient so I cant do those quickly . In my city electricity supply has just recovered . With angel faces and perfect body proportions ( tiny face with long legs ) , they seemed to walk out from the pages of a fashion magazine such as GQ or ELLE . I remember some researchers said looking at beautiful women can make men live longer because they can ease men 's blood pressure and make them happier . I 'm so interested in other countries and cultural exchange interchange with many people . I guess my English is wrong . I really feel that I have to study harder One younger member asked me a question . I also have some appointments to have meals with my friends and colleagues this December . my reasons to study english so I have to acquire English to work well . My plan to study english is to write english compositions and to watch the DVD `` Friends `` , which I heard is an interesting comedy in English , every day . I heard there is a good Gyoza restaurant near my house . Lately , if customers do n't exchange their cell phone , they can not switch to the low - cost - plan . The other day , I went shopping , I splurged on clothes . down the drain . You had better think more before you pick something up . But I ca n't go because of heavy rain . . . I have been studying Chinese for six years . Mid - autumn festival According to the law , every Chinese can get rid of their business ( stop business ) to celebrate and enjoy themselves . So , in spite of ( despite ) the high fee , we are glad to celebrate it . Help me please . By the way , I started exercising with a jump rope today . Today I went to an At & t store and had someone put the screen protector on my cell phone . I went for a round of golf early Friday morning . I 'm a beginner at golf . This place is usually for taking shower and has sauna . If you come to Korea , it will be a good experience to go there . The new one is always better for a visitor . So now you can make sense why people go there to sleep . It is like a dormitory room without bed , just small mattresses One for taking shower and others are for sauna and entertainment Some store have many programs during the day such as yoga lesson , dancing lesson , etc . Koreans have a typical way of taking shower . and he lives as professional composer . Reading a philosophy encyclopedia Tomorrow I 'll write more than this ; well I think so . See you later guys . I ate a chicken curry . I did nothing but drink alcohol . I want to communicate with a lot of people . I studied English tonight . I started reading the book , Winnie - the - Pooh , which I received from my best friend Yang - gaeng . The writer explained why his name is Winnie - the - pooh . Because I am a beginner at English . The writer encouraged Piglet . In spring every year , Japanese hold parties in which they welcome freshmen . A few days ago , a drunk celebrity was arrested on charge of indecent exposure , but many people signed a petition against this . I should say `` arigatou `` to him . It is my first time to use this blog system . Probably most of you have n't ever heard about Miaoli before , since it 's not as civilized as Taipei or Kaohsiung , but it drew people 's attention by holding Taiwan Lantern Festival this year . But it really was a great festival . You can see my pictures . I believe that there are many pictures of the Taiwan Lantern Festival . If I want to use those three drives in the new one then they must be all connected by a ribbon cable to the mainboard of the new one . From the last day of April to the beginning of May , many people have had a long vacation which is called Golden week in Japan . during the mid exam period , I did n't have enough sleep . there were two guys who have big muscles . when I finished it , I could n't laugh about myself ^ ^ I appreciate thier help and advices . I also have a lot of appetite lately . I 'm focusing on studying English now , so I do n't exercise enough every day . Kiyomiya , a very famous director of a Japanese professional rugby team . As well as me , my boss is also looking forward to meeting ' lang - 8 ' staffs because we use and like it a lot ! There are different kinds of ' Mikan ' . She answered it is called `` mandarin orange `` in English . I will have to take this exam tomorrow because the exam needs two days . I ` m the second one , today . I showed a taxi driver the actual address of my hotel but he did n't know the place . I decided to ask the taxi driver to take me to a place close to the address and get out of the taxi near the hotel . I lost my way and walked for one hour with big luggage . ni - men - hao ! ! ( Hi folks ! ) Yesterday , I wrote the sentence which I wanted to have corrected . I 'd like to use this valuable opportunity to improve my English ability through communication with people who use this site . Though I read my text book , I ca n't judge if my pronunciation is right . treatment due to their wealth and celebrity status . permanently though he later said he did so willingly . They say that while ican African children from their extended families , Do you have a favourite ? My brother , his family , my sister , Me and my husband my husband , and I gathered there . If there are any disadvantages , it is that I have to get up early to go to swim . Especially how he used a trick get bear sick . Ichiro has set a record of 200 hits for 10 straight years . When you bite into on , it will dawn on you that the yellow part of the egg is solid and the white part is liquid . I went to check for the time when a ship would depart [ back ] to Puerto Galera . S through the language course that the university I 'm studying at offers . Hello . Especially . He is shy , so I thought he would hate me . ( = this means grandmother ) `` , and he wanted to hug her . The memo 's contents are life , diary , work and so on . I want to study English more so I can talk to foreigners . I have to be careful to avoid getting influenza . Today is Christmas Eve ! I hope I can learn more English and share my life . Today , I went to fishing trout in Tihayaakasakamura . I have to grade 3 types of placement tests for new foreign employees to work at Japanese companies . Oh , I do n't have time now . There are many dishes and many things such as chopsticks and so on . I think there are too many dishes and we should get rid of some . I was very uncomfortable . Thanks to them , I could re - charge , and I think I can manage my German vocabulary test and report . my mom has a strange characteristics , she is always on the ignition to me , maybe beacuse of her busy work , she is always unhappy I do n't know how to communicate with her ! Today 's menu is Kimchi fried rice . Have you ever eaten Kimchi fried rice ? I 'm a university student in Japan . I 'm interested in this material because some CNTs behave as semiconducters , while other CNTs behave as metals regardless of the fact that both of them are made of the same carbon . When we are able to make some deviceS from CNTs , we will be relieved from this problem . If I feel that if there is something wrong I continue to think and not act . The Doctor said `` you may have gout `` When I first saw this cartoon was five years ago , my foreigner teacher showed it to us , but at that time I did n't know the meaning about that because it had no translation . One of my friends is going back her own country at the end of October . I 'm looking forward to meet a lot of foreign friends . I was too tired to do a lot . My ferverted appetite may be because of frustrations rather than longing for food . I will introduce you to an interesting article in the morning paper . Teachers are Filipinos or Filipinas . The reason is because of it 's inexpensive expense . character and characteristic Before that , I had been working at the front line of research and development . that is exciting to me , I have followed all the news on TV recently about the disaster that occured in Japan , it 's too terible and unbelievable , not only the impacts on economics as a whole , the disaster also impacts the mental state of its people . Salted grilled fish and fish hamburger steak . ( Spelling ) But it began raining a lot at night . I think it 's better to make Honey exercise earlier . Sorry I was not keeping my diary I want to improve my English level with nice people 's help , besides studying by myself . I made a big coaster and a small pompom with beautiful colored felts . Can and ca n't issue - could someone familiar to American English help me ? Distinguishing between them is really important , because the meaning is opposite . An British person once told me that they pronounce `` ca n't `` like , `` carnt `` , while they pronounce `` can `` like , `` kan `` . Could someone who is familiar to American English help me ? This term , there is a new English teacher . He is very handsome , humourous and full of personality . In his class , we are relaxed and laugh all the time . We hope we can improve our oral English . In the future , we will be able to talk with foreigners easily . I 'm sure it is n't a dream or a hope ; it will be true . Learning languages is learning a new way of thinking . Both languages for computers and languages for humans broaden my world . But when seeing it from another point of view , I was surprised that so many trains run punctually and many people rely on the railway system so much that they get angry because of a slight irregularity . I learned many new words from the subtitles and I practiced my listening as well . To write something in English is difficult for me . Please give me your knowledge of English . And , I will go abroad . I am watching TV ' PONYO ' , ( which was ) created by Miyazaki Hayao . I like their singing ! I really love their sound ! ! Imagine what I am trying to express . I also spent a lot of time in the green areas / green parts of London , my favorite park being Regent 's Park ! One of my only bad memories is an incident in Camden Market where two Iraqis became pissed off when I did n't want to buy what they were selling and one of them even threatened to beat me [ up ] ! Today I finally got to relax , because my niece was not home . Generally , my elder female cousin often asks me to give guidance Usually , I treat it as interesting , but sometimes I also felt a little tired . But there is one problem , which is that we ca n't borrow them . It 's silent in the office , our boss is traveling ~ We have nothing to do , so I started to daydream . After lunch we strolled along a small streat . ( actually I do n't remember exactly , but it means nearly brilliant ) I am worrying . . . But I could not go to an amusement park because of the rain . I became a member of `` Lang - 8 `` today . He studies athletic training in the U . S . A movie called `` Alice in Wonderland `` was shown today . It sucks that it 's way to hot ! ! It is holiday season in Korea . I 'd like to make many The man was eating potato chips . It was very noisy : ( However , traffic accidents caused by bicycles have increased . So the Road Safety Association proposed a conclusion of the bill related to bycicle 's road . They are in the training department in a Tully 's coffee Japan . It 's been a while since I wrote my journal . I was busy and I actually forgot about Lang - 8 . I became their fan when I heard `` American Idiot `` . I discovered this web site accidentally . This is the phrase of Owl City 's `` fireflies `` song . I have to go to the immigration office to solve this mess . I went to ROUND - 1 last Sunday with my friend : - ) We ate misokatsu . The travel was so good for me , because it changed my sense of values . But if they study the language , it will be possible to express themselves . My daughter 's grandma set up dolls for the day . My family and friends in Japan were okay but we ca n't really feel at ease . American Yahoo account I strongly recommend you to make one too . I was surprised by that guy at first . No , I 'm kidding , but it is true that many people here have fine mustaches , and now I have a mustache too . I hope that either she will change her mind or my razor will suddenly start working again . I take lessons everyday . She was really friendly and kind from the beginning , so it did n't take so long to get closer . I go to university near Nagoya city , Aichi prefecture . I have been here for 2 months since I 've been admitted to this university . I 've not been doing it , but I was interested in it . Recently , _ we have been getting interested in `` eco `` . These are said to be `` eco - friendly `` . But , _ I think these are just more friendly than what they used to be . I think what we should do from the beginning is hold back and use what we already have with caution , _ not buy new things . Nothing at all . If I feel hungry , I will go somewhere around here to find something to eat . Whoever is asleep , sleep tight . Whoever is eating , eat something delicious . Whoever is daydreaming , have a good dream . . I - cried - out - in - spite - of - myself - `` unbelievable `` ! My father is the director of a semiconductor company . I 'm sure I will become a successful student at junior high school after graduation . the details and he agreed to hire me . Before I started working there , he sent me a message and said he did n't want people in April , he would let me know again in May . Today he sent me a message and said he already has someone to help , and if I am interested he will be hiring again next month . While I was waiting to start work I practiced using Photoshop a lot . Before I had planned to learn Photoshop for a long time but I did n't have time to learn it . Noy , who is going to continue her business again . . The reason is that a caregiver 's salary is lower than other jobs despite the hard [ ] work . And customs are a little different in Japan and the Philippines . I think the Japanese government should always support them . It must be that something happened because two police cars passed . The public security in Japan is good , but crime is everywhere . noticed the address data was missing . the & nbsp ; addresses again . It will be the eclipse that last the longest time in the 2000 years . I think that English conversation schools should charge I was happy to hear the phrase `` you name it `` on the radio . On the American Forces Network in Tokyo . But My cellphone was n't ring at all . Other contestants recited formal speeches , for example some presidents ' speeches . I thought my recitation was out of place but one of the professors said it was good because everyone knows the story . They will explain to them about their medical treatment proceess with a kind smile . But I can go to the river . When I was a student at university , I climbed it two times . First , it was rainy and I could n't climb it on the top . When I climbed it at midnight so I could see the morning sun , Maybe they will offer me some help for my hard study and maybe I will show them around and bring them to some exciting places in return . I talked to two Filipino women with Skype I talked with two Filipino women with Skype tonight . I have done soccer , swimming , volleyball , running , and dodgeball . That day is a special memory for us . it opened in octber in japan . She is a very beautiful Spanish woman . I have glasses and contact lenses I do not believe in mysticism , but maybe my team has a bad karma ? I 'd like to know that if people use this phrase in their conversations ? I 'm excited , but I feel a little uneasy . Every morning , I get up at the same time , eat reakfast and go to school . I want to meet crious people from other countries . A woman taught the violin at elementary school . At last , they played at Carnegie Hall . Someone I know from New Zealand always says `` Retarded ! `` . She said that to me and she says that to anyone or anything . I think we have no right to say what is good or what is bad , every character has its beautiful sides , differences make this world colourful . Kawaii means cute , but I think kawaii contains other or different meanings , and it is unique notion in Japan . So I guessed that the person who holds ( or held ) that party must have considered to appeal it world wide when he named the event . Following the Oxford English dictionary , cute has three meanings : who is little blind . Learning by myself is aggressive . Before that , I doubt that this passage is readable ! ( + _ + ) I went to two University festivals in Tokyo , a museum and a movie alone . It displayed the History of Letters and stamps . He wants to be the wonderful parent , the great couple , the successful business man , the great player and the intelligent doctor . Even on the other side of successful career , for example beeing a hippy . I could not move my arm the same as before even after the rehabilitation . In Japan , most high school students wear loafers when they go to school . I feel comfortable ; ) This is my second time to writing a diary . And we must live it so as to feel no torturing regrets for wasted years . Never know the burning shame of a mean and petty past . Live so that in dying we might say : all my life , all my strength was given to the finest cause in all the world - the fight for the Liberation of Humankind . `` l hope everyone can read it in their free time , l believe you will like it . I hope my friends `` will `` make `` everything `` all right . I 've recently begun to like jazz . Maybe because I 'm a beginner . . . We walked for 2 hours Hyperthermia currently is a serious problem in Japan . Be confident and persistent ! I love this style , I just want to see something while I ride my bicycle . I can go anywhere I want . This is the time when junior high school students take the entrance exams to get into a public high school . I could n't find any empty seats so next time Iwill come in the class earlier . and I have many friends in the dormitory and classes this semester . I am fed up with arguing about problems . It is the first time I have gone to the Mexican restaurant . Sometimes , I dream of speaking English fluently . I am afraid to be an adult . or I am afraid of being an adult . Hello , everyone ! Today , I made a gratin for supper . The produce is very fresh . Tomatoes , cucumbers , eggplant , potatoes , pumpkins , cabbage , I am happy to find a site like this in which I can study foreign languages . The world ecomomy is in a serious depression , particularly in America . The lake was glowing and shimmering . I went to the Yahoo Dome last Saturday . Autumn has come , they appear in the trees . The graduation ceremony of our university takes place on 17 March . We go there and see off students who graduated this year . A Japanese girl who is 18 years old and can speak English well came to the inn yesterday . What a little devil , she does n't have enough experience about anything , but only your sex experience is more than ordinary , is it ? It has a soy sauce flavor that 's a little sweet as well . Because we have common topics and talked very well before . I said I will get off soon . And we compared the philosophies of love between Japanese and Korean people . I 'm not good at electronic staffs . . . so now I 'm fighting ( struggling ) with them . With all other universities that are public of my country , we are protesting for a better education , that is equal for all . but the government of my country , does n't like this ; they allow good quality eduacation for only a group of selected of person . Also when we try to protest , they put the police in the street , with the order to arrest for no reason , with the utilization of excessive force . My major problem in studying The cartoon 's title is `` to run , Honey ! `` I wish that all that is happening in the world will sometimes be solved by children 's thinking which is naive and simplistic . . I stayed in this house for 2 years . Against my expectations , I 'm having an enjoyable time here . It means the reunion of families . unfamiliar with this young festival . People who own private cars are encouraged to choose bicycles or Spring is a nice season for cycling , so I want to do it again and discover moreinteresting things ! I had two cooking classes , in one I baked a pound cake of mugwort and in another I cooked some beer fritters . My roommates are still in their beds . bbish it 's rubbish , is n't it ? Hello . I could pass it safely . Wrong spelling ^ ^ Hello , friends . . studying other languages seems difficult if you do n't have the will power to do it . As for me I plan to do it with a iron will . I like to study other languge . I am so nervous that I ca n't speak English well , even I ca n't speak Japanese very well . However , I feel so isolated that I ca n't open my heart nor relax myself . and it struck the mainland of Japan : ( But yesterday afternoon , my classmates called me , saying that if I go swimming with them , then I would feel cool in such hot weather . Although I was in bad mood , I still accepted the invitation . The air was filled with noises . It seemed that there were so many boiling dumplings . However , we still had a great time there though it was too crowded . We played the swimming ball , had a competition of 50 meters speed swimming and had other games . I can also play the guitar . She was afraid of the dark , insects , tthe color black ( she belived that if she watched for a long enough time somthing colored black , a monster from the Black Kingdom would come forth ) , touch a scary picture ( she thought that if she touched it , it might attack her ) , snake , knives ( she thought the knives might want to cut her ) and many other stupid things . All her pocket money she spent on clothes , knives , parties , and alcohol . They belived that any day Amy would come back . Now Amy lives with her mum and daugther . Her daughter Lisa is 4 . Yesterday I went a bar with my friends and drank alcohol to unwind , and there , I played Genga for the first time in my life and it was so exciting ! ! I heard ( that ) it was fun , but I did n't know how hard to concentrate to get rid of a piece from the column . And why we are given our own consciousness . The bottomline is that something commands our superior to tell us to do something , and then something makes us feel against . Actually , I was supposed to go to my lab and introduce our lab work to interested students . I spent too much money this week . Do you like the time when you know that if you want to go to other country , you wo n't need to go to somewhere to get a visa , you will just press your robot 's hands and it will bring you go to anywhere that you want . Exotic Zest I watched `` Heroes `` tonight . I am glad to have everyone to help me to improve my languages . Also , I want to get some techniques to improve my languages . Everybody has stories to tell and I can also say that story - telling is a part of our lives . A little while ago , I watched a TV programme that introduced pancakes in Hawaii . Raising kids / children is very hard , especially two children . I ca n't imagine what kind of mom I would be . It is very sad that tomorrow is Monday . It rained hard . Today I almost overslept because my alarm clock did n't ring . It was a good day because I did it all with my girlfriend . Oh , I have a feeling no one gives them to her . So I try to look carefully around the hall and at customers . so I could n't concentrate on the customers . I had to go to Google Japan inc . , on business . Today I 'm going to Gumi for a business trip . I read from a news articles that the average population age is the youngest of the cities of Korea . I do n't know if it 's dangerous or not . With work , I 'm choosing a fantastic relationship . . Lull : My Vietnamese colleague asked me to go to a karaoke shop and I went to karaoke . There were many people who sung songs in Vietnamese . Most of the songs were Vietnamese . It was a good way to experience Vietnamese life . Recently , cities have been very lively . I was cheered up by the beautiful display of lights . I 've just organized a Free Japanese conversation club around Tokyo for foriegners . I want to gather foriegners who live in Tokyo . So , I need to write a journal about this , and paste another web site or make some fliers as notices . Well , I wrote the journal right now . < The journal > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Free Japanese Conversation Club @ Tokyo . This is for foriegners that live around Tokyo and want to study Japanese or make Japanese friends ! Gathring and talking using Japanese . ( No Japanese skills required . so the only class I attended was `` gender and modern society `` . There are some mixed baths in the countryside of Japan . Sometimes I do n't go to class , and then after class I do not catch up on work . My husband had a cold lately , so I must have caught it . . . Recent , I wrote on lang - 8 , but lang - 8 did n't receive . She has a long hair and coffee - brown eyes ^ ^ . I 'm proud of her . She is a student at an university . Her university is a dream of many people in my country because It gathered excellent students . That result worries me ! I was very worried , because the test result is level 1 . The basic rule is that you try to beat your opponents by throwing your cards away . People have been making laws since ancient times . If there were n't laws , many people would kill each other and we could n't keep managing our society . . Laws barely restrict our instincts . Nobody would deny my opinion , because all people have emotions , such as hatred , greed or jealousy , against someone . Light was gradually disappointed in laws and police agencies . From then on , Light called himself `` God of the New World `` and started cleaning up the world . My husband and I had been concerned about the poor visibility of the front part of our car which we just got last month . The sauce was made from soy sauce , garlic and honey . Though everyone looked tired , we enjoyed climbing . But I could n't enjoy the beautiful view from the mountain because of a dense fog . Today , I decided to go downtown and join a weekly free talking ( conversation ? ) club organized by a language institute . Yet , unfortunately , they said today there was nothing scheduled because it is a term - break period during a public school vacation . I 've never booked an encounter ( the lesson with the teacher ) at a time without `` war `` . The girl from the Cultural Bliss club gave me three Mexican rolls ( sorry , I do n't know its name ) today , saying it would be the most delicious food I 've ever had . As a responsibility of his job , Barry has to search for the statistical data of average revenue in specific occupations . In Japan , ordinary people who have public health insurance pay only 30 % of the total cost . In my class , teacher said ; My husbund and I went to the hot springs last weekend . and of course I have to answer them in english . if you found any mistakes or kinda correct but awkward expressions , please correct them . I 'm going to go to the restaurant called `` Shitamachi no Sora `` ( it means `` downtown sky . `` ) I hope to do n't commit errors otherwise I will receive ( ? ) your corrections . Melody is the the little girl 's name , and the soundtrack of this movie was produced by the band `` bee gees `` , whose music is relaxing and comfortable . I will go to the Youtube website and almost all I watch is cover songs . I hope , therefore , you will correct my diary , and please be friends with me if you do n't mind . Sometimes I just want to talk to her and listen her voice , but I do n't know what to say . Read a dictionary ? When I came back from the department store , I tried to find one on the internet , but I ca n't find one yet . It 's a ceremony for young people who become 20 years old . And also , I want to ask everyone : do you have a such a ceremony in your country ? I start to learn english today in lang - 8 . If you are a native English speaker , you can join us to tell us how to study English . Soon I will study Chinese or Japanese at University , but I do n't know exactly what else . . . I 'm not sure how I can make the sentence if I want to talk about this topic . Are these sentences correct to say ? A lot of mosquitoes come into my house every summer , so I have to take my anti - mosquito device out of the closet . I would like to know the difference between Andrea LeBlanc 's life completely changed after 9 . 11 in 2001 . He had been teaching cultural geography at the University for 35 years until he retired . Dad just said the same thing . yesterday . `` I changed my instructors a month ago and I am not use to the styles of the current instructor . You can barbecue ( or grill ) whatever you like , such as sliced beef and vegetables . Usually people go to Yakiniku restaurants for dinner with their families , friends , colleagues and so on . So when I get enough skill , I can teach anywhere in the world ! ! Since my senior delivered a really good extemporaneous speech that dealt with disguise in food and whistleblower , I thought that he would be the the best speaker at extemporaneous speech , but , to my surprise , two out of three judges gave him third prize . The reason they gave him the third prize was that he delivered the extemporaneous speech so well that judges thought that he prepared the topic and luckily picked a good theme ( In extemporaneous speech , speekers are given a theme . ) randomly , so the two judges lowered his score in order to be fair to other speakers . League , so it is the contest that determines the best speaker in E . S . S . We are very grateful to the international assistance . I live in western Japan and have been very worried about the region . I have been thinking about what I can do to help them by watching TV programs about volunteer programs . how to keep a relationship I am struggling with a long distance relationship . Tv influences people 's behavior . I think there are many positive influences that come from watching Tv , but when I see the word influenced I come up with negative things all the time ; it 's too bad , and maybe I should be forced to write about problems . Today , I 'm happy because this is my first English journal entry . Actually , I do n't know what to write . I will go crazy . My boyfriend and I planned having a date on that day , but we could n't because of his grandfather 's operation . To be honest , I am disappointed our date was cancelled . However he sent me an email and promised to celebrate it next time . Somehow , I found myself tired of this boring life that I am living now . I am learning both English and Japanese , but they are not as easy as I thought . I took a deep breath and said to myself , `` There are things that need to be changed `` . I was in eastern Europe , Budapest and Prague , their beer was much cheaper than in Norway , where I live now , so there was no reason to stop drinking beer for the whole 2 weeks . We have met before , Annette : I really really wanted it , but I could n't find the store . It was hilarious ! ! I could n't breathe well ! So , I can bite him from the tail , better than eating him from his head . We were really busy in preparing , and we just could n't stop practicing ! What a funny scene ! My teacher gave me this chance because she knew that I want to major in English in college . The composition titled `` A Field Trip . `` I wrote something interesting and what I learned from my graduation trip . I wish that every senior will have a beautiful future ! At first , I was happy that I do n't have to do house work , but now I feel bad for my sisters who are jealous ! In the new year I hope that I can get a great TOEFL grade , and I hope that all my family and friends will be happy all the time . I went to KARAOKE yesterday because the Freshmen party was held by the one of the freshmen in the university which I will go to . Also , the affect of the earthquake still continues . I felt quite curious , then took it off and decided She has read innumerable books and we often discuss the content of some of those we are both interested in . She prepared for the examinations last whole year because she planned to study further in the USA . I was actually hoping to eat at this restaurant . So I was very excited and it made a deep impression on me when I ate Thai food . I almost lost my life , but I at last defeated the difficulties and caught my life again . So I hope everyone can have a happy life , I desire happiness and health . I desire to improve my English , and can speak fluent English to talk with my friends . In the 20th century , our right of existence was accepted . In the 21st century , our right of non - existence will be accepted . I will visit the US next year so I need to know more about US culture . It 's different from Japanese culture . It is absolutely rubbish , but can you guess why I wrote like that ? The Korean woman who served him in the small restaurant was probably surprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . BTW , I ` d like to recommend chili pepper Kimbap if you like spicy food . So I want to practice writing first here . . . He told me that the Spa is becoming popular in the Filippines . We think it is enough to have rice balls even if without side dishes for lunch or dinner . First of all , boil soy beans . My new work place is situated on the outskirt of Seoul , surrounded by the greens . reminds me of the forests in New Zealand that I 've visited 10 years ago . Today , I joined the language learning current of lang - 8 . I am very excited ! ! It will make me vigorous . The color around me was changed from the moment , he said we have to , divorce , from a pastel color to a dark one . I will go to the library with my friends after finishing my classes . so some messages are from Europe , Thailand , and Argentina ( which , btw , is located on the opposite side of the earth ! ! ) . . . I do n't hate it . Can you read what is written in the photo ? But I ca n't take consecutive days off . It was horrible ! ! ( Reading picture books for the students in my son 's elementary school , and English books for mothers and children at the City library . ) And today , the seasonal ones ( work ? ) have started . Last Friday , my son caught a cold . Because I changed jobs this month , I ca n't take a paid holiday . It 's a great place , but not a very good time . because it 's first time to write my diary in English ! ! But I 'm a little bit worried about my English . Congratulations ! To tell you the truth , I still dont wanna go back my country , Japan . But unfortunately , its a time to go back and , it 's time to speak about what I 've done in the U . To begin , with I really appriciate having been given an opportunity to study at St Norbert College as a ESL student . For almost seven months , I 've studied English at St Novert College . For almost seven months , I 've considered that , I am talking to people who have totally different backgrounds from me . Since coming back to Korea for the holidays , I have been hanging around with friends . I wore a sister 's costume . It was popular with mothers , but little kids do n't know who the sister is . Some students thought I was dressed as a ghost and felt like crying . There are 2 more months until this year is finished . I have a problem at night ! July 2 - 5 I had my guest . A beautiful girl from Malaisya and her parents . We went on the open bridges at night , and saw Night City , but my guest was very tired and slept the whole way . ) ) ) Through 3 days we all understood each other . Shopaholic ( I think ) series by Sophie Kinsella and Dean Koontz 's books etc . What I wanted to write in today 's entry was that I need to review my posted entries and check my weakness in my English one more time . `` Whenever I call your name , I feel my tongue rolling smoothly . Please help me with my language and problem . because I was very sleepy . Japan 's climate is probably subtropical . I loved her so much but I ca n't meet her in a real time anymore . I was surprised at the safety of New York . Before I went to NYC , I thought it was dangerous to use the subway at midnight in NYC . But there are many immigrants in NYC , naturally . I feel NYC is one of the most adorable places in the world . I know that my blood type is O after I checked , and I heared that it is better to donate 200ml the first time . Studying languages has always been a topic among people . In short , a brighter future is waiting for us if we make good use of the studying in our school . one little girl passed on the road by the beautiful butterfly , the girl looked at the butterfly . and the girl said : `` the butterfly is so beautiful `` I went there to attend an english conversation lesson today . Although I filed a complaint to him , I did n't feel good . When I feel stressed I like to take a long bath or watch a movie . I prefer comedy movies to action movies . It is fun to watch if there are unknown actors in the movie . I heard Michael Jackson say `` I love you more ! `` in a video . I wonder what it means exactly . . . Second , I jogged 5 miles this morning and practised golf in the driving range for 3 hours . I wanna be a translator . A well - known hypnotist was invited on the show . He hypnotized some audiences by giving orders while they were somewhere between conciousness and unconciousness . If we are saying some negative things about ourselves , we are hypnotizing ourselves in negative ways . Because we were there from opening time to closing time , my legs were starting to hurt . That night , we had a lot of fun talking . We had a really good time , though we were tired . Because her birthday is soon , we gave her a dinner ticket that night . I would understand it if I excercised that day . But I have n't got any exercise recently and I do n't do hard working either ! So it 's a mystery for me to be always sleepy recently ! When Isoak in the bathtub , I sleep there for 30 minutes . ( As the image suggests , I will need a lot of strength heh heh ) And do you have another story about entering a university ? Second , I think nothing is more urgent than learning vocabulary and the fundamentals of grammar , even though the speaking and the listening are also important . I am confused . My weakness is if I make a decision on something After thinking a long time , l finally make a decision . It seems like the inside exposure 's damage can be lowered by taking iodine as it helps the body excretes harmful chemicals . But please do n't take this too serious . I wrote my last diary about 5 months ago . Although I 'm very tired to have walked so long , it 's healthy ( for me ) . Some of the important locutions are simplified or left out , so I ( often see ) came to see that the subtitles are n't ( always ) consistent with what the movies really want to say . I wanna see a lot of galleries and museums . I have loved a boy friend until recently . This is unbalanced ! But I sill want to visit Australia again . Maybe I will go to Sydney next time . At first , I checked my emails and then began my work . Of course , we wouldfeel the sense of alienation when we see foreigners at airports or other countries or our towns . Would you imagine if your country is a small island and if English is spoken in only your country , it would be a big disadvantage for you guys . But foreigners have been speaking English since they were little as a public ( international ? ) language . But of course they only spoke English while we were drinking , I could not join the conversation . and may be Eastern Countries . I hate the weather in Fuzhou , because it varies so much ! Yesterday it was so hot like summer , but today it 's back to cold ! It 's midnight and there are a lot of mosquitoes flying around me ! = = | | | Does this sentence make sense ? Our central dining room is in the center and it is the most popular canteen in our college , however it has both advantages and disadvantages . The cheaper price and the better quality are the characteristics of our center canteen . I like Sichuan food best , not because it is has a heavy taste , b ut because it has a special smell . Meanwhile , all kinds of food in the center canteen are cheaper than the market . Moreover , we can only have a limited variety of dishes with little change every year , which makes eating here very boring . I like Onsen very much because I can relax . After soaking in the bath , I will eat delicious japanese food , like tempura or sashimi . It takes about 1 . 5 hours to get to Misato Onsen by car . Starbucks down the Princes Rd . On top of that , the castle seems away from you . I do realize this is not a good attitude of mind , but I have noticed that if I look at the worst side of matters , I can only receive positive surprises . The opposite of this happpens when I look at the sunny sides of a situation . I knew him at the literature class in college . I 'll go to Sydney at the end of this year . I love fireworks so I 'm looking forward to this . Unfortunately , the test system broke down for about five hours . Yesterday , it was raining so I enjoyed watching ( the movie ) `` Chariots of Fire `` at home . I went to America two weeks ago . I guess 4 years have passed rather quickly . Finally he was able to do it , but of course his bicycle had training wheels ! So I will study English a lot and as soon as possible ! As far as I can understand , your university is great institution that provides a stellar environment for furthering my education . Also I can drive a car very well , can work on the construction site because I studied in the construction university and now I work in the construction site , there I am a foremaster . Today , I went skateboarding in a park . The team seems to be the best although they did n't participate in any test sessions during the winter sessions . Second , we can use the Internet with mobile phones . The only drawback is the length of the episodes . Now imagine we put a flea in a container , so that it can jump out of the container . That ` s why we sometimes feel that there are many limiting situations in our lives , it can be emanating from our mental limitation : `` I ca n't do it , it 's very hard for me `` , or : `` I think my family won ` t accept it `` , or `` Is it possible ? I finished the test last Friday . I like sutdying about other language because I can meet a lot of people and I can understand our world better . The things which happened last night did n't arise from the differences of our cultures but personal matters , I think ; - ) We spoke in both Japanese and English . But our American friends could n't feel her feelings ( of course they ca n't understand Japanese ) . Our native languages are different . I think it is natural there will be difficulty , and it is the interesting point to communicate with someone who is from a different country . I think the reason that I did n't like science was because all of the books I had read were not interesting . Since it was written for kids , It was really interesting and easy to understand . Anyway , I am turning 20 this month . Tomorrow I will go / I 'm going to Belgium and then to Holland and finally back to Japan on Saturday . The King 's Speech I watched the movie `` The King 's Speech `` In Japan , it is possible to rent the DVD for this week . I thought the movie was very good . But I figured out the view of the town is so amazing ! ! My role is filming the activities of my teammates to create reports . Today , I made `` OKONOMIYAKI `` for my roommates . We saw the sun rise and it struck our tent . I hardly understood native English then He is a university student and will become an exchange student in an American University this Autumn . I was asked by my roommate to take care of him , particularly about cooking , and of course I said yes . Furthermore , We played many different kinds of games in the schoolyard such as seesaw , hawk - and - chicken . For the `` hen `` , it was important to focus ( your ) attention and keep a strong sense of responsibility . I want to learn English well , but it is difficult for me ! When I had some opportunities to speak in English , my Japanese supervisor was one of the people in the audience and said things like `` You said a water and forgot to add s to he want `` and so on after every my speeches . Germany , Spain , India , Austrailia , Finland , Egypt , America . . . . . . I can answer it better than the real questions for Clinical Nursing . . . . So , I had no choice I learned many things from college life . Everything seemed to be fresh . According to UK laws , euthanasia is not allowed . This includes any act of assisting suicide to the patient . The girl 's name is Jones , and she must battle heart problems and leukemia . I am studying to get myBA in Applied Linguistics ! I love to just have fun and spend time with my friends . Most of my language backbone is in school . just unconsciously pour the coffee in to my mouth . Coffee to me is like the cigarettes to heavy smokers . hey guys , it ` s my first time here , I am so happy to know you guys to help me learn English . I always watch `` Azumanga Daioh `` and `` Lucky Star `` . I 'll appreciate your corrections , but I will not rewrite this probably until I am able to write this correctly by myself . I especially dislike `` pure `` Japanese literature ; of course I have some favourite pieces among them , but unfortunately most of them are widely underestimated . I studied material from Side by Side book 4 , but it was a little difficult for me . In the afternoon , I 'm going to study TOEIC material for an hour or two . Let 's study our Language 's together ! ! Thanks a lot . When I search Google , it tells me that members of Japanese parliarment earn1 . 3million per month . Apart from that they also get a million yen as a travel expense each month . These perks add up to nearly 44 million yen . In fact , according to some sources , Japanese paliarment members receive the highest salaries in the world . So we really need someone to solve this problem . If you want to be friends , feel free to let me know . So I was back home after working at 9pm and getting things ready ( for example ; reconfirm jazz tune that I memorized ) . His wife was a Japanese . Why music is important to many people ? Although people can get tired of repetition , they listen to their favorite music frequently because they can enjoy themselves more consistently through that . We can find some traditional music from different nations interesting . So we can see that music is a wonderful means that can make us feel better . As Oliver Wendell Holmes said : `` Take a music bath once or twice a week for a few seasons . in order to get rid of my stress that comes from studying . Actually , in America , the gym is somewhere that provides chances for people to make friends . That , I cant deny , but something just happened to me recently . When I am on it , I am used to always looking from one corner to another to see what others are doing , so that I wont get bored . Last Saturday was no exception . relatively conventional Taiwanese girl , it is kind of too much . One of my Japanese friend told me about this website . Thunder is a very powerful tool . I bought some bread and cheese . The Mid - autumn Festival is a big day in China during which families come together . What do the following sentences mean ? Fireflies . I have a Venezuelan friend at my school . For a long time , I 've thrown away anything making me remember the past , either happiness or sadness . All the time , a question is in my heart ; I want to know , In the second hour , my coach taught me how to shift gears . I 've been drinking coffee as a countermeasure for sleepiness . He gets food from the airport restaurants for free . What is different from the movie is that he has an available visa that allows him to stay in Mexico . Everything about me : ) In class , my English teacher said `` How are you ? `` . My teacher laughed me . my English teacher taught me `` I 'm fine thank you `` only ! They gave us three tests , grip strength , flexibility and alertness . Since the garden is about five kilometers away from our home , we ca n't go and see them very often . Especaily during festivals and weekends , KTV is almost the premier gathering place for young people . I tidied up my wardrobe . There is big space in my wardrobe now . Tomorrow I will go to the Driving Academy . Today , I finished my report . Shi ' ah , sunni and Kurd are there . The Iraqi goverment is trying their best to unify the country , but their approach is n't working . Iraq has elements of confusion now . I ca n't imagine what will Lots of people are used to cover their love , their anxious , their bear and so on to calm their friends or their families . I had finished eating watermelon . I want to speak and write in English fluently . I 'm restarting English . I 'm learning English vocabulary and grammar now with books and mp3 's . But summer vacation ends August 31 = ( I was interested in an article about AVATAR . This movie represents the current US . It 's my first diary on Lang - 8 . I talked with a foreign friend on skype for the first time . Anyway , she is a Filipino ( I think this vocabulary is very difficult because it sounds like Philippino but some words are spelled differently . ) But my cellphone does n't ring , and she said maybe connection was n't good . So we could n't talk to each other though she demanded me receive the call . I could n't dispel my doubt to her so much as that time . The season is turning to winter and outside it was a little cold , so I wore a sweater . Some houses are really funny , but one house was really awful . So scarey : - ( I want to go foreign ski areas , because the scale there is so big . If one of them has any problems , the entire society will be at risk of collapse . By the way , I 'm going to Spain , France , and Italy next month . If you can pass the Cambridge English examination , getting a job will be even easier . But Singaporeans are very kind to me . My favorite character is Miss Sue . Kosen tournament in Aomori ! ! I went to Aomori for theKosen tournament . The tournament was so exciting ! ! And it showed the position or rank of the people using it . They believed that I was nervous as I spoke either too loudly or too quickly . . Indeed , I felt a little nervous just before it was my turn to present the report . The reason why I spoke so loudly was because I want everyone to be able to hear me no matter which corner of the room they are in . My home town is on the sea . I eagerly look forward to hanging around with him : D As I was writing using English on my mobile phone , I realized that English exist everywhere in Japan ! We all hoped we could leave as early as possible and go back home to celebrate Christmas with family and friends . Anyway , I enjoyed myself . Yesterday It was rainy , but I took them to the doctor . The doctor advised me to take my daughter to the ENT doctor . So she did n't sit still and cried , I had to hold her while the doctor examined her ears . Till now I couldn ' tdo anything without composing myself . They pester me to go outside although I play together , ask for new toys , new DVDs , new snacks , and so on . Similar to what was written in the diary of another user , I get stressed when I ca n't train . According to the review , It is supposedly a pure love story about childhood friends Emma and Will . he should have moved on and should 've fought with life for his happiness . The movie is fascinatingly bad and irritating but cant stop watching I began to study English two months ago because I want to go abroard to study it . The competition is quite hard , because , to find a good job , it is one of the most important things to enrol at a famous university . In schools , there were plenty of strict rules , for example , rules concerning hair color , the length of skirts and so on . Enrolment rate of universities is relatively high in Japan ( about 60 % ) . I was confused and irritated , and got new bicycle at discount shop near here . particularly , city area either near the station . There has many good taste food we can bought . Every TV will have to be able to receive the new digital signal . station . It 's faster and less crowded . I started it from around in January this year . I have to communicate with the customers and take care of them . I had confidence with these many people but selling is not just communicate . I usually go to work by foot . Today was special day , because I walked under the Sakura arcade . In fact , I am crying to read this letter . `` Actually , the sneakers I bought are the adidas brand . Then , tomorrow , which is exactly today , is the exam . Ato Tomadachi wo sagashitai node douzo yoroshiku . Ima ha Eigo no Gakko ni itteimasu yo . Boku ha kotoshi ni ju ni sai ni narimashita . Akirakani , boku no bunpou ga heta desu kara chigau tango ga attara ayarimasu ! I am a freshman and study English and Chinese at college . My favorite actor is Will Smith . We had two visitors from Vietnam at home . The taste was Japanese style I 've come to the conclusion that the only good mosquito is a dead one ! I watched news yesterday and I heard that there are many people affected by this influenza around the world , and also there is one person visited Mexico and guessed having this disease in our country . A : We would like to order , can we have the menu , please ? A : What 's today 's special ? W : The special of the day is cuttlefish spaghetti . Eiheiji temple is famous for a head temple of the Soto sect opened by Dogen . I heard that monks in Eiheiji get up at 3 o ' clock everyday ! My daughter slept by my side . First , I want to introduce myself . I was born in Saitama . My brother told me she is Japanese . and I started to listen to music and play the guitar with my band . Now , I am still playing the guitar with my new band members . So I always feel sleepy . . . She always spends around 30 minutes eating breakfast . Before breakfast , it is also time consuming to make her wake up . Studio Ghibli Well I 'm not sure if this plant is called a spring onion in English . I went to a Singaporean restaurant tonight . With a few of my colleague who are American , Singaporean and Japanese . We drank Singaporean beer . I still can not figure out what happened . I want to understand this beautiful language ! I had a speaking test yesterday , as well as a reading , writing , grammar and listening test . I forgot the timetable was changed from usual day . Unfortunately , I was eating lunch in the park so , as a result , I was 10 minute late . I have discovered so many good songs through this program that I 'd never listened to before . My bro is in one of the pictures . These days I think my brother feels like a good friend . Okay , I do n't know what else to write . In addition , I was amazed with my friend said that other friend who we have known since pupil married and his wife has become pregnant . I ` m not asleep , because I am trying translate my favourite songs . , because I can look straight ahead and see a little light coming through . I will enjoy today with my family ! ! ! like it and now , I am going to move there again but this time will be different Perhaps because of I am foreigner in this place , I do n't mind whether or not people look at me . A lot of classmates always go to their laboratory everyday and their tutor gives them work to do . There is a massage chair , and it is very comfortable for me . I was grinning like an idiot and trying not to laugh out loud , ( sometimes without success ) . My grandma sent me sweet potatoes . I do n't eat much these days , because my appetite went away and I did n't have much time to eat . In fact / Actually , it is the season to pick ` Pink Lady ` apples . The tax system and infrastructure of the Chinese society are completely different from the Japanese one ( s ) . Although there are many things to learn , I 'm enjoying that as well . I mean , perhaps , Charlie is one of the best characters he has acted . What really was impressive was how people are passionate about Italian food . Especially Victor , the leading character fiance . He is an incredible chef who is opening his own restaurant in N . go bananas ! Thus , yamasho was made . but making sentences is very difficult for me . It 's beautiful . This spring , vegetables are expensive because of the abnormal weather in Japan . This shop helps me alot Today , I havegot5 avocadosat only100 yen ! I spend X ' mas with my darling every year . There were 2 cups of instant noodles in the kitchen . The teacher told me my daughter I studies well , but she is sometimes too shy to give her own opinions in front of the other students . . . She is very open with family and with her friends . I ca n't find any teachers to help improve my English . The next time we 'll see each other might be the day we leave for Japan at an airport , which will be on the 20th of December ! In the x - ray photo , he and the doctor could see one earring . It should be a very interesting and an unforgettable experience for me because this is the first time I joined a boyish competition . thus , there are only 3 girls in the computer clubs in our school , my friends and I . There are many geoglyphs and the length of the biggest one is about 300 meter . I was very tired , because today a lot of people came to my store . Me and my co - worker were upset and worked hard . It will be 634 meters when it is completed in 2012 . She prefers Tokyo Tower , which is the present broadcasting tower , over TOKYO SKY TREE because of the shape . So my body is worn out with studying and a part - time job . Actually , I 'm pregnant and I 'm suffering from morning sickness , so I felt gloomy before the wedding . It was a great wedding , but my three - year - old son could n't sit quietly during the ceremony and reception . So we decided to go to a restaurant . Maybe because I ate too much sugar . The First Massage This was the first time I got a massage . I went into the massage parlor ( the normal one ) * and told the masseur / masseuse that I had a back injury from five years ago / earlier . * umm , hehe I spent my holiday time very well because I did n't waste time . I learnt new things and I had great days with my family and friends . Since the interview with my boss , I ` ve worked more carefully than before . What should I do to develop my career ? I had a late lunch at a curry chain restaurant that is famous in Japan . I want to study about / how to do that for my future . Time is money . Hi everybody ! listening skill ? Do you know a way which you can listen to English for FREE ? It is across from the train station . Please tell me if you think my sentences are wrong or seem unnatural ! A lot of passenger praised his driving and he himself is confident in his driving skills . In more than 1400 years ago lived a righteous king called `` Hormizd the fourth `` . I just discovered this website via facebook ; it looks good , but it 's a bit disorganised , I reckon . Regarding my hobbies , I love playing sports ( Rugby , Boxing , Running ) , listening to music ( Trip - Hop , NU - Jazz , Hip - Hop . . . ) and so on , like everybody actually ; - ) how my birthday was Yesterday , my friends and I went out to find a job . The hairdresser who cuts my hair every time looked so busy that I hesitated to have a conversation . I was worried about her even though I 'm a customer who receives a service . I have been getting an appetite since I lost it after all the hard times . I have been really depressed for a month so I lost some weight but I kind of like how I look now . So I am kind of worried that I will gain more weight than I lost with this big rush of appetite . What happened to Japan ? First news was issued July 28 , under the headline `` 111 year old man already died 30 years ago . `` And his granddaughter said that , `` He wanted to die by starvation , and we could not stop him because he was too serious . `` It was surprising , but I think many people believe that there are some to see if they ( the elderly people ) were alive or not . Some of them have already passed away ; the status of others is unkown . Japan is one of the first countries to become a super graying society . So the gorvernment has to deal with this probrem immediately . Selfishness ca n't control us . Even though I 've lived in Canada for a year , I have n't seen outside of the city except Niagra falls . Now , it 's nearly two months since I lent him the money . You know , we have got on very well since we first knew each other . I 'm planning to take it next month , for the first time . Hope I will be a top salesperson . Although I am Japanese , I do n't know much aboutJapanese culture . It is not completely useless , but it 's awkward to use . Certainly , I can see something like his toe . A huge typhoon is getting closer . A huge typhoon called ' Gonpas ' which means compass in Japanese is getting closer to the Korean peninsula . It 's important to take steps in advance . If you live further south than me , let me know how the typhoon is . I like its world and characters , especially the `` Muimui `` . Today my friend and I read a book called `` The Mystery of Your Name `` about character traits and the fate of a person , which are defined by his or her name . So I have to go bed early , I took enough rest . I felt I ca n't find that by only studying at school , I need a lot of experience . There are many foreigners such as Chinese , Mexican Spanish . So I have not studied English for one month . I 'm still enjoying the masochism . I 'm great because I still keep memorizing boring words . Today is my second time studying here . All in all , we must admit that the advantages outweigh the disadvantages . Do they have different meaning or pretty much the same ? No music No life So , ( I became ) quite ( exhausted ) today . In fact , the wide - spread distribution of the WiMAX service on the rapid transit system is a goal set by the government in Taiwan . but It is completery different tempurature today . because strong wind , and so on . but maybe I am going for a surf tomorrow . A lot of Japanese people are very shy and ca n't communicate with people from other countries . I never played tennis before I took the class , but the coach taught me how to play step by step , and I improved . . beacuse I like the English lanague and I really hope to be native speaker so I study english whenever I have free time . ( that 's true kk ) anyway I 'm working so I have to go to bed soon , lf someone reads my diray , would you please fix or change the sentences for good and more natural expression ^ ^ I tried to bake a cake with a rice cooker ( steamed cake ) and made cranberry sauce . LOVE AT FIRST SIGHT ( part 2 ) The first day that I saw you , I thought you were beautiful , But I could not talk to you watched you walk away . Suddenly , the phone rang cutting through her train of thought . She felt something special , not because it was her first time making a delivery , but because her premonition told her that something was going to happen ! She knocked on the door and it was opened immediately . Most of the people there were men and Lane specifically recognized the angel in her heart who was sitting in the corner . She could n't believe her eyes . Lane replied : `` Thank you but you paid enough . `` He moved closer to Lane and told her : `` It is for the tip girl , thank you so much ! `` Lane could not do anything else , just received it and thanked him . He had a sweet accent . I remember that I was so excited when I saw the trailer of `` Avatar `` I think the theater will be crowded this weekend because of Avatar fever . I believe Avatar will reinvigorate me with its visual technology and emotional story . But sometimes pop music is interesting too . Especially if guitar and realistic bass is used . I bought this one just as an interior accessory . Another reason is that humans have a variety of diseases that was caused by new technologies . Without research on the universe , we can develop the medical field to save many lives . So , I 'll take positive steps of `` Lang - 8 `` . But a practical test is not easy / difficult . I opened the box and plugged in the tree . Then I switched on the lights and turned the room light off . I felt Lucie 's feminist sense on her works . but my English skills have been getting worse since I came back to Japan in March . I get a little nervous . When a new semester starts , there will be some foreigners come to my senior high school to study . I 'm learning new information that I did n't know Althoughh I memorize a lot , I ca n't make use of it . Oh , I missed several days for writing my English diary . Eventually , I posted this article courageously in order to introduce myself . It offers a very friendly platform for language learning . People from different countries can exchange feedback . I live in Tokyo and work as a hospital worker . My hobby is a bellydancing . I recently feel that nothing can satisfy me . At the begining of the journey , I suspected her information was inaccurate . We took a bus , which the fare was one dollar and twenty cents . But we were cheapskates , and we did not want to buy a map which was not cheap . They 've kept telling me ' ' hey do not work too much , we are tired , go to sleep . `` Today will definitely be a memorable day for Japan ! ! ! When I came home , the game just finished . . . I wanted to watch the game in real time and feel the excitement with ( other ) Japanese soccer followers ! ! ! Ubin is a small island and it takes ten minutes to reach by ferry from Singapore . X - Files , FRIENDS , Full House , and some others . I love Full House in particular . Joey and Jesse are very funny , they always make me laugh . Joey is very good at imitating the cartoon character 's voice , motion and sound . By the way , Michelle was very popular with Japanese people . The write - up for a strawberry painting using the Painter She needed to make money , so she could n't continue to mainly do translation . I wish I could stay home , but I have to take an English lesson . When you become old , you wo n't be worried about your health . `` I smiled and said good bye to her and then left . Of course sometimes I am lazy , especially on rainy days when I would find an excuse to avoid running . Actually , those did n't sound very tasty but I think fans and kids may have love them . I will write about it in my next journal ! I 'll be relieved . I can learn English and I can also learn Japanese by checking I did not read books at all today because I did n't havethe time read . Today my English friend called me to make an appoinment tomorrow at the same restaurant . She likes to eat mussamun very much and I like to eat somtom ( papaya salad ) and sticky rice . When I see her I like to give hermy diary I write in English and she likes to ask me about pronouns . We enjoy exchangingin Thai and English . Today at my company in a high rise building I saw beautiful rain . I hurried to call my friend to look at the rainbow . I would like to chang a goodday with my friend . We enjoyed looking at the rainbow together from different places Today I was very suprised they asked me to eat lunch with them . You know when you start ata company for the first time I think I 'm an outgoing person & a person who has a positive attitude . I 'm so bored everyday . . . I could harvest only two oranges this year . I 'll go to the summer house TO SEE my dog , not my parents . ( hidden truth ) So , probably I can have internet there , too ! At night , I went to the English conversation class . Japan will definitely change , and everyone can move Japan forward with EV 's such as the Nissan LEAF ! Fight for English ~ ~ ! ! ! ^ ^ I work for quality control division at the company I work for , and sometimes I have a chance to communicate with the overseas plant ; especially Czech and U . S . A non - government organization which I support gave a presentation to the public . The center is also a place for garbage disposal . It is said that the pool is heated by energy produced in the process of garbage disposal . Suggestion : It 's been a very long time since I last wrote a diary . . . They are learning Japanease in uni , so they practice Japanese with me , and we Japanese exchanged students practice English with them ! ! After school , I went to Hide park , Australian Museum and St Mary 's Cathedral College . My name is Frank , and I am Chinese and live in Guangdong Province with my family . I graduated from university 2 years ago . fuckin gnarly journal I think that Alex should also update his . The update however might not be needed for me because I intend to buy the new IPhone 4 in a week should it be ( if its ) available to buy . Its certainly gon na be fuckin complicated . I got a call from the ( a ) human resource company just now . I recommend that you should take him to the ceremony . I am embarrassed to say that I could n't finish it on time . Since all groups were planning on using Powerpoint , I went to the appliance store to buy it with concern . After the meeting , I read a new novel at home . It 's 1 : 10 am now , at 8 : 00 I will go to the building where the International students in Vietnam live . Jinjas are old Japanese temples . There are very beautiful traditional Japanese gardens . So I think it takes many more times but I 'll try to upload it with my phone . Now I finished my job , and I am going to see the restaurant where my friend 's second wedding party will be held . Because I was chosen as a second wedding manager with some friends . About 80 people are coming and we want to think of a surprise for the husband and wife . but whenever I meet my friends among the them , the atmosphere ( it 's not the exact spelling . . ; ) If someone is joining the messenger program . My score had improved from 625 to 690 ! I guess Lang - 8 has played an important role in improving my English skills . Day 97 : Punctuality After thinking a lot about my university choice and what is best for my life , I took some admission tests : one for Medicine , Pharmacy and Biotechnology . I hope I 've done the best choice for me and for my future : ) But I do n't have any complaints . I really enjoy my home life because of my email friends . I 'm not satisfied with my English . Although I do n't like winter , it 's abnormal that it 's still so hot . I think this site is really good for learning a language . I used to write a diary in English , but I quit because I was not sure if my writing was correct . Then , I made an appointment with the interviewer there . I would really like to be a psychologist . Now I start studying by reading easy English books like penguin readers or watching foreign dramas on TV or CNN Student News . I often climb mountains . While I 'm climbing by myself , I can think about various / a lot of things and sometimes good ideas come up to me . But in Japan , the Tohoku area nuclear power plants had big problems because of the earthquake . Anyway , I did n't miss the airplane . At Amsterdam , we had a radiation level check of our luggage . I 'm going to visit the USA next month , and I 'm going to stay with a family there . but they are often on sale . I hope every thing gon na / going to be alright * ema ; a votive picture tablet of a house I intend to go to bed as early as possible . I thought a lot of the play equipment would be difficult for my 4 year old daughter , but actually she enjoyed the playground with my 10 year old son . I went to an italian restaurant tonight after school . At first , when I entered the restaurant , the staff gave me a card and explained I think It worked for me more than an appetiser . After the cook finished cooking , I put my card on the register , where first their staff gave it to me , then I could go anywhere to have a seat in the restaurant , which was really large . After I finished eating , what I should have done was just going to the entrance and gave a card back to the staff , then they could calculate my bill . There were many people so I think that restaurant is very popular in London . I did n't go out all day today . If you are a competent worker , you will choose the merit system . It is difficult to estimate one 's ability accurately . Then , the Hong Kong Government must hold a natural activities of Hong Kong travel festival . In this way , we may promote more activities of nature such as hiking and mountaineering for visitors . There were a lot of fallen leaves on the pavement in front of my apartment . Who is responsible for cleaning up those leaves ? Is it the responsibility of the manager of our apartment complex ? Now , my foot , arm and body are very itchy . The Roman 's structured and man - made world wide empire out of architectural forms , and those architecture forms revolutionize the ancient world and excerpted and lasting influences on the architecture and the architects of post classical times . Uh , And you see a park of the Capaline hill a transformed by Michelangelo into the famous Campidoglio , as well as the . . . All of my friends will get to spend a long vacation for 4 days in their hometown except for internatinal students who can ` t go back to their own country . I hope his parents will be braver to buy a new wonderful car after they consult with their wallet . They are not vegetarian . This week was so tight that it was decided that I can not take a rest day during the week ! He always got mad at me when he 's in a bad temper even it 's very little thing . Unfortunately I do n't have a co - worker to share his calumny . Me and my husband will eat out in commemoration of this anniversary . The place needed to be cleaned was a 50 m long flower bed that formed along a road to an entrance . After the work had been done , I looked around and it looked quite neat . Quite frankly , I tried several times to read it but all failed . The young girl , the main character , her name is Lin Da Yu , after being sick I went shopping with my friend . When I read about this portal , I could n't believe that someone would help me and fix my mistakes without any salary . If any of You are interested in history or geography of my country or city - please write - I will do my best to help you . I am so lucky that I found this website one day ago . I have been looking for something like this for a long time . First entering it , I wrote information about myself . Welcome to you all over the world and hope you make friends with me . I 'm willing to make with friends with you . My head portrait is of NBA player Vince Carter who is an active duty basketball player , which shows how much I love NBA . Today I learned that the Spurs have won the 7th game of the playoffs against the black horse team , the Hornets , this season . I love Spurs not because of the team ( they have won 4 championships in the last 9 years ) , but for one guy , Tim Duncun . Recently , some Japanese enterprises are starting to use English in their offices . I have challenged myself to learn English many times , foreign restaurants . Too many people everywhere . . I 'm going to travel to Australia next month . I 'm going to on a simple tour which includes a round trip plane ticket and hotel only . That 's why I research some local tours by internet and some books . So I started to create an English drill , and because one word can mean several things , I used example sentences to hint the actual meaning , but I would n't want to have incorrect ones . I wanted to take nice shots , but they were moving quickly . Japanese peaple are said to be workarholic / s which I think so . Young people , including me , are not more workaholic than older people . Because , older people worktoo late ( or too much ) and somtimes go to work even on the holidays . I do not want to be workaholic . In our university there is a very convenient system where we can use all the fitness center year around with a fee of only 1000 yen ! Whenever , wherever I am listening to ' Whenever , Wherever ' now . In fact , I have already bought a Spanish textbook . In Japan , Spanish is not a major language like English , so Spanish textbooks are more expensive than English ones . . . . . Why ca n't we have less since we are in univerisity ? there is a problem ? Since then , my plants have been getting vigorous . A guy who is traveling in Europe meets a Parisian on the train . There was only one night they could be together . Extremely Hot Day It is extremely hot in a lot of cities in Japan today . I sometimes teach students Japanese and mathematics . In December I will have finished my university education : I will have a master 's degree of innovative activity management . This week , I have to concentrate my exams . I want to do a language exchange on Skype . But today was a rainy day in the Kanto region . It is because we can forget everything like the unstable economy . How about your company ? ? In summer quarter , I took an ESL ( which is an abbreviation of English Second Language ) class . I could see various kinds of people . I enjoyed peoplewatching heartily . There is an increasing amount of vegetarians in world . Other vegetarians think it is wrong to kill animals cruelly . This text is for university students , and includes econometrics . Japanese universities ' entrance examinations are very difficult , As a result of Judo training and my part - time job at an izakaya , I learned a lot of things which are necessary for my business . so student should have the ability to practice self control if they want to live good life . they pay amazing amounts of money for a preparatory school for entrance examinations . I am sure I wo n't solve this problem until I die . Although it will not easy , I should change my schedule . But I do n't know how to change my schedule to the best way . Could you give me some advice ? ? Do you have any bad habits ? ? The main activity of this circle is organizing what is called `` IW ( International Week ) `` . Let me explain , my university has some collaborations with foreign ones . I 'm sorry for long sentences . . . In which we 'll reach the heaven that exists My parents gave me some souvenirs , such as chocolate and vegetables . Thanks to them I can get by until the end of the year . After that , we dated few times and I was a little confused about our relationship . Then I found he is kind of arrongant and everytime we were together , he always complained about something . Fortunately , his skill was not that excellent and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) This guy , who wants his cigarettes , asked me to bring them to his house . However , there are still various hardships during this age . Two of their classamates saw it and then warned my brother . Fortunately , it has been already solved with a peaceful ending . I will go home to stay with my parents and eat some moon cakes . Although I dislike eating moon cakes , I enjoy staying with my parents ! The latest conveyor - belt sushi restaurants have / serve not only fish , but cake and jelly and juice . . . . . I 'll recommend lang - 8 to my colleagues . Recently we were challenged to become familiar with English in my office . Foreigners can feel uncomfortable when they sit on the floor while they have meals First let me introduce myself . Although I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an International college . Almost all of my teachers are foreigners . When I talk to foreigners , I am too nervous to express my feelings . My grammar is not good . So I registered on this website , and want to make some friends . I want to learn English and Japanese ( I 'm crazy about some Japanese idol ) . Last February as well I went to my parents house and met my sisters . On that evening , Yoshimi and I started to catch up with each other over some beer , as usual . Next time I 'll be more relaxed . I am a college student and my major is informatics and communication . many companies in the world record great loss After I knew this site , my English level seems to be developed . Thanks for Lang - 8 . Now , Korean time is 12 : 10 . I have a music skills test . When I was lazy , people were still practicing music . Through this process , their emotions changed dramatically . One of the targets of me of this summer is to make an album with my friends . I took a class about implied meanings in English sentences . First , `` If you think a seat belt is uncomfortable , you 're never tried a ? Pardon ? I want to learn English to study computer language and computing technology . I 'm Linda and I 'm from China . It 's a small town in HeiBeiwhich I 'm sure you wouldn ' thave heard about . poort - - all kinds of sport but mostly as a spectator . The sport I like most of all is Latin dancing . I 'll try any sport you suggest . I would say that my school has really beautiful scenery . In that Bahrom Education , we can learn how to share with others in society through philosophy , etiquette , religion ( specifically Christianity ) and the history of SWU and the class includes group discussion or performance and individual activity . The conclusion is that I have liked and will always like my school Because of some troubles , they are divided into two groups . I went to an open campus at Sophia University with my friend today . I heard over ten thousand people visited there yesterday . I have to study English much harder . In the book , the bad aspect was the plot seems provocative , but the good things were delicate description and accurate observation about the things all around us . I am now a memeber of the international sales department in a ceramics company . Now I have no customers , I do n't know what I should do . I changed my profile photo to a tiger . After 30 minutes walking , I felt tired . I 'm a stupid girl . Everybody dance Although , I do n't have to go to bed right now . One of my dreams is to become a good English speaker , so though having my English corrected on this site , I can become a fluent English speaker and writer . I will write in my diary once a day , because I want to improve my English ability . She did n't mentioned her age but I 'm guessing that she is 20 . I had dinner late last night , I knew that but the food was still sitting heavy on my stomach , I am a university student . I want to improve my English skills . I 'm wearing my favourite red dress and I 'm wearing some make - up . Sam and his friend James are true adventure travelers , and together the boys have done and seen some amazing things in the past year . It 's weird ! ! Then she said `` Yes , I am Idahoan . `` Well , how about a Washingtonian ? I got a perfect score ! ! ! I like movies where I can detect and solve some mystery about the main character , so I was not content with this movie . After I finished watching it , I searched about the content of hostel on the net . I got a call asking me if I could go to the cinema now an hour later after I finished watching hostel . Actually sometimes old eggs cause food poisoning for salmonella , Many japanese people eat raw eggs so the expiration date of eggs in a Japanese super market is very short , usually 2 weeks and the eggs are placed in a cool place . I love Xmas I always get 3 or 4 presents every Xmas . When it comes to Xmas . . . This is used in another occasion to socialize . The other thing I love about Xmas is the food . Xmas is way better than New Year ( I hate this one and I 'll tell you later why ) Whenever the blackout occurred , I browsed internet and logged into Skype and spoke with people in order to kill time . The prefectural governor of Tokyo said that we had to refrain from viewing the cherry blossom . I am pleased to meet you . He said that our direct business strategy was finished , so we must work indirectly . His said indirect business advocates more cooperation between a vendor and carrier . We will continue selling directly with vendor 's product or carrier 's service customization , but now we must sell service indirectly as well . to my client directly , but we contract vendors and carriers internally . S our company is a system integrator , so generally we have IT skills , but we do n't create any of our products internally . So I fell uncomfortable recently . I was dreaming of my ex - boyfriend . This is not the first time . I ca n't tell him because he has a girlfriend now . There are thousands of people who fluently speak Japanese and they are passionate about helping others . But , when I find positive things in my life , I become very happy I think its difficult growing vegetables . It 's often said that old people go to bed and get up early in Japan . Suddenly a hospital offered her work , and it was a good opportunity for her . I know if many teachers violate the law , my school will be in chaos . In Osaka , central prefectureKansai region , a famous manzaishi , Knock Yokoyama became the governor in 1995 . According to the Japanese government , 56 countries have offered assistance , but they are not coming yet . The Japanese government looks tired . I clicked it without any hesitation . I feel grateful to him and I enjoyed my first day using lang - 8 . Well , when I first played this game , I was surprised because the hero is only a civilian , but he kills innocent people for money . I really liked that ! It was little salty , but anyway except that , really that okonomiyaki was my stuff ! its really nice . yoga 's really good for not only the body , but also the skin and for relaxing ! You can make mochi in ten minutes . Spring has now come , but I like autumn because I get hot quite easily . I spent almost the whole day watching my favorite movie . Indeed , this movement which used to provoke debates has recently obtained a religious status un Spain . My life has been painful since they look it from me and now I do n't have anything to live for . Today I want to tell you the main problem I face when I speak a foreign language . The problem is that I forget words during speaking . Tomorrow and the day after tomorrow I am going to visit Miyagi prefecture in Japan , where there was severe damage by the huge tsunami that happened in the last 11 March . This is my first time writing a diary . I have been in the USA for business for two month . So please check my diary . Because , I ca n't speak English well . My English grade is the worst . Maybe because of Tadanali Lee . I am watching a soccer game on TV . I took listening and writing and grammar tests , I won the first prize in my class , But I wanna keep her as my customer . Am I a bad character ? Yo quiero dormir I wish to visit United States one day , my teacher said it is a cool place , I want to go to disney too , but it is too expensive , I have to work hard first . I 'd like to know about their culture , well our cultures do n't have much of a difference I guess . . . I have not exercised for almost three months , because my daughter was born three months ago . + Mazeltov ! + It is not healthy , so I have to exercise and lose the extra weight . I went to a convention hall today to attend a conference which was hosted by a Japanese Internet company . Later I want to work with groups like UNICEF , World Vision or Good Neighbors . People catch them with paper dippers . Anyway , I held blind date for two , and I did n't know there was chemistry between the two . I have 2 jobs , I 've had them for2 and half years . Because nursing home 's salary is low and I have time before , I started mypart time job . There were many families and kids when I arrived there . I do n't mind because there were enough strawberries to fill my stomach . It 's white , little and cute . So , I will try to listen to one episode a day . We will go to Wenyi Street and buy a lot of clothes , shoes and so on . I want to study but I do n't know what to study for and how to study . His act was illegal of course , but is it so serious a crime that investigation of his house was needed ? I had a plan that I ran for 5km and did biked for 2Km . Muu , I do n't want to be in a world where I ca n't use Twitter and Facebook : ( It 's usual in Japan , because there are rice cookers in every house in Japan . This morning , we took pictures at a photo studio . Of course , grandparents had too . I bought a new Windows PC for my mobile last Thursday . Today is Wednesday . I 'll talk about Iceland . There are a lot of things in so many ways that differ from what he or she is used to doing at home . Iceland is different from others countries in the world . For instance , there is no pollution . Dogs are not permitted on the island . And there is no army , there is only one jail because crime is so rare in Iceland . Even though they do n't have good teachers there , they can speak English very well , but how can people except much from teachers who ca n't speak English fluently , though they can speak better than the Japanese . But today is the first time to use this website , so I want to write and share something . That 's the English test as it is called . He is one of the most popular authors in Japan . It is difficult for me but I try . But it is obviously dangerous to ride on a bicycle on frozen ground . Good Morning ! Even though BP 's best was not enough , we should try the WORLD BEST . Yet , the weather forecast said it would be snowy today . We usually start to study English in junior high school as compulsory education . The lioness are in charge of hunting during day and night , and protect the young lions . The lionesses usually stay in a group all their life , but the lions often change their living place . And beat the swine flu before you infect someone else ! ! I 've prepared power point slides for a presentation , written a resume , etc . In Japan , it is very popular that girls wear it in a fireworks display . It is said that girls who wear a YUKATA are twice as beautiful as when they wear usual clothes . Therefore , I became nervous when my girlfriend wore it . They lived in rarely visited areas and made hanging bridges over the The bride 's friends usually put the henna on their hands and her mother must pay for all the women who want to do their hand . * Tones the thigh , calf , and hip muscles . Today we drove around the city . First we went to Tanba - Sasayama city and saw the fossil of the dinosaur in Hyogo Prefecture . So I keep on studying ! In July I 'm going to London to work and I 'm a little thrilled , because I do n't know whether I 'll manage with my English skills . The relationship which has no development . It 's nothing else than a program which displays us the flashcards and makes sure that we are learning them . You may also ask , ' what the hell are the flashcards ' ? After 3 hours of driving , we arrived at `` Myrtle Wave Water Park `` . We were disappointed about the appearance and the size of the water park at first , but we started enjoying the slides . Calavacy ? [ ? ? ] ( anyway ) which is a kind of seafood fries is the famous dish in Myrtle beach . I just smiled at him , pretending like I wanted to learn too . Fourtunately , the waitress took us to the table when I made eye contact with him . It was a very embarrassing moment . Trouble with new security software I went shopping with my daughter and mother . It was my daughter 's birthday , so I wanted to buy anything for her . I bought two white blouses . One is for me and the other is for my daughter . Then we had lunch . My daughter said that she had a great time . Do n't even have the strength to go prepare myself tea . . And I am really looking forward to the day when I got the passport and a letter of admission from a good school . Yes , it 's true that all of everything is one of true love . True love is just to being yourself . I 'm applaud all of them . Indeed , today I had to research the program of going to India and decide which project to do . I think an India project is good because of its flight cost and the language people in India speak , english . The first man is a famous comedian who is famous for his unattractive face . Well , laughter is the best medicine . . I have half a book to finish . When I 'm finished I will know the basics in Photoshop and be able to enjoy using it . The weather as well as my feelings is bad . I have had a bad headache recently , so I ca n't easily think inother languages . I want to be to writing fluently and quickly . . . But I did n't want to because I do n't have money . Please teach me what that means . I tried to hum the rhythm and the lyrics to my friends , andnone of them knew the song . I ended up using `` I 'm Yours `` by Jason Mraz . It ` s interesting to study English . I think American culture is so boring We have a problem about our equipment in our project . At the moment , it is necessary to make a special A - frame to support the Long shaft , weighing about 13 . 6 tons . We made a draft drawing and sent this drawing to our Design Department to calculate the the size of the beam for fabrication . Request scaffolding above the vessel . Like I wrote earlier : out of sight , out of mind , so I 'm seldom irritated by my hidden rubbish dump . XD Ironically , some things I discovered in my cupboard were literally ' ' out of my mind ' ' . When I found particular things , I did n't even remember I had thrown them in my cupboard ! ^ ^ ; I discovered all the drawers in it were full of old stencils , notebooks , exercise books and other school stuff which I no longer needed . If this is what you want then everything will be over ! As you know , this movie made us experience adventure indirectly . However , that I spend time talking about interesting topic is hard to do . I got a job in a travel agency and I was a student on the weekend With the start of a new year , cherry flowers give us a pleasure of spring and an exciting feeling of a new year 's beginning . They thought it would create a positive economic impact . I really enjoyed her preformance However , he never got even one rabbit from that time on . I 'm a student and 24 years old . My first reason is because I think life is colourful . Well , not for me , as I 'm atheist and therefore I 'm not going to church or going to pray at the cemetery . Yesterday I found a terrific site on the Internet . I took the TOEIC test on 29th Octorber . I am confident my broad - range experience and achievement in sales and marketing divisions . We 've already booked the flight and the hotel and now we 're choosing what to see . Language practice All this time I have been working , building and speaking with my foreign friends . But these friends are all students and they ca n't speak with me very often . I find friends for speaking on ICQ chat or Skype and if you want , we can meet in real life . Every night I see him in my arms but when I get / wake up he disappears like a memory of himself . We went to a Japanese syle restaurant , we all ordered pork chops , it was very delicious . they were soooooooooooooooooooooooo bad . . . . When we wash our clothes , we hang these clothes on a clothesline in a corner of the garden . They are so cute and mysterious . But the fact is that I did n't buy a ticket , and going back to my home for the holiday will just be a dream . I want to comfort my close friend because the one she has loved All I can do is to give her a phone call and say ' Hey , I 'm here . ' However , I know it is totally different between It 's really a lonely world . I will travel to Hawaii in April . The famous pancake restaurant is called `` Eggsnthings `` . My friend gave me some vegetables yesterday , such as : eggplants , green bell peppers , and corns . I 'd like to talk and debate with my kid in English in the future . I do n't think I could eat it again for a month . I 'm worried that I 'm getting fat because I put sugar and milk in coffee . After graduating from junior high school , I joined Japan Air Self Defence Force . I have decided to make use of Lang - 8 to improve my english ability I am shocked One friend came from Pataya , where he works . He came with his friend We went to the karaoke together before going home . My other friend is from France . Another friend used to pracice English with me . He helps me learn English so at the moment he pactices English a bit . This was the second time that I have climbed it . While climbing , it rained and we walked through sander ( ? ) cloud . Strictly speaking , it 's different , so I think they should have taught it properly . You can probably watch such lives in American family dramas . And in such HCs , they conduct commissioned business on the DIY works of customers by requests from them . I 've just finished writing the lyric ! Please read ! If there 's a new horizon to pursue , I would write verse two E : People do and I said `` given ( that you do ) `` , you dumbo . E : Given that you were not my girlfriend , I would 've broke open your head and scooped up ( out ) a portion of your brain for my research . In language , speaking , writing , and most importantly listening . I will try to listen to your voice I found a new way to learn english by watching videos with double subtitles . MS has different symptoms in each patient like visual dysfunction , smell disorders , facial paralysis , vertigo , dysphonia , sensory problems like pain or paresthesia , paresis of different parts of the body like hands , or feet , or even a half of the body , etc . MS can change a person 's life very deeply . Every family is preparing yummy food and other things for the festival , nearly ten days before the festival , people are busy shopping for things , which includes chicken , duck , fish , meat , tea , wine , candy and so forth . . . . . . everything must be prepared . Also we need to get some special gifts for other relatives and friends , parents will buy some new clothes for their kids , kids like to wear new clothes on that day . The Lunar spring festival also has another name called `` guo nian `` which means to come through the new year 's day . During ancient times , `` nian `` means a monster that can bring bad things and bad lucks to people . If `` nian `` is coming , everything will not go well . When `` nian `` has passed everything will go well . So how could people come through `` nian `` ? We need to use fireworks to get it out of here , it 's also another way to celebrate this popular festival . moreover a bus arrived 20 minutes late . How is your country 's weather these days ? I really liked dinosaurs when I was a child . I often go to a climbing gym every weekend . I have not been to a climbing area in the mountains . There are several words on the Web , such as tofu jelly and bean curd jelly . By riding on the bicycle , every scenery of the city seems fresh . Have you ever usedFacebook before ? com , facebook has both positive and negative effects on people . You can find a photo that had been taken by a witness in the following attachment . First of all , I think children should have cell phones as they are important for security purposes . Second , I think using cell phones on puplic transportation should be banned because it sometimes creates trouble for people especially old people who have electronic implants in their bodies . I need to use my time well to practice my English ability . After the earthquake , I found consumers ' consumption behavior changed . If possible , I want to learn french or italian or grammer ^ ^ The daughter is about 25 , and her sons are two and three years old . I want some advice on what souvenirs would be good to give each person . Hopefully / Hoping to escape from stress . When I was coming back to my home , I met Lawrence , who is my friend by chance . Last week I did a presentation in which I introduced an article for our major . I played the guitar , I sometimes played the fiddle or tin whistle . If you are interested in it , please try to search it I on You Tube . My name is kKaoru . I 'm an ordinary jJapanese high school student . I often make mistakes in English and I sometimes feel embarrassed when talking to foreigners . Today ` s test was a total mess . Television has so many funny programs that they watch television instead of talking with their parents , and they can get addicted which means they have little time to talk . I like Disney very much , and she knows that . Moreover , it was hot today . Today , I talked with my friend who is worrying about love . I completed a kind of figurine at last . I 've studied some languages . Chinese , English , French , etc . some were at school , some were with friends . Because of this , I can not speak every language I 've studied in the past . Chinese and French pronunciations * are very difficult , especially * Chinese . I found solace in some heartwarming words in which people overseas praised the behavior of Japanese people : There was no panic , nor riot ; They behaved calmly ; They gave way to each other ; Many people gave a hand to strangers in need . I went to a Japanese Restuarant with my younger sister yesterday . Personally , I do n't like sushi much but it was delicious . I want to say `` thank you `` a million times . I did n't even realize the cough drops made my stomach worse . We ate sushi and after that drunk ice chocolate , so now I 'm very full . I decided to take the fourth trial of GEPT . I feel like improving my English skill more and meeting many foreign people . My hair is like this photo . Is n't it a weird system ? This does not make any sense at all to me . Gradually , her body weakened , and she hardly spoke a word . My Aunt said that she was sorry that none of Grandma 's family were able to meet her before she died . The doctor said that I have an allergy to water from indoor swimming pools . I am an overseas marketing representative of a lighting company . To my sadness , villains certainly do exist in any society . There were lots of toppings on it and it was so good ! I envy him because I wear contact lens and it is a big bother for me to maintain it . By the way , I really have to study English earnestly . The simple things are the best things . I saw a beautiful foreign woman 10 meters ahead at Ikebukuro yesterday . I forgot that I was wearing a mask on my mouth and a sumo print T - shirt . I do n't know whether she was smiling or laughing , She was only laughing or smiling at me but I had a nice opportunity ! I ca n't talk with a foreigner when I am alone . I 've just bought my new headphones ; ) I must admit , the sound is far better than my previous ones . Some friends call me `` a English newspaper - holic . `` Despite the fact that I had a hangover yesterday , I went to go to Roppongi Hills ( in Tokyo ) to see a movie with my friends early in the morning . The day before yesterday was my friend 's birthday ! I like American TV Drama . . Gray 's Anatomy , Desperate Housewives , 24 , LOST , Criminal Minds ( I love Mattew Gray Gubler ! ) . My Friends ( One is Korean , Another is Chinese ) are more informed about Japanese TV Drama than me ( I 'm Japanese ! ) . After watching the movie , we took pictures . My friend who is Korean had many color pens and cute seals to decorate the album . After making the album , we ate ice cream . I think that I want to eat Cold Stone Creamery 's ice cream every day . I bought the Citypass in order to visit the ROM as the Citypass was cheaper than the entrance fare at the / for the ROM . I always pursue my goals . I want to use more natural and native like expressions instead of awkward ones . I drew him a still life , landscape and an act picture . Igot out of bed , and opened the curtains . I fell in love with Robert Pattinson ! But the first time , I did n't like him because he was cold to the heroine and other characters . Today my computer is broken , so I did not write my notebook , I have many things I want to write but I am not good at english , I am a student and I am studying about fashion dictate , . . and today I am a little busy , because we have a exam and it is about english . ihave lost my confidence in my english . . . . . the future is grey I 'll eat foods that have a lot of dietary fibers , low calories , and healthy , For example , konnyaku , wheat , tofu , etc . Inconsiderate and racist closed captions in `` The Tonight Show `` I am a cook , but I am also a student a university . I want to improve my English skills , so I am writing a diary . But I have nothing interesting to write . Boring courses and endless homework make me feel ignored . As is often the case with many animations , they have their original sources ( such as novels and video games ) which carry messages from the authors Toyota Motor Corporation , which is situated in the eastern part of Nagoya city , was an economic leader for more than _ _ decades in this area . I have studied English at a certain English school in Nagoya . I should give up studying about prosthetic limbs in Japan . I had a conference at the office yesterday . Since / Because I caught a chill from the air conditioning during the conference , I felt worse . For example cucumbers , watermelons , eggplants , potatoes and so on . I have n't written my journal for one month . Of course , I do not like typhoons . I think young and healthy people should give up their seats to older people or pregnant women in trains and buses . Honda 's shooting and assist were so wonderful ! ! ! I went into various kinds of sports : It is special kind of dancing . My mother made my favorite dishes : ear shell soup , duck cuisine , etc . I was full in the stomach and empty in the head . ( ^ ^ ) After shopping , I dropped in for a cup of ice coffee at Starbucks . Learning Portuguese I noticed that Portuguese grammar is more similar to English than Japanese . But they are also a little different . I sometimes can understand it while / by reading , but I ca n't write and speak it . I still have n't studied writing and speaking . I 'm embarrassed to say it in front of you native English speakers but I am teaching English grammar as a part - time job . attached is my curriculum history for futher Information . I searched the internet and found an interesting page . If you have interest in Japanese and have time , you should have a look at this page . Because I 'm poor in grammar . It has taken shape under the influence of the social cataclysms of the 20th century . My friend give me this website . I think it is a catharsis for them . However , I can not understand why an 11 year old boy chose to commit suicide . business streets during holiday We are in our winter holiday , so I went to see the business streets without workers . Well this is enough for today . It 's delicious ! ! ! Frankly speaking , I make this desion with worries and hesitation . I listened to a free public lecture in Topaz hall . He gave a lecture on the ' Challenge toward Excellence ' He is only 31 years old but , he has had a successful career ( related to / in ) international organization . and I felt encouraged . If I could write english well I could have written in more detail I 'm interested English , Spanish , and Italian . That has made me want to be a flight attendant . If I use the wrong sentence please tell me the right sentence . Nothing brings you peace but yourself . The best way to predict your future is to create it . Recently , I have been interviewed for jobs in China . because you are japanese , you can get huge income . Do you know what foreign accent syndrome is ? My name is Bianca , I am Japanese and I 'm studying at university , I am studying English and little bit of Spanish . My hobby is walking around at a park , shopping , and karaoke ! Christmas is almost here . . But I think to go on a trip on Christmas is good idea , because you can enjoy illumination for Christmas at other places you have never been and also sight seeing . I think this is different from English speaking countries , right ? sometimes we laughing , I might make a lot of mistakes . I was surprised by my friend in the UK on Skype the other day . Actually , I cut my hair in the front by myself . I said to my boyfriend . There are many children who can not apologize . Yesterday , I read an article about `` Lang - 8 `` in on the Internet news . It was very difficult . I am disappointed by my English , but I can ` t give up my objective , so I believe I can improve my English , and absolutely achieve my objective . Anyway , I have been writing English essays recently because I need to write one next February . I could communicate with them , but when they got drunk , I could n't communicate with them . My English is very limited . I boiled water after adding salt , then boiled the spaghetii . While boiling the spaghetii , I sliced two pieces of garlic , cut a chilli in half , and minced some parsley . I put some olive oil into a frying pan , and fried the garlic and the chilli over a low flame until golden brown . I removed the garlic and the chilli from the frying pan and added some bread crumbs . For instance , if you say something like ' long time no see ' if you want to greet your old friend , because I 'm working at foreign company as a member of HR department . In that situation , I thought he was insane and very crazy . He said , `` Maybe Jinwoo comes to school at 6 : 40AM . `` Breakfast ? I just did arrangements around my desk so calmly and looked around in the class . Whoever I am , it 's unavoidable to taste bitter feelings , is n't it ? I like to play video games . Yesterday afternoon , Dave prepared to join a baseball game , but I went to Tokyo Disneyland on September 13th . I thought there were not that many people . I was invited by a friend who is one of the hosts . After that , we were explained I want to have more opportunities to communicate with others in English . I am a beginner , but I will work hard to master communicating in English ! It is very good for their English . but actually , I do n't have confidence : - ( While talking with her , I realized that I prefer to hesitate first and then act . Here is one example If you get a brand - new thing ( some kind of accessory ) for free , do you always use it right away or wait until later ? If you sayYes , you 're a person who likes adventure and lives now ! Umm , , , I ca n't make long sentences : ( but only me and one other had / got 100 % Additionally , I would like to help people in need concerning Japanese ! I have to research about things to do in China . A complaint letter ( Writing Task 1 in Cambridge IELTS 1 General Training ) I feel so glad that can improve my written english this way . And thanks to the people who accepted me as their friends on this website . I will write something on this website and also deal with some of my friends ' problems when they learn chinese . We can help each other this way . Meanwhile , I also want to communicate with them . So if anyone sees this diary and also feels like they want to communicate via MSN , my msn screen name is honeyan @ live . cn . He hit his head hard on the ceiling and got a concussion . My Vietnamese Mamma Many people tell me that I 'm crazy because I 'm studying Japanese . `` Japanese is a difficult language `` ? I am really studying Japanese , and it does n't matter what people say . First one I met , I first met in Los Angeles when I was in second grade . We went to a lot of sightseeing places like Disney land , Universal studios , Hollywood and so on . Recently , CO2 iscausingacid rain particularily in Europe . As a result , forests have been injured . For example , the higher the global temperture is , the higher the sea level will be due to melting ice , as a result , some islands will sink . Of course , people who live on these islands will have to leave their country . For these reasons , I believe that thebenefits are outweighed ( outweighed ) by the negative impact automobiles have had on the environment . They have lived in Melbourne ( for ) about 40 years . I bought a wine - coloured cut and sewn . I have been seeing him for two years and three months . I will buy a Christmas present for my parents next Thursday . I read some comics and played video games . During my business trip on Wednesday through Thursday , I found a cute cake being sold at Marui ( department store ) . I bought two packages impulsively . We are keeping touch since 2007 and he would help me make other canadian friends through Facebook . It is said the flapping wings of a butterfly might create slight changes in the atmosphere , and , thus , ( it might ) change the path of a tornado or prevent the occurance of the it . It 's much like a metaphor which can be seen in movies as well as in our real lives . No one knows what will happen , since we 're not fortunetellers and ca n't predict the future . One of my friends called me this evening and said , `` One of my friends in high school has died `` . It is difficult for me to accept that , even though she was not one of my closest friends , she ( always ) let me copy her homework before exams . I used to go to her house , where we liked singing ( songs ) and ( ? ) shipping ( ? ) quite often . I did n't expect her to leave from my life soon like this . I feel sad . I used to cook thai food with her , like pudthai . we were really happy to do it because I told her that I could n't cook anything except an omlet . Also , I ate the expensive food at her house because we bought a lot of thing for that , you know , thing near her house . It is really expensive but on that day , we did n't care . But , we cared about whether or not we could eat the food , because maybe it would n't not delicious . I just didnt have a chance to use it . So , I registered and wrote this . I have n't spoken in English for a long time , and I know little about I really do n't know how to improve my English . I have found , so far , that this system is potentially very beneficial for me to keep posting entries , especially since I am having a hard time keeping daily updates on other websites such as facebook and so on . I am not saying that lang - 8 is better than facebook as a SNS site , but this might be a system that suits me well and it encourages me to continue learning on a daily bases . The 5th day , Gymnasium But I think that practice is very important . You can make different friends there , speak a different language , the most wonderful thing is to share your own culture with others . I know I am not that ambitious , and always have the tendency to doubt myself . I want to improve my English ability and gain more teaching experience . My idea throuhg my experiences is that the brain functions more efficiently in the morning than in the evening . Noboribetsu Onsen is called ' ' Onsen paradise ' ' . This is crazy : ) Second news : now I learn English , but my work sometimes eats ( takes ) time from learning : ( Third news : I am preparing my photo exhibition , but I do n't have ( enough ) time for it ! I have learnt English for a long time , but I can not express myself freely in English . Language environment , frequency of usage and not persisting in studying may be the reasons why I can not make further progress . The first thing to do when I got up in this morning was to search for the result of Classico , a match - up between Real Madrid and FC Barcelona , on the Internet . I predicted Real had a little advantage considering about their recent performances . I was planning to have an English meeting with my colleagues before I actually entered the company . We , the new faces are all hired as English - speaking sales representatives , so I thought it 's good for us to talk in English together to keep our English skills up to a good quality . I talked to Hayashi - san , a female co - worker who spent her high school and college days in Australia , about my plan to hold the meeting every weekend . I will talk to them and suggest that we have to prepare something to discuss beforehand . Premarital sex is becoming widely embraced in Indonesia nowadays . Those parliament members are prone to polygamy , adultery , and corruption while they talk about how immoral the youngsters have been . I went to a restaurant to eat food . Finally I finished writing my resume tonight . It was so difficult for me to write it in English . It was already more an half year that enrolled in this website . Unfortunately , it does n't make sense to use this website . I hope that there 's somebody who makes me understand and guides me through this strange world . My husband said , `` I am being transferred to Hong Kong `` . Everything is very interesting and unusual for me . The test I took consisted of 2 parts : listening and vocabulary . According to the test result , my listening skill is in the upper intermediate level , which means my listening level is getting better than it used to be . Which verbs may I use in the above sentence ? The reasons why I study English I do n't want to stop challenging something . I have lots of things to study about English , like grammar and vocabulary . I walked I was in the Botanical garden on Wednesday . My excursion was really interesting , I did n't know that the Blue Spruce arrived in Russia from North America , for example . Up until now , I have worried about my English too much , so now , I have decided to go to the US . Sumo is the traditional wrestling of Japan . I often watch Sumo matches on TV . Yesterday , I helped my friends write compositions until 3 am . So I 'm so tired today . I saw a scene when a person threw his cigarrete to the ground from the window of his car . Actually , my English is terrible . I have been taking an English class for about 1year . Many people who can speak English fluently are introduced in the book . Or I want to sleep more . I made some new friends there and talked to them ! ! So I will give him some tomorrow morning . I got him smiling , so I became happy ! I heard that 3 big torched stages will be on Kalakaua Ave and there will be lots of hula shows for 4 hours ! Actually , I 've been going out with my girlfriend ever since my practice teacher time . on a snow - covered ground Sakuras have begun to bloom . There are many people today at the entrance ceremony . So I hesitated to go there , but today I dare to go because the weather is good . the place where the shopwas built is inconvenient to customers . Today , when I came home , My son had already come home . The eleventh issue will be released in Autumn next year . In addition , as many Asian countries surpass the hurdles for a developed countries ' tourist such as sanitary devices , etc . , it is getting more and more difficult to attract foreign tourists by ethnic and historical taste which is one of strongest resources of Kyoto . The other day , three of recovery workers in Fukushima nuclear power plant were exposed to radiation . Although there is conflicting information , I was dissapointed with its management system . Doctors tried to save her , but she was injured very badly . Fortunately , he has admitted that his clothes need a little bit of updating . I work at a cram school for elementary and junior high school students after school . If you like mathematics , let 's try it ^ ^ Recently , I read a book that introduced a lot of English - practising . It looks three dimensional with special glasses . This is my first journal in lang - 8 and I dont know what I should write on this page but I 'll make an effort to write something and I hope it will be useful for me . I then discovered that my pronunciation is bad . I love Hawaii The island is so wonderful , and from that time , my dream has been to live in Hawaii in the future . My major was psychology and I also worked at the university . The people around me are very nice . But , I want to study English . I want to talk other people and learn about their cultures . I began this trial last week which made my living costs decline rapdily and also make me eat healthier . For instance , when I watched South Park , which is a famous American anime , there are many words that I ca n't distinguish . ( Not only slang . ) So I 'll try it with an accompanying CD of a English dialouge textbook . In college , there are many books , laboratories and professors . It is fun to dance 50 minutes , so I want to get slender body as soon as possible ! ! ! ! ! ! ! ! ! ! ! Actually , I have decided to go and work in Australia during holiday . If you speak English and maybe are interested in Russia , or Russian language I guess you 'll have something to talk with me about . It 's our favorite park these days . He played there for 40 minutes , then we went to the area to play with some small cars . It became the time to eat lunch , so we went to arestaurant near there . He knows panda and pig before I even noticed . I 'm a college student in Japan and will go to Vancouver this April . So , I want to improve my English grammar ! when you go to various countries , you will learn more about your country than about those countries . However , this does not neccesarily mean that people in rest of the world live in the same way . I like to play guitar . I have been playing guitar for 2 years . My family has ( * or consists of ) seven people and a cat Reo . I will try to write about something interesting tomorrow . and I asked to check out two books , Today there is no school , because it 's Sunday . But my sister sometimes make an anonymous phonecall because it 's an company charge . I 'm so happy : ) and shopping is exciting ! ! Today , I made a manuscript for a debate tournament with my friends . I belong to the debate club at my university . In the Roman circus , one of the most popular sports was performed by a person who leapsaround . She was obliged to vow openly the she had been there . My company sometimes holds farewell parties , Christmas parties , year - end parties and so on . The restaurant next to my office holds a promotion that we can get free drinks for an hour for 10 people if the business card we drop into the box at the restaurant is selected . My friend was very tired because it took a long time . I have decided to stay with an Australian family . I want a lot of information . A crossing in this city may be very surprising for foreign people making a trip to Sibuya for the first time . I repeated NPR news out loud by reading a transcription . I have to practice more ! I will graduate in 1 year . Looking good ! we had an opening ceremony in my school and I must study hard to I am a professional wrestler I 'm available on Monday . Now that I know about this , I believe my english will get better . I heard the grade of TOEIC of Taiwan citizens was lower than Japan , Korea , . . . . So would you please share your experience of learning English or another language with me ? I do n't know why , but I overate snacks . . . . The time of writing a diary has gradually shortened . For example , my job starts at exactly 5 o ' clock and it takes half an hour to get there . We are trying to speak solely in English during the meeting . Tomorrow I 'm going to dubbing in Maldives . However , some people will keep studying languages as long as they 're not losing their interests and fondness for them , even though there are many barriers to learn them . attend : I decided to attend the language school in Umeda . occupy : In this company , women occupy 60 percent of the excutive officer positions . concentrate : I was scolded by the teacher and told to concentrate on the class . persue : Humans have been persuing the truth , but only few people have found it . Hopefully there is someone who can help me . Although I had made a studying schedule , I am way behind it . But fall was coming towards us in silence . Fisrt , I want to take a city - tour bus around Seoul . This website of course allows me to keep practising English , but only my writing . I 'll write my french `` hello post `` later - I have my head full of english now due to my work and I 'm not good at `` switching languages `` yet . Today I practised playing card magic . Actually I did n't exercise yesterday , either . This is the first time we have lived far from our home so we are feeling very unhappy and miss my family so very much . Especially , I miss when we sit to eat together and when we play something together . All students that study abroad say they have the same upset feelings . That is , they miss their family when they have a celebration and they always want to go back immediately . I guess that famous people can permit themselves strange things which become elements of their style . - sugar , 1 - 3tsp - Put mint leaf , lime and sugar into tumbler . Every morning I go to Starbucks coffee at 7 : 30 . Hello ! ! Because I thought that having a big room could lead to an expansive life . I have not done much exercise and have drunk and eaten a lot . Disney and Japanese animation 's characters are illuminated there . I 'm learning English to communicate with online people . Please check my sentence , and pick up my mistakes . I are breakfast and went to the library to study English , but I coughed so many times in the library that I went back home at around 3 : 00 pm . How Will I Spend My Spring Festival January 1st on traditional Chinese calendar is Spring Festival . I hope these could come true . I do n't think I 'm contacting him until he contacts me , because this reprehensible audacity ( ! ) has made me all sulky . And I 'll also help other Chinese as possible as I can . I planted sweet potates last Sunday , I also planted cucumber , eggplant , tomato , corn and watermelon . I 'm looking for big harvest . A certain research center designated night time work a second degree carcinogen . Tell you the truth , a cutie was sitting in front of me and I wanted to pretend that I was studying . . . Everything is beyond my imagination . Usually my landlord notices me when the visitors are coming . However , somehow my landlord and a visitor came to my room without notice . . . ! ! But , how could the landlord and visitor know about a story of Gachapin ? This makes me confused because I feel he 's like a little boy but , I 'm gon na leave my country to go to Canada in 2 months . We did n't talk about these feelings but , someday I want to have a the time to talk about it [ with him ] , but I 'm scared that it will change our relationship and feelings . When we see an old couple jogging together in the morning , they look happy . I made cake of moccha for my mom and gave card from me , dad , and my brother . At the seminar , the instructor said that Japanese tend to feel nervous or tense when they make a presentation for many listeners . 3 ) It is unusual even for Japanese to speak with highest honorific grade . `` I got a lot out of the experience . `` `` I got a lot from the experience . `` ? I have only simple sentences , and vocabulary . Please read my sentences , patiently . Some people think that they can learn better by themselves than with a teacher . Others think that it is always better to have a teacher . Which do you prefer ? Actually , I 'm studying Microsoft Excel by myself using several exercise books right now . However , the most difficult thing to study by oneself is continuation . We can learn passively while being tutored and it 's easier to start studying . But I decided to get a new notebook for my convenience . In addition , Japan was the winner of women 's W - CUP football today . ln order to get rid of my bad luck , l 'll get out of school and have fun with my friends this weekend . The first time it was a German guy , he had been seeing a russian girl from Sankt - Petersburg before our conversation , but they had down split up . We were talking about different writers and he mentioned Bulgakov , I said Bulgakov is a Russian writer , he was surprised and asked me `` Really `` , I answered `` OF COURSE ! ! She 'd been learning for 5 years . Despite this resistance , I wasted 4days and about 5000yen . . . . `` Pirates of the Caribbean : On Stranger Tides `` was exciting , too . I go to work by train and walk for an hour . I do n't like the train because there are so many people on it . I think that it is a good thing for children , however it is bad for adults . This story is really sad and breaks my heart . The pitches are written in fret numbers , so tablatures do n't show musical ascent / descent very well . Eventually , I stayed with my friend . Over 30 people came to the Christmas party , it was lovely ! ! Wasabi is Japanese horseradish . I plan to go to Germany for a business trip in June . I am in the brass band Is there any language course from April to August 2011 before I enter I want to have many friends throughout the world / all over the world . Kate has her dinner in a school canteen . Since I 'll stay my home for two weeks , I ca n't see my dormitory friends during the term . At my university , freshmanhave to choose one of these courses for the next year : literature , intercultural communication , linguistics and international relationship . I bought a chicken and rice casserole , pasta and iced tea . I like to eat spaghetti . I do n't like hot weather , neither do I like cold weather , but if I have to choose one of the two , I ( would ) choose cold weather . I took a picture of the shrine and the sweet called ringo ame , or candy apple . My wardrobe needed to be tidied up . I go to the lessons every Sunday . But finally I found what I exactly want . and I just wanna learn more foreign languages , I want to be a translator . Besides medicine and injections , what methods can help cure a cold quickly ? actually , I 'm not good at speaking and listening to english . . I will plan a weekend schedule . in the Afternoon I will be watching movies at theater , and eat dinner on a newly - opened restaurant near to it . Sunday is my classmate 's wedding day , I will attend . What is the difference between present perfect and present perfect continuous ? I am a student , but I have a job as an instructor in a fitness club . The members of the FIFA World Cup were announced . Today , we had an English class and watched the drama Full house . So everyday I look fearfully at the scales . One of my colleagues said that if the suspicions and misunderstandings about the conflict become amplified , a war will inevitably happen and our country might be dismembered into several small countries . If that is the case , I will have to apply for a passport when I go back to my hometown ( which is far from my workplace . . . ) I hope I can have more opportunities to practice with native English speakers . I thought that I should be careful when driving my car on ice . It 's very cool and comfortable in summer . I will see many animals in a famous Zoo and do horse trekking in Hokkaido . It looks so modern . Most of the vehicles in the parking lot were cars and scooters . I rode my bike into the parking lot and I asked the guard loudly and dignified , `` Excuse me , where can I put my bike ? `` . Well , I was succesfully on the first step to being special there . Finally , I found the most appropriate position for my bike . Still having confidence , I went to the stand , and after obtaining my money , the bank teller asked me for the receiving fee . It took a few minutes to collect all the small change in my purse . A heart that is always waiting for you and satisfies with your love . This way reflects an indemocratic face of America . Oh , America . If you call for respect of human rights and human dignity , why did you throw Ben Laden ` s corpse in the sea as if he was an animal not a human being ? Second , I decide to research literature for my theory 's title with my Finally , I want to work on improving my oral skills and not being nervous while I am reporting something . I was surprised at how crowded it was . I should study English very hard . It shows a theme park , hamburger , cellular phones and Coca - Cola . Surprise ! The new room is wide and clean . I apologise if some of you feel offended , it 's just a linguistic possibility that crossed my mind this morning . He said a drunk person lost consciousness ! I told him the address to another hospital , because my hospital does not have a CT scanner . I did n't want to watch the concert standing , but I could n't watch comfortably sitting . The door - to - door parcel delivery is ridiculously expensive , but I have no choice but to ask them . It 's been a long time since I had wrote before . . . . Once upone a time , there was a man who had worked hard everyday , all the time . One day he caught a cold . His illness was not bad , but he could 't stop his nose from running . After a while , finally , He came up with an idea . he looked up and just stared at the fluorescent bulbs on the ceiling , because he was working in his office . 4 , The plan was executed as originally scheduled . Momo is so smart and popular among dogs in the neighborhood . It 's so expensive . Despite that this book was written about the devil it is the smartest and the most amazing book I have ever read . This scene is describe so detailed , it 's like the author was there . Recently I watched a TV - programme about Bulgakov and found out how he wrote it . His wife wrote it from his words . about photograph . I Especially Iike the kappa sushi which is a Japanese high tech sushi shop . He noticed us and he performed with melodramaticly for us . I had always sent the picture from my computer skin to her becasue I ca n't answer her question since my sister bought the computer I never had to ask her about speck computer . One of my friends came to my computer 's control by using some program to help me check my computer . I did n't know it had that program , and I am really surprised how he did it . Now my senior is looking for a cheap airline chiket . This week I talked to one of the members of the English practicing club . However , this morning I went to my office for a little work . Thus , the festival was really excited . And I had lunch at a ramen shop with my labolatry members . I got ta go to the fiesta again tomorrow . I you have time , come to the fiesta . Please look at this sentence below . I do n't want to face a grammar book every day ( it 's so boring ) , and I do n't think it has a good effect on me . This is my first diary on this website , so I ' , m kind of nervous now because I am not sure if someone correct my English or not . it is a good night I am in the computer , my family is asleep beacuse is late at night ! ! . . . It is 5 minutes walk from JR Himeji station . I will work as a translator . I hope I speak Japanese and English as if it were my native language some day ! ! So I went out to meet one of my ex colleagues . The cherry blossoms of the spring came little bit late this year , but the mood of spring always makes me happy How about you ? According to the unofficial information from a friend of mine , who is the finalist of the former astronaut selection , the authorities will give the examination every ( ? ) 2 or 3 years for some reason . People have trouble finding jobs and they end up becoming homeless , so the government needs to help people to find jobs . The other is to try to prevent homelessness by providing accomodations , such as hotels . Organising medical charts I have a lot of thing to tell you about my hometown but I scare you correct my diary for a long time please let me a bit to tell you while I stay at home and write my entry . I do n't have that much to tell you , but when I went to outside I have a lot . . All the people do agriculture and take care of buffalo There are lots of beautiful mountains in my hometown , like ZiJing mountain . We live nere ZiJing mountain . I 've just added the Lang - 8 to my favorite list . Happily , I do n't have a fever . So , I went to the English speaking Salon in school and I spoke English . But I have difficulty speaking correctly what I would like to say . I watched what was happening in the northern area on the tv news . Now , not only Japanese but also people living in abroad worry about the effects of radiation , but do n't worry . We got up at nine o ' clock and took breakfast at a restaurant in the hotel . We packed our luggae and checked out of the hotel at eleven o ' clock . We had to be at the hotel 's lobby , so we left our large baggage at the hotel . Then we walked down the river to Merlion Park . About thirty minuites later we arrivedat Merlion Park . Merlion Park has two Merlion statues . Mixed feeling ( s ) One is Mario , she 's a Japanese that everyone ca n't tell / guess the age of , and the other is Sinan , a turk that is a little bit mad ( I mean funny and crazy , careless about the rules ) . So it 's going to be a very fun and intensive semester . I think during the preaching class , the speaker aroused my interest in the bible . This is my first time on this site - I 'm excited ! Hope to keep this diary for a long time enough to and this day , I 'd like to take a walk at the park with Earphones on while listening to songs of my favorite singer , ' Brian McKnight ' . . . When I met a doctor from Stanford amonth ago , I could n't talk fluently . How can I have confidence ? Please tell me , What is the difference between NO and NONE . He had a notebook that he was carrying all time . I think I love her . `` 7 months later , they got married . I went to Hakkeijima Sea Paradise yesterday ! Ciao ! Today I met some friends . Recently , learning English has made me very tired , but talking with friends in English is very and will make me I read Japan Times Online to collect information about the Japanese economy , affairs and events . In Japan , ' Valentine 's day ' has a different meaning from other countries . I , a chocoholic , love this season very much . How do you spend valentine 's day in your country ? [ 2011 - 2 - 15 ] Surprise Today was the happiest day in February . Last night , when I was attending class , a cellphone call made me nervous . Why ? Because one of my classmates called us asking if someone had come back to the dormetory , but all of us were outside except for that classmate . imaging no one was in the dormetory and my classmate saying that he heard someone getting in his next dormetory , we knew that there was a thief getting in it ! so we ran out of the classroom immediately and towards to our dormetory ! Fortunately , after arriving at the dormetory , we discovered that nothing was stolen , We were aware that the thief had the key to the dormetory , maybe the thief was a student who had even lived in the same dormetory ! This traditional festival originated from an old legend . ( The next two paragraphs are not written by me , I just want you know the story . ) when my teacher heard the sounds that my classmates made with the Dan - so , she decided to let them pass the exam because they made the correct sound . It was so exciting and unpredictable . I know Japanese people are notorious for not knowing much history . actually I 'm surprised , its awesome , it really is . Yesterday I made a foreign friend through Facebook . At first , we were divided to two team . Of course , the team being questioned have to answer quickly . I work in the department store and sell a lot of baked cake . In Japan , men who received chocolate from women have to give some sweets to women ( on White Day ) . By the way , I will go shopping with my best friend tomorrow : ) Because her school 's admission exam was conducted there . She wrote a card that says `` Thank you for coming to my town and you guys are so cool `` , drew a picture and cut it in the shape of a heart , even though she had n't seen them yet ^ ^ ; I was a master of a ceremony for two or three competitions for the master of the sumo wrestlers , so I know him well . I pretended to be the person and said `` I love you `` to my primary school classmate , and she believed it . When my mother and my aunts grew up , and they got married and had babies . My favorite restaurant My favorite restaurant is `` Omoya `` , located near my company in Yoyogi . I always looki forward to eating a traditional dish of Japan that is made from seasonal fish and vegetables . I read Sherlock Holmes , I was so excited , Can you imagine composing a picture with nothing else but hair ? Can you imagine making a picture with butterfly wings ? I ca n't imagine this , so when I saw the pictures , I was deeply moved by the composer 's patience ahd creativity . It is difficult and hard for me to study English but I like to comunicatewith foreigners so I like studying English alot . I was uploading in the internet for language exchange . so I rejected him , but he has been sending me ( SMS ) messages and calling me until now . We were teaching each other , but after learning he took me to a beautiful river and he said he is looking for a girlfriend . . I was very shocked and became so angry and disappointed at the men of Singapore . Finally , I graduated from graduate school of engineering and got a degree of Master of Engineering today . I usually spend my time drinking with my friends and watching American dramas . Today , I found myself just watching American dramas again ! ! A simple question just popped up in my head . It 's like Venice in China . It was all lols for me but I could n't say anything . I met some foreigners and many students who also want to practice their language skill . I know it does n't make sense but I would like to know if is it gramatically correct . Is that true ? I 'm supposed to visit Germany , Belgium , Holland and Italy , at least . Including : Meals ( breakfast for the 1st and 2nd day , lunch for the 1st and 2nd day , dinner for the 1st day ) . Bus ( from Hanoi to Ha Long Bay ) . Guide who can speak English , Boat . Cruising and tour of the limestone cave . The story is hard to tell but it is wonderful for me . The scene was recorded on video camera and the article said ' as if he were a magician ' . The person I admire is my grandfather . When I was a child , my grandfather taught some useful knowledge , for example , Math , Chinese , science and so on . My grandfather is very kind and courageous person , so his students all like him . My grandfather is the person I admire . I have no friends here to study English with . It was too early such that there was no any other customer yet except me . We went to a library to study until 4 in the afternoon . Then I left for the post office to claim an official document . I remember your smile from the past that never was , when we all lived together in a valley , in a forest . It 's a pleasure to meet you . I thought my order was received . I 'm working as a cram school teacher and I 'm good at Japanese ^ ^ The tool was made by a good programmer . My first objective is to keep on writing in English every day ! I 've written an article , but I will try my best ! ! ! : D Thank you friends for caring so much , I do appreciate any messages or corrections from you ^ ^ My roommate has been keeping three small turtles . I was looking forward to reading this new series , but I did not notice that a new book was sold . Lucky ! I 'm happy to find a creative store that sells many creative , useful things , such as , milk in the shape of lamps , fried eggs in the shape of lamps which shimmer in the yoke , flowers in the shape of electric fans , and so on . But the most interesting thing to me is a lamp that is like book car and can shine out its edge . It is so convenient to me in reading in the dark that I can read comic books and wo n't be found by mother . CS5 is produced by Adobe . My daughter has been going to this school since kindergarten and she likes it . Well , I think I 'll write everyday , Although I must go to work leaving her alone , I think that our time together is still good for us . My wife and sister - in - laws will come back home and we 'll have a party . As you know , when experts advise you on something , you might accept it without any notion of whatyou have in your own situation that they do n't know . Why 's the delay ? I 'll definitely order the rest of the series . I found that some of my friends had been here . I like it very much . Another was making the temperature inside their own house as cold as the temperature outside . What kind of alcohols do you like ? Some flavors are like passion fruit , woods , or smoke . At the event , many companies offered whiskies to visitors and the event program included an artistic performance and a cooking class featuring whiskies . I 'm going to watching musical `` singles `` with my office colleague . Another famous scenic spot is Songyang Academy , which was built during the North Song Dynasty . By the way , I will do a presentation for my president the day after tomorrow , so I 'm a bit nervous . `` Get everybody out I want them all actived * * * `` I am now in the 7th semester of Engineering school . Next , _ I _ create character designs . But I have something to do , for example , cleaning my room and preparing for tomorrow 's tasks . Since I came back to Japan , I have seen my friends who did n't see for a year . I talked to her by Skype at the first time . The Skype is clear . There are many kinds of appendices . The system to register courses here is more complicated than at Tohoku Univ . Most of the courses require that we get permission to register . When I went to an Asian grocery store , a clerk talked to me and began to explain the rice sold in the store Today is the seventeenth day of the sixth month of the Lunar Calendar in Taiwan , and the seventh month is called Ghost Month ; namely , Ghost Month is coming ! As interesting as these activities are , some still regard Ghost Month as an unlucky month ; hence , some keep out of playing in streams or sea , some go to temples every day , and some are very careful of what they do and say . This was the first time in a long time , because I had a university entrance exam . I am looking forward to him growing up . O ~ M ~ Goodness ! ! She said , once she was called into the police station because she forgot to bring her driver 's license while she drove . Thank you all for your patience and kindness . fascinating way to improve writing However , she is so modest and said `` I do n't need anything . It is difficult to select presents for women , especially for girls . I am learning English and Japanese . He was a great driver in the narrow road heading for the river . I was very happy to talk with my friends and watch the bright water splash . My grandfather was Filipino and my grandmother is Japanese , so my mother is a half Filipina . Though I remember words everyday and when I read an english article it is so hard and I come across so many unknow words . But I fervently belive that what makes you scared , will make you stronger ! But I found out that I was easily addicted to the plots , not the English actor 's lines . Fires in the forests around the city are still raging , and if the wind changes direction , the smog will cover the streets again . Ra - yu is chili - infused vegetable oil . Well , to make a long story short , I won a prize from a TV program that entitled me to take a picture with a baby panda at the Chengdu Conservation Center in the Sichuan Province of China . While listening to the global news from London and giving my daughter piggyback , I wash the dishes . This is [ probably ] because I slept with only [ a ] t - shirt [ last night ] . I 've made a dress for my daughter . I have made my daughter 's dress which is pale yellow so she wants to be a princess too . At the moment I have my music turned up really loud , because there are horrible sounds outside . One of my neighbours seems to be having his birthday today . But they are playing the instruments in a completely wrong way . . . it sounds awful ! Today , I 'll introduce to you what I have been trying to do recently . Ordinarily , I do n't feel comfortable with the atmosphere , and I 'm annoyed with them . This attitude is better for me than being annoyed . In summer there are no temperature differences because it is always so hot . Do you have any ideas or do you have any suggestions of good recipe ? Generally , Japanese girls like natural color when they wear make - up but in the dark place , we ca n't see seer color so she thinks vivid color make up may become a trend . I have to choose 2 subjects for passing except obligatory maths and Russian . I am inclined to choose ( what is the difference between `` to be inclined to `` and `` in favour of `` ? ) English and physics . I am very hesitant about physics . I can learn by heart all dates , but I will remember them only 3 - 4 hours . But now , he has found himself and he is reflecting about what he did . Every year , on July 18th and 19th , a summer festival is held at the shrine of this town . I dashed out of my apartment with my kids , to the street . the leader of the mikoshi encouraged its carriers . And the people on the street applauded to the carriers . I am not good at summarizing stories from books and movies , so this practice is tough for me . The story begins with humans destroying all natural resources on earth . They now have to seek resources on other planets . They discover another planet that has a lot of resources . However the resources lie in the places where natives live and they will defend them . One of the AVATARs learned how the natives think , what they believe in , and cherish . Meanwhile , the other human beings attacked the tribes and their sanctuary . They believe in spirits and cherish nature . Level of Chinese college students ' English As a college student in china , if you do n't understand some simple English , you 'll be certainly laughed at . I 'm a third year university student , my major is Japanese . Only our Japanese department does n't study English in the first year . But we all have to have CET4 or CET6 ( Common English Test in china , only college student can take ) So we pass the exam by using what knowledge we remember from high school . It 'll make me good at pronouncing English : ) I think pronunciation is very important in order to have a conversation with native speaker smoothly . If you are familiar with Taiwan , please let me know about I heard this is the real size . Maybe my pace is once a month . 2 weeks have passed since the earthquake in Tohoku . Japan has recieved a lot of support from people all over the world . And white symbolizes purity . Everyday , her smile makes us happy . I do n't know if the same course tracks exist in the US , and I 'm not sure that the liberal arts or the science tracks have the same meaning as bunkei and rikei in Japanese . I enjoy listening to and singing korean songs , The two brothers are very vigorous and said to have fights constantly with their mom . This thing is quite useful to me . He has a great stamina , and does n't stumble easily when someone hits him . The man feels that the increase of the Health Center 's fee is still a good deal because it is still cheaper for us than using other company 's or pharmacy 's . Actually , we can save $ 65 by getting vaccinated at the Health Center . In contrast the man says that you do n't have to pay , if you do n't need to take the vaccination . In addition the man advised her to wear warm clothing and use an umbrella to prevent catching a cold because she always ends up getting sick during this season . I took a morning bath with my son and had a breakfast with my family afterward . We made an appointment to meet at a cafe near my house . At first , I introduced myself , then I asked her some questions about her experience as an English teacher . I mentioned to her that my interest is politics , so for example , we talked about why the prime minister is ( so ) unpopular , or what 's the difference between the new immigration law and the old one , etc . I wish I was a superman who can do many things at the same time . My Personal History No . 1 Aug . 282010 Yahagi was one of 12 military families who supported and guarded the Japanese emperor . The emperor called `` the descendant of the gods `` had landed on the island of Japan with military families . First off , do not associate with the killjoys , because these people keep you from laughing and make your life a state of sadness . Therefore , it is better for you to avoid them , because you will definitely be badly affected by those people . Secondly , surround yourself with what you love . Moreover , be satisfied with yourself as you are . Do not think about your height , weight , or diseases , because thinking a lot creates worries . But all I did for preparation were only Lang - 8 and conversational lessons 3 times a week . But my youngest son was hanging around the stadium during the match . Do you mind if I give you money for the T - shirt and the ticket when I meet you ? Some people say he is a fairy , ghost or illusion , but we do n't know the answer . If you have some good advice , please let me know . Saving electricity is an important issue in Japan . Head office and factory have keep temperature at 28 degrees . But I am a sales representative After that I have to go to outside to visit our clients I hesitated to buy that ( it ) , but I tried . Because I have watched them a lot of times . Recently the weather is so bad . exam question I drank TAPIOCA ! ! Returning to the song , I think that without hard work , you wo n't speak English well . My school is in southern Seoul , and my house is in Yong - in , Kyeong - gi province . It 's kind of irritating . I have no choice but use that transport . According to weather forecast , a typhoon caused the rain . So I was a little bit disappointed . English is very difficult to master / learn . If we meet someone in person , how fantastic would that be . Then three people continued the discussion . We talked about how we will meet at Tyler 's house in our dreams . I will prepare Thai foods and neechan prepare Indonisian foods . I was pushed by many people and I had to be in an awkward position like in the Matrix ! They can live with little water because the hump has water . When I was a student , my science grades were very low . I 'm writing in my diary for the first time in many months . so I have n't written English sentences at Lang - 8 for a long time . and I am going to attend the international forum with affiliated school students this autumn . Some affiliated school students are students from foreign countries , , I was annoyed all day long For example , some homework and deciding the subject of my graduation thesis . Skype is for learning . Avatar is one of my favorite movies . I 'm little nervous About the mine accident in Chile At first , I was happy and impressed by the news that all the miners had been rescured . After that , I felt a little strange . Why did the Chilean govornment agree to re - digging such a dangeorous mine without appropriate research . The attached lens is mine , a Nikon AF nikkor 50mm F1 . 8 . I 'll play with my junior shool friends tomorrow . I hope I can meet many good friends here and exchange languages . I believe learning languages is same as learning another world . Today , I was reading many magazines about delicacies in the bookstore . Blackout ! ! It was a blackout ! ! Today is Valentine ' s Day . ahee ~ cheer Up ! ! ! ! Could you give me some information about this song ? There were many beautiful traditional buildings . I ate sandwiches , scones and a little chocolate cake . All food wasfantastic ! ! ! I wondered if I was aprincess . I have visited Kassel . I answered her that it was a story about a person who became crazy because he read too many books . We laughed . They were done by artists from the Impressionist movement . I hope that I will be able to meet nice friends through my diary on this website . When I was reading passage about a new contemporary art museum in L . A . , I found something that was n't clearly deliberate with it 's meaning . The phrase that I did n't understand was the following , `` A successful Broad museum would go along way toward cementing that status , which makes the possibility of its failure that much more of blow . `` The story is about a TV reporter ( Bruce : Jim Carry ) who has just lost his job , following that , many unlucky things happen to him . Getting to know how to speak the language is an interesting thing . It is okay even if it is a black one . Okay . ) It was inconvenient but I thought it was kind of funny actually . My brother 's friend 's house was kind of under water . Fortunately , I live in the highest area , so my house was OK , somehow . I have also read the news just now , and according to this , at least 51 people were confirmed dead due to `` Ondoy `` storms and 280000 displaced due to flood . April ( ? ) 10th the starting pitcher was Eric Bedard . For example , when I buy something priced A $ 1 . 53 , I have to pay A $ 1 . 55 . The begining , I was at a loss . It is hard for me to concentrate on study at around two o ' clock because I really feel sleepy . . . . I felt refreshed after the nap . It is important to think about strategies and just try them once regardless of their credibility when we have a problem . For example , They tested it so seriously that I laughed more and more . Its total area is over 17 million square kilometres . There are different types of climate . I would appreciate it if you would help me acquire a good command of English . I 'm concerned with a practice session in preparation for a public performance . I am majoring in the architectural equipment industry . I do n't think it is a hay fever season now , but just some allergy of mine . . . I 'm a beginner at Lang - 8 now . I keep watching until around 2 or 3 a . m . I 'm sure it 's an unhealthy lifestyle , but I ca n't stop it ! ! Today , I went to the university . So , I went to see a doctor the day before yesterday . But my doctor said that I have an ordinary cold . Especially I liked sheeps . Hello , my name is Claudia . I would like to be a teacher . I like volleyball , romantic movies , and anime . I like music , but a hate the banda music or something like that . I would like to improve my writing . I figured that she might not want to talk to me so I told her it 's OK to end this conversation . 3 ) My another parter , who is an ABC , told me that he was busy typing a menu for a restaurant . She walks like a lady , but she always carries a large gunny bag filled with books , which is a little bit not so compatible to her `` gentlewoman style `` . I had a bit trouble when I attempted to sign up for the forum . To my surprise the code was accepted . Sometimes , I think about visiting France to fulfill our desires . Maybe , I 'm still scared of the feeling of losing him , who was very precious to me . All of the students were divided into 4 teams and they made some dishes by using wheat they 've already milled . The restaurant we chosed had cute waitresses wearing Japanese traditional clothes . I am really annoyed by them . . . They especially love Red Bull and Monster . Library is open 24 hours and a few studemts are basically living there . Tomorrow , We will have a welcoming party for a new employee . I 'm a fan of Hanshin Tigers , a professional baseball team . By the time it started , I had helped her buy the alcohol because she was not [ yet ] 18 years old . I have to work , so I will say goodbye , and I expect to see you soon . Your brother , R My apologies to those who work on Saturdays and those who do n't work at all - apologies mixed with regret as the feeling that comes with the arrival of Friday night is so exciting . In order to add some value to this day I 've attached some amazing illustrations by Alexander Jansson that might make you feel some of the beauty , delicacy , fragility and strength of the world of his imagination . I stayed in China for two weeks . I was told of the existence of lang - 8 by my college senior . These are my opinions on the advantage and disadvantage of eating out . I searched new music on Youtube as soon as I got home . I still do n't know how to use this software much , but if I can use it efficiently , I 'll be able to compose cool music . My name is Lisa . I have been learning English for eight years . I like swimming . The story was during our talking , he was talkingabout howhe had a big test coming up and how he was reallystressed out , because he had to read a lot of material both from the textbook and out of thetextbook . Then , I asked him what he was studying for , and he told me he was in a TESOL program , so when I heard it I slipped something out of my mouth like `` what the , why does theTesol program need a hard test like that `` As soon as I saidthat , I regretted it , because it sounded like I was looking down at his course . I got my result from the TOEIC . My favorite I started university study at an old age . I 'm a front - end web - developer . I started 3 marionettes and even if they are in their beginning stage , I am confident that they will look great . Am I prepare to go foreign ? I wondered if the hot springs were made naturally because there were no volcanoes there . He said that he was European and traveling by himself . I 'm looking foward to it . I talked with my sister - in - law today . She said that she is going to Hawaii this autumn . Actually , I feel the negative effect caused by the credit crunch which is expanding to tertiary industries day by day . Anyway , my office is now based in a foreign country . In my office , there are both local and Japanese staff . I 'm trying . `` I hope you suffer just as me and my sister suffered because of you . Introducing myself I 'll have three straight hoilidays by tomorrow . Typhoon is Coming There was heavy rain early this morning , because of a typhoon is coming . A typhoon brings a lot of rain and we 'll feel more comfortable in the boiling hot summer . It says `` This island does n't welcome the minor typhoon that can not cause a day off . As a result , the charge for electricity was higher than what I always pay . Tomorrow , my mother and grandmother will come to my house from my hometown . I had the buffet at the wedding This morning I had to hurry . because I woke up late . Please check my diary entry . haha , and now I 'm too lazy to move them to my bed , I 'm sitting with them cushioning my back . I visited switzerland last week for business . Everywhere is beautiful , I met freiends , aJapanese woman anda German man in Zurich . I recommend everyonevisit Switzerland for this time of year . Then , I wrote a diary . So , I think about writing another diary , and studying English . Because I will go to the university next time . I remember many memories through the air . I really like Natalie Portman ; I think she ` s very talented and extraordinary , but I hope she won ` t make that mistake again . I was surprised by the very big buyout news after such a long time in theVFX industry . Even though he only met her once ? he never forgot her . Recently I watched Mr . And a baddy from ' Spiderman ' appeared in it . After lunch , I read a book called ' LOST SIMBOL ' written by Dan Brown . So , only 15 people can attend the program . Do you think elementary school students , junior high school students , and high school students can do whatever they want ? I should be careful about spending the time and money . And after that , I went to Mexico with a friend and her son . There we had tacos and some beer , and we danced a bit . I am staying in NY to study English . Usually , I would watch TV or do something else . But I have no choice . Anyway , this bad period will last until Tuesday . I really yearned for them . Kartepost . com 's users can share their experiences of disease . Of course it is very difficult issue , but I just ca n't support them . I 'd like to use `` Diffusion `` to make a sentence . His new home is in Akitsu , and is 30 minutes from Ikebukuro by train . so please talk with me on Skype . has taught me a to stay whole . So I will study English hard ! He was listening to music while walking . This calms me . I hope one day I can design my own house , and use these beautiful tiles . We ate an ice cream and drank one cup of coffee then bought two cans of honey . Living in my house is so boring that all I do here is play games , watch TV , and study . The earthquakes here are so annoying because sometimes we get the electric power cut off by our goverment . It seems that for the same purpose , sometimes a sentence is put between brackets and , at others , between hyphens . I can speak good standard Chinese , but I always misunderstand the vendors in the market . How I miss the days when I speak Cantonese and proudly take people speaking Manderin as outsiders ! I hope everyone who uses lang - 8 can help me correct my mistakes . 7 - Eleven is a famous Japanese convenience store . I can find the shops near my house . I was very surprised . The directoris the most famous director in Japan . I thought , `` it 's so easy , `` and wrote quickly . My father played pachinko and I used the coins that he won . I ate peyang sauce yakisoba . After that , I had a English lesson on Skype for 30 minites . When we want to express the cause of something , we say ' because ' , ' since ' , ' as ' at the beginning of that sentence . Yesterday I just got game soft . His speech was excellent ! Actually I do n't have particular plan everyday like meeting important people or anything like that but I am physically busy as hell . Under the circumstances , Sometimes It 's not even a long enough time to create anew diary entry . There is a student union election in my school today . Since your entries are of great worth to two groups of Lang - 8 users ( people who study your native language and people who study the same language as you ) , you are recommended to tag keywords in 2 languages just as I did in this entry . The maximum limit of tag number is 8 by each entry so you are supposed to have up to 4 kinds of tags . I wanted to call the hotline of the bank immediately , but I found out that there was little power left on my mobile phone . I could n't be hold on for five minutes . I think it was a success and many people were satisfied with the result . The next goal is to advance to the best 8 , so someone who can pursue the best 8 at the world cup . Actually I wonder why no Japanese coaches were considered as candidates in the first place . We can rent ninnjya costume to put on dolls . There are many tree houses with difficult obstacles , a river , and a house of gadgets . We tried to overcome the challenge of several adventure playground guantlets that required us to climb up the house , across a river to pull a rope on the board , and cross a ladder that led to the other side . I recommend this place to anyone who wants to play a lot . At night , I came here , Internet cafe to surf the Internet and wrote some letter on a friend 's article . He comes from Canada . Also I am travelling to Jeju - island with my family this coming April for the first time . We exchange gifts . The game rule is that my department boss takes out a mumber first , if it 's NO . 7 , the NO . 7 gift belongs to my boss . Luckily , I take a necklace that 's a dolphin , very beatiful . Although she passed away from cancer , I believe she lived a normal life with no regrets . She had had no children but she enjoyed her life with working , hobbies , and socializing . I 'm going to Geneva , Maienfeld , Milan , Venice and Rome . ( I 'm sorry the spelling is wrong ) Enjoy your week ! I gon na watch all of Hurry Potter films with PG tips tea instead of travel . This Thursday night I will go to a Moroccan restaurant for the first time . when I traveled to china ( Cantonese ) on christmas eve in the morning . Although the plaza had a lot of Christmas decorations , it did n't feel like anyone was enjoying it . ( For china factory Christmas is not a regular vacation ) . It was unbearably muggy and sultry today . I 'm not good at English or other languages either . . Today we had a Bio - experiment class , and we viewed many kinds of plants under the microscope . It was funny , but drawing what I saw was not that interesting . Completely forgotten Why do I need to have a Toeic score ? especially speaking . It is so terrible , If I receive a good score , my school will give me a scholarship , and I can go to America for almost free . but I wo n't stop eating ! She not comfortable to come because she have sick and I imagine she is really try on the wenesday because she must teach a lot of class today so I asked her not come and said ' take care of your health ' Last time I studied with her we are both studies poor the head rises . Please tell me good resources that you recommend ! : ) Express my love feelings without hesitating . I 'm a university student and also belong to English club . For example , we try to have debates , speeches , discussions , drama items and so on . Its been a bit over 2 months in Japan since I left England at the beginning of December . I really like living in Japan coz foods r delicious here , compared to fish n chips , I miss the pub sooo much though . As soon as I came back 2 Japan , I noticed that high - ball ( whiskey n cider with ice ) was very popular among the young generation . I was wondering that almost all students drink only beer all the time , even whiskey originated in England ; such as jack daniels , old malt and so on . It is a strange phenomenon that more Japanese youths consume British whiskey than British adolescents ! It has been raining for three days and the temperature has fallen . I major in software in college now , so I have to learn how to talk about computer languages , such as JAVA , C # and C + + . I will concentrate on every detail of learning software . Maybe the next superman in this field will be me . Last weekend , I watched an American drama called ' ' Heroes ' ' to learn English . Luckily , I am not attracted to bad guys at all like some of my friends . But we might already forget that the natural music enriches our daily life and inspirits people to fulfill their real music . Though I can converse in English comfortably , there are some mistakes . I feel I have confused my English a lot at the moment I write my journal entries wrong a lot . I think maybe because I have read thai books and translated it in English . We can not afford to let immature students go astray academically , mentally , or physically . First and formost , in terms of cultivating students ' interpersonal skills , learning via computers or televisions can never manage to reach a comparable level . Unlike learning from a make - believe world , face - to - face interaction and communication is much more real , and in all likelihood , students can effectively equip themselves with the ability to compete and collaborate with their peer counterparts . Thus , ( traditional ) schooling will definitely lay a sound foundation for their later social life . And I firmly believed that learning using technology will never render school education redundant . I listened to 3 groups 's songs . I am a university student and ( I am ) 18 years old . If I can make friends here , I would be very glad . I feel jealous because such kind of parade is in my town just for children . The only good things were the sweets we ( 've ) got after walking and juice while walking . Now it is changing and many organizations have to admit the right to drink ( something ) while doing sports . Today is a holiday called Shu - bun - Day in Japanese . I have slept for 13 hours , and now it 's raining . There is a pumpkin , a carrot , and beef in my refrigerator . But I am groggy - headed . It 's one of my favorite movies . As I wrote it in my dairy before , we will hold an international exchange program in the summer in the NPO group that I belong to . I received the wrong size item . I purchased shoes from Amazon . com but I received the wrong size item . I sent a claim to Amazon , here is my message to them . I have a picture of those different sized shoes but it is the same size on the label which is 8 D size . I do n't know what to do , I 'm getting lazy because of the hot , humid weather . It was very sweet and very delicious . You 'll see the historical town from the Edo - Period . It is over 1000 square meters on each floor . I ` ll go to Minsk in a month . . . ) I do n't like to use roll paper in the toilet . The Internet has truly changed our lives . If you are interested in that kind ofculture , I 'm so glad . If you want to recommend any books or movies , please introduce them to me ! ! After this , I thought : Am I Otaku ? I did n't want to see everybody crying . I think my great aunt is happy in heaven ^ - ^ I did not always want to watch it , but when someone switched on the television I had to watch it as well . This is always in Thai movies . . . I attend a study meeting for examinations of patent attorneys every Saturday . If I do n't remember it and answer it exactly , I ca n't advance to the next question . The trembler We found ourselves unable to use water , electricity and gas and decided to seek shelter with my grandparents . At the moment of the tremor , I was downstairs alone in my house , sprawled underneath a Japanese Kotatsu . As a matter of fact , it was said that a big earthquake would hit in our region , predicted by seismologists . I did n't think it would cause so many casualties . Yet the tsunami ruthlessly took many people 's lives . My house is not too close to the sea , so we are away from the calamity of the tsunami . I am scared . Especially to Canada ! I Get tired . Recently , I have been so busy . But I often could n't understand what they were talking about . And also that situation ( there are many foreigners ) often makes me nervous . Yoshi ! Hope things will be better the day after tomorrow , as I will take a rest on Thursday ! But I have heard a sentence . When I look at that paper and the words on it . `` Today I received Yilin 's $ 10000 and since then I will never threaten her . `` It made me sure that you loved me because when I did something wrong and hurt you , you did n't scold me but helped me instead . Then I do n't need to expect you to stay with me everyday . I do n't need to wait for your messages and phone calls . You also do n't need to wait for me to graduate from university . You can get married to a woman and have a baby as other people your age do . How can I ? It was mainly sponsored by major industries in this prefecture . He welcomed me at the pavilion door singing his favorite tunes there like an old friend . We discussed what this skier did . I could describe it . Some people say I need to get better at reading and writing . I love these friends and my coach . However , she tells me that her colleagues who work there longer than 5 years make quarrel these days . Then she is caught in the middle and her motivation is being damaged . Some people who are single have a chance to join a party , maybe in the party he or she will makes new friends , and even find a true love . please tell me how to say it in this case . I went to the Dhrama fair this afternoon at Kakio in Kawasaki city . I can not believe it . . . I believe that the most common reasons are to prepare for a career , Career preparation is becoming more and more important for young people . For many , this is a primary reason to go to college . I have cookies , chocolates , jellies , cakes , milk etc . But there is a good Japanese restaurant at the other side . This is a cloudy day . Youtube gives me some fun material for English lessons to divert me . com is one of my favorites and is hilarious . but to call food a souvenir I finda little awkward . As ( in ? ) the picture , with a sunny day , a kangaroo jumping to an old woman and smiling . As the old proverb goes `` Actions speak louder than words `` . We should keep it in mind and take measures to follow it . a brighter future is waiting for us if we make good use of our ways to protect the endangered animals . I 'm always wondering if my English is natural or . . . I want you to help me improve my English writing ability . Today , I went to Tsukiji , Tokyo Today , I went to Tsukiji , Tokyo , with my wife and ( my ) mother . We decided to have lunch in Tsukiji . Some people tell me that I should go traveling because it helps you to see the beauty of this world I do n't want to ignore them . and while passing by beautiful green scenery can be observed . and we can enjoy lots of cherry blossom in spring . So I decided to listen to a French radio program because they broadcast a program for beginners from April and its level is exactly for me . I do n't know that clearly . In my opinion , It 's true . Nowadays , societies are fighting with time . That 's why most reporters consider a title is more attractive and aggressive before they write articles . There , I did Zigoku Meguri which is one of the good sightseeing routes in Oita . I can cook Japanese cuisine , Chinese , and also Korean - style . But I 'm not really sure about French - style cuisine , since they use a lot of herbs in their meals . In Japan we typically use herbs occasionally , but not as much as the French do . Hi everyone ! I had a tea with participants after the class . I had a good time because we talked about a system of studying English . Because I only connect with my friends in Sydney , my English ability is getting worse and worse . I ate Tofu yesterday . I wanted to eat a Tofu hamburger . It was n't delicious . I watched The World Swimming Competition in Italy on TV . I 'd never thought about the difference and that reason for it . It 's impossible to continue from butterfly to backstroke in the same lane in the team race . So why do they start with butterfly in the 4x100m individual medley ? I guess to dive from the starting blocks is faster than starting with backstroke . I was happy to solve my weird feeling . The valuable thing is the knowledge you get , and it ca n't be counted by the number at all . I had a notebook which my parents gave me as a writing practice book which allowed me learn characters by myself when they were at work . It is because their brains are just like empty glasses . But instead of being depressed , I decided to do what I can do now . But , I hate rain , so today is a very uncomfortable day . Okada , a coach of the team , was severely blamed by the supporters . I am considering to start learning English writing by taking courses . I 'm so happy I have a chance to communicate with so many people who are from different countries ! I want to know more and improve my English , do n't hesitate , let 's become friends now ! If there are some mistakes , please correct them . Remember that `` Reality and imagination are not always the same `` . . I am very happy . As soon as I arrived at my house , I went to bed immediately . She was my colleague in my previous company . I 'm loving Monty Python . That is why in winter I go to swim . A random thought about Laos I have no real chances to communicate with Native English speakers . I desire a free conversation . But , there are so many words I do n't know that I almost go mad . She gives me council like my real older sister : ) I am working for a food manufacturing plant . We decided to make a construction company repair them . According to the weather forecast , it 'll rain tomorrow . The workplace is in a complex . yesterday I went to college but I did n't study because the university - level instructor did n't come to campus > _ < , whereas I came to campus early because I was afraid to be late . I really could n't believe that I was able to prepare chicken soup another entry , another issue I work hard to save deposit to enjoy myself in Italy . Today I was given a ticket for a fitness club from a coworker . I have a pack of tofu , some green Chinese vegetables , mushrooms and leak . I 'm studying English , Chinese , and Applied Linguistics . I lived in California when I was . in Kindergarten . I almost forgot how to speak English , so maybe my English sentence grammar is wrong . If you find a mistake in my diary , please correct it x ( The club members watch flowers , birds , trees , shellfishes and a lot of nature . I want to know the calculation procedure . It was smooth until the tube terminated due to signal problem . I was stuck in the tube for 40 minutes and had to abandon Picadilly line . I also use skype and facebook . My purpose joining lang - 8 is to improve my English skill . My mother just cried then . I could n't understand why she chose that place , but I didn ' t Then , they link themselves to my ideas , and finally form a stream of narrative . Today , the Gmail IMAP server complained of `` bandwidth limit exceeded . `` I can not access Gmail via Thunderbird or iPhone . I think I must listen to more English . I like to design , so when I heard about this contest I was very excited . My t - shirt has sunshine and sunflowers on it . They are so professional . . One said that many foreign countries were surprised by the fact that there rarely was plundering amid such a disaster . She will import Japanese goods and sell them on the Internet , targeting & nbsp ; primarily & nbsp ; French people interested in Japan and Japanese people who miss their favorite local products . I want to become a friend with those who are learning Japanese . Today 's dinner was pasta and green salad with sesame dressing . But I am no longer familiar with it . It 's so difficult . To get to the nearest coast from my house , it takes within two hours by car , but if it 's to the opposite one , it 'll take more than six hours by bullet train and express bus , and moreover , I have to change the bus for a local bus ! For instance , like me , growing number of people are trying to learn English which will probably become a universal language . Chinese class Its a natural phenomenon for humans to not be a mechanical creature and have a limitations of memory . These jobs are making me computable ( ? ) and keeping the system stable . Because I get sick easily on the train or on the bus when I 'm in bad condition . And tomorrow I will go to the bank to consult My daughter has been absent from kindergarten since yesterday . Since then I still have needed more relaxing time Thank God when I weighed yesterday the weight was still the same . Please contact me . At the congress , I had a lot of opportunities to talk to many professors and students who are keen on biomagnetism from around the world . They are from Italy , Korea , India , German , France , UK , Netherlands , US , Sweden and so forth . In addition , I learned many English polite and job phrases . lol Yeah , it was the most profitable part - time job among those I 've ever done before , and I was really pleased to talk to various smart people who are kind of geeks haha because I could n't understand their study at all when I saw their poster materials ! so I 've just decided to write a journal Of course I can help people who study Japanese here . Irish Pub I went to the Irish Pub with my friend . I look forward to attending it everyday . I can learn a lot of things about careers in it . I studied English 20 years ago . I have almost forgotten English . The rhythm of it and the rhymes of it were sooo funny , and I enjoyed listening to what the teacher read aloud . It was implying how every individual is important , and also big . Its been a long time since I spoke english , because I 'm studying japanese in Dalian , the most beautiful city in northeast China . There are many interesting things and delicious food in my homeland , especially hot food , pandas , and lots of good indie music . I 'm going to Karaoke with my friends tomorrow . I like singing songs because it relieves my stress . I am a university student in Japan . I especially study A Christmas Carol which was written by Charles Dickens . I tell you that I know the story of your family 'cause if I search for my ancestors I always find your family . I have ancestors from the family of Chmura too but I do n't know if my Chmura family is related to Wiktoria Chmura : ) If I learn about it I think that I will write to you . Only then do I clean up my desk . I think that one of the most important skills these days is to throw stuff that you do not need away , not the skill to get stuff . It 's my first post in lang 8 so I just want to say hello and ask you how can I translate or say some text in a different way - because It 's hard to understand it all . Recently , I have been listening to English radio stations and reading English magazines everyday . On Mondays and Thursdays , I use my lunch break to attend the English class held by my company . By the way , I would like to read English novels . Went to Universal Studio Japan . Dinner was a Chinese smorgasbord * . She works as a secretary at a fashion magazine . Such a pity . My favorite pastime is playing video games , surfing the net , and watching movies . So , I think we should keep and preserve our old buildings because of our culture and historical legacy . Photo : Beautifully colored leaves at a mountain in autumn ^ ^ I think writing in English is still difficult for me , But finding a job is not as easy as I thought . To be honest , these days the anxiety of graduating from university makes me so nervous that I ca n't concentrate on studying , especially English . However , whether I consider it or not , the possibility of graduating will not change . I told her : excuse me Ma ' am , did you find a bracelet on the grass ? She then stood up and gave me the thumps up ! So , I 'll have a part - time job tomorrow . When I went to Tokyo on December the 27th , I bought a new umbrella at last . Since they have them in several colours , it was difficult to choose one . After watching myself with them in the mirror , I chose a purple one . and he was planing to ask for the teacher 's Email address if the teacher was a beautiful cabin attendant . The other day , I caught her documentary on Jounetsu Tairiku , a famous Japanese documentary program , and she said she started getting more jobs after cutting her hair short . He has lively spirit and is not strict . Anyway , when I arrived at the park , all the other people had already arrived . I came back yesterday . Because this was our lesson , we had to go back immediately after a rest . I deviated from the main subject . ( ^ ^ ; ; ) Going to school everyday during my vacation is hard for me , but it also makes me feel proud ( of myself ) . Because , the weather in Korea is very cold . It was really cold and snowy . I bought a hair clip and a CD of NE - YO . After I got home , I searched free TV show in English on the Internet . It 's a big decision and a big challenge for me . Now I 'm worried about home - stay . I 've not cooked things requiring many steps like difficult Japanese cuisine , and I have only a few recipes to give to my friends : ( I have a long way to go from attending universities overseas but I ` m sure I will be studying very hard in order to be able to attend a university overseas . It 's difficult to forgive someone , especially when they 're a common object of hatred . Library Part 2 I 'm writing a continuation of my entry , from yesterday , about going to the city library . I could only rent three CDs at one time from the library . The soundtrack of `` Top gun `` , Van Halen 's album `` 1984 `` , and Madonna 's album `` True blue `` were included in CD 's that I listened to . I 'm really looking forward to traveling with my mom , b . . I wanted to reada book but my eyes were very tired . I can remember the time at which I fell asleep . it is possible that such a thought gave me insomnia . I will watch a movie with a love story starring Shack Reno and Juliette Binoche as I want to rest . Cleaning in the hall , leading people to the front of the ceremony hall , managing the information desk , checking the money and calculating the total cost for our clients and so on . I must observe my co - workers and follow them . I had trouble with my hair many times during high school . Whenever I hear her scolding me , it is frustrating . Their great beautiful nature and biodiversity are found as the reason of registration of the World Heritage site . I was looking for a magazine which I wanted to get and then I was deeply engrossed in it for 20 minutes . I 've decided to become a Christian in the future , because I think following God will make my life more meaningful . something very new ( although it 's been on internet for quite a while ) always capture my heart . * Sorry if my diary was inappropriate , in a way that I advertised Twitter too much , please feel free to delete it . ' All right , ' Min interrupted Ji 's description , ' I said , Riska , can I have some chicken nuggets please ? And , an organization named `` PeaceBoat `` stole the support supplies in order to gain honour . Chinese development speed is faster than Japanese one . Next week , I will go there via Seoul in Korea ! ! Unfortunately I forgot how to speak French because I did n't use the language in Japan . Now I 've got holidays after all my examinations and I want to write something ) Before it was n't so fequent . I hardly understood what my teachers said at my online English lesson . I should listen and repeat vocabulary and phrases frequently to increase my listening skills in English . This is my first diary ! Today I 'm very happy because the date when I go to Montana , one of the big states in America , has been confirmed . Missoula is a beautiful city in Montana and I will be staying there for three months . Does anyone know how to learn English words easily ? I often read too many broken English in chat messages . And a number of players talk like kids ( some players talk as if in a role - playing , but most players do n't seem to be speaking `` proper `` English ) . Last month , all the students in my university were given one thousand Omani Rials ( = 2600 . 78 American dollars ) . If you were in my position , what would you do ? How would you spend such a huge amount of money , at least to a student ? She is beautiful and interesting . I really like this song ! These days , I made up my mind to stop my emotions of liking girls who are my type , which means that from now , I 'll never try to approach girls even though I like them or I want to be their boyfriend . I 'm afraid of American beauticians because of my English level , so I try to do it . This is my favorite song . This group is really famous in Thailand , but this song has been known for a long time . I knew it when I was studying at university . Now I have finished already but when my friend and I want to sing we must sing this song first . In the previous movie , a young stockbroker did everything to get to the top , and a greedy investor , played by Michelle Douglas , utilized his insider information . This ancient palace is open to the public only twice a year in spring and autumn . As you know , all department stores have beautiful bathrooms , most of them are Western style . ( Many foreigners are in trouble with Japanese style bath rooms ) River Fishing is Wonderful 7 years ago , I lived in Northern Japan . Today , I talked to my friend , Nick , who lives in Florida , USA through skype for a while . Not surprisingly , he had already gotten a job he was willing to get as a financial analyst . According to him , his major is business and it could be recognized as an accounting major , also . So , if his clients come from South America , he wo n't have any difficulty communicating with them . In other words , he will deal with any problems people usually might have due to the different language . I uploaded some favorite pictures that I took . I guess they are just hiding their new technology to prepare the new iPhone or they were afraid that Samsung could sue them . Timothy Cook , who is the new CEO of Apple , gave a presentation yesterday . I 'm going to take part in a marathon three months from now , so I should practice hard . What happened is that some trekkers who was arranged by some travel agencies succommed to hypothermia . Since Japanese novelist Fukada Kyuya published the book which introduced the the Japanese 100 cerebrated mountains , they thronged those high mountains . As you know , trekking require many things such us knowledge about weather and map , how to use equipment , experience , and most importantly physical fitness . Intrinsically there are few trekkers in Japan and mountains are calm places . Their foods are excellent and it has a cozy atmosphere . Today I introduced Lang - 8 to him . I found it so boring to stay at home doing nothing . When preparing a dish , I have to make sure that all the seasonings / ingredients are available , when to put in which ingredient and how to control the heat . michi ha . nurete imashita morokko ni ha yottsu no kisetsu ou Shiki ga arimasu ryokou to hama ha hitsuyou desu . My friends likes `` Judy and Mary `` ( japanese pop singer ) very much . I think the author of this book describes Bella 's emotions and feelings very well , so that I could understand how she feels about vampires , school , family and friends . It was heaven ^ - ^ Today I cooked miso soup . Freedom day ! ! If you are interested in Japan , you should / ought to know that Kyoto has a lot of cultural heritages . Since it may be the last chance of this season , I want to get even better progress of my skill . ( Other brands are , for example , iPhone , Droid , and so on . ) In the Evening after returning home , I had dinner with my friend who came from Oregon in the US . We spoke in English of course . I think it was 34 degrees in Tokyo . It was a hot day so I needed a handkerchief because I 'm very sensitive to heat . Tonight , I drank a little alcohol with my co - worker near our office . Now , I 'd like to exercise in any case . I was happy when I heard his voice . Hatsune is a bar with a homey atmosphere . He said , `` Why do n't we play golf together ? `` Diary for 1 . 23 . ' 11 I worked at home today . My son went to the community center . He pounded steamed rice into cake with scouts at the community center . I will arrive at Nagoya city which is a central Japan metropolis tomorrow early morning . When the potatoes and onions are fried , mix them with the eggs with a knife . I can not go home earlier than around 23 : 00 . Everyday , I use English when I write e - mails at work . Being a flight attendant is kind of the symbol of intelligence and beauty for Japanese people . According to my Singaporean friends , in Singapore , a flight attendant is not a high standard job at all . For Singaporeans , flight attendants are just servants or something . Is food coma the natural phrase for that feeling ? He is sensible to authority , then he does n't let himself control by other . My contemporary life is very terrible . Something important must have happened because there was a lot of yellow tape / police tape around the office keeping passers - by away , and even some television interviewers were covering the incident with cameras . I need to work from Sunday to Saturday . In cram school to teach math from Monday to Friday , as a prompter girl on Saturday , and a telemarketer on Sunday . 3 hours later put some sugar in it . Before yesterday all the Japanese patients were in Western Japan , but today , at last , two patients were found in Tokyo , East Japan ! I think there are no means to prevent the expansion . Today , I had cram school ^ - ^ And I went to the US two years ago to join in a Chinese martial arts tournament . ( Now I 've quit to study languages except Engllish ) Forrest Gump , Austin Powers . . . So sorry that I could n't visit this site enough . . . If you have any questions about Korean culture or Korean grammar , I had a girlfriend in the past but she dumped me and I felt really bummed out . Today I was looking for a airplane ticket that is affordable . Actually , I was supposed to buy a one way ticket , which is more expensive than a round trip ticket and a 1 year open ticket . The article said you have two alternatives for a journey . You could buy a dicount ticket then when you arrive at your destination you can throw it away . But if the airline or travel company finds out you might have to pay a penalty fee . So for that reason I checked many sources . Of course , price is very important to me because I do n't have a big budget . Ummm , Maybe I will buy a PEX ( safe ticket ) . Until now I wrote daily at the office . Now I can write daily in English , on my PC . On July 4 , I will have my examinations , including business english translation , English writing , integrated english and political theory . I am worried about my political theory , because I have to review a whole thick book . Special buses ran between the main grounds - CDH ( where the ' Art - Moscow ' fair were running that time too ) , the ' Vinsavod ' , the ' Art - Strelka ' , the private museum ART4 . ru and some other important galleries . I will be working as ARASHI 's concert staff . Then boil asparaguses for 1 . 5 minutes ( The time depends on the thickness of them ) . I was satisfied , because it was very sweet and delicious ! A large amount of companies like mine encouter such situations in Japan . Therefore , I hope that this bad practice would disappear soon . Something bad has happened to me ! ! in body and in mind ! ! ! ! Field Day The moon eclipsed totally for 100 minutes , however the whole process took more than 5 hours . It was like in a horror movie , if there was an old gypsy lady , she would have said that was a bad omen : ) ) We were looking forward to having a special dinner at your restaurant . We went to an Italian restaurant , ate delicious foods , and talked a lot . Recently , I was surprised by the financial result of a certain company . This weekend , I will play football . I 'm looking forward to participating in the soccer festival . Recently , I 'm interested in diet , learning English , internet , and shopping . I saw a classical music concert performed by the Prague Radio Symphony Orchestra from Czech . However , there were unexpected disruptions in the music hall . I totally could forget that I 'm a busy person like a workaholic . And I like `` Leon `` as well . That is one of the films when she was child actor . I also joined an English debating club . Im tired because writing in English is very difficult for me . . . Today there is a fireworks display . But the weather takes a turn for the worst . Sometimes , foreign customers come to KFC . Finally , should I say anything ? A REAL powered suit produced by HONDA Honda has produced a walking robot named ASIMO . but if you write about a special thing the public does n't seem to know ( for example , about IT or business or philosophy ) , it is necessary to explain each word and the speed of talking is decreased . I was never proud of myself since I came in middle school . Why do I have to learn them ? Why ca n't people choose what lesson they want to learn ? I love English lessons , then I could learn this for free . I am thinking that I want to make a reservation for the IELTS test in March , but I have no confidence at all . For example , I 've heard it used like this , `` You fucking asshole . `` or `` Fucking surely `` . If you are Japanese , I am not sure if you do . I know you are hungry . As matter of fact , I did n't know there was a sandwich restaurant in Japan until recently . At the restaurant , we can order anything . What suprises me is that she insists on proceeding with the work even in the case of other 's falling ill or when a family member is facing life or death problems . One time , I asked for an instant leave to attend my grandmother 's funeralin my hometown and I explained that the flight available to me is due to leave soon . And then , after several rounds of her ordering me to do whatever ( things about work , I have forgotten ) I was finally allowed a leave . . . Another example , one guy gave an explanation for his absense at a so - called important meeting that his wife had a heart - attack that morning , and that he had to send her to hospital . One day , my mother was going to have an operation and I was the only one who was able to accompany her then . In searching for information about overseas travel , I happened to find this site . Because I often think `` I want to drink sweet coffee ! `` When I was an elementary school student , I used computer in a lecture for the first time , and I 've used it for about ten years , but I continue looking at the keyboard . wooo , , I wanna take a chance to talk English . But I will spend this time alone . What is the difference between `` I 'm not sure `` and `` I do n't know ? `` complain : I complained to my teacher about the scope of the test . hate : I hate insects , particularly cockroaches . worry : You do n't have to worry about your health , you 're healthy enough . I think It necessary for me to hit the books cause I want to win scholarship in our campus . In America ! ! ! Furthermore , there are more and more reports about accidents caused by exploding cellphone batteries . As for me , _ I can speak two dialects which are Wenzhou dialect and Hokkien dialect . I applied to three consulting companies and underwent an interview yesterday . The speaking examiner is an old man . . . Because a boy in the apartment made too much noise that we all complained about . . . . A good point , I thought . TheNext step has just started now ! Unfortunately , my sister is not interested in kimonos . We went to watch a movie first , and when we arrived there , I saw a handsome boy who wore some fashionable clothes and leaned on a big wall . But , because of working overtime , I missed it . One is the integration of writing and reading , which lasts three and a half hours . Bridal Course studyies about weddings . I felt vey comfortable . she 's already married . hey my name is Icen and I 'm new at lang - 8 , I want to speak good English , so please help me to learn English thanks . . . I am a student learing economics at Kyoto University . Hope I will find Japanese learners and English and Chinese native friends soon ! ! I booked the ferry tickets to the island leaving at 9am on previous day , so I left our home early so I did not miss it . I asked how can I get there to strangers along the way , furthermore I ran to the platform and the road , finally I reached the ferry station almost too late . I went to driving school during my summer holiday . However , obtaining the license helped me to return to Minmikusatsu city . Whatever - he hurt me before with a lot of bad words , screamed at me , saying that I expected too much romance from him . I y enjoy playing play the French horn with an amateur orchestra on weekends . My orchestra is having a concert in October , so I could n't stop staring the beautiful phone , I like reading books , surfing the Internet , listening to music - - both popular and classical . By the way , in March I 'm going to go to my high school to make a speech about my life at the university . For a few years now , I have had dermatitis on my face , especially my eyes . The dermatitis on my face , especially my eyes is conspicuous , so I 'm really sad . Today Giants won the game , but both teams showed us a splendid match . A lot of celebrities go there . I was born in Hokkaido , but stayed there for only one month . I like watching movies , reading novels , traveling , and taking walks with my dog on my day off . The Nikujyaga is made of beef , potatoes , carrots , onions , and konnyaku boiled and seasoned with soy sauce and sugar . I have just found the report . furious at you and you ca n't find any excuses to ease their mind , When I try to revise some articles written in traditional Chinese , I feel confused . I , nonetheless , believe that the pros outweigh the cons . But , I do n't know what I should do . By the way , cherry blossoms in Tokyo haven ` t flowered yet because of cold weather . Because I 'll feel stuffy when I stay in such an environment . Go to University . I went to ( my / the ) university to sign up for classes with my friend today . I said , `` What a beautiful view ! `` It is kind of weird when I reviewed the blogs I wrote before . If you are wondering where you should go on your next trip , I strongly recommend Tong - Yeong ! What is the meaning of religion in our life ? but I could n't find any difference between religious people and those who are not . I think I 'm a realist , both in material and spiritual . In front of my office there is an indoor tennis school called T - 1 . I ca n't enrol in such a university , but what about in the philippines ? I then watched ' Field of Dreams ' and ' Remember the Titans ' . Although it was raining unfortunately , there was a line of people . I have my own lunch box already . Figure skating This morning my music box randomly played the song called `` Paddy Fragrance `` ( sung by Jay Chou ) . It does n't sound like most of Jay Chou 's songs , which are usually depressing or sentimental , this song is relaxing , encouraging and positive . Do n't quit so soon just like what I have said `` If it 's too difficult for you to pursue for this dream , you can think of changing for another which is much more suitable for you `` We are all looking forward to a bright future , while ignoring what we really want to be deep down inside our heart , and that 's why we are always busy and successful but not happy . Today I 'm going to Edoshima beach , but the weather is really bad . Especially , I was so surprised that even some developing countries donated relief and condolence money . I did n't have any trainer who would teach me about losing weight . I could n't lose weight very well as a result . I 'm in a relationship with a cute scottish girl so Italkto her in English mostly . Lately , she has been saying `` your English is girly `` andof course I do n't wana speak girly English . I have many friends , but only one best friend . She was born in Georgia . Anyway I want to talk to people who speak fluent English to improve my interpersonal skills . Now , I only have one / an exam ( English test ) that is one week away to go , so I think I 'll have to study all day long in the libray . However , my writing skill is low and I need more practice , so I decided to write a journal on this website . Of course I am interested in the latest model of mobile phones , cars , electronic devices and so on If we do , it means a challenge to the monkey from the monkey 's point of view . We could buy some bananas , peanuts and apples to feed the monkeys . My boss say that I should take the TOEIC exam and score over 600 points . SUMMER VACATION I have a headache I 've been here for one and half year . Please give me advice and touch up my writing . In regards to that , it 's much easier to utilize comics as dramas than to create novel ones . I can speak Korean , Japanese , and a little bit of English . However , it is my bad habit to stare blankly when I am studying and oppositely sometimes I have a hard time focusing . Come to think of it , recently I have been studying Chinese harder . I would like to be able to be good at singing and I have practiced English pronunciation . ( the clerk who helped me find a new job said that the company which I tried could not be decent . In the books translators said it 's indispensable that they have persistence and passion for their work . thanks for your comment on my previous journal . I want to compare the two of the great religions but there are many differences between the two . . . however after many years of training , he found it difficult to lose his worldly desires and he decided to leave his master . People used to send a present to their father in father 's day . Considering the distance between USA and Japn , I need to request to send my present now . I angered my sons too much . I really enjoyed it . Of course , there are other non - Christians taking part in it . Since my only hobby is English , it 's sheer bliss to take those lessons complimentary . I 'm agog ( ? ) to go there next Saturday . So I practiced easier tricks so that I would n't make any mistakes . Oh my goodness , what the fuck ! Goddamn it , you asshole ! Probably today 's interview was a failure as well as yesterday 's . Japanese people do n't do that like them . The world is quite unfair ; I should hit the creator of English lol . I told the accommodation 's staff about my job interview , but he encouraged me and said I could speak English very well , and he felt that I could get a job here . I wish , she could keep her health and beauty forever . I love you mum . Roughly , their conclusion is based on two facts . I believe as long as we are more careful we can freely enjoy all the convenience with which cellphones bring . The shrine was located on a mountain so the road was relatively deserted . . . Especially in a rainy day . Eu sou uma menina . It seemed that a fight / conflict between her husband and the rude man would occur . Translate Do you remember when was the last time a boy / girl asked for your name ? I sometimes watch METAL GEAR SOLID 4 on youtube these days . Youtube has many of METAL GEAR 's movies . I 've watched about three - quarters of them by now . So they must be difficult for foreigners to understand . She graduated from a Japanese two - year college , and then , went to other two - years in England . So , she went to Stanford University , and got not only a master 's degree , but also a doctorate degree there ! Moreover , she has two children , who go to university . One of my purpose of studying abroad is to get the opportunity to meet people , so I could realize that by meeting her . The second picture is very fun and cute . So , I started writing diaries in an attempt to improve my English . Actually , I went to an English school . In addition to this problem , the reading comprehension part was very difficult and its form was not standard because there should have been four passages instead of five . Soccer ? Football ? The Japanese women 's soccer team beat Sweden 3 - 1 . The American soccer team is also very strong . So it was yummy . A lot of people were absent from school . Today , I ate curried food with a co - worker at lunch . In the evening my older sister called and asked me to watch her niece while she had her hair dyed in a beauty salon . Sometimes my niece comes over to my house and I have to watch her for a while . My niece wanted to say something in English and I let her talk with a tutor on it . After the lesson I taught her some basic vocabulary like My name is ~ ~ ~ or I 'm fine . I was surprised how fast she mastered the phrases I taught . And we also watched nursery rhymes on Youtube s together . I went to day care club with my daughter . My daughter loves the rabbit slide . I got an iPad2 the day before yesterday . Because Apple started to sell it the day before yesterday , and I ran for the Apple Store . Some people were hoeing and fertilizing and some people were watering . It is beneficial to my health . `` She said . They 're also investigating other compounds in dark chocolate that may offer other health benefits . After that , some of my seniors and I ate dinner at a restaurant in the station . After a while , some of my friends also came online , so I chatted with them about what was going on in my life . We were chatting happily , but I lost track of time . When I felt hungry it was already 4 : 00 . Today , I want to introduce you to the Japanese traditional food `` Katsuo no tataki `` . This is a one of my most favorite foods . I think that is the best harmony . If you take careful notice , there will always be a bunch of pupils in most classes : they can not get a decent score in academic study , and most of them take notice of this , and thus their minds wander outside the classroom during lessons and occasionally they make some noises that bother others . The teacher on the other hand , tends to be half - blind to this since his duty is to fulfill the hunger of gifted ones for knowledge . Also , if their names happen to be at the bottom of a student list alphabetically , they are called very seldom to answer the teacher 's question and sometimes not once during an entire semester . The problem is that I do n't have a camera . I have dad , mom , big sis , and a cutie dog . Moreover my birthday is February 23rd Not soon after , I changed my name to Echo , which is also the name of a famous writer in Taiwan . You must know her writen name is `` Sanmao `` . I admire her life in Spain , the desert , the sea island , and , also , the romaance between her and her husband . I will go to Australia next month . My boyfriend went to Australia to study . I bought a guidebook about Korea . Recently I stopped writing diaries because I 'm busy working . That is a weird title , is n't it ? It 's the title of a Japanese song . The grand - daughter felt sorry / regret because she was n't a good grand - daugther . It 's obvious that situations where public phones are used are getting rarer and rarer . The scene in my photo will be a memory in the far future . Yet my English and Chinese is bad . The next week they have a contest between themselves all over again . The courses I teach are third grade level math and science . Instead of crying about today 's sour situations in Japan , I have to make more effort to be a winner and stand out among the numbers of canditates applying for a position . after that we went to Mt , TSUKUBA I was so tired and frustrated before going driving . The taste is n't bad . because of their existence . These days , I reciteEnglish articles loudly right after I wake up . If you want to know Korea , please contact me . And I guess this seems to have made my uric acid level become higher . And now , I am in a dormitory . Tomoe made up her mind and forcefully approached them . Today is my birthday , I am 20 years old now . Next year I 'll be 21 . Actually , I have thought about getting an ear peircing for a long time . the lady used the marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks like very painful , I just feel a little bit itchy . thanks for alicia to accompanying me to the piercing shop . It 's not a fun type of plan , but is more of a family - related compulsory type of thing . It is very good and has many applications and different functions . So if you want to share your thoughts or habits , I can introduce you to our culture ~ Actually I do n't know whether he hasfault or not . . . I do n't know whether I should be sad or if I should n't care . My husband was going to move to Hongkong on business . But now that is changing owing to this depression . My daugther did n't know which was the front part of her skirt , and showing me her skirt she asked me : I was thinking of my stay in New Zealand over and over . In 1803 , Thomas Jefferson , the 3rd president of the US , purchased the great wild west for about $ 15 million from France because it doubled America 's land mass and would provide rich natural resources as well as great farmland . Jefferson sent Lewis and Clark to explore the newly bought land . I thought , that those four years of learning language in school would be enough but quickly I was persuaded that it 's not so easy , indeed . But as you can see , I write sentences as if I were a pupil . . . Today 's lesson was a private lesson . His lesson was fun and he is unique . However she always buys delicious food and it might be expensive . Maybe it seems no big deal to most of you , but since I 'm now studying in Japan , and the Japanese are so difficult to understand , I must be extra careful of what I do . It does n't look very strange in English , but I am really not sure about whether it sounds like a compliment in Japanese to the Japanese teacher , who I think really does do a good job . Of course I think she knows some of the American peole are not kind , but I enjoyed talking with her . By the way I go to college now ! ! and his . . . their , , theirs . . I forgot the grammar . . give me a hand . . . thanks It 's `` Cocoa champagne `` and `` Cheese and walnut `` bread . The Cocoa champagne has chocolate chips and raisins . My school festival was held a few days ago . Second , my homeroom class won first prize in the chorus contest ! ! I 'll never forget it : ) Some people think that the death penalty is the final way we can punish murderers . I talked about my research presentation in English for the first time . So , I am highly motivated to speak English more fluently . I am going to go Beijing to present my study in English by the end of Nov . I was especially impressed by a beautiful range of poplar trees which had fresh green leaves . We complained a lot . Second , a dinner for our child contained a piece of metal , and the restaurant owner apologized to us , but no service . We got an orange cake as their apology . Our friend calmed down , and my awkward position became better . Osaka 's `` Shaanai `` culture C : The PIC from the manufacturer was very angry and complained It is very important to me . Too many people have lots of pressure in life because of capitalism , so should they relax and `` scream `` to themselves ? ! When I arrived at the Philippine airport , there were already 4 people from In addition , I already told you that my English suck ~ There is a bug inside my LCD monitor ! So I want to go there . Actually , I will go to Singapore when I go to university The title of the book is `` how to walk in the world `` . I recommend that you also read the book . However , do not read everything ; because if you know everything about the trip , the travel will not be interesting for you . Anyway , Washington will be rainy or snowy . . . . . Today , I am going to watch an American movie to study English . The genre that I want is either ' melodrama ' or ' comedy ' . Could you recommend a movie for me ? Of course though I have so many good pen - pals of the others around Sometimes my work is very difficult for me to handle smoothly . The work will be easier than that in my mind . So let 's start to study English grammar this summer ! ! ! I will try because this website is very good idea about leaning a language . ^ ^ I ate kimchi stew and Korean pizza ~ Ryouan - ji ( Ryouan temple ) , which is famous for its simple That 's because she went to the U . S . to study . sometimes I could n't do anything because of my memories with her , but cry and cry . But I worry about my English skills . . . Oh my god this my first post and I 'm very , very nervous about what other people will say because I do n't write 100 % correct English but I 'm trying to do my best . My favorite season is spring . Tomorrow , I am going alone to my university to borrow a book . spanish bar I 've just found this lang - 8 today and registered right now . My wife resigned from her job is very tired . New sentence She could n't bear it anymore . New sentence Plus she also missed our son . The salary is not given out until May 5th . But , today she is supposed to wash all clothes , sheets and so on . Actually I was worried about this mistake . So when I learned it was not by me , I was relieved , at the same time , I thought I should be careful not to do that . meaning unclear you 'll have a nice trip in your vacation . So I have to help her study in the meantime . I really hope she 'll be able to do everything , not only studying but also looking after herself . I have been studying 8 hours a day on average for two months in an effort to get a high score . But learning English is what I really like to do , just because I have to master it in order to pass the exam makes me feel tired . Passing the exam does not necessarily mean everything to me , I just want to express myself freely and openly without worrying about whether my English is good enough . So , please be critical to my articles , I really need your help to write it coherently and logically . But writing my diary in English is as difficult for me as ever today . I can speak and write English at the Japanese junior high school student level , meaning just basic English . However , I 'd like to be able to read and to listen to English like that of a high school student . But as I 'm in an international department , many people ( many of whom are from overseas countries ) invited their families . What do you think about studying foreign language ? Sadly , I think that we have poor minds nevertheless we live in Japan . Please correct these sentences Yesterday I had nothing to write , so I did n't write my journal . I decided to buy a better one to forget about losing my old one . Second , your Japanese is very excellent . I recommend this movie ! Have a nice day , and BE CAREFUL OF SPAMMERS ! ! I really want to learn English so I can search on the internet as I want , They gave me some advice and . confidence . Today , I would like to make some sentences using new words . Talking with foreign people is very fun ! I was woken up by the rain this morning . Today I 'll tell you about my many hobbies and in return I also want you to share your hobbies with me . To find the best friend very difficult . A lot of people don ` t have friends , and me to . I played tennis yesterday , because game day is coming . So the government of Iwate prefecture built huge embankments along the coast to protect citizens from tidalwaves . Even many foreign researchers came to this town to inspect the wall . A man in this town told a reporter on TV that `` Even if tidal wave is coming , I would not mind it at all , because we have the great wall . `` But the tidalwave which wiped this town out on the 11th of March was more than 20 meters high . The good part of living here is you can easily mingle with different ethnic groups and learn their languages and cultures . Today I had many drinks : Japanese tea , iced coffee , Yogurt juice and Mango juice . Something about Halloween Children like to play pranks . Then the children get some candy from them . Please guide me in improving my English , especially in grammatical errors . I miss him very often . This morning , I went to the store again . OK , maybe I should not push myself to keep a diary everyday . And I 'm working on a relief operation tomorrow . . . This morning the LED monitor for my mobile computer was broken . In other words , It had become a garbage . One of my friends said `` If I meet a man who is a gynaecologist , I will marry him ! `` This is a joke but it means the ' Menstrual Cycle ' is really a big pain for girls . She seem to have heard the price , but she did n't hear it at all . A bureaucratic office such as NYDMV often fails to be prompt . I 'm really looking forward to it . It 's accounting . This dog is female and she is so smart that when I took her outside and wanted to teach her to urinate and defecate outdoors , she did it without any words . Because there are many black spots on her tongue , we named her `` Spot `` . I 've both read all of the Harry Potter books and watched all of the Harry Potter movies . I think that really beautiful women are beautiful no matter what hair they have . My Writing There are many things affecting the world like air pollution , climate change , enviromental degradation , depletion of the ozone layer , destruction of the rain forests . . . It 's been a long time , everyone : ) I could n't write a diary for the past week . 18 In my childhood , My mother used to read me fairy tails . 20 Memory gets weak as people gets old . 3 : USB - network converter It was a hole in the wall , very reasonable . Tenpura is a kind of fried , dip fish or vegetables in flour mixed with water , which is then fried . Noalcoholwas sold there so I had a can of beer before entering the gate . And I have never known how respectable a job it is to be a teacher . In Japan the driver 's seat is opposite to Taiwan . Transformers ) do n't exist on this billboard . Because global warming is becoming more and more serious in the past few years , the temperature has risen day by day . It was my first time to go to Narita temple to see autumn leaves . Monday Morning I went to the gym and ran for 30 minutes and took a sauna . The Jogging Game Very fast ! ! Although I 'm getting better to listening English , not to speaking English . It is interesting for me because I think it looks like Japanese ! I have two reports about Europe and ballad to do . It was unbelievable , but I soon became accustomed to it . To Master Natural Expression I like to eat in the park . Today I am going to participate in a celebration at my friend 's house . It 's a fashionable and exciting drama ! ! The iPhone allows me to play games everywhere . it happened . . I will never give up . . ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! So I could n't take the 1st lesson . Today , we sang `` New Divide `` by Linkin Park together . I met with a friend who is living and working in Vancouver today . My friend 's lang - 8 diary : URL I am interested in life in foreign countries . So , I often want to eat some snacks like chocolates and potato chips . I had checks for breast and uterus cancer today . It is said that breast cancer and uterus cancer have a relationship with those who are young ladies still under 30 year old . Furthemore , recently a famous actress in Japan passed away because of breast cancer . The formal diagnosis will come out in two or three weeks , but my doctor said me that it has does n't matter because they checked my breasts and uterus from the palpation and through the observation of them . near the Pacific Ocean . Why was I interested in America ? Speaking in English is really hard for me nowadays . I think it would better for me to study at the library instead of hanging out with my friends this week . I Ca n't Believe It Recently I feel the spring season in Hokkaido . Because the temperature has been over 0 degree all day . I 'm looking foward to watching cherry blossom 's flower . I went to my office by bicycle today . I went to my office by moped everyday , so it 's good for me to change to cycling I thought . They say that I am smiley and have a soft atmosphere like a sheep . The movie had many grand scenes , on the way , space and dinosaurs appeared ! It had many beautiful scenes around 2 / 3 . I remember 100 words in English ! ! A boy was riding his bicycle while using a cellphone . Luckily , a scarecrows contest the theme of which was `` dream `` was held there , so there were more than 30 rare scarecrows in the beautiful countryside . I 'd like to go there again , because the theme of the contest changes every year . I wanna take a nap too . Since it is not a long distance from my college to Beijing which is the capital , I joined the travel agency to go on a journey . on my own So . I feel a little disappointed to some degree What makes me embarrassed was that the other travellers are almost lovers or accompanied , I am the only one . on my own In spite of it being the end of June , the weather in London was rubbish recently . And also I felt like I 'd come to a different country , like a resort : ) haha It will be nice weather tomorrow as well , so I 'm gon na go to a swimming pool with my host sister . By the way , it 's difficult for me to figure out the difference when I use the same verb but with different prepositions . After dropping off my children in the morning , I walked for 1 hour in the Al Barsha Park . There is little difference between first and now . In this letter a man tells his children ( about ) how he and their mother ( his wife ) have spent their lives , and how their mother died . My favorite sentence is ' ' Death overwhelmed everything , and this saved everything . ' ' I like my job , because every day I have the opportunity to help people . I work in medical insurance . I work with free medical insurance . If a person 's income is low , they can qualify for free insurance . It includes medical prescriptions , dental , vision and emergency room visits . Some people who came from countries which had been invaded by Japan 60 years ago hate Japanese culture . The decision is theirs . I did n't see many people , but I saw a few people taking their dog for a walk . It occured to me that even if people live in different countries , people learn the same important things . Because I got my wisdom tooth extracted , I have been having only soup and jelly since the day before yesterday . It is liquid , and contains the necessary nutrition . I - bought - 2 - potatoes and a frozen - pizza - for - lunch - at - the - grocery - store - near - my - house And - then - I - will - clean - my - room - and - press - my - shirts I bought some premiums for my wedding party which are a machine for making fried octopus snacks and a small Christmas tree . I feel a little pain , but I think I 'm recovering now . Use specific reasons and examples to support your choice . ( sp ) ( within 30 minutes , more than 300 words ) A Private room is one of the places where I can relax and be refreshed from the exertion from the day 's work . You can easily find some pictures and videos and use them as references for your homework . Through that site , you paid for a dictionary . Nowadays , the electronic industry is becoming popular , so fraud like this might happen even more . But people mostly use the computer for more than one hour and as for children , they ca n't refuse the temptation . Besides these , there are lots of other disadvantages such as illegal downloading and becoming violent . I was wondering about what was different between understandable Korean and misunderstandable Korean . Tomorrow I will fill it up . ) and I will write about those results tomorrow . I feel a little idle ~ `` ~ A few minutes ago , I ate dinner with my parents . It was a good excesise listening to English and I enjoyed watching her acting . Because of the 6 . 3 - magnitude earthquake in New Zealand , A Christian church and a five - story office building collapsed in the early afternoon on Tuesday . At least 113 bodies of people who have n't yet been identified were found and approximately 228 people are still missing or are dead . In a modern five - floor office building , There was an English - Language school where many people took classes . Due to the huge disaster in New Zealand , hundreds of emergency workers from all around the world have helped people looking for survivors from the wreckage in two buildings . Larry : what do you make emotionally as a black man about the Obama - Clinton race ? To me I feel like they both are great candidates because they both have strong situations and supporters . Larry : Gangsta , do n't you emotionally though , have some tie to Barack Obama ? I just wanna see somebody win that in the best interest of America whether be him or black man whether it be Hilary , a woman , either one to me is . . I think America is ready for a black president by him winning you know how he 's winning so far , even competing to be in the talks right now . I remember in the past , we had presidential candidates like Jesse Jackson . It was a gimmick , it was like a joke , because nobody believed Jesse could win . You know `` Win Jesse Win `` , but we really did n't think he could win . he 's in line with the right scenario to win . and you know whether he wins or loses I feel like he made a great step for black America by even stepping to the table and pulling off something like this . I do n't know exactly what they said , but what I can sum up is this . Larry asked about Snoop Dogg 's political idea , especially Obama , the Democratic candidate and he answered that he was n't involved and Democratic party except the `` gangsta `` party but approved Obama because it could be great step in American history . Yes ! ! ! As I look through the list , what I thought was that many students wrote they want to be a doctor or some wrote they want to be an astronomer or scientist or mathematician . So , I 'll be trying to write a diary for the next few days or so . I 'm very happy to find this kind of homepage , I prefer to spend money on enjoyable things that make my daughter feel really happy like amusement parks , swimming pools , and zoos and would n't rather spend money on buying many souvenirs , staying at an expensive hotel , or drinking too much . During OBON people go back to their parents ' houses , just like Christmas in US . What 's worse is that we had an earthquake the day before yesterday , so there were even more cars He is my church friend . Today two of my friends left our company , they are different , one is optimistic , another is pessimistic . After I master English and get ( OR acquire ) PR status in Singapore . . . . . . . . I 'm shocked : ( I should have interrupted the requesters and told themnot to expect me to close it within 3 hoursas he hadwanted but I did n't , and tried to close it asap . learning English by myself over two years . I am writing for beginning the day because is very difficult for me . Study ! ! I 'll study English little by little . . . I like reading , listening to music , watching tv and movies , taking walks , riding on my bicycle , singing , writing in my diary , and playing with my dogs . A few days ago , I had the great privilege of a person contacting me via this web site , which reminded me about it . She has destroyed a lot of things . But I know , even though / if Toro chewed up every single my favorite shoes I still love her very much . But my English is always awkward : ( I wanted to apply for a lang - 8 blog before I came to brisbane , but I did n't know why I could not ! ! ! ! what do you guys usually do at Christmas ? My MD - player broke . * ' was broken ' suggests it is now fixed . This is why my wife is so angry with him . I pre - ordered a concert ticket for a front seat . This ticket is really expensive but I 'd like to see the artists from the front seat as much as possible . I scraped my knee , but I did not get a serious scar . One is Spanish , the other is Philippine . People created a tower to cooperate . Because they had been speaking different languages . Hanukkah ? and . . . . By the way , today I went to the airport and met my friend . It was so funny ! When we arrived , we took a lot of funny photos ! When my friend who is gon na leave arrived , we took some hidden videos of her . There are so many memories in Toronto for her ! ! My friend gave her a gift . . . it is a letter and thirty five one cent coins because it is my friend 's age , and her name is Penny . because I need good sleep , and have to relax . I know . . . Maybe the best way to learn English , is to have a foreign boyfriend or have a foreign friend So he has to watch the baseball game with a stupid guy instead of the girl of his dreams lol How poor he is ~ ) Surprisingly I finished all of my homework ~ My friend said `` You should deal with stupid homework with stupid ways . My home is under a mountain . In Korean history , it was used to send an urgent message with smoke on the Mt . I decided to register at a local gym , but I changed my mind . I 'll go to the mountain regularly every moring ! But when I took a picture of them , it was really nice when I looked at my camera screen . It 's not one pack but one box . I mashed some strawberrys with the back of a spoon , put sugar in and ate it last week . Afterwards , I put sugar and milk in and then ate and ate . My favorite singers are Alex of The Calling and Avril Lavigne . Tonight I heard crickets chirping . It was much louder than usual . The cricket stopped chirping when I went outside to find it . Tonight I have a cricket to sing me a lullaby as I go to sleep . It took a long time to finish Assassin 's Creed 2 . I stay alone at my dormitory , even though most of my friends have gone home . It 's pouring outside which makes me not want to hang out . I tell them that it does n't make any difference whether I 'm at school or at home . Until I 'm tired of answering the same question . Microsoft Excel . . Aside from these basic functions , we can use Excel Macro Function to automate repetitive tasks . So , it helps me practice listening to English . Please check it out if you can . He was the musical director of `` Pirates of the Caribbean `` , `` The Da Vinci Code `` & etc . I 'm a Brazilian , I 've studied English for 3 years , and I just noticed that my English is not as good as I thought . Thanks for everything . Today I finished the preparation for the trip . actually I was such a stupid person , but my friends helped me understand that . Because I looked forward to meet my girlfriend . The climate is very nice , and every season is warm , even winter . Every morning , I 'm hard to get out of bed . I just want to travel The function of the liver of mammals seems to be deteriorated in spring because of their hibernation . Whether we 'll have lover or not in the future , we still support and encourage each other . Now I 'm studying English diligently to make my dream come true . We have to keep that a secret from my husband because he wo n't like the idea bringing people around when he 's away . Household chores took me about five or six hours and I spent another six hours visiting my parents . Every morning , I often play sports such as football , volleyball or swimming . I would choose this house , but it has a few problems . Please watch this movie so that we can continue this talk . I received a message about the English examination . I need to preview the knowledge I learned . This exam accounts for 50 percent of result . One group is from the Kanto area , my older brother , my wife and I , and the other group is from the Tokai area , my mother , my younger brother , grandma and grandpa . We had planned to meet at the hotel at 3 o ' clock , but my little brother had to go to a job on Saturday , so the second group arrived at 7 o ' clock . We had a dinner soon after they arrived , and had a chat after ( the ) dinner . There is all - too - common topic , the work place of brain is different when human understand each language . And , bilinguals usually say , you should reject Japanese when you study English . So , if you meet incomprehensible word , you should search in English - English dictionaries . But , I ca n't write and speak English without Japanese - English dictionaries . In addition , that translated English is not often general for `` native `` speakers . To study foreign language is hard . They provide a study room , where we can freely study using the books we borrowed . Seoul is my lovely place . It was a very comfortable room , gym area and spa . After I came back home to Seoul from Daejeon , where I had gone to visit my family during the holiday ( Seolnal , or lunar New Year 's Day , which is one of the biggest holiday in Korea ) , I found out that I had received an e - mail message from the editorial committee of a Korean philosophical journal , notifying me that they decided to publish the paper I had submitted in their journal . This is the second time I 've had a paper published in one of the major philosophical journals in Korea . I will be thinking of them . He has had a high fever and has been coughing . I do n't know why , but it was probably because of my old PC and its browser . There were many confusing things I thought I knew . I live in Russia and I want to learn English . I 've had bad luck these days ! A massive headache , sore throat , crowded street , poor air quality , buses which never come , intense classes , and I have an important meeting tonight . . . I do n't know very much . . . . . I 've been whitening and wanted to a whitening gel because my teeth is getting dark . ahh and I can speak Japanese so I can teach it . Anyway if you are interested in chatting and voicechatting on skype send me message or leave a comment . See you ( later ) good night oyasumi bye byematane jaane bai bai ~ I have improved my English by writing a little , however , to speak to a foreigner in English is still hard for me . Then I get more and more nervous , and I reply with bad pronunciation . In the villages , the farmers are very poor . They need clean water and livestock . But if some factories just emit dirty water , it ca n't be good for people 's health . My country needs to take more care of people 's lives , not only the good things . Of course , if you who always tweet in English , follow me ; I will be more than willing to follow you also . : ) Rumour has it that the first year is the most comfortable one of the whole college life , but somehow , I think that I was lied to . But the dentist uses anesthesia before the dental treatment . They have beautiful voices and emotional lyrics . I 'm so excited , even though I hear it will be raining heavily . My favorite writer is Tolstoy . I have a strange habit to go to the Odawara castle every day . I take the first or second Tokaido train at Hiratsuka . I study English and check my planner for today 's schedule . Recently other person take a place of our president , so his comment did n't realized . They are n't differentfrom Chinese politics that much . I 've never been a shopaholic before . All students were very skilled . I think the accident in the first half was the misjudgment of the century . I have to learn English , because I will become businessman this April . Today , my breakfast was an egg over rice , miso soup , dried plum , nattou , and honey in milk . I thought that they 're very healthy foods ! Translation sites are untrustworthy . . . No progress today . After the famous people die , it affects ordinary people who get the impulse to commit suicide in groups and series . And as that happens , the social anxiety increases yet again . Strangely , she got a reply from a mystery person . ) She started a correspondence with this mystery person . At last , she found out who the mystery person was . The mystery person who sent the reply was a different person with the same name as her lover . The mystery person started to let her ( the actress ) hear what happened between the two different people of the same name , by mailing her a request . The problem is that the mystery women has the same features as the actress / movie star . My teacher Yoko is very stern . I speak a smattering of English . Immediately I regretted it because they were not good words . Fortunately he knew that I did n't try to mean what I said . and we became friends . We will meet again at another festival . have a quick rhythm and the video is very colorful . I met a friend with a beautiful girl at the theater . Some time later he admitted that he has feelings for her and is so happy that he could not get her out of his mind and could not focus on working . I guided a visitor around Shinjuku today , who came from US to teach English at highschool . I have been abroad for 9 months , but I ca n't notice any improvement . I am a freshman at hunan international economics university , majoring in basic English . Since I am interested in languages , I am learning nihongo at the same time by myself , though I actually know little about it . My friends told me that I am a happy boy with sun - shining smile . I hope I can infect you with my words and the emotion behind it . Then we can be friends . It 's located in Kyushu . Today 's weather is cloudy and rainy . I have to change . I want to change my life , really . I will have an important examination , next week . I feel a little bit nervous and fantastically excited . It 's my fault . I 'd like to grumble to my mother about that . `` You can do it on stairs ! `` It has great lyrics and a great melody , do n't you think so ? We people are easily influenced by the weather . I hope everybody will have a good and clean day , just like today ` s air and spring leaves ! The Bible I am looking for is an Audiobook . I should study harder . It is irritating me because you have to change to vibrate mode ( it is a mode which does n't make any sound when your cellphone is receives a call ) in Japan . My rabbit has got sick By then my English skill will be better , so I will be able to talk with you more . English level and is helpful to your English study . Having drunk a cocktail at dinner , I am still feeling very sick . . . I am going to go very soon . His birthday was last month . My speciality is forest mensuration and planning . I like listening to classical music , pop , rock and Japanese pop music . Therefore , I do n't like the weather . I hope the dead can go to the paradise , and the survivors will live a happy life . The most important thing when I buy a bag The most important thing when I buy a bag is the color . I went to the karaoke bar yesterday with a junior member I knowthat it may sound imprudent , but I 'm dying to watch the real eruption some day ! Yesterday I attended a series of lectures on the English language . The lecturer asked the audience to discuss the government 's new policy that English classes should be taken by English people ( teachers ? ) only . He arranged us into some small groups , so I talked to two people who are English teachers . I heard that in Finland there are no textbooks , so I was so curious as to why they can be successful without textbooks . In my class , my students are obviously bored and I also can not enjoy it , especially , when the stories in the textbook are plain . `` It 's better to not to have textbooks , is n't it ? One teacher believed that teachers should correct student 's pronunciations strictly , while I had not being corrected sincerely when my pronunciations were bad . She claims that a scientific study shows that people over the age of 10 can not pronounce English correctly , but I do n't think she had spoken English before she was 10 years old . Also , my most frightening experiences derive not from pronunciation errors Every morning It 's hard for me to get out of bed . I always feel sick after I drink beer But I do n't feel sick when I drink wines . Tomorrow I will have class again as usual . I told my English teacher about it , then I said `` Oh , the reason why they broke up is he 's gay ! `` and then I asked our classmates what they would do , if their boyfriend wanted to break up with them to date another man . I said it would be a nightmare , and a disaster ! But my friend said `` Oh , in my case , it 's so much better than him meeting another girl ! `` We laughed a lot because of her answer . But he still needs some rest , and has been lying in bed for a long time . I 'm swimming with my friend . They 're farmers . Currently they preparing for planting rice . I start in the afternoon , so I 'm planing to go to the library in the morning to read a book ! It 's the story of a famous Japanese burglar 's struggle for his friend and master during the war . I am worrying about the enormous typhoon which will come soon . My boyfriend 's sister works at a theater , and she said that she had seen this play and she did n't like it , because it was really weird as a play . The second one was `` Veronica Wants to Die `` . Unfortunately it was a little hard so I stopped it after a few pages , because I did n't understand it enough and I read it very slowly . My Austrian friend can speak English very well . And my classmates can speak English , because some come from the USA , others can speak it as a second language . Fortunately , I could come back home smoothly , but a lot of trees in the yard went down from strong winds . In Taiwan , I 've never tried Mexican cuisine . The price in the restaurant is fivefold more expensive than general Taiwanese diners . I like traveling , so I want to learn different languages . Also , I would be glad to help people who are interested in learning Chinese . When I wake up , I forget everything . Chan taan ahaan tiang took - wan , proowaa tii Ginza , ahaan pang kha . I will start going to school in Ginza for studying Chinese . I wish I can speak Chinese with the customer after studying Chinese for 3 months . weight training , not yoga . I took theTOEIC exam today . I 'm just scard of friends . I have about 300 - 500 people in my friends list . If I think you are my friend , I will put my trust in you . But a lot of my friends , they always like to `` betray `` me . About 5 friends owe me money , so they do n't try to find me and I ca n't find them ! I played too much , so I became tired and slept early at last night . I am busy everyday I hope to make friend with everyone in here . Especially japanese people because japan is my favourite country . Yesterday , I felt sick because I got drunk . Tomorrow is Nossa Senhora Aparecida holiday and Children 's Day . Today is the second day of the beginning of the New Year . The weather is fine and the temperature is very warm . What a fine day ! According to Chinese custom , people will get together in the morning to greet each other . I have an image of people from every country . For example , Americans are active and emotional and Chinese speak hurriedly and are a little selfish . I 'm watching the second season now . At first I thought I did n't want to live in this country for a long time because it was hotter than I had expected and I really missed my friends in Japan . one is Korean Immigration in of Japan , and the other is Japanease ' Kamikaze ' special pilots in the war . of course I know this activity by the Japanese army but I did n't watch the real scene images until today . its a Japanese black history , so we must not do for the outbreak of war and Kamikaze . in those day , I think people believed that we must be alive and die for our Japanese emperor from the education . I think that they were brain washed by the goverment then . The influences you get from other people make you who you are . If you sometimes listen to yourself , you will find that you talk as someone else would depending on the situation . There are many people who actually are not themselves , instead they are a mix of a lot of other people . Granada was an important city during the 800 - year - long Muslims occupation of Islam seems to have been comparatively generous to another ethnic group . I spent New Year 's Day on very spontaneous trip to the mountains with my school mates and their friends . It was very nice to meet some awesome new people . We went to Murzasichle , a small town near Zakopane , a few days before the New Year to take some walks and to try some winter sports . : ) We climbed some hills and walked along the streets of Zakopane and in the snowy forest to admire the beautiful views around us . In China , when u are 18 years old , then u can learn to drive a car , but last month , I went to New Zealand , and I know people can learn to drive when they are 16 years old , but my visa is a student visa . I do n't know , can I learn to drive now ? Also do n't know I have already corrected other people 's diaries , but my `` corrections made `` number is zero . . . . . I learn that the Chinese do not like going Dutch . Really ? Now I can pay for college to help my father and mother ! Suddenly , I realized that I will be a college student at that moment and I would start a new stage in my life . I do n't need to separate trash here . There are no designated trash bags either . In Japanese society , low calorie beers are popular now . My favorite the low calorie beer is `` Asahi off `` . The most two popular languages here are English and Japanese , without a doubt . I 'm not complaining , because the ability of speaking Chinese would remain a privilege in some ways , haha . So , people who are learning Tradition Chinese do n't give up and also others , who are learining other languages , do n't stop ! I have n't bought a present yet - Only neighbors walk through there . I went to library after the test . I 'll go to Okinawa this coming Sunday with my school friends . so I 'm studying English hard . In Central Asia , deserts such as the Karakum andthe Kyzyl kum exist . This is one of the geographical dimensions different from Japan . Also , in Japan there are several sandy areas , which are called `` sand hills , `` but the size is much narrower compared to those deserts . So , I made pre - cooked Japanese noodles . It 's a very popular brand of noodles in Japan . I watched a video by chance yesterday , and it got me thinking about many things . Watching this , I thought that I had only explored a little bit of myself as long as I have been living I learnd a lesson that exploring myself is important . It is around 40 minutes past 12 ( ? ) . I also want to learn some sentences that native speakers usually use in daily life . I hope you guys can be my teachers and help me . I could n't use my computer because my stable went bankrupt . At first , I could n't understand what happened to me . Needless to say , I was confused , but I tried to think : `` This is a big chance . I can change my life . `` It 's very hard to pass the English essay - writing test , and so I must work very hard on it . From NHK news , these earthquakes is 8 . 8 - Magnitude . and these are very massive ! They hit all of northern Japan ! and the Tsunami hit Northern Japan now . My friend told me to listen to the opening narration , so I did . I took the test because the score gives me a certification for english skill for when I apply for a job . But actually I thought that I want to stay here longer . Knowledge from books , we do n't experience ourselves . knowledge . So , in my opinion , books are the more important source to gain knowledge . On the train I read a book called `` Diary of the wimpy kid THE LAST STRAW `` and this book is so funny because , it 's a story that could n't be real . After I got off the train I walked for 3 minutes and I got to the Canadian Embassy . Then , I went to the library and took part in the book reading session . Today 's session was about `` What elephant ? `` . It 's a story about a boy named George , who went home and found there was a big elephant there . George called a lot of people for help but , nobody believed it was true and George had to do a lot of things because of the elephant . This story was very interesting for me because , could you believe it if there was an elephant in your house ? Anti - boycott law in Israel Anti - boycott law was established in Israel . I still do n't know why she went home without any word , so I feel bad today . I work in the company which is in one of the financial sectors and I belong to The Ferris wheel is our good memory before getting married . One of my friends strongly recommended this site to me . I want to go abroad , but I 've never been to foreign co `` u `` ntries . But , because I 'm shy it was so difficult to make friends there . . . I managed to talk with some people . They were from KSA , the USA , Korea , Malaysia , Russia , and India ! ! my listening and speaking skills are not good . . we have only learned English grammar and reading . . . My kness hurt recently . When the tomato jolted on the basket , it made tomato juice . But some of the customers say `` Thank you . `` or `` Hang in there ! `` to me . When I walked along the fried chestnut shop , the fragrance of fried - chestnuts was scattered into the air , which made me drool . I took the lesson from the other teacher but I was given a lot of questions because this was the firts lesson with the new teacher . It seemed as if the story was finished by force . I was very impressed ! `` Akai ito `` means `` the connection between the couple . `` I have a friend who lives in Hawaii . After that he went to Hawaii . He have lived in Hawaii for 9 years . I know what is happening in my brain Yesterday and today , I watched the drama ( or TV series ) `` Sex and the city `` for 10 hours . Because I watched season 6 that has 20 stories . ( or episodes ) One story is 30 minutes long . I love Samantha . The question is whether we should eliminate the one child policy . On the one hand , they need to take care of the elderly , while on the other they need to take care of their children . Exactly . If you have no money then you can not do anything . I have done much housework today because my boyfriend was watching the world cup all night ! I always regard her as my anti , although she is Vietnamis . If you make a correction with a reason , I would be happier ! ! I had seen Avatar in 3D in January , and I wrote about its impression in a Lang - 8 diary entry . This is the latest release . Do you usually think before you speak ? Indeed , why do I learn languages , if I have no one to communicate with it ? I 'm Japanese but I feel that I must learn the Japanese language more . He has to stay in home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guilty and I totally miss him : < I drink an iced coffee after I drink a hot coffee . XD So I can go home anytime when I want to go home . Its original is `` Shushoku - Katsudou `` . Doctor says it will take about one year to heal . My neighbor was rushed to a nearby hospital by an ambulance . At this time , which should I say `` Good night `` or `` Good morning `` ? 3days ago , I loged in Lang - 8 to study English . I found it takes a lot of courage to face the setbacks in life . And both have touched me . One day my mother made me take piano lessons without thinking my character . I prefered playing outside with boys instead of playing inside with girls Since then , piano and music scores have been tramatic for me . Speaking English is very different from writing and reading , I think . Where is the sunshine going ? Though , of course I am really happy that we realized that we love each other . Success or failure Thank you very much indeed in advance for giving me your answers . How to get fish eggs . At the gym , I trained myself by using dumbbells and some of the other machines there . So I was nervous . These days , there arealso boxes for the purpose of collecting money / donationsfor the cases of foot - and - mouth disease in theMiyazaki pref . I made carbonara for dinner ( see the attached pictures ) Yesterday , we had a translating class and it was exciting for us . So far , when I read something in English , I can understand it if it is about something that we have been taught . Honestly , in some fields such as stock market , specialized terms in economy , and so on . So if I am not good at my language , it will be more difficult if I wanna be good at other languages . I really like European architecture and art , so that 's why I chose this department . Though I 'm studying French , recently I started going to English conversation school in / at my university . My native teacher is very kind and I made friends with my classmates . Friend 's birthday ! ! However , fun time ended soon becuase I had to go to the library for an appointment with the librarian . I had my stomach examined with agastrocamera today . First , I drank aliquid to reduce bubbles inmy stomach . Then Ihadan injection to restrain the motion of mystomach . Ithen had tokeep ajerry to anesthetize at the throat for one minute and wait to be examined by thegastrocamera . It was nothing other than a cockcroach ! ! I have found more and more cockcroaches lately . We should be content . Although it 's Saturday , I do n't have any planned . It 's likely that the share prices of IBM and AOL will stay at the same level for the next few months . She had to have seven stitches . I actually have very patriotic feelings - our history is really heroic and difficult . I 'm not good enough at it to write anything ( I 've had just two lessons ) It 's German and if I only wanted to , could I & nbsp ; write something understandable . I 'll modify / correct my mistake . Though my daily life is extremely monotonous , I try hard to adapt ( myself to it ) . Exciting Cities ( Boiling Cities ) I watched the program named Excitng Cities made by NHK . Finally I found the program on internet yesterday . Something is different between the Turkey in the episode made in 2008 and the Turkey I saw in 2010 . Moreover , Japan is also one of the places I want to visit since I like Japanese culture so much . In order to travel to different places in the future , I will try my best to learn languages and always improve . stupid policy I 'll be going to to Tokyo Disney Sea tomorrow . I recieved an e - mail from an old friend . Last week , my supervisor invited me a meeting , and let me know that the company has a new business plan . it can prevent some viruses and hackers . My body 's condition was bad , so I slept all day . On the day of my birthday , I decided to never fail to write a journal entry everyday ! Our president and government . I was absent from my company today because of my sons poor physical condition . He can go to the nursery school tomorrow , I hope so . This is tempura , which is fried shrimp and vegetables . We often eat tempura with soup called tsuyu in Japanese and we sometimes eat it with salt . Both ways to eat tempura are very delicous . he tempura of This picture shows several kinds of tempura . There are many foods which are included in tempura . They are tendon , which is tempura on rice and tempura udon which is tempura on top of udon soup . I was always bothered about what people thought about me . . . Today is the first time I went surfing on the Lang - 8 , and I really want to When we are working we have jokes and fun . ^ _ ^ So we are not well known by people in other countries , especially the people who live in Europe . I want to write an interesting diary . Spring holiday ! Now , I have spring holiday for about one month . Besides , I 've been expecting my package and letter from Japan but it has been delayed . . . I was living in Illinois , in the outskirts of Chicago , for 2 years . Some people told me that I can speak english pretty well . So for now I want to work with foreigners only , so that I can practice my English with them . I 've had many foreigner friends in Thailand and they really like it here , but it 's opposite for me . Today , I taught the way of makeup to a younger member in my club . Furthermore , I was praised for my posture in yesterday career fair ! ! We were in the same grade and the same major . In contrast , I think some English words do n't ( seem to ) have any difference , so I want to know how English people distinguish these words . Actually , I did n't know what to write . In autumn , there are many seasonal delicacies . And I wish I will never have a patient . TRY - WORKS conducted questionnaires on the web and the street to ask girls about which character was the cutest . They were sold at game arcades as a prizes , and Kapibara - san became the most popular character of all the prototypes . He became a big hit among girls , and today he is just as popular as ever . My official duties are to explain the work for my workers , check their work , and make orders for building materials . . . I think that this work is difficult because I am young for this position , but I like it and it brings me a good salary . I am a student at Gifu National College of Technology . I just hope in a few days I can be normal again . However intelligent you are , you would not say these are correct Although I 've already decided to not send any , I have to make a lot of New Year 's cards for my family . What can be considered to be a good souvenir ? ? I ca n't decide on souvenirs for my Thai friend and his ( her ? ) familly . Winter , summer , twenty - nine , thirty - first . . . It 's news to me , so first I have to understand the general thoughts ( people have ? ) about him . A rainy Tuesday I live in the north of Taiwan in Keelung , a famous rainy city in Taiwan . I went to the Gold Coast in Australia from the 1st to the 15th of August to study with my sons . Today , I discovered Lang - 8 on the Internet . I like reading good books sometimes . But now I feel a little nervous because many graduate students are not working . But the students have many things to prepare . You could find something new or something you 've half - forgotten . In addition , to the Japanese , grass is blue , the smoke of a cigarette is purple , etc . . she ` s so adorable and I can ` t wait to see her weird pacifier and hear her sucking sounds . I am actually concerned about it . Fortunately , I don ` t have to eat a lot as long as I study because I did not move too much . Does anyone experience this kind of eating habit ? I received `` A Desk For Charlie Jade `` : episode 1 from Amazon . Charlie Jade is a surprising drama . Today is the day I started watching `` Gossip Girl , `` which makes my boring life a bit more fun . Once I saw the cover of the DVD , I was totally excited to watch `` Gossip Girl `` as soon as I could . Believe it or not , this phenomena might have happened to you before . Has it ? A patient came to my clinic three minutes before our consultation hours was over . but seriously , I 'm considering to go to a foreign country as an exchange student , or take a VISA for a working holiday : / ummmmmmmmmmmmmmmmm . . . It 's hard for me because I have never lived in another country before and most of time , I 've spent in Japan : ( So im not in a situation where I can dramatically improve my English skills , ohhhhhhhhhh my gooooooooooooooooood ! so , I 'm thinking about the other way , a working holiday . I ` m very happy because I met up with my best friends . I think I want to speak English to communicate with people from other countries . I decided to study hard English . I thought this is ridiculous , and I resisted to do it first , but it was in vain . Those all made me just exhausted . But nobody commented my diary . When I feel something , I try to write a Haiku . It 's very nice but my legs ached . As for me , I 've been to Italy , Germany , Holland and Switzerland . This holiday has many days together , I enjoy being at home with family . By the way , tomorrow , I will visit Kyoto and meet up with a friend who was my neighbour when I was living in Osaka . I ate five bananas weighing in total 1 . 5 kilograms . I wo n't do that next time . It is common that hundreds of thousands of people apply for one position in one company , obviously , the competition in China will be more fierce than that of in Aussie . However , some employees argue with their employers about job satisfaction in order to improve their work environment . This essay will discuss what factors are important to job satisfaction , and what employees can realistically expect . In this unlimited competitive society , corporations tend to concentrate mostly on how to increase profits . He loves Disney , so I wanted to send a Disney one , but I could n't find it . In 1932 , she wrote her debut short novel and her writings were published in the school magazine . It includes Qing Cheng Zhi Lian and Jin Suo Ji . In the spring of 1952 , she went back to Hong Kong , where she worked as a translator for UK News Agency for 3 years . But I was a bit surprised to find this kind of site where the registrants assist each other with foreign language skill development . Today , I started to read the passages of the website named `` technobahn ( URL ) `` to learn more about the backgrounds of various fields such as Archaeology , Biology , Economics , Mathematics , Physics and so on . Since my youngest sister is going to college , none of us are qualified to get any Ya Sui Qian from our parents . But , I never want to give up my future ! I 'm wondering if the sentences below has any differences . But I decided to choose the normal version , because it is more friendly on kid 's eyes . I have been dreaming of seeing the Christmas tree at Rockefeller Center . I tried to explain `` konnyaku `` ( it 's a japanese food ) to the instructor from America , but I was totally confused : ' ( I need more practice . ) She failed ( in ) the step - up ( examination ) 3 years ago , so she had to look for an one - year contract dormitory . In Japan , dormitory contracts are mostly for two years but I do n't know ( the reason / why ) . Her contract ended this year , so she had to study for passing the exam and also to look for a new dormitory . When we arrived at her old apartment , she had just finished putting all her things into boxes , so we cleaned the rooms and ( conveyed / move the ) boxes to a car . After we moved all of her stuff , we went to a furniture shop to buy new furniture . It was a little far from Tokyo . But we had a lot of fun and looked a lot of furniture . While I was looking for her furniture , I found a very attractive box , so I bought it . In the way returning home we went to a noodle restaurant because Yokohama is famous for its noodles . These special beans have a hearty taste and smell nice . I studied English today . Takahiko Kozuka finished eighth , but he became the first man from Japan to complete a quadruple jump at the Olympic games . I got angry at my daughter today , so she broke our promise . Then , I thought that this was good for my English study and bought it . Although I have lived in Tokyo for many years , I did n't know most of those Tokyo 's sightseeing spots . The Burger King in Akihabara is a holy ( ? ) spot , because there are little customers . It 's indisputable that cars are harmful too but I think that aircraft which need a good deal more of fuel than cars are even more polluting . I graduated from a university that had many students from other countries . So , I have learned more English than other members of my office . I know my English is not good enough for business , but I will have to work with a client with whom I need to communicate in English from next month onwards . There will be many conversations with this client . A few minutes later , a staff mentioned the train would n't run because of the earthquake . I feared the influence of the aftermath . I study foreign language . Surely , the most universal vocabulary , the most laiconical rules , the most popular constriction help me study English easier and faster . The most modern equipment and programmers use only English . My job is very busy recently . I studied English in school , but I never did learn it . In Japan , we will have a long holiday from April 29th to May 10th , when there will be a lot of tourists going on holidays abroad . This flu came from pigs , but our government says it will be all right if we eat pork . Sometimes there are nice things , and sometimes there are bad things happening . Fortunately , I have n't experienced a huge earthquake yet since I came to Sapporo , although I have experienced slight earthquakes a few times . They are beautiful . I always believe that I do n't have to celebrate my birthday since I have n't contributed anything to anyone around me . My childishness make me suffer a lot in campus while others take their time to broaden their circle . I 've never celebrated my birthday before and neither have I evergot such a surprise . I think [ that ] the British people really do have a funny accent . A very embarassing thing happend to me when I was in Manchester for the first time . Is it because of my diet ( two meals per day ) ? I heard about this website from a friend of mine , who is learning japenese . She said online studying was so much fun that she had improved her japenese extremely / very fast . So I decided to come here to make friends and to elevate my spoken english and grammer . I 've ended up my bachelor 's at the beginning of this year . I 'll begin keeping this diary today . so I 'm studying everyday . I got up at 9 : 00 a . m . I was standing at the booth of my laboratory , and I talked to some people advertising and appealing my laboratory and my study ( major ? ) . As I mentioned yesterday , my friend Minsung came to my home after watching a concert by singer Park HyoSin . And then , we went to a `` teokbokki `` vendor because he said he was dying of hunger . I 'm nothing compared to him because all I 've watched are Heroes and Friends . A sort of mouse that has only four fingers and walks on two legs lives there . I want you guys to correct my broken English and I can also help people who needs Korean correcting . Does the dormitory of the university in Toronto still have small telephone booths on each floor where students can make phone calls ? I went to a park near my house with my sons so that we could play soccer yesterday . This is why I played soccer holding him while playing with his brother . I ended up going to bed again . ( In Japanese ) or `` How wasteful `` ! ! After my cavity was treated , I had a terrible toothache . Fortunately , my older sister 's friend is a dentist . I do n't like these serious meetings , but I like a lunchbox served during it . It was a more important problem than the topic for the meeting . Even though I go to Sapporo snow festival every year , I think it is spectacular . This September I will be promoted to a position that has to constantly fill out a lot of documents . My concern is if I can accomplish my task . My favorite day of week except for Sunday ! Do you know whatUdonis ? Really , though , I could n't communicate well enough with her . Please correct my English . Because they are so yummy , they become others ' prey including ours . I was relieved . I have a fever , headache , sore throat , runny nose and I sneeze often . I have n't gotten the shot yet . I ca n't have swine flu , especially now . I have to go to China tomorrow as a model for a cosmetic company . I am going to the hospital in an hour even though I do n't have the energy . I 'm kind of nervous . During theOshogatu holiday , I prepared to apply to get a Canada working holiday program visa , [ The 34year old England midfielder missed the first half of the American season because he extended his spell with the Italian side . The auther of this book is genius or god indeed . Please tell me what the most important things are for an interview It is one of my all time favourite movies . As you may know , Lang - 8 had been experiencing some technical issues after the latest update which caused the disappearance of some journal comment entries and messages ( friend requests ) In the future I will work hard for my family . Today I will study English and exercise near by the park . I continue the effort in the future . If I walk wearing this trainer on the street , people think I 'm crazy , but if it 's her , everything will be okay ; - ) Besides , most of all them take paid holidays with 100 % commission Right now , I 'm studying English & Korean because of my job and communication . Please become my friend ! It was a nice discovery . A handmade Christmas cake After that , we ate this handmade Christmas cake . Her hair colour is dark blue . But , one rainy day , her brother Jin disappeared . . . . It was delicious . I want to keep a diary to learn English . The roads were confusing , but the police stood at the main crossing When I turned on the TV about 2am yesterday morning , Now I am writing some documents , including some tutorials of the basic systems and how to use and set up stuff . Even if the guy says that he ca n't live without me as he sincerely loves me , and I feel like accepting it , I ca n't . Since I was brought up in a poor family , living without worrying about money have been very important for me . I tried to go outside and see the fireworks display . Other apartment residents were also outside to watch it . My boyfriend will go to golf with his colleagues . A meal consists of chicken , vegetables , potatoes , and so on . We had gossiped about boring routines as well interesting topics like the Casino . I forgot about lang - 8 for a while So I will go to the gas station and buy lamp oil . the cold is very bad ! ! ! ! ! ! There is a dressing table at the head of the bed . Aroma is again important to make it perfect . I can chose the best one for that day from some herbal soaps . I 'm studying CRM ( Customer Relationship Management ) Then , she woke up in surprise . My Literary Comprehension . . . . . . . . . Especially when I walk down the street Saudi people look at me interestedly and greet me . Soccer is very much fun ! The temperature was 37c , unusual in this rainy season . It was useless , they were careful about their health . now Mao may not take part in winter olympics . It was very beautiful . Therefore when we went out last weekend , I kind of got lost in Harajyuku and believe it or not , he led me to the right direction . I applied for a scholarship . But I still have not received any response from them . When I came back home and opened it , I went just insane . Last week , I was asked to translate some papers at my office for a co - worker . I could n't come up with the right word in Japanese even if the English word was very simple or familiar . The Phonix Suns were two wins away from NBA finals last season , Du betyr mye for meg : ) We ( my husband and I ) decided to buy bricks for her Chirstmas present . My dinner was only riceball and vegetables . I had good opportunity to meet funny women and we exchanged email addresses . She was pro - wrestler and she was eating smorgasbord about 4000 calories . She claimed she could eat a smorgasbord about 4000 calories if she could come to this place . She claims that she eats 5ooo calories everyday . I was the only Japanese until the new 2011 February team arrived at my school . I totally did n't understand what my team leader said when I was at meetings . I 've tried to talk with other Japanese people in English , even if only Japanese speakers sit down at the same table as me at lunch time . We mix ingredients such as strong flour , salt , yeast and some others . When I come home , my leg are dead . . When I was in university , I joined the ballroom dance club . My schedule is too full Love letters are normally too sentimental and so full of words that only once you read them again after some time you realize how silly and embarrassed they make you feel . So I dedicated some of my time to writing . Unfortunately , I found that two of the professors seem to have bad ratings regarding class hardiness and teaching qualities . For 10 minutes , two friends and I talked in English in front of our teacher . The picture shows the Sept Sky in Hong Kong , enjoy . I always go to the Starbucks coffee . I did a college entrance exam . Because of the sucky assignment makes me nervous I finished the assignment up . Then I counted how many words I used in the assignment . I ( just ) picked up `` The Dialogues of Plato . `` Since I had promised my kids beforehand , I took my kids and their friends to a swimming pool today . This photo shows a statue of a Buddhist priest in his childhood . He has been praying all this long - long time . because I am apart from them . Do you know Hiro Nakamura ? I heard that drinking water is good for the health . A large number of evacuees from the disaster have stayed in the evacuation shelters . Also , unfortunately we had the trouble with the nuclear power station right after the earthquake . When I pull the drawer , I found some latters . I found blog with iPhone review , when I surfing the internet . A large quantity of the site 's features were developed by American and South East Asian engineers , so I had to cooperate with them in order to maintain site stability and to make sure the translations were correct . For example , there are often some variables in strings , like `` You have learned [ A ] out of [ B ] videos ! `` . So I needed to make a guideline that unifies the way to translate the site 's contents ; I had to consider the difference between English and Japanese . I decided to make a plan so that I do not waste the time I have left . Because of the cold and rain , there were no people except me and my girlfriend . It is better to ride a Ferris wheel in good weather . The master then put out a five - dollar bill and two one - dollar bills and asked the boy . Why did you choose the two one - dollar bills at the barbershop ? `` So I would like to keep writing and speaking English . 2 ) Let 's review the 3 questions I gave you today . But today she said `` I do n't remember `` . I 'm nervous . My hobbies are playing violin and snorkeling . I play the violin about three times a week . We talked about the habits between Japan , Korea and Canada . hi . this is my first journal but , except for reading and reciting , Today , my classmates and I went to play basketball and soccer , and I felt very happy . I suddenly thought of a sentence . Also , regarding internet technology , I feel that it can connect people of all over the world to each other , and that is useful for business in the future and in our life Because of these reasons , I want to work at an internet company and create new services using the internet so we can live more comfortable . A few days ago , I made a decision that I would get up at six - thirty every morning to study whatever I need to . > `` < So it 's all my fault . But I could 't directly answer thoes questions . Anything is OK - common image or personal opinion - . It was first time I met them for `` real `` , but they were really friendly ! ! English conversation is very difficult ! ! ! ! ! ! ! Hello . I ` m a university student . These days , I have many opportunities to talk with Americans , Canadians , Germans , and so on . I ask myself , `` Is this English expression wrong ? This might be wrong , `` and then I stop myself to express my feelings and opinions . If you get a chance to draw on someone 's face , I recommend all of you try to draw fake eyes on their eyelids ( like the pictures above . These are my current works . : P ) It makes their sleeping face incredibly funny . : D We enjoyed the changing colors of Autumn leaves , and we enjoyed the sound of the fallen leaves crunching beneath our feet . - Samurai Sentai Sinkenger & Masked Rider Decade - This movie was very interesting ! Masked Rider movie Next 12 , December . Good summer vacations ! I was born in the Aomori prefecture , which is further north than Iwate , so my parents and brother were not injured . I hope that the disaster 's damage wo n't spread more , and that thepeople of those areas may be safe . I decided to expand my skills in English . This first note is very short because I 'm so tired . They had to check my vision before I buy them . I am very nearsighted . Some people were fighting policemen armed with shields and nightsticks . At first I did n't know the cause of the riots , as Japanese TV stations did n't report them in detail . But in China , it seems to be unbearable to eat raw fish . I could n't do my best . Depression Days So we are losing our work . I write my diary in English and Chinese every day . Hayashi told us about the book written by an Australian broadcaster who traveled to China . After some time , appeared a rainbow before my eyes . The camera of my cellularphone could n't photograph it . I want to work for a passionate , challenging , and creative company . My last wish is to never lose happiness no matter what may happen . I 'm not a perfect person but I 'm proud that I 'm a Christian . first diary entry Because the internet is speedy and wireless . I must practise it as much as I can . . . But I thought the tiger one was more cute than the lion one , so I chose this tiger . My address is on my profile . They seem to hate me since I have been put in charge of an important project at such a young age . I invite my friends over , but I feel confused because of not knowing what should I do with them . On the second day , when I first met Chinese friends , I was very ashamed and confused We call it `` Chakaiseki bento `` in Japanese . The beginning of the rainy season . The question that agitated me and my friends was about limbs . According to this script Moll returned to the real world . It 's in Guam I will not be able to go anywhere unless I get up early tommorow . The club chief is a handsome and cheerful person . It was relieved because generally member of such an inconspicuous club are not cheerful . She became my friend when I was in an elementary school . Second of all , there is a really exciting activity He is the one that recommended me to go to his church for the first time , so It is just like raining fire outside in the afternoon . Despite the electric fan , we still ca n't bear the high temperature . Eating ice - cream is the only thing that makes me happy . Now , I wanna tell you especially about the J - pop artist , Aiko . Is it as hot in your neighborhood ? Usually , I go to see musicals in Seoul . It arrives at Suwon subway station . Cloudy but warm It was cloudy today . I went to a Chinese temple located in the China Town of the Philippines in 2008 . I have some questions about grammar . I cooked dinner for my friends I had to treat my guests , so I went to the supermarket and bought some food . I bought more expensive meat than I usually buy . Their answer was SUSHI . They often make jokes about my skin . The Weather forecast says the rain and the wind will stop by the next morning . Studying in my room is so hard . There are many obstacles ( distractions ) . It is irresistible , haha . The bitter melon was eaten in Okinawa originally but now it is eaten throughout Japan . In addition , it can be used as a green curtain ( ? ) and it is useful for avoiding / blocking the heat . But the various vegetables and plants will help us and our life . One is through the third tunnel , observatory and the northern most station . She is a good listener . However , I did n't know it clearly . She told me after she went to America , she rarely read books in her leisure time , because it 's in English . Some like Yahoo , some like Google , and different countries have their own search engines . I saw `` The Blind Side `` yesterday . The presents were `` smiles , messages , bouquet , dinner , and more . `` Yesterday I finally receieved a big baggage from japan . I 've been eagerly expecting the baggage from my parents . One of my club memberes invited some other members including me . ( = some club menberes ) . I was so furious to my parents and doctors . I was so depressed and sad so , told my mother that I 'm so afraid and sad for staying in a hospital . It was the start of the my terrible lunatic asylum journey . I was in there for 2 weeks . It was the end of the lunatice asylum journey . When I was there , I was so normal to interact with others , alchoholics , schizophrenics , suiciders and dimentias . I hope they get well and live happily . . . . . I am very nervous . I really hope I perform well and can be admitted by the university I want to attend . I feel lonely , because I have to work the day after tomorrow and my favorite city is Seattle . He made a beautiful Latte . ( picture 1 ) It 's a very beautiful city . I am one of those people who has to come here earlier or I wo n't make it on time . Thanks in advance for everyone who will help me make my English understandable for other people ^ ^ `` But I 'm worried that it might not require me to speak English . I want to speak in English . However , I sometimes keep it at a high temperature I was soooooooooooooooo cold . . . . . . . Today is not sunny , so it 's not very hot although it 's summer here . he played football and badminton , although he did n't win he had fun because he met a friend and relaxed after hard work . This will be my first trip this year . I 'm learning English conversation through the internet . But there are so many English words I ca n't remember ! But there are no words I can show my opinion with . A new school year starts in April in Japan , and March is farewell season . But I think thinking about something impossible is important because it changes to real things . If we hope , we strive to fulfil our desires . wonder drugs And I am hoping to study Japanese and learn how to talk , but now I just wanted to give an update on where I 've been . I think all languages are beautiful , only we just do n't have have enough time to be able to discover their dbeauties . That is `` Lang8 surfing `` . That 's true . I think the Internet is a good thing because I sold my bicycle on a second hand goods website [ www . Still , I ca n't believe he has broken his leg ! ! I would really like to meet my host family and feel a different culture ! but , I 'm worrying to ca n't make myself understand in English . I was surprised because many people cosplayed super heros . She tried to ruin the relationship between S and N . I took the role of a presenter and got a lot of helpful advice in yesterday 's meeting . I will do it continually to achieve my goal of going to Harvard . They were couscous ( Africa ) , shan noodle ( Myanma ) , adobo ( Philippines ) , spring roll ( Vietnam ) , guacamole ( Mexico ) . And we , as Japanese , made ' Makizushi ' and ' Inarizushi ' . fortunately , my insurance covered it . I want to go to China and feel an air of excitement that lots of Japanese people felt 20 or 30 years ago . After finishing the movie , I went for a coffee with friends . In Saturday , I got up late because I do n't have a class . Also , I had a breakfast and I read newspaper . After that , I went shopping with my brother and I bought some clothes . I was happy . My supervisor told me ' you should finish your work tonight ! `` but that work 's deadline is still four days away . ? I think that this is excellent in the overdrive pedal that can be bought in this price range . Some of our friends are coming with us . Now I have a daughter , she is 3 months old . When I lived in Japan , I was a volunteer staff and sometimes technical staff in a child - care center . So , I got information from a community college . My baby sometimes needs mommy ( = me ) , so my study speed is very slow . Maybe this entry is a bit long , so I am going to finish it for today . I signed the contract to buy my home : ) It will be 4LDK ( four rooms and one living room , dining room and kitchen ) and will be 2 floors . I talked to a girl from Beijing , China yesterday . A lot of people like to stay in air - conditioned places . Unlike forigners , people like to go the beach , picnics or outdoor activities . It could made her skin get tanner , so she always puts on a coat in the daytime , as well as putting on sunglasses , and rubbing suncreen on her skin . She is very crazy . First of all , I will tell you about my opinion , if we want to be a good boss , I think we have to control our company very well , be fair , and kind . If we ca n't control our company , we ca n't deal with some people or companies , and the workers will not believe in you . Also , most of the workers will disagree about our command because if we do n't control our company , they will not know about our authority . If we are doing everything unfairly , I am sure all of the workers will hate us . Suddenly I noticed what a good husband I am ! ! Until now I 'm interested in it , but Ihave no time to start a facebook . I 've heard that the Singaporeans are nocturnal , because the country is near the equator . Therefore / That 's why they do nothing in the day time , and usually start moving after ( the ) sunset . I wanted to buy it . The J3 has many good functions . Such as an inner speaker , 8GB of memory , AMOLED Display , long play time etc . I am satisfied by its performance and design It takes more than 3 hours . Although I tried to ask my teacher to correct my composition , he looks so busy . There is a real atmosphere of liveliness at the shop where buyers and sellers haggle . I often experienced that . Although I had decided to cook a meat dish for supper , when I went to the market , energetic cries of the clerk from the fish store made me find myself buying some fish . This is my second journal entry . Today I hadan English test . It was a 150 word essay . Iwas thefirst to finish in my class but I made many mistakes . I am nineteen years old . + nain - tiin + Maybe you feel really happy one moment ; you think you are the luckiest person in the world . But , very soon , maybe one day later or 1 hour later , you feel upset ; you think you are nothing . The development of Science and Technology I will show you a question , and I will try to answer it in various ways . One difference , I think , is in the development of science and technology , especially that of PCs and mobile phones . First and foremost , soldiers must put military gear on in order to beguile the foes . Besides , puting together plenty of grenadesfor bombardmentis amust . Meanwhile , others set snares at the behest of the marshal . It 's interesting to know that Dazai declared himself to be the Japanese Baudelaire . So I always do n't know whether my writings ( or ) entries are right or wrong . Ultimately . . It is so difficult , because I have not studied English in 3 years . Two weeks from now I 'm going to Milan , and I 'm going to see `` The Last Supper `` . Before I visit Italy I want to be able to speak Italian a little . If the eye consists of contrastive colors like brown and white like us , well at least for Asians , your eyeball movement is easy to be noticed . Is the drama famous ? Surprisingly , the hair - stylist today seems to have done a good job , maybe he is in my mind ! I love horse races . She is a very strong horse and she is very cute ! However there are disadvantages , for example , if you spend a lot of time on the Internet it is dangerous . I do n't think that books have any disadvantages . On balance I think that both inventions are good but the Internet has got more advantages . I especially love soccer . I am a member of a soccer team & nbsp ; in the & nbsp ; Future University in Hakodate . I am popular in the soccer circle . So , immediately wake up by yourself , do morning exercises , eat enough food and you 'll be ready for every great day and be able to move mountains ! Hello everyone . . . I am an Indonesian . I want to learn Japanese . Nowadays I am gradually finding out . is really bad especially writing T _ T I 'm trying to speak english and listening to english everyday . it 's a big problem for me ! The title was `` Science Allergy `` I must improve my Japanese ability as well as English . As far as I know , H & M has only started selling their products in Japan since 2008 and they have only a few stores around Tokyo . I would like to make many friends on Lang - 8 . I finished five graphics and one graphic is being painted now . I 'm waiting for you ! We , Asians , performed a play , to tell you the truth , I really did n't perform . It 's a weird sensation , kinda ( kind of ) like look at myself through someone else 's eyes . My major is economics . BTW I ate a pizza at Sbarro in Shibuya which opened last month . Nowadays , I 've been thinking about this . When I meet someone from another country , I want to know some expressions for asking new words and phrases in their languages . This time we students were talking about monitoring the employees . To my great surprise a lot of students do not think carefully before doing it ! Anyway , I recommend you to watch this movie ! She is going to play the trombone in Tokyo Disneyland as a one of members of the elementary school brass band in Oct . I always study English while drinking a cup of coffee until my teacher comes . Our factory has a lot of free time . It 's a challenge to explain love with ( or : through ) science . I attended a Techono Buddha , which is an event to make relationship through some workshops between temple members who are young people ( 21 - 39 ) , yesterday and today . And one of them was very weird ! ! However , I could n't carry the ball very well , so it took a long time to carry . I hope I could play the weird game very well next time . So I chose inexpensive but fairly strong ones . We ate Italian food for lunch . And I want to know the American culture . It was quite a peculiar reaction among many people in the cafeteria . I will do battle with mosquitos all this summer season Actually , the machine that had troubles last week is woking without trouble . By the end of Nowrooz children can buy something for themslves with the money which they took from their relatives and parents . Anyway , I usually start a new day by writing in my diary about daily life . I was supposed to bring these clothes when I moved to Chicago , but I ca n't find them in my house . My favoriate videos to watch are the American TV programs . But in fact , with the fashion spreading through our country , the person in question was making a humble apology without a different look . Being paticular about their dress may not be bad , but , I think , unpleasant appearances should be avoided . Beautiful dentist Since I live in foreign country without my mom , I have to cook . I can succeed at living alone and studying . First diary First , I will write a weekly diary . I 'm going to writing my diary here on Lang - 8 starting today . I am beginner . First , I will introduce to you TAIYOU NO UTA , a Japanese movie released in 2006 . I first watched Taiyou no Uta in 2006 . I think it is a good movie and I recommend you to watch it . The actress is Japanese cute girl YUI , her main occupation is as a singer and she is one of the most famous girls in Japan now . You can hear her music in this movie . However I have n't decided where yet . I 'm interested in NY because I 'd like to visit the Apollo theater , which is known for being the Mecca for Black Music , and I 'm big fan of BM . I like google . . and the sense of this website looks like it . . . . It 's a no - brainer that the bear effortlessly defeated Takeru Kobayashi . Actually I bought the ravioli , so I just made white sauce for it . If they attend Siggraph , they have to study , so they are reluctant to go . I saw a movie called Harry Potter . Simons described all of this very precisely . It 's really horrific what these people must have survived . I like books that describe stories like this because I can learn something about a time when I did n't live but thanks to this world I can see what it actually looks like . Today was the last day at school and I received a certificate . They are famous in Osaka , which I am originally from . There 's only one whole day left . However , I have strong likes and dislikes about food . However , I do n't have an I - phone or Android phone . To most of us , friends are the partners , who are valuable to trust in . It is said that please forget me when you are living in happiness , please recall me when you feel sad and painful my friend . She said the different amount was financial charge that was sent each month then dissolved later , so I ignored it . and followed the amount on the paper statment Now I relieved , but I still do n't understand why the department would make such unnecessary procedures to make people nervous . I do n't know many words . mechanical : I respect someone who has mechanical knowledge because I hardly have any . It settles down my mind . I am relieved . A gas explosion happened during the culture festival in Toyonan high school in Tokyo two days ago . So it burst and a gas explosion happened . First , I must work hard to earn more money than last month . We can make original plates by kneading clay . - doing away with oversized trash I rode some attractions such as the Spiderman , the Back to the future , the Jaws . I am going to sleep on the sofa , do n't need cook , go on the internet until late , buy a big cake , talk on the phone for a long time , , , , . In the group , I 'm an English teacher . I invited my English group members . But , my plan did n't really work out , due to an unavoidable reason . Furthermore , I do n't think my English is good enough for a working environment . And then , I suddenly found I forgot to attach an important E - mail sent to my boss yesterday ( I mean the E - mail does n't have the attachment which should be attached . ) . I have never been a girl who likes to smile very much . ( There 're two types of Zorb , one is that you can grab the handles inside the compartment or you 're fixed with your arms and feet and there 's no water , and the other , `` hydro zorb `` , is that there 's three or four buckets of water in the compartment . My second adventure was bungee jumping . But they allowed me to stop at the bungee spot and watched me jump . This is the bungee jump in the same place I visited : ( This man is not me , either ) However , I like , potato dishes , spicy dishes and steak . I am suffering from lower back pain lately . I went to see a doctor and have a body massage almost every day but it was not getting better . so he has to realign my backbone in the rigtht direction . Right now , It 's 23 : 10 o ' clock in TOKYO JAPAN right ? I can made friends who are in California USA and from the UK I 've just registered for an account and wanted to leave something for my first log in . Today , my writing teacher told me some reeeaaaaally funny jokes , eh . . . Cantonese : Movies & Language These Cantonese movies we see on cable TV in Taiwan are already dubbed into Mandarin . Luckily , I got to know an interesting video from youtube which is sent by my friend today . This video has the romanization to help the novice to pronounce the phrase or word . His pronunciation is also very clear , so that novice can get it quickly and repeat it again and again . Yesterday , I spilled coffee on the desk and floor . I rarely spill things , no matter how busy I am . Today I am going to write a note about my background . [ 1 ] Now , y stomach is full because I ate too much . I had a kiwi for breakfast while writing in my diary . I ate Indonesian food ! And the main character works picking it up there . And these countries are advanced nations . As a result , the rich and poor divide extends considerably . And I think maybe the presence of very rich people caused the presence of very cheap people . I have been studying English for a long time , but I often still make grammatical mistakes . This is my first time to wriewrite diary in this citesite . They defeated Qatar , Korea and Australia , so I think it is very worthily victory . The smell of pizza was really great and of _ course the taste was splendid too . Is `` puzzle `` just equal to `` confuse ? `` I 'd like to kinda , I think abuse is the appropriate word , this entry for getting and sharing tips about learning Japanese . Today , I went to see a movie with my friends . The movie that I watched was `` Crows Zero II `` , which describes the fight between Japanese boy 's high school gangs . I can ` t understand why languages like Chinese and Japanese are so popular . There are so many hieroglyphics , I can ` t understand how people can learn it ! ! ! ! ! ^ ^ ^ Maybe because China and Japan are highly - developed countries ? ? ? Have a good Thanksgiving ! ! When I was a freshman at college , my English teacher could n't speak Korean well . Ansan is one of the most polluted cities in Korea . There are so many foreign workers who work for one of the many coporations which are in the complex . Now I think that it is really a shame that when I was a boy , I hated these foreign people and the polluted air . If I were a reader of my compositions , would I like to read them ? As long as I am writing this , I suppose that I have to ignore the bias from other people . And I do n't want to be considered that person who wrote those kind of subjects because I 'm suffering from it . Thus , I succeeded in getting out my office to go to the movie theater . Today , I 'm going to write about yesterday . We bought many clothes . We were very lucky ! He builds bubble - nests and feeds his children until they can swim by themselves . hontou ni shinpai shicau yo = I really worry naze kokoro wa tooku hanareteiru ? what 's the different of koibito and aijin ? I always eat food carefully with my gratitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very popular in Japan . I feel like it strongly , especially when I feel insecure . For example , the times when I walk alone at night . As soon as I realized that I was being chased , I was grabbed by the neck . I passed out after being choked sometime . When I regained my consciousness , he was finally releasing my neck . ( I fainted for a very short time . ) Since he took off his hands , I could use my voice and so I said ' I am pregnant . ' , wishing that he would lose his sexual desire . ( of course I was n't pregnant . ) Anyway , he ran away afterwards and I could go back home safely . senkaku islands collision event Yesterday , the video of the collision event ( occurring ) near senkaku islands ( was ) leaked on youtube . So a border collie named ' Sky ' began to zigzag over a field . He followed Sky 's every move , so his watchful eye missed nothing . When Sky finished the course , she began to bark joyfully . she 's golden - retriever , very pretty , cute , clever To be continued tomorrow . Among them are Korean - style drums and inflatable tubes that bang together to make sounds . Especially , the national soccer cheering group so - call `` red devils `` are famous for their passionate and impressive cheering features . This team is my teacher 's team , and their dance style is POPPIN ' . She is a woman , but I think she is the best dancer ! ! Their dance style is HIP - HOP . I slept in late this morning . We played board games together , `` Jenga `` and `` Zinsei game `` . im studying English and spanish I focus on my work on weekdays . On the other hand , I want to soak my body and soul in something different to release stress caused by work . I have a muscular pain because I did sit - ups and push - ups in the gym yesterday . a questionnaire to fill out . Everyday when I leave the school On my way home , I felt hungry I ca n't feel the festive atmosphere around me . They are both coughing and sneezing . Now I 'm considering applying for a Fashion Designing Course at Central Saint Martins in London . I am a beginner fashion designer . After looking through my proposal , my tutor said ' your writing is little bit cranky , so you need to improve your academic English , ' I checked the meaning of cranky by the dictionary I will start studying English very hard from now on . I just started writing this diary . Some time ago , my country had `` elections `` , I have put this word in quotes because I 'm not absolutely sure about results . Some of my friends believe that the real rating for Lukashenoko was nearer 30 % , and that the election was completely falsified . On the other hand , my parents and other family members , ( my uncle and his wife ) , strongly believe that Lukashenko is our only hope . I know that Lukashenko falsified our elections , but I 'm completely sure that his real rating was nearer to 50 - 60 % , according to my own investigations . This morning when I woke up , I was so surprised when I found out that my clock did n't work anymore . I was late t to school which was was so embarrassing . It was raining cats and dogs and the wind was so strong too . I went to play bastkeball with my friends yesterday eneningevening . I received a China Airline ground attendent first interview letter ! they tried and tried , and never gave up . so I need to use mass transpotation or the attendant shuttle to get to the airport . But I enjoy a feeling of relaxation and also there are many field for vegetable and rice paddy in neighborhood . The highest temperature is 23 degrees . New students and their parents took pictures in front of the cherry trees . I am a University student . By the way , I have been interested in Spanish since before I entered high school . It 's nice , because it was made so that we can learn Spanish for 30 days ! But I do n't believe it , because I can not speak English very well even though I have studied it for long timeX ( Then she answered that yes , I am a sleeper woman . She is coming next Summer to learn / study Japanese . For example , Micheal Jackson appeared in my dream last week and my house was broken into by a kind of stalker 2 days ago . I still remember that it was really funny , but that 's all I can remember . The book so much influenced me so much that I have decided that I want to change my life too . We should n't label it right or wrong , but explore it in depth . I want to improve my English writing and grammar . There was a terrible typhoon . But even it is difficult for most Japanese to take more 7 days holiday . My neck , shoulder and back hurt then and I 've gone to the hospital four times a week since then . I want you to pick up this tweet . Because they left the station while in these days . . . I ca n't understand how these two sentences are different . I joined the workshop of Hippo activities . We all read the conference 's contents of Miss Suzanne about multilingual acquisition . This is the first time I know there is such a interestig website , and I am a chinese student . And they 're my favorite . I saw `` Billy Elliot `` last Thursday ! Sometimes I could n't understand the pronunciation . Hello everyone , I 'm a new member of the lang - 8 community . I find this site interesting because not only can I learn English , but I can also learn Korean or Japanese . I 'm a student of Nanjing University China , my English is not good although I have been studying for 3 years . I 'm working at a cafe which is named `` Saru - cafe `` ( meaning `` monkey - cafe `` ) . But we have to work very hard because this shop was just opened 1 month ago , so we can not give this shop a bad image . You know what I mean ? My breakfast was bread and a cup of coffee . Set the glowing stick in an incense burner , flower pot , or other nonflammable , heat - resistant container . Beginning to write blogs ! ! I 'm really happy but I 'm still . . . This morning , my teacher told us about her daughter , it made me cry . It is a very exciting , thrilling , and heartfelt movie ! My name is Junichi . My best friend let me know about it through his way to communicate with people . I had been with people who make others feel exhausted with those sarcastic remarks until I met him . I do n't mean only through relationships between a man and a woman . Being sincere anytime is the most important thing for me now . Recently . I heard the second typhoon is hitting today . I wonder if we might / will have many typhoons this summer . Study listening , speaking , and writing for 30minutes every day using the English - learning magazine `` Studio Classroom `` to improve my English This custom seems to originate from the custom during the Heian period ( about 1200 years ago ) , where the nobility in the imperial court changed their clothes on this day . However , if I pass the exam , there is a big problem there : finding employment . Ordinarily , employments for new graduates are held in a period that I am in a foreign country . I had a fever at midnight last Wednesday . Now I 'm trying to dictate what you said though , sometimes I notice that I do not understand . I should have concentrated more in our class ; - ( I was congratulated on passing the KAIST graduate school . I 'm guessing his asymmetrical hair style will come into fashion soon ! the visiting lasted only five days , but it was still meaningful to me . Tomorrow my vacation begins . Korea ( actually not just S . I do n't like that Koreans get their political education about Dokdo from their childhood brainwashing . A Weird Trip I really did n't enjoy this trip , it was weird . I stepped on the brake and stopped . He works in Taiyou no ra - men ( = ) ( noodle ) . He is very powerful ( ? ) man . Cigarettes are very easy to be addicted to and difficult to stop . I often bought real milk when I lived in Japan . The May Day vacation is from tomorrow to May 4th . I 've prepared the travel for us such as searching for good restaurants , buying tickets for the aquarium ( which is the largest aquarium in Australia and is near my flat ! ) and so on . Resisting immediate instinct can help improve my future . I like Argentina very much because they have a lot of stars and they can show us spectacular techniques and I cheered them on in World Cup 2010 . However , I am Japanese so I definitely cheered on the Japanese team . No . 2 , some cruel commanders or politicians appear in each work , and they definitely order heroes or heroines to do cruel and almost impossible missions . When I was little , I watched the Gundam series as well , but even women and young boys easily die in each work , so I still remember , I finally stopped watching halfway because of depression lol . If I become able to speak English , I want to watch movies in English . I want to make friends speaking English . I want to go to a foreign country and I want to know their culture and eat traditional foods of that country . From then on , I often listened to American hip hop . The university in Tokyo / Tokyo University is one of the most famous colleges , and most of my friends are very good at English . So please let me know if there is any incorrect grammar or simplistic descriptions . One night in the hotel during a business trip I spent one night in a hotel in Fukushima for a business trip which was far away from Kyoto . I carefully chose a hotel at this time in order to have a good weekend . Absolutely not ! I spent to a lot of time studying grammar , but I forgot so many things . I am 18 years old . I always go to University by train . As you know , Easter is a Christian and Jewish holiday . We celebrate the death and resurrection of Christ , while Jews celebrate the Hebrew exodus from Egypt . In order to save money I decided to asked to my parents to receive some books I wanted to read for so long ( I 'm also a little chubby , thats why I would rather read a book than eat chocolate . . . ) : D Yesterday I bought them . I live in the USA and I love the English language . Who can help me ! ! Also , I want to make many friends from foreign countries . I have to perform a presentation about us diplomacy and write a paper about the same theme . A fall of seasonal snow gives promise of a fruitful year . I am determined to try to write shorter passages from now on . The result of my medical check up , is that my stomach had no problems . Wish is most commonly used in hypothetical situations . So , you should keep a balance between work and recreation . At work , every day you can spend at least 15 minutes keeping a detailed diary of what tasks you do and how long you spend on them . It is widely known that there are parents who are addicted to gambling and neglect their children . I hope the Japanese government draws up more stringent laws against gambling . I 'm a beginner . Because I 'm afraid I 'll open a package of Karigane Kuki Cha , I looked around several shops , but I was n't looking for anything in particular . Their talk is so funny . It is a very convenient cooking tool . The course cost was only 500 hundred yen . some interesting things . Learning English alone is already hard for me . It is my favourite item of clothing ! So I 'm very sad . . . . Two small rice balls , an omelette , two steamed meat dumplings , boiled broccoli and tomatoes . I answered my boss I 'm your `` right elbow `` or rather `` right arm `` . Now I am happy to be with my family , and close friends These sleds were my birthday present from my parents . Today , the weather is rainy . . I ca n't understand how the weather turned so quickly . I think that the diary mabe have much mistakes . so I decided to practice a lot of English in a variety of ways . Today I learnt something very disappointing in the news . Currently , I 'm a senior in my university , and my major is Contemporary Culture ( like Cultural Anthropology ) . My english is like a child 's , so I will just describe my day a little . The promoters are not associated with the government or any national organization . They are just private space enthusiasts . ( suggestion ) Recently , I 've been training for a full marathon of 42 km . because all of the whole sentences are ( in the ) past tense . Do you know `` INUYASHA `` , a Japanese anime ? A long time ago , there was a half daemon , half person , named `` Inuyasha `` , and a priestess ; who loved each other . But they were trapped by a strong daemon and the priestess was forced to seal up Inuyasha . They started a journey together to defeat the strong daemon who made the priestess seal Inuyasha . Maybe it will help me to make a lot friends and to improve my English writing . I live in Hokkaido , Japan . It 's a northern island of Japan . I 'm interested in traveling abroad . I 've had great experiences in these countries . Though my English is n't good , I think I would like to make friends ! From then , I bought almost all of her released albums . I really enjoyed her performance ? ? ? . Today , I attended my English class performed by our sunny foreign teacher . There are a lot of podcasting programs you can download free of charge . I appreciate you visiting our website ! ! I can introduce traditional culture . Last time , I mentioned about my undergraduate days . Actually the women 's college which I graduated from was in Kyoto . It is a pretty historical and mysterious place . I heard that Kyoto 's central city has been protected by a magic square . But actually this magic square is used to hold monsters in . someone beetles nails at Kifune - shrine . never go and see the people pounding the nails nails at Kifune - shrine . I was really jealous when I stayed at my friend 's house and saw his family . I feel like I wanna be one of them instead of going back to my country , Japan . There is nothing I want to own aside from a true family , unlike mine . My parents sent me a pearl necklace and earrings . Welcome to Lijiang ! I lived Canada in april . Other information says that children who have imaginary friends may have advantages in terms of language ability and other intellectual functions ( abilities ) . There are many restaurants called Carinderia in Philippines . I LOVE CARINDERIA . They were about her name , age , what her favourite animal is , and so on . I suppose that this is a difficult problem . I found out there 's a twitter account for Toastmasters International , for the members of Toastmasters . In this sentence . `` I 'm sitting behind my work desk and enjoyingthe beautiful weather outside . `` I think , that I ca n't say `` enjoying `` , because its present continuous . Maybe I have n't had enough patience . Broadcasting companies are providing their TV programs through the Internet . It will be an important year for me at the meaning of exchanging my life . Someone help me ! I was impressed with the fellow phrase written about Google co . I ca n't understand any of the news broadcasted on CNN . If I did n't hear about this method , I would n't have But my writing and speaking skills are under - developed . I hope Lang - 8 helps me get some chances to improve at writing . First , I 'm going to vote and then enjoy strolling along the banks of Sumida river . It will be lovely Sunday . Christmas vacation period When last I heard their soothing chime . Within the tomb now darkly dwells , That tuneful peal will still ring on ; wow ! `` Death note `` is so wonderful ! And it will be two posts : english and Japanese ( because I should learn both of them ) . But in September , I will go on a trip to Hakone with my girlfriend , Fujiko . With it , I can talk to my colleagues and clients and send e - mail . I learned about this website from a friend . I decided that it 's a great opportunity to test my English skills , while at the same time helping others who need to improve their Chinese . But it 's too difficult ! If you click the address above , you can see a pregnant woman posing for a nude photo . If your wife were pregnant , would you like her to pose for a nude photo ? If you were pregnant , would you like to pose for a nude photo ? I feel it is embarrassing for me but if my wife really wants to do that , I will not oppose her . In April , I have to work like a dog because of the settlement of accounting for the fiscal year of 2010 . But people will remember me deeply . I rethink my current problem . Another friend said that she was too lazy to do her homework and mentioned that she can wait to do it tomorrow because she can turn it in on friday he he . The last friend I was talking to is from Japan . She is really nice , too . She is polite and when I chat with her I feel warm inside . However , it 's a good thing for Japanese travellers and a bad thing for foreigners who travel to Japan . Cheerily ! ! ! After reading this article - - - What Life Means to Me , I learned more this great American writer and I really admire his bravery , perseverance and diligence . Although he finally found out the upper - class is not as good as he imagined before and then he decided to go back to his spiritual paradise ; however , he still achieved it . He is another good example of ' ' once you believe it , you will achieve it . ' ' He taught me people should pursue the truth and what they want deep in their hearts . After several times of failures , he began a frantic pursuit of knowledge to become a brain ? merchant and then he finally made it . Bran merchant ? He read a lot and wrote a lot ; he really was a diligent writer . I have no exact answer now , but I will try my best to be brave , to be persistent , to be diligent and to live my life . I was the youngest then all of us , but I could n't play well . First writtingWriting She will go abroad to continue her studies . But I was very satisfied with the bloom and after about an hour I returned to my house . I wonder if I 've got some illness . Recently I really want to have macalon . ( macalon ? ) Both street are lined with department stores , high - class boutiques , galleries , theatres , and many other trendsetting shops . C : Is there a life lesson there somehow ? I lost her strength and cheerfulness a long time ago . And I was somewhat ashamed that I never cared much for anime , because I thought anime was something that only children and geeks watch . But from now on , I need only 20 minutes by bicycle ( to my knowledge bicycle wo n't be crowded ) . Hobbies and Interests But nowadays there are many ways to thank mom . I had to do a lot of laundries , to make 3 bid meals , to clean up in wide rooms . I failed the interview . . . Two men were waiting for me , and the messenger was there ( too ) . I forgot to write a diary yesterday . So , I am going to write a diary about a thing that I did yesterday . The less I had was for forty five minutes . I have a question about an English expression I heard yesterday , which has nothing to do with YOGA , I would like a naitive English speaker to answer this . My question is : what is the difference between `` I know her . `` and `` I know of her . `` Anyway , I think I will have to stop thinking about it and concentrate in order to get at least 580 points . This will be the 1st time I take this exam , but hopefully , I will pass it = ) Fingers crossed ! I could try activities that are impossible in usual days . Playing golf in an uncrowded course . I had a lot of time to think about myself and my life , family and job . One week has passed since the great earthquake . I learned this word , Itchy and Scratchy , from The Simpsons ! But because of I wanna create something new , 2 years ago , I watched the `` Club World Cup `` finals at Yokohama . Writing a diary with English is not easy for me , But I 'll try it enjoyably . I have thought about systems engineering , But the thought of staring at a screen and staying behind a desk is unbearable for me . I think it was anaemia or an epilepsy attack . There are two guys who came to the company 3 weeks earlier than me , and we are a team that came to China together . As if by magic , even though I was gloomy and depressed , I became happy after changing my hair . The air is dry in Japanese winter , and even worse , Japanese people use a sticky nylon towel when washing their bodies . Do you like coffee shops ? Today I went there with my friend . We do n't have many tall buildings and it 's not always crowded . I 'm in my last year of college . What should I do ? I like `` pasta Arrabbiata `` and `` pasta Carbonara `` . If she writes 1 script , she gets paid 50 million won . I do n't think there is no value in enjoying friends . Could you tell me the best place to visit in LA ? These days I have plenty of work . When I was an elementary school student , I was subjected to bullying at school . One day I listened to this song on a radio program . I think , a year ago , had felt like quitting . I was sleeping until just now though . . . I played Frisbee , ball and hide - and - go - seek with Rin in the backyard . When I called my mother , I pushed my patience to the limit , but I broke down & cried at last . . . My mother just listened to me kvetch & and encouraged me . Actually , I met her last month in Vancouver . Fortunately , my family and friends encourage me all the time , so I can get up the courage to find a new job , continuously submitting resume , attending interview . I went scuba diving in WAKAYAMA . I got lectured about a license for scuba diving including how to use a camera under the sea , how to explore the sunken ship and how to dive deeper . Russian animation It 's a cloudy Tuesday morning . The door of the classroom was locked though , maybe because a group of students were presenting . Public speaking Tonight , I attended a public speaking club meeting last winter . I think that Communication is the most important skill for living in society . Many kinds of people are enrolling in the club . It is like a business people , college students , foreign residents , retired people , and house wives , , , , , , , ( but I will not be blackberry or Mac pc user . patience was stronger than the tiger 's . Tokyo tower is a symbol of Tokyo , the light was turned off since the earthquake . The stricken area is very hard to live in . There is no Water , no electricity , no gas and no food . Okay ! Good night and thanks for reading : ) Today I had a enjoyable class . With abundant experience in clamping down smuggling , he shared some practical techniques like how to recognize a fake LV bag , and distinguish shoddy China mushrooms outwardly . It destroyed many things , buildings , houses , and so many peoples ' lives . At that time , I did n't know how awful it was . and at the same time , I saw japanese people have great , respectable manners even if they are facing a crisis . Actually , I do n't know how the Japanese have grown our great manners , but there is one thing I 'm sure of . I will go to a dermatological doctor near my home . Boogie pop unknown This the latest in this series . I have a lot of problems to solve at work which happened one after another . I am very glad to be here for two reasons : I can find many friends here , and I can improve my English writing ability . They were photos of their graduation ceremony . Thank you for reading my composition . When she first saw the present , she slapped and kicked me many times in front of our common friends . Also I did n't know why stress , intonation and rhythm are so important . I just purchased one book and went home . I will cherish relationships with students no matter what . I think that If I can speak in other languages I can find a good job more easily than if I only know how to speak Spanish . First day I met new people in the student 's residence , a lot of people came from other nations such as Brazil , Korea , Turkey , Germany , France . . . After a long contemplating , I have decided to do a short business course at an institute in town , starting on Monday . university cooperatives in the south asian region . Nice to meet you , everybody ! English conversations . First , I really would love to go to the Salvador Dali museum because I 'm a big fan of his . But the attempt by the government to prevent terrorism before it happens may possibly infringe our freedom of thought . Futhermore , if we allow the government to monitor our private life , we may not be able to trust our government under the strong surveilance . At New Year 's Eve many of japanese prepare for a good New year . By the day we prepare a new year 's dish , clean the general house and write new year 's postcards . I 'm studying english and german . I wanna go study abroad . This month , Haruki Murakami , one of the most famous Japanese contemporary novelist , published his new work `` 1Q84 `` and , as I anticipated , the book caused a huge sensation . I believe so . At first , we watched the DIU program . The people to be happy are you and I ! I think , photo can say more than sentence and can tel something which it ca n't explain with words . I wish everyone a merry christmas . I 'm wondering how to feed it ; if it could be hactched ; can someone tell me how to keep a gecko ? In severe cases , hypotension , dyspnea , loss of consciousness , cyanosis could be observed . The time just flies . I am from Taiwan . Has anyone heard of this country ? I am glad that I found this interesting website . There is a custom to eat sushi rolls on that day . There are many things to see such as mysterious stones , ancient tombs , very old temples , and very old shrines . The first picture is the ancient tomb of Umako Sogano who was the strongest minister in Japan at that time . The second one is a mysterious stone . So they work a little and , after work , some of them study for pursuing their future career , and others just enjoy their hobby . At the end of April , I came to Hawaii to transfer to a university in September . So , I hope my writing gets better through Lang - 8 and I make a lot of friends around the world . I 'm a Japanese girl and a student . 4 paprika The taste was OK and I think it is healthy and good for diet , because of not using oil . Last week I bought / purchased a personal computer . I saved money for almost a year in order to buy a new personal computer . It was my first experience . According to statistics , if this experiment goes on , the most beautiful woman in Italy would occur after twelve times . So I went to the supermarket this morning . That 's why I 'm studying Arabic . I hope I am going to get better soon . The teacher showed many pictuers of the park near the school , such as `` adumaya ( ramada ) `` and `` hujidana ( a wisteria trellis ) `` and asked how they are used . For example , there is a large park near his house . The teacer asked `` Why is there a trashcan ( or , garbage bin ) in the park ? `` `` To put my gabage in it , `` someone answered and everyone nodded . Of course , I could n't answer the question either . `` You put garbage in the trashcan , in order to prevent blind people from stumbling and falling . `` The class was valuable not only to students , but parents like myself . I heard that there is a very big burger in Lotteria . It is a famous fast food chain in Japan or Korea . But I 'm little nervours because of my communication skill in English . My friend who runs his own design company asked me to make project management of the fashion brand project . Nowadays it is said that global warming is already happened . Recently I met various scientist to asked about it . Many scientists lie to get research 's money or I am thinking what should I do to save our children Why does it sound unsophisticated if I put everything I want to say into words in Japanese ? I thought . What should I write at Lang - 8 ? First step in the learning English First step in the learning English and I hope this internet service can help me in this interesting subject This will be my first trip after I got my job , and every month I 'm putting a lot of money in the bank . I want to say `` thank you `` to my lang - 8 friends . Thanks for your help ! ! ! One day , he found a mouse in his apartment . I decided this year will be different , so I 'll try to take the TOEIC test . The training lasted from Tuesday to Thursday . How beautiful the sky was ! It 's awful . Another thing is that my friend and I were in the middle and high school classmates , but we have n't been together for 6 years , before I came back to Qingdao . I 've watched ' Samanta Who ' . her house ' I hope someday I can watch all english programs on TV without subtitles and rewinding . The bad quality is cheaper but I think it 's not always the right choice . She made two different types of salad and then cooked some very tasty spaghetti . I got to know her through my teacher , who teaches tea ceremony . Fortunately , I have several friends in their 60s . When I went through a path to the Teaching Building and I saw a beautiful scenery . Anyway our school have this scenery everyday during the winter . Even though I can read and listen to English , it is difficult to write in English . Listening to English is easier than speaking it . I went for a lunch with my colleague at Chinese restaurant near of my office . It is my first diary . it 's not acceptable , so I told myself to score 730 or more on the next TOEIC test in the end of December . Although I only have about 4 months which I can use to increase my score , I think it 's a good chance to improve my English effectively . It is a prevailing sport which spreads in every corner in China to the point that we call it a national ball game ! I can get a sense of achievement in this process . That includes shaping their nail , removing cuticles , manicuring , repairing nails , and nail art . At about 9 : 30am , my homestay mate and I went to my classmate 's flat because we there was a christmas party . There were about 14 people from the same school but from different countries so we spoke in English . I think the party was good for us . At today 's party we prepared a lot of food . Sakiko taught me how to make muffins and she also made a pizza . Other people brought wine and juice . We chatted a lot . Today was a very good day . Today , I taught how to apply makeup to a younger member of my club . Furthermore , _ I was praised for my posture at a career fair . Since I went to senior high school , I have been crazy playing basketball and paid much attention to the NBA stars , such as Michael Jordan , Kobe and so on . I heard from my friends who said `` Granville Island was fun ! `` So I went to Granville Island today . Thank you very much for & nbsp ; correcting my sentences , I really appreciate everyone 's help . I think we still feel the cold on the surface of our face . . When most japanese people speak to someone who is older or they have met for the first time , they usually use the honorific . As you know , there is no way to know the answer and nobody can tell the truth . But as far as I can see , most Japanese people are scared of hackers . First Diary See you next diary ! ! ! ! I need to solve a lot of mathematical questions and find time to study to the others subjects . The farmers could get no clear explanation about their animals and it 's very unfortunate . This is my second time writing a dairy in English , which is very scary and annoying to make mistakes . I want to improve my English . Recently , more children like to eat fast food because they find it delicious . Although , fast food is very tasty , we can not often eat it because it is unhealthy for the body and causes conditions such as : obesity and high blood pressure . I went to Gotenba Outlet mall with my friend yesterday . You need to do a lot of training with skis on powder snow if you want to reach the same level as you can with a snowboard . The Fukushima nuclear power plant had supplied the city of Tokyo with electricity . To learn about her character , I tried to see a interview on YouTube about her but I could not understand it . The next day , I felt sick and knew I had a fever . Do n't go to a hospital or clinic directly . Second , If you are diagnosed as infected , stay home for 10 days at least . `` Doc , I know I 'm OK , but I have to see a doctor under company regulation . They 're a waste of test kits and Tamiflu . Would you prefer that I send them by e - mail or conventional mail ? This is first time I 've had to write in my journal since my son 's two week spring holiday began on March 20 . If possible , I want to study abroad so I hope you guys will help me have good writing skills . I had saw the foreigner who imitate DRAGONBALLs character Gokuu . I was glad about the foreigner who was completely absorbed in Japanese culture ! I was tired . Also drinking and eating under the cherry blossoms . I think most of the people went away to enjoy a vacation . So , I am relaxing now . It was slightly rude of him , was n't him ? Hope everyone can give me some suggestions to improve my English . I just pretend to be happy , cheerful , and positive becuase I do n't want to reveal my real personality to them and make the mood unhappy . Anyways , many friends misunderstand me because of what I show to them . So , I just want to say to them that the things outwardly shown to you are not everything . Do n't be obsessed with a bad side . I 'm depressed with only one bad thing happened to me . I 'll be moving on October 24th . I 'd like not to watch some TV programs but . . . In the afternoon , I went to class and my teacher was so angry at my classmates for being so naughty . I told my teacher that her face was so perfect , especially her smile . First of all , the developed city in Malaysia is metropolitan Kuala Lumpur . You can find a lot of churches , temples , mosques and Indian temples . Malacca is a historical place which was colonised by the Portuguese . It is a very cool and humid place where the temperature can be as low as 17 degrees Celsius . And the theme park is fascinating with its roller coaster . the standardization of wages . However , it is very difficult for me , because January is Due to the fact that their faddiness , I was kinda worried about us going to that resturant because what they carry is very Japanese like I mentioned at the beginning ! So , I want to ask you how I should deal with it . Recently , they have appeared in dramas , movies and on the radio . They fought for it , and a very skilled bird caught one piece in air . I know he 's only liked in France and Poland but seriously , he was a great man . A good friend for me is someone who realizes my hard or happy mind . They serve very super strong coffee . And thanks to the caffeine , I could n't fall asleep till 2 a . m . I want to buy a flute or a piccolo . That is for the French horn ( with the piano ) . Last year , I arranged this song and played it with my fellow friends at a & nbsp ; concert . I 've chosen a healthy lifestyle , which consists of early and fully sleep , and yoga and slow running . She nodded and said , `` I want some pineapple . `` There are people at the conference who have good ideas for society in their mind and they can explain these ideas to everyone in English . I guess they would need to good mind be smart , good at public speaking , knowledgeable , and have some experience in the field for their presentation to be good . Hi Justin , I 'm your biggest fan Kate Min . I 'll going to watch the movie in April , and if you come to our country I really am going to your concert . We grilled pork ribs and shellfish . I did n't say a word . My friends called me , but I was getting ready for an examine . About one year ago , I entered the university . I do n't like the `` TSUYU `` because we do n't enjoy playing outdoors . Besides , to my surprise , my friend also had her hair cut ( looks like me ! ! ) yesterday : ) I have learned that what is important for a culture to have various aliases . Regarding my recent situation , for a long time , about 6 months , it feels like nothing of value has happened to me . I am a lucky boy with so many good people around me , are n't I ? BDI , the most important figure for maritime economy , has fallen down more than 90 % . Naoto Kan , the Japanese Prime Minister resigned yesterday . Banri Kaieda candidate for the next Prime Minister election , so some people say that the next Prime Minister will be Mr . The population research result showed that Mr . He can speak some Japanese words . get him interested in Korean language ? There is something haunting ( in ) my mind . Some pest control staff came in and began the slaughtering this afternoon . People say , winter is the season in which people put on weight the fastest . Do you understand ? What a coincidence that they both break up are not perfect with their former lovers and have the chance to get along with each other . then Finally , they find they are the true pair . I 'm interested in Barry Manilow 's music . There is a special exercise ( ? ) in Taiwan called fishing shrimp . They can help children improve their language skills . Maybe because of the differences of our culture . . . . ? ? It rained during the latter part of golden week . By the way , are there long holiday like golden week in other countries ? Today , I went cycling to keep healthy . I am a little bit stressed from my work . However I am not used to writing a diary . I work at an insurance company . Please see Japanese people 's power and cheer for Japan . Lucky ! I suddenly remembered a family living in Australia , that I stayed with for only 1 week , about 8 years ago . They remembered me . But we have drifted apart because we have moved and changed jobs . . . I think I can look for my lover among the people I meet ! I bought Mac eyeliner at Takashimaya . Anyway , it was really exciting when Choi Min - sik assembled the puzzles he got step by step . At this time , I 've also become hungry and sleepy . I am practicing English for one year . I want to speak to people all around world and make many friends ! : ) In this fair , lots of EKIBEN from all over Japan are gathered , so it was difficult to decide which ones to buy . I will share these with my husband . As the test aims at business people , the words and content are slightly slanted towards them and the field , she said . I watched the anime of Detective Conan yesterday . Playing the guitar I like playing the guitar . I have a gut guitar and an electric guitar . So , I usually play classical music or Japanese POP songs with the electric guitar ! I think that I should play the guitar everyday , but , I only play it two or three times a week . When I watchYouTube , most people play the guitar with very nice techniques ! After much practice of playing the guitar , I 'd like to upload my video someday . . . G ' morning . I was working on my thesis which is about the communication of rock music in china . I kept the music - box on playing classical music . There might be something I missed in reading this email . Do you think there is anything suspicious ? But I do n't usually do farmwork , so I was exhausted . I never understood the correct application of the word : actual and / or actually . Now , I 'm a fourth - year student , my English is now clearly better than it was , but I still ca n't talk fluently , or at least without mistakes . I could finally come to this site a few minutes ago . we met in the Phillippines , when we were on vacation . It 's first time for me to go there , and I am looking forward I want to communicate with them by speaking Korean . So if you are single and watching this video , dont despair , hopefully you can get a girlfriend too . G : Are you an extremely distant relative of his or something ? You 're here to tell bill he 's kicked off the insurance because he 's too fat ? Bill : Hey Cassie . BGF : No , Why is it so hard to believe that I 'm Bill 's girlfriend ? B : excuse me , Sir B : see honey I told you greg 's a good guy . Is n't he awesome ? G : I dont want to think about your good stuff bill ~ or your bad stuff , really any stuff , that , that involves you . It 's not pronounced like the word `` go `` . `` Go `` is pronounced shorter than `` go `` . It got popular in Japan as even Shougun were once very addicted to it . A long time ago , when I was a student , I studied English for a university examination . It was unnecessary in my daily life and for work to speak English . So , I used to go dressed up as a cosplay ( costume play ) to the events celebrated in Madrid about comic , manganime or japanese culture with my friends . This character is a boy , so I am going to have to do something to hide my breasts ! Everyone sitting around me did n't know it as well , so he was very surprised / shocked . . . : D There are rice fields as far as the eye can see . I love all the characters , but I especially like `` Gori `` . Help me + ) Her friend , Kumiko , took Mie to an Italian restaurant last Saturday . Mie felt happy having such a good friend and family ( Of course including me ) . I dislike rain . My microwave suddenly broke when I tried to warm a cup of milk this morning . It 's raining today it 's a interesting movie , in the movie have . two lives to choose ? the one , ordinary life , the person goes to school and gets married and go to work . Winning dancers performed in the TV Show . `` I was upset because you did n't show up yesterday `` This evening I went to the library to study English . The rain in those prefectures is so heavy that the evacuation order was put out by the government . And about four hundred thousand Nigata people have been evacuated to a safe area . If Prime Minister Hatoyama does n't propose a good solution to U . They had a good sport spirit that helped them all the way long through this competition . Congratulations to all Egyptians ! How to solve problems like Maria ? I 'm not interested in luxury labels like Chanel ( although I 'm fond of fashion ! The company will search for your ideal person . I just checked if you wrote on twitter . I stopped at a department _ store , and a shopping mall on my way to her house . Both English class and Chinese class are taught by native teachers . SHOPKO is one of the biggest shopping centers in Wisconsin , which is where I live right now to study English . Therefore , I decided to buy juice at Shopko instead of from the old vending machine . Au pair is famous in Europe , but America does n't seem like be . If anybody ( does n't care ) canto talk with me , could you help and advise me ? Today , I will talk about my opinion on culture differences . As I showed you , art festivals are strongly related to local people and contribute to stimulate the regional economy . Please try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs around you . The buildings and arts you see will refine your sensitivity . This time , I wrote and uploaded many entries on purpose . But I 'll upload entries and keep my ( regular ) pace from now on because I 'm ( now ) satisfied with this . I was bored with this . In China , we contact other people by using QQ , it is like MSN in foreign countries . It 's more difficult than using lang - 8 . I do n't know many spoken languages , and it is hard to use past tense , but on the other hand , it 's more effective to learn English . Aha , maybe I 'll use MSN more than QQ , haha . So , if you want to contact me , you can message me and give me your MSN address . Wow , another way to contect to people , that 's very exciting . In traditional culture , cigarettes are seen as a lubricant for personal connection . Bar and restaurant owners do n't want to offend their customers . today I started a photoshop class . I like photoshop So I was impatient , because I felt that I had to study English . I had to drive slow in order to stay inside my lane , because I went over the lines due to poor visibility . Although I know my new school will have many anxious moments , and things to do , but I think I will study hard . I 've always known that I do n't know get along well with my parents because we do n't have much time to talk with each other . Even if you do n't know it , you are able to access more detailed infomation easily than what I can explain I went to science world today , Because I like science and I wanted to watch the LEGO exhibition . Season 5 has 16 episodes , and one episode is almost 45 minutes long . Actually the storyline was really mysterious . . . I heard the final season is already available on DVD . I often try talking with foreign people . He said , `` Oh shit ! `` He should be more careful . I started having English lessons using Skype . and think in English , write daily in English . I promised my friends that we would perform ( ? ) in church . Our band is made of bass guitar , acoustic guitar , violin , piano , drums , electric guitar , jembe , cabasa , etc . . . . I think that if someone would help me get an English name , I would be very happy . Thanks ! ! Some people were running on the beach . Tomorrow at 9 : 30am , I will be studying at my university . We have had an 8 day vacation due to the Songran Festival . I had wanted to transfer to ICU or emergency department three years ago . I read the Economist , an English newspaper , everyday . I understand enough to hate some words that came from French . Today 's menu was marbled beef and beer ! I usually ask new students some questions before a Japanese trial lesson as below . - Make a Japanese word using Kana characters from the keypad . I am hungry now . . . . I am happy if we do n't have snow in winter because I do n't have to clear thesnow . ( It is tough work ) But it means the earth is getting warmer and warmer . . . . Let 's think about it together . . . I did n't even know what subjects I was interested in . My recommended drinks are loyal ( royal ? ) milk tea , green tea latte and cocoa . First of all , It helps people become friendly . After sitting for a while , They played the trailers of `` New moon `` and `` Avatar `` that will be coming soon in December . It is composed of 2 sections ; one is the Listening test , and the other is the Reading test . Now I have to decide which course I will go with . So I want to keep my diary in Chinese . Starting today , I will go to Kindergarten School to pick up my son . . We have been invited to the wedding of a church member , so we planned to buy a dress for that . When we entered the Okonomiyaki restaurant , we were shown to the seat in front of the big window . ( showed to the ? ? ) We could see the Doutonbori river from there . Today , I went to Kyoto for my appointment with a doctor . But I believe I can do it . Generally speaking , a man might well think , if a woman who he proposed to eat out with is hot , that it is better for him to pay all because a hot woman who a lot of men consider to be hot might be used to being treated by other men , especially middle class men who have lots of money . It is very important to keep trying be a good speaker , like a native speaker of English . If you talk with poor pronunciation , that would give a lot of stress to your friends who are native speakers of English , because they have to concentrate to understand your English . Does everybody take two days off during weekends ? Thus I take two days off irregularly . On the other hand , it is probably true that a lot of places are not as crowded as they are on weekends . During my break , a lot of my family members came to see me and I was really happy about it . Black music was center of my school days and I have respected a lot of musician . Stevie Wonder , The Root , Roy Hargrove , Earth , Wind and Fire , Cypress Hill , Erykah Badu , Jill Scott , Donny Hatherway , O ` Jays , Isley Brother , Big Punisher , Xzibit , and so on . . Actually , nowadays , I have enjoyed Latin music like salsa , tango , son , bossa nova . His rhythm is like jazz . Instead , I 'll send you a present spiritually . Hello everybody , my name is Stefania , and I am from Colombia . I went to Colombia last year in my holidays and now I 'm studying academic English to get ready to start fundacion in July . It sounds approximately like this : My family and other family members were there and many acquaintances came . This conversation benefited me . Kotatsu and Oranges It is to be a pilot who operates a passenger plane . My hometown is Okinawa , which is on the most southeast island in Japan . I had not been aware of this job , but as I look back on my life , that maybe has affected me . The first one is to be employed without any license . I 'm not surprised that Japanese won the award because Japanese tend to be strong in the animation area : ) However , I think it 's not easy for foreigners to get the award and I would praise his effort . Now I understand why this website is so useful . However , I have a big dream . It 's very expensive . . . , so I have to save a lot of money . Then it starts to smoke and catches fire . When I was in Ireland , I was in TV add for Smirnoff ice in 2002 . I heard from my modeling agency that there was a TV adaudition for Smirnoff Ice and I was successful in the audition . I had been searching for it for along time , but I could find it . So , I gave up trying to find it . I was at my friend 's apartment and he was watching funny TV commercials from all over the world . Then he was trying to search for it and within 10minutes he finally found it . So I look forward to seeing her again but they were busy to go to concert soon after arrived at my house . They left for concert before I left for work . When that happens , my pronunciation sounds very weird . First reason is I ca n't come up with next word to say quickly . But after an exercise consisting of one sentence . . I was able to understand that sentence just by hearing it . Also , I do n't ( do not ) mean I understood it because I previously knew the sentence . I will continue the challenge of speaking because it improves my listening ability . It was only today that I thought of this to improve my English . In order to make my class more interesting and professional , I spent a lot of time learning about the football game before the class . Mom raised me . Mom passed away in 2001 . Our place became quiet and empty . I will do my best to patiently write a daily diary in English . I would like you to point out and give me a meseage if I have wrong sentences . Please contact us ! For example , France - wine , Italy - Fashion , Taipei - computers . I am so happy that my parents finally agreed to make a cute kitten a Firstly , they do not know the correct use of mobile phones . But my mum always says , `` your mother language is not English so do n't worry if you make mistakes . `` My English class teacher is a foreigner . My name is Junho and I 'm korean . and I studied english , listening , reading , and conversation . This belief was formed and reinforced in childhood every time he thought he was expected to do better . um , , , the songs are very , very , very similar to each other . Group singer 's songs are very similar to other group singer 's songs . They should just love their singers , and it should end there . However , they should n't go as far as to write letters with blood . I want to Skype with a friend . ( She opens the door ) It 's the vet , dear ! He studies Engilsh very hard . Actually , I had brought my Japanese cellphone over with me which was already connected via a Canadian telecom company with a roaming facility . Anyway I asked some cellphone stores in Southgate mall to compare terms and conditions for me . My company has many Japanese people working there . I work as dentist 's assistant . People chase many rainbows but not all people can achieve the goal of their dream . Curry pudding It was `` Last Parade `` written by a / the former supervisor at Tokyo Disney Land . [ BLUE ] Maybe this book is not famous , but the cover is so beautiful . So I really felt relieved when I heard that their family survived the tsunami , though two co - workers sadly told us that their family had lost their houses . This area I live in has little risk of being affected by tsunami . Because a lot of aftershocks are still happening , and also the government announced that we still have to be careful of a big earthquake on 17th March . Plus , my work place is an old building and has gotten damage by the first earthquake . I went there 5 minutes early , but the only person there was a tour guide . There are 6 girls who came from different provinces , it 's very interesting . Sometimes we have a little trouble or misunderstanding , but most of the time we treat each other like sisters . What an extraordinary feat of human discovery Because it 's a basis for everything in our lives . I read that people could not travel freely except for religious purposes in ancient times . A new shopping mall opened near my town . As soon as we arrived at Nara station , we went to a Kimono shop to rent a one for the day . Recently , many people have been visiting here . Their adventures were met by many troubles but they never gave up . I think I 'm very sensitive to other people 's reactions , especially facial expressions , and I unconsciously try to read their emotions through them . I try to smile at them because I usually wear a blank face except with my close friends . so if English was n't the global language , I probably would n't like it . Although we did n't go out a lot recently , we went to the beach almost every day when I was in high school . It was 40000 yen , which was actually better than I thought I would get . I have an entrance exam the day after tomorrow . My friend said that Lady Gaga produced a perfume that has a very complex odor . I have so many things I want . ; ( everyone , have you bought anything recently ? He has a glove and some balls , so we decided to buy a baseball bat for his birthday gift this year . With an endothermic reaction , if the temperature is increasing , the reaction will progress rapidly and the yield also will be increasing . My name is Aleksey & I 'm in charge of my company 's website . The doctor ASCRIBED the man ` s death to drinking too much . Melbourne is a good place in Australia , I do really like to try the food from different countries . Especially Thai and Vietnamese food . They taste sour and hot , ( and ) I love them . The second thing I really like to do in Melbourne is going to the supermarket , That 's my life in Melbourne : ) I look forward to going to Europe ! First , I saw it in English with no subtitles . I always dream in former way , but one of my friends does in latter way , I heard before . hello , everyone , I 'm very excited to write my diary here . the most important thing is that I can share my experience with all of you and practice my English writing skills at the same time ! I should examine what has the most value in my mind , business , interesting fields or my girlfriend . I recently had wanted to get an MBA abroad and searched some information about it . I 'll endeavor to improve my grade point next year , but it 'll be difficult . I heard from my colleague that Korean children studies English speaking and listening well . Therefore , most young Koreans can speak English well . My hobby is playing tennis and travelling all over Japan . The purpose of my travel is to make friends in a foreign country . Thank you for your corrections & comments everytime . Thank you for your messages . We are going to Tokyo . So we decided about free activities . The picture is really nice but I ca n't show you it here because the picture is really big so I ca n't upload it on Lang - 8 and I have stayed at home with my nephew ( ? ) They are watching a movie while I am writing my dairy . My father just came back and I saw he bought some things for us . He likes to buy the sweets for my nephew and I heard my mum coming to my house , because I heard her motorcycle / bike . My family are ( really ) nice and I feel really happy to be born into my family . February 5th is the day that her new movie ' Kitchen ' will open . Unfortunately , her acting is not impressive and it is hard to see her improvement when compared with former movies she has been in . Yeah , we could go , but even if we did , we would not be able to see very a beautiful view . . . I set up the instruments for the English language school last night . As for me , I admire Tsiolkovsky . Tsiolkovsky believed that mankind would not remain on Earth forever . We 've spent several hours walking and chatting and then went to a restaurant . Recently , I read the ' Norwegian Wood ' wrote by Haruki Murakami . so I 'm writing using only my left hand . Why was I trying to stop the books from falling down , , , , I read about ' The Ica Stones ' on the Internet . The farmer brought it from the cave he found it in , and said there were a lot of stones in the cave . I need someone who lives in Sapporo and originally from USA . Tell me the right answer plz ! When you believed in that thought , what happened to you ? I want to make friends with people from other countries . Merry Christmas so , a greeting of Merry Christmas first ! But tomorrow is the last day of vacation this week . My aching waste has annoyed me for a few days now . People write about their life , what they like to do and their philosophies . They also post questions that they have , introduce themselves , share their love stories , their plans for the future , news topics , sentiment about videos , etcetera . I also give an oseibo to my relatives . Today was very cold . I have been waiting for it almost all school year In September I am going to start learning French . So in my free time I read a lot about my favourite subjects - History and Geography . The system of the plants was badly damaged . I deeply appreciate to their actions . And , I also appreciate the aid from other countries . And I thought this old man was thinking the same way . So the young man said ' I 'll crush you ! ' and he advanced forward with his motorbike . Fortunately the old man was n't hurt . Immediately the young man punched the old man on the head . Hello , this is my first visit to this site . I 'm studing Japanese to become a Japanese teacher . So today I visited here . There are a lot of smart and rich people or handsome and sociable people . But handsome and smart people are rare ! ! Do n't laugh ! Now ( Because of that ) , I 'm worrying about whether he 's looking at this entry . I also think that my friend gave me a chance to look at me who I am . That 's how I felt . I had ( some ) special moments there , especially the sunset at deck of Enoshima lighthouse I ca n't forget . ( word order ) Well , thanks for asking . I probably do n't know . I mean I think I know , but I am afraid I am the one who does n't understand me . I used to think night shift is scary * Following sentences are quoted from the book * They have come to japan for various reasons , but , for whatever reason , they have chosen to live in japan . But she seems to make people happy and gives power . It showed humanitarianism , love , faith ? So I was really disappointed with Dr . I was not an exception . My home and car is covered with snow . The snowscape is beautiful . When you order food , if you say you do n't want onions in your dish the cook will think you are too particular - and we are n't really considerate of vegetarians either . When I cleaned a keyboard , I found something dirty . I went out with my colleagues to a curry restaurant . Question : why the `` note `` is `` noted `` , not is `` was noted as `` ? On 4 November 1922 , Carter found the steps leading to Tutankhamun 's tomb , Question : Why the `` lead `` is `` leading `` ? I decided to help someone learn Japanese every time I receive a correction . Located in the middle of the Kyoto City and near the subway station , makes it really convenient . That was unbelievable . Tsukiji is famous for its fish auction and there are many street stalls . We can buy raw fish , smoked fish and salt etc . Cherry blossom is not only important for theentering ceremony but we use that as the place to drink alcohol . If you come to Japan , you will see the people who drink alcohol near thecherry blossoms . I hope to make friends with you . I appreciate him and wonder what 's going on . Furthermore , _ I see a man behind him is tryng to torture him . These days , I heard that some universities accept Enken 1st grade and pre - 1st grade as proof of language proficiency . I hope to study at ABC University as it has an excellent faculty . Also , they have the lowest percent in computer game downloads . Art students spend the most money to download music and videos , and almost 90 % of them have purchased music on the internet , which means arts students seem to be the most familiar with online shopping . The Mystery of Italy `` Why do Italians worry ( so much ) about details ? `` But I was suprised that there were so many graffiti on the walls , in the trains , Is it that way in Siciliy only or everywhere in Italy ? I hope to find out `` Why do Italians worry about details ? `` Italians are mysterious / a mystery for the serious Japanese . It is now midnight and I 'm writing this diary . Iced trees on the ridgeline were lit by the crystal clear morning sunshine . Actually we did not know yet what we would like to buy , but I know she likes to cook and read books . This is my first time logging into this interesting website . One day , her neighbor came to her house and asked to give him the ducks . I do n't have a car , but I think it is very convenient to use a car . Big domestic companies still want people who graduated from famous Japanese universities like Tokyo University , Waseda University or Keio University . In the market , everybody can taste some food , for example fruits or vegetables . He told me that he was afraid to be dropped from the board and drowned because they played on it . I study English hard too . Now I 'm working in an university as a researcher . Well , , many Japanese Teachers use direct method by which teaching Japanese by using Japanese only in Japan . But , I think not many Japanese teachers has experienced learning a language through direct method . They said `` If other plants shut down we could n't provide enough power . `` Today I baby - sat my two - year - old niece because my sister - in - law went to the beauty shop to have her hair cut . umm . . . . It was a test where I had a conversation with foreigner . Today 's box lunch is soy - ginger pork . Hello ! That 's why I study hard . My friends wrote a comment about my diary ! ! By the way , what do you think would be the best way to learn slang . I have a gift of playing music , but I have to learn another profession because of my parent 's expectations . But after this morning , there were a lot of things that happened suddenly . I think I am an emotional man . To be honest with you , I am going to visit Canada on Sept 24th . As you may think , adjusting to another culture requires so many things and time . Comparing to before , I think my English has improved , especially writing . After I come back to japan in December , I will resume writing essays here . This is my homework , I welcome anyone to correct it . There is only one regular bus service that goes to work . When she was walking along with a wall in her house , she lost her balance and fell to the floor on her buttocks , which caused the actual compression fracture . Because of it , she was hospitalized and diagnosed with bilateral iliopsoas muscle abscess . Children grow up quickly , so now she runs with friends ! First diary entry I have to do a lot of experiments and research every day so I have no time to do what I want . Last Sunday , he had work and I went to driving school . After that , by the time he mailed me it was already 7pm . I have just received a letter from my friend Jonadab . Thank you , Jonadab . Even during my vacation , my colleagues had been working and had sent me a lot of e - mails , my inbox tray was full of unread ones . Dear friends ! It was a bargain . Many things were so cheap . I heard that other countries are different . And now , the deadline of my report is coming soon . . . I saw `` AVATAR `` the other day . I ' m poor at English and German . In the show , there was a woman who brushed her teeth after eating breakfast . I forgot to ask you some questions earlier . I do n't have any plan to take a day off so far but I want to make sure just in case . I have many friends living in shizuoka . But , I slept in the bed and when I woke up , I did homework for cram school ! We ate lots of chicken ^ - ^ I like the landscape after rainny days . I like how it draws a smile on my face and makes me think of many things ? ? ? I miss my mother and my father , university is different from high school . I ca n't come back home often . I also miss my boyfriend . Next year he will go to America to study . If the time could go backwards . I would study hard so that I could go with him . For one thing , I hope the holiday comes quickly . But I am also afraid . . . because it means that he will go away sooner . More Wanted and Less Gotten [ * 1 ] Of course , it 's not the same with everybody . After all is said and done , would n't we just be primates ? I have a lot of work to do even at weekends . Yesterday I went to the library and borrowed a book about spoken English . Someone help me ! But , there is a considerable problem which is privacy . However , I think it is ok to not be corrected by others I am a veterinarian . I live in Osaka , Japan . I expect to enjoy studying English . existing outside the mind ; based on facts that can be proven based on your own ideas or opinions rather than facts and therefore sometimes unfair Ichiro , Japan 's most famous baseball player , is often said that he is excellently skillful at analyzing himself very subjectively . it is a very modern house . In her letter , she said if I would come to Canada , I could stay with her . I has never been to Canada , so I am very eager for my next holiday ~ ~ ~ ~ Greek mythology , classic myths , Norse mythology and Journey to the West . What I mean is , I do have enough time to read a book . Tonight we 'll sleep in the tent and watch the shooting stars hoping that the sky is clear of clouds = ) . I am staving , so it 's difficult to sleep . They have done a lot to help poor people , like adopting many children and they have achieved so many things . They have ambitions and clear thinking in their life . Next , stretching and simple working out . I met some students who came from America to my school and I talked with them . We walked through hallways , steps and food court . I was really scared because I could n't know where I am heading ? I was worried about my son , because he went to the hospital with his mom to have a medicine of polio . But , the pie was not delicious . I 'm staying in Dublin with my hostfamily and I have an Italian housemate . I am writing this to ask you something . Should I give up some tasks or put them to next day ? yuuta aka paris hilton . Our task was accomplished smoothly , and I hope that I can participate in the following lab work . If I knew about this , I would have said the first one instead . Could you explain about auxiliary verbs ? in a foreign hotel ! I had not driven in Australia before , so I had to be careful . All present day politicians should watch it . Seita is hero of this story . His father was a Japanese naval officer , so he was not at home but fighting at sea . ( I guess his father had already died in the war but his family did n't know yet . ) He lived with his mother and little sister named Setsuko . He was living in Kobe which was a big city in Japan at that time . Of course the American army bombed Kobe as well . When his family tried to escape from the bombing , his mother got injured by the explosions . Also , his house was completely destroyed by the bombing . His lifeless body could be seen at the dirty and gloomy Kobe station on the left screen . Many Japanese people who were in right screen completely forgot these historical facts , and they enjoyed luxury and busy lives in a big city . I 'm really , incredibly , absolutely tired now . Today I found a difference in the value placed on meals between American and Japanese people . But , my American colleagues buy sandwiches or a hamburger with a drink and then eat them at their desk or at the cafe space in our office . So , they prepared sandwiches and drinks for us and we continued with the meeting while eating them . American probably think the opposite of how I feel feeling . I think we should n't think learning a language is so easy . Finally my side was opened and I became free . . Since the 11th of March when the East of Japan was hit by a big earthquake and tsunami , three weeks have passed . She said that you can contribute ; money is OK and you can do other things like go to visit to the Tohoku district some day . Do n't neglect your gums , too . I 'm studying English . I think I can run now , but it 's raining outdoors , unfortunately . I was going to meet with my friend at about 2 o ' clock today but my mother called . I must help her do some things and go somewhere . I must cancel my appointment with my friend . These days , some Asian movies are remade by Hollywood . I think , for American people , the horror of Asian movies is kinda taste ( ? ) and fresh compared to that of America 's and its movies have a lot to do with difference of culture . In short , I got depressed with the lack and difference of story of remakes of Japanese movies . Please teach me your language . I heard a can of sardines was heartier than other sardine cookings . But today I heard that sardines were heartiest when they were canned . had been sold out at stores until recently . And could anyone tell me which is more delicious , an oiled sardine or other sardine cookings , if you know ? That was in 2007 , in April , and I studied English for 10 months in Grande Prairie which is in the north part of Canada . I had an incredible time and really loved my experience there . Ryo Ishikawa won the tournament by 58 strokes it 's a traditional and beautiful town though , near Roppongi . I am so busy these days , and I feel so tired . Because we are lacking in the learning situation . I began learning it recently . I can only hope that I can get a great improvement . We had a drink ( cocktail ) party with our coworkers . I could relax and communicate with people who I had not talked to before . As a chinese person , at any rate , we should be happy , because it is being held in our country , our city that we are familiar with . The ending is not particularly clear and we have to wait the sequel . I begin writing the diary in English So , I begin writing the diary in English ^ ^ The belated farewell party is to be held this evening . Actually , the farewell party is for a co - teacher who moved to another school last April . I was suprised and very glad that my friends sent me text mail to say happy birthday . I 'm going to study English every evening . every morning and every night , you will get beautiful skin . Applied for a passport I met my old friends in Kyoto Staying in Kyoto is very comfortable for our family , I don ` t have to care about radiation , blackouts and aftershocks . Do you know Cyril ? He marvellously returned a dead bee embedded in a 5000 - year - old amble to life in a jade market and cooked instant noodles with cold water . We decorated with ghosts , bats , witches and more ! First , we got together , and then we walked around to get some candies . She is 177 centimeters tall . I 'm 160 centimeters tall . So I decided to restart writing my diary in English . And then I went to work after lunch . 16 students have caught the flu in a class where there are 30 sudents . Unfortunately , I have a lot of chances to touch children and get viruses . I have to protect myself , so I wash my hands and gargle every time when I go back home . On this New Year 's Day , I 'm spending a pleasant time with my parents . Finally I hope that everyone has a pleasant time in this year too . Recently I happened to find that itunes has many internet radio station channels in its menu . Itunes ' list of is good , and almost all of the stations are now in service . So , I can hear many different music genres . I am 22 years old right now . I was 21 years old 3 month ago . . First , I must finish my report . ( Futon is bedding . ) I felt like I should take some pictures . Fortunately , I had a camera in my purse , so I took lots of pictures . Today in Korea , There was a strong typhoon . Because of their way of life they constantly need new things , but it stays practically the same : rock , wood and so on . Nowadays , there is more and more advertising about protecting our planet as a refresher course ( of paper and empties of anything . . . ) what ? It 's a wonderful city owning beautiful sightseeing spot and brilliant night life . I 'm 31 years old and I have been working at the same hospital for 12 years , Therefore I worry a lot about going abroad . . . . . The Microbiology department at Tokyo University has just reported that helocobacter Pylori , which is one of the causes of gastric cancer , makes proteins that camouflages human protein structure . Pylori injects `` CagA `` carcinogenic protein into cells in human body . CagA camouflages as pragumin , and then it binds host enzymes . As a result , it induces abnormal cell divsion of host cells . The typical place is in a shrine . Leisurely evening After eating , we went to Dante Coffee , and stayed until 9 o ' clock . After advancing to the second round , I was sure that Japan would beat Paraguay and go forward to the quarterfinal . I want my hair to be like Brad Pitt 's . . . . . is it impossible ? - _ - ; He said he wanted to go to `` Yakushima ( in Kagoshima ) `` My parents ' family are living in Kagoshima . They are registered by World Heritage . I bring news about two major satellites named the `` AKATSUKI `` and the `` IKAROS `` . The `` IKAROS `` is from Greek mythology . Obon ( japanese custom ) I believe that Japanese subculture , which includes anime , comics and video games , etc . , is a very strong industry in the world market because so many young people enjoy it . [ / BLUE ] The market size of Japanese subculture is bigger than that of other industries in Japan . I think the Japanese government should support the globalization of anime as a strategy for economic growth . It happened again . . . There was an earthquake of magnitude 7 . 4 on April 7th 11 : 33pm JST in Miyagi . It happened again . NHK is broadcasting that the nuclear power plant of Fukushima # 1 is alright but they are using diesel generators there . I should have separated them in two parts and I should have made it twice . . . I add it to tomato sauce or curry sauce as a hidden flavor . Because I am new , at first I was not able to do very much . I sat in front of the computer and smiled at my colleagues when they passed by me . Later , I squeezed out the excess moisture and topped them with some cubes of cream cheese . I think cream cheese really goes well with Japanese pickles such as cucumber and radish leaf . Lang - 8 is very nice system for people learning languages . The countries where I have traveled to are Italy , Spain , Cambodia , New Zealand and the USA . I 've been studying English and I have to translate the sentence below . However , I ca n't understand why they use the Present Perfect tense in a last line . I love the San Francisco Giants , because I think ' Great Defense ' is the best thing in baseball . Last year , the Giants won the World Series , so I 'm looking forward to this season ^ ^ Also I 'm sleeping ( ^ ^ ; ) Let 's alsotalk about Holmes , Robert Downey Jr . , Jude law , and so on ! Drop - outs and high school , college or university graduates account for about a quarter ( 23 . 8 percent ) of jobless youths in the age range of 16 - 29 . The problem of job placement for unemployed graduates must be solved . badminton . In my class , the best badminton player was my friend . and teacher called me and I was approached by the teacher . My friend had a baby last month . When I told her , `` I want to have some foreign friends ! `` I only have a few foreign friends on Skype , so I hope to make more of them there . A typhoon is coming close again . They are very funny , when I was watching I could n't stop laughing out loud . He is my fav actor . In Japanese martial arts including sumo and kendo , the practitioners can maintain their balance and respond quickly to opponent 's attacks by shuffling . Yes , it looks like a human face ! But I do n't know how to start conversation with strangers . What makes it my favourite thing ? Firstly , There are many interesting games for the PSP platform . It is now December 26th . It 's my great leader , former President Mao Zedong 's birthday . She has decided to take the shells which she foud home . My wife let them write it . Yesterday I learned about idioms . And now I know the meaning of some idioms . If you like , please teach me idioms . ex ) it 's raining cats and dogs ! Today our teacher gave us our own photo album ^ - ^ Though the price of plane ticket is not so much expensive compared to those of other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of taking visa is complex . I was singing unhappily , while other members were all singing very happily . . . Today I almost stayed all day in the library and read books , which made me happy . I hope I can visit Korea some day and experience the original culture . Prepare the presentation . I always think that I am not intelligent when I prepare presentations . I wonder if I will ever be a genius , but what I can do now is make an effort . Cherry blossoms But it was good to go to a popular spot for Cherry blossom viewing . Japanese spirit I guess the Japanese surprised many foreign countries . How could they achieve the growth ? They had really strong hearts . Our Choir conductor cooked delicious foods for us . It is my birthday soon ! ! My birthday is this month . But , I have not started studying Spanish yet . l felt sorry for these acts . It also tells me an important message , that the society has changed . As society members , we have a duty to prevent these sorts ofacts . Recently , I have been learning how to pronounce English words . What do you think would be a good theme to write about ? I had not really noticed that my father was getting old , but I saw a very shocking thing several months ago . Because summer is coming soon ! I felt an irresistable impulse to eat some cheese cake yesterday , and I could n't suppress the urge , so I went to a patisserie nearby . I know , I should n't have , but I just had to . The Mid - Autumn Festival is a family time . There was a very serious earthquake and tsunami in Japan . So , when I hear it in Japanese , I feel uncomfortable . The sight frightened and depressed me . I had to look for another one and walked a few minutes from the parking lot . because I tire easily since I got my night duty . And afterwards they will think about my approach to my boss . After all , tommorow is another day . It should always be a pair right ? All Japanese Beef Should Be Inspected I 'll try to review my past entries . I think that many Japanese people ca n't speak English . That 's why it was difficult to show us the dolphin 's and seal 's performances ! Some friends say that I 'm witty but not every time , because sometimes I 'm a little conceited , not because of my extreme self - confindence , but bacause I like to share my achivements . Concerning books , I read all kinds , but I 'm really critical with books without a good purpose or those lacking creativity . My younger sister cooked it , but it was not nice ( good ) . yes it makes me excited when I buy new things I get used to new appliances very fast it makes me excited because it feels different This is Jessie 's beautiful but sad song from Toy Story 2 . What do you recommend ? What is your favorite music ? What other phrases can you use instead ? I do n't think all Singaporeans are lazy . * Sho - chu is a kind of Japanese traditional sake , alcohol . One friend advised me that counting sheeps would work , but Another friend advised me , `` Imagine winning the lottery and imagine I will learn how to pronounce English by watching the American drama ' Friends ' . I will be able to improve my pronunciation , English skills and learn their culture . The first writing in a quite while We cook many kinds of ingredients like seafood , meat and vegetables . Deal with a hectic schedule next week I only have one in one subject . I live in Saint Petersburg . This city is the northern capital of Russia . But I do n't to go nail salons , I like to do it myself because I can create any patterns I want . Of course , I have served as a leader before , when I had group a project in college . There are many books which are related to leadership and my companies want applicants to show their special leadership experiences . So , what would be a special leadership experience ? Although jumping at the chance of becoming a leader is for some people second nature and very easy , other people have difficulty expressing their leadership style . I could not write a diary entry because I could not use the internet . Starting today , I will write a diary every day again . I 'm thinking of joining a English club that is held near my university . I do n't know why but the internet was really slow . The first meeting with someone for langage swap When I was studying , I could hear my parents laughing from next room . Leon drinks milk , plants orchids , and irons his own clothes Please try it . By the way , I 've heard that people who do n't live in Japan tend not to like eating octopus . Octopus is a sacred life , is n't it ? I also found out that my friend who was missing from the area most effected by the tsunami survived ! I was so sleepy when the teacher was speaking . I am interested in forest landscapes , and went everywhere in Japan to see beautiful forests . They were all the most beautiful forests that I have ever seen ! my hobbies I like adventure books and almost all films , my favourite plan is an evening at the cinema . I really like going to concerts and listening to music too . It 's a hard thing to remember so many words and sentences . Luckily , every Chinese student needs to take English lessons , and this is why I can speak English . Anyway , I 'm glad to see so many friends here . I was satisfying both my heart and stomach . At the same time , I of course know , I am not a easy woman to get along well with . Hi all , I 'm Midory from Hokkaido , a northeastern island of Japan . People are nice , beaches are beautiful , and Okinawa food is awesome ! Com Master which measures my Internet skill . Many customers are also better informed about procedures and precautions ( including confirming that their doctor is an authorized surgeon ) . So the short trip helped make me feel refreshed . Actually , I broke wind when you turned on the air conditioner . `` But If you read many books in a foreign lanuage , you can memorize a lot of words , even though you feel it is hard to understand it when you read the book . and Itook a blood sample fromeight people . because I really appreciate them . ( The correction depends on if it 's helpful or not . and I 've often made misspellings in Japanese . I just wanted to write English naturally . My main mission is to present the situation in Japan to our US headquarters . I have no confidence in my English , even though I 'm teaching it to children . Besides that I 'm planning to take the pre1 level of EIKEN this winter . This is a comic magazine that is published once a week . Nakata had an accident when he was an elementary student and he became illiterate . First contact When I was a child , there was a cartoon movie named Ikyu - san . However , I study English almost every day , and that might even be considereda preparation for . the test . Last year , I had a special memory in Au . Some of my friends prepared the dinner together , and then we celebrated that special day and played games . Nowadays , I 've come back to Taiwan and have already got the job . Some of my colleagues are almost 50 years old so it 's difficult to have the same interest . On the way to home , I was caught the rain My daughter was worried about her unborn baby . I was surprised and relieved to hear the news . I often see it . so I asked my month ( mother ) where the cat had gone ? My mother answered that the small cat was dead . My mother pointed to my son and said , your son killed the cat . At first , I do n't think I should have any concern , when he / she ask for assistance , but it 's becoming more and more frequent . . . I wonder what I should write some articles for my daily entries . After the test , I was depressed . Not because of the results of the test , but because I was disappointed in myself . Expensive Jasmine Tealeaf In particular , I like jasmine tea . It 's different from normal jasmine tea . It 's more expensive than any other jasmine tealeaf . We did n't talk much . For much of the time we sat in silence . You know Japan is a small island so many Japanese people do n't ever need to speak English and they rarely meet Americans . This is especially true in rural Japan . The world has changed the culture surrounding language aquisition , and of course in Japan too . It is also my favorite animation . Today , I introduce my favorite movie . I could n't review my former lesson , but I could take the lesson well . So I am booking lessons with them now , but I 'd like to book a new teacher who works within an online English school . It ` s unbelievable ! I want to say to all of you - if you want to achieve something in your life you must study a foreign language . in addition , I seldom exercise . I decided to start exercising regularly . I almost did n't see the movie because there was no one able to make the time to see it ( with me ) . - Woh kaunsi chhuri hai ? I just had a cup of tea ! It was very nice Moroccan tea . so I 'm looking forward to spending my 17th birthday in foreign country . But it is n't related to being a vegetarian or not . one of the private schools here in Thailand . It 's my heart 's desire to know English . Yesterday night , I drunk with my colleague who retired from our company last October . For example , how to work efficiently , how to communicate effectively with junior partners and my boss , and more . Hate means far away , and teruma means coral in Okinawa 's dialect . Did you have a experience that you could n't see the horizon regularly because of waves , and jump up from your seat like a roller coaster . He and his friends made cupcakes in the night because of White Day . but , it 's useful . Children are not good at language . The seventh personality is a optimistic , active and fast moving like Peter Pan , who wants to be a small child forever . He love adventure , he hates engagement or enforcement from other people , hence he will have many alternative ways for joyful living . This advertisement introduces the origin of this brand . If anyone can also introduce me to some interesting activities , places or stores to go around , I might not stay in my house and get bored all the time . Also , driving a scooter here seems to be too crazy as I might be the only one using this type of miniature vehicle and could easily get hit without being seen compared with huge cars . I started studying English when I was 12 years old Are they identical ? If you visit Kagawa , please eat udon ! ! ! The good thing about this , is that if you want to change weather you can just wait , or drive like 15 minutes and you 'll find a warmer or a colder place , which is kind of awesome . So , I make my living by the scholarship and savings . My weight is now 63kg now I 'm preparing for physics at university - there are no tests for entering this course , but I want to try for a scolarship so I must study hard . it 's very difficult to take , but I have to try . . . obviously , 12 plus 4 is 16 , and the 17th was Giulio , Anastasia 's boyfriend , whom arrived in the middle of the vacation and left before . He can crawl very quickly , and he can stand up while holding on to something lately . He is eating oatmeal and mushy ( mashed ? ) vegetables twice a day . If it is a successful YUINOU , you can marry eachother . It is a South African girl who is very hungry and thin , she finds water or food in the wild , but she ca n't take any steps because of loss of physical strength . I always talk out loud to her , I 'm being impatient with her , and I think she ca n't takegood care of herself . Now , I heard that sake is more popular in foreign countries than in Japan . underwent it recently , it 's hurting so deeply , when can I forget this and begin a new life ? I 'd like to say not to change the figure model , but some structural change is OK . A Japanese company announced that they will use English as the official language for their company . The chances of using English is increasing with globalization , so I think this is a good challenge for a global company . So it is urgent to raise environmental awareness amongst the general public and do something for ourselves from now on . Christmas is near , I will have three days off ( not go to work ) , as a friend of mine invited me to go their home . Besides , he has a lot of questions toask me about computer stuff . Maybe , I should buy the ticket tomorrow afternoon , because I 'm afraid that I will not get the ticket on christmas ' day . And I 'm studying Chinese . But my first task was studying , I could n't sleep in the class , so I decided to do homework quickly so that I had more time to sleep . That 's very interesting to me . This afternoon we had heavy snow , which looked like there was a snow storm in Osaka city . I felt so stupid when I found it in my bag after I got to my destination . I thought someone could have written a comment to my diary . I can watch cartoons all day and I do n't fell humdrum . The one I like the most Tom and Jerry or Mickey . I like the website . I really enjoy the website . Native people correcting will be very useful . The traffic was very heavy and we could n't move any further on the way . with no other choice , we gave up on the idea . So we parked our car and decided to watch it from the road . Finally , we found a good place place , but we could see only half of the firework display . In my case , a great advantage is being able to see that information written down because you can analyze all that writing and then answer it . So I decided to go sports gym constantly . At present I am able to go gym 3 or 4 times per week . It makes me feel worried due to traffic problem and so on . Maybe he has to write a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybe he just lost all his money . . . I even feel nausea when it is severe . They might be caffeine , chocolate , sugar , fruit , etc . It was the same situation as New Years Day . The cold stole my energy . I managed to get some vegetables and chicken and I hurried back home . I did n't check the expiration date , but it tasted good so I thought it was still OK . I am not good at writing English , so please check my English , will you ? 6 - PhotgrafingPhotography 7 - Editing anime and game videos I stayed in shanghai for two months . I communicated with many Chinese people . But most of them have n't ever been to China or communicated with Chinese people . He was a good and nice boy , I knew him from last summer . The day before the lantern festival , he told me he could n't keep his promise . He must have gone out with his father . But my hope did n't come true . I have learned English for 14 years since I was a junior high school student . I took the BEC ( Business English Certificate ) examination last year and almost failed because of the writing section . Ongirls ' day Japanese set up beautiful Japanese dolls . But the dolls which we call Hina doll are very expensive So we made very small dolls by a paper . I want to write my introduction again . I am studying at a middle school . Tonight I had some trouble with learning English , I asked for help from a lot of people online . I really appreciated that . Now I am excited ! ! Everything is going well ! ! So he knows about the differences between Japanese and American attitudes . He said that Japan needs to output more because the Japanese are not good at promoting themselves . The reason why the Japanese do n't have many chances to output is because our culture requires us to be humble . He said other interesting things , but if I wrote them all down it would take too long . It makes me frustrated . what I really need to do is translate my knowledge into experience . We are the black box that can change images into reality . We have no garden , but we have a little patch of soil between our house and the parking lot . Not only do I have to find the information about it , but I also have to make up the dialogue about how to persuade the client to pay by L / C . At last , when I had finished the dialogue , I also had to recite what I had written because my business english teacher said that we had to leave the draft papers when we were speaking English . Even though it as hard for me , I still wanted to try . I hope that I can meet the difficulty and improve my English level . Well , I 'm new here and am very exited to see how I can improve my English . I had used Lang - 8 before , but I have n't written any journals recently . The three clothesbaskets are already full . My major is business administraton . My father is a sincere public servant at a high school . My mom 's character is quite different from my dad 's . She is active , out going and sociable . He really likes playing computer games and listening to music . Thank you for reading my writing . and please kindly correct my work ~ : ) We call `` yakiniku `` , burned beef . Hi , I 'm a Japanese studying English . My Uranus is broken ! Perfectly flat ! it 's korean education . A Mysterious Cat I am very surprised that I saw the roof covered in snow when I opened the window at home . We like to go flea market because the price is not so expensive and there are a lot of unique goods . It takes about 5 minutes for her to dry them . Finally my toothache flared up today . I took a motorcycle to go with my friend , and he rode it very fast . Thank you for correcting my diary . We enjoyed talking about our favorite bands or singers for a while and I was able to get some infomation about them . They really enjoy listening to various kinds of music ; from punk or hard rock to classic so their conversation is very interesting . She is very strong ! My classmate was carried in her arms . I had often watched a TV show which introduces world heritages . Federweisse is only served at harvest time , and is in the early stage of the fermentation process . I saw `` Harry Potter and the Deathly Hallows `` yesterday at the movie theater . I think the store offers a great bargain . I often think that the latest electronics are so amazing ! ! When I walked around campus , I found a copy machine on the ground . I 'm going to my university to attend my classes . I would rather see DVD than studying . I was wondering what is the difference between `` He sure is fast . `` and `` He is really fast . `` But my hands were nearly touching her , and she bit my hands . But daytime was shining . I go to work by motor cycle every day . It is hard for me to write in English . [ Question ] How do you think languages around the world happened to become different ? Of couse , the hotest topic is foodball game , is n't it ? The period during which emperors lived there was at least 300 years ago . I 'll discribe the occupation a little . I prefer to read English rather than Japanese these days . We won the competitions ! & nbsp ; Next week there will be a last competition between last two . I have chosen ethics , Lithuanian language in level A , English in level A , history in level B , math in level A , informatics in level B , Physics in level A , Chemistery in level B , theatre in level B , Physical Education in level B . And we should do something we can do easily , for example , sending some food to areas that are short of food . In the land where we can not grow crops , it may be difficult to increase the growing ofcrops even if they can use the technology of developed countries . We must take this into consideration . it was not a travel at all , but it was work . and it seemed that I need to study the countries history and famous places I had the chance to take a trip all over the world . It made me angry . My dog is a golden retriever puppy , and she just got too excited and started to chase the ducks and birds . Instead , we lay on the desk , sleeping . I 'm joyful to find this website , `` lang - 8 . I like writing by English but I always worry about mistakes that anybody can help me correct . This travel is my second time to visitchina . In the article , there 's no explanation about which country they 're from . Very catchy tune ! I figure that being admitted into hospital is not necessary for me , but my colleagues think it is necessary . I am looking forward to seeing her progress . She said they always converse to each other in English . Furthermore , she is a sickly person . She is concerned her daughter may have the same habit . She has no choice , so goes to their house . I like to speak English but , I can not understand English grammar . It 's classic Japanese . I 'm a big fan of the American TV series Grey 's Anatomy . l 'm so tired The package looked delicious , So I bought it ! What eludes me ( on Youtube ) A soup with Eryngii mushrooms and onions . It is warmer this winter than usual and I wore light clothes until yesterday . For a few years , many textile manufacturers have been marketing the special type of underwear called `` Heat Tech `` . My language school has some courses which are used for entering uni directly , and I already passed entrance examination of the course . on the other hand , I 'd like to aim to enter a more high level university , but if I want to enter university that does n't connect with my language school , I have to obtain IELTS score then take a entrance examination . You also are welcome to my home town . In a meeting in English , I explained about some specifications onthickness , weight , LCD size , and thelocation of each connector such as theUSB port . I took a week off from work , so I feel bad for my co - workers . However I wonder whether ' optimistic ' implies negative meaning as happy - go - lucky . I 'll exhibit my drawing at Ouchi gallery in Brooklyn ! The picture was a photograph taken at a kindergarten last Friday . Also , my roommate has n't recovered from pneumonia after roughly 20 days . I hope he gets well soon . Instead , on our way home , we swang by a electric store to look at TVs because , in Japan , people have to switch their TV from analog ones to digital ones ( to watch TV ) by 2011 due to problems about wavelength or something . Recently I went to the ' End of the road ' which is located southeast . It 's somewhere near Australia and near Antartic . I want to learn it well , and I want to make more friends . Incidentally , as my house is surrounded by fields , the farmers gave me many kinds of vegetables such as onions , corns , potatoes , tomatoes , beans , and so on . According to her , she had a quarrel with her boyfriend yesterday , and maybe she was heart broken , so she was a very nervous . And next in order was Asada Mao who is a rival of Kim Yu - na . The SD card reader , on my PC , which I believed was broken due to power failure revived . Particularly , I 'm not good at listening . Zombie Walk 2009 I went to the Zombie Walk wearing Zombie makeup . Because I 'll take a placement test . To sell them to Chinese people in China or do they give them to their friends or family ? What amazed me most was their style . My Japanese friends who can not speak English thought that I could speak English , but I can not , exactly . I can speak it a little , but I am gradually getting worse these days because there are few opportunities to talk with English people . She stimulates me to be positive . Time always goes so fast that I feel that yesterday was our first day of winter vacation . Only two English classes and two chemistry classes . By the way , I major in chemistry . But chemistry is so difficult for me . My Philippino teacher ca n't really understand my English , Regardless of what happens , I will never quit studying English . I feel really sorry for the runners who came all the way to Tokyo to join the race . After that , my husband and I went shopping for curtains . But , I am not good at speaking English . I feel a little nervous , but I really expect this to feel like home . As I wrote in yesterday 's journal , my daughter seemed to have caught a cold . The problem is What it is for in any case ? ANIME , GAME , MOVIE , MANGA , you know almost all of them ( except for movies ) . These are what we Japanese are proud of . These looks like art , and the reason why these were born and could succeed was because the old Japanese generals favored beauty crafts . Nowdays , it 's say to sad that traditional crafts are no longer popular . People seek more convenient and comfortable products . ( ummm . . . And there are many people who do n't have philosophy . At that time , my friend invited me to her friend 's mountain hut to ski . The mountain is in Nagano . It holds the winter Olympic games because the snow is good and it is near to Tokyo . I love to ski ! It 's impossible to ski like this . I should take advantage of this problem , change my work and draw people into my vision . English is difficult . I lost a lot of friends now . . . One of my dreams is to have a English related job in the future . Today I want to practice writing rhymes ! ! : p speak & nbsp ; English fluently . So I did n't and nothing happened . . . I 'd like to make my career within 5 years . Many people were walking while smoking cigarettes , it 's very dangerous for the baby ! They were very reasonable and also lovely , are n't they ? This situation made me sad because it was a beautiful day as I mentioned in the title . until now , I 've been doing my homework in the library . the assignment is due tomorrow . ( Actually , it was n't my fault , 'cause my time table said `` 9th building `` , but there are two `` 9th `` buildings . . . ) Anyway , my teacher told me to join one group , in which 2 boys and 2 girls were talking , and to try to introduce myself . I think you are the kind of guy who needs to introduce his voice before his name . `` or something . Who tells his whole life story before he introduces his name ? He never boast his intelligence . My hobbies include photography , psychology , fashion , I watch the drama series named `` LOST `` and `` HEROES `` and all genres of the movies . Next time I will write about some of the experiences I 've had when visiting these shops and about some of the books I have read . The distance does n't prevent us from being good friends . I hope everyone helps me out . There has been a huge volume of advertisement papers stuffed in between the newspapers these days . For my birthday , I received a marvelous present from my friends . I 'm not familiar whit capital letters , I usually use small leters I am senior university student , I study Welfare . Though I have been to only three countries , Beijing , Korea and Singapore . She believes there is a little possibility to get an expensive TV ! In December , many Japanese buy this lottery . First prize is 200 million yen , about 2 . 4 million US dollar . Nengajou is greeting card for new year day . In early December , we start buying the special greeting cardand writing . Recently it is popular to use Personal Computer to make the card colorful and to make many cards . People who were married print their wedding picture and people who had a baby print a picture carrying their baby , definitely . When we can get these goods luckily , we tell and thank our friend or relative who sent us winning number and f they say kidding `` did you get TV because of greeting card I sent ? You should break it and give me half ! `` Today was very hot since morning , so after I finished running , I got very tired . I have just registered for Lang - 8 . Recently I have been trying to implement my English learning strategy by googling some Japanese English learner blogs . But in the beginning I was afraid and I did n't think that next year I would have the dream ( fortitude ) to travel myself , without a tour agency . Thanks to a russian girl named Olesya , who one day left her work and she alone traveled around Asia for 6 months . You can live ( stay ) not only at expensive hotels - nearby you can find cheap hostels and guesthouses . so I took a shower soon and I slept around at 6 : 00 a . m . But I already have no money ! But it might not be enough . B : We read the Torah and we do n't recognize Jesus as God , He is just a prophet to us . I will ask you something I do n't know . I always sweat in this season . I will start to go to English school next month , Now , they have a chance to experience it . Actually chinese regard `` a cirular `` it is auspicious thing , and chisese lucky number is 8 ! Why ? Usually peopel imagine 7 ! ! Congratulations Japan ! If you use twitter , follow me and I follow you ! My host family plays it so I watched a game today but it was rainy and very cold . . . I went to a children 's festival with members of my local Fathers Community Club . We named it `` Omuyakisoba `` and started to sell it . A few customers bought our `` Omuyakisoba `` Finally , we sold out . But she looked a little weird because her side dish was Nattou only . Narcissu PSP The first destination was a small hill 2 hours drive south of Taipei . I know the person in charge , so I would like to tell him Congratulations ! I have been taking cooking lessons for 3 months . It 's part of the curriculum at my school . tempt : Advertisement exists in order to tempt customers to buy their products . conceal : He did n't try to conceal his scandal , but instead , he apologized to everyone . decline : He decided to decline the offer from the IT company . But their owner was Australian from Indonesia so ( ? ) they did n't give me special weekend salary . Japanese usually go to the dentist only when they feel troubled by a toothache or other pain in their mouth . I made a wool scarf yesterday . But I changed my mind . Then I changed to knit for another things . Time is turning . maybe I should take some exams . I expect for some kinds of English , By the way , I 've been studying English by using podcasts . Unfortunately , I could n't buy all of them because of living in China , I often listen to a podcast while doing something . I can almost catch the phrases , but what I really want is to improve my speaking ability . I feel that I 'm so lucky to study English and Chinese at college , and I 'm very happy that I can help people who want to study Japanese . I 'd like to say that I really appreciate them . We play an important to the shrinking food supply in the future . Hi , I must learn the english language : ) thanks for corrections : ) Next month , I and my friend and her baby have decided go to Taiwan . Well , I 've been extremely busy working these days . I start to work in my office in the morning but I have to work until late at night . This week I 'll have a lot of flights and travel ( of course on business ) . Write a letter to the hotel manager , and explain what happened . One of my friends told me about this website , so now I am on Lang - 8 ! ! In September I am thinking about going to Victoria , BC . I am easy going , and I 'd like to make many friends ! ! Recently , I heard the fact that a girl I went to junior high with committed suicide . because in my eyes , she has n't apologized even a little bit . . . AIDS research improves each day . I ca n't do skype . . . . . WHY ? As I saw the pictures , suddenly , tears ran down my face , and I felt sad . It was the first time for me , and I was very lucky . When I watch a movie the next time , I will go there at the last screening I am very confused for using grammar and the sentences I wrote . Recently , I 've been constantly / excitedly making many roll cakes with white cream . I want to learn English well . One for June is to clean my house . We are going to decide during the Golden Week holidays with friends . My colleague picked up an abandoned kitten this morning . It 's very mysterious . The residents indulged in a comfortable and abundant daily life though our country was in danger . Maybe I can not grow accustomed to the foreign teacher ` s intonation . In Japan , we have a tradition of throwing beans on Setsubun . Cover the pan and simmer over medium heat until almost all the juices disappear . My personal problem He shot a french fries from his mouth at my friend . I had been waiting until it would be nice weather to ride . Then the volunteers will do their best to make the country more beautiful which is contributed without any payback . As modern college students , we should take every available action and take part as volunteers without hesitating and to contribute to the society . `` There 's no such thing as a free lunch . `` It is very delicious . When I was young , I always thought , `` I wanna be an adult `` , but nowadays I do n't even think I wanna get old . I was happy for my birthday until I turned 20 years old . Because as I get older , I can grow up spiritually . I 'm looking forward to what I will be doing 5 years from now . I think it 's because of the dry air in my house . I participate in a statistics seminar . I 'll read a draft , please check my grammaror pronunciation . But I am afraid that not many people want to learn Russian . I think our language is beautiful and I recommend everybody to learn it ! ! ! Sataandagi goes great with tea , which makes a good sweet . Now , I think I usually treat an automatic gear car . I 'm a big fan of car racing . Be careful with driving , especially , when it 's raining . Hello , my name is Seohyun and I 'm in the second grade . This is my first time speaking in front of a lot of people and so naturally , I 'm quite nervous . The reason behind this is because I want to create beautiful hairstyles for others . Firstly , I have to practise a lot , possibly with dolls or other people . Secondly , I have to study about hairstyles . My salon must also be a clean and beautiful place which customers love . I cleaned up my messy room ! Of course , I practiced , practiced , and practiced a lot . Next , I want to tell you about the exercising facilities that I want although I am a elementary school student . I think it because of the recession . ( my guess ) Please make this read as naturally as possible . I had two opportunities to get to know Sue - min Kim . Beaujolais Nouveau was released at midnight on Thursday November 18th , Because the Wimbledon Open started this week , and the World Cup Saturday at home . I want to buy something that 's not so expensive but very useful . I want to gain much knowledge and self - confidence on my job through this training . Everybody drank and ate a lot . After we finished eating , we had an ice - cream bet . After I came back home , I thought again that it is very ridiculous . Do you believe that there will be a person exactly right for you in the world ? Some people might say yes , some people might say no . I think most people believe that there will be an person exactly right for them , But sometimes people feel tired from looking for that person , and take a compromise for the other person who is near to their ideal right People sometimes feel lonley and empty , and they want Maybe this town is also very famous place to visit among foreign tourists . Nowadays Akihabara is becoming diversity and there ` s a lot of shops featuring anime goods . Japanese anime is expanding in overseas market and many foreigners know Japanese anime . I will write it sometime soon . I want to write many things but my limited English discourages me . I had a soccer game on Sunday . Yet , after considering all the possibilities , it turned out to be an unbelievably easy dream - - I want to lie down on a clean lawn with my eyes fixed on the sky , counting how many stars there in the cosmos . When I look up on the sky , seeing those sparkling , gorgeous stars , I ca n't help thinking of how tiny I am in this enourmous universe and how great the creator , if there is one , is . I enjoyed the conversation with my father and grandfather . I do n't have a digital camera . I use the cell phone to take a picture instead of a digital camera . Those are as good as digital cameras . The ingredients are udon , meats , tofu , egg , kimchi and green onion ! I want to join a university , but also I want to go abroad to America , so I will have to go to a university for 5 years . there were a lot of people at Tokyo desney land . But my friend and I were satisfied with the attractions because many of the attractions appealed to us . I found out about this web site when I did a websearch . I knew what `` Ti Amo `` mean and I also knew there was an English song named Ti Amo , but I could n't understand until I watched the MV . The whole day was awesome : the movie , company and the anatomy test results too : D yay ! unlucky day In the morning , I get up at six o ' clock . because my train leaves at eight o ' clock . When I prepared to wear my glasses and I found them smashed . I am afraid my mother will be angry ! It felt difficult ! At after , I missed my train , because was late finishing breakfast . So I felt all day very terrible ! She is crying everyday , she want to see her mommy . But nurses were by her side all night , so she was reassured by someone 's company . Today I 'm going to an English club , I really wanna study English . I played the game `` Dragon Quest `` I 'm writing a journal after a long time . I am confused , and I enjoy being confused . Going to law school I decided to go to law school yesterday . I watched a very good movie yesterday . What 's more , she was a girl who loved peace . She liked to make friends with negro people , and took part in a negro 's party , and helped them to struggle for the chance of a negro 's day on a TV show . I like Tracy very much , because she was courageous enough to pursue her dreams and never gave up . Yesterday I bought new shoes for jogging . 3 years ago I was a menber of a fitness gym , but I i quit because of my busy job . New shoes put up my motivation . I want to make jog a custom from now . But many foreigners are looking for someone who speaks Japanese very well . Yesterday I went to a travel agency to book a flight from Sapporo to Tokyo and then to Seoul . I ca n't get a ticket now unless someone cancels their flight . I do n't want to book a direct flight to Seoul from Sapporo because of the schedule . I recommend FF X to you . It is n't the first novel that I 've read by this author , the last one was about 5 years ago . My girlfriend says that he is n't a good writer , but I completely disagree with her . If you read any of his books you will feel the whole scale of emotions that the characters feel . Another aspect that I want to mention is his enormous capacity for telling all types of stories , from terror to ordinary tales . If you look in his bibliography , you can find stories that film directors have put into scene : from the beautiful story about the friendship of a group of children in The Body , terror tales such as The Shinning , Chrytine , or Carrie , and penitentiary scripts as The Green Mile or Rita Hayworth and Shawsank redemption . That program broadcasted their life . course I always put seasoning on food but sometimes I do n't . I had stayed at a suburb in San Francisco for 3 weeks when I was a university student . But I could n't speak English at all in those days . That is my motivation to study English . The nature is amazing , and life is wonderful ! It 's a lovely day today . I recommend : www . A famous problem on pronunciation is the difference bitween L and R . But I can not operate my tongue freely . I use egg , shrimps , broccoli ( instead of string beans ) on vinegar rice which is mixed with carrot and mushroom . My hobby is watchng animations , surfing the Internet , and reading books . I often watch ' ' niconico - douga ' ' on the Internet and listen to ' ' VOCALOID ' ' music . My dream is to become an interpreter . my grandfather made a living by raising chickens and a calf . They say there are many sumo wrestlers who have been fixing matches for years . Today is so hot that my T - shirt is all wet . tomodachi to sakka - wo shite asobu koto ga tanoshii desu . eating birthday cake is my interest . Thai beer I drank one bottle of Thai beer . I 'd never had Thai beer until last night . It tasted different than Japanese beer . I watched a DVD called , Beautiful Mind . I did n't anything buy but 6 Panasonic TV 's were still left ! I decided that I will eat nothing after 7pm and I will not drink in the evening ! Today , Kyoto was 32 degree Celsius . Well , I have to prepare for graduation workshop . We use the textbook `` Totally True `` . I ate hamburger steak with mushrooms which tasted like soy sauce . And she , our friend , ate hamburger steak with cheese and tomatoes . He bought some clothes and I bought a necklace and a beret cap which was wine red colored . Moreover , because I ca n't use my suica card in Kyoto , I had to buy some train tickets . He was a manic . Maybe somebody die , or lose a lot blood . He was hungry , angry and terrible . . . In my opinion , it is not useful to disclose his face . So , I think that it is premature to disclose photos before the court 's final judgement is announced . in Yoyogi animation gakuin . . . The Liberal Democratic Party has governed for over 50 years . governs the cabinet or not , but I hope DPJ ' policy strengthens our economy . Recently I am very busy with my work . My shoulder was treated . One of my ffavorite things was stolen . yesterday my friend said you looked so slender but recently you look fat ! . But I ca n't do anything about it ( ? ) which attracts the audience effectively . Is this my redundant reaction ? I had a watercooler that my boyfriend gave me . If the someone Chinese said `` You were unlucky . I have to take an oral examination in five theological subjects this week : old testament , new testament , church history , systematical theology and practical theology . There is almost no visible effect from the 3 . 11 tsunami , earthquake , and nuclear - plant problems . Going to work , school , supermarkets , and so on . I knew it exist . My name is chinacamel , from the Shanxi province of China ! Trip to Beijing Then , we tackle cleaning the whole house . It was beyond my expectations . `` It was so hard for me ! I remember their smiles . Though I am busy , I still keep a diary . Inari ( shrine ) - > a fox - > thin fried tofu I 'd like to watch Premiership matches , and UEFA Champions League matches . Now I 'm looking for the tickets . I wrote about the club in my last journal . Yesterday , more than 25 people joined ! Thanks ! Yesterday it was nice outside . I weeded out my yard . Last month I did a lot of weeding . But when I finish an exam on next Saturday , the long - awaited summer vacation starts : ) ! a part - time - job , studying English , drawing pictures and contribute them into an art contest : - ) Google says ' Do you mean : my name ' : D Japanese people are usually not good at speaking English , because we only study English grammar when we are students When I tried it on , it looked very nice . This is because the motion of their gestures is too large and radical . It 's easy to hit me , especially when I stand by them too closely . I met my friend on the 2nd night , I waited for her for a few minutes outside . My elder sister and I were talking in the hall . Suddenly my younger ( or younger ? ) sisters quickly cameto my father crying and shouting `` There is a big man . `` Then someone knocked at the door . When you are in a trouble , what will you do ? Generally speaking , songs are a good way to practice another language . because there is a very big tree ( 2000 ~ 7000yesrs old ) which is I know I can manage to write or say something in easy English . I took driver 's license exam that covered basic vehicle operations such as headlights , windshield wipers and driving straight . It was very easy for me thanks to a lesson I took at the driving institue as well as the easy questions given at the test site . I have to take up many part time job to earn money , since I want to go to Philippine for studying abroad next spring . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a response to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these consumers are really smart . . My winter holiday has already begun . I think ( that ) I should read some English magazines or newspaper for improving my English during this holiday , but I do n't know what I should to read . I hope to get some advice from here . I expect to have improved well when the holiday comes to an end . Io sono povera e vecchia . The girl is young and tall . I 'm so happy , 'cause I can use it anytime . There are not so many tenses in Chinese , so I always forget to change tense . Some people decided not to move anywhere by themselves and some people can not move because their partners are Japanese . I 'm so delighted when a good person wants to be a employee . There is a new type of this oil is on the market recently . Fried garlic , onion , and many other ingredients are in the oil . although english is so difficult for me , and from time to time , I think it is so stupid that speaking english is my goal now : ( In Japan more than 70 % cellphone users have ' K - tai ' phone , they do not use ' Smart Phone ' like ' Xperia ( SONY ) ' or ' iPhone ( Apple ) ' . We stayed there until midnight . Kitano Takeshi plays the roll of a Japanese soldier called Hara . making training pants for my husband . I went driving to the countryside to meet my friend who just moved there recently . It was a pretty long drive . It took 4 hours but I was able to release all my frustrations . Her parents keep some cows to sell for meat . It is rare for me to see real cows , so it was a very exciting experience . At first , I did n't realize he was sick until this morning . I was intending to give him to others , I found he could not walk , and I felt so upset . We are having our final examf this week . Then we checked her test sheet and found out her answer sheet was left together with her test sheet . I went to Hawaii for ten days with my female friends this month . There is a friend of mine , a girl , who was my best friend when we were in primary school . It 's really wonderful , not only because there will 172 famous Chinese film stars attending , like Jet Li , Ziyi Zhang and so on , but also it will shows us the history . And bless to those heroes who fought for the independence and democracy of our country . I have a happy timebecause I am surrounded by beautiful audience and the great members . At least , it does n't seem as hard to get a good score in your university as to get it in senior high school , because I only need to do some subjects I 'm interested in . In Japan recently there has been a demand to save electricity . Our tent was the most embarrassing of all . Our mattress was stuck and our tent broke . Because in China , people always learn languages from books and there is no chance to speak it . So that I know this language very well . I want to make friends with Japanese people who can teach me . When I got up this morning , nobody in my family was up yet . I 'm travelling to Mie now . But this is n't a good city for sightseeing . So , Hong - Kong has no surprising points for Japanese people . Because the people are very kind . During rainy days or days that are high in humidity , the volume of my hair is up . `` Super treatment `` is a treatment to make my hair softer . I was really surprised . I like shopping and I like beautiful things . What does entry mean ? lol I 've consulted the dictionary but I still ca n't understand what it means ; ( I watched a baseball game in Nagoyadome yesterday . Yesterday was the winter solstice ! Back to the school The box was covered with wrapping paper . Remember , once when I was going to work , one of my high heels was broken making me very embarrassed . I called you first . You were very kind and bought a new pair of shoes to me at work . In the new semester I must study hard with my English . The name of the restaurant was Sakura - jaya . The drink was lemon tea . The dessert was caramel cake . I was disappointed by `` Avatar , `` so I hope tomorrow 's movie is good . That is very hard to get , my English is still awkward , if you do n't mind please help me . But everyone encouraged me when they said `` You 're working hard `` `` You look cool . `` I was very happy to hear that . I had sashimi ( raw seafood ) made up of tuna , salmon , horse mackel , scallops and salmon roe . I have to use English for business , so I have to study English . I think that bridegroom Tani , bride Meka and the 4 organizers were a good combination . This Event was for girls only , so the interior decoration was very cute and girly . Now I 'm in the countryside of Korea for this job until the end of this month . The problem is that I do n't have a computer even though I need it really badly to get done with my school payment thing and things like that . I heard that people who experienced study - abroad need more than 800 scores to prove an ability based on that experience . Yesterday it was rainy and cloudy . It 's very difficult ! Especially , I love broiled salmon , medium rare . you will go there again ? ? He answered with a smile , `` I went there too many times to remember `` While Japan wasa developing country we had to learn a lot of things from foreign countres . the important things to consider about the place where you want to live are : and I do n't understand some things for example : I am a good boy , are n't I ? Tomorrow . . ? Tomorrow , there are practice games . The amount of juice was clealy reduced . I always put my contact lenses in my eyes every morning . My job is a mobile phone programmer . I am not a programmer , but I just like it . So when a bad thing happens , I remember a saying : when one door shuts , another opens . You must know about the feeling of loneliness or separating , and it 's much stronger when you 're alone in a foreign country where you know nobody and you could n't understand what they 're speaking ( I know it 's called French , though ) . I cried again and mocked myself as the biggest stupid in the world . While listening to quiet slow tempo music and calm voice of the instructor , I stretched my body . Return to the Earth I have been in Germany for a month . Then suddenly a old man who had tattoos all over his body entered SENTOU . It was an unusual situation . . . . What if suddenly he bit me ? . . . . . He approached me with his stubbern face , and said with his low tone voice `` Could you give me some of your water ? `` He was really kind , although this might just be a cover up . He could n't get over his thirst and had to drink to fufil his obstinated ways . In fact , I 'm not a fan of Jennifer Garner , but this role was perfect for her . So I had to shovel snow . . . > _ < The first episode of hell girl is quite boring . People send the person they hate to hell again and again because of different reasons : hate , misunderstanding , jealousy and even love . And the music in this cartoon is also listenable . Many people do not seem to be very pleased to eat what they 've never tasted or anything which sounds exotic , but is n't that losing an opportunity to add it to your favourite menu ? The shop was proud of its various high quality imported products , there were many customers who came from other countries looking for ingredients to make their local dish . ( I would often be asked by Australians : `` Where 's Vegemite ? `` ) I went out to get the bus . I like Homer , because he 's really sweet to his wife Marge . Ear , nose and throat hospital Could someone please put the following sentences into the passive voice . Could someone please put the following sentences into the passive voice ? Tomorrow , I am going to watch the football match in Saitama Stadium . While doing Kabuki , actors speak very slowly and with a wavy tone . my English level is bad . So , I had to wait outside of the Jinja until they came out . Actually , I like `` Nicolas Cage `` . Please , correct and comment on my blog . I 'm a student studying nutritional science at a university in japan . I used to have conversations in English at English conversation classes when I was in elementary school and when I was in junior high . How about it ? A lot ofpeople who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese people are kind . : P My job is to teach foreigners Chinese . I want to learn some native English . `` Four till Nine is given to one who find . `` It is just because we have culture to eat whales . Maybe the protesters who against this habitual think that people should n't eat whales . But sometimes it makes me dpressedthat I ca n't improve my English . Recently , I 've been thinking that every day . I have to eagerly keep studying the jewellery business and be careful to trade only with reliable partners . He sang songs that he liked , whatever his companies or the audience thought of them - - in fact , everybody would show his happiness and satisfaction whatever they thought , and you know why . One of his hobbies was forcing the female stars who went to Chongqing to have sex with him , and then recording the process . And in my dream , one of my high school fellows ( Iet 's call him Ice ) told me that he had got some videos of Wen Qiang , and there was plenty of hot stuff besides the pornos . I 'm writing this journal in my room , obviously , in Japan , This is my homework . We had been studying together since we were in primary school . We had a nice time together . I found out about this website Lang - 8 today , and I thought it was so great . I think the greatest thing about this site is that the people who correct language mistakes I 'm able to advise and help people who are studying Japanese , too . I have learned English since I was 18 , but I do n't understand much of it . I can understand what My teacher says perfectly , but I ca n't understand movies or people who I just met for the first time . I met my teachers a long time ago and I have talked with them many times . I 'm listening to the music of Santana ' Smooth ' on Youtube . I usually get up at 6 : 30 in the morning . I joined the cooking school for elderly men , looked for the checkup for 3 year 's old children , studied the system of the health center , and so on . All US foods which I can imagine are junk such as burgers . We bought detergent , dishwashing liquid , and a frying pan . After that , we had lunch at a sandwich restaurant . In the afternoon , I went to a computer room to use a scanner . However , the patty broke its shape while I was cooking . It did not look good , but it was delicious . I 'm looking forward to playing tennis tomorrow . The food was good ; they both have world heritage sites , the Halong bay and Angkor wat . Thank you for reading and listening . But how can we be good listeners ? In my opinion , the most important thing is to focus on the topic you are talking about . My examination . . . Because I have reserved a train at 7 : 30 AM . I 'm going to Australia next year for studying . Australian goverment changed their Immigration law . I have to chose the proper word out of four choices but sometimes I do n't know the meaning of all the choices ! My tears were like rain . I can relax and improve my English . Instead of that , we are going to go to Holland next month to see flowers . So , I decided to go shopping and make a pizza . I found a recipe in internet blog and started making a pizza . When I got up I realised I had a better understanding of this movie . My feeling is when I help a person to correct his / her eassy , I 'll be successful , and sometimes I can found some entries are like comedy shows . They sing Japanese soul music . I 'd like to introduce their PV ; Samurai Soul . We concluded that thinking in English for 75 percent of the time is necessary to master English . I would like to have better pronunciation . So I have to take a lot of classes and my schedule is was too heavy . I could not answer well . . . Lunch time was coming , but we did n't have lunch together I tried to write a diary in English . I wanted to change the teacher to Johana who was my previous writing teacher and is so good . I 'm twenty - years - old and a university student . Hi , I 'm studying English in a Japanese University . My dormitory is in Gifu Prefecture and my family 's house is in Shiga Prefecture . Usually I studied English about 2 ~ 3 hours a day , but I study it in please get out of my head immediately ! When I was in Korea , I used to eat every meal at the restaurant , because there were so many options to choose from and I also did n't have enough time to cook . Now , there is n't any option , because there is n't any restaurant near my village . Before leaving they complained about my absence . But , unfortunately , when you come home after shopping , you feel very tired . So , it is called an aeropolis . l know that many people want to get more money or stronger power , Yet l do n't know how to tell people around me what I think , because even if I do it , no one will believe me . They must think l 'm crazy . We went to a coffee shop and talked about her marriage life and new workplace . All of nature follows Fibonacci 's numbers . But I noticed we have not much difference between us when we made skit . I like studying English very much . I studied the flower design for three years . When I entered the pub at 10 , all the seats were full and it was very crowded . There were 3 people on staff , but it was not enough . At 3 , 15 office workers came in and ordered the `` NIJIKAI course `` The NIJIKAI course is some fried food and drinks . So I took the exam at January 24 . which is something impossible right now , so I 'm a little bit pissed . I went to Seoul for a long time . Actually , most of my co - workers might be missing me a lot . I missed the station which I had to get off at even though I 'd asked the train crew twice ! And , again , I 've not kept my promise to write a diary entry a day . He asked his English teacher , but he still could n't understand the explanation . . < - redundant I spilled water on the floor during the night . it is in the country , a little left from Osaka iPlayer provides English subtitles . So he called to all the animals , `` Mung - Mung `` . The best performance was when the trainer rode on the dolphin . At the end of the show , we ate lunch on a mat in the forest and it was more delicious than eating at home . I will buy the Xbox360 version . My friends list does n't have any friends on it to talk with in English ! My hobbies are swimming and shopping . I am now thinking about a master degree 's research plan . I want to research about Japanese writing for foreigners . I am in trouble to find out a way to research this . However I have to persuade readers , who are scholars in the Uni I want to enter . I want to study English ! Gion festival is the annual big event started 1 thousand years ago and it is one of the most famous festival in Japan . Anyway , I 'd like to graduate from school and get a job as soon as possible ! And she said `` you are strange . `` the time is coming . It is a cloudy today but the temperature is not too warm and the weather is comfortable and I 'm looking forward to the start of the school year . Although It is hard , I 'd like to study English . and I believe it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achieve my goal . She rode a bicycle . When she arrived near a company , she wiped her sweat . There , my dance club members will announce . ( Announce what ? ) It 's terrible , is n't it ? ? I 'm always eating lunch at a canteen , but I 've decided to bring my lunch starting today to save money . It is interesting to see what the shop sells . digitalizing TV The Japanese government has decided to digitalize satellite broadcasting in 2011 . I 'm beaming , I hope to meet people who can help meto learn . Fortunately , I can speak English , but I do n't want to forget how to speak it . Did you watch Michael Jackson 's memorial service ? They spoke about Michael Jackson 's life and sang . I overheard somebody who was talking about Michael Jackson on the phone . I liked his songs and music videos . When I got home , I turned my computer on to listen to his songs and watch his music videos . I heard that Michael Jackson 's daughter inherited some unreleased songs . When I do n't have time to stengthen / set it in the morning , I like toput it intoa ponytail . There are 4 people in my family . My father 's been a fireman for 20 years . He teaches me patience and sacrifice . When I speak with a foreigner , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I have no doubt that your comments will be helpful . I believe in this world so I wo n't give up on life . If I have a mistake in my diary , please hlep me correct my mistake . Later I felt uncomfortable because I did n't see his face and I do n't actually know him . blablabla . . . . . I do n't want to be so discriminatory . . . But I ca n't use those greetings now , because my grandparents have passed away this year . I could see that the top of Tokyo Tower was slightly bent by the great earthquake ! After drinking , I went to a club for the first time ! ( My friend took me thereX ) ) Dancing with music was so exciting . I do n't know how they teach English in other countries . I guess that there are some differences between the Japanese way and the other countries ' ways . I mean a lot of experience is the most important thing . And also , having a passion for study is important . Next weekend , I will try to take a picture ! I want to use this service not only to study English Grammer but also to meet friends . I had a really good time . Many of my classmates decided to receive further education . I 'm 19 and my daughter is 2 . I watch TOM AND JERRY every day with my daughter . There is no vaccine in Mexico , as well as all around the world . How can we stop the from flu spreading ? time 's moving on 'cause my writing speed 's so slow . To succeed in college or even in society , we need always remember to have a mindset that you should doubt anything . Before enrolling in college , you may have been only learning a lot of subjects by heart in school , such as a date in history or the grammar of a language , etc . I will take writing part of it in 3 . 17 . After two monthes merely , I found I can not work very well , since I do not know the internet - related professional skills . I decided to give up because also need 30 minutes to go and exchange clothes . This is just me eating something if I get angry . Christmas Day is a holiday celebrating the birth of Jesus , on December 25 every year . At night , children go to bed earlier than normal and hangstockings behind their bed to hold the presents which are given from ' Father Christmas ' . I play the guitar and sing songs . Before the test , I always feel pressure . Nothing can match the pleasant feeling of being home . The New Year 's Day is enjoying a striking popularity around I came to Busan from Seoul this afternoon by the STX . I was so disappointed because I had tickets to the seventh Well , I 'm planning to go to community college first then transfer to a 4 - year art school . I was going to cancel / drop that class , but since I was curious , I just chose to take it . And do you know what happened ? On February 16th , we went to the Uluwatu Temple . It constructed on a very tough cliff . I think my browser may have some problems because I downloaded something ( bad ) . and some of the messeges ask for genuine microsoft software . Since the world of computer science is more open to English speakers , I want to study English . I 'm interested in programming for the web . If you also are interested in programming , please be my friend ! Shannon Brown was a beast . There are some places in the darkness , a park , a small forest , bridge above a small river , a small house and a cafe . To show off a skill and contribute to one 's team . So I hope to be useful to you and also to learn something from you . I want more more sleep . . I live in Paris from Monday to Wednesday or Thrusday , and then I go back home . Without any knowledge of the language at the beginning , after a fortnight , I could manage with Italian people in daily conversation , and understand many things . And they have a very interesting grammar , with very funny tenses , such as `` subjuntivo . `` However , it 's not the only reason . I watched Transformers 3 with Xiaoquan yesterday in Guangdong science center , IMAX3D . It happened about two months ago , three friends decided to go to an amusement park called Happy Valley on that day . I 'm have been hanging out the laundry this week . I was accepted into a university in NIIGATA today . Today I was rehearsing for my upcoming dance performance . While I was indulged in my practice for it , I suddenly saw the boy who I have a crush on walk by . Out of astonishment , I shouted out loudly , `` Ah ! ! ! `` and stopped my movement . He somehow stood there watching me ! ! I was so embarrassed that I had no idea of what I should do , and just bent over and stood there . My thoughts went so crazy for him that I can barely fall asleep tonight , this is feeling just not sitting well with me . If you want to be a professor , you must be able to do daily conversation without any difficulties . My husband is Indian and he has started to run a small guest house in Rishikesh since this April . It is a famous place for yoga , meditation , the Ganges River and the ashram where the Beatles visited once . I wonder what score I will get in three weeks later . There could n't be a more beautiful landscape on which to meditate . You could clearly hear the clashing sound . It was frightening . Some more hyenas were training karate . Others were doing nothing . They took me into a magnificent temple with a huge hyena statue on the rooftop . I passed the first paper test of Eken Pre - 1st Grade , so I could n't be better now ! While I got angry with him , I realized he has kept his wild nature . It is also so humid in Japan 's rainy season . I do n't like Japan 's hot and humid summer either . My friend could answer easily because he is English . My purpose for studying English is to communicate with my business partners , who are in Silicon Valley . That was only typo , haha . The weather forecast said that it would continue till the end of the week . You know , I am a Chinese , who lives in south , so I like spicy food and do n't like sweet food , when having lunch . In the afternoon is computer class , and you should see how fast the teacher speaks . I ca n't catch what she says just like many students around me . That 's like a thirsty person who finds fresh water , but more romantic than this . The doctor told him that the girl is invited by his army , because he always says her name Dubai loudly . The girl takes care of him for about three days which , amazes many people , because everyone does n't understand why an Asian girl would take a U . S . soldier so seriously , and does n't leave . The soldier fell so happy and thankful about it , and asked the girl if she wanted to be his girlfriend . After that , because of the wound , the soldier leaves Iraq and marries the girl in Chongqing province , China . I have some stress , so I scratch the same area over & over . I 've often scratched my head . I scratched the same spot , so I 've lost a little hair . I do n't a bald head , but I have to address this . So I can get along with with all kinds of people . I can operate some Mac software like Illustrator , Photoshop and InDesign . I like to watch professional sports games , but actually I 'm not good at sports , especially ball games , like baseball , football , and basketball . I need to exercise regularly . I could not go to work yesterday . . . I saved all the pictures of the products I bought at ASOS , the models wore such attractive clothes on the catwalks , wow ! Finally I wanted to say that I will graduate from school two years from now ! It is really strange that people reveal their divorce in front of friends and familys . The figure is a little bit higher that I thought . so tonight I went to her new house to fulfil my her room is not very large , but very comfortable . Favorite things . It 's kind of hard for me to focus on a story . . I just love watching the `` American Pie `` movies . In the first half , Ji - sung Park scored the first goal . Because I plan to tell her parents that I want to marry her ! ! It is Japanese food . Especially , I like Korean and Chinese food . However , I guess the word `` fucking `` is used to emphasis the words after it , so it 's very similar to the usage of the Japanese word `` kuso `` . The word `` kuso `` means `` shit `` in English exactly , but it also plays a roll in rudely emphasizing the words after it . So , I explained it to him like that . I 'm looking for friends who can chat with me I 'm tired of speaking Japanese . . . . This year I decided to handle foreign company more actively than last year ! Especially , getting more vocabulary is very hard . Ganghwa - Do Yesterday , my family and I went to ganghaw - do . It was a one beautiful place . It was surprise too . The bad news is that I failed my ACCA exam . . . . . . . . . . . . . is was worst than last time . . . . . . . . . . . how come ? ? ? > _ < Studying English is one of my hobbies , in which I learn it with enthusiasm . Since I found information about prostitutes , I realised that they are not only bad points , but also good points . So I think I should n't judge or look down on them due to their appearance . Unfortunately , it 's Saturday today . . . I believe that marriage is special and spiritual because one man and one woman , who are first different human beings , But the first typhoon is likely coming soon , and it is raining now . After this happened , I Iooked for a place to eat . when to use `` a `` versus `` the `` , and idioms like `` work out `` ( exercise ) . My hometown is a big city and I feel convenient , but I think there are many great points in each cities . Today , I went to my school to participate in swimming class . After I came back home , I ate lunch and I ate spaghetti with meat sauce and it was very delicious . I 'm not the demon so it was very fun . Tomorrow will be very hot but I should work hard . In the Netherlands , I had to find a dentist who I could register with as a patient , make an appointment and wait for 2 months . A nurse said `` Why did n't you register at a dentist before you had a toothache ! ! ! It is common sense all over the world ! ! ! However , when I go for jogging , I do not have to go to Gymnasiums , I can do it on the street or on campus . I saw many international ( interracial ) couples in Australia . I studied Japanese a bit , learned some new kanji , and went to eat breakfast . I managed to swallow some yogurt , but my throat was too sore for anything else I had in the fridgerator . It felt like heaven ! There are two bathrooms and three rooms . There are 4 rooms and two bathrooms . but my friend ' s house is very simple and modern . my mom likes decorating decorating theirs . Tomorow I have an exam of mathematical statistics . I 'm very much looking forward to it ! I will go to Chicago for the marketing - skill training this September . Therefore , I have to improve my English ( ability ) soon It was slipperly and dangerous . Spring is coming to the corner . but I wanna fight ! I need your kind help ! I did n't expect that someone would correct my first diary , but two people did ! I tried not to use my dictionary in order to write my first diary . I 'll keep writing a nice diary using my lovely dictionary . Japan has four seasons . I live in Japan , and I sometimes see foreigners wearing a t - shirt while I 'm freezing . It 's been a while since I last spoke English . There was no abnormality . He taught me that the dream will definitely come true if I did n't give up . My college life . I am getting an external education about storage foundation for data bases this week . `` Galapagos `` is a set of islands or an area around the islands which is distant from the continents and is well - known for its unique eco - system . These `` Galapagos `` characteristics often bothers me . However , I can not go anywhere . It makes me feel more tired and frustrated . hello , I 'm good , I like english , I am not good in english , you are looking my page . help me write in english ! I must improve my English skills to communicate with people all over the world . Apart from that , I have to create an sketch with a friend . It 's for an exposition ; we are going to `` act `` Phineas Gage 's article . At least , I can speak very influencially . . . ( ? ? ? ) Thank you for asking me about the interview : ) I think it went pretty good . I do n't know why , but I was not nervous that day . [ two sentences ] I had to do a self - introduction presentation , a social issue - related discussion , a competency based interview , and a Chinese interview , all in one day . Because I skated too hard yesterday . I need to study speaking English too . I really love eating foreign foods . However , the expected time is about two minutes so it is not going to be that tough . Actually , today was a different day in a sense , Lamar is finally gone . I 'm eager to speak many languages , so I watch some NHK programs to learn different languages . There were many friends appeared in this wedding and they drank much wine to celebrate his friend getting married . A typhoon went through Japan and I 'm aware that autumn is coming . If you use Skype , please add me because I also want to learn to speak English . Today , a very very ugly incident occurred . I am working on my application material to make it more impressive , and hopefully I will get into a prestigious school that I can be proud of . What 's the difference ? `` I 'm fine ! `` `` I 'm good ! `` `` I 'm OK ! `` : What are the differences between these three phrases ? one color without design . I think Japanese umbrella market is a thriving business . Japan is very unusual among the developed countries in its strict attitude to foreigners who want to work in Japan . In this period of globalization , Japanese industry cannnot remain competitive because of shortages of the workforce . He said `` I 'll check it later . `` When he came back home , he checked it carefully . I have a BIG presentation next Tuesday but I have n't finished my report yet . Every time I meet someone from the team , she greets me with a clear voice . Every morning , one of them is cleaning the entrance of our school . One of my colleagues told me that it happened because the team members were careless , but I wonder how much they care . I learned some sentences . It 's approximately 10 feet tall . Serious Disasters If we destory nature , we are destroying our civilization . Besides , he cancels the term exam because he does n't want to write the exam paper . I 'll have to communicate other members in English . This book wrote about the difference between the English and Japanese voice . I came back to my camp as I was disappointed . I made out that it was him because he was tossing and turning . I really dislike humid weather because I get sweaty easily . A bear was shot because it injured a woman earlier and it could happen again . When I read this article , a question occurred to me . Our selfish lifestyles cause climate changes , and these lead to the lack of their food on mountains . My friends came to my house Yesterday . One is married . The other is not married . For a long time , I could n't upload my page , what with my tests and the disasters that happened to Japan . Fortunately my friends living near the disaster locations are all safe ! But now , I strongly believe that English and its culture is but one of the many cultures all over the world and I want to strengthen my idea by communicating its importance to as many people as possible . However , I noticed the convenience of English for the first time because I could talk to many people like Belgians and Egyptians with English . Though I have been saying many things above , all I want to say is how pleasant talking to many people is ! ! It took 10 minutes to walk to the beach . It turned a very comfortable day today . But Japanese people are n't interested in it at all . There were a few people , and some main buildings were closed , others were opened but closed at 6 : 00pm . I think I 'm very susceptive to weather changes : - o `` What day is today ? `` I always say that because I never remember the day , even though I ask my cousin a lot . He always says `` I just told you yesterday . `` I heard someone say a goldfish can only remember something for 3 seconds . After that it will lose its memory just swimming to the edge of the fish bowl . If a goldfish fell in love with another fish , it would n't remember because it would lose its memory . Myhobby is to go camping . I can speak business Japanese , but my English is poor , so I want to improve my english to get a good job in trading . I have a sore throat now , it 's really uncomfortable . . . I agreed and sat down waiting for him . Is there someone who lives in Europe ? In Paris , I 'll see the Eiffel tower , Louvre 's museum and shakespear 's & company book store . can you tell me other hot brands in Europe ? It 's because this is my first time trip to Europe . I applied for two squba diving tours and bought lenses for my scuba diving mask . My name is SAKURA , chief of Japan 's traditional dance group , NIPPON . I am introducing the wonderful world of Japanese dance . Please believe me ! I read in the news today that Pizza Huts across China announced that they are doing away with their salad bars . It is already half a month until I go home . Hello , Lang - 8 users This week , I 've been thinking about how to use Lang - 8 effectively so that I can make progress on my studies . At the beginning of weekend , I have a long bathtime on Friday night . bathtime is a pleasure which many people living with a family can not have . There is an English exam called CET in China . Time flies so fast . Everyone walking around town was wearing a shirt with long sleeves and a jacket . Firstly I write some words in English , drink a cap of coffeand read my E - mails . After the bus tour we had 4 hours free time , so we went to the Beatle 's museum which is quite famous as far as I know . lol Then I realized that I might have made a mistake as I perused the museum . In fact it was tough to understand all of what was said , therefore I 'm not entirely sure of their history , achievements and other efforts . . . everything they did while they were together . Well . . . honestly it took us two hours or so to finish this tour which was pretty much half of our free time actually . . . Therefore we did n't have time to walk around the City centre , which was supposed to have been fun to do ! I have to study Chinese and English . First of all , you should buy asmall boat to catch more fish in order to get more money , and thenyou should keep fishing for 10 years . If you achieve your goal , you can get ahuge amount of money . Then you candeposit your money in a bankand earninterest . I was supposed to take the intermediate level this semester , so please help me pass the class with a decent grade . Today I rented `` Jingle all the way `` and `` Dr . Dolittle ( Eddie Murphy 's comedy . Well , got ta go . My job title is programmer . Wow ! I was suprised . education system , learning things that are boring . I tried to become a Pro member after that . In Korea , adultery is a criminal law not a judicial law . I ca n't understand why the government punishes people for their private life , whether it being love or sex . I think adultery crimes can be fixed in the judicial courts . Keith and Carrot , who had goneto town to visit their son and daughter came back to the church . He came to Australia on a working holiday visa too . I will be talking in Korean for a long time when they come to church ! ! ! ! ! A few minutes ago , I saw a sports news report on TV . My friend said to me , `` You look younger than yesterday `` . Anyway , it 's not my business , I 'm okay until they start raising prices : P I do n't understand why Edward tells Bella to stay away from him , why heleaves her alone . I 'll be more careful next time . . . I 'll try to build my comfortable life slowly : ) Well , my husband and I set up our own small business at last - ) This took a lot of time . You know many Japanese college students have a tendency to be sensitive about what they wear to college . In other words , they really care about how are they seen . So they wear fashionable clothes all day . I noticed that lots of students wear hoodies or T - shirts , especially with their college name in front . Is it inexpensive ? But I am worried about whether I can speak English well or not . After we left the beach , we went to a shopping center named American Village . So we could n't go anywhere except there . We just looked through some stuff . The marketing manager supervised them at first , but she gave up controlling them at once . They started to shoot the film at their will . Because I got a opportunity to make my debut on the world stage . Syobu is a beautiful flower . Shrine of the City God Parade Day is every June and not on a specific day . The first time traveling in the United States . When I walked around the house , I felt an unpleasant sensation like I was trudging uphill in the house . My favorites are reading books , including Manga or novels , watching movies , taking pictures , playing tennis , and gardening . . . I 'm glad that the Japanese team won ! JOSIRYOKU , the art of being a fascinating woman It 's too difficult for me to learn this stuff , I have no confidence for passing these exams . This song which you might have not heard of is named `` Hailey 's Song . `` `` Hailey `` is his daughter 's name . `` Hailey 's Song . `` I wonder if the english title is okay or not . Does this make sense ? I do n't have confidence about whether native speakers can understand my English . Please let me introduce myself It is very important for me to improve my English . Please correct my errors anytime . Ohhhh . . . According this book . In the past , Japanese food culture had us eating insects such as cicadas and grasshoppers . I 'll attend some meetings and an exhibition of the heating , air condition and ventilation industy in Las vegas . Yet the real relationship , in my opinion , is much more subtle than the triangle in the movie . But I will not forget to put some medicine on my head for hair of course . I want to be a person who can assist someone 's development even though my ability is not excellent . I had my bicycle stolen during the night . but I ca n't forgive the person who stole it . After the lecture , I am having second thoughts about the `` Global Environment `` . I could n't watch it before because my daughter said that it was scary . ' Poets are not so scrupulous as you are . I tried to write something ( like book reviews ) in English on some websites , but I was so ashamed of my English that I just could n't do it . Kaiten - zushi having rotating sushi on a belt conveyor which is cheaper than traditional sushi restaurants . I am working hard and I hope my dream comes true in the future . But I like go back school , because I can be with my girlfriend and play with my friends . My english is horribly broken ! I said that I was too lazy to do something , but my friends told me when I am lazy I should do something new or study Chinese instead . I felt it was very typical for America and I filled with emotion . It was the first book that I read on my own . My ability to understand difficult sentences was immature . Returning to Harry 's wondrous world in this age , I 've found something I had not noticed when I read it in Japanese back in elementary school . But I think this is why these books are called masterpieces . I had studied English in junior high school and high shcool . I think the best thing for learning English is to keep studying everyday . and am studying Farsi [ Iranian language ] . { I 'm trying to write articles in Farsi too } My hobby is watching Japanese animation films , foreign movies , and I especially love Woody Allen and Emir Kstrizca films . I 'm studying English right now and hope to acquire skills to speak fluently with native English speakers . Philosophical issues , religious issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . I want to make progress with my english I am very glad to be a member of lang - 8 . So far I have studied English for about eight years , up till this term . It 's so easy to cook and tastes good . I was very surprised . Eastern Japan has big problems . Today , I went to the police station to get a new driver 's license . I want to exercise for 2 or 3 times a week after this . the leaders of both teams are friends . but sometimes it 's not met ) . If two participants find one another good , they exchange phone numbers and they become friends or boyfriend / girlfriend . My friend , a friend of my friend , and I formed the men 's group . The women had three persons as well . We enjoyed the party and had a lot of conversations . So they go to the academy after school and go back home at midnight without time to have dinner . Statistics say that we , people who live in cities , lose good , quality years of life ( or our lives ) due to ozone exposure . Yesterday , my classmates and I went to have dinner in a restraunt . But now , it is in good condition : ) I ca n't relax without it . The Romans knew more about fighting on land than fighting at sea , so they put a wooden bridge on the front of each ship . I think the Romans were very clever . But the history of Rome was very interesting . I ca n't believe this happened . Do American people tend to include many people in an e - mail when possible ? We japanese are accostomed to plenty of things and food . I stayed up late while they slept for a long time . In contrast , The PRC has become rich , but it still makes more threat of force to the ROC and never recognizes the fact of the separation of the two sides . I do n't think they are wrong , but do they have the qualification to agree to people 's self - determination ? I went to the East Coast with my friend . I brought beer , Japanese sake and some snacks . I made a commitment to serve my family . I performed in some temporary groups while the other two joined groups together . After some time , we separated , promising to meet again . I will have abilities to do inconceivable things . It 's [ vegetarian ] It 's not only the students , but also the teachers who are in trouble and trying to overcome their obstacles . The doctor said that it 's because of the sudden change of environment and food . But still , my body has n't yet adjusted to Korea . They damaged an atomic power plant . According to the report from the government , there is no danger to their health But some said that the government and power company are trying to Could you please tell me . However , the information gained from advertisements is sometimes overflowed and it is very confusing . Because many companies and shops are competing to win in the market , each shows their own characterized advertisement , which can be too much information . What is worse , people tend to purchase products or foods even if they do not need that merchandise . I believe that more people should learn the way of recognizing whether which information is right or not even if the amount of advertisements increase drastically in the future . they can cook korean food . . I do n't know why . . . I doubt I 'm writing good . Anna from Boston eventually finds her true love , not in Jeremy 's luxurious house , but in a shabby bar in Dingle , a small town in Ireland , in the arms of Declan . This class is boring . I am too lazy to write a resume . . . . When I enter my room , it smells good . I 'm so tired right now because we received more than 150 students today . I should have gotten up early this morning , but I slept in late . I am learning English , especially listening and oral english . I have ( ? ) a postgraduate major in computer , interested in network security and DB . I look forward to more friends to exchange each other . Today I am very happy , I 'm very happy . When you look at a Chinese word , you can not know how to pronounce . I told him not to hesitate , but he said he still wants to be friends with Ice , and that he did n't want to hurt her too deeply . The sentance is `` Equilibria between any number of substances are representable in terms of activity coefficient correlations such as the UNIQUAC or NRTL `` But it had Denzel Washington ! I 'd appreciate if you read and fixed these sentences . I am satisfied with my hair style . Some insist that individuals will solve it . Today I want to challenge new work positively . I ran , among crickets and cicadas , that was just an astonishing sight , I think that this may be good for people who are not allowed to have pet hamsters at home , or people who love hamsters but are too lazy to take care of them . Through this incident , I found that the country of Japan is not alone , and international cooperation is really important in a global society . Because the weather forecast said today will have a wintry pressure distribution . I do n't know the situation in your countries but in Poland Spring officially has come . Spring is my favourite season of the whole year - it 's not too hot , not to cool , just warm enough for me . Unfortunately in going straight for my goals I feel like I have been losing something important , paying not enough attention to relationships with people I care about . So I cut one side of my hair by myself , which made it more awkward . As he is a serious man , he is going to get along with his sweetheart . We did not reach a conclusion , but I think it was interesting and will be useful . On my way to Suwon , I heard there were 2000 applicants from my friend who had aleady been there . I was desperate and gave up trying to get the job . However , I changed my mind because nobody knows the result . When I got there , I noticed that my friend had the wrong information . However I feel a little uncomfortable . Not only in English but also in other languages I think there are strange expressions like `` break a leg . `` I prepared all my tickets , but not completely . I was comfused because I heard about it just before I borded the airplane and I 'll arrive in Bergen at 11pm and the hotel will closed . I looked around in the airplane . I went to drink with some coworkers yesterday . We drank still 3 o ' clock in the end . If you have information on it , please tell me . Because whether or notyou can be admitted into college is decided by this exam . The system is feasible in China although many people think it is unfair because of our country 's large population . We need more college students to build our country , to help make our country more beautiful . In my opinion , this is very cruel for students ! Hello everyone my name is May . I like English very much , but I am afraid to learn English ; because I make a lot of mistakes . Could you change this paragraph to make it look more like a speech ? or if you do n't have enough time , just correct it . I would appreciate it . Funny listener In concerts , often there are `` funny `` listeners . I ca n't wait for the 26th free program on figure skating . When she got wind of the solution from a Homeland Security officer , she was a little bit confounded because she had made up her mind not to marry anyone . I will begin to write again daily , as well as I can . I also think that this diary has many mistakes . ( Actually we are already in February ! ) Usually , having her wedding in Maldives will be so romantic to a girl , but I 'm so tired for it . . . By the way , I think I am quite a strange person , because I feel excited when I hear the wind screaming . Maybe it 's because I just drank a cup of coffee which always make me excited . I try to imitate what I 've heard from the NPR to correct my pronunciation , my tone , and things like that . My summer vacation will end tomorrow . But I am happy because I will be able to meet my friends and homeroom teacher . `` Do n't be a loser `` I keep telling myself that , but I always give up easily ~ I need to be more stronger , tougher and more focused on my target ! It was tough because of its length . ( I heard announcements in French , and I liked its pronunciations . ) He mentioned a girl who I love very much . Her husband dose not have a permanent job , therefore he helps occasionally with the washing of customers hair . Particularly , that of Japanese bush warbler made my ears perk up since its voice is unparalleled by any other birds . I really believe that she is my great adviser and supporter . I think it reflects the sensitive feelings that we have . That 's the reason I registered it today . The prefecture has lots of ski resorts and held the winter Olympic Games in 1998 . Because of Love ? Actually , it 's one of the most amazing social network services I 've ever known . Language Exchange , LE in shorthand , is a great idea . I am disappointed in you ! You are my friend , and I always believed you but you lied to me . I finished reading the book `` Excerpts from a Family Medical Dictionary `` by Rebecca Brown , one of my favorite authors . My favourite Japanese singer is under arrest . Last weekend , my favourite Japanese singer was arrested for drugs . Her name is Nariko Sakai . On last Friday , a warrant was out for her arrest and she became `` suspect Sakai `` . It is really sad to hear that - I still ca n't believe such a nice , sweet lady who smiles like an angel is a drug addict . Just when people were worrying that she might commit suicide from the shame of what her husband did , the police found drugs in her apartment . People came to realize that her disapearance was probably not because of the shame of anything , but to escape the drug tests . I 'm not a Christian . This season , church choir members are very busy preparing for Christmas . Our music director chose very rhythmic and complex music . So , I am a staff of the convenient store . Maybe it 's a different customs about what the staff of the convenient store has to serve to their customer . After that my manager appeared and he complained about me . Too busy to do yoga and study other languages . Of course , today is very hot as well . I have to buy chocolates for my co - workers before Valentine 's day . And I 'm worried about the costs because I have ten co - workers . His name is `` Charo `` , the mascot character of the NHK English program . So I have to write my dissertation , and look for a job . today , when I checked out my blog configuration , I found this site in my favorites . The first thing is my Macintosh Computer G5 . Visiting Zoo is really fun . I 've lived in the nurse 's accommodation near my hospital yet . He said , `` Get a picture is not a polite way to write Hikari , you could say orally but not written `` . Starting Lang - 8 Hopefully , I can make more and more friends , although my English is not so good , but I can always communicate with English speaking people . Bart and Lisa , daughter of Homer , cooperate with it . One friend is going to America for further education and the other will work as an analysiser in Shenzhen , we will be living in different places around the world . The story is about a detective who had been a high school student . I commute by train every day . In the evening , I catch the 8pm train . I often read a book on the train . but I have no problem . I washed my hair with my favorite shampoo . I heard that it is good for the health . It 's reasonable to think that individuals do n't tend to own pianos , but families do . I 've corrected some Chinese diaries for Japanese friends . But I 'm taking a year off to improve my English ability , and go on a vacation to take a break . When I was younger , I liked painting and studying fine arts . But it 's very different from visual design or fashion design . That keeps worrying me But some of us like to play command sport games , some people love to play intellectual games , and others love to play computer games . Stop hating classes in school , or stop hating boss at work , or stop hating other people . So simple to learn anything , or converse with anyone . My wife is little worried about her appetite lest she will be fat . I used a strategy which is to take a concentrated attack against the one of the opponents , who is weaker than the other one . The games remind me of two different feelings . The one is the law of survival and the other is the story of the ' Hare and Tortoise ' . I want to make friends with someone who lives in a foreign country . Today my vacation begins . I wanna sleep soon , but I have a lot of homework . I have to start studying now ^ ^ ; Today , some packages arrived at my home . ( I used this airline to go to Europe last month , and transited in Russia . It was very cold there . ) Some geographers say `` there are no places on earth that have not yet been explored . `` ( But I think human beings actually have n't explored the bottom of the ocean at all yet . ) because only little girls are heroines in his works except for this one ) Nobody believed in the testimony of his father , except for Pazu . The girl who came down from the sky , whose name is `` Sheeta , `` had the magic stone , and she was pursued by the army because she knew a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheeta . There are two kinds of high schools in the mainland - - junior high schools and senior high schools . Compared to junior high schools , the teaching quality of senior high schools are considered more effective on the students ' future . Some schools would even demand that girls can not have their hair long enough to reach their shoulders . I 'm going to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . from 9 . 15 p . m . to 8 . 20 a . m . : gogo ku - ji jugo - fun kara gozen : juichi - gatsu itsuka , mokuyobi When we were at Tennoji , we were spoken to by some drunks . And please let me ask another question . Tomorrow . Hopefully you can help my English . Because that was far from school , and the holiday was very short . During three weeks our reserch group that includes ecologists , zoologists and microbiologists , will be studying wild rodents and their microbal flora . This is the first time that I have seen the entire school covered with snow ! I thought it was rude to put luggage in a seat , so I replaced it on my knees . Because I can use any vegetables and it tastes very good ! ! My grandmother made MISO and gave it to me . I think the Japanese government should restrict where people can smoke , because their smoking affects non - smokers health . If you have any suggestions about how I can improve that , I 'd be really greatful ! Could you give me some advice to learn technical writing ? After that , my professor invited us to his house to give us a great dinner . but I will come to the internet cafe as often as I can . Recently she has been melancholic and does n't do anything , washing something , cleaning , or cooking . . . I used Yuzu tea that I made last November to cook yuzu flavored chicken . Recently I have gotten hooked on Japanese cake . But it 's no use crying over spilt milk . It was like a museum of lifestyles in the 18 and 19 centuries . But , I do n't have any friend there so I 'm worried about my travel . Does speaking only improve speaking skill ? With only a small quantity , it spreads and foams easily . I like the convenience but hope it is safe to use . I do not know whether it is because I have n't done English exercises for a long time or other reasons , but I just feel unfamiliar with the English words . I 've joined a team where I can learn drawing for free . And when I was dreaming , I thought my soul was being pulled by a line and flying to the sky , when I woke up , my soul came back . There were more regret , loss , mistake , repentance , contradiction , indecision inn their young lives resulting from the imperfect ending . and we found some gravy , but they all were too expensive . Conspicuous vs Noticeable Dangerous ! ! ! The building is very beautiful . Start to read with different views . We also played soccer and baseball . For example , Japanese may be difficult in terms of respect usage such as the humble forms . It is growing warmer because spring is coming . Yesterday was a National holiday . When I was working at the office , I felt the earthquakes . One of my roommates recommended this website to me . I studied it for one semester , but there is one year left for me to study in college , so it 's a pity that I have to drop it and spend all the left time on English to pass the CET6 because I need the license to find a job . I translated it directly from Taiwanese into English . I was a cartoonholic . Because I had a good time during my childhood even though I was a key kid . I am 20 - year - old guy and a university student in Tokyo . It was very difficult and I could n't do it very well , it was bad , but I learned somethiing today . Please recommend : ) Everyone has a funny or interesting incident when he or she was Many children wait for Christmas day which is on Dec 25th . We threw her a birthday party . I wanna , at least participate with something , but I 'd rather have something good . . . I want to recommend a heart - warming movie staring Robert DeNiro to all of my online friends , because it can make us reflect on educational perspective , parent - child relationships , and so forth . But I 'm into this completely and I like the story they told us together with it . It is said that this typhoon is similar to the ' Isewan Typhoon ' , which occured 50 years ago . Because normally this county has no rain throughout the year , all roads and buildings were built with no consideration of rain . What happens when it rains in this country is it causes leaky roofs , floods , and traffic jams . oh ~ ~ ~ late - - ! ! ! I was sick last week - . - ! ! Unbelievable I only wish that I could recover from this disease sooner . The Nepalese sauce was very hot and spicy ! ! What would you prefer to learn among aforementioned options ? And then the guid took us to Pattaya . We did some banana boating , jetskiing , motorboating , parasailing while we were there . I 'm an English learner . For one of my English classes , we will make a newspaper in English . Actually , I am always very sleepy during lectures in class . Also , I would love to share some interesting things about my daily life . What makes me think he is a creative person is the product he came up with . When I was in China , I could use my cell just like in Japan . In fact hardly anyone in China owns a Japanese cell phone . I rode in a night - bus from Nagoya last night , and reached Shinjuku , Tokyo early this morning . I thought it was n't serious , and it did n't hurt very much , just a little . And he told me it might have resulted from lack of the muscle in my knees and recommended that I do regular exercises to build their muscles . For three years , he murdered 7 women and buried their bodies with careful preparations , and he reportedly has shown little sense of guilt or remorse so far . What eludes me The deadline for the resume was yesterday and I 'm going to make a presentation next Friday . At that party , _ I found out many coworkers are thinking about their careers . As I mentioned above , it may be one of the characteristics of Japanese office that they are very crowded . I was born in Ooita prefecture which is in the Kyusyu ( Kyushu ) area of Japan . After that my family moved to Chiba because my father was transferred . I thought `` Hey , you wanna make me angry ? I don ` t know Final Fantasy . I referred to `` Majicon `` in yesterday 's entry . ( The sentence forced them to pay compensation and prohibits them to produce , import or sell Majicon . I expected that there were some people who were against this sentence . However , there were more opinions which were against it than I expected before I read it on net . I feel sad to think that DQ9 's release was postponed due to them . . . . . It is interesting for me to use this site . If my English skills will be better , I want to use this more . My English skills poor , so please collect my jornal . ; ) I have n't seen every episode of Bones yet . Repairing Computer I work for a lubrication equipment trading company so I often write emails in English . But my friends went to their hometown . This is my first diary entry after a long seperation . Japanese people are struggling to save energy this summer because several electric power plants are not operating right now . Goya , or bitter gourd is a kind of summer vegetable in Japan . When I was young my mother put a Goya dish and I always frowned while eating it . Are there any bitter vegetables like that in your country ? The first dream which you have on the first of January is important here in Japan . Unfortunately , I had a bad dream . You 've screwed up everything , you know ! `` I coud n't understand what he was shouting and I was just petrified . Usually Susuki grows in the wild , and many Japanese people can enjoy the typical autumn scenery in nature . But , I changed teachers soon . It was a busy 30 minutes . This photograph was taken by me several years ago . It was really great to meet them , simply because , it reminded me of several wonderful memories of the time I met them . Studying IELTS is not a easy job , I having been preparing for almost a year In the last English lesson , the instructor showed me this site . It 's a youthful movie . When I got into Dinosaur class this morning , I opened the door . . . . . . The first one I made was I hoped everyone could have good health . The second one was that I hoped everyone could remember me after I leave . I do n't have a place where I can sculpt , so I make things by papier - maches . My head itches . I 'm wondering if there is something I could do for victims of this disaster . My job , working in a cafe in a department store , was busy . This is my ninth entry . I wonder if I can continue to write in this diary , but I will try . The Heike people were defeated and disappeared into the sea : samurai , a Buddhist temple ( Amidaji ) near the sea to ease the Heike 's spirits . performing poems and playing the biwa ( a kind of guitar ) and his best She is bright like the sun , athletic , positive . I can see the ocean every morning because my university is near the ocean , I think we have fewer holidays than other countries . But I ca n't decide what to cook . This website is written by a member of a Japanese economic think - tank , so the contents of the website is related to the economics , and all contents are written in Japanese . You are too concerned with what was and with what will be . Now the olympic game is being held , and whenever I see the elected athletes from all around the world , I think this documents really suit for them . The weather is ugly today . The course itself is dull while the teacher is more boring . Well , I did n't like the teacher neither , especially today . After two classes , our task was finished so we went back to our campus . That means I ca n't go to the huuuuuuuuge summer sale once in six months which is right now at some wonderful and famous shops in Tokyo . Omgosh , it 's killing me . . Actually , one of the my foreign friends had never known about certain grammatical terms such as `` phrasal verbs `` or `` prepositional verbs `` before I asked him . So I guess it would be difficult , of course , but I do n't think `` it would be impossible `` to think in English . I only earned 500 yen ( 5 - 6 dollars ) with that in a month . `` what is your strong point ? `` Today , I tried theTOEIC test . He got a holiday before GW because plane tickets are very cheap . I do n't get a holiday before GW ! When She was working near the Uno port in Okayama she met the sargent of American air force during World war 2 . but we . could n't usually have conversations . In my book , they say that in Okinawa many people live until 100 and more years , is it true ? Of course Mickey , Minny Donald , etc . were also there . I 'm living in Yokohama ( next to Tokyo ) , working at game machine maker . I 'm writing a manual for installation , maintenance or conversion . My university does n't provide us with a good environment for studying . I was very disappointed . It is a university in America but there is a campus in Japan . Yesterday I put up the Christmas tree . when my daughters were much younger , I felt it was too big a tree , Because my daughters can do it themselves . But I decided to keep it every year , even if they leave in the future . I am hooked on vegetables On Wednesday I was sad . We were looking around the market . This is particularly in Japan . But when I went to university I learnt that English was especially important for my future . I can give my opinion in simple words , write , ( with mistakes , of course ) , and understand other people if they do n't speak too quickly . I learned it is important to believe each other and to make a good partnership . First , we are reading a book about stock for beginners . There are two kinds of people in this world . . Today was another horrible day at work . PS : Rewiriting or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too young , but I want to learn English very much ! ! ! I do n't think I make any progress at all . I enjoy studying English now . Anyhow , let 's pray for him because he died from the pressure of the mass media . My first diary Thank you for reading my diary ! However , this trial account is even more inconvenient than the Korean WoW server trial account . And , I can only make a n original character race such as human and orc , etc , but I ca n't create a race from the expansion pack such as Dreanai and Blood elves . First , I would type Torquay , after of all , there are some unnecessary characters , ' r ' . Hello ! ! Now , I 'm styudyng Korean in Seoul . I have been studying English in another country before . Writing , Reading , Talking , Grammar , Listening , or Pronunciation ? She is really beautiful , attractive , and fluent in English . She is the one who really encourages me to work hard in studying English . When I see her acting in movies , I feel that it is possible to master English if I try hard . Laterly , I feel very , very boring and upset when I have to study . I dont know what 's wrong , it is just boring ! Why is ' on ' used in this sentence ? My favorite bands are Dream Theater , Yngwie , Steve Vai and also like Bullet for my valentine these days . The differences between `` ( journal ) `` and `` diary `` A week later , I am absolutely disappointed and desperate . Instead , the hair designer ruined my hair . If I get PR ( Permanent Residence ) through RSMS , I need an IELTS score of 4 . 5 ( overall ) . It is a famous method also in Japan . Summer vacation for the elementary school that my kids go to will be over at the end of this month . I finished the test ! ! I 'm very very tired . When I heard that news , I could n't believe it . I bought some fruits and drinks for her in a supermarket near my house . It made me nervous , but it was finished so easy and early . I 'm looking forward to going there but forecast says it 'll rain both on Saturday and Sunday . It 's raining . I want to go home but it is raining . Damn ! I left my family when I entered college in Tokyo . I moved to my next apartment when I graduated from college and entered my current company . cause and because how are they different ? and if you have some examples and can give me some sentence using the two words that would really make me happy . Thank so much . And I think it 's one of the best dramas that I 've watched . And I love when he plays the violin ^ ^ Because I had n't thought about it before . I read books on the couch outside , had breakfast and lunch by myself , worked for my professor on my laptop in my room , took a nap for 20 min and played basketball between study time . I thought Pruett 's house is the best environment for improving English because a lot of students visit their house and I can talk with them naturally very often . Yesterday I had an entrance ceremony for graduate school . Today , there are many useful tools on the Internet . I performed SAMULNORI at school with ( some ) Vietnamese people . In the afternoon , although I am not a Christian , I went to ( the / an ) international church in Vietnam . There are many tasks coming due . Rooney is wonderful ! ! Nobody opposes her topic , on the other hand , someone could oppose my topic ; for example , if you have a friend who did n't drink , this person can be checked instead of a driver - something like that . If she wants to make a speech about not drinking and driving , she needs startling reasons . We are not crashing the office or anything , but we just feel freeer than usual . All last week I was dreaming about stretching out on sand at a seashore . Yesterday was my friend birthday We are best friends because we have the same spirit of a social - worker and we share company problems with each other . However , I have to write about social problems for an English exam ; it is called IELTS . I remember my friend whom I met last Sunday in church saying , ' ' I 'm only a newcomer ( as well as me ) , so the thing which I should do is doing things which faced on me , I think . ' ' As soon as I woke up , my little daughter asked me , `` What 's for breakfast today ? `` I was thinking for a while and then replied to her , `` Let 's make pancakes ! `` We then took a bag of flour out of the cupboard , and a carton of milk and one egg out of the fridge . This is my fifth daily in English ! It was hard to write the daily for me because I have been learning English for a week . Recently , I bought an iPhone . I installed some useful applications , such as classic books for kids and dictionaries . but the episodes are saved on the recorder . Second , they usually have tattoos on their back , so if you want to know whether a person is a Yakuza or not , please go to an onsen together to check if he or she has a tatoo . Not all people who have tattoos are Yakuza . On Sept . 20th I went to Haneda airport early in the morning with my daughter and her husband . We were very disappointed and we had to change our plan . My One of my best Aussie ( Australians call themselves Aussie ) gave me that nick name . The relationship in the story is very complicated but the story reflects a lot of actual things . He earnestly took arithmetic and Japanese class . He excused his manner , but I did n't accept it . I complained to him too much . Tomo - chan `` wears `` the laundry basket like a backpack , and says , `` I 'm a turtle . `` The Japanese Ministry of Aguriculture recommends for the Japanese to eat breakfast until 9 o ' clock , so I tried it . scrambled egg with mushroom sauce , pumpkin and asparagus salad , miso soup , rice and a tangerine Now , I only make a lunch box and I pack it with a banana in the morning . I always go there by car with my . husband . Buying groceries for 7days , the luggage is very heavy . On the way home , It 's difficult to control the bike because of the heavy . luggage . Especially , I wanna ride on a roller coaster . : ) My daughter always wears a one piece dress . Some customers thought that I had a baby , because I had professional knowledge better than most mothers . The doctor took my temperature , but it was only 36 . 5 degrees Celsius . It was raining and cold . Do n't regret ( it ) , just do it ! Today I 'll focus on my balance . I want to write and speak in nglish fluently , because my dream is move out to the UK . I am so surprised when I read those statistics stated above . In my opinion , you are very busy studying and working a part time job , so you do n't have enough time to look after a dog . For example , although `` Annie Laurie `` is known as a nostalgic song ( ? ) in Japan , all the people ( or everybody ) in other countries may know it only as a love song . Japanese people often import songs from other countries , and change their lyrics to suit the Japanese people ( or market ) . The lyrics talk about trekkers on the mountains who climb the `` Nihon Alps ( high mountain ranges in Japan ) `` . Writing in english is fun for me . This band is definitely on top of its game : a handsome frontman , a magical guitarist and along with a bunch of Grammy - award winning songs have gained them international reputation . The guitarist Johnny did the best in defining Coldplay by his `` outer space `` playing style , which is simple but awesome . Normally , many bands ' 1st albums are full of noise and aggressive grooves telling how they are so tired of their own lives . I am going to Seattle this summer to meet a highschool classmate . I have no idea where to visit in Seattle . I want to make many friends . Hello ! first , I introduce myself . I failed in job hunting , and I realized `` I do n't have the talent and skill . I 'll choose the heart . It is one of the leading hospitals specializing in cancer treatment and cardiovascular disease nationwide . The main hospital of Samsung is located near Ilwon Station in Kangnam ( Gangnam ) , and we have 10 branches of the hospital in Asia . Currently , more than six thousand employees are working at Samsung Medical Center , and they are very active . My hospital is very supportive of me , and promising . In these two days , a Japanese teacher taught us , but in the next two days , a native English speaker will teach us . I awoke because of a big pi - ki - ji - sound . Though the space project is good , I sincerely hope for the research to cure cancer and tinnitus will soon beas soon as possible . I could choose between teaching my cousin English or selling umbrellas with my grandparents . Every time I teach him , it drive me crazy ! So , I chose to sell umbrellas with my grandparents and they agreed . Because I did n't know how to sell umbrellas , I sat on the chair and looked at them . I finally understood that selling umbrella required a lot of information , and I found it difficult to make an umbrella . A lady asked me which one she should choose , and I did n't know what I should say . I started learning how to use PCbecause I 'm going to get one of qualifications of Microsoft in order to get a job . The beginner course was too easy for me , but the intermediate one was too difficult for me , but I could enjoy both classes . It 's a big and nice one , but I felt the neighborhood around the skate park was insecure . I often saw police officers around there . She is a very popular singer in Japan . But in Canada or other country , students do n't seem to work or concentrate on just studying . If I tried any more , I would have definitely drowned . As soon as got back home , I went to bed and slept until noon . We ca n't afford to support old Japanese people anymore . Recently , electronic technology has improved so that it is usual for people to have a mobile computer such as a laptop PC or a cell phone . However , at around 10am , it was just after the listening section , I was deeply disappointed in myself . I was sitting on the farthest seat from the stereos . I think they may be feeling insecure about their financial base . Finding out that all the sprouts had wilted , he gave up taking care of them and he did n't pay attention to them anymore . I completely forgot to pay attention to them for two or three days . Do you know `` purikura `` ? The main idea was OK , but there were so many inconsistencies . I left home on my motorcycle and ran to arrive at work . however , others hold that there should always should be a formal distance between the teacher and student . I was impressed by the superb scenery there . I feel sorry for my mum . My children will participate in their elementary school 's sport festival on next Saturday . On that Saturday morning , my wife and I will get up early because we will make lunch box for my family . Their fathers usually have camera or a video recorder , and shoot a good scene . While I was listening to the radio while studying , I happened to hear that song . Afterwards , I listened to it many times while studying . That song supprted and encourgaged me while I was striving to pass . I read an article about people who work at the Fukushima nuclear power plant . They get only a 1 . 5L bottle of mineral water every day . I think there is a risk from radioactivity . It was before 7o ' clock but I could n't get back to sleep . When I was checking the web site of the local newspaper , I found an interesting article . I went to the theatre to pass time until my lesson . Docchi ga anata no usagi desu ka . Anata no usagi wa docchi desu ka . In Japan , most Japanese high school students study at their schools for three years . When they are in third grade . They have to decide which university 's entry examination they will take in December or January . I was supposed to transfer to another line to go back to Chiba prefecture . I just came from the company . I bought things in the Seven - Eleven in my building before I took a bus . Although I have a talking dictionary , it is broken , so I ca n't explain it to you at the moment . Sorry . I 'm want to study abroad , so I want to work more ! By the way , I took the TOEFL last month . I need to prove my friends wrong with my English . Because I told my friends that I will definitely speak English like native speaker . It is difficult to learn English . Only unmarried women can wear Furisode on ceremonial occasions . I have to prepare for this celebration because I 'm 19 years old now . So , now , I 'm studying a lot of things in the Meisei University library . What is your hobby ? My hobby is cycling . And he gave me a necklace as a souvenir . The names are route 70 and 188 . I already know I need to remember the routes . But today , I was lucky because I just waited 10min . The young male doctor I know is only interested in his career . with sadness , I could n't do anything well . From feeling like this , I ca n't do anything today , and I want people I know My thoughts and problems are progressing in both good and bad ways I think they have strong motivation for working and learning but they have no self confidence , so they can not try getting a new environment . They should have the power that they can still go to the future even if they failed . Now my wife is making preparation , making herself up , winding her hair . We will try to visit an electoric store and a drug store before we go to the firework festival . Patricks Day , Black Friday and so on . Let me make a brief introduction of myself first . My name is Lin but my friends always call me Linny , so you can call me Lin or Linny as you like . I love English , I hope I can make friends with some native speakers or English learners like myself . Maybe I have no choice except to surrender . I went to the library today and borrowed a book ! I 'm from China This is the second time I overslept this week . I do n't think I will be able to spend this summer if there is not an air conditioner . ( more natural ) So , I 'll try to not use an air conditioner in my house yet . Did you use an air conditionr yet ? On wednesday , at 5am , I will get up to travel by plane . But , the books I really liked as a young girl were adventure books . Anything I read teaches me something : different ideas , new ideas , understanding and knowing how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I will study English tomorrow . I 'm looking forward to Golden Week . wasting your parents ' money He was so angry when my husband and I tried to carry him in our arms becausehe wanted to walk wherever he wanted to . Last Wednesday we went to the playground where we could play soccer there . ( He always sleeps only 3 hours ) , I just caught a cold , so I did n't study well . I felt I wasted too much time . Some people said that they have a very good weekends . However , it is colder in January and February . . . The water temperature was still warm . It happens when you do n't want to tell a lie , but it 's necessary . Please correct me if I make a mistake . It was really hot and humid yesterday . I 'm interested in Hawaiian music and Hawaiian language now . There I will be working as / will work as a foreman on the construction site . When we were middle school students , though we had a long vacation but had to make up for the missed lesson . One thing I leaned there is how to smile in the office , which you use Levator anguli oris muscle when you smile . When I was sitting on the bench , watching the rain downpour , I thought that this was the first time in decade that I spent time just waiting for the rain to stop Watching the rain with doing nothing was very comfortable , as my mind washed away . It 's a good chance for me to learn English , and help people who want Chinese girl , born in Guangzhou and live in GZ It 's cool and clean . Today , I got up at 7 : 30 and ate breakfast , then I washed my face , changed & I greeted my boss who is in charge of financial department . Both cases are very stressful . I bought a text file input machine called `` Pomera `` . I 'm appreciative of the improvement of Intelligent technology . Chocolate , Candy , Cookeis . , Japanese sweets . . . But in English , does the term . . . Job responsibility `` really make sense ? What will everyone do tomorrow ? nowdays It 's a midern Exam term in kun university I have already taken the exam circuit analysis . computer mathematics . but now I ca n't sleep , , the reason is maybe I had drunk too much It 'll be morning soon . I need to sleep , in order to end today ( ? ) As soon as she entered the room she screamed , looking the wall . Most of the time I 'm not talkative . Now I 'm studying English . I always think that Taiwan is a country embraced by so many external cultures , so Taiwanese easily accept foreign things . Even my professor who is from America told us about this situation in class before . I wonder what you guys think of this phenomenon . Are Taiwanese xenomaniacs ? That does n't sound too hard , I could just translate my original report from Chinese ( in ) to English . . In the depressed end , there are only 594 words in it > < > < > < Please give me some positive feedback to encourage me ~ I 'll be fully energized ! ! ! The picture was shot in a trip in Thailand last year , me and my friends cheering together ~ I sensed a taste of Japan when I soaked in them . I also increased my love for hot springs ! I have taken on a very important and critical job . the number of customers reaches 700000 . I hope you will find happiness , because you deserve it This place has the beautiful sea , beautiful yards / gardens ( ? ) , and delicious seafood ! ! ! I lived with my grandparents until elementary school . I was the most popular student among my school classmates because I was the funniest in my class . I like travel , too , and I am interested in lots of places owing to reading many books . I need a help to correct my sentences . Een hartverwarmende video ( in het Japans ) If you ca n't see the `` Ranking `` or `` Footprints `` page ( s ) , please push the ' F5 ' key on your keyboard to refresh the page . He painted the pictures that were displayed in Amelie 's room . Do you know `` Amelie `` `` Amelie `` is my most favorite movie . This postcard is the same picture in Amelie 's room , of course . 2 : In the parallel world , there are NO SUCH THING AS creatures . When we were all full , the wife told us to wait a minute , because the hairy crab would be ready soon . Of course , it is very important and I will never deny the party itself . Look at Anna 's notes about her trip to Pradue and write questions for the answers . This is very famous Buddhist sentence . The horn of a rhinoceros is just one & strong , meaning solitude and strength . Actually I do n't know It 's because I went to bed at ten last night and got up at five . I was watching TV and I fell asleep unknowingly without covering my body with a blanket . After switching it , I could not use some of the applications . This is why I cleaned my room for the first time in 2 years . There is nothing but rice fields in my hometown , but I feel lonely for Tourism is not that big in Japan . The Japanese government wants us toproduce things like electronics . Today there is a drinking party Yesterday , I worked , in one day , 18 hours . They chose Bush as their president . . . And I think this song lyrics is cute , a little : ) I 'm hoping so much he 'll became popular in Japan . With fish or beans , you can taste it better . No one can expect what will happen . [ Now ] it 's time to rebuild Japan ! He lives in Sendai which has been suffering from the big earthquake . I do n't know why . Nowadays , I think I have been depressed about studying English and working hard at my office . Because I have n't driven the MT car since a year ago , my left foot shook . I can listen to a beautiful song and learn Englsh . I hope that everyone like me can use this way to learn a foreign language . Driving License As I remembered last year I went to take the test for my driving license 3 times . The first time it went okay . I passed the mutiple choice test then went to the driving test . Above sentences derive from `` URL `` So , I often go on business trips . To visit many countries is very exciting . I think that it is easier to learn French over English because my mother language / native tongue is Spanish and is similar to French . About nuclear power generation stop all nuclear power plants ? As far as Fukushima nuclear power plant is concerned , it operated My son got the flu last thursday . This winter ( holiday ) I tried Acupuncture and Moxibustion to help lose some weight . . . But it 's an important part of old Chinese medical science . A man was walking with his black dog . I attend a class to practice my oral English . because I met my ex employer when I worked at Jinsoo acadaemy for 4 years . He is still a mentor to me . I 'm looking forward to getting a free coupon for SC2 A few days ago , I met a friend of mine and he said he will give me a coupon for SC2 . Actually , I really like this game so I thought if it is possible , it will save me money Sometime , I went to the PC room with my friends to play the game . I think it 's very important to explain my thoughts to other people . For example , why do I want to be a medical doctor , how much do I study per day and what do I do when I 'm tired of studying . I think I spentd quality time with my friend . I made it yesterday , however I could n't eat it completely , so I ate it today , too . Their parents were younger than me . Some of the students spoke to me . And some accessories on my ear and neck ^ ^ < < All school students should study practical skills such as car maintenance , managing a budget , and accounting , along with with traditional academic subjects . I can clearly remember that day and that moment . On the menu , I found a ginger - flavored drink without alcohol . Various types of wind - bells are exhibited and sold there . We can hear Christmas carols everywhere we go as Christmas draws near . What will I do on Christmas ? YUKI is only guitar singing . I want to go todisney land in America and China too . I was feeling was so happy that I forgot about my cough . conventional wisdom On the other hand , they have gone through to the final . My first diary These movies were made by Japanese students . Because today is the day before the holidayfor children . The rain forest is also an important earth resource . I will go to a park in the neighborhood near my house to play catch with my boyfriend . Next term , I will be very busy . I have to prepare for the TEM8 and post graduate examination . I work at a restaurant as a waitress . Maybe that is why I 'm writing this diary . Three days after today is the moon festival , and I sincerely hope that I will be able to see the moon hanging in the sky , and smiling at me ! ! ! I was very happy to hear that and receive her letter . but exercise is good for our health and help your face look youngerthan you think it is . Chinese herbal medicine These days , I drink chinese herbal medicine for health reasons . 3 is a mysterious number . I hope we can have more chances to see each other , because we are family . But I am confused cause I have no idea how and what should to do . This is first time I write diary here . Today , I wrote a comment to other 's diary , for the first time . I could n't use Lang - 8 for a long time because I was very busy One of my roommates had an unfortunate incident this afternoon . But I should find a different way to solve the problem using courage instead of complaining . I share my many things with her . So , if you have time , please correct my journals . Today I left my class 15 minutes before it finished because I had to finish some homework that was due for the next class . The door was in the front of the class so I had to pass the professor to exit . I later found out the homework was not due today . This was because the House of Counselors election was held in Japan yesterday . On this site , we can build vocabulary and practice dictation . Now lots of Japanese are learning English on iknow , and if English speakers start to study Japanese there , we will be able to help or cheer on each other . Each team has its own stadium around Japan . Sometimes have to work till late , but I really love my job because it was my dream to join this industry ( I can watch the newest movies / tv programs prior to their release ! ) and my colleagues are all good to me . I do n't know if this character is a penguin . Even though I was feeling really lazy , I went there . I dont ' know whether she can remember me or not , anyway I feel happy to see her . Recently I have been watching American drama `` Lie to me `` . Especially Lightman ( He is the main person ) speaks very fast and mumbles ( not clearly ) . I am ashamed that I didi n't write here for a whole week ! : ( Does anyone know how to treat this bad illness ? . Which illness is that ? . Has anybody seen the film Brazil ? My diary . It is the first time Iwrite in the diary on this site . WhenI was a junior high student , I used to write my diary in Japanese and I quit . After that , I sometimes write my diary in English . It 's instructive for me to memorize words . I have many friends and when we met last weekend , we were smiling and joking , we had decided that : All will be well ! ! ! I really hope that our God helps us . I have become 24 years old the day before yesterday . Live and learn ! I should learn more and more things . She baked me a cake and cooked me delicious food like a restaurant . I 'm little shy , _ but it 's just that some people do n't real know me . It was funnier was when I was walking in front of her house and I passed by the window where he is placed . It 's simple , friendly , easy , sometimes exciting , and sometimes emotional . I am studying English . public lottery I buy tickets for the public lottery . If I were to win the lottery , I would want to travel . yesterday , my skype establishment has no image . That 's miserable . Therefore , I draw picture with photoshop . Oh , sorry Ms . I felt it was difficult . Second , some countries require children to do military service . I think that good education is to present many subjects for children . In Japan , the Emperor declared that we wo n't take part in any war , so Japanese do not have a conscription . Japanese children learn about the wars in school , but those knowledge are important history . Japanese will think that wars are not good , so we do not have to take part in any war in the future . I am very much confused about can , could will , and would forms . I 'm a university student . I will probably be exhausted , but it will be exciting . I usually spend time watching DVD 's of American drama to study English . He made three rules : do n't be late , never be absent and do whatever he asks . From now on , I will put the posting dates as the titles . Dictionaries define it as something fortuitous that happens unpredictably without discernible human intention . Finally , I cut my forsythias , my Japanese apple tree , my lilac , and my thuyas . To achieve a certain goal , we should make an effort even if we are poor , miserable , or the road is hard . Recently I have been seeking a new job which requires me to use English . I need to get a high score on the TOEIC test next month on Sept 11th . This club 's name is `` English discussion project by a student . `` I said to an advise , . `` Sorry for the short notice . May I take part in your discussion as a club - member ? Tateishi is a city for blue collar workers who wanna drink alcohol delectably and inexpensively . I feel my brain has completely switched from English to Japanese mode . Because I love music I want to understand lyrics . Because my older sister married an Italian I want to speak with my new brother . . . It has a beautiful and magnificent melody and romantic lyrics . Our teachers gave us 33 words on the board , and let us choose 16 written on the paper , and if four of the words were as same as the ones that they announced to us and they were on one line , we said Bingo . Then he would go ahead and announce the words until one of us had all 16 words We had 3 teams competing . I also want to improve my spoken and written English . Of course I sympathise with the main character , he was so brave to overcome his phobias . She took the test seriously because she wants to study fine art in France in the future . Finally , what I want to say is `` Hang up there ! Today , my teacher told me that this website is good for learning English or other languages . I feared that she might have investigate whether I was occupied or not . I was very grateful to the receptionist for talking as if I worked at the office still . I answered , `` I see . Even though I called the office at 5 pm , the automated appointment system automatically told me that my appointment time was at 8 pm . ( When the office are already full of patients , the system does n't accept me . ) I picked my little daughter up at her nursery school first and I went to his elementary school . `` His fever was 38 degrees C at that time , and now he developed 39 degrees C . After returning home , I left my little daughter with my husband and took him to his home doctor . At the office , there were so many patients . When he listened to my son 's heart with a stethoscope , I saw a fresh wound at the tip of the doctor 's finger . I thought that he was working so hard even though he was over 60 . If his fever goes down , ( usually his fever goes down in daytime ) I 'm planning to take him with a buggy . Cold Weather In Kyoto , there are many historical monuments , shrines and temples . After that , I watched the movie `` high school musical `` in my room . After the object was gone , we started to see a series of images projected rapidly in the sky . Hi everybody , it 's my first time using lang8 to make friends . Starting tomorrow , I am going to stay in the dormitory of my university for the summer vacation period . The reason why I decided to stay there , is that I just want to focus on studying my major . My dream is to be an English teacher AND I am already a junior , so I should prepare not only for graduation but also for the teacher certification test . Have you already received a call from him ? He 's studying Japanese very hard ! ! ! I sometimes eat it McDonald 's . They started to grow lettuces to use their hamburger in a shop . Today , I went to a museum for celebrating cultural day myself . A few days later a beautiful girl appeared at the grandfather 's house . But I wish for you to never look while I am weaving . They could hear sounds of weaving . In my recently watched movies , I liked `` Milk `` and `` Changeling `` . Mathematics and the Russian language are compulsory for all of them . I believe that sincerity could touch god . enjoy home party sometimes . My apartment is not so big , so a maximum 4 people was OK . I was excited about inviting my friends over again . Nights in Paris are becoming a part of my dreams . . . Fall is my favorite season . First is the color of sky is very beautiful . Second is the color of leaves is so beautiful . Because of it , I ca n't get motivated to study or play sports . It 's now clear to me that the most important thing is staying healthy . ( - _ - ; ) I 'm always told `` Do n't follow strangers whatever happens ! `` by my mother and teachers but it was an exception , is n't it ? We had our senior graduation ceremony on March 16th and it was very important for this school . All students try to study or practice club activities till the ceremony and promise that we 'll be the people who contribute to world peace forever . But , students ( excluding seniors ) were n't allowed to attend that ceremony . There were a lot of things which made us sad but we never gave up ! For example , we do n't have enough electricity because of the Fukusima Daiichi nuclear power plant disaster but we try to save it . Took an Engilsh Lesson . I 'm gon na write a diary about my English lesson yesterday . My first diary on Lang - 8 I learnt about this site yesterday in amagazine . Lang - 8 is introduced as a good site for learning english for free in this magazine . So , I registered on this site to study english . But , unfortunately my english skill is poor and not good enough to conduct business . I would not recommend you to use this word . On Taketomi - island , we stayed in the Japanese - style hotel and enjoyed swimming in the hotel pool and beautiful sea . Nowadays one of my British friends want to speak with me by Skype . I will write it in confusion , and the composition will have never have a theme . Thirdly , my listening abilities are terrible , so I am afraid of talking to anybody in English . I also have n't made visible goals to learn English . I think that when I achieve a higher level , I will not be able to continue learning . In ' process oriented writing ' , students are required to revise their draft according to the feedback given by peers and teacher . Through this procedure , they can improve not only their writing skill but also the communication skills by having various opportunities to interact with peers and the teacher . Natural order hypothesis states that the acquisition of grammatical structures in a second language follows a predictable order . She ignored the fact that learners were not ready to acquire the grammatical features she intended to teach . Before I came to New Zealand , I organised a homestay for only 6 weeks so I have to leave tomorrow . I got myself a summer vacation by a miracle . ( call it a miracle because I 've got this kind of vacation for the first time since I became a doctor . ) Lang - 8 does n't send a message to everyone from a mobile phone . I will send a message and correct everyone 's diary tomorrow or the day after tomorrow . Yesterday , I ate sushi first time in my life ( I know that is a little shame , because I 'm fan of Japan culture and . . . Weather is strange sometimes . In Japan there are some bars or restaurants where you can eat raw meat like Sashimi beef , chicken or horse ( but not pork , I think ) . They said that comics were less refined than literature books and that reading comics made children less smart . Teduka was also an eminent doctor , which made the criticism die down . I wonder if it is a problem I have ( I 've ) had since primary school , and it 's probable / likely that I will need to begin practising . The goal of this game is to arrange bricks the same as shown in the corner , by picking up , stepping over , throwing bricks , etc . During this weekend 's holidays I had a good opportunity of going a civic concert which was held on a hall in a down town , My sister in law lives in the city though she took part in the concert as a performer . And I also want to make different friends from other countries . The 70th anniversary of the birth of John Lennon is Oct . 9 2010 . Speaking of Jojn Lennon , here is `` Imagine `` . It 's the last week in my own city , before I 'm going to move to a big city to study . Mushroom - picking was difficult for me . But purple is different . Purple is eerie . She proudly talks to me with a smile or she seriously talks to me , and she looks like a swagger woman . Every middle school teacher uses this phrase for teaching students the basic structure of English . And other examples of conversation in reference books are more weird and bizarre . I will graduate in 4 months . I also need time to improve my english , only do better and I can find a good job . I love English and the culture of English - speaking countries and also my own language and culture . in recent personal changes , I have changed my task . It 's pretty exciting ! ! Actually , I hate summer because in Japan , it is very hot and humid . I want to know about your country 's traditional New Year 's Day . so skiers from foreign countries came to my town to enjoy the snow . My hobby is reading historical novels . Recently , I am interested in the history of France , though the history of Japan and China are my main interests . Anyway , I 'll write about TABLE FOR TWO ( which I 'm involved in ) next diary . Although it is not a Taiwan 's based client , ( Chinese client ) I can still play it . Thanks to the public holiday , the restuarants were n't crowded . It 's not nonsense , Navi means butterfly in the movie too Today , I 'll tell you about a Japanese famous comic called `` ONE PIECE `` . For the first 5 minutes , each of us made a sequence by ourselves . Then each team had 20 minutes to discuss , make a final decision on our team 's results . We had to choose one member as our spokesman to make a short speech about our result . But , it was hard to get that kind of chance because someone would start talking before the speaker finished . The first time I called , no one answered . Besides that , two of the many questions he asked me were how I made the number for salary expectation and if that was reasonable . Also I will help anyone who studies the Russian language ! My friend recommended Lang - 8 because he knew that I 'd wanted to make a foreign friend and improve my English skills . Tonight , I walked along the river , enjoyed the wind , and relaxed . He speaks fluent English , French and not fluent but he speaks good Spanish . I speak fluent Japanese ( yes , I 'm Japanese ) and `` fluent bad English `` . . . I got holiday for a five days . Whenever I needed to celebrate something , I liked to buy shampagne . What are your favorite drinks ? although the bill is controversial , goverment passed the bill that minors ca n't play the game during midnight after 29 , april , 2011 It is expected to curb the habit of minors who play games for a long time My daughter is 10 months old . Jindaiji park did n't seem like a place that is only 30 minutes from Shinjuku , because the area was very calm and has an old traditional atmosphere . Recently I watched a movie titled `` What happened in Vegas ? `` I have some unfamiliar expressions and grammar points . 2 ) I think this grammar is incorrect , right ? I also drink a coffee that I bring from my office in a water bottle . `` Into the wild `` , `` Samsara `` ( by ) Tomka Michniewicza and the `` Lord of the rings `` trilogy are my favourites . I try to read regularly . I Promise ! ! To tell the truth , I used to go to the same gym 6 years ago . Why did this happen to us ? I learned that troubles give us pain as well as a lesson . Would you visit Nico Nico Douga ? I 'm going to meet a new friend that I met at a bar last weekend . he is from Russia , and is a student at a university in japan . The TOEFL was canceled due to the earthquake and limited electricity in Tokyo . JAPANESE PEACE I 'm not quite sure if foreigners make peace signs when taking a photo . It 's interesting . Long flight The novels were written in Japanese . Because I study English these days , I always read children 's English books . While I was alone I was desperately trying to work for a greater good . That thought made me sick to my stomach . The words seemed strange or even distant , like they were addressed to someone else . I wonder , do I really deserve this ? I was so surprised that someone actually thought about me , that I counted somewhere somehow . I really appreciate everything and I will try to be a better person . I was trying to change my password for my Hotmail account , but then I could n't enter my ID even though I remember my password correctly . I would like to cry . When a customer sends me e - mail to me , how can I get it ? I felt so lonely ( facing this day by myself ) I missed my parents and friends . Happiness is important . I 'm lovin ' it ! And , I 'm lovin ' it . I seriously need staple foods . It is one of my favorite quotes . When will that dream come true ? A few days ago , I started to learn Russian . I 'm learning English because I promised to practice English with my uncle last year . However , my fridge was almost empty , so I needed to go shopping . I am attached to my club because I feel warm - heartedness , friendship and affection with seniors , juniors , and companions there . Anyway , Thank you for reading my writing , and I think my writing has many , many , many errors . Perhaps you know , that was because there is a story that an earthquake will happen in Aichi or Shizuoka prefecture . because I ca n't go outside so maybe I 'll study math , society and histroy I would like to have a friend like her ( * ^ _ ^ * ) / And then , I ate lunch and went to English school . After the dentist checked all my teeth , one of the dental hygienists cleaned my teeth and scraped some tartar . I want to watch this movie in theIMAX 3D theatre , So , unavoidably , I will watch it in Ilsan ( Which located near Seoul ) this weekend , but I wonder whether it will still be screeningthen . I think the all children love today too . When I was a kid , the happiest day was Chinese new year . Needless to say , it does n't matter what color you are or which nationality you are because color is just a concept and we are all special , but sometimes it seems to be a little hard for us to understand and acknoledge differences because of the lack of the oppotunities to interact with people of other nationalities . I saw my class is very funny . They were always yawning and their faces looked like they were miserable and bored . Looking for a Roommate and a Stadium Also , looking for a roommate is a sort of frustration . However , it 's not easy to find a good friend ( roommate ) . Today is application day of & nbsp ; theTOEIC Test . The effect of Global warming causes this abnormal weather . I was startled but then noticed that she learned the phrase from a children 's TV program that introduces classic Japanese poems and literature in a memorable way . He died early ( around 29 years old ) , but he did a lot of things to change Japan . Then , my daughter said with smile that she was looking forward to the next day because she did n't know what would happen . It 's amazing that they held a concert in Taiwan . In Taiwan , not a lot of people know them , so when they came to Taiwan , I was so excited ! ! I hope other foreign musical groups , can always hold concerts in Taiwan ! ! I found the movie mature and really touching . I think I am fat , I should do exercises and eat more healthy ! . I 'm study in the University of Arts of my country , I 'm learning song lyrics ! . I have a two best friends , they are great girls ! . My family is very very big , although currently living in my house is , my dad , mom and my sister . Today , I am going to Sapporo for shopping . And none of them are even pretty ! It 's only the ugly men who want to meet you ! Amazon has started the bookreader 's business . A friend of mine and I did n't have enough time to prepare for this trip , so we booked a bus tour to see The Great Wall . She is a very kind person , and is always willing to help people who need her help . I think friendship is the dearest possession of one 's life . He introduced me to this site and told that I should try it . I also logged in Skype again , but I just do n't know what to write today for I have n't kept my diary updated for such a long time . I received a postcard from my old friend . I planned to visit Singapore in the middle of May . Until recently those were only used by housekeepers and the industry sector . Now that the flu news spread all over the world Mexicans are treat like leprosy . Rachael ' . In addition , Rachael had been pregnant by Ross who is one of the other friends and ex - husband of Rachael . `` Staying healthy is most important in our life . `` I totally agree . . . . . . . . . I 'll do the laundry and clean up the room . But I ca n't return to the nice rhythm of life . So what should I do ? Actually I really appreciate him because I knew he was always taking care of me and trying to encourage me , and he did his best for me . I think my speaking ability is getting bad . The teacher was my husband 's boss ' wife . Who can tell me how I can improve this ability ? ( I accept recommendations for places or courses : D ) I will start to try writing entries in English . Time flies away . Half of my vacation has gone by . I travelled and spent a lot of time with my family and friends . . . Now I have just one month to relax and do something I really want to do . Therefore , I am trying to decide how to spend the rest of my vacation . Should I do an internship or just stay at home and learn something ? Actually , I want to do both of them , but it is hard to do two things at the same time . If I do an internship , when I come home , I will be so tired and exhausted that I wo n't be able to study . Okay , I found the solution . . . Maybe I should try to improve my English during the rest of my vacation . During two weeks , I ate lunch in our workplace . I have asked my teacher this question . I think this is one of the strangest things in Japan . It would be very kind if you could check my grammar and vocabulary for me . My answer is absolutely `` yes `` They , ( people ) , do not just suddenly come up and become your friend . Of course sometimes we fall out over some small thing , but we understand what kind of personality each of us has , and so we can soon make up again . I think the meaning of a real friendship to me is , whatever you decide , friends should always respect your decision , whenever you need help , they should always try to help you , or ask someone else to help you , and wherever you are , your friends should always be in your heart . I 'm watching The Simpson 's family on TV now . The Simpsons is an animated film . My purpose of learning English is to study abroad . How am I memorizing words ? First , I read the textbook of English words and check unknown or vague words . `` Again `` cards are checked repeatedly everyday . But I recommended her to see a doctor before it gets any worse . I read a sentence . I am at Changi air port . Please check my diary ! ! My mother - in - law sent me a text message which said `` Happy birthday to you ! He wants to give me a surprise , I guess . I will probably get something delivered . And I do n't understand the difference between `` my mind `` and `` my feeling `` . But in the US , we celebrate new babies before they are born and it is called `` baby shower `` , is n't it ? The following is just something I heard from Korean radio program . Unfortunately , she loves cats . They are going to pay up to $ 2500 to patients if the patients qualify . So , the way things stand now , we do n't need to be so careful when we walk around outside . Even in the center of the city , I 've hardly ever seen someone commit a crime . So , they are fulfilling their responsibility to help this country be secure . And also , the tender and calm disposition of Japanese people contributes to safeguarding this country 's security by adding a synergistic effect along with the steady support of police . It would have been an honour and pleasure to just to be on TV alone , but they also kindly offered to pay me . I changed to playing volleyball . Some classmates were there already . Tanabota 's probability is supposed to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . To my regret , I drank all my medicne . So , I 'm going to eat some hot things . I could n't go ahead because they had been waiting to pray for a long time so we also had to wait for a long time . While I waited to pray , I felt so cold . After I prayed , I went a cafe restaurant and drank a coffee . I hated English at school , because . I failed the exams . The students who can not come to school will be behind . Jazz concert and New York `` I do n't know the difference between US English and British English . Sometimes , I wonder if it 's too difficult for American people to understand British English or for English people to understand US English . `` `` I can not differentiate if it 's US English or British English everytime I listen to someone talking in English `` So many things have happened since I last wrote in my diary on December 14th , 2010 . Careless me It could be a good resource to make a money . When I was a high schooler , I studied English to prepare for college entrance exams . I used a running machine and ran a long time . I completely feel like dieting is not easy . Hahaha ^ ^ ; ; How can I study well with this health problem . At the beginning of this vacation , I had a detailed plan : sleeping time , study time , everday workload . . . It seemed to be favorite content for girls , because it was composed basically of the love story . I went to the concert of the circle held in Kyotanabe campus at Doshisha University last Saturday . This is my first diary We met with our relatives and talked to each other a lot , as well as cooked and ate a delicious meal together . It is difficult to create a story quickly . They proved to be congenial partners , and they gained both a nice song and true love . It did n't matter to him if the others did n't understand , it was enough if just the woman knew . In my company We work at an agricultual facility to store rice until the harvest time . So I worked there over night . My first diary . It 's an important message , is n't it ? The massage fee is very expensive , but I will go there again . So please add me as a friend and help me improve my English . Today I did away with some of my clothes and accessories . Just to make my muscles a bit more stretchy . I 'm a graduate student in Japan , I use English everyday for reading papers of my major and speaking with foreign researchers , so I have to build up my English skills . = > I live in an apartment . Do you think apartments are the safest housings ? I can listen to music , take pictures , draw a picture , play games , plan a course , check weather , etc . . . . . Lang - 8 's update information . I hope these documents can help or what else do I need to do ? Also , I 'd like to know if the hospital where I 'll take my exams is part of your coverage , inasmuch as I already have an appointment to do these exams this Wednesday at 8 : 30 am , Thanks for helping me . I organise these classes by myself at the local community center . Maybe because I can speak English just enough . Music was great ! ! But I could n't understand what he was saying . That 's does n't make sense at all . . . My listening comprehension has gotten worse . I never thought that before I came to Australia . I took my mobile phone out of my bag and tried to push the button to call the police . The doctor diagnosed my illness as `` noro - virus or rota - virus `` . Some people claim that it is necessary to know what is going on in the public through the infomation listed on advertising . Thanks to advertisements , humans can gain the latest information efficiently . As a result , that information brings more comfortable and fruitful lives . On the other hand , there are many disadvantages to travelling by bicycle . Firstly , riding by bicycle can be dangerous . because bicycles do n't have roofs , unlike other types of transport . I had never hospitalized , _ because I had been healthy till then . First , garlic fried . Second , sausage fried . Third , tomato fried . I went to my mother 's home from Friday 11th to 13th of June to particpate in the reunion of my Junior high school class which was held on the night of the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on Sunday morning because my home town is Shimoda , three and a half hours away from the center of Tokyo . I set my alarm clock for four o ' clock , but I noticed that she had already got up and was doing something in the kitchen ( even ) before four o ' clock ! I knew this because I slept in the room next to the kitchen . Then she called me from the kitchen `` Are you all right ? fm , but the service is like a textbook , there is no communication . But I 'll have to go to work tomorrow . I usually think of some Korean sentences I 'd like to translate into English while walking alone . It 's organized by four Koreans I 've never met before . If I am free today , there is no problem because it 's Sunday . Because eating eggs is a traditional custom in Chain . On this day , I can eat a lot of delicious food and get many gifts . Although we do not together , but he can remember to me , I feel I 'm very happy . I was surprised by it . Because I feel the cold or . . because I am nesh . It is famous for its mandarin oranges , rocks and beautiful women . Stay at home with my son . I love American movies , and the most powerful thought driving me to improve my English is that one day I will be able to enjoy American movies without chinese translation . But now I feel I am gradually getting mature . I can now understand and know a person . I will try my best to find a solution to every barrier . Afghanistan . . but I want to be able to listen at this speed ! A friend of mine told me that it is really catching on . It looks boring , ha , however I understand how it works to attract men . Many people smiled and looked at her crawling . You can get to there in only 50 minutes by ferry from Singapore . `` All inclusive `` was comfortable for us . We did n't need to be bothered with money , so we tried various cocktails ( as many as we liked ! ) and a lot of excursions , for example snorkeling , sailing and so on . We found a snorkeling point in a sheltered rocky area just by the beach , so we were able to see lots of fishes . After snorkeling , we always had sweet cocktails at the beach bar . Pho is very good . Fried banana tasted very good . His condition is obviously bad . His talent and experience is undoubtedly best among the team . It was no problem with the group league because Japan was going forward to next round step by step , but now is a tournament . I think he should be unlisted from starting member once and feel refreshed . I am going to university Fighting Against A Sleeper I try to not to fall asleep but I ca n't lol I can open my eyes in English calss class , but another classes make me sleep because I 'm not interested in them , especially sociology ; ( Maybe I dislike it in the world . I attended my all classes . Yesterday I attended a wedding with my parents . We did a lot of activities to celebrate the marriage . However he spent a lot of it for private purposes , and the company found out . Before this , I thought only a professional could create a game . I do n't speak eanglish very well , but I am trying to learn it . The job is to let many people know a town 's good points , so my employer wants me ( us ) to appear on the radio to inform the activity . Though I did n't understand exactly what it was , I understood they celebrated something today . One of the humorous parts of this book is the gap between the common kid and the Go master . The treatment finished incompleted : - O My mom was angry too . I think this web site 's idea is wonderful for learning languages and making friends from all over the world . Short diary Do you have your profile , where you can write short menssages ( at most ( ? ) 140 characters ) , and that messages will be displayed for all your `` followers `` ( people who follow you and have acess to your updates ) . And you can read the messages of the people who you are `` following `` . Twitter can bring to you great information ( news , reviews of products , constructive opinions ) but can equally bring useless garbage like what your `` following `` is doing at the moment ( for example eating breakfast , who cares about it ? ) Today is July first , and the sun is so strong . The heat made me remember something from last summer . It 's a little hard . So , we began to think seriously about the job . My grandfather is 96 years old . He also talks about World War 2 ( or WWII ) , recent economic developments in Japan , and memories from his childhood . She was robbed twice , one of her son married to a caucasion girl , and her credit was terrible . I saw that the sky was quite blue , and seemed very far . I want to go to foreign countries . There were many people who believed it . I think marriage is a very important family event . Why do you learn foreign languages ? I 've heard the English sound since I was child . I 've wanted to speak English since I was child . It was vocabulary , grammar , reading , and writing . . I did n't have an umbrella with me , so I went back to my house being drenched with snow . I would like to read `` NY Times `` , `` Wall Street Jurnal `` , and `` News Week `` without using a dicitionary and would like to watch `` Roman Holiday `` without Japanese subtitles ! my sadness I 'm a boy in China . Even though I have been learning English for 10 years , my level is still very low . Learning English is difficult for me to some degree . I 'm going to the Aquariam , Museum and Art Gallery with friends . Yesterday , I could n't concentrate on my work . Recently , I have lacked concentration , because my relationship with my partner has become serious . Hello . It 's been a long time since the last time I 've been here ! He should n't hold mum in low esteem . My Introduction . Because It 's very fun when I perform at our concert . But I have a little bit of time for myself . Please teach me English ! In order to use internet via iPod Touch , wireless LAN is necessary unlike the iPhone . But now I feel even more willing to continue my studies and finally reach the level of Japanese that allows me to converse with native speakers . I watched one episode after the other . Yesterday I went to the New Culture Square to watch the Firework Show with my friends . but it is so difficult for me . Generally , stupid Japanese students who are learning English almost ca n't speak English at all . To master another language is the most difficult subject out of any other subject , such as physics ormathematics . Tomo : ( Hey somebody please kill this stupid Japanese bitch ) Hey wait , you still can ' tunderstand English at all . Sometimes , we need an explanation about English grammar in Japanese . Business Trip I must help with the construction of Chuo Highway . Both the brighter and the darker side , so I know how desperate I am when someone say something to me , as well as how much I want to give up when I meet an obstacle , in addition to how bad I felt when I was blamed and disapproved . It 's been raining all day today and it 's around 60 degrees , which is kind of cold for here . 1st , I listen the dictaition of English book which is TOEIC text with reading it . I try to practice about five dictaitions every day . However , I would like to make friends through Lang - 8 . Europe , as Motherland of football always have been showing their strengh . I overslept today . I also overslept last week too . On Thursdays , my first class starts from 11 : 00am , so I woke up at 8 : 00am to go to the university . I am disappointed with myself . Chakras are located in each auric body and are responsible of retaining and metabolizing the energy a body needs to work optimally . Usually the literature about this theme describes chakras from the emotional body as the only existing ones . In each aura layer , that has one level of specific frequency , we can check the existence of [ other / different ] frequency levels from seven chakras . I am Japanese college student . I am listening repeatedly to a song in the album like to listen to YUI , I recommend this song . It was said that there will be a Gemini meteor shower ! I like meteor shower . Today I ate hamburger with my wife . I have not ate hamburger for a long time . In Tokyo , it was snowing . It was very difficult . So , I was worrying about the result . I had a good time and it became a memorable day for me . I do n't have enough time to prepare for the test , but there are a lot of assignments that needs to be done . So we need to follow nature in a sense Ever since I was a high school student , I 've been playing electric guitar with some of my . friends . And I think these tastes are greatly influenced by each country 's cultural background . Some Australians actually have been attacking Japanese whale ships using illegal methods such as ramming and throwing chemical bins and turning on water hoses . Their organization sunk Iceland 's whale ship by using underwater mines that are a complete crime . We had a sports competition at my school today . as long as I try to do as above , I could achieve it . But it 's I have to use it for writing diary entries . I sometimes use my English knowledge at work especially when I have She is a graduate school student at Tukuba University in Ibaragi prefecture and she majors in physics . She studies global warming in detail , and she has been in Germany since last month . I am always motivated by what she does . I studied English on the Internet which by taking English conversation classes through Skype from 11PM - 12PM . I played basketball with my host family 's children . They are 7 years old and 4 years old . They invited me go to play basketball . Have a nice holiday , everyone ! ! daft punk is really cool The land of Tuareg extends to Mali , Nigeria and Libya too . The Tuareg had lot of trouble in Mali , so they had some revolutions there in the 60s , 80s and early 90s . The group Tinariwen have members from Mali , but the leader lived most of his life in Algerian Tuareg territory after his father was killed in Mali . Today , I learned cosh . Yesterday , the weather forecast said it will be 28 degrees in Tokyo on TV . I like watching and listening to rakugo . I wanted to tell everyone the magnificence of rakugo . . . ! Monday , Thursday , and Friday , I have a class in the morning and Tuesday and Wednesday , in the afternoon . Today , I studied lots of vocabulary , for example the name of food and clothes , in Spanish . I want to speak English and Spanish and of course Japanese : ] Whatever it is sad to realize , but for the last 4 days , that I spent on this site , in my posts there was only one correction . Recently I would say that spring is aroudn the corner even though today it is still the beginning of February . I do n't know if this is the bay area 's typical climate or if it was a mild winter . More specifically , nowadays the citizen 's levelof education is increasing , whichcontribues to the enhancement of the nation 's competitiveness . Besides , the ever - increasing house prices , economic problems also make modern people feel under endless stress . In conclusion , if employers can stand at the position the employees , it can reduce their stress , and at least make them feel that what they work for is worthwhile . The story is interesting . `` He liked the expression of trust on the woman 's face as she lay in the water unprotected , exposed and free . `` We do n't have articles , prepositions , modal verbs , participles , etc . His breath was so gentle and he looked so fragile and vulnerable . I know that I am a bit coocoo haha but it was about . . . So , that 's it , trauma . Japanese themselves are n't soo scared , but I am here acting so ridiculous ? I held my breath , looked straight into the screen for hours . And , at that point , I became brave and ready to go forward no matter what ! Human capital has a high rate of return and positively affects the growth of the economy in spite of the obvious imblance between human capital and physical capital in China . Countries I really want to go are places near beautiful seas . I 'm not sure that I can write diaries everyday but I 'll try and I hope it was a really hard day for me because of exams anddd quiz as you know . . . Actually , I am a little bit worried about the crowded shopping mall , but I still hope I can buy many things at a good value for my money . Recently , the big event r finished . I thought of it last month , but I did n't decide at that time because I heard rumours of cheaper Macs . He said he went home with one of his friends . His friend had lost an arm and leg during the war . I am late , but I am lucky . The others did n't leave without me . My favourite Ramen restaurant My cousin taught me how to write longer sentences . She is the biggest pet in my house . I can not sleep because of jet lag . they helped in my physical limitation . Third , my listen ability is terrible so I am very afraid of talking with somebody in English . Fourth , I ca n't use the punctuation in the right ways , so when you read my diary entry you might feel confused . That 's why I read the article difficult . ( ? ? ) Seventh , I have n't the visible goals to learn English . And finally , I think that when I get to a higher level , I wo n't always be able to keep it up . I had two bowls of ramen and some rice . I felt sleepy in the afternoon because my stomach was so full . Tomorrow , I will practice driving my car with my husband . So I think that in Japan we should depend on lawyers instead of citizens who are amateurs . I heard the Eikaiwa school keep opening . So I decided to go to the Eikaiwa school last night , nevertherless the school was closed . Now I am working in Beijing , and I want to improve my English . also , l think l made some mistakes . First I got up late and when I was in a class , the teacher asked me the meaning of a word . I always think too much and hesitate when I speak in English . So many people like Japanese ! I 'm a beginner in English . My parents were worried about me because they thought that I may not have been able to get any jobs . I 'm happy that I have a job , but more than anything , I 'm happy that I can make my parents feel relieved . My position is guard ^ ^ It is difficult to study two foreign languages . My English structure is terrible and a nightmare . I 'm awating the delivery . However this game is different from any other game . Because it can be used for exercising . Using it , I can do yoga , boxing , bowling and muscle conditioning . However using the Wii I can exercise at home . If someone is interested in studying in Japan , consider this university ! The complete name is `` Akita International University `` ! passionate and got a load of energy . . I used to read his picture book when I was a child , and I am still interested in his drawings . He wanted to see Big Budha in KAMAKURA and eat green tea icecream again . It would be more joyful if there were some pretty visitors here . I also imagined that I was a CEO of big corporation but I went to work in orange shorts on a GT bicycle . I 'm really a crazy person . I like to play on the guitar , draw and play volleyball Peter 's stupid jokes always amuse me . When I was an elementary school student , I had homework everyday , especially to read Japanese text books to parents and give some comments about the reading . My favorite food . It is used as a medicine for India . Because during high school , students have to study under a tight schedule . She finished the language earlier than me . Usually Japanese do n't talk aloud about personal financial condition or appearance . The other day , one of my students said that he thinks the woman who likes rich men is a realistic and steadfast person , because rich people can be happy in reality . A roommate of mine turned on the music loudly and that is what woke me . My favorite place to relax It is so comfortable . My dear daughter , I wish you health , luck , happiness and love . Nowadays l 'm studying English very hard . The main reason I am learning English is so that I will be able to speak it . Last Saturday Night 's Illness MANY PEOPLE ARE IN HARD SITUATIONS ! ! `` But almost nobody donated . So I guess the students got a few thousand yen . please become my friend . This is a book about trips in Thailand . Poznan 's championship I volunteer to help organize the canoe sprint championship from 26 . 8 to 30 . 8 . I think that we ( the sportsmen and I ) could talk about rowing , canoeing and sport overall because in junior high school I trained in rowing and generally speaking I 'm an active person : ) He can speak French so fluently ! I payed too much tax , so the money will return to me by applying it . I belonged to english speaking circle last autumn . I really prefer to stay in a room because I think it 's more comfortable to sleep on bed than on the ground . I 'm from Japan . I had been writing daily , but there was a webpage error . I think we all want to pay attention to this traditional festival but we ca n't because the government wo n't permit it . - We think the house will be comfortable . He was the only one who graduated from university in my hometown . ( Not sure what the latter part means . . . ) Thank you from my heart , my good example . After eating lunch , we went to household appliance store to see smart phone . Docomo started a campaign and I can buy smartphone cheaper than usual if I buy it during August . The bus is the cheapest way to travel . I like the atmosphere of this town . I 'm writing from my room . Today , 18 October Though I 've thought this word means `` interesting `` or something like that because of its picture form , this word actually stands for `` Laugh out loud `` . Today I 'll just bitch a little bit about my assignments , which , by the way , are due tomorrow morning . Let 's grab another nice cup of coffee and keep on going . Now , my father is in the hospital because he has a mental disease . but I worry about if she will not be to collapse . I 'm chatting with my international friend on facebook . I was so surprised when they served kimchi and beansprouts as appetizer because they served just a piece of kimchi and two or three pieces of beansprouts . After that , when I was in middle school , I began to learn it again . I think the language is too difficult to learn , Because , I had just gotten my results and thrown them away . Please teach me I ca n't seperate them Technique in learning language What is your technique in learning the language you are interested in ? My English is on the basic or intermediate level so I need to increase my vocabulary . I do n't know how to learn a language well . Yesterday I got a mail . It 's about a celebration in the Faroe Islands belonging to Denmark . The celebration happens every year in the Faroe Islands , some young teens kill calderon dolphins to show that they are adults and mature . It came up to me , and I did n't avoid it . Today , I 've went to Tokyo Disney Land with my wife and daughter , though the weather forecast had warned of heavy rain in the area through the day . Due to the weather , there were fewer people and we could enjoy more attractions than usual today . That cafe was so great . I remembered the time of my middle school age , at that time , there are ( were ) two trees in my home yard , one is the peach tree , the other is the pear tree . Taean is a peninsula surrounded by beautiful beaches and ocean . Please let me know the tracking number ! In my opinion , you can not learn a new language or even travel through the world , which is my dream , if you do n't know how to speak in english corectly . This is my first time to attain Lang - 8 so now I just say Hi to everyone who study English and who are native English speakers . FLY I am now preparing for IETLS , so in the future I will show my IELTS Task 2 writing and I will be very glad if people give some suggestions to improve my writing . I am a college student at Osaka university . Please correct my poor English . Thanks to Lang - 8 , people who come from different countries can change languages and communicate with others . Just so you know , I 'm having some difficulty learning English . Till that day , I had studied over and over again . Especially the scene where & nbsp ; LA is & nbsp ; totally ruined . It & nbsp ; was very very awesome and fantastic . Of course , I tasted all of them out of curiosity , and the taste of ' Super White Tuna ' was quite unfamiliar to me . When people eat this fish , it causes diarrhea , as the oil from the fish comes straight out without being processed by the body . After I went to the restaurant , I am sure I got a stomachache . However , I am not sure whether the cause was the Super White Tuna or overeating , because it was a buffet - style restaurant . This fish lives in the Pacific Ocean , so you can go to South Korea or Hawaii as well as Japanese restaurants in North America . I 'd rather focus on how to correct the problem than focus too much on the mistakes , and blaming myself and others . Hello , my woderful friends . . What a unforgettable day ! But I have been continuously woken up by aftershocks . I think this is what is called psychological torment . Even though it will take about 5 hours by car , I hope I can enjoy it and release the stress from the test . whenever I see her , I decide to go on a diet . on the way home , the wind hit my cheets again , and I jumped into my bed . Nice to meet you . I wanted to study today , but I could n't because I have a bad headache . Anyway , I went to Japan 3 months ago . I 'm worrying about two things . Another is the expensive tuition fee of the business schools . But I know there are a variety of options for studying in the United States , such as participating in executive programs . Even though it might be hard at first , I try my best to fix my troublesome characteristics . Is n't it a time to change my old , slow and accurate style into a fast and inaccurate one ? And some of the students do work hard usually . So that they can compete for scholarships . I should n't have eaten the sweet bread . . Due to it , it took me a long time to get out of the airport . I had an orientation there and sent e - mail . I dealt with my luggage for a while , then joined them in the living room . She asked , `` Is this your boyfriend ? `` pointing at one of the photos . She also said , `` You can find a new boyfriend here ! `` Recently , one US dollar equals 78 yen . I thought perhaps that they were junior high students . Time always passes quicker than I think so I just want to have the pleasure of time being a student , and time with my friends , whatever that is ! I just felt an earthquake right now while I was writing this entry ! ! Scary ! I 'm a sunshine boy . I live in SuZhou . it 's a beautiful city . our city is famous for its traditional garden . we have many delicious food help me to learn English in a short time ! ! ! Actually , my English is not good . So , _ I came here to improve my English . I think that I am a friendly girl , and I want to get more knowledge from here . In addition , _ I want to make more friends here . now I 'm considering which countries I 'll go to . and this vacation is almost one month long , so I want improve my english level . I wanna send a message saying `` Thanks for correcting `` and `` goodpoint for correcting `` , but I have no idea where to click on my page . . . enjoy the time left , may you come across your happy - rough life safely . Just 10days have passed since the massive earthquakes and TSUNAMI hit the north east district of Japan . There still remains frequent aftershocks . This disaster must change our way of living and thinking because we realized that we have to live with limited energy and resources . I wonder if we will have to get away from Fukushima prefecture for a long time in order to avoid radiation , but I 'm quite convinced that Japan will rebuild our prosperity even though it will take way too long . It 's saving grace that we still have strong unity among Japanese especially those who are young . First of all , the colour is Crimson or Red Brown . Gothic font is very clear and elegant , I especially like OHNOkun , who has stolen my heart since about 2years ago . He is so talented and so sweet . I found out about this site from ITmedia 's article . They shut down the factories and laid off laborers / workers . I could n't read the book black boy yet , and I have to write this diary . AA company informed us that they launched a PC e made of full aluminium for power users . I feel the freedom and proud of my achievement . A lot of people will suffer from obesity due to their sedentary lifestyles . Some humans will have the ability to read other people 's minds . Beautiful flowers , beaches , and it is peaceful ! Not only Bob but also Patrick ! I went to hang out in Shinjyuku city and met a cool guy who seemed to be involved in hiphop so I approached him and he said Probably because it is different from Japanese culture . My favorite book is `` little prince `` , I wrote about it earlier . Also , I want tell about my favorite season . Specifically : I am a moody person , and of course my emotions often are connected to weather . My grandparents and friends live there , and of course I miss them , and am glad see them and thirdly : in summer I can do everything , that I could not do in all year . Also I like autumn , but I like it only in Peterburg , because I am sure that our city is the most beautiful , when weather is cloudy . Hello to all young gentlemen and nice ladies . Have you ever thought about the ' tears of sorrow ' of all mothers that lost their sons in the many wars that have no meaning ? `` The fundamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by In the battle , one mighty country planned to attack the other two countries . But the two countries formed an alliance with each other and they plotted , schemed , and used geographical advantage to finally win , even though the ratio of the soldiers in the one mighty country to those in the other two was 800000 to 50000 . Because I thought my bad headache ( I completely got well from my headache ) Student numbers in the countryside have decreased , so schools have been closed . Even though there are no students anymore , local schools become new community centres for the villagers . Her words impressed me so much . Recently , I came to like cooking . First , nowadays fast food is very delicious . But I did not think that it was a doll , because it would look very real . I reviewed the English documents written by co - workers . Though I was not sure that a native speaker could understand these sentences , in particular , I was confident of / about the preposition and article . Then I will write natural sentences for native speakers . Until the medicine for yellow fever was invented , there were hundreds of people dying from that disease which could not be cured without drugs . Lucky him ! I do n't know why . . . Maybe it 's because it 's 35 degrees C and you ca n't do anything outside ? I guess FMyLife is a service in the USA . Muggy Afternoon . Actually , I was hungry an hour after and ate a bowl of noodles . If this continues , I think my friends will not recognize me this coming vacation . There were three times the people than normal , you could n't even move a little step in the aisle , and the air was dirty and frosty . Luckily I got one , but it was a seated ticket . He was a business man , and has big family with 4 brothers and 4 sisters . Just a typo My training course I had a training course this summer and I worked in the Council Department . When I first came , I found it supportive . I was happy because I was not afraid . When I did n't understand something , I asked for advice . He plays basketball with his friends after school every day . Last year , when I walked around my home , I noticed a small signboard of a Shodou school . Although I am an English major . Now my grade is brown belt , the grade before black belt . Japanese customers who had participated in a travel tour requested compensation from the airline companies . The clsss was an elementary theory class about DSLR cameras . I try my hardest to write my diary without using a dictionary . because it remains so long in my memory . Mouse likes cheese . Honestly , I forgot how to spell `` cheese `` . . . I have a good impression for this movie . Unfortunately it do n't make ( manufacture ) make - up products . I knew designers normally need enough , comfortable space for not only their work but also for their sensitivity . ( Sensitivity ? ) [ Help me OTL ] Part time job : ) What 's OTL ? I worked at a one day part time job as a waitress for an Italian restaurant . I did n't work much because the restaurant manager is my neighbour . so the manager gave more work for the other part timer to do . Well , it seems like nobody wants to comment on my diary lmao . You 've might have heard of the title because this book won the CARNEGIE MEDAL instead of Harry Potter in 1997 . The sea means goal for each person . We have a small garden with lots of plants so People who do n't know manners like you deserve to die soon . Today , I have started `` Lang - 8 `` because I found this site in a column in today 's newspaper . I called our gas station . This ceremony promotes hope , dream and peace . I have been there five times , but it is different colors every year . Saga is a nice province . I live in Tochigi . Saga is far away . In Saga , I do not have an Internet connection . Thankyou in advance . An explanation of ' MOE ' Tashiro was arrested again in possession of cocaine . pollen allergy ? Once I started studying Economics , it turned out to be interesting . Homecoming visit I will read a vocabulary , and read how to write letter , and how to read very well . We have n't practiced our 3 songs in the studio together . To be honest , I do n't want to be part of the live performance . . . because there is one song that I do n't want to sing . . . We will practice in studio for the first time to prepare for this live performance because we have no time before the performance . It was refreshing . Because a dog is more cute , pretty and it is more loyal than cat as well . For example , masturbation . . I bought a new badminton racket yesterday . I like needlework very much , so I was excited to see these many shops and materials . Of course , most of the visitors were old women : - ) ) I knew his answer . That was what I thought . So I registered . Maybe it 'll make me poor in the coming 4months . I spoke with my friend who comes from England . . . I am proud that I have such a friend , who knows alot of English and can travel to England along with other countries . Now , I am working at LG Chemical Research Park in Korea , I designed control logic design at graduate school , my major and I ca n't learn about my major . but it is an electric vehicle and it will take a few years to I 've already had a can of beer so I want to go to sleep . That really makes me feel embarresed , I act like a retard . In the past I seldom felt in the same situation , I could go straight to the answer or explain things in reasonable way . I told him the problem is that Korea 's [ / RED ] educational policy focuses on the grammar , rather than listening and speaking . For instance , there are more than 50 dialects in Liberia , and that 's why they have strongly felt it nessasary to lean English . I am a captain of the team . After playing footsal , He was naive and self - centered The prescription contains liquorice and other kinds of medicated herbs . Anyway , today was too cold for October ! My favourite sport is basketball . Because of volleyball is not popular and difficult to find the space to play . Basketball , as well , is dificult to find the place to play but I love it . Yeah , it has became a fun way for me to learn English , which I can appreciate their wonderful content and learn some unseen structures of English . Next saturday , I 'll go to see a consultant on a studying abroad . Many words I have forgotten . When I read books , many words look very familiar to me but I ca n't remember what they mean . I am not romantic , so my wife always say that I should be more romantic . On holidays , he walks around the riverbank for his health . I really appreciate it . After work , I went to the only Daiso in Canada . But here the price is two dollars . I felt reluctant to buy some stuff . But last Wednesday , I learned by Internet that Kagrra 's concert was canceled because there was a problem with some visas . U _ _ U I have to take my tickets back tomorrow , because Kagrra 's organization will give a refund . I need to take over my team leader 's job because she needs to take some time off to prepare for her baby 's arrival . Every day , I need to forward her email to each factory in the morning and help them to solve their problem . I bought many things , such as a vacuum cleaner , a refrigerator , a table , a bed and curtains . . . Impressions of America part 2 The budget of the New York Yankees is bigger than that of North Korea . However , I wo n't give up until I can swim the butterfly stroke . Quiero ( Quiero ) ir a Espana . My teacher sent everybody the e - mail , which said `` If you get this email let me know by replying to the following address : Anyway , as I checked it just now , I found 5 e - mails which should be sent to my teacher only but were actually sent to the whole class . However , not all kinds of miso are good for eating , only miso free from artificial additives . I hope next time the weather will be good . The company recently introduced a new system which will allow me to withdraw the money from my bank account . I bought yogurt at the supermarket . This bacterial fermentation is sour . The temperature is high . Seicomart convenience stores offer a few kinds of reasonable house wine priced around 500 yen , which tastes good enough to drink at home . The restaurant had different kinds of Belgian beer . I drank three cups of Belgian Beer . Belgian beer is sweet . I asked an employee why Belgian beer is sweet . This tale is nothing compared with the occidental classic literature , maybe because those tales is about danish folklore . It is a mixture of mistery , fantasy and rarity . `` Power of music `` is a new event in Tokyo Disneyland . I ca n't sleep because I 'm lonely . Pls be informed that this shipment will be delivered as LCL via Hongkong . Schedule as below for your reference : Between you and me , there is a special and magical way that if you do not consider the above things and write a fucking boring essay whether it 's long or not , your essay will be colored with red and blue with warm comments within few minutes : just show a picture of your pretty face or of another hot woman found somewhere else online such as unknown hot celebrities . Maybe I do not want to learn english at beginning . but I will try my best to learn it in future . my english teacher taught us many words , but I can not remember them and use them in the correct way . what can I do ? Because my friends studied for exam in this summer . At that time , he faced demotion from Ozeki to a low Ranking . Second foreign wrestlers dominate especialy Mongolians . I sent a music box to her by express several days ago . We always say `` happy birthday `` when it 's somebody 's birthday . 2 policemen were killed , 55 policemen are missing , and 4 policemen are injured . The food is not as delicious as I expected . The food does n't taste as good as I expected . She is not as beautiful as she appeared on TV . I have great expectation as much as I try . * I do n't want to dislike my country like her . My mother 's native language is Japanese . We happened to meet a Japanese tour group . I asked someone of the group in Japanese . I was really surprised by his behavior . I was a little bit shocked and sought for the reason . Did n't my Japanese pronunciation sound like native Japanese ? My bad English was n't understood by the Peruvians , I thought they had High - mountain Disease . I want to go to Peru again . I have a very nice memory of it , except for the Japanese tourists . I was impressed ! ! Today I feel so blue , I find some knowledge I learned before have completely gone . Besides , as this hospital is highly specialized in cardiovascular surgeries , I 'm able to improve my skills and develop my career . Why ca n't they drive more gently ? Now that I 've learned that there are potholes on the road as well as ordinary minor cracks and holes , I will pray for the safety of all the drivers ! So I remembered about the time I chose my job when I was a teenager . I dropped by the library on my back way and I borrowed `` One Piece `` . I used to read this manga and I thought that I wanted to read this manga again in English . Since I did n't know anything about actors , I 've just looked for the actor who played ' Harold ' . The Notebook feature lets you easily review those worthwhile notes . Altogether I started to pracice sports because of him . Today , when I was about to get in my car , I found something on the ground . Then he recommended me a fortune teller that is famous , Indian and accurate . additionally they were right for me . fortunately , lots of the things she said were good . It was a wonderful experience for me ^ ^ I quit smoking in April of this year , but because of too much stress I started again . I know it 's not good for my health , but smoking after having a lot of stress is beyond expression . when I surfed in Japan I could stand up 1 time , because it was a long board and the waves was small . so I brought a short surfboard , it was so difficult for me . because it 's very boring at my place . it 's very beautiful . I wanna know why but I 'm afraid to hear the truth . Checking my diary ( not all of them , but most of them ) , I found my mistakes are mostly with `` a `` and `` the , `` which many Japanese struggle with when they learn English . I really appreciate people who suggested my journal . Another doctor who did the plaque removal is also quite skilled and careful . Major quantity of the books like textbooks that I used to read when I went to school . Eijirou is different from usual dictionaries . So if you have any problems with your pc or networks ask me ; maybe I will be able to help you . Well , after I passed an English exam during the second year of my studies , my contact with English has been really limited . I am really nervous about the toefl test . Not write the sentence too long , Not choose an answer so quickly . . . . . . . . I am from Vitoria da Conquista - Brasil , I am 20 years old , and I am a student of technology . My wife and I celebrated it with our two daughters at a small japanese restaurant . Frankly speaking , I completely forgot this special day until this evening . We went to Seoul tower , some shrines , souvenir shops and so on . Bangkok Turmoil Recently the iPhone has been popular in japan . When Minko saw him , she was jealous of Ohana . I started Lang - 8 today . So , I study English very hard . After a horrible / terrible / awful economic recession , many contingent workers have gotten fired which means they lost the way to make a money and live . The system was very simple , first you sign up by entering your personal data . I will go to a bookstore , and buy some books and magazines . I know my weight , so I can be very careful about what I eat and drink . My goal is to lose 3kg , so I have to do more exercise . . . we will make takoyaki which is a typical Japanese food . First day - Pusan Everybody got married . I did n't get married because I was young . Because the weather is nice and comfortable to stay in . The main character of this story is a doctor . I 'm Japanese but I live in Beijing present . I need to be able to speak English and Chinese as soon as possible , so I decided to start to write diary in foreign language on this website . and if you know any popular or funny slang words , please teach me . A meat - eating type girl is aggressive toward hunting boys . A grass - eating type boy is non - aggressive towards girls . question 2 : how to pronounce epididymitis ? The white bridesmaid : `` That 's disgusting . The white bridesmaid again : `` Who wants a gargoyle , or whatever he is , at your wedding ? `` The white bridesmaid : `` I do n't know where to look . . . I 've never seen bridesmaids dancing at a Chinese wedding . English exam is made of vocabulary , analyzing sentences , listening and so on . . Analyzing Engilsh sentences exam is very very difficult to me I 've been through the hardship of quitting . After losing , a bad taste was left in my mouth and I felt an urge to try to get even . hot patch because he is the most popular actor of ' Pirates of the Caribbean ' . It started a few weeks ago when my little brother got dragged to a dance course by his friends . Without a partner , I guess ballroom dancing is quite hard . . . So , let 's open our hearts , in order to be friends and to make progress . From . I believe the uniforms shown in the picture appear to be orange and blue . I must speak English because I want to travel to other countries in the future and English may help my in my future job . In the afternoon , my homestay mom and two guys came back home . We had no script so we were just listening and wacthing the movie . Although the situation with radiation ploblem , delivery delays or power saving did n't change much ( it still is bad ) the life of people , who live in less damaged regions , such as Tokyo , seems to be slowly coming back to normal . In the morning , While I was waiting for my friend to pick me up , he mailed me , saying `` I 'm drunk and feeling bad , so please come and pick me up `` . So , that place is always full of people ^ ^ I want to make it more significant and emphatic . but for me that is not enough , I must make more chances to improve my english skills . I wrote a letter to them to ask about volunteering . . . . I guess she must be around 27 , right ? I did n't contact the volunteer stuff after all , but your advice was very informative . Recently , I read a comic . It was my first trip abroad . I was asked about the Tsunami by some people . He recommended that I drink Kava . I think most Japanese are polytheistic , who are not very religeous . Please have some if you have chance . I 'm 28 already . . and I 'm going to plan my future life in this year . . something I ask myself . . . what do I really want ? ! My job is teaching English at private school in Japan . They were able to open the lock quickly , but I was shocked and disappointed as I had thought they were old enough to decide what was wrong and what was right . All my family was at home because of the snow . I 'm looking forward to communicating with everyone in English . I am interested in this movie 's subject matter . I think that it would be horrible to know death . I am studying biology now . But they watched it ( not only the first part ) and maybe even read it . These people go to the cinema and see this movie just to laugh , to make funny comments or to rephrase dialogs of characters . For a long time I belonged to the first category . I decided to benefit from this action so I had to read it in English . But I was so excited and glad that I could read in English and understand it that I 've read all of the saga . Except for poor language ( the Russian translation is even worse ) there are lots of Mary Sue and out of character stuff . Anyway I 've read four English books per month . In the practice match , I got punched in the stomach and fell down ! The instructor said that it was not so strong , but I could n't speak . We lay on our backs while the instructor stood on our bodies and jumped three times . Today , on Sunday July 11 , 2010 . , half the members of the House of Councillors will be elected for three years . S , China , North and South Koria and all of the other countries around the world . I also want to go abroad and communicate with others more smoothly . Today I met some Korean friends . I do n't think that Korean food is spicy . My favorite is toppki though . Summer vacation is around the corner , Most people are starting to make plans . It blows from East - NorthEast , and it 's a really strong wind . In this Bora blows with a medium speed of over 100 km / h ( over 55 kts ) , and the highest gust reached 188 km / h ( over 102 kts ) . . . While I was walking , going to the university , a tile fell about one meter from me : it could have killed me , if I just were in the wrong place at the wrong time . Some of them did n't sleep last night , because Bora makes a lot of noise . We 're accustomed to that . . Our ancestors have a proverb , stating that we dependon our parents in the home , and outside we dependon our friends . The relationships betweenoneself and friends is n't to make use of each other . Some people will make friends with you not because he or she like you , but because you can help him or her in some way . I 'm in low spirits now because I feel that I am being ignored for this reason . I will study English at Starbucks today ! The article recommends to take notes of every idea that comes to your mind , The reason for this is so that it gets completely absorbed by the skin . My birthday was two months ago . My mother made it and it was delicious . I ca n't see the license number or even a part of the numbers . The police ca n't pick the criminal up . On second thought , she always asks people she meets about their & nbsp ; jobs because she is concerned about her own future . I dont know why smart phones are so popular among people , but it seems that they have many attractive functions such as Skype , Internet , or many other applications . However , this situation is only in the Japanese market , so what about your country ? Especially , gratin with chestnut and cream cheese , which was very yummy : ) The soy milk pudding and tofu donuts were delicious , too ! So when we have practice for all of the members , I have to plan the practice before we start . And please try to watch it if you have a chance . I replaced the sentences in the grammar book with my own sentences . Today a debate occurred between my mother and I . We started discussing the topic from the minute I stepped into my home until bath time . The topic was on my dressing style . Then she said she felt confused and disappointed about how I treat my occupation with my whole spirit but do n't care about my appearance . I know it 's important to hold on to the precious period when I 'm just in my twenties , and that 's just what my dear mum wants me to do . I do n't wanna let my mother down . Another reason is that , someone used to say that she thought I look the same as Aoi Yu , a Japanese actress with a pure appearance , and I wanna keep the simple and pure impression in others ' minds . I have just arrived ( or I just arrived ) in Adelaid , Australia , but I am worried about my poor English , I do n't have enough money to keep travelling , so I just found a part time job in Adelaid City as a sushi roller , I will be really grateful . When I arrived at the hotel and unpacked my bags , I went out with my sister to take a stroll along the river nearby . I am not good at listening and writing . If you want to relieve your stress or you feel your daily routine is boring In order to enjoy your trip , you should consider your safety while traveling . You had better leave your valuables and expensive jewelry in the hotel when you go out , and you should hold on to your bag . In Pusan , you ca n't use traveler 's cheques . If you want to enjoy that you should choose the ones already fried . my costume was a baby , and many people laughed at me , and took many pictures . Frankly , it 's not useful and inconvenient . Even it 's occured only at the first meet , they may get tired of hearing that . It is very convenient ! ! Recently , I have been playing a game a lot on my DS . It is very fun and we can learn English ! ! _ This game is very nice ! ! _ COOL ! ! Monolith ? At night , I drank with my friends , which made me forget my tiredness . I 'm a little busy until this afternoon . Even though I have the official working holiday visa , I could n't get a so - called `` Aussie job `` due to my lack of english proficiency . As the title suggests , I 'm new in this community . Whether feeling happy , sad , depressed or angry , music is always there to support my mood ( unless my cell / mp3 player runs out of battery xD ) . I signed up for this community because , obviously , I want to improve my English writing skills and I 'm hoping to get your help . I know this is a terrible introduction but if I continue writing , you 'd have a LOT to read , you 'd get bored and finally you 'd close this page without correcting it . I 've been thinking what I should do here in Japan , because I always had some goals to achieve when I was in Canada . That 's why even when I 'm doing the same things that I 've done before , I feel it in a different way . I 've practically never skied before , but I 'll take some lessons . Our four girls really had a wonderful time there ! ! ! TASK TWO - Comparison Composition Singles can do everything they want to like travelling , buying clothes , working for a career . I am a writer , but my story is unfinished . . . Anyway , somebody help me please ~ My pronunciation is poor and sounds like a bad Hollywood movie with a Russian Ivan speaking in English . I learn Japanese because I 'd like to go to Okinawa to visit a karate master whose name is Morio Higaonna . Tokyo Marathon My big brother participated in Tokyo marathon last month , which is the one of the biggest citizen races . He finished at 3 hours and 6 minutes . He has been really good at running long distance since junior high . They were n't in this game but the live game was good ! These taxis started to run in our country . I bought an LCD television made by Sony today . A famous Korean actor committed suicideby hanging himself with an electric cord . The saddest part is his older sister had committed suicide Some journalists think he had depression and that he was suffering under his sister 's death continually . Can you arrange the stuff , after you clean the fridge ? I was shy because I was afraid of making a mistake . Today was my first working day of 2010 , but I felt sleepy the whole day today because of my bad habit of staying up very late during my New Year 's holiday . Charlie has never enjoyed talking , and hence , he developed a brooding look - surely his eyes were those of a man who carries the weight of life . I hope that the beautiful country goes back to normal soon . After I arrived in Tokyo last month , I have n't had a chance to meet and talk with people of English countries or others . I know many foreigners have already left Japan because of the massive earthquake and Tsunami and radioactivity . Besides high school English class ( which is so basic and has the same old lessons every year ) , I 've actually never studied English officially . So I 've decided to get a little help ; ) I hope this thing helps me to improve my English . It was a small teddybear . I 'm from Brazil and now it 's 5 : 55 AM . I was able to find more information about an internship . I would like to go to Toronto or Vancouver . I love ice and snow , but I never see it . It would be a dream although I do n't speak English that well , but I love the English culture , the language , and in Canada the people speak English and French , and it 's cold . This is my inaugural ( first ) daily entry / post on Lang - 8 . 2nd of August was my 35th birthday , I 'm going to write daily on Lang - 8 as documentation of my time in London . I had heard about it several times before , but had not yet visited . Today we will go out to buy the ingredients for cooking burritos . We need chicken , pita bread , mushrooms , mayonnaise , and hot sauce . It 'll be my third time to visit there , but her first time . I 'm looking forward to having some nice seafood . Today , I participated in our laboratory seminar . I 'm so nervous . . . . I am a student of foreign language studies , majoring in French . One week ago , when I was home , a strange man came to my apartment and said something like this , `` We opened our new shop in this neighborhood , and we are giving away some presents for every house around here . But I wonder whether I should buy a mobile phone with an intergrated music player or an ipod . The price of a new Iphone 4 is from 16 to 18 milion Vietnamese dong ( equivalent 800 - 900 USD ) while my salary is just 4 million Vietnamese dong , less than four times the price . My family live in Fukui . I like travel . So I want to study English . Do you know SETSUBUN ? Today is SETSUBUN in Japan . Today is Friday the thirteenth . Today & nbsp ; is Friday the & nbsp ; thirteenth . I do n't know why this year has a lot of Friday the thirteenths . He adequately countered a judge 's budget screening 's questions with data and passion . His opinion and attitude showed the essence of the screening . it has double structure . I feel Japanese salt breeze when I eat this . I watched the movie frozen with my family . Nobody noticed . horror and survival movies . Now I 'm a junior high school student , I do feel my English is poor , I want to find a foreigner friend to teach me English . I am at home with my father , usually we did not agree with each other Maybe because we have something to talk about more . My television is broken now and my computer is going to be a problem too . My father took the television to be repaired in the shop . the first of the Lima , Peru 's new urban air purifiers called `` Super Trees `` was recently installed at the busy intersection next to a stream of a congested traffic . It was installed by a local beer distributer and created by Tierra Nuestra SAC , a Peruvian green technology company . The Tierra Nuestra says that the purifier uses the liquid filtering process to observe the carbon dioxide , equivalent to the actions of twelve hundred trees . the creaters claim the super trees removes dust , germs and bacteria from 200000 cubic meters of air per day . The Mayor of Lima 's district of SurquilloGustavo Sierra says the super tree could help the contaminated city across the globe . `` It has taken us six years , six years to plant 1200 trees in Surquillo however this machine help us greatly to improve the air we breathe . `` He intends to install another 20 air purifiers in this district . Peru 's unbudsman office reports air pollution levels in Lima are nine times higher than recommended by the world health organization . in a report released by the Peru 's national council of the environment , about 80 percent of the pollutants of the air caused by old , ill - kept automobiles . Today was the happiest day of the week . Back then , hundreds of thousands of years ago , people telling stories about things they had done earlier that day while hunting . I already checked some houses and found out that some houses have private bathrooms and kitchens which only two people share . As a result , we have seen spectacular congestion on the highway . I might have that tendency too , because I sleep more in the winter season . And then , I said `` I am being lazy . `` with a big smile . In this entry , I am going to write about `` time - markers `` again , and also a few other things , Some possible sets of time markers and tenses are listed here : URL I did n't know that there was Lang - 8 , _ a wonderful site , which helps us make friends to correct each other 's writing . Tomorrow , I 'm going to the US for 3 months . Nowadays , Shanghai becomes one of the most developed cities in China . I was really curious why she never would help me know more . or encourage me , insteadbut opposite she of always mocking me . Language exchange site People sometimes contacted me , but they do n't seem to have read my profile at all . He told me that he really wants to learn Japanese and he would like to know how ? Then he said he thought the easiest way to learn another language is to have a girl friend who is a native speaker . I watched soccer yesterday . Recently the weather is weird because it 's suddenly hot or cold , therefore I caught a cold in few days . I feel people are laughing more and a lot of plants are in bloom when spring is coming . Since I was born in a tiny town which is quite a countryside with a lot of rice fields , I like parks with a lot of nature . I can ? , , , Was it a slip of the tounge ? There were nine babies in today 's class and Konoka was the youngest among them . my name , special holidays for me , about a photo and so on . Today is a boring day . but ifeela little gloomy . It destroyed my office backyard . Customers come to my office . My friends had said that Spanish is one of the easy languages to learn . No , I do n't think so . She said my questions were about grammar , which I did not study a lot . But , I did n't want to ask the professor , so I made her study what I wanted to know German grammar . If you are interested , the short film is available on ' Youtube ' , with English subtitles . Finally , my skateboard broke into two pieces . The title means `` Save my earth `` . a Japanese writer , in 1989 . My roommates are a Singaporean and Indonesian couple . There are many people who are good English speakers . However , I also have to study ! Studying a foreign language is very interesting , because it makes it possible to meet lots of people . I would like to meet foreign people and have language exchanges . I met my friend at a restaurant and we ate sushi and wheat noodles . In that program a woman takes a plane to Japan to just eat some sushi and wheat noodles , then comes straight back to Korea . My friend was impressed with those foods , ( not the program guest 's action ) and she wanted to eat them also . Because of that we went to a Japanese restaurant and ate them . We had often talked about yakiniku and how we would like to gorge ourselves on grilled meat . I read a report written by a web designer on the web . There were many people in the class . After that I watched a DVD at home . So I left home earlier than our arranged time . I am writing a yucky story today . This afternoon , we went to the gymnasium for PE class . Now that I have became a college student , our PE class is different from what we had in high school . My friends and I usually played badminton together to free ourselves for we all feel great tired at that moment . My friends , I miss you so much ! ~ Oyama in Miyakejima , the family and dog 's story . my car was a little bit dented in a collision . I met a lot of friends who had left my company a few years ago . And what 's more . It 's basically all free ! It 's a typical HK movie A confusing relationship between the robber and the police , good action and cool guys . I 'm going to play volleyball with my friends tomorrow . I used to play volleyball almost every day when I lived in America . Asking some English questions ! ! For example , the most evident and , maybe the most dangerous , problem I noticed is the fact that Italian tourist trade thinks the country does not need to make efforts to increase the number of visitors ; especially comedies and dramas . . . I want to visit France , especially Paris . The Hard - Disk has some damage . I am interested in learning English . let 's start . The weather is always different in this city , five minutes ago it was sunny , then it suddenly started to rain . . . Just like a chameleon . Next week I have the CET test , there 's a lot of pressure on me , and with this horrible weather , it made me sick for four days . Because it 's so hot in the dormitory and there 's no air - conditioning , I had to sleep out outside of my room . - The concept of coworking is inspired from parties . I read an essay written by Haruki Murakami . I was surprised that he determined to write , when he was 29 years old , in 1978 . I usually do n't drink beer but I drank a beer yesterday because it was my mom 's birthday . Because it is dangerous for girls to go outside drunk , and I do n't want to be seen by my friends . I like the hot atmosphere - - - everyone is surrounded by the rising steam . Now I am studying English very hard , and next year I 'll resume studying French . When the temperatures of the oil ( or pot ? ) is high , addthe eggs into the former pot , and put the rice later . Put salt immediately at the same time . Here in Vancouver where I live is always sunny specially these days . Even though the bookd is incredibly famous across the world , it is n't for me . Maybe that 's the reason I only watch a movie instead of reading a book these days . `` Shawshank Redemption `` is the one of the short stories in the book `` Different Seasons `` Actually , I 'm already excited to compare the story in the book from that in the movie . OK everything will go on , I will graduate from college , then I have to find a job to take care of myself , but I still have no confidence , who can give me ? who can do it with me , who can see tomorrow with me ! ! I used to be very close to my younger sister . Now we are married and I have a kid , but she does n't . If I pass the exam , I can learn more language there . + Yei ! + Now , I study English . Please teach me English ! To stop him from talking more , I constructed a funny answer for him . I said , ' I wanna a handsome boy , just handsome , and I want you find himfor me , I know you can help me , remember call me first when you findhim ' . Album 's name is Abbey road . We go to the temple and pray for our family 's health , happiness , and world peace . These are delicious . What does `` address `` mean ? She is a homemaker . We can even use Internet when we 're outside with this ! By this time , four people have been killed in an election campaign . first diary ! I 'm 19 years old , and I 'm a university student majoring in English . I was moved to watch their childhood movie which they made . I tried to write something , when I first found this site . I thought I would write any everyday happening , but it does n't work as I expected . First we had some arguments , because we were a big personality difference . After some arguments , I learned I should n't object to what he says then I wo n't have arguments with him . Since I did n't say my opinion and I just listened , we did not have arguments . I do n't know what should be the most important thing . . . I have many problems to solve . I was touched and surprised by the scene : there were thousands of fireflies in the valley . They said that cats have nine lives . I think it 's cool . When we began , I found that his skills were more advanced than half a year agao , and was beaten 4 times . I felt a bit nervous and some careless mistakes when was shooting . Both these soups have different tastes so I enjoyed both servings of Oden . Thanks a alot for reading my diary . A few days ago , I went to the airport to see my friend off . First time I 've heard many times that writing English improves our English writing skills , but I I am a very lazy person and I am very very busy . I decided to write my ( or this ) diary in English hopefully everyday . When I was a junior high school student , I had a variety of tropical fishes . Then one of the goldfish always used to jump out of the bucket , and I would quickly put her back . Tomorrow , I will go to the theater with my classmates . Anyway , commercial TV stations start new TV shows from this spring . I watched ' ' The Matrix ' ' on TV , which was broadcast the day before yesterday . Moreover I want to communicate with many people in English . We always laughed with and without reasons . It is not true . The coffee is not good yet because I am still unaccustomed in making coffees . I 'm really looking forward to meeting them . ( Sometime the company adds oil or badnegitoro to fake negitoro ) I felt uncomfortable . . . I want to fill my calendar CBS on Youtube . Okay , keep your eyes on those who want to use their `` arms `` . The tests were quite difficult , especially listening . t , When I look back those days , a pen - pal was Japanese girl who had similar ages with me . I am writing in response to your letter . This is a great opportunity for me and my career prospects . I need to get a high level in English because it 's an essential skill required for working overseas and getting a good job in a company . On the other hand , I live in place where weather is warm constantly all year , but I think it is diferent in Manchester , maybe raining often , I would like know it , to be ready with appropriate clothes and shoes , when I get there . After the Gibeonites surrendered to Joshua , the group against Joshua turned to attack them . In fact , the Gibeonites were one of them before , but now they were under the Israelites . I want to study English ! Penicillin , Innovation of the Century . The most beneficial innovation of the century was in the health area . It is Penicillin , and it was discovered by the Scottish scientist and Nobel laureate Alexander Fleming in 1928 . Furthermore , it has continued to innovate because Penicillin is a part of health studies with the focus of keeping human lives . Such a focus , to me , is the most important area in human studies . Finally , this antibiotic has actually been used everday in places such as hospitals , clinics , etc , to save people . Therefore it can be considered an innovate , as it is surely a unique and great discovery . I feel lucky when I see red sky both morning and evenings . But in my opinion , it 's their problem . Every foreigner working here earns a higher salary than the locals , even though they do the same job . The Goya plant has rough skin but when I touched it , it felt greasy . Just fun . My friend gave me a Goya plant yesterday . If I keep it in my refrigerator it will change to a yellow color and a very sweet taste . today I tried calling method for the first time e - mail is : mf329 @ msn . One of my friends recommended a dvd . It was interesting for me to watch this one . Because I study listening and speaking . She would like to have a baby , months ago she lost one and she was really sad . She will be fine . She has the love of all the Brazilian people and her husband . I will practice the violin . So I have time to play the violin after so long . But I have to tune my violin before I play it . I had a very important test today and I was very nervous ! The weather was nice , like early summer . It seemed like a bad endless loop . I think I am just an intolerably lazy guy . After supper , I took some medicine so I hope it 's going to be better tomorrow . ( I hope so ! ) Today is the second year and week I have studied at this college . is more important and the savor also can be forced . But I do n't know how to force my interest . Some kind - hearted people brought the cat to a hospital for animals , because the unlucky animal was very thin and had many wounds . I want someone who will correct my English strictly . I live in Hoddaido which is located in northern Japan . Deer rice cracker are sold in Nara park for one hundred yen . The deer will pester you violently . I buy big pizzas from Costco from time to time . And I also like to buy bulgogi bagels . Bulgogi is a seasoned beef dish cooked well - done . Anyway , Costco has been doing it in their own way , and many Koreans find this appealing . I am worried about the blood test result this Thursday . He had n't neither problems nor concerns and was very happy . Please make friends with me ! Santiago is famous for Christian pilgrimages and its universities , which are very old but are still attended by many students . In London there are millions of people and cars , so the pollution in London is much worse than in Santiago . The old city of Santiago is as impressive as the most famous buildings in London . One of our most popular foods is shellfish , and there are a lot of restaurants near the cathedral that serve this meal . Now I am living in a cucumber farm house with Hong Kong friends and some male friends . It is later than before , so we can wake up late , happily ! If we have any days off , we will be very happy . People born in the Year of the Tiger are supposed to be generous but stubborn . Are there any beliefs in your country about what determines your personality or what your future holds ? . 2nd , my baby 's new car , the Prius Toyota , which is stained much . I did n't practice much . At least , I want to eat with somebody . My favorite fruit is pineapple . Anyway , I like pineapples . I 'd like her to be responsible for something because I believe that makes her feel a sense of oneness of family . ( minor ^ ^ ) Just have to live for now and prepare for the future . Going abroad . . some friends have gone to foreign countries to learn English . . . but I do n't have enough time to go abroad . . and other European countries ( nations ) I have to accept it . Now my husband and I are watching the game on TV and cheering ourt prefectural team . I 'm from Osaka . Welcome ! Because they are in small cages all the time and walking time is once or twice a day which is only ten or twenty minutes . because I have never thought about it like him . I know that it 's going to be difficult to keep up with this class but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . But when I talk with her , she can understand what I mean . From an expert 's standpoint the key to breaking a vicious circle is to change the established patterns . At first , I felt a little down , but I like it now because my friends said it looked nice : ) ) I am a university student in Japan . I can teach Japanese to people who want to learn Japanese . Starting today , I want to write many entries in English . . I 'm in the middle of developing a software program . My favorite place is the road near Shukutoku University . the titles I gave the texts are n't really creative , are they . . * laugh * And I hope I can improve my English skills this way . Continuance of the Tanabata story . My favorite magazine is Arakawa Under the Bridge . Arakawa Under The Bridge is about strange people who live under the bridge . But I felt frustrated about failing a stunt , because it was a big challenge for me . . . . when we talk about the hacker , we think of someone who is tring to get some secret information from the government or someone who steals the bank accounts of the rich . I ` m afraid I can ` t answer now I 'm encouraged by this news . They throw a hot , 400 degree stone into a soup to boil it . ( yummy ) They taught us how to dance . I took the TOEFL this morning , and I found that my English typing speed is too slow , despite my fast Chinese typing . So I made a decision during the test , that I must find a way to get more chances to type English , so that there is possibility to improve it ~ Maybe I should keep on blogging in English . The academic lectures seemed difficult to me , and the writing required too many words . The words used to write are long and infrequently appear in daily life ~ So I just chose to give up preparing . Why are you afraid of a challenge now ? At that time , I had n't visited other countries before , I was very excited . I made plans for traveling until late at night . As I was n't good at Japanese , I had to use English to converse with others . My old friend introduced me to his Japanese friend - Yoske . The dolls must be temporarily displayed . People believe girls will marry late , if the dolls are The term is from the middle of February to the the middle of March Afraid of my Future But I 'm afraid about my future . I want to find a good job . This is a Japanese animation 's title too Once the petals of one flower blossomed together for a short time . I watched the animation film last night . I am a beginner to this site but please help me to study English and in exchange I will help you with your Japanese ! ! I am eagerly waiting for your message > < I have gone to an English language school for 2 months . So , she wanted me to be in an arranged marriage . Actually , she did n't like him at all . I must be positive , active , and attractive in Tokyo . At last , I hope everything will be improve ! I think she has an energetic mind . I have to comunicate with you , so that my English will improve . My English is not very good and I 'm not confident with my ability . I wish I can make friends with all of you guys and please help me to correct my errors ! Thank you very much Even though I was in America , my English is still bad . raise their children , thus consumer decrease to expend . To be frank , I 'm not so interested in that part , but my friends , especially men , are interested in it . It is important that people in the valley want to move the tree , and they do it themselves . It was released in 2003 . Today is a holiday , which is the Japanese flag holiday , What is your favorite food in summer ? My hobbies are listening to music and playing volleyball . I will graduate from school soon . Ionly have 8 days of school left . My school is very strict on manners . It causes me a lot of stress . . . But school life in 3J is very happy and funny . First , I could n't figure out what happened , but it made me more excited . I did n't know before marriage , that men have a party with their friends , we do n't have this . I want to watch more funny movies . I am going to see it tonight with my family . The typhoon left last night . Often , I visit English websites Tomorrow is my last English conversation exam ! From now on , I must write a new entry at least once a week ! when I hear someone saying that , I frown and get annoyed . I just completed my Bachelor Degree in Information Technology major . I am looking for a job now . and I 'm also looking for scholarship to study abroad . I often watch Japanese movies , drama and western movies when I have free time . And I hope to make many friends on this website . I 'm wondering if I should call in sick tommorow . I learned this sentence `` What was your first impression of me ? `` You should guess in the content . `` However , it is difficult for me to guess a new word . Because there were so many Japanese people , I did n't feel like I went abroad . The scuba coach was Japanese . Tonight I have to go to cram school . Maybe I 'll have a barbecue party , but I 'm not sure yet . It is difficult for me to write in English . Oh ! A summer vacation has begun ! The original work is from comic book that was published in 1980 . There are many sushi bars in Asakusa . I think that talking with my friends will lift my spirits . We do n't know whether we are speaking American - English or British - English . I 'm running a clothing store in Kyoto , Japan . If I have to criticize , I would say that the sorting of garbage is not strict compared with other towns . A privately owned Chihuahua received a license to be a police dog . I 'm getting excited ! Could you please tell me your school trip be it in elementary school , junior school or high school in your country ? Please leave a comment . This shows the character of Japanese market . There are white and yellow Shinkansens . If you see a running yellow Shinkansen , you are lucky . What a wonderful thing that would be ! ! So people , tell me what you like and correct my grammer , please ! Father of 1 . I study English , book - keeping and FP . I 'm interested in Videogames ( PS3 , PS2 , PSP , Xbox , Wii , NDS ) , Anime , iPhone and iPad . . Now I study English hard . I am glad they do n't start at an earlier time because I am easily distracted by sound during my sleep . I still do not how to translate Japanese into Chinese . And then , I went home and was studying until now . I want to take a nap after going back again and keep studying more . I heard that `` one love `` means `` good bye `` or `` see you later `` A week later , I rented a DVD and watched it . Self - introduction in English After that I went to the hamburger shop . My hamburger was too big to eat ! I always worry about what present my son wants every Christmas . People who have graduated from low level University then go to a high level University . I think it 's really tough work ! Today is a holiday , `` Physical Education Day `` . Though I want strongly to communicate with all english tourists and teach them many good things about Japan . I 'm learning English for business now . I happened to find lang 8 when I read a book written about English . The seeds will need to be planted by ourselves . Thank you so much to many people in many countries ! To tell you the truth , It 's the first time I 've heard of the existence of generic medicine . I am a graduate student , major in biology . Swine flu is threatening many countries . I 've started writing a blog I like traveling - - The sea makes my soul very calm and my body healthy . . . In Nagasaki , I went to HUIS TEN BOSCH and an Atomic Bomb Museum . The next day I moved on to the Atomic Bomb Museum . You know I have a holiday , so I will learn more than other people . There are many geoglyphs and the length of the biggest ( `` one `` or `` geoglyph `` ) is about 300 meters . I heard the sad news that an earthquake hit Iran , causing many injuries and casualties . Every time I hear the news of an earthquake in the world , I recall the one which hit my home - town , Kobe , in 1995 . The fact that over five thousand people were killed or seriously injured left many deep scars . because I am a lazy girl . I hardly save my money . I do n't know if I should be ask him again or not . Please correct my mother ` s diary I guess handicrafts are valuable because they carry the long history both internal and abroad My first abroad travel was in 2000 . But , it 's a kind of cultural differences . I can talk to international students but I ca n't talk to American people . I display about 20 picture postcards and photographs on the partitions . He remembered me and spoke to me . I exchanged contact information with him . On Sunday , I went to Changi village and beach which are near the Changi airport . and the Japanese army easily marched to the present borderline between Malaysia and Singapore . and its a bit boring , but there is a crack where you can enter the underworld . If you kill all the enemies in this zone , you enter the scar and then the garden , and finally you can enter the hero 's hall . There , everything is made of gold , and in the last part you can find three mesmer bosses called The Darkness . If you can kill them , they give you two green staffs . Each staff can be sold for approximately 5 thousand gold coins . I am not interested in alcohol that much . The book he wrote , `` The Last Lecture `` , really gave me And the process of pursuing Anyway , I am going to read a book now , but I hope that someone will interrupt it . And also there are a lot of other matters . . . . . My colleague is being transferred My colleague will be transfered this weekend . It is very unfortunate . I listen to beautiful music instead of his noise . Emailing with him is my trivial enjoyness . I want to ask you something : Which resources do you recommend me for learning English ? First diary . My friend can speak English very well . I want to take a bath in hot water tonight . The battle scene was so fantastic . Except that , it 's an exciting movie so I recommend it to you ! My mom 's enthusiasm toward Korean culture is worth to be respected . I had been using an iPod and iTunes so I was little familiar with the products by Apple . For example , I listened to BBC and CNN podcast . I connected the hose to the faucet , dragged it till out of the fence and I tried . But very little water could be poured on the roof . But I watered all around me , the block fence , the wall of my house and the ground . I felt even cooler than ever despite knowing the temperature might not go down so much . As for the cafe , as I mentioned , it was a very stylish and its dishes were reasonable and tasty . I had to make a presentation about accountings . So , I had to study accountings ! ! hi there I 'm a nativespeaker of spanish language but I 'm ok at english , anyone who like help me on my japanese study I will appreciated . thanks I have lived in Iran for six or seven years , so I can speak both Farsi and Dari . The two langauges are not very different , but sometime a person from Afghanistan ca n't understand a person from Iran Farsi is the language used by Iranian people and Dari is the language used by Afghan people . But Afghanistan does not have only one official language . Afghanistan have two official languages , the other language is Pashto . I must study English , Norwegien and math to be able to go to school in Norway . For this reason , it was difficult to give the survey . I 'm was informed today that I succeeded in the entrance examination to graduate school . Recently I have discovered that I start getting used to memorizing materials which have no relevance to my studies what - so - ever - this kind of behavioral pattern has baffled me for quite a while , since after I found myself flipping through pages from the nearest dictionary again . I guess back in the Freudian Era these self - descriptive symptoms could well end up being diagoised as `` hysterical . `` My roommate younger than me by 2 years . Sometimes we joke that she must thank that boy because he made her love books . Now , she has met another boy . and I feel nostalgic . I thought I had one too many drinks during the festival . - - Many tourist come there to see numerous fish . He met many students and changed their lives . I was trying to make my family 's version as well as it . The main reason is my indiscipline and frankly speaking , laziness . Please tell me about yourself , where are you from , what do you do , and how old are you ? I was surprised to hear his words . I drank an energy drink because I was tired . I was invigorated . because some people do n't have jobs to do . . I think they 'll give you good answers and you 'll resolve your Japanese problems . I found out that the old friend who had often caused some problems in class had become a store manager at food resturant . What made you come here ? So do you enjoy beautiful nature in good weather ? Because everything here is too expensive . Before July 1st , 2010 there were two different kinds of taxes . You are charged just 5 % when you buy food , books , clothing for children under 14 , medication , and goods for babies like diapers and milk . Many people say that BC government spent a large amount of money for the 2010 Vancouver Olympics so that everything except the minimum wage is going up . Your friends ? To build Olympic facilities and infrastructure , tens of trees were cut down and mountaintops were blasted . It was estimated over 85 units were affected , and this led to an increase in homelessness . But , I 'm provided ONLY FRIED FISH AND FRIED POTATO . [ ^ ^ ] This year , I want to enter the city marathon . For that , I have to do lots of exercise like running , swimming and stretching . I did n't write in my diary recently . A long time has passed since I wrote in my diary last . I have mailed out hundreds of CVs , but received few replies . My friends told me that it was snowing a little bit in He bei province yesterday . But I know it is impossible and I need to study here . My friends and my families told me the weather is getting colder and told me to wear clothes as much as possible . I need to find a new challenge for myself . Actually , my country is very close to japan . However , the transportation fee is really more expensive than from China to korea . Anyway , I wanna make Japanese friends . And I recommend you to book a hotel , and a bus or a train as soon as possible because a lot of people come to Nagaoka in the season . ( during this season ) After some time I took photographs of my flat to show my friend , who lives in another country . I want to be able to write sentences fluently in English as I can in Japanese . I serviced in the Korean military for 2 years . Many of Korea 's young people have to service in the Korean military . you have to obtain a permit from the Korean military departments . I am making tempura and soup . My teacher is younger than me and studies Japanese . Anyway , I found out teaching Japanese is more interesting than I expected . I believe that every ' first ' is very exciting ! He tells me that he is well , but the situation is not optimistic . However , our class won 3rd place in the end . I 've been to Canada and I was impressed with the stunning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more magnificent . I have a seminar at my job . The seminar required me to get a little sleep . At my office , the air conditioner is working much weaker than usual . Thanks for reading . Elves , dwarfs , magicians , trolls orcs , and others too . I mean elvish is such a cute language . Speaking of the elves , I really want to a jewelery like Arwen 's evenstar . And the other couple Faramir and Eowyn are so courageous and dignified . tomorrow l want to write down the china exchange rate but it 's difficult ! It was very beautiful , but it was very cold outside ! But my home has not started yet , because the weather just changed so rapidly these days . It was said that one of the thieves knew the language of the birds , and another could unlock any lock without a key . And there are lots of food the GERD patient ca n't eat such as chocalate , sweet food , milk , tomato , peppermint and of course wine and coffee . Anyway , I hope everyone is healthy and exercises more ( including myself ) ! ! I think it is very fun to make friends . Of course I analyse myself at first . For this reason I like to read , listen to songs , but I prefer singing , and watching films about outstanding people . . . At the dinner , I ate miso soup . I like miso soup . I 'm Japanese you know . But the soup was still very , very hot . But I 'll keep eating miso soup tomorrow , and the day after tomorrow . you know , I like miso soup . In ancient times a bad dragon lived in Japan . theater . I think that there is always time to talk to your friend if you want to . Maybe cats in those cafes are happier than those do n't have their homes because Neko cafe 's cats are fed only by playing with us human beings . I wanted to improve my running because I 'm not good at running . Hence , I could improve my running . Last week , I read the book `` la sombra del viento `` by Carles Luiz Zafon translated to Japanese . This novel has a taste of mystery , horror , romance , suspense , etc . And also , I caught a cold from him . He said my pupils were already there . Energy saving lamps are our factory 's product . I went to an Anpanman movie at the cinema with my oldest daughter today . When we entered the gate , we got an Anpanman doll made of plastic . It can project an image of Anpanman with a push of a button . In case I forget it again , I 'll write the password down here . . . Athletics meeting in my daughter 's kindergarten . Yesterday , there was an athletics meeting in the kindergarten that my daughter attends . The weather forecast said it would be rainy , but yesterday it was fine day . The class that my daughter is in , called the ' Duck ' team did n't win , but my daughter and all the other children of her kindergarten and their parents ran around looks happy . Next year , both my daughter and my son will attend kindergarten too . I 'll invite my parents to the athletic meeting . I saw this site in my favorite magazine , I was angry because I started work at 7 am today . I wanted to do something unforgettable to express my appreciate to them . On Christmas morning , my father entered my room and said to me , But when I was doing an internship , I thought that it would be too difficult for me to teach something other than biology to students . Do you do skype or facebook ? Today , March 10th , is the day when candidates can know whether or not they pass the entrance exam of national universities in Japan . I have a girlfriend and I love her , but I ` m so embarrassed that I have not yet told her so ^ ^ . We go to the same private university ( University of Keio in Tokyo ) and we belong to the same class . But she also studied to pass the entrance exam of the University of Kyoto ! I ` m sad because I could ` t meet her if she passes the exam ( Kyoto is far from Tokyo ) , while I support her and believe she will be a success . I am 32 years old and I like my current job , I work for a company , a big company , and I feel confortable and I have a decent salary . Now I think she is the most beautiful girl that I know . Since that day I am always thinking about her . That day I waited for 30 minutes in the restaurant when she had appeared in her red skirt . . . . The topic is staying healthy , we have to write some points on the note card and say it in front of classmates in three minutes . here 's my whole speech Also , I am a meat lover , I eat a lot of meat , especially steak , I love it very much . But now , I realize that I ca n't be like this anymore , I want become more healthier , so , I change my daily routine . In recent days , I talked with two foreigners who came from Japan and Malaysia . Moreover , we have invented an interesting way to interact : I listen to what the one says in Japanese , and translate it into Malasysian with the Taiwanese man . If you know a book which you think is the best , please tell me . First , we had a dinner at Coco No1 , the chain curry restaurant . In the restaurant , as we were talking , he told me to search useful websites . website I 've ever known . `` So , I joined Lang - 8 . But I really want to go abro `` a `` d to expand `` my `` horizons . Because yesterday , I slept all day long since I had cold , I didn ` t feel drowsy last night . If you read a book about a foreign country you have never been to , you can experience the atmosphere and culture there without visiting . Yesterday , a very aggressive woman visited me . I said that other girls had packed those vegetables , not me ( which was true ! ) But she screamed : `` I can show you ! ! ! `` Then she took five packets of carrots and threw them at me ! So I was shocked and stood there not saying anything . Diary ( 20 . Mar . 2011 ) I went shopping yesterday . The weather was not good , so I felt more tired afterwards . [ past tense ] For example , leaning ON the railing , leaning OVER the desk ? ? ? b ) Boxes are cluttered on the road . com person replied to them and they sometimes apologized for the inconviences . Today , I went to Rikkyo University , and I got a student card . The atmosphere is really strange among all of us . . . Are we still friends ? Although some infrastructures have been congested , even in Tokyo & Yokohama area , Well , that 's all . Our group consisted of 3 families including mine . I want to learn English because my dream is to visit many countries all over the world . It 's the motherland of my granddad and simply a wonderful place . My teacher ` s pronunciation was clear , but the cd was hard to understand . I thought that I really wanted to make artificial intelligence as a result of this experience . Why are people 's feelings so complicated ? Other researchers have proposed to detect the tumor 's movement from the diaphragm 's movement . I studied Spanish for two years about 5 years ago . or should I concentrate on only one language until I master it ( or at least be in the intermediate - level ) then start with the other one ? A goal is more real than an idea , and has considerably more chances to be realized . Incidentally , Robbie Wiliams , who had left Take That , has rejoined after fifteen years of separation and has made their new album , cooperating with the others . And for the 3 years I ` ve studied French . I love comedies like Two & A Half Men , The Big Bang Theory and The IT Crowd , etc . Luckily , it 's really good to have nice weather . It 's the best weather this year and It 's good for running a marathon . I did n't have any particular reason for attending the marathon . I was always concentrating on keeping up my pace and not slowing down during the race . I managed to finish it , but I could barely walk normally after that . Anyway I should exercise regularly . . . . . I love sleeping ^ - ^ I want to go to a different country dive in a different sea . I want to go snowboarding if I obtain it . Unitl this year , I have been working in ShangHai and have not been back to my hometown . They will see the full bloom cherry blossoms for the first time . now I have gotten back to my place , im gon na cook dinner for my boyfriend : ) : ) what im gon na cook ? It is exciting , fantastic , amazing and hopeful . He and I belonged to same club in university and have known each other for about 9 years . I don ` t have anything to write here . . . First of all , this subject reminds me of something very cruel , which is the passing of time that we , all mankind , have to face . When I was in first grade , I was selected to be in the Christian class due to some kind of mistake , even though I am Buddhist . I was the only Buddhist student in that class , so I felt a little nervous at the beginning of the semester , but everything went just fine . I know the reason why I could n't control myself these days . Every day we see beautiful , modern and fast trains passing through the village . Let 's just have fun while studying . We went to Yale University first . When we arrived at Yale University , we all felt very excited and shocked . Their music has also become a part of our lives , especially when we live abroad . This small painting work does not only pose a cost problem but it also could n't be accepted by the factory . My university is famous for teaching international students Chinese . I was translating an English e - mail for my boss the other day . After their explanation of the situation , they inserted a phrase `` A Guy . `` with an capitalized `` g `` . My way of learning nowadays . Earthquake happened in Chile the day before yesterday . I felt at ease but I am worried about the people who live in Chile . It truly made me surprised ! They supply products at very low prices without losing quality . But I have gotten to the idea that it 's fully enough in quality and looks at this moment . I bought a magazine , Non - no . Non - no is popular magazine about fashion in Japan . But a few minutes ago , I received a call . Today will be a business day . But , today is the weekend . I 'm really looking forward to this weekend . Maybe she 's a model or celebrity in Tokyo . Now its hard for me to lean the work but the work is smiler to another job I had worked which was in a pub in Japan , so I think that I remember it soon ! I decided to clean up and discard some clothes I do n't need . I always make a lunch box for my husband . Yesterday I made it as usual , though he did not need it because he had a health check at the company . During that time , there was no PC in my house and I did n't have a cellular phone . The magazine has plenty of information ( features stories ) about events in Tokyo that week . Today , people get information ( over the Internet ) on the web or mobile phones . Cheerfully ! But I have received nothing . I 'd love to help people who is studying Japanese . Usually the doughnuts cost around 110 yen each . May Day holiday passed very quickly . But fortunately , three legal holidays are added , tomb - sweeping day , dragon boat festival and mid - autumn festival . Astrology predicts that Pisces ' dreams will come true , and I await . And we went to a sushi restaurant together ! My iPod is broken * becauseI accidentally washed it today . I should had checked the pockets ! But , these thoughts make me feel pressed so that 's why I think I have done nothing recently . Japanese Sake is not wine , you should drink it when it is freshly made . . It was a lucky day that I saw beautiful sunset . I was volunteering as an interpreter and supported them . 7 people with their families are participated . But when I went to church , I could n't find to somebody who has talked with me before . Wife : Dunno . `` He really wrote 30 songs a day . I looked at him only for 10 seconds , but I still remember that he wore a suit and he looked very tired . Somehow I unconsciously took the envelope from him . I also remember , the train seemed to jump and swing a little bit due to his body . Mark Zuckerberg would become the youngest billionaire in the world . It is estimated that Facebook has over 500 million members now . The two young men had different points of view about Facebook 's history . . . . Did you know that Takahashi Daisuke won a bronze medal in the Olympics ! ? We have good news and bad news almost everyday but I wish we had only good news like about Takahashi winning the bronze medal ! ! My friend and I met up at the movie theater at 8 : 00 . I think this movie encouraged people to think about real things in wonderland . Although the sales staff was so enthusiastic , the course was absolutely I think whether I can learn something or not depends on how eagerly Cafe Party My friends held a Cafe party today . This is my first time using English to write a diary . I think it probably l would really appreciate it . I felt really happy when my former boss told me that I would move to Okinawa office , because the Okinawa office is quite popular among my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so we could go anywhere we wanted with my wife driving us . ( In those days , my drivers licence had expired because I forgot to renew ! ) . I did n't have time to go drinking with her before . I want to speak English well as if I were a native . In Japan , It 's called `` The Japan Series `` This year 's deciding match is between the Giants and the Lions . Because my printer broke . To study English & French , I I thought I would try this Lang - 8 site . Because I felt that the original novel was very interesting when I was read it . Last saturday I saw the movie , ' Lost in Translation ' . After seeing it I realized that Japan has many non - japanese people here , and that the country is becoming multicultural . I 'm looking forward to it ! It is true to studying languages consists of the letters , If you have done that yourself , share your experience , please . I have this book published in English . Recently I thought that I need to need understandEnglish . So I 'll be going abroad anytime , for find job in a foreign country , I want to be ready . I normally only have two cups a day so that I do n't drink so much coffee that it might cause bone loss . She had to go to Moscow urgently , but she could n't leave Silver on his own . Recently , my sister began a part - time job . Prosecutors have no right to say ' justice and honor ' anymore . But I 'm very proud that MBC is not afraid of unjust power . The Mayday event that the North & South Trade Union co - organized might be canclled . Besides that , I 'm putting on weight again . But when I try to write in English , my brain stops working . I did n't want to go back to Japan . I 've been studying English to go to Canada again . I am very anxious about whether I can complete the full distance . After 2days , my mother noticed her charmy . I praised him , and felt ashamed to sing . w Maybe my friend is just very talkative and she could finds a lot of interesting things from the usual things So I think it 's important to keep in touch like this ( now ) . I 'm learning German and strengthening my English now . It was there for a long time since I forgot that my pot was on the fire . Today was a wake and tomorrow is a funeral . I want to improve my English . Can you help me ? Thus on this day men gave sto their wives and mothers , and they accepted every request that their wives and mothers had . I 'm planning to get my hair cut after getting my exam results . In Japan children who are less than 15 years old can ` t offer their internal organs . What is more , people who doctors declare brain - dead even can ` t offer theirs either . I think that it is strange for Japanese patientsto go abroad for it , because us Japanese shouldn ` t rely on other countries . ' 1 ' is pronounced ' I ' , and ' 2 ' is pronounced ' hu ' in Japanese 's informal way to count . And I actually scored higher marks in the Chinese - - > English interpretation test ! I saw an interesting piece of news about lions . Another one was personified risks are perceived to be riskier , then anonymous risks . Well he 's not is he . Al Qaeda then . it seems to be riskier . I do n't think many people knew who the Taliban were , who Al Qaeda were , on how to pronounce it little bit later on . I bought some groceries , such as Vegemite , as souvenirs from Australia for my family . And this time , my father bought Japanese cakes in the shape of an aromatic citron . We work with a bad manager . Secondly , my friend told me that I looked older because of my glasses . Now , we have to elect the new superintendent for the dormitory . The voting day is next Friday . Rice wine has piquancy and a delectable flavor . It means I can watch TV in the bathtub with the cellphone ! XD I 've always thought that doing a puzzle is really boring and you must have a lot of patience with all those little pieces . At the same time , it reminds me of the game I played at kindergarten I woke up at five this morning . I am male and gay . I do n't know what I will do in the future . It is little far , but the doctor is famous and good at sport osteopath . I like Timberland 's shoes . : - ) But soon , my school is going to start and everything will get busy . Things went really badly , I mean really awful . so I started to freak out . I started with the first question , which was very ambiguous . I 'm struggling with them . So I will write a diary in English on Lang - 8 ! When I wondered where I could take my baby in the mall , I happened to find a pet shop which had a special campaign . First of all , I will try write daily . Althought , That taste and style is like , really similar to C . A . Many Japanese people participating in the GP finals is exciting and interesting for their fellow Japanese people ! She corrected my mistakes in some exercises , we read a book and I tried to speak about my holidays , but my attempts were without luck . = ( ( ( And now I 'm writing this post = ) These days , I 've been a bit busy so , I could n't update my blogs for a week : ( A lot went on : O School started and I was given homework than I 'd expected . XO I also started running in the morning , with my friend , for diet and health . The web registration for my exchange university did n't go well . . . Busan is a famous harbor city in Korea . Things I have thought about recently I could seldom find correct answers . It ` better for me to study Japanese history and basic matters in Japan for communicating with foreigners . I ` ve sometimes felt upset that foreigners know about Japanese culture more than I do . How can I improve my ability of memorization ? My co - worker invited me to go to see the movie `` Avatar `` as it released yesterday . My brother came to my house last week . Have I been familiar with early bird ( riser ) ? I can read in English , also I can understand speech on TV and in the films ( movies ) , but I still could n't write correctly and could not speak fluently . It is very fun to swim when it snows . Do Hemingway 's novels consist of easy words and sentences ? Are all of his novels full of easy words and sentences ? I decided to study English . I must meet someone who I can speak with . One day a gypsy stole a bag of corn and was thinking about how he could split it up so that he was not noticed . I am a member of ( the ? ) Tamura Jiro seminar and a member of ( the ? ) Uzaki Akihiko seminar . make friends I want to make friends with people allover the world , especially speaking English and Spainsh . And please type `` friends from lang - 8 `` thanks Am I really going abroad alone ? `` Of course it 's real . I used to hate writing something because I felt it was a hassle . Japanese students study English for a very long time , but only a few will need English in their future . I called a water pipe repair company and a repairman came to my clinic to fix it . Francis said something stupid about the slowness of the machine to break the ice and Rachel started to laugh . Nobody could n't understand they were in love . One year later , the very same day of their first date , they were engaged with a diamond ring as witness . I have go to El Camino College since Aug , 2nd . His dream is to be surgeon . She is fortyish . You know , I 'm cooking pancakes and I promise that I wo n't let you eat any ! `` So , although I was tired after my trip , I was really upset and frustrated with her `` lovely greeting `` . I will work at a local primary school in Bhutan . Because , to me , they are my really good friends . if my friends want to learn just click and join me . . ohh I should be thank my friend named Tyler who gave me more wonderful pics so I use his pic in my topic I ca n't understand the Russian language , therefore I amended the Russian person 's English translation . Parents are up in arms over plans to close the school . We ate hamburgers today . I 'm studying English I ate cream spaghetti with iced coffee . I was satisfied because it 's delicious . have no subtitles I think that the Sianam goverment should support the Humanitarian Aid Program . The second is the focus on medical treatments . For example , it is difficult to distribute the aid to people fairly , and there is no economic stimulus included . people may decide to study foreign languages for various reasons . People in certain businesses may have to deal directly or indirectly with foreign correspondences . Starting with writing some notes in lang - 8 . The last Tuesday , I tooka walk in Hyde Park because the weather was fine . because the weather was beautiful and I made friends with a classmate . It was very beautiful because it was just in full blossom . Because here there are not many cherry trees . We could learn the news and details of the tragedy immediately thanks to the Internet . They have become aware that they have to take action against the tyrannical authority of Mubarak . He is used to taking care of his interests , and his power as the president . I am asking , where are human rights , good conscience , and justice ? In addition , they want to reform the constitution , and they don ` t want Mubarak for another presidential term . I think that all these demands are very normal . These demands wo n't take a miracle to achieve . Millions of people are all over Egypt shouting their demands , but no one listens . I am very sad for the people who were killed , injured , or imprisoned just because they want reform in their country . Today is the eleventh day of my country ` s revolution . All the people are calling Mubarak to leave , but he refused claiming that he fears chaos if he leaves . ( five spaces ) I completely approve of the way you are teaching and that is why you 've convinced me that your offer is the best one of all possi ibilities . He said `` take some medicine ( anthelenintic ) . . . . . `` But I had not eaten . Here there are quality foreigners . Sometimes the foreigner friends help correct my English diaries . I am afraid that I will fail again . for example ' BP oil spill ' , ' Iraq and Endless Afghanistan War Today is one of the important anniversary for all of Americans , the Independence Day , it 's known by many people around the world . I think about that those are in their all of hearts . I know that those are called ' American Dreams ' . It 's why they all sacrifice the weak people of around the world for making their the huge happiest American Dream lives . and all of Americans because thay have another nice characteristic , American Spirit . The living room and dining room are beyond the kitchen . I stayed at home all day and watched TV . I play an English studying software called `` Eigoduk . `` But I usually take care of her because my son is too young to do it by himself . In the universe , time was born in just a few years . They eventually settled down on the earth without fear of danger . As time passed , they become dogs , mice , cockroaches and humans . Thank you for reading about our ' ( Fantasy ? ) world . ' Have you watched the movie Armaggeddon ? I think it 's really famous and I hope many people have watched it . I spent some time , and thought out an answer . Facing to the north , right is the direction of east , and left is the direction of west , Boy : Yeah , I am Christmas ~ Will you marry me ? I like playing computer games and watching TV and so on . Fortunately , it 's too cold and dry for cockroaches to live here in Hokkaido so I am relieved that I do n't see any cockroaches . However I did n't have a partner , so I practiced alone . My skills are not that great so I did n't have a chance to play others . I thought she was much older than me , because she has a low voice , but she was born just three months before me . Almost all Japanese clean up their house completely , decorate for new year style , write cards for new year 's greetings and so on . However , there are some big cities , which have more than 500 thousand people . Such cities are bigger than prefectures . When I drank green tea after taking a bath , I thought this is a real leeway of life . But I drink green tea , I sometimes wonder why I feel so . surprised that he used QQ . Us Chinese like using it , but I did n't know foreigners use it too . My umbrella snaped after being hit by gale force winds . so if the company does move to another place I must go to the main place and do a job with him every day . My secong idea is to stay at the same company but I dont think I will be able to read a book . and I do n't have the time to practice English . They only speak in English with occasional explanations in Spanish . But I think people who have beards do n't look good . ( although , on some people it 's cool , like Johny Depp ) Most of them are younger than us by 3 years so I could not help feeling the generation gap when I talked with them . Adapting to the new circumstances is always difficult and I 'm a little bit nervous How to learn new subjects ? They can grow organic vegetables of their own at their farms . In a passenger train there are carriages , and in trains used for transporting freight there are wagons , right ? I think happiness is decided by comparison . We visited an Asian goods shop . Recently , I 've been interested in Asian goods . I have a complete lack of EFFORT ! ! I 'm very healthy , but one point is not good . I do n't want to become a diabetic . Mourners are come to pay their respects to the person who has passed away . Rose hip , hibiscus , german camomile , orange peel , apple peel , black currant and grape were in it . I sometimes got angry but usually I love them . I have a runny nose very often ( kind of allergic ? ) and get tired easily . I was ill yesterday . Happy Valentine 's day Jamie Oliver Having a part time job at a small foreign restaurant was the begining of her love story . Most of the customers who came to the restaurant were foreigners . Lane just wanted to look into his eyes for so long . The Professional Japanese Language Teacher Training Seminar Its title was `` The One - to - One Japanese Lesson for Japanese Language Teachers `` . Lecturers included a famous teacher who is my senior , the president of a Japanese language school and myself . It 's easy to find out if you look at the entry calendars from last year . This year , I will write short diaries , for example , just a couple of sentences , and so on . That way it will be easy for me to keep a diary even every day . When the competition started , two strong men were fighting and there were some slamming sounds . I heard that it is good for learning English . I want to watch `` Heroes `` . I have n't written in this blog for a long time . I logged in to Lang - 8 for a long time . I was surprised and I felt very thankful . Because the teacher could not teach such things . One of my Singaporean friends taught me a way to delete it . And my Singaporean friend gave up and told me he is going to bed because it was already midnight . So , I could search for a way to delete it on a Japanese web site by useing the simple Japanese type method . How cheeky and stupid they are . He now able to speak various words ( For example , the name of animals ) and He does n't need a baby - car any more . The reason is that some kids had been watching me for a while . When we were talking about that I thought the time was running out fast . Now the vacation ( respite , diversion ) is over , and I must free myself from the games to focus my mind on more significant things . I went to Universal Studios on Sunday with my brother , my mother , my friend and my friend 's mother . To get to Universal Studios we took a train . First we rode a new attraction called Fantagi . It was a nice attraction . Universal Studios was very fun . I would like to go again . now ( no comma ) I am listening to music . cn . If you have something to share with me , tell me through it . But I don ` t really like to study . ; - ( Next February , I 'm going to take the entrance examination for Tokyo University . However , I 'm not good at English , so I joined Lang - 8 in order to develop my English writing ability . Can you guess what I answered to that ? It was n't very productive , but I watched an titled ' Hajime no ippo ( The First Step ) ' on youtube . I did n't subscribe to weekly comics , such as ' JUMP ' and ' MAGAZINE ' , at that time so I did n't know anything about the story - line . but it was canceled because of an idiot ! So , I bought Sheperd Pies at a shop and washed some lettuce and Nari , the dolphin , is one of a pod of about thirteen wild dolphins that attend a nightly hand feeding event at a resort on Morten island off Brisbane . The dolphin was spotted to have a very deep wound from a bite of a large shark on Friday , until Monday the animal had not emerged from Moreten bay at its nightly feed , and it was feared it may have been injured , but the twelve - year - old dolphin returned to its regular feeding spot on Monday night , and is transported by a boat to the sea world of the Australia 's gold coast , where he underwent the surgery and now is recovering . The dolphin is said to be coping quite well , and is expected to be back in the wild within forty to six weeks . I was using safari since I bought an Iphone . But I did n't use safari so I decided that I stop using safari and other Iphone functions except phone , e - mail and something that does n't use 3G . It was useful because I could visit places I have n't been to before . It was a pleasure to me because I 've never done that before . So I walk around Nara city near my house . I will go his restaurant again in the near future . Because my car 's color is black . I want to study English . sth ? ? ? ? like M . J . perhaps cause M . J . , so l listened the Beatles . Today is my first day on Lang - 8 ! Hooray ! And I hope it will be useful for me . I ate fried minced meat , egg roll , and sausage . After that , I went to my friend 's house and played a lot of games . 3 days ago , my aunt called me and she asked about working in her convenience store for 4 days . Starting foreign language education at a very early age is a good idea . The second reason is , if starting English at a very early age , they can know pleasure of communicating in English , not Japanese , and they can be excited about learning English . In these ways , I agree that starting foreign language education at a very early age is a good idea . So we split up . Today I 'm very happy , because this morning I bought a green screen for chroma keying in my shooting ! : ) It 's fantastic , you have to film against a green background and then in post production you can remove it and replace it with the background you 'd like . introductory Sino - Korean and lastly . . . Anybody who reads my diary will be happy . I will participate in full marathon convention for the first time in January next year . This morning I ran for 4km at 10 kilometers an hour . There are gold stars , big and small circles on a brilliant emerald green . But the dry flower is real . The ingredient is gel not nail polish . Gel is very wonderful ingredient . My emotion is influenced by the bad weather . world is enormous and the possibilities are endless . and new environment . as the saying goes , `` being young means no failure . `` I believe we I imagine that I coul n't know you because you had a big change . Emma Watson x People tree is the greatest collaboration ever ! I do n't think it 's funny , so please respect the victims . . I want to lose weight and buy it . It is pity that I can not reply to my friends . ratio among the developed countries . I feel happy to have free time without TV , cell phones , Yesterday , my wife and I went to the ob - gyn hospital to examine our baby I begin new days . I hope my friends are happy everyday ! It is not a reasonable price for me , but ths massage really effectively recharges my energy . However , many foot massage services advertise themselves as English oriented massage method or something . Please recommend my english name ! ! Plz recommend my English name ! ! I was surprised because I could n't catch what the speaker said . I was woken up by unusually bright sunlight this morning . Because , you know , a lot of power plants which are managed by Tokyo Electric Power Company or Tohoku Electric Power Company have stopped running since the earthquake . So the Japanese government has been calling out to people to save electricity . But some people are misunderstanding . I worry that people , especially old people , who do n't use air conditioning in very hot weather and ca n't stand the heat may get heatstroke . And this shop has a nice atmosphere , too . We visit Mizuki Shigeru road by a local train which has drawings of many hobgoblins characters . I am so busy that I usually forget about them . Actually , I deleted history on Windows Explorer , but I did not clear the document history . I was researching my other job , so I could n't write down today 's diary here . The photo was taken last year . I 'm looking forward to meeting him . However , the spa was very nice and lunch was also excellent : D ! I major in German . I want to speak English fluently . I totally recommend this shop . We have a school festival every autumn , it is a very big event . Today is an unlucky day ! In the morning , I hurried to get up , and ate sandwiches , which I had prepared last night . Then , I realized that I had forgotten my ticket and wallet . Especially women like to talk about other people . Finally , I decided to throw them ( all ) out except for the graduation certificate ( join to next sentence ) a nice language exchange partner As a result , the level of my English is declining . With continuing practicing , I believe I can speak English with foreign friends one day . Nevertheless many Koreans say that children have to live with their parents . And they can grow in having less stressed situations compared to children without parents . After get married many people want to live as a nuclear family . And they say that most parents should n't / ca n't insist on the right to criticize those who wo n't take care of their parents after getting married . The mood of the city was so interesting and new to me ! Night market is a special culture in Taiwan , and there are a lot of delicious food and traditional handicrafts . My listening skill is very weak , so I always got the lowest score in the listening score of the TOEFL . Tomorrow is a holiday , so I will answer the comments of previous I - diaries of mine . I 've made a big mistake , Two days ago there was one unidentified payment in my bank account . Althought it was good to solve the money puzzle , I have a new puzzle to solve . How did the first guy know about that unidentified payment I had in the first place ? It was the most memorable experience that I have had so far . Let me not be afraid . I have learned of multifarious historical events of cruelty , massacre or carnage which are aimed at wrong sovereignty . I always go to clinics , meet doctors and advertize to or inform them about my company 's medicine . However , sometimes I am appriciated by doctors for my support . In Madrid , it has been raining all the time and going outside was impossible . Sometimes I 'm confused and I do n't know a good sentence . They 're friendly , walking beside you , always lending an ear when you 're happy or upset . I want to buy shampoo and conditioner at half price . They are consumed quickly and used everyday , I 'm a 22 years old Japanese woman . I can see good points in others . I try to accumulate childcare experience because I want to be a good aupair for my future host family . We have a lot of time to study , but I waste a lot of it . I am very helpless and unhappy . This phrase has the same meaning and uses the same thing ( in this case screw ) in several countries . I corrected some diary written by Japanese learners . It is so interesting ! He sleeps in his hummock outside and jump into river to wash his body . In morning I received your present , how beautiful necklace , I think this gift is the best birthday gift ! Suddenly , I 'm a little bit frustrated about the situation because I ca n't respond to people immediately . In this first semester , I need to choose an area which connect to my next semester 's vacation placement , it is like an internship somewhere to do practical work . I chose `` Mental health `` this semester , this is a big challenge ! I have poor listening skills and my spoken language is also very poor . Maybe . `` Takht - e Jamshid `` or `` Persepolis `` was an ancient city and one of the capitals of `` Hakhamaneshian `` dynasty for many years . My hobbies are listening to music , watching TV , playing sports , and so on . But it was ok , I enjoyed it . We had a good time at the restaurant . I think it was reasonable . I met so many people from around the world . I could n't speak korean very well . By the weather forecast , it will rain tomorrow . And two typhoons will come close Japan . So , even if Japanese people can not speak both English and Mandarin , we can still communicate with them lol . I do n't know what the Koreans and Taiwanese think of Japanese people who are studying English in foreign countries . Lately I 've been going to Akibahara alot . I attended a meeting for those who are interested in finance and / or accounting . But , suddenly it started to rain . Aedile , I 'm afraid sharks vs . gorillas is too absurd even for the Colosseum . . . that has been a crowd - pleaser in the past , but it would be politically inexpedient considering the number of noble families that are converting to that faith . I had a trip to Aomori prefecture with nearby farmers at the end of last October . First of all , I went to the top of the Shimokita peninsula in Aomori prefecture , and I ate a delicious tuna at Ohmacho - town . Second , I had a good time to see the landscape of the Japan sea at the top of Turuga peninsula Because there 's no car at that area . This trip was too late for the season . She was really surprised knowing that . Sometimes I 'm too single - minded , so for example , if I decide to study English , I would think of nothing but English . I think it 's my mostserious weak point . I 'm acasual smoker , I would like to stop smoking . ( Singapore is anEnglish speaking country , soI think I should not say this . . . . Which is the best answer ? I wil introduce useful websites or tools for learning languages ( English , Chinese , Japanese , and so on ) . Let 's learn foreign languages more pleasantly and cheaply ! And the teachers said that it 's not a festival for you students in grade three in senior high school ! How hard they want us to work . If I write something in an impolite way , please tell me . I was asking if they would like to have some more ice tea , They feel my son fascinates me . Wow , Ukraine ! According to the article , in Belgium , there are four parties and they all have trouble with languages . In some parts of Belgium , people speak French , other people basically use Dutch , and a few people speak German as a common language . The prince and her father are not described in detail . Cinderella becomes a heroine just because she gets married to him . We all have read or watched this at least once in our lives and it is still read by a lot of people . Althought He had mistakes in his reserches , I think he lived a respectable life . We read an essay in which the writer said , `` An umbrella is a kind of a nuisance , `` or something . In 2009 , many scientific studies showed that the chocolate is very healthy , is rich in flavonoids , is good protection against the sun , improves the heart , decreases blood pressure , and it would even protect against cancer . `` Shiroi taiyaki `` is a kind of sweets popular in Japan this time of year . The meaning of `` Shiroi `` is white . We went to Yeouido to see `` The Fireworks Festival `` . What is correct ? After the big earthquake and accident at the nuclear energy plant , my company recommended that I work from home until we could confirm the safety level of the radiation . My Chinese friend made a big decision . This reminds me of diamonds and coal , both are composed of the chemical element `` carbon . `` but they are so different : diamonds are sparkling , expensive , clean , while coal is dark , cheap and dirty . The difference is in the base : the way molecules of carbon are bonded Coal can generate thermal energy , which helps to provide electricity . I was disappointed . You should say : Across the River Seine next to the museum , there is a very famous museum named the Louvre Museum . I do n't know the story 's details yet because this musical is their original story . I have never forgotten this memory . . . . I had never seen such a big cockroach . I got an invitation and have joined Lang - 8 since last year , but I have n't written anything or even looked at this site for a long time . Girls in my town are already enjoying wearing various beautiful In such an occasion , I am grateful for being a woman . It 's a funny movie ! But I found it a little vulgar . I was surprised to see a lot of sex scenes . This was my first ( only English ) speaking camp , so keeping this rule was little difficult for me , but I managed to live only speaking English . Most of the schedule was practice such as , discussion , listening , vocalization , reading , etc . In another activity , we had BBQ , played volleyball , and other interesting things . In closing , our group leader read a speech through tears . I had to decide on a section before I got off the bus . There are four sections in The UK ESS , parliamentary debate , academic debate , speech , and ISS . In the second semester , our main ESS activity is section , so I am looking forward to practicing academic debate . Then , he said , `` We Japanese do not insist so strongly like you . `` I have suffered from migraine since I left the office yesterday . I think that I am not used to have a nap yet , I decided to sleep a little sometimes . Any help / tips or comments would be greatly appreciated . After my sister and I grew up , we left our parents and started living independently . I 'm studying English now . is there anything else . . . ? If I go there again , I will go bankrupt . We picked a full bag of peaches and plums , and went happily back . Normally , the last week is special for everyone . I did n't know what happened . On the train there was an announcement saying , `` All passengers get off this train right now `` . On that day , we were taught about the Asuka era of Japan in English by foreign people . I went to the Toy Museum with a foreigner . It was very comfortable to see ! ! And I also entered level A though I have never won there . . . . Immunisation Requirements Immunisation Requirements vary from country to country . I will outline the immunisation requirements in Taiwan below : I have ridden in airplanes a couple of times , but I have never gone to the airport just see them . I hope one day I will speak English . . . . I did n't know an important truth till then . Today I learned about making traditional Brazilian alcohol `` Hey Kichibeido you remembe your promise ? That 's why I finished my work earlier than usual and came here , finally . Sometimes I want to be good student but it 's very hard . I heard my relatives said they have a firecracker show at the South Bank in Brisbane . But there might be no performance this year , because of the floods . Today , at English class , I was taught that `` modern world is one `` is an incorrect sentence . Do you have similar experience of this ? Also , cosmetics , fashion , magazines , movies make me excited . I enjoy learning English , I wish I can say it frequently . . . I am so happy , because I understood what the boys said , and I knew how to say what I wanted to ask . I would like to speak a lot of languages , too . If I could get one year sabbatical , where should I go ? I wrote many articles this year about topics such as an entrance ceremony , sports meet , open school , track meet , children 's sumo wresling meet , volunteer work , a school play , school excursion , school festival , aquathlon race ( swimming and running , ) and Beethoven 's Ninth Symphony concert in Kokugi - kan . Anyway , I Love English and I 'm an optimistic person , I 'm going to enjoy writing . Today , typhoon came to my city . He must practice chinese characters ( KANJI ) . This is my favourite program in the UK , because it is fun . The program invites different guests every week , such as singers , actors / actresses , comedians , cooks , athletes , etc When Lady Gaga was a guest , she was asked some unfavoured question , so she answered on the phone which she was wearing on her head . Now I am happy that I can understand English , because I can know foreign TV star 's characters . She told me of some places where she has found mulberry trees . I hope tomorrow is fine . The difference was , however , that he kept on going to his potty even while wearing his diaper . I will hardly visit and study , but I want to make many friends . When I found this site , I decided to post my journal everyday . When I said that her students seem to have been improving their Japanese a lot , she looked really happy to hear it . They often gave me the energy to teach . I will start to clean up things soon after I use them . I went inline skating at the Hadson River Park with my friend . I could do it anyways , but my friend could n't and held the bar the whole time . . . it was so cute : ) We could see the beautiful sunset . . . You know , if you are bitten by mosquito you have push and push the skin with your finger . PL fireworks festival is one of the biggest festivals in the world . When I was ranked , it 's on purpose . At that time , I uploaded 12 entries a day . This time , I uploaded 4 entries a day , and I did n't intend to be ranked . I ended up 4 entries when I uploaded ones which I wanted to write at that day . ( a bit unclear ) Kimono - a kind of Japanese tradional clothes - are made from Asa ( hemp ? ) or Kinu ( silk ) in general . Today , I have a presentation about Japanese weddings in my English class . Japanese tradditional traditional weddings are `` jinnzennsiki `` which are held in a shrine . However now this type of wedding is 20 % of the marriage ceremony in Japan . I think that many girls are attracted by a white dress ! A couple and guest is to be superstitious in a ceremony even now . If you are invited to a ceremony and a party , you need to give a couple some money for a celebrating present . Even number to spare number suggest that a couple is to be divided ! so I 'm going to introduce myself . And it enables us to enjoy taking a bath outside and to overlook the valley . Job hunting gave me pretty good opportunities to seriously think about how I want to live in the future . Maybe we have to pursue this answer indefinitely though . I am writing about my favorite thing today . My favorite rider is the Italian rider , Mr . They are both on the Italian team this season . Hida meat is very famous , but it 's very expensive . My favorite book . One time , when I was really interested in the English language , She had been reading books since she was young . Her parents do not take care of her and leave her alone at home . She is really different from other girls . When she goes to school her teacher is really surpised because she is much more clever than normal girls . That story gave me inspiration to study English . However , I want to try cooking roast chicken and I have to prepare party stuff and decorations . It 's seems a little bit complicated to me . It seemed to be a very nice day . . so I took a chance to ride my bike because it had been a long time since I used it . That 's how I caught a serious cold . . What kind of transportation do you usually use ? her colon and anus were demolished . she ca n't be pregnant and she has to have an artificial organ in her body . My husband has shoulder pain . I think , it is something that I can believe in , and it make me a kind of positive or happy . I am so depressed , I study English every day , and after finish class , I return home for continue to study English at home , but whatever I try it has no benefit . I memorize English vocabulary every day , but in the next day I will forget half of them , I feel so upset , I think my IQ is good , but my memory is not so good . . . . Can anyone tell me how to remember English words faster ? Thanks I was classified as intermediate level . When I came back to my house , I remembered the incident this morning . I want to know if foreigners color their hairs or not . the weather is beautiful . my roomate asked me to take care of her , I do n't wanna let her die in my hands . . . if so it would be a memorable experience in my Australian life . The way I expressed above may sound insensitive ( and I 'm afraid of doing so . ) , but in my case that makes me realise that I 'm lucky in such a peaceful society and makes me think about people not in the situation . He is making an effort to make their own paradise . He imagines when he comes back and sees the beautiful face of his lover , tears in her eyes , but she will smile happily , and she will still love him as passionately as in the beginning . Please help me correct my mistakes , Thank you so much ! ! ! Today my english ( and I know about this very well ) I commiting a lot of boob ; - ) I really like learn english words , but I have a BIG BIG REALLY BIG ; ) problem about grammar : ( Polish language is different , we have another grammar and sometimes ( ok , almost always ; - ) ) I speak / write incorrect ; ) I thought that was too expensive ! In addition , I learn Japanese in my spare time to enrich myself . Watch your manners when drinking with clients or your seniors . Do n't be their alcohol go below half a glass . Many people buy a lot of doughnuts . There are a lot of people who like doughnuts in my town . They both are down to earth and very genuine . More speaking , little action , and lacking an ending . I can barely finish all of the questions but not enough time to double - check . In the movie she played a police officer and one of the Miss United State candidates . If you know the best way to remember , please write your way in the comments . Tomorrow , it will be cold . Maybe I wo n't be able to forget her after this . My husband left his cellphone in my house I wondered . I could n't believe myself ! Yesterday when I watched the news I saw that over 1000 elementary and junior high school students in Fukushima changed their schools during summer vacation in order to avoid the radiation from nearby nuclear plants . Under now circumstances in Japan , we 've been sensitive about food ingredients . I 'm Japanese and live in Hiroshima , which is a very peaceful city . Today I finally finished my thesis and I will be graduating from school in maybe two weeks . My brother said to me that my grandmother was transfered to the emergency room for her brain surgery I will probably have muscle aches tomorrow . My allowence is far from being able to afford even the cheapest one . Soo today I write something in English . OK so today I also decided to first learn some Japanese words and then write somthing here , till then I will be using only English . I desperately searched for an Australian conversation partner , but three months were not long enough to master conversational level of English . He answered me , we introduced each other , and began to talk . At first , I thought it would be really difficult . I was afraid I might break my computer . However , he miraculously recovered and he is full of energy now : ) I got the form for it from the city and sent it back after filling in the information that they need . I thought it 'd be a very good place in this extreme hot summer , but it was too cold to stay long . As far as I 'm concerned , I 'm really vulnerable to the temptation of sleep , especially in the morning and afternoon . especially in my city , Kumamoto . It wo n't save you if you only drink coffee because vagetable ( vegetables ) and some other nutritional foods are important . This means that I am not able to use word , exel or any other software and systems well . I told them many times that I do n't know much about PC software . I am not good at english , but I will try to study . Recently , on the contrary , speaking English is getting a to be a little burden to me . The more I learn and know that I have to put what I really mean into the words , the more I 'm scared and concerned that I would give people a wrong or bad impression of me . I admit to say I 'm a little insecure , which I do n't like to be . It is quite difficult for me to understatnd slang . ( Oops , is this slang in the first place ? or are my studies lacking ? ) She is fascinates me though I do n't listen to pop music very much . At that time , my heart was beating so fast . Although the weather was not perfect to see the far view such as Mt . I am really nervous . In my student time , my writing test always get - My writing is just so disastrous that it discourages readers to read and correct . . . ( highly probable . ) Yesterday I went to Church in Higashi - nakano . My friend recommended it . It seemed like a good opportunity to get to know foreign culture through understanding Christianity although I 'm not Christian . There are many people who are native speakers who can speak English very fluently . Then , our company held a sports event the day before yesterday and I took part in many activities . First , enormous reading is regarded as a priority in the process of study . On one hand , rote learning is not really worthwhile . On the other hand , reciting on the base of understanding is definitely good . After a while , you will store up a large number ofarticles in brain . We will feel easy when we use English to express our views . It 's said that vegetables are good for your health , so I make sure I use vegetables . For today 's dinner , I made steamed rice with vegetables and meat mixed in , grilled mackerel , shrimp spring roll , fried chicken , boiled spinach , grilled pacific cod with white sauce and vegetable soup ( including garlic ) . Do you think we need to create a ' ' common language ' ' for people in the world ? The first day 's result was not successful . I could get up early , but I was n't able to do anything I had expected . I am a funny guy ! It 's the business language . . . . . Not only this , even though the school is an international school , there are so many Korean students and poor chance to speak in or listen to English . Children and fools always speak the truth . I finished my breakfast at six o ' clock ; then , sat on the sofa and spent some time watching UEFA . Yesterday I went to my friend 's birthday party at my American friend 's house . We also had a big ice cream cake and snacks . We also drank a lot of alcohol , especially the people whose birthday it was . By the time the party was almost over , a couple people passed out . If it keeps snowing through the evening I shall not find my house under the snowdrifts - this is Russian weather . Going back from work to my house , I was driving at a maximum speed of 40km per hour . If the snow was n't making it cold enough , the heating in the house has stopped working . Yesterday I had a fever of 38 degrees C . I do n't have enough information about finances . and we enjoyed a game and making friends with the members of the committee in my university . It is to organise ? ? the festival of university . Only suginami - ku ( one town of Tokyo ) was entered in Japan . Some people do n't like security check , but it In the end , you can board the airplane at the gate . They have your seat number in that experience and I have to take an airplane but I need to It 's kind of scary to meet someone who I have n't seen for a long time , but positively thinking , it 'll be a good opportunity to catch up on things we 've done ! Talking to my friends will helps me relax and get rid of the pressure and stress from my work ! I 've realized that grocery stores and the whole city are getting ready to be decorated for Christmas lately which makes me feel this year 's almost over ! Today I received a notebook which I ordered a day before yesterday . But I thought it 's dangerous to buy something expensive before seeing it directly . Now , I want to be a customer service agent in an airport . There is some grammar I ca n't remember . Hope I can successfully pass this examination . If you have any interest in the web site , you should n't wait , just ask me . I 'm a big fan of `` The Dark Knight `` and `` Memento `` and I like Ken Watanebe . Absentminded story Another example , I went to my room to fetch something , but I forgot what it was when I arrived . I could n't undersand the contents , so I was so bored and sleepy . we had been waiting for a long time to see the famous band , . we were n't sorry to have seen it because it made us very happy to listen to the music and dance . I went there early and I decided to go to my home before the music started because I wanted to check my diary and read a book . I have spent my time for preparing for a seminar . Behind the counter , there are machines which scan the bar code and say if you win or not . You can win a voucher for two euros , five euros , or a big surprise ( I do n't know what kind of surprise ) . During that time , I 've met a professor who was Mr . ( name of my last supervisor ) 's friend and he 'd introduced me . However my purpose is n't loving . I try to concentrate on what I should do now > _ < Lately I began to have doubts over the choice of my future job . I want to be a journalist . In my opinion , a journalist should write about what he knows very well or write about what nobody knows . I am not sure whether I will have good topics in the future , whether I will pass exams and enter the University , whether I will find a job in good a newspaper or a magazine . Although I have been learning english since I was 12 years old . Gradually , I realized that English is very important . These days I am interested in learning English . And my major was Japanese . And make friends who come from everywhere . I must make more effort ! ! According to his explanation , it seldom stops , but ( or and ) it is recovered by turning it on and off . Just think about the fuel rods , they could provide everyone in Tokyo with enough electricity every day . If they can pass the test , they will be given licenses . ( The salary of a career - changer is different . ) A HAPPY NEW YEAR Whathever , sometimes you just want to relax without thinking for a week about what the ending of the last movie you saw meant . I Regretted Eating 8 Pieces of Cookies So , I ate 8 pieces of cookies for dessert after dinner . After ate them , I regret eating too much . . . But the strawberry cookies was very delicious ! ! Anyway , why do the humans want sweet after exercising hard ? : ) I have n't tried out my lovely baby yet because of my damn busy job . We are crazy . I will have a holiday the day after tomorrow again . We ordered buta - tama ( pork and egg ) and takoyaki . If you see `` FRESHNESS BURGER `` , could you try one ? Earthquakes have happened since this morning , on and off . My dream is to go to an American school or university to study ! Driving test I am curious how difficult the written driving exam is in other countries . . First of all , I want to say that I do n't know very much about the relations between North and South Korea . I wish I could recover immediately . I hope I recover soon I like snow , but I sometimes hate it because it 's difficult to drive on roads covered by a lot of snow . I started using skype today , because we can speak in different world languages there . I am thinking of practicing speaking English . If you have skype account , please call me ! ! I like online games and Motorcycles . One - piece , Naruto , K - on ! ! , and Bleach are good anime . Fortunately , most of them find one of the best partners for spending the rest of their lives with peacefully without any complicated trouble , unlike some of the famous golf players . but after a few months problems started and my mom and grandma were fighting a lot verbally and sometimes physically . . . . . I registered on Lang - 8 today . I drink a glass of soymilk with two spoonfuls of the vinegar every day . I watched `` Valentine 's Day `` , which was started playing yesterday . A lot of foreigners were at the theater and laughed a lot . Last night I was watching Billy & Mandy , one of my favorite cartoons , and I saw that Grim , a character from the anime , was holding cute skull shaped cookies . But , unfortunately , God forsook us . To be continued . Soon , My son will be in a summer vacation . ITS URGENT , PLEASE , CORRECT THIS ONE ! Please ! I believe that life is a art and we can paint our life as we like , so no one is the same . And this is very helpful when I make something creative , such as cards or calligraphy . I have watched Friends many times . I like Ross best because he is so kind to his friends and he is so lovely when he is with Rachel . Until now this friend 's children were all boys . New Zealand is now winter and this morning was freezing . Normally I wake up around 7am and these days sunrise is after 7 : 30 , so every morning I have to wake up in the dark . Tonight I will go to bed early . Today is children 's day in Japan . Recently , I read the book titled ' Syabake ' . Luckly I woke up tonight . The population of Japan is decreasing now , but the business in Japan is doing poorly . I had some potato salad sandwiches , cherries , and iced coffee . Like other countries , children in Japan believe that Santa exists . Gon na work as a web creator after graduating ( only 2months left ! ) . They were the offensive side , and we were the defensive side . My advanced class students learned how to inquire at places like hotels , cultualcultural centers and infometion center information centres ; asking the price , the way to get there , what kind of facilities they have . . . But I could n't understand how to purl , until my granny showed me how to do this . Finally , I slipped it again and knitted some pairs of socks and gloves for my father and brother . I need the computer because I am studying English and Ihave todo myhomework . So , they are not eager to get married . so I ca n't read messages . I looked up several recipe websites to see if there are any other recipes to make with leftover turkey . But recently , it has become more difficult to communicate with China & Russia about territorial affairs / matters / problems . Have you heard what happened between Japan and China , and Russia . For our kid 's future , we must communicate constructively with logical thinking . I went to climbthe mountain , which is near my apartment , but the mountain is very short . If it is bad for my health , I will reduce the amount of coffee I drink . Recently I have been going to driving school . I want to go shopping and sightseeing and eat hamburger . I 'm relieved because no trouble has happened , as a result . In the first two days , I just took a break . I think it was not relaxing . A : What a strange factory ! All his dishes looked so yummy so the next day I went to the book shop and bought his cook book . She is going back to Ireland so I decided to make something for her . And as you may know , I am living in Eugene , Oregon - - a very rural area , so I ca n't get them easily . It costs 65 dollars . We slept only 3 hours each night . It was so regrettable because if we were n't nervous we could do better : ( I do n't know why I was so nervous . At first , it was an ordinary thing . But after I grew up , I felt that I had missed a great something , which was my father ` s affection . I realized that I did n't receive from my father except for his money . After my mother ` s death , I thought that my father would change for the better and play my mother 's role , but unfortunately he could n't do that . In spite of that , I love my father so much , but if I had had the capacity to choose my father , I would n't have chosen him . Do n't spend most of your time working , because you believe that your children need money . Of course they do , but be aware that they need love before anything else . It is when I am passing over the bridge that I see the almond moon over the sky . Dessert was too sweet for me though , but my sister said it was good . Yesterday , I got a new family who study Japanese and are going to stay at my house for 4 months . I think people become unaware of how important the things we care about are as we get older . Anyway I think this movie is not only for children but also for adults . It 's very exciting and entertaining and an heart - warming film . We had booked a room in the Hilton Hotel before we traveled there . I am good at receiving , so I am entrusted to be in libero position . So , I want you to correct my Journals or to send me any messages . Love sharply and deeply , although you can become hurt this is a unique way to live completely . I was going to buy running shoes , but what I actually bought was a DVD and so on . he will soon be able to stand by himself . There were a lot of ropes with different blocks ( polyspasts ) , funny mirrors , infrared cameras with displays , magnets , models of the ancient `` Perpetuum mobile `` ( of course they do n't work ) . I chaired the club meeting . My son actually chose it , but it was luscious and I was elated . I want to learn Korean , but I do n't know how to study it and which book can help me . . . Is it look like a black flower ? ? I 'm planning to get a driving license before long . abroad . . . . . . But I have trusted the Government . There were a lot of women . `` Zyoshiki `` means girls got together and talking about boyfriends , work , and life Enjoying happy `` girls only `` time . The medical center cooperated with many student restaurants and invited them to offer nutritious but delicious lunches . There were fruit sandwiches , Korean food ( without meat ) , spaghetti with vegetables and chicken , and so on . I had lots of chances to fly on airplanes around that time . The place of the story is Barcelona . ( Is this a right spelling ? ) So , I began to take Chinese herbal medicine . On Saturday , I 'm planning to go to my friend 's birthday party ! ! My hobbies are soccer and tennis , and I 'm interested in anime . I set it up ( It was a little difficult . ) and used it , but I was disappointed . It means I have to switch and link items when / every time I want to use the headset with other applications . I searched the internet and it says it takes you 1000 hours to understand what a native speaker is saying . I am a student and a scientist at school , so I spend a lot of time studying and doing research . But now , I got a breather to write an entry . Hot springs are also effective for curing a variety of diseases . What I find difficult is the pronunciation and writing in English , while I find it pretty easy to read and listen to English passages . One of them tried to catched the thrown ball from the QB , Rogers who was elected as a MVP player in the Super Bowl . We were glad watching in that moment . I will never forget at that moment , when everyone was smiling and embracing . It 's a special day for me Although I do n't have a lot of money and pretty girlfriend , I 've studied English for a long time ( actually I 'm also taking my major that is economics in English now , because of university policy . . . ) but still speaking and writing in English is kind of really difficult for me . This will be really honor for me , if you guys have confidence in using English to edit my diary correctly . Because of it , it felt too uncomfortable to rest in the afternoon . Today 's weather in Wu han is so great . It is sunny , so we can wash clothes in the dormitory . I never read them to the end . I would like to , but I am a crazy girl . I know it is really hard to do . Sometimes I feel lazy and sometimes I feel drowsy and would like to sleep . Hello everyone . I 'm practicing `` In too deep `` by Sum41 : ) However , unfortunately my son caught the ball someone pitched . My team 's parents were talking about the move with disappointment . I ca n't believe it ! Seinfeld is a comedy drama based on the real life of Mr . Sarah Jessica Parker and Matthew McConaughey appeared in this American romantic comedy movie . I have an English test tomorrow that I wanna ( want to ) pass . There are around 328 people dead . Last week , my classmate who is now a teacher told me that there are 2 classes that have been stopped due to H1 / N1 in her school . The most impressive car was TOYOTA FR - S concept . When painting a picture from your memory , simply close your eyes and think about the innocence of childhood or your first bittercrush . I think I have the responsebillity to remind you , my friends , to pay more attention to your health . Personly , I insist the fact that health is the first . I was excited and moved by the close match . but I was frightened by their high skill , technique , body strength , From today may 1st , 2009 , onwards , they have ' Sakura special ' , for example a Sakura scone . But they put the price up ! ! My company had an exhibition in a department store . I had to be a prompter girl there with a lot of show girls . I left home at 8 : 30 to go to Toronto , Canada . I am looking for people who can teach me English . Which sentence is correct ? ? ? ? ? I studied English at school for about 8 years . for a long time ~ or for a while or forever ~ Why don ` t scientists invent this machine , Some of our members ( unfortunately they could n't join the re - union ) have got married , had babies , and what 's more , one of them has already divorced ! ! If I have mistakes , correct itplease . For some years , Ididn ' tdo agood job and have many many troubles . Life is a journey . I just watched the movie called Avatar . You often see its advertisement on TV recently . These days , many students do n't like math to be difficult . Because it is hard to make the adjustment and there is few unorthodox fighter than orthodox fighter . I will be staying here for ten months . I think maybe I would understand why he had a two - faced attitude like L ' etranger . . . These day I am interested in learning English . Actually , I have graduated from university . You find more tourists than Japanese around here and can listen to languages other than Japanese , such as Chinese , Korean , and , needless to say , English . The access to the airport is easier than from Shinjuku or Shibuya . The atmosphere here is more down - to - earth . If your mood is in , you can have them on a boat with Tatami - mat watching skyscrapers , what 's more a strange object architecture on a famous companies roof , which seems to me a gold excrement . . . Although I 've studied English for 10 years , my English is really poor . I took a grammar test at school this morning . However , I heard that my level up test score sucks . To tell you the truth , I feel sorry for him , because he really looked sad . . . However , I think that street _ performers should be much better at juggling . Street _ performers are often bad at juggling , because they do n't need to be very good at juggling to surprise audiences . I was very hot but very happy ! I changed my job this Novmber to work at hospital . Humm I still do n't know what to write about , and I definitely need some help , because I never have time to practice my written English . . . I watched TV and made accessorries . But it was cold and their bodys shivered , and I did too . Next , I must learn what my bad side is and try to control it . Once there is something wrong with the electric ( electronic ? ) or programs ( programming ? ) , robots will become a good - for - nothing machine . Supposing everything would depend on robots , What would human beings be like ? Hello = ) Therefore , I can ' t sleep . . . This year there was also a street market where you could buy paintings , bracelets and other things , many people participated . Our baby will be born this February . I thought ' bout a barbershop Today I went to a barbershop . I took theTOEIC test last Sunday . I work Italian restaurant . Although , I do n't know how to use it . This is one of my favorite points of my English school . Usually there are 5 ~ 7 adults , including the teacher , and 4 ~ 6 babys . I started learning English in junior high school ( from 13 years old ) so I ca n't become bilingual . It was very delicious . Then I went to Jill 's cafe event with my friends ! Jill Stuart invited me to it . and he apologized to Jenny for for what he did to her that night . I went to the National Museum of Korea for seeing the history of Egypt . Today , I will attend a lecture by a financial expert I will think it over because the subjects that I choose are very important . I 'm feeling somewhat weird since we do n't have the summer time in Japan . So I sent a message to him `` When will you call me ? `` And he answered `` 5 : 30 I will meet you at Arsenal station , OK ? `` I went to the station , and I was wating for him , but he did n't come . After that he sent a message to me `` I 'm sorry . My friend had a problem . I decided not to promise anything more with him . When I was defense , I only striked . It rained heavily today . I heard on the TV weather forecast that a few days later , it 'll be hot again . Of course the camera was broken completely . I have studied American and British literature for about 3 years . Especially when you take two totally different language courses , it would drive you crazy . Every time she starts to choose students to anwser her questions , I always pray that she wo n't call on me again and again . I live in Kumamoto city , and Kumamoto city has a similar altitude to Los Angeles and Phoenix . I was presented to it by my host mother when I stayed with my host family in the north of England for the purpose of going to the special school as a foreign staff member . During the lessons , he is smiling in front of the mirror . Hugh Laurie , who most of us know as Dr . His position was offensive half , Midfielder . I 'm willing to correct essays / notebook entries writen in Korean on Lang - 8 . But after a period of training , I learned to operate it . That 's the reason that I have to say to all of you I 'm sure that I 'm a beginner both in English and using a PC . So now you maybe feel funny and laugh at many mistakes in the English sentences written by myself . I 'm disappointed how limited my vocabulary is . In total , we might as well wait the shuttle bus of Carrefour due to its convenience . but it 's okay . mystery is always be a thrill , right ? Our Institute congratulates yours on its 30th anniversary very much . Heavy rain ! ! It is hard for me to concentrate on studying . Because my friends made girl friends , except me ! Since I finished military service , many things have changed . From IT technology to people 's value . I could n't adapt to this new society very well . was on stage as a member of his band . I do want to play this music very slowly . My favorite pianist , Fredy Kempf , always play the pathetique mov . 2 very slowly . I do n't know which is the correct expression to say . That the copper `` gets reduced `` and the zinc `` gets oxidated `` . . . ? I am interested in learning English and hope to make friends from many countries . If you have a question about Korean food , education , culture etc , would you contact me ? As you know , the situation at the nuclear power plant in Fukushima plants is terrible . The company has a big luxury accommodation near the nuclear power plant . But the company has locked the doors of the rooms and forced the field workers to sleep in corridors with blankets . The Tokyo Electric Power Company said `` We will use the accommodation afterward so we do n't want field workers use them and get them dirty . `` Honestly speaking , I 'm a little nervous now . However , in response he gave me an wink with a funny face ! Then , the online teacher said `` What happened , Masami ? ? there are many classics which were writen by our ancestors There are many modern works too . chinse books . Playing the trumpet is very difficult because I must use my lip muscles around the mouth and breath adequately to keep correct pitch and rhythm . Now , our orchestra is preparing to perform the pieces , Brahms ' Symphony No . I teach her Japanese . She is really pleasant , cheerful and definitely different from sentences and grammar . Five people including me attended this meeting . It was a good opportunity to think about my career . I tried to walk to the hospital near my house , but I could n't . He can speak intermediate level Japanese , probably he can explain English grammar to me in Japanese . When I was in Sydney , I hired a damn cheeky Australian Japanese tutor . Oh , I 've drifted off topic . In short , we ca n't talk loudly in a library , so we ca n't practice speaking . Today I went to the stationery store and I bought a wonderful ecologic notebook and two drawing pencils . Actually , I 'm not the type of a girl who writes a diary entry everyday , but I think it 's a very interesting system . Hmm . . . what else should I write . . . yeah , I suck at writing anything even my own language . but I could n't do anything for them . Now , I really talk with people even if they are Japanese because of my busy work . One is to give encouragementin a positive sense . Today I applied for `` Kyoto Charity Fun Run `` and entered a group in the half - marathon . While we are reading mystery , we can pretend we are like Homes , and when reading adventure , we can jump from a cliff like Indy Jones ! ! ! I thought about something that I took a trip through whole Taiwan by bike last year . It was almost in such a season But I can learn about war through movies , newspapers and TV shows . he did not die fortunately . idk how to use Photoshop : ( Japan Soccer Go ! It is dry and pretty loud . . . However , the class lasts more than 50 minutes . For example , when I put any food in fridge [ refrigerator ] I must stamp date their labels . I calculated the amount of words I need to memorize to pass the test . If the husband dies earlier than the wife , the property was to be divided into quarters , and three quarters would go to the wife , and the rest to the brothers and sisters of the husband . They came to the decision that they would let the old couple to divorce , and divide the property within their lifetime . The problem of property inheritance used to be a rare event , but is common now . Shiga prefecture is in the Kansai area , where people were not damaged by the quake . I had to have a small camera with a long cord inserted into my stomach , which made me feel a little scared . After the examination , I consulted with my doctor and was shown a picture that depicted the inside of my stomach . I ate avocados few months ago . There are only 8 students and I 'm not one of them because our teacher choose them according his personal sympathy ( ( ( maybe it 's just simpler for him not to take or deal with girls . Moreover , I get up earlier than others , because I can study and work more efficiently in the early morning . I appreciate it very much . I was chatting with my friend , slept , and read books . But I had a very happy holiday . Last weekend , I went to a museum to see a Japanese painter 's 3D art . It 's so magical , you can see my magical painting in my photos . Today it 's raining : ( ( ( I do n't like rain ! ! ! ~ ~ ~ ~ ~ ~ ~ ~ When he went to Paris , he got into trouble at the airport , when his luggage was mistakenly sent to Africa . It was mysterious and magical . It is caused by refraction of moon light at a high altitude in fine ice . But everyone else wear Spring coats . Please take a second look at the label . . . This is an example of the difference of democracy between the US and Japan . Therefore I had decided to run at my fun - run pace . Luckily , it is easier for learners to learn the Chinese grammar point about subject verb agreement which often annoys the learners in some any language study such as English . I 'm sure I passed the oral , but in the other test , I had to write a composition ( no more than 180 words ) which was the 40 % of the total ( I wanted to write cost , but I 'm not sure if it 's alright , so what I put was . . . I felt nervous . Ca n't 2012 be really coming ? I hope it 's never be true I practiced listening and reading . my japanese is so poor that I ca n't read the dialogues fluently , even ca n't write a complete sentence . I begin to lose confidence . Today is raining . Talking with others is the most important part of learning a foreign language , so I 'll try to use it at various opportunities . Everybody has the chance to give others gift in some celebrations and anniversaries . ( anniversary ) My friend gave me a can of macadamia nuts as a soevenir from Hawaii . I 'm still in the phase to test one of the module to see if it works well . TT My family loves him very much , he is the most precious thing in my Now I 'm looking forward to the the Spring Festival , when Recently I started playing guitar . I am a beginner now , but I want to play `` There but for fortune `` by Joan Baez on the guiter in the future . It 's Japanese traditional culture . football and other kind of sports . `` Week of Sports `` is very interesting and fascinating . It has n't been a long time since the Japanese Prime Minister assumed . I think this is such embarrassing news for Japan . Although it rained off and on all the time , we began to walk while chatting . The teacher is Filipino . They are all friendly and patient . These things are enemies to learners . Although today 's weather forecast says [ no comma ] there is a 70 % chance of rain . . . . Although I have n't been abroad , If I get a high score on toefl , I believe I will get a chance to go anywhere . OR Have a chance ? I have had a toothache these past couple of days . Children of Immigrants I watched a TV program about children of immigrants a few days ago . The TV program showed that children of immigrants who had to go back to `` their mother countries `` have n't been paid attention to . It is made of Hida - beef that has been raised around the meat of cattle , And it has a good reputation . It is famous for the delicious food and its history of culture ( no need to write here ) . I 'll be back tomorrow or you can also visit our office to pick up your delivery in the afternoon . `` TomorryTomorrow I will go to work again . I would like to study abroad . I finished washing some glasses , and I was bringing it on a tray to the front counter through the tables , which most of them were filled by customers . If it 'd happened in Japan , I definitely would 've been forced to say `` I am sorry `` to the customers since it may have bothered them . yeah ! Then , in my house with family , I ' lleat cake , decorate a tree - - I hope for christmas snow ! Goodbye everyone I should sleep a little bit or I will fall asleep in the classroom . Foreigners in Taiwan can feel they 're welcome wherever they go . And the youth are full of creativity as well . It 's so easy to imagine that they 'll tell everything to classmates and their friends , although I do n't want anyone know . Althought I have learnt the Korean alphabets before , Let me tell you about our vacation in Croatia this July . But I can not go this Sunday because I have something to do aside from tennis . I bought and ate a croissant in this bakery . There 's little time when I can be satisfied with what I had done that day . Unless we were geniuses , it would be difficult to be content . Or even if we did as we scheduled , it would happen that we will forget certain amount until we get out of bed next day . It will make it easier for me to catch my mistakes . Today I was walking in the delivery ward I cooked Korean food . I 'll definitely write in my diary every day ~ . Beer gardens and about the 15th of August ! It is a paste of azuki beans and is very important for Japanese - style confectionery . the contest sponsor cut off all funding to the prizewinners . but I will work hard on the T - shirt design . Fortunately , I found a useful site of English grammar and I 'd like to study using that . Some people say they could n't do what they wanted to do because they were too busy doing what they had to do . Many ' to do ' s are opportunities to advance . The Giant Killer Catfish . From Hell . . . Strikes Back . Michail turned back and tried to run , but a huge barbel grabbed his leg , so he slipped on the mud and felt down . Then he went to a hospital in Nanjing to have his operation , the docotr cut half of his lungs . We donated money for him , but it did n't solve his problem . Three main characters unfamiliar each other were at the crash scene and each story was focused on their dramatic but tragic and melancholy fates . I was in a confusing situation Today , when I was waiting for the bus to get home , three people sat at the bench of the bus stop . They were speaking Cantonese . Both of them speak Cantonese so I think her explanation should of been better than mine . If senior people become more and more and less and less babies are born , the senior peoples ' life would get longer and nobody can take care of them . I can have a picnic with my family on a fine day . Seuss ! So I encouraged myself , I could get benefit from this experience . Its even popular to put fake eyelashes on their eyes . Actually , I 'm working for a beauty salon now . And , I like typhoon days . Typhoon days make me excited . I guess one of the answers to this question is , people and money from all over the world are coming to London because of the less - regulated market or something . The party was held at an Italian restaurant in Shiodome which is one of the most modern places in Tokyo . There were already Christmas lights up . Mozart said , I think , well . . , I SHOULD even though I 'm not sure how the security updates work . Because I 've ever played basketball and handball , initially I supposed it 's just an exercise and I 'm a little thin to engage in sport . While I was on Lang - 8 she asked me to open YouTube and look at Avril Lavigne . Now I 'm not comfortable with hot and spicy meals . . . I do n't know how to thank the person who corrects my English in Lang - 8 . Now , I want to make a lot of foreign friends , I want to talk about many things . My dogs let me know the snake came to my house . They were barking . I am social welfare worker . I help the poor , handicapped , and the elderly . If you 'd like to enjoy the long stretch of the countryside nearby , I recommend you to take a slower train at a nice comfortable speed where you still get to see the countryside rolling by . I noticed that I need to improve more on my English writing skill . I 've been to Hawaii before . I hope you are well , I am the graduate student from Tokyo University of Marine Science and Technology who guided you around Tokyo when you came to Japan , two years ago . I am e - mailing you because I have a favor to ask about the article you presented in Nature magazine in March 2008 . I guess this is the most important quality that I have written about . Hell , everybody . The staff explained that the chef used coal to roast it and it was on their recommended menu . I am a student . I am studying Japanese . Moreover a thoughtless act or remark can spoil a perfect relationship . lately I take a shower twice a day . Members of Twitter gather in the local area . I only talk about something concerning work or a greeting . I learned a lot of English words , grammar , and about the cultures of foreign countries . Usually , most Japanese companies close on accounting in March . I can spend the time reading about grammar . I 'm happy when I read books , sometimes I would like to sleep on the books . I try to drink water alot , that 's good and helps me have alot of oxygen I know I write oxygen wrong but I write from my heart . I enjoy . I 'm really confused about the passive voice I try to do excercises but I usaully have to open the anwers all the time . Today I did not read but I will be at home after I finish internet room . I bought fruit before I took the bus to go home . I eat on the bus alot I feel headache like I drink beer . I 've run out of water for my contact lenses . I must buy some today but I have a problem I forget to bring my wallet from the office so I do n't have any money . I am not worried at the moment I have a card for the ATM , I can withdraw money using it . But unfortunately , as the island is not very popular for Japanese tourists I ca n't get enough basic information However , the weather in Pinsanulauk was really hot . Recently , what I 've been wanting is `` Rumba `` , a cleaning robot . It is so clever that it can automatically clean a room . And , the narration says `` Your job is grilling ( ? ) . Something happened to me that got me down . I get up every morning with the feeling that I 'm loser . He is intelligent and cool . Every first graders showed blow art . This movie stimulated me . In fact , I was studying Meteorology when I was about 20years old but before I knew it , I stopped being interested in it . So I usually cook my own meals . Today , I cooked Ramen for my dinner . Practicing English writing So , it is difficult for me to identify their reasons . I hope tomorrow is rainy day ^ ^ ; I had an English lesson that involves just answering questions . I had a nice time with kind and friendly people , saw so many awesome things , and I had fabulous food and a comfortable hotel . Actually I didn ` t know much about cambodian history so it was a good chance to study it and it 's especially sad past in the modern era . The travel was not only enjoyable but also extended my knowledge . But one thing that I really love about it is the appearance of the phone . And it 's good for women . Before the examination , I have n't had alcohol for a long time . But I have to get up ( and study ? ) to get a better score in the exam tomorrow . And I will go to a seminar about psychological education , I will eat sushi , I will meet my friends , and so on . I thought that there would be more than 3000 people . When we lined up at the start line , I was a little nervous . Although it 's made by Adidas , it 's a pity that it 's even worse than the last one . I need to improve my English writing skills , so I decided to write a diary or something on lang - 8 again . I wanted to learn Taichi so it was a nice experience . I have decided to do the following Taichi stretches every morning . I 'm going to do my best ! ! But it occurs to me that writing about my condition in Lang - 8 is also studying ! ! I remember that I also paid for my dates with my allowance . But in the USA , boys have to pay for everything , bus fare , movie fare , hamburger and coke . Unfortunately , it was a cloudy morning . I tried to take a photograph with my cell phone but nothing had been taken except the grey clouds . If you know and use it , please let me know what your recommendation recipe is . Japanese do n't have the sense / notion / idea of entertaining ourselves . If I wanted to ask the similar question , I would say `` What do you do when you are free ? `` In this site , beautiful women have the plate that shows the current time . The Japanese government has executed the plan of blackouts . It means the electricity is cut off at a regular time every day . So I found that electricity is one of the more important things for our daily lives . I made a big effort to learn , because this is so interesting for me more and more . I have never experienced this . I am still a university student and English is necessary to get high credits as well as graduate school . I really get stressed out now . Oh , I forgot to introduce a special spot . I quit my French course because I have become more confused about Spanish and French . If I do not stop them , the chatting gets worse and worse . The modern communication tools make our communication more convinient . For those people I can check their etiology one time , I would try my best to find a better therapy , and for those whom I don ` t know their etiology , I tell them that they need a general checkup . I also need to talk with the doctors and nurses on duty , and tell them what they should pay more attention . Daisy Duck in particular is good . The party finished very early because of a thunderstorm . I 'm going to run around my home tomorrow , weather permiting . I woke up at 7 : 00 . They knew that and said `` Go for it ! However , they are leaving Japan because their exchange program has finished . . . They are my good friends and I learned many things from them . I really love Aussie life ! and I 'm looking for a new job which is connected with English . Because , oil ( gasoline ) price is getting expensive recently . I have a daughter who is 1 year old . But a bicycle like that is not fashionable . Generally it 's all about using the opponent 's force to beat them : D This aspect is especially important for me , as I 'm only 155cm high and although I 'm quite strong , my strength is nothing in comparison to that of an average guy . The more the preys move , the more they get tangled up in the traps because it is as if every single thread of their web were made up of adhesive glue . I really wanted to go to a Italian restaurant `` MAX `` one more time , so we went there and ate black pasta with tomato sauce and meat roast and drank sparkling wine : ) Everything was sooo good . After dinner , We went to `` The View Lounge `` at Marriott Hotel . My school counselor Hannah told me that I should go to this lounge before going back to Japan . I think I need to build up my vocabulary to get a high score for TOEFL . They are humorous but sarcastic . I 'm so glad that three of my requests passed and that I received two messages from Lang - 8 . I grilled a big HOKKE in the kitchen . I searched and found out that it is called an Atka mackerel fish . Today , I talked a lot of things about my future with my aunt . People in Canada ussualy put their feet across a seat in the bus . FYI , the exchange rate of JPY / USD on January 15 , 2009 was TTB JPY88 . 25 , whereas today 's TTB rate is JPY99 . 67 at our bank . I made a dialogue using some idioms and vocabulary that I have learned today . I stowed my carry - on luggage , and asked a person in front of me to pull his seat up a little . One of my friends had shown me the ropes the other day , but I could n't remember . Most of them have excellent knowledge of their fields technically Native American jewelry I 've just learned about Native American jewelry . But , the jewelry of the Hopi is rarer than others . Recently , I am thinking about which language I can learn other than English . Also , I am thinking that after learning Spanish , the next requirement is for French or other languages . On the other hand , I am concerned about this fact because my English is poor . According to the experience of my friends , I should stay home ( or at a library ) studying and , I should not go anywhere else . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some comforting . My favourite area is finance and economics . My background is in mathematics However , now an economical crisis is happening all around the world ! On the ferry , there were many Korean tourists . I am sorry that I didn ` t write to you for such a long time . In addition , I do not know the reason why they started demo before the police shot a man . The man is Canadian . Yet , there are many things to do , so I ca n't afford the indulgence . Talking with people outside of Japan with different ethnic and cultural backgrounds is really invaluable experience for me ! ! Playing the harmonica does n't seem to be crazy difficult , and first of all it is not expensive . do n't If anyone does n't help me , I could post the journals I wrote here , in my blog , hehe . I really want to know the expression that I use makes sense . . My Pineapples But I did n't know a better answer . My hometown is more southerly than the town I currently live in . Now I am sitting on the lesson of Information technology , so I 'm writing the post in English . Today is an extremely hard day , we have exam and performance with school chore . I embroidered a lily and made a card with it . Inside , on the first floor , there were a lot of portraits of young beatiful women with flowers and a little tiny garden in the backyard with armchairs under some palms . I 'm not in the mood to do my chores . there 's a three days holiday waiting for me , I have to make some preparations for my trip to Chongqing . . . It 's a sci - fi about a psychiatric patient who My family name is Park and I live in Seoul . Long time no see XD But my English was poor , so I could n't understand the American voice actor 's accent . If you watch the Japanese version of this work , and if you can realize an Oosaka accent , I think you are already a competent Japanese speaker . He sells his watch in order to buy a comb for his wife 's hair , and she sells her hair intending to buy a chain for her husband 's watch . However , Serbian is written in the Cyrillic alphabet while Croatian is written in the Roman alphabet , because Serbian people belong to the Eastern Orthodox Church while Croatian people believe in Catholicism . I want to go to a beautiful spot . For example , if you bought goods at a shop you can get points , and you can use the accumulated points to pay for other goods . But my new office is in the city area , so I have to wear business suits . Today I bought a lot of things to wear , for example business suits , shoes , and so on . I guess I forgot to buy a new light . I am really worried about my parents . Oh my god , my grandma , who is 94 years old , lives in Aomori . I controlled my computer to watch a video from a long distance . I really hate hospitals . I do n't know what to write , but I think that is sad to `` meet `` people and you ca n't talk with them because you have different scheduls . The examination finished on October 16 , but my PC broke down two days before the examination . So , I got another PC and connected to the Internet for one week . I think that I 'll do my best tomorrow even though it is snowing all day . I am writing this English composition from my smart phone . In a sense , I think that is true . But in my case it is n't true . Tonight , we 'll talk a lot about incidents we experienced in 2009 . Yesterday ! ! I will be studying abroad in Alaska , US this August . My holiday For example , baseball , soccer and basketball etc . There is enough space to play them . Therefore , I can be relaxed whenever I go there . My friends worry about me being too busy , but to see children 's smiles makes me very cheerful Actually before starting this league , WBC ( World Baseball Classic ) was one of my favorite things to enjoy after finishing my routine work even though we , Korea lost against Japan in the final round . Moreover , my hometown , Busan , is famous for enthusiasm against baseball , especially the LOTTE GIANTS TEAM , which belongs to Park Ki - hyuk , LEE Dae - ho etc . How about we support them together ? I heard that it is important for women to make boiled potstickers fast . I was going to make a team but I could n't after all . I was sad and disappointed . And I do the others sports like badminton and volleyball every Wednesday . I think he is a very lovely cat . I hope to be friendly with you . Then to improve my writing skills , I will keep an English diary or write an essay in English on lang - 8 , expecting some corrections frommy friends . Actually the main pourpose of my shopping today was to get an electric fan which is small and stylish to place in the kitchen and the rest room of my apartment . I did call another shop to make sure they still had one , but they were sold out as well . It seems like everybody rushed to get electrical fans because many people use air conditoners less for the possible of power shortage in the upcoming summer . I know it 's a good phenomenon that people try to use more eco - frendly gadgets , Therefore , I was expecting the clerk to check my age , but the clerk did not do it at all , hahahaha ! ! ! ( Unneeded because it would cause repetition . ) Korea 's largest conglomerate ( we call them chaebol , which means big company run by a single family ) is Samsung . A few days ago , the third generation of the Lee family succeeded the management rights . The process was absolutely illegal . Although I do n't know wether I can get best By the way , I want to learn Japanese in my summer vacation . They use public transportations frequently . Therefore , the government should make public transportation much more convenient for the elderly ! Strange town . I 've got an email from my friend who went to Germany in February . Anyway , I think the global economy will not recover in the near future . the news source : URL In Japan , a woman filed a suit against the company which is a world famous brand , PRADA . It 's a forbidden way to sell things by the head office , so she informed PRADA Milano . I ca n't take you to PRADA Milano , because of your unsuitable looks . `` In Japan , power - harassment is not popular . If I was hit by a boss , It 's my fault . `` , so if one voices it 's strange or they should not hurt me , most people think `` He / she is selfish or has done something wrong enough to make the company angry . `` Usually , on Friday night . on my way home I will walk around downtown alone , and I feel relaxed and comfortable . : ) Sometimes I will go buy some pancakes or cookies for myself as a little present , and I share them with my family as well . . . : D Just by walking on the street and eating something sweet can make me feel happy and satisfied ! Because I have to take T and the bus when I go back In my personal opinion , setting an attainable goal which can be achieved through a series of steps is the most essential for keeping ( maintaining ) motivation . I conclude my diary here . I ` m a student and I can work only at nights . Especially since my favorite musicians are Americans , I enjoy listening to American music . However , even though I have studied English for a long time , my English speaking skill is n't good enough . I have studied English for ten years . I go to English conversation school every weekend . I belong to baseball club . The difference is whether I experience it inside or outside . From what I gather , the lumps often come to you not only immediately but also after you 've forget about it . And the likelihood of us inheriting footsteps of our parents is very high , which is very unrecognizable because of the closeness among kins . When A car had just departed from / left the building , it was hit by an taxi that / which was running on the road . I hope you can help not only correct my grammar mistakes but also develop my arguments . Since the quake happened , the Tokyo Disney Land has been closed in case of the planned outage and liquefaction . Still , in Japan many people are struggling with the damage from the quake and tsunami but meanwhile we are restoring our own country step by step . Of course I liked them all the same , but I started to gradually dislike the color , so I asked my husband to paint the shelf white . This morning After class I usually spend almost three hours in the cafe studying English with my friends whom I met at a previous class last month . I have been a basketball team leader of my college department for last two years , and at begining of this year I had a junior take the helm . Unfortunately , good things do n't last forever . I felt great about this movie : ) In particular , I really liked Asian Kung - Fu Generation 's song . That is one of the reasons I 'm learning English . In elementary school , we are taught to conform with people in our class . For example , when an athletic meet is held , we are forced to march like soldiers in north korea . Not just in school , but also amongst your friends , when we go to ' KARAOKE ' you must sing songs your friends know . In order for their economy to be safe , China really wants a `` Strong Dollar `` . . I entered the half race ( 21 . 0975km ) . Short Diary in School I belong to Society for the Digital Study , or a computer club . Oh , the class after school ( at this school ) will begin in a minute . I am going to watch the DVD of `` UGLY BETTY `` that I rented from TSUTAYA . TSUTAYA is a famous rental shop in Japan . Is studying English abroad good ? I think studying English abroad is good , but I do n't think it is suitable for me . If I were brave enough and had a lot of money , I might try to study English abroad . I would like to use English fluently in business . Unfortunately , I had a difficult hard time communicating with the telephone operator . Even now , the affected areas suffer from supply shortage . I 've been using my Kotatsu since the beginning of December . Basketball , Volleyball , Soft - ball , Tennis , Table Tennis , Softball , Soccer and Jump Rope . I played Basketball and Volleyball . I started playing dragon quest 9 which was released last week . Today I am still tired . I went to my friend 's birthday party on Friday night and only slept for 1 hour . Going out with friends is very fun and exciting , but too tiring . I was so tired that I was dozing at work [ on ] Monday and today . Due to the disaster at the Fukushima Dai - ichi nuclear ( power ) plant , almost all power plant activity in Japan has been suspended . Couple of months ago , I took a test called TOEIC , which is an English reading and listening test . When the score was annouced , I was surprised because I got 930 . I was really gratified and proud of my score . Education or practice is the best way to learn valuable skills . Nevertheless , people who works for various jobs are able to gain much more experience and skills than students . On the other hand , the education that people received normally is the fundamental and basic knowledge , and teachers do not teach their students techniques quite often . To sum up , by contrast , people obtain more skills or techniques in work than in education . In addition , those with many skills are more likely to match the demand of society . So I went to the barber this morning and dropped by the book store . He is a Japanese comedian . He has a good sense of humour . In this company , I dealt with modern art , contemporary art , decorative art , ceramics , jewelry and watches so I like them all . I 'm especially interested in contemporary art and jewelry . There was interesting campaign against hunt for cheetahs in Africa . English . My homework . Letter to the magazine `` Shout `` . Can you give advice to this girl ? Please , help me ! ) ) ) Sasha writes that she has some problems with her family . My advice to Sasha is : talk with your parents , do not be alone , find a hobby , study better and do not worry . I hope that Sasha will find common language with her family . I have a question about how to use the phrase `` like that `` . Coulda boom be coming ? I sometimes remember old songs . It is `` We shall overcome `` a famous as symbolic song about But I 'm learning English now so that I can understand people of various countries . The other is a `` Collective House . `` This literally means that mainly young poeple collect together and live together . For example , in the TV , the camera is focus ' on the ball only , and we ca n't focus on anything else like the goal keeper , soccer players , etc . It was interesting , but expensive . For example , we can get healthier body from physical exercise and improve our blood circulation . Playing basketball is good at improving the height of your body and improving our friendship . Apple 's new gizmo , the iPad ! ! Apple 's CEO , Steve jobs said that ipad will take the place of I had no choice but to use my left hand . Our product base will have a rail link by the end of this year then we can combine rail with sea transportation , providing more convenience with less cost . Enclosed are some photos of our products . Naturally , the color in the pictures is not the same as the true product . If you need to know more about our company or our products , do not be hesitate to let us know . I think it 's a strange dream . Lynn said ' You miss your mom and UGGa very much ' lol > _ < ! ! ! I am afraid of snakes , when I was a child , I always had weird dreams about snakes . Giant sushi But I think that there can be giant sushi in America , I always gaze at my PC screen , and I make a decision whether the application is similar to the past one . And I hope I will make friends with many people for international exchange : - ) very interesting . I guess that maybe I caught a cold . It has a strong tannin and peppery like taste . For example , you have been practicing catching insects for a long time and but however well catch insects in a forest , you wo n't be able to get them if it 's raining when you go there . In Japan there is n't much newinformation about Russia . I want to learn about foreign cultures by understanding foreign languages As a third year university student , recently I have been very busy ( ? ) writing thesis and other term papers , doing many assignments and sometimes research . Oh time flies , it is a school night and I have to get up early in the morning . It was so humid and hot in Japan this summer . Je m ' appelle Ryota Misawa . Unfortunately , I 'm still ill . . . how keep in balance both the preservation of the environment and economic growth . Yesterday , I was taken to a dim sum restaurant by my friend . My old neighbor died . I would like to improve my English skill , so if you find mistakes , please correct them . Correcting is difficult for me ! ! As the topic , can I use this sentence to describe a person who is trying to do something first or is the first to have done something ? this sentence is translated by chiness , I want to know if I can use this ? ? ? ? I 'm glad to be able to write again , and I hope I can write more frequently so I can continue learning and improving my English . I sometimes find it very difficult to correct Japanese on lang - 8er 's entries . I had to work yesterday too , but I 'm off today . Have you ever had to repair anything in your home ? But I was still missing the Korean ondol system . He is an internet engineer , needless to say he can speak both Mandarin and English fluently , and holds `` PR `` . 3 - A special lunch menu as a Vietnamese rice wrap . I ate / had it with two of my friends . I think that the foreigner 's prank is great . . . I feel happy that my idol Kim Hyun Joong is waiting for a za a za fighting Today I registered here , this a nice website . I would like to make new friends here and of course learn English . This is a very useful service . : ) Greetings to all of you . I want to be a juior high school or senior high school English teacher . But many areas are still awful . Food is the essence of life . As the saying goes , `` Variety is the spice of live , `` food bears the same meaning toward mankind . Rice can be made into innumerable dishes , such as fried rice , sticky rice , and rice cakes , to name just a few . Since food can be so varied and tasty , we must highlight the importance of savoring food , for I believe that our appetite dominates our lives . I will take three regular classes as usual American students do . I started this three minutes ago . My hobby is traveling ! I went to Canada two weeks ago . Everybody was scrambling to make use of him . Then , Shinji met his biological father , who had abandoned him The referees were volunteers . I last refereed one year ago . They taught me some expressions in English . I bought it in August , because I bought it early and I can got it cheaper . But , I wonder if it still makes sense in light of this huge natural disaster . For example , food may be too salty or too oily and spicy to look more tasty . Another reason is that most kitchens in restaurants and food stands are not very clean . Food that is made in the messy kitchens are prone to leading to sickness . If you eat lunch and dinner at home for a month , you can save about NT1800 a month , which is a great amount of money . What a vicious circle ! Because I 'm not a good English speaker . Usually , I do n't have any interest in this kind of group or music , but one day I happened to watch a TV show focusing on it and was fascinated . In this website I can make friends with different people from different country . I think that it causes a very positive effect . It had been raining , not snowing , when I got up yesterday morning . So I decided to go through the pass to go to Sapporo . It helped me to get rid of my fatigue from a long drive ! A large amount of this area is designated as a national park , therefore power companies can not obtain the right to use it . All of us were happy and anxious to see our teacher , because we have n't seen her for a long time . Sometimes I think I 'm afraid to be happy again , because in every relationship I have , nobody says ' I miss you ' . A number of people already died because of it . Recently , I always wear a mask when I get on the train , etc . In China , _ parents and grandparents will usually give a red envelope to their children . It 's a custom . This week is the first week after the New Year 's holiday , so my colleagues brought their souvenirs . The weather is not so bad . Many signs are written in both German and English . People at the ticket office spoke English . Some German words are very similar to English , which was also very helpful . We tried to persuade him to go with me . Omuraice is rice mixed with baked chicken and ketchup , and coverd by omelet . We are a little tired so we are taking a break right now . I woke up this morning with swollen eyes ! We are waiting for an answer now . I feel really happy becase I will not go the company tomorrow in the mornig but I plan go there late after I have finished reviwing so thing at Sanamhoug I am really happy . She teaches me like I pay money to her but we plan to study english and chinese together . She is really nice and practice to teach me Chinese wheather I plan to help her speak Thai very fast . because I really like that she speaks Thai with me so on Sunday we plan to watch a free movie together at Suvimvit 55 road . May joy and happiness fill every minute of my day ! ! ! So I need to learn about ad - tecnology and buisiness of using ad - tecnology . I 'm a big fan of Haruki Murakami : one of the most famous Japanese novelists , and my favourite novel is Norwegian wood . The point is that the children are very naive and naughty so it is hard for us to make everything go as we have planned . I like reading books which teach me how to deal with things in human life . Typhoons are produced by unknown reasons . Typhoons are Asia 's hurricanes . It is known that typhoons occur in the summer . But , Unfortunately , VOA continue to annouce tragedies in asia because of Typhoons . I do n't know why typhoons are happening these days . Kimchi sauce is made of many ingredients , such as clean powder of chili dried by the sun , fresh oyster , needle fish , garlic , mushrooms , and etc . Particularly , if you eat it with fresh oyster and kimchi , you will find it delicious ! But I ca n't communicate with foreigners due to my anxiety ( ? ? ) about grammar I know that I have to study with patience . I 'll be happy if you help me improve my weakness . It a story in another world like ancient China . I think it have been translated in Chinese and Korean . He could transform himself into a salad , but he must cut himself into many pieces ( to do so ) . Tomato did n't know how . I think that our society still does n't know the adequate [ distance from ] ( ? ) this new device . Dad , did you see my grandpa and grandma in heaven ? I also have to apply for the International award ( like a little scholarship ) I thought `` are you really from the spare key company ? `` Something to drink My name 's Irka and I 'll write here in English and German . Usually , Japanese people console by joining the funeral service wearing a black suit and also make an offering of money , This money is called a `` kouden `` ( a monetary offering to the departed soul ) , we give from 10000 to 30000 yen , and pray for the dead spirit and bow to their survivors . Even in Japan , if you do n't know when the funeral is , you ca n't send the `` kouden . `` But the day I was informed was only few days after the funeral service . I know that Western countries do n't have a custom such as `` kouden , `` however , it is quite an important custom in Japan , because Japanese people have this `` give and take `` philosophy at their root . I want to be strong and beat my brother ^ - ^ I 've been english for about two years now , and still Im not very good at speaking or even writing in this language . One thing that surprised me was that people on the Car1 got off at Suidobashi station . I saw he was almost bursting into tears . My Space Today and yesterday my school held a sports tournament / competition ~ I gave it a shot but did n't go to the finals ~ My health is never very good , so that I think I need to exercise more regularly ~ I decided to start running everyday beginning / starting next Monday . Jay Walker starts the talk by introducing manias . In January , I 'll go to the violin concert of Hirary Hahn , who is one of the prestigious violinists in America . I 've been debating whether I 'm going to choose a smartphone ( iPhone or something ) or a normal cellphone . I suddenly think , `` Do the other foreigners eat eels ? `` E - mail is useful because English people help me if my English is wrong , but if I send a message to English people who are not my friends , [ . . . ] I 've read lots of manga ( you could say I 'm sort of an `` otaku `` ) , for example : `` Bleach `` , `` Naruto `` , `` One Piece `` ( these are the most famous , I think everyone in the world knows them : ) ) . . . The second man in black was from Spain . I was nervous . Staring at the whiteboard for so long made my eyes hurt today . I 'm usually busy at work around the beginning of the month , but after then I will be free . We will go to sukiyaki restaurant - MK restaurant . I think it 's quite expensive because I can make this kind of food as good as they do , and the price will be lower 50 % than them . It is too difficult to be fluent in the absence of english language environment . I 'm trying to go to Australia this winter to work during the holidays . magazine . There was an article that says people sometimes will be My husband also has to go to the one place that we 've wished to avoid very much . fine temperature . But I work at a convenience store . My friends seemed to the same people I know when I was in elementary school . We talked about nostalgic stories and recent stories . Because I wil get my salary , and the good news is that my salary will be increased This race was a half marathon ( 21 . 0975km ) , and about 200 runners entered . Though I was feeling a bit fatigued , I managed to finish with a time of 1 : 19 ' 49 `` . One of my language exchange partner is feeling discouraged now . Well , now is time to go , 'cause it 's really late here and I have to wake up early in the morning tomorrow . nowadays I 've been watching `` desperate housewives `` The hottest temperature in my office was 34 degrees c these days . It scared me . I hope the peace and stability will be maintained . To achive that , I should study more grammar and increase my vocabulary . Recently I started a twitter . And since twitter is very easy and fast , I want to use this for those learning Korean ! Recently I have been confused with judging a noun to be countable or uncountable . My friends sometimes say `` Yeah , I understand what you are talking about , but . . . . `` . This picture is one of the fashionable hairstyles . I thought we would meet very often , but we could n't because her schedule did n't fit with mine , , I think it was helpful to go healthy again . I can not control my condition so it does not count to my decision . However , it is a very important point for me . In my opinion my first resolution for diet is opposed to the wish to be fit . Nuclear power stations are really good for the economy of some countries because it proves that those countries are very rich but it also creates some problems such as : health , safety , and environment threat . After the earquake and Tsunami happened in Japan . It will influence so much for Japan and neighbouring countries . I 'm looking forward to going there very much ! ! Although I have learned English grammar for six years in middle school and high school while in Japan , my conversation skill is still not enough . Right now , I `` m in the lab to assist the students who are learning Japanese . But so far , no one has come in here . Also I 'm scared of thunder and lightning so I always freak out like , `` Please no thunder and lightning ! ! ! Internship is an extracurricular class for students who are going to go abroad to work for a foreign country 's company for a month . I will go to a travel company and work there for a month . Next semester , there 'll be an English professional exam which is the only chance here and I do n't have much confidence that I 'll do well . According to the news , However , [ advanced ] laptop features and technical specifications are very attractive , even if the disadvantage [ of lower portability ] was considered . The clerk said they could n't take it back because the clothes had a weird smell . I have read a few blogs which say that olive oil makes vanilla ice cream more delicious . Because it cools your body down , you consume the calories in order to warm your body up again . Because it is used often in formal situations , I did hesitate to use it but I do n't know any other words . ) I am in social studies class . If your husband or boyfriend is very tall among others , they can protect you and make other females jealous . But , what a pity , I am not tall . I feel somewhat shy and unhappy when I am walking with or meeting some tall and handsome young men . Also , your salary is quite important in your marriage and living with your family and partners family . As a husband , you have to maintain your family and keep a harmony relationship with you and your partner 's relatives . so that they can understand your ability and respect you . Enough salary means enough capacity and status in company and society . So salary plays an important role when we seeking partners . Others will look down on you if you do n't have enough income . Others still think that a different education means different salary and status . Of course , all of these are just my personal opinions . because I played WakeBoarding every weekend . I live in my husband 's house . However , this time it seems to be fixed easily . But the computer crashed and showed the Blue Screen . My roommate , who is Japanese , let me know about this site . I 'm really happy to know this site and very pleased to post my ' useless ' diary lol I will take an English conversation class at the office . It will begin the thirteenth of October . Some people argue his behavior is too lofty and it harms Taiwanese dignity ; in fact , they think Taiwanese are not beggars and do not need hypocritical charity . Thinking always scares me , worrying about whether I can make it , what I should do if I fail . . . More or less , a real society is competitive even for children , and inescapable incidents hunt them down . But thanks to my husband 's parents , who are sending us a lot of in season vegetables , we can feel seasonable . And this time , I bought English books . But I 'll try to study hard . I love the characters Although the series mainly targets children , I came across an article in the CNN website last night which enumerated a number of useful sites specially for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm of learning foreign languages will be satisfied in this site , and also I 'll be zealous with people in need of my help . Yesterday was the elementary school festival , and I boiled 230 packets of udon . but I really have no choice , the delivery time is urgent . I 've seen the news yesterday and I was shocked about what happened in Australia ! I have been staying there for three days with my husband and son . 2011 comes in 39 days , but my New Year mood is already here . They ca n't get holidays or days off . What is difference between income and salary ? I am Korean and studying English for the entrance test for a university . But this night is so cool that it is comfortable to study . Photos of my country , Japan This bar sometimes hosts concerts . It is not really busy ; but I feel my job is very hard . I need to remember a lot of wine and juice names . Sometimes I can not understand what the customer wants if they say some strange wine names very quickly . I 'll prepare candies , a costume , and meals . Artists ' contributions or scientists ' contributions , which is more valuable ? The debate on whether artists ' contributions or scientists ' contributions are more valuable to society leads more and more people into fierce controversy . Admittedly , both of art and science are indispensable parts of our society , and the difference is just through the distinctive way each demonstrates its own contribution . The greatest invention of the light bulb has increasingly multiplied productivity , and an amazing technology , the internet , has made the earth become a little village , bringing tremendous benefits to billions of people . Music , film , and all kinds of programs provide people with a better living environment . They are related to each other . In conclusion , it is hard to compare the contributions of art and science . It is simply subjective to say that one contributes more to society than the other . I 'm looking forward to meet them . Then , I will be going to sleep I always have a long time to sleep every day I will be further on with my English then I had expected . ( It 's my first dairy in LANG - 8 , glad to meet you here , and thank you so much for correcting my mistakes . ) Because of the examination for university , I 'm learning English everyday . Recently , I am interested in European buildings and art . Because they are examination subjects . I have studied English in Vacouver for almost two months . I need to find a job here by the end of June because I want to improve my English , and also because I 'm poor . I love MINISTOP 's chocolate and vanilla mix ice cream . I belong to an amateur brass band . Tomorrow I go back to school here and I 'll introduce myself to my classmates , as is the tradition : I have been trying very hard to find a friend for copying Russian - English a long time . A lot of people were gathering and watching the ceremony . Those who seemed to be priests or monks were heading into the Cathedral across the Faculty of Filology of Salamanca University . It reminded me that Spain was a Catholic country . I 've stayed here in Spain for about a year but I had n't felt the people behaved on the basis of their Catholic doctrines . The day before yesterday , the president said `` Everyone speak English , For example , you can say ' Good morning ' in the morning meeting . `` I can talk in English to everybody . I finished my graduation thesis . I 'll prepare for oral exam about graduation thesis next week . Second , you have to develop muscle by excercising to burn fat . Do exercise regularly . Yesterday was the first time for her to dance on stage . In japan , most Japanese women working for night clubs are likely to hide their jobs however she did not . Yesterday was my birthday . Perhaps they are impressed by the deep - rooted loyalties to his teacher , but it seems like an effort that is made to nip the talented untouchable boy in the bud by the nobles . We are in a century in which we learn to do our best to achieve our dreams and fight for our happiness . An hour later , they were finally done ! I asked my daughters to play together with me , but they chose to go to a festival in the neighboring shopping arcade . That movie gives a message about ' What is the humanity ? ' I have been strugging to stay awake until now , but I should have slept earlier . However , business is more of compilcated field . My hobby is table tennis , I play it every Saturday . Christmas Eve Today is Christmas Eve ! She spend Christmas with us for the first time . Merry Christmas ! I walked for forty minutes . So , I started this site and I also bought a DVD called `` CORE Rythms `` . TheDVD itself was not funny , it was just a regular dance exercise video . I often see many visiters from foreign countries in my town , because there are alot of old Japanese Temples in my town . Of course , I visited MoMA when I was in NY this September . Especially my vocabulary is terrible . . . I 'm nervous because my English skills are not good . In fact , I am very nervous to write in English . I had a visit today from a friend , who wanted to go to the cinema . I often wear the one - piece dress . I 'm very confused because I do n't know what I should do . . . I did n't sleep for long enough , but I could n't sleep . Maybe I 'm afraid to stand up to them , or prehaps I lack the courage to say `` no `` to other people . Today , I was with some friends and I really enjoyed learning English as usual , laughing and having some snacks . That made us lough out loud since our class had a warm / comfortable atmosphere . Hi , I live in California now and still need to learn English to survive my daily life . Recently it often occured to me that the number of children that play outside is on the decline . Yet when I look back to a couple of decades of past , the change is enormous . I wonder if this socil milieu does n't jeopadize their physical and mental health . I will read English articles about football . He is 90 years old . I want to practice my spoken English , but I ca n't find someone to talk to . If anyone would like to help me , I would be very appreciative and I can teach Chinese back . The Japanese who are poor at communicating with foreigners We study English for eight years from Junior High School to Second Grade in university , yet even so most Japanese are poor at communicating with foreigners . When a traveller asks a Japanese [ person ] for directions in English , most of us would say `` I ca n't speak English `` , waving our hands right and left in front of our faces . I guess that the reasons why we poor at communicating with foreigners When we learned it , teachers put stress on grammar . During the Edo period ( 1603 - 1867 ) , Japan closed itself to other countries , so the Japanese had hardly any opportunities to commune with foreigners . When I grow up ( become 24 years old ) , I thought I would have a job , know almost everything about the world and have a majestic appearance . Hi everybody , this is Serena here , and I 'm from China . I 'm working in Singapore as a nurse . I usually talk to people in English at work . In order to improve my English , I need you guys ' help please . He is learning how to write medical translations between Japanese and English , and I am supporting him . When I was using `` Chrome `` , the same refreshing happened but it would save my writing , however `` IE8 `` does n't have any such intelligent functions . Many beautiful templates are included in it and I can use them easily . Keeping a dairy ( diary ) is very difficult in English . I have never kept a dairy ( diary ) in three days straight even in Japanese . What 's worse , I forgot things easily . the summer holiday is coming - how exciting ! Question : What kind of places are you interested in around Tokyo ? We should not forget March 11 . mmm , it 's difficult to explain . All the people do n't want to lose their family , friends or girlfriends . In this movie , the mayor loses half of his face because of a fire . If I have only two choices , one is I will die and save my lover 's life , the other is I will live instead of my lover . To tell the truth , this story was too difficult . especially because each sentence is very long . and ultimate substance . . I think and believe that brain - science can give a better answer than philosophy my friends and professors . Yesterday , when I was talking with my father about where we can go on holidays he told me that he was going to go to Eastern Siberia for work at the end of August and he could take me with him . I ca n't believe it . But it is n't certain . . . Our burner was out of order . I spend a lot of time drawing . I went for a drink with the volunteers and students of the Japanese conversation class . One of the volunteers drank too much , and tumbled to the floor . The party ended , but one of his colleague from the company and my wife and I waited until he could get up . Mother prepared lunch . So , I want to get to be able to speak English and demand from him much more salary ! ! According to the calendar , it 's Feb 19th . Recently I have n't been able to get along with my current boss . What should I do to reconcile and get along with him ? Why the autumn sky so high and beautiful ? In early autumn , the air is so clear , the temperature is comfortable : not too hot , not too cool . I feel like I want to go somewhere in the early autumn , to some distant place . There are high - rise condos , office buildings , TV stations , shopping malls , parks , wharfs , storehouses , and so on . I found that I made careless grammar and spelling mistakes . Please point out , if any , more subtle mistakes such as : You will always need a partner by your side . I have decided to start practicing English this week . He is a native English speaker , and the more he got excited , the faster he spoke . I have dreamed about it since I was in Cyprus this summer , where there were a lot of English guys . While I was working , somehow I felt very uptight and beaten and I started to eat excessive amounts of strongly - flavoured cheese cake . Although the cheese cake is my favourite dessert , my stomach I know some basic words and grammar . because japanese food is well - balanced and healthy . What I love to eat is mainly fish and vegetables , if there is soy sauce , japanese sake and a bit of suger and salt in the kitchen , you can enjoy a lot of japanese food . When I went to a supermarket last night to buy some frozen fishes , I was surprised that there was difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! Please feel free to check my sentences if you can . Customers do n't always pay attention so I got ta work hard to let them know how our Gyoza is tasty and they should n't miss out on eating it . My boss told me uncomfortably ' Do n't stop trying and keep smiling even if the customers do n't respond to you . `` I just hung out at my church with Korean friends to prepare for a Christmas performance . I respected the good habits of the American people . But I did n't cry a lot of in graduation ceremony . We are abroad right now , and we thought we should go out , but now we changed our mind for some reasons . ( ? ) So I finally got up after eleven . I will never forget his comment ! ! For me , writing in English is more difficult that reading it . Happy birthday especially European economics . I do n't do any sports now , but I belonged to boat club in my university , I was very surprised to hear the news ! ! It is very dangerous country . I went to work wearing new shoes Second , I have to grasp the secret of knowing the right timing to remark . Let me tell you what happened yesterday . `` No problem . The show lasted only a few minutes , because my boss was back so soon , so I had to stop the music and he had to stop dancing . Usually I read novels in english for study purposes . Whenever I write in English diary or essay , I think it is at the level of an elementary student . Sometimes , It 's hard . Now I want to see a penguin . Because I 've never seen one and the spot where we can see one is very near in Melbourne . It 's been getting warmer and warmer by the day as summer is coming . I think one of the most surprising thing is , the diversity of ethnic groups in Auckland . Anyway , I hope you can enjoy your last semester in Waseda and I 'm looking foward to hearing from you about your life in Japan . Today we watched the movie called `` Inconvenient Truth `` which is made by Al Gore . Surprisingly , it is more than 60 days . So , I sat in front of the keyboard and made ( composed ) two songs . My husband 's pay is in dollars . I always feel bad when I exchange dollars to yen . . . But sometimes it is difficult ! ! I ate breakfast at seven o ` clock . I played soccer with my friends in the park last Sunday . Next March , I will graduate University . I do n't have time until I graduate , I want to do many things ! ! It is important for Japanese history because there has never been a change of ruling party in Japan before . How many fish and chip shops are there in Britain ? When I speak English with my teacher , I feel so anxious and suffering . A teacher asks a range of questions and a student tries to give an answer as fast as possible . Every Saturday and Sunday , I usually have nothing I have to do . I washed the And he loves sunshine . He always goes out for walk for a while and just sleeps on the scooter of my neighbor . After suffering from the wounds and two surgeries , now if someone sits in front of him , he will climb on the legs and sleep on them , but do n't think it is nice , because he will also pee on you because he thinks that is comfortable , what a baby ! ! ! ! I think that all cities are beautiful because every city has different traditions , cultures , etc . the city of Prague , the city of London and especially the city of New York . Talking with my friends at the same time on Skype Medicines or medical supplies have sometimes different names among countries . It would be like a nightmare to not have a dream . Are they controversial ? I believe the world is wonderful and there are lots of things for me to discover . And of course I still surf every day like I did in Australia . ( ha ha ha ) It was very interesting . And I want to learn technical English , related to I . T . , too , because I need it for my work . There are IT - English courses at my company , but they are rare and quite expensive and all places are filled . I go to the work place that is for handicapped people . Working there from monday to thursday I was waiting today ! I ca n't wait anymore ! I love english ! ( but do not love waiting ) I like to be a salesman , because selling things is a challenge . But I wish I could have a real conversation . There is a typical collective dance in Catalonia : the sardana . It 's called `` Castells `` which means castles . And finally , the third one is a human castle made by the team La Jove de Sitges , from Sitges , the town where I live . I went to teach dance class today , and I played some songs of Alicia Keys 's album `` unplugged `` at my class . I do it , because I want to be in steady contact with English . Half of the screen has lines on it when lit and only the other half shows images . I love Cameron Diaz very much . It took us more than 40minutes by walk to get there from backpackers . If you get a good score on the tests , your entrance exam for University will be easier , maybe . If you believed in me If someone believes in you , you believe in the world . If you know a good way , please teach me . After eating two rice balls , I also studied . But now , there is no way I canstudy English quickly . Finally , I decided to lease an apartment close to school for my daughter . I liked Michael Jordan very much , of course . Pressure ( s ) about the path I was choosing , the career prospect and my future all in one word . I really appreciated that especially from my girlfriend . But recently Japanese woman work too . She seemed to be lazy while studying with me . My favorite soccer player is Steven George Gerrard . Moreover , we are expected to have a wide range of information not only to teach all subjects but also to help students broaden their world . This is my 10th entry . The hibiscus , one of my plants , had been showing a smll bud . ( for some days ) there were a lot of hibiscus with vivid red flowers everywhere on the island . odayI went shopping by bike and saw beautiful clouds . It 's been for about 5 days since I came to Vancouver . There were a lot of races in my school . However , I do n't have many friends ( right ) now , so I 'm a little nervous . But before I came here , I decided to be positive . If happiness and love are only of saturation of the neurons phenyl - ethylene `` . Will they keep me standing until I concede on some issue ? I want to say thanks to my Lang - 8 netfriends who have commented on my journals and helped me to improve my English . I have printed out all of my journals . I 'm grateful to my friends . Maintaining Balance These days , I am really curious how they deal with some problems between those roles . From nine to five , school work is really busy ( busier than ever ) , from five to eight ( thankfully not always ) I take graduate school classes , from eight to eleven ( sometimes from five ) I must listen to my son 's complaints , daughter 's singing , and her baby sister 's crying . I understand in this period of my life , it is really hard to live for myself , but it is a little sad to me . I am always busy , I should find a way to maintain balance between roles . I am studying Chinese and Hygiene for exam . It took thirty minutes to get to the English conversation school from my university . In the lesson , I could n't answer the teacher 's questions . I like to eat meat , vegetables , fish and so on . I think beef has more nutrition than vegetables . Therefore we should eat vegetables . So , I took a medicine and I stayed at home yesterday . The best memory in New Zealand was horse trekking in Rotorua . Please check the following sentence . Next week our family is planning on going camping in the forest . A man who is my ex - boss and colleague gave me a `` JOBA `` ; the true brand name is `` RODEO BOY2 `` . It is a kind of exercise machine which was once really popular in Japan . I ordered `` a `` new PC yesterday at the `` neighbourhood `` PC shop `` whose `` name is `` Dos Para `` . I have n't had many experience and I 'm not a kind of preson who is good at speaking in front of someone . Is it good or bad forlooking atinterviewer 's eye ? Flour contains water , proteins , carbohydrates , lipids , minerals ( inorganic substance ) , and vitamins . The elements of an amino acid are usually carbon , hydrogen , oxygen , nitrogen , and sulpher . Tuesday , March 29 When the earthquake happened I remembered her and I worried about her . I ca n't believe it because I take it for granted that Osechi should be handmade . Today is HALLOWEEN , I do n't know whether or not there is a party in my company . I do n't know much about this holiday , so I will wait for someone 's advice . Now , I 'm studying in Northeast China . I 'll be updating a lot of stuff since now . Please correct my English when its wrong , or improper , and feel free to talk and ask me anything , especially people who want to learn Japanese that are from other countries . After a three day vacation , I 'm back . But I feel really tired and have no energy to do anything . We talked long into the following morning . get back together - - - - > ( get back into a relationship ) that 's all . sex and the city is a really cool series , I really like it , especially because of the hot scenes in it , I think all men like it ! By the way , he is a very nice person , though he is shy sometimes . Imagine how delighted I was the moment I saw her email . I have to write an essay on Japanese education for foreign students , _ and I 'd like to know what ( all you ) Japanese learners really think . I plan to go to the KCC farmers market . I have two chihuahuas , Kai and Choco . Through I am a leader of my department , I feel that I lack confidence . For instance , when I deal with something difficult , I 'm usually filled with fear and nervousness . My mother ordered `` Tempura soba ( buckwheat noodle with tempura ) `` and I ordered `` Misonikomi and Sashimi ( Miso seasoned noodle and raw fish ) set menu . I went to home and looked for any mail but there was none as I expected . I think most Japanese who came here are good at listening and grammar , but their speaking skill is not good . I think that Japan faces a large problem now . I am concerned about domestic and internal problem . And one I failed last semester , I got a very bad score , so I will study that again . I enjoy watching cartoons , bye . Because as I said before , my section only has three men andso I want to make a good atmosphere . They will either go on a domestic or overseas trip . Some people will stay at home and play video games , or watch DVD movies . use My coffee just ranout and I kept forgetting to buy some more . Also , I am not a coffee addict . I could not keep my diary for a couple of days . Because being in school is very tough , I was busy studying . The reason may be that my journals are kind of boring and there are relatively few users who are native in English compared with Japanese users . . . . I told to somebody , but of course they did n't believe me . I am writing a diary entry for the first time . yesterday I went to an amusement park with my sister . it takes thirty minutes to get there using freeway . I left home at eight thirty for that but I had to pay twice the amount of money because we made a mistake in choosing the correct freeway exit . first we enjoyed riding attraction that are selected by Guinness book of world records . it is the most highest and fastest in the world . so we wanted to buy the photo but another person was saying . . . now my father is studying in Tokyo . I 'm new here . My name is Ian Lou . I am Chinese and I 'm now living in Canton . all that I learn about English at school is not quite suitable 4 daily use and social daily communication . so , I want u guys to help me 2 learn some native English , you know , something really English . As a result , I only took a 15 minute lesson today ( the usual lesson time is 25 min ) . parenting of their babies or adolescent sons or daughters and communication to give up working because of these circumstances . I should be more careful so as to not to scratch it when I drive . Cherry blossom time is coming soon in Japan . Also , if someone feels very tired or they have stress , they think smoking can help them solve their problem . essential oil . I searched the internet and I found Lang - 8 . The museum just finished from renovation and the planetarium became one of the biggest doom in the world , so I am looking forward seeing the No . 1 planetarium . I 'll write about them later in more detail . He is one of the best artists in the history of korean art . And he introduced western European art in Korea . And there are always many foreign people . I was shopping for 3 hours , but I could n't find my favorite clothes . The lizard 's face was very cute , I thought . I do not mean to sound arrogant but I often just believe in myself regardless of these perception discrepencies > < I went to Osaka station and bought a ticket soon after . That make me depressed and sad . If you buy our products with an accommodation service , you can get After that , I had scarcely gotten home when my friend and I took a car to mt . It is impossible . recently , I think have n't exercised much Sugar 15g Salt 5g 2 ; Add yeast plants and sugar to the bowl and mix with a fork . 3 ; Add strong - flour and salt , mix together for 30 seconds . I will understand grammar and be able to pass the 2nd - EIKEN exam . And also Japanese people tend to think that compassion and duty are very important in a society . My daugther will start going to junior high school from this Tuesday . I prepared her items for school with her . She wants to go school early because she wants to meet her friends . Anyways , It 's the truth that many kangarooes live in Australia . People Who can not pass the test will have difficulties in the next semester . and then I had a very delicious meal . When I met him about 5 years ago he said the same thing , so we wondered how he was earning money . I earned 7million yen once but lately I 'm always losing money . ' I make money regularly ( It may be chicken feed , I think ) , but ( 1 ) I 'll work as an English teacher starting next year . I joined Lang - 8 . After looking around the university , the student teacher bought us lunch . I am having fun while learning English again . I am following some tweets about learning English now but it is remitted by only PC , I feel . Anyway it is very convenient to learn foreign languages these days . I am not so smart but I want to thank those who have very special talents to develop our lifestyles . I do hope they manage to use their talents to make our world happy , comfortable and peaceful . I recently heard that a legendary band will come to my town . . . When I miss something for being happy it 's when I 'm in loneliness , it 's terrible because you feel sad and very negative . But the food and the parties at and after Christmas Eve are so delicious that I can easily forget the stress before . It 's a little bit extreme to eat soo much 3 times in 3 days , I know . . she did thus unconsciously , I like the story of ' Winnie the Pooh ' . When I was an elementary school student , I wanted to be a bookseller or an illustrator . But it is raining . However , I was half finished when it started raining . Today , I did n't get good scores on the math test which the teacher gave us The teacher decided to give us another chance on Wed . after I took off from the plane I went to the gate 27 , which is written on my flight ticket and started waiting for the transfer flight . What made me eager to learn was the accident in the Phillipines . Someone warned us to wear slippers in the sea , but mine just came off my feet . Would you ever try speed dating or going to a dating service ? * No I never try speed dating or going to a dating service . We did n't expect so many people to come . Before drinking my third bottle of beer , I could take some good photos calmly and with a smile on my face . When everything returned to normal I just said thanks to him , and picked up my Canon for more photos of hugs , kisses , farewell and confessions . My treasure ! England is a very beautiful country ! ! Furthermore , the problem in the USA is that the children take guns to their parents or their parents give guns to their children . Consequently if a child has a psychological problem the fact that he carries a gun is dangerous . For example , a boy may shoot his parents and his siblings . In addition , the second amendment in the USA states that the population can have guns , and that people can buy firearms at any time . To conclude , severe gun laws are not the solution to the problem of gun violence in the USA because the second amendment is that people can have guns . At that time there was a problem . The person taking my order could not recognize my pronunciation . I felt myself falling into darkness with disappointment . If there was a small hole , I would have hidden in it . Through this experience , I feel that I have to study English pronunciation more than what I have already done . We can get seven consecutive holidays in GW . Today , I cleaned my room . The desk and wardrobe and every corner are clean , so I am in a good mood . Today , I am going to go to the year - end party with ( my ) university teachers . That is the captal of China , and this is the captial of Xinjiang - - my hometown . On Samui we swam , walked around the island and tried to ride an ATV and an elephant . During several days in Krabi we visited some islands , tried snorkeling and kayaking , and fed wild monkeys from our hand ( fed wild monkeys by hand ) ( they are my second love after giraffes ) . That 's the reason I 'm able to learn it more effectively than English and I have more fun with it . I visited the ruins of Hagi castle and enjoyed watching carps ( Koi ) swimming in the pond surrounding the castle . The morning speech was about safety In my office , a mini meeting is held everyday . The chairman of this meeting changes every morning . A mini notebook which tell would be the next chairman goes round our section . 2 month ago , the safety speech was started by the chairman . The purpose of this speech is to make us more aware about safety . But many members get confused and worried on what to say . Japanese people do n't like free theme speeches . In this way , we have to think the speech for the specific topic . ( This would help us to improve our safety awareness . ) Ranging from acquaintance , knowing each other well to being kept apart ; just like the flowers ` sprout , it opens and withers . I came to this strange school , feeling enthusiastic in August , but now I stand at the end of September while keeping back the once boring sounds of the cicada . Pay attention to the lessons , ok ? `` , and I gave in to her . I thought I have forgotten her . `` No way . `` I continued sitting on the chair and listening to my music . I live in taipei now . Anyway , I hope the government will quickly change from conventional cedar to cedar of a new type that has a low amount of pollen . Some customers ordered customized drinks , but I could not take their orders because I did not know some of the beverage names . . . . In addition , I should improve my listening skills too ! Many people in the world visit my city throughout the year . for example next weekend If you have a dream to go to the chocolate factory , you try to buy it and see you there : ) The pickled turnip Leaves and cream cheese I had last dinner were really good , so I tried something similar , cream cheese on pickled eggplants and pickled Japanese radish leaves . Then , I cut Japanese radish leaves into bite sizes and pickled them too . I added chicken saute for some protein . owe : Modern Society owes convenient life to science . lend : I do n't like to lend money to people because sometimes it becomes a source of trouble . pour : Helen Keller understood the meaning of words when the water poured from her glass . I 'm writing my first diary . My first diary And another reason , might be my LAZINESS . magandang gabi po . Listening ? Writing ? Studying grammar ? I think nowadays there 're a lot of thieves around us so we should pay more attention ! I really want to go to America soon and study there . The small accident happened while I was driving , however it is something that nobody got hurt . The teacher told me some important things about life in there . I learned much about the school and know how to live well at here . I listened to a worker speak about job hunting . I think I have to set the aim and try to achieve the goal . Are sparklers only Japanese culture ? Ten divided by five equals two . Ten divided by three is three with one left over . Distance divided by speed equals time . Distance divided by time equals speed . There are many systems in our department . Believe it or not , there are about 40 ! I am hopeful that I will improve my E language with your help , and I will try my best to help those who are interested in learning the Arabic language . If you need to be polite , you can say `` watashi ha hashirimasu `` . Regardless of the subject of a sentence , you must not forget to add `` ha `` . If you have any questions , I 'm willing to answer you ! So it would be a tough situation . Today I was listening to the English conversation program on I - Pod , and teacher said that when the English native learn the pronunciation of ' Moshi moshi ' , they say ' Washing machine ' . Tomorrow we have a rehearsal for the sports day . If it rains tomorow , we have to postpone the rehearsal . He spoke so fast . . . > < However , even if he talked slower , I would not have fully understood because I do n't have enough knowledge of Christianity . When I was in Japan , they tried to persuade me to join Christianity so suddenly , I was little scared ( or startled ) . Perhaps most of them are Chinese vegetables . I tried to cook something like that even though I do n't know what kind of vegetables . Wash the vegetable well and cut . Watching my parents doing crazy things to continue working on music . and then EMI USA disappeared and turned into ? ? ? , something happened to the record company so it never went out . Brazilians , Mexicans , Spanish , Koreans , Germans , and Venezuelans . I realized that parents , friends and all people are really , really important in my life . My host mother gave me a T - shirt , a sweater and a muffler . It is a Japanese drama . When I went to Hawaii , I bought many shirts from Abercrombie & Fitch . Is that true ? ? Internet addiction I am addicted to the internet . I spend much time searching for information on the internet too . She and her family came to Japan for work 21 years ago and has now become a Japanese citizen by naturalization . I am very happy to encounter a good teacher , but I always feel like learning a foreign language in Japan is really difficult . Because I do n't have any chances to talk with foreigners , especially in the countryside like where I live . Today , I went to a customer 's office near my company , and the person in charge gave me an Omamori . It is my first day making an entry on lang - 8 . I did n't bring good camera , I only used my cellphone to shoot a picture . So that I spend spent half of my twenties travelling . As a result of the horrible situation from the March 11th Because of the earthquake in Tohoku district and the many victims of the earthquake and tsunami , some parks have asked people to refrain from hanami this year . So if my writing has some wrong sentence or word , please point it out . when I went to Australia for the first time without any basic information about there , they gave me lots of useful information for free . Especially , I was excited by the trumpeter 's solo ! ! If the battery does not have power to use , you can bite it with your teeth . When day would you prefer to start learning Thai ? That all the sentences that I have prepared for my student . If you know any polite sentences please recommend some to me ? By the way , my middle sister took me with her to her room but I ca n't sleep becasue I would like to write in my diary before I sleep . I received my TOEIC score today . Anyway , I think that nowadays . Is it better to speak a foreign language in perfect pronunciation ? I think that foreigners speaking Japanese in very good pronunciation but it 's natural to have slightly strange pronunciation . and I wish I could communicate with anyone in the world . Once it starts , one term has fourconsecutive days . And one class is seventy minutes , so it will take some effort to maintain my concentration . S . , China , Germany , Finland , etc . . . . Also , when I was reading the driver 's manual booklet , I found a hilarious practice question : The main reason is that the company did n't acknowledge the problems cars had with their brakes and accelerators and issue a recall until 2009 . I thought that Edmonton is a very flat place : ) and it is cold more than I expected it would be in Japan . Everything was delicious ! We had a wonderful time . my daugther was in good humor ! Spring break is going to end the day after tomorrow . I 'm not a person who enjoys to study , but am a person who goes out a lot with friends , so I would have to try to make myself a diligent person . Recently I have begun reading English books because I know my vocabulary is n't up to scratch . I have written my diary for the first time on this site . Tomorrow I will do simultaneous translation at the Wednesday bible study . This is my first translation in public ! xO I 'm sooooo nervous about it ! the nick name wasmade by aczech friend in sydney wholived with me . Now I live in eoul . She has alredy made roast turkey , pasta , roast potato , etc . Maybe this might be the happiest I have ever been . Saury is in season now . But actually , it is a old American car . Does the pronunciation of UK English have more emphasis on some vowel sounds ? Now I am trying to input my profile in the recruitment web site . my friend is in class now , I am waiting for her so we can go home together . I decided tologin here , but when I look lastest posts , I find that most of journals are written in English or Japanese . I just went to a university to get a graduation certificate and I was awarded a scholarship ! with cultural exchanges between a lot of countries . Therefore , I 'll keep on studying . I 'm not married yet and I have no younger sisters or brothers . I would like to get a tattoo of the Tiger or `` tora , `` not for fashion , I like it because it is considered by the Chinese to be one of the four sacred animal symbols , the North representing the autumn and control of the winds . Also strength , courage and long life . He will design the process , I want a tattoo that is only and exclusively mine , I hope it can be ready before next month . I am very happy because the moment he came into my life , he made my life complete . If the day I have to hate him comes , I will remember these days , how he treats me well , and how I feel so grateful . To top it all off , the lack of people and the cold breeze sort of threw in loneliness while I was running in the grim and low temperature . We had lunch , a dish made of rice and chicken called Yassa . Unlike me . . . . because I ca n't speak English . I also ca n't think immediately of what I should say . . . Though It is a little difficult to eat , it is good for our health . Some soldiers in the helicopter are running out from the helicopter 's back to fight or to get ready for a fight . The helicopter transported these soldiers here and will fly away . Safeco Field is like a beer garden ! LoL . She was cute and funny . This time , to our regret , the rumour was proven to be true . In other words , I am alive , because Korea could gain independence . I think it is one of the reasons why almost all Japaneses ca n't speak English well even though we have learned English for a long time when we were in school . First , when I started watching the video I wondered what he wanted to show . I 'm in a good mood today because my sister gave me a good answer ( reply ? ) on MSN yesterday . it helped me solve a problem . It is Sunday morning and I 'm going to meet some friends in the park . We should be have a lot of things to share with each other . see you again . . when I come back . The climate of Unzen is cooler than that of [ downtown Nagasaki - Note 1 ] . It comes with two CDs which include songs , dialogues and chants . Problems with Influenza The spread of Influenza aroud the world . The ful virus infection was confirmed yesterday in Tokyo . I 'm studying English . Nostalgia - - I want to know please if this essay can express the feeling of homesickness and the obstacles that person can face in the foreign countries ? Sometimes adapting to a new country can be difficult for some people . However , some can cope with the difficulties of living alone away from their parents . Ever since I had thought of anything to do I felt nostalgia towards my previous life . he only went to the nearly station , but also my coworker and I went to I 'd like to improve my English so I can communicate with many people in the world . Today we talked about ( the year ) 2012 . They say that the world will end in 2012 . I 'm happy because tomorrow is a holiday ! Today , I went to a graduate school . Maybe this is the reason that why I come / here . Today Pastors and leaders from Taiwan , Uganda and Singapore came to our church . Of course I 'm not sure If I can help them enough though . When I was twenty years old I went to Singapore , the Philippines , and Japan by ship . It was so fresh and wonderful ! ! ! And I enjoyed walking the streets and shopping . Tell me what I should say then . He was a little upset and said to me `` You 're the worst teacher in this school ! `` She dances and sings during the house party . I think it is more difficult to write English than to read English , but it is more difficult to speak English than to write English . she was twenty - nine years old and I was twenty - three . ( Someone said that this sentence is the worst opening in the whole wide world ) I have just graduated from Insititue ( College / University ) and I majored in Computer Science . Different kinds of Chinese Dance have different kinds of feeling you need to capture . It should be felt by observation and by your body . They kindly paid me much more than I deserved , but it was tough work for me as I was n't good at dealing with small smart boys . . . I should have waited somewhere inside the building but I had to feed my children . After that , I went back to my home town and drank with my grandmother and grandfather . After the coffee hour , he had planed to play soccer with his friends , so I joined them . There are normally 9 gruops of 9 boxes in a puzzle , and each box has to be filled with a number from 1 to 9 , and also crossing lines and horizontal lines have to be filled . - The North - East direction is considered to be an origin of bad luck . - The number 4 is an unlucky number , because one of the pronunciations `` shi `` means `` death `` , so in hospitals there are no rooms numbered 4 . I am wondering when my toothache will get better . The professor who was my teacher ( mentor ? ) when I was a university student will retire this month . So I work hard , especially in English . Some people say that if people do n't drink any liquids or eat any food , then they will die . This part is damn difficult for Japanese , because the singer does not pronounce each word in this part clearly . I am writing this entry on my journal at McDonald 's , the worldwide famous hamburger chain . in every store in Japan and then I can use my PC with the broadband ( ? ) network when I come to McDonald 's . But in reality I can use the internet under the broadband connection of 20 megabites per second over a cup of coffee , which costs only 120 yen here in Japan . job hunting Please check my diary Today , my friends and I , who are graduate school students , went to the sea to play water sports for one of the classes . . Luck has nothing to do with success . However , I believe that it is impossible for everybody to countless hours to prepare for the olympics and resist to is not from only their luck , but also their effortn . I understand everybody can not do hard work and get their your hardwork link , you will get success automatically . agree with the statement that luck is nothing to do with success . The Combatant who Wanted to be ' ' Kamen Rider ' ' I write this first note to all of my friends . My school is very beautiful and a collegiate university . Futomaki is a rolled sushi . Hi guys , Hope Everything is okay with you ! The movie , `` twilight `` , is from novels written by an American housewife . It is a story about a vampire and a beautiful college girl . I think I should go to hospital , but receiving treatment in an overseas hosipital is a little bit scary for me . So , I watch the TV in the morning . When I went to Hawaii in May , I was reading a Hawaii guidebook published by Japanese company . because there are too many people in the library . at once . guss guessthen10 hours . I guess I study for more than 10 hours at times . According to a report issued by Dandelion Research Committee , native species of dandelion have been decreasing , and introduced species have been increasing every year . grammatical skills and know many vocabulary ( sometimes even useless things ) what I hope for business out of Japan is that I work with free - style , free - custom . Gyagu manga biyorialso haveanime ( animated cartoon ) , it is also interesting . Today , I got into some trouble . We read two special surahs from Quran for people who are dead , for their souls to be in peace . I do n't know what to write for my first diary . It is amazing that such a large amount of money was raised in spite of the recent depression . I hope the discussion will be fruitful . . . I have been to Egypt , Fiji , Mexco , Papua New Guinea , etc . Finally , Anpanman always wins over Baikinman , of course ! But , I am not good at English . because I like Japanese on all subject . what do you think about your neighbor ? `` and `` it is a little America `` as a joke . The comment assume me because when I drove with my friends who are Taiwanese and Chinese , they discussed their identity and recognition of their respective countries . I 'll talk about what I learned today , both from my own experience in life and from others , . . . . or about some topics that I found that are interesting . . . . . hope you will join me in discussing it . I have to consider this as a problem . The topic this time is `` What is your most shameful story in your life `` . One is walking behind the other and he or she is wearing a white hat , a shirt , a pair of short pants , and is carrying a dark green knapsack . Among all American rappers I like only Eminem I need a holiday for myself . I must rescue myself from this confusing and meaningless life . But I am not going to break my learning course . The main actor Mike is an orphan and very poor , but he accidentally met Leigh Anne who gave him support and trusted him . Suddenly everyting was covered in darkness . fortunately , it has n't darkened yet . I could n't see anything . The teachers gave us illuminated candles . I ate kimchi and rice for breakfast this morning . Therefore , I can speak French a little bit and I have some knowledge of the city . Instead of visiting popular sightseeing spots such as the Eiffle Tower , the Arc of Triumph , or the Palace of Versaille etc . I would like to visit my school that I attended , the park that I played in with my family , and the museums , which were too difficult for me to understand the importance of at the time . I took part in an event held by the church nearby . Christians always praise Jesus and pray everything for God . I did n't go to sleep early , because today I got up at 2 : 00pm . Do you have a special plan for summer vacation ? This is what I suffered this morning . Nobody wears a get - up like me . I really want to improve my English . . . I feel a bit nervous , but it 's a great time to test my self control . Do you know how to learn foreign language ? I design new mechanical parts or improve existing parts for aircraft almost every day . Jesus as that shepherd coming to pick up what 's left of you , and see how God brings victory out of defeat . Hi everyone . But English is so difficult . Of course , I also think about immigration . I think everything will be ok . I will ride out this storm . Tell me please ! It 's because our project is a group activity . My friend bought me some steam rice and they were so good , I have Tomorrow my beautiful country will be [ a year ] older , because tomorrow is the 15th of September . The independence day is very interesting ; the people go dancing , _ and go with their families to Zocalo . Zocalo will be a very lively place [ tomorrow ] . . . And there are many factors that facilitate a coincidence like this to happen . Soon I think : whatever , I 'm still me , another growing man . I watched a TV program ( NHK ) about Lang - 8 . Especially , my interests are bioinformatics and immunology . I have studied Korean . I went to Korea twice . I want to keep learning English for business and chatting . She talked with us about discrimination . They also did n't know how to express themselves . Our coach organizes different activities like camps or excursions or rafting . During this meetings we congratulate them in different ways and do different interesting things . Hello friends I am going to write something I have insisted upon my beliefs for many years , but recently someone told me that I had made a mistake . They said I just live in my own world and never try to accept others to attend my world . It 's this real ? How confused I am . Since that I have been paying more attention to my achievements and thinking about my words again and again when I speak out . It just makes me feel sick with myself and I hate my character , my achievements and my wrong feelings . And I chatted with my friends , on Facebook and twitter . I studied about grammar there . Yesterday , I flew to Edmonton , Canada . They dominated the airplane so it was a little bit weird . The husband is a native Canadian and the wife is philippineCanadian . Kindly enough , they brought my bags and took me to their house . It is in a tranquil residential area and has beautiful garden where you can see evergreen conifer . In the back garden there is a husband 's favorite bonsais and an azalea tree and a small vegetable garden . She is 16 but her English is excellent , especially pronunciation . According to her , she has already stayed for 7 months and studied in local international highschool . The examinations were held with paper tests and did not include listening tests , so I studied English focusing on reading and grammar . The artist told us about a difficult request ( which ) he had once received . We are glad we choose Popo . By the way , now Popo is almost 9 kg and from that small cat became the biggest cat I had never seen ! English Journal - August I read the latest English Journal ( EJ ) at the library today . It 's one of my favourite magazines , which comes with a CD in English . I hate the complicated ones because I can not understand the story as soon as I concentrate on the captions . I love studying languages because I 'm interested in the sounds of foreign languages . After , an American man who looked close to 33 ~ 38 years old , walked up to me and tried to chat me up . In addition , I want to join a volunteer circle . Because there have been many witnesses . The only thing we can do is prepare for the earthquake , because it 's just a nature disaster . anyway I saw the movie `` Love and drugs `` yesterday at home alone . I make vegetable soup and have it three times a day . I want to overcome this situation ( my character ) , but it will take a few times . By the way , recently I am crazy about Gossip Girl which is an American TV show . I hope he uses the same concentration he has for catching creatures , to do his homework . . . I study about the environmental problem . I saw some elementary students killing ants just for fun . In the shop , the seller said to me : `` These will be great for your mp3 `` ( I have an ipod ) - and it 's true . The movie is called `` Shutter Island `` . I 'm looking forward to watching a movie called `` Inspection `` . Because , a large number of adult people often say , `` Recently young people are not polite and they do n't have common sense . `` I 'm looking forward to the future built on today 's young people . It was very short trip but I was able to enjoy it and discover the cultural difference between Japan and America . Some children were transferred to the hospital due to heat exhaustion . The extreme usage of air - conditioning caused the electric power company to stop producing electricity . When I worried that he 's going to bite me , Ms . I called my agent about finding a job next month because I 'll graduate from this school at the end of this month . But look up at the apex of the triangle and you 'll climb up to the top . My insistence is that looking up your goal and making efforts brings you something which matches with you well . The moment when I stood in front of our classmates , the teacher was commenting on my partner 's errors in her presentation , so obviously it would bring a cetain pressure to me . I 'm exhausted , but lang - 8 makes me vigorous . I wonder why I was fascinated by that ? Perhaps it 's from being brought up in Japan where most of people would be secular and atheist . If my son got up by himself , I would be late for work because I ca n't hear Mom 's voice . I do n't have enough time to do anything after work . . . . Then I 'll meet my friends , that I have n't seen for a long time . . . Jane is tired of dealing with customer complaints and wishes that she could be allocated to do another job . My selection is not surely wrong , but correct : here is my final destination and utopia . While I was watching the Singaporean city , I realized again that I must get a job here , and change myself from a loser and cowardly man to a human . Sorry , today was busy as well , so I ca n't write a long sentence . It 's been around a couple of years since we met each other . We all will be surprised at how different we look when we meet together someday . I 'm CerezoOsaka supporter . Shinji Kagawa was a member of this team . Now he belongs Dortmunt in Germany . I like Johnny Depp ! Breakfast is important Hello , my wonderful friend . It is about 8 : 40 . I take my breakfast early . What time do you usually take it ? I notice I am always hungry when I get up early , and after one hour I will be hungry again , even if it is earlier than usual . Please do n't forget to eat breakfast . Miyagi and Iwate had the biggest damage . For every day that I exist , I will have more energy ! Absolutley , making freinds is another goal for me . Loneliness is a time you can talk over a lot of things such as human life and the purpose of your life It 's very easy to cook . Just put ingredients into a boiled Nabe soup . It warms you up , has a good taste and is healthy for you . In fact , I scold him for misbehaving last night . my younger sister and I went to a Guardeira for Spanish kindergarten , that diverse , elegant , beautiful , environment - friendly , positively Europe Culture My father took many pictures in Spain for family memories . And until now , occasionally we saw the pictures and indulged in reminiscence . But when I was 14 - 19 , my father 's business was getting worse , finally his business failed by the time I was fourteen years old . For example Sushi , Takoyaki and Ramen noodles . I should buy the correct size tomorrow . There were many herbs and flowers ( especially roses ) . Could you explain these sentences below ? You must have to know a password . Actually , I have taken it before . There are some Korean food restaurants near my home . I often go to Korean food restaurants because Korean food is my girlfriend 's favourite . It is served as rice and some Korean vegetables with Korean seasonings in a hot bowl , I know from my friends that European people do n't like to eat garlic ( ? ) Good night . He is a Japanese singer . He is forty years old . I remembered a lot of things , like when I was a kid I flew a kite that my grandpa made for me . During spring there was often a lot of wind in my hometown . I ran and ran , the kite flewhigher and higher , until the line or the kite broke . We have to register to get medical treatment in the clinic . The GP that we register with , must be the nearest clinic to our flat . May I register with the GP here ? `` We went because she wanted to go to Layer 's . I 'm glad to know such a good resturaunt is nearby ! Yesterday , I had a party at the Atsugi in the Kanagawa prefecture . Very difficult , that song is . Yesterday we traveled around Bangkok and today we came to the south of Thailand to the beach . I and Tyler are just watching them with their beautiful bodies . We are taking a boat around the island . Actually I will remember this good day and save it in my heart . Also I looked at a variety of the British Museum 's artifacts , and I acknowledged the fact that the British Empire had enormous influence around the world in the past . On the other hand , prices in yen were too high . Also , as many people say , the food was n't good . Particularly , the Eiffel Tower at night was very wonderful . I have a lot of things to do , like my essays by tomorrow , ( and I still have them now . . . To take the side of Superman is very easy , he can fly and shoot optical rays from his eyes , he has super strength and incredible endurance . I 've decided to take the Graduate exam instead of finding a job . When I 've been in highschool , I have been reading , learning , and doing exercises all day . Hajimemashite , Douzo Yoroshiku Onegaishimasu I have also started to study Chinese , French , German and Spanish and have finished my grammar books . I often regret a bit that I can not voice an opinion I have . Because I miss my family and I 'll go back in 8 weeks . They are American English and British English . word , spelling , grammar , and pronunciation . Since Australia used to be a colony of England , English in Australia is based on British English . There are many other different spellings between both like color ( A ) / colour ( B ) , realize / realise , and learned / learnt . Elementary Workbook The finest Italian restaurant in Japan I love Italian food and I like to search for nice Italian resturants . I know one of the best Italian restaurants in Japan . The chef of the restaurant is very good at making pizzas . He got the win in the World Napoli Pizza championship as the first Japanese champion . The pizza oven in this resturant is used in Italian house of Aichi Kyuhaku ( the international trade exhibition in Aichi Prefecture ) . This restaurant has a very long bar in the lounge area . The recommendable glass in there is St Christina ( Toskana red wine ) and Grappa ( the brandy made from strained grape leaves ) . I want to go Chezari again and meet the beautiful CEO of the restaurant . I opened my eyes and checked what time it was . My personal computer was broken . Now , I 'm in the first year of being a doctor , resident , At first we were excited to come to one of the hottest place in Tokyo but , we were disappointed and noticed that this shop would disappear / close down in 5 years . Second , the service was not good . All they did was take pictures and dance to the noisy club music . I did ` t like those persistent salesladies at a department store , but I was surprised to see them . I 'm going to write a text `` End 1 `` at the right - lower of the first illustration . I 'd like to know about the public safety of the US before going to L . A . Because they have lost three game until yesterday . I plan to go cycling to see Bondi beach this weekend . I think that reading Nabokov 's books is better than watching adapted movies . Nabokov 's language is delicious and he pays much attention to small details , but it 's impossible to show this in film . That 's the most important thing for me at this moment There are lots of people from different countries . She is one of the most famous singers in japan . ( Of course , the contents of the concerts were the same . ) It means that she paid about forty - thousand yen only for this time . . . According to the news , an old man has been healthy although he had been drinking only cola without any water for some decades . I do not see pepsi in my neighborhood supermarkets or convenience stores . On the other hand , if the leader had many excellent subordinates , the single person style leadership would lead to quick and speedy decision making . This trip was a very exciting experience for me . She was a very very very friendly person , so I felt relieved . I want to know if they are really strange . Should I read books or watch movies or dramas ? yesterday night yesterday night I had an arguement with my little brother who was a junior highschool student , a 14years old boy So I 'm making lots of fliers on my own . After finishing up the fliers , I will hand out them at the station . The most important thing is to draw the attention of the people who are walking through . I bet it will make a big impact on the pedestrians ! ! I do n't care if most people prefer dogs over cats . I like dogs too , but cats are awesome . Of course , it can teach many languages . I can learn a lot of English words . Language traning If I had more time , I 'd be ready for the language training more . By the way , while I was on this site before , a friend sent me a lot of pictures and so today I am going to show you the beautiful pictures that my kind friend sent to me . Thank you . This is my first time doing it . In the year 2001 , President Arroyo was elected and she started to negotiate with MILF . but It has other meanings : search word of list , like a sponsor It freezes or reboots only seconds after turning on . What 's weirder is that when it successfully boots and runs for 2 or 3 minutes without a hitch , it seldom freezes or reboots . But after a second thought , that does n't make any sense since it 's an electronic device , not a human or animal . Do you know DRRR ? , It 's a novel written by Ryougo Narita ? IZAYA is my favorite character in the DRRR . It is needless to say that they ate it greedily and quickly . Asians view life as everything being connected and affected . I 'm participating the ACM / ICPC contest and I have many courses to learn . I also need to prepare my application for my study aboard , including impoving my poor English , which I 'm doing right now . The Japanese soccer team won the Australian team at the final , and won the Asia Cup championship . But I did n't watch this game . So I had to go to bed with my daughter . I think they are the cutest in animals . I 'm always looking forward to the coming holidays This is my first article , so I 'll begin by introducing myself . I will improve my English skills and seek a suitable job there if possible . My boyfriend was a hot - tempered person , but he improved himself in order to stay with me . It 's not too difficult for me but lots of words really wear me out , especially Literature . So I told him all of these things and we could better understand each other after our talk . It 's an interesting course and also important , because corrosion exists all around us . We have 3 days off to celebrate Labour Day . I think she is a pretty girl but I dont know if I like her or not . I yearn having Korean barbecue , enjoying shopping in Taiwan night market , seeing a brilliant coloring temple in Bangkok . By the way , how do foreign people feel when they come to Japan ? I was drinking with my friend . I 'm Saori , and Im also a college student . I am not a systematic person : sometimes I can not express myself fluently even with my native tongue ! If you know English and want someone to correct your japanese sentences , let 's be friends ! ! I want many friends to improve my English skills . But after I visited there a couple of times , I can see them as professionals who entertainment the customer with their mannerisms and conversations . Basically it 's the same discipline as other forms of commerce . How do we provide value to our customers ? It is hard for me to study English It is my first time taking English literature at the university and I never did I recently feel that studying English is hard after I took a class at Hansung University . Am I 'm doing well or not ? Recently , he joined our English class , because he was interested in I am actually taking a English writing class in the English department , and ( Quoted from Korean newspaper ) Importance of a breakfast can not be emphasised too excessively . I do n't want to give up , I believe there 's a way to change for the better . It includes correction of grammar , translation from English to Japanese and Japanese to English too . The morning is not so bad because the teacher was not so tired and had a sense of self - composure . As the the teacher felt tired , she became nervous . As kids were scolded , they became defiant . My mind is peaceful . ( Four degrees Celsius is the difference between temperatures nowadays and temperatures during the last ice age ! ) If the politicians had listened to them earlier , the situation would n't have been that fatal . I like action , comedy , mystery and so on . The highland is famous for it 's beautiful nature scenery . There are many flavors : salmon , _ cod roe , _ tuna , and so on . This trip was funny , I went on one of my schools trips , we went to Queenstown and Dunedin , it was for four days and three nights . There were 10 of us including the guide ( who is also a teacher ) , 9 students , 4 from my school . On the second day , we went to Queenstown . We watch the people doing Bungy jumps , then the guide helped us book an activity , I decided to do the Skydiving . This was my dream in New Zealand , because in Taiwan we do n't have this activity , if Taiwan had this activity , I think , maybe I would n't dare , because Taiwan is very small , we have no large open ground , maybe I would start to dive and after a little time hit a house , ha ~ ha ~ . Yesterday , I played football because I belong to my part time job 's football team . Recently , I like to make coffee ! Excuse me for reading your dairy and giving some advice , even though But I thought that I sometimes do the same thing as her . AND , we do n't know what on earth the goverment is doing with so many taxes , while most people are living a miserable life . This time , they are not letting the mooncake tax go off ( ? ) . And lastly , I recently found this valuable and interesting site lang - 8 , which became my favorite ! Suddenly , it rained and I was forced to go back my home T T Reading words on the iPhone makes my eye sight bad . The UFC is a major fighting corporation in America . So , I tried to record myself speaking sentences in English . My English pronunciation is terrible . I was exhausted . . . . Today is Saturday . . . He was very nervous . I will know the result within 10 days . Obviously , as a standard product of the abnormal education , I am also a test maniac . Secondly , she has supported Japan strongly since there was a big earthquake in northern areas . It is obvious that the damage is still affecting the northern people , as well as Japanese economics . As a result , $ 1500000 in total was gathered during two weeks . This movement helped us definitely . She presented her Monster Ball national tour offering premium VIP tickets to fans who volunteeer their time to homeless youth organizations , which raised more than $ 80000 in proceeds to support homeless youth . However , when I hang out with my friends , I always wonder how the hell they can spend so much money . I major in English , and I 'd like to improve my English skills ! In addition , I 'll tell you my least favorite proverb . That 's `` Two heads are better than one `` . I never believe it . I like this language and I think its characters are charming , fascinating . My company buyer shirt and fabric export from China to Switzerland . I am a souring and quality control . In my spare time , I like to go swimming or tour different places . The desire came out again when I started reading manga again and revisiting the Deviant Art website . Fortunately I could try several ( different ) classes there , so I could compare the atmosphere , the teachers and of course the level of each class . I have a little / young son who is 2 years old . I want to get TOEFL score 90 and go to canada as exchange student . It 's a service day . Because there are many things I want to talk about : ) So let 's get started ! It ' sthe final concert of theMonkeyMajik tour 2010 ! ( The marche Japon Sendai , it is held every weekend at some arcade . ) At the market , it 's fun to talk directly with the seller and farmer . Actually , even after this God punishment , sometimes we threw his belongings into the incinerator just for fun . Although I have two more final exams , I ca n't stop to read . It would be absolutely fabulous ! ! ! I recommend it . 2 You do not have to spend much time in the kitchen preparing meals I installed KakaoTalk program on my iphone This program is a kind of messenger like a MSN online chatting program . Recently , I have n't been studying my / the intermediate textbook on / about grammar in use . I do n't understand it ! It 's bigger than Korean ones . . . I ve visited the family doctor , and he sent me to the hospital . And my sickness was so hard / bad that the lung specialist said that I could n't go home . So people in Tokyo are buying everything in the shop . So , I can not buy water , rice and paper . Yesterday , I went to Restaurant Hajime for lunch with my girlfriend . My favorite dish was roasted lamb . It was so cool that we felt very comfortable . I 'm not familiar with Europe at all . Let 's plant good seeds into our heart together . [ Please plant good seeds into the garden of your heart and you 'll be sure to be happy unless somebody doubts you ] . Please could you tell me your own thoughts . I do like the older music too , Hungarian songs specifically . She said that her superior did and said stupid things , and caused a lot of trouble . The experiment is also waiting for me , I have experienced a typhoon of level / magnitude 8 ever since I have stayed in Hong Kong . And actually I think it wories Avi that we call Ji - Hyun Scott , a man 's name . It is written using an indian ink . I was sweaty . I found `` Sleep tracker `` which is a wrist watch that can analyse the rhythm of one 's sleep , R . A famous Japanese celebrity said , `` I can wake up much easier than ever with this `` . Yet , from the sidelines , they may be considered illusions . That 's why nowadays I 'm leading my life under the belief that something that manipulates us exists and we are leading our life at the behest of it . Some part of me think that I could n't care less because if my theory is right , nothing was truly done by us humans but done by the manipulator . All too often , my students declare that they do n't know why they study . Study English 4 , There are many people with a similar name to me in Japan . Suddenly when I woke up this morning , but I could n't be satisfied with this musical on that day . Whenever I learn English , I find Japanese interesting ^ _ ^ I read a comment in the textbook which said there was a very close relationship between vocabulary and success . Goodness , who can tell me how to do it . . = _ _ _ = I hate the Korean ( alcohol ) drinking culture . My sister 's company is forcing her to drink a lot of alcohol even though she does n't want to drink . Then we put meat , vegetables , beans , tofu , etc . The weather was so roasting , made us uncomfortable . * Agree ! * In the theater , the story was outstanding from beginning to end , it made me feel inconceivability , especially when the transformer change their mind , it was very cool . My company is a American capital company , so I really want to improve my English level a . According to many newspapers , news programs and websites , the wilderness areas all over the world are endangered . * Coffee - Fresh is Japanese - English . I feel terrible and I 've almost lost my self - confidence and courage to do another job interview . We went from Wakkanai , Hokkaido to Okinawa and enjoyed sightseeing , eating delicious food , bathing in hot spring , and so on . By curious coincidence , us five friends made a circle and pledged to proceed into bright futures at Takamatsu Airport just one year ago . It seems that I am buying the sacred certificate with money . If you are interested in CLAYMORE , please check the following URL . I really want to study English well . I hope you can help me ! ~ She came by Shinkansen . It 's also a wonderful movie . After graduating from my junior high school , I went to Switzerland to study other cultures and languages . My husband is good at wood . The length is about three meters , the weight is 30kg , and the width is 80cm . NZ has a beautiful nature , many nationalities and traditional cultures ( ex . I only know my family , friends , school . . . Nearly 20 people came and together we had a great evening . In my workplace , English will be the national language in the future , So I have to learn English properly . Izakaya normally offer food and alcohol at night , but Today is a fine day . So , at present I have just 300RMB on hand . A couple of days ago I joined a team which was started in order to translate English into Korean by university students . Our team 's slogan is to be in middle of the world that is emphasizing independence and creativity . I went to the building near the Pusan city subway station to attend OT . So my primary problem is pronunciation . At first I tried repeating correct sounds by listening news or Tv programs . I live in my home town . There are some friends whom I 've known for a long time around here . She forgot to pay her utility bill because she is always busy . Hi World ! It is also very snowy today . Yes , I tried to write the calories off with those veges . So I was so disappointed . Of course sometimes I feel a little nervouse , since I do n't know if I can get a good job again after coming back to Japan , also I do n't know if I will be able to speak English after I go abroad . I also had a blood test . I started reading `` HOLES `` . I 'm studying Spanish because my best friend was Mexican . I have n't told her that I 'm studying Spanish yet , but I 'm going to make her surprised when I go back to Califorina . I am not always comfortable with writing a business English letter . they lost to the Orlando Magic . ( ; _ ; ) I found this site accidentally . I took an examination in english communication class today . So I went to school quickly and arrived earlier than I normally do . So there was no chicken and beer ! I thought that something was happening , and I asked some people what happened . And now , I have finished the arrangement . This happening was n't solely a bad thing , because I know her today more than yesterday . To get a reasonable price , I need to check the price of several companies , not just 1 company . So we promised that today , I would do nothing to help the household , and study English all day long . My younger sister is 33 years old . Before we separated , we shook - hands and blessed each other a successful trip . Besides , I bought some snacks and foods such as Songpyeon , a half moon shaped rice cake that is the most representative Korean Thanksgiving food to have during the long weekend , which is over three days . The purpose of writing here is improving my skill in expressions in English . But now I ` ve decided to challenge to write a diary in English . I enjoyed summer vacation . In this Club , many Japanese who want to brush up on their English skills and many Americans who are interested in Japanese gather at the Student Center and talk to each other . It was a little gross , but I liked it because its plot was easy to understand . I went to cram school to teach English grammar for high school students . Right now , I am so exhausted . I am studying art but I am interested in film and I also like watching movies . Today is Saturday . there is no class today My favorite sport is `` kendo `` . These days , I often see many magazines featuring beautiful and lovely chocorates for St . unbelievable . . . Today , I dreamt on introduce myself in spanish ! ! She ca n't control the muscles on the left side of her face . But we still do n't know how this happened . So the doctor removed that tooth 's nerve . I had been to another dentist and was told that nothing was wrong with my teeth . The doctor filled wherever he shaved with temporary medicine . I found her some medicine . I went back to my dormitory and talked with my roommates . Chatting with my friends My diary has alot in it if you do n't have the time to correct it , you can just correct some paragraphs . If somesome read my diary and see it not finished please help me correct it , thank you very much my friends at lang - 8 . I met my friend today , we went to the movies at Sukumvit , together with my Thai friend and her Chinese friend . We were watched it for free . Thank you for listening me . I found two cute one - pieces . I feel that I will have good dreams in tonight . To write a diary diary is interesting for me . I need to learn more vocabulary . Tomorrow 's dinner will be also curry , assuming I do n't have a previous engagement . I think it 's the most fantastic cellular phone that I 've ever seen . That class is called social talking . So I ca n't improve my hearing and speaking in that class . The difference between what she is and what she was has made me sad . The only way to make me happier is try to find someone else . I try to find someone who is really concerned about me . All students have to / Every student has to pass various examinations to graduate from a university or a college , Especially Cappadocia ! It seems like a 3D version of Nintendo . Do you know Haruki Murakami ? His famous novels include `` Kafka on the Shore , `` `` Norwegian Wood , `` While human beings forget many things everyday and every moment , thanks to cameras and videos we can keep all things in pictures and movies by just pushing a button . Moreover , they will never fade away and lose color . positive thinking Of _ course I want to be a dietitian . Please translate this sentence into Japanese . If you could give me a grammatical explanation of the above sentence , I would be most grateful . If I had a lot of time and money , I 'd like to travel everyday ! I met a friend today . Every year , I gave him chocolates . It is not just a subject for specialists and researchers . If you have a sugestion , please tell me ! ! The first thing every one of my friends says on messenger when I say Hi is `` I 'm almost dying because of the crazy weather `` . But thankfully I 'm here in Canada where the weather is great in summer time . Besides Except english I really love japanese . Recently , I feel that some incidents that happened to me is as if they were TV programs I had watched before . Yesterday , my best female friend who is my ex - coworker asked me to tell a man who is her ex - boyfriend and our ex - coworker before , my mail address . And I know the fact she does n't know , which is that he played with her while having an intercourse with another coworker . One year ago , he made his girlfriend pregnant and asked my friend to lend a lot of money to him for abortion . A grandson asks his grandfather , GS : Grandpa , why do we have festive red rice ? I nerve thought that sushi would be such a popular food around the world . I really appreciate that so many friends remembered my birthday , and it was so nice to celebrate my birthday together with them . Recently , the weather in Taiwan is very good and the temperature there is very high and it is very hot . I went to the department store on New year 's eve to buy some ingredients . On new year 's day morning , many people went to temples and shrines to pray to achieve their goal , despite the fact that they religious . In addition to this , it must be one of the reasons why special TV programs that are usually unable to be watched are broadcast . What about other countries ? ? What is a better expression ? Because I took a college entrance exam and passed it . The story consists mainly of pirate adventures , and they also have special abilities as similar as how Naruto uses Ninjutsu . Tuna was especially delicious . I have no job and try to improve my English . The croquettes are freshly fried and the salads are delicious but they cost more compared to homemade food After I come home , I enjoy the foods I bought . I 've got a really big problem : tomorrow there 's a really important test about the voting system in the USA and I do n't get it at all ! ! First there are primaries or caucuses . Then the Democrats and the Republicans each send a certain number of delegates to their national conventions . For example in state 1 candidate X from the Democrats has the most votes the democratic delegates from state X vote for candidate X as their presidential nominee . Before this vote each elector says which candidate they will vote for and they have to stick to this later . We have received news that my airline is very dangerous . It has many accidents and there are thefts at times . . . ! ! ! ! to be continued . Monday October 19th 2009 And , there is the invincible girl , Clare . Nathan can fly . And , his younger brother , Peter can absorb their powers . So , Peter can fly , read people 's thoughts , be invincible , and so on . But , it 's really amazing and fascinating . Generally girls wear long sleeved kimonos and boys wear long pleated , culotte like , Japanese trousers or a suit . My last roommate already went back to Australia to work . We had lived in our apartment for a couple of weeks , which was a wonderful time for me . Then , I also met my new roommate , who is from Korea and he has lived in Auckland about one year , so he can speak English very well . Except for Japan and a few other countries , countries do n't have school fees untill university . However , I want to go to abroad during / on my summer holidays , to Scandinavia , Sweden , Slovenia or England . But I thought it was a very good experience for me . Maybe I am just waiting for someone to talk to me . the entire floor covered with dirty water , which I did not know where it came Unfortunately the plumber could not come to repair it on that day I could not see all the movies in the series , but this movie was better than I expected . ( more than usual ) but if it 's raining outside , I just jump in my room with the pedometer . I normally play Through this job , I understood how difficult to change the language channels momentarily between Japanese and English . * Explaining about the world heritage 's culture and history on a microphone . I have a habit if checking the back of my hair often . I stand with my back to the mirror and check my hair with a hand mirror . We departed from Knsai International Airport at midnight . I think I did the worst presentation in the class . I can see the large farm and houses every day . Although I also can see many goats and sheeps being killed , when I saw the view on my way home , I felt better and love the life I have right now . In later years , however , the significance of the language was de - emphasized , as the study of so - called living languages like French and German came to be seen as more relevant . The language continued to have high status for some in the 1970s , even though far fewer students ( only one out of every 100 high school students ) took it . Good weather , nice location and good people . Please call me on Skype ! I wanted to eat someting at lunchtime , so I went to the kitchen . I made some Macaroni cheese yesterday , so I decided to eat that . I looked for it everywhere in the fridge , but my lunch was n't anywhere . Then , my host - father came into the kitchen joyfully and began to talk . The tupperware had his daughter 's name written on it , so he assumed that his daughter made what was inside . She has a physical characteristic . The Culcom institute helps people improve their English skills . I joined a study group so I have to memorize some kind of story . I want to do solve this situation . They are very good friends with each other , and of course with me ! I thought that I could be free from studying English , but I was wrong , totally wrong . the score I got was not what I expected . but the most important thing now is Chinese New Year lol I 'm not good at listening to lyrics , but I can hear it clearly . Before I go to school Before I found out about this site , I 'd ask my English teacher for help . When I write , grammar is very difficult . People who smell it are brainwashed , and are not conscious of creating a painting equal to that of Picasso . . . We set off the firefly for stream in summer . Listening to new music ; seeing a movie for the first time ; my first time travelling alone , the first time I joined a club ( I joined an athletic club ) , my first . . . About two months ago in the US , I saw a free trial service at a cosmetic company website . I only started learning English recently , I 'd like to speak it fluently but it 's more difficult for me now . Some analysts say K - Pop is familiar to American Pop music . Several hours later , at twilight , It became cloudy . I thought it would be interesting ! ! ! ! Some of them wear it an improper way , for instance in a too short and revealing way like a girl : ( In modern society , There are more and more technological products created and we enjoy lots of of these . In my opinion , one of the most important technologies that helps the students is the computer . They can easily carry hundreds of books in their pockets or backpacks and read all the time . Students can also edit the tasks , paint the pictures , record the sounds . . . etc by computers . Besides this , rememeber that not all of the countries are well - developed . The progression of technology makes them left further behind in the competition in this world . Touching scenes made my eyes teary . A man visited my workplace today . I am going to see a dentist on Monday . I became a third year student . He is one of the most influential consultants in the world . I am going to be more curious about everything that happens to me . We worry less and think more intelligently . For example Helen Keller , an outstanding female American writer , could neither see , speak or hear , but she was such a great woman with strong will who never stop struggling . Her biography `` My Story `` is quite impressive , because it depicts every important footprint in her life . It 's a constructive psychological strategy to cope with reality and conflicts . Therefore , I prepared a jar only for saving quarters . I would like to attend Opera just once because it is one of the mysterious things for me . The reason why I am interested in it is because the actors and actresses sing and dance on the stage wearing luxurious dresses and sometimes wear masks . Today , _ I registered on a website of learning a foreign language . Why can the software summarize texts ? But I will go to other countries in South - east Asia ( e . g . Vietnam , Cambodia , Singapore etc . ) I think the government spends a lot of money in vain . I read the article that other countries have a systematic educational . I like them very much because they have their own ideas to spend time . One of my friends went to Myanmar as volunteer with her circle members . The other one of my friends is now 23 - year - old though she is a freshman . Then she came back to Japan and now she is a student of our university . She have many views to look something . Three days ago my portable audio player stopped working correctly . Many years ago , we could just bring it back to the shop where we I was blessed with excellent friends . Thank you for being a friend . First , you will receive a million yen of virtual money . I 'm going to introduce some goods later . From the next weekend we are entering a long holiday including Sul . so the approaching holiday is longer than January 1st . Airplane ( or Aeroplane ) fee here , I think , I should give thanks to my friends , thank you for taking care of me always ! I did not find the interview too difficult but I had to wait a long time . It is because I have not used their product before . My life would be prefect if I could speak and read English . The / Our main dish was shrimps . There are many occasions on which to eat meat , for example , going for a drink with my co - workers , or being invited to my friend 's home for dinner . A : If you think so , I can come down on the price a little . ( a bit ) Continuity is Important my hobby is running . US , Singapore , China . . . I went to the park to play badminton with my friend . We had an appointment at 11 . 00 a . m . But I was late getting there because I was chatting with some people on MSN . Yesterday was my birthday . We had international cuisine at JICA . They are helping a lot of developing countries with their serious problems . I love the cafe because they have a lot of International cuisine and Lasik surgery ( When I got it ) at first , I suffered from tremendous pain for two days . Thankfully , now I can see very clearly . For example , English , Mathematics for business to get a license . X - ( but I love to study English , so I 'll do my best ! ! We watch so much television that we are subjected to the same commercials we 've seen over and over during the thirty plus hours we spend in front of our beloved ( ? ) television every week . Thank you for reading , and thank you for your cooperation as always , I will have hard training ! ! ! Langrich campaign I enjoyed practicing pronunciation . but I am gon na write about my daily life or my thoughts and such . . Please do n't misunderstand me , I am a completely straight man . But one of my colleagues wanted to go to that kind of place just out of curiosity , although he is also straight man . A coffee aficinado ? In the morning I am so busy because I am making lunch boxes for my kids . `` You can read it at the below site . I played soccer with children at the park in the Tama Center But this time , of course , my parents will join the wedding party . It 's a good opportunity for us to show my parents our appreciation and take care of them overseas . nanun kenneth john torsiede yimnida . University , homework . . . Gifts , happiness in the air . . . and Taiwan to sightsee for a month in March . The earthquake happened while I was traveling through Europe . I have n't seen any foreigners sightseeing in Tokyo since I came back . At the time I could n't understand what `` invisible radiation and `` going critical `` meant , despite the abundance of information on the TV . I was frightened of the news . I ca n't concentrate while I am at home at least . All paper towels in public restrooms are a waste of resources , so people should bring their own handkerchiefs to dry their hands . If American saw me using a handkerchief in a public restroom , they might think that I am strange or that my hands were dirty . Should I not use my handkerchief in the U . It 's not difficult to recognize all of my colleague and friends through the phone memory . It 's good in this new year that my friends and colleagues contacted via message and leaved their names . England ' . We ca n't tolerate , when such things occur . I 'm going to write in my Journalin English everyday . Today , I read the lyrics of `` Beauty and the Beast `` on the Internet . It has very beautiful lyrics and a romantic melody . Anyway , the China 's National Day is coming , and we will have a 8 - day holiday all over China . That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I also have several things to do . . . . ( thanks to my job , I can schedule my things easily . ) I have to buy a new pair of shoes - - my Nike shoes are worn out . . . . I have to prepare to decorate my new appartment . During the holiday , the salesman will make a presentation about some products which I want to check out for my interior decoration . . It something should happen suddenly , I need to prepare for it in my schedule . There are many interesting events , for example , dancing , beauty contest , eating and muscle convention . I want to be good at using computer . Unfortunately , our teacher 's mid - term test asks so many questions which contains so many details . Because I think I have prepared it well , so I told my teacher that our play is not totally the same as a drama , and he told us we can finish it . The other subjects are so - so , I hope that I can get a score which I will be satisfied with . Today is a national holiday for election in Philippine . I mean I can select 19 credits from 100 courses before officially registering . I always wanted to go shopping in Harajuku ; because , there are many fashionable clothes . I bought many clothes ; so , I have little money now . I trained my body today . My English is not good , especially my writing . It was so beautiful . Around one hundred thousand people commit suicide every year around and three hundred people commit suicide everyday . But most Japanese people believe `` ' we have the best public safety because Japanese people are smart and cool compared to the people of other countries ! `` Japanese people believe that only Japan has four beautiful seasons for some reason lol But it does n't mean their countries do n't have four seasons . Their countries are very big and different from scummy and small Japan . What is better using public transportation or a rental car ? EBM band Krnangh was very fine , their music is nice , classical EBM with some lyrics about National Socialism and Adolf Hitler . But their charismatic vocalist and other band members were great . I am not improving my English skills . because , I do not have any chance to speak or use English in Japan . Someone , please gim me / give me more chances . . . . an unforgettable movie Because sometimes couples can not be together in real life for some reason , but movies make their dreams come true . Unfortunately , I 'll probably have to sell my motorcycle in September because I 'm going to study abroad in Victoria , Canada . Green revolution have brought about great benefits for humankind as a whole . After He succeeded in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . But many countries do n't impose it on groceries that people need for their daily life we already have huge debt that is 1 . 5 times of Japan 's GDP . I personally think the only way to avoid going bankruptcy is to raise consumption tax . It may cause allergic reactions , and carries the possibility of damaging a childs health . In my opinion , I believe that schools so ban the sale of junk food . When I have something I feel better to share it with my friends here because you help me decide how I can manage it . They are afraid If I can do that I will sad . The core concept of this theory is based on reversing the ideas of drawing a picture . Also I boiled rice and sauted mixed vegetables : pieces of carrots and cabbage and siitake ( Japanese kind of mushrooms ) . Additionally , I have some anxieties about my relationships with other people . However , there is no use complaining now , so I must manage my tasks and control my mental condition well . After all classes finished , we clean up our school and have homeroom class to exchange information . I 've just heard Miss Eliot Sumner sing and I was surprised . Lucily , the teacher did n't blame me , and the class had just started when I got there . If I rent them , I need to return DVDs , which means I ca n't watch them with subtitles or without subtitles repeatedly . I can sometimes understand their conversation not using any slangs or difficult expressions . I hope this is a good environment for me where I will have many new friends . Thank you very much . Until the last moment the mother kept hugging and protected her I can check what I said by listening to him and must use beautiful words . Please be careful in eating raw meat ! My roommates and I chose a basketball class this time . I sure have to practice speaking English . I am interested in Ryouma Sakamoto and the Bakumatsu . He saw many awful results and got new memories . The most happy ending would have been if he and the woman he had loved were living without any relation to each other . I know she is very talented and bold enough to use weird materials for her costumes . We did n't have much time to talk about many things while we were working , so we could n't get to know each other well tonight . ( almost correct ! ) However , I made a stupid mistake at the bar . I ordered a drink , and there was a long thing in there . I will inform you the date when the magazine will be published . I can read English sentences a little but , I ca n't write English sentences . This weekend I will go to Shizuoka to give a speech about my research . This is great for me as I can not speak English well . But of course I am going to practice writing and speaking : ) I ordered a lunch plate of green salad and sausages . After that we ate at McDonalds , normally I do n't like fast food , but it was okay . However , it 's also true that neighbors can annoy us , for example , with their noise . I will prepare for travel . What kind of information do you want to know about Japan ? ? What is difference between a mouse and a rat ? Because I 'm ready to meet my friends for a field party . Today I felt something really strange . Three people in different classes , who normally do n't associate with me , acted strangely friendly . I hopy to have a happy summer vacation and learn new things . I hope I will gain a lots of useful information andmake friends with people in different parts of the world . I made this nail tip last night . l have coupons which can be used to get a discount for about $ 5 . After I returned to my office in the evening , I attended the English class . I stayed indoors and read or did cross stitch . The advantage of this trip was that I finished the cross stitch portrait of my cat . Tomorrow is the Japanese national holiday ! ! I was only the one amongst my circle of friends who did n't know this site : ' ( In addition , planning ahead has economical benefits . Finally , by planning when to come back home , I can be well prepared for the next day . I have become accustomed to the cold weather recently . I checked the YouTube and it was really fun . I do n't know whether I 'm too intellectual or I 'm too ruthless . I 'll cook rice including burdock and chicken . He said in his mail ' In Holland we have an old tradition about St Nicholas ( Sinterklaas ) . To distribute the gifts , Sinterklaas rides on his horse over the roofs and puts them in the chimneys . If you read this diary , check this please . I want to make business card and I 'm thinking about my catch phrase . I wore new recruit suit which I bought at AOYAMA . I think it was the cause of my discomfort . Could you help me , please ? Chinese medicine has a profound knowledge . Unfortunately , I have to memorize them all including their shapes , functions and Latin names before mid - exam . Before we build nuclear power stations we should consider about that more carefully . So what do think about nuclear power stations ? Yesterday I felt happy because I had 4 native people correct my diary . I wrote the diary again following what they taught me . I find out about me when I write the sentance like the diary . I fill happy and enjoy that and waiting for someone correct it before I check it . I feel excited and I think today someone will help me correct it . I heard the news about the disaster in Haiti and made a donation to there , but I did n't know exactly what happened at Haiti and how they live now . It did n't take long time to realize that the South Koreans are highly affected by two countries , Japan and the U . It will ( ? ) be hard on a rainy day but now I 'm not going to worry about all the wrong things anymore . When asked `` why me `` , he did n't give me a satisfactory answer but said `` You do n't even give me the chance . `` Yeah , I declined to travel to another city to meet him , in a city I have never been to and for someone I hardly know . I discovered he likes fruit a lot . He did n't eat only water melon but also peach , grape . He did n't eat baby food , but he could eat fruit . Most people living in Seoul carry their umbrella every time they go out . We have had much more rain recently than usual . Taylor Swift and Miley Cyrus are my favourite singers . `` Many foreigners play an active part in Japan . I had planned to cook in the morning as well but in the end nothing happened . English is an international language . The temperature was - 22c I played soccer at night ( - 22 ) I 'm going crazy Futon is a bedcloth . The location is a local college which stands on a mountain . I went to a shopping mall that is near to my aunt 's house . We spend today relaxing . How do I understand which article to use ? Actuary , I was bored yesterday and last week . So , I could n't write my diary today . I 'm going to prepare some projects , that is , licenses ( subjects ) ? like language , leadership and so on . Hi ~ I want to improve my English , please help me , thanks ! ^ ^ I really want to improve my poor English . . . . . My grammar very poor . . . . I felt a sense of guilt for not picking up because I knew who would call at around that time . Could you tell me more about Christmas ? Merry Christmas , my dear friend . Nowadays , Christmas is more and more popular in China . truth , however , I know little about Christmas . What will you do on Christmas ? I 'd like to It is obvious that I am easily to be happy . I know that it sometimes seems un - meature , but candies are my favorite , so it obsolutely can make me happy . Sometimes we do n't know what path to take or what choice to make . We live our lives like passing white and black stripes , like walking in a rainy day without an umbrella . We have to leave our problems behind and step forward towards happiness . On my way home , I noticed something fell from the sky . I planed to write down the diaries that were corrected by my best best best best best teacher & friends , but I 'm so sleepy now . did my best though , I could not answer all questions perfectly . Today is Friday I am so happy because I will have a holiday tomorrow . I 'm so tired recently . Her sleeping style is interesting because she looks like my father . ( hahaha : D ) Then he moved to Japan , United Kingdam , Sweden , Germany and finally he grew up in the US most of his life . Amid the growing trend where personal computers have become prevalent , lo and behold , even books have become available on PCs , such as the Kindle that offers us the opportunity to read books on a screen . frowned upon because they are singing and chatting loudly or being drunken at Ohanami You know what they say `` Winners never quit , Quitters never win ! `` I actually have a jinx . We find the use of force not only necessary but morally justified . . . The president made clear that he would not flinch in using military power The best breakfast in the world And then , we enjoyed sight - seeing . Nowadays , many hotels offer discounts of up to 50 % . I have started an English diary . There was nothing special about today , it was just a normal day . but actually , life just means ordinary things that are happening daily . Recently , I have a backache too . I want to become s friends with many people . And my mum , she is generous and lenient enough to make me brown bags when it 's needed . She satisfies my families culinary taste . I wish she would n't eat sweet so many confectioneries . So I 'd like her to have a good marriage because she is my only sibling . I do n't know if I wrote correctly , but I 'm going to write this meaningless entry . The paper was for a weird entrance exam . Outlet plaza Actually , I didn ` t remember my birthday at all until just now . My son became a junior high school student this spring . This afternoon , I saw a film called `` THE LORD OF THE RINGS : THE FELLOWSHIP OF THE RING `` . On Fridays , there is free English conversation club at the building . Starting on Friday , Hong Kong is on 4 days of national holiday in a row . So , I 'm in office now because I have to translate Japanese documents into English . there are many special words in my business . It takes a long time to complete them . Green green , there are lot of green above the hill . I will go to Shanghai for an assignment in July . So I will keep writing my journal and mentioning my Twitter . My car did n't move for more than 30 minutes ! My goal is to study English . I ca n't believe it ! So please correct my diary . I 'm at a finance class . But warm days and cold days are repeating themselves in Nagoya . On my way home from my English circle , I adjusted the vinyl tunnels of cucumbers and watermelons at 9 pm . . In deed , My coworker said me , `` Since when were you mysophobic ? `` They had 3 rooms decorated with many accessories that were hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . At first , he smiled because the studio staff played with him . Although I did not care about it , one thing happened ! ! ! 1 . Tomorrow I will watch a movie . 2 . on Christmas day I will go to Deagu . I have to read some scientific papers until tomorrow . Agemanju is very delicious . Everything is fine but , as you already know , we have the shutdown problem with the computers . Anyway , I 've decided to watch Transformer III tomorrow with my sister . I want to befriend someone who knows English or French , that 's the reason why I will write something here . I 'm wearing thick clothes like the sweater I have on now . I meet various foreigners from all over the world . One of my co - worker is a Filipino and we talk ( or converse ) in English although I am Korean and she is a Filipino . And when I work with foreign teachers , I feel the cultural difference . It 's sometimes bad but usually I 'm excited to work with people who are really different than I thought they would be ! egg is medium boiled . Recently , I have taken a lunch box with me to school . So , I have to get up 30 minutes earlier than usual to prepare my lunch box . This is cheap and delicious . I am exicited to feel their bigfoot upon my arrival . But that changed when I went to university and took a major in English Education . I found myself loving English that I realized English is useful in our daily life . Since then , I became very diligent in learning English . I want to make a great progress for my final exam . But my English skills are poorer than my classmate . So I want to improve my English this summer vacation ! ! ! I read English passages loudly in the morning , but I 'm not sure whether my pronunciations are right . It was no good having a sore throat and a bad headache last Saturday . My husbund left very early this morning around 5am to go to SanDiego on business . Today I went to see and buy some china at the Villeroy & Boch factory . That factory is fantastic ! I bought four white square plates . These are good for pasta , stew , salad , etc , , , goodnight . Life is like a chocolate box ? I was very afraid at first when I got on the train going to Milano . A very nice beginning . We went to her home at first and talked about everything that happened to us in these past 3 years . After I listened to her whole story , I found in her face some tiredness and boredom in her life . I gave her a chocolate box which I bought in Switzerland . There were many different kinds of chocolates in the box . `` Life is like a chocolate box . Everyday , we can eat a different taste of chocolates . `` I also watched this movie before , but I 've already forgotten this phrase . Yes , life may be like a chocolate box . Although we may have eaten a bitter chocolate today , we might eat a sweet chocolate with a lot of flavors tomorrow . So , I think we should be careful when we chat online with someone we do n't know . First , almost every Japanese person has eaten whale meat . Our ancestors began these events in order to worship their gods , to show thanks for the harvest , to pray for prosperity , and so on . Secondly , we develop our communication skills by participating in Matsuri . I swim at the gym once a week but output of energy are smaller than input And what is worse , my office is located next to Mac ! It 's a book of adventures , magic and suspense . Hello ! Today I got a package from Japan . This ratio is grown by simplifying the curriculum . I ca n't improve my English enough ! I love to watch a movie and I study English from them . I could say that it is not a good way to study English . I consider that it is difficult to learn English because I ca n't focus on learning English . It 's easy to focus on / think about the actor or actress . I believed her at that time . Japanese summers are very hot . This is because songs are important theme of this series . Ichiro Itano , who is a maniacal animator , drew beautiful and acrobatic scenes and made this series famous . I saw the news that there was a tornado in Gumma prefecture . The scene was very terrible . She said she really enjoyed it . . I brought him some cabbage , so he stuck his head out of his stall . . on colorful greeting cards . I will go to Tokyo on September 12th to go to Tokyo Disneyland with my best friend . Tomorrow , I will meet my friend in Shinjyuku . It is the sound of the practice for a traditional festival called DANJIRI somewhere around my neighborhood . Yesterday , I went to a Japanese - style bar again with my friend who has came back to Japan from the UK . I know that I must learn English well , because I actually like it actually . So we held a farewell party in an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the famous foods of Japan . ) This morning I watched a news program on TV . In the program it was said that Rakuten , which is Japanese online shopping company , will change its official language from Japanese to English . Japanese market is gradually shrinking because of recession . I 'm looking forward to seeing Part2 . She is the most famous Romanian in Japan . She is so famous in Japan . I asked him , `` who is the most famous Japanese in England ? `` She was the wife of John Lennon , who was a Beatles member . She is famous in Japan , too . The English man told me another famous Japanese is Honda , a football player . because his country had been dominated , his english skill is very good . he is so fluent in korean as well as english and his mother language . I had wanted to have Tom yam cun ( It is spicy and sour soup , and the ingredients are shrimp , coconut , and so on ) Tomorrow is April and the entrance ceremony of my school ! ! ! So it is an artificial city defended by magic . I still worry about my English skills . I visited my mother and gave her carnations in advance . I 've been learning only words , grammar and reading and have n't really expressed anything in English when I learned English for the first time in my life . I could n't speak English well but we spent an enjoyable time chatting . The most important thing to remember is that I did n't spent the time being with my family , although I 'm am only daughter . Last Saturday , a very very big disaster occured in Tohoku county , Japan . While watching TV , I was so sad , and I thought , `` What should I do for the people of Tohoku , `` but I had no ideas for a couple of days . Then we conquered the barrier , everything had a basic concept , everyone helped each other and worked harder to do whatever we should do , to be whatever we should be . Christmas market and Skating I went to the Chrismas market and skated . Eventually , I went to the station , met themwent to the Christmas market and skated . Ienjoyed it a little . Because she is afraid of going to dental Clinic . I woke up early in the morning . I got injections and took medicine ( ) but this cold seems to stay Some people might imagine that those kind of things should be done by people who have time and enough money to help people suffering from disease or poverty . Sometimes , I have n't certain ideas to write on Lang - 8 . thank you for reading and ( for ) helping ! I studied pronunciation with my teacher on the computer this morning . But today I enjoyed it because I did the homework . It 's extremely hard and the teacher is an old man so he ca n't talk properly . It makes everybody bored and sleepy . . . . People think cows are gentle , I wanted to write a letter . Because I 'm not good at writing . I like to traveling especially to foreign countries . We have a big problem now . I went to a local ramen shop called `` Yaozen `` today . I am writing while eating a grape now . On the other hand , he always looks older than he actually is . He looks like a thirty or forty - year - old . Ashley Tisdale I bought : lemon water , honey of rosemary made in Spain , rosemary , blueberry , cocoa without sugar and milk , and graham bread . Tokyo is very safty , ( ? ) very comfortable . I want my own homepage but it is hard for me to create one so I 'm looking for some website which can create a homepage easily but I ca n't find a good one . to express a lot of relations and suggestions ; `` Expressing It in Your Own Words ; the EIYOU activity It is paraphrased and has more meaning . There are many methods of transportationin Japan . MY MAJOR My major is acoustic design . For example , history of western music , musicology , frequency of sound , intensity of sound , linguistics , physiology of hearing , and so on . Now , I think love and a kind heart and balance of time and money are important . Writing in English is little bit of a challenge for me . I have started to study grammar . ( Finally ) I was reading the grammar text book and there was a sentence that I could n't understand well . I would be so happy if you guys could explain this sentence `` grammatically `` ! ! : p I think language reflects the thoughts of the people who are using it . There are many typhoons in Japan around this season . He is Japanese but also can speak English and Portuguese perfectly and I wondered why , so I asked him . He said ' I was raised in Japan until my 14 years old and then moved to Portugal due to my parents 's work and now I 've been living in England for almost 3 years . I was embarrassed . I have already made reservations for the hotel , restaurant and show . However I did n't have enough chances to make new friends . The shop staff repaired the flat tire in 5 minutes and I paid 1 . 000 yen . It was an unlucky day . If next semester my grade has n't changed , I ca n't achieve my goal and get a scholarship . In August 2010 , I left Japan to go to South Korea to study economics , Korean culture and language . Sometimes Koreans thought I was kind of weird when my friends and I walked around in the city . Then he / she would always gaze at me as if he / she said to me , `` such a stupid ! ! `` lol This is really helpful for foreigners . He is a very famous person in Japanese history . He is one of the most important people who have affected Japanese history . And this is why I could not leave you some comments after I 'd read it . One day I had an appointment with my friend and my friend 's friend to watch the movie at the Slam Palagon . This place is really nice and beautiful . While we waitedfor the movie we ate food . My friend 's friend is a thai person like me but when we talk . so I think I had an experiance withit before so now I smile about it to my self . It was n't regularly , though . Usually it was short and I did n't think too deeply about things . I just wrote down what happened to me that day , things like `` I think I like him , `` or `` my Korean grade is 100 ! `` I thought so because younger brother is a countable noun . Teaching Practice I went to teaching practice at my high school . The bioHazard series is a favorite of mine . My kids also enjoy kindergarten . She dressed up in Japanese traditional clothes and did her hair . Sometimes dictionaries make me crazy ! Mainly because the dictonaries give me example sentences that are too formal and that nobody uses anymore . Although there were nuisances , Jack and Rose got through the crisis . Also this work was made in 1997 in the US . / / America spans from Canada to Argentine . Maybe I will be a tour guide , but I 'm not sure . Maybe I will just use it for my own travel because I could get free access to some scenic areas with it . I have a double major in event and business administration . I dreamed and struggled for many days and nights . There are 10 days until my university entrance exam . A friend 's natural behavior These children are often spoilt , not in terms of love but their behavour . . . It 's kind of a pity that we are losing a friend here . Hello everyone . I do n't know much English or cultures of other countries yet . One of my American friends invited me to play sand volleyball today . Therefore , you can play sand volleyball while drinking alcohol or eating something . Because , I thought that today is Thursday . A good way to learning another language is . . . . . . . They recommended a good way for me to learn English , These days I feel I am losing my English skill . After hearing that she had died of ( or from ) a disease , he attended her funeral with his wife and realized that she 'd never married The story is that a long long time ago , an old Japanese man went to a mountain , and then he found a baby girl inside some bamboo . We ordered fried noodle and fried pork and vegetables . ' I have to remind myself that some birds are n't meant to be caged . Their feathers are just too bright . And when they fly away , the part of you that knows it was a sin to lock them up does rejoice . ' I enjoy it when I read it . These fruit are very sweet and tasty . I hope so : ) To improve my English , I 'll keep on writing a new entry from now on . Please cheer me up : ) Cross Fire is a game produced by the Tencent internet company . so my hostmother got the message instead . my work schedule was changed by my boss . I decorated the living room with flowers , streamers and balloons . I cooked a special lunch for them yesterday . It was soup , tuna - salad , and the main dish was rolled cabbage . This season in Japan , the spring cabbage crop was large . We had to sing many old songs there , but it was a fun and nice experience for me . So we write only Japanese sentences although we study English . My taste in raising pets is very common . There are many international students at my university . Meanwhile , Two ladies of an IT trainning institution , which announced it cooperated with IBM , stopped me . Summer vacation will end in this month . I was lazy this summer about studying English . From today , I 'll begin to study English for TOIEC ! But we have always lived in different countries and had time together for less 10 days every year . After he got a new job , I felt that his personality was different from what he used to be five years ago . When my friend committed suicide in our accommodation and I needed his help , he expressed his anger to me . But he talked with me for about 10 min , when he waited for a dish in a restaurant or only in his spare time . His house maid said his mother `` did not wish him to get married `` , because she needed his salary for his whole family . When I was in his room for our all - too - brief time together , I was disappointed with his behaviors ; watching TV , checking his phone , not talking . I wanted to spend my time with my BF and have dinner together . particularly , after his anger hurt me very much . I had a BF , but I could not talk with him , call him , or share any ideas . Nor did I have opportunities to go out often , and of course his anger issue . Is not easy to control myself and relax . Recently , My colleague gave us it because he bought a new TV . I thank him for his kindness . So far I have already made a lot of mistakes that anyone might have done before . In my case , I will make a lot of mistakes even though I have already known its a mistake . cpu : pentium celeron The PC will arrive next Thursday . I 'm looking forward to receive it ! ! Btw , I am very tired now , after celebrating your birthday and going shopping . Yesterday I did n't go to school and I stayed home because I felt pain in my nose . Address or Mail Address . He is very famous all over the world . The story is a little difficult , but it has many beautiful scenes ! ! So , today I fell asleep in school : ) ( sorry , I don ` t know how to say that I ` m asleep and not sleeping . . . I ` m so happy , because I have always wanted to read this book in its original language ! : ) Now my clock says 20 : 17 p . m . , and I should do my homework , go to the bathroom and then go to bed , but I often have a insomnia , because I ` m an `` owl `` in my biorhythm , and wake up early - so hard for me : ) What 's more , I have been desperate to go there since I was a child . writing an essay is hard for me . . . I was disappointed with myself . I belong to an astronomy club . I ate Chinese vegetables . Chinese vegetables grow in the land and water . The flower of vegetables is a white colour and in the middle of the flower it is a violet . I know if you eat more Chinese vegetables they can help improve your vision . First off , I will buy an English text book , because I want to speak fluent English . It is my fault that I ca n't speak English very well . Watashi ha kireisa wo kanjiru koto wa arimasen . ( kireisa or utsukushisa ) I dream of - - - - I am curious is it popular in other countries . . My teacher told me not to fear using incorrect English , but I absolutely do n't want to make mistakes like this ! I study Programming , Machine Learning and Image Processing . We have eight - day holiday , but I do not know what to do . I went to a japanese food store and I eat sushi and it was good but I cant have to much of if but over all it was good and the gohan was awsome to but I wish they had onigiri do anyone knows how to make one cuz iv been dieing for one of thoses forever . That was limited to the entertainment sector , but it presented the Korean way of thinking . So many people said , `` That Yankee go home `` and `` He is a betrayer . `` They then questioned why he should quit the team and leave Korea , just because of the foolish complaints from his young and troubled days . Koreans hate themselves but could n't forgive someone who hated their country in the past . However , this situation symbolized the distorted affection and shallow nature called ' Naebi - geonsung ' , boil fast and get cold fast as well . I was so confused and disappointed at my country not as a fan of his , but as a member of Korean society . This could be the case of understanding for all the immigrants around the world , who were raised in their countries without any knowledge or understanding of their roots and motherland culture . Here 's some support messages from all over the world . . . . . o yeaah , , now , I 'm a 2nd semester undergraduate in a university in Indonesia . I am Hungry . Even though I 'm not a guitarist , I hope the company recovers well and will be making magnificent instruments from now on . So I can only use simple greetings , likes `` Bonsoir ! `` , `` Au revoir ! `` . First , I will introduce myself . But the whole day has passed and everything is in vain . I prefer low sugar over high sugar and I prefer fruit cakes over vesitable cakes . To take the machine from our laboratory to their truck which has a crane was very difficult . It made me a little weary today , because I keep on thinking about the dream up to now . Yesterday , I went to see one of my classmates from college , and we had lunch together and also we had a nice talk . Every day I want to learn something new , and I also want to make my day become more meaningful , however when I get to the office , another thought came to my mind , that is how to spend this day , is there anybody that will make fun of me today ? I feel sad about my job . Because my heart is afraid to be broken again and again . In the past , I was not a person like this , I have a lot friends who are always with me , but now I stay in Shanghai all by myself . Give me of your news regularly and also as news of your mom , your dad , and your brothers and sisters . We are happy to be able to write you regularly , we love you very much . First off , my friends did n't want to watch it but I recommended it to them because this movie is made by disney . I do n't know if it 's because I have n't been following the instructions as well as I should have . I got back to my home form part - time job at around 7 in the morning , and fell asleep till 3 p . m . The Japanese authors I like is Murakami Haruki , Banana Yoshimoto , Higashino Keigo and so on . I like watching a sports game , especially when the local baseball team which I supports plays . I always write incorrect prepositions . So I decided that I need to practice prepositions ! I wrote the last message at the end of the page . I went to a job searching seminar . Today 's seminar is held by a consulting company . The seminar was helpful because I was able to talk with some of the staff members . I bought two books written by the president of that company and read them at MacDonald . I taught my students by solo performance . because it leaked . I am renting a house now so I called the owner . I can wash my fase comfortably because it 's new ! I think that I will start Lang - 8 again , in order to learn English . I think I should study English harder . I want to go to many places The mother sometimes treats her children like her possessions . I still have a meeting for this subject tomorrow . I 'm looking forward to having a good time . On Wednesday , the first day of spring vacation , I went volleyball playing and watched a free movie with the people in my lab . This book is for English learners and mentions Lang - 8 ! Maybe she got influenza . AfterI gave her tamiflu ( which is a medicine for influenza ) last night , she had been getting better . I miss my mother very much , especially on these days . I had an appointment with my boyfriend to play basketball this morning but when I came to his house he was still sleeping n _ n Now it is sunny and hot . We do n't want to play at this time but I really want to play . What should I do to stop the sun and heat ? I will bring an umbrella with me ^ ^ ; In one of my subjects , my product design class , I need to think of 20 ideas and draw them out ! I will do everything , all of my homework , because I want to be a designer . This is my first diary . I went to down town Hiroshima and bought webcam at the DeoDeo electronic store . I was surprised by the price of it . But it did not happened in my area . We found out about it through our cellphone TVs ( oneseg ) The earthquakes have been continuous . Gru finally found that he had a right to be happy and find the meaning of family . finally he found what his life was for . A seminar I participated and was surprised by yesterday Yesterday I attended a seminar in Kangnam , Seoul . I was very impressed and shocked because I have never been to one before . Most of them wanted to improve their communication skills because they seemed to believe that those skills would help them earn more money . A announcer led this seminar . He gave several speakers good tips and immediate feedback . Give your speech impression , and charge . We went to the hospital to have a ronsen for my brother 's metacarpal . It is the main qualification in order to study abroad . I need higher points , however , I do n't have it . Some points I had already known but the others I had n't known lol This video emphasizes the strange points of Japan . The first point was `` Character of Japanese `` . This video also referred to Japanese school girls . Some machines give false eyelashes with the sticker . Belgium , Austria and Czech Republic ! Please help me . I want to create a miracle ! `` Crayon Shin - chan `` Today I went to cramming ( cram ) school . Today there was a test at cramming ( cram ) school . I love cramming ( cram ) school . But , sometimes It 's important not to do anything . I usually talk with friends about studying abroad , and one of my friends told me that the best way to promote friendship with local students is by doing sports with them . I 'm a student at Liao Ning University in Shen Yang , China . All the activities were great , especially The Hallywood Ride ( This is a roller coaster ) and Spider - Man The Ride . Actually I do n't go out either . But the Twilight series is not popular in Japan , because of poor PR I think . Green tea includes more caffeine than others . I 'm really looking forward to watching it . Today I went to the Starbucks , which is near my house . I have been wondering why Japanese Starbucks is expensivethan in the US . And then I went to the Starbucks . As a result , Japanese Starbucks is more expensive than American Starbucks . I am working in a Group Home , where old people who suffer from dementia ( deseases ) live , and we are taking care of them . I 'm a beginner My classmates and I did some field research for geology , good night It seems like I could be a help , and if it is I want to give stars to people who helped me , but where is the button ? My name is Tomoko . I got some souvenirs . I will go to ( an ) `` all night Karaoke `` with my friends . I just want to improve my English . russian vs japanese ) ) ) ) ) why that people who are learning or try to learn russian are also learning japanese . . . . and do u think that learning Russian is more difficult than learning English or . . . japanese ? ? ) ) ) ) ) What is your `` position `` in the family - first born , middle child ? she is maybe / about 76 years old . Are friends more important than family ? Till then / up until that time I never could understand why people doze off in class . Yes , when I was in high school , me and my friend participated in a competition , I really practiced hard but I could n't / did n't win the prize . but my friend won one hundred thousand won . It 's a secret but in my major class , a professor who teaches `` study of food material `` is the most boring teacher . But I ca n't do that in such weather . . . I got my first friend yesterday . So I tried to give them corrections twice . It took 1 hour to give 1 correction . So I made a mistake while making the correction . It basically focuses on international business and global governance studies with full - English lessons . Please teach me when I should use it . It makes me crazy . I ca n't believe any information from the government . Basically , I use a package tour when I take a trip somewhere , whether a foreign country or a domestic place , because it 's inexpensive . I 'm not good at English listening comprehension because most English speakers use high frequency band ( ? ) . Sorry it is just my complaints , recently I have a lot of stress from my situation . My cheeky English tutor always corrects my sentences . He puts his corrections next to them . I told him that he should use block form when he corrects my sentences . She said I ca n't go because of math test tomorrow . I said it 's ok , take your time fast . Anyway I look forward to seeing my all friends tonight . We 've got to say that the appropriate styles and colors are a critical factor as well . Although people do sometimes behave differently when they wear different clothes , I do not believe that clothes can essentially make people different . Therefore , japanese have to learn much from them . I went to school to try a lesson . Tomorrow is Friday . There is Chinese official approve this month . They prefer to live in a dormitory because they know that in dormitories they will : have more fun with colleagues , meet new people , have new experiences , and face new challenges . Those students say that living in a dormitory allows one meet new people , and have more fun as one can stay up with the new colleagues playing music or games without caring about little siblings or sleeping parents . In addition , living in a dormitory forces the student to have new experiances in life , and face a lot of different situations in which s / he has to deal with them without help from parents . Moreover , one student said when one lives in a place far from his parents , old friends , family relations , and neighbourhood , s / he begins to face new challenges . when we arrived at Nikko station , we went to the hotel reception . We never can find hotels easily - - then we went back to 1 station ^ ^ We found a hotel ^ ^ u know Nikko takes 3 hour and half to Tokyo . . A lot of foreigners ? come here ^ ^ I think that I 'll study until 10 : 00 p . m . in my office . I study English every day . Because I want to be able to speak and understand English . So I study hard ! This museum , which is constructed underground , is designed by Tadao Ando . Well , I can say that some subjects are getting better except Geography unfortunately . I attend English courses with great pleasure . In my opinion , it is very important , especially nowadays . I have always been very sensitive to this and other situations which hugely disappoint me . I believe that my English is getting better day by day . B : Right now I am going to vacuum the house ! Although , my grandma and grandpa are already dead , so actually , the people who are living in my grandpa 's house are my uncle and his family . I love grandpa 's home ! I like J - pop , J - rock and Japan drama , so I learned Japanese quickly & easily . I understand there is a big controversy about hunting whales and Japan is criticized on this matter , but fighting a whale with a small weapon is certainly an adventure . Because Tohoku area most catastrophic damage from the quake and the tsunami and crippled nuclear power plant on March 11 . Try eating the food from Tohoku ! Meanwhile , we know some people are anxious of Japanese food . Kyushu Trip I had a get - together with RVT yesterday . Anyway , I drank so much yesterday although I ca n't drink too much . I watch `` Friends `` DVDs every night . `` At first , I did n't believe it because I thought it was a joke , and I lacked of confidence when I was a senior student . I talked on Skype with my tutor . I worked Today . Can I talk about weather ? I was sunny day . An ipod can put music in your pocket , so you can take music to wherever you want to go . She came to Japan and appeared on TV I listen to her song `` you belong with me `` . We want to guide English speaking foreigners around Nikko with a volunteer because we would like to study English so that we can talk with them . SEO is the abbreviation of Search Engine Optimization . In summary , one site up to the nearest top on the Search Engine . Thank you for reading my diary today . He taught us how to choose our own life and be responsible for it . Time goes by so fast . Finally , I 'm about to there . I am easily addicted ( absorbed by ) by any kind of work . In many high schools in Japan , grammar teaching is emphasized very much . But after I entered a university , I realized that I ca n't speak English as well as I want to . Please fix my writing , grammar and spelling . I want to make foreign friends . Yesterday , Mie participated in first - aid training for the Red Cross . Many small restaurants were open and we introduced our lab work . I went to the area where I can drink free Sake ( Japanese alcohol ) . It 's been a while since I drank alcohol . I do n't think I am so weak at drinking alcohol , but my face gets flushed after just one glass of beer . Sake is about 15 % alcohol . Of course my face got so red . . . Most of the people at the festival were not drinking during daytime , and I felt a little embarrassed . According to animal experiments , if it is eaten , it causes kidney calculi and can eventually cause carcinoma . Usually , we do n't buy `` regular toys `` such as rangers figures or items of a certain ranger , which cost around 5000 yen , because we know he 'll get tired of playing with them sooner or later . Three straight days off On Saturday , I will change the layout of my room . I have no confidence in my English skills ; I want to enjoy English , not only for learning the language , On 11th Mar , we had the terrible earthquake . My house and office are in eastern Japan , but it 's not close to the sea , so we did n't have any Tsunami impact . I will miss those beautiful colors of Tanzania . I 'm from Hyogokenn , and often went to Osaka . Nothing happened , no trouble is brewing . . . well , this is my first entry and I hope you 'll enjoy it ( or at least correct its mistakes ) Next year I 'd like to continue practicing my English and to take an english international exam , like toefl or first certificate . I 'm looking for a new career . I think I 'm keen on economics , but at the moment I ca n't picture my self working at any job . I 'd like to travel abroad and in my country in the future . Argentina is beautiful and I recommend you to come , but first I must get a part time job . Coul you tell me what kind of job is the best to start working on , considering that I will study and practice sports at the same time ? I disagree it , because I think people will not be motivation for their working . I was an assistant there . My dream is to be a scientist on metal of atomic energy . I want to work with foreigners , so I want to go overseas soon . That will make me evenmore stressed . In our lives , about 100 years , we have to choose only one person with whom to have sex but sometimes people try to choose two people at the same time . First , a couple gets divorced after 10 years of marriage . I 'm trying to write a journal about an article from a magazine for English learners , but I do n't have enough time to post it . TOEIC Test . . . TOMORROW ! ! ! TOEIC test is coming tomorrow . I will get a perfect score on it tomorrow and it will be my last time to take it ! ! I can enjoy dating her at the amusement park , concert hall , and movie theatre / theater etc . Hi = ) I 'm 15 years old , I 'm studying at school . Its situated near the Caucasus mountains , in a beautiful green valley . Welcome to our hospitable land of enchantment : ) I like dancing and photoshopping . People want a reason to decide , when they choose one product among lot of other products . `` Do u think u could go a little `` slower `` . in that sentence , why ca n't I use `` more slowly `` instead of `` slower `` ? When I was young , I lived in a small ge village . So , I could n't watch movies in a theater until I was 16 years old . I 've just registered for lang - 8 . I am a Japanese native speaker . I have n't decided when I will take my summer vacation , but I 'm thinking of going on a trip to Taiwan . Today I 'm a bit depressed , because in recent days I have sent lots of E - mails to lots of design companyies in the hope that during the upcoming summer vacation there will be a internship position for me . But I have n't received any satisfactory replys so far . What I am worrying about is that if I ca n't find an internship position this summer in Shanghai , then I have to go back home and stay there the entire vacation . After I had done tracery I took pictures of it . Hakubutsukan wa totemo sutekidatta desu ; D I had to put all my heart into reading , so that I could know what my friends said in their softblog . `` Tomorrow is another day `` Hello everybody ! I think it 's a very good idea ( I 'm talking about the community ) , and of course , any help you can need if you are learning spanish , you can ask me . Business ( on Sundays ) is banned by the law . It 's one of the biggest culture - shocks for me . I was so surprised that kind kind people on this site Lang - 8 corrected my English immediately after I wrote down my first entry . She is a very positive person and she is always on my side . There you can find a range of meanings for the word that you want to learn . Also , there are many samples of sentences which can help you to understand in which situations it would be better to use that word . After that , I 'm going to study English in ECC school . First time ! ! ! We are enjoying it and understand `` Japanese love festival ! `` maybe I wo n't be engaged in the design industry in the future . I was only for a short time in the city to buy vegetables and chocolate ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . You cook garlic and oil on the stove in a pan , then put the chili paste in it . It was pretty spicy , so you need rice and cabbage . I often go to the restaurant because the prices are reasonable and the food is delicious . I like hamberger or any American food , but I sometimes feel like eating Asian food so I often go to the restaurant and the Korean Restaurant near the University I am going to . The event was cancelled halfway . . Equally , I wanna cherish Japanese tradition . But there are traditions which have to be changed . My favorite movie is `` step brother `` with him in it . This story is that Will Ferrell acted as childish and he still does n't get a job even though he 's about 40 years old . I 'm looking forward to this movie DVD on sale . And I want to make many foreign friends . The holidays is called Golden Week in Japan . I started my serious English learning , so I search for a method to the best & quick type of learning English . . . My tongue still hurts . . . . . Also I wish to improve my English , especially in reading literature , because this is hard for me . All the scenes have meanings . Since a boy transfered to our class , my friends ' things are stolen . But , how can I accept what he does ? I want everyone to check my grammar : D And I look forward to drinking with the teachers because I promised them to drink with them someday . By the way , not with the children , definitely ! Hello ! I 'm a coffee shop waiter . so I just smile smile smile . . . ( haha ) Now , my favourite things are cups of coffee and coloured markers . They are also asking citizens and enterprises to save electricity . Recently , I run every morning . I returned to Japan this morning . However , I want to write daily on lang - 8 as much as I can ! At first I got very nervous about driving a car , but after practicing and practicing , I felt that driving is not as difficult as I thought , and I get more confident that I will pass the exam . Recently , I have n't been able to get up on time . Following the situation , there was also a lot of garbage . I will absolutely suceed in my life . . . Because vegetables are cheaper there than at the supermarket . I can connect to Lang - 8 easier now , than this morning . But / However , they had a lot of motivation to learn about foreign countries even though they could n't speak English . But this is good that I was able to run after a source of Query slowly and carefully . Days of the week : Monday , Tuesday , Wednesday , Thursday , Friday , Saturday , Sunday . they label the phonetic symbols beside the chinese characters . all chinese students , once they start school , begin to learn pinyin first for 3 months or even more Maybe , the advertising company aims to change telecommunication from docomo and au to SoftBank . In Japan , many family use same telecommunication company in order to reduce the cost . Excuse my long absence ! = ) I did n't plan be offline for so long . However , all my problems are solved and now I ` have another little problem - I can ` t imagine what to tell you . . . Every day passes as usual and there is no special events that I can write to you about . Unimaginable ! However , in 30 minutes , I must go to class . The most interesting thing about this course is my teacher always presents something about foreign countries like America , France . . etc Sometimes , a person 's feelings may be influenced by the weather . So I tell myself to keep this mentality to confront everything , whatever success or failure , I will gain more in the end . I realize that I would cherish those who are optimistic and confident , and who enjoy doing something new , worry less about failure . They see in every activity the process of self - discovery and self - fulfillment that can not be measured by an exam . Lovely sentences . Today 's topic is about my son . My only concern is that his parents wo n't allow us to get married . If there are any mistakes or suggestions , please let me know . Actually , it 's okay if nobody helps me ! ! I 'm still studying English , and I 'd like to improve my knowledge with some techniques or activities , that 's why I would like if some of you could share with me any experiences that have helped to improve your English . If there were only one language in the world , its culture , which includes people 's thinking habits , customs , and religion , would become more and more homogeneous . I tried to write about SUMMER SONIC the other day , but I deleted it . I will try to write that again soon , so please wait . Well , the project can fit into the category of Design Improvement ; the main point of the project is to invent something new or improve something that already exists . I 'm studying English in Korea . By the way , recently I have been very busy ; I have a lot of assignments and I 've been studying for tests at university . I started to feel depressed and annoyed about my studies . It was very much exciting to interact with people from other countries . I should have been much more modest . . . I wondered how she 's thinking now in the current status . First , I missed my bus because I slept in . This was an unforgettable wonderful journey . This morning is the most chilly when I came here ! I was surprised because I had always thought that the seasons here are warm . because they have a lot of assignments and have to review many study materials . Are you influenced by economic crisis ? And what influence has been brought to your country ? Yesterday , there were such big hurricanes in Japan , and a lot of poor public transportation services such as the trains and buses . because I ` m very interested in foreign countries . . and I want to make friends . . and I want to talk to new friends . . I want to speak freely to new friends . . taekwondo is my favorite sport . . ( I have a sa dan license in / for taekwondo ) I have to memorize my line because there will be a play on October 24th , at my school . Anyway , it 's about time ( for me ) to go to bed . . It does n't make any sense . . . : ( Even if it is a small thing , I think a positive mind is important . And My strong point is Kindness . So I always think about how I can be active . Please fix my writing . It 's no exaggeration to say that Japanese English learners have studied English for many years to obtain high marks on this test . Even if we study English hard for two hours almost everyday , it will take us more than 1000 days . But after a few days , I made some English speaking friends whose Chinese was quite good . ( was is right ) They always write some sentences with complicated logic . I need some inspiration when the sentences or words deserve a better translation . I was afraid that the author would be confused when there were so many editions , too . We had to guess what the author meant and then made them into a sentence . With the scar , I made less and less corrections . I found that I have forgotten many beautiful words after studying in a university because we ca n't use them in a science article . but what the hell is wrong with me ? I hope it will work for me ! When I was chatting with my American friend , I only said `` I see `` and my friend said that it was a `` conversation killer ! . `` How ridiculous , I ca n't believe it ! So , it is difficult for me to use English . I 've been in L . so I could understand what he said . I could n't respond to his question ! My job is to treat guests by showing courteous service and make them pleasant and happy . From now on , I have to prepare myself for the upcoming examinations . How I wish that someone could replace me . During the winter , I had a good appetite and I ate delicious foods . I will be glad to make friends here . Please help me with my English writing . Cybercrime is a crime which involves stealing intellectual property from a computer in a work space . Raining on Sunday The weather is so changeable here . . . But I did it because I believed him . I need to inform everybody that I 'm all right . Although we just said and done something stupid , I still really enjoyed it . I am preparing for the English songs competition and the following is what I wrote for the contest . Welcome to the English songs competition held by Shaking English and supported Last but not least , boys and girls , I think you deserve a big round of applause as well , for being such a good audience . Thank you very much ! I have been having it since I was 20 year - old . The youth do n't understand how important to choose a job in a careful way ! ! I talked about a Manga Cafe yesterday , I 'll continue to write about it . I got married fourteen years ago , but I do n't live wirth my family . It 's about 60 miles from Fukuoka City to my workplace , so I ca n't commute from my condominium . I come back to my condominium from my workplace only once a month . However , giving your children a good education is important too . I ate many vegetables . I bought many vegetables at a 30 % discount at a nearby supermarket . At first they sent me a package which included one guide book for the course , two technique books for paintings , one sketchbook and five envelopes . Until now , I have drawn a sweet potato , a green pepper , a carrot , a tomato , an egg plant , a mushroom and a lemon . My favorite hobbies are shopping and reading books . However , I have a problem . Besides , think more before what I ` ve done , It was really a wonderful soccer game which could represent the top - level in Asia . Through this game , I thought that Asia 's soccer had made big progress in the last five years . What a pity that Chinese soccer could n't develop as much as Korea and Japan . It was really a wonderful game however the refree 's calls were doubtful . The volunteer work is basically something like this : When tourists ask how to get to their destinations , we show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked about a lot of things , such as work , marriage , siblings , friends , etc . It takes about 5 minutes by train from my station . I want to write something about foreign country 's festivals this week , but I do n't know much about them . For example getting lost , not having strict manners in trains , missing an associate and communicating with the Japanese . But contrary to what this video shows / says / implies , in most public spaces in Japan , such as stations , you can get information in English . I am looking forward to meeting them . I went to yoyogi park for Hanami last saturday . At first , I doubted that she had a dislocation of the hip but as I continued checking her , I started to think that her hip joint was OK and I started to treat her . Under normal circumstances it 's me who should be putting some pocket money here but unfortunately I have no money at all at the moment . If hard disk is encrypted , it will be dificult to salvage your data from the hard Northeastern Asia consists of China , Japan , and Korea ( including North Korea and South Korea ) . I think the four countries should work together and make a good relationship with each other , remove prejudice and misunderstanding . Thanks Door for ur ( your ) recommendation . I am studying commerce in Melb . Although I have some friends who have been there for 7 - 8 years from their high school and who knows a lot about the city . On my vacation , I plan to spend my vacation in LA . The next day , I went to Universal Studios , which is in the Hollywood area . The day after , I went to Vince Beach , which is on the west coast of LA . I had an enjoyable time in LA . Some of them who have n't gotten serious damage this time say that the buildings are paid for by national taxes which all the citizens paid , so the authorities do n't need to build ( the ) accommodations if [ 6 ] the refugees do n't want to live there ( anyway ) . Questions in my workbook Doubting / Questioning myself . . I hope to find a perfect one . Deserts cover most of the Arabic lands , so the animals in it are very special . Camels are very expensive . I remember when I saw a black camel . Its value was 15 million Saudi Riyal ( 1 dollar equal 3 . 75 riyal ) . Camel riding is a very enjoyable adventure ! ! Allah taught about Camels in the Qura ' an : To read more about Arabian Camels : I slept with the electric fan turned on and yesterday the weather was bad so I should n't have turned the electric fan on , but I took hot bath and I was hot . In Taiwan , most parents want their children to attend high school . Many bosses think that a bachelor 's degree is not important , they look at character , professional skills , the ability to handle stress , teamwork , etc . In addition , why should these students follow their parents ' orders ? I wish all students could do what we want and be successful . I am a sailor , and I had to go on a trip today . I drove the ship out to sea . now I 'm practicing road rules . . . Maybe a lot of people will be lacking sleep tomorrow . Of course , I never donate blood . : ) Because I 'll have to take an exam , but I do n't know when ( , ) yet . These American novels remind me that people must always keep clear mind and be kind . All the professors have gone to a conference so I have a break . So , I visited two travel agencies . at a bus stop I got off to transfer in minus 20 degrees . I 'll never forget the experience . Actually this is my second winter in Canada . I want to listen my favorite music all day and do anything I want , not just sit in an office like a doll . The grass will cover my sweet soil . 3 , How do you like me ? How do you like him ? A sharp decrease in the number of children and the aging population as a result of longer life expectancy in recent years have created many problems . I rode with it and started to peddle . . . . Nowadays , I also have to do it in my college with my friends . So now I am going to show you . Hehe , I had so much fun . We talked about a lot of things but I could n't catch what my friends were saying sometimes because I did n't understand , so I just smiled and laughed at myself . After that she went to do yoga while I went home still very full . Although you would want to meet your family , anybody wo n't tolerate your action , because your office is always on alabor shortage to reduce personnel expenses . . All the people there are foreigners . Because I can catch my teacher 's pronunciation . On the other hand , when we take a indirect lighting , we can feel relax and become more creative . Thank you for reading my diary . It is really difficult for us ! ! : < We talked about each other 's pronunciation . It is impossible to select music , so it is not useful to study English . This is just subconscious , but it is working all the time in my life . 6pm to 0am , I am working for Okonomiyaki restaurant then . . . . To study English effectively , we have to find a partner who knows the language we are learning and our native language . I have no time to sleep , but summer vacation is coming soon : ) Through my kitchen window I can see two big feet hung from the balcony above . My upstairs neighbour hangs Father Christmas from her balcony each year , and the feet cut off the view from my kitchen . I can wear a T - shirt and half pants . After that , we went to the Brooklyn bridge and crossed it . The most famous ones are Suzu - mushi , or bell - ring insect , Koorogi , or cricket , and Kantan , or white cricket . I ate very clean , I cut out all white carbohydrates , soda , sugar , and fat from my diet . Not only for myself , but also for my mother . ( because she have brought me up until now ) One was a friend ( of mine ) when I was a university student , and the other was the agent of my life insurance . After seeing the Buddha and deer , we went to take a Purikura . Last year , I was a call agent on telephone line and sometimes I had to talk in English . This morning , I read an article in the news regarding marriage ; it said that women in Japan want to marry men who receive at least three - million yen a year . I heard a story from my client about international marriage . Though I think it 's culture , I would like to know more practical details . I think they just barely can read , write , speak and listen to English . I hope that many students in Japan are interested in English and master English as soon as possible . For that reason ( will ) , I study English hard now . But , I 'm not going to go because the ceremony is only for family members . I like simple physical works . I want to be a television journalist . I think `` correspondent `` sounds more professional than a `` reporter `` . Most people have attacked head coach Okada on the internet before , and the media does n't usually release complimentary news articles about him . I understand when people speak it , but I sometimes have some difficulty with speaking . I 'm a university student , and I major in Chinese Literature , It 's not just true for Japanese , but for any other languages . In ( the ) winter season , I often want to eat hot soup with chicken and lots of vegetable . I like winter sports , especially snowboarding . I chose the Erasmushogeschool Brussels in Belgium because the Translation and Interpreting programme offered at that university coincided with one I am studying at the Baltic International Academy . One semester of studies in Brussels left me with unforgettable memories and valuable experiences . The tenants were students from European countries like Greece , the Czech Republic , Turkey , Lithuania , Estonia , Germany , etc . Secondly , the courses I chose to do at the Erasmushogeschool were useful , as I was taught the history of Great Britain and the USA , English for Academic purposes , English for Cultural awareness , English grammar and lexis and German language . Finally , Brussels is a beautiful , picturesque city to visit with numerous parks and museums . Maybe now is not a very good time for relaxing but I have decided to take it . The instability of the state of atmosphere shows with the changing the season , I guess . However , as for me , I 've abstained from a booze - like matter for more than five years , after I decided there 's more to life than just drinking and getting temporary hapiness . Because I like tea and coffee , which cause stains , it may cause my teeth get a little discolored . Please teach me about English grammar . What is the difference between these two sentences ? Obviously , we missed each other very much . But what was saddening was one of my friends was not with us as he was in National Service . I got to know that the earth is spinning a bit slower this year , so we counted from 11109 , 8 . . . . . . . . . . . . . until the firecrackers came into sight . ( until , till ) she may be joking . I get so much pressure from the environment hat I have stomachaches every day . Today , I had my first classes at Osaka university . In high school , one class lasted 55 minutes , but in university , a class lasts 90 minutes . I have to get up early in the morning tomorrow to not be late for my first class . I practiced boxing with my friend My friend is trying to become a boxer . My most favorite ( or favourite ) song is `` Lovers Again `` . I was sleepy during my afternoon class . I think making relationships and making new friends and chasing your dream is the most important things in my life . It 's been long time since I wrote my last diary . I think ( or hope ) that some people also know about the problems caused by American soldiers ( or their families ) and the pain they inflict on the Okinawan people . An Okinawan guy , who was on the way to a Coming of Age Ceremony . The first picture above is my family 's dolls . There are five dolls and two steps . I 'm going to train tonight . the first note By the way , I finished reading `` HARRY POTTER and the Chamber of Secrets , `` a few days ago , which was very enjoyable , and now I 'm reading `` HARRY POTTER and the Prisoner of Azkaban . `` A guy named Sirius Black is after Harry . I hope that I will make many good friends , and I also hope that there will be a lot of friends from all over the world who will help me improve my English . Thank you ! It 's very simple but a very excting game ! Today I cleared a new song . This song is one of the most difficult song in the game . I 'm very glad to have cleared it and I love `` Evans `` ! very cool song ! I usually eat lunch in the office but today I went out to a restaurant with with my female colleagues . The spagetti was good too , but the portions were so big that we could n't eat it all . So , we ended up leaving a little food behind . Especially vocabulary . It 's a very small house , just two room inside , 5 families there but many korean students live like me . It 's 2 years since I have been separated from par , mam and my brother . Friends and cats have solaced me and that is better then living alone . Someday I want to live in a city like Samchengdong , I have just been there once , but it was really cool and fantastic ! I have never been in a korean city like there . It 's the very fusion of traditional and modern and truly colourful . Frankly speaking , I am the kind of guy who gets tired of anything really quickly . Also , I find writing in English very complicated . It seems like such a long way to go but each of us is struggling . Every day , my parents feed chickens , ducks , pigs and fish . Go somewhere I have never seen . Today , we studied the culture of America in class . At the beginning of the class , we learned about early American history . The first stage was is the colonial period of time which began 1607 . Because the cinema requires silence . But why are they becoming popular in foreign countries ? Could you help mechoose the right one to use in a sentence ? Is is ' She did not fully appreciate the value of the environment `` or `` she did not enough appresicate the value of the environment : ? I 'm like a professional player . What 's your all time favourite sport ? If they really understand the meaning of ' eating meat ' , Beautiful world , now I am exhausted but . . . . I feel really sorry for my friends that are waitnig for my pictures . Especially listening ! ! ! ! The purpose is to tell the parents about their student 's school life , and to know about their student 's home life . We noticed that the weather was getting better as we were leaving the store . Article 128 . - The Inter - Secretarial Commission will promote a program for the formation of mutual organizations and insurance funds with self - insurance functions under the relevant laws , in order to facilitate the access of producers to the insurance service and to generalize their coverage . Osaka university 's professor Ishiguro invented an advanced humanoid robot . It is like skype , but a humanoid robot . It 's the purpose of this humanoid robot . I ordered a digital camera last week . I look forward to taking pictures of many beautiful scenes . Good owner , good co - workers and good environment where I can practice to speak English . I drank 2 cups of coffee and ate 3 pieces of chocolate . What happened last Friday We were looking forward to seeing her since 3 weeks ago . It turned out that she had changed her hairstyle and her teacher put heavy makeup on her . But some children were clamming up or crying . It appeared that they ( the children ) were unsightly . I also met my parents and relatives . I like to eat umeboshi , mozuku ( like seaweed ) , and fried chicken ! because I do n't know ! It takes at least 15 minutes to get there . Which are reading , writing , and listening . Yesterday , I caught a cold . I 'd like to contribute to treatments of diseases through my work on neurophysiology some day . The original version of this song has been recorded by the American rock band Journey , written by Steve Perry a member of this band . However , when my leg first stepped out of my room on the way to complain about this to the hostel office , my cool mature roommate stopped me . `` The ture man will never be afraid of the little insect . `` said he with a calm voice , `` I used to be bitten by the insect too , but now they can not harm me any more , coz I have already grown a layer of iron skin `` hobby : driving , nico nico douga ( premium member ) , and so on . . . Because , I finished English school this Friday . Please help me ! ! Does the H1N1 flu cause issues in your countries too ? Anyway , I hope everybody on lang - 8 can be healthy without getting sick : - ) I was very nervous before that . He tested my practical knowledge of MS Excel . I thought : `` I can really work in the real company ! I cooked alot of summer vegetables . In other words , the meaning is hard for a little child to understand but I have to say the melody was terrific . Can you help me ? If you can help me , the best method is to give me money : $ 200000 . because mistake might . . . . . . . . . . . They are kind of losers in Japan like me . I will endure for them , but instead I should find something to be happy for myself . Although I ' ve studied English since I was in elementary school , I really want to be a good English writer . I will introduce to everyone my favourite Japanese artist . My friend will already be getting married . Bless my friend , I hope people who read my diary congratulate him . . . Please would you become my friend ? `` It was a plate of salad and spaghetti . I like that menu , however , I have an allergy to cucumbers and tomatos . I forgot to tell the chef to avoid that food . There were no cucumbers and tomatoes . The chef knew about my allergy . My son is only four years old , so he is too young to feed the larva well . Then , about two weeks ago , the larva hatched and become a pair of beetles . Last week , I suffered from a terrible backache . As summer is coming , cockroaches appear in kitchen , my room , everywhere . I 've heard that they can survive eating dandruff and dust on the floor . Although I vacuum the floor out almost everyday , I find one or two every week . I set them in every room and expect them to sweep all of the cockroaches out . So today class is starting at 9 : 20 . It was quarter to one . So I hope to find a English native speaker for a language exchange . For me , it would be an enriching experience and an honor to contribute with my voice to the World Youth Choir , which is a well recognized organization . Maybe my internar clock has already been welcoming this happy occasion . After I went home , I continued the study in two 's complement and I finally understood it . Main characters are John and Nelson . John is trying to kill Nelson in prison for revenge . He has been put into prison three times by Nelson 's father . But Nelson 's father died suddenly , so John changed his target to the son . John tries to kill Nelson in many ways . But ironically , Nelson , who was really weak at first , rises up through the traps set by John . Even Nelson 's penpal , who is only about 6 years old , reads aloud a letter from Nelson which includes lots of bad language , in front of his classmates at school . In such a situation , all of the characters do their best for their own purpose , but really , they 're all just funny regardless of whether they accomplish their purpose or not . That 's because I ca n't imagine living in such a harsh world like the one in the prison in the movie . They turn their harsh situation into a funny one with their expressions . I was busy finding a job , traveling , fishing with friends , etc . Walnuts bread ? Bread with walnuts ? Bread in walnuts ? It was walnut bread . As you know well , this is a traditional tactic for us . She is really an outstanding girl , and because of this your friends would be jealous of her . But `` or `` should n't be at the beginning of the sentence , should it ? I am writing a diary in English because I have a few penpals and I want to improve my English . Introduction to my hometown . because there are only a few . Last night , after the Christmas Party ( a little bit early , is n't it ? ) held by the school , we drove to Jiaushi , Yilan ( northern Taiwan ) to enjoy the hot spring . Unfortunately , all the rooms were full . We had a very brief sightsee in Jaiushi downtown , then went home in tears . . . ( j / k ) I had n't exercised since march this year , because I am suffering from acute muscular pain now / at the moment . I think it 's TERRIBLE ! He did n't call me although I texted him like `` Have a great night Joey `` Oh I made a new Blog account ! And I want to go to a good university ! I am studing hard in math , Chinese , English and so on . I am busy everyday , but I feel very happy , but I think my English is not very good , I want to make a pen - friend ! At the same time , they are producing water pollution and causing desertification . he is the president of his company . It was faster than I thought . But she must be a cute girl who has style . It 's nice to practice writing through the Internet . It 's uncommon to do this kind of thing out of school . I have never continued writing blog or something over half a year . even though I 've only worked in that company for three days , I felt that I was working in hell . For my better future , the first thing tomorrow is to call my boss , to tell him my decision . But I have no friends who speaks English natively , so my English is not that good yet X ( In fact , I want to go there with my girlfriend , but I do n't have one yet . I think the Bund is an interesting and beautiful place . When I was a little girl , my grandpa always said to me , cherish everything you have now , and be a happy person . Life is like a long journey with many challenges and difficulties , and many times we ca n't change that fact , but we can change our mind and thoughts , think differently , and not get upset , try your best to face it , solve your problems bravely , and I believe we can see the sunshine after the rain , that we need to cherish everything , only the small things matter , they can change a lot , even our lives . I thank my parents , they gave me a healthy body , and they support me no matter what difficulties I meet . I thank my friends , when I feel lonely , they always spend time with me , share their joys with me , and make my life more wonderful . I thank nature , it gives me air , sunshine , the blue sky , rainy days , and a great mood everyday . I thank society , it 's like a big family , and apply many ways for me to look for ( unsure what you mean ) . I thank strangers , although we do n't know each other , when we are in trouble , the hands are always around us , and lastly , I thank myself , I let my family members feel happy , and make my friends have someone to share their tears and joys with . . . . You have to be responsible for yourself . I think everyone is faced with a barrier of the language at some point , but it may entail a lot of culture difference as well as those of the grammar or pronunciation . I will persist in writing in English and in other languages as well . Races in North America are not good for people in Japan because of the time difference . I have thought about camping for a long time , but because of my economic problems , I have to put it off . I went to China town in Yokohama on New years eve and celebrated the new year there . That 's why I decided to write a diary . in the proess of globalization , the developing countries did not share the achievement of their economic development . Secondly , economic globalization results in the instability of the economy in the developing countries . facial expressions of shop assistants , their manner of speech , from overhearing of businessmen talking and the like . . . for instance , shop assistants used fixed formal phrases . This time , I bought many clothes and I already regret having bought some of them , which happens each time I go to the sale . Especially after I finished my work it tastes wonderful . I am always drinking Tiger beer when I was living in Singapore . Anyway , this is so famous in Japan that bananas used to sell out lol If u are interested in this , try it ~ I 've never tried it though ~ ) This cream puff was handmade by my colleague . My japanese is so poor but he is patient and carefully translates japanese into English . He decided to poison them . Anyways , it is extremely crucial for me to decide what it is that I really want to achieve ! Even if I 'm a millionaire , it would mean nothing if I was n't happy . Oh , I just remembered another important idea I learned from books . because it was not important to my life when I stayed in china . I went to Grouse Mountain to climb with my host father . Mt Grouse is a very popular mountain in Vancouver . I also practiced the making of Zonbi today . I 'm looking forward to the Zonbi Walk . I want to talk about movies or soccer with you . I like horses and cooking . I like watching TV . And what do you like ? Our class has Korean , Japanese , and Taiwanese . My teacher is an American . I must research fashion by the magazine . The industry of my choice is a firm company , marine or an air transportation company and hotel . Maywa Denki , one of the artists who displayed work in this exhibition , declared their concept to be `` Device Art `` . In such relations , devices are mere tools , being the subject to make the content . Only the content is regarded as art . I am not very familiar with contemporary , so it 's difficult for me to understand this sentence . Do I have an advantage for learning foreign languges ? ( I 'm not sure how to correct your second sentence ) Citizen watches Japan can not supply the parts only . I 'm working as a telephone operator . but pay is relatively good and , physically , its not a hard job . Best of all , I work short hours ! ! Please tell me if the things I write do n't make sense . Japanese restaurant `` saizeriya `` I went to the Japanese restaurant `` saizeriya `` today . It is a very reasonably - priced Italian restaurant . When I am sad , I always count my favorite things . ( I did n't know the parts were still in there ) I guess he did n't make a full recovery , but he looks fine when dancing . Unfortunately , we can not talk to the animals b ' cuz ( because ) we use different languages . I usually related aliens with everything around me . I think taking photos is good for improving your sense of I believe in heaven and I also believe in hell . I 've never seen either but I believe they exist . They have to exist , because without heaven and without hell , we are all just heading for limbo after death . The places have identical features . English is pretty hard ! I will do my best in order to achieve my goal starting from RIGHT NOW ! Singapore people who lived one generation before started using that language . The pronunciation , accent and rhythm of the language are very different from English which we have learned until now . Yesterday I listened to this song on You Tube . When I was leaving the car park , my husband gave me advice . I really enjoyed this summer . I have to practice soccer everyday , practice futsal every week , and practice aikido sometimes . What 's the season in your country ? Did you know that a big typhoon is coming to Japan now ? Tomorrow maybe it will hit Japan . The TV drama `` OC `` is awesome ! I study english by watching the drama `` OC `` . This is more natural . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyrics are cool and their music has a lot of energy please correct me and thanks for reading - . - Anyway , I am going to study English using `` BENJAMIN BUTTON `` from now on ! Tomorrow I will have an English examination . I hesitate on what I should choose . We had a substitute teacher , but he was nice and had a good sense of humor . Since I read books until midnight for two consecutive days , I 'm going to wrap up my entry . I often drink hot tea , because I have sore throat . I think that she is a real personality . I laughed silently to myself when I was in the dream . I chuckled and giggled . I hope my bad memories wo n't eat up the pleasurable dream ( in which the man loves me ) . Of course , amime is Ok . It is well known that English learning includes four aspects : listening , speaking , reading and writing . I do n't remember who , but someone told me that reading and writing belong to cultural aspects , while listening and speaking belong to language aspects . I major in economics , and now I 'm busy with group study and studying for TOEFL . . For example , I have 12 coworkers in my office , both regular and temporary exmployees . One of the temporary workers is very dirty , lazy , and tough , so most of the other workers hate her . Even though she realizes this , she makes no effort to change her habits to foster better relationships with her coworkers and create a more efficient working environment . What I 'm trying to say is , `` If you do n't want to change , search for a job more suited to you . I was hanging around in Shinjuku after work and I saw such gorgeous displays . I wanted to watch ( them ) from the cafe across ( the street ) , but unfortunately , it was filled to capacity . So , I ca n't become the superintendent for our dormitory . Today , I watched episode 4 and 5 of the second season . I like Serena . Who is the actress who plays Serena ? the class always stresses me because I teach students who prepare for university entrance examinations . ( It 's very difficult and important for them in Korea ) I told them I was planning to go abroad to study English . but I do n't get any chances to speak English or Japanese at my workplace and I 'm not satisfied with my current job . This is my first time going to ita . Nobody understands how I feel . Yesterday my friends and I played basketball in the park . When we played basketball my friend hit my head . When we rested next to the basketball area , The father played with his son and the mother just sat on the bench I played the piano with my daughter in the concert for the first time yesterday . I admit that not every piece of Seth Rogan 's is as brilliant as Superbad or Juno . Are people in modern society losing their moral values ? Every year , bullying at school occurs and it does n't seem to disappear , rather it 's becoming worse because there are some students who committed suicide after being bullied and the way of bullying is becoming terrible . There are some people who talk so loud ( OR loudly ) with thier mobile phone in trains or buses , not considering other people around them . Also . . . I do n't know difference between `` memory `` and `` remembrance `` I stirred and cried . There are many many traditional summer festivals . I recently went to bed late so I am worrying about my lifestyle . But until now , I do n't think reading English articles is very easy . Did you see Avatar ? I used to read fiction when I was young had a lot of free time . The method is good . I study about 1 hour a day and write with native speakers . By the way , I would like to know Jiro Shirasu which made the biggest impact in the world around 1950 . Plese check it . I went back to my father and mother 's ( parent 's ) home . Then she clapped her small hands and swayed to the song . I 'm very excited about my first diary . Then I ran around the park near our apartment . I had a good time eating the delicious pizza with the group . Recently I 've busy so I could 't write a diary . I 've been studying English for years and have just started learning Spanish . I also received the high school entrance examination results , and I passed . I like eating and traveling . and sometimes I would feel shy . Maybe I fear have a fear of making mistakes . I watched the movie `` UNSTOPPABLE `` A repairman came to check the air conditioner in the morning . He found that one of the possibilities was a short voltage of the remote controller . Jim Parsons 's smile is Cute . XD I emailed that to them on last Saturday ( their Friday night ) , that I asked them to accept for me to stay at their home again . However , they did n't reply anything to me until Monday morning ( their Sunday night ) . I worried that they will have some troublesome thing during the days which I expected to stay , so they were not able to reply to me . She did n't read my e - mail until when I called to her , and pleased to accept my request for an accomodatin in their home again . I cant say it well in English . such as learning phrasal verb , current English , Grammar etc . Well , what I can do with myself ? However , I agree with my teacher . . . What about our new English books ? I 'm starting a book called ' ' Laser B1 ' ' . Although my English level is very low , I would like to communicate with many people . Though there was also an unnatural scene , it was very interesting . My favorite school subjects are biology and mathematics . My favorite TV show now is My name is Earl . It was a good experience for me . We could divide business items . Good morning . First I watched Love Actually , of course it was the English version . Q10 : Who is the most interesting person in your family ? interesting in an unexpected , sudden situation . Anyway , that 's why I like him . In my future I 'm sophomore a at Kyouto Notredame university in Japan . There are some students who want to be a teacher , OL or technician . They are studying to acheive their dream . I thought about how can I could improve my English level during vacation . It is to chat with foreigners who can speak English ! ! But I also think that teachers and parents should give children diverse education so they can have great lives . I felt nervous , frustrating , heart 's throb . but when I was preparing the competitions I was nervous and I felt fresh when the competition was finished . and I have to do my math homework , and to study many subjects . I take it regularly , usually twice a year , in order to check my level of English . It is totally amazing because she was speaking with her own words at this speech . Anyway , I think everyone should see it once . It has made me a little confused . His work is so popular in the world that he has many fans . When I watched this , I thought this could be quite an innovation . At the same time , I thought of some problems and am still thinking of solutions for them . we were singing and playing and eating the buffet for about 5 hours . February 24 is the birthday of 25 years ! ! Keigo Higashino is a genius . His stories always amuse and surprise me . However , I still used it because I am not yet finished to write my journal entry . I have read a book a bit because I have traveled all day . I thought , I will be late . When I got to my office , the morning meeting had already started . I must admit that I didn ` t do anything throughout the holiday except Harry discovered he is a psychopath . How much syrup ? I do n't know how to express my opinion . Ah , I want check the grammar or sentences but I have no time , but I have to earn the money for a beer . She said that from that moment I had become hers and none other 's . There are no differences because it 's still Asia . confuse : Both of them told me different information about the nuclear plant , so I was confused . compete : 57 soccer teams will compete against each other this summer . In the morning , I see many Chinese college students reading This is a Korea 's traditional day . On this day , we celebrate our harvest and we show our respect to our ancestors by a special ceremony . On this day , we also face the worst traffic jams . For example , it usually takes 5 hours from Seoul to Busan by car , This is a cultural difference . so I 'm disappointed about this . There were so many people in a narrow room that I 'm slightly worried about the infection of swine flu now . We just walked around the bottom . ( ? ? ? ) And I think he is learning and coming to understand a lot of things . I will travel abroad . They strengthen our interpersonal relationships , self - confidence , and allow us to gain more knowledge and friends . Recently , There was a big earthquake in Japan . We appreciate very much . Unfortunately , even if I explain about the movie well , the reader ( I mean the friends of mine who will correct this . . ^ ^ ) will have difficulty understanding the story of the movie . I recommend this movie to all of you interested in traditional Korean culture . I got up at 12 : 00 pm and I was just a couch - potato all day . Maybe it 's because I really hate my future speciality and do n't want to be a programmer ( I 'm the one of that persons who go to university just to get diploma ) . We got acquainted with each other through the on line community named `` mixi `` , which is like `` Facebook `` in the U . Gakkai is Japan 's largest religion , based on Buddhism . She is allegedly a bit older than me and working for elementary school in Osaka . It was unfamiliar to me , as I was born and raised in Tokyo . A further reason why I want to do this is to get used to writing English essays without the hesitation of choosing the words and structures of my sentences . While my boss is away from the office I tried to use his machine to make a cup of coffee . So when he came back from abroad I can brew one for him . I tried to go to a Bikram Yoga class , but , regrettably , I did n't join it . I CANNOT WAIT ! ( typo ) The first , I live in a rented ( rented ) house . My price is more expensive than their budget , Pic3 : How to create GDP ? I had paellas of seafood and chicken . I suddenly changed direction intentionally , and then fortunately I managed to avoid the pickpocket . Anyway , Barcelona was great place with good sunshine . I 'm sorry for my English = ) I want to learn spanish because I may take spanish for my foreign classes , but I am afraid because I 've never learned spanish before . . . Because my climbing shoes stretched , I bought new shoes . They were warriors wondering around the magic world at least during the play . Our journey in the D & D world shall be updated in consistence with our actual progress . I 'm a Japanese woman . She is just 3 years old , so that she could not understand what the TDL is and almost all the activities . Then I came back home , went to au shop to fix my phone , because my cellphone has something wrong with the connecting . If it is translated literally into Japanese , it means `` anata wa shitteiru `` . I have a headache , but I do n't know the reason why . or , relief after finishing some work ? I 've read many books on how to study English efficiently , but I have n't focused as much on speaking English well . On the second day , we went to an island that is near the Kota Kinabaru we went by boat . Then we returned to the hotel and we had a nap . Then we relaxed and had a massage . I then asked the staff ` What do you recommend ? ' ' Yesterday I presented my graduate thesis . The economy of Philippines is developing but they have a crisis . 1 : Put the following five animals in order of preference Look at the explanatory note below . Today I went to see the hospital because of nasal inflammation . I had an allergy test with my blood last week . When I bought `` How to Speak English in Three Months `` , that envelope was still sealed . Nothing is finished and nothing has changed my English skill . My favorite book is `` TOEIC elderman 755 points clear ! `` # 2 to watch CSI Miami and I will write that story lines in my words . Anyway I have to stop buying English books , text books , etc . I learnt English long ago ( when I was still at school ) but since then unfortunately I have n't used English . I decided to start guitar , and I joined a music club at another college . My senior said `` I advise an early start on guitar and you should buy a guitar in which the price is between 70000en and 80000en `` Finally , I called my mother , she said `` Oh ! She instructed me to call her friend , who was a professional guitarist . He told me his favorite internet - shopping site where he bought his guitar . He said `` I think at first you should try to purchase a cheap one and if you think you want to play the guitar , you should buy more expensive one . `` Now , I wait for my new guitar . Will you listen to my music , if I learn to play guitar very well ? ( haha ) There is the flower shop called `` Flower Factory `` near my house . I bought cut flowers , a poinsettia plant , a lavender plant , a rosmarinus officinalis plant , and a flowerpot . Please correct me . B : If you are not talking about the IQ thing , I think I 'm smart enough to say `` I do n't know . `` honestly , if I am asked that , I do n't know about it . My husbund allows my son to take it . They are so yummy . Today , I found the sweet ' ' DOCE DE LEITE ' ' so yummy ! Should I go to see a doctor ? My favorite team is The Tokyo Giants . I 'm very excited and happy ! I was too happy to believe it . They made me a cake which tasted very delicious and the decorations were also pretty . It 's raining now . Recently , I 've researched how to study and improve my skill . Last weekend I returned home . Since my hometown was far away from Shenzhen , I came home by train . Although I have grammar knowledge , I still can not write any correct sentences . I registered for this service . I would like to just stay at home not go hang out with my friend but I have to go and vote for the prime minister . Why have practices like this not disappeared from Thailand ? Even now , there are still a lot of problems with elections . I thought I would remember the experience forever , because the training was so difficult for the girls . I met a couple of CPAs and colleagues who are studying hard for the CPA exams . it 's my dream xD ? and now I shall go to my summer house . Everyone has their troubles , a positive attitude must come first ! Potato chips It is difficult to use a mouse or keyboard while you are using your computer and eating potato chips , However , it can be hassle to wipe it every time . Oh and I forgot to say that the goal was magnificent ! I will start work as computer programmer starting next April . I am studying English and history . one man had killed nearly 100 people . Thank you for teaching me such a funny word . If I am not able to understand these slang , it might be difficult to communicate with native spekers . It is boring for me to only study grammar , essay , grammar , essay everyday . Of course , I know it is important to learn these things . I went to Beijing in China for four days in this week . maybe . . . He is a British writer . Now I happened to find an ad on the Yahoo page which says that you can take a trip to an Asian country ( you do n't know whereabouts to go ) only by paying from 18000 yen to 23000 yen . the traditional opinion that boy is more precious than girl has changed Once , he revolutionized Japanese telecommunication industry where NTT had monopolized for a long time . He faces the opposition in his own party after he survived the no - confidence motion from the other parties a few weeks ago . It 's almost spring . Now , we are filled with concerns about the aftershocks which still continue and about radiation . I think something will change in Japan when spring is coming . I asked the employee at the main desk , and he came to check on the printer . He fixed the connection in the back of the comupter , and it eventually worked . After the face to face interview , I was asked to finish a written test within half an hour . The younger sister lies in the morning , and speaks the truth in the afternoon . ( Could I use this sentence to replace my last sentence ? When I went home , I felt my body ache and my body broken machine . Yesterday , I stayed at home the whole day , I watched a film < The Devil wears Prada > . by the way my classmates introduced me to that film years ago , , I 'm always watching it . It has been a very long time since I saw snow . My English class In this university class , we study it by reading American comics . The teacher in this class is really loves American comics . So , every class , he recommends a lot of comics . She describes the mental state of women in a variety of situations in her songs . They cry from the loss of love and are delighted with new love . My favorite tune by Maria Takeuchi is `` Sutekina Holiday ( The Marvelous Holiday ) . This is a Christmas song . this season becomes meaningful . In Japan , we differentiate between bowel trouble and stomach aches clearly . Sometimes we feel some pains in the stomach caused by stresses and pressures like mental factors , but bowel troubles are caused by some foods I have stayed at home all day long . The menu is fried oyster , corn cream soup , salad , and rice . So I decided to learn English . I 'd like to tell Japanese how foreigner are interested in Japanese . But many areas of Japan were hit by heavy snow and caused havoc . I juse finished to make a powerpoint for my class on Saturday . my internet connection was lost now and wanted / asked me to close ( the window ) so oh my goodness I was just writing my entry a few minutes ago but I will not blaim it because I am happy today and my heart is happy too . By watching NHK , I can watch all kinds of wonderful programs they have to offer . Sometimes I concentrate on watching TV , writing down something that I 've never heard or learning more useful expressions than I 've known . My English is terrible . But I try and try . . . . then , my journal is written up . I have to eat less . I also listen to English in a similar way and I ca n't keep up with the conversation when native speakers talk . Then the spectators were yelling at him and criticizing him severely as soon as he ended his remarks . After that , the judge convicted him of the crime , but George did n't succumb to the judgment and requested an appeal . This morning , I said something wrong , and my colleague just used it to make fun of me . adult ceremony But there are still some problems with them , especially when taking metal ones ontrains or airplanes , because some security personnelwill take it as a potential threat and confiscate them . My teeth do n't hurt now and I 'm really glad about this . I do n't have enough money to go shopping and it sucks . But I did n't have any idea until now . . ! ! Day 90 : I see that everyone around me seems to be more clever and more well - rounded than me . Everyone like themselves , living so naturally . Calaf declares his love for the princess , but she asks him to leave . He refuses to and confesses his name . However I ca n't kill them because it 's disgusting so I always try to shoo them by using a notebook ( by waving the notebook at the mosquito ) . Also my friend got bitten by poisonous spider and she has a fever from its venom , which is worse than mine . I ca n't keep waking with them for more than 10 minutes . This time I bought two mineral waters in 2 liter bottles . The teacher asked us , ' If your friend is wearing a new suit , what do you say in English ? ' . I want to know what is your recommendation on the places to go to , the food , the amusement and so on . . . Although it 's winter vacation , it 's still too lazy , huh ? s second part of school means that after summer vacation , starting new semester . If we want to take lectures from them or have discussions with them , obviously we have only two choices : waiting for them to come to our country or going abroad to meet them . Hence , it is better to go abroad and meet them instead of waiting . Thus , for students , especially those who want to become researchers , entering a famous foreign university is a good option . In fact , I met a foreigner who had better understanding than me about Japanese culture . In this grobal era , it is very important to understand our own country because it will help us to understand other cultures and , thus , help us broaden our horizons . I heard from my friend that there are only a few translators in Japan . On our way , some bicylcles appeared and caught me by surprise . The guard tried to stop them as he told me to cross the road . Well , we ate BBQ while talking about something interesting which happened in the junior years . If you had misunderstood something , I would apologize to you . Actually , the KAIST graduate school announced the final result on ( September ? ) 17th , and I got accepted into it . Japan has been plagued by this disaster still My sibling are growing , . He already has a beautiful wife and lovely daughter . Next I don ` t know why a native can pronounce this well . But checking their profiles , I found out most players were taller than 180 cm ! ! ! Polite or impolite The posters that appeal to people not to hoard these goods are widespread on the Internet , especially on Twitter . My efforts in writing and reading Japanese are a bit pathetic as of now , but even so , nobody seemed to actually mind . I want to improve my English and talk with many foreign friends . Shrimp and squid Honestly I dont know how much like her and also I will be going to US in August to next march ( for 7 months ) . I need to say good bye as soon as possible . I 'm going to England and Italy from tomorrow to 31th . She advised me `` Do n't hurry . It may be found when you are thirty , fourty , perhaps now . Of course each person had a room . 2 were New Zealanders , 2 were Japanese , one was French , and the last one was Indonesian . 2 girls and 4 guys . We have 2 professional basketball leagues in Japan . Sendai has 3 profesional sports teams . I believe that sports make us energetic Some of them were put on ventilators . I do n't actually have any special hobby thing that I do regularly . Geez , why did n't I know that before ? ! But I will go there tomorrow , even if my ankle still hurts . : P I miss my family . I have a nice family ; there 's my father , my mother , my little brother and I . Many fathers and mothers come to school and prepare food for their children , but my father and my mother did n't show up . I want to have a holiday . Though I decided to do so last year 's end , You know what happened in Japan . The good thing is that all the entries usually have not only corrections , but comments too . And do you know why we call it ' wisdom ' in English ? I was recommended an English dictionary from my friend . But I may be able to learn many words from this dictionary . He appeared in a 600m relay race . And I also appeared in a ball - toss game . Luckily , I listened to someone 's speech in the evening and I finally got motivated . Your stones ca n't be taken , unless they are surrounded completely . Before , I had n't decided what career I would study . I consider myself a good person who loves enjoying life and spending time in nature . While it 's always hard to deal with my studies and receive comments from a professor , to be told `` the amount of your effort is absolutely short `` is the worst part . It 's horrible to acknowledge what I can not do , in spite of my strong desire to accomplish it . But a year ago , I became interested in American movies and dramas . I think when we learn a new language we need something interesting . I have a cat , fishes and chickens ! I thought it was wonderful . When I was a kid , I believed that rabbits lived in the moon . Then we started to introduce ourselves . I will eat less than usual at dinner , without carbs . And so , I go to the small kitchen in the office and drink coffee . I cooked Korean barbecue , Kimchi - tuna stir fry , Laver omelette , and How do you learn foreign languages ? I 'm spending most of my time studying foreign languages like English and Japanese . I 'm studying 2 English vocaburary books and using a iPod application that can help me build my vocabulary . The key to building my vocaburary is ' repeat ' I think . Do you already know about this ? If you 're learning Korean , I also recommend a online dictionary . Which path to choose is very important , so it 's a very difficult choice for me . Field Survey I tried my best to write this a friend supported me . Chrysanthemum is typically used , but flowers such as roses or carnations should be avoided . Second , write it in English . Fortunatly , I will have a wonderful holiday . About 2 days ago , I bought a magazine and a topic in it said many people have a problem called ' email nervousity ' . I check emails everyday and handling these emails will occupy at least 2 hours of my working day . there were so many old people sitting around the stage where an old man was singing with great passion . the average age of the people was 50 , of course , except me . It was also interesting to see the old fashion in a club , except that the old people did n't like to sit on the barstools . ^ ^ In Japan , the high school baseball championships is especially popular , as much as professional baseball . I think the American movies are so dynamic . It was pretty hard for me to read , since I had n't even read it 's translation . Today , I visited my customers because I understand the orientation of improving our new products . My experience in Australia Today , I heard that he carried some heavy things from a track to places where he had to go . I have been very busy writing a paper in order to graduate from university . It 's very popular in Japan . This book teaches you lots of Japanese slang . Beyond that , this book taught me a lot of English slang . However , I have to be careful in using slang because it might make some people uncomfortable . Now I am studying English and German . I slipped down a small bridge from the top to the ground . She had already been in Canada and she recommended me to stay at the same home . I hope she got it easily . Japanese traditional food is healthy . Most non - Japanese peple people hate Natto , which is fermented soya ben bean . When a man marries his wife and she becomes pregnant , he thinks about pregnancy very often . The charat ( character ) on the blackboard is so small ! ! I want you to write down bigger charat ( characters ) ! ! `` I was very sur ( surprised ) because Korea has a culture about respect & great manners to adults ( or oldaged people ) and that action was very rude to the teacher . And teacher erased her charater and ( rewrote ) the same content . Is a Protestant more conservative ? I 'd appreciate it if you check my English or send me a message . We enjoyed Teppanyaki ( sliced meat and vegetables grilled on a hot plate at the table ) and a bottle of Wine . We enjoyed Sake and raw fish . I could work much more comfortably if I replaced the memory boards with ones of more capacity . I 'm not sure working comfortably is worth the cost . Should historic buildings be preserved or be replaced with modern buildings ? With the increasingly rapid development of the economy , it is definitely undeniable that there exist tremendous changes in the world that I almost do n't recognize in comparison with those several years ago . Over the past years , the government replaced old Beijing siheyuan with new buildings in order to develop more quickly . When making payments for rent , utility and insurance , we register our bank account information in advance and have the amounts paid automatically before the due dates . post office 's letter delivery , I always become anxious about whether my checks are properly distributed . I agree with the decision of the court . I am in favor of building the new library . I maintain ( contend ) that owning the job helps managing student 's time I prefer eating at a restaurant than to cooking at home I agree that tests encourage students to learn . . I do n't think it is right to build new parking lots on the campus . But other people correcting the entry in Japanese is very quick . Wimbeldon will begin before long . It is mysterious thing . We rode a dangerous plane . We could catch a later flight because there was another connecting flight 4 hours later . This is my first time writing on here . I can not speak English . My grandmother is 70 years old this year , but very energetic . so my son caught a cold . . . What a pity ! : ( `` My room is very cold in the evening . I recommend a gas stove `` But sometimes I hear only the sound of the words , and can not understand the meanings of the sentences . When I hear some long conversations or lectures , I think it is necessary to be able to comprehend the meanings of the sentences accurately . Should I read and learn , then listen to the sentences or phrases repeatedly ? A goddess in a toilet . A very , very beautiful goddess stays in a toilet . That 's why if you clean a toilet everyday , you can become a beautiful lady like the goddess . I set an ink converter on it , filled with my favourite ink , and wrote some letters . Every time , I get really motivated to learn new skills , knowledge , and experiences . And FINALLY Thank God ! dunno why but felt like I 've been missing all the good food in my Life . All things are terrible . Everything becomes a big trouble . The most basic rock band has three musicians : a guitarist , a bassist and a drummer . If you want to sound like a modern rock band , such as Kings of Leon , The Killers , Wolfmother , Strokes and so on , you will need a synthesizer or an installed program in your computer to reproduce 24 - bit sounds in real time . Part 1 Most useful tip : Listen to the music you want to play and feel it as if you were playing those songs with your friends in a big scenario . It 's a city which seemed very similar to Venice . . . Why ? If I have any opportunities to travel there again , I will not think twice . I am a doctor specializing in anesthesiology . Separating the tasks helps finish the tasks more quickly . Meanwhile , I saw a girl who I did n't know at all beside me . I MUST start studying right now instead of writing this well , I think I cant waste more time writing to you ( whoever you are ) , because the consequences will be disastrous . I think that we could not be forever if we 've been together . English 's `` what a ~ is like `` very , really , and so . `` So I 'm searching on the Internet for a long time . Can you help me ? ( sorry , my English is poor . ) The ground was crowded with a sea of people even though police blockaded a length of road for pedestrians . Soon after the problem was solved . My exchange language partner who is from Malaysia reminds me of this . I am reading a novel called / entitled `` Eleven Minuites `` by Paulo Coelho . Although it feels a bit strange , I 'm very interested by it . It 's been approximately 4 years since I formally started studying English , but I almost never have the chance to be corrected when I practice , either because my friends are too kind to me or because I do n't usually write letters or any documents in English or because I am not understood . Since I 've been learning from teachers who taught both American and British English , my writing might be a strange mixture of them . I want to be consistent with BrE since I 've been learning under a British - like system for the last two years , but well , that 's too much to say in a first entry . It 's really difficult , I hate math very much . During those day I make a good friend in Lang - 8 , she help me improve my speaking , listening or anything . I want to understand science articles and documentary TV programs like from the Discovery channel or National geographic channel . On the program , French scientists excavated a lot of evidence from the Vatican . Since then , they aim to be famous all over the world and charted on Billboard 200 again . When speaking , I always speak with the very heavy accent of my hometown . I still remember the first day when I came to my university last year . Despite the problems , I am proud of the fact that I have mastered two languages , in addition to `` putonghua `` . My English is not very good . Yesterday , my friend kindly talked to me about selling food abroad . She said she will ask her friend about the details because his company sells things abroad too . It seems that her friend does n't have answers for us either , so she found it on the internet herself and sent it to me through hotmail . because she always makes me laugh . It seemed impossible to me , but it really happened ! Yeah , I was very sleepy and tired , and the girls were waiting for me in the street . I ca n't fit them , and so they think none of the boots fit me , because I am short and fat . Fuckin ' hurt me . The restaurant is nice ! Unfortunately , I 'm still in an exam term . I want to be free from these fuckin ' exams . Now I 'm really wondering about wheather it is too late for a 29 year old woman to go to a university in a foreign country to study English on a scholarship or not , and quitting work to do it . But I have something to do such as doing the laundry , grocery shopping , making some framework for an exam , learning English , editing a movie , along with other things . Actually , I 'm surfing to find a suitable site for my daughter 's English study . I 'll introduce this site to my daughter tomorrow . In my opinion , there are not many tragedies greater than Tohoku . I realised that I always have conversations with my wife in English comfortably . These kinds of conversations are very comfortable for English learners . But I think if we really want to improve our language skills rapidly , we should do everything ourselves on foreign soil , and sometimes we should be nervous . This is extremely hard without preparations . Through one of my colleagues I just found out aboutthis web `` www . My english comunication skills are very low . Father and mother are teachers . We have cultural festival this month . USA and Japan will go bankrupt He was quoted as saying , `` I came here to kill people . I 'm from Fukuoka , Japan . It seem busy in Bangkok . Hello , friends . In Bangkok it seems busy at the moment . Some of the people don ' t like the priminister . They protest at the important road near ( ? ) victory monument . They want the new priminister to resign from the goverment . It seems busy in Bangkok and going soon to the important city called Pataya because there they will have a meeting and the people from other countries will go there . My favourite film maker is Andrei Tarcovski . I even do n't know what I can do for you . I 'm looking for something good to celebrate my friend 's daughter 's birth . The makers may think most of the parents will willingly pay any price for their children without hesitation . I believe perseverance may lead to victory . Do they eat rice , _ soup , _ vegetables , _ fruit , _ bread , _ noodles _ , milk , _ sandwiches , _ etc ? Hiroshima ( anniversary of the end of WWII ) However , since 65 years have passed , many people like me do n't know the realities of the devastation of the atomic bombing . The fact that he / she had lost his / her life in a moment by an atomic bomb made a black human - shaped spot as his / her identifiable mark of living . Many people lost their lives in many ways in many countries ; let me mourn the people who died in WWII . I think that putting the Internet to practical use is difficult . This is because there is much useful information in the Internet , but all of it is not always true . So I want to select the information carefully and search for the information at various information sources when I use the information on the Internet . I want to become one of the greatest ministers in the world I attached the picture taken from the window in my house . So I was doing a listening test by myself at class time . Then , my father called me loudly because he ca n't speak English . The Japan government urges people within a 20km radius from the power plant to evacuate . But foreign governments urge people within a radius of 80km from the power plant to evacuate . I am from China and I am studying in US now . I want to improve my English effectively and my roommate Keegan who is a nice American girl recommended this website to me . That 's why I know this place and registered . Not only do I itch to learn English and Japanese here , but also I long to make friends who are from different countries . The homework makes me think about the important incidents that have happened in the world . At the same time , I wonder if everyone has something new every day . Maybe I can find good friends here from all over the world . Oh , anyway it 's snowing and windy outside . But after I realized that I coud n't revise it anymore . I think this is a very good way , because it not only the way to study more languages , but also we couldknow foreign culture . and language . by this way , we can have more opportunity to practice our language ability I think . Happy Christmas ( Celine Dion made by John Lennon ) If you prefer a certain Catholic Bible version , can you please tell me which one it is ? We can share each other 's culture and languages . Recently I 'm feeling that our marital relationship is n't going well so I decided to ask you tonight . I hope she is feeling only physical fatigue . So I went there alone and saw a lot of foreigners there . The ones that came from England , Canada and America I tried to listen to when they talked together . But I am not fluent in English yet so I understand some sentences but I 'd really like to understand everything they say . Both of them live in Bangkok and are training for their job at their childrens ' house and the children get abondoned with their parents . I 'll do again what I have done before , but this time I wo n't lose my original intention and I 'll be more deligent . Just 1 more exam left ! yippee ! As for me , however , I had written a paper for the purpose of publishing a journal . l was really suprised and glad at her success ! ! Today , Iwatched a movie called ( or titled ) `` xinyue `` . It is the part two of `` Twilight `` . From my opinion , I supports the vampire because he is the first one for that girl and he did n't make a mistake ( or do anything wrong ) . Hello everybody , this is my first entry on lang 8 . Hello Dears . It 's very lovely and he acts like a spoiled child . There is a Nepalese restaurant in my neighborhood . Unfortunately , there seemed many delicious food delivered afterwards . I wondered why he thought that because I have always done my homework , however , as time goes by I will prove to my teacher that Majid can achieve a high score in the next level exam . Because I am exposed easily strangers and perhaps became criminals . By the way , I 'm reading The Catcher in the Rye , which is used in American high school textbooks . I saw tanks , helicopters , and missiles . I 'm going to write it , please correct it and if you know about Beijing , please tell me a little about it . I want to know about other Asian country 's traditional way of life , and I also want them to understand Japanese culture . But , I think the best way of understanding each other is to meet in person and talk about everyday life . After all , I want to tell people ( that ) we have to work hard to understand each other . I want to tell them about the Japanese school system , because there are many good things in it . Hatsumode is a Japanese custom of visiting the shrine on New Year 's Day . I finished work and returned to the accommodation in which I am staying . I washed the clothes . Today I first contacted a Skype user on Skype . The latter have taken away the customers from department stores , which are traditionally giant in the fashion retail industry . The main reason is that fashion buildings are able to offer more reasonable products . In the deflationed Japanese economy , consumers put their priority on the price rather than on the level of service . However , I 'm not that good at studying either . Currently , my town is very cold . I will make myself a lunch in a lunchbox , because I do n't want to go outside for lunch . I was disappointed to learn that the Nintendo 3ds will be released on February 26th , 2011 . Japanese horror movie . Summer is a horror season in Japan . Japanese horror movie is very scary and interesting . What is the impression of foreign countries about the Japanese horror movie ? $ 0 . 00 USD - $ 3000 . 00 USD , the price per transaction Suddenly , I thought I wanna travel through Korea with foreigner friend who want to go on a trip through Korea . and may be able to feel a refreshing feeling ! ! ! Recently , I could n't write a diary , because I was working . I 'm sorry for writing a dreary ( ? ) diary . anything ( but it must be less than 800 calories ) After the massive earthquake in Japan , some people hope we can forecast earthquakes and so they write on a web site about earthquake precursors such as clouds , sulfurous smells , abnormal changes in well water , the sun , or the moon . I ate a lotus root which was fried with soy sauce and was sprinkled with some sesame and red pepper . For example , shark ` s heart ( sliced low ) . I feel really like the girl in this book becasue inside , she is really clever . She liked to read books since she was young . This book is the first Eglish book for me . It is raining in Taipei . she was 1 year old and she was also crying all day My lunch normally costs around 500 yen . I like the food of Izakaya restaurant during lunch . What do you think about music ? On sep 13th , he made a call to his mother pretending that he was abducted by a kidnapper . He confessed that he had stolen / imbezzled his company 's get - together expenses and he was afraid that the company would find out I have no idea how much he spent of his company 's get - together expense . The TV news shows the royal family turning up to where ? three times in the morning and shook hands with the people gathing in front of the imperial palace . I was physically and mentally exhausted but I became aware of something . I want to become better tomorrow . 11 / 12 / 10 - Never Lose Your Initial Enthusiasm So when you think about what to say , the things you wanna say can come out instantaneously . He said that there 's a rumor that radioactive substances may be carried by the wind and the Philippines might be also be contaminated by rain due to the explosions of the Fukushima nuclear plant . Now that does not make sense at all for me . I so hated cleaning , especially washing floors . And I like to rid of useless things . Because you can always fill this space with something useful or with stuff you really like , later . I must will have to find myself very embarrassing one day , than there will be no stuff to through away . But from another side , the more time I spend cleaning , organizing my stuff and decluttering , the more areas I find to do it with . Sometimes my friends are joking that someday I 'll turn to Monica Geller . ) ) ( And I actually improved my English a lot this way . ) So I decided , during my decluttering week not only to get rid of stuff , but to clean my information space , too . Now I can easily find the book I need and not search through all the folders on my computer . Three years ago I visited Rio de Janeiro , Brazil together with my friend and her mother . They opened EVERYTHING : bags of souvenirs , pouches of cosmetics . . . The Brazilian officer opened her bag and found a pack of umeboshi and was asking her what it was . The officer opened the package . We could n't look ( past tense ) around enough because we had entered there 30mins before closing time . I could n't remember which words suit the sentences , even if , I had already studied them . In addition , both companies have been known for being conservative as big companies usually are . The day she borned was born was just like yesterday . Now she has become a talkative little girl and has her own ideas . At first I was sad , because it makes me feel that she does n't think I am her friend because she always complain that she really want to meet the other friends . This is an important exercise for me . I 'm looking forward to seeing `` Pirates Of The Caribbean 4 `` . I registered on this site a few minutes ago . Recently I tried playing the guitar for the first time of my whole life . I go to guitar school and have a happy time with my teacher . But I want to play for someone , sometime . I want to enjoy writing my diary and getting to know many people around the world . Travis is a band from Scotland . Their sound and lyrics are warm and comfortable . One of my goals is to obtain better english abilities so I can communicate with foreigners . Another goal is to have many friends all over the world . If you understand my goals , please teach me correct english . Everybody is good at English and they spoke so quickly that I could n't understand . I did n't understand what the teacher was talking about and the worksheets he gave us had so many words I did n't know . I am an exchange student and they may think I 'm good at English . I like rain however today was horibble because there was snow on the road . The rain melted it . I always bike to work . I 'm preparing it , that is to say I 'm doing general house cleaning . I finally bought the magazine `` ELLE girl `` ! We wish those victims can get through this disaster . However , I had to go to a driver 's licensecenter , because my license had almost expired . Please correct my English and tell me your opinion ! They overcome their weaknesses through religion . He decided to build a laxurious hotel for Indians , but I think it is very expensive . I made some chocolate . Today is a holiday known as ' Labour Thanksgiving Day ' in Japan . We respect labour , celebrate production , and thank each other . One of the his works were offered to Yakushi - ji temple in Nara prefecture , Japan . Cause I finished my essay just now . So I cancled my plan , and instead played guitar . . . My favorite season is the winter because I enjoy snowboarding . I 'm looking forward to snowboarding . I went to Cambridge in August three years ago to join a summer school at Cambridge University . Cambridge University consists of lots of colleges . I decided to have a personal trainer at home . I bought a webcam from a Hong Kong web shop famous for cheap prices . They sent me the webcam without any software nor a manual . I do n't know how to prove that the webcam is actually 38 thousand pixels Does anyone know how I can check my webcam 's pixels ? Then I 'll play tennis with my friends , study English , and apply myself to my research to graduate from my university . He lend me his spare folding umbrella . I study law . My hobby is watching movies . Second , a single mother in a hostel looking for job . I have to tell myself that everything will be okay because this is all temporary . At today 's meeting , the manager asked us to make a summary about this month , and at that moment I realized that I have been here for more than one month . Now I am thinking about how to write my summary , because my colleagues want me to write it . But I am what I am thinking more is about whether to go on with this job or not , and there is another important thing . . . I want to do something using English and I want to get experience with business , but what I am doing now is not very concerned with English . My favourite festival is Spring Festival . The students study extremely hard with a view to succeeding here in Taiwan . Many Japanse English teachers use college entrance examinations as an excuse for them to stick to the traditional method . I read sometimes on the bus , but it is not always a good experience . It moves a lot , I feel dizzy and I have to stop reading when I have to get off , not when I want to . I have the most beautiful book in my hands and I 've been waiting for the right time to read it . My boyfriend gave it to me in October . It is February now , and I have only read ten pages . I 'm studying English every day , I 've been reading my last journals , and I must to say that they 're very badly written xD I was so annoyed by the work I did last semester . I was so sleepy that I drank toomuch , then I felt sick . When we use the definite article `` the `` before a date , The Dark Knight is directed by Christopher Nolan . I think he is a great film director . I have watched Following , Memento , Insomnia and The Prestige , which were also directed by him , and these movies are amazing , ( I hate that ! ! ) that 's why I do n't like cooking anymore . . . . ; ( Friends are so funny ! ! Chiba has Disneyland and is near Tokyo , so it is a convenient place to live . Of course , almost all women in Japan including my wife hates such plans . Because when I was in the first year of elementary school , my classmate put a frog in my clothes . She was crying hard . I did n't want to take the bus while it was raining and I did n't have any bus tickets yet . ( ought not , are unable , must n't ) my name is Monika and I would like to practice my English , because I 'm thinking about studying law in Reykjavik ( Iceland ) through the Erasmus program . I went to Kouchi in Japan . I traveled to Shanghai last September and visited a big book store . The newspaper says , according to Ladbrokes , the U . Hi , I 'm Sofia Eliet . I 'm learning the Korean language because I want to go to Korea in 2 years , but first I have to go to E . a mock cavalry battle , tug of war and great jump rope . I participated in an obstacle competition . When I arrived at the hospital , It was really hard to find him because hospital was sooooo big ! ! ! Actually I still ca n't believe he has a really serious disease . But I learned it very happily . Three days from tomorrow is one of biggest holidays in Korea . For a while , I think when I went to my company this year is special . ( ? ) I went to the German school to join in a party . Any differences ? Good morning ! I think Japan has a huge comic and animation industry . People in some countries have to work in hard working environments . Your country have been capitalist for a long time , has n't it ? We have long summer vacation , from the last end of this month to until September . My son brings his lunch to his kindergarten everyday . I think Japan is not only an abundant culture country Recently I 've been studying hard , because I will take an entrance examination to a university this year . So I will write this diary as much as possible to raise my English skill . ( many entries ) And my birthday is coming so I want to do something amazing on my BD : crazy stuff like bungie jumping , paddling a kayak in a wide river , climbing a cliff , skydiving and so on . New York or Los Angeles Is anyone here from New York City or Los Angeles I met my friend during my college days after a long time today . I ate an eel and he ate curry and rice at lunch . We talked about the research that we usually address to each other over lunch . After lunch , we went to a karaoke lounge . flabergastted - > I was flabbergasted because I noticed a big cockroach in my room yesterday In the aftenoon , I met my friend after the exhibition . Hi . THIS IS MY FIRST ENTRY IN THE WEB . I am a student of English . In Spain we have a bad system of learning idioms , unlike like other countries of the European union . In those countries you can have a normal conversation with 3 or 4 idioms , but in Spain you ca n't talk very well in english and you only can say the numbers 1 - 10 in French . . . hahaha I should learn the most english as possible . We went fishing and we got three ! ! Staying abroad is a very good experience ! ! ! I worked overtime today . Oh , the shoes I ordered on the Internet have been delivered ! I should take them out of the box . Nevertheless , the Sichuan style bean curd I ate was very good . I do n't need good pronunciation , I just wanna make friends ! ! As a new staff , I respect my colleagues , I try to do more things than the normal , Last night I went to Xinshe Township , a town in the mountains of Taichung . After dinner a couple came over to drink beer and talk with my husband 's younger brother . The couple 's daughter is a very pretty girl . You know when you confuse everything that really matters to you . Even if you are interested in reading it 's sometimes a little bit tough to find good , interesting books For example , My entries has not been corrected , I wanna put it in the place of latest articles for letting everyone know that and correct for me ? You might gather it for a period of time , then you will see how it brightens our life . To me , flamenco is a living attitude . ( < - - - weird sentence I know ) We had to do the weirdest things , like making up a 5 - minute play and performing it for about 200 people ! I want to grasp something but it does n't work . I work hard now but where 's my future ? Because of it being too hot , I did n't sleep well last night . I will have no classes tomorrow . we thought this pain was suffered from menstrual pain . We 've not been learning Japanese enough to know these phrases , that 's why we need help . . . But of course , we would tell her we had help , cause she knows we do n't know japanesewell : ) For that , I deceided to take the new year challenge of Steve Kauffman at Lingq and aim for 500 hours this years of listening of Russian audio materials . I especiallydo / check / correct those entries which have n't been corrected . With worries , I was away from school and tried to have a job concerning NGO . She said to me that why do you want to study this , why did you come to me without any fundemental information and this decision is the most important decision to me for my life ever . About the outdoor lesson , I 've probably learned how the factory works . Is love so important ? In the course , the professor asked us one question : `` What may you do for love ? `` It means that love is not the main part in a relationship , being concerned with some is . Do n't you think that it 's a good idea to celebrate special days in this way ? Do n't be fooled by the old - school beginning and non - color video the director orchestrated . My youngest sister You can produce ideas on your own ( or : You can produce your own ideas . Today the Japanese soccer team competed in the first game of the World Cup . I forgot , because I was listening to the radio at that time . I love Nakazawa , but the Japanese team is a very weak team . The beginning I 'm Mefi and I just registered myself on here . There are still some earthquakes now . I 'm not good at speaking and listening English so I hope I can meet someone who can speak japanese a little . For responsibility ( ? ) for people . Veins ( ? ) still ( anyway ) are buzzing . Now I study English at college and by myself at home . But I get the message : Correction boxes are open , please close them . Yesterday , it was a fine day . `` Most mothers with a baby who was as old as Rei - chan were accompanied by their husbands . `` I enjoyed this trip . My boyfriend made me breakfast this morning . I 'm trying to learn to speak English which is a third language to me , even I understand it easily but it 's hard to write or speak in English , I have a lot to improve on , and I want some ideas on how to do it , . I ( started ) to study English yesterday . Someday , I want to ( speak ) English like a native . I bought my cellphone that day , so I could exchange my number with them , and the number of friends on myFacebook increased so much . It is really huge , according to the weather forecast . To be a fashion buyer has been my dream ever since graduated from fashion design school . So it is cool . I had dinner with my high school friend tonight . My friend called me and told me all that she knew . All the people were afraid . Thanks , bye ! ! It has been continued for three months . I got through the worst of the conference presentations . I have always gone to the tutor center , and I got a lot of help from there . I was impressed to learn it was a true story ( and what a story it was ! ) . Because I live in the Philippines and my sister lives in Australia . I 'm very tired . This verse is excellent , I follow this , but this does not mean that the other people will be the same way . I like a manga called `` ma h ga `` In Japanese . I also like `` o ta ku `` . hehe It is my secret I seldom tell anyone else besides friends . I would be kind and gracious to anyone who wants to be friends with me . Also it was exciting for me to play with my niece ! I know Japan does not like this situation because they depend too much on export ( business ) . On the other hand , some people appreciate the weak dollar and strong yen . probably appreciate the weak dollar and strong yen if they do business between their countries . We international students are not allowed to work legally outside of campus . As you may know , the G8 summit is taking place in Japan now , and the exchange market depends on it more or less . I found an interesting news item . However , it can not be helped in a sense , because Japanese people have no custom of speaking English in their daily lives and the language system of Japanese is too different from that of English . In fact , there are a lot of international students around me , and I found many interesting differences among them such as taste or way of approaching people : ) `` You do n't need 300 million tweets tell you that `` ( Incidentally ? ) Accidently , we held a party with my primary school classmates , It was better than I expected . Incidentally , I would like to have language learning abilities ! I thought `` I need to learn English because I want to travel around I want to use my freetime to study English and read books about business And I started learning Japanese in the university . The male dancer was very short , but he had very good basic steps and musicality ! ! ! ! I will go shopping , play video games , and go to dance class . I think English grammar is difficult . I am here to practice some languages and to make new friends from all ofthe countries ! and I made chocolate . But I do not feel sleepy compared to yesterday . I 'll tell you about yesterday ' s lunch . first , it did n't separate the non - smoking area from the smoking area . I really hate smoking [ with a passion ] . In fact , my teeth are not so good becasue I didi n't know how to brush my teeth when I was child . It was fun for me and maybe them too . . . So I said if you can really clean your teeth you wo n't have bad teeth like mine . . . . I wanted one with a large vocabulary , phrases , an English - English dictionary function , and various English functions . I do n't need any functions unrelated to English . I 've never heard that the maker has produced electronic dictionaries , but it has produced good quality dictionaries and has a good reputation for it , according to the staff . There are many interesting places though , really crowded , obviously dirty , and sometimes I feel strong stressed . My cowokers all quit their job because of depressing spirits . I 'm MUCH healthier than other people . Could I frighten them by trying to get acquainted on the street ? I was so excited to have a chance to study Japanese in my own city but now I 'm a bit disappointed . At the entrance , many people were waiting in line to pay . but it is also very stressful . Now I can study with concentration . I need to enjoy living in Australia because I do n't have time . In this afternoon , I 'll leave from here , which is Osaka , to Ibakaki for work . I had to line in a long long queue . I am studying English now . I want to communicate with foreigners . However , my daughter bought it to me , it 's her love . My husband sent flowers to my office , I felt happy . I dislike rainy days because of getting wet with rain and can not keep my attention fixed . please give me some advice . I am a happy girl and I like to make friends from everywhere . ~ . ~ I think I have enough time to learn English & French . I make some friends from all over the world . I did not prepare very well , now I am a little bit anxious about it . The most difficult part is politics , I do not like it because it is so boring . Everyday I have to read English and German . I wish I had more time so that I can achieve a high score . 3 The Business Japanese Proficiency Test ( BJT ) An Israeli friend whom I met in India when I was traveling recommended this movie It was a release date . It gives various services containing some online dictionaries . And those days when it hit , were as if god was angry . . . Japan should positively increase heat generated electricity . Trains are absolutely imperative in Tokyo . So some people were stacked in the station , just waiting for the restoration of the train . A bad start for today , huh ? In Taiwan , people are shy , and introverted , so they need singers and fireworks with them to celebrate the new year . On the other hand , in Vancouver , they celebrate without fireworks and singers ; they always go to clubs and pubs to celebrate . Today 's weather forecast was rainy . I am planning to go there soon . They say that an another huge earthquake , which might be as big as yesterday 's or even bigger , will be coming in the next week . I think I have to read the book carefully . A freind of mine was surprised my unexpected gift . I hate Natto ( it is Japanese food ) . I am really waiting . . . . . Congratulations ! ! Learning Deutsch ( or German ) is so difficult . Can anyone help me ? Vielen Dank ! I want to pass an exam of level 4 . please give me help ~ ~ In our schedule , we had to give a speech and take a small test . SO it is very lucky ! I will enjoy today . I did n't eat much of my favorites because I was afraid of getting a stomachache as I did yesterday . according to the public report , electrical tools are getting more popularity in daily life . Now most people use electrical lamp instead of candles , digital camera instead of foolproof camera and computer printing instead of hand writing , As the years past by , though some electronics have become the most important part of our life , we can not imagine what our life would be if there is no electrical , so people call the new century as digital age . In the digital age , maybe someone can not realize it clearly , but without the computer , without the TV , without the phone , what would our life be ? we have gotten used to the convenient life by electrical tool , we use the computer to search for information , because books are to heavy to find a little information , we use the TV to watch all kinds of program , because we can not travel around the world , we use the phone to get touch with friends and parents , because we are far away from them . It was a little funny because we were riding on a really strange road because my boyfriend did n't want to go on motorway because it is dangerous . But sometimes the road was very uncomfortable . CONGRATULATIONS ~ maternity leave The icy and slippery roads were dangerous . Someone said `` a teacher has authority because the teacher can educate not only school subjects but also the ways of life . `` I still have ( a ) headache even if I took medicine . But how come the Starbucks stores I go to always have many customers ? I bought a Starbucks grande coffee and made coffee at home too . Actually it feels good . One of my friends joined a photography club . . The actor who played George Havey , Stanly Tuccci was very good . I respect her behaviour . In honour of her greatness , I 'd like to share her most famous song `` True Colors `` with you ! Generally speaking , old people have weak backs . just they are doing the best for their own purpose . I know I need to be confident and patient when learning other language . I am usually cheerful after sleeping . Anyway tomorrow is Friday . I 'm usually not into soccer . I was there from the Belarus Republic in my Hetalia costume . I love her so much , she is such an abnormal girl = D Various holidays are lined up . In Korea , there are 24 hour Fitness Centres . I went to cram school this morning , and eight hours a day exhausts me , but I have to finish economics and statistics courses during my summer vacation . We have to study English very well > Who can help me ? If you can , please add me as a friend ! I have to do reading assignments for classes and preparation for study circle today . I think that is NOT because the movie is not interesting , but rather because my expectations is too high . She is going to have the baby in October . But I ca n't believe that she 'll have a baby at such an early age . I do n't have any cavicity , but my teeth are poorly aligned . She did n't give the baby vitamin K to prevent haemoraging . ( In this case , haemoraging was easy to predict ( in the baby ) . ) Yesterday I wrote in my diary that I was bitten by ants in the park . If you have an interest in me , pleaes get frinedly with me ! By the way , I look for my new job , because I will work for an interior design company as a salesman . I went to other countries , to Italy , Turky and Indonesia . Also , one of my friends wrote on mixi , `` I want to go to Snow festival , but if I look around thoroughly it is too cold , so I want to go there briefly . I need to train to drink , to be strong , so I can enjoy drinking with my friends and colleagues . McCain is trying hard to reverse it . I have been studying English for many years , but I am not good at writing English . To improve my writing English , I joined Lang - 8 today . From today , I will introduce my favourite thing in Japan . It is very impressive to me . . Today I read a article about that how you improve your language skills . I believe that someday , I will be able to express myself fluently in English . She laughed . ' Silence is golden ' Whatever you are , it is the common sense rooted into our mind . Ironically , in my experience , being silent always guides me to failure . Sometimes silence can be equal to being non - active . I 've gone out many times recently so today I was planing to saty in my house all day . In this summer , I had a opportunity to speak with African - American , but I could not understand what he was saying . I 've been thinking recently that English ability is how well you understand all English . At the beginning , he seems like a stupid boy , but actually he is very intelligent - he is a genius ! The Japanese Ministry of Health and Welfare advised patients to stay at home if their symptoms are mild . This morning , her temperature went down to 37 . 3C and she seemed to feel fine . She was running around and playing . Japanese Nationality # 2 Most Japanese are not religious , but their attitudes reflect their culture or nationality . For example , in Antarctica , which has incredible views of landscapes of ice , the ecosystem has been affected as a result of tourism . To get there a simple traveler emits 4 . 5 tonnes of CO2 ( carbon dioxide ) , which is an impressive amount of pollution . Today , tourism is in a crisis as a result of the economic crisis , but we must not forget touristic activities that include the preservation of the environment . Therefore there are places which include both activities : tourism and environmental care . I always ask myself what I learned here and if I lived up to my expectations . I like studying . My husband always says I should study English ! ! ! Anna did not really complain that she was a doner child , or that she was not the beloved one . No matter how much she suffered for rescuing her sister Kate , she just accepted it without a word , until Kate wanted to die . The first is I want to read web pages which are in English . I want to go to the ritzy restaurant . In that restaurant there are busboys . Also , I always nibble on food like pizza , hamburgers and spaghetti . Yesterday , I saw a man who was good looking . I went to school to submit my English report . : ) A few days ago my son had a doctor 's appointment . I thought the doctor let them in before our appointment . I left my son in the doctor 's office and waited outside . ( More natural . ) For example , HAL in `` 2001 : A Space Odyssey `` and Doraemon or Tetsuwan Atom ( Astro Boy ) , show the characteristics . Uh . . . . I do n't know whether Westerners tend to think like that , but I can say that Japanese have a close affinity with Doraemon and Tetsuwan Atom ( Astro Boy ) . Although , the experiments were not totally complicated and could be found in books , it gave us the chances to improve our manipulative ablilties . I was doubting myself whether I was fit to do scientific research for I always made mistakes whenever I did experiments which could be prevented and not occur to others . But lack of sleep might cause some obstacles to today 's schedule . A Japanese novel I think that it is too difficult for a foreigner to read ( in Japanese ) . I wish I could help her because I am happy when a foreigner can read a Japanese novel . Although there are many organizations that evaluate which city is the most livable around the world , one of them says that Vancouver is the most livable city in the world . The city of Vancouver got first place of the ranking for multiple consecutive years but I do n't think so . I have almost lived in Vancouver for 2 years but I do n't think this is the most livable city in the world . Who the hell is thinking this city is the most livable city ! ? I think they need to add the sentence `` For rich people `` before `` The most livable city `` I think these topics are too difficult to be written about by me . In today 's education - obsessed society , more and more parents encourage / push / force Because compulsory education negatively affects children To begin with , living in modern society , foreign language skills have become a necessary subject , In fact , noteworthy international companies are looking for talented people who are good at speaking their respective languages . It would have a negative effect on them as a whole . The acquisition of / development of foreign language skills is not the only ideal way for their future . Children are apt to concentrate on what they are intersted in . if their aptitudes are discovered , it might provoke positive result widespread . In conclusion , although the global arena has led to the pressure to master a foreign language skill , in my opinion , however , there are an infinitude of potential in children ; parents should find their ability in all aspects . As more and more people stay healthy until they are into their seventies , some people argue that the mandatory retirement age should be abolished . Others argue that if the elderly do not retire , there will be fewer job opportunities at the top for capable younger people . Discuss both positions and indicate which side you agree with and why . I did n't exercise for two months after graduating from my university . I always played online game or surfed the internet . Today it 's raining . Each life event may affect our mood temporarily , but soon we adapt the situation and come back to normal . She said , `` It 's very cold outside . Why do n't you borrow your uncle 's socks ? `` I went to Kariya and ate shrimp with rice for lunch . Then , for dinner , I went to Kasadera and ate ramen . Incidentally , are foreign entrance examinations hard ? I can no longer have routine conversations with him . I met him on the first day of university . North Korea and South Korea are divided by theImjin River My compliments for the blog , I accidentally discovered it reading an article on `` Times - online `` , it is very interesting and provocative . In my opinion teachers are so important for society , they `` create `` the citizens of the future , a good scholastic system makes good citizens , good citizens are better electors , better electors realize a better government . Thank you for your blog I 'm going to become a regular reader and excuse me TEACHER for my bad english I 've been seriously studying it for three months . Finally , I find how fascinating getting into the movie story ! ? ? ? ? Now , I have been learning them systematically for about four months . I learn English conversation by listening to news . . Of course , it 's a very common operation but when it happening to me , it 's much more dramatic . And then , I also hate the hospital : before I see a doctor , I feel good , after that I 've seen him / her , I have problems . We were worried about him and also , we could n't feel relaxed when a man was lying in front of our houses . Sheldon is impressive and idiosyncratic . As we all know that economic crisis has a great effect on different industry . I don not care about any difficulties , I will try my best to another job . She said she has been very happy with classmates every day for one year . At first , we thought everything was okay and that there was nothing better than that . If a program has sexual or violent content , we indicate it with an 18 sign on the screen which means that only people over eighteen years old can watch it . ( Usually , Korean programs indicated over 18 are n't even very strong . ) I do n't know if sensational programs have big effect on people and kids but I 'm curious if there are any reactions to those kind of programs . Today is August third , when I finished my studying for my cream I was happy because it has n't rained for two or three months in Taiwan . Yesterday I saw a movie called `` Obsessed . `` But the woman did n't give up , so the woman tried everything she could do to try to attract the man . What is better answer I can say if someone ask me to help ? `` He 's Not That Into You `` is a very interesting movie . It 's a korean soap opera I will be very happy to see my friends . These days , I have had a violent cough that makes it impossible to sleep or talk . A doctor told me that it seems like asthma , but the problem is that the pill the doctor prescribed does n't work at all . Except for speaking , I can practice English with tools such as podcasts , smart . fm , and blogging in English . The day of the dead or alive test is coming soon on 21st of this month , so I 'm striving to get high score on the test every night . because I want to improve my english However , in the middle of development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becoming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . Normally $ 20 a week for each person is the regular price . I trusted him , so I said , `` Yes , it 's okay `` . I said , `` It 's okay . And T knew that the Czech man had to leave regardless . Everyone who registers onthis site would like to practise and need peopleothersto correct their writing skills . Since I am not a native speaker ofEnglish who is familiar with writing in English , So I conclude that my learning process is enabled by others who help correct my mistakes , especially better writers who make brilliant helpers . Yesterday , I went to the ONSEN near my home . Luckily , the wine , pizza , pasta and salad was tasty enough to make me happy . Pega went home by flying on ' Kintoun ' , which is a special cloud in the sky . I have nothing else to do so I my laptop on and am checking lang - 8 site now . His owner said that he wanted a dog with a perfect pattern . For example the black pattern around eyes must to be symmetry . Maybe this is the reason why I sometimes lose myself in the TV shows . Nice to meet people all aver the world reading my diary . Thanks for reading it . I 've decided today that I will alternate between English and French in my diary . So I choose this picture which was taken at Fushimi Inari Shrine famous for the thousands of Torii in Kyoto 2010 . 12 . 31 . I 'm going to tell you about my 3days and 2nights travel in Kyoto in my next diary in French . Wednesday is a special day within the week . I wonder how foreign people think about the system . My computer was infected by different kinds of virus . I still wore a thin T - shirt for running . People spent their time freely and easily , things looked to become more expensive . Though it was not the same , the atmosphere and festivities called me back to the Japanese I am always suprised when someone who studies Japanese knows alot about Japanese culture and history On February , I 'll go to America . I learned a lot of English from them . I have never been to Indonesia , so I do n't actually know about Indonesia . I caught a cold again . But I could n't say anything back to him , because of my poor English ability . I decided to improve my English to the level where I can argue back . I got the information for this wonderful site from another website . I hope to speak English to communicate all over the world . `` Perrier `` in French is much better than `` SAN PELLEGRINO `` I think . I did not know this before , and I usually drink Morrisons ' banana flavoured milk . ASDA 's banana flavoured milk is good and the banana taste is stronger than milk . Five minute English to begin So today we 'll go there together . I 'm glad to drink a delicious beer , but I 'm nervous in this situation . I hope our conversation is fine . First of all , regardless of living in the global world , we still can not stop wars and most countries still have weapons . Although human 's life - span is longer than ever before , we have to combat disease which could kill human and animals . And around 22 : 50 of yesterday , he came home with a small capsule . From today 's morning , researchers are searching his capsule . The most beneficial change I can think of would be to the equipment used to connect to the internet , so that both students and teachers could connect to the wireless internet service anywhere in the university . In addition , if the university had the wireless internet connection service in all areas , students and teachers could access the web whenever they wanted . Such a service would help them to study with the latest information for their research / on the topics of their research . Therefore , I had to follow the new information every day for my research and I had to go to the computer center to access it online . With the wireless internet connection , I could make my research in the library , which was much more efficient for doing my work . If I were a university student or teacher now , I would certainly propose to introduce the wireless internet service in the school , which would have a huge benefit for the students and teachers . I will use Lang - 8 to improve my English and write daily . A new person is coming . However , when we are playing tennis , I would like them to concentrate on it . I have been feeling cold from Sunday morning . There are so many things I would like to write about ! I am starting to write this diary , because I 'd like to go to university in America . Vietnamese generally drive motorcycles . I made Vietnamese friends , who showed us famous restaurants and markets in the city . My impression of speaking English . This is the first time that I join in Lang - 8 . I am a international student in Singpore , although I am poor at english . . . but I want to improve my english , I am also a easy going person . . . . So give me message if u want make friend with me . and welcome everyone to revise . Thanks ~ ! ! It is not until they blooms that I can feel spring . I am asking with myself . I need to improve my Japanese , but I dont know what should I do . . . Can anyone show me a site or books , for download , to learn japanese grammar ? Onegaishimasu . I want to get started from the begginng , grammar for 10 years old japanese kid . I think I can start for : ) I 'm starting to think in different way and I 'm trying to understand the foreigners ' thinking . It is very difficult . But BBC also mentioned if Japanese government stopped using all nuclear plants , electricity would not be sufficient in Japan . However , after I heard his comments via BBC , I felt that his comments would be a second disaster . Because I had to wonder that nobody would trust such a prime minister who has no practical ideas of electricity supply instead of using nuclear plants . 5 , street smart : smart at living or especially at social skills is an engineer . 7 , Governor : the leader of one state 9 , primitive : natural At first , I became a member of `` rarejob `` services in the Phillipines . There were many regular characters ( maybe few too many ) in the show , so I did n't see different sides of characters in the first season . I celebated for the new year with some friends in a club . There were many memories for me in 2008 , but there will be more challenges and opportunities that I need to seize in my life or study . The year 2008 was a special year for every Chinese . We all experienced the Beijing Olympics that the whole nation celebrated , but the tragedy of the earthquake made everyone heavy - hearted . Everybody tried their best . I found it 's calories on the back of package . So I ca n't eat it over one piece per day . A Diligent Policeman They sell many kinds of merchandise : foods , drinks , snacks , magazines , sundries . ) I was very perplexed but I managed to explain my innocence . Anyway , I 'm fine here . I work at a healthcare related company nowadays . I took part in the Automotive Service Equipment Fair a few days ago . I went to Beijing 's Tienanmen Square on the 16th . He was an elite student and I feel very sorry because I was a little bit jealous of him . He was an angel to bring many MP3s to give them to many Tanzanian children . Because his major was architecture , he made the blueprints to build some buildings . My snowboarding trip was postponed until next month due to my car 's problem . I was supposed to buy an automotive chain by the day of the trip but I could not . I am little bit tired and feel like I have just come back from a long journey or something ^ ^ but I think I really did enjoyed her staying at my house ! The policy seems to be quite unique because Bhutan 's goverment says that they measure their development by national hapiness although most countries measure their development by economic growth . I have a lot of time to correct entries today . What happened ? ? ? I have n't written for a long time . I live in Ulsan which is a metropolitan city in Korea . I am pleased when I can hear their singing . However , I was just lazy temporarily . I thought that when I study something , learn something , get some skill and then , accumulating anything that I have got today in my body just like deposit . Everything that I do is recorded and it 's going to accumulate in my body . Of course it 's just a wonderful place for photography . But finally , I still believe tomorrow is another day , everything will be better . If somebody corrected my last diary , I will make friends with them . The stand seats are expensive and people can see only the instant the car is passing in front of them . I 'm studying Infomation Techology . because I have an exam in October ! German is a little hard for me , 'cause there is a strange sound made by the tongue . I think I need to introduce myself first but , unfortunately I couldnt get a job with tattooing but , I wont give up yet and I hope u guys also keep trying and keep working hard Today , I had the part - time job of helping a professional camera operator at a wedding reception . He has friends who are 16 years ago , I went to America , England and Korea : - 0 But I can ` t speak English . Someday I think I could speak in English . I could n't get out of bed immediately . They say that they grew confident in their entrepreneurial skills . I studied english in school 6 years ago and now I 'm trying to learn it on my own . She ca n't walk now , but I think she 'll be able to walk soon . I like a famous painter , Salvadole , Dali so I would like to visit and see scenery in Spain . In America , I would like to visit the Grand Canyon . My first Diary . Check please ! ! Hello ! I had dinner with my friend at an Italian restaurant . Firstly , there are a lot of shops , department stores , restaurants . It seemed I had no idea what time it was when I was writing or reading the articles . It 's a nice . hot sentence to listen to . I think I could listen to this everyday and to be however heated . - > ( ? ) Because interesting contents attract my focus . THE DIFFERENCE BETWEEN SENIOR AND COLLEGE ' S EDUCATION IN CHINA We have a lot to consider after watching it . Of course I care about the thing `` there is no need to be egotistical with each other . `` In addition , he said to me , `` You 're my best friend . . . as far as today , `` He always adds bad words on the end to hide his embarrassment . I was so touched when I heard his words , because I could n't see how he felt about me these days . I always wanted to hear his true feelings whether they are good thing or not . He has been a fugitive from the police for two and a half years and was hiding in my Once I got up and got out of my bed , I heard a sound that my mom apparently made behind the door , so I decided to go back to bed again . I knew that if I went outside and tried to take a shower , I would n't be able to because it was obviously what my mom was about to do . today is international lefthanders day , I am lefthanded , so it is my day too ! The merit of living Hiratsuka is that we can enjoy our beach all season . so we can enjoy a stretch , talking , sunbathing and beach vollyball all season . That 's very useless for regional economy . I want a nice cafe or Italian bar in Hiratsuka Beach Park . There is a lot of places in the park . The Denny 's near the beach is the only restaurant and cafe where we can enjoy a view of the beach . I want the mayor of Hiratsuka city to think about that . + mei - yor + I had planed to visit my city 's Strawberry Festival with some friends weeks ago . I was touched ! and sometimes there are some chicken bones without meat on the bus . Because Kawasaki city and Hachiohji is unbearably cold in recent days . I sent a text message the day before yesterday , but you did n't reply . I did n't know when you texted me . for just being in the election . And plus I won 4 times in a row ! ! ! hello ! I 'm looking forward for your message : ) Which sentence is grammartically correct ? I have confidence that I can live anywhere in the world . Yesterday , I was involved in canvassing for a candidate for the city council who our company supports . Anyway my coworker and I were visiting a home with a ton of fliers and cards already , and anyway we did not his policy or manifesto at all . I felt like a salesperson visiting to the door . Our clothes and fliers were all soaking wet . Because the average speed was too high for me . Oh , tomorrow , these successive holidays will finally be over . I found something changed . Every time I open a new page , a window pops up , and wants me to the set time zone where . So I set it up , but when I open a new page or update the page , it pops up again . Competition project _ 03 My daughter stayed at Grandpa 's house alone for the first time . I was surprised because she did n't sleep well when we separated but she did last night . I will give a birth this april so she is preparing to be sister . There are a lot of tourists from various countries in Japan . I have no special plan during vacation ; I will go home to be together with my parents . Besides , on Oct . 15th , our college will have a celebration for its 80th anniversary . I 'm very lucky I can witness this important event and I 'm also very honored to be a volunteer for the anniversary ! She had no interest with computers before . I also remember the wonderful decorations on every house in Australia . Both of us had been involved in their project before their debut , so we often talked on the phone at that time . I have n't seen them since I left the company , but I heard some of them started to manage their own work in Tokyo after all . I 'm looking forward to meeting them as I expect that the meeting should be inspiring . . . There was a severe typhoon last night , worse than I thought . I saw broken umbrellas everywhere . Finally the trains resumed service but there was way too much traffic . I recommend two songs , `` Genie `` and `` Hoot `` . I was born in a little town . Its name is Velikie Luki , and though it 's a very old town , it is n't very interesting . And while architecture in Velikie Luki is n't attractive , I like this town all the same because I was born and grew up there . I think that it ` s important to study hard and have hard time a lot when we ` re young . Because I want to graduate with an average point of 4 . 0 ( Maximum points you can get is 4 . 5 ) As I wrote the day before yesterday , my university 's rugby club had a match yesterday . It was delicious . Last week I took a few orders . But we should never give up . On Saturday afternoon I read a book called ' The Golden Rules ' . Next year will mean a lot to me , as I will have been studying flute for 10 years . ^ ^ I can know about the culture of different countries and know more friends . I am studying English with some textbooks . These sites are for Japanese who are studying English . Sometimes Internet sites are very useful in our lives . Do you have a favorite page ? I felt bad , I think she should answer it one time and tell me that she does n't want to talk at that moment . I feel better now , and I can forget it because I wrote my complaint here . I 'm a little surprised , because it 's the most special way I 've ever seen ( for me at least ) to learn languages . To be honest , I 've been studying English for 7 years , but I 'm still not too / very good at it . After ( I had ) ( a quick ) lunch at a Thai restaurant , I went to see the movie . The weather reminds me of the soon coming rainy season in Taiwan , and also of my allergic rhinitis . > < When the rainy season comes , normally starting in May or June , and lasting through September , it sometimes rains cats and dogs . Although the excessive rain can be catastrophic , such as a flood , the fact is that the rainy season accounts for the majority of precipitation in Taiwan . Overall speaking , I do not like too much rain or too many rainy days . I am afaid to smell a mildew odor in my closet . On friday I went to my friend 's birthday party at shevron renaissance . After that I went to the fiddelers bar . I 've been hearing ( not listening , I 've even been reading another book ) the audio book of Harry Potter and Sorcerer 's Stone these days . I enjoyed the rhythm of the reader 's voice . We looked like a pair of moving snowmen . My first English diary has not been corrected , I do not know the reason . Good morning . I 'm very excited , because I have just gotten a microphone to use for Skype . Today is Saturday , so I will stay up late . As I have a stiff shoulder , I welcome this approach , as it means that we do n't have to My exhibition will start on November 21st . The last half , I got breathless in the family background and the shocking ending . My close friend is a yoga teacher and her studio had to move to the other place this month because of the destruction of the building . I received an email from a woman . Usually , they are talking about his fantastic dance and song performances , everybody says `` he was the super - star `` . I mean , I am so disappointed the way they report . Why they can say that he is a great star who they criticized cruelly the day before . He explained how to use mineral foundation . After three hours of simmmering , however , everything changed . We do n't have opportunities to express ourselves in English . And I will save money for studying abroad . They were very successful cookies . I chose the conservative treatment and Exchanging favourite things Before today 's lesson began , he told me some of his favourite artists such as Muse , Snow Patrol and David Bowie and he asked me to introduse some Japanese animation series that I would recommend . Although I have been studying English for five years , It 's my first time going to America , and I 'm really a beginner at speaking English . I 've a very important test in english soon and I also want to definitely speak english ! ! ! I thought it means , `` make a money or deposit money `` Some Japanese companies are employing Japanese bilinguals , but they sometimesgive rise to big trouble among their Japanese co - workers , because of their behavior and skills . Today I have an examination in class writing The teacher told us write to three paragraghs applying the organizational patterns by developing time and space order , process description and exemplification and divination . I would like to write about Eid . All Muslims celebrate in Eid because Ramadan is finished . It is just for Muslims . Eid is just 3 days and Muslims can not fast in this 3 days because it is not allowed in Islam . Another western superstition is the numbers of cries of a cuckcoo bird being heard is reportedly said to be equal to the number of years of it being alive . As you know , we had to prepare for the national scholastic achievement examination for university entrance . First picture . - I was curious to see if that could really happen . Today , I went to Yamanashi to visit my relative 's grave with my mother . English , I always make mistake a subject and a tense . Today , I investigated Adobe BlazeDS in the office . It 's been a long time since I 've written dairy here again . Oh , I really hate this course . It 's maybe the sickest course I have ever done . It 's about useless and complex theories . So , I have to deal with day by day , which you can imagine how terrible this feeling can be , uhm ? when you try to study something that you completely have no interest in , it 's worth nothing . OK , I just want to pass the exam , so I do n't have to study this course in the next term again ! But thank god ! I hope I will pass it , and I hope my classmates will pass it too . What nice news , is n't it ? However , there is some bad news . Unluckily , one of my roommates did not pass the exam , so the only thing I can do now is to hope that he will be fine in the next term . I will have almost 5 / five exams to take , including history , philosophy , the theory of spreading , modern Chinese literature and ancient Chinese literature . Oh , Satan is going to kill me . The only thing to do is to deal with it and be confident that I can achieve this and find a good job in the future . This book is comprised of only English questions ! ! ( or ' My one word can exert a favorable influence upon the students . ' what is better ? ? This is better My hobby is to watch movies . Recently I watched `` Avatar `` . This movie is very good . I went to an Italian restaurant to drink Beaujolais nouveau on November 18th . Maybe that 's why I could n't spell in Japanese until I had watched so much anime . . . ( I 'm joking ) . A fresh , ankle - deep layer of snow has fallen over the night and I can look forward to a good hour of shoveling before I can even dream of getting the car out and going to work . Some of them fight against others who have different religions because of their firm beliefes . I think since Australia has huge amounts of natural resources , Australians can lead a good life . Miners have to work with danger and may be dirty but they are supporting Australia , so I respect them . The following email is the the most difficult one I 've ever written . When I get something at the mall , There is a beautiful park center of residential state area in my city . I like to critize restaurants about their food , services and atmosphere with my friends . I am very interested in it , so I love HANAMI which is an event where people eat and drink under the cherry blossoms . Hi everyone ! I had a meeting from three o ' clock until six o ' clock . But here in Japan , all TV companies hesitate to do so . I am striving to get a good score , reading english novels , watching American sitcom for listening practice , learning by heart the important words and sentences . You just complain to yourself or to someone else , to soothe your own feelings . It was a good chance to exchange opinions and information about the evaluation of quality in health care services . I watched the TV coverage of the golf competition `` Masters `` that is held in Augusta over 4 days , from yesterday until 3 days from today . I turned on the on - board wireless adaptor . I really like learning English , but sometimes I still want to think in Japanese in my daily life . Sometimes I 'm tired ; so that is why I have n't posted a journal for a week . There would n't be a lot of things I can do for them unless I am a doctor . Luckily , I have a tutor . The first picture is my partner and me , The one on the left is me . but It includes poison . Saint Lolita project started a project named `` Saint Lolita `` I 'm really excited ! I was able to see a lot of music artists and I enjoyed their live music . It was so palatable that I did not notice when I became really full . Eating slowly makes the feeling of hunger disappear earlier than normal . I did not abide by the rule , I just pigged out , and now I feel stuffed and somewhat drowsy . In less than 2 hours I am going to McDonalds to meet friends . Since I ate so much I decided not to eat there . I feel like I had such a heavy burden to speak in english . And I sense that feeling , when listening to a favorite song . Today my vocabulary test was returned to me . I do not know how to study : . ( However , no matter what economic situation in the world , people still get sick from time to time . In a word , nursing is really a practical and helpful subject although it takes a lot of hard work and time to become a professional health care provider . The hard work would pay off one day . The story was about a man and a woman controlled by a FBI computer . Recently I was busy , so I could n't write my diary in English . I had to change my money by purchasing something at a convinience store . He recommended this website for learning English . So , I tryed it tonight . I 'm looking forward to enjoying this website . Marshmallow ( which correction thing ) If you take a bite of a marshmallow , you know that you 'll put on weight and get ulcers in your mouth . I went to a gynecologist today . and I had kept the last 2 kits until yesterday for my less relaxing times . The pointer is powerful , and gives another world to the developer to create in the abstract process . It 's because I want to improve my pronunciation . However , I do n't know if my pronunciation is OK , or not . If I were asked to tell the most exciting story ever happened to me - I would definitely tell this one . The officer ordered me to follow him to the safe area of the motorway . After the train had gone , I called out to the shocked officer that I was OK , and continued to run along the train tracks to the Commonwealth Avenue where I had my interview arranged with employer . If I tell this to my friends or co - workers , some heartless person might hurt me . Then , we saw illuminations . I went to a photo studio , because I needed some identification photographs . It had good price and quality . It seems like a good way for women to get rid of stress . My class start at 8 : 50 from Monday to Friday . Recently I want to go snowboarding . Sometimes I need to anounce my daily plan , in order to remind myself to finish it on time . I hope I can return your help in the future . Today I read that Japanese law mentioned that a nuclear operator has to keep general public 's radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that general public 's radiation exposure has to be kept below 1mSv / year . I think it is too high , especially for children because they are more sensitive than adults to radiation exposure . So I hope that the Japanese government will decide to lower the level under 1mSv at once . Some researchers , on the other hand , have come to realize extreme strictness does n't work well . Probably because he knew that I 'm not good at speaking English and it seemed that he did n't want to talk with me . When I read and listen to English , there are often the times where I do n't understand the whole meaning of the sentence even if I know all the words . Probably it 's because English word order and grammar are different from Japanese . It 's because the words are too difficult or the pronunciation was not clear or too fast as is often seen in comedy . I have n't written a diary entry recently . . . . instead last night I had fight with my parents . however , this morning my mom called me . but I had to cut off the phone . . . and then I began to cry . . . . I could n't control it . . . . I know how weak I am . . . . I think it might have been down if my friend had not been there we talked an hour . . . I think we enjoyed the time together . . . When she was a baby , she had a serious febrile disease . I get up at half past five , and I go to the square . DPJ won a historic victory . This is not traditional day but it is like a type of event . I have heard that & nbsp ; ninety percent of the company 's total revenue comes from this day . Can you tell me the difference between `` can `` and `` be able to `` ? What is the difference of their meaning ? My goal is running10 kilometres in one hour . The Japanese language entirely depends on context and situation , and it is less clear than European languages . However , Japanese people should not change their language into something like a European language , which states everything clearly , because it is part of the Japanese culture . Instead , Japanese people should try to make foreign people understand the Japanese language . At the same time , they should make opportunities for foreign people to learn Japanese , and encourage its use . But one day , the National Tax Agency came to his two apartments , his offices , and the establishments which he owns , at once . The next day as well . Finally , it was almost the next month 's payday and I still could n't get my salary . Then he said , `` Are you saying ' When poverty comes through the door , love flies out at the window . ' , right ? While he was snoring loudly , I thought about what he said . I am at a university in Kyoto , Japan . I am afraid of him , so I told him `` I met an expectant mother , and she fell over an overpass , so I helped her . Therefore I brought her to a hospital , so I was late for class `` . because the teacher explained it clearly . It makes my body stretch , and my mind release . You will be soothed if you walk on the gravel path to the sacred places , while breathing in the fresh air generated by the woods . My husband , mother - in - law , son , daughter , and me . I woke up at 8 ( ? ) as usual . The winter is the coldest season of the year . It starts on December 21st and ends on March 20th in countries north of the equator . when I received my friend 's e - mail , I was thrilled ! ! I thought I had a high tolerance for alcohol , but I found that I do n't . It is thought that the earthquake has provoked a lot of fault dislocation , so we could be hit by massive earthquakes more and more . My Chinese English teacher told me `` To think is similar to consider . `` There are two types of people , who do not eat meat ; vegans ( they do not eat any food , which includes all food from animals / eggs and there are vegetarians , they do not eat meat . After they grow up , my grandfather kill 's them for their meat . By the way , this time interval is an interval of sampling that we called `` reaction tracing `` . We met each other in the back of a pachinko parlor at 5 : 20 pm . Do n't focus on their bad points , so that you can have many good friends . I 'm a Japanese girl that is learning English at the Kansai Gaidai university . I understand you should use present tense in a adverb clause even when you refer to the future . A new resolution is here : improve my English and start learning Japanese ( but , first I need a book , so it 's not for the moment . . ) . I 've been with them for 4 years . They are 13 - 14 years old , and now we are facing our toughest challenge so far . I 'm impressed how it effectst the movie . It may sound just simple at first but actually I think it really is complex , well - organized and expresses exactly what must have been explained . A black car started to move when the traffic light changed to green . The driver opened the window , and began to throw empty cans which did n't hit me . My home town was just across from the shore , so I was very familiar with the town . When we crossed the bridge , there was a big intersection , the traffic light was green . If I had been caught , I would have been killed or beaten up by them . So at the moment , my driving technic was slightly better than Nicolas Terol 's ( Moto GP driver ) . It was a very dangerous car chase . And then , the stupid gangsters came , but I already was inside the site . I guess Chinese people put more importance on food than any other nation . Confucius said that `` eating is a great happiness . `` Maybe this is because of the long history and tradition of China . Chinese cuisine is amazing ! Firstly , Chinese food is healthy . Look at the people here . Most people are really slim : ) because there are more vegetables than meat in Chinese dishes . Secondly , Chinese food is very tasty . We have four rules on good food : `` colour , flavour , appearance , and taste . `` Chinese food has the most variety . It 's very easy to satisfy your taste buds , and you will be addicted to its amazing taste even though you may have no idea of what exactly you are eating . The seasoning of the materials in Chinese food is super important . Only the right materials can make delicious Chinese dishes . I like cooked food . It 's safer and healthier and also nutritious . I think the reason why he knows many dirty japanese words is his japanese friend . He influences a lot of foreign students . So we went Shinagawa station first . Next , we called the aquarium and asked where it is . [ Diary ] Macaroon I did n't know that the macaroons are very colorful and cute . I was so glad to talk to them . I need strength . This morning I fought with my younger brother . When mom asked him to turn down the computer game sound , he got very angry and yelled at her . After that , he threw his mini computer because of his anger ( We are not rich enough to throw mini computer . He thought I could n't / would n't really throw away his computer because it was too expensive to throw away . But I did n't care about such a stupid threat . If I had strength , I did n't have to shuddle like before . I want strength , I need strength . Especially my daughter is really looking forward to seeing thehouse of wax the house of wax , it says there are some wax dolls which portray the ' ' The Last Supper `` by Leonardo da Vinci . We will have military training for two weeks , how can I get through those days ? I plan to set my telephone to wake me up tomorrow . At work today I was confused a lot and I had a headache , I could not think a lot ( either ) , maybe because I slept late . Today 's menu was tuna sandwich and milk tea . I 'm looking forward to going to the cafe every Tuesday . Nevertheless , as you can see , my English abilitycould still use one word to describe itself . Tonight , I take my first step to restart studying English on this Lang - 8 ! ! Two or three years ago , I tried to learn English since I needed it in my job to communicate with my colleagues abroad . Tonight , I found this Lang - 8 site , and I decided to restart my challenge : learning English ! Cygwin Installer Disaster Do you ever have the same feeling ? Would you like to tell me ? Not because of lonelliness , but so I get the opportunity to do anything . I hope my dream will come true soon . east - southwest of Taiwan . Have a nice day ! ! ! Yesterday , she was inoculated for the first time . Americans , Vietnamese , Filipinos , Japanese and Canadians etc . . . It 's still difficult for me to hear the speaking at ordinary speed Because of personal problems , I disappeared from this family for a long time . for example , I applied to join ' Skye ' , but it requires that we must do face to face communication . Before this journey , we had never visit any foreign counties other than Guam and the Philippines . So it is difficult concentrate . Right now it 's fine , but in the summer , it seems that electric power companies will be not able to supply enough electricity . I always set my laptop in front of me , and adjust the monitor so I can watch more easily . When I watched one of TV programs , I needed to click to move to go to the next movie . When you come to Japan and have the chance to watch a TV , you will see them absolutely . Today is Friday . I do my work as usual , but it 's so boring and then I chat in QQ . I can not understand why the washlet is not very popular in America when Americans care very much about cleanliness . In fact , I heard that celebrities who visit Japan often purchase a washlet after their convenient and comfortable experience at restrooms in hotels . I have rarely seen people carrying handcherchiefs since I came to LA . `` Japanese gamer marries Nintendo DS character . `` It appeared in a British newspaper . Giving up some habits to prepare for the exam is acceptable for short time . I bought some presents and gave it to my parents . They pushed the `` send ! `` botton at the same time , as soon as the train gets out of the tunnel . I heard that there is n't a locker room when I went for my interview . He became an Asian culture club leader this term . My god - brother is very sweet and tender , which is why he can get along with girls so well . This year is his last year in senior highschool . They wanted to play different roles , such as maids , servants , and butlers in a club promotion event . Sounds awesome as my godbrother is too shy . I find it intresting to write a journal in English here . I will refresh my journal as often as I can . I just want to enjoy the beautiful scenery there . last night , I tried again to install my computer system . I am a computer idiot , however , actually I was successful , I installed the operating system ! so I felt very angry , because the question delayed my study ! today , I took the PET four Exam , it was terrible , from a total of one hundred I answered ten questions correctly , I have fifteen percent ! oh , my lady gaga ! I estimate if I want a pass on the Sepetmber Examination it 'll be very difficult ! ! Though it depends on the day what kind of dishes you can find , I found Japanese , Indian , Korean , Chinese , Mexican , French , Germany and Turkish stands among many others . That ` s why people get to enjoy a glass of German beer with Turkish kebab . And it was located in Yurakucho , the center of the down town of Tokyo , where hundreds of businessmen enjoyed their own private time after work . It was made at a small stand of a station wagon , so it wasn ` t a full - dressed one . I want to know the result early and study for thepre - 1 grade . Today it 's Monday , so I went to my school , and it was so boring because my teachers are n't flexible . I feel very uncomfortable today . From last week , about ten people from Los Angels have been staying at her church . I guess that the temperature is 27 celsius , maybe . I learned english in school , but did not have practice . Now , I have found this interesting site . In theTakachiho area , we found a fantastic place where I assure you that we can live a happy life ! I wish I could have a partner who speaks Japanese or English , so that we can help each other to learn a foreign language . If you show your photosome people may think of you as a hot person even if it is not your true face , yet there are a lot of comments and corrections for your sentences again and again from many people . but I had a special day on 12 / 26 . Then , I was very nervous . Thanks to her help , Tiffany and me became friends . The floor of my room is covered with paulownia which is often used for chests because of its absorbability of moisture . because I have never seen it made in Europe or the US . On rainy days like today when I come to this room and touch the floor with my foot , it is so damp because of its absorbability . We say compliments , pretend to be good , behave like a human hiding a wild heart . Perhaps many people unconciously lie about tiny things . And yes , I 'll join you of course . In this situation , I definitely know their party is never held . That means going shopping to supermarkets and groceries instead of my mother . I can check prices and know what economy is going on , also I can meet my neighbors . But , my English communication skill was very poor that day , so I could n't go to stadiums and so on . Because of that experience , I was determined to learn English . Hi my friends . I would like to speak English well so I need your help ! I am a good friend . . . you will know if you talk with me . I hope to find good friends ! : ) I 'm going to describe two photos . She is the founder of `` CHANEL `` , the famous fasion brand . Every step in the campus is an exploration and an adventure . I just remember a few things about last night . : D The doctor told me that the cause of the symptoms was my warped pelvis . At first I planned to travel with my friends , but at the last minute I copped out . Of course except for my girlfriend . I wonder if they are fine . First , you might have heard of Taiwan 's traditional foods like Bubble tea and Stinky tofu . You can find them at local night markets everywhere you go . If you know how to read early , please teach me ! But I really feel that if I want to improve my English , I [ will ] have to have the courage to speak with English teachers . Learning a foreign langage is not a easy job . You need to get enough information input in your brain , then it is possible for you to output the language correctly and fluently . Happy Birthday ! Two days ago in our country , a new actress committed suicide . She acted as a minor character in a drama which is now broadcasting on tv and gets lots of attention from the public . Why did she commit suicide even though she 's young and beautiful or even though she 's gathered so much attention through this drama . The articles said that she had been depressed , so that might be the reason for her death . Nowadays in our country some celebrities commited suicide suddenly and people , including me , have been surprised and shocked about it . I like anime , so I am watching 19 animations in this season . This number is a lot heh heh heh . Especially if you are interested in classical music , you can enjoy it even more . We must send our worksheets with exercises to the manager of this course . Now I 'm excited in visiting a foreign country . The orange lights of the buildings are clear and beautiful , are n't they ? I went to see a movie with my friends . It was very interesting for me . She Floating from Short Program of eleventh . * She was slump in the jump from January of Four great land championship . * The near future of the Olympics of February , * she found a letter while she arranged fan mail after practice . Lyman Brothers has just gone bankrupt , one month or two months ago and AIG insurrance conpany is in financial difficulty , and the United States GM has fired lots employees My classes start at 8am and finish at 4pm . Finally , I became a sophomore ! I do n't want to prepare for recruitment . But sometimes I lose time for speaking English by making a lot of Japanese friends . Anyway , I want to try to use new vocabulary and practice for my writing skills . If you know any good places , please recommend them . I 'm studying English now . At the party , we drank a little bit and ate hamburgers . Yes , I have some teaching experiences which I am still writing about in my journal . Actually , teaching English conversation is a small part of my work . I woke up at 6 : 30a . m . Because I went to bed late last night . Most Korean students are studying hard . So , In most people 's eyes my military life was nothing more like working on a ranch , but it was a good time making another treasure in my heart . However , it is difficult for me to develop my English skills . Of course , I am willing to correct your writing . Sometime I dream the similar event , I always dream that I am going down the sea and dieing , so I am afraid to swim , if my friend ask me to swim , I always refuse them Two flavours are in it . One was `` kinako `` ( soybean flour ) and the other was `` maccha `` ( green tea ) . Thanks ! xxx And this is a Japanese Anime . If you read all of my entries , you probably know that I started speaking English ever since I came to Australia . This summer I 'm going to join two tournaments . nice to meeteveryone . I am a new here , today our director told us `` leading and develop people `` I do n't know how to expression my opinion . in the afternoon , our 7people went to drink , and bought two steamed bread , today I felt very happy . There were many people and it was very hot on that day . the food there was n't expensive , so u can have a lot of choices . I was amazed because the snow had thawed . If you have a courage , you can try it . They are elementary schoolchildren . I will buy something to proper for cooking . Am I A Gorilla ? At least it is relaxing , right ? No doubt , It is suitable for most youngsters and even adults . At least it is a childhood memory in people 's mind . Of course , it is not true . Some people called Studio Ghibli to ask about this myth , Studio Ghibli responded jokingly , said ' Yeah , is true ^ o ^ ' . Finally the myth seemed to busted by the declaration of Hayao Miyazaki . We 're supposed to perform ocarina at Qingdao ( China ) at the end of October . You are far far away from me and you are helping me to learn English . Life was more difficult . It 's impossible now , is n't it . I have been playing a DS game called `` Mario and Luisi RPG2 `` since last Sunday . If I can use this concentration for my work and study , I would be a big wheel . . . Yesteday I went shoping with my friends . And we pray to reach for the help from all of the world such as Libya or Afghanistan . I ` m studying English and know it at an intermediate level . But I got well quickly because Hawaii 's temperature is very comfortable for me . The problem with two kinds of medicine What 's more , she felt her doctor was not considerate , so I gave her advice to go to another doctor to get a second opinion . Actually , I do n't understand all the rules of american football . However , I wanted to see how crazy american people get during the super bowl , so I dicided to go to a sports bar to watch the game and the crazy american people . I really had good time , and I will try to watch american food ball this whole season . I woke up in 6 o ' clock in the morning , then I got dressed and I had to hurry , because my friend and I were going to the sea , but he was late and I was waiting for him a few minutes . I borrowed a thick book yesterday which is called Snowboarding . I have never tried to do snowboarding . I wanna know the real voice . It might have been two or three months before . I 'm looking forward to picking it up . ( ^ ^ ) I 'm going to go to an Italian restaurant for dinner with my friend . I saw it in the theaters yesterday . This week I have a big exam . I have not decided what should I do yet . . I 'm so clumsy that it still takes me at least 10 minutes to open a can . I am a member of the soccer club . But there is some fun in my school life . such as , the Fusionopolis , the Biopolis , A * STAR and some research laboratories of private companies , if we could have the chance . The vet said he was n't sure what the problem is . Plus , if we find out she needs an operation , it 'll cost 200000 or 300000 yen . But I am wondering where the border is between people and pets . I think learningabout the other country 's language where I want to travel is good manners . because I have to roll my tongue . I 'm Korean so I 'm interested in neighboring countries I just want to speak many languages for conversation with foreigners . I think the story is like most Asian people . Work is their life . On Saturday night I 'll have a dinner party with a piano . I 'm looking forward to the day , and I try to practice playing the piano hard . I am a system engineer in system integration part of my company . Today is a rainy day I come from Taiwan , nice to meet you . Today it is raining in It is a very tough sport , but it is very good exercise for me . So , I went to STD , and after that I went to Whittard - a tea shop , then I bought a tea pot and creamer as a souvenior : D because it was on sale ! The Youngsters in China Therefore , they become ignorant to the feelings of others , but it does n't imply that youngsters are no longer sympathetic or helpful . As for me , being one of the youngsters , I tend to hold the opinion that the youth are the same as the former generation . People , especially among youngsters , tend to do something by himself , rather than with a group . Furthermore , youngsters are not unsympathetic because , on the contrary , we are full of sympathy . We remembered the dead people , sympathized with the homeless children , and honored the army . I often ca n't help crying because of all your great support for Japan . I would like to tell you what happens around me . I may find something interesting to write down . I am writing to express my dissatisfaction with the service that I received at your establishment . I suggest you employ someone who is more skilled and has a better personality so that your customers time is not wasted . the reasonwas toparticipate in a conference ! I liked my country , but then I liked another country . One of my friends asked me before that you do n't like Japan , because most of Japanese go outside because they do n't like Japan . It is because of my country 's system I feel . And I know that I am curious about all things it does n't matter about my country or others . I was happy because we talk about each other . And I touched hamster . Sooner or later a massive earthquake will occur in Tokai quite near the plant . I really experienced numerous things therein those two weeks , four months . Unfortunately this kind of incidents happen every summer . Third , their wages are cheap . To end these problems , parents should stay with their children until they are old enough to understand the risks in the swimming pool . How are you these days , my friends ? happiness . please open your window of heart , let your heart have a bath in I have lived in MACHIDA , which is in southeast of TOKYO for 21 years ! ! Then , I 'll meet lots of people who have various nationalities and tell about good points of Japan culture . Also , the professional school students with whom we communicated could speak to me in English and sing Japanese popular songs together . I felt humiliated , because I could not entirely speak or listen to English , although I had studied it for over 5 years . I feel comfortable . Long , long ago , there was an impatient , arrogent man . Suddenly , he finds out he is walking on a beautiful path surrounded and this morning I got up at 6 a . m . On Friday night it snowed a lot when an old friend of mine came to visit . Then we strolled along the road feeling the touch of snowflakes on our face . We went into a small restaurant to have a drink . I could n't use all of the functions of lang - 8 before by iPad , but apparently , I can use all of the functions of it by iPad now . I will go to church and I want to meet new friends . I hope I can get a good scoce this time ! ! ! ! ! I am currently studying very hard to pass the ' ' TOEFL ' ' that is required for International Students for entrance into Universities in the US and Canada . His speech was very interesting . Surreal houses , rivers , bridges . . . This is my first journal on lang - 8 ! Would you mind telling me , how to get the discount price written in the invitation letter . Let me introduce myself . When I was there , there were no airplanesbut it was full of spectators . Especially for last time I got car sick , we were just staying on the phone laughing after I was trying to catch a breath of fresh air . `` I will always be by your side , to help you out in soul trouble . . . `` Hi I 'm hiro and this is my second diary . These emergency drills were originally held on the 15th of every month but now they only take place two days out of the year . When the clock hits 2 at the afternoon , sirens will go off , signaling the start of the drill . In addition , there are no shops , restaurants , or public transport in this neighborhood . He had short hair and wore a white t - shirt and jeans . I think I have two chapters to go and it might take 20 more hours to finish the story . Overall : It seems like the Amazon River , which flows slowly , calmly and constantly rather than like Niagara Falls , which flows dynamically , wildly and powerfully . This evening , when I load on the news web 163 . He is only 48 years old and he is very excellent , Almost every chinese man knows him through his news report program . indeed , I am in school preparaing for entrance to Grandes Ecoles , in order to be aveterinarian . I sauteed them with komatsuna ( a leafy green vegetable ) in the fry pan . This month by now I have wrote 48 journals . Yesterday I learned roots of words in English . Nowadays , almost all science and technology is written in English , Of course , China is stronger every day ; many foreign people come to China to travel and study . I think that we can change ourself if we step forward with courage . `` Piacere di conoscer - la / ti `` to which you can reply : `` congratulazioni `` to someone who has just succeeded in something A nice guy , Wanda , adventures through wonderland . There are no people or animals in this world . If it 's attack hits Wanda , it does a big amount of damage . but nothing happened . I 'm learning to play in a musical for this lesson , and we ( the troupe members ) have a board meeting next summer . Expressions that substitute nouns Can Japan national team winthe game ? Sometimes , if you are lucky , you come upon a snake ! school students since they use textbooks that I 've used in their school . I am going write about a person who is not only respected , but also successful . However , this successful person had already decided what they want to do at the company or by themselves when they were student . I think if we can use the Internet appropriately , we could gain a lot from it . If I have a time , I feel likespecialty food in Fukuoka . By keeping a routine , I can get up early in the morning ! ! I think it is so difficult for me to do it . Would you mind helping me study English ? Then I will move to St . We are thinking of going on a picnic . I think it well be very fun , because we are a bit crazy : ) ) ) For example , not so long ago we organized a flashmob . People were looking at us very strangely . Why did n't you put on underwear ? Yesterday , I used MSN Messenger for the first time ! I like hill climbs and long rides . Recently , I discovered the english music group called Mcfly by chance on Youtube . Cut the sweet potatoes then boil it . I am happy for that , but I do n't know why Japanese learn Arabic ? My teacher pointed out lots of grammatical mistakes like articles , plural forms , verb forms and so on . Because , one of my friends said , Then , the night I got the binoculars , then , over two large cups of coffee ( I 'm a self - confessed caffeine addict ) , Then , I found dark rings under my right eye . As soon as they got power , they changed the amount of money , and they even considered an income limitation . My momther recommended that I should have bought a cheaper one but I wanted to buy an umbrella with cute characters on it . I was a little nervous at the thought that the professor would notice I was n't a regular student . So , the test will be too difficult for me . I sent back a congratulation - mail to him . Finally , he gets better and better and is successfully able to finish the speech at the begininning of world war 2 . It 's very delicious in there . Yesterday , I watched a Korean TV documentary which was about Africa . After watching the documentary , I realized how comfortably I was living and studying . In this sense , Japan is in a position where it can advantageously and financially provide other impoverished countries with development aids . Or rather it can spread its interesting and unique culture around the world , which hopefully renders Japan able to cherish its country 's asset more than before , as it has a lot of vaunted cultural and traditional values . So I modified my thesis to include some changes and submitted it again . How great was that carving technique ! I really wanna study English ! ! ! not to meet a guy who wants a girl . I like English and historical things . But my parents do n't want me to do that . Today , I was reading a flyer on this program . I was so surprised ! I 'm looking forward very much to seeing my friends and my family : ) I DON ' T REALIZE SOMETHING IS MISSING DURING THIS KEY MOMENT . MY HORRIBLE HAUGHTY BEAT ME ! ! ! ! I went to my part time job teaching mathematics to a junior high school student this morning . After sleeping , I studied English vocabulary . First I learned the new words ' meaning , then their pronunciation . Although I was a badminton player from the elementary school until high school , I have not been playing it for a long time . The lake 's surface was peaceful the other day , but yesterday it was choppy . We held a symposium to discuss students who could not attend school due to personal problems such as mental health , being bullied at school and so on . They are worried about their children 's problems . I was worrying earlier because I had n't been on it for a long time . I think that he is very lonely on this trip . If I go there , I 'll walk quickly on Wall Street like a man pretending to be very busy holding a cell phone in one hand and a cup of coffee in the otherer hand . The third reason is , there are many famous places there , like the Statue of Liberty , Times Square , and Central Park . Hi everyone ! ! ! ! We watched a movie that has been very popular with the Japanese lately . It depends on the scene . Though I ca n't help worrying about places that have been affected by earthquake , I 'm going to go out more frequently . The Chinese often open the ghost door in July . She never talks a lot , but her words are meaningful . You never expect to hear any nonsense from her . I was refreshed . I told her , `` Bite your tongue . `` The following is written : [ `` we do n't use gasoline , perfect taxi ! Better isolation . The first program that I 've written is `` Hello , world ! `` . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sense . Because , the big earthquake and tsunami hit Japan in March . . Tattoo boom I often see many people who have tattoos on thier bodies in the US . Apparently , getting tattoos used to be a military and army thing . Tattoos are not so popular in Japan . In my opinion , If we get a tattoo , it can not be easily erased and when we getold , the tatto also gets out of shape . Tattoos influence our impressions of the people who have tattoos . To be hornest , I do notknow any positive aspects of getting a tattoo . I would like to ask somebody who has a tattoo what they feel when they get a tattoo . Also , in our life , we can make more and more friends through the internet . So thanks to internet and thanks to lang - 8 for helping me make progress everyday ! I mean , I can understand almost everything , but speaking correctly is sometimes very hard for me . I need to be put on a diet immediately . Nowadays I do n't have a boyfriend . Unfortunately , when I was 10 I moved to another city and I ca n't find foreigners here . Last Sunday it was my grandfather 's birthday . They 're very delicious ! ! so we may become friends and we can talk about each other 's country and maybe in the future we can meet up at one 's country . now I am staying in Pohang in Korea . But I am actually from Seoul , the capital city of Korea . here , what I am doing is study in graduate school in EE ( electrial engineering ) which sounds boring and difficult to others . I got ta go , so hope you can correct my English writing and I will be your friend . ( Although I have never been to South France . I held a farewell party for my colleague who has worked for 7 years since I started to work here . The story was very interesting . I thought to myself , why has this person come here to study English . She is older than me and the only woman . Today I have a big exam , I ` m very afraid , because I don ` t know everything , how will I do ? I 'm sure that many of you are used to western habits because of work rhythms : wake up early and RUN to work after a coffee , but what is a typical breakfast in Asia , for example ? This wednesday I started school again , in a new class . . . I saw some friends I didnt saw during the vacation and it was nice to see them again . . . yesterday after school I went with my friend to buy some fabrics because she wanted to make some craft with it , the trip on the bus was so long , the other day she was trying to pass the driving exam , but some old lady that was angry didnt let her pass . . . Media Communication is learning about the differences between old media ( newspaper , magazine etc . ) and new media ( such as the Internet ) . When I finish the all of my courses in university , I want to be a journalist . Tomorrow I ` m going to a concert with my friends . And then we were suspicious of the pizza because we usually make noise . I recommend `` My brain says stop but my heart says go `` by FM static . Thailand is a country where English is an official language . This lets them learn two languages together even they did n't know it helps their pronunciation . People who have good language skill tell me that we have to start with listening then speaking , reading and writing , a similar pattern to how we learn our native language . I found an interesting article in a magazine . I 've never tried this product before but when I was young and stayed at my hometown , my mom often cooked curry for breakfast . One example of the problems which left - handed people may experience is the difficulties related to handwriting . It is undeniable that there definitely exist lots of great inventions throughout human history like the light bulb , the steamer , the telephone , etc . Similarly , they use these knowledge to make contributions to their society . Only in this way could we create a harmonious environment on the Internet around the world . We have many lecturers , and some of them . do not speak English very well . After thirty minutes , I became aware of how difficult it was to understand . . . Because it was very embarrassing , I decided to study computers . Sometimes , he wants me to help my neighbors too . ( Although I do not like doing that all the time ) . When I have free time , I can look for useful software and study them . Does That Make Sense ? I have a feeling when I hear someone say `` does that make sense `` that the person is getting impatient or just being rude . I immediately took him to the hospital . Anyway he seemed fine before going to bed . I 'm watching one of the american tv series `` Big Bang Theory `` . Maybe Words Free is not its proper name , but you can find it by typing `` Words free `` in a search engine . I think Scrabble is a good practice to improve my vocabulary . Are there any differences between them ? Which is right or which is commonly used ? The first person said that they will check whether they can correct it or not and hold on the line for second . My wife 's zousui contains sliced Japanease radishes which are supposed to be good for you when feeling sick . My favorite person is my friend . Sometimes , we go to su - won . I like my friend very much . It 's not the main religion of your country , right ? But after I have learnt about it , I think we should embrace it , and live up to the standards of Jehova and what his son Jesus taught us in The Sermon On The Mount . We meet people from different countries there , and mingle together and exchange our culture . Wonderful ! So I wanna ask t if I am allowed to join your congregation in the disscussion next time ? So thank you so much for tonight , I am really appreciative of your cooperation . I ` m studing in music school playing the piano and synthesizer . Every summer I go to Ukraine to see / visit my grandmother . Our company mainly deals with producing and marketing mobile phone cases . Tough reading and writing . Nowadays I practice pronunciation , but it is difficult and very different from Korean . `` Let it be `` was released later than this album but Abbey road was their last album , because they recorded them later . In the last years for `` Vote for your favorite album `` , it was ranked No . 1 in Japan . I watch it because it is useful to me because of the English substitles and it is free to watch . It seems like I will watch it all of the episode . My favorite movie is Burlesque . Christine Aguilera makes an appearance in the movie . They live far from the academy . Hello everyone . But I also want to make a lot of money , because my family does n't have lots of money to send me to school . Today , I have some questions about quotations from movies . I read in a magazine that American newspapers often use quotations . It was the first stone building in the city : when King Peter I planned to build the city , he started with the fortress . There was an exhibition of the sand sculpture on the beach near the fortress ( in the second photo ) . In the first photo you can see the famous spire of the Peter and Paul Cathedral seen from the pier . According to the story , during World War II when the city was blocked ( blockaded , sieged ) , a whole echelon of cats was brought into the city for extermination of rats . I bought Rosetta Stone ( English levels 1 - 5 ) . I can practice how to pronounce English words and understand words ' meanings without using Japanese . Today , I wore a black Care Bears T - shirt . I bought this recently ! But he ` s never seen Care Bears T - shirt in Hawaii , so he was suprised : D The news said our military rescued 25 sailors who were captured by Somali ( adjective ) pirates . Tactically , in this case the government should have been passive , because the captives ' lives depended on the pirates . I did not cook it the way you 're supposed to cook jelly , but I cooked it as if I was making coffee . I 've been using Twitter almost every day . Unfortunately I do n't have any pictures . So we cooked lamb , beef , pork , and sea food . Indeed , sushis taste good if the chef is nice and tastes terrible if the chef is not nice . Kyoto has a lot of restaurants . 2 ) When the fat are thin , the thin died a long time ago . I watched part of `` Beautiful Dreamer `` , Urusei Yatsura 's movie series . Meanwhile , I also want to practice my English . Because I entered my bank card password wrong three times . In Japan , Japan TABACCO INC which produce and sell Somoking is very influential in many areas . For example in the media , the Federation of Economic Organizations and politics . Last year a politician said that tax one cigerettes would increase so that one pack could could cost as much as 1000 yen . ( current cost is 320 yen ) There is a person who is against increasing cost cigarettes in medical area too . He always remarks in media `` what is the scientific proof that smoking is disadvantage to health ? `` `` Can you prove the relationship between smoking and bad health ? `` `` Of course I dont need to say anything about passive smoking `` It is obvious that smoking is bad to our health , but he insists that there is no perfect explanation , so we must not impose on extraordinal tax and exclude smoking people . Today is called `` Marine Day `` and so today is a holiday . However , today is a school attendance day . ( Chuseok is one of the most important holidays in Korea . ) So it is difficult for him to enjoy life because he controls himself all the time and thinks everything should process in the right way . Sooner or later I will finish the semester at my university , so I 'm busy to sum up my class 's for the tests and report . So I 'll do my best this month . Thanks to that , I can now understand it when I watch it again . Recently , I get tired easily . My profile picture has changed . I went to dinner with my friends from my part time job yesterday . It was delicious but the restaurant was full of smoke . I got a small gift from an English magazine company today . The last time I met an English man I could n't say anything to him , I do n't know why but it was impossible for me to say even `` hi `` or something like that . Also , he had a wife who was a very beautiful . Still , a ray of the sunset is coming through the windows into the rooms . After stuffing all the items into the fridge , I take some glasses from the shelf and a Yebisu beer from the fridge . I usually read the entertainment or society sections n . In Japan it is a symbol of spring , so when I see it I feel spring has come ! ! In general , many students will start the job hunting when they become third - year students . Once they pass the position of `` new graduate students `` , thier job hunting becomes quite difficult at an alarming rate . As a matter of fact , they will spend so much time on the job hunt that they can not attend the classes they need to graduate . I got up 30 minutes earlier than usual . REASON1 / I want to speak English because . . . I read American famous & popular literature , The Great Gatsby translated by MurakamiHaruki . We watched TV , listened to music , and played the piano in her new house . I thought I had a nice day with my family . Her color is yellow and white . While we were staying in Singapore , we went on a tour around Johor Bahru , Malaysia . There was just a hose or a bucket instead of paper at the toilet . The first day of Autumn has come . . . Egyptian food is similar to Turkish food . It was different from the usual tobacco . Sometimes it seems pretty hard for me , but I set myselft to rest by thinking about russian grammar . Taiwan is the safest country of the ones I visited . The pregnancy happened suddenly , She said that she 's really happy and she 's never had a feeling like that . Many of my co - workers helped me to learn the new system . Because all of my co - workers are not Japanese . But , I want to learn another way . Could somebody teach me ? Because this is the best way to brush up on my poor grammar . But I worry about one thing . I 'm not good at writing even if it is japanese ( my own language ) . I hope to make my grammar better through this site . It 's a bad day today . I quarrelled with my boyfriend . I was born in Moldova , and now I 'm studying in Riga , Latvia . This is the main reason ( no comma ) why I 'm trying to learn it . I 'm not sure whether my ancestors were ninja or not , but there is a possibility . Are you interested in ninja ? A few days ago , I watched the final episode of LOST , the famous TV series . I visited a wax museum . The museum was brilliant . I have never been to Sushi Zen , because it is very expensive - one item of bluefin tuna ( fatty tuna ) costs approximatey 2000 Yen ( I guess it 's about $ 22 at the cuurent rate of exchange . ) ; ) I feel most content when I succeed in describing or expressing something , using syntax and phrases special to the language . I want to make a lot of friends . If you want to make friends with me / be my friend feel free to contact me . I just know a little English . What 's my aim ? Studying English together with whoever wants to learn Chinese . It 's raining outside , and the temperature drops quickly . He will leave Japan next summer , so he is writing a book for himself . He opened a souvenir box , and his appearance had changed . He looked like a grandfather . Everyday we went shopping at some place , and enjoyed it . ? I think that this time , our family ties had deepened more , and more . Anyway this month is special for me and for all Muslims around the world , and for this I scheduled my time to spend it doing worthwhile and valuable . At the beginning of the few months , I did n't understand or even catch a word people were saying . Also there were few Japanese people , so I did n't have a friend who I could truly rely on . So I 've decided to restudy English from today on , so I can be fluent in speaking English . ! On his two - story factory roof some futon ( something for sleeping in ) has been stranded up there by the Tsunami . Today , I bought `` yotsubato 9th `` ( It 's comic book ) I met the president of the company , and we talk a lot about the amount of money . Memory Of A Fish So it is said that you can be clever if you often eat fish . When they were elementary students , they had to collect night soil , scrapheaps , flies and so on . My favorite singer is Sina Ringo . Cultural Difference . . . Too quickly ; I am very surprised . what do you think ? are you good at your mother language ? how many people do make mistakes ? freakishly large amounts of money anymore ! ! In English class , the teacher made him read aloud an English sentence . Are you okay ? Can you come to Japan from August 1st for about 2 weeks ? You must have a passport by then . We would like to hear your ideas and opinions about open innovation . We are now learning about open innovation in Europe and US compared Japan . Oh my God , I 'm crazy , firstly I do n't love him , secondly I think he ca n't finish with her , but he wo n't listen to me , I do n't know what to do . The snow piled up in Tokyo the day before yesterday . I 've heard it 's a very difficult qualification to obtain , so I have to keep studying for at least a year . It is very weird that air conditioners create a hot summer with higher temperatures . She answered , `` Definitely , the former ! `` . Maybe some English people know this TV program , I 'll appreciate every correction anyone makes for me , and I 'm really thankful for your generous help . Complicated . I do n't like the rainy season . As time went by , my interest faded away because sometimes I did n't received any responses . There are so many people learning English in the world , it is understandable how many English articles will be created everyday and it could be overwhelming . They gave me a souvenirof cookies that contains salt from the ocean around Mont Saint - Michel . Last night was a rainy day . I found that there was nobody and felt a little scared . I was bitten by a black dog when I was 10 years old and I even had to stay in the hospital for 3 days . After going back home , I went online and found that there was another student bitten by them 1 hour later after me . I also had fever , and I was thinking that this [ CROSS OUT ] might be related with inflammation . COMPRENDES ? After all , I drank five cups of coffee in the end . After lunch , I pick up my cell phone and saw that there was a call ( message ) asking me to have a interview . Also I uploaded my artworks on Ultra - book . It is next to some newly built high apartments . The symbolic buildings of the modern life and old fashioned alleys . Sometime I go there alone to drink whiskey and talk with `` Mama - san `` . Do you immediately notice mistakes when you look at our English sentences ? I do n't want to make trouble for my senior business partner . In Japan , the government promised to give every Japanese person 12000yen ( about 120 $ ) as an economic stimulus policy . Asics shoes are n't as cool as NIKE ones , but they are very functional and reasonable . They work for our subsidiary in America , but I had not yet met them . The purpose of them coming was to have a meeting about making the budget for the next fiscal year . When they went back to America , they tole me ' Learn to speak English and come to America ! ! ' First of all , let me introduce myself quickly ! My company is a pharmaceutical company which was incorporated a year ago My favorite groups are SID , HY , RAD WIMPS I like eating delicious food . I worked at a Starbucks drinking a cup of coffee in the morning of that day . I think traveling is like buying hats . We can see a lot of beautiful sceneries , eat delicious fruits , go swimming in the sea and so on . Only last screen remains . ( Family ) or hope it will grow healthy and happy . So , what do you think about it ? I want to kill you , because you 're tasty . `` I felt surprised and I did n't know what to say . He 's just a 10 - year - old boy who likes to use humor to describe his emotions . I take a private English class once a week . Last Thursday I got a homework to write an article about a famous sports person using emphasizing phrases . I recently bought a new English textbook , and I read it as often as I possibly can . I have n't ever studied English seriously , but I think that my English will improve if I study it more . Do you know a Manga Cafe ? It is very convenient and cheap . We can read many Mangas , have free drinks , Internet , Watch TV , DVDs and relax ! But these days I 've gotten fat ! snow is beautiful , but also so cold : ( Please tell me what you know about it . I was accidentally attracted by a JP learning magazine . Its cover had a big title meaning `` spend no money to learn Japanese well ! `` . It introduced some language learning websites . ( Most of them are for Japanese learners . ) After a few minutes , I got an account . I could n't eat them here , because everything is very expensive I coud n't buy them easily . Recently my favorite song is Taylor Swift 's ' you belong to me ' ! I like making something like an accessory , so I thought that I could get some materials over there which have a different pattern than Japanese ones . Though I still look forward to going to Taiwan . Actually I started ESL classes . When I am finished with ESL courses , then I will study radiology . Introduction 2 I like to go to BBQs with my friends . They are from China , Korea , Turkey and so on . Let 's improve together and aim for good results in our studies ! howth is the place where the Irish film ' Once ' was filmed / made . but unfortunately it was very windy and cloudy . I 'm going to clean my room , hang out on the futon , walk around the neighbourhood , go to a library and bake a cake I 've had played the piano for long time , but I did n't play it for a couple years seriously . I admit that I sometimes like drinking some alcohol , liquor , hard beverages and beer on the weekends to relax but it does n't imply / mean that I am a alcoholholic . I speak English with foreigner on msn nowadays . Where do you recommend ? Many office workers have a meeting on Monday about last week 's activity , and must report their activity for their college and boss . The performance of Kim Yuna was excellent ! ! I came here from Italy . In Italy , the temperature is 40 degs . One night , a family is having dinner together . A man , who is annoyed by the chatter of girls next to his room , would say , `` Speak lower , please . `` This phrase indicates a bit of On a plane , a passenger was asked by a flight attendant , `` Would you like a cup of coffee ? `` Then she says , `` Please . `` I think it is more polite than just saying , `` Yes . `` I can say , `` Yes `` and then `` Please `` for adding some politeness . She said she is working as an import management adviser . `` Hi `` `` Hi `` `` 35 male USA U ? `` `` 18 male Jp `` `` good bye `` wow he 's the very same as the first guy ! ! About thirty people came . because I 'll play the drums at a concert hall for the first time ! ! Today 's class was English grammar about subjective moods , so I 'm going to write my diary with subjective moods . If I can speak English , I will make many foreigner friends . I am studying English now . I hope I can pass the IELTS as soon as possible , so I must work hard and I look foward to get more help here . Thank you He likes anime , so perhaps we can watch `` banishment of Haruhi Suzumiya `` , a popular Japanese anime film . More importantly , you are a very friendly person , and I am so grateful that I have a friend like you ! When I arrived in Tokyo , it was quite hot , I was sweating . Recently , Summer sale started at most shops so I hope to buy at Paul Smith but I do n't have enough money to buy on such expensive stores . One of my senior classmates in the foreign language department of SZU ( my school ) hung herself and died the day before yesterday in her dormitory . So we laughed . She was very surprised when the doctor told her . It is nice for me as a nurse and as a human . Although we know , either consciously or subconsciously , that money is not the end but the means , we tend to confuse money itself with happiness . Of course , money is so important for living in society , yet , you should not forget that this is an illusion made by human beings like laws and countries . As usual , I commuted by theMRT ( mass rapid transportation ) . However , you have helped me a lot with English . I ate salmon roe with soy sauce tonight . This is good for growing rice . on a trip in this winter holiday . I know I have to study more . Today 's weather is good , so I aired the bedding before going to the university . I prepared for tomorrow 's experiment . I ca n't figure out diffrences among them . . My client has decided to deal for the advertising , and The company 's human resources administrator said that My name is Stefan and I 'm 18 years old , born on the 17th ( of ) April ( in ) 1993 . Changing environment , I think is the prior problem for me . There are a lot of things I need to deal with it , packing luggage , becoming more familiar with foreign language , searching for a house to rent . . . . Do you have a twitter account ? Today , I made a new Twitter account for practicing my English . It 's a trophy . I 'm thinking that 's all for today : ) Jay Chou is a Taiwanese singer , and QiLixiang is one of his songs . It means a sort of plant , I guess ( I do n't know what QILiXiang is ) . Yes that is right , to understand Sanma is as difficult as philosophy . After the training , I ate a mixed salad with mushroom , carrot and beans . Actually , I 'm thinking about working part - time . I 'm studying the CALLAN method for speaking , reading and listening to the vocabulary book & CD , and trying to write these diaries for grammar . I decided to study my English harder so I could speak it fluently someday . She also knows a lot about Japanese culture . For example , she knows about famous Japanese models , singers and so on . Listening to music ? ^ ^ thus , maybe I will continue to write my blog everyday . I 'm not good at presenting or speaking , in fact I 'm kind of a shy person , but it was good experience . And , we talked to each other about what I will do after graduation and my campus life . Someday , I want to go to the Philippines . To be honest , I do n't have any idea of Rwanda . I do n't even know how to spell Rwanda . It 's been two days and nobody has corrected Pretend to be a Scottish Fold . . . . . . . . . . . My first day . Does cannibalism have to be considered with the idea of cultural relativism ? If I were a pig , I would claim pig dignity , pig privilege . It might be hard to get protein otherwise , or it might be a sacred ceremony in that society . The sea waves are beautiful . I do n't know the reason for the hole , One is the parent and the other is the child . Is it pretty ? Lately I am very poor because I spent much more money than I had expected to . Thankfully they were rainy days , so I surfed the internet , listened music , and watched movies . I even recorded parts of two songs - one was a Chinese song , the other was a Japanese song . It was in preparation of a Christmas or Thanksgiving video for my friends . I thought they had blocked me on MSN , heehee . New colleagues are coming soon . We 'll have to prepare a computer for them , and will also be responsible for training them . After my work is over , I always go to the supermarket near my home . I stop by this supermarket when they are about to close their shop . I found her really cooperative , patient , generous and smart . Recently ( , ) Haneda Airport changed from a ( mostly ) local airport to a true / proper international aiport . Recently , I started to write my blog on the internet . Honestly , I 've been afraid of declaring my true intention for learning English . ( space ) Although I do n't speak English often at the moment , I wish to improve my English . It is sherbet ice cream with many kinds of fruits . Because this drama is not a made - up story - the characters , drama , and everything are from real local life . Now some of my work is almost 3 months late ! ! Is it a magic holiday , or it is just custom ? ? ? He said to CNN that `` I can do anything , I can be anything `` Every time I tried to come up with an idea , the person who recieved a postcard said it was good . Active : Do n't blame me Passive : Let me not be blamed . Active : She gave me a present yesterday Passive : I was given a present by her yesterday . A present was given to me by her yesterday . but it will be difficult to establish a company . It is very nice of you to see my diary written in English . It has become an incomprehensible text , but this is the end . Have you ever experienced unstable sleep ? the horrible situation , we get used to it at the end . It was a chance to have an experience in an English meeting . There were people who work in other countries in the conference meeting . Others are hanging wind - bells and bamboo blinds as the devices to create that `` cooler feeling `` for getting relief the summer heat . But my friends who are learning German with me don ` t or can ` t participate in the program . But I have found that there are a lot of English words which although I can rean and understand them , I can ` t use them in writing or conversation . So I must improve my English vocabulary until summer . It was nominated for the 2008 Grammy award for song of the year . * ice cream soda It seems easy to convert feelings to the opposite one once I have recovered the original positive mind state . I think there is a kind of horizon between our positive and negative mind states . Remember you never drag yourself alone into the dark , but the people around you as well . If you think something positive , it will come true for you . Today is Saturday , and all my colleagues went out for fun . However , the results did not satisfy me . In Japan , we can watch it on Sundays , so I am in the habit of watching it . My school closes for summer vacation this Friday . After long and great summer vacation I want to study , study , study , and study again ! ) ) web - design courses , photography courses , preparation for TOEFL , dancing . . . Recently , the news reported on many food safety problems . Food retailers have responsibility , & nbsp ; too . So I have decided to practice my English writing skills from now on , on here , Lang - 8 . Creating a virtual life which correlates with your destination is the best way to get it . I drank medicine , and sleep more and more . I am very happy to join the big family . I am a Chinese girl . I want to make good friends here . My professor said , in this case , present tense means someone 's habit or a fact . I tried to memorize the new grammar for the next lesson . Tiger is one of the best animals ( which ) he likes . On the way of returning home , though I pushed the twin stroller , Every evening plenty of classical concerts are offered in churches , theaters and historical buildings , while in the daytime there are marvelous views of castles at Moldau . All the buildings with pastel colours and graceful decorations in the old town attract strolling people . The cheapest seat , which is located in the highest stage but still close enough to watch the stage and orchestra , costs just 50 kc ( 2 Euro , 220 yen ) . I had no plans , so I just hanged around and droped by ( visited ) interesting places . Second , I had a secret birthday party for my friend . Because she came from Kansai area soon accepted that application . Then we went to karaoke . Economics , science , engineering , and technology change day by day . We know many methods to release stress . Some people eat sweet chocolate , have heavy foods , drink alcohol , or buy expensive bags . If I have am stressed about something or someone , When you learn a language , you must develop the muscles of your speech organs to produce unfamiliar sounds . So , I ` ll cheer for the Canucks ! It gives us an English language environment . I hope everybody is happy , and all of us improve our abilities quickly . we could go fishing , run barefoot , and wander the streets with a vacant smile on our face and melting ice - cream in our hand . Are you like go for a walk with your friends , eat chocolate , and look at the sky ? Last week I took an English volunteer interview and people who pass the interview have the chance to show museums and other places to foreign tourists . I thought I did a bad job last week but today I received a message from the interviewer . She said I passed the interview and asked me if I wanted to go to the Zhejiang Silk Museum as a volunteer . What I have to do is give tourists a tour of the museum . Today I heard that my colleague would like to skip the writing class since she did n't finish her writing homework in time . Most of the TOEFL topics are dilemmas , we have to explain the main idea , find the sentence or appropriate supporting sentences and write about them in 250 words . It 's quite difficult for non native English speakers to discuss unfamiliar topics , I also tried to practice my writing here for my first TOEFL examination . Even if we ( can ) pass TOEFL to study abroad , we plan to come back home to work after we graduate , so in my mind I thought that studying in Thailand might benefit my country more than studying abroad , for which we have to pay high fees for the test and tuition . One good point of view for higher education abroad is to broaden your mind and accept a different culture or lifestyle . Studying in our home country will result in much research and development , this economic crisis will strengthen our country . Even though people in Thailand admire the new generation who graduate abroad , I feel I should promote higher education in Thailand . Today I heard of this website from a friend , he said it is useful for language study . We would have to understand different cultures . Someday , I wanna live in another country . Of course , soccer is n't the only exercise I enjoy . I bought a gadget named FITBIT . The gadget can log my dayly activity . The IF of the activity is web browser . Of course I 'm still bad with English . I might write in it every day . I like healthy food . So , I often eat fishes . This day I 've met a foreign couple . Although , the woman did n't eat a lot of sushi . I heard that there are few foreign people did n't eat law fish . That woman almost has not eaten any law fish . I Hate being alone My parents brought my favorite things to me : some Japanese food , some books , and some clothes . I love everything ! ! I am just observing this week and will begin This is why I think it is my part of identity . Lots of words disappeared from my head , and I forgot lots of grammar . I would like to share details about me to people who read my diary . I spent the money to connect the internet to my house . The computer is my sister 's , she bought it maybe 5 months ago . She do n't want to connect it but I do because I would like to use lang - 8 at my house . My sister said that after I connected the internet , her computer had a problem and may have broken it . . We do n't understand each other . In the end , I decided to cancel the internet service . Some people are now willing to learn Cantonese , but I have to tell you that you are actually only learning one version , which is the official one . Many centuries ago , lots of people from north of China moved to Canton to escape the war and cold , and then the immigrants ' language gradually evolved into a new kind of language , which is a mixture of Mandarin and Cantonese . I love taking photographs but nowadays I have not taken any . I 've recently started taking an interest in photography again . I attached 3 cute photos of animals This year , I called them nearly everyday to share my happiness and sorrows with them . When we leave we must remember always to come back . However , it will be rainy for 4 days from tomorrow onwards . Actually I think I can not get full marks on all of the questions . I mean I did it but I just guessed the last 20 questions . . . . . . There are KANJI , HIRAGANA and KATAKANA in Japanese , That 's crazy ! As everyone knows Japanese originated from the Chinese . So , logically it should be easier to guess what the words should be I think . It is a really beautiful city with many things that can make us very surprised . I do n't know how to describe how wonderful it is . I am sitting and enjoying the view from the window of the hotel and I feel a bit regretful because I am leaving Nha Trang tomorow . The Japanese rush to the fully - blooming cherry blossoms in order to hold parties , called `` Hanami `` . I heard that it is rude to say `` Can you play tennis ? `` So please search me ! ! ! ! ! ! He can speak Chinese very well so he know a good way to learn a language . Welcome party Their new circumstances , taking care of their baby and so on . My computer was n't working last night . I 'm looking forward to someone 's corrections . I was reminded about it when my new friend asked me when my birthday is yesterday . I knew why the students did so . Because when I was in college , it was very annoying when the teacher talked about something so dull and useless that I wanted to sleep . In my ninth month of pregnancy Starry , starry night , flaming flowers brightly blaze , swirling clouds in violet haze reflect in Vincent 's eyes of china blue . Everything seems to be so uncommon but moves your heart strongly . did anybody see the movie called `` Heartless `` with Jim Sturgess ? I need to know how to say something , cuz I have to send a letter to someone , but I do n't know english , so please HELP ME . I try to look at everything from the positive side . It was so funny thinking about it now . I would like to take this opportunity to exchange deep and beautiful thoughts with people from all over the world . It would be very nice if we could learn from each other , and be a good influence in order to develop as a good person . I would like to cultivate an international friendship . Thank you again . These are hand warmers , boot warmers , etc and small packets which are held in the hands . If Mongolians could get hokkairo easily , they could be so happy . Therefore I felt his patriotism in his essay because most of the students wrote about commercialism like the hospitality in high grade hotels . My L - 8 friends , please , give me some suggestions . However I ate a fast breakfast and I washed up fast when I learned that we would go into the field with my dad , exactly in the currant field . I found my friend was crazy about shopping . even though she had already bought many clothes last week . today I had a very good time ! cause ' few people will chat with me . Japanese animation Speaking of a Japanese animation , on Sunday evening , [ SAZAE - SAN ] and [ CHIBI - MARUKO - CHAN ] are shown on TV . bumper . So my friend and I were dizzy and totally tired . I 'm very interested in philosophy . But we care about the huge earthquake that happened in the Tohoku area . . The parade started at 10 : 00am , at that time it was a little bit rainy and cold . Many people in Omaha came to see the parade , so I really enjoyed it . this semester we finished our graduation performance perfectly ! ! ! im so pround of our show : ) and I also took the TF test , although the result is not high enough , I still can go to America next winter ! ! ! ^ _ _ ^ it 's really exciting : ) im going to Idaho . . . I arrived at the academy after class was finished , so I could n't hear a lecture for even one minute . . I felt so terrible because of my bad habit . But I think we should decide independently with whom we want to marry The first class of translating subject ! ! ! It was different from what we had thought before . We answered after discussing together . But it was really surprising because the biggest problem of learning about the subject of translating was not about the languages that we wanted to translate into , but the ability on using our mother tongue itself . Because my hometown in Tokai is famous for ham . . I 'm writing this at work . _ ( sorry boss ! ) She is very pretty ! I started studying English maybe during elememtary school , second year . Confiscate is the word I have memorized today ! Please teach me example sentences containing the word `` confiscate `` . August is the best season for diving and snorkeling if you can bear the cold water . DAIHATSU may not be as famous as the other automobile makers . The teachers were there too ; everyone drank and ate a lot . On my brother 's vacation we traveled to LA , Las Vegas , and San Francisco He 's not very good at studying things like English , math or Japanese History . Actually , I thought anybody could be a teacher , because you just say what you know , and so there is no effort for it . And you must paraphrase more simply . Controlling my budget So , I decided to control my budget by checking my expenses with an iPod app . On the way there , I saw a big rainbow crossing a river . Reading is especially hard . And If I have Chinese friends , I might / will come to like Chinese as individuals at least . I live in Italy and I 'm a biologist . My specialization is Nutrition . Today , I will introduce the SAGA international balloon festival . That festival is the largest scale event in my town , started in 1980 . It is so fantastic that many balloons take off simultaneously . For example , DORAEMON , Tom & Jerry , Pikachu , ATOM etc . The second is a very practical sentence because I might have a lot of opportunities to use this sentence . The culture of IBM influences me , they are dedicated to every clients ' success , innovation that matters , trust and personal responsibility in all relationships . Nowdays , I love to read books that writes about other languages . . I 'm trying to make some sentences . . I believe her river , asada mao will be better next time , , ^ ^ although there are some mistakes in today ' game . Therefore , this semester , I want to study harder than before with my favorite lectures . Love , family , friends , career , dreams , ambitions ; They are indeed significant , but they are no more important than one word called `` happy `` , because life is precious , imperfect and fragile . There are 28 letters in total in the Arabic language . Tanwin is used as follows : If you want to say `` coffee 's `` , then it will be qahwatin ( `` tin `` is kasra plus tanwin ) . If you want to say `` of coffee `` it would be qfwatan `` tan `` is fateha 's tanween . There are a lot of Arabic words that went into the English language . For instance , alcohol , lemon , soda , guitar , sherbet , arkari etc etc : ) I forgot the password and even my ID . if you know me , let me know my ID and password . I uploaded my last entry a kinda long time ago , maybe two months . I didnt write any entries about porno ! ! yeah I love korea . Furthermore , they have to hone their language skills to perfection in order to perfectly understand their lectures . Another problem is the fact that you may miss home and friends and probably wo n't get a chance to visit them frequently ( plane tickets are too expensive to buy every weekend ) . Earthquakes occur here from time to time . It 's weird . This year is very weird . staying with a few colleagues in our leisure time . It 's a little troublesome to organise a A good neighbor I have . Organizing and Planing is The Most Important Thing Like the saying , `` It ca n't be helped `` , I have to go through the process of trial and error to make a well organized and planned life . It was awesome ! After I returned to the house I put the pictures on the computer and enjoyed looking at them . In my class , I heard that the Japanese did n't take care of their own oral hygiene while in other advanced countries , people went to the dental clinic in order to undergo medical examinations twice a year . Some Japanese people who ca n't speak English at all said to me `` Oh Tomo - san you can speak English fluently , I envy and respect you . `` Every time I hear this kind of opinions from their pretty and witty mouths , I get so excited as he adrenaline rushes to my head . So I decided on it . After watching the video and listening to the song , I became more interested . According to the legend , a pair of stars were separated by the Milky Way . They are lovers but they can only see each other once a year . Yesterday , I sent an email to my professor with my lab partner . I 'm sorry to bother you , but could you tell us when it would be convenient for I am gon na join this club every Monday and Wednesday . I have not written written this diary for a long long time . Because the bowling alley was so crowded , we had to wait for about an hour ! I went crazy bowling and played three games . The band I 'm crazy about is called `` HEAVY CLAFT `` , they are a melodic punk band . You may know about the Snow Festival that is held in February every year . My strong points are building servers , and responding to security problems . I like to read everything around me . As I got more interested , I watched them again and again , and finally , I could understand what they were saying and laugh with them . Tomorrow morning is going to be scary . Because I think that growing the foods is fundamental to human life and especially in Africa , or other developing countries , we need to help teaching agriculture skills . Although it could be translated into ' Genki desuka ? ' or ' Tyoushi ha dou ? ' , we hardly say these . At the same time , I study law . I might want to be a lawyer in the future , just might . . . Beginning today , I will write notes in this diary . Yesterday was China 's traditional Valentine 's Day [ Qixi ] , however , it seemed nothing to me . I just try to think what I did wrong , but no answer comes to mind . I know that I am a new worker , but I want to be a good worker , and I trying to . Good morning everyone . There are many convenient menus in computer programs . Although I sat in the right front seat , I could not keep up with her ant - like voice . I really want to say `` sorry `` to you . These days , I thought a lot of things about my college life . I made so many mistakes that cost me lots of chances and time . In this world , there is just one person that I can call `` father , `` and only one person that I can call `` mother `` , so , what is the cause of me not cherishing the days I stayed with them ? The workshop with Japanese in our school was finished yesterday . After two month in July , it 's our turn to travel to Japan and have a workshop with Japanese . I expect I I will have a good time and meet more Japanese . If I confronted with them , I 'd make friends with them . Now she 's looking for a job , especially in Marketing management and advertisement . I have to do my best at all times . And particles of sand that also shape stars were abound in the beach . He became very happy when it arrive at my house . The address was in a different part of city which he had to visit . To reach the addressees he wanted , we organized a car and a map according to a plan . We finished our program at 8 o ' clock . And the time came for him to leave for the Ukraine , because he has some work to do there too . Can I ask why the eclipse happened earlier than estimated ? I should be very very careful . Last year the winner was Valerio Scanu , with a `` melodic `` song , I 've often said it is `` a song for old people `` because of its rhythm , but it is not bad XD : ( 4 years ago , I started UK 's indie rock music and became interested to study English . ) I hated English , but now I like English ! Of course I 'll cook some spaghetti and curry ! Anytime that I 've enjoyed the plot of the book or the writing style , I can say I 'll always read almost all the books written by this writer . I think it 's like the beginning of an `` intimate `` relationship with the author and I want to know the `` world `` of this writer . A video about sushi in English was shown and the instructor explained sentences which were used in the video . `` Nigiri sushi has long been a favorite delicacy for the Japanese . `` I 'm busy and I 've been going to bed so late recently . They catch mackerels For my coworkers and customers , I work hard ! ! It went to Hornsby via Macquarie Park and University . At that time , I chose to leave that school And every time I have seen a middle - aged jogger Today I heard some shocking news . The prior president of Korea committed suicide this morning . Before he died , I also felt a sense of betrayal like other many Korean people because of his irrationality that was revealed a few weeks ago . Of course , it 's just a superstition , but my tutor was very I interested in it . Eternal sunshine of the spotless mind Or , just your projection or imagination . Therefore , I went to a movie theater to watch Transformers ; dark side of the moon . But in the morning , we went to the Farmer 's Market . For example , there were animals , Superman , and a firefighter . First , some children can not go to school . In children 's case , they will be unable to learn in the school . Other than that , children maybe unable to go out with their friends . Nobody knows when wars or tributes will happen , so they have no choice , but to stay home . for protecting ships . It 's going to be longest bridge in Korea . Rakugo is one traditional Japanese art of storytelling . Although signing in to skype and having to take a long time to solve a little problem every time , So I am really gratefull . I decided to recite an English word every day and start using it . We publish library news and I have to take part in making it . I can see lots of differences ! It 's a really beautiful sea but we are not allowed to swim in it because of the crocodiles and sharks ! ! ! ! ! A duplex house is a dwelling for two families , including two separate residential units . I mean , two entrances , two kitchens , two living rooms or such . A young woman called Natalya had been talking to us about working for the famous cosmetic company `` Oriflame `` . When we usually go out , we leave Grace in the Pet Hotel . Our eldest son went to Australia this summer for a week . Fortunately Grace got her space in the car . My husband set up the hammock between the trees for the children . Instead of them she played with her favourite toy . I think if my plan were to be carried out , everyone would feel more comfortable ! It 's very interesting ! ! ! Today I found this website on my friend 's Facebook entry . I immediately registered without thinking . At last I purchaced a 42 inch TV with three tuners for digital terrestrial broadcast . That means we are study companions to each other , each doingour bestfor our ownpurposes , I think . The first two years were difficult , and they were nothing I 've ever experienced before . I got used to being here , but I lost my motivation toward learning English . I hope it will be a good opportunity to get my motivation up . I really love that we help improve our hearts together . I updated the firmware of my wireless router and changed its channel again . In my prediction , Hideo Higashikokubaru slightly has an advantage than others because of his publicity and his achievement as the former governor of the Miyazaki prefecture . We got a Disney English CD . When it comes to types of damage done to crops , in Australia `` fire `` was the greatest Tomorow Never Knows Tomorow I was going to play tennis and have a BBQ party at the tennis club , which is the club where I play tennis almost every Saturday or Sunday . It is said that the breastfeeding rate in China has been declining . Besides , as I 've mentioned above both parents have to work in this competitive society , so they have little time left to take care of 3 or more children . girl that Iove . There are fountains , crystal I also love this place because Even when they began to posses them , they did n't have many applications except for calling , compared to the recent phones . I decided to start this English blog to have an opportunity ( spelling ) to write something in English . And we went to bouldering gym . Bouldering is a sport that you need to climb up about 5m on the wall . We played bouldering for about 2 hours . I like my school festivals . First of all , I have to thanks to `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me , that is really helpful . This morning , I suddenly wanted to make a spanish omelette . I really missed her spanish omelette and I decided to make it myself . Instead of potatos , I put tomatoes into omlet . I recommend you to try itwhen you make omlet . They also recycled the trash . For a long time , in this journal I have not written . Today is the start of a challenge ! Now I will go to lunch . After , I will write in this journal ! I watched TV to introduce the online way to study English , the name of the TV show is `` I know `` . I heard it is made in Canada . The man who began to make `` I know `` said it is most important to improve words and phrases . So far , I studied English grammar . Hanging out with my friends . It 's a beautiful city with blue sea and golden beach . NO . 1 Middle School , please wait for me ! ! ! At first she needed me for some help on things which she really did n't know how to do . From the dorm aplication , learning program apllications , to every step of preparing an activity for students of our department , she always asked me to do them for her . Before I would refuse it indirectly , and she was still fine . But now if I do refuse her , she gets mad and says that I 'm very mean to her . The Beginning of 2010 Because I am a volunteer at my school now . I hope we can learn different things and happy together . These days I recognize that English is very important . Previously , I do n't have so much desire to see the concert , because I ' v seen linkin park 's concert once . For example , when he wanted to learn Hindi , he just went to India without studying anything . I thought I had not written a journal for just a few days , but actually it was a week . I am turning into lonely person . But few hours before , He called me and said that not available today . . . Anyway , just I told my feeilng nowaday in the diary . When we were on our way home , my daughter fell over suddenly ! His dancing and songs were brilliant . scarf , a pair of mittens , and lipstick . So I just remembered this web site and how useful it could be ! I have had a bad headache from this morning . It is very uncomfortableso I got a pill and took a rest but it didnt work at all . . . I need to put more time in my study / studies , especially ( in ) English , in order to get a good mark in the graduate exam next year . I had Toeic Class this evening . When I arrived , I was very hungry so I overate . Hello , my wonderful friends . The day before yesterday when I went to the internet shop to fix my computer , while I was on the lift ( elevator or something , I do n't know how to tell you in English but when you do n't want to use the stairs , you can use it to help you up to the top ) , I was carrying my PC in my hands . There was a little child around 5 years old who pulled my hair > . < When I was young , I was in love with eating American style junk food such as pizza and hamburgers . When I eat something so delicious , I feel so good and happy . I could n't remember every thing . I have class `` tomorrow `` about American sign `` Language `` . First I thought that is like the English languge but not really they are for for the poeple can to listen so they shoud be use the sing to conversation . I have class at 10 . 00 am in the moning . good night from Thailand now . We are going to sing two songs , one of three part chorus plus piano accompaniment , and one four part a cappela chorus . I was suprised . I went to the chilli festival in Fremantle today . For my friend I love eating , listening to music , watching movies and talking ! I went up the stairs two at a time because I was hurrying . It ` s an American drama . I fell in love with watching motorsports , especially Formula 1 , yesterday was the last F1 racing day of the year . `` Let 's watch Star Wars ! ! ! There 's a TSUTAYA over there ! ! ! `` So , we went to TSUTAYA and borrowed Star Wars Episode 6 . But I tend to be lazy studying . I must be a better learner . Everyone please correct my sentences . ( : _ : ) and find a job as soon as possible . . . . . . . Now I 'm looking for a theme , an interesting or favourite one for the 4th year of University . Moon Rabbit is the most famous tale in Japan . It is common sense that Moon Rabbit is hitting a rice cake on the moon . Because the moon 's silhouette looks like a rabbit hitting a rice cake . A talented person who can talk with a goat I like the hamburger and I ` ve tried them when I went to America . I wonder which hamburger shops is more popular in America ? Could you recommend any good hamburger shops ? I want to try some good hamburger shops again when I visit America ! But , hey I 'm talking about me right now , so that means strange girl meets strange boy in very weird circumstances . and lots of koreans confuse this with ' flatter ' but flatter can be used in the opposite way for example when your friend wears new clothes or gets his or her hair cut , at times like these when you need to set the scene for somebody to make them happy . The driver pretended not to hear me , and completely ignored me . raining ~ raining ~ It 's raining today . I 'm sure this is n't my general level English because it only measured my writing skills . I think that gene recombination is so useful and revolutionary for us . All members of our high school choir club were so nervous , but we managed to get through this which means that we can go to the next stage . The reason we were so anxious is because our performance this year was of a lower standard than average . I just scolded my kids . I scolded them . Anyway , let me talk about my plan on Christmas . The problem is I have no idea what present should I buy for her as a Christmas gift . I 'm a college student and I will graduate soon . But I 'm glad you asked me for my e - mail address . Drinking with my custumer . The atmosphere is so nice , I want to visit there again . Then one of my customers said that you do n't have to say the reason why you can not ; When you do that , other people will help you achieve your goal ! Christmas Present . ( We bought christmas presents for each other with my husband . ) I want to use now , but I ca n't . I ca n't wait until Christmas Eve . I have DVDs and some magazines about it . I wanna collect more of them . And I wanna watch `` Eclipse `` soon ! ! I like B because her choice in fashion is very cute and gorgeous . And she gave me a pocket tissue . However , it will be revised , and we can not be satisfied as long as the promise of free highways I invited two young ladies to come to my hometown Kamakura . in Japan , this is a famous anime moive , I guess it is because I only studied reading and grammar hard when I was a junior high school / high school student . It is strange as a human being that I can read , but can not listen to English , is n't it ? I have just finished doing exercises from an English page . I sent a message to my friend on Lang - 8 . I feel happy coming again to write my diary . I will try to write my diary in this site once a week . I really feel like having a little bit of English in my mind before I start working today , because I want everybody to really understand what I wanna convey and of course I wanna be ready to answer questions or requests at the store . I hope my job is not so difficult and that I may ( can ) learn a lot of new stuff . . . God please make me very smart and wise ( as ) it 's incredibly difficult to be in another country . . . I wanna cry sometimes but I cant in front of all these people and I ca n't eat anything . . . . I do n't wanna buy new clothes , . . . Yesterday , I did not sleep well . Secondly , the best advantage of autumn is apples . It 's obvious that autumn is the time to read books about autumn . I wish I could read it in the original , but I afraid my language skills are n't good enough . Because you were samurai . The first video clip was taken in Torres del Paine , a place near Chile . Today , my daughter 's best friend 's parents invited my daughter and I to their house . I answered that I did n't remember the number but as a regular visitor security guards usually let me in just by calling his apartment because previous guards obviously remembered the number of the apartment . I heard that in Helsinki a scoop of Haagen Dazs ice cream is 10 euro . I have been studying English recently . But I shall never give up until I get what I want ! One of my English teachers taught me the pleasure of learning English . it seemed to me like a movie or drama . I suppose cooking is far more creative for her than working in a small design firm , Actually , her food is really good and most of them are her original recipes . I want to make many friends . In China , Friends videos , mp3s and scripts are very very popular on the internet . My friend likes Joey because he is funny and does n't share food with others . Rachel is a beauty and Phoebe is a weirdo . Everyone 's performance is perfect on the first and last seasons ( I only saw season1 and 10 and I need more time to download and watch it . ) I ca n't help laughing out loud when I am watching it . I 'm watching the last episode . She gave me an e - mail and she informed me how she 's been getting along in it . In a ring , two sumo wrestlers hold a baby wrestler face to face with each other . First of all , I did a good job , probably ! At least most celebrities have to work very hard . As far as I 'm concerned they also have to spend lots of money on security because their private life is public . I was diagnosed as having allergic conjunctivitis . MY BIGGEST ADVENTURE IN THIS SUMMER ! ! ! I enjoy such unexpected meetings while on a trip . When we get along with people , even strangers , it will be a memory in our life . He can jump and run very well . I passed the Singaporean driver 's license paper text in Feburary , but 3 minutes later , I realized that I had already lost my JAPANESE DRIVER ' S LICENSE somewhere in Singapore . To be honest , I do n't want to go back to Japan for even a few days . Besides , the Japanese government will raise a consumption tax up to 10 % . So this time , I want to go back to Japan directly by Singapore airline . The image of Japan for foreigners , I think , was the mysterious nation , concrete jungle , and men having the ethic called `` samurai spirit `` wearing suits . However , the prejudice in which Japanese people are marked with not having human face is totally untrue . People who have little knowledge about Japan tended to think like the descriptions I mentioned above , ironically enough , the disaster revealed our humanity . During this time - space travel he finds his first love , Livia Beale ( staring Moon Bloodgood ) , who left him without saying goodbye eight years ago and had disappeared since then . A main difference between Italian and English is the length of the sentences in their written form . Thefirst point is the `` economy problem `` . Thesecond reason is the `` road condition ( s ) `` . Hoping there 's someone to save me , to bring me far away from here , to a brand new world full of blossoms and flowers , fresh air - the ideal kingdom I would like to belong to , in which I could completely display my talents and achieve what I deserve . I 'm waiting for your answer ! I 'm so hungry , but I 'm drunk . Hi all , my nickname is Madi and I 'm looking for native English speakers . Recently I have been thinking about being sensitive . Because I suddenly got a pain in my back yesterday . After seeing a model wearing this dress in a magazine , I decided to order it from the internet immeditately . I 'm going to Turkey ! I 'm going to Turkey with my custmers tomorrow . Hope I can keep on writing at least a message everyday and have a lot of fun here . * Tomorrow will be the result of the exchange student process . I did n't answer that question well . . . I hope I will be allowed to go abroad as an exchange student . Please , please , please . . . ! ! I met with a friend of a friend last night . I could answer only half of them and could n't answers the other half because I could n't understand all of their questions . Basically , this is the first time I have spoken with regular people . They responded immediately , and told me that I should not pay much money to get a new one . I was lucky . I really appreciate their help . My mouth was so cold that I could n't taste which flavor I was eating . I 'm planning to go abroad while on vacation next month . Luckily I was able to get a ticket to America at a low price . But I have n't reserved a hotel so I still need to find a cheap room . It 's been a while since the last time I traveled abroad . My girlfriend 's birthday is on the Monday of next week . actually I did 't prepare his birthday Today 's weather is not good in Niigata city in Japan . Spelling I will keep making an effort to write English diaries on Lang - 8 . I went to Hong Kong and Macau with my mother and sister . In Macau , we ate the same egg tarts and saw the same street scenery in a drama I watched . Though the tart was a little fatty , it was popular among other tourists . Seeing beautiful buildings , scenery , and shops , we felt like it was a dream . I can use Japanese and I am especially He is 5 ' ' 5 , skinny and had long blond hair . The one I want is very expensive . tomorrow I will go , though . They should control themselves although there is the word ' youthful mistake ' . I watched each movie , and I actually felt that the movie lacked an explaination and that it 's difficult to understand the story . My host father sometimes takes me to various place , for example climbing a mountain , or shopping . . . If I move downtown , I have more time to do something , study English , talk to strangers , or take workshops . . . I therefore envy Korean fans . We are not sure when it will be broadcast in Taiwan . It 's like endless waiting and really tortures me . In a shop , 32V was cheaper than 26V , a staff said 32V was more popular than 26V , so the price was cheaper . So , I bought some clothes , but , unfortunately , it is too big for me ! Ca n't remember words , write correct sentences or even can ' tspeak it properly . I had Japanese homework from my mother . avoid : We should avoid direct conflict when we disagree . postpone : Our school postponed the baseball game because of the bad weather . interfere : Some kids say that day do n't want their parents to interfere with them , but in actuality , kids ca n't live without their interference . lack : I sometimes lack patience with my sister . I want to talk with many foreigners in English . Especially , when its roof is covered with snow . It 's so sweet but it has a terrible smell . Because , I always believe in the power of jewelery which is a really wonderful power like charming . Of course , I have one which is anklet was made by myself . Nara is a traditional prefecture in Japan and it is famous of having deers . Sentokun is the main Buddhist character of the 1300 year anniversary of Heijokyu because of him having horns . However , some people debate which character is the best because Sentokun is n't so cute . Come tomorrow , too . Recipe for macaroni salad with avocado Mix all materials in a bowl and add salt and pepper to taste . I was surprised that some people actually complained about the taste of their lunch . After all , I just have less time to prepare for my / the big exam . Fortunately , I can enjoy sunshine every morning . Remember , when you get on a train , you have to wait for all people who want to get off it . I 'm going to go snowboarding in Nagano ! As time goes on , I can learn , experience something new that I did n't know about . There are some vegetables left in the fridge . I want to know English . My dream is to studiy in a British university . It was not as strong , however , it was already expected . We need to see the details and further research on it , so we still have a neutral stance for Hitachi Chemical for now . I turned on the TV and I was very surprised when I watched the news , So I thought the earthquake on TV and the one we experienced was different , because it occurred far from here . The legend was that : Chang E , the goddess of the moon , swallowed the elixir stolen from her husband and flew to the moon . The Mid - autumn festival is a traditional festival and it means family reunion . In Sydney 's Paddy 's Markets , there were many things . 1 . Prepare everything before going to work at night My school is an airline business school and I want to be a great member of staff ! But , I worried about her condition between now and the next olympics . If somebody tries to compel you to learn a language , or teach you something you do n't want to know , it does n't work . It 's my New Year 's Resolution : ) I do n't know how much time I 'll have , but I want to work 2 hours per week at least . Preferably , I want to spend one hour a day , but I think it is impossible for me . My mother is very anxious and my father also does not know what to do . If I had already mastered English perfectly , I would apply to it . I have just joined the site and I do n't understand how to do corrections , not comments . I tried to correct some people who want to learn the Russian language but I could only leave comments . Unfortunately , two of them died just after they were born . I named him Yuki because he is as white as snow , and yuki means snow in Japanese . Is interesting that now , just six months later , Julia had kittens again . Unfortunately , this time I will give all the kittens to friends , because I 'm going to have a new sister / brother ^ ^ Miyavi 's first concert was awesome ! He had a DJ named Teddy Loid ( he remixes some of Miyavi 's songs ) and a musician called KAVKI BOYS . S : Also , I hope that Miyavi sings the day of my birthday ( July 11 ) . . If I do go to whistler on thursday , I do n't care about college . I suddenly discovered that being alone in a foreign country really challenges my courage and endurance , which really pushed me to a tight situation . That was something I did not want to admit ! I can not write it down in English . My job is Systems Engineer . The reason of the times is crappy form of management . There are a lot of problems so I wish this form ( of management ) disappeared . mukashi ha nihongo ga amari suki jaarimasen desita nihon go ha hontouni muzukashi kara . demo kare kara ima wa nihon go wo motto2 benkyou sitai desu . . . watashi to kare wa takusan chigaimasu yo . . . So , I 'll go to the office until 8 : 30 ( every day I go until 8 : 00 ) She is also an actress . Shoma helped her . I wanted to go further west to Turkey through Iran , but 911 happened when I was in the northern part of Pakistan very close to Afghanistan , and so I had to give up my traveling before the Pakistan - India border was closed . Nothing can cure the heart but the senses . bus roundtrip , it 's kind of a stupid thing ! ! before I knew it . I am a spotlight man and a sound - effects operator . Good evening everyone ! But the classes starts the day after tomorrow ! I have been so depressed and sad because he was leaving . He did n't want to spend four days with me before he left just because he was tired of seeing me depressed . Today I tried to read the practice passage like I was talking with my foreign friends . so I stayed home all day . We enjoyed horseback riding very much . This photo is one of them I usally drive short distances , Often it depends on the kind of job the employer is involved with . If the employee is payed appropriately for his skill , he wo n't move to other companies , and that would be better for the team . I am talking about the advantages and disadvantages of playing sports . First , I will talk about the advantages . On the other hand , I can see some disadvantages to sports . Today I met a beautiful lady aged 90 years and a handsome guy aged 82 years in a park . It was very interesting and much impressed me . One is that they have many topics of conversation including TV news , the catastrophe in Japan , Science , Dutch history and even Alzheimer 's disease . Unfortunately , _ people , _ living in recent days , _ not only scientists but also officers and citizens , concentrate on the most advanced inventions or outer space rather than basic science . In this essay , I will attempt to explore the causes and solutions . Specifically , _ it depends on the nature of basic science . Accordingly , the solutions to this issue should be varied . In terms of this , teachers not only in primary and secondary schools but in universities and colleges are essential for nurturing students ' passion and curiosity and motivate them to conduct that research . Although causes of this issue are various and complicated , _ effective measures still can be taken to combat it . What a nice weather today ! And pictures of the sea and the sunset are beautiful ! He was supposed to stay here until this August , but he went back to Holland the day before yesterday because of the nuclear plant . I still ca n't believe that he has left yet . In Poland the weather is rainy . When I was in job the weather was sunny . The teacher using this site is from the Philippines University , it is most inteligent in Philippine . I love coffee When I explained to visitor a procedure in English , how to do a cold massage and she told me `` thanks `` , I felt like I was in nirvana ! Now I often hear news that a lot of temporary employees ( temps ) are losing their jobs from the worldwide financial crisis . What the diference between writing in a journal and free writng ? In my opinion , reading books is the best way to improve writing in Japanese ! This is first diary . He said that the girl told him that she loves him by text message , and he asked if the girl really loves him , because foreigners do n't say `` love `` so easily . Oh man , Lang - 8 is really nice . I was shocked and got dressed at the speed of light and rushed out of the house . I like alternative rock , rock steady , reggae , FUNK , ska , and soul . Autumn is just around the corner . I grew up in a small town and I liked the quiet atmosphere . ( The amount of ) Public transport is convinient . When I lived in my hometown , I commuted to college by car . I can dring alcohol in the workplace and I can sleep while commuting between university and my home . You can meet with many different people and experience ( ? ) many talents and characters if you live in the city . ( I do n't know the name of them . ) My grandfather said that even though I prepared the guard for the strawberries , the birds take them as the strawberries grow red . As it 's reasonably priced and has good tasting food / tasty food . I had imagined a simple dining hall but the outside appearance is quite beautiful and the inside also had a good atmosphere . The attached picture was drawn by a fan . It is difficult to understand . . . I think that his performance was almost perfect in spite of his weak team Sauber . Everybody in the circuit regarded him as special immediately . Today , I wrote a journal ! And last , the main character is loved by everyone . My boyfriend buildted them as he checked the manual . My job is computer programming , in the field of * Embedded . Day by day , I write a little boring programming and read manuals written in english explaining IC ( cpu , controllers , and so on ) usage . Only optimyzing programming that will more efficiently use the cpu or multi core cpu makes me happy . Learning computer science without understanding english is more difficult , but I hope to learn their higher level of technology . So , I unusually chose another bus . The story goes back . . . If you will teach me , please become my friend . Thank you for reading . So I 'm happy because the holidays are coming and I can get out everyday with my friends = D Going to my part - time job , I took my wallet out of my bag to take the subway . There was my tomato juice bottle , and it had spilled because the cap was not exactly locked ! ! ! People might think strangely , someone wiped red liquid like blood ! I smelled it while commuting to my part - time job . It 's about how to learn English . I regret sometimes that I did not persist in doing dictation and writing exercises everyday . I try to use more complicated words to make more interesting articles , but , unfortunately , I find out that I do n't even know what to write in my own native language . I 've recently developed an interest in studying Japanese and Spanish , so I hope that I 'll be able to write some entries in those languages soon ! For instance , English has more clear structures than any other languages , which helps Japanese people to learn more quickly and deeply . That 's because Japanese people have logical thinking . That is , Japanese people would be well matched for learning English . Moreover , now English is being taught to children in schools , but if another language became the official language of Japan , we will have to teach it to children in elementary school . I want to be good at English , that 's why I register and write a diary in English . Iwas tryingto find Icarly 's transcript . My team dropped from B - league to C - league last year , so our team 's top priority this year was to win all nine games and to win the relegation - deciding match . However , we have already lost two games . To qualify for the relegation - deciding match , our team has to be in first or second place in my league , so we ca n't lose tomorrow 's match . it has become a popular food nowadays . Honestly , I 've been studying English for a longtime . Sometimes I watch American dramas on FOX to practice my listening skills in English . My favorite drama is Ghost . I hope I can understand these TV programs naturally in the future ! Seeing them made me want to buy one , even though I had n't intended to do so . So I arrived at the gymnasium at PM 8 : 20 . Many friends would be able to correct my diary entries , and I would be able to correct a Korean learner 's entry too ! I want to go to America , Britain , or Australia . It allows ordinary people to serve as judges in criminal court trials . Under the system , six citizens are elected randomly to sit in criminal cases , such as murder , robbery and so on . The court will begin summoning lay judges in July . I think as the training keeps going , it 's getting harder . So , I think realy hard about the work that involves taking care of my daughters . I 'm happy when I see the my daughters smile . Also , you have to take off slippers and put on another pair of slippers when you enter the bathroom , I found Japanese customs might not be understood by foreign people . Then I took the No . 1 bus to Zhuijang Road . Your advertisement was really interesting . The position has attracted my attention because I think that my qualifications will meet your requirements . I am a graduate of Dhonburi Ratchaphat University and I hold a bachelor 's degree in Public Administration . While studying at the university , I enjoyed learning new things and participating in all kind of activities , such as Public Administration and Low End Management and I am very well accepted amongst my friends and enjoy challenging tasks . Please , correct all my mistakes . I feel lazy , do n't feel like eating breakfast , or doing yoga excercise , , , I have been playing table tennis with my sister for six month . So , I 'll start working there next il April . Minsa is very well known . This beautiful fabric can be found in gift shops throughout Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the people , their families and the village . First , it disperses your body 's pressure more widely than conventional ones , so you can sleep well . By the way , When I watched the weather forecast , the weather reporter said the rainy season will start this weekend . Usually rainy days are very cool and clear , but the rainy season is very humid and gloomy So I hope the rainy season ends early . Do you like the rainy season ? My daughter is stronger than me . Yesterday it was repaired by one of my best friends and it is back to normal now . My favorite food is chocolate . ( A HYDEIST is a member of HYDE 's fan club . ) Today , our class lost in the basketball competition , but I think that not everything in life is a competition . Class seven , ok ? Go for it . I recommend potato - chips with chocolate as a present from Hokkaido . Of course both man and woman . I started writing an English diary today . I hope this website ( ? ) made me increase the English and the Korean language skill ! It was `` Girls generation `` ! They are soooo cute ! They sang `` Gee `` . Recently , I am into KOREA ! I would like to visit SHINOOKUBO . It is so powerful place . I search information over the Internet about work ! lol I wanna go soon . . . . ! but , I need money ! so , I am going to work tomorrow fo my goal ! This class is required ( or mandatory ? Either is fine ! I ca n't speak and listen to it properly , even though I 've studied for more than a year . My friend said his relative who is fifteen years old is going wrong recently . But these are very expensive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alcohol is from double to triple the price of Japanese one . Additionally , the goverment manages them strongly and if they go bad once , it 's very difficult to recover their career . They can buy cigarettes and alcohol , and also drugs . I 'm a lawyer . Today is a boring day so I 'm searching how to learn English and I found this site ! ! ! Please correct these sentences ! ! It is very difficult but delightful . Fortunately , I have n't had a traffic accident . we watched a comic movie and drank I ate lunch with my colleagues . Recently on Saturday and Sunday , I helped the preliminary games of the high school baseball tournament . In particular , I activate the electronic scoreboard and keep the score ( scoring a strike , ball out , etc . ) . It 's very fun because I love baseball so much ! I think it 's because there were many chances to eat out . I am studying business administration at a university . Currently that company does not have any foreign customer , but will expand overseas in the near future . I was really jealous . However , I love English so much , so I hope I can improve my English here . Tsunami is coming It was raining this morning . Yesterday , an earthquake occured off the coast of Chili . The seismic sea wave is coming to Japan . A seismic sea wave is called a tsunami in Japan . The Japan Meteorological Agency says that the width of the tsunami is about 1m along Tokyo bay . It is important to watch for the tsunami , but it is a little difficult seeing the TV channel . My hobbies : Playing sports , watching movies , listening to music , playing the guitar , singing , and reading books . It surprised me a bit , but August 31 is the first day of the new school term for my older boy / son ! The Japanese dialects In the kitchen , there are two refrigerators , and they will be full of food . She was nominated for an Oscar , which is a big award that everyone knows of . Actually , I practiced singing Miley songs in English before I came to the USA . For me , she is very out going and has so much confidence as a singer and as a movie actress . Unlike other beautiful actresses , she is very natural and shows who she is . She probably dislikes being called Hannah Montana in the Disney movie . This hotel is managed by a nice woman . She is about fifty years old and treated us as if we were her own daughters . May be a liar does n't realize that sooner or later his / her lie will be revealed . So I bought almond candy today . At first I was afraid because I do n't have enough Bible knowledge . But I have prayed to the Lord that I wanted to serve otheres . I was crying , I completely felt the love of the Lord . . And then , I thought I would like to go to the biggest book store in my prefecture , When I got on , one Asian guy got on at the same time . I noticed it after he left and I thought I should hand it to the station officer , but it was kind of weird because the purse was made of crocodile leather . For example , if an earthquake happens , what can they do ? I stayed up to prepare for the German test last night , so I was a little sleepy all day . What I have learned from today 's lesson is that I have little vocabulary , so I decided to do some paper work hard . For half a year , I have done nothing but listen to basic English conversations on my Ipod . - - - - - I think this sentence is wrong . I do n't know how to express it . I hope we join round 16 together . We were flying the kite , but the wind was really strong . I could n't hold it anymore . I do n't understand . There are four different plastic bottles and a can of green tea . Yesterday , I had a dream in which a foreigner spoke to me in English and I responded to him . I like to drink juice that I have made using a mixer . mixer . I often drink banana milk shake juice that I have made I drank an apple juice milkshake this morning . is very hot . I want to write journals in Japanese however my Japanese is not good enough yet . I caught a cold . Recently , I hardly eat any hot food . It is not huge but it has various animals . Dozo yoroshiku onegaishimasu . But fortunately , one of my relative who is Bostonian invited me to join the X ' mas party ! ! I 'm not sure if American people celebrate or just enjoy . Anyway , I should prepare to the party . One of them is in Harvard University . so , I 'm thinking of taking another school ( Harvard ) class . But I do n't want to miss the opportunity to study hard `` English `` You see , they were almost naked except only Fundoshis - - Japanese traditional men 's underwear . I do n't have my own , unfortunately . At that time , the Ministry of Education considered that learning English at primary school can cause the loss of Japanese language proficiency and deficiency of knowledge on other subjects . Now that we have gained prosperity by exporting mechanics to foreign countries , we need to communicate with many English speaking people who are not only from America but also many other countries . My language exchange partner I met him nine years ago and we have been chatting through skype for seven years from Monday to Friday . I could talk with him almost everyhing about myself , like having trouble , complaning something and being angry about something . He is a really good friend , not only as a language partner but when our priorities change a lot , we can create time to study together . It is really difficlut for us to keep our motivation high . I 'm sure they taste fantastic ! Althoughit was so chilly , I felt very good . Another one of my friends is studying business management , but she is intersted in many fields , even art . I thought that art and business are unrelated . She is also interested in social welfare and irregularites . Maybe we are n't allowed to barbecue there , so the someone in the neighborhood made a phone call to the fire station . My father looked happy because all of his children came and visited his wife 's grave together . Besides , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street restaurant ^ ^ Because Tanzania is a pretty big country , the road condition is not good , and the transportation condition is also not good , so we can not meet often after we left for our new post . I have been learning English [ since ] junior high school , senior high school , and university , [ so that 's ] about 8 years . Nonetheless , there are many buildings that have been here for several hundred years . We went to Nagano last week and stayed for two nights with our relatives living in a neighbouring area . More exercises , more mistakes . . . In software business , English is most important language because almost major software is created by USA . Technical documents are written in english . I wonder whether I will be able to pass a driving test . So I will present them orally this Spring . If you are reading my diary , please fix any incorrect sentences . Korean companies appear to enhance their competitiveness in the global market by luring qualified people worldwide to Korea , and Koreans who are willing to or are forced to live abroad support Korean companies outside Korea . and now I 'm so hungry . . . First , if we could n't find a job before graduation So one of the most important things for Japanese students is to find a job during your study . It is called `` Free iFlashcard `` . It is Kansai dialect . They have Tonkotu soup and thin noodles . But since I 'm a doctor , I work at an emergency information center instead . To get more active and productive , I have started to make more of an effort to learn foreign languages , especially English and Japanese . The reason why I chose English is that it is such a common language spoken all over the world and is necessary in this day and age . I will study more and more to improving my language skill . I work for an electronics company , in the legal department . Please , teach me English . D was absent , we would want a substitute who is also a native speaker , if possible . You might notbelieve this , but most Korean parents let their baby sleep in their bed even until the baby becomes five or six years old . ( hope I did n't quote the name wrong ~ ) If this were the case , the whole system would undergo a transformation with so much uncertainty and no one could foresee what 's going to happen . If you regard teaching as a platform or shelter for you because of the economic slowdown , you are looking in the wrong direction , you should not be a teacher . At 7 o ' clock I went to watch the match `` Arsenal VS Barcelona `` with my friends . Take myself for example . I started English from junior middle school and my cousin began to study it from elementary school . She spent 6 more years studying english than I did , _ hence her English is much better than mine . I still remember the time we spent the whole afternoon havinga chat in the sunshine in my courtyard . I eventually spent two and a half hour there . She taught me some Korean , her eyes were shining and she was full of energy , even though she was old . Hope our trip will be safe and fun . What should Mechanics is so complicated that takes me a very very long time . These are series about the four famous Chinese classics : Dream of the Red Chamber , Water Margin , Journey to the West , and Romance of the Three Kingdoms . I have to go out from my small office right now to catch the last train , but temperature interferes with me . . . I had a very ordinary day today Even though I did n't have enough instructions , after a few days I remembered all the essential points of passing this test and became better at controlling the clutch , so the instructor let me to practice by myself on another car . Russian Dinner There , on display , were some Matryoshka dolls in addition to a Russian cook book and travel books . I ordered Russian salad for the appetizer . At that time , there was an Italian acquaintance of COO . He said , `` I let the painting express my feelings `` I wanted to talk about Italian art of the middle ages , but I felt like he would not be intersted in them . . . What 's the difference between `` sort of `` and `` kind of `` ? Therefore I had to ride my motorcycle today . This temple attracts visitors all over Japan . Even if it 's written in English , I feel like your comment is very familiar . People think in a similar way , even though they speak different languages , I think . So I woke up laughing ! ! They make noise late at night and live as though it were their own house . However , she is a classmate of K and she told me that she just has to be patient against her will . I wanna continue to draw pictures . When he was in his twenties , he achieved a alliance to reform Japan . They are my relatives ^ ^ I like children very much ^ ^ I had a good time with little cute girls . I have n't finish all of them yet : ( To manage the router I had to explore many new and interesting things , such as kernel making , establishing net rules with firewall ' ip _ tables ' , traffic counting and many other things . I sent an email to a native English teacher who works in a high school with my wife to get some adviceon reading English articles . ( I really do n't want to bother you and hate to ask you this , but it would be a great honor to get some advice from you . ) I hope you can listen to the attached MP3 file , and tell me whatever you feel as a native speaker ( mainly in terms of overall correctness and accuracy of pronunciation , intonation , accent ) . Ginpei is the cutest baby I have ever seen . When pest viruses invade the human body , a macrophage eats it . Let 's go back in time and pretend to witness what happened . As if he had been struck by lightning , in one glorious moment his life was permanently changed . Hiroshi was thinking about playing tennis after work . Next day his manager asked him to do a lot of documents until the end of the week . So he could n't go to tennis . This year I bought them from UNICEF ; a lot of Santas are on it and each one looks happy . I heard that living with a homestay family is the most important for improving my English skill , so I need a homestay family who has enough time to talk to me a lot , and I want a harmonious homestay family who is very kind , caring , and thoughtful . I was going back to Tokyo form Izu on Sunday but I could n't do so because of tsunami forecast caused by Chile 's earthquake . Nothing is impossible for people who have those 2 things . I have lived in Toronto since mid October . I think foreign beer is stronger than Japanese beer . He is fluent in Japanese and English . many English words are borrowed into Japanese , such as post , convenience store , TV . I want to be able to go skiing . I want to protect my most important thing . According to him Okocha is a professional football player 's name . He belongs an amateur football team . No one can understand me completely except myself . This photo is of a lily of the valley that a neighbor gave our family a few days ago . `` Nao `` is my Japanese name , but I 'm Taiwanese ! ! ! : ) Yep . Nevertheless , some companies still take advantage of ( the ) Japanese ' English complex ' and advertise suspicious items . Although , I was quite sure he did something really bad , it was a revenge to another classmate . It was the first seminar and we talked about the purpose of life . It is for the benefit of nature . It is a abbreviation for Test of English for International Communication . It consist of 200 multiple - choice questions divided into reading part Some universities adopt it as a requirment for admission and credits according to TOEICscore . they only focus on reading and listening . Shaking hands are very formal , we only use it before an interview , or if we meet someone we do n't know . Reasonable and healthy lunch makes me rush to Subway . Are dramas broadcastin your countries ? My senior . I do n't like one senior ( student ) in my lab . - > suggestion Recently , one of my friends told me that he had a plan to go abroad to study English . It was a nice restaurant with pictures of Hawaii . I finally got my computer in good working condition . I 'm sorry about late replies to messages . I went to Korea town in Shin - Okubo , Tokyo with my friends yesterday . Although , before that I would like to go to South Korea , because South Korea is quite close to Japan and would only take 3 hour by plane . I went out of the classroom because I was irritated . It was like a real scene . So the preparation has been hard for us for about one month . But I could n't . I 'm looking forward to starting our new life . My work has quietly changed for various reasons . I was able to have many challenging opportunities . Sometimes I feel uncomfortable in my situation . Anyway , the last Exam is the database course and that is the biggest / / most serious problem for me . . . . . . In those days , I felt that people divided themselves into knowers and not - knowers / non - knowers or haves and have - nots . Lately , the very popular girl group `` AKB48 `` is famous for dressing in school uniforms , in Japan . For that reason , the educational department started to renew textbooks for elementary schools . about Japanese education getting back to its old days of learning , which focuses on more learning by heart than learning by activity . Anyway , I think this renewal will be effective in elementary schools They will release their single CD and an original album . I have a 3 year - old daughter . I 'm trying to have free time in the morning . We are influenced by everything which we are surrounded , but we hardly notice them . I know the lyrics are controversial but I liked the music as soon as I heard it . I 'm learning English . So I still do n't know a thing or two about it . My temporary office in London . It 's so nervous . I am very nervous right now . I have prepared it for four months . Thinking of myself and knowing myself well . Today I thought about myself . I thought about my character , habits , dreams , achievements and failures . regarded myself as a very passionate person who make objectives to achieve and execute them diligently . Mum , Dad and Grandma went to Ping - tong to join a wedding . I missed their phone calls eight times because I was studying in the cram school and did n't feel the vibrations of my cell phone . . . When I found the message from Mum , I called them back . I guessed they gave up trying to find me and went home , but I was wrong . I felt so sorry that I missed the calls and I felt Mum and Dad 's love for me , Could you imagine ? - - - sometimes the temperature is 22 celsius but on the other hand , sometimes it 's 12 celsius like today . I can stand it raining and suddenly turning sunny for only half a day , but my body ca n't adjust to the gap in the temperature . . . . . . Today , my homework is to write the essay `` Problem of Combining Work and College `` and I have been thinking about how to accomplish it . I have a question . It was the first time that I got a strong perm in my hair , so I am very satisfied with my Air Wave . I wonder why white small food ( rice ) can make various food . Do you know a food which makes various foods ? I to stand in the subway for an hour before coming home . But it is intense impact . I still hate it with a burning passion but I decided that I ca n't burn it if I have n't read it first but I have to be honest with you . . . The reason for the 28th of February As you know , the last day of February is the 28th . The king said to one of his servants : `` But a year has a maximum of 365 days , so if you wanna add a day to August , you have to take a day from somewhere else . if we take a day from January ? `` January is an auspicious month . I ca n't allow you to take it from January . `` to take it from February ? `` `` Undoubtedly . `` I was taught this . But I do n't know why February originally has 29 days . . . because I often forget them . ^ ^ wahahahaha ^ ^ For example , when he or she wants to write about metaphors , he or she will write something like `` The mechanisms of metaphorical thought are present in our most common concepts : time , events , causation , and so on . . . I had made new friends My host family had BBQ too . I think China is a good and kind country , so I like Shanghai more and more every time . I 'm working on translating the confidentiality agreement from English to Japanese . Maybe I 'll buy the next generation . Hence , students completely depend on tutorials and unfortunately they forget about their lectures due to focusing only on the classroom tutorial . First of all , tutorials are considered a waste of time and money . Having mentioned the disadvantages of tutorials , I should also mention the advantages . First of all , tutorials cancel the distance between the teachers and the students and as a result of that students can ask freely with out being afraid . From my point of view , this is a very important thing for every student . They also stress information that students need . To sum up , if we make a list of what is written before , we will see that the disadvantages of these tutorials outweigh the advantages . So students should attend their classes regularly and follow their teacher 's instructions instead of tutorials which waste time and money . I 'm planing to eat many traditional Chinese foods , such as Peking duck and dumplings , as well as walk around the Great Wall of China . What I 'm looking forward to doing the most , is making new friends . A busy season has just started . Spring break started yesterday , so I came to Boston because my roommate is from Boston . I am at his house now . Today , We went to the city and tried a Japanese restaurant , but I did n't think it was very good , haha . Today I heard the word `` marvelous `` . I did ' nt know the word `` marvelous `` . But Japanese people who have been living there for a long time are quite crazy . All children have a dream or dreams But I think a lot of students of college do n't have dreams anymore . Learn how to pursue , how to love , and how to live . I bought some English movies : I do n't know what I should do . I want to ask , if someone knows , how to make learning more effective . And I want to speak like a native speaker , so how can I get more expirience ? I felt local people 's English was much better than ours . He is very famous for not only being an artist but also a professional My part - time job is to mark my students ' homework and teach them math , Japanese and so on . It has a qwerty keybord like blackberry 's phone and you can type very fast like pc , also the OS is multitasking , so you can change the applications while they are running ! I did n't remember to charge it the night before ! ! That was horrible ! Many young Japanese have a weakness for brand names . In the future , I 'll write about why I go to school on the weekend . I usually go to study at the yoyogi seminar in HAKATA . During holiday , I eat lunch near the yoyogi seminar . Some free school students are physically challenged , and some of them suffer from depression . The free school where I did volunteer work is similar to ordinary schools . Actually , free schools are one of the nonprofit organizations , so they 're in financial difficulties . Probably , that picture made me what I am . Various topics are shown up one after another : `` I have a dream `` speech by King , The Beatles ' first appearance on TV , Barack Obama , 911 , etc . One of them says `` we are not talking about Tom and Jerry `` , just after she answered , `` Barack Obama 's speech `` in a serious face that does n't match her age . I enjoy learning it . As my favorite country is Hawaii , my dream is to live in Hawaii . They have to learn too many subjects , such as English , math , physics , chemistry , biology and so on . I have no idea . I 'll try to upload photos of these . we did stop to cheer for our teammates at the last lap . I believe my dream will come true . I think I will be on a working holiday in New Zealand . Although it was the first time in a long time since we had graduated from school , we enjoyed conversation and time went by quickly . But now I think it is more important to develop friendships through the memory of shared experiences instead of only studying so hard . But I just now realized that I am doing a presentation tomorrow . Family Party International exchange is very difficult because there are many cultures and religions . I think that 's enough . Today 's dinner is Thai curry . Perhaps they all have been auctioned off or became someone 's pillow . In April , I have a lot of things to get done after personnel reshuffles for a new quarter . Gion Festival When we heard the fact that he took part in the movie as a hero , we were surprised . So I took an aspirin to write this journal . This is the second challenge for me . Tomorrow is Saturday ! ! My hobbies are listening to music , playing table tennis , and surfing the Internet . In the future , I will write more articles about my life . I welcome anyone who wishes to refine my entries ! I 'm Noi . I live in Bangkok . I 'm an administrator and operator . At the moment I get up early every day to go to the company . The company opens at 8 . 30 am . I am happy to day I can spend time checking my e - mails and reading English books and writing English too . Tomorrow I must to arrange documents for the employees in my company I must read books before I sleep today . Have a good day ! I If you would like to study Thai , I will help you . In Japan , some people need a sense of humorin theirco - worker . After watching it , I became positive , and I think it is important not to be afraid of anything . Hello everyone ! Well , I have n't a clear dream in the future now . And it is so difficult to search music program in Tokyo . I want to listen to some high quality music programs in Tokyo . Her director recommended her to quit because he thought her work was not important and others could do that instead of her . He seems to see what he wants to ; like being late often or not asking vendors seriously what he wants . When the police pulled me over , he told me that I was flagrantly disobeying the rule , and he gave me a one - hundred - dollar speeding ticket . I sat down and pondered how I could make it through all those things when I suddenly I heard the announcemet on the speaker for all employees to gather together inside the conference room . He had to cut down the number of employees , and I was the third name he called . I completely forgot that I had missed three classes in a row , but the college 's rule is that if this happens , you 're automatically out . Finally , there was a massive disaster at home . I could not believe it when I saw that my whole kitchen was flooded . However , I still believed I could rebuild my life and persevere in my goals for my future . My heart keeps racing , and I can not believe what a crazy day this has been . We ate super delicious seafood with mojito for lunch in Key West ! This is the MOST southern point in the U . S . I strongly recommend you that visit Key West if you have the chance ! Time goes by like this without relation to the situation of the world and the hearts of people . There are a lot of opinions about a mood of self - control . First , this is a present from my customer who went to Egypt last year . This is a calendar made by pupils , a little piramid , a bookmark and a sweets like a dry fruits . She had been to there before the protests and I 'm so glad no harm was done . Egypt is one of the countries where I want to go . But this did n't happen and I heard on that radio that during the match some Lazio fans rejoiced for Inter players ' goals ! ! ! ! ! I have been slack off and goof off to keep a diary . First , I have a few English vocablaries and in addition my grammer is terrible . So , I should have kept a diary every day . Before long , Do I use to keep a diary ? In college , I seldom spend time studying English and read magazines or listen to the radio . Rehab means rehabilitation . There are many beautiful beaches in my town . Several musicians were there on the stage , and the sound was full of euphoria . Other staff members were working until 2 AM everyday . I went to the amusement park with my friend yesterday . I stretch and bend my limbs slowly while taking deep breaths . She has been in hospital for more than two months to avoid early delivery . I have a boy friend who is younger than me . He is 6 years old younger than me . I was in love with him a lot at the beginning of 3 months , but now I 'm confused as to whether I love him or not ? I do n't know how to talk about this with him because he often gets angry ( that 's another reason I ca n't stand him [ / RED ] ) I worry that if I talk about this with him , he would not talk with me for a while . . . . Many customers say our prices are higher than other suppliers . The wood construction of the sofa is very sturdy . First , I boiled the noodles . It 's delicious and reasonable ! Today , I sp spoke to an old friend for a long time on a cellular phone . ( cell phone ) I registered with Lang - 8 because I want to make friends and do business in English . Recently , I have had a problem with my neck after I hurt it 2 weeks ago . My first time `` Lang - 8 `` Hello : > This is my first time writing a diary entry in `` Lang - 8 `` . The outcome is important but the time we are engaged is meaningless . Jun asked me to play tennis this morning . I made my husband got up at 7 . I asked them to buy some food for lunch before they go to school or office . My husband was worried . Because they wanted to buy food first in the convenience store . I 'm thinking of studying English vocabulary and reading but I do n't have enough time to concentrate on those things . my wife comes home today ! yesterday , she washed all the dirty clothes and sheets . I hope I can learn english well . High salary , permanent employment and state . . . Also , if he does not know the rules of the bus , the Japanese man should not get angry with him butexplain the Japanese way . I can imagine it is not easy , however , it is the best way to understand both cultures throughout the trip . I have an apartment with three suites for singles . It is very useful so it will be easy to write English diaries on the train . I registered on Lang - 8 In my view , I do n't have much opportunities to use english . I will try to write a personal diary every day . I 'm really disappointed with myself . . . . Moreover , our wedding ceremony is coming in a month ! Ganbare jibun ! About 2 years ago I went to Koh Sri Chang every month because my friend was doing research there on snails . In this story , the main character Pip suddenly has a chance to receive the great expectation by someone . In the next part he stays in . a giants - inhabited island Business conditions have been bad for the last year , and the high yen will have a bad effect export companies . So I decided to borrow a book , Forrest Gump . I knew Forrest Gump but , I do n't know it in detail . Recently everyone is upset in our Research InstitueInstitute , because of the personnel changes . I think maybe I will change my job if the new Research institueInstitute is not good for me , but now I am just waiting . I love this sentence the best : I was fascinated . . . She recommended this site , showing me her several world - wide friends . How have you been ? Now , I am in Gold Coast in Australia . I worry about meeting my foreigner friend . Now and then I think that I have to try to study English more . This is the third time I have celebrated with my friends , whom I have known from high school for almost five years . In that event we could eat a famous cook 's food for only five hundred - yen which we can not normally eat at such a low price , and heard the special talk show about environment . He is very famous not only in Japan , but also in the world as a famous yachting sailor . Yes , it is true under the policy of `` one country two systems `` . I want to become a translator , especially for movies . ' It will be such hard work because words that translators can use in a line are specified by rules of translation . I do n't know how long it will take , but I want to become translator . Because there are some places where many people were killed by tsunamis in northern Japan . We took part in a Halloween parade in West Hollywood and took communicate with Americans smoothly . These girls have different nationalities such as Chinese , American and Korean . What do you think you should do so that people think you 're professional ? However , the number of selfish parents has been increasing recently , I think . The thought that someone will fix my mistakes and incorrect grammar makes me so excited . In order to make my English easier to understand , my teacher wants me to use a higher tone of voice . 4 ) I had no girlfriends before I knew you . but you have had two boy friends , Australia , China , India , and Sudan . I enjoyed communicating with them . to be continued in `` Introduce myself ( 2 ) `` Well , I 'm going to buy some ingredients for our lunch after this . In this country , foreigners ca n't buy flats except for condominiums which are super expensive . But there are many foreingers in Singapore ; according to some websites , 45 % of people in Singapore are foreigners . It means , normal Singaporeans who own flats can easily get extra incomes from foreigners . In Japan foreigners still can rent rooms from real estate companies . It 's definitely because many people want to live in Singapore the rest of their lives . As you know , an earthquake happened in Japan . But , I happened to watch NHKTV `` professional `` on Feb 28th . I ca n't understand the difference ; ( . So , I fall asleep in lectures . ( Eating out is a little expensive for me . I probably wo n't spend much money this month so I thought that I should treat myself . At first glance , there is a vivid landscape with a small shed on the beach , securely covered up in the cove , with towering hills in the background . My 1st diary ! Every morning when I opened my eyes , I would have messages from him on my cell phone . I have a lonley telephone . Furthermore , Recently my assignments have been getting more difficult , and they require a higher level of English . I really appreciate your support . and then I got up to make a sandwich with tuna and cheese for my son before he went to school . I know that English is supposed to mean people from England . Is this correct ? My mom , my cousin and I went to the supermarket . We bought a lot of toiletries , like soaps , shampoos and so on . I 've decided to keep writing in this journal everyday before . To learn a language it needs patience and motivation and opportuinities to use it . First , he describes very well the image of human who is not perfect . Though , according to the magazine , some stories are recognized that the main casts of his novels overcome nature , the wins are not always incomplete . For these reasons , I think that he is a great author who describes human 's imperfections . He is Chu , He was created by me , He can fly whereever as supermouse . It has history of approximately 400 years . First , we learned how to do a breath method . The method made me feel easy . My first yoga became a recreation . I hate to get my cell phone wet , because I purchased an expensive one last year . where one can observe the beautiful stars . and besides , it was at midnight . We tend to regard symmetry as beautiful . You could n't find any differences when you look at it . Yes , it has no anatomical difference between the left hemisphere and the right one . There is a hint for this question in a clinical symptom of patients who have brain damage in the right hemisphere . This symptom is called hemispatial neglect . Patients who have brain damage in the left hemisphere do n't have this symptom . But they might be canceled . If you see any sentence that can be better , please tell me . They were supposed to start running a corn farm there , but since they were still in Singapore , they did not even bother to check the land in person . But unfortunatelly there were many CHEEKY MONKEYS in that area . Every month those monkeys would eat only mature / ripe coconuts there . Her husband tried to ask hunters to kill those monkeys , but killing that species was illegal . My colleague who told me this story stopped talking , because nobody knew the rest of this story any more . They should have considered their plan carefully . For example , noodle , squid , shellfish or mushroom . I wanted some conversation with my wife . However , I was lucky today . I thought it was Wednesday so I still have one more day to attend classes . But today is Thursday . I had a vaccination against the flu today so I wo n't catch flu when I take the entrance exams for university . I actually like having an injection , but it hurt more than any I 've ever taken . I have to have it again next month . . . My English is so poor , I hope somebody can help me to improve my English level . it 's so hot in my country ! ! it was difficult when I first started to drive . Seventh , put it in the plastic bag for 1 ~ 2hours ( summer time ) . Eighth , spread it and you should be about 2mm thick using a pole . Nineth , cut it about 3mm width . It does n't have any taste so please use udon sauce . Also , I want to know what part of Japanese grammar I should introduce in first when I teach survival - level Japanese to my friends from foreign countries . OR foreign friends . Because of shows like Lost , CSI , Prison Break , I started to notice : TV drama is in the US , too . However , learning English is my important work and I will keep on . My friend introduce me to this web to improve my english . It is my friend Se - hee 's birthday in two days . I wondered what to do because I ca n't decide our topic without their ideas and permission . I was so disappointed at their irresponsibility . At that age , a woman thinks about the `` life of a woman `` or `` work of a woman `` . in Japan . It 's means that `` She chooses a family ( getting married ) rather than her dream . Of course he knows ^ ^ ) Because it has a little bit poison in its organs and eyes , so if people eat them without treating them correctly , people can die . I have not eaten sashimi since I 've got to Australia , She gave me it with a little hesitation . He got married , too and bought a new refrigerator for his wife . But , if I were a short - sleeper , I would have enough time to do something early in the morning . Today I went to a yakitori restaurant with my family . Yakitori is like grilled chicken , skewered on a bamboo stick and Also , we can choose any part of the chicken we would like to eat . After the big earthquake , it 's very hard to get gasoline , even in areas around Tokyo . I ran to some gas stations near my house to verify the conditions of the gas stations . Some gas stations are closed , but other gas stations are open . Do people living near Tokyo really need gasoline ? We can go anywhere by train around Tokyo . However , there is a beer - like alcohol . I like beers all around the world , such as Guiness , Budwiser , Coors , Chintao , Singha , Heineken , and so on ! I prepared two batches of cookie dough , chocolate and vanilla . I was very surprised that there are old buildings on the side of the road . For a short time driving , I can see the tall buildings . I give up easily , but I want to continue to write it . I can guarantee there are no Japanese young people who don know this song It 's my first post here so let 's consider it to be kind of a test . I just hum the songs . Unfortunately , I could n't pass this time . ( + _ + ) What is the question that was hidden in the `` Mona Lisa `` and `` The Last Supper `` ? Malaysia is one of the most famous countries which has achieved a major renaissance in a very short time . Mahateer Mohamed was the prime minister for the twenty years in which this change in their country occurred . He did n't give the people money or land . He just believed in them and in their power to build the country once again . ( this is the last sentence of yesterday 's diary ) I read just a few pages , but it is very interesting ! The meaning of a short sentence is too difficult for me to comprehend . . . . . . . The cucumber I ate had a weird taste but I was too lazy to get another one from the kitchen . Japanese Grammar For those who have a hard time with learning Japanese Grammar This is good for learners of Japanese grammar . I was wrong . I need to study hard and practise English every chance I can . I have been pursuing this girl for almost half a year . My recent worries are the heat in Japan and my backache . . . . . . Hello , friends . One of my friends told me about this site . shocked and determined to study English again . Yesterday with my friends Hello everybody ! I really do n't like to use one . Japanese people often take the outside to eat . Hello , my english . He looked embarrassed because I have n't gotten angry before . Someone kill human just habitually , can you accept this ? I 've just thought that unilaterally . ( Actually , I was staring at him during the party . I eat low fat foods , konnyaku mushrooms , and so on . Today is Saturday . I do not go to the company tomorrow because it 's Sunday , so I feel happy . I have a new employee to interview for a job . I 'll smooth the water for her before my boss interviews her . I would like to connect to the internet at my house . They said that they will give me a new number for me to connect to the internet at my house . They will be come by to service and connect the internet about 7 days after I called them . Thank for you teaching me English . Because a sandwich is portable , especially because my daughter is a night person who tends to oversleep , and sometimes has no time for breakfast , is important . I have just registered for the TOEFL test now . Historically , the Japanese way of English education has concentrated on reading and grammar . 2 ) The Faculty of Civil Law and Free Enterprise The graduates work as officials in central and executive bodies of power . Some graduates later become judges , prosecutors , and advocates . All necessary facilities are available to students for high - level comprehensive training . The person thought to himself , `` He 's very stingy . so animation songs have been developing inversely . It 's a serious problem in Japan . So I want to cooperate with a domestic FD food manufacturer and sell FD products to foreign countries via ( through ) my English website . If any one have interests in this kind of business , you can contact me . Tonight I am really missing my family and friends who live in my country . Tomorrow morning I am going to school I wonder how the author was able to so realistically describe the thoughts and actions of the boy ? What 's the Pirate English ? When I was trying to change the language from Japanese to English in Facebook , I found some `` English `` es there . What I saw on the screen was really unfamiliar English for me . I was stuck at home the whole time , watched too many episodes of the sitcom Friends ; nearly 10 . I want to write about Chandler and Phoebe , but I do n't remember anything about them . Next month I 'm going to go to the Philippines to study English for a week using my vacation time . The Philippines is one of the English - spoken countries , and many Korean college students go there to study English . I 've never been to the Philippines and am looking forward to going there . ( Simply ) hmmmm . . Listen and write down Now , I listen and write down for at least thirty minutes everyday He gave me some advice . It 's about a male fright attendant snapping at a passenger . In Japan , customers always come first , we have to treat customers like a god , so that kind of thing ca n't happen . But I 'm sure many people are stressed out and really want to do that , so I also think he is a hero ! ! youtube . Unfortunately , my team has been very bad the last five years . The players did n't practice very hard and they were defeated several times . Now I am very upset because my team has been recently defeated again , but whatever happens I will not give up my dream that this team will make a comeback . I guess it 's because she has n't had many opportunities to talk with Japanese people before . I should get familiar with the way native speakers talk . . . Other members did n't want to become seafood but nobody stopped him . So we played softball in disguise . I could not respond to most of the questions . How did you learn writing English ? It 's difficult for me to spell . My favorite school event is the sports festival Both inventions are a kind of instrument to measure the same thing . last night I called my mom and said `` I would like to study English more by staying in Austrailia mom `` I will try anything to improve English and my self worth ! ! Children could make experiments . I have to decide what to do . Either get a job or advance to doctor course . Unless they came here , they must wanna get to speak English fluently . But I sometimes speak Japanese when I hang out with Japanese friends although I criticize other Japanese students . Yikes , vcroome told me that word yesterday . I think that word is wonderful haha . This is the first time I 've come here . I hope I will meet more friends from here . Then I can improve my english . Some people told me they host the parade every year . Regular customer , `` Yagyu . `` Most sushi shops have regular customers who come often . Yagyu is one of our regular customers , but he is special to `` Sushimasa . `` Yagyu let other regular customers eat foods and drink alcohol free . Their music is really ( I have no words to express my attitude ) great . Since then , he has n't liked to drink and thought that it is a vice to drink alcohol . When I told him that I do n't want to use a textbook , he did it . Because of I have had trouble with my older daughter . And I must mention the terrible traffic , Bangkok 's traffic has the worst transportation system I know . The traffic situation is much better in the other cities . The other cities are quiet and beautiful . The interval time was shorter than usual , so I was really tired . Hello , my wonderful friend , how have you been today ? I just realized that I have not written an entry in my journal for more then 10 days . I saw this on my calendar . Time is useful and life is beautiful ; someone told me that and I believed it . But life is difficult , exciting , and interesting too . ( `` NABE `` is a Japanese cuisine . What should I say in a situation like this ? * I 'd like you to correct weird or unsuitable sentences and give me some sample sentences useful for my pupose , if you do n't mind ! Throwing things and goods away We went to a Vietnamese restaurant . Today I 'll write my thesis proposal , the deadline is the 9th of this month . So I can apply for a Shanghai account next year when I graduate . Although the weather was hot , I felt merry . So , contrary to this change , I should not admit adulthood until beingover 22 ( the age in wich many people graduate college ) Anyways , I returned my dormitory . But Something happened . Because one of my French friend said that she will go back to France soon , so she asked me if I can take a leave and go to Taipei with her . After I filed a leave , then she told me that she need to go back to France immediately . The ocean world is filled with vitality . I 'll decorate a tanzaku and make a wish . Today there is a typhoon . So , I decided to study English , after travel . For example , almost all the railway tracks were laid , except near the Fukushima nuclear power plant , and the highway in Tohoku is finished . The one is the Fukushima nuclear power plant . The reason is that the company who own it do n't give information to the public immediately , or accurately . The other one is that people are reducing their spending , by not having a cherry blossom party , eating at restaurants or going on a trip . Many cherry blossoms are in bloom now . Goodbye . I wanted to buy whatever he wanted to eat , but he kept saying that he had no appetite , and had an upset stomach . Now is the era of the global economy . Also , child 's nerves are very weak , so the effects would be worse for children . Hi Everyone ! Anyway , when I found out that the airplane tickets were not available to go there , I was giving up the idea of spending Christmas in a more special way . I was invited to his relative house for dinner on Christmas eve day . Actually , I still do n't know his hometown city . The four players play diverse roles in the competition , and how they fill their position has a significant impact on the result . It depicts the conflict and growth of a Korean boy living in Japan , a role performed by Yousuke Kuboduka . I am really happy and sad . Was my English strange ? I found out the cheapest bar for them , What is the difference between `` I am looking forward to `` and `` I look forward to `` ? Meiji university , which is one of the best and most famous private universities in Japan , announced that it is planning to build the `` Tokyo International Manga Library `` in their premises . According to their spokesperson , it is expected to be the world 's biggest library as the storage of Manga , it will have approximately 2 million items related to Manga , Anime and video games which are copies of Manga , celluloid pictures of Anime and Character goods of Video games etc . One of my co - workers send me an e - mail from his mobile phone to mine last thursday night . I want to travel somewhere but sadly I do n't have much money now . . . . . . I 'm planning to visit my grandmother 's house with my mother and my sister 's family . My sister have 1 year old baby , so my grandma must be looking forward to meet her great - grandchild . I 'm looking forward to meet my grandma and my nephew too . It smells good in the shop when I go there in the morning and I love flowers , so I feel good just looking , touching and having flowers around me . Today , a small pizza shop called `` PizzaSchool `` opened near our apartment . But I realized that I could n't speak English , when I spoke to tourists from foreign countries . But when the cool breeze of early autumn comes , I am determined to travel alone to unknown places which I have never been to . I will talk to people who live in the area so that I can know what they have experienced in their lives . I 'm going to go skiing inYatsugatake with my family , my daugnter 's friends and their family . I went to my local hospital for a medical checkup . There is a lot of information about Malta . But I 'm trying to find important information . ? ? Because I 'm going to stay with a family . Civil service entrance test is a test that if you pass it would allow you to work with the government and it could let you have a lot of benefits , for example , you do have to worry about losing your job . Although , I am a little bit upset , life goes on . And now , I have to watch the `` The Inconvenient truth `` again , because I have to pass my mid - term exam ! I have some foreign friends , especially from the USA . Her American jokes make feel happy and I think there is a difference between American jokes and Japanese jokes . I have to take two tests , English and my major , Psychology . but recently I do n't know what happened to my laptop . I do n't have much money , Because I am just a student , and my parents live in Korea . We slept in our car , something like a van , so we have comfort so we were comfortable , . We only ate sandwiches for two weeks . We visited almost every city in Holand , the most beautiful was Amsterdam , now we have much experience , in the future I would like to travel more . I 'm waiting for corrections ; - ) After that , I dried my car by using a drying machine . This is a tomato stew with pig 's gut and a lot of vegetables . But when I became junior , I was changed by becoming class president and working by interacting with many friends , seniors , juniors , teachers and started to combine activities along with challenging character . My diligent parents who got up early in the morning had a big effect on me and it made me become more diligent and have more integrity . On top of that , just after WW2 , most Japanese infrastructure were already destroyed completely by air raids . The cities we can see now are not that important . That is just the surface of mankind . Even if Sendai city was destroyed , as long as people who can design and plan cities exist , Japan will be able to recover ( from ) these damages again and again . Nobody can revive dead people , but at least they will be able to reconstruct a city that is stronger against tidal waves than before , right ? Hello my friends . I 'm happy because I 'm now writing my second post on this lovely website . I would also like to thank everyone who has corrected my last journal entry . I am so exciting these days because I am back in college again but this time for clinical stage and our lectures are not boring any more because its more paractical and alot of real patients there are no studying in community hospital with alot of new ppl from other medical studying in the psychiatric department there are alot of wierd peaple but I think it is so exciting because its hard to find every case in any of the huge textbooks you must think very deeply . However , in reality I do n't have my `` DREAM `` because I do n't know It has something to do with with my mental problem . But , my main purpose is to talk with my friends . Finally , 10 friends in all gathered , and then we all left together . I also had a can of beer , because it helps me fall asleep . Today , I helped a friend work from 5 PM until 8 AM this morning . I tried to smoke today . just a little . I just wanted to know if it was real or fake . In my country , you can easily buy ' fake ' things . I took a picture of my favorite brand of cigarettes . ( I do n't smoke now . ) Regardless of that , one of the recent reasons why traffic accidents occur is through . . In addition , since it 's next to impossible for pedestrians to judge the situation of a driver , they are often involved in unexpected traffic accidents . It gives me power and courage to overcome adversity . I know that I can count on my friend when I have a problem , and she can count on me . If friendship was n't in my life I would feel unhappy and alone . I ca n't let myself out without using Japanese . . They were `` run out of `` , `` put off `` , `` put up with `` and `` put up `` but I do n't know meaning of these idioms so I could n't construct the sentences . Yesterday we had a hanami party , which means cherry blossom viewing party in Japanese . Most participants of the party work everyday during the week so want to sleep at weekend . I defended myself like this , It seemed I failed to convince them We shared the only blanket and drank whisky much to endure the cold . Around us , there were cherry blossom trees in full bloom and the moon lit their petals . By the way , when the time to start the party had come , I had a terrible toothache last week and went to see doctor on Thursday . But tommorrow is holiday . Last Sunday , I had a cello residential training session in Kita - kyushu city . The only bad thing was , that in this season ( very hot summer ) , although we stayed near the beach , we had no time to swim in the sea in front of our hotel because of our very long training from morning until around midnight . We knew that we had a concert to show our training results , and I had no time to practise my weaker songs because I had to teach my colleagues about their weaker songs . After we finished the schedule , for the final 3 days , we could swim at last . The small cellists ( 4 ~ 10 years old ) were so excited that they ran and jumped into the sea at the fastest speed you 've ever seen . : ) I hope that the next residential training will come soon . . . Hello everyone time , but it is still very poor , so I just found this way tp help me to learn but after february , maybe l 'll live with my father . We often hear that foreign people who are living in Japan , are impressed with the Japanese train system . Everyone tells me that I can have plastic surgery later or I might become pretty when I become a university student . What 's wrong Before I come here , I was determined and promised my friends to do my best ! It means that I should be confident my English if many people correct me because at least my sentence makes sense . This website is very useful for me because I am look ing for the opportunity to improve my English . I am a university student in the UK and I study account ing . Moreover , I have only two weeks to prepare for it ! ! I had heard this morning that the Fukushima plant 's accident would be estimated as the level seven , which is `` the major problem `` and this is the worst situation could be . Today , I got a phone call from my family , because New Zealand had a bigger earthquake . It can help me prepare for my class . . What do you think about religions and God . . I was born in Christian home . . why I was a Christian before . . My family members made me think in this fashion . . Invited to a birthday party iN AUS It was my singaporean friend 's . that is why I cooked Korean food which contained tofu , pork , zucchini , onion , chilly , lots of chilly paste and powder , soy source , sugar and etc . . . . . There were Singaporean , korean , chinese and hong kong ? Have you ever eaten Chicken Ramen ? Introduce myself When I was in kindergarten , I learned ballet . I also have gone to Rainbow Brige , Asakusa , Fuji mountain . I ca n't wait for the 2nd half of the movie which will be released next summer . I have so many assignments lately . I am male , but I too have a dream to fly to all over the world as part of the cabin crew ! ! I am look forward tobecoming good friends . How about watching a drama like `` Friends `` , or something like that ? We are waiting for the plane now . I am really looking forward to it ! ! I was very excited about the after party on the boat . Next movie was `` Batman `` , that was directed by Tim Burton . I hoped that they could give me some magazines to kill the time for a night . To improve my English skill , I decided to keep journals . I ca n't play soccer but I 'm happy they won . Especially the Tohoku region [ Miyagi , Fukushima and Iwate ] was more damaged by it . Today , I called apple support center . I had an apple care ( insurance ) policy . If I did n't carry insurance then I would have had to pay lot of money . second to call this person and ask him why he did this and try to easily forget what he did > but I think it is going to be so difficult because I think he has to do this and I am sure I did not make that big thing . . . . Electric power reduction request of 10 % . I went to the library to study English . I often use the city library when I feel ( distracted ? ) . Have a good weekend , everyone ! HaHa , Today was my lucky day . It has a rule which all players must not explain . My name is Shogo , and I belong to Hiroshima University . I 'm good at creating new plans or unique ideas . At noon , I went to a restaurant for lunch with my friend , Sherry , and found a middle - aged man looking at us . After finishing our meal , we went to ride our bikes and suddenly , the man came to us and smiled . Today 's dinner was pizza , made by Steve . It was yummy : ) Today , I 'm starting to write my dairy on this web page . During my days at school , my part time job was teaching Japanese . I feel really relieved now due to the fact that today 's work ran smoothly although we had some trouble with the distribution company . Now that I finished preparing the shipment , I feel a load has been lifted off my shoulders . In fact , there is a staff canteen in our office building , but I have had lunch there for years and I have been bored by every single dish there . weil es viele Gegende gibt , wo es selten regnet und wo Leute immer an Wassermangel leiden . because they are so popular in Japan . quality , art , characters ' motion picture . And I could drink Tim Horton ( I do n't know the spelling ) 's iced cappuccino ! ! ! ! ! ! ! Because I could n't have imagined that Some sumo wrestlers bet a lot of money on the Japanese professional baseball games . Because sumo wrestling is the Japanese national sport , t the wrestlers who have been gambling should not be forgiven . Actually , I 'm not a big fan of sumo wrestling but as it is the Japanese national sport and also a Japanese tradition , sumo wrestling should be clean . I want so badly for my writing ability to be improved . But one daymy mother watched a movie , and found he was older than he was before and a little fat , then my mother told me . . . and I felt so terrible . But it seem to be very difficult for me to complete the task which my adviser gave ( or assigned ) me . Anyway I have to continue for five years to get a doctorate . From your message , I learned ten new words approximately . Last Saturday , I went out with some good friends . Unfortunately there was a traffic jam on the bridge . You know , because he is amazing and intelligent . The most touching part was when he told mother in law and father in law how much he loves his wife and how much he misses her and his daughters . . It is our first time , but it will be challenging . Which do you like ? The reason is Japanese inn are warm and relaxing . It is aremake . I hope someone will answer me and fix my English soon . A - ALPHA I remembered everything that happened to me this year . . . It 's difficult to take ( find ) time to talk to my boyfriend . They miss out on much happiness when they are younger , and are trapped like birds in a coop ! This is my first time writing on this site . If we adopt this restriction , eighteen and nineteen year old people will be inconvenienced . I studied English for almost 10 years , but until half a year ago I did n't want to learn . I realize now that I must learn it fast to find a well paying job . It made me aware that one girl 's life will change forever after shock , one mother 's choice will change her family forever after shock , and one moment can change your life forever after shock . Witnessing other people 's suffering during a natural disaster helps her to overcome her own trauma and forgive her mother . The Grab ( Lucky ? ) bags im Fukubukuro , Japan are very popular . I 'm very surprised to watch the TV news that many people wait in line before the stores open ! English grammar I started studying English grammar about ten days ago . When I was a student , I studied English grammar . So I study English grammar not for taking tests , but rather to use it , and because I like studying English . She wanted me to stay over there tonight but I do n't want to bother her . It 's a simple sentence , but it 's useful . One , you can learn a variety of knowledge . For example , literature , physics , I caught a coldxD I hope I get better soon . I have headache and some fever . I have no memory of it . However , when I brought the printout ( ? ) of the program to my supervisor yesterday _ afternoon , he immediately found the equation which should have been ( ? ) divided by the simulation sampling time `` dt `` , which I set to 0 . 001 ! Recently , I thought about whata leader should do . I know the airline company as I lived in Ireland before , but it is unfamiliar to most Japanese . I want to study various things ; English , Mathematics , Algorithms , and so on . Two people corrected my first one . I worked at a company for 11hours , and studied at home for 3hours . We call this a coupon website or a group purchasing website . The naan bread was bigger than I had expected . The king canary was dying of curiosity because of a treasure . First of all , I 'm going to acquire some firsthand experience for 4 weeks as all new employees did , and then I 'll be in charge of a computer system . I forget many words , idioms , and grammar . I think I need to study harder than I am now . I ca n't find the right words , even if I check them in a Japanese dictionary . Because it depends on the situation . I love speaking with people of other countries because I love to learn new things and to meet new people . Through this site I have met nice people that help me in English . I love the animation Gintama ! Today , I got a text message from one of my friends . So , I sent him back a message that said , `` I 'm in . `` I could n't breathe normally , so I went straight outside and came back again . For example , do you know ' Yesterday Once More ' ? This song was made by The Carpenters . Though he is an old singer , we will remember him forever . We made Japanese food such as Udon , Matcha pafait , kinako , and azuki . We also decorated the Physics room in order to make Japanese atomosphere . My boyfriend and I are planning to go to a spa located in Niseko this weekend . I 'm an interior designer but I 'm working as a market researcher now . . . . . . . . . Anyway , I 'll ask you about `` articles `` . I want to say to my father : You are the best father in the whole world . I 'm proud to be your daughter . I have to be more diligent than anybody . Today is Sunday , but we are still on duty , because of a shortage of power . ( electric = implied ) Actually , I do n't like cold weather . This weekend is probably going to be busy but remember , masa , you have to check Lang - 8 and try to keep writing a new entry for your study as many times as you can . begin began begun I 'm gon na go to my friend 's for a sleepover and that 's the only thing that im looking forward to . I would like to get some methods for asking questions about my assignment when I have problems this weekend , otherwise I ca n't proceed to the next step . The temperature is also about thirty - six , This is a very critical turning point in Japanese history ! . So , it is very rare for a private company to be bankrupt . . . The Japanese economic style seems to have Westernised , which is very severe and dry . In this sense , I think this JAL bancruptcy is a historical turning point in Japanese history . Except for oversleeping , I would always hear the phrase , `` The diligent man . `` If someone does not wake me up , I might be continue sleeping . Unfortunately , one young couple sat near us . They were very impolite since they were discussing the movie very loudly , and this behavior is very disturbing when watching the movie . Hi folks . And form a friendship story . She came out with her new album in Japan . I was really surprised ! As it for me , I have spent over two years learning accounting , if I were to try another area , it would be a big challenge for me ! Most people ( can / could ) have difficulties when they speak a foreign language which they 've alread studied for a long time . I 've studied a foreign language for quite a long time . Moreover , I can hardly express what I 'm thinking in the foreign language . I studied English at school , and then studied French for two years in college . I am studying at a distance learning faculty at Kazan University of Culture and Arts , so I have a lot of free time . There is a swimming pool near here and it seems to be opening for the season . Today I woke up at 10 : 00 am and started studying my anatomy lesson . I attend a degree course in Biomedical Laboratory Techniques and at the beginning of February I 'll take a human anatomy exam , I really hope I 'll pass it with a good score because I 'm studying it so much I 'm quite bored about it . Can someone explain to me what the difference between these words ? I do n't know how to improve my terrible English ( > - < ) Help me please . As a result , trafic accidents often occur . And I met another boy who was even younger than me . The teacher in our class was a native speaker from Australia . I may be able to improve my English pronunciation by going to English lessons . My English has been mixed with Chinese accent since I came to Singapore . I will study English enthusiastically . out of concentration . . . after I took Toefl test last month in addition to finishing exam in school , my concentration towards studying English has run out . I only study about 1 hour in a day I guess regardless of taking a break from my part time job for next toelf text and ielts . I 'm so tired . . . I really want to give up on everything now if it is possible . yes , it 's true , how stupid of me ! I really appreciate my friends , they are always there to help me , whenever I have difficulties . I fancy to accept the quote from a novel , `` I am poor , humble , and unfair , but when our souls cross graves and stand in front of God we are equal . `` However , this is just an utterance which is used to encourage ourselves . Actually , it is meaningless and we cant alive ( only ? ) depend on a spirit . I evidently understand that the four years of my campus life are going to be very splendid . I will reap many friendships and generate unforgettable memories here . Though , it also may be serious and I may live in a state of misery for four years . in contrast with my precious friends and even sisters who have n't been enrolled in college . They dream I am fortunate , but this place may possibly bring me a nightmare that I will never return to experience in my whole life . This sort of feeling is practical . Several days ago , one of my friends told me about this website and I successfully registrated . This theme reminds me of the famous movie `` Terminator `` . I remember I enjoyed watching the movie when I was growing up . The biggest benefit of working with teammates is that they inspire me , while my own ideas stick when I work on my own . My hobby is listening music ! Some have two weeks vacation at most . This vacation season of spring is called Golden Week . So almost all firms give their employees long - term vacation . I am also enjoying this vacation with my family . Please contact us , people who like `` ONE PIECE `` ! I do n't speak Ukranian , and sometimes I feel that Ukrainian people do n't like Russian people . . . Therefore , their situation is worse than mine . Your neighbor 's apartment was broken into . But I could n't concentrate listening to English . My family has a cat . But I love love love him . I wonder what your opinion is , dear reader . . . Step by step unusual things and coincidences came into my life more and more . Bio hazard4 by 3D is unveiled There is a beautiful river called Venice ( partle in jest ) ? However , my favorite menu item on there is a grilled vegetable & sausage dish made by Staub . It was very delicious and can ensue the maximum flavor of guidance . I barely drink liquor , but everyday I drink iced coffee . Maybe I do n't know how to deal with the relationship between colleagues after graduation . Maybe if I would adjust my temper to this environment They checked my mistake and revised my diary . So it 's necessary for me to visit , write and practice english at lang8 site I 'm fine as usual . My friend is in Canada for working holidays . How frightful ( scary ) it is . Self - introduction ! ! I can help you by correcting your entries written in Japanese . Recently I have been worried about my future , I do not know what I truly want to do ? What is priority in my life ? I especially like suspense and action . My favorite sport is table tennis . I will keep taking lessons until I reach 1st grade table tennis skill serious flaw in it or you have some advice for me . I will go to a `` GO tournament `` at a university in the neighbouring prefecture so I will stay there only one night . I heard that many people lose their job and suffered from poverty . They organized some workshops , like ' manga ' ( it was for teenagers who like writing and drawing comics on their own ) , sewing ( making a little brooches with Japanese material ) , clay modeling , ect . So I only could make a reservation . I think it is a critical problem . . . And , unfortunately , the instructor seems to leave her job to others . This morning ' I must prepare to work . ' I whispered . The company continued their aggressive overseas marketing . I know that today is due date of the corporation 's establishment in Japan . I decided to study English again to reach my dream after I entered university . I did n't expect that since I began to write compositions on lang - 8 and had them corrected by you guys , my spoken English has made great progress without much practice . I did n't even realize it before the interview . This novel is famous because the writer committed suicide after he finished this novel . Actually , I 've already graduated in a reputable school in Osaka last 2006 , but I still want go there . ( Masato and Koji were the 28th members . This is the first time that I have sold anything . The item was a buddha magnet . Last time my friends from Lang - 8 helped me to correct my description and they told me about good marketing techniques to sell it to the people using a computer . It worked so now I can sell anything . I would like to say thanks so much for you kindness . I recommend that Ishiba becomes the Japanese prime minister . Later on , I realized that the sound was actually coming from a clock which was making a loud tic tock sound . It is a amazing that the tic tock sound could be so loud that I could hear it clearly when I paid attention to it , as opposed to when I did n't pay attention to it . Hopefully my next job will be connected to using English . Last month , I met a backpacker from Honduras on the train . Whoever is studying Japanese ! I admire those Chinese writers , like Zheng Yuan jie , Han han , Guo Jing ming , they are very talented . I was deeply touched by her style of writing , by her imagination , by her emotion . My biggest drawback is the shortage of emotion . PS : Recently I hace a cruch ( ? ) on the online game - - `` Maple Story `` . Actually I 'm not a PC gamer . I thought that I did n't have to go to work . I chose Japanese at the beginning of our term . The Moon is shrinking So I was relieved . English is very hard . Ok , I disappeared from lang - 8 for almost 2 months . He massages my muscles and sting needles to my neck , shoulders , and back . It only costs 2000 yen because I have Japanese medical insurance . I saw this drama and was recommended to me by an emcee of an information TV program . This weekend , I will rent the DVD from a rental shop near my house . Actually , you can find me there every Saturday . In Japan it often happens that an employee climbs the career ladder I was very ashamed and told him seriously `` I was trying to catch you and I did my best , but I could n't catch you . It is just opened this week . The area where I am living is surrounded with many apartments and a lot of residents like me . We feel excited if we have new shop or restaurant open near - by . And food did not taste very good , the rice in the sushi is a bit loose . . There were a lot of a street vendor stalls , so I ate some food , which were made within the stalls . I stayed at my grandfather and grandmother 's house overnight . This is totally my personal diary . . . . It 's not the time for writing a journal , otherwise I ca n't go back to my place / ' home and sleep peacefully . At the same time he was disciplined enough to not say , `` I want it . `` And he breathed fast like a dog which was told `` HOLD ! `` in front of the meal by his master . The skin of my face has something bad happened . I think he just thinks about winning the election . I 'm sorry I could 't eat fruits salada . I ate balut and I thought it was dangerous . I participated in it of my own accord . it is usually rainy , cloud , and cool . strip you of your once radical dream and to put ( Q1 ) What makes you happy ( sad , angry , surprised , unhappy , bored , frustrated , etc ) ? This is my first challenge . It was raining when I left home this morning . I looked for a good umbrella but soon realized that I did not have good one . For several years I kept losing my umbrellas . Rihanna is a talanted singer ! Recently , I have listened the song `` the california king bed `` over and over again . Just relax . `` Perfect skills in reading and writing english will help that purpose . `` I was looking for some action but all I found was cigarettes and alcohol . `` This is hard for employees but I can have private or self - learning time due to this order , like writing entries this this English learning site . I 'm a student of department of biological science and belonging the laboratry of structural and functional analyses on biomolecules . My research theme is structural and functional study of hypothetical protein of an extremely thermophile , Thermos thermophilius HB8 . I respect his incredible mathematics skills So , I still have a little trouble to communicate in English ( especially spoken British English , accents and pronounciations ) . In fact , I was near criticizing them . I 'm relaxing with perfume now . This restaurant just recently opened . Instead of preparing for it , I was cleaning my room the whole evening , hoping it would put in order my thoughts which hardly wanted to form into sentences . Then , I left the restaurant not sure if he would call me again , but I am satisfied with myself because it was a good challenge for me . What an awful fortune ! Every shop had displays set up at the front , therefore every store looked very good , and I did n't decide which store was the best ( store ) . I bought takoyaki at four different stores and ate them in order . In my Japanese - English dictionary , `` Uchiawase suru ( verb ) `` is translated as `` to make arrangements . `` But thisdoes n't sound rightat all ! Of course corrections on this post itself are most welcome . . Today , I saw photos of a short abroad stay program at my university . I work for financial services . You need to found a strong wall against those from society who hurt you . You have a common aim - that is , to come on together for your family 's happiness . Did you see the movie Karate Kid that recently premiered ? However , I am in Singapore now , here is clean and safe , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to work so hard and for a long time as slaves , no worse than them . I felt shameful while the movie , this movie showed foreigners how disgusting the Japanese culture is . Because I did n't do anything for two months . At first , I was feeling so nervous , but it was a good opportunity for me . That is why I wrote this letter to you . I 'm watching videos on You Tube now . Elderly people who live alone like the woman have less of a chance to communicate and visit with family or neighbors . She has lived in a dormitory . They would take their boyfriends to the dormitory and let them stay over night . The dormitory is a house , so my friend could not help running into them . We actually do n't like Pachinko , but the restaurant next to it is very cheap . We like to go for lunch on the weekend because it is very delicious there ! I want to speak fluently English . The Okonomiyaki was good . First , Merry Christmas ! Enjoy yourselves ! Because of the long distance I had to give up an interview this afternoon . when I picked it up to check the contents , my friend went to the ladies room and left her daughter with me . I took a Bullet train . Yesterday was Spring Festival . It is time that I become mature and be responsible for my behavior . There is a special place where we go to see a beautiful night view Re - type e - mail address to forward this card to more friends after sending . I must speak English at least five minutes every day because I become very shy and nervous when I speak to someone in English in classes . I need to be brave enough to say what I want to let them know . I NEED TO BE STRONG MYSELF ! ! But I realize that life is not that easy anymore . Recently , there 's another problem that I have to face . I 'm Japanese and a university student . I major in medical science , that is to say I will be a doctor . I tweet in English everyday , talk with my Filipino friend ( s ) on skype , and write in my diary in English like this ! ! My hobby is playing basketball and watching NBA games . He was discriminated against by some crazy Americans , and they tried to rip him off him . I have another example . I met some Japanese bilinguals in Australia , but some of them told me that when they were in school , they were discriminated against by other Australians , even though they could speak English like other Australians . Sooner or later borders will disappearbut sad to say things still remain as they are now , we have to keep fighting against discrimination to live on other countries . So I think it 's an excellent idea to write my diary on Lange - 8 in English because , hopefully , someone may correct my mistakes . I can believe in myself ! ! ! Oh , I do n't know yet whether I 'll get the job or not ! I want to study abroad someday . I am not Christian . . . . will that cause trouble for them ? I hope , that everything will be ok . ( more conversational ) Now I am studying English . I can read an English book which is written with easy words . any sign of blood on the road or anywhere on his body . He got used to this environment fairly quickly . However , some people push too far . something like that . We just stayed instead on 11th Avenue and watched the fireworks presentation . They sometimes quarreled with each other , but made up immediately . I understand my son 's feelings , because I have had the same experience as him . I do n't know how hard they quarreled today . As it was expected , after the announcement of the health minister about swine flu , many people ran to buy masks . Because I went to there to work . People in the school cooked with college students in Matsuyama city . Matsuyama city is Ehime Prefecture . I just started keeping an English diary today . I think it is a quite helpful website for ( with ) people who are learning the ( ir ) second or third languages . let 's exchange thoughts and help each other . My friend recommended this homepage . Anyway , the guys in this video are awesome . Their motorcycle transporter was carried by my transporter transporter . I wanna go there , I guess it is the in the middle of summer in Australia , the season is the oppsite of Japan . but now I still remain poor We studied for over six hours and I was so tired . That is because I am going to see a football game in an hour and after that I am going to eat at a friend 's house . I 'm so tired because I studied until 9 : 50 p . I attended the banquet yesterday evening . I have to prepare information about Montreal . It is made with wheat flour , soup , and some other ingredients for example , rice cakes , cheese , octopus , lobster , and so on . In general , it is difficult for beginners to make . I have a Skype ID , and sometimes use this to talk with my friends , but I have never used Skype to talk with foreign people . I 'm planning to travel next year . It would be a little bit scary for me . I have been to Paris , London , and Canada before but these places would be for the first time . The other is to squat down untill the right answer descends to him . I tried to translate it but I could n't . It was too difficult for me . . In this October , I decided to enter the Chinese speech contest . In the movie `` Magnolia `` , her song was used and gave it a supernatural or melancholy mood . I 'm working at an English conversation school as a front desk personnel , but my English skill is n't good enough so I ca n't communicate with a native English teacher . We 're gon na ( going to ) have a business presentation test tomorrow . How actual is discussion about this person . Finally , I want to tell that the personality of Mary the First is very unusual and interesting . Yes , she has brought much pain and suffering to her people but throughout her life , she , too suffered much . In my work I have also found out that a lot of films had been produced about Bloody Mary ; moreover they are still producing films about her . We wrote a lot of books too . These two examples proves that she is still interesting to people . But now , I 'm surfing the Net and drawing pictures . Japan is an archipelago comprised of a number of islands such as Kyusyu , Shikoku , Hokkaido and Okinawa , located in the middle of northern hemisphere . I thought it would be good to buy some education stuff . I saw some news that so many countries are praying for Japan , and giving us rescue , money , foods and so on . So your help will be really thankful : ) I 'm becoming suited to Australia little by little . Several weeks ago , there was a big strike in my company , I work in a state - owned company with 4000 workers , which produce NC machine . You know , a normal worker is just paid 2000 a month , less than the gas allowance , so ridiculous ! Finally the managers gave in , they came to the workshop to negotiate with the workers , promised to grant the half - yearly allowance at once , and cancelled the middle managers ' gas allowance . Anyway , the result was not bad , workers got back to work after they received the allowance . Sometimes genes have great influence on children , but the more important would be the quality of upbringing at home and teaching at school . TV business get involved in price competition against Samsung , while the bubble of solar panel business has already burst . Thank you for reading my entry . The japanese P . Yukio Hatoyama is struggling against transferring Futenma U . He pronounced on transferring out of Japan , but U . Maybe it 's a secret ) The cause of my sadness was a quarrel with my husband . On my way to the pool , a car suddenly appeared on my right side and then cut in front of my car so I honked my horn . It 's a pity that I have not found this website earlier . We practice cheerleading over 5 hours every weekday and over 10 hours on the weekend . Because , I have canker sore on my tongue . : ' - ( So I ate many vegetables for lunch ! ! Flying saucer ? No , It 's a flying car ! Bamboo Blade is an anime that was broadcast 4 years ago . Today is a festival in my town . When I walk for a few minutes , I get wet with perspiration . In Obon the souls of our ancestors come to us and we invite them . I was able to keep this pace with the other runners . My son has been in hospital for 9 days with a serious disease . I want speak this beautiful language ! I have been waiting to get this part - time job because it 's very popular . fortunately , there were only a few customers today . I am already awake when I was high school , I learned Japanese but I forgot many things . I will dance at the year - end party of my division tomorrow . Could you correct my dictation script ? Enjoy this amazing video , which is on a weird deep sea fish with a transparent head . The Macropinna microstoma , known as the barrel - eye fish , is small and dark with large fins , a tiny mouth , and unusual barrel eyes under a transparent dome . The two green spheres in the video are the lenses of its tubular eyes and the eyes are in closed in the transparent shield , sort of like a glass canopy of a jet fighter . Above the mouth the two dark capsules that appear to be eyes , actually contains the fish 's olfactory organs , or the equivalent of nostrils . Food ! It 's good to my body because I ca n't move quickly . But now that I 'm dieting I might cease from it . for foreigners But that 's the minimum I have to do . Classes end at 15 : 15 . After that we have club activity until ( ? ) about 18 : 00 . but when my son enters elementaly school , I will have to do night duties . The teachers of agricultural farming have to do this heavy work no fewer than once a week . I 'm waiting for an answer from the company which I took a job interview from last Thursday . Anyway , I think I 'll get some new information tomorrow . He appears only in the summer . I could n't help checking throughout the room . I am not sure whether I was able to sleep or not . Before university , their only focus was studying in the cities . After that I went to eat Chinese food with my classmate . This is a very famous legend among Japanese people . Of course one was to study English hard there , and the other was to order a s - size cheeze burger meal in Sydney . So it was natural that I thought the size of Australian cheese burgers should be super jumbo as well . I rushed to a McDonalds in Sydney just after I arrived in Australia . I ordered a cheese burger meal at the counter in joy . I gazed at the cheeze burger meal for 5 seconds . When I started talking about the weird news , I finally found him under my table on the floor . I have been finding books written in English for my studies . Reacently the website introduced a lot of books and digital books . Recently free digital books have been introduced . Digital books have many good points , for example digital dictionary software can be used in digital books . So , I asked my husband to massage my neck and shoulders for me . I ` m sorry for the delay in diary entries . This april , almost my friends start to work so we couldn ` t meet and drink easily ; but I hope we can do it again ^ ^ They are my precious friends . There are applications for Twitter , Facebook and Mixi for the iPhone . Good morning - zao shang hao I want to study hard , to read the document , and to deepen my understanding of my major . I have n't gotten a job yet even though I 've had some interviews . Christmas is coming in about two weeks . Some houses really took a lot of effort to put up their Christmas decorations . But I ca n't respond quickly when I am asked by a English native speaker , even though I have what I want to say in my mind . She was terribly frightened after she read a person 's blog on which he made a structured analysis about the disaster that willhappen in 2012 . Coincidentally , the news report said an earthquake took place in a country on the Pacific Ocean . As a matter of fact , in the end of 2009 , a blizzard has swept over many places like western Europe , the US and Xinjiang Province in China . And the horrible earthquake that has made many Haitians lose their families . The immediate family is the most basic and smallest community in the society . I played with his son , showing him how to use iPhone apps and teaching him some words . He is starting to join the society gradually . I think that the university should increase the number of questions that test output skills , say , organizing thoughts in essays or drawing conclusions from some facts or expressing oneself in English and so on . But , not to speak of conversation with adults , they ca n't write even junior high school - level writings or communicate with native English children . Indeed you will see , reading this terrible sentence , I 'm not an exception . everyone loves reggae , Latin , cambia ( ? ) , jungle and drum ' n ' bass . He left money for my marriage fund . However , my computer is just two years old and I should wait at least one or two years to buy the next one . He paid 500 dollars and got a new computer . I usually use two online services for learning English . This website uses Flash technology for learning words and phrases . It is simiilar to the English one , and I think this is useful and convenient for Japanese language learners . The iknow involves also blogging feature and sns feature , but I feel that this blog and its sns system is not so good relative to lang - 8 , this website . Actually , my dad lives in China for him job . Anyway , I really miss Japanese food , such as sushi , nikugyaga , oden etc . Although you can get sushi in london , the taste is definitely different ! Snacks in London are really cheap . While I 'm eating snacks , I 'm happy but when I finish , I feel guilty for some reason and sick because I ate too much . because McDonalds 's cheese has some special additive like a drug . So I think snacks have the same kind of additive . Anyway I ate cookies today even when I know about this effect . . . My English is poor , but I really want to improve it , anyone can help me ? ? ? I was tired We got medicine . She wants to give me a gift . Although it 's challenging for me to think of topics to write in English , It has become more enjoyable for me to write in English ! My friend and I are planning to go to Tokyo Disney Resort next month . We love Tokyo Disney Resort . And I was studying harder than usual , I think I shall give her some canneles when I return the molds . In my class there are students who are almost native speakers . . Last Sunday I drank with some English teachers and their friends . I woke up earlier than other days and & nbsp ; went to the hospital because I was concerned about a litte fever . these days swine flu is prevalenced ( ? ? ? ) . so I was really worried about it , but it was just a fever . thrid , I will have a part time job for weekend I ' d like to register as soon as possible , in order to make an early hotel reservation ( only available for that association member ) . Dear * * Association staff I 'd appreciate it if you could register me before Jan . 5 . Then , the boy came to the shop and tells us about the owner of shop . - but I sold to Jewish man . just a translation entry She was accused of spying on the Iranian government in favour of the USA . As soon as I arrived , I took a warm shower and then I went to sleep . My husband bought me a I - pod touch the other day . A small displacement gasoline engine is mounted on the power tiller , it is 4 cycle air - cooled one . It is my important right hand in the garden and field . Even though I joined the site immediately , it was not easy for me to find time to write . My hobby is surfing . I 've forgotten to tell my mother about it . Now the busy week passed , I can relax and revive again . `` Having finished lunch , I went directly to ~ `` I know that it 's a bad habit . I hope you will help me to learn better English ! I always go to the restaurant at lunch time with my colleaque . The conductor anounced that someone was trying to commit suicide on the track so trains would not run until the police arrived . Recently , I have been often reading the book Self - development , because of the training of logical thinking and Photo reading . Recently , izakaya ( Japanese pub ) which serves flat - rate foods and drinks is very popular in bright - light districts . Nowadays , I have to recognize that I really learned a lot from those stories . I really miss them . I miss my childhood and I especially miss the person who made me laugh in the old days . Do you know any manga of Japan ? For example , Doraemon , wanpi - su , Death note , Naruto , etc . There was a free concert in the center plaza . There are several stalls ( street vendor ) around the plaza . I think consuming there is not cheap . I also saw firefighters standing by . A urban appearance in downtown San Jose is pretty good . She could n't follow what we said and felt uneasy . But I though she only has only been learning Japanese for 3 months , and her pronunciation was good . It is not easy . A British girl is staying in the hostel now . No Japanese shall beat my child , and I really really wish for that . In passing off , `` dilution `` means damage to the goodwill . because I have to go to work tomorrow . because my graduation is just around corner ! ! ! ! I 'm going to have my hair permed tomorrow . However , my hair was not permed very well . Was it so predictable ? And I 've been waiting for the result of the exam for Osaka University ( Chinese major ) . Recently , I quit The Chanson Society [ I play the bass guitar ] . I have had a lot of homework , and I had to make a presentation . I still remember I lined up for two hours because I wanted to buy a moon cake . Yesterday my boyfriend and I went to some nice places . Happy full moon festival . But although it was only thirty minutes since the festival started , all of the lobster was sold out when I arrived ( there ) . Of course I ordered a lobster set . We studied writing , reading , grammar and stuff like that . My daughter is a big fan of Ponyo . She continued to help her mother , for example ; washing the bath , washing the dishes and so on . He can speak English fluently considering the fact he is Japanese . But some Singaporeans told me these salaries are quite common here , and they added that some intelligent Chinese and Indians are earning more . I had fixed my pronunciation . I do n't understand what is difference between / o / , / ou / , and u : / . AMonAmen , Give me power ! I am working at a Japanese restaurant in Victoria , In the winter holidays , I did n't study very much , which worried me because there is a test coming . The second time a foreign customer came to our company ( office ) It takes a long way to get there ; we had to go all the way up a mountain . Usually I like to sleep in the morning . I liked it very much . She was happy to understand each other before they had problems . Her job is about about advertising and marketing paper . I would like to attend the party too , but unfortunately , they are serious subjects from the University . In that place , someone received my call next to me . So much discrimination ! ! ! ! ! ! ! ! ! ! I planned to go to a movie with my friends . I think he could n't adapt to his new situation ( or environment ) , but in my case I got used to it owing to traveling to lots of places . ( I can get it on Monday ) But it 's still cheap , compared to in Japan . When I arrived at the theater , I picked `` Inception `` because some of my friends told me that it was really good . When I bought a small coke and popcorn . I could n't figure it out though . To be honest , I am one who wants to push reality away . The tests of proficiency are the most important tests for language learners because these tests represent the student 's ability in a language . I 'll be back on monday , the others will be back on Tuesday . Hopefully I would like to get paid - holiday for Tuesday , but I ca n't . I found a discount price for the train ticket including an one day ski lift pass I 'm looking forward to going next sunday . what 's the difference between them ? I did n't write in my diary recently . but , as with everytime I go to a bookstore , there were so many foreigners . That 's my misunderstanding and I thought how if I travelled to he US , the locals might think that I 'm Chinese , or Japanese or some such . . . . . . I joined Lang - 8 because I wanted to learn Japanese , but later I realised I needed to learn how to write Japanese to do so . But now I enjoy helping Japanese people to learn German by correcting their writings . I 'm quite sure my spelling is creepy , and since the times back in school I ' ve been always using wrong tense forms , I want to improve my English so I can pass the IELTS 6 . 5 . The first song `` Rock ' n ' Roll star `` really made everybody gon na crazy , and it 's really really exciting ! But we need air conditioner because of the extremely hot weather in Shanghai . It seems to be a very mysterious world . First , grind the tomatoes and garlic . Next put the garlic and olive in a frying pan . After that , put some salt and pepper in with the tomatoes , then boil them . It is a Monday morning . Have I eaten something bad last night ? It 's `` Qantas airline `` , the most expensive company . So this is going to be a first for me . I examined a staff reporter 's story and a news feature . All the conversations we have are in English and sometimes Italian ( but I never tried to speak in Italian ) . Normally , I will study Chinese and English on Livemocha , though . I enjoyed skating ! ! I 'm vulnerable to any kind of noise , especially at night . Moreover , even if I fall asleep , I 'm always easily awakened every time I hear a noise This phenomenon makes me exhausted and inactive . Occasionally , it seems to me like my alarm goes off without a sound . Unfortunately , I do n't notice the sound of my alarm as good as I do with small noises . I 'm going to start a part - time job earlier than I thought I would have to . I like English , because English is not a very difficult language . Although our languages are not the same . Kamakura is a famous place for foreigners , visitors and surfers . Banana pancakes , one of the popular menu items in there , were so good : D It contained recota cheese . Hello , everyone . I miss studying ! I sent her some songs from my friend who sent it to me so , I think my friend will love the matter that I sent it to her already , she asked me to give her other songs too . I imagine . Next week I think I will find a job soon because I relaxed enough . On the 5th of this month is father day so usually buy somthing for my dad , at the moment I bought it already . Do you have Farther 's day in your country or not ? Recently , I have started using Facebook . It is great to be able to communicate with friends in English , especially those living in foreign countries ! My goal is to be someone who can write down ideas , without mistakes , in English and communicate fluently with people all over the world . I 'm very happy , now I need to buy an iMac for development . Maybe next month . First time on Lang - 8 After I logged on to this website , I felt I had just entered into the language of Disneyland , where u could find any language , and anyone from any part of the world at any time . One of the most interesting thing I noticed is that u can improve your language level not only by talking online but by correcting others ' diaries , which anyone can add comments right below the diary to inform the writer of the mistakes he / she made in his / her article . nowadays Im very crazy to watch movie `` s `` `` in `` `` english `` This causes a pause in my dialogue . My Foreign Friend We are both foreigners . Especially if it 's English . Nearly all parents scold their children . But , when their children act wrong or make a momentous decision , parents are worried and anxious about their beloved 's future , , because their children are their greatest pride . I found out something about our differences . But I was still happy because I bought a katana as a souvenir . So I believe that I 've already known grammar in English . You can tell my lack of vocabulary and a bit short length of sentence is like a child 's . I 'm learning a group of vocabulary to be acustomed with it efficiencly . In Japan , someone lost their job , they could make their house out of cardboard . We usually decorate hinadolls from the middle of February . Because if the still decorated Hinadolls are on display after that day , it is said she will marry late . Fortunately , I 'm a sophomore now . I 'm especially not good at the reading and the grammar section . Shocking LaLa mountain trip The trip had a shocking incident which remains my head . We were in a traffic jam on the way to LaLa mountain . cockroach ! ! ! We killed ` five cockroaches ` that day and retained their corpses to show to the manager . I remember that there were a lot of beautiful stars in the sky that night but I don ` t recall anything else that happened . . . I have started to write a diary to improve my English . but it 's sodifficult . so I decided to write in this diary in English every day . and I want to make many friends . Now I am struggling with driving , I mean , in traffic . I went to the hitting center . I have recently practiced playing a song called `` Just Be Friends `` . My part - time job starts tomorrow and college starts the day after tomorrow . I 'm working hard ! `` What happens next ? I do n't know what I 'll be writing about yet , but I 'm sure I 'll find something . The classmates were from all over the world like Chinese , Korean , Bosnian and so on . I 'm an economics student in Kyoto . I 'm keenly interested in innovation and investment science . I 'm going to barber to have my hair cut . The word order of Korean is different from that of English . And I have to go back to my homecountry next February . In addition , we tend to differentiate our behavior according to our first impression . One thing that I am concerned about is the inconvenience of short battery life . More Advantages of Living in a Big City I think I may well be able to make aussie friends over time but it is difficult . In that sense , I 've been studying English with my tutor lately . Yet English as a second language is so hard to me . I feel happy . After the lunch , we went for coffee again . Finally we went for crispy cream doughnuts and more talking . It is my favorite ! ! Therefore there is a modern / up - to - date railway station , although if you prefer , the city also has a small airport . C . , for this reason nowadays the city conserves several Roman monuments like a wall , a theatre , a forum , and other important archaeological sites . It 's a wall on the mountain , and it defends the city . Now , I have a slight headache > < There is a very interesting phenomenon in Hong Kong . About 400 years ago , `` Nakasendo `` was maintained as a main road from Edo ( old Tokyo name ) to Kyoto . The roast was also known as `` Tokaido `` . But this is my first job . chatting with primary classmates , it rained heavily nipple & pacifier I usually do n't care about these things , but just enjoy them as dramas . After surfing through a music website , I found a song called `` Crush `` and clicked the `` play `` button . The melody brought me back to high school times . I still remember when I wait around the street corner for half an hour just wanting to get a glimpse . I was afraid you could hear my heartbeat , because it sounded so loudly . . . total tragedy . . . It 's very tough and challenging for me to advertise my class next month , but I 'll make an all - out effort . Fortunately , my mom apologized for being stressed and grumpy when we sat in the car . The first buyer I called got irritated because of my pronouncation . Fortunately , I like to go on a journey alone and I decided to do it ! To make matters worse , the cost of transportation fees are expensive ! ! I did not know what rural life is , and at first I was very confused with the differences between rural and urban . In addition , Akita is one of the most famous rice producing regions , But actually , I have n't seemed to have selected this job because I live in Busan . It is the second largest city . Busan is far away , a long distance from Seoul and Seoul is the largest city . So , there was more than expensive Anyway , now , I am feeling happy . It has really interesting stories , but it 's difficult to understand in English since they use a lot of medical words which I do n't know . House and his team fight against unusual medical cases . Today , there is only one lesson , I ? to see a movie after learning English . lt is a purple print t - shirt ! ! I have n't used Lang - 8 for a long time Yesterday it snowed heavily in Beijing and I went out to buy an MP3 player to listen to English songs ~ It takes my breath away . I think the best way to learn English is to compose English sentences by myself . Next diary want to write good sentences as soon as possible . He is from Australia but he told me his father and mother are from New Zealand , which I think is really s strange . another colleague made a business trip to China . I wonder if my listening has improved now I ca n't understand and hear sometimes . I need to prepar for it and I hope to spend nice winter holiday . I 'm studying Japanese , but I want to write a diary in English . but , when I went to University , I found / realized that there was no reason I should study English . I used to follow the general norms and never thought about of it . Our opposition are so good , our topic is `` Computers Will Substitute Books `` . he is lazy and useless . By the way , almost all of my friends , including myself , think that foreign companies immediately fire employees when they make some mistakes , which is a bad image . I was speaking about the fact that sometimes I get frustrated because I want to improve my Japanese . For example , I read a book , use a computer , wash clothes etc . Because of my life is not exciting and stressful . I like Emma Watson . I have to lose weight . On Friday , I was working at my office as usual . One headline said `` The fifth biggest earthquake in history occured in Japan . `` I did not really care , because strong earthquakes are very common disasters ; it 's kind of everyday experience in Japan . She told me that her flat was not really damaged , but she had thought that she would die when the earthquake occurred . So I told her that it was the best time to buy some Japanese construction firms ' stocks / shares . On friday and saturday , the prices of many Japanese stocks / shares went down because of the earthquake , and definitely the Japanese government and companies will have to reconstruct everything . which is something delicious ! ! In this Saturday and Sunday I will be a prompter girl . Hello , everyone ! I went to my friend 's flat with my two other friends today , and I learned how to cook `` Purukogi `` ( Korean food ) for my Korean friend . When we were buying minced beef , onions , cabbage and more , my friend surprised me when she took a kiwi fruit . I have never seen it in Japan , the taste is mysterious . Now I 'm busy studying for final exams . Obviously , our lives has changed enormously because of the use of computers . However , like a double - edged sword , they bring negative things as well . Now I always meet my friends from it and talk about our recent lives no matter whether they are in China or America or any other country . However , it is nonsense to be on her side when she is very angry with me . . . In this club , many non - English - native people whom was interested in English gathered and talked with other people in English for two hours . Lately , this style is in fashion in Japan . I thought it was useful lesson of speaking and hearing English . `` You bet `` he replied and dived into the water with his flashy long harpoon and disappeared into the dark violet . I like leaning English , but my English is not good , I hope someone can help me . I am a Korean university student . It moved me and left a nice aftertaste on my heart . I also love that of CAT ' S EYE , the beach where scene Hitomi got back her memory by the music box . It was so beautiful and pure . All this period of my life I could characterise as a painful quest for self - development , which is really hard to achieve in the current situation , when almost all the time I 'm busy at work , where I have no exact timetable that would allow me to go to language courses . . . and I 'm going to the Reading Festival to listen to Radiohead . After the long over time last night No , it is not a blade . Sazae - san syndrome I happen found out about this site from some blogger . I negotiated a new business deal because my occupation is sales . I visited many places , saw many beautiful sights , felt the good atmosphere , met many kind people , and took more than 1200 photos . Hello everybody ! : ) I ; m like to be here ! I like reading comics and watching movies in my free time . Indeed , it is convenient . If we had fewer vending machines , Japan would not need nuclear power plants and accidents such as `` Fukushima `` would not occur . According to the informal , but still credible results , I succeeded in it ! * This sounds more natural The second part of the exam is going to be held on October 11 . Recently , our factory do n't get enough orders so that we l are free are not so busy . It is 21 : 28pm , not too late but something happened , which made me realize English is really , really important for overseas people to live here . He was sitting sideways on a chair and started talking to us , like just saying some greetings and shaking our hands then he was talking about his story and how he was in prison for 5 years as he did something bad ( he is 21 now ) . I am a fashion advisor . It tells the story of man with a mild form of autism . Throughout his life , he becomes many characters : a football player , a soldier , a fishermen , a gardener , and all of this ( was achieved ) with an IQ of 75 . In three years he runs the length and breadth of the United States . The class which is chosen by the computer must go to the small island , and then the army makes them kill each other until there is only one survivor . And then the `` program `` will start on the hopeless island . It tasted a little light , so I added some soy sauce to it . To prevent sunburn we can use items like sunblock that reduces the damage of the sun . This news said that this programme , It was unbelievable . We never wear coats in September or October . It 's the turn of the season now , so let 's be careful not to catch / get a cold . I moved to Toronto last April and am supposed to stay here Here in Toronto , I could manage to meet a lot of different people who I 'm planning to get a driver 's license during spring break . We have a custom of giving presents or dinning together to express our daily gratitude . My shop deals with polo shirts and is famous for polo shirts , so it is packed with people . Although my English is very poor , I hope can make many friend to learn a language together : ) I have a question about a sentence that I read : Due to the high cost of textbooks in the school bookstore , I recently did some research and bought some books online . One was the Stir - fried dried bean curd with shredded pork , and the other was the `` Three - cup Mushroom `` . I should not simply ( only ) compare Japan with Singapore , but around half the population in Singapore are foreigners . So some normal Japanese English learners mindlessly believe that English lessons should be taught only in English . It 's storytelling with several pictures , and is a form of traditional Japanese entertainment . All you need to do is put a seal - shaped IC gadget on the outside of the body . Is the following information correct ? Master 's Degree anticipated March 2012 Our lives are not so good , like everyone in this world , but , if we are mature , we know that we have the tools to make a difference and understand forgiveness is the key for a good life , a life who a few people choice , but is so refreshing . You should try . I felt `` The PC is closed `` is something strange . After my graduation , I will go to the cafe often . As we all know , the attainment / reaching of success is only realised through practising again and again , which had ( has ) been proved by so many famous people , such as Michael Jordan , Kobe , and so on . I ca n't remember my Japanese teachers from when I was a beginner . Why I say it 's a problem is because the people I met when I came to Japan often said to me , ' Arumoo , your Japanese is so formal and you use many difficult kanji . ' I Just started . I 'm very shy when speaking to strangers . My mother encouraged us to do it . I came from YOKOHAMA after Igraduated from university . Last Year I went to THAILAND first time . I have a plan to travel to THAILAND this year . Yesterday , I did research . This was the second thing that was surprising . Also , we listed to music and played with 2 babies who we did n't know . XD Yeah , I do n't have enough time to construct any ideas . Differences in their culture , language , common sense , and politics . The politics were especially different from Japan . And more than 10000 people have evacuated to Turkey . It 's very interesting ! I hope we can study foreign language well ! She wants to try snowboarding next time . That contribute to Japanese archeology . Anyway I 've got some sentences that I ca n't understand clearly . But , working men or women have maybe 1 week summer vacations . If one were to ask all the Japanese animation producers about the best Japanese animation , most of them would answer that the movie `` Akira `` is the best Japanese animation , better than anything else . In my subconscious , I think of tomatoes as fruits , not as vegetables , although I know that tomatoes are vegetables technically . I started Lang - 8 . I have a band and we practice with the other members every . saturday . I 'm going to go to Minnesota . Because I had a hard time finding keywords to do the research , I visited the library reference desk for the first time yesterday . The librarian was helpful in telling me where to go to find the database and good keywords to do the research . At last , he scheduled me for an appointment to meet with a librarianwho is good at business topics to help me out with my research . I 've just translated it from Japanese to English word by word . Thanks ! I asked one of my friends living in Seoul becausei dont have lots of money I brought a hot - water bottle . I enjoy working ! so if you know any good countries or cities , please tell me ^ ^ Because my English becomes worse , and at June , I have to take part in the CET4 , everybody said that the test was easy , but I do n't think so . I must spend more time in learning two foreign language . I can n't deal with them well . I went for a walk with my little brother . Then , even though I showed him genuine bread , he still said that it looked like a conch shell . Nowadays , I am watching an American drama named ' desperate housewives ' . So could you recommend another funny American dramas ? ? Today , I just discovered a [ new ] method to improve my writing skills . woods : I managed to contact them four days ago but they did n't reply ( to me ) until this morning . They complained that we did n't contact them earlier . I stopped for 2 years and then started to play piano again but with a different teacher : ) But I am scared when she teaches me , she gets angry easily and tells me to use my brain properly T _ T We of _ course have not only English , we have another subjects to study ! at Macquarie because I 'd like to improve my skill for writing , reading , speaking and listening . I often skateboard ( / go skateboarding ) resently . My wrists always help me , and they trim ( ? ) my condition . Skateboarding is such a dangerous sport but a more than interesting sport ! I found this website in a magizine . I was surprised to see so many people here speaking several different languages . She taught me it carefully enough for me to understand easily . There was an autumn festival at the neighbourhood temple . Or should I say , `` He picks up girls after he turned 30 . `` Are they different from `` not good `` and `` not bad `` respectively ? My grandmother died seven years ago , when she was ninety - five , after lying in a hospital bed for about ten years . Right after she moved to the hospital , I would go see her . I do n't need a long life expectancy , just a life that I 'm satisfied with . Do I use this site steadily ? because I could understand some news in English on TV . join with sentence above I play the bass guitar in my band . So I studying about musical instrument and constitution of the music . I tried to read the notes for ' Heart of Gold ' by Neil Young . Here is a YouTube video of ' Heart of Gold ' sung by Neil Young . Today , I took a driving lesson . It was my third time and it was quite good . I noticed that one of the most difficult things in English is caring about singular and plural form of the words I use . My friend 's birthday party We enjoyed beer at a restaurant . Tell me why you do n't answer me even though I texted you and called you more than two times . Plus , its been twenty four hours already . . . . Clearly , I told told you lie intentionally when you asked me whether I will study in the U . I feel like I 'm a little weird , but my friend told me that he scolds himself like `` Stupid ! ! Anyway I do n't know whether I can continue to post diary entries . I have studied English very hard everyday , but I hardly speak English . And I want to make a lot of friends who are native speakers . Yesterday was my younger sister 's birthday ! I will be very happy if you become my friend and inform me of any mistakes concerned with grammar or expressions ! ! There are many differences between English grammar and Japanese grammar . English grammar is `` S ( subject ) + V ( verb ) + O ( object ) `` But Japanese grammar is `` S + O + V `` . So , sometimes I ca n't understand and I ca n't speak . It 's not that I 'm begging for your company , at least ( not ? ) at this moment ! ! I ca n't carry out a conversation right away . She quit high school and used to leave home . We do n't usually eat our meals at the table , rather we eat sitting on the floor . You can feell your bellies getting full early when you eat sitting on floor but there is a few problems sometimes . For example , people who are n't used to sitting on the floor can feel numb so they can hardly walk when they stand up if they sit for too long . atarashii tango . But I reserved early , so I could buy the return tickets at about half price . I 'm so happy that it will be spring break from tomorrow and am looking forward to be in the next grade after the break . So , I personally believe that we should pay more attention to our behavior ; and cherish our food in the canteen . I finished the English Academy course / classes last Friday , so I am an unemployed person now . This is the last interview to enter the company . I do n't have confidence but I do n't want to charge . To do some meaningful things on tree planting day , we should hold some activities like getting students to plant trees . It is meaningful for us to be close to nature and do some manual labor . So , we mostly spent time staying inside like in a theater , a restaurant , a pub , a bar . I read an article describing that the main factor could not be the CO2 , but it could be due to the amount of activity of the Sun . Today 's morning I found this service by chance . I am now working as a medical staff and doing experiments . Recently I had a chance to talk with exchange students . I want to communicate with native Americans but it was very difficult . In the restaurant or supermarket , I can not understand what they said perfectly . My hobbies are snowboarding , golf , snorkeling and traveling . Please somebody help me and I will help you with chinese . friend with benefits ? ? what does `` friend with benefits `` mean ? I searched about it , and found out it 's being `` closer than friend , but not in relationship `` if a guy and a girl like each other , it makes no sense to stay as a `` friend with benefits , `` right ? I saw the major league baseball . I felt scared and remembered the Fukushima earthquake . I went to Canada to study the English language . I wish speak English very well to communicate with people around the world . I live in Vancouver it 's an interesting city . My dear friends and teachers on Lang - 8 ! I delated my tutor 's check mark . I did the opposite action . many people were surprised at me so I 'm very ashamed . Luminarie was designed to give residents hope and light to But when I played the saxophone it was very fun ! ! So I love the saxophone today . I went to the gym to exercise my muscles . Shu uemuraand Mac is famous brands . Also , it practiced my listening , because all of the speakers have good speech . Actually , I really want to stand where these speakers stood . I am looking forward to meeting the other lab members and feeling the atmosphere of another country . It has 8 writing tests that takes 17 hours and 7 marking tests that takes 5 hours and 30minutes . 2 hours writing test in civil law , 2 hours writing test in civil procedure law , and 2 hours writing test in commercial law . I 'm waiting to receive the I - Phone4 I already reserved to fiding new information about the delivery Today was complete holiday for me . And a very unfortunate happening . Kanshi recitation Kanshi literally means poem written grammatically in ancient Chinese and recited in Japanese . Singing is also very healthy for people because they need tough vocal cords . These days the weather is getting hot with a lot of strong sunshine , but today 's rain made the temperature go down so I felt a little chilly outside . Until a few months ago , I was very happy to get the free time , but since last month I 've felt so bored with my life even if I spend several hours in my institute for studying English every day , The nation 's low labor costs which is only $ 2 a day but $ 3 . 5 ~ $ 4 . 5 in Thailand and $ 4 ~ $ 8 in China attract foreign companies . Now the Indian government aggressively lures foreign companies after being the biggest outsourcing recipient because of its low labour costs . I want to practice my English so I 'm writing this ( journal ) entry : ) If she did revive , I would have been happy even she would have become a violent cat like in `` Pet cemetery `` written by Stephen King . I need to speak English on business . I have endurance tests once a year , and they are significant for me to evaluate my physical condition . In the process , many students were afraid of running 1000 metres because we had been inactive in daily life . I was arranged in a team , which has 22 members in total , and we would start together . Even for a substandard athlete , the time was too much ( slow ) . This was ( still ) remarkable , considering that I had had so much laziness in my life . She always helped me . I 've fallen in love with a chair called Rocky ( in fact this is a rocking chair with a modern design ) but unfortunately it costs about 3000 PLN ( 1 PLN is approximately 03 USD ) , almost three times my salary Our favourite restaurant . I found this site today , and I want to communicate with somebody . Today , when I looked over the web with my friend , I found this website , I find that it is really useful for us to improve our lanauage lskills , I 'm very happy that I can express myself here . Three shots of adrenaline , one shot of panic , five shots of cowardice . But we can not decide which country to go to . And on that day , we were overwhelmed with her excellent dishes right away . She made a lot of `` yamu - cha `` , that is Taiwanese cuisine , and not only that Pirates of the Caribbean 4 I 'll go to theater to watch Pirates of the Caribbean 4 . Hello , everybody ! Of course , you should avoid religious or political topics . Each lesson takes just 25min , which fits the period of time on which I can concentrate . Nonetheless , I still think that I have to build my vocabulary and learn to Learning from Filipinos has made me take interest in their country and culture . They are generous , patient , and cheerful all the time . Interview for studying abroad Today , I had an interview for studying abroad . Maybe , I can not study abroad . it was very delicious . Today I have an assignment and more work . > < ; Happy New Year , everyone . I 'm wondering if I should buy a new one . In addition , Jennifer Aniston became my favourite actress since then . 3 months ago , we just had a big disaster in the Tohoku region with a tsunami wave . Hello everyone ! ! Most of Taiwanese , they depreciate both athletes and sports . Always , I have admired neighbor countries , such as Japan and Korea , who surely put high emphasis on their sports . I wish that one day I could see Taiwanese people and the government pay more attention to sports , and treat athletes well , giving them more benefits and wellfare . If you know these artist please give me a comment . Until now , I do n't know how to use this site so please teach me . My boyfriend is a more ( older ? ) than me by 12 years , he always takes care of me and love me . Recently , he had a fight me , because I did something that made him lose his fase . ( face ? ) I justpretend to know nothing . It is very humid and hot , so we are uncomfortable . I can bring some spring rolls and clues . I became friends with him first , and he said he would teach me gospel piano for free ! ( good deal again . ) So I was taking his lesson once a month . He was teaching a half year seminar ( or class ) of gospel piano and he invited me there . ( It was not for free ! haha ) After I finished that seminar , he asked me and one more student to play at his choir 's gospel concert . Because it was our first time playing at the concert so my friend and I were soooo nervous about it . The concert was very good and it became a pleasant memory for us . A world famous athlete who was a champion in the 2008 Olympics took his mistress home , and was interrogated by his wife . I felt lonely because we had good relations . I have studied English for my career and to see many internet sites all over the world . However , when she meets my baby , she never forgets [ it ] . I sometimes have meetings with our overseas local staff in English . Maybe there are some different ways of thinking between us . I 'm look forward to your reply . He is a historical person from the end of Edo age . I will go to Hokkaido on a school excursion . When I was junior high school , I went to Okinawa on a school excursion . If I go to Hokkaido , I want to eat some delicious food . Vacation Plan Fortunately , the reason of the death was not an assassination conspiracy , but a heart attack But the problem appeared after he died . So people who are in the progressive camp think that the politician from North Korea does not deserve to be buried in the National Cemetery . And the people who are in the progressive camp insist that the conservative camps are using the death of the North politician as a their political position , giving them the advantage . One woman politician , who is in the progressive camp , announced her opinion that she and the party she belongs to will ( ? ) not mention their political opinion over the hereditary regime system in North Korea . Some other people who are in the conservative camp also hurled criticism and said mocking things to her . Then , a gentleman from a foreign country escorted me . Yesterday I watched a volleyball game between Japan and Korea . However , she taught a new member good technique and attitude . For any native speaker of English learning Japanese I am Takuya and I am Japanese . If you are studying Japanese , I will help you in return . I always wanted to become an animator or illustrator , but now I 'm studying jounralism . First , the actors performed the process of dying with horror . Second , the special effects were added to the preliminary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his body . . . I finally discovered what melody it was , I have heard it occasionally since childhood . as I was looking for another song on YouTube . I have a speech next Thursday . It 's some knowledge of cheeses . Second , an example of a famous cheese . Maybe you 've heard of Camembert before . It 's soft and covered with Penicillium , which gives it a white appearance . Camembert de Normandie is around 10 . 5 ~ 11cm in diameter , normally 3cm in height , and at least 250g in weight . In october 1790 , Marie Hareil , a habitant of Camembert village defended a priest from those who belonged to rupubli . < - - republic ? Especially because it is useful when I talk with French people Because there are many kinds of cheese in France and the French love them . Thanks for listening . Snow Leopard , Apple 's newest operating system , was launched today , August 28th . I like the European climate . I live in a small Ukranian city , that is why I can not find suitable courses in my town . : ) Especially with strawberry jam inside . It is a radio station which is literally the American Forces in Japan broadcast . They are American country songs , sixty 's or seventy 's rock , and so on . I drove too much lately and I 'm feeling tired . The lifes are different from their choices . And when we come back from karaoke , we went to the school 's library and watched 2 movies . Ato said , `` The one who is going for the first time should be at the head of team , because it is easy climbing for the rest of us . `` Then we went down to the starting point and split up at 11 P . I 'm watching the TV news now . It says over 1300 people died or are missing . Many companies adopt this test as one of the conditions for promotions or opportunities for employees to brush up their English skills . The digital stick for old people , iPhone The voice recorder releases older people from input their sentences from a small keyboard . If we prepare the crowd input system for old people , I think that old people need SMS more than us , but it 's very difficult to use SMS for older people . With iPhone we can put various colors on old people 's lives . Hello , my name is Joanna . I will be grateful for all corrections . Of course , I like science and I really like English , too ! Because one of my friends recommended Lang - 8 , I feel comfortable being with him . My promotion would delay marriage and the birth of my first child . Today , I watched the movie `` Knowing `` starring Nicolas Cage . I do n't know whether I am intoxicated or not . Unlike Mark Zuckerberg , I 'm not a genius . `` Tomo - chan , elbows off the table . `` I am really happy with Lang - 8 . Weekend and spider I want to be an interpreter or a translator in the future . My friends introduced me to this place , and I hope I can be friends with you . I am writing to you because I want you to deal with a problem . The heating system in my house stopped working two weeks ago . Now , I am spending an uncomfortable life here . I urgently want you to fix the heating system . I want new jeans and etc . In June I will be starting a master 's degree in accounting and I would like to find a job in that but I feel nervous about the interview , because my speaking is not very good . life would be harder because childcare in Australia is very expensive . I first started studying English in junior - high as is usual in the japanese educational system , but at first I was not interested in English and not very good at English and I just started English as a part of studying for tests . 03 . NOVEMBER . 2009 DIARY Recently , I do not see the goal / reason for studying english . Why do I study English and yet my command of English is not improving ? After I get used to it , I want to use a Chinese conversation service using Skype . Firstly , it helps to organise and express thoughts in an appropriate way for clear understanding . You may want to disagree with this but it is said that caffeine makes you dehydrated and your blood flow less smoothly . So one time I really got hung up and I came back home I told my mother that I wo n't leave a mess again and that I will always clean up , and then my mother said `` I was going to tell you about leaving a mess , and scold you but you really realized it on your own , so I forgive you . . . later do n't do that . `` I wanna say hi to all : ) then it turns out that I really hate it . I know since it is a yearly activity ! ! All of his friends envy him , of course . So far I have been able to pass fairly difficult exams and achieve good results in various soccer competitions . Nevertheless I know that if I do n't put in a great deal of effort , I will not be able to reach such a bright future . Today a friend of mine recommended this website to me , She feels nervous about the test . I hope that I can find more friends with common hobbies . It was a wine from Barcelona because I remembered one of my friends from Catalonia recommended it to me one day . If you read this , I 'm sorry my diary is not an interesting one , but I would like to recommend you the bottle of wine which I mentioned above . I start studying English and finance ! Osaka is famous for Yakuza , Takoyaki and Okonomiyaki . So our campus is so beautiful and the facitities is complete . I think everything is perfect for us in China nowadays . We just drink beer and play computer games everyday even if we have classes or not . Yesterday , I started studying for IELTS . I want friends , whose mother tongue is English . I preferred chili to any hamburgers in Wendy 's , so I ordered it as my final order . I do n't like to write with a fude , because I 've never learned Shodo . I had learned Shodo after I grew up , but still bad . . I always wanna learn foreign languages and I can learn many languages here . It is difficult for me to retain German words and grammar . Other countries have other problems , which are purse snatching , murder and terrorism . When he calls , he says urgently that he needs some money because of a car accident . This fraud is dirty , because it takes advantage of someone 's kindness and family love . It has pictures of sandwiches . But , the sandwiches are not the kind we expect . There are many unique sandwiches which were designed using ham and cheese to make a shape of something . well , It 's my first time that talking with a foreigner by telephone . of course , It could be boring to her because she had to treat innumerable people like me . Chinese , South East Asians and Koreans were killed by Japanese soldiers . The results of my TOEFL were released on Wed . Luckily , the landlady was a very rich and honest person . Sometimes I dream that I could sow a sun in my heart , then , I would never suffer from the pessimists , such as fear , sadness , and anger - - Students in the class congratulated him on this great news . This is my ID , this is my passport ! `` and he said , `` Your passport does n't show your eyes and hair color . `` I was so surprised ! ! I really could not believe that she used to have a crush on my friend . Until now , I still could n't figure out the reason . Tomorrow , I have an international party at the UBC . I do n't have a clue about anything . All I can do is imagine my ideal future . I 'll do whatever I can to get my ideal future . I 'm currently studying International Studies at college located in Shizuoka prefecture in Japan . Really , my motivation toward my major is just decreasing day by day . Particularly , from January onwards , most Japanese college students will be job hunting like crazy . Regarding this topic , opinions are probably divided . First , as I mentioned above , job hunting at this time is too early for students to deal with , so this silly sequence ( ? ) must be inefficient for sure . When I was in college , my psychology teacher told me everyone would be prone to get mild depression under loneliness and pressure , which is a psychological sickness that is always ignored due to its ( mild ? ) level . However recently I found one of my friends also got depression with insomnia , loneliness , and fear . . I covered the story of a baseball tournament which was between teams of children from all the protectories in Japan . ( A protectory is a training school for boys and girls who have troubles Playing baseball is teaching them how to develop confidence , try things with friends , make an effort and succeed . One boy wrote a diary entry about how he hopes his mother in heaven watches him play . One boy who hit his mother wrote a letter that he would play well , as his mother 's birthday gift . Thank you for visiting my page . Especially the `` cabbage croquette `` . I have heard of an article about some foreigners living in Japan who always put perfume on them self when they lived in their country . I sometimes notice that someone smell 's , but I ca n't do anything so It does n't matter ! I came across a foreigner who smelled bad to me because he put on too much . I recovered from the flu after taking medicine . < < < < Tomorrow , I must take a speaking test ! ! While listening to music , we can eat American foods such as hamburger , spaghetti , steaks and so on . I would like to listen to music everywhere , everytime ! That 's why Hard rock restaurant is special for me ! ! This journal is published from the Ministry of Education , Culture , Sports , Science and Technology ( MEXT ) . I completely agree with her opinions . I learned about the history in preparation of the tour . I sang many English songs , like Britney , Avril , Taylor Swift , and so on . He seems to think the teacher is asking us about the seasonings . Another person answered that `` It is essential to clean up the knife before and after cooking , not smoking before cooking , to not put make up on your face and to not wear any perfume . `` ( Interesting ! ) Tomorrow , I will test another machine . I hope that the test will suggest a good performance . I also hope to go California in the USA someday . Nintendo shipped 400000 game consoles and almost all distributors sold out withintwo days . Of course , I live a happy life and am satisfied by it . According my knowledge , a travel is longer than a trip and needs more than one month . I thought they are famous thai foods . This is the first time I write in English because I was studying Spanish in Latin American countries , so that I wrote here in Spanish before . But now , I have been studying English since March and I need to write in this language to improve my writing skills . I suffered much stress when I was studying Spanish and I already know that to learn languages is so difficult for me ( Japanese and English are totally different also Spanish ) , but after learning Spanish I finally noticed the importance of the language , it is worldwide ! ! if I am able to speak these languages I am sure that I can travel around the world , I think . Tomorrow , I 'm going to graduate from school . After tomorrow , it 'll be a long time that ca n't see my friends . I felt it was very difficult for me . There are old people , young people , men and women . . . . The worse thing is that in my local library there are n't a lot of books so I can choose between hard ones and romances ( Maybe I will look for some books more closely . ) I went to Tokyo for a business trip . I went to Appi in Iwate for snowboarding . Of course I have been working weekdays . I have two daughters and a husband . The residents of California are afraid of the news that the big one will occur soon . I might be speechless . And basically , it 's difficult to answer with accurate grammar . And it takes time to answer , unfortunately . Well , I will do my best ! I 'm not sure how well I can do , though . Maybe people live in their native countries a long time . French is very difficult I learn French with my friends . My friends has French books but I do n't have one . My friends said `` You must buy a French book ! `` So I bought a French book . Please recommend a nice French book to me . Mariners starting pitcher Doug Fister . I like his pitching style . Especially , I am good at cooking sweets . I enjoy these programs a lot . I was bit afraid to watch that without written help . There is comedy and romance in this show . Some guy , who is old , I still could n't figure out his job , he brought the dude over to his house . I watch TV for many hours and pray for safety / the safety of the victims . Last evening , I helped an employee in the office do a job for a long time . I helped her separate a document . I have had a problem with my internet for a long time On Sunday this weekend , my French friend , and me we will play badminton . because , there is no wind all the time . I ate lunch but , nevertheless , I 'm hungry . My first diary ! There are many interesting shops , good restaurants , and the view at night is beautiful . ) Well , I 'll write next diary soon : ) What was special about this place ? Give reasons and details to support your answer . Kochang , my hometown , is known for beautiful mountains , eel and itshot springs . I 'd lived in a dormitory before ; it was so noisy so doing things like reading books or listening to music was very difficult . It is safe to leave my stuff on my desk in an apartment , and I can enjoy my personal life without bothering anyone . but I noticed that I do n't have enough vocabulary in my spoken english Which character do u like the best ? I have a lot of things to memorize in the history . They may have to spend so much time memorizing the events and years that they could easily get tired of them . I still need a lot of time to memorize lots of events and years . It seemed to be simple and easy to use . You succeeded at what ? ? ? Learning Chinese Because I 'm Japanese and we use same or similar characters The first part was `` An introduction of this novel `` the narator said . Surprisingly , as soon as the baby was born , he said , `` Grandpa `` . But it is different from yukata and kimono . I went to a Chinese restaurant with a friend who is Chinese . He is in Japan as a foreign student and so he is a young man . An interesting day It was difficult to commute them . The strongest wrestler , Asashorhu , Yokozuna , beat his friend up when he was drunk . It is said that the Yokozuna should be polite and has to be a good model . This violence by the Yokozuna is a first case in the Sumo 's hundreds of years of history . Last year I took a two - year leave from my work and went back to grad school . They can probably explain English grammar to us in English and Japanese . There were a lot of foreign students there . You should be important now . ( ? ) I think , I can speak better english if I dedicate more time to practice . the meeting room has been in a deadly silence since this morning . I was too busy to write daily . I will work at my university from February to March . Someone said that the first two hours of the morning are golden hours , and if we want to do intelligent work , we ought to do it during those hours . Today I uploaded a picture for my Lang - 8 profile page . I found this sentence in my English book and thought it did n't make any sense : I will live here until next month . The plants seems to be called Kalanchoe or Clonechoe . The vendor of the phone said it would be sold mid - December . We went to Kimita onsen after work with my husband . That was comfortable . Second , I soak in the bath lightly . It will be released as a film in 2010 . I 'm a doctor in Japan . I 'm interested in English , space and especially being an astronaut . Although , Chile is very far away from Japan , about half a circle of the earth , 50 years ago there was an enormous earthquake near Chile , too . They brought me to Mitsuwa in New Jersey . Cicadas are crying as hard as they can during the summer and at the end of the hottest time in a year , they will die out . Holidays ! Oh , eee ! Fortunately , I believe in it basically . I bought a jacket , a skirt , two t - shirts , a one - piece and a backpack ! If you have a opportunity , please read it ! I went to the internet cafe to sent a message to my language study friend . I could not sent it so I also read a website called Wikipedia . After I went to the internet cafe , she called me and said that she returned to Bangkok already . She said that she was going to the JJ market and asked me to go there too . However I plan to wash my hair at the hair salon and read a book at the bookstore instead . TOEIC is a popular test for all people studying English , I think . So I may have to reconsider my plan to study English . . . I need to go to the citizens ' advice bureau because I need to get the address on my passport changed . So I 've always wanted to learn how to dance . Tomorrow , I 'll write my diary in French . . ! For it is more important for me to learn how to learn and become well rounded . For example , it is very important to learn how to deal with interpersonal relationships . When the one week cancelation was over , I went back to the regular life in college . I caught four shoplifters in two months . I saw through their eyes , they looked sad and apathetic , so I decided to ask , why It is a popular Koreanalcoholic drink . The box was from Fraisier in the neighboring city . It makes blood pressure going down . How beautiful to have your love . We did n't met since Thrusday ! We do n't have our own flat and we do n't have enough money to buy it . Recently I did n't sleep , so I took the medicine . According to the papers , some psychiatric drugs cause a bad dream when people stop taking it . ( some cause when they 're using it ) Google Analytics is the web service for analyzing visitors of Homepages or blogs . This is the visitor 's char of my blog in Japan . I ca n't understand why the number of visitors from Tokyo is larger than that of other cities . I have many essay assignments . The more I keep doing soccer , the better my body condition becomes . There is a chance that I can enter for free and study French and English . But now I think it ` s good that I ` ll study French . One American food that I remember from when I visited Chicago is the Stuffed Pizza ! You could be patient for 3 or 4 years , until beeing successful with your business or not . Now I very regretful that I did n't do it . Thank you all for visiting today 's journal entry . Now I belong to the department of Dentistry and I 'll have to take national exam . . . I know but the first impression tend to have a significant impact . I had coffee , toast and a salad with balsamic vinegar . My best friend is a tattoo artist . Please someone give me a bento . Unbelievable ! However , the strange thing is that I 've gradually become so strong drinking alcohol . It is my first time to live in a foreign country so everything is new to me : ) It 's a very serious problem because I ca n't even catch the content of the assignments . Yesterday , I missed submitting my assignment because of my poor listening skills . Sometimes they are foam balls or styrofoam . And when there is n't enough money simply crinkled newspaper sheets . This book is published by KBS ( Korea Broadcast Service ? It is broadcast on the radio every morning at 6 A . And today is the 4002nd episode . A majority of Japanese people think that if the Fukushima disaster had n't happened , Japan could recover much faster . On top of that , local governments relatively far from Fukushima prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . I found a video on youtube that taught you how to solve a rubik 's cube . That reminded me that my father bought me a rubik 's cube when I was a kid , but I do n't know how to solve it . That video motivated me to try and play with it again . I looked for my rubik 's cube all around my room , but I could n't find it so I decided to buy a new one . You may mix them together with discretion . Eventually , dip them in your sauce ~ ! ! I went to bed hoping that the typoon was very strong and that it would bring a lot of rain in the area . Of course , he was dead . I bought a new cellphone . I bought a new cellphone today . For example , he cites video games as a major reason why children nowadays are suffering from obesity . To my disappointment s , there was no net and no TV . so I could n't go outside all the day . I want to leave here immediately . I miss my computer , my dog , books , CD , etc . . . I went to have my driver 's license renewed this morning . This fair starts on the 16th and it ends on the 25th I think , so I think I will go at the beginning . In Japan , the weather is very bad and muggy these days . . . You can eat a lot of oysters in 90 minutes . Now I do n't play , but enjoy listening to the modern jazz music . The institution issued a report in which they compared 22 country 's economic potential and their efforts in supporting OR to support other counties . How do we support them so that they may survive and improve themselves ? Some researchers and socialists say that only giving money would not be the right way to help . But if you ate it once you would change your mind . And I think whether the food is strange or not is not so important . Today I 'll explain why I 'm studying English . When I was at work , the sound of an explosion surprised me . I would especially like to go to Waseda , which is one of the most important places for me . I also remembered the day when I finished the speech , my hand still shook a little , haha , but now I got it . My English is not good , so I want to get to know English - Speaking people . Thank you for reading . They enjoy searching for their mates . A while ago I planned to take the Japanese Level proficiency test in December , but after I got the forms I had to fill out , I chickened out with excuses like `` I 'll never be able to learn the Kanji I need in six months `` , or `` school is going to get in the way `` and things like that . [ 1 ] I 'm sure sometime I 'll take the test , but at the moment I barely have the time to study Japanese regularly . It 's quite difficult between work and school , especially since exam time is starting again . ( They are not exactly exams , more like very important tests , but I do n't know the English word for it ) . [ 2 ] Some kimonos are really expensive but most of them are very beautiful . Unstable weather That is why UNIQLO loved by many young people . Today , I read a research paper , saying UNIQLO is most popular brand among the younger generation especially those who love the simple life . Please check my poor English . So now I 'm thinking about tomorrow 's conversation topics . However , I do n't think that death is the best way to punish those who commit a high crime . There are too many reasonsto make me agree or disagree with the death penalty . because the end of the story is always sad . I 'll working Japanese company as a operator . I am planning to take a trip to Thailand next February . And next I will try to find very very cheap flight . I 'm forwarding to visiting Thailand . It is very warm and the cherries are very beautiful . So , please check my diary . ooh . . . . I 'm a Japanese high school student . One of my dreams has come true , and of course I continue to pursue my other dream ! ! ! I study hard recently to get driver 's license . it is extreamely boring . and I have to go to bed cuz tomorrow 's lesson will start early in the morning . I bought 4 packs of Sushi and delicious beer . The purpose is not only sightseeing , but also opening up a bank account . Fortunately I ' was in time for work but paid a lot of money to repair the tyre . However , I can not study because I do n't know why I like the kids very much . Maybe it 's because they has a pure heart ? But in my life , I do n't have children friends . Now I 'm translating `` Just a feeling `` by maroon5 . My neighborhood is like a ghost . Mallard passed away because her husband returned home . If we analyze the situation , we will find that she feels happy due to the death of her husband not because she dislikes him , but because she is oppressed by being married / by marriage in general . On getting married , an American woman in the 19th century would lose her freedom , her sense of independence and most importantly , her identity . Therefore , a wife would be happy after the death of her husband since it meant the death / end of the oppression of being married / of marriage . This is to say a scar of glory . My kindle is Wi - Fi - only , so connection was essential to get books online . Does it require additional cost ? However , taking a course for four hours ( two courses a day and three days a week ) drives me crazy . . . This is so comfortable clothing for summer season . This is Wafuku , but so cheap one and most of all Japanese girls have it . I like a very warm place and I tried to adjust the temperature of the apartment but that did n't work . I am SO GLAD that I came home . I do n't want to go out for a long time until the weather gets warm . When I got off the train at the station , I fell into the gap between My name in Japanese means Cherry Blossom . At the moment I ca n't use Spanish at all , and I do n't know even know the Spanish alphabet . I ate a big dinner on Wednesday to recover my h ( a ) emoglobin . If you ca n't get a satisfactory score , it means you ca n't go to the best I can write about my mood or interesting things in a foreign language everyday . In classrooms , professors sometimes say bless you while giving lectures . DoyoBoshi ( read recent journal ) is n't done yet because Japan especially our county have been cloudy or rainy day for those days . The shop was on a narrow road off the main street . People who are really rich are rich because they are rich in spirit , not only rich in money . I used to study hard as well as I played hard , and I 'd like to pamper myself occasionally . Do n't be so tense , get winded ! A nice mood can help you to work more efficiently when you return to your work . Then my partner in the game made a grim face ^ ^ There were few friends who lived with their grandparents . The main businesses of Ufa - are oil refining and manufacturing . Oil is refined to gasoline , kerosine , diesel fuel and so on . Manufacturing is of aviation engines and miscellaneous parts and fittings for airplanes . I worked in an insurance company . I am a system administrator in the Ufa office of a Russian insurance company . But I am sometimes nervous , I can not speak English well ! Today , one of my host father 's friend took me to see many interesting places inhis car . There were no words to express my gratitude . First was vocabulary , Next was grammer . It ` s my laziness , and it ` s really difficult for me to write something here , even little posts take a lot of time . Please give me your advice I was very suprised to hear that . I am now producing a Rice T - shirt . It 's raining . Weather report says `` there will be snow . `` Because my mother bought that for me for the first time to describe that we are very tired ; how to say it in English ? ) I must go to work . I want to become better in English , even if just a little . I am going to give a presentation on this Thursday about my research project . Recently , my favorite team is not good . I am biqi and I want to study both english and arabic . I sudied english in college . ( a very little bit ) ( Thank you , Jason ! ) Let me practice using the idiom `` open oneself up `` here . He looked at the beautiful mirror room in the middle of this lay a dead dog . It is the cheapest one and cost about 100 dollars . * cost = past tense But now I realize that GPS systems are very useful and even the cheapest one is very reliable . But very delicious Sushi are very expensive . In my hometown there is Kinkakuji temple which is a building that is covered in gold . Then we went to a recently opened shop called Bapple . Every time I eat sweets like mousse pudding or cookies , my friend would tease me : `` if you keep eating these things , eventually no man will marry you ! `` As a matter of fact , I could hardly listen to what they were saying , because they spoke so fast . He articulated consonants very clearly . I called the ETS lost and found office and left a message according to the directions . So far , I have n't gotten a call from them , but hoperfuly they will inform me . At 5pm , we met at the classroom and walked to the pub . Some of them , such as the Swiss guy who organized the party for us , the Chinese girl and the South Korean girl would leave Edmonton soon , so we took so many pictures . The South Korean guy turned 25 , so we definitely cerebrated him . baseball , tag , or hide - and - seek with their friends . please check the following sentence . ( grammar and logical ) They also have many competitors . Unfortunately , I could n't join BNO ( boys night out ) tonight because of my job . I ca n't stop reading , so , recently I am staying up late . At the beginning of Aug , I went to Europe and Dubai by myself for 2 weeks to see my friends . The tornado will pass . It 's a really nice place but there 's sometimes a bit of trouble . When I was a university student , I heard a terrible story . The father felt like he was going crazy and was terrified of the boy . `` It is a good daily practice for me so that I study English hard at the moment `` Watch your spelling ! `` The newspaper I read is called ' The Japan Times . ' `` I want to sing English songs with perfect pronunciation . It drives me nuts sometimes . Oh , I did n't know that I wrote so much . This is another problem ; once I start writing about my true feelings , I ca n't stop . . I had a lot of time , but I did n't do anything . Today , I took a diagnostic TOEFL test in order to begin the process of preparing for this exam . My score was only 496 points ( on a scale of 310 to 677 ) This reminded me of how difficult the English Certifications Exams are . Even the pleasure boats on the Tosabori river were covered with jolly lights . I happened to see the lighting ceremony , and I saw a governor of Osaka . There are many gift shops selling things which are cute , fascinating and nicely decorated . Their smile really makes me happy and relieves me in turn . I start to plan at least one month before the day of the event . Every time I make gifts , I always enjoy the event itself through such a process . But after our stupid president made the decision , our government said that speaking English is the key to becoming a global country and they are going to enforce English education on the people . This will help our kids to understand other people and other countries . Obama 's transportation plan If possible , you should use ( the ) ice sold at the liquor shops . There was a sudden braking with vibrations and rattling noises . Finally I 've finished my exams ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I do n't have a job , so I can enjoy my spare time , which I spend doing funny things . . In fact , I have been there like ten times before , specifically to my grandpa 's flat two blocks from the beach . I feel it 's my place in the world . dinner was delicious . the next day at the wedding I went sightseeing . I went shopping and had delicious food like takoyaki . Have you ever been depressed ? `` Have you ever been depressed ? `` , I was asked this question today by one of my associates . I could not understand what he said . I mean , when I use English , I ca n't tell my feelings completely because I have poor vocabulary . My parents were worried and I decided to study Korean and a little of English , too . Studying korean is very funny , but I do n't know about grammar . I 'm learning the korean alphabet , named hangul , It 's very interesing . Now , I will have dinner . Good night everyone ! The Great Gatsby In the spinning room , you ride the bike fixed to the ground , and under the guidance of the coach , you can ride to the rhythm of the passionate music . First , I thought it did n't matter to sit any place , but actually I was wrong . I work a parttime job hard three times a week and I 'm given enough Ely Cathedral There are two types : one is the iPhone , the other is Android . Maybe you would think of the Olympic games , the New York Yankees , the Chicago Bulls , etc . They did n't turn on the heat yet , because the weather is n't cold enough to do that . Finally , thank you Brendan because you encouraged me . After that , I hope I can further my studies and become a linguistician . You can not drive from 10 p . m . to 6 a . m . the day after , on Wednesday , Saturday , Sunday and the day before and the ten legislative holidays . Of course , it is not meaning that is to go forward without any care . K - BOX has a free car service , we took the car when we went there and return back to school . Then , people who shake the two dices , the number added in total if it 's 7 , then you can add a certain amount of beer to the glass if the glass is not full yet . So everyone celebrated my birthday and gave me presents . Last year the government settled a new traffic rule to wear a helmet when you drive a motorbike . But I 'm scared even on a taxi , because the driver accelerates for a red light . the life is very hard and simple I think . . . . I MUST ACHIVE MY DREAM . All of them use English or Chinese or half and half . I am not sure , so I want to hear your suggestions . Second , I have sent all the agents ' ( have the VIP states ( ? ) ) full names to you , please check them . After that , could you get back to me ASAP ? Your website saysat least two letters of recommendation are required , and they should be written by the applicant 's teacher or employer . After graduation , I have been working as the chief of a non - profit - organization ( NPO ) for more than 2 years . Would it be acceptable to ask a business partner or CEO working at another company to write a recommendation letter ? And I want to drink bowls of gruel and eat steamed burn , which are not easily found at night . George Lucas is a filmmaker . I think it 's very difficult for me to keep a diary in English . Having access to TV more encourages people and especially children to watch TV more . So there is less time for hobbies or family . It is bad for children 's eyesights when they watch TV too much . It 's hard for me because I was flunked as a student . To become a skillful computer user . I 've heard that Japanese tend to follow the majority and reject others . They always accuse me of being too stubborn and tell me that that 's why do n't I accept other idea . In spite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summarizing his story , even though he still had 10 minutes left for finishing his lecture . I saw the professor get upset about that , so I raised my hand and said to him `` the professor seems to want to finish his lecture first , so could you talk later ? ? `` and I stopped . Afterward , some of my friends came over to my place and started criticizing me about it . They asked me why I did that to a vice - president , that was it too impolite and so on . I thought it did n't matter whether he was a vice - president or not , he should n't have interrupted our class . However , I also think it might be not about Japanese culture , just about me . Watching the movies `` Terminator , `` with actor Christian Bale , reminds me of a creepy movie called `` Machinist `` and my experience above . Tomorrow is Thursday ! ! And I bought some books on philosophy , problem solving , English study , etc . A Japanese friend has told me something about this website and I wonder how can I survive without her . . . When people who live in Tokyo go somewhere , to It 's really different from those stereotypical interviews which take place in formal meeting rooms where you become nervous and uncomfortable . I usually try to take a nap , study English . `` How many times a day should I call you ? Today , I found a very interesting website , Lang - 8 , from my colleague , Michael . Too ( so ) difficult . . . This whole school has a very different atmosphere . I mean , these are just my personal experiences . I am going to study English now . I think I can write simple English , but not complex or sophisticated English . Hi everyone . A few years ago , I studied English with some text books instead Of course , I still use text books to study English as well as the question sentences 1 ) Do you often play basketball ? I could n't remember words and vocablary . Dallas Marvericks vs Miami Heat . Fortunately , I am working for a teaching design degree . Monkey D Luffy is the main character in the story . By the way if you are interested in Japanese , I may be able to help you study Japanese . Because , he ca n't understand why I ca n't understand English . But I do n't understand quantum physics . Today is the 16th of April , but it 's very cold , so I 'm wearing a winter jacket . I enjoy playing the piano and breathing the fresh air after it 's rained in the jungle . A Nurse of Indonesia . If I could polish myself . . . . In Asahi News paper today , Some of them were returning to their country disheartened . I do n't like examinations even though I know we sometimes need it . I think everybody is born with thier own ability , and potential / posibilities . They really wanted to get nurse licenses and wanted to know good Japanese for it . But we have a lot of work for our patients . essentially , when we introduced people who came from another country , we helped them with getting situated living here . They said it is too difficult doing both work and studying a second language . So far , I have not thought so because So , I brushed my teeth quickly and got ready . I checked whether some information had come to my email box . I went to a Korean restaurant today . I love Korean food . I am looking for a new cap but I was n't able to find a cap that I wanted to get . I looked on the internet and I finally found one , so I ordered it right away . The University Entrance Examination grade will come out after 2 hours . . English is slowly driving me mad . I can be happy since all of the people present at the wedding reception are ( also ) happy . Please , tell your strategy to overcome sleep ! Second , I move to eliminate my sleepiness . And of course , I enjoy reading it too . For example , the death of parents , attack from demons , or war , etc . But being in the ocean was so beautiful and it seemed that the visibility was very good . She said to me I am not interested in marriage . I was thinking I have to curl my tongue to make the `` R `` sound until I was taught by him . Today , I went to a Jewish temple to attend a service with a few classmates . A lady told me that this temple is very flexible and that if you want to experience a traditional Jewish service , you should go to some other temple . That 's why I will go to some other Jewish temple and then compare my experiences . I think , that medicine is my vocation . My 95 - year - old - mother - in - law is in a nursing care center . My 67 - year - old husband was invited to play the guitar and singing songs at another nursing care center as a volunteer . In fact I felt blue for a few days , so I could n't write my diary on Lang - 8 . But I should be a little bit more serious about my messages . I 'm looking forward to it : ) So , I began cooking for myself in the mornings . Sometimes I felt sleepy and wanted to give up , but I tell myself to resist . As a wizzard , I can research the expansive and unlimited world of magic , adventure with friends , study knowledge , seek for treasure . . . and can be in the high class of society . If it is Japanese you need 3000 hours to master it . So it will be difficult for you to master Japanese . Maybe they want to become some kind of cute or different from them . Also it is difficult : ) I came to London yesterday to study abroad . So I do my best to study English , and I made it a rule to keep a diary in English . This term I shall keep a diary . The school 's nearest station is a farm road . Calgary is cleaner than my hometown . I went to the cemetery with my wife on the 13th where our ancestor 's grave is , and offered flowers and incense sticks . Tomorrow I have to go to university and barber shop , study English , and prepare that will be 9 . 33 pence , please . Japanese government gave her some gifts as our gratitude because she donated a lot for Japanese people after the big earthquake happened . These days , I try to listen to English . I think I will become a English speaker if I have a native friend . I was curious about sex and when I had enough of watching it , it did n't impress me anymore . But they thought I was refusing to mix with them because I felt superior . The best place I can think of is Algeria in Africa . The work is supposed to be broadcast through NHK Tv program `` degi navi teens `` The work seems simple and childish for me , but her skill is wonderful . It is said that singing English songs could help to improve our oral English : is that true ? If so , could you share some of your favorite I was very surprised at the amazing number of people . Going abraod remind me of my former life in America . I read a lot of articles about Michael . It looked like a mountain for me . I 've seen the posters where a young boy is everywhere many times . Though I was apathetic about golf , It was a little humorous for others , but we did n't feel it was hilarious . Especially to native speakers or anyone who can speak English fluently , or interested in studying English . So I am willing to take part in correcting Korean as far as I can . ( or if you have something that you want to know about expression , culture , or whatever about Korea , let me know . I should correct this , but I think it will be a little hard for me to correct the habit . Today , I experienced a blackout because of the effect of a massive earthquake and the Fukushima daiichi nuclear plant accident . It is cool to see famous people unexpectedly . This afternoon one of my bosses told me that they stopped sending volunteers to Miyagi Prefecture ( the place that the big earthquake hit directly ) . I was planning to make a big decision and told many people around me that I was going to go there to help people in need . By the way , how do you describe in English the feeling that you feel when compelled to do something for others ? He is fantastic . My Fantasy Land ( Please correct my homework , please ^ ^ ) It 's bordered by Moonland to the north and to the south , east , and west by an enormous ocean . Another good place in Guiland is Fantas , there is a museum there that simulates what the future would be like in the next 100 years . There are also many shopping centers to enjoy . I have a question about The Wizard of Oz . I am a pharmacy student who is not good at learning chemistry . I was unaware that my major has a great relationship with chemistry . Anyway , I am more fond of physics rather than chemistry . I have had a headache since yesterday . When I am sick , I feel lonely because I live alone . My mother language is Chinese , I hope I can help someone here . Our holidays were going great ! Since I saw Nakanishi - san 's blog which introduced this service Lang - 8 , I finally registered and started to use it . He was transferred to an American office for a period of one to two years . But I 'm not an infant , so I have to study more and more ! I have an experiment in chemistry at the university on Thursday and Friday . This is my big source of distress . She was on that southern Asian island as an exchange student . I 'm interested in natural sciences like astronomy , physics , and earth science . Please make corrections and comments about my sentences ! As a result , he declared that he felt really sorry to his fans and he decided to retire from the entertainment business . I met many foreigners there , and I had an interest in supporting developing countries . . And I want to establish a fair trade company that can help not only people from developing countries , but also Japanese people . Fenders are my favorite kind of guitar . Last night one of my good friends from Lang - 8 helped me fix my computer . He installed Japanese and Chinese language support on my computer by using TeamViewer . I am really happy that I can read my friends ' names on my page on Lang - 8 . How wonderful he is . Wikipedia said / says that she has Danish origins , we certainly do n't see that in this picture ( but how sure can we be when we know how much the makeup and the lighting affect the colours of the photo ? ) . I can make pudding with milk and eggs . I became his assistant [ space ] ( he called us [ space ] `` Angle `` ) . [ space ] We helped him create his works . He was gentle man . I ca n't remember exactly when it all began . I think it probably was a good friend of mine who first told me about the possibility of going to Great Britain and studying there . Here in my home town , they only offer a few courses , but the courses available in Great Britain are astonishing : : philology , philosophy , the arts , psychology , etc I have been interested in art as long as I can remember but , being honest , I dont have enough talent to be an artist . And , truly , I ca n't believe this is really happening to me . The idea of moving to Great Britain and to study there , in the beginning , was only a crazy possibility and now it 's almost coming true . Unfortunately I have n't got weekends to slow down a little , sit down and relax . When writing a diary in English I am always wondering if my sentences are right or wrong . ' ' Speed reading . ' ' If I master this technique I can read a book in just 10 min . Rynn made some great steaks and prepared fruits and snacks . . only , even though it was not right and she would n't stop . strong and uncontrollable . . . video camera . I study English little by little . The optician gave me a pair of contact lenses . Studying English is very interesting . I celebrated Girl 's Day for my daughter yesterday . I bought a curtain for my room because the wind is so cold that Lang - 8 will be very useful for what I want to do . If I 've done everything correctly you will see a photo of my cats . My cats lived on the street before I met them . they were really dirty , sick and hungry . Most of the time I have to watch the show with the closed captioning on , because somethimes I dont understand what a particular character , Carl , says . He ( Carl ) is the only recurrent human character in the show and he has a really unique and rough accent . I dont think I will learn somenthing really useful watching this show but a least I learn some more street wise language than in text books . I have to improve my English , especially writing , so I 'll start from today . In addition , before going to bed , he put a cup of milk and a few cookies for Santa beside his bed . Hurray ! ! ! `` He was in seventh heaven . thank you for watching this page ! I could n't bear it ! It will give you nominal relief . I always hear people talking about stuff like some place in china had a landslide or a sudden drought in the northern part . It is the taste of fall in Japan . There is a ferry terminal near the station and we can go to Georgetown by ferry . I think I gave the wrong impression when I was chatting with you on the day before yesterday . Maybe it was first time I communicated with an foreigner . When I want to say something I need to search the related words in my mind however I ca n't express my idea properly . My voice and intonation may sound abnormal and I do n't know whether my speech sounds a little impolite or something bad . If I did , please forgive me as it was not my intention . We have a electric time schedule board ( I do n't know what it call ) that they show what time next train comes exactly . If the train comes late even one or two minutes , they will announce `` I 'm so sorry , the next train will arrive 2 minutes late , please wait patiently . `` . . . S . , I realized a lot of things about Japan , good things and bad things , and accept that everything flexible . seaweed , boiled and put mashed sweet beans . . . Fortunately , The Tokyo area where I live is far from the seismic center , so I am safe . We helped him to make this food , but when people arrived , we had n't made enough food for everybody . So we found ( served ) other alternatives like cakes , fruits and chips ( fries ) . I heard that we can save electricity by unplugging electronics that are not in use . Another major source of energy use is driving . Oh , sorry I have drifted off topic Most divorcees were suffering from their financial problems , because they have to support themselves . Once , a young guy rode his new Harley motorcycle freely on the highway . Then an old lady rode another Harley motorcycle overtook him and loudly asked him : `` Are you familiar with the motorcycle , boy ? `` At last he found a Harley motorcycle lying in the road and the old lay hanging in a tree . My husband went out to learn Chinese . In the future , I will work as a specialist of coffee and lecture a lot of people on how to drip delicious coffee . I want to do that work since I entered the company . I want to serve ( ? ) delicious coffee to many persons . `` Houichi - san `` cried the assistant , but Houichi was engrossed in his clothes off and wrote Buddhist prayers all over his body . `` Here is his biwa , but no answer . Today you can see a strange thing along the coast . I want to know how to express my true attitude to a native speaker . Okay , thank you . Afterwards , she went to the hotel , which is run by Yuina 's grandmother . Afterwards , Toru returned . Today is raining / a rainy day . I Talked to a Dutchman and a Dutchwoman on the Train . She is a veterinarian . Her husband majored in economics when he was a college student . He said that she thinks that economics is just figures . Their children study cultural history . I can speak Japanese a little bit . Especially the ' R ' sound . I 'm not allowed to use the PC in order to write the report . Actually , I think it has something to do with laziness . > `` < | | Actually , I 'm originally from Osaka which is in the central part of Japan . After graduating from university , I started my career as a teacher in Kagoshima which is in the southern part of Japan and now live in Hokkaido which is in the northernmost part of Japan . For example , to express `` very `` , people in Osaka say `` gottsui `` or `` mettcha `` , people in Kagoshima say `` wasse `` , and people in Hokkaido say `` namara `` . `` As pleasant as the scenery was , I would n't recommend going to that resort . `` I 'm studying alliteration these days , but there is no one who helps me here . Ocean names need the like the Pacific , the Atlantic , the Arctic , and so on . I watched the movie `` TRON `` last Sunday . I have n't watched the previous movie , so I could n't understand it sometimes . They have yet to develop into adults . Last weekend I was going to get her family Christmas cards for the Christmas but I could n't find the cards that I prefer type of design . Last month I asked my friend who would come to Canada on December 1st . I got sunburnt the day before yesterday , soI got some aloes for treatment . Christmas is a big deal for me . First of all , I went to Britain in February , and I stayed for a month . Today is surprisingly warm , 59 F ! It has been freezing since last November . all my friends were surprised to find me wearing only one coat . In the last 2 months , I have studied Japanese everyday . this summer vacation , I always wake up before lunch or later : D The Tohoku earthquake occurred on March 11th , 2011 . I think the people 's view of life in Japan has become divided When I was changing channels on TV . After I watched it about five minutes , I found out it was a horror movie . Although it was horror movie and I wanted to sleep , I still finished the whole movie . When I went to bed , pictures of blood and guts filled my mind ! I should n't watch horror movies at night . . . . . . . . But in the morning it is very comfortable ! If I improve my English speaking and listening , I can go to abroad on a business trip . Usually I concentrate on remembering difficult vocabulary . With the rapid development of human industries , many problems appear as a consequences of pursuing excessive profit and being blind to the pollution . Despite the fact that everyone understands this cruel fact , people seldom take the responsibility to change this situation . The next thing to discuss is deforestation . People cut down trees for farms or buildings ignoring the damages to animal habitation as well as the incredible impact to local weather system . First of all , we should be aware that we would never be able to separate from these problems . It 's my frist diary . I have n't written my diary a for long time . Some things stopped me from writing . But unexpectedly , there were huge crowds of people there . It reportedly said that noise from a quarreling couple disturbed their neighbors below , who then called the police fearing something tragic would occur . I recommend it to all tired people . Its ingredients were rice , vegetable , fish , seaweed , beans etc . . For example , the menu had `` pudding of Green peace `` , `` mash pumpkin salad `` , `` vegetable tempura with greentea salt `` While we rode our bikes in Mexico , we were always attacked by a lot of dogs . Canda 's Wonderland Today we can choose different ways to exchange information depending on different situations . But I was refreshed / relieved ( ? ) . So , there are a few people in the center of our city , because people who live in our city often go to the big shopping center that is located outside of the city . Dolittle ( author : Hugh John Lofting ) I am going to go to the optical shop , and then go to a birthday party for Xiao wei . I have not chatted with Rose _ garden for a long time ; I am thinking of her . . . hie hei . . . . a little bit about her . . . Also some of my friends taught me how to say good evening in French . . The most famous and popular picture in the world is the `` Mona Lisa `` by Leonardo da Vinci . Have you noticed that she wears no jewelry and has no eyebrows ? Do you like the Mona Lisa ? What will the score be in today 's match between Real and Barcelona ? But I tried to behave like , `` No problem , go ahead and talk . `` I 've got surprising news from my friend who I 've known for over four years . It just made me kinda sad since we 've been nice friends actually . It 's going to be a surprise party ^ - ^ We are also going to get some presents too which we hope will remind her of Nagoya ! ! It has been running in my mind all the time recently . I must say : Chinese food is so good , especially in Taiwan . But I could n't explain well because I did n't understand the other member 's research I 'm so nervous XD However , since my wife belonged to brass band in her school days , At first , I didn ' tknow her name , The earthquake heavily damaged the transportation system , such as roads and railways . Yesterday , the last day , I went to the Hockey Hall of Fame . I took many pictures with the Stanley Cup there . I ate dinner at a Chinese restaurant . In order to relax , I decided to do some outdoor sports . Everyone should change themselves to adapt to the environment , especially young men . Here , can I say `` after that `` instead of `` afterward `` without changing Although Science and Politics have been developed surprisingly and our lives have been changed to be made more convenient , we are not satisfied with now . Actually , I do n't feel like the real new year has come . hmmm . He suffered from pneumonia and stayed in the hospital for a month 2 years ago . Fortunately she only had to take care of him for a short time . We are fine as usual . Hello ! ! On the net you can choose from an enormous selection , includingthe paper that you want to read , the field that you want to study , etc , and most importantly : it is you who is choosing , and not who is being chosen as you are with the tv . American drama is very popular in Japan recently . It was soooo exciting and was n't as dangerous as I expected , I could n't be too careful though . but we Japanese typically like American or European fast fashion brands , like Gap , ZARA , H & M , and Forever 21 . A few days ago I got the license for large motorcycles . It was a pretty good time . When I surfed the net , one of my favourite blogs The movie describes just an ordinary family , including parents and one daughter going to a high school . There is almost nothing exciting about it , but one little incident in that family gradually reveals its problems and strangeness , which , to some degree , every human being has , and we sometimes ponder about them . make many friends and travel to many countries . I suggest drinking coffee without sugar . I like watching movies with my friends . I mean , in my opinion , they will be happy getting some snacks or magazines which we can get only in Japan . I knew he has strong intentions . Though he likes liquor , he will not drink one drop now . But , I guarantee to improve your Japanese skills as correctly and efficiently as possible . The story is in 6 episodes , about Skywalker defeating the Sith . The latter story `` Back to the Future `` are interesting science fiction movies . Every time I see them , I have provoking thoughts on / about the future and the past . Sometimes I watch movies English . Recently , I could understand easily English movies . Volley the ball like hammering nails . Now I live in Wakayama city , around 50 miles south of Osaka . Wakayama is an old town and has a beautiful castle founded at the feudal age . To sum up , VCS is a really useful tool to backup the computer 's file automatically and smartly . Waiting for a paticular letter is hard . I did not know the answers at all . In fact , I really want to improve my English . The title is `` ON Long distance education . `` Oh , really difficult , right ? I want to something for people , especially poor people , animals , & lonely young persons . How should I live ? But I like the air and the conversations while drinking . Suddenly , the rain started falling when I was working in my office . I enjoy this way . I wish she paid more attention to me . And this year the Mid - autumn festival is held during the National holiday . The day before , it has lasted until two in the morning so , yesterday my husband wrote a letter and put it on his door . After graduating from graduate school , B found a job at once , but A did not . Suddenly , it occurred to me that sometimes losing is winning . There seems to be an agreement where the government asks companies to donate money in exchange for the privilege to promote the company in the park by doing things like like printing the company 's name in postcards . However , the government should not forget that there are some risks involved . Some companies may abuse their privilege by constructing buildings . I thought that if I wrote Japanese first here , then it would be translated from Japanese into English . I went to a Chinese restrant with my Chinese friend . We enjoyed Chinese food . It was good but a little bit salty . There is one saying that goes `` it is the early bird who catches the worm `` . Most of Chinese people have been studying english for very long time , as for me , I began studying English in junior high school when I was 14 years old , but even now , I still ca n't communicate with foreigners very freely , the lack of vocabulary is a big problem when I want to talk about some complex issue . My listening ability is not good enough , especially when I attend a meeting , because I ca n't interrupt speaker very frequently like in face to face communication . The landlord is a Singaporean man . But neighbours had sex almost every day . Sorry , but what have I written about ? ? If you have n't watched it , I can recommend it to you . recently I ca n't drink a Litre of water from 9am to 6pm . The reason is clear , I am busy at my job . In the beginning , my back was getting chilly ( felt cold ) , My voice turned husky ( deep ) , I had an umbrella , but I left it at a bookstore . When I went back , the same umbrellas were in the umbrella - box . I thought I grabed my umbrella , but it was not mine . After I finish taking English lessons I alway feel thirsty and exhausted . I think English is the language to express something and Japanese is yogurt against Hay fever and Pollen dust It said that for people who suffer from hay fever will get better by eating yogurt or drinking yogurt drink everyday . I told my friend but he said his stomach is also weak for milk , yogurt and yogurt drink . . . . . . It was really good choice ! ! Some of them are good people and some of them are bad people , but we can relate ourselves to their characters while we saw a play . Before last scene come , Jean Valjean ( main cast ) make a confession to his daughter - in - law 's fiance about his old sin , then he disappeared from his daughter 's sight . I want to go to the theater in the near future . Universal Tokyo is near my brother 's house . Of course I 'm not . Seijin no hi ( Coming - of - Age day ) but same as usual . Hair texture is very different depending on the customer 's race . Because I work hard too . Besides , I really need a scholarship , so I promised that I would get straight A 's for all classes from the start of this semester . I love my language , foreigners say that it is weird and that it is difficult to study , they are just afraid of difficulties . ) ) ) ) I am proud to be Russian and to speak Russian , but it has a downside : I ca n't get rid of my accent , because we have a strong and tough pronunciation . 1st of September is the worst day , ( that day ) my studies will begin . . . My understanding is that it is a very strong beam of light . . . ? ( Is this correct ? ) Children 's smiles are very good . thank you . I 'm glad to get along with my lovely classmates everyday . I believe there must be some strange power in her articles , for so many people get together and remember her . Therefore , I believe I can enjoy more when I take a trip with friends , so I 'd like to choose travel with a company if I could choose . Then Italians began to grow them for food . North America Do you believe in a spectral existence ? In the morning , a new lab mate came to our lab . Today , I had a conference . Increasing the treasures of wealthy countries make them richer than before . Take China for example . When scientists developed new techniques to plant crops , China could stop inporting crops from other countries . admittedly , it is not enough to provide financial aid to poor countries . Today , I bought some books : books about Vietnam , Obama 's speech , and Shakespeare . I 'm interested in Vietnam a lot because of The VietnamWar , and I 'd like you Americans to tell me how you think of Vietnam . I came here to learn english . I study an English conversation everyday . It 's very hard for me . For two days now , my wife and I have been walking to the park early in the morning The curriculum of the course is so tight that students can not have the time to do anything but study . On the way to my university , I often listen to my iPod , on which a lot of lectures are recorded . While she was in the hospital , she slept very well and ate balanced meals , and that 's why she recovered completely . So their diligence about English is intense . Their conventional phrases are that `` you need to practice more `` ( Even I know such a thing ) , `` Your English is not good enough to have conversations with native speakers `` ( You have a meddlesome attitude , ( I already know that , please go to hell . ) The reason why they do so is because they have high pride about English . And Japanese people like to boast their special skills like English , programing and certifications . I could see a beautiful scenery . She thinks cram school can not provide the knowledge she needs , but she still needs a teacher to correct her writing . The only thing I can do for her is practice speaking with her as much as I can / as much as possible , but I do not have enough confidence / the confidence to correct her writing ! In my opinion , when people speak / are speaking , they might ignore the grammar problem , while in writing they can not . Even I had prepared for the IELTS one year , yet I still can not easily express things no matter if I am speaking or writing in English . What should I answer ? Everyone asked me `` How long have you been here ? `` Should I answer `` I 've been here for two months `` ? Is it right ? On that day , Angel Gabriel was sent by God to the Virgin Mary , who ' presented himself as a human . Virgin Mary said she is not married . She she hoped she died before that . . I 'm relieved . ( I want them to learn how to use money , so it 's not a lot ) I have been studying English for almost 6 years , but I can not speak English well . I made it with only salt and vegetables and herbs , it was too soon for me to have it though , as I felt something was missing . . . The next morning , I added a bit of a consomme cube ; ) I ate some food , mixed ice cream , zingisukan , salad , sushi and so on . So we went to chocolate a store . But me and one of my friends did n't buy chocolate . Some of them can impact you for a lifetime . In different periods , elementary school , middle school and university , we met different friends . This is my first time using this fucking bullshit ! After all that , I found myself getting off the train holding a tremendous amount of frustration pent up inside me . I am worried about these trifles I think we are equal wherever and whoever we are as long as we live . My mum told me she sent a lot of dumplings to me . The dumplings my mum makes are always full of oil . The dumplings in Jaxin ( in China ) are very famous ! There are no clouds in the sky . But I do n't know what to do . . . The one on the right is Mattya Azuki ( green tea and Red bean ) , the other is rainbow : D It was so funny . I love American drama . Yesterday I rented the DVD `` glee `` at a video rental shop . Memory is quite weird , it can change things with two sides into pure good or pure evil . We may quarrel with our friend or may even swear we will never talk again . All we can remember is how sweet our friend is , and the little things they did for us . I still save the small note my friend secretly wrote to me in math class asking me where to go for lunch . I started diving lessons last year . shouga - yu If you have catch a cold , you can try to drink shouga - yu . Today I hadseminars at the afternoon and , in a little while , at night , I 'll return to college to more and more seminars . I 'm thinking , writing here is more comforting to me , because I can think in english faster ( Yatta ! ) . The bad point is : wo n't work appropriately with learning new words . Watashi wa supein de umaremashita kedo kodomo no toki , irelando to furansu ni mo sunde imashita , sore kara , eigo to chotto furansugo mo hanasu koto ga dekimasu . Kono nikki wo yomeba , watashi no nihongo no reberu ga wakarimasu . They are chosen by people because of their life style . We exchanged our numbers and e - mail addresses . governments planning an underground nuclear waste repository on Mongolian soil . These governments do n't want to take the risk of nuclear , and just foist it on the Mongolian people . Tagine pots and dishes , which are cooked in a tagine pot , are popular among Japanese young women . So it 's healthy . I went to a restaurant which serves the Mediterranean - style seafood dishes and I ordered Moroccan curry . That was true . Have you ever had any serious disease or injury ? I want to have some friends in foreign countries . In my last entry , I wrote about Africa and all the different kinds of wild animals . I also wrote about Drakensberg . But my parents think it 's not good enough and I need to become more competitive . Both her face and voice are adorable . So nobody said `` Congratulations `` to me . It did n't matter to me that nobody said that to me . I think that Mother 's Day is a special day for saying `` Thank you `` to one 's own mother . So I thought I did n't need to say `` Congulatulations `` to my friends . I very much enjoyed it ! I 'll be going to `` Sendai `` by train to go shopping . I 'd like to go by car , but My car has been broken since 2 days ago . I hope it will be repaired as soon as possible ! ! I have to look at four pictures once and describe them in a story . I want to speak in English fluently like an American . I think that I agree with foreigners . I want to go to America early ! ! I 'm going to visit one preschool this Thursday . This is a cartoon in today 's newspaper The electronic design covers PLC , semiconductor circuits , PCB design , C - language farm ware and much more . A ' gap year ' system is as follows : high school graduates who have the qualification for admission to university or college take volunteer activities for a year in his / her country or overseas without studying in university or college . They stay from September till July next year at a house owned by the local government and are paid some money for living expenses by the government . They experience many things during their stay in my town and go home with their precious experiences . This year too , two volunteer youths will come on September 10th . There is a humorous bookstore . I had a farewell party for my flatmate tonight . I 'm not sure , but maybe it 's Korean style Vietnamese food ; ) We chose some vegetables we wanted to eat from the many kinds of vegetables and put them on rice paper . But I 'm a English beginner and I have never gone to England . So today , I will write in my diary for the 18th of September . Introducing myself . . . I 'm Maru In the period when we got together , he was always annoyed at me and never satisfied with me . I do n't have a bicycle , so I have to walk 30minutes to arrive at the hall to sing . It provides you a convenient way to have meals . It is so great to cook by yourself . When people talking about day to remember , most of people will mention about any kind of special day like festival , holiday birthday , gathering day or even day of dating your girlfriend . It is natural for Japanese when we visit someone to bring some souvenirs ( `` Omiyage `` culture ) for them . However , I have no idea if theAmericans will accept Omiyage culture . I do n't listen to music often . takusan hon wo yomimasu The liquid from food waste mixed with EM bokashi contains good bacteria . This can kill bad bacteria in drainage pipes . But in this class , we did diverse work using english . For example : Singing songs , doing role plays in front of the class , doing yoga following english directions and so on . Now I can enjoy english . When I was just practicing english speaking , even if I had grammatical problems , I did n't care . I guess this habit is the result of practicing English writing . However , so learning C is put to bed . Also will be great to study another language , maybe italian or some slavic ( Polish , Serbian , Slovenian etc . ) This cultures are intresting for me , and words not so hard to learn I think . Distance is not a problem for me , because it takes 45 minutes by train . But the train ticket is expensive for me . . . The restaurant was quite expensive , but the atmosphere was nice . These days I am busy with hunting for a job , but I 'm having problems because of the financial crisis . Another reason , I think , is that I want to change career fields . Above all , I can not memorize English words easily . I have a fever today = . = This is my writing examination in this semester . Let 's make up our minds , stick to it and enjoy our lives well . What will I do ? It is good that I do not have to go anywhere . = ) I hope that It will not be hot in the evening . What will ( shall ) I do ? All airways to Western Europe are all still closed and the central point of the arguments is what level of ash is safe . But I found out that her parents got divorced and she suffered from it . Yuma rode his tricycle . My favorite artists are AKB48 ( Japanese girls group ) , KESHA , Avril Lavigne and Lady Gaga . I do n't just study a lot of things at college ; I also do a part - time job . My strength and energy gradually becomes worse . they wore witner scarves , hats and thick coats . I am sure my mom will come to the airport with my thick coats . I am so looking forward to see snow there . I am good at writing , but I am not good at listening . As soon as I got home , I had dinner . So I went to buy a present ( whiskey made by Suntory , a famous Japanese company ) for my father today . When a student walked out of the classroom with his phone on , my teacher , an old man from Anhui , rushed out of the classroom right after the boy , suspecting he was playing hooky . At last , the poor frustrated old man came back alone and embarrased in a pile of laughter . The cat is called `` Boss `` by people . I used to live in a homestay ( house ) and went to there yesterday . We keep in touch with each other by QQ . She does every subject well except math , Do you know he used to get zero in math so she promised to work hard at it . After that I went to Auckland Museum . But I guess the best thing is just natural . Remember what did you tell me when we last met ? Were they easy to start ? I really do n't add unfamiliar people on my Facebook , so I felt that it was a little annoying because I did n't know him . Although I have already gotten material of apartments from their support group . I am able to relax but when I stay with someone else I am not able to really relax . This is the reason why I have not been sleeping well recently . At the time , I thought the reason why I think like so . Aerobic and Strength training I 'm really looking forward to seeing my old friends and wearing a Furisode : ) I 'll take a lot of pictures and , I 'm going to put them here . You must be looking forward to seeing me wearing a Furisode ! If you do not deal with this problems , I will be forced to take a legal action . I am a college student . She was the most beautiful Pinay I 've ever seen ! ! ! I will be studying English about half as much as I usually do . But a snow - covered mountain is very dangerous . So I 'll go to the snow - covered mountain with my friend . I used to go to a camera shop and order pictures printed , but I do n't have to do that anymore . Nomally in Tokyo , it is at the beginning of April . This winter was hotter than those of normal years . I 'm hoping to have another amazing dream tonight . Going along the main road straight to the city . Thus , after a long day riding , I really want to go to bed now . But he abandoned it because his girlfriend got pregnant and he decided to be a father . There was an earthquake on 3 . 11 . and creating things is so fun . But the point is that we are so small to the universe , so why bother being so tired and depressed by something also so little . So little that you will hardly recall ten years later , and you probably will never mention it ever ; like missing a bus , losing a pen , or having an argument with friends . Japan has a long and glorious history , good public safety and a strong army , Tokyo is one of the biggest cities in the world , Japanese technology is the best . `` The Japanese government and companies know this fact well . So I decided not to buy a CD player and bought an I - pod instead . To my suprise , she was not far from my sight . She has been there from beginning to the end . Surely , she does n't even know what I wanna do with her when I have time . If I can assume her existence is destiny , I would confess my feeling to her directly . - There must be a leader who is in charge of arranging meeting times or presenting their project in front of the group . So , I do not agree with the idea that all group members should be given same grade even if they choose each other as group members , like a team that consists of all friends . First , it is true that each member in a group devotes his or her passion and time to the project with different amounts of effort . ( our professor made us break into a few groups ) While my team was working on an ongoing project , a few students , including me , spent plenty of time individually on the project , but the others were just like spectators . - This class always reminds me that people should be diligent when working alone or with other people . Today I 'll talk about my hamster Subaru . April is the beginning of school season . I had already heard that no one brings musical instruments or sings songs to cheer their favorite baseball team , but I did n't know that vendors threw snacks like peanuts or ice cream . I saw some videos related to the baseball stadium vendors on Youtube . Unfortunately , there are n't any vendors at Japanese stadiums , as far as I know . During this time , I 've been learning grammar rules and vocabulary by heart actually I 'm still not good at English because I 've been studying it on my own . sorry , my ability to speak English is really basic so I 'm unable to have a fluent conversation . I recieved a letter from the job training institute . + peel the carrot and the Gobo . + cut the carrot into strips . + stir fry Gobo and carrot together with sesame oil ( oil also possible ) until wilted . ( soft ? ) + add the dashi ( soup stock ) , sake , soy souse , sugar . The whole world are having their eye on the rescuing of the Chile miners . The construction for disabled people at my nearest station has been going on for 3 months . Because there are n't famous Japanese celebrities in America and there are few Japanese celebrities there . Probably Americans are not interested in Japanese celebrities . The funny guy from Russia said that he realized that Japanese women walk with short steps , and he thought that it was because Japanese women used to wear Kimonos . And the girl from Sweden thought that because the women put on high - heeled shoes , they ca n't take big steps . About my holiday So I want to study a lot of languages of different countries . I exaggerated too much . I visited Toronto , New York City , and Hong Kong during golden week . Because , I think that to review those is more important than to write another . Recently , I have been studying English . My favourite months are October , June , July and December . Today I 've just watched an awesome movie , I loved it . In japan we usually play the game `` nine ball `` , one of the various rules of billiards . actually , I did n't search for it , my canadian obba told me hahah in 30 years old , I want to be good at speaking in french , english , japanese , korean , , ha ! nowadays , I really enjoying watching overseas drama , the title of drama is `` desperate housewives `` . . it is season 5 but , confidence is important in western culture , haha I sort of thought , down the corridor of the time , this is the first step to improve my english I teach mathematics to high school students . Workaholic ? ! I booked an English class outside of class . I want to speak more English . He has an exciting life . I would especially like to see the pyramid , SPHINX , mummy and so on . There is so much I want to see in person . I was so grateful that one of the parents told me that her daughter really enjoyed today 's lesson and she was glad to see it . It might be harder to learn and collect vocabulary by myself . What would you say if you presented Lang - 8 ? On the march 11th , the big earthquake occurred in Japan . New year is just around the corner ! Today , I will take two classes , because I am very busy . About 8 : 00 pm . , he came home and gave me flowers and chocolates . I 'm very happy to get the surprise presents , because he always forgets important things . It sometimes causes pain , particularly in the parts that have a lot of Cellulite . Danxia Mountain is the only World Natural and Cultural Heritage in Guangdong province . As a sophomore , I would like to do something different from last summer . The name Tiramisu is Italian for `` Pick me Up `` ( Tirami su ) but can be translated figuratively as `` Make me less sad / happier `` although It 's still April . . taking midterm Exam . I studied in the library until midnight sometimes . Today , I was walking to the library . Hot yoga is doing Yoga in hot room where the temperature is 40 degrees Celcius and the humidity is 65 % . It 's a very hard Yoga . Everyday when I wake up , I first power on my laptop and log into QQ . QQ is a software program like MSN , and in China is the major instant messaging program . Though I have been learning English for about 10 years , I 've never tried to call foreigners in English . When the phone connected , I said hello to him in Chinese naturally . My point is that the bad thing is not that you are not good at something , but that you are afraid of having a try . Keep on learning . Good Morning ! I am from Thailand . My name is Jirawut . I have decided to practice writing in English here . I hope it will improve my English . I hope someone would help me . Next time I would write about beautiful places in Thailand . I plan to learn Technical English next year . I feel warm today : ) But I saw many people taking the exam . I hope many people get to be nail artists in the future . I really want to volunteer for those who are suffering but I do n't know what I should do . If I had the time , I would go to the worst place to help . I guess hurricanes are common in my local area . If I were to experience one of them , I would hate tsunami the most , I chose two places . We can see the animals close up and observe their behaviors and abilities . My recommend is the behavior exhibition of penguins . There are several lavender fields in Frano . We could see the splended lavender purple view , and we could smell the scent of lavender . Of course , Kyoto is one of the most famous places in Japan . I thought that game was not interesting but they were so patient . I 'm suprised about this site . If I had found this site earlier , I would n't be worried about my writing study . I was even wearing a nitted hat with `` I love New York `` on the front of it . We need oxygen to beathe but we easily forget the importance of it . I just realized that how easily I can be suffocating without this . anyway , I 'm tired of using big letters , such as ' I ' instead of ' I ' , that not only that but this mark ' meaning omission as well . I watched ' Butterfly Effect 2 ' , ' Vapoorize ' , ' Pirate of the Caribeans ' and now ' Insadong Scandle ' it 's about the restauration of old Korean pictures . The number of your vocabulary Have you heard or thought of how many vocabulary words a naitive American or a native Britan knows ? I should change my password . . . So I want to improve my English . If you find any mistake , just cross it out . I ca n't blog in French , , , . Design is all of its value and Design creates new philosophy . `` by Kazuo Kawasaki I heard that soda makes meat soft and actually the steak was soft even though it was cheap , and it did not taste of / like pepsi . There is a statue which looks like an opening book . Today , I feel like writing about myself . I always go surfing during the weekends . Surfing is very popular in Japan . I speak a little English . . . . . . . I 'm looking forward to receiving your message . They then hold a party to uncover the baby 's gender . They may make a cake that may have two different colours inside . I am a college student from China . Moreover , there are many different kinds of videos that you can choose from . I 'm going to go pick up one of my friends at Nriata airport . Sometimes , it takes a long time to see them , and I have to wait quite a long time at the airport . They all seemed such kind people and made me feel comfortable . This night , there is a TV program showing a movie called , `` Harry Potter and the Goblet of Fire `` . It 's really hard for me to understand what they say ! I did n't necessarily take the exam lightly . However , I was too hungry , dizzy , sore in every part of my body and sleepy . In the Tokai region , the central region of Japan , a big earthquake happened early this morning . The oscillation continued for more than 3 minutes . He might be genius so I 'll give up adopting his method . I love department stores even though they are a little bit expensive because they have many atrractive things such as cool and fashionable clothes , decorative tableware , and delicious sweets . Yesterday , while searching around the web , I saw this homepage . This is my first time writing a diary on the web , so I am really nervous now ! My grammar especially sucks . Last weekend I had a party with my member for new staff coming to this laboratory . In Canada , I want to make new friends all over the world . Of course , not only will it be more expensive but it will take more time to get there . It 's not comfortable living in my house because of its bad location in spite of remodeling some parts of it . Compared with my new house , I think it 's very inconvenient for me to live there . - A gray plane with a red dot on its top rotates according to the place of the mouse on the stage , which shows how the rotationX and rotationY properties work . It was good for my shoulders ! ! There are many foreigner at the party . It has been a long time since I have spoken English with foreigner . I think Japan is becoming weaker but Singapore is becoming the center of Asia . I 'm in college learning Russian and European philology ( philosphy ? ) , also I try to study English and Japanese . In Japan , we ca n't buy cigarettes from a cigarette machine without a Taspo card . countries , and the other is about coexistence of different cultures . When I study them , I go to the learning center of the Unversity , which Usually I tend to get nervous and sweat in those occasions . My hobby is dancing , eating and cooking sweets . nobody belives me And I also like ' just dance ' and ' beautiful dirty rich ' . The desire for money , fame and all the beautiful dirty things . I 've been thinking / contemplating that I should study English for university or preparation for studying abroad . We learned the Present Continuous and Present Perfect Tenses in Hindi = ) one of my favourite alcoholic drinks is RHUM DU PERE LABAT . T completely . Besides , scholarship for students who want to study abroad is impossibly difficult to get . Though many Japanese are rich and they afford educatoin , I believe we need changes in Japan . On the way ( there ) , we bought some ingredients for sandwiches . This is my first writing on Lang - 8 . I have to learn English and little Spanish for my business . Therefore , continuing to eat a lot of junk food means exposing yourself to the dangers of gaining weight , diabetes and other diseases . Secondarily , it spoils children 's appetites and promotes bad eating habits . I am telling my friend about past things but I am not sure about grammar ( tense ) Is that correct ? I could n't contact her but I guessed I could of met her if I went to her restaurant `` As a result , I met her at her restaurant . It 's like jazz music , but more noisy , with lyrics . The name `` Baduanjin `` refers to 8 different movements including shaking wrists , lowering your head and hips , and swinging your entire body . This is a very popular blog in the United States of America . Last night , my American teacher told us she had a bad experience in China . because her passport , make up and even her money were in the baggage . but she could n't remember the taxi number , so she did n't know how she could find it . After she wrote the form , she looked around , and she saw a baggage in the office corner . Yesterday , I took part in activity in my circle , university COOP . recommended them mutual aid , new PCs , new electronic dictionaries and so on . That 's why my birthday is in June . Then , Shinobu Moromizato who was the second money list player in Japan appeared our behind . My wife said to her `` Hang in there ! `` , She said to my wife `` Thank you . It 's been a long time since I 've written something on here . I do n't know what to write down . And I have not made the decision if I will stay here for my whole life . It was very . delicious . I think that superstars lip - singing songs are not a singers and their music is not music . because I do n't know what would be interesting for me , and I thought it would run out of battery quickly . and they downloaded it to my iPhone without my permission . kono eiga no namae wa `` grave of the fireflies `` deshita . Yesterday , I wrote I was not interested in snowboarding , but I watched it live on TV at noon . The sea water tastes salty , therefore , the sea water contains salt . The theorem is proved , thus the experience will have a good result . proved However I did n't need ( to do ) it , because I did n't have any money . I always keep my diary in Korean , so I want to say hello to people who are English native speakers and read this message ^ ^ Soshite sono rekishi ni te wo kuwaeru koto wo omoitsuita ( lembrar ) no da . It made me feel warm . When we see the pictures of the past films , we feel that it 's so old , but today 's dramas , pictures and what 's more , scenes { ? } of today 's life are soon becoming old . Surprisingly , on the forum for `` I want to meet soon ! ! `` in both SNSs , a lot of messages were submitted by women . Observing the board for few days , it seemed that the messages were written by prostitutes or an organization , that infested the SNSs . I look into the information paper to make sure , and I found out that my understanding was WRONG ! ! ! and I will apply the S . So I replied to her on what I had been doing before and asked her what she had been doing too . Straight after we made an appointment to have lunch together . We spent the time just talking , using a lot of technical terms and eating a lot , Forgetting their daily lives , two mothers enjoyed their past golden days . Tomorrow , I 'm going to `` Hiraizumi `` , which is a World Heritage Site . We had grilled chicken there . Complaint ( complain = verb ) about work . . . Important things for learning English : The chocolate cake they served as a desert was especially excellent ! I 'm hungry for success and am making an effort just like I do with boxing ! ! ! My heartbeat is strong I attended my friend 's wedding last day Saturdayand drunk a lot ! This little thing reminds me I should show more acceptance towards my parents , and try to say ' thank you ' more often . I think that I will sleep all this weekend like a dead person . B : You never know . ( You dont know until we do . ) I went to the stadium to watch baseball games of high school students gathered from all of Japan today and the day before yesterday . I do n't like both playing and watching baseball so much , even of professional athletes . They never give up to win the game , and it seems to be in a difficult or dangerous to keep playing . They do thier best for their teammates and their dreams , without thinking about next game or the future . As soon as we got home , my children said , ' we want to play soccer . ' But , because of developing countries such as Korea ; Thailand will be abjectly damaged . With Saudi Arabia 's will to increase petroleum production , aimed at stemming unrest in the market , the price of oil will easily get back on track . I went to the supermarket . . . . . I went to the supermarket last week . When I taught her , she said `` Thank you . `` to me and left . Today my professor was about 20 minutes late to our final exam . At language learning school , my teacher gave me advice to keep a diary everyday . It must have been irritating for the players . Although they did n't get high grade in schoolthey always do well in physical education . I study English and chinese at university . I would like to explain even half what I am thinking and first I should be making some foreign friends . Ohayou gozaimasu . Hajimemashite . douzo yoroshiku . I do n't know what job I want . I graduate next year . Next day I drove to Saitama stadium with a friend . It is very big and suggested a world cup soccer game . Article details I thought maybe somebody sent the wrong number and by chance the number was mine . I thought he wanted to cheat my mobile phone company because he asked me to send a message to unknown number . And we are having small party with Family or friends on Christmass day . Is this true ? ? ? If this is true , I want to live in another country . anyway , l studied English , especially conversation . So , my pronunciation is better than before . . But , I 'm not good at forming sentences in english . . Today , I went to an exhibition called the Seoul Design Olympiad . I requested a black forest cake / gateau . I was going to go to work by train , but on second thought I decided to walk . My Favorite Practice for English because I ` d like to significantly improve ( or enhance ) my listening ability . I normally get excited seeing this unusual weather in Tokyo , but this time I hope that it would stop soon . it is a a tough question of life . I want to be a musician , but its tough to be one . Stay hungry , stay foolish Since I have participated in an English speech contest and practiced a lot ofspeeches , I know some famous speeches , such as `` I have a dream . `` When I feel depressed or worried about something , I listen to it . But around starting sophmore year , He said he wanted to contract the way of light . The ingredients are potatoes , Japanese radish , carrots , taro , konjak jelly , mushrooms , chinese cabbage , welsh onion , pumpkin and chicken . And last , season with miso . They were good taste , healthy , nutritious and work for warming me up . I made a sentence , which uses `` that `` and `` which `` . There are sentenceswhich is use `` that `` and `` which `` . I am wearing a short t - shirt , which is striped blue and gray . The t - shirt was given to me by my girl friend last weekend . I have some friends who are foreigners . My friends , who are foreigners help me with my English . A great thunder came and it turned the sky purple for just a moment . Then a long , heavy sound crashed out , and it started raining for five minutes . My opinion is that the hydrangea is a flower which looks better on a rainy day that any other flower . It 's true that the early bird catches the worm . I made it through the interview , and I can work in the company . It is very hot but very delicious . Secondly , we can spend more time with our family . Thanks to mobile phones , we can keep in touch with other people easily , make appointments easily and speak with friends easily even if they live very far away from us Mobile phones are not only for talking and sending messages , but also for enjoying music , taking photos and getting information . But we should n't forget that talking face to face is a better way to understand each other deeply than using mobile phones to communicate with others There is a bamboo thicket around my house . And bamboo sprouts come out during spring . Yesterday I also went to sleep at 4a . I searched for the novel , `` Christmas Carol `` by Charles Dickens . So I asked the salesclerk , `` Do you have ' Christmas Carol ' here ? `` I found some sentences that are a bit difficult for me . Now , I have n't yet had a good conversation with foreign people . I take some supplements regularly so I thought it would be a good time to buy some extra . The pharmacist told me to take them `` peroidically `` . I think , my health has gotten away somewhere . The first band that I listened to was `` X Japan . `` After that , I listened to `` the GazettE . `` When I watch anime , I like to listen to the opening songs because sometimes some good artists play the intro . music . A example of this , was when I watched Death Note . I liked the very first opening and ending song a little bit , but when I listened to the second opening , The music was from : Maximum the Hormone . New tries for learning English I 'll try to write in English daily for the next 2 months . Sooner or later , a super earthquake and tidal wave is coming to Japan with a smile , to give poor Japanese a precious lesson . We have to stop the Hamaoka nuclear power plant as soon as possible , or we will have to see a very beautiful but harmful fireworks again in the next 20 years . Tidying up ! It 's so frustrating ! This tragic disaster reminds us of the preciousness of daily life . Today I have come to Seattle for business . I want to go to `` the first Starbucks `` , if I have enough time . Any unclaimed or unlabelled dishes , culture wells and bottles will be thrown out when I see them . I have a lot of homework now , but I do n't have enough time to do my homework . the band 's name is `` flower travellin band `` We gave her a raincoat and rain boots . she was surprised and crying because she had been living I saw them for the second time , in the summer at Summer Sonic 2010 in Tokyo ! My will was weak against the allure of alcohol ? I think alcohol is kind of drug similar to as tobacco . In addition , I always regret drinking too much next morning . I know several people dislike the use of code - switching . I think that talking with somebody is a good way to know and understand each other . I had dinner at Matsunosuke , which is a neighborhood restaurant . I want to be a high school teacher . When I was a high school student , I disliked sience . So , I want to tell them that `` science is very interesting ! ! `` . I am not used to writing English , so these sentences have some mistakes . In order to opt out of the urban congestion during Christmas , If I can communicate in English , I could know more about wonderful sights It might have spun too ( strong / quickly ) . I have a handy electronic remover for clothes pills that I used this morning . I got a call about his death on Monday and dashed to his home . PL means a private lesson . Next week , I 'm going to take a private lesson for the Eiken interview . For 1st grade . . . . . I 'm studying English My husband cooked `` Gyuniku ( Aussie ? My name is abdullah and I 'm from kuwait . I studied at kuwait university for just one term and then left because I 'm not good at English . I have to be good at english , so I went to New Zealand to study the english languge because it is a very nice country . I find many lovely people here , and I love nz so much and I feel very comfortable in this country . my winter holiday has finished There is a culture gap between us and I ca n't express my thoughts as fluently as they do . I think Accounting is anecessity in our lives . I hope todo work for abig company such as Samsung . Samsung is the biggest company to comeout of Korea . And I hope I will be afamous celebrity out inthe world . I think my strengths aresuitable for theMarketing field . I have been trying to learn English so I came to South Africa 8 months ago . Today was truly a hard day for me . After noticing Oni , children begin to throw soybeans against Oni saying `` Devil out , Fortune in `` . Then Oni escapes from the house through the windows . We believe these actions can get rid of the bad spirit from our souls and pray that our heath will remain resilient . I do n't know the specific origin of this custom however surely it has lasted for so many centuries . Also , Japanese knows about grammar I was going to stay at a friend 's home because he wanted to talk about his divorce through the night . I am excitedly wondering how the story will end , but I 'll miss if it comes to an end . My position is Forward . I am reading a book and I do n't understand something about question - tag It is difficult to me but before I asked Rosie on MSN so I would like to ask you again . Beforehand , I was so nervous about the lesson with foreign teacher , who was Filipino . I want to try to have a business topic conversation with another teacher next week . By taking public transportation such as buses and subways instead of driving cars , people could help reduce pollution . I think we should reduce air pollution . We entered in the same year , 2001 . When I entered into my company , I thought I only would work here for 3 or 4 years . and I will put in a lot of effort tomorrow . Lastly , he said it is Japanese AV video that stands for `` adult video `` , which is considered to be pornography . People from foreign countries think of Japanese girls as self - effacing and demure in my opinion . Why is it that so many Japanese girls appear on the AV scene , exposing their naked bodies boldly even if it 's slightly behind the scenes ? But there is a reason why I am working hard recently . Recently , I have discovered that my English has improved . After all , it 's totally not enough to have only English as a specialty . During this time I have got to know the advantages and disadvantages of live online teaching and have developed my own techniques to offer my students the best online German lesson . Healthcare system managed by the government can , to a large extent , avoid unequal treatment among patients and lessen the gap between the poor and rich . On the other hand there is enormous empirical evidence that private hospitals do not have to be inequal or useless to have a negative effect . Fortunately he is still alive somehow . potential players and they have feasibility to win next season . My daughters were so glad to look at it . Takoyaki is a type of Japanese junk food . Japanese taste seems to taste too light for him . `` You do n't have to study Chinese because I want to keep my conversations secret `` . Therefore I 've given up on studying it , and now I 'm studying English . The anime is just ordinary at first but it become awesome later on . 86 % of those who have a executive car are not a millionaire . Four out of ten millionaires enjoy drinking wine under ten dollars . It is similar to his past book . After he finished investigating the millionaires who have more than a million dollars in net assets except for their house , he tells that millionaires who have a house worth under three hundred thousand are worth three times more than the millionaires who have a house worth over a million dollars . 40 % of the millionaires drink cheaper wine , under ten dollars . One is kind of selfish , another is very nice , She will leave here soon . Basically , I dont expect much and I would be fine as long as I have lady friends that I want to talk with . I ca n't believe this news . It 's because I 'm now learning french , and I often read ' rurubu ' which is a very famous journal magazine in Japan . The weather is cool today . I hope the weather can be warm , but not hot . My face , neck and legs got sunburn when I came back home . Fortunately , I had both a Japanese motorcycle and car license . Poor people are using motorcycles in that hopeless and shitty island . I already have a Japanese motorcycle license , but I have to pass the test in English . this morning I got up at 6 : 30 . I love going to the museum and aquarium . * picture of fake cakes This is Cranberry Walnuts Cookies . For example , there is this super genius kid . It 's interesting to correct others ' writing and have mine corrected . It is rare to find people who can speak French well . What a wonderful day ! In spite of my passion toward English , there is no improvement in my writing in English . It is hard for a beginner to study by himself . I came back to my hometown from my grandmother 's house in Yamaguchi . I want to be an expert in nutrition . But before I saw the mountain of KangWonDo , I did n't think like that . I can feel the strength and spirit of the painting in the KangWonDo 's mountain too . I wonder if I can skip it . . . My first impression of the city was that it was absolutely multi - cultural . For example , we visited Chinese temples and Islamic mosque in one day . And if we wanted to see wild animals at night , we could join a night tour . Actually , even my university ( which is not as big as Kyoto univ . ) has many Muslims , in my laboratory too , and I wondered what do they eat in the cafeteria . To understand religion , it will be a good opportunity ^ ^ Though my boss says that I can go to Switzerland next week for a business trip , if your friend goes , you must want to go soon , too . I am starting to write my English diary . I want to communicate with my colleagues , but my English is poor . So I 'll try to write daily . The boys have to play very hard from the first minute and try to squeeze in a goal . I meet a nightbird netpal . The URL below is the message . Flitzer from Mumbai We have been expecting you to be in Mumbai with Kazuya . you should do everything possible to visit us in Mumbai . Thank you and have a nice time ! Many ads and commercials do give important information about products ; however , some of them are merely misleading and deceptive . That 's to say this sentence : Many ads and commercials do give important information about products , however , some of them are merely misleading and deceptive . Question : Can we change the sentence into : I started work at 1pm . From the very beginning I was in a lot of stress because the guests were just flooding in . And at 3pm the chef ( or cook ) told me that our cold kitchen cook would be leaving on Wednesday . . . . The airline company I took launched a new check - in system , intended to increase effectiveness and efficiency of check - in procedures . I Beg a Cat 's Pardon I think it is good to have a better relationship with a human . I would be free ; ) The merit of the smoking habit `` Smoking results only in death . I love smoking a lot . Smoking gives me time to rest . Smoking allows me to communicate with other people who smoke . We are criticized by non smoking people , Certainly there are many bad mannered smokers . and smoke in the areas where we are forbidden to smoke . I want to protect the culture of smoking from such bad people . I went to dinner with my wife and aunt . It tastes like Miso soup and was a little too hot for me . I really want to be a bureaucrat , so I had searched for a good teacher . Therefore I decided to enroll in this school . I 'm 17 years old and I am going to university this autumn , but my mother continues to treat me as a seven - year - old . Hope you can get out of this trouble . but I persevere in my studies to enter the University . I 'm going to study Japanese history at the University . Also , I 'm interested in music . Sharing thoughts , opinions and my photos with my close friends is really fun and interesting . After I practice writing on my blog , I want to become a good writer . Tomorrow , I will get up at 8 and in the afternoon I will go to high school and watch the girls soccer game . But unfortunately my wife dislike insects . My husband 's mother made sweet potatoes last autumn . This is my first - time writing on this web site . = = = Please correct this = = = Today I caught a cold and had a little bit of a fever . I feel so grateful for their nurturing . I go to elementary school with my best friend , I hope our friendship will last forever So I 'm going to save electricity as much as possible for now . I went to a pictorial show titled `` The bridge of friendship between Turkey and Japan `` . Most paintings used bright color . I thought it was a good idea to hold a show like this . One day he received a telegram from a reporter he had sent to a neighboring city . This friday is final classes ! ! ! ! ! Most christians go to church on wednesdays in Korea . I love speaking English , but I need to practice the patterns of English sentences . I have registered as a member here for a long time . my favourite song . things to do , but I should do them next week . I 'm looking forward to going to a concert ! When it comes to a finacial or economic matter that I have to study , I just want to commit suicide . Anything involving family matters can be very complicated in real life . I ate curry earlier tonight . It takes 30 minutes to get to my workplace from my house . So please correct my sentences . Today , I got up at 6 : 30 in order to practice the bass . It is so hard to spend enough time doing all I have to do . 1 . I thought , `` I want to study English and I want to speak to many people `` . To tell the truth , I hate commuter trains . I believe they are going back home from their offices . It was is the autumn colors - the season now . Each of the Japanese cakes was a lovely shape and colorful , but 800 yen was expensive , I thought . I said , `` please sell me this singly ? `` The saleslady said , `` of course . `` I was n't laughing ; I am a high school student . I went to the library , made library card . But , good at dancing and playing the guitar and fashionable ! ! I like English very much . English brings me new life . I went to Australia to study English for a few weeks when I was high a school student , but my English was very very very poor ( ( + _ + ) ) ! ! I was frustrated but I really want to be good at English , because my time in Australia was very fun and exciting , so I thought I 'd like to go again ! ! ! I could speak and understand only a few words or sentences , but I became happy when I understood what they said or they understood what I said , even though it was just a few phrases . Yesterday , I wanted to see some news , and I saw some people said the world will end . I did n't believe it , I think those people are very childish , they do n't know everything about the future , and just speak what they think . Which is the most appropriate way to express my gratitude among the following ? It 's easier to write on than my Android . Its action and music were good , but main character 's acting and the story were not . The movie just took the characters ' names and the power of the main character but not the story . The sweat wo n't stop . I was allowed to go to another country for 3 weeks as a holiday after I finished my first year . I have decided to try reading only in English for about a month or maybe longer . So I decided to read children 's and young - adult 's literature for a while . Today , I looked up a word in the dictionary , but what does it mean in English ? I usually go to my English class by bicycle . This book is writtten for a student in an easy story . We can acquire the skill of logical thinking , collecting information , judge , decision and execution through this book . I think Pilates is good exercise for a healthy body . I cleaned my room and it became a beautiful room . Because I 'm a Japanese , she maybe nervous . I 'm going to go to Tokyo on a school trip . I went to Ajinomoto stadium to dance . After the game I went to dinner with my friends . `` Kastu curry `` made by my father My father cooked curry with `` Katsu `` . `` Katsu `` is a fried pork cutlet coated with breadcrumbs . It is very delicious ! I want to make curry like father does . I 'm really sleepy right now ! ! I 'm going to visit Hawaii in May I 'm going to visit Hawaii in May . I quit my job two months ago . Therefore , I guess our company recognized her skill and actual achivement and offered an extension . This test has 200 questions . ( 100 is Listening section and 100 is Reading section ) Yesterday , I had a sore throat and a cold . This morning , I felt much better and refreshed . My Japanese teacher gave me many articles and asked me to translate them into Chinese . And I have some words and sentences that I do n't understand . You can view updates about the earthquake in Japan from the URL below . today my cousins and I went to `` wuxue `` to gather peaches I think that his is easier than mine ! ! ! I am not the only person to have suffered from a cough , running nose , sore throat and general bad feelings . There is a cold circulating around this area , is n't there ? My younger brother turned 20 years old and he will go to the Coming of Age Ceremony next January . My English skill is inferior to this skill of other students of my university . and I practice the guitar by myself . I love music and listen to various kinds of it . I do n't know that I can continue to write on this site untill then , because I 'm not good at English and I sometimes neglect it 's studies . I not only learned a lot from the work but also made a lot of good friends . My favorite singers areYUKI , RADWIMPS , and Jason Mraz . this afteroon , my boss told us to work during spring festival . This morning I had a seminar on the Department of Foreign Trade instead of working in the office . The main point for this seminar is document export . Ryoma lived in the Meiji Era in Japan . convenient : My house is located in a convenient place . words . When I was in a high school , I studied a few subject that I was n't particularly a fan of , but it was compulsory . I 'd been thinking that I would have found a way possibly to hack it and get myself video games on there Because , I do n't like vegetable . I am not sure if this site is based upon some applications such as joomla , drupal , or developed independantly . . . The first book I read this year was `` Water for Elephants `` by Sara Gruen . Time flew by so quickly , during this time , many of them have gotten married . I met Iidabashi in Tokyo . I 'll try dinner at Iidabashi from now on ! She said `` The doctor told me not able to have an operation , so treating with irradiation `` I really want to improve my English writing skills . In addition , this also apllies to onomatoponia . And I think this is true for other languages . What kind of education have foreign people had ? ( especially in their primary school days ) Although we do have some good sightseeing places such as a great view of the shore , and clear atomosphered mountains . Not many visitors visit our city due to poor transportation . To promote our town 's good areas , I would like to be a tour guide so visitors can come and know our town 's good points . I would like to be a tour guide not only for job but also for my own benefit . I do n't have anything to write . But I do n't have anything to write . The most important topic for me is their daily schedule . My first diary . please revise my sentence But , if I have been playing sports , the pain eases up . Cuzit 's boring . American , British , East courst , West courst , etc A journalist asked his Japanese colleague But I do n't have enough vocabulary to speak fluently . Their pronunciations are so clear and not fast . My pronunciation is n't your business ! Thanks Lang - 8 and my correctors . I ca n't stop writing them easily . What I want to write is that I want to speak `` Disney movie 's English `` I am a high school first - year student . My school is located in Saitama in Japan . But my school is in a country . My favourite writers are Miyuki Myabe and Hiro Arikawa . Spring vacation starts from tomorow . I love traveling , music , sports , writing and so Yesterday night my father told me that he wants me to be a solider while I 'm at college . When I was young I thought that soldiers should be the greatest and kindest men in the world , and my dream was to become a solider when I grew up . But for now , I have to think about my future . Maybe being a solider would not be me , for I 'm a college student and it 's an important time for me to learn skills to adapt the social world . If I enter the army , I might not be able to learn as much as I would like . That 's really a big problem now ; I think I wo n't be able to fall asleep tonight . When we met Shirley and Brianna after having had dinner with Shinae , we needed another ticker for Lucas . Shirley and Brianna worried about me and gave me some advice about being an excahnge student in Mississippi . Therefore when you vaccinate , you have to consider the timing of each vaccination . Perhaps you have problems when you are writing in Spanish because you do n't know about the accent rules ! I also watched `` Lost `` which is an Aamerican TV series . I want to be a translator ! Now I 'm studying English to be a translator . I have some questions about & nbsp ; the sitcom Friends You can enjoy beautiful sights there , for example , World Heritage Sites ( Have you ever heard of Kinkaku or Ginkaku ? ) , and colored leaves in mountains , fresh air , and things like that . demand - Our teacher demanded that we have to finish the report within a week . I have to put up with the noise the fireworks make every beginning of the year . Do earthquakes sometimes occur in your country ? Why do you think people attend college or university ? The specialties of those majors are that students can learn a lot of informations that are required for jobs during the college curriculum . Thus , I believe that people attend college or univeristy to prepare for occupations . It is just what I thought after watching movies and television . According the show , now foreigners do n't come to Japan so many sightseeing spots have few visitors . Gift shops , hotels , and any other companies that serve visitors ca n't do business as before the earthquake , tsunami , and powerplant problems . Do n't worry about coming to Japan . 29th April to 8th May are holidays called `` golden week `` . I could not communicate with classmates fluently . . . Writing a daily note on this site is my first step to achieving my goal . Japan became the champion of Asia . ! Congratulations ! I would like to know the condition , payment period and etc . I would be interested to get all this information . Thursday : I 'll have a test about grammar in French and a test about the constitution of Japan . He invented the alternating current ( AC ) , wireless , X - ray , the Tesla coil , Radar , the Tesla turbine , Ratio - control underwater robot , etc . He could even rip the Earth into two parts by using his little oscillator . Nikola Tesla is too great . I have been studying `` Deskstation `` lesson , but I can hardly hear the computer 's voice pretty hard XD ) , it would be very helpful if some of you native English speakers out there , could give me a hand . I like to play guitar ( ibanez gio jeje ) , I play a lot of Super Street Fighter 4 on my brother 's Playstation 3 and I consider myself to be a geek ' ' wannabe ' ' because of the nature of the career I have chosen ( it 's IT based engineering ) . I 'm so depressed . African American people passing by threw a plastic bottle at me , I lost my luggage the first day , and many people in Ohio mistook me for a gay boy because Japanese are more fashionable than others . It is an incredible souvenir for me . And , I will give you a souvenir . It 's also a chance to get red envelopes hehe . I went to the Garden Museum in Meguro Tokyo last weekend . I registered to lang - 8 because I am hoping to make progress with my English . I have much / a lot of information about this because I 'm living in Japan ! I bought a book written by Kenzabro Oe , and another one about decoding about Kant ` s philosophy . In each country , I had a very pleasurable time . However , I did n't speak English well and I missed opportunities to interact with people . ( redundant ) The hotel , where I went with my family to take a hot spring over 10 years ago , has already been turned into a luxury hotel . Faced with an unknown future , I feel a little nervous . Here are two good chinese noodle shops that Sugi recommended . Dangerous abstraction I think I remembered about 200 words in these 2 weeks . There are many maid cafes in Akihabara , Japan . Everybody was suprised that the US president , Barack Obama , received the Nobel Peace Prize because he had not shown any results yet . Fruit , vegetables , milk , chicken , and ingredients for a pasta dish like anchovy , dried tomatoes and dried mushrooms . So to enjoy the videotape , which I purchased long time ago , My choice yesterday was TENDON . My story has been recommended to the chief editor ! I was still tired , even though I slept longer . This is just one of the things that make me tired ) Most of the offices are closed Saturaday and Sunday . I feel their music is associated with southern rock like Lynyrd Skynyrd , even though they are young . But inJapan his blond hair , blue eyes and English are his superpowers , blinding women who would normally never give him a second look . Today , my friend asked me about that . But my friend was not sure what the teacher said . Then I asked the same question to my daugter ( she is 7years old , ) and she answered me , `` Criss cross apple sauce , `` Wow ! I transfered the fee in the convenience store today , so the day I can get it is probably Thursday . It is difficult to move in perfect darkness . I was surprised athow fragrant the wine in the darkness is . That 's a strange feeling to explain . My first diary I hope I will continue to write diaries in English , so my English can advance . hi everyone My Chinese is good , if you want to study Chinese , I can help you . I come from China , and now I live in Japan as an exchange But I tried to write somthing as fast as possible even though it is short or boring . True story - A white horse jumped over a tower and landed on a priest who immediately disapeared from the landscape , Where did this take place ? I was alonein the kitchen . She was smiling . Petersburg it 's difficult to cope with such weather . I do n't know his nickname - - he said it 's private . It is because I ca n't dry my laundry well and go swimming . Anyway , I hope that I can take 1 week of summer vacation and go on a trip to Malacca ( OR Melaka ) in Malaysia . So I pulled out of the competition . In this highly attuned state , the Buddha saw a way to escape the inevitable cycle of old age , sickness and death . Taylor was a mechanical technician in America . He was called the father of scientific management , and he laid the groundwork of modern business administration . American management was developed by businessmen and management consultants , while on the other hand , German management was developed by a professor . Japan adopted the German management system before the war , but it later began adopting the American management system after the war . Apple uses the American management system , of course . Today , I went to see a performance of comic dialogue , hip - pop & Jake Camp , of which all the actors were born after the 1980 's . The sentences , phrases and words are filled with his affection for children and nature and he expresses himself so beautifully that I was filled with romantic feelings and was able to imagine each scene clearly . On long vacations , she goes to foreign countries . Example `` eingang `` - entrance , `` ausgang `` - exit . Casio 's are more expensive than other manufacturer 's , but its quality is better than others . But the keyboard made by with rubber material that has no click feeling , that I do n't like this . To summarize , we humans used to hunt and gather food . The Side Effect of Our Generation in the Competing Society . This may be the side effect of the rough competing society we are in now . Many people simply think that failures are lazy and they just do n't want to work . In general , failures , defined that way by society , lack many things that successful peopledo n't . In this harsh environment , to keep with the idea of equality , I am recalling something someone once said to me . It 's good for relaxing and sleep . So , the recommended time to drink Camomile tea is before you go to bed . Over two weeks , we 've studied ' Hiragana ' and ' Katakana ' , which are like Japanese alpabets . I 've already found it really hard but I studied the things we worked on in class today for two hours by myself and if I study Japanese continually , I believe that one day I will be able to write a diary on here in Japanese and be able to speak it ! Every word is pronounced to improve your listening and pronunciation , and for memorizing , you can learn by three ways , first , by choosing the correct answer out of the three Japanese meanings , second , from three English spellings , finally , choosing the alphabets for the correct English spelling . I 'm happy to find such a useful ( ? ) SNS . but I 've never found a suitable website or space to improve my writing skill . I was born in Xi ' an which is widely known as one of the oldest cities around the world , as many as 13 dynasties chose Xi ' an as the capital city , which makes me proud . Just several decades ago , rivers were completely available for swimming and fishing . Now if I am qualified to change one thing here , I would love to change the environment here . Xi ' an had experienced a really rapid industrial development during last 30 years . People 's material demand have been highly satisfied . Nowadays , when people do n't have to worry about their livelihood , they unanimously find the environment here is much worse than they have imagined . We have extremely hot summer , unbearable winter , dusty spring and gloomy autumn . Currently if we keep doing this , undoubtedly this city will be turned into a place where no longer suitable for people to live , sequentially economic achievements will vanish into the air . Once I 'm fortunate enough to be qualified to change environment here , shutting inefficient factories , pouring money into improving air and water quality , vigorously encouraging environment conservative companies , cultivating environmental conscience among youngsters will firstly be done . I knew their host family has some problems , like they never clean their rooms , host mother does n't work , does n't pay for the bills , and she asked themfor some money to buy food , and so on . I hope they will have new host family soon , they should be more energic , otherwise they might suffer a loss . But today at dinner , she praised the cake , which I made , she asked me did I make this cake ? 6 Please send the report to the directors , and they will deal with it You have to do something yourself . Back problem Japan has been tackling an unprecedented triple disaster ; earthquake , tsunami , and nuclear radiation leakage . So , I was very disappointed . Since I want you to know more about Japan than you do now , I will post two movies about Japan . I hope I have colleagues soon . I have no confidence in speaking and writing in English . I did n't know / realize that starting kindergarten required so much preparation . All of the things handmade by her , except the lunch box ! Actually , she is a skilled / talented lady and is good at sewing and cooking , but when she does it for her daughter , suddenly she becomes a perfectionist and this causes her to suffer . Pleased to meet you I 'm from Japan : ) I am poor at English . My senior left the company . We had a party in a Chinese Restaurant . I like this culture . I tried to remember what I ate yesterday . I figured out that is was motshnabe that made me smell bad . Motshnabe is a famous food in the Fukuoka prefecture and is made with a lot of garlic . Even though it is clear that writing grammatically correct sentences is very difficult , it 's necessary to communicate freely in English . yesterday ( 18th ) was my birthday so many friends sen me congratulatory messages , and my father bought me a chocolate cake . I searched a dictionary too much times and had difficult translating my idea from Korean into English sentences . Is n't it difficult to understand what this sentence means ? 4 years ago , I was surprised to hear a phone call of about the twin 's news . I am a doctor . I got a headache when we came home . B : That 's why I always keep my eyes and ears opening for other opportunities . I wrote down this dialogue as I listened , from an English - speaking radio program . After eating breakfast I saw the movie ' Lord of the Rings : The Fellowship of the Ring ' . Today we talked about his development plan for the coming year . He reminds me of when I was a new employee , and I hope he will work very hard and be happy at his job . I want to eat something that my mother makes . It turns out that wizards like Ron and Hermione , who are Harry 's best friends , are everywhere throughout the world , not just in the UK . That kind of terrible feeling is too complicated to be described in words . However , after crying , I calmed down and began to think it over . The seminor 's subject was ' ' How to be Popular ' ' ! ! Correction and / or better writing expressions are required ! ! ( 6 ) Moreover , I could connect to the internet for free via wireless connection , which allowed me to search for the latest research developments in the world . My father missed my kids . I told my classmate that my teacher told me not to hand in letters again because I already handed in a lot of them and got very good grades on them . Thank you for visiting my page today . so I was planning to go to high school of America after I graduated junior high school . ' Cause I felt that English is too difficult for me . Hello everyone , nice to meet you ! I 've got a working holiday visa , and I 'll go to hokkaidou , Japan next month . Because I was be able to know about their countries and languages . It is so wonderful ! ! ! ! It 's such a cute site and it 's really a surprise for me ! Today I received a notification that rich recognized me as a friend on lang - 8 . I mean , I hope someone could correct my bad English . Before the Tohoku earthquake and the Pacific Rim tsunami happened , I owned it . But after the radiation leak from the atomic power plants in Fukushima happened , I bought a special umbrella . Because I must not get the umbrella wet with rain that contains radiation from the nuclear plants . I hope that I go to Matushima and Miyajima someday . It 's like when visiting a Japanese restaurant in Europe . The foods there tastes like Japanese food , but there 's always be something that holds me back from calling it ' Japanese food ' . Maybe it 's because the ingredients are not really the same even when I 'm following the exact recipe from a website or a cook - book . Onions available in Japan are not the same as the ones in ( from ) Spain , of - course . My dishes are surely paella in a sense as recipe - book says so . Am I making sense ? ) Nowadays I only sleep . The writer ( author ) of this book is dead . One cold winter day , she arrived in London with her father . There was servant named Becky in the school . I 'd like to go to the UK to study English culture . Their music and the bar 's atmosphere was amazing ! But I missed the last train . . . I want to solve environmental problems all over the world . Actually Kobe was an urban city and had beautiful scenery . I wanted to breathe in clean air and see a lot of beautiful nature . Fortunately I have known and experienced the beauty of nature . I want to change this situation and save the futures of the children of & nbsp ; Vietman . I want to save youand your children 's earth . If opportunities arise , please help us . There are many young people who went to Tokyo from their country for their studies in college , their work , their big dreams , or just their longing for the big city . My goal of learning English is to be able to use English without difficulty to communicate with people around the world with different cultural backgrounds . I enjoy University life everyday ! There is English class in my university everyday . I wanted to study english when I entered a university so I 'm very happy . A way for us to help each other Some of them looked at the business hours sign but did n't cacth the small words on the top saying they were closed . Since the beginning of the semester , all my concentration was on her . It 's very hard to describe her looks ( or appearance ) . I heard this movie wasmade by the director of `` Harry Potter `` ! Concerning the scale , it was n't great as `` Harry Potter `` . He could n't overlook that I seemed to have changed my identity and lost my pride in being Japanese . So next day , I had my hair cut really short , and dyed it black . Beyond that , I could only tell him `` Thank you for everything , everything you have given me . `` And I left his house with saying `` See you later `` . So I decided to try to take more oppotunities to tell my friends , my juniors and you who is reading my diary , what I learned until now . I should never disgrace his honour . I like Japanese cartoons , novels , riding on a bicycle , hiking and snowboarding . One of my classmates from college already got married last year . I feel a little surprised because it 's only been two years since graduation and it 's possible that their financial condition is not good enough for raising a family . But maybe my thinking is wrong . Each couple that decides to marry has probably already thought it through to have finally made such a hard decision . After getting married , they might have many problems that before could not have been imagined . Sometimes it will be difficult to get through it , but if two people love each other enough , they will finally solve the problem . But every time this thought comes to my mind , I realize I would do just the same thing as them . I found a nice restaurant . I ordered a poached salmon salad . I said `` Wow ! `` I was so excited . but I am just curious about it ^ _ ^ I 'm going to attend some training courses on human resources so that I can enhance my competitiveness . All women were to wear black dresses and men were to wear black & white attire , so it was a very gorgeous atmosphere ! ( Additionally the company staff gave each guest a mini chocolate fondue machine . ) The main event was lucky draw ! ! While I did n't get it , I got a travel ticket and a digital camera ! To be honest , I ca n't express clearly what it is that I expect . We need expectation in our life , without expectation life will become boring , without expectation life will have a lack of motivation . I believe that when leanring a language , listening skills are required before you can speak it . You may see great improvement in your English abilities . Is it a diary ? Ya , I should mention something about myself ! I had a little confidence in my ability , so it 's really regrettable that I ca n't take that job . Cherry Blossoms are so beautiful . She could n't speak Japanese when she came to Japan 5 years ago but now it is different . Going out into the world and earning money is a necessary part of being an adult . It 's the third time they are lucky because they wiped up 2004 and 2010 . These adult - only images may cause sadistic impulses which are definitely not suitable for teenagers . I can not remember words which are too long . This is because she fell from her bike and hit her head on the concrete and she Because she had hit her head , she did n't understand me . Since I need to use my English for my job , and my boss scolds me about my poor English often . I watched Transformers on TV , washed clothes , ate maccha icecream , and masterXXXted , lol joking . I wanna ( want to ) try to learn English on this site : ) It will be better for me if somebody give me a title so I can write another post . I feel a little nervous , but I think what I should do now is to make myself prettier , that will give me confidence . Furthermore , I will introduce our culture to you if you have any interest in Korean culture . I hope we can become a good friends . Have a nice weekend ! ! The weather is pretty unusual . It 's hot in the daytime but very cool in the nighttime . But I liked it though . I really wanted to buy new clothes ! ! My current aim is acquiring a MBA degree at a foreign University in Japan , for example Mcgill and Bond . I want to do business globally , I think . Thinking in the positive way , most my time will go to studying and activities . Should I get married and have a family , raise a child or find happiness in my daily life as my friends look so happy I am in a dilemma . I 'm not relaxed yet , but I am writing in my diary because I have some free time . I retired early at the age of 56 after 33 year 's as an electric engineer . Since then I have been studying English at an ISS school , an English school in Japan . and prepare for the next appointment . Kuta beach is famous for beginner surfers . I am beginner surfer , However , when I went to Kuta beach to surf , the waves were too big ! Her mother - in - law and husband were very worried about the effects of nuclear radiation on the baby , so she came to her husband 's parents ' house in Osaka with her baby . However , she feels uncomfortable staying with her mother - in - law every day even though her mother - in - law is very kind . I heard that the best way to learn English is to keep a diary in English . So , I will keep a diary here . For that reason , I want to learn English and make a lot of progress with it ! ! I stopped studying English when I started working . It still concerned me for 10 years , because my company is planning to do business in the Asian market . I heard that homestay family is very important to improve English . I have started studying English recently . Today , I worked at my part - time job and afterwards , I went to the beauty salon and went to a book store to search for information about Taiwan . Kimchi party The kimchi his mother made was very delicious . I wanted to eat many dishes he made with that kimchi , but I could n't eat them because I got drunk yesterday and got a hangover . ( T _ T ; I can change my image , and look better than before . I went to the night shift , I got up at 7p . m . Because of my nursing job , I have to do this ( - _ - ) zzz I was unstoppable with my friends ' advice . I do n't know perfume well , but I think Europeans have a better sense for perfume than Japanese people . It because our noses are flat ? My cousin 's husband 's ancestor was a Viking ! I want to study English more and more . So , I want to have a strong heart . * Color : There are yellow , green even purple ( ? ) tomatos which look like green peppers and they did not taste sweet . I liked tomato honey very much it smelled like tomatos and tasted mild . What is the difference between `` anytime `` and `` whenever `` and , `` anything `` and `` whatever `` ? > > Please ask me ( anything or whatever ) you want if you have questions . The downward spiral has continued this year . When it was about eleven o ' clock , I went to the canteen and enjoyed my lunch . We were supposed to have some kind of debate on multi - national - corporations , as either a supporter or an opponent . Our teacher was a bit embarrassed so he sometimes helped us to get to the point . I felt terribly bored and tired so I did n't listen to the teacher a lot . My knowledge of English is very weak . Because we had no classes today . So now , I found it 's harder and harder to express myself in English . My mom said , during the summer holiday , you can get work and at work you communicate with people in English as much as possible which is why I should try to improve my English ! Which I think will be a nice experience . skillful people , I ranked 4th in the end ! Very excited , is n't it ? We ordered one course which included some meat , fish , the other stuff . The story was too complicated to understand for children . I don ` t think these are synonyms , but I can ` t feel in what situation which word I should use I want to express my thoughts in English better , make less mistakes and get more training , because experience is the main thing in learning languages and other deals , I think . This town has three absolutely beautiful beaches . It was a rainy day . The United States is the most interesting country , because it has produced a lot of Internet services that have changed the world . Ability , the States and Internet ; ability , the States and Internet , Yesterday , I also did n't understand English well , so I want to improve my English . These days , I 'm studying for TOIEC test . So , I would like to learn a lot of English grammar and get a good score . Thanks moongaze , for your corrections while I was away . Our 95 - year - old mother had spent a day at a local day service center . Very delicious ! I could n't climb it but it was beautiful . I 'm especially worried about reading . I 'm searching for the most effective way to build up my vocabulary . while reading , if you encounter an unknown word , you guess the meaning and read ahead . Even if you do n't fully understand it , it does n't matter because you will see the word somewhere else in a different context . With this way , you have to look up in the dictionary every time you encounter an unknown word . They ca n't read anything without a dictionary because they are beginners . last but not least , you should carefully pick what to read for your vocabulary building . Why did my professor decide to schedule it tomorrow ? I ca n't understand . I think some couples had troubles from the decision . Tomorrow , I am going to meet up with my friends . The jogging trail was around the Shimen Reservior . That is , I always become sleepy after I hear the alarm clock ring , and I lay back in my bed again . Somebody let me know about this tracking thing ! ! ! ! ! ! ! ! I was so up with reading wrapped up in a book and listening to music at full blast that I did n't recognise the Asian girl sitting next to me , her face covered with bad [ rotten ? ] eggs . I want to give them a real roasting if this situation happens again ! Actually I briefly analyzed the scene of `` Le Papillon `` ~ The little girl follows an aloof old man to look for an Isabella moth , a kind of moth more beautiful than a butterfly . I moved to Isikawa prefecture , Mie prefecture and Nagoya city in Aichi prefecture on business . I took my second daughter to a pediatrician today . She 's coughing from a cold . A doctor said this is not serious . When it comes to getting old or becoming elderly , most people would avoid images , such as being lonely , or not being able to work the body or brain as before , and having fear of the near death everyday , but truly is n't getting old really a better thing than being young ? ? She is from China , ( born in Beijing , nationality is Chinese . ) but has lived in Japan for over 15 years . But it 's quite difficult now because I have a fracture in the right finger . . . : ( Let me introduce myself briefly . Anyway my favorite thing is to watch dramas from the US . Yesterday I happened to meet seven friends in a single day . But It 's [ it was ] rainy today . We went to a good restaurant , and had a nice dinner . We had not seen each other for such a long time . 73 years ago , the Japanese army killed about 300000 civilians in Nanjing , the city where I live now . But what do we remember ? _ _ Not ethnic enmity but the pain and stupidity of war . I know in not only China but also Japan there are still many people who just remember the ethnic enmity . Is that right to regard the enmity as patriotism ? I want to improve my English skill through Lang - 8 Now I am determined to re - read it again , because of my little nephew 's recommendation and advice which is actually what his teacher said . This morning I checked 1 detail in a part of a drawing and 4 assembly drawings . I felt a little fatigued and left my office . First , it 's safer . In a place where you 're not familiar , a friend is very important . You never know what could happen to you if you 're alone . If you travel with company , other people can help you right away . Traveling alone is more dangerous than traveling with company . If you travel alone and you make a discovery , you might have no one to share with . I 'm a little nervous and confused . . . Unfortunately , I 'm a smoker and I do n't want the Japanese government to increase the price of cigarettes anytime soon . NEW TEACHER he looks like he hated the question . I understand that there are a lot of possibilities to find job , but it 's an awful place to live . We walked and talked a lot . Jay Chou These days when I listen to his songs again and by looking at his lyrics , I Some people thinks it is inconveniently when they do it . We have never won the championship , so we want to win the championship . I washed their gravestones and watered the flowers around the stones . This is because I need to do some work for an academic subject , Educational Psychology : Institutes and Their Groups . or observing the birds , the fishes , and all the beautiful animals . I make a cup of coffee every morning . I saw actors , however , I forgot their names . I feel so happy now when my friends who I knew on lang8 still remember me and send me an email . Practice writing and listening ? I went to see a doctor as soon as I felt the pain and was told that the muscle had a problem but would recover sooner or later . Many people stop to ride motorbike in this season . Although it 's cold , mymortorbike cheered up me ! According to an objecter of this strike , my proposed solution is in one important respect actually worse because it involves wrongly coercing all taxpayers , not merely the few military conscripts necessary to fight the war . because my dad went to an expensive restaurant with his colleagues ! ! ! ! I ordered a lot of meat , salad , rice , drinks , desserts and many other kind of things . I hope that one day I can study my PhD in America and go surfing again in LA . I hope this is not the beginning of rainy season . I will go to `` Kenji Miyazawa 's `` museum . And delicious foods too . Though I do n't have many law classes , and my law classes are all about business . I ca n't have anything , including water , but I already forgot this and I have had milk tea . in KUMON school every Thursday . Boastful talk I talked about morals and immorals in English with my friends . It was difficult for me , but now I feel relaxed ; ) He was a quite a gentle Miniature Schnauzer and he gazed at us with his twinkling eyes from his cage . It means `` doctor `` in Japanese . But I ca n't write English very well . Momoko : Is it true that there 's no food to sell at supermarkets in Tokyo ? I sat down there and thought about my future . But this year , I 'll go to Yakushima , it 's one of the Japan natural heritage . I 'm a beginner at singing English songs . This afternoon , I will coach an elementary school baseball team . If someone asks me : `` Do you like English ? `` Because of my poor English skill , I understood only less than a quarter of the English sessions . I 'm reading `` The Lord of the Rings `` in English . I finished reading Chapter 1 . It is interesting but also difficult for me to understand the English . Hello ! ! ! ! Everybody ! I used to be a system engineer , but I sometimes got a headache . Today , I studied ancient Japanese culture in Japanese History class . For example , in Nara , there is a beautiful mountain called Miwa mountain . I 'm an elementary school teacher in South Korea , and I really want to speak english fluently . I was given a cold shoulder ; ( , I have been off since Friday , and spent most of the time at home making a precise itinerary for Italy and packing my luggage . For the time being , I ca n't study enough English and can only use this PC at the lobby so I may be making a lot of mistakes . sorryyyyyyy . That is to say , crane have a auspicious meaning for Japanese . Learning French . My teacher is Taiwanese , but she only speaks to us in French in order to make us adjust to the speed and the accent of the French language . I found that English and French are a little similar , like the spelling and some pronunciation , so while we are taking the class , we always guess what the word means according to our English ability . Hearing or listening working student , studying at the art and I enjoy thinking of new ways to improve the life of people and make us human beings I want to try performing Rakugo in English , and tell people from overseas about the Japanese sense of humor in the near future ! ! I 'm going to go to Indonesia in next March , because of the transfer held by the a company I work for . I 've already studied English in high school . Now I 'm confused , since I 'm studying the Indonesian language and English at the same time . Because nowadays , Korean students and Japanese students tend to be totally separate according to their own nationality groups . Anyway , I have recovered from this sickness . Some place within my heart It 's like a shining diamond , the diamond is still in the box , I 'm provably making some mistakes since I am ignorant about this site . On the first day , I went to sea that is Kujukuri beach with my friends . Actually , I was supposed to play volleyball before beer garden . Summer vacation in this yaer was so much fun and very fulfilling for me ! ! who 's gone abroad for about a month . ( singular ) It is important to understand the cultural difference . For example , how people handle things as they are faced with difficulties . I believe that we need to establish certain trustworthy relations for each other . Did we put too much pressure on him ? Tomorrow I have an examination in English grammar . grammar practice This is a very valuable memory for me . fortunately , a car my colleague drove stopped and he / she called me . so I apologized to my boss . I 'm currently enrolled in an English program in which I can talk to Filipinos who are students or graduates from the University of the Philippines . Ok , well , I decided to write my weekly journal in English as the writing teacher `` recomended `` . Each member introduces themselves . The reason why I haven ` t used it is that I didn ` t know the system . Well , I stated to play trumpet about 10 years ago , , , , ( so long . . . It 's probably because I broke up with my boyfriend , or because I am tired of my part time job . I want to get a foreign boyfriend , so I can learn English from him . I have never been in the company of foreigners , so lately I am attracted to them . at first , we played games in order to develop our sense of team - work . it is difficult to climb over it by oneself , so we firstly had two boys help the girls climb over it and then the boys helped each other to climb over , but there was still one boy left who had to climb over it himself . after the games , we had a barbecue . I love watching movies and learning languages so I will post it that relate with my interest later . Today I was late to work again . I was 1 minute late . : D Ahhh , I wish Santa will give me a new one on X - mas ( Christmas ) . Today we have a compulsory course . As I have missed it many times , I ca n't catch up with the teacher . My friend visited me and we went for a walk together today . We sometimes had the same tea togeter and talked about our dreams . Last week my younger daughter got high fever , and her doctor said that she had the mumps and that she could n't go kindergarten for about one week . I took three days off , my husband took one day , and my father visited my house three days driving for one hour to care for her . I was going to eat a lot of strawberrys this morning . I could watch it from the harbour bride , so it was spectacular ! ! ( We 'd been waiting for 8 hours to keep a good place ) They really do n't care about the environment . And it 's about the tragic incident that occurred in 2005 in the Guard Post . It is very cold today , too . I have to dress up [ today ? ] because I have a party ! I 'm so sad and downhearted . So I study English by using a `` Nintendo DS `` . Father and I planed to go to my garden every Saturday morning . We also plowed a new field , and scattered a bag of the fertilizer in the field . Goodbye , then . However , there is a country that allows kids to drink Is the Japanese 20 year old legal drinking age appropriate ? I am Nana from Japan , and I have lived in England since this August . I will stay here another ten months . I study English in England now , and I want to improve my English skills and I start to use here . She especially liked some sunglasses and took some pictures while wearing them . / / Them = Sunglasses . We can buy various foods in Australia . Of course , I can do it . The purpose of my taking part in this site is to advance my skill of writing in English . If there are any mistakes or strange expressions in my sentence , please correct them . From morning to midnight , I did experiments , and then went home the next day . I am trying to make some software with my friends during our spring vacation . My team has 6 people . But now , when I closed the book , `` The Autobiography of KFL `` I knew the truth that the music was trying to tell me : MAKE A DIFFERENCE . Written by Robert Lee Frost Today I found this poem by chance , then became inspired from it , so I quoted it here . There are many chances to study English in Japan . I almost never go out during the daytime , so I do n't get used to the heat . So I am thinking it would be more efficient if this company focused on instilling love for the company in our minds . I arrived the platform , and a train came , but I could n't get on because of too many people . Suspension does happen sometimes because we play much more than normal players , playingforover 36 hours with two different people might trigger theserver 's auto suspension feature ( automatic detection by blizzard 's programming ) , so being suspended by botting does n't mean we were botting , it means we aresuspected ofbotting . This company built many thermal plants and nuclear facilities . Only few elite can enter this company . Fukushima nuclear plant already belched a certain amount of radiation around there . The main industry of Fukushima prefecture is FARMING and FISHING . Fishermen and farmers in the Tohoku discrict will definitely have to shut down their businesses . Definitely it is because , the Japanese goverment will not be able to bulid nuclear plants any more , and they will have to check existing nuclear plants for a long time . On top of that , food costs / the cost of food will be also rise . The Japanese government must rebuild many destroyed infrastractures , of course they can do it . Tolong dikoreksi ya . My mom is bustling around the rooms cleaning and doing the laundry . The soothing sunlight comes through the window and cast itself on the floor of the room slightly blinding my eyes . The due date is around October . It might be really funny when my mom ca n't speak English to communicate with them I had no idea there is such a good website in the world where all language - learners can learn together and make progress . I 've been to quite a few places , especially in Europe , but it 's not enough yet . I was surprised that there are so many people who are good at Japanese , and I am interested in how this website works . Excuse me . I want to master the functions of Lang - 8 , and communicate with the members . First , Merry Christmas to everybody ! I 'm very glad to take part in this network , but my English skills are weak . Of course we made an appointment and ate the delicious food . It 's quiet and comfortable . My coworkers are really nice people It was very difficult for us to find the event . I usually go to church on Sundays . Yesteday I had a service at Syonai Ryokuchi Park . variety of food which everybody brought . Everybody was enjoying the tennis and Lacross matches . This park has a very nice cycling course , so I was cycling there in Though I like thrilling race but I prefer to watch more safety race . It 's a very hard job because I have to pay more attention compared to other kinds of jobs . It looks like a bistro and is not very formal , so I feel comfortable . The other day , I happened to find the answer that they eat ants . Although I 'd already known about the great writer and his works , It is almost same in China , and surprisingly some schools have taught English since their students entered school in urban areas such as Beijing and Shanghai . Japanese culture vol . 1 SUSHI Now SUSHI is a common word all over the world . Various countries create their own SUSHI . SUSHI with avocado was created in USA . It was invented in the Edo period , about 400 years ago , in Japan . I will eat SUSHI tonight . : ) But in autumn , the sounds of insects such as crickets , singing crickets or Japanese bell crickets , green tree crickets and so on are very nice . I want to know about your idea about sounds of insects from many people from many countries . Finally , we are supposed to go to eat sweets at a cafe . We are supposed to go separate at Shinjuku at 11pm after seeing her off . But our family may be considered weird by our neighbors . Reality . but sadly it is reality . aaaaaaaaand I love watching the stars . Maybe tomorrow it will continue to go on . I heartily hope that some nuclear facilities that are now at the risk of exploding will safely settle down safely . It 's really nice city and the weather here is cool . This is the first entry of my diary . I saw a video on YouTube about this site , and I thought it would be fun , and a chance to improve my English and learn a little Japanese . Because the recipe is too obviously wrong . Of course my English skills were also part of the reason . But , I heard by accident that she 's been dating someone . Lately , China 's weather has been very strange . My hometown included : last week I never got out at all , because of the heavy rain ! Once I went out to restaurant to get lunch ! I can swim a short distance so I ca n't interrupt my practice ! So , I have a good idea , I can go to the swimming pool next to my home ! my mother and I went to the nearest swimming pool but it 's really terrible , because the pool of water there is dirty , I can see many small pieces of dirt in the water ! Japan is famous for its cartoon shows , such as Pokemon , Doraemon , and Dragonball Z . In universities , it 's a common phenomenon for students to occupy seats . Although some people hold different ideas about it , I think that each student should have equal rights . I need some to help me on my English skills . He said this place is a good way to learn english . But `` twp `` is used in the English subtitles , and in the `` Internet Movie Database `` website `` twp `` is also used . Thanks for reading my diary ! ! I understand this all depends on the exact amount of money . But even if it is just a hundred dollars , I 'd suspect that my friend does n't have the money to solve his problems by himself . But instead I saw `` Lie to me . `` I liked this movie very much , cause it was very interesting ! ) Maybe it 's unrealistic , but I think it had a wonderful idea ) More than ten years ago , there was a broadcast on the news that the scenario writers of DQ and FF would collaborate together to make a RPG . I saved money and bought that game which title was `` Chrono Trigger . `` It is said that Chrono Trigger is the best RPG in RPG history . I often read a book in the coffee shop . So the book holder is very useful , It was so useful that I was impressed . He answered that the most important thing is talking to / with each other a lot . But nobody asked `` Why are you late ? `` since they know about today 's traffic jam . Most of foreigners say that it tastes good , too . Coffee bean is more effective than Coffee Mix when you are on a diet . I 'm so sleepy Someone said his death was because of this film . We turned off all the lights in our dormitory then sat down alarmingly , arm in arm . My husband said , `` I need a portable hard disk to fix it . `` Actually , he wanted it before . I 'm writing my diary from a mobile phone ( cell phone ) , and I 'm not using a dictionary . Mass media must convey correct information . If we believe wrong information To everyone who wants to study the Japanese language , I 'm very appreciative if you could review my English and revise as necessary . John Travolta and Denzel Washington played the main characters in the movie . The thief had stolen her motorbike . These days English is getting less necessary for me . I can speak easy English . My teacher says `` if you do n't know about Japanese tradition , language , culture etc , you wo n't be able to speak other languages `` . Many Japanese people do n't know about their own country . After beginning his business , he overcame this tendency . And the manicurist is very kind and funny . Jacket potatoes I 'm going to Shanghai this summer . I 'm so excited because Shanghai is a big city and will have the Olympics . I may not go to olympics , but I am excited . I think it makes a good connection with Asian countries . But is the high housing price unusual , or is it a natural result of quantitative easing ? As one of my favorite teacher is my good friend , I asked him if I could take group lesson with my Skype friends and at the same time I asked my best Skype friends Zac and Mark if they could talk with me and my teacher . and my philosophy in life is based on my high school days . ! I want to listen to others before they listen to me , They take care of others before they take care of themselves . I want to have Jesus 's heart , full of love and compassion . I 'm terrible . What I 'm going to say is just my experience and personal opinions , So even if you can pass the Cambrige English examination , you have to work for a Japanese company at the beginning of living in a foreign country . Of course there are some exceptions ; some foreign companies want to get Japanese speakers . There are some dishonest Japanese recruiting agencies in Singapore and Hawaii . I think you are a very careful person , so I do n't think you are going to register with those disgusting recruiting agencies . As far as I know , there are some of those kinds of recruiting agencies in each country , especially Hawaii . Although some problems occur , I can learn from them . Furthermore , traveling abroad alone improves my English ^ ^ Nobody can help conversations so I have to manage to speak English . Anyway , it was too cold . I learned from my friends that Lang8 can help my English progress and that someone would modify your post . All children , especially boys like to pretend they are searching for `` big treasure `` with their friends . They were very upset about their families ' situation . This map had information about an old pirate 's treasure . The Goonies ( name of their group ) went searching for the treasure to help their parents . Because I changed my career to a foreign capital company , What procedure should I take / follow if I want to join ? Today , I went to the New Field to have ( take ) my English speaking class . The class is taught by Robin , who is a funny English Teacher . I 'm very glad that I can totally understand what Ronin has taught and have a lot of fun in class . Going back to Japan I need a lot of practice every day to get good at language . My hometown 's one are colored with red and white . But the most popular one is colored with only white . My precious Michael I love Michael Jackson . His songs are very beautiful to me . I 'm not sure why I was crying , but I could n't stop . Michael wishes is our wish , at least in his songs , and hopes our hope . I developed a rash on my chest . If a medical clinic were open , I would have gone to see a doctor . I will go to see a doctor before I go to my office . A member of my gym , who is 25yeras old and very macho , is traveling in Argentina now . Traveling makes a man grow up , but he should never forget to run away at the approach of danger . I wish we had Silver Week every year . Gensou Shoujo Taisen Kurenai Even though I paid $ 600 for the schoo 's internship program , they let me go to the Chinese company in Australia . Of course , I asked my internship adviser before starting the program : `` Which language do they usually speak ? ? `` , He said : `` English . `` because I came to Australia to study English . I frequently got around on foot in Japan in spite of the fact that I have Unfortunately it was cloudy and windy . The heavy wind made the sea rough . . . It took around 30 min from the pier to the diving point . The boat rocked in the sea and it made us terribly seasick . . . To prevent it from getting worse , I watched the horizon . . . I could feel a strong swell at the bottom of the sea at the surface . It was enough to forget to search for lobsters . After the first diving , during the break on the boat , I got seasick again . One of my co - workers gave up the next dive because he was seasick . . . But the most important event is coming ! In 15 minutes , I 'll leave for my hometown to stay at MOM ' S home . I keep on trying these steps until my shadowing for it is perfect . It takes about five minutes for one phrase . I search for Englsih homepages about `` mushroom `` these days . It 's very very interesting to read articles about mshrooming in other countries . I am very tired , because I did not sleep to prepare for the examinaion . I 'll do my best to continue . Although I switch on a fan , I don ` t turn on the air conditioner to conserve electricity . I 've registered my name for Glastonbury . Normally I get twenty - five thousand wons , but this year it is less than last year . there 's a character , Sharpay . After that , I introduced myself for my new class . She is a spokesperson for Shiseido ( A big cosmetic company in japan ) if I remember right . Now with my friends I live in a very nice house with a balcony and four rooms . We only finished moving yesterday , because on Saturday soon after we arrived we started an opening party . I believe that through this , I could truly improve my speaking skill since those who introduced this way to me speak fluent English . They 've been telling me that it 's hard for them to raise a baby in a foreign country without their friends and family . I felt a bit sad to hear that because I 'm their close friend but there was obviously nothing I could do for them . Although they have many friends in Japan , at some point they were seriously considering how to meet new people and how to make friends I hope they will enjoy the rest of time they have in Japan and I want to make their life here more enjoyable at least when I come visit them ! A famous middle - aged american actor , who went to Japan because of business , met a young , pretty american girl in a hotel , who came to Japan with her husband , who was a busy photographer . When I watch a drama , I do n't use subtitles . When we into the bath nobody was there . One was an inside bath and the other was an outside bath . I enjoyed having a chat with my lang - 8 friend in India last night . Please read my diary and correct my grammer . Recently , every time my friend sees me , she always says ' Why do you look so tired everyday ' . I noticed that to study is better than nothing even if I failed the exam . If I study hard , I do n't mind the result even if I failed it . I just wanted grumble and express that I 'm going to study from now on . The mistake was very important . I ` m very happy that I can count on somebody who knows about their language , and everything , because they are British , or from other countries where English is the spoken language . I hear that my grandma was diagnosed with apoplexy because she hurt herself carelessly . I read a newspaper before breakfast . I always talk to friends on skype every morning . A lot of my friends tell me that I am nice , because my character is cheerful . Because it REALLY HURT ! It 's wonderful . I 'm looking forward to watch next 3D movie , Alice in the Wonderland . I found that I start to waste time since I got my admission . I stay up late and watch tv or go online . If there 's E in front of the name of the soap opera , then you have to wait . I cooked a handmade breakfast this morning for the first time in a while . My wife and I will go to Jeju Island tomorrow , and stay for 2 nights and 3 days . I work in a construction firm . I was majoring in Architecture , but now I develop PC software to do business for employees only . I can understand English and I can read it , but I 'm not that good with writing or speaking . Recently , I realize there are many similar words in English . 5 ) I 'm wondering if he gave a good presentation . I 'm listening to Complicated by Avril Lavigne now ! Please let me know the difference If so , what 's the matter with it ? Then , I boil some water and drink it while stretching out myself . As a result , everyone enjoys a good chat him . It is my favorite type of rice cake . I found this website URL I presented a bouquet of sweet peas to her . I do n't think I am old . High level cholesterol can cause a stroke / cholesterol level or something bad for our body . a boring diary . I like princess characters , so I enjoyed so much . I was tired so I wanted to sleep , but I could n't . Driving license in NY A driving license is mandatory in US . Even though it is convenient enough , most poeple tend to apply for a driving licence . That 's because the license is also useful as an identification . I am now proceeding to get a driving license . After school , I decided to play basketball . I liked playing it very much . I was confident in the game . My tiredness was unable to keep me away from my love for basketball . joined in the game . I said to myself , ' Whatever happens , I must maintain my composure and keep a strong heart ' . Happy New Year , everyone ! ! Do you think that honour is popular nowadays or did it become old - fashioned ? My healthy plan 2 ! The main TV companies and many of the other broadcasters just think about how to protect their privileges . TEPCO , the company which operates the nuclear power plant , the executives of which are accused on TV daily . But on TV we are not told the much more inportant thing - that the head of TEPCO went to China with people who used to be executives of the Japanese TV companies . I can not believe him . What is broadcasted about the nuclear power plant problem overseas ? so I must improve my English writing ability to adapt to the new job as soon as possible . It is not very nice to watch , but My condolences to everyone . P . S . : Due to these abnormal weather phenomena ( lately ) , do you believe that 2012 really exists ? Also , I saw the sunset over the river while walking and it was really beautiful . Now I can hear birds voice , and see a clear sky , a beautiful sunset and leaves changing the color almost everyday . I take an English lesson once every week . I like to talk with my English teacher but I ca n't speak in long sentences . I should increase the time I spend speaking English or I should find another exercise for that . In the third lesson we had English presentations . I was very nervous ! ! My first language is Japanese . If you have a problem with Japanese , I will answer your questions ! ! Since there is no way I can wake up so early in the morning , I refused her right away . In spite of that , I hurried to reserve a shuttle service for her . Books or the internet ? In the afternoon , I was browsing magazines in the bookshop . Even though it has n't been changed in recent years . . . As soon as I came home , I registered . At that time I thought that I might die . everything is him . . . My teacher sang a song which the title was `` Linda Linda `` . He was such a spirited person who made us very exciting ! One thing that I was not quite happy about was that I could n't see the contest of female dress ! I can remember running around the supermarket . I 'm an university student who is studying meteorology right now and I 'll graduate soon in March 2011 . I must go to chorus practice until ten o ' clock today , but I I could not wake up early this morning ! ! So far , my weakness is `` articles `` and `` plurals `` . Finally , school uniforms develop inner individuality and creativity . I live in Indonesia , but sometimes I travel to Australia for holiday . I like living in Australia because there no pollution like in Jakarta , Indonesia . The worker explained it very well and was very kind . With drink , we exchang information . . . . When I heard a Podcast from Los Angeles the teacher who lives there and teaches English for non native English speakers in the world answered a question ; what sound do you love . His answer was it would have to be the sound of the garage door closing when my wife comes home . You know , it 's a little troublesome because again I have to download the lost memory it used to have before . * sigh * The dichotomy that is common of postcolonial literature , and that 's the dichotomy between a sense of homecoming and exile . harm : Honey bees wo n't harm people if they do n't do anything to them . I suggested that we had better go to see an ophthalmologist first in case there is a more severe problem that we did n't know about . Oops ! The fee is very expensive even though the insurance will cover it . Furthermore , today was a kind of an anniversarry for me . 2 months passed , when I started going to her house regularly . England is okay , but the problem in Spain is the [ ir ] league . There is grammar in Japanese , of course . I can speak Japanese but I understand all of the grammar . SO , I plan to study from basic grammar to high - level grammar . First of all , I will look for grammar book . I think English grammar is very deep . . . Also , another person was stoned by native children when he was riding a bike , and my friends have experienced unwanted sexual conduct from their home - stay family and professor . Before , I took ESL ( English second language ) ; then , some Mexican insisted `` the native do n't trust us because the policeman often stops us . `` When will you do it if you do not do it now ? We had also listened some little stories from my dad 's CD ( a CD that come together with a book from his English class ) , then we listen on the car radio and translate to portuguese to see who got what the story was wanted to say ! ! I am having trouble writing my self - introduction in English . I was very shocked by the news that Japan had a disaster , I could n't believe it happened in my country . As a person who is taking care of children , I am really worried about mothers who are protecting their children without heating and water for drinking in stricken area . It 's autumn but I 'm looking forward to the coming of & nbsp ; spring . What is your favorite character on Dragonball ? The clerk was kind enough to fix my glasses and wash it free of charge . Looking at the big picture , the disease was necessary to me . I am a nurse . What is more , even if I have an idea about work , I ca n't make them understand my opinion precisely . I 'm going to Vietnam for a month during the summer for a kind of practical training . I believe it will be an unforgettable and useful experience ! I was surprised to hear that . Although I never gave up studying business English . Exercise is necessary in life . I felt that this is a very useful way to study English , so I decided to use it . Yesterday , it was around 40 Celsius . This week I choose French as my secondary foreign language for next semester to learn . The title is `` Nostalgia `` . Your body tries to change your brain conditions . I thought it was a funny idea XD ~ If I have that one , I will always wonder where my cat is or imagine where he came from ? Actually I prefer dogs than cats , but since my sister adopted our cat I just started to see its adorable part ! - the image I had of the movie was formed from all the gossip I had heard . I want to snowboard ! But it 's fun to snowboard . Is being a student with bachelor degree enough ? I lent him the money that was in my pocket . and I thought about `` I want to go to abroad ! ! `` Last night was so beneficial . I have to wait until Monday . There are many assignments and drafts in my USB . I got a little energy back by looking at the dog 's picture shown above : ) I have to tell an embarrasing or a horror story this Thursday . introduce yourself To me , it 's important to learn new things that can broaden one 's mental vision . I 'd love to challenge things that are especially too hard / difficult . nowadays HANRA has extended its business overseas . when I worked odd jobs at construction site , I felt it was worthwhile after completing a structure . Actually , doing extracurricular activities does n't disturb our studies if we make full use of our time . So I suggest that students do extracurricular activities along with their academic studies . My friend has homework too , but he is listening to music while resting his legs on my shoulders : D I am not a masochist . This site was recommended to me by my philsopher professor . I must more careful to not set a fire . unfortunetely , I have an appointment . even if I have an appointment , why it is unlucky for me . Because , that appointment is having a class , which mean I have to attend my class . I dont want to recognize . And I checked mixi some times ; Japanese SNS service like facebook or MySpace . Please check my writing and comment on me . I went to a public bath with my son . There are various types of baths inside and outside of the facility . Hopfully , I will improve my of English & Japanese here . One of them illustrated a period when I was in primary school and traveled with my classmates in the park of Prince bay . It seems that I can learn a lot from here ! ( - : And also , I hope I can make friends here . It 's my first writing . Is this the right choice , changing to a totally different area ? I have been working for four years so it was natural I felt bored with my previous job , but wo n't my new job seem just as much boring to me after another four years of work ? If so , what is the meaning of change ? Continuing to change to a third one ? I really do n't know what I should do now . so they recently came to Japan on May . This is my first dairy . I have a Border Collie . A member of the club taught me how to throw a disc . and fast . The board of education in Japan prohibits a normal book store from selling school textbooks . Now I ca n't write a proper English composition . I almost forgot the basic but important grammar . The things I want to say all turn into Japanese . I talked with a native speaker for about 2 hours starting from 7 : 00 ( English is only 1 hour . I will talk with a Filipino person for an hour . My Pastime I took a job as a barista . He also told me that I should reveal my talent little by little , while showing respect to my seniors . Some of the his work is heart - warming and some have strong messages . Sometimes I talk to my friend who I love in my mind . But I got 6 parking tickets including a handicapped parking ticket . It was totally my fault about the handicapped parking ticket . I know that I should not park in the handicapped parking areas under any conditions . I do n't know why I always have a tendency to doubt myself . Toyota has continuously developed based on strong trust . But now , the company has been losing its strong trust . Losing trust may collapse even a gigantic company . I 've been studing English in Australia since last february in order Children who chose to wear a Danjiri 's costume joined the celebration . I will go to watch the Danjiri again today . I think that I should learn English . Because , English is so difficult for me . The Black Eye And for women it 's kind of an important factor that Usually we ask our dates how old they are before we start S if Americans look at me , they might see me as 20 - year - old or so . With the magic wings of imagination , we can take our tedious mind off to another world easily so that we have the chance to get away from the outside world for a while . Snow - covered My colleagues in our Dept . She was good to us and to a certain extent she would side with me and even take responsibility if we got into trouble . Usually we would talk at lunch time and share what was happening in our daily lives . I do n't remember when she stopped having lunch with us , giving us the lame excuse that `` she is on a diet now `` , The first diary I 'm at a loss to write a diary in ENGLISH . I 'm working at a training center with volunteers who are going to help developing countries . First , everyone is divided into several groups and each group is given an envelop . Every group finds different materials in their envelop . for example , I went to Victoria Peak , Tsim Sha Tsui , Jordan , and so on . Victoria Peak was especially beautiful . Pet Industry In Japan I 'm going to travel to lots of places and take nice pictures . How SonyEricsson Xperia Ray hits the spot with me is that Ray drives an Android OS and features a great a camera that outperforms moderate DC . I have nothing to write down anymore because I 'm exhausted and I 'm starving now ! I made plans to travel . My favorite topics are Electric Music ( Techno , Electronica , Breakbeats . . . including composing ) , Web Design ( HTML , CSS , jQuery , Flash + ActionScript ) , Social Problems ( international and domestic ) , Environmental Problems . And some people say it is because of beautiful weather in June . I have a little rabbit . I believe she could be a famous football player . We ate , drank , chatted , and watched a little . I used to be a kind of a shopaholic when I was in my country . I just got a job interview invitation . Am I incorrect ? So , today I bought the same novel translated into Japanese . . . This makes me very tired and disappointed in myself . about me I need to use English and Japanese to watch tv , read comics and goa world tour . Before I do something , I prepare for it thoroughly . At least during that time , I cleanse my mind and repress impure thoughts that hinder my concentration . And that careful but timid attitude fills my mind of impure thoughts , and eventually hinders my ability to be honest with myself . It is not so difficult for me to develop an iPhone application . iPhone applications must be developed in Object - C . But I like yogurt . It is very convenient for us to go anywhere . Today , I renewed my driver 's license at the police station . If I go to ocean vocational school , about I will study about marine life Dolphins are very cute . If I can earn the money , I will buy tropical goldfish . The Change of The Trend of China 's Population I was very nervous , but I 'm happy to explain it well . Sushi bar Before visiting the zoo , I had been especially looking forward to seeing capybaras because capybaras have been very popular in Japan and I heard they look unique and cute . I have come here to learn more english For my writing is very bad ; I need to develop my grammar and fix my I think I can develop my sentences here and learn more vocabulary I was together with it . when I did my assginments , I talked with my friend . . . I think the best coffee has good memories rather than good materials . I went to English school after work . In this class , there usually is n't a teacher but I had a good lesson . First , I visited the waterfall . I 'm studying Korean words now because I have an examination . I have my own plan for this year and I will do my best to complete my plan and I wish everyone can fulfill their own plans too . But suddenly their lifestyle changed as soon as thier husbands finished working . Their husbands stay at home from the morning till night with their wives . I must ( talk with my ) English ( teacher ) . today I found a website that is useful . I do n't want to write too much today because I have an exam coming up . well she said , no one would like to get paid cheaper than 30 dollars . I appreciate that you encouraged me with a prophecy . This sign is hot - tempered , full of energy and likes to do dangerous things , the reason may be that it 's effected by mars . Taurus is a sign affected by Venus , so the sign likes beautiful things and eating wonderful food but is inflexible . Gemini is a dual - personality sign , quite different from Taurus . It is flexible , knows much but is not deep and can not keep promises . Libra is a sign which is balanced and undecided , but charming . She said that the Chinese are not as diligent than before . Today I rode my bike around the street , suddenly a car bumped into a dog , but no one stopped to help the dog . What a strange world , what cold people . I wanna know if it 's common to say the first way in British English , like they do in AE . . . . . I also know that there is the Ryder Cup golf tournament held each year between the U . Because when you tell a white lie , it just gets you away in that situation . I want to use the term `` over my dead body `` . I do n't know how to use that in a sutiation . Secondly , my university 's summer vacation is so long that I can do many things : travelling , volunteering , studying and so on . What shall we do ? They were very crowded despite the rainy day . I just watched a movie in the new theater instead . And I want to know whether you understand something about this article after reading my reflection paper . Maybe he likes Japanese foods . My old foreigners friend told me I could n't use chopsticks well so I need a spoon . Eventually , I thought of someone . Later on during high school I enjoyed the subject ' Korean modern history ' from the Joseon era to present time . Even though I 'm not good at Korean history , I used to get good grades in Korean modern history . They resisted not only by force , but also by writing poems , novels , etc . ( I especially like the ? resistive ? poem ) They were not afraid of death and some patriots sacrificed themselves for their country . Thiessen is a very kind guy . We are staying in the hotel with fully booked accommodations so we will not be bored . My acknowledgements to Geoff Cutter Why do people believe a lie and refuse to believe the truth ? John Watson is soooooo adorable ~ ! But they have only three episodes for this year : ( ( Damn ! I searched her song , `` Love Story `` on Youtube and listened to it as soon as I could By the way , thanks to the people who correct my daily entries , though I do n't know how to return the favour . . . Is this a matter of bad habit or can it be changed easily ? They have their own schedules already . The mysterious Victorian age , the inscrutable Brontes . Sushi is delicious . We orderd a lot of delicious dishes . Evidently , I picked it up unconsciously when I was living in Oregon possively from my host mother . Walking on a Tightrope in Rio de Janeiro I like it since I was a kid . It is very beautiful and shiny . By the way , What 's your recommend musical ? I really happy - my new home is very beautiful . According to the news , a young woman said to some parents with a baby in front of a kids store , I 'd like to study more and I 'd like to apply it at my job . I hate crowded places , If I stay there for too long , I get a headache . Beside there were no gasoline and toilet paper as well . I like intelligent and thoughtful people . Today my son finished primary school . ( Is it called elementary school in the USA ? ) The whole family is happy for him . He is a wonderful student . He won first place in the knowledge competition and his average was 9 . 8 . I think I am not a good student I like the challenge , but sometimes I feel frustrated . I hope you correct me if it 's necessary . Recently , I feel so sleepy while working , especially after lunch . I was like , `` Nah , bitch , just goofing around I reckon , but I am still trying to find my way , bro . He was like , `` none taken , what do you take me for , asshole , but if you do n't mind , let me give you a piece of advice , get real , be realistic , you always told us that you like reading and learning , so do you wanna be a translator or just a literature geek ? but let me ask you a god damn question , we , people are never gon na make it 100 years , we do n't live forever , so I just stick to my fuckin motto and faith , what if I got diagonsed with leukaemia next week and was informed that I only have 6 months to live , then what the fuck would the money and fame and working at a major company mean to you ? `` I decided not to tell her my feelings anymore . Today I had class with our foreign teacher again . He taught us English culture . I 'd thought I would go to work where my ex - colleague recommended me after Spring festival . I think what I need to do is to think over what I want ( to do ) and insist on that . Recently , many NPO / NGO organizations have given us explanations as tohow our donation cansave children ofdeveloped countries . But it is inconvenient to use for their financial men . But they ca n't help other children , for example not help diarrhea children . I 'll go to the stadium next month to watch the national team play . I 'm weak from drinking to much alcohol . We went to bar the day before yesterday ( Thursday ) , we stayed there until midnight . I think it was 3 o ' clock . However , I felt I am not as young as I expected . Kathy , the narrator , talks about her childhood , which was very different from ordinary people 's . They do n't know anything about their parents . New vocabulary practice . I said I will serve you dinner immediately because one of the guests looked so hungry . I ca n't speak English well . and report Korea 's air traffic plan . So we have to know those facts why we were born in this world and why we came to this earth and after we should die . But I 'm not the person who always gives in when facing difficulty . I left Starbucks and I 'm at a another cafe now . In the afternoon , I took a special class . A former JAL ( Japan air line ) cabin attendant came to lecture us , so we had to wear formal suits in this class . We went to a bar ( our secret place ) . Everyone drank there too but I could n't because I felt sleepy . He said it was very high quality . I found an English book for learning last night . There was a wider space than usual between the platform and the train , maybe 60 to 80cm . I think that it is very dangerous to walk through platforms during commuter hours both morning and evening . Today I 'll watch `` Madame Butterfly `` and `` The secret of the Himeji castle `` . I like the American drama Prison Break . Although this software is not free , it costs only 2000 yen to download . It was wonderful ! ! Today is my daughter 's birthday . I went fishing . The fish swam away , but I held onto the line . So I said goodbye to the fish very quickly and left as fast as I could ! ! , I spend most of my time studying and reading . The complaints are endless , because the lift broke down continuously . Many students and teachers were trapped in it . I 'm so lucky to live near an industrial area named `` Zhong Guan Cun . `` A porn film prevails in Hongkong Less than 40 days now . The exam is ( right ) around the corner . I would like to thank the person who will come to correct my grammer . I correct the diaries written in Japanese by other people . I should correct them to help the people who are trying to learn Japanese . I might teach wrong so I have to use dictionary not only for English but also Japanese ! ! It 's easy to find the journal which is really great . I can even find Japanese journals that are written I regard that my little knowledge of Japanese disqualifies me to be Japanese . They wo n't seem to attract my client . They are terrible . In order to understand scientific language , as examples , normalization and abstraction are needed to be introduced . After the break in the afternoon , we have the subject `` sport `` but I went home becasue I do n't like sports . Of course , English is required three other sports . I have to fight for that ~ ~ ~ ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! 1 since sentence structure is quite different . My purpose ! My Purpose ! Let me explain . I 'm an engineer . Why do I have to study English ? I have to know a lot of information . If I studied English everyday , I would be a good engineer . It 's hard to get up early in the morning . Finally , I get up at 7 : 00am . Why did n't I get up early in the morning ? For example , I put a pillow under her head . Today the Japanese Government announced the measures to solve their economic problems . Tonight it 's awfully humid and boiling hot . Love ur mother - tongue and being proud of it ! But right now I 'm studying English to be a translator . Today I went to a gym used by American elementary school students . I am staying at the Hyatt Regency Waikiki today . I 'd like to learn English in order to write and read articles of science . I was always proud of my health . weather tomorrow . Yaki - soba is fried noodle , with sauce . The first hour of class was ' math ' . It 's difficult for me to study math . it came as a surprise that I answered : For experiencing ! well , I can experience life in hell then , can ` t I ? : P Being alive I can experience a lot of things . but I dont think I need to worry about how much time I have , instead , how much I can experience : D come on , let 's experience the amazing world : D My son had his 6th birthday and I called him from Siberia to Israel and asked him what he wanted me to buy him . . . There are a lot of attractive stores like clothing stores , cake shops , bakeries and cafes . Yesterday I bought a big almond scone at a bakery . This device 's circuit board was covered by a synthetic resin which caused the problem . I warmed it and managed to remove most of it but I could n't take it away completely . I love his artistic temperament . We 're gon na meet at our favorite restaurant . Someone gave me a bag of potato chips . about 3 times bigger than usual . My friend 's decision . Kanojo wa tomodachi to gakkou e aruite imasu . Boku ha sakka - wo shite imasu This is the first time it is showcased , since the Heian Period . That is why I was surprised to find so much trash today . Children are given too much free time ? Task4 Nowadays , some people might concern that children are given too much free time . From my point of view , when they are given too much free time by school , they may spend more time on surfing the internet , playing computer games or watching TV , moreover , will probably do something which is not allowed under their age without a guardian . It maybe not a good idea either , it will make studies become boring and tiring , yet the extra presures given were not necessary . In my opinion about children 's free time , I believe school is a good environment where student start their socail life and team work , including vairety of studying . However , when they are out of school , they also should arrange their free time wisely to do other recreational activities instead of an axtra school work . I was asked about my hometown by other students who were in the class . I wish I could speak English a little better . Hi , everyone . Nice to meet you . This is my first visit to this website . My English is poor , so please help me and I will appreciate it . I can speak fluent standard Chinese . I want to practice oral English . I want to make friends with all of you . So welcome to China . I think you will love this great country . I love her . After the rain , I opened the window and took a deep breath . I came downstairs to take a walk and enjoyed my free / spare / leisure time . Once a week I take a tango lesson . When I close my eyes and just move my body with the tango rythm , I 'm jealous of him . I need to accustom my ears to English sounds and pronunciation , although I know the BBC is probably too . . . Somebody said it is useful , but up to now I have n't had an English audio version of a book . Moreover , he got / became angrier and louder while I explained that they were all just my abandoned experimental materials . These materials are my painstaking effort , so I ca n't discard them on time ( ? ) , but it did n't matter ( ? ) . Sunday is a regular practising date for my ballteam . No matter what ever you want to play , you should make sure you have enough warm up activities , such like Stretching , jogging or others . Prevention is better than cure . I had explained to her that food builds the body ( water also ) but she did n't follow my advise I am really poor at grammar and tenses . The saddest part of this story is the fact that this story really happened with the author . He described the one part of his life , when he had made a few mistakes , and lost his dear sister . Today I watched a movie . The movie title is `` Alice In Wonderland `` . I watched the animated movie in my childhood . There are many differences between the animated version , and live action version . This morning class , our teacher made us do an activity , that is to draw your partner 's picture and describe your partner , everybody ca n't draw well , so everyone 's picture are like kingarden 's picture , but it 's funny . First , I much prefer trying on the clothes , shoes , or accessories myself to check their sizes , textures or material , fit and so on . Maybe I 'm not a person who is suited to living in a modernized and technology focused society . I want to change myself first of all . Recently , I decided to save my money , because I used a lot of money last month . Of course , to think on an accrual basis , I spent over 200 yen because it includes rent of my apartment house , lighting and heating expenses , and water rate for today 's cost . I tried to avoid getting sicker by eating good food , resting , and continuing to go to the gym to exercise , but nothing worked for me . I 'm not Santa clause , definitely . My major was literature , so once I wanted to be a writer . This is a story of a professor named Morrie . He has a fatal disease and a student in his last class wrote this book . Although I have n't read it through , it is a wonderful book , and ca n't read without some tissues . For us students , every summer and winter vacation , it 's a big problem to buy tickets to go back home from distant universities . In my view , to stop this situation from becoming worse , we should never buy tickets from train ticket scalpers , since everyone has a responsibility to make a harmonious society . if you have a skype just add me So I will wake up and see the mountain and sunrise together in the morning , drink beer , listen the music and dance with Mt . I wanted to know if this story is true or not . He is 8 years old and lives in South India with his family . I do n't want to go on a splurge . I could n't help meeting another guy ! ( or I could n't help but meet another guy ; or I had no choice but to meet another guy ) If the rain had started sooner , I would n't have been able to have my lesson . I 'm going to continue writing about the Assimil course . `` If you are a student , you will show a better school record or April 18th was a special day which was my college 's 50th Anniversary Celebration . I started Lang - 8 because my friend recommended this site . This is first time I 've utilized lang - 8 for my studies . I have friends who can speak in English , but they are not my teachers . Well , in case you do n't know this movie before , here 's the introduction from wikipedia URL You can translate the title into `` My House `` in English . If you want to get an idea of what a Japanese family is like , you may find this manga helpful . So I am studing English because I want to be friends with a lot of people . It 's very beautiful not only when it blooms but also when it falls . Now , we are planing to have a entertainment show at college . Then I want to present the iconography of the altarpiece , focusing upon the biblical narration , and then I will mention some features of this work . The next part will be about the history of research and dating . This presentation is about a triptych called the ' John the Baptist altarpiece ' . The example in Berlin is so similar to the ' John the Baptist ' altar in Frankfurt that a long discussion has taken place as to which is the original . These three pictures show the most important incidents from John the Baptist 's life . On the first panel you can see a depiction of the birth , and naming of John the Baptist . The middle panel shows the baptism of Christ . The last panel is about the beheading of John the Baptist . These three paintings are supplemented by a detailed illustration of miniatures in a gothic arch , which functions as frame for the pictures . Can a quarter , a 25 cent coin , change one 's fate ? Also , I talked with my Chinese friend in skype . When I arrived at my house , it was time for dinner . I think that I rode the bicycle for 1 and half hours . It is also sometimes hard to tell my feelings with foreigners . In my old memory , I think I had to prepare a photograph I was not busy today . According to myth , when she knew that her mother was pregnant by an unknown father , she was angry and called his four hundred brothers and sisters . She wanted to kill his mother ( her name is Coatlicue ) , in this moment Huitzilopochtli ( God of the war ) was born ; he was born armed like a warrior ! I was very surprised ! Sweet Potato Do you know sweet potato ? A large number of companies are obtaining funding by mortgaging their cars and other assets at pawnshops . The customs procedure takes 3 hours and will be conducted in a cooled warehouse , which will help a lot in summer to keep food / produce fresh . The Korea government is preparing to manage it successfully . Secondly , it 's very short sighted thinking . I think they can contribute to cultural variety as time goes by . Having the agenda of neo - liberalism , they just generally increase repressive measures . I got payed lesser than the low limited wage . Basil , thyme , lettuce and tomato are in the picture . Unbelievable . . . My star - sign is Taurus . I think reflexology is helpful to recover from surgery , so I suggested to her to get reflexology treatment . Japanese people in japanese rooms usually sit down at kotatsu during ( the ) winter season . I felt that someone may think that we are superior to the laborers from other countries . Many universal students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . My hobby at this moment because this needlework thing does n't bring any benefits or money . ( yes , I sleep with a fox Johan , giggle ! Because it is a bad habit . When I have handmade work , I can relax from concerns and immerse myself . I went to Kyoto this spring vacation by myself . My favorite shrine is the Kifune shrine . Kifune was built to honor a god of water . Why does this sentence above use ' has basketball ' , not ' baseball has ' ? Yet , the symphony of spring project the comfy atmosphere today . Then , the sugarcane are milling milled to make brown sugar . I came to pick my guest up from the airport , but the flight was delayed by twenty five minutes . I feel worried about studying English . Are they correct sentences below ? * Elderly people 's share of medical expenses has increased this year . I 'm told when women are in menopause , they are more nervous and fickle than before . < < NOT ALL studying about Gandhi is complex and difficult for me , so I do n't feel like reading his autobiography ( the textbook ) . . . . This is the first time I have come abroad , and my English skills are not good , so I ca n't communicate with native people in Seattle well . Japan AIRLINES ( JAL ) decided to stop the flight ! ! But JAL decided to stop the flight from Japan to Bali yesterday . Two of them were Haruki Murakami 's `` nejimakidori kuronikuru ( The Wind - Up Bird Chronicle ) `` . I found my journal was corrected when I came home after my job ! MY SPECIAL DAY and I do not know what I should do . . . this is my first diary entry . Although it is very exciiting and I ' m looking forward to going , I am worried about one thing : the temperature . Actually this is the biggest problem for me . For instance , to reduce of the fee of electric energy , some companies develop inventions that store solar energy . I 'm still writing my grade thesis . I always dream of traveling to other countries , seeing other people , smelling other soil . We made chicken with sauce and did homework together . asa watashi ha gakkou de benkyou shimashita . yoru watashi ha hataraki mashita . Car wash to Jollibee to Greenwich de hataraki mashita . So , I decided to doze off again after waking up early , it was not a good idea , because it led me to wake up at 7 : 15am , if I did not prepare quickly , I would have been late to work ! I am not going to a travel with Ke , because it 's too expensive for us , but we will host a BBQ party at his home , with his family . . . Lost My Entry Authorization Certificate Today , the olympic games started in Canada . Sometimes , we are in a beuatiful place , but do not realise it and we want to go away , yet there are many people from other places who want to visit A mile is equal to 1 . 6 kilometers . However , I 'm worried about the jewelry I buythatis same price as aticket , so it might be crap and if it is , I 'm not sure if Ishouldbuy such a fakepiece ofjewelry . maybe , I must work harder . I 'm watching a Harry Potter movie on TV . It ` s been raining day after day for so long . Some day , I am determined to study English until I speak fluently , before I grow old . Is it because we are introverted that we are not good at chatting with people ? We test - ran 800 meters today . I really do n't understand myself for falling in love often and I had been depressed for every girl I met . I think I desire too much compared to normal guys . . . I 'm pretty excited about reading these books . I believe the problem of stress in the workplace is not being dealt with sufficiently . We should address the problem of stress in the workplace positively . I like Taylor Swift ! Next month . Foreigners who are living in Japan for several years probably feel that `` they are discriminating against us `` . The reason why I write is that foreigners are very rare in Japan . Even I always gazed when I saw foreigners in Japan . visit ? working ? `` , `` Oh , foreigners , very rare ! `` `` Why did they decide to come to Japan ? , this country is very far from their own `` , `` Can they perhaps speak English perfectly ? `` `` Are they good at any kind of sports ? `` , `` Are they Europeans or Americans or Australians ? `` . I played on the body board , which is an ocean sport . I like the sense of humor , the affectionately designed characters and most of all the kind of story telling . Especially the way the complete backstory of the central character , Mr . After the game Okada , who is the coach of the Japanese team , asked the chariman of the Japanese football association ( ? ) if he can continue being their coach . Nevertheless the coach loses confidence in managing the team . Recently , I got a laptop computer . It was hard but we had a good time until the tournament . ( I love these kinds of movies . ) I want to write a diary But I want to write a diary in English . Today I wrote a report in class . The report above requires more than 2500 words . Because Japanese is usually pronounced in the order of consonant + vowel + consonant + vowel I suppose the mistakes which my daughter makes would be typical to Japanese babies . He finished studying abroad at Kagoshima University , Japan . In many circumstances , the Japanese people who need to speak English for their jobs are white - collar workers . From yesterday to today , it was snowing too much . As a saying goes , good manners equals a good future . Furthermore , the day when everyone builds up good manners , is the day when we will be able to enjoy our lives better . There is no reason to not have good manners . Yesterday , I played the guitar with my friend in my house after school . Yesterday , my husband went fishing and brought back many fishes for me . Summer vacation is drawing near . At first , I thought I would be able to eat them up easily . So I wanted to throw the instant noodle away . However I thought it would be `` mottainai `` , so I could n't throw it away . My friend recommended this site . Today , my client invited me to dinner . I 've been busy for preparing my individual presentation recently . We often exchange letters or souvenirs with this system and also often talk using / with the company 's extension . Who are your recommended singers ? Finally , dress boiled pasta in this sauce ! Check my article and correct it . Though , even if the grammar is acceptable , change the expressions if are not used currently , DinBo 's home is in a big town , and it takes a long time to pass through a / dark forest . Just when he walked quickly and quickly , someone / obstructed him by / caught his cloth . Because I was busy yesterday , I could n't write a diary . Why did `` Avatar `` loose so many oscars despite the best performance in this year ? Today is the last day of 2010 . I have been a graduate for almost 6 months . Although the job of foreign trade is very busy , I always try my hardest to make progress . The biggest problem is my English . Sometimes I feel afraid to speak to foreign customers . I could go wherever I want . A friend of mine said that it was disappointing because the 3D glasses detracted from the color and brightness of the film . I 'm not being critical or sarcastic , and I usually do n't care about which restaurant has a terrible service or which staff . is rude Actually , he misunderstood my address maybe due to my bad Korean pronunciation , but he was neaby so I told him the correct adress . Then he just said , ' I saw the map but I could n't find your house , so I returned to my store . Thus I decided to tell them how to make tofu , It is a very challengable and interesting attempt . but , it was enough to take away all the sultry weather from this morning . However , it focuses on one Daimyo ( Hideaki ) so much , that the story is not understandable . When I visited the class , the sore throat had gone , and I had only a nasal voice . Steve ' apple - head ' Jobs is really cool . `` Finally , there are many kinds of games that require using my body . Today is my first son Mark 's birthday . l was glad my son was happy . I am distressed . Hi ! Today was cloudy , so I sat at home and watched a tv show . I also listened to music and drew in 3D program ( solid works ) . In the future I would like to work as a programmer . I 'm studying metallurgy these days . . . I 'm friendly so if you write to me , we can have a conversation ; ) I do need a normal English name because I do n't want my foreign friends feel strange when they call me Pengfei or Fei . I think Christopher Nolan is a very smart movie director . Everyone , Laos is wonderful , beautiful and kindly country . If you are too tired in your life , I recommend that you visit Laos confidently . For example , a German shepherd dressed as the police , and his owner dressed as a prisoner . And there was a mummy dog and a witch ( the owner ) , and a hotdog dog and mustard . However , when I looked at the unit carefully , I found that it says KJ , not calorie . I can read English to some extent because I have been learning English for more than 10 years , from junior high school to university , but I have not practiced writing , listening to and speaking English . They asked me , `` Did you buy it in Mexico ? `` I said , `` No , I bought it in Korea . `` Japanese peoples like rulers lines ( A . K . A Excel junkies ) I think one of the reason is the history of word processors use in Japan for the past 20 years I have to remember some Italian language for my job . I read an article about lady Godiva , you know , the symbol and the namesake of the famous chocolate maker . It 's a shame that the legend was not what really happened , but I do n't think the fact that it 's not true will diminish the attractiveness of the story . I don ' tthinkI 've fully understood why the company chose her as a symbol despite of the statement on their website , ' He ( The chocolatier ) sought a name that embodied the timeless qualities of passion , style , sensuality and modern boldness ' . And many women had Hakama ( Kimono ) , it was very beautiful . I ca n't stop drinking coffee , although I do n't feel sleepy . I always drink over 3 cups of coffee a day , but I learned that drinking too much coffee is not good for health All of their music is very cool . I 'm embarrased because I ca n't speak English as well as translate it into Japanese . I thought that it would be used for business entertainment . Anyway , Our team entered a competition last Satuaday . It 's a very small competition with only four beginer - level teams . But we were not good enough to win . But I 'm really relieved that it did not hurt so much . I had a great time ; I feel like I 'm in Paradise ! I will be able to have Paradise time in February too . You would say this word when one is expecting you to do too much for them , when someone is relying on you a lot and you are annoyed or angry about it . Hahaha ! ! Tonight , I will watch the Chun Wan and the fireworks show , which is always fantastic for us , the Chinese . ' iCarly ' is a sitcom in which Carly and her friends make their own web show called ' iCarly ' . I am jealous of a woman . I have exam on monday in korean . I hope be first in my class . last noon , my boyfriend ate greasy back shrimp , at 4pm , he had a stomachache , he was vomiting and had diarrhea , he felt uncomfortable . It is hard for me to walk around TDL & TDS all the day ! ! My husband and I have been married for 5 years . This Wednesday , I went to Ikebukuro in Japan after work . Nearly every applicant to University is required to take this Examination . I heard about this service from one of my colleagues . I hope that I can develop my English and also make many new friends on this site ! Telling The program is about other TV programs I like , USA or UK drams , for example . And soon the Chinese language will be very popular . But here , on Lang - 8 , many people want to know Japanese . Their music is not cool ) , Maximum the Hormone . . . . . It 's a bus tour to go to amusement park and find a Mr . Usually , it is more informal than arranged marriage . So I think you shoud use a website that is aimed at specific groups , for example , a website of climbing , cooking , and whatnot . The soothing breeze is trying to evaporate the moisture of laundry hung on clothes poles by my mother . Occasionally , some birds zoom past before my very eyes . Where does your family usually go for a summer holiday ? So , I started my motorcycle and went out without a raincoat or umbrella . About 10 seconds later , the raindrops suddenly became large and heavy . This pic can immerse you in the late 70s USA , a life where you have no one to control you and every right to violate [ what ? ] ! I think we can deal with the problem using proper methods that enable us to dispose of the waste matter and make the environment clean . At first , she wanted to learn acting from the actor , but gradually they developed a relationship which is like father - daughter and lovers . However , all the projects are n't always successful because some of them are led by the initiative of developed countries with little concern and understanding for the local governments and people . Santa Claus who wears a red hat and red clothing gives very kind children gifts . We ( do things like ) watch a movie , have dinner at a very romantic restaurant , or exchange gifts . I found Mos burger nearby my home ! Cuz it 's very quiet and few people are here . Before 7pm a crowd of people are often here . I guess they are university students especially . Writing english on this site is also learning . . He likes Power Rangers , Masked Rider and UltraMan . My English is at the basic or pre - intermediate level . And I made it a habit to memorize what native speakers corrected . What do you recommend for me to do ? However my throat is still not clear . I went to the Tanglewood Music Festival with my colleague last Saturday . I listened to the open rehearsal , the prelude concert , and the main concert . However , the understanding of the necessity of the procedure does not seem to grow . Please correct my English , for any mistakes . What should I do to solve the problem ? I was sweating because today was hot and the event was held outside . It was kind of a sense of fulfillment . One of my woman friends suddenly said , certainly foreigners do n't care about small matters . But I think I should be more self assertive , I got up around 11 : 11am today . Is it at the shore of an ocean / at the ocean shore or the apartment on a high floor in a skyscraper ? Ordeal of the Entrance Examination in Japan In Japan , we call the system the `` escalator method `` , which means once you get on an escalator you can arrive at the destination automatically . A recently discovered species of a frog fish , has been dubbed the `` Psychedelic fish `` because of the beige and peach zebra - stripes that run from its blue eyes to its tail . Using its lower fins , the Psychedelic fish expels water from tiny gill openings to jet itself forward . Psychedelica has a gelatiness body covered with thick walls of skin that protect it from sharp edged corals . On purpose I 'm not stating which one is the best because if I did that , it would be easily jammed with traffic . It gives us a lot information about books , movies , cafes , actors etc . . When he was going out , suddenly it was beginning to rain . `` Shall I lend you an umbrella ? `` I 'll come here on some rainy day to return this . `` `` Regular holiday is Wednesday but we do business only on rainy days `` I had made some mistakes , usingthe previous method I used to support him at home . Because of my foreigners . go abroad to see the world when I have the ability . beginning of the loss , I thought it was my bad luck . It was true . It is crowded in Sydney . Yes , when I met her the first time , I was somehow confident this would happen please check sentences Now one of my favorite artists is Drake . I found this website on a discuss board and it seems interesting . My first diary is about my new PC . And access high speed Internet . I pick out the best shop to buy it , however the shop had no stock . Yesterday , when I walked out my office , I saw a lot of crows . I never saw a crow before until yesterday . STEP4 Highlight the ideas from step three that I believe are true , or could be true , in certain situations . After the coffee was ready , I put a filter paper on my cup and poured the coffee into my cup . Actually , my father - in - law 's birthday is 15 . Can you believe that the temperature is higher than our body temparature ? I ca n't understand what happened . Please let me teach thank you . I was puzzled by his English . It seems that it is the 5th biggest earthquate since 1900 . it is late to make a sentence in my mind . I got so exhausted but this experience brought me a sense of fulfillment and new friends . To write a diary in English or Chinese once a week . It is a reason to learn English and Chinese . The city of Munster decided to ban cars within the city and use bicycles instead . The suspicion of match fixing in the Chinese football league storms the nation . Last Sep . 2 , the second division soccer team Qingdao had a match against Sichuan . The Chinese football association initiated the investigation but these past three years , the rumor about match fixing is going around in China . Recently it 's been insanely hectic and I ca n't review my entries . look beautiful There were two things that happened this weekend . Second , My parents had a serious argument which surprised us since my father ( split the water ? ) and broke all the things in front of him . I really do n't like the way that he communicates his anger sometimes . Next we talked in park . Suddenly my friend said : Toshiya , you does n't go back because train left a few minuts ago . Yuta lived near here and he is very kind so he stayed me . Then he changed the design so I helped him . If he has a trouble , I 'm going to help him . I like to travel ( especially to foriegn countries ) I 'd like to explain the Himeji castle . The shape remains us a white heron flapping its wings , so It is called `` Shirasagi jyo `` as a nickname . people who I can share things with , have a conversation with , and make a relationship with . Recently , I have been lucky enough to meet many friendly , special neighbors at the dorm . I already met one kind neighbor who did n't mind spending more than three hours in my room fixing my computer . It 's not that long ago since he moved , but unfortunately , he said yesterday that he 'd be leaving to Japan for his business In my opinion , we do n't need to be strong and perfect to fish , why not examine yourself , okay ! It is not too late . So , I am writing a diary ! So I always practice writing , reading , listening , and particularly speaking . I ate some foods but the German sausage and Toppoki from South Korea were the most delicious . Foreign people think it is too hot . First of all , take Vitamins and iron continuously . I could like it , but if I do n't go into an accademic career or the specialisation of hospital pharmacy , working at a pharmacy might be unsatisfactory and it woud n't allow me to have different experiences and to `` build `` a personal career . I am a very energetic person and I am able to keep discipline . Energetic sounds more natural I love reading , so I love book shops . In addition , they looks like some pictures or marks . When it is someone 's birthday , we always make presents by ourselves . there was an earthquake . I did n't know whether I should run out the restroom . When I was thinking that , the earthquake had finished . Today when I took a break and search the internet , I found that there were really a lot of people speaking highly of this film . because it runs well . This Thursday , I ate so many different Poccky . Also , Wednesday , I went to a bar , for `` Okinawa dining `` . Today I tried to explain that Mt . I want to make my son a professor . They are my favorite . We drank alcohol in the sea house . I was so nervous . . . It ' a joke , but anyway we enjoyed fishing . met my classmates and made new friends who are Arabic . I 'll be very busy from April , but I 'm excited for the new life , and I feel anxious a little bit at the same time . I 'll be a student , so I 'll have many sutudent discount . Though all of my friends laugh when I showed them the picutures . This is a technical and amazing invention . My vacation days are nearly over , so I thought it was a good time to get some wind . Everyone applauded sincerely and cheered joyfully for them . Although I 've had a few relationships before , none of them I really wanted . Yesterday , I went to an English lesson . During a group discussion , a question came up : Could you live without electricity ? Someone said that he would commit suicide , but I think maybe I could live better without computers or the internet or tv . Without these things , I could walk out of my room and talk to real people . The answer is `` public servent `` . Now I am listening Macros Frontier and working . We are supposed to talk together using headsets . The maximum is - 8 degrees . There is no Chinese teacher at Odawara castle . I 'm just study by myself , with a Chinese language textbook . The orange colour motivates my heart . The blue - violet colour is very nice . Now , you can see the beautiful red and yellow reeves around Odarara Castle . Unfortunately , I do n't know the historical significance of Odawara castle . My English is not good . Incidentally , I have received notification of EIKEN Grade 2 and Pre - 1 test first stage exam which I took on January 25th . I was so suprised , because I did n't expect that I could pass either of them . you can Google with `` * ( asterisk ) `` . And to search for an exact phrase , enclose the phrase in double quotation marks . Unlike our ancestors , who lived in the past , we are now living in a world which is full of media . Theoretically , the media reflects how we humans ' lives are advancing and changing . Then , the media appeared , which tried to express one single message to the public , and that is what almost dominates our daily life today . For example , we have seen several interpretations of the event of 911 from the western to eastern media . The media advances our quality of living by informing us of what is going on around the world which allow us to deal with our lives easier , but we should not ignore that the media is not a neutral mechanism but a living organism which has its own values and tries to influence us when we are heedless . And , never forget , try to think twice about the meaning of the information when you receive it . A question from `` Can I Do This `` . I sometimes think that my problems could go away like melted snow . In my opinion , it seems like a combination of two words : religion and ridiculous . Groups of birds soar to the west for family . So I 'm studying English now . I arrived on March 28 in Melbourneof Australia and will study here for To celebratethem , We went to their family 's house and hadlunch : ) But his subordinate , a woman , betrayed him because she wanted to save the human world . Japan has diverse climates , so there are unique and varied local specialties in each place . At the shop of Niigata Prefecture , the employees stock plenty of snow next to the shop every winter . I 'm a senior at University and a major in Education . I want to write more , but I 'm geting sleepy . . Until I got my lost stuff , I spoke to the man in charge . Luckily , all of my colleagues are very nice , so I just can work hard and do my best now . `` You are really a good man `` Kate answered yaaaaaaaaay ! ! I want to eat Japanese food soon . A bag of snacks disappeared in about 1 minute . Unless you watched this drama before , you would never understand the whole story totally and it wo n't be interesting anymore . Even though , I have never seen Star Trek before , I strongly recommend to watch this together because I hope it can increase my imagination like the moive Star Wars . We display so many dolls to wish our daughters 's good growth every years . ( When it ended , I was very very sleepy . ) It is a kind of training at my work place ( company ) once a year . First it was canceled , but then it was postponed to a later date instead . So I decided to go to Okinawa . In Japan , cherry blossoms have a lot of petals now . Since so many people went to see the cherry blossoms today , I could n't pass through the road by there . I have been to four foreign countries : The United States , Australia , Indonesia , and Singapore . My favorite place is Australia because I was so impressed by the Coral Sea . I 've started to dance Tango since this February . I do n't like buying clothes that are made in poor countries . That is , clothes which made in poor countries often made peple work very hard for very very little money . Cheap clothes are very popular , but they are not good for those who made the clothes . So , I like to prefer ' ' Fair Trade ' ' . Especially I hate Japanese apparel brand UNIQLO . I want to wear clothes which make everybody happy . To enjoy fashion is Ok , but I really want a lot of people know the fact of cheap clothes . I took the morning off today , because I had a stomach - ache . Do you know Higashino Keigo ? Did Santa Clause come to you ? . Luckily you are the first person who is an electronic technician who bought this device from me with the problem ! Though I like anime , I ca n't believe the above results . Twilight - New Moon the Jonas brothers and Taylor Swift . My birthday is november 23th . because it is full of difficulties , pressure and unknowns . I always come across some trouble , We ordered five servings of pork belly . Although we just ordered five servings , it seemed like too much . School just started one week ago , so I decided to insist on writing in my diary every weekend . LMAO , two americans in the audience at that coffee shop were surprised when they saw sunnie and I going into one bathroom together and they were also surprised that we were holding hands all the time - they thought we were lesbians ! It was a 1st model when VISTA was launched by Windows . or to hear radio and TV news for various countries . I 'm looking forward to it . Tomorrow morning , I will go to a language company for interview . Have you ever eaten spaghetti with salted pollack roe ? having a child , our jobs and anything we concern . He was cool as always . I ca n't wait for his come back from prison . I think that celeblities obviously shoud n't have them . I . 's public estimation because I did n't read articles about him . I want to know his recent news . It is interesting and fun . I do n't know what to do now . . . It is continuing hardship everyday . Monday is coming to me . Could you please explain the difference between cartoons and comics ? As I expected , grandma , ma and pa - all of them welcomed me . I caught a flu last year . When I came into the party place , I found many people were wearing really gorgeous and brilliant costumes . We drank until 3 am , as usual . When my host family goes on a trip , they start barking even at night ! TV showed people who live around the nuclear powerhouse in Fukushima that were allowed to get back their home for only for 2 hours . I would like to say something about my little brother . Can you help me ? Ah , is this daily good study for me ? Taking care of their children and being a part of their family is my role and job . my hometown is Langzhong in Sichuan province , which is a very beautiful , ancient city . I 'm plannig to go back Kyoto to attend my friend 's wedding ceremony and prepare my own ceremony which will be held on May 29th . And I also have to go to my university , to tell my professor that I will be getting married . My backup data was on an external HDD connected with a USB . Today I tried to figure out some math problems I learned how to solve in elementary school , but I could n't ! Yesterday , I drank with my boss and clients . I know it 's a stupid thing for American people . Now I feel so lonely . People call it a `` cleaning robot `` . I boiled water at 500cc and added chicken stock tablespoon 1 . 5 and a proper amount of salt . Then , I boiled somen of two serving for 2 minutes and stirred sometimes . I boiled the soup again and after the soup boiled I stopped the fire and displayed it on a plate . By the way , I saw my friend in the library , so I said hi to him . I will be fliying against time , I am working as a waitress now , so I have a question One more good point about this centre is that its free . If I correct somebody 's entries , I can get ' stars ' in Lang8 . And leave your comments . The other day , I bought the book `` Macbeth `` by Shakespeare . I want the help of everyone whose English is good ! We businessman must be careful . The first picture I uploaded is that . I 'll be fortunate to have a good family and a work worth doing . I am satisfied with my purchases , and I wear the pk t - shirt very often . For the following reasons , I disagree with the statement that the companies are allowed to do anything to boost their profit . In the worst cases , some employees become depressed and kill themselves . A boy student who was doing badly in school leaves behind a high ranking high school in Tokyo moving to Himi to lean on his relatives . He comes across a girl student named Nagisa Ichinose . I happiest when I 'm with my friends . It looked like they will stay in Kyoto , so I told them about Nijo Castle , Gosho , Kiyomizu Temple and so on . So I started this morning by taking a sample of my daughter 's pee . I am Nao , a japanese person who is staying in India to study . I imagined when I was in Japan that I would be able to speak fluent English automatically if I came to India . The other was 07 : 40 AM , but I do n't remember hearding any sound , just when I suddenly woke up and checked the time - 08 : 40AM . It was called `` Sony timer `` , because they were broken after the warranty period . What do you think about Sony products ? `` You can say that again `` `` You could n't have said it better `` Tha 's easy , so I 'm gon na write about my first concern which is `` earthquake `` It has caused devastating `` damages `` such as `` Tsunami `` and crippled `` nuclear power `` They asked me , `` How often did you experienced an earthquake ? `` , `` What did you feel then ? `` We should reconsider how we live with animals . But after a while , some of them are tired of raising their pet and worst case , they abandon them . The fact that animals are often used in experiments before products like medicines , cosmetics and foods come out on the market is unknown to most Japanese people . I ate lunch with my grandmother today because my parents went to a grave of my father 's ancestors , and they were going to lunch with my father 's brothers ' families . I ate too many cakes or sweets and I forgot to exercise . I may be succesful if I keep on diet for a while . To make a story you have to read a lot of books and practice writing . There is one of the most famous shrines in Yamagata prefecture . In the weekend , Taiwan have a typhoon come , We get a holiday on danger , so our govermment proclaimed that we can have a holiday . My daughters , husband , and I enjoyed having him over . admiration , happiness , aesthetic pleasure . He also liked soju ( popular Korean alcoholic drink ) . I studied English yesterday . First of all , I study vocabulary because I am a beginner . I want to be able to read English newspapers . The girl called Nastya appointed an interview today at 4 p . m . , but after coming there I found out that the interview will be tomorrow because of their technical problems . So , some children and their mothers came to have lunch there . My former tutor who lives in Toronto just emailed me . I took part in the drinking party . I was selected as the person and got the award ! In the last scene the bat fell into disfavorwith both groups , because he tried to trick them . 4 . Memorize English sentences on www . idealen . cn . But today , I wanted my hair designer to cut my hair shoter than now : p I hesitated to say please cut my hair shoter . I really want to move to California although it 's nearly impossible that will happen . However , in most cases , I ignore that issue and hope it is just because of temporary stress or just a minor thing with hypochondria . I think many people in modern life have the same experience as me . On the other hand , we worry about our health and think we need a check - up for prevent serious diseases . I saw them throwing their cigarettes on the road ! ! When I walked behind them , I had to inhale the secondhand smoke which contains much more chemical poisons than the smoke they directly inhale ! ! I started thinking that nobody is going correct my posts . Maybe I should make more mistakes ? And I felt positive feelings and warmness about the Hawaiian people . Regarding Hawaii , it 's really warm but not humid there . I went from Tokyo to Shizuoka by Shinkansen . Japan 's recession is very serious . These days , TV , newspapers and radio broadcasts tell us that the climate of the earth changes day by day . They also tell us that humanity will face global warming . Unfortunately , I do n't like to play football , when it 's 35 * C : ( One - day travel / trip Anyway , what I can do is practice , practice , and practice . Once I have & nbsp ; graduated from university , everything & nbsp ; will change . Today , I met my friend and we went to an exhibition in a bath house . `` Clarify `` is a very useful and common word in daily life . I am clarified on what you said . ( good sentence ) I 'm trying to clarify what the difference is between them . My short - tempered boyfriend So I wanted to work it out , but when I talked to him about what I 've been thinking about the other day , I could n't help but to cry . What he gave me was not a big sweet hug saying sorry , he gave me an annoyed look because I started crying . I 've decided to dilute my passion for everything British with American literature . I do n't know American literature ( as / that ) well , so I would appreciate it if you could recommend me some of your favorite American novels . I should 've gone to school : < career choice and I have to sign in , in one of two careers that are vacant in two different places . and the other is data processing and is something that I 'm remotely interested in . But what I really want to study is language but that is a career that you can only study in another state but I do n't have the money to afford to live there . According to this movie , his harmony sounds quite eccentric , he hit a lot On top of how different his music is , his appearance and behavior is also strange . His son , Kyle Eastwood , is active as a professional jazz bassist . Also she was awarded for her excellent discipline and punctuality . The restaurant was very clean , the food was delicious and also they played Chinese music in the background , a very nice place . Every three days I change the water . I hate oneof the supervisors because he always says `` no `` when I ask for something . Other students also dislike him because he is very strict and he always says `` no `` when other students also ask something . Today , all my classes were cancelled so I had much more time . It is a fascinating and attractive place . I found a bag of ramen , but I did not want to eat it at that time although I often eat ramen late at night . I want to play with strong people and get stronger and stronger ^ - ^ A guide said `` I do n't know that reason , `` and I did n't change my I - phone . we played beginner and medium courses . There are very nice and fashionable restaurants in Sydney . The number on the display began with + 1 and I easily could guess who was calling . and who told me that he 's been catching a cold , I live in a house where many foreigners stay , but I do n't talk with them often . Its introduction said if you could be young again , how would you use your chance and not waste your time . Some countries would rebuke that country throughout the media and demand for an apology for the incident , not a war . At last , I probably should close the window . . . . . I hope I make improvements in my English before I get a part time job . I booked the B & B for 3 weeks until Dec 9 . Over the past couple years , almost all of my friends got married , and some of them bought their house and had babies . I heard that in some European countries , the number of non - married couples are increasing . Of course , there might be other system instead of the old marriage system for life guarantee . Letter ( Aki Angela ) In the midst of this pain , I live the present . If you continue asking what and where you should be going , Today , I made friends with some students on facebook . Because I like pokemon so much , I wanted some English pokemon games since I was in Japan . so all my plans for this weekend failed . It was an ad for a teaching job in Makati City , Philippines , and I received an e - mail from the school president . Although I am afraid of going there , I thought that this is a rare opportunity for me so I 'd better go ! I decided to go to the Philippines . I 'd like to make friends with people from all over the world through this site . I am very happy because I passed an exam and will get my first job . Yesterday , I received my ( employee ) bonus . My company paid it to the employees , half based on the monthly salary , and the other half based on the results of what they did . Sources say that the number of people traveling abroad will be increasing this summer because of the strong yen and gradual recovery from the recession . But I can not believe it . It was a wonderful experience to enjoy food with not only the taste but also the sense of touch . He called me in March to notify me about a job interview , but I had a another job interview on the same day . It 's highly important as to which book I bring . Yesterday , I read an article about the Human Resources department in a certain company . In my case , since I 'm an elementary school teacher , the government adopt new teachers , we basically train by ourselves , principals decide which grade we would be in charge of , and we have to cope with all of the problems and complaints . At first , I thought it was just a simple place to learn languages , but when I logged in , I found it 's a very interesting place ~ ~ ~ The throat syrup is called `` Stop - cough syrup `` . My hobby is playing the piano . Recently , I wrote an original song and played it . If there are pleasurable things day , my song is up tempo and pop . I did n't buy it from a foreign manufacturer . I worried about it . Many of my friends are going back their countries in Decmeber . Today , I took the entrance examination . Women figure skating I will watch the Japanese skaters and Kim Yu - Na parts on TV . There are three skaters from Japan - Mao Asada , Miki Ando , and Akiko Suzuki . In Japan , people are expecting Mao Asada to win . This cafe do n't serve the shoulder massage and huart ( huart ? ) mark ketchup on Omrice . ( Yummy ! ) It 's very reasonable in Japan . I do n't want the service like the Maid cafe in Akihabara , so I 'm satisfied with this cafe . I want to give service for the girls more than to get their service . That 's is more important than optional services . I am trying to ride my bike everyday . His name is scott However , I could feel that he was kind because of his passion for studying japanese and his eagerness to talk to us . Summer is coming little by little . I 'll try to do my best in grammar , spelling and punctuation in my journal . What is your occupation ? Have you employed au pairs before ? bacause today is our five month anniversary but I can understand him . he seems to be nervous . . . . I believe that he can pass the test . I have to study grammar . I have to listen to English conversation , something like that . I should take it easy , and I should take every opportunity to talk in English . I 'm not skilled at computers . At last , when it settled on the wall , I caught it . I just wrote 5000 words so far even though I have to write more than 32000 words ! Thanks to everybody answering on this ^ _ ^ On second thoughts , I want to post non - japanese songs after all ! I signed up to Lang - 8 when I was in Japan but I have n't written any entries here because of my laziness . . . I practice some tricks . Recently , I became crazy about `` hannah montana `` ! I am cheeringfor all theathleates of the world . Recently he scratched his cheek . We will be watching the movie ' Avatar ' . Controlling an avatar that 's something you 're not but represents you seems awesome . Appearance is considered an important factor in building relationships with others . Of course , I want to be rich , but if I were rich , I would n't feel like living a simple life . Him : I have to go now . I watched the movie named `` Ponyo on the Cliff by the sea `` . I like fashion ! By the way , I like fashion . The members and I have practiced very hard for that show . As a result , it was successful . When somebody who eats my cooking says `` delicious ! `` and smiles , It makes me happy . The letter was from someone I 'm kind of interested in . I will write a reply someday . How do you talk to a person you 're kind of interested in ? That means we have to dispense one prescription every 3 minutes . Hello to everyone . And I sometimes watch TV . Companies such as SONY have a lot of personal informationand responsibility to protect it from hackers . But hacking technology is improving day by day . But providing our personal data means that we should take the risks of our data being leaked . Customers are afraid of their data being leaked , but they want to enjoy the convinience of online services . This is too complicated . . . Especially , I want to write in English . Please send me a message . Now , I 'm learning about Gary Snyder . I was looking forward to joining this site for a long time . Please correct my diary . Good morning ! Luckily , my cousin who lives in Orange county called me ahahahahahaha ! I bought a notebook and many colorful pencils ! ! ! Did you know , a few months ago , the Chinese government forbade the custom of wearing pajamas on the streets ? I was a shopaholic in the past , but I am not interested in shopping any more . It 's unbelievable . I am so afraid I 'll lose my mind because of him . It had been rainy these day , so we can wash clothes and dry these clothes outside today . fantastic scenery . It is about our regional press in 1905 when the first Russian revolution begun . A news interpreter explained those reports like the issue of the rare earth , the Myanmarse military regime , the conference system regarding the matter of child abuse , why India has developed now , the war between the Mexican government versus some drag cartels . Before the opening , they asked the Japanese self - defense Air Force to peform something interesting . He said that they should take the animals in the zoo into consideration . As you know , we Japanese are struggling with a large government deficit . Considering the amount of deficit , we should privatize this peformance team as soon as possible . After I watched `` Sister 's Act 2 `` , I really wanted to listen to Lauryn Hill 's album . Both of them are Americans . She will join all kinds of activities such as English discussion group , go to meditation , running , perform yoga and so on . Before she started her IMBA program , we often hung out together . I can tell she does n't appreciate some Taiwanese culture . Also , She has a strong personality and sometimes I feel stressed when I 'm with her . Tonight was fun for me . Our conversation was in English since I need to practice the coming interview . I do n't like Hollywood movies either . People can prevent some avoidable tragedies or create a more enlightened society through learning wisdom from our intellectual ancestors , which is recorded in history . I miss the beautiful sunshine . We played together , laughed . . . Of course , sometimes we quarreled , but then apologized . It is famous for monkeys and onsen ( hot springs ) . The next day , we went to Nikko edo mura - an amusement park which looks totally like an Edo period Tokyo town . It 's very delicious and having conversation with them is very fun . I reaally need help from someone . Specifying my language goal . I recognize that time heals everything . a SKY ) committed suicide . He was the younger brother of famous actress Choi Jin Sil who commited suicide 2 years ago . Before talking about this , we must know about his sister . She finally committed suicide , but the reason was never known . Finally , he committed suicide yesterday . My friend recommended this website to me , because it is an excellent place where I can freely exchange experiences with people from all over the world in different languages . And I found the atmosphere here is friendly . I ca n't understand why it costs over a 1000 dollars to pull out a wisdom tooth if I do n't have health insurance . cloudy day Yesterday it was raning heavily . But today it is n't raning , just cloudy . Mokpo is a harbor city in Korea ~ but , we do millitary service . Yesterday was the 63th anniversary of the dropping of nuclear weapons by ( 1 ) So we have a responsibility to decrease them `` Is it my fault to lose my interest in that ? ( 3 ) Some foreigners will think that what I said is a common idea in Japan . Japan 's national team is strong now . We enjoyed visiting Kamakura . I have read a book which entitled Congo Journey I live in Saitama , where is located next to Tokyo , and I saw a lot of people kept coming to the station and they found all of the trains were canceled , so they started walking to their own home . I hope everything will be better tomorrow . I 'll revive my hometown and hope to live here with my favorite landscape of the sea again . It is easy for an outsider to cheer local people up and criticize the Japanese government , but people who are the most seriously and deeply thinking about revival are the local people . One of the most important things they want us to do , I think , is to start preparing for the next disaster . My father likes to eat Japanese food named `` Na bean `` every day . If your vocabulry and grammar are not good , you can not catch what they said . this is the first day I come here , I want to improve my English here , at the same time , I also want to learn Japanese . I know all of you are kind hearted boys and girls , and you all have good language intelligence , I need your help , and also , we can be friends . There was no sun but , only constant snow and rain . If I choose only 1 from them , it means I abandon the others . Nowadays I think a lot of electrical appliance shops have machines to make bread at home : this way you can save money ( is it sure ? ) and time because you do n't have to go to a baker 's after work , or if you forgot to buy some bread , this machine can solve these little problems . It seems like a useful electrical appliance and one of my flatmates is thinking of buying it but I 'm not a fan of it yet ! In addition , most people study English in high school . I ca n't write in English . I realized that rather small rivers in America which run through cities are covered with cement , like a snowboard halfpipe . ( * see below ) I have been using English more and more on business in recent days . My favourite song . Hello , my wonderful friends tonight I will practice my favourite song . I cant ' read some of the sentence as it is so difficult . If I go to a pub , I want to drink Lemonade . In the next class , I will teach a lesson , so , I have to prepare a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , younger people , close friends or acquaintances . I 'm going to write a lot of things in this SNS . For example movies , books , my daily life and so on . . . This book is about the globalized world and it was written by a journalist who has won the Pulitzer Prize three times . Autumn is my favorite season ! Japan has 4 seasons , spring , summer , autumn and winter . My favorite season is autumn . Then we can taste autumn speciality crops , pear , grape and chestnuts , ( The word `` marron `` is more popular . ) And it will be rainy tonight . I taught them how to play ! Today , I had a health check at my school . Nothing was wrong with me . You can cook it by simply pouring water into a cup with some powdered flavor and putting it into a microwave for five minutes . Computer graphics is very difficult work , so I often search for hints to solve problems on the internet . I think I should change my attitude . Because I have no opportunity to communicate with them before . This is called `` white night `` and people go to bed very late too during this time . Next year I will go to Canada or New Zealand as a WWOOF . I felt so miserable , so I thought I would write about it here and get some input ! It 's a big event for every Chinese university , as well as primary school , middle school , and high school . After the speech , every college in our university was required to present a creative show in one minute to show its different style and features . During these performances , the applause was enough to bring down the house . But choosing presents is interesting I guess . This is my first time to post something about myself here . There are matreshka ( exclusive and usual kinds ) , different things made from elm , from clay , also many kinds of jewelry made from stones , dolls , stuffed animals , wooden furniture and big wooden figures , textile , clothes and so on . It 's a muslim program I have never seen , maybe because it 's on in the early morning or because I watch TV very rarely . . But , on the other hand , care assistants for elderly people is lacking in Japan , so the government is planning to accept workers from Indonesia . It happened when she was n't with my friend . For instant , the famous physicist Einstein , changed our traditional view of the world . Parents in China attach a lot of importance to scores and rankings . The baggage delivered was a black chair , two tennis rackets , a big shelf , bedclothes and so on . According to my inquiry , my baggage was delivered to another place because of a mistake by the staff . I saw Ugly Betty who is a very adorable character in the drama . Omelet is made with carrots , beef , onions , pepper and salt . Recently , I 've been trying to be calm by changing the way I think and my attitude about everything . And it makes me to be slightly nicer to other people too . Meeting with Alcohol Big surprise , news have just arrived . After asking me many questions about my courses , my internship experience , career planning and some other professional questions , she let me read three emails and tell her the main content of them . I read many emails like this last year during my internship . I asked her to tell me more details about the position . After that , I knew the duty of that position is to deal with many trifling routine things , nothing special . She told me more things would be discussed in the second interview . So just forget it . I 'm very glad to join you all . My mom , dad , elder sister , her husband , her child , my elder brother and his wife . I 'm looking forward for you to point out my errors . Lucy 's characterimpressed me more than others . Today , 12 . 5 , is the anniversary of the Wenchuan earthquake . tragedy . Costing hundreds and thousands of lives , the disaster has broken hometown , we should also try very hard to help the people to Today , I attended English class from 8 to 10pm . Usually , the class lasts from an hour to an hour and a half long . Therefore , I am making a resolution to live abroad . Actually this one is a ' mobile laptop ' so it 's smaller and lighter than the old one . By the way , we 're in a summer break here , and I 'm planning to go to beaches , museums , travelling , watching fireworks , etc . . . I agree with the author 's opinion that in Japan , children can not leave their parents house because their parents wish their children would depend on them ; though their parents are complaining about such situations . When parents live with their own father and mother , they can ask their father and mother how to raise their children to be independence . I think that those are the reasons that Japanese parents wish that their children would depend on them . A few days ago , it snowed around my house . Today is Christmas . I met people of various agethrough myvolunteer work , part - time and practical training . Oh ~ Today is also a hot day . Right now the temperature in Fukui is 10ish degrees Celsius . We remained for extra inings because the Giants will win . We thought it was possible for the giants to win , but the game was so exiciting and the next one will be a win . I went to the dental clinic to pull out my wisdom tooth . If you are interested in it , please read my journal named `` Describing a picture ~ `` ) She has a really tiny waist , however , she does n't have slim legs lol ! She looks like a doll , because I can not think of a human that has such a tiny waist > < . Today , We smile , cry , shop , and lost something on this ground zero and bombed area . Of course , We have respect for the dead . She Succeeded . It was a vicious cycle . Today , she put out an unbelievably big poop ! ! I graduated ( graduated ) Chuo Uni . I like soccer , drinking part ( parties ) , and talking . As electricity has been cut off because of the earthquake , I can not cook and eat food which is sold at a convenience store . The best one is baked salmon rice ball and the second best one is fried rice ball with various ingredients . If you have a chance to come to Japan , why do n't you try eating a rice ball ? According to the weather forecast , it will clear up and be sunny day . Around 10 a . m . I will go to the City Museum to see the paintings , Actually , I have been learning English for many years , but I am still not able to speak English fluently . Maybe you are wondering which city in China I am from , so , I can tell you I am from Changzhou in Jiangsu province beside Shanghai . I 've been so addicted to quotes these days since one of my Australian friends showed me some funny quotes and love quotes several months ago . I recommend you Nagashima Spaland ! Then , the weather forecast says that a small typhoon is likely to approach here ! I do n't want to buy one from a Chinese reseller on the Internet . My dog expresses his desire to go outside by scratching the door and staring at my father 's face with expectation . My dog 's most hated word is `` shampoo . `` Last time I visited my parent 's house , I asked him `` Can I wash you with shampoo ? `` My dog dashed to the door , opened it very quickly , and run away . People living in Osaka eat `` Okonomiyaki `` with rice . It tasted like strawberries . There will a high school entrance ceremony for my younger son tomorrow . The nuclear powerplant in Fukushima was highly affected by the big tsunamis so we must save electricity . Instead of starting the summertime , my company will stop using half of our building 's elevators to help save electricity and cooperate with the government in improving our economy . I look up to him even though he is younger than I by three years . He told me the reason why many Japanese people have no hope for their future even if they have a lot of money and their lifestyle is better than any other country . She likes English and so in the future , I may be taught English by my daughter . My father was researcher of a geological survey . I do n't know among these questions . He said it 's yummy that 's why I 'm so happy . He recommended that I should stop attending language school ! ! but , for 2 months I went to 10th . ? ? ? Sometimes I have a Birthday Party . I will have a chocolate cake and get gifts from my friends and family . This is the first entry By the way , she paid 170000 yen for the painting . My friend always says that international love is difficult . . . She is easily frightened , so as I expected , she started to cry as soon as she heard the sound of waves . ( picture1 ) Since we got free tickets for some amusement parks and botanical gardens , we went to some of them . While there , we walked along a slope which surrounded a large aquarium that is cylindrical in shape . We could see these fish right here , so I felt like as if I could touch them . ( sorry I wrote a dirty word ) My colleagues and I argued about the merchandise 's selling place this morning . Since my brain controls every part of my body , both physical and mental problems have happened , for example I have had headaches , chest pain , difficulty breathing , could not think very methodically , excessive depression and aggression . Due to these symptoms appearing since elementally school , I could not go abroad . At that time my parents and I did not know the cause of my ill - health until January 2011 . One day my mother took me to a psychiatrist , but to be honest I did not want to go there though . Since I came here , I have been trying to understand what people are saying . November is coming November is coming already . I experienced many things this year . For example , I held meetings , practices , performed at many places , and planned events . The rainy season is coming . The key to breaking with the vicious circle is to change the fixed pattern of thinking once and for all . I ordered seeds of a flower , solube YTT . A white flower blooms on the first day , a week light blue blooms on the next day , Nakahara then realised that the lesson fee was much more expensive than he had first seen it on an advertisement . The staff cheekily tried to give the half a year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recently I challenged to be vegitallian because of diet and look shocking video which makes me think about various problem ( I will skip the detail ) . Fortunately we have vegetarian traditional recipes in Japan , and I am learning traditional Japanese food from a recipe book . It will be sunny the day after tomorrow . Learn English Today , I had an interview at a Company but was not sucessful because I am bad at English . In this book , there are hundreds of phrases . Actually , I wanted to watch the 3D Disney movie , but the tickes were sold out . Three adventurers go to the ancient world , and they meet a monkey - man . I had expected there to be a lot of British people , but in reality , there were only a few groups of British and the others were mostly from Eastern Asia , especially Japanese . My conclusion is that they have it in their home . Thanks a lot = ) ) ) I 'll introduce Japan to you , and what you do n't really know about it . Hi , from today , I am going to introduce to you Japan . Because of all the mountains , the area people can live in is very small . He often says `` My students always talk about the weather . `` I think that Japanese people like to talk about weather topics . It could be a good thing for a movie to be concise but I do n't think it happens to Angels & Demons . during the free days , I went at the museum , Zoo and went shopping with my husband . I put an extension on my hair . But the movie disappointed me And tomorrow is not only the beginning of great heat , but also could observe solar eclipse . Recently , I 've made a habit of staying up late . And I rode this bike . I am a Japanese person learning English . Have no fear of perfection , you 'll never reach it . - - - Dali Salvador Today , I thought about my dream and then I talked about it with my friend , Ran . Because there was a bunch of great stuff over there that I have to tell you about , It 's gon na be a long diary . A couple of hours later , my mother had an idea to turn off the indoor lights and turn on the outdoor lights , after that the bird flew out of the window . Our curriculum has to be finished before summer vacation , so students take classes on Sunday . I could see books from China , Korea , Italy , Spain , Taiwan and so on . They are an English book and a quilting book . I had attended a quilt class for about 5 years and an oil painting class for about 10 years in Japan . Last Sunday , there was blind person next to me on the subway platform . The climate here always changes : it was typhoon ( season ? ) only a few days ago and now is already a sunny day of over 35 degrees ! I have read a book called `` Letters from Vietnam `` My Sunday is made of sleeping , eating , having coffee and working . He thought he might be able to climb up the thread to Paradise . So , he grabbed it and started climbimg . Up and up and up , it was a long way to go up to Paradise . He saw the others also climbing after him . So it was very interesting and exciting ! I work hard , and early every morning I practise my spoken English for an hour . One Italian guy said that he does n't like McDonalds at all . He also said that Italian McDonalds is different than American McDonalds . He accepts Italian McDonalds but he has never tried American McDonalds because it 's greasy food . Then , one Korean guy said that Korean McDonalds has a kimchi hamburger . Alumni reunion In the end , I bought a red bag and some pretty clothes . I understand it is still difficult for women , especially for old women , to express their honest feelings in Korea , since there is such a strong influence of Confucianism . I do n't have a car license yet , so I hoped I would get it . But getting car license is quite hard for me Because I am worried that I would slam into and crash with other cars . Fortunately , that has n't happened yet , and I hope it never will . I went a Starbucks today again ! or maybe it was a soda ? We Japanese rarely buy a bottle of water or soda in Starbucks . But as I was quite tired today , I did n't have the energy to do it . Instead , I am trying this . Then there are pictures of Anpanman characters at July and August and December . We do n't understand how important the day is . She is supposed to stay in Arlington in Massachusetts . When I was prepared to pay up at the counter , I found the price very expensive , which surprised me . I wish thatall the friend from the net who view my diary and findmistakes can give me corrections and adviseon the usage of language in the article , even if it 's a typo . He stayed at a youth hostel in London for one week and became friends with many tourists from all over the world such as , Holland , Australia , China , and Italy , by talking with them in English . When I bought it , I was happy cause I no longer have to borrow my friend 's bicycle . It sounds like those who have tattoos are bad and unsuitable people . `` Tattoo `` sounds more fashionable and smaller in size . ( basically Whoever has a tattoo is rejected at public places like swimming pools , public baths and public Saunas here ) `` Daddy Look at the big carp on his back ! I will watch the movie `` The Social Network `` this weekend . Mongoliais Asian country . I am a senior in high school and this is my last time so everyone play hard ! ! ! : ) Whether it is running or jumping , everyone will do their best ! ! ! I am really proud of them and very happy to meet them in school . `` Oh , my little baby . . . Please teach me how to concentrate on studying . > < It 's only 12 : 26 and I already wanna go home ! The prom pictures should already be updated on the school site but they 're not there yeeetttt grrrr I wanna try the real full - cource French meal , or whatever it is that you call : S I checked an otological website that said `` If you continue to have a cough , you should suspect allergies . `` I got the idea that the cause of my cough would be allergies , so I 'm going to an otologicalist this afternoon . Recently , I could n't write a daily journal in English . Tanzawa National park kanagawa prefecture . I rode a go - cart . So , I made my curriculum vitae , and I 'm searching in Europe or Asia . So , I cleaned my room . T `` is challenge time . Every morning swallows come to my balcony . It is rainy today , but we have a pleasant day . We have an indoor barbecue ( I do n't know whether it is called a barbecue or not . ) . But I can feel good when I 'm livigng ( living ) in my room from tomorrow . My class is listening 2 , grammar 3 , conversation 3 , reading & writing3 [ the max level is 4 for everything ] I think that this rythme sounds good . XD So , I have to overcome this psychological obstacle . . . . . . . Teaching them English would be a tough challenge for me because I would have to take full responsibility for their results on their high school entrance exams . Even though the pay is the very low , I still accepted it without a second thought . Just going to the library kept me happy when I was a child . I 'm going to be busy from tomorrow onwards . The day for the Eiken English exam is coming . I had almost forgotten that I needed to study for the exam till I received the card , but now I 'm a little uneasy . But I know my English skill is not enough , though I 'll have to work hard for the 1 week that I still have before the test . because my bag is in the room thank you for writing . : ( Olive found a very cute stuffed animal in the shop and her mother bought it for her . Although It has been more than 1 month since this new year started , I have n't even started yet ! I 'm actually not good at grammar and reading more than speaking and listening . Because I could n't understand most of grammars , it made me sick to study English . But the most important thing is to keep studying and enjoying English not for exam . But , I will apply for a job with another company . I am studying document 's grammar , speech , writing and others . . . First , I practiced speaking in english with videos . Then , I wrote an essay . I thought that iPad is more comfortable for her . This have something to do when a woman becomes pregnant . When ladies are 5 months pregnant , we have to go to the shrine for our babies blessings . I have been studying English for a year in order to overtake a friend of mine , but she seems to have mastered a higher level of English than me . He killed Peter 's brother Nathan , and he was driven to become Nathan . Finally , he felt so guity he imprisoned himself into a world within his own mind . Finally , they freaked out and argued with each other , and Peter shouted at Sylar , blaming him for there being no way to get Nathan back . The wall was destroyed by themselves . The work of this committee is to organize an athletic day , I try to give my effort to this committee activity ! My wife recommended me to this site . It 's going to be hard to control / maintain a schedule of studying and hanging out with friends . After carefully reviewing all the terms and conditions , Jessica finally decided to sign the contract . During construction , the main lobby will not be accessible to employees except to executives . This is my first article at lang - 8 , so I guess writing an introduction about me would ( sounds more natural ) be the best start . Now I must buy it on the internet . I am a Japanese lady enthusiastically studying English writing , reading , speaking , and listening . The movie was very enjoyable . I recommend you to have fun in your special style when you see colorful movies like Disney 's . I really like to take photo 's because I can document my life easier . I feel comfortable and peaceful when I take them . Everybody agrees that the products of Japan are of higher quality . This word `` Kaizen `` which means `` improvement `` has gotten very famous , and many factories / manufactures are trying to do ` Kaizen ` to imitate Japanese quality all over the world . Because I believe this natural Kaizen in Japanese production is strongly related with Japanese calture of `` Ki wo tukau `` . The culture of `` Ki wo tukau `` is everywhere in the world in social communication , but other countries do not implement this thing actively in their work . This makes them follow `` Kaizen `` naturally . `` Sony timer `` is the timer which makes products malfunction when the warranty is expired . Today 's menu is Curry . I drank some alcohol and ate yakitori at a yakitori restaurant in Shimokitazawa last night . It had a strong taste and was a bit hard to bite , like jerky . Within the next two months , I want to learn to drive a car . I think that would be a very interesting thing to do ! First , please allow me to introduce myself . My hobbies are watching sports , especially Formula One , playing tennis , and watching movies . December 31st . Honestly , I do n't like to study foreign languages . Especially English . Of course , I knew we have no choice but to learn foreign languages , because we are in the age of globalization I appreciate those members who correct my diaries . I had to eat the dish they ordered cuz the food they like to eat r the same : ) It seems not to be asleep . In regards to sleep , I looked up an interesting expression in a dictionary . By sprinkling sand in children 's eyes ! ! ! In the world there 's nothing more valuable than people . There are very heavy . : ( Although suffering from a snow disaster at the begining of the year and a terrible earthquake rocked the Sichuan province , the on - going Olympic Games inspired our passion to our people and country . We all close our eyes before starting the game , but only thieves can raise their heads up , open their eyes and look at each other , which allows them to know who the thieves are . Afterwards , we start to guess who the thieves are by making inferential statements like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes , afterwhich we point at the persons who we think are thieves . I played basketball with my friend in the park today . My mother tongue languages are Cantonese and Mandarin . I like to read books , newspapers and stories from the internet , where there are a lot of pages of information , entertainment and literature , but ( I think ) books are better than any other way of reading . The book that I 'm reading is named : `` Lestat the vampire `` , and the plot is about a new vampire who wants to know the secret of his immortality and he enjoys the pleasures of the life . Lestat is arrogant , and because of the secret , he toured many places ; I like it a lot because of the way it is narrated , the history is another attractive element that I enjoyed too and also because Lestat is handsome ( in the movie : D ) A lot of interesting TV shows are on the air in December . My video , which is set with HD , is able to record TV programs for 22 hours . I was so busy that I could n't enjoy or finish watching my recorded programs . ( T _ T ) . North Korea signs forward as a goalkeeper in the world cup ! He talked about the environmental with a loud voice . Sometimes a citizen would ask `` What are you really going to do ? `` Toronto ranks second best place for living in the world . Toronto is ranked second best place for living in the world . Could me give me some examples ? However , it 's somewhat difficult for me to learn because I must control both hands and legs individually . I 'm doing image rehearsal and practicing easy beats . You can guess how embarrassed I was . Or a golden driver ? Anyway , I remember a book I read when I was in junior high school . It turned out that Jack the ripper was actually Sherlock Holmes himself , who was so strongly addicted that he had delusions . Actually , I had an interview with TIM HORTONS . I applied for a position and interviewed this Wednesday . It 's ( very ) amazing . So I wonder if you could do me a favour of revise my poor level composition . Today , I made sentences of dialogs for learning interrogative sentence . So I wanted to get some student handbooks and exercise books . Where are the good spots in Singapore ? Before feeling the effects , you may tremble a bit already . That movie is produced by konica minolta , who is famous for camera , plinter etc . so I have n't had enough sleep recently . When I first saw thousands of Jizo at the Hase temple in Kamakura about 50 years ago ( wow such a long time ago ) , I felt unpleasant . good morning everybody ! last night my friend came to my house . this morning I made her breakfast . because she thought that I was able to cook ( good ) the time I spent with her was enjoyable . I want to ( `` wanna `` is slang ) say that I am extremely bored . It is a family comedy , and it is really funny ! ! It was a very happy party , and her speech for her parents made a deep impression on me . It is my first time to write on the Lang - 8 website . Fortunately Japanese people are allowed to drink outside , so of course we can also enjoy drinking under the Sakura trees `` Some things that a glacier might do when it retreat is instead of depositing till ( scraped up soil ) in the area , they might leave a big ice block . The ice block breaks off the glacier and as it melts it leaves a depression which can become a lake . `` When I listened to the song for the first time , about ten years ago , I was so impressed . The song was featured during the next few months on a heavy rotation . I experimented because I had no other plans today . I wasted 2 months on dissertation period . . . All I know is her english name ( not her real name ) and her major . Since the midterm is worth 30 % I do n't think I can pass the class with a poor score on this midterm . My mother was in a hospital for a week . I wonder if my students like that . From now on , I got to have snickers for a while . These days , I submit some resumes and application forms to companies and graduate schools . I like me as I am nowadays . I want to try to write some my thoughts but sadly , I recently have read nothing . Recently , I have not felt like studying any foreign language . I found some interesting words about learning foreign languages in a book I read yesterday . `` Learning a language is like laving water by a bamboo basket . `` ( it has many small holes ) , but if you keep learning patiently , you will got good at it . `` I hope I will be able to easily understand English DVDs without subtitles in the future . . . Do you have any birthday that you ca n't forget ? ? Well , I talked with some of my employees about the job description . He want to know more about Thai food so I need to prepare more ? ? ? about the food and practice cooking with my mum . . It is hard ( ? ) for me to understand English in business conversations when speaking with him . . Well , I will do everything as best I can . Including me , most of ( the ) Japanese is perhaps good at Listening and The number of patients of influenza around the world is increasing everyday . Thai people make a Krathong from a banana leaf and put flowers inside it . Then we put it in the river because we believe if we send our apologies down the river we will have good luck this year or something like that . But today I will not tell you more about the Krathong festival . His head hung from the bridge and his body floated in the river . He is not Thai but from some other country , maybe Germany . The police are investigating why he would kill himself or why someone would have killed him . I am thinking about going to Vancouver for one or two days . And my oral English can deal with some easy topics . What 's more , I am also starting to read the English novels such as `` The Red And The Black `` and so on . From such novels , I can learn some original sentences and the useful structure of them . Please correct any incorrect sentences that you find . Since , then I 've been a housewife for almost 4 years . I registered lang8 today . My purpose at lang8 is to learn English and make new friends , while learning about foreign cultures . He said to the firefighter 's wife `` He can not move his muscle . . . I slept after work because I was tired . Pronunciation is impossible . . . I 'm not sure how to improve my English pronunciation . Even though I 'm using this website to improve my English pronunciation , in the following passage I 've typed up , I always ca n't pronounce the same sounds properly . banished = `` sh `` That 's the reason why I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . As you know , everything is expensive in Japan but I found cheap clothes in a shop . Yes , it was a really lucky day ! ! Comfort foods are so warm and and familiar to me , especially Mom 's cooking , it 's a real blast from the past . In the winter time , the weather here is always badbecause its wet , cold , and windly . Opening my mailbox this morning , I found a refusal letter from Warwick University . It was the top choice among the five universities that I applied for , so it came at no surprise . I did realize this from the very beginning , and actually , I did n't long for admition at all , did I ? However , when the result finally came , why was I so disappointed ? A cell - phone has many benefits . First and foremost , average Japanese job applicants have studied English for around one year , but my visa was not working holiday , so I could go to a language school for only 3 months ; it was not enough . Some Japanese people also took part in the meeting , but most of them have been living in Singapore for a long time , and they can speak English very well . Yesterday , I went to Akita - Ken by Super Express , because my job is near Iwate and Akita . These have some beautiful illustrations . These books are closely related because good light novels are animated frequently . My older sister and I were talking in the hall . So , there are a lot of events . if you are interested in it or Japan , please comment . Cooooooooooooooongratulations ! ! ! ! ! ! ! : ) My Japanese friends , and European friends live in long distance places . Our 5 members met in front of DangGoGae station . It is too difficult to speak English . I think it 's a problem to read English books , articles , news and so on . `` The baby is cute ( kawaii ) . `` is an example that is easy to understand , but the word is also used for the elderly as positive adjective . at 900 am until 530pm . . . I am going to apply for this position . But I 've only been studying English for 8 months , so my English is very terrible ! I 've been playing the piano since I was 3 years old . This is Sarah 's daughter . Tokyo has a many restaurants where you can eat a delicious lunch . I 'll tell you a restaurant I recommend in Shibuya . It has very delicious gelatto and crepes . Many people in my company says `` it 's great ! `` I am skeptical about this , because he appears to be busy . The players explore the dungeon and return to the castle repeatedly . I work at the Welfare Department . The kitchen is always dirty because of the Taiwanese woman I live with . She does n't usually clean the kitchen after she 's been cooking in the kitchen . We always wash dishes and clean the kitchen . But she does n't clean the kitchen after using plates or the frying pan etc . So the other flatmates began to grow impatient . First , the only Japanese actor , `` Sanada `` , who played the captain of the spaceship , died first and unnaturally . Second , I saw a monster sneak into the spaceship and kill the crews in the latter half , but I do n't get why the predecessor captain could survive to turn into a monster and kill the new crew . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thought . then I had a lunch that consisted of INARI ZUSHI and mushroom salad . I was not tired because I took a nap . And my neck felt very good today . It 's SWALLOWTAIL BUTTERLFY . However my friend who are going together said that a natural disasterstrikeseverywhere and whenever we ca n't expect . Since I have the experience trapped in the elevater by blackout of thunder I am really nervous about these kind of things . I want to break my language barrier , which has stopped me from making new friends from different countries . Now I 'm learning English - watching English films and tv programmes . ( Sorry for my grammatical mistakes : ( - I speak and translate better than I write ) In china , the big birthday is a very important day in every chinese person 's life I have never seen heavy snows in my life , therefore I & nbsp ; am a little excited . I always have a little dream : I wanted to dress up as a monkey with a banana in my hand since October last year . I 'm not a nurse or a doctor , I 'm working at the reception desk every day . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowlede about your own country 's tradition because some people are interested in Japanese culture . It 's a Japanese traditional food eaten on New Year 's eve and it 's said that this custom was made in the middle of the Edo era . It relates to the reason we eat it on new year 's eve . Next I want to talk about the reason we eat the year - crossing buckwheat noodle . The second is the wish to cut off your troubles , and not carry them over to the new year . According to a website , which conducted an internet survey to 1000 people , about 80 percent of people ( in Japan ? ) eat the year - crossing buckwheat noodle . She did n't notice a small wall behind her , so she bumped the car 's rear - right side into the wall . I will be nervous ! ! Anyway I 'll try to make my account now ! ! Thanks for reading my concerns haha . . What is Christmas ? I do n't like Christmas , and most Japanese are not Christian . Why do they celebrate Christmas Day ? I think most Japanese young people are celebrating Christmas in order to have sex with their partners . They should re - name Christmas day , `` Japanese sex day . `` Everybody in the world already knows that all Japanese people are perverted , they will not be surprised at all . Stupid Japanese singers release Christmas songs in winter lol . What do foreigners in Japan think about this stupid habit ? Japan is just a follower and dog of Western countries , we do n't celebrate Chinese New Year at all . Japanese should stop this repulsive event unless they properly understand the meaning of Christmas . You know what , tonight , every couple is having sex in every sex hotel like monkeys lol . Are They Different ? That makes me frustrated . . . I would like to tell my thoughts fluently and not so stressful in English someday . I heard it would be warm today , so I left home in a long coat . It 's extremely surprising ! Graduating university , I worked as a chemist in Japan for a couple of years , but quit the job to study English . After that , I became obsessed with English because I met a lot of people who come from various countries and learnt different cultures , history , food , ways of thinking . Is that a natural response ? Since the earthquake occured and nuclear power plant halted , The Tokyo Electric Power Company , Inc has conducted scheduled power stoppage . Neon lights are turned off in the streets . My roommate told me that the pizzaria is the nearest washroom place . I went to the washroom But I hope this will make the Japanese national game develop . In my opinion , We have to face a lot of pressure from any part of our lives . Such as the challenge from our education as well as the high expectations from our parents . They are all on sky levels leaving me a sense of anxiety . The more anxious I get from the pressure , the more hard conditions we will absorb in . There is no way for me to escape . ( If I had known the water in a pool was actually shoulder - high , I would have tried three years ago . ) Anyway , I decided to try swimming and now is my favorite exercise . That woman that jostled with him looked at my face and suddenly said ooh yeah ! Oopppsss ! ! ! because , this is my first visit this website , and it is a little bit different than a korean website . . Her 2 - year - old son goes to a nursery 4 days a week . I wo n't climb up the mountain but I will go hiking in the grassland . I 'm looking forward to walking on the grassland . I created my account on lang - 8 Why Financial Disparity Can Affect Friendship ? Nowadays there is an argument about financial disparity and whether it will or will not affect friendship . Such as life style , life condition and personality . `` If you do n't think of something useful , nor do something useful , you will not be able to develop yourself . `` Everyday , I test products or study something . I think it 's useful , sometimes . I chat with my friends as well . The reason why I am interested in trade is because I believe that trade helps developing countries and poor people . I could not tell anyone and I was afraid my parents would worry about me or my friends would make fun of me . We usually go to shopping for sightseeing on weekend . Here in Wakayama , we ca n't live without a car , because the fee of public transportation is expensive . Is the sentence above grammatically correct ? There are special New Year 's meals , decorations ( both interior and exterior ) , visits to a shrine , visits to family members and relative 's houses , special games , and so on . I hope to improve my English more so that my English will no longer be an obstacle to talking with others . Today is Christmas , Shoppers use their own bags instead of getting plastic ones . They get interested in EV cars , solar panels , and CO2 free stuff . However , when it comes to buying foods such as fruits , vegetables , and whatever , you bet that they tend to choose fresh ones . If we consider the eco - friendly options , we should check the date on the package and choose the older stuff . Because the older ones keep aging until they are abondoned if people choose only fresh ones . Hello , everyone I 'm a little drunk , so I 'm worried if I can do my work normally tomorrow . I went to Woodstock tonight . It was nice to be there tonight in a familiar atmosphere . So , I do the same way and it tastes delicious ! ! But my first instinct is that I shoud still keep on going in my art career . But a few days ago , his complaints of 4 years ago were reported with the title , ' Jay for Defaming Korea . ' He just grumbled about his tough situation in harsh language that is usually used by many teenagers , but many Koreans are that he deceived us . The book store near my house went on bargain sale up to 50 % . He told us the pronunciation is very important in the learning process , but he also said we need n't worry about poor grammar because pretty much nobody will care about it when you are chatting in everyday fashion , except for when under a formal situation . The first time this happened I felt so sad I could n't say any words about that , and I was frightened by this action . Maybe I get angry but I do n't want be weak . Hope my English have big progress ~ ~ There was a person who knew me from before ( when ? ) and she called me while I was studying and asked me to be an assistant professor for her English center . I will take this opportunity ! Maybe if sometimes , at least once a year , the monsters from our nightmares would give us gifts . Even if they were modest but pleasant . Maybe it 's because I worked 8 nights ) And flowers are blossoming . If I can not keep watching them regularly , it can not help improve my English , so I watch them the way I described . I notice that my vocabulary expands by reading Englsih subtitles . So I am really looking forward to these events ^ ^ I 'm going to meet Mickey mouse and Minney mouse . Why can some people commit suicide in order to follow a famous actor or actress whose character they can not truly and wholly understand since they can only meet them through the TV ? Even though I like singing , everyone around me hates to hear it . If you find something wrong in my diary , please correct it . I always think the river is like the Ganges River in India . I am so happy but then , he is a Japanese . `` A cracked pot and a holeless lid `` in Japanese means `` Even if we have some faults , we can compensate for each other . `` I like this kind of idea . Priority seats are for elderly people , expectant mothers and disabled people ( people with impediments ) , but most people who use it are not any of these types of people . Most of the time , it is used by young people and healthy people who do n't need to sit there . And if a weak person gets on the train , sitting people do n't offer their seat , therefore they ignore weak and elderly people . They do n't need it , but elderly people want to sit there ! For this reason , I went to the photo studio to have my photo taken , which is needed for the / my student ID . There must be a / some reason why Internet shopping has developed as it has . In conclusion , after all , what is important for us to utilize Internet shopping is an adjustment when a certain problem has occurred . * Increase the ability of concentration . Yesterday , I bought a restaurant guide book `` Michelin Tokyo `` . I do n't have beautiful clothes , a wonderful car or a gorgeous girl friend . . I am a graduate student learning English education in primary school . Especially I am interested in cooperative learning in the English Education field . My future dream is to become a teacher in primary school and to be a researcher someday . When I rode my motorbike on narrow road , suddenly a girl crossed the road in front of me . I braked hard immediately . I am looking forward to meeting someone : ) I am a Chinese student and I live in the Anhui province . I study at Xuancheng Vocanical ( Vocational ? ) and Technical College . I love English very much . I watched a movie at the cinema with my friends . My daughter will go to Universal Studios Japan with her school on the second week in May . She dreamed about the amusement park almost every day . When we got out the attractions , I found that my umbrella was stolen . My next English speech is about that . Center entrance examination for university It rates as one of the greatest movies I have ever seen . Thrilling , exciting and shocking ! ! ! So I really appreciate my host mother . I know that there are many people in the world , and that they have many different personalities . Sometimes it amazes me when we can understand each other . I 'm really busy now . However the foreign countries may be not comfortable for your research , you will be able to see Japan from different point of view . `` I agree with his opinion . I think the thing missing from Japan is a sense of crisis . Although the number of people who eat whales has been decreasing in Japan , some people who lives in the specific areas still hunt whales to make living . Admittedly we are surrounded by a lot of scintillating gadgets such as video games , personal computers and whatnot . Though visitors can not copy anything in IE , I can copy everything in firefox by an extension . There are some people suggesting to encourage and praise students when they meet difficulty while some other people choose to blame them and sneer at them . I wish everyone would be friendly and love others , just as you expect to receive encouragement from others . It was hot and spicy ! Of course , sightseeing and food or even traditional events and so on are probably within my knowledge . . But , I 'm thinking that I 'll need to get enough rest so that I can prepare for the next challenge . . Right now , I do n't know what the future holds or what is in store but at the least I want to fulfill my tasks until the due date . Hi my nickname is Ryuki . Thank you . I wanted to run the air - conditioner because I wanted to be cooled off . but it will become more difficult to have time to learn than when we were students . I think that the student who recognizes the importance of their privilege can make use of their college life for sure . When I rode an elevator , I noticed that the elevator car had no door close button . For instance , I knew `` legislation `` , `` archeologist `` , but I did n't know It was simple enough to do . I ca n't help trying other combinations The opening sound is really familiar I am eager to go to a theater and watch it . ( How could a handsome boy grow up to an ugly man ? ) However I noticed him in the trailer ( maybe , full CG ? ) . It is difficult , there are a lot of new words , I can hardly understand It Also I was very impressed by other student 's topics such as Discrimination . others confidently ! ! The Colossal Squid 's eye is as large as Soccer ball . Recently I gained a little weight . Please give me advice ! I 've never been to the mainland of the States but I 've been to Hawaii over twenty years ago . That 's why you can find many signboards , menu of restaurants and so on which are written in Japanese language and many locals speak Japanese . Before today , I never tried to write a diary in English on my Blogger . I did n't have a way to find my mistakes and use correct sentences with this method . I think it is not good for ? to make international relations . To make a good relationship is so hard . After 1 cup of coffee I was alive . At this point I have almost forgot it all . The breads which is piping hot , fresh from the oven is delicious . I got pickpocketed A man bumped into me and walked away without saying anything . The pickpocket fell over and he was caught by several other people at the cafe . It was mostly cloudy in Palau , because it was still the rainy season , but UV was really strong ! Because we made our way on the bus , we were late . The trouble is that I am not sure about grammar , especially whether the verb tense and the form of words are correct . Marugame Seimen is a Japanese udon restaurant . Work was very hard because there were twice as many customers as usual , . I think it was because of summer vacation . We 're going to study `` Reaganomics `` next time . So I have a lot of trouble now . I found that the pronunciation is different from English . And I like to talk with foreigners in English . This morning , I woke up because of thunder sounds . A street was flooded and I was caught in a traffic jam . Anyway this weather was crazy for a few days . The weather forecaster says tomorrow and the day after tomorrow will be a thunderstorm . It reminds me of when I made it in Australia . They are Japanese and German . When I have French toast , I think of them . Hi every one ! I have moved to a new apartment and I 've got a personal room . Because when I wanna do anything I do n't need to worry about my family . I want to develop my English skills ! Thank you every one . Everyone of Korea has important four obligations . Its main star is Whoopi Goldberg . Every Sunday , I watch it on DVD and I repeat Whoopi 's phrases to practice English , Incidentally , the opposing team was much better than ours . I could n't believe my ears . It sucked . My apartment has one bedroom , a spacious kitchen , a bathroom and a nice balcony . I got a list of personal dates , and had a shock because most of them are from famous universities . So check my sentence , please . It was very difficult to search for a job because the economy in Japan is very bad right now . And you are very good at drawing pictures . I remember clearly my memory in Melbourne . Today I read a lot of journals and realized it 's actually all about practicing English . I could n't fall asleep recently , We will have not enough time to take care of our baby either . Although I want to play , I 'm fed up with this unenjoyable lifestyle . We bought a Christmas tree and accessories for it . Honestly , it truly works . I am currently studying English at SDA . I drove to an umbrella shop , got my kids ' umbrellas that had been repaired , and requested to have another umbrella repaired . Please help me with my English ! I would really appreciate it . Maybe I can even help you with your Chinese . As we grow up , we come to beware of consistency and not telling lies . If we do n't care about those things , it would have a bad impact on not only the people we talk to but also ourselves . What goes around comes around . I had an opportunity to go to Australia to study English for a few weeks when I was high school student . I : There 's a vacancy in my heart . Why you do n't just fill the fucking vacancy ? The reason why I ca n't fill the vacancy is because I am a coward . Why do n't we just keep silence and time might fill the vacancy when it passes it . Time might fill it with what ? Tomorrow , I want to come home earlier than today . Therefore we are looking for delicious restaurants , sweets shops and supermarkets etc , every weekend ! I woke up today very early and I did n't sleep very well at all ( ( ( I woke up after every hour at night . . . ( ( ( but it did n't prevent me from doing my morning jog ; ) ) ) so after a shower I feel refreshed and I do n't feel any tiredness ) ) ) Just like the life of Europe in the middle age . good morning . For the warm condition , there were lots of pollen . I like spring , but I hate pollen more than I like ( hate ? ) warm day . This title has the same name as a Beatles song . Though I 'm in my first year of college , the graduation is not as far away as we sometimes imagine . We drank some wine and some snake , I ordered a `` Strawberry Margarita `` . Before , I did n't know what a Strawberry Margarita was , but now , I understand . A `` Streawberry Margarita `` is a sweet - tasting cocktail . I like it . After that , I met some new friends , they are from Japan and Korea , they are friendly and kind , I like them . In the University , my favourite place to go is the Library . There are a lot of good books and music ( ? ? ) . The atmosphere is very nice , very quiet . You can read any book you want to . The library is very big and when you want to have a rest you can look out of the window . Everywhere around you can see the trees and hear the birds singing , and feel the wind blow on your face . Fantastic ! When I was a junior high school student , I was told to write a daily diary by my Japanese teacher . Now , however , I realize that it 's just their sense of humor and that they do n't mean anything bad by it . So , I say `` Sorry , I have only one and I ca n't find a replacement here . I brought the English pocket bible when I come to Tz . It looks like a pocket diary and so pretty . She was born in Poland which was controlled by Russia at that time . knowledge of our industry . Hi , I 'm a student in a Master 's Program for Product Design and have completed a product called Finger Dance . Finger Dance is a type of digital communication equipment for cold environments that is used for outdoor survival and rescue in ice disasters or snowstorms . I went to the spa ( open bath ) Sometimes I make notes when I study so as to remember importent information . No matter where you go , no matter who your ancestors were , what school or college you have attended , your best opportunity is in yourself . This is it ! ! So I closed yahoo messenger . I 'm notgoodat english but it 's fun for me to learn For example , in Japan it 's difficult to adjust to strangers . Japanase people have to go to foreign countries to solve such a domestic problem , and have to improve their English education to become interested in communication . Blue Monday Today is Monday . But I always feel tired and gloomy on Monday morning . And nuclear power plant problems have n't been solved yet . Next , I poured flour into the chocolate mix and stirred . The craftsmen built dragon boats to scare the fish and and turn them away . For me , I 'm dreaming of traveling to foreign countries , like Australia , Egypt , and especially European countries . I think all of you are the same as me , everyone has their own dream land where he ( she ) wants to go or he ( she ) likes aspects of this foreign country , so we choose the language of this country . People worked and students went to school on Saturdays . I want to be able to speak English to travel abroad , however I ca n't speak English well . And of course , Oda Nobunaga . They were true samurai . It is really similar to other songs . This is the first time that LDP lost their seats in last 50 years . It also the third semester of my college life . Is it a college student life ? I had already heard of AC / DC but it was the first time that I had listened to their music . The eclipse is coming tomorrow Anyway , do you like to go shopping in a crowded place ? ? There was a terrible earthquake and tsunami in West Japan . For example , airplanes , factories and cars scare me . I 've just finished `` The Shadow of the Wind . `` Actually it 's originally Spanish , but I chose an English translated version Now I have started `` The Namesake `` by Jhumpa Lahiri , which is really interesting so far . Anyways , Sofia came over to my house and we kept talking talking talking talking lol . Around 5 : 30 , we went to downtown to watch it ! ! At least in Kamloops . It 's a really tiny city , so there is no wonder why you happen to see your friends everywhere . lol ) This game was actually really tight , and there were a lot of fights today , lol . Some of the players were even bleeding lol . Strangely enough , most people looked forward to seeing it . So when it happened , lots of people were standing , screaming , & shouting lol In the end , the Blazers won ! ! I have no idea how she 's been studying Japanese for such a short period ! ! Go for it and keep it up sis . < 333 We are all missing you , and thinking of you dear ! ! I try to stay fit while not having any cigarettes They are really beautiful and fascinating . You can enjyo food and drinks while viewing Cherry trees . But I will definitely go tomorrow . I 'm happy to find this website because I 've wanted to improve my English , especially my skills in expressing my opinions and feelings properly in English . According to the company 's website , they were actually the first airline in the world to start a pickup service by car . makeup , hairset , dressing and aesthetic . Then , I will continue when I return to Japan . She said , the Netherlands are going to win , whereas I said the Japanese team will definitely win . . . The characters are very fashionable and interesting . When I was a child , I heard from my grandmother that there were many treasures under the ground at the end of a rainbow ! ! ! This is a Japanese legend ! ! ! What kind of legends about rainbows are there in your country ? ? Tomatoes originally grew in South America . The spanish brought them to Europe in the early 16th century . They first grew them because they were pretty . I normally spend time with her . movies , music , speeches , and so on . I 'm a student and I 'm trying to learn 3 languages at school : english , czech , and german . . Although I 'm in China , I still like Halloween . Is it fashionable ? I might speak english like a native someday . Frankly , I do n't want to go there today . Nevertheless I went . The Internet changes us The picture depicts a scene where everyone , women and men , young and old , surf online . They confine themselves in a separate room all day . I 'm looking foward to going there , but it means I wo n't be able to enter the prefecture tournament . In a florist 's I saw many beautiful cyclamens . I heard that they often eat century eggs in Chinese restaurants in the Philippines from my Filipino teacher a little while ago . Other people probably thought that I was mad , but I like that ! Today I gave an American guy a call through Skype , It is my frist time to use Skype and talk with a Chinesepod student . I have had lots of students in the last four years , but I teach them face to face , so it 's easy to know what they want to know and want to say . At the beginning , I was a little bit nervous but we keep the conversation going smoothly ! So I relieved . Every time when I actually sit down to read some books or do some lesson reviews , it just does n't work . Because I have purchased a new iMac PC . Guten Abend ! During my presentation I had a stomachache because I was being nervous . I was so happy and I became more confident ! ! In many stories , there must be an invisible red line that ties two strangers ' little fingers . I started writing this diary today . I doubted it when I saw the TV series because I always have to wait for several minutes when waiting for the green light . What 's more , I saw the long queue in the driving school I came to notice the line was a * * * * . It 's embarrassing yet I need n't worry to be caught in drunken driving . My happy days will end soon because I decided to get an internship . One of them is the malfunction of a gene that produces a protein that bridges between synapses . That 's why I 've studied English hard but I have n't developed speaking nor writing skills . Recently , I have had no time for myself . Sometimes it makes me tired . Without any interuptions . Alright , morons ! There are many other places to go . The tray and spoon , which I bought at Tagakushi in Shinshu , are made of bamboo . Looking for a Suitable Partner Yeah , finally , I opened my mouth . Although they refused me as some of them were not English native speakers or they had already had a partner . Although the rice was a little tough , it was so delicious . However , the chief of our speech section said that his performance was too passionate / exaggerated . He told me that , while Japanese judges tend to demand speakers to deliver thier speech emotionally ( ? ) , foreign judges want speakers to deliver their speech naturally . The chief said that his speech was too calm . That really impressed me , This thought crossed my mind . I have to admit though , I do like the taste of meat . I was really shocked that people can be that cruel . `` You have two choices , you can wait here until the electric power is restored , or you can finish now . Three of my friends came to my house to study English together as usual this morning . The street from Harajuku station of JR yamanotesen to Meiji street is called `` Takeshitadori `` . It is very fun for me because there are many kinds of cool shops , for example apparels , restaurants , sweets shops , nail shops and so on . `` Backpacker `` is a name for someone who loves to travel . So , when I found this site , I was pleased with it , registered right away and tried to write a lot . I do n't know if this method will lead to a high score in TOEIC immediately , but actually , I really enjoy studying and I sometimes think in English now even in daily life . She sent a message to me yesterday to make an appointment to study Thai and Chinese for when I travel with my friends in Kaoget . so this is why I am a lucky girl because I do n't pay money to study Chinese because I have Chinese friend already ye ye ! ! after that , we talked about how we plan to study Chinese and Thai . You know , it will be really easy to her to do . We departed to study on Tuesday and Wednesday and Sunday every week . it is really easy for her to do but not me because I do n't have any experience before . Thank you for reading . Hello , my wonderful friends I can see someone in the internet cafe right now who I think I might know . He / she ? is [ BLUE ] younger [ / BLUE then me . I think we had a small problem ? a long time ago . especially since I dont ' know what I would say . You may think it is funny going to a rock festival despite us being so old . At times like this , to avoid misinterpretation and unnecessary panic , the Venusians consulted their Martian / Venusian Phrase Dictionary . She then attempts to help him by asking questions or talking about what she thinks the problem is . I need you to ask me questions to assist me in discovering what is happening . `` At this point she proceeds to anger him by asking questions when he real wants to be left alone . `` It 's all right `` translated into Venusian means `` This is a problem but you are not to blame . You can abuse me and I can abuse you `` or she hears `` It 's all right this time , but remember it is your fault . Without this translation , when he says `` It 's no big deal `` she may hear `` You are making a big deal out of nothing . Without this translation , when he says `` It 's no problem `` she may hear `` This is not a problem . Sometimes what he is really saying is the opposite of what she hears . The best way to show our love , in my opinion , is to strengthen our ability to deal with things and give others a hand if they are in some trouble or need some help . They also recommend watching movies with English subtitles to understand every sentence ! Completely finished Apart from the good news , I had a bad one . Well , my IELTS score was so bad , that I could n't believe I had it . . . . . . . . . . . Good morning everyone . Even you can improve the language ( that ) you ' re studying Then , I can somehow understand what they say . This was a antiaircraft and was used in positions on a lot of ships . I was satisfied watching these things ! A salesman ? It is a little difficult for me , but I 'm trying to get better at . It will be good motivation for the author , I think . I asked her a little about her country . Jessie , I can feel a fireplace 's warmth and I can smell coffee in my mug when I listen to your music . My throat is so painful . The purpose is follows , Anyway , I will try to write my blog about my situation before departing and such , and about living in US . Please teach me a cool opening word . It all started fifteen years ago , when I was saving some money for a rainy day . He booked accommodation and a car . From Auckland to Rotorua it took about three and a half hours by car . Since I 've started , I have kept myself physically fit and maintained a healthy lifestyle . l like to eat Japanese food , though sometimes it is expensive ! I have an acute feeling that I have to study English . I try to study English a little bit . We were [ very / especially ] excited to watch Shizuka Arakawa win the gold medal in Torino ! I was very surprised when I heard the news . During the holidays , I have to finish my school work , essay and other important tasks which still are n't done . I 've got ta tell you something that 's been on my mind . We were instantly attracted to each other . Why do we make beautiful plans for the future when we are occupied and do not carry them out when we are free ? I think I would be at ease with written Japanese composition , but at a loss in English . My abdomen and left elbow hurt . He had nothing to grab onto and could hardly stand , but the middle - aged man on the priority seat just kept sitting . That middle - aged man looked at the old man and looked at me again . I thought his conscience was starting to bother him . I must work and perform my experiment tomorrow morning . However , I could not agree less . Based on the view that other training institutions ( such as vocational colleges ) are better suited to teach practical techniques , forcing universities to teach vocational courses would violate our freedom to choose our career path . Because universities are not the only places that can provide employment preparation courses , but are the only places providing academic education . Apparently , no other institution can replace universities ' ability to cultivate people in a particular academic field , and that is the main reason why people pay their tuition fees . Moreover , universities are not the best place for practical skilled trainings . There are thousands of institutions and employers who can provide the more up - to - date training that the workforce needs to perform their jobs . In sum , in comparison with universities , employers and other institutions are better - equipped and better - qualified to prepare people for the employment market . The graphic of that was drawn by the famous Japanese designer who did the animation for `` Evangelion `` . It 's Blues , which Clapton is always in , meets hip - hop rhythm style which is really comfortable enough for me to listen to it for about 10 years . Anyway , I am really looking forward to the new album . Advertisement says that the sound of that is more blues oriented including the old Robert Johnson 's songs . Hi wonderful people ! I know people from everywhere and they speak English because they have seen a lot of movies in their original language Some people define them as vegetables . Air conditioner , fan , Yesterday , I bought a new digital single - lens camera . This week I have a 6 - days trip and want to take pictures at night with better focus . Hearing the explanations , I thought I understood , I 'm not good at mechanical machines , so I concluded that it is very difficult to use new camera at this trip . I hope someone corrects these sentences . The first I heard about it was from an acquaintance in the US , who claimed to suffer from hearing loss . ( Consequently his senior and I did n't work out . Tomorrow is the last day of winter vacation . To begin with , I wrote my introductory . I like to watch dramas , especially Japanese dramas and Korean dramas . This is the first time that I wrote a diary in English ! The face I saw was one of my friends who I had n't seen for a couple of years . But it was great time to make new friends and I leaned some good expressions from the teacher . I am studying for my exams at the university 's cluster room , but I am freezing as the air conditioner is turned up very high . I ate spaghetti which I got take - out near my home yesterday . Fortunately , thanks to sufficient sleep and the spaghetti with plenty of garlic , she seemed to be restored . Monster Hunter Of course , this event is not for me . Godzilla went wild ! ! ! ! ! ! ! ! ! ! ! In Japan , today 's main topic is baseball player , Matsui 's play . His face is strange , his play is excellent ! of Matsui . But in japan , Ichiro ( marinars ) is more popular than Matsui ( ) Yankees Matui is not found [ ? ] , as far as I know . This time Matsui 's super play was surprising in Japan . Godzilla is a Japanese treasure . Japan 's gov spends less money on sports than other countries do . Otherwise , Japan will probably continue to lose its competitiveness . So I will go to bed early . She went out to the new sun room that is waiting for the material for the floor to finish then she found an old man . He walked into the uncompleted sun room so Siri said `` Who are you ? `` He did n't say anything for a while then Siri found that he had a name tag on his shirt then recognized the name . This house is nice but there are some extensions that need work and have parts done in an irregular or imperfect way that was recognized by my host family . What 's a Smoke Test ? When the bell rung , I thought I would be caught in the rain in on the way to back to my dormitory . Soon , my hair and clothes have been soaked and I feel cold . In there , I feel amused by my appearance , so once again I rush in the rain . [ Replace with lower sentence ] and , I find an umbrella above my head . A charming smile appears and says ' are you ok ? ' . On the way to the dormitory , she talks with me in a gentle way , and walks me into my dormitory , although she does n't live there . So many couples will choose MDH to celebrate their weddings . I came back from the battle field . I am still alive . I saw many black passports there , because recently the Japanese government has changed the design of Japanese passports from red to black . I hope they will go back to Japan ASAP , and work for the Japanese government and be rich Japanese forever . So when time was almost over , I had only finished around 85 % , so I had to randomly answer the rest of questions . I hope I get over 800 marks , but my result will probably be around 600 marks . It 's probably because this is my real language skill . Reading speed . My sock doll is not finished . Btw , he looks so yummy . . . . . These days I 'm studying English very intensely . yesterday , I finished writing my graduate thesis . now , I am in the bangkok airport waiting to board a flight to india . Each candidate comes out with his own political manifesto to make the country better . However , depending on who is elected , everything will go on to be different from the way it is now , which will be enough to affect other countries all over the world . Anyway , it is absolute that last night was an important day , so I thought that essentially everyone else was interested in the election . Well , it is partially true but in fact , not everyone did take notice of it . Tomorrow I have a Chemistry test 0 . o I studied hard but I think I 'll fail . The children are the happiest . They have long holiday and get more pocket money , new clothes and presents from their parents or relatives . We Chinese have an old tradition . So the traffic is now very difficult . It is the internet that has had the most powerful influence on me for the prevalence of computers in my life . until the new news hit me . I think I am not going anywhere so I 'll clean my room and I 'll make / cook something that I want to eat when I get hungry . I 'm in the Travel Tourism Course . I do n't work at a part time job , but I do want to work at JR Toukai in the future . The toughest part of my school work is overseas geography . New digital camera Today , I 'd like to write about a new digital camera . What do you think of trends in new digital cameras ? So I wondered : In Japan , we eat ' ozoni ' , which means mixed ingredients in soup , as a traditional custom during the New Year week . ^ ^ ; The New Year is supposed to be a holiday , but it 's not a holiday for me . For that , I should study grammar , words and phrases . all of the world know that the chinese school uniform is too ugly . For the last statistics of these votes , the winner will have the most votes for the type of school uniform . The reason we went to wrong place was the pronunciation of the place we wanted to go to and the place we went to were the same if you pronounce it in Japanese . We Japanese people are basically covered by health insurance , Recently , we have been running up a big medical bill in Japan , into practice to reduce medical expense . This counselling is not compulsory . In China students learn English from middle school to college , but , there are not many students who can learn English well . First our mindset is wrong . Some of them think that learnning English is a burden . To pass the exam is their only purpose . Second , the big circumstance is so bad . It is very difficult for you to find people to communicate with you in English . Someone may think if one person got a high mark , his or herEnglish is very good . I do not think so . We all know that language is a tool that we can use to communicate with others . The rapidity of memorization is fastening . I went shopping at 10 : 00 this morning , Fortunately , South korea has developed accommodations called Jjim - jil - bang . But today , goods for the Japanese New Year were on display . Recently , I often thought that I would want to study English again . I went to an English - speaking country and was been there for 7 years . When I was overseas , I did n't watch English news channels or movies , I could not understand the popular programs , as I have no idea about their culture background . I want to listen to , speak , write , and read English better than I do now . I 'm required to learn formal words rather than informal . In my case , I 'm exposed to formal situations most often . During class or school , I would hardly have a chance to use slang . But I am not a caterpillar , so I give up . Since the bowl has become empty , finally you can eat an ordinary meal . I never say `` Do n't worry . its going to be alright `` to make them relax because I am a teacher . Can you have a recommend a drama ? The night safari and taxi companies are friends or couples . I am a brave man , but when we took a tram there , I sat beside a fat American couple because they possibly can not run faster than me . Probably they ca n't jump over it . If they do so , does the safari pay a compensation to us ? So we had to take a taxi , and it was already over 00 : 00 a . m . . The taxi fare cost DOUBLE . I think that the night safari and all taxi companies are friends or couples . I applied for an open position at my company . There is a botanical garden there famous for wisterias . However , the wisterias are not in full bloom . I enjoyed tbeautifull flowers and pleasant smells . Nevertheless , the difference this time is that I only grilled two wings and a leg . I looked at my phone and received a message from my manicurist . When you taste strawberry cake , your mouth and brain will immediately be filled with sweets . My mum lives in Shimoda City , at the head of the Izu peninsula . I had a bad headache yesterday , so I wanted to leave my office on time today , but I could n't . I was very disappointed and felt sorry because I was supposed to give the data to two colleagues but I had to keep them waiting . What should I do ? Firstly , since my previous laptop wore out within a very short period of time , I am looking to buy a laptop which is more durable and has a guarantee for at least two years . First , I 'd like to introduce myself . It was based onthe true story of someone 's life , and we changed some part of the story . I noticed there were some problems with my leg Nobody could explain why it happened . And so I guess some birds made a noise or hiccuped and dropped them . I decided not to doubt it . I miss you like as a friend who cooks with me , watches some movie and cries , smokes a cigarette and talks , talks about life or silly things . The last time I saw you I could n't hide that I wanted to cry because my confidence has gone . I hope air heaters will become unnecessary . but statistics is very difficult . I am studying English at a university class now . Yesterday was the summer solstice . Though it 's after midnight now , 3 : 30am , maximum temperature is 30 degrees celsius . No work , no rush hour , no clock alarm . . . . . . I was satisfied even though I hoped I could watch one more game with them in the next stage . Today ( yesterday actually ) I met friends and made plans to travel this week . But I 'm looking forward to do it . By the way I want to know the difference between personal and private . The weather forecast has promised that the weather will be fine ! It is always beautiful and at this moment , you can find many different champions . Because it was getting late , we promised to see each other tomorrow . How to avoid the scorching world . as if a storm would arrive on the spot . There is a certain day I can not concentrate doing anything no matter what , frustrates me , and today is the day I guess . I am dog - tired and all of a sudden , I got a brain wave that may would take away my agony of the hot world , which technically has a big global warming issue . The fresh idea is going into a huge refrigerator that is for tons of chickens , saying farewell to the world for a while . Because a cup of beer I had was $ 13 dollars ! ! ! ! ! ! The problem is my listening for English ! ! ! I 'm going to meet Crysti , my language exchange partner , at Ginza after work . So , could you help my studying English ? `` Kaiten - zushi `` restaurants have rotating sushi on a conveyor belt , and you can help yourself to anything on the conveyor belt . Maybe that is because she is working now , and I am still a poor student , but it does not mean that I do n't want to spend any money on her or other people . I know vendors do n't wash vegetables so the food is not very hygenic , and they are so expensive , but the festive mood always make me want to buy ! `` I will go to Australia `` , one girl said . However , if I do n't have enough money then I will go to work for one year . By the way , I learned a word pronunciation . Australia and New Zealand 's English are close to England accent , is it ? Yesterday I learned that there are UNIQLO shops in the Philippines . I did n't think that UNIQLO shops would be in the Philippines . I saw a situation in which many adult waited for the elevator to come . I checked my self as I listened . I will try to listen to it and pray to solve my situation . In my opinion , there are many changes in America 's way of thinking . They want to change and achieve their hopes by voting for Obama . , I had also hoped for Obama to be president , and I am looking forward to watching the inauguration speech on TV . I have no doubt tomorrow will be a historical event . I learned about this site by a postal site . I 'm too tired of typing . I should be a discreet person . It 's origin is a mystery novel called `` Kokuhaku `` written by Kanae Minato . It got a book store award in 2009 . first , I paid the full money . when I will get MCAS finally , I will be so happy . Hello everyone . We have to admit that we are soft and cry more easily , because we are more emotional than men . This my point of view , and I am ready to defend it . Now it 's your turn to say whether women can be leaders or not , but do n't forget to justify your point of view . I 'm studying English because I have a test tomorrow . The library is a very warm and silent place that I can efficiently do my work . First of all , I said that Japan 's Prime Minister , Hatoyama , is a liar because he changed his mind and postponed the deadline of resolving the base relocation issue in Okinawa . It on Monday morning so before working , I have to get up earlier than usual . My life is not brilliant like yours , It 's really interesting when you think of this , is n't it ? There are some facilities in the final station . There is a souvenir shop , a restaurant , and even a mini theater . Learning something is very exhausting and time consuming . It 's been a long time since I 've written a journal . It is said that Japanese people are strict about time . Their colour and design are very attractive to me . My dream is go to NYC . So , I 've decided that I will write on this site two times a day at least until I go back to school . Then , I guess that I do n't have much time for writing , but I 'll still be back here . I took my parents to the best restaurant in the neighboring town that afternoon because it was Respect - for - the - Aged Day in Japan yesterday . I 'm not married , and I 'm living alone in a dormitory . He live in thenorthern part of Tokyo . So now , I am a little bit disappointed . And after reading it , we had to explain and summarize it . Anyway , I had to follow her explanations and summerization about it . I had wanted to say ` ` Because I am a learner ` ` . I just kept silent . I am feeling nervous . lol And I feel exhausted . I do n't know why , but I drank 2 cups of coffee at 4 AM . When a man went up in the tree and hit branches with a stick , persimmons began to drop one after another . I was very shock . lol I was very worried however there were no people around the because around there were very rural places . so if you are ok , add me as your friend , please ^ ^ I 'm afraid that my English is all wrong , but I think that I have to keep enough courage for this lesson . So I decided to learn English . Unfortunately , I never learned either because I was lazy . This time is different . Maybe I can do it . he has already left Korea and the other friend is going to South Africa next month . The main training is running . Actually , I had loved a man who came from an other country as an exchanging student . I 've been in Oxford in the UK for 9 monthes , and came back to Japan last month . I want to keep improving my English even though I 'm in Japan , so I joined Lang - 8 . When I listened to the music , I understood that what I studied was useful . However , when we eat bread , we prefer cafe au lait , milk or coffee . What do we think about our future , where to go and what to say ? It 's ridiculous for us to be mumbling about our world where we 're living . My aunt went with me when I got my haircut . Both of them are the same company , are n't they ? I was interested in the article because it said the Oxford English Dictionary decided to introduce FYI in its latest edition . I am now learning English , but I found it is difficult to master the using custom of English . He wanted to say that I 've often told reasonable ( good ) excuses . I have managed to communicate with foreigners in English . in daily life . I have wanted to know the level of my English objectively . I asked him the reason why he would take theTOEIC test . He wants to know his English level to make more progress in his English . Because I ' m a good excuser basically . Would you correct this script leaving some comment about my writing , pronunciation or the content of speech ? My self introduction : I 'm a University student . They conversed with each other in English , I was desperate to follow along . I decided to struggle studying English more , for opportunities when foreign customers visit . Tomorrow I 'll try to tweet more often . What is a satisfactory standard of English in AS ? well , I got so little time to study tough , with work hours from 9 am to 7 pm . . . The political sense of Obama is bad . as standard - because standard itself is uncertain , general , so it ca n't be used itself with an article . ( see comment ) We only can talk at work because we met together at work . Yeah . thank you guys for reading this diary again ~ ^ _ ^ I am 21 years old and work at a radio station . I 'm still a University student and my major is mass communication . As for me , I use all of these websites , and I think each of them is great if you exploit their strengths . My mother is an excellent cook . I do n't like to cook but today I 'm going to help her because it 's a lot of work for only one person . I always enjoy staying with my mother because she is very sympathetic and friendly . We spend lots of time talking about our lives . Our conversations are interesting , and I always learn a lot from them . It was a beautiful view from Tokyo Tower . I love to go up to Tokyo Tower , so I went there . I kept looking at Tokyo Tower from the outside . The view was still beautiful . Then , I headed to Shinjuku and had supper with my friends . Now he is sick , because of being too excited . I 've enjoined those things . I try to write in English daily . Furthermore , some characters also died from that . So I probably ca n't get home for a while . I like the that moment . Recently , I bought an iPad . Last week I was watching a survey on a BBC TV program that was being broadcast while I was about to eat . Suddenly the results showed something I did n't expect : only one in 10000 people had achieved their life - long goals . My pieces of work were admired by my teachers and were the cause of envy of many of my classmates and other colleagues . There was even a time when one of the most respected professors I had , Mr Smith , commented that my work , `` resembled that of the geniuses of the Renaissance period `` . That 's why I joined a group of alternative artists in my city and since then , I have been working on utterly different projects which range from traditional painting with a small brush to extreme air body painting or even crazier stuff . Despite the weather , I still went there . I have class this morning so I have to got up early this morning . . . . Staying up late was so tiring for me . I 'm trying to continue writing my English diary . I did n't want to be like that and I felt kind of fearful because they looked just like a disposable wipe . As you might know , Playing golf in Japan is pricey . I had a phone interview for graduate school . I am waiting for the result now , but it will probably be bad news . . . I forgot almost everything I wrote . In my thesis , I predicted the oil price was jumping due to speculation by investors and that this bubble would pop . What I predicted was what exactly happened after one year . Therefore , Oil became a target for investors at Wall street . In the stock market , it does not usually happen , but oil fluctuates violently . So investors who want to take advantage of this market are never ceasing . But Oil is absolutely necessary for our life . I do n't know when alternative energy will be practical . So oil has to be steadily supplied and should not be dealt with like loans and other financial products . I may do exercise or play tennis in the gym every day . These last few days I have seen almost every Olympic game featuring Taiwanese players . In good weather like this , I want to meet friends and sit by a fire and enjoy nature . I need a TNA down jacket as well to keep my body warm outside in the freezing world . Even if the main charactrers are autistic , they are the special people whom I 've never seen before . What is the difference between `` a piece of paper `` and `` a sheet of paper `` ? Although we talked awkwardly in the beginning , after an hour we started to open up . I felt at ease that my students opened up , Before the meeting , I went to the Ueno Park , where is famous Cherry Blossom tree . This was my first time being challenged by the TOEIC test . I am not good at memorizing English idioms and expressions , because they have different sentences from Japanese , so I can not imagine the background of the words . For example , the expression ' What in the world ' relates to the feeling of surprise , correct ? Practice practice practice ! I think I will meet so many difficulties about communicating with foreign teachers . At 5 o ' clock , I go to learn baking cakes . I wonder why gouaches are n't as much popular as watercolors . While driving back to their ( T and L ) residence , we happened to talk about curse words because they were very sinful to Catholics . A new android app is available now . Consequense : We decided to go for a trip as a consequense of the long discussion . influence : I had great influence from the book he wrote . But since the day I left elementary school and entered high school , there was always a certain matter that kept bugging me : `` Why did I even choose entrepreneurship , as my future course ? `` ( or ) sore ha onaji tokoro ni aru Today I begin my diary . But , that was 32 years ago , I did not speak English then . I did n't really feel anything but this past one day , I felt a little sad . This weekend , I am going to take a test ' Eiken ' I am studying English very hard ! ! ! I have to submit my contents by next Monday . for example , someone who is working in Samsung has intelligent qualifications and Samsung invents high quality products . In the case of sportsmen , from middle school , they exhaust all their energy . In conclusion , we have many human resources , and we tend to persue the first place and ignore second and third place . In conclusion , living in Korea is so difficult . in our small county , there are many super koreans in baseball , in figure skating , in soccer and in academia . I was very nervous because I have never played dancing . I would like to improve my English and learn other languages , Chinese , Spanish etc . for business use . My avorite things are FC . I 'm trying to study English by listening to a song over and over ( Is there any difference between `` over and over `` and `` time after time `` ? ) . I am on winter vacation . Unfortunately , I did n't start studying English at the beginning of winter vacation . Instead , I always watched movies and dramas . But , it is so addicting , and I have studied English since I was 12 ( so I have studied it for 6 years ! ) , but I ca n't speak English very well . I also started studying German this Spring . Your prompt reply would be highly appreciated . My English is not very good , especially in writing . After working , I stopped at the shopping center near the station . I bought a book and looked around . Then I was worn out because of work , I felt better . Sweets make me happy . so I 've really treasured the time spent with him these past few days . Always is a pleasure to read your guidebooks about any place in the world , specially about towns I know . Unfortunately I have found some mistakes in the information about parking in the city center . Also the Museum of Natural History is closed , due to some vandals who broke some skeletons last week . I make the most of the freedom during vacation in the noon by watching Korean video dramas . I look forward to watching it everyday except for the weekends . Yesterday , however I could n't watch it because I worked on my thesis in the library . In addition , my home 's video recorder has trouble now , so I could n't use it . When the drama started , I have felt a sense of `` dejavu `` ! Please go out and buy it at the nearest shop ' I could n't believe what she said and I asked her how could I go out in such a storm . She was an optimistic person , but could I go to the shop safely and buy the miso paste ? I am too anxious to make many good friends who come from different countries for knowing different cultures . It was really embarrassing . There are still many silly things I did n't mention , because it is very embarrassing . The topic made their conversation restart and they ended up staying there another hour . I think I should try not to eat at McDonalds to stay healthy . I have been insisting on buying a lottery ticket since the beginning of this year . Because in Japan they think New year 's is an important thing . Budget compilation Especially , ' ' Christmas ' ' remains in the impression . When ' ' TOM & JERRY ' ' was revived by You - Tube , ' ' Christmas ' ' was found . During today 's lesson , I felt that foreigners have similar characteristics . It 's true . This show was on my favorite channel . I was scolded by the teacher for my cellular or cell phone call during the class of mathematics . I know it 's amazing , but it 's true . So , please tell me what to do because I do n't know what to prepare . And could you please tell me a good place for food in Guam . Many of the younger generation much study very hard to succeed . I got plane tickets for a New York trip next summer so I went to a travel agency yesterday . I paid a deposit of thirty thousand yen . Something new and good is likely to happen there , Today I was very unlucky . And in biology class I did n't finish my homework , so my teacher made me go to the lunch room . Sometimes you can see some coloured fish . Her songs are awesome , right ? Perhaps I should be happy for it because it is an evidence of my last four years of hard work . Maybe I am a sensible boy but I really treasure the friendship between us very much . The woman ( Aki , Autumn ) waits for her ex boyfriend for 2 years , but falls in love with a new man ( Haru , Spring ) . Making Tempura now I 'm making tempura now . I do n't like using lots of oil for cooking , because my kitchen becomes oily , but my mother - in - law taught me how to make tempura and if I did n't do it by myself , she 'd get angry . That 's why I 'm making tempura today ! ! Why doesn ' tCASIO put the temperature sensor on the top of the watch ? People hung fish kites from their rooftops , and wished for their children 's health and success . I do n't understand the content of song lyrics . I know that many people say the same thing , but I really am a beginner . I started studying English in March . I hope to take a trip to Switzerland next year because I want to visit a museum at Bern . I have applied for schools in NY , LA , SF , San Diego and Seattle . Today , I went to a sports gym with my colleague . Of course , if you want , I would like to do that kind of thing for you I . e . Reading a japanese book aloud , slowly . A friend of mine recommended this web site yesterday . If this factory is not managed very effectively and efficiently according to specific rules , it 's prone to polluting the local fresh air and water , and an ideal community which should be quiet . Secondly , to make sure the shipping of materials and products and the employees ' communting are more convenient , the local roads will have to be rebuilt and broadened , resulting in improved public transportaion . Why did Japanese film `` Depertures `` get to win the Academy for best foreign film ? In severe cases , young people commit suicide because they ca n't bear the stress . Tragedies happen everyday in the current greatly changing society . We can dig into different aspects of this issue , including cultural factors , Chinese history , as well as national characteristics . First of all , regarding what Chinese believe in , I would say every Chinese believes in Confucianism . Secondly , in the aspect of history , China has gone through a difficult time throughout its 5000 - year history , and during the past decades , the great leap forward has created both opportunities and failures such as many dropouts in the last generation . For example , international airports made it easier for foreign people to come to Japan . For instance CNN on YouTube or something like that . For me , no I should say for foreigners , it 's quite convenient to listen to these programs . Generally speaking , in Japan people think that topics like politics , religion , private diseases , etc are taboo . But I do n't think it is good to talk loudly and emotionally saying how ridiculous your opinion is or how stupid you believe some team is . Last week I went to see Alice in Wonderland . He is really a genius , I think . It is amazing that I was so much impressed at once just by listening to this piece of music . I am about to graduate . At first I wanted teaching as my career , but with more and more positions appearing , I 'm becoming aware that I was stupid to ignore lots of jobs except teaching . I loved it when I watched it a few years ago in Hungarian . Also , his explanations are easy to understand . My best friend said ' you should just ask him , and do n't talk about your dogs . I remember when I talked about my dogs to the doctor , he almost yawned , and I was a little bit sad . By the way , my best friend got divorced recently , and now she is also interested in another man . However , the man 's attitude towards her are getting down . So far , you have not shown any successful results . `` `` Why do [ es ] everyone talk about the abandonment of a nuclear power plant , though they do n't talk about the abandonment of automotives ? `` `` Automotives kill many people by accident , however a nuclear power plant has n't kill anyone yet . `` I was happy to pet him . Unfortunately , there was an accident , he fell into a lake and died . I remembered that I took it We had a one - centimetre snowfall . I made muffins as I watched the snow . Airplane schedules are always disrupted on snowy days . The picture is of my muffins . I have n't packed for the / my trip yet . First of all , Obama 's speech was effective , strong and scary to me . This friend likes sketching like me . Finally , I watched `` Valkyrie `` ( actually I wanted to watch `` The day the Earth stood still `` , but it had not come up yet . to meet my favorite friends . I just learned one thing from an article I read today , that was if you keep doing one thing for 4 weeks , it would become or would change your habit . I wanna make a little bit of progress everyday in order to let studying english be one of my habits . First , I 'll list the key words I 've heard today in a conversation that I do n't use often , or usually use in a wrong way . overhaul ( totally change ) , executive producer ( movie producer ) , illustration ( make an example to prove ) , significant ( extraordinary ) , nifty ( nice ) , municipality ( Beijing municipality ) , forbidden city , terracotta warriors , potala palace ( tibet ) girls : beautiful , gorgeous , sexy , fabulous , I was so excited to see it ! ! Today one of my co - workers was absent . I think it 's time to read a grammar book again . > _ < Yuck ! ! ! I went to a glass atelier and try to glass - working with ten friends last Sunday . He invited me his house and we had lunch together . Pancakes , spaketti , beef and chicken . And I had a discount coupon for Lotteria ( a Korean Hamburger chain ) . After we finished our lunch , we decided to go to eat some more . I suffer from not understanding what he says because he talks so fast and my lack of vocabulary . Now , I am studying about the present perfect and past perfect tenses . Since different people from different ethnic groups such as Persian , Bakhtiari , Aramaean , Turkish , Arab live in this province , you can find diverse Persian cultures and traditions in different parts of Isfahan . When he is good , his color is lighter and when he feels bad , his belly become a black stripe pattern . I want to learn many things about this kind of dragon to take care of him properly . they are noodles and fried eggs , which are so easy to make . some eggs and noodle soup mix or broth this way , it tastes very fresh and better than the plain taste . just waiting for good news from me . The textbook 's title is `` Totally True Book 3 `` . Both days were very boring . I 'm looking forward to it . I have n't studied for my science quiz tomorrow = ( I always procrastinate the things I find difficult . I 'll write a small review when I receive it . But honestly , I do n't have good memories there . These instruments are guitar , drum , base , keyboard , and others ! I was impressed ! ! ! ! ! Day 96 : Too straightforward . Today one of the unties said to me that I am too straightforward . As I really wanted to have Christmas doughnuts , I dived right in . I suppose that Christmas here in Japan is very commercial . Many food shops launch Christmas products . Did a typhoon hit Hamamatsu ! ! ? So I was grateful for his suggestion . Summer Vacation We could watch the lions , horses , birds , etc . Because of it , I was often scolded by my mother who then said , ' ' study hard , or I 'll dump it ! / throw it away ! Now my interests have moved from playing games to playing music and studying foreign languages . Anyway , I will fulfill my big dream in 2010 ! I started a diary on lang - 8 . Because I view English sites , but I do n't understand them . I will try to write in my diary in English . and I 'm writing a diary entry to waste time until I 'm ready to go out . May is Begining . May is begining today . He seems to be busy , he asked me to confirm the appointment . I tried to call him later in the afternoon . But I failed to make it ! Someday If I visit France , the birth place of Macaron , I want to eat it . Please recommend your favorite : ) I find it difficult to express my opinion , , , At first I would like to thank for every who checked my article . Every day I have to study Japanese and do a part - time job too . Although I am Asian , the Japanese words mean the same in Chiense in many sistuations . I am so unhappy with my roommate . I think we go to study abroad as a college students , so we must do our best in our studying . I heard about the place of the Russia nuclear reactor accident place is called Chernobyl . So I must improve myself such as Japanese English and confidence . Besides , we have school lunch in such a terrible classroom . Anyway , I guess I was suspected by an old man while I was running in a nearby park today ! ! : < I spent time researching Amakudari . . I may keep studying by myself , but I need some opportunities to practice my English . I 'm bad at grammar and spelling . My room is on the first floor , so he set the ladder up and escalated . My colleagues bought a bin of milk , and we chugged them down . In Japan , people who want to get a job need not only some skills or a good ability to communicate with co - workers , but also , good academic backgrounds . I really appreciate your help : ) Today my teacher took me and my friends to Spectum in his car . Spectum is the biggest shopping mall in Irvine ( maybe ) . I ( need subject ) think that there 's no better way to improve my Japanese skill than making Japanese friends , I 'm recently tried ( past tense ) to make japanese friends on the net and got a few . Please tell me how to use other languages . Although she said it was not serious , My homestay father is a big fan of Chinese kung fu and so in love with Chinese language , he really wants to learn Chinese . So I want have a place for learning English . However in my case I got transferred here regardless of my desire . They learned Japanese , mathematics , and social studies from 9 : 00 to 15 : 00 . We ate the Korean food at komart . Some language learners would like to discuss / talk about the different aspects of languages , I really enjoy that ! ! ! Now andthen , I always recall the wonderful times we havewhen we get together . ( Sometimes I do , tempted by the tasty look and flavors ? ! ! ) Cars ca n't come near the fireworks venue , people looked at firework on the street . But the fireworks were very beautiful ! ! have you ever experienced something like this ? The quail eggs were sold in 4 packs for 1000 won . I have never been abroad , so I have n't experienced this lol It forms the boarder between Thailand and Laos , and is the gateway to Vientiane , the capital of Laos . This weekend I 'm going to take a train and then go to Vientiane . When I went into the travel agent 's office , a local Thai woman attended to me and she was really gorgeous . Although it 's boring when we are waiting , I believe that when we see the picture in the magazine will find out that it was all worth it . We enjoyed and felt happy ^ ^ If you choose egg you can order egg udon or egg soba . I went to kaiten - zushi for dinner yesterday . So I can eat those without thinking which dish is cheap or expensive . It was ivory , long sleeves , and high - necked . Study english - steadily ( regularly ) studying is very difficult . I know this road will be very hard for me - a girl who are not a native . Besides , I have 7 - 8 lessons at school every day except Saturday as on Saturday I have 6 lessons which are over at half past 1 p . m . When my groupmates decided when the courses would start on Saturday I asked to begin them after 2 p . m . But nobody supported me even those who did n't care when to start . Today is Monday in Japan . Is it because I am a typical Japanese or am a coward ? ? Books can enable a child to develop his or her own reading skills and power of concentration . First , by touching letters in books , said child can develop reading skills . Japan is a mountainous country . 3 / 4 of the total area are mountains or hills ! I had eaten too many unhealthy foods for a semester , and even though I only ate a little each day when I lived in the city of my school , I still became fat . Japan has had a tough experience since the earthquake and tsunami in March this year . When I see the people 's attitude toward saving electricity , It always reminds me about the nature of the Japanese . the first picture is of `` kinako mochi `` I 'm happy that my wish was fulfilled ! My job keeps me very busy , so I do n't have enough time to learn English . The next challenge is one any flash developer might come up with : Associating visual images with sound . Moreover , traveling alone , will bring the traveler unexpected surprises , such as making a new friend or enjoying the different scenery . Second , I like to make new friends and learn more things about the place I am traveling to . I 'm a university student . I often see a man selling fruits and flowers on the Safety Island when I drive to school . watashi wa pera pera to nihongo wo hanashitai . Now , his English is not perfect , but he can communicate with native English speakers . Mobile phones are getting fashionable recently , there are many colors and many design . And they have a lot of functions . For example : you can use it to listen to music , to take pictures , to use the internet , to arrange your schedule , to watch TV . . . I do n't need too many functions . These days , most people have one . Sometimes it is too expensive . . . We should be careful when using cell phones . I realized that now I 'm not living ! Hello everyone : ) I had to picked my school timetable up yesterday for my graduate school history classes . I picked 4 classes . Advanced Latin is one of them . It looks like I am the only one signed up for the class right now . He drove all the way to the station advertising Kobe beef . My favorite thing is listening rock music . But a serious disease infected him suddenly . We chose the rings and went to the hamburger restaurant . I take bellydancing lessons once a week . My bellydancing teacher is Korean . Reading assignment At that moment I felt that he was a very quiet and lonely person , It seemed that he struggled against difficulties by himself just like the song said . Hi , I ca n't speak in english ! For practice today I am going tell one story . Its name is `` The Girl Who Does Not Speak In English . `` This story has no plot . This story has one girl who found this page for learning english , and this is the beginning . I hope the end is good . : ) For that I need your help . I gathered the application forms and sent them to the bread company . We study in different places . Texas Burger For lunch , ate a hamburger at McDonald 's . At my university , there is an anime society at which people who love Japanese anime get together and hold events like quiz shows . I will join it as soon as possible . I compared both pictures , and I thought the picture of the digital card was very beautiful . I tried a slot machine , but I did not win as expected . Though they look fierce , they are charming . Secondly , it is easy to raise cats . I think `` Harry Potter and the Philosopher 's Stone `` is the movie that I have seen most often ! The day the earth became my home . . . 1 Singapore and Malaysia Now humans control this world , so we take care of only ourselves . If insects get a sovereignty of managing this world , they will kill us in turn . It is a bit uncomfortable to live with someone and not talk to the person . My favorite artist - - - > Allison was eliminated . OMG poor Allison ! But recently , my improvment in English has become slower . Just think about it , I am always using and depending on words which I already learned how to use . I hope that I am already an intermediate English speaker , and when we reach an intermediate level , our language skills start getting stuck , because we start depending on words and expressions which we have learned in the past . This years motto is `` I talk without hesitation ! ! `` After that we heard / found out that it had been a weak earthquake . It was n't strong enough to damage anything but reminded me of the tragedy in Haiti . Today , this task especially suffered me . I am very glad to meet all of you here . The dictionary definition of communication is the process by which people exchange information or express their thoughts and feelings . A case in point is Ebenezer Scrooge in the story of `` A Christmas Carol `` . Call it close or distant , it is happiness when there are people who you can communicate with . `` Is n't it cold ? `` I ask . That 's when having someone there to reply `` Yes , it 's really getting cold , `` provides the warmth - - Machi Tawara . I was surprised . I had a problem . And so it is possible to change something kindly and make it kinder than it is now . usually I do n't have the habbit of writting dairies on the Internet . . . I am trying to find a sentence to enable me to ask you some questions , but I ca n't find it so no problem , I can read it by my self again . Recently , I went to bed at sunrise In general , most beginner or veteran doctors are stubborn and a little strange . ( It 's not only doctors but also the old . ) But they are that sort of type of person . I enjoy downloading Podcasts ? of CNN News and watching them . Especially , I like the broadcasts of Anderson Cooper 360 degrees . The chaotic situation in Haiti was beyond description . So many people died and still the bodies were under rubble and on streets . I watched a TV program , which is called `` Cool Japan `` . Things that interests me . If you are interested in Japanese culture , I 'll recommend you to watch this TV program . I 'm sure it will help you to open your horizon . `` I made a conscious effort to lose weight after I read articles citing me as the fat chick in Hollywood . Will this sentence be able to convey my thankful feelings to the teacher ? I 'll show you three museums , Teshima Museum in Japan , Jewish Museum in Germany , and Guggenheim Museum in Bilbao , Spain . You might notice that the water drop moves slowly on the slightly inclined floor . This architecture is , to recap , the space in which you can feel the existance of nature and yourselve . Yesterday I went to a movie theater to see `` Angels and Demons `` with my friend . I found a very useful site ! I had expected that Argentina would win , but they depended on Messi too much . Recently , we recived many voices from citizens that our personal appearance is too bad . Women 's personal appearance is more difficult than men 's . Because women 's fashon is rich in variety . I wish our staff members get good sense , then become good office . It 's a famous specialty noodle of Nagasaki . She has taught me speaking skills for 4 months . I commute to language school . I hardly able to have the opportunity to speak to native speaker . By the way , Christmas is coming soon . Secondhand books You can write me a message if you are interested . ( : However today is Friday ^ ^ Look ! Is that your book that was stained with blood or ketchup or something ? A girl who dreamed of a true love 's kiss met a prince . My daughter asked me She must have been a princess before . It 's Raining ! It has been raining for four days . The weather is cold and wet , I dont like it when it is raining The < < M > > is full of slang , I think if they muted the sentences which include slang , the whole film would become a silent film . I know abstract words and technical terms to some extent . Besides , I can not read fast , speak fluently , write quickly . When I noticed it was time to get off the different station I did n't feel well . Today we are working outside , so I wonder if it could start raining later . Company meeting In every meeting we discussed recovery from the earthquake . Hello friends . Today I was really happy to talk with Tyler and Neechan on Skype , and also Ivy on MSN . Luckily Neechan got her microphone working so we could talk on Skype . I would like to record them like when I talk with Yasuko . I think it is too late already so I have to go . I ca n't tell you guys all of my working condition , so it is little bit Subject : Changing schedule proposal . Now , we 've got a new employee , and there are 6 people working as I have already told to my manager and co - worker about this , so If you He asked me to call my parents to come to school for a talk . I planned to spend at least three hours to study english every day since I began to prepare the qualification exam to be a diplomat . I write in English most about things connected with international affairs , such as , China 's economy became more dependent on their inner investment , Libya 's Caddafi came to terms with ( ? ) Mr . Belousconi , the prime minister of Italy , over the past colonial peirods , or SC decided to impose new sanctions against North Korea . A few days ago , mom brought some books on methods of learning English . grandpa , granma everyone is welcome ! ! It 's been quite a long while since I last wrote in my diary . During this time , I 've been kept pretty busy . I attended the Smith College Forum today . AUGUST RUSH I like to travel very much , if u r interested in me , just become my friend ok ? The use of e - mail and telephone costs us lots of money , not only for connection and packet taxes , but also for the basic license fee . So it is pleasant for me to select from them . I surprised her . She was very surprised ! I was happy because I could make her smile . But I like eat potatoes , cookies ( or potato chips ) and drink sweet black tea . Please lend your power ! Of course , I will help you with Japanese , if you wanna study it . On the contrary to the good first impression , Johnny was very naughty and loud little boy . What drives me craze is that the officials at school see me as the one responsible for opening the door to cheating . There are many restrictions for smokers in Japan , for example , more tax added on tobacco , restrictions on tobacco advertising , and cautions written on the packages . long time no write this diary caz , I was in a quarrel with my parents . but I was a nuisance to my friends caz I lodged at my friends ' homes . I 'm ashamed of myself now , , , , , What happened to my life ! ! ! ! Recently , it has been very popular among theyouger generations . I make a presentation next Tuesday . Maybe I ca n't answer . Everyday we prepare many packages . Because my cell makes a similar sound to my alarm clock , I turned off the Especially since this is my first time to make this kind of food , it is going to be great ! So I 'm not surprised that she was upset because delivery is hard on their bodies and it 's pretty expensive . Hiroshima is famous for the atomic memorial park and Miyazima . Winter was kind of my favourite season . After each session , I stretch my body and train my muscles . My body is so weak and rusty these days , so these exercises really helps to refresh it . But I have a problem . . . I can do anything with English ^ - ^ I remembered my violin teacher explaining me that ( to avoid repetition ) I did n't know him well , but I want to hear his play of Paganini . Although the interview is in April , I 'm still afraid that if I wo n't pass the interview . other students uni from Tokyo and Fukuoka came too , so it was very fun ! I have plans to go to Kyoto on the 8th . My friends and I want to go Kinkaku - ji , Kiyomizu - temple and other places . My sister ordered a green tea latte that was very delicious . To the gentleman who dropped his shoe at the Haunted Mansion in Tokyo Disneyland , was your shoe safe ? I was on the waiting queue to get on the cart at the Haunted Mansion in Tokyo Disneyland . It was around a quarter before 9 pm . No one seemed to have guessed it right and we all laughed . Certainly , the Haunted Mansion is the last place where you want to drop your shoe . Guess what would bring your shoe back if you drop your shoe in the Haunted Mansion . When we happily got on the last ride , I wondered if they checked if the gentleman 's shoe has not changed into a cursed slipper or the equivalent . In addition , people worked together to achieve major progress to make their country more advanced . When I chose this time and this place , I specifically did so because there was a leader who ruled the people by justice and love . This leader was the prophet Mohamed who had a message for those people to deliver . And he spread peace among the people . From my point of view , the Prophet Mohamed was the most intelligent leader at that time , because he saw that if he wanted to build a country he had to establish the people first before doing anything else . Because of all of these things , I would like to live during that time just to see the person who changed the world for the better and made us better creatures . I wanna change my life . It 's a real story that has happened at Grasse in France . He was mad , but finally , he succeeded in the production of the miraculous perfume that made all people fall in love ! But firstly , I have to pass an English exam like TOEFL . Today , I participated in a English party and I met some really nice people . However , the straydogs live hardly and painfully . When I was a university school student , I created a club that made me do something to help stray dogs . Although we face many problems and attacks , we always do the things that we believe are right ! I opened the egg carton in the refrigerator and found that the eggs were frozen hard . In addition to all that food , the lack of exercise has n't helped . and do some exercise every day . Recently in Japan , . It 's been continuously hot for days . I do n't like this weather . For A Good Presentation ! Communication is far more than information exchange . It also includes eye contact , body language and so on . wonderful ! Somebody checks my diary and corrects it immediately . There are tests in high school on this month . The meal was very tasty and even though it was a buffet and buffets tend to have less nobility in taste and atmosphere , this was surprisingly very sophisticated in taste and atmosphere . I 'm really passionate about doing hair and make up , and have ambission for my job . After I finish my assignments , spring vacation awaits me ! ! ! I 'll go to Disney Sea on the 2nd of March with my friend . I have many things to do . The English program tytle was Little Charo . I want to become to be able to communicate with foreign people in English , so it seems that this class is suitable for me . I stayed at the hotel with a coworker Mari . I was able to see skyscrapers and the Opera house from there . I don ` t have a clear dream . As for language , english and korean . an alternative to speaking with a mirror . It is a clean and comfortable there ! ! And now I need to study hard because I want to do well this semester . During that time , I traveled to 4 south east Asian countries with my friend from my university . I 'm gon na write about the detailed leg of this trip in my next entry . Morning : I must get up before my roommate and read English loudly near the lake in our school . Night : I must remember the English words . It 's very difficult for me to use `` Little `` case by case ( / _ ; ` ) One night , we burned rice bran , which would make a smell the fleas like . `` What happened to your house ! `` our neighbor ran out of his house with fright when my mom generated the thick smoke . I would like one day to leave my country and travel to England , but the problem is that my English is very bad and I do n't have a way of leaving . . . Can you please help me and teach me ? Bye , thank you . There is so much more vocabulary that I need to remember . If we ever get to the bottom of the mechanism , we will be in the money though . Yet one thing I noticed is that if we do n't allow ourselves to say `` It 's okay to forget , `` our forgetfulness is suppressed . If we say so , our conciousness recognizes that it 's OK to forget . Oh , I remember one scientific report that showed laughter boosts our immune systems . Tonight , I will see fireworks with my brother . Yes , I 'm falling in love with a girl who I 've always imagined , but it is going to be a really difficult time for me . I feel bad , what should I do ? That 's why I study harder these days , but I have a problem with English class . I will take part in Chinese Speech Convention . Unfortunately , I am poor at organizing things , especially this holiday . One of them was a huge theater with a super - high vision screen and another was showing an animation made by leading - edge technology . However , the course that I am taking now is more difficult . It will put more pressure on me . I often hear that it is impossible to hear phrases that you ca n't say yourself . Therefore , I 've been reading sentences and phrases out loud repeatedly in recent months . Please give me some advice to improve listening comprehension ! This is my third day using lang - 8 . I 'm not really familiar with the functions here , so I always send the same On the TV program for theEnglish lesson , `` Why not ! `` is thesame as `` Of course , I will . . . `` it was sooo tired . . . . Japanese traditional dolls Today I decorated the Japanese dolls in my house . I have to confess I wasthe kind of person who always said , `` God , why did you not grant me another chance . However , after that peroid of my life and surviving some of life 's irony , I come to realize that there are so many things we are supposed to appreciate , but we always take them for granted and complain all day instead . In the morning , I rode my bicycle to the playground to go jogging . They go to parties , clubs and other scenes to cover up / to hide their loneliness . You will expect that another person will also show up just as easily . I choose to embrace my loneliness . This whole journey of mine was just to reach you . Happy birthday grandpa ! ! ( even though I do n't know how old he is ! ! As some areas in the world have their own calendar , muslims also have their own lunar calendar . Hirji calendar . It 's a little bit earlier timimg to greet for new year to us , but who cares ! Neither could I go to the library because I felt dizzy . I have many spelling errors and expression errors . I rounded these spot today , but I think that I would n't go by car because those parkings for cars are very expensive and there are many places around these spots without parking area . I recommend using the rental bicycle . In autumn , we feel good cycling . We also had a good time and we tried the second movie which is a famous movie `` Harry Potter `` but we slept for a while because it was not so interesting for us . Uhmm , it was too difficult to understand . Jyanet is my friend 's wife . I am speaking english more . I 'm sleepy . It sounds like `` Finding Nemo `` ) I want things to change . Kronenbourg is now owned by a British company . I have chosen this picture as my subject because of the last scene in this series . I want to attempt to write a short summery of it in English but I think it is too big of a challenge for me now . . . This exam is very hardfor me and it is in January next year , that is to say / I . e . I have less than 6 months to prepare for it . I 'm wondering if I should enter Azumedia , in Australia . a bowl of rice topped with chicken and eggs . Remembering my daughter 's shining smile . Oh ~ sorry , I 'm having a grumble at the beginning of a journal . My boss told me to go for the lecture of the insurance company to get a licence . I bought a machine yesterday Yesterday I went to DG to buy a machine with my boss . I saw and heard Flamenco while I was working today . I wonder why all guys who sing Flamenco music / songs sound the same . Besides , I 've never heard Japanese guys singing Flamenco songs whereas I 've seen Japanese Flamenco guitarists such as Jin Oki . I used to learn ( the ) Argentine tango , chacha , and salsa when I was a student . 1 . The teacher assigned each student various homeworks . When I woke up nearly midday , I got a severe headache because of a terrible hangover . But this morning I had to work because of the examination season : < The other guys do n't like punk very much , so they did n't sung along with me . I 'm drinking my coffee and waiting for it to be 7 : 45 A . M . - the time to leave my place to go to my university . My Command of English Has Been Deteriorating . . . I never use English these days , so my English has been deteriorating so badly that I ca n't really speak anymore . My boss is very cool and intelligent . because I ca n't speak English very well . I 'm so happy lately just friends to study English . I have found , and I already know that I should take care a lot , especially on this site . . . ! Also there are lots of canals , so you can take a boat tour and admire the views . Here is an explanation about Doll Festival and a picture of dolls . After the Festival is finished , you must put the dolls away or you ca n't marry early . Animals walk on the hill , sleep , eat , and run without restrictions . But , the author of the article which I read defended that women can deal with money because they spend their money on a few small things , while men would buy ' useful ' tools instead . Immediately I went back my home and cried a little without my voice . This is a Japanese company in London and most of employees are Japanese . Anyway , I 'm looking forward to this coming summer , which has the longest daytime and gives us a lot of opportunities to play and drink in parks . Sometimes when I see foreigners come to Thailand and travel in the southern area of Thailand , go the the beach and things like that , I feel jealous . My family did n't travel often . Instead , they like to do their job and save the money for the future . I used to ask my friends about holidays and where they like to travel and they said they did not travel often . sometimes they think if they do n't use the money to travel , they can use it to buy something better . I think in Bangkok we have a beautiful beach , a lot like pukat kabi city . So , about me , I have not to traveled in the south , but I plan to go there one day when I have the money . He mentioned some contacts at Mitsubishi he has there but had to leave quickly after that . Finding your center is very important . On the way , a very extraordinary thing happened . Studying in Canada is a valuable chance for me to become mature and learn to overcome tons of difficulties and barriers . I like action / dancing / etc . just as I like music . It 's art , it 's soul , it attraction me that make me more expect ( ? ) myself . I like action , love and so on , Finally , I will be hard working and make a lot of money . Deaths from the usual flu are more common than pig flu . I consider the vaccines ( and not only from pig flu ) in itself to be harmful . Of course , it can be useful sometimes but not for everyone . Maybe I focused on the game so much , I did n't know what to do next . Of course this was uncomfortable but I had no choice but to endure it . I remember the time when a doctor began putting in the However , I do n't rememeber anything after that . Besides I do n't have to pay any money to cut or parm my hair recently . Of cource , juken has been gradually reviwed . After cutting , I looked in the mirror and I liked my new hairstyle very much . When I passed a park , I found that my shoe was loose and I sat on a white bench to tie the shoe . After leaving the park , I walked on my way home . However , many people just stared at me and laughed . At that moment , I thought , `` What 's wrong with me ? `` Arriving home , I rushed to the mirror to look at my new hairstyle . When my back was in front of the mirror , I saw my white strait on skirt and cloth . I 'm a student at the Hokkaido University in Japan . I had a responsibility to win the prize this year . Although main clients consist of office workers in their 30 's and 40 's , there are clients in their 50 's and 60 's who are regarded as the manly generation in Japan . It would be quite embarrassing . I breed many kinds of red - bee - shrimps and some betas . Breeding is fun , but occasionally troublesome . As you know I like breaded pork cutlet so I was cooking it before opening my computer and something happened to my fingers so I got my fingers burned . Jesus why did n't you tell me about this terrible thing that is happening to me ? My friend tells me that I must decrease the amount amount of Pepsi that I drink I decide to decrease the amount of Pepsi I drink It 's been a long time since I studied English . My friend Ming told me about this website so I came here . It 's a good place for learning English , and I will come here when I am free . So I need to stop writing . So many things happened since I had left lang - 8 / during my absence . About 9 years have passed since I started studying English . I 'm frustrated with my lack of progress ! She has sacrificed so much for her children . I used to have a dog whose name was Taro . I 'd like to get a dog . If they had more momey , they would spend it on other things , such as playing games at the arcade , or going out at MacDonald 's or Kentuky Fried Chicken . I think children would be spoilt if they receive too much allowance from their parents so 10 dollars per week is enough . But , I have to do homework X ( It 's contents are secret . Actully I was impressed by that . He was wearing earphones ( maybe listening to music like something with a strong dance beat ) and he danced for almost 1 hour . I seem to able to continue it , because it very delicious ! ! I was asked `` May I make a character box meal for you ? `` She said `` I ` ll make pikachu box meal `` . It will be a pleasure to eat that ! I feel my opinion is selfish . . . haha Cause I never discussed it with my husband ! ( Husband to be . ) Are the following sentences gramatically correct ? The passing grade is 60 points , so I think I made the passing mark . My English is so poor , but I must try to write something . Spring Storm All I have to do is keeps on learning it and I will speak almost perfectly someday . At that moment , a professor , one of my male boss , suddenly came in and said , `` You are using blotting paper ! `` He did n't mean that the lady should not use blotting paper in an official place . He is very cute and smart person usually , but sometimes lacks in delicacy . Maybe we women , also break guys hearts because of a lack for the male way of thinking I think I was kind of pathetic because I had no strong feeling when I lost my lover . Ginza line is good for them because it goes under a lot of tourist spots . When you talk to someone directly , you can see right away if they do n't understand you . When you send an e - mail , the receiver may misinterpret what you want to say . Actually , it is very useful and helps to save time but you should consider that the E - mail is a second best method of communication . I work for an American IT company and our collegues like to send e - mails because there are time differences between the regions . No one succeeds in Japan if they do not prefer the face - to - face meetings . In summry , if you want to establish a relationship with another human being , the best way is talking face to face . When you communicate directly , you can avoid misunderstandngs that may occur in writing . Many peoples in other countries know this ( fact ) , Of course , we are the ringleader who experienced the terrible war called `` The Korean War `` . For a long time , women have had less opportunities to find a job in many areas . Its all part of a field study being conducted by marine biologists Paul sickle ( maybe ? ) and Donna Nimeth , whith funding from earthwatch institute . but I have already watched them . please call and send an e - mail or write a sentence . . Annual Meeting of residents ' association I am not sure about my emotions . Today is a bad day because I received a customer complaint . . . : ( I just feel so much shame for our RD and assembly people . Everytime they promise that they will pay more attention in order to prevent the problem happening but then . . . the problem always happens again . When I was doing my military service , we were close to each other . I have something I 'm worried about . . . ! ! ! ! I will stay up ALL NIGHT studying for my exam . Because , when I 'm 20 years old , I 'll run to the USA , find myself a rich husband with a big house , an even bigger belly , and a small penis . This is the last year I 'm studying at school , or , more exactly , at the Lyceum of Physics and Mathematics , and I hope to find myself in some cool ( or not ) university by August . Maybe I need more sleep or some exercise . Today , I went to a drinking and eating place with my friends . In English I can express everything using only 26 letters ! I am going to hold a drinking party with my co - workers next Friday . Before that , I need to get my father 's permission . Unfortunately , when I finished speaking my first topic , then the teacher came to us and I felt nervous ! Coincidentally , I had an unknown question which made me embarrassed . I am always thinking about what makes a good speaker . I like to play the guitar . F - shaped hole guitar is often used for blues and jazz . Some of the old guitars were coated in shellac varnish , it sounds very good . I went to see the cherry blossoms at Yeido park last Monday . It was my company anniversary . It was a good atmosphere . I feel I am gaining weight . These days I think I ate too much so I am gaining weight . So last year I experienced my first campus life ! At the beginning of the school year , I had almost no friends at the university . From friends , family , friends in US , my host family and so on . Those made me realize I have been supported by so many people ! ! ! And buy souvenirs and the like . However , it 's impossible to describe accurately the sense rooted in individual bodies by using our common sense . I like to drink a cup of coffee wheni feel tired or want to sleep , especially after lunch ! November . In my opinion , whether teaching the students who have already had plenty knowledge of English , or the children who have never experienced English before , the teacher should recognize the importance of teaching . Even though they do n't have the language environment to speak English , they can sing some English songs to review and strengthen their English . My suggestion is that the teacher can teach some English songs which is related to the English lesson . Yes , hindsight is 20 / 20 . The Art of Disney Gallery is held outside in Downtown Disney . Today I 'm going to tell you a very interesting story that belongs to the traditional / folk literature of my little country . In our country , there are a lot of ancient structures that were built before the Roman conquest . They are called `` castros `` , and it 's said that they were built by an ancient culture , probably linked to the Celts . There is only one small problem : if you try getting them , you could be buried alive and die in the depths of earth . My favorite hobby is listening to music . The legend of Saint George part - 1 I was not interested in the topic because I have heard enough of that . However an essay interested me . However , If you do n't exercise early day , you will not be healthy and after you grow up you ca n't even study or work at anoffiice . So far , I 've only watched about two movies a week because I do n't have enough time . Visiting America was very good . There are many restaurants , stores , and the ocean . The bay cruise around Alacatraz is good . Boudin is a restaurant . My recommendation is the clam chowder that comes in a bread bowl . So you should go there , and you should take a taxi or tour bus . If the weather is good , you can see beautiful streets , the bay , and the Golden Gate Bridge . At both noon time and night time , it is very beautiful . But the wind is strong there , so you should bring a parka . So if you come San Francisco , you should bring a parka . First we saw a big ship , we took photos , and we saw a fisherman at the beach . I read `` Graded Readers `` , Penguin Readers , Oxford Bookworm . . . and others . You must feel uncomfortable . On the second night , we took a walk around the souvenir quater ( ? ) after having diner . As a natural reflection , he looked around to find the culprit . He was masculine and gittering during the wedding party . I found the chocolate in a shop selling cubic rice crackers . My hotel has 3 rooms for weddings , 3 rooms for parties , a Japanese restaurant , and a restaurant . I have n't been to a foreign country , such a America . I 'm really eager to be good at English . I look forward to meeting her because whenever we meet , she has grown . I 'm very bored with it because I 'm very lazy but it 's necessary to get my degree from university . I played the guitar in a band at the time , and we copied their songs . Some websites and someone told me that getting PR in this country is pretty difficult now except for special skill workers . You guys must see my bright future there in silence . I knew how fascinating the zoo could be from reading a relevant book , and I thought I wanted to go there if I had a chance . Last night , in the live house , I heard many people speaking different languages like English , French , Alas , if only I had a good partner and a child . As time went on , only a few people have remembered the campaign and people stopped continuing to quit smoking . I recommend you to watch it . It just looks like a cigarette case , so cool and kawaii ( cute ) ! Today , I cleaned my house with my wife . I have liked English since I was young . . My friend recommended this homepage . The people coming to the horse race were wearing far outclothes . My friends told me he received some information from his manager thathorsenumber 5 will win . As we watched the race , we were sure that number 5 horse would win . My grandmother passed away 1 month ago , so we buried her under I am now working for Au pair and exchange between Korean and American culture here . This is my first diary entry on Lang - 8 . I wonder what they are passionateabout . . It takes 8hours , more than three times longer than Shinkansen , from Osaka to Tokyo . I do n't know how long I will stay here , but everything seems gets better . I like the feeling now , because I can ask questions now , no matter how easy it is , I do n't care , because I want to know the answer . It is the only way to grow up . Now , my colleagues treat me well , and always answer my question , and I am trying to do everything perfect , so that they have no excuse to blame me . Nice to meet you , everyone . That is doing yourself ; you do n't need to care about others ' views . I trust myself , I will realize my dreams , fighting ! ! I spread cream Goma paste on my bread . Here 's the website : Meeting Grandma and Grandpa ! ! ! Their relationships are always changing , so it is interesting for me . I 'm still a beginner . Facebook was n't so major in Japan until last year though so many people use it all over the world . Nowadays , Facebook is getting larger and larger in Japan because of the movie ' Social Network ' which is showing now . From a Japanese historical standpoint , however , this idea is the other way around because it was harder for Japan to watch and protect against invasions . It has Swarovski 's crystals on its stainless belt and face . Moreover it was rainy in the afternoon . so we could n't make any food or take showers during the last three days . 80 % of Japanese boys talk to others with humility and the rest of the 20 % , are totally insolent like kids . How about the boys in your country ? So I 've been studying hard lately When my English becomes better , I 'll help my other friends So , I began to go to an English conversation class recently . and it will be understood to everyone reading my diary easily . When I have increased stress , I usually did n't sleep well . She also mentioned the point that she had kept complaining about it for more than 20 years . A lot of people are crying and can not have met their family and friends . I will check about the South Korea and hokkaido , I want to fly immediately . I know that you are a very busy person and , perhaps , you will not be able to answer me , I have learned English for eight years . It 's spring now , I may need to start thinking about my future . I want to learn English becase I am very interested in English culture , people , cities , and more . Also , I have problems with articles , prepositions and more ! Recently I 've been trying to read English newspapers . Terms are not easy . Sentence structures are not familiar to me . A major cause of the misperception , though , is President Lee 's sagging popularity . How different are these ? The primary footprint is a measure of our direct emissions of CO2 from the burning of fossil fuels including domestic energy consumption and transportation . We have direct control of ' these ' . The seaside is my running course . These days , candidates can hardly work as a full time employee . I 'm trying to decide which would be a good gift for Mother 's Day . At the same time , I am learning Japanese as well , in this case , it makes my English become worse . . . . I do n't have much time to use English in my daily life . I hope I can improve my English writing ability . My husband and I went to see a movie . Before the movie , I went to a department store and bought a pretty ring . We had n't expected the movie to be good . The architecture of the buildings such as palaces , theaters , museums were really wonderful . The color of the river water was not blue although the river is famous as `` The Blue Danube `` . I slept during the reading section and lost about 100 points more than the ( listening ) section . I found this website from my English club a minute ago . I want to meet you guys , whoever you are . I will buy more of it later . So when I was listening to a song on TV she suggested to give some Persian songs to Farsi learners . After the women in my family made many of the dishes like the meats , rice cake , fruits , grilled fish , Korean traditional fan - fried cakes and the boiled potherbs , we knelt down to make deep bow with the Korean traditional alcohol before a picture of my father 's face . I currently live in Japan but I 'll be moving to London to study web design next month . I play piano too , of course , as an amateur . It has been a long time since I 've written a diary , so I wanna write about some things that happened recently / in the last few days . It is so good because I was looking for a job in which I could use my Portuguese skills , and this job is perfect ! To tell the truth , I am not sure that I could do it perfectly , but I will try hard ! London is my favorite city because there the old buildings and new buildings coexist . If every day passed more quickly , I could leave for there right away ! his face , characteristics , his way of speaking , haha . Just Beginning my Journal I 'm beginning my journal today . Because I have n't seen them in a long time , I am looking forward to meeting them again . And I 'll watch `` WHAT HAPPENS IN VEGAS `` starring Cameron Diaz . I am afraid to take the Listening Course . I was so sad and kept crying . Also I liked Penelope Cruz . It 's a really useful leg ! I like Udon . It 's really difficult to think of it because he 's straight . Of _ course , students are really looking forward to travel and they want to bring enough snacks to spend wonderful teatimes with their friends . ( Of _ course , there are not any cooling appliances in the institution ) I like to speak English . Today , I took the ANA employment exam at Haneda airport . The test required the ability to cope with a lot of different information at one time , and that determined whether you passed or failed . and it itches . TEN MOSQUITO SPOTS / BITES I ' VE HAD ENOUGH ! ! ! ! In body pump , we use dumbbells like attached picture . Right now I ca n't speak , write or understand English . The man seeing with true eyes did n't compare King Solomon and a field lily . That was thoroughly thrilling to me . Sometime ago , I opened a little business with my friends . That 's why my business is related to computers . I love science too , but not as much as I love computers and Google : ) I 've been married for over two years . I love my wife more than all of my computers , open source , science , and even Google : ) I 'm happy because it was the fourth time that I have taken the exam . I am also glad because I found this wesite for learning English . I , of course , will also help you with Polish . But the foggy and cloudy weather make the city blue . Would you check my letter ? ) * please * JOHN ( Black Labrador Retriever ) and Ryu ( Dachshund ) . When we walked along the river near the house , we saw so many fireflies around . I have something to do in Korea , officially and personally . I bought the flight tickets and bus tickets to the airport . It made me feel tired . Of course we can talk via the internet . I am so tired . That exam had some strange questions . How many aboriginal tribes are there in Taiwan ? It 's the easiest subject . But I do n't think easy questions are good . I have been studying English for 7 years . I want to be careful of `` May disease `` . I 've been studying English because I like English and I want to communicate with local people . I 'm going to Australia for my working holiday this August . I like trips and cultural exchange and volunteer work for handicapped children . If someone interested the journal , please correct my sentences ! ! Thank U . ( The photo means I love U in sign language . ) I came here without a driver 's license , cash , and credit cards . Jewellery label CHIMASKI I decided towritean English diary entry every day and I 'll study English hard this year . Accccchoooo ! I am planning to go abroad in about one year to study fashion design in England or France . I 'm thinking of entering fashion college or working as an assistant designer using the working holiday visa . furnished private room with a fridge landlady , shower , and bicycle parking is free . 4 minutes away from the nearest subway station . from 90000 yen per month for at least a 3 month contract , and a deposit of 50000yen . They have colorful coats , tops and pumps . I like spring because it is colorful and comfortable . My son had a sore throat and diarrhea the day before yesterday . I was standing up late and chatting with my friend Keita on Facebook , so I wanted to sleep a little longer . Breakfast was already ready by my mother . After I ate / had it , I took my pyjamas off and took my clothes on . It 's like Ninja . but their first meeting was a bad one . I experienced an unforgettable interview and the outcome was unbelievable . So when they asked me about my english I answered honestly with ' My english is poor . ' For the next few moments there silence and afterwards the interview finished quickly . When I received the offer my classmates said to me ' Honesty is a virtue ' . I am used to Imari , but I am a beginner of Kutani . Yesterday , I talked to my former colleague working with me when we worked part time in a theater on phone . If someone make stupid and awkward mistakes , she will blame her or him very severely . This activity seems to be fun but actually , it is a kind of task because we are learning how to write `` compare / contust `` structures . After watching the movie , we have to write about the movie by using `` compare and contrast `` . It 's my first time writing a diary entry here ; ) Yesterday I went to Shinjukugyoen with David . I like Spring the most out of the 4 seasons ; ) Doraemon is a Japanese comic , but the comic that I bought is written in English . People tend to examine correctness repeatedly when it comes to observation . Those observations which can withstand examining results can be considered as objective or nearly objective . Recently , everyday it 's raining . When I was fourteen years old , a new boy was in my class . My heart was badly broken . Always be positive . `` The shoe thrower `` ? Today I found this homepage and registered immediately . I came here to print some paper because at my house I do n't have a printer . The keyboard here is not soft like the one at my house . Well , another reason that my keyboard is soft is because I have been using it every day , Sometimes I like to type more than using a microphone because actually when I speak , I think in Thai before speaking in English and I do n't like it . . But that does not help me because when I type I always make mistakes in English . By the way , I 'm falling asleep right now . Last night I tried to read poems . I had never done so before . It was my first time . I am really excited . I just realized that it is an awesome way to study English . I was in my office in Tokyo when the earthquake occured . Although I have already studied English for six years in middle school , my speaking and listening are still terrible . My husband cooked a beef steak and some pasta for me . Edinburgh is the capital of Scotland . Even though most employees are Japanese , some should sent emails to their bosses and I have the opportunity to see such emails sometimes . I ate lunch with elementary school students and educated them about food . Or present temperature is higher than annual . I am studying English very hard . When I went for a walk , I passed a little restaurant . In front of the shop , there was an air conditioner blowing quite a hot wind . I went to university for a club activity . I 'll go shopping tomorrow : ) I am in Australia working on the holiday at the moment . But after now . . . . . Yesterday , I was just studding for my exam had a looked at my window and there was a spider . . I think that the king was weird , but I know , it 's funny to be inspirated with such a small thing . As for the article and the Hague Convention , I had discussed it with two of my friends from the UK before I posted it . I want to learn English , but I can not find any people to study with , so I have not study it for a long time . However , when I suddenly find Lang - 8 , in which I can find people all over the world that I can study with , I 'm happy , because I can study English again . To be like everyone else is like being nobody or something . The thing is that I have to write something , even if it 's utter nonsense . Vomiting , diarrhoea , the appearance of UFOs , or fits of sexual neurosis . . . I thought I would make a special lunch for him . I 'm staying with my host family now . So I ca n't decide yet . I had never been in sales so I 'm feeling frustrated nowadays . chewing gum dates back to the ancient Greeks who chewed resin from trees . Modern chewing gum was patented in the US in 1869 by , believe or not , a dentist . In 1928 , another American invented bubble gum . Bubble gum comes in gumballs of all colors and sizes , but for blowing bubbles , nothing beats the chewy , gooey pink stuff in the twist wrap . I speak Japanese only . I will appreciate it if you check this . long time no see I was busy for a long time . He is a doctor . He said that he wanted to be a doctor ever since he was a child . But tomorrow I 'm going to follow the schedule I made . It includes studying English and finishing my college 's assignments . Anyway , I hope I can use English like people who are working in foreign countries . Maybe it is written in Japanese , so we can not see it in foreign countries Olympic Games 2 I hope it comes true , . Most young people live in urban areas to work . I will write a diary starting today . I hope to build a new business to change the world . I wrote `` Momotarou `` again after a long time . After a while Momotarou and the dog walked away . The monkey was pleased , and followed Momotarou . I 'm considering to introduce my country . Russia and the United States have completed the largest spy exchange since the Cold War . I feel it is amazing that Russia and the United States still engage in espionage to steal military secrets . Will they also be taken to Russia ? Their son and daughter are pitiful , too . Loving someone is brilliant magic ! Ergonomics and style were all considered as much as possible . So I poured some syrup on my Caramel Frappuccino . Shunsuke Nakamura is my favorite football player . His free kick was amazing . The Japan football league is still at middle level in the world . I will try to keep a diary from now on . Please help me , and together we can happily learn languages I do n't like vegetables , but today 's soup was delicious ! ! Because it was rainy . I thought `` he already an adult `` . . . . . . . When I was a child , I played soccer and then after enrolling in junior high school , I played basketball . For example , although boxing or Karate looks so painful , it looks so fun to me ! I 've been healthy since I was younger , so I answered `` It ca n't hurt . `` The temperature is moderate . it 's the first time I am using the internet at home since my return . And more unfortunately , I lost my cellphone and some money when i No wonder my right eye kept twitching when However I was disappointed at the dishes in a certain scene in the film . I think the Japanese way of life is better than before . This morning , I saw a group of swans . Its around 3 hundreds . Since then , I have been determined to succeed Because I also have a moustache and a beard . I have German text books 'cause I bought them yesterday . yesterday I decided to learn German 'cause speaking German is really cool . For a long time , I have been dissatisfied with my English ability ( especially writing ) , and I have been seeking a good way to study English . You might really want to escape from the loop and proceed to 2pm , 3pm , the next day , and so on , because we all need the future . In particular , the variety programs are interesting . It rained hard , so we were wet when we finished the rite and went to a nearby restaurant . Sometimes we all ask ourselves `` When will the day be that we accomplish it ? `` But we enjoy the access to our life 's trip . ( ? ) What the above means is that if you wanna grab something , you must pay its equal in efforts . I hope my dream will come true . Of course it is one of the principle of human life but I think that it is not good . Especially in my high - school , I strongly remember that is the best exercise . Just now I 'm going to read a chapter of Dickens ' book ' A tale of two cities ' and maybe later I 'll write an entry about the book . The procedure was that preschoolers joined the kindergarteners and had a lesson with them . The kindergarteners were so friendly and cute . Maybe it 's the most uncertain time in my life , but I 'll make myself tougher and tougher to overcome all the difficulties . It has a picture of some women who lives in Africa . There are some things on their heads ( or top ? ) like fruits or vegetables and they look so happy . The main color is a sunset color and it 's so beautiful . It was just serving in an italian restaurant . Originally , I wanted to work in pub in Itaewone that is located in Korea . Many foreigners hang out their with their friends . Frankly speaking , I expected that there are many beautiful woman . But I was disappointed . I have just started study for IELTS . One of elderly men said `` There is something under the machine . `` It 's awesome , but I think they will not be accepted in Japan largely . . . . Too punk and a little abnormal . Still , by looking at stars and examining them , it was discovered that stars emit light which reaches the Earth in even intervals . Japan may never have a better opportunity to bring Asiaa better opportunity to bring Asia 's woeful World Cup record against South American opposition to the third round today . Of course we are happy that we went through the second round . I am excited third game ! ! ! After that I left the house and went to the place of employment . I wanted to go to drink a coffee but Timo told me that they had drank a tea before I arrived . The Alchemist is about a young shephard who was curious about his future . He follows his dreams and the signs telling him the directions where he should go , and he finally reaches his goal and finds out what he wants . At that time , we cook rice with red beans and serve it . Once I start to write an entry in my diary , I ca n't stop writing by the proper volume . I 've become talkative on this site . I want to correct them , but I do n't have enough time . I know that there are better correcters than I . Today is Wednesday , February the second . I admit I 'm spoiled . I have had it , which was sold packed in a pet bottle , once in an oversea country . I could n't stop laughing that `` Dairy `` means milk or cheese in English . It has been a week since the earthquake occurred . It has a softness and springiness against the teeth . so I 'll make an effort to study English . I like Saturday very much , and I can oversleep in the morning . and I went to the library . Good evening people , I am Lucia , I come from Italy , I am an Italian student at the academy of art in Frosinone . . . Hello , I am a university student . To acquire more English skill For 3 or 4 hours and more we 'd better watch English movies or TV programs or listening to English CDs without Japanese information , any subtitles Or japanese pronunciations . It 's a famous movie and I enjoyed it , but the dialogue and monologue I could understand was 1 / 10 of whole movie With the information for eyes ( not subtitles but images ) , I managed to enjoyed it though There was a writing class today . I chose it for this semester because I want to write better . Then we , for example , changed from the following sentence . I managed to get through the day . We could spend 100en for each special curried bread , yakisoba , oyaki and sausage . Voice blog can make your account and create your voice blog . However , I do not know about my neighborhood , so I have no idea about where I should take them . It said that there are items that were not paid for . Favorites & interests : snowboarding , reading books , cooking , comics , video games ( Final Fantasy ) I think it 's better to simply say that the word is unknown when it 's not in the dictionary , but it seems there 's no way to change the setting . It 's already Wednesday , However , whenever I travel abroad , I always run into trouble making an itinerary Anyway , I 'm looking forward to traveling to Japan ~ ! They 'll visit the elementary school next month . Even now , radiation has been leaking from the nuclear plants . I felt relieved by their optimistic attitude . The snow is melting into water . Only one t . Sprouts are smiling under the sun . Everything is running with the time . Everywhere you go , you can see them celebrating . Because it is the spring festival in china . My hope is that my writing can blossom like the flowers during spring . But I have n't started doing new things yet . He caught my fancy when I saw him in the Harry Potter film in the role of Cedric Diggory . I like to listen music and play badminton when I am free . I study English . New hairstyle I wanted to change my hairstyle long long ago , but I was afraid to do it . this time I was determined to change . After three hours , my straight hair disappeared . `` Your new hairstyle looks very good `` my friends always say . Finally I want to speak correctly when communicating orally . After eating , we played MARIO BROTHERS on the Wii . Now it just gives me a chance to reunite with myparents . And it will be a tiring trip . Dear Johnny , Long time , no writing ! But four days have passed , now I 'm getting bored , I have no more interest in reading books . The weather is so good , why can I only stay at the house , I 'm freaking out because of this kind of life . So I decided to go out , even though I have no idea what to do , I just want to go out , and have some sunshine ! She would need treatment in a hospital for at least a month . As a result , I could n't win the prize , however , the members of the team all said that they were satisfied with the team - management and presentation . That enforced my confidence of my growth . I have been learning . English is very difficult . Grammar is different with Japanese . It takes time to write even a short sentence . Today , the weather is pretty hot . Submerge yourself . what I really want to be . . . employee ? self employed ? I do n't remember words and grammar . He was a very kind and friendly person and gave us lots of information about Fukui . Chinese are very diligent so there are nothing people to sleep . ? At present , my daughter and wife live there We met 3 times , and I took Kelvin to Moscow . Yesterday , my sister was admitted to Si Chuan university ! In the afternoon , my sister told me a small sercret , that she has a boy friend . he has been in Japan when I was junior high school student . always confused I am very sleepy now and do n't feel so well because I wrote an English essay at 4 o ' clock in the morning . special day ! ? I tried donating blood before , but that day I could not because I was in bad condition . The Nurse said I could donate blood today , also she said her name was the same as mine . After donating , I really wanted to buy cookies for my family and friends . So I got in a line to buy famous cookies . I could n't remember what had happened , Finally , I got cookies . I know that the war is cruel . It is said that almost all Japanese like cherry blossom , they feel transience there . I watched the Olympics on television . MY ANSWER : It 's as if I had discourse with myself or with something that creates and manipulates me . So I decided to write even if nobody reads it . On the other hand , it is likely that I 've unloaded a burden from my shoulders because I have a feeling that I am incapable of treasuring the corrections I 've been given . solar energy Happy Hew Year ! I want to watch a baseball game , but there is n't a game tomorrow . Anyway I 'd like to make more experiences . It ' sThis is my first post , you know , and my 91st attempt at learning English ! My summer vacation will start tomorrow ! : ) yay It 's hard to to learn other langages , but if I can , it 'll be interesting ! Actually , I had difficulty choosing this one because there was another cool red one . I think my English will become better and better . One day just like some other people whose English is not very good at first , but later after all the hard work they succeed . I used to pratice my oral English because I think English is a tool to communicate with others . If you ca n't speak English smoothly , how can you communicate effectively ? When I watch other people speak English to foreigners I really admire them . My dream is to talk with foreigners in English one day , so I hope there are some people who would like to talk with me and help me improve my English . because the weather is good . Human beings have four main kinds of desires . These are called greed , rivalry , vanity and love of power . I also use some frozen meals . I ca n't keep my balance Actually I messed up my balance and tumbled off the ball = < We were able to see beautiful beaches , but were also able to see many cargo boats around 3 kilometers offshore as well . in order to kill time , I might as well browse some boring news on the discussion forum , but I know it is not the life I want to live . Fortunately , I was not harmed by the earthquake . I ca n't get over just writing such a nasty journal entry . Furthermore , he waits until I find my cellular phone in my bag . If I were god , I would definitely punish him for his laziness . But when I started talking , nobody responded to what I said . So my topic did n't make sense . Therefore I think we have to do something to fix nature . ( sounds more natural ) When I hammer nails , it is sooooo noisy ! ! I quit using nails to avoid complaint from neighbors and went to the DIY shop to buy screws . with my daughter ( A ) Whether the pay is high or low , it is very important to take the most suitable job for you . My question is , if you can tell what will happen in 30 minutes , or if you can read what people are thinking , then what would you like to do ? My ansewer is perhaps not appropriate for the question . I only want a little bit of these abilities because if I can predict everything in the world and others do the same , the place we are living will become so boring and our eagerness for learning will disappear . So I always search for a native English speaker who is studying Japanese . I always send a message like the one below this sentence when I want to be friends . ~ below , I send a useful sentence ~ forgetting about the irritating hot climate ( temperatures ) . Back to the subject , I knew him from QQ , then we met on 17th Nov , and then I became his girlfriend . TheSakura festival started last week . I would upload a few pictures I took today . In Japan , we can see a rabbit on the moon . So , depression is hitting our dept . Hello there . I 'm studying polymer chemistry . One foreign language sounds different from another . But it was a controversial thing ! HAPPY HALLOWEEN So I can I provide anime style character designs to people from all over the world . They both felt that it was destiny then . We learn new words everyday , take classe during summer and winter vacations , reading newspapers and magazines every week . And it seems that we learn too much grammar in school . Because the purpose ( goal ) of learning a language is to communicate with the others . To learn a foreign language , we should try to speak it as more as we can , And in my opinion , a test will push us speaking more and seak better . Europe countries are near each other . I might not be able to receive pension for about 10 months in the future because I forgot to pay 10 months ' worth of payment . . . However , since most Japanese go to university and start working at about 22 - 24 years old , the Social Insurance Agency made a system in which we can hold off the payment until we graduate from school . To be honest , although I like studying English , I do n't think this will help . Maybe , men are more apt in remembering their ex - girlfriends and comparing a new one with their past girlfriends than women are . So , it would seem , too , that men tend to be romanticists more than women who tend to look at reality and security . I like him because he is plugged in . Besides , as a partner in the intern program , we usually come up with a game plan to meet our goals . That 's why it surpirsed me very much that he went for broke on those work , especially on selling the product . I always wear my hair near my chin and now I have decided to wait and do something different . I introduced the interesting Kobe has many nice cafes . And I really like to play football . Today , the weather was fair until noon . I was able to hold the alumni reunion of Seoul Pyeongwha Elementary School for all graduates at the playground of my school on February 5 , 2008 at 6 PM . And these days I 'm trying to convert my Korean version mini homepage into an English version one so that foreigners can stop by my homepage . This event is hold once every three years in Yokohama city . I went to it three years ago . Back then , the artist was also young , and their creation had a wild imagination . Thank you for reading my diary . I woke up so late because I watched a film called ' NANA ' until the early hours of the morning . The continuation of the film ( NANA 2 ) has been published . However , the former one is excellent ! I hope everything will be fine ! so , we were hanging out till night , so l my legs hurt from all that walking . Her 's parents were very tender / nice when I visited their home . I drank a lot of alcohol last night . Last tuesday , I went to an `` English conversation bar `` on my way home . I could see only regular customers at first , but welcome to Taiwan . Japan wo n't be able to keep up with the American economy forever . ( We thought that `` someday we will get ahead of America `` until 1995 . ) Sometimes the American government has conferences with aliens in secret . American tornados are also American size . ( Sometimes tornados appear in Japan , but most tornados are generally small . When we first see American tornados on TV , we are surprised at how big they are . ) Why do n't you listento the song ? ? column of the newspaper . Recently I 've mostly been going to the library to study English ! I like working at restaurants except my shirt , pants and hair / hat [ ? ] smell of oil after work . It smells delicious , but I need to take a shower after working at the restaurant . Afterward , I watched Ryoma - den , which is a Japanese historical drama starring Mr . The following URL is my pronunciation practice reading the same sentences as # 1 . but my favourite group is Placebo . I hope that you 'll understand my text ) ) A MacDonald 's hamburger is also 105 yen ! So cheap sushi and a hamburger are the same price . Hello , Lang - 8 friends ! But I ca n't decide the colour . Through that time I had worked as a soccer player at my elementary I must be behind the times . In my opinion , every student is studying the same topics in high school , but we have more spare time in college , so , many of the other students Firstly , we can make friends . Friends will help you when you are in trouble . Secondly , we can do what we love . For example , playing guitar , First , I like to travel abroad and most of the countries I want to visit are English speaking countries . I ordered ' Oroshi Tempura Udon ' which was cold udon with tempura and grated Japanese radish . To tell more in detail , each noodle was chewy , and soup was n't too concentrated , and tempura taste matched to noodle and soup . Now they are pretty and green . I think your country is also pretty and green since it is spring . I need to buy something special for her to congratulate her birthday , but I do not know what to give her . There are many visitors from foreign countries and workers , too . So I started to learn English . The Futenma American military base , corruption of many politicians and so on . Then I find myself being into new services and gadgets and think like this : I can draw and I think that it can help me . When I was young I liked colas , sodas and sweet drinks . When someone kindly correct my text , I feel happy . Usually , we congratulate on special days like a birthday , St . However , I like congratulate on ordinary day . If I congratulate on normal days , I can get a small reward confidentially . However the difference between this book and other traditonal English word books is that it tells you how to use the root of words to remember words . I looked for sports wear in there . Possibly , that post may leave the impression that I want to bring attention to myself or hear some praise . I 'm nervous that I can talk well . I want many users to edit my writing . Models who are always under much pressure to lose weight should have psychological mentors who can give them real advice . This system can be preperation for students with specific areas of study that they are going to choose in the future . If they become Sekitori , a sumo wrestler of the rank of Juryu or above , they can get at least a 12000000 / year salary , but if their status is lower than sekitori , they only get 1000000 / year . In order to keep Sekitori , they must win at least 8 bouts out of 15 bouts in a tournament . They have 6 tournaments a year . In my opinion , the red roses and chicks do not match . I did n't think that the chick was cute or pretty , also I never wanted to touch it , but it looked like cotton candy . She knows how to teach , and how to inspire the students to speak out . They are Japanese singers . When I watched The World Cup , I was impressed by his play ! Hello ! ! ! Anyway , I recieved a pepero from my boyfriend . It was not costly , just 700yen per adult . ( without optional services ) Almost every town in Japan have this kind of bathhouse . It is just 4 degrees Celsius . I hope that tomorrow will be nicer and I could go play basketball or something else . This means I will choose a college and decide my future job . I learned how to use the word `` rain `` in junior high school as follows ; - Bullets came raining down . If succeed , I could apply for a full scholarship from NUS so that I do n't need the financial aid from my parents coz the overall tuition fee each year is a little of a burden to them . `` I talked to the fragile girl beaten by tension , `` Now you 've nothing but courage and diligence , DON ' T LET ME DOWN ! `` So I have been thinking people from the east coast pronounce the T . On the other hand , others pronounce it `` b - I - hind `` . Today I want to tell you about `` Buttery Thursday `` or `` Pancake Day . `` At a certain time of year , we have Buttery Thursday when everyone eats doughnuts as many as he wants ( see the pic above ) . Although we normally eat two doughnuts , one of my coworkers has eaten 14 doughnuts today . How should I deal with it because I do n't like to drink ? For example , they carried our baggage all the time , they opened any doors for us , and they served food to our plates at restaurants while we were eating . Is that because Hong Kong was colonized by England for a long time ? Oriental and Western cultures are mixed together in Hong Kong 's multicultural society . One was working for a restaurant . I have worked there since I entered the university . Before the wedding in my own country , the bride and groom ca n't see each other until the wedding day because the bride is busy with her `` Henna Day `` . Because it 's been raining for 5 weeks , I 've been playing soccer in the rain . Landmark tower , concert halls , harbor , foreign residences , a big shopping mall and so on . That 's why today 's short trip to Yokohama felt a little bit heavy . I 'm looking forward to tomorrow . I like the sound of the guitar as well as the ukulele very much . On my last journal entry , a friend of mine told me about a Hawaii podcast . While I was browsing the site and listening to the podcast , I felt like listening to Hawaii - ish music . Speaking of Hawaii , I think of the ukulele . Actually , I play the guitar , too . Although I 'm still not very good at it , I always enjoy playing the guitar and singing out loud ! Please teach me accounting ^ ^ I think it is a very beautiful country . I feel that I 've wasted so much time trying to show what a smart and cool guy I was , that when it 's time to graduate , I find that neither my special view on physics nor my acting ( ? ) can help with my job hunting , which is the real - life . There are at least 3 choices I could choose . But I do n't think more choices or more chances would economically mean much ( ? ) . Whichever choice I ultimately make , the cost will be huge . My roommate has been focusing on only one thing - - succeeding in Java at the job fair . She ate five and she said , `` Papa , let 's go to sleep . I am accustomed to work . This word is very familiar to me . `` I suppose . `` Okan , I 'm hungry ! ( < - - - This word really looks childish ; ; ) `` I am laughing now that I have remembered these scenes . . . : - ) I am altogether like their moms ! Anyway , I am really worried about the people who suffered from the earthquake and the tsunami in the Tohoku area . I am very embarrassed by my weak ability . He added that he would just sit back and drink beer on a small island , sometimes catch fish on the beautiful crystal - clear ocean . And I love cold weather ! And then , I found a small advertisement in the newspaper . I have had experience only in desk work and as a clerk of a pet shop . Today is me with my two cute colleague 's dating , It gives very good income . But I have had no response yet . Lying sleeplessly on my bed , I thought that we should n't just say yes to everything we encounter . Her Hoiku - en ( nursely school ? ) class is having a field trip today . It 's just an attempt to determine whether I can finish a website made in Flash . Actually , things have been OK . Well , it 's such a simple website that you can not even contact me here . I wanna recommend the American drama ' Glee ' . Please correct my writing . . . It 's healthy . basically I do not have much time to do things totally unrelated to my english test such as dancing , but I just love it so much . In the beginning I studied dancing just for lose losing weight . If I go to the gym , there are not much choices for me - running , yoga or some muscle fitness equipment . my body is more powerful and flexible now , but it is not good enough . My mother language is Korean ; which the order is totally upside down , compared with English . My refrigerator still works , but I bought new one because the electric bill is too expensive . Even though the weather was n't good , it was rainy , I would love someone to correct my writing . Of course I can help you with Japanese if you want . Feel free to contact me if you are interested in me and want to have fun . So you absolutly ca n't go to an internet bar and get on the internet . Do n't worry , you will be able to at a hotel or your friend 's home , Do some foreign people think that inviting a girl to a boy 's home in the early period of their relationship is normal for understanding each other deeply ? On the contrary , in my opinion , Japanese tend to view it as an official date for introducing family members or a greeting in anticipation of marriage . Two men were climbing the winter moutain . English performance test . ( My First Impression of Anyang Girls ' High School . ) While I distributed the fliers , one of the people that I handed a flier to read it and said `` I am going to get a massage , do you want to go with me ? `` So , many teenagers , including me , were very sad and some of them followed him and committed suicide . Since Lang - 8 uses the HTTP user - agent of each device to choose the appropriate page template , mobile devices that are not on our `` white list `` will show Lang - 8 for PC . We have an alternative option for those Cookie - disabled mobiles to use Lang - 8 without Cookie - based sessions . My favorites are professional worker 's stories , mysteries , fairy tales , science fiction , historical fictions and so on . Thank you so much for your patience to read it until the end . After May 3rd , we usually revert the prince and princess dolls like the picture above . I make it a rule to read English books at Starbucks near my condo every Saturday morning . Recently , when I try writing this , I always get sleepy . But I have not received the item yet due to lack of stock . Last night , I walked to the park near my company with my partner after dinner . There were many people in the park , such as young boys , young girls , old women , old men and many lovely children . Some young boys were playing basketball , some young girls were listening modern songs and many of the old women were dancing . because I could n't go to work . This poster was announced for Gunma prefecture . When I watched the poster , my nervousness went away . I always get up at 8 o ' clock , and leave home at half past eight . It is much better than Japanese one , because every cage is much bigger than the Japanese one so that every animal looks good , and we can see their natural movements a lot . When I think about relationships , I am really awkward at this age . We went to a public photo gallery . My son also enjoyed himself . but , as time waits for no one , then could you wait for me in the future ? youtube seems to be forbidden again in China it seems that a lot of people have the same problem , and not because it is a network problem , it is political problem . The Exhausted Traveler . One night , two travelers were walking down the road . Today I went to a English club because I want to learn english . My youngest daughter has had a practical period in Spain . For example , beach volleyball , aerobics in the swimming pool , dancing with the childeren and so much more . These comments hit my heart deeply . They do not value that time . We can learn what we love and learn about modern society . Don ` t be on a computer all the time . I have a train passport case which have used since I was a junior high - school student . According to what the man at the used furniture store said , there was nothing worth buying among my belongings . Many people buy and sell `` doujinshi `` ( = fan books ) about Japanese `` anime `` , `` manga `` and other characters . In this summer , the best selling `` doujinshi `` genre was `` Madoka - Magica : the magic girls `` , I think . Twitter , Facebook , Lang - 8 . . . I 'm happy to meet a lot of nice and kind people . ^ _ ^ Because I do n't understand how to use vocabulary and grammar . For example , allow and permit have the same meaning in Japanese . I do n't know how to use allow and permit in a situation . I like to drink red wine and beer , and so do my friends . But still I like to go out with my colleagues or my friend to a bar . I really want to know how other people get along with their lovers who have different who has habits or thoughts . I 'm graduating from college teacher teacher teacher : D speaking class I could n't complete everything , because I did n't have enough time Today it was a national holiday in Japan . I am crazy about DIY these days . It 's my first day on the Lang - 8 ! Still I do n't know what will happen after updating daily . But I 'm excited to connect with someone and support each others improvement in not only language butin cultural differences Today , I watched two animes . I watched A Whisper of the Heart and A Mononoke Princess by Hayao Miyazaki all day at home for the first time in a long time . I especially like Whisper of The Heart , out of the many movies that he created . but usually we ca n't see their shows very often in Japan . ( My teacher told me to read a script , this is a scene in the play ) I live in Japan . The summer seminar at my juku school starts today . Two main popular actors spoken English never sounded fast . My grandpa was a widower since he was young . I am sure I want to learn . I borrow a course book from the library but I eaisly get discouraged as t learning foriegn languages is a hard and tough challenge . I always want to achieve the expected result , and I try to do it . I do n't know when he will see my request . If you can see this diary please help me find some grammar errors or other mistakes . I am learning English and like Japanese , if you are Japanese I am also very glad to be friends with you . One day my daughter said to me . In yesterday 's class , I learned the word , `` guinea pig . `` I could n't understand what she said . Unfortunately I 'm not in charge of the assignment , so I did n't know what was going on between my boss and the client . The author believes that . . . . In the above passage , the author believes that eating fast food causes children to become overweight . I 'm sorry to say this , but the weather forecast says that the next day is going to be rainy , too . It 's already the 5th ! Today , I held a takoyaki party at my house . Travel to Mexico I reserved a hotel room and booked air tickets on the internet . I want to enjoy snorkelling in the Carribean Sea . A Difficult Sentence Look at photo 1 , the handbags were made by hand . The TV said , the chance of rain is 20 % . The native speakers are talking very quickly so I have to listen 5 or 6 times to understand what they are talking about but it is interesting . Do you have any recommendations ? I talked with 2 native speakers in English at the camp last weekend . She is a friend of the English Speaking Society members . Recently I have been very busy . . There were a lot of people who came from abroad there . I haveto make an effort to study English more ! One day , one of my friends said , `` Actually , I do n't understand what other Japanese students say in English , but your English is really good . `` The meeting was supposed to be held yesterday afternoon hi , everybody thanks for everyone who revised my compositions . . . My homegrown veggies . Well , this is not my first attempt at growing homegrown organic veggies . I grew some good homegrown organic veggies . Now I know that it 's really difficult to make homegrown organic veggies . A - bomb Memorial Dome is near the Peace Memorial Park . I would appreciate it if you corrected it . I ca n't express my thoughts clearly , but I trust that I will speak fluently in the near future . Actually , all of the classes were in English , because the teacher was a foreigner . I did n't have much money but I wanted to buy new furniture . I am not good at speaking , writing , or listening to English . I 'm developing new materials for energy devices such as batteries and capacitors . According to the news , recently , there have been situations where separatists used sharp objects to attack residents in Xinjiang , China . In summer I usually go for a walk with my friends , read books , many practise music and travel all over Moscow . It ` s a very beautiful manor which is erected by Bajenov and Kazakov in honor of Ekaterina the II ! So recently I 've started gaining weight . I decided to eat to healthy food , to eat less and to exercise . I 'm bored to death ! ! I downloadedsome of theses from authoritative periodical databases . `` You will pass through a dark tunnel ; meanwhile , you feel helpless , scared , distressed , and feeling negative . Then they become two best friends again . Today is It has been getting cold recently . First , the financial section is essential for running a company It was great . The Lion Dance is a very popular dance during New Year 's celebration in China . Anyway , she followed me today . Japanese and logic the first , I had extended my visa for August , but I have n't got it until now . . . . How do you think ? Unfortunately American Football is not popular in Japan partly because the rules are too complicated for people . Mainly , because the players are not very famous in Japan . As everyone knows the popular sports have many fans , especially children . Basketball is also not a popular sport . I heard that flag football would be treated ( ? ) as a curriculum at the elementary school . but the forecast is saying that the rainy weather will continue for several days . . . Rakugo is traditional comic storytelling . Tiger and Dragon was made by Kudo Kankuro . They were over my shoulder in height . However , the temperature of water was cold . Now , I have an aversion to writing correct grammar , but I can read and write in English a little . It 's difficult but I like to exchange letters and converse in English ! By the way , is it possible to send an email containing pictograms to a foreign country ? Our electricity will be powered down at 11 . I did not know what was happening . We have had dogs , cats , ducks , parrots , hens and chickens , hamsters , fish , an iguana , a turtle and a couple of rabbits ( who had like 10 rabbits ) . Comic cafe I 'm in a comic cafe right now . But , when I think about people who now spend their life staying in this place , I wonder whether they 're able to get relaxed everyday . It seems to be a controversial issue during a prolonged economic slump even though Japan is considered to be affluent . I enjoy writing in a journal . Yesterday and this morning , I took the achievement test . : ( You 'll never know whether I eat something or not . I have to say goodbye to my stomach . ( I 'm not confident about this expression . ) Second lesson at Gaba Today , I went to the Gaba English language school . That 's because I am in Thailand now ! ! ! When I have reached home and settled down , I will write about my trip and put up pictures ! ! ! ! ! ! ! I know that . Yesterday , I had my wisdom teeth pulled out . But I believe that it is what I am meant to do . . I have visited south asian areas , middle eastern areas , India and Europe . . Hanami means looking at trees of cherry blossom in Japanese . Now I severely want to speak out what I think and feel . Today is April 26th , which leads to me being more attentive , because the `` Interpreting Oral Test `` is around the corner and I 'm serious about it . If we want to achieve something , there is no doubt that we should grasp every possibility to be completely prepared . I have to interpret plenty of materials on the book by myself first , and then I need to correct my interpretation with the help of references for the sake of making more progress . My freind is very beautiful and owns lots of admirers , the same with her boyfriend . But us girls are always more loyal than guys ( ! ) , so she always worries that her boyfriend will fall in love with other girls . The popping rhythms . . Here is my favorite line from a song called `` Thriller `` by Fall Out Boy : A few days ago , Someone asked me my favorite book . The person asking was a foreigner so I told him my favorite book in English was Catcher in the Rye . Listening to me , he laughed and said ' that is the worst book I have ever read . ' Unfortunately , the people around me did n't really like the book either , but I still think it is really well written . The main character is a boy who makes sarcastic and cynical remarks about almost every person he sees . He points out hypocrisy of the people as soon as he catches wind of it . Soon , I 'll go traveling to the east coast of Australia with my two friends . There are some vegitarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabetes . I was told by those people who have food restrictions that they will chose to eat what they will eat , so any special consideration was not necessary . I am going to prepare some appropriate Japanese cuisine such as vegetarian rolls ( sushi ) , or fried Tofu in the soup . I heard that the Japanese government uses the money for the pavements in order to coordinate the money left at the end of the year . And that gives a chance for construction workers to garner extra work to do . Furthermore , one of the problems with curse words is that these are famous among non - native speakers . Nagoya does n't have art , culture , or fashion . I wanna work for an international company . . I 'm looking for devices that first of all will be for people with dementia ( big button , simple , long lasting battery ) . Best regards . . . Tomorrow I ( will ) have to wake up about 4 hours earlier than today . Im a univercity student . I love learning foreign languages ! and I also study Korean ^ ^ However , this time I am satisfied with the shiny beige I imagined . This is another reason why I connect `` green `` with `` fresh `` . Do you know why green means `` jealous `` ? If there are some words I do n't know yet , I write those words in my notebook and search for them in the dictionary after I return home . It does n't matter whether he ( she ) is a foreigner or not . Anyway , it is hard for me and I am worried whether or not it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone whom I can practice a elderly conversation with . I think I am wearing normal but a little bit flashier clothes that I already have to the party . We have been trying to use English in our seminar recently . Today , one of them told me that he wanted to practice more , and I recommended that he use this site . I like gyoza ( a kind of dumpling stuffed with minced pork and vegetables ) . To add on , I had not shared any news about my life for more than ten days . Society is currently information - oriented . In an information - oriented society , cell - phones are very important things . what should I say to her ? I heard from someone that Spring can bring fateful encounters . That is that he does n't help me on housework . . We often have a quarrel about it . Although I 'm nearly 20 years old , I need 10 minutes for writing these three sentences . He is my wonderful friend from Canada from Lang - 8 . It 's the first time In Thailand at the moment , the amount of people who have H1N1 flu seems to be growing . I hope the government can manage it soon . In fact I 'm going to Rimini for a holiday with some other friends in two days ! I like to compose my own music . Today I bought ice cream . It was introduced to me by my brother in Guangzhou province , China . I called him this morning to get the information about how he studies English and Japanese , and how his job - hunting was going . I thought I was lucky to have a job in northeastern China in international business , but I need to work more at studying harder and improving my English so that I can catch up with other competitors . Welcome to my Diary corner . I 'd like it if some native speaker could give me a hand and improve my words and sentences . Barcelona vs Atletico Madrid , an accident happened , something that I was afraid of . Schools start in April in Japan . `` Eat green , red , yellow , purple vegetables everyday , and drink more than 2 liters of water everyday `` when I have free time , I always google some words . We went shopping , karaoke , played badminton , walked in a nice park , etc . Introduce myself I 'm a native speaker of Japanese . It is the DVD of `` Dreams come true `` a famous Japanese musician . It was very difficult I was not planning on going to the party , but I ended up going there because my friend kept telling me I should go . I found Lang - 8 , while reading a book when I commuted today . Periodically , I saw her in our shop at home , where she sold cosmetics from the stand and suggested to ladies who passed by that they familiarize themselves with an assortment of cosmetics . Now in the mornings and evenings I try with the speed of light to enter the apartment or an elevator so as to not collide with the neighbor . First of all we got on the bus at our hotel guided by staff who were dressed in costumes like flight attendants with tickets like boarding passes . At the entrance some performers welcomed us and there were stalls that served delicious Latin cuisine and a stage where Salsa dancing and music were being performed . Especially in the western and southern regions of Japan , they were not affected by the earthquake as I am sure you know . I should n't have seen that program . . Yesterday , Malik played a music box by himself for the first time . I went to the tower to see the witch getting burned today . Although it depends on the country , as far as Japan goes , there are some reasons why we attend college . Space between commas ! My parents took time off and were hanging out at home , and now they have gone to visit my father 's elder uncle . Il n ' a pas lu ce livre . And recently , I started studying Chinese . For example , pandas are viewed as the most valuable animal in China , and there are less than a few hundred of them that are still alive around the world , due to illegal poaching , and man 's ongoing expansion into what were once their habitats . In conclusion , zoos could be phased out one day when human beings no longer interfere with the balance of the ecosystem . But for now , zoos are still needed in terms of raising public awareness of the significance of preserving animals and lifting the population of endangered animals . One major advantage of flying by plane is that they are faster than any other means of transport . What is more , it is not recommended to people who are afraid of heights or flying . The movie Salt I have the latest I Pod iPod nano ( 16G ) . It is my favorite because it is very small and has a good design . The reason I wrote such animpolite thing is because I really wanna go to Singapore as soon as possible . I 've only studied in Sydney , but my real intension is togo to a beautiful beach or something . I can probablyenjoy Australia ifI can afford to see everything . Just do it ! The sence there was all smiles . I go to the gym for workout everyday . Spinning bikes are similar to normal bikes but they are different because you can control the the resistance to make pedalling as easy or difficult as you choose . The reasons that I like this type of exercise is , first , that you do n't need much training or practice . Then , I practised my Listenning English skills by listenning to the New Horizon3 at double pace . Although her luggage was overweight by 9 . 5KGs , the officer still let us go freely . therefore , I participate in this program so as to enhance my English . ^ ^ I also hope that I can use my ability to help those citizens who are I still ca n't believe what happen even now . so , we need to cooperate with each other in order to save some energy . Tomorrow morning , I should go to the police station because I ask the police station officially about a investigation of the traffic accident . Maybe there is little chance to solve , but I want find out for myself . I 'm a university school student now , but I wanna be around foreigners , and travel abroad . Most young people there do n't have any interest in politics . Generally speaking , they do n't even go to poll stations to vote . So stupid Japanese politicians can do what they want to do greedily . Even if they do something wrong , they can win the next election , because majorities do n't vote at all . Singaporeans should leave everything to them . . . . . The company that owns my flat has a presence nationwide , so anyone in Japan except those enjoying country life can easily find its characteristic striped buildings . All of the rooms they provide are furnished , this type of flat is rare in Japan although I know they are rather common in some other countries . It is my favorite food from my childhood . So it has become my favorite food since I was a boy . Of course , you can enjoy eating it without liquor . He said , at his work ( Japanese company ) , he is often told that he is too self - assertive . I have n't become a member of that group . I will become a member . We made a witch 's hat by using newspaper . I 'm still not a qualified voter , so I could n't go today . Sport is not only physically challenging , but it can also be mentally challenging , criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Have you ever thought about your lifetime ? What you want to be ? I think people have their dreams when they are kids , but how many of their dreams come true ? If you were one of those people who was very successful in their life and your dream came true , it would be great , but if you were n't one of those people , have you been trying to change it or give up ? Especially after you married and had a family . I am looking for companies who love to study English and teach me commercial English , industrial English , medical English and so on . Of course , I like to learn German now . Already 180 days have passed since my son was born . Sometimes we used to fight because of different opinions about taking care of baby . Sometimes we laugh at something different and enjoy that . I watched the movie `` Sex And The City 1 `` last Saturday . It was very fashionable and gorgeous ! ! I will use a lot of money . I long for their life . I want to be a millionaire ! ! I played sand volleyball today . It 's been a long time since I 've played sand volleyball . Sand volleyball is very difficult . But it 's a merit of sand volleyball , I think . I played sand volleyball for 2 hours . But it felt shorter . I have received your letter and know that you failed the last English test . Yesterday , I could n't say `` Happy New Year `` to my friend . The octpus was the main dish and I wanted to have it , but I did n't want to have side dishes because it seemed to me that they were not appetizing . I 'd like to be an international hotel concirege in the future . People attend college or university for many different reasons ( for example , new experiences , career preparation , increased knowledge ) . Why do you think people attend college or university ? Try to answer consciously , I think for most students the primary resaon is for their future career . Today is a holiday , but I 'm at the moment working in my company . He supervises subcontracted work . It takes a long time to solve the model of simulate models . I have to solve the model before the deadline . I felt afraid . Sushi is a very popular food in Japan . I 'll use it and make a sentence including the words . Japanese government have to assess somewhere to be able to build a building . A pawnshop assesses bags , watches and accessories which are brought by someone to lend money . When this meeting is held , almost every participants gather before the meeting and eats a special curry . According to the above , we can agree to the follow reasons : Of course , I returned it in the same state . When I speak to a native speaker , I make them feel unpleasant . If people of the future are seeing the current world , they would not be approve of it . I eat so much food that I think that . I might gain weight . I worry that my stomach will become large . I guess we burn calories inside only by talking while sitting down . Today 's lesson was about solving the problems . After that , Enrike and I ate lunch together . Today 's lunch was spaghetti with meat sauce . I am also learning Spanish because I like the languages and I like Spain and its culture . Now I am having summer holidays so I 'm learning it on internet , but I will take courses in Spanish later this autumn . Staff : Why did you come to Singapore and why did you choose Singapore to live ? Generally we mix intelligence and knowledge . But it is someone that is wise and uses his or her wisdom in her or his life in order to live a stable and well balanced life . We always see our children play and determine which will be the bright one . Although I could n't understand what they said I enjoyed it visually . They had mic performances , tap - dancing , singing and instruments . I 've chosen to study Japanese because I 'm fascinated by this country , its culture and its history . I have plans to go to Japan next year so I want to learn Japanese to be able to communicate with people . but as you know , most children do homework such as learning english , writing korean and so on everyday . and then explain this situation to him . I want to learn English , please help me to correct my errors . A mathmatician , sports and music lover and struggling badminton learner . My first diary on this site By the way , could you tell me whether or not it is difficult for native English speakers to distinguish `` want `` with `` wo n't `` in conversations . I guess many would judge from context as I do with confusing words of Japanese though . I belong to the Sales & Marketing Division , which is especially for distributors and large companies . After this happened , I began to think that perhaps there was something wrong with my social skills I will try to talk and become friends with her , then she might she that I am a fiendly person . I went to the gym near my apartment in the morning . After the lesson , I went back to my apartment and had lunch . I had learned English for about six years until I left school two years ago . Now I am studying at a university , but I chose Russian as my language to learn . I will say , `` Pak , tolong tandatangani kertasnya sekarang , karena saya harus segera mengirimkannya ke klien `` . I like this idea so I will continue working there until I will go to the U . Someday , I want to see the most beautiful sunset in the world . His house is very big . I climbed onto his house 's roof . those are all difficult because they are totally different from Mandrin It is probably very difficult for you to move to higher classes , which ever classes you are in now , you most likely want to move to a higher class than others . When I arrived , I forgot to bring my books so I was given detention by my teacher . Some peach blossoms , rice cakes , and sweets are put around the tiers with the dolls . Parents wished for their daughters ' happiness , growth and health . I am going to participate in a tea party celebrating a Girls ' festival tomorrow afternoon with all of my middle - aged lady friends . English is a very hard language . . . English needs more efforts than other languages . . . I bought a magazine , `` Business English , `` a week ago and just started learning with it . So you should try to reject their demands . And give your children the chance to earn money themselves . While I used the computer my sister washed her dress downstairs . When I got home from work this morning , I found a lot of ants marching along the edge of the floor ! ! ! ! This is the first time I 've visited this site . I am surprised . I surprised that it 's offertory box was so huge ! It was not like a box but like a garden ! ! second : The reason he is so successful is that he works extremely hard . welcome to lang - 8 This is my first time at lang - 8 . I want to improve my English level . I want to make friends from other countries Looking forward to receiving your message . Here is a photo of this annual youth activity in Vietnam . I was changing it because it depended on different causes . But I tried not to change it too much . Anyway , I think that learning new knowledge is both very interesting , and helpful for me . I think that the main causes of my lack of success are - laziness , my misallocation of time and tasks , and again laziness . I was at Lotte World which is similar to Disneylandfor work today . When I was walking around Manhattan with my friend , he found a stone - made building like the Pantheon in ancient Rome standing between office buildings . A standing board in front of the building indicated that it was a luxury retail building . It had two bedrooms and one guest room and was equipped with excellent furniture , household goods and electrical appliances . So I feel refreshed ! I studied the contents in detail and looked up all the vocabularies that I have known . . Oh , if you saw the movie , The Fourth kind , you perhaps know this line from the movie , `` I see an owl staring at me `` IDIOMS and WORDS Please teach me . Anyhow , Singapore has been having a serious water problem since ancient times , because this country is a small country , so they ca n't build dams . During WW2 , many English soldiers were holed up in Singapore . But I think the Singaporean government wo n't be able to settle this problem unless human beings develop a technology which can change sea water to clean water . A party is held for a boy by his parents , grandparents , and other family members in hopes of him growing up healthy and strong . We talked a lot on via skype about language , culture , customs , cities and even politics . I wrote a diary in English for the first time . I have a pain in my shoulder . I live in an apartment , but I own a field for vegetables and herbs . I often go to the library and borrow books . I think I would hold a party for the whole house , if I were a member of their family . By the fourth time he is not warned and is shot in the head . Thank you for reading my writing , Languages easily become rusty if you do n't use them often . Do you know the French sports brand , Decathlon ? I want to go there to buy a pair of climbing pants tomorrow . I live in Tokyo in Japan . Well , that 's life , because we have grown up . We ca n't always live off our parents . We should work hard to make our own and our parents ' lives better , and that is every child 's duty . Because I was scared when I was with the barber . I 'm looking forward to watching the movie . Unfortunately , in Japan this was n't announced by mass media largely because one person who was in an important position did a speech while drunk . The most famous goya menu is `` Goya Chample `` . The politicians move to their public speaking places by using them . Woohooo ! Iraqis should revive the country by themselves . Are you planning to go to an amusement park in Korea ? In fact , there is no big difference between these two places . However , if considering transportation , I would recommend ' Lotte World ' because it 's very easy to find . You would definitely have no problem finding it . When I ca n't sleep at night , I usually listen to saxophone music . It was just like the middle of the autumn in my country . Therefore when most Australians thought it was quite cold , at least I didn ' t Morning temperature is totally different Needless to say , I do n't watch the weather forecasting . The class is open every Thursday evening from 7 : 15 to 8 : 45 and held three stops away from the station near my office . ( but one person seemed to be in charge of instruction like a leader ) . we usually have free conversation and group exercises for one and a half hours . Each group is divided by the level of English the people know . The con is that there is very little collection or feedback of the mistakes we make . We are currently using a customized program which we made ourselves . However it would be forgotten slowly in my mind as time passes if I do n't use it in my field . The most concerned thing is that a new member , a SAP programming expert , would be joining us for the new project . You can see many strange things , like people and buildings that you have never seen . I 'm already 21 years old , but I look young . . . Unfortunately , it is not habitual in my country . They say it 's our mentality . But until it is accepted we can affect change amongst ourselves . He looks so pained with stuffy noses and sneezing and itchy eyes every day . So I bought groceries that are described as effective for pollen , `` yogurt `` , `` tea of lemon balm `` , and `` nose cleaning liquid `` . I was unusually very busy last night because there were many student complaints I need to make a softer expression . I would like to prepare for the ' First Certificate in English Examination ' but my writing is not correct , so I must practise and write as much as possible . I am also very happy that I have the opportunity for native speakers to correct my sentences . Thanks for your corrections , they are very useful hhaha ! On this website , you can meet different people . I think she likes the man , her boyfriend is usually different . I saw the awesome naked bodies clearly and I realized that was a dream . I jumped about 3 metres high but he was faster than my reaction and he attacked me . I feel a little bit weird writing this and I could n't come up with a title . By the way , the weather was strange today , because it suddenly began raining harshly . Actually , it is notthat serious a situation . Do you believe that sea air is good for health ? Carbon reduction make the air on earth be better than before . My dictionary says interrogation means investigation . I did n't study at all when I was in junior high school . By the way , most Japanese geeks are very ugly , I guess that most of them have never had a girl friend in their entire lives . Enjoying nature Some people put forward an idea that education is betther than punishment , as it can teach people the knowledge that committing a crime is not a good thing . On the contrary , the people who stand on entirely different grounds think that punishment is a deterrent . Considering both sides of argument above , I am inclined toward the opinion that education is more effective than punishment . However , he sees an advertisement that a person committed a crime and was taken to prison on television . I really love my grandfather . Last night my boyfriend told me something that offended me in the middle of our telephone conversation . It was so nice and I was impressed with the beautiful traditional culture . The wall was made of brown wood ; it was so nice and homey . I am not familiar with Maiko san , Unfortunately , I probably ca n't become a Maiko san because My height is 168cm , and I have a tan just like a surfer , haha Kyoto became one of my favorite cities . For this , I will study hard to pass the graduate Uni . . . ! This is my favourite mini - photo book . `` Can you play tennis ? `` and `` Do you play tennis ? `` Now I have just finished reading your corrections and comment 5 times , and I can get an enormous impression after knowing evil 's tactics . There was a car on the right , so I steered to the left . Why should I go to a different prefecture for my class ? No one can give us a clear answer about the effect of long - term low level of radioactive exposure especially for children . Last Saturday my daughter went to the kindergarten entrance ceremony with my wife and me . But my daughter seemed happy . Today she went to kindergarten too . The most important was making a special point of ensuring their safety . After they took pictures , the teachers allowed them to play in the playground . I slept on my boyfriend 's shoulder and he memorized some Japanese words using my iPhone . I usually eat cheap frozen gyoza and they tasteway different from the restaurant 's . muscular pain I always end up having muscular pain in my legs on Wednesday night . We often say that elder people will get muscular pain after a few days when they use their muscles . Thanks for reading my first diary ! In school my friends and I were watching its launch . I really hate these boring days . After I get home , I usually eat dinner and skip taking a shower . So , I will go with my family according to the schedule . We called tutor to reserve the schedule for the experiments . Today I went to a party with my friend in Shibuya , About forty people were there . ( We did n't talk to each other a lot during the party , but I strongly remember what we talked about because I was astonished by her energy ! ) He is kind of arrogant and straightforward in the beginning . His medal was bronze indeed , but I thought that he deserved a golden medal because he must have made a lot of Japanese impressed and encouraged in his comeback . He always cracks some excessive jokes that make me sad and uncomfortable . My boyfriend got a good tan , he 's okay but he looks like a person who is from another country . This system is very good . Youkan is a reward for my labor this week ! Youkan made with adzuki beans , sugar and agar . I 'll be glad to help you with your Russian or to communicate with you . I love listening to music , drawing and dancing . I was shocked to hear that . It was only a glance , but it felt like it lasted soooo long . Maybe the professor spoke so fast that I could n't catch up and understand in time . The food in the canteen is very cheap , much cheaper than the restaurants outside . I remember that I was nervous when I moved to this school . So I had to say goodbye to some of them every year ( Even though ) I do n't like to say goodbye , I can learn something from the encounters and farewells with my friends . At that time , I thought it was right and in every test and exam I paid much effort in studying them . I thought that the right sentence was `` I got a ticket to the auto show . My brother suddenly called me today . I had nothing to do tonight , so we went to a sushi bar in the Tokyo station . The owner of the bicycle was a boy , and he was watching the hands of the mechanic very eagerly . And I decided to interpret their choice in a positive way , as proof of my popularity or something . I believe in materialism . . My ex - coworker is moving to another prefecture because of her marriage . It was a very pleasant party . It occured to me that I had been given many precious treasures like memories , a familial environment and much more . Her mother is Russian : ) I could see Tony Kanaan 's onboard camera . I went to a Yakitori restaurant last Saturday with my friend . Yakitori is very popular . Yakitori is fried chicken . Revolving Sushi Restaurant Do you go to a foreign language institute ? Of course , I could n't make a wish . On the other hand , they lied , doubted , killed , destroyed , and set off the nuclear bomb . So I will retake my examination and now I 'm waiting for 2010 when students can apply to the Japonology department again . Not a day goes by without me learning more Japanese or We should show off our country 's originality and give Japan 's luxuriant culture due esteem . We can prepare a national Russian evening where we could sing our native songs , make zeppelins , translate some lines of our literature and have a traditional lingual performance . In order to make students know more about it , our school decided to hold this activity . I did n't have any headache medicine . I received some from a fellow worker . I must control myself physically and mentally in order to complete The Tokyo marathon . Maybe its because I 've been solo for a long time and I 'm lonely . So please correct my diary . As soon as I went to buy sketchbook and pencil . Because they [ we ? ] have a custom to send a letter on January 1st . We generally write `` Happy New Year `` and a picture of the twelve signs of the Chinese zodiac in letters . I have thought about drawing Peter Rabbit for a long time , so this time I was pleased to draw it . I 'm sorry I 'm not able to put pictures on this diary . On the other account , I study Korean . So would you please approve this request , too ? There 's almost no problem in your japanese sentences . But it also has some problems such as air pollution and traffic jams everywhere . Hello everybody ! I 'm a Japanese grad student ! The joints around my waist have started to ache ! I debated for a moment whether it was a good idea or not . I went to the Bon Dance Festival at the Tsukiji Hongan - ji , the buddhist temple in Tokyo , with my friend . English 2 . How can I improve my speaking and writing skills ? I conplained about my looks to my mother . What is the difference between `` everyday clothes `` and `` casual clothes `` ? What do you feel when you hear `` everyday clothes `` and `` casual clothes `` ? This phrase is very interesting because it involves many things , I think . Many Secretarys of a politician can become a politician . Today , I went to an ophthalomologist . In particular `` Sendai `` which was located near the epicenter was the most seriously damaged by the `` Earthquake `` and `` Tsunami `` . You can feel yourself getting a shrill , when you play it very well . They are helpful for listeners to know the concrete statistics and to understand the contents easily . I am looking forward to staying there . It is cloudy today , but it will be getting warmer later this week . I ca n't wait for spring to come ! I have to write a business document in English . When I was a child , I seldom had time to play games with my peers , because my parents always asked me to study . We even quarreled , just like a real family Thinking about my childhood always give me a feeling of nostalgia . What about your childhood ? Do you have any interesting experiences to share ? this is very inconvenient . Finally , I have no idea how to learn to comprehend . How to release stress So a little while ago , I went to a convenience store and bought alcohol , sweets , and some snacks . I think drinking and eating is best way to release stress . And we ca n't seem to recognize that until a certain period of time has pased . We enjoyed the lunch and I had a lot of questions about English to ask her . She taught me really well . Then she asked me to go to the Christmas party this week on Saturday at her house , and then I went to study Chinese near where I met Chayway and Wunlay . Composition 0628 , please help me correct it or provide some ideas , thanks ! ! Today , I woke up at 6 : 45 , cooked breakfast and my husband 's lunch . I was interested in American education coupled Japanese education . Last week , my roommate tried to set a WIFI in the home , but he is just like Edison who never gave up , so I just can encourage him and I cant use internet many times , but now he success to set a WIFI in the home , so now I can carry on writing in lang - 8 every day ~ Sometimes I wave my body if I hear some high tempo music at home , but I never do that when someone else is around . what was the last concert you went to ? I went to Arashi 's concert 2years ago with a friend . It was held at Tokyo , Kyoto and other places . I will go to Toronto , Canada for 5 weeks in February . For example , our State University was only founded in 1959 and its building is n't beautiful , but rather very simple . Of course this is not important . The knowledge given there is more important and what about it this is strong there ( ? ) . However Tomsk State University 's building is very beautiful . It was founded in the XIX century . But I prefer to study in our State University ( only I did n't enter there on Oriental department = = = > - _ _ - ) I bought some material there for this . Besides that there were more foreigners and I spoke a bit in English while translating what a seller said to women from Germany , but I think my English was awful : D I majored in tourism management . home , particularly in the country , people view that boys always have more I am starting to write a diary today . I 'm staying hot with a hot springs ; so , I want you to be refreshed too . Living alone is a good experience to teach you independence . However , when we live alone , we do those things ourselves , which makes us more independent . My vest favorite musician is Nightmare and Shiina ringo . Although I still make some mistakes , His life is in me . It is like a plant which grows little by little everyday . Now , more and more foreigners have begun to study Chinese . Culture is an important element of competition in overall national strength . That 's because I do a part time job at Pastel . I will go to her concert in February with my friend . It was heavy and deep and the actor was very good . Here are some ideas on how to develop your social skills . My professor open a forum so we can discuss the differences of culture between Taiwan and France . The air , the smell , the scenery , the sound . . . just everything . He talked a lot , but I only spoke a little Korean people live on rice . But , I am on a diet . many many times , my heart gets hurte by those results , but at first , I still keep my dreams in my heart , I protect it , I wont let anyone take it or kill it but its ok , I said before , I will protect my dreams , no one can take it from my hands , today I am stupid , but how about tomorrow ? I will protect my dreams . COME ON ! ! ! I tried it again and again , but I could n't get it to work . ( needs a subject ) By the way , recently I became busy . Tomorrow is Tomb - sweeping Day , so you know what will I do tomorrow . Good night . On top of that , I do n't like taking any kind of medicine that has to do with antibiotics . But I want to eat genuine ones . What difference is ' diligence ' and ' industrious . It 's very good cost and high quality . It 's very good for Londener 's , every year they have the chance to watch high quality shows . She said to me ' ' I do n't think about it much . It is just like riding a bicycle . ' ' I had headache today . Judging from these experiences , I came to the conclusion that the experience to learn foreign languages involves the reorganization of a learner 's personality to some extent . I am looking forward to this new situation My hair is now in good length . I want to be a lucky guy ! I want to win something from the event ! Furthermore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . It was about how to become a stronger woman and pursue your dreams . The doctor said `` It will take 4 ~ 5 months to get healthy . `` In the conference room , there were much more Japanese students than foreign students . After the easy explanation , the participants had divided into groups . There were many kinds of onions that I 've never seen . But around 4 PM , there were storms and thunder and we had a blackout caused by a thunderbolt . But the telephone line and the internet connection were not restored until 9 PM . Because there are many information in it and it is very helpful , useful and instructive for us . - Why instructive ? My hobby is watching American dramas like SATC , the OC , CSI , and BONES . `` dramas `` : ) In the beginning of the year , I went there with my friends . travel , cva ( conversation volunteer australia ) , wwoof , work . . . I want to make many friends whose native language is English . One more question , I want to know how the person whose mother language is English remember new words , on the other hand , how do I improve vocabulary ? What I did in the job was to visit people ` s house and ask them what they think about prime minister Also , the jury system starting next May in Japan , impression about crimes , and so on . Some people were cooperative with me but others were reluctant to answer my questions . Mothers who live in Kanto area are not sure if the foods are completely safe for their children . When reading it , I have to focus on the text as twice as much as I normally would , I comprehend , and spot a great amount of details in comparison with the first time I read this in my mother language . `` If you do n't like it I will help you burn this damn book personally , but give it a shot `` and that inclined me to try . It was hard at first but I realized that full comprehension of the text ( every single word ) gives you pleasure for reading . It stimulates your imagination to picture everything in your head and it definitely ( if the book is good ) enchants the reader . I saw people flying a kite in the park here in England . My college is going to start this Saturday . and put mp3 audio in my phone to listen . ( music ) I apologize all my friends here that used to see me comment on LJ pages because I dont have lots of time to browse their updates and see what 's new . . I like to be in touch with my friends . Have you ever considered that your family is upset when you are absorbed in your own career ? Have you ever noticed that your friends are sorrowful when you only pay close attention to your own affairs ? & nbsp ; Have you ever remerbered that your wife or husband is waiting for dinner , while you just know handle your power , and forget her or him ? Consequently , happiness need n't you decorate , or do anything . Now , after 2 months , I have many friends here . They are very friendly . To add , we are like a family , we make everything together , and we go to school and study together . I usually go to the English Academy from 7 : 00 until 8 : 00 ( pm or am ) . I 'm here to speak English very well , but now I do n't speak well . . . What sort of presents did you get ? Because there is not enough jobs for younger students . I think most countries havethe sameeconomic problem like mine , right ? I drank in my home town . now , I 'm sleeping in my customary bed . The fugu is delicious but a little dangerous as food . If the tree of Ume do n't exist in the other country , I think it 's good to write it just Ume . I have a question , I do n't want that to happen , especially both of them are the positive characters of the show . It seemed that this summer was the hottest in the past 100 years . I want to go to the beach and swim , swim , swim . I 'm really sorry that I could n't log into lang8 for awhile . And before that , I will join the business competition again ! It is the same one that I joined last year . as ever ! lol Yeah , I know that my writing is n't so sophisticated but because I am going to the competition in Beijing , I have to brush up on my English skills ! Another favorite thing is playing the guitar , eating snacks ( especially chocolate ) , dancing , watching movies ( dvd ) and so on . I think they are on the cruise and having fun now . I hope they enjoy their trip a lot . Anyway , Halloween is just around the corner . They are my treasure . It is this class for sleeping . because , this class is a trivial for me . I will visit Greece on October . Earlier , I researched Halifax by wiki ; then , it was written as city , but on another web site was written there is country side . Of course , they were the tailender . Although I 'm not their fan , I 'm glad that the efforts of an underdog are finally bearing fruit . YAKUZA appears in this game , A yakuza man 's tattoo is the dragon , it is the origin of the title . I like Pikachu the best . But I also like Raichu . Do you know about Raichu ? It is Pikachu 's older brother ! Nevertheless , it tends to be stressful since it is not a reliable service , and it isn ` t always on time . I 'm going to t write what happened during the day and what I think about those things . I have the volunteer work for rural communities next week , in which the participant will live using ecological ways . And I watch CNN news on the Internet ( even though I can hardly catch ) . My most favourite cartoon is BERSERK . Unable to use Android phone / Ipad to use Lang - 8 ? ! I ca n't help people re - write their articles / sentences . after few days , I found another thing , I ca n't use an ipad to write corrections either ! ! At this time , Oita city in Oita PREFECTURE and Fukuoka City in Fukuoka prefeture had high temperatures , setting a new record . Before starting the games , we were divided into four teams . Thank you for always correcting my mistakes . I went to the English conversation club . I felt happier than usual . Chris invited me to the language exchange party which he will hold on March 21st . Silence is Golden I and my friends often talk about other friends . We are going to a restaurant . I 've started standard Arabic , but I only want to speak the Algerian dialect , so I 'll practice it with my father or my family when I go to Algeria . This morning , all the grass and trees in my yard looked so good . I have a soccer class every Friday morning . Maybe because I do n't how to set the perfect mood with my camera and the tripod . Mi piace la cucina italiana . Allora , voglio andare in Italia e mangiare la vera cucina italiana . Besides , I am awfully curious and willing to learn , so I quite often get absorbed in philosophy , psychology , history etc . Then they pray to their god for a happy new year . but sometimes I prefer to be alone in my room - - I love how peaceful it is ! I listen to songs in English , but I can understand text only with an online translator . . There are no large buildings or roads , and there are no subway stations or tunnels . So the major problem in the area is traffic jams early in the morning and evening , I mean rush hour . In addition , there are few restaurants . If you go to the same restaurant often , do you feel bored of that food , since the taste is the same and it 's made by the same chef ? I feel bored of the food I 've been eating , same as my boyfriend . We have an idea to find another restaurant . We hope we can find a good restaurant with delicous food around our house soon . Thank you for helping me with my English . I think that it is a very interesting , intelligent , and wonderful country . In the future I will visit London , Oxford , and Cambridge . We can not choose what happen to us , but we can choose our attitude towards each thing . I think it 's no problem to you who are graduated from the famous university and have so many working experiencies . The next is to search for an appropriate job which can satisfy to you . I was in karaoke for 11 . 5 hours yesterday . . . . I went to karaoke with my friends yesterday ~ For my classes are canceled due to the flu ~ Everyone was free during the same time and the karaoke called Jankara is 50 % off these two weeks ~ So we got up early and began our nice day ~ After that we went to karaoke for about four hours ~ We sang many songs in different languages , oh ~ I forgot to say that my friends are from Japan , Thailand , Korea and Russia ~ For this reason I was able to listen to a lot of amazing songs that I 've never heard before ~ Especially since I found Korean very cool language ~ it sounds amazing ~ Maybe I will learn Korean some day ? ? ? ? ~ hahaha After karaoke with my friends from university ~ I went out on my first DATE with my dear MARIKO ~ hahaha ~ She is the chief of restaurant where I worked part - time for a very short time ~ She is like my older sister . Actually she is only one year older than I am ~ also a very congenial colleague while working ~ I have learned much from her ~ I really , really feel very lucky to have met such a nice friend in Japan ~ We also took PILI for nice keepsakes ~ We ate SUSHI for dinner then I went to karaoke again with Mariko ~ This time we paid for 7 . 5 hours at first . . - - Including `` free - time `` ( From 10pm to 5am all you can sing ) . . . It was the longest time in karaoke for me . . . How can I spent 11 . 5 hours on karaoke in one day which only has 24 hours . . . . I want to study once again . It was beyond my ability . I 'm just enjoy the sounds but not the words . please give me some advise . hi ^ ^ japenese friend . . I 'm restarting an education market . . would you give me some information . . The Shawshank Redemption I saw `` The Shawshank Redemption `` . I especially like the movie 's last scene . It is very impressive . Anyway , I think Korean people love to sing . Finally , I will talk about the political aspects of sports a little bit . I thought it recently . Maldive has recently become popular for honeymooners . The sky and sea are absolutely blue and so beautiful ! I think Japanese food is the best for teenagers ' health , because it is nutritionally well - balanced . It is considered to be good for our health , and is used for many dishes . I want to make an American friend . A Japnese friend of mine called me this morning , almost crying . I will try my best ! ! ! I was planning to study mathematics and to write an essay . But I quit and just studied English today . This is my first daily diary on Lang - 8 . ctually I want to communicate with foreign people by myself . I have to keep studying English ! career as a drummer . practice every day in order to be a good musician . I do n't play like I used to , but I always In the summer I , as well as many American and Russian teenagers earned some money . Osaka ( in Japan ) was chilly yesterday . But my old coworker said , `` Today is hot . `` Intercultural com . Every Tuesday , I join a class called ' Intercultural Communication . ' I went a restaurant with my friends forbreakfast . So , we decided to go to a restaurant to eat breakfast . We arrived at the restaurant after few minutes . When I was 12 years old , I started to like him . I want to be excellent at English . The weird [ ] atmosphere { ? } of the lab one in I which I can find a [ ] clearer answer in the future study said the speaker , `` what is it that makes you professionally proud to be a forester ? `` and , through [ ] good management , [ ] each tree in this forest will cost only I studied about hundreds of words and some basic grammar today . At that time , I was 17 years old , not too young . Now I want to visit once again . This is a traditional / historical Japanese spa and the dress code is to wear a Yukata , which is rented by the spa . It 's important that people know the truth , about other peoples feelings , and trying to understand it . I want to buy a refrigerator . I also love learning about differences in culture between my country and other countries . But still , I ca n't believe this situation . my husband has gone Yesterday my husband went back to Tokyo . We give thanks to all laborers . I live in Shanxi province , which is located in northwestern China . There was a big eruption column and sulfur dioxide at the volcano . Love sometimes means bearing and understanding each other . Colin Firth 's films make me forget about the fear of the earthquake . But I like his movies like Bridget Jones 's Diary and Love actually . And suddenly I wanted to see Colin 's previous films . So I borrowed ' A single man ' from a DVD rental shop . It was shocking to me . In the film , the use of colors are very beautiful . I love the scene that George changes his sight at the end , even if it 's not for eternity . I really looked forward to seeing it again . Because that day there was an earthquake But many people are still missing . When I saw A single man , I thought it was just fiction . There are still a lot of aftershocks , tsunamis , 20000 people missing and a fear of radioactivity . . . This time my impression of the film was totally different from the first time I watched it . This time , I did n't feel sympathy . I did n't want to live in the panic and nightmare any more . I had to look at his despair objectively . Because now it 's not fiction . It became an unforgettable film for me . And I will also remember now I see the world very beautiful like him . I used to study the preforming arts in ( my ) university . I 'd like to learn beautiful English It takes around 30 minutes by train from Nagoya station . INUYAMA CASTLE > Nobunaga Oda was one of the most famous warriors in Japan . Both warriors are also very famous in Japan . We can see 13 floats which mounts puppets at Inuyama Matsuri . The floats are important national properties . The puppets on the floats are called Karakuri Ningyo They is similar to Marionettes . The difference between Karakuri Ningyo and Marionette is I am a student and want to learn English . I enjoyed talking . The price of potato chips has increased little by little . I 'm studying English forTOEIC Test which will be held in the end of this month . My weakness is Reading , especially Part - 5 ( grammar ) and Part - 7 ( long sentence ) . unwanted pregnancy and spread disease . However , today followed the same routine . Actually , I have been working part - time for it . When we almost finished our meal , I asked him if I could touch his hands . This is how I broke my new year 's resolution within a week . Too sleepy to write Yes , I took many pictures but now I can ` t do anymore . but I have written about this medicine before . Today 's topic is comparatively easy to write about so it took me 37 minutes to complete . The aftershock has faded out but another problem is coming . This plant sends electric power to large areas including Tokyo everyday . Because of this , Tokyo electric company and the government decided to share the power to not blackout all of the areas suddenly . Actually , it 's not very hard to listen to English which dubbers or actors speak because they are professionals who speak English , so their English is very clear . However , Canadian people , excluding dubbers or actors , speak English in a casual manner , so their English is very fast , ambiguous , and changes sounds . For example , `` What are you talking about ? ? `` sounds like `` Whada ya talkin bou ? ? `` . Ashita ha ichi nichi juu , koko ni ha imasen . Watashi ha Scout no atsumari ga ari masu . It came out a few months ago , and it 's based on a true story . The story is about a bride who has only a year to live because of breast cancer . So I do n't know the whole story but there was a phrase that the bride said during the movie . That phrase just shocked me for some reason . So I thought I should be more thankful to be alive even though there are so many things that upset and frustrate me . But still , there are a lot more chances to make my life more meaningful and enjoyable on my own . Recently , I wonder how learners are able to acquire listening skills in English . The foundation conceals my scratch completely . I watched anime during break time . In the anime , many - characters have same eyes . A report which would take less than two minutes would take me more than 45 minutes to finish . listening to the standard VOA will be a piece of cake . Lately , I 've come across a lot of articles and videos concerning harmful ingredients in shampoos , soaps and other skin care products ( such as parabens , sodium lauryl sulfate and many more ) . My resistance to using English has decreased than yesterday . He had a skeleton body , so I thought he was god of death ! Harry Potter and The Order of The Phoenix is the fifth instalment based on a fantasy - adventure , same titled book by J . Acting is reasonably powerful , but it may get better in subsequent instalments . Even though now I try to read as many kinds of articles as I can , I should try more . This is my first diary on this site Today , I was bored because I did n't have anything to do and felt strangely dull all day to study something , so I wasted my time today . Hello , my wonderful friend , it 's a bit cold around Bangkok again today . Happy Halloween costume contest ! ! ! Our private English School held the Party near public hall . One of them became KAIBUTU - KUN , which is japanese anime caracter written by FUZIKO - FUGIO He put on yellow shirts and red and blue hat and checkered pants . I was interesting and amazing / amusing ! ! I like to enjoy it and imagine that I 'm the lucky girl who is loved by the handsome boy Oh , reading comic books is the best thing in the world . this shop is a chinese noodle store . I think they fit in the atmosphere of anime well . Joe is a handsome boy , living in New York , who loves Japan and really wants to get married to a Japanese girl . But now Japan is in its rainy season . By the way , I 'm going to Bali island this Friday . I hope that when company begins to recruit new members , he can tell me about the job opportunity . I am a computer programmer who uses Java language to develop programs . I mainly make websites . These days we are relatively free , because the project are almost complete . So I use my free time to learn English especially comprehension . First , I draw an outline of a face then the eyes ( the eyes are my favorite part ) . After I finish my works , I 'm surprised at the time that I have spent drawing . I was very surprised that her Japanese skills have improved tremendously . Because they are scared of mistakes . The biggest difference and perhaps most interesting new feature is called `` focusing attack `` This is the new system used in Street Fighter IV and is awesome . It is just a simple way to attack but can charge and depending on how much you charge , you can break the opponent 's guard and make them vulnerable for several seconds . So it gives you big chance to reverse the situation by hitting them with massive combos ! ! These days , it is VERY clear and fine . He was interviewed in English , his English was good ! Its good for my English studies , and we talked a lot about ourselves to each other . I particularly like Michael Jackson and Luther Vandross . But their songs are very difficult to sing . It 's soooooooo cold too ! ! > < so the streets are very snowy . I want to improve my English . . . . . Yesterday ( February 3rd ) is `` Setsubun `` in Japan . Setsubun is Japanese traditional culture . - Oniwa soto Fukuwa uchi . - During the 7 hours journey , I felt lonly , when we arrived at wanjiang station , it was nearly 8pm . I think that it is difficult to communicate with someone in english . Today , I went to stadium called Saitama Stadium 2002 and watch some soccer game . This game was very incredible and it was very amazing . Because , they are passing very fast and their dribbling skills are so great . Last , I saw Thailand vs Saga and it was 0 - 0 so it turn to PK ( penalty kick ) and Thailand won . Today , was really hot but , I am proud that I could watch the game . I do n't know why I got up at this time . I think the answer is VANITY . Today my friends and I went to the forest . I have had a stomachache since 2 weeks ago . They did some tricks . ( ? ) The skateboard hit my leg . My favorite phrase What is your favorite phrase or words ? It is the latest model . Technology is wonderful ! The first time I took a needle in hand was when a was seven years old . Now I can sew almost everything except men 's coats , because I have n't even tried to do that yet . In the first photo there is a denim jacket that I made for my husband . In the second photo there is a handbag that I made for my mother . I have been member of Lang - 8 since the beginning of May . Honestly , I haven ` t thought that the corrections would be useful for my study . Depending on the topic , I often consult dictionaries . My voice was hoarse all day long , and our customers could n't hear my voice . I went out on business this afternoon to deliver some tickets to our customer . which is made of wheat flour and contains some vegetables , cheese , beef , pork , egg , and so on . Congratulation me ! ! My previous PC was soaked by water , resulting with some ( * unresponsive ) keys . I 'm very sorry I had a cold . The importance of English toefl ibt writing beginner 's essay ( question ) Use specific reasons and examples to support your answer . ( my opinion ) please check . So I had no problem communicating . I 'd like to recommend going to Korea . Until now , I have watched this movie three times . Even though a Product is of good quality , it is necessary for it to beadvertised . I have a habit that observing ( watching ) advertisements which introduce the function of the product and how to use it . I remember that my cellphone was broken , a few days ago . The salesman introduced me to a lot of brands , but I was puzzled about the brands . So I think it is necessary to advertise . But , I 've suddenly fallen to the bottom . . . Pushups on the toes for 30 repeats because I like foreign musicians , so I want to understand what they Also , English skills are necessary to communicate in the world . It 's important in business and other things . I 'm looking forward to learning it . My favorite writer uses Spanish . I often use this tool , but I also use the ordinary text editor . We like `` The very hungry caterpillar `` , written by Eric Carle . Now I am studying in Saint - Petersburg . At first it was difficult to live in a big city for me . I am studying in Pedagogical college . Twenty years ago , the Japanese volleyball team was very weak . I hope my favorite sport , volleyball will be loved by every Japanese again . It is especially so for lunch time menus . Mitsubo ( Pig - Yakitori ) is cheap and traditional . Kuri ( Japanese Sake Bar ) is small and excellent . Last week , I had the flu and a fever for 4 days . And I think I 'm going to study abroad during spring vacation ( February or March ) . Some say he was an actor sponsored by a samurai and that he was painting as a part - time job ! I should be more careful when I choose meat ! As people say - a new start is the beginning of success The new year is coming . Taiwanese people are always open to people from all over the world , so travelers can feel the Taiwanese enthusiasm very much . I do n't remember what made me decide in the end ; why I choose engineeringor what I was thinking about . Harry Potter ! ! Last Friday I went to watch Harry Potter , a new movie , with my mother in the theater . So , Harry Potter was very interesting ! ! Although I watch the Harry Potter movies , I have never read the books . Do you think I should try to read the books ? Next , we had a lunch at an organic restaurant . I can curl my hair well , but when I first tried it my hair was hilarious . which , if students who attend it at last pass it , will get them the highest scholarship of our college , but they must be in the meeting room at 8am . also got plenty of practice in society . I remember t I was disappointed with my host father in England when I heard this question . I really felt no one in the world cared about my country at that time . I really loved the photo where you wore your hair in a bun / ponytail . After that , I developed the system using mobile phones . I am a little sensitive There are a variety of sad and lonely characters mind . Nothing too special , but I 'm trying write in English about my life ! It 's my first time doing this kind of job , so I 'm really nervous about it . I 'm afraid my customers wo n't understand my explanations or introductions . The first sentence is quite awkward to me because there are no such forms in my language . Hello , everyone . But this was because I was a student . I learned English for school exams . Because I was not learning English for myself , I have bad skills in English . I think that English is a tool . I can use it to search for much information that I want . I like cherry blossom . They look like other kinds of tree except in Spring . This party is sponsored by the English conversation school that I go to . About 70 people including twenty foreigners will take part in the party , But I 'm not used to talking with foreigners , and also my English is poor . I 'm looking forward to the party , but I have a little uneasiness about if I can communicate with foreigners well . I hope to make friends with foreigners in the party . I wish I could abandon this work and go to the sea right now . : ( This proposal is quite controversial . People against the law went on strike . This is because the number of elderly people is much bigger than younger people . I thought it was true . This is the grilled pork with spicy sauce and garlic and kimchi ( korean pickle ) and lettuce . Finally I returned home at 10 : 00pm , and I had an egg and chicken on rice for dinner . The virus will hijack your personal data , which is stored in your Iphone , if you open the text message . I believe one thing : exchanges can be implemented in only a situation where both things exchanged have the same value At that time , I could n't explain my opinion well so . . . Your relationship with someone will continue as long as you notice it . Perhaps some want to ask me why I worried about my relationship with my girlfriend as I wrote several days ago here even though I believe this . But it 's been changeable these days , which makes me uncomfortable . . . I must confess that I am gay , and I keep this a secret , because I do not wanna show my private life to any body . I can say nothing , because it 's their lives , and none of my business . And I hope they have the same feeling towards me : `` do n't bother me anymore ! `` The first time I found English to be very interesting was when I had the chance to chat with a foreigner . There are correct sentences which are not generally . used so I hesitate to correct . There are incorrect sentences whose original meaning I ca n't understand . I paid money for my English lesson , so I 'd like to take a lesson with punctilious teacher . It was very beautiful and fantastic . Today I went to the travelling health center . because it is required at school . As I said above in the title , I finally got a job = ) But the surprise is I am not going to work in Korea , I am leaving for Vietnam next month to work there . Today , I was sent to the hospital by ambulance . According to my doctor 's report , it was because of tiredness . We need to have a big smile everyday , and enjoy our life . Nonetheless , after the Meiji Revolution ( Restoration ) , Japan grew as one of the developed countries in the world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glamor ( glory ) in the Meiji Era when Japan was the king of Asia . The landlord ' son is very close to us because we are the same age . We had to do something in the room , so we stayed in our room for 1 hour . His advice makes me remember various things : consideration , cooperation , friendship and dreams . My boyfriend lives alone near university . They are authors of several book , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'm climbing the mountain because [ / BLUE ] the mountain is there . . . I do n't know why I go there . Well , there is one reason to climb up to the summit . . Then , Today I went to mountain in order to recharge my will and clear my head . I am not sure if it is a good idea to start by memorizing words . I cant believe that till now . Yesterday , I went shopping inHarajuku ( Tokyo ) . Today is Coming - Of - Age - Day which honors young people who have reached the age of 20 and become new members of society . This day , for many people , is a public holiday in Japan . On Friday night , I go out drinking with my friends or change my gel - nails or watch a DVD at home , etc . . One is about psychology . I have nothing to do in my native city so I 'm trying to learn Italian and Japaneese . what I wish most of all is starbucks coffee . . There is a big festival in my home town now . There was a very strange smell that it was impossible to breathe . I had prepared for a whole week and I failed my test due to my headache , nervousness and awful mood ! At the 2006 GP final right before the Turino Olympics , she was able to perform triple axel jumps perfectly and won the gold medal , which catapulted her into the limelight . I like JoJo very much because the characters are very positive . Both villains are very vigorous about realising their own desires . The Author of JoJo said that JOJo was a song of praise to live by . Anyway , I 'm going to go to the dentist near my house tomorrow . Next morning , I headed by bus to Weed , where the college is located I was amused that the scenary was so beautiful . or ; it 's similar to the movie `` River Run Though It `` . Weed is much smaller village than I expected Berkly , I luckily gotaccepted toU . That fascinated me so much thatafter that class I spent as much time as possible in lab programming in java . ( Of course , my GPA is getting lower than before though ) At 10 : 00am , I showed the productions schedule to our customer by e - mail as usual , but the special thing was - - - I invited my PMC to join in my e - mail . I thought if they also got the schedule maybe they could help me to push the productions . On the other hand , my customer could see we were trying very hard for the new project . Can Manga tell us about different cultures ? I think Manga can tell us about different cultures . I want to improve my English . It 's made so we can enjoy various PC media productions and powerful performances . It 's japanese a traditional wear . Hello everybody , I would be pleased if someone correced my bad sentences . I 'll introduce myself a little . The roses are blooming in my garden now . Is n't she pretty ? We , who live in the northern areas , have been waiting for spring with excitement . That is kind of difficult problem for all mankind . People tend to use the QQ in China , not MSN . They are supposed to have many tests and hand in papers . I see the students , studying so seriously ( during thier class ) . And also I know that JLP teachers spent so much time for preparing for this summer course . Do you believe that ? I 've never written my journal in English , so now I 'm thinking a lot about how to write it using the right words . Because of this situation , I swore to learn English as well as my roommate . Now I 'm living in Taiwan , speaking in Chinese . It 's a important test for me . I want to study English or another language , so please help me . haha ^ ^ According to my memory , I might have wrote one ( 1 entry ) about 3 weeks ago ? I met my friends from my high school class , went camping , experienced heart - break ( s ) . . . I do n't know the case of foreign countries , in Japan many high school and university students tend to start their first part - time job in it . It was dangerous ! I ate breakfast swiftly , and then I went to my grandpa in his room and we both watched the game . Brazil is known for soccer , but when it comes to medals and ability , we 're better in volleyball . The other two are already known , and they are also great ! , Fortunately , Brazil won the game : D Even though I 'm always criticizing my country ( I ' M NOT GOING TO SAY ANYTHING ABOUT THE FIREMEN ' PROTEST THAT HAPPENED TODAY . . . ) , I feel very proud of our volleyball time , and during these games , I felt like a patriot momentarily ! The reason why I decided to enter this community is that I want to go the USA or the UK . In other words , they can control our preferences about fashion , music , or so on . By using commercial films effectively , some companies have succeeded in selling their products and making large profits . Television and movies have influenced so much that they subtract people 's character from them , making everyone homogenized ( the same ) . When it comes to the arts , it is necessary to foster and utilize our creativity . We did karaoke , played games , and drank alcohol . It was strange because it was an unfamiliar sight to me . Recently I 'm taking english lessons . Unsold food is disposed of . I studied abroad in Brisben , Australia for a month , Please help me EVERYBODY ! ! I was reading about the continuous tense . I will read about English grammar all day . However I do n't know exactly if I should read Thai books or English books to understand English quickly but I feel I learn slowly when I read thai books . I am really slow to understand English but I must do because I would like to test well at IFAL . I will read both types of book . On the ( / that ) day , girls give sweets or gifts to not only their boyfriend but also their male friends and family . It costs two hundred yen ( approximately 2 . 2 dollars ) for a 200 millilitercan . Even if your comprehension in Japanese is 10 % , you can improve it as long as you retain what you read and keep on exercising . Some people do yoga , skateboarding , tanning and so on . I hate some kinds of bugs , cockroaches in particular ! ! Hi . I am a senior student ! I want to improve my English studies ! How about helping me ? I hope we can get along well with each other ! Recently , the increasing number of students ignore studying Chinese , but they spend a lot of time on studying English or other foreign languages . Analyse the cause of students who overlook studying Chinese , there are a few reasons why : firstly , with the fast develop of China , more and more companies have an international trade . Therefore , the people who are good at English is very essential . UK , Italy , and France were for high school trips and I went NZ to study English for about 4 weeks . Last weekend , I went to Hualien with my family - father , mother , my husband , and my son . Maybe we will go to Farglory Ocean Park again , when my son grows up . Maybe it 's just me , sometimes I ask myself , am I really that bad ? Perhaps . But I keep correcting it . These years , I 've tried my best to become a nice man . I 've done so many things that I never thought before . Like I suddenly turned into another people . But I know , no matter how hard I 've been working you still do n't belong to me . You are so smart and too beautiful for me . Speaking another language changes your character ! ? I wish he will be happy everday and gets a good mark on his final exam , and has a positive attitude in his life , has a healthy body forever , has a satisfying job in the future , and also has a nice mood everday . I could y immediately receive some helpful answers from kind people ! A large number of people are suffering from the damage of the tremendous earthquake , especially the tsunami and problems with nuclear facilities . I hope all of the people live happily like they used to as soon as possible ! ! I have KOTATSU in my storage . I 'm really grateful for this . I 'm grateful to get paid for doing something I love . Last week , I met my high school friend who is working at a Public corporation related with promoting Korea culture . To be honest , I do n't know how to describe my present feeling . I must improve my English well before the Asian Games begin . My father 's unique hobby . My father has unique hobby . still working to reach his dream in a different way . Of course , I record these animation by SONY 's HDD & Blu - Ray deck . I am sure that my wishes are going to come true . The first time I found this website I was so happy because my English is really bad and I need to improve it . I 'm so afraid that I will do badly again . I hope joining this website will help me . Indian traditional music at a Japanese temple on ( a ) Sunday afternoon . . People are unaffected by politics now , so the prime minister apologized to the nation . Changing the leader in the short term is bad for the nation . If I was a Singaporean , I would definitely go to vote everytime . I went to some foreing countries when I was a high school student . I intended to learn mathematics , so I spent a lot of time doing mathematics and I slept very late yesterday . Now I need to have friends who want to study Chinese with me tostudy language together . these sentences might have many mistakes , but never mind ! I hope I grow up to be a good English speaker . You know , we have a rainy season that is called `` Tsuyu `` in Japan . Yummy . Fortunately the porter was a nice women , so she allowed me the step inside the building without my card . I went to Vancouver for 2 days . Hello , my friends . I am back . if you want to know more about the Chinese culture , Maybe I 'll spend GW watching these videos ! Many tourists came to drink them . I drank alcohol too much , but only today . It is my one of favourite songs . I knew the song was covered , but I do n't know who 's song it was originaly . Because I could n't understand what was written at all . It is usually written in archaic Japanese and modern Japanese . Archaic Japanese sounds poetic , so I like it . In Japan we celebrate Hinamatsuri for girls on the March 3rd every year . I can listen to great music beside the beautiful mountain . I hope you can correct my writing and everything . I 'd really like to learn how to write professionally , I mean with nice words = P As a matter of fact , writing a diary entry takes less time . We sent a card to congratulate them to the church My nose gets stuffed up , and my allergy medicine makes me drowsy . The differences between Japanese & Canadian culture I have found Today after school I went sightseeing with my friend . We went to Buckingham palace , Big Ben , Trafalgar Square and so on . When we went to Trafalgar Square , I found a statue of a lion . Today the temperature is so high , it feels very hot in the dormitory . Yesterday was the last day of my Military service . It was a very happy end for a long hard years work . I have passed through many rough situation . Korean town in shin - okubo I worked at my college then had an interview . I did n't do well on the interview , though I was n't surprised . I 'll just wait until everyone finishes finals . After bodyboarding , I stopped by the convenient store . I bought the grilled chicken and a cream puff . I think I will continue working here for this month and then I will look for another job . The 1st word is ' I ' whenever I speak English or I write a diary in English . I went to hot yoga class yesterday . I had a muscle ache . . A tidal wave is a set of waves that rise suddenly and go back suddenly . This is my first diary in English . When I looked through the diaries written in Japanese by foreign people , I 'm surprised that so many people can write Japanese with Chinese characters . Therefore , I tried to write the first diary today ! What is the best way to handle conflicts ? Cultural differences often cause confrontations . Even in a classroom at school , there are some cliques . When we are in a conflict , we tend to regard our own opinion as the right one . Winter sporting goods shops are especiallypopular now because the Vancover Olympic just started . As my husband is a snowboarder , he would n't have stopped buying snowboard goodsif hehad beenthere . Which do you think is a better source for information : the internet or newspapers ? Therefore , I believe that the internet is a more essential tool for the sourcing of information . During the Mid - Autumn festival , I went to the western part of Sichuan province . Mountain roads are difficult ( to ascend on foot . ) Recently I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . However , the teachers in the new oriental school feel more comfortable to talk with students like a friend , and some of them even act as matchmakers between students . Marysville , a former gold - rush town , was almost completely wiped - out , and witnesses said the fire spread quickly , engulfing one house after another . Hey , everyone ! my memory of my childhood I broke the window in the classroom when a few of my friends and I were playing with a soccor ball , sprayed classmates with water from a hose It is that some of my friends and I had been hard on him for few years . Tasmanian salmon is very tasty OR delicious . And I had 8 pages of a paper due on Saturday , so I could not sleep on Friday night also . A University life has started and I 'm enjoying it . There is a coincidence , I just watched a TV show about the multilingual policy in EU , and I found one of the professors from my university back then in the show explaining the current situation of languages in EU , 20 official languages and many other minor ones such as Catalan and Basque , and also the big influence of English . I 'm subscribing to the Nikkei shimbun . So I believe the language barrier is to be overcome soon , and what is important is not ( one 's ) nationality , but what he or she can do for Japan . When I feel pretty bad , I get sick on the train easily , so I decided to be absent from the university today . My husband has been living away from me and my first daughter for his work . Yesterday I checked metal structure radiated He ions with TEM which is an electron microscopic name that can show nm size . In north of Japan , Hokkaido became cool recently , so I did n't want to study until late . I only had one interview till now , but fortunately I got the job offer . Actually , I 've thought of how to study English these days . As I was listening to them on itunes , I looked for the jacket and the booklet that should have been somewhere on my shelf , but could n't find them . I have n't been studying English for long . Of course , when I have the time and if they want to have a conversation , I try to practice my English . That opportunity is really rare because the people who want to converse usually want to talk in Japanese . I should do what l really want to do . I took part in the orientation of the English class . I took part in the orientation of the English class just 45mins ago . So I was asked some questions in English from an American Teacher . I am studying English . . To make most Korean sauces or Kimchi takes a lot of time . I heard Austrailia does n't have winter . Korean people consider that courtesy is very important . But it also puzzles my grandpa ; ) So he came in her apartment with a beautiful bunch of flowers . She wanted to put the flowers in a vase with water when she noticed that in this bouquet of 8 flowers . . . I 'll write an article a week ! And the paid tax is used to protect the environment by a municipal office . no damage during World War II . My breakfast these days is : dishonest , disappointed . . . Today I went to lunch with my boyfriend . He only told me my mistakes , what I did , and at last he said to me , just laughing with small talk or thinking deeply Hello , ladies and gentlemen ! This feeling is not consistent with the volunteer spirit . If I can control my emotion , I will be released from my pain . Must you ensure that you live in a real world even if the real one is much harder than the illusive one . Doraemon tells Nobita that every child whose IQ is below the standard level is fed with nutrient liquid and lives in a modeled world . Her only friend is her pet : a rooster her father found beside the highway . But fortunately , he has a nice neighbor , Ivy . Max also has a pet fish , Henry . He likes catching flies as fish food . They just like two parallels and never think of that they could come across each other one day . After being through the most miserable days in their lives , they could finally let it go . Diet failure ! I hear that dieting seems to be a failure for people who do n't really exercise . I can get good results because I like to exercise and do martial arts training . I think martial arts is a good diet exercise because it makes you sweat all at once . Weight training is a good diet exercise too but I get bored with weight training right away . The photo in my profile was taken at Takadamatubara , which the tsunami hit . We can do anything . Old men and women played table tennis They were very funny and cute eldely people . I did n't practice to speaking the foreign language much . For , at first , I 've decided to study for getting a qualification of bookkeeping . All the members say `` I think it was a good choice to join this class and I 'm very happy now . `` I think so too and I should continue to use English in ( my ) daily life : ) I was upset and disappointed . `` Lottery ! `` he said , and his answered disappointed me ! ! ! As soon as we arrived , he bought `` LOTTERY . `` I felt like a million dollars ! I felt like jumping for joy ! My computer has had a problem for three days . It 's conceivable that it will lead to an argument or even a fight if someone abruptly turns off the TV just because he or she is annoyed by the noise when other people are watching the TV in an airport , for instance . I 'm very curious about cross - cultural differences in sense of humor . The other example is the telephone system . All evolution of technology has made our life better but at the same time we should realize we are gettting to be lazy and reducing our ability by using our inventions . I want to be a human being myself ! ! Nihon e iku tochuu desu demo michi ni mayotte shimai mashita . Shizuoka is safe and has a relaxing atmosphere . So , I 'm always waiting for you to come to Shizuoka to enjoy relaxing weekends ! ! After his parents divorced , he stayed with his mother , but she remarried and divorced again . Some prefer to listen to a lecture by the professors . The following , are the reasons for my preference : However , with the development of discussion bring great humour to our education . Just a typo right ? A good example to illustrate this is that the ability of analysis will nurture through the discussions If I ca n't get a job here , I 'm going to Thailand to look for a job . I used to go shopping at the home improvement store called D2 which was damaged . The sweet and the bitter of life made people more significance . Let the unique girl with good luck come back to her hometown . According to the weather forecast , it would rain so I was uneasy because the higher the location the lower the temperature became . So , we decided to go to the Otaru aquarium instead because my daughter likes aquariums very much . I am distressed by many things and I have no vigor . . . : ( Finally he was unable to stand my behaviour . When I say I won , it 's only a little bit of money . Therefore , I just get bored since they do n't have enough time to chat with me except one friend who is from Canada ! ! ! Now that I 'm thinking what to do to spend time learning English productively aside from chatting with my friends through Skype . If you think your my friend , just chat with me ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I 've been having busy days even though my big test is finished . Hi , I just started Lang - 8 . Yesterday I arrived in NY , and I saw lots of words I 've never seen , but I could n't remember what it did mean . I took sleeping pills because I 'm an insomniac , but still I could not sleep well . I tried `` Tart Cherry `` supplement lsat night , so I slept like a log this morning . `` Tart Cherry `` worked . So if we make a list of qualities of a good neighbor , the list would begin with these words : they do n't ~ , they are not ~ . The cup DID n't have a handle and it was slIppery because of water . In Japan 's English class ( several years ago ) , I was taught that the two sentences below had different meanings . And the friend asked me why the sentence `` He has ( never ) gone to Japan . `` is incorrect to express the same meaning as 1 . thx ctenor and Sadhbh for their corrections ! ! It is unbelievable . I appreciate it . And you make me interested to write a diary . The other day my close friend called me and said that they are going to have an appointment today and also said they may go to the restaurant . I felt annoyed because they did not ask me to agree the date and after that when they had agreed the date they However , it is not effective with those who have complicated work such as creating marketing plans , planning strategies , analysing loan targets . . . The view outside was really nice . blue sky , the wind was cooling , the air was fresh , and the leaves were golden . I like the golden autumn as it uplifts my spirits . I 'm studying ibt to improve my English skill but it is very tough for me , especially writing section ! Some quizes are required to use all skills , so I highly recommend students who wanna improve English skill to study ibt ! Recently I 've been watching foreign films . I conducted a series of experiments with / on concrete . On the clothes floor As I entered this market , I felt like I was in a old factory , and it was really cool . It was about the promotion of a certain consumer good that debuts next fall . So it 's too early for celebration . ( A nabe party is a party where you eat from a Japanese style hot pot dish with everyone . ) It is a local speciality of Fukuoka . It was a really hot day today ! I thought I would see this movie with English subtitles since many people said that movies are useful to improve your listening ability on the Net . Although my opinion resulted in a shallow thing , what do you think about the saying `` No man is an island `` ? I sold a CD set of my business teaching materials I used to listen to for 20000yen . There were so many people , screaming , and yelling . How does it feel , hiding a secret ? I used to hear that some people tell too much about themselves that their house ended up being robbed or their family members being kidnapped . Whenever I visit another country , I enjoy a unique experience . that was totally ridiculous and awkward . yep , definitely 11 more months , though . I was surprised that its pronunciation is good . So recently , I have n't rested for the second day . He always introduces many interesting music \ movie \ magazines to me . Hello , my wonderful friends . I am at home right now , and I have some things to do such as washing my clothes . I did not wash them for a while so now I need to work hard . I was only writing something which happened to me , because I was n't very inspired to begin with ; ) Maybe I 'll try to write the plan of my essay next time ; ) I hope my English is n't bad , I do n't know if it 's correct enough or not , because I really want to travel , I thought about a sabbatical year in US or UK ; ) I said , `` I 'd like to eat a special kind of food `` . unadon ( grilled eel on the rice ) . . That day was my birthday . So I decide to eat unadon as my birthday present . ( This is from the lyrics of High School Musical ) Sometimes the symptoms come up days after the infection is caught . So how can I convince him to take leave ? I heard winter in Europe is kind of gloomy , is that true ? This is my first journal . I notice since I came here , English is really important . I appreciate the beauty of language and pledge to myself that I will read my favorite foreign literatures in their original languages . My favourite quote is Russell 's three passion of life : the longing for love , the search for knowledge , the unbearable pity for the suffering of mankind . Well , it 's terrible to accept her love with much care . She put the fish in the water and boiled it , then gave it to me with a big smile . For example `` The mad prime minister Asou Taro lead our economy more badly `` , `` A younger son killed his family with no reason . ( I have never thought about it until I was 20 . ) `` She is three years older than me . She was a girl born in a wealthy family . She said she found a good Chinese restaurant a week ago . The Chinese restaurant is located in Ebisu . I like thinking about how should I take pictures to make everybody interested . Can you think about what 's the difference between them and you . But sometimes I forget to do so , so I think I should try to do something again . I hope this website will help me with my English . Yeah my nephew has finished using the computer now . I was really surprised at the last diary my friend corrected . Gay Club ! I went to a Chinese restaurant in downtown with my friends . Going to a gay club is a new experience for me . One of my friends recommended it to me but I was a little about trying it . She said she was from Australia . Cave Story , one of the most high - quality `` free `` PC games made in Japan will be released on Wii - ware ( it will take time though ) . There were no awkward silences and we talked a lot . I think my native city is beautiful , but there are , of course , some problems . The Author lives in Mexico now . I liked that country . I will go to Philippines to study English next summer for two months . Before , I thought flea markets only sold used merchandise , but they do n't . Also , I played guitar in a band . I fell in love with these shoes , so I decided to buy the shoes within 5 seconds . I am looking forward to putting oh the shoes . Bryse , a programmer living in Illinois , is currently pretty much absorbed in studying Japanese . On the top of that , the time lag always causes foriegners to be confused , like when I 'm speaking with an American friend . And another reason for the friend 's confusion is lack of vocabulary . I want to improve foreign languages . However , I know that it is unhealthy , so in order to be a healthy and lovely girl , I decided to eat more starting tomorrow . I will receive reports on the rest of the checkup items in 2 weeks . But I was not able to get myself into a better frame of mind I read books , listened to favorite music , and so on . First of all , I want to improve my English especially , speaking . Although I can speak English more fluently than before , I make mistakes when I speak or say some sentences . Lastly , I wanted to make foreign friends . I feel nervous more and more . I can go to oze whenever I want to because it is very near , but I had never thought to visit . maybe oze calls me ^ ^ they gave us a morning haze instead of sun rise . and they gave us white sky instead of orange sun set . I feel comfortable with oze 's nice charm I 'm satisfied with oze 's nice charm I ordered a factory size spaghetti meal with rich meat sauce . Unfotunetly , the day was rainy and chilly , but fortunately I could visit many facilities in Oxford university . It is the middle of March , but we had snow yesterday . I have got a question : Do any of you who speak english or spanish like to chat with me in ICQ ? Konbanwa . However , I can not write as well as I read . Today , _ Shingo presented a report about English literature . I am a casher . I have a television , a bed , a desk , a refrigerator , a computer , some pens and some english book Because one of my classmates 's major was art , she explained the details of the oil paintings to us . His productions were affected by his friends so he always drew the characteristics of female with small eyes and a long nose . Thank you for reading . Therefore , I 'm afraid of the flu . My class will be opening a food store for a school festival tomorrow . Finally I decided to visit my best friend in Minsk ) My family was 4 people along with my uncles family , my aunt and my grandmother . The Adults were talking about their lives while I was hanging out with my cousins in their room . My grandmother told us she wanted to go to Karaoke with the whole family . My grandmother was very energetic and cheerful . We went to the `` waterpia `` which is a recreation park where we could enjoy heaps of pools . We have seen the first half of the movie , but nothing interessting has happened so far . Luckily , I got a ticket for a Green Day gig from my friend . I suddenly stood up and to get out of the from train but it was not my destination , so I stopped myself . Everyone was watching me probably . New book : Howl 's Moving Castle The title of it is `` Howl 's Moving Castle `` . I had no idea at all that there was the original story of the Japanese animation ' Howl 's Moving Castle ' made by Miyazaki Hayao came from a book before I saw this . I like the character of Sophie . The topic is my partner trying to sell a printer to me . I 'm the customer . Ok , if you guys acted like a customer , what questions would you ask ? Tree leaves have turned red and yellow . Now I can read simple texts and understand slow and simple speech . But we must pay a basic fee to use it . We have a cellular phone , and pay a basic fee for that too . but sometimes , I 'm impressed by that . But I 'm sooooooo sad because today was the last day of my summer vacation ( ToT ) / ~ I 'm supposed to get up at 7 : 00 tomorrow . It 's impossible ! ! I wanted to wear a skinny jeans so I took a diet . I had to stop losing weight , but I will keep on with exercise for my health . I do n't like to use dishwasher detergent while using a dishwasher . What I do is first I soak the dirty dishes in warm water with some cleanser for some time . After that , I rinse and scrub them before I put them into the dishwasher . Actually , computers is n't the first selection of mine when I was invited into shaoguan university . I have already failed CET - 4 three times . It was a very big event x - D By the way , I watched a video that the actor Daniel Radcliffe appeared in . I am a university student studying language . English , French and Chinese . Studying language is difficult for me but I wish to communicate with foreigners But today I do n't feel like working out because today I got my grades . Since I wo n't be in Korea for years , I think that it is a good idea to spend time with family until then . Doll Festival The Doll Festival ! Almost all of the house which have girls has ' japanese dolls ' . We display dolls on Mar . 3rd ( Many houses display from Feburuary I think ) . I prefer living in a dormitory rather than living off campus . Living in a dormitory gives us many opportunities to make a lot of friends . Secondly , living in a dormitory is much more convenient than living off campus . Most dormitories are located very close to classrooms . Finally , I will spend less money if I lived on campus . As a dormitory resident , I will not have to pay for gas , electricity , or water , like an apartment resident does . In addition , I will not have to pay for furniture such as desks or beds . I will not need a car either , so I will not be concerned about insurance , gas or parking . Consequently , the dorm is the more economical choice for me and my parents who are paying for my education . Her other lang - 8 friend and my classmate came after I met her . Maids really exist . The maid will paint something with ketchup . Hopefully he will answer my email tomorrow . Last friday my colleague asked me if I wanted to go see a movie with her after work , since I was free that night I said OK . Since she rides a motorcycle I thought she 'd give me a ride . It 's not the first time she has asked me out after work and told me to meet her by taking the bus ( and she rode a motorcycle ) . vi is a text editor which is widely used by systems engineers . Thus I can edit large texts and programs with a few key - strokes . It is very comfortable for me , so I often type vi commands on non - vi editor : I watched a movie yesterday . `` Inception `` we went to eat at a Japanese restaulant in Shinjuku . But , as you can see , my English is not enough to enjoy English ; for example by watching CNN and BBC news or listening to English music . `` Reborn `` , `` Hetalia `` , and `` Detective Conan `` . Also , childrens ' crimes are not because of comics . I 'm studying English , so I can go to university . Talking about the schedule , I checked the schedule and realised I reached work far earlier than I thought . That was why we swore not to use Japanese during our time here . They speak fluently in their own language but ca n't recognize mistakes in English . At the beginning , a girl 's shouting with very high pitch and tremolo is stimulating . Furthermore , he even assumed that I said something I 've never said before , like `` Those you refer to as good high schoolers `` . Next Sunday , I 'm going to participate in a marathon race which is 30km distance . Hello , my name is Gabriella . We met a lot of tourists in the centre . The whole time , he was asking everyone to support him . I 've been introduced by another Japanese friend and already knew about him , but I had no time to meet him at that time ; I just had his cellular phone number . But he wants to speak conversational Japanese fluently and he has plans to go to Japan . For adults , natural disasters represent / mean loss . In the film , President Mubarak does n't know anything about the conditions of the people . This film seems to say that the president is a victim of his ministers and government that tell him that the country is doing well and everything is okay . It wants us to believe that the president does n't know about the problems and obstacles that Egyptians encounter . This cook blows the whistle on the corruption in Egypt and tell the president exactly what happens in the country . It is hard to believe that a president could be so naive . You should n't be disappointed just because your effort does n't give you any fruit . However , according to what I heard from my friend who has it , the filter of the system becomes clogged once a month . Some of them dream of the numbers and then buy lottery tickets . Sometimes they believe ghosts can help them win the lottery . As for me , I do n't like to play the lottery because I do n't know how to do it . Three months ago my uncle died . Many people bought lottery tickets using the numbers of my uncle 's birthday and they won the lottery . Recently I went to my friend 's funeral . Before she was cremated we saw that her numbers were 14 , 41 ( we saw from the box that her body was in before they cremated her ) . Lots of my friends decided to buy lottery tickets but I did not because I believed that maybe I would n't have luck . This morning my friend asked me if I bought lottery tickets or not . She said she won the lottery today and 3 of my other friends won the lottery too . They are going to get merit for my deceased friend to say thank you . I will write much about that tiring trip on another diary . Correcting each others ' sentences . I watched the movie `` Inception `` . He spoke with a Japanese accent , but very fluently . I am looking forward to his next movie `` SHANGHAI `` I 'm sure that she will certainly achieve her purpose . When the car drove away , I whispered very softly ' I wish you good luck ' . 3 - Draw a green rectangle of the same size underneath the blue rectangle . My favorite is looking at things . I 'm very tierd because I have to study hard for tests . I have already planned to go to NY during winter vacation and go shopping , so I have to save money definitely . I like when people around me are tolerant . I am still ashamed of myself , when I remember it . My mother often said that she had difficulty making me eat . For example , the difference of `` clash `` , `` crash `` , and `` crush `` . But after I entered university , I do n't study grammar . Entrance examinations questioned me a lot about idioms and grammar . As you know , my English grammar is often wrong . It is a pleasure for me to eat my mother 's cooking whenever I return ( to ) ( my ) home , so I was very much disappointed . . If you are reading my diary , I would like to say ' Thanks ' to you . From now , I hope I will be able to continue writing my diary . Are there good ways to join the conversation ? My first diary in here lacks unity . . . . . . How appealing and - perhaps sadly - how untrue . Italian : Wait . In my country , many people are doing . . . ( 2min ) . . . Japanese people are normally taught by teacher and parents : From my point of view , this is why Japanese are so quiet in that they say almost nothing but smile while in a group in class . In fact , it 's a bit tough for Japanese , while overseas , to find ' the end ' of a person 's talking . Some stores start to close on the evening of Christmas Eve . And this time , I have to start living alone , no friends and colleagues . I went to IKEA to buy chairs , because my realtor promise me to pay them on conditions to contract my room . I need speak more and more English because of my Job recently Recently , my favorite singer is All of the band members have already had experience with other musical projects . worked with many different musical styles from Ska - punk to Hardcore . electronic samples . I 'm afraid I ca n't pass the exam for university , so I want to study English well . And do you add sugar and milk to it ? So I want to learn English right now . 3 days ago , I heard he broke up with her ! ! ! This is because it will be useful for me for when I start working in the future . This is a small and a light weight watch with GPS and heart rate monitor . There were some foreigners . So our goal of the day was difficult . We wanted to talk with some foreigners to study English . In the first store , there were n't any foreigners , and then we moved to another pub . In the second one we met one person , and spoke to him . . It was so exciting . Everything has two faces , living in the school also has disadvantages . Such as the posession problem . The different living habits of the students are also a big problem . But I do not know what to do . Please send me a message . I enjoyed the view from the window of the taxi that we took to get to the city center . The hotel that we stayed at is near the KL Sentral station ( It is a central train station ) . We looked forward to taste some delicious Malaysian cuisine . So I have to look up the words in the dictionary many times . I hope I can finish this book before next Saturday . This means I have to readabout 100 pages a day because I just started it today . Even better , I could designate a cup for a specific purpose and use it only for that purpose . It made me desperate . So I want to improve my speaking skills by training from you , Stephany : ) and also by exercising hard . Let me know if you know the names of the American competent authorities in the airport and their email addresses . I felt very full and my belly seems so big . Today was the third day of my internship ; the second one was similar to the first one , which was pretty boring and very useless . Although , I could use a computer to read manuals in English , and a couple in Spanish . I stayed in Canada for a year as a working holiday student . I feel euphoric . I think that family is the most permanent and best of friends . So I 'm going to leave at 6 : 30 PM and tell my mother `` I do n't need dinner tonight and I might come home late . `` . I asked everyone `` Would you communicate with me on Skype ? First Diary Actually , I 'm not sure whether we could beat them , since our team members are not our best . Now , I 'm in the corporate planning department . I wore a skirt , so everyone said that I am crazy ! ! ! Fuckin ' rich and intelligent people and the financial crisis ; we need a red revolution around the world . I 'm looking foward to seeing Mont - Saint - Michel . My younger son respects his father at least because he is n't scared of cockroaches . And my mother tongue is Japanese , so I will be willing to correct many sentences wrote in Japanese . and I want to go Europe for summer vacation . My family consists of my father , mother , sister and a cat named Hiro . By the way , in Kyoto it 's 2 degrees , so it is really cold . Do you know Family Computer ? Family computer ( it is called Nintendo Entertainment System abroad ) is a video game console . Recently , games are high spec and very complex . The seminar was critical for me , so I took many notes about the meeting content and clipped them in my documents . Besides , I also received several intivations of commercial cooperation which may enrich business chances of our company . It is hard for me to say and write what I think immediately . It seems like it 's in the red this month so I need to be tight the monthly expense next month . We 'll go to inexpensive restaurants . On March the 7th , we left Osaka early in the morning . In Ishikawa , we did some sightseeing , and took a spa . . ( Japanese bath ) We talked about anything and everything until the next morning , and then took a spa again . , I also can not forget those friday nights when we used to drink many alcohol and chat to each other . When I master bookkeeping , I will be able to judge the financial status of many companies . I worry about whether I can snowboard better than I have , Computers are also used in businesses to place and cancel orders . However , I sometimes forget such ideas until I finish taking shower . Sorry about the short diary . In Japanese culture , it 's called OBON . Because there is noone in cemeteries . Removing spots in my face This pain was like a hot needle pricked into my skin . After the operation had been done , I could see traces of burnt spots through the mirror . Nowadays , it is common to see people walking while texting or talking on their cell phone without being aware of what 's going on around them . This scene can be found anywhere from on the street to on buses as long as the places are within the coverage area . when we rushed to public telephones and make phone calls using telephone cards . I learned this from betrayal , from pain anyhow , time never stops for man , although the world is not good enough , but life goes on , so we have to move on They energetically gave their resumes to the companies where they wanted to work in the future . I registered immediately when I knew about this , however , I had a midterm which made me really really busy last weak , so I have to wait till this week to post my first diary here . I have to take TOEFL on 9th , May , and now I feel overwhelmed , The first and the second photos are of a used kimono fair held at a department store in Osaka . Good kimono have clear patterns without any scratches . ( I do n't know whether the pattern is any good . ) So I 'm afraid if you are American or European , it might be too small for you . Today , for the second time in all the years I 've known her , as I was bending down to pet her , at first she did let me pet her then she jumped onto my lap and climbed up to my shoulder where she stayed for quite some time , her hind feet on the right , her front feet on the left and rubbing her chin on my left shoulder and letting me pet in turns . ( I 've never seen her doing that with any other person . ) Last year I went there with my mother and we were collecting a bunch of them for making jam . Only this time I was n't wearing my pullover anymore ( I had taken it off on my way down ) , so I could feel her claws hook into my shoulder ( ouch ) . to do pioneering work , we worked hard for our dream , so we could grow into a useful and wonderful man . In modern times , some people claim that we should learn second languages without translating into our mother tongue and we can learn a language by connecting words together and by paraphrasing . Hi , Nada is my avatar name at Second Life . I do n't believe that . . . I am worried about the ( my ) coridoras . He is always full of energy and a real hundful for me . My tutor said `` Do n't translate `` . I think I ca n't translate any language so I need to speak English in English . My two sons playing `` KARATE `` . Recently , I collected pictures of my classmates ' smiles and put them together . This picture will be part of our junior yearbook . The picture can be a keepsake for our junior class . In one year , we will all graduate and go to different places . This year , we will work for a better usage of the french language in writings and we will try to discover other cultures by written correspondence with some class around the world . We had a really heavy rain yesterday . I met my friends who are my classmates and had met new friends who are from Saudi Arabia , I 've just dropped in McDonald 's and I love the walnut tart that is sold at `` Quil fait Bon `` . `` Quil fait Bon `` is a patisserie specializing in tarts . After our dinner , we went to a cafe . 3 months ago I learned English with my personal teacher , but now I am compelled to learn English by myself . Because my teacher is very busy . But verbs and times are my curse . I want to talk in English with people , who talk in English every day . I want to work for a foreign affiliated company . And I achieved it . I noticed that I can concentrate in meetings in English only for 30 minutes . 30 minutes after the beginning of the meeting , my ears and brain get tired . There is nothing in my mind , but it does n't mean that I have no idea . But I need to take everyday as my last day . However , it is difficult to understand the strategy of chess because I 'm accustomed to the rule of `` Shogi `` . I have had two turtles for around 15 years : - ) Their names are `` KA - `` and `` ME - `` . Then I could spend a very interesting time ! ! ! ! ! It was a lot of homework . . . . . . Lang - 8 is a very good web for learning languages . I found it in a magazine . Recently Lang - 8 is not working smoothly . It 's a little embarrassing to play it when there are a lot of people in the elevator hall . There were actually . I cooked rice balls , boiled chicken and flyed ( maybe fried ) go - ya . It 's a little bit weird to say good - bye to someone who I meet for the first time , but it sure is a good opportunity to meet new people ! and immediately fell in love with the place . I 've worked in the International trade for almost 2 years , but in the new HR 's eyes , I 'm still a newbie as I 'm starting in a new place . 2 months have passed . No tasks , no assignment , and the formal training course seems just a waste of both our time . Actually Ispecialized in business English and have former experience with daily use glassware . There were many piles of DVDs . Also I hope to communicate with someone in English . So let me introduce myself ! I love chatting with my friends , playing sports ( I especially love badminton ) , and listening to music etc . By the way , I took part in a international party in Ginza , Japan the other day . Of course there were also lots of Japanese , who were all eager to make friends and practise English , as well . I prepare for going to school by listening to music every morning . But I get the urge to buy once in a while ^ ^ . I invited a Japanese friend to my place . Of course , I can be a good Chinese teacher . Today 's schedule It 's very comfortable for me . Some people think there are many benefits to have machines or even robots deal with tasks . If we can make the machines work for us , we 'll be able to create a completely new life style which is healthy and suitable for all the human beings . We will try delicious foods in Hokkaido , such as chicken , Japanese crabs , shrimps , various vegetables and so on . I 'll look forward to it very much . Electronic propulsion My major is Aerospace Engineering . We study how airplanes fly and learn how to create powerful rocket engines etc . . Most of my colleagues in the laboratory are studying a plasma electronic propulsion system which has poor thrust ( 0 . 01 ~ 1NS ) , however its efficiency is awesome ! ! , It 's ten times more efficient than chemical ones , which are normally used in rockets , ( The space shuttle being an example ) . The kind of work that interests me the most is research . I am highly interested in study , especially in human dynamics . I will give her everything as well as my life and I think she will be the treasure of my life . According to the news , only one domestic line and one international line have been put into service . I welcome the new airport which creates new business chances , because I work at a travel agency . When I made a woolon tea like I usually do , I noticed the difference in taste . This time I 'd like to speak about the club I belong to . We invited some amateur music groups . I think that song and art is very wonderful . Thousands of residents from a part of Fukushima prefecture , which has had a serious problem with nuclear power plants in the March disaster , have been told to leave their homes . In addition , my laundry wo n't dry because of the humidity . Since I do n't have many opportunities to speak English here in Japan , I think my speaking skills are getting worse . I will be in Budapest in Hungary , between May 7th and 13th , to attend a conference . There is no direct flight from Taiwan to Budapest , so we need to fly to Wien , ( Vienna ? ) , and then travel to Budapest either on another airline , or by bus or train . BUT now the host family is a of some concern . She told my daughter that she had a really hard time with the same host family because the host mother has been suffering menopausal symptoms and when she is really low , she yells at others and throws things . My first name `` Satoshi `` means `` cleaver , smart and wise . `` Yesterday I rented `` Hostel `` which some people recomended to me here . Otherwise , It will be more difficul to find a job . In the USJ , there are many kind of Halloween decorations . We all have beautiful penmanship . The operability ? ? ? of Query is absolutely indespensable to screen operation and I use ajax ? ? ? as much as possible and . . . . . However , I ca n't talk to her face to face , because I 'm a very shy boy , so I will talk to her tomorrow . I registered to Lang - 8 to improve my English . Because you ca n't eat and you ca n't drink . [ WE ARE THE WORLD ] and I lost my way ( ; ; ) There is no doubt that I turned right . My homework . . . Correct please please please please please Dinara Safina is one of our favourite Russian tennis stars . There is a big Cathedral . The Cathedral often holds festivals . Though it 's small , it is very convenient . Going from Toledo to Central Madrid only takes 30 minutes by train . Billie Joe made some fans get up on stage and sing a song . It was unexpected ! What a beautiful day ! I drank a glass of white wine . It was very tasty , but it was too sweet for me . So we had to go another restaurant after that . But sometimes when I listen to difficult English , for example CNN snd BBC and so forth , they use words I do n't know , so I have to conjecture their spellings or meanings only by pronunciation or context . Meanwhile , mutton is less popular than other meats , like a beef , pork and chicken in Japan . Greece , Iran , Spain , Jordan . . . . But there are not any Uighur resturants in Tokyo . It 's hard to believe that I do n't have to go to the academy anymore . I downloded an application which allows me to play poker online . These breads are very expensive ! I eat a lot of bread , but I 'm on a diet ! A lot of Japanese food was sold on the street , such as tempura , udon , dango , kakigori ( shaved ice with syrup on top ) . Today 's part time job was working as a delivery staff for a pizza . I delivered to six families for only two hours . In my apartment , one of the lamp bulbs on the ceiling burned out , so I changed them . I belong to the third branch of Hiratsuka volunteer fire fighting unit . We quickly gathered in our office and went to the accident spot on fire engine . The spot was the mini factory of Japanese sweets , and the heat sensor responded to the steam from making sweets . so it 's very fun to communicate with the people who have different backgrounds . `` Drinking together helps our teamwork grow . Two month ago , Japan had a big earthquake . I was n't affected because the epicenter is far from my prefecture . However , when I get paper money , I put it in 2 partitions . ( Korea has a 4 kinds of paper money ; w10000 , w5000 , w1000 and check ) I 'm busy so I ca n't write in my diary . . . . . . Bye bye . I am listening to the Presidential Inaugural Address on my podcast . His speech is very good ! ! Syabu syabu is very popular japanese food . Nabe is vegetable , meat , fish and etc . and , very delicious ! During the meeting , some professor and I discussed a way of teaching science . A professor gave me a lot of advice . When he finally left school , he travelled to New York , where he became a student at drama school . I am sure that although most of my painting friends on Facebook are just virtual friends right now , someday they will become my actual friends ! ! ! It has been a really really really long time since I last wrote my diary ! Actually I just dropped by after following up an introduction on jandan . net about this interesting place , [ insert space ] where people WITH DIFFERENT LANGUAGES AND CULTURAL BACKGROUNDS can exchange their ideas and thoughts . . . Most importantly , it allows native language speakers to give suggestions on your blog , [ insert space ] mainly about how to write it in YOUR second language . . . [ insert space ] A pretty cool idea ~ ~ I am college student and I belong to soccer club . His ball technique is unbeliebable ! ! The loneliness that keeps out a charming smile . Beyond my idea . I really like that city because it is not only the first country I 've gone to overseas but it also has many tourist attractions . Many lights were reflected on the sea . It opens on Saturday and Sunday . Oh , I remember a man who could paint a picture with spray . However , it remains unclear how this affective bias affects the memory as the distraction . Visiting a grave . As we know , the smoke of a cigarette contains various kinds of harmful chemicals . Some of which have been proved to cause lung cancer , such as nicotine , ammonia , ethanol , carbon monoxide , arsenic , and napthalene . In fact , there are some cases a cigarette is the cause of a house burning down . A cigarette can cause serious consequenses . I readThe Economist , however , and itsaid thatJapan ca n't escape The lost decade because of indifference towards politics on the part of people and politicians . I disagree with the statement . Indeed , how to change our lifestyle is a crucial problem . 1 ) Clearly state your purpose ( why you want to be or do so ) and prize . Although I drank a lot of wine with my friend for 6 hours last night , the result of exam was A . Once the mark is caused , it is permanent . Yesterday , I took part in an interview for the Beijing Western Sunshine Rural Development Foundation . There are many university students going to there to help improve the current situation . Though I failed in this interview , I finally get 3 days off in a row here . . . A five - year old girl was found by Russian police in the Far East territory in Russia . So many people are suffering from hunger and poverty in Russia these days . The police brought charges against her parents . Finally , we decided to buy a sofa ! Although I have n't got a lot of money , I buy a beautiful clothes . Even though I could n't understand the words well , I could enjoy the pictures and the sound and I roughly understood the story . Spending time with my family , visiting my grandma and going to a shrine to pray for a Happy New Year for all . . . I 'm very cold , but there are many air - conditioners that are used all over the area . Also , I have to attend my class , but I 've been getting up late , so I have n't been going there . Please check my diary ! Yesterday , I went to the New Internatinal Students Welcome Party at my university . I l learned how to find ecnomics datas . It is a very interesting place for me to make many friends and communicate with many foreigners . I 'm so frustrated . Now it 's pouring still harder like turning the bucket over Please do me a favor and tell me the meaning of this sentence : The men are in a snack . My ankle was sprained in the afternoon when I played volleyball . . . It 's so shameful when I recall it now , because there were many students on the volleyball court . . . Maybe I ca n't play volleyball for a few days . . . So it damages a lot and many people feel uncomfortable . So I suggested it to my 3 co - workers . If you are available , please correct them . Although I 've lived in japan since I was born , I am now planning to study abroad in Canada this july . I think that just only speaking Japanese is unworthy in a global world . so I hope to contact each other by using this useful site . I felt as if I were moistened . An intense tornado struck Joplin , Missouri in the US . and elementary school teacher . I like traveling all around world . But unfortunately since we do n't have that , my husband just grated onion for me while crying . I recommend to you ! My dream come true Finally I really hope go along with them . . . But , on reflection , the postage price is as large as the price of the clothes . So , I regret now . Many friends recommended this drama to me before , but I did n't watch it because I was watching another drama , `` Lost `` . In our company , the phenomenon is found surely . Those who are in their twenties do n't like it more than those who are in their thirties , and the occasions to drink it seem to decrease . When Joy entered Mcdonalds , Ji and Min already sit . I should have studied more . . . That was her first solo concert and her first CD was released on the same day . After that , I went home and practiced soccer and today , I practiced passing , trapping , dribbling and guarding ( ? ) . The session is a drop - off class but it 's a 20 minute drive from home , so I waited for her for 2 hours in the cafe nearby . It made me feel very busy and tired . ( My neighbor / One of my neighbors ) is attending an Italian course in the Italian Institute , and told us on Sunday that Giovanni will gave a interview talk about his books , and will play a few songs in the Institute on Tuesday evening as his debut in London . I study dentistry in hokkaido university . My part time job is tennis instructor . My First Writing Although I have been learning English for a couple of years , my writing skill is still not good enough . Frankly speaking , I do hope I can make some progress in writing . The idea of helping people improve their language skill by SNS , totally attracts me . My vocabulary is limited . because the less people there are , the more you can have the opportunity to speak English . The teacher asked us several questions . However the financial crisis recalls the ghost that Alan Greenspan exorcised in the late 80s . May God help America , I ca n't stop praying . I ca n't speak English well but the teachers are very good so I will certainly grow . Yesterday morning , I drove my indian female friend to the animal shelter . I do n't know what will happen to me as a volunteer in the future . Furthermore , there is the English test on next Saturday , so I hope I can cope with this test with confidence and knowledge which I have studied for 6 months . Writing is one of the most difficult skills , I hope I 'll improve it using this service , moreover I hope to get to know new and interesting people here . Who have and know new ideas , and can enrich my life with new conversations . so my essay is always basic level . Even then , it 's an arduous trek . It is natural phenomena is n't it . Why do some people accept homosexuality ? I do n't know exactly about that . Writing a diary is very exciting for me . . . I think that learning other languages not only gets a skill of communication but also obtains another country 's method of how to think . Me interesa el flamenco , la salsa , el viaje y la gente ( ? ) . ciao . It was very crowded in front of the Mona Lisa . I 'm curious . what does ' cracking up over ' mean ? `` Food desert `` means a situation where many people , particularly elderly citizens , have problems buying food because a lot of small shops closed down due to the emergence of super markets , department stores and discount stores , and large shops are generally far from shoppers . Pottery ! `` in the magazine I got when I exchanged ( or switched ) to the iPhone4 . I am studying economics . I scrubbed the inside of rusty frying pan with a brush . After that , I ate an egg tart at a bakery . There are many similar words between the two languages even though one is a descendant of Latin and another is from Germanic . I decided to keep a dairy everyday . Please read my diary . Three days before I found a music video of my favorite group on internet ( You tube ) , the Four Marionnets played Coldplay 's song . The remarkable stage effects and stage staff ( marrionnets ) were interesting to watch . Time goes by so quickly . I remember what I was back then . . Nowadays people ca n't live without them if they want to be a part of society . It is coverd with honey , sprinkled with nuts , and has added chocolate and icecream ! One professor in my university said he has a favorite foreign language word too . Development of Tea in Taiwan there were a lot of people , many foreigners there , who played soccer , baseball and badminton . summer is coming : > The pictures in japanese books and magazines are of course nice , but But , this is girl only university . I rushed to the nearby bank to see the fireworks , but I could n't . In fact , I had n't had a computer until I entered vocational school . When I lived in Korea , I usually ate rice , vegetables , and meat . Why does bad food taste better than healthy food ? Because the big typhoon is coming . I have fun . In Kochi , they are eaten with only salt . I love my friends , who are sadly suffering from a cold . Now , it is around 3am in Japan . It is raining and I am listening to the sound of the rain through the window . As I pretended to call a policeman , However , almost all the people in Tokyo live their ordinary lives , like before . I 'm taking a bath now . I sometimes take a bath for a long time ! ! ^ ^ I have passed the intermediate interpretation examination in Shanghai last month . Syllabus was well written and the class followed syllabus Professor provided feedback after the exam or assignment . I watched English teaching programs hosted by CCTV , Taiwan TV , and read my textbook each morning . And I would never forget a word that I have learned , including the spelling . But I ca n't spell a word quickly , for instance , the word infant I can only take it as a whole instead of as `` I - N - F - A - N - T `` . I can pronounce and write it quickly , though . I think English words are similar to pinyin of Mandarin , I am good at pinyin , so it 's easy for me to master English . I never paid any attention to English grammar , but well , it does n't matter . But now , I have been studying Japanese for 5 years and I 've nearly forgot my English . One interesting thing is that I can speak English casually without worrying about grammar error , while I am not confident at all when I speak Japanese ; there are always new problems that I encounter and I can not express myself well . Accidentally , I found this site and registered here . So I do not do well like everyone . The Summer . . please help me . . In the summer there is a holiday for schools and universities in the majority of countries . I forgot the name of beach though , this is located in La Paz which is in the southern part of California peninsula . It is so peaceful like the name s . O shin . . . Japanese serial You can see the clouds and lake stretched out below . My major is Accounting , which is a so complex a course for me to study , but it pays to work hard in this promising subject . My dog died and I lost my job . My business failed and my money run out . She also worked as an inter . Because I thought being a doctor is a great job with good pay and that nobody wants to quit . I will conduct an experiment at a university in Kyoto beginning tomorrow , where I will stay for about a week . The first picture is at Tokyo station . One dog ` s name is YURIA , she 's a poodle . One dog ` s name is RIMU , she 's a poodle . I decided to write a diary gradually starting today . I could n't find good gifts which will make her pleased . This is the first time that I write a diary . I ca n't even grip a pencil . My hobby is playing sports , especially Basketball . I am on the bus going to the church . During the course , we taught them how to make dumplings and chatted with each other I 'm 24 years old and I 'm a systems engineer of a securities company . programmer ? and I did excercises with my best effort . when I was finished , I could n't laugh about myself ^ ^ They talked to each other for a while . In recent days , I have not been happy because I quarreled with my boyfriend . I admit I overdrank last night but I was still sober . Some even advise me to invest 80 % of my time studying mathematics . As the story is so interesting , I read it quickly . I thought I wanted to become a warm person like his neighbor . Even if the story is sad , the book was funny and interesting . Later , I want to watch the movie ' The Homeless Student ' too . The students can not swim in their school 's pool in the big city because of the water shortage . The farmers have terrible quarrels about water for their rice fields . Although I have lived here in Taiwan for over 20 years , I still ca n't get used to the hot weather . Although the temperature there was higher than in Taiwan , the weather in Taiwan is usually hot and humid , which makes me sweaty and uncomfortable all the time . It was July 4th yesterday , the birthday of America . Because I felt dizzy when I drank it . Well , not exactly . To make friends with foreigners , for business purposes , to go abroad . . . . Hello everyone If it 's a coinsidence , then it 's quite a big one , is n't it ? Additionally I will meet my friend at night . I think this main function is to call somebody . While I was riding on the rocking train after that , I remembered what a priest said . He said that they ate many delicious foods and had a nice time . Today , the introduction of my family . I have parents and brother ( s ) and a dog . Today was very cold . After have a bath , I will go to bed . In Japan , it will soon be `` tsuyu `` . Now , when I thought that XiaoBei parted with Haizao XiaoBei felt deep distress because she was not faithful to him . It 's been a long time since I last logged in on Lang - 8 . Great Thank Rabbit and King Goodbye Lion My writing is terrible , so I feel stressed / nervous about writing in English . I think speaking is much easyer than writing . The theme of this special number magazine is ' running ' , and I 've decided to start to run . Writing is necessary to improve language So , I will search for another plan ! ! Tonight , it is such a beautiful night , the stars are so beautiful . I saw a news report about a solar - powered airplane that can fly using solar power in the daytime and with batteries at night . Several days ago , I had a conversation with a foreign teacher , who comes from Germany and teaches German in my university . I could n't conceal my excitement at this communication , because it was my first time communicating with a foreigner face to face . We just briefly greeted each other , and then there was a long silence . The score was 7 - 83 , Japan was completely defeated . ( How should I describe a person like him ? ) anyway , I 'm still confused how to use it ? When the climate is wet and really cold , it 's hard for me to wake up early . I do n't have enough willpower to study more and more in morning , wasting lot of time . Fortunately , this week is holiday and I do n't have to attend classes . Their dance and rhythm is fascinating to Japanese people . I play the flute . That makes keep up hope when watching dreadful stories of the world . I graduated at a university this year , but the ceremony was carried through . It was postponed by influence of Hukushima 's strong earthquake about 3 months ago . He has just graduated About 15 minutes in the first half , Paul Scholes was kicked by a danish player and got his knee ( or ligament ) injured . Before I went there , I did n't like studying English . And I like taking pictures , traveling , eating good food and drinking , haha Tomorrow , I will look for a new residence . Due to the specifics of being with the people who are from elementary school to high schoolers , I am supposed to know how to treat them accordingly . There are about ten little kids in my school bus ( mainly , I am in charge of monitoring the school bus ) and among them , there is a first grade kid who I have scolded a lot for being loud . Relieved : I 'm relieved that I obtained the offer for the job . Recently , I do n't have high motivation . . I will leave to Tokyo , by JAL at 3 : 50 in the evening . Then , one of my colleagues assisted me and appealed that kind of needs When I meet the manager of the HR , he demanded an English interview . I 'm 24 years old . My mother , father , younger sister , younger brother and me . For Valentines day I make gateau chocolate every year . So , I like gateau chocolate . Because it is funny and different . Red can pretend to be dangerous and it 's sexy . The whole tasting process was so enjoyable , watching the sparkling champagne in the glasses made me feel living in the high society , although I am not ! Singing Taiwanese songs in KTV makes me high , and I hope tomorrow I will have my cell phone number ready for a good hiking trip ! Two of them are on Visual Basic 2010 , the other is on Visual C + + 2010 . I have programmed in C + + before but I have totally forgotten the specification . I want to be an efficient programmer ! ! and earn more money ! ! I 'm already depressed with my exams , I do n't need to hear that 3 hospitals and 5 Primary schools have been bombarded this morning at Gaza . When I first came to Tanzania , we changed at the rate of 1300 Tsh to the U . I went to a vegetarian festival in Kyoto with my friends today . It 's not good looking or useful so far . I used easy word , only present tense , and not complex words ; perfect tense , passive voice because I want to know whether subjects can make relatice clauses or not . How do you study language ? It 's a software to memorize words and phrases efficiently . Are you good at memorizing new vocabulary items ? It 's not surprising that we forget our memory Please try this method if you would like to study new language efficiently . You can surely memorize many new words ! But my family had trouble , so I had to solve the problem immediately . It has been ten days since the Chinese Lunar New Year . Now I have a lots of great photos that me and my friends took yesterday and today . The next time I 'll see her is in the summer . In my opinion we have argument between security and the risk against [ parasite ] of each school . I have never search it and also read , so I am not sure how [ ura site ] is but it seems that student write about other student 's bad point or something hurts others . Mobiles could be very useful to prevent the crime from children . If my friend has time , we 'll play catch ball or watch games . If you are the one of people who lent me a hand on my survey , I really appreciate it . In the end , she sent me some useful resources about the theme by e - mail . Today , I had three classes ; English , Japanese and Chinese . Because it was the weekend today , many people visited . Because all of the employees are kind and happy . Sometimes foreign people go there . American , Korea , and Chinese people . And I also attended the Chinese classes in my Company . Yesterday , I had a class titled `` perfect pronunciation `` at the university . We learn the North American English pronunciation in the class . Michael Scofield . Like other girls , I was meant to be a fan of Michael Scofield . Anyway , I looked up on the internet about Wentworth Miller hoping that he is really a person who is like Michael Scofield in Prison Break . When I was a junior high school student , I went to Kyoto . As I 'm interested in Japanese history , especially the `` Shinsengumi `` , I want to go places that have a connection with the `` Shinsengumi `` . People do n't look interested in a naked artist performing on the street , a group of tap dancing people or a movie filming location with a lot of famous actors . Their birthday is tomorrow . I 'm looking forward to tomorrow . When I pay , I found that I have 4000 yen . There are beautiful flowers here . However , it was lucky we was able to meet one of the customers and tried to make him purchase our product . So I can not understand the actions of the sea shepherd . Although the decrease in conversation is a very serious matter , the number of such families has increased . The holiday is celebrated every year on 1 September since 1984 . I am not a student for 9 years already , but I have never forgotten this holiday ! So now I need a good environment for me to learn . I will watch it again when I go back to Japan . I 'm studying English and Chinese . Our teacher asks us several questions . When I looked around on the way to the school , cars were stacked , and streets were filled with people . To make matters worse , everybody was walking very slowly like a turtle . English is my second language and I have been having a hard time getting Canadian professional accreditation in order to practice nursing here in Canada . Although she always made out with her husband , she ca n't speak English that well . doom : The criminal was doomed to get the chair . We Chinese can not log into SNS websites such as Facebook and Twitter . We can just lives under the `` umbrella `` I made handmade BBQ sauce today . It contained soy sauce , garlic , sesame seeds , sesame oil , and sugar . Inside of it there were 3 motors and metal frames , This Exhibition is called `` Interior Life Style Exhibition `` in Japan . It is done once a year . She told me about her friends who went to america to work and travel and take care of the childrean in the usa for one year . A pack of cigarettes is expensive , is n't it ? ! I swear , I will never smoke cigarettes . So I will have to study hard from tomorrow . Hi all . This is my first time posting something in English . I 'm from Moldova ( If you know where that is . ) Soon I will immigrate with my family to Canada ( My father , mother and sister . ) So Girls , I 'm free . ^ _ ^ . . Today , my father will cook Okonomiyaki for dinner , which is a Japanese style pizza , for the first time in a long while . I am going to keep watching CNN somehow , although I ca n't completely understand what they say . . One of my hobbies is playing the guitar . I 'm learning Japanese but now I 'm just a beginner . So that 's why I chose the 5 - fingered socks as his birthday present . I held a drink party for my friend who will get married this October . I hope for their happiness . Yesterday , my friend told me about Lang - 8 . Sometimes I pretend I 'm one of the characters and say their lines . Maybe I just have no feeling , no spirit , no inspiration to write an English journal entry , I do n't know . This evening I got the news about a volcano on Mount Kirishima in Japan ! but when I take her for a walk , she is so crazy ! I wanna sky jump and bungee jump and go surfing before I die . but I 'm a little chicken , can I really do them ? by the way , during 2nd period , I went to a tiring progress of education class . It had English language for the details . Then I checked it , and Inside of the diary there was a story from someone . I was really excited and kept reading the diary . Then I saw many pictures from him that were inside the box and a card that said `` Happy birthday Noy . `` ^ _ _ _ _ _ ^ Ohh my , that was the first present I got . Inside it was written something such as `` I hope it will reach you before your birthday . `` Then my mouth opened and finally smiled and I said to myself `` Thank you , my wonderful from Lang - 8 . `` I want to write about one of my favourite series Desperate Housewives . It tells about their life , their husbands , their children and relations with their neighbours . I woke up at 7 o ' clock , and then I washed my clothes . It continues from June to July . I wonder why there is no rainy season in Hokkaido . I hope to go to Hokkaido during this season . We enjoyed it . I found the Penguin Readers books in my town 's library today . She is so friendly and nice . The visible air pollution reflects certain wavelengths of sunlight back into space and this weakens the effect of visible air pollution on the earth . I think I 'm going to go to the library later ( today ) . What I do is I first check my library , and then only if they don ` t have what I want , I 'll think about whether to buy it or not . I like shooting games , some of them are violent , but I never want to kill people . also I do n't think I 'm stupid . Movies , books , TV dramas , those entertaiments have some violence , but adults judge only video games that are not educational . And do you think violence expressions make us obscene ? And surprisingly , when I went out to drink some days ago , all of my friends said `` Wow , are you on diet ? `` OJT wa tanoshi katta ( The OJT was fun ) Watashi no Jikan de hiragana wo benkyou shimasu ( I was wasting my time by studying hiragana ) Hello . Starting from this week , I 'll be writing a blog . By the way , I decided ( decided ) to write a diary EVERYDAY ! My condition consists of physical and mental something . Maybe we can exchange opinions ! If you want to make friends , let me know ! In the future , I want to write about my hobbies and music . Now Japan has quake and radiation problems , so yesterday 's concert was held for charity . Women 's final of the Wimbledon championship tennis tournament will start at 22 : 00 Japan time . He is going to Kochi Prefecture today . I 'm going to meet some friends and have dinner with them . In the congress , 7 minutes of presentation and 3 minutes of question time is allowed for each presenter . What a wonderful food name XD Has anyone eaten it before ? Today is holiday work . I went to the office in Tokyo by Shinkansen ( bullet train ) . If it 's right , does this sentence , `` Bob does n't like you very much . `` exist grammatically ? I want them to overcome the pressure and win the next game as well . We went to Palace of Verailles , the Louvre Museum and Mont - Saint - Michel . We went to chateau and took part in Marathon . Weather forecast says it will snow till midnight . Have a good weekend I think I will go to shopping and look around the market . I would like to buy a new magnet . There are a lot of stores in the weekend market . I hope you have a good weekend . Her school has a cafeteria , but underclass students tend to bring their own lunch boxes . I like investigating blood types . The result was n't bad because my score was fifty points higher than last exam . I think that the cloths which are sold in the shops at daikanyama are somewhat more expensive than in other shops . I think it is good for me to improve my English . My English is so poor ! It was a windy day in Tokyo yesterday and the day before yesterday as well . Our country have been inviting soldiers from many years ago , but they areonly a handful ofthem . Would you check my English sentences , please ? I am confident that if you practice Korean with me , you will have progress . And I forgot my umbrella . I have a friend who is very popular with men . It 's completely obvious that he is into her . ( His behavior is better ? ? ? ? ) Firstly , Let me introduce myself . Our tennis team practices almost everyday . calligraphy is difficult , but it 's a lots of fun . However , I wrote not only my insistence but also my gratitude to them in it . We would just simply connect to the Internet . My major is Architecture . I could n't figure out why because he never told me how he felt . because the weather was bad . Today 's schedule includes ethics , mathematics ( logarithms ) , Korean history , mathematics ( matrix ) , Korean literature ( poetry ) , and Korean geography and self - teaching . When you were a student , what was your favorite subject ? Also , I 've been searching for a Japanese language school abroad . I hurtmy finger when I was making dinner . Halloween is not as familiar in Japan compared to other countries . This necklace was made by me . A Church is in fact a place where people who admit that they are sinners gather . He sacrificed himself for me . I hope I 'll be able to visit there someday ! 2 ) that the modern youth are so silly / perverse / just awful etc . It 's complicated to judge though . But when I looked at the tables after the customers had left , there were so much leftovers as if some of the dish were left untouched . But sometimes I see customers who order a lot of food and only eat a little of each dish . Food should n't be wasted , and both customers and shops need to consider this problem . So I moved a little to give them some space . I tried writing what I 'll talk about in an interview . The senteces below are ones that I made for small talk before having the actual interview with my job interviewer . even though I lived in Australia for 1 year , my English is not perfect . I 'm doing better at English than I ever have before . ( Frankly speaking , I used to say this expression like `` I 'm getting better in English . but some good friend on this site corrected it ) . In February 2010 I bought a new one . I 've read that this grease is cool , because it 'll cause sand and other things to not stick to the chain . Yesterday I read the label on the grease and . . . I used it as was written in the manual and it works . and it was my first time to hike with a bike and also my first time to be on the top of the volcano . The crater was just in front of us , it was amazing . So the result may not be too much valuable . I wonder why I do n't like the feeling of the upcoming Valentine 's Day , maybe the reason why I dislike the day is because I 'm single , and have n't celebrated with anyone yet . some guy told me that I 'm too picky , and my expectations were too high , but that was not true . I have to be patient to wait for my prince , the one that may not look good but has the responsibility to build up our relationship , the relationship that I 'm looking for is one where we understand each other , and no matter happens we can forgive each other . It was cloudy and rainy . This was a good opportunity to improve our relationship . Please could you correct my sentences ? Address : I live at Sunter Jakarta Utara street ( , ) Agung Perkasa 1 Blo ( c ) k J 4 And with futsal until now I 've made a lot of friends . So I have to learn at least two languages . However , the decorations were totally well done ( they must have spent a lot of money ) and there were some big actors like Meryl Streep and Dustin Hoffman playing small roles in it . Many cherry blossoms were in full bloom and many people were walking and playing . Why does the government hold these flower activities in the fall ? My vision Someday , I would like to go abroad for business . I 'd like to make some sentences to using these below ; If we went shopping together , I would n't go well - known luxury brand shops with her . I know [ that ] , we should n't go there . I thought , `` This school is suspicious . `` It 's an honor for me to meet you on this website . The reference is below . At the same time , another roommate said : `` Teachers ' Day is on September 20 , is n't it ? `` This time I could n't help but laughed . She has been living in Japan and can speak almost fluenty . they were considering only buying one bottle of whiskey . Fortunately I got a chance to study at a university in northern England from February to June of this year . ( In other words , the spring semester for 2007 / 2008 ) . But I saw a good site at my office . I have n't met anyone in this apartment but I 'm looking forward to meeting inhabitants . Today I watched sequences from Mubarak 's trial ( ex - president of Egypt ) . I saw in old Egyptian movies that they put the accused in a cage , but I thought it was an exaggeration for dramatic purposes or it was only used in the past . I was wondering how he managed to remember who was representing who in that chaos ; lawyers and attorneys were scrambling in the front . He asked in an angry voice for everyone to sit , and they moved slowly as if they did n't want to . Even though we do n't know the correct pronunciation in English , we can still type English words . So I guess it was a good desicion for me . Through traveling , we can learn to cherish everything that we have and encourage ourselves to work harder . When I took a bath , it smarted . These places display a slice of traditional Korean life for both domestic and foreign tourists . Also , the Korean folk villages showcase the ancient techniques of making pottery , baskets and instruments . But I want to recommend this place for foreign tourists who plan to visit Korea soon . When I was a junior high school student , I belonged to a basketball club and I enjoyed playing games . After we got a new coach , my club won the first game . new coach , `` Thank you for coaching us . `` He said that our club It was important to have a good coach to become better . My mother is growing some herbs in my home garden . My favorite is Caffarel which is a famous Italian chocolate . Today is my birthday . because I have many bad days When I met him for the first time , I did n't know . Okinawan people do not have a good image about the American military . I thought he had not forgotten about hes ex - girlfriend and still loved her . So we became a friends . Should there be more government control of the Internet ? Some people say the government should reinforce control of the Internet . The government fears that in other countries the public can easily share information and in the end this may lead to political upheavals . Nevertheless , some people argue that the need of government control is to prevent frauds from using the Internet . But most people know how Internet fraud is and are more cautious than before . Hello , I 'm Kana . recently I 've begun reading a book by H . I want it to be like programming other computer languages very much . Today , I had three courses to take , but , after taking just one course , I must go home because I hit my hip while stepping down on the floor . They are sooo sweet and juicy . I ca n't believe that I have an acne problem now . I 'm bummed out from trying to find a way to lose it . What does ' twist of lemon ' mean ? that 's because I do n't know when I can use ' be aware to ' It seems as if we have shared this bad condition . My first food was scrambled eggs . I took Joban line from Ueno station to Katsuta Staion . It seemed to be close to the Kitasenju station . He was n't intersted in Tokyo skytree but Joban line . c especially funk music ! My father is indifferent towards money . I should go to university now . the TV said , BANH MI is the top favorite food in NY . of course , sometimes I need to wear a wetsuit if I enjoy free diving or swimming in the ocean for more than an hour . A shark is behind you ! ! In that picture , a shark was behind a man ! ! It is so scary . . . Hi everyone : ) My name is Alyssa . I 'm planning to go back to there again really soon to work on my undergraduate diploma , and get a job there . Anyway , I congratulated him on his wedding and then I went to take a computer exam . MOS is an exam which tests my ability to process office programs ! I made some sentences . I went to the university library in order to study for final exams . to tell the truth , I have written an English diary before . . but I broke down . What do you want me to do ? ( We prefer conveyor - belt sushi restaurants to classical sushi bars , because it is less expensive and has an inviting atmosphere . ) But , unfortunately , I failed to take pictures since my camera had run out of power . 4 , Click `` Update `` button , and that 's it . Their expressed policies in the manifesto are as follows : The government subsidizes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . I 'm so glad to join you , a platform from which to communicate with friends all over the world and improve together . Their songs and concerts are very powerful . Meals are also more expensive than it was before Spring Festival . When my classmates asked me about how my spring break was , my answer was homework , writing , writing , homework , and homework and writing . Forth , I ever chat with one guy in a QQ group who ignored me after I talked only a few words to him due to my bad English . With my hardwork in this passing days , I could view the progress of my english . From now on , I will strike while the iron is hot to further my English study . The snow masks the top of the mountain , even when the sky is clear . There 's been so much news about Google in the last two days , since Google indicated it 's considering closing its business in mainland China . Philippine adventure I am learning how to survive in the Philippines now because the people and enviroment here is so different compared to Taiwan 's . Every jeepney on the roads has a different appearance and I guess they are all decorated by their drivers , some are really cool . If the jeepney is full , the other passengers will stand outside the jeepney holding something ( ? ) to make them steady , would you dare do so ? As a result , the heavy traffic pollutes the air terribly . Food here is sweeter and there are few vegetables . My mom has 3 bothers and sisters , and all their family will come back to spend New Year together . They do n't know how to talk gently and I always just feel so uncomfortable and try to escape them . Although we are good friends , but I still think it 's embarassing to show her my room . That made her sick eventually . Some students told me they want to come to watch the bee fireworks when it 's Lantern festival . teachers told me that writing a diary in English everyday helps you make sense . but I 've never tried that before . Once you experience a striking event that affects you , you can not help feeling this kind of event will happen again . around you thinks you to be less attractive and even to be ugly even though it 's not true . I assume almost everyone has experienced a similar feeling and realized `` I can not live that way , I wo n't give a hoot no matter how badly I climbed the tower and I had a beautiful view from the tower ! ! I found atenkaippin nooodle shop in Ebisu Tokyo . While I was trying to build a fire , my daughter was playing around and searching for wildlife . Of course she released them before we left . This day is devoted to the memory of millions of Jews killed during Second World War . We do n't have TV today and all public entertainment places are closed . I tried to make plans on Friday , but it did n't work out haha because we dropped by taco shop . A magnificent and gorgeous view greeted me , and I said `` hello `` . And I saw the mansion ( ? ) of the owner of Ralph 's grocery store , and we went to a friend 's house to eat burritos ( ? ) ! However , as we chilled out and laid back on the sofa , they did n't want to attend the party . This afternoon , I suddenly remembered my Lang - 8 's diary when I sat in front of my computer . There are some cities with over 1 million inhabitants . This is a happy fact . But , I think the most popular and useful language is English . it 's really useful . A : I do n't agree with this idea , but actually , it is important for young people to learn English for jobs , licenses , and so on . In other programs , she will take part in a footrace , a dance and the race in which all the students roll over big balls for about one meter . Her grandfather and mother will come to see it . It is a very interesting position . I wish every dream of yours comes true . Because my university 's English courses do n't include speaking and writing . I hope summer will come soon ! : D It was during basket ball . We 'll Meet Again : The Most Beautiful Scene in All Movies about Nuclear Weapons Tomorrow is Saturday but I am writing a test . . . but I was very nervous because I had to play with many good musicians . I hope to meet a lot of friends and have a great time with you here ! . My bad habits I have some bad habits . But recently I have been trying to fix my bad habits . When he meets me , he always smiles . Contact lenses The economy still has n't recovered since the Lehman Shock and we unfortunately have had a terrible earthquake and nuclear accident . I was surprised to see a junior high school student ! I bought underwear and accessories at h & m . all the dishes taste very good ! ! It was a pretty good day : ) Unfortunately my university curriculum did not include English courses , so my English ability has not improved at all . However , nowadays I feel there is a necessity of studying English whether I like it or not . nowadays , English is a mutual language to be used to discuss . There are a lot of tourists from all over the world . But I like not only Japanese culture but also the cultures of many countries . You know , it 's a kind of notebook in which I write my favourite recipes . Of course , one which is made based on Chinese geomancy ( feng shui ) . However , I can not stand the train rush hour anymore ! ! ( could n't ) You may feel thatyour ribs are nearly broken , or that you nearly lost all your senses from the oppressive feeling / strain on your chest . Actually I 've heard that there are also severe traffic jams on the road among commuters in the morning in some countries , so I dont know which is more stressful - a crowded train or morning traffic jam . Now , I totally enjoy managing the club . I am always thinking about how I can improve our team . They are a wish for especially boys to climb higher and higher or rise up and up in their lives like a carp . They will collect 1000 charity bags into which are put various things , such as stationary , toys , animal dolls , books , candy , cookies , sweets and so on . She said to me , `` I like Japan and Japanese people , so I will stay , even though 90 % of my friends have returned to their home countries now . `` That was in March . But , strangely enough , I can naturally wake up at the same time as before . Few days ago I luckily met Andy on the Internet , he is also involved in the mentoring program , as a mentor . Can I have him be my mentor , if it is convenient ? At the break time , my class mate gave me a sandwich and I ate it . After school my classmate and I went to a foodcourt and we chose Indian food . But after the last election held this August , the LDP failed to continue as the ruling party , and gave way to the DPJ . I worked in a Japanese restaurant for four years as a waiter and cook . It gave me a strong sense of responsibility and helped me learn the importance of communication . Would you teach me correct English , ( space ) if it is not too much trouble ? When I went into the shop , I was surprised by their menu and atmosphere . But it 's difficult to make them by myself . It 's been a while since I have logged on to Lang - 8 to write a diary . Japanese SNS `` mixi `` But these days , many mixi users have stopped using it , and moved to `` Twitter `` . I am now having a plan to study abroad in Britain , so I have been to an english cram school for a couple weeks , but it 's hard for me to improve my weakness . The room is packed with people . If you eat too much , you will pack on some pounds . English Class He always talks with `` Thank you `` `` That 's fine . `` , `` Good `` , And he 's very fashionable guy . The last person is Barney ! He is teaching about how to converse well . We had pizza while conversing with other freely . It was my first time talking with a guy ( ! ) in a coffee shop ! Please check if my writing is correct or not . Recently , I 'm crazy about ' gossip girl ' - an American series . Love , sex , scandal and framing are the hot points of their life , endlessly and addictively . The complicated love game and expensive fashion of the show attracted many people 's eyes including mine . I think that 's the reason why this series is so popular with people all over the world . I think my presentation was not good enough beacuse I was too nervous ! ! But I 've decided that I will go abroad next year ! ! ! ! ! ! I want to write essays . Now I found this site and start to write English daily . I decided to send a text massage in English as soon as possible for studying English . I tried to spend time with my son on the weekend . But , I had such a hard day on the weekend , so quite a few tourists come here from abroad . oh my goodness . . . . . I greatly appreciated Samgoht 's review . So I still went to the `` International business negotiation class `` . It is the most challenging part for me . I felt a little bit embarrassed at being incapable of performing as well as them , so I seldom speak in the class . They all agreed on my terms and it made me feel so good . My ( self ) introduction . Since I was hoping that Tokyo would be elected as the next place of the Olympics , I was disappointed by this election . Olympic is the most popular sports ceremony . and I want to watch this event directly . They often wake up early , and go to sleep late , which me feel challenge around . is somewhat unbearable . However , the most depressing thing is I might move to a new campus with my classmates that is far from the city center , far from my girlfriend , far from my love . I have no choice but to try a long distance love . He is a very dependable worker , and the boss will promote him to supervisor in the future . It was a J - league match in which Sanfrecce Hiroshima ( our home team ) fought against Jubiro Iwata , and they 're going to fight in the final of Nabisco Cup in November . ^ ^ The result of the game was a tie but they needed to win ( ? ) to move up near the top rank in the league . Now I 'm making up my portfolio for my . job - hunting . I found something in front of us I was suprised that 5 chickens were walking My fiend said , They sometimes appear and I thought that this movie was a comedy . because the aliens and humans were gambling and buying and selling meat and cat food . connect with last sentence to do walking instead of running to keep fit . prepared dinner with my mother . Usually people are afraid about the future or the past . When you live in a foreign country and get a cold or virus , I 'm sure you feel more lonely than you would in your own country . I just started using Lang - 8 because my English is getting worse . I had been studying Korean linguistics in Korea My photo blog 's text OK , A little about myself , I am 22 , I like music ( Leona Lewis is my love ) , sometimes I play the guitar , but I am really not good at it because my hands are so small that I ca n't hold the string correctly . Although , when you want to have something you should try to be consistent and learn to love it , right ? I 'm a Japanese web programmer that is studying English . I want to talk with people of a foreign country during a trip . How can he remember people 's faces ? I 'm going to go on a business trip to Nagoya city to attend an exhibition about dental techniques . I 'm going to go to Germany and France during the Christmas holidays . I want to see the Christmas market in Germany and go to Paris . Actually , the stint at my current job has been shortened . It means mountain girl , yama equal to mountain in Japanese . They wear colorful sports clothes and with pretty bags and shoes . Of course I have climbed the highest mountain in Japan , Mt . Anyway I ca n't recommend climbing mountains in the summer . I often felt thrilled and could enjoy those all . Actually , I have a sleep disturbance . This sickness is called `` Periodische Schlafsucht `` . Drowsiness makes me embarrassed . The doctor gave me some medicine . It seems to complete the recovery , usually by the age of 30 . The next day was a long - trip day . We traveled to places as many as we could : Tian ' anmen Square , Summer Palace , Wangfujing Street , etc . We took lots of pictures , especially at Summer Palace . It was definitely a nice place in Spring ; the warm soft air blew , the green mountains appeared to be tumble masses , the lake lay smooth and clear , and everywhere in it was a fantastic picture . You would feel relaxed and happy . However , there was one thing I did n't like - there were too many people there , people people people . . . A consultant I saw yesterday told me that he painted pictures for fun and sometimes put his components in exhibits . He also * said he should have painted earlier . What is the difference ? I want to go abroad on business near future , so I need to work hardto learn English . I went to karaoke with my friend ! I went to an Indian style restaurant with my new friend . her manners were really bad . She was extremely impolite to the salesclerk . When I was a university student , I was a part time salesclerk . I used to seeing impolite attitudes . I felt bad for salesclerks all over the world . BGM `` Natural Beauty `` Kimi ha tennnennsyok published 1981 This CM was broadcast in the Summer of 2004 . Stress makes me inflexible . My energy is being decreased more and more . I want to go to Venice with my friend . and then visit Venice . Classics makes great effect on our life because they can teach us how to confirm our aim and they can help us figure out things that we must hold , they can tell us what words are the most beautiful and make us feel happy , when we are reading classics . First , in the modern times , people have more and more work to do , so they have n't any time to read books . Can I meet Arnold Alois Schwarzenegger ? LOL I feel nervous now , but I 'm looking forward to going there anyway ! : ) I spend most of my time ( conscious and unconscious time ) in the library . I decided to get some exercise every day or every week to be healthy for my family . The movie makes me feel `` disgusting , ridiculous , warm , and suprise `` at the same time ! I was reading The Guardian this morning , trying to find some interesting news when I ran into this subject : URL I think we 'll get recover from this situation soon and wish for the people in Miyagi and Fukushima a better life and peace . Today , I went to `` Shionoe `` with my girlfriend by motorcycle . The Amego was good tasting . At this moment , there might be many people wracked by violence . I think a person who is not satisfied with their life is usually violent to relieve their bad feelings . `` He loves snowboarding `` was in front of this sentence . `` That `` in this sentence points to snowboarding . Can I say `` It 's right up my way `` ? Some people think it would be a good idea for schools to teach every young person how to be a good parent . The class may touch on the parents ' difficulties and the students can understand the tough situation . I do n't know the reason . The reason why I agree that meats are better than fishes are as follow : There are many trees near my place , and lots of cicadas are singing from early morning till * midnight . I am going on a vacation tomorrow . I liked ' Romance ' sung by Yoon Sang Hyun and Yoon Eun Hye . And also liked `` I Love You `` sung by Narsha . For example many goods shown on computer screen are n't what you actually get . Today , I read an interesting article in the newspaper . Ten years ago , NY was number one , , the second was LA , and the third was Bangkok . About my Hobby My hobby is snowboarding ( ^ ^ ) But I did it only once when I was fifteen . I belong to the snowboard circle with my high school friends . I went to a snowboard goods outlet on this weekend . I bought gear . Hello , this is my first post here . I want to use English fluently . Preaching is difficult . Lately , I often listen to the CD `` Rhythm Nation 1814 `` by Janet Jackson . I endeavor to deal with this problem . 2 . I endeavored to get good marks in the mid term exams . I had to hurry to I 'm going to the hospital But , I know I have to study basic grammar and words . This book does n't have a lot of sentences that explain grammar and words . At least its possible to buy it this year . So it is a healthy fruit . Because of the break down , there are some inconvenient situations . Because of lack of electricity , some things are inconvenient for the uneventful people like me , but I 'm afraid for the people who live in the north east part and the people who depends on medical instruments which needs constant electricity . I thought `` who moved my cheese ? I wonder what this means . . ? `` Then I read it but . . . it was not interesting . Yesterday , I watched the movie `` Harry Potter and deathly hallows `` . I have watched Harry Potter movies released before this , I enjoyed this movie . I am looking forward to watching partv2 of Harry Potter and deathly hallows . at 8 : 30am on August 61945 the first nucler bomb was launched on hieroshima city in japan . The people did n't know what happened , The light turn to darkness and the people who were under the bomb disappearedlike sand . How it is go with wind I was hear about hiroshima bomb but when you hear about thing it does n't like when you see it Radiation from the atomic bomb changed the human body and DNA of those that were not born yet . Perhaps I am a lazy girl . Lately my daily routine start with Starbucks 's black iced coffee with sugar but no cream . The first one is a picture from a magazine . Second and third are captured pictures from Um 's MV . My favourite foods I usually eat bagel with ice cream and syrup for lunch , and I 'm going to do some stretching tonight . I 've been getting up at unregular times lately Please tell me your favorite book , will you ? she did n't understand that these pics showed the same person . Worst of all , grammar is very difficult . I like him , but communication is very difficult . I was pretty hungry , so I ordered extra large portion . `` Everything 's gon na be alright `` is a song that I like very much . This advice carries out my thoughts . If my mother deleted my facebook ID or Game ID of High level , I would not panic but instead quell my anger by writing something , but I ca n't do anything like him . ( but it 's so funny haha . ) I thought getting furious differs between individuals watching it . When I was in International school , I met many foreigners and one of the things we talked about was marriage . The writer said that Japanese education is based on the national isolation policies ( ? ) of the Tokugawa Era . It means that Japanese education is affected by Japan 's isolation . But he did n't come anytime , so I could n't see him . Yesterday , I had lunch with a colleague . She majors in violin . She played the violin to a piano accompaniment . For the concert my friend practised the violin day and night . This is my second time working as a prompter girl . When I took her to find service personnel , no body could help her because they could n't speak English . There was an earthquake in Christchurch , so my many friends worry I never feel frightened . I would like to learn how to write English good and to make some good friends . One week has passed since I came to this farm . I 've been enjoying taking care of the ducks although it has been the first time because they are really cute . Wedding / marriage ceremony I met a Japanese guy who looked about 40 years old , and 20 years ago lived in the U . I think it is the happiest thing for children and young people to receive `` red paper `` from their elders . The tobacco association publishes that tobacco sales will be down by 25 percent . It is a shame that even my English teacher 's English pronunciation was very bad . The doctor suggested to me that swimming is better than jogging for my injured ankle . On `` my `` way there , I stopped by `` a `` well - known ramen shop . I spent 10 hours from Taipei to San Francisco , and I stayed there for one night . I cleaned my house and aired a futon . Like Harry Potter or Danielle Steel or Candace Bushnell . Internet shops offer more opportunities but all the books I really want are very expensive , nevertheless sometimes I can find something not crazy expensive and interesting there and buy books this way . I would like to make friends and practice English here . Does it depend on the situation ? The Beatles are very famous in Japan and I 'm one of their fans . Anyway , the Beatles song that I like best is `` The Long and Winding Road . `` My favorite time is watching TV while eating side dishes and drinks . Android by google . These phones are the best in technology and have wifi , gps , 3g connection and more . I 'm really interested in that . Also I likecameras with high resolution and a good flash most . I really take a lot of photos everywhere / wherever I go . Well that 's all for the moment but if someone has one of these phones then please tell me your experience with it . Moreover , I only bought it about a month ago . I hope I can enjoy the rest of life here and the experience that I got here would be helpful for my life . There are so many adults , thoughts of people tend to complication , sometimes , you do things unintentional , but it 's seems that you 're on purpose for others ; and then , you will ( see ) jealousy from girl 's eyes , do n't dare look into their eye , so cold , unfriendly . * * * * A Singaporean blogger on Naver , the No . 1 Korean search engine , introduced this site on her blog and I wanted to see how it works . There is an old saying in China , `` Trip to China 's five great mountains render trips to other mountains unnecessary , and a trip to Huangshan ( the Yellow Mountain ) renders trips to the five great mountains unnecessary . `` by Xu Xiake , a famous ancient geologist . Another famous scenic spot is the Guest - Greeting Pine , people usually wait there to take photos of a tree so vivid it looks like it 's saying hello to the tourists . However , no matter how many companies I applied for , I haven ' t I go to the calligraphy school every Saturday . It was so delicious . But , I threatened ( worried ) that I gave them too much information about it beforehand . From what I have heard , some people say that movies will definitely be eliminated because they are old - fashioned while other people say movies will exist until doomsday . Big misunderstanding concerning `` about `` by Japanese people ? Although I can write only short sentences , please correct my entries strictly . If you would like to learn Japanese , let 's learn each other 's languages together . Soon I found out that all its feathers were wetted by the rain . The movie was about the end of the world caused by the sun 's radiation . I 'm a Chinese girl . In addition , I have learned a German word `` Hallo `` . Today , the traditional New Year event is being held in my town . But it 's April already . I do n't know exactly who his first owner was . But when the original owner was about to abandon him at a children 's playground around his apartment because he was so naughty my grandma saw him and she asked the owner to take the puppy to my home and feed the poor one , he lived along time with us , but I 'm afraid he could have lived longer . I still believe some animals are better than humans . Although I hate skipping an appointment to chat with my Skype friends without sending any message , I skipped four appointments today . Grade closed But , many students in our grade were absent from school . So our grade was decided to be closed . I hvae to learn more about how to use it ! MT stands for membership training and it 's a time when a group of friends take off for a quickly overnighter . I love this fantastic story / movie because of its beautiful images / cinematics and its cute characters . They are ' Yae - zakura ' cherry trees and are of a different variety from the cherry trees , which bloomed at the begining of April . It was clear and blue . In their mind , English is strongly associated with taking tests . Since globalization keeps going on , we Japanese have to improve our ability to communicate with people from different countries more or someday we 'll be left behind from other countries such as Korea or China . Basically I 've been depressed recently because some of my friends are going back to their countries soon . I said thank you and good bye to him and went home . He was depressed and unusual . Today we are having a forum about the research that my lab conducting ! I will be back at Lang8 tonight if I am not exhausted ! After graduation , I will go back to Japan to be a teacher at a high school The reason why I feel so is that Japan is a homogeneous country , to make them broaden their horizons I know that this story is a little naive ( I mean the BBC serial ) , but I like it mostly for wonderful music , costumes ( Morgana 's dresses are extraordinary ) and pictures . The strong advantage of the book is the author 's original point of view on the `` old religion `` involving the Great Goddess , magic etc . and her disappointment about Christians who does n't understand that `` All gods are one God `` . I am reading a book entitled , `` The Presentation On Secrets of Steve Jobs I will write a report and do a presentation on the book next month . So I made an album for him . Fourth , I have a plan that I go camp with volunteer group , But there are n't many adult so I 'm worrying if `` We can care about children perfectly `` . . . Obama 's inauguration speech I 've heard Obama 's inauguration speech by tube ( web - site ) today . I resigned from my job last month and will work in NYC from Dec . 31 , 2010 . I like surfing , running in the early morning and going to musicals . Who can deny the cuteness of the muppets on the children 's TV show Sesame Street ? If a waiter like him was exist in the real world , it would really disturbing . And this will make your life brighter , I promise ! Do n't ask me why , but she told me that we had to investigate cell phones in Japan . Please look at the picture . In fact , the boss was almost ready to make the decision to expel her . One thing I really want to say , especially to teenagers , is that , please do n't hesitate to tell the boss the truth if Unfortunately , the weather was bad while I was in Taiwan . We actually concede that & nbsp ; it is n't a smart thing to try to keep this relationship after our separation since we do n't have any actual plans to meet each other . I knew that this was going to happen the day he leaves this country from the begining of our relationship . & nbsp ; It does n't mean that I can handle this . Today , I will go to IKEA to buy my TV - board . and I felt excited to see someone 's correction . Yesterday there were just 6 people . . . It was conspicuous because my hometown only has few buildings . . A New Year 's party was held . We drink alcohol until midnight every night . : Close your eyes , otherwise , you would n't see anything . A firefly was flying as high as the roof . If they come again , I 'd like to teach them Korean games . Recently , I saw a lady wearing make up in the train . But many people cry over naughtiness of young people . All day , I was under the sun , I might get sunburnt . I saw a lot of sheep , and took photographs . As for me , it 's illogical to celebrate Christmas on this day , because originally Christmas was related to the Winter Solstice . it is an amazing drama : ) I regretted that I had watched it too early . I want to watch it for fun and studying listening in English . I love English , but I am not good at writing essays in English . In fact I guess I might not sound too modest but I think I 'm fairly good in English , good enough to sustain basically every type of conversation . I thought it drilled so deep into the soil that it had to be close to the centre of the Earth by now . Monsters were coming out of the hole in the ground that the machine was drilling into . I used lettuce , tomato , onion , cheese , fried egg , bacon and a burger of course this time , and made the sauce a bit sweeter which was little more luxurious than last time . I went with some friends and that did not cost so much because one friend of mine gave me his ticket and so I flied for free . My jack - o ' - lantern has two faces , funny and scared . I will take a white handkerchief from my pocket and signal with it by waving . So difficult . The video was about a person who tried to play bumkijum in the river where there has got crocodiles inside . Frist , I saw this and not sure whether is a fake video or not , but I thought the man who did it should have ben eatten by crocodile or got a little hurt . Today I have finally recovered completely . Even though I know that walking is good for health , I prefer `` Gran Turino `` , with its lingering depth , over `` Hereafter `` . The AA English conversation club members came to the party . If an enemy came in front of me now , I would just want to say : `` Do n't look down on me . I will knock your head off ! `` & nbsp ; To achieve a breakthrough on the Global Financial Crisis . My kindergarten was attached to a temple . But we have many teachers and when they started teaching us they start teaching the same thing over and over . In effect , we can not speak English at all . I ran ten kilometres up along the mountain and then down the other side for another ten kilometres . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide open view makes me feel freed from everything . If your native language is not English , do you remember your first English class ? I was so excited when my first English class was about to begin . After surfed the net for a while , I got hungry and made myself spaghetti . Although I do n't quite understand what the movie is all about . This actually happened 4 months ago I cried again and again and finally my boss answered me ! I am a student of the dept . of commerce management . For example , my friends are from Okinawa , Fukuoka , Oosaka , Kyoto , and Sendai etc . . . And also , there are a lot of foreign students from all over the world . It is the greatest thing in my life that I can meet many people who come from different places ! On November 2nd and 3rd , there was a festival at my university . The bad thing is I do n't have many options . Vacation Abroad ! I will join my friends in Singapore and we will stay there for three days . Although the weather forecast said that the rainy season is over , It has been raining frequently for the past few weeks . When the solar eclipse could be seen in Japan , The weekend is over , I do n't like monday , and im login the lang8 to see whether someone corrected my diary , but the result let me down . It 's not that I am missing my family and friends in Korea ; I opened my refrigerator . I had some chicken . First , I marinaded the chicken in soy sauce , cooking wine I then rolled the chicken in Japanese basil . I fried the chicken . It was very delicious . I will cook it again someday . I looking forward to meeting us . `` day hospital `` meaning outpatients clinic Yesterday I arranged the song for we will use for dancing , We could sing to the accompaniment of a guitar which the master played . My favorite sport is table tennis . Lang - 8 is very interesting because many people are communicating with each others languages . but everything that was said has truly become past tense ; which we can no longer change through useless force the beauty of your background resembles a beautiful burning fire Because I will want to enter university . I want to study biomechanics . I went to the driver 's license test course to pass the driving skill exam this morning . I was so tired today , I woke up at 7 am and rushed to my training place . We started our rope skipping training in the early morning until 11 . 45am . Just like me , she likes to travel a lot , but we do n't have enough time . Last holiday we went to Normandy in France , but this holiday we are going to go to Italy . Today is the last day of my holiday in the Spring Festival . I will have to go to the office tomorrow and work hard every day , so I have to wake up at 7 : 00AM every morning . But I did n't speak English well . The foreign conversation school that I 've been studying English at for about five years has gone bankrupt today ! Japan 's English education system 's history . So `` English native speakers `` means Americans . This morning , I read all of the handouts the teacher gave us . I 'm a beginner here , but I 'll make effort 's to help guys who want to study my mother tongue , Japanese in turn for your help . I 'd really appreciate if you helped me ! ! I was involved in a dance club . The only thing I can do is to apologize , explain , and hope that he will forgive me . I think that this is a also reasons why people commit suicide here besides of the unmaintained path . The atomosphere was very quiet . The board said that those caves were used to preserve foods several hundreds years ago . As I have long expected , today is the day that my new school term is starting . Of course , I was studying hard at my house until now . Human power created by pedaling a bicycle is being considered in an institute as a renewable energy resource , says the Shukan - Press in Yahoo news Japan . It says you can watch TV for an hour using the power from pedaling a bicycle for 3 and a half hours . At first it makes me angry , but then I think that they are right ! The sauce contains mustard , mayonnaise , a little bit of garlic powder and chili powder . Lang - 8 is a special website . I 'm glad that I can use it to improve my second language here . I was shocked at the news about Asakusa samba carnival 2011 . The participants are American , India , Brazilian and so on . We ate our lunch in buffet style and we were full and satisfied . We bought clothes , ate an ice cream , play a console game and talked about fun stuff . There were many dogs and kids at the park . thay are really good and cute and have ideal figures - long slender legs , well knit bodies and beautiful big smiles . I am senior university student . I went to San Diego with my husband and dog for Thanksgiving . San Diego was different from Chicago in weather , topography , even in houses and people . 3 - Dreams . This interesting topic has been on people 's minds for a long time . Some people even say that dreaming is a sign that we are sleeping the perfect sleep . I 'm listening a song called ' Nothing Lasts Forever ' by Maroon 5 . It was a SF & horror short story and very fascinating to me . And I found that it was made into a game . I thought if this short novel would be made into a movie , then it would be very interesting . I read a comment on Youtube that this novel is going to made into a movie . And also someone commented , `` Where did you hear that from ? `` When I searched for other information , I found a post that translated in Korean ( but not all of them ) . I 'm so exhausted from standing through the night . nai ! un daijoubu daijoubu , netto tsunaide , tomodachi no Kazu to hanashi wo , netto ni tsunaide , skype tachiagete , log in . . . but I 've made up my mind to only study hard / concentrate on my study . Today 's diary which I was just writing has disappeared ! I do n't have callange ( ? ) to write the same diary . . . I have to prepare boiled eggs . All of the media outlets here keep reporting news about New Zealand 's devastating earthquake here which is said to be New Zealand 's deadliest natural disaster . Please tell me how to study ! ! This is my first time writing something about love . I left my girlfriend two weeks ago . I can log in on the weekend ! ! I want to improve my vocabulary and train my ear . For example , I microwaved the pasta that a customer bought and forgot to take the vinyl out which made the pasta explode . Anyway , we ` re going to meet tomorrow and I hope it will be a great rendesvous ! Many historic architectures are much bigger than Japanese ones , such as temples and castles . `` Please remember me kindly to all your people . `` Because of a lot of drinking chances , my condition and wallet funds drastically decreased . Today I encouraged myself to But my opinion caused a strong because we decide the final choice we need . Maybe she was right . I 'm a little nervous , but I 'm looking forward to working there . Got an iPod touch I got used to traditional American happy endings and I hoped that everything would be all right until the last moment . . . Nice to meet you . My hobby is fishing , skiing , and playing the guitar . I watched the movie in English . I want to be good at English . we were studying together and one of my friend said I could n't remember who paid the bill this morning I woke up boarding house of my friend S , when you eat out at restaurants you normally can take the leftover home . or other European countries , which will lead us to save food , money and the earth in effect . ( In Japan , the beginning of the semester starts from April ) Although I have the experience of doing man - to - man one - to - one lessons , this is my first time performing my lesson in front of a lot of people . And I was very nervous and could n't do a good lesson . Legs : Cross - legged , the right foot placed on the left thigh , and the left foot on the right thigh . The Zen Master struck my shoulder when I lost concentration during the practice session . I want to improve my english , so need your help to correcti my english : ) I choose to learn physics department there If it 's not rainy , I would like to go to a sports event in a local junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operationg hours of their airports to accommodate passenger and cargo flights from foreign countries . Residents near airports argue for curfews . Discuss both points of view and give your opinion with reasons . but , I feel a comfortable mood . Hi , I want to learn English . haha I am a bit clumsy Anyway , it seems so exciting to ski or snowboard in a foreign country ! But now I still have a muscle ache . . . Please , correct this passage . We will play a practice game tomorrow . I could speak in English fluently . I would be capable of a heavy workload . and be cheated by vendors . It took over 40 minutes , but it was good exercise for me . My laboratory was not comfortable since it was terribly cold and dry . ( more concise ) Actually , I decided that I am going to remain here yesterday . I could n't bear the heat . In addition , many newspapers said the TEPCO CEO 's annual salary should be cut down more . Recently , I read and voice the same article such as address , novel , thesis and so on . Ultimate Frisbee My friend Jeanie took me to the event . Before the game started and after it was over , I talked to many American students and all of them were so nice . The teacher complimented me on my pronunciation . The shoes that I ordered came to my clinic yesterday . When I saw them on the internet , I could see them black and the infomation about the shoes and it also explaned that they were black . What is difference between ( the ) and ( a ) ? How should I use them ? I want to hear about how Cambodia is now from him . I think doing exercise is a suitable way for me and I started go jogging after work . But the problem is when I go jogging . I 'm a little bit concerned whether I will get sick because of the hard schedule . . . I know a light daily exercise is good for the health but I should think of when to run . I 'd like to know your thoughts about it . The silver weighed about 200 tons . I am reluctantly go to college because of the chilly and strong wind . I thought she would be very pleased when she entered the room and saw these small decorations . When I saw her at first , she looked gorgeous ; like a super model . Unfortunately , I could n't see her there , for various reasons . We Japanese love that poetry . I prefer writing in English to listening , speaking and reading English . Therefore , in English class , I sometimes felt embarrassed with my poor ability of English I learn English . But even 8 marth wo n't be a day off because of the stupid university 's schedule . she said `` I watched an English TV program , It shows the latest English to us , and famous TV programs have the power to keep anyone 's interest . `` It contains big fillings ( which are usually , meat , onions , carrots and potatoes ) I am a university student but I am not good at English . It is so moist that we break a sweat every time under a non - air - conditioner ! There looks to be much more sediment disasters by the heavy rain , especially in the Kyushu area . They always make me feel happy . Today would have been fantastic if it werent for the bad weather . I heard and was very surprised that there 's no rice cooker in a foreigner 's home . something like ' day book ' when you translate it from German into English , so perhaps it is something where I have to write what I 've done today . When I finished , I went outside and helped my grandpa in the garden . It started to rain , so we came in and my grandpa and I tried to make a meal , but it was n't good , what we cooked . And I 'll do exercise tonight . There are many types of drinks that taste like beer at the supermarkets in Japan . I was advised from the doctor I 'd better not to eat or drink too much , performmoderate exercises , avoid a stressful atmosphere as gout is a desease caused from unhealthy way of living . One of my friends from Canada has a lot of knowledge in improving health , ( There 's nothing to stop him talking on that topic once he starts , and you 're doing nothing but just nodding . ) Although I 'm interested in this book cover and title , I hardly have the time to read this book as I am busy studying German and attending a Political Science course . But now I 'm in Beijing , so I 'm homesick . , I try to learn English , but I do n't like to learn words in another language , which I do n't use in my daily life . If I do n't use a language every day I 'll forget some of the words . I do not mean that 's bad , I hope everyone has a happy life . Birds Singing I sometimes hear their song at the same time . I can hear these songs near my house . Please check the grammar and logic in my blog . An apology from Japan If you speak native English and want to learn Chinese , then we can be language partners . Second period was boring , and in third period we ate tortillas and salsa ; fourth period was study hall , and in fifth period , my friend and teacher were so kind , so I felt happy , and ( but ) the other classes were also boring . My stomach was full from all the rice . But it was very nice movie ! It 's a serious but heart - warming story . In the evening , I did n't bring my text book to my English class . For example , I like to invite my friends to my place , enjoy my favorite cigarette in my room , listen to rock music , and drinking a little alcohol before going to sleep . . . so on ( sounds like I am a teenage boy XD ) . Living under their care make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . This is my first entry , please , have patience with me . I do not speak English but I really want to learn . The Remains of the Day is a great novel written by the Japanese novelist This novel is the winner of the Booker Prize . The protagonist in this novel named Mr Stevens is a great butler in a house called Miss Kenton loves him also and she spends a lot of time trying to draw his attention to her love for him . He knows that , but he represses his feelings and ignores her . The first choice is doctor . The second is engineer . But , so long as I do not give up , I know that there 'll be an end to my hard journey . My car has a warranty of 2 years without any limit . I have it for 75 month ( ? ) and has my car running 30000 km because I 'm like a tourist on a car . I was sad sad , but I remembered about yesterday 's work . The day before yesterday , I cooked rice with hashed meat . I had not cooked too much until I became a university student . So , I was researching it for a long time . For example . . This situation has recently been severely condemned . I went out with Yumiko Shaku . Ms . Shaku is a Japanese actress . Then you put them into a pot with a glass of white wine , chopped vegetables like onions , a piece of garlic butter and a little bit of red pepper . You seem happy . Today , it was held a display of fireworks in my local city and since it has been conducted nearby my house , I have to hearsounds of the fireworks every year whether I am unwilling to or not , because I do n't have a girlfriend . In fact , I have learned English during junior and senior high school . We would often wave an antenna to catch signals from the transmitter while monitoring . The explosive on the GPS collar was triggered when we pushed a button on the controller . Suffice it to say that the point of my research was to see whether or not the distribution of the persimmons coincided with the emergence of the bears in the residential areas in 2005 . Nothing has happened yet ! I woke up around 7am and I thought that it would better for me to go back to bed so I could have some extra sleep , and since today is Sunday , I have a right to indulge in my sleep . I gave up on sleeping and decided to cook something . I borrowed the DVD `` Sabrina `` last week . I wear like the same clothes everyday . hello everybody ! I was so excited since I did n't need to resume my assignment again ! Ah , I assume I 'm going to move out of this house on the start of November , but have n't found a new place yet . . . although my studyng habits are n't good enough , I 'll do my best . . In my eyes , she is an 88 year old woman acting as my grandmother and guardian , I wish her good health ! You have to know the customers , competitors , and products . My job is to loan out electronic devices . so I see many travelers . but we have few customers - - only about 10 people in a day : ( I 'd like to talk to travelers every time I see them , but I 'm worker , so I should speak fluently in English . . , , ( confusing sentence ) I started a new project about food this week . The first chapter tell us that it was the god who created the world . Someone may believe that `` God created the world `` and someone may not believe . As an elementary school student , I hated diaries like this . so I had a long rest last night . Hello . My name is Hayabusa . I 'm going to Hukushima with my boyfriend and club friends in February . And going to Kyoto with my best friend . Of course I will never fail to live up to what our parents expect of me : I had hope that during these days , I 'll be able to walk in our mountains , collect some spring flowers and feel the fresh , warm sunshine on my body . Every single room is already cleaned , on TV there are only 3 channels , so probably nothing interesting there . I think we are going to the French restaurant with you and my daughter . Two researchers . I do n't think it 's a bad translation , the language represents the national culture , if I want to understand novels and the other arts from abroad , I do n't think it is a good idea to translate it . I checked it with a mirror and did n't find anything wrong . However , it hurt and started to swell . I am going to put some eye drops in and stop using contact lenses until it gets better . A big earthquake happened in Japan The building which I worked in shook very much . At that time , I did n't know that many people suffered from much more damage . I discussed this problem with my co - worker who stayed at my home . ( Her home is too far to go back on foot . ) What should we prepare for in the time when the infrastructure such as water , gas , electricity stops ? I will graduate from my university after one year . In fact , I am a little worried about my job which I thougt was so nice . I want to bridge between Japanese companies and foreign companies . I think I want to take it easy . I knew it through a TV commercial . I wanted to look for some information about Harry Potter and the Deathly Hallows part 2 . Therefore , many people have already watched the movie ; they had seen the kissing scene betweeen Rupert Grint and Emma Watson . I 'm not crazy like this but I 'm a bit disappointed as we have to wait for it until August or September to watch it on DVD . I downloaded some applications like Kanjiryoku , Pac - man , Fairies Life . I do n't know the details , but I thought that their family relationship had become very strong . They love a stuffed frog that we have . We got on airplane with Kero . I do n't know whether or not they are better than the job I am doing now Your career is just beginning The head of my ward told us that he would like to hold a feast at our public house . When I was in university , I read lots of history books . I can concentrate ( center ) myself when I do . ^ ^ It will be tough , but I believe in myself ! This Capilano Suspension Bridge is 137m long and 70m high / in height . But , it was very difficult . I CAN ' T speak , write or hear English . This is the same for almost all Japanese people . I was taught English in junior high school , high school and university , but I still do not understand English . Therefore , I would like to be able to learn english as soon as possible . It 's delicious ! Sometimes there are foreigners who have funny Kanji tattoos . I 'm waiting to have a meal I plan to meet my girl friend today . I was glad to see famous scenes of Swan Lake . Near my house , KIA has some volunteer language classes , we call them `` English table `` or `` Korean table `` or `` Chanese table `` This article was `` Disabled athletes have balloon in their court . `` He ca n't speak because he is using a respirator . I start keeping my daily entry since today . I 'll be glad if you enjoy reading my daily entry . I noticed that American movies ( are filled with humor ) , and European and Asian movies have great story lines . My problem is , I ca n't stop watching them . It was very exciting to watch the later part of the game , but the first half was boring because both teams attempted a brake attack . My friend SONG introduced me this website just now , which looks funny . I tried to change to another bus to go my house . It was the first time I had taken it . I have something harry . It 's my telephone and modem to connect to the internet . I had only 9000 baht that I spent to connect the internet and return to my mom 2000 baht ; at the moment , I was poor . The teacher asked the class whether earning money was a good or bad thing . But I ca n't think that it 's a very very good thing either . Friday night ! It 's Friday night . I have a sore throat from the cleaning spray and my hands get rough from the washing up . Today , I have two classes in my major . Weather is very good and very comfortable . My company is close to the park that the ward office maintains . Usually , people look forward to cherry blossom viewing . so most of people had cancelled the cherry blossom festivals . I will tell the following story tomorrow . I saw Charice on TV Do you know the Filipino singer , Charice ? That may be the reason I feel afraid to meet foreigners who can not speak Korean . The Mid - Autumn Festival My trip to Huizhou I 'm home . I feel so tired . . I want to go bed immedietly . . . . I ca n't speak english very well as if I forget everyrthing I know john said practice made a perfect which means it makes me feel alive and makes happy There is a song named < who says > by Selena Gomez , who is Justin Bieber 's girlfriend , which I love the best . It 's a beautiful song which has a large numbers of fans supposedly . But it is different from the others . Interesting huh ? I 'm going to my grandmother 's house in the evening . Tonight is one of those nights where you are with your friends ( who are dancing in front of you trying to have a good time ) , but you feel like you are missing something or someone . I just wanted to share my thoughts . I hope tomorrow can be a better day . And a suicide rate has been increasing in recent years . So , the government needs to change the policy about worker 's environment / working environment . Moreover , because of its efficiency and convenience , we use technology even if we can do without it . And some traditional arts are in danger of disappearing because young people are less interested in them . Hello , Thank you for coming to my page and helping me correct my journal entry . Then we sent returnable postcard to all of the 400 alumni , all men . After making the postcards , it was time to enjoy the full moon in autumn with good food and good music . We grilled Saury on Shichirin , which are used for traditional Japanese cooking of Vegetables , meat , fish , and other things . I like cycling very much . But of course people in the epicenter got extremely damaged . Usually , I should write Koji , but the American teacher at my university said I had better write Kohji if I went to USA or any other foreign country as the pronunciation of ' Kohji ' is more natural ! ! Another person in the passport center told me that if I decide to use Kohji , I have to use it all the time from now on when I write my name . I have asked my teacher friend how he uses photoshop to detate a background . yesterday my friend helped me to clean my computer and delete the virus After listening to four announcements related to each of the pictures that were printed in your test book , you should select the right number , among four , that best describe them . because I had imagined that `` to hang up `` was used for `` picking up a telephone `` . The trouble is that I often skip it in spite of knowing I should read . I only played about thirty minutes , so I did n't sunburn , which is good . He is tan because he surfs every weekend . Surprisingly , there were some people who were even tanner than him there . I suppose they caused some trouble . Just when I realized November has started , it 's already finished . December starts tomorrow . sister also joined the exam . All her roomates had However , my seniors ( or upperclassmen ) said it was just so so , obviously my seniors ( or upperclassmen ) had confidence in passing the exam , He screamed because he wanted to sleep . I am sure that this message is true because I had experienced this before . Most families will watch special programs for the Spring Festival on CCTV and chat together while waiting for the new year . I nedd to write slogans for some of these products and services . Write a sentence , [ space ] use comparison . Recently , my hair falls out very easily . : O ! ! One way is from spring flowers blooming . Some sales clerks are very friendly in Japan , for example , at Starbucks , but they never joke around . . . Ordinarily , I go to a shopping arcade which connects with Shinsaibashi - suji shopping arcade . You can also say usually My English probably has a lot of problems . They are speaking , reading , writing and listening Anyways , learning English is harder than I thought . This time was the second for me , It made me very relaxed and comfortable . Above all , the cost was reasonably priced . I thought I am proud of him and that I am a very lucky mother because of I have a great husband and wonderful son . The Olympics have started ! Especially oral English and listening . I was very sleepy , but I did n't have any classes , so it 's okay . Because I just woke up , I 'm really hungry , so I ate a lot of sushi . This device enables people to have relationships with others all over the world . But sometimes we do n't care about a person actually in front of us . His looks as if he has no enthusiasm for anything . He wanted to sleep but he could n't . Ah , I 'll go to Italy again someday . I bought a video game `` Assassin 's Creed II `` for XBOX360 . The relationships are sometimes obscure and many of them are formed impulsively , such as friendships and love relationships . In contrast , Facebook has succeeded in expressing them on the web . The winter from the four seasons by Vivaldi is good 5 minutes after we had entered there , we had gotten sweaty in small steps . I think that I ca n't sleep deeply because of the heat . But I 'm confused because learning Italian is reading Roman but English is not . I 'll resume studying Italian when I have made progress in English . Today I found this language learning site . During this season , flowers come out splendidly , and everything starts . I told to the participants about the following : [ colon ] there are black and white pictures Marylin Monroe . picture and in my favorite store , `` Bathroom Graffiti `` they sell pictures of Marylin Monroe gnawing on her nails ! In 2005 , there seemed to be lots of sightings of the bears in residentiall areas around Japan . As far as I 'm concerned , they had been killed for nothing besides the safety purpose . Some parts of them are edible and I do n't know what to call it , but some of their organ seemed to be sold for expensive medicine . The Argentinan football squad will come to Japan on October 8th to play a friendly match . The presale of the tickets began last week and I tried to get 2 tickets , but unfortunately I could n't get them . The official sale of the tickets started at 10 o ' clock yesterday online . There were so many people accessing the website that I could hardly access the purchase menu . Finally , I could do it after a 20 - minute effort . I met many different people . A couple of days ago , when I worked there , I happened to miss something . Yesterday was very hot and very wet . I showed the pictures which we had taken in Korea . So I have no complaints about it . . . except the price . Everyone have his / her most dislike things . For example , I extraordinarily dislike cockroaches . Ich lerne Deutsch . Oxygen itself is not combustible , however it is required for nearly all combustion as a gas that supports the combustion process . But of course , while they were talking about their favourite topics , I could n't follow them . I hope this new job will be awesome and really nice . . . This title is not a Daniel Powter 's song ( ^ ^ ; ) . My favorite is travelling , especially going abroad . We took a sauna and had a body scrub and massage . I found that laughing made the people open their hearts . Most of their storylines were like hollywood movies that I had seen before . I have invested almost all of my assets in to stocks , mainly Japanese stocks , but also those of emerging countries . Then he will become a member of the Pharmaceutical industry in Japan , as well as myself . He will use English for his work too ! Essay . . . Solution to Overcome the Threat I found that it is very good for everybody who wants to learn a foreign language . Secondly , I have plans to deal them on a website . As your guys see , I 'm a boy and I have gotten involved in this since I was 16 . At 29 years old , when I was working at a swimming pool as a part - time job , an elementary school student said , Yesterday , I apologized to my customers because I thought that When I was in my undergraduate course , I took some classes on French , but I 've forgot most of what I learned unfortunately . However , I always end up adjusting the batter many times by adding more milk and powder . Two bags were described as `` purse `` , another one was `` clutch `` and the last one was `` mini bag `` . Nevertheless , In many cases , exam questions are about complicated grammar points that never occur in daily conversation . So this is the most exciting moment now that the summer is getting closer and closer . I should have kept a diary on this site every day . . I want to get a high score in TOEIC or TOEFL . `` especially `` long distance love . So I 'd like to keep the motivation and be able to communicate with a lot of foreigners . But because I did not participate any organizations like Students ' Union , I get no extra credit . I do not know whether to join same activities or study much harder . I did n't set my alarm . Because I had parted ( broken up ) with my boyfriend . Of course there is a Japanese kind . I especially like the curry in Thailand . And coconut milk makes the taste mild . I will go snowboarding this weekend . Now , I am so into `` tomodachi collection `` game on the DS . The story was based on a true story regarding a Japanese young woman ; she was a bride whose remaining days amounted to only 1 month . So Chie disappeared from his sight by herself . But she felt shocked that the shape of her breast was cut off because of the operation . Unfortunately the happiness did n't continue long . Because Chie had cancer again . Her doctor told her family and Taro that her remaining days was only 1 month or less than it . So after crying I feel so sleepy now . . . I ca n't write sentence in English without `` Google Translate `` , _ and if I were to be speak English , I ca n't say practically anything . but the day of the exam is approaching . She got her driver 's license about a half year ago and has n't driven the car that much , but today , it was her third time to drive a long - distance Then , she looked into the mirror , she checked that the left side was facing to her . If thats what you mean . Then she was able to control the car and ( it / everything ) was back to normal . It is so popular that you may have even seen it in Japanese TV programs ( I . e . if you like Japanese animes / TV dramas ) . mina san douzo yoroshiku It was shocking to see that dogs are dyed black and white ! It 's the story of the guy who want to be the king of pirates . When she reads it , my wife is so concentrated that she neglects my calling . . . I thought I had to ascertain whether the judgement of the Academy was reasonable or not , so I went to the theater . However there were some unclear expressions about the British Royal customs . I thought Britain is the Queen 's kingdom because the British national anthem is `` God Save the Queen `` . I 've celebrated the Lunar New Year for 3 days . It 's such a big holiday in Korea . However , I do n't understand why we should celebrate the Lunar New Year , cuz it would be better to celebrate the solar calendar . I would like to exercise and live more fully , starting tomorrow . Today I had a very funny nightmare with headcrabs ( from the game half - life ) ! XD Very strange . . . So I phoned her a couple minutes ago . To all the beautiful girls and boys or kind - hearted men and women , I 'm a sophomore student , and will be a junior student after the summer holiday . I had an English conversation class . Such as , The Mentalist , CSI , Hawaii 5O and of course Agatha Christies series ( and novels ) . I am writing a diary of the lang - 8 community at first time . for example , my major papers , and preparing for a test , I am especially preparing for the listening test and vocab test . Now , I 'm studying English at my university 's conversation club . It was awesome . Today , I ate lunch near my university . It was terrible ! ! The British museum is famous all over the world . The museum is famous for art . the museum . The man is very embarrassed . He deletes the picture from camera . I found I must make an effort particularly on listening . After taking a college entrance exam , I felt relaxed . Of course , who would study in this situation ? I have some variations , Japanese taste , Thailand taste , Indian taste , and so on . There was one time , a Nepali student in my class taught me how to make his country 's curry . He used many kinds of spices . Moreover the doctor asked the man `` Do you like a gambling , driving a car at a high speed or spending a lot of time on women ? `` Because , this is my home town and Many hula dancers were dancing on the stage . I 'm excited ! ! but first I will continue ! Reflection . I think It is important that you think about your listeners when teaching English or other languages . I prefer exchanging on a regular basis , but irregular practice is also welcome . I 'm interested in traveling `` . So I want to be a traveler . So now I want to be a pharmacist . I will earn money by working as a pharmacist . I 'd love to answer your questions ! ! It is four days long , and it is going to begin tomorrow ! Yesterday I saw a very funny film about Bushmen . Yesterday evening the film was successfully downloaded and I had a lot of fun watching this old movie . I started loving Bushmen even more - they are so smiley ( informal ) , so naive . It is about one Bushman who goes to `` the end of the Earth `` in order to get rid of a bad thing ( a bottle of coca - cola ) that has caused trouble in his tribe . I can recommend `` God must be crazy `` for everybody who likes hoaxes , nature and old movies . However I could buy the air cleaner for about 20000 yen at an internet retail shop . At present , I have a number of acquaintances but as for me , I have only one friend who can understand my thoughts fully and stay with me whenever I 'm blue or down . Her name is XX , and she 's my best friend . Even now , I still remember exactly how I got acquainted with her . It was a nice morning but unfortunately , I was late for the first day of class . My first impression of her was quite great . Moreover , she also has white skin and thin lips . And whenever I get into trouble and really need a helping hand , she always stands by me and sincerely encourages me . The extracts are used for cosmetics and others to protect from aging or wrinkles . But it is really difficult because NYU requieres a 85 score for TOEFL itb . Recently I have n't exercised , so I was really tired . I also hope that I do not have to pay the twenty - pound reconnection charge , as this whole situation is not my fault . About 10 years ago , when I went to kindergarten or elementary school , I quarreled with my friend . Sometimes when I go to the hospital , the doctor says I am going to give you medicine . I bought a book `` foolish economy ! `` , which is a paper back pocket edition . For a few days now I 've really wanted to eat spaghetti . and I really liked the design . As you probably know we pronounce a word as we read it : in most cases there 's a correspondence between the sound of a vowel and consonant with its character / letter . The announcer was joking about our difficulty of pronouncing the name of this volcano , especially after listening to its real pronunciation . But the most gross , annoying thing is when he thinks he 's mating with Boubika , iieuw ! It 's just too gross and really annoying . Boubika is too docile to growl at Aristos , or just muster up the courage to bite his balls off ! The British English accent is easy to recognize for me . `` Gyaku `` means opposite . As far as I can remember , `` apple diet `` , `` grapefruit diet , `` and `` boiled egg diet `` were once popular with the Japanese woman . I do n't know how to further explain my feelings , so . . . . I have never learned how to write Japanese . Last Saturday my friends held a lunch party to celebrate my birthday . My friends visited a soy sause factory . Street uses jumping landforms , riding on walls and gliding on the hand rails around the street during the competition . During the school festival , I was in the haunted house all the time . So , I did n't write a diary about Jeju . Recently I often go to school On the other hand , the movie producer creates a way for readers to enjoy the atmosphere inside the book . Thus , the moviemaker may rewrite the plot or even create a surprise ending . Yesterday was Saturday . Generally , anytime I go out out , I always find something that makes me remember some unforgettable memory - - or at least , it makes me think . And when the trafficlight just remained 17 seconds , a beggar passed by . In his arms he was carrying a doggy . It was not strange because there are many ( ? ) beggars in this town . I was wondering why a beggar would carry his doggy when he begs . At that time , the trafficlight changed to green , and the beggar did not have enough time to come to my where I was . Well , I am not a studious girl , I can not insist on reading English everyday , even for 30 minutes . I hate myself because I ca n't learn english . I have already bought my flight ticket to go back to my country . I think Destiny 's Child who split up in 2005 was the greatest girl 's group . As I mentioned in the previous message on this site , I 've been practicing listening in English by listening to songs . I think that the young people maybe can , but not the old aged people . So , I decided to go back to America again someday ! ! ! ! ! Cathy asks Miss Isabella why she has this attitude towards her . Miss Isabella confesses her love for Heathcliff and accuses Cathy of being a selfish thing for wanting Heathcliff for herself . Maybe I can help you ! A chicken curry , I will make it ! I have been very busy and I have n't written on Lang - 8 for several weeks because I had to write a article . Can you view this website and write your diary ? ? ? ? ? Some of the them havewireless radios , motion sensors and touch screens and they each produce different noises . It can be true that we can manage everything with only a phone . I think cooking is interesting , and I feel I can get relaxation from it . He met , face to face , an unexpected enemy , Ethan . I think it is interesting because korean food does n't use rice paper . Recipe for Vietnamese summer roll is that raise meat and various vegetable in rice paper and roll a rice paper . I hate studying writing English or grammar etc . . . In fact , I must take theTOEIC test . Even though Japanese people ca n't use grammer correctly sometimes . Especially young people ca n't write right Japanese sentences , I think . There is a `` te - ni - wo - ha `` in Japanese , that 's how to connect nouns and verbs in Japanese . So I suggest for foreigners do n't mind such a thing , we can almost get it . In addition , Jonas was a Yankee and hated all Southerners . As I can see in this school , nobody is interested in foreign languages including the teachers . I ordered vegetable curry which twelve kinds of vegetables were included in it . but now I find it difficult to speak English fluently , and to listen to others speak English . I think this is Asian culture . I want to know when they call a teacher , how do they call them ? Please refer to Seeing so many foreigners can learn Chinese which is already a hard language , I think I should word hard too . At lunchtime , Yoshinoya is usually crowded with many businessmen . However , I do n't play anymore because I got a referee license 9 years ago . I get to meet a lot of different people and to be at many games . Today is remarkable for me because we planted a tree with my boys . How I wish to make our city beautiful and green as a fairytale . My efforts are awkward and shameful . In my opinion , tipping is unnecessary . We should make people happy even if they do n't tip . In Japan , if you go to a restaurant and you have a good time there , you can go there again and again . What they lose is each other 's trust and valuable friendships . I laughed when I heard this . : p Graduates of other colleges or universities are not welcome . Personally , I like being in the atmosphere of celebrating April Fools ' Day . However , I hate being teased by my close friends for no reason . Each of us hate to be teased by others . There is only one holiday in the year so get ready for a fun and interesting April Fools ' Day . I thought that the flower school was a solemn place . Thank you for corrections . Her ability makes me change my heart . She does n't only have Grammar skill but also writing poem skill . Because since I have been here , I never use my own car . I especially like `` Venus `` . Although my younger sister loves Maru more than I do , Maru always goes in my room . Just trying this website . She told me she has not talked to her father for more than a year . Is it a big deal ? The way of my shopping has been convenient , meanwhile ever since the international company came to Japan , many local bookstores have gone out of their business . I 'm a little collector of My Little Pony figures , and I love toys and all stuff from Hasbro . inc which is a toy company like `` Little miss no name `` , `` Wuzzles `` , `` Rainbow brite `` , `` Popples `` , and `` Care bear `` . of MLP figures are still nice , but I 'm not attracted to them so much . . I love toys and characters in the western style . this is because of the deference in the network system and / or the business custom in the cell phone business in Japan . He was very cheerful , active and having a great talk , which entertained his grandparents very much . I really enjoyed this moment . I feel very lucky . In Japan , having a gun is extremely abnormal thing . Today 's event . When we judge our times as good or bad , we ca n't know until the end . I work at the customers ' company with my colleagues . the customers started using it . If my guess is right , in other words , can I replace `` best regards `` with `` all the best `` in the future ? Lately I have been staying up late ( late at night ) to prepare for the tests It 's been over 10 days since I wrote my last entry . It was really funny and interesting . His name is Paul , and he is certainly Canadian because I can see him on a webcam . That 's also why this class is relatively expensive although I only take it once a week . He told me that `` V `` is a drama about aliens and really interesting . ( is `` is `` in this sentence correct ? I did not sleep too much because I was trying to find them . Because my MacBook 's battery was not charged accidentally , I went to a Apple store in Ginza , Tokyo . Hence , for people coming from different countries , the Narita Airport is more famous In recent years , the voluntaristic spirit has spread among the Chinese people , especially among youngsters . Without them , it would be a tough task to hold this un - precedent Olympic Games . English beginner Now I 'm planning to take a trip to the Philippines because it 's warm there and I 'll be able to practise English with the Philippinos . And I must ask my parents . She 's going to Indonesia with her husband . In Taiwan , Christmas is a festival that we celebrate with our friends or lover , not family . I think a plan is finding a part - time job where I can live in the work place and get meals from the work place so that I wo n't spend money on rent and meals . So , she chose this checkered fabric . I can hopefully exchange with many people . The supermarket is named `` FOOD ONE `` , one of the cheapest supermarkets around . For example fruits , such as Oranges or Grapefruits , are imported by USA or South Africa . Meets and Fishes is imported from the USA or China . The purpose of this year is learning english . Today I got up early to eat breakfast . I always get up late in the winter Besides today , the two things are to do the winter vacation work . I am determined to write English everyday , so I try to write in My Journal everyday except when I ca n't do it . I got to know a lot of my future colleagues there . Then I noticed that the department I am supposed to join is ( somewhat ) smaller than the other departments . The news really shocked me ! Then , my college canceled the enrollment ceremony due to the big earthquake . Now , I will study for the test ( TOEIC ) on this sunday . When he was sent to the hospital for his serious disease which was caused by his unlimited smoking and drinking , He decided to quit smoking and drinking . . . . . . But after about one or two years later , he began his ugly behavior again ! but he did not even care and continued smoking . . and recently he was attracted by lottery . . you will never win when you play such games with government ! And with the bad effects of such lifestyles , he can not control his emotions sometimes ! sometime I think his temper is out of hand ! he even roared at home . . but if this kinda situation continues . . . . . It 's hard for me to get up early morning . I am now working in a foreign trade company . I have to talk with my customers in English all day Any topic is okay . We had a nice day . The Google satellite took a photo of something which is almost 30m long and looks like a snake . They are n't sure if it is a real snake , but it is highly possible . I think that there are many mysteries in the world . There is a very interesting myth in my town also . Two hundred years ago , a wise buddhist priest who can see the future told that my town would be destoryed by a huge flood . It was just a myth before one statue was founded . However , we had a really big flood after that , so many dwellers pushed him to bury it . It is a very interesting myths to me . Since I entered a college , I do n't have much time to study . more than 10 years have passed since I graduated university with a degree in English . However , after graduation , I never really got the chance to use much English . The typhoon has passed , and the weather is really nice right now . The new staff said , the other staff members taught her a different way to do something . All of these are good methods to ease stress . Although we know that is not good for the Earth . Please tell me some other good short sentences for use when praising . Even after he went back to Sweden , he continued to study Japanese . from different countries also loved Japan ! ! ! ! Our appearance is given to us by our parents , and it is what we differs from others and it tells us who we are . Life is short , and we should use it to pursue the most important and valuable thing - - - - a beautiful heart . Now , I have become accustomed to working in Tokyo , I think I 'll try to resume this dairy . I almost had no time to relax myself . . . For instance , a hair designer would start learning to be a make - up designer , an animation professor would change his major to be a biology professor and a bus driver would start selling motorcycles . First , let me introduce myself . But it costs 4 times more than the original one . that one second is n't a second at all . I guess I could be pretty pissed off about what happened to me , > ~ < ) In love , I 've been passive except for one slightly unhappy experience . As we always say , money ca n't buy happiness . I 've always been envious of people who have charming looks and perfect bodies . Just at the moment when we arrived at the dormitory , The wallet contains ( contained ) as much as 1000 yuan , which had disappeared just in several minutes . What 's worse , he will be faced with even more pressing economic problems ( during ) the next two months . Before then , I was a student and usually got up at about 9 a . m . When I arrived at my school , it was often about 9 : 30 a . m . Although , these days , I usually get up before 7 a . m . Working changes one 's life style . How difficult ! I used to think it was easy . It is because I want to learn about international politics at my university , but I am worried about my future . For me , that way is really helps me to understand english . Also , correct / proper grammer . actually I started using this site earlier . . kinda polite sentences ! ? or journal ? ! I think it 's quite similar to Japanese mixi . . Just look straight at the future and overcome challenges that we have to face . I 'll introduce to you my favorite tools . First , Lang - 8 of course . Now I am reading The Mistborn Trilogy . I would like to make a confession . And other languages . . . . For these reasons , the newspaper says the younger they start learning a second language the more such classes will exercise the effect . Above all of this , William , the student , was kind to us and handsome . Now a lot of words come to mind , but I ca n't express myself because of my low English level . English occupies a very important position in Korea . I joined an English class after work on Thursday and after the lesson students got together . Every year , we drink that after we visit a shrine , Finally he said to me `` we have diffrent thinking because we are n't the same nationality . `` I feel really angry because he does n't try to understand my thinking . One of them is going to have a match this weekend . Last weekend In my daughter 's class , there is a boy who ca n't walk by himself . When the boy 's group finished , he tried to sit down on his chair , but he fell down again and again . I wanted to help him , but I thought I was little too far from the boy and there were many other mothers or fathers near the boy . Finally , a girl helped him . See you tomorrow ; ) Hi everybody , I 'm Vietnamese and I want to study English . I want to make friends with you , will you help me ? In the last bar he went to , there was an accident . Last night he was interviewed by the TV station and he apologized for his recent behavior to Kabuki fans . I was surprised because I was not that close to that friend . So how was my friend able to smell my hair even though even I could n't smell it ? It is good thing that karaoke is communication tool . In short , I imagined a relaxed life , but my life is totally different from I like to see out from the window when it 's raining , but I ca n't see out from my office , I watched AVATAR with my friend but we wanted to see the 3D film . From now on , I would like to write a entry on a daily basis . I really appreciate if you are able to correct my entry . The theory itself is debatable and the so - called proof is generated from archaeological excavations . I was so surprised and on a high 'cause it was really unexpected ! Suddenly , they asked me to do them a favor and call a worker in a ministore nearby . They wanted to buy some cigarettes and a moment after I walked out of the store and I became angry because I saw my girlfriend crying beside the car . First in The Hours , making a complex and poetic recontruction of Virginia Woolf last days , combined with the lives of another women who , although they were not marvel writers as Virginia , they have the same feeling of anxiety and fear , the feeling of being prisoners in a society which was not sensible enough to understand them . I 'm a secretary . I 'm going to get her a birthday present . On the second day , I might go to AKITA with one of my friends . Every year my children ask me the questions concerning the Holocaust in the Memory day . Yesterday they asked me how could it happen that millions of people followed the words of one - Hitler . I told them about the phenomenon of the leader in society . I told them about the totalitarian way of state . By the way . . I 'm looking forward to paticipating in the X ' mas party with my friends . Because in the party we exchange our presents with each other . I go out and drink somewhere almost every night and immediately I go to bed when I get home . However , in my heart , I want to decrease my spare time and I want to do things that will give me more benefits , not only financial benefit , but also friends , talents , and a peace of mind . . . I also wish the foreign friends who are living in China can enjoy the spring festival with our Chinese people . Now I think I need to understand men more . Suddenly , she realized her cell phone had been stolen . In the WHO 's release , the president of the American red cross board , Bonnie McElween - Hunter , highlighted that `` the credit of this success is deserved by the thousands of heath worker volunteers of the Red Cross and Red Crescent organizations who had taken the time to be informed , to raise awareness and motivate the mothers and the family circles as to the critical importance of the children 's vaccination . Ocarina concert at the Japanese - style hall This was sixth time we performed there . I remembered something writing just now . Yesterday I went to my favorite live - music pub in Shinjuku after my church visit . My home town is not in the country side but it is still inconvenient . If I can get really big money , I 'll go abroad to see world heritages . They all said that we have to save money to have a memorable celebration party . So , I 'd like to deposit money to have big party of my own ^ ^ The Chinese Ministry of Education wants to change the writing of 44 Chinese characters , according to news . The Halloween Party ! Even when we are asleep together in bed , she does constantly even when I do n't want her to . I love her so strongly . I 'm a big fan of se7en , who is a korean singer and has become well - known throughout Asia in the past few years . He advanced his career to the US but it was waste of time . Additionally , the time when he spends with his family is the most important for him . because tomorrow is Chuseok holiday in korea . It 's a good tool to study another language . Because before , I had the wrong sentence : `` How do you think ? `` From this experience , I have decided to correct Japanese for those who are studying the language and make mistakes ! At his last visit to the paediatrician in order to get vaccinated , this latest gave us some advices on `` weaning food `` which are contradictory to those given by the Korean paediatrician ! ! Izakaya is Japanese which means tavern in English . They have one price , unlimited drinks system so I drank beer first and Sake next . and , I 'll meet wonderful people . AD tells me that I must make my dream come true . Yesterday was my friend 's birthday . We ate from the chaffing dishes . Every one of us was happy . Even though the activities were over , we were still drinking . eventually , I wished my brother to have a nice future and a happy birthday ! I have nothing to do all day long except daze quietly and daydreaming . Damn , I could n't find one word to describe what I have done with my life these days , such BAD luck , keep bad hours everyday and achieve nothing . The next morning , I woke up from the dream to the electric alarm clock . I study in The University of Engineering and Technology ( College of Technology - Coltech ) . We live in Nam Thanh Commune , Nam Truc District , Nam Dinh Province . I came acoss these pictures while arranging the folders in my computer . If you haven not watched this movie I recommend that you also watch this movie . How beautiful a scenery ! Do you feel the same way ? Come on ! My dear friends ! I I guess some of you ` re studing English is very hard . At least , I know horror movies could make me have nightmares . ) OK , I will prepare myself and start again from an optimistic attitude . During college , I knew of various senses of value and culture . A custom may be reasonable in some countries while it is n't reasonable in Japan . I want to learn the cultures ( and customs ) of foreign countries . Time limit is only 1 month , I am so nervous , , , , Tomorrow I should write my dairy early so that I do n't go to bed late . Ohayo gozaimasu - Good morning Konban wa - Good evening I will practice magic . When I was a university student , my professor told me that my pronunciation is dreadfully poor . I had nothing to do except laugh . ( HAHAHAHA . . . ) Sometimes , I talk with one of my friends , who speaks English very fluently . As you know , Windows 7 was released today . My friend told me that I can borrow her costume for Halloween . Practice Test According to the diagram , children in some countries help with their parents well while other do n't do . Though it was truly a parrot , the combination with the tree was nice . Today I went to a kimono shop with my mother because I intend to wear it to my friend 's wedding party . Japanese people do n't have many chances to wear it . I have worn it once at the coming of age ceremony . I am worrying about it . . First part in chapter one , `` Create a Personally , Professionally , and Financially Rewarding Career Doing What You Love `` . We talk to each other about our culture , food , clothes and building in the past in our own country , and we try to compare between our civilization . We also talk about politics , sport , and trying to know what is new in Arab coutries ( because we are both arabic ) . I can read ( though I sometimes need to use a dictionary ) easy English but it 's difficult to write in or speak English . And now , I want to begin learning English carefully . `` I Call It Love `` by Lionel Richie is one of my favorite songs recently . Every time I threw harsh remarks to him , he accepted them all and kept on being sincere and sweet , except for my one word . Some people I know said that he is talking to me , because he wants a permanent visa . He got furious about it and then said `` Forget about me . `` I strongly regretted about what I 'd done to him and apologized to him . Needless to say , broadcaster 's speech is amusing . Is it famous in your country ? And I got connected with iPod : ) I could n't write down here my ideas . . Japanese citizens were stupid as well , and they kept believing in their cruel dictators until the end of WW2 . In short all aspects of Japanese culture such as journalism , philosophy , scientific techniques , educational systems and freedom of speech were completely immature at that time . So Japan 's completedefeat in the last world war was inevitable . Oh , I forgot to explain about this movie and this usless battle ship . This useless battle ship sank in Okinawa with all its poor soldiers in 1945 . a battle scene was good but the other scenes were boring . But I listen to a various music , Pop , R & B , Hiphop , Blues , Country , Reggae . . . . But we can only exchange new cellphones the day you bought them . There are many places to go . I 'm looking forward to going there . November comes in one week . Last Sunday I had the Toeic test and it was not quite good as much as I expected and even after having this test , I lost my self - confidence about my English . I know I am very lucky , furthermore owing to everyone 's help . I mean , I 'm so scared . I want to be a teacher , but I feel nervous . I am worried about not being able to provide the adequate instruction , and I 'm scared of not being good enough for my students . Does this sound familiar to you ? In Japanese , there are meny many words which are used only by man men and only or women . Some oversea students who really want to stay here have already found internships , but I am still struggling with my search though I am almost to the end . Recently , I 've been really tired . . . . . I like the sitcom because it is realistic and the characters are so lovely . I 've seen many movies that Jeniffer has participated in . Today 's Lunch I read a news site and the news site says that there were five hundred It is so interesting for foreigner . My friends are foreigner so I think that they will be interested in that . Our city held the coming of age ceremonies yesterday instead of today . My parents bought my furisode ( long sleeve kimono ) for me . That early morning , I went to the beauty parlor , and I had my hair set and wore the furisode . Good morning ! On Saturday I went to Edinburgh for a vacation . english is not bad , but typing is really hard TT It is very comfortable to speak Japanese withont any stress and I am quickly drifting away from English . I am doing my best to recall things about the pharmacy . Occupation : university student Finally , I got my new driver 's license . crazy ? It 's already midnight . It is so noisy . Sometimes my friend and I go the supermaket to buy some sort of japanese snack to go with our beer , I 've got it all under control though . This is about education , and I want you to correct it . For example , in en elementary school , you can learn the way of communication not to mention studying , and you can learn to cooperate with your friends in a junior high school and high school . I think the term is a very important time for us , because you can find yourself . What is your dream , your thinking , your position and your best friend , through other people . ( in other words , the people who do n't know how to communicate with other people ) Because I do not have a bad case of acne . When I speak English , it takes a lot of time to come up with right words so I guess I should train my English so as to speak instantly . If his grandfather could eat a piece of memory toast which contains the memory of Peter , his grandfather and he could chat to each other as before . why did Paku Yonha commit suicide ? ? : ( and he said that he really wanted to meet his Japanese fans . On the first day we went on an excursion to / in the Kremlin . May 7th We went on an excursion to the city . Suddenly , the bus driver hollered at me and said `` Congratulations to you ! `` and kept explaining to me while I just try to figure out it as I woke out of my dream . I just want to write this in English . and was mostly resting . So , we went to a zoo , and there was a cheetah , which is my brother 's favorite animal and there was a zebra , which is my favorite animal . then I can go to a Japanese college or graduate school . I watched `` The Sixth Sense `` . Yesterday , I watched `` The Sixth Sense `` on TV . Since it was something msterious , I was caught up in the story in a moment . I love watching the TV program ! I guess it is going to be a white Christmas tomorrow . / / URL Happening ! ! The piano priced $ 130 seems to be accurate to a beginner like me . I can connect a headset to it and play silently . I appreciate them . But a lot of people like too shopping there because it has a lot of things to buy . When I was younger I liked to go shopping at Sapan . They are open every day and all night , except Wednesdays . They have a lot of dresses . In the Bangkok we have lots of supermarkets too , such as The Lotus , Big C , the mall , Central , Careful , Slam , Central World , etc . I live in Hokkaido , which is in the northern part of Japan . An uncle , as well as my cousin and his wife ( last month of pregnancy ) was there . Supermarkets . Supermarkets in Australia are far larger than those in Japan . I feel happy as imported foods are so useful ( ? ) such as anchovies , beetroots , fresh mushrooms , etc . I could n't get information about the typhoon from my TV . It is pretty good . I want to write a new diary but I 'm so sleepy . . . so I created an account and now I use this service . but gradually I could handle and enjoy it . I have been so tired since last night . Bringing back 4 chairs was so tiring . I think the new Singapore President will be elected today . The cafe makes a `` handmade pork cutlet `` . So they depended on their relatives , but they treated them very bad . So the brother his sister all the time , up until she died . I plan to go to South Africa with some Americans , and British in February . My friend told me I can use omegle to chat with foreigners . Actually , My major was computer science . First , I want to study English and then get a job . occassionally , you may grow very tired and frustrated . This is an open - air bath at the balcony in the room where I stayed . Because I felt very sleepy and the wind was so strong . Voice phishing is the criminal act of using a telephone to obtain financial gain . And amazingly , many people become victims of their scams . It was interesting , and we all enjoyed it . when I smelt something burning . So I looked over my shoulder to find my favorite my favourite blanket burning a little and fire was about to happen . but after the happening white smoke lay around in my small room , Podcasts are amazing ! ! ! The title looks like it has a special meaning , but actually it has none . : p So , starting with an easy question ; What do you think about learning languages ? I have a plan to stay in USA next year , it 'll be the most awesome time of my life ! First I watched `` The Blind Side `` . It was at midnight and so I recorded it on my DVD recorder instead of watching it . ( I 'm sorry this site is written only in Japanese . ) Well , thanks for reading ! ! My English teacher in Japan reccommended me to study for IELTS before for staying in Canada . However it 's not necesary for me to take it now for either school or immigration . However , I can not speak English well or understand talk among native speakers because it 's too fast . So , somehow I try to listen to their lines , but it 's too difficult . I drank alcohol which name is Soju ( kind of Korea Vodka ) last night ! In the past three months , I had to join in my company for practices . It is really suited for me . I mean , English is spoken all over the world . Because , I do n't like carrying around an umbrella . The original is a manga written by Shotaro Ishinomori . I haven ' tbeen back to Japan since December 2008 so I was so excited about seeing my parents , younger sister and friends . I stayed my parents house and had really good time . But actually I found this system very attractive because when people study a second language , it would be a great support if their writing were checked by native speakers . I am so appreciative about the fact I had preapared TOEFL because it gave me many valuable experiences in Reading , Speaking , and Writing , Without TOEFL 's experience , score , and training , I could not get those jobs in just two weeks . The university entrance mark will come out ! I am nervous because ( I do n't think ) I ( will ) have a good mark . Vocabulary section 's results Mispronunciation or misspelling - 19 % Actually , appropriateness and relevance as separate categories are kind of redundant . The bridegroom was the guitarist of my band , the bride was a staff member , and I was the vocalist . I want to send Christmas card to my friend . I heard that a lot of Finnish like Robert 's coffee . Is it true ? Happy Christmas ! I am sometimes in a bad condition maybe because of my unbalanced diet . And then , at about 11 : 30 , my mom and I went to Waikiki to go shopping and eat lunch . Maybe one day , when I start working , I will use it . If I give it up now , someday I could regret it . So , keep at it and do n't give up ! That said , I absolutely have to clean it up before October , because next year I go in to my third year of University . My program is called `` Arts and Technologies of the Image `` . I 'm really happy ! ! I have received a mail from my friend in Korea . I mailed her that I wrote Korea . She was so surprised ! ! Almost 6 months Can I speak English very well with foreigners ? Most western people have long arms , legs and big hips . I have a plan for learning English First , study grammar , second , read anything in English , third , see a kid 's movie repeatedly , fourth , write a diary . I remember especially the english exam . Particularly the composition which asked us to write about a hot pot . God , I just wonder that there are how many Chinese guys that eat with foreigners . In fact , when I went to Canada last summer , there was many kinds of English because there 're many immigrations and foreign students like me . What I have to do is simple - put the clothes and detergent into the proper places in the machine , switch on some button and then hang the clothes in the sun . Through this inccident I learned that we must n't leave clothes outdoors when we go out , even though the possibility of raining is less than 30 % . Now we know they are peaceful species in general . `` I was moved by the ceremony and I am surprised at the things that various countries take part in in the Olympics , even regions without snow . I was given souvenirs from the Olympics . Even so , I should have kept practicing English writing . I only stayed there one day or two day long . I do n't like ECC 's reading method . ( It 's not continuous . ) The word SOHO , which is an acronym for Small Office Home Office , has become familiar since the Internet has become prevalent in society . Recently Japanese sewing companies are having trouble surviving because of low pay , lack of workers ( especially young generations ) , and so on . They can use Chinese trainees with cheap wages since the middle of last year . Naturally enough , they have not been able to employ the Chinese workers at such a low cost . The Japanese government changed the minimum wage for foreign trainees . At that time I did n't want to cry , but I could n't stop my tears . On the other hand , social enterprises can obtain funds regularly because they are run through the business method . I have been studying English , since I 'm junior high school student ; but , I ca n't speak English . At last I found a shoe store . I used to like partying and things like that , but not any more ~ ~ because lately every time I have been to one there is always some dirty secret for me to find out . I 'm trying to be a good girl ~ ` not saying bad things behind other people 's backs ~ ~ but I always break my promise ~ ~ girls are all about gossip I guess > < But now I realise how much happiness I have missed during the period when I was dying to grow up . My favorite fruit is the peach because of its scent , juice , and sweet taste . The travelling time was more than 2 hours by car , especially because it was the first day of a three - day weekend ( Jul 18 is a national holiday in Japan , Marine day ) and there was a lot of traffic . Fortunately , there have been no injuries reported so far even though 21 fire engines gathered and were fighting the fire for 7 hours . I will write an original story . Because I nearly have a test . I write mystery , series . . . . I was concentrating on watching the fight . Every time a round ends her job is to walk around the octagon with the round board . Then she walked around the octagon and she blew a kiss at the cameraman before returning to her seat . I went to the university 's hospital even though today was Saturday because our doctor told all the members of our team to go . We attended the morning conference and had short lessons from doctors , and had my instructive doctor check my patient 's report . The messages said that my card 's number corresponded to the card company 's one , so they canceled my orders . I have a bad memory . Recently I 'm trying to select English - speaking ones , because I can study English while watching them . The advantage is that I can watch it again and again , study natural dialogue , and for better or worse , learn some slang that I was n't able to study at school . Russian is a wonderful language because the sound when you speak is great . But I do n't like the votings , because the politic sythem is awful . I mean tracking ( change pages ) speed were slow and sometimes errors occurred . So I will write a diary about English Writing at Lang - 8 . But they are definitely not . We are all Japanese inhabitants , so we must share the pain and the goal to overcome this crisis . How can I relax my mood ? First day Interview 1 Hello teachers on the internet . But I have to take an interview to go - which will surely be a hindrance for me . The following are some of the questions I will face in the interview . I have put a lot of effort into the past 3 years to learn English language . This included paying a private tutor , taking English radio programs , listening to pod - casts and using lang - 8 . The skills I 'll obtain will help me to facilitate meetings with foreign organizations . A typhoon will come to Japan . . . This typhoon is so strong according to the weather forecast . Hello . When I saw the characters being chased by a big fierce bird and flying about among the trees , it strongly reminded me of a scene from Nausicaa , a Japanese anime , where humans were chased by huge insects in a poisonous wood . In order to make the flash work , I did n't have a afternoon nap , but I debugged it after I finished it , it still did n't work . I totally failed . I must practice English skill . I was suprised at how much water we use . From now on I will care about how much water or any kind of energy I use . I want other people to care about energy . We know that any kind of energy is limited but many people pretend to not notice . If someone has a good idea that saves energy , please let me know ! ! does it all make sense ? Therefore , that is cheap but the shop worker made a mistake . He gave me a walkman with speaker and cable ! Eventually , I bought a walkman and speaker 6000yen . There were many beachgoer on the Zushi beach today . I think that writing skills of any language are very important since you try to use the grammar and vocabularies correctly when you are writting , that is also a key to influence your spoken languages . Many celebrities have the same one . It is a very sunny day today , unfortunately , the weather forecast says that it will be cloudy and rainy in Hiroshima tomorrow . Although Mother helped me , it still took 1 and a half an hour to put it on . I often call China 's embassy , My little sister actually had to study for an examination . She started working earlier than when I got my part - time job . The majority of them in the west part of Japan are known as kuma zemi ( means bear cicada ) . Many people that live in the east part of Japan do n't know it and are suprised that it is so loud . Because , I went to a restaurant with a discount ticket ! Then I went to another restaurant and ( I ) drank some liquor . So , I restart studying ! I 'm woke up too late this morning , so I ca n't sleep now . That 's why I have felt abnormal about this summer 's climate in Japan . Please tell me how to write in English well . DoAre you interested in becoming Language - Partners ? I want continue my study at university , but I am afraid that I did not do good on my exams . As you may know , wetbacks are Mexican and they enter America as illegal immigrants . 80 percent of illegal immigrants are from Mexico and the other 20 percent is from Latin America , India , Brazil , and China . The picture below are coffins . The main reason is to get a job , earn money , and support their family . Teenager Sayra lives in Honduras . Her father in the America is deported back to Honduras . That 's why the farmer lose their jobs and go to America . If global warming become worse than it is now , the production of corn will decrease 48 percent . One of my friends told me that the thing that you do not want to do is often the very thing that you need to do if you are striving for success . celebrating grandad and grandma . However , it is difficult to create anything that does n't look like a blog . I 'd appreciate it if you would correct this . Which sentence is better ? ? ? It reminded me of my balloons and how they used to fly in the clear skies . This is because there are many high school student who are studying in the library , so there are no seats left . I found the below campaign . If I get this money , I 'm want to make a pyramid of hamburger . Hello ! Nice to meet you ! They stay at my school and then tomorrow they 'll come to my house . This song is one of my favorites . When you are lonely , I 'll be your friend . Today was the first time I have listened to this song in ages . I learned many things from him : Korean , Korean music , Korean culture and so on . Last night I have n't slept , because my neighbour has turned his music sooo loud . . It make me agressive because he is a Nazi - . - * I want to learn about new computer technology and make it . When I went to a restaurant and ordered a Coke , the waitress could not understand my English . The restaurant was built as a place for disabled people to work . Most beautiful place But temperature has been below 10 degrees . Some people say that it takes a pretty long time to be good at English , but I do n't think so . I was n't ready to speak any English when I got the U . Today , I bought Kimchi at a Korean market on Geary street . There was something wrong with the bus that I took coming back to my house . Should I have got in a taxi ? I believe we can reconstruct the devastated areas . I have made my son who is 10 years old learn to playing violin for two years , because my son was always just watching TV in his free time , and because I have good memories of learning to play the flute . At that time , my city carried out a plan to make this region active using music , and junior orchestra club was organized as a part of the plan . The city prepared many musical instruments , and rents them to children for about 45 dollars per year . A private music school also got angry with it as competition with their business , and the school director blamed it in their homepage . In my son 's case , the most difficult thing about it is putting off attractive TV and making time for a lesson . He often frowns when I say `` Let 's begin music time ! `` I traveled and worked in Australia for 10 months 2 years ago . It is not a very touching story but I have watched the series since I was 10 years old , so it made me cry ! LOL I will definitely come back to this beautiful country again ! I am going to find a good teacher and take some lessons . I want to communication with people from different cultures and countries . When I read the newspaper this morning , I saw an article about the ( I attached the article in Japanese ) so that I get ascore of 800 on theTOEIC . I think that I will enjoy myself more if I learn the culture and the history before traveling to the place . So I am going to learn the culture and the history of Hawaii from books and / or websites before visiting it ! I try to read newspaper , some business magazines and website articles to improve my English skills . But it 's too difficult for me ! ! SO , it took more than 30 mitutes to read just one article . I do n't think I can read that articles in the near future . . . It 's easy to read and I can learn some useful phrases . Besides that , it still has an antique little train . And Iike music , hip hop music . So please make me your friend ! ! I think that Japanese people , of course including me , definitely lack exposure to real conversation in English . This is in spite of the fact that most Japanese students usually study English for more than 6 years at school which is a form junior high school to a college . After all , the majority of Japanese people can read English to some extent but most can never speak it . I received a picture of my female friend . She is twelve years old . So , I have to learn about managing a business . But I enjoy the challenge . I 've experienced a rolling power outage tonight for the first time . I want to improve my ability to make a sentence . Has your father visited a lot of countries ? Has n't your father visited a lot of countries ? My favorite person is Ichiro Suzuki . Because he is a dream maker . Here we have a very large Russian speaking community ( appr . 1 million , we have only 4 . 5 mln people in Israel in all ) . But our habits and mentality keep us together . First diary in English Today , I am writing a diary in English . And at the time American people said ' ' Yah - ! ! It 's about the famous historic detective BaoZheng . He was very kind and helpful towards the common / ordinary people and detected ? ( resolved ) ? many complex problems . Today I signed up to this site . I can check your diary written in Japanese . I want to help you , and I am supposed to attend one of my co - workers wedding . I thinkhe has nice character and is a well rounded person . When he announced his wedding we blushed out of shyness . And I will tell you what had happened at the event later , maybe it will be on Monday . This site is different . public or private , from primary school to junior high , highschool to college , and university . This is my first diary on Lang - 8 ! Today , I surfed the Internet as usual . I think it is important for me to write in English to learn correct grammar . So , from today , I will try to write a diary in English every day . When I entered my office I found money on the ground and I picked up it . I was at a loss whether to bring it to the police station or bring it to my office 's director . After a while director said to me `` The money 's owner was found and he said to thank you for it . `` I thought to myself , `` I did a good job `` . What should I do when I feel life is treating me unfairly ? But there is no software at my house . During winter vacation I will buy software and go back home . They made announcements about Lion ( Mac OS ) , iOS5 and iCloud , as reported in various articles . A film called `` The Stoning of Soraya M . `` has stirred controversy . Top Sales Hello . This week my classes begin . I am studying to enter college , and it requires a lot of preparation , so I have to study hard . They give relief supplies and money and run relief operations for victims . I wondered if I could do anything for them , so I went to the Japanese association to give a donation for them on the weekend . I want to express an appreciation for the many people who help the victims in Japan , because I think they give a wish and courage to victims in Japan to live a positive life . Everytime , when I clean my room I was angry about why I have so much hair and why they ca n't stop shedding . A Welcome Party Some people treat animals as objects and use them on a great scale since it can possibly maximize the benefits for human beings . because my favourite lady is Taiwanese we talk in English . The LUMIX Phone is great because the camera is very high quality , as high as a normal digital camera . It also has 1seg , which notifies me of severe weather , such as an earthquake . It was a very actual theme because almost every person today has a personal account in some social web . Every time when I am given a topic and asked to talk about it , I find it is hard for me to arrange my thoughts : what are the issues in the topic , what to write first , how to develop it , and how to conclude it . Although I see the many books about how to write essays , it remains a problem . After the younger guy left the bathroom , he went in the bathroom , but he had been in the bathroom about 15 minutes , so there were a few people who were waiting for him . I 'm making a movie to teach the idiom `` come clean `` . Please check it ! A : I saw You and Kana there , `` come clean `` . It is a short - haired cat and has a bright brown color hair . Furthermore the climate of our room became more favourable and calm . In short , I think there is a big difference between guys ' desires and girlss desires . . . According to the book , love often increases , but lust just decreases . Jon always teases me that my English is regressing . And , I want to buy the latest by `` ONE PIECE `` ! I have two elder brothers and one little brother . I read an article about The Karate Kid I have watched The Karate Kid 12 , 3 By the way , I 'm starting this diary to study English . But I 'm very relieved because the mistake was not correct . I cleaned my house . My bedroom was dirty . I do n't wanna look like a weirdo . The thing that I will never forget is that an old geezer talked to me even though I had another customer , and he did n't leave the store at once . Tourists can enter limited areas inside the mosque , even not Islam believer . It was a drink that I had not known before coming to Singapore . It 's unhealthy . Then they cleaned up the nursery . Finally , they went to a supermarket to do some grocery shopping on an errand for their mother . Many Japanese look forward to it every year . But adults have to think about something . Therefore , adults should not be selfish . I 've forgotten a lot of the Japanese business rules . It 's really important for business in Japan . I have n't forgotten this one , but when I 'm in this situation , I sometimes use some casual words . Come to think of it , I sat down in a chair without permission from my client . They go to elementary school now . It is still chilly in the early morning and night . Do you like to study in the weekend ? Thank you for helping me correct my journal Do you use `` that `` when you say something you already mentioned or something mutually known ? ? Last night , the teacher is a black man . He come from Botswana . I have n't hated Japan any more . I think this is a past thing . I studied aerospace engineering and probably I will continue to study it in October ( another 2 years ) . English in fundamental for my future job and for my study . . . but I struggle to pass from grammar to constructing phrases , speeches . . . I enjoy soccer ( football ) , basketball , cycling ( road racing ) , using my Mac and iPhone , taking photos with my digital camera , and so on . I 'm moving to another seat . But I forgot all the pain when I saw the beautiful sunset ! I could n't understant the story because my listening skills are bad . Tuesday , after work , I 've my waist ached . In the morning today , I was so surprised to look at my waist . I do n't feel regret for sacrificing sleep . They are great ! If I want to thanks you , I would write in the card to ex `` Thank you for cheering me up ! : ) `` But when I remembered that he has seventy million dollars when there are a lot of hungry people in his country , I said that he deserves what happened to him because he did n't have mercy on his people ; we should n't have mercy on him . Finally , I want to say congratulations to all the Egyptians . You have been patient for thirty years . Congratulations to all the youth , men , women , and children who spent more than two weeks in the streets making their demands . After he returns from work , he takes off his clothes , of course dirty socks to be contained , in the room . I studied german in high school and I studied french and chinese in university . Anyway , I 'm going to eat everything I want to eat . But today , I did n't have anything to do , so I went to the Japanese market near my home and borrowed my favourite DVDs . It will probably be performed until the twenty first or twenty second of this month . He 's a member of group called SMAP . because I ` ve just signed up to the Lang - 8 website 3 days ago ! The rest of us was very surprised , but we all said together , `` Indeed ! `` For example , if a gay couple from California go to Texas , their marriage becomes illegal , which means they are not married anymore . Typhoon 12 However , I have n't spoken English in a while , so I want to improve . I ` m studying English because I want to travel abroad and talk to foreigners . However , most of the time I was talking to Japanese people . I had hardly talked to local people or foreigners . I felt disappointed that I couldn ` t speak English and so I decided to study the language . We are staying here until next Friday . Also , our hotel is fantastic ; we have a really exclusive and pretty apartment with the most beautiful seaview ( which ) I have ever seen . They ( have ) sent our dog to a different continent ! Amol is probably in China ! And last , but the most annoying thing is stupid French people . They are so rude , they probably think that they are the best in everything in entire world , and they treat tourists the worst . The number of subjects is few and easy this year , unlike last year and the year before last . Will I receive the answer by Christmas ? I will go to the same concert tomorow too . She told me she had gotten a driver 's license in Vancouver . Because before that , I had only been around downtown in Vancouver . If I had a driver 's license and a car , I could go to any beautiful place in Vancouver . But for now , I want to focus on studying English and getting a job . I am a beginner of this site , Lang - 8 and I do n't know how to use it well . I would be grateful if somebody can help me . I submitted a job application last month . Althought , I got a sad reply . I have been surprised to see this is a nice website that has a lot of friends to learn language . Therefore I wanna see many things , eat something delicioius , and have a good time with my friends ! ! ! I had a headache , stomachache , fever and a sick feeling last night . We deepened our friendship . I will spend the money on deliciousfood on our trip tomorrow . I couldn ' t attend the class although I went to school on time . diary ? When I listen to songs that are written in English and watch Hollywood movies , Aha ! I do n't want to do it and I get so frustrated . Sometimes I can write in English easy and comfortably . Bella 's pronunciation is especially difficult for me . I went to my friend 's baby shower last Saturday ( two days ago ) . My friend tried fertilization treatments for the last seven years , so I knew she was really really happy about . giving birth to twins . We had delicious food and a lot of girl talk . We all cried when she told us about her babies . We were very happy and many people came and celebrated . with her . Studying everyday was so hard for me , I have to study English , Mathematics and Economics . I will travel to Busan , South Korea . The colors which are used in the movie are so beautiful . If someone likes Japanese movies , I 'd like to recommend that person to watch it . I went to the library this morning . `` POMERA `` is a writing tool . Whether they 're brothers or parents , they propose marriage . Can you believe it ? I get transferred every three or four years . In the last while TV in Spain ( but really I think in all countries ) has become crap . I really hate them . Now I have more time to dedicate to myself , for learning about the things that really concern me . Many people spend time complaining about TV and those programs , but they continue watching them , creating a vicious circle . I do benefit a little bit from primogeniture . This is a typical Japanese male habit . And the technique called `` Mashup `` is interesting . Have you heard of this profession ? I am studying mining engineering and I want to learn English , please somebody help me because here ( in my city ) it is very difficult find somebody to practice with . I 'm on the bullet train , the `` shinkansen `` I did n't watch TV at all . I do n't get time to watch it at all . So I have no idea about news like influenza ( disease caused by a virus ) . There are many people who have masks and do n't sell masks now . Today , I decided to start a diary in English , because I want to improve my English skill . They are used in semicconductor , digital devices , and so on . Recently , I like foreign dramas . My favorite drama is `` friends `` ! Message to . . . I hope you enjoyed being in Jordan with us , and good luck , we wish to see you another time . First of all , I ca n't correct my compositions , because I do n't know how to display the keyboard when I want to correct . Expecting a reward after a good deed has never been seen in the Chinese society not until recently . for example , some people claim for money after helping someone catch thieves or returning another 's picked - up purse . and whether a reward should be expected has arisen unprecendented heat discussions . Furthermore ( or `` In addition `` ) , I really do n't think rewards could stimulate more people into doing good deeds , for it can only rot one 's pure mind and complicate one 's simple thought . my boyfriend Andrew got acquainted with my father and I think they dislike each other . . . I love Andrew so much , but I ca n't disagree with my father 's opinion . . . and it is my favourite . and I 'm going to movie theater tomorrow ! ! ! I 'll make an appointment with a pediatrician on Monday . I really hope my daughter will be well . So I will go for it and learn something from it . The passage said that if I ask someone the way to my destination , I should say `` Could you tell me how to get to ~ ? `` rather than `` Please tell me how to get to ~ `` . I study English everyday to enter University or graduate school in USA . But I think I will eat before I join my class , because I did n't have a breakfast . because my major won in the quiz competition . and I will appreciate if you comment on this diary `` You killed two innocent soldiers , But you denied the suspicion of murder so you will be imprisoned . Take the defendant to the prison ! `` in fact , it was a kind of elevator . then , Tessadar touched something that looked like a ball And , the basket moved quickly . Tessadar swung his arm slowly I should sleep I 'm glad to find this useful site . I 'm a staff at a wedding ceremony . I got a lot of messages for birthday wishes ! Today , Sex and the City premiered in Roppongi Hills . We ate sushi for lunch . I ate pretty great sushi . I got really excited and missed japan while eating it . Fortunately I did n't need to pay , Tomorrow I have to get up earlier , But I 'm in Hokkaido now because of the summer vacation . And there are two answers . Which one is correct ? It was quite expensive , but I 'm feeling good though ! So it 's ok . Moreover , the slogan `` What are you made of , `` shows ownership of the watch . However , this advert can address people who drink Pepsi . woohoo . . As you may know , the highest mountain in Japan is Mt . Fuji is covered with lava rocks , so it is not very fun to climb up , at least for me . ( : p North is a fascinaing mountain because it has a lot of alpine plants in summer . I 've been into mountain climbing these past 5 or 6 years . I went shopping for 3 hours . A piece of square paper was the universe to me when I was little . I was lucky I did not see real / live boar while I was enjoying hiking : ) Because Ihope I can talk to foreigners . But his words are really hard for me to understand , because he always talks to me about philosophy , at the same time , I am a girl who majors in business administration . of course it 's not all . but I caught exprience of a lot of things ! A Return to Beginner 's English : 6th day I 'm practicing ballet in my house now . I think we should protect the earth from getting strange . You should be get a buddy ! ! ! I get irritated whenever everyone else does . I think it 's really important to sleep well . I 'm majoring in law , and I 'm a member of the GCP . GCP stands for `` Global Citizenship Program `` . Do you watch the TV program `` Friends `` ? Friends is a very popular US comedy . Friends is very funny . Non - alcoholic beer This week I have not been drunk of any alcohol . It 's a miracle for me during the past twenty years . There are reasons why I have n't drunk non - alcohol beer this week . In Japan , we have seven kinds of 0 % - alcohol / non - alcoholic beer now . When we drink any alcohol , we feel comfortable and dull . I think that alcohol is a time - robber . But if I drink alcohol , I lose my motivation that I want to do something . Owing to non - alcoholic beer , this week I began to participate lang - 8 to study English again . It took for 2 hours , first 45 minutes for the listening section , and then 75 minutes for the reading section , without a break between the two sections . I asked myself why I could n't catch the answers I could at home and I became more nervous . I really enjoy learning English . Today is the first day that I registered on Lang - 8 ! When I went home , Paster 's wife gave me a ride to go home . I thout that it would be convenient if I have a bicycle . I knew that the one person who I have ever quarreled with is similar to myself . I do n't want to mention his name here . I just hope that he has enough skilled and stuffto overcome the seduction . It seemed their opinions are completely different . We confused and mad , but we obeyed the indication of Doctor F . This morning , I got my grade There are 4 parts in the exam which are grammer , speaking , essay , and listening . I looked around it and joined immediately , because I thought it was very useful for me to learn English . This site is great for us to study foreign languages . This is the highest temperature I 've had in my life . I study English in class . konnichiwa felow friends I finaly got a sneek peek of my comic on facebook but its backwards and sumimasen about that but hope you can see its artistic work if do but vol 2 is better than one and im also try real hard to study more japanese so sayonara freinds When the two boards touched a line 50 meters away , we went through a net tunnel , then stopped at a shelf which had six toy oxes on it . We had to knock down the six oxes with little bags filled with sand before we hit a gong at the finish . The group that had the shortest time won the championship . I was hoping to find someone to teach me spanish : ) I am totally fascinated by this beautiful language ! I would rather the manager would n't tell his secretary about the deal . There are these kinds examples in my textbook . Additionally we can patiently hear their speaking because we know how they feel . This orchestra was conducted by handicapped people . Yesterday morning , I had a regular medical check - up and drank a lot of barium . After I drank a lot of barium , I had to be rolled sideways three times on the stage of the X - ray equipment . I 'd like to try to make a good solution by using what I have learned this time . People lined up for hours there . That means tomorrow is the last day of my holiday ! ! Finally I decided on my favorite one , and then I brought it to the cashier . It was warm and sunny in the morning and windy and rainy for the rest of the day . They are so so cute because they are very much like me . I tried looking for a parking area but all of them were full . . . Because it was a sunny day , I felt comfortable . Today my mother 's friend with her daughter came by . Her daughter is 9 years old . And I will appreciate the helpful corrections . I really respect them . There were people / students doing different activities , some were playing football , some were ( ranting about their naggy mothers and their shopping trips on weekends , some are were developing films . 1 I got a chance to talk with him I hope my personality will grow through my relationship with her . I often ignore the alarm and do n't go to turn it off at its first ring and it makes my mother annoyed . I 'm teaching mathematics . Oh and sadly , actually not so sad but troublesome , my periods just began yesterday . And coincidentally , the day after I emailed them was the new member night that is held every two years in the choir . I started to write a diary on lang - 8 . We had such a good time that we decided to meet again next Wednesday at Nara , where I live , I have to carry them form town to my place , so I only buy necessary things such as rice , vegetables to make some soup , water , and so on . . . . . . Tomorrow , when I go to town , I 'll buy some cookies for her daughter . I write a diary for the first time . I got some live experience , and I used to think that all experience are useful , no matter good it or bad ( the situation ) . I used to hate English ( I really DID ! ) , but now I love English : ) I 'm now using this site to find new friends and improve my English even more ! I 'd like to speak these languages fluently . Looking forward to your `` Motor Season `` come soon . The contents of the other book is English for business . The needed skills for business is communications and technical skills , is not the right English . I hope that I get qualification of a Yoga instructor and international of it . I ate sushi . The point is that we ca n't determine what kind of impacts the products will have on our health in the long run even though they might prove to be safe in experiments done by scientists . After all , I think our health is irreplaceable especially with the low prices fulfilled by the mass productions . because I had overslept . I had great time . It had softer fur than I thought . * My grammar is probably terrible today . I have just started to learn English . I know that my English is not excellent . It is that I will be able to express my true feeling with someone even if / though they do n't understand . I had better finish now and go to the bed . Fortunately there were no broken items in my house . However , I still can not adjust myself to this new life . Meanwhile , there were also many rabbits in the tree staring [ in ] at what was happening inside . After I finished work , I went to the cheap restaurant near my house . And I took two math tests , one mechanics test , one biology test and one thermodynamics test on September 1st to 3rd . Yesterday I went to the city where I used to live as a student ten years ago . This is my first dairy . It is practice course and shorter than a real golf course . Please tell me . These sentences , or parts of sentences have some grammatical error , ( or misapplication ) but I ca n't understand what is incorrect and how I should correct it . 1 . Make students translate only the sentences in which there are grammatically important parts . 7 . To concentrate on Japanese sentences makes students think that they 're more important than English sentences . 10 . Japanese has many ways of expression , as well as English . I hope to have a great night . Nagoya has several places to enjoy . I went to yoga lesson this morning . I get stuck in traffic so I was late a little . Today , I worked to clean and move my firefox browser Because my old account incurred some problem , , and I hope that I can do something that can only be done in a student 's life The earliest train is at 9 : 00 . Bills at Tokyo opened last month . I had been eager to taste it . I need to know not only English but also the choice of words . I wish a happy Christmas for the both of us ! A weird movie : It was crowded with many people . I found an interesting painting there called the `` Tinga Tinga `` . They 're colorful and beautiful with delicate brushworks . The reason is that I am too lazy ~ HAHA ~ The actor is so cool ! ! ! ! I recommend it ! I 'm Yukiyafrom Japan . The heavy growth of white narcissus looked like a white carpet . And I had no idea what to say upon seeing the hill , decorated with blue Nemophila and rape ( ? ) blossoms , the most popular place in this park . This year I participated in the `` North California Cherryblossom Festival `` located in San Fransisco . San Francisco has many large hills . Some people danced with us while others took pictures . This link is precious to me and I would like to keep it that way . I 'll tell you guys about fashion , which I love . I really love fashion , clothes , shoes , bags and accessories etc . . . Nowadays I notice that with good sense I can make a well coordinated outfit with cheap or reasonable clothes . Fortunately , we have many choices because there are increasingly a lot of good stores , which are , Forever 21 , H & M , UNIQLO , MUJI , GAP and ZARA . Please tell me your thoughts . Well , this post is not about the date of Hikoboshi and Orihime , who are the couple of the Tanabata legend , but the one of my daughter and her boy friend . These3 guys can ( both ) sing and play well and they made theaudience laugh with the funny things they said . Yesterday my friend and I went to a restaurant to have dinner . Bread ( toast ) gets moldy quickly , too . Now I am learning English for CET - 4 , I like English , but I find it such a pain to study . Especially remembering new words , I have a feeling I 'll never remember them . I currently use a `` futon `` , Japanese mattress , but it is too thin to sleep well . I 'm looking forward to the delivery . Earthquake and tsunami . I 'm OK . So many people died in the tsumami including some of this hospital 's staff and some patients ' families . There were collapsed shops , overturned cars , much wasted ( ? ) material . I think winter is coming soon . I had n't eaten during the twenty - four hours before ( no , I did not eat him ! ) , so I bought a burger because there was nothing else . The main character of this comic is a man who is an assassin . So he needs to disguise himself as a woman . I am worried about tomorrows weather . It was for Christians who want to learn more about worship , praise , and prayer . It was a blessed holiday ! : D And , of course , we have one too ! If I should break my right hand , shoulder or an elbow , I would use the others . I registered with this website to learn English . Before I 've got to know lang - 8 . I really appreciate if you could correct my bad English . Now I can see that writing on a computer in diferent languege is more difficult than using my native one . It would be a great opportunity to learn foreign languages and make friends . I recommend these songs of his : Gick in the pink , Remedy , and Wordplay . only the sound of raining . Do you still remember me from the day it was raining ? Yakiniku is broiled meat . Reunion Party First , we were a little bit nervous to converse with each other but after 30 minutes , it was just like the old days . We got information from the service desk . I want to go anywhere ! ! I guess it 's just a more polite way to ask for information or a favour ? I tried to connect the internet , but I couldn ` t get it to connect . Very seriously . My favorite game is shogi . Do you know shogi ? Finally I found a good one . Also , we ordered ice - cream , toast with ham , cheese , and bulgarian pepper , and herbal tea . In conclusion , technology is useful for education , but we need to have the ability to carefully find and select information . For example , thermal / electrical conductivity , lustre , ductility , malleability and so on . . . . . I went to the hospital yesterday , and took a lot of medicine . I hope they make me comfortable quickly . The medicine costs 2500 Yen . Favourite : basketball I remember days in Japan . I 'm very happy to start writing something in english . it Seems I like a good chance to improve my english writing skills . But the vocalist forgot the lyrics : p I had a great day : p Here you can see a picture from October 29th , 1929 , the day of the stock market crash . There was a fly on the ceiling . My room had a high ceiling and the fly was on it . Besides , _ there are few powerful and united orgnizations or associations that can shoulder the responsibility for holding massive and efficient activities on a worldwide scale . What is needed , _ therefore , _ is education and publicity . Meanwhile , _ governments have an obiligation to encourage citizens to take actions to preserve creatures via legislation and public media . Likewise , _ national and international orgnizations aiming to save the Earth also can play an pivotal role in publicity and education . I think the reason it is hard to learn english is remembering vocabulary words and speaking fluent English and listening every English . Hello ~ I 'm a newbie haha I dont mean I wanna be a singer or someone famous , I just want to do something about music . Ouch ! I hope that I will find a good job after . graduation I insist that dreams will come true if I try my best to achieve them . I changed my job to an Amarican company . I am going to keep up writing my diary . I think this is a very interesting and exciting service . Some people think hobbies are a waste of time but I do not think so . I have a stomachache to go to the office in such a day . My area was n't damaged . But a friend of mine from Lang - 8 was worried and sent me an email . Words are the smallest unit of language . You should study this Before you start learning or speaking English I ca n't write good English when topics are complicated . suddenly , my English is going to sound strange . I would appreciate it if you would talk to me in English , 'cause I would really like it . I 'd also like to have someone to talk to , so thank you . I hope I will also be useful in teaching you Portuguese as well ! One Onigiri has only 150 calories . I like Onigiri very much . Today I ate roll cabbage lunch with my corworkers . In my office restaurant , we can have lunch by 500yen . I could sympathize with it very much . even I have 3 accounts of twitter * I forget the passwords of the two accounts , . . I have been eating a lot of fruits and vegetables . But I still have this constant feeling of laziness and fatness . . . Please do n't hesitate to talk to me . In the city people respect the players who bring their own gear , especially violinists or cellists . But they ca n't drink after a gig ( because drunken driving is a crime in Japan ) . Finally I recommend you play the cello if you have a choice between it or a contrabass . I love my home and my parents . he told me to , cross the road , turn right and go straight along the street . Thanks million for reading my entry ! ! The Web is Degenerating Actually , it 's given us uncountable benefits and an unbelievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on their cell phones and who are absorbed in the web for long hours , not to mention myself . Fortunately , we did n't sustain any damage . The next day , the Chile earthquake happened . I currently share an apartment with a Chinese man . However , I 'm thinking about moving to another apartment , because my present apartment is far from my office . Today , I was very surprised to see a piece of Yahoo ! It said that KENJI OZAWA is re - starting his music activity after 13 years of silence . But because of Woods 's scandal , other important news was overwhelmed , e . g . the national health insurance problem , the Afghan war . . I 'm not only excited but nervous too . I will send an email to you when I leave for America . I really enjoyed myself . The teachers are gentle and nice . ( spelling errors ) I 'm a Chinese girl , I like speaking English , but I only speak a little . class begins at 7 . 00 and is over at 21 . 45 , so I go to bed at 23 . 30 , I will study for1 hour before I go to sleep . In about a fortnight , I 'm going to Sydney to study english for 6 months . I am really interested in global environmental problems , so I want to study that in University ( Im not a uni student yet ) . Japanese eat rice almost everyday . last night I saw several young jews taking pics with menorah and singing songs in the streets . ahaha I changed my profile picture which I had taken on wednesday . Today , I listened to music and . . Now you have two options : soft yolk or hard yolk . Tret ' yakov 's Art Gallery Many ages ago in Russia lived the merchant Tret ' yakov . He liked Russian art and bought paintings from great Russian artists . This museum is named `` Tret ' yakov 's Art Galery `` , or in Russian , `` Tret ' yakovskaya Galereya `` . And now the Tret ' yakov Art Galery is a great Moscow museum . Every day this gallery is attended by a lot of people . They look at pictures of great Russian painters . Tret ' yakov 's Art Galery has not only pictures and statues , it has Russian culture and history , because these pictures show Russian culture and history . It seems like Obama will strengthen gun registration or regulation . 3 . shoot the ground or sky before shooting a human . 5 . anyone shooting a human must be guilty . I wanted to go to bed but I could not because it was too early to sleep . because of his fast pronunciation and an accent different from an American . anyway , today is my first day in London . I think I will need time to adapt but I believe I can do everything like studying and making friends . I went to shopping with a good friend of mine whose name is CHENG . She was shocked and felt ashamed of herself . Yours sincerely , Probably they will become sweet tomatoes . : ) I am waiting for my visa Today I 've decided to skip some classes at school and just rest a little , enjoying my free time , I hope I 'll be perfectly healthy on Monday ! First I will try looking for a new apartment . It helps me find a apartment quickly so I can save time . I do n't need to check the website The end of winter vacation . I am feeling dismal . I am a real ignorant with the PC . Many pictures and paintings are exhibited on the walls , which add some entertainment to the place . My brother and I went to a health club in the evening . In this thinking , every person has three unlucky years in his or her life . Sevastopol 's small streets are attractive for photographers . The outskirts of Sevastopol were built in another way : small white houses predominate there , with colorful roofs and doors ( we took our photos . The rest believed the use of cyber language was more convenient than the formal one . While we are alive , we ca n't judge whether our life is going the right way or not . Although it 's a new generation now changed , the education courses have not changed . That is the reason why until I graduated high school , I hated Korea 's education courses . But after entering university , I was disappointed , After graduating school , when I 'm looking for a job , the interviewers check my ability in grades , licenses , TOEIC score . . . So we should try to think about it from the younger sister 's point of view . The younger one , Bess , has to depend on her elder sister , I 'm chatting with my friends on messenger to plan our Christmas party . I explained the problem to the clerk at the bank and who sounded very kind . why did n't you hang up ? `` I highly recommend that if you have any iPod . Japanese are not as careful as Koeans about it . I used a lot of expressions which I learnt today in my entry . I decided to practice English by reading magazines ~ And I spent about $ 100 on magazines , so I really want to know how to use these words : If I have a opportunity I would like to use the slang words from now . I would say to my friends `` Hey what 's up , dog ? If you have cool a hat `` That 's hella cool `` If I get angry at my friends `` Hey stop trippin , dogs `` What would I gon na be if I use those words for strangers ? I wake up in cold sweat . Well , anyway , I 'm still waiting for my cell phone to ring . I went to a trick art museum today . Some projects are implemented in big city , such as Tokyo and Osaka , but others are in small and poor villages . hope I 'll be okay tomorrow morning . Each character in it has their own features , especially Jeeves . I bought some groceries . Are the following sentences correct ? Hi , my name is Javier , I want to learn English and make many friends , if I can help someone to learn Spanish , I 'll be glad to correct him / her : ) The fried vegetables were good too . I told them that I have a lot of small things and I often forget where they are , so I can this basket to organise my things . I 'm studying English : - ) And I can help you studying Japanese : - ) many people visit there . Many foreigners who were missionaries and business people used to live there . so there are many churches . I saw the first church of karuizawa . One good thing is that I made my mind to try to speak to foreigners at the birthday party next month . Today I talked to my freind who went to same university . I talked him our lives and girlfreinds and jobs . But I prayed for a wish to be peace in disaster area in Japan and all over the world . First : after lunch I ate lunch . The Japanese Royal family has over 1000 years history and there are so many traditional rules . So she had struggled about traditional rules and the pressure to have son . she finally got mental disease . She has an only daughter but she is loved by her husband . Actually , as I wrote long ago in an entry , I seldom look at those ranking pages . If I had time to read the page , I would rather use the time to correct my friends ' entries more . I want the webmaster to delete those pages , because the pages are not so useful for me . I 'm just a 19 - year - old college student , and I do n't think my native language is better than many other members from Japan here . They are probably thinking it will take a long time to feel relieved , this means they will grieve for a long time . At the beginning , I think they are qualified to comfort those who are now grieving . I will go to KYUSYU for a business trip tomorrow . I work in a hospital . Our relationship has continued for more than 3 years after we left the university and when we both got jobs , our destinies were separated unfortunately . These days , I watch Desperate Housewives . I 'm tired due to shopping and going home with very heavy baggageeveryday . I 'm afraid of making friends and studying etc . . . Japanese , especially thebaby - boom generation , believe all ofwhat commentaters say on TV . Schedule for tomorrow Especially the big problem is dismissal of temporary staff or part - timers . Went to a classical concert and Kamio Mayuko played as a soloist with the Budapest Festival Orchestra . I have listened to her performances by CD and TV until now . What do you usually do while you 're on the train ? Additionally , I am paid 1800 Yen a hour . Nice to meet you . Would you mind correcting my profile ? My English Language ( Grammar , Speaking , Reading , Writing ) is n't very good . Next saturday will be my friend 's wedding . Recently , I learned the role of social worker . I think the social workers are an important part of the community . But , we do n't appreciate the importance of social workers in Japan . My life in Jakarta ! ! I am enjoying myself so bad . It is different from my previous impression , meeting new people people , eating food , sight seeing and stuffs . As you know , Indonesia is still developing itself as a country and I feel enthusiast every day by seeing people on the street and huge traffic jam . Everyone asked what my name was , where I was from , and how long I had been here for . One thing happened that happened surprised me . There are many hills in the city , that 's why I can always breathe fresh air when I go hiking . Most of the members came from European countries such as Germany , Italy or Romania and they speak really well . Do you think that writing posts on this page is the only option / possibility ? I hope I can enter my ideal college and get an ideal job , and take responsibility . I thought , `` I will also come `` . after military training , my mother told me that she wants to buy a house for me . Good morning everyone . Here is the email that I would like you to correct . I think that he is cool , but to tell you the truth I think that he is coquettish . I like yakiniku very much . She was a traveller . Perhaps that is because a large amount of students are studying in universities far from their homes , so parents use them as a way to give them money while they can not make money themselves . I think that a credit card has become a necessity in daily life even for students . Thirdly , using a credit card to pay tuitions is also very convenient . On twitter , I heard my friend bought a peach from Fukushima because it looked very tasty and was very cheap . The first exam , called ' the Center exam ' is held on January 15th . Fireworks in Darling Harbour I went to Darling Harbour in Sydney with my friends from Korea and Japan . It 's terrible . I had to return it by the next day . . . I tried to buy some shirts , but I did not have much money , so I walked around looking in department stores . Please imagine that if your eyes were bigger than your stomach at dinner . You would find a pile of leftovers in front of you . We hardly heard of the Asian black bears coming to residential areas after we started to stay there . Knowing how to use body language effectively is very important for me , because I think one 's first impression on another person [ can help me to strive my dream job in the future ] ? This was the first time that I used an Internet shopping service . I am very sorry that I have no time to correct the diary . Because I chose this work , maybe it is the fate that l should do . Spring Festival will come , it is the most busy time in our company . I can not go back to my hometown to get together with my family and friends . Why it is the pigeon ? A smile for you . My shop is salad shop , and my lunch is always salad . I ate the salad fast , and after I opened the hamburger 's bag . . . I enjoy the time when I study microbiology . San Francisco is very exciting city and I 'm enjoying some activities here . I 'm lucky to experience this rare event . Outside is still dark , because it is 4a . m . Because yesterday I went to bed so early and this is spontaneous : Dhahaha He did not know whether the post office was nearby . It 's hard to explain why I like rainy days . I believe that TV has reduced communication among famillies . Different clothes sometimes influence how people behave . but I like cherry blossoms in Japan . unfortunately my alergic can be caused by a cherry blossoms x ( Today , I attended my first seminar by Randstad . I decided to restart my English and Russian study . Your attention will be appreciated ! My group picked up `` at fast food shop `` , because one of my group member is working at KFC : ) The situation we came up was a couple making out come to KFC and KFC staff complains about it , but then the couple fight about silly things and break up . I have worked in a government - owned company for several years , my post and salary are OK . I 'm always eating tomatoes because it is healthy for me . A charity match for Tohoku victims is being held in Osaka today . I met pickpockets in Spain today . : ( ( The pickpockets had gone away , but I still felt scared . The cost would be compared / comparable I thought they were almost the same . Despite resistance / resisting I learned the grammar ( preposition + ~ ing ) My eldest daughter had a sports day last Saturday at her junior highscool . I 'm a Russian but actually I live now in Moldova ( it is at the border of Ukraine ) Life is short , while art is long . Apple fans must be buying their products again and again like me . There were some stands and I bought a crepe and a pack of fried noodles with sauce . ( actually nowadays the depressed economy in Korea is causing a decline in the price of houses ( ? ) . However becauseprices were skyrocketing in recent years , the actual price is still quite high . ) Then I woke up my second daughter . She looked outside and she said `` Snow ~ Snow `` such a very happy smile . Hello ! Lately , I have been eating boiled brown rice because it is healthy . Recently , I 've been really absorbed by glee , a drama made in the U . is very delightful ! ! Of course , high school life in Japan is also very , very fun ! I never thought it would be so inconvenient changing majors . So today my cousin came over to my college to help me . China Business Trip I 'm a begginer . I 'm studying English . So , I entered university again and major in English . There are still aftershocks several times a day . The Japanese chief cabinet secretary said , `` There is little radioactive leak by the explosion . Until I become a university student , I have to study English because I may be not able to keep up lessons . I 'm Going to the office now . Please assist me . When I was a junior high school student my teacher taught me that there are many differences between Japan and America . Now , it 's time for everyone to clean up your place thoroughly in preparation for welcoming New Year . America president changed toObama , in Japan the Democratic party has had powerfor 50years . Last prime minister Aso can ` t read Chinese Characters ! For example , they marry , have children , get a house or lose money . I was sent to rescue a man whose neck was nearly broken He was bleeding steadily . I was very tense at that time . I said to myself in the dream , `` I am the only man who can rescue this life ; I must do my best , and do it as fast as I can . `` Golf exercise I exercised last weekend near my apartment . I hope to become a golf player in the future . I am going to learn how to use photoshop . I will spend my time today looking around for a photoshop feature that I can learn to use well quickly . Then , he showed me his left arm which had a tattoo ! Although I quitted piano , I 'm making extra special efforts to be a flight attendant in the future . I 'm looking forward to your reply , and also please tell me about your daily life ; D I came back to my hometown on my vacation . Actually , I 'm worried about my English . . . When I was skating , I had fallen down . . . ! ! ! These days we can buy many pre - prepared foods at grocery stores . Question in English So , if you are interested in it , please chat with me . A waiting for your reply . Welcome to our club Welcome to our basketball club . We believe you will join a wonderful club . A strong person will become stronger . Whatever your answer is , it 'll be a fulfiling experience . 5 days ago on August 2nd , I left Japan to study abroad . I also have problems with tenses and grammar structures . It dissapears in an instant , if I try to swat it . I heard from my colleague yesterday that tomorrow is Teacher 's day in vietnam . I practiced a vietnam song that young people like . After I sang the song , I gained strength and confidence because many people complimented me . `` you sang very well `` , `` good job `` . And I succeeded . Did you watch the tsunami videos ? Everybody just thought that was a pretty strong earthquake so it would probably cause a bit bigger tsunami than usual . I would like to take the end of the company graciously , and veer my attention to another future . The Toughness of the Characters ( no I ) . And one of the greyhound staffs told me we might had to wait more . Yesterday I went to the seminar at roppongi . I could have had the chance to speak with an American and I tell him my thoughts . As Paul the octopus predicted , is Spain going to win the victory ? After reading this article I felt inclined to go there . If you check with them I would be very pleased and appreciate it . Some birds were singing , the sunshine was warm , the breeze was stroking me kindly . So `` Sesami Street `` means a small seed street or something like that ? I was recommended by a friend of mine to register and become a member here so that somebody can correct my English mistakes . The author says when speaking you should know some rules which are common among English speakers . For example , it says you should use some words without pausing , and that you should know whether an exspression is formal or casual depending on the situation . We had a Christmas party that was held on Dec 24 , and we reserved a cafe that my friend managed . Have a good night ! ARASHI , a Japanese idol group , seems to be very famous in Korea and Taiwan . Have you read the book called something like `` To Find a Happy Bluebird `` ( I do n't know the correct title for sure . ) Are you looking for a happy bluebird even though the bird is right near to you ? `` I think success is near to me . I have been playing it for 13 years . Beautiful Town Me and my parents have a worship sevice everyday on these days . Our church minister , Mr . Kim runs the Beautiful Town with his wife and teachers . I tried to have a job at there but gave up in a day because of anxiety disorder . I feel sorry sometimes when I hear their parents does not get in touch with their children . Question : What chapter and verse include this words ? Autumn [ Spelling ] is starting ! You know I have wasted too much time in past year . Currently the global economic crisis is having a great effect on my company ; it seems like everyone will face the danger of being fired . In fact our company had reduced more than half the number of employees from last year , but our business has still not been showing a tendency of improvement : ( Now you can perhaps imagine my mood recently ; I am dying for leaving your present company but I feel it is not the best time . I would like to change my cellphone model . The LG Optimus - Q has a good design and useful `` qwerty `` keypad . The buses in Thailand do n't stop completely when the passengers get on and off . Luckily , the bus was moving at walking pace and the injury was minor . It 's not appropriate to say this , but I thought I might be lucky that my damage was not as bad as his . . . I decided to try blogging here . In fact I 'm not a blogger and usually I only read some programmers ' blogs . I clearly remember that I was a high school student when I took an airplane for the first time . I miss her warm company from last winter very much . Android phones are on display at the cell phone store in my neighborhood . Because the school has not only students born in Japan , but students from Brazil . I heard that most guests who are going there like me are real teachers . Then the country image will downgrade by that shot for why they did n't solve the problem in peace . Today , I will write about a question I have about English I 'm not good at English . English is difficult . It was difficult for me because of the difficulties in German pronunciation . Today 's dinner menu is sweet - and - sour pork , boiling hijiki and soybean , mizuna and chicken salad . Almost forgot to return Rental DVDs Yesterday evening I walked around in Ikebukuro with my friends to do some shopping and to see the new IPAD which was finally released in Japan on March 27th . Suddenly , I remembered that I rented DVDs at GEO last saturday . In the future , I wanna work in a foreign - affiliated company . We can learn from them , know their culture , and also can travel there . I ca n't install Chinese on the PC I usually use , so I decided to use my second PC . It 's too slow to handle software and the internet . To be honest , I am not in the habit of keeping a diary . Even though I look up each unfamiliar word , some sentences do not make sense to me anyways . It is totally different from speaking because it requires me to have a lot of vocabulary to express what I feel clearly . It is a usually an event that my relatives have every year in this season . I often do foot massages when I sit down on the chair . I was reading a Japanese comic yesterday . When they grow up maybe they will regret what they did when they were young but it is too late by then , it is n't . On the Saturday morning I vacuumed the rooms . So I was taking short breaks the pasta I had eaten at the restaurant last time . Now , every members is cooperating with each other towards the exhibition . Korea Trip 1 I 'm student studying science and technology , today ( in class ) I made biodiesel from fish - oil . In addition , I went to Ginkakuji , Kinkakuji , Kiyomizu temple and so on . Then , I had delicious dinner near Kamo River : ) The delicious dinner was made of tofu . Last week I went to Olympic Park , which is in my neighborhood . There were many kinds of fragrant roses . Why did I lose my earrings ? Soy sauce I bought a little bottle to keep `` Shoyu `` = soy sauce and ate pasta in a In japan , it is really hard for parents to have their children go to nurseries . First of all , there is a condition to do with annual income . The more money they earn , the more difficult it is to get permission to enroll their children in a nursery . We are scored A ~ D financially and according to our working situations by the administration . A is the most advantageous rating Fortunately , my daughter goes to a nursery . But , I hope all children can go to a nursery , which will help parents who are working very hard everyday for their families . If you want to travel both , my apartment will be convenient for you . There are no beds in my apartment but there are futons like matresses of cotton . You do n't have to prepare your blankets . ( In the winter , it may be cold . . . ) Near my apartment , there is a lot of nature . ( Maximum 2 nights ) Please come to my apartment before 7pm . I want to improve my English , and most importantly , make friends . To tell the truth , the English lesson is not easy to learn . I became bashful a little bit because of the situation that I use Japanese , but I 'm in Australia . I have to go back to Japan in the middle of April because I will attend my sister 's wedding party . So my parents were very diligent at that time . Compared to my mother , he can be recognized as a sinner . And I 'm proud of her ! His mother wants to go to the temples . ( Actually , I recommended [ that ] they go to Gyeongju , if they really want to experience temples in Korea . ) I played golf with my father , mother , older brother and his wife at Otaru in Hakkaido , Japan this weekend . * Lang - 8 staff I went to Okubo in Tokyo , to eat Yakiniku with my friends . Okubo is Korean town . So many good restaraunts are there . I 'm active again ( or so I think , I always have long breaks ) . Doraemon is very famous animated character from Japanese television . Students have to decide course , apply for job or take a masteral course . I ca n't decide . My friends already decided their courses . I must decide by this year . It was very useful for memorizing words and phrases but I was n't familiar with listening to my voice through the device . Recently , I 've became crazy about shopping , I have bought lots of clothes , but I want to have more and more . Am I a shopholic ( shopaholic ? I do n't know , please tell me the correct answer , thanks ) , haha ! So terrible ! Hot and humid weather will welcome me at Narita airport . This is the challenge ! I started this blog today . It is my big challenge ! There is Euro 2008 going on in Europe now , and I truly wanted to watch , but I could n't without cable . I decided to write my diary in English ! ( Today is the first time I am writing my diary in English . ) I 've decided to write my diary in English from now on ! ! Also , Japanese elementary schools are going to start teaching English to fifth and sixth grade kids . I think English grammar is so easy and logical that it is easy for non - native speakers to master it . However , I hope to improve my writing soon . I need to get 5 in IELTS as soon as I can . This octopus can kill a person who is bittenby it . . Of course , I know it 's different depending on the person , but I just want you to tell me as advice . There was the annual meeting today for a presentation on research and development in my company . I went to Moscow and Saint Petersburg with my family . My father bought me a camera , so I could take some snapshots . The distinctive yellow circles on the lamp which had n't being dusted in a long time . We prepared ourselves for the worst , because youth hostel food is n't renowned for it 's quality . > < Everyone looked suspicious at the fish and chips . I ca n't trust the company whose name is Tokyo denryoku . In Lonsdale street there was the Greek Antipodes festival . In Federation Square there was live music . On Saturday night I went out with my Italian friends . It was very nice , I bought a very nice dress ! I have three younger brothers , soI had dinner with them , too . I want to say , that I want to learn English that much . So it was really hard to do it again because I felt hard my finger . By the way I can ' tplay this song because maybe It 's really difficult because I do n't know how to sing the song so when I play the song I do n't know the timing . I really like this song so I did nostudy English hard like my friend said so I am sorry . What do I want ? What is the thing I am good at ? Because my left knee got hurt in a traffic accident and got hit many times during basketball games , The team prepared it . I wish to memorize Qura ' an and remember all its words like I remember my name . I wish to publish a lot of books and become a famous author . I wish to speak English fluently without thinking . To become that , I registered on this site . Before I did that I was listening for many different Islamic nasheed by English speakers , like Yusef Islam and Dawud Wharnsby . I really want to study more . After the meeting , the other members and I went out to have lunch . We went to an Italian restaurant and had a pasta lunch . A woman said one day she had been very tired and she wanted to be alone for a while . So she had said to her husband she had wanted him to go out and would hand over ten thousand yen . I met a foreigner who is from Mexico . I should go to the hospital before it gets worse . I do n't know how many people read my diary , but I welcome you who clicked my diary . Today was a very important day . They always interrupt me before I finish speaking . So I felt refreshed a bit . To practice English I start writing diary in this site . I set a target to write diary once a week . There is a new selection button called `` Match `` on the upper part of the page . I can make myself comfortable here . There were 5 other students in the class . The first person who completes 2 lines accross will recieve candy . We believe eating eel gives us vigor . Dashboard is , in my knowledge , the part of a car just in front of the driver with various meters . And when I 've read that part fifty times , I got an idea . The executive is a driver of the company ! You find people who speak English and communicate with them , when you make a mistake , they can help you correct it . 7 / 26 I went to TERKEY . By the way , today I went to school to sprinkle water on the plants . It was an exciting day today . my relatives and I are safe . My friend told me that she already knows the grades from all classes she took this semester . About festival for children aged 35 , and 7 Today , only girls who aged 3 and 7 participate the festival and only boys who are aged 5 participate the festival . Many families get photos of their children taken at a professional photo studio . As she said , there was a similar korean food with the same shape I think one way we get them is from our experiences particularly from hardships , ordeals and harsh adversities . In a sense , everyone experiences them and we might as well enjoy them . About Yesterday On the other hand , other people who come from European countries do n't feel that speaking English is difficult . I love tennis and I want to be ( come ) good and strong ^ - ^ I am a housewife . The Reason I 'm Studying English There are many embassies of several countries near my hospital . I 'm looking forward to graduating . My dog is 7 years old . She hardly barks and is housebroken . Actually , I sometimes go to these shops to walk when it is raining , but I always feel a little bit embarrassed , and I feel like I have to buy something . According to a report , the big reasons are climate change and the lack of habitat . Our environment suffers more and more pollution from human destruction . It can use many aspects of nature such as be made of natural products . Our new term has begun , I feel excited ~ One of my friends who loves English songs often sings `` Everyday is wonderful ! `` . Although I could n't registered for a popular class when I had asked for any available seats of that class in the Registration Office , but I could make it by asking for the professor ! I have just returned from a business trip to Shanxi and Henan , this morrning . In fact , this was my first business trip since joining my company . TOEIC is a test that lets many Japanese know more about their own English ability . Since then , I 've been increasing my Skype contacts day by day . It is Log cabin . Moreover my nose was running and I ca n't stop sneezing . : < Lately I have been working part - time at a Takyoyaki shop inside the kitchen of which the temperature is usually around 45 degrees , so I always feel like I 'm going to die x _ X When I am off work , I study Linguistics , specifically , Cognitive Linguistics . But I have few oppotunities to speak English in everyday situations , so my speaking is gradually deteriorating . . . + ~ + I bought snow boots yesterday . This food is simple and consisted of noodle , soup , and some ingredients . But it 's very difficult to cook good soup . Today , my father will come back from hospital . lf he comes , that 's too bad , lf not he will get well , but the money wo n't get too much better . . . . . er . er First , l must get a job . Then I can fix the problem . I begin this SNS now . I found the bookshelf costs low . I 'd like taking pic and listenig to music . And sometime I draw people and animal . The problem is losing keys . I know a lot of people who does n't know were it is , maybe because it 's a little island and is n't as important as Barcelona or Madrid , but Ibiza is such a beautiful place . building mills , strongholds , and city buildings . He can build an excellent defensive building ( the great wall ) , develop a distinctive technology ( computers ) , or get new colonies like Columbia . My friend texted me saying she is in Nakameguro . For example , if they prefer earning money by a part - time job as opposed to majoring in subjects that they have not ever majored in . I want to tell them `` you can earn money to earn a living even if you wo n't after you graduate from university `` . I 'm eating more vegetables for food . Photo album It 's the first week at work since the long national holidays . We keep talking when OCC 's proffeser was explainning . I must practice my English listening But I found my English listening is still very bad . I did some English listening test by myself . I think I must practice my English listening every day ! because it does not require physical strength ( I am not particularly strong ) . But the biggest reason is that I like to glance at many different kinds of people . Is that bad reason ? and many salarymen and students come to buy breakfast or lunch . For instance , people arrive at the same time and buy the same or similar foods . which is why they do n't remember being registered ( ? ) ( assisted ? ) by the same staff . If you always go to a particular store , you might be observed by the staff ! My purpose for this year is to study English . Today , I will go to the one of the biggest shopping malls in Tokyo , where I have lived for a long time . Ever since I was young , I have behaved confidently when I have done everything . The title is `` Successive Holidays `` I want to watch the volleyball games on TV . ( I want to watch the volleyball games in a stadium in reality . ) finally I asked her . This is a translation of a Japanese fairy tale . On the day , he received a gift from them , it was a big kite ! All of a sudden , a strong wind blew and the kite took the pig way up into the sky . The kite transported him to his grandparent 's house . These therapies are very interesting and innovating . I 'd love to get any information . I found the teacher had a good way of teaching , which gave the children an interest in the violin . * okara ; kind of leftover when you make tofu , but it contains a lot of protein . When I make a cake , I reduce fresh cream or cream cheese and use tofu instead , and also when I make a hamburger steak , I add tofu in mince . I really do n't like to prepare for the festival , but I like to participate in it : p But I 'm jealous that most of countries have halloween parties because we do not have that : ( And we went to the famous temple called `` Chuson - ji `` . I also have read his other books like , Have A Litthe Faith and For One More Day . Today I wrote only this sentence . But I could n't because I was in Au . I had to send the letter early . When they receive my letter , they will be surprised and happy . Surely we know a lot of grammar because we 've studied it since we were junior high school students . It 's no wonder that Arabic people of lower level can listen better than us because they 've been staying here for longer than us . Even if I have a chance to meet the celebrties I 'd prefer to meet economists or business people instead . Tom grabbed an orange . Bob hit Tom . I have a diary in English . I write for a Japanese soccer team , Sanfrecche Hiroshima . The team is a J1 league team . Ithink Sanfrecche will get the title this year . I was not entirely concentrating on the wedding party because I often watched the photographer . I have to finish some reports tonight . Keep enjoying ( ( = today 's actresses do n't have such atmosphere . . . Global crisis , London Fashion week , lectures in the university , my friend 's troubles . Last , you clean your class room , corridor , stairway and washroom yourself . This is my first entry written ! Anyway , my English level is really low . But if someone wants me to say something in English , I really do n't know how to say it . Next to my company , there are many foreigners . I want to communicate with them , but I do n't know how to begin . Sometimes it is very boring because I do n't like classical music . Music is the most beautiful thing in our lives . There are different surprises in our life everyday . Maybe next time I can do something to train my muscles . I 'm Tak , 26 , Japanese who loves to play basketball , watch movies and enjoys the beautiful ocean to swim , free diving and hunt fish . Also I 've been studying English since I had experience to study abroad in U . After I came back to Japan , I continued to study English in a university . So , I take pleasure in looking all around these language sites . We eat it with soy soup ( made from tuna ) not OKONOMI sauce . I just made the words ` language question `` , shorter to say `` L . The wedding party lasted two and half hours . We enjoyed some games and talked with friends . 9 years ago , I went to the United States as anexchange student . After having said my first English sentence , all the students laughed at me . So , I lost my confidence in learning English . Moreover , the English teacher who taught me for three years in senior high was a very annoying and lascivious man and that made me hate English too . After graduating in 2008 , I found a job in a joint venture , lucky . It is about a cute girl who was murdered by her neighbor . two years later , Susie 's family , her father and young sister still cant give up finding the murderer , finally , her sister found the evidence to prove that the neighbor is the killer . Well , I bought a new game called , ' ' DISSIDIA FINAL FANTASY ' ' . I have to be careful not to spend too much money . I 'm going to Roppongi tomorrow to meet some friends who can speak English . He also obeys our commands , such as : sit , wait and shake hands . Furthermore , every cigarette company should be banned for selling toxic materials ! According to the weather forecast , it seems that it 'll snow tomorrow . Being a caretaker is a great job . A caretaker has to have a likable personality . I thought she had potential as a caretaker because she has a good smile and a friendly atmosphere . But , hearing her story , I found out that a caretaker should not only have a likable personality but also a strong heart and a flexible personality . All buildings are of historical importance . According to news and documentary programs , the huge amounts of greenhouse gases such as CO2 , cause the change in global temperature . It is said that trees absorb CO2 . Automatic translation is not accurate . . ? Rumoi is small rural county . If I have a private teacher it would cost 20 ~ 30 dollars an hour . Today , I need to write a review of a famous Japanese writer Therefore I always miss the first chance to reply to my messages here . Sandra Bullock is always a nice actress that holds a special place in my heart ! Banks do n't trust JAL 's management and are refusing to lend additional funds . The topic is marine living body molecule faculty chemistry . Last year , 80 % of the students who majored in marine science failed the test . But I will study chemistry even more because on June 11th , I will have another chemistry test . Seeing this score , I was very surprised that the writing score was the best and the listening score was the worst . Reading and listening skills are the fundamental ones . I 'm writing this entry by laptop on the train . I do n't really know how to describe this feeling , but it starts when I think about what lies beyond our solar system and how tiny we are . Only 5 days later New Year comes . When she arrived at the hospital she looked scared but stayed . It looked like she was almost crying but trying not to do so . I will go to India this year . . Hello . There were beautiful ocean views and a cozy atmosphere in that video . This Matsuri was small and different from Japan 's one ( of course ; ) . But now , I do not feel good . Because I find if I open the computer , I just play games , chat with friends and receive the E - mail . When I want to learn some things from the computer , the time has passed . Maybe two or three hours have passed , by that time I need to go to sleep . The plan to learn something about English is always delayed . I like the scene when Marty plays the guitar at the party . Bas ga ososugita ( past form ) kara , watashi wa shigoto ni okuremashita . * PM Form + Yasui = easy doing verb Watashi wa nihongo wo miruto sugu kandou shimasu . ( hmmmm how can I put the `` yasui `` in this sentence ? ) Actually I 'm still afraid of them though I have grown up now . My dentist was a funny lady . She told me to just relax and not to be afraid of her . I should ( will ) be more careful with my teeth 's health from now . I believe I can be a good student and a good teacher ! Certainly , people in South Korea are intelligent , but such competition may cause mental exhaustion . I think then we can be more free , especially in Japan . Owner of rental apartments ! For a long time , I thought being an owner of rental apartments is one of the easiest jobs . Clerk `` Hi . `` Guest `` I am looking for a sandwich . Clerk `` Yes , we do ( have them ) . Clerk `` ( How about ) This one ? `` Clerk `` It 's 3 dollars . `` Guest `` I will take 4 ounces of this ham , please . Clerk `` Sure . `` One day , the same scene happened again . When the bus had just stopped , the conductor shouted to the people who were ready to rush into the bus , `` Do n't rush ! The driver did n't notice the conductor was n't in the bus until he found nobody reported the bus stop . psychologist must be familiar with Biology , Russian and math . Hello World reception party Today I went to a reception party at Tokyo modern museum . happy new year Nobody interrupts me . . . I definitely agree with the thought that men and women have different I did n't have an opportunity to listen to jamaican reggae music a long time ago . Cats make me comfortable . I asked about Merchants ' International Shipping rates to japan , and you said that Please look at the merchant `` * * * * `` . ( link to the merchants ' Shipping rate ) I came home and I tried to connect it to my computer . There is something about them I just ca n't understand . My name is Jack , I 'm from Syria ( the eastern coast of the mediteranian ) . I am so proud of myself because of my small diary in English Recently , I am busy everyday . And on Sunday , I was invited to my friend ' s I need rest and treatment from a chiropractor . but I received a notification from a memorial park office a few days ago , which is located in Narashino where my mother 's grave is . An entry on Lang - 8 after a long time . On the other hand , phones , especially mobile phones , are playing an increasingly important part in our lives . Tomorrow is the last full day for me here . Is it a person who talks everything with you or just a person who often argues with you ? Is it something that ca n't be replaced or something that 's not essential ? We do n't feel embarrassed when we do n't say anything , we just sit behind each other . Personally , a friend is a person who make you feel at ease / make you feel at home . By the way , I 'm going to the hot spring with my friend at the end of this month . In Chinese , the word Dog is called `` gou `` which ( the word ) sounds like Goal . Watashi no namae wa Zoli desu . Hajime mashite , Yoroshku onegaishimasu . However , he has to go to school with the neighbor students for a while . I said ' she want to get me a suit . Iwas very happy yesterday . I asked my roommate ( she was sitting near me ) took a picture which contains my cake and cookie ( but this picture maked me look fat , ha ) . I do not want to back to Taipei because it is the time near the final exam and my transfer exam . And I found messages from somebody who is in another country and also studies languages . After I clean , I 'm going to go to sport shop to buy sportswear because I have a school excursion next Friday . Of course , not only speed but the complexity of the content was a problem for me . On the other hand , the English with dialect was OK , as I frequently communicated with such people including German , French , Thai and Taiwanese . Nonetheless , I felt it was an honor to listen to some wonderful presentations and saw fruitful communication of distinguished scholars as a would - be scholar . I have big dream - an American dream ) ) I want to learn English and go to my favorite city - New York ! ! ! I want it now , now , now ! ! ! I hope this site and U can help me ! ! ! Thank for your attention ) ) ) I remembered that I must buy white shoes . I think that there are three keys to success . Second , there are many bonus events . Yet we can not help but obsess about growing crops anyway . This surgery lasts only 10 minutes , but is it safety ? ? By the way , today this video helped me to change the eye colour in Photoshop . Usually , my mother puts a sweet potato in a microwave oven , but today I made a sweet potato baked with hot pebbles with thaw function of the microwave oven . I want to improve it and hope someone can help me . To achieve this , I am now required to achieve a certain score on the IELTs test . I can study for reading and listening sessions by myself but it is very hard to practice speaking and writting essays . So now I definitely know what I need to ask when I go to the school . Compared with other classes , my class was really peaceful and hadgood team work . I went to Osaka on business . I am interested in American culture , life , and history . In the future , I would like to use English for business , or communicate with people who live in other countries when I travel . I love music ! ! My dream is to join an International Cooperation . I wish only to enjoy life and to do something I like . The movie is Alice In Wonderland . I am goin to accompany my Mon to Japan or Cambodia and study TOEFL regularly and hard . But she studied Japanease very hard . After one year , she could speak enough Japanease to travel to Japan alone . At that time , I had n't realized how short of a distance commuting was . After she got off the subway , I came close to not getting off at my stop because of my very high spirits . I know that she has a boyfriend . So I feel confused and frustrated . I 'm a Phoenix though . For / On my birthday , seven friends of mine came to celebrate . I received clothes as my birthday presents . As title , in our Graduate School of Science , we have a team competition of tabletennis at the end of every year . From the undergraduate student to the professor , every 3 - or - 4 - person - team can enter and participate in this game . The recycle material is used for variety purpose : for example plant pots and exterior materials like wood . I will see many of my friends ! Though I had decided to write my entries everyday at first , I 've been feeling the difficulty of continuity . Hi , everyone ! I 'm a Chinese girl . Could you be my friend ? During those days , I had no other wish except to pass the examination and get high grades . Because I will turn into 18 on my birthday . She will be three years old next month . The temperature may be 28 degrees C or so . I do not use air conditioning due to health reasons . Also , I want to limit emissions of carbon dioxide and other greenhouse gases . As I could n't sleep , I cound n't help but use the air conditioner . Finally , I was able to sleep well . It is one of the most innovative methods I 've found ! Almost every member is a student . We were relaxing at this point . I ate two pizza slices and something else . I have taught English . I am very nervous because I have never presented at a conference . They are similar but different . Everybody : ) So , I 'm going to practice baseball with my college friends . We ate `` zouni `` , which is the traditional soup containing `` mochi `` ( rice cake ) , vegetables and chicken . After graduating from senior high school , I spent three - months as a holiday . During this time , I forgot lots of English grammar and vocabulary . So today , I brought the cat to a vet again . Takao , which is called `` Takao - san `` in Japanese . I went to the park for a stroll in the daytime . Butterflies were flying around the flowers . In addition , I plan to take part in an international conference for Asian students , which will require me to speak in English more fluently and precisely . The second goal is to study economics . In the conference , I will discuss economics , with emphasis on matters concerning East Asian countries . I want to break this habit . A lot of things droped off , and I , people from work and customers panicked . I was so terrified that I could n't think about what to do . My family was not attacked or hurt , so I got releived . I 'm nervous . The match was the Carling Cup Final , `` Arsenal VS Barmingham `` . It was an exciting game . The teacher said `` Walk around in the water to rest . `` and then she said `` It 's time to learn backstroke . `` She told us how to do backstroke . And tomorrow is athletic game . I think you want to contact the Hosan Industry Company that makes things for outdoor and rain ( ? ) , but I do n't have their website or email address . It 's very interesting . Christmas day is coming . Curry was too spicy , but Cheese was most delicious to me . I watched the Olympic games on TV , and I want to enjoy skiing with my friends . . . In Japan , publication contracts between authors and publishers are n't documented cleary . It is easy to control the royalty rate . However , Murakami does n't have to pay roalties to a publisher because he released his novel as an e - book . For readers , it has many merits ; book prices will drop , readers may be able to read books wherever they want and so on . I heard that these two cities have numerous Japanese companies . The real design That is the typical traditional Japanese thought . English people never remove foam from dishes after washing them . Is this true or false ? He answered that it is the stereotype like the illusion that most Japanese people wear glasses with big lens . Currently , here in Brazil , there are many cases of UFO abduction , but the government still has no comment on the subject . Even so , there are many communities that do ufology studies by themselves . I wonder if in the near future all information regarding UFOs will be declassified and the truth will come to light . . . But I think I can handle this in the future ! I 'll tell you about my favorite movie . Because I love drums and marching . Recently I understand CNN News ( pod cast ) which is an improvement from 1 year ago , All of us complained about our speaking teacher because she 's not a good teacher . I like building by design master . Their construction can transmit great information and express their unique ideas , so I like this the best . Japan should stop whaling Secondly , whales are our friends and we live on the earth together . Finally , each species has its reason to exist and the whale 's activities makes the ocean clean . It is a kind of magical creature . We left the Merlion Park and went to the Raffles Hotel . It was too expensive for us , but we were interested in the hotel so we went to look around there . The lobby was well cleaned and its cortile was so beautiful . We were very satisfied with luxury there ! Fortunately , we have not been dissapointed . But it is too bad that it is so dirty on the road . the Lovegood 's house is exactly like I imagined too ! I cried when dobby died ~ and when Hermione `` obliviated `` her parents . I have a gift for playing music , but I have to learn another profession , which is my parents ' expectation . Hopefully , there wo n't be any trouble during my trip ! English that Japanese high school students are studying is really grammatically difficult . And the vocabulary is so , too . I remembered almost all the English grammars , but still , it is sometimes difficult to tell where S ends and where V is . But this word is actually difficult and it is weird if I use the word when I talk with friends or children , right ? ? I thought it was too big for my computer , so I canceled the download . because I wanted to be Network Engineer . But now I 'm not so sure about that , and that 's why I want to practice , to see if I can really speak English . I thought that I should take care of my health because it is so weak . However , our town has not campaigned to build windmills . There are some differences in opinion as to whether the view with windmills is acceptable or not . While I was looking for the place , I tried to call my friends , but `` they `` did n't answer . I stayed up there until next morning . I want to discuss a lot about grammar relating to our feeling , and also our mind with analytical way . This is a heroic town , because it is survived the Great Patriotic War . Sometimes , I work , and now I water the flowers around my school ) ) I have a younger brother , he is 8 years old , and he studies in my school . There are , however , many things we have to do to protect and develop their understanding of human rights . Spanking is needed sometimes , especially when children are too young to hold decent conversations . I was also studying English in my dream ! ! I believe that time solves everything ! Sometimes I had to choose between them . So I 'm afraid you ca n't see the upper rainbow so clearly We enjoy watching programs on it ! ( Of course , I want to study English . ) I am so happy today , because my company got this big case this morning . It 's big news for all of the staff in our company , because it means we have things to do and that there is no need to afraid we will be laid off , or take unpaid leave . ^ ^ , Recently the global economy is so bad thatmany people got fired , so it 's very helpful to have a big project in our company , ha ha ha ha Since it 's raining , I ca n't go out and play , Recently , I fool around anywhere and surf over the Internet all day . My mobile phone is possibly broken . I 'm really worrying about this problem . I want to speak and write English well , so I have begun keeping a diary . It was slippery and dangerous . New vocabulary practice Mar 19th , 2009 Please help me to correct my English . I met my sister at the restaurant . I still remember I went to this school alone with a big luggage three years ago . I will always cherish the experiences I had at SCNU . So , I went to research the market in Italy . quite religious . I am determined to learn English , but my English skills are not very good . This surely includes me . It might be because Japanese does not have similar words . I experienced various things that were good and bad . make my mind to go abroad to study , help with some company work . . . At Sydney , there are ten campuses such as Caperdown , Cumberland , Mallet Street , and so forth . When I wrote the tile and the first sentence of this diary , I wondered if `` Families ' New Year 's Party `` was more suitable . However , if we lose air we are unlikely to survive . In present day , air pollution get worse and worse , Industries at will exhale the waste gases , more and more people drive to work and like smoking . we should find a method to solve this problem . Before exhale the waste gas , industries must install waste gas purification apparatus . As promoted by the development of modern science and technology , television programs today attract a vaster group of audiences with tremendously enriched conten and a 24 - hour rolling schedule than ever before . The fact that television seems to control our choice of leisure and entertainment has recently brought a problem to focus on : whether has television destroyed communication among friends and family ? Beside , in my own family , my parents and I enjoy the time when we are sitting together and watching tele - films . I do not deny that there may be some cases that people are so addicted to television or some other habits that he / she will probably ignore communication with friends and family . Rumor has it that Seth Rogen did n't read off the same sheet of music as Hong Kong 's famous actor Stephen Chow for the flick `` The Green Hornet `` , which will hit the big screen in early 2011 , thus Taiwan 's hottest singer `` Jay chou `` substituted for Stephen Chow , as the lead male 's assistant `` Kato `` that used to be played by martial arts master Bruce Lee . I have never eaten a sandwich there and wanted to eat one . So they came to my house and celebrated the new year . Every year we watch Ekiden where college students run a long distance and pass a baton ( taski ) . my cousin 's children came to my home for the first time . I enjoyed the new year holiday enough . Is it true or false that cellphones influence the functioning of pacemakers ? So I hope somebody can help me correct my grammar ! Third , the author described that the ultra marathon race took place in a mountainous area in Mexico , where American top ultra marathon runners and Tarahumara runners competed against each other . In 1996 , the writer died because of liver failure . I have begun writing a diary in English using this web site . I also try to correct diaries written in Japanese . I will need your help in the future . My companys holiday lasts from the second to the sixth of May . But if I thought , my holiday could not become long . I wanted to a cold drink . 4 customers were there . That 's because we are taught grammar , not conversation . I know grammar is very important when learning a foreign language , but I think we need more practice speaking . I have a friend in Oregon . We visited many places when she was in Japan . It is afternoon in Thailand and I feel really hungry , I will find something to eat . . Since my daughter is still a baby , I can ` t do anything I like if she is awake . because my friend told me that reading books helps your spellings and reading skills . So they often sprinkle water on the coal in stockyard . It looks like not only me , but also other people all around the world are interested in the Android phone . I often use subjects of sentences repeatedly . I could see piled stones , vertical cliffs and rough sea . While I had n't booked any hotels or other accommodations , it was not too difficult to find vacancies there . So , I was thinking that I could easily find a room available on this small island , too . I therefore decided to ask him what I should do . After school my friend consoled me . I watch movies and read English books , but my main problem is with speaking , writing and using grammar correctly . ( I 've studied grammar but I do n't know how to use it when I speak . ) Today is rainy in Kyoto , Japan . My favorite music is Perfume and Lady Gaga . I ca n't wait until the Gaga 's new album is released ! Perfume is made up of 3 Japanese girls . Some people say `` If you want to live in Japan , you should apply for citizenship . Of course , I love Japan more than Korea . I came to Toronto in February of 2009 . I wentto English school and got a job . It was great experience for me . Can I get the target I planned at the beginning of this year . I want to go to Japan after 2 years . I want to know more about life in Japan . I hope someone can tell me if a student studying abroad can find a job and support himself in Japan ? Anyway , I can not write in Hiragana today like magic . today is wrok takes a rest . it was possible to run 10Km today . Many questions have not been solved . . . . I 've noticed that the reason for my lacking English ability is my small vocabulary . And the avant - title of `` A Channel the Animation `` shows the names of creators with a very cool style . I 'm trying to study grammar from the beginning now . These are quite expensive here in NZ . I usually ca n't afford to buy these things . It also reminds me of Gaza and our situations these days . I believe you can do it , too . Fist , you can remember some set phrases and sentence structures . Then try to form them into a new , complete sentence . I stayed my friend 's house and I come back to my room next day . I spent the whole day at home today . While travering , I ate various food in each town . Next month , I will make and launch a model rocket . My grandmother lives in Fukushima . Fukushima has nuclear power plant which has been issued . We had special dinner with our grandparents and cousins . I belong to the basketball team . Today practice was so interesting . I just wake up 7 AM , and take half an hour for shower and breakfast . But there is especially nothing to do in winter . My boss , who has good sense of humor , is nice guy and allows me to study something when I do n't have any work to do . I love soccer so I watch soccer games , not only Japan 's but other countries as well . At the beginning of the year , there were many goals that I set up with hope but now , I guess , there were few things that happened . It means `` the goddess of liberty . `` Recently , a close friend of mine hesitated to apply for the receptionist job . She stayed at home all day to prepare everything for her husband . Absolutely not ! We sometimes must endure their unreasonable requirements . Even though I come from a non - wealthy family , I never look down at my family and myself . good morning everybody ! I woke up , and then I had a breakfast of steamed bun , a banana and milk . I keep writing on my diary recently . it 's because I do n't have an opportunity to speak english . it sounds a litte strange but I do n't think so how boring ! because we do n't meet everyday Although I 've learnt so much , I still do n't have enough confidence to face my future . It is an outdated thought to discriminate against bi - racials in the age of globalization . but it is raining in Japan . . . . menu : vinegared rice topped with fish , melon , noodles and green soybeans . Tomorrow I 'll participate in a water melon festival . Although I am not gay , I do n't think people should kill someone just because they do n't like them . My friend who went to Canada says crows there are very small , like sparrows ! ! Japanese crows eat garbage and grow fat . `` I went to an English seminar last Saturday near Tokyo station . But that seminar was good opportunity for me , due to meeting people who are highly motivated and achieve higher levels than me . I will have a TOEIC TEST in November . Ran to the public bath Because I do n't know much vocabulary and ca n't speak well . For today 's dinner , mushroom was served . Well , that 's okay because I ate delicious tacos and pizza after that . My gentle host mother allowed me to pay tomorrow . I 'm interest in playing and listening to classical guitar , riding bicycle , traveling abroad and playing Star craft etc . Please enjoy my posts and give me advice about my posts with type - o , grammar and vocabulary etc . I have a girlfriend . She told me to let our relationship return as it was before when we were friends . Shortly after I went back home to put the souvenirs in my room , I left my home for a Japanese restaurant . I 've got to appreciate that . I think that Koreans like to go to the brand name coffee stores especially when they want to meet friends or want to read a book , study , etc . Firstly , Koreans have a tendency to look for brand name products when they buy something . The boys had breakfast . I want to take a rest after class but my family said , `` you are a high school student , so you should But many people think speaking and writing English well is somewhat of a privilege . So I went to the second floor . I did n't understand why he could n't see me , because he saw the first floor where I waved from . At the moment , all my classmates are typing their essays on the Internet . Indeed , it was as hot as crazy , Insteadly I swam 1km . I think this is a hard problem because owners might say : `` It is right to build my house on my land `` and need to immediately be solved by the government . Speeches , chatting , twittering . There were some core developers of CakePHP and they made speeches . I was there a few years ago and that ramen was very delicious . One feature of this ramen is that it is rich . I registered at Lang - 8 Today . I think Lang - 8 is a great SNS because it has the express purpose of studying English . Today , I 'm in a bad mood because of my college entrance examination , I did n't perform well , especially inMath . But now I still ca n't commend cinemas with English . If so , I 'm curious to know what they are doing . I want be always surrounded by people who enjoy talking with me . Worrying about security , I set a password for the file . Autumn season is the best season to exercise for us in Japan . Why do n't other countries clean their ears ? The news reporter said `` Almost all the world 's people do n't clean their ears . `` There are ea cleaners services in Japan . We sometimes clean our ears . Cleaning ears is good feeling . How does it become if you do n't clean ( your ) ears ? The traditional earpick of Japan hasa top of cotton or Daruma . My birthday is at the end of December . I make it a rule to go to university by foot . I must pay my university fee without my parent 's help . I pay my university fee out of my own pocket . I got up at 8 : 00 and had breakfast , The city is very popular with people having fun , especially surfers . Kanji is Chinese , some are the same but others are different . Recently , I have been worried about my future . I found that I nearly have no free time for myself , but I will still try my best / hardest . I printed out my diaries with your corrections . Im reviewing my diaries and reading many people 's corrections now ! ! ! I hope that I increase my vocabulary and learn how to express myself . It tastes very good . Though I have been learning English for many years , I find it 's really challenging to improve my spoken English because of limited learning environment . WHEN I LISTEN TO THEM MY COLLEAGUES SPEAK ENGLISH WELL . EVERY DAY I GO TO WORK , TELLING MYSELF I SHOULD LEARN SPEAK ENGLISH . My friend took me out the restaurant . In the afternoon , I rode my electric bike to work . It was 9 p . m . when I arrived at the central of Bergen . Finally , I will always clean up our apartment . On days like today people use electricity a lot , but due to the earthquake that occured on 3 . 11 , we are short of electricity . The government told us not to use electricity carelessly , but they did n't announce any countermeasures against the shortage of electricity . By the way I want to buya pair ofcrocs . The station staff told me that I may have to wait about 3 hours , so I went to Xihu to kill the time . I was walking around the lake for nearly 2 hours and took more than 100 pictures , then I went back to station to catch the train , but the depressing result turned out that the train has been canceled . What should I call this phenomenon ? For example , the word `` perfect `` is `` perfekt `` in German so I often make a mistake . So I get used go to bed at three or four o ' clock in the morning . When teaching Japanese , I need to explain so the other person can clearly understand the basic grammatical concepts . I heard from my friends that there was a website in which we can get corrections from real native language speakers . Is it a correct sentence . We should work together and try to build our future ! know how many rich men can be available for their request ! I believe my life will change for the better and I will I am a salesman in spite of having a problem with speaking . If I were not a person that stutters , I would probably laugh at it , too . I did n't even think that I would become a salesman . I have met several people who have overcome their stuttering . They said that being old and having experience counts , so I believe that I can get over it . I 'm okay with the dress but really do n't know what in green can be added to the outfit : scarf , hairband , necklace or bracelet ? She is a student at an institute . She likes chocolate very much . I combined this into the previous sentence . But I could n't drink beer because I went by car . One of the places I would like to visit is New York . My plan is to open it near a university , because I want to cook delicious and inexpensive lunches , cake , coffee and tea for many students . I want a lot of advice and messages about my dream ! ! ! Recently , we had Weight training . We enjoyed grilled fish , Japanese radish salad , yakitori ( chicken roasted on a spit ) , and ochazuke . I did n't feel bad at first . I have already reserved the bullet train 's sheet which I 'll ride on . We should notice that school education starts too late , at which stage , the foundation of a child 's personality has already developed . basically I lost attention easily man , that is freaking gross lol It was a very hot day , but I had a very good time with my company . It has been raining cats and dogs this week . I chose two songs `` Somewhere in my Broken Heart `` by Billy Dean and `` Song from a Stormy Night `` by Secret Garden `` . I found out this song by chance but it is perfect from the lyrics to rhythm . And since I 'm a person that 's easily distracted , it 's good for me to learn how to use my time more efficiently . Observe the progress as you go and see whether you are staying on the task . Most Japanese people are Buddhists , but they are not seriously religious . I ca n't resist eating my favorite foods like cake , ice ( cream ? ) , and snacks . I 've come to realize that that is not healthy . I should save some money and be careful not to eat junk food . I will eat chicken and more delicious food . Those are just opening words ? because I just have been studing Chinese I have totally no idea what to do now , but I 'm going to find a way to help them one day . I went to the graveyard with my family because it was Obon . Checking my grandfather 's Buddhist name is like preparing for my father or my mother 's death . Only a few minutes after my first diary here , the kind snowleopard helped correct my mistakes . In onsen - hotel housewives can relax to their heart 's content . Because she can not only escape from her daily house chores but does n't have to do anything for her family . So , their dream was go to onsen and relax ! The school keeps me very busy , I was able to book a concert ticket that I applied for last month . Correct function , Coment function and so on , is PCver . the beautiful sky after a rainy day . I love the sky , especially after a rainy day . Some foreigners want to add strangers as friends I do n't want to connect just to collect friends . After arrived at home I realised whose house it is . Most of them are not good at Englsih and do not like studying English , [ comma ] In the show , a man who lives in Mali sent a warm message to Japan . Introduce my self Telemarketer for the day . This symposium is thought that the biggest one in the magnetic society . Hmmm . . . Before you achieve success , you may go through tough experiences . I constantly receieve things that make me wonder what I should do to make them pay for it . our food self sufficiency rate is really low , compared to other countries Mnn no , actually my friend 's mother gave me chocolate ! A few days ago , I ( we ) started twitter for appeal our issue . 140 letters at a time seems too short , but if you squeeze your brain , 140 letters can be good enough . The problem is if I can continue to write or not . I sowed some morning glory seeds , but only 3 of the sprouts came out . These days I 'm so weary because of lots of assignments . Hello , I found this site by accident , and it is cool , I really think this site can help me a lot while I am trying to improve my English . I think her travels are 5 times better than her novels . But not anyone can travel to 3 countries during a 1 year period like her . I am a lucky guy . : ) If my sentences do n't make sense or are grammatically incorrect , then please correct them . My favorite subject was Botany . Recently , I 've come home without work , so I have time to learn foreign languages by myself and train for Aikido . That 's why I really want to speak English . Saying `` TheIPhone is necessary for you `` , some of my friends bought it , in fact . Also , it is good for the environment . all teachers understand my speech Also , my expression is same everyday Nowadays , fast food restaurants are also beginning to provide a light meal like a salad or a lower calorie drink like a diet Coke . I hope the sun will be shining when we arrive at the park . so not only soloists but also groups can have an audition in season 3 . When I speak , I become confuse because English and Japanese have different word orderings . . . Also my handwriting is not good . . . I 'm really upset , because I have 1 month before I leave . I miss Taichung and my old friends . I usually grind the favorite coffee beans and make some coffee . My favorite coffee beans are deeper roasting , bitter - tasting . ( Sometimes when the coffee beans are sold at a bargain price , I make the decision to buy immediately . The city was hit by a a strong earthquake , but Tokyo has stayed strong ! I did not know he was sit near my foot and playing in the computer . He said to me `` what ? What did I do ? `` . I come from Taiwan . They came from England , Canada and America . But , fortunately , I 'm better and now I am coming back . I will plant them some bright day in the middle of November . Of course it has cool music , a good cast , and an awesome script . I want to study English . 1 cola is about 250 yen , a burger set from McDonalds is about 1200 yen . . . will not be able to eat hamburgers for 1 year . . . . The second one is the Chinese Pavilion in the EXPO . A lot of new similar idioms The other day , I went to the Kyushu National Museum in Fukuoka , Japan , and I saw `` the national treasure Asura `` . There were many people , so I waited in line for a while . The moment I saw the Asura statue , I felt ious mystified , because in spite of the many people / the big audience , Asura was standing there quietly . I know both the bride and the bridegroom , so I hope they 'll have a truly happy new life together . Then I had breakfast and did not know what to do next . I arrived at InCheon International airport early . I was so nervous , However , my teacher is very strict to me , and she always tells me that the facial expression of my painted cherubs looks so weird that I have to repaint them . I had never gone abroad before I went to Ireland . I was only Japanese person in this stable . And it 's the first time as well that the original will be played without turning it into a simple one for beginners . It 's `` Gymnopedie `` composed by Eric Satie in France in 1888 . Cleck here . I decided to buy it . It let me study about Korean history such as how the North - South war started in 1950 and the annexation of the Korean pennisula by Japan beginning in 1910 . But I worked . . . . . I got some chocolate and a muffin because it is White day . The one I had most success with was a rabbit . I fed it from a little rabbit to a big one . Alan Rickman played in this movie . But I believe that if there are different forms existing , then there must be some reasons for them to exist and for natives to use the way especially about the usage of articles . Although I have learned a lot in school , I ca n't turn all Chinese into English because I do n't know the vocabulary . I am worried about my English resume , because I 'm afraid that my broken English would make the offices laugh over their head . I received my telephone bill today . I use that phone for internet access . It 's not supposed to be used to call friends . It 's just me that uses this number to call people sometimes . The details of the bill said I called and used it for around 1 . 30 hours or something like that . I did not use it like that . I just use it for 5 minutes to call my friends . They ca n't check it right now but they said they will let me know later . and I am very busy preparing for departure ! We were able to listen to the sound of the waves while we were soaking in the bathtub . Some friends talk about their secret stories , usually related to love . I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the bathtub . But the important thing now is to organize a rescue operation . In fact , my father and I just went to the store ( on ) the day before the murder . I was really surprised because the horrible murder happened close to where I live . I got a cash gift . I 'm so stressed that I ca n't concentrate on the presentation . There are five people in my family . My mother 's name is Wanpen , my father 's name is Sonjonh . I have one sister . Her name is Tudsanaporn . I have one younger brother . His name is Lertchai . I want to make friends when I travel to foreign countries : D I wanted to buy 500g of chicken , but there was n't such a volume , there was either kilograms or whole chicken carcasses ! ! The shopping cart was very large too , so I could n't help but buy more things than needed . I love to listen to classical music on the internet Radio `` Classic FM ( UK ) `` . Sometimes I have listened to `` Out Of Africa ( Screen music ) `` on the radio . If I have made any mistakes in these sentences , please correct them ! ! Of course Macdonald 's food is not capable to properly keep us healthy because they use lots of oil and it 's hard to keep good balance of nutrition if we only eat from their menu . if I stop , many things will change . I do n't like my life at this moment . I ca n't relax myself . What I can do is make fun of the people who live around me . Someday , I wanna watch those movies without English subtitles and speak English fluently like a native . I love oily American food , but over - eating is bad for our health , so I need to exercise more self control ! ! ! Today is Mother 's Day ! ! The peanut butter includes pieces of peanuts and is a little salty . Also , I like particularly bitter chocolate . I Worry about it very much . But I know I will get busier and busier . Maybe I enjoy it , I 'm also afraid of it . One day goes by again , en ( ? ) a little bit helpless , but also with some regret ! ah ! It spread good smell in the bathroom . I am watching a foreign drama . It was popular in Japan awhile ago . I have not watched all of season 1 yet . I think I need more regular excercise . People have many excuse for not to exercise , mine is I am afraid of my skin getting darker . Even though he said he wo n't develop a relationship with someone just passing through , I still fell into his warmness deeper and deeper day by day . No matter how loud the clock rang , I had no reaction , so I skipped class this morning . : p But in facts I want to know if there 's any way can make me miss him less , cause my friends always told me to forget a person it is impossible to be with . I like the class so much , but it 's pretty hard for me to follow up . 1 - Watashi no ima wa ookikute hiiroi desu , sorekara ookina mado ga jitensha - doori ni menshite imasu . 3 - Chairoi taku wa arimasu , desuga zenzen watashitachi wa tukatteimasen , nazenara itsumo okimono de ippai dakara desu . Today there was a flamenco show in this restaurant . I can always listen to the music of flamenco . I like this music , but can not dance flamenco . It 's especially comfortable to run in the morning . I wore a beautiful dress and had a lot of make - up on . Is my feelings strange ? ? So I asked a saleswoman if she had the novel ' The English Patient ' . # 2 is her diagnosis and cut her teeth . # 3 is her medicine . I ca n't fall asleep today , because a hurricane has come to Korea . Hello my friends , I have missed writing in Lang - 8 . It was the most Lovely Holiday of my Life . The only thing I am worried about is that someone might hit me and try to steal my money because I have heard there are people who assaulted and stole money from people at ATMs in Japan . Turnitin is a detector for bad academic practice or plagiarism . Without having to include any references it would mean it 's plagiarism . If Turnitin warned you that you have plagiarized , you must rephrase the sentences in your own words or include references that you borrowed from other writer or creator 's ideas , otherwise you will lose a lot of points and , to make matters worse , you will fail the course immediately . I have been a public servant for 2 years . I 'm going to join in the English Communicate Forum tournament . `` it 's time I 've watered for your rose that makes your rose so important `` It is like a child 's drawing , so I get embarrassed . The firewood is fuel for the water heater . Nowadays , fuel for water heaters is mostly gas or electricity . I am feeling a little bit sad . I went for a walk around my neighborhood and found that many things have changed . Many interesting shops have been built and it is a pleasure to enjoy them . I did not intend to address political or environmental issues . For everyday since I had to care of my grandmother , who has I remember when I enjoyed some seasonal festivals with neighbors , went to temples or shrines to be grateful , cook and eat traditional food to be eaten at the particular period . I 'd never heard of such customs before . When I went to the little shop ( on campus ) , it was crowded too . One of the children is eight months old and the other two are one year old . We have separated axactly one year ago . I played Cod4 in an internet cafe with a Japanese girl , but we did n't talk much with her , because she was too depressed when she was playing the game . Actually , at first I wanted to study Psychology as my major away from my hometown ; As a result , I followed one of my best friend to enter the university that I 'm at studying now . Besides Japanese , I 'm also very interested in other cultures , like European and American culture . ; p I hope I can make more friends from different countries , learn more about different cultures and make a difference in my life . ; p Because the bang has hang over my eyes . If you use Twitter , let 's become friends . Ha ha ! I am very happy ! ! ! It occured to me that we could have a useful and interesting time together . But the weather forecast said it would snow by midnight . But if the temperature is not so cold then there is a lot of rain or snow . Snow makes transportation difficult . I felt very good and healthy . I will take my holiday for Chinese Spring Festival from tomorrow till Feb . 102009 . So in this period I may not come here as frequently as I 've been doing now due the inconvenience in accessing the net . Today I had planed to read my book before I went to sleep but I am still spending a long time correcting my diary I think I will probably read it tomorrow morning . Also it is much more difficult to talk to someone when I can not see his / her face . Unfortunately , I have no chance to speak English in Japan . I bought rolled fruits cake for him at Shinagawa station on the way home . Dragon Quest joker that I bought one month ago . If they play a game for thirty minutes in the morning they should go and play outside for one hour in the morning and the same in the afternoon . These are really necessary clothes but they are also a little expensive for me . Also , I love `` Veronica Mars `` ^ ^ We can inquire about the results . You also have to believe in yourself . This is because it should help me to improve my sense of rhythm . ( I want to be a good singer ! ) I feel like I am a good friend with this device . If he is forgotten by everyone , he will receive a real death . However , that is not real space flight , but that is the first step in bringing space tourism to our daily life . many Korean students do n't like to study for TOEIC , The purpose of visiting Nikko was to talk with foreigners in English . After lunch we walked around Toshogu Shrine , but we did n't catch / meet any other foreigners . Congrats ! ! I 'm no longer surprised when we have blackouts because I 'm now prepared for them . Now , I look at my game collection and I ask my self : how did I play all these games ? I am studying to prepare for the promotion test . I 'm having trouble with my annoying neighbor . I 'm at the university in Japan . I do n't believe that news ! ! butI reallywant to communicate with a foreign student , especialy with achinese or japanese student . I 'm looking forward to making many friends here , so please contact me if you have any of those hobbies listed above . I had a 5 minute nosebleed but it was nothing serious fortunately . Students really wanted to watch that game . We were really depressed and did n't concentrate . Not being able to stand and see the unacceptable truth , we are planning to create a new club where students can stick together and share experiences in learning English . To have a success in organizing an English club , the leaders need to have interesting activities to contribute and maintain it . because I do n't have enough English skill and vocabulary . Because Baigou is `` The city of Bags `` in China . After the meeting , we ordered a pizza and had a dinner together . First Time ? So . . . here is a question from me , what should I do each weekend ? Today , I showed my mother how to make a decorative mail by mobile phone . It is wholesome erotic , so it 's safe for children . The day before yesterday was Eurovision . many thought that it was a failure . I forgot to write X ' mas cards to some friends , so I wrote some in class . or European countries because Nobita is so lazy . Occasionally , we should go through trial and error to determine the best process . I love to watch movies . I go to the movies and rent DVDs oftenI also have movie channels on my TV , so I can watch movies almost every day . I have a lot of favorite movies , and I want to recommend `` Beauty shop `` with Queen Latifah . and `` Nobit `` ( I 'm not sure if the is correct ) with Eddie Murphy . ( It 's so difficult to spell people 's name ) My favorite feature about the game is that you can go a battle against your enemies even if your are only level one ! Because I do n't think I 'm ready enough for my future . And I think getting older means having many responsibilities . Now , I really want my wife to be a Japanese cartoon worshiper . As I had thought , she enthusiastically read it HAHA . Probably because , in Singapore , Japanese comics are little more expensive than in Japan . I have to get better , especially at long - distance Free style My job is engineer in semiconductor . I received a mail from my daughter in Bali , Indonesia . I have always been interested in online learning and am looking forward to gaining more experience in this field . I look forward to seeing my friend because we have n't met for a while ! I hope to improve my English because my grammar is bad and my vocabulary is so poor . I hope someone will correct my English . He remembered his father , mother , brother and sister . His teacher liked him , not only is he a good student , but also he is only foreiger in the class . Can you guess how many men are in Jam 's family ? Yesterday morning , I did n't check a weather forecast . writing skills , but also it will be a good chance to get various experiences with I should have spoken clearly and made sure . Of course , I watched `` Uglly Betty `` . I will probably watch `` Uglly Betty `` tomorrow too . m and finished at 7 p . m . After that I had to go to the office for study session with my co - workers and my boss . Is that right sentence ? Uuuuu I became sleepy , I think I should stop imagining stupid things . I 'm 12 years old , I want to make a lot of friends . today I took a bubble bath , for the first time , The female instructor is very nice . The most popular one at the library in my town was `` Magical Cleaning : Clean your house with pounding heart . `` The waiting list for this book had more than thirty people on it , so I did n't enroll my name on the list . I have to pass a State English exam so I 'll be very grateful for your help and corrections ! There 's a chance to meet a person who has a similar inner world like mine . It was very delicious . In our city , winter is often cold ; strong frost , snow storms , and ice . Autumn will bring joy to us , when nature comes alive and becomes warm and affectionate . I sometimes felt sea sickness . Yalta is a centre of tourism and entertainment - well - looked after parks and alleys , a wonderful beach , waterparks and many cafes . All of this attracts many tourists every summer . Alupka has a beautiful botanical garden , which contains a collection of plants from all over the world . 1 To polish my shoes after coming home . 5 To raise my English skill from beginners level to intermediate Mysterious man They came by submarine and consisted of 11 people . They then finally succeeded through to the boundary of the Korean forces . But all of them were killed by the Korean soldiers , and so he continued to find them while wounded on the mountain with his spirit ! ! So I brought him to a pet shop in the evening . According to the weather forecast , it will continue to rain until tomorrow . Ahhhhhh - - - - - - - - - - - - - - - - - - - ! ! ! ! I 'm studying English little by little each day . Therefore , I was researching the market related to these products and customers . I 'm still continuing to research today . Then , I play that melody with the new keyboard I purchased recently . I 'm writing an E - mail . My mother and I hope she stays in Canada and takes ESL at university or college because it can be more easy to enter , save the money and University in Canada is not bad ! r Umm could you tell me two ways ? ( take some exam course and ESL class at university . I heard her thinking that she want to do roomshare near downtown from 12 / 26 and it is better that room mate is Japanese because of safety . Could you ask your friends ? Sorry , my English is really wrong , I appriciate your support . Many Japanese prefer to use mixi rather than facebook , because they have resistance to being discovered by acquaintances ( e . I 've had a funny evening with friends . We went to a big shopping centre , then went back to my home and had dinner together . I am working in an `` Automobile Industry Corporation `` . The machine 's name is a `` Gear Insert System `` . We have until tomorrow to finish any adjustments . Hmmmm , what should I write about . . My Japanese friend Momo and I are in the same English class since this semester . For example , she can understand what I say like `` sit down . `` , `` get the doll . `` , `` wanna eat ? `` , `` take money `` , `` wanna have a snack ? `` , `` wanna take a walk ? `` , `` bring the line . `` and so on . caught a cold ? I think I caught a cold . So I should go to bed earlier today . I am writing my diary for the first time . Nowadays I study English for business . My business is sales , and it imports products from the USA for sale in Japan . I need to conduct sales meetings with foreigners several times in Japan . And since I 've used a lot of my time to read English , I am not good at speaking English . So I want to get my speaking ability better by writing a diary . I feel these 10 years have really flown by . I rented a car . I am worrying a lot about my future . Although I may spend all day making this cake , I still want to do it . On the third day , after I left the hotel , I drove my car to my home . I was impressed by the size and the cultural diversity of America . I got rock salt of the Hymarayan as a ladies ' gift . Most Japanese students do not go to school on s `` a `` turday but I `` am `` this year . The course instructer is not strict but gentle and polite ; I thought in my mind that I could keep up with the course ! It is the start of `` a `` new week and study on c `` a `` mpus . But it 's difficult to do . Now , I moved to another place , so I have to transfer to another school named Northview ( read like `` No frills `` LOL ) . A third dolphin apparently tried for two weeks to swim through the icy channel , but reportedly a teenage boy dove into the water , wrapped his arms around the dolphin , toddled it to the boat , and released it safely . I called her back , wondering what happened . Due to the child 's mischief , I enjoyed a lovely conversation with my old friend . These girls did not seem Japanese from any angle . Anyway , I sighed with relief . . . Last week , I sang and played the guitar in front of my friends . I have been playing the guitar for two years , but I have never played it in front of so many peaple . Recently I had a headache and a stomach ache . Dealing with all that daily hassle . . . . ( although that 's what people are supposed to do everyday ) I went to bed from 4 p . m . to 8 p . m . , so I 'm not sleepy . But they said `` Do n't use lip balm outside of its intended purpose . `` I had a fantastic year . I passed the hair dresser national exam , I met wonderful friends , and I 've had lots of experiences after coming to Vancouver . Now I am learning two languages , the first language is English , the second is Serbian . I have proposed many business plans and a business model , which I think was nice , but he only said that he takes them into consideration . Now , I am studying programming and a system engineering . A lot of people , not only Chinese but also other countries ' , are used to downloading pirated movies or music from Chinese sites . I went to the International party in which anyone can participate as long as they have already paid about 3000 yen each before the party . I think people are can move from country to country more easily than in Japan because Japan is an island . I have a question ! Two celebrities committed suicide recently . on my important day I hope to make friends with a lot of people on Lang - 8 . It happened in the north east area of Japan when I was at home . I then turned on the TV and watched the News . An earthquake is dreadful but a tsunami is much more dreadful , I thought while watching TV . Amazing goal achieved To achieve that , I need to take breaks efficiently . MUSIC is one of my lifelines to survive in these stressful days . Remember , you should listen with the higher quality HD mode . according to the rankings of the most popular dogs in Japan , I wanna speak English . How can I speak English ? How many times has the prime minister changed in the last a decade ? I like to take pictures , and I want to become a designer : D When I go to foreign countries sometimes , I want to speak English well ! Scientists think that the entrance to this cave collapsed and animals died from the lack of oxygen . It was a really good dinner , but I 'm so full now . I aired out my ' zabuton ' because it was fine . To foreigners , Japanese women look kind , tender , and honest . She wrote her feeling and apologised in it . Today , I went to a Vietnamese restaurant with my friend after work . I took part in English Speech Contest yesterday . However , we have n't made reservations for a hotel , train or flight yet because I do n't know whether I can get an annual paid holiday on 28th December . However , I 've gradually learnt / learned what is needed and recently I 've learnt / learned how to enjoy the job . Jeajungcan not only sing but also cook XD This was a big ceremony on new year 's eve . My daughter was diagnosed with hand - foot - mouth disease . I 've heard this disease has been going around my friends ' kids . I just came back from a trip to Shikoku . It has beautiful and soft sands and little bit of waves ( Probably , breeze made that waves . ) It totally looked like seashore . it could n't compare to the joy that the real Aussie beach gave me . Illuminations from each house were brilliant and conjured up a feeling of nostalgia for a fleeting moment . ( it takes you 7 years to become perfect in piano ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school to only learn basic skills or I can not even start . Her full name is Shakira Isabel Mebarak Ripoll ( Oh I ca n't remenber long names like this ) and was born in Colombia . I hope I can sing , listen , and enjoy English songs without subtitles . : Do you know who this is ? The lead singer of Guns ' N Roses , Axl Rose ! : Well now coming in , were you rooting for the Lakers or the Sixers ? ; The Lakers are my favorite team but I 'm a huge Iverson fan , so I 'm rooting for the underdog because the Lakers are like a given , so it 's like I went either way . : Now , Axl , you sat out there , you experienced the Philadelphia fans . . . : I know it 's your first basketball game ever , and I know its pretty exciting , but when it 's all said and done , the season will have been long enough . : Axl , thanks for stopping by . They have `` kushiage `` , the spit fried stuff . You can see how the cook prepares kushiage from your seat . Such as meat , seafood , vegetables and even seasonal fruits ! If you order the `` omakase `` course ( 2500 or 3500 yen ) , they will serve kushiage one after another untill you say `` please stop `` . Since Demekin is a small place , it is better for you to make a reservation beforehand for dinner time . Fortunatly everyone was on time ! We ate good food at a restaurant We could see the nice ocean from the restaurant The host will invite their relatives , friends or classmates whose closed relationship from each other sides . In that day , our old friends or colleagues will travel a long way to join the wedding without complain . The same people were basically found at two places : your relatives , friends or old classmates . I 'm so lucky that today is not Friday the 13th , because if it was , I could easily be a character of some horror film ; ) I would appreciate it if you would correct this . The article was interesting . I think enantioselective synthesis is very important , especially as it affects medicine . So I answer , `` I understand a little `` or `` I understand most of it `` . Last week , I bought his book titled `` The Last Lecture `` . Yesterday was November the first . Some people call this day the Bachelor Day . I guess it seems that the figure `` 1 `` looks like a stick in people 's minds so that many guys link it to a bachelor . Furthermore , January 1 represents small Bachelar Day and November 11 means big Bachelor Day . water - sensitive dye using onions , so this time , Let me explain how to make it breifly . I would like to do a research on one of the reports about a sports meeting featured in the Renmin newspaper , which is not easy because I have to read all of Maybe the managers of these companies did n't understand the chinese market at all . Time : 8 AM on a Weekday ( if possible . ) However , some items have n't been configured yet . I hope I can make more English speaking friends . So there are a lot of idioms Japanese do n't know . Our house were really large and we lived with many families . My job is a certificated public accountant ? This year the weather is especially bad . Reading an English newspaper Tomorow is my mother 's birthday . There was a small town in China and the civilians lived peaceful lives . However , an earthquake hit this town and many buildings were collapsed . Visitors from foreign countries also loves Baked Sweet Potato `` Yakiimo `` ? had beer a little while ago . A lot of foreign guests visited my company . Tomorrow I have a date with my colleagues , we 'll climb a mountain , I the future , I will do it . It 's very important to me . Happy weekend ! Maybe my hair is a little longer than Nicole Richie 's hair . Japan is seen as a representative developed country , and everybody says that Japan is such a splendid country . So we canceled the plan and then I cooked for the first time . The answer is absolutely not . Although I have studied English for 5 years , I ca n't write and speak English well . But my english was not good enough , so we had trouble communicating . I was tired because of the time difference , so I went to sleep at once . How can the human heart be fulfilled ? I started thinking about such things , because I wondered how my heart could be fulfilled if I ca n't satisfy my desires or achieve what I want to achieve in life . I 'm interested in learning to abbreviate messages like people do on Twitter . Another friend is coming here with a cake he made himself , and others will bring something delicious . Everything is perfect . my friend , whose birthday it is , will come here . My main purpose was to study English . I decided that when I leave Los Angeles , I will return or study hard . 2chan is the largest bulletin board site in Japan . This scene must be shocking for many Bruce Lee fans . when I was awake , goodness , the pain was decreasing and now I 'm fine , heheheh thanks god ( _ _ ) There will be articles , prepositions , phrasal verbs , tenses etc . I have n't made up my mind if I would go and see a doctor tomorrow . Also , the Furigana are a big help since I 'm so bad with Kanji . Now I want to draw a simple high school love - comedy . I 'm hesitating . When I rode my bicycle , I took my phone from my pocket , But I 'll try to keep writing journals regularly from now on . My present circumstances are very hard [ / difficult ] . Especially , poor people suffer the most . Although we did not make money this year , I had a great time . Good luck my friends . When I was in 6th grade , suddenly I was out of friends . My best friend said other freinds not to play wi Since then I 'm afraid of other people , especially their eyes and words . To find good friends , I have to go outside . But by writing my feelings I want to catch myself . This summer vacation my family and I got together . But as times go on , there arises some disagreements between my mum and I . I 'm a college student on vacation and I want to study because I must take an exam in the later term . The government takes these measures just in order to bring about some convenience . In my opinion , opening the museum is better , we can learn about the advantages that the government providing . Realizing the policy that is offered to people , knowing that country is always cares about civil life . It will promote our country 's development . But , I saw a mechanical rubber ducky like RoboCop for the first time . One is heading to Dash Village , which is artificially created for a TV project . Near the end of it , the earthquake struck Japan . Through the accident , I take pride in the consideration and cooperation of the Japanese people . This site is a little different . . . I was looking for a song , then I thought : why not pick something related to Sailor Moon ? Then , I thought back to those days when I was watching PSGM . . . What happened to my computer ? because my English is terrible yet . so we can make time to have fun in Vue and it 's so enoyable watching movies . I am so thankful . fry chopped garlic and bacon with olive oil . I enjoyed myself . Last year , its value went up double or triple compared to the one at the beginning of the year . Do n't be surprised too much ! When I try to memorize them , I write them on paper and read them with speaking out . I did n't do anything today and yesterday . He said it is culture shock , moreover Japanese service quality is awesome and creative and enjoyable . I hate ghost , heights , dark spaces [ / BLUE ] , sander , when someone hates others , wars , being hated by a person , dying . . . . . I was very surprised [ at ] the announcement . I love the Scottish accent ! I 've decided to study English everyday ! And at the end are the angels singing in chorus `` Hallelujah `` . Shengbing is the most famous societies in my college , I want to join them very much . Recently , I watched a video blog posted on ' YouTube , ' and the blogger said in the video : `` The best person that you possibly can be , is yourself . `` Have you already had the opportunity of meeting that girl whose pronunciation of Russian is very good ? There seems to be many international people here . And I saw a video from youtube . Menu items are named after certain magic and monsters , and the waiters talk like people in the game . Whatever happens , I definitely do not have any excuse to lose heart . Because they get married young . By the way , today we celebrated the `` green festival `` which is traditional in my city . Despite the young age , the groom looks really calm and polite . We are supposed to play our song in the ceremony , which will be fun for us and the guests . Please check this sentence . I often travel abroad alone . I have been to Vietnam , Cambodia , the UK , Spain , Turkey , the UAE and Greece alone . When doing so , it is necessary for me to communicate with local people in foreign countries . I try to buy my airplane tickets by myself . It gives me a sense of achievement . Introducing myself and thinking about a gift for my friend . Please let me know if I have made any mistakes in my sentences . The cow is an old friend of the old man , who has raised the cow since it was very young . so I only learned grammar , reading , and writing , but not speaking . Especially when I talk to native speakers , I feel a bit nervous because they sometimes reply , `` Pardon ? `` or `` Say Again `` , `` What was that ? `` It really made me unconfident to speak . It helps us improve the ability to relate or summarize something in ways that are easy to get . Anyway , I have to say that learning anything is not a piece of cake but our passion for them will helps us be good at them easier and sooner ! ! ! I do n't like only the European one but also the Japanese . I wrote a report about `` Wagashi `` ( Japanese traditional confectionery ) at university . Foods are perishable and it 's easy for them to gather mold . Today , it rained for a long time . These days , shares of smartphones in Japan are increasingrapidly the same as other countries . So , I do not want to delay making a daily diary , and the `` Big Bang Theory `` soap opera is waiting for me ! Some friends told me they also have the same feeling as me , they said sometimes they would feel lonely , and when they want to call sb to have a chat , there is nobody to call . . Badly , I do n't know why should I do about research topic . this is my research topic . And now , nobody does n't know what Facebook is . However , the fact is that we can never guarantee that those people will be with us throughout our life . We keep learning to be independent , starting at a very early age , and are encouraged to create things by own hands . By making different decisions or choosing different life directions , we depart from the same junction where we met , became acquainted , created lots of good and bad memories , and then began our own distinctive journeys . There 's nothing unchangeable in the world . This sometimes leads to disappointment . my and a reading room . Starting today , I will go to an English academy and reading room . And I decided that I will write journal on Lang - 8 as much as I can . I study English because I 'm interested in it . his wife in a wheel , - > wheelchair Today , I would like to write an essay about the Tokyo earthquake . The train swung back and forth like a swing . I did n't know what happened and I thought it was a breakdown . When I heard of the earthquake , there were no trains moving . It was more terrifying than the quake itself . I heard that many children were helped by strangers that day . I do n't know which department I 'll work for yet , but I feel like I 'll be placed in men 's clothing . I hope I can improve my english by taking advantage of this site . He meets her everyday . My friends also like movies but their favorites are mainly Japanese or art - house films . Now I am worried that I may feel that same way and delete this new blog , And because I also want to promote my blog hehe ( http : / / room - 501 . I am looking forward to experiencing life and culture and so on . Good evening ! yesterday , I went to work . This is my second day today . I checked my daily entry , and it had many mistakes . It seems like it is not professional at all . I daydream about having a great job , and being a millionaire . But while fantasy is pretty , the real word is cruel . I hope I can improve . Additionally the Internet can solve unemployment problem which developing countries have . The Internet helps us with communicating with foreigners . Before the Internet became common , we had to search for information in dictionaries or books . Thirdly , the Internet can solve unemployment problem which developing countries have . By giving business opportunities to developing countries people , the Internet can make their economy much better . As you can see many people use the Internet for communicating , finding information , and even for developing countries people , they can find jobs by the Internet . I often watchi foreign dramas . I went to the library to do some writing homework . TOEIC is one of the Japanese English qualification tests , This morning , I got up early . Seoul is expected to be cloudy and without rain . We went to Kobe . However , I have n't prepared for that at all in this month , so I am very worried about that . Since then , I 've visited Korea and the Philippines . Father took the younger of the two children out of the car . He is a buddy of my friend . They finally succeeded So I 'll try jogging with my iPod touch and a Nike sensor . And then I also want to translate papers on other topics which I wrote about , like A town of Tokyo and Images , ( That was my specialty . ) or something . That 's what japanese does while Japan was invading Asian Countries when Japan was once under imperialism . But can we say that it 's the right thing that it 's been a weakness of Japan at diplomacy and Japan is blamed about it forever by some countries ? At first I was surprised at reading a sentence that said `` I felt very happy about Japanese being afflicted by the atomic bomb , when I saw the photographs . `` When I read the sentences , my head seemed to awake suddunly . In addition , it described the terrible behavior of Japanese soldiers concretely . But I think about it calmly now ( when I was 20 ) , I have an opinion that it 's not a right way of thinking like `` I 'm very happy about Japan being damaged . `` Because the `` evil `` is not one of soldiers or one of the citizens . Fuji , which is the highest mountain in Japan , and Hamana - Ko lake , Sekigahara . The stage , the crowd , the light , all has disappeared in a flash . As I get accustomed to the real world , I start smiling to myself . Parents threaten children to do or not to do things with horror stories . He creates his own world , and is great within it . We enjoyed a delicious lunch , after which , we went shopping and enjoyed the atmosphere of Christmas . Today was great through I still felt like a isolated knight except when talking to this girl who was really sweet who taught me the words `` serendipity and kismet `` . are lots of action scenes and I liked the story . But , for tomorrows ' classes I will be absent for all of them . So , I will study hard tomorrow . I have n't gone to any foreign countries yet . Pelican eat pigeon Genshiken is a club for studying various anime , video games , and manga at college . Most the members in Genshiken are male . We were a good combination and our team was strong . I did n't remember that Mia lives in San Francisco and I was really surprised the city had so many slopes . In the book I thought there were a lot of instances of lessons on how to be a princess and affairs between Mia 's mom and a teacher , but they were omitted . I also thought her grandma was older and meaner , but she was so elegant in the movie . So she can do whatever she wants . Because I like the French bread best ( from all types ) . Her actions are so cool ! I think her activities are worthy of praise and she is a wonderful person . Representation of the `` Life of Pi `` One strange thing in the story is that nobody cleans the molded cheese on the ground . If I had n't seen the movie , I could n't understand the story . When I go to a supermarket , I walk around to see various merchandise . I enjoy finding new merchandise . The inside of it was a paste of sweet potato and rice cake , though it is ( usually ? ) bean paste . I had a lot of time which I could spend studying English . But now I work every day except Sunday and sometimes Saturday ( ? ) . For the last few months , I 've been trying to be more pragmatic , to accept the harsh realities of life and to do more down - to - earth things . Luckily , I 've found this website . I said to myself , `` This is a good chance to improve my English . `` I want to thank anyone who will help me . Do you have any idea how to spend time in the dark without using electricity ? I am a little nervous because I will be embarrassed if there are not enough topics and we just sit there in silence . I hope I could help Japanese as much as possible , also improve my language skills . I naively believed those who told ( and are telling ) His belief is understandable and I agree , it will be the new common sense of this world . instead of believing in criticism , But actually in Japan , where anonymity looks more important than in other countries , We have to do the performance in front of the classmates . They 'll evaluate my lesson . Many classmates make nice materials like picture cards , letters card , and so on . They will become my property ( ? ) , seeing medical care and meeting English doctors and students . They will become important persons for me in the future because they can change Japanese medicine , thinking about Japan objectively . I want to talk with her This was the nice greeting I heard today , and it should be the idea that radio people should keep in mind on Valentine 's Day , I think . But look after , it was n't that big or complicated . But there 's no regret . It 's very quiet in the office . Today I decided to study English again . After I walked in the Garden , I wanted to be regular employee of this company . Cotton increased its sales as well , except that it was a rather dramatic rise from twenty thousand to a peak of eighty thousand . In January , some members of the team changed . I drank Soju which is Korean traditional liquor . I went to the Central department on the 3rd of April where an anti government rally was being held . Whenever I 'm working in the morning , I hear birds singing and remember a holiday I had taken . I stayed in Sukhothai , Thailand . in Jingu stadiam today . So I can speak a little French . In Japan , a sense of crisis is in the air that that the nuclear power plant accident might destroy Japan . Not only the Prime Minister ( , ) but the people should also help revive japan . Since GEVEY , which I have used for my Sim - locked - iPhone4 , has got some problems and became Although It 's rather expensive it 's so yummy ! _ The same level of Chinese food as in Japan . A 32inch Samsung costs 23000 _ peso . I carried it back to my room by hand , _ and applied for cable TV which costs 500 _ peso / m per month . My digital life in Manilla has made rather big ( or good ) progress ! ! I belonged to a musical club when I was a junior high school student . So I should study English harder . Of course , bad things happened . Almost all my friends say , `` You are very outgoing . `` Therefore , my English grammar skills are very poor , probably this diary has a lot of mistakes . I want to go abroad through a school scholarship program and earn a lot of money for going abroad . because I got sick recently and I felt that English was harder than before . Suddenly , I was really worried about that . Speaking is especially difficult for me . It happened suddenly . I thought it was an emergency . My boss called me to ask if I could go to work next Saturday . I decided to start using Lang - 8 to study English . Athough some people believe a considerable proportion of rural students should put a lot of effort into learning , there really is a phenomenon that rural students are more likely to have problems with getting into an university . Despite that , as an enlightened and obligated government , it should make this top priority to these originally disadvantaged students . One of the ways to judge if it is okay to lie in a specific situation is to consider the reason for lying . But since I have gotten friendly with foreign people , I found out the fact that we do n't tell the truth to people is more common in Korean culture . Yesterday the dentist ( denstist is the name for tooth doctor ) gave me a painkiller injection after he pulled a broken tooth from my mouth . Grammar questions , in particular , were key problems . Having a cold is very tiring . It went the opposite way . I 'm from China , I can speak Chinese ! After studying at GV , I camehome . I would like to buy a red travel mug . It looked tasty : - ) I would like to eat it ! I had never eaten Vietnamese noodles . I 'm worried about my English speaking skills . Therefore , people gradually lose the capability to cherish the elegant tastes of natural food . I am sorry , I do not have my hometown 's photograph , but I can introduce it to you ! It 's a beautiful city , It 's very pleasant . People always come in July , August , and September to our city for holiday . Keeping water comfortable for saltwater fish using chemicals is difficult , so we took some tanks and carried them filled with water . There were Spinach , Broccoli , Japanese radish , etc . These home grown vegetables taste better than the ones in the supermarket . I always appreciate my parents . It reminds me of when I was a child . after getting used to being lazy during the holiday . My first lang8 diary is this page . I read ' Billy Elliot ' , a book I borrowed from Jackie . One day , after the boxing class , Billy learned some ballet moves in Mrs . Wilkinson 's class by chance . When he went to the school for the audition , Billy was frightened of the posh atmosphere and after the audition he thought he would n't get in to the school but he did ! ! I ca n't remember all of it . . . . . . . . She suggested for me . coffee jelly 110g , 1 / 4 whipped cream , 1 cup latte pudding , 1 scoop vanilla ice cream Seattle vs Detroit . Seattle 's starting pitcher was Michael Pineda . These days , I have been very busy writing 2 kinds of graduation thesis ( because I belong to 2 kinds of seminars . . . ) , but these letters were refreshing : ) And after school I go to additional classes in informatics , biology and algebra . We had a farewell party for overseas students yesterday . However , the result was incredibly bad . . . Recently , I 'm always tired because everyday I wear formal dress and am asked So today we 're going to renew our expired passports . August 11th . * August 11 August 12th . * August 12 August 13th . * August 13 Athletes playing sports encourage people to be more alive in their life . Assuming the amount of enjoyment people obtain from watching is proportional to the amount of money athletes obtain , it is even less of a surprise that they receive such a large amount of money . From a different standpoint , we might view the mountainous pile of money with suspicion of whether they , athletes , really need such money . I think that they do n't have enough provisions of electricity . Anyway , I gave up on taking a shower last night , and I tried again this morning . But my heater was broken because of too much heat . That heater give out a white smog and it smells as if something 's burning . A few weeks ago , I watched the movie `` Dawn of the Dead `` with my friend . People who were not infected tried to survive and gathered at the mall . Nonetheless , they desperately waited for help from outside in the hope that there must be many people out there alive . Nabe is boiled vegetable and fish and meat in a bowl . It was very delicious and filling . these days people do not have time to stay healthy , they do not have time for exercising , eating and sleeping well . First , nutrition is one of the most important for good healt ; therefore , we should have a healthy food . One steers clear of high cholesterol foods , such as eggs , fatty meats like pork and sausages . Abstain form drinking alcohol and caffeine , and try not to drink more than a sip of water within one hour before going to bed . Thirdly , exercise to first bulid heart rate . However , if people too busy to go running , walking is another choice or taking the stairs instead of the elevator . After that , building muscles . Of course I am allowed to sleep if nothing has happened . so I am really happy that I learned a little bit about e - bay . I 've already written three articles ^ ^ If we change the way we think , the protests could be a good step toward making Thailand a better country . It is so sad , but it is very real . One of the Korean student made a frog using origami paper . My sister highly recommend me to watch a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about its storyline because there were a navie guy and a weird guy dressed in and put on evil - likers . It was like writing in some strange language . I can not let this feeling destroy myself , I should find something to do , it is urgent . All I get here is loneliness . The third diary ; ) The doctor said ( that ) maybe I felt pressured or too nervous . Yesterday , I went to see a doctor of traditional Chinese medicine again , He found it ! ! According to this program , Dutch people eat sandwiches that have a biscuit on top of bread . Both counties have a lot of worldwide companies despite their small land . We do n't usually connect each other . I did n't really put as much sunscreen on my body as I did on my face . Well , I guess I 'm feeling much better . I have a lot of fun when I 'm writing it . When I think back , there were a lot of things that happened on this year . It was very awful that no one else could take care of my son . Celebrate the 1st of . I am going to make her a pasta with tomato - sauce and bacon , and the cold potato potage soup . I like cooking and I 'd like to make my wife happy . When spring has come , we not only have a lot of cherry blossoms but it is also the time for graduation ceremonies at school . I feel melancholy . I think nobody could know how I feel . I need to think that everything will go well . Was somebody not happy today ? If you were n't , I want to tell you to smile . But some of my friends have already had operations , and in addition I 'd rather enjoy the present time than worry about the far future ! ^ ^ But the cost is very expensive , 20 thousand yen or 2000 $ using a discount coupon . . . What 's the reputation of Lasik in your country ? How about in other countries ? ? Today my sister came to see me . such as the current economy , climate , entertainment etc . During the stay in Toyama , I relished mountaineering to my heart 's content . One time , I climbed a mountain called ( if I 'm not mistaken ) Tateyama to , hopefully , observe Grouses which are designated as an endangered species in Japan . The summit , we found , was replete with alpine plants and some signs proclaiming that we could n't set our foot in the places palces where the plants was growing . This is between us , but we broke the rule and sneaked around on the plants to see some species spieces we could n't see from pathways . Or most of the plants were very modest t and even tiny projecting a humble atmosphere and might have graced our eyes for a fleeting moment . Yet , mountaineering was certainly worth no matter how may times we did it . It was parked by my department parking lot last night . I did geological field survey . For example , : Japanese Vocabulary is a Japanese study tool designed to help you learn more than 400 Japanese words . One thing is that I wanted to commit myself for the cause of whole Japan . It occured to me that I would rather be poor than to live thinking only myself . If you correct this entry , it is very instructive for me and I will be very happy . I live in Japan . I am a college student . It was the traditional festival of China - - - - - Mid - autumn Day , it was sunny and at night we enjoyed the beautiful moon . I need more exercise . Japan drew with Jordan at the their first game on 9 January . I thought that Japan would absolutely win . I 've just registered on this site ! The car navigation system in my car is broken . Friedrich : Jo , such a little name for . . . I had a good impression of him . Hello Everyone ! Its seling now . It has slices of cheese , meat , lettuce , taco meat and hot tomato sauce . I wrote a diary just now and got a response immediately . I feel you guys are so passionate . Some ( people _ insist this method is bad cause we can use the wrong expression again and again . so put on a smile I did n't concentrate in class . more interesting was my collegues who didn . t speak chinese . because she is Korean . I live in Hokkaido , the northern island of Japan . We have to live with just one , small electrical fan . Bagels are So Expensive Today I went to a bagel store I have been interested in . It would n't have cost me more than 5 dollars with a drink . My favorite idol committed suicide . My hobbies are snowboarding , travel and studying foreign languages . Now I am studying English and Spanish . If you learn Japanese , I will help you . If Japanese people learn English based these misunderstandings , they will use English rudely and upset others . This show plays on TV at 6 ' o clock pm but I ca n't watch it because of my church service . It has already become my favorite show . In this show 7 singers appear and sing a song against each other . but I prefer a whole one with its insides . I 've been ready for my new business for many years . I 'm planning and making a new web service with my friend who is an expert at computer programing My ideal web service will launch soon ! To develop a web service takes many years and a lot of money , and no one can know what web services will succeed . I 'm going to take a chance on my new business ! The school has the same service but it has some kind of rules like the deadline to receive that service . The first 3 weeks was a challenge . Pronunciation , intonation and stress were difficult and they killed me . Sometimes cultural differences caused misunderstanding . The word I used were taken as a different meaning but it told me a lot of things . How important it is to understand background of the language . I went school and learned about English Education . My friend visited me . He is from Malaysia , and I met him in Australia . It was about Japanese culture . I cried when I left my home stay because they have been like family . I will definitely come and visit people I have met in Vancouver . The other day , it was broadcasted that an entertainer was hospitalized for tubeculosis . I heard that she had had strong cough and felt lazy for long time . These days , she went to the hospital and was checked up , and she was diagnosed with tuberculosis . She is very popular and appeared on TV every day , so she had many contacts with many people , so it is possible that tuberculosis was transfered to many people . Patients with tuberculosis need to be insulated into special hospital . Tokyo prefecture and the office that she belongs to started to inform the people that may have recieved tuberculosis from her so that they go to hospital and get checked up . Celebrities many opportunities to comunicate with a lot of people , so I think that they should go to hospotal and get checked up soon . Today I talked about a shortage - of - clean - water problem in my English conversation It 's Raining . It has been raining for 3 days . If you come to Japan , I definitely recommend you to eat Ra - mens . For such reasons , I sometimes forget easy grammer and words , but I am glad that u correct my dairy willingly . 1 : to talk about daily life in easy English with foreigners I do n't have enough knowledge about every genre . Although I 'm an English major , my English is not very good , Recently my eyes have become worse and my last pair of glasses were in bad shape . They suit my face . Muscle training ( weight training ) and walking have made me slim . I was invited to a lunch by my husband 's colleagues . The oven was out of order ? I could n't understand why it was not working , and I asked for help to my husband . I want my English sentences to be polished up . So , Americans or someone who can speak English , could you correct this diary ? ? I 'm a little lonely , but I 'm looking forward to visiting her in NYC . Today , I 'm going to the English club in my neighborhood . Random toughts of a silly ( and sleepy ) mind I started this entry without any ideas to write . The weather ? Well , today the sun decided to show all his magnitude and the result was a really hot day . ( Maybe he picked a fight with the poor clouds and banned them from the sky . ) Okay , I just finished talking about weather . . . I know that is only 9 PM but today was a really tiring day and I 'm really sleepy ( that 's why my post is so silly and have almost no sense at all ) . I can get really silly when I 'm sleepy . ) Today we separated the teams into the 2nd and 3rd class versus the 4th class . After a couple weeks I decided to buy it , but it had already been sold . Since then I have been looking for this guitar everywhere / in every country . I can understand the doctor 's workload is very heavy but her attitude is not very nice and friendly . I 'm considering working hard to improve my English skills . After a moment , one man came up to me and sat down beside me . Then , I got to the Foreign Book area , I found an English wordbook . Today , I am going to go to the lalaport , shopping center and buy some presents with my wife . There are a lot of advantages ( when ) attend ( ing ) a live performance . For example , watching / ( hearing ) the music in the seat near the stage is the astounding . I believe 2009 will be great time for me to improve my international experiences . welcome friends ! ! For example , I do n't like shopping , I have no interest in those silly rumors about boys , and I 'm totally not addicted to love stories or movies . Instead , I play DS or PSP games , read detective novels , or write posts in internet forums . But I am going to change my place of work because of the crisis . My company has suffered because of this crisis . I read `` The Da Vince Code , Lost Symbol , and Angels & Demons `` My name is Liuquan . I want learn English well , but my English is so poor , so I want make more friends to help me improve my English ! So It was very dirty . His performances always influence me deeply . Of course , we can also see his great performances in Chocolate Factory , Public Enemies , Edward Scissor Hands , Sleepy Hollow , Chocolate , etc . graduate program is n't an easy work . I have applied for up to 8 schools , costing totally 1000 USD for Considerating school reputation , cost , and length of program , I Being admitted is only the beginning , loads of works are waiting to be done . This evening , I watched a movie called `` This is it `` which is organized with footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London scheduled in July . I am interested in American comic culture . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tuna , and many other ingredients that were available in my home . Matsushima is one of the beautiful spots in Japan . We call it ' Nihonn Sankei ' as there is so much beautiful scenery . So It 's my favourite driving courses . In addition , I am worried that there will be a typhoon today . we have a long holiday . my English is very bad , I want to made good use of those days to improve , especially my spoken English . I have been learning english for 22 years , from junior high school , and now it has been 10 years since I graduated from my university . ah , that is such a long time , right ? And yet Ifind that my English capability is the same as 22 years before . Today , my family went to a sushi restaurant and enjoyed sushi dinner . No . 3 : tuna with leek The series has been published since 1994 . I think that if you want to be rich you had better learn three categories . Economics , politics and money ( that includes money market and investments ) . I do n't remember at all , but I was really , really happy because I received the entire `` The Lord of the Rings `` collection from my grandma . I usually eat cut tofu in miso soup and rice for breakfast . Miso soup is soybean paste dissolved in hot water . I plan to have a big dog on the future . The cherry blossoms near my house , began to bloom . I was thinking of getting a driver 's licence during the spring break . As I have never ridden a bike before , it is very difficult for me to get started . Back then , I believed that I could n't keep my balance so I was afraid to have a try . Until now . Now I have a strong will to master this skill . First , I had a sore throat and then I had bad coughs . . This TV program videotapes everyday lives of patients with Alzheimers and their family . Then I saw that the patient in the show could n't wear jacket correctly ; she put it on inside out . I wanna have it . though my lips and teethridge feel paralyzed . I 'm so nerveous and feel like I have butterflies in my stomach . Athough it is late , happy new year and I hope your business will be successful . I 'd like to have a successful life . We all knew that Microsoft set up a website to monitor the usage of IE6 . A grammar book A grammar book made me fall asleep . All products are 30 to 50 percent off this season . This will be a good lesson for me . If I say something in Taiwanese , it lets my feelings transfer to the other person very directly . January 17th was the 15th anniversary of the Great Hanshin Earthquake of 1995 . Kobe is an urban city and famous for fashion and nice food . Many people were crushed and burned to death under the rubble of houses . There were many blue plastic sheets covering the debris . I truly wish for Haiti to recover as soon as possible . Some kindergartens have school buses . Its ingredients are potato , carrots , sausage and so on . I remember the song ' Lonely Day ' by System Of A Down . `` The most loneliest day of my life `` . . . I need cry , but I have no reason to . Once upon a time , one man wrote a sad song and upon hearing this song , people would commit suicide . I think ' Gloomy Sunday ' is a beautiful song and therefore I did not kill myself . Japanese and foreign people visit this city for sightseeing . . Do n't depend merely on informations . I am keep going to write English entries . I hope my English gets better and better ! I 'm going to gather some information about it . Nagoya is the third largest urban area in Japan and is located between Tokyo and Osaka . I 'm working in a restaurant It is a high school 's baseball ( team ? ) and youthful . I am very glad to finish it successfully . I am studying english now . people all over the world have to help each other . if we ca n't communicate with foreigners by talking in our native language , we have to help each other by using english in the world . When I came home I looked at the mountain of his toys toys that he had made in the living room . When we were young we responded to our dad or our mom for their love . before I signed up it , I looked it up on Wikipedia Whether nighttime demonstrations should be permitted or not has long been a controversial issue in Korea . But since it 's quiet and comfortable for me to cycle from the station to my home , even in Tokyo , it 's cool and silent at night . I 'm 20 years old , and a student of university of design in Japan . and we recognize them as `` real `` foreign women . ) And Japanese traditional behavior , too . I guess the pictures are rare . As I usually put on makeup , these are very important . Third , It was my purpose , I chose Yukata . If I were to be a pianist , I would like to play the piano for children . Many typical Japanese companies have new years vacation during the first three days of January . I normally lie on my stomach when I have Yakiniku . I wonder what had happened to their relationship after dinner . I have never visited a place where the temperature is so low ! ! ! I will visit the USA this winter ! However I have a problem with a certain personality in my seminar . My favourite team is Consadole Sapporo . Could you please tell me other sites where I can read texts written by native English people ? I wanna be a Chinese teacher My company serves us box lunch for a small fee . but the curry tasted different from previous one . Ketchup taste was strong even though I poured soy sauce on the curry and rice . Korean people made a good impression on me because they were very kind . I have change the Tire . Have you ever seen cherry blossoms ? Many people who travel around the world can not exactly explain what culture is , becauce the feeling is beyond words . Those who experience culture in person are different from those who just watch travel channel . If you truly love a certain nation or place , the best way to understand local culture is definitely by traveling . If not only to experience the culture but also broaden your horizons . Then , the next time someone asks you what the culture is , then you will realize how important silence is . Listening practice . What is he saying ? I 'm reluctant to work on English . Anyone have any tips on how to continue studying English ? Do you use iPhone ? Today was not a special day . Next spring , I will attend University of Kyoto ( not Kyoto University ) . This ketchup made the chili more tasty . I presented a marriage present to my colleague . Topracticing English , I write a diary here . She picked it up and brought it to their house to eat it . Late in the afternoon , I finished my graduation ceremony for my diploma . I was encourged by her and was warmly received with a friendly smile ( I can see that she is a religious christian ) , then I began to talkwith my friend whom I 'm afraid of and hated before . I received notice of an Informal Decision yesterday ! The alternative medicines In the linear algebra class today , we listened to an academic lecture . ( Usually we are taught the basics of linear algebra . ) Today 's class might be special . Unfortunately , I did n't have my own a lot of colonial places to visit , and has many foreigners . Okonomiyaki is made of kneaded flour and sliced cabbage with some flavourings . Recently it 's been getting hot . I like flavored strawberry milk in it . Usually I buy bottled tea when I go to the language school vending machine . but I do n't want another bottle because it 's heavy ! On that occasion , she got mad ! ! I do n't understand ! ! ? ? Today I ate Takoyaki with my friends , which we made together . Es tut mir leid , aber ich werde heute Abend nicht hierhin kommen . But there is a Japanese craftsman , who has lived there for 20 years and has devoted himself to restoring the tradition . It eventually came from the germ of an idea , tentatively tried out by the oboes , clarinets and bassons , which the cellos and bass turn into a fully - fledged theme which was taken up with increasing enthusiasm by the full orchestra . These memories are unforgettable . Fusen volleyball was born in Kitakyushu in 1989 . A : Of course . Each uncle or aunt has a son and a daughter except my youngest uncle . I am losing confidence now . . . . . . bad listening aptitudes , poor reading abilities , even worse writing competencies , and the worst speaking skills ever . . . . . I am very much looking forward to my day off . `` Hakone `` is the name of a place which is famous for hot springs . Every year many dramas unfold . I want to send a letter so please correct my sentences . I want you to play the guitar and sing songs ! ! I got this movie from my malay friend . Studying abroad He also taught me about food from various countries . Because my mom went to my grandmother 's home in the morning . more than usual , and here is the fact . Second , I 'll do some anaerobic exercises every morning such as sit ups and push ups . It is famous for the Otaru canal . At this event , the city is lit up with many candles . I worked with my group activity members . We made a snow slide and places for putting candles by shaving snow and ice . But the candles were beautiful and I met many lovely people . I like the SPA ` cause it ` s a very relaxing and comfortable place . After I go to the spa , I want to go to shopping ; I also want to buy shampoo and some snacks . because their plays are dynamic and speedy . I want to say to everybody that I want to make friends with you . Today , I was thinking that I 'm a loving person . Especially when I am doing something or making decisions , they do not always agree or understand my view ( continue ) Here in Russia we have `` May holidays `` , that is additional days off on the 1st and the 9th of May . First , I read the Liberal Democratic Party 's manifest which was the governing party before this election . I thought it was terrible how they wrote against the Democratic party . I am planning to visit many customers for new year greetings on Tuesday and Wednesday . Usually , I have done that at the end of the year and new year holiday , however my wage has decreased for the past five months . On top of that , my December bonus was really poor due to the huge recession . We decided to share the suffering and regain our profits together . I am a kind , funny girl with a big heart and know 4 languages ; : ) Russian , English , French and Japanese . Hello world ! Also , I wanna know about foreign countries ' cities . And some of the most precious traditions such as reading together , singing after dinner , walking along the riverside , have become diminished . Probably , because of age . I have stayed there around 3 months to study English . I was sleepy , so I could n't answer the teacher 's questions . I dreamed for almost fifty minutes during the lesson . I 'm starting to write down a diary from today . I want to communicate with them fluently , and enjoy conversation . They are professional guys . I have to make a twenty - minute presentation tomorrow in front of about 30 people . Additonally , I would like to receive recommendations about more interesting dramas . After the exhibition I can go home ~ ~ Because it is very warm today . But I am very poor with grammer . Today my work was published in newspapers under the title , `` Students read and write newspapers . `` Today his essay was published on the reader opinion page . As the final examination is coming , my domitory matters and I was busy writing a review , so I do n't have enough time to write a diary every day . I am looking forward to attending the wedding because I 'll be able to see friends after a long time . I think that it depends on each countries , what kind of number does your place dislike and like ? Hi , I 'm Japanase and English beginner . Unfortunately my English skill is no good . ( what they did was calculating and memorizing rather than studying , though . ) There are many kinds of children . My mother is a housewife . Recently , there are many problem in the world . When I went to my office , I was going to call to my wife , but I did n't know her phone number because it was in my mobile phone . . . I moved to Hong kong recently . Because I played basketball after class . Do you get nervous talking with foreingners or feel pressure ? I thought that he was a very kind . It 's too expensive . As a result , the vegetables are too expensive ! I want to speak It very well and make new friends also . I start writing my diary on Lang - 8 from now , but my English abilities is n't good , so please teach me correct and better than grammar or words in my diary . She went abroad to many countries when she was young . Because she likes traveling very much . I think it will be a good influence on us to spend more time in daylight because it would improve our efficiency . I bought a digital camera and flowers for my mother , because Mother 's Day is coming . I wanna travel to foreign countries as soon as possible , but I ca n't do that , because I do n't have the money to travel . But he was happy and laughed a lot while talking with us . All most of them have ( their ) own jobs and they practice soccer in their off time , nights and holidays . I believe that they will get the gold medal in Olympic game in LondonDo n't need comma next year . My throat is still swollen . I need to learn English because I live in Boston with my husband . His job is researcher in university . ( See below . ) I need to compare the test case with mine for checking if there are discrepancies between both test cases . `` Can we do this ? `` when I heardthis words , I imagined that If I did something impossible , what would I asked myself first ? The men in this room had begun to make plans , they wrote every problem which they would meet before they landed on the moon . First , my english level . Second , My editing level and CG level . When I putthe popcorn in the microwave I set the timer 5 minutes . Tomorrow is mother 's day , when we were young our mom took good care of us , as we grow up , our moms become old , some of us do not treat our mother very well , now I just want to say everyone of us should take good care of our mothers , tomorrow we must tell mother `` I love you , mom ! `` I hope every mother in the world will be happy everyday ! Maybe tomorrow night he will be very tired because he is a heavy drinker , so I 'll going to there with my friends , who are shielders . ( I 'm sorry to my friends ) He had a dream of being a computer engineer . Now I 'm a computer engineer . Moreover , I went to school to last Monday from last Friday . I have lots of friends here , but they are Singporean or foreign people whose first language is n't English . So I want / to get an opportunity to talk to caucasians , and I want to improve my pronounciation . Today my business partners invited me to lunch . She previously lived in the UK to study abroad . But she said that to study abroad a savings is required . She has also been to France to snowboard . I will have to study hard , especially business English . My favorite season is summer . Tell me how to distinguish Masayoshi Son , president of Softbank Group has sufficient talent and strong leadership , just as as Mr . Eiichi Shibusawa did during the Meiji - period . Japanese believe that it is a lucky symbol . Afterwards , my friend said he wanted to see Avatar , so we went to a movie theatre and saw Avatar . I 'm a little nervous . Today , I borrowed a book about Robin Hood written in English from the library in my university . I have graduated from university . But I do n't have a job due to the recession in japan . The former is important to the Japanese . I know that is too tough My job ! I work at the Hosan Corporation , a company that deals in industrial tools . I 've been there for a year . It was alright , though . I am very weak at grammar and speaking . They tried to exclude me from the group . In Japan , it is vacation from January to March . Since English is spoken all over the world , if I can use English , I can communicate with billions of people and learn about many countries . I felt a great shock and asked him why he never spoke in the language to me before . `` You are too enthusiastic when you are using English , too much gesture and too much face expression , `` he looked at me with his sincere eyes , `` what 's more , you English pronunciation is too much like a chinese . `` Why do many people come to me these days and tell me their ideas ? The word is that American Blockbusters is on the brink of going belly - up and its 500 to 800 branches will be predestined to close up within 5 months . to see tulips at the flower garden . In order to write great compositions , I asked for my English teacher 's advice this morning . I will patiently follow those advices and write English compositions diligently . The biscuits do n't contain sugar , so I love them . `` How tired I am of this unbearable distance between us . I should go play tennis . I should go to tennis practice . I helped my friend in a different position do a job . I helped her cut the paper for a long time , and then we went home She had an umbrella , that is good for me as I can walk with her and not get wet . My friend sent a message to me in the afternoon . She said she was excited to meet this weekend . It really helps me to study English and makes me study harder than before . I made a marriage contract with my girlfriend . That data is not credible because it is of low precision . The simple fact is , however , that it is difficult to get accurate information , eat enough food and avoid the poor hygiene . And as a matter of fact , Confucianism belief tells you to respect the elders just because they are older than you . It is true that a young people may be inferior to the elderly persons in terms of knowledge , skills and experiences . So my opinion is really neutral . The elderly people are not good at adapting themselves to the new situations with flexibilities , but they can show or share good advices with the young from their knowledge and experiences . And on the other hand , the young people can support the old with flexibilities , adaptability , and enough energy . My mother and I will be going there to congratulate him . Hello friends . Today while I was chatting with my friends , we talked about bungee jumping and I asked them who would dare to jump out of an airplane ? For me that is a silly thing to do because I am scared to do it . . But I will never forget this good experience in my life . . Learning while having fun is such a good experience . Until the quakes calmed down , I could n't move anywhere . . . The radio told about TSUNAMI , but I could n't believe it . However , my English skill lacks vocabulary . Therefore I feel anxious about the examination XD First , we can know many things because we can read it speedily . Next , we can find it again very quickly because it will be in our house . but English says to me `` Vitaly you are so stupid . `` For example , a bowl of rice topped with many kinds of ingredients such as flavored boiled beef ( Gyu - don ) , pork cutlet with lightly cooked egg ( Katsu - don ) and slices of row tuna flavored with soy sauce ( Magurozuke - don ) . ( Sounds delicious ! ) They have various course menus . What should I do ? There have been a lot of things I felt there , but I could n't express to someone what I experienced . It 's my first diary . Because I 'd like to use English with my business ( job ) . Though I am a master student and major in civil engineering , I have a choice to decide whether I get a job as a banker or an engineer or others if I want to work at an international organization . If climate changes , some problems may happen . But unfortunately , I did n't take the entrance examination for college . Now I am studying to get a adult college degree . I think this degree is not as good as a4 year degree , but it 's better than nothing . because she is good at cooking , cleaning , and laundry and so on . ! ! The typhoon still affects the whole of Japan . I went to work the day before yesterday . The typhoon was approaching my city . During my breaktime , the train which I always use had already stopped operation . Even although office bosses sent us a message , `` If you are worried about returning home , contact us . `` I knew that I could only wait because of train being stopped . I can safely come back my home , albeit it took a longer time to arrive than usual . Instead , I concentrate on studying . If you were me , which would you choose , having a part - time job or studying ? Yesterday , I went to Ann Mo Kio Aria , to meet a friend . We are language exchange partners . I went to the park behind MRT Station and had a nap at the park bench . I do n't like eating breakfast at home because I prefer to eat delicious food such as continental breakfasts rather than traditonal Chinese food such as congee ( rice soup ) and plain vegetables . I know the traditonal Chinese food is healthier than greasy food but I want to eat something special occasionally . The man was arriving home with his new second hand television , which he had just got , when he was surprised by the local police and immediately arrested . How efficient the local police are ! I have visited Greece , India , Peru , Jamaica , Cambodia , Thailand , China , and Bolivia . One of my New Year 's resolutions is exercising every day . I 'm so nervous because I am writing a letter to you for the first time ! There are so many people in McDonald 's at dinner time ~ I waited for a few minutes and got a seat ~ Research project What do you think would be an effective way for me to get corrections from English native speakers ? Why do some students study abroad ? At first , I write a journal entry in English on lang - 8 , then I write down in my notebook and after that ask someone to correct it . When I told them the price of these at least are more $ 200 as new goods , they were very surprised . I can not explain it exactly only in writing . I had been keeping my hair short since this year started , but I got bored with it , so I did n't get my hair cut very short this time . I heard that Tagalog , Indonesian , and Malay are absolutely the same . I knew that Indonesian and Malay are absolutely the same . Preparation methods include nurses explaining to children how receiving an injection works , examination and treatment and how to prepare tools such as books , dolls , toys , computers , etc . but I knew it 's in their genes . So I have n't gone out for several months . But it is ok now . So , I have an important responsibility to fulfill in Hong Kong , and our nation , China . At this school British English is taught , so sometimes when she is speaking I do n't understand immediately . However , I will do my best to try and learn American , British or whatever English accent is required . xD I wish someday I could teach English and travel to Toronto or London , maybe Washington . xD l love climbing mountains . I bared the pain as the feeling was good . So they came to be together . I respect him . Well , my priority now is English , because next year I 'll take the entrance test at the university , and I chose English as my foreign language , but I 'm falling in love with Japanese ! Naturally , I will correct your Japanese too . Although his name was little bit difficult for me to pronounce , he was nice person . After lunch , I was waiting for the staff member who organized the homestay program for me . Astronauts brought back a moon stone to Earth for NASA to analyse . Lastly , the number of crimes increases when the moon is full . Btw , I have already experienced being the only girl in the class , and I changed the class . I hope I can enjoy all my classes during the second semester . Then I cleaned the kitchen , especially the kitchen range . The more I learn English , the more difficult I think it is . I 've just realized what her friendship means to me . I think at this stage in my life , I should not defraud myself . HOWEVER . . . . what she told me at that time was only a lot of complaints for her husband . Most of that were caused by a difference of custom and the way of thinking , such as religion , thoughts of how ( a ) husband and ( a ) wife should be , etc . But through the experience with my foreign friends ( I ` m still a university student ) , I have really started to want a `` natural `` kind of conversation , I mean the kind of conversation even native English speakers think sounds natural and common , not strange . For one thing , I want to study at the same university as my brother does . Although we can now change our appearances with plastic surgery , it is almost impossible to change our voices . Even if I do n't have anything to write , I should write something . Almost every morning he barks at me , but when he is satisfied , he wags his tail . His eyes always look sad . In the morning I went to see a doctor . Finally , I ate out with my speaking class members and my speaking teacher , Paul . In the afternoon , I went shopping with my mom . I 'm from korea . I live In Sapporo city , which is located in Japan 's most northern island called Hokkaido , located and on the 45th parallel . In fact , this year it has hardly snowed until today , although we usually have quite a few snows around this time of year . And - then - unfortunately - I - forgot - my - commuter - ticket , so - I - had to pay - JPY1200 . Lately my Italian friend and I have been to a few buffets a few times together , none of which were Japanese restaurants actually ! But what I am trying to say is that the places where he took me were 70 % buffets . . . . Though I do n't eat a lot normally , going to a buffet restaurant made me want to eat a lot more foods than I eat usually do ! Haha What I was thinking was to generate a full payback of the foods which made me such a big eater ! He looked at them just once and then ran out of the base immediately ! ! ! Topic ; it has recently been anounced that a new restaurant may be built in your neighborhood . I know a sentence `` She is a woman who I think is the most beautiful . `` Is this quote the same kind of sentence gramatically ? I decided to start with Aeschylus , because he is one of the first playwrights . I should go there early because I am afraid there might be a traffic jam . I think she will have a lot of things to tell about her interview . I ` m 19 years old . I have not called her recently since she got angry . but I dont know the reason why she got angry . By tomorrow , I will be happy thanks to her who helps me relax . Today I sat in the office where I work and chatted with my friend . Getting over the hardship of your parents control and your self control tends to stop you from being a good student . But she was very concerned about graduation works and graduation exibits so , I said `` Do n't worry , never mind , you 're getting better and you can do those soon enough . `` I chose this name from an Austrailian short soap opera , But I guess this site is very helpful for me and my English skills . Could you help me with English ? one of the main languages in the world . I desperately want a rewarding job with good pay . . . Someday , I want to find a part - time job ! Because I have so much free time , and having something to do is a good way to spend my free time ! Also , I can learn something in it ! I do n't know what I should do ! Could a native speaker please read it , and please do n't think it 's strange and rediculus . But it would be impossible for me to learn everything in the world . The South korean goverment asked them , My wife is a doctor and busy , too . Today I want to write something about travel . On the other hand , if one wishes to travel to a natural landscape , traveling on ones own would be a convenient choice . For instance , last year I traveled to the Yellow Mountains by myself . I am not sure if this kind of operation is known all over the world , but it is relatively common in Japan , at least by name . The advertisements of LASIK say that we can regain our vision drastically on the same day of the operation and that it is not necessary to be hospitalized . easy for an operation to regain one 's vision . operation should be much more difficult and complicated , and to tell you the However , after the operation , I have more than 1 . 5 vision in both eyes and I can see anything without contacts So I determined that in this new year I will start to study English all over again ( abreast with Polish in earnest ) ? ? . When I went to a restaurant for dinner with my wife , I felt tired because the streets were crowded , maybe everyone was busy . On Valentine 's day , I was very happy because I ha a sweet time with my wife , but I was very frustrated when we went out . After breakfast I went to the library and did some studying there . However , I am really worried about the people who lives in the severely damaged area . It is very sad for me that the university entrance ceremony was canceled . I have many friends who are going to the same university , and we all felt disappointment that we could n't have the ceremony . I want to teach science . So , after I graduate from college , I 'll earn money to go abroad . However , I often choose the opposite of the function I want . Fortunately , my teacher gave us a 2800m run , but that was n't easy . I saw many donation boxes everywhere in New York . Actually , I like the characteristics of this man so much , I have been watching his program since I was fifteen years old . But I went out to a parent 's association meeting at elementary school that my son Because I pushed some children away who were playing with snow in front of it . So , I study and train in my imagination now . I drank tea a lot , because in every house you were offered tea and if you refused they could be offended : ) ) A herd of horses walked through the village , how there told ( ? ) , because many mosquitoes and flies were in the forest in this year . One day , I had a sore throat . Now , I ca n't breath by my nose . By the way , I watched the TVdrama `` soredemo bokuwa ikiteyuku `` . But , the rating is low . In Japan , there is always both iced and hot coffee . The second day in the new semester . Today is my second day of the semester . I am taking Business English , Financial Management , Statistics and Intermediate Accounting . What a cruel teacher . `` If you pay attention what I am teaching , you will not fail this course , and you should practice it after class , `` said the terrible teacher . All over the world , people other than English speakers used to learn English in school . so what language does English study in school ? I 'm trying a new product from Suntory , ALL - FREE . This is beer without alcohol . believe how stupid I was , I hate myself . How could I fall for such a It is heated by electricity . He said `` an allergic reaction to metal is almost always caused by cobalt and nickel . She should avoid contact with accessories that are plated with cobalt or nickel . `` because I would like to go to the USA to study in the future . I want to go in 3 to 5 years so I am starting to prepare now . I played tennis with my friends . We played tennis together . In the afternoon , we 're going to Night safari park by taking a bus until 10 : 30PM So I can gain weight easily . it needs a racket and a ball , as well as the instructor too . I could swim faster than last month . I like here very much because I can make so many foreign friends that I dreamed for a long time . And the most important is that I can improve my English . They want to make student have more interests and abilities in other areas . As for me , I chose Film Appreciation . The most important reason for this was I find it interesting , I like watching movies , and I 'm a couch - potato . Leonard and Sheldon have two close friends , Raj and Howard . I do n't know if my recording sounds strange because of it or because of my pronunciation . Some residents could n't understand how important we separate garbage and recyclable wastes . The garbage in the recyclable waste container had rotten and attracted flies . An apartment 's maintenance personnel came to fix the problem promptly . The second , women workers likely to quit their job because of child care or the transfer of ther husbands . Though there are many women workers who have excellent potential , employers often hesitate to hire them . My hobbies is playing teniss , listening music and spekaing english in a compettitive debate . In a word , I love my hometown no matter if it has developed fully yet or not . Lunch break Every Wednesday , my friend and I practice soccer for about 2 hours after work . I 'm not happy right now , I do n't know why , and I do n't want to cry , but it 's difficult to stop my tears . This is really embarrassing , but if you have a girl that you love , you should n't say this to her . I 'm sorry , I know we are just friends , so I 'll never say that again . One of my coworkers treated me to it ! Random topics If I had many money I would travel to the summer country ^ ^ I remember that . . Polamalu was tackled by his hair . `` Thank you for your time yesterday ! And I did n't know that they would be such good guys . Because I shifted to a big bag for carrying my laptop and forgot to take my wallet . Taiyaki is very famous in Japan , so we never think about people who do n't know of / about Taiyaki . I went to the funeral and my classmate came to me and expressed her thanks . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe chinese food , maybe japanese food or maybe other Asian food ! ! because ( because ) the test season ( is ) over . It was held in Jingu Stadium where professional baseball games are usually played . Roppongi 's `` Keyakizaka Illumination `` This photo is Roppongi 's `` Keyakizaka Illumination `` . I read your corrections two hours ago during my English class . and then he went to watch a professional soccer game in the evening . on the shelf 's in the afternoon on Tuesdays . I do this for two hours . I plan to take part in three full marathon races ( the first race will be held November 8th `` Shonan Internatioal Marathon `` ) . There were 3 Japanese , 1 Thai . Since they knew I love reggae music , they took me to a reggae bar . Strange to say . Maybe if you are fighting with your girl / boy friend , you turn it off . self - introduction My favourite activity is playing the piano , though I do n't publicly perform . It 's my bad luck : I had just bought it a week ago . . . He also said that nobody cares if I leave food on a plate . It is a normal thing , but today we sold dishes at cheaper prices than usual . Anyway , I just hope the victims can pull themselves together and let the people who care about them help them through this difficulty . You just had 3 or 4 minutes to prepare for it . But the main idea was I would be in charge of the family 's finance if I got married . ( what I ordered was similar to bread , I do n't remember the name of it now . ) It is the title of the jazz album which now I am listening to . My favorite Japanese jazz musician , ' Issei Igarashi ' plays the trumpet . I was suprised how tolerant my class and school is . Actually , it happened to me once . I came here to watch a presentation about doing a graduation thesis , to ask the clerks a few questionsabout scholarships and about returning to school because now I 'm not attending school . A : I met my customer at Tamachi . I have gone into 9th year and I must pass four exams at the end of this school year ( these will be in June ) . japanese traditional cake Now , railroad stations have Automatic ticket gates . If there is no problem with the ticket , the passenger can go through . My friend often suffered from heavy coughs . He told me how he was surprised at his doctor 's comment . because he did n't tell his doctor that he had a hamster in his room . A hamster came to my house in a delivery box with a seal . `` This package is very fragile and do n't throw it . `` It was called `` chew - chan `` from my friend . I thought chewchan was male . ( My friend did n't tell me that . ) He said `` Hamsters like being alone . They need their own territory . She lives a nice mansion and has another house and eats nice food . He got some popularity for his talent to learn foreign languages . Even if some visitors drink some purification water despite the warnings not to drink or gurgle it at the water basin which is for washing their hands and rinsing their mouths for purification . I recommend the `` hureai no hiroba `` . It 's not exactly freedom because I 've already enrolled in some courses and competitions , so I 'll be busy . But at least I 'll be doing something onmy own will . I have carried on / lived a peaceful life as a family man so far but there is one big problem here ; what will happen when I find sophisticated ladies in my work environment ? His one of my best friends . Here 's the kind of radio program that he made . We recorded it in Japanese , It ' svery natural , high speed and strong accent from the western area of Japan . I ate tofu and scallops at lunch . I usually buy an English newspaper once or twice a week . Actually , marathon events bring back my bad memories from when I was a junior high school student . There must be thousands of reasons why you want to learn Japanese , and it seems not only a few people were led by Anime or Manga to start learning Japanese . Here , I introduce a website called `` Japanese in Anime & Manga `` This website , pronunciation of lines are very good . and I prefer to see a variety of clouds on the blue sky . after that I can not imagine how good the food will taste at the barbeque compared to having dinner at home . That 's why some parts are sharp , inclined and zigzagged , and it seems curious . This morning I had two spoons of honey like Pooh bear . They were very delicious . I was so sleepy . I think meeting my friend is a good opportunity . I would like to master English , and my dream is watch movies in English without subtitles and make many foreign friends . They saved my life during a period of great frustration in my teens . A huge crowd of people got extremely excited cause the dream finally turned into reality after many years of yearning and longing . But I want to ask them ; why do n't you pay more attention to their songs which have given strength and hope to our people ? All I know is to let the politics roll . We still do n't want to leave the college yet . I went the library with him , but I forgot the library card . He said to me , ' I really want to borrow the books , let 's return home and get the card . ' We returned home and went back to the library again . Thus , I 've joined this community at Lang - 8 to output things to improve my English and communication skills . Nobody can infringe on their rights . My parents never force me to do anything , they even negotiate with medicine haha so I know that the decision is mine . I like deodorizer I went to look for a deodorizer at the drugstore . There are many deodorizers there so I could n't find what I wanted to get it . I wanted to get made in America but they did n't have it . I had n't used Dreamweaver for half a year , it was hard to remember how to use it . However I ca n't talk to anyone in English on Skype at the office . Besides when I get home from work , it 's midnight in the United States . I think I can get over the difficulty . This is my first day at Lang - 8 , I found Lang - 8 in a forum , people suggested joining Lang - 8 if we wanted to improve our English . We can post a diary here , if our grammar / words are used incorrectly , someone can point out our mistake and give us some advice . I was baffled and said `` No , no I 'm not . . . `` Even though I know I paid much money to take a class , after I lost interest to study in school , I do n't feel like going to school at all . 3 months already passed , and I 'm still having a hard time understanding what my house family says to me . Although it seems a kind of poison , it must be a medicine ; it is alcohol . Some people believe drinking alcohol is not good for their health . According to a health research institute , drinking has a positive effect on health . While one drinks alcohol , they should be able to express inner thoughts that are usually not expressed . However , people can get these kind of negative effects only when they exceed a moderate amount of alcohol . When focusing only on the health effects of alcohol , there are no bad effects if one does not exceed their limit to accept alcohol Consequently , expanding blood vessels and eliminating depression , which are healthy effects , can be brought about by drinking alcohol . `` Nadeshiko `` Japan , the Japanese women 's soccer team , won the World Cup championship . . I was so excited and proud of the Japanese spirit that did n't give up in the disadvantageous situation . I expect the Japanese men 's soccer team to win the World Cup championship next . Good night , everybody ! ! A few seconds later , I understood what they meant , they were asking for a handkerchief . After all , Kikuchi could n't shout at the opposing team . I was even at the railway station in order to go to the university ( or : school ) library . My parents and my grandma were disappointed in my failure . My grandma cried . I am worried about it . He just said `` If you are interested in this story , please search Wikipedia or something . . . `` . And I really like the handsome middle aged Chinese teacher : ) Chinese has nearly no honorific expressions and the grammar is actually very simple . I want to learn about the English language . ( Actually they are about vegetarian diet and environment . There 's a lot a lot a lot a lot of reasons why vegetarian diets can help Earth , I hope tomorrow will be warm . . . so the only way is . to continue working . I have not studied English lately . I do n't want to be in this rut because I do n't want to forget the English I have learnt up until now . Yesterday , I had to go to some building to take part in a briefing session . There will be less of my friends in the univeristy , because some of them have already graduated . Akihabara is full of computer professionals . Most men judge a book by its appearance , however ; most women normally follow their feelings . Actually , I do n't like doing this , but I have to do it . Sometimes Ido n't have an explicit way of doing this . I would appreciate if someone corrects my English or gives some advice . This movie is very interesting . Thank you reading my journal . I traveled to the western part of Korea , Kanghwa Island last weekend . I watched TV anime with a friend . I have to get accustomed to my new life without the habits formed before . I 've already perceived that I must get rid of this condition as soon as possible . Yet , easier said than done . I 'm just a little nervous . Is English the language that will change my attitude , my personality , and my life ? at almost 5 a . m . young men do n't get up that early though . I 'm helpless from second smoking . It was difficult to understand what they were saying , because they were speaking British English . ( I feel like it has been longer than it actually has . ) I have gradually come to understand that it is not a complicated movie , from what my host family was saying . I was really shocked that he killed a young woman in my town . Today I 'm talking about an Italian restaurant . . . . . . . I went to Saizeriya , an Italian restaurant with my friends , do you know it ? It 's very cheap and delicious , for example milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , a president of Saizeriya , is very clever because he always tries to put the price down and make it more delicious . He has his own farms and grows vegetables there and uses them in his dishes . Besides , from the farm to each restaurants , the vegetables are kept 4 degrees because the vegetables can keep freshness in 4 degrees . He try so many different things to serve cheap dishes and make them more delicious ! But the problem is when I came back home . And , as with most tours , this tour included a visit to a souvenir shop . The shop clerk 's sales talk was interesting . I searched on an online auction in Japan , and today I bought a good one ! It 's lovely ! Oh , really I have to learn English and look for a school , but there are It 's the same every time , to choose something in life is hard every time for me . Yeah writing is my weak point , even when I write in Japanese ! At first , three monkeys and a eagle conspired togather to oust the dust from Horton , and throw it away in the field of clover . When a shriker made a sound together with the rest , though , they succeeded . I should have studied more . peppers ( very important ! ) , an egg , minced garlic ( 1 / 3 of tablespoon ) I just took my daughter to the kindergarten and now I am in my car , waiting to go to one of my clients in 15 minutes , which means I 've got ten minutes to write something here . Seven Eleven 's Oden S / E 's Oden is very delicious . You shoud eat Oden with mustard and miso sauce . It 's very delicious . Moist summer finally , the moist summer comes to japan . Japan 's summer is more moist than other countries . So , I think I do n't hate moist summers . 9 : 00 - wrote a weekly report for my customer . I am thinking about a hand blender as present . I 'll have to do my best . I want to learn English because I like talking with foreigners . My cold is disappearing quickly . We played at the park by our condo and she seemed to have fun . Thank you for everyone . In the evening , I watched TV again and ate `` soumen `` ( this is a type of japanese noodle , we often eat it in summer . ) But it was out of date by more than one year , so it was n't tasty . I want to eat delicious `` soumen `` ! I feel proud of my country because the popularity of Chinese means that my country is more popular and stranger . I hope the learning of Chinese can continue . I rewrite the medical information in Japanese . I listened to his newest album ' the pursuit ' many times . We were not aware of the fact that this day has such a remark until it was over . I cleaned up my room this morning because I 'll be away for 3days . I feel that summer is coming soon . So far , there has been no contact with one of my friends since the earthquake . Oh my god , I heard that this test will be very difficult . What should I do ? How can I improve my English ? My grumbling . The result is slightly surprising and bothers me , but I have an idea to solve the problem . Therefore , today 's diary is over . Every time I cook it at home , I can see the sparking lights in my roommate 's eyes . What should I do ? In London I felt like a moron ! Trabajas en Tokyo ? Trabajo en una escuela de Ingles . But my teacher said thathis house was very safe because there are a lot of guards and if prisoner escaped from the prison , they would n't come near his house . We drank a lot of alcohol , talked and danced ! ! ! I 'll visit Washington , New York , and California all within one week . There 's just one thing I 'm worried about . The next day , he entered another smaller hospital . Is it a common thing in foreign companies ? How to write a good essay in integrated writing for TOEFL ? There are two types of writing , and one of them is integrated writing . How do you write a good essay for the integrated writing section ? I always do n't write enough words for it . ( In ibt , the integrated writing requires at least 150 words . ) Or , do I not need to separate my paragraph ? Nagoya 's subways are so complicated . I was moved by her heartfelt visit . When we arrived , on parking lot which was near start line , there were no cars ! I want to make a lot of friends ! Designers who can draw beautiful pictures on computers stronglytend to have such a personality . I live in Fukuoka , south of Japan . You might be wondering why we eat shrimp to live longer . The back of boiled shrimp is similar to one of an elderly person . Is that man lonely ? We have our own aerodrome and planes for practice by pilots , controllers and ANIS . It will be a nice time . I study psychology . And one more thing that I wonder is where Japan 's cold climate ranks in the world . How about the climate where you live ? Also I want to increase my English vocabulary . While I was riding a bicycle , I slipped and fell on the ground in the morning two days ago . After he became professor , he has been struggling to change his department , and he is succeeded in many aspects . After that , I went to a driving school so that I get a car license . I believe Japan will never give up and always rise again . There were so many competitors prepared to study Psychology . And even I do n't know which way I should go . Recently , I found a new singer . English makes me crazy ; ; so I decided to go to an English academy . It 's not necessary to tell everyone that I was born today . However , Thx Sun - zi for your birthday wishes . Sun - zi is a Korean lang - 8 user I made acquaintance with here . advocate > > But I had the job today and of course tomorrow . For the moment , I 'm not sure if I will become a teacher , but I 'm going to take this teaching course because I can gain experience from it ^ ^ I usually attend my English class once a week . I wonder if writing journals will help me improve a little . When I eat onigiri ( a rice ball ) which is purchased at convenience stores , However , I want to at least greet my Chinese here in Chiense . Now I practice Chinese pronunciation , but it 's not very understandable because there are a lot of pronunciation rules like pin ying . We Japanese use Kanji , so I sometimes understand the words ' meaning , but I ca n't pronounce them at all . So he need a translator . But I 'm not a good translator . My high school library has some MANGA books . `` 20 Century Boy `` , `` SLAMDUNK `` , `` The other story of Kamui `` and so on . I like MANGA just as much as novels or essays . Yaki - onigiri is boiled ( ? ) rice ball . We can get them anywhere in Japan . After the big quake in Japan , we have experienced a number of aftershocks . My daughter 's university graduation ceremony was suspended . I am going to do a presentation in my english class next week . Laughter is the best medicine We enjoyed talking , having some snacks and drinks and laughing out a lot . There were the words in today 's English learning video ' Laughter is the best medicine . ' That is to say , we all have the best medecine in us . As for the site `` Lang 8 `` , to me it seems to be not only a good educational resource , but also a place where we can see other people 's change . While thinking that nobody here knows them , people write about the smallest & most hidden parts of their daily routine , and while taking the first steps , they feel extreme & pure happiness even after the smallest victory . . . I think Chinese can learn English better than Korean . In this class I saw a very beautiful Chinese women . I could tell my teacher what to say but I could n't use perfect English . It was really good opportunity to have a conversation with foreigners . And I realized how convenient being able to speak English is ! At some point I want to think about it seriously . It should be and also must be serious . It 's a story of two boys who adapt to the cruel world . Even though I ca n't stand such things , this book is the best book I 've ever read . I learned that I ca n't do anything in a poor physical condition . Yesterday I joined this Lang - 8 website So I created 3 ( brand ) new communities : Playstation3 , Japanese sports cars , and Plastic kit modeller . It 's lunch time : ) My mother made me a lunch and it included a deep - fried pork cutlet but I think she forgot to put sauce on it : ' ( Haha ! I just finished the other of my assignment . It always takes an incredible lot of time for me to get my assignments done . I will go shopping at a mall , because it is cooler there than it is in my room . So I can say it that it 's a totally ridiculous habit . I think particularly it works well to make it easy to bring up phlegm . So this is a ridiculous superstition in Japan , I can say . I just registered here , tonight , but I have already found out / discovered that this is really an awesome place . I used to find it so difficult to practice my bad Japanese , but on here , just 5 minutes after putting up / publishing my first Japanese entry , runtyan has revised my article in detail . I 'll come tomorrow early ! I do not have enough confidence to accomplish it well , but I want to do my best . study with her so I tried to go but I did not reach there im just half of the way I am lost and then I decided to take the sky train to go there then I just realize that my motorcye do not has any lock so I can not leave it anywhere around . Um , I have a question . After work yesterday I went to a nearby movie theatre . The theatre was crowded with a lot of movie lovers , as it was just after the announcement of the Award . The Chinese hospitality My body clock seemed to be malfunctioning . By the way , I 'd like to write about an elementary school located in Toyosato city . They came to a win - win situatio by deciding to build a new school in front of the old one . The school parking lot is filled with a car decorated with a Kei - on character . Why do the Otaku who like Kei - on go to this school ? Because the old school in Toyosato city resembles the school in Kei - on . An expert in Japan who specializes in Japanese subculture said ' cities will thrive by using animation character should become commonplace ' . Because in the neighboring lane someone was learning to swim from a trainer , so the trainer saw me trying to learn the hips motion . And then we went to the street stalls and got some festive food like Takoyaki and Ikayaki : ) Actually I faded a little cuz now I 'm drinking a tequila . I 'm not sure whether I heard it correctly or not . Please check the following sentence to see whether it 's right or not . I went to an English Cafe yesterday = D Before I sent a e - mail I have to show my e - mail draft to our boss to check it . Then I went to a beautiful bakery . I bought some bread . Er trinkt gern Bier . Er hat kurze schwarze Haare und schwarze Augen . Meine Mutter ist Hausfrau . Sie hat lange braune Haare und schwarze Augen . Er ist achtzehn Jahre alt . Er spielt gern Videospiele . Er hat kurze schwarze Haare und schwarze Augen . Meine Familie wohnt in Hyougo , aber ich wohne in Shimane . Meine Familie wohnt in einem Haus , aber ich wohne in einem Apartment / in einer Wohnung . He is forty - nine years old . She is forty - four years old . My younger brother is a high school student . Anyway I still want to make full use of this website and keep practising writing here . So I decided to use English at this page . I follow power blogger , so I got some nice information from the blog . Do you understand what this stupid sentence means ? With my Boss Last time , I wrote about my first choice of a future job , in the movie industry , especially in advertising . It is so complicated to remember everything ! ! I had been kind of lazy in Februrary because I chilled with my friends , drinking , and singing karaoke . A new twitter account Thank you very much : ) Certainly , nuclear energy is very dangerous , since Japan relies on nuclear power for much of its electric supply . So younger people in Japan should have more interest in these problems or What do you think about nuclear power plants ? I must study English harder ! ! I decide to study a little more . NO wonder there may be other solar systems like ours somewhere in space . . . anyway this movie gets me to think about a very romantic story about the universe . It 's worth seeing . ; ) So , I took a walk for 30 minutes almost every day for 3 months . I am so happy to join here . I want to practice my If I were a player on his team with him , I would assist him . Since my school parking is really bad and in the morning it is so hard to find parking space , people always ask you if you are about to leave when you walk inside . I do n't mind answering their questions , but I was bothered by their reaction when they heard me say I was not leaving . Now I 'm drinking a can of beer at home , because the presentation was finished finally ! ! ! The tempura today was prawn and mushroom . This mushroom is called `` Maitake `` in Japan . I happend to read a magazine I found in my club room . I received the glasses there . We used to study at the same school for a long time . She is older than me by 2 years . We lovers of martial arts can not , in today 's democratic world , use our technique in our daily lives . Tomorrow my nephew should go to school to register to study for another grade because he finished the patum < - - ? 5 and is going to patum 6 . Anyway he was still not calm , he turned and watched me move frequently . After I had finished cutting his hair . He really became shy and came to ask me to do it again . . And I 'm interested in dance ( a little ) and blogging . ~ ~ lol . . Watashino Ohashi desu Kore ha watashino ohashi desu : ) Ohashi wo tukau noga suki desu . Today I received my first correction in Lang - 8 . Our class is making a presentation of ocarina performance next Saturday . She gave me many souvenirs ! ! Because I think she misses Japanese food . I usually write in a diary in Japanese , but it 's the first time for me to wtrite it in English . I totally agree woth the author of that article but most Korean can not speak English fluently , , but , , when we face with foreigners . . they were fluent speakers . . and they were also enthusiastic about English . . . Happy New Year ! listening test Today I want to try a listening test with `` Man in the box `` From youtube . I 'm not sure how many of you guys know this short video . Greg : the Japanese number puzzle game Jim : No I mean , about me whining to you - - - - - - - - - - - - - - - - - - - change scene - - - - - Jim1 : I just I miss her you know , like yesterday would 've been our seven and a half month anniversary . The ShangHai Knights came on TV . - - - - - - - - - - - - - - - - - - return to the original scene - - - - - - - - - - Jim : Ok , I guess I 've been a little preoccupied with her . so what is it today Jim ? What sad little piece of information do you want to share with me about your ex - girlfriend that I dont give a shix about it because you 're a pathetic losser that ca n't let go you twat . Jim : Call you twelve times a day ~ ~ I think that 's perfectly ok ~ ~ you dont answer anymore ~ did you change number you cheating whore ~ thanks in advance for your guys ' corrections . Thanks for the comments on my previous diary . I discovered the name of my illness . We have regional map , but not a global map , even if we did n't count the number . I am going to write my diary in English . The title was `` CASE CLOSED `` , which is a Japanese story . The true love between vampire and human beings moves me and I always look forward to watching `` New moon `` . I 'm writing this entry for you . News about the earthquake is reported from morning to night everyday . Fortunately , I live in an area where there is no damage . But I think my English skills will improve by studying abroad . Yesterday , after a ridiculous class in which we talked about what a second grade student can teach ( us ) about leadership , I tried to go home . Then a girl spoke to me and asked what the Korean homework was , because she was absent . Free time & favorite movie I often go shopping in my free time because I live by myself . In addition , I often read books . My favorite movie However , they become gradually fascinated by jazz . Then if you become uprooted , you feel unsettled . `` Today , staff members were told by the personnel department that if we ever had a problem , we should take it up with our supervisors . in the foreign country , what u gave to a girl or a boy ? There are two professors in my laboratory Today , one of my lab members gave a presentation at his defense ( ? ) . Who is the most popular pop star in the US ? Recommend me someone ! Whenever I try to record something , something has to interrupt me : the phone rings , the door bell rings or the cat meows . Each time I start recording the cat is stuck with me in the room and wants to get out and when I get her out of the room she meows because she wants to get in . During the holiday , I tried to return to Japan . But company denied my request as I am now working in Beijing as a trainee . As I have no friends in Beijing and came here by myself , I wonder how I will spend one week ! But , today , I enjoyed the beautiful eary fall . On the 4th floor , we will have a cinema room and a karaoke room . Perhaps , some people would like to vote for building a factory simply on economic grounds that a large factory will probably bring about a prosperous future to the area around . She chose a grey one at first , but I advised her to choose the red one . But recently I change the / / my / / opinion . This week the Japanese telephone company `` au `` announced the release of a new series of cell phones . Both of them are very talkative so we talked all the time . I wonder whether I should write about it , but I decided to because I just want someone to listen to it . I could n't catch his saying completely , but he told another person and laughed , `` Wow , someone is talking Japanese ! `` After several hours of reflective though , I kind of reached a conclusion that I should never try to be hostile to him and I would keep my doors open for him , for him to come back to me as someone I felt the best spending time with . The weather is unstable and the sun goes away sometimes . Yesterday I was supposed to join the Job Fair in Zhong guan cun , but unfortunately I felt lightheaded , drowsy , dizzy , nauseated , unusually tired , and I began to think I 'd been infected with H1N1 . After supper I hurried up go to the drugstore and buy a themometer . Thank goodness my temperature was within normal range . He went out with 23 women , so he has a lot of knowledge and experience . If I kept a kitty cat , I wish her to lay on my PC like the following picture . Very strong men attacked bad men . He likes to watch K1 and boxing . To begin with , in my reading , a successful career is associated with how well - off people are . Whereas , the professor states that students should decide their major before taking a wide variety of general education courses . Consequently , the professor maintains that when you find employment , you should be careful of how the vocation fits your interest . My Lab work If someone can explain the meaning of these sentences , I 'd really appreciate it . It is light , it has big blinds / curtains , it is reversible , and Two Australian men opened the bar , so most of clients are foreigners . I think that maybe it is not only about different , it is a complicated issue . Ok , I think this method is good for beginners , you can get an understandable pronunciation , and some basic knowledge if you want to travel to the country soon . Please feel free to add me to your friend list in Lang 8 ^ ^ I welcome everybody . The reason I am busy is that I am learning sign language . However I ca n't communicate with deaf people . Why do you think that we ca n't communicate with such people ? I want to try to talk with such people . When I was a student in France , I was surprised that a lot of people there came from several foreign countries . In Japan it is not like that but there are more and more foreigners here . It is one of my reasons for studying English . Representative high school teams from each of Japan 's 47 prefectures compete at Koshien Stadium in Kansai area . Although I tried to not eat sweets everyday , my homestay family eats desserts after every supper > < When I watch comedy shows I 'm not really able to understand what they say because there are no subtitles so I ca n't understand the English without subtitles well . Are there often celebrities who have funny voice or do they change their voice on purpose a little ? Though when necessary ( under pressing circumstances ) , they never fail to be short of money for basic necessities , rather than letting the expense become an obstacle for me . I earn pocket money by doing part - time jobs . What do people usually talk about when they have no topics for a chat or when they need to keep up the conversation ? Unfortunately , in my country it is , in contrast , very hot and dry in summer and very cold and frosty in winter . The weather forecast promised it would be much cooler tomorrow It 's going to start in 30 minutes . I hope all my friends onLang - 8 who live in japan are all safe . I hope all Japanese are safe and sound . I was there for a week for a business meeting . I am coming back home from Narita airport by bus now . Yesterday I took part in this Lang - 8 and wrote the first journal . And I thought , `` There are so many jounals here , it must be impossible to get someone who can help me . Evidently the winter is coming today . I answered `` I 'm thinking of enrolling in this school . Could I have a trial lesson to help me to decide ? `` Actually it 's not always raining , but the air has the sense of rain . Why , why on earth have you made me so incapable of concentrating ? I had actually contacted him many times , so I may have got him down . But from today forward , I will try to write a journal every day in lang - 8 because I will start a job next spring , April 1st . On the other hand , I can understand recorded English dialogue & nbsp ; when I listen to it . So I will write my diary with the `` Look `` or `` Look like `` I learned . Depending on the outside ingredients and the shapes of them , the name changes to things like ' Daifuku ' , ' Monaka ' , ' Taiyaki ' , ' Taiko - yaki ' , and so on . They are not at home now I am staying at home with my uncle , even though I wanted to stay alone . He is the husband of my second aunt . He asked me `` Would you like to eat chicken for lunch ? `` In korea , chicken stores sell chicken with cola . Hello my friends , this is my first time here . You are welcome to make friends with me . Recently , I started skateboarding . I want to improve my skateboarding more . I want more time to practice skateboard . Hello . My name is Kim Dong Hyuk But I do n't like Harry Potter . I think that Harry Potter is childish . ( I meant the Harry Potter translated into Korean sound very childish ) see you soon Since I could not get the pronunciation of Kanji instantly , it meant I took a lot of time for reading and understanding the meaning of a sentence . I have got a very interesting book from my brother , sweets from my parents and friend , a pineapple from my class tutor and a lot of wishes from colleagues . Although I 'm happy , I 'm also very worried because the school districts around here are not hiring at all . Reports and presentations are waiting for me . Introducing myself I tweet only in English , so I can study . So I spend 10 minutes doing one tweet . I have to repair it , so I need more than 20 thousand yen , probably . Next exam is July . I am writing now by cellphone though it is difficult to write . . . If it 's sunny out today , I will go to the park to go running / tanning and stretch . It 's way too short but that 's all for this morning . Some of the victims ca n't get enough food because roads were broken by the earthquake and tsunami and the amount of food is too low for all of the victims . Of course , the Japanese government and other organizations are trying to help with the food supply , but it is difficult because of these reasons : This problem 's news is bigger than the earthquake 's damages . Nuclear power plants were damaged by the earthquake and tsunami . The Japanese government and Japan Self - Defense Forces are trying to reduce damage of the radioactivity . Remember , the nuclear power plant is a power plant for Fukushima , that is the place that was given the biggest damage by the earthquake and tsunami . ORION brewer had manufactured their products only in Okinawa prefecture before , but now they made a business tie with ASAHI , so we can buyORION beer at supermarkets and alcohol shops . Today , there is a very interesting shogi game between shogi software and Ms . Ichiyo Shimizu , who is the best woman player of shogi . He is a student who has participated in our Dojo . Furthermore , we need your cooperation please . It was 40 degrees Celcius and meteorologists have n't stopped to announce fall of temperature every week . By the time we talk about food we were hungry so we went to Korean restaurant near my work . Third , well cooked barley with soy paste soup . Fourth he bought out rice , Q . groud beef steak , fried fish , egg soup . Five more side dishes came with it . We had a great time , and we left our stress at the restaurant . I was moved when I listened to his performance . Yesterday , when I had to go to school by bike , the thermometer registered - 15 Celsius ! And just like every mum does , she pointed out my stubbornness . Although it 's cold , I really enjoy watching the white landscape just like I 'm doing now with a cup of hot chocolate , yummy yummy ! ^ _ _ _ _ ^ Screw you summer , hot chocolate rules ! I am a beginner . Could these advances in technology also cause some problems ? December 30 , 2010 Korea , depending on the contents of the diplomatic negotiations . After that , I rented a DVD and went home . I said `` Of course `` There were no LAN connection in the room , so I had no choices to use internet I went to the language school . There were many Japanese student there , they will graduate with a strong academic background . I was ready to study painting with kids in the 1st grade . There are many cultural facilities , like a concert hall , movie theaters , department stores , an ice rink , football stadium , shopping mall and two parks . I talked with a friend in Texas with Skype this morning . They try to get a summary of the candidate . The candidate , is usually asked to speak English by the foreign - invested companies . I will separate between what I need and what I do n't need . Help with my house 's agriculture , rice planting and harvesting cherries . He stood there for 10 minutes and he held the piss in . Today , I went to a concert in which my previous English teacher played . Firstly , The Beatles has `` opened `` up for me the magical world of the rock - n - roll . I think that it 's possible , and as John Lennon said : `` You may say that I 'm a dreamer , But I 'm not the only one . Even when I 'm in an awful mood , their music makes me smile , and I 'm very happy that they have such an influence on me ! When I saw the terrifying tsunami that destroyed houses , bridges and roads , I was shocked . : ( Anyway , I have to concentrate on his class and write down what he says in the next class . I was curious to know why they made it like look like a fallen leaf from the beginning . When time passes , from spring to autumn , the wakaba becomes momiji which means red or yellow leaf in Japanese . I was going to write in my diary about my cute female friend but I changed my mind , because I had heard a rumor about her and it was a terrible shock to me , so I could n't write anything . It 's a little roundabout out of the way but really nice , I can choose from 3 supermarkets to buy something and there are 2 movie theaters . I thought it was a little expensive in the auction for me ( but it was too very inexpensive compared to the real price ) . We would say `` I go to school `` if we were outside of school . If they were with you , you would say `` go to school `` . ( In English ? ) I clip my nails regularly so I do n't know the reason of holes . I felt a serious ideal and belief from his speech . The following sentence is in the present passive voice : The company promised to give 40 yen for each day . Half a year has past , the money has not been given , so I am disappointed with the comany . Almost all week , I thought of preparing spicy chicken wings on the weekend . We read on the Internet a lot of different recipes for chicken wings , and went to the store to buy food . We made a honey mustard marinade from honey , common mustard , french mustard , spices , soy sauce , salt , and garlic . We put the wings in this marinade for 2 hours . We are eating the delicious chicken wings right now , drinking light beer and tomato juice , and watching the movie `` Uoll - street `` with Shia LaBeouf , Michael Douglas and Carey Mulligan . This paragraph is my model answer for my OPI test . The exhibition of Fernando Botero has been there since July . The first exhibition I voluntarily attended to appreciate art works , not for a mandatory school field trip , was in 1999 . Two girls and one boy . Why do n't you tell me what you want me to do ? `` Well , obviously there is no stand - by drink for tomorrow , ca n't you see that ? ? `` I should go there because I want to graduate without hindrance . Everybody likes her ! ! I hope she has a fantastic day ! ! ! ! ! ! ! ! he has two personalities OR double personality . he always gives me helpful advice . and I assist my professor with performing an ultrasound during an operation . I 'm looking forward to knowing my second impression of this book . So I 've decided to make a list of questions that could be helpful for both teachers and students . Actually I always preferred Damon to Stefan . I 'm so glad that I know more than I knew then ! It is sunny today , so we are walking in the park this afternoon . This year the topic was `` Should the Japanese government authorize the system of casino gambling ? `` Each team had two battles , and the rankings were determined by the scores the judges gave . In addition , there was , for example , the argument `` after the plan Korean casinos wouldgo bankrupt and many Koreans would lose their jobs because 70 % of such casino 's customers are Japanese . `` Debating is too difficult for a freshman to do alone . ) The first book begins with a guy called Arthur Dent , who wakes up and sees lots of bulldozers in front of his house . I do n't how it works but I am writing my first diary . I ate more than 15 dishes , so I became full . He told about his homeland 's history and answered people 's questions . I am going to Germany to study Electrical Engineering from October to January . And in the town , I have to speak German . I love German and English so much . I sometimes watch this forest on TV and in magazines . To understand the meaning of the commands from our boss exactly . I have just finished applying for Working Holiday Visa in Australia ! ! ! I went to Chibi Canada . I 'm going to participate in a Zombi Walk on Saturday , downtown . We prepared for the Zombi Walk . We cut some clothes to mimic Zombis . My students enjoyed it . Too many extra curricula 's chosen by their parents will inevitably take up the kid 's time and change their nature . because I have n't finished writing my resume yet . I 'm so tired , because the night before , I slept only 3 hours or so . My best friend and I have n't seen each other since Halloween , It was awesome ! ! It was really fun , but I got drunk and I had to practice danceing . I have to write about something I like internationally , but I have no idea how to write it . ( [ Recently * OR * Astonishingly ] google has released Google Chrome . . . ) The process is surprisingly easy if you understand its frameworks . The gaps are being spreading in the point of costs and individual capability according to ' ' The World is Flat . ' ' Whenever I head down to the station , I can see many blood center workers on the street shouting My first log . I thought so , but I chose this nickname . In the future , I want to work making steel . He swiped a bottle of vodka from his family 's shelf . The vendor 's headquarters are in Europe . I want to help martha , but I can not fiund the correction set in this system . Of course he is the most popular ~ in the world . and thanks a lot that you taught me At first I chose it because it 's only for women and that makes me comfortable . circular exercise ! ! `` I work at an elementary school in France . I do n't have much faith in my ability to remember so much professional vocabulary . Because I could n't achieve my target IELTS score . Japanese are killing themselves approximately at the rate of 35000 people every year . I think the root of this problem is that Japanese companies have a traditional style . Exhausted people ca n't talk with someone , although they want to explain / reveal their troubles . Is this right ? It was about ' Racialism of South Africa ' . I forget what its name was , anyway there were a lot of foreigners , especially Americans who have studied Japanese . Many foreigners know very difficult kanji , including some ones even most of the Japanese would n't know . What 's more they know old - fashioned and obsolete grammatical knowledge . The site gave me new information on japanese . So I found out that learning too much detailed grammatical information or memorizing innumerable words is not very effective to master a foreign language What I would like to say is that territory issues like that are occurring between many countries , such as between Vietnam and China , India and Pakistan , Israel and Palestine , and so on . I saw a 3D movie on Saturday . but also it makes me miss America so much . We ate delicious dishes / foods and talked about our own dreams . Onjyuku in Chiba is a very beautiful place , blue sea , white beach . To pass the Korean summer , we definitely need these things . The following is the ps that I wrote for my cousin , please give me a hand to correct it . But I am going to visit the grave tomorrow . But he is also charming and has a great ability to diagnose sickness . However , I have to admit that the festival is so fantastic , it 's worth enduring all that trouble . At the park , I found thata lot of `` tsukushi `` hadgrown . ( Tsukushi is called horsetail in English . ) I remember her teachingme asI tried to cook tsukushi . There are two important preparationsfor tsukushi food . 1 : Remove the `` hakama `` ( It is acalys , inedible part ) . 2 : To remove strong bitterness , boil or put in cold water for 10 minutes . I stir - fried tsukushi and Rape Blossoms . I thenseasoned itwithsalt and pepper . unbelievably fat . . . While I was choosing some books for my children , one of the books caught my eye . I take an English - lesson on a web site every day , and I gradually became interested in the Philippines because that is where my teachers are from . I 'm currently reading the book , and I 'd like to spend some more time discussing things related to the Philippines or Japan . I read some of the messages my friend sent to me on hotmail . 90 % said when a woman has long hair because it is easy to pull her hair 70 % said they change their mind if , before they are going to injure a woman , she sees them and asks `` Sorry , what time is it ? `` He recommended rice noodles and beef fried rice . It 's a story about a girl going abroad , who is taken hostage by an international terrorist organization . St - Pierre has been practicing karate since he was 6 years old and respects Japan , so he wears a Japanese headband during the entrance before his match . My family had a student from Germany since August Today , she was supposed to move to another host family . which is so / very impressive . I also pay the security deposit and brokerage which is equivalent to one month 's rent . I bought a new English book ^ ^ To study English is a lot of fun ! I want to study English more and more But I don ` t have much time to study English and German I began Lang - 8 , because I want to speak , listen and write in English . I had a dream about a woollen scarf at that time . My dad watches tv and my mom sleep in morning ! But they also have tried to grow a lot of vegetables for themselves in their farm . It was big , beautiful , and had a perfect shape . We would always go to dinning room of our college school ( because it 's very close to our company ) but recently , our boss wants to have lunch with us , and I feel very uncomfortable , we can not talk about anything like before . Because I want to study Pharmacy after that . Please correct some of the presentation / some sentences . What a beautiful Cherry Blossom She is very cute . It was more growing than I throught because she is mix of regret : I regretted to call her such a cruel words . govern : In the ancient times , Rome was governing all of the world . bend : I will not bend my opinion even though all the people here are opposed to it . I 'll start learning English again . I 'm very busy , so I stopped learning English 3 months ago . Today is great . For the first time I met a cool lady . I 'm so excited . Could you explain the difference between the meanings of the words above ? Are there any differences ? Teaching is Learning ^ ^ I believe that the learners can help each other and can make more progress for themselves . Just rotating and browsing itself is really enoyable . I would like to develop my vocabulary and learn to speak , at least , the english that people are speaking every day . The friendship was beautiful and maybe his friend assisted the goal , I thought . . . One of villains , Griff also said it to his grandpa . But he only said the same words more loudly . In some other cities ( like Milan and Naples ) the winner has n't been decided , yet : the two candidates who gained most of the votes are going to `` fight `` for two more weeks , at the end of which there will be a new vote . She calls me `` my clone `` because weresemble each other so much . For example , when we go to the museum and look around and ask each other , `` What paintings do you like ? `` We choose the same paintings . LOL , I was superman at that moment ! I told him one of them was cheap , so I skipped the explanation of the two companyies and their cards . Firstly , because he is the most popular writer among teenagers , I 'll ask him the secret to writing funny stories . You know , he stopped studying regularly at the end of primary school . I really want to know the secret . terrible day She always has courage to face every difficulty , but this she had to give up . One of them is flexibility , the other one is positivity . severe problems or are in a slump One more of his good points is that he is extremely flexible ; he tries to gain new ideas from part time workers , trainees or whomever has good ideas . words in front of the employees unless the company is in an affluent position . His positive way can influence the employees obviously . depends on the employees , because , if they do not work aggressively , the company their problems nicely . I think that a good supervisor should be flexible and positive . keeping the workers ' thinking positively . workers should be flexible and positive too because without their cooperation , one good supervisor could not change the company surroundings at all . When I left my grandmother 's house , she said softly , `` You can forget about the marriage . I need think about my future separately . I 'm very happy because I 've spring break until May 3rd ! In this time , each student does n't have seminar and celebrates from morning until hmmm morning next day . Today is last day of this fiscal year . I 'll go on a training camp of the Model United Nations this afternoon . The advantages and / or disadvantages of public transportation . Firstly , public transpotation makes teenagers more independent from their parents , because when they take public transportation , they have to mind their good manners , like how to behave in the situation where other people are around . Thus , the situation where they have to think how to behave by themselves improves their independence . Secondly , let 's consider public transportation 's environmental effects . Thirdly , public transportation makes traffic conditions comfortable because if many people use public transportation , people who drive cars will decrease and we can ease traffic jams . However , when I was just about to leave home , the telephone rang . We do n't know which one to choose because there are so many beautiful pictures . When I met them for the first time , I was so confused others run around all the time even in formal ceremonies . goodbye . and creates a sustainable future on our own accord . Hi , it 's my first text on this page and I hope that this page help me learn my english . I just started writing my journal in English every day . Recently my class did pre - lessons to be a teacher . But I want to be a teacher , and I want to make a good future for Japan . I 'm so happy have this terrace that I can learn language . My English is not very well , I hope other people can help me , I can teach your Chinese , we can help each other , could you ? Now , I am always going to a support company for studying in UK . According to the IELTS module test , my IELTS score is about 5 . 0 ~ 6 . 0 overall . I would like to go a UK university and major in Entrepreneurship or something related to Business . We went hunting in Ixali Clearing after chatting . ability . Oh , my essay has been so long ! Thanks for reading my essay . Please read my essay , , ! One day , she heard a funny rumor from a junior high school student who said `` There a cursed video tape at a campsite hut , and if one watches it , one dies after 7 days . `` Asakawa immediately decided to cover the story just out of curiosity . As you can see , I suspended my diary again . The keyboard layout changed for some reason . For example , when I pushed `` k `` , it typed `` 2 `` ! ! I tried many ways to solve this . By chance , I pushed one key , `` NumLk , `` and the problem was easily solved . . . I live downtown with Mexican friends now , but since they are going back to their country , I have to find a new apartment by the end of jun . The owner is so kind but the problem is that she does n't like the smell of meat , so she asked me not to cook meals with meat frequently . Anyway , I have to complete packing until night . He 's a Saint Bernard , like the dog from `` Beethoven `` . These sentences say the same situation ? Thailand has a good relationship to China therefore the Panda were the good gift . They invite the children and toursits who would like to visit Baby Panda and watch them playing with snow in that dome . There was one more important purpose for going to this museum , which was the restaurant . Every freshman in my university is assigned to study calculus , the subject at which I failed in the first year of my university life . There continues to be illegal videotaping of movies in public movie theaters . It was so impressive for me and I was shocked . I thought it was much more sophisticated and attractive than that of the Japanese version even though PS3 is originally made in Japan . I heard of `` Umbrella `` from recommendation songs at the cyworld which is a website in Korea and similar to Facebook in U . S . If you know this kind of music , please recommend ! Say it again sung by Marie Digby My student will challenge relatively advanced high schools . But I think this music clip is good entertainment and a song I can describe as one that 's really `` This is a Michael Jackson `` . Michael Jackson is the first America pop music star for me . When situation got worse , my computer just freezed . I am going to back - up my files and update the anti - virus software . 2 customers , and 3 stuffs including me , at bar my working place . I will go to do `` karaoke `` with my friends . Unbelievable ! Who Are They ? The Avatar Put vanilla ice cream . Hi , I 'm Silver and I 'm learning Japanese and English . I 'm studying these languages because I want , someday , to spend some time in Japan and the USA . Some people like a western style breakfast such as a piece of toast , scrambled eggs and a cup of coffee . I made some English sentences with my friend . There are many people with allergies in the world . However , my sister ca n't eat those things , so my mother asked the teacher to give my sister treats without chocolate and peanuts that other children would also like . I could find a convincing opinion . Also my teacher advised me of following : according to yesterday ` s translation , boss correct them himself and praised me for a good job . But , I ca n't write natural - sounding sentences in English nor can I speak it well . My second son knows how to swim because he has already had lessons . Afterwards , the hypothesis disappeared . Every time I hear blood type character classification , I 'm bored ! Practice makes perfect . Everybody should buy Volvic ! ! ! ! Last weekend I climbed Yuelu Mountain / Mount Yuelu . so I decided to do something to help my English . that 's why I joined `` Lang - 8 `` and started writing diary entries . To make Ramen , we mix pork soup , oil , sauce , noodle , and some toppings . Maybe I should find something interesting to do . Still , I feel sorry for having to make them listen to my stumbling around in their As a student studying Statistics , I agree with his opinion about the importance of statistics in our life . Also some universities have a statistics department in the undergraduate and graduate level . I like visit around there especially the sea side . There is a water park by the sea and they have long slides . My kids are looking forward to going to the water park . It looks like a human physically . He was astronomer and doctor in Middle Ages . Poland in Middle Ages was much larger than it is presently . He was first Polish pope . English as a second language Japanese and Koreans naturally have morebarriers to overcome because of the huge differences between English and their mother tongues , whichunlike Chinese , whose structure is somewhat similar . Frustration is always followed in the quest to be perfect , particularly in learning a language where there is no clear finish line . Astronomical sums of money has been invested on English education in Korea . `` I know many people who went to America at a very young age . And their pronunciations and accents are just perfect . `` I do n't have the instict or intuition for English language . `` My hobby is doing sports . As I love many kinds of spors , I have a muscular body . Yesterdy I went to work part time and I taught swimming to children and gym trainers . tomorrow , I will perform it in livehouse . Japanese believes that the new Year God ( Toshigami sama ) also comes when new year comes . This is the preparation for receiving new God . It has some theory and it is very comeplex to explain in English . It contained grammar , vocabulary , listening and reading sections . Anyway , no mather how hard it is , I know I should get through this hard period of time all by myself . I do n't like the feeling of hanging around . Maybe taking photos can be a nice choice . Not only because of the bad environment in that city , but also because of my feeling of learning nothing there . It seems ridiculous . The Korean temperature will be sixteen degrees centigrade tomorrow . Compared to the Japanese temperature , Korea is a little cold . My condition is a little bad . That sometimes stimulates my appetite . Then , ( after ) arriving home , I ate a large breakfast , See you ! Good night ! ! I decided that I will never take PINAIR . NEVER ! ! ! Probably the hottest day of the year . No , my entire life . I like Yui and Azunyan , Oops I 'm Korean guy . Youtube caption download Today I have found that Youtube gives subtitles for some movies . We count numbers starting at 1 and the person who said 30 will be the loser . I think you can change this into a better explanation ! Recently , I 'm learning not only jazz , but also hip - hop and lock . It was very delicious ! And now I confuse English and Russian words ! ! _ It 's terrible . . . . . . . . . . . I will visit Ho Chi Minh City and experience a Mekong river cruise . I will study English hard every day ! Two days ago , a dog my girlfriend 's family kept , Bell , passed away . This happened as expected . People who consider watches as a tool for timekeeping , Everybody in our dormitory waited for them , decided to make it a suprise . We had Mexican food for dinner , it was delicious for us . English is very difficult . to grapes , apples , pineapples , lemons , peaches , kiwis . If I had an opportunity to eat fruits , Recently , _ more and more people change their cell phones to smat phones . I began to be worried . I registered for this site , immediately . Today I went to library and studied about various financial products like ( / such as ) bonds or derivative financial instruments . By the way , I am becoming a little nervous these days because of the pressure of job hunting , and I often feel lonely . The group invites a foreigner to be an adviser once a month . I was surprised when I received the corrections . I 'd like to continue writing my English diary . first of all , I made korean soup which is for birth day soup , today was not anyone 's birthday though , because its taste is great ! ! There were also kimchi soup , Korean pancake , rice and kimchi which are all traditional Korean foods . I decided to study English and Japanese yesterday , after washing , I read a Japanese book . because I just studied Japanese in the 3rd year of university . I decided to study English writing in this site from today . I would like to I introduce my character . This job sometimes makes me feel tired , because I have to work in the hospital the whole day . So , I want / decide to ride a bike / bicycle with my friend . but when I go out to fetch my friend it 's still raining but it 's sunny again I 'm very lonley . I dont understand the proper procedures to do these things . On this special day , some people are celebrating and some people are still in danger . Now we are focusing on the grammar when we start learning English , but not listening or speaking . I 'm one of the people who claim that speaking and listening are more important than grammar for beginners . Would you proofread these sentences ? And I bought stickers , so I will give these to you ! By the way , the 31st of October is Halloween ~ ! ! If you have free time , I want to exchange Halloween goods . I am studying English and Thai . I have 2 daughters and a husband . We are living in Thai , because of my husband 's business . I like reading books , drawing pictures , playing the piano And they complain about the participation cost . At last , I found one to satisfy my requirements . I 'd like to live near the station . I met a childhood friend . If I am free tomorrow , I will share it with you . Does anyone want to communicate him ? For example , all us Japanese people lived in Japanese - style houses , but recently this type of building is becoming a thing of the past . Nne of the reasons is that the development of the air conditioner lets us not need to choose the Japanese one that is built so that you do not feel uncomfortable without them . A man who like to watch old - fashioned things has no choice than to go to a history museum where they are on display . What improvements have I experienced ? But it is clear that I have realized the mistakes repeated in each entry . Learning so much vocabulary is making me confused and frustrated . Could you see my weaknesses through my journals ? By the way , I am going abroad to study English in Australia on February 12th . I am worrying about the flood which have been occuring in Australia . hangout = play ? When I was student in High School , I was interested in Middle East . We played dodge ball , catch the tail and ran in a race . I stayed up all night talking with my new friends . I went to the web site of , `` the new york time `` it has beautiful calligraphy . These days , I have begun training to quickly translate Japanese sentences to English ones one after another . Japanese sentences are chosen to be translated easily so that we can concentrate on learning the grammar and the use of it . Becasue there 's no need to get any certification when you act as anyone , I made my account and uploaded some pictures and became a well - known comedian of China this afternoon . But I can communicate with others somehow . And unluckily I 'm included in those people ! Our enzyme , alcohol dehydrogenase , which metabolizes the alcohol , is less active compared with the enzyme that heavy drinkers have . I seems strange that my friend never received a letter ! I have English conversation lessons on Saturdays . I will enter a university in April . do you have another expression for `` it takes long time `` ? as with many korean students , I think I have a weak point for speaking or listening in english . I watch my usual knitting shows , ready my favorite knitting books , and check out all my tools and knitting - wool in the closet . recently , my hobby recently , I 've been interested in Mr . Children which is a Japanese musician so , I listen to their songs almost everyday ^ ^ and now I am listening to one of their songs . According to the weather forecast , it 'll rain tomorrow . But recently , there is no one who takes care of these things . ' Your grandfather died . ' Oh , you have to wear something on your underwear , right ? I used to sleep at around 10pm and wake up at 6am . this weather makes me really depressed ! ! ! The reason why I decided to live in NZ was that I wanted to recover the nodes on my vocal chords by being in the clean New Zealand air , and also I was tired of being in Japan . He needed to push the on off - button immediately . you 've learnt many languages , it 's very interesting , but learning to be fluent in any language can be very difficult What do you think ? the internet , junk food and smoking was my life . I 'm swallowing tablets and other medication for pain ( painkillers ) , my body hurts so I 've been lying down all day . Although all this has been happening , I wo n't stop praticing English . It is true that English is becoming the world language in globalization . I am reading a comic book called Dilbert , written by Scott Adams . It was about M . 7 around Fukushima , the nearest place to the hypocenter . Her strongest point was that I ruin my health by not eating eggs and diary products while my brother slowly poisons himself , it 's something nobody could do anything about it . She is just too stubborn , but so am I . . . Fresh vegetables were very good ! I have tried to grow vegetables on my balcony but it ended in failure . I have stayed at an Australian home and there I ate pasta made by the home family 's mother which is was the most delicious pasta I have ever had . I have to pay 1000yen every month for the membership fee . I do n't need to pay for the car insurance , either . Because it is included in the membership fee . This system is not popular yet in my neighberhood . In the future , this system may be popular among young people . on friday I just went out with some friends to have fun in a latin bar . It was nice , I met a lot of people there from differents parts in the world and obviously from my country as well . . . on sunday I went for a walk with my flatmate she 's like my sister here so we just went for walk and a cup of coffee and then I back to my flat . . . Yesterday my mother and I drove to the Wake Mall and bought many things such as clothes , shoes , food and other stuff . They all enjoyed the sunny day and took their rest at the weekend . My schedule in Bangkok had changed so I could n't arrange things around my schedule . So , I predict that this year 's theme will be ' nana ' or ' shichi ' I will take an examination on the 24th of April . I am planning to have a trip with my college friends before graduation and I have not decided where to go . The beautiful flowers There were the beautiful flowers at the reception of my company . I am not wearing a wedding ring , neither is my husband , because we did not buy them / any . Of course , we visited a jewelery store like other people when we decided to get married . I ordered some items from drugstore . I think they are a really big company . I checked out that message . I purchased a lot of items so they will ship my items in two shipments and I would like to make sure that they will ship my items in two shipments . Mami Kawada This is a letter of complaint for a psychological journal I was examined and the doctor said that I have signs of paranoia but I do n't believe him . I really do n't know ; what do I do ? I also want to make friends all over the world . At first , we had a Korean lunch . I bought clothes , boots , body care creams , and so on . We were relieved , but we should have make sure of the bus , especially when we come to a place we do n't know so much . Since I have the shop bag of FORVER 21 , some girls asked me , ' ' Where is Forver 21 ! ? ' ' It was interesting for me . In addition , students and their parents complain of the incompetent teachers who do not strive to show any effort to improve their teaching skills . The government insisted on a new system that requires teachers in secondary schools to renew their teaching certificate every ten years . Therefore , I recommend the method of using the score of authorized linguistics exams in the case of subjects related to language or tests made for assessing each subject . In conclusion , I agree with the implementation to reform teacher 's regular assessment because it has more advantages than disadvantages , such as the improvement of a teacher 's teaching skills and the recovery of students and their parents ' attitude about public education . Jim Carey 's acting was wonderful . I 'm going to write a Journal everyday . SAKURA is cherry tree in Japanese . I stayed home all day . I 'm a university student ! ! ! ! ! ! I have a friend from Japan in NewYork who is currently working in the real estate industry . However , if the teacher 's pay is based on the achievements of his students , Teacher A will work harder , and Teacher B will stop complaining It is lunch time now . I was very surprised because Australian eggplants are much bigger than Korean ones . Only those who are bilingual [ will ] pass the bar exam . Actually , I like watching movies which are dubbed in Japanese . I sometimes feel the gap between the dubbed voice and the real voice of actors . Recently , I watched a movie with subtitles in order to learn English . 5 in terms of job hunting in America , they considered that people who emphasize their skills , achievement or qualifications are likely to be a useful resources for the company . Of course , this is a characteristic of Japanese people , and there are people who are very frank and are never diplomatic . If there 's any opposing viewpoints or advices , please tell me . ( ^ ^ ) As the Internet becomes more common , we can reach a vast quantity of information . Also , we can easily offend other people by using tools as slander . ( Some ) People are scared of being slandered , as the people do n't have common sense . Today I want to tell you about a festival , what happened yesterday in my town , Vinnitsa . In the centre of town people could see the stands where there was the name of a European country that describes this country - population , area , official language , nationalities that live in this country and gave information about the history of this country . All of these interesting actions were accompanied with nice lively music , masterful displays of dancing and of course a good mood . there are so many things I have to learn . . I went up Abura Mountain this Sunday . We arrived there about half past two . And then we started climbing the mountain . While climbing , I was out of breath because I do n't usually excise and do n't have stamina . It took me about one and a half hours to arrive at the top of the mountain . Going down is easy for me compared to going up ! We arrived at the bus stop around five . After that , we went to the restaurant to eat dinner . I usually do n't excise so climbing a mountain is new for me and I 'm excited . I like moves that make me `` think and treasure . `` Most of things that happen in our lives only make us anxious and depressed , and those negative feelings kill our minds little by little . As time goes by we become aged , experienced and learned . We might not look at things as we did when we were younger . So I need to use English at school in order to give new information ( knowledge ) to my students . I know . However , today I somehow repeatedly listened to a song but I have many difficulties in math ! ! ! I survived today ~ haha Actually I live in University domitary , so I 'm always in the school = ) Every Monday and Thursday , each class lasts for 1h 15mins , unlike the other days on which the classes are 50mins so these 2 days are more tiring . And fortunately during the second class was no lecture because the professor was absent , so I went to library and took a nap ~ hahaha Third class was again Constitutional law but this time it was about constructures of controlling a country ( state ? ) so it was more understandable than the first class . 5th class was Civil law ; I studied contract law . After formal class , I had Japanese class which I take every Monday to Friday . healthy cutlet I made chicken cutlets for lunch today . Today , I am going to tell you how to make healthy chicken cutlets ! Today 's lunch was very yummy . At about 9 : 00 , I have to perepare my afternoon job . I think it is a wonderful opportunity for me to improve my English and my teaching skills . ( PS : I am a college student and I major in English teaching ) So , I always prepare carefully before I have a class with the student . To be honest , driving a car is a big challenge for me . But I know I am making progress every day , which is the most important part . What I 'm doing now is because I want to go to abroad to study , and I want to meet some friends from others countries . I want to know anything about others countries , and at the same time , I hope I can let my friends know more about my country - - CHINA ~ I hope I will be not be sleepy . It was tempting to do some shopping . In 80 % of my time , I do what I 'm obligated to do . Unnecessary expenses mean low efficiency , and that 's what I dislike . However , I can only explain it in Japanese and Korean . One more thing , February second is the Ezaki - san 's birthday . When his son was sick , he had his son eat oyster serum as an attempt to make him feel better . ( Because his son 's disease was epidemic , and the doctor gave him up . ) Miraculously , his son escaped from death . After that , he wanted to have more children eat oyster serum / syrup . As I did n't focus during the listening part , I do n't think I will get good score . Recently , after I had got home , almost everything I did was in the chair . I know exercise keeps not only my body sharp , but also my mind . Hello , I found today this site , I decided help other people learn polish language and I need help too with english language I had studied English to enter college but my English is poor Today is a beautiful day . Rainy season The rainy season started in Tokyo this Monday . ( Sounds better ) The rainy season is very filthy , but we need it so we can get enough water this season . I will wash it until noon . My teacher is Filipino . I want to make progress in my english study ( study ) . We would like to hand our property of children 's songs down to the next generation . I think they are more attractive than Tokyo . This year I want to be able to speak English very well . Thanks for reading ! I hope you have a great day ! ! As there are two more rings on it for the index finger and middle finger . self introduction What did you do for Christmas ? By the way , yesterday , I bake and eat it with soy sauce or cheese . A good employee should have this skill and also be able to communicate well with his co - workers . I started Lang - 8 today . Sakura is beginning to bloom near my home . Anyway we enjoyed the beautifully displayed dishes and the scenery of the countryside . He might be strarved ! The A - course ( we ordered ) Grilled octopus with herbs . Caprese scallop and tomato salad . Three kinds of currie . When one reaches old age , he / she tends to be more conservative and reluctant to accept new ideas and innovations . As a conclusion , one 's retirement age should be decided according to one 's own conditions and willingness . I suggested some Japanese books for beginners like him . He was walking to the opposite direction ! His head was facing me ! The main reason for their success is having good results from lots of international competitions . So I am going to be a girl who has a boyfriend especially a bf from America . In addition to this , there were many people standing by either side of the road selling foods , drinks , ice creams and so on . I always say that I want to keep it and lose weight but I hardly achieve my goals . Do you have any good ideas to resist the food offered in front of you ? The Incursion of a Typhoon Yesterday afternoon , our teacher said to take a day off the next day . Of course my mother was really angry . ( / _ ; ) I think I have a pretty okay command of the English language , but sometimes I get confused about prepositions , grammar etc . Watch is uncountable , I was up all last night playing on my computer , talking to my friends on Skype , watching Friends , and cleaning up my room . So , I 'm very satisfied with them . Now I do n't have to carry with me so much cash . Many people say bad things about my country , but Colombia is a beautiful place to live . The people here are so kind and happy , and everybody works hard to make Colombia a better place . Currently , I feel hungry even though I have just had breakfast a few minutes ago . especially new recruits who recently graduated from college . And then , I found a favourite musician called `` Zainichi Funk `` I 'm looking forward to it ! ! ! I 'm definitely not an `` otaku `` ( anime nerd ) because I 'm fairly mature , However , I have to review and prepare for the next week . I want to talk in English more . I made `` macaroons `` . I gon na try again near future . I have to take him to and from the school . Running with my friends I used to subscribe to the Financial Times via Kindle , but after it got broken , I cancelled my subscription . In the nursery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . But I never worry my English exam hehe As you can see , it has steps which are made from glass Today ( ? ? ? ) National Foundation Day in Japan . They ( was ) training ( ? ? ? ) the waves of the sea . World Cup is an exciting festival . I recorded while I was waiting my train to work and getting on it . There 's no foods , no erectricity , no gasorine . . . Honestly I tried to make my avatar based on the picture , but I did n't know if I could make it . Now , I come here because my English is not fluent [ proficient ] . Actually , my daily life does not necessarily use English but my father lives in California so I want to grow my communication skills . Anyone please give me help and be my friend . It is for my illustration project and the other one is like a Japanese `` manga `` for business on a web gallery . Anyways , this is a first note to say hi to everyone and nice to see you . K - 1 fight show is my favourite . Hello friends . I finished Public Administrator . . I took a lot of pictures with my friends . . I do n't have anyone to give me flowers today . . I 'm a korean learning English . Zamzam : Holy Water Some Muslims even cry over Zamzam when they return to their countries . But I could n't do it because on the road I lost my way . I have heard that this way , the supplements are absorbed well . ( ? ) Because I sit a lot in front of my desk , I would go out for lunch with colleagues whenever I could . I do n't eat a lot because I am supposedly on a diet , although the diet seems never really to succeed . It seems to be a cultural difference . Bankruptcy by eathquake I met one of my friends after a long time . I was suprised because she got a new job this January . Proud to be Spanish In the last 10 years all the political parties who had had government responsibilities in the different administrations , have accumulated enormous amounts of power . In this political situation with the current horrible economic and social scene , people have said stop . Unfortunately most of the media , supported by the political machinery , have been uninformative about the little revolution . It seems that this social movement has been imitated all over the world , and that is what makes me feel good and proud to be Spanish . First , I felt uncomfortable having it because I 've never had such bright color things before . And , I was really disappointed with the climate . I regretted that I did n't realize it before . I had an awesome trip with my famliy when I was studying in Shanghai . . After that we visited Japan Pavillion . It is the largest country pavillion and is also so beautiful . We also visited some other country pavillions such as the United States , Spain , Netherlands and South Africa . Although I believe my knowledge of English is already advanced , I am lacking usage and lots of tiny specific words from every day life . If you need any help in learning German , do n't hesitate for ask me for advice . If you meet people that you have bad memories with , and you have not kept in touch for years . My favorite English words are `` lovely `` and `` brilliant `` because I like `` L `` sound . I also would like to talk to anyone overseas on skype . When I was an elementary school student , my dream was to be a professional football player . When I was a college student , I majored in Danish language and society . Besides , Danish people do n't open their mouths wide so it is really hard to tell the difference ( between vowels ) . Today is my birthday . Finallymy father arrived at the hospital and he was able to be present at my birth . Today I will look for an apartment for my friends and myself . It 's my first time living with friends . So I would really appreciate if you would correct English composition below . The manuscript is so long that I divided it into two pieces . The non - directive play therapy and eight principles which Axline V . Axline 's client children often ask her not to change the area they 've played in . I feel DIBS developed his ego through thinking and persuading himself . Later , I went to a French restaurant for dinner . I also had some rough times in my childhood . I 've found a software program that helps English learners to improve their English pronunciation . My tongue is structured differently , so the pronunciation of my mother tongue is bad , too . I need to practice my pronunciation more than others because if I do n't practice , then many people may not understand my words / me . Yesterday , My parents and I went to see the baseball game in Munhak stadium . So My parents and I went to the traditional pub to drink some traditional liquor . Although Samsung lost the game , I had happy time with my parents . I will take a TOEIC examination on January 302011 . My friend advised me to first study t English grammar I am lucky to meet you at the very beginning of the new semester I did n't forget about the white paudry sands , palm trees , good wind , beautiful light and the emerald green sea . He said : `` MoM I 'm hungry . `` My mother said , `` There is nothing to eat but some instant noodles . `` ( moved below ) The speed of the Internet here is slow and is causing me to have complete nervous breakdown . During the movie , the memory of Italy trip keep popping up in my head . The Liar Game is a TV series of Japan , which was adapted from a comic book . reasons , they join the Liar Game for the second time . It 's too ache to concentrate on anything . A Chinese ole says `` Toothache is not illness , but it will take your live . `` Now I can understand it well through it . It ` s really little shoe . However , I passed the test and I got my driver 's licence two hours later . It 's so exciting ! ! You can go to the famous Shida night market , then ask anyone for the restaurant . These include Mexican food ( burrito , fajita , quesadilla , taco ) , every kind of burger ( pita , focaccia , burger , wrap ) , different flavors of omelets , salads , some special breakfasts ( like English breakfast and mexican rancheros ) , pasta . Our most recommended is the chef meal , such as meat loaf , beef burgundy , German sausages and chops , parmesan pasta , eib eye steak and things like that . The flavor was unfamiliar to me . There is also a specialty here , on the second floor , our boss provides and welcomes anyone to put their art work on the wall display . I think that many HEROs are strong and have special power until now . Otherwise her eyes will itch , and have a stuffy nose . I want to enroll into a foreign university as a master student . I can speak conversational English , but I ca n't use English for academic purpose . So my listening skill is getting worse ! It 's my pleasure to join this website / site for learning English . I was even more shocked when I knew that Miyagi prefecture sustained more damage than us ! Although I did not think that I had time to enjoy it in this journey , I had a swim suit in my suitcase . For example , reading , speaking , writing , grammer , etc . . . . As soon as I looked at her pale face , I called my workmate to ask how to deal with our emergency . Even the chance of talking with restaurant clerks has been getting smaller recently ; they have vending machines everywhere which sell food tickets ! I started to watch this TV series on DVD last year . I think Samantha is very cool because she is strong despite her cancer . and I heard about skyphone . To use skyphone , I need a camera and microphone , ect . We like to relax in hot springs . Then I want to go to an open air bath . But I wonder if foreigners will know about an open air bath . Which is better for foreigners , an open air bath or an outdoor bath ? But the other day I read a grammar book . And I went to school directly . Yesterday , on my way home I ran into Cindy who is the wife of the marketing manager at our company . One of the big reasons why I 'm into it is this series is based on the daily life in Manhattan . It 's a good way to improve my English . I should prepare some snow equipment such as a snow shovel as soon as possible . I 'm studying `` Computer Systems `` . It 's preferable that its thick and made by chemical textiles . I was worried about leaving Japan , but there were no worries or problems in Canada ! ! Unfortunately , the website is written only in Japanese and the venue is Aomori city , The Japanese temperature gradually rose every year . There were few comfortable spring days . I like comfortable autumn days . I have to change something , but I have no idea what I regard this activity as a part of liberal - arts . But I want more opportunity to communicate with English people . Because of watching drama or film without English subtitle and comunicating with our business partners without interpreter and living foreign country someday . I edited my profile . At the beginning I did n't like Tony , he would always bully Sid and behave unfaithfully toward Michelle , I do n't understand him . At the end of the first season , Tony had an accident when taking a phone call with Machelle , he was apologizing . . . I realized there are too many lights in Japan . Also there are many 24 - hour convenience stores open here in Tokyo . I do n't think 24 - hour stores are necessary . My friend said that `` avocado tastes like tuna if you It 's wonderful ( - _ - ; ) ! ( It 's called `` Doyou ushinohi `` ) However , I 'm lacking the money to buy it . It is a little bit expensive for me . . . . Yesterday I bought a wonderful black dress which I 'm going to wear on the wedding of my cousin . I ca n't understand why , because it 's really beautiful and , moreover , I 'm not a bride , just a guest ) ) ) ) my department is finance but I 'm a beginner so I read bookkeeping at first . In China , students choose their majors before being admitted to universities . Before the college entrance examination , I read a lot about OR researched electricity and its developing trend in a newspaper . She told me she used to be a princess in China , but now she does everything by herself Today I teach the children reading and writing . I know I will use this experiment in my future work ! ! My teacher is male and is from america . [ Because public bathrooms are dirty . Really ? The first day I am now working as a public servant in Shinjuku . Everyday I 'm going to practicewriting , listening , andreading , So , I went to the location of the fire as soon as possible in my car , around five o ' clock . Study methods that work well for oneself is easily found . I speak English and I 'm also interested in Japanese and Chinese . My girls are playing a lot with their cousins . 5 minutes is 300 seconds . It has passed 50 seconds already ! ! I travelled to Thailand last month . He said , `` This is your first visit to Thailand , right ? Then you must to drink to Thai Yogurt . `` I was very surprised by the SIZE . Yet , despite the fact that I have plenty of days in my hands , I do n't have any plans to do anything except for a short day trip to my grandparents ' home in Yamagata prefecture . By the way , I 'm going to Europe on the 26th . The day before yesterday , my company announced it 's first quarter financial results . As a result , my company stock rate decreased 10 % yesterday . At the same time they lose themselves in the internet and the computer games . His performancewas very good . He performed well . I like his performance . My stomach is getting bigger and bigger . Incheon city holds a big international rock festival I felt very nervous and could n't say much about the PR expression in English . And I know they are disgusted by that . By the way , if English speakers speak Asian languages in Asian countries , Asians are interested in them . Anyway , speaking English is in great demand and speaking Asian languages is in small demand . Why I selected advertising is still a mystery for me . Maybe some people think commercials are a bad thing , because they interrupt people 's favorite TV programs . So I ca n't control it . Oh , I am sorry , my dog . 3 , Try to speak English more actively . see you again . Tempura was tasty , but I had a hard time talking with my colleague in English . I also study English by playing video games in English . I do n't have much self esteem . School was cancelled because there was a typhoon . Forecast of this week In today 's class , I was confused with the usages of adjectives . `` You kidding , hon . `` A middle - aged man said . This is my second English diary . ( Or to someone who migh look at it and correct it . English was a main subject at that time , but the importance of English is growing more and more each day . English education in elementary school started in 1997 in Korea . ( from 3rd grade ) Korean Goverment has an English education policy to be extended to 1st grade someday . I have 14 - years of experience teaching elementary school here in Korea , and like every other teacher , I am feeling the stress of English . After entering university , I started to study Chinese . I really hope that I get better at English and make a lot of friends through Lang - 8 . Well , when you were a little toddler , you probaby watched some cartoons on the telly . I will begin my work from tomorrow on . I also bring magazines into the bathroom such as fashion or photo magazines with beautiful pictures . Here is the reason . He said : `` Time is flying by , this time last year we were still playing together . `` He also asked me to visit his hometown when I was free . I want to work hard to offer better service to the guests . But I should n't really be , because I have an English presentation I have to write , and tomorrow I have a piano lesson . She is very beautiful with the clothes . If you have a chance to travel in Zhengjiang , I recommend you should takea trip trip toHangzhou . Fortunately , there are two drivers including me , otherwise it would take longer for me to drive back home . This rescue was a miracle . By the way , I 've been interested in slang because I take a slang idioms workshop on Fridays . Do you use slang in your daily life ? And I caught a cold . Or , I wear my favorite earrings or necklace ( expensive ones ! ! ) . as a beginner , I think acoustic guitar is the best choice . one , it 's delicious . Next morning , luckliy I felt so much better . I know it 's been long time no journal , but I finally came back to my home town from two weeks of vacationing in Hawaii . It was the best vacation ever , I think . My Japanese friend took me to play soccer and hung out , and my best friend took me to Byodoin temple in Hawaii . It was so beautiful and the area in which the temple is reminded me of Japan like Kyoto , you know . I have taught myself english for a long time . Our memories in Austria ( Australia ? ) are especially awesome ! ! ! I 'm confident I will pass the IELTS because you have taught me Aussie English , so I 'll study harder to speak English well thanks to you . There is n't any garden , but there is a big balcony . It 's beyond my expectation that I wrote a paper here which is responded to so quickly . It is made of soy . When it is sold to customers , it would have sugar water poured on it , But I eventually decided to go as the plan was to visit Prague and I had never been abroad before . Once we arrived in Prague , we started sight - seeing . Pity that we could n't watch more of it . I felt a bit drowsy , so on the way back home I fell asleep and slept like a baby . I do n't know why I fall asleep immdiately and for a very long time recently . If you have a facebook account , please connect with me ! It is so loud and noisy to me . However , I encountered a difficulty in my English writing . Due to above these reasons , I decided to try to improve my English writing , by writing diaries every day . My favorite game is `` Monster Hunter `` . And , I enjoyed chatting with my friends in my college . I was suprised ! ! Of course , there are a few positive aspects about telly . I have nothing against educational programmes which have a positive effect on our development and I sometimes watch them with my little sister . I heard it for a long time . One is the way you learn in school , by reading books , the correct way , but not used daily . He was a very nice person before , but he has changed . - He could not make himself heard in a crowded street . I think that I still have good pronunciation and more delicate way of expression in Chinese . some habits seriously illegal : violence in the family , drug abuse . . . etc . I was very surprised that there were so many people to see the ceremony in Washington . For example , International Mime Festival , Puppet Festival , International Yesterday I flew to Hokkaido for a business trip and came back home today . I felt flight attendants are very tactful . ? ? However , I 'm not afraid of aftershocks , Instead I am scared of the earthquake alarms . As we sadly partake in the last moments of pleasure from our summer vacations I 'm unhappily reminded of the dreadful schoolwork that lies ahead . However , I think I should n't sleep now because I have only written one diary entry in 5 months . Beer , MACHA ( bitter green tea ) and soy sauce were real Japanese ! ! If I keep smiling , happiness will surely happen to me ! ! What are the supporters like ? How is the pitch ? How is stadium looking ? When the check was received by my boss , It was corrected a lot . If there are any problems with my pronunciation in this song , As such , I feel so stressed out after school . After studying about 30 minutes I start to feel sleepy . so effectively ! So if you find anything wrong with my sentences , please correct it or point it out . Today , I watched an Icecream car ( ice cream van ) near the my house . ( Totonto Lake shore west ) You can make a Paper lounge to be longest as a 16 - seater lounge or shortest as a 1 - seater sofa . I received an e - mail from her that told me about shis scheal . The teacher was going to camp with his girlfriend so I felt jealous . I took an evening class by myself . I played with a child and I used eat lunch at a place where there are children . Shipping method He checked the attendance sheet and realized I made a mistake ! Audrey was very cute & charming Today , I have 3 classes which are sports business , academic writing and a seminar about world heritage sites . I talked a lot with my new friend who is half Japanese and half French . Today , I went Downtown with my friend and I took many pictures . I enjoyed myself but , I experienced some strange things . By the way , I also went Chinatown and it was awful because many people are thin , smoke and have tattoos . However , I wonder why a poor place was made near the center of Downtown and why the poor people are still poor ? We should donate more money and support them , bacause they have the right to live safely and peacefully . I did n't know much about it , so I asked the staff which is recommended for a beginner . By the way , I work for the company in Tokyo and our headquarters is in the United states . A Campaign Speech I 'm jiaru , I 'm from class 4 . I believe I can do it well if I am elected . I was fully satisfied with the swamp and marsh of oze . this was my favourite part of the day ! She is from Austria and her husband is from China . I was surprised she knew Chinese characters . Today , I rented some CDs The house had a large garden and a garage while our apartment does n't . My husband did n't want to because changing the tires by himself was n't easy . Around 5 o ' clock his mother came back home from work . She had picked up some vegetables - a Chinese cabbage , spinaches , and long green onions at a small farm and gave them to us . The pot had a partition to enjoy two different types of soup . We were able to eat any meat for about one thousand yen at the restaurant so we ate a lot of vegetables , beef , pork , and chicken . I 'm going to cancel my purchase of this item , but I want to buy that new cleanser . I 'm trying to buy this cleanser and if I can get your items I will re - order them ! I picked up my son at the station yesterday because he came home for the first time in a month . While I was watching Australian TV , I felt like a child . Weather is r , she took me to the store , and I purchased an electric heater . a lot of delicious food . ^ ^ But I am sleepy now . . . because I did n't know how to use it well : ( but I think this is not good thing . recently I 'm hunting for a job . in Japan , university students must get their job soon after graduation , and keep working all of their life : ( I think this is a bad system . if I ca n't get a job , I would go to photographer school and become a photographer : P Grammatically is it a conjunction ? My foreign friend told me about how to prevent the cold . But my study habit is if I do n't know the words means I always use . dictionary . What is the most important is to burn paper money , we think our ancestor will receive it and can use it in heaven . That will be thought as very pitiful . For example : `` So to speak `` , `` on account of `` , `` because `` , `` thus `` . . . expressions like that . How can you get friends in this SMS ? + Short Message Service + Of course , I have a Mixi account , the largest SMS in Japan . So , I decided to study English harder this year . and thank you so much for leaving your nice comments and corrections for my previous entry ! ! I was very happy to make some friends and I want to make more now . I had to write it until the 22ndof last Desember , so I am filled with a feeling of freedom , ^ ^ but I will have to do more one thing to do for my graduation , which is an oral assessment . Which is maybe about 15 minutes . Harry Potter and the Deathly Hallows Today , I went shopping with my daughter . I want to visit Tokyo of course : Harajuku , Shibuya , Roppongi etc . Last week , my friend went to NY to study English . I bought lessons on etutor . Preparing for traveling I want to enjoy traveling there . I have to ( must ) remember to do it on thiswednesday . I just read a sentence in a dictionary . So local hospitals are inviting medical students to their hospitals and asking medical students to come to their hospitals and look around inside . For hospitals , they can use them as labor force , accept money from government and get compensation by being selecting . So I went there and looked around with my friend . I will leave after watching the Japan team WBC game . I have a plan to look around there from 24 to 27 . Afterwards , I might go to Okayama ( prefecture ) to look around on the 29th . Well , I feel like punching someone ` s face right nowlol I have been frustrated all day coz of someone I dislike , in fact I hate them . If my wish could come true , I would wish to let someone kill them and vanish in front of me . . . lol now probably u can see how frustrated I am ? however , I forgot to save them before shutting the excel . . . . I totally felt depression and dizzylol therefore , I was fucking something stupid around till I calm down my frustaration . so I wana ask u about ur solution when u get frustration or something bad happens to you . How can u get that out of ur mind ? Many people have given me messages although I 've just started taking part in this SNS . Because of the typhoon , the train that I usually use for going to my company is cancelled now . Although it 's bad news , I still had a memorabal Sunday . I 've now written eleven entries on Lang - 8 . He asked me , `` what are you going to do tonight ? `` So at first I introduced myself , but then I could n't remember their name at all once ! ! First , I could come back home earlier than usual from the restaurant that I work at because of heavy snow . Yippie ! ! I always get up at 4 o ' clock every morning . Only one student in my class finally came to school . But almost all Japanese are not good at English , including me . We can ' t play soccer like Lionel Messi , who is a super soccer player , only by watching his games and studying the rules of soccer . So , I think I have to try more ( or harder ) although it is often a bit hard ( or difficult ) . I am looking forward to meet you and your family . I 'm / am really surprised because I think she will forget later what I teach but she wo n't ( will not ) . I ca n't imagine how much work I have to do tomorrow because I could n't finished it on Saturday . I do n't like rainy days . I hope it will be sunny on tuesday of next week because the sports festival will be held . on Tuesday . I went to London , Paris , Frankfurt and Leipzig . they were very beautiful . they often slept in the day and catch mice at night . we buy fishes for them and often played with them . so we like them very much . at last , the other cat was stolen by other people . mom said that the strangers might haveeaten it . Totally I spent 300 $ and became a beggar . I am a vet . The following day after the show , my friend who came to the two - day festival mailed me , a company which sponsors artists invited her to see Buckcherry , one of the bands in that festival , at their own show in Hiroshima . That fact makes me hesitate when I am going to meet someone . For whomever is reading this , if & nbsp ; I have mistake in grammar , PLEASE check and correct it . There were lines of people at the place pretty far from the city . That is more serious for people live in Tokyo . He always puts his face near my face and his whiskers touch my cheek . I tickle his whiskers ! I studied English , then prepared to go out . We went into a restaurant and ordered our meal . My university started classes on the 27th . I ca n't decide which classes I want to take . This museum and this tour taught me that communist countries existed . I do n't know how to express my appreciation Wish things will get better tomorrow after some negotiation ! Please ! If you do n't know sumo , check it out . Yesterday , I had an interview with an associate consultant company . What should I do to be more energetic ? My heart sank from the bad result in the postgraduate entrance exam but I must force a smile and carry on with more courage . One class is Principles of Language Learning and Teaching , and the other is English Literature . In the lesson , we read Macbeth , a / the famous play written by Shakespeare . At the time of the first lesson , I thought I would n't be able to keep up with the class . I do n't have a good head for business . T . , who is a professional Japanese illustrator . I was very busy with her own job , so I needed to translate it for her to reduce her burden . She saw it and read the translated message , and then she replied to Miss K that she would be able to draw some illustrations in black and white , but she would not be able to make them in full Manga style . It is too much work for her , but if Miss K accepts her suggestion , she will draw it on a voluntary basis . she thought that it would be a good opportunity for her to make children 's book and co - operate with British people . I have another story and I have n't made any illustrations for it yet . `` I and myself do not have a good head for business Because , if I watch it , I ca n't sleep . We were satisfied with our shopping very much because their fabric is always high quality . She was fastened to the bed , her face was sweaty and her eyes wide open , because she was afraid . I have n't written diaries for a long time . . . Please correct my diaries ! I am just used to words and saying really small things . I think , I do n't need to translate Korean into English but to think in English directly . I try to sell them on Japanese auction sites . I keep buying them and it is like my side business . Now I 'm really disappointed that my American friend left me . She came here on the same day which I came back . So I took her , went around our school and some famous place of Beijing in these 3 days . She refused to eat any Chinese food . But it did n't work , because she found some friends who came from the U . Our life style , I mean , Asians have already westernized so much . After the Olympic games , the life of Beijing completely changed . We have cars , PCs , hamburgers , everything same as U . I swept and polished the floor of the kitchen . But they will only show it on WOWOW which is pay TV . I was excited when I checked the morning paper , because my friend was in it . even more than last year . Very interesting but CRT moniters were still being used . Somebody said the Cloud is the third industrial revolution . When the Imam said , `` Allah is the greatest , `` all my family started to eat the breakfast with pieces of dates . Then I said , `` Mum , Dad , my brothers and sisters , this is an Indian rice and I made it for you . = ) `` My hobbies are playing video games , surfing the internet , listening Although it might have bothered others , I ca n't help but to buy and set off fireworks . I came across this website in a magazine called AERA ENGLISH ( a Japanese publication ) recently and thought ' wow , this is such a good match for what I want to do now with my English ! ! ' . I enjoyed doing netsurfing . I steeled myself to start running Have you ever tried Bouldering ? I tried Boudering last week . I took looking for a Bouldering lightly . Anyway , today 's topic is the death penalty , which is very controversial around the world . They are seminar , writing , special topics ( I can choose a class ) and presentation . Although one has a strong desire to be successful or dreaming to be a famous person , without knowledge of manage time , he ca n't achieve his goals . So I should be more careful in managing my limited time which can lead me to success . It is proud that I can make full use of my leisure time skillfully . I do n't like rain , because it 's not possible to take a walk . I wish the rainy season did n't exist . I 'm interested in demi pair ( ? ? ) and in an internship program in Australia or New Zealand , so she explained those in detail . Here , I just stay at home . So I could get one digital audio book instead of paying a monthly fee . I should have bought a much more expensive book . However , he was told that everyone had to leave the building , so he let us leave . I just recognized , If I want good English I have to have more friends to contact . I want to have lots of foreign friends . I love British stuff and want to stay in the countryside of England someday . If any British people see my diary , please give me advice . I would say Sushi can be divided into 4 parts . The second bottom layer is called the `` popular class `` . The second highest layer is called the `` advanced class `` . When I was studying German there , a man came over and talked to me . So he left my house with `` Siddhartha `` in his hands . Then I watched the Chelsea vs Inter game on TV . I did n't like Inter , so I wanted Chelsea to win . Kaera Kimura married yesterday . For example , last summer there was a so called ' sandy town ' in the middle of our square where our citizens could see world - famous sights such as Eiffel Tower , Egyptian Pyramids , Colosseum , Parthenon etc . I thought I would live like this forever but lately my thought has changed . I speak some English and try to learn Italian , but I 'm only a beginniner . I enjoyed watching her dynamic performance on Youtube . That is , the Star Spangled Banner by Jennifer Hudson at the Democratic Party National Convention . I felt tired and lethargic . Flowers are blooming now , and I 'm in good spirits = ) I hope to have a rest in the forest this weekend , and my friends have just told me the weather will be good . I hope they are right . . . = ) ) ) ) Therefore my friends on Lang - 8 are increasing everyday . ' Chideji ' means Chijou degital . Today is a traditional festival in China : the Mid - autumn Festival , family members will try their best to get together and enjoy the happy and warm atmosphere , a very good and important day for every Chinese . I am living in the same way everyday , doing all of the same things , studying all different papers . Everyday I compete with my limitations . I always feel like I do n't have the ability to comfront society and work . A beautiful future is waiting for you ! ! He quickly hid behind the buildings . And , I checked the history of Slovenia on the internet and found out that numerous people were killed by false charge during and after World War . In Japan , almost all games are shown at midnight , so I have a lack of sleep . I hopefully think I could finish by tomorrow night . He even forced us to apologize ! Cherry Blossoms Another friend is taking maternity leave . She is looking for an interesting job , and applying to many companies . I decided to try write the diary in english from today . I watched a movie tonight , actually it was not as good as I had expected . I made tuna and potherb mustard with tomato sauce . I hope some foreign friends can give me some advice on how to study English ! Thank you ! And I 'm at the Starbucks coffee near the beauty salon . These days , I really want to make friends with people from other countries . By meeting them and communicating with them , I want to learn their cultures , languages , and unique perspectives . Shigyo - shiki is an opening ceremony for the beginning of the school year or semester in Japan . It is usually held in the first week of April . Typically , students are gathered in the school gym or the playground , then the ceremony begins with a speech from their principal . A girl who spoke to me said , I might have some difficulties fulfilling this target ; too much work , not enough vocabulary , and so on . It 's been a long time since I 've written a diary . I 'm not good at Korean , but we could use English and Japanese in Seoul a little . I felt that Seoul has great population , and that the economy is prosperous / prospering . Actually Younger brother came back home before 5 days already but he returned to his home ground the day before yesterday because his vacation 's over . I was so surprised and embarrassed . I usually eati , t fresh fruit juice first . . . . So It is lnteresting . I went to a hospital , and all four doctors who saw my throat said My favorite TV show will be on tonight . And I have been working as a designer for accessories , bags , shoes , necklaces and so on in Kobe for 4 years . Oops , I 've ran from my main point . Anyway , I want to learn English , and make friends from foreign country . So please send me a / the letter and correct my diary . because I was very tired . I 'm especially very sorry that we could n't go to Tiananmen Square . I want to learn English , so I started Lang - 8 yesterday . The Thai government gives money to students to study for free for fifteen years . My nephews got money to buy stationery and student uniforms . After buying anything the guardian is supposed to return the receipt to the school to confirm that the money is being used for the student and not for other things . We have never had an offer from the government like this before . Usually parents pay for their children to study . I do n't know the amount that each grade receives but my nephew received around 560 baht for this term . I know abroad you study for free until university ? That is a really good government who supports you . Because it can introduce something fresh to our life , like changing your shirt colour for instance . In the past , I ostracized gays all along , because I thought that was unnatural and abnormal , but now I have changed my mind . I do n't know the exact reason - - maybe because I am more mature , or something else . I believe that true love can exist between two men or two women . the Highwest fashion , which actors wear often , is popular in Korea . All things considered , no carefree future exists for those of us who live in megalopolises unless we are prepared to put some effort into working together and involving government in the problem right now . I have many clothes because I like fashion . I took too many clothes to the flea market to be sold , but customers bought For example , nail polish , sunglasses , a watch . . . But today was n't a consultation day . Today I am very happy , because I have just made my first friend on Lang - 8 ! I 'm going to give a Farewell party tomorrow . I chose a Dopamine keychain ! Summer is finishing , and soon autumn will come . . . I dont wanna do , I have do it because I need a lot money if I want to travel . Every day I think about how it would be to live in london or new york ? ? ? this trip is to forget about everything that happens at my work . . After performing , she did an interview and started crying . Today I feel happy because my flat mate went back to his country ( Yeah ! ! ) For example , He alwasys smoked in the living room even though I told him that I 'm a nonsmoker and I 'd like him to smoke outside . Oh goodness ! It is such a comfortable place , and so beautiful ! So I 'm unlucky . We have a lot of onomatopoeia in Japanese . One food texture word , crispy is used for potato chips . I 'm too busy or I 'm too lazy Sometimes I cut these boring classes then went to the library because I just wanted to read some books , which I think is much more & nbsp ; interesting than my teacher 's lectures . It had survived some falls and I accidentally sat on it once . ^ ^ ' ' I 'm so sloppy when it comes to handling my stuff . ^ ^ ' ' So our teacher divided us into many teams so we could talk to the foreign friends in a small group . Tomorrow I 'm going to take my children to a soccer lesson . From todays news . In Japan , many people measure radiation recently . When it comes to crimes , I think mass media plays an important role in informing citizens of what 's going on at a nationwide level . Right now I am practicing it , but it 's so hard to pronounce well . Would you advise me on how to improve my English ability ? However , they were surprised . Koyasan is very famous for a type of Buddhism , called SHINGONSYU . I invited my foreign friends to my town . My dream is run a youth hostel in my town and I hope that many foreign people visit my home town . because I think she 's a nice girl and a good match for me . It includes many incorrect sentences that I am writing . This month the examinations are over , so right now I 'm happy . I 'm going to celebrate with my classmates , but it 's raining with a possibility of snow in the east city , near the Andes mountains . As you can see , I have a very hard time using English . & nbsp ; This following dialogue is from the sitcom Friends that I 'm watching . I just got the test result this Friday . I was waiting for my result on the web site with my mom and when the word `` Pass `` appeared on the screen I almost shouted with excitement . But I 'm trying to focus on my study and work . My hometown is much noisier than Calgary . My hometown is busier than Calgary . Maybe my hometown is the noisiest in the world . My hometown has more a bigger population than Cagary . My hometown is noisier than Calgary . My hometown is brighter than Calgary at night . My hometown has more traffic jams than Calgary . My hometown has more public transport than Calgary . My hometown has the best public transport in the world . My hometown is younger than Calgary . My hometown has more moutains than Calgary . I strongly suggest not going to the English school after the dentist . . . I was concerned about such an extremely low temperature and yet I still let them do a lot of preparation excercises . And when she wore glasses for far - sightedness , she could n't see things at a distance ! How to define the distance between far and near ? It was a challange if my mom wanted to watch TV and write somthing down at the same time . People always say : ' The eyes are the window to the soul ' . In 2007 , I went to America for 2 weeks by myself . I was surprised at the sashimi of colorful tropical fish and giant clam in their beautiful shells . By 2012 , I 'll have finished school . I have n't gone anywhere because of increadibly hot weather . That is why I will write this dairy in both languages ! Actually I planned a lot of activities during this holiday , but I could not do them at all ! ! But during World War II , the castle was burnt down on May 14 , 1945 . I try to keep writing in my diary for 3 days starting from today . Hi , this is An , and it 's my first time writing in English and Spanish . It 's sxxk ( ? ) to show my poor English and Spanish in a public space , but it is very very important now . I have to study and face it , so get on An , everything will be good , haha . . . Now I must fight with my laziness and try to write more , because really I ( I really ) want to become fluent in English . Although I spent my birthday in a foreign country , My Korean friends congratulated me on the Internet . I was touched and it was absolutely brilliant . Maybe I do n't need a boyfriend , I hate marriages . My father and my mother do n't like each other , they affect my opinion about marriage . and after 6 pm people went around the street carrying a torch on their shoulder . I hope my face does n't become swollen . I will change them to a mixed ceramic and plastic cap later . So Access is a DataBase software . I think each company has an exclusive database software . If there is a reason to use it , the exclusive software will be expensive . Looking forward to your reply . The gym is not crowded and has enough machines for many kinds of exercises . I was almost cried some times and I was moved so much although today was my second time to see it . After the show I went to back of the theater and I could meet some cast . I could get an autograph from MARK , Benny and Mimi ! ! When I said to MARK `` I 'm your big fan ! `` he only nodded me saying nothing . . . . I could have his autograph on DVD ! ! My sister is in high school and my brother is in middle school . Although I was cold , I said : `` No problem ! `` he finished writing a letter to his friend , it was 1 a . m . We decided to watch another movie called `` Source code `` . It was entertaining , but there were too many mistakes about the informations technology . Next time we will book in advance on the internet . My favorite Podcastnamed Morning Ireland released a podcast so I will keep it on my iPod . I tried many ways to relax : listen classical music ; talk with friends ; a cup of hot milk . . . . . . . I usually wake up around 6 : 00am . My friend in NZ introduced me to these funny comedians ! I do n't have any foreign friends near here , and I do n't have enough money to go to English school . It is designed to keep the right temperature by the roof made of warm felt and the wrapping cloth easily flips partly open . This technology which can provide electricity anywhere is very good for their lifestyle moving through the vast steppe . I know it 's a little arrogant to contribute consecutive entries and beg such a favor . My company recently expressed that they want employees to study English , to be successful First , our president sends an English message to every employee Some of my colleagues have already worked overseas in China , India , America . . . Yesterday and today I 've been to Toyohashi , Aichi prefecture to attendattending anin - house conference , called Research Policy Retreat . I stepped on a cockroach accidentally ! ! ! ! ! Moreover , according to a book , more and more companies tend to value their abilities or personalities over their careers . Therefore , salaries should be paid for the results of daily work such as thier perfomance and the benefit they have brought to their workplaces . One thing that I think really interesting is that each person has a different perception about the temperature by each hometown . By the way , this year 's summer is crazy ! ! A few days ago , the highest temperature in my room was 36 . 5 degrees ! Instantly , I doubted my thermometer . I always thought this sport would be too tiring for me . But , while playing basketball I was so excited , after all . Now , I 'll keep playng ! Nice to meet you . It would be a fantastic school . . . . Not outside , no stories to talk about with my friends . Hello , my wonderful friends . When I do n't go outside my house , By the way , I am feeling muscular pain in two days after I got exercise . Friday is called ' HANAKIN ' in Japanese . So residents are required to help each other and participate in committees . There are many committees like the Representative Committee , Bath Committee and Welfare Committee . Unfortunately , some members of the Network comittee graduated in the last month . But we , Japanese , use Chinese letters that have their own pronunciation and meanings when we write and read Japanese . This is my first time to write a diary online in English . The sunlight shining in through my window acts as my alarm clock . However , I received an r E - mail from her saying , `` It was so fun to hear your broken funny English . `` I was very interested in that particular kind of memo , and so I researched it on the Internet . Please tell me the differences I like to talk about space , biomechanics , artificial intelligence , motorcycles ( Yamaha Vmax owner ) and something fun . I believe there is a very good company somewhere in Japan . I have n't eaten any sushi for a long time because there is n't any fresh fish in Frankfurt . I 've got two weeks left here in the UK which is kind of what I do n't want , however part of me is also wantingto go back to Japan . They are pretty cute and quiet . I always have eaten meat ( likesteak orhamburgers ) when I go abroad . Still do n't forget the academic paper ! Spain is a quite cosy country and the people there are kind and lovely . I was there for 2 weeks , met a lot of new people and made friends with them . I was tired , because I took over the job . I have to get up early tomorrow morning . I think he has deeply understands Japan and its culture . The practice time for playing the violin has to be maintained for a successful audition . Therefore , September is the last opportunity during which I will have time to study English . I know talking with foreigners is an important thing to do topractice Eng . He refused to take responsibility and exchange my computer saying , Despite everything that was happening , I am sure that I am still a lucky guy who was able to When we are together , we often have lots to talk about , and if we do n't , we just keep silent . As you know , Fukushima 's nuclear plant has been having trouble since March 11 , the day of earthquake . I wanted to have more conversations with him , but I could only trade FB id 's . I can understand writen English better than spoken . So make sure take your own precautions , such as washing hands , wearing a mask , not talking to people , and staying at home all day . hahaha I recommend it anyone who is studying second languages . I really appreciate your help . It 's open every Saturday . Foreigners speaking in Kansai - ben as a challenging topic please help me ! ! ! it 's urgent ! ! ( Punishment fits the crime ) I regretted it so much . I could write essey easily , so I 'll try to do my best ! Please correct my wrong sentence . we won an agricultural product this year ! I have never got gifts except at that festival . It was sunny and muggy this morning . It was only after a second that it started to rain heavily ! It is rather wise to follow what my mother says . But I still feel my English is not good enough . We talked about our research and how to be popular with girls . She said she was pregnant , but had a miscarriage . I assume it is because there are some reasons . I ordered an iced coffee , and sat in a comfortable sofa . I 'm interested in this subject . It 's also a good experience which can arouse my interest in language and at the same time help other people . I am willing to correct those articles in Traditional Chinese but Simplified Chinese seems to prevail . Although grammar and usages are the same , I am wondering if my corrections were well understood . ( grammar was misspelt ) Today I want to tell you , about my holidays . My holiday is so boring . Our forest is green and it grows diferent trees and flowers . Perhaps it 's because she is my baby , not someone else 's . Untill this time , from junior high school to now , I have had practice everyday at the club . Because , I want to speak English while on Business . I organize loudrock community website in Japan . I would be glad to organise a loudrock community together . A more beautiful Lang - 8 It has been a long time since the last time wrote entry on Lang - 8 . Please help me correct it . I 'm not familiar in programming . And there were lots of customers ! : D hehe Every customer seem to love our shop ! : ) What 's the difference between `` go mad `` & `` get mad `` ? Anyway , I had taken TOEFL several times to get 550 point to enrollinto college . It was huge boom to grow up in the Japanese economy andbecause of that , my parents believed I would apply for major companies such as panasonic , nintendo , and so on . I do not know how the Americans really feel , but as far as can tell from newspapers and TV programs , they are tired of being at war , and of suffering in a financial crunch and so on . As he mentioned in his inauguration speech , greatness is never a given . We do n't much go out to eat much , but sometimes it 's fun to go to restaurants that we have never been to before . I was not ready about today 's topic which is `` habits `` and `` fun story `` . I ca n't speak and explain what I 'm trying to say to other members in English . I always wait and listen to other member 's topic . One member enrolled about a week ago said that although there is many members but it 's too quiet . I decided even though I have mistake with my explanation and grammer . Yesterday I went to listen to a design speech with my classmate . But I felt satified after listening that speech . Sometimes , listening to a positive talking or happy perform may give us power to live in this complex generation . About 3 months ago , she told ( disclose is very formal ) me that she had some feelings for the guy , so I gave her some advice to test if the guy had any feelings for her . In addition , I do n't know why , but some Australians can speak Japanese . I still remember that . He said it was so complicated to explain . Seems I was ready to disbelive everybody and everything that might happen on this day . The animal symbols are representative of twelve specific years . We also call those twelve years `` one period `` . And if you were born in a year when the animal symbol was the rabbit , you are called a `` rabbit person `` . I am a chicken person . Diary start The first day I went to school I was very excited because everybody was very kind . My first friend is Iand J because I play math board games Then I do science but I do n't understand English so can someone cafeteria . His father is a Japanese Judo player . To be honest , I would like to buy CDs of my favorite bands but because I 'm broke now , I waited for the rental . Ever since I listened to their music , I have been fascinated with them . Though I bring my home to my PC for work , his e - mail was transferred to my mobile phone . healthy . I made up my mind to study English intensively until I become fluent . stupid . : ( I understand what he wrote , but I do n't find I am also interested in why they conquered South America . I am going to read the history of Latin America . Recently I finished a big exam and realized how important English is . Also , I want to be qualified for being an exchange student next year . My unforgettable winter vacation Although the vacation is over , the nice memories are still in my head . I feel so proud for the development . I upload some photos and share with my dear friends . If you want to know more about , please write to me . The original story comes from Heidis Lehr - und Wanderjahre . She graduated and has been a civil servant in another city , since then our love has been harder and harder to keep . As I guessed , she had read the SMSes saved in my cellphone and found out I was dating other girls and that I was contacting my ex - girlfriends and it had hurt her deeply . Below is more detailed information from Wikipedia I watched Oprah 's 2008 Stanford commencement address on that website . Fortunately , I got to know the lady who works at City Hall and helps Japanese who want to study at the base . She is soooo cooperative and helpful . Actually it costs a lot of money to pay the tuition and fees . But I also thought it might be a great chance to study in REAL AMERICA without leaving Japan . Everything hides in the deep forest I 've been envying those who are able to model as 3D models with beautiful curves . I believe that is a necessary skill for an industrial designer . I have n't log in to Lang - 8 for more than 3 months , because I spent more time on dancing in my spare time . I 'm really grateful to you People want their life to be special and want to live differently than others . More and more people seem unsatisfied and think `` my life should not be like this . `` Though , they usually do n't act to protest society 's flaws and do not improve their own situations . Team work is the most important thing in Japan and team performance is highly esteemed . If somebody was inferior to others or incompetent , I was blamed by the boss . I do n't write his advice here because I think everybody has a different situation . But they spent too much time in preparing and , when they wanted to sing a song after the introduction , the music teacher asked them to stop . My doctor said Japan and South korea have the highest asthma mortality rate . The karaoke industry should introduce official music videos into the karaoke machine . I 've just watched Fulham vs Newcastle play a live match at Fulham 's home stadium . Then I will decide my favourite team and register as a member . Also , I do n't know as much about English writing or English listening skills as other people do . Enjoy the nice summer weather ~ ~ Today I met the models the agency sent to our class , but I decided to not choose any of them . I know the fashion industry demands this extreme thinness , but I do n't think its beautiful . Mount Fuji is the highest mountain in Japan . I do n't know how to explain it ( or `` explain my feelings `` ) to my girlfriend . She said that people who only contact each other via messages and calls are silly . How to remember / memorize more words and use them rightly There is a woman with her hands all over her on this sleeve . I 'm going to visit Ecuador next week . Also , I 'm a little nervous about A ( H1N1 ) virus , because I have to take an airplane , which means they also use the airport which is one of the routes of infection annouced by most publc news media . Like human beings conqeured the Black plague in the past . You can see beautiful views in the picture . If there is interaction between characters , the system should consider all characters . So beautiful and cute . I and my husband and my son have heavy hay fever . These days I 've been thinking about dreams and visions of university students just like me . Living in this society , we face lots of problems and feel distressed when we have no success or any kind of accomplishment . We are too busy to remember that pure and noble reason why we are studying here and now . I sympathize with those young people who are melancholic and depressed in this society . or I am just a slave of this competitive society ? `` Whatever the situation is , I really want to find my true value and live authentically as myself ! Now , the Japanese government regulates imported rice by imposing high tariffs . I agree that the government should protect rice farmers from cheap imported rice because Japonica rice is definitely better than imported rice . Recently I have been feeling something strange . When I woke up and looked at the clock , I was surprised . Its script is very good and the designs of the * other * planets , aliens and vehicles are wonderful . But when I want to pick it up , I find it really difficult to balance these two languages - - - Japanese and English well . Sometimes I even ask myself whether I have the ability to acquire these two languages at the same time . It is so fun and I think it 's easy . And pronunciations are easy for Japanese , grammar is similar to English . For this porpose , I should study hard and work hard for travel expenses ! ! I lost the name of the person who sent me a friend request . If you see my diary , please send me a friend request again ! But I do n't think the following ones are correct , though the similar forms ( e ) and ( f ) are natural sounding . Although I did not believe in his existence until watching this , Superman exists in the world ! Thanks to him , I get to believe that there are a lot of things which are beyond our imagination in the world . I always think that relationships with people are difficult . I 'm going to the library this afternoon . Of course , not only books are there but it 's also a comfortable place to me . HattoriKid is one of my Lang - 8 friends . About the animation : Fullmetal Alchemist I watched a very popular animation program in Japan called `` Fullmetal Alchemist `` with my children . It includes the human 's karma ( desire to reunion with lost mother ) , the Seven Sins and the war generated from the worship etc . Especially , I ca n't get one woeful image out of my mind : it 's the image of the chimera animal made from a innocent girl and her big pet dog . I do n't think this is specific thing because this is just literally talking , not some sort of speech or presentation . That 's why I sometime hesitate to talk in a class , trying not to making mistakes and be humiliated , which I think is just lazy as well . I think this is a hilarious show where a bunch of guys and girls hang out together and have a life filled with comedy and other ridiculous things . As a man , he should compromise a bit . but he is so bad tempered and irritable that I ca n't bear it . Thank you very much . A large portion of new games are released on PSP or Nintendo DS . I remembered that I need to go to the supermarket to shop with friends . We will eat steamboat tonight at home and will play cards and mahjong . He is a very famous korean actor . He is good performer , especially to expresss setive emotion . the play is so famous in Korea . My friends are not interested in plays T ^ T I did n't know what trust is . I guarantee that nobody will find these bodies unless the landform is changed extensively by something . Finally , I established my objective to major in history . I will be going to canada to study for one year in august . I do n't know why I had to see such dreams , but when I was dreaming , I had many things to do , more importantly a deadline was threatened . I was exhausted because I moved the office 's things all day long . That 's a refreshing feeling for me though . I just finished taking shower . I met such lovely friends from all over the world who I would n't have met if I had n't come here . I was really really grateful that I met them . . He has to find another job in this desperate moment . My wife took child - care leave , but she went back to her job in February , so we have had less time to take care of the children than before . Now I have complete some of my tasks , I wish I could write in my journal and proof read my Lang8 friend 's journal like before . There are many shopping centers . Everything was very delicious . On the last day , my friends celebrated my birthday . They held a birthday party for me . We drank Makgeolli and ate cake ! ! Every scene is actually real ! ! Thisfilm has many ironic and humourous messagesdealing with celebrities , eco business , and homosexuality . It is very direct , so people under 15 years old can not watch this movie in Japan . He can speak Deutsch fruently , andwhen he spoke English in the movie he had a german accent . Oh , I 've quite forgotten to write `` every little helps `` in my first journal ! Nice to meet you all & yorosiku onegaisimasu ! ! Anyway , This Saturday is my school festival . I 'm a leader of the Inhwa herald , our English newspaper club . I 've been studying English for several years , but there are really few opportunities for me , like most Japanese people , to write in English and use English in conversation . I really need to brush up on my English , and it would be a great help if you correct my English . Although I had a bad score in Economics , I still got a second chance in my cram school exam . When I was in Tokyo , my sons went to school and to their football clubs by themselves . Every time I listen to my voice , I feel very embarrassed by my English , my way of talking , and my voice itself . His physical condition has recovered . First , I have to do exercise everyday . Apparently I threw it away when I was sleeping . It was uncomfortable because I had a stuffy nose . I expect CNN is very difficult , extremely hard , smashing me . 2 . ( which is a better sentence ? ? ) Is there any grammer mistakes in the following dialogue But I am not sure what my attitude made them angry . I explained to the people who came for the first time as an experienced worker . When they were talking in English , their talking speed was so fast that I could hardly understand e what they were talking about . I 've not decided yet . I do n't understand why my alarm did n't work . I have no idea about it ! Hong Kong ( ese ) people speak Cantonese too . This spring , Japan is very hot in comparison with last year . My wife and I really are big fans of it and my wife named our dog `` Hal `` after the super computer in this movie . That was why the students had complained to me about the contents and direction of my class . amazing ! Christmas day , I went to watch illuminations in Roppongi and omotesando with my friends . I think Melbourne 's enviorment is very suitable for living . Cosmetic surgery If the cosmetic surgery is able to remove the complex of appearance , they will be able to regain their confidence I think cosmetic surgery is good . Maybe it 's their culture , so if you want going to Hong Kong you had better do n't mind it . In Hong Kong , my strongest impression is the shopping malls , outlets and night places , especially the night places , so beautiful and so good , it 's the most beautiful night place I have seen . The KTX ( Korea Train Express ) ran very fast at super high speed , approximately 300 km / hr . Thanks to everyone who corrected my poor english / The First time I saw the movie was when I was a high school student . I like cooking various soya - bean milk ; sometimes I put some red dates into it , and sometimes I mix it with a little black rice , still oat , ormosia , black sesame . . . I have to say my mother is an ace food buyer . Moreover , undergrad students come too ! Be careful with Ninjya , though you ca n't lol ( another typographical error ) All restaurants in the huge waterfront area were reserved for us . I have two more choices which are to use the bus or to use the train , but the buses run infrequently near my house and it takes time to walk from my place to the nearest station . There are a lot of buildings which I think are European ( ? ) Mom is so talkative that she is always talking to me . In Japan , we have a holiday for three days straight this weekend ! However , highway traffic will be very heavy and most highway tolls will be the maximum of 1000 yen because of the holiday ! So I will stay home this weekend . And his daughter is puzzling . . . I should wait until my professor explains the meaning of this novel . I have been studying English for 3 years in Japan but I have only been to Hawaii . Personally , l do n't like living in New Zealand . When you look up a word in this dictionary , it always gives you a clear definition of the word in a user - friendly layout . I used to use a Japanese - English one ( and admittedly still use it from time to time ) , but now I usually use the English - English one . This is because I find that it is a more efficient and interesting way of learning a language to read the definition of each word in its original language . Beside this , the more harder part in the English language is the pronuncation ( talk ) , the combinations of characters do not have the same sound that I can find in my native language and the same combination have a different pronunciation in others words , this is a nightmare for me . I hope lang - 8 and all their wonderful people help me to improve my communication skills . What I am expecting from this post is to know how I am doing with my grammar , my vocabulary , and my english expresion . This morning I went to work , my father has a place inside the local market so I go there and work as the cashier . When I am at work there is not much to do , so I pick up my notebook and start to practice my hiragana / katakana , I hope some day be as good at that , so that I would go to Japan to sharpen my skills , my all life my dream was to work in international business and to be working all over the world , but now it seems so much like a dream , that much of the time I feel down unmotivated . Getting back to the main point , after I finished my work at my fathers place I took my computer and watched some anime material I did have in . Afterwards I met my friends , at a movie theater to see the movie `` monsters vs alliens `` . The movie was cool and perhaps had some random topics in it . My boyfriend is an American . In the wake of big mayhem like september 11th , Japan 's security level was leveraged especially at the airport so as to take precautions to prevent violence swiftly . Sherlock and his old friend Dr . Watson spent many hours looking in the mud on Laver Gill Moor . Watson thought it was not possible to find the answers , but Sherlock thought every mystery has an answer . What a long time ago . I did n't get back until 9 PM last night . I want to watch more movies and dramas from foreign countries . I know nothing about the relationship between men and women in foreign countries . But actually we were totally chicken , even though some woman passed by , We did nothing . also if you are learning Korean , let 's be a friends with each other Jessica Alba and Michelle Rodriguez appeared in Machete . Because she was younger than me , I paid for the meal . Although we only had Fried Dumplings and some noodles , it was more expensive than I had expected . Please answer . What do you think about the difference between spending about a hundred thousand vnd travelling by bike and paying only 50000 vnd for a commuter ticket . Furthermore , if you travel by bus , you do n't have to wait in line to buy a parking ticket , or pay a fine because you went through a red light or were riding without a safety helmet . I used to see some terrible bike accidents so maybe travelling by bus is safer . Besides , when the weather is bad - too hot or too cold - choosing the bus for travelling is sensible . In the ( translation to ) Portuguese , all these sentences are right . That 's why Present Continuous and Present Simple are so tricky for us , brazilians . I think I could not lose weight because I already had rice and coke as well as pizza at lunch time . In spite of the rain , I have a great passion for Archery . . . . I have n't been able to see her for a few days . Also , it is still connected to a worker 's promotion or career track after entering the company . I know the governor of Miyazaki used to be a comedian , but after studying politics at Waseda University , he was elected as a governer . I think the media 's influence was inportant for him because if he was not well known as a comedian , he would not be elected as ( a ) governor . In Japan most people are punctual and honest . Last week , I went on a picnic and ate barbecue at a restraurant It exceeded 30 degrees Celsius today . Today I found a news article which was written about the European payment system . Recently , I have beenlooking for payment services abroad for my business . That white paper is convenient for me . He ca n't speak in complete sentences . poor weather forecast in Shanghai The weather forecast was totally wrong . I 'd like to make a good sentence , but it is not easy . I 'm beginner of sutdying English . In various business scene , English ability has been requied recently > . < But it was too late perhaps , they did n't give me anything . Even if my brain was not totally in it 's place , I was still able to do a 20 Japanese character study instead of the required 30 . We will have an overnight stay in a traditional Japanese hotel ( Ryokan ) . Nagoya Granpus claimed their first J - League title yesterday . Colorado Rapids got their first title of MLS on the same day . Thank you for reading this ! Japanese people are ardent insect fans I saw this story in a Japanese journal . Yangyang felt guilty for not staying at home at the time when there was a fire . The wall is a wall around myself , the river is a river that is flowing in myself , and the smoke is smoke from burning myself . His pieces were ( are ? ) displayed at Yokohama triennial . I study Italian too . I feel that this language is fresh because I have studied Italian forthree months . Those sandwiches are shwarma made with chicken in a special way . The last one is baklava . As it turned out , my anxiety was n't justified , and the music intrigued me after a few minutes of listening . I had n't noticed any sharp changes of dynamics like an Opeth and dynamics changes so smooth that heavy fragments are separated by only a little ( small ? ) changes of tone of instruments and a particular emphasis in the drummer 's rhythm . In my opinion , the best track on this album is ' Not Unlike the Waves ' . And you want to return to this world again and again . . . I 've just moved here at the end of August . - > August I 'm studying my spanish textbook . . Last semester , my Spanish professor said the midterm would be very difficult and the final exam , which is weighted strongly in my final semester grade , would be very easy . Today is so hot , even at night , it still feels hot in my room . `` Dragon Ball Z `` Breathing Exercise I attended a breathing exercise class called `` KIKO `` . It is like Yoga but a bit different . She has been doing this for 9 years at another training hall in Osaka , which is two hours by train . so it ' sa little strange . First day The beach was crowded with visitors . first , they are going to lose their confidence . Thanksto everyone who edits this . My favorite American TV show is Friends . We enjoyed swimming and doing other activities . E - mail I am doing my best ( watashi ha ganbaru ) , and I am really enjoing it , no matter if thing not always go as smooth as I can wish . And we can manage to solute the problem of low birthrate . I have worked in this company for two years after graduation , This company is a state company , no employee ever worries of being out of work . I do n't how to work in this company , I am only in the beginning of my work time , maybe I should change my perspective on working , Unlike other older employees I should always remember that I am young , I need deal with Then , I jumped because I felt swetty . This light has the performance of low energy and high brightness . If there is the controller to change the brightness , even better . I finished reading `` How Starbucks saved my life `` today . He started cleaning the store toilet and began to learn valuable things through his job and finally found his true happiness in his new job and unfamiliar environment . I like both of fiction and non - fiction ! Correct feedback helps students to improve . how different are feedback and assessment in English ? the temperature is getting lower and lower . Past experiences ( Please someone help me . I am going to write this topic in this Friday 's exam . ) I walked through the entrance of the alley to wait for a motorbike taxi but a minibus came instead and I decided to get in . Seattle Mariners were / went againsttheLos Angeles Angels . But after I understand the first sentence , the second one has already been said . After my lunch , I went to an rental video shop and rented 5 DVD . When the concert started , I did n't know most of the songs and I wondered why there were 5 people on - stage . I work for a pharmaceutical company , so sometimes I have to use English for my business . Anyway for the first time I visited church , I felt that there was something there which I had been yearning to have , eager to know . And I would like to improve my English writing ability to pass the intermediat level of General English Proficiency Test . We were completely taken aback , but we decided to search for the wallet on the same pavement on which we had ran . The company produces mostly cosmetic products . I may go on business trips to the overseas branch someday , by some chance , I may be transferred there for a while . But everyday this bottle tenaciously appears somewhere in the race , and then disappears the next moment . I paid 4935 for it The office was quiet because of the holiday so we ate out at lunch , My new friend messesged me `` happy language `` . I am very tired now . Though Japanese are known to like fish extremely much , Sakanakun particularly has an extensive knowledge about fish . Japanese chicks are easy targets I see so many Japanese chicks in the city . Getting married with anAustralian guy is aneasy way to get PR in Australia , so some Japanese chicks try to win over Australian guys . Japanese chicks are popular in Australia , but it does n't mean Japanese chicks are beautiful . Those Japanese chicks probablythink `` if we can get Australian boyfriends , we could easily study English and get PR . It 's the easiest way to master English ! `` It 's ridiculous , There is no `` shortest way `` to master another language . They ca n't understand that . Most Japanese chicks get dumped by aus guys . Of course those bitches thenlook for theirnext partners and then get dumped again later lol I am really disappointed with ( by ) Japanese people who live in sydney , especially some of the chicks . It is very popular in Japan . I already heard the news from his mother 's greeting card . He wore the costume of an anime character . It was broadcast on Sunday in the late afternoon . But I was out just then , so I recordedcopyed it . Seeing people falling down from the skyscrapers was horrible . BTW I have a grammatical question , which one is correct ? based on what grammatical rule ? Alcohol and Drug Education Program To continue something will bring you great power . For everything , to continue is most important thing . For example , walking for health , learning foreign language , etc . . ! But I do n't think I can get it , because it 's a little difficult for me . This day me and my family was on picnic and after that , when we have been going home by car , my dad gave me 1 lesson of driving car . Even though I 'm Korean , I am staying in INDIA right now for studying abroad . I know I have problems with grammar , especially with phrasal verbs and idioms . I think I will rewrite it here and find someone who can explain it to me . Have you seen Japanese mobile phones in Japan ? Eva 's new movie will be released this summer , and the characters use this phone in the movie . My breakfast for this morning was protein powder mixed with water . I graduated from college and majored in radiology . Currently , I am workind in the cardiac and vascular center at Samsung Medical Center . I am an outgoing person who has a positive attitude and a sense of humor . I want to make many international friends and have good relationship with them . I 'll graduate University next year . And , I have been singing at an acappella group during my university life . In fact , seniors born after World War II , in the generation of babyboomers , will rapidly enter their aging years in the near future . Meanwhile , the birthrate in Japan is declining . Anyhow , this inclination will possibly put a heavy burden on the next generation 's shoulder . I think the elderly people will be expected to work into their later years to reduce the burden on the society . I 'm always thinking of them every day . Even though we have never seen each other in real life , we always have a wonderful time together on Skype , MSN and on our webcams since I came to Lang - 8 and met them . My day is really wonderful . Actually , when I come home I need to turn on my computer before I take a bath because I would like to see them and read their comments on my page . my wonderful friends . `` Because witting the article is difficult , I do n't know which way is right . I heard that he chose to kill himself last Friday . Now I have only half a container , about 10 liters . Recently I 've been interested in martial arts . I hope someday to challenge . Going to the sea I want to speak English so I decided to write at Lang - 8 in English from now on . Last weekend I had a drink with one of my old friends . Second , I have to wash our dishes after having dinner . I went to the Toba aquarium and Ise temple . I feel like I can be a good mom . ( No , I can not say this only because of the lunch box haha ) But many people advised him not to do it . The news was broadcasted all over the world and he delivered his speech in English . I Googled , rechecked on the web and found it on Youtube . Lots of novelists like me tend to choose the opposite decision . I wish the war disappears and a peaceful world will arrive before long . Alan gives a long closing which is passionate and - - - like shirley said - - - always makes people find the darker side of themselves . I 've seen a Japanese translator using this show for continued learning of English . Keeping a diary is a good habit . because my friend has come back from Japan . I have not eaten rice yet . I am bit hungry . I did not plan a costume for the party . In conclusion , English is marvelous ! Today , I had a New Yea ' rs party with my colleages in my company . But , I had very happy time at the New Year 's party . Alcohol makes people happy . we ate lunch there . I was disappointed about that . It was a great time . But , I am double majoring in mechanical ( I think it should be English literature or English education , right ? but , at my uni it is just Englgish . . To coordinate the work of TA evaluation and TA certificate : TA Evaluation Forms start to conduct during the 13th of Dec . After arriving at the station , we went to the hotel we had a reservation with first , and checked in , then we went to another hotel to have lunch , of course my wife had found this . So I cancelled one dolce . After the meal , we went on a stroll around San Marco , which is the symbol of Venice , I 'll talk about it next time . Look at this clip , please : D In China , every student in a university has to take the test . But the first book is a real autobiography of Mineko Iwasaki and the second one is just fiction . Then we gradually realized that the shake was weird . Our manager murmured `` It 's weird . . . . However , when it comes to our office , some windows and doors were destroyed by the quake . Tokyo Electric Company decided to cut the power tomorrow so that the nuclear plants in Fukushima will be able to recover . . . . My hobby is listening to music . I 'm a first year university student . At first , we did n't even know how to start a conversation because we 've never had a similar experience before . Yesterday 's otumami was gizzard , fried chicken , okonomiyaki , and something else . But , I do not have an interesting theme . I thought I could translate my favorite Japanese music ! Here in Miyagi , we had few utilities - no water or gas . In particular , there were wide desks for directors with transparent glass dividers . I am not going to criticise my company 's facilities but just want to compare them . I hope you take advantage ; I hope you see things that surprise you , I hope you feel things that you have never felt , I hope you meet people with different opinions , I hope you are proud of your life ; if you are n't , I hope you have the strength and you can begin it again . `` The Curious Case of Benjamin Button I was shocked by what she said . Today is mother 's day , so I went to a department store with my wife to buy a present for my mother . because stuffed animal suits are a little bit childish . Today I 'll write about my family . Today I had a class about education . We do not have to plan . I have 4 family members : my father , mother and little brother . My father is moderate , he is not so agreeable . My little brother is active , he likes playing soccer . in the afternoon , my aunt asked us to visit her villa . So my company decided tomorrow will be a holiday . Tomorow is opening day at Sun Peaks Resort for winter lift operetions ! Of course I 'll go snowboarding tomorow . Today was a day off . I enjoyed this summer ! The first day , I went there at midnight . But , I always think that it would be troublesome for them . But when I see this festival I forget my boredom . My daughter likes to put syrup on vanilla ice cream . Day by day , it becomes well - developed . But still to read writing by non - native speakers , studying Japanese , helps me to understand Japanese grammar ( more ) clearly and gives me the joy of discovering how Japanese is learned / acquired / thought of by another culture . Anyway , we will see . I 'm only sure of one thing , that I will keep practicing my English with or without Microsoft : ) I met another Japanese recruiting company 's staff to arrange job interviews in Bugis ( a name of a place ) . He told me he would want to know my English skills , so we had a conversation in English for around 5 minutes . I could arrange interviews for Japanese and foreign companies . First , the upside to the urbanization is that it makes our lives convenient . I was so excited and expecting a good ending but . . . This Saturday I took part in an American contest FLEX consisting of three rounds . Now I have no idea what to write ) ) ) Next time , I think , I 'll write something more valuable . Blue tinctured curtain is popular . It 's similar to Japanese Karate , but I ca n't discern their difference because I even do n't know about Katate that much . , for example , kindergarden ( My daughter 's starting kindergarten in a year and a half ) , favorite foods ( Our children are too picky about what they eat ) , etc . . . To conquer the British accent , I have started to watch British dramas I teach physics , Ana teaches Japanese , Ega teaches Indonesian , and Yanti teaches music . Learn something from the fault instead of blaming yourself . I have to write an essay in about 200 words . Some are popular landmarks and have many people visit every day . We will learn by chatting about different topics and news headlines ( stories ) . It 's not a video chat but only typing . because My computer 's output broke down and I can only hear other people 's voices and you wo n't be able to hear mine . I think it 's unfortunate , so we will learn by typing . Native English speakers who just want to know the the different thoughts between Eastern and Western cultures by discussing international issues and everyday news . I feel we should treasure Japanese culture . I have studied English hard , but I thought that it was regrettably meaningless if I could n't use it . In Japan , for example , when the total amount is 900 yen , and I receive 1000 yen , I will say that I return to you 100 yen or something of the sort . But , I 'm feeling that to increase my English skills , especially listening is difficult for me . I followed her to see a specific house for rent . I like learning Japanese and English , reading and traveling in my free time . Today I swam with Manatees in Crystal river , it was second time I 've seen them . Manatees are considered as an origin of mermaid . She told me to search for `` piano `` and song names on Youtube , and that I could find a lot of clips to teach me how to do it . This car is n't good for parents . I do n't know much about cars , so I do n't know whether this car is expensive or not . To tell you the truth , I was totally uninterested in the snowboarding events in this year 's Olympics . but recently I did n't study that much . A big earthquake occurred yesterday . When I asked my friend `` Who is Jesus `` , she laughed at me . It really different me because I never to make up . . I should be going to wash my dresses for tomorrow Today , I had a practice with my violin classmates . ( How can I say this ? ? ) We played ' Edelweiss ' and some other songs . because I think it maybe better to study English there , Originally it was Chinese food . And then , recently a new type of Ramen appears . Tsukemen is different from ramen , the soup and noodles are served separately . However , learning about this is very reasonable ( understandable ) if you understand the similarities between the Vietnam War and the Korean War . They knew all the military secrets of South Vietnam . What this is telling me is that there must be a lot of spies in South Korea as well . I was an abacus teacher at cram school at that time , so I decided to email her . Finally , we have exchanged hobbies successfully . My sister likes language exchanges and studying more than I do . I like hobby exchanges or taking part in different kinds of activities . Why are double teeth considered charming in Japan ? I prefer an ( in person ) interview over a written exam , because grammatical mistakes in the interview are gone in a moment , but my written exam paper with many mistakes will exist until we are all familiar with each other . Thirdly , they recommend that I should use `` I `` instead of `` we `` . I would like to say `` we accomplished the project `` or `` I accomplished the project as a member of a working team `` . I know that there are many cultural differences between Europe and Japan . And the cultural differences have influenced my own way of thinking . Could you please give me your suggestions frankly , and let me know if the suggestions on the web site are true or not ? If I had a girlfriend , I would travel to a foreign country this year . . . Everything is so strange . I thought the river is very polluted , however , frogs still can exist under those conditions . I grabbed the frog and placed it in a box . This is my first time to write a Lang - 8 diary . I visited Nijojo Castle as part of a Kyoto bus tour . Inside , the castle is so dim that we could barely see the wall and ceiling pictures . If we had had sunny weather , we could have enjoyed walking around much more . Are these sentences correct ? Please teach me , are these sentences correct ? Tomorrow is Labor thanksgiving Day in Japan ^ ^ I think it is very wasteful to live all my life here . It is a great opportunity to work in a country which speaks a different language . Language is wonderful way to have contact with foreign people . I could n't get up However , I can not practice pronunciation on a train . Hi , I 'm a new exchange student of Aalto Univ . in Helsinki . If you find a grammatical fault , just pinch it out please . I have n't met my friend recently , so I was happy to see her . This future is kind of horrorific . There seems to be no moral in the story , but you could find what the problems in Japan are . Hello everyone ! ! I worked overtime last weekend I was very satisfied . Mario , Pokemon and Sailor Moon : > The shipping method was DHL premiere shipping mail . At the beginning of our trip , I had a very nice time with them but on the last day of our trip , we got into a rollover accident . Nobody was n't hurt , but I worried a lot because that car was rented and we were driving it . The moment I noticed like this , I decided to find a different sport . I recently read a book about translation and language . At the beginning we were going to go only to New York and stay there for a month , but my girlfriend 's father lives in Miami . We visited Miami Beach , with its wonderful white sand and crystalline water , _ and relished wonderful food , because my girlfriend 's father is a great cook . To sum up , I have had a beautiful experience with excellent company and visiting excellent places . I am surprised , so I decide to go for a swim too . But the weather was raining , I give up . It is quite difficult . Though it has some words written like Chinese words but they have different meanings and pronunciation . I graduated from junior high school in june . This decision will influence my future forever , so I must be very careful . One joke from my friend I guess my push ups and situps was bad , and I was very suprised . I listened her voice and I missed her . `` I 'm afraid I could not afford this in Japan ! ! ! Now I am an undergraduate in I logged into my account on Lang - 8 . In the near future I want to visit many countries . old korean people think that the son is important . Since I could n't understand anything , I do n't know what should I do during the class . She knows that I want to improve my Japanese and my English , so she introduced me to this website . basketball fans . Someday I want to travel around the world . written by Ted Chiang . I 'm interested in the issues about time travel mentioned in this story . This site is so amazing that I continue to write diary entries . I 'm wondering if I should keep studying conversation more , or change subjects . I have 4 classes , and all subjects are conversation . Other students usually coverall subjects . I study English and Chinese at the university in Japan . ayamaru or machigaeru - to be mistaken atsumaru - to gather It is possible to arrange one more ticket for `` trance energy `` for one of the girls in my house . I wish that she would come with me because we will be doing something together . I 'm so excited . Hello friends , this video . This is the first time I have tried to upload anything , so it 's a bad video but just a test . I stayed at home with my nephew and one of my nephew 's use my telephone to record the video . I saw her for the first time in six years . Somebody just corrected my diary , but I do n't know how to say thank you . Algumas vezes eu jogo Dance Dance Revolution . There are 50 poems with pictures accompanying them . I will try hard . It 's 3 US $ for 2 different movies but the equipment is not as good as that at the first - run theaters . Hope I will get good news ! I 'm Japanese . However , my English vocabulary is very limited . Reading is the best way for me to improve my vocabulary . I found a potential land parcel in an advertisement , and visited a real estate company . It is a very beautiful place having a marvellous landscape . At that time , we went from church to the host family ` s house . We were halfway from church to their house I was really surprised . It is the first marvellous sky I have seen like that . I will contact student of various countries . I think that it is important for me to concern world education . Since I want to be an exchange student in Sweden , I must improve my spoken English . As a stomach doctor , my little uncle who is also my grandma 's son , gave her a series of medicines , and hoped she could survive another five years or more . I found my favorite song again , but the video features a different player . . He has really nifty fingers when playing the guitar . Tha mi ag ionnsachadh feallsanachd . I am a Urdu speaker , but I want to know how I can speak Farsi . Some roads do n't have a cycleroad / bike lane or a sidewalk . I need another sense of driving in Japan . This afternoon , I used a subway to go to the centre of my city . I wonder if public manners for young girls is changing I live in a dorm and I have four roommates . It takes about 20 minutes by car . Therfore , I have to ask someone who has a car to take us to the grocery shop if we need some fresh food , like vegetables , fruits , or meat . Also , we ate a many kinds of food , for example Yakisoba , Tamasen , banana which covered with chocolate . . etc . We enjoyed a school festival . And we watched Michael Jackson 's movie `` This is it `` . Actually , I did n't know details about Michael jackson until he died . Because I mainly liked rock music . `` Michael is great . `` Mathematics , `` `` Physical Exercises , `` `` Music `` or `` Geography ? `` ( They all ) These are only the titles of subjects , but when you do n't know at least one of them , I think it may cause you a good deal of frustration in a Japanese conversations because you ca n't understand / make yourself understood immediately . There are a lot of international student , so I want to be friends with them . When I took the train , I saw a foreign boy . Because he and I have mutual friends who came from Europe . According to my memory , the bears moved widely but repeatedly visited the same areas . I usally spend my free time playing games , watching tv shows , go to the movies , and when I was in Laos , I met 2 foreigners and we became good friends . They knew some Japanese Many kinds of people had different kinds of roles in the Railroad , including preachers , politicians , farmers and storekeepers . And just 30 minutes . well , I do n't get tooo much , but it 's still good deal : D If it is possible , I will write my diary entry using at least one new unknown word in every sentence . The usual rules of time and space do n't function in this House . There 's nothing disgusting or compassionate in the novel . Usually I do n't reread books , because I 'm always in a hurry to read something new . They were very delicious ! ! For example . . . . . . This grammar is difficult . It is straight and has a wide sidewalk , I saw some people who were either walking , running or walking with their dogs . Birds were singing and the flowers bloomed with the morning dew . I 've been reading The Wondeful Wizard of Oz . does that mean that Dorothy finally caught Toto ? Shocking News We also joined in something similar ( Some events were held to encourage the audience in the middle of the show ) . because I had stay up late yesterday . and I had got myself for net surfing . ^ ^ Since then , I sometimes listen to my favorite Western music from my ipod when I go to school . Thanks to this method , my listening ability became greatly improved . Now , I 'm still doing it and I wanted to improve my writing ability through this site , so I 'm writing this diary . After I talked her , I realized she is brilliant , talented , I enjoyed their beaches , and I missed a lot with their language . I was speaking half in Spanish , half in Portugese , so I was n't understood by anybody . Now I 'm back , and have to accomodate my language again . But , It did n't really occur to me to go abroad . It expresses the mind of the speakers . Occasionally , I am unsure how to say it ( correctly ? ) , It was chilly today and I 'm sleepy now like I was yesterday . She said to me `` Please give me information about Singapore if you can get a job there , because I dont want to go back to Japan `` . if you are in Singapore , give me information about that `` So , I politely and immediately answered her `` I do n't have any intentions to give you any useful information about Singapore , go to hell you fat bitch . I hate people who laugh at others who are trying to acheive something difficult `` . Could you explain it to me , please ? It was delicious ! Fall is coming ~ When you started there was still communism , even if it was the beginning of the Perestroyka era . But I 'm not that good at writing . It was a procession when I went to my favorite ramen store . This store is small and many people wait for me to finish my ramen . Next , it is a very low price and we can take trains all day except express trains . I use many of google 's applications and services . But , he & I will both make our dreams come true . Although it 's always funny to play with 'em it 's often very tiring and today we played at a playground near my flat all day long even though it was freezing cold ! The legal department is located in Germany , the headquarters in Switzerland . Last night , I was looking at the TV program - the hundred minute talk about the MINERVA 's detention sensation . Now , the major news is about Minerva in South Korea . Although my English course has finished a long time ago , I did n't want to stop learning . My friends and teachers from Lang - 8 , would you please give me some explanations ? She 's on holiday in France . 1 ) What 's he studying ? I also like Eva , but I watched the whole story 34 years ago and now I 've forgotten the details . I had a great time with my family during the year - end and New Year holidays . We had a delicious japanese traditional cuisine ( osechi - ryouri ) and went to shrine and temple . My company started today . The pasta 's sauce is ratatouille . But I ca n't see my improvements . I was dreaming I could speak English fluently , but it 's still a dream which I ca n't touch . I live in Northshore . Northshore is a very quiet place , especially at night . I guess in some country it is morning or noon now . `` Torchwood `` is a very unique sci - fi drama and contains very adult things such as swearing , indiscriminate snogging and shagging , and violence . and I quickly decided to fly over to the U . People who had lost all their money became alcoholics or started thinking about suicide . I have to practice lots X ) Yesterday , I made a idiom thing that was when I went out , and I forgot that I was More and more Chinese like to travel around the country or go abroad . Yes , I 'm defnitely happy tonight , I 'm going to play tonight ( soccer of course ) , I 'm sure you know that in Europe , soccer is the most popular sport All European people have a passion for soocer , but none like Italian people . For some it is not simply a sport , but a religion , in fact every day and especially every Monday you can find a lot people , in offices , in coffee bars , on buses , everywhere you can find someone talking about their own team 's match . A beautiful actress passed away This is a renowned line that she said in an alcoholic beverage commercial on TV . I 'm going to see the movie ' Social network ' tonight at 10 o ' clock . My English teacher said the same thing as me . After the party ended , I went to my cousin 's atelier to meet my sister . I am learning the English language ! ! ! ! My favorite painting is ' Fat Monalisa ' . I painted it by copying Fernando Botero 's style . I went to visit my uncle . He is sick and he ca n't move his body because last year he fell at his house . he is really nice . sometimes when I have a problem I really like to ask him , because he can help me solve the problem . I looked at youtube for a long time about the animals and fish and I felt happy to watch it . thank you very much . Start Writing Daily in English It is very nice weather , so today is a perfect day for me to just be lazy . It is difficult to write a long sentence in English . elementary school , middle school , high school . . My destination would be Africa , needless to say . Now , the mobile - site is important for E - commerce in Japan . Describe a person who has a good leadership . This time the big earthquake had hit mainly the northeastern district and Kanto district . Learning other language is difficult for me . So I studies English for three or four hours a day since I started learning English . I decided to start keeping this diary in order to improve my English and probably to find new foreign friends . In my institute I study two foreign languages : English and Chinese . Will be waiting for your comments , corrections and anything else Class begins at 8 pm with ordinary conversation for a hour , then Bible study for 30 minutes . but he had a chance to live another life and he chose to marry . after I saw this movie , I gradually took more care for my family . I like to watch American TV , and my favorite is desperate housewives . I have a Filipino English teacher named Nephelie . Even though I ask about English everyday , she just smiles and answers my questions . I 'm sincerely thankful for her . I 've been having too much sugar recently . Today , my friend and I will make a newspaper with this article in our English class , so I 'm very looking forward to doing it ! ! Yesterday , our univeristy held a graduation ceremony . Unfortunately it rained , though . They were beautiful . Instead of competing against each other , they can achieve goals together which will sharpen their skills and bring forth beneficial effects on their learning . Generally , it appears that online learning is a more advanced and fruitful tool for studying . All of his or her coworkers are busy all day long but they do n't know what they are busy for . We always spend a lot of time confirming every detail and spending more energy than others to communicate with other coworkers because he always gives us unclear tasks and seldom gives us enough support . There are four Saudi Arabian , three Korean , one Mexican and three Japanese in their class . I 'm learning English by watching House M . For some reason , I could n't sleep well last night . So this morning I was very , very sleepy . Tonight , I want to sleep better . We talked about each other . I 've never seen an American pop - corn maker cook , so it looked so interesting to me . I wondered if I could understand what they are talking and laughing totally , it would be more fun . I 'm grateful if you make my English correct . Lang - 8 is one of my challenges to change my daily life . And just to make you smile I 'd like to put some funny children 's pictures here . Thank Goodness . . The internet is very useful , right ? ! Of course I had known about him , but the show told me that he was definitely one of the greatest baseball players ever . Istanbul splited by Bosporus I joined fido which is a canadian cell phone company . It is very inconvenient and uneasy . Recently , I neglected to study . I am listening to some piano pieces George Winston played , especially the songs in his album `` Winter into Spring . `` Test week It also made me feel good . My new computer We told about cases of each country . I 'm worried and quarreled a little , because of sensitive problem . However I will go there someday ! I use a pen when I write a diary . I do n't know what I want to be in the future . I added bacon and garlic to them . This time , the drivers were very cool ! I studied how to answer CET - 6 papers , and found that English is more delicate than I ever knew ~ ^ _ ^ ~ I needed a break , so I wrote a very short entry and wrote a Chinese prose poem ~ Because I fell asleep at 3 : 00 AM since three days ago ( but it was n't wise decision ) . If someone misses a period of study , There is no way to wriggle out ! Today , I bought some dolls . However , very few Japanese people have such a long - term experience in the States . The reason why she likes them is that the first Japanese NBA player ' Yuta Tabuse ' was on the team and she is also a fan of Amar ' e Stoudemire . Who was in a good mood ? Who was positive , and who beautiful ? Will Suntory defeat Coca Cola or Nestle if this goes on ? Allow Me To Remind You Yesterday , I tried making a silver jewel / jewelry from a silver clay . At the end of extra time , Japan finally scored a goal with a beautiful shoot and won the game . I 'm a big fan of soccer and I belonged to a soccer club when I was a student from elementary school to high school . Japan has now become the champions in Asia . In Japan we usually get into a bath after filling it halfway with warm water . Recently I like going to the spa near my house . When I took one of my foreign friends to spa , she blushed because people saw her naked . There were many foreigners and Japanese people there , Anyway I got 2 friends , one Swedish and one Japanese . After I came to Singapore , I have been lonely because there are no friends in Singapore . Praying everyday was getting harder but I realized the heart of the Lord . I also live in Nagoya , therefore I ` m looking forward to seeing ( watching ) figure skating . Nowadays , since Kaiten - Zushi are spreaded all over Japan , we can eat Nigiri - Zushi at a reasonable price . Today we will have a birthday party for my friend . It was in a traffic jam , a terrible traffic jam . Our opponents were strong . I am the youngster Finally the rainy season has begun in my city , after the long heat wave ! It 's so fresh on the street ) I 'm happy ! He was talkative and he talked to me a lot . I have a cat , a dog and two gerbils . They always help me . thx for reading my stupid journal , I 'm get better right now , thx for the medicine too ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ I do n't know how I can find friends , or where I should write my entries to get some corrections . It 's incredibly hot today ! She texted me yesterday that there is a test today and asked me the range , but I replied to her that I did n't know about any test . I tried to buy some alcohol at CVS the other day , but they did n't accept my passport as an ID , because they only do that for Americans or Canadians . I think conservative clothes are always good if you are trying to give a good first impression . so please help me . Do you have any suggestions so that I can make my dream come true ! ! ? ? I thought the girl in the wedding was the most beautiful in her life . I hope that she and her husband will be happy . Actually , my first aim was to support my friend Kostia when he tried to talk with Arina . But Karina , the Arina 's friend , was even cuter and more beautifulto me ! That evening Kostia did n't succeed with his beloved Arina , unfortunately he was too shy and confused . suntan and her hair is very messy . Why has no one corrected my previous journal ? Usually , I do n't know what to write . . . This training program is a little hard on me physically . He sometimes DJs for just one hour . It 's only 29800 yen including tax . I happened to meet my friend in the center of a city . Today , I happened to meet one of my friends who was one of my friends when I was in high school . Throughout your life , have n't you ever thought about why you have been able to meet the same people among your friends or acquaintances over and over again in different places such as in a big city , while you have not been able to meet other friends or acquaintances of yours at all ? Based on their reports , the pool ( algae plant ) which has 20000 ha and 1 meter depth could supply Japanese annual consumption of oil . I come from Taipei , and I 'm not student . My habits are playing basketball , using the computer ( facebookXD ) , reading some economical books and comic books , and see every kind of movies . He is doctor who lives in the U . In two hours they did , but they were not satified ! I tried to make a short impromptu speech with thanks for my foreign friends here on Lang - 8 . Maybe I 'm just feeling lonely . I , personally , felt that AVATAR 's story was okay , but the visuals and 3D technology make it worth seeing . I recommend ( that ) you go see it . I will try to introduce to you the story of AVATAR briefly tommorrow . Official Avatar Trailer female : I wanted to have my hair cut by a female when I went to have my hair cut . principal : The principle reason why Japanese people came to the current continent is because they were chasing Monmos . After a long absence , I can wash my clothes . The big earthquake and tsunami in winter destroyed many houses , buildings and cars etc . Unfortunately , the Fukushima nuclear plant was partially destroyed , too . I 'm happy girl , because there aregood people around me . Today , I was a couple of minutes late to school because I got up later than usual . I should have reviewed the vocabulary before the quiz . I suffer from a language barrier . I hope that next time I can speak english fluently . Since my ability of English is improving , I do n't dislike it like as much anymore . What can I do to resolve this daily problem ? ( I 've ) Started to write a diary in English . A few days ago , my friend and I went shopping and found that some foreigners were having coffee in Starbucks Coffee . It was brown ( in colour ) . In this entry , I will tell you about my power point skills . This is a very famous movie , so I think everybody already knows the story so I do n't need to explain it . I hardly ever listen to classical music . We can go anywhere without a car . Or they might stay at a cheaper capsule hotel . Can I say I cleaned my room inside out ? I provided them with some technical support to help them pass an audit ( like ISO9001 audit ) . I was at the Shanghai railway station on Tuesday morning . Nanjing is not far . I spent two and half a hours on the train , had lunch in Nanjing , and started my business in afternoon . After that , I go to bed at around 10 : 00 pm , thinking of tomorrow 's plan . If you select me , you 'll never regret it . Now , I 'm living and studying in Germany . There are four subjects in this semester . It is crunchy , yummy ! yummy ! I thought it 's a fine day to go cycling early in the morning . GDP is the abbreviation of Gross Domestic Product . That 's the best thing these days . lol I wonder if I should play truant for the Bookkeeping exam . . . . no no ! no way ! ! I cant ! I have to get a license for bookeeping . The factory is in the suburbs and far from the train station . Firstly , I found that Tube in London is not so crowded even in the rush hours . Subways in Tokyo are very very crowded in rush hours . There are people distributing the newspaper near the station and we can get it . Unfortunately , I do n't have my own a lot of colonial places to visit and many foreigners . My company 's main description is listed below . 2 ) My company carries out transport of computers and accessories . It is somewhat ironic ; large amounts of money sleep in bank accounts but are pulled out again by criminals . She told me that she received a call from my husband , but it was quite bizarre . [ spelling ] Actually , I 'm a Japanese high school student , so I study English everyday . At the moment , I was excited because it would be very useful for me . I definitely want to use this site , and will keep writing . I look forward to attending an English class every Thursday . One lady just returned from her trip to Spain ! I hope that soon I can read English novels directly and speak English fluently . Another earthquake just occured the day before yesterday . Today , as the first half year ends , I presented the report to the members . Then , I was released from this job finally ! I live in Novosibirsk , if u know this is situated in Russia . I 'm interested in it , because my english is not so well , as I need = ' ( I think , this language is very important in my future , for my education and especially for my career . I expect that will be very effective for our freshmen . My hometown is very rural , so there are a lot of rice fileds . I personally think words have power , so I 'm careful of what to say . But I realized that I 'm too careful of what to say . My friend said `` Christ got angry with you , and you have to apology to him `` I 've been working hard lately in a guesthouse , on the night shift . However , I 've become relaxed and I can smile naturally , Remembering this makes me feel like screaming , especially at night or when I feel depressed lol . I often feel that women 's job is more better than men . If women and men work together , we can build a better company , society and world . When I was 15 years old , I stayed only a week by a home - stay . I could n't go to famous places . It 's interesting why I decided to go the UK though , since I dislike it here . I enjoy this life and sometimes I remember what happened ten years ago . I realise , that there are many ways in which each person could increase his or her level of any language , but as I see it , this one is almost the best . It was a very secret catacomb , where there are still . Please check my diary and cheer me up ! ! I was informed that it was the last day to work at one of my jobs yesterday while I was there . I will try to keep this diary , using a lot of words in the future . But , English is really difficult for me . . . It was heavy , even without french fries the double - decker hamburger was enough to fill my stomach ' til the evening . Perhaps people find that it 's more healthy to eat natural food and keep a healthy lifestyle than eating processed health food and using health - related products nowadays so that they are not going to buy any health - related products . Although people in Plainsville have set off a boom in exercise and it factually promoted the business in sports , it 's possible that people there are interested in pursuing a good figure more than fitness . And the ' fitness for life ' program , which just mentioned the benefits of regular ecercise at an early age , may also lead to the improvement of business in sports . First of all , if the costs of opening and operating a new store in Plainsville are very high , the incomes might not exceed the expenditures . While considering the possibility that the people in Plainsville are loyal to local brands , new store would not be welcomed and accepted by the local people for that reason . I appreciate your answers very much . I have only watched just five stories , but I 'm looking forward to watching the next story . I 'll clean my house and do the laundry , then I 'm going to watch them . It is decided by whether one 's mother tongue is Japanese or not . It took two days for me to finish `` Anne of Green Gables `` , a marvelous book imbued with natural beauty and gently expressed love for life . So I like to communicate with people ; - ) I 'm a pacifist , open minded , friendly and unique . I 'm a person who loves nature and health . But I promise to be more careful = ) I still remember that in the first English class she responded to our doubtful eyes that she always dressed casually and looks like a student . I took a lot of time to write my diary . The sun was rising up behind the Angkor Wat . The image of the Angkor Wat was reflected on the surfaces of the ponds . I 'm a Japanese studying English in Japan . I am a person who has no religion ( I am not a Buddhist or Christian ) so when bad things happen I do n't blame anyone . These three words are all uncountable nouns : fish , damage , and advice . My daughter is two year 's old . This is the best way to learn a foreign language . In Japan , Japanese use dish washing liquid on the dishes and then wash them off with water . I distinctly remember the first night when I came to Australia , and had dinner with Aussie and saw her washing the dishes . We attended this event and opened a small shop for selling some goods . My friend broke up with her boyfriend , because she doesn ` t love him anymore . If a young person sits in these seats , they will most likely be criticized by someone else . There was a big issue here in Korea about a woman who did n't give up her seat and even shouted at an older person . Because I am going to go to the Philippines to volunteer in Sep , 2009 . I saw the movie `` King 's Speech `` last Sunday . I started taking so much time to find appropriate words and sometimes never find them . I 'm still alive . I 'll be really muscular . I have known that the details about what will the film describe as when I have been preparing to become a spectator by sense & sensibility again . After I practiced , I realized that my pronunciation made me tongue - tied . where 's my luggage ( idk sp ) . . . . Yesterday and the day before yesterday , I attended farewell parties . Although I 'm far from them , I always cheer for them from New York ! ! It is the custom that we go back our parents ' home for New Years in Japan . Originally , we wanted to have a free and independent travel , but one of our friends who had never been to Korea suddenly could n't go with us . I did n't believe the scenes on TV had happened in Japan in addition to Tohoku that north area of Japan . I was born in Aomori the northeast prefecture in Tohoku . I think Japan is an earthquake - prone country . At that time , electricity had returned . and bought a pair of sneakers , pants , and a polo shirt . I thought I should have eaten it before I go to the office or have written my name on it . I saw the movie first and was very impressed by it ! I have had a hectic time this week , because I had a test in chaisene Do you mean Chinese ? Actually , school prevented me from going to yoga . Fortuneately , the weather was also fantastic ! My cell phone was broken accidentally a few days ago . So now , I 'm using payphone after a long time ( not exactly , cause when I was in the military I could only use the payphone , but I mean as a civilian ) . Hello 2011 I want to go journey , again . We had n't got any vocabulary material , speech practising , and one of our teachers make major grammatical mistakes , like she said once ' they was ' in a past continuous sentence ! ! ! It 's interesting , because during her lessons , and while preparing for the lessons , I learn words much more easily than in the school . It takes half an hour or maybe an hour , and I remember almost all the words , with only one or two exceptions . I joined this website yesterday , and found that it is very interesting and people from here are very friendly . The korean officer in active preparation was , regardless of me , panicked at a boarding arrangement . My company is planning to change the website and I 'm in charge of it . It 's been almost 3 months since I came to the UK to study . Do you have high tolerance for alcohol ? ? Usually we play table tennis or basketball . He does n't think that he is handicapped and he tries to do everything which he is able to do or new things that he wants to do . I heard someone said that watching movies is a good way of learning English . I will try this out . using foreign languages ( Upon ) Finishing my work at mountain lodge in Hakuba , Nagano prefecture , I 've returned to my university . Besides , in my Russian class , there is an American student who majors in Japanese and Russian in his home country . That 's also disappointing . I was very surprised , and turned toward her . Only ( The ) one thing I regret is that I could n't speak English very well . We chose one and write a resume , imagining if I apply for the job . I told him to finish what he had to do because it could have been avoided if he just had n't been watching TV , but he did n't continue tidying up , so I had to do it instead of him . Ohayo gozaimasu . Reading is my weak point . I know it ` s not good for our health . But I want to be an early bird so I 'm trying to wake up earlier than usual ( although I could n't make it this morning . . . ) Usual days are full of happiness . I go to Buck County Community College to study English . I think I will just memorize English words and sentences . I do n't know why , perhaps because I really see you as my good friend I want many foreign people to use it . low lighting , silence and loneliness . However , I was glad to hear that the Japanese team had won . . . I am living in southern California in America . I will not have decided that until this weekend because I have a long winter holiday . Some people enjoyed dancing together with friends or even other people . I know that Bob Dylan is famous singer in America , but I ca n't imagine what that phrase means . I found that there are many fashionable running outfits . because of a whole new model change . I thought I made it clear that tomorrow couldbe a day off . However , I had to do it , because it was one of the activities on a business trip with our customers . The shop did a campaign that if a person was still hungry after eating one hamburger , the shop would give the person one more hamburger . I tried it and got two hamburgers . I had to buy a pick , climbing iron , and Gore - Tex products . Maybe you will find that life is so beautiful when you know something . By the way , Tsuyoshi Kusanagi will be on television . We ate SOMEN ( Japanese food ) . I 'm glad to have met it . Hi , my name is `` napoleon - fish `` . It 'll so crowded and I should not get seperated from my friend . So my garden in spring and summer is very fragrant and colorful every year . I went to lunch with my English school friends . Here it is buffet style . getting a job . But I have a many reasons for learning english . Of course , in literature classes we heard so many times `` oh , how great is Russian language ! `` ( I do n't remember who did say these words , but I know that it was one of our writers ) . And I know only 5 kanji and a few simple sentences . I have a slight headache . Now I have a slight headache . I saw someone draw many interesting pictures of their grandfather with an iphone App , so I decided to draw too . I drew a cute pink cat the first time , but I coud n't draw any interesting pictures . I must either study drawing from the basics , or must stay humorous ? I love my sharing feelings and experiences with people who have different thoughts and experiences , so I have thought of joining a club . I do n't know why I hesitate so much . By the way , I 'd like to sing `` start of something new `` ( from high school musical ) BTW , do you think this introduction is too simple ? Please correct words for me if you think it is necessary . You said I was ( still ) a child in your heart , you said I have not matured , you said that our relationship should not be broken up . He is going to try _ out for a team for the first time . When we visited the temperate animal zone we met a few American Africans , who were trying to read the Chinese text on the noticeboard . Out of all the zones , my favorite is the temperate animal zone because elephants and giraffes are there . Penguins like big places for their environment , so the Zoo uses big mirrors as walls to make them feel more comfortable . About five years ago , the government of Japan retooled the system of the law . Now people who want to become lawyers have to graduate from college . the exams are held in November . Welcome to my home ! Hello , welcome to my Lang - 8 . com profile . Firstly , I will introduce myself , I am a 21 year old Chinese university student . You can write in English or Chinese . Correcting my words , grammar and so on . Thank you . Morning does n't have high temperature as in the afternoon . I intended to go to Tokyo and spend time reading books or studying at my favorite coffeehouse . 24hours after the extraction , now my lower jaw is swollen . I like jelly , but wanna eat hamburgers broadcast on TV ! ! They looked very delicious ! And then I 'll eat hamburgers XD When a man is walking down a street , he sees a man who is about to jump from the 10th floor . english is so duiffcult eighteen years but I have never had any confidence using it . What can I do to strengthen my english skill . restart studying English Now I 'm concentrating on studying Japanese only , I respect John Paul II , he could speak 11 languages . . It was exciting and improved my English skills . Expecially , when I saw Totoro in Toy Story 3 for first time I was very happy and proud of it because Japanese character appeared in such a popular and famous movie ! It is amazing ! Today , I learned many colloquial words as well as bad 4 letter words . For example , ' Take it . ' ( When I headed and Kinoko item appered ) I 12 years old now , so I 'm gon na say good bye to my school and friends . There are 28 students ( except for those ill ) in class , so we did rock - scissors - paper . After class the last runner of the losing team was scolded by teacher because he gave up in the middle . I hope I can make true friends here and There are vegetables in my house . What kind of vegetables do you like ? I try to remember to write it ! It was embarrassing because everybody stared at me then . `` Of course I will `` I replied , but he had to go to a different room shortly after that . Bye bye my lovely family . I really do n't like earthquakes and tsunamis . . . Reading and writing is okay ( I can use a dictionary when I 'm not sure about any word or grammar . ) but speaking and listening is so difficult to me . Every month everybody should go on vacation . If people stay at home they could watch ( watch ) TV , listen to the radio , go on internet , and be lazy . I 've gone other times in the past , but now , there are new attractions , like the Dark Knight Coaster . I miss her very much . In this situation , her sister and I decided to change the bibimbap with her . Yesterday I was planing to go to the skytower with my three friends but one of my friends and me had a class so our other friend had to wait for us until after school . And after school we were supposed to go there but due to bad weather we could n't help giving up to go to the skytower . Then one of my friends went home . It was good : ) I ate oyako don : ) The taste was similar to the one my mom cooks . Twitter is addicting / addictive ! I understand that Twitter helps ( to ) connect a lot of people , but I think that I am spending too much time on it lately . . . I want to use this tool to study ( and communicate using ) foreign languages too . I usually have lessons on Thursday , but I could not last week . I woud like to buy and enjoy cakes with my family again someday . First of all I have to overload my hands with iron and at the same time I have to decide the problems with my studies , which I was forced to skip for couple of weeks . I like listening to music by bands such as ' the Offspring , Weezer , Sum41 , Simple Plan etc ' However , my co - worker suggested that I should go see a doctor again to see if I have H1N1 . My husband brought my nephew , niece and my daughter At the beginning , I felt nervous and did n't know how to talk with them . I have a lot of things I want to talk about with them but I do n't know how to use English to talk about it . My sister introduced this website to me . It 's my understanding that they are identical , but my Canadian roommate said that they were different . Do n't worry my babies , It 's not a rat , It 's certainly a cat . Now Minourou is like our pet , he comes and goes as he likes in our house to receive hugs . and sleep if he needs it . He is a very social cat , he loves people , he 's a real well known cat in our street , because he stays under the hole near the pavements in order to receive caresses . Fortunately , conditions were good in Fukuoka , and I was able to get good pictures of the sun . Then the man waves ( his hands ) to the woman and maybe that disturbs the woman . Michael Jackson I think Michael Jackson was a great pop - singer . I took a lecture last thursday . I 'm not interested in their job , but I learned some important things from their lecture . and , finally , I Do n't give up . I will never forget their words . Starting Lang - 8 for studying english I have n't used Kansai dialect in a long time , because my wife hates the Kansai dialect . It is international language , but I plan to learn french For my laziness , I always watched funny films and cartoons only . I bet you will get a lot of chocolate from your students . Nowadays , I have have been thinking a lotabout my plan to go toKorea . Hello _ ! It 's difficult for me to find a topic . I 've been playing a game made by another country recently . But I 've not improved my speaking or writing yet . In 1192 , Yoritomo Minamoto who was a general designated by the emperor of Japan established the shogunate in Kamakura . While I was surfing the internet , I saw one interview about Dr . I really want to have a cat but my apartment does n't allow it . I planned to go to Okinawa this coming October . But I had to cancel my trip due to the Swine Flu . I said , `` I know that because I sometimes read English journals . This is his diagnosis . What is the medicine ? Unfortunately , there were only four of us from SPARKS there . Lack of time to study I was learning English compulsary in primary and high school . A First day of language school One day I went to a popular Japanese restaurant to have lunch . I thought that `` this was ridiculous `` , `` it was normal she did n't do that `` . To my surprise , I got an e - mail from her . According the e - mail , she is also university student and she studys economics . We had turkey dinner and had a great time . I do n't remember the conversation in detail , but it 's true that I love her , not just like . Although I lost 300 dollars , it was a great fun and new . experience . - helps people train their characteristics . The world of games is like a minature social life , which has good , bad and evil so gamers will know that they should protect good things ( or people ) and fight bad things ( or people ) . For example ; I have managed to develop a good habit during the month . Many people from different backgrounds and places chat with each other there . Although he was small then , he has ( now ) grown up . Do you know how to help a workaholic ? I think my mom is a workaholic because she works most of the time in a market . She generally gets up very early and stays at the market from 7am to 4pm . There is always something else to do such as shopping and fixing electronics . She goes to different places to get everything fixed . Do u think she is workaholic ? Because the major I study in is software engineering , and my favorite part is mobilephone , I set my target on mobile phone and pay all my attention on this field . The artist debuted with his first album `` My World `` which was published in November 2009 , November . It was a night of miracles , because Bieber become famous when his mother uploaded the video with Bieder onto the site youtube . Until now it 's been / I 've found it comfortable enough to just sleep , listen to the radio or music whenever I was alone on the bus . Then I sent a message to her . It sets people 's nerves on edge ! Let me relax myself for the first and only time . . . Thanks to you and myself . . . I have camped at Jecheon in Korea with my family for the first time . The next morning , when my children woke up , they were surpised . They were delighted because they could play ball and swim in the valley . Maybe it 's a bit silly , because all my life is ahead . Have some jealous ? What is the difference between accident and incident ? Of course we would n't have as much vocabulary as we do now back then . Have you ever been confused about the use of prepositions ? And best time to be home next to laptop with coffee . . . Almost all the costumers need new paper money for ' ' OTOSHIDAMA ' ' , money given to children by their parents and relatives in the new year . On TV an expert about the human body says that Americans and Europeans I could n't find a promblem . I was relieved when I was able to talk with them and knew that they were alright . We stayed for a long time . About morals and ethics But I think , conversation camp was the biggest help . Do n't be cold and be gentler . We played basketball in Dokkyo university . I thought that I need to practice more . After much consideration , I made a decision that my favorite food is Coke . It is brain exercise for me . I can also teach Korean to you . We should be delighted with their creative ideas so that we can get more relaxed on our free time . Yesterday and today have been fabulous ! . . . I 'm enjoying living in Robe but there is one thing that I 'm deeply regretful about . I heard that we make one team with 4 player ( robot operater ) and 1 tactical operator . Second step , I am looking for the internet website that able to write english diary easily . I want to improve my hair . Do you know how ? I want to know . Habits are very important in life . feel substantial and get a big harvest . Listening to the sound of waves . Unfortunately THE BEAUTIFUL BAY will not belong to everyone because it was constructed for the hotel . The beach will belong to the hotel owner . The beautiful sea will disapper . Shrek 2 I saw `` Shrek 2 `` last night . He was paying attention for the cars but he didnt notice the bikes . He stepped onto the road and there was a loud sound , the honking horns ( from the bikes ? ) I was looking forward seeing two star players , Rose in Bulls and Nowitzki in Marvericks . On the other hand , compared to him , Nowitzki has not as speedy plays as Rose 's , but his fadeaway shots , shoots with body staying behind in the air are UN - stoppable . Against him , Nowitzki also tried to shoot , but his shots were off . There are several categories . Example : Animals , Health , Family relationships , etc . Yesterday middle autumn festival was held , so all of us went together with to celebrate . Recently , the bathtub in my house was renovated and I am studying Vietnam I do n't like it very much because it tastes child like . Although I have n't seen any American style shortcakes here in Japan , I guess I prefer American style to Japanese . I 've already known that is really stupid thinking because I 'm definitely a stranger in Australia moreover ca n't speak English fluently as well as I 'm surely one of the laziest people in the world . The view from the school is pretty beautiful , there is mountain behind the buildings and blue ocean facing . I thought that I would have to write it again because the diary I just wrote disappeared when I clicked `` publish `` . Although there were some words missing , at least I did n't have to write it all over again . but the point is , in the related photo , one can see obviously the traces that the photo has been photoshopped , for the three officials are flying in the air . Then , this caused a new bash of photoshopping in the Chinese twitter - - - - - - - Xinlang Weibo . This country is boring for me because I know almost everything about my own country . I feel dizzy and down . I need to go to bed earlier than usual . Unfortunately , everyone forget that day . I was unhappy about that . So , I asked my best friends about my birthday in yesterday . We 'll arrive at my house at 7 : 00 pm and will go to Naeba in my car . Finally , want to have a good trip . Recently , I skipped writing a diary . I was very busy recently , so I skipped writing a diary . I often say `` I beg your pardon ? `` . At first , I thought the tactic did the trick , but no sooner had I tried to bring it to the window than the spider started to hang from the pen with its thread . Now I 'm studying English vocab , but I ca n't memorize it because I 'm getting sleepy . Using prepositions is difficult for me . Because I will take an enterning exam for university . To solve Japan 's English test , we should practice how to solve grammer . practice and a rewarding dessert Sometimes , I feel pessimistic because of my bad pronunciation . my teacher 's guiding . I like Carbonara , do you know any other delicious recipe for pasta ? I 'm sad when I order soba and I get very little of the toppings . Yesterday , I was free . : ) Therefore , I studied English and Korean . With its popularity , Kokyo - Running is producing a lot of money . And of course , they buy their running shoes and running gear . that is one of the reasons I work there . Although we are a very short distance from each other , in reality we are very far apart . I do n't know how to shorten our distance . Good morning everyone ! ! ! ! I must get to there by 1 PM and also I got up much earlier than before in order not to miss the train . Generally speaking , if the man has a date with girls , he would get there before she does . It was the most embarrassing time for me in my life . Presentation on Monday to my CEO There will be presentation about my job on the next Monday . ( 22nd June ) I am not good at presenting in English . But , I 'll be a host for the first time so I do n't know anything about it ! How does a gallon compare to a liter ? There are many reasons : They are teaching / We are learning the alphabet right now and the days of the week . I recommend you to visit it . My job is to be a clerk in a convenience store . So are there any architecture students or architects here ? In spite of the great destruction _ caused by _ WW2 , lots of historical monuments were restored and are now kept in order . last time I cooked , I tried Thailand Curry soup , and today it will be japanese sushi . Do you believe them ? I often find my favourite musician 's video clip by chance , which ca n't be found in the ordinary way . - - as it is too old , not in sales , or discontinued . interpersonal relation Its really difficult to deal with people . He said he mixed grape juice , coke , Karupisu , and melon soda . In fact , I wanted to watch ' Avatar ' , but it had stopped showing in the cinema . guys , today is Christmas , merry Christmas , it 's a happy tday today , enjoy it . The system of reward cards is so effective because it ensures repeat customers . Start writing a diary I have beenthinking thatI want to write a diary . I remember that my parents tried to give all of them away , and would n't let me keep any of them . When a friend of my father came to our home to take the remainder , I believed that if the guest could not find them , I could keep them at last . My and the others ' cell phones suddenly started ringing loudly to give us the earthquake warnings while we were stretching in the gym . She explained to us that the lights on the ceiling were very dangerous , so if you felt a big earthquake , please came out of here and stand next to the entrance . He 's out - going and likes to communicate with others . And I 'm going to study abroad in Boston in September of this year . please check my diary . Those were lovely memories He studies at a university in our prefecture . We enjoyed his message on the cellular phone . The world history test was difficult for me . Today I watched AVATAR When can we Earth people become harmonious with nature , at on with the animals and plants ? There 's a reason why I learn English , and that is because I want to become a great developer . I hope many people outside of Japan learn about anime , manga and Japanese culture . I do n't want him to be just a substitute . She is also a beginner , but she has already had some golf lessons from an instructor . ~ that I can easily tell the difference . My friend and I are planing to go snowboarding at a nearby mountain . I ca n't speak English , So , I need my friend 's speaking ability . By verbal communication . I first listened to Avril when I was a junior high school student . Although I know it 's necessary and helpful for me to get license of the apparatus , but I just ca n't raise my interest . but it was very exciting ! We ate lunch then after that we met her husband and we did some sightseeing in San Francisco . It was very wonderful . And we went to eat dinner IZAKAYA ( Japanese food ) in San Jose . I glad you corrected my sentence diary before . But I ate too much ! I had potato chips , chocolate , and pockyX ( Lately I exercise to core rhythm . I 'm a big fan of Michael Jackson . We can view the superb landscape from the observation area / deck just like the Tokyo Tower . Additionally , the invention of the airplane led to the reduction of the amount of CO2 emitted into the atmosphere . However , during most of its flying time , it uses the neutral wind in the atmosphere and does not require to use its engines to fly . Therefore , the amount of CO2 emitted by an airplane is much less than using a car or ship to travel the same distance . I 'm transfer student from Japan so I am a junior and my major is Psychology . The title is `` Gay referee `` . I could n't help laughing when I saw this at first . It 's the first diary ! I met old friends in Shinjuku ! I 'm very tired . Of course parents have to train their children to be good adults . Friend 's father : `` what is your name ? `` I was very surprised lol My friend 's father was a gentleman like British nobles . I have few chance to communicate with foreign people and my classmates do n't want to spend much time learning English . I am learning English . Do you have any travel plans ? My company is a large employer and the CEO resigned for health reasons . Your country has provided technical assistance to developing countries , right ? The Japanese have thought of sakura ( cherry blossom ) as the flower which symbolizes the nation . But , there was no officiator so it was interesting I have a pre - level 2 English Language Proficiency test on Sunday . That means our item has potential , and we could get capital support . I need to keep up with studying English ! n I 'm always nervous when I 'm trying to speak in English . One of important point of presenting is to use simple and short sentences . Next , I put data such as `` logos `` `` pictures `` and `` links `` all in the same folder . my hometown BUSAN Hello everyone ! ~ Today I am going to tell you about my hometown , Busan . Suddenly , I wanted to eat fried chicken ! The bakery sells fried chicken . My favorite options are clinical psychology , industrial psychology and social psychology . When it comes to English pronunciation for non - native speakers , the ' El ' sound is one of the most difficult consonants . Is it understandable if I read them without the ' El ' sound ? I 'm surprised that my Japanese entry had been corrected by a netizen last night . I 'm gon na Edinburgh ( The capital of Scotland ) on thursday with some friends . Her wedding will take place in northern Ireland . It is far from here ( Dublin ) , I was surprised to know there are a lot of people who want to learn Japanese . I thought that learning Japanese was difficult for native English speakers but as I read their journals , I saw that they have seriously been learning Japanese . Now , I 'm attending both Buddhist temple and Christian congregation . The believers are forbidden to smoke , and male attendants must wear neck - tie at every congregation . We got to learn its doctrine deeply before we become believers . I hate to tell either group that I am not interested ! Then , she emailed me for replying . I 've been suffering from a lack of Vitamin B1 . this morning I met my chinese friend to go to a exhibition . I have been living in Los Angeles for three month already . But my English is still poor . about my lunch . So , I bought lunch at NATURAL LAWSON . I had never talked with English speakers before , and I 'm terrible at English . There are many people which are not able to rent any flat in Moscow therefore a campus is the ideal variant for them . Today , I ate Mister Doughnut with my friend . Recently , a new doughnut was put on sale . My friend ate `` MOSDO `` , which was collaborate Mister Doughnut and MOS burger . Something happened on the site I Continued and the education at high school and university . Today I waited for my girlfriend at the station by the university , and we went to McDonald 's . Of course it 's cheaper to cook at home using ingredients from the ' fridge rather than eating out , but I know very well the taste of food I have cooked . We put our small stones on Kanaeisi and prayed about our wish . and the waiter serves you the `` tapa `` - it can be anomelette , sausages , bread with ham , etc . It was an opportunity to acquaint myself with everyone some more . I played volleyball , basketball and watching movies . The doctor prescribed some medicine . In last sumo tournament , he lost easily , so media said that he had to retire because he become weak . But , in this sumo tournament , he won the championship . People are willing to study English , Reading , Listening and Writing but not speaking . The first factor is that people shy and have less confidence when compared to foreigners . hired at first sight ? I think I was calm when introducing myself . If there 's `` Love at first sight `` , is there any interview called `` hired at first sight `` ? I want to wear it and work at there early . This isbecause I like to talk topeople . Therefore , summer vacation is boring forme . I love him even though he is very naughty and I can feel that he loves me too . I 'm a social smoker . ' Are you available now ? ' This is my first time to write a diary entry on internet , so I have no idea what to write . and talk very smoothly . Secondly , I am interested in the NY because it is the center of the world for the economics field . This weekend I stayed at the school . This is the first time I did n't come home on a weekend . Next week I will prepare for a final exam . I would appreciate it if you could check my diary . Last Friday , I met one of my university classmates . So , I watched my favorite American TV drama ( to motivate me ) / ( as motivation . ) When the fertilization succeeds , the pumpkins ' babies will bebrilliant . By the way , human girls in love are brilliant , right ? The pumpkins are in love and brilliant , too . So , it was a great privilege for me to be there and I was also very happy to see that the two of them looked like the happiest couple in the world ! Today 's seminar just ended . Every time the seminar finishes , I feel like I should have studied more in depth . My friend invited me to go to see a football match `` Brazil vs Scotland `` He is from Brazil . After school , I talked with my friend in a cafe . I have been waiting for the D - S company 's response for a long time , but I have n't received anything yet . Because it 's a big multinational company , I think it would be a great chance for me , although the position is n't as good as I thought . I love Indian dishes , especially Curry . I heard that in India vegetarian food is very popular . So I went to India this summer and enjoyed it . When I stay at home instead of staying at school , time passes so fast . But I 'll keep writing to practice my Engilsh . He also speaks English . I was suprised to see how different Okinawan customs and culture are from that of themain land , where I lived before . One of the main differences is MOAI , which is similar to privatized insurance coverage systems in other countries , but with some differences . If one of the members is havingtrouble economically , he can receive money through the donations made at the party . Lets start studying English ! ! I am beginner . - - - used at a restaurant - - - I prepared to leave for the station and slipped on my shoes in a hurry . It was an interesting and slightly embarrassing day . The movie was called `` Inception , `` and it was very interesting . I recommend it . I will change . The Englishman who is a member of my gym came to do some training . He taught me some English words today , too . `` Consult a dictionary `` sounds too serious . I would talk with him using the words that he taught me today . Of course , I went to vote for a mayoral election . The answer starts with yes or no . I would like to speak English more ! `` Hello , my name is Abby , a high school student . By the way , yesterday , I edited a film that my friends and I took . I especially enjoy making scripts for listeners . At night , my next neighbor always was annoying me because he played games with his friends which annoyed me , but he disappeared lately . Anyway , I felt a kind of healing by watching such cute , adorable fishes , birds , and mammals . . . My God , I 'm going crazy . My first writing My job is a doctor . most of the ambulance users are patients of mild disease that don ` t have any need for it . Japanese society is aging rapidly . Is your country 's ambulance system free or not free ? I am thinking that 's bad for my body but I can not stop drinking coffee everyday . I 'm a university student in Japan and want to be major in control theory . I put in more effort in indian english literature , so my dissertation is related to this . There were many Manga pictures that were drawn on small or large papers . I enjoy working there because I ( get to ) see many different people every day . when I got back , I met a breakfast seller . I went ahead and bought breakfast for my friend , but when I gave the money to her , she charged me more money because she thought that I did n't know the price of the breakfast . It was so bad . When I was a high school student , my team won in the national athletic meeting but I did n't paticipate in that ! ! But to join this company , I need to acquire English . I want to make you an acquaintance ! today , our customer manager came , he asked me some questions , and then he asked me whether I 've began my foreign trades or not , I answered ' not yet ' , at the same time I felt so ashamed . In order to receive a present from my friend , I went to Hibiya station . The present was some uncured hams and cheese . Of course , I also taught him Japanese . I gave up doing climbing because my hip was still in pain . I joined the English conversation circle in the morning . I better work hard because I need lots of money . Local people may not think they are interesting but I do . Sobald ich mich entschied hinauszugehen , fing es an zu regnen . Ich bin eine faule Person . My listening / speaking level is very poor . . . I go to middle school as a volunteer on Friday mornings . ( every Friday morning ) Certainly I know it is important to do so to improve my English . It may be fun for beginners to talk such as things . Do you have any ideas and can you recommend something to me . Wednesday - - - present a report of China and Macao I must go and do something for my studies . So I live my life as usual after the disaster . Even though I feel sorry about the cancelation , I will cancel it because the Australian one is a better program considering more earnest students of English will gather around it than the Davis one . . . . in order to know more about the difference between theory and reality . I used to think that working in a library must be boring , but after a while , I found that every job must have its boring or mundane part . But , every job also must have its meaningful part , and how much you learn from that job depends on the efforts you put in . As for those earrings , do you think they | fit | him properly ? I hope he over come wisely . These days I have been very happy because I made many friends here . . . lang - 8 is really a beautiful website . . . On this website I 've met a lot of native English speakers . . . . it is so cool . . . Where I am the time is 1 : 34 . . It is very late , but I 'm not sleepy . . I just rememberedthat I have n't written a new diary . . so I must do it . . . Usually I think dogs can be good friends with human beings . . . They are loyal and they can do things that people ca n't . . Maybe some of you like dogs too . . This is more like Google than the one that was created originally . In addition , excess money means a student can enjoy his campus life . Second , a student working as a part time job has a chance to expand his relationships . They can learn a lot of things to be required from a company throught a part time job , for example communication skills , experience in varous jobs in various office shops to get a better idea of what kind of job they want . But we cooperated and cooked . I can encourage their protest and criticize the dictator immediately by writing an encouraging comment . I 'm looking forward to that ! We were very very tired , bacause there were many steps in front of the shrine . Especially my wife was so tired , because of the baby in her stomach . I had learned early on that it is a common convention to do volunteer service in communities in many western countries . Further efforts are needed to spread the concept of volunteerism among people . In many ways , voluntary activities are always linked with official factors which can be an obstacle for people to be ( come ) a volunteer . For example , we are often motivated to do voluntary service to gain the edge on / over the academy in school . But evidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporeans hang out with Singaporeans , Indonesians stay with Indonesians , Vietnamese play with Vietnamese . And we are trying to figure out the most efficient methods to improve our speaking . SO , good luck for us . Ninjas still exist ! ? Then I will call my friends to tell them I have just arrived in sun city . I plan to visit the Grand Canyon . I could n't stop tearing up when I thought of Jenny 's sad life and Oliver 's feelings after he lost his dearest wife . ' ' The time when you think it 's late is perfect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' There was one thing I could not understand , so I went to my school to study it with some books there . I think that as far as temperature , my country is about 10 degrees C lower than here . My house is particularly old and too big . . During the lesson , I I became calm . So , I going to my parent 's house to join a oyster party now ! Am I am getting old fashioned ? ? ? I am very / feel dreadful . During this idle time , I watched T . V . In my school it is tradition to wear something green . Tomorow will be an easy day . It was a very enjoyable time . Today , I had surfed some sites and I found Torrent . So I downloaded some dramas about 70GB . But I hardly speak , hear , and I 'm not good at reading and writing . The unspoken , passionate coherence which unites a large numer of people , is one of the most fantastic parts of going to a concert . If there was less furniture in the room , it could reduce the time needed to clean the room . Although it was quite late night , we discussed lots of things such as religion , national spirit , as well as ourselves . be American actors ( such as Keanu Reeves etc . ) It 's my first time writing in this diary ~ I hope to meet other friends meet unexpectedly the author introduced this web page , so I ' m We walked to Kine Naoto 's open air concert tonight . He is member of TM NETWORK that are very famous in Japan . The open air concert is held by volunteers every year . But the concert may not be held next year . I hope that the concert is to continue . My favorite story is `` A Study in Scarlet `` . Moreover , I have other parties and events for Christmas this weekend . Ten years ago , I watched the TV with my family when the second airplane crashed into the twin towers . I never thought that suicide terrorist attacks would happen in the US . The terrorists made airplanes turn into missiles and destroyed not only the world trade center but also other important American facilities . I think the difficulty of English for most Japanese is pronunciation . We Japanese start to study English from junior high school days ( 12 years old , but now it got changed to earlier ) translate to Japanese . The pronunciation was ignored ! because actual native speaker ca n't understand badly pronounced English like I do . . . I read books written about some scholor 's theory and try to understand the rules , ' When you pronounce th , your tongue must be between your teeth or something like that . Today , I watched the soccer match between Japan and Korea . If I knew how to use foreign emoticons , _ I can describe my emotions clearly . It made me amazed and excited . I think its opening movie is the best one in any japanese anime 's . Today , the professor of the energy transforming engineering class told us some of his doubts on global warming . This PIXAR movie contains fellowship , environmental issues , problems and love . On Saturday , I had a barbeque near the river . Therefore , astronauts should have the ability to solve difficult questions / problems . Because I have made many friends among the people studying Japanese with me . I have always thought study is a tearful thing . Tomorrow it will be fine all day . My grammar is bad , that 's why my article is very terrible . My English teacher always want me to write an English composition , but I am scared about it . My father took me there , and my boss was waiting for me Okay I 'll explain this . I like traveling around the world . Tokyo is Japan 's center of fashion , show business , economics , and politics , but the center of American politics is Washington DC . My memory of a trip . It is located in Palo Alto , California . During the Gulf war , because we were not able to dispatch the SDF to Kwait , we assisted Kuwait and the international force with a plenty of money - - more than 13 billion dollars . ( After the end of the Gulf war , the newspaper in Kuwait listed the countries which had assisted them on its paper , but there was no mention of Japan . ) I 'm confused . I met friends from university days from five years ago . Our company holds English classes twice a week on Monday and Saturday . In the Saturday class , there are only 3 or 4 members registerd . I 'm Surprised ! Every day is a pain ( Okay , the dictionary translates like that but I would n't say it 's a pain ; too powerful a word . I 'd say it 's crap . ) because I need to find a topic . Yea , rebellion ! Yeah , typos ! Dear reader , if you have sometime , do n't hesitate to read my last text about the Wild West because I had no correction . Boo - hoo . ( really weird that onomatopoeia , I do n't think about someone crying when I read that , a barking dog instead ) When I got here , I found the people here are so friendly , and I believe that my English will make great progresses ! I like seeing street fashion pics . . So I often go on street fashion webzines and buy fashion magazines . It is very interesting how people wear clothing . So if you are curious about young Korean fashion trends , I recommend going to that site . . I think there are people who wear various styles of clothing on this site . I went to London four years ago . Modern museum there is very good ! In the former situation , there is a `` Wow `` , and in the latter , `` Olleh ! `` . I will continue to write this . Everyone , please be careful ! Japanese summer 's are very hot and humid ! Did we copy the European style ? For all intents and purposes , it 's arduous for Taiwan 's baseball team to defend against Korea , which recruited many elites from KBO and MLB . Hi , I am a Catholic . I always go to Catholic church on Sundays . Catholics 's name is Francesco of Assisi . They have a lot of fans who like 2PM 's funny shows and unique character . They have culture - centered projects like graffiti , hip - hop dance and movie making all over the world . Yet , The question is always be answered by asking this question : Then I would have brought more advanced technology back at the ' same ' time . . . . . . . is it an endless loop ? Of course , all of this thing I label it with ' I think ' , because I have no confidence that I could represent these correctly and exactly . mina san konnichiwa kyou , boku wa anatatachi ga boku ni tsuite mo shitte hoshii kara , boku no shumi ni tsuite hanashite mitai to omoimasu . Watashi no geinoujin no keiken wa takusan dewa arimasenga kodomo no toki kara hajimemashita . Watashi no gakkou gekijou no kurabu de , 9sai kara , takusan no katsudou wo shimasita . mata tsune ni shuyaku dashita . Today I told about trains which are the main transportation in Japan . Some people say `` I do n't have a favorite color , `` which I find unbelievable . It says that this color gives impression of cowardice . It was because she was in danger due to a life - threatening premature delivery and her fetuses needed to be taken care of in the NICU ( newborn intensive care unit So I made the decision to become a fire fighter ( It 's very suitable for my character . ) I am waiting to call the fire station . They are very beautiful . I 've never been able to part with those cards . Use Google to find some Linux distributions compiled for non - geek users . The visa system is discrimination on the national level ! If cases when you do n't need a visa are an exception , however , you will understand my feelings . The two reading tests were worse and worse . Theoretically , it is the easiest task but I got just 2 points out of 10 . I 'm very sad . I think that Tatsuya is lovely ! Mainly I want to go shopping , view the very high skyscrapers and go sightseeing . This year , I aim to get a TOEIC score of 800 points . My favorite musicians are OASIS , The Beatles , Ashlee Simpson , I can send my money to China by an illegal method - - we call it the `` black market `` , but you know it 's illegal and it will cost me too much . So masterful . I am a temporary worker now . The exam was about general knowledgeand writing . Ofcourse , I shouted `` No way ! `` haha : D From there , I write sentences to describe my ideas . I used to make rides by using vegetables which are looked like a horse for my grandmother to ride when she comes here and goes back to heaven . My lunch was pickled cowpea with some meat and tomato egg soup today . But I did not go to the gallery because I was lazy . I decided to go there , but now I do n't really want to go . First time I got interested in it was when I studyed at school and joined an english study group . Then , a few years later , I went to Germany through international exchange , there I had to communicate in english cause my german was even worse than my english , and my language barrier was broken there ) Prepositions and phrasal verbs - that 's what is driving me crazy now % ) since Edison 's great invention ( mmm , is this true ? ) . the situation where you do n't sleep all night long In Japan , fake erotic crimes have been growing into public problems and many accused victims end up getting arrested . I do n't know why parents treat teenagers like children . Gambling is frightening and dangerous , the goverment is trying to deal with it , but not successfully . . * Plener - painting of countryside or of the streets . The scientific name is Bellis serenis ( Perennis ? ) I heard Google , the giant internet company , will release a brand TV service called `` google TV `` The idea is very simple ; it 's just putting internet functions on TV . Google TV seems to offer us a user - friendly interface and enables us to enjoy internet videos on TV . But I think the Youtube videos are not high quality videos , so it 's hard to adapt them to HD TVs . My son appeared in 3 games . At first , he ran the 15MR race . He got off to a bad start . Then I realized that I should use new vocabulary when I learn it . I hope it will help me to acquire new vocabulary easily . I deplete so much of my energy when I read English articles because of difficulty . I used new vocabulary of `` deplete `` , precipitous `` , `` retiring `` as well . Nevertheless , I like to study English . They are very worried about their future . I wrote some English sentences . He taught English to us by using the book . In this class , it was impressive for me that Simon & Garfunkel 's `` I am a rock `` was taught . and when I 'm active , it 's very painful . after about 2 weeks exercise , I feel great . Recently , I 've been thinking about how I used to live in Japan . Next , we shot the soccer - ball , and touched the boundary markers with the ball . My father is a public servant . He supervises civil construction . He is familiar with cars . My name is Roger , I graduated from the Maritime college . together . It feels like whenever she wants something - even a big item - she just buys it without shopping around to compare prices beforehand . I have been thinking whether to buy ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convenient and useful . The distance was about more than 50km ! If you want to join this activity , you need to buy your bicycle . But general bicycles are no use . You have to buy a sophisticated bicycle which can go in all places , like high steeps . My bicycle cost me 62000 yen . because I 'm here . Once a foreigner talked to me in English , and I could understand him , but I could n't express myself . Because of the earthquake in this year . But many people do not go abroard . And I liked the dessert called Kazandibi . He told me `` Your mother is frustrated right now . Japanese cooking uses soy sauce and sweet rice wine . I worked on a program in the afternoon . I made an appointment with a person in charge yesterday . etc . are also in existence . Believing in Jesus is cool . I believe in my God We can share our secrets together he had thrown it away and went home . * I guess * I feel uneasy about my future , because an important exam is coming near . How should I try to work hard ? Do the benefits of genetically modified crops outweigh the danger ? After job Then we can each talk about our jobs , ideas or anything else freely . Baba is like a priest . I could see the fast river from one of my windows and the mountains from the other window . This is the first time to write in my diary ! She spoke English so fast that I could n't understand . It is very cold at the office because of the air conditioner . ( by the way , Do you know about `` UFO catchers `` ? It has no nicotine or tar but it glows red on the edge and puts out smoke . I went to school yesterday , It is much easier to catch a precise meaning when we study using a introduction written in English not Korean . I have a medical test tomorrow . but here was my weekend : I did not study hard . I was searching for an internship job recently and I got one yesterday . Finally , I work as a information collector . May told Guy that she wo n't come to work tomorrow . Oh , what should I do ? Should I continue ? The work is boring and repetitive . Today 's fireworks are so elaborate , and we are very impressed by them . We wanted to speak to them , but we could n't because we could n't speak English well ! I have not written daily for Lang - 8 . I have been thinking of writing an entry during these two weeks . I 'd like to continue this daily . I bought clothes yesterday . I am wearing it in my room recently . Am I sick ? Why do I have two conflicting thoughts in the day and night as if my brain separated into two pieces ? Momentarily , I wish I would not consider the complicated love without end . I just want to come back to NanNing as soon as possible ; I just want to date Evan ; I just want to go shopping in the Intenational Trade Center ; and I just want to do my own business . Love is not just magic but it is something you have to keep . We have n't met for a year , so I was very pleased . And I thought that they are trying with much effort to improve their English skill . The contents were about how administrate the seminor in this term . I went to traditional market with my wife today . We bought vegetables , squid and apples . First of all , most of them married among the attendants to keep their community . So many Peranakan Chinese learned English . Many Europeans hired them as translators . Hahaha , I just watched the first episode of `` Primeval `` . A few days ago , my oldest son had a stye , today my second son got an infection of the middle ear . Fortunately the ear clinic opened , I took him to the clinic . After entering university , I rarely read English stuff , except for those news about my beloved singer . I am studying English for the TOEIC test on January 11th . I work at a clothing store in large shopping mall , which is turning 20 years old at the end of this month . Despite that , I was not able to keep myself from getting bored . I am a Chinese girl living and studying in Beijing . I have trouble in English . I want native speakers and people who are learning foreign languages to teach me . I often hear that English is the most important language of all to learn in order to succeed in the world . I am very sad , I recommend this Manga to everyone . I 'm looking forward to seeing them . I 'm a Chinese girl who is learning English and Japanese . I 'm so happy to join to this site and I 'm so interesting to recognizing to another people from all the world and finaly Ifound group who interesting with reading books I like reading so much specially novels and stories thank you and I want to be a friend Last year , I went to Anchor Watt , which is one of the most famous ruins is a city near Anchor Watt , and went to the ruins by bicycle . I looked around not only well - known spots such as Anchor Watt and Anchor Tom but also little - known historical sites , stopped by villages and experienced some adventures like encountering cows in the jungle . I stayed in a city near the historical site and went to the central market there before going to Machupicu . We immediately became friends and I promised that I would give her a souvenir , a book about the Inca Emperor , after I came back from Machupichu . Actually , I ended up not being able to meet her again because she was in school at the time I visited her , so I left my souvenir with her mother . Does it exist in other countries ? The other day , I was watching a variety show on TV and an Australian comedian said this proverb . I expect it does n't exist . My company has high tolerance for diversities . The fare I paid for the cab is half as much as the fare I paid for train . And if we do it . He will give us happiness , and Heaven after death The last prophet who sent was Mohmmad . But I rarely use this machine , because I have a lot of gadgets . In evening , we went to the eel bowl restaurant near my house . We arrived at the restaurant am at 5 : 30 . The restaurant opened at 5 : 00 . We were suprised that there was a long line in front of the restaurant . Just 30 minutes after the restaurant opened . I have to check whether the wired funds were received into my account . I hesitated as to whether to buy or not to buy it for a long time , and I decided not to . Little by little English is spreading through my mind , and the more I express myself in English the easier I can listen to it . I hope I 'll be helpful : - ) I just registered on this site to learn English and to communicate with people from other countries in English . But first , I have to pass the oral examination on May 14 . but this is a different country . By the way I ` ve been to Singapore , Guam , Korea and China . I felt very good about my Chinese pronunciation . And I also realized what a small world I 've been living in and I want to explore the bigger world that is out there . Which Devices Do You Recommend for Reading Electoric Books ? iPad or Kinddle ? We cooked bread , tofu , and Zoni which is a soy sauce based soup in a baked rice cake . However , we were all smiling and it gave us a happy feeling . but other options are not perfect . ( My goal is to study Medicine , which is why I need to get my English upgraded to a certain level . . . America has decided to send more humanitarian aid to Pakistan to put a dent in the anti - America sentiment . Not after long , I got a chance to go to Cambodia for 10 days as a mission trip . And I felt shameful about my very comfortable life . So I want to study English to get a job in this field and help many people in the world . The new term is the time for me to make a new resolution to stop playing online games . So far , I am pleased that I have resisted the temptation of the game for a week . To be honest , I am not sure whether or not I will stick my resolution for a long time . None the less , I 'm taking French lessons , I am thinking about the party after class . K who is the organiser of today 's party asked me , whether I will come to the party or not . He and my classmate said something , but I could n't understand . In France , women kiss my cheek . I was very embarrassed . So if you hope to work at a large company , I think you have to have excellent abilities . A : It is a different mindset , going on stage with the band , as opposed to going to a studio . . . . They will speak fluent Japanese in future . s : The food in Australia is not to my taste at all : < It 's so oily . . there are lots of Chinese or Japanese restaurants except there are no Korean restaurants . Just now I saw the news of Pina Bausch 's death while browsing the web . Some kind of beauty , understanding , and immense love , has gone . This is my first time writing something here . The examiner asked me something ( I forgot lol ) . I answered , `` there are many costs to make a mascots . `` These castles had been created to collect taxes from the ships that passed through . We were on the course best suited for sightseeing because there were lots of these ancient castles . The reason for which they were created is terrible . Wakeboarding is not a popular sport in Japan but it is a very fantastic ? sport . Anyway , The performance was interesting ; I had dinner with my friends , and we At the company my trainer called me and blamed me about the car details . I must check before giving details to her . You know , when she is training me she never teaches me a lot about my job , since the first 2 days . She would like me to be perfect at the job . I do n't have experience so I do n't know how I can be very good . I would like a long time to become perfect but she does n't understand about that . I would like to be able to speak and write English very well and then I can find another job and leave the company . I do n't like the people , I can not accept insincerity . I would like like to punch her before I leave , too . I 'm joking . I just realized my journal entries are becoming to 443 stories already . But I think I need to learn English from a professional English teacher . Finally , she said `` I 'm looking forward to seeing you . `` This is my first diary in English . Making imitations is very bad but in cases where they can make lots of people happy , I think copy products are okay . Is her disappearance really not sad ? I then tried to examine this thesis . Then I thought : Do I really play a role in my family ? She laughed and said : I left you some spaghetti bolognaise in the kitchen . I know your stomach by heart ! And as I dug into my spaghetti , I thought about something else . It says the existing education system is for training professors , researchers and laywers . Most people enter graduate school becuase they enjoy synthesizing and analyzing information . They like to read , write and debate over academic issues . People in TWN pursue a master degree in order to find a decent job , including me . I really regret my decision to go back to school , but there 's no going back . I hope to finish my essay as soon as possible and devote myself to my career again . But these honey was really one drug for children in my childhood . Most supermarkets and shops are closed all day . In addition , I want to speak to people all around the world and to work in America . So , I need dictionary . I want a digital dictionary very much ! Personally , I think their view only partially true . We ca n't use a lot of electricity after the earthquake caused a fire in the nuclear plant . Since it was late and it was rainy , I decided that I wo n't read English today . To some extent , I am , but today my throat is still hoarse , so I chose to give up . After breakfast , I spent some time studying grammar as well as some reading practice and dictation exercise . It 's overweight for my height . It was a trap . Have you ever seen a Corolla broken down ? Of course , it 's good for our health . I eat it every morning with soybean flour and green tea powder . Yes , WRONG , I think . I was tired , but it was very interesting . Please be really strict with my written expressions , not only with the faults I commit , but also tell me how would you say anything if it sounds weird . I have to transfer gallons to liters , miles to kilometers , and dollars to yen and then make the calculation . This is a Japanese pop song . It 's usually performed solo . This is another arrangement . But I did n't spoil it . I like to think a lot about Miyazaki 's animation . It gives me peace in my heart and relaxes me a lot , though maybe some Japanese think that it is a little old - fashioned . I like to communicate with people all around the world and share the culture and life of different places . Absolutely , these results are not enough for me . My vocabulary is over 18000 ! ? I forgot where I heard about it , but according to some site , an average collage graduate native knows more than 50000 words . We were going to join a Glass Boat Tour , but we could n't do that because of the typhoon . Hayao power ! I love these movies because they are full of suspense , feeling and beautiful music ! I have Ponyo 's and Mononoke 's music and I listen to it every morning before class . I sprinkled a little salt and pepper on the fish , and poured some white wine . The doctor said `` she has the flu , too . `` . All employees attended this party . It 's a very important party becausse it expresses each person 's thanks to their co - workers . Then I noticed the cups and glasses displayed in the bar had some very beautiful and artistic flower paintings , such as orchid , jasmine , lily , rose , etc . Plus , the mashed potatoes were topped with brown gravy and it was delicious , very soft and smooth . So , I am learning to play bass guitar . at the beginning of next month . I fulfilled it successfully . I am too busy these days , so I have had no time to practice my English writing . Since then , I can concentrate on reading the book and understand what the author says clearly . I tried to make my friends , family , and myself . Swimming lesson . She goes to UNO while rasing her daughter who is just 2 years old . I really wanted to see her daughter . Her daughter was soooo cute ! ! Furthermore , she has so much energy ! She ran around the room , kitchen and the ailes all the time except during the dinner . hahah , I am sorry to leave for a long time because of my college 's military training . tonalsap lake rock ' n ' roll show ! ! Finally the day is coming , Tonalsap Lake Rock ' n ' Roll Show ! ! I wonder if the boat will go under . . . We already know the way to study languages . I know that listening to English conversation and speaking in English a lot are good ways , but I think memorizing is the best way . I think I would n't be able towrite diaries in English , speak in English , and listen to what foreigners say without memorizing English words and sentences . I felt like I was in a sardine can . An au - pair lives with the host family and takes care of their children and does a little housekeeping . but it 's a very famous program . I 'm seriously considering the au - pair program these days . In Japan , students usually have to wear a uniform from elementary high school students to wear uniforms . The Japanese education system puts emphasis on reading and grammar . He made a lot of friends who like to drink alcohol . I rarely drink alcohol but I thought it was good I am going to exercise near my house . They said , `` you can have a second interview and take a second written test . `` I have to review excel and word , and Japanese . I can not study and work at the same time because English fluency is required . English quiz Which do you want to learn , English or science ? After three months , you will have a skinny and healthy body . I will eat a lunch with senior co - workers who , I respect . A few days ago , I tackled the repair of my mountain bike . So I decided to overhaul it by myself . I like japanese culture and its atmosphere , last year I spent 3 weeks studying the language to see if I liked it or not . I liked it because of the way it sounded to my non japanese ears , I liked it as I learned hiragana and katakana but as soon as kanji began to show his scary face : D to me , I got disappointed and gave up , can anyone tell me why japanese people do n't use only hiragana and katakana to make their language easier ? If not , I 'll strongly recommend you to read because it 's very effective to improve . Second , you can increase your vocabulary much , much faster than compared to when you just write what you want . There is n't any comment for my previous diary . Please feel free to write a comment to my diary . For instance , plants utilize the light of the sun to conduct photosynthesis through thier chlorophills . The solar panels absorb the solar energy and generate some electricity without sustainable and possibly has the potential to enable us to coexist with any other creatures paticularly those on the verge of extinction . This may be belaboring the obvious , but the sun is the source of our energy . First , I must hand in the application for seminar by 1 p . m . We just decided to meet . Luckily , it did n't rain although it was cloudy . It tasted great but it was also expensive . Though English is difficult because it is so different from Korean , but it is interesting . It 's really wonderful ~ I played basketball with my classmates in the afternoon . I have never heard Japanese in the English song . but I do n't know the difference . Yesterday , my daughter took part in a Cheer leading Competition which is also an annual festival where the cheer leading team my daughter belongs to participates every year . The competition was held at the stadium called Kita Yell . The stadium was so big that my daughter got a little nervous . It 's said that a famous TV series producer has been producing several series which are all copied from classics . Im just writing this to myself , since there will be lots of people waiting to be corrected . I 'm mix ( I 'm not sure if you guys say mix or mixed but I 'll just wait until someone tells me : p ) Does it make sense ? ) In this case , what does `` lovely `` mean ? And , more sadly , now his wife and my aunt , have been diagnosed with lung cancer too . In conclusion , I will try to know about my own country in order to know about many countries all over the world . However , I want to enjoy this wonderful opportunity . This movie 's title is slumdog $ millionaire . it was not a bit of problem to me because I was full of expectation and pleasure that I was going to see the exhibition at last ! It was a very surprising and amazing artwork that expressed negative social trouble using fancy and unique colours . Whereas restaurant - delivered meals are convenient because we do n't need to cook . I can see many picturesfrom restaurants onFacebook . In conclusion , home - made meals are nutritious and inexpensive , so I agreethat home - made meals are thebest . We need to cook almost every day , but occasional restaurant - meals are enjoyable . I went to Breeze - Breeze which had a grand opening today . But luckily , she looks fine and feels just a little bit of pain . And I am a bit familiar with reading english using technical terms , but not of daily life so much , or politics , and so on . This afternoon , I had an oral English course . He is a very good teacher and I love him and his course very much . He said that it was not a problem and he hoped I would come back to take part in the class . I thought he was very friendly and generous . I like coldplay 's yellow , I wanted to sing that song tonight and record it , but I could n't sing the words clearly and fluently . I recall that when I was in junior high school my English teacher taught me a song named `` yesterday once more `` , and I can still remember some words so I recored it and uploaded it to my voice blog . I would like to ponder about the case and to hear your opinion ( if only my friends did n't lose hope to read something from me , sorry for my long break ) . But they live 5000km away from each other and do n't get the opportunity to pay visits each other often . YAMATO does vocals . My body is likely to be influenced by weather . But why at that particular point in time , prediction was important , is because it is closely related to my argumentation . I am disappointed in my English You said you can pick me up at the airport . Who will get to be the champion in Germmany GP . About a month ago , it was announced that Dragon Quest 9 ( DQ9 ) 's release would be postponed . The next series is supposed to be released by NINTENDO DS . I was fully prepared to buy it only for the purpose of playing DQ9 . I felt very sad because SQUIRE ENIX announced it . NINTENDO DS is the hardware which is worth completely nothing because DQ9 is n't released yet . But that announcement is unacceptable . There are many rumors about that on the net . I read many articles and thought about it . It 's the device by which we can play games without buying software . In the previous series , SQUIRE ENIX set up a provision against Majicon . In the start of the game , the ship where the main character get 's on did n't arrive at the harbor even if the player waited for a long time . The company produced the game like that in case that player uses Majicon . But I heard that the provision / trap was broken in 6 hours after DQ was released and was published on net . I think that SQUIRE ENIX is preparing for a complicated provision next time . In general , high school does not have a professional career conductor in each schools . However teachers also have their own work for everyday tuitions ( ? ) , and it seems to give them limitation on working for their students who have difficulty thinking on their future career . Therefore , it is recommended for teachers to share the work load with professional career conductors , and teachers will be able to reduce their amount of work . What do you think , are they alive or just an imaginary animal ? If god , ghost and creator from outer space are in existance , it 's only natural that a Vampire also live somewhere . Does it sound weird ? I understand that I can use 20000 yen for Shinkansen bullet train tickets , horse riding lessons and Cyndi Lauper 's concert tickets ! At times , we even establish an interesting rapport transcending the relationship between teacher and students . So , I want to learn English hard , and talk English on skype . The year before last , when I visited France , he was kind to us . He stayed at our house for three months then . His Japanese has improved very much now . It is called `` Setsubun `` , and is done the day before the coming of spring . closed friends are like our own mirrors He also has some mental problems which he seldom faces himself . That 's why , even in private , he has never had a relationship with a girl - even though he is fairly handsome . He ca n't do anything without communicating with colleagues . O , my senior , is 27 years old , a virgin , and has n't had a job for 2 years . He is now studying sociology to get a certification . He tends to frown on his environment . Before I had respected him as if I were his real younger brother . I hope it is n't diseased and , if it is , it will be well soon . It 's very convenient . However , It is difficult for me to understand Russian grammar . By the way , I ca n't understand English grammar too . But , I want to improve my English skill . Should I write down my thoughts and feelings , using words and grammar as simple as I can ? Or , should I use unfamiliar and difficult words and grammar ? Many Japanese are unable to understand grammar like the present perfect tense ? when I stayed in the Philippines , Although , around here , most of my friends like aocole At one time I thought that people who exhaust their lives were succesful . I feel satisfaction working . Now is the time when I have to be enthusiastic All these verbs and phraseologies . If I 'm consistent , I 'll not slip so often . The reason why is when I noticed my mistake I thought the boss was absolutely angry with me . It is because my boss sometimes is angry about little things to my co - worker and the other reason is from my old mind of childhood . And I became protective over myself . Above all , I can take care myself . I am going to try to improve again as an adult . One of my favorite fruit is ' ' BANANA ' ' . I know this sentence is damn wrong but I think you can get an idea from it How should I correct that sentence ? I promised myself to not just party when I got back . You know , customer service will be a big business in the future . Because , they themselves are the baddest of bad , thieves . Until his father was dead and his mother 's health was becoming worse , his mother started imploring him to work . After his mother died , he started to work , however ; he always complained that the work environment was too hot and work was too hard . Finally , he could n't prevent DEATH to snatch away his life . Today , my best friend Doll gave this website to me . she knows I need help to improve my english for my job . After signing up for Lang - 8 , I have found it is a very useful website . There 's so many people who want to study foreign languages . We always send cars or give gifts to my friend ! Recently I 've been busy writing speech contest sentences . so exhausted . . In Korea , there are so many beggars in the streets . When I was a college student , I met a Turkish guy . So , I will keep a short dairy here as frequently as possible . There is no sick leave at a normal company in Japan . My house is n't far from the University of Washington , and I 've always wanted to watch a live game of basketball ( `` If I have the opportunity `` does n't work here . ) I have been surprised at the popularity of university sports since I came here . In Japan , most university sports are n't as famous as in America . I 'll try to watch their game live someday . If you go see games in a sport stadium , can you recommend me a sport to watch ? I really need to improve my English skills including listening , reading and writing . I guess no one read my journal yet So , in the end , I did n't buy them . : p I hope I can find my favorite clothes again somewhere . After having gone through all these busy and boring days , I totally have no idea about what I can say ! 4th Mar 2010 Thursday . Many typhoons approach Japan every summer . I ` m looking forward to going to Taiwan next month . In the summer I have been taking an English course at the Direct English Institute , I am in the 3rd level class there . I have many hopes such as reading novels . Also I use Photoshop to design pictures . Today I have had a good day but I got up late . Anyway , just before my class friend asked me about my weight . It was embarassing for me because I 'm a Korean girl and some young girls do n't like to be asked about that . If a girl asks me I might be ok so I hope that my classmate friend never asks me . He went to senior field of the game , through been killed a million times for learning how to survive . capture the highend user first , the total opposite in India . localization in areas / countries where most Japanese company failed even though they have high - tech . So , I picked two guides titled `` Canada `` and `` Germany `` . this is the chinese traditional festival , maybe other families are happy and excited , but mine are not , He recorded himself speaking in fluent Japanese . And today was no exception , fundamental : I need to study the fundamentals of Japanese history . indispensable : He is an indispensable force for our company . splendid : Casa Roma is a splendid castle built in Tronto . cultural : We can treat each other well even if we have cultural differences . To make your date more interesting , you should add a surprise . It ` s been over half a year , but I still have many problems both speaking and understanding English . . . My working visa will expire at the end of February . The time I have left does n't seem like enough for me to improve to the point of satisfaction . Lately , I feel more and more tense , and frustrated . I know the best way to learn is to enjoy what you do , however I am not the sort of person who is able to make everything enjoyable . I probably need to prioritise that over learning the language . . . hmm . . . . . When my friends called , I tried to only have a short conversation . If I were to keep learning English , I could speak English well . After all , our meeting was delayed for a few minutes . . . , I 'm sorry . but the problem is that these lifestyle 's change makes people overweight easily . Also , people do n't want to exercise . But I always think my English level is so low . . . The more entertaining , the more gaming technology is developed , but it increases danger to mix up what is real and what is not . alright guys , forgive my crap jokes , good night , I will do my best . Choosing a PC Since I was in a hurry , I thought I would pick them up and throw them away later but forgot about it . It is unlikely that someone would take only the chopsticks out of the plastic bag to use them . I think both the government and all universities must get prepared for its future impact . When I first listened to it , I did n't know what he said . I felt especially sad when I watched that last scene . because I will graduate . I got to know a Nepalese person , who is the owner of a Nepal restaurant in Japan . He told me that his restaurant provides very delicious Nepal food . = to move from side to side in an unsteady way Thinking about this , I was spiritless and fell in a deep mire . A dog was rescued when it was on a roof of a destroyed house that was drifting 1 . 8 kilometers offshore . One of my friends received disqualification letter from the company he applied to work for . However , unfortunately we do n't have any vacancies in that department you applied . Candidates are also our customer ? There is a lot of damage because of the typhoons this year . When I was a high school student , House of Wax was broadcasted on TV at night . I watched this movie to the end . Every Wednesday , I have an English conversation lesson where we watch a movie in English , write notes about the story and then present a report at my university . It 's my second year in the university , and despite not being able to adapt to campus life , I have been getting used to various things . It is something round , hung with a string for example in the middle of a room , and the players have to break it with a stick : what is inside ( of the `` pentolaccia `` , for example flour or sweets ) , will fall down . She told me to buy a balloon , the powdered paste used for wallpaper , a lot of newspaper , some giftwrap and a string . My school held a festival yesterday . In my new life style , I have a lot of change compared to before . Especially now , I am beginning to spend all day at university during the week . I have also / never ? watched such interesting American dramas , for example , 24 , prison break , lost , X - file . . . If anyone likes these American dramas , let 's talk about them ! From now on I will try to reduce the choice , _ concentrate more on what I decided . I wonder if the members of that kind of association are get in easier than others . Harry Potter I read books `` Harry Potter `` It was 2001 that the movie titled Harry Potter appeared first In those days , movie `` Harry Potter `` was a object of attention and I bought books `` Harry Potter `` , Watching the movie . On the otherhand , almost all cars exhaust carbon dioxide . I do n't want to have a fatal accident or even a traffic accident , secondly I would like to make the air cleaner for the next generation In class , we were given the following question : So could you please tell me your reasons for studying Japanese . . Although their songs mixes Japanese , the vocal who is a native English speaker sings with an English accent , so even native speakers of Japanese , and of course me too - ca n't tell which is Japanese and which is English . Are sure you checked the email I sent to you . I usually read a lot of materials when I have spare time . I think reading is very beneficial for me . But my parents started to complain about the calligraphy and ordered me to put not only the next year 's Chinese zodiac character but also something for good luck . I want to feel a different culture by mingling with the local people . How to contact me . ^ ^ I want to speak English more naturally . There are too many self - development or self - motivation or self - help books in Korea . I 'm wondering if these books are really helpful in one 's life ? The beautiful woman translated it from Ukrainian to English . I rode on it without thinking . I found many fountains and also many people refreshing with it . Although I was always moving with my heavy backpack , I did n't feel tired . Korean pop has won a considerable following in Japan . Similarly Korean drama has been a great hit . Why they have won this popularity ? Their dances and songs are interesting and memorable . I hope we can have classses on MSN or Skype regularly at a fixed time . I 'm majoring in computer science . Nowadays I 'm learning English . I have experience in preparing for Korean language ability exam . so I can help you effectively . and send a message to me Bradley has changed through talking to a good councellor . Sometimes I think I wanna go back ! ! ! ! ! My hobby is scuba diving . I 've traveled some places in not only Japan , also other countries . PNU consists of 12 departments . I 'm going to see my school scenery . Last weekend my wife and I went to tennis matches for beginner mix doubles . It 's delicious and rare , I want to learn how to cook this kind of beef . I found out about Lang - 8 today and registered right away . After I graduated from high school I started learning English alone . I studied English by watching NHK TV which is educational . By the way , Feburary 14th is Valentine 's day . Japanese girls often give chocolates to their boyfriends . Not for boyfriend ! lol I 've made chocolates for Valentine 's day since I was an elementary school student . It 's soft , moist and always fresh baked , not too sweet and you can see sliced piece of carrots in the cake . However , I ca n't explain . I felt sympathy for the Cambodia refugees , and wanted to know more about it . And now , I 'm researching The Indochinha War , mainly focused on the diplomatic relation between Vietnam and France . It was so hard because there were n't enough references , but I made my effort to research , and I understand it very well . Kendou is a contrast to weight training . Weight training is reasonable . It is difficult for rationalist Americans to understand Kendo spirit . Someday , I want to watch the MLB game live at the stadium . Therefore I ca n't continue to use it , I was disappointed . . . They usually boil Hijiki with soy souce and sugar , I can understand them . My favorite ( shop ) is a Chinese restaurant near the school . This song is about `` bouncing back `` . I 'm not good at expressing myself , I do n't have any qualifications but a driving license , I have never had special experience such as internship and being a volunteer . Please teach me English . The Flintsones The Transformers 2 : Be engaged with an institute related to UN operations or non - profit operations . But , , , , I always feel disappointed with my poor English skills , especially when speaking : ( Sometimes I get tired of the piles of assignments , but I enjoy spending lots of time with good teachers and friends who aim high . I 'm tired because I have to go to the lab everyday and take care of the fish . And I went to the class and I was so disappointed because this room is very hot : ( . In the morning , I checked my phone but there were n't any calls from him so , because of that , I was angry at him and , still upset , I went to my part - time job . These days I worry about my future and become sensitive thinking about it . now I am living in the southest of china , Now the temperature is very high in the daytime . however it is low in the morning and night when is very cool and the wind is very soft . I like it very much , but I hate the daytime . Of course , do n't forget marathon ( 42 km ) . Today , I start my lang - 8 life . My father did it for my parents because they will back to Brasil ! My teacher told us that in Korea there was a race yesterday . They checked 5th and 6th graders . . . I need to practice more each day . `` Jill Stuart `` is my favorite brand . This fragrance is like vanilla mixed with flowers I would like to wear its dresses in a party after the graduation ceremony . If I were her , I would be very embarrassed and stop right away . However , she was tough because after that , she tried to use her cell phone again and was called by the professor again . Something that I learnt today First , I want to share my experience when I traveled to China . When you visit a shrine , ring the bell , bow twice , clap your hands twice and then bow deeply once again . On the train , I 'm listening to R & B music to use in my lesson . I prefer read some easy books , watch American TV , movies with English subtitles and these funny things to learn . My main difficulty is understanding spoken English . When the groom kissed the bride , many cameras flashed . I am happy for them sincerely . The reason I want to write English is to enhance my English skill . It is n't necessary to write in English . will someone correct my grammatical mistakes after I post it or should I add someone to be my friend first ? My favorite sports are Football and Snowboarding . When we were done skating , the metro was not working , so my dad drove us all home . Depending on how she is feeling that day she may begin to imagine the very worst - - `` He hates me , he does n't love me , he is leaving me forever . `` This may then trigger her deepest fear , which is `` I am afraid that if he rejects me then I will never be loved . I found him on YouTube : ) He made a parody of Miley Cyrus 's 7 days . 9 bus that caught itself on fire in Chengdu . ( Star Ruby is a library to develop computer games with Ruby language . Just 12 hours left until I go to Cambodia ! Vol . 1 ( Prayer etiquette in temples ) Yay ! ! I did n't think they could win , therefore I was really surprised . Many friends cheer the team of your own country . So it was difficult for me to read a lot of passages in a short period of time . I upgraded lang - 8 to premium . Are you surprised that we did n't fly on the plane / go by plane ? What I 'm studying at university I 'm studying mainly Mathmatics and Physics at university . I was good at Math and Physics when I was a high school student . Although I do n't study English at the university , I want to be able to speak English fluently . , and you will be friends with me ! ! It is derived from `` family `` In japan is winter now . Recently , I happened upon very nice music . I watched `` Enchanted `` by disney . Someday , I 'll try to fall in love with such a prince ! ! Know that no gain without pain , this what I learned from life . Speaking the truth , what I would like is to make foreign friends more than learning english , I am very curious about everything outside China and I dream about travelling around the world one day . But according to his facial expression , it seems to have failed . I want to communicate with a lot of people . example : The teacher used his car as an example when he was teaching about the hybrid car . But I think it is good way to improve my English writing skills by diaries . I 'm a little good at writing and grammar of English but I 'm poor at speaking and listening because Japanese educational system of English focuses on writing and grammar . But I think this system derives from Japanese nationality . What is your favorite russian song ? I decide give up on these nerouses . I want have a better life ! I want to smile and I tried to sing . I found the world become beautiful and everything became right ! so happy ! I konw the life is myself and if I felt good it will fell good ! hope everyone find yourself I trust you will get what 's you want ! Hi everybody ! ! ! Anyway he fell in love with the smart phone , and his explanation made me almost fall asleep . Oh , it is n't snowing and I ca n't go snowboarding . . . I need to revise the text for retelling for my English course , but it is very difficult for me & nbsp ; because my pronouncication is not very good and I find speaking & nbsp ; more difficult than listening . Yesterday , I was taught how to play golf by a professional golf player . I did n't have any appointments or plans yesterday . I first took my seat and I ordered an iced caramel latte . I must speak about my country . I came up with some ideas for my speech . I always go to English classes Saturday 's at 3 pm until 6 pm so I did that , and also in the morning I went to a pole dancing class , I do that to lose weight and gain strength , and it is a fun activity too . I decided to write a diary entry . so I can not talk with my friends on abroad with humor . I 'm bad at physics and math . She is twenty - six who is living in Tokyo for a job / work . select : She selected the blue flowers for her friend 's gift . divide : We were divided into two groups in / by that argument . convey : Sometimes it is difficult to convey what we want to say in a foreign / another language . I like drawing characters very much . My hobby is watching baseball games on TV , because I like baseball Then they make unhappy faces and ask me again , ' What can you cook without curry ? ' My roommate and I decided to clean our dormitory tomorrow . Good night . So it was a pleasure . It costs 55 aus dollars . I have to sell my car for at least 4000 aus dollars . I talk with my family using Skype almost every day . I 'm a normal man . someone please help me lol I thought he put my socks in his closet again . oh my goodness , it was a gay magazine ! I was really surprised , and I also became scared of my landlord . I promise , no , I guarantee , I 'll never come back to Australia again , even if my mother is kidnapped by someone and taken to Australia . I kinda wanna change from Frontline to some other medicine . But since I have few opportunities to use it , my English still looks like Chin - glish . I wish I would not get in trouble with anyone during my trip since people are the most dangerous creature in the world . Because this spring I have to take job hunting seriously as I am going to be last grade in my uni . I have to endure missing my family and friends in Korea . I have been learning yoga for three years because I have stiff shoulders . I think that the hula dance is elegant and sometimes difficult to execute . well you are fake basically , so it is okay . I 've been studying English for 4 months in Sydney , but I still ca n't see the top of the montain at all . How high have I climbed from the foot of the mountain ? Anyway , everyone is learning a second language on this website ; I respect all of them . What I 'll write is just my opinion , so even if my ways of studying will be different from you , do n't worry about that . Speaking skills are proportional to writing skills . If I wanna understand what English speakers say , I have to read English books and I have to ask Japanese who can speak English very well about why I could n't translate it . I do n't think that way because , when I got up that day , I felt a little bit tired According to researchers who foucued on the relationship between the length of sleeping and whether you feel good when you get up , Pachinko is one of the gambling methods . However they are expensive , because they can do many things . However , I have no need to record conversations and am not interested in any radio programs . . . I have studied for over 10 years to pass an exam for some national qualification . T `` in English with Japanese subtitles on DVD . As you know , ET is a famous movie , but I watched it for the first time . I 'm always thinking about the reason why he did that and why he always refuses that someone helps him after I watched `` HOUSE M . I ca n't just skip unknown words so reading this book will take a while . TIME is featuring superbowl ads as follows : I 'm going to get a job until March and its going to be okay . I do n't have to rush ~ ~ My recommended Movies I intend to describe daily happenings here . The ceremony at the kindergarten We attended the ceremony at the kindergarten last Thursday . The ceremony lasted about 1 hour and thirty minutes , and The reason we think so much about those news stories is because even if the news content is quite ordinary , it picks up and repeats many times just because famous people are involved . My friend introduced me to this useful website . Although my Japanese is not good to write an article ( entry ) . IN DEFENSE OF MR . FIX - IT AND THE HOME - IMPROVEMENT COMMITTEE When a woman resists a man 's solutions he feels his competence is being questioned . As a result , he feels mistrusted , unappreciated , and stops caring . He can reflect and discover how he was probably offering solutions at a time when she was needing empathy and nurturing . Here are some brief examples of ways a man might mistakenly invalidate feelings and perceptions or offer unwanted solutions . This is what you should do . `` Each of these statements either invalidates or attempts to explain upset feelings or offers a solution designed suddenly to change her negative feelings to positive feelings . By learning to listen , gradually he will experience that she will appreciate him more even when at first she is upset with him . She can reflect and discover how she was probably giving him unsolicited advice or criticism rather than simply sharing her needs , providing information , or making a request . When I woke up , I could see the heavy snow . hello ~ : ) I live in korea Yesterday , the Dubai World Cup ( horse racing ) was held in Dubai . It was very exiting , because it was the first time that a Japanese horse won . I think Japanese horses have achieved world - class status . as playing basketball , swimming , running and so on . If it is sunny , I 'll go fishing with my friends and swimming . I think that is impossible . wuwuwu . But I can play computer games at home , hehe . These days , it is getting colder and colder . I realized I could not be friends with autumn and winter . No matter what beverage she drinks , almost nobody would mind . Possibly women , who tend to have great interest in their own figure and weight , believe they have an obligation to refrain such drinks . What I strongly want to mention is that all we need to do is develop and build good relationships with various countries . I went to Canada on spring vacation . Hi , my name is gulizen and I 'm very happy to meet you on lang - 8 . It 's a good way to learn other languages . I thank them for their hearfelt concern ; however , dare I say , they have misunderstood the situation in Japan . Recently I watched the news on the central Russian TV - channel , and they said that Hollywood has started shooting a film called & nbsp ; `` Georgia `` . This is an information war and the film `` Georgia `` is its logical continuation . Today , I read a magazine about license in school library and find this site . But , I want more communication with foreigners . I am a member of the `` Guidelines Committee on Hypertrophic Scarring `` of the Japan Academic Society of Plastic and Reconstructive Surgery . It was rainy from morning to evening . plz ~ help to correct my writing . If so , I appreciate your favor . The Carrier is `` Softbank `` . ( we have d a bad impression of them ) iPhone does n't have IrDA . ( we use this for exchanging mail addresses usually ) Java application does n't work in the iPhone . On Monday , I went to the school pool for the first time in this year . But I do n't like swimming in cold water . . I will keep swimming until I 'm a Kosen student . I 'm having a tournament of swimming ( or swimming tournament ) for high school student on June 5 . A Japanese women was taught not to express their thoughts or opinions since their childhood . Many foreigners believe this . Book Review - Black Boy , Garden Party . Because it has too many pages . Reading the book , I am reminded of Korea occupied by Japan in the 1930 's ( although I was n't born in this age , I can only imagine ) . Like many Koreans , Richard has had hard time . I guess ' nigger ' and ' black boy ' are bad words . Her Father is very expected . Laura wanted to end the party but her mother did n't want to because she did n't want to ruin the fun for everyone . Laura felt guilty and visited the dead man 's home to pay her respects . The JLPT just examines the learner 's knowledge . When I arrived at the clothing department , the sales clerk was only one there . I cooked a full - course Italian meal , Salad , AcquaPazza , Pasta . Whereas there are wide range of Nabe in Japan , we ate quite simple nabe , mainly ( ? ) . We put all of the leftovers from the refrigerator , such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water , into the pot and cooked them together . Five months ago , I met a Filipino student on Smart . The day before yesterday he sent me a message that he applied for the job as a tutor . I already have some favorite tutors at my conversational school . I do n't know that song lirycs is `` Mr american pie `` . because there is nothing aboput `` american pie `` . The hit single of this album is called / named ' Stupid , ' which is about a man whose heart has been broken by a girl . During an interview , he said that he wanted to become a radio DJ with his own show after releasing the album . It is very difficult to find a good definition for friendship . A true friend finds pleasure in our joy and shares sorrow in our grief . The people who are my friends are always at my side to give me help and comfort . I think this is true friendship . These days I have been exchanging messages with my foreign friend , and it is as pleasant as a real conversation . First diary To change the subject , earthquakes & tsunami are terrible . The cerebral wave activity is classified into groups , each one named with a Greek letter : Alpha , Delta , Gamma and Theta . So , Alpha waves have a frequency of 0 . 5 and 0 . 4 cycles per second , and they are often found in a state of deep sleep . Theta waves have a frequency of 5 and 7 cycles per second , and they are found in the state between wakefulness and dreaming . Alpha waves have a frequency between 8 and 14 cycles per second , and they are found in states of peace and a relaxed alert . Beta waves have a frequency of 15 and 22 cycles per second , and they are found in a state of crisis , anxiety and aggressiveness . The massive production of Alpha waves in children makes them have a great learning capacity that can even allow them to attain / achieve super - learning or accelerated learning when there is a state of peace . On the other hand , if there is a state of aggressiveness or stress , learning can not be achieved . These ways are called the perception channels , and are usually used by the NLP ( neuro - linguistic programming ) to generate positive and permanent changes in people 's behavior . I want to communicate with people . I started a part - time job in a convenience store two months ago . I have been very busy for this two months . For the first month , I cleaned the toilet facilities , took out the garbage , welcomed the customers and ( ? ) helped to organise the stock of goods , on top of working as a cashier with seniors and so on . I was tremendously encouraged when I was told off by a manager . Thanks to them , I got used to work little by little , as time passed . One day , the store manager said to me `` It is important to greet with a smile and make eye contacts with the customers `` . Then , some customers thanked me with smiles and left the store . There is a gerbil at my home , but it 's not the only pet we have . But it 's a pity that I could n't find a mousetrap in my home , it made the mice leave my apartment last time a few years ago . It 's really interesting , and a lot easier for me to read , probably because there 's a bunch of conversations in it . I asked them `` why does the elephant need to be on diet ? `` They said `` Because we have to minimimize the transport fee . `` I feel managing the Elephant is very difficult . I gave up on it then . I respect strong - characterized people I respect strong - characterized people . She moves with difficulty . She still goes to University and continues her education by correspondence . Recently she has started to make ( create ) beautiful accessories . She is talented . I ca n't get up early in the morning ! ( Fixed ) Odell was n't certain of what he saw . The climbers may have been at a much lower first step , with a formidable second step still to come . ( corrected ) Odell has n't confident about what he saw . The mountaineers may have been at a much lower first step , with a formidable second step still to come . Although I am sure you know of them , I want to introduce music by these singers and anextra song by Andi Gibb , who in my mind , is the very image of the past american people because of his fashion and long blond hair . But I 've changed my mind recently . In the playoffs , everyone is very important to the team , not to mention Rockets lost the African Mountain . I decided to undergo a long journey by bike , which took about four hours to arrive at my destination . During the recent winter vacation , when for the greater part of the time the temperature was always under - 20 degrees . Now the temperature has increased , and it usually ranges roughly from - 10 to 2 degrees . Even with this increase , a long time exposed to the cold , proved to be more than I could bear . I was travelling to China with my friends until yesterday . I want to be able to speak English and communicate with people all over the world ! Since I work in my office , looking outside through the window is fun and relaxing to me . Last year , I ate and drank freely and as a result , I did n't gain weight but gained visceral fat . It is one of the largest ones in Japan . So the teacher came to our room at 10 : 30 each night during the four days . My umbrella was broken yesterday . I 'm going to write about the spacecraft Hayabusa today . The body burned , but she released a capsule toward the earth before she was burned . Nobody knows what was in the capsule until it was opened . If there were aliens in the capsule , We would be surprised ! However , writing in this diary gives today some meaning . but he did n't find one The typhoon has approached . I will do it steadily . I found `` Train Man `` which is a very famous story in Japan in 2006 translated in English . It attacked me like a mosquito . I chose the book related to my major ( mechanical engineering ) so that I could practice my English reading skills . meeting fascinating people These days , I have studied promotion on a Japanese musician and today is last time to study it . Someday , I want to sing songs in other language . Importance of reading This is the first time for me to write my diary in English . The aim is to experience a wider world and enter a more challenging life . But first , I should speak in English very fluently . And I have to overcome my fear and shyness especially when I meet an aggressive person who feels frustrated while talking with me . Fortunately , I found a newspaper clippings . Although , I 've been feeling lonely lately . I tried to call my friends several times yesterday . That made me lonelier . I have a troubled personality . As soon as you are busy enough , you will forget what you want because you have no time . So , the cultural festival is a place to understand the school atmosphere . My friends said that this website benifitted her a lot , and she recommended it to me so I came / joined . So let me introduce myself a little bit . My 3 - year - old daughter was born here and that was a tough experience for me because I was not able to express how my wife was doing when a nurse / doctor asked . But I believe that if I just go on and study constantly without being lazy , then I definitely will achieve my goals . I believe in myself . I wrote that I was going to watch the movie ( or : a movie called ) `` A Prophet `` . I have two tomorrow . I 'm gon na eat Russian cuisine tonight . I live in a dormitory near my home . Maybe ! ! ! Many elementary students in Japan ride unicycles . unicycles are very popular among girls . I did n't know how wonderful performances with unicycles could be until she started it . I watched `` Swan Lake `` at Lincoln Center tonight . I did n't know that early day tango was played with flute and guitar . He is really scary and aggressive . Multimedia Class thus all of them are bound together by affection , and they find their friendship to be the cheeriest relationship in the world . first , it is difficult to suppose that one can experience anything , continuously . I am writing a program for learning foreign languages ( next version ) . The Version for Linux works great , not because I like Linux , but that on Linux using UTF - 8 chars in console is possible , in Windows it is n't possible . I have studied english for about a year . but my english is not at a practical level . What do you think of working at resort area ? I 'm not sure the name of the place , This area is famous for snowboarding and skiing . I need to check it ) I will go to the airport with my aunt , uncle , and my brother by car . I will ought to have breakfast by stopping the restaurant before we get to the airport . My dear friends , please tell me how can I do ? I 'm a 21 - year - old girl , and I 'm studying English Literature in my university . I 've also been studying Brazilian Portuguese for one month . So I was searching for a website to help with my studies . Today I am not going on a business trip . So I was very confused when I noticed it . I tried do my best and as much as I could all day today because I do n't like to make someone feel uncomfortable because of my action . So I just apologised to everybody on twitter . I think that I ca n't say that I am okay because I am not sure about my acitong . The euro is very weak and the yen became very strong . I checked the exchange rate for the New Zealand dollar but it was same . . ( ^ ^ ; One of my friends who plans to go to Europe this summer changed yen to euro yesterday . Tomorrow I will go my daughter 's kindergarten to join in the Summer Festival celebration ( promoted by teachers ) with my family . It was cold today , those days the outside temperature was 0 degree . Hello , friends and teachers ! I have plans to teach my native language in Bangkok . . I really want to help you enjoy your experience here in Thailand . . Private classes are available every day including Saturdays and Sundays from 8am until 8pm . nighty - night naka . . . Because it is very different from what I have ever used , it is very difficult for me to use it . When I drink with my close friends and If I determined to hang out till morning at clubs or something , I drink roughly a half bottle of tequila and a couple of bottles of beer . Sometimes I kicked the ball and hit someone who was running toward me . I was running , too , then all the players ran into me , even though I was running as hard as I could . I agree with the opinion that Kokubo should wear his tie and pants properly because he is now a representative of Japan under the national flag , not just an athlete who is abroad to attend international matches as a qualified individual . I played softball with a Heavy Industries customer two weeks ago . Although the first game was fought well very much , it was reversed and by the last round and we lost . As a result , our team had the lowest grade at the tournament . I think it is a good thing to form relationships outside of work with my customer . Do you have relationships outside work with your customer ? I need to write my diary in a short time span , but I will keep updating And recently many murder events have happened in Vancouver . Tonight I will sleep early , and tomorrow do my best . I major in international relations . Especially Tchaikovsky and Schubert are my favorites . I 'm going to stay here just about one month . He declared that we would never get any furnitureat IKEA . I try to think positive , but It is such a hard thing to do . today . I went to yoga shool . so recently I started to yoga , Big queues , crowds of people , everybody is angry - all of this is a consequence of Russian education reform . Unfortunately , I realized that it is a fairy tale . But I still believe that I will enter the university / institute , Russian corruption wo n't be a problem on the way to my goals , and I will be lucky to say that I am a student of university ! Tongue twister with Insomnia As a result , I did n't go to the library and I regret my idleness . It is because there are many things I 'd like to do and Please correct it on grammar and suggest a more native usage of the language . And they are also often said to have poor imagination . And as you know , Japanese animation is now highly renowned worldwide . I am going to hold onto my English . I am supposed to talk with my friends if I need to talk with them . I have finished reading a book . But they disappeared soon afterward . He started to study this phenomenon . Thanks ! military base near my town , so many Americans live in the city . I think I have many opportunities to speak in English close to home . I studied American sign language today with some girl on edufire . The girl who taught me , She also taught me in English . Today , when I went into an orientation & nbsp ; workshop , I was surprised to see a lot of people there . I gain my weight rapidly last summer season . I will continue my english learning journey . . . My dear friends , it has been months since my last visit to this website . I ( will ) start my college junior life in the beginning of september . I can read English a little bit , but I 'm poor at speaking , listening , and writing English . Now , I want to prepare some useful sentences , for example : For example , there are bedrooms , a bathroom , a kitchen , and so on . This is because if you eat dinner together , you can have coversations and it helps us understand each other . In this way , I can get their counsel and , at the same time , they can make out my thoughts and the situation I am currently in . In my opinion , close family bonds are one of the most important things in our life , and the dining room plays an essential role in it . Thus , the chance of making a new acquaintance who I did not know well before increases . In conclusion , I believe that the dining room is the most important room in a house . We can maintain a good relationship with our family by communicating in the dining room , and we can also use it for a party where we can invite people from outside our house . For example , If you have a dog , you need time for it : buy it food , play with it , take it for walks , etc . I believe that a pet is more responsibility . I played a game . I do n't feel very good today . Everything is going the wrong way . I try my best to let it go into the right way , but I failed . Maybe I should think more clearly , but I ca n't . In short , we still dont know why consciousness exists , why I 'm not a philosophical zombie . The pianist was born in a poor family , but he had the chance to become a famous pianist . The rapid development of information technology , especially the Internet , has made an increasing number of e - books available to people . Therefore , traditional books will continue to exist despite the rising popularity of e - books . If they get their total salary , companies will go bankrupt . Most of them are non copyrighted because the authors of them died over 50 years ago . I just received an e - mail from my friend . Before that she worked in a public hall , same occupation . Now she works with teachers and she is very lonely . Today I realized why it is so important not to give up . Hanging Out With My Friends He explained his critical situation to her . I was surprised at our unexpected visitor . `` My elder sister is also a geek , sometimes we discuss about the future of the Japanese animation industry . `` I relly love teaching Samulnori with traditional Korean equipment . While I am writing this , I want to eat it too . I do n't get feedback immediately when I write . Many native animals live in the tropical forests in Australia . Of course , I 'm planning to go to the city zoo in Cairns and cuddle a koala bear . Actually , I prefer wombats to koalas , but I 'm uncertain whether visitors can cuddle a wombat . Assad 's shop attracts crowds of people and the queue extends to the street corner everyday . People like me wish that he never leaves China . thirds of the book but I have n't found any impressive sentences . 4 ) China 's economy is gaining strength as it continues to increase its exports . I 'm going to be able to drink alcohol . Yesterday was my 4th wedding anniversary ! This event is a forum for professional or amateur artists . I 've studied english for more than 7 years , but my english is still so poor , I ca n't even talk to people , I hope one day I can speak english like a english speaker . cause , I was born into a poor family , I could not go anywhere but stay here , and my parents did their best to support me through school . I want to change my job , to improve my life , to earn more money to make my family more comfortable . Ever since the first time when I saw a blackberry phone , I have been totally into them . They look luxurious , and the design is stylish . I am still considering whether to buy it or not . Stiff shoulder again Steve ' Apple - Head ' Jobs is really cool . `` We are forced to learn English since our childhood . Until now , I 'm learning it . This has become a big part of my study . We do n't hear our students reading poetry , the essence of Chinese literature , which were passed down for generations . However , we always read and recite English instead . Oh no , those are not oral English , just so called Chinglish . What a sad thing ! On that day , many people come to my city . ch it on TV . But my friends interested in F1 , so we watch on TV . Because , there are many races in a month . I saw coloring ( colored ) leaves . It 's very beautiful . Autumn is my favorite season of the year . Russians are mysterious . Chinese people are also mysterious . Although Samet island is not as popular as Phuket or Samui , its beach look very beautiful ! One can say that creating sentences is also a good activity that might Many have often thought about living in a place where two or more languages Last week my digital camera broke and I need get it a new one for my trip next month . I could see many different costumes and dances . We have called each other whether we were happy or gloomy . I attended it , and we cried until we had exhausted our tears . I think Japan is gentle for a smoker because there are a lots of smoking areas and cigarettes are cheaper than any other country . The restaurant is what is called a `` revolving sushi bar `` , where dishes are carried on a conveyor belt . Two pieces of sushi are on a dish and you can eat a dish for one dollar . An increasing number of revolving sushi bars have opened recently , so we can have sushi at an affordable price . There is no doubt that it is not good for our environment to build a factory in our community . First , it will pollute the river near the community , which was full of fish . It is not smart to depend the increase of the economy on the damage of the environment , which is very weak and can not be rebuilt . Living in a community with fresh air , clean water and silent environment is much better than in a polluted area . He told me to use the expressions that can be found in the dictionary , otherwise my English would be strange . I hope that the people can find a way back to their normal life and be happy again . My major is Engrish . My Japanese teacher asked me to focus on listening , talking and grammar . I hope that I can improve my talking and listening as soon as possible because I really want to have perfect English . Hello everyone . I did my study abroad in Fiji and it was sooooo good . Especially over hotel life . After that I moved to a hotel whose manager is a Fijian woman who was so Some of my friends who were also going back Japan cried and cried . . . Anyway my English is better than before , particularly my speaking but my vocabulary is n't good enough for staying in another country , I think . that 's why I am going to study abroad again soon . I was really disappointed with my English skills again and again during the show . Anyway , very few Japanese actors can speak English or Mandarin like native speakers , so most of Japanese actors ca n't appear in famous Hollywood movies . On a lemon tree which I bought 5 years ago , swallowtails laid eggs since the last summer . Living expensein South Dakota ! Today , I began this lang - 8 service hoping to improve my English - writing skill . Time permitting , I would like to take part in advising on Japanese usage , and am very glad to get any tips on my English use . Kingland is a beatiful country in southern Asia . People in Kingland eat sea food every day . I would like to see the country Kingland atleast once in my life . I promised my friend . Even though we had never eaten with each other , we had a good relationship . Yet , I do n't like to have a lot of free time , especially when Ioften sleep halfa day ratherthen spending time in the Internet , or even watching TV . My goals are good pronunciation , writing English easily and reading English websites and books speedily and accurately . Regular member Cambodian vocalist Sokha joined us for 1hour . Rurouni Kenshin They are very professional , friendly , and seem to have respect for all of the workers . But there 're only words and I feel that it 's not enough . ( enough ) Everywhere I go I keep listening to my favourite song . . I made lots friends who came from all over and I always felt happy . I never felt bad because I really enjoyed living in Australia with my good plicks ! haha About 10 days after got to Australia , when I was hanging around , I found posh cafe and dropped my resume off . They said , `` Come to an interview tomorrow . `` Why on earth has our rejection of nuclear power disappeared ? So today we went in and out every shop downtown and we tried on styles we like . After that , we went to dinner at a Thai restaurant . I really want to visit it again and , if I can , ( I will ) live there for several years . Today I heard that my younger colleague had started writing a journal at this great site . Recently I have been practicing reading English sentences loudly many times to brush up on my skills . But I have yet to learn more words and phrases , so I 'm back to writing in my diary again to practice my writing skills as well . The new year still has many challenges waiting for me . Goodbye 2008 , hello 2009 ~ ! NINE is a movie directed by Rob Marshall . In this site , I feel that I 'll study more , and I 'll be able to communicate better in English . Torne has a `` trophy `` function , which is something that records my viewing history . This story is a parody of The littler match girl and shows the European turmoil pretty well . Recently , the Euro has dramatically fallen against the dollar and yen . It was a beautiful day yestarday I 'm going to go to an art exhibition in Hakone this Sunday , so I hope it will be sunny there . Then she disappeared with her son . At the end of class I wanted to try to talk with him , and I asked him how I was in his class today , he just nodded I promised him to show the winter scenery of Hokkaido such as Sapporo city covered by snow , the festivity of Sapporo Yuki Maturi by `` You tube `` . 5 years ago , I would have never guessed I would have communication this way . However , all the children became very quiet I just watched the 1st and 2nd episodes . One of the survivors , John Rock , should have been dead , but he was still alive in the hall . Why did the crowd appear ? and I was always looking forward to it . I was given a digital camera . There is no way that showing kindness , affection , or any other form of positivity wo n't be appreciated . You are the most jealous person in my class . He is the second heaviest boy of my friends . We finished the ( / our ) test and then we were going to the Black Cat in Brunswick Street , Fitzroy . Before we went there , we had talked about the distinctive features of this cafe . So the teacher recommended a good restaurant near the Black Cat . including Japan . And I watched a movie in the cafe , `` The Bourne Ultimatum `` , whose main actor is Matt Damon . Also , Interenet Cafes in Japan have versatile services . You can spend a night on a tatami - floor at a price cheaper than a hotel . ( but limited room though . . ) Of course , they ordinarily serve free drinks such as coffee , tea , or juice . Some of them have darts or billiards ! IF I Won 10 Million Dollars If I won 10 million dollers , I 'd like to buy a lot of games for an Xbox360 and go abroad right now : ) If I still had a lot of money , I donate to people in need . To begin with , I 'll finish my last semester at university for graduation . Employees fingers are not put into the soup , making it clean and safe , preventing burns . Or is it truly beyond my understanding ? However , my friends told me it 's really yummy and sweet . One of them is Israeli ; she speaks English with a strong accent . Should someone solve my writing error and laziness problem ? I have two children : one is in college and the other is in elementary school . What kind of people do you like ? The title is `` The Castle Of Cagliostro , `` which is made by Hayao Miyazaki , the most famous director in Japanese animation . I find it very useful when reading entries written by other Japanese corrected by native speakers , because you can tell the difference in expressions between English and Japanese . It touches the heart of Japanese culture for Japanese people learning English . Thus my lifeevironnment seems never could make me have a new dream . How to choose an appropriate article ( that is , ' a ' or ' the ' ) is a very difficult question whenever I study English . Thanks for reminding me and I remember this / that moment . It was very amazing . Life was beautiful . I read in a magazine that the BOB cut is now the trend . I was disappointed . To improve English is very very hard ! ! ! When I left the subway , I found the paper bag that had my lunch was torn because the subway was so crowded . I do n't want it to cost a lot of money . I enjoyed a fireflower and Japanese Origami with my sister 's daughter and son . I 'm looking forward to watching them grow up ! In fact , it 's true that many people are not hardworking after they go to college in Taiwan . I watched Agatha Christie 's work - Murder on the Orient Express and Miss Marble . He put on a talk show at this event , but unfortunately it was full before I could make a reservation . ] ) but beforehand , I have to have some theoretical and practical knowledge about traditional art ( painting , architecture or color theory , management of space ) . You know , you can only apply for one school for your bachelor 's degree . The weather is cool and my friend is going to see a movie but I have to work Please correct and answer my question ! I do n't know what happened . please ~ teach me English . I 'm an university student and my major is international law . If you wanna learn chinese regularly , just add me . Finally I got admitted to the International Trade Institute . In my school , we are playing instruments in the school musical . because in 3 - 1 we are playing instruments ! ! ! I needed a person who would let me practice various skills . I want go to shopping but I 'm always busy . lol And because of the rain , I could n't go very far for dining , and I could only choose the near restaurants Especially , anyone learning Japanese ( ^ - ^ ) / I heard and thought , `` what should I eat ? ? `` Because Bobby advised me to follow them to Chautauqua Park , I went there . I spread it on toast every morning . But one thing I have to be careful about is not getting a bad tooth . I starting Lang - 8 right now ! My English writing skill and vocabulary are really not enough . First of all , she is a very hard working person . She has the capacity to work for a long time without complaining until she achieves her goal . Besides that , she taught us to care about our studies and to search for knowledge everywhere and by any means , because she believes that man without knowledge is like a body without a soul . They are probably around 7 centimeters or so . I heard that our common friend , who is I will show a video of thai fruit carving to you . When I was young So women would stay at home and learn about cooking , especially In February , I dropped and broke my camera . Also in March , I dropped and broke my boyfriend 's camera . Tomorrow will be a great day , I believe ! My brother had a PSP ( but he sold it ) , and we had several games for PSP console . If you can recommend me some songs , I 'll be grateful . He told me that I was accepted to the university . During the past three years , I felt tired from time to time , and sometimes I wanted to give up , but I told myself `` I must be keep it up , I must work hard . `` Now my efforts have paid off - - I was accepted to a good university . The phone that can be superior to iphone is nowhere to be found . Hi ~ I thank you for your labor . When I first visited this web site , I was suprised at how helpful the people on this website are ! I am a little troubled because I want to help those who are helping me by assisting them in their goal to improve their writing in return . But many people , including you , like to learn Chinese or Japanese . I 'm Korean , so I ca n't help you directly . If you 're not disturbed by my humble level of English , I hope that you will consent to being my neighbor . You can grow tired of explaining the same thing , and lose your creativity . For example , when I am stressed out from studying , I start to eat more or to sleep more than I need . My favorite of them was a woolen coat . I do n't like you , not because you are an American . I think I do my best to do your homework and understand when you teach class . I am very happy to have a girl . This is the first time I write in this diary . In order to better learn the intentions behind his paintings , I want to take some classes to learn painting skills , like water oil . find my diaries to correct . In Taiwan , there are many people with a teacher licence , but there are just a few students . As a result , most of these teachers are waiting for a job . Tomorrow I 'm going to have a test of Classical Japanese and I hope everything ends up alright . My holiday Actually , I do n't miss Taiwan so much . My roommates are always asking me , `` do you miss rice ? `` I would rather try exotic food while in the U . S . , rather than Taiwanese ones . I feel like experiencing the American life - style and being assimilated with them . Even though he said that I should taste some Taiwanese cuisine here , that way , I could compare what the differences between them are . A book I read when I was a freshman in my university explained that people want to work atDisneyland because everyone working there can do what he / she truly wants to do . Christina is amazing signer . ( NOT xtina ! ) The idea occurred to me that , why is the image of a flight attendant different from Japan and in the other countries . I can buy very cheap clothes at Dinos . romaji - hiragana translator So I want to use a romaji - hiragana translator with this site , like the one below : As you know the Korean peninsula is still divided into the South and North . Effective way of learning English . I am always thinking how I can improve my English . Less effort , much more effection . In that show the reseacher said read letters in books silently . So we have to know sound infomation even if we read silently ( in English spelling and pronounciation are different ) Seemed that this was n't her first suicidal attempt . Nah . . . Tomoyo and I went to a new cafe and talked about art . That night , I called my boyfriend and Mayuko . We are going to dinenr nest Saturday , On such a big holiday , our family always gets together to He was expected to win a gold medal , and all of his supporters in the arena became silent the moment he retired . Anyway , from now on , I will come and write entries at least once a week , so please help me to write proper English entries . I 'll try to write things here and it will be happy or good things which happens to me every single day . Despite this constantly expanding library of exotic colloids , however , the advances in colloidal self assembly are surprisingly scarce , and the corresponding self assembled structures still remain quite simple . Although she is a second grader in high school , We talked a lot ! In my first degree , I went to Oxford University in England . I want to visit more and to talk with many kinds of people . So if you are a very kind person , please check my poor English ! ! the weather forecast said ( that ) it will be hot again ( soon ) . First , today I am going to play Futsal in the evening . What do you think about the USCPA in America ? Ken gave me on how to make a good presentation . or going walking in nature for refresh and health . I do n't have a particular genre of movie I like . But , I do n't think movies are made for fun . Sometimes they give me deep inspiration and make me think about a specific topic . I want to be an obstetrician or an engineer who makes medical machines to help as many women as possible to live happier lives despite their diseases ! Because sometimes it seems to me that most of them are very intelligent , organized , and privileged at the same time . He told me that American people are different from Egyptian people in their thinking , and in their professional and personal lives . But not everyone is different . I wrote this entry because I want American people to reply to me How they think in their peofessional and personal lives and I also want to know how the normal people spend their normal days Thanks to anyone who will answermy questions . First I want to express my happiness at Sarahu coming back from her vacation ! ) this is very importent fo me I really nervous . take a pill , but It 's not usefull I have a important test next week I believe I can do it well For instance Taylor Swift , Stevie Wonder , The Smashing Pumpkins , Offspring , Sum41 , Steve Appleton , A Tribe Called Quest , Pixies , Jay - Z 3OH ! 3 , etc . . . I really like her excellent fashion , action , performance , and of course songs : ) Whenever I questioned something , people responded very There were ( only ) a few people who came to the Izakaya Now I am planning to travel to Thailand for my next vacation . There are a lot of historical places to visit in Thailand . After finishing the TV program of Gundam , at first all of the Gundam freaks tried to buy plastic models . But it makes me too addictive . Fashion Show One thing that I noticed is that they ( all ) wore fashionable clothes as well as a lot of perfume . Hello , my name is Sar . I am interested in the English language . So people can easily make rhymes in English since English is avery flexible language in terms of sound . The answer is quite simple : they use rhymed verse when they make songs . So we are limited to manipulating rhythm in Japanese . Therefore , ancient Japanese people controlled thenumber of words in Japanese poems in order to make rhythms instead of rhymed verse . The teacher was Filipino who can only speak English , that means she ca n't understand if I speak Japanese . I was nervous talking with her ! I booked accomodation , which looked like such a traditional and awesome cabin for a night , through the internet , and bought a pack of beer and some food at the market . The entrance was pretty , and the usher , who was a very old man , was kind to us . Anyway , the wholeaccomodation was the opposite of the pictures on the website . My husband worried about me as my condition was getting worse . At last he confessed to me that the smell and atmosphere drove him crazy , too . I stopped drinking beer and smoking ; I ca n't let them help me fall asleep . I remembered I have a black ipod in my bag , It seems difficult to make new friends when we get older ( and older ) . I searched for good movies online and eventually I found As I saw the first scene , I felt very peaceful and Japanese culture and he was always given a cup of coffee for free I went to an Uniqlo store and bought some cute t - shirts . I have n't been to Uniqlo stores before . Uniqlo is really famous in japan . I think he was chinese and he was buying lots of clothes . I was born in Riyadh , but I am originally from Yemen My relatives want me to go to Ukraine for the whole summer ! This year , I 'm teaching 200 students . They are not really good at speaking English . just be patient . I met my relatives and gave them some souvenirs . It 's the first time that I write a diary on the internet . If I knew of this site earlier , I could write English very well . . My major subject is English , but in fact , I have a little hatred towards English , for In modern times , English is as common as a piece of bread ; You can find it everywhere . A highway is free , and that is quite amazing . rarely : She rarely finishes her homework on time . Sorry ) Again ) But I have been studying it every day for a month . I ` m a junior at Hankuk University of Foreign Studies . This is a japanese kind of custom . Heaven is over . . . . The loan officer approaches the blonde and says , `` We are very happy that this transaction has worked out , but while you are away , I performed a background check . And I 'm a little puzzled . The blonde replies , `` Where else in New York city can I park my car for two weeks for 15 bucks ? `` . Please correct my diary . < ( _ _ ) > The scanning and skimming reading comprehension had too much information for me to finish the questions in fifteen minutes ' time . Last Monday , I got in a new office that is a clum ( ? ) school as a Math and Science teacher . I have to be in school until 8 : 20 a . m . After having dinner , there is a self - study period until 10 : 00 pm . . I came to hate my country , my language , songs , and Russian films and books . . . Every night I imagine little houses on the cleanstreets of a small town in America . . . I also set off big fireworks I think it is one of my favorite festival regardless of my increasing My partner for this trip , Nao , had a strong desire to visit there . Especially , the whale shark feeding in a standing posture was interesting . I just passed through it soulessly . . . I am stupid . . Because I have a important exam at the end of the month . . . I should prepare for ( ? ) my sophomore year . . It troubles me actually . . Since It is not convenient for me to pay by cash every day , I bought a 5000 - yen bus card . `` Your card does n't have enough charge . `` As I was stood in front of the charge machine beside the bus driver , so many people were were waiting for me getting off the bus . He was probably in his mid fourties , and was a kind driver . Of course I repayed the 50 yen the next day ! I am scolded by the instructor every time . However , there are disadvantages . The biggest one would be environmental pollution . Social problems might be caused as well . If one factory were built near my community , then it would bring more investments . In return , improving our economy . Nevertheless , there would certainly be negative effects as well . The most serious one must be environmental pollution , particularly in regards to polluting the water and making noise . Equally troubling for me is my debt . . . I had a job interview last Friday , but I could n't / did n't do well . I may not even receive any notice of an informal outcome . How do you feel if you get a call like that suddenly ? Thinking about it , I feel sick , deep loneliness when it is a full moon or new moon . Start of English learning from Today I quit English learning because working is very hard . Actually this is an excuse . . . . But I should think about that . As soon as I can do that , I will tell everyone around me . Because Japanese people emphasize groupism and tend to avoid conflict personally with other passengers about their bad behavior . Many students were in Nara park . It 's a moving skateboard and it 's cool and fun . Please correct my sentences Today it is essential to have recommendations because the human resources are too busy to receive a lot of candidates . Today I went to Hong - dae to meet my best friends So I went there to see each other . But I want to write an interesting and funny dairy in English . You do n't think this applyies to Korea ? No , it 's not Gourmet . Gourmet is . . Gourment is , for example , maybe having sundried tomatoes I just got through with my work . Today is a burning hot day . I like summer bacause it has many advantages , for example Swimming in the sea , doing BBQ party near a neighboring steam , playing baseball on the field . 1 . He is tired of forgetting important documents for the meetings . Most salons encourage customers to buy a package of ten sessions upfront by offering discounts and special perks for your prepaid loyalty . However , if they pay for some money to get manicure or pedicure regularly , it could be a waste of money . And the town is very small and quiet , far away from the city . The English poet Wordsworth said that `` The child is father of the man when he raises the son up innocently `` 1900 has lived on the sea since he was born , cut off from the outside world which is full of lies . He was innocent forever and had no flaws until the moment of his death . When the grown - up 1900 sat in front of the piano , using his slender hands ; which are smooth like the keys , the ship bouncing on the sea waves , the piano 's pulling and melodious tones , entranced by the music that he played for the poor people , my heart followed the tones up and down and the happiness on everyone 's face . Someone said that 1900 is happiness . He lives with his favourite music , people surrounding him are all friendly and kind , he need n't care about numerous complicated things and disturbances . Is this true ? Everytime the boat draws into the shore , he looks at the island in a lonely way . He called strangers secretly with a nervous and expectant voice , `` hello , you do n't know me , but , can we have a chat ? `` . Especially when that tramp told 1900 his experience . He wanted to experience standing on the island and listen to the sea . What would that be like ? I 'm not 1900 , but I can definitely identify with his loneliness and longing - he was very keen to be on the island that he had never experienced . This is a picture of my dog . In this country , the price of cigarettes is 5times higher than that of in my country . Furthermore , every single pack of cigarette contains advertisements which give us warning with horrible pictures about the harms of smoking ( Such as cancers ) . I think I 'm severely addicted to smoking . Thanks for reading my entry . Japanese usually begin to learn English when they are primary school students or junior high school students . I want to improve electric vehicles and save the earth . About 2 years ago , I went to Australia to study abroad for a month . I will send a letter to my host family today . - Coincidentally their horses got tired in the middle of the way , at the same place that the moon was washing her hair But , I 'm sad , because she is one of my close friends . At the begining I thought I could put a picture representing France ( = picture of France ? ) Well , then I thought about that stupid stereotype : French people are chauvinistic . That 's also exciting . I will sell Japanese cakes and potato . When I listen to the songs , I feel happy . She would say to me : `` You always remember your birthday , but you never remember your father 's or my birthday . It make me very sad ! `` I 'll said to my mother : `` sorry , mum , I 'll never forget your birthday `` . I received an English lecture from my Filipino tutor last Sunday . She taught me that there are only 2 seasons in the Philippines . ( dry and rainy seasons ) Goooooooaaaal ! ! ! goal Japan beat Denmark and booked a spot in a second round of the FIFA world cup this morning . with their mobiles . I remember when I was in college , my tutor said `` there is a gap existing between a customer 's expectation and perception . `` As far as the hospitality industry , it 's easy to understand the meaning . 3 stations later , I just stood up and said to her , `` please sit down . `` Guess what happened ? ? The truth is , do I have to tell her I was uncomfortable at that time ? Cars were congested around these buildings more than I had expected . French verbs are changing so dynamically . This is what it 's fascinating with French . My dog died recently so I was supposed to cry easily if I watched a sad movie . As usual , I did my favorite exercise ( and the one which is the most difficult for me ) . I do n't think this is quite the place for you . After I solved my thirsty problem I wanted to write something . But I have no idea what I should write about . . . . . . . . . because recently I did n't do any thing that made sense . it killed more than fifty thousands people . and destroyed so many buildings . I 'm going to go to an Italian restaurant tomorrow . If I eat slowly , will I lose weight ? But , authorities say the Tokyo area would be all right if the Fukushima plant were in a worst - case scenario . The running menu was 30km with a pace of 4min per kilometer . If you know , please tell me . HONORIFICS AND `` THANK YOU `` and tried to use `` Keigo `` or `` Honorifics `` , in Japanese . It is very interesting to correct sentences that are written by foreign people in Korean . In the future , I also want to learn Chinese and Japanese . I always says that I have enough time tor that , and I learn in the night . So now I have to write again . because a lot of Japanese companies are deep in red for the fiscal year of 2008 . My co - worker whose name is Agnes went on a business trip . My first diary . I think that I might not have enough time to see you , but if I have , I 'm looking forword to seeing you . I am still confused about the realationship with my BF I doubted anyone could do the same as him , but after the seminar I could belived . My sistert got married We will meet up and have a meal together , After the home celebration , I will go to the pc room and play the game sc2 and then I have to down load some files form the broken computer . Hm , maybe it 's not so easy to down load files from the computer . I was busy , I had a cold and I exhausted so I did n't over work today . Recently I have n't been watching TV . is we go into retail stores talk to people about Microsoft technologies . You spoke up about what you wanted to see the next version of Windows Windows 7 is designed be faster , more reliable , and more compatible , with more devices and applications , than ever before . so they 're really convenient to get to . And with the new preview pane , it 's easier than ever to see all the windows that you have open at the same time . which allows you to interact with the computer using only your fingers . now it is easier than ever to share those documents , pictures , videos , music , even printers , with anyone in the family , from anywhere in the house . With Windows 7 , and supported devices , you can get even better experience with Device Stage . We hope you are as excited about the next version of Windows as we are The Reasons Why . . . But it was really difficult - there was snow , a blizzard and I was very tired and weak ! : - ) Thank you for reading and correcting my sentences . . . When I reached the railway station , I chose the wrong exit . I changed the date of my ticket at the front of the railway station and came back . My parents write more because they send it to their friends , colleagues and relatives . Yesterday , I had a chat with a friend on Skype in English . Before departing from Tokyo I worried about my kids 's health conditions . I 'm currently being extremely lazy , more than ever in my life . even though im still keeping in touch with them , some of them seem to have forgotten about me already ; that I even existed in their life or not . If so , I would n't chase after them , as I got to used to forgetting my friends intentionally due to the problem of distance . The seasonings are soy sauce , mirin , sake and sugar . Put the all ingredient in the pot , and boil it for about 15 minuts . Put it in a plastic bag with flour , then mix it . Next make the sauce . Its ingredients are soy sauce , rice wine and rubbed garlic . Put the fried wing tip into the sauce . I had a chat with Erica this morning . I asked her about the present perfect tense . She said that , in France , the weather is bad ( ? ) but that she and her friend were really happy at the When they came to Thailand , we traveled together and had Thai food together . Good night . They intended to make their local Bon - dance into major dance like Awa - dance , and held a dance festival in Omotesando , Tokyo , which is famous as a site of Goth - Loli fashion and of youngsters who appear dressed as manga characters . There are his favorite phrases . He likes to speak these phrases once every two hours . My aunt and uncle are coming over tomorrow morning for New Years ' greeting . and poor people will still be poor . . . . No one wants to waste their income . Happy new year , Every one It is a small class with only 4 people . There were small candles on every table . But we chose a main dish ourselves . Learning another language However we should use formal phrases in particular situations . Definitety the word meaning is right , but actually it is not acceptable according to the time and circumstance . My university , university Keio , is one of the most difficult to enter out of all the private schools in Japan , so there is many people who are able to speak English as fluenty as native speakers are . It is regretful that I have not had such experiences , as I have studying English for so many years . It is typical of Japanese students that they can not speak nor write . Aside from above story , I am excited whenever I jump out of the cage and enter the new world . I need to do some shopping or resting . As the reviews on the website said , the service was terrible , but the taste was good . I did n't know about this nice site . I only stayed for a few hours but it was so nice to see them again and chat . It featured TWO DOOR CINEMA CLUB , PASSION PIT , TAHITI80 and SMASHING PUMPKINS Of course , I ` ve learned English at school and at the University - but without any visible success = ) Once I started to read `` Harry Potter `` and , you know , I was totally irritated by the work of the Russian translators - they perverted all the names in the book ! And I just do n't want to feel shame for my knowledge when I talk with foreigners or sending postcards on Postcrossing . . . I received my new sleeping pill , because I 'm insomnia . So nice to meet you , my friend ! `` Katuo bushi ( a piece of ( fried or breaded ? ) bonito ) `` and mayonnaise if I 'm not sure whether this rumor is true or false because But in fact , I really do n't like the dreadful coding . Words and vocabulary Are you trying to let get your parents to start jogging ? I watched a documentary program on TV . Learning and promoting language ability has no ending . Many Japanese students do n't have their own religion . However , I was absorbed in the fantasy world and it did ' nt feel like a long movie . My friends who watched Avatar said this too . There is a Chinese ( maybe it 's Buddhism ) temple near my house . It occasionally has events held in it . What ceremony is it ? They should spare a thought for their neighbours before offering prayer for the dead , should n't they ? I think it 's worth to go to Guam just for the color of the sea . When we smile , happiness comes to us . He told me his father just passed away due to a heart attack . But it 's quite shocking because his father was quite healthy . In fact , I do n't know whether or not he is my boyfriend . I 've been thinking that I really want to go everywhere in the world . Because , when I watch movies about Victoria in Canada , I 'm always stunned by the pictures of huge forests and high cliffs and the views from the top of the famous mountain . One tourist wants to watch Japanese Cosplayers on Harajuku street , another wants to be a Ninja . I do not know what should I say , and as you can see , I am not good at English . I like watching movies and TV shows . It 's the reason I want to learn English . My husband and I visited his parent 's house yesterday . During our talk I got shocked . In December 2009 , I 've quited the job . Especially , I like to smell the cold dust near nightfall . borrowing costumes I often feel lonely and bored though there still a lot of things I should do . Naritasan is a famous temple in Japan . There was TV program on about pyramidz . I found TV programs about pyramids on the last day of last year too . I wonder why there are so many about pyramids on new year 's days in Japan . But , as I watched them , I gradually became interested in pyramids ! Some day , I wanna ( want to ) go to Egypt and enter a pyramid ! Once more sad Middle Autumn ! Anyway , children will be sad if they will not be able to go out to join a lantern parade . I know some people who really do n't like Polish bands and singers because they say that Polish music is n't as good as music from the USA or other countries . So , I know how much it costs and its concentration . I walk 20 minutes to go to school . Several years ago , a famous mathematician named Arnold refused to enter the Pope 's academy because the people there did not justify ( ? ) Giordano Bruno . I am going to go to Iwate tonight to see my grandmother . So I must ride shinkansen although a Shinkansen ticket is twice as expensive as a bus ' . . . I have to memorize many chords and practice for a long time . The size is smaller than guitar and the guitar has 6 strings , playing it is easier than guitar . Right now , I am practicing `` Somewhere Over the Rainbow `` . However , I have to install the applications I installed on the last version AGAIN , because the initialization was necessary for me to upgrade Proyo version . I 'm taking a correspondence course in pedagogy , I 'm so sorry to break my promise . I promised that I 'll keep a diary to improve my writing skills . But every day I think to myself that I 'm too busy to keep it . Tomorrow do it , ok ? Then I did n't do it when tomorrow comes . Yes , I know I should n't delay what I should do tomorrow . But I ca n't obey it , It 's strange . I really want to improve my english . And I know the way to improve English in my mind . But I do n't follow it . So sometimes I hate myself . Why do n't you do it ? Why do you delay it to tomorrow ? Why ? You ca n't do things like Aya . you promise you will do like the way Aya does . but you break it . it 's so terrible . But I do n't know why I ca n't . Every day I want to be better . I study hard to catch up with my classmates , I think that they are really great . I must study hard to overtake them . and I do it im my own way . Every day I study English until about 12 o ' clock . I review my subject . I do lessons carefully . I hope I can catch up with them through my hard work . I know it ca n't be called `` hard `` , in another 's mind , it 's a ordinary life , ca n't be called `` hard `` . As for me , I think so , but if I stay up too late , I 'll feel too lethargic to have lessons . It 's my weakness as well as laziness . Second , the government should take Japanese twin sisters are roll playing MAIKO with a university student . I am attracted by MAIKO . Try to search `` NHK - DANDAN `` in the internet ! ! Her daughter is going to start kindergarten this April . somebody wrote that this website almost has Japanese as the mother tongue language and I think I could not get to sleep . because I feel so excited . It 's expensive but useful for me . SUBWAY - sandwich I always order Subway 's daily recommendation . Yesterday , I ate a BLT sandwich . One reason that I like to eat sandwiches is I can eat vegetables . Recommendation of today is `` Avocado Veggie `` . I thought I could study hard in my dormitory , however I was overconfident . com is still undergoing maintenance . I decided to unionize with the others to show our attitude that we wo n't accept it ! Today I talked with my best friend , and she said that her mother is sick . I 'm impressed by his belief and I hope the Prime Minister of Japan has I want to visit Bhutan one day . In China , parents always treat boys better than girls . Also , I 'm smarter than her , so I gain more attention from our relatives . I cried out : how could you say that ? you mean I just help you because I want something from you ? okay , you tell me , what should I ask from you ? I wish you can get me a girlfriend ? or , or wish you can marry me ? My sister totally drives me crazy . . . My parents and I just confused about what 's happening to her , and what can we do for her . She feels lonely and homeless . These days / Recently , I 'm redading a book called `` Small Steps `` written by Louis Sachar in English . To some extent , experience can be said as a custom or behaviour that was formed in past days , and can give you ability to know what to do when the case is different from what exists in textbook . Recently , I feel constantly irritated . When I see people who are very ill - mannered in the street , I can not help but get angry . I feel very relieved when I communicate with you on Lang 8 . I enjoy holidays ~ I 'm relaxing on the holidays from 8 / 13 . Today I 'm going to clean my room , laundry , washing the dishes and so on . So , I 'll do these things on my holiday first . My cousin is sick and I think I am going to be sick too . I am a university student . So I go to baseball stadiums at least once a year . Later he is going to show this picture to his friend and say you are his girlfriend . Finally I agreed to do it . So at this period , I do n't have enough time to administrate my blog . Country Living At the time , I could n't understand English well ; I just enjoyed looking at the colorful pages without reading the articles in English . She did not study hard and ended up as a maid too . I 'm sorry for the person who replied to my writing . After I saw your writing , and tried to see it again , If you see my writing again , feel free to mail me . but usually I do n't have to write in English . I do n't think that I can say , `` I lived in England , `` as the first sentence of a speech . After that , I moved to the living room and called police but , at the same time , he comes in to my house . The police was asking me for my address , as he keeps coming closer and closer to me . I put the telephone receiver on a table because I thought the police could get my address with their technology . He comes into the living room . I attacked him again and again until he could n't stand up . Hello ! Everyone : ) I want to study English little by little so that I can go study abroad to in the future . The Ueno zoo was famous for having giant pandas for a long time . Especially Indian movies . because I was n't sure about a few of the questions , I guessed . My out - patients could n't reach the hospital due to stormy weather . It 's so beautiful and . wonderful . Fact : I attended a training session for running . It said that scientists have found a new species of spider which is able to spin webs about 25 meters long ! I do n't think I 'll ever go to Madagascar for a holiday . . . There 're common sense that It 's difficult to memorize vocabulary and there 're too many thing to memorize . I do n't known what happened to her . She often grasped / rubbed her ears . It troubled me . It would be very effective if your working atmosphere is like a English speaking country . Name your dog or cat , Jack , David , Alice or Catherine . His teacher is an American who stayed in Japan more than 6 years and is learning Japanese . He likes Sumo and he belongs to a Sumo club where he must speak Japanese , because all the members are Japanese , he said . Some Japanese are excellent teachers who can teach you good English and their grammar knowledge is marvelous . Hi , everyone : ) But the article I read was criticizing this movie because it is historically wrong and Pocahontas is too sexy : ( And that this wrong image will affect the thoughts of children too much . In the article , this kind of thing is written : `` this story is like Anne Frank falling in love with a Nazi officer . `` It means that this kind of love can never happen between a new settler from England and a Native American . I want to study languages by chatting with people on my computer and I searched for a website like that . ' Maria ' wanted an option of replying to comments to be implemented , with which I strongly agreed , and she encouraged us to use ' native nod ' function more to confirm the other natives ' correction would be right or fair . Maybe all we want is to make this wonderful language - learning site ' sustainable ' in terms of funding or in terms of level of correction of any languages . When I went out to the exit from the circle road crossing route19 and route1 in long beach , my car bumped a car which passed my car on the left side . what is why , I might go to phuket . Because I think that they sang more earnestly about people 's feelings than in contemporary songs . It was too difficult . I think that Italia has many home - loving people . I realized there was an increase of foreigners from various countries . I really love a multi - cultural and chaotic environment ! the main avenue is srrounded by many anime signboards , which are huge and crazy ( as many reasons . . ) . and illegal merchants were selling illigal software or electric goods to pedestrians . Because , We have to do practice and more . I want to obtain a driving license soon . Mexico is just as beautiful as Canada . My town is as big as Calgary . Mexico is not nearly as big as Canada . I do n't like the bus because the bus is very crowded . If I ca n't find a seat , I have to stand for forty minutes . The grammar in these two languages is pretty similar , though . If there are any affixed decorations ( for example , bamboo leaves ) , you should hide the small bone with it . However , I only have a few information about Mexico . If you have been there before ( even if you have never been there , but you are familiar with Mexico ) , please let me know which places I should go to . and foreigners . haha My dream is to go and live in another country and marry a foreigner . Finally I am writing a letter to you that I hope you will like . Grandfather , I love you . . But I left my work for parental leave . The concert theme is the Final Fantasy game series . Today I saw an article that if express tolls become free , many pepole will use cars , and as a result the threat greenhouse gas emissions will increase . I do n't think it 's smart to waste the commuting time . But , I 'll be learning English on Lang - 8 . It 's a very exciting spot for Ghibli fans . Today was was very eventful ! this is my first time writing something in here . I am restarting this blog . The main purpose of this trip was to attend a wedding ceremony . Because sometimes Japanese wedding ceremonies are really long and boring . On the way , I am really scared if I ca n't explain why I did n't notice the valid period of the pass which depends whether I can keep on staying in Singapore and study . Bu luckily at last , after 5 hours of waiting I spoke to the counter staff . I am a software engineer . Somehow a lot of sofware engineers like animation compared to people with other occupations . I explained my patent to them . I noticed that the American culture is very different from that of Japanese . I 'm very very surprised , and I have to study the culture of other countries more and more , especially Australia 's . It was tasty , though I forgot the name of it . but I like everyone so much . I went to Germany for business last weekend . I ate salami , it is very good . I am looking forward to drinking it ! Strangely , I think that Koreans bear a resemblance to Israelis because they share the same passion and temperament . How mysterious and marvelous things God will do ! I called why the notice is not announced , and they said that it was delayed to next week . There are a few visitors and huge , about a meter of snow . I got into a bike It was pleasant to ride on my bike . I rode on a bike as a child so I still ride on a bike even after I become an adult . I have got to be careful so I 'll never break the speed limit . Today the wind is really strong . My colleague , who come to our clinic by bicycle , said that it was really tough to pump the pedals because of the oncomming wind , and that it took twice as long for him to arrive here than normal . He saw some people fall off on the road . This is sometimes dangerous because in the day when the wind is strong , we have more patients who break their bones . The purpose of doing that is to enhance my English skill . I want to get other people to understand my English . Unfortunately , I can not step in because everybody else changes a certain topic too quickly with smooth English . Jizo holds a staff in his right hand and a wish - fulfilling jewelry box in his left hand . Thank you for understanding my situation and please do n't be offended if I can not provide you with my Skype ID . The photo studio brought me these negatives . . btw today I worked at the cram school and it was my last class . Anyway after I made a lesson as usual , I started to give the students some advice like ' just be honest about what you want to do when the time comes to think about college ' ; ' please do n't lose your potential ' ; ' do not be afraid to take on a challenge and make a goal to motivate you ' ; and ' please study what you are interested in and enjoy developing your knowledge ' . Because many japanese students including me study just for college . Although they still do n't know what they wanna be or what they can do , they have to decide what their major will be beforehand . But I think that 's ridiculous . After I entered college , I found out many things that I should have noticed when I was in high school . The reason for my studying English In fact , we are very worried about it , because if we fail in this exam , our parents will feel very disappointed , and we will feel very ashamed in our classes . It 's going to be a very spontaneous trip ! So , I have to learn something new to do during long holidays . My sister was good at the Flash MX Proessional . And she gave me the So , I feel nervous . I ate a croquette of crab cream curry . I love croquette of crab cream ^ ^ Rhythm games are similiar to learning languages because both of them require so much time , persistence , and unceasing effort . This passage is mainly about the U . And I believe that without challenge there can be no self - respect . Everyone would like to have it , and at the same time is afraid of losing it . That was a wonderful sunny day ! Luckily , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . For instance , I was asked to find the mistake in this sentence : You should n't turn down an opportunity when you get one . Tomorrow is the first work day this year . I hope my work in this year is successful . I 've just started my job - training . Today , I went to Cross Iron Mills ! A clutch bag is a trend among young people . Gary is old . They are wrong . I 've been planing it recently . All the Chinese food even vegetables were too . I tried to eat the food but It made my stomach upset . It was three times greasier than the Chinese food in Korea . Last year , the new flu ( from pig ) came here , too . ( the swine flu ) But it is bad to touch our eyes and noses , so it will protect from the virus on hands . She and I were so excited and freaking out ! ! Story of two mice . Mee & Moo the mice 02 Actually , I have no idea how to get an ice cream . Although private schools are still in the experimental stage and are much more expensive in comparison to public schools , there is no lack of application for the enrollment . and the actor Eric Mobius . After that , one of my friends wanted to play a shooting game . I thought Facebook is a tool of communication for people all over the world . She just stood outside the door until her mother came home . Have you ever eaten Japanese fast food ? If you come to Japan , I encourage you to try eating Japanese fast food . The Yoshinoya is very famous in japan . Happy birthday to my friend ! ! 7 / 5 was my friend 's birthday , so our friends celebrated his birthday last weekend . Today summer vacation ends . I was so happy during this holiday , I traveled outside the city . I missd my friends very much , so I am ardent to see them tomorrow . I am going to study grammar next class . I do n't like grammar . Now , I 'm staying in Fiji because I became student . By the way , lately my English school 's residence was attacked by It was so dangerous . But abroad study company still has n't talked about it to us . So , every student thinks this company can not be trusted and it will be bankrupt in the near future . So I am going to search hard for another job from now on . I want to know about recommended shops , the climate , places that I should visit and so on . A week ago , I held a conference call with my manager and knew that the clients of new project are australians , so English skill is really important to communicate with clients for new project . I cooked eggplant - laced pan - fried noodles , boiled radish , and anatto omelet . So I hope that you can help me with my English ~ It felt like my tongue was burning , During third period , we have to practice chorus . I wish to win the crown in the chorus competition next month . I 'm not strong in english grammar , but I 'm still studying . . . Please help me ! ! I 've taken a bath everyday , but my feeling and scenery was different from everyday . It is a pretty day in Bangkok . I am going to have breakfast . It was a pretty dream . If I saw her in Bangkok I wonder what my first words would be . I do n't know but maybe I would hug her first . Despite this , I found it 's quite difficult to speak English well . I planned to be awake in a few hours after my nap . According to the e - mail , I made it to the final ! The final presentation will be held this Friday . The temperature in Beijing is over 30 degrees . Now the landlord of our office is going to break the contract and kick us out because he wants to use the place by himself . I 'm really willing to learn French and English , but at that time I was starting to forget my French because in the other Canadian cities I did n't have to speak or write it for about 8 months . It was AMAZING for me , because I was always dreaming about the moment I could speak both languages very fluently . Could you tell me What the drama ` s title is ? I had been exhausted from all the stuff that I had to handle , so I thought I needed a break and this was the right time to take a break , even if I end up doing well and getting good grades this semester . The temple 's quiet and calm environment and my meditation may help me think more clearly . Had quite an interesting discussion about routes and reason of fic - writing . I just found this site and I am a newbie here ! one of the important reasons why I study english is that I 'd like to communicate with other nice people from all over the world . Although it is strange to talk to myself when I am alone , I enjoy practising English this way . I was so surprised that I have been asked to take a break from my current job on Thursday since my poor performance at my job due to my body condition is not good . I will seize this period of time as a vacation to recover my energy and ability . Today , the typhoon prevented me from going to school . I can do housework . Then my mother will be happy . ca n't go to school until Friday . Be careful , everybody ! I have n't gone to the sea and gone swimming yet so I really want to go ! Korean 's big holidays Korean 's big holidays are coming up soon . What am I going to do for the coming holidays ? After these holidays are over , it seems really gloomy because there are almost no holidays in 2009 . These days I keep losing money from the stock market , which always makes me feel like I got up on the wrong side of bed . My friends said to me ' odaijini ' and I was a little happy . I read jump and magazines every week B : Well , I understand what you are saying but I want to keep this cordial relationship with you guys . Anyway , you have a captivating look . English is not easy . . . I am studying English . I went to an amature rakugo meeting yesterday for the first time . I like the chicken pies ^ ^ Sometimes I feel frustration about my computer skills . I truly believe that . I want to become a customer service agent in an airport . It was very interesting and inspiring for me because they seemed to enjoy their conversation and I could feel their energy , even though some of the sentences could use correcting . Actually he can now speak Japanese more fluently than before . Now I 'm following my ancestors to be living where they had lived , therefore I 'm going to the past . ( I know for me is the right answer but I just want to memorize without understanding ) I went to Greymouth with my flatmate . Yesterday I went to the NBA game , Toronto Raptors vs Chicago Bulls . My cellphone accidentally rang warning me of to charge my phone 's battery , that is also when I got a new idea . `` if you could , next time can we have tea in starbucks ? `` Im going to finish writing my graduation thesis soon . Today , I 'm going to go out for a drink with my friend . I try all the time to find an answer for the reason , I mean the most important reason we are here , on earth . I asked myself , did I do what I should onearth , sending the good messages for my environment by studying , then working and trying to help people . . . . ? At the end , I felt even if I did and I am still doing this , I will never be satisfied with myself . If I help people materially or mentally with what God gave and ? still gives me ( like money , health , knowledge . . . ) I will never be at the top to thank God . no , I try to get happiness and not just pleasure . I went to the hospital and the doctor checked my temperature . Today , I will start diary in English . I took the introduction to theater class this semester . As you can see , this is an introductory course for theater , but it is still challenging . And next week , we will perform monologues in front of our classmates . Details of the monologue assignment is that we have find books of monologues , and pick one to recite . The exact performance day is next Wednesday and Friday . After I read it , she will explain details on how to perform the monologue in the class tomorrow , so I listened carefully tp improve mine . I think I could do a good rehearsal before the performance . I like croqutte because it does n't cost much ( around 10 - 20 yen each ) and croqutte with brown ( Worcestershire ) sauce is the best with a lot of beer . I ` m going to go to Australia in september I am still worried about it We write a diary in English , read an English newspaper , read original booksin English , and study vocabulary together . Thank you for your kindness and hospitality . I had not spoken English for a longtime , it was difficult to speak fluently . I think learning another language is like sports . According to him , to keep your ability of playing basketall , you need practice everyday . I do n't work at the moment but I am going to look for a job , which I hopefully To be honest , I do n't have any interest in soccer at all , Well , I thought as soon as possible meaned just a few days . Rachmaninoff 's `` The Bells of Moscow `` is difficult music for the figure skating , and maybe for the judges , I think . I love this weather because it is like spring ! I hope to gain new knowledge ! I found it just now while I was using another site to learn English . What a splendid site ! The only things I know about him are that he is married and had a baby recently . So I bought two sets of coffee cups - Pink and Blue for him and his wife : ) When I got home , I checked the word with my dictionary . By the way , the reason why I mentioned about movie theaters above is because I will write an essay about the construction of movie theaters . First of all , I agree that constructing movie theaters is necessary . I will upload the cat 's pics someday . I want to be a member of lang - 8 , so allow me to introduce myself , I 'm Hill from Mainland China . I have writen a love letter ( But I 'm not sure ) for the principal when I was a kindergardener . I 've had no chance to play with kids recently , so because I have exams until next Wednesday . That is because foreign people ca n't come this univ if they do not have much money and considering the living standard of Chinese people , ordinarily could not come . However , many Japanese people , including myself , have several complicated feelings concerning Chinese people , because the Chinese response to Japan is unacceptable to the Japanese mind . Of course this does not apply to all Japanese people ; but it is a pity that some of them it does actually apply to some of them . Therefore I will end my comment . Addiitonally , I have to cut and cut ( all the ingredients ) to eat . Therefore , I want to let univ . If I take part in such an activity , I can contribute largely to students and their parents concerning their meals . My room is very hot right now ! I thought that my accident was awful , but I appreciated my friend 's kindness . Playing guitar is interesting , although it 's a bit hard , I think I can have fun from it . Surprisingly , my guitar teacher is younger than me , and he said that there is a seven - year - old child playing guitar well on Youtube . He said if you practice hard , you will also play guitar well . What is the most important characteristic to being a good teacher ? The university is the most famous shool in Shanghai . There , I made friends with one Shanghainese girl . First of all I 'm going to lose 5kg of my weight without damaging my health . I will neither skip a meal to become thin , nor do sports exaggeratedly . The same happened when I skipped meals . Yesterday , itturned out he had been sending it to `` big ' r ' obe . Travel to singapore . They get to choose their last meal . She said , `` Many citizens thouht some judements were unfair . How do you want to be executed ? I am going to pet shop because I want to get her some clothes last week , I was there as a substitute . I may get tired in the middle of the game . then , I felt I need to improve my English more and more . I have ( basically ) been starving myself for an upcoming examination . . . When I study for a long time ( especially subjects which I 'm not interested in ) , I become a bit crazy . . . If people look at me , they will ( quickly ) look away . . . We talked about the examination like I thought we would . . . while having dinner . . . . . . though we all really wanted to change the subject . . It is written in English ! So , in my opinion , the economy gives us a kind of grammar to recognize the environment around us in a new light . After all , meeting strangers means facing the unknown . And it 's human nature to feel a bit uncomfortable about the unknown . Most of our fears about dealing with new people come from doubts about ourselves . because it is difficult to put on . It makes me crazy , because I will feel very tired when I am busy with my work , I want to take a break , but my colleagues ask me to do something important . But I ca n't , nor can I talk about this with my friends , they will think I am crazy . But what I am doing now has nothing to do with English , and it is in contrast with my aims . I do n't know how to hang on here , but it also very difficult for me to change another job , because the high cost of living in Shanghai . I am a little afraid of this kind of thing , because I do n't want to ask my parents for money , because it is hard for them . Please correct my writing from now on and engage in conversation with me . Also , what kind of materials should I study that will allow me to speak out or verbalize more complex vocabulary ? But , because I have never been to other countries , I am a little worried ( Past tense ) One important reason is that my birthday is on the 9th October . I went to practice ballroom dancing for the first time in two months . The Teacher 's explanation was always precise , and it was easy to understand . Long time no see everyone ! ! Though we promised to meet at Kichijoji station on September 29 , he could not get on the right station . In Japan we call America , Canada , France and England the four main countries . Thisfamous story depicts well how large Inokashira park is . However the girl did n't stop standing on the boat and finally , she was scolded by the supervisor lol . The master replied `` none . `` Unfortunately , they had no money so we went to a cheap one . But they were hopefully satisfied with my translation . I did stretch my body fully before the class and it helped me follow the moves easily . nuance , implication and connotation , etc . In addition , I 'm curious about ' would have p . How different is it . . . Korean English teachers taught me incorrect grammar in my school . I believe you honest . How different is the nuance of these sentences ? If you are interested in Korea , Korean language , culture or singers , I will help you , Would it require an additional fee ? I presented yesterday , but the presentation did not go well . I ca n't recognize what the questioner was saying . I was shocked ! ! ! ! ! ! ! ! ! ! ! ! I talked so much on Saturday because I joined my friends ' bridal party . I would like to know if I have written it / this correctly . Hi ! ! ! Now , I 'm studying `` Media History of Japan `` at my college . My other language In Spain , Spanish is the official language but there is also Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak all 3 of them . ( ? ) As for Catalan , it is a romantic language derived from Latin and is spoken in Catalonia . ( Levante is in the area of Valencia , the Balearic Islands , Andorra is a small country in the Pyrenees , southern France , and some in an Italian city called Alghero , is the 75 most widely spoken language in the world and I am very proud to speak . ) ? ? ? I cut my hair for the first time since I came to Australia My favorite hair style is short hair ! ! ! so my schedule is very flexible . I would be grateful if you let me know when would be I 'm a member of Track and field club . Fortunately , I could avoid that and I 've been working as an teacher in a high school . Is really hard write here everyday when you have a endless routine . And I thought the only thing that made us feel a little unhappy is that the serving fee is 10 % of the price , even higher that the GST ( the Tax ) , which they did n't mention outside the restaurant . Super Robot Wars L This is the latest in this series . Today , I registered on the web site , and then added friends . The main material inside the cabin is leather and aluminum . I came to take an interest in it because when I 'm reading Japanese journals that male native English speakers wrote , I occasionally come across feminine speech and I 've had a feeling of uncertainty about feminine speech in English . Today , I 'm in a bad condition . I bought a bottle of water first thing when I arrived . I felt good working because my friendly Colleagues were just seated next to me . Shewent to China and studied there for 4 years . The researcher , however , argues that it is no problem because it is not clear that carbon dioxide causes global warming . The restaurant is one of the most delicious creperies in Paris . At last , T ( t ) he Summer Vacation is coming up tomor ( r ) ow . My Pregnant Friend She is pregnant now . Touhoku has a lot of beautiful nature but the number of historical tourist attractions is less than other areas because it used to be the barbarian area in this country . Right now everybody greets me like this . LOL In addition , I 've considered my plans to improve my listening ability : listening to some CDs for TOEIC or Western music carefully and confirming those lyrics ( As far as the latter goes , I think it 's kinda meaningless though LOL ) Actually , I came to know my big weakpoint in English . Is reading novels or magazines best ? I can not get to sleep until 1 o ' clock in the morning . Watching two episodes of FRIENDS before sleep is my habit now . So after all , it is 1 o ' clock in the morning . She invited me to a restaurant and we talked for a long time . After graduating from university , the rest is beautiful when we remembered the past between classmates . This was my first time making a cheese cake ~ Therefore , I could enjoy driving while admiring the beautiful view of nature . We could go out to eat delicious Japanese kaiseki , which is a set of Japanese food , because my grand father was pleased that we visited his house , so he celebrated our visit and the new year by treating us to kaiseki . I 'd like to get well soon , because I 'm going to go to Australia on Sunday . I probably understand Past Perfect Continuous which I mentioned in the latest diary : D Thank you everyone : D I do n't think I could live in the room where someone was killed or committed suicide and nowadays appears on full moon nights : ) There were Mexican vampires , El Muerte , Retablo , Santa Muerte , Mexican holidays . . . It 's convenient to use , but when I turn on the heater , ( the air in ) my room is becomes dry . I think it 's the beginning of a cold > < ! So I 'm hanging out a lot of wet towels in my room for my throat , because I do n't have a humidifier . I entered into a Japan masters swimming competition . Ten years ago , I was in my second year of university . I did n't have a exact address . I remember when an English teacher who came from American said that Korean emotions are affected a lot by the weather . I was really surprised because my feeling is often changed by weather , too . I 'm a beginner in english The house was incredibly beautiful . Halloween is popular with young people . So when I feel ache on my back , I look at my addomen immediately . Oh , a little part of the world . Good sleep is very important for our health , especially for girl 's skin . If I mention Japanese Manga subculture , and how it is gradually spreading worldwide nowadays , I can give a basic outline for Manga fans . Like for kindergarten boys , kindergarten girls , young teen boys , teenage girls , men who golf , for gamblers , for mahjang fans etc . All manga is able to be clearly devided into two family trees . One belonging to men ` s culture and the other women ` s culture . Today is like yesterday and I think tomorrow will be like today as well . I 'm sick of the same routine . My husband told me about Buddhism meditation , and recommended me to wish well on myself , on people who are close to me , on all living things , on others whom you dislike , and on others who dislike you . do not hesitate to ask : ) At beginning , I thought we would barbecue by ourselves . I appreciated their hard - work so that we could have such yummy food . I decided to study English more / harder . If I wrote this sentence , I would probably mistakenly use `` which `` or `` that `` . So many suggestions and advices were buzzing around my ears to tell me which way should be taken and which should be isolated . I do n't know why the first letters can not be auto - capitalized . Welcome to correct my takes mistakes . One of my favorite characters in Greek myths is Hermes , the Romans call him Mercurius . My little finger got in my nose . I saw it in the kitchen after that . Maybe somebody will help me ? Stomach Flu But having found this site I decided to start a diary here instead . Now I am quite exhausted , but it 's okay because I would have been depressed ( for nothing ) if I had nothing to do today . The day is National Maritime Day . Recently , I love looking at the National Geographic site . After few years I decided to brush up my English . I attempt to listen to English podcasts , and the radio every day ( Maybe you know some good radio stations with are lot of stories or interviews ? ) What 's more , I bought a computer program . In Japanese , however , it 's totally the opposite . I really enjoyed it ! I want to be able to speak English fluently . Lately I like to watch `` The OC `` series drama on DVD . However , after coming to the US , I feel this is not true . I 'm translating some part of aninfographics book and ca n't say in russian `` mapped image `` or `` mapped picture `` . I have an example sentence : I felt his love for her . I visited sports shop to buy a belt bag for running , which can hold a pet bottle . However , recently I 've been reading some books ^ ^ I do n't know the system of lang 8 . Yesterday my wife and I went to see Avatar , the 3D version . We did n't plan to see it in the first place , but after viewing so many recommendations and the high ratings people gave it online , we decided to give it a try . Hope to see your letter or message . . . Are the governments grasping the severity of it ? It is still hot in Japan despite it being September . Almost half of my time at school , I struggle with Internet Explorer , not MS Word . Today , the funeral for two Marines killed in Yonpyong - do was held . I cried during the funeral . Like bungee jumping and free fall . Japan 's Earthquake I remember thant I forgot to take a bath this morning . I like herbs . Many kinds of herbs are in my house . Especially , he likes Thyme , Lemongrass and Chicory . I sometimes use my herbs for cooking . He sometaimes watches Japanese movies . It 's a holiday today . Particuraly when we crack jokes each other , we transcend the generation gap . I understand a lot but my speaking is awful ( ? When I was a high school student , I was always concerned about the school uniform 's somehow ugly style . When I touch my uniform , I remember my teacher , my school life and all my efforts in that lovely high school . I started to study English on Lang - 8 . I watch animation every day . Some parts of the animation I have watched few times . I hope the animation can come out again . I understand myself , I lack some grammar and vocabulary . However it 's may be difficult for me to make my dream come true , because I have a four month old baby . . . Maybe it was a dream . . . If he kept shooting in a normal way , he may never have caught a sheep . There , he walked cheerfully . Our country affected by huge natural disaster . The aftershock continues now level 3or4 . I do n't like science . I want to meet her again and talk about things that had happened lately I can introduce myself here and we can make good friends . Before I watched the class , I did n't know how a nursery was different from a kindergarten . I want to talk in English with foreigners but I do n't have an opportunity like that . So , I ca n't speak English with a foreigner . There are many foreign guest in Roppongi , I think . Actually , I thought the beach was huge when I took a trip to Miami . . . Well , I enjoyed that time ! What a boring news ! ! This is my first diary . It is very cold , though today 's weather is fine . From Fumi in Nara , struggling with my final thesis ^ 0 ^ He went there with almost no English skills and he also did n't have money except for the school fees for the university . The lessons are one - on - one , and the teacher is a very intelligent person , not to mention an excellent player . My collaborator from Chine puts a lot of pressure on me . Please let me know the racism that your country has . Speaking of `` sakuramochi `` , Japanese traditional sweets , there are 2 different types : I feel lonely , but , next month , we will enjoy beautiful wisterias in Nara . hi , are you still awake ? I need your help to improve my vocabulary . So if you have any good suggestions on how I can improve my English , please let me know . In the morning , there were lots of grey clouds . They put me in a bad mood . We stayed under one umbrella and talked , laughed , and did different , funny things . I luve live in Taiwan . Currently I am searching for a new job while learning English and Japanese . My interests are reading and listening to music ; I like to read novels and comic books , and enjoying listening to vocaloid songs . It 's not my first time writing an entry in Lang - 8 , as I 've written in Japanese before . I love jogging , I used to have this habit , but sundenly I stopped . It 's fun , especialy to me , because I do n't like to exercise myself in the gym . It 's too crowded , I do n't like the music , and I alway have a excuse not to go . I 'm working really hard because I 'm going to travel on June 28th , this summer , and there my aunt works with models , this bothers me a little . I 'm trying to use words that I usually never use . SAD PS : My guitar was broken last week quite badly . I 'm still waiting for the luthier to fix it , but it seems that he is taking his time . Recently in Japan , animation dance is becoming more and more popular among young people because of a dance team . Their name is Hamutsun Serve . Furthermore , even when someone has a good command of a certain foreign language , if he or she has no absolute idea about the culture of the other person who is speaking , it will affect their conversation . I went to the Abercrombie & Fitch to buy clothes . Then , I researched this song 's infomation . It is just a tweet in the early hours of the morning . . . I found this web - site in Nikki 's daily newspaper . I know , freedom is really good thing . I have to read a lot of documentation , comment 's from programme code . It 's really amazing Sometimes , I want to try to apply to be admissioned by some American school , but I know , I wo n't accept it if I do n't study hard ! This year one wo n't be able to see the fireworks show . The municipality ( Edogawa ward ) has decided to refrain from holding the event because they feel it would be insensitive to ( the ) victims of the 3 / 11 disaster ( the huge earthquake and tsunami that hit northeastern Japan ) . For several weeks after the disaster , some people accused ones who were enjoying joyful occasions by saying `` That 's unscrupulous behavior `` or `` You should refrain from such activities . `` These sentences are correct ? The luckiest man in the world , Steven Bradbury , took the gold medal in the Salt Lake City Olympics on 2002 / 2 / 16 . I 'm so exhausted because I worked out for 2 hours . Even though I do n't have any energy left now , I feel much better . I asked a shop girl if she can try to find the Leggings in other UNIQLO shops around Tokyo Ikebukuro area . She phoned many shops , but the result was the same . I highly recommend you all to use a bluetooth keyboard . Did anyone watch the news about the earthquake in New Zealand ? Yesterday , Christchurch had a big earthquake . At lunch time , our teacher told us Christchurch had a earthquake which is level 6 . 5 . When I came back home , I watched TV , I heard that about 65 people died . Now , that 's amazing , I hope that people who live in Christchurch can be better . In conclusion , these are the reasons why I think the Internet , mobile phones , and the development of the medical technology are the main inventions and innovations in the twentieth century . There is no judgement , no contradiction and negative talk and we sometimes can teach each other something we know . I do n't have a lot of friends but I do have a few close friends . I know they have their own lives however they are helping me improve . I want to write English very well . I want to speak it very well too . My mother is a nurse whose job is to care for handicapped people . Her hospital has a school , car , and bus for them . But , in the country I am living in now , many handicap people use the public bus , which have a lift for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work without hiding thier identity , and the class - mates talk to them as a one of their friends . Most of my friends will choose corporate life . Studying overseas would also take almost all of the money I have , and I would need to sell my apartment which my parents bought for me . It is so hard to make this decision . I hope everything is fine with my friends . If nobody wants to correct my notes . It took me about 10 years before I learned English . As a Japanese , I also worry about TOYOTA 's problem and situation . I 'm looking forward in preparing the school 's festival . such as German , French , Korean and so on . He has gotten a girlfriend recently . I felt so lonely . I volunteered at the university last Saturday . the parents of first year students come to the campus . the campus tour was so popular , we increased tours . It took more time than re - installation . damn . `` You will be here in 5 minutes ' time `` . Does `` in 5 minutes ' time `` mean within 5 minutes ? on an early morning he chased me and then he finally stopped after a few moments . Because we can operate it by putting our fingers on the screen . I still ca n't believe it . . . But today , I found on the internet that the U . K youth mobility scheme was already full by 19 - Jan - 10 ! I feel also this century 's moving very fast . So I definitely recommend that everyone comes to Seattle to study English ! ! For that reason , multiculturism is a big advantage of the tourism industry and this can contribute to the development of the whole society in general . I have had some frustration in my office . Hello everyone , my name is nakasan . I want to speak English . Yesterday , I went to Tokyo Art museum . The museum features [ Studio Ghibli ] now . [ Studio Ghibli ] is a Japanese animation company . I heard Napoleon Bonaparte was a short sleeper . I 'm embarrassed / / The day after tomorrow , I 'm going to move out from the current place to new place ! I ca n't believe this many things are here . Because I 'm taller than average for Japan and my shoe size is bigger . Have you ever heard about the Winner winner chicken dinner ? It is an old American motto with long history . OK , let me tell you something about it . It is said that in the 19 century in America , Las Vegas had already become a fairly famous place where rich and wealthy people spend their money . At that time , there were few casinos there but each of them provided good service for customers to enjoy their time there . At first the customers mostly consist of the rich and famous people , but as time goes by , the economy got better , so it brought more typical people without fame or a high place in society to Vegas to try their luck . At that time , almost every casino brought out a new service in which the customers were able to buy a kind of dinner with chicken and some meat in it . That was such a cheap choice for most players , so it gradually become an American motto : Winner Winner Chicken Dinner ! Now I am looking for a new opportunity , especially in a foreign company . Please check this text for me , urgently We have Chinese people who can speak Itailian , English , and German . . Recently my opportunities for sleep have become short because my work schedule is too full and Actually , I got married and have been here for a year . I usually use broken english when I talk with American or other people , but it 's enough to be able to communicate . Life in a foreign country is hard . Lost ( my favorite ) is about the survivors of an airplane accident that crashes on the beach of a mysterious tropical island . The survivors try to escape from the island where amazing things can happen ; for example : people are healed from illness , there are polar bear attacks and a smoke monster that kills people . I hope you 'll help me brush up my English . White day is a very happy day for someone who has a boyfriend or girlfriend . And they give presents , such as candy or red - roses . Aside from the chimps , riding them seems to be fun , First of all , most of our cities are very dense and our roads are very , very narrow . Secondly , Japanese people are very health - conscious , so they tend to walk places , or ride their bikes . I saw on the news on TV last night that the government and some of people in Thailand do n't understand each other . The people who call themselves ( red shirt ) are protesting against the goverment because they do n't like the Prime Minister . They want the Prime Minister to resign from the goverment . We have had this problem for a long time , but last night something that we did not expect has happened The government decided to stop the Red Shirts . One of the people who died is a photographer from Japan . I am looking forward to know what the government will do in the future to make the improve the situation . and they can understand each other . I hope everything will be all right and that no one else will die in the future . Thank you for helping me with my English long time to write my journal entry . He did n't send any messages or emails during his absence , nor did he take the initiative to talk to me after coming back . While having lunch with my junior colleague at a pub , I saw the selected design for the 2nd phase of the Yongjong passenger terminal on a newspaper , and I was almost stunned by their reckless design scheme choice . There are very beautiful flowers in Japan during the spring . I am still a student , and my major is International trade , Oh , I forgot , I 'm a freshman . To make friends is to improve my spoken english level , so , hurry up , plesae help me , let 's work hard ! Whatever your dream is - studying abroad , working in another culture , communicating with friends from other countries - it will come true with your little but continuous effort . They fought bravely against Japan and died for independence . So I bought a white watch for myself and a pink one for her because my estimate was 2000 ~ 3000 yen . I went to a golf practice center and enjoyed golf . I 've found that lots of how - to books on developing I - phone applications have been released . I do n't know it is true or not . He knows there . I have got the entrance exam today ! Subjects are math , Japanese , English . It 's not difficult but I made mistakes , OMG I have to study still ! The Japanese government decided to start an English education program at public elementary schools in Japan starting in 2011 . It creates a big mess for homeroom teachers . The government is ordering teachers to teach English by themselves without any training in how to teach English to kids . That is , the government throws things at each elementary school . It 's on a first - come - first - served basis but campers should come with an open mind . + ) I have one question . . . Where do you usually get your travel information ? I want to make a lot of friends through this Lang - 8 . I 'm going to practise my English conversation though skype . I like it because I never had it before . I used to have long black hair with my bangs parted . Being a millionare , the presindent of the world , a super hero , a famous actor or traveling all over the world might be part of our dreams when we were kids . Losing the passions we once had , now we pursue a common life , simple and stable . I saw an eclipse this morning . We Japanese tend to gather and drink when we feel sad , stressed or unhappy , the typical example of which is a `` complaining drinking session `` after work . Normally , a couple of colleagues gather together and drink , complaining about their superiors after 5 . The same thing can be said at the end of the year , that is , most of us would want to forget sad and unhappy events of that year while drinking with a couple of friends or a couple of colleagues , etc , etc . . . . Goodness . I prefer Q and A sessionsto report writing , because report writing is very difficult . I have to write the report in a specific style , for example , each sentence has to end with the same inflection . For my presentation , I will talk about my research for six minutes , and afterwards there will be a Q and A session . Yesterday I was not working at my second workplace , because the rules allow me to have one day for rest . For now I will just have to study English harder in Japan . ( ^ ^ ) / \ ( ^ ^ ) But my bank account still shows a double debit . Although I have the chance to take the test but I do not have enough confidence and always consider that I wo n't pass the CET - 4 . I just found this good place which may help me to improve my English capability . It is freezing cold today . Three of us , including the taxi driver , were so embarrassed that we said nothing for a while . So , we just had the Gay ( Pride ? ) Parade , which is one of the greatest parades in the world . In particular , biology and chemistry . My ielts has passed 5 . 5 two years ago . I 'm fine with my classmates but some think studying in such a big group is n't good for us , as it can distract us from our studies . And furthemore it puts things in perspective . And you must to know a foreign language very well in order to be understood . On the other hand , education in your own country , for example , in Russia is very interesting too . Russian , Literature , Physics , Chemistry , Chemistry extra and History . . . . . . . . . . . . . . Yesterday , I went to Shinjyuku to meet my friends . I think my hearing skill has gone a little up ! ! There are no more than 5 people who can pronounce my name . I have a cat , it is a girl . It 's very good gadget for me . I rented the second episode of HullHouse . But I was suprised when I went through the tollbooth . Ithink people who normaly do n't use this tollbooth will use it from today . I have to be careful driving tomorrow . I 've never been to such a place as the Rockies . But I laid down without hanging them out ! Recently I have n't written diaries for a few weeks but I can get feed and other necessary things for free . This is a thank you to all you kind people for your patience in correcting them . It is natural that Japanese go to shrines when we need a peaceful mind . I feel SOOOO BAAAAAD ; [ I never thought about writing a journal in English . you will get a speeding ticket in Japan . you should drive by a speed of up to 40 kilometers to 60 kilometers . If you drive on the road with many houses on either side or by a school , you need to follow that sign . Can you correct my sentence ? I felt it was eerie and thought the national hysterics were something like fascism when I was watching TV . There will be the exhibition at my daughter 's kindergarten tomorrow . She brought the program from kindergarten last week . My daughter is in the youngest grade so she made `` daruma `` and `` christmas trees `` . So , how do you guys study for learning your second language ? my computer broke when I tried to start windows and install some software , if I had enough money , I would buy a laptop , a toshiba one . During my turn , the examiner just could n't find the form for the examine next to me , and he looked like he was very busy , so he was not so strict when I was driving , and that made me get 100 points on my driving exam ! ! Sue : Pardon ? I will call the others and tell them to get ready in advance . Santa Clouse came to the party / visited our party and gave me a present . My teacher say / said that Santa Clouse is / was majoring in engineering . I had n't a chance to say `` good bye to Santa Clouse , so my teacher will call him later . Because Santa Clouse brings them gifts in that night . Children are hopeful on the 24th night . She has finally become accustomed to staying there just in the past couple of weeks . At first I was worried about her mental condition in the changing surroundings . Thank you for reading ! Paragraph 1 : Introduction : Travellers from other countries bring more advantages than problems . Paragraph 2 : Paragraph 3 : Overseas tourists purchase souvenirs they can not purchase in their own country . It brings a lot of interest in the country . Paragraph 4 : In conclusion : Generally , it appears that there are more advantages than problems . I 've been studying it since I was six , but in recent years , I have n't been able to practice it . We had an all inclusive stay , meaning that we could eat and drink anytime for free : ) Egypt is a very interesting country . . . Kiss for Egypt : ) Bye . See you tomorrow . ; ) The daughter thinks that roles should not be determined by gender but by personality . Louse in `` Fat Girl `` is closer to the contemporary woman than to the American wife in `` Cat in the Rain `` . `` Cat in the Rain `` focuses on nurturing . Unbelievable ! So my town is conveniently located but it is n't too busy Life will be different then . I would like to improve since being fluent could help me in my future career . Even though I study English , I really want to write in English . I am going to enter university come Feb . 26 . If whatI am writing is wrong , please correct me . Japan usually hires the students as new workers until Spring . American , European , Chinese , and so on . . . One day , he happened to meet a pretty girl and fall in love with her in their childhood though he does n't look young , and after a long time they meet for the first time and they are so passionately in love . He had already lost 2 babies because of famine , and now he had a new - born baby Pauro . Pedro never forgot this promise , and he sent his son to school . Pauro was n't a very good student , but he was a good football player , and when Pauro was 15 , Pedro sent him to his Transport Workers club , where Pauro trained very hard . When you open the card , you can see Santa Claus and a reindeer coming up to give Christmas presents . For most of thedefinitions , thesefeatures are : So the solution is reduced into a simple in theory : if you want to be successful ( happy , lucky , rich etc . ) , simply think that you are . Would you please teach me this word ? Girls in Thailand were very beautiful and kind . But my girlfriend forbad me to dateother girls . 2008 . 11 . 18 Tuesday Sunny My eyes were red and swollen , and I sneezed a lot and had a runny nose all the time . By the way , I ate beef bowl at lunch . , I added too many red peppers . Have you ever imagined your future lover seriously ? Finally , I could n't even show my smile in front of them , therefore I could n't see their smile either . I am extremely excited to hangout with them ( who is them ) as a friend or more than that even . Moreover , I found the hottest girl one week ago by accident . Im really ashamed of the behaivior I 've had so far . If you are also trying to learn Madarin , it is good way When I am very moved by some scenes , I get gooss bumps and I ca n't stop my tears . Recently , I 'm so busy preparing my resume for applying for jobs in Singapore . . . Now , I 'm trying to learn in this way in order to distinguish casual English from business English . The first day was so crowded we could n't cross the street . I enjoyed the weekend nights at home . I think it 's a great website because I can practice English here and I hope that I can help others to learn Chinese too . Salt or Sugar ? And I mistakenly used salt instead of sugar . + Oh no ! + I do not have one though . A lot of people are still missing or waiting to be rescued . For many people , it 's a very comfortable temperature . By the way , I do n't have a part - time job . 5 months of winter ! I only want warmth . Because I have played badminton for five years . So I can use the computer . I return books . : ) Yesterday , I drank too much alcohol Yesterday , I drank too much alcohol because of alumni I called my mother , I thought if I could hear mother I feel good , but it 's not ok . I want to say , we have to be able to distinguish between correct and incorrect information . My day started at 10 a . m . I just went to kitchen , made some food ( it was an omelet made from three eggs and some sausages ) and I ate all of it . And in that dream was British comic Sasha Baron Cohen , Britney Spears and some other TV - stars . My dreams are really strange . I was the leader of the international club for two years , and I aslo studied abroad for a year . Hi . Introducing myself . My teacher gave me advice to look at this site to practice my grammar and writing . Next time I 'm going to do a translation of some parts of some books or something like that . Do n't laugh at me ! After class , I have two meetings with other teachers . This is my first time But my spoken and written English is so poor , that I am afraid open my mouth . I do n't have a foreign friend , and there is no foreigners around me . What if I speak English to my friends ? That 's so weird . Second , they may not know what I mean sometimes , because my English is not good enough for them to understand . But , she showed me how to cook it very carefully , so it was very delicious ! Soak the fish , the onion and other vegetables in the sauce . If you have a recommendation for flowers , please let me know . I had met a Filipino girl who needs to learn Japanese . Through teaching it , I could have noticed differences I 'm too enthusiastic to fulfill my work plans recently . But some clouds was hiding it . She took me all over the resort and showed me a lot of Disney history and taught me a lot of Disney knowledge . I think she is the most beautiful person who is alive today . Free as a cloud , I learned a lot of things about shintoism . Before going through the Torii , we bow toward the main shrine . Priests always say the most important thing is to respect the gods . Do n't worry about making mistakes . If you cleanse your hands perfectly , Japanese people will be surprised . I do n't believe in the existence of gods , Anyway , it was a novel ( ? ) experience for me . Next time , I wish that I could meet another beautiful actress by chance . the story was about a mathematician who tried to prove Fermat 's unapproved theory . It turns out that it 's made from glutinous rice and powderd tapioka . It tastes terrific and the texture is like that of a rice cake . After that we had lunch together , we had udon ( Japanese noodle ) Accoding to the Bus guide , there were 2000 temples and shrines there . We laughed together and played pes 2011 . It seems that there was not any disasters in my life today , so I closed it and logged on to the internet to relax . . . When you speak Japanese , you will find that your I have not gotten used to Japanese pronunciation until now . It 's the one of my favorite sports . But I could n't do it . When I try to post it , I always receive an error . Why ? ? ? How does everyone get cute pictures ? ? ? The strong wind was blowing and the rain was pouring . she gave the world a moral example that bridged ( the ) divides of culture , class and religion . I have to travel by plane on a business trip tomorrow and the day after tomorrow . So I 'm very concerned whether I can come back to the Kanto area on Thursday . I 'm really nervous because I was not taught on how to use the registeration machine . However , my coworkers are very kind : ) it is so comfortable to be with them : D she said one more thing that if you had made a call this morning you would get the whole fee So I was little Lucky . I am not really a hard - working or diligent student , I always join in on some activities in school rest time , such as dancing ( Jazz ) , when I dance , I feel happy . so the Chicken 's name is vons chicken . Is it really good / interesting ? My birthday is January 17th . My family consists of 5 members . My dream is to be a good business person . Because my family are not so rich . Some people say ( that ) the placement of her features ( eyes , nose , eyebrows and mouth ) is perfect . The story of the play is based on the daily life of citizens of `` Edo `` ( medieval Tokyo ) or Osaka , usually funny and sometimes moving . Please tell me if you have time ! ) I thought that foreign gods are very strange and interesting . I changed my job at the beginning of this month . Its been almost a month . where I work is comfortable and the environment is just what I wanted . So I decided to start studying English again . I 'm studying English so hard in order to go abroad and study English this August . So , I 've been attending English conversation classes since a year ago . She has wonderful stories about her life and her ministries in the church . Now , I i intend to participate in an internship overseas next spring . Also , some elderly people think , a cool body is bad for yourhealth . When we think negatively about a lot of things , our mind can be filled with horror disbelief , anger , and other unproductive emotions . Today , I discovered this site while I was surfing the web . I think I should drive more frequently . Today I had a soy latte , egg toast , salad and yogurt . They had lots of stock , so they just wanted sell them . . . `` Do you have any plans to get married ? `` My handle is Sukesan1984 . On the menu was `` Sukiyaki `` ( Japanese style beef and vegetable pot ) So I really feel grateful for my friend ! ! My command of English is n't very good . Sometimes , millionaires give money to society , which is then used to make a better place to live ( in ) . Even though we use the barter mechanism for the market economy , it is not true that people do n't have the eagerness / desire to own things . Recently , I do n't take any medicine . In a case when the symptoms are serious or continue on for days , I will . Prepare finely chopped green onion , and grated ginger . I 've heard before that people in Australia eat a lot of soup when they have a cold . Because Dazaifu - Tenmangu is a beautiful shrine . When we are angry , not only ca n't we solve the problem very well , but we also make the conflict grow ( or worsen ) . The earthquake and tsunami are devastating , and suffering continues in northern Japan . I traveled to Punom Pehn , Cambodia last week . bikers , taxi drivers , the staff of the guest house , a poor person said `` give me your money `` , and more . . . This white cat has yellow eyes and looks fat . I enjoyed myself chatting all day long with my friends on Kakaotalk , which is a famous smart phone application , and also the most useful messenger in Korea called NateOn . Children should be given guidance when watching TV due to foul language , and objectionable / obscene scenes . English is not good because I ca n't use English fluently . tasks given to me are not int ( re ) eresting , . They are boring . Lotte Mart stopped selling Tong Kun chicken because of pressure from public opinion . Tong Kun chicken was released at the incredible price of 5000 won . Actually , this is a natural process as the company becomes larger . That 's why there 's conflict between the two interest groups . The second issue is the conflict between the small scale sellers right to live and the consumers right to choose . Some groups who represent the rights and interests of small scale sellers argued that Lotte Mart sold chickens unfairly in spite of the deficit . Regardless of whether this sis true , it is natural for consumers to choose cheaper and higher quality products . The third issue is the propriety of the comment by Mr Jung , a top politician in Cheongwadae . But I can ' t do anything now . I can only do one thing , which is practise my dance seriously and I hope I can get rid of my stiff dance step and not tear my trousers , so that my poor family will be proud of me . I 'm wondering what this sentance means . `` Bill said you were in charge of real estate . They are outstanding , kind and always willing to assist in my homework and reports . Actually I mean I 'm happy because I can write here freely without worrying about people laughing at me . I want to speak English more comfortably Every beggining of classes , I get too much nervous . They were so delicious ! ! But still It showed increase in performance . I used this cart so I should return it over there `` . She answered `` It 's their job `` . I 'm looking forward to talking with new friends from all around the world . Japanese TV broadcasting will be changed to digital after July 2011 and TV prices are lower these days . I am very satisfied . About Paper media graphic design a French friend told me : I search the correct recipe , the main crux is eggs temperature and setting oven time . In time , he rose to the position of a head agent soon after his appointment to Haiti on a mission . No one suspected the Colonel until he was caught when he was trying to sneak into a confidential room of the Pentagon which he had no access to enter . Yesterday , I was very surprised at the earthquake . At the beginning of the shaking , we thought it must have finished as usual , but it continued for a few minutes . My friend bought a backpack and a pair of slippers . Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as the cartoons , and they are interested in Japan ! I often talk about Japanese anime and cartoon to them . So , I want them to know another aspect of Japan , and I also want to know the culture of the other countries ! I can not sleep so I have to wake up . . . . . . . . take my money go to bank . it is hot today . I hate to walk in the street . . coz make me sweat . . but I wanna . . . . . . save save money . . . for my plan . . great plan . . . . I got kicked . . I am the admin but they deleted my ID . . 2 years time gone to waste . . . . . I worked for it everyday . . . The number of participants was about 100 . So I ( decided that ) learn English every day , I ( believe ) that I will ( get success ) in ( June ) . hold on , I belive thati will pass english 4 examination f finally . I 'm studying English for an exam to enter a college . The second exam will take place half a month later . This is a written test . Could you please help me with my writting ? I 'm looking forward to collecting my journal . I hoped to go to the hot spring in the south town . ( My country has a lot of hot springs around ) But It depends on weather from now on . I should brace myself . by the way , I wrote the difficult poetry phrase in the first paragraph , so It took a lot of time to write that part . I received an e - mail from someone who saw my profile at that website . And I accepted his invitation . I have learned that I should never use the webcam with strangers . And I deleted my profile instantly . watashiwa nihongo benkyou anatano ie nipasokan wa arimasu ka ? The purpose is studying English , especially speaking and listening . They offer discounted prices on flights , accommodation , and car rentals . 6 ) and there are too many applications whose functionalities were extremely similiar , Unwillingly , I wasted 2 days recovering the OS , removing some applications which were rarely used , cleaning and defragging the hard disks and registries , and so on . It is about 18 meters high and 12 meters wide . my overall high school score was not that good for my orignal university selection , and although I did n't have a very big passion , it ca n't be helped that I choose the Korean history section . but as I say , I was intersted in Korean history . my familly motto is that everything is influenced by the heart . When driving my car , I plan the things I have to do today . I do n't think I have any . . . . after that , I wanted to keep the class going . I think that my students was so suprised that a beautiful woman was belching . . what do you think makes a respected teacher ? study hard , and symphathize with students by reading their mind . at last , advice to lovely Chirwon highschool students . at this time , you do n't have to be greedy , so they can find their own beauty , make impressing memories , and grow your self confident to challenge new things . so I wish you become the most sparkliest star in the world . `` the new day , the owner of the most sparkliest star is just you . That I was surprised and disappointed that many people said we do n't have to help Japan because Japan pilaged us before . ( I know , these kind of people are only a few and they never stand for all of us Koreans and Korea . It 's not gossip , it 's a terrible disaster that happened to human beings . He lost his house and family , only thing he has now is a life . Helloooooo everyone . Wow , I am so happy . I slept for 14 hours . Hehehehe . I downloaded a movie that I am very excited to watch . imagine spending two and half days downloading movies ; two of them . So I had to go to the site where I found the movies . _ _ _ _ O Luckily , I found the movie on direct links . It fit my toes and it was so comfortable . I changed my shoes to Geta and went to my home . Ito Yokado , one of the biggest super market chains in Japan I tried to study Spanish after I came back to Japan , but There 's no lecture in my university and I did n't have enough time and money to spend for it . I bought one easy book for beginner , but that 's all what I did . , I decided to study it again recently ! I enjoy finding unique names and I imagine what kind of people they are . It means pig in Japanese , so I couldn ` t confirm to her that she was Ms . After I went to a cafe , and went to a shopping mall . I got that at half price ; ) Of cource , most utilities and restaurants seperate non - smoking area from smoking area . So , there are a lot of people smoking on the streets . For example , very high tax is imposed on cigarettes , and smoking at public place is completely prohibited . Last night , my friends celebrated my birthday . So I guess we should live our lives as happily as we can and let our government take care of the rest , pretty little citizens as we are . I went hiking in the mountains with my friends and my sister . although nowadays it takes only 45 minutes by car through the highway . I picked those from the internet because My photos at the shrine were not very good for showing how it was there . Next time I 'll show my own photos . What a pity ! When entering into a boutique or facing a clerk over a cashier counter in a supermarket , Japanese customers do not say hello to the clerks . ( They wanted to know where the bag was available , but they were disappointed to hear that she bought it in Japan . ) I have heard she has many fans all over the world . Jigsaw Puzzle of Mona Lisa The man who drove the car was very rich , and he had been punished twice because of speeding . We sweat , and felt healthy , fresh , and hungry . We ate a hamburger around midnight . Our jogging did n't make sense . This book is the second volume of the series . This book is also interesting , as much as the first one , but could n't show the deep impression of the first one . My name is Nasser and I am from Yemen . I work as a pharmacist and I need to study English because I am going to travel abroad to study for my Master 's Degree . At this time I work in Saudi Arabia , but really I cant stand it here . There are many many mistakes in Saudi Arabian living . They 're terrible in dealing with foreigners . etc . Am I wrong ? I want to clarify our relationship . I could enhance my relationship with my friends by using mixi . Are you good at mathematics ? ? I 'm not BAD at mathematics . I mean , I can get a so - so score on an exam . For example , people who really understand mathematics can get visualize things in their brain quickly when they are working with a trigonometric function . Anyway I think when I study math I need a mathematical way of thinking . That is the fact that I need to take a mock exam tomorrow and I need to face that fact before thinking about why I 'm not a mathematical person ! xD hah But whenever they speak with a pronounced accent , it 's too difficult for me to understand them . I have never gone abroad , so I want to travel around the world and see many places . It was very cold this morning . I often sit vacantly at my desk and do nothing on a summer afternoon . Maybe I 'll gain weight ! ! Soon after the quake , we found ourselves unable to buy any food because of the immediate closure of establishments forced mainly by the interruption of utility service . Yesterday was my first day back at school and I still feel tired . I am bored with my studies , as well as other things in my life . I 've worked part - time as a home tutor , read articles and watched anime ( or kept quiet in bed ) . Nowadays Japanese society is / has become personalized . It 's really amazing ! So , Perth was selected for Best Place To Live . precious memories His university is very famous . But I have no plans , I have n't decided where I will go . Definitely , I have visited most of the sightseeing places like diamond I received a new Spanish text from Japan , which is for beginners I am just learning `` ser `` and `` yo `` with it . I was so impressed by his acting and got interested in spanish and its countries culture so much . Although I have been studing English , speaking english is difficult for me . Actually I was there when they met each other for the first time : D I could n't beleive I laughed . . . I think I have to study harder , because I ca n't speak English fluently . Every summer I have to prepare for a formal teaching test . When I was in the college , I always went to her class and did teaching - observation . I love teaching and I think it 's a most suitable job for me . Haruki is my favorite author . I recommend reading `` Kafka on the Shore `` By the way , I 'm not sure about the difference between `` it `` and `` that `` . I hope that it will be very interesting and funny here . or how did she already get many corrections even though she has only 2 friends on lang - 8 . The second reason is our school uniform is a little expensive . ( URL I rarely cry when I watch a movie , but I cried . I will stay in the administration department . In the morning , my phone rang . beat Manchester United football . Of course , I will study ! : D He interviewed me for an admission interview 5 months ago . The full moon has very strong and strange power . Soymilk tastes similar to milk . The meeting lasted 6 hours and attendants asked the board members about nuclear plants . I am still poor at writing English . But if I continue to write in an English diary every day since today and someone corrects my poor English , I will be able to make progress . But it was boring and I thought it was nonsense , so I was out on my own way silently . Normally the way to make noodles to is boil in a pot . When you have bothered with everything . However last Sunday , I left for Mt . Fuji is full of / covered with volcanic ashes . The temperature at the summit was very low even though I wore a down jactet . My friend said they went to University at night or during time off from work for the last 5 years ago . I have n't tried to do anything for a long time , so hearing about it was really touched my heart , because I have also wanted go to University , but I could n't decide how to get started . My friend 's talking made an impression on me . I have struggled with it up until now because I have no confidence . As a business course would make it easier to find a job in New Zealand . But - he left more messages to me . Last night he left messages for me again . I 'm very nervous , but I can only study for next examination . well today I have n't done anything special I have just visited the shopping centre Filion at Fili station . There are many stained glass windows there . I am a bit confused . They looked as if they were walking or running near me , and I enjoyed the feeling that I was diving from the cliff . But to my surprise , when I just beginning to talk that I felt so bad on Saturday , they gave me a `` Sorry `` immediately , I thought they would argue , but they did not . . . . . . . . . . . . . . The day before yesterday , I went out with 2 of my friends ^ ^ We got together in Sendai , the city which got hit by a big earthquake . It seemed like the reconstruction was going on pretty fast which made me feel happy . We studied together there . I want to say to every single user , `` Thank you for helping other people who want to learn foreign languages . `` However , when I got to the college , I heard that the story got brighter in season 4 , so I decided to give it a shot and watch it again . knows about many things like classical music , clothes , or shoes . As far as I remember , people in Wenchuan , Sicuan province who experienced the earthquake received a lot of help from the whole country . Hope we can go to Europe next time . My Mother Is Strong She 's stronger than me . My superiors were arguing about subjects I did not know so , I have to so , it was confusing to communicate with a patient . First , When I ask the condition of the patient , Are these correct ? ? or what are other real English conversation , please For example , reflux in veins , clot in arteries , venous insufficiency , and from different countries . It should be delivered in mid Apr . However , sometimes we go on a picnic or walk in the city . I would like to listen to classical music in a theater / theatre . Last year , I realised how beautiful classical music sounds when played / performed by an orchestra . Because of that , I now employ a guy from Australia as a waiter from yesterday . He wants to learn Japanese and stay in Furano until the ski season closes . And he can speak Japanese well . Of course , he has to work as a waiter for the guests from Australia . There are many differences between Japanese and English , especially the grammar , I missed my English conversation club two weeks in a row . However , as I said , since they had to observe the strict rules for whatever reason and they were almost not allowed to express their own ideas and opinions , sometimes some people felt very uncomfortable and tried to get out of the community to seek solace in another place . Wow it 's an awesome place ! Will I meet some good foreign friends ? My dream is not to just be a doctor , but a skilled , heartful one . And as a physician , I 'd like to make many people feel at ease , and happy . I wish that he could live as long as possible . It seems like a boring and hard summer day . I took the airport shuttle to Wikiki and then took a taxi to the place where I 'm going to stay untill January . It is in the Hawaikai area where my host family lives near the Koko crater which was an active volcano along time ago . I am so glad to stay in such a lovely town for an upcoming 4months . I learned about stress reduction and how to relieve anxiety . I heard that she bought a lot of alcohol , especially Japanese - sake , when she went Therefore I have to be positive and do my best every day . Sometimes English pronunciation is hard for me . I ca n't pronounce `` squirrel `` and `` POLO by Ralph Lauren `` perfectly . One of the reasons was she was unaffordable and two , I did not understand about the job . My ex - colleague was not receiving salary sometimes , when he worked in canada . tongue or nipple . I want to go there once a month ! I went to see my friend after I finished work . We went to the same restaurant . We were sitting in the suanlum night bazaar and listening to music . We had drunk fruit shakes and ate something . She invited me to go night clubbing on saturday but I did not say yes . I promised to tell her tomorrow . I can not dance very well and I think I will practice today . I like to play the guitar when I have free time but not now because at the moment I would like to practice English more than play the guitar . I always think about it more seriously than others . But I found a different kind of fashion from traditional fashion . From next week I decided to go to community center 's English club . I really do n't want to forget English . I am worried about your condition . But I was not aware of somebody ever approaching me . Why did they chose me ? There are 4000 American phrases . Hello , my friends . I also hope that I can make many new friends here . But here , I can say angthing I like , even thought it wil lwrong . I should finish my English practices and understand the most elementary English knowledge , before the school year begins in September . But I feel that it 's important for improving my English to express my thoughts and describe my situation . I like to watch American , Korean and Japanese T . V . . I am a colloge student . I study psycology . I know that psychology in foreign countries is very famous . If you like me , you can leave messege to me . I am very grateful to everyone who correct my diary . I admit that , while studying , I have become bored . I was also impressed by your many heartfelt words . For the last few months my parents and teachers have been talking about nothing else but my exams in May . There are relatively many English speakers in my company . But because there are not many shopping areas , restaurants , or cafes , it is a little inconvenient . Maybe the weather changed too fast . I do n't like this weather . I went to Hwagyesa Temple to join Sunday Zen program with my English teacher , her friend , and my friend yesterday . We practiced meditation while sitting for 25 ~ 30 minutes , walking for 5 ~ 10 minutes , and discussed Buddhism together . Hwagyesa Temple is a special temple . I wanted to participate this Hwagyesa temple 's Zen program , but I hesitated . You can customise your home on the `` Settings `` page . I love my little daughter very much and she knows this . It is only 40 years old , but there are very talented actors and actresses . Dinner was also great ! Particularly , the chocolate fountain , which was delicious ! I cleaned the aquarium and did away with books and CDs . 25 I happened to meet my friend who has been friends with me since we were students on my way home from London . That things are imperfect is the reason that each day is new and gives the oppotunity to make things better . I majored in English and just took an Italian class . Most of them must have been / were made in Japan , but all the labels were written in Chinese . I normally do n't use them , because I always rely on the dictionary . But I dreaming of going to another country someday , to appreciate different cultures and do language exchanges . I think the internet is wonderful tool . I am trying to write my message and exchange with other learners . I am studying English in an English training school . My friend wanted to study English , too . She finally enrolled in this English training school . Everything was okay , and we could study English together . The problem is , this training school gives me a `` transportation card `` , which you can use to take buses or the undergound in return for my recommendation . I am very disappointed in her . So , I gave the card to her . I am really disappointed ! Please check my diary if you could , I have to study English thoroughly ! First writing This is the first time to write a diary on Lang - 8 . Yesterday one of my friends recommended me this service , Some Japanese can obtain very high marks on it . How on earth did they score such high marks ? I wrote I am going to a concert on Saturday . But I missed out on my favorite band 's performance , cos I was late by an hour . I had remembered the incorrect opening time . It was raining . I waited for the police for about half an hour . It was already midnight . They asked me many things . But I love tropical fruits ! ! ! I can not control myself when I face them . : ) I think it 's good for us because we do n't have a lot of money so we ca n't afford to visit foreign countries . the first diary in English I heard that people normally type their resume in America . The first one I happened to know this website , and registered as soon as possbile . When I was taking a Japanese course last summer , my teacher told me there are some websites where you can write articles and help to But after that , I forgot it amongst the darily affairs . I am weak in . writing . My speaking and listening skills are exacty low . . . But I know practicing is the best way to speak English very well . I wish I wo n't think that I wish I had studied harder / / / I 'm going to school in September . Maybe the reason I am so much slimmer than everyone else is because I am not a big fan of eating food . Korea was very strong , but finally Japan could win . we were really excited and happy . Especially , I like that , I can see the each prefecture 's special products and famous things . I learned of Nebuta Matsuri from that , which is a famous and unique festival in Aomori prefecture . At the same time , some people play and the other people dance by jumping . If you are interested in Nebuta Matsuri , I suggest you to search about it on the internet . As you you can see around us people are increasingly unhealthy . why ? He is a foreigner and has lived in my country for a _ long time , but he can not speak the language very well , so we usually talk in English . But it did not work well , and our relationship finally collapsed . . . It is not easy to find foreign friends in my country . Of course I am not a perfect person , and I have my faults , but I could n't accept what he said . . . So our relationship has collaped . . . and if you have a similar experience , please tell me something about it . I slept late last night but I have to do that because I intend to improve my strength . Today I am going shopping with my sister and my cousin . My cousin wants to sleep at my house today . I am so happy . My baby sister is sleeping now . ^ ^ I will even know some laws of Ukranian ` s Rights of buyers . Embarrassing situations It 's annoying because it means I ca n't speak loudly . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own problems . But it 's useful for me because watching foreign news is good for those studying English . My [ teacher ? ] taught me that you should watch it every day if you want to learn English well . It is time to go to work ! If you do n't get up , you will be late . `` I responded , `` Mom , please give me five more minutes . `` But now there is not much water , _ canned food or ramen . naughty . I ate rice already in the morning . Now I think I will have energy again to do what I want to do today . ^ ^ I forget grammar so it 's very difficult for me to answer them . His favorite character is Bumblebee . Today , I went to the library to study with my friend . l heard some bad news from a doctor . He said my first son needs to have an operation . It is a national test for all the university students . The test is a little difficult , but this is not the point . I am so disappointed that my boyfriend did n't come to go with me together ! Maybe , he never love me . In some sense I think , he do n't care for me like before . A month has passed , he said that we should go home together . looking this time , whathe said is empathy . Some foreigners , who love Japanese culture , always said that they learned Japanese from animations and manga . A : After joining a club in my college , I met many people . Most shops do n't close on Saturday and Sunday in Japan because all shop staff work for the service industry . Because I had a lot of work to do , I work up early in the morning . my family and I sometimes enjoy talking about disgusting things during dinner time . A : One day my mum bought a yam for dinner , and we dicussed the turd - like shape of it ( = m = ) % ^ & * & ( & ) % $ . . . ( talking in detail ) Their offense and defense are great . Recently in Japan there have been a lot of disasters , for example the Tohoku - Pacific Ocean Earthquake . Actually , I decided to be a waitress at one of your restaurants , because I thought the hospitality in all your restaurants was very high . However , I realised a problem in my work place . I found the problem 2 weeks ago then I sorted out the regular customer 's data . At that time , suddenly all the data was lost . I want you change the protection software and check all computers in your company . So I 'm writing these sentences for the time being . I do n't have school today . I did n't use to read a lot but I try to read more now We 've now become familiar with his songs and can imitate all of his songs ! If he had strong Christian beliefs , I thought he might not be able to accept ( his ) wearing it . ipad is also a really special gadget . I will pass through Brisbane , and if you have time to see me , I will change my schedule to stay 1 night in Brisbane before going to Melbourne . Please give my regards to XXXX ( her husband 's name ) In my house , it feels as if it was a family menber , or it is n't too much to say that it sometimes has a bigger impact on us than a family member . I mean I want to improve through conversations firsthand rather that unilaterally in front of screens no matter how inaccurate the information is compared to those of mass media . During rush hour , one guy said , `` Sorry , I am in a hurry right now , so I will give you two stickers . `` When I collect 30 stickers , I can get a Doraemon fan . The highest level of heaven . . . wow . . . amazing ! Bean is very funny and foolsh , Rowan Atkinson is usually a serious and calm gentleman . The Mid - Autumn festival night And I knew she stole a glance at me and me too . I look forward to seeing you and chatting with you on twitter ! ! My favorite display was a group of sardines . November ? December ? I 'll talk about one characters in one of my favourite / favorite films . It is a very impressive film . He does n't give in to the contemporary society . He wo n't do things which he thinks are meaningless . Eventually , after his insisting on the things which he thinks are meaningful , he succeeds and gets a genuine career , genuine love , and friendship . So it encourages me to pursue things which I think are meaningful , and which I think are right . because last night I ate so much . . . it 's because I want to learn English So , I want to practice writing about many different kinds of themes . Today , I write about following theme : `` What person do you respect ? `` Although I still do n't want to go to bed , I can adjust to cold weather but not to hot weather , because I can put on more clothes . Unfortunately , I was using my laptop and I did n't have a mic . I must work because there are lots of bills to pay . Hi , I am susan . Today is Valentine 's day and this diary entry will be my first on lang - 8 , I am so happy . Yakiniku restaurants are very popular in Japan . So we eat Kimchi , pickles , and Chijimi crepes with baked meat . We can eat a lot of different kinds of beef and pork . Some restaurants bake our meats for us . Both have merit and demerit , so it 's nice to have a choice from the view point of your lifestyle . The technique for cooking Kobe beef , is not to bake it for too long . Be careful , and research the homepage of the restaurant first . If you worry about how to research , My Singaporean friend told me that Singapore has no `` White Christmas `` but we have `` Wet Christmas `` this year . He is a professor of pharmacology and a friend of my last supervisor . Nevertheless , he listened to my story earnestly and gave me many great suggestions and opportunities . Third , he knows some pharmacy students who are interested in Japanese and he will introduce them to me . On usual Mondays , my feelings are low because it 's right after the weekend but only today , my mind was clear and I was excited even during work . She said that `` I promise you that I 'll do my best to study hard . `` However , I did n't think I made a wrong decision . About earthquakes . What do we as common people deal with these really sad situations ? The man who looked like a sincerefamily man actually turned out to someoneseriously addicted to porn and `` casually hooking up `` with women whom he had met at some on - line dating websites . Of course friends , relatives and loved ones especially his wife and two children have been so shocked about what had happened to their husband / dad . . . Everyday I will write in English in my diary . I decided I wanted to give a souvenir from Japan to my American friend . He is a male and maybe 26 or 27 years old . What would you like as a souvenir of Japan ? I 'm worried about accessing the Twitter site . Some patient do n't understand that they can totally remove the scar but only make it lighten . winter 's holiday has started . . . I was surprised about it snowing in October . I went shopping with my friend . Are you satisfied with your career ? Because , I 'm just starting / in the middle of my career now . I have not imagined my career goals yet . You know , it is one of the most famous universities in India . The Story of Coffee The night view from Victoria peak was wonderful . I love this season because autumn brings us tasty foods and beautiful weather . I got up a little late in the morning , but she got up earlier than me . I saw a delicious breakfast on the table . Now I feel this unpleasant atmosphere has gone . First , in my case I wanna go to Tokyo because it is such a huge and dynamic city . Which sentence do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? I will write in my diary next week . . . When I was a junior high school student , there was a Kendo tournament . because I have to go to school ! In addition the steak is served with an ice tea as huge as a small bucket . When I left part of the salad unfinished , I felt kind of apologetic to the restaurant . Is this a kind of Southern hospitality ? There is a difference between South and North . I often go to a restaurant near my office . The way comedians make a lot of people laugh is different in each country , is n't it ? After that , the traffic jam started , so when I arrived at the office , it was already closed for the day . Life is always full of frustration and disappointment . As you just surmount the present ones , new challenges are constantly arising . As far as my recent condition is concerned , a serious obstacle ( actually a really frustrating interview for a position in the student union ) has now left me feeling disappionted , worried and annoyed . All applicants , some of them my classmates , were hired except me . When I found this out I could hardly believe that I was the loser . It really hurt me and affected me badly . When a person ca n't reach his destination he may fantasize about success . I suddenly remembered this line from a magazine . So this state of mind made me revise my performance . . Maybe I was too childish . Maybe my ability to tackle personal relationships is lacking . Maybe I was n't qualified for the position . Still , I never doubt my persistence and patience . . Everybody has his own advantages and disavantages . My rivals , no matter how immoral or even evil they are , were all accepted . Sometimes I feel it 's unfair and think about the value of my existence . However , I also think that it 's reasonable that I , such a silent , humble and inactive student , should not be given many academic affairs to handle . We did n't even go out for months . I talked with an American friend this morning . I became a mentor in the Buddhist temple . And my ancestor would exclude everything . But he suddenly died from major illness before he was about to succeed to rule the whole country . After his sudden death , our ancestor 's commander became weaker and weaker . I come from a small family in Taipei . I live with my parents , brother and 3 pet birds . They are lovely , especially my 3 pet birds . I like to take pictures everywhere . I know English words and a little bit of grammar , so I can write English sentences like this . At first I want to concentrate on improving my English ability . about 30 % of the exam , I am afraid I can not pass it this time . Today I will go see a movie in central Melbourne . It is so difficult for me ! Child education is a very useful subject because I want be mother I want met people about the same age as me . I will continue writing my diary to improve my poor English . I want to exchange letters with new friends who are n't Japanese . It was quite useful for building up my vocabulary . The owner is a huge fan of pro - wrestling and he does up the restaurant with various colourful masks . I met some guys who always stay at home ! They said [ we know you are good at English , so is it possible if you could connect with japanese people who are also good at english and ask them for some adult movies ! ! ! ] THIS ESSAY NOT JUST FOR CORRECTION , IT ' S ALSO FOR [ HELP ] ! ! In Osaka , it 's quite warm today . I turned off my computer because I 'm afraid the computer would be damaged . I 'm nervous because the result of the University Entrance Examination will come out in two days . When it comes to human relationships , inferring a counterpart 's feelings or thoughts plays an important role in communicating well with others . They ca n't help foster our imaginations , but inform us with a lot of facts about the world . I gave cosmetics to my friend and sent an email to her . I 'm will be glad if the items will Arrive this week . If I have the power , I 'll write an essay . the acupuncture university . While I was studying English , I could see two pigeons walking by the window . And then , damn it , I took a nap . Today I went to a Mexican Restaurant , to try out other nation 's foods . Mexican Restaurant in the U . I was n't drunk but it feels good . First , I needed to go to the box office to get a ticket . I scurried to the next . Suddenly it spilled out solid excrement from it 's behind . Oops ! It 's a pun , intended hokum . I wondered why it was awake in spite of its ' being . nocturnal . For a long time , maybe for seven years , I had n't been to Osaka therefore , I really enjoyed it there / this time . University athletes compete in a 200 km marathon to decide which university is the best . I really want to become good at English . Secondly , I must listen to English CDs every day . Thirdly , I must remember an English word . Not only were the scenes amazing , but the actor was also handsome . But I like it , exhausting myself doing the thing I like best It is only Japan where you can eat raw internal organs from all over the world . Almost all tourists who come to Japan eat `` sushi `` and `` tempra `` . But raw internal organs lead you to a special and unknown world . That 's not so surprising , is it ? I did n't understand all of it , but it 's an interesting and fascinating novel . However , the other day , some Japanese delivered my baggage for me . This walk was a very rare chance to experience the beauty of American wildlife . This village has 5 springs , 1 souvenir shop and 1 green tearoom . When considering pronunciation , English and Japanese are so different ! In a pool , she is scared to put her face into the water , and at a park , she can not spin on the iron bar , because she is scared of bending her body toward the ground . But I want to be an a programmer so I want to know English for my future study and work ! . . . . The tension between Pakistan and India has been strengthened by the terrorist attacks recently . I work as a bellgirl at a hotel . We have a wedding hall and a banquet hall , so we are so busy on holidays . Seventeen wedding ceremonies were held today . But , ( ever ) since I became interested in English , I have wanted an English name . S please , recommend an English name to me ! About 35 thousand people participate . Yesterday , a subcontractor visited my company . Part of the Tokyo area started to have power failure . He often makes a round trip between Tokyo and Nagoya city . I think it 'll be helpful and interesting for me to study English because I can practice writing and someone will check my grammar . I 'd like to say `` nice to meet you `` A wonderful event has been held in Okinawa . Tomorrow I am going to watch `` Sex and the City - 2 `` with girls and will try to be merry , carefree and so on . They were my first choice company , so I 'm very disapointed . . At the time all stores closed from the 30th of Dec to the 3rd of next January , so we had to stock everything : drinks , food , videos , refreshments , snacks and so on . Now , 24 hour convenience stores have spread out everywhere . It is literally convenient but I am a little bit disappointed that such a thriling custom has gone . . . Luckily , my children like my cooking . we believe it is normal that we graduate from a Japanese university The test consists of two section . The first section is easy and almost all examinees can pass , but the second section is hard and very few people can pass it . If I speak English fluently , I will / can go abroad . I want to go to many foreign countries . Then he found a bed and started taking off his clothes . However ; there is not yet consensus on whether rich countries should give financial aid to poor countries . The first point with respect to this is that powerful countries could offer advanced techniques to the poorer countries . Take China for example , when scientists developed new technique to plant crops ; China could stop importing crops from other countries . Last but not least , powerful countries should also offer medical facilities to poor countries . In other words , disease also plays a critical part in economics . Admittedly , it is not enough to provide financial aid to poor countries . But my wife likes it very much . I have certain ( stereo ) typical images about certain countries . I went to a music instrument shop to check guitar - effector . Tomorrow , I will go to BBQ shop with my friend . Today my colleague talked about Western culture and Christmas presents . At least one people is happy this Christmas , the giver or the receiver . So they tend to decline the invitation to participate in the WBC . I was almost on the deadline , so I needed the Exchange Coordinators to fax the documents ( to be sure that they made it on time ) . I asked them to mail the documents to Japan . The bizarre weather . I watched something on TV about the bizarre weather all over the world . I 've heard many stories about the collapse of the earth . I believe that she will get the gold medal and I can see her best smile that I ` ve never seen . Mind Problem . . . I do n't like English classes . Please . . T ^ T correct some sentences . feel relieved bisa diterjemahkan menjadi ' bersantai ' ? On this special day , we visit out family , eat dumplings , and walk out to enjoy the beautiful lanterns . I explored the area where Prague Castle , the river and the Old Town are located and enjoyed myself at various entertainment places . It was about a teacher that was fired from his work because he did a little trick in the classroom . I really laughed a lot when I heard the story for the first time , but now I feel sorry for the teacher . And what a crazy principal ! ! I was caught in a shower last night . According to legend , ' Exposition of the Hieroglyphical Figures ' was written by Nicolas Flamel . I tried to eat sandwiches for the sake gaining a variety of nutrients . In my family , when we get a cold , we drink roasted tea with a little salt . I walk 15 minutes from the station to my office . But I do many things during this long commute . listening to English conversations using iPod . So , It is very important for me to spend time in the train , valuable studying time . Good - bye . Now let me introduce our city to you . We expect more and more foreign friends to invest in our city . This is my first writing . I would like to know how to learn English faster , can anyone tell me how to learn English faster ? She drinking beers and smoking cigarettes in a club . I could not find it yesterday morning . JIANGHEN told me that he took this book when he went home yesterday afternoon . The school festival begins today and it continues until this weekend . I saw this game last year , I heard many departments did that and they earned lots of money ! ! ! Chinese uses hieroglyph characters . English is phonogram letters . Each Chinese character is different from one another , but English words are all assembled by the same 26 letters ; it 's easy and efficiently , especially when inputting them into the computer . Chinese words are assembled by characters . English words come from [ creation = ? ] , affixation or compounding . Most of people said `` Avatar has a kitsch scenario , but is a movie with excellent spectacles `` . Surly , the scenario is kitsch . So recently my ability to speak English is increasing . . . . I want to be an employee of that bank . In recent weeks / Lately , nearly everyday I self - study with my boyfriend . I learned many students have read the book , but I 'm not sure that they have the knowledge , but at least they 're a step further than I . With the passage of time , I feel a lot of pressure around me . This week is really important and precious for me . In recent years , environmental pollution has become more and more serious . Many countries pay attention to the environment . Because I wantto perfect my English and have good conversations with people without having tothinkfor one or two minutes to talk or answer one question . If you want to talk to me , let me know and I wiil stay in contact with you I 'm beginning to read this book in English . I remembered , that I have a translator book on Russian . I want to develop my English in order to be better than before . I might not get used to this weather because some coworkers are wearing short sleeve shirts . In addition , I 'm using a blanket . This is my second Home page on Lang - 8 . It is named Fent . But I am looking forward to meeting many people . Now I have a lot of free time to spend , but I do n't have anything to do . In this case , if you were me , what would you do ? I want to go to McDonalds to eat their new hamburger . According to research , theaverageage of Japanese people when I 'm tired but I cant fall asleep again . These days I 'm so lazy . `` keep yourselves from Idols . `` I will probably have coffee in the future because it 's easy to make and tastes better . It has already come extermely hot temperature in Qatar . I really want today to pass immediately . When I was an elementary school student , My father bought a PC made by Fujitsu . I want to know why unhealthy foods always taste good . I went to a park called `` ge yuan `` , which was built by a businessman who sold salt . There are four different views in his garden , In 1999 , a horrible nuclear incident occurred in Ibaraki prefecture . But one month after I moved back to Japan , I could n't speak English any more . He is always smoking and drinking coffee alone . Then suddenly the man ( who was repairing ) opened the door and shouted like this , `` Water please ! ! ! ! ! ! ! ! ! ! `` . And when I entered my room , it smelled like the aroma of coffee beans . I 'm learning English and would like to improve it more so that I can travel all over the world and communicate with a lot of people . It said about Rat - as big as a cat discovered in Papua New Guinea . This title is `` National Security `` . It was very delicious ! Because of the high temperature , the snow was kind of melting . In this shop , I could have coffee with rabbits . I look forward to meeting with you on this wonderful and beautiful site , because it lets ushave Communication with others from other language speaking regions with peace . I look forward to your visiting and participation . Activity 2 : sepetember 28th , 2010 , Xinshi central park , Xinshi agnello and Shaoxing wine celebration feast That 's why I joined this Lang - 8 . Japan will play in the finals with e South Korea at 10 am tomorrow . I mean , I guess many people break their cellphones because of their habits . And when I was 8 , my father went out for business . Anyway I can make my friend very happy and that is my pleasure . I 'm looking forward to eating them ! X ) I appreciate it . I could catch his English , but I could n't speak as good as I expected , and I did n't know how to make sentences , so I 'll try to improve my speaking skill . If I need to make an appointment with my friend , but I am not sure when he would be available . I love her very much . But , If I take a careful look at my life , things are changing at a leisurely pace that I barely recognize it . We were really lucky because it was a fine day yesterday , though there has been a long spell of bad weather recently . I 'm thinking about beginning aSKYPE English conversation with a foreigner . My friend gave me a bracelet . My favorite taste is salty , but , today , I ate miso noodles . It will hold to appeal that Tohoku is fine so pay visit each festival in August . When I entered my university , I took theTOEIC TEST . I wrote in a journal entryyesterday that I wished something special happened , and here it is ! Everyone can comment on my writing . If students want to go to college , they have to go to school where they focus on studying . Then I brought the bicycle to a shop to ask them to fix it today . I will not give up to lift until last next time . ( ? ? ) Umm , it 's kind of interesting . And why are so many of them collecting unemployment benefits ? Japanese call that type of person `` a paper - driver `` . Although I was a little ashamed of my fruitless results , I had to pretend to be satisfied and present it confidently to all the professors invited to my defense . The main reason I write ' this ' is Until today , the family 's schedules were different from each other . I did this subconsciously . In the class , there was a women who is a foreign student and she spoke French so fluently and talked with the French teacher in French . Starting today , I 'll do my best to study not only English , but also French . : ) Subsistence cycle . My introduction He could have been successful as a doctor , but he choose to become a computer engineer , even though he could n't be sure of being successful . Now , he has become a professor at Seoul University . I want to remain young at heart until I go to heaven . You can make yourself So I believe the best way of window shopping is bringing nothing A newborn baby brings happiness . A newborn baby always brings happiness . Blue sky and blue sea , a very nice combination . The Sunshine is a little bit warm . When I compare it with the opportunity of a book , I can get more benefits from a book than a movie . Today , I had an English lesson with Brian , who is my new English teacher , at 8 : 30 at Starbacks coffee . I am eager to speak more intellectually . I would appreciate it if you corrected my diary . When I was in China , I use to walk around the lake in front of my house every evening . I want to understatnd movies without Japanese script and listen to English songs directly . Of course , I want to be able to use English for business purposes . which the temple is named . Some people prefer entertaining TV shows , talk - shows , quizzes , such as `` The Ground of Wonder `` , `` Let 's talk `` . I 'm not attracted to humble - looking people because I look so humble too . It is not dyed , and looks healthy . What made her look humble is definitely the combination of her damaged jeans and sneakers . But it is very special for me because it 's the last summer holiday in my university life . In addition , I want to do meaningful work from which I can not only earn more money but also get useful social experience . Everyday I come across many customers including native people and foreigners from all over the world . Though it exhausts me , it is a new challenge and a good opportunity for me to touch the competitive society . I 'm always worrying about that . Before , I lived in the dormitory of my corporation alone . I used to cook or buy something to eat in my dormitory alone . But now I enjoy dinner time with my family ! I live in the Russia in the city Khanty - Mansiysk I like Khanty . = ) It was very tasty , and I felt comfortable . Could anybody explain the sentence below ? And I help my mother with house work . It is important for me to study hard , but it is also important to help my mother . I try to study hard and help my mother this month . Please help me with any grammatical mistakes in my entry . If something does n't sound native , please help me refine it ! It was not difficult to drive in the Driver 's license test course . Hope all of you have a fantastic day ! ! ! ! Yesterday , my mother 's friend and her husband came to my house . There was an amazing accident in the championships . . . Tomorrow , I will go back to Tokyo with her and her husband . As a result , I felt terrible for a had a diarrhea in the afternoon . After taking a barium , I 've realized that taking the stomach camera ( or spectroscopy ) may be easier than ( the ) barium . It took a lot of time and I did n't know whether my sentences were right or not . This is the last day of Easter . The more hot weather we have , the more I need a sweater . But I feel like the temperature in the library is below the freezing point . Summer weather in New York is similar to weather in Seoul , Korea , but I think New York is a little bit nicer than Seoul . After I heard the news it will be made a movie and will be released in Autumn . He said some customers misplaced it after they read it and they did n't put it back in the right place . So I could n't help taking time to find it . Although I was too late for the festival , I went to see my friends . I belong to the Guitar and Mandolin Club . there are many shops . ( sports shops , clothes shops restaurant and so on . ) it was very crowded because it was a holiday I have to do an assignment about industrial dynamics in this morning . because the Japanese economy was so good at that time . I hope their business is going to get better . Baseball and Yakyu Of course , I always watched them in Japanese when I was a child American life is cool for me though I ca n't bring specific examples I feel strangely dull everyday so I want to finish My older brother and older sister give me a present every year . A few days ago , I used up my lotion . I shopped online for about 1 hour , I bought a rotion . The lotion arrived this morning so I used the lotion . But I do n't like the scent of the lotion . I live by myself now but I try to prepare meals by myself as much as possble instead of buying food . For my health , recently I try to eat back beans and agar and drink at least 2 litres of water a day . People say that black beans are good for your blood circulation and helps your skin stay healthy and the agar has a lot of factors which help our circulation . I enjoy cooking and increasing ( more my repertoires . ) = ? In addition , I 'm refreshed by it because I would experience new things whenever I go to an unfamiliar place . The sales person looked a little in a hurry and she rushed to answer our questions . And what makes you absolutely Happy ? I ordered some hijabs , I mean special muslim 's veils , not all clothes , only for the head from the internet , because here there is only one shop with muslim 's thing , and there are almost only books . - - > On 26 May , my team needs to finish the final project , I must work hard to do that . I hope I can pass the exam because if I ca n't , I will have to study one more year . Because it was the TV drama of the BBC , the actors and actresses were speaking in British English . I gained weight ! ! ( T T ) My weight . . . . However , I was surprised when I saw the awesome scenery . At night , I cooked hashed beef and rice for dinner with my mother . But he is also gathering information about jobs in another country . Anyway , yesterday was Chiniese new year , so there were many Chinese festivals in the city . We can always see many Chinese people in the city , so it is like Sydney is part of China . I had a sore throat today , so I took some strong herbal cough drops . There , you will find everything from street vendors to high - end designer brands in huge department stores . What I found is that the sound and the rhythm of It takes about a hour to get there by car . I Watched a Horror Movie I accidentally tuned into a movie and started to watch it . It was a horror movie . That was the kind of moive I like so I continued to watch it to the end . Three diedthroughout the movie . It was a heavy movie . Recently , I have wanted to get it more and more . There are Maguro ( Tuna ) , Botan - ebi ( Shrimp ) , Hamachi ( Young yellowtails ) , Shima - aji ( Horse Mackerels ) , and Hotate ( Scallop ) ! ' till then I 'm going to visit a couple of Arts courses . Today , I woke up at 8 : 30 am and went to school for my practice play on our school festival . Many people had their dog walk around the lake . As you know , in most companies , there are more than one employee , and we can call all them co - workers except you . It 's difficult to speak to foreign people in English . My friend asked me to translate it English from Japanese . Could you correct it please ? Cross my fingers , Last Sunday I was at PROPET ( pet industry trade fair ) for a dog grooming course It was cheaper for me than other similar courses , because I had a professional invitation . I want to say I have several problems with studying English . How do I solve my english problem ? Because the entrance for foreigners was brightly opened , I just passed through the gate of the Ewha Womans University easily . Actually , I 've been in Vancouver for more than one year studying English . She also likes natural foods such as sweet potato , pumpkin , Although I spend much time on it , it seems as though it makes no sense . I like this period from summer to autumn best of all the seasons , because I feel energetic during this time . but I can not learn Bengali . and I want to eat delicious Indian food ! ! I did not have time today My original color is dark brown , now it is chestnut because I dyed it . I am Bulgarian and live in the town G . Oryahovitsa . I am a student in Veliko Tarnovo city I enjoyed Rock Climbing ! I think having a car is very important for college students because college students need to make friends . When I was a college student , I went skiing twice a week with my friends . I used to watch Twenty Four , and I watch Full House these days . ( I mean `` copy `` and `` copy that `` ) Her mother married a man who is the brother of her former husband . However , today , by purchasing a flight ticket in advance or carrying no eatra luggage , customers can get tickets at a incredibly low price . Amittedly , without globalisation , economic , culture , literature and legislation would make little progress or evolution . I have been to London , Hawaii , Shanghai , and the west coast of the USA . I went to watch my daughter 's badminton games yesterday . My daughter 's skill is getting better and her patience has increased while playing . He has taken a tennis lesson before . On the other hand , if you talk to your boss or people you are n't familiar with , it 's more appropriate to use indirect questions . Is studying abroad or going to an English conversation school necessary for speaking English to some extent ? The Asian Games excited me ! Water is dripping down from the pipe . . . . I will complain to my landlord . I was absent from university because I had a bad headache . He is called `` King of Pop . `` I 've never seen his performance , but if I have a chance , I want to see it . However , that 's an impossible dream as long as he 's not a liar . As a matter of fact , I had been a kind of an old fogey . But believe it or not , I had n't bought my own cell phone , or car , But nobody is going to stop me . If I could think in English while reading English sentences , then my English comprehension skill wouldimprovng rapidly . I changed it for me , adding cabbage under the pork and a soft - boiled egg on the pork . One is by Renka , who is my favorite actor . It is one of my favorite books ! And also Renka has always been ( ? ) my favorite person ! One day I hope I can become a rich woman like her , Maybe there are not too many people that know them in Taiwan . When I was feeling sad and lonely . Are the following sentences I wrote grammatically correct ? I 've been studying English . In addition , I recently fell into a slump . Although Lewis 's piano solos are sometimes a little bit annoying , Somethings that are truly new are often accompanied by some kind of discomfort . There were too many people that Johnny separated from his mom . The shop is in Kichijoji City , Tokyo . The reason why I walk is because I am engaged in a walking competition with my colleague . I thought it would be difficultto book them for during the Christmas holidays , but it was easier than I thought . I will be living in a dormitory next semester . and I bought a lot of things for my dormitory XD There is no intresting places to go for a walk . For the first time these places seem like something unusually interesting . My grandmother was from a wealthy merchant family in Sakai ( in Osaka ) . ( It was mysteriously beautiful , she said to me . ) It also poured into her ears . She has a elder brother who was sent to Siberia but fortunately She can use welfare for the disabled , So I decided to cut her hair , and learnt about how to do it on the web . Also , I can be more aware of the author 's ideas and imaginations by writing on them . Because this pen uses thermo - technology , therefore even if you erase it perfectly , the ink would still appear under some conditions . but I 'm glad to see he is active in another country . We have to study or research very hard to widen the tunnel and to learn how to dig tunnels . I came across some sayings when I was reading an English document . Some have already been ( provisionally ) chosen for jobs . I like japanese food , because it is fresh and heathy . In Japan , we are anxious about relationships with neighboring countries , ie China and Russia . I 've selected out of those and developed about 150 and enlarged 10 . When I was young , I went back to visit my grandmother every year for the Songkran Festival to receive her blessing . The belief is that doing this will bring good luck and prosperity for the New Year . l have borrowed books . Why was my diary not corrected by anyone ? So I hope to meet more foreign friends and learn languages from each other . But it has passed a half month into February . I love sakura blossoms . It means Sakura bloom beautifully because of cold winter . It means ordeals will make our mind and humanity beautiful and strong . I bet tonight I will sleep well and I 'm looking forward to seeing someone who is coming to visit Thailand . . Hello everyone ! Today I have written a diary in English . Please check my diary . I love English and children . I must study hard in English ! ! ! What a special day it is ! ! : ) Register lang - 8 Today , I registered in Lang - 8 . The writing and speaking skills are terrible . And I put it in the refrigerator . It was so much fun , my friends and I stayed in a hostel which was a 15 - minute walk from the beach ! After playing that , we were so tired because we were rasing our legs , jumping and dodging etc . I want to go to abroad , and make friends there ! / Although I am ashamed , I also feel hateful towards myself . But to give an example , I have a / sense of justice ! ! ! It is famous for it 's pineapples . For instance , many exotic countries make millions of dollars on foreign * tourists . Not all of the tourists know how to keep the area around them clean . I 'm a beginner at English . I hope to use English better and to meet some friends . Today , I will eat kaki fruit . I like it . It is sweet and delicious . Now , in Japan , there are many kaki fruits on the trees in the gardens in town . Nowadays , I am reading fanfic of Sherlock ( BBC 2010 ) . Have you been to a sushi restaurants in your city ? A television is being turned off . Is there any difference ? I 'm a little upset by it because unlike many people in my age I like going to school and I 'm keen on learning new things . I love this fiction mostly because of its exquisite psychological description . They ask me to wear office casual clothes . He just said `` not too formal and not too casual `` write in English daily and watch NHK 's English program . But I overslept today , so I could n't study English . I turned around and around , which made me dizzy so I could n't walk well . I have to go to bed in order to wake up on time . Last Sunday , I watched a film called The King 's Speech . I recommend it ; it 's a very good movie , not only because of the story , but also because it has good actors and a good soundtrack . There were UFOs in my house . Watching TV ( ^ ^ ) I 'm watching tv now ! ! And now there exists a major problem that my vocabulary is not enough and moreover I am forgetting what I remembered . An important text awaits me and I try new ways to remember words by is skimming through part of the vocabulary regularly . Do n't tell her that I was drunk last night . We buy a lot of vegetables and fruit ( apples , oranges , strawberries , bananas ) . I always buy semi - skimmed milk and my mother buys goat 's milk because she is allergic to cow 's milk . On Sunday we are going to make a big cake with strawberries and a little chocolate . When I 'm on a diet , I wanna eat a small quantity of high quality food instead of making a pig ( out ) of myself by eating low calorie , chemically enhanced food . I slept with my sister last night she is always welcomes me to sleep with her . He likes to come to my house because he has many friends including with my counsin , who plays with him . Today I plan to read a book somewhere around my house and copy a book for my student . It has come to reach the conclusion that we will be playing covers of the rock band `` slipknot `` . For the next class I have to listen to a Korean song and try to write down the lyrics , I want to choose `` I ca n't let you go , even if I die `` by 2AM , can you recommend another song to me ? level , especially my speaking skill is becoming better and better . We know about sharing and we 're better at creating something new and special , but the old generation may feel nervous about the PCs and iphones or androids . People may pay more attention to their individual experience and their need to satisfy their desires other than those built on possessions . People are crazy to own a house or an apartment . If you were a boy or a man , you should have an apartment , then you can marry . I Love `` kaitennsushi `` I love sushi . Do you know `` kaitennsushi `` everyone ? I ate a lot of sushi . because it was cheap and delicious . I think I have to go on diet ! ! but maybe I will go to `` kaitennsushi `` hi guys , I am Mohamed sadiq from sudan I 'm 20 years old , it ' s my first time writing an entry in this beautiful site and I want to tell I had been working at a damage insurance research company for 20 years until10 years ago . This work had greatly developed me and a thoughtless remark disappeared . ( more specific ? When I try to remember new words , I look them up immediately and review them before I go to bed . And I hope everyone to be happy and safe I paid two hundred Hong Kong dollars to him and shook hands with him . I thank not only everyone who made corrections , but also Lang - 8 a lot : ) I wish ALL people who are studying a foreign language knew about this beneficial item / website / place . The short time makes me raise my concentration for studying English . Admission was 8 Euros . My first time was over 10 years ago . I had a soup curry in Sapporo which is the birthplace of soup curry . The shop I went to is 3 stories tall in Sapporo . I home stayed in Australia for a week . It was an amazing experience . I do n't know if it is difficult to write what I want to write in English . About English singer , I like Evanescence , Britney Spears , and Avril Lavigne . I 'm gong to count sheep . I 'm a native speaker of Spanish and I 'm trying to improve my English as I 'm studing a teaching program of English at the University of Santiago of Chile ( USACH ) . Certainly , I 'm not good writing in English and I still make silly mistakes , so I joined this website in order to improve my writing - and speaking - skills . I 'm interested in English and I think I need English in the future , so I study English now . I will write my diary everyday to improve my writing skills . Sounds crazy , right ? In the last set , I was trailing by two points at gamepoint , but luckily , I got four points in a row , not only did I win the game , but I also controlled my stress well , - this made me even happier . I can not understand some corrections . I 'm so sad because he was a person I respected . . . . . . . . . . . . . . . . . . . . . . . GMO ( genetically modified object ) - foodstuff , a living organism , created with the help of genetic engineering . Finally , the butterfly to the back . Bon matin . I found this website by random searching with the google bar . The different cultures of each country in which I am interested can be learnt from this website through our communication . We are in spring now andI saw the cherry blossom with its roses . I really like this kind of tree . And I have liked it since my childhood . The cherry blossom is called the tree of `` sakura `` I have a lot of hobbies . I do n't like spending my hobby alone . I like spending my hobby with my frend or with my brother or with my family . I enjoy with all because I spend a long time when I make my hobby . When I heard this , I was really shocked . . . My job is called central operator which means home electrical repair . So , these sweets bring out the delicious taste of powdered green tea more and more . In other spots of the mouth , bitter tastes of powdered green tea bring out these sweets . In addition , my company usually do n't work on Saturdays . but yesterday ( Saturday ) , we worked . I could n't go to the clinic ( or ? ) to work . because I do n't need to work today . So I was relaxing and watching TV shows which I missed because ( or due ) to working overtime . It is the first working day . I like Ken because he helps me when I have a problem . Ken is good my friend . He 's a businessman . He has many houses . His main house is very beautiful . He usually travels by plane . I believe that this culture is stupid ! ! ! Today , I watched a movie again Everybody drank and talked a lot . For example , thanks to the development of the Internet , we can now communicate with people wherever they live , without the limit of distance or time , by using e - mail , Skype , and so on . I straddle the line between these worlds . During the weekdays , I am absorbed in my classes while on weekends I am devoted to part - time work . I have a part - time job at a watch boutique within a hotel resort . Today in the morning , one couple walked in the store , and I talked with the customers actively , I was going to tell customers things about which watch they are gazing . Since most of our customers come from mainland China , I tried to communicate by using Chinese . However , they do n't seem to understand what I said , and there was no response with my talk . So , I turned to speak in English , but it was so embarrassed that once I finished my sentence , the guest replied me in Chinese . I like making things . But I can not catch the meaning of the following sentence : Ginger tea I 've been drinking ginger tea for a couple of days . Because of a hard schedule , I stayed there for only 10 hours , but thanks to my friend I thoroughly enjoyed the food and a massage . I live in japan , and I am a Japanese college student . There were many people there . Today my coworker invited me to his orchestra concert at Feb 22th . `` Nooooooooo Im Japanese ! ! ! ! ! ! `` `` Oh you are liar . . . . `` `` I never lie ! `` so many japanese people have got Tattoooooooos . . . . . Its getting popular I thought . . . It was a really fun day ! ! ! I 've heard an expression to do something to reduce stress is ' vent ' , And I will go to chiropractic tomorrow too ! ! But I feel refreshed so much afterward ! ! `` Just cut my friange , please `` . `` Cut up to above your eyebrow ! ? But actually I wanted him to cut same line as my eyebrow . . At the moment , I did n't recognize my misunderstanding . Just being attracted by something will make people drop into a `` sea of knowledge `` . Everybody , take me there ! ! In Japan , tattoos are not socially acceptable . But in other countries , tattoos are socially acceptable . I wonder if this situation shows that Japanese people are on the very conservative side . Every morning I wake up and feel so good , though , a little bit tired . Lesson making sentences after reading Myanmar over the horizon It was only a one hour meeting but a giant step for a fruitful future for the Myanmar nations and all the other neighboring countries . I 'm wondering if the Arab spring movement has warned the regime to grant a democratic voice . These words below are from the article and I made sentences using them . 2 condemn - Japanese Government has officially condemned the Russian President , Dmitry Medevedev , for paying a visit to Kunashiri island . 3 mar - Kosei Gaukuin 's honorable result in the National high school baseball tournament was marred by the announcement of some members ' drinking last winter . 4 detention - High school Baseball Association does n't give any detention to the school because the students concerned are in the highest grade and the team has launched the baseball team with their new members . Therefore , I seldom tell my friends about the existence of my blog . That person kept responding to my article . I Googled it and I found his blog . Because , we lose the power and courage to carry out our dreams . I want to travel the whole world and go everywhere , while I am young . The day everything will be restored is not far away . . Anyway , I became aware of the following statement last night : I was denied when I asked to request a higher selling limit applications . Why was I denied ? Currently the nursing system is a problem in Japan . I think it is not good to have a society that afflicts the elderly . But I 'm not decided on whom to vote for yet . I want to ( listen , write , speak , and read ) English more . I feel it is hard to study English because since I graduated high school , I have n't studied it . During World War 2 , Japan colonized Korea and took some people from Korea to their own country . Today , I went to a language school for a trial lesson . Because some students absolutely did n't speak better than me . So please correct me if it is necessary `` So , do you want to try the yummy soup ? `` She asked me with her eyes shining . `` Take it or leave it ! `` She yelled and shut the door . you said it ! `` The weird voice came again . I hope I can travel to 7 countries before I die . Another teacher called Mr . G treats us very nicely and often entertains us by making jokes . I 've worked at a law office for a week , and everything is a new experience for me . Then I heard the most unbelievable words come out from a reporter to a big star . The female reporter shouted the S - word to Nadal , turned around , and left without looking upset . ( Here 's a question to British people : Having used it just now , does the word ' bloody ' sound so vulgar that it sounds weird when used by non - natives ? But I think I should surpress bad feelings as soon as possible . A transition into a new president of the United State has many significant influences to many people and many nations . In fact , many people are still suffering from prejudice or discrimination . The message is that we are not stupid , and if we wish , we can overcome the discrimination . Two years ago , I went by myself to Las Vegas to see an Aerosmith and Motley Crue show . He and three other major players expressed their unpleasant feelings by quiting the Winter Training in HaiNan Province . I want to go to the sea this summer . Am I a character in someone 's dream ? When it comes to travel , different people have different ideas . First , travel will help you to acquire knowledge . When you travel to a place , you will have a better understanding of the local culture , tradition and customs . Second , travel provides you with the opportunity to practise * . I also went ( / visited ) the Aso Farm Land where you can find many shops , accommodations , hot springs , and so on ( / and more ) . That makes absolutely no sense ! ! I made a mistake that and deleted many songs in my I - pod . . . It is everybody 's day tomorrow . . We can rest for 3 days . Especially , the wind flapped us . ( ? ) It became a good opportunity to know the difference between my mother language and other languages well . I have to teach my workmen some knowledge about our production . It was beyond my English vocabulary . The differences between humans and chimpanzees Maybe I will have a topic to write tomorrow . I have to get home around 7 : 00pm to take care of my baby . After a while , I received her abdominal x - ray . Just overeating can mimic the symptoms of a severe disease . I think everybody has a window in their heart . first of all , my name is tulio , and I want to learn English , because nowadays companies require that you speak English Last week , I saw a new advertisement , `` they need a new reporter , but he or she must be able to speak in english . Firstly , my hairstyle do not set . Therefore I do not like June and July . Las Vegas is an exciting city , so so I 'm angry when it 's called sin city . Vegas is awesome ! And the conference that I had hoped to participate for many years was awesome too . If I remember correctly , your brother lives in NY , is that right ? Do you go to NY occasionally ? My favorite authors are Haruki Murakami , Soseki Natsume and so on . Haruki Murakami also translated some foreign works into Japanese . I sometimes feel very confused . C . without subtitles now . I want to visit the place where the drama was filmed . Because my best friend gave me a free ticket to the gym . I thought that the cafe was so comfortable . It is really cruel ! The team protected the Kekexili for 3 years without any support from local government . The bullfighting is a ceremony not just killing the bull but looking forward to a good harvest . In 1990 , he became the first left - hander to win the United States Amateur ? Championship title . According to the article , he has a left - handed golf swing after mirroring his father 's right - hand swings . I was at the company sending for a long time . My boss must use the details today for presentation ( ? ) but I did it slowly because my computer at my company is quite slow . I felt bad I could n't send the file to him in time . I tried to ask a colleague to help me send email to my boss because I must change the details . He is very cute . My friend called me to make an appointment on Sunday this week but I did not say yes because I would like to sleep at home for my weekend . I checked email today . It 's great to hear from my French friend . They sent a text to me , I had not seen them for ages . They had lived in Bangkok for a long time . I knew them when I went to practice English in Impini park . They are so cute and taught me a lot of English and French . I had studied French language for 3 years but now I have forgotten it . I can not say anything , just bonjour , comment ca va and Je t ' aime . I was fanatic about Gyoza today since I was in the middle of working . Incredible three times . Most people ( can / could ) have difficulties when they speak a foreign language which they 've already studied for a long time . Moreover , I can even hardly express what I 'm thinking in the foreign language . What do you think the most important things are when you study a foreign language ? Everything was expensive and there was a variety of merchandise that kids love ( even adults . ) They looked quite mature for their age at the entrance ceremony , because they wore suits . My university does n't have a lot of students but because of this , I can make friends with almost everyone and I 'm looking forward to that . It 's difficult to describe the recipe . We saw a bear crossing the road . I hate watching violent films . Outrage has serious and comical scenes . Today Osaka is so hot ! ! xO So Green tea is Ryoku Cha in Japanese . I felt it was weird to put something in green tea but we put sugar in English tea so maybe it 's the same thing ! : p Then it becomes two parts in the classroom : I teach my own things This is my first diary entry in Lang - 8 , I hope I can improve here and make friends with you guys ^ ^ . I like reading cookbooks , the pictures in the books look so delicious and make me happy . Do you know the Japanese noodles called `` soba `` ? Reducing carbon dioxide is attacked by TV commercials frequently . While I feel they are similar , I 'm assured that Toyota 's car is safer , more economical and environmentally friendly . It is evident that the car 's fuel consumption is 23 kilometers per liter of gasoline . And I am learning Thai informally . Last week , I did n't plan to go traveling over the weekend . But one of my roommates asked me to go to underwater world with them . Unfortunately , I was busy all the time and had not had any chance to visit it . Unexpectedly , however , it was raining and it seemed like it would continue to rain . What a pity . I will study more English and go to bed . The Internet in Thailand is not as broad or commercialized as the one in Hong Kong , but the quality of its system is high , built around the country 's universities and technical institutes , guaranteeing a large supply of Internet - literate people . Today , the day was darkening when I left the reading room . This theme is my homework . I 'll explain about Hikikomori . I 'm sure all of us can be hikikomori , because we are weaker than we think , and the reasons are more complicated . My English is n't very good so I want friends to talk with so that I can use it more regularly and improve my English especially my spoken English . During this period , I was fascinated by other worlds and cultural things . I locked the door in 3 different steps so he could n't open it ! To be bilingual is my dream , and Singapore has a good economic situation and working environment . It has a monster mathematic theory behind it , and people will never think any raw data is useful unless they understand the theory . It 's good when you sit down in front of the screen , watching the earth move like water , the spoon drift touch the cloud , and the dramatist personae always stands on the edge of death . The end of world , this concept has never been a part of Chinese culture , and no one believes it . Of course , maybe this is the difference between the ease and west . I use a black leather planner . 1 , monthly calenders for programing long term schedules and making appointments 2 , daily schedule and task notes for protecting me from forgetting and increasing efficiency 4 , refills written about information which I need to watch frequently . This system is like Franklin planner . I studied the system of Franklin planner , and reproduced this system with blank rifills . I do n't have any confidence in my memory , Actually I ca n't believe it yet . Tomorrow is the end of vacation , Global warming is a threat for all man kind < or > humans . The weatherman on TV said that February will be exceptionally warm . That would be nice . I was very suprised that every person I met was also Korean . I 'm currently * developing iPhone application in a Japanese company . these days Japanese government is very weak and tends to be changeable . I often eat a dish called NABE , which consists of vegetables and chicken , pork , or whatever your favorite ingredients are cooked together in a soup . However , I did n't have anything to do and could n't even take a shower because the water was cut off . we met and then we went to eat something . It was very delicious . Then we went to the academy again . I did n't know this actually but yesterday they had a Japan versus Scotland football match , here in Tokyo ( I guess ) . Yesterday , she taught us about how to pick - up a Canadian guy . Today is my anniversary He has powerful energy and charisma . I would like to learn Biomechanics and Robotics at Thukuba graduate university because I want to make a Robot suit like `` HAL `` . I watched the movie , title is `` zombieland `` and `` kickass `` , today . zombieland is very a sweet movie ! I could n't turn it over well but it was delicious . Although nuclear power produces nearly no coventional air pollution , qualifying it as `` clean energy `` , the disasters it brought have threatened the existence of human beings . For example , I had to be home by 5 o ' clock until I graduated high _ school and I could not leave any food , even a single grain of rice . They were pretty naughty to me but not to their mother . I told them to stop it many times but my face and head got hit by several stones . Next day I was dismissed because I punished them . Although I am single , _ I am nervous about becoming a parent . I feel a little bit nervous . Snacks goes crunch crunch in people 's mouth also drinks goes gulp gulp in children 's throats . The speakers are bursting out with loud and clear music . There are full of regretful comments with regards to his death which can be seen below the video . I did n't recite all the vocabulary , so it took me a lot of time to read the sentence . I want to buy some clothes for winter . I 'm tired but I thought my work is was pretty good I worked for one month so devoutly for him after my ' afternoon work ' and during my days off . I was so surprised . A funeral ( PLease correct my sentence ) I like its colour , very pale pink , almost white , contrasting with the dark brown of the trunk . In my opinion , all males should leave on Women 's Day also so that they can consort with their girlfriends and wives . I found it very interesting . I like rock ' n roll , for example : ZZ - TOP , JIMI HENDRIX , BB - KING , METALLICA and so on . . . If I can , I hope to take advantage of my previous experience and English conversation . I thought it was a bit weird because she and I were not so close as to exchange messages . So , we can easily understand the why people crowd in the promotional merchandise and discount sections , and the people produce and sell unsafe food , which seems strange in some foreigners ' eyes . However , food security takes money , which raises the cost of food . He was an about three - meter silver robot . Today , I have registered with this site . English conversation , English grammar , TOEIC Reading , . . . I have to study English for business . However , I did n't have enough money to order ramen because of the book I had bought ! I replied OK ! While playing , I stumbled on the soccer ball and fell . Then , I strained my left hand ! It 's makes me feel good to express my own feeling in another country 's language . The sentences below are one 's I made up today . It 's not perfect , so I want you to correct my sentences . Beef is quite expensive . And they are destined to trade goods and merchandise with each other . Thanks to your help , I 'm doing better at english than I ever have before . There are a lot of Japanese toys for kids , and I would be happy if foreign people also liked them . I 've been having a cold and a stuffy nose for a few days . So , Okinawa prefecture has different culture from Japan 's mainland . I love the compassionate people , the subtropical climate , and the beautiful sea at Okinawa . I had a practice of soccer at night . However , I had a lot of failures . I was shocked because bomb sound . I 'm so excited to see her on the other hand I have to tell her my decision . . . But I have to tell her immediately . . . . . . Anyways , how different is `` Be going to `` to `` will `` ? Referring to those information , we discussed what Japanese Government should do . We hope we can solve this problem next time . I went to my restaurant to work . Many people visit there . Born in 1869 in the hinterlands of Siberia as a son of a mere peasant , Grigori Yefimovich Rasputin would have appeared an unlikely candidate to rise towards a position of considerable personal and political influence over Russia 's ruling Imperial family . Yesterday , I was depressed because I want part - time job , but it was a day off for me . This weekend I want to rest and review my seminar textbooks . I felt the Chinese people 's energy in the festival . It was because I caught a cold . The `` Spring Bank Holiday `` was on 25th May in the UK . I finally figured out how to use my electronic dictionary which I got from my family as a graduation present . Suddenly `` Go for your coworkers . Love is paradox , do n't you think ? I having a problem right now . I and my friend Eri tried to stop continuing association with him . These are pictures provided by Multnomah County Sheriff 's Office . He understands the my problems . I really do n't feel like going because I have other things to do at home . This afternoon , I played ' Zhen san ' with my classmates , but we lost every game . I felt so upset after that that I went with some classmates to play ping - pong . I had n't played it a long time , and when we were just getting started I felt like a beginner . About my sister and her husband ( Iwork inJinbocho . My university has a rental DVD center , and all the students can rent some DVDs with cheep price . Is it normal to rent DVDs on campus in The States ? That 's more weird than doing nothing ! There is not a crowd of people and it is not noisy . Being a college student is terrible . I 'm so nervous . > < ? The advantage of Lang - 8 is that I can have my composition corrected for free ! Therefore , I will write diary or essay day after day . She said that she really wants to sleep over . Functional Magnetic Residence Imaging , FMRI , is a procedure that uses magnetic residence imaging to measure the tiny metabolic changes that take place in an active part of the brain . My first writing . In general , _ it is meant to symbolize that I should be loved by many people and also love many people . But in fact , _ my father had a favorite child at his workplace when I born , _ and her name was `` AI `` . But I like my name very much . We cant communicate very well . I loathe english . Like I said before , I will keep moving on . The newscaster said that in Islington the number of cars running on the street has genuinely decreased . The univeristies try to push students to communicate , and use a lot of English for studying . That was really really interesting ! ! The aftershock is coming , the nuclear problems have n't been solved and victims of the tsunami have not been rescued yet , but I believe we can repair the broken city . I like `` Toy Story 1 . `` I have watched it more than ten times ! ! In other words in English , ' The whopper is very delicious ' Today 's lunch I like spicy and ethnic food , so I sometimes have Thai or Indian food . To take in nourishment , I endeavor to cook light dishes through trial and error . But , I am not good at cooking . . . It was very windy last night . It is especially excessive today . I thought the stuff is too expensive . I ca n't afford it . My friend He spent 400 yuan to buy a cloth . He is very proud because the cloth is a famous brand . But when you receive t the jeans , you find this jeans is verydifferent from the picture . English is difficult for me . tremendous damage from the earthquake in Japan . Now , over 1000 people have died or are missing . Sendai , one of the biggest cities in Japan , was heavily damaged by the tsunami . It was the biggest quake since we began to measure earthquakes . I caught a butterfly . After that , I sometimes caught other butteflies . There were some foreign tourists Her occupation is as a beautician . They were very kind to me and their house was comfortable . My school is ACE , Australian College of English . I love flowers . My best score today is 89points , and today 's average is 85 points . A Headache I hate math , so I always get a bad score , Some people say that simply read through the words is enough to memorize those words . Some people divorced 25 minutes after they got married ! I was very surprised to see this news . But I think it depends on their personality , so that ca n't be the only the reason . Reading is very funny and exciting for me . My body is heavy . Today , I was very unfortunate . It seems like a ( very ) great community . I 'd like to make use of it , and improve my English ability . It 's one of the parts of speech in Japanese grammar . That is absolutely fantastic awards I 'd never seen before . He 's act in the Dark Knight was Amazing . I think that the train stopped and I could n't come home because of the typhoon . When a typhoon almost comes the train stops at my office nearby the station . I became very scared and decided to be careful from now on . Last week a pastor said that we had to take a pious attitude during Lent . The date of Easter is decided each year according to a given rule of the church , [ / BLUE ] and the dates of Ash [ BLUE ] Wednesday and Good Friday depend on the date of Easter . This year Easter falls on April 12th , so Ash Wednesday was on February 25th , and Good Friday is on April 10th . Many Christians fast on Ash Wednesday and Good Friday , and the money saved from the fast is given to poor people . Lucky me ! He is married to a Japanese woman , And had mongolian traditional boiled mutton 's leg . I realized the necessity of English for global communication like this . Today I went to school , because we will start our new semester the day after tomorrow . I 'm into horoscopes these days . His performance is attractive . I 'm glad I can join this site and meet many new friends . Having a phone call when their roommates are reading . Washing things when their roommates are sleeping . Thanks to this journal I remembered the washing ! I 'm looking forward to meeting them ! ! My sister 's family picked us up and then wer went to the Korean BBQ restaurant . We have n't been there in nearly a year , so we were so excited for their food . I ate watermelon , and caught beetles . It 's a precious memory . The old house was renovated . Hatupousai is Chinese food . I fried many vegetables , shrimps , and cuttlefish . The victims of the tsunami and the radiation leaks are suffering from a serious shortage of food , _ water , medicine and heating oil . I was impressed with both countries . I am 20 years old and studying in a university in Taiwan . I think I will start trying to write my journals in Japanese , but I 'm using English as the ( median ) supplement since my Japanese is so poor ! ! Anyone who can help me correct my journals will be greatly appreciated ! ! Yesterday , I posted an entry for people to correct and no one did . I have to return some books . The Japanese person is a girl . Her name is Ami . Me and her are the only two girls in the class , so we are very good friends . Our human should unite together to build a United Human Republic . I have already watched the first one . I am not good at writing essays . I have poor grammar . I am working at a restaurant . Thank you ! We were impressed because the illumination was very beautiful . Today is the start of my 4 day holiday . Out of all foods , it is the most delicious Please check my clumsy English . It had a lot of things . When drinking with friends I 'm not well acquainted with , I have to say ' ' I have to be up early so I can study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , the last two were jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe than usual so we have n't much work to do . My cats are running around energetically in the house . I 'm Chinese . I 'm good at sports . Repeat this 20 times , then put your hands on the back of your head , and repeat . I was in the lab until 11 pm because I had a lot of things to do . My alarm clock I alway set up my alarm clock . The alarm voice is a music . I think I have to change the alarm voice to be noyierso that it can make me get up early . I 've been interested in English since I was a young girl . I still can not improve it as fast as possible . . . . My writing neither . . . She bought a lot of things in the web and spend a lot of money . 2ne1 's charm attracts people . Although I 'm also fond of watching other singers ' performances , these days I 'm sure that 2ne1 's perfomances makes me feel good . I also know that the elimination of nuclear weapons is nearly hopelessly impossible . Regarding earlier posting I wrote a blog post for the first time on this site some hours ago . I had a graduation examination yesterday and today . I ` m expecting Japanese figure skater Mao will get the gold medal . 12 year artwork project `` Story to build a ship `` , This project works by PH Studio ( group of architectures and artists and photographers ) and people living in this valley . It was not until then that I actually felt I was in Europe , which is quite different from Japan . I think I got sick from overexposure to air conditioning . . At that time , the weather was so hot that I was wearing a sleeveless dress . So I shivered in the cold while watching the movie . : ) The pictures that I have attached are not clear because they were taken with a mobile - phone camera , but you can feel the joyful atmosphere . But I will rather buy my safety and comfort There are so many ants in my house especially around the kitchen . Taipei New World Mall boasts all kinds of shops , spoiling tourists and passerbys with their boutiques , snack stalls , apparel stores , video game stores and so on . I had good experiences to communicate with people of diverse nationalities . In diaries that other students wrote on lang - 8 , the word `` busy `` stands out . I have n't cooked recently because of work . I would n't say that I am a vegetarian , though I love all kinds of vegetables ! And I realised that even my childish laugh had disappeared . But I am truly surprised . Today was a leisure day , because I did n't need to go to work . I got up late , then I felt confused - - what should I do ? Wind flowed , clouds were beautiful , the sun was so hot . My kids have changed my thought . Then , we entered the same high school and joined the volleyball club again . What do you think of my pronunciation , to be honest ? The report noted that the student hung herself in her bathroom with a terrible pose directly because the school rejected her mother to live together with her in the student apartment . As a young person , I knew ; either for others or for myself ; I should work ( in order ) to live . I 'd like to make friends with everybody , to know each other and make progress together . My other friend and I were impressed by his comment Ohh how surprised I did n't think I would see them there . . I wish that snows would be melted by tomorrow night . After that , My Korean housemate came to my room and told me he had tried to made Korean food and eat it . I am studying English hard these days because I want to expand business in the world . I usually use our dialect , so people ask `` Are you from Osaka ? `` . `` Yes , of course . `` I occasionally watch TV programs . It is the last year for me to be in the university . So I want to go to experience and compare personally It is better to travel than to read voluminously . After that , I dropped in to a career center in uni , and wrote a report on job hunting . Every student has to hand in the report , so that it will help the students who will go on a job hunt next year . I recommended to him to download a word file from a website , and told him how to put a photo on a document . Do you believe that Mary is going out with Tom ? Tom was a quite , handsome man , ( do n't pretend you do n't remember him ! But I still have no ability to write or to speak on an acceptable level . I finished my job today . ( ^ ^ ; ) I 'll go shower after writing this sentence . I want to know about foreign comics . After ( ? ) opening the window , rain drops come into my room . Before it came to my house , it was my grandfather 's . I saw each year a countdown festival from broadcasting on television . But she receives a small salary . I always feel excited when I go to Karaoke . Surprisingly , he bought presents for me and my friend . Today is rainy in my hometown . I think Saiunkoku is a fun story but the theme is politics . As my homework is so heavy , so I have n't watched any drama . They are the reason that I have difficulty writing often . Recenty , I do n't feel well . I just do n't know what to do when he is grumpy and disappears . The third son recently hung on to something to stand up for the first time . However , he is very dangerous because he very often falls over . Those years were great , I met so many people from different countries . I liked them all . The world is so interesting . We are all are so different , but we are all human . We have the same wishes , the same fears and emotions . . . Hi everyone , I 'm Chinese , and I 'm studying English and Korean now . Now I totally regret my behavior . > < The most precious moment was when I passed the final interview for going to Vancouver for the inter skills training program as one of the representatives for my university . Lastly , I feel grateful to Byron for helping me improve my English and encouraging me to practice everyday . I was smiling shyly in the pictures , and looked happy . That is meaningless , in addition , This word must make me walk back . He is the most interesting and well - informed person I have ever seen . He told me that there are many treasures in books . Moreover , he loves to travel to different countries . I remember that I wrote one diary yesterday here , but I ca n't find it . return gifts as a token of thanks I think that it is important for Japanese to show ' a token of thankfulness ' in some way if we receive a gift or favor . Any way , desire of studying or learning by inspiration helps us not to learn at high level but helps to learn for discoveing the real world . The little pies and chocolate pumps at a candy store little popular but with nice sweets . it does n't make sense . The whole city is plagued in confusion and sadness . I was disappointed X ( Rose shall return again ! nihongo daisuki demo It is a convenience with many transportation sites . I prefer to swim in a swimming pool because I do n't like getting a sunburn , but sometimes I want to swim in the ocean . They have been supporting me whenever I 'm in trouble . One of my double majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rmb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationship ! So you have to study it very hard . `` I have to say that 's true . You just have no gift in studying foreign languages . You should just take pride in yourself , because you can speak the most difficult language in the world , Chinese . `` Writing an English diary is a new way . The glasses I bought are light and tough more than my old one . Studying at college is a lot of fun . I 've met nice friends and I have wonderful teachers . I 'll try the TOEIC in the next six months . I 've decided to study hard and earn a high score , so someday I 'll be able to talk English fluently with you . Boys especially behave like this . What I can do is to wish him a pleasant journey and fly higher in the future . I have tried to find the reason , I think there are two : one is that I did 't get a good start , which means my colleagues do n't like me very much . They just keep making fun of me , and they do n't distribute some of their work to me , but to another colleague who came this company later than me . This month , I faced a lot of difficulties , one is about work , and another is about a relationship ( actually it 's also about work , because what I am going to talk about is difficult to deal with - the relationship with my colleagues , and some of them are my roommates . Usually , I like cooking , but my roommates do n't like it . This kind of things always happens , but I 'm not used to it , I am innocent , I have n't done anything wrong . After so much time without a single word here I have decided to return to my blog again . I studying English . At the meeting , I had to explain the documents I wrote . I planned to visit my wife 's parents this weekend , but my wife wo n't be going back together with me since she has to receive one - day 's training in modern management on Saturday . I already need to sleep again because I need to get up early tomorrow morning . Moreover , overseas visitors chose June and January in second and third places with around 600 thousand respectively . Furthermore , similar trends are reported except a significant decrease in September with just over 600 thousand in 2004 compared to around 350 thousand in 2005 . In terms of the top 5 countries , the table shows that Japan , Australia , the USA and South Korea were the commonest countries as tourists to Britian in both years . * The top 3 countries did not show big changes in their percentages , although Japan was reported as the first country in 2004 and became the second with the only negative change of 2 % . But many people think that it 's a shame for an adult like me to be a fan of this story ! But I can not do anything about it . I 've already read all five books ( including the last one , written from Edward 's point of view and its fan fiction ) first in English and then in Russian . I restarted studying English last month . I quit studying English 6years ago . There are a few sounds I ca n't pronounce yet : . For example , I do n't know how to roll my R . A seriously infected patient is a 6 - month pregnant mom . The eighteen year old mom has been confirmed with the 2009 flu . She revealed pneumonic symptoms and respiratory failure , she needed urgent treatment for her life . PS : This is my first entry . But unexpectedly as soon as I got up in the morning on Monday one of my friends called me and told me that she wanted to visit my home . I 'm was really happy and she came in the afternoon , bringing me delicious food which we ate while watching TV . In the afternoon after she left my home suddenly another friend called me to go shopping on Tuesday . Surprisingly , while I was eating my middle school classmate called me and asked to meet in a coffee bar on Wednesday . So on Wednesday I drank a cup of coffee in a coffee bar with my classmate while we were chating and playing bridge . The next morning my classmate called me and said that she had an upset stomache and she wanted to know if I felt ill as well , but luckily I did n't . The change 's god . It is change or bills . Maybe There is a change 's god . The change 's god , thank you very much . I bought a lot of things that I loved including a bottle of sweet cream wine . Yesterday I turned on the air - conditioner ( or the AC ) , but today I turned on the heater . I know the meaning of word , but I do n't understand the use of this phrase when it occasionally does n't seem to suit the conversation . This school 's theme is : I will be a professional business person and president . The europen buildings were resplendent , elegant , and spiritless as they always are . I want to be a social worker or a reporter . I 'm looking for going out for dinner with her . Thank you for commenting in my last journal , I feel better and better . I figured out what it is was that was bothering me . I try coping with my life . It helps to step forward from dispair . Some students were running around the school . I was not good at sports , and I did not like running . But , lately I started slow jogging for my health . Some day I want to run a marathon . One day , I found this website on the komica . It 's a ACG website and I immediately found that it 's a very interesting website . When I think of people who live far away communicating with each other , I feel very excited . The other smartphones are not very attractive for me . Reading Habits summarize the book using charts and graphs with just 1 piece of paper read your book dirtily , do n't save your books . build specific point of view , write general subject like prism , not just dig subject ( ? ) . I went shopping at an electronics store . I want a small personal computer . It is very expensive . I do n't have enough money . I want a lot of money . The population is on the decrease . More specifically , young people are leaving , and old people are on the increase . On Friday we had American guests from New Orleans stay at our hotel . They were so friendly , easy - going , talkative , even , and they just start dancing . I 've liked history since I was a child , and I studied it in university . I did n't even look down , maybe by that time I 'm a little scared too . At that time , he knew that he must go or he would be a delicious meal for the fox . My work schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarten teacher . I want to go to foreign countries and thought that Macao is good for me because of the language and the money . After that , I listened to music . I have several compulsory duties [ compulsory already means ' which I must do ' ] . I awaken and I am very tired , totally exhausted from it . There is a phrase in Korean like , `` Men have only three chances to cry `` . I must keep calm in front of my subordinates , so I had to find somewhere they could n't hear and see my weakness . It 's very peaceful because everything fell asleep . . . except for me . It publicises itself as ' L ' ife is ' G ' ood . Of course , since it 's only a semester - long course , it 's not enough to cover all the problems there are , but it still can give a general impression on how complex and interesting this area of engineering is . I wonder if foreigners have a difficult time trying to speak Korean too . Today ( Japanese ? ? ? ) I watched Tonari no Totoro by GHIBLI on TV But I 'm cheering Daisuke Takahashi ! ! ( ? ) If you have some good advice for me and find my errors , please tell me , I will thank you for visiting my blog ! I could n't understand it completely , due to its historical background . After seeing the movie , I want to know the history of Spanish . This morning , I watched the movie ( called ) ' Beautiful Mind . ' I like to drink alcohol ; beer and Shochu are the best . I started writing a Japanese diary entry . I started writing a Japanese diary entry the day before yesterday . Because I was not interested in all of my studies in those days , Now , I saw many people studying Japanese on this site , so I was growing more interested about Japanese . I decided to start writing a Japanese diary . I think that studying foreign languages will be one of my hobbies . In the case of a movie or TV , the actor 's speech is very fast , so I ca n't catch on normally . Today , I joined a local soccer club . One Aussie guy was already sitting on the grass . It was so great , and it was Rock ' n Roll ! I think there are a lot of good things about the bus here . I mean , most of the time they are clean , they have a system for people in wheel chairs , and they are big . That day we played card games and chatted about summer plans . Then we decided to go to the Taipei Water Park together . It was not very exciting but interesting . I like computers and the internet , and have & nbsp ; read many books about & nbsp ; them , such as The Microsoft Word by Bill Gates , The top of the wave by Wujun . The dead languages . We could not finish the work we planned on doing , because the customer got the wrong program . The weather is very hot here . Hard schedule . I feel I 'm lucky and I want to take care of care my daily life . Mia has no father , because her parents had divorced . Many of our friends came and we had a good time . I wish one day I could be an excellent teacher as they are now . What we should do is respect them and try to improve their lives . Yesterday , while I was on YouTube site , I found nice hip hop groups in Japan . My major was international relations especially East Asia , as an undergraduate and graduate . ( It 's new expression for me ! ) `` This is a kind of fundamental soy bean . . . . `` We received a present from the science club ! Her voice did n't sound as lovely as it used to . I waited 3 hours for my mother to comehome . In the hall , I listened to the lectures about which course to take in the future by two medical interns . I 'm so worried about which course to take in future that these lectures are I 've been longing to make freiends all over the world and enjoy chatting and spending a lot of fun time with them . Avril Lavigne is my favourite singer . And Japanese is prohibited from now on . `` It was a surprise attack . Although most students were calm , a few were shaking . The notion I was not alone comforted me somewhat . I will post some essays in the future and I hope anyone who reads my essay gives me some suggestions . I spent one day playing with and taking care of my adorable niece . I will import the CDs to my WALKMAN tomorrow and I will listen to the music every day . Who are your favorite musicians ? But this quake became strong and someone shouted . I have worked with DSK in Korea before , I am sending our main products list as attached . Thus , I think it is natural that parents are the best teachers . It 's so difficult for me to use English in my surroundings . I live deep in the mountains where there are no people who use English . We came back from Boston late on Sunday , so we could pick her up on the way back to home , but the kennnel was n't open last Sunday and Monday for pick - up , due to Memorial Day . First , I saw the Japanese style armors . For example , some armors seem brave , some dignified and some intellectual . The weather forecast said , `` Pay attention to heavy rain till tomorrow morning . `` Actually , the previous article I wrote was never corrected . What kind of problems can this cause ? If people live in other countries , they would experience the difference . Connecting a city road system to make other free travel moreeasily and more quickly than stets and roads congested with many singing andlight bus stop . Today it 's rained so ~ ~ ~ ~ much ! but it rained , so I could not go out . what happened today : ) I saw a TV program about the new year 's marathon while getting ready for going out . Just the diaries of a stupid gril . that is nothing special . This is because the light reflected off the water bottles repels the cats . I think that is interesting . Sports bicycles are expensive so it is necessary to be careful when selecting a bicycle parking lot . And I guess electric toothbrushes make my teeth more clean than manual brushing . I suddenly realized that it was time to pull myself together despite my parents ' broken marriage , and focus on studying again . My friends taught me how to use the computer well . While we were going home , we tried to speak only English nistead of Japanese . Although our conversation proceeded slowly , I thought that it was good idea ! I feel the differences between two sentences . But I can not explain the differences clearly . I am in a ELD ( English language development ) class . If my English improves , I will take some science classes because I want to go to a good university . However , I do n't remember what it is about or how good it is . I practiced playing this song today : ) Today , I dropped by a glasses store and bought a pair of sunglasses for my use on a short trip the day after tomorrow . Tomorrow , I will wash my car with my elder daughter for the purpose of a short trip . Then , I thought I 'd study English words while reading book . Is there a book that you can recommend for beginner . Do you know a book which you 'd recommend for a biginner ? Actually , we all felt that way . 'cause I believe that to do one 's best is important and valuable . I 'm not a genius , I 'm just a normal person . . ^ ^ but maybe I can do it . speaking of methods of studying English , I believe that Lang - 8 is very effective and addition , it 's free of charge . usually I would work out , before swimming lessons , but I did n't do them today , I rarely have an opportunity to work with foreigners , so it is a prime opportunity for me ! I LOVED THAT ! The temple was good to see and Seokgatap in the temple , which was constructed in the mid - eighth century was simple , but had a good balance . The homework is to read a book written in English , and write about the setting , summary , and my impression of the book . : quoted from `` Pay It Forward `` . He allowed me to , so I called my mom to pick me up to go to the hospital . Italian restaurant Yesterday I went to an Italian restaurant famous for organic vegetables in Ginza . Theoretically , Indonesia is located in a strategic position . And they were touched by beauty of Korea 's traditional house . Now it is nearly 6 : 00AM . Perhaps , it will shock everyone . I hope my poor words can describe it clearly . What 's more ? eah . . . wait for me to have a dream tonight 2 days ago , at Yoyogi park , I drank with my friend . I was completely drunk and fell asleep on a bench in the park . By having this faith , I have the confidence to face the next challenge presented to me and I am not afraid of facing problems . Second , I want to go to my home in Hiroshima prefecture . I look forward to reading my diary after it 's corrected ! In the future , I will take more time to read , because I like reading very much , and I want to have more knowledge about all over the world . The job is difficult but it brings me a sense of fulfillment . movies , news , novels , grammar , diaries , travel news and so on . hello , it 's the first day I came here . I 'd like to make friends with everyone . I have to work hard for the meeting of our project in Sep . In China , finding a good job is very hard , in New Zealand it is 't so hard than China , but it 's not easy . When I missed getting off of a bus and was concerned whether I could get to my home safely , the bus driver made the effort to make sure I got home safely . It is that the weather in Seattle is very changeable . I miss my country 's family , friends and food but I know there are lots of interesting things in Seattle . So I hope you can correct my wrong expressions . we are gon na go watch the musical `` the lion king `` : ] Recently I got a new job . I am not sure if they do drugs like drug addicts or if they just did it once , because I heard it from someone else that I hardly even know . So I decided I want to ask them face to face if they are drug addicts or if they are dangerous , because I do n't want to bejudgmental , talking behind their backs . I want to make a friend ! I have friends in the UK and we exchange emails with each other but I make mistakes all the time . I will write my journal and emails which I want to send my friends . I enjoyed many experience , such as Mekong river cruise , long tunnel of Cuchi , and shopping . They have food that goes with drinks , such as fried rice , grilled fish , and Chicken karaage . This September , I will be promoted to a position that requires me to fill out a lot of documents . Please resolve my question . I 've finally finished school test last week . I challenge secondary level so I want to improve my English . Yes , my handle name comes from the from famous musician Jaco Pastorius . I was very surprised , because his sound was very unique and very interesting . I like learning languages , so I interviewed with a foreign exchange company . A little bird We used to be more talkative . Reference : The teacher said we can read together in 6 months to a year . ( half or a year . Or what do you recommend ? I 'm a beginner so please recommend easy ones ! XD So I buy a fiction named `` the Lost Symbol `` which written by Dan Brown , one of my favorite writer . Hence , I am not good at speaking and listening English . How should I study to be able to speak and listen to English better ? I felt refreshed after a 90 minute nap . Ican have breakfast for a half of the day , reading lj and planning something for theday . Before I posted it to twitter I had deleted it by accident . Do you know that Japanese mobile phones are very high quality and have many functions so they are very expensive items ? I have heard that there are simple mobile phones for average users and kind of pda for heavy users in foreign countries . My Japanese colleagues are morons , nobody can speak English well except for Seki - san . I am going to take the test in February . Now sixteen years later I still take time off of work and study to play it very often . I 've never had formal training or a coach . But I believe I have a gift for this ! Yesterday I found a website which has many people that live in my city who love this sport . Also : according to past experiences , the attendees are mostly professors , NGO staff , governmental associates , and university students who are related with this subject . Despite yesterday 's continuous rain , the sky was completely clear . I cleaned my room a little because it 's nearly the end of the year . You are a worker of a large supermarket . Maybe your supervisor has a trouble informing something to all the workers . Because the supermarket is very big . When I listen to music through headphones a little loudly , sometimes I feel I am in my own small universe . It has become cold these days , so I bought oil for the air heater . However , I could n't use it because the pump to pour the oil into the tank of the heater was broken . A raccoon on the balcony It was very surprising to see a raccoon on the balcony ! Well , I 'm living on the second floor , so it 's a big question about how he could get here . I like it when I touch the keyboard for the first time . However , the typhoon is coming to Tokyo and will be here soon . I was surprised by this number , because the iPhone , which is the largest competitor to the Nexus One , had sold over two hundred and fifty thousand in first week , according to this article . My dad is the most ugly man in the world . I hate him hate him so much , what a horrible man he is . We hardly ever talk , and we are always angry when we speak more than 6 words , so I prefer to talk with a stranger than to him . I have been satisfied with this vacation . As a result , my study is prompted sufficiently . I am a grade one university student now . I 've studied for two months . How foolish I am . everybody has different plans & dreams in the their college life , I want to be a business man in the future and have my own company . That journal was written by a japanese person . I eat donuts and drink coffee , of course . I finished a chinese character 's homework during break time . When I took a bath with my younger daughter last night , she asked me , `` Can I get a baby with my tummy ? `` She is 9 years old , a little chubby but watches her weight . My American friend told me that she had a friend in Australia and we found out that her friend was a student at the university where I will take an English course . After words , l went back to my home and watched the movie `` Butterfly Effect 3 `` . I like to have a my own garden where I can plant some vegetables and herbs , set up a table outdoors so I can read and relax In addition , another advantage of living in a house , it is much quiet than an apartment . However , there are also some advantages to live in an apartment , such as better location , cheaper rental then a house , close to public transports and variety of facilities from the apartment , For example , a bigger swimming pool , Gyms , theaters and a security system which is very important of our properties safety . I wanna study science in a university . I like science very much . But then I realize that I 'll never learn how to if I do n't make these mistakes , even if I get embarrassed because of them . I lost my mobile at a bus stop . It is certainly a new way of communication which we did not have some years ago that provides possibilities not available before . On the other hand , we must accept they have weak points , like risk of addiction and possible unintentional public exposure which of course can be found in other very old examples of our societies . The brain of that computer is composed of 2 Bubble - Core CPUs . I believe I can do it by Mac . Short time ago I read my acquaintance 's diary in mixi talking about lang - 8 . There are three words which mean the same thing as `` result `` lol ! I met one of my friends who I have been best friends with since we were high school students . I had a pleasant time ^ ^ He has a very global philosophy . They talk everyday in lovely voices . If you are free , please check my sentenses . The theme of the lesson today is net play and practicing volley . ever since I came to this school , I have kept telling myself never Actually one of co - workers is complaining about her cuz she is strict on everything like cleaning , manual and so on . Sometimes I really like to live here , but I feel sad often . In October of last year , I went to a Chinese restaurant in Fort Lee with my friend and her five - year - old daughter . Nevertheless , my friend kept telling me that they served delightful meals / dishes , especially shrimp dumplings and wonton soup . I did n't understand what she meant by that phrase . She replied , `` I said it 's my treat . `` I was confused , but I finally got the meaning . When I was a high school student , I learnt it / learned it as `` Be my guest . `` Trip to India ! Please correct my diary I hope the nuclear emissions will be stopped as soon as possible ! Are these three the right expressions ? I can talk to mny people . So , I can / get to learn some English from them . I watched a debate between Toshinao Sasaki and Son Masayoshi on Ustream . Sasaki guesses reform would need an application layer before rebuilding an infrastructure layer . Math question Let me talk again about my rubbish story . I feel more comfortable in them than shoes . `` Please tell me the differences between these two sentences , I received a picture card from a male friend of mine . He is an architecture , designer , gardener , and a ceramist . He has a broad mind and he is an independent person . He grows rice and vegetables for his own needs . I want him to get married and have a family . Besides , I have to admit that I am a playful boy . However , I think that I will have fun with lang - 8 as I am interacting with people on the world on the web ! ! on the other hand , I do n't believe that I am loved And let me know if you have any recommendations for places / food etc in Ho Chi Minh city . such as Manga , Music , Snowboard , food etc . Recipe for `` Okonomiyaki `` is very easy . But this food is very delicious . `` Okonomiyaki `` is a local dish in Osaka . So I took an aspirin and it went away . Without a doubt , Obama got what he wanted . Will Martin say his dream come true when he hears of this news up in heaven ? not attack China as much as before , this has made Chinese people observe the two candidates in a more objective way . I do n't use the air conditioner and every night feels so hot . My favorite season is Autumn . So I did n't go to my English school and cancelled my trip to Nagoya . . . . Fortunately , the job is finished at the end of this month ~ Then I am going to travel to Hokkaido . I have stayed in another Joy for a really short time [ ? ] , and I left there because of an event that I could not endure . I am so happy to join this site . Thanks in advance to all of you who help me . Today I was drawing a lot of pictures . because I had an appointment with my friend . In my living memory , I 've never seen someone who can survive without the help of nutrients that are mainly provided by food . It 's no wonder someone in Japan brings up this subject although we do n't need to be worried about our food for the time being unless something irksome affects the food markets . Therefore my brother temporarily adopted the stray , who is more loving and well - behaved than my own puppy . Today was an ordinary day . I woke up and went to university , a part time job at starbucks and then home . I think Oden is a uniqe Japanese food . It is an easy to cook and economical meal . I have no idea about grammar . . . and vocab . . . But , my English is my biggest problem . . . We ate Okinawan cuisine together . I go to work almost every day so it seems a little bit hard but it is fun to work with my coworkers , and I have to earn money for my working holiday , so this noodle shop is the best place I 've worked so far . I arrived at my first destination , Montreal , two days ago . And due to the distance from Toronto , the time zone between two was plus one hour on Toronto time zone . I misread it as she was good be born as good cooking person . Thinking in foreign languages . In addition , when I encounter daily things , I have started to describe daily events . But Japanese 's advantages , as it may seem , is a paradox . If I have my own house , I would like to try `` DIY `` : ) . Maybe I was gradually becoming Chinese ? Greeting with strangers is a wonderful habit . Today is the Lantern Festival which I love very much . The story comes from a manga in a magazine for adults . Watashi wa Torukojin desu . It is one of the most popular attractions , but I was able to ride it soon , I only waited 5 min . I managed to ride 12 attractions and Splash Mountain was the best of all of them . I wanted to ride Space Mountain but it was closed because of maintenance . The electrical parade was sooooo beautiful ! ! ! When I got home , I still felt as if I were riding roller coaster . I will talk about the advantages and disadvantages of a computer because I want talk about the advantages . About the disadvantages : At first , I thought I just had a hangover . I should stop working and go home right now . . . . And I 'm sure that I sounded funny and awkward because I just created most of the expressions right off the top of my head . although the first price is changes , my expectation is n't changed . I 'm waiting for May for my travels to begin . In the beginning of our relationship , he made me dinner that consisted of fried meat and instant mashed potatoes . Honeycomb & hive Here in my city there are a lot of buildings , and there are also a lot of museums and parks . Our problem is that in other years you could walk across the streets free , without problems . Now , at this time , it is imposible because of security problems . Barcelona . Faced agaist Real Madrid . I went back tomy seat and drank the coffee . My part - time job is from 3 times to 1 time per week . congratulations ! and today is our dormitory festival ! I 'm a dormitory student council member . As a result , I registered an account immediately and began to look for some friends whose goals or hobbies are similar to mine . There is an exam about house building in October . So far I do n't miss Japanese food very much because there is a large Chinese supermarket in the neighborhood . I can get vegetables , fish , tofu , soy sauce and many things to cook for myself . I really regret not going to my college reunion ! I missed my college reunion . Which is more popular in your country ? Today I changed my cellular phone to a BlackBerry . Of course , including `` Lang - 8 `` to improve my English skill . However it is a dilemma . but the recruter is going to come soon . I like to focus on my feelings . A podcast is a free internet service that supplies you with numerous topics in various languages . People that host podcasts for beginners speak about / on topics at a slower pace . If you do n't use podcasts , then I strongly recommend that you use them . Even so , I believe that Podcasts are still a very effective way to learn a foreign language . Recently , I 've been going to an English Conversation school on the weekdays . she spoke to me in a clear voice , and she knows a little Japanese because she lives in Tokyo . Rather than that , it seemed to be from novice to an intermediate level . My name is Akito . I am18 years old and am a University student . I live in Shizuoka in Japan . Mt , Fuji is in Shizuoka . Why then , do you know Okinawa in Japan ? I l lived in Okinawa before I moved to Shizuoka . I love Okinawa . There are many great things such as the clear blue sea , very delicious fruits , and native animals . By the way , I want to study abroad after two years for learn Engish and a different culture . But , I am troubled about where I should go . My senior advised me to go to America or Australia . In his opinion , in America , American English is spoken and in Australia , British English is spoken . So I should select them . Where do you think I should go ? I have little time to study because work began . I 'd like to introduce my hometown . It is the tallest mountain in Kyushu . It takes 1 hour and 10 minutes to get there from Yakushima airport . I 'm studying art at Zhongyang Meishu Xueyuan ( CAFA ) . Outside of art , I like shopping , _ play the trumpet , guitar , piano , _ studying languages , _ taking pictures , cooking , watching movies , etc . Encantadade conocerle . Today is Saturday . I got up early in the morning and did some exercises with my mom in the park . Since last year , I have been studying economics for a civil service examination . ( Sounds better . ) I thought that might be why I ca n't be good at it . Today , An unpleasant thing happened , , One of orthodontic appliances came off . I have to go and see the Orthodontist tomorrow . brilliant . Recently I can talk with them more smoothly than before , so I had thought my speaking skill is growing ! ! ! But in fact , their listening skill is growing : D I attended the wedding party . I wear contact lenses instead ) , umbrellas , scarfs , jewelry and so on . Even at home , many things disappear , so I 'm always looking for something . Yesterday I watched the movie Blood Diamond on the internet . The story is about a diamond smuggler ( Leonardo DiCaprio played this role ) who meets a fisherman by accident . Christmas Party However , I also know technologies have been changing very fast and the cost of the products are decreasing quickly so I decided to buy middle range products . I am satisfied . However , there are a lot of blog sites , which is the best ? At that time , there was a doctor on the train and he was OK . Anyway I think that they should n't learn bad Italian words especially because what it is said could be very hurtful in your mother tongue . Since I finished my Chinese writing assignment at school It is very thrilling and fun ! He looked fatter and he said `` Singaporean food is very nice ! `` Certainly , Singaporean food is so good ! Ofcourse we took a picture together and after that we had a dinner in a thai restaurant which alongs the Singaporean river . Maybe I should go to bed earlier . Have you decided what presents to give your friends and family ? The website said they sent exams result out last Wednesday . Today , two people did n't attend lab because they had a cold . Now , people are catching colds easily because the season is changing from summer to fall in Japan . You should take care of yourself too . English is very difficult Another song `` Kidz `` sung by Take That has ( their ) MV on the Youtubetoo . According to the theories of the great psychologists , I analyzed myself , encouraged myself , and enlightened myself . Actually it tastes good but sushi as raw fish on the rice is definitely better ~ : ) I watch Kobe Bryant the most . We ate many hamburgers because we were very hungry . ( But this was a big mistake . ) But the problem is my cousin seems like a mysophobiac . I baked chocolate pie and apple pie in the afternoon . I 'm preparing for a college entrance examination because next year I will attend a college for further study . So my resolution is to continue buying lotteries in order to pay for the expenses . But I try my best to help those who are learning Chinese . So that 's the first diary that I publish here . Moreover , doing chorus in class brings them together . Each one feels he or she is a member of the class and through singing they bond with their classmates . Apart from preparing for studying examinationand learning capacity examination . Moreover , it will be more fun than studying by myself . Second , I often help my friend who studies better than I do with my favorite subjects , except ( ? ) for English such as writing , reading , etc . When I was a high school student , I had a rival to increase my studying skills . Finally , studying with classmates will give me great opportunities to make a lot of friends who like to study with others . I could get used to working with many companies who can give me some kind of advice to run the company . For these reasons , I prefer studying with friends rather than studying alone . Hello , I want to practice my writing skill , so I entered this SNS . What are your favorite chatting tools ? QQ or MSN ? We got together to celebrate the day . I just smiled and said `` Mom I 'll get married this year ! `` I might have dreamed , but I could n't remember . But it gave me a headache . I have n't finished writing new year 's cards yet . I may need to have a nerve extracted if I feel any pain today . I want to speak English . I put it into my computer , then my Media Player showed `` under construction `` as the title of the CD . I would like to learn real English . The lesson of this story is that if you invest in artist 's works , you should research the age and health condition of the artist . I wanna know many countries and talk to diferent people , know different cultures not from tv , but in real life . in the picture above is the city that I live in , the upperview is so beautiful ! And now I 'm officially on vacation , so I 've decided come back home for one month , with my mom and younger bro . Then I will exert myself to study . This is a very encouraging animation , so I recommend you guys watch it ! There is very very small pond in my garden . I ( previously ) mentioned that I wanted to watch Inception . It was a very complicated story , but because my English teacher had told me the basic story , I could almost ( / just about ) follow the story . I 'm proud that Japanese actor Ken Watanabe plays an important role . I felt that a typhoon carried something adventurous . I think it is difficult . And It is easy to find people who are you looking for . But it was blamed by many mixi users and it was callapse just one day . I guess I want to comunicate with friends who study language . ( In Japan , it has become popular for people , especailly business workers , to get together and study in the morning . I surely depend on my iPhone ! ! ! ! ! ! ! ! ! ! ! ! ! ! It is really nice day for me , because this morning I found some money in front of my house . The motorcycle came to my home , I do n't have a license for motorcycles over 400cc yet . I like something simple , so my favorite coffee is an americano . The owner of the cafe is very kind , the price is not expensive . It is mysterious . . . . . I have difficulty explaining the rules in English , so you may not understand . Today , it was extremely cold ! ! Students at many universities in Japan are required to study a foreign language , usually English . I succeeded in comunicating with them because English was spoken . Today I had a graduation exam and missed many questions . I always have trouble keeping up with the rhythm , The story is about a woman who travels to Italy , India , and Bali ( in Indonesia ) . So I 'm a bit nervous but I am looking forward to studying English here ! I think language is very important , because who study various languages has more opportunities . I have two favourite books . I am sorry about that . ) , Chamber of Secrets , Prisoner of Azkaban , Goblet of Fire , Order of the Phoenix , Half - blood Prince , and Deathly Hallows . Dumbledore is the principal of the magic - school , named Hogwarts . I envy the author 's imagination . And he wrote a very awful letter like ' I wo n't thank you for the present . I 'm looking forward to it . As an English teacher I should encourage students to write more so that they can review and grasp the knowledge well , such as words , phrases and sentence structure . Of course , teachers themselves must have a good understanding of grammar and expressions so that they can give students right and instant correction . When a typhoon comes , elementary schools are closed . HELLO ! ! In this way , autonomous enrollment is a good additional procedure for College Entrance Examination . For another , College Entrance Examination is a only way for students to enter College before emergence of autonomous enrollment . Therefore , Autonomous enrollment is beneficial for students to do their best . Taking into account of all these factors , we can draw the conclusion that Autonomous enrollment is necessary not only for universities , but students as well . I have a good Korean friend . He in on doctrinal course . I went to a Korean restaurant . Additionally , I learned about many delicious foreign dishes when I came here because there are many foreign restaurants here . My favorite foods are Thai food , Korean food , and hamburgers . Korean food is a little bit similar to Japanese food , so I like it . I love green curry because it tastes spicy and sweet . I think American food is more yummy than Japanese food . Because of this , my weight increases little by little , but I enjoyed today 's lunch . These rights guarantee equality without distinction of any kind , such as race , colour , sex , Because of it imported goods become cheaper . At the same time , I have started to learn Japanese so that I can watch Japanese T . V . programs . I 'm a Korean college student . But it will cost about 50 trillion yen to realize this plan , so it is supposed that the consumption tax will be raised by 4 % , health insurance premiums will be raised by 2 % and premiums for nursing - care insurance for over 65 will be doubled . It 's made from roast cereals and does n't contain any caffeine . My favourite music ! Part 2 my first entry here nighttime , I either went to the library or had a walk with friends on the athlete grounds for more than two hours to practice our cantonese going to skate together . However , the service industry is really interesting . The dishes were very delicious , but I got the same dishes also 1 month before . There was a dramatic change in the youngest group , but the two other groups showed gradual increases as well . He was very the one who had been teaching me and keeping me safe before the accident happened . How can I make her like memorizing words ? This picture is our national flag . It is a peaceful country . We welcome you ! We ordered chicken dishes . I have to buy a ticket , pay travel expenses , and book a hotel . I 'll spend much money this summer . When you draw natural things like trees , stones or clouds it does n't matter how the line goes . I bought theipod touch with 64GBs , because I want to download a lot of audio books for now . Still there seems to be a pile of arduous tasks in front of us . My phone rang [ past simple ] at 0 o ' clock hmhm a new message is the first in my day . We could enjoyed karaoke more than ever . cooking is splendid . As commander in chief , the game user has to manage money , resources , supplies , equipment , military forces in order to command an space army and defeat the enemy . So I want to see a lot of things , and talk to some people . This trip will be a great pleasure for me . Ramadan is coming , so I will have a lot of time to stay at home and do nothing . Today , I will try to think about the ways of studying . So some people say a way of studying is good , but other people say this method is bad . I have read dozens of books about ways of studying . Because this journal is really long , I will write a concrete way of studying tomorrow . She is studying and works now too and she is paid about 500 $ a month . Yesterday , I received my TOEIC results . Hello , I am tdesesk . I am from Spain and I am learning English to speak with my friends and to understand people when I go to other countries . because he always talk big and he is mean . 2 yolks in my bowl , every morning . It is an international and professional organization . The members can improve their speaking skills by giving speeches . I hope someday I will be able to talk fluently in front of the public without tension : D Other than that , we also need to turn in ( or submit ) a group project assignment of 15 pages and have one group presentation and one individual oral presentation . Yesterday , I signed up for the correspondence course . The contents of the course consists of hearing English for 1000 hours in a year . According to the explanation of the course , it is generally said that about 1000 hours are required to get used to hear foreign language accurately . The course costed about Fifty thousand yen . It was not low but I could pay for it by the welfare program which my company are offered to me ! The course will begin in next month . I feel nervous right now . But I have no idea how to stand out during the interview . I 'm so nervous . . . . So praise God I can take the class , and hopefully everything will be okay until the end of the semester . Well , even though it is September , it 's scorching hot today . They are so strange ! If I will go to oversea , I would like to see monument ! I think there are so many monuments that are fashionable , and strange in other countries : ) Today I discovered an amazing work of art and a good artist . I think that his artwork is miraculous and beautiful . When I went out for work , the temperature was only - 10 degrees . I usually work until 5 : 00 PM from 8 : 00 AM . I understand now why I could n't write anything ; it was because my motivation came from showing off / looking good to other people , not from a desire to express my creativity . ESL Podcasts are for English beginners and it 's easy to listen to their pronunciation . I went to my University this morning . To be a telemarketer for the day . The topic was `` No smoking at work `` . Repeating the same questions again and again was repetitive . First I want to learn English , so if you want to help me I will be very grateful . : ) The first people who take paid leave ( days off ? ) in 1936 go camping and dance the tango under the windows of a british manor . Another reality makes trouble in the manor : the influx of foreigners coming from Germany to escape the Nazis . This happiness disappears because of the agitated defenders of Occident . Studying English and massage She has a nice body and beautiful legs . We 're tumbling together , to get more clear that what is tender Although it might be tiny numbers compared to the US market , we 've begun to rent or purchase movies via the internet . Today is a very comfortable / pleasant / nice day , hello , I 'm interested in learning english but it 's very difficult for me . . . I 'm learning English and Japanese . I want to speak English and Japanese better > - < I think I should study more ! My lunch today is fried rice and fruit . The leaves change their color to red in November . I have many dreams . I think all are future tense . . . . . I woke up in a very good mood , but the sand in the wind was very strange . A strange wind blew the sand in the air , although it was not much sand so I could still see the sun . But the sky changed to gray . That was the first time I have seen sand in the air . Tehehe . He is an English teacher at the institute where I 'm teaching . The answer is a Japanese ceremony . Japanese children are wearing western clothes usually . but now the 753 ceremony is more simple . I 'm afraid Japanese traditional ceremonies are smaller than old times . since I opened this web page last time lol I do n't know what bad translations are . v Valentine 's Day . Of course , I 'm included . It made my taste change spicy ! Ater that we enjoyed shopping and became tired , so we went a cafe . After hiking , we went to a Japanese Sushi restaurant in Oakland . On July 24th , an earthquake with a seismic intensity of upper 6 occurred in Iwate prefecture . Fortunately , building damages were small . I decided to translate a short story ( well , actually it 's not that short ! ) by Somerset Maugham `` The force of circumstance `` . But for my dismay right now I can remember only one of them . Reading these books helps me learn English , but it is bad for the store if I never buy them . Electronics supply store I was happy just looking and imagining what life would be like with them . The surgery was about 20 minutes or so . There were 6 or 7 pieces . He cleaned and sterilized it . I 'm OK now , but every time I eat something , food gets stuck in there and I feel very uncomfortable . The reason is , first of all , that he has a lot of knowledge about architecture that he is always willing to pass on to his students . However , in fact , I do n't know , and I 'm afraid about the exam next year . About The Canadian International Dragon Boat Festival . Dragon boating appeared in Vancouver as a demonstration sport at - Expo 86 . The people raced out in their fish boats and used their oars to keep the fish and water dragons away from his body . But it so exciting to know something about a foreign education system . I felt English was really interesting ! ! So , I wanted to become a customer service agent at the airport . I am learning English and Chinese now . It is funny for me to watch stars while thinking about myths . When I try to charge on a customer 's credit card , I call a company called ' Authorization Centre ' in Japanese in order to get the transaction number from the company . I 'm studying Japanese teaching and I want to live in a foreign country . Recentry I studied English hard to improve my TOEIC score . These suicide bombings have taken place universaly so the United Nations officals felt obliged to investigate . The situations told by witnesses who claimed to have seen the incident were extraordinarily similar . Though I 'm not a follower of the press celebrity , when daily we are harassed by bad news , a wedding does stand out from the rather mortifying current events which surround us . What makes them so fanatic ? As I grew up , I became a little bit Buddhist - minded , but I have not practiced any of the disciplines . HE IS ONE OF MY FAVORITE SINGERS I TO LISTEN EVEN THOUGH IT HAS BEEN JUST 1 WEEK SINCE I FOUND HIM ON YOUTUBE . SINCE I ' M NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNORE THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` INSTEAD OF JUSTIN BIEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID `` NO WAY ! ! ! ! `` . I find it is very difficult thing to do . In fact , I have a new dog two weeks ago ! Despite his tiredness , it took a long time for Shu to fall asleep , which made me exhausted . It is my wish that children become fond of mathematics in the future . But , I 'm a little worried if I 'll be able to when I 'm hungover . They were so delicious . Have a good night ! Thank you . When I rode home , the breeze smelled so sweet and amiable that I felt just like a bird , soaring freely in the sky . This election was my first big election . I think it 's a very big event and it is just a normal thing too . And I saw a TV drama on PC . We drank champagne and beer . We requested songs and drank some champagne . Sentence structure and grammar are very important when we write . I hope this article is mostly correct . I bought Drano yesterday . Why are you waiting until it fails ? `` A few days ago , I was really confident and believed I could do everything . I could even act like a well - known actress . I want my mum or my close friend to hug me whether I do well or not . I have just started to write a diary on Lang - 8 today . But I do n't have self - confidence with letters . A good friend . I have a good friend , an e - pal , but I treat her as my friend . She is an interesting person , I wonder whether the word `` interesting `` is right or not to describe people , lol . Although I am older than herI think we will be really good friends , I thought tomorrow is Saturday , so I do n't have to work , but my customer said `` Let 's have a meeting tomorrow . `` . I should have watched them before going there . If you have kids , you can bring them there to join the story - telling event . When I chatted with my American friend about a Japanese hologram idol , Hatsune Miku , over Skype yesterday , he sent me two very funny video clips from YouTube . I am Ukrainian , but I live in Russia . Ergo Proxy , Texhnolyze , Ghost in The Shell ( I like movies more ) , Witch Hunter Robin It is an illustration of girls dancing a fula . A for a long time that it was not correct , because a cunjunction must be used in the middle of the sentence . but I do n't know what to write . This movie did n't meet / satisfy my expectations , but it 's still a good movie . We may be as happy as can be to read the books which our favorite writers wrote or are about what we are interested in during the long nights in this most comfortable season . There was an old man & nbsp ; waiting there , too . It is the UEFA champion 's league . So I am writing a diary and killing time . I hope the drinking party will be over in a few minutes . I have been learning English for five years and I have no one to communicate with in English . I want to go to Canada to study English . I was at sea this summer the first time . Today , I thought of a difficult grammatical concept . Today , the water supplyin our neighbourhood was I want to try a lot of things actively in this year . We cosplayed as KOF , a popular Japanese fighting computer game , and placed third in the Beijing area . If I wanna make a foreign friend I must command this language . Today when I woke up and brushed my hair , I found a part of my hair was tangled badly . Finally , I used the brush to comb my hair again and this time I was able to brush it through . I am proud of the workers who are working at to solve the nuclear power plant disaster . In Fukushima , although they are working hard , there is still no electricity . both residents and Japanese nationals . The rocks would be slippery and waves would be high , so we decided to cancel it . My English grades are still very bad . I 'm Japanese and university student in Kyoto which is the most historical city in Japan . I 'm majoring in cultural anthoropology . Simply put , it 's comparing a culture with other cultures in a historical context . For example , if I study about a festive , I have to inspect the place , the history , and refer to certian books . Hm , it 's difficult to explain exactly . Anybody could possibly be `` otaku `` . This theme is very challenging for me because the investigation of the matter is still under way . When I was a junior high school student , The Beatles ' best album `` One `` went on sale / was released . It broadcasted The Beatles ' promotion videos , `` Yesterday `` , `` Let it be `` and so on . To be honest , it was not great of a festival , but if it had n't been rainy , I would have enjoyed very much . I uploaded a new picture as my avatar . her class 's new teacher came . She said that she was planning to visit eight students . She stayed at my home for only fifteen minutes . The result was that there were two wins and two losses , so it was draw . Their performance , music , jokes and colorful atmosphere were wonderful ! : ) ' You 'll get fat ! ' , they said and laughed at me . If I had to pickjust one , I would choose honoras the most important characteristicI want in a friend . Do you agree or disagree with the following statement ? As a result , I can learn English Language from native speakers with the use of a new internet service technology . Yesterday an accident happened in my train . In summer time , sex crimes on trains happen sometimes . But if his company knew about it , He would be fired . I am going to an outlet shop in Gotenba , Sizuoka prefecture , today . I lived there until graduating from high school , after I left Hokkaido afterward . I felt very thankful to my professor . So , I studied Chinese . Chinese is very difficult . going fishing , taking a bath at the onsen , and swimming at the sea . I will challenge this new job ! ! Today I ate `` Abekawa mochi `` with my American friend at a garden of Shinto shrine . We are saved by your warm heart . Please call me okinawa . I have graduated from Shenyang Airspace University in july , I majored in Japanese . Can someone to search this book 's English version ? So my studying has been very very poor . spicy foods & cat 's tongue `` I watched TV and learned that it 's because the tongue 's movement People who have cat 's tongue can not avoid the part of the tongue which can sense the heat the best when we eat something hot . They end up touch something hot by that part of the tongue which senses the heat the best . The problem is the way the tongue moves . `` My favorite recipe I have some favorite recipes . Of them , my most favorite recipe is acooked dish with beef and vegetables . The trick of tasty food is entering spices which are Soy - sauce , Japanese - Sake and a Japanese spice called `` Mirin `` . I have been going to driving shool since February . It is Valentine 's Day ! because it 's my mother in laws birthday . I hope my wishes are granted . I like to watch TV . I like watching `` Spongebob Squarepants `` but I do n't like Spongebob , I like Patrick . He 's so cute . Rainy day . I 'm very happy because I wanted to learn English in more proper way . It was raining heavily today . many things about my life on rainy days . That factory makes toilet paper from using recycled paper . I think that much water is needed to make the paper and recycling is very important for a sustainable society . Of course they asked us questions like what is life , what is die and what is a family . Because the temperature of 37 . 2 degree C in Taipei , was too hot to me . In Nepal , many people consider it bad luck . I learn linguistics at a university . The languages I learn are English , Chinese and Korean . It 's hard to pronounce . . . There are many girls in my course , but please do n't get jealous of me . About Architecture I answered : There are some issues remain to be solved . It was with whipped [ ? ] cream and chocolate sauce . ( I watched `` My Cousin Vinny `` last night . Burger King but a few years ago there was no store in Japan , I understand about a half of this radio program , It 's very good program for beginners in English . This first restaurant is a traditional Korean restaurant that serves a style of Royal court food ( that is ) inherited from 500 years a ago , with the main ingredients being fresh seafood and seasonal food . Since 1988 , this Chinese restaurant has run for 20 years because of it 's clean sanitation , fresh ingredients , and , by extension , delicious dishes . Moa is the best restaurant for your health and extending your life with our refined and various Jeonbok dishes that are good for your body . I went to Okinawa on my spring holiday with my friends . I went to duty - free - shop , did scuba diving , ate `` So - ki soba `` etc . . . . . We also went to `` Nago pineapple park `` . There are many pineapple foods . I especially liked pineapple pie . During the trip , it was rainy or cloudy . yet I can not speak English very well . anyway . . . Dear Japanese , you guys do n't have the right to criticize the riots in London . I can imagine that some of them think , `` See ? Japan is a safe country . Fierce riots only happen in foreign countries I am proud of Japan . `` Therefore , Japanese people do n't have the right to criticize the riots in London . His name is Igor Vladimirovich , and he professionally plays volleyball . I think that the pronunciation is pretty and fun . Today , I began studying hard because I want to get a better score before I take a TOEIC test . If you have some advice for studying English , please teach me how to study ! ! I did n't know there was such a famous festival until which means it was really fun hanging around ! ! in winter of 2009 , The movie ' AVATAR ' was released in japan . Actually I did n't try my best to find a new job . Because I spend my time thinking what my favourite job is . These days I am thinking of becoming an actress to earn some money and also to kill time . I will write about my business ( I am salesman ) and my hobbies ( reading Japanese manga , playing poker - Texas Hold 'em - , playing video games , and cooking ) on this diary . We had pretty hot weather last week but the temperature dropped down about 10 degrees since last Sunday and now rain start and stop and start and stop . because I work at a very famous hotel . The other students said `` Teacher , he does n't want to learn , our main teacher said that you can let him out `` , but I said `` If I do that , he will be poor in his studies because he will miss the course and ca n't catch up with us ! `` Today ( 15 / 12 / 2009 ) at Macquarie in Sydney , I 'm studying in the computer room , it 's so good that I 'm not late . So last night I went to bed before midnight but I do n't like waking up early in the morning . I hope that he is happy with his music and also with his daughter and wife . Me llamo Tammy , enantado . Such a thing has happened a few times this summer . I want to become a fluent English speaker . Study animation abroad . He is studying Japanese animation at school . I do n't know what kind of animation he was studying ? But we had a nice conversation together . He looked funny and friendly . Nice to meet you ! Nice to meet you , Lang - 8 members ! I 'm waiting for your comment ! Today is a holiday called GW _ ( Golden Week ) in Japan . Therefore I 've been searching a package tour to Hawaii . Companies care for their employees ' health . Today is my students ' entrance exam . a large part of students and their parents choose the public ones . When we had tried to go there last autumn , an autumn outing ( holiday ) season . in the mountain . l 'm amazing because I knew this site . I put my daughter in a summer workshop that 's called `` The Stage Coach `` which is a school teaching children how to act , sing , and dance . My husband went to the work this morning , but he came back to Wimbledon from his office in the city to watch her first performance . Anyways , the theme of the show was `` The Wizard of Oz `` and our daughter was one of the villagers in the Munchkin Land . Of course everyone wants to be Dorothy or a princess ! The 22GH incorporates - HDMI , DVI and DSub interfaces . The reason why I have selected this monitor is that it will produce a quality picture due to it 's 97 % ColorShpere . Driving in American is easy , although the city roads are very wide . As there are several blind points ( or spots ) , you ca n't see in your side mirror and rear - view mirror . I am so glad to find a place to learn more and improve . I think it 's very delicious ! ! History , Masked Rider I am unskilled at drawing , but I like to draw . I have a question . The first picture is the river where I went to the temple to pray the monk to ask a blessing . . we saw a lof of people there and I used the Chinish language a bit with the native people . I would like to show you some video but youtube do n't want me to make video ^ ^ . . . thank you for looking my picture and coming to my page . The end of Nov is the time for gloomy , windy and depressing weather here in Russia ( I guess there are lucky people enjoying something completely different ) I would like to grasp this opportunity and share some photos I have taken in Italy . couple of hours getting there : first by car , then by ferry . The avarage temp is around + 20C , the sea ( ocean ) is still available for swimming , the food is excellent and people are very friendly . 1289 one thousand two hundred eighty - nine 45989 forty - five thousand nine hundred eighty - nine 667890 six hundred sixty - seven thousand eight hundred ninety 5098433 five million ninety - eight thousand four hundred thirty - three I thought `` I won `` was correct , because it was for a past event , Answers on his cellphone during the exams . I 'm very confused . ( This is confusing ) because I felt he was difficult for any one to get close to . He half - opened his eyes and his eyelids were very sharp ! I thought that Sendai had a l poor economy this time . There is a nuclear power station . So I have to do research about malta . I 'd like to speak English fluently . I 'd also like to know how to study Japanese . There are lots of English conversation school in Japan , but few Japanese conversation school in America or other country right ? Which is better Iphone or android ( google ) phone . Recently he comes home very late because of his job . She said `` no `` to marriying with her boyfriend recently because of something that changed her mind . But in the afternoon , weather became so hot ! She has four big titles : a judo wrestler , the wife of a famous baseball player , a politician and a mother of two children . One of my classmates has been a beautiful policewoman ^ ^ ; wow , I feel a little pitiful LOL . What a hard work in Toky it was , with my hands ! ! Recentlly , I have started a part time job . I went to the Pride parade . Especially when I watch the same TV show as before , She said to me `` I put too much Cranberry sauce in it . As a Documentation engineer and English translator , I 'm now doing Photoshop - related things now . However ; I really feel sad that I can not even be brave enough to start up a conversation with a native English speaker . I think I 'm like a worker bee . I also dislike my life because it 's boring for me . ( Especially my best friend in London who is busy with her job , study and boyfriend ! ) The picture you see here is one serving for the King of the Chosun dynasty . But imagine all the ingredients that were prepared like that . But you can taste similar food for a much more reasonable price , with the preparation process reduced . I 'm happy . I am more intrested in taking a belly dancind class than the other exercise classes . I am going to visit you as soon as possible ( You 're my best penfriend ; D She defeated her opponents many times . I 'm gon na beat the competition . Because I had to prepare for the International Japanese test 1st grade , My teacher told us , `` You guys should memorize the presentation scripts . `` Moreover a classmate always complains about my pronunciation . Yesterday I met my high school friend who just came back from Japan ! ! she also brought her friend who is a Japanese called `` Mimi `` . . Korea soccer team beat Japan yesterday . So I anticipate more success this world cup . Each design decision made to create this site appears strange to me . This is the first time I use this style tool just to learn time Before I used to think that fall is the worst season , because it is always rainy , there is dirt under the feet , and sky suddenly turns into bright and blue . I have registered for this website for a period and I added some new friends here . This is a language exchange website , right ? At about half past eight , we had enjoyed so many sightseeings such as pure water streams , green trees , colorful flowers , etc . And we had also taken many interesting photos together . For example , a cellphone , digital camera , and car . . . ! ! ! It 's becoming colder these days , I ruined everynight last month , hmm , I forgot why I quit , maybe cause of laziness , or I do n't know . ^ _ ^ . Back to the work topic , there are some difficulties . First , the junior of my team does n't work hardly , and is less patient . They 've just graduated and have a lack of work experience . The point that I want to say is also a problem of China , is that the Chinese young people lack a sense of responsibility , are selfish , lazy and empty - headed , I think all the derogatory sense words can be used on them . My English is so poor that I choose to major in mechanical system design in Hongik university . I have to speak English to sign up for the class that I want . It 's a perfect fit that focuses more on me . My friend and I finished military service last May . K ! ! ( republic of korea ) `` . We enjoyed the performance . Although KORN is weaker now than in their golden day , I was moved by them . I hope I will enjoy snowboarding this season ! I do n't have grey hair , but some day I want to color them into brown , because I have never colored my hair . I watched `` The World Athletics Championships in Berlin `` on TV last night . Someone may think that I 'm stupid . Every athlete was very beautiful no matter where they were from . I just want to know how to describe different races . Have you ever seen an Olympic Gold swimming medalists who was fro trivial techniques and have patience . How about figure skaters ? Especially women . Asian women rank the top positions now . It 's still rare to see African figure skaters now . Some sports require training It means that where your country 's location is connected to popular sports and the number of players . Black people can play better when much muscle figure skating and synchronized swimming . ( I said the same thing too ) Did you really welcome Afro - American female champions ? Finally I could conclude with a nice comment . ! ! I 'm regretting to write such a long story ! Now I 'm trying to make warmer my relationship with grammar . ) ) And we will go to eat pork cutlet `` tonkatsu . `` This weekend typhoons approach . It 's too difficult for me , and I have little time to study ! The final SAT is on December ! Vocabulary is difficult , grammar is difficult , and I still do n't know much about American culture . What should I do ? It scares me that I ca n't see my future ! I am new here . Please do n't ignore me because it will make me sad . ( This may sound better ) It comes as no surprise that I still have lots of homework and exams this week . I have three lectures at my university . I am not afraid of earthquake , but I got stranded for about an hour Touhoku traffic got worse and there was lack of gasoline and broken highway and train . Today , I went to a industrial festival . Optical fibre TV I 'm studying English vocab . I think language begins with vocab . Because the perspiration ran down my face and back . Finally , the dean of the department of dentistry decided to resign . When the French teacher asked us some questions in French , we had a tough time trying to answer because we had forgotten so many things . That is why I have just sent him an e - mail explaining the current situation at the university . ELLEGRDEN is known as a rock ( punk ) band , and most of their songs are up - tempo . When I was first selecting a jazz piece , I could n't pass this piece : `` Waltz for Debby `` by . Because as always , I have problems with my bf . Actually I 'm kind of tired of studying for a TOEFL . . . my motivation is getting lower I guess . . oh my god . . . that 's not good you know . . . I really want to know what people think from their behavior or attitude . It has been about a month since I joined my current department . Korean kimchi fried rice . I received Korean kimchi from a Korean colleague as a souvenir . Korean kimchi has a rich flavor . I would like to take free trial lesson of another course this Friday . Life : I want to sign as volunteer for COP10 ! Currently , I 'm studying English hard . I ca n't speak and write English very well , but I would like to communicate with people from other countries . I am happy to meet my roommates , because there was no one excet me yesterday . Local people , who live in the province of B . came here with their families . I feel strongly about the cooperation of their families and the passion of their parents for them . So he comes home on Fridays and returns to Gage on Saturdays . By the way Most Japanese people have learned English for more than six years . We think so too . But Unfortunately , Japanese people do n't have many opportunities to use English everyday . If people start noticing that learning English is for communication with all over the world , population of people who can use English will increase , I think . In particular , in Japan , we are well on the way to an aging society more and more . The Japan national soccer team won the game against Australia and have now advanced to hopefully become the Asia Cup champions . The most impressive part of this game was that Zacch , who was the manager in this team , had a good command of things as well as changing players . The Japan team could use a good leader ! I 'm looking forward to seeing the next game ! Today is the Japanese holiday `` Children 's day `` . When I worked at the consulting firm , I respected my co - workers , especially my boss . There are so many punkish guys , foreigners also . Especially , the band that I was there to see , LOST PROPHETS ! He usually sleeps . I enrolled in an online English school a couple days ago . Can you believe that the price of one lesson fee is 1 $ to 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expensive . ere is one of my favorite proverbs that I learned from my English teacher . What 's your favorite idiom or proverb ? Please teach me some , if you know any . Once I studied English grammar books or something else , but I realized that I like reading books more than grammar books . The schedule application is really great , and I do n't need to carry big and heavy schedule notebooks . If you have some applications to recommend , please tell me ! ! Accordingly , my company put up some mottos . A colleague wore a green skirt , and another wore a green ring and necklace . Anyway , I enjoy picking out clothes . Have you ever succeeded in losing weight ? ? We ate strawberries and beans that she grew for dinner tonight . My English skill was build up through Lang - 8 . An Amazing Wesite for Language Learners Right now I 've come to be able to understand recorded voice in English , but it is still hard for me to understand what they are singing in English . My hobby is playing the flute in wind orchestra . Why do I feel very fashionable ? ? I guess I feel like that because of the well organised blainwashing from Japanese shopping malls . I as a Japanese put more worth in New Year 's Day I guess . l know even if l ca n't speak English , l can travel and see the beautiful landscape ; but l want to communicate with native speakers and l want to make friends . l have traveled some of Europe and Asia . When l came back to traveling , l felt that l owe thanks to my family , friends , my job , and much more . Recently l felt that l should spend my life challenging things . Sometimes , l thought that l was too old to challenge new things , but l changed my mind . Even though when l challenge anything , l spend more time than any other people . hi guys . . I 'm laura from italy . . . I need some help for improving my english and my japanese too . . . I 'm new at this website . . so if some kind person wants to help me . . I will be very glad . . I would like to help you with italian . . : ) thanks and bye : ) The suite brings welcome upgrades [ ? ] and is composed of three traditional applications ( Word , Excel and PowerPoint ) , plus Outlook , which replaces the e - mail client Entourage that had been integrated into the suite since 2001 . I belong to an English club in my university , and I have an activity every weekend in my club . I will go there to guide travelers from abroad . I will talk to them in English . Well , seeing the `` dolls `` in this drama , I remembered the people who were incubated and their energy ripped off by computers from the movie , The Matrix . The bodies are merely containers , and the data in the brain is what is human . because I did n't have any special feelings about X - mas . I will never stay alone anymore . First of all , we spend too much time and are overly enthusiastic about grammar . . only grammar . Also english teachers use difficult words to explain the english grammer . Many korean students are get good grades on grammar tests , but they ca n't actually speak to people from other countries . My favourite sports are swimming and running . Also , I like English very much . My home is close to a river , so when I was 8 years old , I learnt to swim . I believe that failure is the mother of success . You talk to me please . It is important for me to pass my English test so , please everyone help me with my English . She said that it was the beginning of the year , so she thought she could get through the whole year well if she did it . When she was bungee jumping , she felt like committing suicide . As I listened to her , I suddenly wondered about the feeling of commiting suicide . No one can commit suicide twice . We got a shopping cart before we entered the store and I was pushing it . There were some people who were also pushing their carts , but the person in front of me stopped suddenly when she heard the voice . But after a while , one of the clerks was very kind to take me to the product I was looking for , and a customer who had a big package of potato chips answered me with a big smile when I asked him where the potato chips were . I went there and ate pork vegetable miso soup . Finally , if you want to learn Chinese , I think I can help you . I learned a new word at today 's lesson in Starbucks . The word is scapegoat . I realized that I ate dinner for 2 days . Using this dictionary will be a lot of fun , as if I am traveling in a foreign country . When we left the market , we bought some cherries and two cakes , because cherries were really delicious and cheaper , cake was for my best friend , beacuse they left Christchurch today . After farewell , we went to the Sumner , actually this is my second time I have been there , but last time my homestay father took me around Christchurch and past Sumner , so I do n't remember everything . I want to learn Chinese and English in this university and speak them fluently . I 'll tell you one of the most scariest story I 've ever heard . I do n't have confidence whether I can tell you guys scarily , but I 'll try . That man was wearing coat over his shoulders , and seemed hiding his face from around , he walked while leaning on a wall , he came toward to elevator while holding his hands over his stomach And Chiang Mai is a prime example of this strategic model . I hope that is the case because I want to hang the picture in my room with me in it . I 'm gon na write a short diary or what ever I happen to be thinking about twice or more a week in order to be diligent : p ( as long as possible ) Let 's study languages together ! ! ! More and more I am interacting with many foreign people , so I joined Lang - 8 . I have Facebook , my account is takaxile , so please request me on the web . My first Period is years lesson . Topic was about past tense , and student changed ' tanoshii ' to ' tanoshikatta ' or something . Today all the students do n't attend class , so we played a kanji game . At first students divided into two teams , and put some Hiragana cards on the floor at regular intervals . My fifth period was year11 . They were writing essays about the difference between Australian table manner and Japanese ones . My Last period was year 9 . Super collaboration I happened to find this song on Youtube . This collaboration is quite good . Recently many singers release a song featuring rapper singers . Well , the story is about aliens that ( who ) come to conquer our planet ( the earth ! ) , but their plans always fail . They are so funny . I always laugh when I watch the episodes on the computer . There are five main characters in the series . Keroro is very childish and selfish and always tries to make people laugh , but he is a very bad comedian . Then we have Giroro ; he 's always thinking about the invasion because he 's a military man . The third character is Tamama - he 's a tadpole * , so his sex is not defined . He is bipolar and he likes sweets . The fourth member of the platoon is Kururu . He is a mad scientist , and he likes bothering people . He 's a pervert . Finally we have Dororo , an econinja . He came to conquer the planet , but when he saw the beauty of it , he decided to save it . He is always forgotten by the platoon . Poor Dororo ahahah ! ( haha ) I should have gone back to home at midnight , but the airplane was delayed . Similarly , natural expressions are natural only because the most native speakers feel so . Learning languages , either foreign or mother , is to acquire not only words and grammars but also different manners to perceive and represent the world . How about your country ? ? I dry the washing in the sun , then I air out the futons . Therefore , I dry the washing and futon everyday . It is has been more expensive recently because it is imported merchandise which is affected by an exchange rate . It is a hard situation for me to buy an ipodT _ T And I want to but a cell phone . But it is too expensive to buy . and I also watched Eastwick s01 ep01 ~ 04 , it 's a funny and weird TV show And whenever having ( instant noodle soup / it ) , I crack an egg into it . To be honest , I always check the spelling out with a translator : D so it 'll be cool and comfortable while I sleep . This was calendars , stamps , coins , but none of this became a serious hobby . Now I have only a few calendars and a few stamps from all of that . Nowadays I collect other things , like pens with beautiful pictures . Of course I do n't consider this very serious either , but if I see a nice pen , I will buy it . My friend led me to this hobby , because she usually gave me beautiful pens . I chose the class with the smallest number of people to understand English better . And I took the class American literature and so on . I felt something was missing at today 's lunch time . There are novels which include mystery , fantasy , historical , adolescence , heartwarming and love , business which are made of philosophy ( ? ) , ways of thinking , finance , how to express yourself , and so on . But the Jelly beans are my favorite Jelly ! ! San Francisco ! I went to San Francisco from Aug 19th to the 22nd with my girlfriend . I already got home , and I still ca n't believe San Francisco is in California . As you know , San Francisco is famous as crabs , shrimps and lobsters . I strongly recommend you go there , if you go to San Francisco . These reasons are extremely general . What makes you study Japanese ? It tasted really good , adding condiment paste made from yuzu zest and chilli peppers . The guitar is a beautiful instrument , but much more easier than the piano or violin . I ` m like leaning Tourism English because the city I ` m living in has many foreign tourists , I want to talk with them but my English is very bad . Maybe I can say this in a more beautiful way ? As a volunteer , I went to Fukushima ( near the troubled electric nuclear plant ) I am currently eating Sumtum and writing my journal entry . Sumtum is delicious . So I can correct Japanese grammar . When offered large plates of food most people would eat all of them regardless of whether they are hungry or not . I like Harry Potter very much . I also admire Luna Lovegood . well , I can only tell u that I 'm in bed and my right hand is very busy . . . . . I did n't like animeToT My favourite game is `` Diablo II : Lord of Dectruction `` ! So we celebrated it yesterday . Recently , I went to the eye doctors and had undergone some check up . We are afraid of and struggling against the tremendous earthquake and tsunami . So I wanted the challenge of a different job that time . She offered me the job in a foreign - affiliated company in Akasaka . I 've just renewed it the day before the phone call . From what they said , it sounded like they were enjoying their universities . I do n't usually use a cassette player . Last month , I spent three weeks in the capital of the UK - London . But now only the names of the streets indicate this . They are named after famous lakes , rivers , harbours , etc . I lived on the street which was named `` Lagado Mews `` . This month , has run & nbsp ; 10 kilometers . yesterday I wrote an article about searching for a job Luckily , lang - 8 is good to learn English because some people can teach me how to use correct grammar and I can make a friend . I study animation at university . But I like design now . For example , sandwich , spaghetti , Chinese food , and so on . But I ca n't speak Italian or English . . . . Quite a few people believe that the lucky numbers can bring good luck for them . But it does n't mean that lucky numbers can really bring good luck . Second , the lucky numbers are just a visual for hope . My teacher , who teaches the students techniques for it , said that business vocabulary is most important . I think the weather here is really cold . It 's about + 18C , but I heard that the winter in Canada is about - 30C . Here is the firework show of the new year in Taipei 101 . A lot of people say that it is not as amazing as they expect , and think it is the worst firework show they have ever seen . I was very tied , but I thought it was worthwhile . My final examination is coming ! Now I 'm in Beijing , China for a trip . Today I wanna talk about my trip in Beijing . That 's why I 'm in Beijing now . Actually , it 's been 2 days since I arrived at Beijing . I have n't eaten any Chinese food , like Beijing Duck , I 've only eaten some rice porridge and some pickle . . . It 's a fantasy story . In this hospital , nurses have to complete some reports to make it to the next level . This year is my second year here , I have to translate an English paper into Chinese , making it a short summary for all my coworkers ( about 16 people . ) In the end , the nurse manager of our ward will decide if I am qualified to go to the N1 level . I was taken to one of Canada day events at a park by my hostfamily the day before yesterday . After that they can get a toy depending on the number of stamps . dismiss about fifteen thousand employees . Should I work harder ? When will the depression end ? The Chinese traditional holiday , Spring Festival , is coming soon . It is my favorite holiday . I think it is also most Chinese people 's favorite holiday . So I just wonder if Americans or other English - speaking natives have a good knowledge of English grammar . I read a book or listen to music and so on . It is first time my daughter is to join a piano recital . When golden week starts on a Saturday , we can receive 5 consecutive holidays . I 'm jealous because I have to work during this great consecutive holiday . I 'm so tired , because today 's tests were very difficult for me . I 'm so happy because there are some people who correct my English . I 'm going to go to the restaurant to eat dinner with my family . Off course , I can move today . And a friend said `` you 're such a boring girl . `` Korean women have to behave carefully as long as possible . Hello ladies and gentlemen , and all of my friends around the world Where do you think God is ? Of course it 's never at ' temples ' , ' shrines ' , churches and mosques . I became refreshed and willing to do things actively after singing . I read books and newspapers , or study English . we could sort out the problems of the Iranian election . The problems are very diffcult because we ca n't understand others and ca n't think about other opnions . The idea of people all over the world using my program ! It excites me . In our company , there are wide - open opportunities for professional growth . We are a company that enjoys an enviable record for stability in the dynamic atmosphere of aerospace technology . hello world ! ! Now that I 've seen it again , I still think that Jeffrey was one of the most interesting people who ever lived in this world . S - ok just to make it clear I 'm not a fan of him or something ; the fact I 'm finding him interesting ( and this is not from now , but from years ago when I heard about him for the first time ) does n't mean I think that what he did was anywhere near okay or that he is something he is not . So hope you find it at least as interesting as I do . Kitano is famous for Ijinkan which is where many foreign people used to own residences during the Meiji era . I can pass it ^ ^ later I went to pub where is so fashionable and a little bit expensive - - I had ( pasta / a dish of pasta ) , cheese , salad , noodles ^ ^ then we went to an internet cafe where you can play table tennis , darts , and karaoke . We just sang 2 hours , and played table tennis . It was a warm day , so we felt comfortable having lunch outside . They are women who work in the commons , in the clerk , in the university convenience store and in the library . The best food I liked was `` Khao man gai `` - steamed rice with chicken and raw cucumber . I thought of the opposite views that once you had done the preparation well , you need not to worry any more . The IELTS class is more serious than the general English class so during the class everyone focuses on studying . Especially my Spanish friend , he is so funny ! ! I thought it would n't happen to me but my spanish friend . . . ! I was surprised to hear that de facto marriages are common in France . There are various types of cakes there . In the latest journal , I said my father 's private insurance expired . He still can have an insurance from the government , which will cover the cost to some extent . Roy became nervous and thought that it was too late . He thought that Harold was responsible for this . Unfortunately , the weather was bad . . . Yesterday I went to play tennis , but I could n't play because it started rain , then my friend Marsha and I went to a cafe and waited for the rain to stop . I find you and I spend time navigating between the mystery and your taste . I can hardly find out the meaning from each word of it . `` Stop hiding ! `` , I told myself . However , starting now , I 've told myself that I must stop hiding . Just now , I realized that I was hiding in my imagination ( ? ) But I must stop hiding now ! It 's because I entered an online English conversation class named `` rarejob `` After I regained my self - confidence , I took part in a game against another university team . As for me , I 'm on Summer holiday starting today ( for 4days ) . I intend to attend here every day . Thanks ! ! When I j just started going to a university , I found my life comfortable . I saw life with simple eyes . I never thought everyone would be so kind to me and ready to help me anytime I had trouble , but this was not right . Only when you live far away your family , will you truly understand the feeling of being alone . I know I will never be alone because my family will always love and support me . They helped me get through my failures so that I would be successful in the future . Now I always make an effort to live well . I hope my folks will always be happy and I want them to know that I love them very much . However , it 's difficult to speak in English when I stay in Korea . I hope to improve my English skills thanks to this site and your help , ( which is very precious to me ) . I study things that are connected to English in my university . I 'll go to Osaka by Shinkansen bullet train to attend a meeting with other companies . I lived in Osaka until 2007 for nearly 6 years , so Osaka is like a second hometown . I have n't been to this site for a long time . So I got an agreement with my friend that we will study hard without thinking about anything else . A person who I met on Lang8 contacted me on Skype when I had just woken up . But , my friend said to me `` hourly wages of 800 yen is very low ! `` I was emotional , and I quit my part - time employment . At first , I was worried . Besides , he seems to change the bike into a good design as well . I wonder if he could transform it completely While the Jews were out of Israel , Arabs called Palestinians moved there . The Palestinians , of course , opposed this and attacked the new residents , and thus the strife began . I will study hard so that I can go to the university that I want to go . In school there is an English native teacher whose name is Sony . But recently I learned that 2010 will be the year of the Metal Tiger . Funny that Russian sites say it will be the year of the yellow metal Tiger and English sites write it will be the white Metal Tiger . Before the season started , I was looking forward to it . Actually , I 'm bad at using electronic things like that , but I can handle it so far ^ ^ There is no instruction bookwith it . Though it was a hard time , one thing I ca n't forget is that children were so cute and adorable . The minimum temperature here this winter was negative 33 degrees Celsius . Today , I bought The Little Prince . So scary You must know it 's length is 5000 kilometres . Most of it is unexplored . Young Pioneer means morals for the children . We were proud of it when we were young . We had to fight the tired body , fight with the strong sun , fight with the lack of water , fight with the dangers of the mountain . Diese Woche hatte ich viel ( Unterricht in Deutsch . ) besser : Deutschunterricht Whether we like it or not , inequality is a fundamental concept in a free economy . To make the point clear , we thought about its opposite . In perfectly equal world , what would happen ? We can not possess anything , be free to choose our clothes , or even what to eat . The only thing we can do is to adapt ourselves to it to live a good quality of life . However , every girl likes fancy smell such as CHANEL NO . 5 . I prefer flowerscent perfume such as sunflower or rose . I wound my bath towl around my waist , when I was changing my clothes to go to the pool . Does this actress think she can laugh all the way to the bank by riding on a millionaire 's cocktail ( coattail ) ? I go to the university in Nagoya . I also study Chinese in my university I watched `` Lie to me `` on DVD . They will bloom at 8th , the weather news said . I think that it is difficult to grant a dream . In my opinion , nothing is not perfect . Because we can get delicious food such as matsutake ( a kind of expensive mushroom ) , kaki ( a kind of fruit ) , kuri ( chestnut ) , nashi ( Japanese pear ) , sanma ( pike fish ) and so on , ( Is it strange for foreigners ? ) It 's my favorite : - D This year , I will dress neatly X - ( I need to take the TOEFl test in February to apply for graduate school , and I 'm looking for someone who can check my writing . `` I need to read through academic readings so fast ! ! `` As a result , even though I sped up , there were about three questions left . The second part was listening , which was also tough because some lectures were not subjects that I was familiar with , such as history . Although a guide might ask us how the museum was and we might be forced to say , that it was wonderful even we actually did n't understand its value . There is even a small museum in my home town . They are exhibiting some bowls and paints that look like graffiti . ( two sentences ) because I do n't have money and there is no food shop near the / my office . Because of the car which was ahead of my car was moving very slowly , I passed it at high speed . I was caught and lost 3 point ( if you do n't have penalties , you can keep 3 full points ) . After I was caught by the police , I made my way back to the ( driving ) school , but I was not happy . But , the relationships between the main characters are so complicated . Peter 's family is brilliantly hilarious , especially Stewie . At first , I went to Kumamoto and I ate Kumamoto ramen . It was so delicious that I ordered seconds . The different colored tree leaves are very beautiful at the back of the pond in autumn . So I 'm learning English . Its pronunciation is very difficult , but I undertand that there are days when I will want to learn more and more . I called my colleague in to show some sentences . I 'm leaning Italian and English . I came in italia to study arts , but I need English . Becouse in school , everyone speak in English . I ca n't speak English at all . Can you imagine who performs without an actual instrument ? Air Guitarists had to perform a 60 - second song of their own choice and pretend to play rock or heavy metal . Is the day that I can understand English news programs without subtitles truly coming ? This is an article I heard from my friend Tyler ~ haha hope he does n't mind , I just tried to listen to it very carefully and transcribe it . Music is my favorite thing . I 'm glad to hear his voice . He has two children and bought a new house . Then , he said , `` Mandy , in the future , you should study abroad and know the world . `` I saw some figures like Madonna , Sharon Stone , and Brad pitt and so on . Today , _ some of my classmates said that they think every country should close every nuclear power station , _ but I do not think so . Although I am in New Zealand where there are no nuclear power stations , I think nuclear power stations help people a lot , for example , nuclear power stations provide people with electricity , and I think that is good . On the other hand , _ when nuclear power stations fall down , that will make a big problem for the world . Independence Day in Mexico was yesterday , September 16th , and as usual we celebrated this date with the independence shout , eating `` pozole `` , a Mexican food , prepared with corn and chicken , drinking tequila and listening to `` mariachis `` . At least , this is the most traditional way to celebrate this day . Even though this region is one of the oldest places because it is the origin of civilization ( when Mesoamerica joined with Mesopotamia ) , Mexico is a relatively new country , with just two centuries since having been founded as a nation . Second - hand smoking is really disgusting for non smokers . But what are other habits or lifestyles that are responsible for health costs ? I had 4 days off last week and I went to Vancouver with one of my friends . We stayed in the Youth Hostel and visited UBC ( University of British Columbia ) , Nitobe Memorial Japanese Garden , Tower Beach , Kitsilano , Gastown and Lookout . I did n't go to Stanley Park and visit my acquaintance who I met 20 years ago in Vancouver . It has a dignified elegance supported by its perfect shape and white walls . Those professional players had an impact on me ! The logo is of a very strange type and particular color compared to usual . It has various contents named podcast , such as news , comedies and documentaries . I 've studied English ever since I was a junior high school student , but I ca n't write , speak , or listen to English well . In the balcony , people can not only sit on the floor but can also lie down . I heard that listening to the classical music while lying down is too good for words . It 's raining today . I am not very busy at work today , so I have a short bit of time to go to Starbucks for a break , and I found this branch has many foreigners , especially many foreigners who need one - to - one Chinese conversation to learn Chinese converstion . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closet . I think most of the people in Japan will say `` I 'm sorry `` when you are asked to do something . Japanese people and Chinese people do n't have the hugging manner . She is my family and important to me . But , everybody ! Do you remember one of my post / journal ? It 's okay . I 've been learning English for 10 years in school , but my language skills are still at a low level . I want to practice English to use it well . The hardest for me is the grammar , My wife cooked lunch . I know that the vocabulary and the letters are obviously different ! But I want to think about not the visible surface of the languages , but the concepts or something like that . She sent an e - mail to me on Monday morning when she arrived at her flat to get her notebook PC before going to university . I will try to change my attitude ! ( It 's the first time I went to that restaurant ) They are all coming tomorrow . I am sure he will be nervous there for a while . to fashion , certain styles look better on some girls than they do on others . I like nearly all color clothing except red , but I do n't know why . I prefer the flashy things . So I like many kinds of jewelry . My favorite pieces of jewelry are earrings . so I want to go abroad . Someone tell me about a good place in a foreign country I could n't sleep well last night because I have a cough and He was named a member as a goal - keeper . He has many experiences . We alighted from the train ( monorail ? ) at the last stop and walked from beach side to first station while talking about a lot of things . Unfortunately , I was laid off at the end of 2008 . The staff began to explain it to me , and then somehow I turned my head toward my left side . Today , I ate takoyaki ( octopus dumpling ) . My son plays in the Tamagawa river , small forest and the park . Well I will try to write with capital letters in the beginning of a sentences , because I always forget about them , and the teachers always tell me they do n't understand why I do that . . . Today I cleaned up a little my desk , but it 's all messy again , because I started to make a drawing for my grandmother before she returns to her country . . . We set up our tent on the coast of a small bay , near a great cliff named Scriper . It was a very out - of - way place . ( is it correct ? It is a place that is very difficult to reach ) . Majestic Baikal was amazing . The water surface was like a mirror , and astounding silence was broken by gulls ' cry , trees ' rustling and rote . But we were really mistaken ! Dropping a tourist group including ten people , and they camped at a distance of fifty meters from our tent . They did not look like inadequate , noisy or problem , but I suspected that something was wrong when saw among them things several boxes with beer and vodka . We broke our camp , folded up the tent , packed all things into rucksacks and in spite of the sunset , went away to search new places . It was quite dificult and dangerous . PS : You can see photo from summit of Scriper . It was very nice , sweet , juicy and fruity : ) Today , I got last month 's mobile phone bill . ForTo all surfers , surfing is dengearous . dangerous I decide to pay more atenntion attention to my board . Whether we can ring up sales or not depends on sales in the Tokyo branch office organized by only 20 people . Now we 're focusing on direct mail marketing , though that might be junk mail for many people . One was about Budden the other was about the brain . I need to go out later to buy a shirt for a wedding party tomorrow . Here in Hawaii , I go to a language school on weekdays and I go there by bus . It normally takes 35 minutes to get there but it sometimes takes 45 minutes . . . I want to improve my English in half a year , but this seems like a difficult task . So I thought that this site could help my English , right ? I could answer the questions but listening examination was bad . . . I could n't answer . . I wonder if you could do me a favour . But her speech was so boring that I fell asleep . It said : `` Congratulations you have passed the exam . I do n't remember about the details of our conversation , but I think he said so . I would often wonder what the difference between the two them is since then . Secondly , I will go to library to review my lessons and do some IELT tests and I want to go to foundation in April . and my budget is limited , I will have to also limit my destinations . The client is very kind and and passionate . I 'd like to return a the favor to him someday . It is dizzyingly hot . I 'm now studying English and Japanese . Does anyone want to be my friend ? I like English , writing , speaking ! ! If the wind is too strong , I ca n't go surfing . I had a very wonderful day . As I would like to be better at English , I started writing a diary in English . Now I specialize in communication studies , and study English and Chinese . It seemed my heart is still living in Shanghai , I must have lost something , something I dare not to face , or I just ca n't face myself , my weakness . I will tell everyone about a creature that makes Japanese people feel it 's summer . Its creature is called cicada . Japanese people feel summer when hearing cicada 's screaming . By the way , Some carcasses of cicada are scattered around the entryway of my apatment house . I thought this cicada was already dead , so I poked it with tip of my foot . I want to ask everyone . It is very interesting to learn English , and I think that I can learn to speak it very well ! Of course , I like to travel around Japan too . I went to Hiroshima last month , and I met an Australian friend and got drunk on good sake . In English class , the English teacher taught students the expression , `` Graveyard shift . `` I thought it was an interesting expression , because there is not an expression like that in Japanese . Firstly , there is a growing awareness that using public transportation instead of driving a car leads to the reduction of green house gases because cars produce more green house gases than trains or buses . My brother helped me work this morning . I want to learn English with the help of lang - 8 . Unfortunately , my work does not require English . The other way is to think about where it came from , and try to figure it out . It 's like unbelievable medicine , which absolutely heals my body and soul . Is it natural to feel like that or am I too shy about speaking a foreign language ? In China , students have endless exams to pass along our lives , even after ( maybe ) you have entered society . How about your countries ? my use of English in the public examination , My life became somber . These days we are unable to see each other . I always feel I 'm still not familiar with calculating the money especially when I shop at a mall here in Durban city because this country has decimal money and most likely because I have not stayed so long to calculate money smoothly and Japanese has a tendency of keeping other people from waiting so long behind a line . It is very fun , and I will have an exciting experience . I feel that making ceramics is a kind of physical labor . However , You 'll get tired of it if you imagine that you put it into the mouth , chew and then swallow it as many as 30 times repeatedly . We may be able to use it to decrease the intake of unhealthy food and drugs . They feel ashamed if they are found wetting their pants . thanks for teaching me correct English ! I , am a really short tempered person . and I try to speak in English with my friends and I restarted to communicate in English conversation class in my university . My major is Management . if I keep on studying English hard , I believe I can be a person who can speak good English Until I go there , I will do my best with presentation ! ! I took off my shoes at the porch and sat at the kind of table which can be seen at many korean restaurants . It tasted good . Although I say that I will save money , I 'm actually going to spend a part of the bonus on a handbag , a pair of shoes , accessories and so on . Many trains will be suspended tomorrow , so many people ca n't go to ( get to ) their schools or offices ; of course I ca n't either . First , great teachers have a passion for their job . I had time to go to see a movie called , ' Pirates of the Carribean 4 ' . It was n't as interesting as I 'd expected , because it was n't much different than the first two films ( movies ) . She told me that I have an interview change to her department as an executive assistant . It 's a big company , but the salary is not high . What else do we need to do ! ? The act prevents my body from getting cold . I want to return to my normal life soon . Before their concerts , they pronounce the members of the day , and fans can choose the day their own favorite musician plays . I have heard that there are some fans coming to hall not to listening music but to watch their dance . My friend gave me a book titled `` The Authoritative Calvin and Hobbes `` I was so surprised to hear that when he first attended the law class in graduate school ( He attended Univ . Also I think those foods must be attractive to people , making people want those foods . Some of my friends were in a bad mood , so we went to a lounge Today was very interesting and fun ! The shape of UK I went there to get my bicycle yesterday . When I saw my bike , I was astonished because . . . . . . . . Before I came here , I thought `` If I live in the U . for a year , I will be really good english speaker . `` But I was wrong . I am surprised how difficult it is to learn other languages . So I was really disappointed in myself and kinda bored studying English . But Lang - 8 often encourages me to study it , because I see many other people who study other languages and may have similar feelings . I really like to correct foreign people 's English . I really like the way people act , american greasy foods , stupid cartoons . . . In Japan we have to follow certain social rules like showing politeness to people who have seniorityand giving many complements . a lot and This makes it extremely hard to be close with people who I meet for the first time . . . I think I ` m going to study a little bit but not the way the teacher told us because everybody studies in different ways so I ` m going to do what I feel like doing . I started studying Russian , and I 'm trying to improve my skill . Little typo on improve . My school is very small and almost all of the students are Japanese or Korean . I really want to talk with foreigners . I have watched a few . . . stories . . . . I want to make foreign friends I was thinking of it as a normal self - advertising website that claimed to help people greatly improve their English . Of course , thanks to today 's globalization , Japanese people have been getting more and more somewhat open - minded to the outside than ever before . Listening is different , because every day you watch BBC , CNN or varieties of English programs on TV , and automatically you will listen to the same word again and again . I quickly took off the headphones from my ears and tried to listen to her . She said something but I could n't catch her words because my heartbeat was louder than her voice or ( perhaps ) because of my poor Japanese listening ability . And , I was a just foolish Ossan who did n't know that I was on the express train and needed to pay or buy not only the normal ticket from Osaka to Kyoto but the express ticket too . And that mainland China stops its boring threat to Taiwan ! ! ! ! Separated family members gather and celebrate this holiday together , enjoying delicious foods on this day . I decided to use this site because I wanted to improve my English writing skills . I feel that it will be busy in our home this summer . First of all , my English teacher recommended them to improve my English . Most Japanese people do n't know what `` premonition `` means , but we use `` shuffle `` as Japanese word . There are two types of digital cameras . I really had fun and thought `` I must study English harder `` so I will write a diary from now on . I definitely will NEVER forget this summer memory . I like that I feel the cold in winter at morning . I strongly recommend this book . ( this sounds better ) I especially loved that the process throughout which the King 's trauma was gradually healed was very carefully described . I usually feel down on sundays at midnight ( it 's already Monday . . . ) , but I am still in a good mood . Anyway today my niece ( my old sister 's daughter ) came to my house and I was asked to keep an eye on her for a couple hours Since she brought the movie Totoro from her house , which is a very popular anime film in Japan , we watched it together . For some reason I want to post a picture of the main character on my account . The most scary roller coaster is the `` White Cyclone `` without a doubt . And English is the most popular language . are there any grammatical error ? I ran 100 meters in 11 . 2 seconds . Typhoon Aere , which was the strongest typhoon this year , has passed us by . When will the next typhoon appear ? Most of you have not experienced a typhoon , right ? So we asked a staff member in the booth . The rainy season has started . Thanks to the fan , I can be comfortable . I grilled an eggplant and meat with katakuriko ( potato starch ) . I added a drop of chinese soy sauce to the eggplant . Jesus , please attract me more and more . My heart is your throne . She emphasized `` The beauty can be marked , and it 's the easiest way to get love . `` From last sunday , it has kept raining for a whole week ! Cold , bleak , and bitter are OR would be the best words to discribe the terrible weather . I find what my goal is and what I should pursue . I have to study grammar from the beginning . definitely the one I would recommend . Anyway , most of the movies on the above list are not that thought provoking You say , `` Japan is the best country `` ? It was fresh in a sense . The wall was gray , the humidity was excessive . Hahahahahahahaha ! ! part - time job . because our teacher absence . restaurant together , we drinking and eating there . So as the punishment , I drank a bottle of Japanese liquor . Guys , who can tell me how to leave a message on other people 's page in Lang - 8 . Next comes three years of middle school which is mandatory . That 's because I 'm foreign to the different school system . I was walking around the `` Wakayama jyo `` for about 20 minutes . Because of the butterfly stroke , I 'm losing interest in swimming . I was in a hurry , but I did n't understand this sentence , `` Do n't post to Twitter . `` In the end , I did n't publish it . I 've been taught English by a filipino . , Actually , making holes is boring work . But It looks like she is looking forward to her two granddaughters growing up . So , I went to see my tutor on Monday to discuss the project ( Design A Train schedule Based On Baidu API ) . Now I have chosen to continute my Computer studies to become a web designer ( not really sure . . . ) and the day after tomorrow I will meet with my agent to determine my major . What should I do to in order to be more skilful in Japan ? In fall , there is a junior college festival . Unfortunately I have a little opportunity to speak and write English . I am taking care of my cousin . and I drank lots of alcohol . but I ca n't stop drinking ( alcohol ) ! XD Next time , I 'll take care when having alcohol . Especially , Italy . I want to talk about my unusual experience of a traffic jam . I guess you wo n't often see a main road where there are many empty cars in the peek hours . But that time , all the drivers left their cars and opened their doors , since the main road would be closed for 2 to 4 hours . But today 's weather is bad . I 'm dissapointed , that 's why I did n't go shopping yesterday . in fact , nowadays I 'm studying english because my major is business administration , so I need to study english and learn how to write and speak in english . She was adorable girl so I thought , `` I want baby , it is about time to have baby . `` I want to talk with them if I have an opportunity . I felt sick before long . I want to leave for Toronto soon , but I have a lot to prepare for a new life over there . Writing Practice 1 Despite how I know they can benefit me , I do n't have enough time to study details . Besides , I must spend more time improving my poor English . Then are ' Can I go home ? ' or ' Can I try this ? ' , all unnatural expressions ? Then I rinse them with water for a couple of minutes before placing everything , including the bowl , up on the side . Next , I deal with bigger ones like round - bottomed pans and salad bowls . The temperature was less than 0 ! ! Today , I woke up early ( in the morning ) and I baked bread . Breakfast was very good , because bread was very hot ! ! I greatly appreciate everyone who helped me with correcting my writing . Because Argentina 's team is so strong team this year that most soccer fans rate them number one . The lover of the protagonist died because of failure of abortion which was not desired by her . Moreover , the friend of the protagonist felt sad due to lack of understanding by adults and finally he committed suicide . . Almost of all of them were arranged like alternative rock music . The air was freezing cold and the sky was crystal clear . But there are very few because almost all internship events have already finished their applications . I went to my grandmothers house and saw my relatives . Beef tongue is especially delicious . I noticed the information written on the board . To complete this course , I have to take some English classes for honing speaking and writing skills . However , the atmosphere is good in this class and the instructor was nice and had a sense of humor . I am looking forward to next class and talking with classmates in English . A woman is introducing extraneous matters into the debates . my hobby is taking picture , they are extremely beautiful ~ Thanks for inviting me as a friend Recently , I have been busy but I want to introduce something to you ! ! , The Japanese economy is getting worse and worse now . Usually I hate to go to there because I am tone - deaf , but my friends really want to go , so we did . I will exercise tomorrow . I will do Yoga and stretch . This is my first diary on this site . ( Maybe , this is not like a diary . ) I think these are good for improving speaking and hearing skills , I will write this diary every weekday that I can , so please correct my diary . That bothers me , because I have plans to travel with my family at the end of year . We knew each others ' new personalities , thinking and own past stories etc . . I think that if you especially enjoy your recreational times , you have to do something your job or you have to do regularly . Because if you lazy in your job , do n't you feel lack of pride ? ? My Girlfriend and I That is not allowed in our country . Actaully it 's not just raining . . but after a while our mood became natural . We were talking about each other and had a lot of things in common . IKENOBO is an old and traditional style / art / tradition of flower arranging in Japan . For example , the life of Thomas Edison , Madame Curie , Hideyo Noguchi . . . ( Nogichi is famous only in Japan ? ) . Therefore , it is hard to imagine how they look to us modern people . You may lose everything in the blink of an eye . Today I screwed up the midterms . I want to go to Italy : ) The touch of my hands , and the touch of your hands too , will never be limited . That is the reason behind my interest in exploring the limits of control , the reason why I am going to move to London at ( or after ) 18 years , that 's why I have sex in my room while my family is sleeping or have my hip bone tattooed with a colourful dragonfly . Kindly , she accepted it & made a dish which included Kimchi . Soon I asked a person on duty and I found out that this failure would continue until evening due to construction . Well , I 'm just starting to learn this language . To tell you the truth I 'd like to learn japanese , but I thought it would be better to `` start from the beginning `` . Are there ramen restaurants in your country ? Of course , we need to pay for the basic charge , but it is n't so pricey . So we Japanese have a party called a `` Bounenkai . `` I played a sport . Actually I 've been learning English since I was in first grade at elementary school . I 've been learning it for more than 10 years , but I 'm still horrible at speaking it . These days , I am watching the Toy Story movie to get English experssions such as , ' is mom losing her marbles ? ' . . . The shop keeper recommended the point card ( PONTA in Lorson ) . I am interested in several point cards , so I applied for the point cards that I wanted obtain . It is organized into Reading , Listening , Speaking , and Writing sections . I watched the concert in the church . Their music was truly matching . I watched a movie called `` In her shoes `` last night and remembered that I wanted to read poems by E . E . Cummings . My plan ( on ) this weekend . I met them when I worked in the military service . So I am extremely excited to meet my friend who came from New Zealand . After our meal , we will go to a coffee shop to talk about lots of things . Of course , I also have to meet my girlfriend this weekend , but it is not because she is going to work tomorrow morning , so we are going to weekend about this weekend 's events . Have a nice weekend , everybody . But , we shared a large lobster since we could n't waste the good opportunity . Since entering high school , I often get migraines She cleans often and cooks delicious meals , My girlfriend called me this morning before I got up just to tell me it ` s snowing outside . I think that it is more convenient for us to have a car in such a situation . I 'm writing in a diary for the first time in my life , Yes , I love books , and in particular old books . This book is about complex analysis of a field of mathematics . It is not very easy to understand , because it left several parts of the demostration to the reader , or it assumes that the reader knows things that nowadays are n't taught in school . I 'm going to study abroad in AUS from March to September . I 'm majoring in International Communication at the university and I study English and cultures in class . I 'll always challenge myself to speak English and to get accustomed to my new surroundings as soon as possible . If you have an e - mail address , I 'd be glad to receive your mail . My e - mail address is - - - - - - - . My hobby is to make sweets . However , Cantonese , which is widely used by people in Guangdong Provice , Hong Kong , Macao and nearby regions , is definitely distinct from what is generally refered to as a mother tongue spoken by one or several ethnic groups . Instead , in my view , Cantonese is a competing force against Mandarin , mainly due to its popularity and dominance in the most well - off areas in China . and that would be the reason that the central authority is becoming anxious . Cantonese people surely take pride in the special dialect they own , because Cantonese - speaking regions are a statement of wealth , development and fast growth . But in the neighborhoodthere is also the ownner 's other homestay , which is the homestay of other students . I have two fears . So many people say that . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese straight away ( that was the main purpose of my joining to learn a bit of Japanese and to polish my English ) . . . . Yesterday I bought a belt as a first experience . What 's terrible about custom house ? Today , I began keeping a diary on Lang - 8 . Please contact me , if you like . My department is the School of International Liberal Studies . Yesterday my stomach hurt very badly . I felt better and worse . It did not take Dad and Mom , only myself . My good friend was not around me , but I was told my friend was angry from the close encounter . I went to Tokyo in Simokitazawa with my friend . The appearance of someone like him has been expected for many years , so people tend to have excessive expectations of his policy , action and statements . He may be required to handle some political situations with severity . . . . Investment trusts ( the indexical funds ) are worth less day by day , Of course I hope to return to the level before subprime occurred . I was exhausted that I just I bought something on the internet . I think they 're difficult ! When I spoke to my American friend , I am speaking English but Jpanese words are always spinning in my head and they would even slip out of my mouth and cause some embarrassments . . There 's no time to have breakfast . . I know a lot of words and grammar but it is a little bit different to speak freely . sometimes I ca n't stand my voice and pronunciation . I felt so excited that I could n't control my tears . I could do nothing but say thank you , my dear friends . He has searched , looking not only for Japanese cuisines but also the spirit of Japanese dishes . In this sense , I like it . The Artist is Maurice Brazil Prendergast . I do n't know if it 's valuable * * * * * The other is a wooden escalator near Antwerp Cathedral . ( I forgot what name it was . ) Today is national foundation day in Japan . So today is a holiday . Recently , the weather is bad . I do n't have much money , so I ca n't go so far , but at least I 'll be able to visit `` Amano Hashidate `` , which is one of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I have to reply to my German Professor for correcting my paper . I attached corrected text file with this e - mail . Dog meat is a part of the traditional Korean food culture . Next time when I see an opportunity , I would like to tell them about our recommended places . I am still waiting for her answer . . . It was so comfortable ! ! I thought it was a interesting system and I _ can use it for free . She is my best friend on my university _ days . Moreover I should improve my speech again and again , lately it 's so cold ! And you must set it concretely , which means the plan must include a numerical target . The more concrete it is , the better the result will be . By the way , this morning , I received an e - mail from the Education Department in the company where I work . I 'll do my best to do well in the exam though it 's quite late to start practicing . I 'm a 21 year old Japanese girl . Today I 'll once again write sentences to help me incorportate new idioms and words into my vocabulary . hatchet > A man cut a smalltree with his ~ . Although , thoughts of a blissful family life might change a person 's perspective . Do you speak foreign languages ? Why are you going to university ? It is similar to Hungarian in many ways , but nately unfortunately differences are frequent , too . Miyazaki Gorou received bad ratings on his first work , Gedo Senki even though it was clearly good . he is an Architect in the next province . I felt angry , and I did n't communicate with him . he is by himself and I have a good family . It is neither a typical family , nor romantic movie , but it contains elements from both . The dog slowly transforms their views and opinions about the most important things , like taking responsibilities for something , planning babies , helping to find the balance between the careers , the family and themselves , etc . But most importantly , it is really funny : ) Hello friends ! ! ! On Saturday I climbed up on the Eureka Skydeck . I entered the showroom and took photos , then I climbed up on one of the Ferraris , my dream is realised ! ! On Sunday I went to Philip Island for to see the little penguins . I saw the little penguins come in from the sea at night , and I saw the penguins walking on the beach to there house . I love the natural sights in Tibet - the animals , people , mountains , lakes and temples make the perfectly harmonious photograph , that 's where I want to live in the future . This year , after BEC exam , I decided go to Tibet . It 's really a long time to wait for the perfect time point , maybe October , for around 14 days . It will be 55 hours by train . I will see the transition from city to village , and eventually to altiplano . My training always starts at 8 a . m . I live not so far from the place where I train , but nevertheless I was almost late . The first prize was a digital camera ! ! I ate food already even though I did n't feel hungry . It is important to eat food for breakfast . How are you ? ! The preoccupations of an ordinary man are to make sure he wakes up in time to arrive at school / job , to earn his living and in his free time , to watch a movie or get out to his friends . Thank you for always teaching me various things ! Ohh no , I did n't know that they do n't have any homepages apart from geocities Japan . . . I always remembered that a girl once told me : `` When I saw you at first , I thought you were a very serious teacher , but when you started teaching us , I saw / found that you are very gentle . `` For example , last month I 'd read `` Alice in the Wonderland `` by Lewis Carrol . I thought , `` These words are used in formal writing . `` We waited 90 minutes for Tower of Terror , but we enjoyed the time because we could look at many attractive objects that had the story on the way . Of course , Tower of Terror was so fantastic ! ! I loved the scenery too . Tokyo Disney Sea has American , Arabian and European streets . I especially liked the European street , I felt as if I were in Europe . I spent a lovely day ! I did n't ask further ; therefore , I did n't know exactly what in the picture needed to be modified . When I went to the hospital , a nurse said to me : `` Lets check your body temperature `` , and she found that my temperature was 37 . 8 , so she told me not to take a medical exam today . It was very interesting to learn about the future relationship between Russia and Britain . A set of unimaginable elements occurred around me , destroying many grateful memories , harmonious relationships , as well as laughter , which all attribute to a benefit that is not worth mentioning at all . I feel complicated like a kite having lost her line , like a boat in the darkness having lost his direction , like a lion having lost his temper . . . . . . They have a lot of beautiful parks , fashionable street and shops and classical buildings which made me happy ! I konwknow new friends from a cloud called the heart . She lost her husband three and half years ago . I had gone to her house to see her occasionally when I was a high school student . However , I ca n't do it easily now . I do n't mind what cuisine it is . I was wearing ugg boots and as you know , they easily get soaked so I had to walk very carefully till I got to work . After I finished opening the bar , I tried to order some food because I was starving . But sadly , the restaurant could not deliver food because of the frozen road due to the heavy snow . Ok , let 's do something . Recently , I ` m studying at the Goldsmiths university in London . I need to be slim ( especially my waist ) because I have to select clothes that can be wore from my closet every morning . to return to the topic , how are they able to round their hips so fast like that ? ? In America ? Recently I ca n't play baseball because of my injury . I 'm busy studying , so I ca n't show myself . I heard that Christmas Island has nothing at all . I want to go Sentimental Journey alone in Island . I want to improve my English , so I joined in this activity . There is no special topic every time . She really likes talkng , that 's why I always ca n't get a word in edgewise . At first , he pronounced one of four words , `` very `` , `` berry `` , `` velly `` or `` belly `` . They are also cute even though they are Mexican men ! Steve Jobs announced this morning that the new iPhone is going to be launched onJune 24th . The cat who lives around my house had five new babies . I feel tired at after work . . . . He played a guitar and we made a song . So I will enjoy my writing from today . My brother never gets used to get up so early . I 'm a third year university student and I have to face job hunting from this spring . I have to thank this site and you for helping me to improve my English skills . Maybe , that 's because my friend came to my home yesterday . We ended up doing an all - nighter . My friend is very funny . How does she think about me ? Questions about a short sentence pt . 4 Fortunately , she loves English books and reading them to her will be useful for me too . And when it comes to speaking , French people are also tempted to pronounce in the same way that they would do in their native language . My major is English . tenant - resident restore - fix - repair Every time I speak English I think , `` which words ( phrases ) should I use ? `` I want to understand these little differences . Somebody can read my English and correct it ! It 's really amazing . : ) I want to say thank you directly to people who read this diary if I can . Many apple and grape trees , and rice fields . . . ( a little boring . . . but I like this town . I studied English at school ( junior high school , high school and University ) , The movie 's title is `` The World of GOLDEN EGGS `` . Both of us were a little uneasy . So it was difficult and boring . Both were woolen garments . One was a light orange skirt and a jacket ; the other one was a violet dress . When I saw my mother brushing her shoeson the porch , I felt thankful to God that my mother is alive andin good health . And it 's a new opportunity for me to study my english * - * ( ( I know , my english is n't good ) ) It was very hot and humid . I had been running . I had been running for 40min around my house . However , I found all the girls who I knew were boring , so finally I decided to ask her . I am SO busy this week that I 'm close to exploding ! ! I want to know why the vacation ended so quickly . . . . Therefore I went to barbershop . It was destiny ! ! I was going to a Sushi restaurant for lunch with my wife . language exchange Taipei I now live in Taipei I would like to find a langauge exchange to help with my English I could n't run in the hallway any more ! It 's also painful , especially the toes . I have n't decided which country yet . And I will make a plan for a trip with my family next year . My dream is to travel around the world with my family . We were going to play bowling , but we could n't because there were lots of people . I sincerely respect computer programers and PC technicians . yesterday , I had a conscription examination , I am very nervous , about whether or not I will succeed She was having a small conversation with another passenger next to her . I think the most challanging thing in life is negative feelings towards others or things . If a person always thinks positive , he would be happier and healthier . maybe it will not take effect that fast , but in the long run , after analysis and thinking it over , I may behave more positive next time when a similar challange attacks me again . I remember someone once said , do n't spend a second to think of those who make you unhappy . hi , I am newly registered on Lang 8 . my master 's degree in teaching Chinese as an second language . I need to prepare everything and be careful takling with people but I am a sincere person I do n't want to a liar lol . It seems I should describe about two jobs and also my business ( teaching Thai ) too . Later that day another acquaintance wants to find people for his business too . There , every summer a few old people die of heat stroke . Yesterday I had physical examination for this year . Hi everyone ! In this course , the teacher taught us how to use acrylic paint , but it gets dry very quickly and the final result is not as beautiful as if it would be done with oil paint . ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very briefly . When I was holding a class in this late afternoon , my son sent me a text ( / phone ? ) message , ( and ) said `` Shall we eat out this evening ? `` / `` How about eating out this evening for a change ? `` . We stood in a long line under the white snow because my son wanted to eat in a small restaurant . I came here with the hope that I could change myself . We relaxed and talked about their journey . That was a cockroach ! ! We were upset and tried to throw it out , but it was so fast , and hid behind a cooler . `` Something is And then the cockroach appeared from his pyjamas . I feel a little bit nervous . The cat lets them get on itself and goes to look for Mei , and they can find her . Hanami is like you go to parks or somewhere with your friends or colleagues to watch cherry blossoms . I went for Hanami the day before yesterday and played UNO with my friends . On the other hand , the full - blooming cherry blossoms were really beuatiful ! ! ! And I beleve that to be in contact with students who are learning Mandarin is a good start . There are too many things to fix ; it is more than I can bear . I feel pretty pressured as I ca n't do better than other students . But I think that it is because I love Disney , especially Disney philosophy . In Japan , there 's a phrase like this with the same meaning ( translated ) . Hey my name is , , Sana From Palestine I 'm a student of English literature . I need Some help with my writing . . I will get enough pay even though it is at my house ! ! ! So many people encouraged me so I appreciate you guys . . . . It says `` Vivid separates in contrasting hues ( such as this fusion of tangerine and plum ) feel modern when accented with a structured purse and wood accessories . Does `` structured bag `` means the bag which is made of connected parts ? Lavoro a scuola . English speeches are really good to practise English with . Besides , it feels great to give a speech in front of many people . I always become extremely nervous though : P Anyway , the kids were lovely and a pleasure . On the way , I bought a mocha and sandwich at the Excesiol coffee shop . I wish to have many meetings through this diary . At least I must be conscious and careful of my bad habit of getting easily absorbed in Net - surfing . . . It is already passed midnight , so I am very sleepy : ( However , I can not go to bed yet as I have not finished today 's part of my studies . . . These days , business at our store is very slow , and it makes me I 'm not a beginner anymore , but I 'm not an expert either . I 'll go to Enoshima island with my friend by motorbike tomorrow . Enoshima island is located near Kamakura . Today I watched the Japanese story from VCD , The story was about a woman cartoonist who raised an orphaned cat named `` Sawa `` . I like Japanese Horror more anything else since it does n't need any explanation . do you know Ghibli movies ? Laputa is one of the best . ( I ca n't decide no . 1 ) which is your best ? Some people observed my class so I was a little nervous . Today 's lesson objective was & nbsp ; to get used to using the name of body parts such as nose , mouth , ear , and eye and to enjoy activities . I 'm in charge of a second grade class . I think there are some things to modify . Koushien is high school student 's Baseball competiton . In japan , almost all people know of some programs about language aired by NHK . In fact , many people skilled in foregin langage such as bilingual and trilingual people have made use of them . To follow in their footsteps , I have tried to watch the program . So , sometimes I fall behind [ ? ] I had wanted to practise writing English , Now I 'm writing an article in English . but I wanna keep writing for the sake of my English . It has been raining since last night . Soon the festival is going to end , so both flowers and tourists are few . However , all of it were rich and delicious . I often go to Jingu stadium to cheer for them . Today , I 'm writing this diary at the terrace of a starbucks cafe . I did n't see his races in the past because F1 is very difficult for me to understand . What was I wanted to go was Mikunopolis , which is the virtual idol Hatsune Miku 's concert at Anime Expo . I put some ' KAKIAGE ' on it . I want to introduce my character today . When my teacher entered the classroom , we sang a Teachers ' Day song for her . because up until yesterday we donate our holiday for this project . . . But I think some people are normal . The test is a conversation with a native English speaker for 15 minutes . because I want to study arts in foreign countries . I finished my homework very quickly bacause of the drama . . They had n't known their responsibility until the party finished . But it is not easy to decrease the welfare budget . Many countries are facing this ecomonic crisis . It 's been a long time since I last visited this site . Actually , When I was planning to visit South America , But I guess that mission has not been completed . Studying abroad is my important dream . My father has not stood up since 2 days ago . B : Do n't worry . I might love her , but I hardly know about her feelings and what she thinks about . Althogh she is really attractive . . . I 'm from the southern part of Korea , so I have n't seen much snow there . Last night , I watched `` Hairspray `` . Maybe I like his voice . Tonight , I 'm going to take part in a Ghost tour . Therefore , we can only imagine how life would be without schools . I saw Gundam Then my mother took me to buy some watermelon , because it was so cheap Sapporo shrine When I heard the news the prime minister did n't make an offering at Yasukuni shirine , I remembered Sapporo shrine . Sapporo shrine is a shrine in Hokkaido . I think this shrine is a park rather than a shrine . I live in Saga , Japan and I go to university in Fukuoka . I often watch movies and dramas with my mother . I thought it was some kind of a suspense movie , but it filled me with a warm feeling in my heart in the end and reminded me of my brother . Next day , my husband found an extra lock and attached it to the bike . To avoid intensive use of electricity during weekdays , the rest - days of our company have been changed from Saturday and Sunday to Thursday and Friday . So , today and tomorrow are my days off from work . Therefore , I went to a Public Library to borrow 9 books . I remember the library is full of books about Technology & Program , Geo & His . Also , Hong Kong 's Library lacks Audio Books . Thomas the steam engine is one of the most popular animation characters in Japan . It was held in a suburb of London with a lot of spectators . It is difficult to have a chance to watch and ride on steam engins in Japan . It 's very important and significant to keep the old items in good condition . lf you ride trains , you can see a lot of people using cellphones , Or if you are walking down the street , many people walk while using their cellphones . But thinking about a 9 / 11 - type attack , it seems to be difficult to abandon our weapons and arsenals . We 're forced to defend ourselves and our allies . And then , we would n't have to defend against , or deter any adversaries : P President Obama 's way of speaking is quite respectable . After graduating from the collage of pharmacy , I joined a Japanese pharmaceutical company . At that time , we had the dog ( attached picture of beagle ) who was a cute and smart boy . Because she is too loud to make me consider everything . There are a lot of pop up labels explaininghow themusic is nice . . . something like that . Thank you for reading that . It sounded like they were not native speakers of English . I am from Colima , Mexico and my first language is Spanish , so I hope that I can help you to learn Spanish . well if your answer is NO ! , I send you an invitation to come to Mexico so you can get to know this beatiful country . I met a friend who could spoke English and I said to her `` Could you give me some adivice on how to speak English fluently ? `` She siad `` Probably your English level is good but you do n't seem to speak English well so you should talk with a native person all the time . `` That was nice advice for me because I was thinking that I would try to talk with native person . Recently I have studied English at an English website . Nowadays , people face a series of problems surrounding the environment . We usually do the things we want to do but damaged the environment at the same time . I thought it 's very very useful and helpful . On Saturday morning , my friend bought breakfast for me . The movies were very interesting . It 's not broadcasted enough in Japan . Those photos are `` The old Hirosaki city library `` , `` The old touougijuku foreigner teacher 's house `` and `` Hirosaki castle . `` ( I forgot to writing this . But interpretation is very diffrent from speaking English . I bought a coffee . Wounded and broaken , I have been making bread for two years at home and it has been a fun and refreshing te for me . She just refuses them without giving them any chances . I was in charge of facilitating an English conversation club for beginners today . We have the class almost every week , and I often join it as a facilitator . I thought visual aid can help me facilitate the class , and I was also able to enjoy watching the video . I go to school . Before I photoshop an image to upload onto the web , I 'll finish the Coke , grab some fries , and write something here . However , what should have been an impressive exhibit of his gifts , became an embarrassing moment because he did n't understand what he was asked and he also made mistranslations . One of my favourite things about Japan is the cherry blossom season . However , they are only enjoyed fora week or so . The lifespan of them are very short and this , I think , makes cherry blossoms more special . I had a cherry blossom party with my friends today . I have to cook my own breakfast , lunch , & dinner . Yesterday , I drew graffiti on a public road near my home . Many , many kids drew graffiti with chalk . And I drew graffiti ( too ) ( . . . . Drawing on the road was very interesting . My first experience with Russian was not very good , because there is no appropriated practice material and all that remains in my mind when I read a title like `` Russian in 30 days `` is an extreme frustration of not having mastered all the thousand ways to decline . My poor English My major at University was English . Soon I will probably have a native English speaker friend . It had been a long time since I saw my friends . We had much to talk about . I had a long walk , went to Freshness Burger , listened to music that I like , let my mind drift back over random things , and tidied my stuff a bit . I was kind of thinking about what happened to me yesterday . I 'm not going to write about this in the diary but some thing special happened to me yesterday . I 'm going to get ready for tomorrow I have to specify cappacino or espresso or americano here . I want learn the english language . Because I was in a private educational institute , I could n't see the first half . At the beginning of the first half , Lee Jung soo scored the first goal . But , at the end of the second half , Greek players played really well . Although World Cup was held in another country , Korean people gathered in stadiums or big squares and cheered for Korean players . Congratulations , to all the people from Krasnodar ! I have found that before I submit the paper about nationalism to my prof , I must perform a presentation about sociological methodology in my seminar . That is more difficult than writing a paper ! There were so many participants . You can read a variety of topics which a bit tough to find in regular libraries . When I write , it 's okay but when I speak that is not okay . My English is broken by me when I talk . I 'm very happy that I have no class today because the typhoon is going to hit TAIWAN , and the authorities have decided to close the school and the company . The typhoon may even cause a serious disaster like a flood or a in it , but the pictures often come out blurry . I finished working early today . I then drank alcohol in a pub in front of Shizuoka station . Honorific expressions are useful in business . This summer holiday , my 11 - year - old male cousin came to my family , taking two references of grade 5 . The task to assist him to review his courses in grade 5 burdened on me naturally . When faced with my naughty cousin , I almost had no strategies . Although imposing is unwise , it is obviously effective especially when coping with such a naughty boy in a short time . I 'm very sorry Fukushima has become infamous for the accident at the Fukushima Daiichi nuclear plants . Because she likes to play pc game , Work using English in a Japanese company . I did not know there was a website which brings together so many different people . He was a professor of computer science and he was diagnosed as having an incurable cancer at my age . Because the brick walls are there to stop the people who do n't want something badly enough . I think it 's a very useful tool to learn foreign languages because whererever I am , if I 'm in the situation where I can use internet , I can talk to anyone all over the world . but weekdays I get home at about 9pm , so I searched for an online ( Skype ) English school . search . . . . How many school are there ? And now I 've found a very nice website for learning English : I 've already signed up , and now I 'm writing my self introduction on it . I subscribed to micro - blog on QQ , where I encountered a famous saying that says you shold use your mobile phone , when it has n't been ringing for a while . Someone once said , `` Our life was made of 5 percent of surprise and the same amount of grief , the rest is normal things that you can not remember . `` My eyes glistened with tears . Like this diary , whenever I have time to teach . I am looking for beginner , intermediate and advanced persons . And tomorrow is May 1st . Now , I do n't speak English much . In japan , there is no opportunity to talk to anyone in English . I want to introduce the review in the book , and I 'm going to translate the review little by little . I am interested in ' Mizuhiki ' , which are colorful strings used for special occasions . Actually it was still raining outside when I was writing the sentence . Hi bbvoncrumb , thanks for your compliment . because I have low blood pressure and I 'm senstive to cold . If I can pass the test , I can go abroad and get training , take part in editing textbooks . . . We will eat local food and go shopping ! kkkk Because I will study hard for examination before it . He said , `` I slept yesterday without using a heater , in order to save electricity . I enjoy exchanging postcards with people in other countries . at that time , the appearance was just like a bamboo stick . Everyone will go somewhere even if it is expensive . I 'm writing in the early morning just after my job has ended . . . . Thank you for reading my diary . It 's fine today although some clouds sporadically adorn the blue sky . If you are allergic to pollen , I 'm sorry to say so . I do n't have hay fever , so I ca n't relate to the calamity . If you were in a quaint village where the roofs of the houses were thatched and you were surrounded by a number of beautiful cherry blossoms , even the word `` spectacular `` would n't suffice / be adequate . People revel in drinking and eating there and eventually grow into boisterous because of intoxications . I do n't know where this ' UNCOMFORTABLE ' feeling comes from . I can do it again , keep going ~ ~ ! ! we felt happy because we had been out of contact for a long time since we went to college . Hence , we talked about a lot of things including tiring things but finally , we both had a good state of mind . 4 What 's the difference between ' I have some questions for you ' and ' I have some questions to ask you ' ? Today , I came into the office as early as usual . I remember the time of my interview , during which my manager asked me whether I could get through difficulties or not , and my answer was definitely yes . However , I feel it 's a little difficult to do it now , because it 's very hard to get along well with my colleagues . This is my first time using Internet to learn language ! To type English with keyboard makes me crazy , 'cause choosing the word to describe the situation that I wanna express takes me a lot of time ! Today I have stronger pain than yesterday . While watching posted videos on Youtube , I am discouraged George Michael and Shogo Hamada . My laundry wo n't dry ! : ( Eating and drinking good food and wine with people is fun , what is more , the dinner is free . I appreciate having the chance to go to XXXschool and I hope that I do There are some things that we are not clear about , and then we have misunderstandings and it makes people who are affected by our mistake feel angry , or at least uncomfortable . We ca n't deny the dominance of England in comparison with the rest nations about aspects of life , but it should be clear in the way we call nations ' names . I have ever thought that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . And now , after taking a class on British culture , I know exactly the reason . Because , I did n't transfer money to bank ! I transfered money to bank a little while ago . . . I hope that my website 's data is n't deleted . . . Because the wine distributor arrived yesterday . By the way , it will be rainy tomorrow . I can write some sentences in English because I studied grammar in Japan , but I 'm not sure if it is natural or not . I prepared to go to college in a hassle , because the speed at which the lecture takes place is very fast . This is the reason why the lecturer illustrates with a monitor , not a blackboard . So I thought `` What 's that ! `` when I woke up this morning . Do you agree or disagree with the following statement ? Parents are the best teachers . However , we have n't decided the day when we will go yet . I do n't know why , but foreign senior men who appear on Japanese TV shows also speak ' OYAJI - GAG ' on the show . What was more , I did n't want to get off the bus even though I traveled from Barcelona to Madrid for 8 hours . I read the news recently and heard about the major earthquake that happened in Haiti and killed many people . I believe that my country make sure to help them . Cause he will back to Hong Kong and will not return in vacation . I think it begins with noting , then it finishes either with nothing . a freaky interview experience Now it wants to launch its own shops ; hence , it needs to recruit some store managers , sales persons , and marketing executives as well . HR called me yesterday and asked me if I was interested in the position ( marketing executive ) or not . However , this company has totally disappointed me . First , I filled out a sheet of personal information and a sheet of MARKETING questions - - freaky questions . The interviewer asked me to briefly introduce myself and asked me several questions . Thus , I asked how many brands they would launch soon and she was n't able to answer me . I also asked about the location of the new shop and she said she did n't know . That really surprised me because the new shop will be launched in the coming April . So I wanted to go to Kyoto in the morning for sightseeing . But my spine ached . . . therefore my motivation disappeared . Maybe today 'll be consumed by reading books . I 've had my chopsticks in my left hand when I had a meal 3 months ago . Left handers are excellent at feelings and inspirations compared to right handers . After that , we had a barbecue party to celebrate the successful completion . I come from Vietnam , a beautiful country . . Australia . It 's 23 . 14 and I 've just finished watching the first episode of Gilmore girls . I had classes every day during my first year at my university . S is composed of 99 members divided between 5 sections , this is my first diary . . I decided to improve my English and I need your help . Searching for the meaning of life , human - beings seldom think about the Working like a bee and then panting like a dog , this kind of lifestyle keeps bothering us people day to day without an end . It was during Happy Hour . I like beer , but I have n't drunk it in my home for about 2 years . part time job I went to my part time job . but I have to work to earn money . To what extent do you agree or diagree with this idea ? `` If the company sells their goods only on the internet , what would happen to people who cannnot use the computer ? In my country , Japan , many company use web - application systems . It is a smarting pain rather than just feeling a tingle . So my room became simple and ( refreshed ? ) She told me that she would quit teaching English school , because she was busy with raising two young children aged 9 and 7 years , and support her husband who would like to change his job , and also she wants to pursue her career in writing . I need to Travel around my country to finish my job . but I do n't have much opportunities to practise my oral english . I have started to snowboard since this year . This Sunday was a little bit different than usual because we had twelve visitors from Cambodia . When he asked her if she would do it , she willingly accepted his plan . Eventually , the plan proceeded this afternoon . After I became a grown - up , I 'm likely to be shy and nervous , so sometimes I lack aggressiveness . When I think about Arabian people and Latin people , even if they do n't know much about English grammar , they can speak and listen to English , and they do n't seem to be shy or nervous or hesitate . Japanese especially have a tendency to be silent , I think . In Japanese education , listening to what teachers or people say is a virture , so people wo n't say anything while someone is speaking . , and happy Halloween ! We plan to go drriving tomorrow , however a meeting time and our destination is not decided . She probably drinks beer in a pub . It was very sunny today , so I went to Osaka Castle Park to see cherry blossoms with my son . because everyday I think `` l 'm happy , l have all the things l want `` but sometimes l do n't want anything . So , I have to eat lunch alone ! I did n't eat breakfast yet . My English teacher recommended it to me , so I expected a lot before I watched it . But after a while , you will know it has been spiritually nourishing . I 'm not good at learning English . I 'm in my final year of the Dutch equivalent of high school . I still made my first entry here an English one , mostly because I have my first English final coming up and it just happens to be a writing assignment . And also because I just really enjoy writing in English , and I 'm kind of afraid to write in German for some reason . I 've never felt sick since I came to Australia , but at that time , just that particular day , I was n't fine . Last Monday , I met my former classmates . It was lovely day so we bought lunch and ate in the park . But I did an oral test , I do n't speak English very well , I do n't have the opportunity to talk in English , I need to find some way to train my conversation , but I do n't know where . TUTOR ! I 'm looking forward to seeing my lovely wife in yukata . You told me that you were taught Shakespeare with boredom when you were around 8 to 11 . I love TED and Steve Jobs ' speech in Stanford university . I appreciate learning 2 . 0 : - ) If you want a product cheeper than the retail price , it is very useful . Many Koreans use Coupang , Ticketmonster , Gurupon . . . Social commerce site have various kinds of coupons : shopping mall , beauty shop , hair shop , nail shop , massage shop , restaurant , cafe . . etc . . Because if I think too much , I ca n't continue . I am busy , so I am going to just try and try . I thought it must be a lie , but when I visited her apartment , I saw there were four bananas in the kitchen . so my daughter was eager to go out somewhere . Haneda airport was used mainly for domestic flights and connected to only 4 foreign airports in China and South Korea . The workers took off their shoes inside the building until it officially opened in order to keep it clean . Dear friends ! It is difficult to point out the errors in the Japanese sentences non - natives write . We read a recipe while we cooked `` tororo - conbu - nabe `` . It was a great success , though it is our first time cooking it . The part ' hoor ' sounds like ' whore ' in English ( sorry for the wording . . So the Englishman thought my mother often called her colleague a Englishman thought my mother called her colleague whore for sure . so my friend advised to write my journal in this site . Hmmmmm , I 've got to make new friends . I want to use the phrase , `` Get to the bottom of this `` . If you ca n't believe in yourself , just concentrate and keep up the effort . `` A Class of Art `` I will have an art class and I 'm going to go to near the port , and I will paint a picture of a fishing boat . Yesterday , I played soccer from early morning . I will join a soccer tournament in November . Please correct my English . When I drove my car , I was aware that the right side blinker of my car flashed faster than the left side blinker . I found that the bulb on the front right side blinker did n't work . It might be more expensive than fixing at a gas station . That reminds me of the death of princess Diana who died in Paris when she was followed by many paparazzi . Also , people misunderstand the important news of the world , since every time you see the television in Japan , there are so many programs with information of the star 's gossip ; because of such nonsense information , it reduces the time to show other serious news that is much more important for the world . By the gossip from the media , these fans can be confused of the difference of the image and behavior of such stars . My birthday is this Saturday . I think I did n't do well . : ( After the test , a cinematographer came to my school and gave a speech . there are n't a lot of days left till the World Cup ! If someone asks me `` how about writing an essay together about his From tomorrow I 'm gon na start to attend a English institute . He is Korean but at this moment lives in Japan and studies Spanish . I am going to visit Tokyo tomorrow as my sister is getting married . Although I have visited Tokyo once before , I am excited to go there again . A mail from a colleague was about my boss ' I chose chemistry while others chose geography , biology , physics , politics , or history . In my point of view , that is just because they all belong to science . In university , the physics class is much more difficult than before . I have thought that a person would be slimmer after finishing a series of difficult questions . We had a wonderful time in NYC and Washington , DC too . I thought that maybe they were born in ( came from ) Europe when I first listened to their music . I felt the European style in their music . Polular places for Hanami such as Ueno Koen are usually very noisy because of people talking , shouting , singing etc . I am Korean . Although I ca n't speak efficiently , I want to enjoy with friends who can speak English . The main topics of conversation were all around me , like seasons , alcohol , hobbies , gambling , etc . . . However , this experiment has encouraged me to learn English . Yesterday I took this picture because the flower was so beautiful . I mean that even though people prepare enough to achieve something they would like to get through successfully , when it counts , they get so nervous and worried and as a result they ca n't perform as they had thought they would be able to . It 's difficult to describe . The animation is so beautiful and I think it can be proud as a Japanese culture . So today , I was looking for good ways to practice my english in an interesting way - watching movies , chatting , and talking are very good ways are n't they ? Good night and thanks for reading , It is the most exciting MANGA I 've ever read . They sometimes make me angry , but not really because they 're my lovely dogs . But it 's lunch time soon ! Hong Kong was a very fun and lovely place . There were many different foods , it was very yummy , As I could try the flavors of several countries , it was very interensting and delicious . My colleague from the previous company ( I worked for ) called me last night . `` The competitors ca n't do it . `` because I 'm afraid I will need a lot of corrections . . Good morning from Thailand As soon as I got up , I washed my face and brushed my teeth . I 'm looking forward to that , someday . You also would n't hear the noise of cars on the road , because there were few cars at that time . Most of people went to work by bicycle . Their were green plants instead of high gray buildings . I suppose their strategy is very successful among this generation because of their reliance on the Internet . In addition , the laziness of their customers results in the offer of a delivery service . The older we get , the better we get at handling human relationships . And then I went to snowboard about twice a season . In the future after our dreams come true , I hope to travel overseas with her . I want to write the reason why I study English . Above all , I just stayed and traveled there without any consideration for my future , whether I could get a job , and so on . Belorussians almost never say `` Good morning . `` This term This term is so interesting . I am surprised that so many people are able to speak good Japanese which is said to be one of the most difficult languages in the world . My dog is called Rei . My dog is sleeping on the sofa . My first trip outside Taiwan was Japan when I was 13 . Earning money by myself is not unusual for me ; however , it 's really something to make money in a foreign language and a foreign country . When you want to rent equipment such as a camcorder , a lighting unit , a microphone , etc . , we ask you to register as a member of the Community Media Center . Something happened to me recently . I went to a japenese food restaurant with my boss yesterday . The G7 meeting ended and they decided to carry out some provision which has never been done before . I have to have my motorcycle looked at by the motorcycle shop 's employees . Yesterday , I was very excited because it was my first time Because there was already existing resources which I did not create . The strategy is how I should make use of the resources , thinking of priorities and limits themselves , I guess . But I realized the existence of copy right , and I gave it up . I asked an electronics store to repair my air conditioner . I want to know about Minnesota . Today I went to the club Camelot in Shibuya . I really think `` What a wonderful world `` every morning . Because it is intersting and fashion in the clothes . I would like to join the next party some day , as well . As I did n't know when to submit it , I asked my friend for the deadline . I really recommend this book . It 's second Sunday of May today . Now they 're keeping that secret just between them , their mother has not known that it 's Mother 's Day today . Each Ramen shop chef has his or her own recipe . There you can be satisfied with each bowl at a reasonable price . It rained yesterday , so I came home to my dorm by school bus . Also I think that we have been only learning formal sentences because when I talked to native English speakers , I could not understand anything they said even though they spoke slowly for me . Facing the failure of my College Entrance Examination , I felt depressed at first . Finally , I want to be rich . I feel sometimes it 's good to get away from electrical gadgets and doing something different from what I usually do . From today , I want to keep writing as many entries as possible anyway . Today 's picture is the most beautiful beach I visited in Taketomi island . and our body gets older . We need to take care for ourself such as eating a value food that is useful for the body . Even `` water `` seems to be important . I tried to communicate with British people . There are three pieces of news which I 'm worrying about : We have classes in her office over tea and cakes . Susan and Catherine are very American . She wanted to be a conductor of an orchestra when she was a high school student and she majored in music in college . They are Chiba Lotte Marines ( a Japanese Professional Baseball Team ) fans . I had took this method for the past six months , but I did not improve much . If you have a good method for learning English , can you share with me ? I am from Saudi Arabia . I joined this community site because one of my friends recommended it to me . it 's difficult , for me , writing in English daily . Anyway I had a good day . The store is very big , and I was so excited about shopping . time and I also forgot that I came there from the other side . Am I your daughter ? `` My parents laughed . Do you remember ? `` The assistants laughed too . When I was growing up , my parents often tell me about / remind me about this thing , and we laugh about it . I 'm getting better recently . Then I wondered why all of girls who you kissed were very surprised , when they looked at my face . In the world , there are many people that commit suicide . Maybe they have many different reasons . People always do something they are unlikely to do but they must do . People always do something bad for themself but they still do it . I think my smoking is the same with those people . I want to make foreign friends ! ! ! I 'm enjoying 1 Litre of Tears now . Yesterday I stopped by some Indian - curry restaurant to have lunch . So I encourage myself . I 'm learning Jazz dancing from 4 years ago and I 'll try to do yoga and belly dancing this year ! sun . Meanwhile , my boys worked very hard . They cleaned at the bottom of the mountain . True or False ? We try to gather audience , but only a few people come to our show . Like most of the Chinese students , I have been learning English for a long time and improving it by taking various language exams . It should be after my Japanese language proficiency test level 1 and earlier than my 1 - year - exchange in Japan next year . To recite all of those vocabulary and pick up English writing , I have decided to start writing dairy on Lang - 8 once again and I hope I will do it longer this time . I am learning some words that I am not familiar , espacially those from TOEFL vocabulary . 3 , I really need to improve my English which is very important for job and I 'll do it with my full heart . I feel little ashamed of myself . My friends what are your suggetions to my English study ? I can type anything I i want to share with you guys . The main actor is Won Bin , who is very handsome and tough . Especially in the last scene in which the main character struggles with all the bad guys is very cool and exciting . So I recommend that children and pregnant women do n't see the movie . but I could n't . I like winter but today I thought that this winter is too cold & long / hard and it will be wonderfull if it is over sooner and spring comes . I went to see Jesus Christ Superstar by a Japanese theatre company yesterday . Yesterday 's stage was called `` Japanese version `` . Kanamori as Judas ' song is ringing in my ears . . . painfully sad voice . For several years , some friends of mine , who are very well versed on the subject of comic books , suggested that I read Watchmen / suggested to me that I read Watchmen . The depth and humanity of the characters makes them different from the stereotypical comic book heroes . The plot deals with several interesting themes such as human nature , perceived reality , politics and the difference between ideology and reality . She says she enjoyed it , but I think it was a little hard to understand for her . It 's the sweet potato season ! ! I like sweet potatoes very much . I want to make baked sweet potatoes , tempura of sweet potato , and many other delicious things . I 'm going to get some sweet potatoes , so I can start cooking sweet potatoes ! ! Are there other dishes using sweet potato ? Some people might say it is meaningless . A 100 yen shop has daily goods , stationaries , toys and even food . The rent is determined by various factors such as location , neighborhood , building age , amenities , whether or not there is a doorman , elevators , and so on . Since the neighborhood itself is very popular , the rent level is very high even if quality of an apartment is low . I prefer to live comfortibly comfortably inside an apartment because I spend more time inside than in the neighborhood . Thank you for reading my diary ! However , a familiar word , `` McDonald 's `` , as we can see around the world , has the letter `` D `` in it as a capital letter . Additionally , she was a patriot and we should construct a statue to extol this noble spirit . Statues are built to remember people who contributed to society , and thereby making more people realize their responsibility to the country . We went to Bexhill which is near Eastbourne . We went to see The Red Arrows show in Eastbourne . We saw two ponies , a pig , chickens and many kids tried feed them all the time . I went to see the broadway musical `` Legally Blond `` last night . Please check my grammar . My favorite figure skater is Plushenko , _ because his skating is very good and exciting . and because now I have native speakers to speak with and practice with , even this site is one of my important reasources ^ ^ These things , for me , are so beautiful . Please correct any grammatical errors or any expressions not commonly used . I rememeber when my girlfriend and I started to see each other , she always made fun of me and told others that I 'm so stupid to be with a girl in the same department , even in the same school . Stars are very beautiful . My heart becomes peaceful . The view from the small mountain is especially good ! I 'm looking forward to that time . In an hour 's time , I will go to school to continue my studies . Chinese lesson , english lesson , maths lesson and so on . I hope to elect the person that has proper thoughts and actions . Sorry , I have n't posted my diary for two weeks . A presentation topic will be attractive with the support of examples and proof , especially for academic , scientific and technical presentations . I 'd like to improve my speaking skill by using my iPod and this speaker . I am an account executive . Everyday I need to handle all kinds of things that are complicated and irritating . I think I should be more careful and diligent in my work . I 'm a beginner on this site . This is my first daily . I read a book about organizing of desk , information and thinking . Most Popular Characters in Japan After I moved it , I checked the data on the DVD - Rs . and after a while , thenPC went blue ( screen ) again . Because I felt very cold , we went back early . Hi ! My name is Yasuna . I am a freshman at a Japanese college . The First Below is my introduction . In the future , I want to become a successful secretary . That 's all to my personal introduction . As I did poorly on the listening and writing . Quantitive , Verbal . . . . I wondered a little bit if the bubbles are bad for the lawn . Chinese tekens , gebruikt in het Japans , kunnen op verschillende manieren worden gelezen zonder dat hun betekenis verandert . I wanted to watch them because they are so famous . Naruto is famous in Japan too . I tried drawing at the workshop . But I could n't even draw straight lines . But our program teachers , young Americans , have opened my eyes . what 's your methods ? I am a University student in Kyoto and I am 20 years old . It 's an old Japanese motorcycle . Sometime last month , At the beggining of counseling , I asked a student what the biggest problem facing him was . Maybe someone wants to know something about Russia . The song I want to practice next is the classic old song [ Just Once ] . It is `` I 'm not okay `` composed by My Chemical Romance . The sky in autumn is so beautiful especially in Japan ! If you have not seen it , I will really reccomend it . `` autumn `` and ' `` fall `` Some sentences in the novel `` Night `` which I do n't understand . And here are some sentences that I found emotional and beautiful ( I do n't know how to describe it appropriately , maybe you can help me XD ) and want to share with you guys : It is famous for its `` night market `` . Wooh it is almost 4 o ' clock in the morning and My voice surprised my son when I read his picture books . My company is a commercial firm so we purchase products from Switzerland and sell them . Since we send products to the customer after we receive their order , it takes a long time . Our products are very complicated and people may be unfamiliar with them ( it is a device for vacuum ) , so we need to think of it and find a good way . My main job is solving my client task by digital communication . I can hear spectators sing a song together in order to cheer players up at sport events such as soccer and baseball . I make it a point to listen to Enya 's songs when I am stressed . It looked like tweezers . He told me `` These are tongs for chips . Are they convenient to eat snacks with ? ! I want to study English and Spanish . I have been studying English for a long time , I bought 20 graded readers books I 'm looking forward to receiving the package . We are looking forward to visit Denmark very much . Since January 1st , I have been writing diaries in English on another site . The Sushi he made was so delicious , and his delight ( from it ) was able to be seen . And a smile on people faces who ate his Sushi was noticeable . Knowledge is what makes adult and chilren different from one another . Finally is skill . Consequently , my concentration increased and I could go home early . It seems I have a new computer right now but I do n't like it . I like the old one because I was used to using it . There are many attractions . Speaking of attractions , some of them will scare people but they are out of order . I have a fear of heights . I 'm a chicken . He has a very good physique . We asked a person there to take pictures of us . When my daughter found the bicycle after waking from her nap , she said , `` The bicycle is laying on the ground ! `` sunny day person in the music industry . Friendship is an essential ingredient in the making of a healthy , rewarding life . All people have the right to access the best medicine available . While some people think it is necessary to ensure human lives by providing them with advanced treatments and the best medicine , it would be very difficult to take care of or save their lives completely in terms of the budget and facilities . It is true that people should be treated equally regardless of their level of income . Rich individuals or companies can not take responsibility for the medical world . For example , in Japan , it takes a long time to raise enough funds for patients ' operations . The government still lacks money even after abolishing unnecessary business activities . I have been impressed by the theory of Ebbing house before . I 'm visiting websites , including this one , by using my cellphone . How delicious it was ! Firstly , miso can be divided into two types in terms of its color , aka ( red ) miso and shiro ( white ) miso . It 's really hard to describe colors in English precisely ! so I 've been tired these days . OKINAWA 's music has very special harmony . Your country may have that kind of biscuit too but Tim Tams have a special ingredient which your country does n't allow to put in biscuits - drugs ! ! My next English lesson will be about superstitions . Now I work in a kindergarten , I do like children , but I do n't like to play with them all day long . It 's my first time logging in LANG - 8 , so I 'm new . I want to change jobs , but I have no confidence 'cause of my poor English . Just kidding ^ ^ But I want to if I can . My dream is to become a management consultant . I cough so seriously that sometimes I ca n't even breath . After coughing for 3 days my mother said `` I think we should see the doctor , the doctor of traditional Chinese medicine . `` The doctor of traditional Chinese medicine is about 60 years old . English business letter My customs broker says that the importer 's name was my storage company 's name on the B / L . I think it 's very hard for a person with no experience like me to get a job . It must be very hard at the beginning , but I believe that I can have a better tomorrow if I work hard . ^ ^ I used to save my small allowance to buy a new album and then listened to it thousands of times . What is strange is that on the other hand they 're willing to pay 300 - 400 yen to download a single ' chaku - uta ( music file specially coded for mobile phones ) ' , to get the song immediately when they want it . I guess what they value more is convenience than a small amount of money , which is I think a bit too expensive for a single song though . Dubois put her girls to bed and was waiting for her husband while sitting on the sofa alone with the lights turned off , when Mr . Dubois , who has been deeply distressed , finally said to him , `` Honey , it 's already 9 o ' clock . `` I was got a little cultural shock at that scene . The younger people in their 20s usually go out with friends till very late . When my husband and I were dating , we used to meet around 8 or 9pm after work and hang out in a cafe or bar , then went our separate ways around 10 or 11pm . Restaurants usually close at 10 pm and supermarkets and shops usually close after midnight . Moreover , there are lots of bars which stay open through the whole night . Topic : you need to write an appropriate response to Neil , being around 100 ~ 150 words in length How are you doing ? Last night , I saw a TV program that said Japanese people eat Japanese food less these days . How are you ? Your letters never cease to enjoy me . Second , the number of Japanese families who buy groceries from online supermarkets increasing these days is not a good way to buy food because , in my opinion , using online services like this would discourage people from enjoying themselves before making meals . Personally , even if a custom in one country is so cruel or so stupid seen from people from other countries , they do n't have the right to say if the country 's custom is good or not ; all customs have the right to exist in the world . Although this entry is so long , please correct this > < ; sorry ! Today I slept until 10 : 00 . I started to write a diary to improve my english : ) So many people were there . I saw many beautiful girls and floats . But the most surprising event was the Stealth B - 2 fighter flying over The Taiwanese people are very kind . I love Taiwan and Taiwanese people . I can make various pound cakes , for example , chocolate , peanuts , banana & walnuts , raisins , and some dry fluits . I take pictures of some trifle object that has a nice atmosphere . Then he suddenly started talking about gambling and the rich man who is the president of oil company in Singapore and winning 20000 $ last night and he taught me how to win . I 'm Japanese and I 'm Buddhist . However , a lot of Japanese people like to celebrate Christmas like foreign people . I 've heard that in many foreign countries , people buy presents for their family . However in Japan it seems to be only for children and couples . Maybe it is used as advertisement for toys or jewelry ? I gave presents to my nephew and niece . After graduating from ESL and switching around some majors such as Spanish and Social Work , I felt like studying more about the earth and the things related to it , so finally I majored in Geography which focuses on resources and the environment . My school life here in TX has been interesting and fun although learning English is still in progress and I still have long long long way to go . I 'm a graduate student and will graduate from my university next spring . I need to wait until the company starts interviewing again . So I decided to return to the place where my university is located . Neighborhood restaurants menu I could add new a item to my neighborhood restaurants menu . But it was not the that strange until my college classmate appeared . I do n't know why I always dream about my elementary school , highschool , and the places I played in when I was a child . Suddenly I feel like reading blogs that / which are written in English . There are many language in the world and I selected English first because I 've been studying since junior high school and originally I liked English , especially I want to understand and use `` jokes in English `` ( hahaha ) To be awkward , I want to teach more to 13 girl and play with 11 girl ! It is of the `` Godzila Rock , `` which is in Syari town of Shiretoko peninsula . I sat for examinations from Tuesday to Saturday . My classmates suggested we go to see the movie 2012 to relax and release our pressure that 's been repressed these past few weeks . I 've skipped it twice , and if I am absent the class three times , I ca n't pass the exams , even if I get 100 points . Even watching TV is a little bit hard . And I looked up about my class ' teacher too . Luckily , I downloaded all the episodes from the Internet and watched it within half a year . But the even busier season is coming soon . I work alone until very late in office when I have big projects to complete . Sometimes until 3am or 4am . . . I got an offer to do website and product design from Switzerland company . But it failed . For exeample , optimistic , negative , positive , cheerful , kind , strong , and more Please give me your good advice ! ! ! ! In November I will go to Finland to meet an international coordinator who is in Uni . Actually , it took longer because I transited in Malaysia . I enjoyed talking with them , and could feel cultural differences . When I heard that , I felt the immense distance between countries because the sun sets earlier in Korea . But there is a difference between only knowlage from a dictionary and the stories we can listen from people living there . I wish I could have traveled around Australia because there are a lot of good places to visit . I should have gone to the Great Barrier Reef for scuba diving . So , I 'll go to the Kaname - cho station to study English with my friend who teaches me . Therefore , I make it a habit to check calories . I 'm disappointed with this result , but probably I 'll study basic English , like I studied when I Once I have begun to write diary , I check for my buddies and reply everyday . . . Although I 'm doomed to fail , It is an ordinary thing for me and I will do it again and again . . Today I made fried celery and bacon , boiled spinach with sesame , and rice balls . Tomorrow I 'll make boiled potato and beef with soy sauce , and some appetizers . I 'm on a business trip in KOBE , HYOGO - prefecture . Many foreigners are in KOBE . I usually go on a business trip for ten days in a month . It 's hard for me to take a long time for transportation . Recently I was thinking about two questions : second , where can my own happiness and experience come from ? I will go to France for 3 months from august to october to do research for biology . In the lab I will go to , everybody should communicate with English . My major is Japanese . I have a lot of interests . I can not contact some friends who live in the devastated areas . We also decided that we would sing together one English song and one Japanese song and after we sing well , we will post it on YouTube . I will use ipod and master singing English songs . But the younger one hates it . Of course this is a good way , but before doing that , for people who are not confident with their speaking like me , it 's very useful to learn how to write well organized English . So I 'm practicing in this way so that I can put together English words quickly . I found the answer to this question . Work is important for me to enrich my life . Nice to meet everyone ! Recently , I was too busy . Please look forward to my next journal . From tomorrow , I 'm gon na start working on my desk and I feel like that 's gon na go well . So I could not agree with his opinion . For some people , red is a beautiful and lucky color . But , I learned that it 's sad to regret in the future . Vietnamese learning English Hello everybody , I am Vietnamese and I want to learn English . I think that is a long time , but I am not good at English . I love shopping , besides I 'm just a student yet and , because of it , I 'm constantly poor . Cut an onion lengthwise in half and slice the halved onions . Place some butter into a frying pan and and fry the onion over a moderate flame until golden brown ( for about 8 minutes ) . While we were walking , we discovered spinach in the field , which is a vegetable I really like . I could enjoy having a dinner with a wonderful side - dish of refreshing spinach . They always say , `` We are too busy now , so we ca n't deal with your things at once . `` And when we ask them when they can do it , their official response is `` we will do it on our own schedule , but we do n't know when we can finish it . `` Nevertheless , our leader has no power to ask them do our matter as soon as possible . I do n't know whether I should work harder atmy job , or look for a better job in near future . I love autumn too . I like this season the best because the climate is very accurate to do anything . As soon as I woke up I felt a sore throat . I thought `` Today , I 'm not so busy , I will be OK , `` but unfortunately . . . ? ? ? Because I find I 'm wasting my time . We should combine them with some other ideas or some global standard . To me , English is a charming language . Some students use color or highlighters . I 'm working at a logistics company , Today the weather was bad . When I stayed at home in the Kanto - area on Friday , some violent shaking occurred . But a typhoon hit . I hate when independent rock bands break up because they are not famous and they ca n't find the opportunities to succeed . Filipino girl , 3 . But I ca n't speak English fluently , so I will mend my ways and enjoy everyday to the fullest . Ten days later will be Chistmas , but it will also bring me a difficult problem . That is what should I buy for my supersivor as a christmas gift ? I work in a InterContinental hotel ( a international hotel ) where most of the mangement staff are foreginers . Such as my direct boss is from Australia , our manager is from Netherland . our GM from italy so on . Generally speaking , we celebrate christmas just for pleasure in China . But this time it is absolutely differen . We will be celebrating christmas with some real foreigners ! So I think it 's necessary to buy something special for them as a christmas gift to help them to have the same christmas as before . At least they will also recieve a gift . I think their feelings about Christmas is a bit diffrerent from China , and my main task is to make chrismas as fun as it would be in their homeland . . Shino - chan also came to Osaka from Hiroshima for to take the lesson . I heard an interesting speech . But I think it 's very important that we have to show consideration for each other . Our group 's main purpose is introducing Japanese student guides to student travelers . My friends recommended that I eat dinner . I might look for people who can advise for me about diet . In order to do it I walk around and go up and down . And through some windows I can see some green around my house . As you know , the roads in the morning are full of cars which are driven by workers . In my opinion every subject is important . Many students think maths is more difficult than Chinese , so they spend more time doing maths than they do practicing Chinese . It will make me feel lonely . How do movies or TV affect people ? No . 4 Heroes and heroines achieve great success of their business , attain sweet love of their life , and gain high respect of their fame so easily within a two - hour long movie . When watching it , audiences can experience the same events and share the same feelings . As a result , this whole process would fulfill their fantasies and cause them to find balance in their lives , or to some degree , lose the balance in their lives . This all depends not only on the movies but also the audiences themselves . To put it differently , tasks are arduous for mass media to bring people laughter , joy and relaxation , and at the same time some pedagogic meanings . I 've been practising magic tricks since I was in the university . The earthquake happened in Tohoku and along the Pacific Ocean coast this afternoon . So you might see a rainbow , although there are some other necessary conditions . I went to an Italian restaurant with my husband . It was so delicious that I ate too much . I want to tell my sister about this restaurant . The end of it threw me a curve when her hand suddenly appeared from her grave . Also , she said that `` You can never be careful enough ; you are a girl . `` This evening , I read a novel wrote by a Britain woman writer titled , `` Harry Potter and Magic Stone `` . His uncle has a chubby and spoiled son . The uncle and aunt treated Harry cruelly . Harry went to the Witchcraft and Wizandry School with the help of an escort who was from that school , and began his legendary experiences . There was trouble on Wednesday , The sore throat will heal by gradation . I am very happy ! Tomorrow I have an interview test to work at a part - time job . I am a bit nervous . Then , we took the travel agency 's bus there . We were disappointed because we had spent time and money . We just took the bus all day . Then I went to the travel agency , and they returned some of our money . According to the news , it is an approaching Typhoon . I heard about Lang - 8 accidentally from a Chinese website called CnBeta , a IT news website . One measure I am taking is the pursuit of muscle exercise . Unfortunately , There are no lessons in the holidays . They live in apartments near the university so that they can go to school by bike . First I need to copy a book for him . Do I sound a little mysterious ? My bad luck began when last month I went to a temple to pray for more money . So I was thinking , `` I definitely have to go there again . `` Now , I feel like my esophagus is burning . I need to find a way to alleviate my anxiety . As a female patient , I have good reason to lose my rationality . We talked about the past , the embarrassments happened to us . I 'm twenty - one now , and I have many random thoughts . ( my friends call me `` poet `` sometimes ; I wish I would n't make you laugh ) . I 'm sorry I know I should . but still I do n't know what I want to do after I finish these studies . I continued to make the panda that I began ( ? ) yesterday , again I made some mistakes - . - I was really hoping to finish it today , but I guess maybe it will be tomorrow lol Because of that terrible life style , I had a high fever every month , got the flu in winter and suffered from chronic constipation . The host family was good , I thought ! `` It makes no difference to me . `` I want someone to correct my diaries . As a result my performance was OK but my index finger was burnt . Well , I will enjoy the party . I just need to be happy but it 's so difficult . Our country has a lot of good culture . , so I want to introduce it to people . And recently , the custom of wearing kimono is dying , because many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . Thanks ! ~ ~ Hair Of Beautiful Women I want to improve my English and it depends on the criticism , so truly , I hope you can help me correct my English . However , all the hotels around the airport are expensive . One day , my co - worker told me about lang - 8 . I feel that here is a good place to learn , becuase many people share their diaries . First , I have an English test in August , so I must spent a month in for preparing it . Well , I 've mostly just hung out with my friends and went the library the last few days . After Choo - Suk , Korea 's second job recruiting season will be begin . I hope to work for an international company where I can use English or Chinese . Of course 10 people including me were attending the meeting for a system assessment ; 4 people were foreigners who came from our HQ and most of the other people had a good English speaking ability . At first , it was a little exciting . I tried to listen to them and understand what they explained . These exams will be very difficult for me . Recently , I watched the movie `` A single man `` with Colin Firth as lead actor and the brilliant Julianne Moore . * It 's just because of Tomek Michniewicz 's book `` Samsara `` . But I will write a blog everyday . So he is sleeping beside me at the moment to rest . I appreciate in advanced to people on this site , because I need help with my English writing . Yesterday was Christmas Eve . After this trip , I think I should study English harder all over again . Today I wrote an email to my customer . But my colleague said , `` it is incorrect . `` Originaly I was n't a person who was in charge of anything because I was the youngest of three children in my family . I went to an exhibition about the / our solar system with my BF because BF 's major subject is electronics and his father recommeded it to us . I also played Bloom 3 and Bloom 4 . I went to sell unwanted things to a recycle shop last weekend . Though I 've thought about these words lately , I still do n't knowwhich situations these words are used in by native speakers . I often hear `` definitely `` when I am walking on a street . I remember when I was in high school , I seldom had a feeling that `` I do n't know what I 'm writing about `` but now I do feel unsure sometimes . Because my school is close to my home , I can go home every weekend . My boyfriend asked me to go to his boss 's cottage 2 or 3 weeks ago . His boss , Nancy , and her husband , Steve , are really nice to me . He said , `` I would like to say something . But , I realized what he was trying to say from his serious face and eyes . . . . then * I * was afraid to hear the words . What I said back to him was , `` Thank you , `` and I explained my feelings to him . Very hard week especially at weekends I am a Japanese man living in the Miyagi prefecture . I usually play Metal Gear3 on a Play station3 . So , I will quit the game and start to study English . I do n't like to be in the cold , so I wore a sweater . I think one of the scary parts is there is no vaccine against the new flu yet . I think I can write a dairy or something related . I would like to buy new dictionary , because my digital dictionary is old . Of course , the class is all taught in English . Also , I ` m going to go to a theater in Osaka with my friend . Recently , I have studied English . Your cooperation is appreciated . I have to admit that I 'm in love with Engish as a language and I wish one day that I can speak it fluently like the natives without stammering and pausing in between words . I have a big cozy white bath with different kinds of foams , salts , soaps , gels and many other sweet things that are necessary in the bathroom . I sometimes take a bath and read a book or a magazine . Ruby is developed by Matz , who is Japanese . `` Year 3000 `` is a big - selling song originally made by Busted , which is a British band . Today , I planned for this year what would happen and when I 'm going to take vacations . And , I want to watch a baseball game with Ichiro , who plays for the Seattle Mariners . There 's too many seminars , and I 'm not concentrated . It should be peaceful between countries . After that , We went to the erectronics shop , and played with iPad . All of them are totally different . Adaptable , versatile , industrious . It 's still like new , because I do n't really know a lot of miso menus . But 4 years ago , I went to Okinawa with my family and I tried snorkeling for the first time . My heart was pounding while snorkeling . I do n't know why , but I believe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenery . I can not understand his behavior , either . Korean friend and food I have been to Seoul in Korea once more than ten years ago . Even after the lesson , she used to go straight to his house with him , not back to our house . I was quite sure he always looked down on my plan that I would go to Austraila to master English . I wonder how you guys can stay in such a cruel and hopeless country . Today I am going to the store and shop . Later I am going to eat with friends after that we are going to my friend 's house and we all are going to watch movies and listen to music . ` Let us discover the significance of birth and the joy of living ' Every shake reminds us of the disaster . There is a coin box in the convenience store I work in . Because now that is all I can do . The GM asked me to be his assistant and he told me I could do something in a professional setting in logisitics . Internet calls have many advantages , but lots of things still remain to be fixed . In the beginning , I was just looking for people to talk with in English to improve my conversation abilities . When he was a baby , he had an experience of curing a decayed tooth that was caused by his mother 's milk . I sometimes feel lonely and I feel jealous of his ex - girlfriends . how about doing an internship and studying English in the Philippines ? Salary and supply service is not bad . Fortunately , I have enough time to think and decide . My co - worker had told me about this site and I have registered ! I was not confident I could learn the symbols and I am not sure about studying pronunciation , but after the lesson , I studied a little bit myself and I could hear English sounds more clearly . I 'm disappointed . I followed my husband to a dental clinic in the neighbouring town after work for treatment of his decayed tooth . Sushi is my favourite food . The DVDs I bought were `` No Reservations `` and `` Wanted `` . I like Catherine Zeta - Jones and Angelina Jolie . Problem students Next year , some problem students will be coming to my laboratory . This is a difficult problem in my university . What 's wrong with me ? ! ? ! but I 'm really angry to myself . Maybe we will get stiff muscles after climbingLOL0 There are always many customers on the weekends , _ but that day it was very empty . My friend has got a headache after this travel ! ! ! Especially the grammar , it 's so complicated . In Japan , basically , we do n't kiss in public and also we do n't kiss on the forehead . I saw a car decorated with Red Bull signs . I started to practice the drums 11 years ago . Hello , my friends . First of all , I want to apologize to all my friends at lang - 8 for being absent for this long period due to the requirements in my last year of college . No doubt that I miss you all . I pick up this topic because everybody here is talking about the referendum in sudan these days . To the people who do n't know much about Sudan , it is the biggest country in Africa and located on east side of Africa ; south of Egypt . My country has struggled with political instability and prolonged wars since being liberated from the British 50 years ago . Unfortunately Sudan was born with wars and the most harmful one was in South Sudan . That war is considered the longest war in the history of Africa or modern history . The war continued 50 years after liberation , killed two million Sudanese citizens , and caused four million Sudanese citizens to emigrate due to the paralyzed economy we had during this ugly war . Sudan is a country of different races , languages , and religions , but specific parts in the north are more educated than other parts of Sudan . This is because during British rule the south and west of Sudan were closed areas and the government did n't allow any cultural developmental . So , soon after liberation the Sudanese found themselves with big challenge of how to rule this wide country where the north Sudanese were more educated . The government was ruled by them and other citizens felt like this government does n't represent them . The biggest historical mistake is that this government did not change British policy of closed lands . As result of this huge mistake , the racism grew between Sudanese populations and rapidly the southern Sudanese took up arms to get their rights in Sudan . At that point , no Sudanese , including southern Sudanese , had the idea for a separation . They just wanted their rights in their country as whole Sudan . And , as days go by , and wars burned houses and killed children and women , the idea of separation from Sudan arose . In 2005 , the happiest year of Sudanese history , the government and ( splm ) stopped the war in South Sudan the Nifasha Peace Agreement has born . The government promised a lot political changes : the system became democratic and a successful election also occurred . Southern Sudanese can rule their own lands by the new federal system . In the Nifasha Peace Agreement , the government sponsored the referendum right after six years of the treaty . This period was supposed to be the rehabilitation period of the wars affect on the south . The south took more than 50 percent of the oil to rehabilitate southern Sudan by SPLA . Due to the bad situation in the south and huge corruption , not many changes took place in health and education and most of the money was spent on south Sudanese army . Due to the environment which lacks any trust , now the 6 years is running out fast and the Sudanese face a referendum one month from now . The news is not good about the south , because a lot of politicians see the separation as the start of a new phase of war in Sudan because most of the oil in Sudan lies in the boundaries between south and north . And these boundaries have not been defined yet , so the Sudanese are worried about witnessing another endless war . The situation is very tense and everybody is expecting the worst , but there is hope that the referendum will lead to unity . And if that occurs , it will be the true liberation of Sudan and a promising future . We pray for our children to be raised in a united Sudan without bloodshed . thanks for reading : - ) For that reason , I love fruits such as pears , persimmons , and the like but I rarely eat these . I 'm studying English with a textbook titled ' Common mistakes at IELTS Advanced ' . If the AAMC is going to enter the Philippines ' education and training market , it could be difficult to prepare these environments in order to offer their services to customers , much like Australia . It is essential to collect as many customers as possible to make a business succeed by keeping prices low and hiring local employees . This is my first diary on this website and also the first day of 2009 ! I hope I have the patience and perseverance to keep on writing my diary in Finally , please please feel welcome to correct my mistakes , and thanks a lot for reading my long passage . because I overdid it Because I had to finish my internship . Could you give me some tips about teaching myself to play the drums ? So foreign people can not understand what Japanese people think about . But I was able to study although being pressured . This month I have to do night - shift on Mondays and Wednesdays Basically I work from 15 : 30 to 9 : 00 the next morning . Last Friday and last Saturday , I went to bed but I could n't sleep until 5 : 30 in the morning . . It 's so unhealthy . Unfortunately a lot of people forget about family atmosphere . By the way , I registered for facebook yesterday ! I 'm studying English , but I 'm a beginner . Good things happened I kept calling and calling , trying different country code but just did n't work . ( Murphy did n't give me , so I searched for his company on the website . ) As I was confused and considering what to do next , Mr . The first route from Taipei should be JAL instead of AA . Psychologically watches can be replaced by ' the guy of your dreams ' . Is this sentence grammatically correct ? I ' ve got to fight this evil flab . Tomorrow is ! ! This is my third visit to Beijing , and I feel that it has developed rapidly ! ! Most of Chinese people start to learn English when they are still children including me . I hope nothing else bad happens , and that my friend is going to be okay . When I got off the train to transfer at a certain station , I reached into my pocket to check the time on my phone . That 's my favorite beverage when I went to restaurant or picnic . My head is whining . I think I had better not drink anymore If I they speak English , I can go to Japanese people and buy food or go to Europe and see the difference of how Japanese peoples ' world view and thinking . and when I hang out somewhere , I wish I contrubuted something . There are very few chances to practice . So ashamed ! I have learned English for 5 years . Actually , I 'm afraid of making mistakes . I 'm studying English because I want to change my career . I 'd like to know what does everybody else think about this sudden change ? My teacher is from the Philippines . I 've been very tired and sleepy lately , because I 've had a lot of homework to do . And my friends suggested to watch `` Saw `` . She is very kind to everyone . I also walk around the park every evening . In addition to that , I walk as fast as I can , which means I always try to walk as often as possible instead of using a car or bicycle . Second , I make sure that I eat alot of vegetables at each meal . I also eat a salad , potato , or different fresh vegetable with lunch and dinner . Finally , I always try to ease myself of any stress that I feel . But feeling too much stress can be dangerous , and what more , it can cause diseases . Listening to music , chatting with friends and singing songs are ways that I can quickly and effectively release the stress that I have inside . In conclusion , joggingevery day , eating healthy food and eliminating stress can help me maintain my good health . When I was a child , my mom had sent me to a swimming class once , but I quitted when I learned it in the halfway . It can make your body more healthier , maybe works on your immune system , so you wo n't get sick so easily . But in my country , students do n't really focus on sports , even parents and teachers do not like to force children to take part in any sports games . `` Our university is really closured ! ! ! `` This news spread very quickly . I 'm supposed to work there and I do n't even know how to cook or clean because everything I 've wanted has been given to me from a very early period . Thank you from the mountain . His sister was well known as a slut among us . But they 're already engaged OMG . Kiyota : Oh really ? Even Kiyota had not expected that she said such a pretty rude thing in front of her boyfriend and her older brother 's friend . But sadly making a close friend and a girlfriend is quite difficult in foreign countries because of the language barrier . However this kind of dishonest women can easily get conversation partners by using their bodies . Every Japanese woman in foreign countries has possiblity of being a dishonest woman to study English and settle down there . I play games in my spare time . We just do congratulate each other with comments or very small presents . It was my first time in 2 years , so I was a little bit nervous to play . Later somebody assassinated Eliabeth in Swiss . Soooo nervous The temperature was 21 degrees . Now , I work in sales department which is in charge of overseas market . I saw the Chin gay parade on 12 the of February during the Chinese new year . I 'd been insisting that I wanted to work in Tokyo though it seemed likethere was a slight chance I actually would . Of course it 's definitely the busiest city in Japan and acutually one of the busiest cities in the whole world ! I think I will miss the grocery store I 've been going to , the hair salon where staff is really nice to me , and the karaoke box I 've always been going with my friends . To remember new vocabulary , I would like to read books ! On the other hand , the younger brother was fascinated by the circus . The sentence below is what I will talk about in a interview for a job . and had a lot of chances to talk with foreign people such as Iraq people , Iran people , etc . This is one of the biggest shopping centers in Australia . After working there , I moved to Canberra , the capital of Australia . When I worked there , I found out that Australians like Eastern food . Sushi is originally Japanese food , but amusingly Korean tend to be like Japanese . Please correct my sentences . I bought a fashion magazine recently , and I found a remarkable article . People are always wondering whether the country or the city is the ideal place to live . The foremost reason for dwelling in the countryside is the soothing and comfortable life provided by the pastoral view . Those who have enjoyed the first cock crow in the morning , the twittering of birds in the trees and the breathtaking sight of the rising sun would go into rapture at only the mere mention of the idyllic life . Relaxed and suburban dwellers are able to hold a more positive attitude for life and achieve more accomplishments . Another subtle explanation rests on the fact that country inhabitants are fortunate enough to enjoy the cozy and pleasant ambiance of the family without exhausting their social life . On the contrary , it would be far more difficult to acquire such pleasure for those urbanites . Naturally , it is possibly too reckless to assert that nothing beneficial comes from city life since several accompanying merits also come along with it . Flights do n't move by one person 's contribution . Not only did I see their collaboration , but I also saw the back side of their jobs . Especially the cabin crew Echo ( Haruka Ayase ) . They were so funny . He looked at his feet ; there were tiny animals . He was scared , he ran along the inner way . I like to draw art ! Of course , I know that it is regarded as taboo to talk about religion with strangers like this daily . All in all , Going abroad for study brings us a plenty of wealth indeed . Japanese woman are strong . I 'm not an athlete . I made a proxy server for Chinese people . Furthermore , some adults are there too . But it was a success . Osaka was famous as the most polluted town , but this city has been changing recent years . For instance , disposal of food oil and garbage . It 's near the * * * * * station , across McDonald 's , next to the * * * * rent - a - car office . My Friend 's Birthday Party I would like to point out discrimination against women in broadcasting , which has enormous effects on people 's way of thinking . In Confucian cultures , as well as in many Western cultures , the left side is considered inferior to the right . IU intended to tempt Evian . Now it 's time to prepare for my studies , because next term I have a lot of ability tests to pass , like Japanese ability test 1 . I have already made a plan for myself and I believe that I have the courage to make it come true . and I have a curiosity to meet people through skype today I went to a korean restaurant where there is really delicious seafood Recently I was emotional unstable . I want to have a stronger mind . I have a bad feeling about last night 's dream . It ` s sort of sad , eventhough I don ` t know why ? It was a journal about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! Kan made economic activities worse in Japan because of his inconsistent policy regarding an economic growth strategy and an energy policy . I was supposed to only drink little bit , but of course I drank a lot , until 4 am . I did n't have that much money inside the wallet , so I do n't care about the money so much , but I had put some cards in it . That 's dangerous . After that , an ALT teacher told me that the former sentence was not wrong . Last weekend , I went to a playground and filmed the children . He was a Russian Blue who had beautiful gray hair and blue eyes . Before I met him , I was not interested in living with any animals . I met with my professor This morning I went to Tokyo University and I met with my professor . resemble : The behaviour of her son resembled his grandfather . deceive : You can not deceive me because I saw you walking in the station with your dog . doubt : I doubt that , maybe she forgot about the promise we made . Hello : ) ) ) My name is Nastua . I am a student of L ' viv State College of Light Industry . : ) ) ) I am 16 years old ! ! My future profession is clothing designer . : ) ) I like my future profession . People want to know English because it is a very important language . : ) ) THANK you very much . : ) ) Household chores are terrible , and taking classes is troublesome for me . One reason is that there are not only books but also newspapers and magazines . I think that volunteering does not always make the poor people who are the recipients happy . I was going to a job interview for an internet job that I got on the on web . first , it is far away . If possible would you correct any of my incorrect English ? Two weeks ago our attention was drawn to a LEGO event in Taipei . my wife took part in the event and filled out the form . I shot a video my son 's happy face . I click `` Save Draft `` and I can see a dot circling , but sometimes it never stops and it ca n't save the draft . It was really wonderful so I was moved . I need to finish my assignment or else it 'll ruin my holiday ! I was really impressed with Ginkaku - gi . I want to visit Kyoto again . I am going to Tokyo Disney Resort today . A collision lets you know what issue makes him or her feel upset . Its title is English Grammar in Use . The book is basically made of short stories like a diary . The main character is the author in his adolescence or youth , and the supporting characters are his family and neighbors . The doctor told me the ways on how to treat . I hope the doctor can treat my teeth well this saturday . When I arrived at Osaka , it was raining heavily . It seem very hard to survive in this world without paying money . Actually I am going to take the TOEFL test and am therefore preparing for my further studies in the USA . And I am really looking forward to the day that I get the results and the letter of admission to a good school . Her son is also the same age as us , but we have n't had a chance to get along with him . I was trying to talk to her , but she seemed to refuse answering me . I am so embarrassed . I just rode on a bicycle and had a dangerous experience . Sometimes I think of you . - Family , close friends and living healthy . I learned the cultural differences and how useful English is . But , every year , by the end of summer , I always feel a bit lonely : - ( lol I 'm already a university sophomore , so I have to study harder than ever ( - `` - ) ! I think the best way to overcome the problem is talking with many people who live in other countries in English . They laughed at me of that time , but I could learn . I am sure that I will learn to play flute now . Correct or Incorrect ? Please help me . . The story seemed quite silly and the characters were really stereotypical . This past year ( 2007 ) I stumbled upon the Abridged series . It was a dramaticaly shortened version of Yu Gi Oh , parodying the show 's sillyness and the changes of the American version . Just a few others have done voices for the abridged series . I would like to try and do the Spanish version of the abridged series , with the exception of asking my friends to do some of characters . One funny thing about this whole thing is that I always have a hard time trying to pronounce ABRIDGED ( the meaning of which I did not know before ) . Its really annoying . It 's so pitiful . It was difficult for me to remember the children 's name 's . Weather forecasts give you some information on maple leaves everyday . From more than a thousand years ago , Japanese people have First , I ate some noodles and a pork rice with friends . `` We will execute plans to disable atomic energy plants . `` But he did not tell a specific plan . I just want to read English articles just like reading Chinese . We can see a foreseeable future that the resolution of LCD or TV 's will be progressing with technology 's advancement - - maybe far beyond human eyesight . I watched a debate comepetion tonigt , One of my best friends joined it , and his team won the competition , I am very happy . . . . . . . So , I 'm always very careful when speaking in english . Is it as bad as the expression of raising the middle finger ? ? The toilet , restaurant , and all the other places were very busy . I get mad whenever it occurs and I worry about the malfunction . I went to Tsukiji yesterday . Probably , the dream warned me that I should better take my license out of my bag which I usually do n't bring during weekend . Happy birthday to me . I drank many beer , and I became drunk . Yesterday , I went to a night club in Shibuya that plays hiphop n RnB : > I want there to be a soft bed behind me so I can go to bed and relax . I am used to making coffee every day at 3 : 00P . M . , but when I opened the ice - box , there was no milk inside . Suddenly , I had an idea . I some goingko ( ginko ? ) powder . `` Oh , It 's not bad , but it seems strange . . . . `` then , I make the same for myself . So , I made a plan that I aim to keep to 1000cal ( ? Bad idea ) per day . I 'll experience them , and decide what I should do in the future . Of course , some of us have happy memories and others have sad memories . I am one of the ones who has sad memories . Although I was very sad , I did not cry , because at first I could not process that mother had died and that I was n't going to see her face again . The people who came to console me were very puzzled by my reaction , but they understood it . I could n't wait to be alone with her . Being a little sleepy when times carry you the day after today , smelling a cup of coffee , imagining the thing that you want to write , thinking about your sentences ' sensibility and sensitivity also properity ? in grammatical structures . . . And when I am not able to write what I have imagined , I feel disappointed . That is something like having the same feelings as a director of a movie . However , I want everyone to see the movie in my head while I am designing it but It is n't possible . After maybe a hundred times I am again crumpling a piece of paper . English has plenty of vocabulary ( include slung ) than Japanese . I should have very strong will to improve my English and keep my memories of life in the U . I live near Yokohama . And trying to be as natural as children can enable us to receive as much as they do . Educational opportunities are available to more people too . So it looks like the life of human beings is definitely better and better , as we own the latest technological gadgets in the house , and live with educated people in an intelligent society . I have to study here harder and harder day by day . I think that practicing a language for 15 minutes everyday is enough . I was driving a car near my house which is in a residential area . Then behind me , another car tried to pass my car several times . He was probably in a hurry , but of course passing is prohibited in the area because of the nearby school . But I was a Japanese business man as well . Chloe desperately asked father , but he kept laughing for around 10 minutes . We are going somewhere for the first time . On the other hand , when we return from somewhere , we tend to feel it 's not so far away compared with the first time . I taught English to my junior high school students and I found this in the dictionary . Of course I know the meaning of the word ' walk ' I 'm surprised by her English skills . Because I need you , I just need you . I found that we Chinese students could n't understand our European teacher very well . Our social environment has influenced us so much . I prepared for this test a long time , but still lack confidence . So , I guess the test is like a door in my way , if I do n't pass it , nothing will change or happen . I think I can do it , I believe I can do it , but success is not only composed by just believing . Some people have gotten married already ; others have bought their own house or car . We are living a different life style . But the good thing is that I will see all of my relatives which I normally do n't get to see . For people in Touhoku , which is located in northern Japan , the situation is much more serious . I like sushi , which is a Japanese traditional dish . It is delicious and interesting because you can choose various types of sushi which you like . Except the learning aspect of the internet , I ca n't forget about funnier ones , such as Manga , Anime , drama , films , books , songs , and a lot more . These things not only help me learn the language in certain situations , but it also gives me a lot of pleasure , SO THANK YOU INTERNET xD That is why I write [ in my ] diary when I experienced interesting things or have questions . I think I have to get to bed right away ~ I learned Hangul today by myself . It was very easy lol I learned most of them in a day . This airport was equiped with WI - FI and I had a new smartphone . That means it is necessary for me to learn a new language , Dutch , because it is required . I want to say hello to everybody . but , suddenly , I found I do n't know how to say it . maybe I 'm right . maybe you have another better way to say hello . see you We can work with an enthusiasm or tried mind . I went to a hair salon with my friend after school . Departure date : ddmmyy As a result As a result , I was asked to pay 250 dollars for the Internet fee . I got the result this dinner . Some really want to change their aggressive personality or bad attitude . There are exceptions , of course , but those are few . Recently anime costume parades are very popular especially among geeks and foreign people ; P Several years ago , on Halloween day , many foreign people with costumes got together on the Osaka loop line and stayed there many hours ! It was so fun ! ! but it became a problem and was banned for next year : ( There were many Thai food stalls and , someone who was from Thailand was singing her country 's song . I ate kaomangai ( rice with boiled chickin ) , tomyamkun ( spicy red seafood soup ) , and pattai ( noodles without soup ) . I recommend visiting the artificial lake in the center of the city which is surrounded by a park . There is a commercial zone along the widest street of the city where you can find all kinds of businesses : banks , bars , chemists , cinemas , pet shops , restaurants , fast food restaurants , grocers , travel agencies , supermarkets and others . Consequently , I realized that although cycling outside helped me to improve my fitness , really I enjoyed most breathing fresh air and taking pleasure in the countryside . The best place for young people in our area is without doubt the lake . Luckily , the schools are closed for ten weeks , so the young girls and boys have a lot of time to spend their Leaving my country , Somalia , was very hard for me . But when I was there , I began to make new friends that I never thought I would have , and I never imagined the way that I was going to know them either . At the beginning , I felt very strange talking with them , but now we are very good friends . We went to to Acapulco to play , to an event where universities from Mexico go and present cultural activities . Then we went to Cacahuamilpa to play there . That was an incredible experience that I will never forget . Using public transport can be difficult , because we have a strict time and , normally , we do not have a place to sit and that can be extremely uncomfortable . One argument for not using the car is that petrol is very expensive , but public transport tickets are also increasing , so that advantage is not so good , actually . The story took place in the USA a few years ago when the regression method was accepted by doctors and scientists . But we should n't forget the pollution cause by cars . We should use a bicycle or public transportation more . If we are working with someone in the same job who lives near us or is our neighbour , we can go to work in the same car . This way we use less petrol . The governments are also important for taking care of the environment . In total , there were 32 people , a white kitten and a dog . That night , the dog , the kitten , Tom and Michel slept in the same room , and that was n't too bad . When Michael got up in the morning , he realized that his kittten had disappeared , and he found Tom 's dog with some white hair in his mouth . He thought that the dog had eaten the kitten during the night , so he shouted at Tom , opened the door and went away . For those people who want to start to do the street workout , I advise you to start with basic exercises such as pull ups , push ups , dips and squats . Edison is said to have created the first commercially practical incandescent light . Edison and his research team made his discovery commercially and create a company called " Edison Electric Light Company " . In my bedroom there is a brown bed , a yellow chest of drawers , a little light brown bedside table and a big brown wardrobe . The environment is our surroundings . There is no awareness in our locality . They are busy with their own work . No one focuses on or sees what is happening in our town . They usually speak about how hot it is today , but they do n't know what makes it this hot . I am interested in planting trees and making our surroundings clean . Some people used to burn the forest as if the forest is useless . Man is greedy because all the things we get from the forests are free . Management accounting practice is very important for an organization for making decisions about human resources , sales , marketing and potential customers . To take care of the environment , each of us has to do something such as propaganda to the people in the country . About my village , we use banana leaves instead of nylon , dispose of garbage sensibly ... and so on . Are you studying mathematics for your exam ? I 'm a happy , energetic person who likes to work with children . In my country people make a lot of mistakes and have a lot of bad habits concerning their attitude towards rubbish . They are always throwing their old things and rubbish away in public places . The government also can not do their role towards their people and their bad behaviour . The thing that he ( the monster ) did n't know about was that he had a spectacular infection ( literally spectacular ) that I think had no cure . It was called " The Monsteration Infections " . Scientists were trying to find a cure for the Monsteration Infections , but they still do n't have it . I have needed to use English a lot of times during my professional activities . For that reason I took some English lessons many years ago . I can tell you that I feel I can understand over 90% when I 'm listening and when I 'm reading , but my main problem with English is , of course , when I have to speak . I fee terrible and without confidence . I think that I 'm always thinking in Spanish and then doing the translation into English . Maybe at this moment , while I 'm writing this composition , I 'm making the same mistake . I know that learning English is a long process , but I must follow that process because I 'd like to be an excellent bilingual person . Currently , I 'm working as a teacher at the university and teaching in English is my goal . I also work as a freelance worker with the same subjects because it is necessary to increase my income . I 'm writing now without using a dictionary and doing this composition without translating from Spanish ( I hope hahaha ) I hope you can help me understand more about how to improve my English level and develop my skills . Thank you for your attention , and I 'll wait for your advice , ( this is my first time writing over 50 words ) Nowadays a person 's worth seems to be judged according to social status and material possessions . This mostly happens in high class families , as they focus on achievements like power , political influence etc . On the other hand , for middle class families the old - fashioned values are still important as they are inherited from our ancestors in terms of values like honesty , kindness , loyalty , etc . Public transport has no future . The crisis in 2008 has reduced oil prices , The oil is cheap now and new cars are more efficient and the government give incentives for consumers . I know that I have not written it but I have a brother . I like to speak English at school too , but my friends do n't like it when I speak it in school , so I speak Swedish there . My favourite lessons are the Swedish lessons because I like to write stories . My family lives in a How are you ? I am going to describe myself so you will be able to recognize me when we meet at the train station . If I am right , continue reading this . I applied to a music club in our city and I was really excited when they replied and asked me to help , because I enjoy going to rock concerts and I was truly curious about how the backstage works . What was my job ? See you around This year is my sixteenth birthday and I 'm going to celebrate at home , with my family and some friends . This summer was the best . I went to Cuchilla Alta with my best friends . Their names are : Emilia , Agustina , Micaela and Lucía . I like English because it is very important to know other languages to communicate with other people and if I go to another country it is very important to know English . We got to work at four in the afternoon and it was very relaxing . I had a day off when I spent time at home or going to the gym , where I met handsome guys . You see , man , I do n't like crowded roads , a nd prefer to travel by tram . The development of the railroad and highway are easy to pulished , but the construction of seaports and airports must with congenital condition . I rather enjoy spinning , feeling the rhythm of the music louder and louder . This gives me high energy each time I go spinning . To conclude , in bigger cities like Bern or Zurich there is no doubt that the public transport system would be less inconvenient than travelling by car . First , the bank notes are considered how to design , including background colour , artwork and security issues . Then , they are prepared by skilled machinists . If the sheets are good , those sheets are then cut into separate bank notes and packed into cars in order to be dispatched all over the city . I believe that using your car has a lot of advantages or benefits . It is more comfortable and less expensive . Yoga calms and vitalizes body and mind . And government , please do n't be so flabby with your own citizen . For beginners in this sport I would recommend that a trainer teaches swimming properly because it is very important to pay attention to the position of the arms . May Maybe they are comfortable , terrible , , dangerous or average . Cars and buses become dangerous and cause problems in the street . She turned her head and saw him . " He was following me " , she thought . " Well , I should ask him what he is doing here " . First of all , finishing high school is a rite of passage that indicates the beginning of a new chapter for students . When you are travelling around the world by yourself , you gain a lot of knowledge , culture , discoveries and , with all of this , you gain personal experience . The job provides , like the trip , responsibility and experience . The consequences are n't good as the reasons , for instance , they may have the career prejudicate , or they spend so many years travelling that they are too old to study at a university . Besides that , they have different points of view on many subjects , that is why they may not like the fun and the conversation in the social life with other students . They can not enjoy this chapter with young and fresh thoughts . It is a big decision , that brings great consequences and great experiences . As an example , if a student needs to recuperate a subject or has to get a good mark , they ca n't go to do a sport because there is no time . They would consider you as an independent person . Accordingly , you would take responsibility for what you did . I am overwhelmed with grief , living with them . Eating habits in my country have really changed in the last ten years . it 's r is n't clear completely , but I suppose it depends on changing life habits in the development process of our society . But a good change in our habits is the attention to calories and healthy food , because of getting information on the internet and other media that are easily accessible for all people these days . Peter looked at his watch and knew that he had to do something immediately but he had forgotten what he had to do . After thinking , he remembered that he had to visit his grandmother as she was ill and his mother told him that his grandmother wanted to see her doctor and wanted him to take her in his car as the doctor 's clinic was far away from her house . Peter decided to go and he drove his car to his grandmother 's house in the next street . After he arrived , he saw his grandmother was waiting for him on the street . He apologized to her and asked her to get into the car . " Never mind " she said and got in the car beside him . However , travelling by bus or tram never get away from our daily routine . Travelling by bus is not as convenient as getting in a car , but you can never know what might happen with your car , where it might get stuck in traffic or some other accident might happen . Travel plans need to depend on public transport timetables . Besides , Hong Kong also has many country parks for hiking . Tom is studying in London . Although Canada is an English - speaking country , in Montreal , the official language is French . So I do not have the opportunity to practise English , because most of my colleagues speak French . I was inspired by a true legend . His name is Edan Hazard . That fact behind sense because the maintenance of public transport is not the responsibility of the traveler . If we want to count function of public transport because it 's not enough words to say . But public transport is a much needed service in big cities as well as small villages . I 'm sure you 'll agree that Red Square is the most popular sight in the capital of Russia . I remember two contrasting moments . One day , we had to create a team to do an exercise which used the brain ; they chose me . The reasons for stress are more diverse ; perhaps because we have an exam period , family problems or because we think in a negative way , or we have destroyed ourselves through long hours of working and canceld our needs for enough comfort , and lots of reasons to stress ... We must get rid of the stress quickly before we lose ourselves , because it 's very harmful . For example , you can read a book , do sport , play music , eat delicious food , remember all the positive things that have happened to you , talk with someone who you trust , get rid of everything that makes you upset and makes your life tiring , go out and eat a meal with your best friends , and there are a lot of things you can do ... Remember that stress is not a lasting thing , and you can avoid it . In other words , both bad sheets and the ones which are separated badly need destroying in a safe way which can stop them from getting into the market . Many people believe that nowadays there is no future for public transport , because travelling by car is so much more convenient , but others continue with the thought that they do help , for example , with travelling long distances . The ticket does n't cost too much and it is affordable for the majority of people , at least compared to buying a car . Secondly , public transport is more efficient for travelling long distance than cars and people would n't have to purchase fuel . When people need to travel to other continents or far away , they may need a plane , which is a form of public transport , to complete the journey because they have to cross oceans and complicated distances that have different landforms . However , a car is something which belongs to the person and he can do whatever he wants and find it in the same state he left it in , and sometimes public transport vehicles are n't left in the best way . In addition , you have to share with people you absolutely do n't know and probably wo n't see again . But , by observing all these people , you can enrich yourself with the different cultures and manners the others have and incorporate new topics . That was my first time on holiday in another country that was n't northern Italy . We visited a lot of monuments , museums and churches , like the Louvre with the Mona Lisa by Leonardo Da Vinci . It depends on five main steps , which include design , preparation of metal plates , printing , inspection , packaging and destruction or disposal depending on whether the fourth step is good or bad . Secondly , we need preparation of metal plates that subsidiarize with skilled machinists . If it 's good , they go to packing and distribution , whereas the others should be destroyed as well . In conclusion , the whole process is an unreversed schedule . It cosumemed the power which includes humans and machines . To begin with is design , we have to consider background colour , artwork , and security issues , and then we are supposed to prepare metal plates , using skilled machinists . Secondly , printing -- including sheets of bank notes , are printed ( 50 bank notes per sheet ) . There are some requirements -- colour on both sides , special ink , slightly raised images . Finally , if it is a good sheet , the procedure is packaging and distribution , including cutting into separate bank notes , packing , dispatching . If it is a bad sheet , the procedure is disposal -- bad sheets and bank notes should be securely destroyed . And then he realised it was an enormous lion . But suddenly he heard a noise , it was his mum . " Max where are you ? " she screamed . The lion disappeared in one second , running . Max spent the rest of the day thinking about that lion until he went into his room . " What an amazing day ! " , The most difficult area in English I have trouble with is writing . I have no problems with reading , speaking or listening . As part of my plan to improve my English skills , I decided to search on the internet for any free program which could help me with the plan to improve my English writing . Trieste is a little town situated in the north - east of Italy . So the environmental impact is very attractive . Another problem is that the citizens of Trieste do n't pay attention to the environmental problems of their city . I think it is important that , not only in the family , but also in school , we could raise a new generation sensitive to the ecological problems of the earth . I usually go two days a week but next month I am going to go three or four days a week because I hope to enter a local competition . It turned out that that young boy had a good head for fishing and now they always go fishing together . I like running , riding my bike , playing football , skiing in winter , climbing , etc . I like football because it is a sport that I have played since I was small and I think that it is the most fun and exciting team sport . The amount of garbage is increasing at the same time as the number of humans is increasing . The growth of consumption in developing countries leads to increasing consumption of energy , water and other resources . Nowadays , our local government is making some decisions to improve the situation . There are a lot of citizens movement except official activities . People organise common action for cleaning areas near houses . These activities take place especially in spring and in autumn . Everyone is curious about making bank notes . The bank notes are designed carefully . Workers need to design their background colour and artwork . Then , the notes will be prepared on metal plates . After that , printing . The notes will be printed in colour on both sides with special ink and they will have slightly raised images . Good ones will be packaged and distributed . workers will cut them and deal with them carefully . The rest of them will be disposed of . I think that Cádiz is the perfect place to meet , because Cádiz has coast , sea , and mountains . In Cádiz , in summer , there are a lot of opportunities to work . I hope I will get my order and I hope you will be more on time for the customer order shipping . These people can influence our lives . For example , if you have bad friends you become a bad person and you will have problems in your life . So , your education depends on the people around you . In general , people have the possibility to study in libraries or using computers . Personally , I think studying on a computer is a better choice . We need to do something to save the world ! I think they are our first friends and our first confidants . Think about a family 's routine . The Brazil and Netherlands games were a real test of our health . And I think that it 's not technology that will change , but the people and their characters . Unfortunately , for this generation , there wo n't be real relationships , all relationships will become virtual relationships . According to my experience , if we do n't exaggerate the way we use technology like the internet , phone , satellite . For example , now high - heeled shoes are very trendy but they cost a lot and most women do n't look good in them . Transportation is one of the most essential parts of our day to day life ; whether it is public or private , transport takes the same priority in each person 's life from the very early days . In the age before industrialisation came into existence , people also used various alternatives to travel from one place to another . Then the technology improved gradually towards mechanical engines to make the transport more convenient . Continuing my visit to London , I will visit the largest park in London , Hyde Park , which has a full day of guided outdoor games and activities for the preservation of the park . follow in London I 'll go for a walk to get to Big Ben , which is the most beautiful building in all its splendour , where I will take pictures . Later , I 'll take the London Underground , which is a public fast transit system . I 'll travel on it . My favorite band is " cbjr " ; it 's a Brazilian band . The type of music is rock and rap . Their music is very easy to single . I usually play it with my friends . We won 1st place and got the cup . If anyone intends to play this game , he should practise hard to be able to play it professionally . To sum up , I think it is inevitable . He loved Rose with his entire soul , a soul that he was losing . Suddenly , he took the agreement and signed the piece of paper with his blood . Do you know a new recipe for cooking chicken ? Our town takes care of the environment of our neighbourhood very seriously . Not only the supermarket has these containers . They are also in the schools of the neighbourhood . In my opinion , this gives a good example of the involvement of the local government . The majority of people visiting Katowice are focused on three things : souvenirs , fashion and food . Fortunately , visitors will find all of that in the Tourist Information Office and in shops on the outskirts . So , he is hard - working . He is a lawyer and always helps me with all my professional problems . However , a few years ago , the government has paid more attention to the environment of our country . For example , they did a lot of advertising on television , in newspapers and on the internet to explain that rubbish is not good for our world . In the castle there is the Holy Trinity Chapel . The famous dish of this restaurant is a huge hamburger . So , train is an intermidiate way to travel . I am writing to apply for the job in the USA published in an advertisement last Monday . Additionally , because public transport is expensive and does not have a comprehensive coverage of most cities , private cars are more attractive for most people . Some people say that a trip by car is more convenient than by public transport , but that statement has a lot of issues if we think about the limitations . But public transport has a future for a lot of reasons . First , time . If the place you want to reach is really far , the different types of vehicles of public transport will get you there faster than your car . Also , the complications about the field , like if you want to go from America to Europe , there is no highway that crosses the ocean . You need an airplane and , unless you have one , you will not be able to achieve travel between continents with your car . A different reason is politics , because if you want to go from anywhere in the USA to Alaska , you will not need to pass through Canada . Comfort is a really important reason , because driving for 8 hours is exhausting and it will also be unsafe . Economics is a factor too , because the wear and tear on your car will be more than in normal use and the price of food and extra stops that you will need to do . It will be more expensive than on public transport . In conclusion , for me , it is a lie that public transport has no future . However , they have to make improvements to this , like the use of better types of fuel or energy . One way is using renewable sources of energy , such as solar , haeolic ( wind ) or hydraulic(water),Also , there are biodiesel and gasoline extracted from seaweed . Dear Anne , Thank for your letter asking about my family and my friends . When somebody gets home , he wants only to relax in front of the television . Besides this , TV companies have understood sports provide this relaxing moment , mainly for men . In this view , I think that though there are lots of sports on television , there are not too many , because people have looke for it . When the day came , we performed an amazing choreography and we went back home with 3 gold medals . This American band is known for their lyrics that something different from other bands , something close to an emotional statement . My teacher said that public transport has no future in our society , because travelling by car is so much more convenient . Nevertheless , I disagree with her opinion because if we use public transport we will pollute less . Without travelling , people would be very bored , life would be very monotonous . Nowadays people use cars a lot . In the past , it was n't like that . People did not have cars . They just relied on public transport . There are a few people who use public transport , like students and people who have a low income . In my view , I can say the public transport might be going to e close because nobody is going to beclose He has been done several laws again Spanish citizens . I have been playing this sport since twelve years ago . This sport has taught me to respect others and not to assault them.there is the only reason that makes me choose this sport is that I do n't want to be weak . I would n't like to be nothing in this country that has a rule : the strong dominate the weak . When I step foot in the gym , I forget everything : school , home ... . Therefore , I enjoy it . Humans are looking for power and they apply the law of the jungle , the strongest beat the weakest . What are the criteria of this ranking ? and ... Chemical drugs can help people to heal and recover from diseases , but they have another hidden effect . Therefore , The aforementioned information above shows that our future could be worse than our present . We should live in a stable and peaceful world . Nowadays , people use their cars to travel for work , for holidays ...... but if the petrol were cheaper , they could travel a lot . After the preparing of metal plates by skilled machinists , they take sheets of bank notes . There are three requirements for this : colour on both sides , special ink and images that are slightly raised . It smelled terrific , and tasted so good . It was pancakes and egg with bacon . After that I played with my brothers out in the garden . They usually do n't want to be with me , but today we played all day long . It was such fun and I could n't stop smiling . He told us that he was really embarrassed about what had happened and he apologised for his attitude . It will not be trendy because everybody will have his own car . There are advantages and disadvantages ; television can also cause a dependence , cartoons and " stupid " programs can harm young people most . Today , there are many children that have a dependence on television , they prefer to stay at home to watch the various children 's TV programs , while once our parents preferred hanging out with their friends . Television can be a useful instrument if it is used with caution . Therefore , I recommend using it less to prevent damage to the mind . In order to help reduce pollution , I take action using the three " Rs " : reduce , reuse and recycle , so I am more and more eco - friendly . I reduce the use of unnecesary power at home . In other words , I turn on a light that I need while I use it ; I take cooler showers ; I heat only the necessary rooms . In order to reuse , I convert all things reusable , for example , a plastic bottle as a plant pot ; a glass bottle as a food container . I take my reusable shopping bag and refuse to use a plastic shopping bag if a salesman offers me one . A car is less expensive , more comfortable , faster and safer . For example , travelling by train is cheaper and travelling by plane is faster . On the other hand , it helps to reduce the pollution made by cars , .. The picture illustrate the process of making notes . Then , preparation of the metal plates and skilled machinists are needed . If the printed sheets are good quality , they will be packed and distributed . Some partially damaged sheets will be cut into separate or packed or dispatched . The bad sheets will be disposed on . The destruction will be secure . So it is not always a good thing , unless they are open - minded or have their own methods to punish you in a gentle way that wo n't make you regret telling them your faults or mistakes . I felt that I could lose consciousness . That 's why I removed the bracelet . I am glad to hear from you . I am 24 years old . I am from Lviv Ukraine . My hobbies are football and gym . I am studying environmental science . Now , to answer your question , I have many favourite places near my town because I live in a lovely little town , but there is one place that is special to me : ' A Fervenza do Pedregal ' . ' It is a very quiet place . Because of its location , in the middle of the forest , only a few people know how to get there . It is an incredible forest , the ground is covered in low grass and there is a little river where you can swim . It is the perfect place to have a quiet day . That is all I can tell you about this place . I hope that my answer will help you with your project . What is your last name ? I say to people that want to try this sport that it ' s easy if you love it . If you try this sport in the wrong way you could have health problems . For example , you could have problems with your hands , in your neck and in your legs . Emily knew she would have to come to a decision soon . The problem for Emily was that her boyfriend was as cold as the weather . She thought he was so boring , but she did n't want to be alone . she did n't know how to live on her own and Emily was utterly terrified of being alone . The purpose of this report is to make people more aware of the importance of taking care of the environment in order to eradicate this problem which has serious consequences nowadays . The council is carrying out a project in order to eradicate rubbish from my town . Combating the destruction of the environment , this is a serious problem throughout the world . Nowadays , many trees and grassland areas are damaged in many countries , lots of building are constructed . And people should pay attention to this problem and try to solve it . For instance , people need too many places to build the modern society , so they cut down lots of trees , burning many grassland areas . Another factor is that the animals do not control themselves and eat the plants leading to the destruction of the ecosystem . Although this change makes the life of people efficient , the problem should not be ignored . It would really be helpful if the government made tighter restrictions . In today 's world , there are lots of construction companies and factories are not admission , they are destroying the forest , farmland and wetland , discharging waste water and emitting greenhouse gas . It leads to a serious environmental problem . Taking the train is more cost effective than taking a car to work , as petrol is costly and the new transportation office has reduced the cost of tickets to assist with the daily living expenses we encounter . The other benefit of taking public transport is fewer people are taking cars , reducing the amount of toxic gases released into the environment . Karate is one of the best sports I have ever enjoyed in my life . One of the reasons behind my passion for karate is that it 's a means of taming the mind and the body . I have learned to get control of myself when someone teases me , and to be alert as well . Also , it helps me to always look slim and put me away from the ghost of obesity as well . People who want to start doing karate have to be patient . They should immerse themselves in daily exercise as well as eat healthy meals to keep them active . for instance , it 's advised to eat large amounts of fruits and fresh vegetables because they contain a lot of vitamins that the body needs to work properly . My favorite sports are football , basketball , Formula One and Tennis . For example , in our country , " Shinkansen " which means bullet train , is famous and very fast . " Blue train " , which has many beds on the train and we can sleep comfortably on the train . Second , travelling by train is safe and reasonable compared to planes . Travelling by train is cheep and getting a ticket is easy for us in our country . And terrorism is scarce also . A plane which was travelling from Egypt to Russia was exploded by terrorists last month . What did you do yesterday ? I 'm nineteen years old and from this city but living in a dormitory at Ton Duc Thang university . When I am running , all the pressure I felt is gone . We have Earth first , then people , than our house . Earth is our home , we all have to protect it . But now people are destroying it . Just for money for more houses , but if we destroy it , we will all die . Our money will be gone , our house will be gone , we will have nothing . Besides , some people destroy farmland to build houses , but if one day there is no farmland , then what should we eat ? Nothing at that time . We could n't eat anything!So what should we do ? So my idea is that all the countries and all the people stop using farmland , forests and wetland to build houses , grow more trees , protect our world , our home star ! The lecturer disagrees with the paragraph suggesting that the mentioned test developed by Alan Turing does not answer the main question : Can a computer think ? First , the lecturer talks about " Saran " , who proposed a challenge to prove that Turing 's test was not conclusive , and that he created a paradox . He selected people to go into a Chinese room . There was a computer in the Chinese language with different symbols . The Americans showed different behavior . They did not understand what was on the computer screen . Science , I just remember I have always liked motor racing , but one of my favourites is Formula 1 . The Formula 1 season starts in early spring and ends in late autumn . I try to watch every race every fortnight and the training the day before the race . Ferrari make one of the fastest cars in the world , but this season they are not so fast on the Formula 1 track as they were in the past . If someone likes cars , then they should go to Formula 1 races to hear the bolid engine sound . I think that is the best sound I have ever heard in my life . One day , the son of Lucy and her husband went to carve holes in the dirt to make a game , he made five holes and in the last one he found a brilliant jewel that had belonged to generations of gods . So he started throwing that for fun . One time that he took the jewel , it consumed the mind of the little guy and that made the jewel emit some sounds that only giants could hear , so a mountain stood up that was the face of a giant and he perceived negative vibes , so he killed the guy because he had the most important relic of the gods . I hope you enjoy your trip to Seoul till you left our country . England does n't have anything . You are the worst and most horrible country in the universe . With reference to the recent advertisement about ' USA CAMP SUMMER ' , I would like to express my interest in the position in the camp . I think I am a suitable candidate for this job , because I like children and I have experience of babysitting . Also , I work very well at making food . It was presented by a politician , an economist and two environmentalists . Teens should not drink under the legal drinking age because they could get into trouble with the law , they could cause harm to themselves and others and could have a higher risk of alcohol dependency later in their lives . This is an interesting question because I believe that my family are my best friends , but at the same time , they are not my friends . My family are my best friends because they really take care of me when I need them to . I started this sport when I was 10 years old . where My father was also playing this sport , but he started it when he was older than me . He was about 30 years old . where Squash is one of those games that can be played at any age . I love this game because I find it exercises the whole body at the same time . We run in a small space , moving our hands in stretched and different ways , and at the same time we work our minds , so it needs care and quick thinking , as much any as exercise you will find down the road . I think that anyone who wants to start a doing sport should play squash , which gives a you flexible and healthy body . At the same time , this sport can be played for a long period of time without caring about age . I have practised swimming for 3 years . I am a good swimmer and I have competed in different swimming tournaments . My favorite swimmer is Michael Phelps because he was the best swimmer in the world , and I hope that he returns to the Olympic games in Rio de Janeiro in 2016 . My favorite style is the butterfly and I always practise this style because I want to improve . Although public transport is cheap and more environmentally friendly , it is not as flexible or comfortable as the car . Except for in the big cities , public transport is not an easy way to get around the city . That means that in the future even more people will stop using it . In the first step , the bank notes have to be designed considering some , like background color , artwork and security issues . After the design has been prepared , skilled machinists prepare metal plates in the second step . And then , some sheets and good bank notes from damaged sheets which are cut into individual bank notes and separated into equal ones and packed and despatched to where they are needed . In today 's class , we were discussing whether or not we agree with the often enormous salaries of football players . For me , as a passionate soccer player , it is a good point to consider . I recommend to the clubs , be warned . By this action a Ronaldo or Messie can be paid and it is possible to buy the best team for the league , like Bayern Munich is doing at the moment . This makes football or soccer ever more exclusive to a certain group of fans - hooligans . But if the prices are too high , no one will visit the games anymore . First , I think that this job is perfect for me because I have travelled around the world and I know a lot of different kinds of food . In fact , on my last trip to Japan I learned to cook sushi . One day , Michael wanted to go out , so he called his best friend and suggested going out together . His friend agreed , so Michael put on his clothes , went out and closed the door , but at that moment he knew he had made a mistake . When he got back home , it was late and the meeting was canceled . I know that I am a suitable person for this job , and I can say that nobody is better than me for this incredible job , because I have travelled all over the world and during this experience , I have seen the necessity of work to finance my journey , so then I have dedicated myself to working on summer camps , and I have a lot of experience of this . So , in conclusion , I think that if you contract me , you will get an excellent person and an excellent worker . In my opinion , public transport is more expensive and it is less comfortable than a car , because a car is faster than public transport . Online Learning Positive things about online learning are that you are more mobile with your smartphone and you do n't have to carry so much paper with you . Also , you 're on your own and at your own learning speed , which makes it more specific to the user themself . Maybe you 're more comfortable on your Smartphone than with paper . Negatives about online learning are that you 're not listening to much from a real person and more from a Computer . If pyou do n't have any listening things in the app you do n't learn how to pronounce the words . In my personal opinion , its better to learn from a teacher not only because you learn to pronounce the words correctly , but you also learn from a person , which is , in my opinion , way better . I think we spend enough time on smartphones , so I do n't think it 's the best if we use them to learn as well . For words , I think it 's perfect , but all the grammar and talking , I think you need a teacher . The advertisements are a bit tricky because they know exactly when children watch , for example , after school . Recently , there is a growing country whose environment is destroyed by building houses , which accour for some debate . Apparently , it is a good thing , because it is a significant symbol of the development of a country ; however , on the other hand , doing large - scale building projects may bring a galaxy of problems . In a word , the government should appeal to people in some way , that we should protect the earth rather than only focus on personal profit . It happened to me once and was very uncomfortable . Another very common risk is falling on the court , which can cause dangerous scratches . It is very nice that you remember me . All this started in July . I needed money which I could spend during my study semester . I know that you are like me . Best wishes your bro Bartek ! In later times , society felt the need for change because of iniquities that were committed in the country and the Mexican Revolution explotes , the building was abandoned because the government and country did n't have money for construction , to the point that the building 's metal structure was used for weapons . They even asked me who I wanted to go with . They grabbed my hands , wanted me to go with them , but I had no idea , because I love my mother and my father so much . Finally , I cried , because I could n't make a choice . My father and my mother saw me crying and decided not to keep going , and they said sorry to each other and me . Nowadays , I usually go back to the swimming pool at the weekends . " So many friends learned to swim . Then , the metal plates are prepared by skilled machinists . The next is called partially damaged sheets , and bank notes are separated into good and bad . Good sheets will be cut into separate bank notes and packed ; the bad ones will be destroyed by fire . This is the method of making bank notes , and the operator should pay attention to the printed sheets and how to inspect them . The most important step is the inspection by hand . That is to say , they should be separated into good ones , which are to be cut into bank notes and delivered to the banks , and the bad ones , which ca n't be utilised and are burnt securely in the last stage . Actually , I realize that business is not for the major , everybody knows Tec is very demanding and if you want to be there , you must work hard . I dream of being a Business Administrator when I 'm older . First , I want to work for a sports company like UA and then I may have a little variety on works . Tennis . Tennis is not just a sport anyone can play , but it 's a professional sport and it needs more hard training and more time to be perfect at it . First , why did I choose tennis ? Seriously , in 2003 it was my first time watching the game on TV when I saw Roger Federer play . I think he is the one that made me love this sport , due to his professional movement when playing the ball . From that time , I was interested in this game and watching all the championships , so more time , time and time it is my favourite sport . Aisha is in her thirties . She 's from Morocco , so she has Arabian features . For example , she is n't very tall , around 1,57 metres , she has long dark wavy hair and big black expressive eyes . Moreover , it is more appropriate to start constructing roads which are convenient for the majority . First my favorite sport is football and I like it for many reasons . For example , while you are watching a match , you feel excited and entertained . Besides that , football has the best football player ever , which is Leo Mesy . He 's the best and he 's able to do awesome stuff when he 's playing . The company responsible for rubbish collection collects the garbage , already separated by the families , and afterwards does the recycling . As well as the informative sessions about the environment organized by the Mayor for all of the residents , it also has lots of staff that clean the streets , take care of the city gardens and collect the garbage . My favourite sport is football . I love it so much . When I was young , I used to watch football and my favorite team is Barcelona . I used to play with my friends in the street and we were so happy doing that , and after that , we played on a football pitch like in real football . I love Cristiano Ronaldo so much . He is the best player in the world . A few people have told me that Messi is the best player , but I feel angry when I hear that , because that is not true . So I am looking forward to meeting my favourite player one day . It 's like a dream for me . last night we went to the swimming pool . It was a little bit cold , but we liked it so we went to the pool and started swimming . I know how to swim very well , but she does n't , she has to have a support otherwise she ca n't swim . If you want to visit me , you have to do it in the next month because I have a football tournament , and I must participate . To answer your question , I can not attend the party because I do not like those kinds of parties , but I wish you good luck ! Almos Indeed , all the indicators show that human behavior will not change , at least in the coming decades . The way of living changes every day : if we think about our grandparents ' , but also about our parents ' lives , we notice many differences . Above all , they talked more . We live in the era of telecommunication and no one could live without their mobile phone or their computer . Moreover , also , simple things have changed . For example , the food we eat . Some time ago , everything was natural , healthy ... but now everyone always eats " junk food " and things like that , which are completely unhealthy ! About food , I imagine a future society in which restaurants wo n't exist . People will eat only junk food and food which has been prepared before , food in tins ... so all unhealthy things , which will cause many problems . But phobias are fears which we experience that are life - threatening and they can disrupt everyday life , but people can get over them with the right sort of therapy . So if we want to live a life which is n't controlled by our fears , we must try to be more objective and pay more attention to real dangers . Alison read the note , smiled , and immediately put on her coat . She went to her parents ' house because they sent her an email that said that her father was okay after the operation . tube and train , but is there a future for them or not ? I am going to answer this question by discussing disadvantages and advantages and , finally , I will give my personal opinion . Secondly , public transport is more ecological and less polluting for the environment , because it produces less polluting emissions , and many public vehicles use green energy , such as electricity or gas . In conclusion , from my point of view , public transport is more necessary now than ever before . Cities contain more automobiles and the pollution is worse .We need to change our way of thinking , and try to use public transport as an alternative to improve the environment of our cities . Some buses have special and preferential seats for old people . Many cars pollute the planet and people are allergic to the pollution . The train does n't cause pollution . will be more healthy . I suppose their lifestyle is intolerable , resteless and I really sympathise with them . The majority of outstanding and appreciated people are frustrated . They turn into arrogant and furious idols because of a lack of private life and perpetual attention . That is a pitiless trial for celebrities but , through thick and thin , they go on .They achieve the goals made exceptionally for the sake of money and vanity . In itself , the film did n't have an special topic , but I can describe it as a friends film , as there is a lot of laughs , jokes , and it shows that friendship is the greatest thing that exists . The public transport most used in Toluca is the bus because it is the cheapest , but it is very bad and unsafe . The quality of it is very bad ; the buses are old and obsolete , they have broken windows and old broken seats . The service is very bad . The drivers are very angry and stressed out so they do not drive with caution . In Toluca there are reports of high numbers of accidents involving buses . I think if the government do the best work about the transport , they can save it . It is true a car is more comfortable , but it uses a lot of mineral resources like petrol which can pollute the atmosphere . I do n't think public transport does not have a future . There are a lot of people who can not buy a car and they have to use community transport . The Internet is a useful tool for everyone , so we are communicating with distant friends , and we look for important information when we are studying or entertaining ourselves . First of all , I am going to talk about the advantages and disadvantages of this topic . The first advantage is that the Internet is very fast . For example , when you want information about something . The second advantage is that the Internet by websites , such as Twitter , Facebook ... You can speak with your quick friend , or you can meet with them on the website . Therefore , you do not call them on the telephone , because the internet is very cheap . As for disadvantages , at present , children are always playing with their computer games and mobile phones . To sum up , the Internet is the most important advance in the world , but there are a lot disadvantages and advantages . From my point of view , the Internet is useful for everyone , but we should not abuse it , and should carry out other activities . Recently I have had a job offer from a company located in London and it requires me to have an IELTS score of 6.5 for the visa . In particular , some people do n't have a car and some elderly people find it difficult to drive a car by themselves , so public transport helps them a lot . That is why I think public transport is really important for the public and there are a lot of important things that will be possible in the future . And maybe you will become a famous player or an ordinary player , but you will feel like a famous one . I think the sheep should be transferred to a place where there is specialisation in animals with the same condition . We become not only older , but also wiser . We learn , but the most useful thing to learn is to get a lot of experiences and , for sure , to make mistakes . But we have to be honest with ourselves and admit our mistakes to avoid them in the future . Becsuse it is turning red ! As you know , my grandmother currently lives in France with my cousin John . Unfortunately , he has to do a three - month course outside of the country . John needs to leave France next weekend , but it is not possible . I have to go and look after her because none of my family can spend three months over there . Nowadays , technology is more modern than in the past and people are always developing their inventions to make them more useful . We as humans living in these days , rely on technology . Every aspect of our lives is supported by technology . One example is television . In the past , we used it only for watching the news and movies , but as time goes by and the technology develops , now television has other functions . Second , these days , television has become modern and that means television can be connected with the internet . In conclusion , television can entertain and also educate , because television programs do it in an interesting way . Football is usually a sport that appeals primarily to males , but I 'm a girl and sometimes I realize that I know more than some males . I have received your letter . I agree with the statement that Mark Twain is the greatest American writer . When I read his poem " The Adventures of Tom Sawyer " I was excited . I usually go to the seaside on Sunday morning . Firstly , they design the bank notes ' background colour , its artwork and security issues . Then the sheets of bank notes are printed . Printing colour on both sides and use special ink and the images are slightly raised . Finally , they find good quality sheets and some partially damaged sheets or bad sheets . At the same time , bad sheets and bank notes are securely destroyed . The other reason for my opinion is that almost all people prefer using the eyes and ears to other people , rather than write and listen to understand new things . That 's why I think that it 's a good moment to see things in a new way and that can be a very good opportunity . Definitely , it does not always depend on the kind of programme , but I think that nowadays , a lot of television offers help for people to develop more effectively . I am communicating with you with the purpose of letting you know that we are going to set up a meeting at my office with the purpose of discussing how we could use social media to improve the communication with our suppliers . I think a great time for the meeting would be next Monday at 4:00 p.m The purpose of this letter is to notify you about some complaints that some citizens have . This is related to why only boys have to be in the draft for military service , and girls do not have to . However , I just go to the restaurant on special occasions , such as my birthday or when I pass an exam . First of all , we should think of a design and decide the background colour and artwork , or even security issues . The people recycle the rubbish and they throw away the rubbish in different containers . While I struggled to walk . Finally , I saw a light appear and I woke up . We will have people that use the television as fun , most of the time ; but we also have other people that use television for research . For example , the channel '' Animal Planet '' has a lot of information about animals and how they live . Nowadays , everybody has the ability to buy a television , so the numbers of TV viewers is going up ; even if you are poor or rich ; most can watch a movie , or a documentary . Also , I think swimming can keep your body fit and it can make the swimmer cool down when it is a sunny day . I ca n't pronounce well . The home was on the shore . There was a tunnel and it 's hole was in the deep . At first he used to be polite and obey the other orders . Once a day , he met a girl called Sarah . She was 9 years old . Although Michael was bigger , Sarah could control him . Every day they went to the sea to play and swim until the sun set . Once a day Sarah made a challenge to Michael about who could enter the tunnel from the hole in the sea and get out of the other hole on the shore , but Michael was afraid . He was asking himself which animals could be there or if there was air there , but he had no choice , so he accepted the challenge . Sarah told him she would go first . She took a breath ... a deep one , and started to dive . Our city is quite clean and habitable ; people are more careful than before . Generally , we use a cricket ground which has an oval shape . I tend to ride my bicycle from home to work , I have n't used my car or buses for a long time , because it is not healthy and costs a lot . A bicycle is for me the best way we can be fit and in a good condition and also create less pollution without cars . I switch on the home heating for a temporary period . When I am working from home , I use more energy to warm my home . We learn to really segregate waste and , in the future , how we could , for example , use the same glass a second time . Anyway , a lot of people will need some transport in some cases , not private , but public , and we ca n't say that this kind of transport will not be useful . As we are fully dependant on individual generators , these are causing multiple problems with the weather due to their smoke , oil and gas left behind , in addition to noise , of course , because they are the main source of the 18 continuous hours of noise . People , especially generator owners , have started using Canaopies , using very long pipes to get rid of as much as they can of the pollution . Other residential areas , using their potential to maintain the environment by planting trees , roses , have numerous green spaces . Also , recycling the trushes is a very intelligent way to keep the town clean and get multiple uses out of the products in industry lines . on the other hand , the eldest people in our city have many social responsibilities and are encouraging the youngest people to participate in the annual gardening festival for the indoor and outdoor gardens . I like the Indian restaurants in the city . In addition , the infrastructure and roads are well organised . In the village where I live , there is a lot of vegetation . For that reason , we try to protect the environment . One of the things we do is to do maintenance every week to the vegetation zone , checking if there is any garbage . To avoid this , we teach the younger generation environmentalist actions so they do n't throw cans , paper , or candies on the floor . They can also help the older people . There are cases where a person throws garbage on the street or on the vegetation . To avoid that happening again , we have a punishment that is to pay some money . If they do n't , they wo n't be allowed to enter the village park and zoo again , unless they are visitors . In that case , we tell him or her the way we live in the village and , we give him or her advice to keep a beautiful place without garbage . Another environmentalist action we use is to protect the wildlife by taking care of them . For that we have a care centre and , other additional institutions . We also make environmental protection centers where people can visit and learn about this . To sum up , our village is very focussed on taking care of the natural world that surrounds us . If you want to have fun , you can go to Parque de la Costa . There are many interesting rollercoasters . Nowadays , in school , we learn a lot of subjects which we use more or less in our lives . Some of them are really important , but some of them are just a waste of time . When Freddy began to sing , the kids screamed and they sang with Freddy the famous Freddy Fazbear 's Song . Bonny played the drums and Chica served the pizza to the children , This year the establishment closed because they found the body of a dead child . I think it will be changed to become a bubile city and contain more high buildings . If you have a car , you probably think that travelling by car is better than by bus , but there are a lot of people who do n't have a car , so they are used to going by bus and , for them , this way of travelling has become more convenient , because they have done it since they were children . She has twenty - seven maid of honor dresses . Meanwhile , she falls in love with a boy who is very handsome , but he works for a magazine and he has written about weddings in the city . He is a good writer , and she unknowns that . This story develops a mixture of themes such as courage , family values , friendship and love . In conclusion , if you want to have a good time , you should go to the cinema to see this film with your family , because it is an interesting and emotional film . Transport pollution is one of the most dangerous . On the one hand , that quantity of cars ca n't be forbidden , because it 's a personal right to have one or not . Also , another improving measure might be increasing green areas in cities and towns . Factories damage nearby areas and water extremely badly . In my opinion , firstly , new buildings on the banks must be forbidden at all . But sometimes it can also affect us in a negative way . Most people around the world can see any news live . Media is more helpful for people . Television is also used as a study resource , for example for smart classes , Suddenly , an old carrying a heavy load hit him and fell down . I suggest everybody should have the same evening walk . You just need a pair of comfortable shoes ! Travelling privately makes one free of issues like harassment . I like a lot of activities , such as travelling , reading , playing soccer and watching movies . Besides , public transport will reduce traffic jams . Finally , the kind of life that we will see in fifty years from now will have a lot of stuff to help people to have a more comfortable , easier and faster way of life , but this will be only to make more money and consume more and more . Also , things will be faster of waste to make people change their possessions more often and stimulate consumerism . Nowadays , an increasing number of people are concerned about the phenomenon of farmland , forest and wetland disappearing because of some long - term human activities , for instance housing and transport networks are built , destroying the balance of the environment . Firstly , it is clear that more houses and transport networks are convenient for our people . What is known to us is that the population growth is a big problem which creates a need for more space for living in . And building more transport networks is also a benefit for us , for example , the high - speed rail can shorten the time spent on traveling , while the animals may not welcome it . She was very shy , sensitive and embarrassed . She moved to Kyiv , graduated from university , and started to work . Although she tried to hide , she became a great and famous model . It would be interesting to accompany your best friend or your beloved to enjoy your time . The investigations were concentrated above all on the construction site of Mapello . There are many educational programmes which we can get benefits from . Nowadays , pollution is a problem that we have to solve before it gets worse . As we can see , modernization is causing damage to rivers and seas . While you are with me , you will do curriculum vitae and then we will travel around my country and we will become good workers . I was really comfortable in my bed and I could n't believe that someone had interrupted my calm . I closed the door hoping never to have to open it again , then I went to the bathroom and took a relaxing shower . I practised dance a long time ago , but with age , I 've preferred to practise an easier sport . If I could give advice to new practitioners of Pilates , it would be to read a book about this method and to take time choosing a good teacher . The lack of sleep often makes me unable to concentrate in class . And just as I was becoming a professional football player , my right knee was injured . I like that phrase because the boy was happy because he got to He is , for me and many people , an excellent actor because his personality is extroverted . Thank you very much , Joe , for thinking of me to be your witness . I feel very proud that you thought of me to be your witness and , of course , I accept and I will be in Toronto for your wedding . Tell me what kind of suit the witness has to wear , whether I have to bay any colour of tie , a flower .... I 'm really very excited about your wedding . Your muscles will be hard . One day I visited my friend Jimmy in New York city . He was a young man who was an expert on trains and tourism . He talked about how citizens and commuters move from one place to another . He told me that Grand Central Station was the largest terminus in the city . He showed me where the landmarks of the Big Apple were so sightseers could go there . He showed me the city and we went to different parts . First he took me to Columbus Circle in the south west corner of Central Park where there were the most expensive apartments . Then we went to the lake where the jogging tracks that circle the lake are popular with early - morning visitors . Then we went to the Museum of Natural History that was located near the Metropolitan Museum of Art . Then I got focal on the subway trains , so we went to Grand Central Station . When we arrived , I was amazed to see a lot of people going to work , so he told me that it was convenient for people to use the train because it is very fast and for the government it was a great economic business . Then he told me that one of the characteristics of In this video game , you can kill , jump , dance , and eat all you want . It is a very good game . I think that it is the best " shooter " and that " Arctic Combat " is good too . Today is the big day , the day of his presentation about acid rain and its consequences on the environment . Feel the drama and realism of the best known event in Easter , played for nine years by the inhabitants , " The Passion of Christ " . Discover the main representative museum there , the olive museum , where you are able to look at its history in each of their corners , in addition to tasting its exquisite oil . The first time , it 's difficult , like any other sport , because you do n't know and you have to improve by yourself , but if you like it , you will find it fascinating . It is true that in summer we have to be careful about with te hours are too hot and we should avoid running . I am happy to say that I have only positive points to present due to how welcome I feel when I arrive at the reception . Because of that , sometimes I feel free to ask them what I want and depending on the way they receive my comments I can just let them do the task I asked them without keeping on watching them . I like cooking very much and I think that there are some activities that we could do in the kitchen , like baking cookies or making fresh bread . What I liked most was that you think you know what is going to happen , but to your surprise , it always turns out to be something unexpected . Despite the fact that there is n't any Hollywood star , all the characters are played very believably and some scenes wo n't let you sleep . My favourite place is the beach that is near , just about 20 miles away from my flat . In toward to the modernization of life and technology , people believe in different perspectives of their way of life , but the majority of ones are totally utopian . Actually , we have a lot of problems with traffic : lots of carriages on the railway and they are n't running ; the number of cars in the street causes pollution ; crowded railways cause a late arrival . We discover , in this context , special diseases caused by traffic : stress , violence , pollution , lack of safety , and so on . If public transport were of higher quality , faster and with lower fares , the majority of citizens would prefer it : it is calmer to relax and read a newspaper or a magazine during the journey on mass transport than in individual transport ; moreover , the time spent to go and come back would be reduced , because it promotes fewer carriages on the railway . In the morning , we went to Ocean Park , we saw dolphins , cats , horses and many other animals . In the afternoon , we went on the roller coaster . I screamed at the top of my voice and called for help . Actually , I hate riding on roller coasters . We played mind train , punch , and a lot of other games . At the end of the day I was running out of gas , because I was too tired to walk any further . It has both advantages and disadvantages . But why did I write this article about someone who seems to be a simple guitarist . The reason is just one : the life of this man who one day just disappeared from the fans ' sight . On April 2014 he was unable to give a performance . On September 2014 , a note was released and published on AC / DC 's web page . The note said : " Malcolm is taking a break from the band due to ill health " . We are not alone . We live with people who are family for us . Television and other things invented by technology are part of our lives . I think every family has got a television in their own home and , for example , I have 4 televisions in mine . There are a lot of interesting TV programs where we can learn something and there are also intriguing television programs . It is not the best thing for our eyesight and our health . In general , I think our technology is not the best thing for our health and TV and other similar things are responsible for our problems with health and eyesight . Laura , Adriana and me ( María ) love being a little bit cheeky , in a good way . I remember , because we won . But when I understood how much happiness this game gives me , I started more running and training . not believe in yourself . I would like to inform about correction of my family name in the result sheet . Could you please correct my family name . Sport is very important for our bodies . It has many benefits to improve ourselves and give us self - confidence , so we should practise any sport we love because it can change our minds for the better . About me . I like playing volleyball and I enjoy this sport when I play it because of its being useful for my body . In Poland we have a lot of interesting places to visit . Poland is an amazing and interesting country . If you have working in Poland , the best way is job on holiday . Every month , Huang Ji Huang always have a special offer for their customers , and for this month Huang Ji Huang will give a 20% discount to customers who spend 500 IDR or more , for complete information you can check on the website or call the restaurant . I hope it will help you . Michel arrived home earlier that day , and when he opened his door , he saw That can be annoying . This is good , because sales never went down . I think my town really takes care of the environment , because there are a lot of parks in this town and they are very clean . I think almost everyone loves parks , because a lot of people go to the park and have lunch , picnic , do exercise , nap etc . There are many sports grounds , for example , tennis courts , football pitches and play equipment for children , so I think my town takes care of the environment . That means everyone will be able to the in be best condition in both mind and body a for long time . Generally , sports are growing our minds continuously . My favourite soap opera is " Friends " . I remember watching it at home at the age of twelve and laughing out loud with my brother . My favourite character is Joey , who is a silly , innocent man . One of the main advantages of family is the recognition you are given at a specific age . Children require special attention to grow up well , and that can only be given by family . For instance , homeless children are more likely to fail in their education or job and not adapt to society . Moreover , families play an essential part in protecting their members from bad atmosphere , and it probably reflects on their performance toward country , leading to effective , creative and useful civilians . The last film I watched was " The Others " . It is a horror / suspense movie . I was really scared . and the mother thinks she is lying . But after a while , she believes her and starts searching for the intruders . Another example of why lives are going to change completely in 50 years is because , also , that connection with other cultures makes people more concerned about their own health , their expectations of life and the way they want to live it , because every day it will be easier to see how much we are hurting the earth , so we will see faster the impacts that this has on our lives . The companies who produce products with harmful ingredients are very powerful , so that this suggestion is very hard to enforce . But one day , two guys with quad bikes saw something wrong , and they sad " what 's that ? " . They saw a dead body . They were scared and ran to their camp . The other friends called the police . After two days , the police saw somebody at the crime scene . The policeman asked them what they were doing there . He was scared and puzzled . The policeman was sham feom the gues and he apologised . television serves the dual purposes of entertaining and educating people . In order to cope with the competitive world and get recognized in the corporate world , one must strive hard , which in turn increases their stress levels . Also , I have not had an invitation to an interview yet . The problem is that I am from Poland and I could be in Great Britain from 22 to 25 February . Well , I 'm Sebastian Vega and I 'm studying engineering sustainable development . Nowadays , public transport is hardly necessary to our life . Consequently , gorvernment has started to support and take care of public transport . How can we revive public transport ? They wear black and white clothing like the decoration of the establishment . Luckily the schools are closed for ten weeks , so the young girls and boys have a lot of time to spend their Nowadays , there is very little public transport . The general public prefer much faster and more convenient ways of traveling around . Though public transport is used in major cities to avoid traffic congestion , it is widely recognized that public transport is eco - friendly . Many people say that public transport is not comfortable . That 's true . From my point of view , a bus is not so uncomfortable . Public transport is also used by children like me who want to go to school , high school or to university . Finally , I think public transport has a very good future , because it has very good advantages but also some slight disadvantages . It 's also very useful for some people . In my opinion , public transport should n't disappear . I would feel more energetic throughout the day If I had some busy or tight - scheduled work . I came across your advertisement for this job and I really think that I would suit this job in every respect , because I have a friendly rapport with people around me . I would be pleased to receive your positive reply . Local Parliament haven't regulated principles or rules for the environment , so ecosystems have been destroyed , rivers are contaminated and pollution has increased in my town . The recycling of plastic , paper , cardboard etc , by the population of the biggest neighborhoods in my town is a way to improve the environment . The plot of this film is about a 25-year - old naive woman who was living and studying in Taiwan and one night went out clubbing and met a crazy guy who involved her in a seedy drug smuggling racket with a Korean criminal gang that forced her to be a drugs mule . People are getting used to driving their own cars ; it provides more comfort , and is more practical . The government are opposed to investing in public infrastructure , because the benefits are lower every year . I think public transport is better for the environment because going by public transport reduces the CO2 emissions and removes traffic from the streets . It is a true statement about cars . Travelling by car is so much more convenient and the new technologies apply to the People should eat less fast food and do regular exercise to maintain a healthy lifestyle . For example , India has a high rate of unemployment , hunger , poverty which leads to an immense embarrassment about being Indian . Nowadays , the internet represents the whole of the knowledge that people have collected over the centuries . Nowadays , public transportation is available almost all around the planet . We can admit that the transport revolution has been plave in the last century , but due to globalization and technological development , the transport sector is always in continuous transformation . On the other hand we must mention how the plane sector has been growing . Currently it is the most common mode of transport for going away and that also means that shipping manufacture has decreased deeply , in order to let the plane market boom . Talking about local transport , we have a lot of choices like cars , motorbikes , buses , trains , but also , as we were saying , planes . According to the information donne , the most used mode of transport is the car as most families have one , but public transportation is getting more and more common for those who want to preserve the planet and develop other alternatives more respectful of the planet . In conclusion , we are seeing a new tend in transport . Increasingly , they are faster and more developed , with the latest technology included , but in contrast , we find also a contradiction , as we found another trend for traditional transport which avoids pollution in order to respect the Earth . I agree that commuting by car is easier and faster than most public transportation . However , there are serious problems that come from it . The number of vehicles on the roads keeps increasing and causes congestion and pollution , which are far more severe than the inconvenience caused by public transportation . Thus , I think the future of public transportation will be more prosperous . Later , if you want , we could find a job for three months . In my opinion , a good job for three months could be as a waiter , because waiters get a lot of money in the three months of the summer . I started my hobby when I was a child . Maintaining cars is expensive . He jumped out of bed and had a quick shower . There was no time for breakfast so he decided to buy something to eat near the office . In spite of that , he was dressed on time . According to the results of a questionnaire ( Houston inhabitants ) most of them play basketball to forget homework , problems and to relax in their free time . Furthermore , they give advice to all those novices at basketball " do n't ever lose the passion " , because if they give up , they wo n't play with the biggest players in the world . In conclusion , the real objective of the questionnaire consists of what the people think about the king sport of the United States of America . I love jogging because it 's a way to stay outdoors , immersed in nature . I fell relaxed being alone near mountains and snow . Then there are some requirements for printing sheets : color on both sides , special ink and images slightly raised . The most essential and key process is manual inspection of printed sheets with three categories : good quality sheets , partially damaged sheets and bad sheets . The acceptable and not damaged severely sheets are supposed to be packaged and distributed , which means they will be cut into separate bank notes , packed and then dispatched . He had a lot of animals : two dogs and three puppies , four horses , eight ducks and one cat , Lionel . Lionel was a black and white cat , and he was a very funny , fast and sweet animal . When I was a little girl I used to play volleyball and I really liked that . One day , I had a surprise . I met a teacher and he invited me to train in a huge gym in a team . Suddenly something happened . I needed to work to play my studies in high school , so life changes anyway . I needed to stop my favourite sport , because I needed to study at that time . It was more important to me . Today I do not play volleyball anymore , but I really enjoy dancing . Now I can say that it is my favourite , it is all of . The hugest gap is in 1981 , when the cheapest price was combined with the highest expenditure on cigarette packs in the whole interval . In approximately 1998 we can notice an equilibrium price at $ 2.75 and an equilibrium quantity at 23 billion packs . Firstly , I 'd like to talk about jobs . I think that these are the most important thing to worry about . If our studies get better , we will create more jobs and as a result the economic situation of the country will be better . Moreover , our capacity for learning more languages seems to be really adequate . Unfortunately , while there are a lot of teenagers that are working really hard , there are others that are all the opposite . I think it is probable that in some years the technology could have improved quite a lot , and this is a very powerful advantage for us , the young people . Because we were born in ' the internet generation ' as everyone says , so this aspect might be helpful for us . In conclusion , I 've got to say that now we do n't have to worry about the future , we just have to carry on in the present and do the best we can . The flowchart provides an overview of the steps for making bank notes . It shows how bank notes are manufactured from design to a thing we can use . My height is about 5.2 , my hair color is dark brown , my eye colour is black and I will be wearing jeans and a long shirt . I will be arriving at 20 past 3 . It was slow . This makes the I have to say that studying another language gives you more opportunities , because these days you need to know other languages to find a job and be more intelligent than your colleagues to get the work and that 's great . I have recently bought an electric car as a substitute for my traditional car . Peter looked at his watch and knew that he had to do something immediately . After waiting for an hour , the time came and , bravely , with a high confidence level , he walked into the office . Please , write me a list with the words that I need for technical conversation . When you drive your own transport , a car for example , you go to and from a specific place , but on a bus , you go to the bus stop and not to your house or school , work ... I 'm studying medicine . This major is very challenging although stressful , because the self - study is every day and there is a lot of information . Even though there are lots of different possibilities and scholarships , not everybody can afford them . I am 14 years old . I do n't have a favourite subject , but l like English because we can communicate all over the world . The names of my best friends are Agustina , Emilia and Micaela . We are strange friends . We are in 6º together and that 's when we became friends . I am applying for the vacancy in the summer camp . Morocco is a kingdom , like Spain and England . We have a king and princes . we went to the Trocadero . But the best was the Guards of Bukingham Palace . We travelled to London by plane , but to come back we travelled by car and boat . People contribution is very important in this matter . Firstly , hybrid cars are only allowed to be used during weekends . As a result of this , most people do not use their cars all week . This attitude has reduced the enormous amount of smoke pollution from exhaust pipes . Many factories are following the regulations and not draining the harmful waste into the water . In addition to that , recyclable waste is sold and the money is given to the relevant person . Town council not only encourage people to plant trees or gardens , it subsidises their green improvements . In summary , people take many initiatives and are moving forward to have a safe and attractive environment and surroundings . This is an international sport because in all parts of world there are people that they play it . Football is a famous sport . You can watch it on TV or you can see it live . There are a lot of level categories , the most famous category is the first . People that play in this category are famous although you can see them on TV . If you want to be a big football player , you must practise more time and your life should be healthy . This sport is the best in the world and the most famous and I think that it is the most enjoyed . The graph given shows the seasonal sales of ice - cream from two places at an English seaside resort from 2012 to 2014 . They are , respectively , an ice - cream van and an indoor public swimming pool . In the case of the ice - cream van , it sold most in Jul - Sep each year , nearly reaching 5000 dollars and it was still slightly increasing year by year . In the case of the indoor swimming pool , its sales did n't have large changes , it usually sold about 2000 - 3000 dollars ' worth in each season . It usually sold most in Apr - Jun and Oct - Dec and slid to the bottom in Jul - Sep . Unbearable traffic jams and no parking areas would be the main problems . Finally , governments and society are concerned about the environment and I think that they will decrease levels of pollution and co2 emissions . So , we can say that time is a double - edged sword , either helping you or against you , and the popular saying is right : " do n't put off the work of this day to the next day " because our work will accumulate . Then it will become harder to finish it . To ensure the best use of time in our lives , we need to be punctual . Punctuality avoids tension and trouble . Finally , even scientists have another vision of time . They have discovered that time is the fourth dimension through relativity theory , which exchange all concepts in science . Oh ! My brother , David , is going to get married ! Surprise ! The diagrams below show how bank notes are made through four steps and how bad sheets and notes are disposed of . Thirdly , they print the sheets of bank notes ( 50 banks notes per sheet ) with special ink , where colour is considered on both sides and images will be slightly raised on the bank notes . It is an Egyptian movie starring Khalen Aboelnaga and some young actors . The action of this film takes place in Alexandria , a city in Egypt , and it is about some young people who need a good chance to deliver their voices to people as they do n't have much money to produce their own albums , that sort of band is famous among young people and they call it " underground bands " . Their songs give a big concenet to the political and social situation in Egypt and they became famous after the 25 January Revolution . I choose this movie as it reflects what happens in our society . There is no chance for young people and if they find it , they face a lot of problems to save it and they do n't find time for other activities , and sometimes they work on something which they never learn from or love . In the big cities , they have begun to build green buildings , they use electric public transport in order not to pollute . The day after , we went to a perfumery and I bought a present for my mum . Nowadays , young people are influenced by the western culture , so they are getting more fashion - conscious . Youngsters are interested in wearing different stylish and colorful clothes . They are happy about wearing different color clothes . They do n't want to wear our traditional dress , such as sari , dhoti , choli and many more . They only like to wear shirts , pants , skirts , t - shirts and many more . Youngsters are influenced by watching different programmes on television . Using private vehicles is more convenient for them than using public transport . On the other hand , public transport does n't pollute , but the car pollutes , so , for us , travelling by car is better than travelling by public transport , but for the atmosphere , it is better to travel by public transport than to travel by car . Also , TV , radio , the internet , big companies have advertisements about helping the planet . To turn to , already people cook organic food with more natural products without chemicals . Technology is advancing very fast , in the best way . This is good for us because we will do a lot of things . As a result of that , we will have a better life , more healthy and clean in the coming years . In 1810 , there was a war for independence in Mexico and many people fought with other people . For example , Miguel Hidalgo is considered " The father of independence " and he fought with the Spanish monarchy . I am an Arsenal fc fan . I have been an Arsenal fan since 1999 . Buying cheap footballers has wrecked the Arsenal team several times because of the lack of experience of the cheap players . People from different cultures play in the same club . Not all of Russia is always under snow . I will give you a review of a thriller . The thriller is Hunger Games . It is about some capitals and people are chosen to play in a game . You have to kill people before they kill you . It is a movie that has suspense , because you want to know how they survive . In the movie , someone loves someone and they protect each other . It is really cute , but in the 3 movies there are bad moments with the family , capitals , friends , etc . This sport is an individual sport , so you win alone and do n't beat a team , but if you play tournaments in pairs the one who wins is the team . This sport is very famous all over the world , but in Italy it is n't very famous , because in Italy soccer is more famous than tennis . But I know that a lot of young people play tennis . I hope that Italian tennis players will be very famous all over the world in a few years ' time , then you wo n't wait to sign up to a tennis club and you will become a famous tennis player ! I saw your advertisement in a newspaper . I have also been a member of the association of tourism and ecology since I was 10 years old . I have worked for a few different companies and associations in the past . Usually I was a volunteer , but I was also part of a few European Projects where I was paid for my work . My best leisure time activity would be hanging out with my friends . l like to go to the beach with my friend or alone often . I enjoy watching people and children having fun . l like the cool breeze from the ocean while I 'm walking along the shore and listening to my favorite music . I really think that we should go to that new centre that you wrote about in your last email and do some of the activities . But we could also try the climbing , but it would be better if we could climb outside , in the countryside . Email me soon and let me know how you are getting on next holidays . I think that public transport is much better for the environment than private transport . So I do not agree with this affirmation . In my opinion , travelling by car is much more expensive and harmful to the environment than using public transport . The menu is very well constructed , and the food is based on local products . This problem is that some apparatus are broken and the paint is bad . For me , the solutions to these problems are easy . With the first problem , you should organise the timetable in order to have one class at a time . And the solution to the second problem is that you should do maintenance once a year . I look forward to your positive answer . I am excited about the idea of being with and interviewing other students from different parts of the world . You do n't need a lot of equipment , so you do n't have to buy a lot . I think for people who are fat , they can go jogging , but a little bit slower . Unfortunately , Agatha ca n't find sufficient clues to identify the guilty party . I prefer walking , because the bus , helicopter , and metro are very polluting . The pollution is the first problem with public transport While I was ringing the bell , the neighbour 's dog started to bark . It was like it was waiting for a terrifying event . Nobody opened . When Michael saw me , he opened the door , but straightaway closed the door and at that moment knew he had make a mistake . Saying that , the music that they like is pop music and reggaeton as they can dance together . Also , the television programmes that they watch are reality shows . In addition , regarding clothes , young people wear a dress , skirt or jeans . We were going to Gdańsk to see the new stadium that was built for the UEFA European Championship . In the car park in front of this building a very nice and crazy old man helped us and charged the accumulator in our car . This report shows the sorts of shops which are located in Moral de Calatrava . It is thought that Chinese shops are the cheapest by far . Something more fashionable : there are also a few clothes shop where you can find a lot of by fashionable Italian and Spanish designers . If you need something for a special event like a wedding , you can go to three shops which are specialised in that . Because of different cultural backgrounds , the speaking styles of international students who come from different countries are different . Do you have any different eating customs ? So . I need more information about eating customs in different countries . In Korea , we usually use chopsticks when we eat meals and spoons as well . So , I have to learn to use chopsticks to eat . We think it 's important to respect meal manners . All thanks to new technologies , innovation in the field of medicine and new scientific discoveries . To my mind , our lives have been improved in these years by smartphones , satnav , digital TV , the Internet .. First of all , in the next 50 years people 's lives wo n't resemble at all this . Apart from that , I imagine the world with everything automatic , planes that take me from New York to Dubai in three hours and robots instead of waiters in a restaurant . I can not agree with the statement that there is " no future for public transport " given that the premise is " travelling by car is more convenient " . First of all , public transport is rather more convenient than a private car . Despite this , the restaurant is decorated with a full set of musical instruments , hung up on the walls . On our earth , hundreds of millions of people live . A great number of buildings stand on the land , even though the place probably should belong to animals . However , we forget the one important thing : the earth belongs to all life . Our flats and houses make the other animals lose their homes , and it leads to environmental deterioration . We make the transport easy . However , we take away other animal s ' lives through carelessness . THE REASON WHY I ADMIRE HIM IS BECAUSE HE WAS DETERMINED WHEN HE WON A SCHOLARSHIP TO STUDY MEDICINE IN RUSSIA . HE LIVED THERE FOR 7 YEARS . HE HAD TO LEARN ANOTHER LANGUAGE AND LIVE IN A COUNTRY VERY DIFFERENT TO OURS . NOW , HE IS THE BEST MEDICAL INTERNAL . HE HAS A BEAUTIFUL FAMILY . When he was 21 years old , his father told him something about his family 's secret . Just enjoy your life day by day , and be thankful for an ordinary day . " It is large , clean and comfortable and has air conditioning and internet wifi . It offers many kinds of delicious foods , like meat , chicken , seafood , and if you want something different , you will find it there . It is suitable for my class because it is different from any other restaurant . These days , computers are multifunctional . I am writing to you about the advertisement in the Mirror daily newspaper . I can speak several languages , like Spanish , English and Russian . I am available to start to work immediately . Your faithfully . I recommend this sport to everyone , because it could be , as it is for me , a moment to distract you from the world , a moment to spend without thinking about tomorrow . Secondly , other factors have an impact on the behaviour of older children like teenagers , it is not only their parents but other people , who surround them . It is a time when children must choose which people are good or bad , and which way they will go in a difficult situation . For example , will they drink alcohol or will they have fun without any stimulants ? Working as an ITC is very exciting because you need to program everything , it is like a challenge , although you can do different things . You can be on duty in your house and deal with your boss by cellphone , so do n't be alarmed if your children bother you . It is a little stressful when you have a lot of work . I hope when I have my job I will be in charge of IT department security . I would like to tell you about this experience and how much I enjoyed working in there . I was responsible for selling the movie tickets and having a good time . Michael closed the door and knew at that moment he had made a mistake because he lost his house . He mostly played in the number 10 even though he also played in numbers 80 and 45 . Nowadays our world is fighting every day against different problems . One day there is the problem of violence , one day the atmospheric conditions , or many other problems . But I imagine that in the next years we can begin to spread the use of alternative resources , such as electricity generated by the light of the sun 's rays . Or in addition , we could use the energy generated by the environment , such as the wind or inorganic waste . The movie is about a doll called Annabelle which was kept in a museum in Conecticut where she is visited by a priest who blesses her twice a month . John From finds the perfect gift for his pregnant wife : a beautiful doll dressed in a wedding dress . Unfortunatelly , in a horrible night , the couple 's house is invaded by a Satanist group who attack them and leave just blood behind them . The Satanists invoked an evil entity that is capable of the worst things ... Annabelle . After Mia gives birth to her daughter Lilly , Annabelel wants to kill her . Even the priest doesn ' t know how to help the unhappy familly . Everyone is terrified and finds out that a demon is attached to the doll . The gym has many problems that we are going to describe : The first problem is that we do n't have enough apparatus for all of the students . The second problem is about that some apparatus are not working well because the school hasn't done maintenance a since long time ago . For the first problem , in my opinion , the school should buy some other apparatus , because there are not enough for all of the students , I hope my proposal will be useful to you . I am also committed to preparing monthly reports for the newspaper supplement " The Voice of Women " which is published by the WATC ; the " Women 's Affairs Technical Committee , and I have a collaboration with Environment and Development , a magazine which is published by the Center for development work " Maan " , and other websites and news and media organizations . First of all , at home we recycle plastic , glass , paper and cartons , oils , clothes , batteries , putting organic matter in a special composting bank so that we avoid burning or burying in excess those scraps with other materials , and , finally , all the other things are sent to a special tip so that we avoid dropping them anywhere . Then , when I have time and I see a senior citizen in the street putting their scraps in the wrong bank , I explain to them how they have to recycle and how important it is for our environment that we carefully recycle . This has some advantages , such as it being more comfortable and faster . On the other hand , private transport is damaging for the planet and we must take care of the planet . We can help to prevent the pollution of the environment if we take public transport , which does n't pollute . At the moment , there is more than one car per person . That is a problem for me because people do n't take care the of environment . I am planning to visit his company . Life is unpredictable and unforeseen . But insurance is also a necessity and indispensable for peace of mind . It gives us surety to live life securely . It gives competition to national companies . By virtue of which they work properly mannerly and give better option to policy holders . People can always buy a nominal premium we should inform them about the types of insurance as well as the benefits of insurance . It 's a very moving book , but it is n't difficult . I think it 's for teenagers , but it is also good for adults . All over the world , people always need advice to keep looking after their environments . First , the municipal should do workshops in schools and universities providing students with tips that should help us to make our environment clean . Second , they should run awareness campaigns about the environment ; for example , telling people to put their rubbish in waste paper baskets , which helps workers to recycle it easily . Finally , to stay healthy , we need a healthy environment . suddenly , a krav maga class started in a gym close to my house . Diabetes is an increase of glucose in the blood , There are two types , first Diabetes Type 1 which is present in children , the patient needs insulin every day . Also , this diabetes is caused by the destruction of the insulin released by the person 's immune system . Diabetes Type 2 is present in adults ; the insulin is generated but it does not work in the body , so the amounts of glucose are stored in the body . So it is necessary to eat vegetables and fruit and also to do exercise . At the weekend he usually plays football or basketball and this year he is learning how to rock climb . After the exams finished , I went home and had nothing to do , so I thought that I needed to watch my dramas because it was a week since I had watched them due to the exam week . I was so angry , because I was finishing the puzzle and five pieces were missing . So I began to search the whole house for the five pieces but did n't find them . It was destroyed by a volcanic eruption in 75 BC . Vesuvius - this is the volcano 's name - covered it with a lot of ash so that walls , houses , food , clothes , bodies of citizens were preserved as they were . In addition , it is possible to book special tours in which there are guides dressed like pompei 's citizens . There is a unique atmosphere ! So , I think the government should have to draw up a proposal to solve the problems between the use for urban areas and countryside . Hi ! My name is Cátia and I am a student of electrical engineering . I am in the third year at university , I do n't know what the Master 's will be that I am going to do , but I want a Master 's related to programming . I want to write a review of my book about Nigeria and read another book about robots and their mechanisms . In the first place , I think that you must look on the internet . You will see different cities of this country and you can choose the best . In my opinion , you must go to Madrid or Barcelona because they are the most attractive . Peter looked at his watch and knew that he had to do something immediately . He had forgotten to go to his English classes . But he did not realise something . His little brother was watching him through the window . I think that public transport is always going to be very important in our life , because not all people have the possibility to buy a car , and because public transport is less expensive than a car . So for that reason , public transport in the future could exist , because public transport is a necessity all over the world , not only because of money , but also for the facility to take a bus or any other public transport . I do n't know is n't an answer . After an hour , the dog was vaccinated and taken home , but his mother needed a bottle of milk . First , I want to introduce myself . I am a young woman with a melancholy character . I love writing but I am not confident about my grammar . I have no idea after this sentence . Therefore , public transportation is the future and more and more people will be using the metro , public buses etc . Working in your own company is very challenging because you deal with a lot of areas , manage all departments and learn about business , management , economics , sales , engineering , technical support and other skills . You are responsible for your workers and customer satisfaction . However , it is very satisfying to see how your own company is growing and your customers returning because they loved your work . I started to play it when I was twelve years old and these days I still love this sport . At some point , you wish it was all an illusion . You need a time machine that makes it possible to go back in time to when you could see the purity of life .. I have personally picked up information I would not have come across otherwise . For example , I have been able to learn that the new BMW seven series , has ambient lighting , it can pull in and out of the garage at the touch of a button , it 's computerised system can read different road surfaces and adapt it s driving . Those are the main reasons that could make public transport disappear . Firstly , it is a good idea for young children to do physical activity . That is the first step to doing exercise , then competing in sports will encourage competitors to make an extra effort . In addition , stress is a clear disadvantage of competing , because competitors are trying to win and this can frustrates . Finally , I think that competing in sports has some benefits and disadvantages , but when it is controlled there are some benefits that help you in your whole life . Second is to prepare metal plates using qualified machinists . If the sheet is good or partially damaged , it can be packed and delivered by vehicles after being cut into separate notes . I advise people to start this sport , because it is complete and makes your mind and body feel very good . When I was fourteen years old , I won a championship because , in that period , I swam as a competitive athlete . It was a real satisfaction and I was happy . Michael is a 22-year - old man , he has studied for a degree in electrical engineering and now he wants to put his knowledge into practice . He went to buy a newspaper to search for a job . He looked at all the advertisements but he never found the one he needed . In contrast , you could suffer some nasty cuts or , though , be sunburnt . I used to live in assistent house . It was the first place where I lived in Tijuana , then I moved to an apartment with two friends . The garbage truck picks up paper once a week , plastic two times per month and undifferentiated three times a week for all people who live in my country . It is true that there are a lot of users that want to use a car and that number is growing . There are also a lot of people that do n't have the possibility to have a car and some use public transportation for many reasons , like the price , because it is easier to get to the place by public transportation rather than a car , or because of the traffic . Sometimes it is so exhausting for people to drive for many hours and even sometimes public transportation is faster . Secondly , there is a programme with the water company to cut down on the use of water by 50% using a recycling water treatment and recirculating to the house without dumping the waste and so saving our planet . I strongly believe that grammar is not the most important element for speaking English . If you know grammar , you only know certain rules for writing , but I think that speaking is more important than writing , because when you go to any place in the world , you have to be prepared to talk and understand whatever they say to you . In this part you may notice that if you do n't know vocabulary , you wo n't understand anything . But here is another topic . Whether you understand or not , you have to notice the way that people talk to you , and try to understand what the person is trying to say . I enjoy this because I like it . I see myself as a perfect candidate for this position . I live in one of the most beautiful countries - Ukraine . When I was at school my friends and I attended junior swimming school . My friend and I always had ice cream and fun after training . Nowadays , the option of broadening the mind while traveling is very common . Apart from that , you see new places and you have fun . You also learn about other cultures , historical facts , you also learn to respect other people and their customs . In addition , you do n't think about your problems and the only thing that you do is have fun and do what you want to do . Besides , you see new worlds and their ways of life and that helps to open your mind , to see the world in another way . In conclusion , I think that it is the best way to open your mind . Not the only way , but yes , the best way . I would like to recommend friends to visit Italy . So if you want to visit any country , I 'm going to recommend Italy . This affirmation : travelling by car is so much more convenient , says everything . For example , if we think of the time we spend on waiting for a bus to arrive at our destination , and the traffic is one of a lot of things that makes everyone prefer to buy a car . It is more practical and faster . Do n't forget the cost . When my sisters are married they have one or two children at most . I think the Egyptian family has become smaller with the passage of time . Finally , the consequence of cocaine is death . If you inhale cocaine all the time or a lot , you will die prematurely . We enjoyed swimming in the sea , sunbathing , having a barbecue and seeing the sunset . Young people want to find a good job here , but they are working in MacDonald 's or Burger King for a low salary . Television plays an essential part in our life ; we turn it on nearly every day , since it can make life more interesting . There are two points to prove it . For one , a show broadcast on television may enlighten us and give us some enlightenment . From : horses , steam vehicle , first petrol and gas car to future cars when the fuel will be electricity . My hobby But now I really enjoyed it , and my best friend bought me a ticket to a theatre to see the musical show , which was amazing . For s couple of hours , I did n't move . It was a brilliant present . In 1994 , The Scream , one of the most expensive paintings in the world , was stolen from the National Gallery of Oslo ( Norway ) . When he stole the painting he wrote a note saying : " thank you for your good security " and when he was arrested he declare that it was very easy to steal the painting . There are mainly 4 steps : design , preparation , printing and inspecting . This essay will explain these different steps . Firstly , personnel design the background colour , the artwork and the security features on the bank notes , which is also done in process of other card , such , such as notes for supermarkets . After sheets of bank notes are printed , there are differences and specials for it , it uses special ink , and prints colors on both sides , and images are slightly raised . Finally , inspectors at the bank manually check all printing sheets and divide them into three categories : " bad sheets " are sent for disposal , where things are securely destroyed ; " Good quality sheets " will go for packaging and distribution , where sheets are cut , packed and dispatched . However , sheets that are " partially damaged " will be inspected again and separated into good and bad sheets and sent for further actions . I 'd like to write on this subject because it 's a very important topic . I enjoy it when I watch it on TV or when I attend it in the stadium & support my team with my flag & cheers . I advise anyone who dreams of being a member of the most famous teams to work on himself a lot and play football a lot to be professional in this sport and show a lot of matches & followed by captain supervised on him When you have the desire to do something , something you always dreamt of achieving , something touches you inside not only when you do it , but also when you think about it . First , this kind of advertisement should be forbidden on account of the fact that young children are still very vulnerable . Kids around these ages ( 2 to 5 years old ) do not have a mature critical sense and anything can easily persuade them . In conclusion , I am strongly in favour of this statement . Advertisements for young kids , not only upto 5 but upto 8 years old should be forbidden because of the kid 's vulnerability and the risk to their parents ' relationships with them . I am writing in response to your advertisement which I saw in " The Daily Magazine " last week . I am a twenty - year - old student currently studying to be a chef . If you need any further information , please do not hesitate in contact me . Nemo 's father knew a fish called Doris that wanted to helped him . They cross all the ocean to go to Nemo 's location to save him , while Nemo tries to survive in a dentist 's house . In the following paragraphs , I am going to analyze these issues in a detailed way to provide a solution . I like volleyball because it is part of my life and of the life of my mother . It is my favorite sport , but I like other sports too , same I do n't play volleyball because I 'm bad , and my friends that I know , do n't like people who are bad at volei . But today , things are changing and technology plays a significant role in our lives . The automobile industry increased its vertical and having a car has become a necessity rather than a luxury . These days a lot of children wish to be professional players and they practise this sport all the time and everywhere to improve their technique . The diagram shows the development from 1998 to 2014 . At Easter time , the important thing is to consecrate Christian tradition . In contrast , the pagan spring festival does n't focus on consecration but rather on celebration . Not all people can afford to make journeys by car . A car is easy and cozy also , but public transport is fair and is very affordable for all classes of people . Public transport mainly means public bus . People used to travel long distances by public bus . It is possible to carry large numbers of people to different places by bus . Although I knew that there was some conflict between England and Scotland , the vote really shocked me . I have been travelling with both for years , and I reckon everyone ends up needing public transport one day or another . My favourite sport is soccer , because it is the most popular sport in the world . But every time , I get trouble . The husband of Grace is called Charles . Her sons have a problem which means that they ca n't look at natural light , and one day , Grace got up because her children were shouting and crying . So she went to their bedroom and the curtains were not there . So she went to the other room and the curtains also were not there . So she starts getting more and more nervous . She goes and talks to the servants , and she gets very angry and she tells them to get out of her house and they do not care so she picks up a gun and the old lady returns her keys . MOTASSEM is nice and a lovely fiance . He loves his job as he is patient when doing his job . he is a hard worker and he has an amazing laugh . Nowadays , the number of endangered species has increased . But a lot of people say that a zoo can protect endangered species from illegal poachers . To sum up , there are a lot of clearly strong arguments against keeping animals in zoos . In my opinion , people should build some kinds of wildlife parks . This solution will allow It 's a really expensive solution , but we must do that for The charts below give information about the most important reasons for studying among students of different age groups and the amount of support they received from employers . The first chart is the reasons for studying according to age of student . For career has 80% ; under 26 years old students selected it . For the over 49 years olds , only 20% of people selected it ; but if you compare this with interest , it is totally different ; under 26 years old have only 10% ; but over 49 years olds have 70% . The other chart is about employer support . Under 26 years old is the highest because it is almost 70% , the second highest is aged 26 - 29 years old ; it has 50% ; the lowerst is 35% and the age of the group is 30 - 39 years old . You can visit the old city and see old buildings and the castle , you can see the beautiful view from bridges over the water . is n't good for students . First of all , by getting students out of the classroom , students take a break from the school routine . Furthermore , going on field trips gives students a chance to try things for themselves . In addition , field trips are an important part of our school activities . Unfortunately , I saw you last many days ago . My flatmate is my best friend today . Susan told me that you need to know a couple of things before your visit to Spain . At that moment , he knew his decision was going to affect his whole life . When he was escaping from the prison , he bumped into an old friend callled Charlie . Why do I enjoy my favourite sport ? I love it when the temperature is a little bit cold , but not too much . But there 's a difference between eating a good meal , and eating by the way . They were talking about their lives and he remembered how he met her on the bus . Maybe she had always been the woman of his life . He looked at her eyes and smile he wanted to ask her whether if it was not too late to start to get to know her . But he decided to leave the pub . He walked to the exit . All in all , I still had a memorable vacation . In addition , there is a small blackboard for my little brother because my mother wants my brother to learn Arabic and English letters . My country is a very interesting place . We have a lot of ancient and mystical places . I think you could n't work in my country , because it 's illegal for foreigners . The town hall put containers for trash in the streets and the workers from the town hall clean the streets . To begin with , nowadays more and more people prefer travelling by car rather than by bus or train . In the end , I want to tell you that we are not robots . Everyone deserves what they want . I like public transport and I love my planet . I think the best method for reducing pollution announced the way they take care of the town . My apartment is very beautiful . It has some disadvantages like , it hasn't a private parking lot . Finally , my apartment is very beautiful , and it has a lot more advantages than its disadvantages . There are various kinds of different things that happen in people 's lives , some may be normal and nothing special , while others may be so meaningful and unforgettable that you will remember them for a long time . Eventually , I was third in the contest . The most important thing is that you can learn a valuable lesson from failure . Resolve/ determine / insistence I like how the players move around the court and how the audience applauds them every time they win a point . Although I 'm not on the court , I can feel the feeling of the game . It 's really awesome . Once in a while , I enjoy watching tennis when there is a competition or tournament , besides watching and enjoying it , I can also learn how real the game is , what its rules were or what happens when they yell at the umpire for no reason . You can learn all these details and wait for a future day to put them into practice , or helping the players is one of the things that I want to make real . Public transportation is excellent ; you save money , take care of the environment and make friends . On the other hand , she has never been a talkative girl , so it 's usually me who is always talking a lot . It is convenient to travel by private car everyone can afford it , so that everyone has a private car nowadays . Some people suggest private cars are going to replace public transport . For these reasons , it is unlikely there is no future for public transport . Alison felt desperate . She noticed that her husband 's car keys were in her house , so he was walking or someone had picked him up . She picked up the phone and she called all his group of friends . Nobody knew anything and now they were scared . My favorite sport is football . In my opinion , if you want to start to do this sport you could write a team . Moreover , I think that it is good because it could help you to lose weight . On one hand , public transport is good because it does n't pollute so much and you can move around the whole city . We do n't use so much petrol as if each passenger were to use their own private transport . In conclusion , public transport is very good and if it disappears it will be a big problem . It is true that sometimes you need private transport , but apart from that , public transport is used a lot by people of all ages . I 'm a committed , responsible , and organized person . First I would like to introduce myself . My name is Joaquín Gutiérrez and I want to tell you why my favourite sport is football , which is a sport that I have practiced since I was six years old . I like this sport very much because it must be played with a group of people and is more fun than other sports which you play alone with one other opponent , like tennis . Currently , I play in the first division of the club River PLate from Argentina . In my opinion , people will travel by public transport more frequently , because this type of transport is less expensive , more reliable and even more environmentally friendly than travelling by car . My trust in future technology is so enormous that I hope there will be new environmentally friendly and cheaper ways to travel around our world . At 2 p.m. my mum decided to go to the hospital because I could n't understand anything and I could n't talk . We do not respect traffic rules and drive only with the intention of going as fast as possible to our destination . This often causes traffic accidents and congestion . For this reason , people are becoming aware of the terrible problem and are learning and teaching vial culture to new generations . In addition , public institutions are promoting this and also private companies create advertising to increase awareness . This is due to the fact that Lima , in the beginning , did not have a plan to design its public roads and highways , and it has only been improvising to build them without any criteria to transport its population . I usually take public transport to go to the University , because public transport is cheaper than a car . ( 5 ) establish a mechanism in collaboratively exploring and developing resources in the East China Sea . As he got closer , he saw a lot of people around the Kabaa . My favourite sport is badminton and I always get up early to play it every day . I like it because it is the best way to lose weight and improve your health ; better than medicine . The purpose of this proposal is to provide details about shopping facilities in my hometown , Vung Tau , and give some recommendations for tourists . They offer a wide range of choices , from souvenir items such as pictures and jewellery to local specialities , at a reasonable price to suit the interests of different people . I assure you that there should be high - quality and varied products there satisfying your needs . I highly recommend local shops to our tourists for their cheap prices and the hospitable manners of residents here . My hobbies are meeting Friends and hanging out with them or playing basketball in my spare time . People do n't use the five seats of the car to travel . From the point of view of the environment , this is a bad idea , because it uses a lot of gas per person . A new problem is in the small towns , because they are not designed to accommodate a lot of cars . I think that the main problem with public transport is the communications between villages and small towns , because they only exists between the big cities . It is a problem of mentality . If we had been born into a society that used public transport , I think that would be better and we would use it normally . There are so many educational programs , like Animal Planet , and so many others . Sometimes , some TV shows are so great that they help you in certain classes , for example , Animal Planet can help you in biology . The History Channel can help in history , etc ... In my opinion , television can be as good as books , and can also be a form of learning as good as only reading books , because TV is something fun , so you can learn and have fun at the same time . I am writing in response to your advertisment for SUMMER CAMPS . I worked as an assistant chef in a Lagunak Restaurant last summer . I worked in another restaurant in London , but I would like to look after children , because I have studied to be a teacher . Yours faithfully . Here in Brazil , it is very difficult care about it because it demands serious action and skills from our government , which unfortunately wo n't happen soon . And why am I talking about it ? I am talking about it because the foundation of environmental protection is our mindset . Just with knowledge and information , we will be able to manage actions to save , protect and improve the environment , and instead we have the current result . This aphorism is famous and true . People try to build big and luxurious houses but they forgot about the main thing . We can choose expensive things for the interior , n the town , he tries to make people aware of the situation and they take care of the environment . In my opinion , we should be conscientious and stop it . If we do n't stop it , after , it will be too late . The best present that I have received was ... I do n't remember ! Another thing , in my home there are some rules : my brother and I tidy our room , we clean the bathroom after we use it , we ca n't eat on the sofa .. . Let us examine the advantages and disadvantages Nowadays , people have a stressful life , so we ca n't spend time waiting for public transport . The Scorch Trials is one of the best films and thrillers that I have ever seen . It is so exciting to see all the thing that they do to survive in the outside world with all those people that are infected with a virus and the reason why they put them in the glade for them to be immune if some sick person bites them . I think I am the right person for this job because I have a lot of motivation and a good level of English . Firstly , Django Unchained reminds us of the hard life suffered by black people in the past through a great introduction without dialogues , where black people were unchained while they came back to be sold to an owner farm . This was matched with an amazing soundtrack as identity Tarantino 's films . In my opinion , volleyball must then be considered among high - risk sports according to the frequency and gravity of our surgical findings . My advice for someone who is starting this sport is that you will be refreshed after you play this game and it makes you do your work in a relaxed way . It is upstream that irrigates our economic life , and there is no doubt that negligence has the ability to destroy many good aspects of our lives , and our government is doing its best to put an end to negligence , but we also must cooperate to save our town . On the one hand , we must Presentation an awareness program for all people , There is no future for public transport , because travelling by car is so much more convenient . I do not agree with this statement because in big cities there are a lot of cars . If all the people in a city use their own car at the same time , there will be a huge traffic jam , so travelling by car is n't much more convenient in this situation . My email address is xxxxxxxx . As a result , I think that I have some talent for swimming . From then on , I felt my disease decrease and feel relax . I am prepared for long working hours . That 's no problem for me , because I am young and I like working and spending time with people . Although some people prefer individual games , I prefer team games . They must know , people will notice them , walking along the street . I would like to tell you that I have done a course on which I learnt to organise all kinds of activities for children , from canoeing to swimming competitions . Also , I worked in a summer camp last year , where I could put all the things that I had learnt into practise and it was a very pleasant experience which I would like to have again . I look forward to hearing from you as soon as possible . In my opinion , music like this should be played more often on the radio and other mass media . I play football for Waitakere college school first eleven as a defender and I enjoy playing in that position because it is easy for me to play . When we arrived there in July last summer , the owners welcomed us with a magnificent basket of fresh fruits in the room and a variety of drinks in the fridge , all included in the room 's fee . There is perhaps nothing more pleasant than when your favourite sport is as healthy as it is enjoyable . A lot of children usually do n't know how to study English , and you could help them to get there . The other team was professional , they had won many competitions , they were really good , but Tom and I knew that we could win . I 'm the right person for the job because I 'm reliable and experienced . Sport is an important thing for all of us because it helps us avoid disease and become healthier . My favourite sport is swimming , so practising this kind of sport is the best because it helps me feel fresh and relaxed . Moreover , daily exercise is a very good idea which helps us to avoid becoming overweight and to keep our body healthier . So I always want to advise people to practise this sport or other knids of sports to avoid diseases . Dear Sir or Madam , Called in a malicious way , there are 6 floors for jewellery , clothes , accessories , gadgets , books etc . Being in the centre of Bucharest , you can go outside , in the downtown area to consider visiting new cultural things while shopping in boutiques and relaxing on a terrace with a cool lemonade . Although using your own car is better for moving around the city , public transport has been shown to be a good option for travelling long distances at a low cost and , depending on its quality , also low budget . Your health needs calm , friendship , happiness ... You must keep in contact with your friends and spend time with yourself ( do not forget your hobbies and learn new things ) and your family . It follows that , on the one hand , I have extensive knowledge of how to be on good terms with different people and , on the other hand , I have a perfect command of English . In addition , as I have been determined to build my career as a teacher since my childhood and , moreover , I definitely have a way with children of any age , after graduation I gained experience at university and in a local school . I feel these skills would allow me to perform effectively in this position . A wise man in the past said once , " If you want to be a good badminton player you need the nerves of a climber , the strength of a shot putter , the condition of a marathon runner and the elegance and cleverness of a fencer . " It 's exhausting and you have to move fast to get every shuttlecock . You have to be competitive ! My coach was very nice and mostly we played in teams . I had a lot of fun at the summer sports camps and I made a lot of friends . Invite your friends from school or work . Practice together with people of your age . It is a lot of fun and you will get better soon . Every lost game gives me more motivation to practice harder and every won game makes me proud and happy about all the hard work that I have done in the last few months . Particularly in Barcelona , the trouble was that they could fish in the sea but there was n't an appropriate place to keep the fish , so they could n't eat it one or two days later . You start living on your own , make your own decisions and plan your future . The year off gives them opportunities to get a job . You can get to know other countries and new individuals . If you have any questions , please do n't hesitate to contact me . I am writing this letter in response to the job advertisement for working in a summer camp in which I am quite interested . Since many European tourists like to have their holidays on the beach enjoying the sunshine and also discovering the historical remains from the past , Antalya ( Turkey ) is the best city to work in . Finally , I personally disagree with cyberschool . Cyberschool are n't interested in health and safety issues ! In fact , it can help them to speak with their friends more easily . In conclusion , so family and friends are very necessary in your life . I remember that you are fascinated by nature , so you could go to Guembe to eat delicious typical food . You will see an amazing view and a lot of kinds of tiny butterfly , there are amount of variety . When it 's cold , I always go to a covered swimming pool , and when the weather is warm or hot and the sun is shining , I always go to a reservoir . In present - day society , sustainable development is of paramount importance as our environment is being destroyed at a fast rate . It is definitely not environmentally friendly . And last but not the least , public transport is much safer than private transport , because it transports many more people , and so , there is more caution . Film stars and politicians are interesting to people because of their talents and special abilities . On the one hand , famous people try to hide their lives from journalists . In everyday life , the internet has become one of the most important things and it is becoming more and more influential . So , I enjoy running alone or with friends , because this sport has a lot of possibilities , more than I thought when I started to run after finishing High School . This has resulted in only very needy people using public transport , and the vast majority of people still use their personal automobile , with inconveniences and safety being the excuse . In the past , I tried to play basketball , tennis , ping pong and so on , but the outcome made me depressed and less confident . The first point which I would like to mention is cost . That could be frustrating , especially when you have a long journey and you need to spend long hours driving . Finally , the word convenient means something different for everyone . For one person it would be option that you have a car which is parked along your road or on your driveway and at any time you can go wherever you want , for the other , it would be a pleasure that they could enjoy the trip without thinking about any car issues . They are faitfull that they could meet some new people and take part in others ' lives . But there are some disadvantages , like stairs because we are on the second floor . We would like to keep fit but we have to use too many stairs to reach our classroom and that 's so annoying sometimes . Travelling could be a good way to improve your language and to get to know Italy better . Maybe you 'll choose to attend university in one of these cities ! It is a tourist country , you could work as a waiter in my city . As it is a movie related to magic tricks , when a sequence is played and it seems simple and easily understandable , you know that , in fact , it is not . Long after that , because I had such a natural talent at engineering , I began to write books and essays about everything related to my job . By February we 'll have finished our exams and we 'll have more free time . Birdwatching really relaxes me and brings me closer to nature . Do n't you know what to say in the presence of a huge audience ? The new activity which I have thought could be organised and could have success is called " The Club of discussion " . In addition , it could be interesting , although you do n't have to do physical activity , because your ability to edit a speech , support an idea , have connected speech will be improved by this kind of activity . In conclusion , making a speech contributes to our social relationships and it allows us to define our personality . We found very cosy and traditional houses , the market was very popular , with a lot of people walking around , and the people were very nice to us . For this reason , when a woman and her family decided to live a whole month without plastic they had to change their lifestyle . So they would help to solve a bit the problem for the UK 's recycling system . Such us yoghurts , biscuits , etc , was wrapped in plastic . However , I also think that it 's important to be conscious of environmental concerns , so some ideas like this could be good to reduce rubbish . If someone asks me what is the most important thing to start playing ( or even following ) this terrific sport , I 'd say it 's passion for wearing your club 's jersey and respect for your adversaries . For years of wars and difficult situations , history was creating people 's beliefs and convictions . Conclusions and recommendations I really like reading many kinds of books , magazines , etc . When the weather is bad , I love sitting in my favorite armchair , near the fire place and reading . I enjoy hearing the rain while I am reading at home . However , I like walking very much , too . I prefer comedy and romance , but I like thrillers and drama too . Finally , I enjoy taking care of my garden , where there are many flowerbeds with a lot of different kinds of flowers . We like the sea very much , so we looked to rent a little cottage in August in a lovely place in Sardinia . I was looking forward to going to the beach and swimming in that wonderful water . By recycling , by trying to reduce the traffic , walking and cycling . That also improves our health and fitness . People of all ages must help to clean up the city and protect the wildlife . At school , children are taught about how to make appropriate use of electricity . There also a lot of plans for the future , to start using electric cars . I 'm Catholic and I play the guitar in the Church choir . Each year , in the summer holiday , I 've worked in the " Summer camp " organised in our neighbourhood , both helping in the kitchens and organising sports and various activities for children between 6 and 13 years old . The perfect atmosphere for me is a modern building that has different rooms with different styles : modern , classical , gothic , etc . However , not all is OK . A trip to Italy is so expensive and many classmates ca n't afford it . At that moment , the phone started to ring , I pick it up ... but no one answered me when I asked ' Who is that ? ' . I liked this shopping centre because it has a lot of women 's shops inside , the facilities are quite attractive and very up - to - date , the green zones are broad and it is supplied with a lot of wooden benches . It brings you directly to my suburb . Using this transport I will go to New Zealand then Australia and other countries . Travelling by car is much more convenient , as many people say , but public transport is much better for the environment . In my opinion , it is one of the healthiest sports there are because you can train not only your body but you can also develop your breathing . I think it is a really good idea to use stem cells in order to save other people 's lives , even if they come from an aborted foetus . There are a lot of people in this world that are ill and need stem cells in their healing process , so parents that had an aborted foetus should let the scientists and the doctors use the stem cells in their research and help other people . How are you doing ? I remember you wanted me to tell you about my experience with helping at a concert I went to last month . After some time , I felt sad , because I realised that I would n't be able to see the band playing on the stage , because I had to stay in front of the entrance . We took some photos and got autographs . great starter and when you finish it , they bring you the barbecued meat . Then the main course is the barbecued meat that is very tender and tasty . But , considering the increase in private vehicles in our crowded overpopulated world , it is recommended by geologists and ecologists that we use public transportation . The family might exist on paper , but not in reality , because each member of the family will be busy and they will just send some messages from the high - technology phones they 'll have at that time . I know , it sounds boring and pessimistic , but if we do n't change our minds immediately , the future is going to be like that , for sure . Developed countries , Latin America and East Asia are the three regions that show a low percentage of illiterate people , expressed as below 20% , whereas Sub - Saharan Africa , Arab States and South Asia have over 30% of people who do not know to how read and write . There are also places where people can buy the typical clothes ; dark dresses for women or a ' tango hat ' for men . Even if you just want to go shopping for clothes , there are so many places you can go . Palermo is known as a little New York for the designers and well - known brands , and technology is located in Recoleta . During this day , the students had the opportunity to hear very interesting things , but not in the same way as if they were in a class during a traditional frontal lesson . I worked at a nursery school in London last summer , which led to the improvement of my English skills . On the other hand , you have the public service called Metrobus , and in this case you will hop off the bus a few times . When you arrive you must find the A - line , go to the Patriotismo station ( C line ) , then go to the delta station and walk to # 76 Acrone Street . If I were you , I would choose the subway because the weather in Mexico is too hot , so , I think you do n't want to feel the sun after your tiring trip . In the last ten years , Brazil has created a wide range of governmental programmes . Educational and medical assistance , as well as iinfrastructure improvements are some of the recent advancements . It offers students a unique opportunity to study abroad and acquiring an international standard qualification . I found your advertisement in the newspaper and I am very interested in working in your summer camps . Suddenly , a tumbledown cottage emerged from the darkness . Well , since my childhood I have always loved weapons . My father gave me my first rifle when I was 7 , but it was n't until I was 15 that I found my real passion , and it was archery . Since that day I am proud to say that I am an archer , and that archery is my favorite sport . After more than seven hundred years , in 1733 , the Roman Catholic bishop 's residence was moved from Cenad to Timisoara , where the first cathedral became the church of Jesuit monks . Journalists and paparazzi constantly follow them and try to catch them in a stupid situation and enhance the the value of them . Everybody makes mistakes , but their mistakes are written about and known by society , which is unfair and harmful . They ought to appreciate what they have and stop complaining about their life , because there are plenty of people , who dream of being them . Famous people have to notice how much they have , appreciate it and stop complaining about not having a private life , because it is not such a disaster as they often think . It was reported that for one hundred kilometers , each car consumed ten to thirteen liters of gasoline , and released a certain proportion of air pollution . can also satisfy passengers who can not travel by plane and need to take long - distance journeys . To summarize , he arranged a meeting with the head of Ferrari and the press because he would like to announce his definitive Furthermore , as the programme is endorsed by the European Union , the trainee has accident and liability insurance . It was a good experience . The hotel had every comfort you can imagine : a restaurant , a spa , a gym , indoor and outdoor swimming pools , a beauty center and a church . Efficient sweat expeller socks help one reduce discomfort and keep one 's feet at a nice temperature . Players must be considered as a painter working on a piece of art . It 's not the effort they have applied or all the hopes they had . Their expectations will be considered useless . People do n't stare at a painting in a museum thinking how hard the artist tried to do a good job , they will judge only it . So , if someone is ever wondering to whether start playing this sport , they should be aware that lots of people will be expecting them to win . There is a great number of politicians and film stars who are followed by paparazzi who are trying to find out more about their private life . There are a lot of places where you could work for a short period of time . Being a waitress or something like that is well paid and not so difficult to do . I have numerous reasons why I choose this sport as my favorite . THE STRENGTH OF SPECIAL EFFECTS Taking into consideration our interest in the field of thrillers , under no circumstances should we miss it ! I like to read too . My favorite type of book is horse books or just random books . It 's hard to explain , but I mean books with everyday action not science - fiction or romance . Parkour is a discipline in which the main purpose is to train your body and mind to be able to pass through a point A to point B , in any kind of environment , the safest and fastest way , without causing any harm to your body . Parkour was developed in Lisses , France , around the 1980 's . One of the foundations used to develop Parkour was the Natural Method , created by Georges Hébert . Basically , the method is based on developing the main foundations of movement of the human body . These are : swim , run , walk , jump , quadruped movement , climb , lift things , balance and defend yourself . Raimond Belle was a former Vietnam soldier and worked as a fireman in the French army . The roots of Parkour were developed by him and he taught some Parkour techniques to the firemen who he used to work with . His son , David Belle , was taught some of the foundations of Parkour too . Some people say that David created Parkour but , in fact , his father developed all the ideas of the discipline . Parkour is n't just a physical discipline , there is also the philosophical part . Altruism , " be strong to be useful " ( it is actually a phrase from the Natural Method ) , develop your body and mind so that , in a dangerous situation , you will be able to save yourself and other people , and so on . Therefore , it is due to its philosophy and the joy that I feel before , during and after a training session , that Parkour is my favorite sport . For me , people have become very lazy and they prefer the car rather than public transport , because you can take the car when you want and go where you want without spending hours waiting for the bus . The product will be registered with the Ministry of Health and Sri Lanka Standards Association and adhere to their rules and regulations for production , storage and distribution . Their opinions varied a bit here . An argument some used was : ' In case we removed this whole industry , then there would be a humongous group of people unemployed , and that would be a problem . ' Finally , the Metropolitan Museum of Art is a good place for people who like history , anthropology and seeing a lot of types of art . I agree with the statement , that famous people deserve to have a private life without journalists following them all the time . Sometimes it happens that journalists write some silly gossip about famous people which is not true . Although it does n't mean that the press should write about your private life . And , as a drawback of being a celebrity , they are followed by paparazzi almost everywhere . Besides , being followed by unknown people must be quite a scary experience . My listening is good and I can understand . I look forward to hearing from you very soon . If you have any questions , you can mail or contact me . First of all , travelling by car is more expensive than travelling by public transport ; cars have to pay for gas , insurance , repairs , environment fees etc ; travelling by public transport is more ecological and cheaper . She knew that he would be staying away for so long but she would wait . She loved him and no World War was able to separate them , because she was pregnant and this baby was coming . It was a boy and his name was going to be Taylor , just like Jason 's father . Although most tourists come to Pamplona for the famous festival of " Bulls Running on the street " , many become passionate about the cuisine of Navarra . As a result , a few shops such as " LA VINOTECA " and " DELICIUS " are dedicated to selling selected top wines and typical food . There is little doubt that they will not only find original products , but will also enrich their minds . On the other hand , they are still normal people , who have families , partners and friends and they sometimes want to have a few private minutes , without cameras , media , newspapers , flashes and spotlights . What is more , I am sure that most of them do it on purpose because their main aim is fame . I 'm available every afternoon from 5 to 8 p.m. , when it is morning in the USA . Of course , some famous people might like this feeling that they are so liked and favourite and those who do n't like it have the possibility to protect their privacy better or more or pretend that journalists following them do n't exist . Nowadays , people care more about themselves and doing good things is wrong for some of them ! I am really happy you wrote to me for some advice and I am very honoured that you want to spend some time in my country . First , you have to decide if you want to visit the north or the south part of Italy , because if you do a full immersion tour of the entire Peninsula you will visit only half of all you have to visit . If you like Egyptian history , you can go to Turin , where you can find a huge and beautiful museum of Ancient Egypt . If you want to visit the south part of Italy , you must start your trip from Florence , the birthplace of the culture . Then you must go down to Rome , the capital city of my country . After you have seen the Coliseum , the basilica of S.Peter and the Trevi fountain , and so on , you must visit Naples . The idea of finding a job that lasts three months is great . I think you could work as an entertainer in some tourist villages around the country . In that way , you could improve your way to make a relationship with people and it could also be a great help for your theatrical experience . I know that you are a brilliant photographer and that you want to improve your ability , so I think that you could take some photos during your trip and then you could send them to some experts . Let me know if you enjoy your tour and take lots of photos ( I want to see them soon ) I 'm writing to reply to one of your advertisements published in the local newspaper last week . I 'm 31 years old , and I have had the privilege of working as a teacher all my life , so I am an experienced person capable of taking care of children . As well as taking part in activities relating to cooking . At night , the noise was annoying . I was not able to rest properly . Also , the phone did not work properly , it was impossible to use it to call the receptionist . In addition , the elevator was out of order . My favorite restaurant is a restaurant in Stockholm at Östermalm called : " New Peeking " . It 's an Asian buffet and they make the best food . My favorite subject in school is probably Swedish , English or Biology . I think that , in particular , spinning is a hard sports activity because when you have spent approximately 1 hour on your bike you 'll probably feel tired . This could be good , although some people say we do n't need all this time and we have to work more . Another point is that we can meet friends more or visit our family if we have more free time and that is always good . In other words , it could be said that if we had more free time , our lives would become better , because we can enjoy ourselves with friends and do things with our family . From my point of view , having free time is perfect , because we can do more things that we are fond of and our quality of life would increase . I study philology . Now I am working as a journalist at National Radio . But instead I am writing about stupid decorations , illnesses and other boring stuff . Well , I have good news for you ! I met a wonderful girl last week when I went to the cinema . I want to introduce her asap ! Besides brilliant actors , they have incredible decor and it 's perfectly situated as it is very near to the bus stop . Since graduating from University of Education majoring in business English , I have been working for a food joint stock company on a contract basis . Meeting new people and setting up new social relationships are also the tempting point attracting me . In addition , your cafe is conveniently located near my home , which takes about 10 minutes to go to on foot and I have 2 days off a week . That gives me the opportunity to take on a new job . I enjoyed this unforgettable trip to the museum , and hope you can take time out to go one day ! It requires a vivid imagination to try to put a view of the future . First of all , the means of transport will change . Vehicles will depend mainly on solar energy or nuclear energy . A flying public transport bus will be a fast ride to work . You will need to supply your car with spinach after they invent a spinach - fuelled car . I think that 's the only negative point about today 's television , because maybe there 's too much choice ! When we were schoolgirls , we used to spend all our free time together . To find out about other cultures and get new knowledge completely different from school . On the other hand , maybe if we have a break before university , the routine of working and studying every day could break . So when university starts , people will become busy , the routine will not be the same , and , as a consequence , the marks will be lower . At first , I did n't believe that this place would be as amazing as she said . It has almost everything that you need in a cafe : comfortable chairs and sofas , beautiful features and really good - tasting coffee that they serve in most of twenty different ways and with all toppings you can think of . Although the most important thing is that there were not only friendly staff but they looked like they were having tea in Wonderland , with Alice and the White Rabbit . If TV programmes are a lot of rubish , it is because some people prefer them . I had a great time with my friends , but I have a few comments concerning the organisation . However , there are a couple of small suggestions . First of all , the venue itself was very crowded and parking almost impossible to find . I would like to suggest hiring special animators who will entertain kids . You should think about reducing prices or offering special discounts , for example , for students . Yours faithfully There , you will see beautiful cities with European architecture and you will find nice vineyards . Chinese , Spanish and Portuguese . None of those languages are as popular as English is . Brazilians need to learn English because it opens doors in business and in higher education . Learning English as a foreign language will have a huge impact on Brazilians ' professional lives , helping them to get a better position . The Brazilian educational system should be aware to develop students ' language skills more . Learning English as a second language will help Brazilians to get a better job and have more opportunities in their careers . I love outdoor activities . I have been doing rock climbing for nine years now , and started motocross in 2010 . Also , I consider myself very friendly with children and teenagers . When I was a child , my father and I used to go camping almost every other weekend . That was until four years ago , because he is no longer able to stay out of the city . But he taught me all that I need to know to survive out there , so , I really know how to do things in the woods . Third , public transportation sucks , when you think about it . You can picture the crowded subways , dirty buses , and the difficulty / hassles of the public transportation transfers in your mind . Secondly , everybody seeks safety in their lives . Look around you , crimes and death are surrounding us . All these people are dreaming of living a peaceful life without all the problems of killing and sadness . For that reason , I believe that being safe is absolutely better than being sorry . I will always remember my dad telling me to calm down , saying that life will go on and one day all of us will be satisfied with this life . In conclusion , I think that all of us should see through rose -tinted glasses and be happy , because you live a calm life without anything making you sorry . I will start by telling you something about Paula Echevarria . She is a very pretty and famous actress . She also writes a fashion blog . She is 34 years old and she is married to David Bustamente , who is a popular and handsome singer in Spain . They have a daughter - her name is Daniela - and they are like a perfect family . Therefore , she has everything good about being a celebrity , but the most important is that she is a great person . By increasing the variety of cars with new technology , people 's demand hasn't ' stopped . As technology enhances the life system in any way possible , people become more dependent and ca n't avoid it because of many different attractions that these cars have . Traffic jams will cost a lot , causing problems such as pollution , which certainly causes more health problems and will create expenses not only for us , but for others as well . The solution is public transport again , which increases the pace of life and makes it easy to access by subways and special roads . To sum up , as thought cars are too convenient to some extent , but the cost will reduce the benefits . I am writing in response to your advertisement for the job in the USA summer camps . This job would give me the opportunity to practise my skills and get more experience with children as well . The plot is about a man , Arthur , twenty - five years old , who is engaged to a nice girl . The company requested him to go back three days later , so he was looking for a hotel that someone had recommended him . It is universally accepted that shopping is not always enjoyable . The doorbell rang insistently . It was Saturday in the early morning and I was still in bed . What an amazing surprise ! I was very emotional and was about to cry . " In answer to your question about the use of the internet by young people of our age , I think it is very helpful to get information more easily and quickly . Also , it plays a great role in removing the borders between nations . In a matter of seconds we can now communicate with people around the world , whether for important business matters or just to talk to a friend . Obviously , we can not imagine how much time we spend online , because the whole day we are connected , in our houses , on mobile phones and on computers at work . They have to realise that if they continue eating that way and not doing any exercise they are more likely to have different diseases . When the light sensor is in the shade , the synthesizer emits a lower pitch , and when the sensor is exposed to light , the synthesizer 's pitch rises . I had to work as a liaison with clients as well as the company officials ( since Shriram Law Consultants is a part of the Shriram Group of Companies ) . She explains that in the process of purification , a large amount of coal and oil is burned , which pollutes factories rather than the environment . He was the pastor of a Baptist Church and he fought against the discrimination against black people in the United States in the 60s . He founded the civil rights movement to free black people from racial segregation and inequality . One of his most famous speeches was " I have a dream " , where he described equality in society between white and black people , where all people can live together . He was murdered in 1968 , in Memphis . He was 39 years old . In the city there are a lot of museums and art galleries , theaters and clubs , a few parks which provide different events like open - air concerts or public muster - classes . Write soon Let us look at an example of a university student . The student had a great number of assignments and projects , so he spent more time on accessing the library , becoming more ambitious to study books , and using a computer to search the for latest information . Therefore , not only did he get high scores in the reports , having absorbed a great deal of knowledge at the library , but he reduced the study stress and kept healthy at the gym . At university , I also have a lot of assignments , so I like to go to the library to study , where it is more quiet , spacious and internet accessible . It is a great life stage , but at the same time , it is difficult . Sometimes teenagers have problems with their families , with themselves . As a result , they do n't know what to choose . Twenty years ago , no one would have thought of the invention of the iPad or smartphones and how they could change our lives , but today , these items have become necessities of our daily lives . Nowadays , many people have got into the habit of carrying their smartphones no matter where they go . To begin with , I am a fluent speaker of English . I worked in numerous camps last summer . As a result , I could be very helpful with organising sports and activities , but I could also provide assistance in other places , including the kitchen . The crucial point is the transformations and experienced contradictions of the characters . In our imperialist and capitalist world , we need more films or artistic influences which mention the problems of our life and realities . There are such interesting websites and blogs where you can find out something very useful that you would never have expected or , unsurprisingly , misinformation . We know that making social contact can sometimes be a problem for a wide range of people , who sometimes find it a lonely and daunting experience . However , both readers and writers do not only do it in an altruistic and philanthropic way , but to get fame and popularity at the same time . Blogs and websites could give them the chance to become famous if they really appeal to a large number of people and they will also be able to earn money thanks to advertising . To clarify what the situation is , it is true that not everybody may be interested in blogs or websites , but the fact is writing or reading a blog can give people a practical way to communicate and share preferences , beliefs or thoughts . however , more or less reliable . Peter looked at his watch and knew that he had to do something immediately . Jon did n't usually go to the countryside , so he did not know how to walk over the stones and he was afraid . After drinking water from the bottle , he fell over on the grass and Peter saw that Jon 's leg was broken . There was a lot of blood and it was then that Peter looked at his watch and knew that he had to do something immediately . I like that book so much because it is pretty realistic and it could happen in the real world sometime . There you can see dinosaurs from prehistoric times . It can be amazing to see different species of animals which are no longer living . By visiting museums we can learn interesting details about the history and culture of that society . In addition to having lots of information , we also can have fun seeing interesting things in the museums , such as huge dinosaurs . You may feel incomplete if you do not visit the museum of the new place you visit . Every day in my town , people talk only about football because it can give you a lot of emotions . On the other hand , my advice that I would give to someone who is starting this kind of sport is that he must do it with a lot of responsibility and sacrifice if he wants to become another Maradona . In the morning , everyone goes to their job by car , but I think that the real reason for doing this is that we need to do a lot of things during the day and with public transport we spend more time than doing the same with our own vehicle . For example , during a football match , if you make a mistake it is n't too important because you have a team which can remedy it , even if you do nothing . The most interesting is the art gallery , Oko Miasta , which is located in the city centre . What 's more , in the middle of the building , there is a small library where people usually buy the latest books and papers . Furthermore , in the building of the art gallery there is a club Oko . Not only is it the popular place among young Polish citizens , but it is also really extraordinary : people can walk the red carpet and drink the most famous drinks . Grass hockey is a popular sport played by people of all ages and it 's played more in countries like Britain , Argentina or Germany , than in Spain or Italy . In my opinion , grass hockey is the best sport you can play as it requires you to be really focused on hitting the ball correctly . Firstly , Disney is not an ordinary destination like beaches or mountains , it is a place that requires a different means of transport since it is a long way away . The vacation starts when the plane takes off and nerves and happiness blend , creating an experience you will never forget . When the plane arrives at the airport in Miami , you can appreciate the beautiful view that this place offers . Each one has a different topic and amazing rides perfect for adolescents . To conclude , Disney has so many facilities that it is impossible to get bored , you can relax in your hotel and have an unforgettable time on the roller - coasters . He is a soldier in the military in Thun , where he works as a teacher . Then Robert smiled and giving his hand towards hers , said : ' I have missed you a lot ' . In addition , farmers , huntsmen , fishermen and any other people that are used to living in such areas have to move to cities and try to find new jobs . Meanwhile , wild animals which have forests and wetlands as their habitats will lose their homes and find it difficult to survive in jungles of concrete . Endangered animals will be harder to find after the destruction of their homelands . Also , there will be no fresh grass and grains for domestic animals , such as cows , lambs , chickens to be fed . To reduce the above problems , it is necessary for governments to plan carefully before the construction of buildings and transport and try their best to decrease the side effects . In my opinion , there are a few advantages of shopping . Another good point of shopping is the fact that it could be relaxing for some people . Everyone considered him a crazy and boring guy obsessed by his passion , except Kate , his only best friend , who encouraged him every time he wanted to give up his dream . They wanted something that could be traditional and revolutionary at the same time , something that could give a new vision of reality , and Kate started to offer some information about many artists . She started to be a little bit nervous , she was n't able to find any solution when , suddenly , she remembered that Michael 's art had the features requested by her clients . Michael was very excited because he finally had the opportunity to introduce his view of art through his pictures . After lots of meetings and conferences with the representation of China , Japan , the USA and Oceania , Michael began to be the man who he had dreamed of being since he was a child . Kate was really angry and she ordered him to leave her room immediately . The personal space in their life should be larger than in a movie star 's , but they should make their decisions transparent for most of the population though . It is their job to make decisions that ensure the benefit of the people in their country , but we do n't need to know anything else about them , after they come home to spend some time with their families . He was a very big menace and the villagers hated him because of his mischievous behavior . This film was about how a previous robbery which had been committed by Vin 's gang leads to the hatred of a criminal played by Jason Statham . As I see it , there are several ways to improve , it because we are trying to invent a lot of things every day . You may not think , it but when you are just thinking , you may have the chance to invent something new and useful for humanity . Using new vehicles , travelling can be more comfortable and easier .Everyone in this world would have a better life . I am really happy when I simply see a new bus with air conditioning or anything which can make travelling enjoyable . Artificial intelligence is one of the best ways , we can switch drivers to these vehicles . We can also help by paying for our tickets . Yes , this is simple , but these companies need money to improve their businesses . The Number of the Beast was the third album Iron Maiden released . In this album , the drummer was really great and fantastic electric guitar solos were performed too . Since he took up office in 2002 , Lula has made major structural changes in Brazil , taking more than forty million Brazilians out of extreme poverty . To curb corruption , new laws were created , institutions were re - structured and innovative mechanisms were developed to engage and give voice to the civil society . For the Brazilian elite it is unacceptable that Lula , a poor migrant from northern Brazil , overshadowed all the presidents and most politicians of their own , privileged , university - educated and careless about the real Brazilian problems . You do n't have to think about bus timetables and stops . You can stop wherever you want and there are a lot of other reasons to travel by car . It is really good . It is better than the previous novel , FSOGrey . I really mean it . It is not porn . BE GROWN UP PLEASE . If you do n't want to read the " sex parts " , just turn over the next page till it ends , that 's all . I did that to finish that novel . This novel is just to tell us the passionate love story between a successful businessman , chairmen man with a very unhappy childhood , and he only refers to his birth mother as " the crack whore " , which is related to his recent behaviour - BDSM . And the girl seemed very bored of her routine life , innocent , did nt know anything about life . Apparently , THEY were so different from each other , but somehow , some magic connected them and made them a very lovely couple . But most importantly , one should enjoy all of this fun . I 'm going to make you a very nice itinerary and , hopefully , we 'll also find somewhere for you to work . We 'll visit the Hall City Tower , the zoo , the citadel , and we also have some beautiful parks with a lot of green grass and old trees . Concerning your work plans , I have an uncle who owns a farm , so I think we can arrange for you to work there . They can barely breath with all those photographers around them . For example , when a fan follows a cab , she or he could be hurt , because the traffic is really unpredictable , or when there is a huge mass of fans , they could hurt each other . Why is it that when men stalk women they forbid them to come closer to her , but when a paparazzo hides in the car of a celebrity , he will get a huge pile of money for the photos ? One example of this could be North Korea or some Arab countries , where their governments ban internet access for citizens . In other words , they want to mislead the people about reality to avoid the population claiming via these networks or being up in arms against their system . So , this means we are getting less intimate and becoming more gossipy at the same time , as a consequence of sharing our lives on public sites . You can follow your favourite celebrities and have direct interaction , but this also has negative consequences such as some followers criticise them . It was a new thing for her to know that someone had the guts to sit next to her because almost all the people in that school defined her as a weirdo . She was on her way to the court where Michael was practising when she heard guys talking . Then our trainer , Nico , shows us a lot of tips and tricks . This is an original and moving love story that has people who are against the relationship between the main characters . Besides this , it tries to give us a real idea of what an innocent child might do to help people without being told the real truth . Warning the responsible departments how much they can do for the city in relation to employment opportunities , tourist attractions , environmental education , ecological preservation and make it the best tourist city in Litoral Paulista . Preserving , exploring the trails and beaches , encouraging extreme sports are what we believe are attractive to tourists of this wonderful coastal city . Nevertheless , travelling by car could pose a real threat to public transport because it is much more comfortable . It will even get more popular because it will be faster , more modern , and cheaper than travelling by car . The aim of this report is to give some tips for tourist who come to the city . I will provide you with some pieces of advice about shopping for clothes in the city , as well as some recommendations . In the city there are many fashion shops where you can get the most trendy clothes . You must be aware that maybe you will spend more money than expected , but if you are a shopaholic , it will be worth it . You will fall in love with them as they are pastel coloured . If the idea of a street market does not seduce you , I recommend you visit a little shop in Saint Peter street , The Old Bag , where you can buy bags and other accessories , such as umbrellas , gloves and scarfs . In addition , the shop is very cheap and you can have a cup of coffee inside while you are shopping . I suggest a quick visit to every shop and making comparisons of price and quality . This film is interesting because it drafts work problems , but not only this , it also shows some important values , like the importance of solidarity , group cohesion and the importance of not losing faith in dreams , even if the situation is withstands . The problem is that you have to book the hotels you want to stay in so you need some time to prepare it . The television of the future will be amazing , because it will have a 3D projector , which means that movies will look extremely realistic . You can see , for example , tigers , lions , zebras , birds , penguins or horses . If you were hungry , there are some restaurants and fast food restaurants . In my opinion , sometimes stars ' behaviour is very surprising . Film stars have very duties , for example , going to the parties organized by other people from show business . You are very lucky in choosing a life partner . I have seen your life partner . She is so beautiful . You both have a perfect match . First of all is traffic jams ; if you are stuck in a traffic jam in a big bus you will waste much more time than you expected on the road . Besides , public transport is overcrowded in rush hours . Another downside is that most buses are old and dirty . On the one hand , if you belong to a school , you can participate by giving information to the children about the catastrophic image our village would have if we did not reduce the pollution to the minimum range . Fourthly , I only buy organic products for consumption and keep a small spice garden in my backyard . First and foremost , the bank notes should be designed and the design includes background colour , artwork and security issues . The last but most important step is the inspection . If the sheet is bad quality , it will be securely destroyed . The " Di Roma restaurant " is a restaurant situated in the heart of a small village , " Monção " . It is very popular with teenagers and adults who love to eat pizza or any other fast food . Public transport is not as valued as it should be although a lot of people use it every day . It 's a big country and does n't have many inhabitants . Most people go to high school and university . In Sweden , we have a lot of different people from different cultures . The problem is that there are a lot of Swedish people that are racists . Not the majority , of course , but there are many racists . That can be really painful for those who are n't from Sweden originally . The first one is to study a lot of grammar lessons , and the second one is to learn how to organize my ideas for a long period of time speaking . It was written by John Clees and Conni Both and it shows the daily life in a fictitious hotel . Particularly when the owner gives orders to the waiter , these situations become hilarious . Its short stories have a funny and relaxed time . First of all , the environment that belongs to both man and wildlife is going to lose balance in the ecosystem . It means that more kinds of species are endangered because they are unable to adapt themselves to the remaining land . As far as I 'm concerned , it 's critical for governments to take measures to reduce the problems . Firstly , relevant laws and principles should be put in place to forbid extravagant expansion in the natural system . In addition , supervision of the protecting steps needs to be undertaken by the government . He still needs to find an ATM to withdraw some money to pay for his appointment . SEAWEED : OUR FUTURE Thanks to a crowd - funding campaign , we obtained the minimum funds to develop our innovate work . Unfortunately , the process only works for twelve hours . No matter where a famous person goes , he must realize that , next day , he will be on the front page of the newspapers with lots of rumours . Because , what is proper in living when journalists are following every step the famous person takes ? We are all free people and everyone deserves to have his own life . I wish to express my dissatisfaction with this course . perhaps because there were too many people and also , the more people there are , the more space we need and the room was too small . We felt hot and we had no refreshment facilities . The hotel would be luxurious but everybody could come because the prices would be low , so the hotel would be always full . I think that many people want to go to a luxurious hotel but they ca n't . The hotel would have many services and facilities , like a good reception , spa , wifi connection and pay - per - view TV in the rooms , a great chef who cooked the dishes of the Mediterranean cuisine , a swimming pool , a bar on the beach and a boat for trips around the Mediterranean sea . I would like to hear the point of view of tourists to improve the hotel . One day a friend of mine was going to an amateur theatre to see a musical and asked me if I fancied joining her ; I am not fond of musicals , but I went . The performance turned out to be enjoyable , with a lot of witty jokes . After the show , I was introduced to one of the actors , who was my friend 's cousin . They can do nothing that ca n't be gossiped about . Why do n't we want to give people entertaining us a chance to be themselves and to have a real private life ? " I would say stop the arrogance by my cousins " said Michael to his friends and thought about stealing the keys of one of their millionaire houses and having a party with his friends . But the house was destroyed and the neighbours , furred for the confusion caused during the night , had called the police , who , without his knowledge , were waiting outside the house to take him to the police station . Sometimes I have to take care of my little cousins or my niece and clean my bedroom . It 's not much . People have never taken into account that fact . All in all , it seems that if such tiny changes are made , a huge help to save natural resources will be done . The main attraction here is absolutely the beach . It 's a nice beach with white sand and blue water . Perhaps I 'll describe our journey by boat round the island . Subject : Opinion on what young people are interested in clothes , not too hippy , but something comfortable . time , then I suggest some other style . It has to be comfortable but I have experience of cooking and reception for parties / functions as I was a member of the School Parents Association of my children 's school . These was invaluable and relevant experience for the job I am applying for . Also , I am available to work for long hours at weekends . They do not want to learn so much because they just watch movies for fun . It is said that the main objective of television is to entertain people and make their free time happier . It can be really frustrating . The most famous person from my country is Mr. John Stefferson , who works in a department store and is always planning how to make people 's lives more comfortable and better . Sometimes I listen to the radio and hear his comments about some problems in my own country and some suggestions about how to make our life better . It was an engagement ring ! In Mexico , a foreign person does not face difficulties getting hired by a company . I would be pleased to help you with this part of your experience in my country . I know that you are someone who loves animals , perhaps we could go to the city zoo in order to find out whether there are any vacancies that suit you ? Something I can do is to do some research into places that need people who speak English fluently . A good illustration of this would be children . Mr Keffe , who lives with his wife in a housing commission home , is an old - age pensioner with no children . Therefore , it would be greatly appreciated if you could organize a home visit and provide further assistance for this family . We tried to contact as many family members as we could . My city , Valencia , is a touristic city situated by the sea . In addition , I suggest going by bus around the surroundings of the city , where you can do adventure sports , like canoeing , climbing or just walking around the mountains and enjoying the countryside My favourite kinds of movie are comedy and comedy drama because they have interesting plots and characters , someone and who watches comedy can laugh all the time . He presents a theory in which buying lottery tickets is not a misguided input into wealth production as some critics believe , but a valuable input into creating a sense of possibility of escaping from one 's current life by acquiring wealth . Cohen 's knowledge is that playing the lottery is not automatically irrational . Some people like to calculate the gain or loss from buying the lottery but other people that can afford a dollar ticket now prefer to keep their dreams . Taxi is the first possibility . Famous people have always been surrounded by a lot of journalists and paparazzi who follow them wherever they go . Therefore , most of these famous people complain about this , but it is logical that all the media , television , radio and journalists are constantly devoting every minute of the day to them , because people are interested in them , in knowing what they are doing every second , in knowing who they are with , in knowing what they like or do n't like , their hobbies , in short , in knowing everything about them . In Italy there are few cities with an underground and often in the smaller cities there are only buses . I hope for the next generations for a better public transport service and an increase of its use . Overall , it is clear that the main causes of land degradation were deforestation and over - grazing . These causes also had a negative impact on two regions that were analysed , in Europe and Oceania , and , consequently , these areas had higher rates in terms of total land degraded . On the other hand , Oceania had the highest land degraded rate at 11.3% because of over - grazing , which also contributed to having 13% of land degraded . For this reason , this region presented the lowest percentage of land degraded , with only 5% . If a person wanted to travel from Kano to Lagos he had no choice but to trek . We can travel by air using aircraft ; aeroplane , helicopter etc . So , whoever wants to star a journey has several choices of transport , either by sea , by air , by land or on foot . At 17:00 they let us into the venue and they carried out all the checks . When everybody had taken their photos , Emblem3 went backstage to get ready for the concert and after one hour it started . Kitchens will be better equipped , maybe with smart appliances , and people who ca n't cook will prepare the meal by themselves . He was so cynical that he turned out to be very nasty and unpopular . Sooner or later , married people will get divorced . In addition , public transport is cheap because buying a car means spending a fortune and in big cities where people are concerned about the environment , such as Amsterdam or Tokyo , there are many facilities like mobile phone apps or special offers . lower . It is not necessary to say I am able to work to a cafe schedule . I have experience working shift days and weekends . If you are looking for an enjoyable shopping day , Madrid is the best choice . In Madrid , you can find clothes by the best designers , such as Carolina Herrera , Dior and so on ... But do n't be afraid if your budget is quite limited , because we have some places where you can find great collections at 50% off . Nowadays , people 's lives are undergoing an unexpected change all because of globalization . Globalization started in the 20 's , so a huge proportion of the population has experienced this change . In my opinion , it is kind of good . Personal contact shows a decrease in this time , because people do n't want to face their real problems . Instead , they can see all the problems happening in the world on their smartphones . In the future , people will communicate via their computers , cellphones , and tablets , and this kind of technology will lead us to a lonely life . Of course , there will be some more electronic things like some new mobile phones with functions we could not expect right now , and there will be some other gadgets . To put it in a nutshell , we could say that our global world will be more electronic , and there will be more gadgets , but that wo n't change our lives dramatically . However , others companies will dominate half of the projected market share in jeans next year . They help me to develop and to see the world from a different perspective . Many people think living in the countryside provides a better way of life . My town is one of the cleanest towns in my country . The authorities have arranged many procedures to ensure that the town stays clean at the same time as being environmentally friendly . Another handy rule has been introduced , which is that plastic and glass need to be thrown in different bins that are available for public usage in each supermarket center . In these , people can find these bins at easy locations available everywhere . All the previous steps and more are being applied by my town 's citizens in order to improve the environment and go together with all the procedures that help them live a happy , healthy life . ' Gravity ' is an outstanding , brilliant , sci - fi film , directed by Alfonso Cuaron , starring George Clooney and Sandra Bullock . After a long sequence of events , the remaining astronaut first gets to the ISS , then , with a Russian spacecraft , moves on to a Chinese space station called TIANGONG . Never in her life had she been to as crowded a city as Danang , so she felt very nervous but extremely excited about meeting her lover soon . The more excited she was , the more disappointment she had . Mimi caught sight of her lover kissing another young girl in his room . As you know , in our country there 's trash being thrown everywhere and most of the things that are thrown away are recyclable . This is the main reason why our environment is being destroyed . My name is Pawarit Chonlahat and I have lived in Bangkaen district since 2010.I found that this area has changed so rapidly , such as , now it has a lot of condominiums a long the main road and nowadays this area has a big shopping mall and a modern hospital and a large police station . That makes my life so convenient and safe because I can walk from my house to go to the shopping mall in about 10 minutes and I can walk to the hospital in just about 5 minutes , so I did n't worry when I got sick and the large police station is located in front of the hospital . That can assure safety for everyone who lives in this area . For this reason , this is the advantage of living in this area but because of many people in this area , traffic in rush hours especially in the morning is very heavy and it takes so long to drive a car to work .That is the disadvantage of living in this area . So , in my opinion , this area should have an improved transportation infrastructure like investment in Sky train system to cover this area . Pat and Tiffany are trapped in their psychological difficulties ; Pat 's desire for his ex - wife can not be fulfilled , while Tiffany can not get over her guilt over her husband 's death . In these times , we can follow somebody 's Twitter newsfeed , ' like ' his Facebook fanpage and , of course , follow news about those famous people . First of all , remember to take food that can be eaten easily without much mess ( Spanish omelette , fried chicken breast , sandwiches , chips ... ) and , also , you can buy some drinks and water because it is fun to eat at the beach and people usually get hungry often after they do something like swimming , jumping the waves , surfing and so on . Furthermore , going on a hike among trees with a cool breeze around you can be the kind of place that allows you to forget the busy city life , too . However , documentaries are being forgotten and only twenty - six percent of them would like to watch more interesting TV series like Lost . In Spain , the vast majority of schools are state schools . I am also a talented cook for kids . My view is also trying to convince them that cooking is fun and sometimes they ask me to teach them how to make basic dishes , such as omelettes , spaghetti and more . The problem with this mansion is that it hides a lot of secrets and mysteries which are going to be discovered by its temporary owners , who are a family whose husband went to war and died . So the real occupants of the house are Nicholas , an easily scared boy , his sister Anne , who turns out to be one of the most important characters in the film , and their mother , who is called Grace and has a particular obsession with catholisism . The film describes how the love that a mother can give to her children can easily turn into an obsession . However , what makes this film so special is that it pretends to be a typical horror movie , but in its final scene , there is a sudden change which makes it more interesting . I would recommend this film to anyone , even those who are easily scared , because it is not like the rest of the horror movies . It is a film in which you are continuously discovering secrets as if you were another character . So it is a question that requires deeper reflection from all of us . Whether public transport might be the solution , or be more suitable or not is something with arguments in its favour and against it . You do not have to wait for a specific time to catch the bus , for example . However , a lot of people are becoming more and more conscientious about how important travelling by public transport is . One of the most important reasons is precisely to take care of the environment . I really liked working with special effects and the best thing was that I learnt a lot about that technology . Summing up , I prefer doing my shopping by means of websites or auction portals . He 's been doing great in both academic and extra - curricular activities in the school . On the one hand , we could live in a more relaxed way ; on the other hand , we could think about settling on other planets . Then Sergio left Microsoft , created his own website which gave him enough money , and travelled wherever he wanted . As you asked me , I prefer sailing on the river to climbing a wall because I want to connect with nature . Though the modern cities are emerging rapidly , the problems caused by excessively exploiting the environment are severely various . The red coral reef off the coast of Australia , for instance , serves as a shelter for algae and other tiny sea fishes and an index of environmental fragility . Due to the massive construction of five - star hotels on beaches , the biological chain there is cut off and environmental variations are gone away . On top of that , it is the regulation capacities of the environment for temperature , moisture and even sandstorms are eroding as less plants inhale carbon dioxide and exhale oxygen into the whole system . In a bid to address these side effects that civilization has brought about , governments must take measures step by step to tackle them . Apart from the natural areas , the minimal areas for forests and wetland have to be ensured . In this place , there are guys and girls attending pedagogy who organize activities to entertain children of every age . Not only because of oil prices , but also the costs of insurance , the car , the parking fees , etc . In comparison with a bus ticket that costs four pesos and you are sure that sooner or later it will come . What about looking for colleges which offer Wi - fi Internet connection and a proper meal at lunch ? We have subjective opinions ; we normally judge because we have a preconceived idea . For example , in work interviews and jobs that have direct contact with the public , it is better to wear a formal or smart style . Overall , my personal opinion is that we give too much importance to clothes and appearance than we should . Although on some occasions some clothes styles are required , people should have the freedom to choose what clothes they want to wear , and it should not have consequences in our lives . In countries like Mexico , some people have the opportunity to use Uber , which is a service that you can use if you have a credit card . It is an amazing service , but not all the population have a car or the financial status to use an Uber , so people have to use public transportation , no matter if the bus or cab driver yells at them or drives badly . In Mexico , the public transportation , in particular the cabs , are not a very secure services , because some of the drivers steal and kidnap , in many situations they could kill you if you do not take precautions . But despite this , it is very sad that in that place people can not do some things because they do not have the possibilities to pay for something more , so they have to take public transport . Although we did not have the current social communication means such as Facebook , Twitter , Whatsapp , we were very sincere and close to each other , more than these virtual friendships prevailing today . I have already experienced one friendship through an organization , International Youth Service IYS , a charitable association established for youth friendship . The best of all in real friendships is to always believe in your friend 's abilities and be his real mirror for good and bad actions . He will be the same for you . Despite the bad weather , if you travelled by car , you could park your car near your destination , so that you could arrive comfortably . I think that I 'm good for this job , because I really socialize with children . Well , the part of the day that I enjoy the most is nighttime because it 's when I arrive at home and I have finished my whole routine , so I can take a break and I can do whatever I want and I can just relax , so I would say that nighttime is the most relaxing part of my day , so it is the one I like most . I think there are things you need to plan because it 's important for your life , but it depends on the situation , because I also like to let things be and let them happen because they have to happen , so the majority of the time I prefer not to think about it and just let them happen and not to plan anything . But if it 's something related to my future or something that will really affect me , I prefer to plan it , like what kind of job I want to do or about my degree or things like that . David is always ready for a joke , but amazingly , he has the ability to appear serious . I do n't like to travel by boat , because it 's uncomfortable and it takes ages till you arrive at your destination . Cordoba is a thee hour train ride south of Madrid , and attracts visitors from all over the world It is the only Mosque in the world that is not oriented towards Mecca . For a job , i recommend you travel to the coast in Cadiz , Malaga or Huelva and look for a job on the beach , because at the same time as you are on the beach , you could earn money . Among my acquaintances I have a reputation for being a friendly , positive and talkative woman . When he was little , he heard his family talking about how happy they were because his brother Peter was following in the footsteps of his mom . Every day , scientists try to develop new ways to improve the way we live , so that we are able to pollute the planet less . It sounds a little bit strange , but by installing solar panels and other features in these homes , we live a much greener life . Undoubtedly , there will be some changes but , because we know why we are doing it , there would be no problems . We take food and drinks and we spend a day in beautiful places such as the top of a mountain , an amazing castle or a typical market in a town . The film is about this CIA assassin who ca n't remember his past , but he knows he 's being chased by the agency . It was so exciting and funny listening to all those musicians , because some of them actually did n't have the skills to play and did n't have the charm needed to warm up the people . I 've had a little bit of experience of summer babysitting for some kids . In Italy it is more difficult to be a babysitter because , if you are underage , parents should take responsibility for you , so it is better to be over 18 . To be honest , I 'm not the best cook ever , but I can cook a few good things like scrambled eggs , pasta and meat . One of my characteristics is that I 'm a very precise person . For example , I enjoy making lists because they make my mind clearer , and I strictly follow what I wrote so everything , hopefully , ends well . I am 25 years old and I finished my studies in psychology this year and I am available to work from July to September . As for languages , I speak native Spanish and Catalan and also I speak French and German fluently and recently I passed the First certificate in English . Furthermore , if I were you , I would go with joining a health club . You will not feel self - confident and happy , but your outward appearance will be better . I arrived extremely exhausted , because I could n't sleep the night before . All day I was lying on the beach , talking with my friends and having an incredible time with them . I 'm Catholic . I believe in God , but I 'm not very friendly with the Vatican 's rules . Travelling by car is so much more convenient if we think about small places such as villages or small towns . If you consider the chaotic traffic and the long queues to get there and the impact of these factors on people 's health and people 's finances , I 'm sure you 'll change your mind about public transport . On the other hand , it is possible to find hybrid cars , but they are more expensive than those that work with normal fuel and , for that reason , this kind of car is not people 's first choice . Such policies will involve taxes on polluting cars , the increasing of fuel prices and the introduction of benefits for those who opt for more environmental means of transport . Shakespeare provided everything the people asked for --- laughter , romance , and tragedies . We would buy next , impractical high - heel shoes , which will spend a couple of years in the wardrobe . The last but not least disadvantage of doing shopping , is that in the mall could prowl many pickpockets , and they could rob us . Interestingly , the purchase price of " Carde " and " KD " is almost the same . However , " Sebu " leads with a purchase price of $ 1,000 . Whereas " Carda " and " Sebu " score with warranty expenses of under $ 150 . As a long term investment , I would choose the " Sebus " model even though its purchase price is very high . Inhabitants can go to the countryside to have a picnic or excursion with their friends or families to relax . After natural areas , such as farmland , forest and wetland , are destroyed on a large scale , there are no close places with beautiful scenery to visit . The building land is supposed to be their home . It will save lots of plants and animals . It will save the environment , so it will save you and me . She had a feeling that her birthday would n't be ordinary . Firstly , just after she went into school , they greeted her with a million colourful balloons with inscriptions with all the best wishes . Eventually , they came to the lake on the suburbs and then she saw something unexpected . In my opinion , I recommend you to stop going to sports classes , because I think music classes are better , because you can also get a job in an orchestra or something like that . Ever since a curse was put upon Ailee 's grandmother , the girl has been living a daunting life . Max was so anxious to see all the different kinds of wildlife . Halfway through the trip , Max heard a weird noise close by and he decided to see what was going on , but before he knew it , he was all alone . Max could not have been happier . " I practised Ashtanga and Iyengar 's styles of yoga and Ruesi Dat Ton ( yoga of Thai hermits ) , learned different approaches during my training in India and Thailand , and my practice brought me to Classical Yoga - Correct Approach to Spine school , the way of exercising I found the safest , the most beneficial for health and scientifically grounded . She was a foreign student in Palmira , in the north of Syria . Then Stefan 's daughter , Aurora , goes to live with three fairies . The three fairies lead a prince , Philp , to the castle because he has to give the kiss of true love . After that Aurora does n't wake up . Subject : Application . I am writing to apply for one of the camp monitor positions you advertised in last Monday 's Daily News . I am interested because this post will give me complementary experience . To begin with , evidently , technological progress has noticeably enhanced quality of individuals ' lives , contributing to the economic growth of numerous nations . one of the most exciting days of my life was the 23rd August 2014 . ! If , ( one day ) I have the possibility to do it , I will go to distant galaxies and I will see how the universe began . I mean the timetable punctuality , time interval until the next bus and so on . It opened more than twenty years ago and still now is the leader in the chemical sector . Try to be spontaneous and not too sliced . Do not talk too much , as it is a symptom of anxiety . I worked on that team more than ten years ago ( new employee recruitment ) and I can guarantee that for the first interview it is important only to make a good impression . I also teach children at the age of 10 or 11 how to play it . " Carne Enchipoclada " you need to choose the meat ( pork tenderloin , beef steak or deer meat ) and it is accompanied by a sauce of chille chipotle with potatoes cambray . " As a matter of fact , viewers are not able to decide the script , but they can still decide to switch the television off . I am looking for the chance to work for your company because I know that your store is the leader in large department stores in the UK and last year your company won the prize of " Best place to work in 2013 " , and I want to share my knowledge and my work experience to improve your profits every year . According to the CDC , the percentage of children aged 6 to 11 years old has increased from 7% to about 18% in 32 years in the United States . This means that in the past three decades , obesity has more than doubled in children , same that had diseases just like diabetes , asthma , cardiovascular risk factors , mental health disorders and musculoskeletal problems . I have little cousins and sisters so I 'm very good with kids . I 've experienced all kinds of situations , so I think they wo n't be a problem for me . As I said before , I have young cousins and we meet on Saturdays so I need to think of activities and games to keep them entertained . I 'm also very good at sports . I practise track & field and ping pong , so sports are n't a problem either . I 'm an outdoors person , so I will be very happy with the accommodation . I would be very thankful to work for you if you decide to accept my application . The cards included the programme of the concert and some photos of children from all over the world . I did everything by myself because everyone had something to do on their own . I 've been doing martial arts for eleven years but I haven't lost the passion I feel for it . Many people today have pets of all kinds . First of all , a pet is a friend for the family and , much better , is a member of the family . One more advantage of owning a pet is that it helps children learn to be responsible and caring . On the other hand , there are a lot of disadvantages to owning a pet in big cities . Pets and animals in general need fresh air and exercise outside and not to be always in an apartment . I have heard about pets that get sick through living in a small apartment in town , and that is terrible . In my opinion , it might seem good to have a pet if we take care of it . All in all , owning a pet in a big city must be done carefully , ensuring all that the pet needs . In the class , you should take notes and write down what is important . If you have any questions , then you should ask teachers to help . I really do hope you get used to the neighborhood . Nevertheless , I would like to improve some skills and although I did very well , I still got confused . Nowadays , people are aware of environmental problems and they will try to figure out solutions . Moreover , there will be important technological advances in our lives , like intelligent mobile phones which can help us with day - to - day tasks . Nevertheless , people try to save money by every conceivable means . You have all the kinds of German food you can imagine , from sausages with choucrut to Gullash with spatzle . Most of the paintings and photos are from Germany , because that town was occupied by German people many years ago . Almost everybody has at some time thought of taking a gap year between leaving school and starting university , but do we really know all the advantages and disadvantages that it entails ? It is also said that at the time of heading to college , those people who have taken a year off are the ones who have least difficulties learning and relating with other students because they have got used to it before . Many automobile companies are working for a new future of automobiles . Some people argue that this new idea of cars is a milestone for us and it will bring only positive effects with it . At the moment , people who have got a handicap can not drive a car by themselves . In contrast , self driving cars are very expensive and many people can not buy one . Buses are the main transport in my area . If you are not keen on travelling by bus and you do not want to get the car out of the garage , taxis may be the best option . Conclusion The majority of users are young or elderly , since they are n't old enough or they are too old to drive . This is happening now , and we are not even fully developed in technology . So , I would recommend this CD to other people because I think that they could get to know the signer deeply through the songs which are on this amazing CD . I do not agree with the idea that there is no future for public transport , because it is a perfect means of transport for commuters and , nowadays , a lot of people are conscious of global warming and the environment , and refuse to use the car every day . There are a lot of benefits to public transport . First , you do n't have to drive yourself , you can listen to music , read a book or whatever you want without having to pay attention to the traffic . It is true , too , that travelling on this mode of transport helps the government because you have to pay for it , and the majority of modes of transport are cheap enough for everyone . However , so many people love having their own vehicle , a car , a bike , a motto , because this give you other kind of freedom , you chose the way , you chose the time , you chose the way in you drive it , the positive thing about this kind of vehicle is that you do n't have to take a bus , for example , crowded with people , you can go alone in your car , or with whoever you want , but the important thing is that you choose . In conclusion , we can say that every kind of transport has its own pros and cons , but in my opinion , the difference between both of these is that in the second you choose your own way . Guys should not go snowboarding . Most people eat scrambled eggs and drink a cup of tea . As usual , I 'm on a diet , so I prefer only yoghurt . In recent years , people 's attitude has been changing . However , public transport has been criticised more and more in recent years because of its inconvenience . Therefore , buses do not run as frequently or regularly as they used to . In the end , the public transport service needs to change to attract more people and to have a brighter future . The purpose of this report is to inform you about how the city of Granada takes care of the environment . And there is a big university community involved in recycling . However , Granada can not be considered as cycle - friendly . There are fewer cycling lanes than in other cities of a similar size . I consider that Granada scores 6.5 out of 10 for taking care of the environment . When the weather is good enough , close to the castle take place many kinds of parties and entertainments . That day was a terrible day for Michael . He woke up and felt totally exhausted after an overwhelming birthday party . He did not answer at all , besides , he hit the chair near her , and unfortunately , that chair hit her in a serious way . I think that many google users will be happy if the developers bring more useful information to the main page , for example , weather information , currency rates or hot news . Moreover , google map service needs some improvements , such as street names , map accuracy and more city panoramas . In my opinion , a trip will be fascinating because of the fact that the building of the Brewery was originally a German - owned brewery which has been brewing beer for almost 400 years . It contains a little museum which is open for tours . There you could buy some souvenirs - glasses , bottles , T- shirts , cups and , of course , beer ! They serve all meals in small portions , and they suggest that the servings can be shared , so everybody can try more items from the menu . As a result of this , many people are trying new options , like car sharing . I 'm a teenager and nowadays I recognize there are a lot of ways to get to know something . In the past , technology was poor and only a few people had a smartphone or a computer . Here we have some of them : anemia/ anemia ; rickets and malnutrition … The lack of a sense of civic responsibility leads easily to bushfire . Its true attractiveness , in addition to the decoration which is at the pinnacle of Andalusian art , is also its location , which is unique . If you are lucky enough to visit this wonderful place in summer , I recommend you attend the Granada International festival of Music and Dance , which is celebrated in Genelalife 's gardens , where you can enjoy amazing artists and orchestras in an unrivalled setting . After that , the printing process comes into play . The most significant procedure is called inspection , which means manual checking by special machines and staff , and then they are classified into 3 different categories , including good quality sheets , partially damaged sheets , and bad sheets . Namely , Design , Preparation of metal plates , Printing , Inspection , Packaging and Distribution and Disposal . process is inspection , where the printed sheets are If they are not very good , we can destroy them securely . However , a few sheets may be partially damaged . That does n't matter due to the fact that further separation will assist you with getting rid of the wrong sheets . Remember when in school you learned the three essential things for living ; reproduction , nutrition and interaction ? Well , humans have become more and more sedentary with the passage of time and have forgotten about interaction and movement . I might not have the typical sportswoman body type , but I really enjoy doing sport and feeling the glory of movement . My favourite sport is tennis . Although it is not the only one I practise , it is the one I most like to play . Apart from obviously having fun and socialising , the way you feel after running and burning feels really good . Therefore , in the future , I will keep improving those abilities and become a more organized person . If you want to start practising this sport , you have to get fit and run a lot because you have got to have a good physical condition to play because it is a very demanding sport . Let me introduce myself . I am Luis from Spain and I work as a civil engineer in a Spanish infrastructure company called Acciona . I was very surprised to hear that you want to spend your year off from university in my country and I am also extremely flattered . It 's one of the most beautiful castles , in my opinion , and it represents the most important thing this country is known for , and that is Dracula . He was actually one of the rulers of this country and his real name was Vlad Tepes . And if you want to have some fun too , there are some festivals that you might enjoy . The biggest one in the country is in the city where I live , so you 'll have a place to stay , and for free . I hope my advice was useful and I look forward to seeing you next year . For three years , I babysat my neighbor 's two daughters . There have been rumors of the construction of a Metro in our town . The statement given in the rubric proposes an issue of the future of public transport in developed countries . Modern megalopolises are suffering because of a surplus of automobiles . At the beginning of the 7th century , Cáceres was conquered by the Arabs . At the end of the 14th century , Cáceres was conquered by the Romans . Therefore , it is a multicultural and multiracial society . The center of the historical city is the Big Square . There are mixed Arabs and Roman buildings , and two cathedrals . My favourite restaurant is Chinese . In Caceres we can eat Chinese food at Food House . I love swimming because if you are angry or your job is very stressful , you will feel well after thirty minutes in a pool . Actually , this sport is very healthy , so some doctors are recommending this type of sport . Afterwards , I will have the right to take part in the international missions to maintain peace under the patronage of the European Union . Secondly , I am going to inform you about how our citizens are trying to keep the area clean . - There are cleaning campaigns twice a year . - Last year there was a campaign to renew and repair the most attractive parts of the village . I hope this report informed you fully on the environmental situation in our village . In Budapest the rubbish is collected separately . For a very long time I 've been doing my best to separate rubbish , and then , it was a really bright summer morning , I saw that the special yellow bin for paper and glass was emptied into the same lorry with the other rubbish ... I have been learning English for 8 years and after I sat r the FCE exam two years ago , as soon as I passed the exam , I started preparing for the certificate in advanced English exam so that I could demonstrate my English skill even more , both written and spoken . Although there are a lot of people who strongly believe the best way of travelling around the city is by motorbike , there is also a large proportion of society who are sure it has too many drawbacks to be worth buying one . It makes my every journey unpleasant and I feel uneasy all the week before the flight . But this mode of transport is n't so comfortable , especially when we must travel onshore ; then it 's complicated because travelling by boat is allowed only on the sea or any sizeable river , the courses of which are usually placed less conveniently than roads or even railway tracks . In general , the facilities are well maintained but the majority of the users think that the installation should be improved in the basketball and tennis courts and maybe the bathroom should be remodelled . The workers are very kind and sympathetic and enjoy teaching . Disadvantages Our cities emit too much carbon dioxide , making the earth warmer . Floods , droughts , and famines . All of these have great effects on humans and animals . For instance , the loss of property , the disappearance of people , which is not good for the development of human beings . Finally , governments should use the space properly , for example , making plans before building buildings , estimating the effects on humans and animals . I think I could be the right person for this job . I 'm really patient and I really love to be with kids , play with them and take care of them . I always have fun with them . I also know a lot about cooking because in junior high I took cooking lessons and I learned a wide variety of dishes and snacks . However , acquaintances of hers , the students at the University , comforted her . Surprisingly , when you are playing this sport you improve your speed and coordination too , so that could be an interesting reason for taking it up if you are not involved in it . Personally , what I can say is that playing this sport makes me feel really alive and not only when I am playing it , it also happens when I am watching it , especially during the World Cup . Curiously , there are many ways of taking care of yourself when you are taking up this sport , so what I advise you to do is to do some exercise before you go on the pitch , because it not only prevents you from suffering from sprains or other kinds of injuries , but keeps you active to keep the level of your game . It is a majestic castle conveniently located on the river . First of all , they are supposed to be designed with great care and many considerations , such as the background colour , artwork and security issues , all of which are crucial for bank notes . Next , it will come to the most important step , inspection . The next step is the most important and it involves inspection , which means good and bad sheets are separated during this process . One of the measures that we , as world citizens , can take is to leave our cars at home and start to take public transport or to share cars with others . This is causing diseases and allergies that are affecting the citizens . Engineers are studying new engines that are more environmentally friendly , but even so , we have to reduce vehicles to help reduce the greenhouse effect and pollution . Plans and programmes are being developed to reduce the number of cars driving through cities . Some of these have the same aims . Taking public transport can efficiently reduce the emission of carbon dioxide and will help the earth to recover from those disorders . The above reasons I mentioned explain why I do not agree with the statement that public transport has no future because travelling by car is more convenient . It is important when we work or study in international areas . I think that there are not many disadvantages of learning another language . Also , I found some books on the internet with Cambridge 's exams . The Forbidden City , one of the most famous museums in China , has opened its online version to the public , which means people can visit the Forbidden City on the Internet instead of taking a time - consuming flight to Beijing where the museum locates . Once I visited a museum to find some pictures of cave painting in France , but when I went to France to see the real painting , I found it was more vivid and could show you how great the French cavemen who painted it were . Admittedly , a museum has its own merits ; it is easy to find on a map and is always emphasized as a symbol of a country . A documentary , a book about the culture is cheap and easy . We can consider it an economical method . If you decide to find out some information about a totally unknown country , a museum is not a wise option . Machines can tell us lots of important information . The tables and the chairs are very beautiful because they are like in the American films but they are very uncomfortable . It would be incredible if you started your trip in Cartagena , which is a Caribbean and tropical city . We think that it will be convenient for him to apply for a Postdoc position during his military service . His ideal plan is that he will try to apply for a Postdoc position this fall or winter , and then he can work abroad after finishing military service ( August 2015 ) . In terms of protecting the environment , taking public transport may cut down the carbon emissions . It is urgent timing to avoid the greenhouse effect that people should think about how to decrease the carbon emissions . There are a lot of places where people are building their houses . Perhaps we will be living under water ? Many buildings , like skyscrapers suggest we will live in flats which exist above the ground , and that is not extraordinary , but how about whole cites prospering under the water with their own source of light which could replace the Sun ? The marketing department also gave me the responsibility of publicizing events via Facebook . In my opinion , the obsession with business transforms society into a ring inside which every man is against his friend only for the sake of an excellent career . The last point that has changed people 's lives is the tendency to have the same thoughts or the same goods . Yes , they will , and I hope that we will improve our thoughts and we will have the consciousness that we are not " supreme " and that we will never have the right to imposing us in the world . To my mind , the beauty of music does not depend on its varieties . I think that Spain is an incredible country since it has all kinds of landscapes : mountains , beaches , lakes , and you can enjoy adventure activities , for example , trekking routes , climbing , bungee jumping , surfing ... You can do different kinds of tourism depending on the city where you want to go . However , I recommend travelling to Extremadura in spring or autumn because in summer it is too hot . In Extremadura , you can enjoy the environment and you can walk across the famous Monfragüe National Park or Tajo - International Natural Park . John talked about the serious problems caused by not recycling things like plastic bags , bottles … that end up floating in the sea because humans do n't take care of their environment , and all this is causing loads of aquatic animals to die . I had the chance to be introduced to a different world and I started looking at everyday life through different eyes . There seems to be nothing better , nothing more interesting , exhilarating , breathtaking or stunning than taking up this sport . It 's also not said but tennis is one of the sports which causes an enormous amount of injuries , so it 's necessary to be under the constant supervision of your doctor ! There are a lot of bargains and cheap items on the market , which very often catch our eye , but I definitely want to warn you against them ! The " Mariahilferstraße " is the perfect place for people that want to avoid overcrowded malls . Especially on a rainy afternoon , the " Donauzentrum " and " G3 " are the perfect way to spend your day . I 'm also a volunteer for the Red Cross , so I 'm used to looking after children and organising all kinds of events . We do n't have to think too much about almost anything , needing no person for company since we have all these distracting devices for entertainment and relaxation . I 'm really glad to know about your future plans . I definitely think that this year of travelling and exploring will be a great way to grow up and meet new people from different cultures . I worked in the OIL MINISTRY 's central library on foreign scientific books which mainly concerned the petroleum field . Just do not order the pancakes , because they do really bad pancakes . There are about a thousand animals and in the middle of it is a gorgeous castle . Their novels have a lot in common : first of all , the plot is usually pretty complex ( as we can see in David Copperfield by Dickens and Wuthering Heights by E. Bronte ) , and so are the characters , who are always well described , especially on a psychological level . Furthermore , both the authors included in their works the figure of the noble who helps the hopeless child who comes from a lower class . If they want to use it , they should try to focus on getting important information which is beneficial to improving their knowledge . Nowadays , it 's common to think that travelling by car is much more convenient than travelling by public transport , but it 's not true at all . As for the pollution , it could be reduced if people used public transport ; it is well - known that CO2 emissions per passenger kilometre by public means of transport are 80% less than a car . They ca n't do trivial things such as shopping or going to the cinema with their family without being aware of the fans and paparazzi . Sometimes , famous people look a little bit different than on the stage and their faces without any make - up appear on the Internet . As a result of this , many studies have shown that athletes should be motivated to push themselves beyond the record . You certainly will learn to fail and win , but the most important thing that you will learn is never give up . It usually starts with small talk or compliments , as at school I was taught that expressing appreciation to people can be a good start of any kind of relationship . Now the question under discussion is whether public transport has a future as travelling by car is gaining more and more popularity because of its advantages . It 's not a secret that gas , insurance and repairs are costly . Safety issues are also very important . It is obvious that it is safer for the environment than thirty cars with a single person inside . Moreover , cities ' authorities encourage the development of public transport because it creates employment , lessens the impact on the environment and contributes to road safety . He knew that Peter was a little bit irresponsible , but he thought that the arrangement sounded perfect and nothing could go wrong . But there 's something in her big bright eyes , circled with long brown eyelashes and freckles , that makes her appearance unique and causes Tom 's heart to flutter every time he brings to his mind her piercing gaze . Their transformation from innocent posters to digital screens ranging in size from minuscule to vast has made adverts all - pervasive . Local people were invited and a talent competition was held . I am currently an intern on a scientific research program in a group called GALP - Logical Programming Teaching Group , that , with the local city hall of Araraquara , aims to transform the city into a national technology , research and software producing center , accomplishing this goal by teaching logical thinking and algorithms to kids , diminishing future evasion in many exact science courses . It was awful . Thus came the question of what I was going to do next , but I was n't ready to make that decision back then , so with the agreement of my parents , I decided to take a gap - year . I was going to spend the next 6 months in the United States which actually terrified me . I also got to know myself better and I have reached a decision about what I want to do next year . I am going to study at the university . Even though they are well known , they have a right to have free time and they should be able to spend it however they want to , without anyone disturbing them . The idea of the sublime that Wordsworth had is considered by many as the standard idea of the Romantic sublime : forms of nature that inspire feelings of awe , danger or weakness . There is also a food court on the third floor , catering to all sorts of customers , as well as a few restaurants on the first and second floors . Another shopping option is the main street in the centre of Viña del Mar , which used to be more popular in the past , but which was displaced by the shopping centres . I 've always liked to play with kids and do fun activities with them . Away from busy and noisy roads , the beautiful old inner city reflects what Brussels really was for centuries ; small but cosy cobblestone streets flanked by small houses and shops in light colours and with old - fashioned roofs . Travelling across the Atlantic Ocean , for example , requires an airplane or a ship . Fortunately , Hundreds gather there , parking spaces are full , again facing long queues in stores - no matter how unpleasant it sounds , it is the reality nowadays . Afterwards , some get into their cars and get stuck in traffic jams on the way home , it causes more tension and destroys your mood ! On the other hand , the majority feel lazy and they go shopping just for special occasions , without any rush , they dedicate time in search of fashionable clothes , best quality garments , stylish items . On the other hand , searching for your favourite brands , non - seasonal products , some special goods , just looking through shelves , trying the garments on , asking for advice , testing products , there is plenty of work to do to make a perfect purchase . Fortunately , this unavoidable part of our lives is not that problematical anymore , as we may experience the pleasures of online shopping without leaving home . As a shy person , I can confirm the differences between real life and virtual interaction . I am at home in my lovely house , where I love every detail of the interior , where everything is in its place . My kids are proud to have parents like me and my husband . Friends , colleagues , family all those people who were next to me on my way to this wonderful day . Much shorter than their fellow tennis players , they have always been able to compensate for their physical shortcomings with an extremely good technique accompanied by a strong head . You must never surrender : until the last ball has bounced twice on the ground , you have to keep fighting , regardless of the score . Nonetheless , it helps to shape your own personality . She is regretful because their relationship got worse and it was n't what she supposed it could be . With this in mind , money would be spent on constructing a running track where no - one would have to worry about traffic or obstacles in their way . Conclusion The lecturer 's second argument involves capturing and destroying the toads using volunteers . One of the main advantages of cultural practices is that they allow societies to maintain their identities and gain economic stability . My study plan is to undertake a pre - university programme locally to prepare myself for further studies overseas . It is worth mentioning that schools are considering the environment as part of the education system that should be taught to students . Trash distribution , using green products that respect the ozone layer , not wasting water and many other actions . For example , we can take at least one family member with us . When it seemed impossible to catch him , a girl , who was crossing the street in a wheelchair , crashed into the thief and he fell down on the pavement . DIY Classes As most college students will soon leave for university and will live in dorms , without their parents , they are obliged to fix malfunctions by themselves . It takes a higher level of creativity and spontaneity to succeed in it than your usual basketball match , since its flexible rules , no - coach system , intensified relationship between the player and the crowd , and reduced number of participants widen and complicate its field of possible actions . But still , our customs have evolved a lot . Due to the geographical conditions where Japan is located in the Pacific Ocean , people here have adapted to eating raw fish and like to offer it as a main dish to serve customers in most restaurants . Successful communication between different cultures will happen only when we express ourselves precisely and interpret the information accurately . They are courteous and industrious . And then everything had crashed . Michael tried not to think about it and to listen instead to what she was saying ... Her voice was weak and feeble as she said " .. and I was really depressed , you know , and then I thought ... we always talked about going to India ... and I thought ... maybe we could fix everything .. so .. I'm just asking .. will you go to India with me ? " In the case of politicians , I do n't mind what they do on their holidays , for example , if they work properly when they should . I think the Royal Family is an exception because they are supported by all the citizens , so I think we ( as citizens ) have the right to know everything they do if we want . I had to take care of other volunteers . Dealing with other people is the hardest part , especially when they 're the same age as you . When we want to go on a weekend trip to the countryside , a car is irreplaceable for families with children or animals . She used to live in a flat , so she had never discovered how different and beautiful the world was . Therefore , one should not waste time watching them . In these cases , TV is undoubtedly bad entertainment . If you are looking for a film that provides you with suspense and action at the same time , I recommend you to watch " Now you see me " . So if you enjoy magic tricks , surprises , very handsome actors and splendid actresses , why would you miss it ? But , let 's face it , doing these things is not as wonderful as discovering magic powers , being kidnapped by aliens or singing a song with Justin Timberlake and Lady Gaga . We will be travelling by car to a campsite in Germany . To help with this issue , the nurse should make certain that Mr. Sharma is comfortable , and elevate the head of the bed for a more upright position in order to facilitate and increase his oxygenation , helping him to recover from his respiratory instability faster ( Snowball , 2012 ) . Also , I encourage you to visit Ukraine and to see its sights , to feel the culture and speak to nice people ! If you prefer shopping outside , taking a trip to King Street would be the thing to do . If you want typical souvenirs , you can go to Buckingham Palace , you will find a lot of small shops that sell souvenirs for a reasonable price . I have a high level of spoken English , as I have been learning it since early childhood . Companies like Monsanto that engineer plants with sterile seeds , encourage non - sustainable production models that promote the extinction of independent farmers who have to choose between their lifestyle and the new farming era . In many cases , volunteers are crucial to helping support life , as when meals are delivered to housebound people . Things gradually improved day by day for a time and my revenues started growing . It turned out that they sent my work to a few institutes and one of them was interested in me . When you use a technique or defend against a technique , you control your body 's movement and coordinate them to work at the same time . I thoroughly enjoyed the lesson and , according to student feedback , so did they . I suggest visiting the Vatican , as I said at the beginning ; the country inside the city . On the one hand , I have been learning English for so long that my good proficiency has given me the chance to get a position in an international team . On the other hand , I have learned French and Spanish just for a few months , because I was curious to learn the official language of the countries where friends and relatives are living . The writer lets us observe the fear , anxiety and the defencelessness of Sam , a neurological patient who is just beginning to emerge from his comatose state and who has yet to deal with the reality of his new situation , sorting out pieces of memories involving relatives and not quite understanding why a woman he does n't know anything about claims to be his wife . In Korea , we have many kinds of work which are related to English , so you can get a job easily . If you get the internship , you can work as a real businessman . Sheets in the second group then get separated into good ones , which , together with good quality sheets , enter a process of packaging and distribution where separate notes are cut and finally enter the market , and bad ones , which go to disposal with bad quality sheets , where both groups get securely destroyed . First of all , let me tell you the advantages . She nodded and made another effort to look around . The other person was n't convinced , however . " He made sure his voice was heard on the streets , to reaffirm his social position . The couple nodded and showed the ID of the man from the other city . The receptionist nodded and conducted both to the main hall . It is in these moments that I give it my all and realize that all the practice I had really paid off . I am a cheerful , energetic and hardworking person , and I am also a very responsible person , able to deal with small and medium groups of children , and for this reason I consider myself as suitable for the position advertised . First of all , in this film you do n't see a gangster Al Pacino . It 's about a retired army colonel who suffers from loneliness and depression . There is a great public transport system . He used to dream about him coming into his bedroom , laughing out loud , showing off his sharp teeth , threatening him with the most horrible punishments . Secondly , public transport is better for the environment than using cars because a bus has more space than a car and many people can go on a bus , thus decreasing the amount of pollution and helping the environment . Without the routine that studying gives you , with all the deadlines , the exams , and other stuff that force you to get things done , and , as a consequence , teach you to be a responsible person , which you will need to be when you get a job , you will simply be wasting one year of your life by taking a break . One thing that I 've learned in my life is that you should never take a break from your everyday routine unless you really need to , due to fatigue or for some other physical or psychological reason , otherwise you will be , I repeat , just wasting time , time that you could be spending in a useful way , by getting something done , or improving yourself academically , intellectually or doing whatever you think can enrich your life . I like to believe that , like the old Latin proverb says ( and I have already said this ) , there will be glory at the end to the man who endures hardships on his path . I hope you do n't think that sharing these thoughts with you makes you my new best buddy . I am writing in reply to your advertisement published in the local newspaper for the vacancy of Junior Chef . Moreover , I am currently undertaking a Chef Training Course which provides me with not only practical but also theoretical knowledge . Furthermore , I always try to maintain a positive attitude towards my responsibilities and sort out any problem that may occur . I have fond memories from my childhood . She was always cheering me up when I was in sad or difficult times , even when she was not feeling well . Dancing requires a lot of things , like coordination , flexibility , and physical fitness , just to mention a few . This can range from the rules your parents have set for you , to the laws created by the government . And , of course , to add an extra activity to my CV as I usually do every summer . I must say that not all of them are very easy to work with . However , I must agree that travelling by car can give you more freedom , you can carry your shopping and pick up other people on the way . It is known , that it is the job of paparazzi to follow famous people and look for sensation in their daily behaviour , and celebrities are aware of the fact that they are recognised everywhere , but an interest in someone 's private life , when the person does n't want it is basically a synonym for trespassing . If there is any problem with the cash register ( very common , actually ) , you have a phone number under it of a good technician . He was following an important European summit on environmental issues . Such an experience made Jake realise the considerable impact that a good public transport system has on people 's lives and their surroundings . - access to public transport is way cheaper than taking care of your own car ; though initially it might look like a huge investment of money from the community , in the long term it shows itself to be the most efficient way to travel ! This kind of action , when performed collectively , requires coordination of efforts and an ability to work together , two qualities that are frequently forgotten in our individualistic world . If you play football , you know how to act when in a team . Also , football is a physical game . In times of escalators and cars , it is refreshing to find an activity that involves movement , velocity and strength . In fact , it can be argued that the human virtues are a by - product of conflicts and fights ; that they are those character traits that we acknowledge as important for everybody engaged in a competition , be it for a trophy or for a country . In a club , you will find professional advice and also as many people as are necessary for a match . My name is Aly Meeuws . I am 16 years old . I live in The Netherlands at the moment and I am really planning on going to the USA in the future , so this would definitely be a great experience for me , especially for my English and being away from home . Besides that , I also really enjoy cooking with my mom at home , so working in the kitchens would not be a problem at all . Finally , it will look into possible future implications of this kind of technology . Namen and Kinnison ( 2012 ) indicates that " the three types of social interactions that social networking enables include ( 1 ) creation of an online identity , ( 2 ) establishment of relationships between users , and ( 3 ) development of layered communities defined by the lists of connections each user establishes " . On the other hand , on Facebook , people can share pictures , videos and thoughts without restrictions . Furthermore , some departments of police in the USA have used Facebook to share a video of a felony with the expectation of identifying the suspects , and their followers were apt to say something about the incident in response to the publication . For example , while women think about millions of things like what they want to do or have to do during the day , men just do not think about anything and can be like that for hours , just with a blank mind . I also learned that it is the mother that gives the principles and the direction of a man 's mind , and depending on her , he is going to be a sexist or not , he is going to help and be an honorable man or not , he is going to be a good and caring father or not , he is going to be a responsible human being or not . Women do not know their importance for the future in their own homes . I found this movie both exciting and emotional . Both thumbs up for me ! We regularly organise film projections and discussions around a subject related to the film . For example , with every film seen , our students have the chance to practice their language and to develop their own opinions , particularly as we always have discussions around a subject related to the film . Also , our monthly speakers are excellent . For example , last year we invited a well - known actress , Janet Hewitt , to share some of her experience on Broadway . Unfortunately , organising these kinds of events is costly and the money from membership fees is not enough . Being founded in 1920 by our well - known alumnus , John Carter , the English Language Club is the oldest club in our college . The fact that everyone from the community can participate in our events helps us to develop a positive relationship between the college and the community . We hope you will be able to take all this into account and will find it possible to help us continue and improve our club by funding us . It was a hot summer 's day , everyone was walking to their usual destination ; work , school , to buy some groceries , pick up the laundry or their clothes from the cleaners . Everyone except Peter . In her left hand there was a large steaming cup of coffee that landed on Michael 's new shirt when he bumped into her . One second later , Michael was covered in coffee , burnt and sticky and his mobile phone screen was winking until it finally turned off with a dying flash . In this article a teacher reflects on his experiences of creating plays and using them to help motivate students to develop their English . The most effective way is to practise every lesson for ten minutes at the beginning and end . Some learners will not want a speaking part . You could even ask them to be promoters . Also , they can see how much language they can produce . Regarding my academic experience , I am currently completing my degree in Primary Teaching and Psychology at the University of Valencia , Spain , where my current speciality is misbehavioral children . So far , I have received excellent grades in all subjects , and I am on course to graduate with distinction at the end of the semester . Enclosed you will find photocopies of all relevant certificates . It was from the most dangerous and terrifying gang in the village . That was the first crime I committed and here I am now , in jail . If you like animals , you 'll enjoy seeing those beautiful horses running and jumping as fast as they can . However , I personally think that it should not be regarded too critically but should only be handled responsibly , according to one 's personal needs . Before the trip started , the company who decided to make this trip said that everything was perfectly calculated so that it was impossible to have any kind of problem with the spacecraft . When you are sitting in the plane next to your instructor , with your legs hanging and your arms crossed … It makes an indescribable impression on you . And obviously , you should n't be afraid of heights to enjoy skydiving fully . My colleagues are nice but the management are terrible and recently I just stopped talking to them . Perhaps it is not their fault that this entire operation is so dysfunctional . In these cases , journalists themselves should realize that they are taking it too far and that they should respect them a bit more . During this period , the town has seen extensive growth in residential areas and local amenities , and the modernisation of leisure facilities . She was walking around the city thinking about the job she just got . Everything was looking perfect and it was something she enjoyed doing before the accident took place . This is an easy word to understand , but it hides more than the definition says . I have 5 years of experience of managing , PR / marketing communications for leading brand named companies : " Barbie " , " The Children 's World " , " My Toys " . In these companies I was engaged in the advertising of toys . These images became the subject of Feurer 's eponymous book , lavishly illustrated with 175 photographs , illustrating his five - decade - long career . The aim of this report is to inform the committee about the wishes of the students who took part in the survey that was conducted last week in our school . Improvements to socialising opportunities Modern life orders our days and weeks in a packed schedule of activities : job , children , housework , fun , free time ... By the time he arrived at the riverbank , some of his colleagues were already digging the ditch . I remember the warmth of twilight , which lures you to the heart of this town . I remember children , running about the small squares in front of the cathedrals ; elderly people in wheelchairs ... Nevertheless , when you are learning a language , it brings confusion . As a consequence , he had no money to pay for a sod , so he was thirsty all morning . Tom was getting really anxious , worrying that he would never make it back to his job . At 2 pm , the flight arrived . Also , in Red Square one can see the Mausoleum , which is can also be called one of the symbols of our capital and the country . A curious fact is that , out of the five most popular sports in the world , only basketball keeps track of possession time and to me that 's exactly what sets it apart from the others . While watching or playing any kind of sport , there 's nothing worse than a team or a player trying to waste time until the clock runs out , the game becomes dull and boring and you ca n't enjoy the excitement that only the up - tempo style of play can provide . The bottom line is ; a fast - paced game is a much more exciting experience for players and viewers than a slow paced one and that makes the " shot clock " fundamental to the dynamics of the game . Practice is the one thing that can increase the probability of desirable results and awareness is what gives you the ability to adapt to different situations , and the combination of the two is the only way to success . So if you want to be a good player , you need to put your energy and focus on practice and stay alert and survey the court at all times so you can be aware of what is happening around you . The " 10,000-hours rule " is said to have a scientific basis , in spite of the fact that most of its defendants have never read the study that established it . A network developed from the South of France to Switzerland , especially to try to save thousands of Jewish children . But now , they have told the whole world about it , some of them are now considered as heroes in Israel for what they did during those hard times . As the population grows exponentially , the resources fail to do the same . The hard truth is that until someone has to face the situation himself , it 's quite difficult to restrain oneself from wasting energy , food , materials , water ... We will have a great time together here in Uruguay . You will see some of the most popular places in this beautiful country . Kyiv is a good destination for shopaholics . The best manufacturers of clothes , linen , accessories have their shops there . Jewellery and watch shops can also be found nearby . Different shops will offer a wide range of goods and impress with interesting design ideas and unique styles . Even though their relationship was of the quarrelling type , everyone around them , friends and family agreed on the fact that the pair were as solid as a rock , and despite the ups and downs , love had always won in the end . First of all , the biggest problem is that the world 's resources are extremely unequal . Secondly , with the increasing of the earth 's population , the areas of farmland are also decreasing . People in economically developed areas are in pursuit of the perfect life and the people in undeveloped areas are starving . Grandma 's wrinkled face can be horrifying at night . After an hour Mindy was holding her baby- girl and Peter was trying to realize what had just happened . This kind of transport is regarded as a convenient way to travel . However , I disagree with this idea . On the one hand , it is environmentally friendly to use public transport rather than cars . Although I rarely watch the show on TV , I like the way they are trying to keep up with modern technology and that they are always making boring news so vivid and interesting through short video clips , pictures and their choice of words . They had all got special clothes and dressed up in colourful , old - fashioned dresses . Its historical importance lies in the fact that this place represents the fall of the Muslim kingdom in my country . After a few drinks , I told him that I 'm currently looking for a job , nothing big , just a couple of hours during weekends to make some money for my journey to the Netherlands . It 's literally 10 - 15 hours on Friday nights and Saturdays , stuff like carrying instruments ( which means hanging out with musicians ) , tidying after ( finding things , like wallets and cellphones ) and , generally speaking , - helping . I 'm a chemist , I ca n't kill people because I want to . However , their whole lives will be turned upside down when an eligible bachelor and his friends set up home in a nearby mansion . Friendship is overall an act of will . Friendship is a type of love which is characterized by being unconditional , reciprocal , and ready to forgive each other . Since ancient times , public transport has existed , and it suffered numerous assassination attempts . In China , for example , the dynasty Yuan prohibited public transport ( at that time , chariots ) because of fear that Han people could plot and riot against the Mongol 's dictatorship on it ; the situation was reversed in an early socialist regime when , in 1960 , Mao considered personal cars an instrument of oppression and symbol of devilish capitalism . Convenience has little to do with the fate of public transport . Countries with high HDI ( convenience to be drivers ) , like Germany and England , are those with better public transport systems , and they are even boosting them . Hi ! My name is Alexia , I am twenty - three years old and I live in Argentina . As I have already said , I play sports , and that is why I could be helpful at organizing sports and evening activities . I learned how to cook when I was eight , so I am pretty confident and well prepared . Bad sheets and bank notes will be securely destroyed . My goal , I decided then , was to become a pilot when I grew up . My mom has a kindergarten and I love helping her out . Every summer I help on my mom 's summer camp , but it 's a summer camp for babies and I would like to work with older children , because I think it 's more challenging . I would love to work at any place across the US . I am very good at artistic things , such as , drawing , painting , cooking , dancing and a lot of other things . My cousin , who is studying English Literature , told me that you have much more freedom when you start university , so do n't worry ! Language itself also becomes vitally important : the boy s ' speech is peppered with made - up words that highlight the isolation . There must be something very special about a movie when , after the third time , you 're still leaving the cinema thinking " I have to see it again " . Starring Italian comic Roberto Begnini ( who also wrote and directed the movie ) in the main role of Guido , this life - affirming tragi - comedy is about a Jewish father trying to shield his young son from the horrors of Nazism in the Italy of Mussolini . To achieve this , Guido creates an imaginary game for his child once they are deported to a concentration camp . The strength of the movie relies on the goofy , loving , eccentric character played by Begnini , his exceptional comic talent and his ability as a director to deal with such a delicate topic as Nazism while managing to drive through a thick line between comedy and drama . Honestly , I could not agree more , as the website as it is available today is an inconvenient tool providing insufficient information . If you haven't been yet , you should definitely do it . I promise you will love it ! But most teenagers are even more intelligent than adults or elderly people . Sometimes it happens that a couple who have a child aged from 12 - 16 , quarrels . Teenagers also have to make serious decisions like choosing secondary school , future job , which way they will go in their life , if they want to be in a relationship with someone . Thirdly , I do not have to be concerned about the loss of quality of photographs and pictures . When we thought that the night had ended , we had the perfect dessert . One of Slovenia 's qualified sommeliers will help you choose from the good wine cellar , so this is the place where I recommend our class can relax , eat , drink well & enjoy the happy atmosphere . For example , in India and China the technological advances have enabled them to mass produce really affordable cars , which are also imported . After eating a delicious salad and drinking tea , she went to her room to do her hair and put her make - up on . Lancaster is situated close to the Irish Sea and just around the corner you will find the stunning Lake District with its romantic lakes and peaks . If you leave the main roads and turn into the little alleys , you will find charming tea rooms and gorgeous antique shops with a wide range of antique goods . I did that for three summers and I still help out at my parents ' restaurant when a they are in need of a hand . from her outer appearance , she seems like a little girl . Talking about her outer appearance , one can easily see that Scout is not " the usual " girl . Instead of celebrating it , she somehow inhibits Scout 's learning . The most important ones are probably hotpots : mashed potatoes and vegetables , often combined with smoked sausage . In today 's intercultural world , one of the best assets people and nations can have is tolerance and a deep appreciation of cultural values different from their own . However , it is probably a truism that reading about or watching films about a country are only pale substitutes for actually going to visit a place and experiencing the differences yourself . The article " Stairways to Heaven : Gothic Architecture , Heavy Metal , and the Aesthetics of Transcendence " is an unparalleled one in terms of the discussion it provokes . I competed in singing competitions when I was younger and I took acting classes . And finally , the moment was there , the opening night . I put on my costume and walked on stage . I had to wait until the curtains opened . A clear example is that watching television in another language is of vital importance if you aim to learn new vocabulary or improve your comprehension skills , and it makes studying a language really fun and enjoyable . Kachl 's Park is a perfect place to spend some time walking along paths , sitting on a bench , talking to each other . Security against terrorist attacks was promised to be stepped up , but policemen are not seen in the streets and neither are security cameras . If you have strong nerves , do your window shopping in Bahnhofstrasse in Zürich . Usually he was energetic , full of confidence , ready to party . He was not stupid , but you could not expect any pearls of wisdom from him . However , all the people in his neighbourhood feared him because of his past . In this way , he moved to his new neighbourhood where everybody respected him . Although he had been trying to hide this , his personal problems were obvious and Magda did n't feel happy with him . This means you can set the time you want to leave , because you do not have to respect a specific timetable . This way you will have the chance to have a more relaxing journey through the countryside , traffic will not be so intense and aggressive , and finally , you can plan the time you want to arrive , using a GPS or other technology to help you plan your journey . To sum up , travelling by public transport can be advantageous when you travel inside a town , but when you have to travel outside your specific territory , nothing is better than a car . You can tell because everybody looks at her like she is some crazy murdering kid . If I have to , I search the web for information and implement it but it requires time . His name is John , and like me he is doing a degree in Physics Engineering in the hope that someday he can work at a research center , such as CERNE , conveniently located a few miles away from his house . But getting used to the Internet 's rules of communication , they might find it difficult to face up to reality , and make friends in the real world . Using messages , people forget to use grammar or even form full sentences . There is also a building which can be considered an interactive museum . In a very interesting way you can find out something about the history of Siemianowice and about mines . One day I dreamt that I was a millionaire . I bought a huge detached house surrounded by tall trees in a beautiful city , maybe in a city like Seville . I enjoy participating in debates . If you would like to take my application further , then I would be pleased to hear from you . All in all , I think this would be the best restaurant for our class to go to , since it 's close to the school , it has good prices and a friendly ambience . You only live once and wasting such a great possibility is unthinkable . We are slowly but inexorably loosing readiness to solve problems , unless we can surf the Internet , so that even a single day without technology would turn out to be a nightmare . In my view , we should all reconsider the role that computers have gained in our lives . In addition , my knowledge acquired by managing a bar and a certificate in hygienic food handling will guarantee a clean environment in your bar . Now we are going to evaluate the main characteristics and differences between a pellet stove and a pellet boiler . As mentioned above , the heat is necessary to warm up the air that , thanks to the fan , will be blown out to the room in order to warm up the external ambient ( e.g. room , bathroom , kitchen ... ) . The structure is pretty much the same as the pellet stove . The difference is that , instead of a fan , here we have a pump due to the fact that the goal of the boiler is to warm up water and send it to the heaters all over the house , so it needs a pump to do that instead of just a fan ( the purpose of a fan and a pump is the same : move fluid from a point A to a point B , but in one case , you have to move air and in the second case , water ( they have a different density : water has 1000 times the density of air ) . Then with TVs , information started to spread faster and faster until our contemporary instantaneous reports from across the world in the palm of our hands . Sometimes , it seems we have reached the pinnacle of existence . I 'm sure the pharaohs of Egypt felt that way when they gazed at the Pyramids . Firstly , online learning conveys flexibility in its schedule . Students can attend courses when they decide , but always respecting due dates . Consequently , both learning options have their positive and negative aspects . Public transport is always going to be slower , less flexible and much less convenient , but we have the reassurance that we are doing what is best for our planet . These people believe that over the next few years we will see a severe decline in the number of people using buses , trains , trams , etc . to get to places . In my opinion , this is disappointing for a number of reasons . Imagine going to work on a rainy day : you have one hand on your umbrella and the other clutching your bag , the wind is blowing mist on your face and a puddle of water is sprinkling tiny dots of wet dirt on your stilettos while you are making your way to a bus stop . He walked up to her room , where she was comfortably sleeping in her bed . When I was in school I used to go to my grandparents ' home to have lunch because my parents were at work . I fondly remember my grandma 's great cooking skills that she still has to this day . By the time my high school years were done , and when I attended university , I developed a certain predilection for typical healthy Spanish food , unavoidably combined with less fast food due to the usual dinners with friends . The cost of the waste disposal service depends only on the volume of non - recyclable waste produced . There are also public containers for glass and clothes all around the village . Michael had a chemistry test the next day , but he was n't in the mood to study and so he decided to call Alex , his best friend : - Sounds great . Michael grabbed his coat and crept out of his house in order not to wake up his parents . He remembered that he still had n't studied for his chemistry test . If we think about it , the car is better because we do n't need to wait for it like we wait for the bus or underground , but on the other hand , cars cost more money than public transport . In a car , we can just be by ourselves , which can be good because we can listen to the music that we like and we do n't need to be around people that are unknown , but if we choose public transport , we can meet friends or family , so both modes of transport are good , and cars do n't need necessarily to bring an end to public transport . But , even if it 's true that it 's the fastest option , you must be very careful when it 's time to get off a plane . If you are looking for comfort and relaxation , obviously , you have to take a boat . There is n't any comparison with watching the changes in the landscape through a window , enjoying the route that you are taking and , the best part , the cheapest way to get away some days and take the routine off some days . I went to the abandoned house and started to think of the best way to make his life miserable . I spent the next 2 weeks looking for ideas to make him suffer . As I did n't find anything , I went to the place where he lived and started to look for some information about his life and find people who he cared about . So as I continued to go to his house , I noticed he would always go to the same house , s I decided to follow him to the house and I found out he was dating a girl . She might be his girlfriend , so I finally got an idea . I would drive him crazy just as he did me . That way she would think he had problems with his mind and leave him . But soon i thought about it again and realized that if I did that she would try to help him and they will be more united , so I decided to drive them both crazy , almost to the brink of death , just as he did with me ! I screamed . My anger had dominated my mind . I did n't have any control over my actions . I was afraid of what I had become and what I could do , but I could not control myself and the only thing I could think of was him suffering a slow death and the satisfaction I would feel when I finally had my revenge . The best revenge . But I was so mad at him and so anxious to make his life impossible , and soon my fear of death and my anger for all of the suffering I had been through became stronger and greater . I had made a decision and I was going to do it . If he dedicated 4 years of his life to torturing me and not wanting me to be happy , the time is necessary for him to have a miserable life and I wo n't stop until I have accomplished my goal . I graduated from National Taiwan University of Science and Technology . I am interested in looking after children and playing with children . I always smile at people . I want to play with children and see their smiles all day . This conclusion becomes more prominent if we look into the data of the car companies and the exponential growth in their sales figures and , with low budget private cars in the picture , the scenario has drastically changed in the past 10 years . At our school or village football stadium I spend a lot of time every day . I want to give advice to anyone who starts this sport : " You must believe in yourself " . Hallo my friend , You regret that you were n't there with me . I 'll try to describe everything precisely , because I know that you very It was a long time ago , but , I still keep the rhythm in my body ! Around the city , you can find many places where people throw fridges , ovens , " amianto " , old things or furniture . I remember , when I celebrated my 15th birthday , only one schoolmate wanted to come to my party . I think that that day was one of the worst days of my life . I 'm learning a lot and the students are very friendly . But I need to study harder because I want to pass the exam , and it 's very difficult . Technology has changed people 's lives a lot . In fact , we can think how different our life is compared to either our parents ' or our grandparents ' lives . For example , my parents did n't watch TV , because there was n't any TV in the world when they were young . But that is n't the only difference : we can think about the mobile phone , the computer and finally the internet . Our grandparents could n't have imagined a strange machine like the computer in their lives . So the best way for them to travel is public transport . Each person should practice saving energy when using any source of energy to protect his own life . In conclusion , investments in developing public transport will be increased considerably . Public transport services have a bright future and their existence in the future ca n't be replaced . Are you free at the weekend ? Have you got any plans ? If you are interested , meet me at 8 o ' clock near the cinema entrance . Jason is my friend , he is drunk and he also dances with his girlfriend . A friend of mine recently explained that if a zombie apocalypse should happen , he would be prepared because he has been watching Walking Dead for some time now - so in his eyes , he learned how ( not ) to act in that case . Apart from educational content , there is so much bad content , business advertisements and fake information on TV that citizens wo n't be able to tell right from wrong . First of all , you need to be able to afford to buy it . After that , you must pay for the insurance , road tax , and mechanic 's bills , and so on . On the other hand , with public transport , you only have to pay for the ticket , you do n't have to drive , and if the bus or train or whatever vehicle you use breaks down , it is n't your responsibility . The next day , Huck went to Tom 's house to tell him that there was an abandoned house up the hill , so the two boys considered like an adventure . So they went to the mysterious house and when they were inside they heard voices , so Tom and Huck hid and they saw that Injuin Joe was the one that was talking . So he went back to Sarah 's house and cleaned the whole bathroom , but Sarah already knew that he had left the bathroom like that , so before Michael entered the bathroom she said : " I know what you left there " and Michael went running to the bathroom . I like my maths teacher very much because her teaching style is very realistic and simple to understand . I said that because when I was eleven my best friend had an operation on her back and , before the operation , he came with me and , every day , I had to wait for her because she spent a lot of time in the shower cleaning her long hair . I hated that ! I have a dog and its name 's Chente . It is a golden retriever . Also , I have a brother whose name is Jose Luis . He is twenty years old , his personality is dynamic and funny . My mom and my dad are good people . Another thing that you must know is how to deal with people . We are searching for someone who can impress everyone , also someone who can give the customers good attention and service . It is easier than you think . Every Sunday , we do a mutual cooperation where anyone can treat rubbish as well as they treat themselves . Meanwhile , we recycle inorganic rubbish too . First , I agree with the given statement that there will be a tough time for public transportation in the near future , because people want privacy as well as freedom , which is quite impossible on public transportation . as much as possible of the city or town which mismanaged routine for people who travel by public transportation . As a consequence , generally , people avoid travelling by public transportation . Finally , I can say that there are various modes of transportation available which play an important role in giving tough competition to the government . As a result of this , the consumer gets more benefits , like lower fairs , privacy , freedom and safe travelling . In addition , many automobile companies launch new cars at affordable prices , which encourages people to use more and more private vehicles . Usually there are generational problems ; sons do n't understand parents and vice versa , but by talking and listening to emotions and facts , everyone can have another point of view . It will be very cool to see the last part of Mokingjay ! In my opinion , it 's very difficult to find this advantage with other sports . He took the money the next day , he finished the registration and started writing the story . After spending a long time writing and doing a good job , he went to give his story to the international student magazine office . He found out there was a notice on the door saying that the competition was canceled . He came back very sad and told me what had happened . Michael closed the door and knew at that moment he had made a mistake . The vandalism in Patras has increased a lot . In my opinion , the police should stop the vandalism . What they will do in future they see as in a fog . Secondly , such a year off would give future students a chance to try themselves out in new professional spheres . Also , they would have an opportunity to be involved in volunteer work . This year - long holiday would be really helpful for relaxation and getting new energy for further education . I believe that there is no future for public transport , using trains is more convenient and less expensive , so to decrease the carbon gases which are affecting the ozone layer , people should be aware of the effect of using public transportation on the economy and environment . Governments should encourage people to use other modes of transport . This subject should be issuesd in all media to teach and encourage people to use the right mode of transport . Because if we are Chinese , why do we give up our mother tongue and learn about our own culture through a foreign language ? Woolypools is a specialist of meal , it 's a meal restaurant . With the sweeping progress of development and the booming of populations , a lot of agricultural land , forest and ocean has been used or destroyed to build more buildings and transport networks . To start with , there are a wide range of problems it may lead to . Additionally , people now continue to destroy more agricultural land and forest in order to satisfy all their needs , which will destroy the ecosystem , diversity and biodiversity , especially the endangered species . In light of the problems mentioned above , there are various approaches that governments should adopt to deal with this problem . First of all , reducing building construction from now on , and planting more trees instead . Sustainable development should be awaness to all human beings and start to protect the environment and preserve the animals . To sum up , this unpleasant phenomenon and its problems should be worked on to resolve them before things get worse , and the governments have to take the responsibility for that . I took that decision because I was tired of trying to learn English and I did not have the level that I wanted , so when I heard about that opportunity , I said yes . I want to say something about learning the English language . It is hard for me for the following reasons : First reason : the grammar that teachers or institutes teach is like the Spanish language , my native language . I want to say that it is very difficult to understand the conjugation of the verbs in Spanish , so just imagine the same but not in your native language . Second reason : in English syntax , the rules for constructing paragraphs or sentences , the verb is written before the subject , but not always . What is the rule ? I can recommend you to my uncle 's company to get a job . In view of my age , evening activities are not a problem for me , and I have played many sports during my life , such as soccer , volleyball , ... To sum up , I still consider having your own car way more safe and convenient . Even if it happens , there are many people who ca n't get a car , because it is too expensive , not only to buy , but for fuel , service and so forth . Whether tourism has had a positive or a negative impact on our lives , it remains quite a dilemma for the ignorants . Alongside its development , the ability to travel has become easier to such an extent that it is now quite common to commute from one country to another . The existence of multinationals is tightly connected to the idea of tourism , as well as to the idea of globalisation , since a traveller is not just a citizen of his own country , but a global citizen . There are countries , such as Greece or Bulgaria , in which the economy relies completely on tourism . If tourism influences the economy , it thereby influences the environment , and if it influences the environment , it influences transport . How ? people become more careful at their historical sites , thereby preserving them . Transport is developed both on a small and a large scale . On a small scale , in cities , in a way which will allow citizens and tourists alike to reach important places more efficiently . I would like to go to a new artist rolls competition , although in my city there are n't a lot of competitions of this kind . If I had the possibility of going , I 'd already buy the tickets . At the beginning I went to the kindergarten and they taught me to ski . My father took me between his knees , because I could ski without falling over and it was fun . I had my first snowboard lesson and I loved it . I enjoy snowboarding , because you feel free when you are going down the piste . You are very happy and sometimes I sing a song and the world is perfect . No future for a public transport ? Is this claim true or not ? I think that it all depends on the development . Yes , I agree , if you planned the journey for a faraway destination and for a long time you would prefer to do it by car , because , firstly , you 'll spend less time , your journey will be comfortable , you 'll have the possibility to stop any where and for a long time , as you need to . But if we are talking about travelling across your city , would you prefer public transport or car ? I think that this is the question for everyone , and there ca n't be one answer for all , because one person can use public transport , and save in this way not only money , but the environment , but some people do n't like to use p.t . because they spend more time travelling or they simply do n't like to travel with other people . guide people and give them information , details and guidelines about pollution . I 'd like to tell you about my favorite restaurant . It 's name is " Lemon " . I go there every week . It has different food to other restaurants . I like crispy chicken with garlic sauce . It 's an excellent choice for me . And my favorite appetizer is sausage and in order that dessert I like " Vadge " cake with chocolate sauce . I feel at ease when I go there . I enjoy classical music while having lunch . About the service : it 's very good and all the staff are respectable . I ca n't imagine one week without going there . That would drive me nuts . I advise everyone to go there and enjoy their time there . Also , this restaurant has a relative advantage in hygiene really . It 's excellent . The striking thing for anyone , is that despite all of these advantages , the prices are not expensive . Volleyball is my favorite sport because when I am playing with my team , I am in another world in which I can be free and happy . Apart from this , when I am feeling bad , this is a distraction from university . You should try playing , it 's such fun , but I warn you , it is not easy at first , but you have to try many times like you should do in life . On weekdays , I get out of my bed at 7 in the morning to go to my work , which starts at 9 AM . In the newspaper , he read an interesting notice . The notice was about a competition . The story was very good but Michael did not know how to end the story . Public transport is usually restricted because of the timetables and you can only use transport at the time that the timetable lets you . I felt like a star ! Crowds of people were waiting in front of the dressing room for autographs , but only me and my sweet girlfriend got them . Advertising is everywhere . TV is the most accessible means of communication and people can see the messages in this way . It was really important to him because he had been training for 5 long years since he was 15 and he had n't achieved anything . As our town is well - known for our magnificent beaches along the Mediterranean coast and for the Olympic Canal of Castelldefels , many foreign and local people come here to do activities like kitesurfing and windsurfing at the beach or canoeing and waterskiing on the Olympic Canal . Well , the airport is located just outside Reus . It 's small but it has a lot of services and transport . With the purpose of attracting more people to join the club , besides its good points , I would highly recommend that they should arrange the time suitably and avoid they hold the activities to avoid problems . Designing the bank notes is the first and indispensable step . People should decide the background colour and the artwork and they have to consider the security issues . As for good quality sheets and partially damaged but still good sheets , people will cut them into separate notes and pack them together in order to dispatch and distribute the bank notes . If the partially damaged sheets are bad , they will be treated as bad sheets , which will be securely destroyed . Everything began a few years ago , when Alfred , the Mayor , read an article about the importance of the surroundings to the health and happiness of people . You probably wo n't believe me , but I met all the members of Dżem band . I talked to them and we had lunch together . They 're very nice men . Because of helping them , I had the best place during the concert and I have their autographs on the latest record . I did n't have many duties and none of them were unpleasant . I am keen on cinema and I love to watch all types of films . In addition , I think that the settings are very realistic and the actors gave a great performance . Although I am a young girl , I think I am a qualified person for the post . I am a preschool teacher and I have experience looking after children from 3 to 12 years old . I consider myself quite patient and fun . In my opinion , they are two highly necessary qualities for this kind of job . Although privately owned cars are more and more popular , and they are increasingly becoming a common asset even in developing countries , it is not likely that this means of transport can be the means of transport of the future . The flight was approximately five hours during which I watched beautiful movies . In New York I ate so much . I also went to the city that never sleeps : Manhattan . My aunt gave me a lot of presents because she said they do not see me frequently and many other members of my family . In conclusion , I had a perfect vacation where I saw new things , visited awesome places like Niagara Falls and Time Square , received a lot of presents and , especially , ate a lot of delicious food . In order to enjoy travelling to Mexico , I would give two important pieces of advice ; first , try to get along with your travel companion and enjoy the Mexican food instead of criticising the spicy flavour . In this way , visitors will be able to enjoy Mexican food with less pepper and the same delicious flavour that is so characteristic of our country . Also , this phenomenon of taking photographs is part of our daily life , because it is the best way to capture special moments like birthdays , travel , special occasions , etc . What if you do n't have any of those requirements ? Then you know hockey is the answer . Nevertheless , it is never enough , because dog owners are mostly to blame . We live in a cottage and we have several bins which are classified according to the material we want to recycle . They occupy too many seats , including priority seats . Moreover , some old people might take this considerate action for granted and they might even command young adults or students to offer their seat without manners ! I have also worked with large and small teams in back - offices , managed many administrative activities related to mortgages , personal loans , contability and investments . We are told about a lot of innovations in this sphere . There are a few reasons which show you why it is important to learn a foreign language today . Second , for finding a good job opportunity , the business exchange is increasing at the international level . If you speak a foreign language , certainly it adds some value to your profile and you can get a higher salary . Dear Sir or Madam , On the one hand , holidays are the best for people in terms of thinking clearly about their experiences in life . The reason is that people must complete their tasks in order to earn more money to maintain their lives and they forget about these emotional feelings such as love , helping people or thinking spiritual thoughts . I have worked in an Easter camp too , and I have already organised a lot of activities , like " rappel " , paintball ... What an unforgettable day ! Swimming as a sport is very useful for weight reduction if you are obese and need to reduce your weight . It is also the best sport for asthmatic patients , because it strengthens the chest muscles and decreases the vulnerability of those patients to respiratory infections . I saw so many interesting things during the preparation time . Regarding advertising , technology is having a huge and not always positive impact on outdoor advertising . It will suit me sometimes , and it will even be useful , but I 'm also sure sometimes I will find it aggressive . The way it feels aggressive to enter a square or plaza in my town and find it full of bright screens , no matter how beautiful or artistic the pictures displayed are . But , technology is here for better or worse , and we have to learn to deal with it the best we can . I 'd like to have a big detached house in the suburbs of Artem or Vladivostok . If I had this house , I would decorate it in a modern style . It costs less money and you can choose exactly the moment , where and with who , to watch this or that television program . Actually , students eat a lot of fast food while they are studying at university , because they do n't have time to cook food . For these reasons , I think that the best restaurant is somewhere where they do home - made food , and a good idea for the main course is : baked potatoes , steamed vegetables and , for dessert , apple cake . They are incredibly delicious . She was eighteen years old , she had to be independent . She went there and there was the doll with a knife in her hand . ' ' Bell , why do n't you play with me anymore ? Are you bored of me ? Just because I have only one eye ? But you removed the other one . The girl had a knife in her neck and on the wall there was a sentence , ' ' Why did you leave me that way ? '' You can even talk with native speakers by using some Chat Rooms online such as Skype and others . One thing you should keep in mind if you want to play football , is that you have to be ready to receive some punches . On one hand , becoming a public figure is associated with journalists , mass - media , flashes . It seems to me that journalists might be absolutely toxic and they have a bad influence on society , which assesses celebrities through the prism of journalistic documentary . The value of their talent and abilities is measured in the amount of tabloids scandals . When I worked as an educator , I used to plan and manage some sports and outdoor activities . The same with my parents ; they are old and sometimes they call me to talk about their health . Concerning video - games , I agree with scientists that think it helps children 's brains to develop , but it is important to supervise them , because there are a lot of violent games . DOING EXERCISE IS GOOD FOR YOUR HEALTH Doing exercise is an important thing to do in a healthy and happy life . While you exercise you feel well in yourself and in your body . Soccer is a great sport where you can make a lot of friends , you can stay fit , but you also need some skills because it 's not easy to control the ball and dribble your rivals on the field . I know that catching a celebrity doing cleaning or taking a dog for a walk is shocking news for people who read tabloids . So , as you can see , I agree with the statement that famous people , who are recognizable , deserve to have a private life and the ability to have a normal life should also be given to them . Once per week on Wednesday , rubbish is collected . That is a very good idea , because that rubbish undergoes recycling . Everybody cares about cleanliness in front of the house and in the garden . Marginalization has a link with the illegality of this activity . I am writing to apply for the post of summer camp counsellor currently advertised on your website . I speak English , German and Polish and as a counsellor that is very handy . I am hardworking , reliable and well - organised and I can take control of difficult situations . I am talented when it comes to entertaining people , which might come in very useful in my role as a summer camp counsellor . I 'm seventeen years old and I 'm an electronics student from Italy , in the north . Recently , I started studying English in particular because it is the most important language in the world , so I need to know it well if I want to communicate with other people from other countries . Mar Azul Restaurant , in the north of Mexico City , was the location for the fourth day of Puerquitour . After her 18th birthday , Anna felt a sudden need to know what happened to her biological mother and why she gave Anna away . After finding the adoption papers , she contacted the adoption agency . She convinced the lady at the agency to give her the name of the biological mother of " her little sister who had a disease and needed to know if her biological mother would be a match for a kidney transplant " . The importance of working hard to achieve goals and practicing regularly to become good at something are also demonstrated by professional sportsmen . For instance , if my goal was to increase young people 's awareness , some strategies could be to increase online social media presence by posting regular updates about my language school on Twitter and Facebook or to offer discounts for siblings . The last step would be to recruit a staff of professional , experienced and qualified teachers and to set an attractive and reasonable price for the services I would provide . Undertaking a scholarship and admission to one of the universities I have selected above will provide me with the opportunity to apply the knowledge gained at high school in a business setting , as well as develop the communication , organisation and numeracy skills I acquired at high school . In conclusion , I can assure you that I will be a capable and dedicated student who has the commitment and dedication to work hard in order to be a graduate , whilst at the same time , contributing greatly to my chosen university in more ways than one . Despite these two being the most popular sports amongst athletes , many more are just as interesting and beneficial . For example , things might not go as they had expected for multiple reasons , such as not having enough money or not getting a job . In addition , we had to have one year of volunteering in a Youth Supervision environment in preparation for our final assignment , so I am able to be a member of your highly - skilled staff . Since I was 13 years old , I have helped my parents with bringing up my four younger siblings . I have a friendly , happy personality and find that I enjoy the challenges of working in youth environments . Max and his friends took a walk under the trees when , across the river , they saw something that looked like an animal lying on the grass."What 's that ? " , Max said aloud . It 's about a teen couple who are dying of cancer , and they have different ways of thinking about life and death . This movie touched me very deeply , it made me think about life and about the way people usually live without appreciating the really important things . It is a cyclical process . Rome had its heyday in the first century AD , but just three centuries later , it was only a shadow of its past . One day in the future , another Franz Ferdinand could be killed , and that symbolic event could serve again as an excuse for some country to declare war on another , but the true underlying causes that actually led the countries to wage war against each other would have their roots in much older times . As the causes of the Second World War had its roots in events that were the outcome of the First War , a Third , hypothetical war , could have its roots in a past conflict that may well have happened already . During the next centuries it was expanded , and in the 16th century , finally rebuilt in a Renaissance style , which has remained unchanged until today - the most representative remnant is probably the famous arcaded courtyard . During the tour , the visitors are shown several rooms and apartments , as well as the Royal Private Apartments with world - famous tapestries of the Polish kings ' collection . Everybody say it 's the best period in our whole life ; what they do n't remember is that it can also be the worst . This could be one of the reasons why we get angry so easily and so often with our parents : every time we discover something new or we say something , they judge us or they begin some long speeches to try to change our ideas . As I said , adolescents can be very confused and if there 's one thing that gets under our skin , it is when moms say something and then tell us to do the opposite . That kind of love that we see in movies and we dream of ; the type of love that does n't let us fall asleep at night . Travelling by car is also much more convenient . In conclusion we can say that , from the standpoint of doctors and nurses , working abroad is a much better deal . Dangerous dogs who were trained to kill and maim in similar underground dog fights have already proved deadly to innocent people . The new boxers could be even more at risk . There are all sorts of proposals ; lighter and more cushioning gloves could be worn , ban punches to the head , headguards worn , or make fights shorter , as most of the serious injuries occur in the later rounds . These would all show off the boxers ' skill and talent and still be entertaining to watch . However , such a rebellion can not be seen clearly in each minority work , and , therefore , the products of ethnic American literature can not be categorized as merely the result of years of oppression . Emphasis changes with each work , and although figures of authority are particularly oppressive in works such as Like Water for Chocolate and The Color Purple , other minority works including Love Medicine and Jazz do not reflect the clearly defined authoritarian figures nor the obvious rebellion of the characters ' responsive action which the previously mentioned works show . This again implies that these ethnic American pieces of literature can not be categorized as merely rebellious responses to oppression , but as individual reflections of personal and cultural experiences . Philosophical optimism -l'optimisme- is the philosophy that everything and any occurrence is for some good . The supremacy of Parliament will never be challenged . But with the average jingoistic Briton there is no chance of us curing ourselves of our xenophobia and ever wishing to be fully integrated with Europe . In fact , in political , economic and defence terms , I feel this reallocation of resources can and will be very positive . Whilst , to a certain extent , I may be guilty of having an island mentality , I would n't go as far as to say Britain is in danger of handing all control over to faceless bureaucrats in Brussels or Strasbourg . This process will continue and Europe and the rest of the world will evolve with or without the participation of Britain in this process . In relinquishing and thus centralising certain powers , the aim is not to diminish the strength of individual nations but to increase the overall impact of Europe on the world stage . It is up to Britain therefore to accept this fact and to show an example by leading the way as regards tolerance . These superpowers were economically , militarily and politically stronger than the divided individual European states . Whether or not the continuation of the progress in the field of European unity is successful depends very much on the people of Europe . To remedy this , the government has started adding a fourth lane on some stretches of our motorways and constructing ring roads and bypasses , with mixed reception . The inability to cope with the amount of traffic on the part of the road system obviously increases the risk of drivers having an accident and the drivers have to be constantly alert as they are nearly always in capacity traffic . It might seem an easy solution to this mayhem would be to use public transport ; i.e. the railways . People are not taking to the rail system because of its lack of integration due to the recent privatisation of different areas . Then people would be more likely to catch the train , as they would not have to look forwards to a long walk , wait for a bus or pay for an expensive taxi ride . My solution to the problem would be to improve the rail system and its related bus services . This would get people off the roads and onto the trains . To improve the rail service , trains have got to be timed to arrive and depart at key times , i.e. arrive at eight o'clock and leave at half past six . The train and bus companies have to liaise with each other and the train fares have to remain relatively cheap , i.e. the same price as or less than it would cost to go by car . The basic dilemma facing the UK 's rail and road transport system is the general rise in population . Most large cities have managed to encourage commuters to use public transport , thus decreasing major congestion in rush hour periods . Another major problem created by the mass of vehicular transport is the pollution emitted into the atmosphere , damaging the ozone layer , creating smog and forming acid rain . Torturing the Earth we are living on . To illustrate my point , if every time you took a train , it stopped for 2 hours on the track , everyone would stop taking it . The most likely answer lies in 2 areas . Firstly , the attitude of many westerners is that it is their right to travel in such a manner . I am by far and away no ' greeny ' who wants to make everyone live in teepee s and eat soya bean soup . However , I do agree that something should be done about the volume of traffic that is on our roads today . Do we , the western world ( 5% of the population of the world ) , have the right to use the resources of the rest of the world at this environmental cost ? Just because we can not be bothered to get out of bed a bit earlier to catch public transport . That could have disastrous implications . The 2nd reason , is the problem that the public transport service , for example rail , is declining so much ; there is no train to catch in the morning . This has now been intensified with the sale of the railways to private rail companies , profit motivated . The vital , small rail links may now be closed , whereas previously they where subsidised to make up the loss . Now the private companies can not afford to do this , so many will close , cutting off small towns and villages . The only way to stop the circle will be to break it , and the only people to do this is the government or ourselves . If we make the effort to use public transport , it will expand into a good service . Unfortunately , the public seem to be apathetic towards this idea . Although it may sound cruel , I do not believe that any fighter has entered a professional boxing career without knowing the risks . The boxing federation is trying to do as much as it can to make the ' sport ' safer : having ringside doctors , banning bare hand fights , but the top and bottom of the argument is that any blow to the head causes considerable damage . A recent death in the ring has inevitably led to a public uproar on the safety of the sport , and the controversy over whether the sport should be banned or not is yet again at the forefront of discussion . The family , who were originally against the idea of their son finishing college early to take up the sport , would be leading the protests against boxing . This hypocritical view is shared by so many that whether boxing should be banned or not will remain a controversial issue for the foreseeable future . The lottery has also suffered allegations that it is addictive , especially with the introduction of scratch cards . It has been claimed that it is so addictive that people will spend all their available cash on lottery tickets , only to be disappointed . It has been calculated that only 4 pence out of every pound received by the lottery goes to charitable causes . The rest is tax the prize fund , profits , and the so - called charities . It has also been calculated that the chance of winning anything substantial is one in millions , i.e. highly unlikely . It has also been alleged that the jackpots are too high . Most of the lucky winners have said themselves that the jackpot had ruined their life , alienating them from friends and family . In conclusion , I think that the lottery should be retained , but not in its present form . I think that jackpots should be capped at 2 million pounds , and the prize fund shared between more people : it is better to give fourteen people a fortune than to give fourteen fortunes to one person . I would also remove any American business interests and give the charity money to a more deserving ' charity ' . The most obvious example of this is the calculator , an instrument used by mathematicians and scientists for making numerical calculations . The world watched in anticipation . We were mesmerized by the images of the TV , expecting something new at every moment and not wanting to miss it . I remember that day it was the only topic of conversation at school : " Have you heard ? " , " I ca n't believe it ! " , " After all this time ! " , " I never thought it would happen . Bolstered by the Germans ' success , the people of Hungary , Czechoslovakia , Poland and Rumania rose against communist regimes as well . Now , three years later , communism as we once knew it no longer exists . The repetition of tapping keys all day and staring at the screen can be harmful and , not only that , it is highly boring to do the same thing over and over again . Whether it be a kitchen knife used to stab someone , a car used to run someone over , or something as harmless as a pillow used to suffocate . Normally , more than 1 egg is taken from the mother so that the eggs can be stored and used later if the pregnancy is unsuccessful or so that more than one can be fertilised at the same time to increase the chance of a successful pregnancy . There are people who are against this , saying it is not natural and asking is it fair to the child to have started life in a test tube , as they believe life starts from the moment of conception . , at what age should the treatment not be given and is it justifiable to spend so much money on in vitro fertilisation for one person when the same amount of money could be used to saves hundreds of lives by vaccinating people against measles , for example . I therefore think it is necessary to have certain regulations i.e . People in our modern times are now able to have liver , heart and even lung transplants . There are many complications but many are successful . The test tube is then incubated for a few weeks and when the foetus is formed , and the baby is then inserted back into the mother . The foetus is left to grow and develop naturally . This idea is extremely beneficial because married couples who have been trying for a baby but have been unsuccessful are able to have children . As the foetus begins its life in a test tube , and the sperm is selected , this means that the sex of the sperm could also be selected . The main reason for the people of Britain to stop eating beef at the moment is the threat of BSE . This is a viral disease that attacks the central nervous system which can be passed on through consuming the animal . Another reason for the British people to stop eating beef is the push for vegetarianism , although this is a much smaller threat to the trade than the former point about BSE . Although British farmers have learned to diversify , dairy farming and the sale of beef products still forms the backbone of British agriculture and would completely change the face of farming in Britain . People throughout the United Kingdom were , doubtless shocked and perhaps upset by images in the national press and television news of cows who had contracted the disease bovine spungiform encephalopathy , or BSE . For beef to be reprieved or condemned , we are forced to turn to the scientists to establish whether or not BSE and CJD are linked , and , more importantly , whether the latter can be contracted by eating meat contaminated with the former . This claim has devastated the British beef industry as people are now too scared to eat beef in case they contract the illness . As you can imagine , this has had a tremendous influence on sales in places such as fast food restaurants , where beefburgers are the main item on the menu . The answer to this question lies in one 's feelings about Democracy . Since its beginnings in the late nineteenth century , Women 's Liberation has been met with adamant , and often obstinate opposition . This ignorance of other less aggressive feminists , made it seem as though the feminist movement was headed only by wild , disgruntled zealots and was , therefore , detrimental to the good of society . Like many other aspects and movements in life , they would be more readily received if the public it was being aimed at was not so jaded . However , throughout the years , television has lost much of its integrity ; the programs offered are usually cheap entertainment rather than education . The entertainment aspect of television has offered society an easy escape from its problems and difficulties . Though it has probably been around for a while , it s presence hasn't really been known until fairly recently , and it s consequences have been devastating . AIDS has definitely had an impact on people in the United States and probably all over the world , because it always leads to death and there is no cure . As a commonplace goal and testimonial landmark to 9 presidential administrations , the cold war has manifested its awesome power and control over nearly every facet of Americana ; from survival kits and basement bomb shelters to an ever - circulating Chief Executive command post from the air . It was also attempted to increase the production of the naturally - occurring antibiotics through synthesis . In part , it has created The Information Age , as the latter part of the 20th century is often labelled . Presidents and dictators alike switch on the channel to receive first - hand information from the network , such as impeachments , coups d'etat or civil wars . 40% of U.S. millionaires are entertainers . Unfortunately , the day will soon come when the damage caused by this apathy will be irreversible . The waters of the culinary seas had been calm and consistent for centuries . Progress had moved slowly like the tides and the constant rhythm of the waves showed little change . However , with the dawn of the twentieth century , a storm brewed . In an age where time is the scarcest commodity , our society has embraced this eliminator of wasted hours in the kitchen . This marvel of technology has helped propel people into the dizzying pace of life that most of us lead in the 20th century . Every morning I listen for the weather forecast and dress accordingly . TV commercials and TV programs project models of how one should be . People are more mobile , can work more , and buy more things , but time for relaxation and family are often substituted with TV . In America , this growing individualistic society , one no longer sees the relative humanness between people , instead one sees the differences , the unlucky , the unsuccessful , and attribute their inability to achieve to a lack of effort . There was a group of scholars in France , l'Academie Française , that set guidelines for French literature . According to l'Academie Française , all literature of the Neoclassical period must follow the rules of propriety which regulated the author should avoid certain topics , including sex , violence , church , and state issues . He told of the two girls of Orellion who were lovers of monkeys , and of the Baron who bathed with the Muslim and was punished for his homosexual act . After the Baron is caught bathing with the Muslim , he receives 100 lashes for his sin . He attracts the hypocrisy of the Church in the old woman 's father being the Pope . Desegregation reduced some prejudice , but it still exists . This is based on equity theory . The opposite of love , beauty , intelligence , light , joy , life and growth are not their familiar antonyms but indifference . When we learn of the trials and hardships that they went through , we can sympathize with their emotions and try to accept that diversity . The stories of black American slaves and of concentration camp victims are necessary to avoid indifference . That 's why I 'm very excited to teach students English ! ! ! I do n't understand why so many people are into this stuff . Anyway , I decided to arrange some nice dates for my friends by / following my own style / doing it my way . I attended Japanese tea ceremony lessons one day a week for three years , before I came here to Japan . I wanted to study more . It was kindergarten level . The roses grew and their flowerpots are now too small for them . Well , I 'm into the Ray Charles song `` Hit the Road Jack `` recently . Strange Japanese Customs ? One example is drinking alcohol outside . Most countries it appears , does n't allow drinking outside . It is very convenient that it 's cordless . Today 's class is the same class which I was n't able to teach because of CHOTA MAJI . And I fall in love with the Library in our school ! ! ! I went to a balloon lecture as an assistant at `` OMOCHA OUKOKU `` . My mother committed suicide when I was only one year old and since my father worked in a town far , far away , I was raised by my Grandma . Because of its particle size , which is less than 100 nm , the nanoparticle has mechanically , physically , chemically , and electronically different properties than that of bulk materials . Japanese marriage system The bride and groom simply go toa registryoffice andcomplete the marriage application form , which has the bride 's , the groom 's , and two witness 's signatures . No picture IDs are required to complete the marriage application form . Somebody else can go there instead of the couple . Because of the system , problems sometimes arise . When a couple go to the city office tocomplete their marriage form , they sometimes find out that one of them ( or both of them ) is already married to someone else . At that time , he was just interested in this class but had no awareness of the importance . It 's a kind of a hot - water bottle , but there are cherry seeds in the bag . So I bought two , one for my feet and the other for my neck and shoulders . This is my first post in English . He joked `` Please buy meat for me when you visit me . Especially chicken for Dak Galbi . `` By the way , a Typhoon is coming soon and maybe a lot of students think , `` Whoa , I can rest a day and hope the typhoon stays in Taiwan . I would like to write a letter to my English teacher , so I want you to correct my English . I drove alone . I 'm not afraid of driving anymore . Next time back home will in many month later , I really do n't want to go back to school in a broken - hearten state , but I ca n't do nothing ! I am writing the diary and doing many other things . I check my e - mail and read my Hi - 5friend 's comments to me . Hi 5 is like Facebook in English . I think It is very famous in Thailand , and I chat with my university friend there . We talked about the job she has . I do not have a job at the moment because I left Bangkok . She lives with her family . I know her because she went to Bangkok to study . I was so humiliated because of our accent during my childhood that I tried to modify it . Because it was a gift from my ancestor . Yesterday I rode from our main campus to the medical college . I took part in a job interview this morning , but after the HR kept asking me questions for about 30 minutes , she told me that maybe the position did n't fit me well for me because I do n't have the SQL skills required . I 'm looking forward to waiting for what Apple will make in the future . But I want to continue studying English every day . Today I felt very happy , because my class was very funny . I also have to shovel the snow around my house , my parking space and my office . . . I just started this SNS . Spring is coming ! Today is a holiday . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittent laughing sounds made by a female , and monotonous , enthusiastic talks by a male , which might have given you an impression ; the atmosphere was not too bad , or too good either . We have n't had a lifetime employment system since the late 80 's . Instead , I 've witnessed powerful harassment like `` You 're incompetent ! `` , or , `` We do n't afford to pay people like you , `` in order to force them into early retirement . Luckily , I have a job and a dependable income . And yesterday , I ate dinner , but I ate two hamburgers late at night . . I have not drank alcohol in a couple days . But now most Japanese buy it at the supermarket and department store . Because there once lived so many people in a family , and the mother and grandmother made many dishes for their children and guests , however , ( nowadays ) there are many nuclear families in Japan and guests are few . When I listen to this music , in particular Marc Anthony , I become one with the melody and I feel really free and every thing around me disappears and I feel only the heartbeat of my heart that follows the rhythm of the music . A Little Hesitant and Nervous Now what can I do for people in MIYAGI ? ? I went to Chibi Canada to prepare for the zombi Walk . I practiced making a zombi face . I think I 'm good at mimicking zombies . All of the animals I saw in Mongolia seemed comfortable . Right now , my favorite song of her 's is `` If I were a boy `` My family came to my house and we cooked carne asada . We were all together to watch Teresa 's last episode , hoping that she would end up homeless and lonely ( like in the original version ) , but to our surprise she did n't . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film that deals with the history of the electric car , mainly focusing on The General Motors EVI . 7 students participated in it and they were great ^ ^ Some students did n't memorize their script enough not to look it but still I thought they put in a lot of effort . I 've studied English in Canada since this month ! Mainly , Japanese teacher taught English grammar , accents and various words . Another boring week is awaiting me . I do n't think they should mention such details about the flight ! Tonight , I will stay inside ; I wo n't go out . For that , I am studying English for many years , but not many . . I would like to speak and write more natively . . Public service personnel is a part of the conscription system . We have to study English now , or we wo n't pass an important test in three years . Also , there is going to be a Japanese school visiting our school . There will be eight Japanese students in each class . And we will teach Taiwanese history about Japan 's aggression towards Taiwan . We have a lot of activies planned for when the Japanese students come . before she had gone , she did not say some thing before as give me anything as usaul , she did it because she sundently had gone . He could n't sing but he could hum and dance and and play the guiter . But when I tried to go there yesterday , it was difficult to drive my car because I had to meet a friend who lives in Seoul . I 'm a pitcher and 5th hitter Our game started at12 : 00 , and I was so nervous . My baseball career is shorter than anyone 's , but I have good physical abilities like fast feet , strong shoulders , and an endurance for pain . The famous rapper known by the Japanese . The reason Eminem is known by Japanese people , is because he was an actor in the movie , 8 Mile . There are many rap music artists , but there is only one Eminem . Introduce myself dreadfully spicy . . . But I do n't understand English grammar . I could not explain `` a certain probability `` in English when I talk to my friends . So I want to explain it here . The probability represents how many people are watching ( a ) particular program ( s ) in each area . I take German and I study various countries ' cultures . So it is very expensive . I like listening to music , like every type , especially jazz , rock , and some nice soft music , some times I listen to death metal too . and also do some reading , which r written by ppl who r not famous but special . . . . This is because I 'd love to visitTAIWAN . Itried to study Mandarin when I was in junior high school . Chinese - characters are used in Mandarin and Japanese , so I thought learning Mandarin would be a lot easier than learning any other languages . However , Mandarin has four accents in one sound ( I ca n't explain it clearly in English , try to understand ! ) . I participated in a web developer 's event last Saturday . But , in a foreign country , does the person who has a birthday treat the guests ? By the way , my Japanese friend in France had dinner at his friend 's Taiwanese wedding party . This temporary job ends on the end of this month . It is uncomfortable to stay in an unfamiliar place . So I had my boss buy some vegetables for me . After I received them last night , I kept them in the refrigerator . : ) I would like try this website out , but I do n't know how to use it . It 's an important professional cycling race . Thanks for your help for improving this passage . I 'm not sure how to tip at restaurant because I 've just moved to America and my mother country , Japan , does n't have such a custom . If I do 3 , should I write the tip on the bill ? I went to the shopping mall because my daughter wanted to go . When I tried to buy the ticket for the film , I was recommended by a clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemort was impressive ! We 're going to move to another building next week so today all my coworkers and I were packing a lot of stuff . I lived with my parents and my elder sister who is now married and raising her son and daughter with her husband . and I 'm learning Japanese tea ceremony once in week . Some people wear kimono often or everyday ( for example , people who are obsessed with Japanese culture , who study / teach tea ceremony , Japanese etiquette or Japanese flower arrangement . . . However , many apanese do n't own their own kimono ; instead they use a service to rent kimono when needed . We do n't do tea ceremony in daily life except when our families or ourselves are familiar with it . when I study tea ceremony , I become eager to learn good handwriting , languages , behaviour , and flower arrangement . When I studied martial arts , I became eager to learn behaviour . As a beginner , you need to have every skill at a beginner 's level . If you progress to the intermediate level in one genre , you need to have skills which are better than a beginner 's in other genres as well . I will try writing about these things I learned . The Tengu 's bodies were like a human being 's , but he had wings and could fly , so we adopted it as a character and our squadron 's good angel of flight . Actually , each squadron 's yearly flight time is assigned by our headquarters . I mean , we were too busy both mentally and physically to take time for others . To solve these problems , I should relax a bit . I got a serious headache this morning sitting in my cubical , so I took a half day off from 1pm . I was very busy in April because of recruiting Even if I try to find a language exchange partner , they will think I 'm boring and bothersome girl . I usually get on a / the train from Zushi station , it 's in next town . I do n't need money , or anything else for that matter , but simply to hear from you about my party . I think you will be satisfied ! various kinds of vegetables that are pickled in a sakekasu , which has a slightly strong sake flavor . I asked her to promise me to eat breakfast before going to the school . His exhibition is held this year in KYOTO . Now , I 'm growing some scallions , turnips , and lettuces . I felt the climate in Japan has been getting warmer and warmer over the last several years . I will try to looking for a pair of cute sandals tomorrow . I picked up my husband this morning . Yes , I 'm thin - skinned . When I watched a TV program and I learned about the store . I can not be here in Kyoto until April because of my job . I realize now how easy the languages we learn are forgotten . I 'm always surprised by those who keep their journals in foreign languages . I envy them . The recent consecutive holidays , which lasted for ten days , are now over . By putting daily events into text , I also aim to review each day and make the next day better . It takes ( about ) 30 minutes from here to Tokyo . I like spicy foods such as the Korean dish , Kimchi . It increases one 's metabolism . In Japan , a sad incident occurred . I will eat at a restaurant in the department store . Incidentally , I enrolled in a temporary employment agency . Although we always have dinner with her , this is the first time I 've invited her on a formal outing . My favourite movie is `` Back to the future `` . To do so , I have to work harder on doing rehab . Trains run every 2 minutes following timetable and if a train is late for more than 5 minutes , we can get a refund . There are chain restaurant whose prices of foods are n't that different from Macdonald 's . but I prefer Chinese . Fortunately , it is easier for Japanese to learn Chinese characters because we use them in our language . It tasted yummy because it was free . I forgot to bring a toothbrush . I have been feeling frustrated to see talented people who can not express their opinions due to English skill limitations . Can you explain thisto me ? Will this phrase , `` th , `` keep going ? My nephew is coming to my home . It was the book I had borrowed once but failed to finish reading because the due date was up . I would like to celebrate the new year in Bangkok though . this movie is really famous in Thailand . The man who running on the elephant is a really good boxing expert who did not use a stunt - man . . . The stationery which is used for erasing pencil writing is called an ' eraser ' in America , and ' rubber ' in England , right ? I ate ayummy bar of chocolate . Write your five items in the comments , if it is n't difficult for you . = ) Canadian Dollar shaped chocolate ! Therefore , I go to Kyoto several times a year with my family . I 've decided . . . The table shows the percentages of water pollution due to four major pollutants in four cities ( Taipei , San Paulo , Tokyo and New York ) in 2003 . Aside fromthem , Tokyoreported `` pesticides `` as the worst waterpollutantwith 31 % whereas theamountwas much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage for `` Erosion `` with 23 % as well as `` Domestic Sewage `` and `` Phosphates in detergents `` , which was larger than that of the other cities . At some points I laughed , and at others I cried . Snow around here is very rare . My English level of conversation is ibetter than my writing , but I need to practice a little more . I do n't mind if your Spanish level of conversation is not very good . I think that together we can improve our abilities Does it furthermore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this website , and I don ` t know how to use it properly yet , but I hope that I will meet new friends , and that they will help me . I would like to speak English fluently , but I do not have any friends who speak English , so I have been learning English for several years , and still my knowledge is not enough ! ! ! ! I often go out to coffee shops . Usually I go to `` Tully 's coffee shops and my favorite coffee is always `` Today 's Coffe `` . Of course , I have a cup of delicious coffee when I go to there , but my real reason for going is not only to drink coffee . to my surprise , when I arrived at his house , I found it to be very clean . Something I like but something I do n't like ( also ) . Umm , sorry , I 'm being negative today , are n't I ? Hello everyone I am back . It said I should follow the sentences from newspaper or book . and then read it again after finished writing . I wonder what clothes are suitable for guests . I heard that Americans give presents from a wish - list ; is it true ? The customer was so delighted that he advised the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' for the sake of prosperous business . I 'd like to communicate with ( those ) people who speak English to study . I 'm going to go to COSTCO . What do you recommend ? After bathing , he always took his teeth out of his mouth . What singers do you like from Japan ? I started studying EngIish today . I 'm not sure if it works but I would really appreciate it if native speakers could point out which words I do n't pronounce well . The recent boom or topic of my works is `` Our company will take the customer experience to the next level with digital `` . But now is the time to use IT for developing a close relationship between our stores and customers . I cooked curry with a pressure cooker last night . I usually push the reset button each time I boot my PC . One layer was a cream cheese layer which was heavy , and the other was a strawberry layer which was sweet - and - sour . You have to know how stubborn your little daughter can be ! ! ! The teacher told me that my daughter is not good at remembering the multiplication of 3X8 and 2X6 . My head was bumped onto the floor really hard so I feel a bit wheezy . My daughter is one year and three months old . In the afternoon , I did my laundry , baked muffins , and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earlier today , and wake up at 4 : 30 as usual tomorrow , preparing for the begining of the next week . I think I can keep a good rhythm for my lifestyle this way . I like drawing with a ballpoint pen . When I was a child , I used ballpoint pens for drawing . So the ballpoint pen is useful for me . Suddenly I felt it was something strange , she looked like she was ill . But I really enjoyed this race . But as I have been exposed to a lot of kinds of English on the net , I really surprised when I heard my alarm clock . I did n't go out except for when I went food shopping . UNIQLO is a brand name , and it 's corporation 's real name is The FAST RETAILING , established in Ube city , Yamaguchi prefecture , in the western area of Japan . After that , I could meet him at around 7 : 00pm . Every time I drink beer or some alcohol , I always feel like going to Karaoke ! My Wacom Graphire3 tablet ( computer drawing tool ) so I 'm learning English because I 'd like to watch movies without subtitles . I love rock - n - roll : ) But I love bossa nova too : D I often hear that many girls have no sense of direction . We have similar pespectives on many things and I found that he 's so funny and smart . Summer is coming soon , so I need to lose weight in a short time . Summer . . . I love it , but I do not love fat ! ! ! It was worth climbing all the way up there , it had a beautiful view . I especially love ramen , ice cream , tempura , and so on . It has been / will be a tough month at the university , but there is nothing I can about it . I enjoyed playing soccer . In the new millennium , with scientific technology becoming increasingly advanced and the disparity between the wealthy and the poor increasing , some individuals link the gap to technology . An empirical point of view , I was really hard pressed to believe how the technology spectrum lead to the wealth gap ; since it goes without saying that scientific technology decreases the disparity between the wealthy and the poor . It is widely acknowledged that the cell phone , as one of the most significant inventions in twenty century , transformed individuals ' lifestyles making them highly efficient and convienient , especially for the poor . I guess I need much more vocabulary and a large amount of reading . Aaahhh I ca n't believe it , spring is coming soon : D . Of course , it 's still snowing , it 's windy and the temperature is - 3 degrees ( Celsius ) . . but the birds are singing , the sun is shining and everyone 's smiling . I liked to see them suck sap we fed and occasionally fight head to head over sap or females in the plastic case at night as they are usually nocturnal . just wanted make fun of that because I 'm tired of studying this language yea I know this lonely diary can also help my studying According to a newspaper article I read recently , people with higher salaries produce higher quality goods than those who have lower salaries . This is my first note in lang - 8 , also is my first time . I am learning English now , but I feel a little sad . It 's hard to struggle with what I want to say day after day , and I do n't know how I can do better . Moreover , I am afraid to disappoint others rather than I myself . However , it is difficult to keep my tension calm when she seems not to hear me , or does the same mistakes again . The sheep was finally found by the shepherd and felt relieved . I am Buddhist , but unfortunately the temples generally do n't give this kind of service periodically for small children . It will lead to the increasing of enthusiastic Buddhists in the future . Seriously , it is super expensive ! I lack of physical activity . When I used to use an iPod Nano , the battery would be drained really quickly . without running out of battery ! My friend told me it was not a copy but a homage . KAWASHIMA will be traded to another team in the Premier League ? I ` ve heard that West Bromwich Albion FC in the Premier League offered him to play with their team . so I will buy the book , Eclipse 's original version . Even though it is still late June , the air temperature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insurance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insurance . I emailed him this morning about tomorrow 's plans . It 's needed to live abroad or you work in company which need to speak English . `` Sometimes people in foreign countries do n't understand them . Tiger Woods has fourteen girlfriends . I apologized with my friend but she seemed to hate paying for it . I negotiated with my friend so I can pay for the meals next time . I think it 's tasty ? I hope to make friends with you ! I talk to my parents on Skype every Sunday night . Skype is very useful , because we can see each other 's faces . For I live in kansai area , my family and I are all right naturally . I 'm not surprised because the March disaster in Japan was broadcasted all over the world . And my friend taught me about it . However , vigorous pictures and unforgettably vivid sound would be engraved in their minds . Stimulating the subconscious may help your memory . Today I had lunch with my colleague . We had a Nepalese curry . If you look for the city on a map , you 'll find out that it is situated in Ural mountains . Some tourists are very disappointed by this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains . If you go there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( You can see in the first photo ) And , when I got a mail from him , my heart ached . . . ( I was ) nervous . In only four days I will be back home , and I will begin my summer vacation . I have made a plan for this vacation : I want to join my cousin 's company and work for him for free . Therefore , companies should contribute to remedy the environment as much as possible . Now that environment problems such as global warming and air pollution are among the most discussed issues worldwide , people tend to have much more interest in the protection of the environment . Further more , it has even become a trend for the stock investors to buy stock off the companies that contribute most to the environment . If I speak English , I would like to visit many countries ! In fact Naples is famous for its pizza ; D Thomas Jefferson was born in Shadwell , Virginia . In these acres , he built his residence , called `` Monticello `` . He was continental delegate of Congress , Governor of Virginia , state secretary , vice - president and president . Are the idioms and slang which are in these books still used in the world ? If not , how can I learn new idioms and slang ? I just went ( over ) to Yokohama where my uncle and his family live . Trimming is important because it is easy for bacteria to grow the surface of the raw beef . As a result , his restaurant caused food poisoning and killed four people . However , she often fussed a few weeks ago because of many reasons , the reasons were simple though . It seemed that she released them by accident . The doctor diagnosed that she suffered from a hemorrhoid . So , I speak English at school , but I usually speak Swahili in my village , because most of my neighbors who are in the family of my coworkers can not speak English . My coworkers and students know English , but others do not . ) So , I have received / gotten a lot of chocolate as a birthday present . I like chocolate but not this day ! ! I hope study abroad , and work overseas . Though I like to read , I am not really good at English literacy . Today we had a violin class . My arm was getting tired from holding the violin . Tomorrow is the concert ( sort of ) . We 're playing the violin at the school library . My brother 's girl friend is Taiwanese . I am about to study English for a really long time . I will study English hard . Yesterday , I went to Yoyogi park , which is located in center of Tokyo , and saw cherry blossoms . Even though our military corporation is a good place to live , Anyway I will ask him to read it because the examination is really important . Have a good weekend . Tomato sauce I made tomato sauce today . ( I am or I 'm ) going to go to a Taiwanese restaurant for lunch with a coworker , The reason is clear , I ` ve been to a Go - kon party when I went to the college , but people say there is something different between a student ` s party and an office worker ` s . I went to Utah , US 2 years ago to study English & to teach Japanese in an elementaly school . The weather has been really really cold for several days . Because of that , I caught a cold and had a headache . There will be a dance performance in our studio on the 22nd of March . We started with the choreography yesterday . For example , I managed to write these sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . However if I get areally bad headache , I might as well take the medicine rather than just suffer . I Watched 90210 I watched the final episode of season one of 90210 . I 'm looking forward to watching it next season . Today , I studied physics for an exam . So , I always grew some vegetables in a planter . I 'm looking forward to it . I need you to help me improve my english level . It 's 6 hours to go until the beginning of the match . How to conjugate for Lang8 ! ! After he left , my daughter and I talked a lot . It is the central city the northernmost Japanese island , Hokkaido . I am sad because my sister deleted the program ( of the keyboard ) for writing in Korean ! . The stylist in the shop was a very friendly woman , and had a good sense in cutting , When I checked my diary this morning , the friend whom I had just met had already corrected it . He thought that I rarely ate meat ( beef ) because I live by myself . If I eat a hamburger slowly , chewing it well and tasteing it , I always regret eating it . On the way home , I bought seven bottles of maple syrup and three boxes of maple cookies at a supermarket . Additionally ( or , Also ) , prices are negotiable . From your crazy sister , Haruna I registered an account with Lang - 8 , but ca n't understand this usage . I 'll stop complaining . Sorry , just a question . Even if I get a boyfriend , I will choose to live alone , because even we broke up , at least I would have my home . I do n't want to end up not having a boyfriend and a place to live , that would make me feel like a loser . Mainly because I was in the Philippines and Due to typhoon I dont have class in the morning u know a tyehoon will be coming to japan . I heard it was the same in China or in some European countries . I have a problem with choosing new jeans . He faced about one thousand and nine challenges , and finally , he met a person who was willing to buy his recipes . I graduated from Nihon University last year . I majored in International Relations . I did n't know the name until then I know they are not interesting at all , so everyone would n't want to read my entry . I 've had a lot of experiences like this and I 've realized that men and women ca n't be close friends . , so we would like to make the accommodations as comfortable as possible for the newcomers . but there was a language problem . ( Sounds natural ) but after drinking a couple of glasses of champagne , I was very drunk . Recently , I make many kinds of bread too . Do you remember those days , your mother knit a sweater in the dim light for you when you woke up at midnight , or because you came home so late that she was n't ? able to be assured ; you know that there are many things like this . I went to a study group for CMS ( Content Management System , an internet system for blogs and websites , like WordPress ) and had discussions with members . Because I am abstaining from drinking , it seemed that not having much alcohol made me drunker . Hummm . . . Mubark was the president of Egypt for 30 years . Allah helps people in Egypt . What are your favourite sports ? There are many beautiful clothesand dance movements in the film . But I have the good luck to be surrounded by brilliant friends , excellent teachers and an affluent campus ( The only weakness is that it is too far from my house . . . ) . Even by doing so , it might be difficult to attain something special , but what is important is to try to have an awareness of issues and start a voluntary pursuit . On top of that , I heard that grown - ups feel as if time has passed faster than in their childhood . Thanks for reading my journal A public viewing is an event where you cheer for the team through a huge screen with a crowd . Japan played well , but I think there was a critical diference between Japan and the Netherlands . I do n't know why we 're supposed to take classes in such a marvelous summer vacation , which should have been full of joy , laughter and merriment . Although it sounds a little pessimistic and overstated , what I really want to say that learning should be a lifelong and happy activity rather than pushing us to the limit when we are in a bad mood / depressed . Improving our knowledge by practicing instead of talking theoretically is the most significant , positive and effective thing in our life , in my opinion . This week , I 'm staying with another host family because my host family is going to be in Bali for two weeks . It was so amazing . Then , I remembered that the foreigner was seating alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speaks English . I carried him in my arms and looked around to find his master . She doe n't have confidence about English , but she knows many verbs and conjugations . To my surprise , there were no stories nor paragraphs on her textbook but conjugations and exercises . Thank you for your cooperation . The shop where we went to was owned by chicken egg farmers . Of course I also liked `` Jack and the Beanstalk . `` : - ) So I hope that I will be write at least one sentence correct . After that I lost my confidence in speaking English . Although I did n't get first prize and practicing English speech is really hard , this English speech contest was a really good time for me . I hope my English speech skills will be as good as a native speaker ! I would like to introduce some disgusting examples to you . When I was a student , I spent a lot of my money on music . Okinawa was warmer than Tokyo , because of its location . This time , the airplane was delayed by 2 hours due to the maintenance . It 's on my way to my hometown . I thank her for helping me to study English . I ask my coach if I could take a break , then he suggested that I take the intermediate - first lesson . hello guys from japan ; my first diary about japanese disaster Two women are in their forties , another woman is in her thirties , and I 'm in my twenties , but we only speak in English when we get together so I ca n't feel the generation gap . I feel like we are friends . And I find that even after several Chinese have corrected someone 's journal , there are still some errors / mistakes . Sometime its punch lines are too ridiculous to believe that anyone on earth is really that stupid , but that 's what makes it so good . Somehow I ca n't help watching it everyday . Recently I have been busy with job hunting and class in university . So I am so happy that I had slept until noon . In Japan , the replacement of prime ministers seem to have become an annual event . University is said to be a life experience . They can strengthen their bonds deeper through other school events such as cultural festivels . Doing somthing for the first time is very exciting , as you know . My cousin bought a chicken for my dogs . . But I also lack English language skills . Do you know Kao Corporation ? So , in conclusion , I want to state that not only must the government make the already existing laws tougher , but also censor the media , which has a tremendous influence - especially on young people . It is a little dificult for me , but I always enjoy discussion with her in English . I 've only had a few food but I do n't feel hungry . Sometimes I 'm not hungry but I want to eat . . . . At last , I arrived at my destination , Narita Airport . The goddess did not want them to be together , and so used her power to turn them into two stars . but I brought < / FONT > some bread to eat with friends . Shiba dog is a Japanese dog . They are medium size and very It 's her first time to go to a foreign country by herself . Do you know `` Syabu - syabu `` ? It is a dinner that consists of many vegetables and thin beef swished in boiling water . There were many foreign visitors in the restaurant . I have made some friends who are Japanese . Thank you for coming and seeing us at Onoda - shi , in Yamaguchi on January 21 . One mother said your reading of the picture book was wonderful ! ! The first time I met him , he talked about `` SD Gundam `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand anything he was talking about . After leaving Tokyo , he will go to Shizuoka to view a big Gundam model . Without Anna , my English might not improve . Anyway , I have one thing I want to say : that I leave on August 26th , for the US . I want to thank everyone who has helped me with my English so far . So , I expect that many people read my diary and correct sentences . please correct the sentences and be my friend ! I never learnt ( / do n't know ) how to play the piano or guitar , or learnt French or Japanese like some people . As a result , I found this website and enjoyed correcting articles written by some foreigners because I am good at it and it makes me feel good no matter if they thank me or not . I had lunch with two friends ( and friend 's daughter who is one year and seven months old and very cute ) today . This afternoon , our class will be having a class meeting about electing the elite as members to the Party . I do n't care if other people say `` You ca n't be a milionaire because you are not already rich `` . This Saturday I went to Shiga because of my group activeties . Today , I got some classes at my college . Showing my true colors , I want to skip my classes ! ! So , now I should go to college . I did n't have any Indian friends in , Taiwan , before . All my foreign pals are Japanese . But the type of rice is different from Taiwan . Every ethnic community has their own character . My favorite color is white , so my car is also white . Because of that , I want the white iPhone 4G . I also want to learn German because I really love German football and Fc Bayern ; - ) This is my first diary . I am interested in fashion , art , and 90 's music ! I am `` good at `` speaking Japanese but I am `` not good at `` speaking English . Please help me ! I am going to send an E - mail to my friend who is an international student today . Mixed feelings again . First I feel happy because of someone who told me I look like a singer . I 'm not alone , right ? I think it is about the guy who kept eating only McDonald 's hamburgers and potatoes . Yesterday 's dinner I started surfing about 2 months ago , but then the earthquakes and tsunami hit the Tohoku area . Now I want a motorcycle and dream that I will get a big one and travel around the world . It 's like making blended whiskey using single malt ones . Not to mention learning other languages . For these reasons , I think the education that aims at the development of individual talent rather than learning by rote is needed the most . One of my classes called International Communication course is one of those systems , where we can learn other country 's traditional way of life as well as English , and we can see many people from other countries . My high school gives us many opportunities to go to other countries . What is the Au pair Program ? I can study English in various ways on the internet . By taking class in an English center , I can practise listening , pronunciation , . . . Generally , I do n't say much if the atmosphere of a conversation gets stressful . She never thought of anyone else . You wanna be somebody who complains , but you wo n't be a listener . I am sacred of you now . . . . Usually , the beans are sold with seasoning such as soy sauce . I was born in a city north of China , and I went to college at a city north east of China . I love snow very much , and the winter time during college gave me deep impressions of good memories . Hence , more and more visitors should have opportunities to travel to other places . I 've been a lacrosse player since I was university student . During that time , I felt quite uncomfortable . It was atough time , but I enjoyed talking with thecustomers . These flowershave special colors and shapes , too . Recently I could only go to work for two days a month , because I have been receiving post - surgical chemotherapy to prevent a recurrence of my cancer and metastasis . Though it was regrettable that I got sick , I believe that my disease has developed a greatness within my soul . These days , I 'm always shopping , singing in the `` KARAOKE - BOX `` , drinking liquor or doing many other things . The Spring Festival is the Chinese New Year , and it 's the day when all the family members come together and celebrate . Why can you earn more & nbsp ; in Canadian companies that estimate indindividual skills more than Asian companies ? & nbsp ; It really depends on the your skills , whether you earn a lot of money or not . I hope my English will be getting better for many reasons . And I will help you with Korean , a little bit of Japanese . We are going to go to Himeji castle and some other places . but , my english is not good . Nobody knows what will happen in the future . I think it would be fun to write a diary on the web . Everyone seems delighted by it . My father had a lots of potatos in my house which was more than he can eat before they get spoiled . I mean , real diary . Of course , I have written English compositions in school , but those are not diaries . One of my friends recommended it to me . When I found the ( rain boots ) , I ( thought ) I ( loved them ) . My First Time Writing In My Diary In English I purchased a training suit , which is similar to what boxers use before their matches . They control effictiveness ! But , I really feel unhappy with my English right now . . . In this movie , Led Zeppelin 's famous song , ' Immigrant song ' was used . Unfortunately , the long holiday ended today . I 'm going back to school again this March and I 've been planning my course schedule while reconnecting with my friends via MSN messenger . And then , after reading those comments , I was really pleased and happy because the explanations helped me understand the parts that I did n't understand clearly and there were a lot of examples to help me too . Well , I had a delicious breakfast , and the weather today is n't as cold as it was before . But musicals contain many songs , and it is a bit more accessible for me . I really want to recommend it to everyone ! However , I suddenly heard a terribly loud sound . When I say that , people around me look at me surprised as if they did n't expect it and I looked odd . We can listen to the radio and do simplistic jobs at the same time , and also feel relaxed . But I apparently looked like I was listening to an iPod , so most of the people were surprised to see me change the radio channel . I was surprised that Filipinos do n't use such a convenient tool in everyday life . If we find out this information we can help satisfy the niche foreigner 's desires and it is a business opportunity too . People there are very cool , I love chatting with women . For example , they can learn how to speak and begin to understand different languages by watching TV . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the sound of my mother 's breath , reminding me to be more stout and obstinate about my hard - to - reach dream . Of course , I recognize that my range of vocabulary and how to express myself are not enough . I 'm feeling more comfortable even though I recognize that there are still many mistakes . I want to take advantage of this happiness and time to improve my English . I should remove the worms from these leaves to let them keep growing . Because of that , the first day was going to be canceled , but the typhoon has gone the other way , so we were able to continue with the festival . During the ride , a Filipino woman spoke to me in Japanese . I hope this accomodation remains for a long time long against the upcoming tough economic condition . I 'm going to study English and German hard on this site . Should one expect a reward when doing a good deed ? My body is still craving a cup of coffee , so I am counting down to the opening time of my favorite coffee shop . It is also difficult to explain technical documention in English . I 'd like to join in fitness clubs now . In the gym , there are a lot of foreigners so I 'd like to get in . Sometimes I think that days are too short , because I cant do many things , but on weekends the days are longer and I dont know what to do ! When I watched his behaviorat these supermarkets , I found that he was walking around there quickly . We can enter free of charge and the price of food and drinks is very reasonable . I 'd really be grateful for any help in improving my English abilities . I think that it 's about time when I start Skype and talk English positively . When I am walking down to the street , it looks like only umbrellas are moving on the street . Maybe they have seen my old picture on lang - 8 . In my senior high school , anHK friend and I have writewrote a letter to JKR . Although I did n't gain any messages from JKR , HK friend sent me a great Christimas gift : A HARRY POTTER MAP . ( Print by himself ) The map is just like in the movie . Because Japanese books have manypictures about maids and theVictorian time . France has ballet , and Hawaii has the Hula . Generally speaking . most of them were built during the Feudal Period . Each of them has distinctive features . So , even if I was a little bit interested in these kind of things , I tried to hide my curiosity . We have re - instructed the packers to take notice of proper packing material to ensure that panels will not shift in the carton to avoid any damages to the board . It was my fault , but he did n't need so angry . I hope he will be re - assigned to another department next quarter . He had a heart painted on his forehead . That is lovely for Valentine 's day . I would like to ride him , even though the first time I might be scared of him It is famous for hot - springs and it 's beautiful ocean . June is the rainy season in Japan . When the rainy season is over , summer has come . I am twenty three ( years old ) ; it seems that I 'm not young , but I am still in school . I hope in the future I can have a beautiful life and I know it 's not easy . But I 'm still a student now and can do nothing except learn and learn every day . I hope I can do something for my family , but I do n't know what to do . Jeju is a beautiful island . How about your country ? Do you display Restart Toilet Training Mothers should n't be too nervous about this kind of discipline . One day , she was playing with her friend climbing the jungle gym , but her friend climbed higher than her , so she started to cry out of frustration . We are planning to play games with kids . Also , I grilled chicken breast and sprinkled some salt and pepper on it . Obama 's presidential inaugural address . Honestly speaking , I had never heard a presidential oath in detail in the past . The economy is badly weakened . . . `` - He holds respect at the forefront . . . `` For us , they fought and died in places like . . . `` But when you come ( go ) to their country , and begin living as they do , and begin speaking their language , you understand that they are not different from you . I am studying two languages every day . Do you know of stores that sell many inexpensive swimsuits ? She is always kind to me . She is lovely to me . Maybe I can borrow some more accessories for my other friends . We will see . . . Although you have many things , if you see something your friend has that you do n't you really want to have it as well . However , although this is true , I believe we can learn to be satisfied . I came to Australia last September , and it was my first time traveling abroad . Actually all of my luggage had been automatically transported to my next airplane . But I had already made a fatal mistake because I was waiting for my departure time at the 1st gate but I actually had to go to the 60th gate . I am an engineer at a construction company and I am constructing a pharmaceutical factory in Shizuoka . Hence I enrolled at a correspondence university to get a teaching license . As usual , I had some bread , coffee , and salad for breakfast . It goes very well with French bread . Today I happened to meet with my ex - colleague . So I gave her some advice . It is more relaxing there than in the library . Therefore I 'm going to go to New Zealand next summer vacation . Starting today , I 'm going to write a diary in English . I took an exam this morning . I will have to have the same class next term . Yet it is very warm and springlike beautiful day ! In the first , he threw a carrot , in the next pan he put an egg , and the last pan was filled with granules of coffee . After some time , he took out the carrot and the egg and poured out the coffee . - The carrot and the egg have boiled and the coffee has dissolved . But what about the coffee ? - It 's most interesting . Oh , it seems like the ' Spam ' sketch by Monty Python , I watched it just last night ! I got into a university finally ! ! ! ! ! Today we finished lessons earlier than usual , so we returned home earlier too . It would suck to be sneezing all day when the long and cold winter is finally coming to an end . I am going outside Bangkok today . I have to study tonight for tomorrow 's tests . We were strangers , but he made a good impression on me . a mountain eruption = ( Yes , I know I will soon enter university , and that Iam 18 years old when some people find out about that , they are suprised and they think I have a problem I can learn new information from it . especially if it was about history . I love a lot cartoons , especially Japanese anime . Such as : Conan , Anne Shirley , Remi and many other anime . I like anime that showcases problems in society , or about history . Anyway , my friend who lives in Christchurch was fine . and she decided to move to her relative 's home . If a dog is a rabid dog , it 's very dangerous . I 'm college student . So many of my vegan friends cook 3 times a day , and I always help to read what the package of ingredient says at supermarkets : ) Nowadays , I found out that people smoked in the streets . I was driving my car , feeling that I lived in the early 21st century . Right now I 'm at the bank , where the last fireworks festival of this year will take place ! I know I 'm crazy , but I love them and really think they 're beautiful ! I grabbed a great spot up front where the fireworks are being shot . Many workers are now setting up fireworks : ) I 'm happy if I get one ! So everyday or maybe sometimes I 'll send you even if you will not reply . so it damages the hair . I want to improve my English because I like talking with people , girls in particular lol . Because of exam day , we left school before 4 o ' clock and soon got to the studio . We practiced calligraphy at first ; after that teacher started teaching us to sketch . sound in British English . tell me whether the British are more likely to pronounce it as ' I : ~ ' ? Ipoh is also a city in Malaysia . My computer is slightly old and slightly weird . I 've already graduated from university and my major was occupational rehabilitation . I have just registered in Lang - 8 . I usually record music from CD and transfer them into my iPod and watch DVDs on my PC . It worked well except the thing it did n't have any disk drive . My life seems such a catastrophe that I could n't help but sob for all my past teen - life . Is it alright for a sophomore to dream anything about her future ? I had to mediate a conflict of opinions , because an employee had been in trouble with the store manager for a couple of weeks . On the other hand , 12 % of people report that they dislike obese people , less than the 16 % in 2003 . By the way , recently one my lang - 8 friends said that he dislikes female smokers . The idea that a person 's character is decided by blood type is wrong , because the fact that there are n't relations between a blood type and a character has been proved scientifically . ) I studied English in many places in Peru . In Japan I use the little I know . Maybe I speak English poorly , but I feel that I speak fluently . I do n't think I can understand much . This morning , he woke up early at 7 . I usually eat out because I have lived a single life for 9 years . It 's a very famous dish in Japan and it 's very easy to cook ! I have n't written a diary entry for a while , haha ! I found I would be late to my German class . ( A heavily edited and dubbed English version of this film was released under the title `` Warriors of the Wind `` in the 1980s , but it did n't follow Miyazaki 's original plotline . Now a `` no - edit `` version is available . ) I recommend the manga version too . My husbund called , `` Pass the salt ! `` I did n't know why he asked , but I brought the salt box to him . She said that she wanted me to read outside her room , because she would like to sleep in her room , but I did n't mind ; I still stayed there for a long time and fell asleep in her room . I write down my first entry into my english diary today . I 'm very nervous because my english is so terrible . I had my hair cut today . What was interesting was that someone who wore an armband which had the characters `` STAFF `` warned a man who was smoking in the yard nearby my lab not to smoke there . My other friend Nez ( Short for Nezacant ) gave me a shield . The reason was work . before I answered that question , I asked how old she was . One of them is the General Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the future by way of Relativity . But , there are problems ( with going ) to the future . You can go to future when you solve these problems . So light spread as wate and light is composed of particles which we do n't see . Light is the only material which has quantum nature . Even if I get a full score on the writing test , it 's unlikely that I 'll pass the ikkyu test . I 'm a house wife but my family let me alone and prepared food for me during those two days . When I went around Paris , I saw a lot of beautiful places , including classic and old buildings . I could not write my entry yesterday because there was thunder and lightning last evening . My friend and I looked for somewhere quiet to study Chinese and Thai language , we did not find a good place so , yesterday we studied at Macdonald 's but there was a lot of music and a lot of student doing their homework . I do n't know why but I know we have a good mood all the time and like to smile at people whether we know them or not . I asked her about if in China they have Kung Fu or not , she laughed and said yes but it 's different in the movie because they ca n't spring up a tree or a roof and things like that . Look at the first picture . Have you seen it before ? I 'm reading , searching and writing in the train using my MacBook Air . I have some plans and hopes for 2009 . I hope to study English continually with members of my office department , as well as start studying Chinese and other languages . I think it is difficult for me to choreograph dances , Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since the Japanese market is shrinking due to the reduction of the population . But it 's a little bit controversial because it 's very rare for a Japanese company to use English as an official language . Even successful Japanese companies in different coutries like Toyota , Nintendo , etc do not use English as a official language yet . I think people who already study English like us in Lang - 8 do n't think it 's a huge burden . I wonder how they prepare for its goals . This Diary is an English - Learning - Record and Life - Record . Today I attended an editorial meeting of an academic journal of gerontology . I 'm fifteen , I study Art in Malaysia . Yesterday was very good timing to come back to Japan , because now a big and Next time I write , I 'll describe many things . I love animals . Eating dogs should be banned . Headache caused by a bad smell . Do you have any hobbies ? Do I call them `` hobbies `` ? Because , coffee farmers should get a higher income . This game is between Japan and Holland . my sentences are very foolish . . I ca n't select good sentences . . I studied much harder than before , but unexpectedly , I got poor grades . She is such a cool woman , is n't she ? But , the only word I know of to describe her is `` cool `` . I am a person who looks on the bright side and is an enthusiastic self - motivator . These days young people do n't necessarily have it on New Year 's , I live alone and far away from my hometown , so I was n't going to have osechi ryouri because it would be too much for me to eat by myself . Last December , my sister called me all of a sudden and said : ' ' I won this expensive OSECHI ryouri in a BINGO game at my company 's party , but I can not receive it on December 31 because I 'm going back to our hometown . So I 'm asking if you could go and accept it at the restaurant . I heard its very delicious ! ' ' She said that she misses me , and she may possibly come in October , but only for a weekend . Shikoku is noted for their noodles , hot springs and beautiful nature . If I run into a foreigner , he / she gives me a kind of smile . But native speakers occasionally ca n't understand what they want to say even though we as non - natives can understand it . For our office , we usually buy toilet papers through the delivery service of office supplies , however , because the earthquake occurred on March 11th , this service had stopped . I like him because he is very kind . I did n't know that many people in korea can speak english fluently even though they do n't have any experience abroad . I was shocked and I thought back to myself . I am taking English lessons . Do you guys care whether your brothers and sisters are older or younger than you . When I ask you , `` Do you have any brothers and sisters ? `` , you might answer `` Yes , I have two brothers . `` Every Friday I felt tired , although there was little work that needed to be completed immediately . But , I could n't understand his English . . . I shall call him again after I can speak English fluently . The reason is : there is no chair . Waiting for the bus took about 40 minutes , until it came to the station : ) ! According to the weather news , it will snow next week here in Niigata , Japan . This is the first time I 'll experience the winter in Niigata so I 'm wondering if I will survive the upcoming winter . it might be bad thing because many men would like to marry women who are good at cooking . As I get married , it would not be good for my relationship because my husband will be eating my dinner and my breakfeast . So if my cooking is bad , we would have some issues that I ca n't make a nice dinner . I am jealous that this site 's members can write such good Japanese compositions ! ! and yet we sometimes regret our choices . Just compare merits ? Or just listen to advice ? But the result was the result , I must accept it . I usually tap dance alone . It was cold , but we felt hot He is the blind twenty - year - old pianist who won the thirteenth Van Cliburn International Piano Competition in June . I am not familiar with classical music , but I think his music is very beautiful and touching . Today , I went to shopping near the station because today is a national holiday in Japan . oooh FUN ! Electric utility expense rises this summer . Hm , sounds stupid ? I was so proud of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my family twenty years ago ? When I was a junior high , one girl who was not my classmate came up to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an answer at all but I managed to say that . It is very rural . I love Yamagata because I can relax . I practiced drawing dinosaurs , but they look like crocodiles a little . I don ` t have anything special to do , so I usually watch American dramas . The other thing I remember well is that the victims were transfromed into hedgehog monster - like figures like once in the aircraft . Bean throwing , which is called mamemak , is done at home on the day of Setsubun . But such a consideration is a dangerous myth . I think they 're definitely great . I begin to study English with this site . I prefer the version where the princess kisses the frog and the frog turns back into the prince . We promised to go to another tennis camp in the summer ! I have memorized lots of vocabulary , but the dictionary that I use is still very limited . dealing off the bottom The police found evidence that the two companies had been dealing off the bottom of the deck . I see a pile of clothes and I question / ( ask ) myself : `` Why do we wear clothes ? `` She was a completely / really stupid girl and she spent two years in jail in America . She experienced life in an American jail . My name is Kaori . because it is n't the same as Japanese . I 'm going to school tomorrow , so I hope it 'll be good weather . I 've been learning english since last summer . and I want to talk with foreigners . My friend who is a 28 year old woman is thinking about getting married . Her thoughts are completely different from his parents ' . I will go shopping to get some groceries . l am studying English at a language school in Brisbane . I want to speak and understand English better . I made Miso soup and another dish . The Miso soup was a little bit thick . I always wanted to be a cook . I sometimes use stamps at my job for my customers . I made a decision to buy a house , and moved to a better neighborhood in late 2007 . I will write just a little bit of English today because I will read my old diaries and try to understand them again to help me make my English good in the future . Although the internet is more and more popular among students , there is no doubt that a book is a vital way of studying . However , I have to consider the people who corrected my grammar . It is still very hot , burning hot , in the daytime , but it has been getting cooler in the morning and the evening day by day . Moreover , all of the users are friendly and very kind . Last night I spoke on ICQ with my friend in English . Themes were different : religion , music , job . We address those who are older than us by their names + san , but when I was in Cairns , Australia , nobody asked me to call them ' Mr or Ms ~ ' . Perhaps they would get nervous in the fight and they could n't give their full power and technique because they are polite and gentle guys . This is my first english diary , and I am very excited . I reside in Chengdu , China . It 's a very nice and friendly city . hehe , It 's like a panda country . Have you seen Kung Fu Panda ? She thought that she had been living a boring life . So many people are suffering because of unexploded bombs and mines in Vietnam and around Thailand . But at Shinjuku , JR also announced that their service was stopped because of an accident . On the way there , I drew out 100 thousand won from my account using a card . The roads / roadways of HCMC are always jammed / jam - packed with traffic . For entertainment and creation , all you need to do is install it . Beautiful Spring ! I offen see couple of Japanese woman and foreign man . is Japanese Man not popular with foreign girl ? Plese correct my diary . I hope I will have someone to give chocolates to next year ! ! Also , I realised that I got close to paradise or heaven in a different way . In the bus , I met three foreign student , one is American , another is German and the other one is from Holand . They want to visit the `` Tian an men `` , but they did n't know how to get there . I want to go to many restaurants , but I 'm only here for five days . Before the coming winter , I ( prepare ) for the cold . I saw two of my idols today . The correctee might have believed those mistakes were right . I have noticed that I feel the Japanese economy gradually worsen . To solve the problem , I believe that young people should go overseas and study , travel , help developing countries and so on . I went to this course , because I can read English text ( not good , but I can ) , I can understand english speech ( worse , but I can ) , but I ca n't speak it ! David Coverdale is one of my favorite singers . Because his voice is adorable , many people are fascinated . I could n't understand ! ! ! I have n't written a thread for a while . Meeting my friend , eating nice food , Sleeping a lot , studying english , I can do that ^ 3 ^ I 'm going to take part in Hana where I learn English speaking with . foreigners . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` while eating . So I 've made up my mind to learn it seriously as I study for my profession . I 'm growing some vegetables in my veranda . Last Saturday I had my hair cut . Today is April Fools ' Day . In the US , people usually fool their good friends to make everyone happy . because the older generation do n't like it . In their ideas we will be very impolite if we did that . After posting my journal yesterday , I regretted it a lot because I wondered if my journal entry might sound offensive . I want to say that English helps me to express my emotion more easily than Japanese . I think that there are some cultural differences in there . As my college is in Kyoto , I usually only go around in that area . but , I am going to Tokyo to take a seminar for job applicants tomorrow . So I think that I am busy , but I would think that `` busy `` is evidence of living a full life . Well I just signed on . I hope that with this web site I will improve my English skills Eating is important . They do n't want to upload their own pictures or careers . I want to have the ability to be able to help somebody easly . May this new year bring you many opportunities I 'm a university student studying architecture . This is my first trip abroad . The next day , my left hand had turned pale and a little swollen . I went shopping with my mom . There will be an unique ceremony . By the way do you know , ' ' Turtle Talk ' ' ? First I have to decide a specific goal for example to pass one qualification , to take an exam , or to get a job . It is most important that I continue with my goal . I ended up eating too much . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more uncomfortable . I think music is like a beautiful performance . It 's something essential like a type of language . There is beautiful natural places in NZ , and it is similar to my hometown . Tomorrow , I will walk around town . The day before yesterday was the Midsummer Day of the Ox . Even if I achieve that purpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studying the written and reading tests do n't help me speak English and learn English expressions . I 've just looked up the word `` progress `` on an English dictionary which is Longman dictonary . I came back from my business trip last night and I jogged to the office to deal with the receipts to get the compensation now . I often eat out , like at McDonald ` s . Right now , I 'm watching a TV program about the Hubble ( Space ) Telescope . Mein Vater ist Beamter . Active : I washed my dishes before I came here . * Japan 1 - 0 Cameroon ! ! They had great performance It was too difficult to communicate well with the foreigners , but I enjoyed spending time with them . As a matter of fact , I like listening to him at the meetings . Some of my friends ca n't drink them because if they do , they hurt their throats . The most important thing about English is to grasp the common vocabulary and the pronunciation of each word , which I am sticking to neither . We mostly choice the topic about the teacher , only he choice tennis . He also used his camera to record other student 's activities exaggeratedly . When once in the class , he also did this , the teacher was very angry , he hit the student 's head with a dumbbell . I want to visit the school to pay my respects to the teachers but I can ' t I feel like the happiest person in the world It is my first time writing a diary in English . In conclusion / Finally , I think I become a more complicated person when I speak English . Actually , my parents are getting divorced as they always argue about things . even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can be return to after I graduate from my college . . . even though the real reason why I wanna leave Japan has something to do with my big dream . I wanted to go on a trip abroad during GW , but my wish was n't realized because of the reason above . some people might tell me I 'm staying in Australia to study English . I drove my car onto the main street and found that it was congested ( du che ) ; it was raining at that time . Heavy traffic blocked the street . Thirty mintutes later , I got out of my car to find out what had happened . I walked back to my car , turned on the radio and waited . because this book has so much slang Other than the internet I learn from aplications such as `` Windows `` : ) ) ) ) I need a lot of help because I find English a difficult language to learn . Because it takes about 30 minutes to drive there from my house . I need to do some stretching and start to take care of my health . I wo n't fail to fullfil my resolution . If I become a member before Jan . Yesterday I arranged that I would learn English grammar . He jumped into the sea and he almost drowned . Whenever I see an English sentence , I have to think about it , and then translate it before I can understand the meaning of it . This space seems like a place to write a daily diary . I thought , I should write something in the `` About me `` section . I was unpleasantly surprised that a lot of my mistakes deal with articles . But I found that Japanese was much more difficult than English to learn . I wondered if he mentioned it because he wanted to invite me or because he just wanted to tell everyone the news ? But the realiy is not allowed us to choose right ( decision ) . First , when I wanted to buy some street food or drink I always used my index and middle finger to show I needed two meals or two cups . But they show a thumb for one , and the index finger was for two . They were allowed to smoke in the restaurants , too . Silvano was so patient with me . As you know I do n't like politicians publically speaking , but there is one politician that I want to hear speak , Junichiro Koizumi . Now Tarou Asou is president , who is known as the way to fun speak . ( ? ? ) I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( I feel very frustrated and I 've been wondering when my English will improve ! But my vocabulary was too limited to make the conversation interesting . I 'm not going to say anything about the story anymore because there are some people who have n't seen it . In Germany , a genius Japanese doctor named Tenma had saved a boy 's life through operation . Unfortunately , Johan was a genius person who killed without thinking about the significance of human life MONSTER is one of the most popular comic book in Japan Thanks a lot for reading my sentences . I even thought anything would do as long as it was a living thing . After I separated from my friend , I also felt another aftershock in Tokyo while I was waiting for my bus . After taking my antibiotics , I made a rush for the school so desperately that I forgot to eat something . I thought I would be able to buy something once I arrived . But my vocabulary is poor for translating the meanings of this . Before the semester started , I was join the magic club in my university . Fireworks to be held tonight in my town Fireworks is an annual summer event in my town . But according to the weather station , it seems like the weather might be poor today . In Japan , the 29th of April was a public holiday . However , I am often said `` You look like a half - breed ! `` I think that 's because of my brown eyes , but I 'm pure Japanese . Today , I woke up at 8 : 00 AM , drank coffee , and watched TV . When I am writing a diary , I use a vocabulary book . Do you know about Nagano ? Do you know about the Nagano Olympics in 1998 ? Nagano also has famous places . For example , Zenkouji is a very old shrine ! Would you search the internet ? It is a very big shrine ! In 1992 , I went to Thiland for meet my family . But evetually I managed it and we made delicious `` Japanese mugwort rice cake `` . It rained cats and dogs in the morning , but then turned sunny in the afternoon . In the Middle East , they 've made a truce between the Israelis and the Palestanians . I 'm not as fascinated with it as she is ( that would be difficult : P ) , but I enjoyed the beautiful romanticist and photo - realistic paintings . They are so calm . When president obama was speaking , Recently I 've watched ' Star Trek - Voyager ' to improve my listening skill . But my english teacher recommended to watch ' Star Trek - Voyager ' because the actors and actress speak clearly . So here I 'd like to study technical English and find new friends ( from all over the world , but it seems to be only a dream ) . However there was no answer and I opened the door . A middle - aged woman in a green shirt was sat down on the toilet . When I opened the door she looked surprised and I was also surprised because I thought that nobody was in there . . . . We looked at each other for a very short time . Today , _ it was a beautiful day . I created a Twitter account . So I hope that some day , we can meet in heaven . Everytime , I always use my iPhone for something unnecessary . I have been in the USA for 1 and half years . While I was working at a Japanese company in Japan , I sometimes got phone calls from the other country 's company . I 'm fine thank you and you ? `` at that time . Please correct my sentences if I make a mistake . I have been working for one year and I have learned a lesson - - I lack courage , which is a disadvantage at work . Life sucks without true love , I must learn what to do to find zeal for my work . I would not be skilled enough . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into the living room , and she said that some black object fell . Do you knou `` Fantasiata `` ? First of all , population growth has greatly influenced the world . For this reason , I dicided to use this gym quickly . But to be honest , it was totally fun . haha . If only I could believe it caused no pain or little pain . . . . . It is very gothic and turned my thoughts to ghosts . I was taking some photos of the church itself , and of me next to it , but this photo is the best one for me , because it creates joyful emotions in my heart and soul . My mother took us to the station and I took the train . I think I lack knowledge and books may help me to express my own ideas . I finished reading `` Wuthering Heights `` yesterday . If you have any recommendations , please tell me . ^ ^ I only have the database in my PC . I got a ticket for aKenji Ozawa concert . He is very critical of capitalism ( particularly America ) on his site . I sometimes use paper or solid models which I made , because it 's hard to describe through only speaking . I jogged only on the weekend , but I think it has is little effect in decreasing my weight . Please correct my Poor English sentences . The daughter who will arrive first will arrive early next Tuesday morning . But she is really English , and she speaks almost exclusively in English . Since everyone has his own fate . Another two days of the week , I worked in the training center of an university from Could somebody think of adjectives which do not have superlative or comparative forms ? Hello , everyone ! I got always frightened ( scared ) every time I heard it . It 's especially good for improving my listening and speaking skills in English . I think studying English by watching soap operas is more effective than studying with books . `` Charo `` is a English learning program by NHK , a Japanese broadcasting company . The radio version is little bit longer and more difficult and has more details . When I get tired of studying English , I just listen to the story . That 's why I believe it is the best program . I am writing for the first time at Lang - 8 . I know some of my friends work about 14 - 15 hours a day . So I practise my English , study accounting and go for a run to exercise in my spare time . I think that foreigners are more open - minded , so I can make friends more easily . I see John get on a train and it leaves XXX station at 6 p . m . And on the train I come across a man and he asks me what train John got on . I think I could say something like , `` ( John got on ) The train that pulled out of XXX station at 6 p . m . `` But , I want to explain without referring to time . ideal : What 's the ideal educational style for American people ? ( for ? ) However , because we chose an area of higher altitude , we had very good snow conditions . : - ) I felt very tired and stressed , but it was very interesting . What is culture ? It refers to the civilization and customs of a certain race or nation . We do and say things that maybe we would not do in other counties , so knowing a counties ' culture is important if you will communicate with global people and travel to different areas . I think a very imporntant reason is that we have different religious beliefs , follow different customs , and live in different environments . I am learning English language in a short time and I do n't know how to write it well . I think that it is a nice website because a lot of people can quick learn language , so I want to write here once a week and if you can , show me and correct my mistakes . Today I received 4 pieces of clothing that I bought from Taobao . `` Gheimeh `` is a popular dish in Iran and it is also cooked in most religious ceremonies like some ceremonies that are held in two days called `` Ashoora `` and `` Tassoa `` ( `` Ashoora `` and `` Tasooa `` are the days that Muslims , especially Shias mourn for `` Emam Hossain `` ) . Because of this use , some people called `` Gheimeh `` , a dead person 's meal . For cooking `` Gheimeh `` we need some ingredients like beef or lamb that are cut into small pieces , some onions , split - peas , tomato paste , some potatoes , cooking oil , salt , and some spices like red or black pepper and tumeric . In the next stage , peel and cut potatoes and fry them ; you can also cut some mushrooms and a green pepper into small pieces and add it to the frying potatoes , then add salt and red or black pepper to the mixture . But when my room is tidy , I feel more energetic . I 've always wanted to buy shoes for spring . When we lend some money to someone , we should determine a precise date of repayment . I appreciate the memories and wonderful favors in my life . One of friends said they are just looking for a Japanese girl because they are pretty and easy to play . According to the program , he still lives in a small town where he was born and lives like an ordinary local person even though he is a billionaire . However , I 've succeeded in losing weight byten kilogram within a half a year . Actually , I like wearing smart clothing and want to be seen as having acool apearance but it is crucial for me to have a good , healthy body . I am going shopping today andI ca n't wait . I am looking for my own house these days . So the principal decided to suspend the first grade class . I have n't been here for more than a month because I did n't have a computer . But I could n't understand very well . So , I am starting on the diet when I cook traditional Japanese food . Today 's menu is Udon and seaweed salad . I was amazed that Japanese food really does n't need oil . I felt that I could n't do that , so I remained standing . On Halloween day , I joined the parade at 6 av in NY . I want to have a more creative job . Conditioner makes my difficult hair easy to comb . Reading sections , especially the grammar section , were not very good . I bought many souvenirs , for example , postcards , ornaments and a lot of tableware . it takes ten minutes to get there by bicycle . It was made using concrete , not wood like the other castles , so it is just a museum inside . The foundation of this castle is a stone wall using a lot of big stones like other castles , but there are some huge stones here , like the second photo attached . My ankle still aches a little : < Tomorrow , I 'll enjoy being with my family , playing game together and talking about something in traditional event days . I 'm worrying a lot these days . Finally , they became friends . I was frustrated . After watching the movie we went to an Italian resturant and chatted a lot XD They usually say `` happy Valentine 's day `` . But then I often feel annoyed because the day did n't belong to me . But then other people messaged me `` happy Valentine 's day , even though we do n't love each other `` . haha ~ ~ now I feel happy , even though I have n't * * But I have some good friends . The last time , we went to Barbecue restaurant to eat a lot of different foods . And it 's interesting , a group of obaasan ( old women ) were singing loudly and drinking next to us . They looked so happy that day . Just some old women , no roses , no chocolates , but happy all the same ! My holiday has been going so fast collecting donations and taking them to the communities office before ten . I saw an USPS driver throwing a package up onto the second - floor balcony of an apartment house ! To my dear friends who are living around the world now : If you do n't have that , I too suggest you find it out soon . I hope you will be happy to finding a nice partner . Anyway , the doctor ( s ) told me to get some more exercise ( > _ < ) At the end of the month , we must submit our presentation to the chief executives . Melbourne is good city to live but I hate Melbourne weather ! It 's the last concert of university . When people criticize it is hard . . The sports festival will be held next Friday . I envy her because her English pronunciation was more fluent than when I saw her 1 month ago . My department held a welcome party for new employees today . I want to be a prischool teacher . I 'm in my friends room , in Yokohama , listening to music Talking to him , I detected that my english was becoming poorer and poorer . It is very important because there is a danger that a new product will eat into the share of the market ` s existing products . She told me that the company wanted to fill several manager positions with people from all areas of Japan , then she called again to tell me the day of the interview . Today , I will answer a question . The question is : `` When you 're feeling sad , what do you to feel better ? `` It takes 60 minutes to get there and 60 minutes to come back . . . Ono was taken to a police station under suspicion of violating the ( a ? ) Maintenance of Public Order Law . The prosecution and the Court ratified the `` Black Trial `` made up by the Tokko Police . Because it was so hot and humid , just staying at hotel was irritating enough . However , there was a laser show that night . But he is pretty cute to me . I figured out the reason . I think that they met their fiances , fell in love , knew each other well and decided to get married . My older sister sent me a picture of her and her husband . Recently , I began reading and listening through iphone . English tutor said : `` You have to study grammar lessons . `` The main purpose of this trip is to attend a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm going to Las Vegas today ( for no special reason ) . I want to join other class from this autumn , kind of gym , tennis , or something like that . It was not too sunny yesterday and I did n't care if I became sunburned , but now my skin has become an awful red color . I 'm a Chinese girl who lives in Australia now . This is my first time using this kind of website because my friend recommended it to me . But I always do my best to communicate with foreigners by using as many expressions as I know . I have never come into so difficult questions given as practice . A few minutes ago , there was an announcement that the flight to Shenzhen will be delayed for about 2 hours . My grandma said that holy ghosts protected me as guardians and kept their eyes on me at my birthday . Actually , I finished all of my classes except an English Advance class . When I lived in Japan , playing the piano and going to my favorite places with my husband were the best way for relieving stress , Of course I like talking my friends , going shopping and so on . Should CEOs be limit on salaries ? This theme is mentioned by that Wall Street provided complax financal products that led to recession on worldwide . Of course I sent a message to my English teacher . There is not a single cloud in the sky . But I do n't like to study grammar , so I always use few words with broken grammar . Like every student in China , I have studied English for 10 years . We went shopping and bought pants and a jacket . This test is very important ( no comma ) because it is essential for me to be an exchange student between my university and Florida State University to study . My cousin taught me how to see my friends ' sex and native language at Lang - 8 . I can use skype & yahoo messenger ! We played soccer game and wii sports . I have two ways to improve my vocabulary study ; one is to read DUO 3 . 0 books and the other is to read a simple English news site every day . Recently , I have n't been studying English because I have been neglecting it every day . But , I will start studying English again from today onwards . I 've taken care of the people who have depression , so I can handle them , but it was my first time treating a person with bipolar disorder . Here in Japan there are many rain showers in the spring and autumn . I 'm looking forward to coming back here next time . I want a Korean - Japanese dictionary to understand the words oftheir songs ! I 'll stick to studying Englishin the future ! ! My supervisor told me that it is tough to teach students English . So she is cute . The guy sitting next to me is bothering me . There are Japanese , Korean , Brazilian and Chinese students in my class . My teacher looks like Hagrid . But to tell the truth , the reason why I love her is unexplainable . I wish everyone a happy time on Valntine 's day . . . I remembered my trip to France three month ago : ) I have some questions . When we take this examination , we are all very nervous because volunteers play the role of patients . Then he died at 65 years old while I was in my first year of elementary school . I posted my first diary half a month ago , but to my disappointment , it After that , I went back home and cleaned . In the evening , I went out with my friend . He is n't my boyfriend yet . We 've only known each other for one week , I 'm afraid that I might be falling in love ! I 'm watching the Japanese movie `` Death Note `` on TV . Both an investigator and the criminal who uses the notebook take center stage . What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitsubishi and Mazda ? I read books for 10 minutes when my eyes feel sore , or I 'll run outside to make my blood stream more active . It 's time to finish writing this entry because at this time , 8 p . m . , I 've got to walk around for exercise . The books are `` The traveler 's gift : seven decisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . After half of a day I received it by a deliveryman and read it immediately . Finally I finished reading the book I accepted the situation , and now I 'm crazy about Lang - 8 right beside them . I could n't calm down , so I hit the wall in a restroom in the station . Yesterday , my sister and I went to the cinema and watched `` Gnomeo and Juliet `` . reflect : If the light from a mirror reflect to the paper , it burns . ( I feel this sentence is weird but I do n't know why : p ) defend : He tried to defend himself but everyone spoke at once , so he could n't even say anything . My parents and uncle visited a temple where she was buried . My family is Buddist so we believe that the 49th day is We had a religious service and prayed for her . but I ca n't think of a serious topic so I decided to talk about techniques for men . `` Do n't laugh ! `` I said to him in English . ( Question : ) Should cars be banned from city centers ? It leads global warming . Dunno why , but I was cracking up badly lol The band I saw is a Japanese band called Kirinji , which is not so famous even among Japanese . It 's sometimes not fun ( to much pressure ) doing work in my clinic . I feel interested when they smile after I say something to them . Let 's try having fun ( pleasure ) in our day even if it is work ! The right picture is the second tea . Wave dynamics , thermodynamics . . . ( particularly WAVE ) everything about physics makes me confused . We 've had studied English at least for 6 years . My family is going to my grandmother 's house . Haha , I looked it up in the dictionary , but I could n't catch the slight difference . I can read English newspapers and books without big problems and have made a big improvement in listening , I should learn more about grammar , I cooked Tandoori chicken with my friends at a cooking class . Last week one of my friends said , `` Let 's go to a cooking class together . `` I wanted to know how to cook Tandoori chicken . I decided to go to it . And , the order , starting from closest the barin is ; thecerebrum , the brain stem , which is a vital part in thecenter ) spinal cord , whichis atthe end of the central nervous system ) and peripheral nervous system , whichare the nerves below spine ) . In Japan , I ca n't imagine all adults would wear helmets when they ride their mama chairs ( ? ) ; that would be ridiculous . But I do n't forget to drink beer ! While she was out , I came into the house and hid in the box which my mother - in - law had prepared . I switched / turned on my favorite radio station . So , I think that my post is finished . It 's my first text on this site . so I baked a cake and made rice this morning . I gave her a present for her birthday , which was 5 days ago . I think that remembering other people 's names and calling them by them is very important . When it comes to remembering people 's names , we try to make excuses saying `` I am busy with my own work , I do n't have time to remember people 's names `` , or `` How can I remember everyone 's name ? `` . A leading actor is Sylvester Stallone , and he was the movie director , too . Another actors were Jason Statham , Bruce Willis , and Arnold Schwarzenegger . Yup , I was correcting some texts at midnight when this little creature silently slid from the yard of my house into my bedroom . I got up early this morning because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsiblity to memorize them with a more efficiency . ' ' Was my brother reluctant to get up at three in the morning ? ' ' My major is international relations , and I want to be a diplomat . In Japan , TV programs are highly developed and devised `` ; `` or `` , and `` culture and languages can be shown through the device . There were a lot of people coming from different countries . I thought he was poorly taken care of . I was surprised because I often parked there instead of parking in the parking lot by now . I 't is weird because I do n't see the red line marked along the street , I do n't know why it is illegal to park there . And the same day , I arrived at Heathrow , England . Originally I 'm not good at English , and additionally , Japanese people learn American English in school . Maybe I saw Selena Gomez ( After seeing her , I used `` google `` , since I knew her name ) . Last , I ate a delicious cake and that was the end of my birthday ! ! I made an appointment with my friend , but she is not the same person from the chicken conversation . They all said that the cabbage I cooked was delicious ! It was a great success ! They gave me the courage to learn more about cooking . Though I study English a lot , my score is the worst score in decades . I started studying English because I am a computer programmer . I 'm optimistic ha ha ha . When we are learning foreign languages , we are liable to think that we should n't use our mother tongues often . What makes our lives collapse is definitely negative thought . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo , opening a new terminal for international flights . They emerged from MySpace first , and recently they have become famous in Japan , I think because of her cuteness and some songs . . . They must have felt more scared than me . I have some flowerpots and a variety of flowers are planted in those . Thanks for your reply a few lines . If we recite a sutra once , we will live peacefully in the next world . I found this site on AERA english and I 'm interested in it because I am studying English now . My husband has entered for a full marathon but he has n't run such a long distance in his life ! I do n't want to participate in any marathon definitely . I remember how I got discouraged by my English teacher in cram school . There , instructors always cheer me up when I ca n't say what I want to say . I can learn what is wrong with my sentences and a more natural style of writing . * Today I learned where can communicate with other country 's friends . * As English major student , I think I should learn English well , so I am reading an English book , ' Black Boy ' by Richard Wright . I could n't understand all of the story , but I know approximately what this book is about . Although I read the book slowly and do n't understand all of it , someday I will be able to read fluently . I believe that . How about Britain ? ? There were many believers and tourists visiting the famous temple . However , in high schools we ca n't choose the classes . That also includes middle and elementary schools . And if we want to make high schools bigger , we have to build more construction and it will waste a lot of money . Some iPod applications are very useful to me for learning more English vocabulary / phrases and sentences . Some example sentences are welcome . I am a new employee in a company , and because my job may use English , I have to improve my English . When I was in school , I studied 6 years of English , but I have forgotten some . Since then , intricate networks of power lines and utility poles have become prevalent in a short time with the increase in human residences . Now the beauty of the neon from human civilization is are replacing that of the starlight here . We went to an all you can eat restaurant , and the price was NT550 per person , which is equivalent to 15 us dollars . Because the restaurant is so popular , we had to wait for like a half hour . That Taiwanese guy asked my students 's phone number , and she gave it to him . I realized that I had wonderful friends and that I should enjoy anything that may happen . It was not possible to go to Nanodee sea . and I arrived at city after 30 minutes . There was a lot of delicious food . I have been waiting for `` twilight `` . I asked my friend for the audio books as souvenirs . I will continue reading from page 52 tonight . In addition , walking and hiking around parks and collecting flowers and plants are also a good example . I saw many of my friends online . article . In addition , I have something to request of you . Can you share your experiences about learning Japanese ? I even forgot a lot of grammer . I 'm in such a good mood because my weekend was wonderful . It 's raining today , thus I 'm so gloomy . Since this morning , it has been raining outside . We had some bread for breakfast . I 've decided not to use a translator for looking at how sentences should look . I would keep dancing but I do n't have enough money . Accessories like rings , necklaces and bracelets , Hanbok , Korean traditional clothes , and more . I feel so bad after getting angry . Is he a clone of the armor pilot whose father is a heroic astranaut ? I had no plans to begin with , so I went to school to check if the exchange list and the exam schedule were available yet . Returning home for the second time , we remembered that two of our friends have a birthday in the coming month . We do n't like them because they 're good at sports ( football , tennis , cycling . . . ) . They eat horrible things such as jelly or pudding , one of the most horrific nightmares for a French person . - Africans ( black people in general ) : they are lazy , only good at athletics or football ( but they 're not technical , they only run ) . French in general : it 's agreed that we strike , criticise / criticize , and moan too much . And my car will be a total loss after test - driving it ! Its content is to improve the communication skills . I was a system engineer in Japan , but I want to find another interesting job here . I was so sleppy , I could n't consentrate on the class . But if you are in relationship and if you say to your friends that you are not going out with your boyfriend on Christmas holiday , they would think it is a little weird . I registered on this site because I want learn English . He acts like he really cares about the puppy in the computer . He might want to say ' Hello I am a puppy nice to meet you ' : ) After checked in the hotel , I went to Union square to take part in a ride on a private cable car that took us to our diner restaurant . It has been while since I last wrote here . So please keep writing in here and I will continue to support you . One of them brought insecticide and an antiseptic spray ttle , and he squirted and sprayed me . They are crazy and make me frustrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped ( loved ? ? ) Ross & Rachel , because I always thought they belonged together . I do n't usually buy imported items because they are a bit pricier than regular items , but they were on sale . Going to Italy ~ Today , I will introduce my favorite building ~ The great wall . But I do n't wanna be in this present situation . Yesterday I was caught in a sudden shower when I went out with my girlfriend in Ginza . Therefore , it encouraged me to communicate with others . There were also a lot of people who had frequently spoken English , they could talk with others as what they wanted and express their thoughts and ideas clearly . You can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get pissed off and say that I have bad attitude . I just found this site now accidentally , and I think it will help a lot with improving my English . But to me , his English seems excellent . The other ingredients are Tofu , cabbage , pork and mushrooms . * * space after commas Although a `` know it all `` is an ironical title , I still pursue to be one . Hachi goes to the station with the professor every time , and from home to the station when hearing the sounds of the train . Hachi never missed one train and never missed the professor . He still never missed a train , though his master never appeared again . One day , he finally goes to heaven to find his master . I want to make friends all over the world . But , nowadays I have began to say to them . when we spoke , I could n't help embrassing like stammer . They were very beautiful and looked like big flowers . Finally , Tegomass ( which is a Japanese idol group ) appeared on the stage . Also , you should sit down at a seat near the door . I often practice dancing with a mirror , but I can dance freely , using my practice , at nightclubs . As a matter of fact , I spent about two to three hours talking to my friends on Skype and surfing the internet , so I did n't get enough sleep . It could n't be helped . At least I can say I did n't waste my time thinking about the things that could never change . I work as a private tutor for students . Today , I 'm very angry because a my unitersity 's student break of traffic rules . Today I registered for a Lang - 8 account . I work for a Japanese restaurant as a waitress . Oh my God , It costed 80 thousand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price , just 10 thousand Vietnam Dong . This week is very hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAME STREET podcast on my ipod in English . my reasons to study english so I have to acquire good English communication skills in order to work well . My plan to study english is to write English compositions and watch DVDs of `` FRENDS , `` which I heard is an interesting comedy in English , everyday day . In spring every year , Japanese hold parties in which they welcome freshmen . Some get too drunk and misbehave . They can be seen shouting and urinating in the street , while breaking signboards , and so on . A few days ago , a drunk celebrity was arrested on a charge of indecent exposure , but many people put their signatures on a petition . Kiyomiya , a very famous Japanese professional rugby team director . I know of one great japanese restaurant in shanghai . My feelings were a little bit complicated because I did n't study very hard so I wonder if I should go up or not . . . He is shy , so I thought he might hate me . ( = this means grandmother ) `` , and hugged her . The memo 's contents are life , daily , work and so on . I hope I can learn more English and share my life . Oh , I do n't have time now . There are many dishes and many things such as chopsticks and so on . One of my friends is going back her own country at the end of October . I will introduce you an interesting article in the morning papers . I am watching ' Ponyo ' created by Miyazaki Hayao on TV . After lunch we strolled along asmall street . I became a member of `` Lang - 8 `` today . American Yahoo 's account I would strongly recommend that you go make an account too . Then , when I started an application `` S / W `` to make a design for cards , I noticed the address data or information was missing . the addresses again . But my cellphone did n't ring . Other contestants recited formal speeches , for example some presidents ' speeches . I thought my recitation was out of place but one of the professors said it was good because everyone knows the story . When I was a student at university , I climbed it two times . I 'm excited and feel a little uneasy . At the end , they played at Carnegie Hall . Thus I always wear contact lens In Japan , most high school students wear loafers to school . ( `` when they go `` is not necessary . ) This is the second time I write a diary . I can go anywhere I want . I could n't find any empty seats so next time I will come into the class earlier . I am fed up with arguing about problems . It is first time I have gone to the mexican restaurant . Sometimes , I dream of speaking english fluently . The lake water was glowing and shimmering . The graduation ceremony of our university takes place on March 17 . Each of our club students traditionally / usually write comments on a large graduation card to each student every year . Because we have common topics and talked very well before . I told them I would sign off soon . I 'm not good at electronic stuffs . . . so now I 'm fighting with them . I wish that all the world 's problems could be solved like children 's way of thinking , naive and simple . Today , I began Lang - 8 ! Little Amy was fearful . I worried about what should I write on here mainly . Exotic Zest Oh , I have a feeling no one gives them to her . . . My grade is not good enough at all . So I try to keep a close eye on the hall and the customers . So I could n't concentrate on the customers . My Vietnamese colleague asked me to go to a karaoke shop and I went to karaoke . So , I need to write jornal about this , and post ? other ? web site or make somefor notice it . Recent , I wrote on lang - 8 , but lang - 8 did n't receive it . That result worries me ! My husband and I went to a hot spring last weekend . Anyway I took the English conversation class yesterday and I was so dissappointed because I found thatI could no longer speak like I could when I was in Canada . and of course I have to answer them in English . If you found any mistakes or kinda correct but awkward expressions , please correct them . I hope I do n't commit errors , otherwise I will have to recover with your corrections . I 'm not sure how I can make this a sentence if I want to talk about this topic . I 'm attending school to be a jJapanese teacher for foreigners . So when I get the skill , I can teach anywhere in the world ! ! So , I can bite him from the tail , better than having had eaten him from the head . I almost lost my life , but at I last defeated any diffiy and caught my life again . I will visit the US next year so I need to know more about the US culture . It 's different from Japanese culture . I have n't experienced giving tips to a staff . The Korean woman who served him in the small restaurant was probably surprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . Unfortunately there is no chili papper Kimbap on the vast list of this restaurant though . He told me that the spa is becoming popular in the Filippines . I finished giving a Halloween lesson in my classroom even though Halloween has not happened yet . It was popular with the mothers , but the little kids did n't know what a sisiter was . Some students had thought she was a ghost so they felt like crying . There are 2 months left until this year is finished . It is never pleasing or proud to hear that the origin of your name came from an advertisement copy ! `` Whenever I call your name , I feel like my tongue rolls smoothly . I went to `` Dockland `` where there was a shopping centre . I loveher so much but I ca n't meet her in real life . But I could not do anything about it . I could n't believe it . Although I filed a complaint against him , I did n't feel good . When I get stressed , I will take a bath for a long time or I will watch a movie . I prefer comedy movies to action movies . It is fun to watch if there are unknown actors in the movie . I wonder what he means exactly . . . Second , I jogged 5 miles this morning and practised golfing in the driving range for 3 hours . The scenery was so beautiful and there were wonderful buildings in Disneysea . Because we were there from opening to closing time , my legs hurt . That night , we had a lot of fun talking . We had a really good time , even though we were tired . I remembered the theme song of Halloween . Because her birthday was coming soon , we gave her a dinner ticket for that night . It seems like the inside exposure 's damage can be lowered by taking iodine as it helps the body excrete harmful chemicals . but please do n't take this too seriously . I have loved a boyfriend until recently . Of course we feel a sense of alienation when we see foreigners at airports , other countries or our towns . Imagine if your country was a small island and if English is spoken in only your country ; it would be a big handicap for you guys . But of course they only spoke English while we were drinking , so I could not join the conversation . The cheaper price and the better quality are the characteristic of our center canteen . I like studying other languages because I can meet a lot of people and learn about the world ( ? ) . The things that happened last night did n't arise from the differences of our cultures but were personal matters , I think ; - ) But our American friends could n't understand her feelings ( of course , they did n't understand Japanese ) . I think it is natural that this happens and it is interesting to communicate with someone who is from a different country . Anyway , I am turning 20 this month . But I figured out the view of the town is so amazing ! ! twice , and been to 4 cities , Pheonix , Chicago , Washington . When I had some opportunities to speak in English , my Japanese supervisor was in the audience and said `` You said a water and forgot to add s to he want `` and so on after every one of my speeches . I became more nervous about doing speeches in front of him . hey guys , it 's my first time in here , I am so happy to know you guys to help me to learn English . In thinking about languages , I am always haunted by my enormously ambivalent emotions . Thanks a lot . His wife is a Japanese . One of my cool Japanese friend told me about this website . Fireflies . My favorite person , Kudo - san , is from Iwate . At my school , I have a Venuzuelan friend . Everything About Me : ) Especially on festivals and weekends , KTV is almost the premier gathering place for young people . So scary : - ( After we left the shop , we went to two other shops and only looked for something in the shops . By the way , I 'm going to Spain , France , and Italy next month . The reason why I spoke so loudly was that I wanted everyone to be able to hear me no matter which corner they were in . Anyway , I enjoyed it . Yesterday it was rainy , but I took them to the doctor . My daughter did n't like theENTdoc . She did n't sit still and cried , so I had to hold her whilethe doctor examinedher ears . They pester me to go outsideeven though I play with them , suggest new games , give them new DVDs , new snacks , and so on . I began studying English two months ago because I want to go abroad to study it . I hope I will have a permanent dream . I started this job in January . I have to communicate with customers and take care of them . I have confidence working with people , but selling is not just about communication . In fact , _ I am crying as I read his mail `` We had two visitors from Vietnam at my home . I watched the news yesterday and I heard that there are many people in the world affected by this influenza , and also there is one person who visited Mexico and guessed having this disease in our country , My daughter slept by my side ( last night ) . So , I always feel sleepy . . . I forgot the timetable was changed from usual day . Unfortunately , I was eating lunch in the park so I was 10 minutes late . I ` m not sleeping , because I am trying to translate my favorite songs . In the x - ray , he and the doctor could see one earring . Actually , I 'm pregnant and often have morning sickness , so I felt gloomy before the wedding . I hope I will be a top salesperson . I 'm great because I keep memorizing boring words . I 'd never played tennis before I took the class , but the coach teaches me how to play step - by - step , so I 'm getting better . LOVE AT FIRST SIGHT ( part 2 ) I think the theater will be crowded this weekend because of `` Avatar `` fever . I believe `` Avatar `` will reinvigorate me with its visual technology and emotional story . I 'm learning new information that I did n't know although I memorize that , I ca n't make use of it . The differences between America 's and Japan ' sabaut traffic rules When I came home , the game had just just finished . . . So , probably I will have internet there , too ! They are learning Japanease in uni , so they practice Japanease with me , and we Japanese exchange students practice English with them ! ! My name is Frank , and I am Chinese . I live in the Guangdong Province with my family . I graduated from the university 2 years ago . Since all the groups would probably be using Powerpoint , I went to the electronics store to buy it with no worries , My concern was the compatibility of the English software with my Japanese OS . There have very beautiful traditional Japanese gardens . But whenever I meet my friends , But I do n't have any complaints . I really enjoyed my home life because of my email ( ? ) friends . I do n't want to go out , I do n't want to cook , I do n't want to study . All of my friends will spend long 4 - days vacation in their hometown except for international students who can ` t go back their own country . They are not vegetarian . When I read about this website , I could n't believe that someone would help me and correct my mistakes for free . If anybody of you are interested in the history or geography of my country or city - please write to me - I will do my best to help you . That 's why I researched some local tours through the internet and some books . I sometimes teach students Japanese and Mathematics . My favourite articles are about the international life , design , and fashion . They throng to pub on Friday night to sing a song , play an instruments , and , of course , drink a beer . During summer quarter , I took an ESL ( an abbreviation of English as a Second Language ) class . The main activity of this circle is organizing what is called `` IW ( International Week ) `` . Let me explain , my university cooperates with foreign ones . I 'm sorry for long sentences . . . After that , we dated a few times and I was a little confused about our relationship . In chinese , relationship has a wider meaning than in English . Fortunately , his skill was not that good and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) He asked me do I know anyone who would go to Japan , and can buy Japanese cigarettes for him . I helped him to get the cigarettes so he should come to see me to take them . First let me introduce myself . Although I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an International college . Almost all of my teachers are foreigners . I am a college student and my major is informatics and communication . I want to learn English to study computer languages and technology . I look forward to seeing your correction . Actually I graduated from Seoul Women 's University about two years ago , but it 's near my house so I see it almost everyday . . Bahrom Education , teaches people to share and learn important things with others , like philosophy , etiquette , religion ( christianity ) and even the history of SWU . Classes include group discussions , performances or individual learning . After 30 minutes of walking , I felt tired . Although , I do n't really have to go to bed right now . I like a movie in which I discover and solve some mysteries with the main character , so I was unhappy with this movie . Actually , sometimes old eggs cause food poisoning like salmonella , I am pleased to meet you . Tomorrow and the day after I am going to visit Miyagi prefecture in Japan , where there was severe damage from the huge tsunami that happened in the last 11 March . I have had two jobs for two and half years . this is more natural . His act was illegal of course , but was it so serious a crime that investigation of his house was necessary ? Then , I happened to think , `` It 's unusual for me to eat bread for breakfast `` . It 's unusual in Japan , because there are rice cookers in all the houses in Japan . I bought my new Windows PC for mobile last Thursday . Yet weather forecast said it would be snowy today . We usually start to study English from junior high school as a part of compulsory education . But the native English teacher speaks fast instinctively . In Japan , it is very popular for girls wear them at a fireworks display . We did some sightseeing , had lunch , and bought seafood , such as crab and flatfish , there . So I keep on studying ! It 's just nothing else than a program which is displaying us the flashcards and making sure that we are learning them . You may also ask , ' what the hell are the flashcards ' ? I do n't even have the strength to go prepare myself tea . I have a bad headache recently , so I ca n't easily think in other languages . I want to be able to write fluently and quickly . . . Please teach me the meaning . I have to get my license by April , so I 'm learning how to drive . I 'd like to talk and debate with my kid ( child ) in English in the future . Sorry I ca n't write anymore cuz I 'm so fuckin ' sleepy right now . I worried about getting fat because I put sugar and milk in coffee . After graduating junior high school , I joined the Japan Air Self Defence Force . Today I had an appointment with my friend . I 've just finished writing my lyrics ! Please read ! I 'm going to go my friend 's wedding , and I 'll congrate her . It 's famous for it 's peaceful village atmosphere . I did n't even realize that the HALLS were making my stomach ache worse . To my sadness , villains certainly do exist in all societies . Recently , I am tired because of work . However I was able to understand her by watching her body language . . I got out of bed , and opened the curtains . I finally got a day off . I am a cook , but also a student in university . I still have lot of things to write but the things above can describe my feelings for Zidane . I have n't written in my journal for one month already . It 's delicious ! ! ! because you are a japanese , you can get huge income . But I think going on a trip on Christmas is a good idea , because you can enjoy illumination for Christmas in a place you have never been and also sight seeing . Yesterday , I read an article about `` Lang - 8 `` on the Internet . She also sometimes stays at school until 9 p . m . working on the project . If you say yes , you 're a person who likes adventure and lives now ! He hit his head on the ceiling hard and gave himself a concussion . HI I 'm an Italian girl , studying English in Melbourne . I studied in Pisa , but I 'm Calabrian . One of my friends called me this evening and told me one of my friends from high school was dead . It was difficult for me to accept the news even though she was not one of my close friends . However , I used to copy her homework before exams , and go to her house . We liked to sing songs and go shopping . I did n't think she would leave my life so soon like this . I am sad . My idea through my experiences is that work requiring brainpower ( like studying something ) in the morning is much more efficient and effective than in the evening , keeping away from sleep . I do n't want to stop challenging myself . Yestereve , I helped my friends write compositions until 3 am . So I 'm so tired today . Many people who can speak English fluently are introduced in the book . I was happy because I got him smiling ! Actually I 've been going with my girlfriend since my time as a student teacher . So I hesitated to go there , but today I decided to go because it is fine and cool day today . I 'm happy to have 3 friends on Skype . The island was so wonderful , and from that time , my dream has been to live in Hawaii in the future . I have decided to go on a working holiday in Australia . If you speak English and maybe interested in Russia , or the Russian language I guess you 'll have something to talk with me about . I 'm a college student in Japan , and I 'm going to go to Vnacouver this April . when you go to different countries , you will learn more about your own country than about the others . I 've been meeting Japanese learners through internet and they are very good at writing Japanese on text chats , even though they are very young . attend : I decided to attend the language school in Umeda . occupy : In this company women occupy 60 percant of the executive officerpositions . concentrate : I was scolded by the teacher and told to concentrate on the class . pursue : Humans have been pursuing the truth but only few people have found it . First , I want to take a city - tour bus in Seoul . It 's famous for a huge bamboo forest and a metasequoia road where metasequoia trees are planted along side of the road . I 'm learning English to communicate to foreign people . Please check my sentences and pick up on my mistakes I planted sweet potato last Sundy I also planted cucumber , eggplant , tomato , corn and watermelon . I 'm looking forward to a big harvest . Everything is nd beyond my imagination . That 'd be because , when I study by myself , I can proceed my own pace , and so I do n't need to wait for other amateur users that are less skilled than me . `` Pirates of the Carribean : On Stranger Tides `` was also exciting . Eventually , I stayed with my friend . I bought pasta , iced tea and a chicken and rice casserole . I want to study English by using this coool website ! Actually , I 'm not good at speaking or listening to English . So yeterday I looked fearfully at the scales . Also I am willing to reduce by diet The way America killed bin Laden does n't reflect the democratic face of America . The way they used instead reflects an undemocratic face of America . Oh , America if you call for respecting human rights and human dignity , why did you throw bin Laden ` s corpse in the sea as if he was an animal instead of a human being . It 's so expensive . Am I too serious ? Definitely yes > < is a good night I am on the computer , my family is asleep beacuse is late at night ! ! . . . We live near Zi Jing mountain . This is my first time on this site , I 'm excited ! I seem to have no talent for learning foreign languages . Today , I made some friends . ^ ^ Recently , learning English makes me very tired , but talking with friends in English is very fun and it makes me How do you spend the valentine 's day in your countries ? I will take the TOEFL test before long , so I am going to practice for the TOEFL Writing Test . First , we were divided into two teams . Of course , the team being questioned had to answer quickly ( too ) . I 've spent my time drinking with friends and watching American dramas . Today , I just found myself watching an America drama again ! ! I met some foreigners and many students who also want to practice their language skills . Sometimes some people asked me questions , but I did n't respond to all of the questions because I was n't sure what was said . I remember that I did n't speak any words expect `` sorry `` when I first came to here , what 's more , I did n't know any of their dailog , but I can ask some questions and can communicate with others in English in here . I have no friends to study English with here . We went to a library to study until 4 in the afternoon . Our heartbeat was the rhythm that made us connected , and we were dreaming together about this new life we 'd live . I 'm working as a cram school teacher and I 'm good at Japanese ^ ^ As interesting as these activities are , some people still regard Ghost Month as an unlucky month ; hence some people keep out of the water , some go to temples every day , and some are very wary of what they do and say Oh ~ My ~ God ! ! I 've made a dress for my daughter . I have made my daughter 's dress which is pale yellow because she wants to be a princess too . Their dance is very energetic and I think it would give others a power when they saw it . The two brothers are very vigorous and their mom says they have fights constantly with each other . We made an appointment to meet at a cafe near my house . We arrived at the cafe at the same time ; 10 minutes before our lesson was to begin . So I want to learn this very important information . Because I watched it a lot of times before . Recently the weather is so bad . According to the weather news , a typhoon caused this rain . ( the PlayStation3 has individual e - mail addresses ) [ remove the period ] So I was a little bit disappointed . About the mine accident in Chile At first , I _ was happy and impressesd by the news that all the miners have been rescued . After that , I felt a little strange . Why did Chile govornment agree to re - digging such a dangeorous mine without the appropriate research ? I believe learning languages is the same as learning another world . There were many beautiful , big , traditional buildings . All of the food was fantastic ! ! ! I wondered if I was a princess . It was I inconvenient , but I thought it was actually kind of funny . I have read another piece of news just now ; according to this , at least 51 people were confirmed dead due to `` Ondoy `` storms and 280000 displaced due to the flood . In the beginning , I was at a loss . 3 ) My another partner , who is an American - Born Chinese , told me that he was busy typing a menu for a restaurant . I had a bit of trouble when I attempted to sign up the forum . The song was used as background music for a documentary of The Olympic Games in Grenoble . Maybe I 'm still scared of the feeling of losing him , someone who was very precious to me . I got myTOEIC results . Sportsday is going to be held at my son 's preschool next week . Because I did not get up early . Please check my diary I also met new friends , a Japanese woman and a German man in Zurich . Yesterday , I had an English lesson where we talked about abortion using an article titled , `` Obama Lifts Ban on Abortion Funds . `` So , please talk with me on Skype . has taught me to stay whole . How I miss the days when I speak Cantonese and proudly take people speaking Mandarin as outsiders Yesterday , I bought a video game . There is only one cabinet competing so it 'll automatically win At the checkout , a cashier told me that `` this is for display , not for selling . `` Then , I had to go back to get another dish set . She had had no children but she had enjoyed her life with working , hobbies , and socializing . ( For Chinese factories , Christmas is n't a holiday ) They were very sweet and delicious . My first diary in English for you So I intend to write regularly . If possible , I want you to correct my diary and know about Japan or Japanese . I roast it with garlic and put added some basil sauce . Marina became a famous language teacher and her website hit more than 100 million . I 'm always wondering if my English is natural or not . I had tea with the participants after this class . I had a good time because we talked about systems of studying English . We decided to get a construction company repair them . I was stuck in the tube for 40 minutes and had to abandon the Picadilly line . I could n't understand why she chose that place . , and I didn ' t I want to become friends with those who are learning Japanese . its been a long time since I spoke english , because I 'm studying japanese in dalian , the beautiful city in northeast china . there are many interesting things and delicious food in my homeland , especially hot food , pandas , and lots of good indie music . Yesterday I started PickupPhone study . So , I think we should keep and preserve our old buildings because of our culture and historical legacy . It 's a big decision and quite a challenge for me . Now I 'm worrying about homestay I am always looking at my co - workers and following in their footsteps . Brown is my natural color ; my mother 's hair is the same color , too . `` No , I have n't ! It 's natural , honestly ! `` Each time I got a scolding , I grew more tired of it . I hardly understood what my teachers said during my online English lesson . Freedom ! On hot days , I need a handkerchief because I 'm very sensitive to heat . Tonight , I drank a little alcohol with my co - worker near our office . Today , we changed the world . According to my Singaporean friends , in Singapore , a flight attendant is a not high standard job at all . For Singaporeans , flight attendants are just servants or something . And we promised to help each other with our language learning . Now I can write in my diary in English , on my PC . For instance , `` I graduated from Waseda university ( it is the very famous Japanese university ) `` `` I studied hard , for theentry examinations `` `` I did not study that much when I was a student `` ( But this guy graduated from a famous Japanese university ) . We were looking forward to having a special dinner at your restaurant . Recently , I was surprised by the financial results of a certain company . This weekend , I will play football , as / because I am looking forward to participate in a soccer festival . Recently , I 've been interested in diet , learning English , the Internet , and shopping . I am studying at the Tokyo Institute of Technology . ( another option ) Im tired because writing in English is very difficult for me . . . There is fireworks display today . But the whether takes a turn for the worst . Sometimes , foreign customers come at KFC . Finally , should I say anything ? Because I often think `` I want to some sweet coffee ! `` complain : I complained to my teacher about the scope of the test . hate : I hate insects , particularly cockroaches . despise : I despise people who think money is everything . worry : You do n't have to worry about your health , you 're healthy enough . I felt very comfortable . I booked the tickets for the 9o ' clock ferry the previous day , so I left our home early so I would not miss it . I asked strangers if there were another way I could get there , furthermore I ran at both the platform and the road , finally I reached the ferry station almost too late . I could n't climb the stairway to the crown because it was already fully booked into next September . But I spent much time there , and I learned more of the history of America than I knew before . A lot of celebrities have gone there . I said , `` What a beautiful view . `` but I could n't find any difference between religion people and non religious people . . , I was so surprised that some developing countries donated relief and condolence money . So , I 've been eating a powdery fermentation cabbage ( It 's a powdery TSUKEMONO ) for 2 weeks . I 've been here for one and half years . But unfortunately , as well as no interview , there was no reply for my application . thanks for your comments on my previous journal . I want to compare the two great religions as there are many differences between them . . . however , after many years becoming an apprentice , he found it difficult to lose his worldly desires and he decided to leave his master . I sometimes watch METAL GEAR SOLID 4 videos on youtube these days . which may be difficult for foreigners to understand . Soccer ? Football ? The American soccer team is also very strong . Some people were hoeing and fertilizing the soil and some were watering their plots . Last time I put a mark on the juice 's label , and I looked at this mark and thought that they drank at least 400ml . If you want to know about Korea , please contact me . the lady uses a marker to mark two dots on my ear , and then ( she ) just uses the piercing gun to poke two holes . although it looks like it 's very painfull , I just feel a little bit itchy . thanks to alicia for acompaning me to the piercing shop . In1803 , Thomas Jefferson , the 3rd president , purchased the great wild west for about $ 15 million from France because it doubled America 's land mass and would provide rich natural resouces as well as great farmland . Maybe it seems like no big deal to most of you , but since I 'm now studying in Japan , ( and the Japanese are so difficult to understand ) , I must be careful about everything I do . At the end of each semester , the teacher asks us to write something about the lectures : advice , suggestions or even just some opinions . It may not look very strange in English , but I am really not sure if it sounds like a compliment ( in Japanese ) to the Japanese teacher , who really did do a good job . Some people think that the death penalty is the best way to punish murderers . Survivors must want murderers to live so they can reflect on their cruel actions . I am going to go Beijing to present my research results in English before the end of November . The title of the book is `` How to Walk in the World `` . I recommend you to have the book ; however , do not read it all , because if you know everything about the trip , the trip becomes less interesting . Anyway , Washington will be rainy or snowy . . . . . Today , I 'm going to watch an American movie to help me learn ( study ) English . The genre that I want to watch is either ' melodrama ' or ' comedy ' . and , I did drank vanilla latte at Java city Coffee I love coffee ~ very very much I 've just found this lang - 8 place today and registered right now . Actually , I was worried about this thing . so when I knew that it was not my mistake , I was relieved , at the same time , I am now aware to be very careful not to do that again . To find the best friend is very difficult . A lot of people don ` t have friends , and me too / and neither do I . Children like to play pranks on people on this day . In other words , It had become a piece of garbage . There are many things affecting the world like air pollution , climate change , environmental pollution , the destruction of the ozone layer , and the clearing of the forests . . . . . And every year we suffer many natural disasters like earthquakes , hurricanes , floods , volcanic eruptions , and tsunamis . And they unfortunately kill millions of people . Mastering Natural Expression Recently I met with a friend who is living and working in Vancouver . Why did I have an interest in America ? And also , I felt like I came to a different country like a resort : ) haha By the way , it 's difficult for me to figure out the differnce when I use the same verb but with different prepositions . Because he appears to have been on bad terms with the executives like the front staff , owner and so on for the last few years . I work with free medical insurance . If a person 's income is low , they can qualify for free insurance . It includes coverage for medical prescriptions , dental , vision and emergency care . I realized that even if people live in different countries , they learnthe same important things . It is liquid and it contains necessary nutrition . I am sad that I do n't have a lot of sophisticated ( sp ) writing skills . Tomorrow , I 'm going to practice drums and English ! Study ! ! I 'll study English a little by little . . . I pre - orderd a concert ticket for a front row seat . I 'll go to the mountain regularly every morning ! I 'm a Brazilian , I 've studying English for 3 years and I just noticed that my English is not as good as I thought . Whether or not we have a lover in the future , we 'll still support and encourage each other . And , bilingual people usually say that you should reject Japanese when you 're learning English . So , if you meet an incomprehensible word , you should search in an English - English dictionary . But , I ca n't write or speak English without using a Japanese - English dictionary . Learning a foreign language is hard . It has a very comfortable room , gim area , and spa . In villages , farmers are very poor . They need clear water and livestock . But if some factories just emit dirty water , its not good for people 's health . My country needs to care more of its people 's welfare , and not focus only on good things . Of course , if you tweet in English , follow me , and I will be more than willing to follow you too . : ) Rumor has it that the first year of college is the most comfortable one , but somehow , I think I was cheated . I have strange habit of going to Odawara castle every day . I take the first or second Tokaido train from Hiratsuka . Recently another person took the place of our president , so his prediction was n't realized . It 's located in Kyushu . I should study harder . The lecturer gave those attending the task of discussing the government 's new policy that English classes should be taken by native English - language speakers only . He arranged us into small groups , so that I ended up talking to two people who are English - language teachers . I heard that in Finland there are no textbooks , so I was so curious to learn how the Finns could be so sucessful without textbooks . The students in my class are clearly bored and I too find the learning experience unenjoyable . Especially when the stories in the textbook are so dull . Would n't it be better , in such a case , to have no textbooks at all ? They 're farmers . Currently they preparing for planting rice . The price in the restaurant is fivefold more expensive than general Taiwanese diners . Yesterday , I felt sick because I got drunk . Suddenly , I realized that I had been a college student at that moment , and I would start a new stage in my life . I went to the library after the test . I 'll go to Okinawa this coming Sunday with my school friends . But , because I 'm shy it was so difficult to make friends there . . . I managed to talk with some people . my listening and speaking skills are not good . . we have learned only grammar or reading . . . I 've been writing very simple sentences , but it takes a long time for me to make them 'cause I 'm not used to doing it . The tomato jolted in the basket , it makes made tomato juice . Sometimes customers scold me . I have a friend who lives in Hawaii . After that , he went to Hawaii . He has lived in Hawaii for 9 years . The question is whether we should eliminate the one child policy . I always regard her as my anti , although she is Vietnamese . Indeed , why do I learn the languages , if I have no one to communicate with it ? I 'm fond of music , espesualy , of Folk - music . I 'm Japanese but I feel that I must learn the Japanese language even more . He has to stay at home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guilty and I really miss him : < Where is the sunshine going ? Of course , I am really happy that we realized that we loved each other though . Yesterday , we had a translating class and it was exciting for us . In the class , we learnd how to translate texts from English into Vietnamese and vice versa . So far , when I read something in English , I can understand them if they are on the fields that we have been touched . So if I am not good at my own language , it will be even more difficult for me to be good at other languages . long time boarding is very tough for me , but I had to take a bus after arriving in Tokyo to go to my hometown , Sendai . We are planning to meet sometime , as we are living in different places . As you know , we have a new president , government , and a new coalition . Since 7 people are using my stuff , the roll of paper towels is diminishing fast . so I was jittery when we could n't park there . Besides I 've been expecting a package and letter from another place in Japan which has been delayed TRY - WORKS conducted questionnaires on the web and the street to ask girls about which character was the cutest . They were sold at game arcades as a prize , and Kapibara - san became the most popular character of all the prototypes . He became a big hit among girls , and he has kept his popularity ever since . I am currently studying at Gifu National College of Technology . My favorite sport is snow board . She ` s sooo cute , especially when she makes Homer chew on her pacifier by force . A patient came into my clinic 3 minutes before consultation hours ended . But nobody commented on my diary . They 're very nice but later , my legs ached . This holiday has many days together . I enjoy staying at home with my family . He loves Disney , so I wanted to send a Disney one . However I could n't find one . It was my first time going to a job interview in English . I 'm wondering if the sentences below have any differences . I studied English at school , but I never did learn it . I finished my bachelor 's at the beginning of the year . I almost forgot all the words and grammar . Just because they are so yummy , they become others ' prey including ours . Suddenly I felt sad about quitting this job . The author of this book is genious or god indeed . Since I was brought up in a poor family , living without worrying about money has been very important for me . We gossiped about our boring routines and talked about some interesting things , like the Casino . I 've wanted to have as many friends as possible worldwide , because I believe being friends with them broadens my sense of view by sharing our opinion about things ! Because of this , when we went out last weekend , I kind of got lost in Harajyuku and believe it or not , he led me to the right direction . When I came back home and opened it , I just went insane . . I decided to make a plan in order not to waste the time left . So I would like to keep writing and speaking English . My grandmother gin to has started going senile . I have finished ( watching ) Gossip Girl season 1 on DVD . Since yesterday , I began to study English by myself ! First , I read and recite words . At first I did n't know the cause of this riot , as Japanese TV station did n't report the details . Today , I saw my psychiatrist because of my depression disease . So unfortunately , my depression disease is getting worse , . first diary I 'm so happy , even though it was expensive . But I thought the tiger one was cuter than the lion one , so I chose the tiger . My address is on my profile . They do n't like me because I was put in charge of an important project and I 'm much younger than them . She was my friend when I was in elementary school . I saw `` The Blind Side `` yesterday . I 've been eagerly expecting this parcel from my parents . These days the temperature is always 25 to 35 degrees . I 'm learning conversational English through the Internet . Althought it is a site that focusses on children ( the books are divided in three categories : from three to six year old children , from six to ten , and from ten to thirteen years old ) , there are many different types of books and in many different sizes , so I think it is a good way ( for us ) to increase our vocabulary in a second language . [ too long ] Alice runs after the rabbit and disappears after it , into a hole in her backyard . Unlike foreigner , people like going to the beach , having picnic or outdoor activities . All in all , I think that both inventions are good but the Internet has more advantages . If I eat an ice cream every time I feel it 's hot , I might gain some weight : ' ) is really bad especially writing T _ T I 'm trying to talk English and listening to English every day . The title was `` Science Allergy `` We Asians performed a play ( or skit ) . To tell you the truth , I did n't really perform . At lunch time , I was talking with a manager . Anyway , I recommend that you should watch this movie ! First diary I am a beginner . The people who will attend Zufar 's class are better than I am , and I think I think one person only has one life , we should cherish our life , and live happily . I saw a movie which is called Harry potter . Today was the last day of my course and I received a certificate . They are famous in Osaka , where I was originally from . I have always been a girl who really likes to smile . ( There are two types of Zorb . In one , you can grab the handles inside the compartment or you 're fixed with your arms and feet and there 's no water . In the other , the `` hydro zorb `` , there are three or four buckets of water in the compartment . But , sometimes I am dying to eat a lot of junk food like pizza , chips , and burgers . Yesterday I picked some . As long as I am writing this , I suppose that I have to withstand biases ( or comments ) from other people . Today , I 'm going to write about yesterday . I always eat food carefully and with gratitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very popular in Japan . I feel this way strongly , especially when I feel insecure , like when I walk alone at night . As soon as I realized that I was being chased , he grabbed my neck and choked it until I passed out . But in 30 minutes ' time / But 30 minutes later , I was almost dying in the river . She 's a golden - retriever that is very pretty , cute , and clever . Moreover , I did n't take charge of the register today . I 'm studying English and Spanish . Now I 'm considering applying for the Fashion Designing Course at the Central Saint Martins in London . By the way , I have been interested in Spanish since before I entered my high school . It 's nice , because it was made so that we can learn it in 30 days ! But I do n't believe it , because I can not speak English very well even though I have studied it for long time X ( Despite a strictJapanese society , I feel happy whenever I have dinner with my family . We should n't label it right or wrong , but explore it in depth . There was a terrible typhoon . Hello , everyone . I 'm a new member of the lang - 8 community , I find that this is a very interesting site . I 'm not restricted to only learning English , but I can learn Korean or Japanese as well . He is a very powerful man . When I was little , I watched the Gundam series as well , but even women and young boys died easilyin each episode . I finally stopped watching halfway because of depression lol In order to save money I decided to ask my parents for some books I 've wanted to read for a long time . ( I 'm also a little chubby ; that 's another reason why I would rather read a book than eat chocolate . . . ) : D Yesterday I bought them . In many cases , which is even more disappointing , typhoons cause landslides on weekends , just screwing up our nice Sunday . I felt that they deliberately come on weekends . In recent days I feel good to drink hot green tea , some interesting things . Learning English alone makes me feel that English is so hard . I answered my boss , I 'm your `` right elbow `` or rather `` right arm `` . Last time , I mentioned my undergraduate days . Actually , the women 's college from which I graduated is in Kyoto . It is a pretty historical and mysterious place . I have heard that Kyoto 's central city is being protected by a magic square . In the Heian era , a noble women who was very jealous I arrived in Canada in april . Other sources say that children who have imaginary friends may have advantages in terms of language ability and other intellectual functions . I suppose that this is a difficult problem . In winter holiday two big events are celebrated , Christmas and happy new year . I ca n't drink alcohol . My friend and I decided to launch a project called ' getting a boyfriend . ' When we 're in front of the restaurant , we 'll pick one guy a week . `` The workers in Google doing the smallest developments have a doctorate . `` If I had n't found out about this method , I would n't have I hope Lang - 8 helps me improve my writing . But in September , I will go travelling to `` The Hakone `` with my girl friend Fujiko . The friends gave her earrings and FORCED to have her ears pierced . ( It looked painful , so I could n't see her get it . ) and I made her choose as to what she would receive . In my hard times of adaptation to a strange place , they will be a kind of energy for me ! I think it might have been anaemia or an epilepsy attack - I think it sounds better now : D My mother just listened to my opinion and encouraged me . Tonight , I attended the public speaking club I joined last winter . There are many kinds of people in the club / Many kinds of people enrol in the club . There are business people , college students , foreign residents , retired people , house wives , etc , , , , , , , ( but I will not be a blackberry or Mac pc user . There 's no water , no electricity , no gas , or no food . Okay ! I can cherish a teachers relationship with students no matter what . At New Year 's Eve , many Japanese prepared for a good New Year . By day we prepare New Year 's dish , general cleaning of the house and write New Year 's postcards . Today , I went to a fruit market and ate some durians today . The first picture is the ancient tomb of Umako Sogano , the most powerful minister in Japan at that time . So I went to the supermarket in this morning . But I 'm a little nervous becouse of my poor communication skills of English . My job is a project manager for developing web sites . This is my first trip since I got my job , and every month I save a lot of money in the bank . I want to say `` thank you `` to my lang - 8 friends , thanks for your help ! ! ! At midday / In the mid - afternoon of August 4th , one of my new colleagues and I came to the company to report together . On Monday August 8 , at about 10 : 10 am , we got on the company bus that was waiting for us near our apartment and headed to work . How beautiful the sky was ! It is a popular sport which has spread to every corner in China so much so that we now call it the national ball game ! Thank you very much for improving my sentences . & nbsp ; I really appreciate everyone 's help . When most Japanese people speak to someone who is older or whom they are meeting first , they usually use honorifics . My First Diary However our company ( probably all companies in Japan ) is very nervous about the flu and gave employees an instruction note if we have symptoms of the flu . Do n't go directly to a hospital or clinic . `` Doc , I know I 'm OK , but I have to see a doctor due to company regulation . I saw a foreigner who imitated DRAGONBALLs character Gokuu . I like Roppongi , but I do n't have many opportunities to go there . It was slightly rude of him , was n't it ? I 'd like to watch some TV programs but . . . You can find a lot of churches , temples , mosques and indian temples . Malacca is a historical place where it was colonized by the Portuguese . It is famous for its cable car traveling the fastest speed in the world and is the longest in asia . And the theme park is fascinating with its roller coaster . And when I arrived at the library , I noticed that on Sundays this library does n't open ! ! To make him interested in the Korean language ? After that I went to Chofu where my friend lives . Maybe it 's because of the differences between our cultures . . . . ? ? The latter part of golden week , it rained . By the way , are there long vacations like golden week in other countries ? Today I went cycling to keep healthy . I bought it at Takashimaya . But I do n't usually do farmwork , so I was exhausted . I was finally able to come to the site a few minute ago . So , my friends and I would go dressed up with a cosplay ( costume play ) to the events celebrated in Madrid for comics , manga / anime or Japanese culture . It 's raining heavily in Nigata and Fukushima prefectures . Those prefectures are raining so heavily that an evacuation order was put out by the government . And about four hundred thousand of Nigata 's people have been evacuated to a safer area . Shopko is one of the biggest shopping centers in Wisconsin where I am living right now to study English . After I walked 30 minutes , I had the worst thirst I have ever had . I decided to buy juice in the Hopko instead of from the old vending machine . Au pair is famous in Europe , but does n't seem to be in America . If anybody does n't mind talking with me , could you help and advise me ? As I have shown , art festivals are strongly dependent on local people and contribute to stimulating regional economies . From now on , try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs all around you . But I 'll upload entries at my own pace from now on because I 'm satisfied with this . I got bored with that . Although I konw my new school , I have many worries , but I think I will study hard . BUT my parents do n't always agree with me . The Asahi Beer Company should appreciate the fortunate coincidence , should n't they ? I try to talk with foreign people often . I am happy if we do n't have snow in winter because I do n't have to shovel snow . ( It is tough work ) But it means the earth is getting warmer and warmer . . . . When we entered an Okonomiyaki restaurant , we were showen to the seat in front of the big window . ( shouwed to the ? ? ) We could see the Doutonbori river from there . I had not aware of this profession , but as I looked back on my life , that maybe influenced me . When I was in Ireland , I was in TV add for Smirnoff Ice in 2002 . The first reason is : I ca n't come up with the next word to say quickly . And my mum raised me . Mom passed away in 2001 and her room is now quiet and empty . My class teacher is a foreigner . I want a relationship with american people . We are working hard to fix this problem . Recently , many people have been visiting this area . First , I saw it in English with no subtitle . Recently , I read ' Norwegian Wood ' by Haruki Murakami . My home and car is covered with snow and the landscape is beautiful . Actually we did not yet know what we would buy . But I know she like to cook and read books . Everyday , I have to do a lot of experiments and research , so I have no time to do what I want . Dear friends ! We ate lots of chicken ^ - ^ It 's raining hard outside . I like the landscape after the rainy days . I like it , it draws a smile on my face and it often makes me think of many things . Should I put off some tasks to complete the following day ? All present politicians should watch it . Seita is hero of this story . His father was an officer of the Japanese navy ; therefore , his father was not in his house but on the battlefield . ( I guess his father had already died in the war but his family did n't know yet . ) He had a mother and little sister , whose name is Setsuko . When his family tried to escape from bombing , his mother got involved in the explosions . Seita 's house was completely destroyed as well by the bombing . Many Japanese people who were in right screen completely forgot these historical facts , and they enjoyed their luxury and busy lives in a big city . I 'm studying English , and Recently I happened to find that itunes has many internet radio station channels in its menu . The itunes list of internet radio is good , and almost all of stations are now in service , so I can hear lots of different music genres . ( Futon is on my bed . ) I usually sit on the floor and use the PC but it 's uncomfortable , so I decided to buy them . I should have separated them into two parts , and cooked them twice . . . I mix it into tomato sauce or curry sauce as a hidden ingredient for extra flavor . Can you tell me what this sentence means ? She decided to take the seashells which she found home . But they gave me portraits with a message . Although the price of a plane ticket is not as expensive as tickets to other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of getting a visa is complex . There are a lot of kinds , such as : yolk mooncake , ham mooncake , moon cake with meat etc . The Mid - Autumn Festival is a time for family . I do n't think all Singaporeans are lazy . There are many kinds of food like seafood , meal and vegetables . Dealing with hectic schedule Today , I went to a book shop in Shinjuku . Octopus is a sacred living thing , is n't it ? Hi all , I 'm Midory from Hokkaido , the northeasternmost island of Japan . It is a good time to visit overseas because of the high - valued yen , but the oil surcharges are still expensive ! The hero , who names Luffy , fights an enemy every week . : ) On the way home , I got caught in the rain . . I often see it . so I asked my mother where the cat gone ? My mother answered me that the small cat was dead . I bought jasmine tealeaf at department store in Kobe a month ago . I ca n't leave it so its gon na cause me to gain weight . . . He and his friends made cupcakes at the night because of white day . I love a Techno music . I heard that nowadays sake is more popular in foreign countries than in Japan . A Japanese company announced that they will use English as the official language in their offices . But she said in a shopping center ( COSTCO ) in the neighborhood , two people were killed because of the collapse of it 's parking . I 'm planning to play baseball but it 's rainy . Maybe you have to write a long and boring essay , maybe you have to find a job , maybe you are suffering from a disease , maybe you just lost all your money . . . On Girls ' Day , Japanese set up beautiful Japanese dolls . But the dolls which , we call Hina dolls , are very expensive I want to write [ my introduction ] again . One day I told a story about the `` Gorgon `` . She felt very afraid . However , she painted a picture on a piece of paper and put the paper in her pocket . I 'm going to university to attend classes . Yeah ! I passed the quality test today . The difference between them is the long tour permits you to go inside . And we should do something we can do easily , for example , to send some food to the areas with a food shortage . In places which do n't grow crops , it may be difficult to increase crops even if they can use technology from developed countries . But also I think that having a relationship while being young have bad effects . I can speak it a little , and gradually getting worse these days because there are fewer opportunities to talk with English speaking people . Whatever happens , I will never quit studying English . ( At this time , she was eating a rice ball with seaweed . ) Then I went to the library to study my major , and I always sweat in this season . Then , our topic shifted to onomatopoeia ( This means imitative sounds like bark etc ) . That English school sometimes holds some events , like a picnic . tempt : Advertisements exist in order to tempt customers to buy their products . conceal : He did n't try to conceal his scandal , but instead , he apologized to everyone . decline : He decided to decline the offer from the IT company . I start working in my office in the morning , but I have to work till late at night . On september I am thinking about going to Victoria , BC . I am an easy going girl , and I ` d like to having many friends ! ! I am very confused about using grammar and the sentences I wrote . I 'm going read a draft ; please check my gammar and pronunciation . Hello , My name is seohyun and I 'm second grade . second , I have to study about hair - style . I also made hairstyles to my friends or dolls . I want to buy something that 's not so expensive but is very useful . Maybe this town is also a very famous place to visit among foreign tourists . Nowadays , Akihabara is becoming diverse , and there are a lot of shops featuring anime goods . Japanese anime is expanding in overseas markets , and many foreigners know ( about ) Japanese anime . I will write ( about ) it sometime soon . After that , we played second game . Since 11th March , they had taken shelter from aftershocks and radiation . I want to get into university , but also I want to go abroad to America , so I will have to go to university 5 years . Today , I am / I 'm going to an English club , because I really want to study English . Yesterday I bought new shoes for jogging . Three years ago I was a menber of the fitness gym , but I resigned because of my busy job . However too many people are here just looking for someone who speaks Japanese . I did n't play video games for many years because you know , studying , working and reading . I recommend to you FF X . I recommend : www . My grand - father made a liveing by raising chickens and a calf . It tasted different to Japanese beers . Today is the general election which looks set to bring a historic change of government . The Liberal Democratic Party has governed for over 50 years . Please introduce yourself . Thank [ space ] you for reading : ) Is this my reductant reaction ? I am taking an oral examination in five theological subjects this week . The subjects are the old testament , the new testament , church history , systematical theology and practical theology . Most Japanese people are not good at speaking English , because we only study English grammar when we are students in Japan . Yesterday Jei taught me one rule of grammar in English . As the motion of their gestures are too large and radical , it 's easy to hit me , especially when I stand by them too closely . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a response to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these consumers are really smart . . My winter holiday has already begun , in my opinion . I want to read some English magazines or newspapers for improving my English during this holiday , but I do n't know what I should read . I hope to get some advice from here . I 'm expecting to have a good improvement when the holiday comes near to end . Japanese are only spoken in Japan , so when we go to other countries , we will feel loneliness . I want to ask English speakers `` Do you feel a sense of closeness to people from English speaking countries ? `` At least , it does n't seem as hard to get good grades in university as it is to get them in ( senior ) high school , because I only need to take some subjects I 'm interested in . Recently in Japan , there has been a demand to save electricity . Because in China people always learn languages from books , so there is no chance to speak them . I also like Japanese , because I like to watch Japanese cartoons . I watched a baseball game in the Nagoyadome yesterday . A lot of people have asked me what restaurants I would recommend in Kamakura . ( Indirect question . ) What I had was various sashimi ( raw seafood ) : tuna , salmon , horse mackerel , scallop and salmon roe . I heard that people who have experienced study abroad need a score of more than 800 to prove their ability based on their experience . The business career exam is coming soon The business career exam for logistics is coming soon , but I still have n't prepared enough for it . While hearing the quiet , slow tempo music , and calm voice of the instructor , I stretched my body . A nieghbour 's help can be the fastest . The shop was proud of various high quality , imported products There were many customers who came from other countries , looking for ingredients to make meals from their homeland ( I would often be asked by Australians - `` Where 's the VEGIMITE ? `` ) . It was really traditional , so just few people ( family or relatives of the bride and groom ) can go to inside the Jinja during the ceremony . Please , correct and comment my blog . A lot ofpeople who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese people are kind . : P In my school days , boys competed against boys , and girls against girls , but in my daughter 's school , they did n't divide the boys and girls . Recently , I think about that everyday . However , I could n't write them because of my English . Because my train leaves at 7 : 30 AM . An agent named Smith found these pictures of President Clinton and Ms . Lewinsky . My final goal is not to be a permanent resident in Australia , but I was planning to obtain a permanent visa to accomplish my goal . Then I found a recipe in internet blog and started making a pizza . Aritayaki is pottery from the Kyushu region . I could not answer him clearly . . . I went to Seoul for a long time . So he called every animal with `` mung - mung . `` It was especially a great performance from the trainer riding the dolphin . After the show , we ate lunch on a mat in the forest and it was more delicious than eating in at home . It is a cloudy today but the temperature is not too warm and the weather is comfortable and I 'm looking forward to the start of the school year . Although It is hard , I 'd like to study English . and I believe it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achieve my goal . As I went shopping , suddenly my shoes broke . When I 'm writing my diary , I 'm not certain on the tense of the verb . When I speak with a foreigner , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I think I should be able to learn from you Though Asakusa was crowded with many sightseers , according to my friend , there were fewer foreign sightseers compared to before the earthquake had occurred . V - day is the only day when girls declare their love to boys . Before the test I always feel pressure . My husband is Indian and he commenced running a small guest house in Rishikesh from this April . It is fomous place for yoga , meditation , the Ganges River , and the ashram where the Beatles visited once . Yesterday , my family and I went to Ganghwa - Do . It was a beautiful place . It was surprise , too . That 's what the parents of Harry died from ! Tomorrow I have an exam in mathematical statistics . It was slippery and dangerous . He taught me that dreams can definitely come true if I do n't give up . In Japan , most people start working as regular employees immediately after their bachelor degree . Waking up early makes me feel more tired and frustrated . Hello , I am feeling very good . I like English , but I am not very good at English as you can see . Help me write in english ! `` I 'm fine ! `` `` I 'm good ! `` and , `` I 'm OK ! `` What 's the difference between these three sentences ? It is approx . 10 feet tall . I took my motorbike and drove to the dog market , where they sell pets . I agreed and sat down , waiting for him . Hello , Lang - 8 users First I write some words in English , drink cup of coffee , and read my e - mails . What is the best method for learning new words ? It 's too difficult for me not only because of the grammar but also because of the words . So we could n't go anywhere else . I do n't have confidence in whether native speakers can understand my English . I 'll attend some meetings and an exhibition of the heating , air condition and ventilation industy in Las vegas . ' Poets are not so scrupulous as you are . But I like going back to school , because I can be together with my girlfriend and play with my friends . I 'm studying English right now and hope to acquire skills to speak fluently with native English speakers . Philosophical issues , religious issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . Today , I went to the police station to get a new driver 's license . If they find one of participants to be good , they exchange phone numbers and they will be friends or boyfriend / girlfriend . ( There will be ) my friend , a friend of my friend and Iso men 's team had three people as well as women 's team . We enjoyed the party and had a lot of conversation . We play roles of yakuza , Japanese gangsters , of Kyushu district , southwest Japan . After some time we separated , promising to meet again . But some say that the government and electric power company are trying to I am learning English . I 'm espically instresed in learning spoken English . I am a postgraduate major in computer siences , and I am instersted in network security and DB . I welcome more friend exchanges . I 'd appreciate it if you read and fix these sentences . I think that these toys may be good for people who are not allowed to have real pet hamsters , or for those who love hamsters but are too lazy to take care of them . In Japanese , this is called ' toilet training ' I prepared all of the tickets but not completely . I was confused because I heard it just before boarding the airplane and I was arriving in Bergen at 11pm the hotel would be closed . I looked around in the airplane . We talked about why I was staying at their house and they recommended some good places to see in Bergen . Could you change this paragraph into something more ' speech ' like ? or if you do n't have enough time , just correcting is of course very welcome . By the way , I think I am quite a strange person because I feel excited when I hear the wind screaming , or just maybe because I just drank a cup of coffee , which always makes me excited . You are ( were ) my friend and I always believed you . Why did you have to lie to me ? I commute by train every day . In the evening , I catch the 8 to 10pm train . I often read books on the train . My friend recommended Korean movies to me . Some geographers say `` There are no places where we have not explored on the earth . `` I say this because only little girls are heroines in his works except for in this work . ) Nobody believed in the testimony of his father , except for his son Pazu . The girl who slowly came down from the sky , whose name is `` Sheeta `` , had the magic stone ; she was pursued by the army and she had a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheeta . I 'm going to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . In Tennoji , we were spoken to by drunken men . Could you give me some advice to learn technical writing ? Also I like green tea candy and azuki bean flavored candy . I was waiting for the powder snow because I really like go snowboarding , but it seems there is little chance for it this year ! Does speaking only improve your / ones speaking skill ? Please recommend : ) Unfortunately , I might lose the draw as I anticipated . . . I was born in Ooita prefeture which belongs to Kyusyu area in Japan . Also of course for talking with foreigners on the phone in English . Some of my favourite locations include Lubuk Sembilang , Kisap , Telaga Tujuh , and Datai . The first dream you have on the first of January is important here in Japan . Unfortunately , I had a bad dream . You 've screwed up everything , you know ! `` I could n't understand what he was shouting and I was just petrified . Last English lesson , the instructor told me about this site . My head itches ! This is my ninth entry . I 'm writing a manual for the installation , maintenance or conversion of these machines . Yesterday I set up a Christmas tree . when my daughters were very young , I felt the tree was too big , Because my daughters can do it themselves . But I decided to keep setting up our Christmas tree every year if they go out in the future . But when I went to university , I knew that English would be very important for my future career . I can tell my opinion in simple words , write ( with mistakes , of course ) and understand other people when they do n't speak too fast . First , we are reading a book about stock for beginners . PS : Rewriting or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too young , but I want to learn English very much ! ! ! Lately I feel very , very bored and upset when I have to study . I dont know what is wrong , but it 's just boring ! The difference between `` journal `` and `` diary `` The car exhaust messed up my laundry . . . And I love him playing the violin ^ ^ Tomo - chan `` wears `` the laundry basket like a backpack , and says , `` I 'm a turtle . `` I always go there by car with my husband . Buying groceries for 7days , the luggage is very heavy . On the way home , It 's difficult to control the bike because of the heavy laggege . In Japan , there are many delicious foods , such as sushi or tempura , but I do n't know any American foods . My daughter always wears a one piece dress . In my opinion , you are already so busy studying and working , you wo n't have time for a dog . You should give this matter ( some ) ( serious ) consideration . Recently , electronics technology has improved so much that it is common for people to have a mobile computer such as a notebook PC or a cell phone . Afterwards , I listened to it many times while studying . That song supported and inspired me while I was striving to pass the exam . I 'm determined not to sell the CD I bought because all the songs remind me of my `` golden `` time . Only unmarried women can wear a Furisode on ceremonial occasions . I think they have strong motivation for working and learning but they have no self confidence , so they can not try to deal with a new environment . They need to find enough power that they could continue to the future even after they failed once . Now my wife is preparing herself by make up and winding her hair . I 'm from China . Have you used an air conditioner yet ? Anything I read teaches me something : new and different ideas , to understand and know how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I have already taken the circuit analysis exam Even my professor , who is a `` sister `` from America told us about this situation in class before . Taiwanese are xenomaniacs . Are Taiwanese really xenomaniacs ? That sounds not too hard , I would just translate my original report from Chinese to English . . Please give me some positive words to encourage me ~ I will be full of energy ! ! ! I need help to correct my sentences . Een hartverwarmende video ( in het Japans ) Of course it is very important and I never considered not attending the party itself . I was watching TV , so I slept in my living room without covering my body with my bedding . That is why I caught a cold . There is nothing but rice fields in my hometown , but I feel lonely when I think about He knew it was ridiculous to do something like that without realizing that everyone could see , and was n't so proud anymore . So , I go on business trips often . shut down all nuclear power plants ? As far as the Fukushima nuclear power plant is concerned , it had been operating for My first diary I will go to the park near my house to play catch with my boyfriend . Next term , I will be very busy , I have to prepare for the TEM8 and post graduate examination . But I am confused because I have no idea how and what shoud I do or what to do . . This is my first time writing a diary entry here . Today , I left a comment on someone else 's diary for the first time . The door was in front of the class so I had to pass the professor to exit . but I 'm 19 years old , so you may think that to watch anime is funny . So I have n't read the book . anybody knows some ways to treat this bad illness ? . . Has anybody seen tfhe film Brazil ? When I was a junior high student , I used to write my diary in Japanese but I quit . Even more funny was when I was walking in front of her house and I passed by the window where he was placed . I usually spend time watching DVDs of American drama to study English . From now on , I will put today 's date as the title Recently , I have been seeking a new job in which English is required . I need to get a high score on the TOEIC test next month on Sept . 11th . I also want to improve my spoken and written English . In Kyoto , there are many historical monuments , shrines , and temples . After the object was gone , we started to see a series of images projected rapidly in the sky . A few days later , a beautiful girl appeared at the grandfather 's house . They could hear sounds of weaving . We had our senior 's graduation ceremony on March 16th and it was a very important event for this school . In Taketomi - island , we stayed in a Japanese - style hotel and enjoyed swimming in the hotel pool and the beautiful sea . Fourth , I ca n't use the punctuation in rigth ways , so when you read my diary entry you would feel confusion . Yesterday I ate sushi for the first time in my life ( I know that is a little shameful , because I 'm fan of Japan culture and . . . Although I wanted to talk about the Lions , I digressed from the subject . I am lazy to control myself , as a result of that I 'm always disgusted with myself ! gee ! Today , I 'll tell you about a famous Japanese comic called `` ONE PIECE `` . I got a holiday for five days . This Jindaiji park did n't seem like a place that was 30 minutes from Shinjuku because the area was very calm and has old traditional atmosphere . I 'm excited with the class even though I 'm still not in the habit of using English . Long flight The novels were written Japanese . I 'm lovin ' it ! And , I 'm lovin ' it . I seriously need staple food ! I ate lunch and then went to English school . I 'm studying at the University of Arts of my country , I 'm studying Liric singing . I am planning / ( I plan ) to visit Singapore in the middle of May . `` Staying healthy is the most important thing in our life . `` I totally agree . . . . . . . . . Actually I really appreciate him because I knew he is always taking care of me and trying to encourage me , and doing his best for me . ( I accept recommendations for places or courses . : D ) I asked my teacher about this . I think this is a strange thing in Japan . The Simpsons is an animated film . I am at Changi air port . The following is just something I heard from a Korean radio program . Please do n't hesitate to correct my sentences , and I would very much appreciate if you would write another natural expression in addition to my sentence They are going / willing to pay up to $ 2500 to patients ( patients ) if the paicients ( patients ) are qualified / qualify . Tanabota probability is supposed to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . The students who ca n't come to school will be behind . So many things have happened since I last wrote in my diary on December 14th in 2010 . In this field , you have to be very careful of every detail . When I was a high school student , I studied English to prepare for college entrance exams , I certainly feel like dieting is not easy . hahaha ^ ^ ; Our relatives all came together to talk to each other and to cook a lot of delicious food that we all ate together . The massage fee is so expensive , but I will go there again . So you add me , friend , and help me improve my English . Yesterday I was listening to Gilles Peterson 's show on BBC Radio1 thorough internet . I do n't like to rest from work but I could n't move this morning . Some people feel that it is necessary to know what is going on in the public through the infomation provided by advertising . Thanks to advertisements , we can gain the latest infomation effectively . I was at my mother 's home from Friday 11th to 13th of June to participate in the reunion of my Junior high school class which have held on the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on the Sunday morning because my home town is Shimoda , three and a half hours from the center of Tokyo . Because I slept in the room next to the kitchen . Then she called me from the kitchen `` Are you all right ? Thank you for reading this poor level English composition . Although we are not together anymore , he still remembers me . I feel very happy . Because I 'm cold - natured . It looks boring , ha , however I understand why it really attracts men . Pho tasted very well . there was n't any probelm throughout the group league since Japan was keep on winning to next round step by step , but it is tournament now . While a doctor was treating my teeth , I cried all the time . Do you have your profile , where you can write short messages ( no more than 140 characters ) , and those messages will be displayed for all your `` followers `` ( people who follow you , have access to your updates ) . I saw that the sky was quite blue , and seemed very far away . There were many people who believed in it . In order to use the internet via I pod touch , wireless LAN is necessary , unlike the iPhone . Chakras are located in each auric body and are responsible for retaining and metabolizing the energy that the body needs to work optimally . In fact , we do n't have ( just ) one cardiac chakra , for example , but seven : one in the etheric body , another in the emotional body , another in the mental body , another in the astral body , etc . Usually the literature on / about this topic describes chakras from the emotional body as the only ones that exist . And I think these tastes are greatly influenced by each country 's cultural backgrounds . You may feel thirsty without milk or anything else when you eat sweet potato . My mother keeps saying that I should solve more math problems , and my father keeps saying I should do three things this summer vacation . Monday , Thursday , and Friday , I have a class in the morning , and Tuesday and Wednesday , in the afternoon . I want to speak English and Spanish , and of course Japanese : ] It is sad to realize , but for the last 4 days , that I 've spent on this site , in my posts there was done only one correction . My favorite ramen restaurant I have a week - long vacation , but I do n't have anything to do . First I got up late , then then while I was in class , my teacher asked me a question regarding the meaning of a word . I always think too much and hesitate when I want to speak in English . But , I feel so nervous about it ! ! xd I 'm waiting for the delivery . Because it can be used for exercising . Yoga , boxing , bowling and muscle work outs are available as well . C . Escher drew impossible architectural structures , they seemed like infinity but limited and they seemed to change pattern . I like play guitar , draw and play volleyball . Peters stupid jokes always amuse me . More often than not I feel that there is / a cultural difference between Japan and Korea while I 'm staying in Korea . Most of the jewelery was huge , so they seemed to not fit Japanese people because we are smaller than European people . He replied to me with an interesting and long message when l sent I 'm from Japan . Now , my father is in the hospital because he has a mental disease . but I worry that she will collapse . but today , when I rebuilt my computer ( system ) , there was no problem . Can anyone help me with my English ? I chatted with my international friend on Facebook . Because I just had gotten results and thrown them away . Please teach me I ca n't separate them . What is your technique in learning the language you are interested in ? In my opinion , you can not learn a new language or even travel through the world ( which is my dream ) if you do n't know how to speak English correctly . Hello my wonderful friends . What an unforgettable day ! But I have been continuously woken up by aftershocks . I know that everything depends on God and my abilities in English , but I really want to pass it . I 'm worrying about two things . Another is the expensive tuition fee of business schools . now I 'm considering ( think about ) which countries I 'll go to . And this vacation is almost 1month long , so I want improve my English level . I wanna send `` Thanks for pointing my mistakes and correcting me `` and `` good job for correcting `` , but I have no idea where to click on my page . . . They shut down the factories and laid off laborers / workers . I have n't read the book Black Boy yet and I have to write this diary . `` The Fundamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by I do n't know why . Maybe it 's because it 's 35 degrees C and you ca n't do anything outside . Then I was hungry an hour later and ended up eating a bowl of noodles . If this continues , I think my friends will not be able to recognize me over vacation . Most of my friends are already gone He plays basketball with his friends after school every day . Last year , when I walked around my neighborhood , I noticed a small signboard for a Shodou school . I will enjoy this page . And I want to help the people who study Japanese . The story is about a girl called Jessy who has a grandfather who faces death . Sea is the goal for each person . Homecoming visit I was surprised at the air ticket price . Public bath in Japanese is called Sentou and I love it . In Sentou , everyone is usually naked without a bathing suit . I am proud that I have such a friend , who knows english very well and can travel in England and other countries . My friend said that the ( air ) temperature was twenty degrees this afternoon . . . Because of some very spicy ones and coriander . However , I want to mention that my English is very poor so if you are reading my diary right now , please have patience and I 'll be very grateful , < 3 thanks a lot . I am not a romantic person so my wife always say to me that I should be more romantic I really appreciate it . I bought many things , for example , a vacuum cleaner , a refrigerator , a table , a bed and curtains . . . I ca n't sleep because I 'm lonely . Please be informed that this shipment will be deliveried as LCL via Hongkong . May be this is because I do not want to learn English in the beginning . But I will try my best to learn it in future . My English teacher has taught us many words , but I can not remember them and use them in the wrong way . What can I do ? The food is not as delicious as I expected . The food does n't taste as good as I expected . We happened to meet a Japanese tourist group . I asked someone in the group in Japanese . My bad English was n't understood to Peruvians . I want to go to Peru again . It was a very nice memory except for the Japanese tourists . I was impressed ! ! Besides , as this hospital is highly specialized in cardiovascular surgeries , I am able to improve my skills and develop my career . So I remembered about the time I chose my job when I was a teenager . I dropped by the library on my way back and I borrowed `` One Piece `` . Today , when I was about to get in my car , I found something on the ground . I quit smoking in April of this year , but because of stress I started again . I know it 's not good for my health , but smoking after feeling feeling so much stress is beyond expression . I 'm Japanese , but I live in Beijing presently . Today I learned some new words from this conversation . I think the uniforms you see in the picture are orange and blue , In the practice match , I got punched in the stomach and fell down ! The instructor said that it was n't very strong , but I could n't speak . We laid on our backs , and the instructor stood on our bodies and jumped three times . We voters probably wo n't be able to know all the results of the election till midnight ( today ) . This election also addressed the ? relations ? with many foreign countries . The U . S . / The USA , China , North and South Korea and all the others countries around the world . The result is known by God alone . They probably broke because I listen to music too long > _ < ( this also works ) When I become a teacher , I would like to be the coach of a high - school football team . Anyway , football is an extremely organized and systematic sport . I replaced the sentences in the grammar book with my own sentences . As a woman , wrinkles are the number one killer of beauty . My big brother participated in Tokyo marathon last month , which is one of the biggest citizen race . He finished in 3hour 6minites . The saddest part is that his older sister had also committed suicide . I do n't know why , but this year has had a lot of Fridays the 13th . As a result , we have Hence the spectacular congestion on the highway . my name , special holiday e , photo and so on . Today is a boring day . I want to drink alcohol . After that , I watched a DVD at home . My elder sister is a doctor too , so once they start talking about their jobs , I have no idea what they are saying . We go to the temple and pray for our family 's health and happiness , and for world peace . These are very delicious . Next Tuesday there will be a presidential election in Sri Lanka . I do n't know what the most important thing is for me ; I have many problems that I have to solve . While I was studying , a friend on the Internet told me about an interesting video game called Age of Empires 3 ! The test was quite difficult , especially the listening section . We spent 2 hours at Starbucks . My friend gave me a Goya yesterday . If I keep on my refrigerator it will change to yellow color and very sweet taste . My father is pastor , and he loves studying . If you buy adeers rice cracker , I caution you . Deer will pester youviolently . He had no problems or concerns and was very happy . We cried and said good - bye to our best friends with whom we studied and lived together for 4 years because we were all going to different parts of the & nbsp ; country and pursuing our dreams / goals . My favorite fruit is pineapples . I always wonder if it is better to buy a cut pineapple or a whole one . Just have to live for now and prepare for the future . go abroad . . some of my friends have gone to foreign countries to learn English . . . but I do n't have the time to go abroad . . and other European countries ( nation ) Because they are in small cages always and walking time is once or twice a day which is only ten or twenty minutes . I know that it 's going to be difficult to keep up with this class , but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . At first , I felt a little down , but I like it now because my friends said it looked nice : ) ) I took TOEFL this morning and I found my English typing speed is too slow , despite my fast Chinese typing . So I made the decision during the test that I must find a way to get more opportunities to type English , in order to improve it ~ Maybe I should keep on blogging in English . Harajuku has its own character and is representedby ( ? ) the lolita look and cosplay . So she wanted me to get an arranged married . Once I was forced to see a man on a date arranged by my mom . Actually , she did liked him at all . It happened a long time ago but I still am reminded of it whenever I see my mom . At last , I hope everything will improve ! They are have good service , and changed it to / gave me a new account . It 's about a pirate called Luffy who is the hero in this comic . It 's called `` devil 's fruits `` I am interested in videogames ( for example : PS3 , PS2 , PSP , Xbox , Wii , NDS ) . Also anime , and technology like the iPhone and iPad . Have you planted the seeds of appreciation ? Here I uploaded some screen shots from this documentary . BecasueI am a lazy girl . I hardly save any money . Please enjoy the song while you helping me correct my diary both internal and abroad . But , , after this episode , I 'm careful eating Kimchi in other country . and it 's a bit boring , but there is a crack from where you can enter the underworld if you kill all the enemies on the area that leads to the crack / opening and to the garden and at the end , you can enter the Hero 's Hall . There , everything is made of gold and in the last part you can find three mesmer ( ? ) bosses called The Darkness . If you kill them , they give you two green staffs , and each staff can be sold for aproximately five thousand gold coins . If I had spoken earlier to him and my seniors , that would not have happened . And also there are a lot of various matter ( ? ) . . . . . This is my new goal , and I 've set a date : 30 june 2011 . I have been using the iPod application and iTunes so that I was little more familiar with the Apple products . My classmate and I will play it at a performance in July . I felt so much cooler despite knowing that the temperature might / may not actually go down that / so much . I have to make a presentation about Accounting . So , I have to study Accounting ! ! I think they 'll give you good answers and help you resolve your Japanese problems . My target : I want to talk with foreign people in English ! I believe that the first experience of everything is very exciting / memorable When I chatted with Atsuya , who can speak English fluently on Skype , he recommended that I buy them . When I went to Canada I was impressed with the stunning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more magnificent . But at my home we have not used it yet , because the weather as changed so quickly . . I think it is very fun to make friends . Green leaves work and create energy vigorously on the trees during summer ; they turn golden , and fall onto the ground after their hard work . I wanted to buy another magazine but I did n't buy it . I found some nice clothes in this magazine but they are a little expensive . Since I went to theNeko cafe for the first time , I was so surprised to see many cats . And also , I caught a cold from him . In Japan , almost all students ( elementary school , junior high school , and high school ) get summer vacation from the 4th week of July to the end of August . Research also requires English skills . Today March 10 is the day when candidates can know whether or not they passed the entrance exam of national universities in Japan . I have a girlfriend and love her , but I ` m so embarrassed that I have not yet told her so ^ ^ . We go to the same private university ( University of Keio in Tokyo ) and belong to the same class . But she also studied to pass the entrance exam of the University of Kyoto ! I feel sorry because I wo n't be able to meet her if she passes the exam ( Kyoto is far away from Tokyo ) , while I support her and believe she will succeed . The topic is staying healthy , we have to write some points on the note card and say it in front of classmates in three minutes . here 's my whole speech And then , I did n't exercise in the past , because I hate sweat . But now , I realize that I ca n't be like this anymore , I want become healthier , so , I changed my daily rountine . I want to learn English because my dream is to visit many countries . Maybe all countries of the world . Luckily , we had nice wather . My favorite thing . They will see the full bloom cherry blossoms for the first time . I was translating an English e - mail for my boss the other day . But I have gotten the idea that it 's good enough in quality and looks at this moment . I 'm looking forward to this weekend very much . Even now , the accident is going on , and because it is known that boric acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I could not watch the perfect eclipse , My iPod does n't work because I washed it today . But , these thoughts make me feel pressed and I have done nothing recently . I had a conversation with him about complaint of our current state until 1 : 00 a . m . I felt really happy when my former boss told me that I would move to the Okinawa office , because the Okinawa office is quite popular among my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so by my wife driving us we could go anywhere we wanted ( In those days , my drivers license had expired because I forgot to renew ! ) . It is true to studying languages consists of the letters . If you have done that yourself , share your experience , please . So I think it 's good to keep in touch like now . Another one was personified risks are perceived to be riskier than anonymous risks . I 'm working part - time at an Italian restaurant . I want to make friends with people all over the world , especially English and Spanish speakers . Maybe we wo n't be able chat ( often ) because of time zones , but I really want to get to know you . I used to hate writing something because I felt it was such a hassle . have no subtitles . But the next exam is coming soon , it makes me a little nervous . This is because it was just in full bloom . He said `` take this / some medicine ( anthelenintic ) . . . . . `` But I had not eaten ( yet ) . Here have a quantity of foreigners . Sometimes the foreign friends help to correct my English diary . I spent some time , to think of an answer . But I think people who have beards do n't look good . ( on some people it looks cool , like Johny Depp ) I get a runny nose very often ( kind of allergy ? ) and I get tired easily . I have n't written this blog for a long time . I was surprised and ( still ) feel very thankful . The dolphin was spotted bearing deep wounds from the bite of a large shark on Friday . Until Monday the animal had not emerged from Morten bay for its nightly feed , and it was feared it may have succumbed to the injury , but the twelve - year - old dolphin returned to his regular feeding spot on Monday night , and was transported by boat to Sea World on Australia 's gold coast , where he underwent the surgery and now recovering . I will go his restaurant again in the near future . begin new days . Please recommend an English name for me ! ! Please recommend an English name ! ! Actually , I deleted history on Windows Explorer , but I did not clear the document history . I 'm greatly looking forward to meeting him . In the morning , I hurried to get up and eat the sandwiches that I prepared yesterday night . At that time , I began to realize that I forget my ticket and wallet at home . The relationship between parents and children is very important . If you 're interested in the special culture , I 'll introduce a useful tool for browsing through the night markets in Taiwan . My listening skill is very weak , so I always got the lowest score on the listning category of the TOEFL . Are there other effective ways to train the listening skill ? I always go to clinics , to meet doctors and advertise or inform them about my company 's medicine . However , sometimes I am appreciated by doctors for my support . In Madrid , it has been raining all day and going outside has been impossible . My hobbies are listening to music , watching TV , playing sports , and so on . According to the weather forecast , it will rain tomorrow . And two typhoons will come close to Japan . Because I hope to make a present for my mother on Mother 's Day . According to the article , in Belgium , there are four parties and they all have trouble with language . This writer 's point of view , you can tell there are two worlds in the Cinderella story . In 2009 , many scientific studies showed that chocolate has many interesting properties : it is rich in flavonoids , provides good protection from the sun , improves heart health , decreases blood pressure , and even protects against cancer . What is correct ? is there anything else . . . ? If I go there again , I will go bankrupt . While there , we were taught about the Asuka era of Japan in English by foreign people . I went to a toy museum with a foreigner . I hope one day I will speak English , one day . . . . I also like cosmetics , fashions , and magazines . Movies make me excited . Today , a typhoon hit city . I wo n't go to work . I wish tomorrow will be fine . The difference was , however , he kept on going to his potty even when wearing his diaper . When I found this site , I decided to post in my journal everyday . When I said that her students seem to have been improving their Japanese a lot , she looked really happy to hear it . I know her feeling . When I was an instructor of drawing software at a business school , I was happy to hear about my students ' efforts and improvement . They often gave me the energy to teach . I could do it anyway but my friend could n't and held the bar whole time . . . it was so cute : ) I want kimono for myself but you need special treatment to keep the kimono in good condition . I love this language , and my greatest wish is to speak and write English ( fluently ) . And it enabled us to enjoy taking a bath outside and to overlook the valley . It seems a little bit complicated to me . It seemed to be a very nice day . . so I took a chance to ride my bike because it had been a long time without using it . I am so depressed . I study English every day , and when I finish class , I come back to home . I continue to study English , but I feel my English is not improve much , I memorize English words every day , bu next day I forget half , I feel so upset , I think my IQ is good , but my memory is not so good . . . . I want to know whether foreign people have dyed their hair or not . Because an upstairs room is cheaper than a downstairs one in an apartment house in India . But I ca n't remember everything I study . If you know the best way to remember , please write your way in a comment . Today I finished my thesis finally and I may be able to graduate from school in two weeks . My brother has told me that my grandmother has been transfered to the emergency room for brainsurgery . My allowance is far from being able to afford even the cheapest one . So today I will write something in English . I desperately searched for an Australian conversation partner , but three months were not long enough to master conversational English . He answered me , we introduced each other , and began to talk . Maybe you will meet a liar that will steal your money , because who knows anyone on the internet , where people can promise anything ? God knows ! There are animals there which have been abandoned . However , he miraculously recovered and he is full of energy now : ) I need to study English , but I do n't have any motivation . . . . . . I admit that I 'm a little insecure , which I do n't like to be . She fascinates me though I do n't listen to pop music very much . Although the weather was not perfect to see as far as Mt . I am really nervous . It 's the business language . . . . . Until I read another person 's journal , I had never heard about it . Only suginami - ku ( one of Tokyo 's towns ) was entered in Japan . Now , I want to be a customer ofsurvise agent in airport . Hope I can successfully pass this examination . I 'm a big fan of `` The Dark Knight `` and `` Memento `` and I like Ken Watanabe . Absentminded story How about in your holiday ? I 'm sorry for no contact for such along time . While I was at work , I met a pofessor who was Mr . ( nome of my lats supervisor ) 's friend and he introduced himself to me . I am not sure if I will have good topics in the future , if I will pass exams and enter the University , or if I will find a job in a good newspaper or a magazine . On top of that some fuel rods have already suffered damages . [ suggestion ] I wish I could recover immediately . I hope I recover soon Whose background music is excellent . my choir teacher has been soo annoying lately . The population of Japan is decreasing now , but business in Japan is poor . Gon na work as a web creator after graduating ( only 2 months left ! ) , They were the offensive side , and we were the defensive side . I need the computer because I am studying English and I must do myhomework . So , they are not eager to get married . I did n't think it was relaxing . We slept only 3 hours every day . I think people are unaware about how little we care about things as we get older . Anyway , I think this movie is not only for a child but aslo an adult . It 's a very exciting , entertaining , and heartwarming film . I was going to buy running shoes but what I actually bought were like DVDs and so on . He will soon stand by himself . I 'm planning to get a driver license before long . I never finish reading the books that I buy ; I am a crazy girl . I know it is really hard to do it . Sometimes I am lazy ; sometimes I am drowsy and would like to sleep . I 'm practicing `` In too deep `` by Sum41 : ) In japan , girls give chocolate to boys . Aroud 328 people & nbsp ; died . Last week , my classmate who is & nbsp ; now a & nbsp ; teacher . Told me that & nbsp ; two classes have been & nbsp ; Cancelled , due to the H1 / N1 in her school . I think I have a responsibility to remind you , my friends , to pay more attention to your health . Personally , I insist that health comes first . I am looking for people who can teach me English . To tell you the truth , I felt sorry for him , because he really looked sad . . . I went to Izu and Kumamoto in this summer vacation . Umm I still do n't know what to write about . I definitely need some help , because I never have time to practice my written English . . . AlthoughI do n't know how to use it . It rained heavily today . Especially if you take two totally different language courses , it would drive you crazy . He played football till he was a highschool student . And I 'll correct entries written in Korean on Lang - 8 . But after a little training , I learned to operate it . In the end , we choose to wait for the special bus because it was more convenient . Heavy raining ! ! It is hard for me to concentrate on my studies . because my friends all have girlfriends , except me ! from IT technology to people 's values . The Tokyo Electric Power Company said `` We will use the accomodation later as we do n't want the field workers to dirty it . `` Therefore , I waited for her at the station yesterday , so she was pleased as well . And by this morning I 'm already almost finished ! He can speak intermediate level Japanese , and would probably be able to explain English grammer in Japanese . Now , I rarely talk with people even in Japanese because I am busy with work . Therefore , I decided to run at my fun - run pace . It is very beneficial means to learning a foreign language , so I 'll try to use it when I have time . I have been having toothaches these days . The TV program showed / explained that the children of immigrants who had to go back to `` their mother countries `` were not receiving adequate attention . ( by whom ? ) I would like to study abroad . Generally speaking , most Taiwanese are warmhearted and friendly . He then had an operation at a Nanjing hospital where the doctors removed half of his lungs . Now I 'm not comfortable eating hot and spicy meals . . . Then , I talked to many people , but I could n't communicate well . And now , I want many foreign friends , I wanna talk about many things . I guess this is the most important quality that I write until now . Moreover , a thoughtless act or remark can spoil a perfect relationship . Recently I take a shower twice a day . Members arrange a meeting in the local area via twitter . I try to do exercise but I usually must open the window all the time . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I recently have n't been to a music concert so I decided to go to a concert . Something happened to me that put me down . I get up every morning and feel like a loser . In fuct , I was studying meteorology when I was about 20years old , but before I knew it , I stopped being interested in Meteorology . Today is a historical day because we could see a solar eclipse over almost all of Japan . It means the electricity is cut off at a regular time every day . So I found that electricity is one of the more important things in our daily lives . I made a big effort to learn , because this is so interesting for me more and more . People in Canada usually put their foots on across a seat in the bus . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all the day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some comforting . The man . was a Canadian But my new office is in the city , so I have to wear business suits . Today , I bought a lot of new things to wear to work , for example : business suits , shoes , and so on . I can control my computer to play a video from far away . I was going to make a team but I coud n't after all . I was sad and disappointed . And I doother sport which are badminton and volleyball every Wednesday . Although I do n't know if I will get the best By the way , I want to learn Japanese during my summer vacation . I ` m a student and I can work only at night . I hope you can help not only correct my grammar mistakes but also develop my arguments . Of course I liked them , all the same , I was getting sick of the colour gradually , so I asked my husband to paint it white . But it seems to be impossible for me . hahahahaha In elementary school , we are taught to protect conformity amongst the people in our class . When I told them what time I started cooking that day , they were surprised because it was too long and pointed out that I tended to cook time - consuming foods . Basketball , Volleyball , Soft - ball , Tennis , Table Tennis , Soccer and Jump Rope . I played Basketball and Volleyball . A couple of months ago , I took a test called TOEIC , which is a English reading and listening test . When the score was annouced , I was surprised becouse I got a 930 . I was really gratifed and I was proud of my score . He is a Japanese comedian . The score is not that satisfactory , but I 'm just really happy that one of the biggest burdens on my shoulders finally got offloaded . There was interesting campaign against hunting cheetahs in Africa . This campaign was led by the African organization of cheetah , and there were a lot of well - known people . For example , Oprah Winfrey talked about the horrible decrease of the cheetah population for 50 years . Also I paid the organization $ 1000 so I ca n't go to the cinema with you , because I do n't have any money now . But I 'm very proud of myself and its so much better than this new film with Stallone . Today , our laboratory will have a student from Mexico . Foe example , we can get healthier bodies by physical exercise and improve our blood circulation . Playing basketball is good for increasing the height of the body and improving friendships . and I got your information from the internet . These web pages are for your reference : Giant sushi I always gaze at my PC screen , and I make decisions whether the applications are similar to previous ones . And I hope I will make friends with many people for international exchange : - ) You may think I stayed there very short time , Suppose we could only get food that is tasteless or stinky ; we might be able to survive , but we might also find life meaningless since the essence of life is gone . Lucky enough as we are , we do not have to worry about this hypothetic tradgedy . For this , I have been practicing speaking in English by using a textbook and a CD . come on ! God help those who help themselves . So today , I want find ( or make ) some friends to help me with my English By the way , I love Geo of `` Ugly Betty `` and I think `` Jim `` of `` the Ghost Whisperer `` is the ideal husband ! ! We are a little tired , so we are taking a break right now . We are waiting for an answer now . I feel really good because I will not go to work tomorrow morning . I plan to go there later after I have finished reviewing some things at Sanamhoug . I 'm really happy . She teaches me like I paid her money and we plan to study English and Chinese together . She is really nice and will teach me Chinese while I plan to help her speak Thai very fast . I really like when she speaks Thai with me . So , on Sunday , we plan to watch a free movie together at Suvimvit 55 road . I like reading books which teach me how to deal with the things in human life . Before I left for the shopping centre , I looked up the collections of my favourite clothing companies online . I started off looking round my favourite clothing shops , but they had nothing in stock that I liked . I purchased them , but in my haste I made the mistake of picking up the wrong colour ! ! I will study English . Then I tried to add ice but the ice came out so quickly that I received a _ lot more than I wanted . One thing I was surprised about was that the people on Car1 got off at Suidobashi station . It is too difficult to become fluent in a `` no - English `` environment . . . I 'm interesting in seeing how the Japanese government handles To acheive that , I should study English grammar and increase my vocabulary . I think it helped me regain my health ( get healthy ) again . Although I have learned English grammar for six years throughout middle school and high school in Japan , my conversational skills are not enough . I 'm in the lab waiting to assist students who are learning Japanese , but no one has come so far . I have read a few blogs which say that olive oil makes vanilla ice cream more delicious . Because it cools your body down , you consume the calories in order to warm your body up again . I only go back to my parents ' home every autumn . However , this time , it seems to be fixed easily . But the computer was down with a blue screen . My roommate , a Japanese , introduced me to this site . I 'm really happy to have known this site and it 's a pleasure to show my ' useless ' diary lol I will take an English conversation class at the office . It will begin from the 13th of October . I always think and worry about my fears . Worrying about whether I can make it and what should I do if I fail . . . This time , I bought English books . But I 'll try to study hard . I came across an article on the CNN website last night which enumerated a number of useful sites specially designed & nbsp ; for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm & nbsp ; for learning foreign languages will be satisfied & nbsp ; on this site , and also I 'll be zealous with people & nbsp ; who need & nbsp ; my help . I answered , `` I do n't think so . They do n't get holidays or days off . I am Korean and I 'm studying English for an entrance test for a university . Then I will go to sleep . I always sleep late . I love MINISTOP 's chocolate and vanilla mix Ice cream . Now , my throat feels much better and I do n't have a headache anymore . I have been trying to find a friend for studying ( ? ) Russian - English a long time . The day before yesterday , the president said , `` Everyone speak English . For example you can say good morning `` in the morning meeting . I can speak in English to everybody . Perhaps they are impressed by the boy 's deep - rooted loyalties to his teacher but it seems like an effort is made to nip the talented untouchable boy in the bud by the nobles . I walked forty minutes . So , I started this site , and I also bought a DVD called `` CORE Rhythms `` . This DVD has gotten popular in Japan , because a Japanese comedian ( woman ) tried this DVD and she succeeded in losing weight . The DVD itself was not funny , it was just a regular dance exercise video . Especially , my vocabulary is terrible . . . That made us laugh loud since our class is in warm atmosphere . It was especially difficult because each sentence was very long . I spend a lot of time drawing . When I went to a supermarket last night to buy some frozen fishes , I was surprised that there was a difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! I graduated from high school on March 1st . But I did n't tear a lot during the graduation ceremony . The show lasted only a few minutes , because the boss was back so soon , I had to stop the music and lhad to stop the dance . It 's been getting warmer and warmer by the day since summer is coming very close ! Today we watched the movie called `` An Inconvenient Truth `` which was made by Al Gore . I played soccer with my friends in the park last Sunday . I visited friends who graduated . There are IT - English courses provided by my company , but they are rare , quite expensive and all the places are currently taken . Catalonia ( Catalunya ) is now an autonomous community of Spain with specific characteristics like its language ( catalan ) , its culture , its gastronomy , etc . compete to get the best score If you believed in me `` If someone believes in you , you believe in the world . If you know good way , please teach me . I really appreciated that , especially my girlfriend . Moreover , we are expected to have a wide range of information not only to teach all subjects but also to help students broaden their world . Will they keep me standing until I concede on some issues ? Next week our family is planning to go camping in the forest . Flour contains water , proteins , carbohydrates , lipids , minerals ( inorganic substance ) and vitamins . By the way , he is a very naive person , as well as being shy sometimes . As I have said in my self - introduction , I like meeting foreign friends , so I do feel desperately happy to meet or receive any information from them . I have to write an essay on Japanese education for foreign students , and I 'd like to know how all you Japanese learners really think . Though I am a leader of my department , I always feel that I 'm lack of confidence . I told somebody , but of course they did n't believe me . Until what age did you believe in Santa ? On another note , I bought a grammar 's book . because I do n't like grammar . Those who can not pass the test will have many problems next semester . That 's the reason I 'm able to learn it more effectively than English and I have more fun with it . I live in Taipei now . I listened to a worker speak about job hunting . I think I have to aim and try to achieve the goal . From now on , I will try to explain about the basic rules in Japanese . If you need to be polite , you can say `` watashi ha hashirimasu `` . Regardless of the subject of a sentence , you must not forget to add `` ha `` . If you have some questions , I 'm willing to answer you ! I tried to cook something like that even though I did n't know the vegetables . And then someone in the Japanese EMI heard the album , and asked me why could n't I write in Japanese ? Internet addiction I am addicted to the internet . I spend much time searching for information on the internet too . She and her family came to Japan for work 21years ago and now , they 've become Japanese citizens . I am very happy to encounter a good teacher , but I always feel that to learn foreign languages in Japan , an island country , is really difficult . Since I do n't have any chance to talk with foreigners , especially in a countryside like where I live . Sadly , I did n't bring a good camera with me , so I could only use my cellphone to take pictures . earthquake in the Tohoku district and there being lots of the victims from it and the tsunami , some parks are asking people to refrain from hanami this year . What I thought , though , was that the part time job was unnecessary at the test because there was no examiner who was a native speaker . I promised myself to write a diary entry every day since I found this great website , but I already failed to stick to my word . I was going to write this last night , but the temptation of chatting with my friend was so powerful even though there was nothing beneficial for me ( it was just time - killing ) . finally , I went to bed at three am this morning . what 's worse is that I could n't go to my class that started at 9 o ' clock . Saury is in season now . But actually , it is an old American car . There have been rumours of match - fixing . However , the rumours has never been proven true . The Japan Sumo Association has decided to cancel the next sumo tournament . Today , pastors and leaders from Taiwan , Uganda and Singapore came to our church . ( Someone said that this sentence is the worst opening in the world ) I have just graduated from my university , in which my major was computer science . After the coffee hour , he had planed to play soccer with his friends , so I joined them . - The North - East direction is considered to be a source of bad luck . I wonder when my toothache will get better I am writing this entry on my journal at McDonald 's , the famous worldwide hamburger chain . in all the stores in Japan I can use my PC with the broadband network when I come and sit at McDonalds . But in reality I can use the internet under the broadband connection of 20Megabite / sec over a cup of coffee , which costs only 120 yen here in Japan . I think I should go to the hospital , but receiving treatment in a hospital abroad is a little bit scary for me . I was waiting for my friend in front of the school . Kimchi has a strong smell . The husband is a native Canadian and his wife is a Filipina . I hate complicated movies because I ca n't understand the story as soon as I concentrate on the subtitles . Jane is tired of dealing with customer complainants and wishes that she could do other work . I 'm a Cerezo Osaka suppoter . Shinji Kagawa was a member of this team . Now he belongs to Dortmunt in Germany . Making friends is absolutely another goal for me . I bought it , and of course I bought a battery too . Would you explain these sentences below ? I was happy to learn that there is such a good restaurant nearby ! We had a big hamburger . To take the side of Superman is very easy . He can fly and shoot rays from his eyes . He has super strength and incredible endurance . I decided to take the Graduate exam instead of finding a job . Although June has cool temperatures and cold rain . words , spelling , grammar , and pronunciation . Since Australia used to be aBritishcolony English in Australia is based on British English . I 'm going to write the text `` End N `` at the lower - right corner of the illustration . She is one of the most famous singers in Japan . One of them adores Ayu and she goes to Ayu 's concerts all the time ! ! ( Of course , the contents of the concerts were the same . ) It meant that she paid about forty - thousand yen only for this time . . . I do not see Pepsi in neighborhood supermarkets or convenience stores . Yesterday night , I had an argument with my 14 year old little brother who is in junior high school . After finishing up the fliers , I will hand them out at the station . Needless to say , they ate it greedily and quickly . I think they are the cutest of all animals Oh , I wish I saw many beautiful stars when out in Mother Nature . If you know English and want someone to correct your Japanese sentences , please be friends with me ! ! I want many friends to help me improve my skill . The morning was not so bad because the teacher was not so tired and had a sense of self - composure . As the teacher felt tired , she became nervous . As kids were scolded , they became defiant . There are many flavors : salmon , cod roe , sea chicken and so on . Suddenly , it started raining and I had to go home T T I prefer Chinese , but I do n't want to lose my Japanese songs and I do n't have enough time to expose myself to two languages , the former for the fun of the learning experience and the latter for the pleasure of the songs of my childhood . I want to see more colourful butterflies . So people in Tokyo buy everything in the shops and I can not buy water , rice or paper . Yesterday , I went to Restaurant Hajime for lunch with my girlfriend . My favorite dish was roasted lamb . It was so cool that we felt very comfortable . Let 's plant good seeds in our hearts together . [ Please plant good seeds in the garden of your heart and you 'll be happy for sure even if someone doubts it ] . Please tell me your thoughts about this . My headset was damaged by someone I know , but I did n't want to directly blame her ( for this incident ) . After that , I became worried about my friends who are living in the area near the Tohoku area , the worst - hit area . One of my friend said that she is suffering from aftershocks and blackouts . She told me that she is very scared because aftershocks occur from time to time . They even use the wrong grammar ( in lessons ) . I really want to study English . Well , hope you can help me ! ~ My husband is good at working with wood . A couple of days ago I joined a team , that was created , to have University students translate English into Korean . Our team 's slogan is to be in the middle of the world that is emphasizing indepedence and creativity . I went to the building near the Pusan city subway station to attend OT . So my primary problem is pronunciation . they lost to the Orlando Magic . ( ; _ ; ) It was a little gross , but I liked it because its plot was easy to understand . The only way to make me happier is to find someone else . Every year , I gave him chocolates . I caught a cold ! ( I evaluated this cooling system - It is weak . ) I went to the department store on New Year 's Eve to buy some ingredients . On the morning of New Year 's Day , many people go to a temple or a shrine to pray to achieve their goal in that year even if they do n't have any religion . The story is mainly a pirate adventure , and the characters also have special abilities that are similar to Naruto 's Ninjutsu . And , this drama satisfies me with the fantastic graphics and unbelievably surprising plot lines . I normally play I have a habit of checking the back of my hair a lot . It is funny that even though I know my hair ca n't grow that fast in one day , I check it anyway . I wanted to eat something for lunch , so I went to the kitchen . I made macaroni and cheese yesterday , so I decided to eat that . I looked for it everywhere in the fridge , but my lunch was n't there . Then , my hostfather came to the kitchen joyfully and began to talk . I want to solve this situation . About two months ago in the US , I saw a free trial service on a cosmetic company 's website . I only started learning English recently . I 'd like to speak fluently , but it 's quite difficult for me now . I recommend it . One of my friends went to Myanmar as a volunteer with her circle members . I 'm going to introduce some of the goods later . It 's too complicated > < I wish someone could teach me how to use it > < aah Anyways , I taught one of my dog a new trick yesterday . In Korea , there are four seasons which are clearly different from each other . In the evening the weather was good so we played badminton for a long time . When I got it , at first , I suffered from tremendous pain for 2 days . Many things have happened around me during that time . That 's why I 'm writing a diary at this time . . . It 's 6am in Japan now . . . This earthquake happened when I was traveling in Europe . I 've never seen the foreigners coming to sightsee in Tokyo after I came back . All paper towels at the public restroom are a waste of resources , so people should bring their own handkerchiefs to dry their hands . I answered , `` Actually , I dye my hair a little lighter . I 'm going to write a journal in English everyday . Even though I visited Vancouver for 6 months to improve my English , my English sucks . . . . Anyway , China 's National Day is coming , and we will have an eight day holiday all over China ! That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I want to be good at using the computer . `` Japanese scientific techniques are no . 1 in the world . `` An unforgettable movie Unfortunately , I 'll likely to have to sell my motorcycle because I 'm going to study abroad in Victoria , Canada this September . The Green revolution has brought about great benefits for humankind as a whole . After he succeeded in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . The core concept of this theory is based on reversing the ideas of drawing a picture . Until the last moment the mother kept hugging and protected her However , I made a stupid mistake at the bar . I though it was a straw , so I tried to drink using it , but the drink did n't come up to my mouth . I was so embarrassed lol What is difference between a mouse and a rat ? It felt ( so ) unnatural . I want to make a business card and I 'm thinking about my catch phrase . I wrote it 4 times on paper and looked at the sentence before correcting different words . I find out about me when I write the sentence like the diary . I feel happy and I wait for someone to correct it before I check it . I feel excited and I think today someone will help me correct it . Futon is a bedcloth . It is obvious that I am easy to make happy . I know that it sometimes seems immature , but candies are my favorite , so they absolutely can make me happy . do my best , even though I could not answer all the questions perfectly . You know what they say : `` Winners never quit ; quitters never win ! `` And my mum , she is generous and lenient enough to make me brown bag lunches when I need them . She satisfies my familie 's culinary taste . Whose is this car ? Whose car is this ? They have three rooms decorated with many accessories that are hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . I have to read some scientific papers by tomorrow . First of all , your families are always near you . This means that you can learn what you want to know anytime you want to from your parents , brothers or sisters . When children are troubled by their relationships with their friends at school or solving their homework , parents usually tell their children kindly what to do for problems , and what they teach will remain in children 's memories forever . In general , the things people learn when they are little are hard to forget , and sometimes are indispensable teachings for their life . Agemanju is very delicious . One of my co - workers is Filipino and we talk in English although I am Korean and she is Filipino . And when I work with foreign teachers , I feel the cultural differences more . I swim at gym once a week but my output of energy is smaller than my input ( eating ) . At that time , I believed her . We held a farewell party for him at an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the most famous Japanese dishes in the world . ) the most important thing to remember is one that I did n't spent the time being with my family although I 'm the only daughter . I practiced pronunciation this morning with my teacher over the internet . But today I enjoyed my lesson because I did my homework . I want my own domain and I can pay for someone to create my homepage . Writing in english is little bit challenging for me . He said , `` I was raised in Japan until I was 14 years old and then moved to Portugal due to my parents ' work , and now I 've been living in England for almost 3 years . `` In August 2010 , I left Japan for South Korea to study economics , and Korean culture and language . I could n't say anything in reply because I could not speak Korean but my Western friends could . This is really helpful for foreigners . I check meanings and example sentences , but it does n't always work well . Maybe I will be a tour guide , but not sure . Maybe I will just use it for my own travel because I could get free access to some scenic areas with it . These grown ripe are very sweet and tasty . Her grandparents are coming over for the festival too , I wonder if an school athletic festival is commonly held in other countries Summer vacation will be over this month . I was lazy about studying English . But he only talk to me for about 10 min , when he waited for the meal in a restaurant or only if he had spare time . His house maid said his mother did not wish him to get married , because they needed his salary for the whole family . When I was in his room for a few days a year , I was disappointed with his behaviors ; watching TV , checking his phone , no talking . I want to spend my time with my BF and have dinner together . In particularly , after his anger surprisingly hurt me . I had a BF , but I can not talk , called up , share any ideas , no opportunity to go out often and have a temper . I 'm looking forward to receiving it ! ! I will hang out inIkebukuro and eat some nice food . The correct sentence is : `` Would you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutely do n't want to make mistake like this ! However , this situation symbolized the kind of distorted affection and shallow nature some people have , called ' Naebi - geonsung ' , boiling fast and then getting cold just as quickly . I am hungry I prefer low sugar to high sugar and I prefer fruite cakes to vegitable cakes . Give me news of you regulalry and also news of your mom , your dad , and your brothers and sisters . At first , my friends did n't want to watch it but I recommended it because this movie is made by Disney . I live in a rental house , so I called the owner . I can wash my face comfortably because the sink is new ! what can I do about it ? Maybe she had gotten influenza . All activities were great , especially The Hallywood ( Hollywood ? ) Ride ( this is a roller coaster ) and Spider - Man The Ride . While in the US , I went to the Starbucks . Still , I go to Starbucks becasuse I can spend a longer time studying there than at other cafes . I am working in a Group Home , where old people who suffer dementia related diseases live , and we take care of them . I think I should explain my situation first . I have been living in Australia for a year and 9 months in order to study English , and have been living with them for about a year . They are really nice friends so I want them to see my home town where I was born . The Zew Zealand friend also took me to see her country this past January . I really want them enjoy this Japan tour , and it will be a good chance to be like a bridge between Western and Japanese people , because one of my dreams in the future is to become a transrator so I will be able to see how good my English skills are . We are going to go to Okayama ( my home town ) , Hiroshima , Osaka , Kyoto , Shizuoka and Tokyo , I ca n't wait to go there : ) At first , I did n't believe it because I thought it was a joke . I lacked confidence at that time . I talked on Skype with my router . I worked today . It was a sunny day . But after I entered a university , I realized that I ca n't speak English as well as I would like . If people eat it , according to the animal experiment , it causes kidney calculus and then finally becomes carcinoma . I disagree it , because I think people will not be motivated to do their work . That will make me more stressed . In our lifetime , about 100 years , we are supposed to choose only one person to have sex with , but sometimes people try to choose two people at the same time . First , when a couple gets divorced after 10 years of marrigae . Second , when a father or mother has a relationship with other man or women while still having a life as a family . However , I have n't received any satisfactory replies so far . What I am worrying about is the fact that if I ca n't find a internship position this summer in Shanghai , I will have to go back home and stay there all vacation . After that , I 'm going to study English at the ECC school . I was only free for a short while to buy vegetables and chocolate in the city ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . The event was canceled , due to the over crowding at the race track . The holidays are called Golden Week in Japan . But how can I accept him ? And I look forward to drinking with the teachers because I promised them we would go drinking someday . But , I wanna write my diary on lanf - 8 as much as I can ! They label the phonetic symbols beside the Chinese characters . All Chinese students begin to learn pinyin for at least for 3 months once they start school . I am still thinking about how humans can solve the energy problem themselves . I keep searching the internet for answers but still have not gotten them . Are you influenced by the economic crisis ? What influence can you have on your country ? From now on , I have to prepare myself for the up - coming examinations . That was the highest record ever . ( Yesterday I talked about a Manga Cafe . I 'll talk some more about it today . ) I married fourteen years ago , but I do n't live with my family . Providing a good education for their child is also important though . Besides , think more before what doing something , The volunteer work is basically something like this : if tourists ask how to get to their destinations or particular places , we 'll show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked a lot about work , marriage , siblings , friends , etc . I went to Yoyogi Park for cherry blossom viewing last saturday . I am studying commerce in Melb . I still feel unfamiliar with Melbourne , Most of the Arabic lands are covered by deserts , therefore the animals in Arabic are very special . Of course , I 've never donated blood . All the professors have gone to the conference , I am having a break . It said `` especially small penis . `` Then he laughed so loud at me . Now you know why I can remember this word more easily than other words . > _ < After that she is going to do yoga and I am going to go home full . There all people were foreignerS . Because I can catch my teacher 's pronunciation . I had a bad headache today . By teaching your knowledge and trying to convey it as simply as possible , you can obtain deeper understanding about your knowledge . I 'm a university student , and I major in Chinese Literatre , One semester of studies in Brussels resulted in unforgettable memories and valuable experiences . Lastly , Brussels is a beautiful city to visit with picturesque places , numerous parks and museums . My most favorite song is `` Lovers Again `` . This song is one of the most difficult songs in the game . I 'm so happy that I have found some friends here ! I like to play games , let 's discuss it . I 'm really sorry for my friends who are waiting for my pictures . Maybe Wikipedia is better than me ! ! I also met my parents and relatives . I like to eat Umeboshi , Mozuku ( like seaweed ) , and fried chicken ! Because I do n't know ! However , when my first leg stepped out of my room on the way to complain about this to the hostel office , my cool mature roommate stopped me . `` A true / real man will never be afraid of little insects . `` And he said with a calm voice , `` I used to be bitten by insects too , but now they can not harm me any more , coz / because I have already grown a layer of iron skin . `` I think it is a good opportunity , so I started & nbsp ; my English diary ( it may be weekly or monthly . . . ) Because my English class finished on Friday . Please , would you become my friend ? `` I like that menu , but I have an allergy to cucumber and tomatoes . I forgot to tell the chef to avoid those ingredients . Yes , he started to feed them , but I have been taking care of them instead of my son . My son is four years old , and he is too young to feed the larva well . As summer is coming , cockroaches appear in the kitchen , my room , and everywhere else . As you know well , this is a traditional tactic of ours . ( `` For us `` is okay also . ) I am writing a diary in English because I have a few pen pals and I want to improve my English skills . He is the president of his company . The race in the North America is not good for people in Japan because of time difference . I went to Chinatown in Yokohama on New Year 's Eve and celebrated the new year there . It was yummy ! Anyway , this is so famous in Japan that bananas used to sell out lol If u are interested in this diet , try it ~ I 've never tried this though ~ ) Our class has Korean , Japanese , and Taiwanese students . They 're good classmates who are studying with me . My teacher is American . Citizen watches Japan can not supply just the parts . but he is going to be deployed to one of the government offices because he got in a car crash several years ago and doctors implanted some metal parts in his left leg . I 've ever seen either but I still believe they exist . Places has identical features . These last few years , I have come to love the beer , `` Kirin the Premium Muroka `` . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyrics are cool and their music has a lot of energy Of course , amime is Ok . The class always gives me stress / stresses me out because I teach students who are preparing for their university entrance examinations . ( It 's very difficult and important for them in Korea ) I played the piano with my daughter in the concert for the first time yesterday . Are people in modern society losing their moral values ? Nowadays there is a growing awareness that poeple in modern society are losing their moral values . Every year , bullying at school occurs and it does n't seem to disappear , rather it 's becoming worse because there are some students who commit suicide after being bullied and the way of bullying is becoming terrible . There are some pople who talk so loudly with their mobile phone in trains or buses , not considering other people around them . Have you seen Avatar ? Yes , comics called Manga are part of our culture , there are many mangas for adults and Manga is translated all over the world now . I used to read fiction when I was young had a lot of free time . I went back to my father and mother 's house . then she claped her small hands and swayed to the song . Jim Parsons 's smile is cute . XD Many flights have been cancled . Anyway I had a chance to talk with many people , including a few members who I do n't like . . . I thought I would be late . When I got to my office , the meeting in the morning had already started . There is not much difference because it 's Asia . confuse : Both of them told me different information about nuclear plant so I was confused . compete : 57 soccer teams will compete against each other this summer . Recently , there was a big earthquake in Japan . We appreciate it very much . On the second day we went to an island near Kota Kinabaru , by boat . We returned to the hotel and had a nap . I asked ` What do you recommend ? ' ' There are many shops , factories , companies , and even a bank . Then , he worked as a engineer of a printing company and a researcher of a medical lab . Hi , today I bought an electric guitar on an internet - shopping site ! I decided to start guitar so I joined a music club at another college . My senior said `` I advise an early start on guitar and you should buy a guitar priced between 70000en to 80000en `` She instructed me to call her friend who was a professional guitarist . He told me his favorite internet - shopping site where he bought his guiter from . And he said , `` I think at first you should try a cheap one and if you think you want to play the guitar more , you should buy a more expensive one . `` I trust his word , because he is very kind man ( and my mother 's friend ) Will you listen to my music , if I could play guitar very well ? ( haha ) They 're really really cool pants . They are my dream pants xD and now I will go to my summer house . Potato chips However , it can be hassle to wipe it every time . I will be starting work as a computer programmer from next April . If I was not able to understand slang , it would be difficult to communicate with native speakers . Of course , I know it is important to learn these things . I think something will change in Japan now that spring is coming . It has been a very long time since I last saw snow . She describes the mental state of women in a variety of situations in her songs . They cry for a lost love and are delighted with a new love . this season will be meaningful . I 'd like to tell Japanese how foreigners are interested in Japanese . By watching NHK , I can watch many kinds of programs . Plus , when I listen to English in a similar - way , I ca n't keep up with the conversation . I heard that some mosquitoes ( 3 ) which inhabit in Australia are really harmful for Japanese people because they ( 4 ) do n't have immunity for some types of mosquitos . My friend was bitten by poisonous spider and she now ( 8 ) has fever from the venom . Her situation is much ( 9 ) worse than mine . Geez , why did n't I realise this before ? But I will go there tomorrow anyway . I wo n't care about my ankle : P When I was a kid , I believed that rabbits lived in the moon , And so , I go to the small kitchen in the office and drink coffee . I appreciate it if you check my English or send a message . When I was 14 years old , she came to my house . A very , very beautiful goddess stays in a toilet . That 's why if you clean the toilet everyday you can become beautiful like a goddess . Because Stockholm is made up of many islands surrounded by the Baltic Sea . I am a doctor , specializing in anesthesiology . So I 'm searching the Internet for a long time . I take English conversation lessons online every night . Soon after that , the problem was solved . My reading teacher tells us that in this final exam we will have a reading exam , a writing exam , a grammar exam and a listening exam . But I have things to do such as the laundry , buying food , making some plans for an exam , studying English and even editing a movie ! Father and mother r . work as teachers . USA and Japan will go bankrupt like the russian economy 1990 I even do n't know what I can do for you . Actually , _ I like more kangaroo more than beef . I attached a picture taken through the window in my house . This is the first time I came here , and I hope I could find friends to By this tool , we can have more opportunity to practise our language ability I think . We can share each other 's cultures and languages . I was really suprised and happy for her ! ! Japanese horror movie . Summer is horror season in Japan . Japanese horror movies are very scary and interesting . I so hated cleaning , especially washing floors . And I like to rid of useless things . I must will have to find myself very embarrassing one day , than there will be no stuff to through away . Sometimes my friends are joking that someday I 'll turn to Monica Geller . ) ) Three years ago I visited Rio de Janeiro , Brazil together with my friend and her mother . They opened EVERYTHING : bags of souvenirs , pouches of cosmetics . . . The Brazilian officer opened her bag and found a pack of umeboshi and was asking her what it was . The officer opened the package . At first , I was saddened , because it gave me a feeling that she does n't think I am her friend because she always complains that she really wants to meet the other friends . I registered on this site a few minutes ago . Recently I attempted playing the guitar for the first time in my whole life . I go to guitar school and have a fun time with my teacher . But I want to play for someone sometine . I want to enjoy writing my diary and get to know many people around the world . One of my goals is to improve my English ability so I can communicate with foreigners . If you understand my goals , please help me improve my English . Usually , many Japanese spend the GW by going for an overseas trip or going to their parents ' home . However , I had to go to the driving license centre , because my driving license was almost overdue . Moreover , the driving license center was so crowded . They overcome their weaknesses through religion . ' Cause I finished my essay just now . So I cancelled my plan , and instead , played the guitar . . . I decided to have a personal trainer at home . Then I 'll play tennis with my friends , study English , and apply myself to my research to graduate from my university . Many Japanese English teachers use college entrance examinations as an excuse for them to stick to the traditional method . Friends is so funny ! ! I recently started watching the North American sitcom `` Friends `` . I ate an eel and he ate curry and rice for lunch . Hi THIS IS MY FIRST ENTRY ON THE WEB , I 'm a studant of English . In Spain we have a bad system to learn idioms . ( It 's not like the other countries in the European Union ) , in those countries when you are 18 you can have a normal conversation in 3 or 4 idioms , but in Spain you ca n't talk very well in English and you only can say the numbers 1 - 10 in French . . . hahaha , I should learn as much English as I possibly can . I worked overtime today . I enjoyed this trip . I started to study English yesterday . I 'm very tired . Also , it was exciting for me to play with my niece ! I expect it will arrive tomorrow . So at 10 o ' clock p . m . tomorrow , I 'll be going to my hometown and maybe , the morning after tomorrow , I 'll have been there . I thought `` I need to learn English because I want to make a trip to somewhere I would like to tell you about yesterday 's lunch . This sounds more natural First , they did n't separate the non - smoking area from smoking area . In fact my teeth is not so great , since I didi n't know how to brush my teeth when I was child . It was fun for me and maybe they also enjoyed the story . So I said if you really clean your teeth , you wo n't have a bad tooth like me . There are many interesting places though , but it 's really crowded everywhere and rather dirty , and it also makes me very stressed . My co - workers all quit their jobs because of depression . . but it is also very stressful work . I am studying English now . We did n't feel like sitting in a hot car so we went to there by bicycle . It was a little funny because we rode down a strange road because my boyfriend thought it was too dangerous to go on streets where there are cars . Someone else said , `` a teacher has authority because he can educate people on not only ( academic ) subjects but also ways of life . `` I understand any situations , they have a different purpose for using the SNS . I know I need to be confident and patient while learning another language . Anyway tomorrow is Friday . She is going to have the baby in October . But It 's unbelievable that she is having a baby at such an early age . I do n't have a cavity , but my teeth are poorly aligned . I have been studying English for many years but I am not yet good at writing English . To improve my written English , I joined Lang - 8 today . This summer , I had an opportunity to contact with an African - American , but I could not understand what he was saying . I went to a ritzy restaurant . I always nibble food like pizza , hamburgers and spaghetti . A Japanese novel I think that it is too difficult for foreigner to read . She said , `` Outside it 's very cold ; would you like to borrow your uncle 's socks ? `` Of course , it 's a very common operation but when it 's happening to me , it 's much more dramatic . Today is August third . When I finished studying at my cram I was happy because it has n't rained in Taiwan for two or three months . do to attract the man . In Japanese culture , people clean their house at the end of the year . I want to improve my English . However , in the middle of ( the ) development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` are becoming popular and more and more people are interested in recording their activities and making their lives better with ideas and tools . Normall , y $ 20 a week for each person was the regular price . Everyone who registered on this site would like to practice , and they need people to correct their writing skill . Since I am not an English native speaker who is familiar with writing skill . So I concluded that my learning process is best experienced from other peoples mistakes , especially the best writer and a brilliant helper . Yesterday , I went to an Onsen near my home . I have nothing elseto do so I powered on my laptop and amchecking thelang - 8 site now . Different from our Chinese TV series , plots of American ones are more intriguing , which are containing more information . So I choose this picture which was taken at Fushimi Inari Shrine which is famous for having thousands of Torii in Kyoto 2010 . 12 . 31 . So today we 'll go there together . I hope our conversation will be fine . First of all , regardless of living in a global world , we still can not stop wars and many countries have illegal weapons . Although the human lifespan is longer than ever before , we still have to combat diseases that are lethal to humans and animals . Maybe some news from officalsare not true . I was very perplexed but I managed to explain my innocence . It happened at 4 o ' clock . I ampleased when I can hearthem singing . However , I was just lazy temporarily . Everything that I do is recorded and is going to accumulate in my body . I studied English at school 6 years ago and now I 'm trying to learn it again on my own . He has been a fugitive for two and a half years and was hiding in my Is this sentence grammatical ? I felt like a salesperson visiting the door . I wish I could have these wisdom teeth pulled out , though rumours say that it would hurt the nerves and made one stupid . There are a lot of tourists from various countries in Japan . Besides , on Oct . 15th , our college will have its celebration of its 80th anniversary . I 'm very lucky I can witness this important event , and I 'm also very honored to be a volunteer for the anniversary ! I think that it ` s important to study hard and have hard time ( ? ) a lot when we ` re young . Besides , our team virtually does n't have a player to replace my position . It was delicious . Last week I got a few orders . I feel better now , and I can forget ( about ) it because I wrote my complaint here . What a beautiful and wonderful movie / film it is . On Friday , I went to my friend 's birthday party at Shevron Renaissance . After that I went to `` The Fiddler `` . My first English diary has not been corrected , I do not know why not . Since I have bad stiff shoulders , I welcom the campaign that we don ' t After three hours of simmering , however , it all came together . = It was okay . We do n't have opportunities to express ourselves in English . I can not explain the reason , perhaps Sengawa has a loungue atmosphere . So , I would like to make some junk entries here which are completely meaningless and trash and from which I ca n't expect any positive comments or corrections . Maybe because my summer holiday is coming , and there is only one exam which will be heldin ten days is waiting for me . It was so palatable that I did not notice when I became really full . Eating slowly makes the feeling of hunger disappear more quickly I did not abide by the rule . Instead , I just pigged out and now I feel stuffed and somewhat drowsy . Recently , I 've been busy , so I could n't write a diary in English . So , I tried tonight . For the first 3 months , I had been very busy and had not been sleeping . It 's because I want to improve my pronunciation . But I do n't know if my pronunciation is OK , or not . When I went to a neighborhood beef barbecue restaurant , which has many students because of how cheap it is , two of my friends and I ate raw meat . My friends , not I , had stomachaches . I hope I can return your help in the future . Today , I read that Japanese law now says a nuclear operator has to keep the general public radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that the general public radiation exposure has to be kept below 1mSv / year . In spite of that , Japanese government said that it is OK to expose radiation upto 20mSv / year . I think this is too high , especially for children since they are more sensitive to exposure than adults . Can you tell me the difference between `` can `` and `` be able to `` ? What is they difference in meaning ? I brought her to a hospital , so that 's why I 'm late the class `` . My husband , mother - in - low , son , daughter and me . I 'm a Japanese girl that 's learning English at the Kansai Gaidai University . The black car started to move again when the traffic light changed to green When we crossed the bridge , there was a big intersection . The traffic light was ( showing ) blue . If I had been caught , I would have been killed or beaten up by them . Macaroon is a French sweets . My daughter is really looking forward to seeing the house of wax Today 's menu is tuna sandwich and milk tea . I look forward in going to the cafe every Tuesday . Two or three years ago , I tried to learn English because it was needed for my job to communicate with my colleagues abroad . Last evening , I got insomnia and could n't fall sleep until 3 : 00 am . All kinds of things came to my mind : work , study , life , family , friends and so on . It 's difficult for me to hear speaking at ordinary speed . I feel very uncomfortable today . From last week , about ten people from Los Angels have been staying at her church . Recently , there was a Christmas . but I had a special day on 12 / 26 . when I went to her house , her Hong Kong friend Tiffany was there . Then , I was very nervous . cause it was the first time I 've talk with a native speaker of English . the year 2010 is almost finished . the picture is of my breakfast I ate . The doctor told me that the cause of the symptoms was my warped pelvis and At first I had planned to travel with my friends , but at the last minute I pulled out . But anyway , there was still a pain in my shoulder . . . But I think that my writing is not good enough because I have no practice . My Buddy , Koflach KC725 Racing Comp , because the inner was worn out , had gotten hard for me to ski with for a full day . I woke upat 6 o ' clock this morning , then I got dressed and I had to hurry , because my friend and I were going to the beach , but he was late and I ended up ( plus idiomatique ) waiting for him for a few minutes . You know the Vietnam War broke out in the late 20th century . I think that America would n't have fought against Iraq and Afghanistan this time , if Americans had learned something important from their failures . I saw it in a theater yesterday . I 'm so clumsy that it still takes me at least 10 minutes to open a can . I am a member of soccer club . But there is some fun in my school life . We will conduct research for about one year , and our goal is to create a similar proposal for Japanese open innovation . We are now learning about open innovation in Europe , US and Asia as compared to / with Japan . The next day , I took my computer to another specialist , he identfied the cause quickly . I suggest you to employ someone more skilled and with a better personality in order not to cause your customers to lose their time like me . I said it is nice we learn about other countries . I like my country but I also like other countries . One of my friend asked me before whether you like other countires because you do n't like Japan because most Japanese that go overseas because they do n't like Japan . It cause of my country 's system , I feel . And I know that I am curious about all things , and it does n't matter whether it is in my country or some other . I was happy because we talk about each other . And I touched a hamster . I could n't use all of lang - 8 's functions before by iPad , but apparently now I can use all of the functions by iPad . Would you mind telling me how to get it at the discount price that your invitation letter said . This evening , when I loaded on the news web 163 . He was only 48 years old . He was very excellent that almost every Chinese man knew him through his news report program . There are more diseases from pollution of our environment , so we should protect our surroundings in every day life , so we can enjoy our beautiful lives . This month I have written 48 journals . Can Japan national team win the game ? The announcement said that some people might have a heart shock because around the top of some attractions , the temperature was too low . I am going write about a person who is not only respected , but also successful . I have learned english for more than seven years now . My mother recommended that I buy a cheaper one , but I wanted to buy an umbrella with cute characters . I 'm looking forward very much to sees my friends and family : ) Though I ca n't help worrying about places that have been affected by the earthquake , I 'm going to go out more frequently . I feel refreshed . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sense of . Because , the big earthquake came to Japan in March . . Here , I am studying EE ( electrical engineering ) in graduate school . This sounds boring and difficult to others . I got ta go , so I hope you correct my English writing and that I can be your friend . I found an interesting article in a magazine . Does it Make Sense ? When I hear someone say `` Does it make sense ? `` , I have a feeling that the person is either getting impatient or just being rude . However , I am not a native speaker . My opinion is not for certain . and in one of episodes , I heard the phrase , `` getting back on the horse `` . Can anyone explain what `` getting back on the horse `` means ? Are there any differences between them ? Zousui is a Japanese risotto which is good for hangovers . My wife 's zousui contains sliced Japanese radishes which are supposed to be good for you when you are feeling sick . Speaking of zousui , Japanese sometimes eat zousui or `` Otyazuke `` ( rice immersed in Japanese tea ) at the end of drinking . However it is probably a strange custom for Western people . I had an experience being rejected with a chuckle by an American and a German when I proposed that they have zousui when they finished drinking in Izakaya ( a Japanese restaurant and bar ) . `` Let It Be `` was released after * album but Abbey road was their last album , because they recorded it later . It is useful to me because of the English subtitles and it 's free to watch . I am surprised by them . It seems that I will have to watch the whole episode each time . Indeed , sushi tastes good if the chef is nice and tastes terrible if the chef is not nice . But traditional Japanese cuisine is different from sushi , tempura etc . There are a lot of restaurants are in Kyoto . But you can find good Japanese cuisine restaurants in Tokyo and Nagoya , too . Becouse , I enterdmy bankpassward wrong three times . In Japan Japan TABACCO INC which produce and sell tobacco is very influential in many areas , for example the media , the Federation of Economic Organizations and politics . The tax on cigarettes is extraordinarily low in Japan . However many politicians opposed it and the policy was abandoned . There is a person who is against increasing the price of cigarretes in the medical field too . He always makes comments in the media like `` what is the scientific proof that smoking is dangerous to our health ? `` `` Can you prove the relationship between smoking and health ? `` `` Of course I dont need to say anything about passive smoking `` It is obvious that smoking is bad for our health in Epidemiology , but he insists that there is no perfect explanation , so we mustnt impose a special tax and exclude smokers I got a small gift from an English magazine company today . Some Japanese are getting crazy about this , even they do n't drink that much wine regularly . Almost all the people there felt the red wine had a raspberry or cassis flavor . The pregnant was sudden , she said `` I 'm really happy , I 've never felt like this before . `` Many of my co - workers helped me learn the new system . I went to the wax museum . The museum was brilliant . When they looked closely at the airplanes , my elder daughter was frightened of the sounds of takeoffs and landings . My younger daughter also began to run a race against an airplane . Oh my God , I 'm crazy , first I do n't love him , second I think he ca n't finish with her , but he does n't listen to me . I do n't know what to do . I am looking forward to the dance class on Friday Afterwards I was bitten by one of them and got hurted . After that , I went to the hairdresser 's . Oh , my sideburns went away : D They work for our subsidiary in America , but I had not met them before . When they went back to America , They told me ' Learn to speak English and come to America ! ! ' So , what do you think about it ? Last Thursday I got a homework assignment to write an article about a famous sports person using emphasizing phrases . and this is the first step to learn English ! ! I have never studied English seriously before , but I believe that my English will improve if I study hard . The snow is beautiful , but it 's so cold : ( But I am still looking forward to going to Taiwan . Unfortunately it was very windy and cloudy . Kim Yuna 's performance was excellent ! ! If I spoke more English , I could make many foreign friends . So we laughed . Of course , money is very important for living in society , yet , we should not forget that this is an illusion made by human beings , much like laws and countries . My niece who is 5 years old came to my house and gave me a souvenir yesterday . Twenty minutes later , I found that my stomach was making some sounds . I could n't concentrate on the exam . Tuna is reallygood , so I hope thatbreeding tuna will be achieved in the near future for tuna loversall over the world . He said to CNN that `` I can do anything , I can be anything `` I often watch several sports games after I finish exercising and studying . It 's a live meeting by phone . There were people who work in other countries participating in the conference meeting . Others are hanging wind - bells and bamboo blinds as devices to create that `` cooler feeling `` for getting relief from the summer heat . In Japan , we can watch it on Sundays , so I am in the habitof watching it . Creating a virtual life that / which correlates with your destination is the best way to get it . When I get tired of studying , I can take the stiffness out of my face . Today , I am joining the big family ( lang - 8 ) I am a chinese girl . I want to make good friends here . I 'm a beginner learner of English . I read an English newspaper about art in the morning . I tried to memorize new grammr ( grammar ) for the next lesson . Today I met a foreign couple . I heard that there are a few foreign people who do n't eat raw fish . The woman was almost not eating raw fish . Recently I have had a keen interest in taking photographs again . I am sitting and enjoying the view from the window of the hotel and I feel a bit regret because I am going to leave Nha Trang tomorow . So please search for me ! ! ! ! ! ! Some people say it is due to the influence of electromagnetic waves . I could 't eat it 1 year ago , but now I am familiar with the spicy curry . On the way to there , I found the big rainbow crossing a river . And If I have Chinese friends , I might come to like Chinese as an individuals at least . I believe her rival , Asada Mao will do better next time , ^ ^ although in today 's game , she made some mistakes . . If you want to say `` of coffee `` , then it would be qahwatan ( `` tan `` is fatha plus tanwin ) . When I was busy , I just wanted to have free time , I have an appointment with my friends tomorrow Good morning everyone . I go see my nephew , who had invited me . The first time I was in England was 4 years ago . I liked the indie rock music of the UK , it made me want to study English . I hated English , but now I like English ! Rakugo is one of the Japanese traditional art of storytelling . Our oldest son went to Australia this summer for a week . Fortunately ( fortunately ) Grace got her space in the car . My husband set up the hummock between the trees for the children . First two years , it was very hard like I 've never experienced . I hope it will be good opportunity to get my motivation up . In my prediction , Hideo Higashikokubaru has a slight advantage over the others because of his publicity and his achievements as the former governor of the Miyazaki prefecture . When it comes to the types of damage done to crops , in Australia `` fire `` was the greatest After that , we went to a bouldering gym . Bouldering is a sport in which you attempt to climb a wall about 5m high . We practiced bouldering for about 2 hours . First of all , I have to thank `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me . It was really helpful . This morning , I suddenly wanted to make a Spanish omelet . I really missed her Spanish omelet , so I decided to make it myself . Instead of potatoes , I put tometoes into the omelet . I recommend you try it when you make an omelet . I am turning into a lonely person . When I was young , I fell in love with American - style junk food such as pizza and hamburgers . At frist I thought that is like English language but not really , It is for people who can not hear so they converse through signing . good night from Thailand now . I went to a chili festival in Fremantle today . I hear that the best way to studying English ( especially reading ) is to start by reading very easy / simple stories . I 'm sure this is n't my general level English because it only measured my writting skills . I invited two young ladies to come to my hometown , Kamakura . The first video clip was taken in Torres del Paine , a place near Chile . This place is coincidentally located in South America like the the place I introduced just prior to this . Since I did n't answer with the number of the apartment , he asked me again ( a bit louder now ) where I was going . She sent me an e - mail , informingme how she 's been geting along . During this time - space travel he found his first love , Livia Beale starring Moon Bloodgood , who left him without saying goodbye 8 years ago and disappeared since then . I decided to go back to Japan . I 'm going to Turkey ! I 'm going to Turkey with my customers tomorrow . I met with my friend 's friend last night . Basically , this is the first time I have spoken with regular people . I will keep on making an effort to write the English diary on Lang - 8 . They should control themselves although there 's the word ' youthful mistake ' . avoid : We should avoid direct conflict when we disagree . delay : The flight from Taiwan to Japan was delayed because a Typhoon was approaching . interfere : Some kids say that they ( ? ) do n't want their parents to interfere with them , but actually kids ca n't live without their interference . Answering my own question : interview style Nara is one of Japan 's more traditional prefectures and is famous for its deer . I have just joined this site and I do n't understand how to do corrections , not comments . I tried to correct some people who want to learn Russian , but I could only leave comments . And She recomended me to do it . But the classes will start the day after tomorrow ! I have been so depressed and sad because he was leaving . he did n't want to spend four days with me before he left just because he is tired of seeing me depressed . I 'm going to Glastonbury Festival from Wednesday . Or I want to go backpacking around Europe . Autumn is just around the corner . Everybody at the circuit immediately regarded him as being special . Only optimizing programs so that they use the CPU or multi - core CPU more efficiently makes me happy . And my teachers ca n't do anything because it is my friends ' last year of high school lol ! So I 'm happy because the holidays are coming and I can get out everyday with my friends = D I want to go to America , Britain , and Australia . I would be grateful if you could correct all my mistakes . I am studying at the Gymnasium No . 32 . Minsa is very well known . This beautiful woman fabric can be found in gift shops throughout Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the people , their families and the village . My friend said his relative who is fifteen years old is going astray recently . those are very expensive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alcohol is from double to triple price of Japan one . Additionally , the government manages them strongly and if they go wrong once , it 's very difficult to recover their career . They can buy cigarettes and alcohol , and also drug . We watched a comical movie and drank together . Recently , on Saturday and Sunday , I helped out at the preliminary games of a senior high school baseball tournament . In particular , I activate the electric scoreboard whenever the teams get a strike , ball , out , etc . I also keep the score . It 's very fun because I love baseball so much ! ! ! I am taking theTOEIC test , which is a famous English test , next weekend . This hotel is managed by a nice woman , she is about fifty years old and she treats us as if we are her own daughters . What I learned from today 's lesson is that I have little vocabulary , so I decided to do some difficult paper work . There are four different plastic bottles and a can of green tea . If not , you should go there for a day trip from Budapest , otherwise you will be obliged to stay at pricey hotel . I caught a cold . As you can see , they were almost naked with the exception of a Fundoshi . It is a type of Japanese traditional men 's underwear ; I do n't have my own , unfortunately . Sometimes , though , it is really difficult for us to keep our motivation high to do it for a long time . Although , It was so chilly , I felt very good . I thought that art and business are unrelated . ( or unrelated field , right ? She also is interested in social welfare and social irregularities . I do n't agree , which one is right ? ) although , no doubt about that he is much more famous than she . Besides that , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street resteraunt ^ ^ Nonetheless , there are many buildings here that are several hundred years old In software business , English is one of the most important languages because almost all major software is created by the USA . Technical documents are written in English . The time for enjoying the blooming flowers this summer was so short ; I felt sad . It is Kansai - dialect . Please help me with my English . I had a good time with the little cute girls . The TV program is going to be on until 0 : 55 a . m , therefore I 'll have set it to record ! I was going back to Tokyo form Izu on Sunday but I could n't because of tsunami forecast caused by Chile 's earthquake . Railroad company decided to stop all their trains until 5 pm on Sunday . Many news sites provide us with voice files and scripts of the everyday news . Nevertheless , some companies still take advantage of the Japanese with ' English complex ' to advertise suspicious items . When I see a sentence or a word , I can remember the meaning of it . The king said to one of his servants if we bring one day from January ? `` Janually is an auspicious month . from February ? `` All children have dreams . But I think a lot of college students do n't have dreams anymore . I bought some English movies . I do n't know what I should do . I thought I had to spend time at McDonald 's or a place that is open for twenty four hours like Karaoke box , but luckily I found a private room at a net cafe even though rooms at the net cafe do n't have any locks and it 's a little difficult to sleep without thinking about security . I had a banquet today in Japanese restaurant . Probably , the picture makes me who I am . I believe my dream will come true . But now , I noticed that I 'll be having my presentation tomorrow . When I was young , I read through this comic . I am happy today , I can spend time checking e - mail and reading English books . I can write English too . Tomorrow I must arrange a document for the employees in my company I have a job far from my house so I must feel tired every day when I get here . Before I go to the company I cook food to eat there . I ca n't cook a lot , just omelette . I must read books before I sleep today After watching it , I became positive , and I think It is important to do n't be afraid of anything . Her director recommended her to quit because he thought that her work was not important and that the other staff could do it instead of her . I have a boyfriend who is younger than me . He is 6 years younger than me . I was in love with him a lot in the beginning 3 months but now I am confused whether I love him or not ? We have been together for 7 months and we stay with each other all day . Recently , I have had a problem with my neck after I hurt it 2 weeks ago . It is very useful and makes it easy to write English diaries on the train . I want to become a translator especially of the movies . It will be so hard wrok because words that translator can use in a line is specified by the rule of translation . I do n't know how long I will spend time , but I want to become a translator Well , I 'm going to buy some ingredients for our lunch after this post . In this country , foreigners ca n't buy flats except condominiums which are super expensive . But there are many foreigners in Singapore , and according to some websites , 45 % of people in Singapore are foreingers . In Japan foreigners still can rent rooms from real estate companies . It 's definitely because many people want to live in Singapore for the rest of their lives . I know that English is supposed to be people from England . Is this correct ? Learning a language takes / requires patience , motivation , and opportunities to use it . The mouse ' name is Chu . I created him . He can fly because he is a supermouse . He knows he is special . They should have considered their plan more carefully . I had a vaccination against flu today so that I wo n't catch the flu when I take the entrance exams for university . I actually like having an injection , but it hurt much more than previous ones I 'd had : - ( I have to have it again next month . . . ) Also , I want to know which Japanese grammar I should introducefirst when I teach survival level Japanese to my foreign friends Today I went to a Yakitori restaurant with my family . coated with a sweet soy - based sauce called Teriyaki Sauce . Do you I can guarantee there are no young Japanese people who do n't know this song I read a few pages , it is very interesting ! I 'm looking forward to continue reading . My recent worries are that it is too hot in Japan , and my back is aching . . . . . . He looked embarrassed because I did n't get angry before . `` The Academy consists of many departments : The Academy also includes / There is also the Institute of / for Advocacy and Municipal Law , and the Institute of European Law . Professional educators * who have Doctoral and Candidate Degrees give lectures and organize tutorials . * more formal ( The ) / Graduates work as officials in central and executive bodies of power . Some graduates later / eventually become judges , prosecutors , and lawyers . I was amazed by how realistically the author described the thoughts and actions of the main character . What 's Pirate English ? When I was trying to change the language from Japanese to English on Facebook , I found some other `` English `` es there . What I saw on the screen was really unfamiliar English for me . In Japan , customers always come first , so we have to treat customers like a god , so that kind of thing ca n't happen . But I 'm sure many people are stressed out and really want to relieve their stress , so I also think he is a hero ! ! Other members did n't want to dress up as seafood but nobody stopped him . Before I passed them my clothes , I thoroughly checked in my pockets , and I found about 60 dollars . Children could carry out experiments . Yagyu pays for other regular customers to eat food and drink alcohol . Since then , he has n't liked to drink and thinks that his vice is drinking alcohol . They like to cook with sugar . Sometimes their dishes taste a little strange . And I must mention the terrible traffic , Bangkok has the worst transport system I know . For cities other than Bangkok , the situation is much better . Other cities are quiet and beautiful . Time is useful and life is beautiful . Someone told me that and I believe it , Although the weather was hot , I felt merry . Because one of my French friends said that she will go back to France soon , so she asked me if I can take a leave and go to Taipei with her . After I filed for a leave , she told me that she needed to go back to France earlier . I felt really happy and sad . These days I am busy because I have a lot of work to do . Her American jokes make feel happy and I think it is the difference between American jokes and Japanese jokes . We visited almost every city in Holland , but by far the most beautiful was Amsterdam . Now we 've gained more experience , I would like to travel again some more . Today I helped a friend with work from 5 PM untill 8 AM this morning . in my country you can easily buy the `` fake `` thing . I took a picture . they were my favourite cigarretes . ( I do n't smoke anymore . ) They were `` run out of , `` `` put off , `` `` put up with , `` and `` put up , `` but since I did n't know their meanings , I could n't make sentences . Yesteday we had a hanami party , it means a ' cherry blossom viewing party ' in Japanese . Most of the participants of the party were working everyday on weekdays , so ( naturally ) they wanted to sleep on weekends . We shrared the only blanket and drank lots of whisky to endure the cold . We often hear that foreign people living in Japan are surprised by the Japanese train system . Today , I received a phone call from my family , because of the big earthquake New Zealand had . I found Lang - 8 to be interesting and very helpful to improve my English skills . I was very excited about the after party on a boat . So today I called the Apple support center . I like to read books . If it 's literature I can get into the story , if it 's society books , they can suggest to me ways to benefit not only myself but also everyone else . But today , I just studied English . My name is Shogo , graduated from Hiroshima University . I 'm good at creating new plans and unique ideas . When I become a working member of the society , I want to make full use of my creativity and receive others ' opinions to make things better . weil es viele Gegenden gibt , wo es selten regnet , und wo die Menschen immer an / unter Wassermangel leiden . The quality , the art , the characters ' emotion . I want my writing ability to improve so badly . I expect / hope that my English and Japanese will improve . The Lucky bags , called Fukubukuro in Japanese , are very popular . . . URL I 'm an interior designer , but I 'm working as a market researcher now . . . . . . . . . Unfortunately , one young couple that sat near us were very impolite since they were discussing the movie very loudly , this behavior is very irritating when you are trying to watch a movie . She released her new album in Japan . One of the remarkable sub - plots is that at first , humans created robots for themselves , but at the last , it backfired on them and the robots nearly destroyed all humans lives . My hobby is listening to music ! I want to study English to communicate with lots of people who can speak English . I introduce you to my dear pet . My family has a cat . We decided to keep it , because we thought it was sad and loved the cat . We thought it was a `` she . `` But I love love love him . I wonder what is your opinion , dear reader . . . time after time , unusual things and coincidences occurred more in my life . nearby the river , there is a restaurant that served pizza straight out from the oven . Self - introduction ! ! I can help you with correcting your material written in Japanese in return . This company continued aggresive overseas marketing , and as far as I know , today is opening day for this corporation in Japan . I decided to study English again to accomplish that dream after I entered university . I thought I was not good at English , so I relearned it starting with the fundamentals , such as pronunciation , grammar that I learned in junior high school , easy vocabulary and short phrases . But I ca n't do that forever , I got ta make my new goal . English is very hard . He will massage my muscles and stick needles in my neck , shoulders and back . The area where I am living is surrounded with many apartments and residents like me . It 's not the time for writing a journal otherwise I ca n't go back to my place and sleep peacefully . I had a deep talk with my psychologist . The reason why I do n't rue the past is that I think no matter how much we try , we ca n't undo the past , at least with contemporary technologies , and there 's no moment when we did n't choose what we 'd done . Usually it is rainy , cloudy and cool . Did you see the movie Karate kid that recently premiered ? However , I am in Singapore now , it is clean and safe here , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to work so hard and for a long time as slaves , no worse than them . I felt shameful while watching the movie , this movie showed foreigners how disgusting the Japanese culture is . That is why I wrote this letter to you . Though it is the big city in the north England , I hear that living expenses are low and the people there are friendly . Oh , it is not determined yet whether I 'll be employed or not ! now , I am studying English . I can read English books which are written with easy words . As expected , after the announcement by the health minister about swine flu , many people ran to buy masks . I went to a study group , so I could study for the midterm I have next Monday . We studied for over six hours and afterwards , I was so tired . That is because , in one hour I am going to see a football game and after the game , I am going to eat at a friend 's house . I decided to enter the Chinese speech contest this October . I 'm working at an English conversation school as a front desk personnel , but my English skills are n't good enough so I ca n't communicate with the native English teachers . I saw on the news that many countries are praying for Japan , and give us aid ; money , foods and so on . Sometimes genes have a great influence on children , but the quality of upbringing at home and teaching at school would be more important . It 's a pity that I have not found this website earlier . My son has been in the hospital for 9 days with a serious disease . I want to speak this beautiful language ! And our school has farming class , so some teachers have to work in the dormitory , but when my son enters elementary school , I will have to to do night duties . I wanted to talk to other Japanese morons about how big Australian cheese burgers were with a stupid face . But when an Australian Chinese staff member brought my meal to me , I was very disappointed with the Australian society . I gazed / stared at the cheese burger meal for 5 seconds . When I started talking about the weird news , I found him under my table on the floor . I have been finding books written in English for my studies . Recently , websites introduced a lot of books and digital books . Recently , free digital books were introduced . Digital books have many good points , for example the digital dictionary software that we can use in digital books . This April , almost all my friends are starting to work , so we wo n't be able to meet and drink easily ; but I hope that we will meet and drink a lot together again ^ ^ They are precious friends to me . Today there is a fireworks festival in my city . But , now I think this is good for me , I 've kept studying harder than usual since that happened . Merry Christmas Dear * * Association Staff I want to become a member of the * * Association , and I have attached an application below . I 'd appreciate it if you could register me by Jan . 5 . I have a lot of homework , and have to make a presentation . . Yesterday my boyfriend and I went to a nice place . Although it had been only thirty minutes since the festival started , the lobster was sold out when I arrived . . happy they understood each other before they had problems and I 'll be back on Monday , the other members will be back on Tuesday . I wish I could get paid - holiday for Tuesday , but I ca n't . I 'm looking forward to going next Sunday . Everytime I go to bookstore , there are so many foreigners . So I believe that I already know English grammar . I 'm learning a group of vocabulary to be accustomed with it efficiently . Shocking LaLa Mountain trip We got stuck in a traffic jam on the way to LaLa mountain . cockroach ! ! ! I could n't believe it . We killed ` ` five cockroaches ` ` that day and retained the ` ` corpses to show to the manager . Of course , this sence of security is one of the attractions of Japanese way of life but unfortunely we often behave the same in other countries as we behave in Japan . but it 's very difficult . I think my reading skills and vocabulary are good so I 've decided to write a diary in English on this side every day . A part - time job will start tomorrow and school days will startthe dayafter tomorrow . I am reminded of Steve Jobs , the CEO of Apple Inc . , who gave a speech to his investors while wearing jeans . Yet , English as a second language is so hard for me . There is a very interesting phenomenon in Hong Kong . nipple & pacifier I 'm not native speaker of English , and I do n't like talking people who do n't know well either . Fortunately , I like to go on journeys alone , so I made the decision soon after . To make matters worse , the cost of transportation fees is very high ! ! Since then , his mother has slept in her son 's bedroom for around one year , even though my patient 's daughter recovered long ago . I 'm studying Japanese , but suddenly I wanted to write an entry in Engilsh . but , after I came to University , there was no reason to study English . So , after work I did a relaxation exercise at home . That coaches ( or instructors ) are two beautiful ( ravishing , gorgeous ) women . For example , I 'll read a book , play on the computer , wash clothes etc . Hello , everyone ! The invention of the computer brings us a technological innnovation . Obviously , our life has changed enormously by the use of computers . I like reading comics and watching movies in my free time . If we had few vending machines , Japan would not have nuclear power plants and less accidents such as Fukushima would occur . It is unbelievable . We never wear coats in September or October . Even after my graduation , I will still often go the cafe . Because my grandfather and grandmother were Finns . These stories contribute to the understanding of Japanese archeology . Thanks ! One of the Japanese formula races , Formula Nippon , takes place this weekend . I stopped for 2 years and started playing piano again but with a different teacher : ) But I am scared of her during teaching sessions , because she gets angry easily and tells me to use my brain properly T _ T I found this website in a magazine . And surprised to see so many people here speaking several languages . Do I use this site steadily ? Being nervous easily is my drawback and defect . I tried to read ' Heart of Gold ' by Neil Young . Clearly , I lied intentionally when you asked me whether I will study in the USA . I have English class , Math class , piano class , and Chinese class . Anyway I do n't know whether I can continue to post diaries . I also try to read paperbacks ( ? ) , do some walking for my excercise , I have studied English a lot every day , but I can hardly speak it . I ca n't easily / comfortably make sentences for conversations Because my school work is interesting ( very fun ) , so I 'm having good time , but I will have to graduate from school next March . I do n't have confidence but I do n't want to change . I went to Canada to study ( the ) English ( language ) . I hope to speak English very well and to speak to people from all around the world . I live in Vancouver , it 's an interesting city . It consists of 8 written test which will take about 17 hours and 7 multiple choice tests which will take about 5 and half hours . A 2 - hour written test on civil law , a 2 - hour written test on civil procedure law , and a 2 - hour written test on commercial law . I have consecutive three days off , but I recently stopped jogging for a while 'cause it 's too hot and muggy these days . Today , I find this web when I look over the web of my friend . I find that it is real usefully for our to improve language level . I 'm very happy that I can express myself here . But we can not decide on the country . Last Sunday , my Taiwanese friend . . . ( And it was the first time for her husband to eat beef tongue ! ) Yesterday , I ate and drank with my sister and my boyfriend at his house . he cooked Cold Shabu , lasagna , and fried chicken . It was very delicious . I can bring some spring rolls and clues . ( clues ? ) He was teaching a half year seminar of gospel piano and he invited me to join . ( It was not for free ! haha ) The concert was very good and it became a pleasant memory for us . There was an aftershock and the building shook like pudding . And the ' progressives ' insist that the conservatives are using the death of the North politician to strengthen / improve / further their political position . Then , a gentleman from a foreign country escorted me . I 've always wanted to become an animator or illustrator , but right now I 'm studying journalism . First , the actors performed the process of dying with horror . Second , the special effects were added to the preliminary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his body . . . But my friend said , `` I want to meet their request . Culture is always changing , is n't it ? Of course , I like science but I really like English , too ! The heating system in my house stopped working two weeks ago . It has pictures of sandwiches uploaded on it . There are many unique sandwiches which were designed using ham and cheese to look like something . My boyfriend washed the dishes after dinner ; that 's nice . One of my colleagues will be transfering from Fukuoka to Tokyo . After transfering , he will work at the headquarters of Japan 's Air Self Defence Force . The students in the class congratulated him on this great news . I seem to always get into this situation . While listening to music , we can eat american foods such as hamburgers , spaghetti , steaks and so on . My dream is to go to Califolnia in the U . S someday . Nintendo shipped 400000 game consoles , and almost all of the distributors were sold out within two days . I thought they are famous thai foods . . . . crowded with old people , young people , men and women in spring or summer . Basically , the problem is that it 's difficult to answer with accurate grammar . Well , I will do my best ! I 'm not sure how well I can do . Maybe people live within the foreign country for a long time . Mariners starting pitcher is Doug Fister . I like his pitching style . I enjoy these programs a lot . I was bit afraid to watch without written help . There is comedy and romance in this show . This sunday my French friend and I will play badminton . I registered at this website today because I wanna brush up on my English skills . Well , I 'll write my next diary soon . : ) I went to a Chinese restaurant with a friend who is Chinese . I mean , he gets his money from hisparents . It will be released as a film in 2010 . 50 years ago there was another enormous earthquake in Chile . I saw through their sad or pathetic eyes so I decided to ask why Recently , ihave not beensleeping well , so I took these drugs . Sometimes we use foam balls or styrofoam , and when there is n't enough money , simply wrinkled newspaper sheets . On top of that , local governments relatively far from Fukushima prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . Many typhoons come to Japan every year , especially in Kyushu where I had lived until after high school . When I was child , I felt happy when typhoons would hit Japan because school were closed , so I did n't need to go to the school . I went to bed hoping that tommorrow 's typoonwould be very strong and it would bring much rains in this area Of course , he was dead . I remember him whenever any typhoon hit 's Japan . Weather forecast is currently saying that typhoon would hit Japan tomorrow . Today I 'll explain why I 'm studying English . While I was at work , the sound of an explosion surprised me . Thank you for reading . I plan to travel to Thailand next February . And next , I will try to find very , very cheap flight . I 'm looking forward to visiting Thailand . Recently , many water accidents have appeared around me . The flow of the water was stopped because of the wastage of the filter . One of my dreams has came true , and of course I will continue to pursue my other dream ! ! ! I bought 4 packs of Sushi and some delicious beers . My neighborhood has a ghost . That is to say , it 's a scar of glory ! if you ca n't get a satisfactory score , it means you ca n't go to the best I can write my mood or interesting things in foreign language everyday . Yesterday , I went shopping to buy a present for my colleague . Please give me your advice . I was very surprised to hear that . The weather ( news / report ) said `` there will be snow `` . The only things that I need to do are to take the ingredients from I am Biqi , and I want to study both English and Erabic . However , I am rather inept at both . I studied English in college < a very little bit > But now I realized GPS systems are very useful and even the cheapest one is very reliable . Very delicious sushi are very expensive . As a matter of fact , I could hardly listen to what they were saying , because they spoke so fast . Actually my pronunciation and intonation ( ? ) were quite weird . Everyone in our class was laughing out loud . I called the ETS lost and found office and left a message according to the directions . So far , I did n't get a call from them , but hoperfuly they will inform me soon . At 5pm , we met at the classroom , and walked to the pub . Some of them including a Swiss guy who organized the party for us , a Chinise girl and a South Korean girl were leaving Edmonton soon so we took many pictures . I reviewed her plan , which was for a server hosting company 's website renewal plan then I made a report . It 's a really nice place but there 's something a little bit troubling . . `` It is a good daily practice for me , so I can study English hard at the moment . Even the pleasure boats on the Tosabori River were covered with jolly lights . I happened to see the lighting ceremony , and a Governor of Osaka . my student got driver 's license . The K - BOX has a free car service , so we took the car when we went there and returned back to school . I think that life can be very hard and sometimes very simple . All of them use English or Chinese or half and half , I am not sure , so I want to hear to your suggestions . Second , I have sent all the agents ' ( have the VIP status ) full names to you , please check them . After that , could you get back to me ASAP ? I also want to drink bowls of gruel and eat steamed buns , which are not easily found at night . To become a skillfull computer user . I 've heard that Japanese tend to follow the majority and reject anything different . They always accuse me of being too stubborn and tell me off that why do n't I accept other ideas . Despite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summarizing his story , even though he had 10 minutes left for finishing his lecture . I saw the professor was upset about that , so I raised my hand and said to him , `` The professor seems to want finish his lecture first , so could you talk later ? `` and I stopped . Afterward , some of my friends came over to me and started criticizing me for it . They asked me why I did that thing to a vice - president , that was too impolite and so on . However , I also think it might be not about Japanese culture , just about me . I usually try to take a nap , study English . I lack exercise now . Now I am dying to learn English , since I will go abroad to study next year . Today is 16th of April , but it 's very cold , so I 'm wearing a winter jacket . A Nurse of Indonesia . If I could polish me . . . . I do n't like examinations even though I know we sometimes need them . I think everybody is born with their own abilities and possibilities . They really wanted to get a nurse licence and wanted to learn good Japanese . But we have a lot of work to helping our patients . I know that they were sometimes confused when they could n't understand quickly what we were saying in Japanese . Essentially , when we invite people from another country , we must help them to feel comfortable living here . They say it is too difficult doing both work and studying a second language . So , I brushed my teeth quickly and got ready . I went to a Korean restaurant today . I love Korean food . He also taught some tongue twisters . I do n't know foreign songs well , but I like `` Red Hot Chili Peppers `` . I 'm looking forward it : ) So I do my best to study English , and I made it a rule to keep a diary in English . This term , I shall keep a diary . But unfortunately , I do n't know any classes for beginners . The Japanese government sent her some gifts to show our gratitude because she donated a lot for Japanese people after the big earth quake happened . I read a lot of articles about Michael . Another of Guiland 's popular destinations is Fantas , which has a museum that shows what life might be like in the next 100 years and also has many shopping centers to enjoy . My native language is Chinese . I hope I can help someone here . I have a chemistry experiment at my university on Thursday and Friday . Unfortunately I have n't had any weekends to slow down a little , sit down and relax . A long bath and more than only 5 hours of sleep are the things I need the most . I think I did it badly when I chatted with you the day before yesterday . Maybe it was first time that I had communicated with a foreigner . When I wanted to say something I searched the related words in my mind , and I could n't expressed my ideas properly . . My voice and intonation may be abnormal , I did n't know whether my speech was sounded a little impolite or something bad , if I had , I ask your forgiveness , I did n't do it intentionally . We helped him in making the dumplings , but when ( all the ) people arrived , we noticed that we did not make eoungh for everybody . I will go to my friend 's house instead , and maybe we will drink a beer or some other kind of alcohol . I watched the movie `` TRON `` last Sunday . I 'm going to have a Christmas dinner this year with my host mother , who I have stayed with before . Last weekend I was going to get her family Christmas cards for Christmas but I could n't find ones that I liked . Last month I asked my friend , who is coming to Canada on December 1st , I got a sunburn the day before yesterday , and later bought aloe vera to treat it . Christmas is a big deal for me . This summer vacation I have always woken up around lunchtime I am interested to learn English = ) I am also interested in Japan : I want to learn a bit of their language ( I 'm registered here for this ) and its culture . . . Then , we went to a Thai restaurant . Although it was horror and I wanted to sleep , but I still finished all of the movie . When I went to bed , my mind was full of images of blood and guts ! I should not watch horror movies at night . . . . . . . . But in the morning it is very comfortable ! It 's my first diary . I must say : Chinese food is so good , especially in Taiwan . But my wife belonged to the brass band in her school days , Althought Science and Politics have been developed suprisingly and Our lives have been changedto be mademore convinient , we are not satisfied with now . It will be a really short stay . I suggest drinking coffee without sugar . I like watching movies with my friends . Wakayama is an old town with a beautiful castle built during the feudal age . To sum it up , VCS is a really a useful tool to backup the computer 's files automatically and smartly . I do not know the answers at all . In fact , I really want to improve my English . the title was `` ON Long distance education . `` oh , really difficult , right ? The day before , it lasted until two in the morning , so yesterday my husband wrote a letter and put it on his door . I thought that I could write in Japanese here and then it would be translated from Japanese into English . I went to Chinese restaurant with my Chinese friend . After that , I teach japanese language for him . I 'm a shy and unsociable person . After I finish my English lessons , I think English is a language used to express things and Japanese is Today , I attended a conference . For two days now , my wife and I have been walking to the park early in the morning The right one in the photo is Maccha Azuki ( green tea and red bean ) , the other is rainbow : D Today , I had seminars during afternoon , and evening , I 'll return to college for more and more seminars . I think , writing here is more comfortable for me , because I can think in English much faster ( Yatta ! ) . Watashi wa supein ni umaremashitaga kodomo no toki , irelando to furansu nimo sundeimashita , sonotame , eigo to furansugo mo sukoshi hanasu koto ga dekimasu . Watashi no otousan no okage de , nihon no bunka ni kyoumi wo motimasita . Boku no nihongo no reberu ni tsuite , takusan no kuni ni sumimashita node , betsuno gengo wo benkyoushinakereba narimasen desita , demo daigaku ni benkyousuru koto wo hajimemetatoki , hitori de nihongo o benkyoshite imasu . watashi no otosan to watashi no nihonjin no tomodachitomo nihongo wo renshuu shimasu , rainen waseda no daigaku ni ikimasu dakara ryuugakusei desu . I went to a bank to get a financial stamp to apply for a teaching license . That was true . Have you ever had any big disease or injury ? I really enjoyed it ! I 'd like to go by car , but my car has been broken since 2 days ago . I hope it will be repaired as soon as possible ! ! I want to speak English fluently like an American . I decided to go to America as an aupair this Summer . I 'm going to visit one preschool this Thursday . But I 'm a beginner at English , and I have never been to England before . But in this class we did a wide range of activities using english . For examplewe sang songs , role played in front of the class , didyoga while following English directions and so on . Also , it would be great to study another language , maybe italian or a slavic language ( Polish , Serbian , Slovenian etc . ) These cultures are interesting for me , and the words ( are ) not so hard to learn , I think . Distance is not problem for me , because it only takes 45 minutes by train . But the train ticket is expensive for me . . . It was quite expensive , but the atmoshere was nice . This is the reason why I have not been sleeping well recently . I am a college student . Normally in Tokyo , this occurs at the beginning of April . Japan has a long and glorious history , good public safety and a strong army , Tokyo is one of the biggest city in the world , Japanese science technicians are the best `` . The Japanese government and companies really know this fact . Having such a life for one and half years , my English skills decline . Because , there are n't famous Japanese celebrities in America . . Maybe Americans are not interested in Japanese celebrities . I do n't know why Japanese celebrities are n't popular in America . A funny guy from Russia said that he realized Japanese women walk with short steps , and he thought that it was because Japanese women used to wear Kimono . A girl from Sweden thought that it was because Japanese women usually wear high heels , and so they can not take very big steps . My favorite months are October , June , July and december . Everyday when I wake up , the first thing I do is to power on my laptop and log into QQ ( It is a software like MSN , in China it is the most popular instant messanger ) . Have you heard or thought about the size of the vocabulary of the average native American or British ? I think the most important thing in learning a new language is to memorize a lot of words and idioms until you are able to read a newspaper without a dictionary . I 'm going to pick up one of my friends at Nriata airport . I put emphasis on human resources development . They seemed such kind and comfortable people . I did n't necessarily take the exam light . Unfortunately I was too hungry , dizzy , sleepy and sore in every part of my body The oscillation continued for more than 3 minutes . Of course , it will be more expensive but it can take more time . 0 It 's not comfortable to live due to the bad plan of the house , even if we have some house renovation . Gaga is at least being truer to herself than those who mock her and those who try to be as bewitching as her . I could n't contact her but I guessed I could meet her if I went to her restaurant . Yesterday , I took part in an activity in my circle , university COOP . Then , Shinobu Moromizato , who was the second money list player in Japan , appeared behind us . Though she is the same age as my younger daughter , she is very courteous . However I did n't buy anything because I did n't have any money on me . So I replied to her on what I had been doing before and asked her what she had been doing too . Straight after we made an appointment to have lunch together . We spent the time just taking , using a lot of technical terms and eating a lot . Forgetting their daily lives , two mothers enjoyed their past golden days . We had grilled chicken there . Especially the chocolate cake they served as a dessert was excellent ! I think , I will sleep all this week like death . I normally get excited to see this unusual weather in Tokyo , but this time I hope that it will stop soon . They tasted good , were healthy , nutritious and warmed our bodies . There are sentences , which use both `` that `` and `` which `` . I am wearing a short t - shirt , which has blue and gray stripes . It was very fun . Secondly , without mobile phones we can spend more time with our family . Thanks to the mobile , we can easily keep in touch with other people , make appointments and speak with long distance friends . The mobile phone is not only for talking and sending messages , but also for enjoying music , taking photos and gathering information . I was watching the final with indescribable excitement . It 's rainy today in Kyushu in Japan . Actually , this is my first time coming to the US . But a little far away from the port , there are a lot of hills . If the flower 's leaves are a beautiful green colour and the corolla is bright and pleasant colored it tells ( OR : shows ) us that the flower is alive . I think that talking with somebody is a good way to get to know ( and understand ) each other . I want to be a high school teacher . Because I want to teach science to students . When I was a high school stuent , I did n't like science . I went to Barcelona by ship two years ago and I have no words to explain to you or , at least , to try to explain what I felt on that ship . My position is forward . my english is so pure that I wnat ( want ) to ( make ) some friends whose mother tongue is english . Because Japan has isolation policy from seventeenth to nineteenth ( centuries ) , Japan was not influenced by foreign countries / foreigners . Lastly , he mentioned Japanese AVs ( adult videos ) , which are considered to be pornography . When I shelled the peas , I dropped one pea . Japanese taste seems too light for him . At last we went surfing . Now I 'm here writing my first posting , saying hi to all in this community . Also , I 'm interested in music . I hope that I can do a performance on stage of their songs after finishing military service . Sharing thoughts , opinions and my photos with my close friends is really fun and interesting . So does it mean that I should n't go to Australia this year ? : p My husband 's mother grew sweet potatoes last autumn . If there is anything I regret about choosing to be a law student , it is that I underestimated the proportions of civil and business law in the field . it is so hard to spend enough time to do what I have to . Each of Japanese cake had a lovely , colorful shape , but 800 yen was expensive . I said , `` Will you please sell me just one of these ? `` The saleslady said , `` of course . `` Because I 'm a Japanese , she might have been nervous . Therefore , I guess our company recognized her skill and actual achivement and offered an extension . I have to get lime sulphur ! You can get some information about the earthquake in Japan from the URL below . I think that his is easier than mine ! ! ! The topic of this seminar is export documentation . Watching movies without subtitles is my way of studying English . American , British , East Coast , West Coast , etc . I believe that their writing ability is probably equal to their speaking one . But his English pronunciation was terrible . ( I 'm sorry . ) Recently I realized that writing is more difficult than speaking . I 've escaped written English training . Perhaps you have problems when you are writing in Spanish because you do n't know about the accent rules ! It is a superior souvenir for me . And , I will give you a souvenir . I think I 've remembered about 200 words in these 2 weeks . Fruits , vegetables , milk , chicken , and the ingredients for pasta like anchovies , dried tomatoes , dried mushrooms . I transfered the fee to a convinience - store today , so the daywhich I can get it will probably be Thursday . But I tried to write something even though it is short or boring . The sentences , phrases and words are filled with his affection for children and nature , and his expression is so beautiful that I was filled with romantic feelings and was able to imagine each scene clearly . I have read `` Grimm 's Fairy Tales `` , and Andersen 's , but I feel that Ogawa 's works are different from them , although they belong to the same category I am an exchange student , so I need host family to live with them , and also there are some exchange students in my high school , they also live with their host family . So this time they do want to change their host family . I hope they will have new host family soon . They should be more energetic , otherwise they might have to change to another family again . But today at dinner , she praised the cake , which I made , she asked me if I had made it ? Novac Dokovic became No 1 yesterday by advancing the finals in Wimbledon . It was said that he is the eternal No3 tennis player . Back problem I have no confidence in speaking and writing in English . and you know what ? Japanese students who are in junior high school and high school have english classes 3 or 4 times a week . and Fortunately at that time , I was really interested in English because I wanted to be American or someone who speaks English very well , such as native speaker . I was planning to go to high school in America after I graduated junior high school . It 'll be so wonderful ! ! ! ! My dishes are surely like paella in the sense that the recipe - book said so . Am I making sense ? Some of them looked at the business hours but did n't catch the small words on the top about the holiday information . He looked at me at once and suddenly he scolded me about my hair color ! He could n't overlook that I seemed like I changed my identity and lost my pride in being Japanese . So the next day , I had my hair cut really short , and dyed my hair black . Beyond that , I only could tell him `` Thank you for everything , everything you gave to me . `` And I left his house with saying `` See you later `` . So I decided to try to take more opportunities to tell my friends , my juniors and you who is reading my diary what I learned until now . I represent my honourable grandpa . One of my classmates from college already got married last year . I 'm a little surprised because it 's only been two years since graduation and I think that their financial status may not be good enough for raising a family . Since I need to use my English for my job and my boss scolds me about my poor English often . Furthermore , I always introduce our culture if you are interested in Korean culture . I hope we can become good friends . Should I get married and have a family , bring up a baby , and find happiness in my daily life as my friends who look so happy do ? I got an early retirement when I was at the age of 56 after 33 years of being an electrical engineer . Since then I have been studying English at ISS school , an English school in Japan . After about five years passed , I have noticed I have various difficulties : vocabulary , grammar , and so on . My friend told me , `` Noy , try to speak English . `` I could not hear my friend very well because the restaurant was very loud and I am not good English so I just said a bit . . Our 95 - year - old mother had been spending a day at a local day service center . That is , I always get sleepy after I hear the alarm go off , then I fall back asleep again . We went to a good restaurant , and had a good dinner . We have not seen each other for a long time . It 's okay ! ! I guess ^ _ ^ I 'm not supposed to have had anything to eat or drink , including water , but I already forgot and drank some milk tea . I sat down there and thought about my future . If someone asked me do you like english . I 'm probably making some mistakes since I am ignorant about this site . The final result of the Formula Nippon Round - 1 The final result was not bad considering it was his first Formula Nippon race , but most of his fans expected him to win because of his experience with Formula1 . I entered a site and chatted with an English teacher through a ( microphone ) Today I was late for work again . I was late by 1 mintute . : D KOICHI ( koichiben ) and Emily ( applemilk1988 ) are youtube video bloggers . They really do n't care about environment . Is this sentence correct : I did n't see my parents , because in the town fire had broken out and people must have been evacuated to save their lives . My father and I plan to tend to my garden every Saturday morning . Tough I reached my office late about 20 minutes . I am Nana , I 'm from Japan but I have been living in England since August , and I will be here for another ten months . He took me to this stadium for the first time when I was 6 years old . Of course , ( space ) I can do it . We should try to get some beneficial information even if wecould n't catch some sentences . . Only the elite can enter this company . Fukushima nuclear plant has already belched a certain amount of radiation there . My sister who tied the knot with a man who lives in Yamagata last year and enjoy their honeymoon traveling to Italy , she got pregnant at the beginning of this year . I have to pick them up at the pier soon . I think today will be a wonderul time for us . It 's quiet and comfortable . Already uncomfortable with muggy weather , their loud sounds makes me feel much more uncomfortable ! In autumn , the sounds of insects such as crickets , singing crickets or Japanese bell crickets , green tree crickets , and so on are very nice . I want to know about your idea about sounds of insects from many people from many countries . This is the first entry in my diary . Beside that his speaking speed was so fast for me : ( Of course my English skills were part of the reason . So what can I say when somebody 's voice is noisy like in the voice - chat room ? He said this place is a good way to learn English . But nobody asked me why I was late since they knew about today 's traffic jam . Most foreigners think that it tastes good too . Coffee beans are more effective than Coffee Mix when on a diet . I 'm so sleepy . I 'm sure that I have a lot of mistakes . or optimistic information , we would n't take action properly during a crisis . I can only speak easy English . All children , especially boys , have the experience of searching for a `` big treasure `` with their friends They were deeply grieved over their families ' situation . Goonies ( name of their group ) went in search for the treasure to help their parents . I think if I practice this , my grades will increase . Now with my friends I live in a very nice house with a balcony and four rooms . We only finished moving yesterday , because on Saturday soon after we arrived we started an opening party . A famous middle - aged American actor , who went to Japan for a business trip , met in a hotel with a young pretty American girl , who came to Japan with her husband , who was a busy photographer . Please read my daily post and correct my grammar . I read the newspaper before breakfast . It 's wonderful . I 'm looking forward to watch next 3D movie , Alice in Wonderland . I have a major in Architecture , but now I develop PC software to do business for employees only . I ca n't speak and write English well . Recently , I 've realized there are many similar words in English . Please let me know the differences . I like princess characters , so I enjoyed it so much . Drivers license in NY A drivers license is mandatory in the US . Even though it is convenient enough , most people tend to apply for a drivers license . That 's because the license is also used as identification . I take English lessons once every week . Factory owner , who professionally breeds pugs , said me that it is a characteristic of black pugs . I can remember running around the supermarket We also listened to some little stories from my dad 's CD ( a CD that came with a book from his English class ) , then we listened to it on the car cd - player and translated to portuguese to see who got what the story correct ! ! I have trouble writing an English self - introduction . I was very shocked by the news about the disaster in Japan , and I could n't believe the things that happend to my country . As a person who is taking care of children , I am really worried about mothers who are protecting their children without heating and water for drinking in stricken area . Yesterday , Motchy who is my senior student of my laboratory introduceed this SNS to me . This week I chose to learn French as my secondary foreign language next semester . and I thought about `` I want to go to abroad ! ! `` I must be more careful or I may set a fire . Toyota had grown continuously based on strong consumer trust . But now due to this defect , the company has been losing the public 's trust . Losing the public 's trust may collapse even a stable company such as Toyota . This restaurant has been serving very good mutton because they 've been raising the sheep themselves . When I woke up this morning , my wife had a Black eye . The first diary I 'm at a loss on what to write in my diary in ENGLISH . College students produced this show and placed a lot of artistic lights here and there around town . For example , I went to Victoria Peak , Tsim Sha Tsui , Jordan , and so on . I have nothing to write down anymore because I 'm exhausted and I 'm starving now ! about me I need to use English and Japanese to watch tv , read comics and go on a world tour . Tonight I went to a sushi bar with my family . Many sushi bars let you order using a touch panel . However , I realized that if I had told the truth to her , she would be hurt very much because she liked those clothes and the colour . In thespeed skating women 's team pursuit , theJapanese team got asilver medal , losing to Germany . She said that the Chinese are not diligent as diligent as before . I want to use the phrase `` over my dead body `` . They have had their own schedules already . This is a photo of a man walking on a tightrope over the void against the background of Rio de Janeiro in the sunset . I am really happy here . My new home is very beautiful . I am Hitsun ! Fuji is centre over there . I like intelligent and thoughtful people . But they ca n't help other children , for example , they cannothelp diarrhea children . I 'll go to the stadium next month to watch the national team . Several days ago , there were over one hundred school clubs looking for new members . since the sentence structure is quite different . Finally , I get out of bed at 7 : 00am . Come on , let 's experience this amazing world : D Once a week I take a tango lesson . When I close my eyes and just move my body to the tango rhythm , First of all , I want to change myself . He has a fatal diseaseand a student in his last class wrote this book . If the rain had started sooner , I would n't have been able to have my lesson . Someone read my dairies and told me that : what your said is too Chinglish . You can translate the title as `` My House `` in English . If you want to know what a Japanese family is like , maybe this manga will tell you about that . This is because I decided by myself to announce without asking them whether my announcement was convincing or not . Another altar in Berlin , is very similar to this one , , so much so that a long discussion has taken place on which alter is actually the original . On the first panel you can see a depiction of the birth and the naming of John the Baptist . The last panel is about beheading John the Baptist . Also , I talked with my Chinese friend on skype . When I returned to my house , It was time for dinner . Starting this November , I 'm going to go to Canada to improve my English and learn a way of teaching English called TESOL . You can see bazil , thyme , lettuce and tomato in the picture . Many university students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . Why does this sentence above use ' has basketball ' , not ' basketball has ' ? I 've heard that when women go through menopause , they 're more nervous and fickle than they would be normally . I love MOS ( not Mcdonalds ) . I like most fastfood restaurants including Mcdonalds but I think MOS is the best . Although I am very excited and I 'm really looking forward to going , I am worried about one thing : the temperature . Actually this is the biggest problem for me . I prefer a hot climate to a cold one . yoru ha hataraki mashita . Car wash to Jollibee to Greenwich de hataraki mashita . After the game , Okada who is the coach of Japan asked the chairman of the Japan football association if he will continue as the coach . I love this kind of movie . I want to write daily . But I want to write daily in English . Yesterday , my husband went fishing and brought many fish for me . The summer vacation is drawing near . I like to watch movies , so each year I am looking forward to see who gets the award . Why did `` Avatar `` lose many Oscars despite the having the best performance of the year ? I thought the competition was only for dogs , but everyone was there . There was also a mummy ( the dog ) and a witch ( the owner ) , and a hotdog ( the dog ) and mustard ( the owner ) . However , when I looked at the units carefully , I found the unit was KJ , not calorie . It is hard for me to walk around TDL & TDS all day ! ! Telling The program is about other TV programs I like , USA or UK drams , for example . About 10 seconds later , the raindrops suddenly became large and heavy . My English is at basic or pre - intermediate level . And I made it a habit to memorize what native speakers corrected . What do you recommend me to do ? One of my female friends suddenly said , The way to practice I found this website on a discuss board and it seems interesting . I 've been learning English for many years , but still have problems on expressing my feelings . It 's very convenient to go to other countries in Europe from the UK . It seems that it ( was ) the 5th biggest ( earthquake ) ( since ) 1900 . Munster city decided to ban cars in the city and use bicycles . Suddenly my friend said : Toshiya , you ca n't go back home because the train left a few minutes ago . I 'd like to explain Himeji castle . In my opinion , we do n't need to be strong and perfect to I love reading , so I love a book shop . When it 's someone 's birthday , we always make the presents by ourselves . there was an earthquake . By the time I thought about it , the earthquake was finished . Today when I was on break searching the internet , I found that there are really a lot of people who speak highly of this film . I 'll be a student , so I 'll have many student 's discounts . Though all of my friends laughed when I showed them the pictures . Now I 'm watching Macros Frontier while working . you can google it with `` * ( asterisk ) `` . And to search for an exact phrase , enclose the phrase in double quotation marks . Japan has varied climates , so there are unique local specialties in each place . At the shop in Niigata Prefecture , the employees carry plenty of snow next to the shop every winter . Did Santa Claus come to you ? ( Claus is right . ) School just started one week ago , so I decided to insist on writing here every weekend . LMAO , two Americans in the audience in that coffee shop were surprised when they saw Sunnie and I going in the one bathroom at the same time , and they were also surprised that we were holding hands all the time . They thought we were lesbian . If I correct someone 's entries , I can get ' stars ' on Lang - 8 . I want help from everyone whose English is good ! I am Nao , a Japanese person who is studying in India . How do you think Sony products are ? But after a while , some of thembecome tired of raising the animal , and inthe worst case , they abandon them . I 'm trying get in shape lately because I have put on weight . It might be successful if I keep dieting for a while . He also liked soju ( a Korean popular alcoholic drink ) . his cousin , owned a small yard , but there was only grave there . But the government wo n't do that because they get a lot of tax income from them . . `` Clarify `` is a very useful and common word in daily life . I 've decided to dilute my passion for everything British , with American literature . I do n't know American literature very well , so I would appreciate it if you could recommend some of your favorite American novels to me . From his movie , his harmony sounds quite eccentric , he used Aside from these , his appearance and behavior is also strange . Every three days I change the water . Today all my classes were cancelled so I had much more time . This book is about a traveling essay about Latin America . It is so fascinating and it 's an attractive place . In my case , since I 'm an elementary school teacher , the government adopts new teachers , we basically train by ourselves , principals decide which grade we would be in charge of , and we have to cope with all of the problems and complaints . My hobby is playing the piano . Recently , I made an original song and played it . Especially , I love gyoza . * I especially love gyoza . How do you say gyoza / gyouza in English ? Many my friends are going back their countries in December . I 'll try hardest on grammer , spelling and punctuation in my journals . Because today is our 5 month anniversary . I practice some tricks . recentry I am crazy about `` hannah montana `` ! We will be watching the movie ' Avatar ' . Controlling an avatar that is something you are not but represents you seems awesome . The members and I have practiced very hard for that show . As a result , it was successful . When somebody eats my cooking smiles and tells me it 's delicious , it makes me happy . Please send me a message . Good morning ! Before she started her IMBA program , we often hang out together . I can tell she does n't appreciate some Taiwanese culture . Tonight was fun for me . Our conversation was in English since I needed to practice for the up - coming interview . I do n't like Hollywood movies either . We played together , laughed . . . Of course , sometimes we quarreled , but then apologized . He was a Canadian army officer and made a fortune from the hydroelectric power of Niagara falls . Specifying my language goal . We enjoyed visiting Kamakura . In my next class , I have to teach a lesson , so I need to prepare a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , younger people , close friends or acquaintances . I taught them some things ! Today , I got a health check at my school . Nothing was wrong . Computer graphics is a very difficult field , so I often search for hints to solve a problem on the Internet . since I had no opportunity to communicate with them before . I finally finished my first semester in China . As it happeed , that she was n't with my friend at all . Recently , I 've been trying to remain calm and to alter the way I think and my attitude about everything . And it makes me slightly kinder to other people . Meeting with Alcohol As electricity has been cut off because of the earthquake , I can not cook nor eat food which is sold at a convenience store . The best one is a baked salmon rice ball and the second best one is a fried rice ball with various ingredients . I recommend you to visit Nagashima Spaland ! By the way , she paid 170000 yen for the painting . When I went into there , we walked down a slope which went along a large aquarium , which was cylindrical in shape . As the slope is spiral , it made me dizzy . We could see these fish right next to us , so I felt like I could touch them . One day my mother took me to a psychiatrist , though to be honest I did not want to go there . A big Tsunami has hit Miyagi , Hukushima , Iwate , and so on . This Tsunami is the biggest I 've ever seen . I experienced many things this year . I ordered seeds of a flower called solube YTT . A white flower blooms ( on ) the first day , The staff cheekily tried to make him apply for the half year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recently I resolved to be vegetarian to lose weight and because I saw shocking video which made me think about various problems ( I will skip the details ) . I watched a movie whose title is `` Land of Lost `` . In fact , I wanted to watch the 3D Disney movie , but the tickets were sold out . Three adventurers go to an ancient world , and they meet a monkey - man . Hi , starting today , I am going to introduce you to Japan . Actually she 's not a social woman , and she does n't have any opportunity to meet men . One is an English magazine , and one is a quilting magazine . In Japan , I had attended a quilting class for about 5 years and an oil painting class for about 10 years . The climate here always changes ; There was a typhoon only a few days ago and now it 's already a sunny day of over 35 degrees ! Before coming back home , I bought the balloons and the pump to inflate them . So I was very interested and excited ! One Italian guy said that he does n't like McDonalds at all , and that the Italian McDonalds is different from American McDonalds . Then , one Korean guy said that the Korean McDonalds has a kimchi hamburger . I do n't have a drivers license yet , but I soon hope that I 'll pass the test and a get one . But getting a car license is quite hard for me . Because I am worried about slamming and crashing with other cars . Fortunately , that has n't happened yet , and I hope it never will . She is supposed to stay in Arlington in Massachusetts . I think it 's very cool , if I could watch the english movie without subtitle written in japanese . And I believe that , if I do so , finally I can make a extremely beautiful girl friend . It 's only 12 : 26 and I ( already ) wanna go home ! I wanna try the real full - course French meal , or whatever you call it : S Recently , I could n't wrote a diary in English . I think that this has a nice sense of rythm . XD So , I have to overcome this psychological obstacle . . . . . . . First , I practiced speaking in english through videos . Then , I wrote an essay . Today 's topic is `` a park near my homwhome `` . Today , I had a tea party at Yoyogi Park in Tokyo with some members of Tokyo Toastmasters , the local activity group where I can learn how to do public speaking . The movie was very enjoyable . I recommend you to have fun in your own special style when you see a ' colorful ' movie like ones Disney produces . ( Could also say : I feel comfortable and at peace when I take them . ) Of course , I knew that I had no choice but to learn a foreign language if I wanted to be successful in the age of globalization . We all close our eyes before starting the game , but the thieves can raise their heads up , open their eyes and look at each other to find out who the other thieves are . After we begin the game , we guess who thieves are by discussing like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes and point at the people who we think are thieves . A lot of interesting andspecial TV shows are on the air in December . I 've justbeen so busy that I could n't finish watching ( and deleting ) the recorded programs ( T _ T ) . I applied for a position and went to an interview last Wendesday . Today , I made some sentences using dialog typing for learning I interrogative sentence . good moring everybody ! Last night my friend came to my house . she first stayed at my home This morning I made her breakfast . because she thinks I 'm a good cook . I wasted 2 months on my dissertation period . . . I wonder if my students will like it . From now on , I got to have sneakers on for a while . I like me as I am nowadays . I want to try to write some of my thoughts but unfortunately , I have n't read anything recently . Including me , most Japanese are perhaps good at Listening and THE DEATH OF MICHAEL JACKSON And my oral Englsih can deal with some easy topics . What 's more , I have also begun to read English novels such as ' The Red And The Black ' and so on . Some people say It is n't practical . . . Even though I 'm using this website to improve my pronunciation , in the following passage , I can never pronounce the same sounds properly . that 's the reason I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thought . Then I had INARI ZUSHI and mushroom Salad for lunch . I was not tired because I had taken a nap . And my neck is very good today . However my friend whois going together with me says that a natural disaster may strike anyywhere and whenever . We ca n't expect it . Since I have the experience of beingkept in the elevater by blackout of due to lightning . I am really nervous about these kinds of things . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowledge about your own country 's traditions because some people are interested in Japanese culture . It 's a Japanese traditional food eaten on New Year 's Eve and it 's said that this custom was started in the middle of the Edo era . Second is the belief that eating the noodles will cut off your troubles instead of carrying them over into the new year . I will be nervous ! ! Anyway I try to set up my account now ! ! Are they different ? The very quick responses really encourage me to study my writing skills ! ! After graduating university , I had worked as a chemist in Japan for a couple of years but quit the job to study English . I studied in Canada and England for over one year in all . After that , I became obsessed with English because I met a lot of people who come from various countries and learnt about different culture , history , food , and ways of thinking . ( If I had known the water in a pool was actually shoulder height ( or : shoulder deep ) , I would have tried three years ago . ) Anyway , I decided to give it a try and now swimming is my favorite sport . I hope to make my English more fluent so that my English would no long be an obstacle when talking with others However , there 's good news especially for me . The book was written by a twitter user . The book store near my house had a bargain sale up to 50 % . He told us that pronunciation is very important in the learning process , but he said we need n't worry about our poor grammar , because just about nobody will care about it when you are just chatting . Except for formal situations . There was a beautiful young lady in the show that was forced to leave her lover unwillingly . I know that it 's better to turn off the Japanese subtitles , but if I do that it would be hard to keep watching the movie and have fun . If I do n't watch them regularly , then I will not be able to improve my English ability , so I watch them the way I said previously . I feel that my vocabulary expands / grows by reading English subtitles . When I feel that way , I bring myself into feeling that I want to write more entries here . and I am really looking forward to these events . ^ ^ I have been looking for some sites which are better than this one , somehow , I still couldn ` t find one . * Increase the ability to concentrate . When we got out of the attractions , I found that my umbrella was stolen . Although practically the number of people who are wahlers has been decreasing in Japan , some people who live in these specific areas continue whaling to make living . just that it is more difficult to find the time to learn compared to when we are students . I think that the student who recognizes the importance of this privilege can make use of their college life for sure . Are Japanese elevators the only ones that have a door close button ? The opening sound is really familiar . I am eager to go to a theater and watch it . However I noticed him in the trailer ( maybe , full CG ? ) . Hi every one ! I want to improve my English skill ! Thank you every one . Incidentally , our opponents were much stronger than us . I could n't believe my ears . It sucked . And you are very good at drawing pictures . I can clearly remember Melbourne . Be honest , it truely works . I am studying English at SDA . Why do n't you just fill the fucking vacancy ? Why do n't we just keep silent and let time fill the vacancy . Hi , I 'm a student for product design 's master degree , and I have completed a work Iicall it Finger Dance , which is a kind of dIgital communication equipment for cold environment , and be suitable for outdoor survival and rescue in the ice - disaster or snowstorm . welcome to my blog to see my other works : This is the first time that the DLP lost their seats in last 50 years . - - > Now I have started `` The Namesake `` by Jhumpa Lahiri , which is really interesting so far . ) I try to stay fit while not using cigarettes . The pair of shoes I bought are Nike brand and they are available with the iPod plus sensor . When I was a child , I heard from my grandmother that there were many treasures ( buried ) under the ground at the end of a rainbow ! ! ! In the beginning I was a little bit nervous , but the conversation went smoothly ! Twenty minutes is such a short time and I had to say goodbye , because the international fee is expensive , this can save money for our company . Recently , I have had no time for myself . Sometimes it makes me tired . Without any interuptions . Yeah , finally , I opened my mouth . Three of my friends came to my home to study English together as usual this morning . It is a very fun place for me because there are many kinds of cool shops , for example apparel stores , restaurants , sweets shops , nail salons and so on . So , when I found this site , I was pleased with it and registered right away and then tried to write a lot . I do n't know if this method will lead to high score in the TOEIC test immediately , but actually , I really enjoy studying and I sometimes think in English now even during daily life . Then , I can somewhat understand what they say . My throat is in such pain ! We focus on difficult words and torture ourselves . During the holiday , I had to finish my school work , essays , and other important tasks which still were n't done . He had nothing to grab onto and hardly any place to stand . & nbsp ; However , there was a middle - aged man that was sitting in one of the priority seats . The middle - aged man looked at the old man and back at me again . I thought that his conscience was starting to bother him . I have to go to must work and perform my experiment tomorrow morning . To begin , I wrote my introduction . I am studying for my exams at the university 's cluster room , but I am freezing as the air conditioner is turned up very high . She went out to the new sun room that 's waiting for the materials to finish the floor where she found an old man . He walked into the incomplete sun room so Siri said `` Who are you ? `` . He did n't say anything for a while then Siri found that he had a name tag on his shirt and recognized the name . It is the internet that has had the most powerful influence on me by the prevalence of computers . I think I wo n't go anywhere so I 'll clean my room and I 'll cook what I want to eat at the time . For example , the shape of the rice cakes ( round or square ) , flavors of soup ( soy sauce or miso or sweet bean soup ) and other ingredients ( chicken or seafood and many kinds of vegetables ) . Fortunately , South Korea has developed accommodations called Jjim - jil - bang . When I was overseas , I did n't watch English news channels or movies . I could not understand popular programs , as I have no idea about their cultural background . I 'm required to learn formal words rather than informal . In my case , I 'm exposed to formal situation too often . During class or school , I hardly get a chance to use slang words . but statistics is very difficult . By the way I would like to know the difference between ' personal ' and ' private ' . So could you help my studying of English ? In Japan , we have a lot , like candied apple , cotton candy , takoyaki , roast squid , okonomiyaki , yakisoba , taiyaki , crepes , pickled cucumber , kababs , shaved ice , and countless others ! ! In my opinon , there have been many changes in America 's thinking . They want change and achive their hopes by voting for Obama . My hope was also that Obama would be president , and I am looking forward to watching the inauguration speech on tv . I have no doubt tomorrow will be a historic event . It 's origin is a mystery novel `` kokuhaku `` written by Kanae Minato , it got an book store reward in 2009 . I have to get the certification , which is called MCAS . So now I am not working , because according to our holiday tradition , we must meet our friends and relatives today to exchange gifts . This provides many programs to watch , whereas NHK does n't have so many . And after reading it , we had to explain and summarize it . Due to the pronunciation of a Chinese English speaker . Anyway , I had to follow her explanation and summarization about it . I just stayed silent . I am feeling nervous . I do n't know why , but I drank 2 cups of coffee at 4 AM . Both of them are from the same company , are n't they ? I decided to struggle with studying English , for the same opportunities that foreign costumers had visited . Furthermore , some of the main characters also died from that . I had class this morning so I had to get up early . . . . Staying up late is so tiring for me . In good weather like this , I want to meet friends and sit at a fire in nature . Consequence : We decided to go for a trip as a consequence of the long discussion . Today I begin my diary . It was 32 years ago , so I do not speak English . This weekend , I am going to take a test called ' Eiken ' . It 's always a pleasure to read your guidebooks about any place of the world , especially about towns I know . When the drama started , I felt I was having `` deja vu `` ! I am too anxious to make many good friends who come from different countries and from different cultures . I paid a deposit of thirty thousand yen . Today im very unlucky . And in bio I did n't finish my homework . ( teacher let 's me go to lunchbox . ) ? ? ? I like it when the sea is smooth and motor yachts sail on it . Sometimes you can see ( some ) coloured fish . People hung fish windsocks from their rooftops and wished for their children 's health and success . If a factory is not managed very effectively and efficiently according to specific rules , it 's prone to polluting the local air and water . An ideal community should be quiet and have fresh air . My best friend said , `` you should just ask him and do n't talk about your dogs . I remember when I talked about my dogs with the doctor , he almost yawned and I was a little bit emotionally scarred . However , the man 's attitude towards her is deteriorating . So far , you have n't shown any successful results . `` I was happy to pet him . When he feels good , his color is lighter and when he feels bad , his belly becomes a black stripe pattern . The instruments they play are guitar , drums , bass , keyboard and many others ! Did a typhoon hit Hamamatsu ? and I 'm writing a diary just to kill time until I 'm ready to go out . But on a second thought , I 'm learning English online , too , so I can keep studying it ! Of course , I want to keep writing daily on this site . By the way , after I registered , I can now use `` PhotoAlbum `` above . It 's difficult for me to express my opinion . I might have hurther feelings unintentionally . I worked for my new job for almost one month , and I contribute many of my `` first times `` to this job . For example , this was the first time I walked to an office that was n't only10 minutes away , or I ate a French dessert named Macaron , and today is my first time going to a photography studio for a photo shoot of our product Although it 's boring when we are waiting , I believe that when we see the pictures on the magazine everything will be worth it . We enjoyed it and felt happy ^ ^ So I can eat those without having to think which dish is cheap or expensive . It was ivory , long sleeved and high - necked . Japan has had a tough experience in the big 3 / 11 earthquake and tsunami . When I see the people 's attitudes toward saving electricity , I am reminded of our national character . This events often take place in summer . Thirdly , I like to make new friends and get to know more about the places I 'm travelling through . Mobile phones are becoming fashionable recently , there are so many colors and designs . And they have a lot of different functions . For example , you can use it to listen to music , to take a picture , to use the internet , to manage your schedule and even to watch TV . . . I do n't need too many functions . I have one but I do n't know all the functions of my cell phone . . . These days , most people have one . Sometimes it gets too expensive . . . We should be careful when using our cell phones . I 'm looking forward to belly - dancing and also to meeting my teacher next Thursday ! We study at different places . We both wanted to learn independently so we were separated by our parents . And second , It is easy to raise cats . I entirely understand that , and that 's why I want to raise dogs and cats . Now , humans control this world , so we take care of only ourselves . It had n't been strong enough to damage anything but it reminded me of the tragedy of Haiti . usually , I do n't make a habbit of writing in a diary on websites . . . I am trying to look for a sentence so I can ask you but I ca n't find it . It 's not a problem , I can read it by myself again . Things interested me . I 'm sure it will help you broaden your horizons . I commute to a language school . By the way , the illumination at the racetrack is very nice . Of course , I am one of those losers who regret their gambling . However today is Friday ^ ^ Besides , I can not read fast , speak fluently , or write quickly . grandpas , grandmas , everybody is welcome ! ! I have a presentation next Tuesday . When she found the truth , she was very upset about it at first . But now , she is looking forward of seeing her baby soon . So I 'm not surprised that she was upset because delivery would be difficult for herand it 's pretty expensive . Hiroshima is famous for the atomic memorial park and Miyajima . I did n't know him well , but I want to hear his interpretation of Paganini . Um I wanna change my life . I opened the egg pack in the refrigerator and found out the eggs were frozen solid . I was able to see skyscrapers and the Opera House from there . It is clean and comfortable ! I would like one day to leave my country and travel to England , but the problem is that my english is very bad and I do n't know enough so I could travel there . . . I will take part in a Chinese Speech Convention . This is my third day using lang - 8 . I 'm not really familiar with the functions here , so I always send the same It is good to meet many friends from different countries , and help each other . When I woke up early midday , I hada severe headache because of a terrible hangover . and I asked my friends about holidays when they traveled but they said they did not travel often . sometimes they think if they use the money to traval they ca n't use it buy something better . I think we have a lot of beautiful beaches like in Phuket and Krabi ( ? ) . so about me , I did not travel in the south . I plan to go there one day when I have enough money . Studying in Canada is a valuable chance for me to become mature and to [ learn to overcome many difficulties and barriers . Last time when my friend and me were leaving the Superstore and decided to walk back to the dorm , a Canadian couple drove us back . Deaths from the usual flu are more than swine flu which is simply not mentioned . I consider the vaccines , not just from swine flu , itself to be harmful . Suddenly I recalled one thing - - - I have a TEST in a couple of days ! ! ! Afterward , I looked in the mirror , and I liked my new hairstyle very much . As I was passing a park , I found that my shoe was loose , so I sat on a white bench to tie it . After leaving the park , I continued on my way home . However , many people just stared at me and laughed . At that moment , I thought , `` What 's wrong with me ? Arriving home , I rushed to the mirror to look at my new hairstyle again . When I turned my back to the mirror , I saw white paint on the cloth of my skirt . So many things have happened since I was here last . I 'd like to get another dog . I feel [ as if ] my opinion is [ very ] selfish . . . [ Because ] I 've never discussed about it with my husband [ yet ] ! ( Husband to be ) . Before that , I need to get my father 's permission . Watching movies and listening to podcast or radio programs or even music would be a great help for the better understanding . These days I think I ate too much so I am gaining weight . I like to drink a cup of coffee when I feel tired or want to sleep , especially after lunch ! In my opinion , no matter if teaching ( the ) students who have already had plenty of knowledge of English , or the children who have never contacted English before , the teacher should recognize the importance of teaching . And they should know well the different methods for teaching different grades of students . The Art of Disney Gallery is held outside in Downtown Disney . The Legend of Saint George part - 1 I timidly tried to sink it in the bathtub a few days ago and I timidly tried to take some photos with it in the bathtub yesterday as well . So far I only watch about two movies a week because I do n't have enough time . They were `` Graded Readers `` , Penguin Readers , Oxford Bookworm , . . . and etc . * When I work at the hotel , I will not only need the ability to speak English , but also the ability to express my opinions clearly while using appropriate jargon . I played the guitar in a band at that time , and we copied their songs . 80 % of Japanese Boys talk to others with humility and rest of 20 % boys are totally insolent like kids . How about the boys in your country ? This phrase seems impressive to me in junior high school The sentence structures are not familiar to me . The cherry blossoms are blooming in Kyuushuu which is in southern Japan . My husband and I went to see a movie . Before the movie , I went to a department store and bought a pretty ring . The movie was called Gulliver 's Travels . I slept during the reading section and lost about 100 points more than the listening section . I will buy more of them later . It 's really difficult to think of it because he 's straight . I ' VE HAD ENOUGH ! ! ! ! I 'm glad to hear from you , and I 'm also glad that you 've just returned from a trip to Scotland . I fell asleep last night in front of my pc because I felt sleepy after I ate supper . I am planning to go abroad in about one year to study fashion design in England or France . Even though most employees are Japanese , some have sent emails to their boss , I have had the opportunity to see such emails sometimes . When I went for a walk , I passed by a little restaurant . We had a thunderstorm last night . So I ( often ) pour some syrup into my Caramel Frappuccino . I 've remembered his free kick at the champions league 2006 - 07 at the games vs Manchester united . Because I also have a moustache and a beard . Now I 'm going to read a chapter of Dickens ' book ' A Tale of Two Cities ' and maybe later I 'll write an entry about the book . Originally , I wanted to work in a pub in Itaewon that is located in Korea and where many foreigners come to hang out with their friends . Frankly speaking , I expect that there are many beautiful women . But I was disappointed . One elderly man said `` There is something under the machine . `` Once I start writing , I ca n't limit myself to an appropriate amount . Today is Wednesday , February the second . Voice blog is where you can make your account and create your voice blog . I have just registered with Lang - 8 . But I have n't start new things yet . Sight seeing ? MY ANSWER : Finally I finished one of them , and then I emailed one of my colleagues to ask for his advice . Fortunately , I was not injured in the earthquake . But when I started talking , nobody responded to what I said . So my topic did n't make sense . In Japan we can see a rabbit on the moon . In different countries they also see different shapes made by crater on the moon . To learn a foreign language , we should try to speak it as much as we can , and in my opinion , a test will push us to speak more and speak better . European countries are near each other . So it would seem to say that men tend to be more of romanticists than women , who tend to look at reality and security . I like him because he is plugged in . One part of our job as an intern was to interface with the customers , which includes introducing the products , receiving the attendees at seminars , selling the Xbox 360 , or hardwares , etc . That 's why it surprised me very much that he went for broke on those jobs , especially on selling the product . And I like to play football very much . Maybe wewill develop iPhone app , a simple game . so , , , , we were hanging out till night , walking too much , my leggs were hurting . I drunk a lot of alcohol last night . American tornados are also American size . ( Sometimes tornados appear in Japan as well , but most of them are generally small . When we first see American tornados on TV , we are surprised at the size of tornados in America . ) There are many visitors and workers from foreign countries . Our Prime Minister , YukioHatoyama , said that he would resolve theFutenma problem by the end of this month . My favorite drink is green tea . When someone kindly corrected my text , I feel happy . I learn English at smart . So , I am happy that her boyfriend is my friend . I am very embarrassed with my weak ability . My refrigerator is still operating now , but I bought a new one because the electricity bill is too expensive . Yummy ( T _ T ) Some young boys were playing barsketball , while some young girls were listening to modern songs and many old women were dancing . Lately , I have been crazy about DIY . I really like Whisper of the Heart especially from a lot of the movies by him . How could he tell her girlfriend ? Can you help me write a conversation ? One day my daughter said to me . I watched `` The Big Bang Theory `` again today . Hi , everybody . Everyday , I have to acheive all kinds of information on amazing destinations . I would appreciate it if you kindly help me correct it . < just more formal > So recently I 've started gaining weight . I decided to eat to healthy food , eat less , and to exercise . It 's great . They were above my shoulders in height . Unfortunately , the temperature of water was not warm . I did not know what was happening . When I get home and settle in , I will write about my trip and put up some pictures ! ! ! ! ! ! ! There are some vegetarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabetes . I want to work internationally . I am studying Korean too ^ ^ Anyway , it is a hard for me and I am worried whether it would hurt their feeling If I ask them several time to repeat what they said . Therefore , I have to find someone whom I can practice conversation with the eldery . I have worried about my English skills recently because it is one of the most important skills for working or enjoying our lives nowadays . Although nearly 20 years old , I need 10 minutes to write these three sentences . When I write something here in English , I always try not to make a mistake , but still , my entries always get corrected after all > < His homework includes three book reports , an English penmanship , and a math workbook . when I have free time , I always google words . It was very dificult . And we are going to have test again . Although it depends on the country , as far as Japan goes , there are some reasons why we attend college . They have great influence on children in the same generation , and those children show that practice leads to great success . The reason why I wrote such an impolite thing is because I really wanna go to Singapore immediately . I 've only studied in Sydney ; my real intension is to go to the beautiflul sea or something . So , probably I can enjoy Australia and I can afford to see every thing . As friends have helped me correct my blogs , I have gained confidence to go on writing . Then , I practised my English listening skills by listening to the New Horizon3 at double pace ( double speed ) . He said that at his work ( Japanese company ) , he is often told that he is too self - assertive . Sports is not only physically challenging , but it can also be mentally challenging . Criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Unfortunately , I ca n't run this year , but I 'm going to run in another marathon which will be held in my home town . I will cost a lot of money . I long for their life . I want to be a millionaire ! ! After it all , we discovered that we ca n't recollect ( or : remember ) anything from the last school year ! ) We had a headache , but it 's natural ( or : normal ) , because we had n't been practicing for 3 months because of vacation . But yesterday , I coudn ` t say `` Happy New Year `` to my friend . Sushi is a very ( popular ) food in Japan . If the people of the future see the current world , they would not be approve of it . By the way , could you tell me whether it is not difficult for native English speakers to distinguish `` want `` from `` wo n't `` in conversations . I bought a magazine , `` Business English `` a week ago and I 've just started learning with it . This is my first time at lang - 8 . I want to improve my English level , and make friends from other countries . I look forward to receive your message . But I tried not to change it not very often . I think the main causes of my not being very successful are - laziness , misallocation of time and tasks , and again laziness . Today , I was working at Lotte World which is similar to Disneyland . * The original sentence sounded confusing . * Although this Christmas I was lonely ( lonely ) , I hope that I will be happy for a whole year from next year . But I think the Singaporean government wo n't be able to settle this problem unless human beings successfully develop a technology which can change sea water to clean water . The movie is about the life of Cuban Revolutional leader , Che Guevara , and his inspirational journey . I did n't know of Che Guevara until today , because I did n't know much about the Cuban Revolution . We are currently using a customized program that we developed ourselves . Unfortunately it is not very common in my country . By the way , today 's weather was strange , because it suddenly began raining harshly . I am not familiar with Maiko san , Kyoto became one of my favorite cities . `` Can you play tennis ? `` and `` Do you play tennis ? `` She had even worn a mask from the beginning of May . No one can give us a clear answer about the effect of long - term low level of radioactive exposure especially in relation to children . The most important thing I learned is making a special point of ensuring their safety . After they had their afternoon nap , I woke them up and asked them to His medal was bronze indeed , but I thought that he deserved a gold medal because he must have made a lot of Japanese impressed and encouraged by his comeback . He always cracks some inappropriate ejokes that make me sad and uncomfortable It was a very pleasant party . I got a good grades on most of my English exams , but English is still a field filled with confusion for me . I must control my physical and mental well - being to complete the Tokyo marathon . I complained about my looks to my mother . A few minutes later , a friend of mine asked me `` oh - I did n't recognize you because you looks like different person today . `` Ok . . . . I am now working in Tamaki . Sometimes I move my body if I hear some high tempo music at home , but I never do that when someone else is there . But it 's ok , I said before , I will protect my dreams , no one can take them from my hands , today I may be stupid , but what about tomorrow ? Different from middle school and high school , college campuses are much more interesting and fascinating . Furthermore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . Usually I read sentences from the TOEFL and literature , but I do n't talk in English , I drank at my home town . The fugu is delicious but a little dangerous as a food . Hmmm , I think MacBooks are not made for cats Ize peninsula where I live , is a warmer place than the other areas in Japan . If the Ume tree does n't exist in the other countries , I think it 's okay to just write Ume . My other favorite things include playing the guitar , eating snacks ( especially chocolate ) , dancing , watching movies ( on dvd ) and so on . YAKUZA appears in this game , I like Pikachu the best . But I also like Raichu . My friends and I often talk about our other friends . Or : As food safety is becoming quite a worrisome problem ( here ) , Beijing citizens are trying to find / locate farms themselves that can provide safe agricultural products . But when I 'm able to comprehend the means of songs , I feel a huge sense of accomplishment . The Maldives has recently become popular for honeymooners . A Japanese friend of mine called me this morning , almost crying . We hope this maintenance will bring . . . The class is very interesting , I learn English and Chinese . I live in Shanxi province which is located in the northweast of China . I am a student and I want to learn English . I never thought of meet such as great person in the university . The price of potato chips has increased little by little . Today I went out with my son , and we took a walk under the spring sunlight . In the evening we went to the market and bought something to eat . I took many pictures , but I ca n't function anymore . The aftershocks have faded out but another problem is coming . This plant sends electric power everyday to large areas including Tokyo . Because of this , Tokyo electric company and the government have decided to share the power in order to prevent sudden blackouts in all areas . Ashita wa ichinichi chu koko ni wa narimasen . Watashi wa Scout no atsumari ga ari masu . I think it fits the atmosphere of anime . Yesterday ( February 3rd ) was `` Setsubun `` in Japan . Congratulations to me ! ! Taiwanese people are always open to others from all over the world , so travelers can feel the Taiwanese enthusiasm very much . I like cherry blossoms . There was a single cherry blossom surrounded by other kinds of trees ! ! This party is sponsored by the English conversation school that I go to . About 70 people , including twenty foreigners , will attend the party . I 'm not used to communicating with foreigners . Also , my English is poor . I 'm looking forward to the party , but I feel uneasy about whether I will be able to communicate with the foreigners there well . I hope to make friends with foreigners at the party . Perhaps some ( someone ) may want to ask me why I worried about my relationship with my girlfriend , as I wrote several days ago here , even though I believe this . First my throat was just a little bit sore , but now I have got a cough , a running nose and a seriously sore throat . As I said above in the title , I finally got a job = ) But the surprise is that I am not going to work in Korea . I am leaving for Vietnam next month to work there . I feel I should take care of myself more carefully . . . . Nonetheless , after the Meiji Revolution , Japan grew as one of the developed coutnries in teh world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glory in the Meiji Era when Japan was the king of Asia . We had to do sth in the room , so we stayed in our room for 1 hour . They are authors of several books , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'll introduce myself a little . And also I know that the JLP teachers have spent so much time preparing for this summer course . Acording to my memory , I might have done about 3weeks ago ? I met my friends in my high school class , went camping , experienced heart - breaking . . . I do n't know the case of foreign countries , in Japan many high school and university students tend to start their first part - time job in it . My English is not good . There are many words I do n't know and I do n't understand grammar . rain was like one of Tsuyu and called Natane Tsuyu in Japan . I went to Vancouver for 2 days . Yesterday was the last day of my Military service . It was a very happy ending for a long hard year . I have gone through some very rough situations The 1st word is ' I ' whenever I speak English or I write a diary in English . I went to hot yoga class yesterday . What is the best way to handle conflicts ? Cultural differences often cause confrontations . Even in a classroom , there are cliques . When we are in a conflict , we tend to regard our own opinion as right , Firstly , we can search much faster for information regarding things we want to know about by using the internet . Recently I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . And , Tasmanian salmon tastes very good . I am quite lucky after all / though , my college classmates have had a lot of interviews , however they did n't receive any offer yet . I searched for information about Los Angeles at home . I had an orientation for an English conversation class just 45mins ago . I was asked some questions in English from an American Teacher . just laughing and chatting or thinking deeply about our future . I do n't have the right volunteer spirit . If I can control my emotions , I will be released from my pain . I attended a seminar about social networking services a few days ago , and one of the guest speakers indicated that human beings ' abilities are atrophying while information and Internet technologies are advancing . This is because the evolution of technology makes it easier for people to solve problems . All these technological advanes changed our life for the better , but at the same time we should realize we are becoming lazy and our abilities are atrophying because of our inventions . I 'm stressed out by many things and have no energy . . . : ( = more natural I sold for 20000Yen a CD boxset of my business teaching materials , which I used to listen to There were so many people screaming and yelling . They reproached the director and actors for making the premiere so late and so short . That day was my birthday , so I decided to eat unadon for my birthday present . I like thinking about how should I take picture to makes everybody interested Can you thinking about what 's a different between them and you . But sometimes I forget to try , so I think I should try to something again . I hope this website will be help me with my English skill . I went to a Chinese restaurant downtown , with my friends . how much it needs effort to make it something But It is hard work for me to write what I 'm thinking promptly . On top of that , speech delays always make foreigners confused when I 'm speaking with an American friend . And another reason the friend is confused is lack of vocabulary . It is difficult for me to transfer the meaning of what I 'm thinking completely . However , I know that it is unhealthy , so in order to be a healthy and lovely girl , I decide to eat more of a variety starting tomorrow . Lastly , I want to make foreign friends . I ordered factory size spaghetti with rich meat sauce . Konbanwa . Tree leaves have turn into red and yellow . you can feel Japanese autume if you look at . but sometimes , I 'm impressed by it . I wanted to wear skinny jeans so I went on a diet . I had to stop losing weight , but I 'll keep excercising for my health . Actually , computers wer n't my first choice when I was invited by Shaoguan University . He has a big disease , cancer . . . School festival . It was a very big event x - D Finally , I will spend less money if I live on campus . But , as you can see , my English level is not good enough to enjoy English . For example , watching CNN and BBC news or listening to English songs . It 's a rare opportunity to talk with a native speaker of English , most of them come here to study Chinese . I had been introduced by another Japanese friend and already knew him , but I had no time to meet him then , only knowing his cellular phone number . But he wants to speak conversational Japanese fluently and he has plans to go to Japan . I unbalanced my rhythm of life a little . I will write about that very tiring trip , some other day . What 's a good way to join the conversation ? All of the band members have already had experience with other musical projects . worked with many different musical styles from Ska - punk to Hardcore . electronic samples . So I had to look in the dictionary many times . This means I have to read about 100 pages a day because I just started to read this book today . Even better , I can assign different purposes for a few cups and only use one with its assigned purpose . I was discharged from the army on October 31st , 2010 . It made me desperate I feel eurphoric . I asked everyone : `` Would you add me on Skype ? He is always full of energy and a real handful for me . After dinner , we went to a cafe . It was a great movie , as many people including my friends said , but it was a bit complicated . I have two turtles and I have had them for about 15 years : - ) Their names are `` KA - `` and `` ME - `` . * Lang - 8 is very good website for learning languages . I found it in a magazine . Recently Lang - 8 has not been running smoothly . It 's a little embarrassing to play it when there are a lot of people in the elevator hall . So let me introduce myself ! By the way , I took part in an international party in Ginza , Japan the other day . We can taste delicious foods in Hokkaido , such as chickens , Japanese crabs , shrimps , various vegetables and so on . I 'll look forward to it very much . When I made a woolon tea with a tea bag in hot water as I usually do , I noticed a difference in taste . I could n't stand the difference in taste , so I went to an electric appliance shop to buy a water purification appliance . In a part of the Fukushima prefecture , which has had a serious problem with nuclear power plants from the March disaster , thousands of residents have been told to leave their homes . In addition , my laundry wo n't dry because of the humidity . I performed two songs as a band member in the university festival last year . We all have beautiful penmanship . ( or handwriting ) I found out how good mutton tastes when I lived in China for three years for business . Anyway , mutton is less popular than other meats , like beef , pork and chicken . in Japan . I do this so I can have a lot of bread , even though I 'm on a diet ! Many Japanese foods are sold on the street , such as tempura , udon , dango , kakigori ( shaved ice with syrup on top ) . I delivered to six families for only two hours . During the meeting , a professor and I discussed a way of teaching science . Once the mark is caused , it is permanent . So it damages a lot of things and many people feel uncomfortable . When Joy entered Mcdonald 's , Ji and Min were already sitting down . This was her first solo concert and the first CD was released on the same day . so my essays are always basic level . It is natural phenomena , is n't it ? Please read my diary . Today I cooked a cheesecake . I pretended to call a policeman . A Chinese women bullied a kitten like people do the laundry . My dog died and I lost my job , my business failed and my money ran out . and did not do work out as much as usual . and after dinner , I went to the health center which is located in basement of the dormitory . and I excercised with my best effort . I appreciate your help and advice . Although the temperature there was much more higher than in Taiwan , but the weather in Taiwan is usually hot and humid , and that makes me sweat all the time and feel uncomfortable . It was July 4th yesterday , the birthday of America . I 've been trying to figure this out : what do Buddist monks do when they encounter sexual lust ! ? I have parents , a brother and a dog . It 's been a long time since I last logged in to Lang - 8 . My major is informatics , which is rather new and interdisciplinary , and includes many disciplines like philosophy , contemporary thought , science , engineering , design , social sciences , and so on . I want to make friendship with many foreign people I could n't conceal my excitement for this communication , because it was my first time to communicate with foreigner face to face . We only briefly greeted each other , and afterwords , there was a long silence . I felt that it had been a complete failure of a conversation . Anyway , I 'm still confused about how to use it . I do n't have enough willpower to study more and more in the morning , wasting a lot of time . Fortunately , we 're on vacation this week and do n't have to attend classes . That gives me hope while watching dreadful stories of the world . I graduated at a university this year , but the graduation ceremony was not held . And I like taking pictures , traveling , eating good food and drinking , haha ! I want to speak English like a native speaker . How do you study language ? It 's a piece of software to memorize words and phrases efficiently . Please try this method if you would like to learn a new language efficiently . You can surely memorize many new words ! Apple 's technology is amazing but I have n't yet learned how to search for words and write at the same time . If my friend has time , we 'll catch ball or watch some games . My thesis was mainly about the relationship between languages and colors in old Japanese , modern Japanese and modern English . If you are one of the people who lent me a hand on my survey , I really appreciate it . Today , I had three classes ; English , Japanese and Chinese . Because it was the weekend today , many people came to the restaraunt . Sometimes people from foreign countries come to the restaurant . Americans , Koreans and Chinese people . Yesterday , I had a class titled `` perfect pronunciation `` at the university . His / Her birthday is tomorrow . I 'm looking forward to tomorrow . When I had to pay , I found that I only had 4000 yen . I have not been a student for 9 years , but I will never forget this holiday ! Inside there were 3 motors , a metal frame She told me about her friends that went to America to work , travel CROSS OUT ] America [ / CROSS OUT ] and take care of the childrenn in the U . S . A for one year . Yesterday my friend told me about Lang - 8 . But when I bring her out to the street , she is so crazy ! Then my mouth opened and finally I smiled and said to myself , `` Thank you , my wonderful friend from Lang - 8 . `` It ' very difficult . Have a good weekend I think I will go shopping and look around the market . I would like to buy a new magnet . I hope you have a good weekend . I think it is good for me to improve my English . My English is so poor ! we just connect to the internet . In February 2010 , I bought a new one . It was a good opportunity to improve our relationship . My vision Okinawan people do not have good a image about soldiers of the American military . I thought he had not forgotten about his ex - girlfriend and still loves her . So we became friends . Someday , If I can speak English well , I want to tell him thanks and what I think of him . I want so much to program in other computer languages . Sooo sweet and juicy . 4 , Click the `` Update `` button and that 's it ! Their expressed policies in the manifesto are as follows : The government subsidizes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . Meals are more expensive than they were before the Spring Festival . Fourth I chat with a guy in a QQ group who ignored me after we exchanged afew words due to my bad English . My mom has 3 bothers and sistrers , and all their family will come back to spend new year together . They do n't know how to speak gently and everytime I just feel so uncomfortable and try to escape them . Although we are good freinds , I still think it 's embrassing to show her my room . That made her sick eventually . In addition , I do n't see the reason why people are eager to volunteer work for poor children and sick people in another country . People are probably just excited to visit another country even though they are going to waste a lot money to visit . I tried to make a plan on Friday , but it did n't work haha because we dropped by taco shop . And I saw the of owner of Ralph 's grocery store 's mansion , and then we went to my friend 's house to eat burittos ! However , while we chilled out and laid back on the sofa , they decided that they did n't want to attend the party . The population is heavily concentrated in large cities . Because in my English classes at university we do n't practice speaking and writing . It 's a very beautiful and yet awful movie about nuclear ( anti - nuclear ) weapons , and it is also a bad comedy . My bad habits I have some bad habits . But recently I have tried to fix my bad habits . Since I 'm not interested in studying English , I did n't study English after ( since ) I gruduated from high school . When I went into the shop , I was surprised about their menu and mood . The room is packed with people . If you eat too much , you will pack on some pounds . It is a big city , and big cities are not made for living in , they are made for work . Except for the many shops along the street , there are many dolls made from bamboo and paper ( paper mache ) hung from the roof It means mountain girl ; yama equals mountain in Japanese . They wear colorful sports clothes with pretty bags and shoes . Anyway I ca n't recommend climbing that mountain in the summer . I often felt thrilled and could enjoy all of those . It seems that this usually could be completely recovered by 30 . He said also he should have painted earlier . I went to karaoke with my friend ! The web covers the entire world . Many people have their own PCs which contain multi - language environments and are always online . Today , I Went to `` Shionoe `` with my girlfriend on a motorcycle . I argue that meat is better than fish for the following reasons : Lately , I have been getting up at irregular hours . Wedding / marriage ceremony It was sobad that my English teacher 's pronnunciationwas n't so good . According to the weather forecast , the typhoon is moving Northwest . However , no matter how many companies I apply for , I haven ' t I have to learn how to use it better ! Today we are having a forum ( discussion ? ) on the research that my lab has been conducting ! I resigned from my job last month and I will work in NYC starting DEC 31th 2010 . I like surfing , running in the early morning , and going to musicals . But many people cry over the naughtiness of young people . I like Michelle the best because her character and behaviour is soooo cute , especially when she is talking with Uncle Jesse . The video was about a person who tried to bungee jump into a river that had a crocodile in it . First , I was not sure if it was a fake video or not , but I wondered if the man who did it got bitten by the crocodile and was hurt . I ran ten kilometres up along the mountain and then down the other side for another ten kilometres . The mountain I was running over today was a symbol for Buddhist prayers . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide open view makes me feel freed from everything . The weekend is over , I do n't like Monday 's and I 'm logging in lang - 8 to see whether someone corrected my diary but the result let me down . I am looking forward to meeting them . We could sing to the accompaniment of a guitar , which the master played . Because I will want to enter university . I want to study biomechanics . Although I have nothing special to write today , I still feel like writing . if you 're interested , then please pay a visit to my page and take a look at it ! So ` native English speakers ` refers to the Americans . I thought that more people would come here for sightseeing and the number of suicides here would decrease as long as the path was maintained . I think that this is a part of the reasons why suicides happen here besides the not maintained path . The atmosphere was very quiet . A little farther from the Forest Trees of Mt . The board said that those caves were used to preserve foods several hundreds years ago . I was shocked at the news about Asakusa Samba Carnival 2011 . I have to prepare some boiled eggs . I can log in on the weekend ! ! Got an iPod touch We were studying together , and one of my friends said , This morning I woke up at my friend 's house . If it was n't raining , I would go to a sports event of a local junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operating hours of their airports to accommodate passenger and cargo flights from foreign countries . Residents near the airports argue that there should be curfews . Discuss both points of view and give your opinion with ( supporting ) reasons . But now I still have a generalized muscle ache . . . I ordered black ones but gray ones arrived instead . When I saw them on the internet , I could see that they were black and the description also said that they were black . The cargo of silver weighed about 200 tons . I am a university student , but I am not good at English . There are many types of drinks that taste like beer at the supermarkets in Japan . These drinks are so - called `` non - alcoholic beer `` and the ingredients include sugar , calorie , among other things . I was advised by the doctor I 'd better not eat or drink too much , take moderate exercises , and avoid a stressful atmosphere as gout is a disease caused from an unhealthy way of living . I can sometimes hear both of them singing at the same time . If it is nice tomorrow , I will fly the Koinobori . For example , I like to invite my friends to my place , enjoy my favorite cigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( it sounds like I am a teenage boy XD ) . Living under their carene make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . I was very sad and I remembered then what happened yesterday . t was a tiny mistake but of course it was my mistake so I apologised for it to the doctor . For example . . I played some games online and then studieded English , and played the piano . You seem ( to be ) happy . My job is loaning out electronic devices . But we only have few customers , about 10 people a day : ( Fortunately , the chinese New Year , which has eight holidays , is coming soon . my family consist of 5 members : my father , my mother , 2 younger brothers and I . I will graduate from my university in one year . In fact , I am a little worried about my job that I thought was so nice . I want to bridge Japanese companies and oversea companies . The KIC is near by my house , where KIA has some volunteer language classes , we call them `` English table `` , `` Korean table `` , or `` Chinese table `` . Since he ca n't speak , he is using a respirator . I 'm glad if you enjoy reading my diary . I tried to change to another bus to go to my house . It was my telephone and modem to connect to the internet . I 've got a sore throat from the cleaning spray and my hands get rough from washing . The weather is very good and very comfortable . So , most people have canceled their cherry blossom festivals . Do you know a Filipino singer , Carice ? When she was sitting in the airplane on her way home , just before taking off , the directer of the competition entered and asked a flight attendant where she was . And the suicide rate has been increasing in recent years . Moreover , because of its efficiency and convenience , we use technology even if we can do without it . And some traditional arts are in danger of disappearing because young people are less intersted in them . One sign is the blooming of spring flowers . I thought I am proud of him , and I am a very lucky mother because of I have a great husband and wonderful son . His attitude looks as if he has no enthusiasm about anything . Relationships are sometimes obscure and many of them are formed impulsively , such as friendship and love . I think that I ca n't sleep because of the heat . But I 'm confused because Italian is reading Roman but English is not . Then he will become a member of the Pharmaceutical industry in Japan as well as me . He will use English in his work too ! Essay : A Solution to Overcome the Threat I had to apologize to my customers for it . As usual , I was trying to use it but unfortunately , today I could n't do that because my office web security program blocked access to Facebook . She got her driver 's license about a half - year ago and has n't driven car that much , but today , it was her third time to drive long - distance . I accidentally came across the movie when I was surfing you tube . When she reads it , my wife is so concentrated that she does n't hear my calls . It sounds more natural . Hello all you beautiful boys and girls or kind - hearted men and women . I 'm a sophomore now , and will be a junior after the summer holiday . Anyway , the TEPS score appeared on TEPS homepage . Today , I ate lunch near my university . The British museum is famous all over the world . The museum ia famous for art . the museum The man is very embarrassed He deletes the picture from camera . As you probably know we pronounce a word as we read it : in most cases there 's a correspondence between the sound of a vowel or consonant and its graphic symbol . The announcer was joking about our difficulty of pronouncing the noun of this volcano , especially after listening to its real pronunciation . So he bought clothes at Abecrombie and Fitch , and finally we went to Universal Studios . I think Destiny 's Child , who split up in 2005 , was the greatest girl 's group ( ever ) . As I mentioned in the previous message on this site , I 've been practicing English by listening to songs . I hate studying English writing and grammar , but I like to study speaking . I ordered vegetable curry which twelve kinds of vegetables were included in . I laughed when I heard this . : p The way of my shopping has been convenient , meanwhile ever since the international company came to Japan , many local bookstores have been going out of their business . Lately , I 'm fascinated with `` Wicked `` , so I watched their videos . of MLP figures still nice , but I 'm not attracted to them so much . . He was very cheerful , active and fun to talk with ( all adjectives ) , so that he entertained his . grandparents a lot . butI have a difficulty still communicating with foreign people . The supermarket that is named `` FOOD ONE `` , is one of the cheapest priced supermarkets around here . Meets and Fishes are imported by the USA or China . Today I got up early to eat breakfast . I always get up late during winter Besides today , I have to do two kinds of winter vacation work . The google satellite captured something like a snake which is almost 30m long . I think there are many mysteries in the world . There is a very interesting myth in my town . 200 years ago , a wise Buddhist priest foretold that my town would be destroyed by a huge flood . People believed that it was just a myth before one statue was found . It is a very interesting myth . Yesterday , I participated in a conversation party for exchange between English speakers and Japanese . I wanna speak ! It has been more than 10years since I graduated university majoring in English . Sometimes , I got assignments to have interviews with exchange students who spoke English as their mother tongue . However , after graduation , I have n't had many chances to use English . All of these are good methods to release your stress . I almost had no time to relax . . . For me , it really helps me to understand the English . Also , the correct grammer . In my opinion , even if he was just a victim , he has to recognize the weight of his responsibility and the influence his behavior on the society because he is the Kabuki icon . If I was rehired , I would not be able to go abroad . ^ ^ ; ; ; ; Today I went to a kimono shop with my mother because I intend to wear one to my friend 's wedding . But Japanese people seldom have a chance to wear one . I wore one once at my coming of age ceremony . But I listen to a various music , Pop , R & B , Hiphop , Blues , Country , Reggae . . . . Shanghai noon is under a lot of rain today , my friends did n't catch the train , she was supposed to go to xian today . The capital city Tokyo is a big city . There are many places to go . Yesterday , I went to city hall to receive my passport . Today , I had a part - time job . It was heavy rain , so my toes were soaked . I expect to go to shabu shabu with my friends next Tuesday . It is so interesting for foreigners . My friends are foreigners so I think they will be interested in that . Occupation : university student Right now we have a long holiday in Japan . For example , in an elementary school you can learn how to communicate not to mention studying , and you can learn how to cooperate with your friends / classmates in junior high school and high school . When I speak English , it takes a lot of time to come up with right words so I guess I should train my English so as to speak instantly . On the first day we went on an excursion in ( the ) Kremlin . In the evening we went to a water park and water - skied . On May 7 we went on an excursion to the city . I almost go to the gym everyday before going to the company . It is pretty good . Podcasts are amazing ! ! ! If I start doing this , I will get to know exactly what I am eating and exactly what my calorie intake is and I will feel bad when I eat a lot . have been learning Japanese . `` It 's impossible because they do n't listen to me , especially mom ! I so appreciate that I had preapared TOEFL test , because it gave me a lot of valuable experience in Reading , Writing , and Speaking English . Without the TOEFL experience , score , and training , I could not have gotten those jobs in just two weeks . I want to send a Christmas card to my friend . Before , I heard that a lot of Finnish like Robert 's coffee , is that true ? Merry Christmas ! The Western body has long arms and legs , and big hips . I have a plan to learn English . First study grammar second read anything in English third watch a children 's movie finally write in my diary everyday . When lunch time came , I was going to go to the restaurant . On the other hand , social enterprises can obtain funds regularly because they are run through the business method . Disappointingly , I could n't enjoy tasting wine when I visited a winery , because I had to drive a car on the way back home . I went to my university 's hospital even thought today was Saturday because that 's what the doctor said to all the members of our team . The messages told me that my card 's number corresponds to the card 's company 's , so they canceled my orders . Last saturday I 'd have a private concert with friends for piano . Hello . I wanna get an international license . I want continue my university studies , but I am afraid that I did not do well on my exams . It is not a very touching story , but I have watched the series since I was 10 year old , so it made me cry ! LOL I will definitely come back to this beautiful country again ! So , I want to communicate with people of different cultures and countries . So , I have to learn a lot about managing a business . I know that it is not easy to succeed . I want to improve my ability to make sentences . My favorite person is Ichiro Suzuki . First diary in English Today , I am writing a diary in English . Today I signed up at this site . I can check your daily journal written in Japanese . I think hes ' got a good personality and is well grounded . When he announced that he was getting married , everyone blushed . A Welcome Party we talk in english . I saw the corrections , and I had to start to translate with google translator . I use google translator when I do n't know the words . Jon always teases me that my English is regressing / getting worse Impactful titles ? ? ? Tourists can enter a limited area inside the mosque , even a non Islam believer . It was a drink that I had not known before coming to Singapore . It is a cappuccino of tea version ! Last night , our teacher was a black man from Botswana . I 'm moving to another seat . If I want to thank you , I would write in the card , for example , `` Thank you for cheering me up : ) `` He 's a member of a group called SMAP . I submitted an application to a new job last month . I have lived in Fukushima , Sendai , and Iwate before . It has been inconvenient to go around the Kansai district from Hakodate since the Lehman Shock . . . Today , I decided to start a diary in English , to improve my English skill . My favorite drama is `` Friends `` ! I 'm glad I found this useful site . I was part of the staff at a wedding ceremony . Wearing perfume is not familiar culture ( / common practice ) in Japan , so not many people use it . It was quite expensive , but it feels good though ! So it 's OK . You may know that the highest mountain in Japan is Mt . North is a fascinaing mountain because it has many alpine plants in the summer time . I 've been into mountain climbing for 5 or 6 years . GCP means `` Global citizenship program `` . When I went home , Paster 's wife gave me a ride home . I thought that it would be convenient for me to go there by bicycle . We were confused and mad , but we had to obey the indication of Doctor F . The group that has the shortest time wins the championship . These are the examples in my textbook . I 'd really like to thank you for giving me a good opportunity . I had a great time . I had better finsh now and go to the bed . It is a practice course and shorter than a real golf course . Well , this post is not about the date of Hikoboshi and Orihime ; who are the couple of the Tanabata legend , but the one of my daughter and her boyfriend . He is a coffee beans buyer from a different company I am worried about tomorrow 's weather . Do you still remember me , the day it was raining ? First we were a little bit nervous to make conversation with each other But 30 minutes later , we talked a lot and became really really friendly like we were then . Almost all of our friends have already gotten married and had children . . ! We got information from the service desk . I tried to connect the internet , but I couldn ` t conect it . In conclusion , technology is useful for education , but we need to have the ability to select information . In my office restaurant , we can have lunch for 500yen . However they ca n't drink after a gig ( Because drunk driving is a crime in Japan ) . Finally I recommend a cello for you if you have a choice of a cello or a contrabass . The Web is Degenerating Actually , it 's given us uncountable benefits and an unbelievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on their cell phones and who are absorbed in the web for long hours , not to mention myself . The tachers are gentle and nice . There are lots of events this month , for example midterm examination , school excursion , and club activities sports day . Tret ' yakov 's Art Gallery is in Moscow . He liked Russian art , and he bought paintings from great Russian painters . This museum is named `` Tret ' yakov 's Art Gallery `` or , in Russian , `` Tret ' yakovskaya Galereya `` . Now the Tret ' yakov Art Gallery is a great museum in Moscow . They look at pictures by great Russian painters . Tret ' yakov 's Art Gallery has not only pictures and statues , it also has Russian culture and history , because these pictures are a part of Russian culture and history . I will add photos of Tret ' yakov 's Art Gallery . Anyway , today is my first day in London . Probably they will become sweet tomatoes : ) The younger sister , Bess , likes to travel all over the world , and got married to a second - rate ( horn ( trumpet ? ) ) player . So we should try to ( consider / think about ) the younger sister 's point of view . Bess , the younger sister , has to depend on her elder sister . If I have the opportunity , I would like to use slang words from now on . I would speak to my friends , `` Hey what 's up , dog ? `` If you have cool hat `` That 's hella cool `` If I get angry at my friends `` Hey stop trippin ' , dogs `` What would happen if I use those words to strangers ? Many people visit there . Still , I prayed for peace in disaster areas in Japan and all over the world . It was an intensity 3 quake . I want the webmaster to delete those pages , because the pages are not so useful for me . I 'm just a 19 - year - old college student , and I do n't think my abilities in my native language are any better than many other members from Japan here . What do you usually do whilst you 're on the train ? As you know , Indonesia is still developing itself as a country and I feel their enthusiasm every day by seeing people on the street and huge traffic jam . Everyone said things like , `` What is your name ? `` , `` Where are you from ? `` and , `` How long have you been here for ? `` among many other things . Most of members came from European countries such as Germany , Italy or Romania and they speak English really well . If we were in foreign countries , we would have to ask someone who is unknown to us something , for example , how to get something , like a vehicle , how to use stuff , or the ways to destinations . But how is it in your country ? The first exam , called `` the center exam `` , is held on January 15th . It was the first time that I used an Internet shopping service . My shop is a salad shop , therefore my lunch is always salad . I ate the salad fast , and when I opened the hamburger bag I enjoy the time when I study microbiology . San Francisco is a very exciting city and I 'm enjoying some activities here . I 'm lucky to experience the rare event . He did not know whether the post office was nearby . It 's hard to explain why I like rainy days . I believe that TV has reduced communication among families . I doubt whether the daily homework would help students Different clothes sometimes influence how people behave . I wish that this fundraiser will help to cheer on / support theTohoku people . The cost would be compared / comparable Despite resistance / resisting I learned the grammer ( preposition + ~ ing ) I 'm Russian but I actually now live in Moldova ( it is at the border with Ukraine ) . I now have an iPod touch , a Macbook , an iPhone , an iMac and an AppleTV and I am looking forward to the up coming new iPhone ( iPhone4S or iPhone 5 ) . Apple fans have to be buying their products again and again like me . She looked outside and said `` Snow ~ Snow `` with a very happy smile . And I 've realized that lassi , an Indian yogurt drink , is necessary for eating hot dishes . First of all , it requires a lot of exercise with mental control . I am going to learn how to use Photoshop . I will spend my time today looking around Photoshop . I would like to become good at it in a short time . I went back to my hometown for vacation . We can buy many prepared foods at the grocery store . More and more women are getting stronger and scarier than before and beat their husbands . I am waiting for your reply . Welcome to our club Welcome to our basketball club . We believe you will join a wonderful club . A strong person will become stronger . Everybody just thought that was a pretty strong earthquake so it would probably just cause a bigger tsunami than usual . Anyway , I learned several expressions and words which I 'd not been familiar with until today . My parents and I go to a worship service these days . English is difficult . I was reading a Japanese comic yesterday . In addition , I went to Ginkakuji , Kinkakuji , Kiyomizu temple , and so on . Then I had a delicious dinner near Kamo River : ) The delicious dinner was ' tofu ' . I lost my earring again . A is most adavantageous for them to enter nursery . I had a job interview in a Japanese restaurant . I have to go back to Japan in the middle of April to attend my sister 's wedding party . Today was the annual meeting for the presentation of research and development in / at my company . The distinctive yellow circles on the flecked lamp betrayed the lack of dusting . We prepared ourselves for the worst , because youth hostel food is n't renowned for it 's quality . > < Everyone looked suspicously at the fish and chips . I have three younger brothers , so I had dinner with them . But I think that I want to speak that language , so I want to study hard . He and I had a trouble today . I wish to memorize Qura ' an and remember all its words as I remember my name . I wish to publish a lot of books and become a famous author . Before I did that I was listening to many different Islamic nasheed by English speakers like Yusef Islam and Dawud Wharnsby . A magazine guided me to this fantastic web site , so I 'm in . I do n't know how many people read my diary , but I welcome you all who clicked my diary . I started writing in a diary on this site to practice English . I will write about a festival for children aged 35 , 7 . Today , only girls aged 37 participated in the festival and only boys aged 5 participated in the festival . Many families take photos of their childeren in professional photo studios during this festival . As she said , there were similar korean food , and it was the same in texture . About Yesterday I am a housewife . I 'm looking forward to seeing us graduate . I like taking pics and listenig to music . And sometime I draw people and animals . I 'm eating more vegetables . Could you have my written work in the language corrected ? My aim of this year is to study English . Today , I will go to one of the biggest shopping malls in Tokyo where I have lived for long time . I took a usual train . Then I sat next to foreign a girl . I excited for I could speak in English ! It 's no wonder that the Arabic people at the lower levels can hear English better than us - - they 've been living here so much longer ( than we have ) ! . Bob hit Tom . We enjoyed playing games and talking with our friends . 9 years ago I went to the United States as an exchange student . I 've already been to Osaka this summer so I ca n't travel too far again , however , I plan on visiting my friend 's house . I have to be careful not too spend too much money in the meantime Automatic translation is not accurate . . ? I 'm writing this entry by ( on a ) laptop on the train . When she came to the hospital she looked scared but stayed still . she replied that even her slightest move would stimulate it into rustling There were beautiful ocean view and cozy atmosphere in that . I think we can be more free , especially in Japan . Occasionally , I open windows even in winter day ! English in China is very important for my job , so I continue to learn it in my free time . I am so proud of myself because of my small diary in English , although it 's infantile . Recently , I have been very busy everyday . Then one Sunday , I was invited by my friend to go for a drive . I think my family will appreciate eating it every day . Personally , a friend is a person who makes you feel at ease , or make you feel at home . I 'm glad to join Lang - 8 ! ! I hope I can make some friends here . I was very happy yesterday , so I asked my room - mate , who was sitting nearby , to take a picture of me and my sweets ( but this picture let me look fat , haha ) . This surgery lasts only 10 minutes , but is it safe ? ? ) He is working for a Japanese company in Shanghai now . I am going to accompany my Mom to Japan or Cambodia and study TOEFL regularly and hard . Everybody came from different fields and backgrounds but they all have the same eagerness to learn new things and make breakthroughs inlife . So now I feel confused and frustrated . I heard it from my co - worker only today and I was so suprised because she heard it last Friday but it was the first time I had heard of it . Although before I could not reach my head to the floor while sitting down and opening my legs , now I can do that . * Video Grid - - similar to Picture Grid . English that Japanese high school students are studying is really grammatically difficult . I remembered almost all the English grammar , but still , it is sometimes difficult to tell where S ends and where V goes . But this word is actually difficult and it is weird if I use the word when I talk with friends or children , right ? Yay . . . I am so happy today , because my company got a big contract this morning . It 's big news for everyone in our company . It means we have things to do , and do n't need to be afraid we will be lalaid off , or forced to take unpaid leave . ^ ^ , At present , the global economy is so bad , so many people have been fired , so it 's helpful to get a big project in our company , ha ha ha ha It was slippery and dangerous . I 've continued to learn English , but my skills are n't looking to good . This surely includes me . because Japanese does not have words with those meanings . I experienced various things both good and bad . So they came to my house and celebrated the new year . Every year we watch Ekiden where collage students run long distance and pass a baton ( taski ) . my cousin 's children came to my home for the first time . Third , the author described a ultra marathon race that took place in a mountainous area in Mexico , where American top ultra marathon runners and Tarahumara runners competed against each other . I began writing a diary in English at this web site , and try to correct diaries written in Japanese . They looked like people who belong to karaoke clubs . These are quite expensive here in NZ . I usually ca n't afford to buy these things . Next month , I will make and launch a model rocket . My boss who has good sense of humor and is nice guy allows me to study something when I do n't have any job . I went to an English seminar last Saturday near Tokyo station . But that seminar was a good opportunity for me , as I was able to meet highly motivated people with a higher level of English than I . I will sit for a TOEIC TEST in November . Ran to the public bath I have girlfriend . She told me to let our relationship return back to when we were friends . I 've got to appreciate that . I work in big brewery in Poland as a chief technologist . I did n't think I will like the book 'cause romantic novels bored me There are ear - cleaing services in Japan . Cleaning your ears feels good . What happens if you do n't clean your ears ? The traditional japanese earpick has a top of cotton or Daruma . I printed out my diaries with your corrections . I 'm reviewing my diaries and studying English by reading many people 's corrections now ! ! ! I hope that I increase the range of my vocabulary and how to express myself . It was 9 p . m . when I arrived at the center of Bergen . I have had a speech disorder since when I was 3 - years - old . I am a salesman in spite of having a speaking problem . If I were not a stutterer , I would laugh at it . I did n't even think that I would become a salesman . I have met several people who overcame stuttering . They said that being old and having experience counts so I believe that I can get over it . I did n't feel bad at first . basically I lost attention easily if I had to read shakespeare right now , I would probably die instantly . And since I 'm a person who easily lets distractions get in my way , it 's good for me to learn how to use my time more efficiently . I have been studying Chinese on youtube . On 31 Dec , I ate Soba ( Japanese noodles ) and watched the Kouhaku song competition TV show . In an onsen - hotel housewives can relax to their heart 's content . It means they can escape not only from daily household chores , but also from having to do anything for their family . our food self - sufficiency rate is really low , compare with other country . If my sentences do n't make sense or are grammatically incorrect , please correct them . They had come from England , Canada and America . I was very nervous , However , my teacher is very strict with me and she always says to / tells me that the facial expression of my painted cherubs looks so weird that I have to repaint them . But I believe that if there are different forms , then there must be some ( We were able to listen to the sound of the waves while we soaked in the bathtub . ) ( Some friends talk about their secret stories , usually relating to love . ) ( I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the bathtub . ) This produces good harmony with white bread . Also , I like chocolate particularly the bitter kind . Are my feelings strange ? ? Turnitin is a detector for bad academic practice or plagiarism . If Turnitin warned you that your work is plagiarized , you must rephrase the sentences or reference where you borrowed otherpeople 's ideas . Otherwise , you will lose a lot of points and , to make matters worse , you will fail the course immediately . it is like a child 's drawing and I am so embarrassed . Actually , at first I wanted to study psychology as my major out of my hometown . As a result , I followed one of my best friends to the university that I 'm studying at now . Because the bang hung in my eyes . These clothes are a necessity but they are also a little expensive for me . Now , I look at my game collection and I ask my self how did I play all these games ? It only bleed for like five minutes or something but it was nothing bad . Now , I really want my wife to be a Japanese cartoon worshipper . As I had thought , she enthusiastically read it HAHA . and Bright is my English name . In our city , winter is often cold , with strong frost , snow storms and ice . Summer will give the possibility of travel , opening new picturesque corners of the motherland . 5 To raise my English skill from beginner 's level to intermediate . So I was researching the market related to these products , and customers . I 'm still continuing the research today . Sorry , my English is really wrong , I appreciated the support . I am writing my daily for the first time . Nowadays I study English for business . My business is being a salesman , importing products from the USA and Japan . And since I use a lot of my time to read English , I am not good as good at speaking English . So I wish to get my speaking ability up to scratch by writing on Lang - 8 daily . I talked to my high school friend about school life . Saturday 16th , Sunday 17th Most Japanese students do not go to school on Saturday but this year I will . I called her back wondering what had happened . Due to her mischief , I enjoyed a conversation with my old friend . Recently I 've had head and stomach - aches . And I think people can move much more easily from country to country than in Japan because Japan is an island . Two celebrities committed suicide last week . Amazing goal achievement I am busy because I have to hold a public hearing for my doctrinal degree on Friday . To achieve this , I need to efficiently take breaks . MUSIC is one of the my lifelines to survival in these stressful days . I aired out my ' zabuton ' because the weather was fine . She wrote her feelings and apologized in it . I took part in an English Speech Contest yesterday . It had beautiful and soft sands and a few waves probably made by the breeze . It totally looked like a small seashore . The lights from each house shone brilliant and conjured up a feeling of nostalgia for a fleeting moment . ( It takes you 7 years to become perfect at the piano . ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school and learn the basics or not even start . : When I 'm coming in , we would live for the Lakers or the Sixers ? : No , I know what your first basketball game ever , and I know its pretty exciting , but when it 's all said and done the season would n't be long enough . In the beginning , I guessed that 1000 people would register . We met in the university classroom . Finally , Joseph , a friend of mine here at lang8 , corrected it . : ) Since then I 'm afraid of other people , especially their eyes and words . There were several kinds of rubber duckies in a basket . This site is a little different . . . Later , I saw a video on youtube . Despite this , the groom seems very calm and polite . The cow is an old friend of the old man , who has raised the cow since it was very young . So I only learnt grammar , reading , writing , but not speaking . It helps us improve the ability to relate or summarize something in ways that are easy to understand . Anyway , I have to say that learning anything is not a piece of cake but our passion will help us improve easier and sooner ! ! ! Yesterday , I went to work . I am a process engineer in a foreign - funded company , but my job is training the operators in how operate the machines and maintain them . I dream about doing a great job , I dream I am a millionaire , but fantasy is pretty and the real word is cruel . The Internet helps us communicate with different people . That 's what some Japanese had done while Japan was invading Asian Countries when Japan was once under Imperialism rule . When I read the sentences , my sleeping head seemed to awake suddenly . Instantly , the whole world disappears and all I can see is the light with all the colours . Today was great though I still felt like a isolated knight except , when I was talking to this girl who was really sweet who taught me the words `` serendipity and kismet . `` I do n't understand why we must not talk on our mobile phones on trains . Most of the members in Genshiken are male . Because I like the French bread most of all . I want to eat it soon , but I 'm waiting to eat it till today 's dinner . . . ( > - < ) But I have to pass the school exam which has an interview and a resume before IELTS . They will become important people to me in the future because they can change Japanese medical practices , by thinking about Japan objectively . I 'm looking forward to seeing old friends in this ceremony . Even if things were not wrong and made sense , I would still correct things if things sounded unnatural . But since becoming friendly with foreign people , I 've come to realise ( noticed / discovered ) that bending the truth is more common in Korean cultures than other cultures . I went to the gym to play basket ball . I 'm from china , I can speak chinase ! These days , I have been busy writing 2 kinds of graduation thesis ( because I belong to 2 kinds of seminars . . . ) , but these emails made me feel a little refreshed : ) We had a ferewell party for the overseas student yesterday . So today , we 're going to renew our expired passports . Of course , I am allowed to sleep if nothing has happened . They are very useful and fun ! ! I already have three articles ^ ^ My sister highly recommended a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about the storyline because there was a naive guy and a weird guy . The naive guy acted in Death Note and it 's quite different from that movie . His hairstyle was so funny that I could n't help but laugh at it . I ( like to ) stay home and take it easy without doing anything Celebrate the first of I am going to make pasta with tomato - sauce and bacon and the cold potato potage soupe for her . I think that everything will go well . I just came back from my trip to Mui Ne , which is in the Binh Thuan province . It was in a restaurant , and there were 7 people present : myself , my parents , my husband , his parents and a go - between . I think my English is getting better and one day hope to speak English fluently . ^ ^ My favorite idol commit suicide . My hobbies are snowboarding , traveling , and studying foreign languages , now I study English and Spanish . If you are learning Japanese , I will help you . but I prefer a whole one with its insides included . I garnish saury with some grated Japanese white radish , Sometimes cultural differences caused misunderstandings . The words I used were misunderstood , but it told ( taught ? ) me a lot of things , such as how important it is to understand the background of the language . I went to school and learned about English Education . Recently , she went to hospital and was given a check up , and was diagnosed with tubeculosis . Tokyo prefecture and the office that she belongs to started to move for the purpose of informing many people who might have caught tuberculosis from her so that they go to hospital and are given a check up . Celebrities have many chances to communicate with many people , so I think that they should go to hospotal and be checked up often . I could n't understand why it was not working , and I asked to my husband for help So , will who is an American or someone who can speak English please correct this entry ? I started this entry without any ideas to write about . The weather ? Well , today the sun decided to show all of his strength and the result was a really hot day . Maybe he picked a fight with the poor clouds and banned them from the sky . Okay , I just finished talking about weather . . . I know that it 's only 9 pm but today was a really tiring day and I 'm really sleepy ( That 's why my post is so silly and has almost no sense at all . I do n't know what I will say here , I just want learn more about English and at the same time make friends with whom I can communicate and pratice the language . The highway in the capital was so packed that we kept moving really slow for an hour . I am 19 years old girl working in advertising agency . My position is a secretary . But I am going to change my job because the financial crisis happens . This evening , I watched a movie called `` This is it `` which is composed of footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London scheduled in July . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tuna , and many other ingredients that were available in my home . we have a long holiday So it was too late to get a driver 's licence during this break . When I saw that the patient in the show could n't wear a jacket correctly ( she put it on inside out ) , I was astonished . I 'm so nervous and I feel like there 's butterflies in my stomach . I opened an e - mail from my friend , It was about ' Facebook ' ! Last January 17th was the 15th anniversary of the Great Hanshin Earthquake in 1995 . Kobe is an urban city and famous for fashion and nice foods . Many people were crushed and burned to death under the rubble of houses . I am going to keep writing English diaries . I hope my English gets better and better ! people all over the world have to help each other . we have to help each other by using English in the world . Many typical Japanese companies have new years vacation during the first three days of January . Today was n't a special day . She picked it up and brought it to their house to eat . Wollen Sie hierher kommen ? / Wollen Sie herkommen ? My friend who used to lived in Kitakyushu created this game . Each of my uncles and aunts has a son and a daughter except for my youngest uncle . By the way , I wanna know about cities in foreign countries . 4 ) Each compartment has priority seating for eldery people , pregnant mothers and handicapped people . I think that it depends on each country 's culture and history , which numbers are considered unlucky ( They studied calculating and memorizing instead , though . ) I thought that he was very kind . Then I 'm very surprised by the price of the vegetables . For example , a head of iceberg lettuce is 295 yen , a cabbage is 299 yen , and a tomato is 199 yen ! ! I want to speak It very well and make new friends also . most of them have thier own jobs and they practice soccer in their off time , nights and holidays . Last month , the government gave a medal to them for their glorious match in the Women 's World Cup . My throat is still swollen . Tomorrow is mother 's day . When we are young mom takes good care of us , but as we grow up , mom becomes old , and some of us do not treat their mother very well . Now I just want to say everyone of us should take good care of our mothers ! Tomorrow we must tell our mother `` I love you , Mom ! `` I hope every mother in the world will be happy everyday ! I have lots of friends here , but they are either Singaporean or from other countries whose first language is n't English . So I want to have opportunities to talk to Caucasian people in order to improve my pronunciation . Today my business partners invited me for lunch . My favorite season is summer . Afterwards my friend said he wanted to see Avatar , so we went to a movie theatre and saw Avatar . I was really shocked and asked him why he had never spoken to me in that language before . Why do so many people come up to me these days and tell me their ideas ? ^ ^ During the Christmas season , I was too busy to enjoy the festive feeling . Actually , I really like this drama a lot , so I made korean subtitles for the episodes . If you have The time , I recommend you to watch that drama . ! I helped her cut paper for a long time and then we went home but English speaks to me and says `` Vitaly you are too stupid `` Yesterday , I went to Ang Mo Kio to meet a friend . We are language exchange partners . At first , I would only write a journal entry in English on lang - 8 , then I wrote it down on my notebook after someone corrected it . Well , my priority now is English , because next year I 'll take the university entrance exam . I chose English as my foreign language , but I 'm falling in love with Japanese ! Naturally , I will correct your Japanese too . I hope I can enjoy every class during the second semester . Even if I do n't have anything to write , I should write . His eyes always look sad . Topic : It has recently been anounced that a new restaurant may be built in your neighborhood . Moreover , if the meals prepared by this restauranat are tasty , you can treat your guests to a meal at your favorite restaurant . I should go there early because I am afraid of a traffic jam . I think she has a lot of things to tell about about her interview . and we all felt disappointed that we could n't have the ceremony . So we decided to go to the university together another day . However , I often switch the opposite way of the function I want . I often get angry with myself , when I go to get the coffee . I find nothing , and I have to do all over again . One day my throat was sore . Now I ca n't breath through my nose . By the way , I watch the TV drama `` soredemo bokuwa ikiteyuku `` . Quarelling severely with my mother , working for the whole day till 5 pm . I played tennis with my friends . We played tennis together . In the afternoon , we 'll take the bus to the Night Safari park and be there until 10 : 30PM . I do n't know whether my recordings sound strange because of that , or because of my pronunciation . . . Some residents could n't understand how important it is for us to separate garbage and recyclable wastes . The garbage in the recyclable waste container had rotted and attracted flies . One of the apartment 's maintenance personnel came to fix the problem promptly . My hobbies are playing teniss , listening music and spekaing english in a compettitive debate . If I had a lot of money , I would travel to an other country for the summer . ^ ^ Polamalu tackled by hair Taiyaki is a Japanese famous confectionary . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe Chinese food , maybe Japanese food or maybe other Asian food ! ! Since they knew I love reggae music , they took me to a reggae bar . Every time when a disaster happenes , many politicians would blame each other for it . However , they do nothing about it He told me he was surprised with his doctor 's comment . The hamster arrived at my house in a sealed box . I thought chewchan was a male . My friend did n't tell me otherwise . He is [ He 's ] one of my best friends . Here / This is a kind of radio program that he made . Outside is heavy snowing , although it is just beginning of December . and I prefer to see a variety of clouds in the blue sky . I would like to master English . My dream is to see movies in English without subtitles and make many friends with foreigners . I wanted to buy an American brand , but they did n't have any . I have n't used Dreamweaver for half a year , so it was hard to remember how to use it . However At the office , I ca n't talk to anyone in English on Skype . Besides , when I get to my house for the work , it is already midnight in the United States . I 'm sure my speaking level has been going down . . . . Even though I know I paid a lot of money to take the class , after I lose interest in studying at school , I do n't feel like going to school at all . Although it seems like a kind of poison , alcohol has to be a medicine . Some people believe that drinking alcohol is not good for their health . According to an health research institute , drinking has a positive effect on health . My parents and my grandma were disappointed in my failure . I am very worried . There will fewer friends in the university , because some of them have alreay grauated . Thank you for reading my journal . I traveled to the western part of Korea , Kanghwa Island last weekend . I 'm just a little nervous . My neighbor Department 's people went on a business trip today , So My Department 's people have a little free time . I 'm helpless from secondhand smoking . It was difficult to understand what they said because they were speaking English with a British accent . Today I 'm talking about an Italian restaurant . . . . . . . I went to Saizeriya , an Italian restaurant , with my friends , do you know it ? It 's very cheap and delicious . For example , Milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , the president of Saizeriya , is very clever because he always tries to keep the prices down and make the food more delicious . He has his own farms and grows thevegetables they use . Besides , from the farm to each restaurants , the vegetables are kept at4 degrees Cbecause the vegetables canretain theirfreshness in 4 degrees . He tries so many things to serve cheap dishes and be more delicious ! I am thinking about giving her a hand blender I did n't know why , so we stopped eating , and I tried to make her sleep . I listened to his newest album ' the pursuit ' many times . We drank a lot of alcohol , talked , and danced ! ! ! His work requires him to stand up for long periods and carry heavy water - filled pots from the sink to the gas oven many times a day to prepare for the restaurant opening . The next day , he entered a smaller hospital . Also I want to increase my English vocabulary . I usually go to the school 20 minutes or so before the class starts . But these days , I feel relaxed and manage to communicate with them . My daughter 's graduation ceremony from university was postponed . We enjoyed talking , having some snacks and drinks while laughing out a lot . Soy bean milk is not only water but also it 's useful for your body because it can help to reduce a collateral in the blood , reduce the risk of cancer , reduce the risk of heart disease . I will go to the shopping mall because it is cooler than my room . I talked with an American guy and a Filipina whom I met here on Lang - 8 using Skype yesterday . But the citizens ( residents ? ) did n't want to abandon the school . The school parking lot is filled with cars decorated with a Kei - on character . Luckily my mom lives near the place , so I parked my car , went down to the river bank and spread a tarp over a good spot . Before I send an e - mail we have to show my e - mail draft to our boss to check it . He told me there were two verbs in my sentence . Anyway I still want to make full use of this website and keep practicing writing here . Temperature was n't so high , but it was very humid . Certainly , it is very dangerous , because Japan rely on nuclear power for many part of electric supply . So younger people in Japan should have more interest in these problem or What do you think about a nuclear power plant ? I must study English harder ! ! If I could play on his team with him , I would assist him . I received the glasses from there . We used to study at the same school together for a long time . She is two years older than me . So I that 's how I spent my time in the afternoon today . I am going to write my diary in English to practice my skills The title is `` CASE CLOSED `` , which is a Japanese story . The true love between a vampire and a human really moves me and I always look forward to watching the `` New moon `` . So I decided to read the book , but its contents are a little different from the movie . I found it in two articles , but each sentence is different from the other one , so I ca n't understand how to use it exactly . I wondered whether or not I should write about it , but I deciced to do so because I just want someone to listen to it . I could n't catch what he said completely , but he told another person with a laugh , `` Wow , someone is talking Japanese ! `` I earn my pocket money by doing part - time jobs . So I will write my diary with `` Look `` or `` Look like `` as I learned them . Shihomu , my friend from Japan , even told me `` I thought you looked Japanese when I first saw you `` I want more time to practice skateboarding . ( whoops ! ) Hello . My name is Kim Dong Hyuk . However , I do n't like Harry Potter . I think Harry Potter is childish . I feel like many reports and presentations are just waiting for me . An exhibition of the works of Fernando Botero has been on view there since July . The first exhibition I voluntarily went to in order to appreciate art works , other than a mandatory school field trip , was in 1999 . In addition , there was the argument `` after the plan , Korean casinos will go bankrupt , and Koreans will be jobless because 70 % of the casinos ' customers are Japanese . `` It was really fun , but I needed to get drunk and also practice some dancing . Ofcourse he is the most popular singer ? in the world . and thanks a lot that you taught me anything . I like watching movies , especially movies like `` THE DEVIL wears PRADA `` . many foreigners know very difficult kanji , including some of the ones even most of the japanese would n't know . I fell asleep twice or more in an hour . 2 : To remove the strong bitterness , boil them or put them in cold water for 10 minutes . I seasoned them with salt and pepper . It is a rental apartment , the rent of which is over 1000 dollars per month . I never think that let it snow in my region , but it makes me smile . I saw the rainbow on the way to the English speaking society at 5 : 30 p . m . yesterday . Please correct some sentences . She grew more than I expected because she is a mix of govern : In ancient times , Rome governed all the known world . bend : I will not bend my opinion even though all the people here oppose it . LOL , I was the superman of the moment ! and creates a sustainable future on its own accord . Hi , it 's my first text on this page and I hope that this page will help me by improving my English . You must control the robot arm with the two buttons : `` forward `` , `` rightward `` on the control panel . I 'm so happy have this platform that I can learn language on . My English is not good , so I want have other people help me . I can teach you Chinese , and we can help each other . Since President Obama seems to be loosing his `` magic touch / magical powers , `` I am not surprised by the outcome . But I think this music clip is good entertainment and a song that gives me the impression `` This is Michael Jackson `` . according to yesterday ` s translation , boss corrected them himself and praised me for a good job . But , I ca n't write natural sentences in English or speak English well . English as a second language Frustration is always followed by the goal to be perfect , particularly in learning a language where there is no end in this field . Astronomical sums of money has been invested on English education in Korea . I dont 't have the instinct or the intuition for the English language . `` I guess that 's because I have n't had much ( a lot of ) opportunity to make small talk . my hoby is sports and I love many sports so I 'm massule . Oops , I 'm a Korean guy . We count numbers starting from the number one and the person who says the number thirtywill be the loser . Recently , I 'm learning not only jazz , but also hip - hop and rock . I will study English everyday hard ! I registered at this site immediately . First , I made Korean soup which is for birthday soup . Today was not anyone 's birthday though , but it tastes great ! ! I decided to practice English writing in this site from today on . so I decided to take a bike ride with my friend but when I went to pick up my friend it was still raining , Now it 's sunny again , Would you help proofread these sentences ? I bought stickers - these are for you ! By the way , the 31st of October is Halloween ~ ! ! If you have free time , I would like to exchange Halloween goods . For example , people used to live in Japanese - style homes , but with the modernization of buildings , these types of structures are becoming things of the past . The vast amount of vocabulary is making me confused and frustrated . Do you recognize my weaknesses in my journals ? At first I could n't believe whether or not the news was true . this weather makes me really depressed ! ! ! the internet , junk food and smoking have been my life . Her strongest point was that I ruin my health by not eating eggs and dairy products but when my brother poisons himself it 's something where nobody could do anything about it . She is just too stubborn , but so am I . . . I think I made mistakeson all the exercises and I 'm going to get 3 ( a really bad mark D : ) . Of course , there are people who are very frank and never diplomatic . If you have an opposing viewpoint or any advice , please tell me . ( ^ ^ ) I like to play guitar and sing , but I ca n't practice all the time because I work in System of Engineering . I made chicken cutlets for lunch today . Today , I am going to tell you how to make healthy chicken cutlets ! Today 's lunch was very yummy . One more thing , February second is Ezaki - san 's birthday . I wasn ` t able to focus during the listening part , I don ` t think I will get a good score . Recently , after I get home , almost all of the things I do are doable while sitting . I know exercise keeps not only my body sharp but also my mind . I had studied English to enter college , but my English is poor . I will wash it until noon . We would like to hand our property `` children 's songs `` down to the next generation . However I think they are more attractive than Tokyo . Anyway , we enjoyed the beautifully displayeddishes and scenery of the countryside . He might be starved ! The A - course ( which we ordered ) Grilled octopuses with herb . Avocado and fruit cock - tail . especially new recruits who recently graduated from college . I 'm looking forward to it ! ! ! In the nursery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . No food , no electric , no gasoline . . . I 'm here ; because , my English is not so good . . Actually , in my daily life I do n't have to use English ; but , my father lives in California , so I want to work on my English . Anyone , please help me and be my friend . It is for my illustation project and the other style is like a manga for business on a web gallery . I will have a lot of pictures to show you . . I have to wake up early because of the heavy load of my job . Because I sit a lot in front of my desk , I go out for lunch with colleagues whenever I can . I enjoy working and I always appreciate the opportunity to work with I do n't eat a lot because I am supposedly on a diet , although the diet seems to never really succeed . If you meet people you have bad memories of , and you have not kept in touch for years , My favorite English words are `` lovely `` and `` brilliant `` because I like the `` L `` sound . Sometimes I have to write business sentences in English , but I do n't have the confidence that it would be written correctly . However , I can manage to communicate , so no one tell me whether the sentence is correct English or not . When I was a college student , I majored in Danish language and society . Japanese has only 5 vowels so 17 vowels is a surprising amount . In the end , my father was able to arrive at the hospital in time to be present for my birth . I wo n't forget white paudry sands , palm trees , cool breezes , and the beautiful light emerald green sea . I woke up this morning with a little stuffy nose . . . one of my friends to explain this something to me , she told me that she also did n't understand it I watched the last season yesterday . ( It 's called `` Doyou ushinohi `` ) However I lack money to buy it . They are a little bit expensive for me . . . . And I know they are disgusted by that . Well , when you were a little toddler , you probably watched some cartoons on the telly . I 'm confident I 'll pass IELTS because you have taught me Aussie English so I 'll study harder than you to speak english well . I enjoyed chatting with my friends in my college . I felt flight attendants are very tactful . As such , I feel so stressed out after school . After studying about 30 minutes I start to feel sleepy . so effectively ! Today I watched an ice cream truck pass my house . ( Totonto Lake Shore west ) I know that sometimes they do n't ship an item with insurance or tracking number . I sent a message to the seller . Today , while I was taking the bus to the place where I study Japanese at , I saw someone offering their seat to an elderly person . Coincidentally , there was an elderly person standing next to me . By the way , I work for the company in Tokyo and our headquarters is in the United states . Grammatically , is it a conjunction ? Yippie ! ! Vocabulary : I do n't like rainy days . In this photo the Yukata features `` Pika - chuu `` , and is designed for the children . I recognized abdominal walls , that were cut open and the bowels came out . To be surprised , she told me that many peoples was arrested by false charge and killed in the communism age . Cherry blossoms Another friend is taking maternity leave . She is looking for an interesting job and applying to many companies . I 've decided to try writing a diary in english from now on . These days , I really want to make friends with people from other countries . I 've gotten talking out of the way , I want to leran english , and make foreign friends . I 'm going to give a farewell party tomorrow . I chose the Dopamine key chain ! This trip will help me forget about everything that happens at work . For example , He always smoked in the living room even though I told him that I 'm a nonsmoker and I told him to smoke outside . A Japanese person posted a comment in Japanese which basically said `` I think your journal is very nice , but I ca n't understand why people made so many corrections to your journal . When it comes to crimes , I think mass media play an important role to inform citizens of what 's happening on a nationwide level in terms of violent crime . Koyasan is very famous as a place of a type of Buddhism , called SHINGONSYU . I invited my foreign friends to my town . My dream is to run a youth hostel in my town and I hope that many foreign people will visit my home town . How to define far and near ? It was a challenge , my mom wanted to watch TV and write something down at the same time . The eyeballs ca n't balance as well as usual . People always say : ' The eyes are the windows of the soul ' . In 2007 , I went to America for 2 weeks by myself . Maybe I do n't need a boyfriend . I hate the idea of marriage . My father and my mother do n't like each other . Persoanlly , they affect my opinion about marriage . Some day I will change them to a ceramic and plastic mixture later . . . . more and more companies tend to value their employees ' abilities or personalities over their academic qualifications . Just taking classesand then graduating would not help themgain knowledge and improve their skills . Therefore , In my opinion salary should be paid for the results of daily work such as : one 's performance and the amount of benefit they have brought to their workplaces . So residents are required to help each other and participant in committees . There are many committee , such as the Representive Committee , the Bath Committee , and the Welfare Committee . The members of the committee are engineering students , but they are amateurs . Because of that , sometimes they ca n't deal with problems , and then the internet connection is cut . Unfortunately , some members of the network committee graduated last month . Disconnections from the Internet have happened more than ever this month . I tied it with a ribbon and painted it pink . Therefore I ate a salad so as not to skimp on vegetables . I ca n't give up on communicating with him and all English speaking people yet . It 's also a good experience which can arouse my interest in languages and at the same time help other people . ( interest was misspelt ) I am willing to correct those articles in Traditional Chinese but Simplified Chinese seems to prevail . ( Traditional was misspelt ) Although the grammar and usages are the same , I am wondering if my corrections are easily understood . because I want to speak English for business . I organise a loudrock community website in Japan . So I 'm not familiar with programing . And there were lots of customers ! : D hehe Every costumer seemed to love our shop ! : ) Oh , thank you God , You saved me . `` Right after expressing my thanks to God , I fell on the ground again . I still remember that . Seems I was ready not to believe anybody and anything what might happen on this day . We also call that twelve years `` one period `` . And if you were born in the year when the animal symbol was a rabbit , you are called a rabbit person . If you want to know more , please write to me . People want their lives to be special and want to live differently than others . her husband is cool and a kind man . How to remember more words and use them correctly Although I do n't think that learning history was the waste of my life , I should have majored in English . I know that she particularly likes Japanese chocolates . My wife hasbeen having a child - care leave , but she went back to her job in February , so we have had less time to take care of children than before . Now that I have completed some my tasks , I wish I could come to write my journal and proofread my Lang8 friends ' journal like before . Apparently I threw it away when I was sleeping uncomfotably because I had a stuffy nose . This spring , Japan is very hot in comparison with last year . It was because one of the students had complained to me about the content and direction of my class . Maybe it 's their culture , so if you want to go to Hong Kong then you had better not mind it . Yesterday , the minister announced that maybe a blackout will occur . When I 'm at work there is not much to do so I pick up my notebook and start practicing my hiragana / katakana . I hope that someday I can be good so that I can go to Japan to sharpen my skills . My life dream is to become an international businessman and to be working all over the world , but right now it seems like such a dream . So much like a dream that I often feel down and surpassed for such a dream I have . So getting back to the main point , after I finished my work at my father 's place I took my computer and watched some anime . Also , if you are learning Korean , let 's be friends with each other . Please tell me your answer . In Japan most people are punctual and honest . I also want to watch a baseball game at Yankee Stadium since I am a big fan of baseball . Even if my brain was not totally in its place , I was still able to do a 20 Japanese character study instead of the required 30 . Colorado Rapids won their first title of the MLS on the same day . The audience at Nagoya was comprised of 12650 spectators , and Colorado had 21700 spectators . I study Italian too , I feel this language fresh because I have studied Italian since three months ago . This is the first entry of my diary . `` Do you speak English ? `` Thanks to everyone who edits this . I finished reading `` How Starbucks Saved My Life `` today . He started cleaning the store toilet and bagan to learn valuable things through his job , and he finally found his true happiness in his new job and unfamiliar environment . Good feedback helps students to improve . How different are feedback and assessment in English ? As you might know , it 's not as easy as it seems to keep writing diary entries continuously . But in these free days I had also done hard for my English , even some of the days I had to prepare to my exams . Did I just make an excuse not to do something ? I 'm a bit hungry . I did not arrange a costume for the party . But , I am double majoring in mechanical ( I think it should be English literature or English education , right ? ) Look at this clip , please : D My father is conservative . He is not so agreeable . My little brother is active . He likes playing soccer . Blue tincture curtains are popular . I teach Physics , Ana teaches Japanese , Ega teaches Indonesian , and Yanti teaches Music . At the beginning of February , some friends of mine also came to visit Tanzania , and we traveled Zanzibar island , which is the best place in Tanzania to rest ( or relax ) . So I decided to use my vacation ( only 5days including Sat and Sun . ) for English lessons ! Since I could n't understand anything , I do n't know what should I do during class . Someday I want to travel around the world . I stayed at home with my nephews , and one of my nephews used my telephone to record the video . Since I want to be an exchange student in Sweden , I must improve my spoken English . This afternoon , I used a subway to go to the centre of my city . I wonder if public manners for young girls are changing . I live in the dorm and I have four roommates . It takes about 20 minutes by car . Therefore , I have to ask someone who has car to take us to the grocery store if we need some fresh produce ( another word for vegetables , fruits and the such ) or meat . His concert was very fun , we enjoyed listening to his songs . Also , we ate a many kinds of food , for example yakisoba , tamasen , bananas covered with chocolate , etc . We enjoyed the school festival . Because I mainly like Rock music . Let 's go to the movie theatre `` And for just 30 minutes . Well , I do n't get tooo much , but it 's still a good deal : D I did n't exercise last week since my job training . It is straight and has wide a sidewalk , then I saw some people who enjoyed walking or running with their dogs . Birds were singing and flowers bloomed with morning dew . I 've been reading the Wizard of Oz . Does it mean that Dorothy finally caught Toto ? I got myself into net surfing . I hate people who laugh at others who are trying to achieve something difficult `` . Although my English course has ended a long time ago , I did n't want to stop learning it . he really nice sometimes when I have a problem I really like to ask him about it because he can help me solve the problem . I looked youtube for a long time about the animals and fish and I felt happy watching it . Now , mobile - sites are important for E - commerce in Japan . Learning another language is difficult for me . So I studied English for three or four hours a day since I started learning English . Competing with each other and achieving goals together will sharpen / shape their skills and bring beneficial effects to their learning . Generally , it appears that online learning is more advanced and a fruitful tool for studying . Istanbul is split by the Bosporus . Recently , I have neglected studying . Test week However I will go there someday ! I studied how to answer CET - 6 questions lately and came to realize that English is a more subtle language than I ever imagined ~ ^ _ ^ ~ She said `` Just listening or writing would n't work . I 'm writing this with a dictionary , but I wish I could write without it ! Yesterday , I tried making silver jewelry from silver clay . The game remained scoreless for 90 minutes and went into 30 minutes overtime . Japan finally scored a goal with a beautiful shot to end the overtime and won the game . I 'm a big fan of soccer , and I belonged to a soccer club all the way from elementary school to high school . Japan is now the champion of Asia . After coming to Singapore , I have been lonely becauseI have no friends in Singapore . Praying everyday was getting harder but I realized the heart of the Lord . Nowadays , since Kaiten - Zushi are spread all over Japan , we can eat Nigiri - Zushi at a reasonable price . There was a terrible traffic jam . Moskow very nice city , but here dirty air , therefore in future I want live in the country or abroad . I thought it would be a nice opportunity to improve my English writing skills and make good friends . But Karina , the Arina 's friend , was even more cute and beautiful to me ! That evening , Kostia did n't succeed with his beloved Arina , unfortunately , he was too shy and confused . I will try to introduce you to the story of AVATAR briefly tomorrow . I 'm a happy girl , because there are many kind and good people around me . Today , I was a couple of minutes late to school because I got up later than usual . I have started to write a diary in english . Last month I took the `` Tourism English Proficiency Test `` and passed it ! We can go anywhere without a car . Ironically a big amount of money kept in the bank accounts are pulled back into society again by the cheaters ( OR swindlers ) . After I graduated from the university as a mathematician , I decided to change my life and now I am doing my best to become a student of Prague University I next year . I will try to keep writing this dairy using a lot of words in the future . It was heavy , even without french fries . The double - decker hamburger was enough to fill my stomach till the evening . Perhaps people find that it 's more healthy to eat natural food and keep a healthy lifestyle rather than eating processed health food and using health - related products so that they are no longer going to buy any health - related products . So I like to communicate with people ; - ) I 'm a pacifist , open - minded , friendly and unique . I 'm person who loves nature and health . My daughter is two years old . I took so much time to find the appropriate word , sometimes without ever even finding it . It is a custom that we go back to our parents ' home for New Years in Japan . because I had a test in Chinese . Fortunately , the weather was also fantastic ! I 'm going to go to a drinking party today . We chose one and wrote the resume while imagining if I applied for the job . But I want to be an early bird so I 'm trying to wake up earlier than usual ( although I could n't make it this morning ) . I thought Puff Daddy ( Do you call him that ? He is going to try out for a team for the first time . The exams are held in November . Hello , welcome to my home in lang - 8 . First of all , I will introduce myself . I am a 21 year old Chinese university student . ( Such as in ) words or grammar and so on . I will thank you very much . English is so difficult . English is that I do not know how to remember new grammar and But it feels very comfortable for me . In my laziness , I only watched funny films and cartoons , I bet you will get a lot of chocolate from your students . A clock , a cute notebook , a big mirror , a keyholder , hair accessories and an English language picture book ! I 've been playing a game made by another country recently . But I have n't improved my speaking or writing yet . But I had to cancel my trip because of Swine Flu . This is his diagnosis . The first day of language school I think mastering our mother tongue is completed when we are very young . Of course we would n't have had such a big vocabulary back then . Have you ever been confused about using prepositions ? Maybe you already knew what preposition you should put in a sentence much earlier than you can remember . we stayed for a long time . Brain exercise for me , lolz : ) My second step is to look for internet websites that easlily teaches writting English dairies . Last Saturday I went to the beach called `` The Beautiful Bay . `` The sea was really beautiful . Listening to the sound of the waves . Unfortunately , the Beautiful Bay will not be accessible to everyone anymore , because it was constructed by the hotel . The beach will belong only to the hotel owner . The beautiful sea will disappear . He was paying attention to the cars but he was n't watching out for the bikes and then he was across there was a loud sound from the honking horns . On the other hand , compared to him , Nowtizki is not as speedy as Rose , but his fadeaway shot where he shoots while jumping backwards is unstoppable . I am dizzy and I feel down . I often say `` pardon , please ? `` Now I 'm studying English vocabulary , but I ca n't memorize anything because I immediately become sleepy . I think that using prepositions is difficult . I work at a convenience store near my house , on Saturday and Sunday . Many people come in who behave differently . That is one of the reasons I work there . I stopped writing my diary for a few months . But I decided to start writing on lang - 8 every day . In fact , I wanted to watch ' Avatar ' , but it was n't in theaters anymore . Guys , today is Christmas day , merry Christmas day , a happyday , enjoy it . It is called `` Gay referee `` . I could n't help laughing when I first saw this . Friend 's father : `` What is your name ? `` I was very surprised . Lol . My friend 's father was a gentleman like British nobles . Last night I ate my favourite foods which are sashimi and BBQ . ( r ) I thought that learning Japanese is so difficult for native English speakers but as I read their journals , I thought they have seriously been learning Japanese . Then , she emailed me back in response . I have been living in Los Angeles for three months already , but my English is still poor . The writer is a psychologist , he tried to explain about happiness and good life . He wrote the Buddhist way and how to take on the meditation , he told that the Buddihist need the faith to keep meditating . I think that most English learners dislike grammar which is essential for study and to understand well when speaking English fluently . I have already noticed the reason why Japanese people are n't eager to speak English in front of Native Speakers . It 's been almost two and half years since I moved to Okinawa . One of the things is MOAI which is similar to privatized insurance coverage systems in other countries but somewhat different . I prepared to leave for the station and slipped my shoes on in a hurry . Even being happy only for today is not always so easy , so how can we be sure we would be happy tomorrow or even in the future ? He taught me some English words today . `` Consult dictionary `` is just serious . I would like to talk to him using the word that he taught me today . I have looked up the word , you taught , in the dictionary . Of course I went to vote for the mayoral election . At night , the next - door neighbor was always annoying me because he played games with his friends so it was annoying but he disappeared recently . My first writing famous as the place name of a certain Japanese region since the beginning of the Kamakura era . I 'm a university student in Japan and want to major in control theory . On certain web pages that we can talk using each others language , I liked chatting with English speakers . If you have any good ideas can you recommend something to me . Hello , my wonderful friends . I saw my friend on MSN and she asked me to go somewhere with her . I think she wants to go to the club . But evidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporeans hang out with Singaporeans , Indonesians ( stay ) with Indonesians , and Vietnamese ( play ) with Vietnamese . And we are trying to figure out the most efficient methods to improve our speaking . SO , good luck for us . ' ' The time when you think it 's late is perfect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' Right now , I 'm going to my parent 's house to join an oyster party ! But I hardly speak or hear english , and I am not good at reading or writing . Fortunately there is a box office or ticket outlet in my neighborhood , and it 's so close that it only takes me 5 minutes to walk there . Even though it was quite late at night , we discussed lots of things such as religion , our national spirit , and ourselves as well . Hi Everyone ! We bow to our ancestors with the foods arranged on the table . My favorite story is `` A Study in Scarlet `` . I was surprised byHolmes ` s reasoning skill . I never thought terrorist suicide attacks were happening in the US . The terrorist turned airplanes into missiles and destroyed not only the world trade centre but also other important American facilities . I think the most difficult thing about English for most Japanese is pronunciation . We Japanese start to study English from junior high school ( when we 're 12 years old , but now it can start even earlier ) because actual native speakers ca n't understand badly pronounced English like I do . . . The difference between ' wrong ' and ' long ' is the pronunciation of the first syllable . I read books about some scholar 's theories and tried to understand the rules , `` When you pronounce ' th ' , your tongue must be between your teeth `` something like that . I actually struggled to find a correspondence spelling and pronunciation . She corrected me and taught me English and that was what I really wanted . My grammar is bad so my article is terrible . My English teacher always wants me to write an English composition , but I am scared about it . My favorite foods are cabbage and cheese . if you want to write a Japanese message , you will send a message or comments . Memories of a Trip . It says that this color gives impression of cowardice . They are very beautiful . I ` ve never been able to part with those cards . But I have started to enjoy London life recently . So I started teaching English to young children and then adolescents and finally I learnt more about English grammar and became better acquainted with it I have been thinking whether I should buy an ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convenient and useful . Sudenly , She was silent . My seat is a right under the air - conditioner . I have a medical test tomorrow . but here was my weekend I did not study hard . We wanted to speak to them , but we could n't because we could n't speak English well ! Hahaha , I 've just watched the first episode of `` Primeval `` . I have trouble with English . I can read and understand English sentences , though sometimes imperfectly . I want native speakers and anyone who is learning a foreign language to teach me . I often hear that English is the most important language of all who want to succeed in the world . I 'm very sad . The other day , I was watching a variety show on TV and an Australian comedian said this . and if we worship him , he will give us happiness and let us go to heaven after death I am off today fortunately , so I will be watching TV , internet surfing , and so forth . But I ca n't sleep until I finish writing my entry . . . . . . . . In addition , I want to speak to people all around the world and work in America . Of course , it 's good for my health . I eat it every morning with soybean flour and green tea powder . There are many English schools online , some are American and some are Filipino . I forgot where I heard about it , but according to some sites , an average college graduate native knows more than 50000 words . We ordered the New York and Angus steak , and both came with mashed potatoes . Since then , I can concentrate on reading the book and understand what the author is saying clearly . I know that listening to English conversationsand speaking in English a lot are good ways , but I think first of all , memorizing is the best way . could you explain about the use of ' with ' in the sentences below . I thought I could hardly success . I 'll try not to be nervous and do my bed . I prepare for the interview from now . I have to review excel , word and Japanese . Which do you want to learn English or Science ? The competition was held at the stadium called Kita Yell . I would like to ponder about this case and to hear your opinion ( if only my friends did n't lose hope to read something from me , sorry for my long break ) . But we live in different cities and have n't had the opportunity to pay each other visits very often because the distance between us is 5000 km . About a month ago , it was announced that Dragon Quest 9 ( DQ9 ) 's release would be postponed . The Next series is supposed to be released by NINTENDO DS . I was fully prepared to buy it only for the purpose of playing DQ9 . I felt very sad when SQUARE - ENIX made that announcement . There are many rumors for that on net . I read many articles and thought about it . In the previous series , SQUARE - ENIX set up a provision / trap against Majicon . The company produced the game like that in case the player uses Majicon . Do you think they 're real or imaginary creatures ? If god , ghosts and creatures from outer space are in existance , it 's only natural that vampires live somewhere . He stayed at our house for 3 months then . His Japanese had improve a lot now . through liquor and another people who can get rid of the stress At one time I thought that people who exhaust their lives were successful . I feel satisfaction when I 'm working . People sometimes voluntarily enjoy something bad . Somehow we feel happy when they succeed in accomplishing something worthwhile . I will go to Taiwan in October on business . I 'm looking forward to going to Taiwan next month . this is a traditional traditional festival , maybe other families are happy and expected , but my family is not , fundamental : I need to study the fundamentals of Japanese history . indispensable : He is an indispensable force for our company . splendid : Casa Roma is a splendid castle built in Toronto . The problem is that these lifestyle changes can make people overweight easily ; also people do n't want to exercise . Choosing a PC In my new life style , I have a lot of changes compared to before . On the other hand , almost all cars exhaust carbon dioxide . There are too many self developement , self - motivation , or self - help books in Korea . I ask him to let me sleep 30 more minutes , but he never does . I 've traveled to some places not only in Japan , but also to other countries . Last weekend my wife and I went to tennis matches for beginner mixed doubles . It 's delicious and rare . I want to learn how to cook this kind of beef . However , I can not explan . But today , I found out good website for my thinking which can not explain right now . Kendo is not just a sport , it is also Budou . Kendo is similar to weight training . I can understand them . I 'm not good at expressing myself , I do n't have any qualifications except a driver 's license , and I have never had a special experience such as an internship or volunteering . Since the entrance exams for universities take place next year , Sometimes I am tired of the piles of assignments , but I enjoy spending a lot of time with my friends , and having high aims and good teachers . I have decided to keep a diary in English as often as possible , so My main difficulty is understanding spoken English . When the groom kissed the bride many cameras flashed . I am happy for them sincerely . Will someone correct my grrammatical mistakes after I post my articles or should I add someone as my friend first ? I found him in YouTube : ) He made a parody of Miley Cyrus 's 7 days . Although I do n't study English at the university , I want to be able to speak English fluently . It is derived from `` family `` In japan it is winter now . Recently , I happened to hear very nice music . I watched `` Enchanted `` by disney . Someday , I want to fall in love with such a prince ! ! I want to communicate with a lot of people . I 'm a normal man . someone please help me lol I 'm in a hard situation , no , I 'm in predicament now . The reason why I say so is because I found surprising stuff in my house . I thought he put my socks into his closet again . Oh my goodness ! It was a gay magazine ; I was really surpurised at it , and I was also scared of my landlord . I 'm gon na have to keep protecting my ass from now on until the date of departure to Singapore lol . Although the vet told us Frontline is working , and that we should n't worry , we are not happy considering our dogs ' conditions . What I 'll write is just my opinion , so even if my methods are different than yours , do n't worry about it . If I wanna improve my speaking skills , I should make a certain number of sentences a day and have them corrected by native speakers . If I wanna understand what English speakers say , I have to read English books and I have to ask Japanese people who can speak English very well if I ca n't translate it . My Recommended Movies / My Movie Recommendations My friend introduced me to this useful website . Although , my Japanese is not good enough to write an article . as playing basketball , swimming , running and so on . If it was sunny , I would go fishing with my friends and swim . I think that impossible right now . wuwuwu . But I guess I can play computer games at home , hehe . But , I want to comunicate with more foreigners . The JLPT just examines the learner 's knowledge . In the Pacific seacoast region of Japan , the rainy season is from the end of May to the beginning of July . there is a wide range of Nabe in Japan , we ate a simple kind of nabe . To make nabe ; put all of the left - overs in the refridgerator ( such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water ) into the pot and cook them together . Alpha waves have a frequency between 8 and 14 cycles per second , and they are found in states of peace and of relaxed alert . The massive production of Alpha waves in children makes them have a great learning capacity that can even permit them to attain / achieve super - learning or accelerated learning when in a state of peace . I respect people with a strong character . Recently , she has started to make beautiful accessories . She is very talented . I ca n't get up early in the morning ! ( original sentence ) Odell was n't certain of what he saw , the climbers may have been at the first and lowest step , with the all - too - formidable second step still to come . I 'm going to write about the spacecraft Hayabusa today . The body burned , but she released a capsule toward the earth before she was burned . If there werealiensin the capsule , Wewould besurprised ! Someday , I want to sing songs in other languages too . This is the first time for me , writing my diary in English . When you are busy enough , you will forget what you want because you have no time . I 'm going to eat Russian cuisine tonight . I did 't know that early day 's tango was played with flute and guitar . Meanwhile , most of the oldershops in town do n't have parkinglotsor require you topay forparking . I have studied english for about a year . I sometimes import Manuka honey from New Zealand myself . Because it is very different from anything I have ever used , it is very difficult for me to use it . I ca n't go home until you give the report . I major in international relations . We ca n't see anyone succeeding just because of his or her talents . Rather , we can see many people succeed by their hard work . We learn from pronunciation , but learning languages is n't easy . I have finished to read reading a book . He then begins started to study this phenomenon . I am continuing my English learning journey . . . I was surprised at an unexpected visitor . I really love teaching Samulnori with traditional Korean equipment ( or : instruments ) Do you think that it is too late for someone at my age to be studying ? Since the first time when I see blackberry phone , I have been totally into them , they look luxury , and the design is stylish . I am still considering to buy it or not . Although Samet island is not as popular as Phuket or Samui , its sea and beach looks very beutiful ! I didn ` t have a fever , but I had a bit of a headache and stomach ache . I saw many different costumes and dances . I have been here for 3 months , and now I am living in MELTON , which is a little bit far my college . If there are not any dishes you want , you can order through the touch screen controller . An increasing number of revolving sushi bars have opened recently , meaning we can eat sushi at an affordable price . He told me to use the expressions that can be found in the dictionary , otherwise my English will sound strange . Today , I began this lang - 8 service hoping to improve my English writing skills . Time permitting , I would like to take part in advising on the use of Japanese , and am would be very glad to get any tips on my English . I was raised in a small village , and my father is very poor , of course so am I . I really want to visit there again , and if I can , I will live there for several years . It was a beautiful day yesterday . Then she disappeared with her son . FridayIhadhis class ( no comma ) and I was happy on the way to school . ( period ) I imagined how happy ( I wantto use a similar word tohappy ) I would be to see him again . ( period ) When I arrived in class , I said `` Hi `` to him , but he just said `` Hello `` to meas he would to a stranger . There is no way that showing kindness , affection , and any other positive thoughts wo n't be appreciated . And I saw a cafe in the movie , `` The Born Ultimatum `` , in which the main actor is Matt Damon . If you won 10 million dollars - the same mistake : ) To begin with , I 'll do my last semester at university for graduation . I 'm sleeping in until the afternoon , eating lunch with breakfast , and surfing the net until it is time to eat again . Then , I may bathe and go back to sleep . Holiday is so boring without friends . Should someone correct my writing error and fix my laziness problem ? I have two children , one is in college and the other is in elementary school . What kind of people do you like ? Thanks for reminding me ; I remember those moments . They were very amaizing , life was beautiful . I went to a shopping mall in the neighbouring city to buy a Christmas gift yesterday . please ~ teach me English . If you wanna learn chinese , just add me . And because of the rain , I could n't go very far for dining , and I could only choose the nearby restaurants . I 'm starting Lang - 8 right now ! My English writing skill and vocabulary are really not good enough . The high heel is actually not so high . find my diary entries and correct them . Actually , I do n't miss everything in Taiwan so much . I would rather try exotic food here than Taiwanese ones , Even though he said that I had to taste some Taiwanese cuisine here , that way , I could compare what the differences between them are . Do you have any idea what causes this difference in perception ? Nah . . . Sometimes , I see that that they are very smart , organized , and privileged at the same time . He told me that Americans are different from Egyptians in their thinking and in their professional and personal lives . But this does not include all of them . I write this entry because I want Americans to tell they spend their vacations . Thanks to any one will answer to me questions . I really like her eccentric fashion , action , performance , and - of course - her songs : ) I have to wash a lot of laundry ! But it makes me too addictive . Hello ! My name is Sar . I am interested in English language . It seems more difficult to make friends with new acquaintances as we get older and older . I ` m a Junior at Hankuk University of Foreign Studies . Please correct my sentences . Today it is essential to have recommendations because the employers are too busy to receive a lot of applicants . I do n't have anything to do now , so I 'm writing this journal now ~ A kind mariner adopted him and taught him how to read , write and his own interests . This is a picture of my dog . Japanese usually begin to learn English when we are primary school students or junior high school students . He was non - Japanese and about 60 years old . I will send a letter to my host family today . I am so excited . I always say that I have not enough time for to study in the night . With Windows 7 , and supported devices , you can an even better experience with Device Stage . Put the all the ingredients in the pot , and boil them for about 15 minutes . Put them in a plastic bag with flour , then mix it . Put the fried wing tips into the sauce . Its a small class , only 4 people . There were small candles ( on every ) table . But , [ comma ] we chose a main dish for ( ourselves ) . need some shopping or resting . There is a Chinese temple ( maybe a Buddhist one ) near my house . It occasionally holds events . What ceremony is being held there ? In fact I do n't know whether or not he is my boyfriend . When I watch the movie about Victoria in Canada , I 'm amazed at the huge forests , high cliffs , and the incredible view from the top of a famous mountain . I saw many things and bought some commodities . There was a TV program about pyramids . I found TV programs about pyramids on the last day of last year too . I wonder why there are this many ones about pyramids on New Year 's Day in Japan . But , as I watched , I became interested in pyramids gradually ! Some day , I want to go to Egypt and enter ( inside of ) a pyramid ! It 's a huge mystery ! I am going to go to Iwate tonight to see my grandmother . Secondly , the government should take I always order Subway 's daily recommendation . Yesterday , I ate a BLT sandwich . Recently , I 'm constantly irritated . I am very relieved when I communicate with you through Lang 8 . I 'm enjoying holidays ~ I 'm relaxing during the holidays from the 13th of August . Today I 'm going to clean my room , do the laundry , wash the dishes and so on . So , I do these things on holidays . She did not study hard and ended up as a maid too . Hello everyone ! : ) I want to study English today little by little in order to study abroad in the future I want to study languages by chatting with English speaking people through my computer and I searched website like that . I do n't like the bus because it is very crowded . If I ca n't sit on a seat , I have to stand for forty minutes . However , I have only a little information about Mexico , I left my work for parental leave . Today I saw an article that said if express tolls become free , more people will use cars , and as a result greenhouse gas emissions will increase . But , I 'll be learning English through Lang - 8 . It 's an exciting spot for any Ghibli fan . Today had many events ! I am redoing this blog . As time goes by , we 'll go our own ways and become busier , but we will still remain in close touch with each other even though we are in different situations . Strangely , I think Korean resembles Israel in some ways because of some passion and temper . Because the job notice was supposed to be announced today . I called asking why the notice was not announced and they said that it was delayed until next week . I 'm into bikes ! It was pleasant to ride on my bike . I rode on a bike as a child , so I have gotten used to riding , even as an adult . I always have to be careful so as not to break the speed limit . My collegue , who came to our clinic by bicycle , said that it was really tough to pump the pedals while traveling against wind , and that it took twice as long for him to arrive here and saw some people fall off onto the road . This can sometimes be dangerous because on days when the wind is strong , we have more patients who break their bones . Rhythm games are similiar to learning languages because both require so much time , persistence , and unceasing effort . Luckily , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . For her parents - my grandparents - we prayed in the Chion - in temple , which is the headquarters of the Jodo sect of Buddhism . I have to study Japanese more , not only grammar . After that , one of my friends wanted to play a shooting game . 7 / 5 was my friend 's birthday , so our friends celebrated his birthday last weekend . that was a pretty dream . If I saw her in Bangkok what to say to her ( in frist word ) at first . Korea 's big holidays Korea 's big holidays are coming up soon . What am I going to do for the coming holidays ? After these holidays are over , it seems really doomed because there are almost no holidays in 2009 . My mom came downstairs to confirm whether I scored 71 or not . Yesterday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croquettes because they do n't cost so much ( around 10 - 20 yen per piece ) and croquettes with brown ( Worcestershire ) sauce are the best with beer . As I had not spoken English for longtime , it was difficult to speak fluently . I think learning another language is similar to playing sports . I do n't work at the moment , but I am going to look for a job which is hopefully the same job I had while working at theimport department in 5 months . I thought that my experience was awful , but I appriciated my friend 's kindness . She possesses a lot of talents such as teaching English . She is willing to be taught Japanese in a friendly manner . . . Last week , I was a substitute . I may get tired by the middle of the game . And it 's human nature to feel a bit uncomfortable about the unknown . Hi ! ! ! I 'm studying the `` Media History of Japan `` at my college right now . My other language In Spain , Spanish is the official language but also spoken are languages such as Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak some them such as Catalan , which is a Romance language derived from Latin , and is spoken in Catalonia , Levante ( in the area called / of Valencia ) , in the Balearic Islands , in Andorra ( which is a small country in the Pyrenees , southern France ) and some in the Italian city called Alghero speak Catalan . It is the 75th most widely spoken language in the world and I am very proud to speak it . And I thought the only thing that make us feel a little unhappy is that the serving fee is 10 % of the price , even higher than the GST ( the Tax ) , which was not mentioned outside the restaurant . She has been to China and studied there for 4years . I sometimes have difficultycorrecting students ' English compositions , so I need someone 's help . After a few years I decided to brush up on my English . However , after coming to the US , I feel that this is not true . When I was a high school student , I was always concerned about the school uniform 's ugly style . However it may be difficult for me to make my dream come true , because I have a four month old baby . . . Maybe it is a dream . . . I have played the saxophone in school club activity since I was a Middle School Student . I want to meet her again and talk about things that have happened to each of us lately . There are a number of runs in this `` Fiesta `` . Please let me know is there any racism in your country . I love jogging . I used to have this habit , but sunddenly I stopped . It 's fun , especialy for me , because I do n't like to exercise at a gym . It 's too crowded , I do n't like music , and I always have an excuse not to go . Then , I researched this song on the Internet . When I hear this song , I remember her face and her singing . `` Ann and I are going to go to China . `` Are these sentences correct ? The luckiest man in the world Stephen Brad Bury took the gold medal in the Salt Lake City Olympics in 2002 / 2 / 16 . My eyes are sore these days . My mother is a nurse whose job is to care for handicap people , and her hospital has a school , a car , and a bus for them . But , in my living country , many handicap people use public buses , which have lifts for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work without hiding their identity , and their classmates talk to them as friends . I volunteered at the university last Saturday . Campus Tour was popular , so we increased our tours . Japan has very beautiful flowers in spring . I will talk about my research for six minutes , and after there will be a Q and A session . For now , I just have to study English hard in Japan . ( ^ ^ ) / \ ( ^ ^ ) So , we just had the Gay Parade , which is one of the greatest parades in the world . And you will need to know the foreign language very good in order to understand and be understood . On the other hand , education in your own country , for example , in Russia , is adds perspective too . Russian , Literature , Physics , Chemistry , extra Chemistry and History . . . . . . . . . . . . . . It 's very good gadget for me . Can you correct my sentences ? Santa Clause came to the party and gave me a present . * * My teacher said that Santa Clause majored in engineering . Are the problems which international travelers cause greater than the advantages they bring ? Introduction : Travelers from other countries bring more advantages than problems . It brings a lot of interest to the country . We had all inclusive , so we can eat and drink everytime for free : ) Egypt is a very interesting country . . . I 'd like to help people trying to learn French too , that 's why I find Lang - 8 wonderful . Japan usually hires the students as new workers until spring . Have you ever imagined your future lover seriously ? In the end , I couldnt even show my smile in front of them , and I could n't see their smiles either . I am extremely excited to hangout with the girls here , as a friend or more than that . I always puzzled on choosing between `` to V `` or `` to V - ing `` . I think it 's a great web site because I can practice my English here , and I hope that I can help others to learn Chinese too . For many people , it 's such a comfortable temperature . This is my first time However my spoken and written English are so poor , so I am afraid to open my mouth . I do n't have a foreign friend , and there is no foreigners around me . ( Just space . ) What if I speak English to my friends ? That 's so weird . ( Space . ) Second , they may not know what I mean because sometimes my English is not good enough for them to understand . But some cloud was hiding it . . . I learned a lot of things about Shintoism . but I can increase my concentration through prayer . It is the story about mathematicians who try to prove Fermat 's unproved theorem . It tastes terrific and the / it 's texture is like a rice cake . Its been almost a month . And elderly people do n't feel hot very much . Also , some elderly people think that cooling your body is bad for your health . They had lots in stocks , so they wanted sell them . . . Because Dazaifu - Tenmangu is a beautiful shrine . When we are angry , not only can we not solve the problem very well but we also make the conflict grow . I believe my English is not good because I can not use it fluently . I made a less than delicious cake I search the recipe , the main crux is setting time and temperature for oven Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as cartoons , and they are interested in Japan ! I often talk about Japanese anime and cartoons to them . So , I want them to know other aspects of Japan , and I want to know culture of other countries ! I 'm studying English for a college entrance exam ( ination ) . I 'm looking forward to receiving corrections on my journal . AndI accepted his invitation . I have learned never to use the webcam with stranger . AndI deleted my profile instantly . anatano ie ni pasokon wa arimasu ka ? kono atarashii oobun wa yasui desu . In high school , I fell in love with my korean history teacher , so I did well in korean history . my family believes that everything is influenced by the heart . and I usually think positively and enjoy day with a smile . I do n't think I have any . . . . I think that the students were so surprised that a beautiful woman belched . . at last , please gives advice to lovely Chirwon high school students . At this time , you do n't have to be greedy . Find your own beauty , make impressive memories , and build your self confidence to challenge new things . He lost his house and family , the only thing he has now is a life . I bought one easy book for beginners , but that 's all I did . Only recently was it that I decided to study again ! When entering into a boutique or dealing with a clerk over a cashier counter in a supermarket , Japanese customers do not say hello to the clerks . ( They wanted to know where the bag is available , but was disappointed to hear that she bought it in Japan . ) For example , people who really understand mathematics can visualise things in their brain quickly when they are working with a trigonometry . I have never gone abroad , so I want to travel around the world and see many places . It is very cold this morning . I received a new Spanish text from Japan , which is for beginers Sometimes I ride it instead of using the bus . As you know , the town of Iringa is pretty far from my place , so whenever I go there , I should stay there overnight . Soymilk tastes similar to milk . She said , `` I 'd never done something like that such a long time , `` so hearing about it made me touched because I 've also wanted to go to Univercity since before , but I could n't decide what to do for it now . My friend 's talking made an impression on me . I have struggled with it until now because I have no confidence that business courses can be useful in assisting me to find a job in New Zealand . First , when I ask about the condition of the patient , Are these correct ? ? What are other real English conversations , please tell me . For example , reflux in veins , clot in arteries , venous insufficiency , or thrombus . I heard that she bought many alcohols , especially Japanese - sake when she went I always think about it more seriously than others . But I saw a different fashion from conventional fashion . From next week I decided to go to a community center 's English club . I really do n't want to forget English . I 'm waiting for your mail . But here , I can say anything I like , even though it might be wrong . I have written two diaries since I have started using Lang - 8 . I am a colloge student . I am very outgoing and very willing to make friends with everyone . If you like me , you can leave a messege for me . I am very gratefull to everyone who corrects my diary . Today , I have two announcements . We think it will be help you with your language learning , to see the entries written by people who are learning the same language as you . You can customise your home page on the `` Settings `` page . If you are interested in gadgets and games , please contact me ! I do n't know why , but we are normally supposed to write our resume by hand in Japan . I went to see the World Baseball Classic 's final game that was against Korea at Dodgers Stadium yesterday . Korea was very strong , but finally Japan could win . We were really excited and happy . As you know , recently more and more people have poor healthy , why ? She 'll probably stay at my grandma 's home for a month . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own problems . but now , we do not have much water , canned food , or ramen . Maybe he never loved me . I sense that he does n't care for me as before . A month ago , he said that we should go home together . Looking at it now , what he said is empty . so I 'm writing these sentences for the time being . I mean I want to improve through conversations firsthand rather than unilaterally in front of screens , no matter how inaccurate the informationis compared to that of mass media . Bean is very funny and foolish , Rowan Atkinson is usually a serious and calm gentleman . The Mid - Autumn Festival night November ? December ? Unfortunately , I was using my laptop and I did n't have a mic . even if I have no boyfriend , I wish all the girls who do have one will eventually get married . She said , ' I promise you that I 'll do my best to study hard . ' Are you satisfied with your career ? Because , I 'm just making my career now . S . , I will never have a plenty of free time . You know , it is one of the most famous universities in India . Which of these sentences would / do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? When I was a junior high school student , there was a Kendo tournament . One day I was on the way back home in the evening . I know some English words and grammar , so I can write English sentences like this . At first I want to concentrate on improving my English ability . I want to help you improve your Japanese ability . Now , it is raining , again . I ca n't go out 'cause it is a little difficult to see the streets due to the fog . Child education is a very useful subject because I want be a mother . I sent cosmetics to my friend and sent an email to her . If I have the ability , I 'll write an essay . In a pool , she is scared to put her face into the water . And at a park , she can not turn the iron bar , because she is scared bending her body toward the ground . They were my first choice company , so I 'm very disappointed . . I 'm pleased to love it because I want to speak English very well like a native speaker . Therefore , I must study everyday , especially English . Well I decided to take the TOEIC test for whatever reason . ( Ah of course I have been studying English so that I can use English for some purposes . . . ) I am at ( the ) Ohtani University in Kyoto . I want to be an employee of that bank . I might just not be used to this weather because some coworkers are wearing short sleeve shirts . These days I 'm so lazy . `` keep yourselves from Idols . `` In afternoon , we had a body - building examination . I really want to pass immediately today I tried all the rides , and I screamed something terrible to help myself feel better . Japan will play the finals with South Korea at 10 a . m . tomorrow . But recently , I enjoy learning English , because sometimes I can notice an improvement in my English , either when I talk with an English speaker , or when I watch `` TED `` ( This is my favourite programme ! ) If I need to make an appointment with my friend , but am not sure when he is avaliable , I wrote a journal entry yesterday saying that I wished something special could happen , and there it is ! Then , I brought it to the bicycle shop to ask them to fix it today . We have a peaceful life here , so sometimes I really want to go out and experience an exciting and unusual life , but my parents are worried about me , because they think it 's better for a girl to live with her parents . My Introduction My hobbies are to learn languages , to speak with a lot of people via Skype , to drink at the bar with my friends , to read books , to go abroad , and etc . So I believe the best way to do window shopping is to bring nothing Of course , I want to use English in business . It is not dyed , and looks healthy . What made her look humble is definitely the combination of damaged jeans and sneaker . I 'm always worrying about that . Before , I lived alone in a dormitory of my corporation . I brought something to cook and eat in the dormitory Now I enjoy dinner time with my family `` my son will start to become ' homeless ' in America `` to the neighbors . It was very tasty , and I felt comfortable . But I feel like thetemperature in the library is below the freezing point . but I think t New York is a little bit nicer than Seoul . I shopped online for about 1 hour , and I bought a bottle of lotion . I gained weight ! ! ( T T ) My weight . . . . I feel it 's really hard to speak to foreign people in English . I would like to say I have around several problems in my English study . Although I spend a lot of time on it , it still seems to make no sense . I like this period between summer and autumn best of all seasons because I feel energetic ( I mean copy and copy that ) never mind a computer , despite the fact that I 'm already 30 years old . If I could think in English while reading English sentences , my English comprehension skill would improve rapidly . I arranged it by adding cabbage under the pork and then putting a soft boiled egg on top of the pork . Are the following sentences I 've created grammatically correct ? I 've been studying English . Although Lewis 's piano solos are sometimes a little bit annoying , Something truly new is often accompanied by some kind of discomfort . There are no interesting places to go for a walk . The first time you go there , these places seem unusually interesting . Especially talking with someone to gain more skill . I want to go abroad , and make friends there ! I feel ashamed and sometimes I feel hatred toward myself . But I will give an example to you . I have a strong sense of justice ! ! ! I 'm a little upset by it because unlike many people my age I like going to school and I 'm keen on learning new things . what the heroine thought when she met with the vampire , Edward , impressed me so much . It 's just like what I experienced when I was a teenager . write in English daily , and watch NHK English program . But I overslept today , so I could n't study English . I will have to go to bed early in order to wake up on time . more time to know more people and time for improve my english What I try to do is to increase my vocabulary : if I run across new words , I look them up immediately and review them before I go to bed . From tomorrow I will start studying for exams . Firstly , I like music . My favorite artists are BUMP OF CHICKEN , Sister jet ( they are a Japanese rock band ) , Avril Lavigne , Hilary Duff , Sugar cult and so on . It was an amazing experience . I 'm interested in English and I think English is needed in the future so I 'm studying English now . And one hairdresser came to me and asked me `` just cut my fringe , please `` . After he [ / BLUE ] finished cutting , I saw my face on the mirror and I was awakened by it . I made a mistake that I deleted many songs in my I - pod . . . Maybe I will have a topic to write about tomorrow . When you come to Japan , do n't forget to contact me . Because Japanese is quite similar to Korean . The bullfighting is a ceremony not just about killing a bull , but also about looking forward to a good harvest . They looked quite mature for their age at the entrance ceremony because they were in suits . My university does n't have many students but I can make friends with almost everyone and I 'm looking forward to that . So Green tea is Ryoku Cha in Japanese . Reducing carbon dioxide is highlighted by TV commercials frequently . I am also learning Thai informally . Tomorrow is the end of my vacation , I was walking around Akihabara to shop in the middle of summer . My aunt was an academy teacher . It was very delicious . I thought it was a bit weird because she and I were not so close as to exchange text messages with each other . I had strained my left hand ! It was cloudy this morning , but at the scheduled time of the solar eclipse , we all went to the roof of our building . There are a lot of Japanese toys for kids , so I 'll be happy if foreign people also like them . I 've had a cold and a sniffy nose for the past few days . She said that she really wanted to stay over at my house . The university tries to push students to communicate and use a lot of English in their studies . It was really really exciting ! ! Two days ago I went to Hyde Park with my classmates for a farewell party for one of them who was leaving . While walking down the street , I thought I liked the atmosphere of the town . I 'd already seen the movie based on it before reading it , so I could understand the whole story even though I could n't understand some chapters in detail . But I couldn ` t find any place to play with my daughters because it was rainy . We watched prerecorded programs and she let me read books to her . I 'm into horoscopes these days . The victims of the tsunami and the radiation leaks are suffering a serious shortage of food , water , medicine and proper heating . I feel itchy . Please check my Clumsy English . When drinking with friends I 'm not well acquainted with , I have to say ' ' I have to be up early for study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , last two of three are jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe even more than usual so we have n't got so much work to do . It 's because the older students attended the international conference my professor helped organize . I alway set my alarm clock . The alarm sound was set to music . I think I have to change the alam sound to be an annoying thing so it can make me get up earlier . She bought a lot of things on the web and spent a lot of money . There are so many ants in my house especially around the kitchen . They are mostly fickle , disobedient and not smarter than dogs , and this is probably true . My other friends and Iwere impressed by his comment Arfter that , My Korean housemate came in my room and told me he had tried to make Korean food and to eat it . It is my final year in the univeristy . Both of these countries must have a lot of similar places . So I want to go to experience and compare them personally . Every student has to hand in the report , so that it will help the students who will go job hunting next year . I 've been playing `` City Ville ' ' on Facebook . Recently , I do n't feel well . I think that it is important for Japanese to show ' a token of thanks ' through some ways if we receive some gifts or help . The whole city is plagued in confusion and sadness . It is convenient with many means of transportation . One of my double majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rmb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationship ! When they are alone , they usually feel heart - tired . What can I do but wish him a pleasant journey and fly higher in the future ? They just keep making fun of me , and they do n't share their work with me , but with another colleague who came here later than me . This month , I 've faced a lot of difficulties , one is about work , and another is about a / the / my relationship ( actually it 's also about work , because what I am going to talk about is the difficulty with dealing with colleagues , and some of them are my roomates ) . In terms of the top 5 countries , the table shows that Japan , Australia , USA and South Korea the weremost common origins of tourists to Britain in both years . These days , I often listen to Arirang radio which is a Korean program in English . The european buildings were resplendent , elegant and spirtless as it always be . I 'm looking for going out to dinner with her . Some students are usually running around the school at that time . But lately , I started slow jogging for my health . Someday I want to run in a marathon . One day , I found this website on the komica , an ACG website , and I immediately find that it 's a very interesting website . When I think about people who live far away communicating with each other , I feel very excited . The other smartphones are not as attractive to me . I went shopping to an electrics store . I wanted a small personal computer . It was very expensive . I want ( to have ) a lot of money . The population is decreasing . More specifically , young people are leaving and the population of old people is increasing . My work schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarten teacher . After I ate the toast , I listened to music . You can browse all of my blog in this website and I had a list of my other blog websites in blogs of this website . The dead languages Hard schedule . I feel I 'm lucky and I want to take care of care my daily life . We got a present from science club ! I accidentally locked myself outside my room door like an idiot . After several aftershocks , I checked the news to research this earthquake . Today it rained so ~ ~ ~ ~ much . but it rained , so I could not go out . I am in an ELD ( english language development ) class . If my English improves , I will take some science classes . I want to go to a good university . Some presidents run Gourmet site and some run SNS sites . Recently , I have been bored studying English words . Then , I thought to study English words while reading book . Is there a book which you can recommend for a beginner ? Do you know a book that you can recommend for a beginner ? As far as I 'm concerned , English is a beautiful language but I really do n't want to accept the fact that my English is really poor especially in speaking and writing . In China , finding a good job is very hard . It is n't as hard in New Zealand but it 's still not easy . I am not sure if they do drugs as much as a drug addict , or if they did it only once , because I heard it from someone else that I hardly know . So I decided to ask the two guys face to face if they are drug addicts or if they are dangerous because I do n't want to judge them and talk behind their backs . Today it is the birthday of my lang - 8 id . I am writing this article to celebrate starting my blog . My Japanese colleagues are morons , nobody can speak English well except for Seki - san . A raccoon on the balcony On the other hand , we must accept they have weak points , like the risk of addiction and possible unintentional public exposure , which has happened before with previously developed communication methods such as the telephone . Traveling to Busan last weekend with my friends was a really nice experience , but it was exhausting . I want to get married to him and have a family . Besides , I have to admit that I am a playful boy . There was a ideal Dell Server in my office . Today was an ordinary day . I woke up and went to University , worked at my part time job at Starbacks and then went back home . I think Oden is uniquely Japanese . It is easy to cook and an economical meal . The beginning of our relationship , he made me dinner which only had some fried meat and some instant mashed potatos . The healthiest food among what he think is healthy is a subway sandwich , but I know that the white bread made out of flour is n't really healthy at least for Koreans . My dad is librarian and always has a book for me . How about : Face to face against Real Madrid . Congratulations ! By the way , I want to study abroad after two years , to learn Engish and different cultures . However , , I am having trouble deciding where I should go . My senior suggested I go to America or Australia . In his opinion , In America , American English is spoken and in Australia , British English is spoken . I should select one of them . Where do you think I should go ? Encantada de conocerle . Since last year , I have been studying economics for a civil service examination . I thought that is why I ca n't be good at it . Many of my friends are sending and receiving this email even now . My father fainted on the shinkansen once . At that time , there was a doctor on the train , and was ok . Fortunately , I have many an opportunity to communicate in English now that I live in Singapore . English is very difficult It takes a lot of money to go Canada . Moreover , doing chorus in class makes thier relationships closer and stronger . They would cry , being angry , e . t . c . Above is the picture of the city whereI live . The view is so beautifull ! Every summer season , frogs cames . So I hope I contribute to all people ! I have difficulty explaining the rules in English , so you may not understand . Students at many universities in Japan are required to study a foreign language , usually English . We succeeded in communicating with each other because English was spoken . Generally , each age group showed a consistent increase in literacy rates of up to 100 % or almost 100 % , although the level of changes were different according to each age group . There was a dramatic change in the youngest group but the two other groups showed gradual increases too . Yesterday , I signed up for a correspondence course . The course costs about fifty thousand yen . It 's not cheap but I can pay for it by the welfare program which my company offered to me ! The course will begin next month . Tomorrow I 'm going to London for 4 weeks to study English . If I go overseas , I would like to see more monuments ! We will be going to a wedding shop because my friend is getting married soon . Fortunately , the damage to buildings was small . It is good for learning English but it is not good if I have not bought them . The reason is , first of all , that he knows a lot / is very knowledgeable about architecture , and he is always willing to pass that on to his students . About the Canadian International Dragon Boat Festival . Dragon boating first ? appeared in Vancouver as a demonstration sport at Expo 86 . The people raced in their boats , using their oars to keep fish and water dragons away . I felt English was really interesting ! ! So , I wished to become a customer service agent in an airport . I am learning English and Chinese now . SINCE IM NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNORE THEM WHEN I FOUND THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` WHICH I LISTEN TO INSTEAD OF JUSTIN BEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID NO WAY ! ! ! ! ( I find ) it is a very difficult thing to do . To the fact , I will get a dog in two weeks ! I am majoring in English . We entered the competition as KOF , a famous Japanese fighting computer game , and got the third place in Beijing area . I have not written on Lang - 8 in 3 days . I am proud of the workers who are working at the nuclear power plant during this disaster In Fukushima , although they are working there without electric lights and with no I 'm a Japanese university student in Kyoto , the most historical city in Japan . I 'm majoring in cultural anthoropology . Yesterday an accident happened on my train . I am going to an outlet shop in Gotenba , Sizuoka prefecture today . I had lived there until I graduated from high school . Then I left Hokkaido after . I have graduated from Shenyang Airspace University in July , I majored in Japanese . Spicy Foods & Cat 's Tongue `` I watched TV and learned that it 's because of the tongue 's movement . They end up touching something hot with the part of the tongue which senses heat the best . I 'm very happy because I wanted to learn English in a more proper way . It was raining heavily today . many things about my life on rainy day . Of course they asked us questions such as / like `` What is life ? , What is death ? `` and `` What is a family ? `` I like Burger King very much . I went to Okinawa on my spring holiday with friends . I went to a duty - free - shop , did scuba diving , ate `` So - ki soba `` etc . . . . . During the trip , it was either rainy or cloudy . Me llamo Tammy , encantada . Study animation abroad . He is studying Japanese animation in school . I do n't know difference between American anime and Japanese anime . I do n't know what kind of animation he is studying . We had a nice conversation together . He looked like a funny and friendly guy . My students have their entrance exam today . Driving in America is not easy , although the city roads are very wide . It is very delicious ! ! I have a question . I 'm very confused . I 'd like to speak English fluently . I 'd also like to know how to study Japanese . There are lots of English conversation schools in Japan , but few Japanese conversation school in America or other countries , right ? Which is better , an iPhone or an Android ( Google ) phone ? I worked from 6am today . One of my former classmates has become a beautiful policewoman ^ ^ ; 5 - ( ( ) , ( almost all of ) , ( the hotel rooms are reserved . But recently I discovered that `` Mr . My parents like his music too , so it affects me . I think this will be very interesting . Today , I went to an industrial festival . It has been about a month since I became a part of the company . I enrolled at an online English school a couple days ago . Do you believe the price that one lesson fee is 1 $ to 2 $ ? An Amazing Wesite for Language Learners ! ! Right now I 've come to be able to understand recorded voice in English , but it is still hard for me to understand what they are singing My hobby is playing the flute in a wind orchestra . The leading singer , whose name is Toshinobu Kubota , has an amazing voice and is a well - known soul singer in Japan . Similarly , natural expressions are natural only because most native speakers regularly use them . Learning languages , either foreign or your own mother tongue , is to acquire not only words and grammar but also different manners to perceive and represent to the world . We stopped by an electronic machine store where you can actually try using them . And I registered for the class American literature and so on . When I hear the song , I can not understand it perfectly . But the jelly beans are my favorite candy ! San Francisco ! I went to San Francisco from Aug 19th to 22nd with my girl friend . Maybe I can say this in a more beautiful way ? So I can correct Japanese grammar . I study Animation at university . sandwich , spaghetti , Chinese food and so on . Yesterday , I came to Tochigi for work . dismiss about fifteen thousand employees . When will the depression end ? Thousands of people are crowded in these temporary markets . I 'm so tired , because today 's tests were very difficult for me . I 'm so happy because there are some people who correct my English . I 'm going to go to the restaurant to eat dinner with my family . Hello ladies and gentleman all of my friends around the world Whatdo you think aboutwhere our God is ? Of course Henever beat ' temples ' , ' shrains ' , churchesand mosques . we could propose to sort out the problems of Iranian elections . The problem is very diffcult because we ca n't understand others and ca n't think about others opinions . But my sister said she can laugh alone if she think of something funny . There are various cakes there . In my latest journal , I said my father 's insurance expired . He still can have insurance from the government , which will cover the cost to some extent . It was such a nice and exciting game , and I 'll continue to practice . I study things that are connected to English in my university . I 'll go to Osaka by a bullet train called `` Shinkansen `` to attend a meeting with people from other companies . I lived in Osaka for nearly six years , until 2007 , so Osaka is like a second hometown . The Palestinians , of course are opposed to this establishment agreement , that they attacked the new residents , and the strife occurred . Before it started , I was looking forward to it . I attend the university in Nagoya . I also study Chinese at university . I watched `` Lie to me `` on DVD . And we took a rest and ate the watermelon that was given to me by my brother . Because the car in front of mine was very slow , I passed it at too high speed . I 'm learning Italian and English . Because everyone at school speaks in English . Is the day when I can understand English news programs without subs / subtitles truly coming ? He has two children and has bought a new house . Today , some of my classmates said they think every country should close every nuclear power station , but I do not think so . Although I am in New Zealand wherethere are no nuclear power stations , I think nuclear power stasion is help people a lot , for example , nuclear power stations provide people with electricity , and I think that is good . I have studied English since I was a junior high school student , but I ca n't write , speak , or listen to English well . In the balcony , people are not only able to sit on the floor but also lie down . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closet . But I think I prefer the clothes which suit me . to fashion , certain styles look better on some girls than on others . I like nearly all colours of clothes except red , but I do n't know why . I also have many jewelry . I prefer the flashy things . So I like many kinds of jewelry . My favourite jewelry are earrings . I could n't sleep well last night because I have a cough and So I am looking forward to it a lot . I love my girlfriend very much but she does n't seem concerned about my feelings . I want and need to study English . My mum who is living in Korea is feeling sick and I 'm worried about her . Thanks for teaching me correct ( or proper ) English ! If I keep on studying , I believe I can be better at English . I took off my shoes at the porch and sat at a table that is commonly seen in many Korean restaurants . I ate yukejang , a kind of soup with chopped beef . This prevents my body to get cold . Before their concerts , they pronounce the members of the day , and fans can choose the day of their own favorite musician acts . I have heard that there are some fans coming to their hall not to listen to music but to watch their dance . Before I came here , I thought `` If I lived in the U . for a year , I will be a really good english speaker . `` But that was wrong . I am surprised how difficult it is to learn other languages . So I was really disappointed in myself and kind of bored with studying English . But Lang - 8 often encouraged me to study it , because I can see many people who study other languages and may have same feelings . I really like to correct foreign people 's English . You know what , in Japan we have to follow some rules sometimes like we have to show politeness to senior people , we have to use compliments a lot and it is extremely hard to be close with people who I meet for the first time . . . My school is very small and almost all the students are Japanese or Korean . I really want to talk with foreigners . Most Japanese people do n't know what `` premonition `` is , but we use `` shuffle `` as a Japanese word . And English is the most popular language . Today , I tried to call the hospital and I was able to get an appointment . Actually , making holes is also boring work . But it looks / seems like she is looking foward to her two granddaughters growing up . and I had drank a lot of alcohol . yet , I ca n't stop drinking alcohol ! XD Next time , I 'll be more cautious when drinking alcohol . Especially , Italy . An alternative : They emphasize that you should just research and read more and more to get knowledge and experience . Next , I deal with the bigger dishes such as a round - bottomed pan or salad bowl . The lover of the protagonist died because of the failure of an abortion which was not desired by her . Moreover , the friend of the protagonist felt sad due to the lack of understanding by the adults and finally he committed suicide . The air was freezing cold and the sky was cristal clear . Actually it 's not just raining . . . After a few minutes , I stopped thinking , I could n't think anymore . Are there ramen restaurants in your country ? Today is my first day working at the new company . It is small with only a few staff , but it is short distance from my house and new company . I watched the concert at church . `` Mom , What a lovely puppy she is ! she is sleeping . 2 So many people say that . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese right away ( that was the main purpose of joining : to learn a bit of Japanese and to polish my English ) . . . . Today , I went to McDonald 's to study with my friend . Of course , I hope return to the level of before the subprime loan crisis occurred . When I talked to my American friend , I was speaking English with Japanese words spinning in my head and they would even slip out of my mouth and cause some embarrassments . The painting is of Europe in the middle ages . I do n't know its value . I do n't have much money , so I ca n't go so far , but at least I 'll get to visit `` Amano Hashidate `` , which is one of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I felt angry and did n't communicate with him . He lives by himself , and I have a good family . Thank you for always teaching me various things ! I loved the scenery too . Tokyo Disney Sea has American , Arabian and European streets . I especially liked the European street , I felt as if I were in Europe . I had a lovely day ! The picture I drew which is shown as my image was criticized by one of my friends a couple days ago . I did n't ask further ; therefore , I did n't know exactly what in the picture needed to be modified . I took a nap in the afternoon , but afterward I did n't feel rested , because I had several nightmares while I was asleep . I struggled to wake up , because I just did n't feel able to do so . When I went to the hospital , a nurse said to me , `` Please check your body temperature `` , and she found my temperature was 37 . 8 , so she told me not to get a medical check - up today . I was SO HUNGRY that I even drank three glasses of Kahlua milk Okay , let 's start something ! Get into action ! I want to improve my English , so I joined this website . I think it may be because my friend visited my home yesterday . tenant - resident I ca n't find o my favorite program because there are too many channels . The movie 's title is `` The World of GOLDEN EGGS `` . It 's because I could finish my job within the day . What is worse , `` Dressmaking / Needlework / Knitting `` was selected by only 9 % of them , which was a smaller percentage than people aged 25 - 29 ( 14 % ) and people over 60 ( 27 % ) . She smiled and asked me , `` Why did you choose me ? `` ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very briefly . We stood in a long line under the white snow because my son wanted to eat in a small restaurant . The cat lets them get on itself and goes to look for Mei , and they are able to find her . I feel pretty pressured because I ca n't do better than other students can . because , until yesterday we donated our holiday for working on the final work . . . I ca n't image my driving an electric vehicle , but the development of the technology is tremendous . Studying abroad is my important dream . I might love her , but I hardly know about her feelings and what she is thinking about . Although she is really attractive . . Therefore , we can only imagine how life must be like without schools . The Gundam is very big . Although I had class at night , I made a phone call to my friend and then my mother took me to buy some watermelon , because it is so cheap I think the staff in this store have agood sense on how to present CDs . There are a lot of pop up labels that describe the cd 's and the genre of music . I met a friend who spoke fluent English , so I asked her `` Could you give me some advice to speak English fluently ? `` She said `` Probably your English level is good but you seem to not speak English as well as you should , try talking to a native person daily . `` That was great advice for me because I was thinking of trying to talk with a native person . Nowadays , people face a series of problems regarding the environment . We usually do the things we want to do but damage the environment at the same time . It 's not only for other lives in the world , but also for ourselves to live more safely and colorfully . I had a long walk , went to Freshness Burger , listened to music that I like , let my mind drift back over random things , and tidied my stuff a bit . Because I was in a private educational institute , I could n't see the first half . I had tried speaking correctly but when I did so , the words would not come out . in it , but the pictures often come out blurry . Because she likes to play pc games , which is the reasonable Skype English school ? My eyes glistened with tears . because I have low blood pressure and I 'm senstive to the cold . If I can pass the test , I can go abroad and get training , and take part in editing textbooks . . . But I will go there tomorrow . I was glad to hear the forecaster say that tomorrow will be sunny ! I 've not been hay fever so I ca n't relate to the calamity . 4 What 's difference between ' I have some questions for you ' and ' I have some questions to ask you ' ? We ca n't deny the dominance of England in comparison with the other nations , but we should be clear in the way we use nations ' names . I have always thought that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . I felt very comfortable every night even though I had stayed in an 8 people dormitory room . Because he will go back to Hong Kong and will not return during the vacation . I think it begins with nothing , then it finishes either with nothing . A freaky interview experience HR called me yesterday and asked me if I was interested in the position - marketing executive or not . However , this company totally disappointed me . First , I filled out a sheet of personal information and a sheet of MERTKETING questions . Freaky questions . I did n't believe any marketing manager would ask the questions like that , except for managers in the PR . The interviewer asked me to briefly introduce myself and asked me several questions . So I asked how many brands they would launch and she was n't able to answer me . I also asked about the location of the new shop and she said she did n't know . That really surprised me because the new shop will be launched ( opened ) in the coming April . So I wanted to go to Kyoto in the morning for sightseeing . We planed to go driving tomorrow ; however a meeting time and our destination is not decided . because everyday I think `` l 'm happy , l have all the things l want `` but sometimes So , I have to eat lunch alone ! I have not eaten breakfast yet . I 'm looking forward to see my lovely wife in yukata . Because if I think too much , I wo n't be able to continue . I am busy , but I just have to keep trying . We read a recipe while we cooked `` tororo - conbu - nabe `` . so my friend advised me to write my journal on this site . I want to know how to use the phrase `` Get to the bottom of this . `` I will have an art class . I 'm going to go to near the port , and I will paint a picture of a fishing boat . Yesterday , I played soccer from early morning . I will join a soccer tournament in November . Please correct my english . I will remind you of the death of princess Diana , who died in Paris when she was followed by many paparazzi . I do n't think I did so well . ( After the test , a cinematographer came to my school and gave a lecture . He is Korean but at the moment he lives in Japan and is studying Spanish . Polular places for Hanami such as Ueno Koen are usually very noizy because of people 's talk , shout , song etc . I am surprised that a lot of people are able to speak good Japanese , which is said to be the one of the most difficult languages in the world . My dog is called Rei . I have had a dog for ten years . My dog is sleeping on the sofa ( now ) . Something happened to me recently . I went to a japenese food restauant with my boss yesterday . When I go there , I usually take a motorcycle . It took nearly two hours to finish writing the essay , but I was glad I could practice making an essay . It 's the second Sunday of May today . Now they 're keeping that secret just between themselves ; their mother does not know that it 's Mother 's day today . Each ramen shop chef has his or her own ( special ) recipe . Though I 'm wondering if she 'd ( like to ) eat out at Italian or French restaraunt and so on . If you have a chance to come China for business , you can use this good chance to taste the wonderful Chinese food . If you also want to find learning a partner . Anyway I had a good day . I have been smoking for three years . Frankly speaking I really do n't know why I began to smoke . Maybe there were many troubling things ( OR things that troubled me ) at that time , so why I started smoking is n't important I think . People always do things they are unlikely to do but that they must do . I recently finished watching 1 Litre of Tears . I 've been learning jazz dancing for four years , and this year I 'll try to learn yoga and belly dancing ! I made many foreign friends this winter vacation too . Since the neighborhood itself is very popular , the rent is very high even if quality of an apartment is low . I prefer a comfortable apartment because I spend more time inside than in the neighborhood . Please check my grammars . My favorite performer is Plushenko , because his skating is very well and exciting . And because now I have native speakers to speak with and practice with , even this site is one of my important resources . ^ ^ Sorry , I have n't posted in my diary for two weeks . I am an account executive . Everyday I need to handle all kinds of things that are complicated and irritating . I think I should be more careful and diligent for work . Most popular Characters in Japan Because I 'm already watching One Piece , Conan and Hajime no Ippou . I wanted to watch them because they are so famous . Naruto is famous in Japan too . If you have not seen it , I really recommend it . My main job is solving my clients tasks by digital communication . I make it a point to listen to Enya 's song when I am stressful . When was broadcast in Japan , I was a big fan . The Sushi he made was so delicious , and he was delighted to see the pleasant faces of those who ate his Sushi . There are many attractions . Speaking of attractions , some of them would scare people but they are out of order . I 'm a chicken . We asked a person there to take pictures of us . person in the music industry . Dubois put her girls to bed and was waiting for her husband while sitting on a sofa alone with the lights turned off , when Mr . Dubois , deeply distressed , finally said to him , `` Honey , It 's already 9 o ' clock . `` I got a little culture shock from that scene . Taiwanese people are very kind . I love Taiwan and Taiwanese people . I can make various pound cakes , for example , chocolate , pecan , banana & walnuts , raisins , and some dried fruits . I 'm a graduate student and I will graduate ( from my university ) next spring . I need to wait until companies start interviewing again . So , I decided to return to where my university is located . If someone finds any wrong sentences , please correct them . Neighborhood restaurant 's menu It is the Godzilla Rock , which is in Syari town , on the Shiretoko peninsula . My classmates suggested we go to see the movie , 2012 , to relax ourselves and release the pressure repressed these last few weeks . I 've skipped it twice before , and if I am absent three times , I ca n't pass the exams , even if I get 100 percent . Even watching TV was a little bit hard . We also decided that we would sing one English song together and one Japanese song , and then after we sing well , we would post it at YouTube . Of course this is a good way , but before doing that , for people who is not confident with their speaking like me , it 's very useful to learn how to write well organized English . I found an / the answer this question . Work is important for me because it enriches my life . But nowadays , Japan has not any `` Dunkin ' Donuts `` shops . I thought `` Today , I wo n't so busy , I will be OK `` but unfortunately ? ? ? When I lived in a apartment , I could n't endure staying inside all day . In my opinion , every subject is important . It was so delicious that I ate too much . She also said , `` You can never be too careful , because you are a girl `` . My sore throat is gradually healing . My ankle hurt last Thursday , and I got another unknown illness last Saturday . Do I sound a little bit mysterious ? So I was thinking , `` I definitely have to return . `` The host family was good , I thought ! As a result I played OK but my index finger was burned . I ca n't wait to have the party : ) and also for the halloween parade at 6 AV : ) Recentry , the custom of wearing kimono is dying , because many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . At first , it was fairly exciting so I tried to listen and understand all the explanations . These exams are very difficult for me . I remember when I was in high school , I seldom had the feeling that `` I do n't know what I 'm writing about `` but now I do feel unsure sometimes . Now I 'm learning English for business and communicating with foreigners . I have a big cozy white bath with different kinds of foams , salts , soaps , gels and many other sweet things that are so necessary in the bathroom . I sometimes take a bath and read a book or a magazine . Comparing these two versions of `` Year 3000 `` , I definitely like Busted 's original version . But 4 years ago , I went to Okinawa with my family and I tried snorkeling for the first time . My heart was pounding while I was snorkeling . I do n't know why , but I believe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenery . I was quite sure he always looked down on my plan to go to Australia to master English . So when he called me , I was extremely happy , because I got the best opportunity to show my present situation off to the useless Japanese man . Actually , I ca n't understand what native English speakers say at all yet , and my salary is quite low compared to normal Singaporeans , but I bluffed him into believing that my life became much better than I had been in Tokyo in order to keep my cheap pride . Later I am going to eat with friends . After that , we are going to my friend 's house and to watch movies and listen to music . This is my first diary in this website , and it is also the first day of 2009 ! I hope I have the patience and perseverance to keep on writing daily in So ashamed ! Actually , I 'm afraid of making mistakes . This shopping center is one of the biggest shopping centers in Australia . After working there , I moved ( or decided to move ) to Canberra , the capital of Australia . When I worked there , I noticed that Australian people liked Eastern food . Please correct my sentences . Flights do n't move by only one person 's contribution . He looked at his feet , there were tiny animals around them . He was scared , he ran along the inner way . Japanese women are strong . Furthermore , some adults too . IU intended to tempt ( seduce ) Evian . I have a bad feeling ABOUT THE LAST NIGHT ` S DREAM . It ` s sort of sad , eventhough I don ` t know why ? It was a jourNAl about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! deceive : You can not deceive me because I saw you walking in the station with your dog . doubt : I doubt that maybe she forgot about the promise we made . When I arrived at Osaka , it was ing raining heavily . Of course , the sound was very good as well . I just rode my bicycle earlier and had a dangerous experience . He was running away from another kid so he did n't see me . They laughed at me at the time , but I was able to learn . I am sure that I will be able to learn to play the flute now . It 's so pitiful . I spent 30 minutes writing these sentences . . . we will execute to disestablish atomic energy plant `` But he did not tell a specific plan . Is it as bad as the expression of raising the middle finger ? ? My work is in acupuncture and medical massage . I drank a lot of beer , and I became drunker . And trying to be as natural as children can enable us to receive as much as they do . Educational opportunities have opened to more people too . So it looks like our life as human beings is definitely becoming better and better . We own the latest technological gadgets in our houses , and live with educated people in an intelligent society I was driving near my house which is in a residential area . Probably he was in a hurry , but of course in this area passing is prohibited because it is a school zone / area . That is why I write diary when I experience something interesting or when I have questions . Recently anime costume parades are very popular especially for geeks and foreign people ; P Several years ago , on Halloween day many foreign people with costumes got together on the Osaka loop line and stayed there for many hours ! It was so much fun ! ! But it became a problem and was banned the following year : ( I took a Japanese tea ceremony lesson once a week in Japan for three years before I came here . I sometimes want to drink green tea here . Please tell me if there are any other often - used words that mean `` very good . `` Japanese marriage system Brides and grooms simply go to city offices and turn in their marrige application form , which has the brides ' , the grooms ' , and two wittnesses ' signatures . No picture IDs are required to turn into the marrige application form . Someone else can go there instead of the couple being wed . Because of this system , sometimes problems arise . When a couple goes to the city office to turn in their marriage form , they sometimes find out that one of them ( or both of them ) is already married to someone else . When we entered , my every my thought addressed the music ; so after I removed my coat quickly I began to tune myself to the track . When I listen to this music , in particular to Marc Anthony , I be one with the melody and I feel really free , that every thing around me disappears , andthe heartbeat follows the rhythm of the music . The line was sort of staticky . Mainly , a Japanese teacher taught English grammar , accents and various words ( / vocabulary ) . For that reason , I have studied English for a long time , but not very well . . . I would like to speak and write more like a native . There are many rap artists , but there is only one Eminem . But I ca n't understand English grammar . I participated in a web developer 's event last Saturday . It is uncomfortable to stay in an unfamiliar place . So I asked my boss to buy some vegetables for me . Last night when I got them , I put them in the refrigerator . What should I do if a rat , mistakingly eats the poison and suffering , jumps from the kitchen cabinet ? I work for the Japan 's Air Self Defence Force and I operate a F - 15 fighter plane . When I watched a TV program , I recognised the store . I can not stay in Kyoto until April because of my job . For `` Domestic Sewage `` , San Paulo showed the highest figure , 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . In addition , Tokyo presented `` presticides `` as the worst factor for polluting water ( 31 % ) whereas the pollutant was a much smaller factor in San Paulo and New York with only 9 % and 6 % respectively . It ` s my first time on this website , and I don ` t know how to use it in an appropriate way , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for several years , and still do n't know enough ! ! ! ! Usually I go to a Tully 's coffee shop , my favorite coffe is `` Today 's coffee `` . Alternative : I always have a cup of delicious coffee when I go to there , My real reason for going is not to only to drink coffee , I have been working as a system planner in the IT division for one year this June . But now is the time to use IT in order to develop close relationship 's between our stores and the customer . We as system planners must think to embrace social and digital media and continue to look for new ways to bridge the comfortable experience at store with the digital world . I usually push the reset button each time I boot my PC . But as I have been exposed to many kinds of English on the net , Even though they have an Indian accent they seem to be able to both work and live in America or other English speaking countries as a member of society . Even though it is still late June , the air temperature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insurance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insurance . And my friend taught me about that / it . It 's nice to learn new things or acquire new knowledge . Only four more days until I can return home and begin my summer vacation . My plan for this vacation is to join my cousin 's company and do work for him for free . I like chocolate but on not this day ! ! Hello , friends and teachers , I went to university today to prepare everything before receiving my cetificate . Today we had violin class . But the teacher keep saying , `` Hold your instruments up . `` I made tomato sauce today . and I need you to help me to improve my english level . If I eat a hamburger slowly , chewing it well and tasteing it , I always regret eating it . ( I 'll stop complaining about it . ) I 've had a lot of experiences like this and I realized that men and women ca n't be close friends . Recently , I made many kinds of breads . When I was student , I use a lot of money for music . A Shiba is a type of Japanese dog . They are medium sized and very clever . As a result , I found this website and enjoyed correcting articles written by some foreigners because I am good at it and it makes me feel good whether they thank me or not . I am `` good at `` speaking japanese but I am `` not as good at `` speaking English . I think it is about the guy who kept on eating only Mc Donalds Hamburgers and potatoes ( french fries ) And now I want a motorcycle , dreaming that I get a big one and travel around the world . Take for instance English Central : I can study listening and pronunciation on the site . Usually , I do n't say much if the atmosphere of a conversation gets stressful . Recently I can only go to work only two days per month because I have been receiving post - surgical chemotherapy to prevent cancer recurrence and metastatis . ( alternative ) Though it was regrettable that I got sick , I believe my disease has helped me develop a greatness in my soul . He 'd prefer to work in Canada than Korea , because if you have good & nbsp ; abilities and & nbsp ; experience , you 'll be able to earn more in Canada & nbsp ; than in Korea . We are going to go to Himeji castle and some other places . One of my friends recommended it to me . My First Time To Write A Diary In English When I say that , people around me look at me surprised as if they did n't expect it completely and I looked odd . We can listen to radio and do simplistic jobs and at the same time feel relaxed while listening to the radio . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio channel . Of course , I recognize that my range of vocabulary and how to express my thoughts are not strong enough . Recently , I have had difficulty writing my resume in English . I 'd like to join fitness clubs now . This gym has a lot of foreigners , hence I 'd like to join . It was my fault , but he did n't need to get so angry . I hope he will be transferred to another department next quarter . It 's a traditional event for Japanese to visit their family graves . Restart Toilet Training One day , she was playing with her friend on the jungle gym , but her friend kept climbing higher than her , so she started to cry out of frustration . However , because she has been suffering from hemorrhoids since last month , we finally succeeded in convincing her to wear diapers to heal her buttock . She is always kind to me . She is lovely . She always teaches me or She teaches me always . Even though I 'm Japanese I do n't understand it very well ^ ^ , I wonder if it 's because I 'm not interested in this period so much . It would suck to be sneezing all day when the long and cold winter has finally come to an end . I have tests tomorrow at school . I have to study tonight for tomorrow 's test , When some people find out about this , they are surprised and they think that I have a problem . I can learn a lot of new information from cartoons , especially if they ( the cartoons ) are about history . In Japan , there is a custom to send New Year 's cards to familiar people . Nowadays , I 've found that people smoke in the streets . I intend to pronounce corrections of my compositions and practice my pronunciation by native English speakers with skype . On the other hand , 12 % of the population dislikes obese people , which is less than the 16 % in 2003 . My husbund called out to me `` Pass the salt ! `` I did n't know why he wanted salt , but I brought the salt box to him anyway . My friend and I searched for somewhere quiet to study Chinese and Thai . We did not find a good place , so yesterday we studied at McDonald 's ( ? ) , but there was a lot of music and a lot of students doing their homework . I do n't know why , but I know we feel good all the time and like to smile with people whether we know them or not . I also asked her about whether in China they have Kung Fu or not , and she laughed and said that they do but it 's different in the movies because they ca n't spring up into a tree or unto a roof or anything like that . I 'm fifteen and staying in Malaysia to study art . Do you have any hobbies ? Do I call them `` hobbies `` ? I like to choose coffee that is freshly roasted because coffee farmers should get more income . I am a person who always looks on the bright side , and am an enthusiastic self - motivator . The issue of whether we prefer to eat at home or in restaurants has been widely debated in our community recently . When I was in junior high , one girl who was not my classmate came up close to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied , `` well I have a sister so you might think so . `` This is not an answer at all but I managed to say that . As there are no neighbors on either side , our flat is totally open to any directions with lots of windows and every time we open all the windows , we always hear winds or breezes whistling from one to another directions . I made miso soup and another dish . Miso soup was a little bit thick . I wanted to be a chef before . I can say from my experience that I have carefully monitored my life I go this course because tho I can read English text ( not well , but well enough ) , and understand English speech ( a bit worse than reading , but I am able too ) , I ca n't speak it ! As my college is in Kyoto , I usually only travel within this area . May this new year bring many opportunities your way . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more uncomfortable . I came back from my business trip last night and I jogged to the office to deal with the receipts to get compensation now . I often eat out at places like McDonald ` s . I have learnt from the internet and from apllications within Microsoft Windows , although I need help because I find English a difficult language to learn . However , I am often told `` You look like a half - breed ! `` I think it 's because of my brown eye color , but I 'm a full - blooded Japanese . So here I 'd like to study technical English and find new friends ( from all over the world , but it seems to be only a dream ) . I only have the database on my PC . I jogged on the weekend , but I think it seems to have little effect in decreasing my weight . What is culture ? It 's meaning is the civilization and customs of a certain race or nation . There is a very famous road called Saville Row in London . I am going shopping today , I ca n't wait for that . I was talking about names with my friend . The conditioner makes my difficult hair easy to comb . Melbourne is good city to live in but I hate the weather here ! After eating dinner I immediately got hungry again . Maybe I ate too little . It took 60 minutes to get to there , and 60 minutes to get back . I 'm a Chinese girl who now lives in Australia . This is my first time using this kind of website which my friend recommended to me . Therefore , I 'd like to practice my English with you guys and also learn something about French . My granma used to say that holly ghosts protect me as my guardians and watch over me on my birthday . I 'm looking forward to coming back here again next time . Yesterday , my sister and I went to the movie theater and saw `` Gnomeo and Juliet `` . And , the order ( of parts ) , starting from the nearest to the brain , is the cerebrum , the brain stem ( the vital center ) and the spinal cord ( this is the end of the central nervous system ) and peripheral nervous system ( the part of the nervous system below the spine ) . `` I read the newspaper in the web . `` And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courage to learn more about cooking . What ruins our life is definitely our negative thoughts . They emerged from MySpace first , and recently they have become famous in Japan , I think because of her cuteness and some of the songs . . . * As an English major student I must learn how to understand English well , so I am reading the English book ' Black Boy ' by Richard Wright . I could n't understand all of the story , but I know approximately what it 's about . I believe that . I 'll go to dancing lessons ` again but I do n't have enough money at the present moment . . French in general : it 's agreed that we strike , criticize , and complain too much . I was a system engineer in Japan , but I want to find another interesting job here . We delivered punches at each other , but it was only me versus three students . I do n't usually buy imported items because they are a bit pricier than regular items , but they were on sale . The labor force , composed of prisoners , soldiers , and workers , built the wall . This is my first writing on Lang - 8 . I just found this site accidentally , and I think it will be a lot of help to improve my English . Recently , a friend of a friend of mine who was born in Australia , teaches me English on the phone . This week is very hard for me , because I have part time job on Monday , Tuesday , and Wednesday , and I plan to play on Thursday , and I plan to go to Kyoto on Friday . ( ^ ^ ) * Of course , I have college classes that I must study for . I watch SESAME STREET podcasts on my ipod in English . So I have to acquire the English language in order to work well . My plan to study english is to write english compositions and watch DVDs of FRIENDS , which I heard is an interesting comedy in English , everyday . In spring every year , Japanese hold parties in which they welcome freshmen . I 'm afraid I lost the opportunity towork at thatorthopedic hospital . I 'm fed up with arguing about problems . I 'm afraid to become adult . < best Its difference from the Japanese Culture . Unfortunately , there is no chili pepper Kimbap on the long menu of this restaurant though . He told me that the Spa is becoming popular in the Philippines . Of course we have to feel sense of alienation when we see foreigners at airports or other countries or our towns . If you imagine your country is a small island and English is spoken in only your country , you will see it would be a big handicap for you guys . But foreigners have been speaking English since they were little as the publicly spoken language . But of course they only spoke English while we were drinking , so I could not enter the conversation . When I had opportunities to speak in English , my Japanese supervisor would say things like `` You said ' a water ' and forgot to add 's ' to ' he want ' `` after every one of my speeches . We had two visitors from Vietnam at my home . I watched the news yesterday and I heard that there are many people affected by this influenza in the world , and also there is one person visiting Mexico and is guessed to have this disease in our country . Actually , I 'm pregnant and I 'm suffering from morning sickness , so I felt gloomy before the wedding . We went sightseeing , had lunch and bought seafood such as crab and flatfish there . Please teach me what that means . I have to get the licence by April , so I 'm learning how to drive . I really enjoyed her performance . I 'm worried about getting fat because I put sugar and milk in my coffee . I 'm going to go to my friend 's wedding , and congrate her . Recently , I have been tired due to my work . because you are Japanese you can get a higher income . But I think going on a trip on Christmas Day is a good idea , because you can enjoy Christmas lights in places you have never been and also sight seeing . So I 'll try it with an accompanying CD of a English dialogue textbook . `` Pirates of the Caribbean : On Stranger Tides `` was exciting , too . So yesterday I looked fearfully at the scales . It 's so expensive . I have no friends to study English with here . But now , he has found himself and is reflecting on what he did . Sports Day is going to be held at my son 's preschool next week . So , please talk with me on Skype . Yesterday , I got / bought a game . If possible , I want you to correct my diary and know about Japan or Japanese . My diary is mainly about my own daily happenings , Japanese news and culture etc . If you are interested in that kind of Japanese culture , I 'll be so glad . There are various types of Japanese ' Sake ' like `` hakkaisan `` , `` koshinokanbai `` , `` kobuta `` , etc . Freedom Day ! ! Finally , should I say anything else ? Therefore I need to achieve a score of 6 . 5 or higher on IELTS I was surprised how fast she mastered phrases I taught her . the lady used a marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks very painful , it just felt a little bit itchy . Do you know about Bobby Valentine . I 'll study English little by little . . . They 're farmers . Currently they are preparing to plant rice . It starts in the afternoon , so I 'm planing to go to the library in the morning to read a book ! I went to the library after the test . I 'll go to Okinawa this coming Sunday with my school friends . He has lived in Hawaii for 9 years . The question was whether it should beeliminated . Yesterday , we had a translating class and it was exciting for us . In the class , we learned how to translate texts from English to Vietnamese and vice versa . So far , when I read something in English , I can understand it if it is about the subjects that we have been taught . A patient came to my clinic 3 minutes before the end of our consultation hours . In spite of being busier than usual , we enjoyed our work . So I would like to keep writing and speaking English . But I thought the tiger pencil case was more cute than the lion , so I chose the tiger . At lunch time , I was talking with my manager . He said to me , `` Speaking is most important when studying English . `` I 'm a beginner . But I do n't know the difference between tacos and burritos ; ) Moreover , I was n't in charge of the register today . Learning English on my own makes me feel that English is so hard . As we stand in the front of the restaurant , we pick one guy every week . But I 'm a little nervous becouse of my English speaking skills . My job is a project manager for developing web sites . , , , to make him interested in the Korean language . It 's raining heavily in the Nigata and Fukushima prefectures . I was more interested in wearing a Yukata than in seeing the fireworks . My English teacher is a foreigner . There is big statue of DAIBUTSU in TOUDAI - JI ( temple ) . It 's the biggest statue of DAIBUTSU in Japan . First , I watched it in English with no subtitles . My home and car are covered with snow , and the snowscape is beautiful . Dear friends ! The people are nice , the beaches are beautiful , and Okinawan food is awesome ! Maybe someone has to wite a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybe he just lost all his money . . . On september I have a plane about going to Victoria , BC . I am an easy going girl , and I ` d like to having many friends ! ! Three years ago I was a member of the fitness gym , but I resigned because of my busy job . It was really traditional , so just a few people who are family or relatives of the bride and groom could go inside the Jinja . Recently I think about it every day . It is a cloudy day today but the temperature is not too warm and the weather is comfortable and I 'm looking forward to the start of the school year . Although it is difficult , but I 'd still like to study English . and I believe it will be difficult ( hard ) . It was a surprise too . He taught me that my dream will definitely come true if I do n't give up . It is approximately 10 feet tall . I 'm studying English right now and hope to acquire the skill to speak fluently with native English speakers someday . You are my friend and I always believed you , but now I see you lied to me ! In my textbook , it was mentioned that many people in Okinawa live until 100 or more , is this true ? I can say my opinion in simple words , write ( with mistakes , of couse ) and understand other people when they speak , not fast though . They should find the power to look to the future when they fail . I was watching TV , so I fell slept in the living room without covering my body with my bedding . That is why I caught a cold . Today , I 'll tell you about a famous Japanese comic called `` ONE PIECE `` . Long flight The novels were written in Japanese . Because I study English these days , I always read English children 's books . Tanabota probably is supposed to be very high tonight , because on the night of July 7th , we celebrate the Tanabata Star Festival . I went to gym after work . Today , I can eat a lot of delicious food and get many gifts . There are many people who believed this . I learned that there will be a Gemini meteor shower ! I like meteor showers . You may get thirsty without milk or anything when you eat sweet potatoes . Even though I did not want to learn English in the beginning , but I will try my best to learn it in the future . My English teacher has taught us many words , but I can not remember them and always use them in the wrong way . What can I do ? I was impressed ! ! I replaced the sentences in the grammar book with my own sentences . My big brother participated in the Tokyo Marathon last month , which is one of the biggest marathons in Japan . My friend gave me a Goya yesterday . I would like the chance to at least eat with somebody . Some friends of mine have gone to foreign countries to learn English . . . but I do n't have sufficient time to go abroad . . ( good ! ) they were all so great , especially Harajuku and Odaiba . I want to ask you something : What resources do you recommend for learning English ? In Japan , almost all students ( elementary school , junior high school , and high school ) get summer vacation from the 4th week of July to the end of August . Today , March 10 , is the day when candidates find out whether or not they passed the entrance exam of national universities in Japan . But she also studied to pass the entrance exam of the University of Kyoto ! I 'm sad because I wo n't be able to see her if she passes the exam ( since Kyoto is far away from Tokyo ) , but I support her and believe she will succeed . Even now , the accident is going on , and because it is known that boric acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I felt really happy when my former boss told me that I would be moving to the Okinawa office , because the Okinawa office is quite popular among my coworkers . I 'm also keep reading a English book ( HOLES ) . so if the company does move to another place I must go to the main branch and work with him every day . I often have a runny nose ( perhaps a kind of allergy ? ) and I tire easily . Plz recommend me an English name ! ! Actually , I deleted the History in Windows Explorer , but I did not clear the document history . This morning , I rushed to get up , and ate sandwiches which I prepared last night . Then , I realized that I forgot my ticket and wallet at home . When I found this site , I decided to post my journal entry everyday . I know how she feels , because when I was an instructor in drawing softwares at a business school , I was happy to know my students ' improvements and efforts . They often gave me the energy to teach . I am so depressed . I study English every day , and after I finish class , I come back to home . I continue to study English but I feel my English is notimproving much . I memorize the English words every day , but the next day I forgothalf . I feel so upset . I think my IQ is good , but my memory is not so good . . . My brother told ( or `` informed `` ) me that my grandmother was transferred to the emergency room for brain surgery . Until I read another person 's journal , I had never heard about it . I 'm a big fan of `` The Dark Knight `` and `` Memento `` , and I like Ken Watanebe . However this was the first time I entered a high school debate contest . Um , I still do n't know what to write about , and I definitely need some help , because I never have time to practice my written English . . . Heavy rain ! ! And I almost finished it this morning ! I try to do the exercises but I usually must check the answers . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I was going to make a team but I could n't do it after all . And I do the other sports which are badminton and volleyball every Wednesday . A couple of mothes ago , I took a test called TOEIC which is an English reading and listening test . When the score was announced , I was surprised because I got 930 . I was really gratified and proud of my score . For example , we can get a healthier body through physical exercise and improve our blood circulation . Playing basketball is good for increasing body height and also helps to strengthen friendships . I have read a few blogs which say that olive oil makes vanilla ice cream taste more delicious . Because it cools your body down , you consume the calories in order to warm your body up again . I 'm really happy to have learned about this site and it 's a pleasure to share my useless diary . lol I 'm gong to try to keep a diary and also correct others written in Korean . I will take an English conversation class at the office . It will begin from the 13th of October . I spend a lot of time drawing . Visiting friends who have graduated . I really appreciated that , especially from my girlfriend . I have to write an essay on Japanese education for foreign students , and I 'd like to know what Japanese learners really think . From now on , I will try to explain a few basic rules in Japanese . If you need to be polite , you can say `` Watashi ha hashirimasu `` . I spend much of my time searching for information on the internet too . The experiment is also waiting for me , So then we promised that I would do nothing to help household and study English all day long . Every year , I give him chocolates . I am going to LV because I want to see Cirque du Soleil 's KA and O . The story is mainly a pirate adventure , but they also have special abilities similar to Naruto 's Ninjutu . I only started learning english recently . I 'd like to speak it fluently but it 's more difficult for me now . When I first got it done I suffered from tremendous pain for two days . Green revolution has brought about great benefits for humankind as a whole . Until the last moment the mother kept hugging and protecting her I studied my pronunciation with my teacher this morning via the internet . But today I enjoyed it because I did my homework . Writing in English is a little challenge for me . We live in different countries and spend time together for less than 10 days every year The correct sentence is `` Would you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutely do n't want to make a mistake like this ! I talked on Skype with my tutor . I worked today . It was a sunny day . She often walked on the up - slopes . That will make me more stressful . After I had done the tracery I took pictures of it . The event was canceled midway . All the people there were foriegners . As you well know , this is a traditional tactic for us . The race in North America is not good for F1 fans in Japan , because of the time difference . Our class has Korean , Japanese and Taiwanese . I went back to my father and mother 's house they are really really cool pants . If I am unable to understand these slang expressions , it will be difficult to comunicate with native speakers . Of course , I know it is important to learn these things . this season gets more meaningful . I would appreciate it if you check my English or send a message . A very very beautiful goddess stays in the toilet . So I 've been searching on the Internet for a long time . But I have chores to do , such as laundry , buying food , making a framework for an exam , learning English , editing a movie , and so on . We can share each other 's culture and languages here . Summer is horror movie season in Japan . Japanese horror movies are very scary and interesting . I so hated cleaning , especially washing floors . And I like to rid of useless things . I must will have to find myself very embarrassing one day , than there will be no stuff to through away . Sometimes my friends are joking that someday I 'll turn to Monica Geller . ) ) hahaha I should learn as much English as possible . I enjoyed this trip . I thought `` I need to learn English because I want to go on a trip tsomewhere It 's unbelievable though , having a baby at such an early age . I do n't have any cavities , but my teeth are poorly aligned . A Japanese novel I wish I could help her because it makes me happy that the foreigner read a Japanese novel . because I want to improve my English , However , in the middle of the development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becoming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . I have nothing else to do , so I powered on my laptop . Then I check the lang - 8 site . Although a human 's life - span is longer than ever before , we still have to combat diseases which could kill both humans and animals . For the first 3 months , I had been very busy and had not been sleeping . It 's because I want to improve my pronunciation . But I do n't know if my pronunciation is OK , or not . Last evening , I got insomnia , could n't fall sleep until 3 : 00 am . All kinds of things came to my mind : work , study , life , family , friends and so on . It 's difficult for me to understand people speaking at ordinary speed yet . Anyway , my shoulder is still very painful . Would you mind telling me how to get the discount that your invitation letter said ? I have learned english for more than seven years now . Because , the big earthquake struck Japan in March . . I 've never tried this product but when I was young and stayed in my home town , my mom often cooked curry and I would eat it in the morning . Does it Make Sense I have a feeling when I hear someone say `` does it make sense ? `` that it is either the peron is getting impatient or just being rude . Because English subtitles are useful to me and it 's free to watch it online . It seems that I will finish the whole series soon . . There are a lot of restaurants in Kyoto . Some Japanese are getting crazy about this , even when they do n't drink wine regularly . I visited the wax museum . The museum was brilliant . Do you have a Twitter account ? I made a new Twitter account for practicing my English today . I tried to memorize the new grammar for the next lesson . Fortunately Grace had space in the car . My husband set up the hammmock between the trees for the children . I really missed her Spanish omelet and I decided to make it myself . Some spelling errors . Instead of potatoes , I put tomatoes into the omelet . I went to the chilli festival in Fremantle today . Is the teaching ( studying ) method different from other countries ? I 'm going to Turkey with my customers tomorrow . postpone : Our school postponed the baseball game because of the bad weather . delay : The flight from Taiwan to Japan was delayed because a Typhoon was approaching . And She recommended me to do it . Autumn is just around the corner . And my teachers ca n't do anything because it is the pranksters ' last year in high school lol I 'm happy because the holidays are coming and I 'll be able to get out every day with my friends = D Please , correct all my mistakes . Additionally , the Singapore government disciplines harshly . Once a citizen commits a mistake , it 's very difficult to recover their career . We watched a funny movie and drank . In software business , English is the most important language because almost all major software is created by the USA . But I think a lot of college students do n't have each dreams anymore . But now , I 've realised that I have to do my presentation tomorrow . I want to become a translator , especially for movies . It will be hard work because words that a translator can use in a line is specified by the rule of translation . I do n't know how long it will take , but I want to become a translator . But I 'm sure many people are stressed out and really want to do something similar , so I also think he is a hero ! ! But outside Bangkok , the situation is much better , other cities are quiet and beautiful . They are always coming to the stations on time and very clean . They have comfortable and soft seats on the trains . I want very badly to improve my writing ability . My hobby is listening to music ! I decided to study English again for my dream after I entered the university . Actually Ive already graduated from beauty school in Osaka in 2006 , but I still wanna go . It 's not the time for writing a journal right now , since I might not be able to return home early to sleep peacefully . ( A1 ) My family makes me happy ( sad , angry , surprised , unhappy , bored , frustrated , etc ) . I work at an English conversation school as a front desk personnel but my English skill is n't good enough so I ca n't communicate well with the native English speaking teacher . Sometimes genes have great influence on children , but what would be more important would be the quality of upbringing at home , and teaching at school . So I thought I already knew English grammar So , after work I played an exercise game at home . Obviously , our life has been changed enormously by the use of computers . It is unbelievable . We never wear coats in Sempember or October . So I am going to take her to the pediatrician , which she is not used to going to , because today is Sunday when most medical clinics are closed . I do n't have confidence but I do n't want to be stressed . I went to canada to study the English language . I live in Vancouver , it 's an interesting city . I took pre - tests for my law exams from February 28th to March 2nd . There will be 8 written tests which will take 17 hours altogether , and 7 marking tests which will take 5 hours and 30 _ minutes altogether . The students in the class congratulated him on this great news . I registered at this website today because I want to ( `` wanna `` is considered slang ) brush up my English skills . In the Fukuoka prefecture of Kyushu which is in the southern area of Japan , typhoons come at least five times per year . I bought 4 packs of Sushi and delicious beers . Weather news says `` it will be snowing . `` He articulated the consonant sounds very clearly . Everyone in our class was laughing out loud . I called ETS lost and found office and left a message according to the directions . So far , I have n't gotten a call from them , but hopefully they will inform me . At 5pm , we met at the classroom , and walked to the pub . Some of them , Switzerland guy who organized the party for us , Chinese girl , and South Korean girl will leave Edmonton soon , so we took many pictures . South Korean guy became 25 , so we definitely celebrated him . I also want to drink bowls of congee and eat steamed buns , which are not easily found at night . I usually try to take a nap or study English . I am weak from a lack of exercise . . Unfortunately however , I do n't know of any classes for beginners . My native ( mother ) language is Chinese , I hope I can help someone here . I got sunburned the day before yesterday soI got somealoe to treat it . In the morning it is very nice , though ! So if someone has experience with this grammar , please tell me how to use it . In the past two days , my wife and I walked to the park early in the morning . Kodomono toki kara , geijutsu ga suki desu , ongaku , ya kakukotoga dai suki . Boku no nihongo no reberu ni stuite , takusan no kuni ni sundeita node , hokano kuni no gengo wo benkyoushimashita , demo daigaku kara ( nihongo wo ) benkyou shihajimemashita , hitori de nihongo o benkyoshite imasu . watashi no otousan to watashi no nihonjin no tomodachi mo nihongo wo renshuu shiteimasu , rainen waseda no daigaku ni ryuugakui shimasu . . I hope it will be repaired as soon as possible ! ! I 'm going to pick up one of my friends at Narita airport . Sometime it takes a long time to see them , and I have to wait a little bit of a longer time at airport . However I did n't buy anything because I did n't have any money on me . When I was a high school student , I did n't like science . What difference `` anytime `` and ver `` `` whenever `` , `` anything `` and `` whatever `` ? We went to a good restaurant , and had a great dinner . We have not seen each other for such a long time . We plowed a new field and scattered a bag of the fertilizer around it . My sister who tied the knot with a man who lives in Yamagata prefecture last year ( and enjoyed a honeymoon traveling to Italy ) got pregnant at the beginning of this year . I am already uncomfortable with the muggy weather , their loud sounds make me feel much more uncomfortable ! or optimistic information , we wo n't know the proper action to take during a crisis . When I was a major in Architecture , but now I develop PC software to do busines for employees only . About me I do n't know how to use it in context . I hate crowded places , If I were there , I would have a headache . Of course , English is required in the other three sports . And then I want to present the iconography of the altarpiece that is focused on the biblical narration and mention some features of this work . The example in Berlin is very similar to another John the Baptist altarpiece in Frankfurt , so a long discussion has taken place on which is the original . The last panel is about the beheading of John the Baptist . These three painting works are supplemented by a detailed illustration of miniatures in a Gothic arch which functions as a frame for the pictures ( or : subjects ) . Telling The program is about other TV programs I like , USA or UK drams , for example . And I made it a habit to memorize what the native speakers corrected . We discussed transportation duringmy English lesson yesterday . The shape reminds us a white heron flapping its wings , so It is called `` Shirasagi jyo `` ( white heron castle ) . When I was thinking about it , the earthquake finished . Kilimanjaro . Lately , I 've been trying to get in shape because I 've put on some weight . I might be successful if I keep dieting for a while . Aside from these , his appearance and behavior is also strange . The Japanese movie `` Hankyuu Densha `` is modeled after the Imazu railway in this town . I especially love gyoza / gyouza . Good morning ! It happens that she was n't with my friend . When I went inside , we walked along a slope next to a big aquarium tank shaped liked a cylinder . As the slope was a spiral , it made me dizzy . They are an English book and a quilting book . so I was very interested and excited ! But getting a drivers license is difficult for me to get . Because I am worried about slamming and crashing into other cars . It 's only 12 : 26 , and I wanna go home ! I wanna try the real French full - course meal , or whatever you call it : S Recently , I could n't write a diary in English . First , I practiced speaking in english with videos . Today 's topic was `` a park near my home `` . I feel comfortable and at peace when I take them . good morning everyone ! Last night my friend came over to my house . she first stayed at my house This morning I made her breakfast . because she thought that I was a good cook . Since I have the experience of being trapped in an elevator during a blackout , I am really nervous about these kind of things . Every time I became exhausted and went looking for another sports , I would gain the weight back . ( If I had known the water in the pool was actually up to my shoulder 's , I would have tried three years ago . ) However , there 's good news , especially for me . I try to stay fit without having an cigarettes . Three of my friends came to my house to study English together again this morning . I went to an English - speaking country and have been there for 7 years . Also when they said something to me , I always can not understand them straightaway . When I was overseas , I did n't watch English news channel or movies . I could not understand those popular programs as I have no idea about their cultural background . He lives in a northern part of Tokyo . I just kept silent . I am feeling nervous . Although it was boring while we waited , I believe that when we see the picture on the magazine we will find out everything was worth it . So I can eat those without thinking which dish is cheap or expensive . When I see the people 's attitude toward saving electricity , I am always reminded of the nature of Japanese citizens . Studying in Canada is a valuable oppurtunity for me to become mature and learn , and I 've had to overcome tons of difficulties . Last time when my friend and me were leaving the Superstore and decided to walk back to the dorm , a Canadian couple drove us back . Before that , I need to get my father 's permission . I 've am always thinking about what makes a good speaker . These days , I think I 've eaten too much so I am gaining weight . So I pour some syrup into my Caramel Frappuccino . But after I started talking , nobody responds to what I say . We memorize new words everyday , take classes during summer and winter vacation , and read newspapers and magazines once a week . To learn a foreign language , we should try to speak it as much as we can . And in my opinion , a test will push us to speak more and speak better . The PM Hatoyama said that he would resolve theFutenma problem by the end of this month . I did n't know what was happening . For example , when I go to supermarket , there are many things written in Japanese on the packages . If there are ( some ) words that I have n't learnt yet , I would write those words in my notebook and search them in dictionary after I return home . Anyway , it is a difficulty for me and I am worried whether it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone who I can practice conversation with the elderly . Finally , I have no idea how to learn to listen to English . YAKUZA appears in this game , Since the problem of food safety is becoming quite worrisome , Beijing citizens attempt to find farms themselves that can provide safe agricultural products . Maldive has recently become popular for honeymooners . Also , I love learning about cultural differences between my country and other countries . However the trees looks like all the others , except in spring . I 'm looking forward to the party , but I feel a little unease if I can communicate with foreigners well . anyway I will go tomorrow again . . . . . . I sold a CD set of the business teaching materials I used to listen to for 20000yen . I answered that I 'd like to eat sepecial food . `` Think about what 's different between you and them . `` But sometimes I forget , so I think I should try something again . So I have to look up the dictionary many times . This means I have to read 100 pages of the book each day because I just started to read this book today . I have had two turtles for about 15years : - ) Their name are `` KA - `` and `` ME - `` . That was her first solo concert and her first CD was released on the same day . I pretended to call a policeman . I could n't conceal my excitement about this chance for communication , because it was my first time talking face to face with a foreigner . We only briefly , greeted each other , and that was followed by a long , awkward silence . I graduated from a university this year , but the graduation ceremony never occurred . How do you study a language ? Please try this method if you would like to learn a new language eficiently . In my opinion , we have an argument between security and the risk against [ urasite ] of each school . Mobiles could be very powerful to prevent crime against children . If my freind has time , we 'll play catch or watch sports . Her birthday is tomorrow It 's very difficult . Have a good weekend . People probably just want to visit other countries even though they are going to waste money by visiting . My bad habits I have some bad habits . But recently , I 've tried to fix my bad habits . The mountain I was running over today was a symbol for Buddhist prayers . The weekend is over , I do n't like monday , and I am logging in the lang8 to see whether someone had corrected my diary , but the result let me down . I am looking forward to meeting them . Because I want to enter university . I want to study biomechanics . So ` native English speakers ` refers to the Americans . I thought that more people would come here to sightsee , and the number of suicide here would decrease as long as the path was maintained . I think that is part of the reason why suicides occur here besides the poorly maintained path . I have to prepare boiled eggs . For example , I like to invite my friends to my place , enjoy my favorite cigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( sounds like a teenage boy XD ) . I 'm a little bit of a collector of My Little Pony figures , and I love toys and all things Hasbro . The Google satellite captured something that resembles a 30 meter long snake . They are n't sure if it is a real snake , but it 's highly possible . I think there are many mysteries in the world . There is a very interesting myth in my town . Two hundred years ago , a wise Buddhist priest who could see the future said that my town would be destroyed by a huge flood . It was only a myth until one statue was ( actually ) found . There was a heavy rain in Shanghai this afternoon . My friend did n't meet the train . She planned to go to Xian today . Without that TOEFL experience , score , and training , I could n't have gotten those jobs in just two weeks . I heard that a lot of people in Finland like Robert 's coffee , is that true ? The messages said that my card 's number corresponded to the card company 's one , so they canceled my orders . Luckily , my daughter 's team won the victory . Now I restart studying ! My favorite person is Ichiro Suzuki . A Welcome Party I saw the corrections , and had to start translating it using google translator . It 's unhealthy . If I wanted to give my thanks to you , I would write in card to X `` thank you for cheering me up : ) `` I submitted an application for a new job last month . Additionally we listen to them speak with patience because we know how they feel / the feeling So we should try to think about it from the younger sister 's point of view . The younger sister , Bess , has to depend on her elder sister , If I have an opportunity , I would like to use slang words . I would say to my friends `` Hey , what 's up dog ? `` But what is it like in your country ? I ate my salad fast , and after I opened the bag my hamburger was in . He did not know whether the post office was nearby . It 's hard to explain why I like rainy days . I believe that the TV has reduced communication between family members . I doubt whether daily homework helps students Different clothes sometimes influence how people behave . I was reading a Japanese comic yesterday . Furthermore , every cigarette company should be banned for selling poisonous products Recently , I have been very busy everyday . Then one Sunday , I was invited by my friend to drive around . This surgery lasts only 10 minutes but is it safe ? ? I 've kept learning English , but my English skills do n't look good . I did n't have many jobs at work today . I have a girlfriend . She told me to let our relationship return to how it was before , when we were friends . I did n't think I would like this book 'cause romantic novels bore me . I am a salesman in spite of having a speaking problem . If I were not a stutterer , I would laugh at it . I have met several people who have overcome stuttering . I did n't feel bad at first . Some were from England , Canada and America . I called her back wondering what might have happened . I aired out my ' zabuton ' because the weather was fine . : Well now , coming in were you rooting for the Lakers or the Sixers ? : No , I know it was your first basketball game ever , and I know its very exciting , but when it 's all said and done the season will have been long enough . This site 's a little different . . . My hobbies are snowboarding , traveling , and studying foreign languages . Now I study English and Spanish . I heard that she had had strong cough and felt lazy for long time . Was the oven out of order ? The traffic ( on the highway ) in the capital was so heavy that we kept moving really slow for an hour . Almost all of them have their own jobs and they practice soccer in their off time , nights and holidays . My favorite season is summer . ^ ^ During the Christmas season , I was too busy to enjoy the festive feeling . But English is telling me * , `` Vitaly you are so / too stupid . `` * just a third option I often get angry with myself , when I go to get the coffee . I find nothing , and I have to do it all over again . One day my throat was sore . Now I ca n't breathe through my nose . On another note , I watch the TV drama `` Soredemo bokuwa ikiteyuku `` . I had n't used Dreamweaver for half a year , so it was hard to remember how to use it . However , I ca n't talk to anyone in English on Skype at the office . Thank you for reading my journal . It was difficult to understand what they were saying because they were speaking British English . Today I 'm talking about an Italian restaurant . . . . . . . I went to Saizeriya , an Italian restaurant , with my friends . Do you know it ? I think Shogaki , the president of Saizeriya , is very clever because he always tries to keep the prices down while keeping the food delicious . He has his own farms and grows the vegetables they use . Also , from the farm to each restaurant , the vegetables are kept at 4 degrees because the vegetables will keep fresher that way . He tries so many things to serve cheap dishes and be more delicious ! I will go to the shopping mall , because it is cooler than I just sit in my room . Certainly , it is very dangerous , because Japan relies on nuclear power for many parts of its electric supply . so younger people in Japan should have more interest in these problems or in politics . What do you think about nuclear power plants ? Yesterday I took part in this Lang - 8 and wrote my first journal . regret : I regretted calling her such cruel words . govern : In ancient times , Rome was governing all the world . Hi , it 's my first text on this page and I hope that this page will help me in learning english . As I was n't able to focus on the listening part , I do n't think I get a good score . Anyway we enjoyed the beautifully displayed dishes and the beautiful scenery of the countryside . He must be starved ! Avocado and fruit cocktail . If you meet people with whom you have bad memories and you have not kept in touch for years , By the way , if English speakers speak Asian languages in Asian countries , Asians are interested in them . But if I hear Asians speaking poor English in English speaking countries , English speakers treat those Asian without consideration . Anyway , Speaking English is in great demand and speaking Asian languages is not . For beginners , I think acoustic guitar is the best choice . It 's a great web site . Koyasan is a very famous place for But - ism , called SHINGONSYU . And I have invited my foreign friends to visit my home town . My dream is to run a youth hostel in my town and I hope that many foreign people will visit my home town . I do n't why , but I just feel sad ! Therefore , I think that salaries should be based one 's perfomance or the amount of benefit they have brought to their workplace . I tied a ribbon to it and painted it pink . Therefore I ate a salad to not skimp on vegetables . It 's also a good experience which can arouse my interest in language and at the same time help other people . I am willing to correct articles in Traditional Chinese , but Simplified Chinese seems to be more prevalent . Every customer seemed ( or : seems ) to love our shop ! : ) When I enter into Lang - 8 , it was a big change . In Japan most people are punctual and honest . Watch these clips , please : D for just 30 minutes . Well , I do n't get tooo much , but it 's still a good deal : D I 've been reading the book ' The Wondeful wizard of Oz ' . Now , mobile - sites are important for E - commerce in Japan . Recently , I had neglected studying . However I will go there someday ! I personally felt that AVATAR 's story was not so bad , but the visuals and 3D technology is worth seeing . I recommend it to you . I will try to introduce to you the story of AVATAR briefly tomorrow . . Official Trailer of Avatar female : I wanted my hair cut by a female when I went to have my hair cut . Last month I took the `` Tourism English Proficiency Test `` and passed it ! It was heavy , even without fried potatoes the double - decker hamburger was enough to fill my stomach till the evening . english is so duiffcult What can I do to strengthen my english skill . It is exercise for my brain . I often say `` pardon , please ? `` . I work at a convenience store that is near my house on every Saturday and Sunday . many people come in and behave differently . that is one of the reasons why I work there . I think that most English learners dislike grammar which is essential to understand well when speaking English fluently . I have alredy noticed the reason why Japanese are n't eager to speak English in front of Native Speakers . An English man came to my gym to do training . `` Consult the dictionary `` is just serious . I looked up the word you taught me in the dictionary . But evidences ( OR my experiences ) proved that I was wrong since most Singaporeans can speak Mandarin . And we are trying to figure out the most efficient methods to improve our speaking . SO , good luck for us . ' The time when you think it 's late is the perfect time to do it . ' and ' The man without motivation is not different from a dead body ( man ) . ' But I hardly speak or hear English , and I am not good at reading and writing . My English teacher always wants me to write English compositions , but I am scared to do so . Even so , those gadgets looks convenient and useful . Suddenly , she became silent . It is very cold at the office because of the air conditioner being put on high . My seat is right under the air conditioner . The next game is supposed to be released in the NINTENDO DS . In Japan it is winter now . Recently , I happened to hear very nice music . I watched the Disney movie `` Enchanted `` . My friend introduced me to this useful website . Although my Japanese is not good enough to write an entry yet . I have studied english for about a year . I ought to have breakfast by stopping at a restaurant before getting to the airport . Because it is very different from what I used before , it is very difficult for me to use it . I really want to visit there again , and , if I can , I will live there for several years . Last week , the whole northern part of Taiwan had been enshrouded by depressing rain for a long time . And because of the rain , I could n't go very far to eat out , and I could only choose the restaurants nearby . I have to wash a lot of laundry ! I 'm relaxing on holidays from 8 / 13 . Today I 'm going to clean my room , do laundry , wash the dishes and so on . I do n't like the bus because it 's crowded . Because the job notice was supposed to be annouced today . I called and asked why the notice has not been announced and they said that it was delayed until next week . There were many vendors selling everything you could ( possibly ) imagine . Yesterday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croquettes because they do n't cost very much ( around 10 - 20 yen each ) and croquettes with brown ( worcestershire ) sauce is the best with beer . Since I had notspoken English for longtime , it was difficut to speak fluently . Sometimes , I encounter difficulty in correcting students ' English composition , so I need help to correct them . However , after coming to the US , I feel this is not true . Please let me know about the racism that your country has . I love jogging . I used to have this habit , but suddenly I stopped . So , we just had the Gay Parade , which is one of the gratest parades in the world . I think it 's a great web site because I can practice English here and I hope that I can help others to learn Chinese too . this is my first time I received an e - mail from someone who saw my profile on the website . And I accepted his invitation . I learned that I should never use the webcam with a stranger . And I deleted my profile instantly . I tried to study Spanish after I came back to Japan , but there was no lecture in my university and I did n't have enough time and money to spend for it . My friend has been going to University at night time or holiday as well as going to work for the past 5 years , they said . I have never tried something like that , so hearing about it touched my heart because for some time I also wanted to go to University but I could n't decide how to do it until now . What my friend said made an impression on me . As you know , more and more people are unhealthy , but why ? Which of these sentences do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? If I will have any power , I 'll write an essay . I 'm pleased to love it because I want to spesk English very well , as if I was a native speaker . If I need to make an appointment with my friend , but I am not sure when he is available . Then I brought the bicycle to a ( bicycle ) shop , to ask for a repair . My hobbies are learning languages , speaking with a lot of people via Skype , drinking at the bar with my friends , reading books , going ( travelling ) abroad and so on . Recently I have started to want to get one more and more . Especially , I want to talk to improve my English skill . And one hairdresser came to me and asked me They looked quite mature for their age at the entrance ceremony because they were wearing suits . My university does n't have a lot of students but I can make friends with almost everyone and I 'm looking forward to that . Yesterday , I was depressed because I went to my part - time job , but it was my day off . I 'm into horoscopes these days . I always feel excited when I sing karaoke . [ alternative ] One of my double majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rmb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationship ! I 'm looking forward to going out for dinner with her . I am a 23 - year - old Japanese girl , as I mentioned in my profile , and I mainly work as a kindergarten teacher . Hard schedule . I feel I 'm lucky and I want to care my daily life . I am not sure if they do drugs like drug addicts or they did it just once , because I only heard it from someone that I hardly know . So I decided to ask the two guys face to face if they are drug addicts , or if they are dangerous , because I do n't want to judge them and talk behind their backs . Near the beginning of our relationship , he made me a dinner and there was only some fried meat and some instant mashed potato . The healthiest food among what he think is healthy is a subway sandwich but I know the white bread is n't really healthy , at least for Korean . The e course involves listening to English for 1000 hours in a year . According to the explanation of the course , it is generally said that about 1000 hours are required to get used to hearing a foreign language accurately . The course cost about fifty thousand yen . It was not cheap but I could pay for it thanks to the welfare program which my company offered ( to ) me ! The course will begin next month . And when I was a high school student , I experienced a job at an airport . So , I wish to become a customer service agent in an airport . I am learning English and Chinese now . It was a game in the UEFA Champion 's League . I had lived there until graduating from high school , after which I left Hokkaido . Spicy Foods & Cat 's Tongue It is a Japanese custom for woman to give a person she likes sweets : ) I 'm very happy because I want to learn English in a more proper way . It was raining heavily today . about my life on rainy days . Study animation abroad . He is studying Japanese animation at school . I do n't know what kind of animation he was studying ? But we had a nice conversation together . He looked like a funny and friendly guy . It is a delicacy ! ! I enrolled in an online English school a couple of days ago . Can you believet that tt one lesson ( or : that the fee for one lesson ) is only between 1 $ and 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expensive . An Amazing Website for Language Learners ! Right now , I 've come to be able to understand recorded voices in English , but it is still hard for me to understand what they are singing in English . They sell various kinds of cakes there . [ alt . ] But I think I prefer the clothes which suit me . others . I like nearly all clothes colors except red , but I do n't know why . All reds ? I prefer the flashy things . My favorite jewelry is earrings . I could n't sleep well last night because I was coughing all night . I 'm a really short tempered person . Before I came here , I thought `` If I live in the U . for a year , I will be a really good English speaker . `` But I was wrong . I am surprised at how difficult it is to learn other languages . So I was really disappointed in myself and kinda bored of studying English . But Lang - 8 often encourages me to study , because I can see many people who study other languages and may have the same feelings . I really like to correct foreign people 's English . I was typing my first journal on Lang - 8 little while ago , and when I hit preview , my computer screwed up . . . so I am re - doing my Journal . Are there ramen restaurants in your country ? First diary ^ ^ I 'm interested in learning about other country 's cultures and making friends ^ ^ She smiled and asked me , `` Why did you choose me ? `` I do n't think we are either close or distant ; we just call or text when necessary . But in the last few months we have been ignoring each other due to my imprudent words . I think everyday , `` l 'm happy , l have all things l want `` because of this , but sonetimes because l do n't want something Becouse if I think too much , I ca n't continue . I am busy , so I am going to just try and try . So my friend advised me to write my journals in this site . I want to use the phrase `` get to the bottom of this . `` I will have an art class . I 'm going to go near the port and paint a picture of the fishing boat . Yesterday , I played soccer from early morning . I will join a soccer tournament in November . I have a dog for ten years . We saw two ponies , a pig and chickens . Many kids kept trying to feed them . I think I should be more careful and diligent for work . Dubois put her girls to bed and was waiting for her husband , sitting on a sofa alone with lights turned off , when Mr . Dubois who was deeply distressed finally said to him , `` Honey , it 's already 9 o ' clock . `` But in Japan we only buy presents for children and couples . So , I decided to return to where my university is located . My ankle was hurt last Thursday , and I got another unknown disease last saturday . My bad luck began when , last month , I went to a temple to pray for more money . So I was thinking I definitely have to go there again . I ca n't wait to have the party : ) and also for the Halloween parade at 6 AV : ) I hope I have the patience and perseverance to keep on writing diary entries in By the way , I registered on facebook yesterday ! He looked at his feet , and saw there were tiny animals . He was scared , so he ran along the inner way . Furthermore , some adults play sports there as well . When I arrived at Osaka , it was raining heavily . If I eat a hamburger slowly , chewing it well and tasteing it , I always regret eating it . Recently , I could only go to work two days a month because I have been receiving post - surgical chemotherapy to prevent the cancer 's recurrence and metastasis . Though it is regrettable that I got sick , I believe my disease has helped me develop a greatness of soul . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio channel . Of course , I realize that my range of vocabulary and way 's to express are limited . I have to study tonight for tomorrow 's tests . Yes , I know that I will soon enter into a university and I 'm 18 years old . I jogged only this weekend , but I think it had a little / some effect in decreasing my weight . This is my first time using this kind of website ; My friend recommended it to me . Example sentences are welcome . I would keep taking lessons but I do n't have enough money . I really enjoyed her stage performance . `` Pirates of the Caribbean : On Stranger Tides `` was exciting , too . Currently they are preparing to plant rice . It starts in the afternoon , so I 'm planning to go to the library in the morning to read a book ! But I 'm little nervous because of my English communication skills . My job is a project manager for developing web sites . On september I have a plane about going to Victoria , BC . I was impressied ! ! The first one is called Tyria and has a more detailed history than the other two , I 'm also reading an English book called HOLES . In the morning , I rushed to get up and ate sandwiches , which I prepared yesterday night . At that time , I began to realize that I had forgotten my ticket and wallet at home . When I found this site , I decided to post my journal entry everyday . I know her feelings because when I was an instructor in drawing software at a business school , I was happy to know my student 's were improving and using effort . I know it is really hard do it , but sometimes I 'm lazy or drowsy and would like to sleep . The story is mainly about pirate adventure , and they also have special abilities as similer as Naruto use Ninjutu . I worked Today . And , that will make me more stressed . I would appreciate it if you check my English or send a message . I really hated cleaning , especially washing floors . It is useful to me because of the english subscriptions , and it is free to watch . Do you have Twitter account ? She recommends that I do it , too . I 'm learning new vocabulary to become more efficient I took practice tests for my law exam which will be held from February 28th to March 2nd . It consists of 8 writing test that take 17 hours and 7 marking tests that takes 5 hours and 30 minutes . Everyone in our class were laughing out loud . I called ETS lost and found office and left a message according to the directions . So far , I did n't get a call from them , but hopefully they will inform me . At 5pm , we met at the classroom , and walked to the pub . `` `` from South Korea became 25 , so we definitely celebrated his birthday . So if anybody has experience with these , please tell me how to use them . Kodomo no toki kara , geijutsu ga suki desu , ongaku , ya kakukoto mo dai suki . I am an exchange student , so I need a host family to live with , and also there are some other exchange students in my high school , and they also live with their host families . And then , I want to present the iconography of the altarpiece , focusing on the biblical narration , and mention some ( special / particular ) features of this work . Since the slope went in a spiral , it made me dizzy . First , I placticed speaking in english with videos . Then , I wrote an essay . Good morning everybody ! last night my friend came to my house . she stayed at my home this morning and I made her breakfast . because she thinks that I am a good cook This is Sarah 's daughter . I went to an English - speaking country and was been there for 7 years , So I can eat without thinking which dish is cheap or expensive . Before that , I need to get my father 's permission . So , English native speakers meant Americans . When it was lunch time , I was going to go to the restaurant . It 's unhealthy . So we should try to think about it from the younger sister 's point of view . I aired out my ' zabuton ' because the weather was fine . The highway in the capital was so congested / packed / busy that we moved really slowly for an hour . I ca n't talk to anyone in English on Skype at the office . Anyway we enjoyed the beautifully arranged dishes and the scenery of the countryside . Anyway , Speaking English is in Great demand and speaking Asian languages is in little demand . For a a beginner , I think acoustic guitar is the best choice . My dream is to run a youth - hostel in my town and I hope that many foreigners will visit my home town . And for just 30 minutes . My wife was amazed at such beautiful pictures that she was excited all the time while watching the movie . I , personally , felt that AVATAR 's story was not so bad , but the images and 3D technology are worth seeing . I recommend that you watch the movie . I will try to present the story of AVATAR briefly tomorrow . Official Trailer of Avatar An English man , a member of my gym came for training . while trying to figure out the most efficient methods to improve our English speaking abilities SO , here 's wishing good luck to us . although my Japanese is not good enough to write an article . I called to ask why the notice had not yet been announced , and they responded that it was delayed until next week . Please let me know the racism that your country has . I felt weird putting something into green tea but we put sugar into English tea so maybe it 's the same thing ! : p However , to me , the most important things are relationships ! He is studying Japanese animation at school . He looked like a funny and friendly guy . I enrolled an online English school a couple of days ago . Of course , he 's never at temples , shrines , churches , and mosques . There were various ( types of ) cakes there . Today , I tried to call the hospital and I was able to get an appointment . ( so ) OR ( therefore ) my friend advised me to write my journal in this site . We went to Bexhill near Eastbourne . We went to see The Red Arrow show in Eastbourne . We saw two ponies , a pig , and chickens . Many kids tried to feed them all the time . Though it was regrettable that I got sick , I believe my disease developed in me a strong will to recover ( alternative ) It starts in the afternoon , so I 'm planing to go to the library in the morning to read a book ! And he has learnt some Japanese words . The story consists mainly of pirate adventures , and the main character also has a special ability similar to Naruto 's art of ninjutsu . But I ca n't believe she is having a baby at an early age . I 'd like to go by car , but it has been broken since two days ago . last night my friend came to my house . this morning I made her breakfast . because she thought that I am a good cook I recommend it to you . I really wanted to go to the English school but I have stopped because the lessons were too expensive . so my friend advised me to write my journal on this site . He can speak some Japanese words . ================================================ FILE: data/example_data/bea60k/test.bea60k.noise ================================================ I WANT TO THAK YOU FOR PREPARING SUCH A GOOD PROGRAMME FOR US AND ESPECIALLY FOR TAKING US ON THE RIVER TRIP TO GREENWICH . IN MY OPINION FAMOUS PEOPLE ARE BEING OBLIGED TO PAY A PRICE FOR BEING FAMOUS THAT , IN SOME CASS , COSTS MORE THAN THEY DESERVE TO PAY . Also , I want to say that the plays and films were exellent , but there were n't enough of them for me . In our Acadamy we are not allowed to smoke . I was trully dissapointed by it . Secondly , I had to wait fourty - five minutes before the show finally began . I 'd like you to send the money to this adress : ul Taklowa 10 It is a dream becames true and was really unexpected for me ! If not , what do you sugest ? The festival was excenent in many ways , and in particular it being an international festival was a challenging , but brilliant idea . MY NAME is JAMES CAMIREZ AND I AM WRITING THIS LETTER TO YOU BECAUSE I HAVE SOME COMPLEINTS REGARDING THE DISAPPOINTING EVENING I HAD LAST NIGHT . SECOND I GOT TO THE THEATRE AT 19.20 BECAUSE IN THE ADVERTISEMENT IT CLEARLY STATES THAT THE SHOW STARTS AT 19.30 , AND I GOT REALLY MAD WHEN I LOOKED AT MY WATCH AND NOTICED THAT I HAD BEEN WAITING FOR 40 ( FORTY ) MINUTES AND THE SHOW HADN'T STARTED YET ... I MEAN IT WAS AMAIZING ! I COULDN'T BELIVE IT . HOW CAN THIS CLASS OF THEATRE BE SO .. OH I'M GETING MAD AGAIN SO I AM GOING TO TELL YOU ONE LAST THING , IT WAS THE MOST HORRIBLE NIGHT I HAD EVER HAD SO I DEMEND MY MONEY BACK ! MODERN TECHNOLOGY HAS AFFECTED ME IN SEVERAL WAYS . I MEAN THE MORE THE TECHNOLOGY ADVANCES ; THE MORE CONFORTNESSCOMFORTABLE WE GET . BUT I THINK ALSO THAT WITH MODERN TECHNOLOGY WE GET MORE COMFORTABLE SO THAT MAKES ME A PACIVE PERSON AND NOT SO ACTIVE . THIS CAN BE BAD TOO BECAUSE IF I GET USED TO BEING CONFORTABLE , WHEN I NEED TO DO HARD WORK I WON'T BE ABLE TO . Everybody attented go to the show , funny , and happ in the end , and what have we go then ? Disapponted ! If you could not manage the programe , why did n't you informe people before the programe started ? I tought you inderstood ' ; please send money back to me , you know why , do n't answer me ? Now we know , our world has developed to new world , becase we have high technology to do . Today , teachnology is a part of life . It started from got up in the morning , we have the machine help us to cook , iron , cleanning , washing , and then we went out to work , there are car , sky train to travel for help us convenience and quickly . We appreciated the mordern technology changed my daily life for help every easy and quickly , we have time to do many things . It is a good start to go on a sightseeing bus on Monday morning , because we can se all the famous buildings in a few hours . On Wednesday after we have viseted the National Art Gallery , we can have a chat about our next holiday during the free time in the afternoon . Nowadays the main attroction in the newspapers and on television is the private lives of famous people . On the whole , being rich and famous does n't always bring happeness , whereas the majority of the population wish they were rich and famous . Last week we had another demostration of this . Firstly , it will introduce the latest fashions connecting Millenium . Whenever I recollet it , I feel self - confident . Firstly , I would like to say that I 'm very glad to have been choosen and I will do my best for this competition . As you mentioned about the accomodation , I would prefer to stay in a tent , because it 's more exciting and I really love camping . However , I would choose sailing because I am facinating with the sea and its misteries and I also like the watter , the wind in my face ... The other one I would choose is basketball becouse I 'm tall and very fast with the ball . It was unbelivebly ! ! ! Are you studing a lot ? I have just received your letter which made me so hapy . I can not belive that I won first prize in your competition , because I have always believed I am an unluky man and now I think some things are changing in my life . I would definitly choose basketball and swimming wich are my dream sports . I would like to ask a few things , specialy about the wheather : what is the weather like in July in the U.S.A ? What kind of clothes will I need and how much money should I take with me ? Because I have never been to the U.S.A. before I do n't know anything about it . I have never enjoyed doing shopping , but nowday there are some people who are called shopcholic . They are just like alcholics and these people go shopping every day because they can not stop themselves unless they have not got money to spend . Because nowdays whereever you go there is a big queue and I hate waiting . The queues are not the only problem . If you go by car there is the problem of parking , if you go by bus there are also queues and you have to carry a lot of carrier bag carrier bags during your journey and you wo n't always be luky enough to find a seat . Specialy if you want to buy clothes with your girlfriend or if you are a girl , you have to be ready to spend hours trying on clothes . I realy hate going shopping with girls to buy clothes because when they go into a shop they want to try on every single item of clothing and they do not realise the time . Some people say " shopping is not always enjoyable " but for me it is definity unenjoyable and I think it will be the same for the rest of my life . First of all , when I bought the ticets it appeared that there was no discount available . It was awful when he started to laugh and everybody was stearing at us . Firstly when I went to the show it was written that the start time was 19.30 but it started at quarter past eight . I had waitted for forty - five minutes . I just knew I should n't have trusted her but as I went in the house my dad asked Pat to stay for a meal . I was in schock , thinking why is n't anyone getting angry with me ? After a while we sat down for dinner and Pat just told my parents that I was smoking and when my family heard they got ever so angry . As my husband is a native and we live in Switzerland , we apreciate spending a week in London every year . First , we could n't get a discount , although you mention it in your advertisment . I walked back , hoping I would n't come accross anyone and be able to drive back home . Firstly , could you invite stars and artists from more than only six contries ? In my opinion , it might be better to have time with a variety of nationallites . As they know about your interestings and personality , it is easy to help you . I would like to make some appoitments about the event that I went to . - Art exbitions to teach us more things about the artist 's lifestyle ; and Well , about rules in my contry , the situation is not different from other countries . The rules must be respected by all people if you do n't want to be kicked out of scholl . However , some of them have read an advertisment about the London Fashion and Leisure Show , which will take place at the Central Exhibition Hall in London on 14th March . Also the most famous star can be unhappy and depresed : in fact , money and celebrity do n't always bring happiness . In addition , addmission for students is free . Yours sincerily , On the other hand , the bond between parents and children is unlikly to change . The smokers in the school yard , the buffett and the other pupils , who are sitting at their tables doing their homework . That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredome . I am sure that eventually we will take off our clothes and in the future we will be undressed and free . There wo n't be any problem with being up - do - date . Of course , you ca n't afford a luxualy car and a large apartment unless you 're born with a silver spoon in your mouth . It 's also a really popular job among university students because of the good salaly . I was really suprised when I opened it . I look forword to going to the Camp California in the USA . Because it remainds me of my childhood . I used to go with my friends to a camp , wich was situeded by the seaside . Nowdays we have many big shopping centers . The most suitable time for shopping is the weekand when parents do n't work and children haven't got school . Because of that , shopping centers are overcrowded . You ca n't buy something in a peacful and calm athmospher . However such centers are very useful and necessary . In my opinion the worst thing which may happen is an extremly long queu for the changing room . If you bought something goregous , you will be very happy . Yours sincerelly I 'm writing to you because of the musical show " Over the rainbow " , wich I saw on Friday the 16th of June in your theatre . There are several points I have to complain about wich meant the evening was not nice at all . Instead of half past seven the show startet at quarter past eight . I could n't go to get any refreshment for two reasons , the first one is that there was no information about how long the start of the show was going to be late by . On your tickets information is written that discounts are available , when I asked at the ticket office I could n't get any discount for beeng a student . After one hour the hohle class had heard about Sarah 's secret . Everybody was interested in what she had won but knowbody wanted to ask Sarah because it was told as a secret to them . Sarah realized that everybody was nice and friendly to her but something was going on in the class , when she turned around talking and wispering started . Sarah looked at him for a while , then she stood in front of the class and explaind to the others that she had won a prize for 20 people to travel for 1 week to the coast of southern France and every one of the 19 pupils was invited , except Pat who was n't very good at keeping secrets . I read your advertissement five days before , and I was realy impressed by it . But , the quality of this show was n't what you led me to believe it would be , and I feel realy disappointed by it . For all these reasons , and if you want to keep me as a customer , I would be gratfull if you gave me some or all of my money back . Yours sincerly , My marks were n't good enought to obtain my degree in Computer Science , and the exam session was finished . I never talked about this project to anyone , exept my best friend Pat . It is a great opportunity because this show is only every two years and normaly it is difficult to go in . Or going to the show on wensday morning and in the afternoon , we can choose between free time or the National Art Gallery . I look farward to hearing from you . They found hime two months later and six months later he was in jail . I am writing this letter to complain about your advertisement for the musical show " over the rainbow " , wich is misleading in a number of ways . Sweating and affraid I waited outside the director 's office the following day . Tairs ran down my face as I admitted having stolen . I was suprised that my father did n't watch me but I soon understood that he was ignoring me . That evening my father said a few words : ' May this be the end of your career as a thief ; we are only ready to forgive if you promiss never to start again ' I am writing to reply to your letter in which you told me I won first prize in your competetion , which is two weeks . I was very happy with this result since I did not think I could win . The aim of this report is to suggest which activities in our daily life at school shoud be filmed to give the other students an idea of what we usually do , not only during the lessons but also the rest of the time . The porpouse of this letter is to complain about my experience with the musical " Over the Rainbow " , wich really disapointed me . First of all , there were no diccounts avaible such as were promised in the advertisement so I had to pay the original price wich was n't cheap at all . Then , I was forced to wait forty - five minutes to see the show because it started at 20:75 instead of 19:30 and , when it finally started , I was really disapointed to see that the actors were n't Danny and Tina as it had said in the advertisement . Your really dissatisfied costomer How has modern technology afected my daily life ? We live sorrounded by inventions wich help as through the day . The reason for my decision is that other activities are also available in my country , except climbing , but I have a fear of heights so this one is not destinated for people like me . Acctually , they put me very close to the stage , in the middle of the real hell . This is the main reasone why I want to ask for a refund . People wo n't be embarassed to show the beauty of their bodies . Moroever , I have chosen this month because I think the weather will be fine . During my stay at Camp California , I want to go swimming because I practise this activitie regularly and I often enter competitions : this is one of my hobbies . Then , there was only one hour left to install the different color lights ; it was just enought time . We would suggest going to this fabolous show . Yours Sincererly , Despite being used in many ways , it could entartian us as well . Although I imagine them in my house in my future , I am sure I would be suprised if I had them . A usefull helper : the personal computer can quickly help you in lots of situations . Although the world of computers will develop day by day , I lively hope we ( human beings ) can mantain our way of seeing things . I'M VERY PROUD TO BE THE WINNER OF YOUR COMPETITION ! I HAVE NEVER BEEN TO SUCH A CAMP BEFORE AND SO I'M LOOKING FORWART TO SPENDING TWO WEEKS THERE . IT IS ONLY POSSIBLE FOR ME TO TRAVEL IN JULY BECAUSE OF MY UNREGULAR WORK . HE 'S A SMAL ONE ! I'M LOOKING FORWART TO HEARING FROM YOU YOU KNOW THAT I ALWAYS WANTED TO HELP AT A CONCERT . TO BE PART OF THE STAFF WOULD BE WONDERFUL , I THOUGTH . AND I WAS RIGHT ! AS YOU KNOW I WROTE TO THAT ORGANISATION WHICH IS ALWAYS RESPONSBLE FOR BIG EVENTS . ALL OF THE STAFF AND THE ORGANISATION SPOK ABOUT THE RULES AND HOW TO SAVE PEOPLE . WE WERE A GROUPE ! ONE TEAM ! BEFORE THE CONCERT WE HAD A BREAK TO EAT SOMETHING AND TO TALK TO EACH OTHER . THE CONCERT WAS VERRY LOUD AND LONG BUT WE DIDN'T HAVE TO WORK HARD . GREATING AND HOPE TO SEE YOU SOON However , it was a very dissappointing evening for me . Firstly , it was mentioned that there were going to be two starrings but , in fact , only one actor was performing in the show . Thirdly , the advertisment said that discounts were avaliable but the ticket seller said that there was no discount allowing or avaliable . In addition , the advertisment mentioned that the restaurant would be open after the show but it was closed because short of cooker . Finally , I would like to ask for my money back on the ticket due to the disapointing evening out and the misleading advertisement you have created . Nowadays , modern technology is becomming absolutely essential to our daily life . Without all this your life would definately change back to the same position as it were 50 or more years ago . If this continues to happen our life will be very misarable as accidents happen all the time . Thank you very much for the many interesting positions in this schedule , especially the river trip to Greenwich , which , we are shure , will be very exciting . I would like to inform you that we have seen an advertisement for the " London Fashion and Laisure Show " and we have found it very interesting . Suddenly I heard a noice from my garden and I wanted to know what it was , but it was impossible to do it . I was affraid that someone was near my house and wanted to get into my house . I was very frethend , but I knew that I had to do something . I was shure there was someone on the other side of the wall . The only thing which really disapointed me was a visit to your theatre where I wanted to see the musical ' over the rainbow ' , after I read the advertisement for the show . The things that really dissapointed me were that you said Danny Brook and Tina Truelove were the actors but they were n't , different actors played and to be honest they made the whole show very bad . To be honest that was not a great expierence and I hope you will see my point . Since everyone can afford modern technology everyone 's life in the more developed countries has changed completly . So in the last century our daily life has changed dramandesly and we have become lazy and our life unpersonal , fast and unromantic . Your advertisement mentioned that the famous Danny Brook would play in this show but disappointingly it was another , unkown actor who starred instead of him . All those innacuracies spoilt what should have been a memoriable evening so I would like to be refunded at least for the price of my ticket . He did it some more times , and in the end nobody took any notice of the shoutings . You are working with your ideal woman , I still ca n't belive that I spoke with her . At first I could n't belive that I was a winer My school starsts in September and it finishes in June . If I could go in July that would be greate . I would like to ask you , what sort of clothes should I take with me ? I do n't want to take too much ; jeans , jumper , swimming costium , T - shirt , sports shoes I think should be O.K. At first I was helping to seill the tickets - it was n't difficult . We had to check evey plug , switch , light . I could n't belive how big a lamp can be . fortunetly nothing had happend . Only people who were helping and organizating this concert could meet her . Some of them were speaking with her , I was n't this lucky person , but still I 'm happy , that I could be thear . Log cabins may be more confortable . On the other hand I think that I will be able to " survive " in a tent . I vish you had been here with me . You can not imagine how dissapointed I was with myself . We started to put everthing on the stage and after this we realized that the band was coming onto the stage near us . After all of this we saw the show from the best place , near the stage and afterwards , the thing that I most liked , we were convidated to see the group and got their signatures . I have got a few things to complain about regarding your theart . I deciced to go and visit your theatre restaurant . For example , once people had to walk from one place to another , but now we can use sciene and technology to produce a lot of petrol - powered vehicles and we can travel faster with them . We can also use techlogy to produce more food and help them grow faster . The rules at home are very different . I am allowed to do what I want as long as I studie enough to aprove . It is not allways easy , but there are rules in every home and you have to respect them . I hope you will agree with our suggestion and if you have any further questions do not hesistate to contact me . In addition to this , you may have some roboters bringing the newspaper to the table , tidying up the house , and doing the shopping . Maybe they will also be your life patners . I and my friend Emma helped to paint the scence on the stage . As you know , I like drawing and painting when I have some free time so that is why I chose to paint the scence . Moreover , the restaurant was still under construction so that we could n't use it when we were extlemely hungry . One of the biggist things that have changed is the change in the methods of communication . I have mentioned a few changes above but there 's still the biggist one left , which is related to the field of computers . I refer to your advertisment in the Herald Tribune where you advertised the Circle Theatre and the recent musical : When we arrived at the theatre we realised that there were no discount tickets available as were mentioned in your advertisment so we had to buy the most expensive ones . I am looking forward to your promt reply . Today the fashion industrie has a great importance in the commercial market . There are the natural materials on one side whereas on the other side the fashion industry produces more and more syntetical materials , which relay on the production cost . In 100 years most clothes will be made from syntetical material . The contrast will be especially attractiv . Furthermore the style of the clothes is going to be more crazy and individuell but there will still be enumerous clothes for conservative people . On balance fashion in 100 years time will be confortable and colourful . There will be clothes for everyone 's tast . Our school is really very diciplined , especially about our clothes and behaviour . When I read the advertisement , it said that the restaurand would be open . On behalf of the class I would like to thank you for the excellent programme you have organised , especially the idea of visiting a galery . I grew up through the water world and I could n't live whitout it . I love sports so I would like to play some basketball at the camp . By the way , my team and I won the last scholl championship . I play guard on my team . I also like tennis but I am not very good . I was wondering if you could give me some lessons while I am there . I do not have words to express how happy I am . I would like to thank you and Camp California for this oportunity . Since man became man he has needed to hunt to survive . In ancient times he used spears , bows and arrows , and the wemon 's role was to collect items like vegetables and stuff . Nowadays , in the year 2000 we still practise this ancient art but in a diferent way , we do n't use weapons for hunting animals in the jungle , we use the remote to hunt TV shows , and we do not collect vegetables any more , we go shopping . This activity of shopping has become one of our most important , after all , we go shopping for any reason , we have developed such an instinc for shopping that we can proudly say that we are some sort of kings of the urban jungle . If an activity has stayed with us , mankind , for so long , it must give us some pleasure and maybe that 's why shopping has become such an important thing in our lives because it gives you pleasure when you find what you have been looking for and if you can get it for less than the price marked on it , that is the greatest of extasis . But where is the bad part of it ? Well shopping can became horrible at christmast for example , when houndred of people go to the shopping center and it also can cause many problems when you become an impulsive buyer . Shopping is not always enjouable because of several factorors . One could be when you go into a shop and you find something that you like , and you decide to buy it , but when you see the price , you find out that it 's too expencive , and you can not afford to buy it . This cituation is very annoying for most people , and that 's what makes shopping unejoyable . Why do n't we include some sports , for example , voleyball ? Furthermore , it 's a worthful experience for people who want to know about other countries ' arts . Finally , with regard to tickets , it is a really wonderful idea because it is more combinient to enjoy the festival for one day among a lot of people . One day , when the old man went into the bambo bush , he found some bambo gritted white . He had never seen such bambo before but decided to cut it down . THE KIND OF ACCOMODATION I PREFER IS A TENT BECAUSE AT SOMMER CAMP I FIND IT MORE INTERESTING SLEEPING OUTSIDE UNDER THE SKY WHEN THE WEATHER IS NICE AND WARM . IM QUITE GOOD AT PLAYING BASKETBALL BECAUSE I USED TO PLAY FOR ABOUT FIVE YEARS AT SCHOOL . WE USED TO HAVE TRAINING SESSIONS TWICE A WEEK AND AT LEAST TWO GAMES A MONTH AGAINST ANOTHER SCHOOL , WHICH WAS GREAT . PAINTING ALWAYS DID FASCINATE ME , EVEN THOUGH I'M NOT SO GOOD AT IT , BUT MY FRIENDS SAY I CAN REALLY PAINT AND THEY LOVE THE THINGS I DO . THE TECHNIK I LIKE THE MOST IS WATERCOLORS . DO YOU REALLY WANT TO KNOW ABOUT MY EXPIERENCE HELPING AT THE POP CONCERT IN OUR TOWN ? The reason I 'm writting this letter to you is that during my stay in London I felt very disappointed about your theatre . After all the inconvenients that made me feel really mad . I think I can only forgive your theatre if you give me a refund of the money I spent there , and some more for all the problems I had . As you already know , I am trying to become a professional photographer , consequently I would choose photograpy as the first activity and painting as the second . However , I would like to know if by any chance the photograpy activities are only for beginners . Actualy most people work hard to earn their money and consequently , the occasion on which this money is spent to buy something useful , or simply something they like , should be considered a very pleasant occasion . In fact , the shopping you do for your daily needs is seldom enjouble , as it is clearly more a duty than a pleasure and morover you are often faced with some nasty situations . First of all , when I paid my entrance fee they did n't acept my discount ticket , they told me that the ticket was fake , then I entered the theatre and I had to wait 45 minutes . The show was suposed to start at 19:30 and it started at 20:15 , " this shows a lack of respect " . Manager , I spect that you have considered my bad experience at your theatre , so I 'm asking you for my money back , because it was a very bad evening . It all started when Pat , Nick 's best friend , wanted to have the party at his house . Most of the class disagreed with that because the Pat 's house is extremly little , they started to say to him that his house was like a box . Pat got very angree and sad . At first Nick got angree but then he forgave him because they were friends and each of them could trust in the other . Nick told the situation to the class and ofered his house for the party , because it was very big , with large gardens and a big swimming pool . To begin with the wchool rules , we have in fact some important ones . Since I have studied photography for several years , I would like to take some pictures of beautiful scenaries in California . I had to pay the full price for them , which was quite expencive . It turned out to be impossible : the restaurant was closed and we did n't even receive an explaination . The developpement of portable communication systems , such as mobile phones , has greatly changed our way of life . It is now possible to talk to a friend almost everywhere and anytime , even if we are two thousand kilometers away from each other . Precision industry has changed my life a lot too . I go Scuba Diving during the weekends and hollydays . I would like to travel in July because I have to go back to my country in Auguest . How can shopping be enjoyable in thoese situation ! I belived everything she told me . I was surprised that he belived me . Yours sincerelly , They are human beings and they need to keep a little bit of pirvacity and freedom in their lives to continue like normal people , to feel that they are unknown and anonymus and they do not have to wear sunglasses , hats or caps every time they want to leave home in order not to be recognised . Furthermore , you asked me to choise two activities I would like to do . And now for them shopping can be considerated like a contrariety . It is quite obvious that celebreties ca n't lead a normal life , as they are constantly followed by reporters , which makes their life miserable . I am thinking here particularly of the fact that every event and action is wildely discussed in the mass - media . Last of all , it says in your advertisement that there is a theatre restaurant open after the show but it turned out to be closed because it was being redecorated and no annocement was made . Therefore I would like are refund of my ticket and I would like an apolygists . Yours Sincelery , What do you think modles will wear on the catwalks ? In my opinion , clothes will be a lot differente in 100 years ' time . For the accomodation at Camp California , I would prefer to have a log cabin because I think it is more comfortable than a tent , and in case there is a big storm with heavy rain . A log cabin 's more resistant than a tent . For the activities , I chose climbing because I took a cours for 2 weeks last year and now I have a good level of proficiency . For the other one I chose photography but I am not a proffesional , I just take some pictures on my holiday ! Next weekend I have a date with one of them , but I wo n't tell you the name because you 'll feel jalous ! I would like to do photografy and swimming . I love to take photos but I do n't have any techinique . Of course it is good to buy things for ourselves , like clothes , jewelery , anything . When you buy something you were looking for a long time and , when you arrive at home , you discover some deffect on it and have to go back to the store to complain . Secondly , I would like to choose a tent for accommodation , because I have never spent time in a tent , that 's why , I think it is a good oppotunity for me . I have planty of experience and knowledge of both aspect of part . I would be greatfull if you could inform me . My jobs were collecting tickets , saling goods and refreshments , guiding people to the right seat and cleaning up the concert hall after the concert finished . What I particularly liked about the experience was the concert was achived through our support . I really recomend you to help them , I think this is a good oppotunity and I want you to understand my feeling well . I want to know your openion . On the other hand , their stories always make them embarras because most of the journalists create their own story based on the true story just to get the people 's attention . All of them were schoked by what they heard . She became very shy and engry . She could n't talk with people and she was just very sad . I want to tell you that I am very dissapointed about the play . In the advirtisement it said that Danny Brook was in the starring role . And also it should have started at 19.30 , as I saw in the advirtisement , but it started at 20.15 ! And so far there were n't any discounts available which were said to be " available " in the advirtisement . You should have written it in the advirtisement . Absolutely it was very dissapointing I hope you understand and will correct your mistakes in the next advirtisement and send me my money soon ! Today 5 out of every 10 pupils can use a computer basicly . It is really enjable when I chat with people . Techology is also important in another area for me . But some naughty students in my class were throwing paper aeroplanes when the teacher was writting something on the board . Unfortunatelly I have to complain about the musical show put on in your Circle Theatre last night . When I received your advertisment concerning the show " Over the Rainbow " I thought that I 'd have a great evening , but unfortunatelly it was a big disappointment for me . First of all , Danny Brook - the main actor in this musical - was abbsend . You also offered discounts - whot kind of discounts ? Becouse the show was very long , we were getting hungry but of course your theatre restaurant was closed because of the holiday . I had not any money for travelling and my parents were going to give me some only if I had concret plans . After one mounth , I went back home and told my parents what a lot of fun I had with my friends - I do n't know why I was such a liar . My parents belived my story untill my younger brother Pat told them the truth . Now my parents do n't belive my story . I hope you will not feel offensed , but I really need to complain about your theater . You can believe I was very disappointed when I saw that he actually was not performing and I was more bewildered that no one made an apologie for it ! Although , I would have felt better if I had had a discount on my ticket , as you mentionned in the advertisement , but unfortunately , these could n't possibly be given either ! If more and more ingenors work in science and technology , it must be because it is really usefull : but in what particular way ? I would like to travel at the beginning of the month , which could be between the first and the fifteeth of July , because afterwards I have several business meetings and it would be difficult for me to take a trip . Although I like camping and sharing with different kinds of people , I 'd prefer a confortable and private place ( if it 's possible ) where I can sleep , or be quiet .. I am not a teenager ! I was running the whole show . My responsability was to dress her . I relly liked the exhibitions . The band " Three Kings " apresented a new stily of music . I would like to notice that the dance show was absolutelly marvelous . What a greit idea to invite writers ! I relly liked talking with them . You wrote an advertisment saying that people from more than 15 different countries were going to visit this concert , but there were artists from only 6 countries . It was relly a pity because I expected to see artists from France and Italy . The International Arts Festival was organised quite well . I would only recomended you have more artists and the classical concert should be in a bigger hall . They were so poor that somitimes they hardly had anything to eat . She persuide him to go to the sea to ask for a lot of things for her . Also , the e - mail system is really hepful . Circle Theater Finally we had the worst evening I have ever imagined , it was definitely not the " perfect evening " as written in the adverstiment . Syntethic materials have developed and become very popular so they would keep going . I guess they will wear a sort of tunique over a shirt and a skirt , or more masculine clothes because they want to change . About the accomodation , I would prefer a tent because I enjoy the contact with nature as well as camping activities . In conclusion , like all things in life , shopping can be pleasent or irritating depending on your patience and on your mood that day . It gives us knowledge usefull for many school clubs , like the " marathon shell " club or the robotich club . Besides it gives all the areas covered by a mechanical engineer and it is very important in a school where you will probably become a mechanical engineer . It lets us identify our abilities and the part of mecanics that we prefer . Our engineering school is specealized in mecanics and thermodynamics . First , we could film the fluid mecanics lessons and the general mecanics lessons . I wonder if we could not feet between some short view of the laboratories , in which we could show a student doing experimentations . Futur students could appreciate coming if they could still do their sport . Another point to record woubl be the time we have got between lessons or at lunch time . It will show a part of the way of life in the school . If possible , the type of accomodation I prefer is a tent . I will be very glad to partecipate in your camp ! Yours faightfully The show 's date is very convinient - March 14 - , and it is on in the Central Exhibition Hall so I do not think it would be a problem to get there . Although this statement is absuletely true , it seems there is no way to stop public attention , so they will have to keep living with journalists . My name is Marcia Fomalar , I am writting to let you know how disappointed I felt when I went to the musical at the London theatre . I went to buy a ticket and as I like to enjoy the show near the stage I bought a £ 20 tiket but when I asked for a discount they told me , " I am sorry but there was an error in the advertisement . It will be impossible to give you a discount " . At 19:15 I was very impatient , waiting for the show to begin , and a man anounced that the show would start at 20:15 . Finaly the show started and to my sorprise my favourite actor Danny Brooke had been replaced by another actor . Pat sent a fax to my house with the different alternatives she had thought of but unfortunately my grandmother was there and she saw the paper so the sorprise was ruined . The other activity that I chose is painting . I am not as good as I want , nevertheless I think I can inprove my skills during this course . I would like to know how the weather is in California during the summer so I can bring with me the appropiate clothes and the last thing I need to know is the amount of money that I have to bring with me . To make this report easier and faster , it was necessary to make a questionarie which was given out in the school . However , 15% thougth that it was not a good idea because it would be boring to see other people enjoying themselves and they mentioned it as not really important . As you can see , my clasemates and almost everybody in the school are happy with the facilities and activities that we have . A few weeks ago , my family and I had a hoilday in London . The hoilday was n't too good ! During the week we descide where we wanted to go . We all agreed to listen to music so then we descide to go to your musical show and listen to " Over the Rainbow " . That evening we did n't want to have our supper before the show . Anyway I thought it would be too early to eat and also because the timetable or canidates you give me have say : " visit our theatre restaurant after the show " . So we did , but unforturnily it was closed and I was so dissapointed about it , not only because we had expected Danny Brook and Tina Truelove to be the actor of starring . We do n't expect much bad to happen on our hoilday , but this was a perfectic show as well , it was the worst show and theatre I have ever been to in my life . sincinerly Ki To help us to live happily , sciencetist can easily perdict the changes on earth , so that we can have time to perpare or defend ourselves from natural diseasters . Wapons are designed to kill and defend in a fight . In the Second World War so many Germans were killed . Also many people died in other regions , Posin chemical compounds , e.g. gases and liquids , are created too . They have been used to kill people . Most of them produce radiration , which can disable a person , mostly harming their brain and their bodies , and it can also cause death . Communication techology , e.g. internet ( networks ) and moible phones . In wars soilors communicate with moible phones though places to place to get or give information about themselves and the enarmys . By using the Internet we can make new pen friends overseas , and creat clubs and sociatys . Now a megsage can travel quicker and it is also worldwide . sending letters takes about a week from Hong Kong to the U.K. , but network , e.g. Modern technology saves us a lot of time and brings us many benifects when we use it in the right way , but some bad way to e.g. send virse to break down network . Unfortunately , Pat was n't very good at keeping secrets and this was the reason why the party was n't as succesful as we thought . We decided to go to his place ( I 've got a copy of the key ) the evening before his birthday while he was at work and decorate the lounch , then turn off the lights and wait for him in silence until he arrived . With reference to our trip to London , on behalf of all of us , the English class in this college , we would like to thank you for your special atention in organising a good programme to learn about the interesting and cultural places in London . We have been very excited about this and coincidentely we have found another option to add to our programme , certainly if you agree with it . We thought that The London Fashion and Leisure Show would be a great opportunity to give us more information about the main transformations nowdays in England concerning fashion , leisure , sports and lifestyle . It was dangerous , but I kew I had to do it . I was at home putting my makeup on before going to a restaurant with my friends and , sudenlly , he rang the bell . He was so tense with a gun in his hands and I could no longer speak . He took me out with him . I had tried to think about stopping him , but he was stronger than me and he had used all his power to scare me and he forced me to buy cocain using my cheques . I am writing to make some complaints about the musical show " Over the Rainbow " , of wich you are the manager . Although it was written in the show 's addvertisement that the main actor was Danny Brook , it , unfortunately , was not him . It was also written in the show 's addvertisement that there would be discounts available on the tickets . Even though the addvertisement said we should visit it after the show , it was closed and no explanations were given . In conclusion , the addvertisement promised this would be a perfect evening out , but it was not , so I would like to ask for my money back . One day , I inocently told Pat that I was dating Philip Smythe , the school 's hunk and most popular boy . Suddenly , an enourmous saddness caught me , because Philip had begged me not to tell anyone , so he would definately break up with me , and I knew I was going to stop talking to Pat , because she had just ruined my happiness and I could n't trust her anymore . One day , while I was studying maths , one of my friends , called Pat , asked me to have a coffe with her . The problem started when I confesed to her that I had fallen in love with Larry , who was my cousin 's boyfriend . Surprizingly there was a completely different actor starring . Unfortunatly the restaurant was closed . He is only looking for the biggest fishes and he has been unsuccesfull for 86 days . Little by little we were growing up and becaming close friends . I relyied on her and our relationship was excellent . It is my only favorite hobby . To reply to your question , it was realy a nice experience . As you know , I like pop music so much and the singer was one of my favorite singers . I would be most greatful if you could let me have some information : - Are there leisure and intertainments facilities close to the camp ? I am really surprised for the information because I won , and I would like to say thank you for everyting . This is why I wrote and sent this letter with the information you need I can only travel in July because it is the only time when I can do it before for my work I do not really care what accommodation I will have . I would prefer to come in July I will be avaliabel for the moment . I would really apreciated it if you could tell the people who work at Camp California I choose the Golf and Photography because I think I am really interested in those subjects . I am not really really good but I have some experience . I think that is everyting I would like to know . I want to apologise to you , because I haven't written to you recently , but I want to tell you what hapend to me last week . I had the opportunity to help at one of the most pop concerts in my city . So imagen , I felt really really good and excited . I do n't have words to describe it but I will try to do it , OK ? What 's more , your letter said about the chance to do two acctivities during the camp . I have even won a competion once . I would like to know if the , , travel costs '' which you had paid include entrance tickets to the museums or any other cultural places , because I would like to do some sightseeing in the U.S.A. Furthermore , if there will be cmy tumple dryer or washing maschine to clean our clothes and if there will be a guide who will be responsible for us and the camp . When discribing the advantages , we should remember that most people like doing shopping . Very often people go to a shop - usually a big departament store and buy things which they do not need . From my point of view it depands on us whether shopping will be enjoyable or not . My name is Manu Roddos and I am writing to complain about some things that happened at the performance of the show Over the Rainbow , wich took place in your stablishment , The Circle Theater , which made me feel very upset . I was very excited to see it yesterday , but as soon as I arrived at the theater the problems began . Yours Sincerelly , Firstly , the great boom in mass comunication wich happened at the beginning of our decade , with the devellopment of telephones , radio stations , television and even satelites , and of course , the Internet , gave ordinary people the chance to take off on a trip all over the world , and this allowed health and education research to increase as well . In addition to that , people will always be affraid of a technological war . In conclusion , from my point of view , people must learn that despite technology being such a new area to explore , we have to use it with a great deal of responsability for us all to survive in the future . And is there anything eles I have to take with me ? Yes , it is true . This is only because nowadays people have more money than ever before , and some women do n't earn money . They have no idea how diffcult it is to earn money . It would be wonderful to buy some books or programms with the signatures of all the stars and artists taking part in the festival . I hope this letter will help you with organying the festival . Every puple has to sit alone . ( I mean that one desk is given to one person . ) 2 . One should have such marks as , , 3 " , , , 4 " , , , 5 " , not , , 2 " , which is eaqual to fail . We do n't have old - traditioned rules or anything like that . First of all , it would be a good thing to say that July would be the best time to travel because it is the hottest mounth in the year , and the weather will be really nice . Despite my lack of expereance in climbing I do want to try this type of sport . The aim of this report is to suggest wich lessons and other activities should be filmed . I have enterwed each student from my English class . Fistly , the English lessons must be filmed as the most interesting lessons at our school because it will give students an interest in studying and improving their noleges . It contributes to the world 's treasure house of literature and arouses an irresistable fascination . We should n't disregard and neglect to film the buildings and the gardens of our beautiful college , especially if we take into consideration the fact that it is in the city of Shakespear . Also , painting is one of my favorite things ! Anyway , I really enjoyed helpying at a pop concert last month so that I 'd like to write about it ! Anyway , by the time we finished everything , thusands of funs came into this concert hall . I 'm writting to you with reference to the letter I have received from you saying I have won your competition . Well , as you ask , I will tell you I would like to travel as soon as July begins , I 'm going to be able only to travel in that month because of my job responsabilities . Regarding the choice of tents or log cabins , I think I will turn to the first one because I have always loved camping close to nature , if possible , in front of a lake or a river , if your campsite has one , so that I will be able to do my favorite and skillful hobby : sailing . I would like to travel only in July , because I have only one month 's holliday this year . It is not too confortable , but that is not a problem for me . I like this kind of holliday . I never had met pop stars before and I was very impresed , but I was too happy to show my shyness . I stayed with him until the concert began and after the show I had the opportunity to stay in his private room with him and the other dansers . So , unfortunately , I must say that last night was one of the worst nights I ever had , and having given the reasons , I expect to be able to count on your sense of responsability , so , I feel that I must ask for my 20 pounds I spent on that terrible night . Also , with today 's machines , factories have significantly increased their production , which brings progress to humanity , but also , with the continous replacement of men by machines , unemployment is increasing too , and today , it worries every single citizen of the world , specially the ones who live in third world countries . It would be a fun experiance ! Women , in perticular , have the annoying habit of always having to touch everything they see . This was the best thing that had ever happend to the Fennall family for yeats . Which was very chooking for her mother . SINCE I HAVE A CHOICE OF ACCOMODATION , I'LL DEFINETELLY GO FOR THE LOG CABIN , BECAUSE I CAN'T BEAR THE HEAT INSIDE A TENT . I WOULD LIKE TO ASK YOU ABOUT THE WEATHER CONDITIONS , SO I CAN DECIDE ON WHAT CLOTHES TO TAKE , AND ABOUT COSTS , SO I CAN MAKE A BUDJET FOR THE HOLIDAY . AFTER THE STAGE WAS BUILT , THE REST OF THE THINGS I HAD TO DO WERE QUITE EASY AND ENJOYABLE ; I COULD STAY EITHER BEHIND OR IN FRONT OF THE STAGE AND GIVE A HAND IF NEEDED . I REALLY ENJOYED IT BECAUSE I LEARNT A LOT OF TECNICAL THINGS I DIDN'T KNOW ; AND WHAT I ALSO ENJOYED WAS THE GOOD PAY ! I 'm writting to you to complain about a play I have seen , called : " Over the rainbow " . It was clear that Pat had to change and show his friends that they could believe in him thrutly . For those next few days , Pat would do his best to be as sympathic as possible . To begin with , every morning Pat said a pleasant " hello " and added to that a big smail . His mother always says : " If you are smailing and are nice to people , poeple will be nice and will smail at you " . I would preffer to travel in July . I have only this time , because my summer holidays are during these days . A cabin reminds me too much of my home and is too confortable . That is n't what I want to have if I stay in a wild area . I was able to ask anybody , and he answered in detail , althoug he had a lot of work . I 'm writing to you followwing our visitting to your theatre last night . And I would like to know if it is posible to have our money back . And if someone elso knew , I would n't be able to go back to heaven unless I killed the person who told my secret . And I would like to go in the first part of this month , the socond part I spend with my familly . While I will be at the Camp I would like sailing , because it is my favorite sport . Yours faitfully In my opininion this book ' The Old Man and the sea ' is the best book which Ernest Hemingway wrote . Thise book is about a man who knows that he will die soon , he knows that he did n't make his dream come tru . So he decidet to go for a last trip in his life . He needs to rest , but he does n't geve up . In the end he makes his drems come tru , he catches a vast Marlin . In thise book Hemingway is trying to tell us , that if we want something , we can get it , it might be deficult and take a long time but we can do it . Sometimes they geve up , befor they get something , I read the advertisement and I thought it was going to be a plesent evening . From the beggining it was all a disappointment . When I went to buy the ticket I tried to get a discount with my student card , but that was not posible . I let this pass and I bought it anyway , thinking that it was posible that this was only a mistake in your advertisement . But the play started fourty - five minutes late , and the star of the show , of whom I 'm a great fan an who was the main reason for why I decided to see the play , had been changed for another actor , who turned out to be really bad . I think you realise why I 'm writting this letter to ask you to give me my money back . All the things that were promised in your advertisement were untrue , and it was definitly NOT the perfect evening out . Specting that you will resolve this misunderstanding . There 's no doubt that modern tecnology has changed our lives , but how ? I think that some of the changes have been very good , like the impruvement in medical science , which now can save millions of people that one hundred years ago were doomed to die or to live miserable lives . It has changed the ways people comunicate . But tecnology has not only changed our lives in a good way , giving us things that can make our lives more confortable , it has also created things that are n't bad , but if they are in the hands of the wrong people they can destroy the world . Weapons and factories are destroing our planet and we need to realise that we have to use tecnology to impruve our lives , while always triying to respect nature . Regarding the accommodation , I would prefer to stay in tents rather than log carbins because I have a lot of experience of putting up my own tents . I like to go window shopping that is good to go arround the shopping centre . Then I can say I definatly do n't feel it is enjoyable . - Accomodation : a log cabin would be nice for me to stay in when I am in California . Before we can give our opinions on this statemant we have to make sure that everyone knows what we are discussing . We do not speak here about luxuary goods . But if you realize how important what you buy is for your health you will go shopping with a far greater consiousness and more joy than before . ' How incredable it is ! I love swimming and also I 've got a scubar diving licence . I used to enjoy floting on the water whenever I was on holiday . Singing is the most favarite hobby for us . I 'd like to know how much monery , and how many clothes we need . Of couse , the shopkeepers are human beings as well . But for their considerations , they 're working in their rutines . I sometimes lose my desire to buy a thing because of their bad behaviers . For example , for our jobs , supecial ceremonies , and so on . Your advertisement also failed to mention the fact that there were no discounts whatsoever and , finally , because of a shortage of staf , your restaurant was not open . I asked myself how I could be so stupied , telling her my secret after all I had been going through to keep it to myself . Now I did n't need to go around worring about it anymore . I decieded to thank Pat , and maybe , if possible , teach her a lession . I pretended to be totaly miserable . Pat did n't know what to do . She apoligised over and over again and I could really see that she was more than devestated . After hugging eatch other we promised never to tell others about our secrets . However , it was deleied and it started at 20.15 . The theatre restaurant was closed after the show , they said funds had runn out . Those are totally unexpectable so I would like to get paid for my ticket cost . I ask you to transfor money into this account . Think about the conputer , the speed of conputer is much faster than before . Nowdays , technology keeps developing and better technology gives us an easier life . In the hopeness that you understand me . Unfortunely , Pat was n't very good at keeping secrets . At first , when he had a girlfriend , they talked to each other franckly . But after they seperated , he told his friends her secrets without thinking . It is like one of his bad habbits . It was a very unpleasent evening . The restaurant should have been oppened when I came out , but it was closed because of the time the show finished . After breakfeast I have to use my car to get to school . Without technology I would get realy bored . I would be very grateful to recieve answers to my questions . Boy , he 's really really handsom ! Secondly , the show was meant to begin at 19.30 pm , actually it began at 20.15 pm and that was without giving any explainations ! Another thing that has changed my daily life is the mobil phone . Sometimes the ring is annoying but , finally , the mobil phone is a great , handy object . About the acommodation , from the two options , I choose to sleep in a tent , because I think that a log cabin is n't as authentic as a tent , at the camp . I would be greatful if you could send me further information about details like how much money or what kind of clothes I 'll have to take with me . You know that I 'm a little bit lazy , but the main reason for not writting to you has been the accummulation of exams during this month . There I was impressed by how a singer can cause such histerism in teenagers . During the two - hour concert we had to attend to thirty - six people who became inconscious after being trapped in the first row by the other people . Answering the second question , I would prefer my accomodation to be in log cabins . And when it finaly started , it was n't Danny Brook who performed . After the show I wanted to drink somthing in your theatre restaurant but when I arrived it was closed because the show started too late ! So I ask you sincearly for my money back becaus it was n't a perfect evening out . I told her that my parents are getting divorsed and that I will move to Chicago with my mother . One day , Pat and I were going home , when she asked me if I would give a party befor I go . I had to tell her that I did n't have the time to organise anything becaus we , my mother and I , had to get our stuff ready to move . But when we got into the hous ther were all my friends ! We had a great evening becaus Pat was n't very good at keeping secrets ! I am writting to give the information you asked me for and also I would like to request some information about the prize . Furthermore I would like to choose to stay in a tent instead of a cabin because I think it could be more exciting and could provide more contact with the enveiroment . He had a puncture and he did n't know how to repeared it . Then I changed the tyre and during this time he was asking me about my hobbies , studies , everything . I am writting to you in order to give you some details you asked me for in your letter . The job was hard , but , from my point of view , it was worthful . The most exhiting thing was when we removed all the stuff the day after the concert , and we went to the Highlands to spend the whole day there . That was fantactic ! If you have never been there , I really recemmend you to go . But we decided to buy a picture , because she had always told us about art galleries with great exitement . Yours sinecerely Despite the fact that going to school by bus was easier than going by bycyle , I had preferred going to school by bycyle to going by bus . When I went to see her play , I realy would love to be an actress . It was my dream . I wish my dady Aspecially in the summer when the tempereture and humidity are very high . From the list of all the activities I have choosen photography and golf . I have choosen golf because I have never played this game . My friend offered me a job as a member of the techical staff at Sting 's concert . We 've built it using ready metal and wodden parts . I was working with a specialist who had to connect all the lights together to one computer and prepare a colorful show . It was a totally new experience for me and a real pleasure working with professionalists . For me - the dance shows were absolutelly wonderful . I prefere them to others . We chose some of them and we were glad that we had our reasonably priced ticket for all the evants because we could change our plans during the evant . Most studenst wear jeans and a sweater . Next year , you should calulate or examine how many people will come before you choose a hall , which I feel very good was plays and films . And the offer of a " weedend ticket " was an excellent idea . Because the price was cheaper than buying it sperate and more convience . Yours Sinicerely , Finally , food shops should be added to this festival next year because only plays and films were not atrractive enought to get audiences . Yours sencirely , However , I can go out wheneve I want , even at midnight . Secoundly , boys are not allowed to have long hair . I feel that they would be fabulos places with a western design . Another disadvatage of the festival 's programme was the lack of plays and films which are the best to display a modern country 's culture , I think . In conclusuon , I would like to say that in spite of the success of the festival some improvements still can be made . Fortunatelly , there are many ways to earn some money nowadays . In addition to baby - sitting , you may also give some lessons to small children such as ( tl ) teaching them to read or write or just basic rules and words of a foreign language , Eglish , for example . But if you do n't like children and are not easy - going enough to work as a waiter you may choose the more pieceful job of a typist at home . So , you can help them and earn quiete enough . Moreover , men prefer to do sports , because shopping wastes a lot of time , which is controry to the tastes of women , because if they have any free time , they will go shopping . Finally , I would be interested in meeting artists from everywhere in the world not only Europeen artists . In conclusion , I had an unforgetable time . The restaurant was closed because there was n't any electricity . You should close the theatre untill the restaurant can be used . I was totaly unsatisfied with the theatre and I would like to have my money back if that 's possible . I 'm quite sure that people all around the world will be wearing very different clothes in the future because people , especialy women , who like to be very elegant and beautiful , will create and invent all kinds of clothes to anybody and that 's it . You ca n't be carefull because you do n't know what time it will happen . But you can be carefull when you speak with he or she who is stealing your things . I am writing this as a reply to your request to provide you with some information about my preferencies . I am not so keen about the accomotation but would rather stay in tents than cabins . We live near the seashore and swimming is the sports activitie I am really good at . Somitimes I feel very sorry for her . Lots of families plan a day out to go to a shopping center , and it is a normal routine for them - to spend all day just shopping . I would like the trip to start in July if possible . Because this is my Hoilday start at the Camp California , I would like my accommodation in a tent , because I work in the Army and on the camp I usually stay in a tent at night , so I will feel more comfortable . Regarding the activities I would like to choose Swimming and climbing for my activities at the camp ; I usually do these two activities on the Army Camp . I know how to climb up on Rachiat outside and help other people to climp up . To make a daily life video in school , we should concentrat on the things we do most in a school . The thing we do most in a school is have lessons . It will be a very useful part of this video and should be the main subject . At the end of the video , we should find one or two studen sit together and ask them a few questions about how they feel about studying at the school ? This is the suggestion to making a daily life video in school . It would be greatful . And we could n't wear any colorful clothes and socks . I 'm pursuading my mum , perhaps . I am writing in response to your advertisment in today 's newspaper . In addition to this , I was wondering if you could organize the same festival in the sommer . Unfortuneatly , Daniela fainted . This story happend a long time ago . Now Pat realized what was going on and could undstand why her boyfriend got so nervous about the secret . Nevertheless , I lost my concerntration on my studies and I spent the money on entertainment . I will never ever help anybody to organice a pop concert again . But after this serville work I met Eminem . As regards painting , I know a lot about it since my grandmother taugh me when I was five years old . She also told me that she has some conections with the people in charge of the lights at the concert . Since I am going to travel I would like to know how much money it would be adviseable to take and what kind of clothing I should take . Or approximately how much money would be enough to buy surveniers because this will be the first time for me visiting Carifolnia . Finaly , I must choose travelling there in July because I am not allowed to take holidays in other months due to my work . However , things which you can get with money do not necessarily fill your unsatisfaction or even as you buy something more and more , your emptiness might be greater . And shopping is also a difficult hobby to go along with your friends or your pertners . On the whole , shopping can be harmful rather than enjoyable because you migh be extravacant , lose your friends and have what you do n't need . We think we could change the shooping to go to the show . To sum up , there is no perfect job , and being famous involves a lof of money , but also a lot of jouralists following your private life . All the group would enjoy going to the show , because it is a great oportunity to see an exhibition of the latest fashions . For example , we ca n't go to the toliet during lessons . We have to go there in the break . It 's too strickt . I do n't like it . My name is Sandre Atos , I am writting to you because last weekend I went to the theatre you manage , to see what was called " London 's newest and best musical show " . That 's why I am writting to ask for some money back ; I believe I have this right . Unfortunatly my parents did not realize how TV was creating a role among us . On the other hand , due to scientific developments , I am getting better , recovering from ahsma . I had a very dissappointing evining last Saturday . I had everythig planned ; my family and I were coming to whatch your show and then have a decent meal at your theatre restaurant but it was disasterous . Then everything was going well untill the show did n't start ! That was a dissapointment for my whole family . In fact all the audience were very dissappointed . Anyway the show was nowhere near as good as it was meant to be and it was definately worse than I had expected it to be . I did n't enjoy it at all so I was relying on the food to fill me up and relieve some of my stress . So as soon as the show was over we walked out and followed all the signs for about 5 minutes , desparately searching for your restaurant , our stomachs rumbling for food . What kind of an organasation do you call this , sir / madam ? You do n't understand how dissappointed and angry I was that night . In fact he was one of the principal busybodies of his neighborhood and his school so not a lot of people in his school liked him . Some were just friendship groups but others took it seriously , maby just a bit too seriously . They gave themselves names and acted like gangs rather than just groups of friends , and started picking on younger people , or mempers of other gangs , trying to start fights with them . This whent on and on , got more and more serious , but it was so secret that the teachers did n't notice . Everyone in the year was anoyed , but not with Pat , oh , no ! exept a few phcyco groups . Some of the more serious ones decided to raid this party , just for the fun and meanness of it . Everyone was enjoying themselves exept Pat , who had heard about the raid . The time had come . The who groups had comdined their forces and were ready to strike . Lots of People wher injured and even more were suspended the next day at school , when the Headmaster found out what had happened . Pat recieved no punishment at all and he was n't blamed for anything by his teachers or friends . But he felt awfull because he knew that all this had happened because of him . Do you like do - it - yourself and is your house full of marvellous but unuseful things ? You could sell them to a specialised shop and finally tidy up your room ! I am writing in response to the International Arsts Festival , which took place on 21 - 22 November . I would like to inform you that it was a great idea and a valuable activitie as a social event . However , it was a dissapointment when I realised that not many countries were attending the event . I would have liked to have seen more countries from all around the world , for instance , the Far East , Indonesia etc . On the other hand , I enjoyed being one of the people seeing the plays films , the dance shows which were brillantly performed and the art exbitions . Finally , I preciate your organisation and look forward to hearing about the next International Arts Festival . What a pitty ! Privat schools have a more relaxed atmosphere than the state schools . Of course smoking is n't allowed in any part of the schol . Apart from that I would n't mind at all whether I stay in tents or log cabins but if I have to choose between these two I 'd prefer to stay in tents because they give me a nice feeling of relaxation . It is very unusal to stay in log cabins while you are camping . Photography is a very interesting activitie , and is not too hard to do either . Worst of all , at the end of the Musical , I went to your Theatre Restaurant , in order to have dinner , because I had leaft home without eating and so I was hungry at that time . First of all , modern technology has changed my daily life in the last five years more quickly than in anchient times , or even than a decade ago . Nowadays , I ca n't go one day without consulting computer communications via e - mail or the Internet . I exchange corespondecies with all my family via the Internet , with my mother and 2 brothers who live in Curitilra City and also with a brother who lives in Italy and another who is living in New Zealand . It 's written in the regulament that we ca n't leave the school during the breaks ; we ca n't smoke near the classrooms ; we have to justify our absences or lateness and even if you 're over eighteen your parents have to justify you with the teacher . Regarding accomodation I would prefer sleeping in a tent because I enjoy the closeness to nature while camping a lot . I sort of felt like I had done my part to make the concert a sucess . The show is going to be on Tuesday the 14 of March from 10.00 to 19.00 and we fained it very interesting , because we will have the opportunity to see mews , firstly about the latest fashions , secondly concerning leisure and sports wear and finally about make - up and hairstyles . Thank you very mutch ! Most of the time they have journalists following them everywhere , looking for a great story or interesting pictures to put on the front page of the newspaper , and I do n't think this is very nice , but it is the price that famous people have to pay , just becouse they are popular . Anyway , this is not always necessarily a problem , but it can be a big thing for the famous person , becouse it gets people talking about him and increases his popularity . In conclusion , I can say that this is not the biggest problem that the world has and -- it is not my problem becouse I am not famous ! Concidently the show is in London and on Tuesday March 14 , which is during the period we are in London for the three - day programme . However , journalists should not only think about commercial value , because morality and priciples are also concerned . I remember in August 1997 Princess Diana dying in the car crash was one of the most disarster examples . Although we can not deny it is our nature - we are curious - we can improve our sence of morality and try to think about the importance of privacy for them . Basle , 12th Decembre 2000 In your letter , you asked me wheter the book I 've read would be a suitable present for your cousin 's fifteenth birthday . You wrote that your cousin is quite intered in magic , detectives and sport , did n't you ? I think this is the best choice for him ! As you know , we are in England to learn your language and also to learn about your lifestyle , and we thought this show would be a good opportunity for us to discorve this aspect of your country ! Thank you for your letter , as usual , it 's a pleisure to receive news from you . It 's a fantastique book , which I recommend to everybody keen on love stories . It 's a perfect combinaison of passion and life 's difficulties . I recone that it 's not an easy read , but as you described your cousin , I think she really will enjoy it , she 's so good at litteracy that it wo n't be a problem for her . I really think you should choose this one for her , it does go with her personnality . It 'll be a good point for her general education . Wuthering Heights is a classic , which everybody knows about , even if they haven't read it , they at liest know the story . How has morden technology changed my life ? A computer is extrrmely helpful with writing reports and essays . But also I am not able to imagine my life without this nice way of reciving news with help of it . I would be very greatful if you could let us go to the show . Furthermore , addmission is free for students . Unfortunately , our programm is fixed but I think we could change part of the programme . Firstly , most people can remember the sad story of " Princess Diana " . She died in Paris a few years ago while she was escaping from lots of journalists called " Paparach " . However , secondly , famous people are not " ailen " so they might do something , for example , ashame things in a public space , or argue with a partner or family , even put on a swimming costume like us . So they can be just ordinaly people like us . Overall , people should think about what it would be like if we were famous people ... and then we can find the answer that all people , including famous people , need a private life and would like to have an ordinaly life . They were eagar to have a child , but they had never been able to . About when I would like to travel , I think that my answer will be easy for you , because I have two months off , those are July and August , so my trip should be in between . Regarding my accomodation I would like to stay in a tent because I remember my holidays in the south of Peru , a long time ago ; it was wonderful . If it is possible for you to help me clear up some doubts I have , I 'll be really greatful . Yours faitfull . First of all , I 'll tell you that on the day of the concert I woke up at 6:30 a.m. , very early for me . You know me , I 'm lazzy . The work began around 8:30 . It was very hard but then the band came to rehearse . From that moment I enjoyed working until the concert had finished . The atmosphere was wonderful , the musicians were very kind to everyone who was working because they understood that putting on a concert is a job to be done by a team . Finally , we would like to get your permition to go . Maybe if it is possible that you can change your programme , we can go to your college any time after Tuesday . This story happed two years ago . Not only was I a member of the swimming team in our school , but also I had been tought by my father since I was five years old . I started thinking about it . After all , either had I neve done this task before , or trained . It was really a reasonably priced weekend for me , but you should also introduce new activities like competitions in singing songs or drawing a portrate next year . Secondly , the show should have started at 19:30 p.m. , and it began fourty - five minutes late . Moreover , when I went to buy the tickets no discounts were avaliable . Furthermore , I wanted to have a coffe after the show , but when I tried to get to the theatre restaurant , it was closed . Ballons and coloured lights were put in all the trees . I carried a lot of chairs and looked after the que or people who lost their way . As we are going to be in London on this date , we think it could be a great oppurtunity for us to go there because we are very interested in the latest fashions , make up , etc . and it is free for students . Because of this , we would kindy ask you to change the programme so that we could go to this particular event . A especiall invitation It allowed people to enjoy their weekend , relax , and also it brought a foreign culture to them , broadening their kownlegth . In addition to this , one weekend ticket for all the events was only £ 10 . This was excellent . It meant people only spent pocket - money , and then they could watch all the events at the weeked . For them it is a really economical way to spend their weekend . Moreover , the stars and artists were from only six countries . In my opinion , if you can invite more stars and artists from more countries , it will make the festival more exciting , more intesting , and in my opinion , some of the concert halls were too small . The people in there could n't even go to the loo , because it was too crowded . These are only my inmature views . If it is considerable for you , I will be very pleased . Thank you very much . It was very uncamfortable for me . Today I recived your letter . It is the most wonderful news I have heard in a long time . I am so pleased that I won this prize that I can not explain how greateful I am . Because of this situation I will be very busy in the first week of July , and I would apreciate it if you could give me the option to begin my " Camp California " experience on July 10th . About the Accomodation I would prefer to sleep in a tent , because I have never been in one , and it is a lot more fun than log cabins . Because I have seen my father playing golf since I was a child I am very keen on this sport , and also I love photography because I have got a great Camara . When I was a child I never liked to go shopping because my Mum spent so much time in the shops that I remember that going shopping with her was a nigthmare . It is ameaising how people change over the years For example now shopping for me is one of the most entertaining things , and every week I have to buy something . But these days shopping is not always enjoyable , because if you decide to buy a very expensive designer and you pay the full price , at the end of the season it is half price . I find it very anfair for people who pay a lot of money for their clothes . Anyway , shopping is allways satisfation for rich people , because they can afford it and they do n't mind paying the full price for their clothes . Modern technology ca n't not transforme our daily life . The inventions of the airplane , of the train and of the car , have reduced the distances of the world , so we can go to the other side of the world in half a day . Everything has changed : style , colour , qual . Fashion . We saw almost all kinds of skirts , trousers , coats , skirts and even hats - which untill now have been the main point of many fashion creatures . Grey and black - like the seasons , like people 's charakters , like all the night and dark sourranding us . In the advertisement , it said that Danny Brook was starring , but in place of him there was a different actor and he was really dissapointing . As you can understand , it was a dreadful time and I want my money back as a consolation for the dissapointment I had . I support this idea which is convinient both for the public and the organisators . It is awfull ! However , we promised our perents to do some cleaning every week . What is more , there are many new ways to produce medicines and modern hospital equipement . The second is nuclear weapons and the many wars in which modern equipement is used . To sum up , as far as I am concidered , modern technology has changed my life completely . Last week , during my holiday in London , I had the opportunity to see the show " Over the Rainbow " at the Circle Theathre . The day of the show , we got to the theather at 19:30 . Third , the theatre restaurant was closed because the cheff did not show up . You can feel the fresh air and listen to the animals . This will be a great oportunety ! I am not good at either activity , but it will be a pleasure to try them , espacially surfing . I would like to feel the wind in my hair , and enjoy how quickly the board goes over the sea . I mean , it is too crowdy , you have to wait such a long time before you can pay , and most of the things are too expensive ! I was looking forward to a great evening , but much to my surprise , that was not exactly the case : there were no discounts available , such as were mentionned in the advertisement ; the show started 45 minutes late ; I was then very disappointed to see that Danny Brook had been replaced by someone else . Yours faithfuly , I will take the exemple of the use of the Internet . I am writting to you because yesterday I went to the musical " Over the Rainbow " and I had a bad evening . First of all , I would like to travel in July because this is the beggining of my holidays , and I would not like to miss some of my school classes . Besides , I would preffer to stay in a tent , because I got used to being in tents since I spend my holidays every summer with my friends in the hills . In adittion , I would prefer playing tennis . I also like surfing . I think it is a dangerous sport , but I know how to do it , because of the fact that last year a proffessional surfer tought me . I'M WRITING TO YOU TO COMPLAIN ABOUT THE MUSICAL SHOW " OVER THE RAINBOW " WICH WAS PERFORMED LAST WEEK . YOURS SINCEARLY Because I am a university student , I have got classes until the midle of June and I have to attend a ' Research and Development Conference ' at the end of June . Otherwise I have to work at a business department office as an assistant from the beginning of Aguest . I always want to buy T - shirts , Jeans , Skirts , cosmetics , haribands , accessories , rings , earings , bracelets , shoes , hats , bags , fancy stationery , interior stuff and CDs . Insead of buying something , I buy some fresh food and Ice - cream . I can try all the shoes , clothes , hats , accessories and jakect on . Actually , I could have a chance to ask her about music , her favorite artist and her hobby . Likewise , there were no discounts avalaible . Because of all these inconvenients , I ask you for a total refund . So when Caroline , his girlfriend , told him something personal and very important , because she trusted in him , immediatly he went to see one of his friends to tell him the secret . So immediatly she went to Pat , angry , in order to argue with him , saying that she was annoyed by the way he behaved , and that it was n't the first time that he was n't capable of keeping a secret . But after I climbed two steps more , my right foot slipped . I nearly fell , but luckly my hand caught a rock . It was dangerous , but I did n't have any choice . Finally I did it . I think it was definitely not the perfect evening garenteed in your advertisement . I was terribly ennoyed ! I am always joinable on my mobile phone , which is also boring sometimes ! I often go on the Internet to find information when studying a particular subject more accutely ( university technology sites ) . At work my particular job involves two standard PCs with specifical software plus one workstation with the Stanford University Network ( SUN ) operating system and a special computer that my firm is now developing . I hope this matter will recieve your prompt attention . For example , if you were hurt seriously like cutting your leg off , the new medical technology could rebuilit part of your body . Also we should be careful as we could be watched by security carmera which have been combined with mordern technology . In conculsion , I conciderly said we has been charged by morder technology in two ways . I am not very good at painting , but I choose it because it is a good oportunity to do it . I do n't want to dissapoint you , but I am beginner ! In this book , Heathcliff as a child was n't a bad character , but the situations he lived through with the Earnshaw family , where he grew up , made him rude , agresive and noisy . Before Heathcliff died he riched what he wanted . In your letter you ask me to choose beetween tents or log cabins . Well I prefer to stay in a log cabin . It is more confortable and I am afraid of wild animals . The other activity I like very muche is swimming . First we had to prapare the stands with food and drink and buy something which had been forgotten . He is very beatiful ! Fortunatly we had no problem . I was very proude of myself and the work I had done . Modern technology has completly changed my daily life , which has become more comfortable , and easier . Thank you for the exellent programme you have organised for our class . We would like to inform you that we are all extremly interested in this show and that it could be a great opportunity for us because entrance is free for studends . We would like to ask if we could go to this show on the 15th March instide of doing the visit to the Science Museum . Who has never dreamed of being a famous singer , sportman , actor or a politician ? Firstly , this is because there are a lot of scandale magazine readers . What a catestrophee ! A desaster ! Also , I used to assist my brother , who is a profecional photographer . When I read the advertisment for the show I was really excited but after the show I was not very happy because of the following problems . The advertisment says that Danny Brook and Tina Truelove would play but in this show there were totally different actors and that was really disappointing because I was looking forward to them . The advertisment also says that there are discounts available but this is not true , there were none . Why do you give this information in an advertisment ? I have only one question about the baby 's accomodation . So , you wo n't believe me , but I enjoed helping at an Oasis concert . Me and my friend were there to hear the sound - check , and when I understood what was happing on the stage , I decided to help them . Of course you know I 'm a singer , so I came back quigky to my home , I picked up my microphone , and I handed it to the singer . Can you immagine ? I will consider taking this complaint to court if I do not receive an acceptable explaination from the theatre . On the other hand , people in the future will propably wear clothes to protect themselves from the polluted air and water , the harmful ultra - violet rays from the sun and all the dangerous and poisonous gases or chemicals which are the product of a developed and full - grown country . Therefore , I will suggest that we all nov to keep the enviroment clean and healthy for the next generation . When I first heard about Over the Rainbow I was very excited about the idea of seeing it , plus when I heard about the extras that the circle theatre was offering , it became the best oportunity I ever had to attend a musical of that type , but instead of being the best evening I ever had , it was a total disaster and that 's the reason why I am writting to you . First , the actors that the Circle theatre publis on their tickets for Over the Rainbow were not there , which was very disappointing because the actors starring in the musical were one of its major attractions . Another point that I want to complain about is the time that the musical was supposed to start ( 19:30 ) but it started at 20:15 , so there was major unsatisfaction with that , but the last and worst thing was that your theatre restaurant was closed because the British health institute considered your food unhealthy , and I am not taking into consideration many other points like unsatisfactory service , and uncomfortable seats . Science and Technology is a theme very much discussed nowdays , most of the comunity of our city , and of the world , where technology has arrived , confirms that it has in some way improved their way of life . But not everything about technology and computers is good , because many people , and me in a control way , have become computers ' and thechnologic 's slaves , and we can not do anything without a machine , and I am not saying that it 's wrong or bad , and I accept that they make our daily tasks easier , but we have to mantain our independence as humans . First of all , there are quite a lot of advantages to shopping , which are that it can be the solvation to our stress and boredom . Also shopping makes people happier by costing a lot of money and it even influences the economic situation more flexably . Also there are plenty of dangers since lots of people have their wallet stollen because it is a public place and there are too many people . In addition , shop owners often cheat their customers by increasing the cost secreatly . I 'm realy pleased I won your competition ! I 'll give you the nessesserly information about me . The most suitable time for me is Jule because in August I intend to go to the countryside , where I have a small farm . You ofer me a lot of activities . It was absolutlly great ! I gave information about correct ways to other places like tooletes and medical points . I looked very carefully at the organisation of the event , you know I 'm interestsing in it . I was so suprise to hear from you . I was really greatful when I recieved your letter which informed me that I have won first prize in your competition . Personily I prefer to stay in log cabins because they are much more comfortable than tents . Unfortunetley I am not good at either of them . I really hate it , because we 're not allowed to wear casual and fashonable clothes , colourful shoes or colourful socks . I am very excited and looking forward to the new experiance I am going to have . I would prefer to stay in tents because I love the atmosephere of camping , but I would n't mind staying in log cabins . It is based on information made availble by students from each class at school . It seemed to be the most interesting lesson , because students always make some mistakes while they are practising with thier partner , in spite of having been told by the teacher ten times . Spending time together out of the class is a nice experiance . Firstly , I should say that I would like to travel in July because that is the month wich I could most likely have off from work to go on holiday . That is because , I do not want to seem fuzy , but I like to have some luxuries when I am going on holiday and I think slepping on the floor without electricity may annoy me . Conversely , painting is an activity wich I have never tryied before , so I have not any skill in drawing but I would like to start doing that now when I have the chance . On the other hand , I would like to know some imformation wich could be useful on my holiday like : what type of clothes would be more suitable for me in the Camp ? I am writting to tell you about my experience at the pop concert last month , where I was helping my friend Nick , who was the bouncer at the venue . My job was to accomodate to the people of the main sit of the theathre . So , I hope to see you soon to show you all my phothos . I think it was very clever of me to record that moment wich I will never ever forget , and that was the thing that I liked most about that experience . I 'm writting to you to make a complaint about your musical show : " Over the Rainbow " ... Last week , I , my husband and our two children went to your theatre to have a good time , but we were so disappointed . Moreover , there were n't any discounts available like writting in your advertisement . I will always say thank you very much to the inventor who has invented the maschines wich do the washing and the washing - up , before this , women spent a long time doing these tasks . I am writing to give you futher information about me which you need for Camp California . In conclusion shopping is enjoyable but not when it is too buzy . 1 . Grammer , which is the basis of learning English . Speaking : it makes you more confident when you talk with other peoper . It lets you get more pratices . Writing . This class techer you how to organise what you want to write . It is important to pratise your English after lessons . If you have a problem studing , try asking the teachers about which is the best way to study . Yours sincerly I am writing in reply to your letter in wich you told me I won the first prize . So I want you to send me some money back for that unpleasent night . The headmaster wanted to tell the police what we had done so we decided to imprison him in a little house we had twenty kilometers away from the village until we could change his mind . We took some photos of him naked and told him not to tell anybody about this because if he does we will hang the photos all arround the village . In the following edition the headline was : " Why does a teenager sleep with a toy called Max ? " Everybody laughted at her . I would like to travel only in July because I will have some hollydays at that time . 3 When you are ready to shopp , sometimes you know beforehand what is your priority , because probaly you need one thing rather than another . But the best thing that we do , when we go shopp is spend time having lunch at a snack bar , watching movies and playing computer games . Last month , I worked as a roadie at a Rolling Stones pop concert . I was responsable for the sound . Some people when they are tired relax by spleeping , reading a book or watching television , but not me . There are always , at the end of the afternoon , some well - dressed women coming from their offices and they just spend one hour in the shop whithout buying anything . However , it is true that shopping is not always enjoyable , for example before Christmas or during some special salles . Secontly , the show began fourty - five minutes late and nobody told me what had happened . I preferred riding a motorbike with the people who studyied with me in the Institute . You have a chance to meet people and now you have an opportunaty to select good friends . I like Danny Brook as an actor and when I read that he would be starring , I booked the ticket imagetly . I belong to the generation who have grown up with a lot of new technolgy . For example , TV , telephone , micrown etc . I tought I would never need a mobile phone , but my mum and dad gave me one for Christmas last year and now I ca n't live without it ! But the invention that I 'm most thankful for is the computor and the Internet ! So , I start every day by swiching on my mobile phone , to see if there are any more SMS messages before I go to the library to check my e - mail and that 's just the beginning of the day ... Second , I would rather stay in a log cabin , because I tend to get very nervous in small closed places , so a tent would be unapropriate for me . I haven't played golf for a long time , so it will be pleasent to do so . Yours sincerately , The fans started shouting and wistling for the show to begin , while I just stood there trying to see what had happened . When we saw your advertisment for the musical show , over the rainbow , we immediatly decided that this would be a perfect evening out . Thirdly , in your advertisment it said that discounts would be available , but they were not . I am therefore asking for compensation for our disappointing evening and hope we can reach a sollution as soon as possible . I really like Pat , she 's funny , has a good sence of humor and like me she loves to discuss everything . I have recived your exciting letter , informing me that I have won two weeks at Camp California in the USA . I much prefer sleeping in tents . It seems more sociable and realy sounds like holydays . So one week befor the concert I went to " L'Arena " to meet the other worker and receive the instructions . I 've had the hounour of helping their sound engeineer and branching the cables for microphones , ggitares etc . We realy started to work like ants the morning befor the show . It was exciting looking at all three men working together and building a stage , and it was interresting to help the sound engineer to check the sound and configure his computers to get the best sound possible . About two hours befor the beginning of the show , we met the band and recieved tickets to go backstage . That was wonderful , maybe better than the concert itself ! That 's a great experienc ! Apart from this , photography is one of my favorite hobbies and I usually spend nearly all my spare time doing it and of course I have some diplomas as well . I would like to request some information about accommodation and if you could specifie what this trip includes , since I need to know how much money I have to take . I feel that this was a good oportunity for me , not only for my professional but also for my personal life . According to my job , I had to help the teams with the outlights and , of course , it was my first proffesional experience : in the end I felt like one of them , because they were so kind to me , and I could help a lot and I learnt a lot with this project . I prefer that kind of accomodation because I can have a kitchen or even a bathroom there , but I ca n't have it in a tent . These are my favorite because they have a lot to do with water , but I like them more than surfing . I agree with this statement especially when we talk about small shops in the center of a big town . These days people prefere shopping at supermarkets rather than at shops or even shopping centres , because shopping at a shop is less enjoyable and you spend the same amount of money . There were 963 people at the " Armaggedon " that night ! You must show a great sence of responsibility . I 'm sure you are jalous now . Now I am studying and I 'll continue my studies untill the end of June . I think it 's a very usefull and helpful thing for my health , especially when I do it with pleasure . The second of my favorit sports is tennis . I 've played tennis for ten years . I 'm a profesional and I have to be good at it , in any time . The most enjoable thing was to dress people . But when we saw our show and heard how loudly the audience claped them we were proud and understood that we spent a good time . You should try it and see . I would like to stay in a tent because I used to go camping at weekends but if there 's any problem I could be very confortable in a log cabin too . I have never tried either of them before and as a result I ca n't be good at them but I 've always wanted to sail because I love the sea and now I have the opportunitie . If you do n't mind I would like to know what kind of clothes are apropriate for the camp and for the Californian weather . First of all , we usually go to the shops at the same time as the rest of the world and that 's a little bit complicated because the shops are full and it 's impossible to try acurately . I would be greatful if you could send me the full details . In the following paragraps I will discuss the advantages and disadvantages of shopping . In a suppermarket , shop or department store they have many things . It is very convenien . Sometimes , there are so many people and they are not friendly at all or you are in a hurry while you are in a long queu . Most people enjoy shopping because it is more convenien today but if you found a busy place for shopping or it was not as good as you expected . Dear Sir or Madam , With reference to your advertisment regarding the musical show " Over the rainbow " I am writing to you with the intention of giving you an impression of our experiences attending the above - mentioned show . We were disappointed to realize that not Danny Brook but a different actor played one of the main characters . According to your advertisment the play should have started at 19:30 . What made the situation worse is that no explanation for the delay was given ; not even an apologation . A story of an old seaman leaving his town to proove that he is still able to catch the biggest fish ever caught . Last week I was on holiday in London and I was very dissappointed when I visited your theatre . First of all , the show was supposed to start at 19.30 , but it was delayed untill 20.15 , and when the show finally began we were supriced to see that Danny Brook , who was the star of the show , was not playing and someone else had replaced him and he was really disappointing . Anna told her again : " Pat do n't tell anyone please , especially my brother , everything would be ruined then " . And Pat answered : " Do n't wory I wo n't tell anyone " . The big secret was that Anna was prearing a suprice party for her brother John and she did n't want anyone to know about it . It will be a pleasure to give you all the information wich you need . As far as I know accomodation at Camp California is in tents or log cabins . It 's more convinient for me . I am a good diffender . I 'd like to know what temperature it will be in July in California and your advice about how much money I will need to have an unforgetable hollydays ! If we decide to buy somthing special and we have enough money for it we have to go and buy it . During a prior holiday in London I came across an encouraging advertisment for the show and decided to see it . Unfortunately , I was very dissappointed to find out that there were no discounts available ! In addition , I was very annoyed by the fact that the event had started at 20:15 - not 19:30 as stated in the advertisment . I 've always enjoyed danger and this time getting the password was , indeed , a tough coockie . Especially now , when ' big - mouth ' Pat has spread the news to litterally everyone . I would n't be surprised if suddenly something bad happened to me . Furthermore , for the activities I want to select Tennis and Basketball because I have been playing tennis since I was young and basketball because I played for the team in my college as the capitan . Anyway , this was my experience working at the concert . If you have an oportunity to help at any concert you should help because you have a lot of fun as well , OK . I am writing to you , in reply to the letter I have recently recived , to inform you about some details that I am concerned about . In your letter you presented the possibility of choosing two activities and I would like to let you know that I would be pleased if I could join in with basketball and climbing , as I am very good at both of them because I played basketball in my secondary scholl as captain of the team and due to my long training sessions lifting weights . There is , as well , the struggle you have to endure when you find yourself in the crowds , crambled in the small shops during the only day - off you have to buy somthing you like . All this can easily lead to a nervous breakdown , particularly when you realise that your money has been stolen either during your difficult way through the crowds or while you were qeuing to pay . I 'm the winner of the first prize in your competion and I 'm writing to you to give you some information which was requested by you . And it 's creating a lot of adict people , called " shopalcoholics " . I am writting to you because I had a very disappointing evening at the Circle Theatre . He told me that it was nessary to do something about it . As Pat was lossing his patience , he decided to talk to him . I can say that I was very nervious and anxious about what was going to happen . I am writting this letter to informe you about the decisions I have made regarding your questions . When I was a child I was affraid of all these little insects that live in the ground and this fear still remains now . I also think that the log cabin will be much more confortable than the tent . asketball and swimming are the two activities I have chosen . Finaly I would like to ask you for some further information about the clothes and the money we will need . I was only responsable for the property of the back stages . I was shocked and terrified the firt time I saw them , but the truth is that they are men like us . They have a very simple life and behavior when they are n't on the stage . Definetely , it was not my perfect evening at all and under these circumstances I really believe you should give me my money back . I recived your letter about the two weeks I won at camp California in the U.S.A. I would like to travel in July because I will have holidays in that mounth . Yours sincerily Also , we will take the drinks from our canteen and there will be a group of mucisians for our entertainment . I was surpised because I did not know what he wanted . When I went he wanted to tell me that from the next month I would be his personal secratary and my salary would be twice what it was previously . Unfortunatly , the musical show was n't much like that the one the advert had described , and that is why I want to ask you for some money back . Now I have a new computer , which is very easy to use , and confortable for my fingers and also faster . And he can ansewer me very quickly . I think it is now the futur of big companies to work with the Internet . I am writting to inform you of some problems we had . We had to wait over 40 minitues It seemed to sink into the sea , but fourtunately , the storm soon went away . Finally when it started we noticed to our suprisement that it was not the right actor on stage . Afterwards we wanted to go for a pleasent dinner . Anyway , we defenately know that they 're going to change . In the paper it was writting that the principal actor is " Danny Brook " but it was n't him , it was a different actor whom we had never seen , or heard . Unfortunately , Pat was n't very good at keeping secrets , this sentance is very popular in our school . I helped to guide foreginers who would like to participate in that . Thank you for your letter . I was so happy to receave such good news that I could n't believe it . Regarding the accomodation at Camp California , I prefer to rent a tent , which is going to be more fun , I think , but are the tents singles ? Is there only one teatcher for each sport , and how many are in each group ? It 's the place where you can meet your friends , where you can talk freely , and there are no teatchers . It could be a good contrast to the seriousness of the lessons . Finally we should film the lunch , which is also a moment for the students , and for the teachers , to relax . We must n't forget to film the staff room because if a school is made of students , it 's also made of teatchers . I would like to thank you for your letter you recently sent me concerning the competiton for two weeks at Camp California in the U.S.A. First I want to thank you for all the congratulations , and I 'll try to answer all your questions about , for instance , travel and accomodation . I have to tell you that it is only possible for me to go on holiday in July because my father is very ill and it is only possible for my sister to take care of him in July ( because her small children are in summer school at that time . I was so happy and suprised that first I could not really believe it . Secondly , regarding the accomodation , I would say I prefer living in a tent rather than in a log cabin because I used to sleep in a tent when I was staying in a local scout camp in my country . Thirdly , I have choosen Sailing and Photography from the list you gave me because both of them are my favorite hobbies and I have been enjoying Sailing and Photography for several years so I am quite good at both of them . Finally , I would like to ask you whether I have to prepare any speacial clothes for camping or will the camp provide them for me . A group of girls can stay in a shopping center forever . Thank you for your letter and I am very pleased that I won the first prize in your compition . In addition to all this , I would appriciate it if you could let me have more details about clothes and how much I shall be paid for the trip . Another reason is that it will be more useful for forigen students who want to speak English . The number of forigen students has recently been increasing . To sum up , it is recommened that speaking classes and school trips should be filmed . First of all I would like to thank you for giving me the oportunity to travel . You asked me some questions about the day that suits me the best to depart , the accomodation I would like to have and so on . Travelling in July , I have to say , would be perfect for me because my birthday is on the 24th of that month and I wish to spend my birtday in the best way possible , so that means there . I also would prefer to sleep in tents , which are more comfortable , and , because I have been doing lots of camping , I am quite used to this kind of accomodation . The activities I have choosen both represent a pation for me . We are writting to you to complain about the musical show " Over the Rainbow " , which we saw last week in your Theatre . The advertisement said that it starts at 19.30 , but it actually started at 20:15 due to a probleme with the sound . We were also surprised to discover that the student discounts were n't available for us , because they did n't accept our student indentity cards from Switzerland . What is the effect it has on your environement ? The major probleme for the industrial cities is to deal with the bad effects of polution on the environement . A lot of money is involved in research to stop the increase in levels of polution . To sum up , all the improvements come at a price : the condition of the environement . When it was time to take the final exam , she became ill and she could n't do it so the teachers decided to allow her to pass the course because she had a lot of good marks , but on the other hand the principal desagreeded and did n't give permision to pass her . She had to repeat that course and all her friends passed and as is usuall the girls from the last course became popular . Pat , to win her new classemates ' friendship , told everything that she knew about her friends and , because of what Pat said , her friends ended their friendship with Pat because their popularity was damaged . And it is even more difficul to predict what clothes in the future will look like . I saw the performance and it was not as it was described in the advertisent I read in the local newspaper . Then , I was planning to buy three £ 20 tickets because it was mentioned in the advertisement that there were dicounts available but that was not true , so I could just buy two tickets and my son could not see the show . Finally , I was thinking of having dinner in the threatre restaurant after the show but it was closed due to some problems with the employees . What was suposed to be a perfect and enjoyable evening , resulted in a very disappointing time . So I would be greatful if you paid for a full refund of the money I spent on the tickets . Computers , radio , CDs , sattelite television and a lot of other things have changed my daily life . Another advatage is that , for example , sattelite television , which is an example of modern technology , keeps me informed about what is happening in the whole world . After considering your accomodation offers , I 'd rather stay in a log cabin if possible . It would not only emphasize the sharp contrast between this and the classroom atmosphear but also show how they are as young people . On top of everyting , the restaurant which was advertised in the advertisement was closed because it was being arranged . You can imagine how dissappointed I felt after that evening , and I am writing to ask you for a refund of part of the money . But , in other things , I think modern technology hasn't changed my way of life too much : I do more or less the same as I did some years ago : I get up in the morning , go to school , have lunch , study and go out with my friends without being afected by microchips or nuclear energy . I have happily received your reply and I want to thank you for this marvelous prize you have given me . After helping to do that and many other things , my friends and I watched the concert and before Green day ( the group ) left , they came up to us an thanked us for all the hard work we did , and shoke our hands . It started at 20:15 leaving us waiting for fourty five minutes . In the future people will wear clothes made of polyseer and nylon because cotton and wool will be rare and expensive . Also I think clothes will have many gadgets on them like a small oxygen mask in case someone goes in a place with extended pollution - I think there will be many such places in a hundred years - and a hat designed to protect people from the strong sunrays of the sun at midday because the ozone layer will be destroyed in a hundred years and the sunrays will do damage to the human skin . Now , it is already possible to send our shopping list by computer , and this opption , in the next few years , will become the most common one . The new technologies will probably produce a considerable revolution in some essencial parts of the house . For example , we will have computerizated ovens , microwaves and freezers , or we will probably have central heating controlled through the Internet from our office . Firstly , log cabins are more comportable than tents . Is there a possibility of exchanging different currancies to US dollars ? When you think of shopping , it reminds you of going out ( mostly ) with friends , looking for new things like clothes , accesoires etc . and buying them . Then in the adverstisement it said that the performance began at 19.30 . I was very nervious . So this evening was terriable . And now I requere my money back . Among them , the mobile telephone , computers , telefaxes , different appliances for the kitchen , mashiens which help housekeepers to do any work about the house . So with the appearance of new morden technology people have got much more free time . Some years ago people , especially students , had to run to lubraries in order to find a book about something . I use the Internet very often , and I must say it is very convienient . If I need to say something important to my parents or my friends , or if something terriable has happened to me , I do not have to run somewhere to find a telephone box . With it people do their work more quikly and successfully . I saw an advertisement which made it seem very atractive to me . Firstable , I decided to go see your show to be entertained by the performance of Danny Brook so I was very sad to find another actor on the stage . It 's enbelievable it was 45 minutes late . We stayed with a host family in a surburb of the city . The man said it was OK this time and we got in quite easely , we 'd made it . I 'm excited to be going on holliday there and , thanks to you , I will realize a dream that I always wanted to do . Yours faitully On Monday we could first go to the Sience Museum and in the afternoon to Greenwich . Everone knows you because of the journalists , so you ca n't just ignore them , can you ? I am writing to you because of the unpleasent evening I have had recently . Ealyer I had seen an advertisement for the show but the information on it was fals . The last thing is that it was unpossible to go to the theatre restaurant because it was closed . I would like to write about how it has influented my daily life . I am a student at a technical univercity . When I neaded some information I had to go to the liblary to find it in books or newspapers . The computer is helpfull when I want to contact somebody very fast . The second thing is that when I neaded a phone card to call somebody I had to stand in a long queue . Although we would like to visit the science museum , we can leave it to the next opportunity . What we suggest doing is intead of going to the museum in the morning we go to the Leisure Show and keep the afternoon programme the same . I knew I could not make any moviment for my safety but I did and to my surprise it ran away . Since I am a student I have to follow the vacation programm of my school , which means that I would only be able to travel during the month of July . Concerning the activities , as a matter of fact tennis is my favorit sport and I am very keen on it . For the second activity I would like to enroll in surfing , because my husband , who is already a proficient surfer , keeps telling me about the excitement of this sport , and I think it is worthwile trying , therefore I 'd love to be in the beginners ' group . It offers a wide choice of courses from cooking , computing , make - up , languages , geographie , to culture and civilization . Once students have taken a shower after hard physical training they enter real life . Depending on their levels of proficiency , they have to study for instance languages wich I personally find very important for a person working in the tourism industry because they enable staff to communicate with clients in a proper way . Students have to manage to speak at least three languages . Another important lesson to film is " culture and civilization , " so people will know that the hostessess trained at this school are not simply , as the French say , " pot - au - fleurs " , beautiful faces , but also well - read people . Last but not least is the class called " know - how " , wich shows students how to cope with unspected problems even if they are stressed . To whome it may concern , Firstly , the advertisement said that Danny Brook was going to starr in the musical but it turned out to be a completely different person , which was very disappointing . Secondly , according to the advertisment , the musical was supprsed to start at 19.30 but it actually started at 20.15 , which caused me problems . With all the dissatisfuction above , therefore , I would like to ask for some of my money back as my evening was not what it should have been . She saw some familier faces on the other side of the street . And if it is possible , I would rather be accommadated in log cabins because I would not like to share the bathroom facilities with someone who I do not know well . I am in the school swimming team and I am intered in photography professionally . Could you please tell me what kind of clothes I should bring with me and whether the company offers us some expensise money to spend ? And what 's more , there were n't any discouts available and the theatre restaurant was closed : the only people who could enter were the actors and the staff . Well , it seems that it was n't my perfect evening and for all these reasons I demand to have my money back , I wasted £ 20 to see a show which does n't respect the programm I paid for . Science and technology can be useful : see for example the use of TV in the school or the use of the radio to learn a foreign language or the use of the computer to get further information about something that intersts you . Again we 're so sorry that we are causing you inconvience regarding your plan and thank you for considering us . But we could have everying we want . Home might be a mixture with moden styles and a natural appearance as well . These days a lot of contries have been worried about lands that ca n't have enough space to build houses . Because we are living a computerlised life , we 'll able to do most things at home or these flats'll have these places as well . On the other hand , what migh still be the same is to have good places to take a rest at home , such as a beautiful garden , a small terrace . Last week I went to the Circle theatre , for which you are responsable , to se the musical show " Over the Rainbow " . I think modern technology has changed mankind 's life a lot , expecially since last century . The changements brought by modern technology are so important that today no one can live without this technology or without a part of it . In my situation for example cars and motorcycles are a necessity : I live on a little mountain at 160 metres altitud so I can not go to the city using a bycicle . Because of my " isolation " the telephone is very important and I need a good personal computer with a modem and the Internet to study or do research , because there are not any book shops to buy or borrow books in my little town . Only those who get good marks can take part in theese activities , so sports activities are seen as a prize , so while the students are playing basketball , tennis , volleyball ... or they are swimming you can see satisfaction on their faces , and our volleyball team is excellent . Be carefull , my own technology can kill me . The only convinient time to travel is in July . This part had to be saved for later because the concert orginazer wanted to know the exact number of visitors . Here , I had to check the bags and couts of the girls . I think it 's because the last time I travelled ( with my friends ) , we stayed in log cabins , and when I was sleeping I felt something moving on my skin , then I woke up frightened and when I openned my eyes , I saw lots of big ants ! Greatefully I met all the staff , and Ricky took lots of fotographs with me and gave me an autographied Record . I am also writting to make a suggestion and to give you my opinion about next year 's festival . An internation arts festival is a great idea , but at the last die there were stars and artists from only six countries , and it could be more interesting to have the opportunity to meet artists and stars from more than six cultures . I could not listen to one of my favorite classical concerts , " La Moldava " by Smetana . In Italy there are n't a lot of rules at school and they are n't very stricht . I am writing to you in order to describe my last visit to your theater . Unfortunatly , I am very disappointed about the organisation of your company . Firsty , the musical show started not at 7.30 p.m. but 45 minutes later . I do n't know whether it is a typical situation in the Circle Theatrer that it promises much more then the people can get for their money , or whether it was on June 7 ( my visit ) only , but I do not approve of such a situation and must ask you for my money back - my bank account number is enclosed . Because people have fast and comfortable cars , they are much more mobil and can spend their free time more aktiv - they can often visit their friends and travel much more . Secondely , we can do our jobs today more efficiently . I found your advertisement in the tourist board officis and as the musical " Over the rainbow " seemed to be a good option I chose it . Lyter a long time walking we decided to return and now the weather was so hot we decided to find a place to drink something . I 'm really very unlucked . However , we saw an advertisment for " The London Fashion and Leisure Show " and we would all like to go and see it . We could immediatly see that it was broken . All syntetic material will be uncomfortable for these people . Women will prefere long skirts and short blouses and jackets . Men will wear as usualy - a suit . For special ocassions , for example a party , a concert , people will dress very smartly . I think that it will be dresses , and suits swewed by the well - known tailors . I think that we will observe a few slow changes in fashion , but I hope that new clothes will always be pleasent for people . As we have seen the advertisment for the programme the school arranged for us as a farewell activity , we are very appreciative and would like to thank you for your kindness , as all of them are very interesting and give us a chance to meet and join the other class , which we have hardly done at all . So this is a great oppotunity for us to get used to the real world of fashion design , because in this show there will be a fashion show , a demonstation from make - up artists , and a contest for hair stylists . Furthermore , most of the famouse brand of sportswear companies will be at this exhibition with their new products for the coming season . Anyway , intstead of going shopping in the afternoon session , we will attend the show . We all think the programme is organised well . In particular we 're so keen on the idea of going to the National Art Gallery , to see the work of the bigest painters in the world . I 'm writing to you because we saw a great advetisement for the London Fashion and Leisure Show and we really would like to go to see that show . I think it 's a great opportunity , because we will have a chance to se the latest fashion , leisure and sports wear , and also the way to do the perfect make - up and hairstyl . In my opinion , we can have a great time there , and entrence is free of charge for students , which is very important as well . We thought that with that beutiful weather the seeside would be just perfect for relaxation , sunbathing and joy . However , the truth was a little bit diffrent . The weather had changed suttendly , and there was no more sun , but strong wind and heavy rain . Despide that we were still thinking optimisticly . We were thinking is so many other activites to relax and enjoy ourselves then sunbathing on the beach . The sky went completly black , so at first it was difficult to see where everybody was . I looked around and I relised a friend of mine was still in the sea , and fighting against the storm , trying to get to the shore . Everything was looking so dangerous but fortunetly it ended well . I would like to apologise to you for my controversary opinnion but I feel really disappointed . I came to London for a short holiday to meet new poeple and to have a taste of English culture . I 'd seen your advertisment which recommended the play ' Over the rainbow ' and I liked it very much . In the advertisment ' DISCOUNTS AVAILABLE ' was written . Shall I ask you one question ? - Why were n't they available ? Everybody was schocked and I was trying to keep the faith . Nevertheless , after the show I was very hungry so I went to the theatre restarrant and what did I see ? Finally - you offered a wonderflul evening but I must say that if I had known that it was going to be like that I would n't have wasted my time . I feel entitled to write this letter and I feel the oportunity . Yours faithfuly The main adventage is that it provides you with all the information that you need . Furthermore you can play with the computer , and unfortunetly this fact especially has changed my life . On the other hand , playing games and using a computer widens my brain so , as you can see , this modern staft has got many advantages and disadvantages . I saw the advertisement for the International Arts Festival wich is a great idea . Firstly I want to congratualate you on the festival . I have a suprise for you . Shopping is not always enjeyable . Secondly , you have a lot of choises and you do not know what to buy . Lastly , there is a recyling problem , which many people do not care about . In my opinion , small shops and the street markets should be supported . On the other hand , the big supermarkets should think more about the recyling problem , which will be the most important problem in the near future . Secendly , the show started at 20.15 . I will be gladfull if you will send my money back . Yours faithfull , This was the reason whe we were in horrible trouble with the police . Let 's go back to the beginig of this story . There was a secret place where a robber keept gold stolen from a bank . We found the solution to this deceperous situation - to say nothing to anybody . Our class really appreciate your preparing this programme , especially with regard to Monday 's atraction . We are extremaly interested in wisiting London . In the last edition of ' London 's Guide ' we saw an advert for ' The London Fasion and Leisure Show ' , which will be held on Tuesday and it lasts from 10 a.m. to 7 p.m. The offer mentions the ' latest fasions ' , which we are incredibly interested in . Nowedays famous people do n't have an easy life . They are always attacted by naughty journalists , which have a desire to earn big money for writing an extremaly good report or article . When chosing this style of life they should realise what their life would be like . On the other hand , their life has no privaty . Some people may argue , but I think that politicions and film stars belong to the public . In conclusion , I belive that we have a right to be informed about their lives , providing that journalists respect some important rules . We think we 'll have one free hour befor the River trip . Regarding accomodation , I would prefer to have a log cabin . It would be better to leave money or anything in without worrying about theft . I 've always dreamed about climbing but I have never had the opportunity to try this sport . I have alredy thought about a change to the programme . But the worst thing about " London 's newest and best musical show " , as you called it , was the abscentness of Danny Brook . The actor wich was " dancing " was horrible . I want you to give me back my money . I hope that in future you will corect all these mistakes . That was supposed to be a joke from my " coleagues " ! I enjoyied it and here are some feelings and advice for next year . They do n't fancy going into the crowdy shop . I recieved your letter congratulating me for having won the first prize in your competition . I am very greatfull and I want to thank you very much for letting me go on this trip . They are much more confortable than tents . Appart from calling them , I also helped build the stage , and took care of the lights . I can tell you that it was a wonderfull experience . But Pat , coming back hom , told her mother everything . The advirtisement I had read did not tally with the performance . Today it is used practically in all spheres and its influence on people is not unnoticable . I am writing to tell you that the students of my class have seen an advertisment for the London Fashion And Leisure Show . I had to become a burgler again and steal jewelry from the jewellers nearby . As I knew the teknics to break into a place without being noticed , I should not have been afraid but tonight I had to steal the most precious diamond in the country , which was very well protected . There were laisers all over the place , which I had to be careful of . I got into the car and gave the jewelry in exchange for my brother , took him and left the place . The programme offers enjoyment and education , which is esencial for young people . Secondaly , because we do not have to pay for the tickets . We have already orgonised our visit in a new programme . We are looking foraward to hearing from you . The future is unexpectable and human beings are afriad of dangers , such as tornados or earthquakes . What we really need in the next millenium is love , that is what will keep all the family together forever . Life is too short to think about poscesives . Our houses will change because of new technologe , which may make our lives more comfortable . What depends on us , is the atmospher we will have in our houses . The home of the future , for me , is a place of hapinest . We can not be aware of future technologe , but we might still have some feelings for each other . I have swimmed since I was in primary school . In particular , I liked cleaning the stage , because I could stand on a famouse singer 's stage and I could feel his enthusiasm , even though I had to clean it . I go to the beach almost every weekend to improve my surfing - it is the sport I like best - and I think it would be a nice oportunity to practise surfing too . There are some things I would like to ask about : the tipe ( and quantity ) of Clothes I will have to take , and if it is necessary to take some money or any additional stuff ( like raincoats ) . Since we were kids people have told us stories about two sides in conflit : the good and the bad side . What was more , it was closed because of refurishing . When I was a university student , I had to find out some imformation for my homework . I imagined where other contries are like England . I am still a student and I saw in the advertisment that there were some discounts available . The first thing I do every day , when I get up , is to prepare a fantastic cappuccino with my coffe machine . All day I speak with the majority of my collegues by telephone or e - mail . If I haven't enough time to cook I prepare my meal using my fantastic microwave hoven . The home of the Futere Technology is changing very fast and at the same time as I 'm writing my article about the future maybe technologists have made a new owen which co - operates with your refrigerator and has a program to make dinner for you every day without you having to do anything . What about rooms which can sense your mood and act according to that ? If you are tired for example then your stereo might put some relaxing musik on and turn down the light a little bit . I think that everyone should think not just about the positive side of technologi but also the negative . First of all , the advertisement I got layed emphasis on Danny Brook 's starring in the show , but actually , a disappointing , unknown actor played his part , and I wonder whether he had real skills . To make matters worse , not only was the restaurant closed , for no appearant reason , but also the discounts that were said to be available were not . We are all excited about the programm you 've prepared for us , especially about visiting the National Art gallery . We have seen an advertisment for the London Fashion and Leisure Show in a newspaper . We think it could be a great opportunity for us because we 'll see the fashion show might shop for leisure and sports wear and all the girls in our class are intrested in new styles in make - up and hairdressing . A scintist could discover the 4th dimention and we 'd get unlimited space inside the house . You could tell your wardrobe what clothes you 'd like to wear , your hob will cook your favourite meals and your refigerator will send orders to the supermarkets to buy the food . I AM WRITIN TO YOU IN ORDER TO GIVE A REPLY TO THE KIND LETTER I RECEIVED FROM YOU . I CANNOT EXPRESS HOW THANFUL I AM FOR THIS BEAUTIFUL PRIZE . I HAVE CHOOSEN THOSE BECAUSE I AM QUITE GOOD AT PLAYING BASKETBALL AND I SING EVERY WEEKEND IN THE CHOIR OF THE LOCAL CHURCH AS WELL . I HOPE YOU WILL BE ABLE TO ANSWER ALL MY QUARIES . THANKS FOR THE KIND LETTER YOU SENT ME LAS WEEK . BUT TO MAKE THE THING BETTER I WAS CHOOSEN TO HELP THE BAND AND THE ORGANISERS OF THE CONCERT . AS YOU KNOW , I AM A SOUND TECHNICH , SO I HELPED THEM TO SET UP THE SOUND EQUIPMENT AND THE INSTRUMENTS PROPERLY . I am writting to you in order to get my money back , concerning the musical show : OVER THE RAINBOW . First of all : the actors who were mentionned in the advert are not the same as the ones on stage . Or special flying shoes , and maybe you would have a screen on your watch to watch your favorite soap operas . It could be any day but please let me know nearner the time . I reciently was in London , staying in my sister 's home , and I went to se " Over the Rainbow " . Sorry , but none of this is proffesional , and I am going to make a demand exactly because you do n't have that , if you do n't give me my money back . But there was a little problem and it was that my parents did n't let me go to discos alone , so I had to go illegaly , and I decided I would do it . To sumarize the night , I am going steady with him , and he took me home . All the truth was then told , and now I am grownded for life . She defintevely does n't know how to keep secrets . I want to know if I can take my celular phone , too . To Mr. Smith , Circle Theater 's manager We had preparred this quite a long time ago , this trip to the capital and saved a lot of money as well . When we saw your leaflet that mentionned " London 's newest and best musical show " , we were so enthusiastic and curious that we immediately bought the tickets . First of all , I think we should consider the way people are dressing at present to see how it 's going to be developped in the future . In 100 years , it 's possible that everyone will developp his own style using all the new materials like plastic , latex , everything possible , as a way to create their own clothes . Finally , life in France is crasy , this is the tradition . I am writting to complain because I was really disappointed by your musical show , which is " Over the Rainbow " , last week . First of all , the advertising shown us starring , which is Danny Brook and Tina Truelove . However , when I saw it , the musical starred completely diffarent actors . I was really disappointed about it . Now then , how was this advertising , it was completely diffarent . I am really disappointed with your musical . I am asking you for my money back , because I did n't enjoy your musical . I am writting a composition about " How modern technology has changed your daily life " . This is our subject . This modern techonology gets closer between person to another person , get close between worldwide , so that , this modern technology changed our daily life so diffarent . First of all I would like to travel only in July because I am going to work in Aougust to earn money and after that ( from September to June ) I go to university as usual . About accomodation at Camp California , I would rather be in a tent than in a log cabin because in July the weather is really good and when I am in a tent I feel closer to nature . That show was n't what it was supposed to be and it is for that reason that I am writting to you . I am writting to ask for the refund of the £ 55 which I spent on the ticket for that miserable show . All the time there are more machines helping doctors and nurses with their difficult tascs . Going shopping is a good thing when you do n't know what else to do but it also has many disavantages . I am writting to complain about the musical show at the Circle Theatre . By using a car I not only get an easy way to move around , but I also destroy the enviroment . For instance with the arrival of the Internet , the new digital television and the researchers in medecin , we are discovering how we can change our lives with only the press of a botton , or look for something new by only thinking about it ... we realize that the new technology has just begun to advance , and it is likely in a few years we will be very avanced in this way . In my opinion the new techincs have more advantages than disadvantages . My reasons for saying this are that we can live better , we also have more ways of knowing now to live healthily and how to spend our free time . As you offer many activities it was hard to choose which ones I want to do , but I dicided to take swimming and photography , because I am very good at swimming and because I am currently attending a photography course in Vienna . There was always a lot of security stuff around us to make sure everything was OK , because there really were thousends of people . Edi Vedder even talked to me about their programms ! My golf teacher is my father and I 've only played in a practicing centre , but my father and his friends say I have good talent for golf . Firstly , we should defnitely put the news review lesson in , because we start every morning with that class and it is where we have a lot of discussion . I think , nextly we can film either the development class or the society class , because in my opinion they are the most interesting classes apart from the FCE class . Secondly time starts at 19:30 on the leafet but it actually started at 20:15 . Finally it said we could visit your theatre restaurant after the show but it was colsed because your excuse of being used at that moment . It said in the leafet that this would be a perfect evening out , while it was not that at all . She was so frightened and sad that she had no energry . Fathermore , no discounts were available . You have a responsoiblity to the audiences . These things are very convinience ; on the other hand , there are lots of disadvantages . Unfourtunately it is not so cheap . I was very serpride when I got the letter from you . And you need some imformation from me . I would love to try surfing because it is a very interessting sport and uses a lot of power and enigy so now is the end of the letter . And I want to know more about the money . Can you give me more imformation about the money that I need to bring whith me ? Now let 's start whith shopping at the Beverley Center . The Beverley Center area is the place that the teenagers like to go shopping at the most . Because everyone has different thinking like Beverley Centre if you go there every day or every week for shopping you will get very bored because sometimes there are too many people everywhere , like in the resturant and shops . Because all the smells in the market are awful - there is the smell of the meat and durty water , black and smely water , all over the market street . We hope to see you at the party and have a wonderfull time together . It means swimming at the wonderfull beaches , tasting the delicious food and having a wonderful time every day and every night with your friends . I am writing to complain about the musical , OVER THE RAINBOW , and also about the servic . Sacondly , in your advertisement I had read " Times 14.30 and 19.30 " . I look farward to hearing from you in the very near future , to offer me my money back . After that a being climed out of the potato . I could not belive my ears . The being moved its hand farward and ..... Immediantely after I heard , " And do n't forget your homework " . Moreover there will be a demostration of modern make - up and new different , shaking hairstyles . I look foward to hearing from you in the near future . The wind was blowing and the heavy rain was drumming agaist our bedroom window . As a postman , Peter had to deliver letters aroud our little village . Recently , I had the oportunity to go to your Circle Theatre event . Unfortunatly I never thought it could be so dissapointing . The first problem happened at the box office because there were abosolutly no discounts available . Because of all this , what was supposed to be one of my best nights turned out to be definatly one of the worst . Techology is always getting better . And it is responsable for many changes in my life , and I think I would n't be able to live without it anymore . Nowadays , with the Internet it has become easier to do school work and I also like to chat with other people or maybe read the latest news about my favorite football team . I also recently got a celular phone and I do n't know how I lived so long without one - because it helps to solve problems so quickly , it 's really amazing . But for me , the best thing is definatly the microwaver . There are some of the devices of modern techonologys that most help me but there are some others which are also very important for me . Lastly , can you please tell me how much money would be appropiet to take ? At the end of the concert , when it was after midnight and everyone had alread left , the group came up to each of us ( who helped out ) and thanked us personally ! Now I have the opurtuanity so I shall inform you fully . The oppurnity of being able to help in the concert knocked on my door by chance . She is a very nice person . I managed to scavange an authograph for you as well , I will put it in the envelope . I am looking forward to receiving your answer and do n't forget that it is a surprice birthday party . In spide of that fact there are of course many families especialy in small towns who eat lunch all together and then they solve their problem all together . And the difference is that those children are effectivily when they grow up and want to have a family , they do the same as their parents and have a happy family . Besides that the most importand thing is that these children have an easy adolescence and they haven't got pshycological problems and they are useful in sociaty . To sum up , family life is the most important thing for children 's phycological world which helps them in their education , job and their marriage in future . I'M WRITTING THIS LETTER BECAUSE TWO WEEKS AGO I WAS IN LONDON AND I WENT TO THE THEATRE TO SEE YOUR MUSICAL SHOW . AND THROUGH SEEING IT MY FAMILY HAD A VERY DISAPPOINTING EVENING AND SO DID I . YOU CAN READ BELOW MY POINT OF VIEW REGARDING THIS . FIRST OF ALL , WE COULDN'T SEE THE FAMOUS ACTOR " DANNY BROOK " BECAUS HE WAS ILL . I THINK THAT THE MUSICAL SHOW SHOULD HAVE BEEN CANCELLED FOR THIS ALONE . NOWDAYS THE MAJORITY OF PEOPLE HAVE A COMPUTER IN THEIR HOME AND SOMETIMES WE ASK OURSELVES IF MODERN TECHNOLOGY WILL CHANGE OUR DAILY LIFE . About accomodation I would prefer a cabin , because I suffer from alergic , and I think a tent would not be very suitable for my health . I won last summer 's swimming competition in the school . Although I 'm not very good at surfing I like it , and I always practis on my holidays every year . I would like to know if it is necesary for me to bring some money , and if we will have time to visit the City . About the clothes , do I have to bring some winter clothes ? I 'm very greatful to hear from you . You asked me to tell you about my experience helping at the concencert last week . I was asked to put all the chairs in order for the singer . This was only in the beginning . After that I needed to check all the microfons . After that all the singers arrived and I was in charche of greeting them and giving them something to drink . You can immagine how excited I was , especially because I always wanted some photographs of them and this was a special moment and I realice I had n't brought my camera . I was very sad . Actually this was because most things I saw were differend from what the advertisement said . Unfortunatly , Pat was n't very good at keeping secrets . One day , we went to a party , where she met some of the most pobular girls in the school . Afterwards , when I saw her , she laught at me and the next day all the school knew everything about me . I would like to have accomodation in a log cabin because I think it is more comfortable than a tent . So as we can see - shopping is not always enjoable . About the accomodations , I would rather stay in a log cabin . For weeks I 'd been planning to go to the threatre with some close relatives and friends but the problems that we had made this perfect night a disaster for all of us . To begin with , in your advertisment you say that Danny Brooks will be starring in the show but instead there was a different actor , which made us very disappointed . Another thing that is said in the advertisment is that the evening show will start at 7:30 but there was a forty - five minute delay . The crowd got really upset and we were going to leave at the first chanse we got . If you do n't do as I say , an article in the biggest newspaper will deffenetly change your ming . This is something that has trabled many people , especially those who work in the fashion industry . Fashion has made great progress since the ealary days . In the early 90s it was in fashing for women to wear only skirts . Nowdays women wear really short skirts , short t - shirts , short tops , and cut their hair short just like men . Boys pearce their bodies just like girls do and vice versa . People will wear all those clothes that expensive designers designe but no one wears . I took the dissision to write to you because I would like to complaine about your theatre . I am writing to you because last night I expected to have a wonderful evening and unfortunatly I was very disappointed . I and some friends disided to go to the theatre to see a musical show . We were so excitment . We are on holiday and we desited to go . We had never been to a musical show and we thought that it was a nowe oportunite . I believe that some ather actors mabe made the whole story more interesting . The first was very early , at 2:30 , and the ather at 7:30 . We went at 7:30 . Finally the musical show stard at 8:15 . We wate one hour . When the show finished , we went to the restaurant and it was closed because the people who whork ther do n't wark if they do n't get their pay first . I and my friends would be abrisled if you would give us back some of the money we paid . Humans have done many things Throu the years and made many things possible . Now we are in the 20th centure in which people have been to the moun and discavered medicines for serious illneses . I live in that century too . I believe that I am like that , I belong to that centure . I believe modern techonology has changed everyone , especiale now with computers and all the athers machins . First I want to talk about the combuter . Before , I used some ather ways to get information or play or comunicate with people . I can spend so many hours because day by day I discavered new things . Maby it is not good because you do n't have the oportunite to meet people and talk face - to - face . Apart from computers we have the telephone , TV , and gyms . About the TV . I spend many hours in front of the TV . It helps me to relaxe and spend some hours alone . Exactly happend and with telephone . About the gyms , I like them very much . Those places have so many machines that you can eazy lose weight and develop a wonderful body . Now , in conclution we can see , or I can see , that mapy I am not a very sociaple person but I can do whatever I want and take whatever I want only throu technology . Firstly , I was disapointed , because the actor Danny Brook did not appear in the show . I am writting to complain about what it says in the advertisement is not true . 3 You recommended the resturant after the show . It would be greatful if you considered returning my money as soon as possible . This is not nomally what people wear every day . The 2nd F is ' fulfill ' wear ever you have in your mom 's cupboard . For example long baggy troossers , which cover your bright brick shoes . Wherever you go everyone would love you because of your troussers , which would clean away all the rubbish that is on the road . If I can choose my accomodation , I prefer staying in a tent . I prefer this accomodation because I think it 's easier to meet people when you stay in a tent , near them , than when you stay in a log cabin . TO ANSWER YOUR NEXT QUESTION , I WOULD RATHER STAY IN A LOG CABIN . THE THING IS , I HAVE A FOBIA ABOUT INSECTS AND MY DOCTOR RECOMENDED THAT I SHOULD SLEEP IN AN ENCLOSED AREA . I WOULD LIKE TO ASK YOU IF IT 'S NECESARY TO TAKE MONEY , FOOD AND CLOTHES WITH ME . NOW THAT THE STUDENTS HAVE GATHERED TOGETHER THIS YEAR TO MAKE A VIDEO ABOUT THE BEST LESSONS AND ACTIVITIES THAT WE HAVE IN SCHOOL , EVERYTHING POSIBLE OF COURSE WITH HELP OF TEACHER MS . WESTBROOK . IT WOULD BE MY SUGGESTION TO THE PRODUCERS OF THIS VIDEO THAT THEY SHOULD FOUCOSED ON OUR WRITING AND CULTURS LESSONS . FOR CULTUR LESSONS WE DON'T NEED TO GO SO FAR BACK IN TIME ; FOR THE LAST 60 YEARS OUR CULTURE HAS BEEN CHANGING ENORMOUSLY AND WE CAN TALK ABOUT COMPUTERS , WARS , CARS , WEAPONS , ETC .... ALTHOUG LOTS OF PEOPLE DON'T BELIVE IT , OUR SCHOOL HAS A SPORTING IMAGE . I THINK THE VIDEO WOULD ENCOURGE STUDENTS TO DO SPORTS AND BE GOOD ATHLETS . I have received a letter from you saing that I have won the first prize in your competition and you need some information from me . I would like to travel in July because my hollydays are only in that month and the wheather in California is better then . They liked me so much and invited me to be responsable for the lights and sound . I told them that I will think about it but I belive I will accept the job . The most increible part was the laser show . They were drowing a lot of things in the sky during the concert . I 'm shure that you are going to love it . About my acommodations at the camp , I would prefer to stay in a log cabin because it 's safer than being in a tent and because you sleep more confortable . The activities that I would like to do are singing , because my friend told me that I 'm good at it , and the other activitie that I would like to do is climbing because I think it is very exciting although I have never tried climbing , because there are no mountains in my city . I appreciate the opportuniti that you are giving me and I 'm very grateful to you guys . Well on march 11th there was a group here in brazil called " Los Jagoares " , they sing pop music . And they are one of my favorites and as you know I have a cousin that works as an organizer for all the bands that would like to have a concert in Brazil and when my cousin knew that my favorite band was coming he called me and asked me if I would like to help them to install the speakers , microphones etc ... and I said , " Sure man . " Last Sanday my friends and I saw that advertisement about the play you were supposed to put on . We waited ther for forty - five minutes for it to start ! We really got bored , like all the other peaple there . And then delate forty - five minuites to present the show . That was very disapponted . My friends and I demand our money bacck very soon . And please do not be very suprised if you recieve more letters about this . Pat , my sister and I felt very rensposible . I did n't beleive him at first . But I could se that his face was happy and he was n't telling lies . I could n't beleive it . I had not seen him for five years . How are you ? I 'm not so well , and that 's the reason why I 'm writting this letter to you . Unfortunatly your advertisment said that the show starts at 19:30 but it started 45 minutes later . Children are not studying as much as they ought to , because they are watching TV , speacing on the phone or even playing computer games . This is also another cause of heart attacts . Your advertisement for the musical Over the rainbow said it was London 's newest and best musical show . I agree with that because it is a wonderfull show but it said that Danny Brook would be starring in it . In the advertisment it also said you could visit your restaurant after the show , and that is what I did , but when I got there it was shut for no reason . Pat could n't resist and told her brother Jacob . He was quite shocked about the news because he missunderstood . There , Jacob aproaches him slowly and tells him . It was all a missunderstanding . I hope all my wishes are realizeable . I can not bear it when somebody says something and then does just the opposit . It must be our decission whether to stay and eat there , or not . To cut a long story short , because of everything I have said above , the correct thing for me to do is to ask for my money back , and for you it is just to give it back to me because of all the trouble and disappointings you have made me suffer . HOW HAS TECHNOLOGY CHANGED OUR DAYLY LIVES ? In our grandparents ' time life was so different that we can not beleive that this huge change to our daily life happened in only one hundred years or less . Furthermore , as we all know , daily life nowadays is quite simplier and an example of this is that instead of buying a peice of ice to cool drinks ( as our grandparents used to do ) we not only have a refrigerator but also a freezer in case you want it faster and colder . Strange as it seems , we now have all types of machine or especialized technology to make our dayly life more confortable and less stressful . I am writing to thank you for notifying me about the competition and I would be very grateful to give to you the information that was requiered in your letter . About the Accommodation , I would like you to take careful consideration of the fact that I am ashmatic , so I would appreciatte it if you could reserve a bed in a log cabin . If you have this oportunitty one day , you had better buy the ticket to the concert or just watch it on TV but never do something like this just to get a free pass . If this had been my only disappointment nothing would have happened , but I had to wait stil quarter past eight to watch the show , instead of it beggining at half past seven as you had written in your advertisement . As a conclution to that horrible evening I decided to visit your theatre restaurant once the show had finished , but what a surprise when I found it closed . It consisted in having to memorisize a whole book of 250 pages in order to pass a final exam . On the exam day everybody anwered every question correctly . Secondly , although the log cabins appeal to me , I would prefer a tent because I think it is more comfortable and atractive . Nowadays most people are atractted to shopping centers , which are not always enjoyable . Forthly , that product is too expensive for you and the last problem is you buy too many things but you have not got your own car so you have to carry big boxes by yourself . First of all , the show was suppossed to start at 19.30 , but it started at 20.15 . I am looking foward to hearing from you . Nowadays , there are more and more people who want to become designers and the competion is increasing . I always wanted to go and se the USA ! In my opinion , staying in tents is mor exciting than staying in log cabins . I 'm very happy about this because I spent most of my scholl life playing sports , especially basketball . They mixed up our traditonal music and pop music . In reply to your letter recieved on the 13th of June , I first would like to say that it is a great pleasure for me to have been chosen . In fact there would be only one possibility in July because I will finish my exams at the end of that month and beginn vocational trainning the 1st of August . Then , during the concert , I helped to serve the beers at the bar . I met a lot of interresting people while I was serving drinks . Everything was very interresting , but what I particularly liked about the experience was the human relations . I met a lot of different people and they all taught me something new about behaviour or compation . I prefer to stay in a tent so I go campping every summer and am used to sleeping in tents . I 'm very good at swimming as I have been a member of various swimming clubs since I was 6 and I chose photograthy because I have a new camera and want somebody to teach me how to use it . Introduction : To support an idea to make a short video about daily life at our school I have spent some time discussing it with other students , and observing and analaising an avrege day in our scholl and have come up with some suggestions . I think it is a good idea to include a record of one of our big events such as the anual sports turnament or wellcoming evening for new students . Conclugen : To sum up the above I 'd like to suggest not filming anything longer than 1 or 2 minutes and having a nice mixture of places , faces and events . First of all , on the ticket it says that the actor was Danny Brook and realy he was not . Then , on the ticket it says that the show starts at 19.30 and , I do n't know why , it started at 20:15 , very unpolited on your part , and , also , you wasted my time . The other thing is that on the ticket it apears that discounts were available but when I asked about it , there were none . I thought you were a good theatre , where people can go and have a good evening alone or with somebody else , but realy I am very disappointed and I want to ask for my money back . I 'll never return because of the bad service you ofer . Truely . Considering my whole life I can say that moden technology has changed my daily life in many ways . It has , in some way , separated the family , making all of us worried about ower own things . We all work separately , developing individually and forgoten we have to all talk together to know about each other 's life . First of all , we went to the theather to pick up our tickets . We sat in our seats and waited for the show but it did n't start on time , it started at 20.15 which was a redicoulus time . They are just wersting time on it . Both of them I am not as good as you expect , but recently I have been intrested in them . Howeve , we decided to have the job , because of good money . Howeve , it was a great job . I haven't hade such a great experience before . I was very disapointed to find out that most of the things said in the advertisement for the show were not true . I think it will be a very good experience for me . I 'm realy excited about it . I 'd love to come earlier , but I realy ca n't because this job is very important to me , and I 'll need it as work experience for my further studies at University . I would also appreciate it if you would offer me accomodation in a log cabin , because of some health problems that I have , which do not allow me to sleep outsid on the ground , and to be honest with you , I never liked camping . At the end I feel very tired and angry , because I have spent the whole morning doing nothing , except for looking at them trying on diferent clothes , and that 's not enjoyable at all , in fact it 's realy annoying . To let you arrange the details of your programe , I 'm going to give you my answers . Firstly , I 'd like to travel in July because I 've already resistered on another summer course which starts at the end of July . About accomodation , I prefer tents to log cabins . Actually I 've been in an amature photographer 's organization for 3 years . At that time , I took the course which covered all the 4 kinds of strocks . And please tell me how much money I am supposed to need excluding transport and accomodation . Concerning the accomodation , I prefer to stay in log cabins , finding them much more comfortable than tents ! Last week during my holiday in London , I found your advertisment in my newspaper . You stated in your advertisment that he would come on stage , but instead of him someone else turned up . Luckely I could keep my secret for a couple of days but then it became urgent and I needed someone to talk to . I 'm looking forward to learning how to take care of myself in dangerous situations , such as getting lost in a forest , and I think staying in a tent will be very usefull for that . This is something I will never ever foget . I could n't believe that I had met that superstar who was dancing in front of a crouded soccer stadium . Unfortunalety my feelings are rather bad . The advertisement looked pretty interesting and I dicided to go to the theatre to watch this musical show . The ' theatre ' did not even appologize for this change . Despite my being a student and the advertisement saying that discounts were available , I was refused a half - price ticket , and the explaination ' why ' was n't sufficiant . Unfortunately it was not , which made me even angier . Saturday morning I went to the driving center for my first lesson . The instractur opened the car door and asked me to sit in the driver 's seat . Then I drove very slowly very ofen crossing the white line on the road . I looked in the mirror and I saw how my friends were lauthing . Pat appologized to me for not keeping my secrets . An admiree I am writing to inform you about the differences between your advertisment and the real show . Then , as we were told that the show was begginning , the second shock of the evening faced us . Maria spent all day thinking about who told them that . There were two posibilities : one , her best friend Becca , or her sister Pat . Obviously , Pat first denied it , but then she accepted that she was wrong , and apologyse to Maria . After that Pat never again talked about anyone without his or her permission . It is your desicion . I would like to send you some futher information which you need . I am greatful that I have the chance to choose the accomodation . I would rather stay in a tent if it 's not a problem for you . I would like to experience a reall camp again . I would like to thank you onc again for this great opportiunity . We would like to belive that shopping is the most wonderful part of our life . When we finally do this , we can not be confortable because of the crowds . The answer is that we choose the same street ( usually the most popular ) and the same time as six hundrets other people . I am writting to you to give you my opinion about your festival . To conclude , I was very happy to have a ticket for all events at a reasonally price , because for someone who does not especially like art , it was very attractive . I am writting to you to answer your question about school rules and what I am ( and I am not ) allowed to do at home . In my home , the only things I am not allowed to do are things which might disturbe my familly . For example , putting the music on too loud when my syster is working . I believe that it was a great idea to organise such a festivel , connected with art and culture . What is more , there was a wide vareiety of music . Although the artists were supposed to be from all countries , there were only six nationalities . However I was really suprised that the entrence fee was so low . I hope that this will claryfy your questions and doubts . I 'm looking foreward to hearing from you . I am writting this letter because I am very dissapointed with your musical show . When we arrived , there were a lot of people , the place was beatiful , all seemed perfect . After that they changed the principal actor , the one that replaced him was very bad , that made us realy angry . How has moden technology changed my daily life ? I think that technology has changed my life and everybody 's life in many ways . Nowadays , technology is everywhere , all over your house , your school , ofice or any place you can be in a city . This technology has helped to make my life easier and more exciting , but like everithing it has had some negative aspects . This technology has helped in many fields , like medicine , entreteinment , work and other things , so it has obviusly changed the lives of many people . The bad consequences that this could have are unimportan , in comperison with all the good things it has done , so let 's not focus on the negative aspects of it . This is a new era , an era for a new tipe of people , the feuta people Secondly the time on the leaflet is totaly wrong . Thirdly the ticket was not discount and after the show I visited the theater restaurant but it was closed because the show started late . Finaly last night was not a perfect evening . But when I hear the word future , I have an image of metalic colours so that in my imagination they are wearing metalic or brightly coloured clothes . I think people will wear clothes which are metalic or bright colourful colour with mixture of history and future fashion style in the future . Firstly , I must say that I 'll be able to have two weeks free only in July , since I have started work and am intitled to have a holiday only in July . Despite my appriciation of all kinds of sports and activities , I 've chosen my favourite ones , which are swimming and tennis . Another thing I dislike about shopping is some annoying shop assisstants try to sell any product to the " victim " coming through the door . Our department , which is the sales department , have to make good sales results befor the end of June because of the financial month . About accomodation , I prefer to stay in log cabins because I do n't like to stay in tents which are unconfortable for me . In Japan , I often play Golf but as you know Japanese weather conditions are not good enough for enjoying playing Golf , but California has good weather , which means sunshine every day , hopefuly . I am interst in playing tennis very much . Finaly , I have some questions . So , my templary job was sound engineer but I was not main engineer . When I was a university student , I studied sound effects , but I had n't used effect equepument my whole life because our school does n't have it . I used this equepument during the concert , but I was so compricate system . They taught me paticulaly . Take care of youself . Hellow ! I am very pleased that I have won the first prize in your competition and I want to tell you that it would be better for me to go to your Camp in July because that month I usually have a rest and now I am thinking about it . To answer our first question about where I would prefer to sleep , I prefer tents because they are closer to nature and I like sleepping in sleepping bags ( = BV bags ) . Now let me tell you about my sports preferances . Yours scinerly In our school we have a listem of " double lessons " . It means that every day exept Sunday we have four lessons and each of the lessons lasts for an hour and a half and it means a " double lesson " . I think that is more convinient than seven lessons every day and each of the lessons lasts forty - five minutes . It is convinient , I mean " double " lessons , because you have more time to understand the matherial which is givven out and because you have to prepare only four subjects for " tomorrow " and it is fewer then seven subjects . On Tuesday we have these lessons : English , Maths , Economics and Phisics . Not only these subjects are studied by us , but also Latin , Russian , Ukrainian , Biology and Phisical training , but as we study them we understand that they are not so important as our main subjects . I have always been interesed in arts and festivals . It was great that you organised the Arts Festival in this city , because people realy need this kind of sochibal activity here . I spent two days at the International Arts Festival with some of my friends and I must say we were realy delighted , it was a great idea to do that in London . I hope you will concider my opinions and that my suggestions will be helpful for next year . When I groue up I 'll change all the rules in my life and I 'll make my own rules which are not going to be too strict . ( It is a graduate engineering school where we are studying mecanics and energetics . ) That is why we have to single out wich lessons and other activities should be filmed . Secondly , we should interview the teacher of heat transfert since his lessons are really breathtaking . On the other hand , we should be interested in the other activities such as sports , wich could appeal to more students in our school . To make matters worse , we have never had the oppurtunity to see Danny Brook because , instead , there was a different actor ! You wrote so persuately that it would be our " Perfect Evening Out " ... I hope you will agree and share my disappointement . Sincerly yours , In fact , winterseason will be rare or will maybe even disappear . The ice will smellt , the weather will be warmer . People wo n't wear warm clothes anymore and they will certenly be sinthetic , because there wo n't be enough places to cultivite cotton and to let sheep graze . Our feelings will be transmitted electronical through our clothes to other people . " The Internet on our body " .. I 'm shure that is not impossible ! I am writing to you with a request for a change in the scedule of our trip to London . Unfortunatly I have to suggest a change for the programme for Tuesday the 14th of March . All of the students - including myself - think of this as a great opportunity that it would be a pitty to miss , especially when students can enter for free . I 've always wanted to taste the freedom that birds have , always been interested in listening to my blood pumpping in my vains , full of adrenaline , to let myself free , to shake from excitement . The home of the future will be very impersonal and the atmosfear will be cold and very essencial . I think this tendancy will become more common in the future . What is important is not their fashion but their knowledge , attitude to everthing including fashion . I apologise For any incovenience and I am waiting for your reply . Last week I recived your letter in wich you told me that I won first prize . I am writting in response to it . Please , when you recive this letter give me a call so we can arrange everything . We are going to make a video about daily life at school . The following classes are the ones I recomend filming . ENGLISH : the classroom is beautifull , and on the same day we do a lot of diferents activities , so it wo n't be boring watching it because we can have a great time there . Those three classes are my choises . I hope we can do them and make a very good video about our school . Finaly , I would like to ask you for £ 20 back as I was not satisfied with your services . But Pat could not resist the temptention to call the police . I am not used to sleeping in a tent and I think it might ruen my holiday . I hope it 's possible to sleep in a log cabin but if it 's not , you can also put me in a tent . Surfing is my passion . I live near a beach and whenever I have the time I grab my bord and go surfing . I am realy looking forward to this holiday . The realy thing was that I had to look after them because without me they would have been lost . The thing I realy liked was helping the artists and talking to them . I realy got to know them after the concert . Mabey next time you can come with me . That would be a lot of fun . Finaly , I did n't understand why you pushed people to visit your restaurant if you do n't open it after the show ! If I want to discuss something with friends or order a Pizza , I can do it as easely as I want , when I want . A good example is the celular phone . I can contact my family without any problem , I can inform my company if I have an accident in my car . To sum up , although I think they ought to abondone their lives partly when they entre the world of fame , they should take some action against journalists in order to protect their human rights . An actor was changed and the pubblic were not informated . Finally , the theatre resturant was closed for the holiday ! I think modern tecnology is very important in my life . I also think I am lucky , because I live in a period of tecnologic boom . In the last fifty years human tecnologies have grown exponensially . First the conquist of space , then computers , and now the new biotecnologies have changed , and are changing , the face of the world . In the present day , for ecsample , a lot of people have a personal computer at home , and a very large proportion of those also have the Internet , the new frontier of computer evolution . If I look back to the past I find that the computer is following the same route as television , the telephon and a lot of other things that now the largest part of the population have at home . So , in my opinion , new tecnology has changed , is changing and will change my daily life ; I hope that afterwards my life will be better . The whole class and I would like to thank you for the good programm which you have organised for our trip to London . The reason why I 'm writting to you is the class and I have seen an advertisment for the London Fashion and Leisure Show on Tuesday , March 14 from 10.00 am - 7.00 p.m. We all are interested in fashion and hairstyles and it is a great oppurtunity for us because students do not have to pay and we will know what we can buy on our shopping tour . I would like to suggest to you how the programm could be changed . Instead of a shopping tour on Tuesday afternoon , we could go to the show and do the shopping on Wedensday afternoon in our free time . What do you think about this suggesten ? I hope you will unterstand this kind of matter . The class and I are looking forward to hearing from you . That means for exampel , while you are sitting in the office you are able to controll your home with the computer . You can open and close the windows and switch the light on and off . Your freezer tells you when you have to buy some milk , eggs or chees . Or , without leaving the office , you are able to heat the wather for a hot bath . So in fact people 's homes will become more confienence and more comfortable . I think also housewives will receive more help with a robotor in the home . As representant of my class may I kindly ask you to partially change your plan for our visit to London ? It would be beutiful if you would agree to change your plan . It happened on a very lovly day in summer . I knew I could n't swimm so I realized it might be dangerous for me as well . The most important thing was a little boy of about ten years old , who was in the watter without his parents and could n't swimm . It was diffucult for me because I am afraid of watter . He was exhaused and could n't breathe . I am a good swimmer and I have some expirience in photography . However , I have a lot to learn . Actually , the price of the weekend ticket was excellent ! I , myself , was expecting a more expensive ticket as there were so many magnificient events . Well , I hope you found my suggestions reasonable as I deeply congratulate you on the great sucess of the festival . I would like to stay in a log cabin as I have an allergie to grass . If you have to go shopping again , because the fridge is empty or you need some new clothes , a lot of time , patience and straingth are needed . So even if it 's nice to have food or new clothes at home , without patience , time and straingth you had better stay at home or try to find the most convenient time for shopping . 2 Desember , 2000 I am writing to suggest a few things that could be changed or added to next year 's International Arts Festival , wich in my opinion has been a great idea . Although I read that stars and artists came frome around the world , I realised that they only came from six countries . All my family liked the films and the plays that there were very much , but I personaly think that it would be better to add more because there were only five plays and seven films . The rest of the activities were very interesting for us , we learnt a lot of things and we met a lot of interesting people , and all of this without being expensive . I think that the ticket was exellent for us because of its price . You know that I 'm studing in a difficult school , and as you can imagine you have to work hard and you have to do homework every day . I have friends that are studing in other schools and they are very happy with their freedom . It is true , they deserve to have a private life without journalists following them all the time , however this publicity brings them money , and a confortable life . They can travel around the world , buy everything , it is a good life , but at the same time , they must be very good peaple , because " Fame " is just for a short time , nothing lasts forever in this world . I would not really like to be a famous person , because you are not really yourselfh , and for me that is the most important thing . The first thing that dissapoint me was the star . but the reastaurant was closed because the show started at 20:15 and finissed at 00.15 and the restaurant was open until 00.00 . After all these problems I became dissappointed . If you could give me some of my money back that would be a great apology for the waste of time and my dissopointness . It was about Marine , who was our clase friend . Marine 's real father wanted her back but the other cuples did n't want to give her back because they loved Marine so much . The cuples could n't tell the truth to Marine because they were afraid of losing her . I was greatful to hear I have won first prize in the competition . That 's why I 'd like to feel adventurally . And according to the interviews , the most interesting class is the " upper intermidiate " class . The point of " upper intermidiate class " . Yesterday morning , I went to the toilet . I overherd two people talking about my son . I felt sorry for myself and I burst into tears . I quickly got out of the toilet . " Dear " menager of the Circle theatre , I was getting angry , but , finally , the show started and I became quiter . In the end , I asked for I money back ( and paiment for my orrible night ) : do you think anybody will give me something back ? ! Science and technology characterize our moder society . Walking on a city street , it 's difficult to find parks or " green " places with trees and clean air : actually pollution , traffic and noize are the main problems of our society . I know I 'm a " daughter of this techological world " and unluckly I think I could n't live without it : it 's rather strange that today there 's still somebody without a phone , dishwasher , TV ... But , sometimes I ask myself if the " ancient world " , without science , technological innovations and industries was more authentic than our one . It sounds very promissing . I could feel every movement which was caused by clowds or wind . I 'm pleaseant to win the first prize in your competition - two weeks at Camp California in the USA . I 'd like a log cabin for my accomodation , because it 's safer and cleaner than a tent and I would n't share it with anyone . We can analize when shopping is enjoyable , and when it is not . Buying coffins and graveyard plots to bury relatieves is not as enjoyable as buying clothes . The rules in Poland are quite similar to those discribed in your letter . I 'm a student from St. Petersburg , and I 'm studing in a drama acodimy . My freind & came to London for an excursion . Danny Brook is my favorit actor & to see him was my dream since my childhood ! It was a suprise when we were told there would be another actor . Also , we expected to get a discount as students , but international students cards are not valid in your theater ( that is very strange - even your advertisment has information about discounts ) . So we were late for our supper in the hotel and the theatre restaurant was also closed without any risons given . In the advertisment it said , , your perfect evening out ! " , but it was n't . I 'm waiting for your anser and hope I can get my money back ! I would call our days days of great technologycal progress . Industrial weel going faster and faster . They have more differet functions and forms . It is very intresting for me how new works , their possiblyties . My job , I think is a good way to get a profesion in the future . And I hope to find a realy good job in a good company . More and more people buy mobile phones , because they are very usefull , you get a lot of possiblyties like : using the Internet , buying different goods , booking tickets , controlling your home technic and many authers . Mobile communication is a key to sucsess in all professions that we have ! And I think that I made the right choice of profession - it is the perfect combination : a very progressiv form of modern technology , and the most important thing - it is extremly interesting to me ! Regarding the Accomodation at the camp , I would prefer the tents , because it is something different wich you do n't do every day ! Finaly I 've got a question : What clothes must I bring with me and how much money ? yours faithfuly , Another thing that makes you fourious is when you see a great shirt in a shop and somebody else takes it away or buys it before you can react . At that time I was lucky and also , I would like to recommand it to other friends . But people would like to change the lifestyle in their house because there are n't convenient appliaces in their houses yet . I 'm writting to you to explain the problem that I have had in your theatre . I recentely had a week 's holiday in London , and , during my stay , I went to your theatre to see " Over the Rainbow " because I had seen an advertisement for this show and I was really interrested in seeing it for many reasons , one of the reasons is that I love the star , Danny Brook . Secondly , in your advertisement the time of the show was 19:30 and in reallity the show started at 20:15 and the discount was not available . I think you can do a lot more things now than before with techonology . best reguard . There are many ways to earn money , especially in a big city , like the one where we are studing all year around . To be more technical and specific , we need a very flexible job , wich gives us independence and allows us to stop working when we are not able to , for example during the exams period . As a result I asked my acquintance to come with me to the show . By the time he got out of the building , the cops were everywhere but as long as Mallory is alive , he wo n't be arrested , with his unpredicatable mind . Secondly , we had to wait until 8:00 pm before being able to take a seat and the show finally beginned at 8:15 ! At that time , I used to buy a lotery ticket once a week and I sometimes won small amounts . One day , while I was checking my weekly ticket , I found out that I had five numbers out of six so that I would surely get a substancial amount of money . I had to wait ten days before the lotery head office would give me the cheque and one week before I could learn how much I had won . But soon everyone in the class was looking at me smillingly and I found out that I had many unsuspected friends ... Not long after , they were asking me to buy a coffee or lunch for them ; some proposed going shopping , others going to the cinema and a restaurant . Finally the end of the week came and I went to the lotery office to find out the amount I had won . With this letter I would like to ask you if you wuld change it because we saw in the London Advertiser an advertisement for the London Fashion and Leisure Show . The show is on Tuesday , March 14th , from 10.00 - 19.00 in the Central Exibition Hall . Yours sincierly , I knew that my brother was at home , althoug I did n't know where he was . In fact when I do n't feel very happy I decide to go shopping to try to cher myself up . It is at this moment when really I realiase I am getting fat and it is a horrible feeling . Another thing is my accommodation . I prefer to have log cabins because it 's easyeast for me . And how much meney I should take ? If you have chilldren , you will know very well that when you are busy doing something and the chilldren see something they want to have , they will do everything they can do to make you buy it for them , sometimes they even cry or shout at you and it is really anoy . Anyway , in families they usauly have this problem that when they buy a new one , suddenly they have a problem about where the old one is going to be and that is the beginning of an argument between mother and father or parents and chilldren . Eventually I like shopping too and I beleive everybody likes shopping , but before you buy something think first and you will not have any problems after that and the most important thing is make sure you have enough meney to survive . Secondly , my choise is the accommodation in tents . I think it could be more interesting . I could enjoy my time with other people playing , eating and talking outside . In my opinion if I choose the log cabin it will be like being at home . My other choise is painting . I have been painting since I was ten years old . I used to go to special classes and I do n't mind if you need me to help in the class . The most popular " sport " that everyone does is obiously shopping . Some people think that going shopping can keep you away from depression . You can enjoy your time spending all the money you have , buying clothes , jewells , furniture , etc . But other people do n't think like this . For example , there is a case of a woman who was shopping with her little daughter and without inttetion the girl got lost . The mother was shocked . She did n't know how to look for her because all the shops and streets were full of people going in and out the places . It was a nightmare but fortunaly the police found her . Can you imagen being in Japan or China and having to go to the shops ? I do n't think that I 'd enjoy it , all the people knicking you , you ca n't walk properly or buy anything . And also there are a lot of cases which show how people can be in shops . I mean that some people can fight to get something . Dear MANANGER of the theatre So try to imagine my situation . I had paied a lot of money and I did n't see a good show . I am really disappointed . Unfortunatety , Pat was n't very good at keeping secrets . Many years ago , more or less seventy years ago a young man , with an exellent capacity for thinking and inventing things , started building a big thing called a " time machine " . The only thing Pat had to do was to choose a date , one he liked , and to press the starter botton , and you know what ? He did it ! I am very happy to hear from you that I have won first prize in your competition - twe weeks at Camp California in the U.S.A. and I am writing to tell you my information . Firstly , I will be able to travel only in July because I go to univercity and I normaly spend most of the time working . to do . and I have holiday only in July . And I choose phtograghy and tennis from the activities list . I am taking photograghy lessons at univercity and I started tennis when I was 10 so I am good at bouth of them . From the 10 opitions that I have to choose from I will choose two , climbing , wich I have been doing for three years because I know it by heart , and swimming wich I have also been doing every day as part of my daily rotine in Portugal . I hope that coming after jully wo n't disturb Camp California 's plans for me . A survey has been done , and the issue is wich subjects ( lessons ) and activities the students think are the most enjoyable . Someone says it is maths - pratical , usefull - but the majority say it is boring , unless you 're choosing a job which demands all your maths knowledge such as accounting , otherwise you can use a calculator or a computer . The majorite have chosen History , which means a big journey around the world , either at the Roman life style , or in the midle ages , when a revolution happened with deaps and new lands . At all schools there is a similar daily life wich must be filmed . This is an important part of our life , wich is full of emotions in development . How has mordern technology changed my daily life ? Sometimes , I think I am a computer addict because whenever I come back home , my hand goes to the computer swich , automaticaly , even though I do n't want to use the computer . I recive a paper in which I was told about a play you are putting on and of the advantages I would get if I went to see it . I wish that had never happened . I am realy desappointed , and I want to have my money back . First of all , on the sheet I recived , it says that DANNY BROOK was one of the actors . That is not true , because insted of him , there was another actor , and I do n't know what his name is . You must understand that you promised me I 'd have a good evening and I realy did n't . I write this letter to tell you about the programme that starts tomorrow , about that exelent book I have told you to read . This exelent book tells the story of a man of 25 years that has a little boy , his son , that lives in a very bad condicion . The book is very easy to read , but if you do n't have time I recomended listening to the programme . Also , that they will invite a psicologist , the Autor of the book and maybe the president will talk so I recommend you listen to it . I might say that I am really good at swimming and sailling because I have been doing these kinds of activities for five years and I have had a really good training in water sports . As you know , I 'd never been to any activities as a valunteer before . The concert tickets were very expensive and I 'd seen an adversitement on TV . It said , " Be a valunteer at our concert and get a free ticket . " We have bought some snaks to eat and three students will sing for him , too . I 've just recived your leter , and I must say that I am so surprised . I was n't expecting to win it . I am still studing at the moment I will finish at the end of June so I will be able to leave at the beginning of July . Regarding the acomodation , I would prefer a log cabin instead of a tent so as to get a better rest . I have a problem sleeping and a log cabin will be more peaceful than a tent . It 's quite dificult for me because there are 4 of them I like a lot , wich are climbing , tennis , surfing and photography , but if I have to make a choise , I choose climbing and surfing . I 'm rather experienced at climbing . I have done it once a mounth since I was 17 . But on the other hand , I have never been surfing . I am a complete Beginer but I am dying to do it . A good idea to start will be an alarm clock ringing close to his bed , because that 's the way everyone gets up in the morning ( apart from the people who do n't do anythink ) . After this introduction , it will be time to show some of the acitivities everyone can do at the school , such as lesons or others like the library , our protagonist having a cofe with some coleagues in the cofe bar , the reception service . First of all , the most favorable time for me to travel is July , because I am in the final year of University , so I have to attend classes for a thesis almost throughout the year apart from July , when I can take a relatively long summer holiday . Secondly , I would prefer to stay in log cabins to staying in tents , since I have had a horrible experience being attaked by a swarm of midges , when I camped out . This is based on a questionnair conducted in the school and our English department 's investigation . According to statistics based on the questionnair , the majority of students feel the most enthusiasm for an English class . In fact , I visited some Englishe classes to find out that most students tried to answer questions and speak to native teachers . Consequently , it might be a good idea to film the English class so that the vibrant and active atomosphere may be able to be filmed . The girls ' football team is also famous for its reputation of keeness on practice . Actually , I can work with it in my office and visitting some website using the new technologies such as the Internet . The new inventions have transformed my life , so it is easier with modern technology ( the mobile , the car , the plane , the coach , the train , the medical advances and domestic appliances ) , they have created more confortable and pleasure . In fact , I expect a full refund plus compensation for the dissatisfaction suffured . I trust you will give immediate attention to this letter and I look forward to receiving a satisfactory responce by return of post within a week . When we think about clothes in the future , we should think about the enviroment first . Of course , technology will have developped enough for us to invent new material for those kinds of clothes . So we do n't have to worry about how heavey they will be . Firstly , I expected Danny Brook and Tina Truelove but I felt very angry when I saw diffrent actors . What is more , you advertize there were discounts available but there were not . You said that the musicial show started at 19.30 but recently it began at 20.15 . When I was 16 years old I fell in love with the most hundsom boy in our school . Everybody started to laught at me . I 'm sorry to tell you that I 'm really disappointed with your advertisment for the musical show at the Circle Theatre . And because of these circumstands , I would like to have a part of my money back . Faithully , He said , ' shure , no problem ' . As to accomodation I would like to choose a tent because I am used to travelling with my sleeping bag and my tent all over Europe . I am very good at basketball , and even if I am not a tall boy , I am a good playmaker and I play in a local team . I connected wires , I caried loudspeakers , and so on . Towards the end of the concert I hansled a bottle of wine to Poolo Conte . As you know he 's my favorite singer . Secondly , the two activities wich I 'd like to do during the camp are sailing and surfing . When you go to a shop it is dificult to find what you are looking for without the help of the shop assistant . After that you have to wait a long time in the qeue to pay and many times it is n't possible to pay with your credit card and you do n't have any money in cash . You said there would be stars such as Danny Brook and Tina Truelove , whose music is my favourate , but the musicians were actually some other people whose names I had never heard of . When they finished singing the last song I was surprice when they called me up on the stage and said thank you to me in front of hundreds of people . I am not goot at either of them . I haven't writen a letter to you for ages . I did n't need to pay an enterence fee because I was working there . Plus , I got an authography from a popular singer . I 'll give you the authography as a present . It is valuable of keeping on your suvinier . I would offer you one suggestion that concers the classical concerts . For me , it 's very stressfull and I usually run a lot to do it . In response to your letter that I received last Saturday I am writting to answer your questions . I usualy sing in my spare time and my friends love it when I sing and regarding swimming I was champion last year in my city . Are tablets necessary ( for headach , insects ) ? It is wonderfull how tecnology makes things so easy . That will be great because teachers are part of our life and they have to receive all our attention and friendship because if it was n't for them we would never grow and learn how to live our lives more confidents and with lots of good experiences that we will never forget . The reasonably - piced package , including tickets and accomodations , well suited my personal situation : comfortable rooms that are easy to reach and booked tickets can help you if you decide at the last minute . - emprove your kindness and ask for work in restaurants or bars . It is a good training period for real life too ( being patient with demanding people is required ) . - check your wallet and if you have enough money ( a very small amount ) you can arrange a trip to reach countries like Phili , Cuba , Zambania , and Morocco where people ( poorer than you ) will offer low wages for ôsmallö jobs .. you might enjoy your summer holidays and ôfind yourselfö I am keen on singing and I have won sevral singing competitions at school . When I first entred the concert hall , I was given a pass for working here . The programme is very exating and interesting , especially the river trip to Greenwich . This is the arrangement that we fouded with the other students and everyone agreed . We had n't enough money to buy food or new clothes and the worst was that my youngerst brother was terribly ill , and without money we could n't take him to a doctor . I want to travel only in July becouse now I 'm studying at National Academy of Defense and I do n't have time for enything else . I prefer that becouse I will travel with my wife and she always prefers that kind of accommodation . I tell you in sicryt that I do n't know whay she does that . I like to catch fisch too . My personal best is 27.66 for fivety meters . I would like to ask you about the weather in California in Julay . Are there any discoteks or something ? I would like to know if my wife can come with me , becouse without her I ca n't be there . Everybody gets up at six , and the first thing they do is run for about two thousends five houndred metres . Then they take a schower and everybody goes for breakfast . Two times a week I have W - F. This is very important , becouse every soldier schould be strong . After this competition there was mathematics , and two houers of biology . I do n't like biology , so I sleept on the desk in a classroom . I think that competitions should be filmed becouse my school is a kind of sports school . On video there schould be howe we get up . Houe we run , houe we eat breakfast . Then you should schow houe ouer school looks from outside . There schould be an intereview with students and with profesons . Daily life at my school is not only school and teachers and mathematicas problems . We must knou how to use a gun , or how to drive a tank . And , finally , right before the start they announced that Danny Brook woud not be in the show that evening . After the show I was not surpised at all to learn that the theatre restaurant was closed for redecoration . Undoubtfully , modern technology has changed my daily life . And the best word I can use to describe all the changes is " drastical " . Among the greatest inventions of man I come accross dayly are the telephone , computer and automobile . The computer , probably the must versatile invention , allows me to get access to huge informatonal sources through the Internet , to do shopping without leaving my house , to do my work more effectively and quickly . People used to wear very diffrent things from the clothes we wear now , we would n't even say that they are ' clothes ' . The things that people wear are changing all the time , everyone tries to be diffrent in public and very different sorts of clothes are being created . I belive they will wear very diffrent things . By contrast , in the future , I guess we would rather go back to the acient time , owing to have natural life style . We will be unwilling to give housework away . They are more comfortable and really match with the enveiroment . Although this is a new experience , I would prefer climbing and Photographe . The concert was a big success , a lot of excitment . The students mentionned that it would be very interessting to show the English lesson because some foreign students will probably join our college next year and it is the best way for them to find out about our English course . Additionally , the advertisement said I could visit the threatre restaurant after the show . Unfortunately , Pat was n't very good at keeping secrects . I told Pat everything even my secrects when we were still friendly . However , we are not friends anymore because of a secrect in the past . I told Pat that my father and mother were going to seperate . Maybe it was the wrong decision to tell her . She began to share that secrect with everybody , including the teachers . Finally , I decided to go to another school and I will not tell any secrect to anyone . To begin with , in your letter you asked me when I would like to travell . Thanking you in advance for your help , I look forward to hearin from you . Also you can compare the different cultures of all the countries and sometimes there are planned visities to historical places . In this lesson you can learn how to speak , write and read this foreing language with teachears that are well prepeared . theater To sum up , it is a big school where you have a lot of interesting lessons and some optionaly activities to do in your free time . Regarding accommnodation at Camp California , I would prefer to stay in a log cabin because I think it is safier than a tent . Now , my English teacher has asked me to explane what I think . In my opinion , nowdays , shopping is very easy and at the same time very hard . Amazingly , doctors tell people to look after their bodies during Christmas time : shopping can cause you a large variety of undesireble pains . About the activities that I can do at the camp , I chose to play Basketball , which is my favourite sport , because I want to do some excersise while I am on vacation . I also chose Fotography because it is one of my hobbies . I 'm writting you a letter , because you are the organiser of an International Arts Festival . There is only one bad fhing , that this festival was too short . I 've just received this letter from you , so I 'm writting to you . On Sathurday and Sunday we do n't have lessons , but it does n't seem that we do n't have work . I do n't have troubbles with my education . My friends and teachers are nice and friendly , but there is one thing I 'd like to change in my school . I 'd like to have more tests during the whole course , not only at the end , because it 's making me very lasy . Appart from that , the show was delayed forty - five minutes , consequently , everybody there lost control and became angry . Finally I would like to inform you that I have never had such an umpleasant evening in my whole life . The worst was that he did it unconciously . Later , I realiced it was the worst thing that could happen to me . I 'm writting to express my feeling and opinion about the International Arts Festival which was held a few days ago . For example , there were some conert halls which were too small to hold so many people , the stars and artists were just from six countries , which is not enough for the audience . This reminds me of what I experienced during my teeenage years . We believe that the programme is very cood and well organised and we would like to thank you one more time especially for that . The exhibition is caud the London Fashion and Leisure Show and it takes place at the Central Exhibition hall , in London , From 10.00 till 19.00 . The class is very excited about that because the Show conteins the latest Fashions , leisure and Sports Wear , make - up and hairstyles . Of course if you are in the public eye , the reasons why you want privacy are different , because if you are a politician , for exmaple , you fear for your life . Becaue As for accomodation I would prefer to stay in tents . It is amazing and sometimes amuzing how charming and strong the spell of luxurious supermarkets and cosy little shops is . But I do feel ill at ease when I see dissappointed or angry assistants ' faces on leaving the magic world without any souvenirs of it ! I do appologize about that . If this is an unconvenience , please feel free to tell me . Quess what I 've done ! The preperation days came . I had a chance to talk to them about their jobs and it was amuzing ! In particular , going to the Museum and the Art Gallery will be a great oppotunity for all of us , as they are world - famous places in London . It was okay , beause I was quite good at that , but the problem was that I had to jump onto the roof ! Another point which I think was ennoying was the concert hall . Yours Sinccerly Actually not all the schools in Turkey are so strict but unfortunatly the school that I 'm going to is like a military camp . My family allows me almost everything except smoking and drinking alchol of course , which I do n't do anyway . So if it 's possible could you arrenge it for me please . And also , I would prefer the log cabins to the tents , as I have never slept in a sleepin bag before . All of her funs were stooud up the whole concert and dancing . Some of the funs were not good at all because they shouted and argued , but most of the people were very good . I must say though , I would have to travel in July because it 's the summer holydays for schools and I would like to spend some of them in California and visit a few friends if that is possible . A log cabin would be the ideal accomodation . Presumably they are more spacious than tents and it would be easier to keep tidy . I would like to know how much money people ussually take and how much clothing . I know it sounds extremely boring and that is exactly what I thought when I was asked to help , but to my suprise it turned out to be much more fun than expected . Thirsthly , I would prefer to swim and play tennis , because I have been doing this since I was I child , and I think I am very good at each activity . A few minutes later the show started and the grup appeared on the stage . Later , when the show had finished , I stayed with the grup in their room for a few minutes . What I really liked doing was helping them with their clothes and make - up , because I learnt how to do make - up for someone and I spent a few minutes with the most popular grup in the world . Regarding starting time and the theatre restaurant , to see the musical I had to wait about 45 minuits because it started at 20:15 . I know you are always interested in detictive stories , especially Agatha Christie 's . Do n't be surprised ! Where the stories are concerned , they will not be difficult to understand because you already know the stories and the naraitors are going to read clearly . Regarding the accomodation , I would be pleased to stay in a tent , because this reminds me of my holidays with my family . I just had to take care of them , serving some drinks and food during the rehearshals . I write to complein about the musical show " Over the Rainbow " . I had a very disapointing evening because of many things . First the actor was a wery average actor . Also in the advicement they talk about discount tikets . Well they did n't accept my £ 20 discount tiket . Why ? And finally I could n't visit the theater restaurant after the show , it was closed . Why ? Alslo I wanted to tell you that the show was very borring . It was alwais the saim . Because of all these things it obiously was n't the perfect evening as was seid in the advicement . I had to explain to everybody that I actually did n't have a girlfriend . I explein to them that it was a good posibility , nothing else , but no one belive me , because Pat had told them that I had an actual girlfriend . This problem with Pat had a lot of consecuences , because I had a very hevy discucion with her about it . It was so heay that one of ower teachers had to calm me down , because I was very angree with her . Regarding the accomodation , if possible I would like to stay in a tent because I think it is a relaxing place to stay . And if during the nights there are any entrotenements ? The opposite situation is when I pass my exams and I really need to buy something as a preseant for myself . It is really intresting . That is the second day of our trip and it starts at 10.00 in the morning and lasts untill 19.00 . This technologic improvement is changing people 's lives , behaviour , even their homes . But we ca n't stop these technologic improvements . We should use them in positif ways . and we are practicing these things . In the future life will be more artifitual than it was . How delighted I was when I receved your letter ! I would like to ask you how much money I need , how the weather is , in order to pack the necessary clothing , and wheter I need anything else . I am sending you some pictures , the best ones only because there were some quite embarrasing ones . It was n't a spokeperson Kim but just asked him a couple of questions behind the stage . You did n't tell us any detile about how much the ticket costs to go inside . In my class room somary people stay outside London about 50% in my class room and everyone is verry worried about how they can stay for three days in London . And we 're very exsciting about your programme . Becauses in London there are a lot of shopping places , can you tell us about shopping and the time For spend or day ? Thank you For any detile more I think we go with you and enjoy a Fantatics programme . If I tell someting in the college baby someone like or dislike about my story but I think my story it very good for someone . In my college have got a new student every Monday and very big college around heir . and we have got three buillding and we have got a lot of teachers the teachers have got experied about teaching I think somebody come in my college you fried want to studdy in my college and you want tall anyone for your college you ca n't tell for something but you know yourself about college you know just you love it and very like it nobody dislike it somebody tall about class rooms it very big and comfortible . It starts with food ( monstruous ) and goes on to clothes , pills , games and so on . A simple and well - proofen architecture . Every electronic gadget in the futur home will be able to comunicate with other machines or computers . Regarding the accommodation at the camp , I would prefer a tent . The reason is that I like to live realy naturally and it is more enjoyable to live in a tent than in a cabin . It was marvelous . It was hard work for a while but I was so happy to help at a really big pop concert I ca n't decribe it . I realy enjoyed that and it was one of the greatest , if not the greatest experience of my life . The organizer of the tournement spoke with me and asked me if I wanted to do the same work in two months at the Rolling Stones concert Is n't that fantastic ! That 's the most suitable accomodation for a camping holiday . They also gave me a ticket to wotch the concert live . I was realy happy to be seeing the " Best Musical Show " in London . By problems I mean that the show started at 20.15 and not at 19:30 or why there were no discounts avaivable ? The most disappointing thing was that there were diffrent actors to those advertised who were not very good at acting . It was n't realy a perfect evening as you promised on your flyer . I was very disapointed and I would like to have my money back . If you think about the early days , when no cars were on the roads and no one had an opertunity to fly to another country for a holiday , people had to walk or go by horse and ship . Today , everyone has the opertunity to just get into a car and drive wherever they want to . This is also a very big disatvantage because many people are losing thier jobs . Another disadvantage is that everyone becomes a bit more lonely because they wath TV or play or work on the Computer and do n't see each other anymore because they do n't have to . We can hardly imagine life without compures , TV sets , microwaves , and so many other things , and yet none of these things existed seventy years ago . Her parents have been so upset that they have asked the school to help thier child and that is the reason why I 'm writing this story . I have receveid your letter concerning two weeks at Camp California in the USA . Regarding my accommodation , I would prefer a log cabin because it 's more confortable than a tent and less hot with the sun . However , I hope , there is water and light inside this log cabine . The salewomen are too busy and haven't a moment to give you advice . The other one is tennis , which is also my favorite sport and I have been playing for several years . Lastly , I would like to know how many people are comming to the Camp I will go to . I sould be grateful if you would send me the further information that I asked for and I look forward to hearing from you soon . Favorite lessons Favorite activities I would like to tell you about the show which we would like to see : It is " The London Fashion and Leisure Show " , which is going to take place at the Central Exibition Hall in London , on Tuesday the 14th March , between 10.00 and 19.00 . I 'm very pleased to recived this prize . Other workers are taking on other months so there is only July that is availible for me . I 'm very good at tennis , and I was a profeshional tennis player . Unforgivly , my climbing skill is nothing like my tennis skill , but I always love climbing . I 'm afrade of hights and I have always wanted to conqure that fear ! Filming life at school means filming the students ' actions and behaveare . It is very interesting and fun with the experement . Lots and lots of experements produce quite interesting and amazing results and I think Science is very useful in life . Also it is not a very easy subject so we can capture other students ' faces in confusion and puzzal . We can see students expressing their feelings , wonderful and excitting story that the student made up or from a well well - known story . Another excitting subject which most of the students like very much is P.E. Many students like to play sports . I do a lot of sports , so apart from playing tennis I am a member of our local swimming centre . I can reasure you that I am gradually improving my sports skills . It took place in a huge stadium which had over 4,000 seats for the " spactetors " if you can call them that . The musicians brough it in order to achieve a high standard of sound quality . I visited your theater and I was very dissapointed for a number of reasons . I 've read your advertisment and the reality was different to what was written there . There was no Danny Brook but instead of him there was a different actor and I 'm very dissapointed about that because I 'm a fan of his . There were no discounts availible so I overspent . The theater restaurant was closed for no reason apparent to me . It was a realy bad evening and because of that could you possibly give me my money back ? Everything was going perfectly befor last month when I met a girl from the other school . So one day she invited me to come to her house at night and to do so I had to run away from our boarding house and that was illigal . So I woke up at 2 o'clock in the morning and climed out of the window . Next day my best friend went to the headmaster and told him about me so he put me on sespend . At this we can see the latest fashions , imagintive make - up and hairstyles . I am sorry to cause you inconveint . Last night , when I went into my house it was quite scilence . My father always remembered his responsibily was to provide his workers with a good salary , which is the aim of his life . When I , with mixed feelings , went home I found my parents were stooding at the door looking very cheerful . ' It is a good idea to include the visit to the Science Museum and the National Art Gallery in the morning on Tuesday and Wednesday respectivelly . Firstly , there will be leisur and sports wear and the latest fasions . Secondly , there will be exibitions about makeup and hairstyles . And on Tuesday we will enjoy the London fasion and Leisure Show till 19.00 . I am looking forward to recieving your positive reply . We are intrsted in politicians ' and film stars ' clothes , hobbies , passions and intrigues . There are lardge numbers of journalists following them all the time , even in their private life . We can go for a wolk , go shopping , go to the cinema , get marrige or devorce . Why must everybody know and tolk about their private life ? I was not satified with the show at all because it was very different from the description your advertisement had given . It was a desaster and I am going to tell you why . But it has advantatges as well as disadvantatges . On the other hand there are disadvatatges , too . Firstly , the enviroment is polluted because of technology , although this is our fault . Secondly for us there are disadvantatge because pollution affects us indirectly , and because I do n't do anything but watch television , and it is n't very good at all . I am writing to complan about your service . You were meant to start the show at 19.30 p.m. but you started very late at 20.15 p.m withour any ecxpenetion to the audience . Unfortunately , Pat was n't very good at keeping secrets . I knew that but I needed someone who could understent and support me at that moment . I told her about my pregnency because she has a friend who works in a hospital as a doctor . I asked her for hepl and she promised me she would do everything that she could and keep my secret . Pat gave me some advice and I disayded to have an operetion . I got a bit dipress but my parents supported me . They stopped me having the operetion . You wo n't wait in the quee . I am a good swimmer and also good at golf ( handicap twelve ) . I took a certificate to become a Teachear in both of them six years ago before I went to " CROARA GOLF " in Milan where I organised the evening 's entertainment for the customers . First of all , I belive that if someone has time to go to the shops has the possibility . Do you know I am amuzing when it comes to playing tennis ? Great fun , very happy , if go with your girlfriend it will feel romatic , you should think something like this , but do you know it is not always like this ? If you interested in the clothes as well , but you need to remember , one is male , but one is female , they should have diffence fashion , at that moment should be had one is boring or have some bad chat , so in the end you both will feel unhappy or angry with each other . Mr. Maneger , In this unconfortable situation I am writting to tell you about some irratable problems . Then , the time stated as the beginning of the show was 19:30 and unfortunatly it began at 20:15 . Closing these facts , when the musical finished I was very , after wainting for the start of the musical and I was dissapointed with this version of Over the Rainbow . Everybody went to the restaurant , wich was closed without any explanation . I am very dissapointed with this evening and with this desorganized way of dealing with problems so I am asking for my money back . They always did things together , and they were the most popular boys in school . Both were very hanson , played football ; they were an example for everybody . Unable to keep a secret he told everyone , ended his friendship with Ted . Now Ted is rejective by everyone , no one talks to him and Pat is the example , but without his best friend and his honestity . In accodance with what you have told me about the accommodation I would prefer to go and stay in tents , because I think they 're unusual and that is not something that you do every day . In my oppinion you have to give some money back to me . She is a very good girl and she can deal with every promblem she has . My name is Agripina T. I just recive your letter and I would like to answer and ask some questions . While I 'm at the Camp , I would like to do two of my favorite activities , which are basketball and singing . In the past I was in a basketball team and I enjoyded it a lot . At the Camp , is there a free uniform or will we have to wear something spessial ? And is it nesessary to bring money , will we need it ? Students think that we do n't do anything and we do n't learn anything spessial . Our music lessons are speccial . And it 's always interesting to wach others while they do something like that . You can find futher information from me about Camp California in the USA . First of all I can go to Camp California only in July because I will start working at our local leisure centre as a swimming instructer . I would like to stay in a log cabin because I have had bad experiens with tents . We are all costemers of the big supermarkets . They have all that we need . But when we think about it seriously , shopping is not enjoyable , for example , if you forget something that you need for a salat . You have to go back to the supermarket and find the nearest parking space , then before someone takes the last fresh lemon for your salat , you must find out where the lemon section is , because they love to change the store around again and again . Firstly , I read in the advertisment that the actor would be Danny Brook , and this is one of the reasons why I went to the theatre . But I had a big suprise when I saw that it was a different actor , and I was very disappointed . I was very ungry with her . I did n't know what to do , I was afraid that I had lost all my friends . After a few seconds of thought I went straigh to Pat . " Why , why did you do that ? " Firstly , you advertised that Danny Brook , who is my favorite , is the lead but there was another actor insted of him . In accordance with study or work , I use the Internet , which is the easist way to get information from all around the world . When I asked for the price I was surprised becaused the assistant told me there was n't any discount available . After two hours I thought that all of this information was writted from a foreign point of view and it was n't the native opinion . I used my computer to collect reports from the Internet and I can promise I found so much information that I could n't analize it in two weeks . Changes wo n't stop caming : the WAP technology ( you 'll buy a cake from a vending machine without any coins , only one call ) , digital TV , virtual reality and more ... I would prefer to stay in a tent to staying in a cabin . Because it is something I feel more familia with . I used to go camping with my family every summer . Sometimes you can stay out all day just to buy a present for someone . It stard in the morning , and of course you have breakfast somewhere , and it gets later and you are still looking for it , so you have lunch , and finaly you spend more money than you thought you would . RECOMMONDATIONS I have just received your letter informing me that I won a two week holiday at Camp California , so I am writing to you to tell you my preferences for the travel and the accomodation . About the accomodation , I have no problems , but I would prefer staying in a tent , so that the holiday may be more adventurous . First of all , the reason why I bought the ticket was Danny Brook , who is my favorite star , and was going to appear in the show . I could say that we can not servive without them . It is getting more convinient and useful than our past life . Furthermore , it is possible to treat many patients who have serious desease more effectively , if we use modern technology in medical science . Because of convinience , we can use our time more effectively , but we should not rely on these things too much . Last week I attended the musical " Over the rainbow " , and I am writting in order to complain about things that really disappointed me . Hello . I 'm Robert and I 'm writting an article about clothes in the future . In my oppinion , in a hundred years we 'll wear the same kind of clothes that we wear nowadays . I recived your letter and I 'm very happy because I did n't expect it , so first of all I want you to know that I really fancy going to Camp California in the U.S.A . for two weeks , especially because I 've never been to this country . Finally I want to find out if there is a supermarket near the campsite and if there are any facilities for washing my clotches on the camp . I look forward to reciving a reply from you . We arrived quite early because we had to work out how we were going to serve people did with which order , so we started putting all the stuff in the appropiate place . I was very nervous because I 'd never been to a concert before and an hour before everything started the singer and the musicians were there and I could n't help it and I started crying - you can imagine , they were so handsome that I could n't belive it - I tried to calm down because I had to work , and later I began to feel more comfortable and when the concert started everything was so exciting that the time went very fast - although I was working - and it was like a dream . I want to know if it is avaliabile at that time . Fathermore , I would like to ask you which kind of clothes I need to take and how much money I 'll spend . But a lot of incovenients anoy them . First of all the parking is not convinent and is expensive . Sometimes you have to park your car in a futher place then walk to the supermarket . Futhermore , when you look aroud the supermarket , you ca n't easyly find the goods which you want to buy . It 's very confusing without the right singho . As I understand , it is very imortant to confirm the date of my trip . Now about accomodation . If it is possible I would prefer to stay in a tent . I am quite good at tennis , especially plaing doubles . Also I like swimming and I 've got two years ' experience of teaching swimming at a lesure centre . I ca n't concentrate in a shop , and I ca n't relaxe either . On the other hand , I understand very well that it is really nesseceraly . I also understand that nobody will do that in my place . I think it is an opportunity to meet different people ( even if they are pushing you ) , to understand what they like and what they do n't , because even some kinds of food can be in fashing . I am writting this letter to inform you I had a very disappointing evening at your musical show " Over the rainbow " at the Circle Theatre where you are the director . This was a very difficult decission but I had to take it because of my personal situation , all the time shouting and fighting with all my family . I 'm writing this letter to you to make a complaint about the musical show " Over the Rainbow " which I saw yesterday . I have to say that I 'm very disappointed with what I saw because after seeing your advertisment I expected more . The show was entirely different to what it says in the advertisment . I was a little more portient so I stayed to watch the whole show , which by the way was the worst I have ever seen . I do n't know why I paid £ 20 with no discount , which the advertisements said I woul have . Then I thougt that I should go to the theatre restaurant to have a drink or eat something so that I could n't say that I had wasted my time by coming here . Competers have entirely changed people 's lives . There are hundrets of prograns which help you communicate with your cousin in Australia or with a complete stranger who you want to meet . I wo n't ever forget the day the doctor told me and my Mum the thruth about my strange disease . Before it was packed into by the audience , we had to clean around the reception , but totally it was really exciting although I was just a member of staff in the small reception , because I felt great excitement ( especially girls ! ) from people queing . I know this is one right love . I 'm absolutely besorrted with him . She told everyone that I fancy him and everybody always makes a joke of it . That makes me feel so embarrised : I was very angry at that time ! Amaisingly , we can find that there are more and more computer users . My daily life has also changed a lot through the use of computers or mordern technology . Regarding the accommodation , I would prefer a log cabin because in my opinion tents are very uncomfortable to sleep in and they are n't very cozy . I would like to ask you for vegetarian food for me as I am a very extrict vegan , and to suggest what kind of clothes to bring . In a nutchel I think Maths , basketball , Speech and Drama , and History should be filmed . Firsty , I would like to thank you warmly for this great prize . Of course we will also show other activities , such as PE , the lunch break and the theater workshop . It was n't a " perfect evening out " like you said in the advertisement , so my friends and I would be gratefull if you would give us some money back , if that is possible . Your faightfully It 's a sad story but it lets you know about a tipe of life that you ca n't imagine really exists . I would like to travel only in July , because I am going to study at my university untill the end of June . I have a lot of posibilities for spending my spare time . Generally I paint some landscapes by using watercolours , but sometimes I try to paint like during the impresionist era by using blobs , oil paint and canvases . In order to preper it I visited some clasrooms during the lessons and I interviewed a number of students from our school . Some of the teachers are very good profesionalists . Their lessons are valuable , rich in knowledge and funy . According to students ' oppinions , the most popular activities are basketball , tennis , swimming and also the photography group and the painting team . It could maks the video more interesting . It will show that during every day we have great fun and we recived good , important knowledge . My school starts a summer holyday from 1st July and I am going to take a summer course from August . They can relax , reduce ther stress and they are happy when they find the thing which they wanted . However , shopping sometimes makes them stressfull . People often waste money on worthless things . During the camp I would like to pratise my swimming ( I have attended swimming lessons for 3 years ) and also I would like to learn how to take some good photos . Sometimes , unfortunatelly shopping can be very annoying , especially at Christmast or Easter time . The only advice would be : " Do not do your shopping at Christmast or Easter time " - but it will not make any sense , will it ? In addition to this , it was not the famous actors that you had mentionned in the advertisement performing , so we were disappointed . Then I had to wait 45 mins ; the show started at 20:15 . At that moment I was realy angry , so to calm down I went to the theatre restaurant , but it was closed , because of its bad hygiene and food . Now I only need to push a button , and things or mashines work on their own . Homework is easer to do with the cumputer than with a book sometimes . Maybe , I wo n't be able to understand how the things work and that scares me . I will be useless , because a mashine will do all the work . To begin with , it was not Danny Book who acted in the show , as you wrotte . And then about the tickets , you wrotte that there were discounts available but there were not . Finaly when we had seen the Musical , we went to the restaurant and it was closed because they were doing some dekoreting , and you wrott in your advertisement , " Visit our theatre restaurant after the show " I am looking forwart to hearing from you . Clothes are a very interesting subjekt to study . If you travlling around you can see a lot of difference still between different cultures . First I think that in the future we are going to wear fewer clothes because the climet is going to get warmer and warmer . Finaly in my opinion I wish we would dress more as we did in the past , using natural matrial . We must think more about the eviorment and live closer to nature . In the past , for example , we used to write letters to comunicate , but now we surely send an e - mail , a fax or make a phone call . Nowadays , you get everything immediatly , but will it always be a good thing ? I think not . So they prefer to leave their sons wecting TV . In my view , it was extremely interesting and satisfing for me all the concert long . Although I can not explain any more about the thing I felt during the concert in this letter , I 'd like to recomend you to help at a pop concert . I am afraid that I could n't write to you immediatly , but last month I enjoyed helping at a pop concert and so I was very busy . Regarding the accomodation I would prefer to stay in a cabin . I think that the combins are safer than the tents and they can protect you better in case the weather changes . I chose climbing because I 'm intrested in this sport even though I 'm not experienced . Yours sincierly Before the concert I helped with carring and putting in order some chairs on which some special people would sit . In addition I had the opportunity to talk to the singers and get a lot of autogrammes by them . I was doing different activities , from designering fliers to selling tickets . In addition I checked the e - mail dialy and answered the phone . In the advertisement it said that discounts were availble , but when I asked a member of staff in the theatre about the discount he did n't offer me one . I excpect this will be possible . Like earings , necklaces , bracelets , rings , glasses , hair bands , handbags , shoes , watches , etc . We had a great time together until we decided to visit the musical " Over the Rainbow " at the " Circle Theater " . So when the miserable musical came to its end , we were happy to leave the theater auditorium , but we both wanted to have dinner in the theatre restaurant , because no restaurants were open anymore , because it started too late . Pat was my big brother , who had heaed of some people paying , " safty - money " , but never know the reason , until he found a large amout of money in my room . Yeah fokes , that was the point I got interupted by my parents in this beautiful dream , but if you want to hear the end of my story than buy the " Rossall - School - magazin " , next issue , and you will hear the end of this unbelievable story . Secondly , for accomodation , I prefer to say in log cabins , as I have no experience staying in a tent , I hesitate to try . I used to belong to the singing club when I was a high school student and once we won the contest , moreover , painting is one of my favorite hobbies . Finally , I would like to ask you wheather there is anything I should bring on this trip such as specific clothes , extra money etc . It was a privelage to help at a pop concert . My dear friend , if I tell you this , I am sure you will get jelous . Dear Sir or Madamme , I 'd appriciate for giving me the first prize in the competition . The aim of this report is to summerize the results of the survey , which is about making a short video . Yet , one extremly hot day while I was pacefully walking by the sea and thinking about my own problems , I discovered my elder brother 's girlfriend with another boy . So , the next day , I nervously came to Pat 's appartment where she had been living on her own since she was eighteen . From the activities , I would choose painting - which I am keen on and I have done several courses - and Photography - about which I know just the basical skills . Besides , it was confirmed by scientists that consumism may develop into a compulsion . First of all , I was looking forward to seeing one of my favourite actors , Danny Brook , and it was very disappointing for me to see a diferent actor instead of him in spite of his name being writen in the advertisement . I 'm writting this letter to inform you about the disappointing evening I had when I visited the Circle Theatre . It 's something absoletuly necessary for every action people perform . It affects us both positively and negatively . I 'm writing to you on behalf of all the English class in order to let you know how excited we are about the trip to London and to give you some ideas of other things we are interresting in doing in London while we 're there . First of all , we 'd like to thank you for the programme you have already arranged . It 's wonderful because it covers most of our interrests . But also we would like to visit The London Fashion and Leisure Show that will be held at the Central kExhibition Hall on Tuesday March 14 from 10:00 - 19:00 . Thank you for your time . We 're looking forward to hearing from you opion . I had always wanted to travel abroad and experiece other people 's lives and cultures , so I decided to go to Paris as soon as I finished university . But in spite of all of these desadventages , I was pursuing my dreams and objectives and in spite of everything I was going to do it . It took me three months to learn the language and by this time the whole familly had fallen in love with me , so that when they decided to move to London , they invited me and now we all live here and I feel like part of the familly , even though it was very hard at the beggining . First of all , the starrings of the show were not Danny Brook and Tina Truelove . But your starrings were not there . From every singular things I have complained , it was totally different from what your advertisment said . And I can send e - mail to my friends via the Internet fastly and cheaply compared to the old - style mail - services . I 'm writing to you to complain about the disappointing expirience I had with your theatre . And last , the most disappointing thing , the advertisement also said that Danny Brook would be there , my favorite actor , but there was someone else instead of him . So , the show was not good at all and my evening was spoiled in spite of all that the advertisement promissed . So , that afternoon at lunchtime , I went into the teachers ' room and opened her desk and took the paper out quitely and calmly . That was the most scarely and daring thing that I did in my childhood . Sencerely ... Unfortunately , Pat was n't very good at keeping secrets and so his whole schoole knew about Sara 's experience . Sara was a very good puple . She spent the money on a magazin . I am writing to you to thank you for your very good organisation of the International Arts Festival , where I spent two exellent days recently . I suggest it would be very intresting to meet artists from faraway and exotic countries . To finish my letter , I hope that my notes can help you to make next year 's festival more intersting and comfortable for the public . It is so because you are young and need to make your life as intrestng as it can be now . Naturally , it 's easier to get a job when you are good at foreign languagers or computers . Also some concert holls were too small for this many people . The school is like a dungeen here . I do n't want to be so evel about school but rules are rules and they are limiting us within the borders of our school . We are not allowed to compare our thoughts during the lessons becase the teachers think that we are chatting . I had been looking forward to seeing my favorite actor Danny Brook , but he had been replaced by some other actor . I was not too happy about that and why did n't the show start when it was suposed to start ? Your advertisement was ful of false advertising . I hope you preciate my letter and that you 'll try to amend these problems./ Sally Svenssen I do n't have to mess around in the supermarket on a Friday evening , when I 'm tired from school , I just get all the groseries I need delivered to my door instead . Nowdays I spend 2 hours in front of the computer every day , shopping or chatting to people . The last thing I would like to know is what clothes I have to take , even though the weathe in July will be good . So , let 's imagen that your credit card is not working , or some one stold your cash from your pocket . Also it is very difficult to shop if you are handicapt . Staying in a que or croude is also unplesent . Your advertisement for the show contains further inaccuracies ; this show did not sart at 19.30 p.m but only at 20.15 . Under these circumstances , as your Theatre did not fullfil its commitments , I ask you for a full refund and I expect to receive a cheque for £ 15 , as soon as possible Yours faithfully Mind what you tell her ; she can make the worst of it ; gossiping is her favorite leisure activity ! A couple of weeks later , my sister called me when I was at work ; completely devastated and weaping scalding tears , she could hardly pronounce a word . I could get her to simmer for a second or two then she suddenly sarted shouting uncontrollably : - " Never have I met such a poor cow like Pat " , Olga hurled this at me down the phone . For activities , my first choise is basketball . I have been playing it since I was nine years old . My second choise is golf . However , I could enjoy it , even though I was a biginner , so I would like to practise and have fun at the camp . As I have told you , I had a chance to help at a concert of Majesty , a local band in which one of my friends played guiter . At first I just helped setting up the stage ; setting microphones , and tuning guiters . He explained to me that it was to controll the light . It was fun practicing how to move the lights and change the lights . Beside that , I 'm alergic , and that causes me problems when I 'm close to nature . I 'm quite good at paiting and I play tennis . I 'll be very happy if you can give me a chance to use the camp 's art studio and you 'll be able to prepare some painting materials like oil paints , canvas and bruches for me . I think the result of that action was marvelous . Everybody was very suprise that you can create such amazing things , using sizors and paper . The light on the stage was very bright and very warm which made the scenery very pleasent . The organisers paid for my acommodation and flight to Ireland . On the next day I helped them to build the scenary and I had enough time to visit a museum in Dublin in the evening . In order to know what sort of clothes I have to take , please can you tell me about the normal weather for this periode ? One of the most important things we have to film is our bycicle classes . Our school is now the best in the country in all ages . We are prest with this . We can show what we do in order to be the best . It would be good to show the swimming poole , the gim , etc . And on the other hand we also have a very important museum , and a very beatiful building in the school grounds , bowls them ! ! After that , your restaurant was closed whitout reason . Introduction : The aim of this report is to summerize the right lessons and activities to be filmed . Conclution I have always been interested in visiting other contries . Below is a summary of the most important relevent points with some recommendations . The fully equipped computer centre in the main building is extremelly good . 2 . The school arranges an amasing range of activities , such as excuintions , sports and different kinds of trips . Regarding accommodation , between tents and log cabins , I woul prefer a tent , because I love adventure and also because I can be freer . I know I will have the chance to do two activities , so I have choosen two from your list : basketball , because I have been playing it since I was eight and I have been part of a strong team for three years . The other one I have choosen is swimming ; for the same reason why I chose basketball . For exemple , if the shop is full of people , it is not enjoyable , because they will create too much confusion , too much noise with the risk of wasting time . The last problem I would like to tell you about is about the restaraunt there . First it helps to make my social life convinient . To sum it up , as technology is improving my life itself is becoming convinient . I would like to know with whome I 'll share sach wonderful days with the sports activities . My Russian friend ivited me to set up an exiting new business . First of all , in order to our firm purpose I wrote an inventation to my favorite idol - the poet and singer Boris Grebenchekoff . His one - week concert programme was so succsessful that we decided to invite him else , as soon as the tickets were all sold . I had a nice expirience as manager too . I am writting about the letter that I recently received from you , which is about a competition in which I have won the first prize . About the accommodation , I would prefer a log cabin instand of a tent , because it is safer and more confortable . The two activities that I prefer are Basketball , because I played in my school 's team for almoust a year , and Photography , which is a hobby that I am good at and I have done since I was ten . People are used to going to the shopping centre because it is easy and familiare . It is one place where you can have lunch or dinner , watch a movie after that , and , if you want , buy something at the shops . Instand of going to the theather , which is more cultural , or even having a picnic at Ikurapiura park , people prefer spending all their money at shopping centres . Circle theatre 's Manager : I am writting to you because I felt dissapointed after seeing the musical " Over the Rainbow " . First the actors who were suppoused to star in this show were not the ones put on stage . I had a discount ticket , but they refussed it and I had to pay the full price . Appart from this , the show started forty - five minutes late . I think these reasons are suficiently to ask for my money back . She was also concerned about being pregned , but she was afraid to tell John about it . He could n't belived what Pat had told him , so he broke Pat 's nose . I am now writting this letter to give you further information about myself with pleasure . Regarding the accomodation , I would prefer to stay in tents because I think it will be closer to nature . Tennis is my favourate sport . Shopping is becoming a popular way of killing time nowdays . Try to imagine the scence : twenty or thirty or even more people are in a quel outside the fitting room . The accomodation that best suits me is the log cabin , as the space in tents is very limited and I am not used to having all my belongings in order and packed at all times . With regard to the activities you offer , it is difficult to choose from such a hugh variety , but I prefer to do those I know better such as climbing . There are many things that can go wrong in the process of adquiring a product or service . Hunting on the high street , or the shopping malls for the desired bargain - because we ca n't afford to buy anything otherwise - often becomes a desperate atempt to attain a lifestyle promoted by the new consumerist society . In the end everything depends on our attitud to life , including shopping . But even without money to spend it is fun to rush from time to time through the sales that seasonaly appear , or simply look at the superb displays that shops have in their showrooms . First I did n't accept but finally she conviced me . I would prefer a tent rather than a log cabin because I have been told that the Californiai summer is hot and dry so , because a tent 's wind circulation is better , it would create a confortable coolness . It is finally your turn and you reluctantly hand the money over to the hypocrital cashier . They had a concert in my home town , that 's why the organizators were looking for young people who could speak English . The staff in that departnent were really friendly and helpful and they were also huge , like giants . Basicly , I helped them liaise with the local police and get some electronical equipment that they needed . By the way , I have already been invited to their next concernt . You said that some discouns were available . When I went to the reastaure I was really suprised . In the advertisemen you wrote " your perfect evening out " , that 's very funny . It helps me when I studie . I can find many things on the Internet or write my compositions on it . I can find cold water in the refrigarator but 50 years ago they did n't have the refrigarator , so our life is easier today . I think it depents if you are a man or a woman and now I have to say I am a woman and I enjoy it . First of all , as I see it the idea of an Arts Festival is great because in this way many people can get to know artists who cames from different countries . I always prefer to read books that are inusual in some way , because they give me the opportunity to escape from everyday reality . They are the main characters of that book , and what caracterize them is the violence of their passions . To make it worse , neither discounts nor restraurants were available that night although they were said to be available . According to the owener of the restaurant , it was closed because the plugs of some lights were cut off . However , I think there will be some diffences in the quality and materials of clothes . Although the appearance such as shape and color will not change so much in fashion . Some people are in a hurry , others are agressive and most of the others are very stressed . It is not always like that but we often see such a scene , even though shopping is becoming an entertainement not only for teenagers but also for adults . Then , the show was meant to start at half past seven and I had to wait fourty - five minutes because it started late . I am writting this letter to complain about the treatment that we received when we went to the Circle theatre in order to see the musical show " Over the rainbow " , whose actors were Anthony Keens and Tina Truelove . Indeed , it had a big swimming pool and a beatiful garden . At first I was irritated that contrary to your announcements no discounts were availlable . To my greatest disappointement Danny Brooks was not in the show , but his part was played by an actor whose ( lack of ) singing and acting skills did not make him a suitable replacement . yours sincerelly Technology is essencial to our life , we need it each minute , each second . Good because you can have acess to a lot of information , and it is bad because the computers are doing people 's work . We really appriciate your organising a very nice programme , which has been organised by you this time . In particular the River trip to Greenwich makes us very excited and we are really looking to forwold to this . We 're looking forwold to your reply . Invent glass was very eventuly to architect . Architecuture with use of glass brough us modenism in 1980 . In the future we can expect to have a new material and it will make our life more confortable and convinient . It is said that one of the reasons is that a small separete room makes children unsociable and depressed . Also as producing new electoronic , our home of the future will be more convinient . In addition I would like to choose singing and photography because I am good at singing and taking photographies . Last month I enjoyed helping at a pop concert a lot . Really it was a very intresting experience , particularly when I had to deal with a young group of children from Latin America . It was increible , because I learnt some Spanish words such as Hello , How are you ? goodbye , What is your name , house , dog , cat , boy , girls etc . I am very happy that I promed myself that I would learn Spanish this Summer at Huntingdon College . At the concert they were very susscceful because they were very confident and I helped with the sound system and our equipment was extraordinary and the audience were fantastic . It seems to me that all these failures were your falt , because you were responsible for the organisation of the show . However , conserning that I saw the show , I would like to get a 50% refund . Please reply at your earliest convinience . That is why I think that modern techology helps me in my daily life . I have once experienced having been soaked while I was sleeping in a tent dut to heavy rain several years ago . I would be really greateful if you could send me some information or any relevant brochure . I 'm writting to you because I wanted to tell you what a bad experience I had during my holidays when I went to see the play on at your theatre . To begin with , the actor you publised as going to perform , did n't . People are getting more and more adicted to this , because it helps to make everyday life easier and more confortable . I 've recently been to one of your musical shows called " Over the rainbow " at the Circle theatre in London , thinking it might be a good idea but it was desappointing . I 'm writting this letter to explain to you what happened and to look for a solution . To begin , the organitzation of your collegues in the theatre was awful for various reasons . Unfortunately , Pat was n't very good at keeping secrets , so without want I knew that there was going to be a concert in owr city given by , from my point of view , the best group in the world , Oasis . At first I got more angry with Pat than with my other friends in the group , becouse Pat was and is my best friend . Then I realised that she had reason . I was irritable becouse my parents were going to get divorced , but Pat would always be my best friend so I told her that I was n't angry with her and I was not going to go to the concert becouse I had to go to the court to solve my parent 's affair . And that 's the story of how I missed the oportunity to go to the only concert that Oasis have given in my city . Well , some people would say yes whereas others would desagree . However , I would add that journalists - being aware of that hard topic - should try to modorate what they write in order to respect other people 's privacy ; since they would probably not be happy to have their own private life exposed ! I was boried , so I decided to follow him to discover where he was going . I would prefer to be accomodated in a log cabin as I do not like sleeping on a mattress and I get an allergy to rubber . Could you , please send me some extra information regarding the ammount of money I should take to cover any other expenses , and also , what kind of clothes I should take . For the two activites that I chose are at first swimming . I am in the swimming team and I must go two times per week to entretain because I have a competition every weekend . Could you tell me approximatively how much ? The concert sarted at 6:00 pm until 2:00 am , and I started to work at 12:00 pm to prepear the stage with the musicians . After that , at 2:00 pm , when people arrived , I was at the entrance to take the tickets and , you know , it was incredibale because some people slept all night in front of the stadium to be in the front row . I saw old people , children .... and for me it was very strange and it was very interessting , because I met a lot of people and the best thing was that I knew the pop group who sang . It was fantastic . I am writing to express my dissatisfaction with the musical show which the Circle Threatre is staging . I recently had a week 's holiday in London and during my stay I went to your threatre to see " Over the Rainbow " . In the advertisment , I had read that Danny Brook was starring but he was not . The play should have started at 19.30 but it started forty - five minutes later , we were waitting there without anything to do . After the show had finished , I went to the theatre restaurand to hav something to drink and relax but it was closed because the staff was on holiday . Moreover the discounts were not available as you said in the advertisment and I paid £ 20 . I would like a refand because it was one of the worst evenings of my life . If this matter is not resolved , I will take it further . Everybod agreed with her . I 've recived your letter and I 'm very happy to know that I won the competition and the first prize . In answer to your question , I will have to say that I can only go to the campament in July because of my job ; they only gave me that month off . I would prefere to do some climbing because that 's what I do in my spare time and I do it quite well . Apart from that , if you give surfing classes I would love to take them ; surfing is one of my chilhood drems that never came true . I do n't know what tipe of clothes I have to take or the amount of money that I 'm going to spend , so if you , please , could help me by giving me this information I would be very pleased . Shooping is not always enjoyable . We have all been shooping once in our lives and sometimes it probably has not been very enjoyable , why ? We had a class discussion and we all agree on some points . For example , if we go to a big mall we will probably never find what we are looking for , and instead of buing what we came for we will leave with lots of things that we liked but we will never use . Most of the time he gets lost , or they start plaing around , making noise , bothering people , etc ... And when this happens you get in a bad mood and you 'll have a bad day shopping . So if you want to have a good , relaxing day shopping , we recommend you do n't go with your little brothers and to go with enogh time to look arround for what you really want . I 'm writting to you because I went to the International Arts Festival and it was a pleasure . On the other hand , I must tell you that some concert halls are too small , so you ca n't be comfortable enough to apreciate the event . Considering the advertisement , which appeared in one of London 's newspapers , I would like to present you with some of my complaines about your musical spectacle . Secondly , the time when your musical should start was changed , delaying your show for nearlly one hour ! Neither the beautiful surranding near your theatre nor the comfortable seats compensated for my horrible evening . However , technology has a bad influence on us - generally on our healf . However , he did not act , and his sustitute was not very good at acting . I went to buy the tickets but when I paid there was not any discount avaible . That wendsday Pat phoned me and told me that Sally also loved Paul . The weekend came and that Friday we went to the dyscoteque . When Sally came out of the dyscotheque I was very angry and I started to shout at her . Unfortunately I was very disappointed with it ; I was expecting the opposit . First of all , the advertisement where you advertised your show and what the theatre provides is totaly wrong . I came to see my favorit actors Danny Brook and Tina Truelove , but the actors whom I saw were other people . Another thing is that I took a particular amount of money to buy tickets and when I apeared in front of the ticket desk I found out that the cost of the tickets in your advertisement and the real price were n't the same , the real price was much higher . Also the show started very late compared to what was writen in the advertisement . befor the beggining ? So , after all of that , I wanted to have a nice relaxing dinner in your restaurant . I was very angry when I apeared in front of closed doors and there was a notice that the restaurant was n't open . In fact I am writing to you with just one main aim . I 'll be really delighted to resive the money back for my ticket . I 'm looking forword to hearing from you . Faithfuly yours Look at the history books for 400 - 600 years ago , or even for the time of the First and Second World Wars , to see how sociaty has changed , just because we stepped up the advance of science and technology . On the one hand scientists have discovered a lot of medisent for different illneses , but on the other hand they discovered many illneses which we had n't heard about before . More and more people die from some illnesses whereas a long time ago fewer people died from the same illneses , dispite the fact that they had fewer medisent . However , technology nowerdays has improved so much and it has changed our lives a lot . Today we ca n't even think how we could possibly live without computers or without airplanes . The computer is our way of communicating with the outside world , whereas with airplanes we can reach our parents and friends easily and much faster than we would if we used boats or trains . Every day scientists and technologyst discover and produce more and more new things and that is good . It has to be like that , we have to go forword not backward from the point where we are now . Society has to go forword not to stop in one place . Actually , I read the advertisment for the show and there were a few mistakes in it . After the play , we wanted to eat at the theater restaurant but we could n't . As you can see , there are some ( deliberate ? ) mistakes in the advertisment you made . I quickly became bored by this hypocrital attention they gave me . I am writting to complain about a musical show last weekend when I was in London . I felt very upset about your advertisement was totaly different from the musical show . It was quite rediculous ! She enjoyed sharing everthing with Pat , whatever it was . This made Nick very embrassed and he felt hurt . Finally , they got seperated . For example , if Diana , who was the ex - wife of Prince Charles , had n't been followed by paparachi when she was dating a man , there would n't have been a car accident which caused her death . It was a pitty that the halls used for the classical concerts were too small . When the sons were old they began to talk about their life , beginning with this story , which happend a long time ago . 17th Juni 2000 I 'm in London for the first time and I wondered what is interesting on your stage : I read in the newspaper the advertisment about the best musical show . In the advertisment the cast was very interesting - Danny Brook and Tina Truelove . I desided to go to your theatre but at the beginning it was the tranbles . In the advertisment it said - " discounts available " . I 'm a teacher and in Polan I have discounts but in England I do n't . I know this is another country . I was very suppresed when I saw a different actor . It was n't Danny Brook . I saw one week ago on TV ( the 23rd annual ) the fashion show in Paris and I was very surrprised because of the style . All the models had very strange long shoes made from black leather , the trouses were quite short and the jackets were elegant with blazzend materiell . People will wear clothes made from natural materials like silk , which will be comfortable and elgant . Because the world is now a global village people will wear at least one item of traditional or national clothing ( for example a peasnt jacket or hat ) , like they do now in rural areas from time to time . Sailing means an ever renewed adventure as you can not control the atmospherical conditions . When you ask to , the sales person offen answers that your size is out of stock . It seems like a good oportunity to practise it . I would rather stay in a tent , because I have stayed in tents before and I liked it . It is more pleasent than staying in log cabins and it is such a wonderful experience . I agree that shopping is not always ejoyable because a lot of things can happen to you . Therefore she had to do a lot of tramits to cancell her credit cards and to change her plane ticket . Well , regarding the accomodation at Camp California I would prefer staying in a tent . Well this is abosolutly true , espacially when you go shopping on Saturday . For exemple , you go into a clothes shop , you see all those women running around trying to find the shirt that will match their new skirt , so they are looking everywhere , pushing you because they think that you will take the shirt that they want . You get headaches , you get stressed , and finally you get bruses because of the woman who pushed you to get the pretty skirt before you ! ! ! I would prefer to stay in a log cabin rather than in a tent , because I find it more confortable to sleep in a bed , but it would n't be a problem if I have to sleep in a tent . I would love to do climbing and surfing just because those are sports I have never praticed before . That means I do not have any experience . The part that I enjoyed the most was that I felt I was doing something worthly for the community and also that I got to meet a lot of people . I have just recieved your letter saying that I have won the competition . I must say I was really surprised and happy to be given the oportunity to join the Camp for two weeks . I am concerned that you offer me the chance to choose two activities , while I am there . Because of my studies , I will take painting , as this is the subject which I am finishing at college , allways with important cualificaitons , and photography which has been my hobby since I discovered that I can mix , in practice , paint and photography . Concernet acomodation , I would prefer a tent since for me if I go to a camp or on an excurcion it is n't the same if I sleep in a cabin . I really liked one of them concernent a holiday in Spain for 3 days with hotel and breakfast included , for only £ 250 . I went inside to ask about that package but they told me that it was gone , so , I went to many shoops just to get the same answer . As and advise try to go shopping in the out pick hours , and do n't waste your time asking for promosion advertised in the windows of the shop . I 'm not really a young man and during the recent years of my life I becamehave become accostomed to comfort . That was cruel , because I was very haungry after the show . In spite of this , I have got all the equipement I need for painting and I paint very well . The food was deligious and fortunately I did not have to pay for it . I am very pleased to be the winer in your competition . When I was at the Univercity I was very keen on basketball and I played for the university team . In 1998 we were the champion of the First National Leque . Novadays our shopping habits seem to have changed . I can clearly remember my childhood and our only local shop . I was really astonished by all these shopping centers , like ASDA , HOMEBASE , etc . One day I decided to go to the shopping center which is only 40 metres from our house . I 'd walked arround for about 15 minutes until I found the door . When I entered the shope I was a bit angry . In fact , this activity seems to be very interresting . Unfortunately , I have never practiced but I feel like trying it . The best thing to do would be to show the cooking personnal because they are very nice . I advise finishing with a chemistry lesson so that people see the laboratery . The advertisment promised us a perfect evening but it was n't , so I would highly appreciate it if you could completely refund our tickets . Since Paul ran a very popular hotel in London , he told Pat that on Sunday the superstar Madonna was supposed to be staying there with her new misterious lover . I 'm writting to you to complain about the musical that I saw when I went to the theatre during my holidays in London . To my surprise Danny Brook never apeard . He is my favorite actor and I paid to see him not to see a different actor . Finally at the end of the show I decided to go to the theatre restaurant but it was closed because it had n't been repeard . I enclose my postal addresses and I will be looking forward to a completly refund Most of them believe that they are kind of crazy or ievel . Carol , a 16-year - old girl , said , " I imagine clothes in the future will be very strang . Maybe they will be in many colors and they will be very thight . They will be sinthetic clothes , I think , made of plastic or something similar . " Most young people like Carol believe the same and use their minds to imagin the variety of clothes in the future . After all , they 'll be the ones that dicide what the Fashion of the Future will be like . My name is Joseph and I am writing this letter to complain about the mess that the adimnistration of the Circle theatre presented to me . We paid to see Danny Brook , my son 's favorite actor , but we were quite disappointed . My son was very happy because he would see his favourite actor for the first time . Expecting British pontuality , we went to the theatre at 19:00 to wath the 19:30 show but it only started at 20:15 . It finished later than it was suposed to and then we missed the train . I did n't see any discounts available ; I thought my son would have paid less than I. As we had alredy missed the first we went to the theatre restaurant , which is famous for its good food , however , it was closed . Because of this , the least you can do for us is to give me my money back and work hard so that this theater , which is famouis for its beauty and pontuality does n't become famous for its desorganized shows . People have seen in the last 10 years how diferent our clothes can become . Clothes used to be made of coton , but nowadays we can see shirts , pants , socks .... made of almost anything . Computers are little things nowadays , but at the speed at which tecnology develops , in the next century clothes will tell our doctors about our healt at any moment , any time , anywhere , people will be able to locate us arround the world . In the future we wo n't buy clothes according to size or even color . Our clothes will adapt to our bodies , the weather , our fit , all our needs . I saw the musical show in your advertisment during my holiday . I think after 100 years , at least something will change as regards design , material , color , etc . Since I was a child , I have been intrested in camping and sleeping in tents . For exemple , how much pocket money will be enough and what kind of clothes I should wear . We think that this is a great opportunity and we are all very interested in going because we can see there the latest fashions , leisure and sports wear , a lot of different kinds of make - up and some famous hairstylers . The show is absolutly free for students . I have further ideas . In the futur , maybe in 2113 , there will be houses like now but with more technical things . But I think that people will altough need a bed and a table with a chair . houses will only be more modern and more practique but not very different from our homes in the present . The whole show and the acting was of a standard comparable to scholl theatre . When we decided to visit the theatre Restaurant after the show it was clouse because some decorating was n't finished . It was this last poin that got me angry . After evrything that had happened we went to the hotel tipped and very affect . From a small village to the town was a very long way becouse people used a horse and wagon . Evry family now has a TV , to travel long distances we use not just the car but elso the train and airplain . Before we had a phantasy about how people might travel to other planets , and what we see now is a spaceship cruising in space . Before it was only in our emegination . New techology has made our lives more comfortable and esee . Evrything that we do now we do with a computer : it helps to look after the house , to perform very difficult operations , becose the computer can think much faster than a human . And I can continue my list in this way ... becouse science never stops in one place . Looking forward to your repply . It was such a wonderful experiece ! When Jane asked me to help her with the publicity and specially with the inverviews , I just could n't believe it . You know that I love going to concerts , but being at the beging of the show and a member of the staff was something I was always interested in . In the area of publicity we were about 50 guys , all of us investigating , calling radio stations , organizing the reporters , specifying where the press would be for the interview that took place afterwards ... yet , it was incredibly satisfation when everything turned out just fine ! Before I go to the Camp , I would like to know what type of clothes I need to take and wheather there is anything I should take in case of any emergencies . I was one of the lukiest people from my school to be picked to help at the pop concert which took place in my town . Me and my friends were very excited , not because of the stage decoration but because of the pop sigers and bands whom we would be able to see ! However the best part was watching and listening to the singers and bands practicing on the stage . He started to consum the stuff at the age of twenty . He had problems at home because his mother wanted to settle down in Australia , but Peter was used to living in New York , where it is overcrowded and he was surronded by people . But I have booked a flight home at the beginning of Auguest . Nowdays the Internet brings us closer and closer . 3 . Liabrary . We not only borrow books from a liabrary but also study at a liabrary . With reference to the accomodation I would rather stay in a tent because I think it is the best way to socialize . In addition I need to know whether meals are included or not with the accomodation so that I can decide how much I must have with me . Just then Ake exlaimed that I could play the piano . yours sinicrely The restaurant , which I decided to visit after the show to eat something , was closed without any explaination and the perfect evening was completely unperfect . Often you wear very litte but short skirts and tops . The sommers and winters get warmer . Besides all those improvements and confort I ca n't stop thinking where all this will lead us . All these items of equippments are applications of modern science . Thank you for this prize , I 'm really ecited and emotional . To answer your reguest , I would like to travel only in July because I really apreciate this kind of trip and I 'm really grateful for your attention . Yours sincirely , Women ca n't resist the temptation of shopping and they are dissapointed when they do n't have the desire to shop . Shopmania is really unstapped . I know women who do everything they can to buy only a dress , or even worse , women who buy things they have no use for , for example , snap , esculptures , kitchen tissues , or eveything sold by telemarketing that really is unuseful , but they can not resist the fact of it " being there . " There are many facts to prove that shopping is not " pretty and armonious " , so believe me , it is not always enjoyable . I am writing to you becaus I was very disappointed with the show you have put on to attract people to come to your theatre . First of all , I came to see the play just becaus my faivourite actrice shoud have been in it , but she was n't . The time of the evening performance on the tiket was 19.30 and actually it started at 20.15 , which forced visitors to stay in one plase for 45 minutes , a waste of time . The ticket discounts were not available under any subconstanses and the theatre restaurant was closed . I strongly recomand you to pay a minimum 50% of the full price that I paid . Your faithfull I think that in 100 years from now , the clothes fashion will be totaly different . In my apineon the world itself will be different in temperature as a result of global warming , also people will become nicer , less this will take place , so the clothes will mainly be made from cotton with smooth colours like dark grean or gray . They will be comfotable clothes becaus the main point for any caind of clothing is to be comfatable . Also there will be no leather or fethers used in maiking these clothes becaus by that time the animal population will have fallen and Green pease will be very strong , much stronger and more pouful than it is now . So we can imagine the Future Fashion might be pleasent or unpleasent for different people . The styles will be more or less the same as each other and everyon will be setisfaid with them . I am writting to reply to your letter and comenicate my aceptance of the first prize in your Competition . This summer , I am available in July because in Agust my family and I are going to go to Canada and in September I will go back to university . If there is no chance to go to California in July , I could wait untill next summer . About accommodation , I would like to have a log cabin because last year I had an accident and my back was enjure , so sleeping in a tent would be painful for me . Due to my back enjure , this year I could not train and play with my team , so I am not fit . It would be a good aidea to be a referee . Althoung swimming is so boring , it would be a good thing to help cure my back . Could you please let me know where I will eate ? If there will be a vegetarian menu ? And how much is it ? And please could you give me some details about what the weather is like there and what type of clothes I will have to bringh ? It was a hard month because my job was very hard . I worked 12 hours per day but alwalys with fun people . I 'm writting this letter to complain about the musical show I saw during my stay in London . If I feel like talking to a friend I just have to call him and whereever he is I will be able to get through to him . I 'm extremly happy because not only do I earn a lot of money but also I 'm learning a lot . I 'd like to travell in July because I 've got an examination at USP in Roo Cohelo in July . And I 'd like to stay in a log cabin because I ca n't bear sleeping in a tent . I hate that kind of accomodation . I have recently recieved your letter saying that I have won the first prize in the competition . It was very fortuanate for me . Please could you send me an itenerary of the trip ? I think that shopping can be both enjoyable and unenjoyable because sometimes the shops are full of people , especially at the weekends , which normally is the only appropreaite time ! Danny Brook was meant to be the starring actor but he wasn not , another actor took his place . In the advertisement you say that there is a biscount available but there was not . I think the next time you write an advertiment you should put in the right information . I did not have a perfect evening with so many proplems . Yours fouthfouly Does technology have a bad or a good efection ? In the 18th cetury , technology started to grow more and more and the 20th century was called the century of technology . Thechnology helps people . It informs people , hospitals use modern technogoly , and the computer helps staders and helps people do their job . A lot of countries buy gans , for their defence they say , but they buy them to kill people . Technogoly ca n't ever stop going forward , and so people always go farward but with the same effection of modern techology . In the advertisment you promised a perfect evening out , but it was n't . It was very disappointing for me that the actor was n't Danny Brook , as was promised in the advertisment . So I want to ask for my money back , also I had to pay for but cancel the arranged taxi because of the wrong starting time in the advertisment . But are they usefull in every situation and everywhere ? My oppinion is that modern technology can help you to save time . But in your advertisement you wrote that people can visit the resaurant after the show . If I search for something like a telephone number or an adress I also look it up on the Internet . Another important point for me is that things like listening to music or watching TV sound better and the pictures on TV are being impoved , because the machines become better . The third problem was that it was writting that discounts were available , but when I got there it was not true . For example , a car , which is used by everyone every day , changed my daily life in the sense that I do n't need my dad or my mum to go ice - skating or to go to work . I can do it by myself and for me it is important not only because of technology , but because I can show that I am responsable . In spite of the fact that the weathe is bad , I play tennis . In addition speaking activity includes everything for learning English such as listening , speaking , and grammer as well . In other lessons , the teacher teaches lots of things which are grammer , English culture ... etc . I play the classicial guitar and I also sing . I have been playing the classicial guitar for three years . I wonder if you could tell me about the wheather and what kind of clothes I ought to bring with me . It was very ashameful for my mum . You also mentionned the activities I 'll be able to do . Althoug I 've been playing tennis for five years , I ca n't say I 'm a very good player . Firstly , the story takes place in South Africa , during the period of Appartheid . I think that you ca n't understand all the links between the events whitout reading the book more than once . Moreover , once I was paying for the tickets , I found another thing out : there were no discounts avaible . I had to go back to the hotel , because all the restaurants in the area were absolutelly crowded . Summing up , you might have realised that that was n't " my perfect evening out " wich you promised , so I would like you to give me the money I paid for the ticket back . She works as a model , and she was advicing him about what clothes , etc , ... to buy for her . I decided to go to a play at the theatre of wich you 're the manager to see " London 's newest and best musical show . " The principal reason I 'm writting to you at the moment is that I want my money back , because I felt so disappointed with the theatre and also with the play . Before modern technologies arrived , you could n't comunicate as easily as we can do today . You can comunicate with people in places where you would never imagine going to because it would be too expensive . But , if you do n't like using the keyboard to say something or to communicate , you can use video conferencing , a sistem wich lets you talk with other people simply with a microphone and speakers . The modern technologies mean I am able to listen the music I 've downloaded with the same quality as a CD , and if I buy a reproductor , I can carry this music everywere . Also computers and mobile phones have evolutioned thanks to modern technologies . As far as accomodation is concerned , I would prefer to stay in a log cabin because I think it is more comfortable , and , therefore , I have never stayed in a tent . To sum up , it is clear that not only should the film be about the subjects they study , but it should concern their sportif activities as well . On that date , I decided to spend one evening seeing a musical show as I was on holiday in London and was interested in the musial show . I found the theater rather noisy as I arrived very early to sit in the front row . However , something wrong occurred again . The actor ' Danny brook ' , whom you advertised in the brocher , did not play a part in the show . I am not satisfied with your show as it was compeletly different from the advertisement . It 's comletely different ! Have you ever been to a fashion show named " New trend , New Millenium " ? ' How can we go out wearing thouse clothes ? ' On the other hand , some people refuse to wear that sort of clothes so they prefre to wear nothing . In fact , unlike the perfect evening out that you promised in your advertisement , I had a very disapointing evening . There were also the discounts wich were n't available . Can you imagine how exsiting it is when we are in the dark and very quiet and we can hear the sound of the animals . I have been doing a lot of them when I have had some free time and when I feel empressted with where I have been . Fainally I would like to ask you about I have to spent any money over there without my shopping and how the weather is over there in July because I will pack the clothes as usedful . It was brillian . You know , you have to very strongly when you have to do that because when people came in they could n't weait to get to the frount and they try to go through very quickly . So you have to explain a lot of times to make people clamed down and stand in a row . Appart from that , here is the information that you asked me for : - About the accomodation , as I read , you can offer me a log cabin or a tent . That 's so good when you have the money to enjoy it but , appart from that , there are many problems . Also there is a big problem : the mony . Secoundly , I would be very grateful if you could accommodate me in tents rather than log cabins . From the list of activities in which I will have a chance to compete I have choosen basketball and swimming . But , is n't it a kind of entertaintment ? For example , emagine that you are a bride and you have to buy an appropriate outfit . I am writing this letter to complane about the Circle Theatre . Secondly discounts were not availabe . What 's more , the theatre reastaurant was closed when the show finished , because the show started at 20:15 . It was not a perfect evening whatoever . Everything will be usefull and combinient , even fashion . The most important thing will be your fugure , such as long legs or pear - shaped . Traditional or Comtemporaly In concrution , the clothes will be more interesting than now for everybody . I 'm used to sleeping in a tent from my previous holidays and I always injoyed it . I actually injoyed it working there and I would n't hesitate to work there again . The activities listed in your letter all seemed to be interesting . I chose to play baskelball ( I play in a club , I am quite good ) and to do photography ( there must be beautiful pictures to take in California ) . You asked me which accomodation I would prefer . Moreover , the admittion fee is free for students . In addition to this you will be able to control all parts of the house by computer such as temperature or vacume cleaning . About the accomodation , I would prefer to stay in a log cabin rather than in a tent because I have a bad back and I think that sleeping in a tent could be not just uncomfortable but also painful for me . Let us then ask : ' Is this activitie always enjoyable ? ' Far from the strengh that doing a sport or even going to work requires , going shopping is something you can do either on your own or with all your family and it could not be easier ; you only need a good pair of shoes and a wallet full of money . However , this apparently quiet and relaxed activitie can sometimes turn into a living hell ; you may only be able to go shopping at the weekend and then , if you do go , you will find yourself in the middle of a huge crowd of people , unable to get to any product or even shop and feeling dizzy with the mixture of smells that come from the people . On balance I would say that although it is true that shopping is not a difficult activitie , it is also true that it is definetly not an enjoyable one . I received your letter this morning and I was very suprised by it . I am writting to you about your questions . First , I can come there only in July because of my examination , I have to take it in June , and my new turm will also start in September . My main work was to take people to their seats because of a concert hall , which was the millenium dome . I also sold a panfulet of that concert , CD and T - shirts . I told you before Elton John performed at that concert , so there were a lot of famouse people . She was abusolutelly beautiful . I 'm pleased to receive your letter and realy happy that I won the first prize . July is also good because the wethear is warm and I could enjoy the time I will spend in the camp more . I think I can handde it very well . I 've choosen Photography because I love to take pictures ! if I have to take any special equipement for the activities that I 've chosen Whether there is a phone , a fax or e - mail so I can be in touch with my familie . Yesterday was Valentine 's day here in Portugal . In particurely I had to spend it alone ... again . I 'm writing to you to tell you about a pop concert that happend here in São Rafael . Red Hot Chilli Pepers came here for a short time and they played at the " Chedicard Hall " . It was realy cool because I did some backstage work . I was everywher . I took lots of pictures , asked for authographs and I even gave them my cel phone number ! They promissed me that they would call me someday , which I particulary doubt . I hope you answer this letter as quik as possible with lots of thing to tell me . Dear Manager : I am Angela Ounis and I am writting to you because I went to see ' Over the Rainbow ' , London 's newest and best musical show . Also it was said that Discounts would be available , but I did n't receive any discount as you were cheating us . I know that you have a big responsability but if you have told something to people , stick to it . I have learned a lot with the Internet . It gaves me the opportunity to know more about things I never knew about . I had n't tought about a restaurant to go to after the show , because if the advertisement had been right , there should have been a luxury restaurant where I could eat . Yours Sinceraly We are in the age of technologic development , of that there can be no doubt . First of all , we would like to say thank you very much for organising our tour around London and our programme , wich is considered especially good for us because of the places we will visit . Secondly , we saw last Saturday in the Oxfor News an advertisement about the London Fashion and Leisure Show and we would like to know if it would be posible to inclued this show in our tour . The show is going to take place in the Gernal Exhibition Hall in London , Thursday the 14 of March , so it could be a good idea to see this show intead of going to the Science Museum . We think that it could be a great opportunity because in one day we can see everything concerning fashionable clothes , new make - up and hayrstyles . In this letter you ask me for some further information for my conveniance for this trip . I received your letter , which says I won the first prize in your competition - two weeks at Camp California in the U.S.A. I apreicate that and I thank you sincerely for having chosen me as a winner . I acxepted and I want to inform you that I can travel only in July because I have booked my anual leave for that period . I helped them to prepare the room for the bads and I decorated the place for the singers . It took a long time to testifite the speakers and the microphones . The audients was excited and I can not discribe my happyness . I still have the sound of the music in my ears and the voices of the young people who were accompaning our songs . I am writing to you to give you some requiered information . As you can see , I have abosolutly no experience in it . During my stay I went to your theatre to see a musical show and unfortunatly I had a very disappointing evening . Lastly , about the ticket . The advertisment said ' Discouts Available ' but no way , I had to pay the full £ 20.00 and the restaurant was closed because of rebuilding or something . However , the point that I am trying to make is that you just ruined my hoilday . Your advertisment was unfair . As you are a manager , you have resposbillity for justifying this problem . and I have a right to get fair treatment as a costomer . But I say fashion is Artistic insperation which is expressed by fabric and all sorts of material . As I said before , fashion is somehow influenced by science and insperations that we get from all sorts of enviroment . These days we are very intrested in space and the millenium and things and many designers have shown millenium looks recently . I expect human beings will live on other planets and trevel around under the sea . I think people will wear those spacy and cyber - looking clothes after a centry . Can you imagin you and your friends going on a picnic to the Moon with a silvery skirt with Astronut boots with fire coming out at the bottom of your boots ? It could be more facinating . Swimming is my favourite way of excercise and keeping fit . THIRDLY , I WAS VERY EMBARASED TO DISCOVER THERE WERE NO DISCOUNTS AT THE ENTRANCE . I always have a positive approach with all of the most recent invenctions or any other kind of modern appliance . Anyway , the thing that has changed my daily life most is the personal computer and , expecially , the Internet . Also , the times printed in your advertisment were 14.30 and 19:30 . In your advertisment , it said that discounts were available for the tickets . I was rather thirsty and hungry after the show and your advertisment made a cup of tea and some cakes in your restaurant sound rather inviting . It was not my ' perfect evening out ' , as your advertisment said it would be , and I would like some money back . It 's a natural reaccion to be angry with somebody you do n't trust for gossiping about you and bothering your personal thoughts . But they do n't consider the problems the romours may cause the famous family or couple . In conclusion , no matter what the journalit 's aims are , famous people deserve to have their problems , their affairs , their private lives just as normal people do . I saw your advertisment for your show at the circle theatre , over the rainbow . Also it was written in the advertisment that some discounts were available , but there were n't any discounts . First she said to her father , then to her mother and finally to her brother , that I was from another planet called Orion , that was a billion kilometer from Earth and then I was so ashamed because I have been her boyfriend since I came to Earth . I would like to thank you for chossing me . I am good at Basketball and tenis . At university I atend tennis lessons for two years . Finaly I would like to ask you . As I told you two months ago , I saw the advertisment in the newspepper . Just before the consert I had to check that everyone was present . The consert was briliant . It was terrible ! We had a lot of problems from the beggining . Everything was all right during the band 's performance , but at the end some espectators came up on the stage and did some damage to the band 's instruments . As you can see , hardly anything went well , but the lights and the sound - for both of wich I helped carry things - were appropriate for the concert . Firstly , it was written in the advertisment that there would be stars and artists from around the world . I believe that it 's difficult to arrange meetings with foreign stars but there were artists from only six countries and in my opinion there That was excelent because it attracted people 's attention . regarding the accomodation , I would prefer a log cabin . I think that will be safer for all my things . The stage was gigantesque . The crowd could be all around . I mean , it 's still inbelivable . Can you imagine how like a dream it was to be shaking their hands . Your advertisement was excellent and it gave me a lot of enthousiasm . Then , I think it 's interssant to answer the following question : This little essay shows that I depend on technology and , moreover , because I 'm in an electronic eegenering school , I 'm keen on technology . I pressume if the term becomes longer the festival will become better . I can say the actions which are prohibitted at school are no problem at home . We think that it is a great opportunity because it is just once per year and it is free for stundents . We stayed at my aunt 's house which was in the center of the village . I loocked outside and saw two men go into the house in front of mine . The policeman came to take the bugglar and thanked me for catching him . The concerts and the dance show were incredable , except for the classical concert that was in too small a hall . Secondly , the plays and films were very well organized despide the low numbers . The art exhibition showed us a new lifestyle and society that was totaly different from ours . The talks by writers were very tecnic but they could be understood by all the people who were at the festival . In conclusion , I was impresed by all the good organisation , the service and the cost of the weekend ticket for all events . The price was excelent because there was n't any time limit . I hope that you organice this festival for all the coming years . At school you are n't allowed to bring in connected movil phones although there is more than one student that does . Teachers will take it from you if it rangs during school hours . If you break one of these rules you could be expulsed for a week , a month or for ever . As well will have the responsability of looking after my brother when they are n't at home . In answer to your question , I would n't change anything because I think that these are the minimum rules that a theenager has to have to be responsable in the future . I would be very grateful if you could give me some aditional information . When she finished the sound check , I went to meet her . I told her I was very happy to be there and to have helped at the concert , and I asked her for an authograph . I am willing to show you the authograph and the photograph . When I got to the theatre I asked for the discounts shown in your advertisement , but they were not avaible . Despite this I was still excited about the show , but then I sudently realised that Danny Brook was not performing , he had been replaced by an extremely disappointing actor . I 'm writing to you about our trip which you have orginesed . Sincerally , They nead to be with their family in peace . In fact on the stage appeared a compleatly different person . But to make everything clear I 'll start from the beggining . Our parents were very pleased and happy we were so ambisious . As a result we were grouded for all the holidays and all because of our almost perfect Pat . And what belter way to solve this than to give the festival an international character . If you like fishing , you can try to colaborate with the local market or some shops , in order to sell them the fish you catch yourself . I prefer to stay in a cabin because I have never been on holiday in a tent before , so I think it is more corfotabel to sleep in a bed instand of outside in a tent . The activities I would like to do durring these two weeks are basketball and swimming . I think I can play basketball well , because a few years ago I was a mamber of the scool team . Swimming is not my favorite sport but I prefer swimming to golf or tennis . Please could you informy me what you meen when you say all the accommodotion is paid for : is that including food and drinks , so that I know how mutch money I have to bring with me , and what kind of wather it is during this period of the year so that I know what kind of clothes I have to take . I was the assistent of the person responsible for the clothes and make - up of the pop group . Really I was very nervous about that because it was my first time with such famous people , but I am very happy that all the things went very well . Kim , what I realy particularly liked was when I was asked to do the make - up on my own . Really I was very nervous but at the same time very happy , but everything went well and everyboby was very hapy with my work . Realy I think you have to try to do the same thing next summer , I realy enjoyed it . You ca n't go outside in peace , and there is always a crownd of people who stand in front of your house waiting for you . We have seen it in an advertisment and I would like to go to the show . It is a great opportunity for us because the fashion is fashinating and free . For example , we would be able to put off our visit to the science museums on Thusday morning till Wednesday afternoon . The fashion show starts at 10 oclock and finishes at 7 o'clock . Journalists follow famous people , such as politicians and film stars , in order to take fotos and get information about them . I think that it is very dangerous because the famous peple can not have a private life and consequently they may suffer from deppresion and sadness , which may lead them to suicide . I think that the goverment have to protect them and their private life from the journalists , by punishing journalists . I am writing to complain about the Musical ' Over the Rainbow ' , permormed at the Circle theatre last week . What was suppoused to be a perfect evening out turned out to be a disappointing one instead . If I want to know how a friend is , I just have to phone him ; I can see how the world is getting on just by switching on the television , and I can cook in a few minutes using the Microvelle oven . In conclussion , I think that technology has two faces which affect my life as well as everybody else 's life . As far as accomodtion is concerned , I would like to live in a tent at Camp California . I prefer this type of accomodation because I am used to living in tents during my summer holidays . Concerning the accomodation , I would prefer to sleep in a log cabin , because to sleep in a tent would remind me of the bad experience I had in Ireland because of the weather ... But so far I have only taken pictures on holiday and of some family celabrations . Otherwise I had to keep walking untill the train started . I was sitting under a full - bloomed cherry blossam tree . Their hobies were listening to the radio , reading books or sitting on a chair without doing anything . The performances were great , but some halls were too small to accomodate all the people who were there that day . So , in the daytime , we can focus on our studyings . George was about to be linched on account of his skin colour . The place where I was hidden was overlooking the house where he was kept prisonner . No one was garding him . One of the reasons that I have visited your arts festival was to see a lot of plays . In the future , I hope to be an actress and that 's why I want to learn something from the professionalists . They want too much forstudent and are unkind to them . I 'm writting to you to answer the letter in which , as you probably know , you congratulated me for having won first prize in your competition and tried to encourage me to travel to California and attend that camp . I 'm writting to you to tell you how much I enjoyed last Saturday . It was such a beautiful night ! Unforgetable . I had always dreamt of being near " The Cranberies " , but I had never thought that the dream could become reallity . During the afternoon , Tim and I spent the hours before the concer lying in the park next to the sports hall where the concert was to be held . After a few minutes the dream happened : Kare - the guitarrist - appeared over there . Finally he said how grateful he was and alowed us to stay with them till the concert started . As far as accomodation is concerned , I would prefer to sleep in a tent . I have been travelling every summer since I was eighteen years of age and this type of accomodation is part of the ritual . Thanking you in advance , I am looking forward to your prompt respons to my questions . I went as a voluntier in order to go for free . The accomodation and the food were part of the contract ... everything free . I met lots of nice cool people , and what I most enjoyed was the crazy atmospher of the whole thing . The best thing was that I have learned how to take care of their expensive instruments and I have sung my favorite songs with them . There are so many monuments in California and so I will remember this holiday with my photographies . Finally I would like to ask you if I need any money , because you say all accomodation and travel costs are paid for . He also gave me his adress and telephone number if I need help from him in the future . It continues to develop and always will be the most importand thing in our life . When I asked something about a " discount " , your staf said that it was impossible . Becouse my favorite actor appears in it . We waited for the show to start for about one hour and fourty - five minutes . During the show , we did n't see Danny Brook , who is my favorite actor . If Danny Brook does not appear , you have to say something about this to the people who are there in the theater . This is your unforgivable mistake . After the show , we were still angry . We wanted to eat something in your theater restaurant . Yours faithfull Everthing is easy now . There was n't any discount avaiable for the tickets and I went to the theatre with my three cousins from Brazil . faithfuly , With the introduction of the computer in our civilization we can access the Internet to comunicate with our relatives and friends living abroad or far from us . Besides this , the information goes faster than it used to now and it 's avaiable at the same time in every part of the world . First of all , in your advertisment for the show you wrote that Danny Brook and Tina Truelove were taking part in the show . The people who were there to watch the show were very ungry and they were shouting because they had to wait too long . And I absolutely agreed with them . Also in the advertisment you wrote that discounts were available , but they were n't , and also that people could visit the theatre restaurant after the show to eat some thing or to have a drink . So , the next day Pat went and told his sister Sally that her friends were organising a suprise party for her birthday . When Sally heard that , she was very suprised and very excited . But although she was acting like this she was very ungry with her brother Pat , because he did n't keep the secret . Suddenly they all shouted " suprise ! " . Sally , although she knew about it , seemed very suprised ! So her friends did n't realise that she knew about the party and they were very happy because they believed that the suprise party had been a success ! It was an unforgetable night ! ! ! I am writing to complaine about the evening at the Circle Theatre presenting " Over the Rainbow " . Everybody will wear anything he / she likes , choosing clothes from any century they wishe without this being strange . On the other hand , if human society changes to become stricher and more limited , there will be only 2 or 3 types of clothing , formed by the needs of society . I 'm very sory to tell you that I had a very disappointing evening . First , I got there at 7:00 pm , because the show was about to start at 7:30 pm , and I needed some time to buy the tickets . I bought two tickets for £ 20 and when I asked for a discount , they did n't give me one , then I was kept waiting for the show to start untill 8:15 pm . Later when the show finished , I planned to go to the restorant and get some food , but it was closed , because it was being repaired . I was in love with a friend 's boyfriend and we were about to have an affair , but when I made the big mistake of telling my little and terrible secret to Pat , everithing started going wrong . Katrin , my friend , and the one I was being bad to , was very upset with me , and she was right , but I really did n't know what to do . I was in love with Brett , but I loved my friend too . Then I decide to talk to Katrin . I was very sory for all I had done , so I apologised to her and promised her that this would never happen again . Rescently I decided to see Over The Rainbow , a very famous and well - known show . Furthermore , I was shooked when one of the main actors came onto the stage . He was n't Danny Brook , one of the resons for my choice of coming to see Over the Rainbow . A century ago , when a farmer took the horses out of the stable and put the plouge behind them , we 've got the word " time " . I must say a few words about the new electrical cars which surely will have a central role to play , exspecially today when fuel is so expensive . I am writing to you to complain about the differences between what the advertisement for the Circle theater said about the musical show called ' Moreover , as I had read the advertisement carefully , I had planned to invite some friends to have dinner at the theater 's restaurant . So , because of the things I have mentioned , I think I shoul be given some money back . I look forward to recieving some information from you . In addition to this , there is less comunication between members of my family , because when we arrive home after an exhausting day racing against time , the only thing we want to do is lie on the sofa while watching television . On the other hand , and in conclusion , I think that this development has made my life more comfortable living sourrended by lots of gadgets with different functions . In the advertisment for the show you said that one of the stars was going to be Danny Brook , and to my surprise there was a different actor , and that realy disapoint me . Then the show was suppost to start at 19.30 hours but it started at 20:15 , more than half an hour late . I had read in the advertisment that there were some discounts available but there were n't . And the theatre restaurant was being pait , so I could not go there . As you may undertand it was not a perfect night and I was not pleased with the show or eaven with the service . Tecnology , are we prepeared for these advances ? Tecnology improves our lives , we have high - tech equipment for cooking , for work , for study , well nearly for everything . And when we understood the Internet , we thought that meeting people from other countries and being able " to chat " with them was the height of tecnology . But now we can eaven see the face of the person we are chatting to . The Internet is amaizing . And now of courese there will be someone trying to improve it . Tecnology changes our daily life , it makes our life easy to live and of courese more confortable with computers , televitions , radios et cetera and sometimes safer , as with medicine . Definitly we should try to understand tecnology . If we know how to use it , tecnology will improve our way of life . When I met Caballos , my best friend , I felt embarassd and disappointed and I could n't say anything . It is as if they lose their concience while they are shopping . When you go shopping and there are a lot of people in the same place , all trying to find the best prices and not carying about anybody , this could drive anyone crazy . The long queues , crowded places , high prices , sales , all these things conbined could make shopping an enjoyable thing for people who like doing it . So while I am at the Camp I want to take a lot of photographies and climb a mountain . Shopping sounds very enjobleable and is fantastic for women . You can find a lot of interesting things which were unexpected . They are also the lessons which English people and other foreigners are particularlly curious about . This is a good oppertunate to see how they learn in class . In conclusion , besides all that I mentioned , I highly recommond you video the students ' daily life and interview them . In fact , now I can write to friends who live in foreign countries , for exemple , in the morning and receive their answer in the evening or even just a minute after writing . Therefore I regard the Internet as quite a powerful tool and I believe it has given more strenght to relationships between people . I am really glad to receive the first priec in your competition . It will be very plesant joining the holliday . Regarding your first question , I would like to travel only in July because it is my school holliday so I would not miss any classes . As regards activities I would choose singing and surfing . Surfing because it is my favourit sport . I have been surfing since I was a child so I am pretty good at it . And singing because I really love it . I am not as good at singing as I am at surfing but I like doing it . I only had to stay behind the drummer suppling them with water whenever they wanted . I had a really nice time with them even tought I would've preferred to stay at the front with the other people , I hope you 've enjoed my experience , and I hope to hear from you soon . I received your letter and would be glad to spend two weeks at Camp California in the U.S.A. but I will only be able to go in July because in June I will be in Austria with a friend and for August I have rented an appartment with my family . You can come across a very disagreable shop assistant and if you find what you wanted , you will not want to pay him or her for it . There is nothing more disagreable than that . Further to the umpleasent event that took place last week , it is my right to complain about the musical show I saw when I was in London . The show was supposed to start at 19:30 and it did not start until 8:15 . Then I felt dissappointed because the main actor had been changed . If that does not seem enough , after the show my boyfriend wanted to take me to eat something in the theatre 's restaurant but the umpleasent surprise was that it was closed because all the waiters were on holiday . I 'm always having holidays in July . It is my favorite time for holidays . Just the nesseccary . I think the people who enjoy shopping are greede for materialistic things and they haven't any interests in the spirit ( ? ) , in the intelect life . We must do something to help other people to feel better and be usefull . It was very interresting , because I did different things . I took some photographies and I 'll show them to you when you come next week Dear director of the Circle Theater ! On Friday we , my friend and I , visited your Theater to see ' Over the rainbow ' . It should have been my best evening that week , unfortunatly it was n't . Instead of 7.30 am as your advertisment said , it started at 8.15 am . When the show started Danny Brook was not acting , which was a great dissapointment for us both . We are both big faan of his When the show was finished we went to the resturant to have something to eat . But then it was cloesed for repairs . Because of all this troubel I think we should have our money back . And next time , make soure that your advertisment is accurate ! When were nine years old and were in thired grade we had a ' House ' where we used to play all afternones . In fact it was n't a realy house , it was some stones between the trees in the littel forest neear our house . It was a secret place and we had promissed each other not to tell anybody about it . Useally we were cooking flower soup , and swapping secrets . One day when I was there alone , I heard some other kids aproting . I sat down behind one of the stones so they could n't see me . One minute later , Pat and half our classe stod in ' the House ' looking and laufing at me and my flower soup . Maby she did it to make friends . I do n't want to be rude , but this is not proffessional at all . Lastly I would like to inform you that I wanted to have dinner at yor restaurant but they told me it was closed because it usually closes at 11:00 o'clock , So I am asking you : why do you adverstise it if is not going to be available to the audience ? First , I am very dissapointed about the star . I'M WRITING TO YOU TO DESCRIBE MY DESAGREABLE EXPERIENCE IN YOUR THEATRE LAST SATURDAY , AT YOUR SHOW " OVER THE RAINBOW " . BUT WHAT I CANNOT FORGIVE YOUR COMPANY IS CHANGING THE TIME IT STARTS AT THE LAST MINUTE , MY HUSBAND IS A DANNY BROOK 'S FAN AND HE FELT REALLY DISSAPOINTED . WHEN THE SHOW WAS FINISHED , WE WANTED TO GO TO DINNER , AS YOU SUGGESTED IN THE PROGRAMM , BUT THE RESTAURANT WAS CLOSED BECAUSE IT WAS ON PUBLIC WORKS ! ! ! Definately the worse . I would be greatful if you could consider our suggestion and please inform us of your decision as soon as possible . There are people from both sides of the agrument who have strong feelings . Both of them are my favorite sports and I 'm quite good . You asked me for some further information and here are my " desirs " : I stood at the entrance and theire I had to check the tickets . Famous people , such as politicians and film stars , deserve to have a private life without journalists fellowing them all the time . Famous people have always been the center of interest for a number of people . This show would give us a lot of information about current activities , fashion and what is happening here in London with , for example , the lastest fashions , leisure and sports wear , make - up , and hairstyles . If you agree , after the Science Museum , we can have lunch at a restaurant near the musuem , then we can go directly from the restaurant to the Central Exhibition Hall . It does n't matter who they are , where they come from , what color skin they have . There will be a numer of Developments in Technology in the future , which could make our life easier to live but what should remain the same is the feeling of being together and love . Therefore , I hope that you can agree to a suitable arguement between you and me . I started trainning in 1996 , and I have never given it up . There are more and more retailors opening . I could n't believe my luck . I was really sure that I won a return ticket to the Meditarenian Sea . Thirdly , the person on stage was very strenge to me , because I expected to see " Danny Brook " , but I did n't . Althoug modern technology gives you many comfortable things for living , can it give you nature , peace and fresh air ? Let me express how disappointed I feel at this particular moment , or I should say angry , better sad . I would never have expected that I could be so decepted . This is not the firt time I have been to your theatre and I have to tell you I have enjoyed many other plays , but be sure " Over the rainbow " will be the last one . As I am specially fond of musicals , I even travel abroad to see what 's new , I am probably one of your most devoted customers . I know this word is not the best but you have demostrated that the theatre can be just as cold as any other business . Of course , you shoud give a refund for the money spent , not only to me but to all the audience . New fabrics create new textures , all kinds of accesories are added to create new versions , to refresh old ideas , to make new proposals that will last , as always , just a few weeks . Have you noticed that all the classic gentlemen wear the same tipe of suit ? And what about those kinds of intellectual and progressive people , do n't they all wear the same type of ugly but confortable shoes ? I am sure that fashion will survive for ages , it will even change to become easier to use and cleaner , because we all need to feel a part of our society , comunicate our way of living and thinking , be part of a group and , at the same time , be different . - When the musical finished I was terribly hungry so I decided to have something to eat but the restaurant was closed and the advertisiment said that it would be open . Modern technology has changed my life in many difents ways : To summarize , the modern technologies give you and allow you to do many things wich would be impossible in the past but also creates many problems . As I was so looking foreward to seeing Danny 's performance , I was very disappointed . It is a very good shedule , especially because you have considered different activities for us . Personally , I think it could be a great opportunity because it is something we all want to attent , and we are all interested in the latest fashion . We discussed the programme , and because the show will take the whole day , we would not mind going to the Science Museum on Wenesday instead of having free time all afternoon . I did n't even think of boking down . The clock was running .. tick , tac ... And suddenly everything stopped . I felt an enourmous peace . Fortunatelly , I was n't alone . Thank you for the effort which you have made to organize this three - day programm in London and I am sure that we will have a great time there , especially in the National Art Gallery . The thing is that we have seen an advertisment for the London Fashion and Leisure Show . Futhermore , students can enter free ! Thank you for your attenlion and understanding . Perhaps , there will be personal computers which will control everything , every item of furiture , light , temperature . But , on the other hand , people will still have to programm them , as they have to do nowadays . All the rubbish , dust , dirty dishes , plates , cups will be washed automaticly . IT 'S UNDENYABLE THAT DURING THIS CENTURY OUR WORLD HAS BEEN CHANGING . IN CONCLUSION , I REALLY BELIEVE THAT OUR DAILY LIFE IS VERY DIFFERENT TO WHAT IT WAS IN THE LAST CENTURY AND EVEN IN THE BEGGINING OF THIS CENTURY . During these past few decades , or rather in the 20th century , there has been a great deal of developement in modern technology . One of the essential developement has been in our means of transportation . Another significant technological developement is the invention of electrical appliances . Modern technology helps people in many ways and is indespensible . When the show finished I was eniting to visit the theatre restaurant but it was closed . I was expecting a lovely and perfect evening out but it was the most disapointed experience I have ever had . When I wake up I take a shower using eletricity then I prepare my breakfast in the oven then I go to school by bus , when I arrive at home I put my lunch in the microwave then I watch TV and do my homework using a pen . When I come back from jiu - jitsu I eat something that was cooked in the oven then I go to bed . About a millenium ago everything was different ; people did n't have electricity , they cooked their food on the fire and they did n't have pens . Regarding the two activities I have to choose , I decided to choose a new activitie that I have never done before , which is Sailing . I am a total begginer at this . The other activitie is Photography . I am not an expert , but I know how to use a camera . All I want is to improve my knowledge . I helped them with organizing the stage , cleaning everything , fixing what was broken and they even let me play with their guittars ! I had put some money aside for that month , thinking about the discount , but when I went to buy them they said that discounts were not avaible . Waiting for your repley . When she finished school , she went to study at the Agent Trainning Agency where she learnt about guns , clues , agencies , etc . She was sent to New York to discover how some people from the government gave money to the merchants because they wanted to build a Trade Center there . Here is some further information about myself and a few enquirement . It is really fasinating to challenge the waves . As for accomodation , I would prefer log cabins , because I belive they are more comfortable than tents . Will I be given any pocket - money or do I need to bring my own money to cover additional expences ? Martial arts are realy exciting and are a great thing to film . The main characther is the old man who has to fight against the sea to stay alive . They 're fighting for the same reason with the same strenght , the man has to kill a brother , as he calls the fish . On accound of the fact that staying in log cabins is much more interesting than staying in tents . I can sing plenty of songs , which include English songs and the japenese songs , and I have a part - time job sining at a restaurant . Futermore , I am going to enter a competition next year . Shopping is not always enjoyable . Sometimes there is a long quare or a mechine is broken . A lot of circumsenses will arise . Everybody had gone to buy luch in the supermarket . In fact , nobody likes crowe and quare , expecially not in the summertime . Abviously , I had to try another aisle . It was the longest quare I have ever been in . Even though I think most of the time it is very interesting , sometimes it gets people upsent . Finally , the reasonable price of the tickets for the weekend was a good point , because all kinds of people can afford to buy them . I also think that you should have a snack bar or a little restaurant so that the people are not too hangry and morever you can make a lot of profit . In conclusion , I do n't want to change anything in my house or at school , because I totaly agree with the few rules that I have . I have choosen the two following activities . I have choosen sailing because I would like to try a new sport . I love water but I have never tried this sport before . Yours sincerly . People are often irritable and agressive . Because women love shopping and you have to follow them everywhere and always give your opinion about clothes , music , parfums ... yours sincerily The things I did were : Prepearing and checking the equipment , I had to clean all the stadium , making sure that all the lights were in perfect working order , that the singers were confortable and relaxed , etc . It would be a great plessure to spend two weeks at Camp California and I ca n't find any suitable words to express my enthusiasm . With regards accomodation I would prefer log cabins , as they are more comfortable and I like convenience . They are ready to sacrifise all their savings to get something that will make their neighbor jelous . So , as a conlusion , I might say that shopping is n't enjoyable at all and I 'd rather stay at home instead . After the show I needed to drink something in the theatre restaurant as the advertisement concieved , but it was closed . When Pat first came into a class or a groupe of teenagers there were no problems . Insofar as I came here especially to see him play , I have been very disappointed , and this could be the understatement of the year , as he is my favorite actor . Thirdly , the ad mentionned possible discounts . Personnaly speaking , I did n't see them and did n't even hear of them : I asked about it , but nobody seemed to know anything concerning discounts . As he closed his eyes , he started to travel along the dark paths of his councience . The boy could not beleive what he was hearing . At these words , Paul suddently awoke . The show was called " Over the rainbow " and should be , to quote the advertisment , London 's newest and best musical show . I was very pleased that the main actors listed on the advertisment were Danny Brook and Tina Truelove . Furthermore you had mentioned some discounts in your advertisment , but I had to pay the full price although I am a student . The perfect evening you promised in your advertisment was the complete opposite and that is why I want to get some money back from you . First of all , I was attracted by the actors - Danny Brooks and Tina Truelove - and not by the actors who performed effectly that evening . These actors appeared fourty - five minutes late according to what is written in your advertisement . And in conclusion I want you to give me my money back , ( I still have the advertisement if you want prooth of what I say ) . As regards accomodation , I would choose to stay in tents . I do n't know much about the weather down there , in California , so I am rather puzzeled about what to wear there . Also , I would like to know how much money I will need and which expensies I will have to cover myself . All these exhibiots are really important and exciting for us because , nowadays , fashion has a huge influence on our lifestyle and we would like to know more about it . We think that we could go there on the 14th of March , in the eveninng , instead of going shopping . Nowadays , there are a lot of people who live only on the money they get from advertisments , reports about their last romance ... but not everyone does the same thing . On the other hand , there are the ones that are also respectabled but , appart from their relations with journalists because of their work , they really need to be constantly sought by photographers . The media moves the world and famous people use it to improve their work , politicians for their campain and film stars to make their latest movie famous . In conclusion , I believe that shopping is not always enjoyable if you accidently get into a bad situation or you can not control your expenditure carefully . In your letter you ask me to choose which type of accomodation I prefer . Hopefull I will meet some other girls interested in the same sport . Woods is thought to stand for all white peope and this book could have an influence on them . Secondly , I would prefer to stay in a log cabin , because I am alergic to some insects that might get in a tent . I spent two weeks preparing the stage , speakers , backdrop , michrophones , everything , with all the staff , and every night the artists came to rehearse their show . I could see how they really improved , and how nice they were with the staff . I am writting this letter because I had a week in London last month and I decided to see your show called " Over the rainbow " with my wife and children . We were disappointed because your advertisement was a misleading one . But cars create pollution : for exemple the greenhouse effect . Technology allows us to improve our knowledge in the sciences like medecine so as to cure more illnesses or to make people live longer . In my opinion it 's a lot better than the dictionnary because it 's faster and you really find what you need . I am writting to you about an enjure that I had at your last musical at the Circle Theatre . First of all , I was surpprising that Danny Brook and Tina Truelove did not perform . I read in your advertisment in Friday 's edition of the Times that the show should start at 19.30 but the performance started at 20.15 . I was waitting 45 minutes for nothing ! I am a studiant and I did n't get a discount ticket . I do n't understand the problem between your advertisment and the reality . For exemple , if I do n't have time to do my shopping after school because I have to do my homework , I go on the Internet and ask for what I need . From my point of view , the Internet is the most important invention of the 2000 centery . You can book tickets for the theatre , sport , etc . I use the Internet all the time for my homework and in the futur , I hope , I will be able to use it for my own work . Technology will not stop growing and helping people in the futur . It was n't the first time I saw this show in your theatre , but it was the worsed one . At first it was a great plessure for me to get a ticket becauses I 'm one of Danny Brook 's greatest fans . It 's not that problem that there was no more discount available - but I had choosen it , because I 'm ( alowed ? ) . When the musical started at 20:15 ( not at 19:30 as advertised ) I was realy shokked when I realised that a different actor was playing his role . You have to know that I am very sik because of my blood presure and so I was laying down the whole weekend . For me , as a scientist , it 's a big problem to show how the inovations of the last century went up with the environment and natur . Nowadays a simple thing like a computer includes so many possible ways of destroying different environmental compartiments . On the one hand there are the materials from which the PCs are made , on the other hand is the uge waste problem . Now I try to show , in my daily work , how the airborn chlororganics , which are degased from plastics , will be seperated and damaged by green plants . Sometimes it seems to me like a joke if I think about all the daungerous materials I need to do my job . Therefore it makes sense to use the inovation which are causing environmental destruction . When I was 15 , I was starting to look for new clothes , shoes , and everything I would find now unneccessary . I would not dare to culculate how much I have spent on those things without thinking . However , it was not bad . My mom always told me that I had n't earned enough money so I should n't have spent it in the wrong way . I have never been to the USA , so I think that this trip will be an unforgetable experience . I look foward to receiving your reply . For pratical information , this show starts at 10.00 and closes at 19.00 . It is not too far and the openning hours suit us . We also suggest visiting the Science Museum on Wednesday morning and in the afternoon , if some of us are intersted , we could see the National Art Gallery . They will become less dark and more confortable than today . These improvments will be involved by the lack of petrol and non - renewable energy . About the size of hous , I think that in cities houses will be more and more small because of overpopulation . But about the differences between the homes of the rich and poor , they will be the same in the futur . I think that people will be as alone and julous as today . As if this were not enough , once the show ended I had to walk twenty blocks to find a Restaurant since the theatre Restaurant was closed for mainteneance . After reading the whole organized programme , we all agreed about the sightseeing tour by bus around London , wich will give us the knowledge of this fantastic city we have all wanted to have since a long time ago . We found the advertisment in a local newspaper and have been thinking it could be such a good opportunity , because the show consists of these topics : Instead of going to the science museum , we could go to the London Fashion and Leisure Show , wich is open on Tuesday , March 14 , from 10 am to 7 pm . Yours sincirely Not only because she 's famous and wrote lots of books , but she knows how to introduce caracthers and how to tell a good story us though decieving the readers . In other words the story is set on a train wich tooks a trip along the orient . On the train , all the passangers seem to be involved in a crime . This is such a fasinating story and it 's the way Agatha Christie tells it . The mistery is drawn out until the last page of the book . I like Danny Brook very much , and his unaspected absence caused me great sadness . It 's all right , but I also think that he 's exagerate . I do n't think I have done such a bad thing as to destroy our friendness . I like his company , and we are happy when we are togheter . I AM WRITING IN ORDER TO EXPRIME MY DISAPPOINTMENT AT THE SHOW " OVER THE RAINBOW " , PERFORMED 2 WEEKS AGO ; FIRST OF ALL , I READ IN THE ADVERTISEMENT THAT DANNY BROOK WAS TO ACT IN THE SHOW , BUT THE ACTOR THAT REALLY PLAYED WAS A DIFFERENT ONE , AND THIS WAS VERY DISAPPOINTING . I THINK THAT FASHION IN THE FUTURE WILL DEVELOPE ALONG VERY DIFFERENT LINES : THERE MAY BE A RETURN TO THE FASHION OF THE PAST , AS WE CAN NOTICE NOW , OR A MORE FANTASCIENTIFIC AND TECHNOLOGICAL DEVELOPEMENT . SURELY , ORDINARY PEOPLE WILL NOT FOLLOW ONLY THE MODELS PRESENTED ON TV . AS REGARDS EVERYDAY LIFE , I THINK THAT IN THE FUTURE ATTENTION WILL BE FOCALIZED ON COMFORTABILITY MORE THAN ON ELEGANCE . BUT IF IT IS DIFFICULT TO FORECAST THE DEVELOPEMENTS OF THE FASHION WORLD , IT IS NEARLY IMPOSSIBLE TO FORECAST THOSE OF THE COMMON PEOPLE , THAT IS A TOO VARIED A CATHEGORY . One of my hobbies is photography , so I think I am rather good at it , but I will take painting to learn , because I am not very talentive at it . After carrying stuff like lights , microphones , wires and some other equipment for about three hours , I was eshausted . It 's a great opportunity for me to participate in your Camp California because normaly I work a lot and I ca n't spend money on travel . Moreover , I have to support a big family because I 'm married and I have three children . I have to choose painting and photography therefore . I would prefer surfing or climbing but I have to think of my helth . I 'm very enthousiastic and I wait for your answer as soon is possible . FIRST OF ALL , IN YOUR ADVERTISMENT YOU SAID THAT DISCOUNTS WERE AVAILABLE , BUT I COULDN'T FIND THEM AVAILABLE ANYWHERE . THE PLAY STARTED AT QUARTER PAST EIGHT : FOURTY - FIVE MINUTES LATE . MY ADRESS IS IN THE ENVELOPE . I'M LOOKING FORWARD TO HEARING FROM YOU IN THE VERY NEAR FUTURE . I like to sleep in a tent under the open sky since I have done military service , therfore I would prefer a tent as my accomodation . It is important for my health that I swim an hour a week because I am overwight . When I have enough money the price is n't important , then I can buy a lot of things whitout considering my money . Finally , I am going to write about the theater , the Circle Theatre . I 'm looking forward to recieving a letter from you . The rooms will be designed in a futuristic fashion , where there will be less furniture and everything will be compact . Even TV - sets will be on the ciling . Technology also means all electrical machines , which do n't stop being developped . Machines have replaced the work of humains . Our whole life is being simplified by machines for not waste the time to work on their developpment . Here I will answear all the questions that you asked me , and I will ask you about other things that you did n't mention . I 'd like to organize my trip for July because that is when I have vacations , also because it is summertime in the U.S.A . About acomodation at Camp I 'd prefer a tent , because it 's a new expirence for me and I 'd like to sleep in a tent to have a great time while having a new adventure . Thank you very much for your colaboration . Most of the time when we go to the shopping Center we have a lot of fun . We go to stores to look at clothing , we also eat something like ice cream or French Fries , but is not enjoyable all the time . In that instance we do n't enjoy shopping because we ca n't find what we are looking for and we have a bad time in the shopping center . I was absolutely threaled to resive the news about my winning a competition . I do n't like cold nights and moscitos . Yours faithfyly Usualy people do n't have time for shopping . There are huge queus to the tills , noise , hussle , poor custumer service . You 've got more stress , you feel fed up and finaly when you get home you think that shopping is not as enjoyable as you thought . There are so many varaity of products , different prices , different qualities . Nowadays tecnical progress gets close to us , to normal custumers . Without any hussle , sitting in your chear in front of your computer , in a second you can get to any shop that has an internet site - most of the big companies have one - get all the information about the product , get a cheaper price and buy it . I know that staying in a log cabin is more convinient but I just want to have a wilder experience . And I want to know how much money I have to bring for personnal expences . Besides , I really would like to know approxiametely how much money I should take with me . Concerning the activities , I have choosen two of them . It was boring that nothing happend for such a long time on the stage . And finally , I would have had my dinner after this disappointing musical and thougt I would go to ' Theatre restaurant ' . This is not a tabu subject with me and my friends . I had dout when somebody said that the fashion of the future would be different . Are they inclued in the prize ? I 'd prefere it if you gave me this information as soon as you can . However , those days were unforgatable for me . I will be very happy to travel in July because in that month I am going to have my holidays , so I will not have to ask permition from my boss . I would prefer to stay in a tent , couse in that way I can feel closer to nature , and I can remember when I was a girl scout . At the camp I would like to choose two activities , Painting and Singing . I love painting . At university I studied art for two years , but now I do n't have much time to paint couse I work in a bank and I have a baby . The reason for my choice of singing is that I feel embarrest about my voice , so maybe I could improve it . Thank you for givin me this oportunity . You are never going to believe what I did last month . I was walking with my sister in Oxford circus , when sudently a man stopped us saying that he was looking for people to help at a concert and they were going to pay us five pounds an hour . We sed yes inmidiatly . I nearly shouted with happiness when they told us that Luis Miguel was giving the concert . He is my favorite singer . The concert was on a Sunday and we had to work at the back of the stadge , doing all sorts of things like colecting rubish and helping other people who were working there . Other bad points can be mentioned , like polution for example . I am writting to you to complain about the musical show , where everything was completely different from the advertisement . Modern life has been full of science and tecnologies . I am very pleased that I was born in a time when there is such good tecnologies but my parents did n't have the same luck . My life is much easier with all this stuff mentioned above - tecnology and science . The bad side is we can use tecnology for war - missiles , weapons , etc .... Indeed tecnology has changed our lives , we have become more scepitical and cold . Sometimes I think tecnology is not a good thing .... People whom I work with are going on holiday in Juni and August . Also , the accomodation I would prefer at Camp California is the log cabin , because first when I was a little child we stayed in a small house every holiday and I like that . However , drawing some beautiful sceanary and taking some pictures would be a very good experience for me . I 'm not keen on liars , Mr Smith , and I think that you 've lied to naive tourists like us : some brilliant actors were supposed to play the parts and we only had different , pityful ones . Otherweise I 'll have to put some other ads out in London saying that your show is just a fraud ! Nowadays , the Internet and the mobile phone , with the developpment of satellite communication , seem to take the lead . As far as I am concerned , the first way modern technology influences me is through my work : the Internet has become such an incredible tool , I can research into everything I want , find information for lectures , for example , or exercices . Maybe it will change me into a kind of self - centered person , a loner . But we should not forget that they are only tools and should emphazise human relationships . Finaly , I 'd like to play tennis and to try climbing . This book remains one of the best in American litterature . Based on a very simple story , the story of an old man fishing , it is a deep reflexion on age . A veteran fisherman takes his boat and goes fishing to convine himself and other men that he is still able to do it . The 24-hour fight is described in such a peacful , faithful way that it callas a though about life and death . I recommand this book as a way to discover both Hemingway and American litterature . Before answering your letter ( which I have just recieved ) about the prize for the competition I recently won , I 'd like to say thank you very much for giving me the chance of going to the USA . About the accomodation , I think I would prefer to be in a log cabin instead of a tent , since it is more comfortable . In addition to this , I would like to know the ammount of money I should bring , as well as the kind of clothes that I could need and the sort of people that I will find there . None of the groups are known at the moment , but I belive they are well on their way to becoming famous bands . This was the best part because when everyone was gone , Billy Joel arrived to give his support to the beginers ! ! ! I could n't belive my eyes ... Jane took a photograph of us toghether . Lastly , I do not think I would call this my perfect evening , so I would like to ask for a refund , and I hope as the Manager of London 's newest theatre , you will handle the situation favourbly . Even though Pat has got a great sense of humour and wonderful personality , he 'll never be able to keep any secreats from anyone , even himself . Although , we are great friends , sometimes people can make such stupid mistakes , and so there was one time when Pat and I had a fight . It all started when once I accidently took the wrong bag back to my house , and there were lady 's knickers inside . I was so nervous and embarassing , so I told Pat and off he went : he told every single student in the school that I 'd stolen a girl 's knickers , and everyone started to call me a pervert . When I was a yong child , I used to be interested in reading science fiction . First I can travel only in July because I will finish school at the end of June and I will sit my exam in Septemeber ; so I have to revise for it a lot during the month of August . I particulary liked seeing all those people , and I met a lot of new friends there . I would like to travel only in July because I would be on school holydays then and the weather is hot and the sea 's temperature is less cold than in winter . It is very nice to stay in tents wich are strong and confortable . And you need a strategie to win the match . But you ca n't play if there is too much wind , because the ball becomes incontrolable ! It looks fragil and it could break easily . It has always been my dream to go there and to be able to see that beautifull country . It will be very interesting for me because normaly I do not have a lot of time to do activities . I would prefer swimming because I really like it and I am trying to swim anywhen I have got some time , and painting because I have finished a painting course and I have some practice with this . That is very nice that all costs are paited for but I would like to ask you how much money I should take with me because I do not know anything about prizes in the U.S.A. and please tell me if I need anything to paint because it would be difficult to take it with me , so if I will need to take everything I will just change this activite . It was a realy wonderfull new experience for me . The people were wonderfull , they were helping each other with everything and it was a lot easier to do . I am writing to you , because I would like to disagree with your advertisment for the show ' over the Rainbow ' . As it is said in the advertisment the show starts at 19.30 but I had to stay outside for 45 minutes , because according to the programme it started at 20.15 , but that is not the end of the story ; in your advertisment it is clearly said that you have discounts available on tickets . That was not true ! I was still not very disappointed , because I hoped that I would have a good meal with a glass of wine in the restaurant , which I could have according to your advertisment , but what I did not realise , it was closed , because the chef was in hospital . Such as a mobile phone that helps me to communicate with anyone in the world , even if I am not at home ; I use a stereo if I want to listen to my favourite music ; I use tapes , CDs , hairdryers , ect . Many years ago people did n't have an oppotunity to use all these things and they had to work a lot . This is just a note to confirme for you that I have recive your letter . To answer your questions , I would like to tell you that I can only travel in July , because I will be studying for the Cambrigge exam till 1 July . Would it be possible to have accomodation at Camp California in a tent , because I haven't had a chance to sleep in one . And would it be possible to do swimm and surfing . I have been driming about this activitie since I was 10 years old . I would like to know how many peopl will stay with me in the tent , and do I have to take with me any special clothes for surfing . I look forward to beeing at Camp California in the U.S.A. I think going shopping in a big spaise like Harrodss is not a plesure . I like to be in small boutiques , and I would rather go shopping along and during the weekand . And going shopping after the weekand is not for me . I would like to travel in July because I am a studant so I only have holidays in this part of the year . About the acomodations , I would like to stay in a log cabin because I am used to staying in them when I travel . Sometimes , shopping can be really boring , especially on important dates when the shops are absolutaly crowded and you ca n't see anything you wanted with carefull . I received your letter this morning . Thank you very much for your kind letter and for chosing me . I have knowladge of navigation , engine , ropes and knots , and sails as well . It was a nightmare , there were pickpokets in the shop . But you must always be on your guard against pickpokets . I am only able to take my holidy in July . The rest of the year I work . I 'm crayz about tennis and swimming . Can you imagene Friday night ? You have worked hard all day . On the way home you want to pick up some milk from the shop and you have to waite ten minutes on average . There are a lot of options and items to make our choice difficut . After shopping you have to carry a havy bag a long way home But the situation was n't simple , so Hill decided to discuss it with Mary , the teacher 's cousine . I would be grateful if you could put me into the tent side of accomodation because I have had all my holidays with my parents in luxury hotels . Pat entered the fight , and it became more loud and agressive . I went to London to see this musical but I was absolutely dissapointed by the show . It was about 21:00 , I thought it was a bit later but it was n't my falt anyway . 100 years ago , people dressed diffrently . The enviroment will be very polluted and finally we 'll get desease . We will need helmets to cover our heads and we will also need air - supplyer . Maybe , science will be developed and make our enviroment clean , and we will not wear anything at all ! ! ! ( except underwear ) . I hope that the enviroment will be better than now in the future and our fashion will be changed but nobody knows how it will be . The advertisement promised there would be my favorite star , Danny Brook , but there was another actor who could not play his part as well as Danny Brook . In addition , the performance started 45 minutes late , so we could n't visit your theatre restaurant after the show because it was closed already . So I am sure you will understand why I am so annoyed and frustrated with the whole incindent . Two days before , her best friend Maria told her that her parents were going to devorce . Maria was so upset that she could n't keep it to herself . They could not believ their eyes . Maria had bought his favorite food and she threw it into the bin . She went to skool , but she could not follow the lessons as easily as she used to . Moreover , the theatre restaurant was closed for mentenance . In addittion , I can go to Britain by plane to see her . When I recived your letter , I could not belive it . Unfortunatelly , I will only be able to go in July because the restaurant where I am working will be closed for that month . I am in doupt as to what kind of clothes I have to bring with me . I had the best expreience in my life . Can you guess whe they chossed for the job , " me " , yes , me , I could n't belived it . My job basequily was to , before and after the actuation , make everything ready . To be honnest the most exciting part of all this was getting to know the group . Yours Sincierly , First of all I helped with the decoration of the place where the consert would take place . I am writing to you to " help " you with your festival next year . Last year was n't very good so maybe we can make it more atracite this year . First , I think we shoul rent bigger halls so that we can make a better sound and give more space for the audience ! We can inaute stars and artists from around the world who will play and prisentspresent all kinds of music like jazz , rock , classical ect . Afterwards we could let people talk with the artists so they could get to know theyr personally . If you want to hear more of my suggestions and opinions about it pleace contact me on my cellphone . Yours Sincirley First of all , it dipends what kind of school it is : Polish students have to study a lot with books and they have fewer pracite lessons , and sometimes it 's hard to get books or other things needed for studying . School is supose to be our second home but it 's not . We work hard and at the end of our education we still have nothing . I would make schools less unstressfull , with added fun 'cause that way it 's easier to learn and I would give students more chances to share their fantazy at school . Maybe the Polish system is not bad , but it 's conftyble too . I know that this letter will not change anything but you can see how compliated a Polish student 's life is . I 'm not sure about the weather in California in the daytime and in the nightime . Thank you very much for your offerring . From my point of view , your organisation has to be careful to orginize an activity . It was unpleasent for me to see different actors on the stage . In the advertisement that I received , it was written that the show would start at 19:30 but I kept wainting for it to start for half an hour . I am writing to you about my complaints about the musical show at your theater that I watched a week ago , during my stay in London . Another problem was the male actor who starred : the well - known and talented actor mentioned in the advertisement was replaced by another one , who was really very disappointing and after the performance , I visited the theater restaurant , which was supposed to be open and available for meals after the show , but it was closed . I appriciated this big news . I am very keen on photography so I definetely will choose this as one of my activities at the camp . I have got some experience already and I 'm used to any weather conditions , furthermore I simply love water sports and their chalenges . My tasks were very especifics . Its name is " Best Detective Stories of Agatha Christie " , and I really was impressioned with the coherence of the stories . It 's estimulating to read them . I 'm sure that if you listen to it you will start reading the book immediately , and find out there are many challenges in your new carreer . We are wating for your decision and we will accept it whatever it may be . The clearest example is to compare a house from the beginings of the 20th century with our houses . Both are very similar but now we have new technologies . I am writing this letter to inform you that I have recieved your letters and I am going on the trip . Every night I would like to go out of the small tent into the nice enviroment outside the tent . I was a bit disapotted with the result because I was expected to win the first prize or secound prize . At first I was surprised but a few secound later , when I relised that I was n't allowed to go , I tried to persuade my teacher to let me go . I had to keep things in place and cheakd that the microphones were working properly . I was really embarassed because I had to dance in front of a lot of people but that was the very best experience I have ever had . Tell me yoors . I want to know what experiences you had when you were in England . I would be greatful if you could include this show in your programme . This is a great oppotunity for me to explore and experience London myself , especially The London fashion and leisure shows . Most of the shows are about fashinable things for students my age . I think it is a good event and suitable for all of us because there are many different kinds of show , for instance latest fashions , leisure and sports wear , how to put on make - up and how to have propiate hairstyles . In my opionion , I think you should have this event in the afternoon instead of going shopping and move the shopping slot to the afternoon on Wednesday . I trust you to pay immidiate attention to my suggestions . I closed my eyes , tooke a deep breath and jumed out of the tower . There were hundrend of Thai students waiting to take this test . I was very afraid of the hieght and was very nervous . I was given the list of activities while I was taking part in the adventure school schems at the soldier camps in the north of Thailand . The last task I had to do was jume out of the high tower . I eventaully managed to complete all the tasks that I had been given and I was very proud of this . Suprisingly the show started at 20:15 . Of course I accepted immidiately . After school Larry and I went to the cinema , but at the enterance there was a beautiful girl waiting for us . When we arrived at the shopping center , I saw a lot of people . The task was not easy , at 18 you do n't know too much about cryptographic algoritms and databases but anyway we decided to do it . There was nothing to lose . Both of us went to the NASA university and nowadays we work for the CIA developing secure systems and new encryptation algorithms . You should n't go shopping when the shopps are so busy because it 's so annoying . You do n't have to be a genius to notice that technology has evoluated so considerably during the last few decades that our everyday life has changed . I 'd prefer to take a tent because it is more romantic and exciting to spend nights in a tent . And with the tent I can go to enougher place in the camp . And I like painting because I like to paint nature , sea , moutains . I whant to know some information about it . I 'm realy lookind forward to your answers . And I hope to see you soon . Yours sencerely Gubin . I absolutly agree with this . Because I have my own expirience of shopping . For exsample , resently I was shopping at the market , which is located in the center of our town . When I was there I saw a very beatiful T - shirt . I was abset about it . Our goverment is very burocrative . Our ministers are really criminal . They often breake the law , stealing money . Because of it our state ca n't pay workers in schools , hospetols , on building sites . In our country there is a high nomber of unemploeers . Often people ca n't buy a piece of bread . And they ask for money from enougher people . I wich that my accommodation at Camp California it must be in a tent . Anyway I enjoed it so much . I haven't been to a concert before so the atmosphier was really good . Do you remember the computer course that we took together . It was very useful to clasifay each person at the concert . I congradulate you because that 's perfect . The advertisement for the musical said that it was going to be Danny Brook . Unfortunately there was someone else - an actor who I do not like and if I had known that he was going to be there I woud not have gone to see him . In fact , modern technology was already very popular and comonly used when I was born , so I can not say that it changed my life suddenly . All these products of science are with me from the very beging of my day . On the other hand , I am aware of all the disadvantages of modern technology ; pollution and the dangarous it brings . But I think it has more advantages than disadvantages and it is O.K. I am really glad that I am a child of my centuary - the age of modern science . I am writing to answer your invitation which I have receved as a first prize winner . There are also many kinds of take - away restaurants , where I can taste my favorite foods . But there is alwalys a lot of traffic at all times , and the air is so polluted that I ca n't even breathe . I always feel very tired after the shopping because of unfrendly people who are too busy . What is more , admittion for students is free . However , we have got a suggestion : we saw an advertissement for " the London Fashion and Leisure Show " which is going to be on Tuesday March 14 from 10:00 to 19:00 . I was pleased to recieve your letter ricently . Now I 'm going to give you some information you asted about . I 'm sory to say this , but the only time I will be able to take this trip is in July , according to our team 's shudule . The next thing - I would prefer to spend all the nights in a tent , so I can move it to the place that will suit me best . I like to wake up with a view of mountains , wich reminds me of my 5 years ' experience of climbing . So , is it posible ? I would like to continue doing my favorite hobbies in the Camp . Otherwise , you will either not find what you are looking for , or you will , and spend the rest of the day in a bad mood , because of the bad maners of sales people , who do not give you advice every time you ask for it . To summarise everything , I would recomend spending less time indoors , shopping during the weakdays . You wrote ' discouts available ' but they did n't offer any discount . But it was unpleasent because of these things . Owing to all of them , I can live very comfortbly . In your letter you wrote that I will have the chance to do two activities ; first of all I would like to play tennis because I have been plaing for seven years . Secondly I would like to attend a surfing course but I have just some elementary knowledge . It will be interesting to show how the lessons are organized , saing that we are never doing just one activitie during the class . After that we have to make sure that we explain about the relationship betwen teachers and students , showing the times that we have been out together . Finaly we should give some information also about our tourism , business and computer courses . Secondly , I would prefer to stay in a tent because I enjyoi being outside close to nature . Sometimes the bad charachters in a story are more interesting than the good ones . Its title was : " The Mistery of Hunter 's Lodge " . The charachter whom I liked most was that of Mrs. Havering , the mistress . It was very exciting because she could play two people at the same time : herself and the houskeeper . First of all I would like to say that it started later than it should have . I had to wait for about fourty - five minutes . Then I realized that Danny Brook did not appear in the show , which was very disappoiting for me because I like this actor very much , and I think that I was not the only one who was upset . Yours sincerlly , They are very usefull things which sometimes are nessecary to survive . I watch about four hourers of TV a day . I even eat my meals in front of the TV . We can see PEOPLE 'S LIFE in other countries , which is very interesting for me and my friends . Also the Iternet has an influence on my daily life , beause I can find there many interesting things , or I can meet with people from all over the world , which is exciting for me . I think that life without modern technology would be simple and borring . That 's why I am using it in my daily life . I am happy that there is such a thing as modern technology . Finaly the day to pay my credit card arrived and where was my money ? All the students are happy that we will have othe oppurtinatey to visit London for three days . In the morning , we will have the chance to see some of the sightseeings of London by bus , for example , the Science Museum or the National Art Gallery . The reason I write to you is that we have seen an advertisement for the London Fashion and Leisure Show , for a fiew days . The show is free for students and we can see the show instat of having free time on Wednesday in the afternoon . Ourdays , with the help of the media , famous people , like politicians or filmstars , play an important role in our community . Who got married , who got divorsed or who has experienced a remarkeable change in his complexion , these are questions that most journalists are interested in . There were some problems that were not displayed in the advertisment . In the advertisment it was clearly written that Danny Brook and Tina Truelove would play the main roles . The advertisment said that the show would start at 19:30 but it started at 20:15 . The advertisment said that they would be available but they were not . It was written in the advertisment that I could visit your theatre restaurant after the show , but unfortunatelly it was closed . We build big cities , there is hot and cold water , electricity , gas in particulary every home . Many different uncureable diseases have appeared . I 'm writeng with reference to your letter . I was really thrilled , when I found out that I won first prize in your competition . I always dreamed about going to California and now my dreams are coming true . I 've always wanted to learn to sing professionaly , but I 've never had an opportunity . When she tried to answear me , one small child took her picture with a flash . Trully , my work here was n't very important , but I relly enjoyed it . I 'm writting this letter giving some opinions about the three days that the class will spend in London . So I 'm writting this letter , asking if you can change the programme . There is a great opportunity to go there because students need not pay anyting . Our first chalenge was stealing Dick 's girlfriend 's panties , but we failed . Nick and Dick could prove their bravure stealing their mother 's panties . " It was dangerous , but I knew I had to do it " , to prove my bravure to everyone . I USUALLY SWIM THREE TIMES A WEEK IN ORDER TO MANTEIN A BACK TREATMENT WHICH MY DOCTOR HAS RECOMMENDED ME TO FOLLOW . SO , IF POSSIBLE , I WAS INTERESTED IN THE POSSIBILITY OF CONTINUING MY ROUTIN THERE . LASTLY , I WOULD LIKE YOU TO TELL ME IF I HAVE TO BRING SOME MONEY WITH ME TO BUY FOOD OR DRINKS AND HOW THE CLIMATE OF THE CAMPING AREA IS SO I CAN PACK MY LUGGAGE , BRINGING ONLY THE APROPPIATES CLOTHES . THIS BOOK CONTAINED NINE STORIES WHICH WERE WRITTEN BY WELL - KNOWN WRITTERS LIKE RAY BRADBURY . BUT THE MAIN PURPOUSE OF THE BOOK IS TO ALLOW YOU TO FLY WITH YOUR IMAGINATION AND TO HAVE A GLIMPSE OF HOW LIFE IS GOING TO BE IN THE FUTURE , WHEN , PERHAPS THE WORLD WILL BE RULED BY MACHINES . SO , IF YOU ARE LOOKING FOR A " REALLY SPLENDID SCIENT FICTION BOOK " I WILL RECOMMEND YOU TO READ " A WINDOW .. " AND I'M SURE THAT WHEN YOU FINISH READING IT YOU WILL WANT TO READ IT AGAIN , AND AGAIN ... ! I would like to ask whather you have competitions or different activities . Do you reccomend me to take only summer clothes or some winter clothes as well ? I worked untill midnight every day . It was very enjoyable . I made lots of friends . We were together all day , painting the walls , cleaning and putting up some baloons and other stuff everywhere . Famous people must enderstand that the journalists are doing their job . Second , regarding accomodation , I 'd like to stay in a log cabin . I also want to know if I should take any money , or if all the expences are paid by you . That makes those people frustrated and they do n't enjoy theirselves . Regarding accomodation in tents or log cabins , I would enjoy much more being in a tent as I believe that is the right type of accomodation for going camping . Men tease women for being shopping addicts and for having shopping as their favourite passtime . Everyone enjoys wearing nice new clothes . However , do we really like the process of chosing them ? I 'm writing to you to give my opinion of that great festival you organiced last 21 and 22 of November . The festival was very well organiced with a lot of alternatives like concerts and dance shows . In my opinion the hall for the rock concets was too small . You have to consider booking a bigger one for next year because these kinds of events are attended by a lot of young people . At school it is completely different because the teachers do n't foregive you anything . I would n't like to change anything because we all need some dicipline to do the right things . At first my favourite actor Danny Brook did n't perform , without any explictions being given , and the show should have started at 19:30 instead of 20:15 ! ! I was sure that discouts were available because I had read that they were , but at the ticket office they did n't offer them . All this story was a secret but Pat realived it to his mother . I am writing to you because I am really dissapointed about " Over the Rainbow " which I saw the other day during my stay in London which your company organized . I explained to you every detail about what happened at the musical show and I want you to refund my money and send me an apology for what happenned there . Yours fainthfully If we create guns to protect our homes , others will use them to burgle our homes , and take advantage of the indefense people . Because I have had experiance of staying in a tent and I like it very much . In my opinion tennis is the best sport I have ever plaed . I have just finished a profesional photography course and I would like to continiew my education in this activity . I was shoked because I had alredy spoken with them and I had got two autographs . Another part of my experiance at the pop concert when we meet each other . First of all , the actors mentionned in the advertisement were not those who performed in the show . Plus , it is mentionned in your advertisement that discounts are available . In fact , no discount was given to me , though I am a student and as a student I was entitled to get a discount but I paid £ 20 because the cashier had never heard about any discounts for this show . As a student , the low priced ticket certainly athacted me a lot and gave me the opportunity to see and hear wonderful artists . Finally , I would like to make one big suggestion : you should find a place for a campsite so that people who come a long way do n't have to spend money on accomodation . Furthermore , departement stores are always looking for students who would like to work . The London Fashion and Leisure Show is an amaizing show because there are parades with the latest fashions . We could see some famous top models . Also there will be a variety of clothes either sports wear as elegant desings . I realised that my bag was outside and I went out to look for it , when a shower of stones covered the entrace of the hole . I walked alone a long distence until I found a telephone . I called the police and they ask for a rescue . When we finished at our primary school we went to the same secundary school too , but we were in different classes . And when we finished at the secundary school , I decided go to a foreign University . In my opinion , the clothes will be more colourful , fun and confortable . People will prefer to wear confortable clothes , even to go to the office . Actually , I think that the clothes will be really simplier in 100 years and I hope to be alive until then . However , when I saw it , I was really disapointed and I must ask you for some money back . First of all , Danny Brook was not there . I was very upset because he is my favorite singer and that was one of the reasons why I wanted to see this show . On the developpement , they also said that there would be a discount for students who are between eighteen and twenty - five years old but that was totally wrong because I paid the full price , which was £ 20 . I am writting in order to complain about the musical show " Over the rainbow " . Regarding the times of the performance , the show was supposed to start at 19.30 and it started at 20.15 . Nobody likes to wait 45 minutes just watching empty scenary . I was waiting for 45 minuties . You can send a letter to your friend by e - mail instead of writting it on a piece of paper and sending it by post . After that " show " we were starving and we had planned to eat in your theatre restaurand but what a surprise ! Let 's take the mobil phone . Nowadays everybody has got a phone which is " mobil " . I 'm writting this letter to complain about your fake advertisement . First of all , in your show advertisement it sais that Danny Brooks stars in the play . In the evenings before I go to bed I sit in the living room and watch TV via sattelite . When I go to bed , because there are many mosquitoss , I turn on a special machine with a battery - like thing in it which kills them . I belive that modern technology has positively affected our lives . In order to fullfill their readers ' requirements they constantly follow them . On the other hand , famous people have a point if they do not allow the paparazzi to take their pictures , because althoug they are famous they also have their private life . Your programme is very good , especially as we can go to visit the Science Museum , which I heard is very good , but a visit to the London Fashion and Leisure Show would be a good opportunity for us to see the lastest fashions , leisure and sports wear , make - up and hairstyles and it is free for students too . I climed up the tree . It was badly hurt . My friend rushed to me , then ran back to my house and called Mom . Mom came in , looking very angry . I prayed for a short conversation . I want to complain about your advertisment for the production ' Over the Rainbow ' ; I had a very disappointing evening . Yesterday when I arrived at college , I saw Pat standing with Peter and a lot of other boys and they were looking strangely at me and laufhing . People started to whrite things on the board and to point at me . It is a great failing of responsability for a theatre like yours to have a delay like this one . Finally , the restarant where I would have liked to have dinner with friends after the show was closed , contrary to what was announced in the advertisement . I 'm writting to answer your questions but , first of all , to thank you for the prize . I would like to travel in July because it is the school holliday here in Portugal and I will have the entire month to travel , so I have no preference for which weeks . I 'm looking forward to receving your letter . I have to say that I am realy disappointed with your advertisement because you mentioned some points that are not true . Secondly , another ploblem was the starting time . According to your advertisement , the play starts at 19.30 but instead it started at 20:15 , this is almost an hour 's delay . The simpliest example of modern high technology is the introduction of the computer - better known as the PC . Reserches has shown that almost every single household owns a PC . Some people use them for their job because they need it , but others , like children , use it just for fun . Other examples that may not look like huge technological miracles are the TV , the microwave , the video , the satelite dish , the CD player and hundreds of others . All thease play an important role in our daily life without us ever understanding them . Those things can and do make our lives easier and more comfortable , but they take us away from our friends , our families and moreover they lead us to madness and cut off any relantionship with everything that suround us and keeps us alive . I think that is going to be more confortable for me due to the fact that I am very sensitive to changes of temperature and I ca n't take the risk of catching a cold because , as you know , I 'm going to start to work . How are you ? I 'm fine and I am writting to you because I know that you want to know about my experience at a pop concert ; I have to tell you that I did help there and it was very hard work . You ca n't imagin all the work that goes into preparing a concert . I am writting to you to complain about the last Saturday evening performance at your theatre . Finaly , I want to know what the weather is like in California in July . The teacher uses video and pictures to teach students about festivals , sports , museums , ect . Basketball is the most popular activity , whick takes place between 4:30 pm - 6:30 pm from Monday to Friday every week . I have recieved your letter and I am so glad I have won the first prize . I have been practcing tennis for 2 years and I won the Under 16 's U.S open tournament last summer . I 'm writting to complain about your theatre and its show last night . Firstly I would like to say that I was very dissappointed with the show and that I did n't have the perfect evening out , as advertised . The main character of the musical show , who I 'd like to say was n't the " BEST " , was awfull . And then , when I arrived at the theatre , I expected to have a discount but unfortunatly I did n't . On top of all this , the theatre restaurant was closed because the shef and the waiters were on holiday . I was very dissappointed , what else can I say . It was supposed to be my perfect everning out . In conclusion , I 'd like to recoment that you should first know what you have to offer and then advertise it . Yours sensirly Unfortunately , Pat was n't very good at keeping secrets . I should n't have told her that my dad had physcological problems . All these years I believed that my father was killed in a car accitend . When one day Pat came over to my house , we started arguing about ordinary things and during our fite the subject of my father and his problems suddenly came up . Pat started shouting and screaming , saying what was realy going on . Also with weekend shopping , you ca n't find somewhere to sit down comfortaly to have a cup of tea . According to your advertisement , it stars DANNY BROOK and TINA TRUELOVE , but surprisinggly , was proformed by a different actor of whom I did n't even know the name . Nowadays , we use a lot of modern technology both at home and in the office but it has its aventage and disaventage . The first and most important thing is that modern technology has made our life easier , for instance the rice cooker is a great invention , all you have to do is put rice in it and switch it on , it makes cooking more effeciently . Furthmore , we use the computer and telephone a lot . Mankind became more and more clever and built wonerful things thanks to his thoughts and his hands . Although there are new machines etc , medicine makes many discoverts thanks to research into different diseases in order to make the population live longer . I have won the first prize ! I am extremly happy about this . I can only take a holiday in July because I am going to start a new education at the beginn of August . Staying in a tent will remind me of an unforgottable time . Given the circumstances , I would like to learn more about Photograhy and painting . Is it possible to pay by credit card or should I take travellers ' queckes ? I applied for a job at the ticket office because I hoped to see a lot of diffrent people . I had to prepare the ingredians for every meal . That meant I had to read the recipies very carefully . I am writing to you to complate about the show " Over the Rainbow " at your theatre " The Circle Theatre " . I am deeply disapointed with the service and the unrealiable information at your theartre . I am very disapointed by this . You also mention that your show would start at 19.30 but to my knowleage it started at 20:15 and that meant fourty - five minutes of waiting . It also mentioned other services would be availalde to the adicne . For Example there were no discounts available and the theatre restaurant was closed after the show , when it was meant to be open after the show acording to the advertisement but it was closed dure to the delay with the preformane . And I would like a refun . You have wasted my evening and money . Synethetic have been created by scientis . Clothes are now mass - produced and desing by desingers . Desingres are unique in a way but their desings are sometimes more a pirce of art and not for everyday perposoe . It is hard to imageine what people will wear in 100 years ' time , because since the 1900s clothes have reduce into smaller item and more preticle . Maybe it would contine reducing in 100 years to come . Scinetis might discover a new way to make clothes more fixalde . It would provide you with a new type of material to cover your body and you could chosse what you want to wear by pressing bottons . This would be very easy to mantage but it would mean no more shopping for girls . It would be scarly to live in the new 100 years , but it would be interesting to see what will happen . The next thing is that I would prefer a log cabine . I was responsible for the advertisments and I also had to invite the " important people " from our governement . It was realy a new job for me , but I think I did well . There were two other problems : there were no discounts , contrary to the information in the advertisement , and the theatre restaurant was closed because of the repairement work . However , she definetely deserved to have a private life as a citizen . Thank you for your letter and for having informed me about the results of the competition . I also want to congratulate you on your exellent competition , thanks to which I have the opportunity to go to California , a place that I always wanted to go to . About the trip , I think it would be preferable to do it in July , which is a holiday periode and so I wo n't have any special obligations . Spending a lot of time in the same place in my opinion is the worst thing to do , specialy during a holiday ! Any little tournaments of this kind would be greateful . Moreover instead of bying a ticket I went there for free , as a helper . The pop concert was exellent and I had a lot of fun . I AM WRITTING IN ORDER TO COMPLAIN ABOUT THE SHOW THAT YOUR THEATRE PUT ON . I WENT TO YOUR THEATRE WITH THE IDEA OF HAVING A GREAT TIME . UNFORTUNETELY , THINGS WENT VERY WRONG . SECONDLY , THE SHOW WAS SUPPOSED TO START AT HALF PAST SEVEN IN THE AFTERNOON , BUT IT STARTED AT QUARTER PAST EIGH , THAT IS FOURTY - FIVE MINUTES LATER ! IT IS ALSO ADVERTISED THAT THERE WERE DISCOUNTS AVAILABLE . HOWEVER , THAT WAS ANOTHER LIE . LASTLY , AFTER THAT AWFULL EXPERIENCE I TRIED TO VISIT YOUR THEATRE RESTAURANT , OF COURSE , I COULDN'T DO IT BECAUSE IT WAS CLOSED . UNFORTUNETELY , PAT WASN'T VERY GOOD AT KEEPING SECRETS AND I DISCOVERED THAT TOO LATE . THE CONCERT WAS PLANNED FOR THE FOLLOWIN FRIDAY , WICH WAS THE DAY AFTER MY TEACHER GAVE ME MY MARKS . Dear Mr. maneger of The Circle Theatre : Could you , if we may ask , reorganise our visit to the museum and also to the shopping center . Perhaps we could spend our free time at the museum before going to the shopping center . Whateaver you do , journalists should not follow you every second . The problem is that most of the advertistment was misleading . But the main reason for my complaint , is that in the advertistment it was said it would be my perfect evening out , and it was not . And the best thing is that it entertaints me alone or with people . I have just receised your letter and I thanck you for your invitation and congratulations . As regards accomodation , I prefer a longer , Canadian tent in a quiet place because I am fond of nature and I would like to feel free in an informal setting . I like competitive and changelling sports . I enjoy comparing my skill with other players and , if possible , I would rather not do indoor sports activities , but open air ones . I have given a questionnaire to other students in my class to know their preferences regarding this choise and we all believe that the first lesson that should be filmed is philosophy . The reason is that all students are interested in it and the teacher is so good at explaing problems that the whole class takes part in discussions about specific aspects of the subject . Also the sports activities should be filmed ; they express an aggregative and social way of living school life and can be useful to show the moviments of the bodies during the school athletics events . The dancing lessons should also be filmed , especially because of the fascinating beauty of the girls and the elegance of their moviments . We were interested in seeing the actors that appeard on the tickets and I was very disappointed when , in the show , we saw other actors . I am looking fordward to hearing from you . I 'm looking fordward to hearing from you . I have just recived your letter and I 'm very happy because of it , especially becouse the competition was so hard . Being at Camp California was one of the dreams of my life and now I can relaized it . However , about accommodation , I 'd prefer a log cabin , becouse it is more confortable than a tent . Firstly , I was very embaracing during the concert , but all the staff were very kind to me and Tom too . THE HISTORY OF THE HUMAN RACE IS THE HISTORY OF WORLD CONQUEST . THAT SAID , TECHNOLOGY HAS ADVANCED CONTINOUSLY SINCE THE BEGGINING OF MAN 'S EVOLUTION . FURTHERMORE , DURING THE LAST TWO CENTURIES , THERE HAS BEEN AN ENORMOUS TECHNOLOGICAL EXPLOSION . WHILE THE XIX CENTURY GAVE US THE STEAM ENGINE , FACTORIES AND THE ELECTRIC LIGHT BULB , THIS CENTURY HAS GIVEN US NUCLEAR ENERGY ( AND SADLY ATOMIC WEAPONS ) , THE COMPUTER , THE INTERNET AND TELEVISION . I 'd like to tell you that the best month for me to travel to the U.S.A . is July because I will be on hollidays in that month . I do n't really worry about the accommodation at Camp California , but if I can tell you wich one I prefer I 'll choose to stay in a tent . The concert was in a massive club and the tickets were sold out . Marevellous ! Two days before I read an advertisment for this show , which said that Danny Brook was starring . Apart from that , the show started at 20:15 , not at 19:30 , as it said in the advertisment and the theatre restaurant was closed when the show finished . When I went to my bedroom I reliased that Pat had told my mother about the party , because no one else knew that my mother did not know that . I am writting in order to complain about the musical show , the name of which is Over the Rainbow , which I saw in your theatre recently . It was a pitty but it did not annoye me because I thought that the musical was good enough to pay £ 20 for . After the show I decided to go to have a coffee and to smoke a cigarrete to try to calm myself and suddenly I could see that the restaurant was closed because it was the barman 's day off . I am very indignatged because I wasted my time and it was a horrible evening so I would like you to return my money and take note of all these problems . Maybe it would be a nice idea to analize these changes and to put limits on technology , because I think that the most important thing is to understand our life and know the ways we can improve it . Firstly , the show did not start on time but fourty - five minutes late . This actor was not nearly as brilliant as Danny Brook and I would not have paied so much money if I had known this before . The worst thing of all was that at the beggining of the show I realized that the actors were totally different from the ones advertised . They were worse than the previst actors . They believe that people in the future will wear confortable clothes because they will be outgoing , amusing , etc . And people will wear cibernetic clothes but at the same time comfortable clothes . I recived your letter recently , and I am really happy to learn that I have won the first prize . About the acommodation during those two weeks , I would rather stay in a log cabin , as it is really difficult for me to stay in a little close room . I had an induction climbing course two years ago , and I still climb regulary . I can do a V+ level climb . Going out to spend a day shopping is something very popular . The shopping centers are always busy , with people going up and down carrying bags and looking in shop windows ; it seems everbody is happy . To sum up , shopping is not always enjoyable , but do n't worry , the shooping center is still there waiting for you ! I can only travel in July because this is the mounth when I have holidays . I 've already talked to my manager , and she said that that 's the only mounth I can have my holidays . I 've been playing tannis since I was seven , and I 've been studying how to play tannis for a very long time , nine years . You know how good I am at music Anyway I was helping at this pop concert to get the corect sounds . At the bigging I was conecting all these wires into spekers , music system , guitars etc ... The bit that I particularly liked about the experience was when I was standing next to the singers and playing a guitar - you know how much I love playing guitar - and all these video cameras were just filming us . I asked one of the cameramen when they 're going to show this show on tv , and he told me they 're going to show it on the 10 of June , so turn on your tv on this date , chanel three , and you will see me there playing this guitar . AH , it was lovely . What I realised was they were not different from any of us but they were called celebreties . I particularly liked listening to their musicians when they played the piano , clarinet , drums , violen etc . Pat promised not to speak to anyone about the car , but one evening Philip overhead her speaking about this with her boyfriend : " It will be delievered on Thursday ! Furthermore , the show started at 20:15 while the advertisment said that it was going to begin at 19:30 . I am very surprised that such a reputable theatre like yours has been able to break all the promises that were made in the advertisment . Of course , what was going to be a perfect evening out turned into a very disappointing evening , and I would be very greatful if you could refund me the price of my ticket . Sciencist will invent new materials that will keep the body 's temperature in a suitable range . For that reason clothes will be simplier and more practical . Of course , the resources used and the manufacturing will be completely harmless for the enviroment because people will be more aware of the neccesity of taking care of the world we live in . And it 's all the more tyring since you often wait for two weeks before getting it . I think that this tendence will not change but what will change is life . With regard to your International Arts Festival advertisment , I would like to share with you the pleasure I had to be part of the event and make some suggestions for next year 's festival that you might take into consideration . In your advertisment you mentionned that there would be artists and stars coming from all around the world , unfortunately I found out only six countries were represented . The night he came into this world was one of grater for the habitants of the country and also of the town where he was born , it was an ordinary night . To begin with , according to your advertisement , discount tickets are availabe . The tickets were rather expensive , and the discounts mentionned in the advertisement were n't at all available at the theatre . Pat was my friend , I trusted her and we got on very well untill she repeated to everyone the secret I had told her . Regarding accomodation I 'd prefer to sleep in a tent becaose I like beeing outside and hearing the noises of the sea . a maths lesson , an English lesson , a swimingpool lesson , the break and the staff room . - We could show the activities of the students during the break . For exemple , students who play football or volleyball . We could find out what this room is like and what the teachers do in this misterious room . I can be closer to nuture and I have never used tents before . My parents were very pround of me . My hands were sclumbling but I did it very well . I 'd like to say something that I felt during the festival , and give my opinions that would be helpul for you to prepare for the next festival . People belive that the bird was sent from heaven . So I am going to ask for a refund ... I hope this is n't affending you too much ... When it comes down to color , I think it 'll be much brighter and maybe glittery . Colors to match the clothes . First of all , I would like to thank you for doing such a good job organising the competition which I luckely won . I have been really very impressed . In fact I will finish my university exams only on the first of July and after the 20th it is impossible because I am going to do four weeks ' volontary work in India for UNICEF . If it is possible I would prefer to stay in a log cabin , because , in spite of my love for nature , I am terribly allergic to pollins . Thank you very much for your attencion on my behalf Why have so many people been infected by this " psychologic virus " ? We are always trying to have more things , which lead us to neglect our family , our future , and other things which are probably more important than a new perfum . Maybe you think I am exaggerating but recent studies prouves that this mania can be really dangerous . Certenly only the fact of having something can help people to be more sure of themselves . Probably when Oscar Wilde said : " Superficiality is the suprem vice " he was right . You can not imagine our disappointment when we realised that the show had been posticipated to 20.15 instead of 19.30 and that the restaurant was closed because of repair work ; as a matter of fact , after the show we only ate a hamburger in a fast - food restaurant . She was so angry and felt so betrayed by Mr White that without any exitation she went to the school Headmaster to report everything she had seen . I have just recieved the letter , which lets me know that I have won the first prize . This is because I intend to take an examination in Septenber . And recently , I have been practicing tennis as a school activity . The reason I enjoyed it very much is that I could meet the vocalist during setting chairs just before they started practicing . Can you send me a letter back writing what happend to you recently ? Finally , what kind of wheather is waiting for us ? Surprisily , there were no discounds . She just remembered it ought to be a secret , and she became really embarassed . I swim really well and I am a proffesional basketball player . It all started when one of the organizers asked me to help him at a concert of my favorite band . I am writting to you about the show . The woman who sold me a ticket was very roud to me , actually she started swearing at me . They were just playing and , by acsident , Peter shot him . He promised to keep it secret . The next morning we had an arguiment with Pat . The 3 of us were shouting at each other . In short , Pat left us . Secondely , I am interested in trying something that I have never done , so I would like to do sailing . First of all I have to say that the whole festival was a greatful success and I also think you chose an appropriate title for the leaflet . Nearly at the end of this letter I have to say that the idea of the weekend ticket was really good because it gave the people the opportunity to attemp for a whole weekend for a cheap price . I am writing with regard to your advertisment . It was my favorite musical . I was very hopefull that I was going to have a good time . The worst thing is that I could n't see my favorite actor . I was so dissapointted about that . I could n't consentrate on the play any more . In contrast to the advertisment everything was disapointing . These days we can use a computer , television and some sophisticated equipment , which were unusuall once . Children play with computers instead of the usuall toys . There has been a change in the relatinships between people . We have noticed the environmential damage in recent years . I think this festival is a great idea because it 's an opportunity to see and to appreciate art , but I also think there are some things thas could be changed . I noticed that the artists were from only six countries insted that from around the world . This choice does n't give many artists the opportunity to expresse themselves . I hope that my opinion can help you to organize for next year a great internation arts festival alone to young people . I am writing to complain about a musical show on the 10th of June , and I was very disappinted . I was promised that the star was Danny Brock but when I was there I saw another star that was completely different from your brochar . According to your brochour , the show would start at 19.30 p.m. but it started at 20.15 p.m. I wanted to sleep and it was very anoying . I was promised that after the show I could go to the theatre restaurant but due to the show starting late it aslo finished late , therefore , when I went to the restaurant they were deffinately closed . I have a really good freind , Pat who I trusted and counted on . One day , I fell in love with my closest freind . We were stedy in the same class at school and he also knew Pat as well . Personally , I wanted to keep it serets because I was afraid that we might split up . And I would like to make sure that he relly loved me . My boyfriend told me that he wanted to surprise his freind in his class when the time came . One day I decided to tell my best freind - Pat , who I relied on . I told her everything abat my boyfreind and when we met each other and evertauly fell in love . On Monday morning , I walked into the class and all of my freind were shouting at me and calling my name and my boyfreind . I was very ambaressed and I wanted to run out of the class . I recived your letter and I am very excited about the camp . I would like to go in July , I do n't mind wich two weeks , but it has to be that month because in June I am still in school and in August I am going on holiday with my family . I would prefer to sleep in a tent because I think it 's different from where I sleep every night so I would apreciate it if there are still tents available . Here is where the good part starts , I was doing the courtines ( opening and closing ) when Nick came up to me and asked me to go on stage with him . My heart started beating very hard . DANNY BROOK is one of my favorite actors so I decided to buy a ticket even though I had to cancel my apointment on that day at 18.30 and aslo notice of price discount impressed me . However , when I got to the theatre , you not only did n't have any discounts but also had to apologize to us for the dalay in starting the musical . In addition a different actor appeared on the stage and I could n't have dinner after the musical because the restrant was closed . It made me so dissapoint and angry . You should return my money immedeastry because that night was far from parfect . When all the money had gone from a bank , nobady was there except Pat . Then the police realized who the bank robbers were and arested them . I 'm writing to answer the questions that you sent me in the last letter , so referring to the question of when I would like to travel , I would like to go anytime during July , because I have to be back home in August , because I need to apply and get everithing sortted out , to go to college next September . And referring to the question about wich type of accommodation I prefer , I choose a log cabin , because I think that a tent is messier , so I would appreciate it if you give me a cabin . And my answer to the question about wich activities I would like to choose , well I choose swimming , because it is my daily excercise , and surfing . And well , Mrs Helen , I would really apprecciatte it if you sent me back a letter with all the answers to my questions . Yours trully Well here in Dublin things are still the same , but I think somebody told you that I went to the Moby concert here at the Point , wich is the big venue for events and concerts . I guess it was the best concert I 've ever been to , but the coolest thing is that , well do you remember my friend Luke , the one that works as a security guard ? Well he told me that they needed people to put everything on the stage , so I went to help them and everithing else , and when I got to the Point , do you know who was there ? Can you believe it , it was Moby . So I went to say hello to him , and he asked me , ' Would you give me a hand with my decks ? ' So I went , and when we finished he gave me a T - shirt and a gold pass to see the concert from the first row . Oh my God , Kim , that was the best thing that ever happened to me . Well Kim , I hope to recieve a letter from you soon , and please tell everybody about the Moby concert and everything , thank you . It is wonderful for me to have the opportunitie to visit Camp California in the U.S.A. I think this topic is so exciting from the antropological and psicological point of view , because we can studie the subject 's reactions before , during and after shopping . For men and women appearance is important and they spend a lot of money buying clothes , cosmetics , accesories , jewellery etc . I think in the near future we need to decide with the goverment which special place in the town will be lefet just as a comerical area , but of course with all the facilities to get there , like a big supermarket and mall centre , from different areas of the city . IN ADITION TO THIS , I DID NOT HAVE ANY DISCOUNT ON MY TICKET . Firstly , the actor was supposed to be Danny Brook , but he was not , it was another actor , who I have never seen before , so , as you can imagen , I was very disappointed . Maria talked to Pat about the stupid thing that she had done , but Pat refused to apologaising to her , because she felt it was n't a mistake and she did it for only one reason : to help Maria to get the man that she loved . First of all , we would like to thank you very much for organising such a wonderfull trip with an interesting programme . It is a coinsidence which we would be extremely happy to take advantage of . This is a great opportunity for us to see the latest fashions and famous fashion models who we would like to have authograps from . I personally think the best would be to put the celebrities in cages and let people touch them , point and ask for authopraps . It may , in many cases , not be true but we can suspect that most of them wanted to become a celebrity and they had to know there is no private life unseparately contected to it . The purpose of this letter is to congratulate you on the International Arts Fesival I attended last weekend . Firstly , I would like to tell you that the idea of organizing an International Arts Festival is fantastic , but in your advertisement it said that I would find stars and artists from arround the world , when , in fact , they were from only six countries . Secondly , I belive you should know that a lot of people , including me , were not able to enjoy the concerts because some concert halls were too small . Last but not least , I would like you to know that I think the idea of the weekend ticket for all events was excellent because in the end it was cheaper than paying for each event separatelly . Another way our home could be different in the future is probably the utilitles we will be using . This is because people wo n't give up the great taste of food . Although it could be subsituted with a vitamin pill or two . Lastly , I think that all these changes wo n't really be noticed as we change things daily and slowly instead of abruptedly . Some people think that being a famous person is a very excuiting thing , that all the time this makes you feel complete and also they think that if you are famous you are special as well . I believe that if somebody wants fame and glory he must be tottally clear about the results . Another succesfull carreer such as , film stars must also be balanced . If somebody wants to be famous of cource they must be on the top and the mass media will be following him or her . It does n't matter what kind of carreer or job you have . Firstly , I 'm writing to thank you for the great opportunity you are giving us , especially in planning all this programme in such an acurate way . Also , this show is free ( another positiu point ) . I mean I do n't think we 'll change cars into aereoplanes ... In conclusion , I strongly believe that the house of the future will be the house of a new awareness . It will be a very positiu point for opening up our lives . Technical and Warm Home People 's way of life has been changed considerably by rapdily developing mordern technology . Since the eletric fire and microwave oven had been invented , their lives have been far easier than before . I was enthusiatic about receiving your letter . I will give you all the necessary information . You ca n't imagine how many people are involved in the organization of a concert . Apart from the musicists and the singers , there are people who work with lights , who organize the security ... it was so exciting ! I 've recived your letter and I am pleased to have won because I needed some days to relax and to leave the city , which is very extressing . I can travel in July only because I am working in an office and I must ask my boss for a holiday and it 's the mounth he can give me one , so I hope that is n't a problem for you . I would prefer to spend the two weeks in a tent , that 's , in my opinion , a way to be nearer the enviroment and the animals , although I do n't mind staying in log cabins . To sum up , everything you do in small cuantities is good and fun , but do n't encrease the amount you do if you do n't want to feel uncomfortable . Well my friend , I have to go , because I have got an appoinment with the Dentist . How much mone do you recommend me to bring with me ? While we were in Florence my wallet was stolen , probably by a gypsie . I had to buy my dress , its accesories and also clothes and souvenirs ! Thank you for choosen our ticket at the final . It would be great if we could choosen swimming and golf . Finally , we would like to know when you will send us the airline tickets and the tripbrochure . You are interessted in my last job ! I really want to tell you all about my experience . In addition , it was nine days of hard work to mount all the different spot and houndreds of Coblights in the right place . Finally , we worked the hohl night befor the concert . We had to adjust the laser extremly carefully to get it in the correct position . Finally you said there was a Restaurant , but it was closed , so we could n't eat anything untill we got home . I have choosen these activities because these days I am playing on the university team , and photography is my favoorate hobby . Is it necesarilly to bring any money ? I am writen to you to tell you about my experience at a pop concert . It began when our mutual friend Martha ofered me the chance to help organise the concert . Obviously I accepted . Now I can tell you that it was an amaizing challange for me because I had never done anything like that . My duties as a staff member were various . The firts day I had to pick the bands up from the airport , and for this I hired a van . I am very disappointed because the things that were writen in the advertisment were not really true . It was writen that the stars would be Danny Brook and Tina Truelove . Danny Brook is one of my favorite actors and there appeared a different one . I felt very disapointed . The musical should have begun at 19:30 , but it started at 20:15 ; this is inacceptable ! As you say in your advertisment , it was not my perfect evening out and therefore I would like to have my money back . On the other hand , the main disadvantage is that using modern machines can be very difficult for ederly people ; it would be very pratitable if the modern industries trained people to use modern technologies . I 'm writting to you to thank you for the excellent programme for our English class in London , especially for the river trip to Greenwich . It will be a great experience for us . But the students in our class have seen an adverstisement for the " London Fashion and Leisure Show " , which will take place in the Central Exhibition Hall , London , on Tuesday March 14 from 10.00 to 19.00 . At the same time we have to go to the Science Museum but we would all like to go to the show . Please let us know as soon as you make your decission . This book helps us to impove our logic , mind , and memory and it teaches the reader not to lie , to be more honest with other people and pay attention to the smallest details in our life because sometimes that can help us very very much . In fact , shopping can have some disavantages for different reasons : It became scencial to doing my homework . The place I 'd prefer to stay in is a log cabin , where I 'm sure I 'd feel more confortable than in a tent . I think I 'm not bad at painting either ; at least everyone in my family likes my work , includying myself . If it is possible I want a log cabin for my accommodation because I have been suffering with my back since my childhood , therefore I need a confortable place to sleep . I selected swimming because it is a cure for my backace and I have not done it since I started my new job five years ago . On the other hand , shopping can be disenjoyable . Peter and Sue asked Francis for some help with their exam subjets and Francis , all week , was too busy to help them . I looked at her and she became pale and suddently left the class . Recently , some students have seen an advertisment about a fashion and leisure show in London . It will be on the 14th and we all want to go . So , it would be greatful if you could give us this opportunity to watch the show . At that time he was unconcious . I kept asking myself ' Should I wake him up or try to use my dubious first aid skills to help with him . " Can you please give me some recomendations about the clothes I will need and also the cost of the food there to plan my budget . I start thinking about what she or he prefers and I try my best to buy something apropiate no matter how much money it costs . In conclusion most of the time that you spend shopping you put a lot of effort into choosing things and making decissions and they are more or less important , or more or less enjoyable depending on what , why , where and who is the person that you are interested in pleasing . I AM WRITING WITH REFERENCE TO THE LONDON TRIP WE ARE MAKING PRERY SOON . WE ARE REALY INTERESTED IN THIS SHOW . WE THINK IT IS A GREAT OPORTUNITY , BECAUSE AS YOU KNOW , WE DON'T HAVE ACCESS TO THAT KIND OF SHOW IN THIS CITY . IN CASE YOU DECIDE TO CHANGE THE PROGRAMME , WE SUGGEST GOING TO THE SHOW ON TUESDAY AND ON WENSDAY , INSTED OF FREE TIME , VISITING THE SCIENCE MUSEUM . YOURS SINCERLY , I WAS LIVING QUITE CLOUSE TO PORTOBELLO ROAD BUT I DIDN'T KNOW THE AREA VERY WELL BECAUSE ALL THE TIME I JUST HAD TO GET OFF AT THE COURNER OF MY STREET . BUT THAT DAY , AS I WAS KIND OF DRUNK , I DIDN'T REALISE THAT THE BUS TOOK A DIFFERENT ROUTE . SO , WHEN I NOTICED IT , THE DRIVER WAS ALREADY ASKING ME TO GET OFF , BECAUSE WE WERE IN THE GARAGE IN PORTOBELLO . I TOLD HIM I DIDN'T KNOW WHERE I WAS , BUT HE JUST SEID SORRY . I WAS REALY SCARED . THERE WERE SOME PEOPLE AROUN BUT I WAS AFRAID TO ASK THEM THE WAY . AFTER FILLOWING HIM FOR 10 MINUTES , I STARTED TO RECOGNISE THE PLACE , AND I WAS FEELING MORE CONFORTABLE . Definetely , it was a very disappointing evening and I would appreciate it if it is possible to have my money back . I thought that Dany Brook , who is my favorite actor , would perform in that show . Please , if you would be so kind correct this mistake . I would be gratefull if you could correct too that show starts at 20.15 not on 19.30 . Another thing was that there were no discounts available , and that the restaurant , which I wanted to visit after the show , was closed because of the main cook sikness . Unfortunately , Pat was n't very good at keeping secrets . I knew that he 's a very talkative person , but it was nessesery because I wanted him to be the main organiser of that birthday party for tenes . I made beautifull invitations for all of Agatha 's friends with a note : " Do not tell Agatha about this . This is a suprise party for her . Please keep the secret ! " Pat arranged a great DJ and drinks . My friend and I made the perfect decorations with ballons and other party stuff . It was so exaiting ! ! ! Enyway the disco was great , music also . And your last festival was very intresting too . But also there are some notes that you should improve in next year 's festival to make it absolutelly wonderful . I think that one reasonably - priced weekend ticket for all events is an exellent idea because it is n't so expensive as buying a ticket for each event , and with this ticket you can visit everything you want . So the main rule in our school is regarding theachers . I have choosen as my activities surfing and photography . How is the wheather in California ? Afterwards , I felt tired and unsatisfy with the store . I 'm very happy that I won first prize in your competion . I can come to USA in July becouse in August I will be working with my father . You offer a great veriety of activities . I have qustions too . People alwas queued for stuff from the west . Nowadays we have capitalism , free market , lots of privete shops , markets and supermarkets . They are imported from enother Western European country . I apprieciate these shops for lots of products , cheap prices and big spaces . On Friedy evening and on the weekdays all supermarkets are crowded . I am writing in reply to your letter in which you told me I have won first prize in your competion . Now I am answering your questions and then I would like to know some further information about travel and accomodation . For istance , it is fun to enter a clothes shop and try on a skirt or a T - shirt although you do not buy anything . CONCERNING THE ACCOMMODATION - PLEASE BE INFORMED THAT I WOULD PREFER THE LOG CABIN AS IN THE MEANTIME I SHOULD WORK ON MY LAPTOP , PREPARING SOME FINANCIAL REPORTS SO ELECTRICITY WILL BE NEEDED . I THINK THAT THE LOG CABIN WILL BE MORE COMFORTABLE OVER ALL . REGARDING TWO ACTIVITIES - I HAVE CHOOSEN TENNIS AND PHOTOGRAPHY . PEOPLE LIKE DOING SHOPPING ( ASPECIALLY IN POLAND , WHERE MANY NEW AND MODERN SUPERMARKETS HAVE BEEN OPENED ) LADIES PREFER TO VISIT UNDERWEAR SHOPS OR DEPARTMENTS IN HUGE HIPERMARKETS AND MEN ARE HAPPY WHEN THEY CAN BUY SOMETHING NEW FOR THEIR CARS , MOTORBIKES OR COMPUTERS . ANYWAY EVERYBODY SHOUD DO SHOPPING AS PEOPLE NEED TO EAT , NEED CLOTHES AND MANY OTHER IMPORTANT THINGS TO LIVE . Furthermore , I prefer to do painting and photography as my hobbies and my fasinative for art and enjoy taking photographs of wildlife . Sorry I haven't written to you for such a long time , but I 've got a good excute ! What a surprise ! And unbelieveable , I was responsible for looking after the pop stars . But , I got through it . I had to take care of them during the break , serving drinks , clothes , I even brought them some cigaratte and anything they wanted . What I most appreciated was that they gave me their latate CD with their signatures . Marvellous thing ! And of couse , as you have seen , I 've given one to you . I 'm sorry but I am very dissapointed with the show . We arrived on time but the show was delayed untill half - past eight . Moreover , we were n't given any disscount for beeing students . Maybe the eason for that is very simple : lack of money ? It may sound funny , but mud , gravel and snow lying on the school floors is not a nice sight , so we change our schoes without questioning that rule . Also , in Augost I will be studying a summer course in English . Also , I felt wonderful when I saw that the concert was a success and every day it was croweded . All the students would be very greatful . We call home the place where we live or the country where we come frome . Working long hours , doing plenty of activieties , going out , going on holidays . Propably in the future we may be too busy to go to our own home and spend some time there . Finally , we went to the restaurant in your theater after the show . It was closed because of the staff trainning . It is believed that our lifestyle has been changed by mordern technology such as computers and washing machines etc . First of all , dishwashers are very effecient for me because I work full - time and look after my children . In my opinion , morden technology makes our life easier . Unfortunately , Pat was n't very good at keeping secrets . That was why our great plan for our horiday was not be real . It happened last summer . We planned to go on holiday in the Southen part of Thailand by motorbike but we could n't tell our parents because they would n't allow us to go . Whlile I was standing on the beach , suddenly I heard someone call my name and say that I had to go home . That is right , it was my mum . I am writing in reply to your letter I received yestarday . ' As I have a choise I would prefer to stay in log cabins rather than tents because they seem to be more comfortable and you are not so dependent on weather conditions . Last year I took part in a photograher 's contest and I won a second prize in Poland in the cathegory of , , beautiful scenery '' . But you could give me a chance to get more familier with it . Have you ever been to a big supermarket and tried to find something you really like or want , looking throug shelves and not finding that in the end . Moreover , you could face an agressive and maybe even drunk shop assistant or manager . These are some points I want to mention about the differencies between what the advertisement said and the realities . It was so boaring to wait for the show in a noisy and hot theatre . It was the most imperfect evening out I ever exprienced . It took quite a long time to adjust to the multi culture in the language institue . Since then we have visited each other often and spent time together on the weekend usally . And sometimes they do something in the library by themselves in the afteroon . I am writting to thank you for your letter confirming that I won the first prize in your competition . But I have finally got around to writing and you 'll see that it 's definitely been worth waiting for as I have some great and unbeliavable news to tell you . You will see why I 'm describing it as the most unforgettible one when you read through my letter . She invited me to the rehearsal of a huge consert by a singer who is a well - known pop star as well as my favorite . Despite the fact that I felt exhausted I must admit that it was one of the days I will never forget througout my whole life But if the politicians or the film stars ask for privacity the media has to respect that . Second , the show started at 20:15 , althoug I read that it would start at 19:30 ! How has modern techology changed my daily life ? When Thomas Adison invented electric light , it was the greatest invention for people of that centure . I mean , almost everyone now has a car , a computer , a mobil phone and even an airplane . Coocking has become faster with the help of the microwave . They become lazy because they know that they can sit on the sofa and change the channels on the TV by pressing a boton . This would be a great opportunity for us because we are all intrested in clothes , sports and fashion . There is also Hercule Poirot , the famous detective , and he finally solves the mistery . And another question is what are the prices of things like there , which I want to know so that I can make a better buget for my trip . The place where we worked was a football pitch ; we spent 3 days setting up the stage , the equitment , and the lights . I only put the speakers in the right places , or helped the engieners test the lights . But in the breaks and after work , I had a chance to talk with the engieners , and I leant something about setting up the equitment . Finally , the day of the concer came . After the concer finished successfully , I was happier than ever because the success inclueded my work and that was the most enjoyable moment in my life . According to your advertisement , the starrings were DANNY BROOK AND TINA TRUELOVE . I decided to go to see this show because of its starrings , but on the day I saw it , a different actor performed . Before using e - mail , I used to write letters and sometimes used the telephon . Secondally the show started late and I had to wait for 45 minutes doing nothing . If you compare the fashion now with that of 100 years ago , you 'll notice that there are incredably big differences between them . It 's like a joke , but a bit scarely . There was no discount at all , which was in contrast with ' Discounts Availabe ' . Concerning the fashion of the future , I think it depends on people 's personalities and they develope their own styles which suit them the most . As for the colours , I think metalic colours , especially silver , will be the most popular . As different kinds of farbics will be invented and the clothings will never be just cotton as always been seen . Maybe paper can also be a farbic used to make clothing and for those who like to wear new clothes every day . While I 'm stayin there I would like to practise tennis and basketball , as I have been playing both sports all my life , and I have to say that I am very good at both . And that is allways what we want . A huge que that lasts half an hour or more and finishes with you completely freaked out . I 'm writing to you inform you about the dissapointing evening I had when I went to your theather to see the play called " OVER THE RAINBOW " . According to the advertisement you published , there should have been some important differents to the production I saw . Finally , I want to tell you that it is not useful for you and your theather to cheat your customers . If you do that , there will be no bussiness for you and no satisfaction for them . I look fordwad to hearing from you Emilio Almodar , 18 years old , University Student , and the career I have choosen is in Internacional Commerce or Market . In addition to this we use the net to comunicate with some friends we have in the U.S.A. It 's really amazing . Maybe some people will be nakid . Last but not least there are some things I would like to know : What kind of wheather do you have in California ? That means that there are more and more big supermarkets and big stores , where no one has time for you to help you or explain things to you such as what kind of bicycle is the best for you , no one to talk to and no one to complaine to . That is the most important reason why I only like to go shopping in small stores , where I have peace and quiet and very often nothing to complaine about . I am writting in reply to your letter . I am glad to have won the first prize in your competition for two weeks at Camp California in the USA . About the information that you need , I must tell you that I will be able to travel only in July becase I have got a new job and I ca n't ask for more than one month of holidays each year and in the other months I will be very busy becase my workmates will take holidays in these months . Regarding the accomodation , I would prefer a tent becase it is more appropriate to a camp . And regarding the activities , I must choose Photography and Painting becase I am not very good at sports and I think I do well at these things . Here I am , writting to you to tell you everything about my wonderful experience at the concert . When the concert started , I was preparing some drinks for the band because after the concert they would be very tired and tersty . In order to celebrate the 125th aniversary of the city , the Coun Council organised an open air concert . Although I was very nervious , I knew I could do the job well . I am writing to express my dissapointment with the play " over the rainbow " , which is showing at the Circle Theatre . Finally , when I asked about the discounts , an agressive employee refused to answer me . Defineteley , I want my money back as soon as possible . So , I told Pat that Lynne was ugly , fat like a cow , and extremely agressive . But , well , the unhappiness started with Pat and my reveilled secrets . Organise your shows better and do not exagerate with publicity ! Despite this , I 'm convinced all this progress has caused some damage to the community , not only phisically . Finally , everyone should slow down his own life 's rythm . Second of all , the play was suposed to start at 19:30 , but it started at 20:15 . To finish my " marvelous " evening , I wanted to eat at your restaurant , but it was closed and no reason was given . I was punished , nearly expelt , but Pat did n't receive any punishment . According to your advertisment I could have one but in reality there were no discounts at all . One of the reasons for my visiting your show was Danny Brook 's participance . To make matters worse , the restaurant which was mentioned in your advertisment was closed . So I did n't have such a perfect evening as was promised in your advertisment . In fact there were a lot of mistakes in your advertisment and I would be gratefull if you could give me back a part of my money . On the one hand , the Internet is often used for entertaiment , but on the other hand it 's also used in different business and education processes . If we are talking about accomodation then accomodation in tents would be great - I love being close to nature . I am not talking about some kind of achivements in those discipines but they are my big pasion Unconected part of all people 's lives is shopping . As a teenager I must addmit that there is nothing more enjoyable than shopping . It 's like , , walking in the clouds , , you feel like you are flaing . Choosing gives me such great pleasure because I never have to worry about vere I get money for my wishes . It 's hard for me even to emagine a situation when shopping is not enjoyable . Probably it is one of the moments when you want something baddly and you ca n't have it . I hope your questions have been answered appropriatly . Instead of tranditional telecommunications , we can talk by , e - mail or even see each other with the help of a computer network . Among the large number of choices , this unfinished church offers a gorgeous view from the top of its towers , a charming story and one of the most representative examples of Catalonian modernisme art . We looked at every hotel in town , trying to give you the best offerd . You do not have to wear any special kind of clothes but in my opinion you can wear very cassual clothes . Finally , on the last day I sugget you go to the mall where you can enjoy shopping and looking around . The aim of this report is to recomend you to visit the Fuerte de San Diego Musseum . I asked some pleople in town and this was the best place to choose . The Fuerte de Sandiego Musseum was built at the time when the Spanish people were trying to take all the lands from Mexico , one of the most important people who was at front of the Fuerte was Hernon Cortez , the first Spanish in have more lands than anyone at that time . The Musseum is situated in front of the sea in the centre of Acapulco . This invention has made our lives easier and quickier . Service : It is over 100 years old but it is kept in good condition by the local people , who are proude of this castle . It is a different expirience . History : At the castle there are always a few guides , who will show someone around and tell him about the history of the castle ( when it was built , by whom and why ) , which makes everyone enthousistic . I recomment visiting this castle , because it is interesting , marvelous and something different . Nyremberg is also famous for this castle and the students will have a different expirience and a lesson too . Finally , there are a lot of mouseum in our town . Therefore , I would suggest going to the frogs museum , which is really fashinating . subject : Arboriginal Art Museum . The aim of this report is to discribe the biggest building of our town . b ) The building was buit in 1999 . Therefore , it is an example of modern architecture . In addition to this , we have chosen the luxuery Palace Hotel , which is comfortable enough and in a good location . Cars , boats , motobikes , airplanes : Who has never used them once ? In this world , where the nations fight to be the best one could n't be diferent , the airplane became the most important thing in the war . The best way is definetely by air . Thank you for your lettre . The bus will pick you up right at your hotel entery . You do not have to wear spezial clothes , just wear what you always wear . On the top of the tower it has a huge clock on eatch side . It was rebuilt in 1948 because of the Secound World War , when it had been demaged . The tower is absolutly marvelous . I receved your letter and I 'm happy to help you . We booked the Palace Hotel for your group . It 's nice and quiet . When you go out of the hotel turn right and go stright on ; turn right again at the first crossroads . In the big room where we 'll have the party , there 'll be some picturs of our college . You 'll see all the generations who passed through here . The group has been booked into the Palace Hotel , and the best way to get from there to the conference is by tube . The location of the conference is then five minutes by footh . For the party I suggest you wear classic clothes ; maybe something black and not red or pink . I am going to wear classic black trousers and a white jorsey - it might be that this information gives you some idea too . I am sorry to hear that Richard Brown is n't well and hope he 'll get better soon . I am more than happy to give you the nessessary information . Regarding what you could do in your free afternoon on the day you leave I would suggest you take the students to our History Museim . There is also a gift shop in there , where your boys and girls can buy some soveniers for their families and friends . More and more people are learning how to drive and choosing to travel by car , because it saves a lot of time comper to travelling by public transport . You do n't have to wait at a bus stop in cold and windy weather for a late bus , or be stuck on a train for an hour due to some railtrack repairs . You can just jump into a car , tune your radio to your favourite station and have a plesant drive to your distanation . I use my car every day everywhere I go and I absolutelly love it ! I can listen to the radio and sometimes can listen to Thai music , as I brought some cassets with me from Thailand . I took a driving - theory test last October and I passed it and I will take a pratice driving test very soon . It is called the Palace Hotel , and we hope that it is going to meet your expectetions . I strongly reccommend you to use public transport in order to get there , because you may find other types of transportation quite expensive . Moreover , you must be aware of the fact that the conference is going to last two hours , untill 10:00 pm . After that our college has organised a barbequiou night , with traditional local music that you must not miss . I hope that you will find my information helpfull . THE HYSTORICAL MUSEUM Without any doubt , it is a hystorical place which provides its visitors with the opportunity to discover different aspects of Greek history during the passing of the centuries . Do n't miss the chance to visit the hystorical museum , located in the heart of the capital city . The hystorical museum is simply a symbol , a proof of what the Greeks have always considered as a fundamental principle : their freedom . There are five diffrent floors , each of them presents a diffrent chronical period of Greek history , starting from the period before the birth of Juisus and concluding with the revolution of 1967 . Inside the museum there is a bookshop with a large variety of hystorical books , maps etc . If you really want to discover what Greek history means , we strongly recommend you to visit the hystorical museum ! ! ! When you are in the bus station you will catch bus number 37 , which will go to the town center . Anyway the college is the first road on your right from the town center . Architecture : It is a typical from this epoque with beautiful drawing on the wall and first kind of writing in the sports center . They decided to build more schools , especially in Switzerland because the people there were considerated clever . The people who will attend the party include many professers , semi - professers and faculties . Firstly , there is the acquerium in the building . I hope when you visit you will be favorite place . Firstly , Palace Hotel has been booked for the group 's accomodation and I spoke with the hotel manager about travelling to the conference . I am writing in reply to your letter about the internation student conference . And the best way to get from there to the conference is by coach , as there are about 35 internation students , and they are all strangers here . A big Buhha was built in 1997 just next to the temple , and it is the largest outdoor Buhha in the world . It is easy to get there and free amittion . On the other hand , Hong Kong is known as a highly commerical city , and you could find something different in Po Lin Temple . To hear the voice of the person you love is a feelling that is hard to describe ; it 's wonderful and so real . You can imagine their face clearly . I had a problem with my best friend once when we kept in tuch through e - mail . With reference to the information that you have requested , the hotel that has been booked is the Holiday Inn , in New Port and to get to the University of Wales , wich is not far from the hotel , you only need to take a divertion where clearly indicate Carleon and once you are on the main road , all you need to do is to follow the country road which takes you directly to the place . As for the last day , I would suggest you make a visit to the locall museum and the ruins of the Castle . In the first you will find a very intresting collection of Roman remains , also you can visit another section wich is supoused to be a Roman site . I always had considered myself to be very looky to be born in the century because of all the amaizing human inventions . However , I feel that at the moment there should emerge more grups to control this development because of the industrial polution that has been created and it seems that it 's very little , what is being done at the moment in relation to our embiroment . I think that it will be nice for the end - of - conference party if you invite somebody to sing and give the students the time to enjoy theirselves and to dance . First of all we need the telephone in our house because it 's important to make a call if you need something or if something happend to your house and nobody is with you . In the past people did n't have electicity and if they wanted , for example , to read or to cook something they used to light a fire . You must have a TV because you can liten about what is happening in the world and you can see some places that you haven't been to . I 'm very glad to be able to help you out with such a sutiation . At the same time you are enjoying the castle you can take a breake to go to the beach and you can look at the castle from the sea . That is also amazing . Yours sincerley , I am writting to answer your letter where you asked for information about the conferents and other points in relation to it . With the Internet you can comunicate with people in different places of the world at the same moment . I am writing to inform you that I have recieved a letter from you about helping you to organise an international student conference in my college . For those students who are very interested in shopping , clothes shops , jewellery , stationery , bookshops , fashion and beauty departments and many more are availiable . For those who want something more exciting and advanturous , you are recommanded to visit the Fun Fair and amusement arcade on the top floor of the building . I am writting in connection with your letter about the international student conference . You will never regred about my suggestion . If you need more information let me knowe . I 've recieved your letter asking me for further information about the conference that you are going to organise very soon . Here you have a little help for it . First , I 'd like to tell you that the hotel where you are going to stay is " The Palace Hotel " , wich is situated at the center of the town . It is a well - situated town with a lot of museums to visit , especially " the History Museum " , wich I visited last year , and I think you will enjoy it . It 's imposible Nowdays to imagine a life without that invention how quickly affects our life especially in business . The answer was always the same : " Imposible " . An old woman told me how important the phone was when her only son was abroad studing computers at " Chicago University " . She told me that every night she expected a call from her son , because her was the line of the hapiness . However , there was one persone wich told me he was n't happy at all with the phone , because he used to writte a lot , especially at Christmas when he wanted to wish all his friends a very nice Christmas but now everybody phones him , ending a very old tradition . Firstly , about your accomodation , the college which I belong to offers visitors free accomodations with full of facilities This party is unlikely to be that formal , but I recommend you do n't wear jeans and trainners . I 'm sure you 'll enjoy it and maybe become familier with our culture . These days , we 're sorrounded with so many different kinds of products which our ancestors invented . Let us try to appreciate thier importance again . When you take the class on computer programming , you will definetly need one and that holds true for the class on politics , because you have to study statistics on your computer to do social research and some analysys . My professor said , ' Go and get familier with your computer , otherwise you 'll fail ' . I find it amazingly easy to forget the importance of inventions which we useually use without thinking . At the end of the conference there will be a reseption at the hotel . Lots of books , papers , lots of things on the tabels . Computers have helped to improve health because in this century we can use them in medical operations . Doctors can manage the most extreme operation easyly and confedantly . No matter where you are , what you do , apparantly , you need electricity . For your last day I think it would be interesting to vistit our historic and famous city centre . People now had the chance to move to faraway places to spend their leassure time , to relax , or just to see something different than their home . Your group has been booked into the Palace Hotel , which is situated in the city center , 15 minutes ' walk from where the conference takes place . The group has been booked into a comfortabel and well - situated hotel , whose name is the " Palace Hotel " . Naturally we have a lot of interesting things to visit but something that is special is our cathedrale . Finally , I am sure you and your group will spend some enjoyable , realaxing days here . It is well known in almost all families , often with a lot of different cannels . I can not imagine living without televison , it is something that we need for our education , and for getting news and other helpful information . Nowdays everyone has a telephone . Nowadays we are very bussy and we do n't have free time to see our friends , but we can call them and talk or chat with them . The telephone is a very important invention if we can use it correctly without using it as a type of entertaiment as many people do nowadays . However , if you 're interested in Archeology you should vitis the History Museum in Garden Square . In the last fourty years people seem to have become completely addicted to using their car . In fact we can go everywhere sitting either with friends or with our family and carring our lugguage and shopping bags . For example , in the past it would had been extremely exhausting to travel on a hourse but nowadays we have lots of big and spacious cars and a wide range of optionals to choose from . On the other hand one of the main advantages is that we can save time and money as cars have long last and allowe us to get about quickly . There are eye - max cinema , museums , a garelty . Pusan Castle is locted in the South of Pusan . It was built four hundread years ago . With reference to your letter which I recived yesterday , I would like to give you some details about the international student conference , also the acomodation and activities that are planned during this week . I hope this letter aswer all your questions , if you whant to know more about it just give me a call or send me a letter . The aim of this report is to give some information about the new Acapulco resart buildings which were built 10 years ago . They are some of the first buildings that were built with the latest tecnonology and designed by an important Mexican arquitector . In addition , the resort has an interesting historical background concerning the arquitectory and the best facilities and activities that you could have in Mexico , for example , it provides different kinds of tours around Mexico . In spite of the disadvantages , I would strongly recomended students and the public to visit the new Acapulco resort buildings and have a great experience learning about the buildings ' history and at the same time travelling around Mexico . For the end - of - conference party we have booked one of the halls of the hotel and they will provide us with live music and cattering . Finally , to fill your free afternoon I would definitely recomend visiting the cathedral and having a walk arround the old part of the city . If you want , it will be my pleasure to show you the area . Chairs are not only part of the forniture , they are also objects of decoration and you can even find some in museums where they are art objects . The world is packed with so many tipes of chairs , from the common woden ones to the most sophisticated and comfortable others finding a basic range of prices . From my point of view the chair is without a doubt the most usefull gadget ever invented . Some people use them in their work , others wish to sit in one by the end of the day and for some other people a wheelchair represents the possibility of mouvement . I phoned the tourist information office last week and I got some information about the accomodation for the students . As requested , the aim of this report is to assess the suitbility for a group of American students of the visit to the Etruscan Museum . It contains lots of archeological Etruscans founded and some remains from the Estruscans ' neoropolis . Also there are some free handphones that explain the history of the museum . Although the entrance fee is quite expensive for a group of students , I strongly reccomend it for their excursion and because of their interests . In my oppinion the easiest way to get there from the conference would be by taking the Picadelly line . Basicaly , during three hours in the afternoon nobody is able to visit all of the interesting places in London . Are you always happy when your telephon rings ? Since I have been travelling around the world , I would have imagined beeing in touch with my family or friends without the Internet or my mobile phone . This is an International student party , so I suggest you wear tradional costume . You can inform all the students that they can take some tradional food to the party . It inculds a labrary , II suit , academic rooms , a GYM Club and a restuarant . There is a very big labrary . Just in the same building , you can find a restuarant . They can also talk with British students to communiate study experience . The group has been booked into the " Maria Luisa " Hotel , which is situated in the center of Wimbledon called Wimbledon Village . The purpose of this report is to give a brief discription of the Academy of Art in St Petersburg . This building is situated on the magnificent bank of the Niva River with an exellent view of the Hermitage Museum . The building was built by a very famious Russian architect and is a marvellouse example of Russian classic architerture of the XVIIIth century . In the Academy of Art you can find the oldiest art libarary , with a wide range of books , and the Museum of Russian Art , with a huge collection of paintings , sculpture and architectural projects from the early eighteenth to late twentieth centuries . For example , I work for a bank , and we need to have weekly meetings with our Director living 800 kilometers away , and he does n't have to come here , we just have a phone conference where everybody can talk , and that is it ! Finally , on the last day you have three hours before you catch the plane so we suggest you go to the shopping centre and buy something for your special person or go to the museam because this museam is the biggest in the world now . It is up to you . for Example , THAILAND , the United States of America , INDONISIA and CANADA . Therefore I am thinking of selling my car , which has changed my life over the last 10 years , which has given me a kind of freedom , which has gone with me to all sorts of fantastic places , and changed my life for a new life : whithout a car . Finally we enjoy a disco party so you should wear a suiteable dress . So he crimbed on the radder up to the window and he opened the door but policemen came there " what happened ? " Jane expained that situation and they understood her . I am writting to give you the information that you asked me for . From there you can get a taxi , catch the number seven and eleven buses , wich both take you very close to the conference centre , and also you can go by underground to get there . Then , after the Conference , there will be a formal party at the group 's hotel , wich starts at 9:00 pm and finishes at 12:00 midnight . Yours Sincerelly Hampton Court Palace is localizated in Hampton Court . For the last day , we have arranged a small party in the hotel . Then we all set off to go on a sightseeing tour of Bromley town center for about two hours before you leave for the airport . Bromley town center is the most beautiful shopping centre in South East London . We definately need light to keep on . I dare say , without light , our life would go into a dark , dark hell . I am writting to you to answer your question about the conference in London . Thank you for your letter . I would like to inform you that the group you belong to has been booked into the Palace Hotel in the center of London from the 24th of June until the 25th of June . Ladies should wear an evening dress and gentlman a dark suit . 1 ) " Fontana di Trevi " sited in Trevis Square in the center of Rome . 1 ) First of all , they are located in the center of Rome so they can take a bus to get to them move and around the city . Regarding your last question I can sugest visiting the Royal Castle . Actually it is a whole complex , the Old and the New Castle , the Cathedrall and the very interesting undergroud part with its amazing crypts . And if you climb to the top of the main tower - the keep - you will see unforgetable views of a white toun . You will find there an amazing collection of old weapons , armores and , we are especially pround of it , the great collection of swords . After that I am sure you will be happy to find a few restaurands located at the New Castle . I am sure that should be enought for a one - day trip . Please note that alchocholich drinks are only sold untill 11 pm . Coming back to ideas and Suggestions , I 've promised to give you a free afternoon befor you catch your plane . I would advise you to visit our zoo or to go for a picnik in a park befor you go to the party . Such simple and everyday things like a telefone , a car , a computer only seem to be normal and everyday for us as we use them every day . These inventions have improved our life a lot since they appeared , but not everyone beleives it is really so . First of all they talk about the enviroment pollution which cars and other vechicles create , overspending the electricity using electric equipment and some other problems . I think the telefone is the most important thing in many people 's lives as it allows you to get in touch with anyone and it does n't matter where you are ( I am talking about mobile phones , which a majority now have through choice ) . I think it would n't be possible for us to survive without eclectric light . Because of shipbuilding developments people were able to make all those geographical discoveries , and automobile transport is an undenyable neccecerity in our life . Because of everything I have said I am more likely to think that the benefits of peopel 's inventions are much greater than all their disadvantages . If you have any further questione , please do not hesitate to contact me . SUBJECT : Recomnendations for a place to visit The place I would like to recommend is the seventienth - century Royal Palace . The Old Town is the best place for an afternoon stroll , with a great deal of restaurants , caffes and street performers . There are a number of hotels or youth hostels to stay overninight , if necessary . I am plece to provide the information you need for the group . The hotel I booked is the Palace Hotel wiche is in the center of London just two blocks from Victoria station . I think it is very convenit for the group . You know the Victoria area , it is easy to travel from there to the rest of the city . About the hotel , it is clean , and provides a good service . The rooms are dobuels and neche has its own bathroom and for the nomber of students we are getting good Valud . And the best way to get to the College for the conference is to walk to Victoria station , get the tram to Glouster Road and after 3 blocks on the left - hand side you will find the College . Howeve I am goign to make a plan for acche student with all of the diteil and the adres . About the party at the end of conference , we are organising it in the same hotel whict has a nice salon . It will be good for yor group because you do n't need to move to anoder place . It is not a formal party so I think it is faind to wear somethig not too formal . I whant to suggestions for the last day . You and your group could maybe go to Green Park and visite the Queen 's house and Parlamente , this area is very nice and the group would engoin aftha the conference to get some Freche air . Another obction could be the new Tell Gallery . I have never been there but it could be a good esxuse to visit it with you . I have been hearing about the Ave they have in the Exivicuion , it is interesting . I hope you found thes letter uselfuel and if you have any questions , let me know . I am looking forway to seeing you soon . Yoors sincerely The computer was invented 30 years or mor ago and estart procesing information with a big card which was perfored and made a smol hole and aeche hole meant something like a code . The maching that was used for reading this card was very big , you used to need a room for the computer . I remember when I had the first lesson at the Univerty and the ticher took us to the Computer Center and I saw these machins , all my colleagues and I were lofing was very dificul to imagine how you can work with this kind of computer . These days the computer is part of your life , you use it all the time . Sometimes you do personal and anoder times it is just the thingh you need to do like go to the bank , use transpor , go shopping etc . It is a maching that makes life easy and ibendow you can cari it everywhere . It is amaising the way as the fas the computer changes , the programas are faster and more useful and practical . But the computer has a bad side too . I whand mean we life aeche day we depende mor and mor on it . So I feel ascere when I think about the consercuencias if some of the viruses or mad people misuse as hapen thise days with sex or other . I work with children and the computer helps me in my job but affeted it too . So I hope the world reaches agreement about this and computer engineers have to prevent these probleme because something good could be something very dangerous . Both of them are as convinience as getting there . End of all , in my opinion we could go to the center of the town because there are many places to have a look at and go shopping . So that 's why they have invented the telephon . Take the bus in the direction of the center of town . With the computer , we can write a letter , correct a word or change the name without writting the whole letter again . We save the letter and in three weeks we could send it to another person . If we had n't ay , we would have to write all the transactions on paper . I would like to inform you that Centeral Red Lion Hotel has been booked for the accomadation of the group and it will be quite easy to get everywhere on foot from the hotel during your stay . There is no need to bother about clouths . Befor you leav England , I suggest you visit the cannals and small villages around Basingstoke . You could have the opportunaty to see the country life . Would n't it be unbarable and painful ? Ceartainly it would be just like mine . Because I live in a rural area , far from any village , town , or city center . But also I 'm aware that time flies for me . I must do whatever I want befor it is too late . And I have to confess the invention of the car was the most usefull invention for humanity . As you need more information , I will answer all your questions with plesuare . It is one of the most comfortable hotels in our sity and situated only half a mile from the main building of our college , so it is very simple to get from there to the conference by foot . Finally , you can spend an afternoon on the last day visiting local historic places ( castles built in the 13th century ) or art galleries , as well as the beatiful Bodnant Garden . I think that one of the most importent inventions affecting our life is the telephone . I have just received the letter from you and I 'm writting to you as soon as posible . The best way to get from there to the conference is by coache , which I have arranged for you . Then we can have a rest in the caffee and talk before your flight home . I think I have given you all the importen information . Nowdays motorization is one of the most important inventions . When you look amoung everybody has a car or motorcycle . No matter that people started worred more about polution in the world . I love motocycles and I do n't think I could live without them . I have ridden a motocycle since I was 16 years old . We rode motocycles for a few days befour we finally got to our mitting points . I really enjoy riding my motocycle . When I ride it is only me and my motocycle . I am really greatful to the people who invented the first motocycle in the world . To sum up , I can say that the greatest ever invention is the invention of computers , which has affected both indivisuals and society as a whole . Personly I recommend the Dickens tour because it is a good length walk and very historical . The bus leavs at 8 a.m. from the front entrance of the hotel . The end - of - conference party is in a tent and in the greenground . It will be a surprice ! On the last afternoon you could go on a city tour , visite the Museum of Fine Arts , or enjoy the beautiful flower garden next to the public park . The museum is near the city center and is accessible by bus or walking . It is a very cosy building that is on the same avenue as the conference building , approximetively one mile away . The increasing number of cars related and infrastructure is now creeting problems . A lot of roads and motorways are overcrowded , and enviromment problems are more and more related to the intensive use of cars and lorries . People and governments are concerned about how to limit the effects of cars on the enviromment without affecting their mobility . If you are free I will show you arround our college . The countless fascinating things will definely take you the whole day to appreciate . I love baking cakes , cockies and breads . However , there is something about which it is still believed that it was an extreamly important invention . In my opinion , the reason why electricity is such an important invention is that most machines , appliances and equipment which are used in modern times can only be operated with electricity , which makes people not do too much phisical labour . Dar Mrs. Maria Smith , I hope that our friend Richard Brown does n't have any serious willness . This party is for the students so the clouthes wo n't be so formal . We can chouse between two options for spending our free time . I do n't like tinking of my house or my life without all these facilities . Now , you just need to think that you would do or what would happen in a city , with a car , aeroplanes , shoops , all these things without lights . It is surposed to be from 7 pm to 11 pm . I hope I have given you enough information and if you still have some questions , please do not hestitate to contact us . Lots of great inventions have been invented in order to help people live comfortablely . Because there are a lot of beatiful trees and you can see the sea . By the way , the end - of - conference party is a kind of fairwell party . The first part , the chairman and a few guests will give a speech and the second part , the participacients will evaluate themselves , and the last part will consist of dinner and drinks . For example : electricity , the computer , telephon , boat , and car ( wheel ) , etc . It has abosolutly reduced women 's housework time . She appears occationaly and opens every window in the castle . I would suggust they wear formal clothing , such as tie , trousers and blaser . The building is called the Chiang Kei - shek Momerial Hall . The momerial Hall is surrounded by large playgrounds . As you go into the main Hall , you will see a huge statue of Chiang Kei - shek . This is because the building is the rememberence of how well Chiang did in History . Apart from the main Hall , there are also lots of other gallaries . In these gallaries there are Historical paintings and antique furniture which Chiang used . there are also restaurants and modern gallaries . When you are tired after looking around you might want to buy drinks or something to eat , or if you are fed up with historical things , you migh as well just pop into the modern gallery to see things which are more modern . Finally , if you want to visit this building I would recommend you stay at a hotel not far from the momerial Hall called the Hyatt Hotel . OLYMPIQUE MUSEUM The Olympique Museum is situated near the lake and offers , for the tourist , an unbelievable view of the mountains and the lake . I hope you will enjoy the visit and I wish you a nice holliday in Yverdon . It is a modern hotel , near our college , and it is also very convenent for the airport . You can take either bus or taxies . The nember 101 bus leaves from the airport , then you can get off at the " city college " stop . Nowdays people have become used to watching television programmes every day . Someone is talking , laughting , crying on there , so join them . You will feel much better than you would just by yourself . Some TV programmes are enjouable ! In clucsion , TV has both advantages and disagvangtages , but on the whole the advantages are greater than the disadvantages . On the positive side , you and the group will be abe to learn more about Welsh artworks which are presented on the wall , on the door and some furniture . And some old toilets might look awlful . So , I 'm writting to reply to give all the information you asked for . The best way to get from the hotel to the conference is using the tube because it takes only 20 mininute . And your speach would be better for the end of conference party . Some people might say electricity is more important than any other thingh . For instance , when I want to contanct my friend , it 's quite helpful to use e - mail . However , the computer is worth using in our life until a more coveniance machine is invented . It also holds an internation exhibition all year round . In my early childhood my mother said to me that when she was a litte girl there was only one telephone in the building where she lived . It was in her parents ' appartement . It is not an easy desicion how to react now . thank you for your letter , wich arrived yesterday . I hope to give you all the information you need and , please , if you want more information or somenthing is not clear , please do n't esitate to contact me again . It 's a very confortable hotel where you can find everything you need . From there to the conference you have to take the number 50 bus , which stops near the hotel and arrives in the town center . For this conference I suggest wearing somenthing very confortable but elegant . The organisation wants all the men to wear a jacket , but a tie is not necessary . If I find somenthing special you will be able to visit in three hours I will call you . It is the most important church in this area because of its architeture . It is somenthing very special . Its ceiling is made from many small pecis of wood . Its windows with many colours . It is fantastic . I look farword to hearing from you I hope that all the information you need will be provided satisfactorialy . Secondly the best way to go from the hotel to the conference center is to use one of the shutel buses we provide at this efect . Finaly , concerning your free afternoon , there are plenty of activities , but I suggest you visit the Caldea center , wich is a very special bath center . If you need futher information do not hesitate to contact us . There are plenty of churches , cathedrals , and old cotages . The churches and the cathedral are very intesting because of their different Romanic styles . Finaly if none of my suggestions fit with your expectations , let me know more about what kind of buildings you are interested in and I 'll do my best to find something more suitable . To finish , if you have spare time , you could walk in the center of Poitiers which is very beautiful . In the Pompidou center , there are different exhibitions on different themes . So if you visit Paris , the Pompidou center is a very interesting building to visit , even if in Paris there are many other buildings . It is situated in the center of our town and it takes five minutes to get to the college , where the conference is going to be held . I think that the best choise for you is to take the 234 bus . Also there is a very good shopping center next to the museum . To conclude I would like to say that the goverments of all developed countries would n't have been so concerned about the so - called " problem 2000 " if the computer had not been so important for modern society . First , I would like to congratulate you on your new responsability , because of Mr Brown 's illness . There , I saw the exibitions and admired the building itself . If you go down a few steps , you will discover the ceilar . When you go uphill , you hvae to bend your back . They paid much attemtion to their faces and spent lots of money to shop . I started to notice the ways of foreign clothing and hair styles these past days by watching TV programs , such as Friends , Srcubs , etc . I like you give me any commets and opinoins too . It was like warter and his bottom was red . Everyday , there are new thinngs to try . It 's a kind of Tai - wan stayle massage . After that , I went to a fittness club which has bedrock bathing . It 's nearlly 12 pm . Elections will be held on Augst 30th . This time they may lose adoministration . It is made of spnge : ) It is cute . I 'm laerning English , but it 's really difficult for me ! I was releaved to hear the doctor 's diagnosis , but I 'm still worried . Inovative and original ideas are good , but if you can not find them , you should know that most of research work is just refinement of other 's work . I was somewhat puzzied what to say . So , after he was made consul by the Romans , he went to Afrika , where he fought againt Yugurta , who was king of Numidia . caz I don have a school until then ! ! That 's why I 'm very excited to teach studens English ! ! Those are such things as playing sports , reading books , lithening to music , taking walks . My favorit hobby is talking with my friends , because I think it is the best time to be with my friends . The otehr day , I met one of my classmate from high school at a station , for the first time in fifteen years . Although I know a private school student like me in Singapore is sticktly prohibit to go to have a job . Today , I went to the karaoke box with my son and naighbors . I slept all day untill I had to work . fourtunely , I am a hero of justice . I think that the war shoud never of happened . I do n't understand why so many people are into this stuff , I deceided to arrange some nice dates for my friends by following my own style . Without audiences , love judges , parents , just a friendly and private atmosphere , which allows them to be theirselves and enjoy the moment . Going abroad is my dream , so I really cherich this opportunity . It is a good chance to strengthen my knowledge , boarden my horizon , enjoy foreign customs , and also realize my dream . I just listened to his Boyzone 's brilliant song `` No Matter What `` on the way back home . Next Wednesday , the economics seminor softball match will take place . When someone asks me , `` What 's your fovorite thing ? `` Oh , how wanderful the college life is ! Once you get into the society , your life won ' 't be as simiple as that in college . Steeven tought me today . I attended Japanese tea ceremony lessons one day a week for three years , befor I came here to Japan . I liked to learn how to serve greentea tea . I made some friends at the lesson . After I mede it , I drank the green tea . In the grammar exercises , which I did for houars ( ? ) I could n't correct any sentences ( ? ) . Because it is very important ; I 'll never get a good job without it , and I 'll never understand half of the beautifule sites in the Internet ! And I like to drow in Photoshop and Illustrator , and many other things ! He is crowling everywhere as his instinct tells . I put my fingures into his little mouth , and pull it out . My very fisrt diary entry on Lang - 8 The first half of the game was a drow and the second half of the game was a draw . Fighnaly , Japan won the game , so `` Nadeshiko Japan `` is top team in the world ! ! I was excited , so I could n't sleep ; ) But I do n't regret watching soccer . This is the most important thing to them but , my opinion is deffrent . Today , I went to univercity . I wantet to more study . But , I 'm going to do it now , becuase my laptop is supposed to get repaired , and in a couple of hours , the mechanic is going to be here to pick it up . Yesterday was a buzy day , but I was very happy . We have many foreigners as our clients and I really could try my strength in English ) It ` s so interesting to tolk with the British , Germans , Italians , Danes , Finns , Croats . . . He has recently been accused of puching a man while drunk . A sumo champion , called a yokozuna , is required to be strong not only phisically , but also spiritually . During the last summer vacation , I traveled around Southeast Asia ; Melaka ( Malacca and Kuala Lumpur ) , Cambodia ( Siem Reap ) , and Myanmar ( Bagan ) . He is now in Isreal . May it be sunny tommorrow . . . May it be sunny tommottow . . . It is said that you can be healthy and happy or your wis will come true if you climb this mauntain . My Junigor high school friends and I are very interested in this legend . It was the kingdergardan level ~ ~ . . Plese tell me : D Yesterday , I went to Home Depo to buy a bag of soil and a planter . The roses grew and thir flowerpots are too small for them . I think I cought a cold : - ( Epidemy of Cool But the stuation is being recovered by help not only from other Japanese but aloso from countries all over the world . We walked around the garden , we saw the animals and differents trees ; we had a smoll lunch He has a funny and intersting dance . Well , _ I 'm into Ray Charles 's song _ `` Hit the Road Jack `` _ recentry . My gramma is very poor , and my poor gramma always drives my SAT gramma teacher crazy . Luckyily , I have some Korean friends so I worked on it while asking my frineds whether the translation is correct or not . this is just an execuse . It was a mergherita pizza . Strange Japanes customs ? So , whenver I pass by , I am sure they must be new employees . It is very convenient that its codeless . By the way , dou you know ' Lucky Taxi ' ? Today 's calss is the same class which I was n't able to teach them because of CHOTA MAJI . When I was in Korea , if we skipped the calss because of other affairs , they seemed very happy . However , in here , my students do n't want to skip the calss . And I fell in love with the liberary at our school ! ! ! Acording to the book , taking a nap is not good for digestion . If we get very sleepy , we should go for a walk to forget about our sleepness . Actually , it requires lifting up their knees high enough to make the Kinect senser to sense their move , so he was correct and had fastest speed in the race . I went to balloon lecyurer as an assistant at `` OMOCHA OUKOKU `` . It was difficult to lecyurer to small children . My mother committed suicided when I was only one year old , and since my father worked far far away in a town , I was brought up by my Grandma . I went to the gym in Neyagawa city so that I can strenghthen my muscles . And people seem as if they were constipated ( this word is funny because in Spanish `` constipado `` is `` cold `` , and it 's eassy to mistake the meaning xD ) . But I suppose everybody has a reason why they want to study a second launguage . I could come into cantact with a lot of music , from Billboard to Classics , because of it . But there were US Armed Forces in Korea , and they radio broadcast thier Billboard songs . I replied , `` Yes I have one , but in russion `` . So I think it 's time to create an Englishversion . I am a colleage student . Today is a speacil day . I did n't know whether he 's worried about it or is looking forword to it , but I hope that it will be a special and wonderful experience for him . Many peple visit there . In order to drink , I finised my work early . I do n't know the reason on why I was so annyoing about everything . I got out of temper to my friends as much as I felt forry for her . I do n't think students scores should be the standard for an estabilishment . For example , varities of teaching methods and materials should be involved in the criterion for assessing the teachers . The reault of my check - up was also anemia . I am really looking foward to it . I will do it on mondy for sure : ) I heve become the director of a company now . Interdisciplinarity , practical studies , a wide choice of courses , experimental spirit ( ? ) and open - mindedness are reasons why I am so enthusiastic about RU . My favourite subjects are maths and phisic , so probably I will have a problem with connecting them with traveling or something like that . But recently I heard about charity organizations which need ingeeners and it could be a nice idea . but I feel tired beacuse of difference temperature between Singapore and Japan . Actualy , I love cats ! If I can be a cat , I will go out for a walk the whole day , sleep until I feel good , be along with people when I lonly . I noticed that a crow dropped the walnut from his beak to the ground in oder to break the shell . He played the contra bass and the guiter . Since summer vacantion started , I always stayed up to play computer games and even until AM13 : 00 . And we plantde trees and cleaned the garden . Today I bought a book by Morimi Tomihiko at the bookstore in my college , where all the college students and teachers can buy books at a five persent discount off the regular price . Futhermore , his stories are very enjoyable . The sandowich costs 280yen . I ate that one first . I probably ca n't get raw ham at ordinaly stores . Now I 'm working in my company and I feel a little tired . Maybe I enjoyed too much during this holiday , so I ca n't acclimatize myself to different place or pepole , etc . English pronounceation Other countries , Germany for exapmle , most of their employees can speak English rather than Japanese . For Americans , Japanese `` Futon `` is a misterious sound because shape of mouse for `` Fu `` is different between American English and Japanese . it was reiny today . it was very difficlut ! ! ! ! Japanese marrige system Brides and grooms simply go to city offices and turn in the marrige application form , which has the brides ' , the grooms ' , and wittnesses ' sigunitures . No picture IDs are requiered to turn in the marrige applicatin form . Somebody else can go there insterd of the couple . Becouse of the system , sometimes problems arise . When a couple goes to the city office to turen in their marrage form , they sometimes find out that one of them ( or both of them ) is alredy married to someone else . Until he creat the first APPLE computer , all the effects what he had done before came back . Hot coffe , sigarettes and a warm blanket - this is what I need today . So I bought two , one for my feet and the other for my nec and shoulders . In korea foreign missionaries have been succseefully brainwashing people . just one reason I did n't belive him . This is my fitst post in English . I know this SNS , using learning forign language , `` iKnow `` ( http ; / / www . iknow . co . jp ) . Dood Dinner at Omiya Anyway , someday , I want to get lasic if it can improve my eyesight causing no side effects . A singel house This is the first time I write a diray in English . What changes happend ? Fortunately my hasband does n't interfere with me . He joked `` Please buy meat for visiting , esp chichen for dak dakgalbi . . . `` It reminds me of the Bable story , God seperates people with different languages , and people are never united as one any more because of the languages , then the world is full of suspicion and frustration . By the way , a Typhoon is coming soon and maybe a lot of studeants are thinking , `` whoa I can rest a day , hopefully the typhoon stay in Taiwan `` . After I entered elementry school , my parents switched from running a supermarket to owning a fried chicken restaurante . Now they run a grilled meat restaurante . I would like to wirte a letter to my English teacher , so I want you to correct my English . I drove alone , I 'm not afraid of drivig anymore . I can hardly wait for spling vacation . And I have learned another important skill , that is to write down everything that you do n't know , or you can not remember clearly , especially things which are very improtant to your job . yesterday ? Tayfoon came , so the sky was cloudy all day , and temperature did not become hotter . I still belongs to my comany in Japan . I can do Japanese comany 's business in NY . If you have a more fitable English name , please tell me ~ I felt sed and my sister got out of the house ! I will back to school soonly , my school is in another province ! My next time back home will in many month later , I realy do n't want to back to school with a broken - heart , but I can do nothing ! I 'm writing my diary for the secsend time because wrong . ( ? ? ? ) I am writting the diary and doing a lot of things I chack my e - mail and read hi5 . My friends send comments to me . Hi 5 is like facebook . It is very popular in thailand and I chatted with my university friend . We taked about work . She is not working at the moment because I go to out side of bangkok . ( ? ? ? ) she lives with her family . I know her becarse she went to bangkok to study . I plan to party this sonday at my closest friend 's brithday . We played a coputer game . The newspaper and the weather forecast imform us when the cherry blossoms come out . I was so humiliated by my accent during my chilfood that I tried to modify it . Because it was gifted by my ancester . listening nimo Nimo : Dady help me Nimo 's friend ? Dady : I 've got to find my son Nemo ! but my coasses ended late . We talked a lot and had a blast , and it was interesting that one of the participants talked his experiences when he 'd been in Germay . Life will be devide into each part that let him feel safe when he separate people into various groups . Yesterday , I rided from the main campus to the medical college . I useally study at a certsin cafe & restrant which is called Saizeria . I am a junior studennt majoring in Japanese . After graduating from high school in June , 2008 , I have studied Japanese for neary two years since August , 2008 . I run for my halth so I never over do . But I run at least 3 kilometers when I feel someting bad . one class is ninty munites , so I got exhausted . I take as many classes as possible , because I have a voracious appitate for studying ! So we had a lesson with another teacher who is Ethiopian duerng his holiday . It ended with an unplasant atmosphere . My friend told me that she wanted to give me a suprise . I am plannning to stay in Hong Kong for a month . And I 've serched information about where to stay ( there ) . I could n't get back home before 9 pm for awhile and had to rely on beby sitter everyday . But I ca n't deside wthat to spend it on . I want to buy an ipod usic player . I want to take a flower essense seminar . A new semster ! Tomorrow a new semster will begin . And I watched on TV that US jernalists have been detained in North Korea . jernalists that go to dangrous places are so crazy , even though there is possibility of dying . So , I will write what I 'm gond to say . When I arrived at Copley , I 'd naver seen such a tremendous amount of people there . I hope that the Red Sox will be the winner of the Wolrd Series , so then I 'll have a chance to watch a parade again ! It 's a love story , during the war , between a hurted prostitule and a soldier who has to fight . and I took out some economis books from the library . Tommorow I will have to study English and economis . I took part in a job interviw this morning , but after the HR kept asking me questions for about 30 minutes , she told me maybe this positon does n't fit for me because I do n't have the SQL skill . I 'm looking forward and waitinig for what the Apple will bring I came here to learm English . I laughed and said : You 're a hairy , obesed idiot ! But I want to continue studing English every day . hapyy day ! So I want to watch movies but it ` s too expenive for me . . . Thus , in the movie , Coluche travels around the world , and experiences some adventures in various countries such as Marocco , The United - States ( Harlem ) , China and so on . . . I think it may be interesting to listen to the French accent and the ( maybe exagerated ) view of Harlem by the French at the time . I also have to shovel snow around my house , car parks and offise . . . In addition to this , traffic is so crouded . . . I just sterted this SNS . People who have already graduated can also take this exam , so that makes this exam more compititive . But actually , people may have the abelity to pass it , but they still ca n't communicate well in English . I passed it half a year ago , but writing passege are still really hard . . . Dakdori was just one the recipes included in the book under the chiken menu . I surf the internet with an air - conditioner and a fan turned on . After surfing the web I watch TV with the dest - top still on and use a stove and microwave to have a meal . All I could do was drink beer going stale in the frigerator . I can understand its meaning , but is it awkward for the English reader or listner ? englis Again ! After an English lecture , I tell myselef over and over again : I must learn English now ! I have to admit age is a becoming more and more a sensitive issue as I get older and older , and the older I get , the more responsiblity comes along and the more mature you should behave . Well , I think I wish I could welcome the moment at home as usualy , but I failed for the last conple of days which flashed through so quickly in a northern city I have never been to before . Travelling makes the time elapse so quicky that I have hardly any time to digest the change of age satisfactorily , Even though I have been able to come back home this morning , I still ca n't take my time and am actually struggling to keep awake to digest it as much as I can , because I hardly slept yesterday . Moreover , I still did n't like it when I bought a can of spaghetti ( canned spaghetti ) and had it because it was like gelly , and was essentially just a can of meat sauce . Why is n't al dente that common in this Europian country whose people are the most omnivorous ? I want to write my plofile first . And I like Rorilita fashion ! This movie is talking about two different American girls who spent their summer in Barcelona , where they have a romantic , unforgettable advanture . Mealwhile , they are still learning how to face some issues in their lives . This movie 's siprit seems give us the idea that everything is possible , especially relating to love . When it cames to the subject of love , some people tend to be relistic , some people are always expecting something very different . But I think most people in our country , we do n't have enough courage to change the situation , or sometimes we just carry more moral respnsibility . The fireworks were the most beautifl which I had watched ever . `` earthguake , thunder , fires , fathers `` I 'm plannning to go to Sapporo ( the capital of Hokkaido , Japan ) this weekend and I feel uneasy about going through the pass because it 's very dangerous to drive on icy roads . Thank you foy reading and for your corrections . Is this Pater Pan syndrome ? I think the defination of an adult is different throughout the world . But maybe there are many countries that definate `` adult `` at an earlier age . Basically , it is said Japanese peaple are not good at speaking English . We begine to learn it in junior high scool . My name is oanhchau . I 'm from Vietnam . My language is vietnames . Untilthis the start of this year , he was my classmate , and he suggested this website to me . In my point of view , it 's a complicate website , but I think if I practice , I can use so goos this site , and finally reach my objec . I 'll apreciate thosewho correct my text , and thaksssss ( a lot of `` S `` it 's a internet form or expression that we use a lot on MSN , here in Brasil ) I especially like watching Eurupe soccer ! I was hoping this time she could win a medalist . . That made me think that I should support her ever though I am not ure if she will continue with mogul . Anywany , I think it 's going to be one excitig Olympic . I did n't perpare for it entirely . I wish that place was a non - smorking place and That mechanism is , When I accsess `` URL `` , proxy responce `` URL `` . normaly , Ajax can not cross site . My friend is a teather at a junior college . I thought about it a little bit , and I answerd , because of the school openning ceremony I am going to go to the libray and study hard Today is a holiyday . Becuase they are so beautiful with beautiul music . I 'm a Jaapanese . It 's very cute and I feel rilax . And today after working I had dinner with my acquaintance , a person who is workin in the famous consulting company accenture . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittet laughing sounds made by a female ( 1 only ? ) , and monotonous , enthusiastic talks by a male ( 1 only ? ) , which might have gave you an impression ; the atmosphere was not too bad , or too good either . I bought a pacake of muesli , mixed it with yogurt and put it in my refrigerator at night before going to bed . Instead , I 've watched company harassment like `` you 're incompintent ! `` or `` we ca n't afford to pay you `` in order to force them into early ritirement Luckly I have a job and a depenadable income . My cute `` My Little Pony `` should not connet to such a nasty word . lololol No , they shoud not . . . . . . . . . My coworkers all work untill late at night . One of my friends on skype told me that all you have to do is concetrate on the exam and relax . Well , studying bussiess English is bloody boring . I do n't think that much bussiness English is needed to communicate with foreign people . When I speak Englsh , although it is n't in a perfect sentence , a native speaker can usually understand what I mean . I had dinner the day before but I ate two more humburger late at night after dinner I was hungry soon ahter eating . . . I found Mr . hou8592984 's brog . In order to continute to write English , I should decide a thema . Thema : Depression By writing his depressio journal , I would like depressive patients and their families to know about this disease / illness and surely believe in his or her recovery . I did not drink alchohol in a couple of days . We also visited a soy souce musium . Every term we study Chinese , Math , English , Physics , Chemtry , Biology , History , Politics , Geography , Music , Art , and Physical education , 13 in all . That is scarried , do n't you think so ? ? Can enyone tell me the way to improve my conversational skills ? My stutent visa was sent to my house from the American embassy this morning . When I got there , I was so surprised that there was a lot of people wainting outside the embassy . More than 150 peaple were there . Upon entering the house , a man checked me , and my bag with an X - ray mathine . I needed to have an iterveiw , and then have my fingerprints taken . The style of all the furnishings in the building were Amerincan . Next , I should remember lots of nglish sentences . I really want her to come back and relase new songs someday . I think everyone hastheirown faviriote song that makes them better . I like both Japanese songs called J - pop and forieng music . But Japanese musii is more confortable for me , maybe because it 's easy to understand the meaning of lyrics . Speaking of lyrics in English songs , it 's very hard to lisiten and understand compared to in converstion . . . In the future hopefully my English will be better and I will be able to understand rylics . I have been studing English for eighteen years , starting from grade school , continuing at the institute , to now - by myself . But I have not had much success with my studing . For example , I can understand only a very small part of radio and tv brodcasting , or dialogs in movie pictures . My Summer holiday finally starded on the 5th . But I have got a lot of plans this Summer : D hope it 's gon to be a great Summer Vacation ! The happiness on thire faces means I did well . The weather is bad . It is wasy to have a cold . Long , lon ago , there were a couple of lovers . There were jusy only two students in the classroom . `` Otlob `` is a delivery - service site adress in Egypt . I think health is the most importamt thing for life . To celebrate I called my friendds and we decided to go to dancing at a club that has Caribbean styles of dancing ( salsa , merengue , bachata ) . As soon as we entered , my every tought was addressed to the music . So after I removed my coat quickly , my body began connecting with the track playing . Between all the Caribbeanses dances , the one which I prefer is salsa . That is because it expresses passion , a characteristic that is part of me . In fact I 'm a scorpion ^ ^ . A Little Hestitation and Nervousness My group 's leader asked me to prepare a race speech and a show of accomplishments becasue we have a vacant position for secretary of the youth league committee in the group . Every time I meet a foreigner interested in learning Spanish and also interested in lerning the language in a spanish speaking vountry , their natural choice was Spain . Now what can I do for peaple in MIYAGI ? ? Its like a ricecake and is made of potato , tapioca flour , cheese , mayonese . On June 9 , I joined to Google Develper 's Day . It facisnated me and I began to develop software for the platform . Preparing for Zonbi Walk part2 . I practiced making a zonbi face . Please look at these pitctures . I think I 'm a good menacing zonbi . I was surprised , and rashed into the bath room to wash my hand . The preetiest sister who Today I had plenty of time in the afternoon so I took a walk aroung my hometown . I shoukd avoid to take a bath . . . It will be great if I make friends with English amd Japanese speakers . She is Korean , while I 'm Jpanese . . . All animals I saw in Mongolia seemed confortable . . I belive he was into it all along . But as I graduate from high highschool and go to a university , I 'll begin to be busy in different places , with different people and in different ways . Elaborate pratical plans can give you a hand when you face difficults or feel depressed and help you get rid of unexpected It is only once a month and so it is deifficult to improve with each other . Jack bouer always says `` What 's going on ! ! ! `` : ) . I would like to listen to more Enlish through e - dramas and learn more about daily conversation and debate . I konw that I will lose my way if this situation continues . Nevertheless , if we dare take a closer look at creativity , ( and what is learning if not a fascinating mixture of experimenting , forming , shaping , producing and the like ? ) , then we have to admit that , in the long run , successfulness is not a bed of roses , albeit highly rewarded in the end . Short stay in Seneagal If you have ttime , please give me a little advice . It makeS me sentimantal and moody . Tonight , I went to a curry resutaurant with my friend ( s ) . Do you have a favorite Japanese food ? I recommend the Japanese food ' Tempra ' : ) At the moment , my favorit song of her 's is `` If I were a boy `` It 's rainniing It has rainned for three days , and the temperature drops to 18 degrees centigrade . It 's cool now . I got to know this web site several days ago , and I have got through some enties written by others . I will spend some time to correct Chinese learner 's enties . She was mean , she lied to her friends , and she said her mother was dead cause she was embarrased of her humble roots . My family came to my house and we cooked carne asada . We were all watching Teresa 's last chater together , and were hoping her to end up homeless and lonely ( like in the original version ) , but to our suprise she did n't . What was the message , be a tramp and you 'll suceed ? Polaroid faced financial crisys and stopped selling instant film and instant cameras . I regretted that Poraloid stopped selling thier photography products and think if I were a rich man , I would buy the Polaroid company and continue to sell their products . I went to the Sinagawa Station from Shibuya . I was impressed by the superior the focus and syutter speed of the camera . I have to pay close attention to aviod the new camera being browken by my son . It is a rany day today . They are taught by one of five ALTs ( Assitant Language Teachers ) who work in public schooling . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film thta deals with the history of the electric car , mainly focused on The General Moters EVI . Fisrt is the tea ceremony room ; second is the imperial room ; third is the samurai room . There is a pond in front of the pabirion . There are many kind of foods speculiar to each countrie in the world . They always recommend me doing Yoga , but I 'm afraid I 'm not interes in exercise . I have to speak Elignsh at my office . It was a little bit borring . That is why , it would be helpful , if you could give us some advice for the ebaluation of the research and provide the detals about the rating scales that were used in the book . They do not want their blings to make sacrifices as well . 7 students paticipated in it and they were great ^ ^ Some students did n't memorize their script enough not to show it but still I thought they put in a lot of efferts . So in the train , I do things like read a book , listning to music and so on . I wanted to listeng some music in the bath room . Besides , offering various help is a government 's obligatoriness , whether it ` s necessary or not . After work , I intended to surf again , but it was wndy . I 've started studying English in Canada this mounth ! My nummer holidays were too short , as usual ; - ) The reason why my school starts on Thuesday is , pupils with the grade 5 in their school reports can make a test about the whole last year to get in the next higher class . I am learing Electronics with Informatics and Computer techniques . The Austrian schools are very univerally that we know from everything a little . After passing all tests , I can decide to start working or go to a universaty . Addionally , after 2 years work experience , I will get automatically the title `` Engineer `` . So I was surprized at how much it 's changed ! ! Chicken Curry , Safran rice with Japanese pickled plum , mixed dried fruits Nan , peppermint chai with cinnamon and shochu , Japanese sweet potato wine with kabosu , an Oita prefecture produced fruit that is just like a lemon . Mainly , Japasene teacher taught English grammer , accents and various words . I alweys wanted to have a pet at home . My mother was very sceptic of this idea , but my father fullfilled my dream by buying me a bautiful dog . I was very happy , and I spent almost all my time with my Friend . : ) But one day my dog disapeard , and now I ca n't find him anywhere . I will congraturate you starting next year . I will take the TOEFL next weeken ! Oh my god ! althougt I am not good at English actually , but I just want to try and to know what level I am . I feel nervours because this is the first time I will take it . `` I know we have different valus and thoughts , In the evening I found out that he had disappered . And he said to me , `` I was going to break up with you , actually . `` Just jokking , but when I heard this , I realized how mean I was to him . . Even though , this was bad somehow I 'm still reliefed Self - censore an event makes economy decline . This sentence is printed on her son 's T - suirts . One day when her son 's English teacher saw that T - suirts , he took pictures of it and said it was so funny ! I tried to trancelate it but it 's a little bit complicated . In the morning we started our walk to Fort Cunning information centor to get a map . Unfortunatelly , it was being renovated ! We quickly loooked on the map for other restaurants and found one . It was a nice looking restauran on a hill surrounded by a beautiful forest . If the restaurant had not been closed , we cought have had lunch on the teraace ! The resaurant was closed every Sunday ! On the way , I happened to see a traddditional Malay wedding outside . When my wife was pregnant , `` just like all the other husband and father `` , I thougt everything was going to be beautiful just like on TV . Reality is a whole lot diffrent from imagination . We have to learn a child 's thoughtful consideration for others and frankness about it , because we know cosideration and frankness always work . When I found this , my bag had been scrathed by the thief . This is the third bag which has been cutted by a thief . My favorite manga is Doragon Ball , I guess even if I takek a vacation , I 'll have to spend much time on homework . life has no end of trobles . I experienced the gigantic erthquake in north - east Japan . I walked back to my house after about 50 munutes . On the way home I saw the peole filled in the streat walking . It is not a buisiness trip ! I 'm planning to go to Izumo - Taisya on Suturday . Wandering on the campus , green trees , colorful flowers and clear water catch your eyes , fragrant smell of flowers occupies your nose , and voices of reading aloud and singing of birds capcutures your ears . It was irretating . > < , Another boring week is watting for me . Then I serched online . If you study Japanese , I recomend it ! ! I 'm looking forwad to seeing my family . The restaurante was so nice , and the food was delicious . I visitedmy cousin 's hause last weekend . Some foreigners tend to think that Japanese men don ` t do housekeeping at alland women work for their husbands devotely . Tnat ' swhy , I want to insist toforeign women . `` Don ` t feel that it is worst to get marriedwith Japanese guy ! I do n't think they shouldn mention details about the flight ! Typhoong going through Japan are not as strong as cyclones . Tonigght , I will stay in my house and wo n't go out . That 's why evey Korean thinks they have to go to college . The last 3 days we had very good weather , but tday it 's cloudy again . . . addios . . . A nice script : Frist , you must grab people 's focus . What you want to say and the content determine whether people want to keep watching it . Of couse , the character designs and their actions are important . . hahaa like this octopus . . it 's very cute even though it does n't have any lines . I would like to speake and write like a natively We studied in the same high school in Tibtet , we often communicated with each other about things like a football match , beautful grils , foods or the CCP . Tibetan chirdren are loyaly , friendly and smart . Sometimes I felt they were sensitived about some political topics , but for of many reason , they felt happy too . Our high school teachers cared for them , and the ethnic Han classmeets were glad to help them to study many sbjects too ` ` ` The dinner was delicours , and we drank a bit of beer and played jokes on each other . It was a wonderful time . I frogot many annoying things temporarily . What a happy night in Beijing ! ~ ~ life is cool ~ ~ My english teachar recommended that I get an English Dictionary . The meanings of English words are explaned in English . My teachar said `` when you study english words , think of english words in your head . I recieved a lot of messages from my co - workers and friends in the real world and on this web site . My hostmother mother plays the piano very well . but I ca n't play any up tenpo music like she does . Goog night . 7 . 8 : 2 . 2 This is my work and pribate balance . Publick service personnel is a part of the conscription system . I worked hard at the place and explaind things to many customers . In Aplil , I also led the division to manage a network division . Although I feel a bit bad , and dissapointed of myself because I 've decided to be more responsable with my homework and I did n't do it . In both presentations , I did n't make an effort to get a good note and I know that I could have done it better but I did n't , but also , I did n't recived the support of my team . On the other hand , I felt very amazed about some clasmates . They did a wonderful job and I felt envious of them because I 'd love to do it in the same way or better . I have read some ariticle saying that some English classes do n't teach good english , or that some students do n't make any sense of it , or that it does n't fit their english level . I might be a lucky girl because I can understand English even thouh I do n't take any lessons . I am glad I speak English and can converse with naitive people . He wanted to say he was in the middle of the campain and said loudly , `` I have an erection now ! `` I think everybody has similiar minds and similar potential . Maybe there is some reserach on why people fail when they try to learn language ? We have to studed English now , or we wo n't pass an important test in three years . There is going to be a Jananess school visiting our school . We will have eight Japaness students in each class . And we will teach Taiwaness history about Japanese aggression against Taiwan . Maybe we will say something about their contribution after the Japaness were aggressive towards us . We will do a lot of activies when the Japaness students come . I have been quite busy the last couple of days becouse of my exams at the university . It 's really cool to meet a lot of foreigne friends here . So I 'd like to continue my dairly . My dog `` Fal `` , who is Itarian gray hound , does n't like Some people say it not only helps to end their pain but also it helps to slove their family 's economic problems . I think they are still relevant today because histry has a way of repeating itself . That way , they can feel familiar with acient history . the reason that she was deprived of her custody of their first child , was she overdosed on cocain ( I forgot why she had it at the time ) About 5 seconds later she called me again to say good morning . I did not anwers because we know if she calls me it means she would like to say good morning or good night . She got disconnected from Skype yesterday while me and Tyler were talking because it is a bad conection from her country . Before she left she did not say something to me as she usually does because she was sundently gone . He ca n't sing but he can hum and dance and and play the quiter . If I 'm a Piture . . . For a long time , I went to Song gang Dong field in order to play a baseball game in early moring . Then , I tried to go there , and also It was diffuclt to drive my car because I met a friend who lives in Seoul yesterday . I 'm a piture and the 5th hiiter . Our game started at 12 : 00 and I was so nerveous . My beseball career is shorter than everyone 's but I have good physical abilities like fast feet , strong sholders , and endurance for any pain . Chinese Calligraphy and traditonal Chinese Painting ! Chinese calligraphy and traditonal Chinese painting both Becouse it is near the station . This year I 've started to study ballet . It 's known that you only can learn to dance ballet when you are a child , or at least that was I always tought , but I was lucky to have the chance . We are doing `` Coppelia `` , even though we are not proffesionals dancers . We are adding a little bit of fun to the original play and it is going it great . In my culture , people are not always aggrassive and we are always thinking about others , as much as , or indeed more than ourselves . [ 1 ] As far as I have heard and experieced , the culture here is that people care about themselves more than others . They are more self - centered , which I do n't mean in a good nor bad way . For example , in my country , the distance between people is less , so everything can be flexible and it depends on the relationship between the people involed . Therefore , I always think before I act becuase I am not sure what the correct way to act is . The main character traveled to Ltaly , India and Bali . She met many peple and found herself . She performed maditation in India . Friends , no matter what ccountries you come from and what languages you want to learn , I think we can become friends , not only for the reason of `` learning languages `` . Or does it mean `` go out with thier boyfriends or girlfriends `` ? The other airtist are probably not known by Japanese people . There was a lot of rap music but there was n't one such as Eminim . Introdeuce myself Hellow ! ! But now , I study economics more , sinse my job is deeply related with economics . My favorit football team That is too many countries but , I 'd like to visit those countrys . Next week I wll go to a language school to improve my speaking abilities . Englsih speakers use high frequency . ; ) I think that I have to serch for a friend to converse with on skype or to help me with wrighting letters . Is anyone willing ? ( 9 . In Japan , it is autum . Thease days I am reading the novel `` Master of the game `` written by Sidney Sheldon . My friend recomended me that book and it 's so interesting that I ca n't stop reading it . Becouse his wife Marianne was dead . Today , my roommate woke me up early in the mornig because she thought I was oversleeping . Blackouts , floods , strong sunshine and very veryvery hot days . I went to Japan to stady , but I had never studied Japanese before . Because I ca n't speak Japneses , it 's hard to make friends in Japan which makes me feel so lonely , and want to give up stady in Japan . After a long time , I did carpentar work today . It ` s so frastrating , but it ` s reality . dreadfully spycy . . . Although my mother languarge is Chinese , I quarrelwed with my friend yesterday . The teacher made us to make sentance using simple past and past perfect continue . S / he then looked at our sentance and pointed out some mistakes . I have been enjoying learing English since last year but I still sometimes feel despondent a little bit when I can not remember how to spell a word by myself . It always goes this way ; I finally remember a new word and then want to type it next time , but then I fotget again . Now I wonder if this reason is too weak to learn efficienyle , because there are few chances to use English at my job . But I ca n't understand English grammer . Yesterdat was different . Unfortunatelly , there was very strong rain and thunder at that time so our flight was delayed thirty minutes . We were satisfied with our room and went to bed early so we could wake up early in the morinig . I could not explane ' a certain probability ' in English when I talk to my friends . The probalility represents how many people are watching particular program in each area . Then , if we know a certain program has high probalility compare with other programs , we might want to watch the program even though we are n't interested in the program . Today at 4 a . m . , I and my father woke up because we heard the gate squaking . Our first class usually starts at eight but on Tuseday , it starts at 10 . How to get to my car parkking space from my apartment . And I found a very exciting stastical today . There is an oil heater in the { staff } theacher 's room . So one of the teachers brought sweet potetos and burnt it . is doramas , not just Japanese but also Korean , Chinese and Taiwanese . Now I have fallen in love with the Korean dorama `` You 're Beautiful `` starring Lee HongKi feom FT Island and Jang Keun Suk ( Baby and Me , Beethoven Virus ) . I got lost on the way back to my houce . So , I called a taxy . Especialy to Germany ! I 'm taking the Garman class . The reason I have a duble major was because I could see the world was heading towards a global economy and society . It 's a little small , but it 's enought for me . In fact , I would like to look for a friend who likes using Skype and MSN and usually chats on Skype . I hope to chat with him / her on Skype to improve my oral English , and I will teach him / her Putonghua . I can speak standard Putonghua . If I can find a friend like this , we can make a concret plan to help each other . If he / she wants , except teaching Chinese , I also can tell her / him what he / she wants to know about China . So , anybody who wants to learn Putonhua and will help me , contact me . Thanks . I am online all the time . How they behaviors is their choice , but there are n't only gentlemen in the world . `` Judas `` by Lady Gaga and `` taxic `` by brtney Spears I like Lady Gaga and Britney speas . One of the songs is Judas and the other is Taxic . When I was a university student , I was a menber of the ski team . Hi ~ everone Golden week is a grop of holidays in Japan . I think my dirly needs a lot of correction . Yeah , this is my favourate sport . If we have class , we must go , because the teacher will cheak . At work , my cell phone did n't work as the telecom cables were destroyed by the quake . After I reached home , I knew the situation was much more serious in north east of Japana . labors will be older . Roast beef , mashed potatoes , pine nuts roll ( this is that stuffings which consists of pine nuts , flour , meat and so on is rolled into pie sheet or something ) and dessert with eggknock ( this is a kind of drink . There were a lot of Lotus folwers . I had fun and was really surpristed because of my friend who called me . In that place there 's no telephone signal and no money on my phone so I did not repled recently , but then when my parents took me the city I had refilled my money and sent the message back to her . who is my close friend I am thinking of her too while I was not in Bankok Hey friends do you think my new avator looks lazy ? so just some picture and in Bangkok is okay now do n't get worrid I think every thing is going to be better . . A Handy Crear Folder Within Textbook ( Brushed up ) I copied my text book into falf size , and sort them out according to each period . Why do n't you make a ubiquious studying environment ? But we misssed the airplane ! We missed our areline . So it 's very expencive . We took an early bath and ate toshikoshi - soba , the buckwheat noodles eaten on Neew Year 's Eve . My neighbors having a party and I have been hearing Latin music since this afternoon . This is my homework for my English writting class . Also , my old brother attends Kongju Universuty and his major is tourism . The university said I passed the entrace examination . Athelet 's foot I 've got athelet 's foot . It started a long time ago . It was around my highschool days that I first got athelet 's foot , so it has been almost a decade . So I went to a demotologist downtown . The doctor looks careful and probably credible but since I am for now translating one docdor 's book which criticizes doctors who are too readily `` putting their patients on chemicals `` I am a bit nervous . I am a genuin fool . I worked outside only wearing a down jacket , I shiverd from the cold wind . It is not tha movie itself that made me cry , but the fact that we missed the first ten minutes , because Mam was mistaken about the time . `` I 'm writting a diary after a long time . because I heve never been there . I went to a university that is my first choise today . It was full of fun , and I found a way of larning English . I do n't have inough time . . . I hope that everyone had been having a good time in the latest hollydays . been happy because I have a new niece . She was born on January 1st , and her name is Maria Alejandra . She is soo cute . There are many yhing that I have to do tonight . I like listening to music , like every type , expecially jazz , rock , and some nice soft music , some times I listen to death matel too . and also do some reading , which are written by ppl who r not famouse but special . . . . My sister and I were very joyfull . On the last day , my aunt gave me some australia chocolate , a kangaroo dall , and a suit . I had luch at this shop . We drank alcohol and ate Korian food at the first restrant . I wonder why Japenese people like to eat ramen noodles after they drink a lot of alcohol . I think it 's a very interseting place . I always want to make friens . I love forgeiner so much . that ` s why I ` im learning english . I have tried to study Mandarin when I was in junior high highschool . Chinese - charactors are used in Mandarin and Japanese , so I thought Mandarin would be easier to study than other languages . Some of meaning of chinese - charactors in Mandarin and Japanese are same but some of them are not . Although , Mandarin has four accents in one sound ( I ca n't explain about it crealy in English , try to understand ! ) . I offen postpone various things that need to be done . I 'm housewife , so it 's convinient for me to do such a short time job . What 's is your weak poing in your job I was so upset when I was asked that , because I had not preperation for the job interview . I will keep every Thirsday for your students . Today he went to nursely school . Poppin is my best dancing style in whch the movements are so freaky . I recomended you watch this dance if you are interested in it or you have never watched it . If anybody wants to know more about dance , coment me please ! In addition , corporations can , every so often , organize some creational activities , which may let workers feel a sense of belonging . I watched lovery Bone . Generally it is called a pickled ume in English . I am going to graduate from Seoul National University of Techknowledge this year . Afterwards , I would like to go to a graduate schoo . My daunhter and I want to go to Egypt . I will overcom many sufferings and difficulties . I hope for oan early winter vacation . This comic is the stoty of MUSASI MIYAMOTO . The idea was pleasing to the hotel 's collers . It takes about 40 minits altogether . It is a door that when you open it , you can get into wherever you want whthout moving . My biografy He proposed all of guests ( 4 people ) to support for this couple because it 's a mariage party . In a foreigh country , is it not the custom ? I am going to visit Australia for my school excurcion next February . So , I want to improve my English skill and know ( more about ) the Australianan culture . and in my job there are opportunities to meet foreign vistor . I have been at North Calolina for 2 month . But unfortunatly , my English skills still remain poor . This temprory job ends at the end of this month . It is uncomfortable to stay in an unfamilier place . So , I had my boss buy some vesetables for me . After I recieved them last night , I kept them in the refrigerater . However , it may cause air or watter pollution and noise which comes from factory disposal . It 's becuase I 'm connected to them . But , there are circumstances at the orgnization . My favorite movie is `` A PARFECT WORLD `` . Fainaly , Buch died because of a policeman acted by Clint Eastwood . My Husband and I know that his work is very noisy , for example , cutting wood boads , color on spray and using a chain saw , etc . I want to apologize about this problem to you and to the other neighborhoods . : ) I would like try using this webside , but I dont n't know how it works I am not a Sumou fan and do n't have a favorite Sumo wrestler . Wow , it 's Octorber NOW ! Shockngily , the room that I used to use became my father 's hobby room , so I slept in the guest room but that was not so uncomfortable . So cartoon arters work hard , out of every cartoon I love Tom and jerry I do n't have time to take a rest bacause I have a lot of reports to write by Saturday . we often use Japanese grammer , but explaination is difficult . It 's an important professionnal cycling race . I had lots of opportunities to have some fun and make freinds . However , I did not realize at that time how precious an opportunity I had . It 's quite ridiculous to prohibit her to call , mail and to have a mobile phone even though I have no idea about the Indian way of thinking or their common sence ( or this is not about Indian but just my landlord as an indivisual ) . today I had a lot of work but I was very lazyso I am not going to work . I have to go to chess training soon so I need to sit in the sawna and take a cold shower . However , since it is awinter , I must take a cold shower after the sawna and then I will go the chess training ( or Chess Class ) because I will play an important match next week . please pray for me to win ok Thanks for yout help to improve this passage . Japanese is easier than Eglish . As soon as we finished eatting , my girlfriend and I left the living room and stretched together . What shoud I do if a rat - mistakingly eating the poison and suffering - jumps from the kitchen cabinet ? The ceremony about mourning the pople who died from this bomb has been held every year ; this year it is even more historical because the representatives from western countories participated in the ceremony , especialy the United States . This change was due to the speach that was given by President Obama in Berlin . What I was most impressed by , was that the cecretary General Mr . Ban Ki - moon read a speach , speaking storongly , about how it is necessary to have a storong will to achieve world peace without Nuclear weapons . He visited and made some speaches in Japan over those feelings . I 'm not sure how to tip at a restaulant because I 've just moved to America and my mother country Japan does n't have such a custom . If I do 3 , shuld I write an amount of the tip down in the bill ? Soon I wii take an English exam . I graduated from my junoir college on 15th March . I sometimes dislike her because she scolds me for not follwing what she says . ysstuday was Sunday . Next year ` s simbol animal is the rabbit . I have decided to post voice journals here , because there are only so many oppotunities to speak English in my everyday life . I went to the shopping mall becasue my daughter wanted to go . Unexpectly , I fell into the deep lane that was used only by adults . In Japan , after having graduated from college , most of japansese students work immediatly continues to stay within the company for at least 3 to 5 years . While I took a look around in the Vietanmese mom - and - pop store , he petted my shoulder and said , `` Here you go , a Vietnamese sandwhich . `` At recess today , he still pulled me to the corner again and asked me if I wanted the pulms and vegetables . He knows that I uaually cooked on my own to save money . They should use English in evey sityation . Halloweem party Actually , it dipends on the person . Today I changed my hair color because my brown hair was so bad and my hair was so damaged : ( I dicided to change my hair color ! ! Question 2 , `` Where was the port that the Blanck Ships ( called the ' Kurofune ' in Japanese . However sadely , still I still have n't worked through what I am going to do for my happiness . That way he 's always have a meal beyound midnight and talking , trying to get me to eat with him . I wish that Korean schools were more free like foeign schools . I studayed English from 7am to 9am this mornning . Yesterday , I started a new activty , Capoeira ! When I tried to buy the ticket for the film , I wss recommended by the clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemote was impressive ! I am a sales person , so it is okay since I have a contract nowadays . ( I am the secoud peoson who has the highest sales . ) I mainly do the kind of simple , repeative work that anybody could do We 're going to move to another building next week so today all of us cowokers were packing a lot of stuff . sorry for the ( irrelevant ) detalis . This is my frist time coming here . I learned of this website from my teacher and found it to be a really good place to study English . At the same time , I want to make some friends here ! Whatever my roomates and I will solve that . This time I know the person who can be friend or just have diatance . I lived with my parents and my elder sister who is married and raising her son and daughter with her hasband . And I 'm learning Japanese tea celemony once a week . I 'm interested in Japanese traditional culture , such as tea celemony , kimono , and Japanese flower arrangement . Some people wear kimono often or everyday ( for example , those who are obsessed with Japanese culture , who learn / teach tea celemoney , Japanese manners and Japanese flower arrangements . . . We do n't do tea celemony in daily life except when our families or ourselves are famillier with it . When I learn tea celemoney , I became eager to learn good handwriting , languages , behaviour , and flower arrangements . whe I learn martial arts , I become eager to learn behaviour . As a begineer , you need to have every skill at a beginner 's level . If you go intermidiate in one genre , you need to have skills which are better than a beginner 's also in other genres . I will try writing about these things I learnd . Dec 10th : Sherk 3 I watched ' Sherk 3 ' on TV tonight . In fact it is very usefull and has a cool design . The sweadish man said ' ' Kampai ' ' every fifteen munits . After just 5 munits , the sake bottle was empty . Although the waves were samll , there were a lot of surfers in the sea . The shape of the Tengu was like a human being but he had wings and could fly so we adopted it as our mascot and our filght squadron 's guardian angel . Actually , each squadron 's flight time for the year is assigned by our headquater . `` Yes , just do it ! `` . I praised mysellf so much that I only ate a cup of sesame paste , a banana and an apple as my supper . to look on the brite side ! There were a lot of people wearing costumes ; they were cazy and funky . Now , I am in the middle of preparig for exams , He is n't famous among Japanese , because he did n't have a professinal carrer in Japan . It was an amazing trip due to beautiful sinery in the country . I saw native Australian animals such as Kanggaroo , koalas and many varieties of birds . The scenary was overwhelming and the conpany was smart and decent . Teacher said that Espressions of frequency , speed , and duration do not use ' in ' . I work very hard and I get so tired from working from morning till everning . I talked with my frinds who live in Japan by skype after so long . Since they have not changed a bit , I was releved . I listened to their story , they are still having a hard time due to earthquake and erectric powar plant in Fukushima . I cught a cold . . . : ( And I cught a cold today . So , I my cold goes away soon so I can avoid going to the hospotal ! Hallo every one ! Probably , I am not interested in that topic , my vacubulary is not enough or my English is still very poor . We dicussed about smoking . Indian parents teach their children smoking , but their least age is 2 years old and yet , they can already smoke several cigarets a day . He was sophisticated like an adult and can smoke 2 cigareets at the same time . Parents should be responsible for their childen . They must protect and guide them to a right direction . I hope my English will get better if I could continue writting a diary in English . I mean , we were too busy both mentally and phisically to take time for others . To solve these problems , I shoud relax a bit . Yesterday I went to a Korean restaurant with my close female freiends . We were chilling out with deliciouce dishes and drinks . I was invited to go skaring by my frinds today . Actually my Silent Night , was really nothing specil . From the first day I cut my long hair untill now , I ca n't remember how many times I have cut my hair . I am a colleage sudent in China . After the graduation ceremony for junior high school , I called at her house by using the yearbook which told me her adress . I want to introduce the Hanbok to foreigners because it is very color , and I thought the hanbok was very old fashioned and not unchic , hanbok is very speical . Hallo , everyone . I want to see a lot of forghren poems . Of couse , I want to see Japanese poems too ! Please cheak it ! I learned a lot of nwe words dealing with financial vocabulary . I got a serious headacke this morning while sitting in my cubical , so I took a half day off and left work at 1 pm . Well , if anyone who happens to see this entry , and is interested in getting a Chinese New Year card , pls let me know : D I guarantee the card is gon to be cute , and Chinese : ) A casette tape changed into a robot , or a gun changed into a robot . . . If you get it up onto an Internet auction , collecter will buy it for half million yen . `` Then I wwanted to exhibit some things to Yahoo auction , abbreviated to Yahuoku , which is similar to eBay . I was very busy April because of recruting . ( job hunting ? ) Feeling bodyache Because I have to contact another foriener buyer by phone today . Today I 'm goint to write about my career . Even if I try to find lauguage exchange , they think I 'm a boring and bothersome girl . I could n't stop staring at the beauthiful phone , I believe that this whole swine flu panic is steered by the media to improve the econimic situation . In my opinion , everything that has happened is very artifitial . Some Japanese office workers dream about living in the town because it does n't have a train station , hence it 's difficult to comute to business zones / districts such as those in Tokyo . But I chose to live in Hayama despite the long comute time , I work in Shimbashi central of Tokyo . I went to some Yokohama ramen restaulants this time . I will write down the list of good or famous ramen restaulants here . She taught me the importance not to give up and we can get a happiness to keep tring . I 'm kind of a perfectionist and once I start a role playing game , I do n't stop it till I perfectly copmlete it . It 's like an obligation to collect all the items that exsit in the game and acquire all the abilities . Usually , people in western countries will celebrate Christmas Day with ethusiastic , and as theirculture globalised , we in the east havealso started to note Christmas Day . And it seems an honor to me that I reveived an apple from my little sister . Is it true that Father Christmas will send gifts to us this everning ? I will have a chane to travel to Thailand ~ my house phone has droken down Contiuing to do something is very wonderful . Before caming to Keelung , I heard the rumor about A City of Sadness . I do n't need money or anything , but just a response as to what you think of my idea . Would you be satiisfied with it ? And this can also eliminate what causes confliction , such as misunderstanding about their customs , and he determined that he will do `` The last concert `` fot his young baby . The last concert was so imfressived to me . I tosted some bread with the toaster and I ate the bread without spreading anything on it . Nara is coverd by mountains and forests . About 77 % of it . Deer might atack you . Various kinds of vegitables are pickled in a sakekasu . It has a little strong sake flavor . See you tomorrou ! I do n't know excetly when I can use `` any `` in sentence . I know it 's difficult to expain . She does n't like to eat brackfast in the morning before she goes to school . and also luch . I asked her premis ( ? ) me to eat brackfast before going to school . She said she premis ( ? ) eat brackfast in the morning . What I study at university is mainly sunjects related to English , such as English linguistics , English education , American and British literature and so on . Hi I 'm a new menber My name is Luca and I 'm a new member in the comunity . New year 's day is already over as you and I know , but I still feel like I hav n't regained the energy I had last year . amd his exbition is held this year in KYOTO . My mother tried to go there , but it is very populer and she had to wait in line for more than one or two hours . . . Last Saturday , I ralaxed in my home with my family . In fact , I feel very sad , but I stiil need to work , eat , and so on . Now I 'm gowing some scallions , turnips , and lettuce . I think this one tastes good but my Europian freinds do n't seem to like it that much . Anyway , when we got there , we were the only customers in this restraunt . First , it makes me to sweat easily than what I exepect befoe and this means that it is also helpful as an aerobic excercise . Otherside , my major is not Chinese . I really enjoyed working over ther . Upon seeing what I bought , my little son looked disappointed because I bought more clothes for his elder brother and did n't buy shorts for him which I told him that I would buy one for himy . I am using simple English vocabulary to wirte this diary . I like English very much but my English writting is too bad . The main street was crowded with so many tourtists , who came from home and abroad . Theseday days , I 'm doing a part time job to save up for a trip to England . Before I took the class , I only read my vocabulary notebook for about three times a week , but I learnd many strategies in how to expand my vocabulary in my university . Moreovre , I put vocabulary tags on my funiture . Ironicly , these kind of movies are n't always historically accurate . Snow couses many traffic delays here because it does n't often snow . Che Guebara I wached movie about the life of Che Guevara . I write poor English , so pleasae teach me English . Girls are willing to forget the syrname given by their parents and fllow their husbands ' surnames . I guess you could call me ( a ) `` Germinese , `` but please do n't call me Chimany ; it reminds me of the word `` chemney . `` The thphoon is coming to Japan now . She imigrated from Korea to America 15 years ago . I 'm breakind my record of keeping good health for at least two years : ) My mather and I took a walk this evening . Lots of people who were playing outdoos said that this kind of scenery was really beautiful . I think I forgot all of the grammers and vocobularies . I take care of myself , eat right , and excies . Osechi ! ! ( A Japanese tradtional dish ) The purpose of my part time job for me was to eat the most delicious dish in the cafetiria . It was dilicious and its cost was low : 380yen . But , my collegue told me that there is not a rainy season in NY and the weather this year is unlike the usual in NY . I felt the climinate in Japan was getting warmer and warmer in several years . We can see extraordinary climinate in every area across the globe . Hello , everyone ! My foreigh language teacher told me about this site . I had hardly opened my laptop when I came back home and made my first diary entry . I hope I can make more new friends from around the world . This sentens explains the children ` s liking . I was given many feasts like a sand raice ball , a sand pancake , a sand juice , a sand meat , , etc . But you may not exprience joy like that if a dying baby had not been rescued and grew larger . Yesterday 's movie is about when Shakespere wrote `` Romeo and Juliet `` . I like this movie and I can stady it . So Sakespere wrote a passionate love . Today is very summy day ! I went to interview at a Japanese resturant . I have to be careful about figuring out my job and the way to achive my dream , because it is not like I 'm very young , or like I have many options ( since I do n't have enough money ) . So I will try to do my best to find my way and achive my dream , rather than being frustrated about my poor situation . When I was elementaly scool , ALT teacher from Australia showed us pictures of Australian nature , sea , koalas and so on in his class . And I have never gone abroad and see the senery apart from Japan . So I saw such a senery of picture for the first time and Of cource , Kabuki , Waka , Samurai , Yamato , Wabi Sabi and so on . In ' The Last Samurai ' , which stars Tom Cruis , this idea is the subject . Aftrer the war , we succeeden economically , but we lost our culture . I believe this is the best chance for Japanese people to regain our identiyi and culture and to work together . It 's gorgeus . I went to Costco with my friens a few days before . My friend recommed Cheerios to me . I picked up my hasband this morning . I thought it would be easy to get there , because today is sataday . We take a walk a littel , then I heard dog 's bark . , we can be good friends ! Please leave ur message and some comments . I apprecite it ! ! ! There is a gold accessories store next to my store and oppisited to Boost . souvenire . . I play guitar , watch anime ( yes , I ` m one of _ thete _ > _ > ) , and learn English . There are so many theories in one academic field . For example , in sofrware engineering , both Java and C + + are very useful programming languages . In China , C + + is used more frequently than Java ; consequently , theachers should pay more attention to C + + . Students who learn more useful technology will have a big adventage in finding a job . In some circumstances , theories in textbooks are no ues in real life . Moreover , it is better studied on campass , in a lab , not in a company , As Bertuard Russell said , `` Experice without learning is better than learing without experience . `` Every professor in a field that offers the opportunity to work outside , should ; the others may stay on campass . For students ' futures , universities should find more oppprtunities to give their professors . Yes , I 'm thin - skkined . When I watche a TV program , I knew the store . I 'm a light dranker and I do n't like alcohol . Actully South Korean people usaully are n't interested about / in North Korea . actully I did n't know about my blood relatives before I saw it . So , he deciede to go to China and go back to North Korea after finding some medicins . I cried a few times when ( while ) I was wacthing the movie . Thinking that if I was the man who had a sick wife but could n't find the medicine and the food was dcreasing . . . The song make me remember my life , my failth is shaking , feels lost with no deriction . I ca n't wait to watch that , eithter ! ! I 'm looking forword to that . I 'll always smile toorrow : ) I wanna tell the charactor a crucial thing . When I approched the operating room , I heard After she had an operation , she quikly died . And still , I have this eery idea I forgot about something . . . American Idal , a TV program , is an good example . For example , when estimating the number of balls in a jar or the murder rate in New York city , the errors between the crowds always be cancelled out by each other so that the average answer is often surprisly accurate . I watched hich school musicla at first , it 's very interested and powerful . Today , I nearly slept in the inmidst of doing work . I hope to have better house , earn more money , provide my chid with a good education , buy what I want and go for a trip . . . It is Novenver and winter will soon come ! So many shops sell snowbord and snowbord wear . We went in the shops and looked at the many bords . My height is 165cm , so I should use a bord about 145 - 155 cms . long . I found my faborite design . I looked at the underside of the bord . I , of couse , looked at the price tag . At last , I found a good boad . Morton Island is the biggest island made of sands in the worls so it has many deserts . maximum : You need to pay maximum attention whe you use gasoline . minimum : I think his immidiate action kept the damage minimum . ( just minimum seems wierd . . . I met my laguage exchange partner today . Keep studying , it is hard but really issential In addition , he recommended me to read many books , not only Japanese literature but also foreigun ones . This would broden my outlook on life . I heard about this web site from my co - woker today . I 'm very excited to learn this system , and I 'm looking foward to trying it out ! That 's my favoite team . I 'm always surprised by people here who keep thier journals in a foreign language . I elnvy them . When we met , we didnt know where the `` budaezzigae `` restaurent was . So we walked to look for the restaurent for an hour . We found the restaurent in the end . I caght a cold Those are sympton of a cold . I caght a cold today : ( Some of my friends have been to concerts and they all say they enjoyed them soooooooo much , and whenever I hearthem say sayin like that , I envy them so much . Kagawa who plays for Borssia Dortmund in Germany got the goal . It was beautful goal . The consective hollidays , an event which lasted for about 10 days , was over . Consequently , we now have a hard time living economicaly So I will write messageto this week . The goverment imposed a tax on carbonated drinks ( like Coke ) , and every food has a label indicating nutrition , especially trans - fat . As they heartly congratulated us hearing our news , I was very relieved . By writing down the daily events , I also aime to review each day and make the next day better . Now I can concentrate my attention on the final examenations and essays . Tomorrow is my birthday . I ca n't waite to know what suprise my classmates might give me . I believe that tomorrow will be an unforgetable day because of my lovely friends . When I began running , expecially longer distances ( it took me awhile to build up to that , though ) , I would go to bed and welcome the sweet release of sleep . Yes , I am writting this diary with a brand new PC ! It takes 30 minitus from here to Tokyo . I registered for this site to study language . My friend recommened My teacher is an amusing guy . He asked Turk to taugh us Turkish , and asked me to taugh them Chinese . After the class , I bought a botton of local wein ( a kind of sparkling white wine which has low alcoholic strength ) in order to celebrate X - mas . Hokkaido Pollac Today , I offered Hkkaido pollock to our Chinese cliant . because Japan has a large quantity of pollock , but the maket is small . My Chinese cliant will sell the pollock to the Chinese market . Yesterday , we had a tourament but unfortunately we were n't able to win . As soon as I entered thepub , I droke soju ( korea alcohol ) . Well , that 's nice and full of sunshine and sweety smiles . All the bueatiful things depressed me . After graduating from college , I want to go to France to study for my Master 's dgree . I caught a female beatle on my way home from the office despite that there are not many trees around here . I went to my friend 's hous . I like spicy food such as Kimuch that is Kolean food . It contains lots of red chile But I still want to write it , because maybe I can have a good experiance . I 'll se in the future . . . . I 'll eat at a restrant in the department store . but first , I will go to starbacks . I read books , write dialy and sutdy English in there . The dog 's story is broudcasting by NHK radio and an English course on TV . Some runnner give up without finishing the race due to extremery dehydration and low blood sugar . Yes , this race is difficult because runnners run almost 20 km . Especially , this race is separated 10 sections between Otemachi , Tokyo and Hakone ( 5 sections for one way ) , and runnners must run 850 meter above sea level in the 5th section . And the reason why I am so attracted to this race is that the runnner 's perseverance encourage me to persevere no matter what happens . but when I read the diary abou my ex - girlfriend , I decided to update my diary , I did n't answer him , bacause I knew that he just wanted to remind me that I should be serious about dancing , and not be worried about anyone else 's opinion . Also he is very smart and good at archtecture and history . We can speak to them and teach them what is wrong and what is right and in the long term that will be more effective than hittng them . Trouble is kind of a trandmark of children . I have to go to univercity now . Is American English pronunciation diffirent from British English one ? Later I helpt two friens to correct their Chinese writing . * Do experiment ( changing the mediume ) There are chain restaurant whose plices of foods are n't so different from those at Macdonalds . I yearn after them , because they have brond hair , and blue or brown eyes , and high noses , and they have very good style . Okay , I am going to listen to an English drama first , starting with `` Frisnds `` . I enjoyed the food , the nature and the festivitiy of the small town very much . but I perfer Chinese . We can not use the exact words ( we would like ) to express ourselves . hat 's more In addition to that , most of the grammer we learned in high school has been forgetten . I have a lof of friends from Lang - 8 . They gave me the power to study English . They would cher me up and make me feel warm inside . I will now read a book and comback to use my computer again . Although there are some opinions that cars have many profits , I think that they have had a greater negative impact on various things than a benefitical impact . There are two reasons : worsing the environment and decreasing a chance of communication . The first reason is the emvironment being harmed by exhast gases . The exhaust gases from cars affect the emvironment in various negative ways . The second reason is a decrease in oppotunity for communication . But I think it is umprofit for us to continue using them . It 's quite different from the standard Paintball in most part to its rules and military characteristics like tatics , strategies , missions and moves . I am quite dissapointed . I bought a book called the 4 - hour week from Amazon and I am impressed with the speed of the buing process She 's also been vaccianted every year . Today , I will meet a colledge student who is looking for a job . She is eager to resarch many kinds of jobs . The above was made by his mother ( my wife , of cource ) . : - ) Rrcently I ca n't take pictures . I have pain throughtout my body because of it . and I am really looking forward to seein you sometime in the coming next couple of months . anywayz , happy birthday sweet heart ! ( dear friend ) Acturally , she would have left the day before , but because her plane had engine trouble , she had to stay there for one more night . This week I 've been relaxing , I went to Uni . , stayed home , ordinaly days . . . There will be a party organized by `` Bape `` - the famouse Japanese fashion brand - @ `` Club World `` in Koyoto . someting but not empty in my heart I was dipressed today . I felt lonley . Use my time effitiently ! I thought the answe was ( a ) , but the answer is ( c ) . Because of this , I set aside time to exersise . Fortunately , I have a VIP card , so I enjoyed a discouct of 10 % . I do n't have time now becouse this year I have exams . . . I used to learn English , Japanes , and French . Fortunately it is easier to learn Chiense characters for Japanese , because we use them in our language . We improted the Chiense characters to our language hundreds of years ago , and the meaning of most of the words are still the same . I 'm lonly . I wretten a letter today . Is tha right ? Studying Enblish She lilves in US , and is studying to be a nurse . She was groing up with adopted parents . She says that being alone is confortable . . . . . Her caracter is cheerful . I think she willspend have a happy life . Fortunetly , I passed the 1st test at Korea University Medical Center . The 2nd test is agroup inerview so it 's more important than 1st test . I wrote not long ago , because I got discouraget by learning English . Recently I had depresion because I did n't see the meaning of life . I heard in news that many Rossian people drowned because they were swimming in the river while drinking vodka to cool down . Is this global warming effection ? It tasted yammy because it was free . I forgot to bring a thoothbrush . So after that , I mailed her `` I know your kind heart and ability to chat sencerely `` . There is Chinese cabbage , spinach and Japanese radish in the frige . Of cource , I lilke Euclid as the great mathematician . becose commuting by train becomes very hot and makes me feel bad ! ! I 'm looking forword to my friend 's mariage ! ! I think the hotel gets ( / holds ) a lot marrige per day . I was so exercited . My husband was a systems engineer , but he quit his job last year and has been preparing to becaming a physical training instructor ( physical trainer ) . Today I cooked spaghettie Bolognese for lunch and baked a sea bream , tai [ ? ] with vegetables for dinner . My husband tored his Achilles ' tendon on the 9th of Octorber , and he has n't been able to work for two weeks . One collegue 's husband who is an IT consultant , said to me . But I 'm embarrassed to say that THANK TOU for raising me until now . Ttoday I made spaghetti . Whendever I make spaghetti , I feel proud of myself . I was shoked wnen I saw this changes in Alice . Today is a beautiful day . I woke up at 9 o ` clock , and had more delious food for breakfast . In the afternoon , I surfed the interent . That was taugh for a single girl in China . Although they 've already brokenup , their music is cherring people up . I 've been studying until now , for abourt 3 months . There was a lot of delicias food , some drinks like Champane , wine and beer & plesant conversation & Dancing ! Wow I hav n't known about this briliant site . North and West Europe composed the largest portaion of immigrants to Australia with 34 % . From these pie graphs , immigrants moving to Australia consisted of almost half of the new population in 2001 ( , ) although there was no significant growth in the total populaion . I met my friend in on - line massenger r 2 days ago . I think that I want to eat it somtimes . I sometimes make mitakes when I write English . It 's actually not a long time after that thing , but it 's seened to be a very long time for myself . About love , Respect yourself , that 's the most important thing I learned , if you want to give , just do it , never expect anything back but respect yourself , rub her / him the right way is not the way you should do , be youself . I 'm very happy that my first diary entry had been correctedby Lang - 8 firends so soon . does anyone know UNY ? I usualy sell Can I say `` Every time I have to be the casher . `` ? It means `` I have to work as a casher too . `` I had to translat to Thai the word `` craigslist `` but I ca n't find its meaning . . How do I prounce it ? We have to make lots of firends when we 've done those things because we could get more information on Vietnamese culture . But there is one thing we should be carefull to do and that is to take care of each other . I LIKE Haging around people who like them ~ ! ! This picture is of my grandmather Kailan ka ba pumunta doon ? A Total of 200 peaple participated in the session . I that I had caught a cold this morning , so I was in a bad mood when I had our hand - pianting class . I was so exicited , the adrenaline rushing to my head . That night , I could n't sleep at all , because I was so exitited . Not sleeping on the transf ( p ) ortation is a kind of my bizarre habbit . no matter how I finish this reserch I ca n't explan . Can you expanation to me ? Tommorow is the 16th . If it pased a year , it is 380th . The waitresses had to be so strikc to control the time that a person took eating a meal The subjects were verious , such as about experiences from jobs to the funny things . My pehew is coming home . It was the book I had borrowed once but faniled to finish reading because the due date was up . Today I just watched the lastest episode of ' Gossip Girl . ' What pleases me is that I think the story is going back to normal . I mean , the last couple of episodes have been kind of ridiculous . And in fact , I wouldl never have the lives like theirs . Nate , one of the charactor in ' Gossip girl , ' said , `` Growing up , I never knew what I was supposed to be . . . `` This moive is really famos in Thai . The man who running on the elephant is really good at ( kick ? ) boxing and did not use a stant man . . . When you come back to your country maybe you should work for a few years to prepar for studying at university . In my opinion , travel or work for a year will give the students a lot of expereinces that will make them successful in the futuer . This week , we 'll llreturn to lighter meals . The item whitch is used for erasing pencil wiritig is called ' eraser ' in America , and ' rubber ' in England , right ? This sound file was made by me and my American friend who is learnig Japanese . We , for the first time , acutually talked to each other . Even my brother , who never ramember the date of my birthday ( but you can see it 's not a problem ) ) , told me that everything that I paint sucks and presented me with a picture . ) I did mathmatics and Japanese . It was fun that I did homework . I ate a yammy bar of chocolate write your five items in the coomments , if it is n't difficult for you = ) I can learn not only English communication but also business skills like how to be a good facilitator and how to negosiate effectively . There were many games , such as , Hula - Hoop Throwing Game ( a conpetition on how long they throw ) , Catching Paper With Chopsticks , Scooping Water Walloon , Dropping 1 Yen Coin to the bins in an aquarium tank , Pitching Game , and so on . And there was a boose giving snow cup with syrups as a present to those who played three games . So , if the school is a member of this neighborfood community , Imagine you want to buy a melon for 500 yen ( fixed price ) . You have 100 yen coins , 50 yan coins and 10 yen coins . How to learn the fandament of other languages The first step in studying Langage I strugled to find the way to learn other languages efficiently . ( or effectively ) . I did n't have enough money to go to a langage school , After 5 years of looking , I found one of the ways to understand the faoundation of otther langages . I think we have to fill our brain with the fandamental sentenses of the new langage . When we have to use the langage , the sentenses will appear automatically . To fill up your brain with the sentenses , This text exprain the way of fandamental training . Of cours the method can be applied to other texts containing fandamental sentenses with CD I 'm looking forward to the day that I can exprain the effectiveness of this method for gaining ability in foreign languages . However , it was not planned and there was dvidences . Spending a foreign festival like Christmas in a `` foreigal `` place seems very interesting . And that means the exams are right around the coner . Perhaps it is due to our esucation systerm - you come to school to study , the school gives you a mark on your paper . Impartiality is what everyone purpsue , but no one really succeeds . I live in Incheon with my famliy and puppy . I go to Hanshin univercity . Sometimes I forgot to do , because of my busy work , or heavy drunking . . . Canada Dollar shepard chocolate ! He wears glasses , and always wears cotten pants . The next day , a reunion party will be held and I will meet my old classmates at my elemntary school . I develop new products of air conditioners making use of the tecknologies I have learnt these days . Terefore , I go to Kyoto several times a year with my family . Article 131 . - The Federal Government shall formulate and keep the Risk Chart on water basins updated , in order to set in place the disaster prevention programs , which shall include soil and water conservation works as well as flood managemen . The method of the moslim funeral is the brial . But in the case of japnese Buddhism , it cremates a corpse and puts a bone in a pot by using chopsticks . The cremination is decided by a law in Japan , and the brial is permitted only in some areas . I absolutly love English and I need more practice talking with native English speakers , so I would love it if you add me to your Skype list . Today , my university finiished first semester . Firdt , I want to go to Wakayama , ( comma ) I 've dedided . . . I am posting another text bwloq . For `` Domesctic Sewage `` , Salo Paulo reported the highest figure of these countries with 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . Aside from them , Tokyo reported `` presticides `` as the water pollutant with 31 % whereas the amount was much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage of `` Erosion `` with 23 % as well as `` Demestic Sewage `` and `` Phospharates in detergents `` , which were higher than that of other coutries . There are significant differences between the four pollusions in the three cities . I 'm borred Sometime I laughted , sometime I cried . Anyway , today is Rodorigo 's birthday . Happy Birthday , Rodorigo ! ! cheap , the engine sound is quiet , the interia is kind of clean , and the exterior has a few blems , even though it is old and has high mileage . There are 3 big problems , oil leaking , radiation , and blake pads , Snowing aroumd here was very rare . Now , it 's a beautifull day today I love this site , and I want to make frends through it . I remembered my past work untill now and inputted it to the Excel . This activity was intersting because I was able to discover my work style and my strengths and weaknesses . Nice cut designner They are usualy cooked in Sukiyaki , Tempura , and so on . I 'm not sure where we 're going , but we 'll be sure to go somewhere where we can have king crab . My boyfriend may not want to go , because he always feels tired . He 's yawing at the monent , but I will make him come along . There are old temples and histrical places . We dicided to call a salvage company to haul them away . I haerd muscle is heavier than fat . Exchange languaje My interpersonal skill for English is better than my writting however I need more practice . I do n't mind if your interpersonal skill for Spanish is not very good , I think that if we work together , we can improve our cualities . Do you often use formal words and with a straigt face on your usual conversations ? Peaple said he has such nice manners . I saw pictures abou that . Probably , I will become addicted to this SNS and try to upload my dialies ( daily thoughts ? ) . Does it furthurmore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this webside , and I don ` t know how to use it apropriate , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for sereral years , and my knowledge is still not enough ! ! ! ! And in my researh activity about oncology , I thought I did n't have any choice but to enter a med school to study the medicine . Eventualy I became a medical student . ( In Japan , in Febraly there are entrance exams for most universities . ) Snow fell yesterday early in the moring but it melted . my favorite coffe is always `` Today 's coffe `` . Of course , I have a cup of delicious coffes when I go to there , but my real reason for going is not only todrink coffe . To my seprise when I came to his house , it was very chean . Today is thanksginving day , and I am at my friend 's house . I 've taken a nap at least 7 hours in the last 4 datys , and I eat my fill every day . And we will have to go to the another shop wiche is near my house . I went to catch squirrels last Sunday . The rain made the hillsides became a little wet , so we sould watch our step and tried not to fall down . We all went to a summer festival held in Mukaigahara which was held at a nursery schol near my house . I 've been listening to his songs recentry . I like Masaharu Fukuyam too , they are similer . One of my favorite movies is `` Innocent Steps `` which was produced in korean . After I woke up , I went to a Thai restaurant where a my freind works . One of my friends began to study English and he indroduce this website to me . I love languages , in particlar , the sound of English . Umm , sorry , I 'm nagative today , is n't it ? I felt that I need to improve Engilsh for litening and speaking . Luckily , I finished my exam already , and I can celebrate Christmas wholeheartly I think you should decide to keep the maintenance time on a regular basis , becaues a lot of people have signed up to this site lately and you will have to keep the configulation simple and clear all the time . I am practicing listning to English . So I told him that he should work on it litte by little every day from the beginning . Of course , he wo n't be able to prepare for the test on the first day afer the holiday . . . I found this good webiste and I thought it can help me learng english better . Pleasae , reply for me ! And now , I 'm going to play on my home cort because I need to practice for the match tommorrow : ) ! Its desigh is very good . I always listen to their English conversations , but I still ca n't fully understand ( white and black people 's English are very difficul to understand for supid Japanese ) lol . I would add a little soy sause and natto , too . They had a granddougter - daughter , Mashenka . Her - friends wanted to go to the forest for mashrooms and berries . I bought coffie , patbingsu , and pizza . My older oldbrother is Sin . My first day with a foreign firend on the internet Thanks to globlization , a Taiwanese person and a Japanese person can chat in English , we are able to communicate on the internet even though our mother tongues are different . Looking back on my past entries , I 'm pretty surpirsed how horribel my English was , and at the same time , happy to see improvements in myself . I recomend this movie . In this context , the word , `` clutch `` functions as an adjective in order to descibe I belived what you said completely at that time . . . `` I thought to myself . My personality is eazygoing and outgoing . If someone has any qestion , just ask me . I 'm too lazy to customize my page with HTML , and some pages have too many apprications . I wish I had frends who could speak English ! I had some vegitable juice . Not noly because Chinese New Year is comming , I 'm leseening to good musik . She makes beautiful , exciting music and perfomes perfectly . An expart said , `` When you say negative words to yourself , your brain has only negative images . My office needs to help many customers ? So , sturday and Sunday are working days for me . Now I 'm writing a journal at Urawa Central City Libirary while sitting beside a large window . I ` ve been feeling bad for the past 30 minitues . Wecome back , robins ! We were looking forwad to seeing the pair raising a brood . I wish my Engish writing skills would get better Sorry , I ca n't wirte English well tonight because I 'm drunk and I want to play painball next holiday . . becouse my house is situated near the sea I 'm tired of translating from Chinese to English , so I 'm writting this diary without translating . I know my English is very poor , but I realy like learning it . So I decided to resume my studies by writing in my diariy here . This made me recognize that communication to others , especically people not only Japanese , is very fun . Sevaral months ago , I went to Montain Tai with a friend of mine and her mother . but our familly did n't have buchimgae . fm is a lunguage study site . I took an examination in phisics today . But I still have tests in , mathematics , English , German , and electric curcuit . I know it 's not that big of a deal , but I wanna stay in sharpe . Ukraine has a very old history . Many tuorists from other countries come here ! ! We have many places vere we can spend time tougether ! I houpe you will help me with my English . ) ) It is said that he killed a Brilish 22 - year old woman who was an English teacher living in Japan . I 'm a commer . I hope someone can see it and halp me by modifying my article or intrduce a good way of improving English . I must learn English , but evryone knows my level is too low . When I was a juniour high school student , my English class teacher laghed at me , because my pronunciation was unique for him . hope I can bear to live in another provience or city . My teacher aksed us to write a personal statement , and she showed us some examples in which there were various tragedies such as parent divorce , serious illness , and car accidnet . I ' m intrested in history , literature , sport , geografy , religious etc . I haven ' t done too many interesting things recently , because I ' ve been so busy in conection with the end of the semester at school but winter holidays are close ; ) I 've been 2chan mad for a decade , and I deeply like hutaba Channel , which influenced 4chan 's culture and structure . Compared to 2chan , thier hatred seems disorganized . On 2chan , they attack mainly weak people . Especially Koreans or Chinese in Janan , integrated people , women , and anyone with a percieved weakness . Hello , veryone , I have come back . and then read it again atfer one has finished finished writing it . No doubt , it is kind of traditional Confucianiam . For my part , I firmly believe that one who has a kind - heart should be given a reward or applous . London has so meny people and it 's too expencive . . . I can read Japanese but ca n't type in Japanes . . . I have sooo meny stories to tell about Monaco . I have an eanjoyable time each lesson , In addition I feel confortable when I carry out the procedure for making tea . In Japan , there are not any traditions of having a long summer time vation , as in France . I think I am overslep . I ca n't believe a song could make me feel so sad . It had really nice lylics though . I was so happy asa well that I still could a friend who still remembered me after one year . I felt a bit sorry , however , they smiled at me and said `` Eat more : ) although there was n't pelnty of food I could make friends with many people thurough being a volunteer . So , I ` ll study hard and find something intereste about economics . Strangely , many people do n't understant that sometimes a man watches it just alone and some people feel shy ( about it ) . So I revise the lessions I have leart during the holiday . I 'm afried I ca n't be the best in our class . I Wish I can get a goog result . I bought juice which was a fruit and vegetable mixture , I thought it could improve my immunity , but it was too cold , and I had to mix hot water in . The funny thing was tha I could n't measure how much hot water I needed , so the mixture was either ( too ) hot or ( too ) cold , which made my throat ( even ) more uncomfortable T _ T . After three years I listend to his music again because one of his music videos , `` man in the mirror `` I was shoked by this video , I did n't know what to say , I was impacted . Comment : Me too I found that I had n't see all his music videos , I didi n't really know him , afterward I read some information about him . If you would like to learn contonese or chinses , I can help you . I wonder what clothes are suitable for gests . I heard Americans give the couple presents from a wish list . Is this ture ? I highly recommand the film as well . I like photo booth machines , so I always take a phote inside them . I 'd like to know if there are photo booth machines in foreign contries . They seem to enjoy taking the phote . Until before , I heard my recorded voice but my voice is a little bit strange to me and I felt ashame and funny . Pleae proofread it . Especialy they often have an original or special lunch . UNIQLO and Theire Business Strategy One of theire feature items is the so - called ' heat tech inner . `` In my opinion , what he said is true . However , when you are at the top , you are also responsible for your co - workers and theire family . You may need financial support from your parents . Some people succeed very easily because of theire family . Now I just read the latest news that UNIQLO has announced that they are going to change theire company 's common language to English from 2012 - 2013 in order to keep up with global growth . I find that Chiese exams are more difficult than English exams . which laugage should I choose ? germany - I have learned / studied it for one year , but I can only read without understanding its meaning . They were very embarrased about this . It was very funny . By the time I get marrige , I will have gone to Este six times . My First Singn - In If you understand my meaning and I kown what you mean then that is enough . What do you think of this suplement ? and diabetes . This suplement is just like an all - around medicine . compare someone who shrases the bad and good but , most of all my best friend is like me in evey way . Recentry , the junkyard where I work is very dull . The customer was so delighted / enraptured that he adviced the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' to attract customers to the business . In a sense a custumer named their specialty ' Cat rice cakes ' . I think non - ricense writers should be appriciated more . There was not a tunami afterward today though , - The size of his house gave me a shoke . - As far as I know , most Korean and japanse people know what the `` general character of each blood type `` is and I think they take its significance seriously . I 'd lile to communicate with the English - speaking users and start to study English right now . So do n't hasitate to contact with me . I 'm Going To Go To Costoco Have you ever gone to Costoco ? What do you recomend ? Please do n't chang all of the sentence into new sentences . . . Though some people believe a considerable proporton of rural students would put great effort into learning , it is manifeast that there really is a phenomenon that rural students are more prone to have difficulty entering university . When I was a kid , I stayed at my granpa and granma 's house every month . After bathing , he alwasy took his tooth out of his mouth . I told my mother about this afete I grew up , she laughed . The woman in the video , whose name is Aum , is really popular in Thailand . Men love her becasue she looks sexy . My sons recived their presents from Santa . and I belive I can do it ! ! GUMDAM ( RX78 - 2 ) What singers do you like in Japam ? To tell the truth , I went to Vienner for a school trip last summer and saw some of Otto Wagner 's buildings . This post office , the Savings Bank , is one of the World Heritagesite sites in Vienner . I do n't wana work anymore . . . I was born and reised in Japane . My doream is to have my own shop . I 'm styuding English and Chinese . I did n't have any exprience doing the tasks required of the position . She asked about my salary expection and how I could think I worth that much money . She said my expection could be reached after I work for 2 or 3 years and I have to work from the most basic position . The problem was that my expection salary was the common standard in graduates . Since I go to a remote place I have not been before this is a good excecise . It does not cost us a lot of money to go cyling . Study abroad is neccary to speak a foreign language skillfully ? ? The year before last and last year I passed the first test but failed the sencond test . I hope to pass the sencond test this year . Yesterday I made new friedns at Lang - 8 and I got my first correction on my entry ~ I had to clean my room befroe Chinese new year . It was very exciting , important , happy , and peacehul for me . I 'm not good at Engulish . English is very important comunication tool for talking to each other . He is a fomous Japanese musician and a guitarist . He appered on various TV shows , movie and CM . Since at that time , I respeect him . I stady English . ( ^ . ^ ) I start stady EngIish today . I 'm not sure if it works but I really want native speakers to point out which words I do n't pronociate correctly . The recent trend at my company is : `` Our company will take the cusutomer experience to the next level using digital technology . `` But now is the time to use IT for developing a cloose loop relationship between our stores and the customer . anyway I went to the mountan which is famouse for rock climing a week ago . we are feeling happy at first , but the higher we reach I got difficulties in brething > < . finnaly , we arrived at the top ! ! ! I cooked curry with a pressure cooker at last nigt . We went to a bomb shelter and listened some stories from Okinawa people and visited the musium . I went to one of the most famouse aquariums in the world , a beautiful sea park and the catsle influenced by both China and Japan authorized as a world heritage building and so on . I enjoied diving . Accorinding to official information , Tokyo will be having a big earthquake Recently I started to prepare evacuation equipment , food , towels , toilett On the other side , you know , asians are little conservative sometimes , they control their emotions , but if something sad were to happend , they go out of control , and become temperamental . It 's ( both ) nomal and unnormal to you , If you can find any mistakes in my diary , pleaze indicate . But , something bad happend after taking my baby to a park with my mother - in - law . I know she really likes talking , and she was realy happy to show her grandkid to her neighbors . After stadying , I had a meeting for the shodo club . trip ( vietnum , Guam ) Do you know Rady GaGa ? for example , MAC , Lunasor , RMK , and so on . I usualy push the reset botten each time when I boot my PC . I want to see `` Abater `` and `` Alice `` some day . We must think about having a good time for welcoming club members next yesr and so on . One was a cream cheeze layer which was heavy , and the other was a strawberry layer which was sweet and sour . That 's why you have to orginize your work so it will be comfortable for you . I decided to make a neckless using power stones . The dessart I had was so good ! ! We agreed it 's best for us to break up and consentrate on our dreams . After get back home , I am so sad because I notice she doesn n't call , send E - mail , talk by skype anymore . Tommorrow is a holiday ! ! I was punished by my ever so strong inclination to procastinate and procastinate . I went to a Japanese restrant there with my host family . The menu of the restrant includes Sushi ! ! came bak after 3weeks I was looking for the other one attentively . I looked into my bag carefully , turned back to check on the ground , but I faild to find it . What was the happinest moment in your life ? Workaholic guy . The hapipinest moments in my life are when I achieve something at work . For exapmle , I felt happy when I won a sales award at my workplace and I feel happy when customers give me a perfect score on a customer 's surbey . I like my job as a sales person because I can contribute to customers ' bussiness . Working very hard is a part of Japanese culture and we can feel our happinest when we devote ourselves toward a customer 's success . I could see water from the sky covered the trees arond my house . The day before yesterday I went to watch a moive with my friend arond my house . I was really scared and enjoyed it . Do you like scarely moive ? ? ? Of couse , Most are from Chaina , In Prticularly , writing and speaking skills . Today , I found this SNS and . wrote a leter read the paper and saied `` your english not enough `` This is one of my favorite tracks / songs from this album . My Colleage Life ~ ~ I major in Jpanese , which is supposed to be a time - consuming subject . At the beginning of colleage life , I considered taking part in some clubs , and filled in some forms to hand in . They 're all older than me , so I ofen recieve useful help from them , and I am grateful for it . After I got used to colleage life , the place which full of challenges , I began to think of how to balance the time betweeen studying and life . lots time everday . I attended a Japenese Speech Contest and won a prize . And from now on I will try my best to become a successful colleage student , no matter how many difficulties comes . Then I want to get my driver 's lisence . I think my memery is too bad , so I do n't like to remember words . The baby refused everything but the sugard yogurt and then the little scary frined burstout crying , my friend said . I have the same experence actually , so I could understand totally how much she was embarrssed . I felt guily so I hugged him for a while . The situation that the babies ' mother saw seemed peacful and perfect . You have to know how much your little dauther was stbborn ! ! ! Tokyo Disnyand ! Yesterday , I went to Tokyo Disnyland with my friends . Although we could ride only three attactions because it was very crowded , YOSAKOI is a poweful dancing competition and it encourages people . However , it is necessary to revise the policy on electronic power , given the disaster of the nuclear accident caused by the Great Tohok Earthquake . The main caractor Annie , who is twelve , likes running and drawing . Recentry , I 'm into DIY . My syster ` s boyfriend has sent me an invitation for this online game . When I started playing it , I felt bored , because I have played Travien before which was an exciting game . There is wood and other four luxuary materials from the other islands , so you can bring just one of them . There is researc , where you can invent new bulidings and other extras , there are gods ( this is a ancient Greek game ) , you can attack other players , and bulid new colonies in other islands , so you need to buy ships and bulild battleship . If you feel like playing , I can send you an invitetion to the hungarian servers ' Lambda ' and ' My ' : ) and I 'm new member on lang - 8 , I hope I can find some friend who can teach me some languanges , and of couse correct my English . Now when I try to say something in English , Japanese always comes to my mind first , althougt I still ca n't use ( speak ? ) Japanese fluently . My level is lower intermidiate . Yesterday , I went to an Italian restaurant with my wife and my Korian friends who are a couple . None of us can speak English well , but the funny thing is , we could communicate very smoothly because the pronounciation of English that my Korian friends speak was easier to listen to than a native American one . Mistakes my Korian friends made were very similar to mine , such as tense and singlar / plural . He always said that I should practice Japanese more while I am in Japan , because it 's hard to find a Japanses to practice with you in Taiwan . I study English very hard , I got 90 points which is over average about 30 points in every exam , and I like dacing ( jazz ) , I can do it well . In a word , this Golde was golden for the movie market . By the way , I will have fun with my famiry during golden week . As it happned , my wife - to - be did not have a TV either . Yesterday , it was my boyfreind 's 24th brithday . But in my opintion , all time is very important to me . I need to earn more money so that I will make my wafe have a wonderful life . I can not bilieve I managed to live there before . Our teacher asked everyone to choose a foreign paper , and interprete it into Chinese . He listened quitely . Sometimes he says his oppinion and I listen to it . This picture was teked in a zoo I heard that people in other countries are very interent in internships . This was my frist lesson at the art therapy class . ) During our frist lesson , The teacher told us , `` Please image your life five , ten , and twenty years later . Even when you are an old person , then draw the different periods . `` When I became conscious , it was nealy 6 : 00AM . The teacher told me that my daughter is not good at saying the multipulation for 3X8 and 2X6 . My son who is 9 years old , does n't like doning ( his ) homework . I have thougt of new good tastes that do n't sell in Japan . I hit my head hard on the floor so I feel a bit weezy . And so , I have to study some foriegn langauges . If you have an interresting in cooking and studying German , read it , please . My daughter is one year and therr months old . Wearing shoes is strange for her , I guss . In the afternoon I did my landry , baked muffin and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earier today and I will wake up at 4 : 30 tomorrow as usual , in order to prepare for the beginning of next nextweek . I think I can keep good rithm for my lifestyle this way . I like drawing with a boolpoint pen When I was a child , I often used a boolpoint pen for drawing . The boolpoing pen is thus useful for me . If you finished a midical colledge you have to be able to diagnose this case . Suddeny I felt something strange , and she looked ill . The way she sings made me think so , and she seemed to be very confident to sing and enjoy singging and such . But I really enjoied this race and I tried to move it to a safe place , but before I did , it got up and starated to walk . They are little Einsteins , totally free and always eagar to learn new things . Of course you have to be careful not to force them to do things which seem / are meaningful to grown - ups but do n't mean anything to kids ) , and you should n't expect any immedate results . What is an approoriate subject for small talk ? However , we should n't talk about money or private things such as politics and religion uless they mention it first . There are many advandages to small talk . Everithing stands on its head . This year we are repearing and liming our home together with my son . As the population density increases , various problems arise : air pollution , water pollution , lack of water , waste disporsal , and energy consumption . He enjoyied the long slide . But as I have been exposured to a lot of kinds of English on the net , Even though they have Indian accents they seem to be okay to work and live in America or other English speaking countries as members of socities . Are you interented in the news ? It 's very difficult to understand all the imformation , for example , political , economic , and societal problems . Some of my friends do n't even know who the the prime misister is in my country . I was really surpried and shocked . We eat fabcy dinner ( actually I eat KFC ) and cake , and drink sparkling wine Today is my birthday , but just like every year , nothing special or imporant happened the whole day . I think maybe because people are busy with enjoying their summer holidays against the extremly high temperature . I always feel it is defficult to talk about my work , Besides , if you leave Obi just tied simply , it 'll be loose because the cloth of Obi is broad and thick , so it needs to be delt with so that it 'll keep in place for a long time . I did n't go out exept when I needed to get food from the shops . But in this case , I used soy sause . But , I think it is neceessary to relax occasionally . I was hurt by a storong team , which is the top team in my town . finarry , I decided to keep playing baseball . My teammate told me that `` You are abnormal and you shoul see a doctor . `` Presereved flower lesson The rabit wearing green clothing is an easy - going guy . I saw a movie yestetday , because I felt like seeing one . My roommate recomended `` Skyline `` . UNIQLO is a brand name ; its corporation 's real name is The FAST RETAILING , established in Ube sity in Yamaguchi prefecture in the western area of Japan . UNIQLOCK was published about a year ago , and is popular among geeks and people who are fashion concious . It is known as a very fashionable and techinical screensaver . I think you will be suprised by the music and dancing . I know it 's important that I keep studing English to improve it . I will start studing by podcast from now on ! Today 's frist diary entry : My co - worker 's daugher has been infected by the swine fl I hope the Swin flu issue will pass soon . . So if you want to study Chinese and your native language is Englsih , you can contact me . leavesing your email address or send a text ! : ) / / / Ahetr that I could meet him at around 7 : 00pm . It was the first time in alost 2years . Every time I drink beer or some alchol , I always feel like going to Karoke ! I should be careful for not driking too much beer . . . These days , dengerous luds were sneeking everywhere . But I belive that God helps me all time . Those are very healty . Thus , women play an important role in the labor force . I wrote this entry preparing for the writnig part of the IELTS . Current Japanese custom of Siant Valentine 's Day is changing that girls give chocolate to their boyfriend for that girls give it to their friends . My Wacom Graphire3 tablet ( computer drowing tool ) Therefore , I decided to change school to implove my English ability . My new school is just close to my workplace and has a good enviroment . So that is why I 'd like to watch a movie without subutitles . We did girltalk in a cafe over a cupputino and small cakes , which made me so happy . A typhoon will get closer to Osaka my hometown tommorow morning . A professer might say something important about the exam in the class . My frist impression of him was not bad . I lov rock ' n roll : ) but I lov bossa nova too : D I often herad that many girls have no sense of direction . 2 weeks have pssed since I came to London . Now I live in an international dormitory , but I can not make any international friends here because my roommate is lso Japanese . . . We have similer pespective on many things . I find that he 's so funny and smart . Just before we talked , he put his message for me in the chat box , and it said `` I missed you . `` I was happy about that he had thoght in a similer way that I had . My ideal hause She boughet a new cottage resently , so she invited guests to it . It was a wondarful lake side cottage ! The lake is big and clear , and there is conveniene area . Maybe it 's difficult but I want to find an ideal house becouse we can not live in it Because I go library to studing English at 9 : 00a . m . In Korea , there are mamy holidays . I can still see the grape trelis of the neighbour . I 'm studing in college . Sunmer is soon coming , and I need to lose weight in a short time . Sunmer , I love it , but I do not love fat ! ! ! In has been rainy this week in Hyougo , and the weather forecast says it will be rainy untill this weekend . I had Nagasaki Champon and it was dericias ! I like Nagasaki Channpon . After awhile the Ex - president opend his mouth . I have to study mysel . In my oppinion : The reasons people read books are : This site is helpful to me , because I do n't have the oppotunity to wtite in English . Uncredably , we had to climb about 500 stairs to go there . It was worht climbing all the way up there , we had beautiful view . I carried out thier favor with pleasure . Boys be ambtious ! In some areas of China , if a family gets a girl , the husband treats his frieands with red eggs and if it is a boy , the husband treats his friends with the red eggs with one black point on each of the eggs . They will hold a concert which requir us to come wearing black clothes . We are in a room on the second floor of my wife 's parants ' house . It was very intrested ! And feel so happy eberyday - thanks for eating icecream . I did not want to watch such disgusting movies , but I am very a honest and sincere person , so I obeid his order . Most Singapoean friends laughed at me land said `` You pervert , How cheeky you are , This is not your PC but your landlady 's , Why did you do that ? `` . So Japanese goverment made a dicision to stop providing electricity in Kanto distinct , even including the capital city , from tomorrow . I like sports ( especially karate , table tennis ) , and I also traveling , films , and photography . I was alomost done . Only foreingers , Asian people in paticular , live in the city . If there were not Chinatowns in the city , Sdney would not be so active . You will be able to see its huge and beauticul Chinatown . Those discricts are not like Japan , but like China as well . I hate the English airtcle systems . So when average Japanese students study English , we are always suffering from these divils lol . If English speakers study Japanese , is it difficult for them not to use the airtcle system ? Warszawa in Poland is very famous for hosting the International Fryderyk Chopin Piano Competition . It 's a day for returning a present to a person who gave me a present on Valentain 's Day . He had a brother nemed Moon . Lately I have been thinking about how my life will be in the furture with my family and friends . Okinawa is an iland and is situated south of Japan . Okinawa has a unique culture , food , language and atmospher . I have nt decided on any of the trip details as yet , but it will be nice trip ^ ^ I hope I can go to Eourpe in the future . I have always liked Baroque music , espcially Vivaldi . Which kindda ofgirls do u prefer ? But it 's diffcult for me to talk to someone fluently . l am Mahi . I 'm a Japanese enjneer . I hope I can speak and write English , and comunicate with some peaple ! There was a few minuits blackout , because there was a power / electricity interruption in my house . Today , I watched a documentaly program on TV . I know that it comes from a famous Japanese cartoon and was reamade as a soap in Japan and Taiwan already . But , after I saw the drama with freidns , I became hooked on it . ^ ^ Although it includes unrealstic situations , and is sometimes hard for me to understand , the main actors , who are called F4 , are gorgeous and I ca n't [ find a reason to ] object to its popularity I 'm worring whether I can do it by the deadline . Not Japanses music . someting is wrong with my Skype mic . It is a tough month at the univercity , but there is nothing to do about it . On my Christmasmas list I said on my Christmasmas list She was diagnosed with a healty problem recently . I shoule keep a record of my body 's ailments . I saw the beautiful snow , but tempreture go down . One of the most beatful things in the world is watching a baby growing up . `` Kyle and nis men were able to take a great many photographs of the mountains below . `` soccer is played around the wrold . I enjoyed palying soccer . Now in the new millennium , scientific technology has increasingly advanced and the disparity between the wealthy and the needy have greatly enhanced . Some individuals have link the gap to the advanced technologyies . However , from an empirical view , I really hard - pressed to imagine how the spectrum of technology has attributed to the wealth gap since it gose without saying that scientific technology candecrease disparity between the wealthy and needy . To begin with , the proliferation of the information highway have taken possibility to the poor to operate a host of things , which would have been unrealiable two decades ago . Moreover , it is wild acknowledged that the mobil phone , one of the most significant inventions in twenty century , has transformed individuals ' lives into highly efficient and convient living , especially for the poor . By pressing a button , we can connect with anyone anywhere , which in turn enriches peeple 's life various and enables the human race living in different economic statuses . I guess I need much more vocabulary and a large amont of reading . becaouse I run out strange things I remenber that I hav n't been contating my boyfriend for a long long time . I have taken charge of all arangements of on - the - job training . Today , I enjoied my time in my house until my work started at 5pm . Every day , my work starts eary in the morning such as , at 6 : 30am , so I went out before dawn . And as I get older , there is an increase resk . It is intelesting . Since we frist met , we have spent a lot of time together because we study at the same university and we always take the same courses . I have a constant headache these days , especiallhy when I hear loud voices . I love to plan birthday parties for my childen ! Last week , I met a strangth man . It has many kinds of issues and organiged by the level of difficulty . So , I do n't know my futrure . . . The reason why Philippin and Indians can speak English is because they used to be a colony of America and they had to use English to live a smooth life . Firt of your questions , I think the most popular season for wedding is spring . It is weird : ) Maybe she asked the cabin attendants to write a Japanese message on her expensive bag on the plane lol She also said when her funs see her in Japan , please write a message on her bag . Today , I am going to go to a phote shop to get a picture of my family taken . I liked to see them suck saps we fed them , and occationaly fight head to head over saps or females in the plastic case at night , as they are usually nocturnal . Fishing was also my faborit activity when I was in elementary school . This morning , an insureance lady visited my house and offered me the same job she does . That was very annoing . The first time , it was an old event during the Nara period . Today is the turn of the season , We have distributed medical harb to avoid sickness and misfortune . I thought that this site would help ppl who wanna improve their laguage skillz yea I know I have & nbsp ; this lonely diary which also can help my studing The first thing important in education is knowlege . Education gives us the knowlege of the world around us . Education is not about lessons and textboxes . It is about the lessos of life . Again Auler , this guy never stopped . He always speaks like , `` Let me brabrabara , `` or `` Please allow me to brabrabra . `` I learn many things about both English and mathematics from him . As the Beijin Olympics started a few days ago , I think many people are interested in this topic ! Ryoko Tani coud n't get a gold medal , but she got bronze medal . I went to the Nas & Damian Marley Japen Tour yesterday . They performanced for about 2 hours . It was very exciting , so I watched it 15episodes in one stting . So I WILL get it inthis year because The employees do not need to math or hire accountants to get their tax return . However , t people who are self - employed , landload / landladies , or have certain types of expenses over $ 1000 , have to report for their final income tax return . It has been rainning in our city for several days . I felt so bad . evrything is bad . He is a budker , who does acrobatics very well , usually performing in the square of Xinyi Vieshow . It 's exciting to dig an unknow story . I think this site is really useful for people who study foreing languages . This weekend , I 'm going to run a marathon race whice is first time for me to run 42 . 195km . Now , I 'm a team leader of ekiden whchi is a relay race run by four people , with each person running running five kilometers . I want to lead to team the trimpth , and so I want to have superior record . But many Japanese think that they are reluctant to devorce if they hold a wedding ceremony that costs much money ! ! I am annoyed by my toothache , but I 'm looking foward to going to the dentist again . According to the newspaper I read recently , it is easier to get a high salary person to produce high quility goods than a low salary person . Furthermore , in my case , when I worked with a low salary , I couldn n't gain any interest in my job and I answerd yes . . . Since I had just gotten out of bed I was still in my pajyamas . . ( ^ ^ ; But he said that he was traveling around the area and suddenly thought tha if we ( my family ? ) were home , he wanted to come visit meet us . Anyway he is very cherrful person , so we had agood time . I think I need to take some gift to him this firday . Do you think a bottle of alcohol is a good idea ? By the way , I was supprised when I came here . I think Japanese have difficully accepting people coming into their houses eccept themeselves and their family . My girlfriend chose Greenlatte latte . I chose hot choco . We ate toghether ( without our boss ) and my colleagues liked my dishes . Every time when I promise others to fulfill an assignment , I can accomplish it very well even though the task seems unconqerable . Moreover , I am afraid to dissapointe others rather than I myself . I like differant coffee . When I 'm sad , I drink cappuccino . When I 'm deppressed , I prefere black coffee . I used to limit my time to 30 mins , but 10 mins is more intensive and makes me concentrate more . It 's a time when many people make thier resolutions for the whole year . Keep your fingers cressed ; ) However , it is difficult to keep my tention calm when she seems not to hear me , or does the same mistake . The sheep was finally found by the sheepherd and felt relieved . I am Booddhist , but unfortunatelly the temple generally do n't give this kind of service periodically for small children . It must lead to increasing of the enthusiastic Booddhists in the future . defferent world I overslpet this morning I put ong my clothes hurriedly and went out . Becouse I made a mistake . So please tell me how to study Speeking English . Seriously , it was supre expensive ! I found many colorful fighting airplains , flying in the sky . Then I relized it was just a dream . Hi everone ! ! ! ! ! ! ! I bought two puzzles because te puzzles were on sale . For about an hour we continued walking , visitting many offices , ascending and descending stairs , and opening and closing shutters . I must go to take a shower and make myself beautyful ! Sceneries of destruction broadcasted on television make me sad . I will go to convinience store to make a contribut tomorrow . My boyfriend went to Guangzhou to make clothes for his fashion desigh competition . I was happy becaues I helped her . I lack fhysical activity . However , I think there will be a lot of professional athletes competiting for China . I 'm really sorry that I did n't talk a lot with my frinend . Even though my feeling is not good , I had enjoyed the time with my frined , I dont n't like a person who says , ` Because I am a very busy person , would you do that ? ` But these days I think about my studies and how I can develop my skills in languge quickly all the time , so I 've been trying to find some books that will help me to learn this languge . Acully , I like to study many languges . I am a teacher , I teach chemistry in seninor high school . The text is about well known people and their privat lives which nowadays is often exposed to the public . The author of the text gives us a shocking example about a policman from Los Angeles who used police computers to find out privat information about the stars . Probably the policeman searched the information about the stars in order to sell it to celebrity magazines , and the police database as well as the internet are places where privat information about stars is really easy to find . In Japan , the age of aduldhood is 20 . But now , I do n't need to drink alchohol secretly . But she playied very well . when I used I - pod nano , the bettery of that would be really fast gone but now when I use iPhone , the bettery is longer than it ! I am goint to my family 's at about 17 pm , I think . I want to orvercome those problems , so I registered for a new site . ( Really , although I have registered for it , I have n't used it bcause I thoughtmy PC did n't have a mike . Recently , I was asked which train to take by a middle - aged traveller on platform 15 at Sinagawa station . I worried about taking the TOEIC Brige test tomrrow . So , Do other countries have TOEIC brige tests ? The TOEIC brige test is a primary test . I do n't konw what to say . And tomorrow it will be hotter ! uuuh - where is the rain ? . . . Today , I was fainted at a morning assenbly . To make a friend learning a second laguage is essential . My freind , who will get married in May , and I went shoppint to look for material for her wedding bouquet . We finally found the best flowers , my friend smliled beautifully . I 'm not fimilar with the company . I went to stydy with my friend I went to study with my friend today neare the BTS saladang We have been studying English and Thai for a long time . I was happied to see her today because last wenesday I did not go to stdy with her . I had forgotten whather I had an appointment to study Chinese with her . I was happied because she was not angry at me . Who said sorry noy , I am busy very much at the moment . I was reading your diary already , I see that you have improved . Thank you for reading my journal entry all Japenese and English people , have a nice day . . . . . . . . . . . . I ca n't speak English well but I have to stduy English . When I was walking on campus on the way to pick up my car , a woman stopped me and asked me the way to the Pavollian . Copy or Hommage ? McDonald 's Happyset Set for children is nice for adults too . If you have a coupon from the mail , you can get it cheper . I am preparing for the TOEIC exam . The test is on Novemver 31st This is my first time to write an English daily diary on a webside . KAWASHIMA will be traded to another team in the Plemier League ? I heard West Bromwich Albion FC in the Plemier League made an offer for him , Nxst October I 'll run a marathon . Now , I will parctic it everyday . I 'm still a student in a foreing country ! ! ! ! ! ! I do n't know much vocabrary . I have never written this kind of sentense before so I will try to write it by following my book . I take comfort in watching sitcoms on my labtob . Although it was morning , there were a lot of people , especially forein visitors . We bought some souveniors for our family and friends and afterwards , we went to Tokyo Station to take a bullet train . We returned with a lot of stuff . My neme is Aya . My idea is you are either a victim always affected by ur external environment including people or . . . I went to `` Ryuichi Skamoto 's Piano Solo Tour 2009 `` on Aplil 2 . I promised myself that I write a story here onec a week at least . Summary of plan of a new Microsft operating system Seriosly ! ! Here is the reason why job - hungting in Japan is terribly complicated . Therefore it can be a huge disadvantege in job - hunting not to work at a company right after graduation from university and to be `` KISOTSU `` . - Dream colaboration - He continued , `` This stabucks works in colaboration with Tsutaya ! ! Khabarovsk is a large city in the Russian far east and it takes almost 2 or 3 hours to get to there from Tokyo by airplane . They built cars for competitions and later , in 1947 , also began to make deportive cars . It was so windy that my kite flew vely high . I remeber my first shopping experience on the Internet in 2003 . I had scored some points , and althoug my colleagues helped me , I could n't continue playing . Some would just fulfill thier ( sp ) passions for languages , studying different languages and exploring different countries , cultures , histories , cusine , . . . . . . Then I got 2 tomatoes from my appartment 's owner . Robert 's fale skin & Tayloar ' abs were fantastic . . . . maybe the movie 's promotion stragy . ohter is in charge of the wedding car , Married couple keep it as a memoy for all their lives . People usually thinks marder is absolutely a bad thing . ( I do n't think it makes sanse , 'cause that should n't be a reason to kill people . He was arressed a few days ago . I might be able to improve my English speaking but my grammar is horible . So I want to ask everybady how do you study a foreign language ? I will study more and master it to bocome a more sophistecated ( resourceful ; ) man . TV news about Greece remainds me of the trip . We enjoyed walking along the seashore , eating greece dishes , and cycling aroud the island . It was very windy everyday , and it was cool to swimm in the sea . The preparetion for the presentation this week , household tasks . . . We are living with problems . Work problems , family problems , money problems and stuff that we have to solve . If we can not solve them , we will feel a little bit down . So we need to vent and relax to balance our life . We can go out for a vacation , watch a movie , listen to the music , do some exercice or just have a nice sleep to make ourselves better . Sometimes I do , and I have a lot of ways to relax . everything is possible , please belive in yourself and action now . If it is good , I 'm going to apuire my driver 's license ! I wrote them exploring the Korean - Japanese dictionally very oftenly . Today is Easter ! I think all of us should remmber the Jesus ' death . I 'm just going to get a pirt - time job . But we could visit only two , because I did n't wake up early - _ - ~ ~ ~ as usualy . When my lesson finished , we went to centr of our city and decided to begin from there because there is many of temples and other religious organizations . In a Japanese map , Japan is located in the center of tha world . I do n't know if he acturely meant it , 'cause I am planning to go somewhere for travel after the exams are over . who knows from wich country you come from in order to help me on this website . Just a qustion . I watched Doragon Ball a little while ago . Doragon Ball is an old Japanese animation . I love Doragon Ball . It is not too much to say that I grew up with Goku , vegita , kuririn who are characters in Doragon Ball . The heat wave is espected to continue for a while . I 'm looking foward to the cool fall weather . The thunder was so intense that the windows trembled and car alarms signaled . I will let my shop open in Apirl 1st Maby , it 's time to give up now . Even though it is still late June , the air temprature became 31 degree celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insulance . My duty still continues , when I finish to talking to the boss , I have to go to a motor bike shop to renew my bike insulance . He is a mentor in my life and offered to support me financially when I dicided to study in the Netherlands . Recently he offered me finacial support again . I emaled him this morning about our plans for tomorrow . I dlink heavily ! I want to go abroad in summeeeeer bacation ! ! The demerits of capitalism would be if you lose in the competition , you may not get a bonus so the system is good for winners , but it may not be frendly to loosers . So , in a capitalistic society , there is a need for a safety net so even the loosers can live happily as well as winners . It 's required to live abroad or if you work in campany which requires you to speak English . `` and they ( in their cars ) slept for one onenight . Now , They have been rescued by the Ground Self Difense Force . And finally , the snow was 138cm ( = maximam ) between the 25th and 26th . I 'm boared . . . I miss my friends , but it is hard to meet them for various reasons ; marrige , moving . . . But I thought `` If I do n't say anything , my partner ca n't tell me anything `` , so I said everything I just had thought with courege : ) I dicided to join an English conversation school called `` Rare Job `` today . I appllied again and I succeeded to recontract for more 2 years . My mother maneged to even go skating . I was suprised when I heard this fact . I think `` a couple of `` is a usuful expression when you speak English . Moreover , gasoline , which is fuel for automobiles , is made from fossile fuels such as coal and oil , and the process of making it may also need fire , which casue CO2 . For example , the higher the global temperture is , the higher the sea level will be and as a result , some ilands will sink . Of course people who live on these ilands will have to leave their country . temperture has been increasing . If global warming lasts , our lives will be destoroyed some day , and these effects are mainly caused by driving automobiles . According to recent reseach , we can get more than 80 % of information about other 's characteristics based on looks . This means that when we make jugement counts on appearance , we can know his or her characteristc It 's very simle to understand and full of obvious cases . I like playing video games on Xbox360 and listenig to music . That 's all for my intoroduction . I feel like I do n't want to do anything all day lomg . So openig the window and checking the weather is the first action I do when I wake up . It was nearly terrbile . Sometimes people in forign countries do n't understand it . Tiger Woods has forteen girlfriends . Maybe the action / activity has to be a single , atomic action for the contunuous tense usage and the difficulty is the consideration - is an action is a single or , actually , it is a set of actions . 30 ( Mon ) was a bank _ bankholiday in the UK . Self - introducton Hallo everyone . Especially on the first day , a very sexy and beatuful woman Singer ' IVY ' came She works at cosmetic comfany . I paid for the meals for my freind when I did n't have money to pay for it . I apologied to my freind but she seemed to hate to pay for it . I negotiated with my freind who will pay for the meals next time . We usually call each other very often , sharing all the small ditail of our lives . I think it 's tastey ? ( It seems tasty ) It 's a good thing to learn a new language from a profetional teacher . Akira is a member of Exile , which is Japanese pop music groupe . They are childfood friends and Akira is four years older than Masami . Of courese , I have the original Japanese version . It was my third time and quite intetesting . : ) And what I noticed in the class is that there are many Americans who tend to drive agressively . It 's gon na be rediculously expensive . I talk to my parents on Skype evry sunday night . English instractor murder case Recently in Japan a popular topcs is who youg man killed english teacher three years ago . As you know , the other day a major earthquake hit Japan severly , especially the Kanto area , and a lot people there are facing many difficulties . For example , acording to reports , they suffer from food shortages and ca n't get enough sleep . To be honest , the earthquake has little DIRECT influence on our daily lives . ( Of course , it has many inderect influences on us . This is shown by the fact that I 'm very very worried about people in Kanto , partly becase many of my frieds live there . ) But I 'm suffering a kind of setbak . But at the same time , I also think I manage to brush up my speaking ability to some extent by reading books or listenig to many materials in English . So nowadays I 'm reding a lot of newspapers and books and watching videos or movies in English and thinking how I can get a chance to express myself in English . My hobby is listenig to music and playing bass guitar . For example , I knwo the phrase `` Lehman shock `` , but I do n't understnad how it effected the World Economy and ca n't explain it well . Now I am not a student any longer , so I think I need to have knowlege about these things . Therefore , I borrowed a book called `` To the people who became working peole without understanding economy `` written by Akira Ikegami at library . I hope it hels me gain more knowledge to understand the economy . I exactlly dislike reading books , but I try to do it little by little . I watch it whenever I have free time like afer work and / or on holidays . Write to me , pls ! In a large scale company , it is difficult to evaluate each emplyee 's contoribution to their company . So even if someone could achive his best result , he can not get a bonus because of his company 's loss . I 'm not surprised because the March disaster in Jaspan was broadcast all over the world . Many Japanese artist apper in this one ! ! It would be a Japaese - English word ; it means that ladies - talk about female - particular things . Recentry I have found a need to study English again becasue of my Job . I think it could be a good practice for me but I feel it 's more difucault than before . I try to continue to do this listeninig . PS I love tennis very much so I play it 2 or 3 times a week , and if I find some free time I would search for a tenins movie in Yuotube with a term such as Federor etc . If you like to watch or to play tennnis , pls reply to me hopefully to be my friend ! It 's a fasion magazine in Japan . Some people may say that there are not as many places in their office , where they can somke , as before . Well , it isnt n't something I should think about . I will go to bed earily and prepare for the next day ! ! After the East Earthquake , two manths had passed quickly . One of our deals is to combinate our products with 3rd party products . I want to make friends who are intersted in learning English or who like traveling . I study English at my univercity . Actually I had my first experience with a Pick - Poket . Then I checked all of the pokets but unfortunately could n't find it . In the capital , Ahens , the average temperature in January is 10 . 1 degrees , and in July is 28 . 0 degrees . It was a remakable experience and intersting but I have to go back to japan . As you know well , Japanes is a minor language . And I know it 's very difficult in many aspects , like grammer , 3 different characters , pronunciation , et . . . Also it was so difficult for me to understand what the newscasters were sayin on the TV . This song is famous because of its lylics . Her future self writes back to her 15 year old self saying that it would be all rihgt , I am an adult now but even I still have difficulties but I am doing well so please do n't cry . And y friend tought me about that . It 's hard for children to jugde which is right . In addition , students only put a lot of informaiton into their brains in schools . However , vigorous pictures and unforgettablely vivid sound would be engraved in their minds . Brazil ( Burazil ) , Korea , Iran , and Japan . Proberbly , my speaking skills will be better and better if I more phrases in English . I like this phrase , ' I could eat a horse ! ' it means that I amextremely haungry ! My first dirly . Can we call them or their ancestors ' wild ' , or will they never be categoried as ' wild ' because they 've once been tottaly domesticated ? Now I have started reserch on subjects which I will study next semester . I studied aesthetics at undergraduate level and planned to contine further at postgraduate level and aimed to acquire an MA in that area . According to the professor , 3Ps ( Poverty , Population and Pollution ) are the most discuessed topies in the aid organisations . I can understand it , but these topies are too broad to choose a specific issue to write a dissertation . I , however , However , I didi n't speak and write enough to communicte with people . Because of the big / recent earthqueiqe and tunami that happened in Japan this year , so there is not enough electricity in whole Japan . Many companies in Japan take more holoday to save electricity as usual . Stimulating the subconsious may help your memory , That is very beautifull . Last week I had a bad job ( experience ? ) with one of my supervisers ( bosses ) over some issue . We had a good time at some Izakaya over a couple glases of beer ( called ) chu - hi . I will study at an English language shcool for ten weeks . Do you agree or disagre ? A person should never make an important decision alone . There are many famous people who successed in their fields : like one of the greatest entertainers , Micheal Jackson , or a good Japanese baseball player , Ichiro . Famous successed people surely put in a lot of effort . Given such points , I strongly reccomend you think that way . On the first harf , the Argentinian scored two goals . I Caugh a Cold . I 'm feeling realy bad today . I am so sorry that I can not reply to some of my friends ' e - mails puntuality . Unfortunatly , summer in Russia is not long enough to spend it at home . As you know , Hong Kong is an internation city and the financial hub of Asia . Thus , there are a lot of ppl who have differnt nationalities . Anyway , Hong Kong is located near the ocean so the humidity in Hong Kong is incredable high . I think , due to the high humidity , Hong Kong ppl have great skin ! ! I really appriciate his meeting with me . Many artists live in this area and we can meet them and theri artworks . When I was choosing some food and there was a cute kizs . The boy said to me that one item was not so good , so I should choose another . I chose the one that he reccommend to me . They seemd like westerners . I was moved and appreciated their bravey I 've decided to keep a dialy in English starting today . I was hit by a car and broke my collar bone durling my time in the US , so it 's a little bit hard to use my hand . . . the Instruotor of level 4 is British ! I went to sleep at 9 pm the day before yesterday , and I woke up at 1 am yesteday . . . Today , We shot a musci video . So , it is not that uncorrect . It was about 3 best friends putting message on personel ad for finding boyfriend / girlfriend . Invoice that you added was also witten 1 of it . Of cource , I will go to temple to worship with my family . My town is surrounded by mountains and nature . There are some rivers nearby where I raft and sometimes go fishing with my father . It 's reale peaceful . If you search for the city on a map , you 'll see that it is situated in the Ural mounatains . Some tourists are very dissapoited with this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains , and if you come there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( you can see on the first foto ) I could n't sleep because I whached football games at midnight . So unpleasant - to feel youreself strange , empty . . . I want to feel reflesh . I hung out with my friemds ( today ) . college entrance examnation the college entrance examnation is the most important exam in every chinese student 's life . this is a brief introduction of our country 's college entrance examnation . I need your helep . The first English book I could finish reading throuth was `` Fried Green Tomatoes `` . I could finally tet to know the details of the story and And everyone was quite friendry . We should 've talken beforehand about which foods we would be bringing . Who can help me ? I have a problem with myself ( in my spirit ) . I ca n't escape my past . Those were my bab things such as being belittled because my grades were very bab . during the time it took them to leave home , Bae - chu came constantly to eatting . Light polution They are for advertising , commercial proertyies , offices , factories , streetlights and illuminating sports venues . We should trun off the lights for a little bit sometimes so we can save energy and retatining the ecosystems . So now let 's be responsible and clean the sae . I bought an ambrella for my friend . How wanderful the life is ! About TOIEC I decided to take an examination of TOIEC . I want to improve my English fsst . snd I want to work all over the world . They have a rule that limits the number of foregin players in the team . He gets a title and is proud of himselft . It touched me and I borrowed the album ' ( What 's The Story ) Morning Glory ) from my friend 's firend , then I found that all songs on the album were so wonderful ! I counld n't hear what you said . And , when I got a mail , my heart is very hurt , , , nervus . At that time , I was realy tired and sleepy . A percentage of the audence `` decrees `` the success of all the work that is behind this show . The winners are chosen by an audence , who can vote for his , her favourite singers by a phone call or a text message , with a code number , and by a jury of quality . I am a lazy person , and I often give up on my diclaring . Because they study hard foriegn lungage for various goal . The reslt of self marking was bad . After we knit the things , we sell them on the free market or donate to instirurions . Becuse This culb will recess from December 14th to January 4th of next year . It is the last piece that we need to finish the shape of our blanckt . If I could speak English well , tthen I would n't have to study so much and working in Canada would be easier . The Game and English Cnversation Programs This is my secound time staying here . So I want to change my email addrses Tracy Whiteny , the main character of the story , is a young , beautiful , and intelligent woman working as a computer operator for a bank . Ielt examination in Septembe I would like to learn Engish . Only four days more and I can be back home . Also , I 'm beginning my summer vacation . I made a plan for this vacation . I want to join my cousion 's company and do work for him for free . I also think I can get more experences . He bouht some souveniers for us . I think many Japanese people would n't want to eat a snack with a colar like that . I need background knowledge in order to be able to obtain higher schore of TOEFL . Anyway , I will buy a magazine called ' ' English Journal ' ' , but I do n't know whether it wiil help my background knowredge . His skills are unbelievablly fantastic ! My firiend and I went to Ansan where my friend J lives . We ate a lot of food in a familly restaurant called , `` Vikings `` . I will go to the market and play with ma dgs . I wish to go to america and study aborad in order to get job in the near future . I hope I can find good friends to study langage with each other . Yesterday , I was very busy becuase I had two exams , three classes and two tutoring sessions . When I went home , I just sat in front of the computer to watch a few vedio clips . I hope I am not depressed whatssoever . Yesterday , I wacthed `` The Lion King `` , the famous Disney movie . The blue backet has polka - dots ( on it ) . If I speak English , I would like to visit many contries ! I ca n't express in Englsih what I want to say , so I need to study speaking . And I want to belong to community , then I would like to make firends there . I was so excited beacause I like this brand very much . So he will be preased . In fact , Napels is famous for its pizza . ; D It 's intesresting for me , not only because of the story but also the illustrations are great . Unfortunately , I ca n't put the link of facebook on herebecause the national network control centre has banned it , so I ca n't connect with my friends there . My skin conndition is pretty good and I hardly feel itchy . As one of the menbers here , I will do my best to communicate with others and write more dairies . I think I 'll be suceessful and change my way one day . He was Continental Delegate of the Congress , Governor of Virgina , State Secretary , Vice President of the United States and President of the United States . I would have oftem remembered and dreamed of it . Today I studied about FrinedFeed ( URL This service is very useful for me to serch the information that I got from each service . I 'm waiting crection from everone . But I thought for a long time and I decised I will stay this way You go abroad and meet good friends who have different cultual backgrounds but they make you feel that there is no border among us when it comes to friendships . Are the idioms and slungs which are on the books still used in the world ? If not , how can you learn new idioms and slungs ? At first , I was not so sure about this observation because there was an exception in one person , who works regularly but has the highest operational capabity in the ship ; he can fix almost any mechanical failure which occurs during operation . I just went over to Yokohama where my ancle lives . Finaly we rolled them carefuly , and we 're done ! ! ! Anyway it 's really nice to eat sushi with sutudents . What are the important things in a restaruant ? we should always provide a warmheared to them . comply with customers and give them high quanlity service . As a profrssional . I do n't doubt that we shoud have this as standard . Howz 's everyone 's day going ? I already knew there is no clearable answer I got up dazy to day my bain is so confused because I have not slept enough . I love to travel to unknown or bautiful places . But , I will do my best to overcome all my proplems . I thought `` cash out `` was unbelieve , because nobody withdraws cash in a supermarket in China , but it happens in Australia . We have few factories that make bats or the other baseball equitments , so the bats and gloves , everything except clothes have to be imported . Thenks for reading my bad English diary : ) We parked the car nearby and had to walk to the site because of the traffice control . During the event , we saw a magic show that was perormed by a good - looking yong couple . However , when the midnight came , we could see two firwork shows from her balcony at the same . Today was the frist lesson . But I looked like the most foolish person in the calss . Recentry occurrence We have n't played on playground equipmet for a long time . After that , we climed to the top of the slide . Regarding the meal , some fancy dises were served . But he did n't emphasize the safty of the food . Trimming is important because it is easiear for germs to adhere to the surface of the raw beef . As a result , his restaurtant caused food poisoning and killed four people . The purse was 81RMB . For us , it 's not that expensice since the purse is of high quality . It is actually extream hard work to raise two newborn babies at the same time . I read an article about the stress that an older child expriences once a newborn baby is born . anyway , we have done it , all we need to do now is waitting for feedback from our customer . Camping `` Twilight `` and `` New Moon `` , I parefer Twilight , because it is more romantic to me somehow . I was really excited to see kangkaroos in the wild like this . It 's quite diffrent from Japan . I 'd be grateful if you correct my Enlgish . Alsmost everyone , no matter if they are yong or old , male or female , they are keen on it . It is really a challenging work since there are so many books , at least one milloin . I like reading , so next time , I will spend a lot of time there to broaden my horison . Oh , I remember that I want to inform you that I am going to change my tiemshchedule so I wo n't write so often later . The doctor diagonized that she suffered from hemorrhoids . So she stubbonly killed her desire more than ever . I 'm a sophmore at Hanshin Universty . I 'm a South Korean girl and I 'm very much intersted in English , French , IT and electronics . There are radioactive contaminastion , earthquake and tsunami in Japan . So , I speak English at the school , but I usually speak Swhili in my village because most of my neighbors ( the families of my cowokers ) can not speak English . There have been cases when / where a dead body was disvovered after weeks or months , and this was only because the sthink spread all over the building . [ spread = spreaded ] I wonder if I can get English skills now , even though I 'm over fourty years old . There are so many beautiful structures influenced by Christan and I had harad time to forgetting it . If I want to talk about things that I like , I can talk with others who are intereted in it . Each person has thier own tastes . Here is a vedio clip , from the movie [ The taste of others ] . No doubtly , natural gas industry is the most hopeful industry in China . If you find any mistakes , especally grammer , correct me . : ) Cuz , thier MC and performance was fun ! ! But I can not go for a warking holidy because of my job . So , I have got a lot of chocolete as a birthday present . I like chocolete , but not this day ! ! I hope to study abroad and work oversease . I have n't been writting here not because I am lazy or anything but because I do n't really have time . I played the music `` Silk Road `` composed by Kitaro at the rehearssal . I ca n't speak English well and typing farst . I 'll see the club member of the univercity . I was a part of a brass band when I was an univercity student . Now I 'm a little neverous . My company 's global language is Englis , however I can not speak English well . Some of my classmates plan to go abroad , and some prepare for gratuate school exams . Though I like to read , I amd not really good at English literacy . Hello , friends and teacher . I went to university today to prepar averything before recive the cetificate today . I paid a lot of money there for the picter and my dress and associate old student um . . . Recently my yonger classmate Raquel told me that there was a website which helps people to practice languages that they want to learn . There was a piture of Carl Lewis in a textbook . It cost nerly two hundred dollers to join this party , I got ta say . Hello , my wuderful friends . Do you like to listen to a story before you sleep ? I like it . Today we had violn class . But the theacher keep saying ' hold your violin up ' . Tommaro is the concert ( sort of ) . We 'll play violnin at school library . My brother 's girl friend is Tiwanese . This year , in Sptember . . . . Article 9 of the Japnese constitution states that ( 1 ) in order to aspire sincerely to an international peace based on justice and order , the Japanese people forever renounce war as a sovereign right of the nation and the threat or use of force as means of settling international disputes . Anyway , I had an amezing time because Japanese people would never imagine meeting famous people in person here . After I came back home , I tald the story to my friends who are native English speakers , and they all told me how stupid am I . . . damn . Yesterday evening I snoze several times . I will stady English very hard . Actually I had been suffering from my knee 's pain I got last Decenmber , therefore I asked him some advice about which exercise would be good for my knee 's rehabilitation . He kindly taught me some streching exercises and how to use a machine execise and I did them for a short time . I thanked him very much and decided to go to that gym regurarly . The Healh Minister is trying to convince poeoples of this . Medicine services should be free for everyone , poeoples want to feel safe in the hospital , no matter how much they earn . He is good with childen , never barks ? to people , and always stays by my side when we go outside . Winnie the poohy - My review I do n't know why but I loved him and his friends , Piglet , Rabbit , eyo and so on . The charactors are very cute but not very clever . Yesterday , I went to Yoyogi park , which is located in the cener of Tokyo , and saw the cherry blossoms . Because of tragidal earthquake and Tunami Fukushima nuclear power plant , which supplied energy to Tokyo was dameged . Both its functions but especially its appearance appealed to me . ( Or , `` I was attracted not only to its functions , but also its appearence . `` ) It 's a technique that applies pretty seals or pictures on things with glue , and the things that are worked on are glasses , prastic bottles and wood , etc . . . We could enjoy verdant scenaries anywhere when we stayed there . In 2005 , the black bears surrounding Toyama risidents were a controvercial issue . The lack of food in the moutains would have made them dare to risk their lives by coming near populous regions . Japan won against Arzentina in today 's soccer match . I the enjoyde Chinese lunch , night view and shopping . My room , my colothes , my brother , and so on . . I go to coleage . She shounldn n't . There were a lot of poople waiting to find out if they were one of those successful candidates . I was quite anoied by the important items on the agenda . These lessons are fot the TOEIC test . During the lunch break , I was suprise to see my friend disguise herself as a `` Pokemon `` . I want to hold a halloween party , like how & nbsp ; Amirican students do . I wanne go home ! to make a centence . My job is in the service industry and mercandise management . Anyway , I will ask him to read it because that day is really importent . . Have a good weeken . Recentry , it has become hot . I would like to learn English and I regestered on this site . She is tierd in these days because of daily child care . From thenon , I often went to him to learn English gramer and vocabruary . I used to wear brown contact lense for half a year . Although I know that contats are bad for our eyes , I did n't believe it . And all the families are talking abot it . While I wathed it , I was able to study English and catch spoken English . One day I want to speak engkish like that . becaouse I want to study English more than I want to study finance . So I waited in front of the door , and then I entered it on opening time , so I was the first cutomer today . My classmates from elemantaly school I saw my classmates from elementaly school last night . Besiedes , the cruel corganizers of this test put many difficult and rare English words on it without any hesitation . The lestning comprehension part especially is super difficult . On top of that this test has 200 questions , so if we come across successive difficult questions and we can not propely answer , we would be FUCKIN frustrated . If I can not obtain a high score on the 29th of January , I promise , I will assssinate the organizers of this test . Becuase my PC had some problems , I could n't connect to the internet . I had never been to an American school , and I was impressed with the classroom , corridor and stutends . I was happy they tried to speak Japanese as much as possivle . one is singing a song , one is playing a guiter , one is playing a dram As each Mr . children 's member has good skils , Japanese people have benn inpressed by their music . Ispecially I recomend you a song ' ' HERO ' ' . Now it 's rainny outside and it 's very cold , I really miss the sunshine and the temperature in the south . Open Univesity It ` s my first day to know the Lang - 8 , I tried to use it once and successed . Have a nic day ! I am going to go somewhere for my English and IT skil . I work for a real estate company as a sales maniger . And I like hanging out with my friends and finding good restaurans / bars / shops / etc . I ca n't hear them because it 's a noizy place . After that I danced with a philippine friend . He could dive under the water without breathing for about one minite . This winter is expecially frigid . Do you know the player Ichiro on the Seattle marinners ? When I had online lessons between Japan and Indea before , there was no problem . I 'll play with my frend next Sat . I wotch the news every evening . It ramains to be seen whether it is feasible or not . Tomato sause I made tamato sauce today . If I had had more energy , I would have gone to a fitness clua . I am going to go to a Taiwanese restrant for lunch with a coworker . The reason is clerea ! I ` ve been to Go - kon party when I went to collage , but people say there is something diffrence between student ` s party and office worker ` s one . I think office workers tend to join more seriouly , because they have less chances to meet other people than students have . At last , I went to Utah USA 2years ago to study English & teach Japanaese in an elementaly school . which were some hand cream , body lotion and shoese . It will be hot in this afternoon , so I 'm goinng to clean the bathroom using a high water pressure machine . The good things waiting after that include drinking beer and taking a nap in this confortable weather . I love my new jod very much , and I cherish this chance . The wather has been cold for several days . Of all the sessons , I like spring the best . . Engrish is a funny English expressin by a non native English speaker , especially ( by ) Japanese . ' All your base are blong to us ' ( AYBABTU ) is one of the most famous and popular Engrish expressions especially amang Internet users . They are not very famous in Japan now , but I belive they 're going to be famous soon ! Thanx for reading . Do peaple who live in developed countries and are not materialistic ( ? ) think so ? There are many kinds of food which are not expesive and taste good . So , my next big journy is next summer . And I hope my englisch is n't too bad . So that everyone that reads this can understand what I wanted to say . . . I want to be a goood student and a good girl this year . It makes me very happy to have an Amrican friend named Almir . ^ ^ . My specialy is sculpture . And I must draw [ ? ] every day . I admir them a lot . I 'm a writer for Japanese daily newspapers and magaznes . He taught me ' GO DO ' ( name of a tune ) which means we can do anythig . She passed the entrance exam , although I was surprized . Jacrine 's books describe girls with big troubles , who grow to be independant . He 'd like to play a guiter someday . Thanks for reading my dialy . Plese correct my diary and be my friend ! It is hard to get interpreters if the language is not so commo , for example , Swahili , Nepalese , and so on . . . . . Long interview take almost all day , while short intervie takeonly 30 minutes or 1 hour . I lirerally ran to the nearby supermarket and purchased a steriliser . ( x _ x ; ) It seems the temperatures in Sptember and October will be higher than the average of the previous years . . . It 's becausr of the tuition fee . The coreography started yesterday . I will do my best on my essey . When a woman is stressed she instinctively feels a need to talk about her feelings and all the possibel problems that are associated with her feelings . finding solutios to her problems I 'm worried that recent Japanese youngstars tend to go to various foreign countries and know much about foreign countries , but they know little about Japanese history . For example , I magage to write this sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . I mean if an Egnlish - native speaker is very good at Japanese , is she / he thinking in Japanese first ? Hi , I wanna meke some foreigner friends She also says that I 'm not paying enough attention to French because I started with Japanese this year , and it makes me really anrgy because you have no idea of how much I enjoy studying Japanese . Finaly , I transferred my day off from today to another day . Then I will make pikles Chinenses and eat that them with curry . I belive in your help guys : ) We choiced `` OMIKUJI `` for the fifth time ! ! In Japan , people coice `` OMIKUJI `` to know your fortune for the new year . This book level is Biginner but it is difficult for me . Since most of them are online shopping I hope I 'll recieve the dresses exactly the same as they are posted . This ressesion has hit me pretty hard . I have no experienc of editing and writing , but I want to try . I do n't know this job is really intersting , but I want to try . Today , at last , he recoverd and came back to our house . Most of the time , Spiderman is airboarne with his web , swinging from building to building . . . I 'm going to a bargen sale this weekend . because I have garduate from high school . I 'll go to bed earlly to prepare for tomorrow . I 'm not a Tri - Athereat ! First Dialy I read a book for 30 minutes , I heard Engrish CD for 30 minutes . Rencently I read a book called Christmas in summer . But I want to write , since I decided to write in the daiary every day ! ! I ate a watermelon for lanch for the first time this year . Is it the same in othe countries ? My duty is oversee and analyze ground warter , waste water , exhaust gas , and so on . Compared to other divisions , we have a lot of obertime at the end of month . Today my daugter went back to Okinawa , because she has to work . I wrote a diary becouse I want to practice my English . Yesterday , I had a terrible headach so I took 3 pills of medicine . But if my head aches from a bad headach , I might as well take the medicine to endure it . I babrely found the pharmacy and I got treatment . I wached 90210 I watched the final episode of the first seoson of 90210 . I 'm looking forward to watching the next seoson . They were very healty . Extrim , dirty and fun ! I ca n't tell whether it 's going to be the same in the case of Japan ( hault of growth in economy ) , but it 's sure that the economy of Korea depends on the flow of the real estate market . Before entering university , I didn n't worry about my writing because there were not many changes to write one 's opinion at school under the Korean education system . Today I studied phisics for an exam . In the libraly . I 'm very happy because there are many people who have helped on my way to sucess . firstly , I want to say thank you to my good friens , my classmates and many other people . They encouraged me when I fell and supportde me when I made decisions . They gave me a lot of powers and made me confident as I was costantly moving forward . Because they hurt me , I was motivated to continuous efforts until I became an exellent and sucessful person . So , from my career standpoint , I thank everyone I 've been in contact with , no matter if they helpde me or hurt me . What sall I grow ? I was given some onisons and potates . I plan to grow sommer vegetables this sommer . Are there goyas in other contry ? and I found one of black cars hung plags on its bonnet . The organization that made the JLPT does n't pubish the test questions right after the test . However , a lot of text books for preparating for the JLPT have been released . I 'm looking foward to it . Although I 've had an ID in lang - 8 for a long time , I always have no time to wirte a diary entry . Most students are under stression like me . Thist Saturday it was my first day in college . She was nice and cooporation . The lecture was about how to write a good essay , and I have an assiment to write and I need you to help me to improve my english leval . I entried university this summer . After that , I can colm down . They are very big and are stong . I went to the movies with my hasband to a thiater near my home . I felt realI action . there was something in front of my eyes . becouse I payed 1800 yen plus an extra 300yen for 3D . It was cheaper than other similar courses , because I had a proffesioal ? invitation . Help me to love learning Enlish again ! How can I get rid of these bad feelings , how can I learn to love using Enlish joyfully again , like I did a year ago ? They do n't help other pepole . She is studing Japanese . But the weather is cold and graysh . Tom Waits is one of my favourite singars . it was my frist time watching a game . Good evening erveryone . I will go to Shodou scholl now . I am soory , I ca n't explain well . I have troble with the language and enviroment . . . . . I was surprised at his thoght I came accros the Japanese speaking Japanese . If it 's true , I think the Norwaygian goverment has to review their laws . So she asked me , `` How do you say in English , black framed glasses are popular in Japan ? `` Although , I know she is nervous about speaking English , I have no idea why she wants to know that exression as the first thing ! There are 6 hours to go to until the biggining of the match . I answered two phone calls from my clients regarding a big coontract , which could feed me for a couple of months . Today , the weather is warm and confortable . Following that , we played backetball together . How to condjugating on Lang8 ! ! Everyone danced happilly . After he left home , my daughter and I talkded a lot . When I get older I want to travel to Canada becasuse I would like to know the country where I hope to spend th rest of my life . If I see that Canada offers the opportunities that everybody says it offers , then I am going to go back to to my country and apply for a permanent resident . . This is deadful for me because I must write treatises in English . So we are going to buy some vegitables and meat for dinner now . she was angey at the TV , and she went to bed angry . It is the central city of an island which is northernmore place in Japan , Hokkaido . 2 days ago , I wrote a jurnal about whale hanting . My jurnal asserted `` Australian ways of protesting against Japan are very impolete and rough `` . Surely , if Japanese people try to change something or protest against something , we whould only read a note of protest and shout something a few times in front of the oponent 's organization . lol Of course , the opponent 's organizationwo n't change their atittude orway of thinking in any case . Japanese people should watch other countries ' ways of protesting and their passons more . I am sad beacause my sister deleted the program for the keyboard I use to write in Korean ! . It reminded me that I 've seen a bear - shaped keychain in a shopping center neayby my home . So , I thouogt it was a girl ! I think she made me a litte better looking . I know that bad thigs can occur all at once . From September 22 to September 24 , I went to Hokkaido for a trip with the friens of the university . My teacher gave me until May 4 to hand in an essasy . Finally , if you decide to buy a dining table mat , what kind of style you perfer , a table mat that would put you in a good mood or a table mat that would open your appetite ? long long ago I stadyed english , but I still remenber a little . My todays today is designing . Since we got two new workers last Octover , the opportunities I got to design web sites decreased sharply . So a pesron who is good at everyting has to do the remaining things . But these kinds of expressions are not fammilar to me . I 'm using a nicotinic patch . When I checked my diary this morning , the freind who I met for the first time had already corrected it . I appreciate that all freinds support me . S . I want to use more precise complex sntences . I read a new gide book for the JLPT . It is sure that the test will focus more on comunicate ability than grammar . I have not been able to writte an entry or correct other entries althogh I 've sometimes visited this site ! The reason why is that I 've probably caught the Rubbela virus or another strong virus ! ! ( Oh my gosh ! ) 39 degrees ! ! You know , in Japan , the tempreture is still high and the sun supported by the summer attacks us , but at least for me , it was such a cool day , or , if anything , a cold day ^ ^ That 's rediculous . Today I asked him to help me coreect my studying abroad SOP and I told him I need it tomorrow , that meant I wanted him to accompany me , but after correcting my SOP he rushed home and told me `` I have a couple of things to do before I go to bed `` . In the beginning , I supposed that we had interested in each other , because he gave his phone munber to me and said `` If you want to call me , call me anytime `` , and asked me to take MRT home togther with him . Yesterday , I attended a perty from the company where I 'm going to start working this spring . Another student and I will start working for that company and we are going to be in charge of global markething . Then , I was puzzled because my English speaking , listeng and writing skills are poor . It has already been about three weeks since I registed on this site . A Suprising event A officcer who was taking care of international students said that he could help me get acception as soon as possible . Thank you guys , Thank you for suport me ! ! ! Is it called ' being selfish ' in Englsih ? You ca n't understand what I 'm talking about from these sentense . . . We can obtain sooo many things from that . Although they cherished the notion of life - long emproyment and the idea that the older you are , the more likely you are to get a chance of promotion , we do not seem to have these kind of thoughts at all . We know that we have no gurantee in a campany . Hellow all my friends . We should never foget those who are sad about their important family member ' s Of cource I want to be glad that they are coming back home safely with all of them . with everyone else ? But at the same time , I never want to want foget about all of people lost in the war of Iraq . I cought a cold . Maybe because I was around lots of people yesterday . I can read simple sentences now , but I ca n't realy understnad normal passages and books . Today he took me to a restaurent as gratitude for the present . He thoght that I rarely ate meet ( beef ) because I live by myself . Father is going to Tochigi for buisiness tomorrow . If I eat a hanburger slowly , chewing it well and tasing it , I must regret having it . The production is starded after ordering , so I have to wait for another month befor the product arrives . She was so tonedeff tunethat I could n't remember what the song title was . The mettress of my bed sinks too much . The throne in question was a graceful sight : it captivated the eye of a beholder with beautiful , hypnotic silver filigraine decorations . Facinated with Lord of the Flies Nearly almost all my friends have it and they all recomended getting it . Because I did n't have enoght money with me at the time . . Today 's exammers were about 60 students of an elementerary school , a junior high school , a high school and an university . because the Korean team played so fantasic . There is no need to mention that when your father is getting married you ( as the most beloved and wise of all cock - owners he has ever been acquainted with ) instantly become the one who has to put up with all the fits of pre - marriagal neurosis ( as well as being an unlucky witness of all this stuff ) , take care of all the sodding preparations ( `` we need to do a great deal of work to make this day really special `` , Goddamn it ! ) and just try not to go mad or turn into a `` bridesmaid bitch `` . fankly I do n't like these things . . . `` interested in wome . . . `` Today I have found out about a postgaduated programm . But I disided not to surrender and for one month ( it 's time I have before the interview ) to make my English as good as I can . And one step of my plan is everyday writining at Lang - 8 . What should I do frist ? I like coocking Korean food . ^ ^ im a high skool student who 's tryin to learn english n been stayin in aus for nealy 2 years so far . firstly I will just write about my self , I am 18 years old now n terning 19 in a few months and plan to go to uni in jap after leaving skool where im now goin in aus . I 'd really appreciate if someone taught me here coz honestly I was totally lost at how I could improve my writting skills , there r no ways to impove my writing skills around me . btw , it 's already been a half hour since I started writing this lol im a very slow writter obviouly . well wat should I start wittin ? I reckon there is nothing like japan in the world , you 'd probably understand if u have the oppotunity to go visit japan ^ ^ What a lovely pharase ! A metophor expression . / A metaphor . After we fill half of the pot up , the rasing of the water also become obscure . Nobody can sensitively recognize the rasing , and then suddenly this pot becomes `` unbalanced . `` This kind of corns , in other owrds , many intermediate Japanese students will start thinking `` Is mastering English from 30 years old impossible ? `` , `` Probably I do n't have a talent for language `` ( ? ) `` I do n't think my English is improving , It 's waste of time and money , I gave up . `` I tried to use a metophor in this journal . On the way home , I bought seven bottles of maple syrup and three boxes of maple coockie at a supermarket . Are you accually using it ? Anyway , I think it 's a good idea for revising words , not byt learning new words in my opinion . It 's also brilliant for learning KANJI CHARACTERS < 3 xD . I have to stay here until tommorrow morning . The othre day , I went to a musical instrument shop and bought a saxophone . This morning , homestay father took me and my roommate to school , and taught us how to catch the bus go to school and back home , and he is interduction a christian church to us . There is beautiful scenery , modern buildngs , and animals which I have never seen before . I sent you a sweeeeet present ! From your cazy sister , Haruna Like my mum and dad always love me depite all of my imperfections `` When you have a duaghter just like you , then you can understand how I feel about you `` . After that , the girls preparad dinner . It was very dilicious . I didi n't know which course was suitable for me , so I selected the basic TOEIC course . correct me if nessesary . I am Lena , 15 years old . Well , I like swimming , watching TV and different movies , listening to music , watching foorball , hanging out with friends , etc . This is Oribe ware , one of Japan 's famous potterries . It has a strabge design and beautiful green glaze on it . When I drink a cup of cogffe with this , I am very relaxed . Last night one my good friend and I decided to make an air baloon out of paper . And we had a baloon with a diameter of one meter . We had a flat paper wich turned into a big ball ! Today after luch thought : `` I would like something else . . Sory , just a question . Maybe because I lack a sence of security , some people might rely on their closest friends , their families or their boyfriends very much , but for me , I rely on my home a lot . Even if I get a boyfirend , I will choose to live alone , because even if we break up , at least I have my home , and wo n't end up without a boyfriend and no place to live , that would make me feel like a loser . I have n't contanted this for a long time contant Becase of not enough time and the low intenet speed in I went to my grandmom 's home with my parents today . My grandmom is living in a nursing home now . and my grandmom will be joining the wedding party . Due to tayhoon I do n't have class in the morning u know a thyhoon is coming to japan . I can even atach photo of these buildings . ) But anyway I really want to visit other countries , and with a great pleasure I would like to meet foreign coultures . I exersise every night before going bed . In can by easily demonstrated by comparing different Asian communities , such as the Man ligneage or the Asian - American community . To sum up , this kind of Asian community seems to be mainly the result of a Wesern idea . Neither do I feel isolently nor do I feel inferior . `` Reading thousands of books is not equal to traveling thousands of miles ; But traveling thoudands of miles can not beat communicae with more people . `` by Yu Minhong , the chairman of Xindongfang . Modern cities have been planned as business place , that is , the main ideia is not have people living there . Today , I bought a bottle of rice wine , `` Fuyu no sanpo `` , from the nearest supermaket . I think this bottle is showing chilliness and silentness , and its naming is very suitable for this bottle . The only thing you want to do is this shit `` , and because the little girl did n't have the force to fight with this sadic ogre named Kabi the barbarian , she had to do all the things he said . Every moring I meet him on my way to school , so we quickly became good friends . If we asked for directions , they brought us there in peroson . So , we went to a hot spring which took thirteen mimutes by car from our house . We oftern go there because it 's equipped with not only hot springs , but a heated indoor pool , too . I heard it was the same in China or in some of Europian countries I have problems with choising new jeans . It 's so ironic - low - waist fashion comes to Siberia from warm contries , but everyone just accepts it despite cold and long winters in Siberia . I cound n't believe it , but there it was in black and white , as clear as it could be . Please look forward to my dialy . She is working in a kingdergarten as a doctor . He faced about one thousand and nin challenges and finally , he met a person who was willing to buy his recipes . But I rearise that I can access it with ease . I wish everybody a pleasant jourary and a perfect future . Then , we climp up the mountain . If it clears tomorrow morning , I plan to snowbording with friends . Thanks to lang - 8 , I am so happy becasue I could make some new friends on this site . I think next year will be more fruitfull . At the same time I am trying to be good maan , so I can maintain positive relationships with others . The firsr thing which came to my mind was , `` Why ? `` The second happiest is Noerth Korea and , the third is Cuba . It is very intresting to try teaching ! Then next week on Tuesday we will act on film about our school life . Before this economic crisis began last September , a lot of workers had come to London from other EU countries ( for example , Pohland ) . However , the UK , as well as another country are suffering financially , threfore it is very difficult for foreigners to get a job . To tell the truth , I have hated studying foriegn languages . But there are few clowd today ! We used a sepalated room so going together did n't make sense . The main reason that I came here is that I want to get a letter of recommandation from my professor but also I want to take a rest with my family . I do n't konw . I will make a presation about a city : Hong Kong . . . and read a scary story . . . . Because there were just two banana sautes with powder suger , no ice cream , no fresh cream . . . The purpose of this trip is to make inventroy clearance , to report the settlement of account in Augusut to the board members , and to take part in a conference . It may be because of getting nerverous or excited , however , I do n't know why . Please tell me the diffrence and situations between `` I will miss you . `` and `` I 'm going to miss you . `` In fact , in high school my scores in English were good or Exellent , especially in structure , but not so well in reading and writing . When I entered university and met different students , I realized acully how my language needs to be improved . I 'm a medical student and I find difficulty in understanding some terminology , particularily at begning of my first year , even though I got a 6 on the IETS exam ! Now my medical terminology is good , but I need to improve my general language beacuase I still ca n't read long stories or novels in English . I do n't like having to open the dictionary each time to understand a word . Then , I tryed to introduce myseelf . I majored in International Reralitons . Today it 's windly . I was so dissapointed . . Day by day I feel the autum getting deeper . I love wathing baseball games on TV and English football premier league . Next month , I am going to go to Turky with my girlfriend . Plese help me to learn English This is the first time I have used this websit with the help of my colleague . Just like in every other country , McDonald 's restarutant can be seen here and there in Japan . Many Japanese people do n't think that McDonalds ' hamburger is yummy . As proof of that , here is the result of a questionnaire about hamaburger shops . According to this article , many Japanese think that the most tasty hamburger cahin is Mosburger , a Japanese hamburger chain . His sudden carrer change was very amazing news in Japanese Economic circles . I was VERY intesting when I was at his house . offense to Aristolte , but in my four years at ShanDong University , I have come to find that passion is a key ingrediant of the study and Academic life was facinating . What I remenber above all was always bebing It was exhalarating , intimidating , sometimes even discouging , but always challenging . Let 's appriate it and look Refusion . It is always difficult to refuse a date , because I do n't want to look all concited but I really do n't want to go out when it is not the with the right person . I had a lot of experionces like this and I realized that male and female ca n't be close friends . an overcourt is 3000yen , and a hair cut is 1000yen . How do we stop deflaction ? My frinend So , I used this opportunity , I met my friend who is a techer at a university . I think that parents have to love thier children . I didn ` t think it would be a love story and I was sure it was a typical modern book about notning . I 'm tiried I feel a littel tired , I do n't know why though . Although I want to believe this world wont enter iinto war , I feel something worse ( coming ) . It may not be delicious to foreigners , but if you have the chance to visit Korea I recommand you try this food . I mean those who were previously diagnosed and require asistance no longer require asistance at this time or those who were diagnosed and now require asistance . I know it 's mean for me to say sonething bad about someone behind their back . Recently I went to a game shope to find some new games . This Thursday , I will go to Tokyo to atendant a ceremony of the company that I will enter next year . I have been living in a student accomodation for about three years . Then it would not make ( any ) sence for me to stay in the Netherlands . Therefore I like this accomodation . One of my friends did not ( get to ) know his neighbor [ UK English ] for six months . So we would like to make the accomodation comfortable for the newcomers . I 'm learning to speak English in shcool becase I studied very hard . . . . I 'm afrard of swine influenza . I want to play sports occasionary , but do n't want to belong to a sports club because it is too hard for me to participate a lot of days . I really wanted to buy it , so I orderd it on the internet soon after I watched the TV program . I skimped on dinner yeaterday . and I met a lot of forign students . But I had a launguage problem . Recentry , I made many types of bread . I intend to teach chinses around the world one day so I need to enhance my teaching ability . People graually become to stay at home in winter . I thnik the weather is a very important factor that influnet people . Before the food is done , my husband put pre - baked bread into the oven so that we could have it with the casserole . You remember those days ; when your mother knit a sweater in the dimp light for you , or waited for you until midnight because you stayed out late and she wanted to make sure you came home . You know that there are many memories like that . In the futhre , I might experience the new world with the one . Expressing my appreciation - A useful hiaragana website . I always appriciate your corrections to my journals . Why should people get TOEIC sroce ? Beacuse my birthday is in the summer , it means I 'm gining to get older ? I have native speakers in my school but I 'm ashemed to talk to them . It 's a pen seta and culture gift certificates ! ! ! The intersting in reading It is bad news for evryone . Initially , I was suposed to wake up at eight o ' clock and Monday mornig A tutle lives a long life . Every time I have to write an English report , I can not help but use an online transelation application . A phrase I like is : `` knowledge is power `` and Englisf is the most useful power right now ; there are hundreds of millions of Englisf speakers . It 's no problem if the new students have a good parsonality . We went to an Indian restraunt . Their atmoresphere is high quality . Anyway , I know I still have a lot of opportunities to improve my writting skills . This is my first dialy on Lang - 8 . Now I major in english literature in univercity . Mubark has been the priesdent of Egypt for 30 years . They want to see the fall of Mubark . Allah will help the peole of Egypt . but the people of Egypt ca n't , because their goverment has blocked all Internet access . My Favorite Sports There are many beautful clothes , dance movements in the film . Please do n't hesitate to correst my English . When the earthquake happend , he was in a mansion . I do n't understant it myself ^ ^ ; This season , a lot of colleages held school festivals . In my colleage , I sold Adobo . It 's a Filliphin food . The goods were from developping countries . my first dialy I 'm studying English evey day . It 's because I 'll go to Tronto in Canada in April on a working holidday ! Eventually , I 'd like to get an interpriter license . But now , I 'm not good at Engrish . Today , I tried to inatall EVERNOTE on my PC . It seems convinient for me . I definitely recomend this book to every child , but if it happend that some adult had not read it they should read this one . I got up pretty eary this morning . Although nobody was walking arong the dark street , I enjoyed walking briskly for about 30 minutes . Looking forward to the future , I can see this is gon to be something I have n't fully grasped . I got the feeling that every skaters performed very well and they shawed their high techniques under all that pressures , many expectatons . Mao Asada , the 19 year old captured the audience by completing a tripple axcel succcessfully . I like her perfoamnace in the short program . I spend everyday just attending classes , doing homeworks hanging out with my friends on holidays . Even by doing so , it might be difficult to attain somethig special , but what is important is to try to have an awareenss of issues and start a volunteering Barcelona was a very exicting city for me . Last weakend , I went to watch the rugby games . Thank you for reading my jouornal In the afternoon we played a difficult game . Oh it was carrzy , I could not understand everything that the teacher said about the questions and the answer was also difficult but it was interesting . Recetntly , an accident happend . Japanese famous ex - F1 driver Katayama Ukyou climbed the mountain while trainning , for he has been planning to climb the highest mountain in the Antarctic ( south pole continent ) . They camped at the middle hight and a powerfful gust peffed off their tents . He said at the interview that he will withdrow for at least one year . The public veiwing is an event where you cheer for the team through a huge television screen with a crouwds . It was a good game for Japan , but I think that there was a substantial diference between Japan and the Netherlands . Today , I was required to go to school puntually and behavior myself well . I do n't konw why we 're supposed to take classes in shch a marvelous summer vacation , which should have been full of joy , laughter , and merriment . It seems that everything in my life jsut enveloped in terrible atmosphere . Alought it sounds a little pessimistic and overstated , what I really want to say is learning is a lifetime and happy activity rather than pushing us to the limit with our mood depressed . So I suppose we should cut down on the time we spend at dest . Improving our knowledge by practicing it instead of talk about it thoretically is the most significant , positive , adn effective in our life , in my opinion . Today 's menu is omrice ! I should be more opotimistic . japanes food is popular in the Europe , US and China those days . And also I push the wrong bottouns on the keyboard , even when I write in Italian , my native langueage xD uh , it 's not exatly right xD but I 'm trying , but I 'm a self - thaght girl ( ok , I think this expression is uncorrect ) and I 'm actually still at the ' HI , MY NAME IS ELENA ' - things like that . Humm . . . I went to watch baseballpark with my friend a the ballpark . A Baseballpark that has chicken and beer is like a paradise to me . I think meeting is a good opotunity to grow by myself , so I must make good use of this meeting for my growth . It 's summer in Japan , so it 's very hot and humit . I went to a cell phone shop today becouse I lost the one I had before in Australia . I 'm looking foreward to seeing my friends . The College English Test 's listening comprehension is difficlut , but this is not the worst . The dentist said it is not serious but I should brush my teeth in the morning and at night and seldom eat somthing acidic or spicy . My roommate Fengyuan Zhu or ZHU Fengyuan have gone to beijing . Tommorow is my last workday , because I told my boss I would be resigning from the job . So I sometimes have a chance to talk to custmers in English , and transfered docements from English to Jpansese . I thik it is good practice for improving my English , but I ca n't tolerate my boss 's arrogance . After finisihg work tomorrow , I want to try to get a new job ! Then my English teacher said to me . `` Please call your roommate and tell her do n't lose this test . `` As soon as my English teacher finshed talking , I got my telephone . The coler is good , but my bangs are too short ! is a neccessary class in our school . Next , our school life wll be happier . classes are neccessary because of the reasons stated above . If you understand the humor , you could be from Osakan . I know that I would n't have known how to read words , how to count the numbers and I would n't even have heard about the internet if I were in a severe poverty with unenlightened parents who are deing because of a lack of food . If I were alive around my age luckily , my life would have been beared harted towards the indiscriminate world . I belive that people dominate environments , but at the same time , I also believe in the fact that environments can change people . The survey of that most people in Africa live with less than a dallor proves it too . I am going to bring some gifts for her , do you have any recomendations ? In spite of this stuation , I 'm spending the day as usual . Accidently , I 'm going to watch hockey for the second time in a rowsinceI 'll be watching sledge hockey at the Paralympics tomorrow . Yet , the frequent descent of the bears caused some serious problems such as causing some casualities . I really want to do lots of valuable things in the future , so I may have to do regular excersice for it . But , I enjoy the festival ` s atomosphere . It is so conveniet for me . I already wathched `` Pursuit of happiness `` and No matter what , I feel warm and confortable . I wo n't sleep ! ! I 'm also learning Portugeuse . They taugh me a little Portogeuse when I showed interest in Brazil . Today I have decided to visit Brazl in 2016 because Olympic 2016 will be held held in Brazil . He is only 28 years old , but is at risk for hypertention and obesity . When I use English very ofhen , I become better at speaking . I am worri . I recived private request to talk . `` If someone does n't know the history , he must see this history personaly . `` Abvout 4 months have passed siince I came to Aus . For this week I am staying with another fost family because my host family are in Bali for 2 weeks . It 's used to explain hierarchical orgnizations that separate software developers from end users . But we have never forgotton each other . Kameta is from Kameta , which means tortoise . Japanese sometimes name their pets from their soecies . She has shortn her hair . I watched a movie yeaterday . It was my firest time to go to the Tokyo Dome . You can enjoy studying and learn some slungs and daily conversation which you ca n't learn from textbooks or class . If you can get Japanese ones , you can learn Japanese more efficiently by comperaring with this site . So , I bought a book called , `` Basic Grammar in Use `` wirtten by Raymond Murphy and published by Cambridge University Press . `` Basic Grammar in Use `` is an American English Grammar Book and `` Essential Grammar in Use `` is a British Englsih Grammar Book . I appricate this site ! Recentry many people have their own blogs and some of them are open to everyone to communicate with each other ; just imagine it 's like a kind of class room or something . I hope they will find an awesome drummer , because I like the band because of their drumms . There were some students who tried to remember , and then four of five studens were given the gift . I really like to sing this song when I watch the film with tittlw `` THE LORD OF STUDY `` made in Korea . the Japanses lived during the Edo era . Do your countrie 's people know where Korea is ? Teribble ! ! ! ! ! I have varius memories . . . . I 've read twelve books by Agaths Christie so far . We are going to have a gyouza party tonight . I 'm gon na cook gyouza for 6 people . So she bought me clothes and a pair of shose . Afterward we went to get coffe and we ate a big cake . When his father got ill and was dying , he called his son to his bedside and said aginst his will , `` I 'll say goodbye to the present life very soon . 3 days ago I took a math test , today philosophy , monday I 'll have history , the day after English , then Phisics and then science and then phisics AGAIN ! I 'll try to write some answers here to check my orrible grammar < < ' ' ' Maybe becouse of our new roommate , or maybe not . It is good for me to make a new habit , meet some new friends through here , creat some ideas . . . I am trying to creat something new . I 'm woriking for a bank now and it is ok . It is a system whereby salary and jop position rise in accordance with age and length of service . For exmaple , in a traditional Japanese company , things like letting a young person make a big deal almost never happens , no matter how brilliant he / she is . 20 miniutes later I had to transfer to line number 3 . During my teens , I always listened to thier albums . Today , I bought a magazine in a convinience store that was on my way home . I think fashon is used to show up my character . I do n't know much about that student . ( The only thing I konw is that she is one year younger than me . ) This company holds a composition compositon . ( Normally it 's 1800 yan ) ( $ 1 = 90 yen ) I went to see `` Inglourious Basterds `` today . What will happend in the future ? I look forward to it . becouse some of my friends can not speak Chinese very well I also started to watch foregin films I thought it was weired because there is priority among the issue that are reported . That is to say , I do n't think it is appropriate to report all these issues about cheating . Similally in Japan , TV and news paper do n't tell the really important news and avoid the topics that threating the power . movies , novels , and fairy tales talk about good triumping over evil . I 'm Japanise , so I support Japan . I wo n't return to face the difficulty , but these days , my mood is so down , I dont n't have a reason . One of my cats loves to sleep nere my PC . It is so amaging . I recomend it ! Thank you for reding my diary ! The job is very instersting and unique . I want to study design in a foreign country in the furture . For example , good restaurants , beatiful sightseeing places and so on ! Of the Japanese artists , I like Sina Ringo ( toukyoujihen ) , Bump of Chicken , and Beat Crusaders . If you get sad , whose songs would you recomend to me when I get sad ? When I 'm stuck in my relationship probrems , Brity Spears songs make me happy ! ! ! But I will be a suppoeter of Arsenal from now on . However , the Japanese parties are defferent from the Europian ones . After I arrived in Narita airpot , I sent some of my baggage by delivery service . They are older than me by 9 years and they are marriaged . Ummm , it 's intersting . When I arrived at the park , I saw the monkey . Since I wanted to take some pictures of the monkey , I touched the little monkey 's head as quickly as the monkey back haed and bite me arm . Today , in English class , we thought of why people attend college or universiry . In my opinion - increasing demand of human resourses with specific knowledge - if we would like to succeed in our career , we should be well - rounded people who have a practical and expertise background . They must be required to submit a graduation thesis when they start job huntting . I knew it after caming back from NZ , I really prefer living in country other than Japan . . I met some students who went back to thier country after Voluntary Service Overseas . It 's a vountary service to teach science with English to African middle school students . ) `` I called the center , Thay told me So , today , I went to the center for a phtsical examination . So , English is essencial for me to communicate with them . I 'm afraid of misstake . I discovered that the cusion of the seat fell in . Then , I remembered that the foreiner was seated alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speak English . Because the cusion of my seat is so bad `` I can fix korea entries . There are some many analisis tools . I am a single wroking mother . So , to avoid the feeling of loneliness , I am getting started sutdying English ! I realize that many people study other languages hard as I crrect and write journal entries in ' Lang - 8 ' . Let 's start by studying English and chinese ! im not japenses ! ! Allthough I 'd tried to make a good first impression it all collapsed in a second . I carried him in my arms and looked aroud to find his master . People write New Year 's cards called `` nengazyou `` in Japan . Nengazyou is a kind of unique card I have finished writing nengazyou today . It 's fun to get nengazyou from my friends and former teachers . The level of my English became better , but its just when I am talking wiyh people who are not from UK or USA . The siniors sometimes link daily things to technical terms . ( I know ! ) The wing was eleborate and delicate so it seemed there was no strap on her shoulder , and it looked real . Following her downstairs , I was preety sure that she was wearing platform shoes with high transparent soles , because she looked like she was floating several centimeters high above the ground . I found ' ' osechi ' ' , which is a Japanese typical dish , being sold in a convinience store . These days , I feel unhuppy ! So she and her husband have to fix a lot of things like the celling , wall and floor . What a coinsident ! ! At first , I thought it was just an evacuation training exercise but I soon found it was n't . I smelled smoke as it filled up the building and saw dark grey smoke rising from the buckside of our building from the window near reception . Accidentaly , this was the last day of one of our classmates who came from Sweden . I was tierd , becouse there are always so many peapole in ikebukuro . She 's so brave to try to break down the barriers in the persuit of love even breaking the rule set by god . Recentry , I 've been muscle training . Today , I went to Shisuoka airport by bicycle . If you kill someone , you will become a muder regardless of wether you are in lawful society or not . However , if you kill someone in a war , it is likly that you would become a hero as you kill more . I just want to say hallo . It 's my first day using this epoch - making service , which my ex colleague recommneded this Sunday . I used to work for one of the translatuion / interpreting service agencies in Tokyo as a sales representative , and heard many of our Japanese clients wanted the service called `` Check by Native , `` especially in cases where they had to present something very important in front of their clients , using memos ( ppt . ) which they wrote in English . Like in the first case where you just want to know the `` facts , `` often seen in daily interaction in business , it does n't matter whether a native or non native Englsih speaker wrote the passage . But in other cases like in a restaurant , `` feeling `` has much to do with your acion . It 's interesting that the toughest subjest for me is writing , which is totally different from what the teacher lead us to believe . I tried to find the anwer to that sentence for a long time . The first answer is `` was `` and the last anwer I do n't know because it is diffical for me to understand and also I am too lazy to read the book . One thing was very unbelivable . During the two days of competitions , the cheer leading squads performances of each cllege ( Such as China , a university is make up of many colleges ) attracted us the most . It was also wonderful that some college girls dressed in bikili ! Because some colleges had professional athletes , our college did n't get one any gold medal but just only a few of copper medals . But it does n't matter , we all enjoyed the spirit of striver ! Therefore , I believe that we need artificial sweetners as a substitute of sugar . But I was not able to let my fingers move on the piano keyborads well . then my friend , ( she is japanese , of caurse . ) we went to wp to gather woth my cjs friends ! I 'm phisically getting weak . Now , I 'm drinking a lot of sport drinks such as Gatorede . I haerd that the foregin companies ' turnover is big . I have attended someone 's ferewell party every weeks in September . I am gon to write this for tomorrow 's exam . Secound , I often see people smiling despite their difficulties . She fonicated with a friend of mine who came out of the closet , so you can say that was adultry and infidelty . She got groped ( felt up ) on the train , which made her androphobia . . . I took a nap for fifteen minutes before leving home for my part - time job . She doesn ' t have confidence about English , but she knows many verbs and conjuctions . To my surprise , there were no stories nor paragrafhs on her textbook but conjuctions and exercises . Thank you for yor cooperation . It was ouwned by chiken egg farmers . It can match with everything so I do n't think it has a charecter of its own . she ` s left olny I stay here I ` m lonly but I don ` t know whant do I do But if you finish your plate of food , the amout of vegetables and fuits you have eaten will be huge `` Sometimes I can not underestand you . Amusement park has disappeard . That park resemle the Teletubbies hill . so I hope that I will be wrting one correct sentence . I took my yongest son to the hospital because he had a fever for 5 days . I went shopping Yuraucho last Saturday despite inclement ( bad ? ) weather . I was thinking my budget for them would be whithin ten thousand yen . After that I lost my confidence in speakin English . I hope my engish speech skills will be great like an American ! At 11 : 00 , I always get out to eat , because I 'm very foolish . I do n't konw how to cook ! Then I searched on the Internet , and I found some information that said the strings of a guitar need to be replaced evrey three months . audience : There were many people in the audinces at the concert so the musician was nurvous . My hobby is watching dramas and collecting lots of hilarious . jorks . If you know any funny jorks , please tell me ! ! I 'm a new member , and I would like to improve my writing skils . I plan on taking the Ielts exam , and I want to get 5 . 5 to enter the college . I really feel lost and confused , because I do n't know how to improve my writing skills . I know that they say practes and try to write and to show it to someone who is fluent in English unfortunetly , these people are not immediately avilabel to me . For a few minets , I was brosing the internet , and I found your website . I hope I find what I 'm looking for . For example , the topic was `` How do movies or television infuluence people 's behavior ? In his correction , he used the sentence `` As can easily be seen , watching a movie and learninf about worldwide issues influenced me to make a donation . `` At the same time as this party , the ' LADY GAGA ' concert was held at this stdium ! ! His car skidded and overtuned . Is it wrong if I say `` Let 's get started `` , ommiting the `` it `` ? . If it were not Japan , the superioer would be sued . When I was a student , I spent a lot of monet on music . It said there is a still caste ( ? ) system in certain areas in India . A young woman was killed by her mother because she was in love with a man who has a lower caste than hers . This sounds pretty much ridiculous ( please stop putting - between your words . ) and unacceptable in this socitey . I want to spesk more English ! ! It looks very futurish Okinawa was warmer than Tokyo , becouse of its location . This time , the airplane was deleyed by 2 hours due to maintenance . It 's on the way to mya home town . The first thing we did when we arrived to the city was going to the graveyard , to pray for my granpa 's brothers who already died . You could realize at first sight the city was colonizaded by Slavic countries by the names in the graves : Mostowski , Olosz ( my family 's name ) , There is a wide street near - `` Kutuzovskiy prospekt `` - but trucks that deliver goods are forbidden there because it is a govermmental street . I have n't finished my bacheoler 's degree yet like normal people around my age . But there , we study American English and we have few oportunity to hear a British accent . My British friend recomended me theBBC 's web site to study British English . it is my first diary writted in English . I hope I can use this place to enhance my English ability . Especially my writnig . I love Caomima , because they are very brave , they are able to speak the unspeakable about darkness in our socity . I will write my way to utlize this web site . I had many parties ( eating jumbo parfeit , smorgasbords , and so on ) and often eat something around midnight . My famiy won the contest . Becasue it makes me think about my dog . Today I do n't hav any plans . . . ( some games in arcades disapper ) My firend `` aquadee `` has pain , too . I pray that God heals the both of usr as soon as posible . So she and I headed for Starbacks . Tonight , I will watch the Japan vs Tailand & nbsp ; volleyball game . The last sentaence I want to say is : `` Correct my entry , plese ! Having been told about the website for quite a long time , I could not make a resolution to strat writing until now . Yesterday was an incridible day . daialy life while I 'm here in Japan , I have little chace to use English . I am glad to come on here and get to know this website which may hlep me to improve my English / Japanese . On April 1st , April fool 's Day , my country manager was laied off . I need to try my best to build our relationship and get close hiim . Now , I pronouce all words like in French . I wrote about myself here just because I wanted to post with correct English on my profile myspace . If you are a boy , It is very important that you know you have great potential to sucess . It is important for me to find my favorite things in the dayly life . I Thank her for heling me to study English . and I 'm intereted in French too when can I use this sentenses in conversation ? In the midle of it , I felt breathless and flush . . . hello guys from japan , and my first diary abt japanese disaster thankyou _ you : > Chinease people might be struggging If you see me crying in the corner , do n't laugh at me , please give me your sincerly wishes and energy . I also thinking that if he is courious in our life , you can enjoy being together with him . You will be ploud with yourself `` I am also happy if somenone like me because of who I am . Do you like eggg & rice ? He 's so cute that I still ca n't resist and get sentimantal . because my husbant is in the UK on a business trip . There was a cute painting drawn in suger on the top . I will waite for my next chance . As for me , I promise to help in studying English . And of course I will try to provide a funny and interesing meeting in Nevskiy prospect . = ) The severe lack of housing for students is reflected by the numberof students in doorm over the total number of students . Workers have also encounted the same situation . Recently , one of the goverment spokeman said on the public media `` [ we ] will move the metropolitan unniversities to the suburbs `` . They could also make wrong sentenses . And I find that even after severl Chinese have correctedsomeone 's jounarl , there are still some errors . It is easy - - easier than any other forigen language . twilght is my favorits , now ! ~ vampire > _ < I have been wacthing this chanel for 3 months after I planned to practice my listening . Not only does it have funny programs like Scrubs , Friends , Simpsons , etc , but also it 's very convient for me . Whenever I want to wacth it , I can . Sometime it 's hard to believe that someone on Earth can really be that stupid , but that 's what makes it so attractive that I somehow ca n't help but wacth it everyday . Today , I taught 6 children English , Japanese , amd geography . I used to have a fluent accent , a decent vocabulary and a good undestanding of the spoken language too . The disadvantages are you really have no say in your enviroment , hindisght is 20 / 20 , and even if you have a good plan you do n't always have the resources to execute it , while the future seems so far off and your parents seem so old you think you have a lot of time . She has become beautifu . I have only one brother so it 's a bit of an embrassing fact for me to have a sister . In middle school , my most chrish time , I could do everthing with my friends , say anything with my friends , and I didn ` t feel bored on weekends . Love is n't everything ; our family , our study , our carrer , our friends , and so on are also necessary . I go to the library everday because I have many times . My favorite thing is to read a biograhy . I borrowed a Walt Diseny 's biograpy today . Recentry , I have been busy job - hunting and attending class in university . I 'm a student who lives in Taiwan and I am studing in University . I 'm trying to learn English from them , but it does not hlep very much . And needless to say , I 'll visit The Tuol Sleng Genocide Museum in Cambodia , whichi shows the savagery of Pol Pot 's regime . I have not had enough breke time at my job these days . I have studied English only by lisning to audio lessons on the way home and on the way to work . I thought , these thesedays a lot of people study Chinese . Hallo , I am Japanese and I live in Japan . Spealing English is one of a very difficult thing . It is difficult for me distingish between [ L ] and [ R ] . he was always in a goog mood and always had something positive to say . when someone woule ask him how he was doing , he would reply , `` if I were any better , I would be twins ! `` That 's sounds a little bit weird for foreigners being asked for their age . It is kind of taboo espencially for westeners . The big event , The Winter Olimpic starts today ! ! I want to write things but english is very diffical for me . Universuty is said ' Hesitation term of life ' . The problem about that is that do n't how how to earn ( money ? ) in those placecs . I may not be able to say anymore , though foreighers say Ghibli is not so much fun . I know the inssurance fee is $ 12 per package . I ordered 3 DVDs . Strawberry was 100 yen for 20 peices or so . A pickled grean leaf vegetable was 50 yen . It is a greated radish . I ate Daikon Oroshi and pickled begetable with rice for lunch . I hope this marketing style ( local product for local people ) shold be more engouraged for both consumers and farmers . They had tried to keep in touch but it was impposible . Unfortunately , she just caal him to say that she was leaving him , and to let him forget her . Pleae correct it I am fond of foreign cultures and interested in ppl who are from all over the world . I was a mechanical teachnician in the past 3 years . I can not tlanslate the sentence below . She asked , `` Son , are you ok ? `` I am not a mysophobia , but I can not stand dirty floors . Give reasons for your answer and include any relevant examples from your own knowleage or experience . Even if they did not have any music class at school , they would listen to their favorite singers and groups . They can deepen thier bonds through other school events such as cultural festivels . * * That is why students should learn more practical and usuful subjects first which will help them attain their goals . * * * * In my own opinion , although music has many adavantages of relaxing and making people happiy , we can live without using it as a job . Therefore , more significant and valueable subjects should be taught with a priority . November 23rd is Lavor Thanksgiving Day in Japan . Lavor Thanksgiving Day ! ? When I passed by ' The Rogers Center ' , I realized that there was a flyer posted on the wall for `` Toy Story 3 On Ice `` , a tiket booth was nearby , so I stopped at the booth to find out the details . When I asked the clerk how much the tiket were , and at what time the show would start , she replied that the cheapest tiket was 15 dollars and the show would open at 7 . So then , I bought a tiket . My favorit scene with Barbie and Ken was also fun . During the interval , Mikey , Minnie , Goofy and Donald Duck warmed us up ! And ( their ) pizza is so delisious . . . : ) We will stay for one night at a lacal inn in Toba , Mie Prefecture , next to Aichi where I live . Busy day which I did n't ecpect . . . . But , if it snows , there are many troubles in everyday life . For example , I have to be careful when driving a car , and snow prevents the traffic systme from working normally . I hope I can pratice using more English here . I deposited in my best friends Sung - hwan & Krissy 's account because of my loan ? @ _ @ ; ; then I ate a Korean nodle with Krissy at lunch . In the early morning , I got up because today I had to take my daughter to meet her first tearchers . I dont understan them . Doing somthing at frist is very exciting as you know . I 'm a little bit nevous and excited . bacause today is a rainny day . can you hplp me ? For example , the people with pets generally have lawer blood pressure and lawer rate of depression than those who do n't own pets . 75 % of families who aquired pets reported an increase in the level of happiness and enjoyment in the homes . And Start to exarcise ! It is a long - running doll , much like a Barbee . I used to play with Lika - chan when I was a child . But we cound n't find any water . Many people are out buying water after hearing that Tokyo Water Official detected something bad in the city water a few days ago because of the Fukushima nuclear power plant . But I ca n't take the medicens for a cold . Because I have already taken medicen for my eyes , However , nobody helps me even if I worry about this stuation . Shop assistans in Japan say `` I ra ssha I mase `` . It 's sort of like saying `` Welcome . `` The last time I wrote something in some kind of journal was a really long time ago and I stopped because of my ultimate lazyness . Lask week , our school did / carried out a survey about / on whether it is good to make friends on the Interney . Firstly , some students belive it is easy to get on well with net friends . Secondly , we can take part in interesting activies with net friends . Not just for the short term but also for the long term simaltaniously . When October comes , I always think about how I fill the gap between the goal I difined last year and the actual outcome . My counsin bought a chiken for my dogs . . Today 's dinner was chikin . One learner wanted to transfer to other jobs using his billingal skills . I 'm not an expart but I tried to do my best for him . It was a question which asked you to chose the correct conjuction among some choices . He had to put one additive conjuction on the sentences . It 's a traditional way to celebreit new year 's in Korea . Although It was the coldest day , I 'd been wating an hour to see that But I couldn n't because it is unusually frozing outside . Especially a boy called Haidal . He is very clever , because he knows a lot of Chinese words , although most of them are bad words . But if I failed the exam I can not go threre . . . It is popular amoung young Japanese girls . At that time , all high school teachers told us , `` Keep studying hard for one year , after entering a good university , ur bright and easy days will come . `` The thing is , this area does not follow the Traditional Chinese culture and peole here speak Cantonese , a language I ca n't understand . My colleague asked me why I want to study aborad today , and , freakly speaking , I am really not sure why I want to do it . A : The weather is raining outside , remember to `` take `` an unbrella with you . B : The weather is raining outside , remember to `` bring `` an unbrella with you . Some college students held a birthday party for babies born in Decenmber . But a baby came on the stage while they were playing the show , and it interruptted a student who was playing music again and again . So I stayed in my companies domitory over 2 days . Teachers belonging to ALC tought us English conversation . I watched a TV program called , `` Sekaiichi Uketai Jyugyo . `` In this program , they said that crocodile tears means unture tears . I noticed thit is happening for rest of the world . One of my friends , who is a foreighner told me this web site . I ordered an iPad2 at the Apple online store alomost a month ago . I think my reading comprehension needs to improve , and it 's difficult for me to get the main idea of a paragrag . For me , too many practicse before the language test are not helpful ! Because when there are some quetions I ca n't get the answer , I will become nervous and anxios , these emotions only made me perform badly when testing . Hope , I wo n't be asked the quetions which might be too difficult for me . But I also lack English languate skills . First , I went shopping at UNIQRO . They 're very warmy clothes . They 're too exepensive . ( ; _ ; ) The status of my application had been changed to `` Pennding Contract `` after being stuck `` in Review `` status for a week . I parcitipated in the bowling event held by my English school last night . It had been a long time since I have done any bowlling , so I wondered if I would do well or not at first , but my team ( my friend and me ) won third place ! ! Kao Corpration is one of the most famous chemical and cosmetics companies in Japan where their products are used almost in every house ( in Japan ) . Although I can study and I have many ways to learn it eaven in Japan , When I visited Philipines last month to study English for 2 months , I might as well use English to comunicate with them . I stayd there almost for an hour . I considered whrther I should get one of them or not . But the most successful of them all has always been capiltalism . , peolpe are scared to take them . So the real cause of the spread of drugs , especially among young people , is the misconception about marijiuana . Many gangsta rappers rap about smoking weed . . . I watched 8 mile ( about half of Eminem 's life ) 3 years ago , and the movie dipicted people smoking weed as a matter of factly ! ! So , as a conclusion , I want to sate that not only must the government make the already existing laws tougher , but also cencor the media , which have a trmendous influence , especially on young people . First , I like this website because everyone is kind enough to coreect my poor writing , ( though , my dictionary is always beside me , just in case . ) Usually those who correct my diary leave messages for me . That is what I ment yesterday . I recieved two packages `` seeing is believibg `` ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ It is a little dificult for me , but I always enjoy discustion with my teacher in English . Sice I had a day off this year , I went skating with friends . Ws it ? I will be stisfied with it as only space for sleeping `` What she recomended is managed by her office . I do n't know if I should be studing the Japanese grammar at the same time . . . I 've only had a little food but I do n't feel hugary . Sometimes I am not hugary but I want to eat . . . . I 'm gon na read the book entitled , NY NYinstitute of Photography . OK boddy , I 'm gon na learn more slang later , I hope RAVI will be mad at me . Shame on you ! LOL I will be carefull about that from now on . Though I speak say tavel is my hobby , I have n't actually gone to many countries . When I was on the campas alone , maybe I was seen as a strange person by many students because of my appearance . The first time I tasted it I thoght it was too sweet . Two chocolate buscuits sandwiche a hard chocolate inside and again , the buiscuits are coated with chocolate . The first Tim Tam I tried had orange tasting chocolat inside . Bite the head and the bottom off the biscuite . I am goint to excersize every day . To teach Korean to them is not easy but very excting to me . July 7th is a special day for us Chinese people because there was a romantic story that happend on this day a long time ago . A Goddess did n't want to see them togather , so she placed them into two stars with her magic . One day , lots of magpies flew togather from all directions to formed a bridge in the sky . The pair of lovers could then meet gagain by the magpie - bridge across the Milky Way . missing him made me not interested in my jod , my sale performance was not so good , my boss was very angry with me . I like this song 's melody and lyricks . However it is difficult for me to sing to the guitar , and to pronounce English lyricks . But I broght some bread to eat with my friends , The table is very dity . < buy a dictionary please Have a nice weekand . I am majoring in English literacture and I feel it 's a burden . Hav n't been here for a long time Hav n't been here for several days . I feel so frightend / scared . Sometimes I see other ( people 's ) exellent articles and I just admire them . In these times , I sometimes think about the reason why I contine to work . I feel very happy if my colleages and friends are eivious of my promotion . I 'm really glad if my wife or parents give me some words such as ' congraturation ! A public servant must surve our nation and people ! We would like to know if there are no problems for us to act as as the sole distributoer ? Well , I 'm really interested : Do you , English speakers , use all your tenses which we ( foreing ) are studying at schools or universities ? Recently we learnt about the future tense and there are so many kinds of expressing it , like future continuous , future perfect continuous and future perfect simple . and in the afternoon , in the Classical Libreture class , I watched an animetion called Bleach , in which my favourite actor is cast . He was the most famaous pro - wresler in Japan . He was storonger than any other wresler so he was the storonger , in first or second place . He was the president of his pro - wresring company called Noah , It was bigg news in the sports newspapper in the morning , so he was on the top page in the sports newspapper . Other sports newspapper 's top page was also him . He often appeared on TV programs so people will be sad for him , even those who do n't like pro - wresring or watch pro - wresring . His cuase of death was being hit on the back of his head because he took a backdrop from his oppoment . Two men 's wresler have died in the ring since the year 1953 . She rufused to watch the Titanic movie . Shiba is a Jananese breed of dog . They are a medium - sized and very clever . It 's her first time going to a forein country alone . because I tought I could get good score like 700 . mn - - - - - - can I execuse this result ? lol . and it felt troblesome to read them again . I spend free time absentlly . I think I am lazyness . I have n't write anything . Today , I receved the decision for studying abroad . However , studying English while also studying chemistry was difficult , so I felt relievd a little . Hi , thank you for ur reply . Luckly , I am not . studing English and Japanese The building in the Heian - jingu shrine is a replica of the imperial palece in Kyoto city in the 8th century . After shopping , we ate `` Syabusyabu `` . It is a meal where many vegetables and thin slices of beef are dipped into boilling water . The `` Syabusyabu `` restaurant which we went to seems to be popular with many foreigners . There were many foreign visiter in the restaurant . Second , I wish to speake engish very well . Third , I will help members that will learn the Korean languge . Because of these reason , I registerd for this website . my objection for in ternsdhip Oh my godness help me ! By the way , his name is `` Free - Za `` . He appeared in Doragon Ball Z , which is a famous animation in Japan . to keep competitive in the intesive race . I had made some friends who are japanes . He wanted to have his own farm / poultry farming and really healthy poltry . I 've started reading the Mmanga One peace , which is written in English . Sometimes decesions are made regardless of our opinion , and we have to follow them anyway . Thank you for coming and visiting us at Onoda - shi , Yamaguchi on Juniary 21 . A mother said that your picture book reading was so wanderful ! ! I wanted to enter it but I was affraid that the price might not be friendly for my wallet . And I leard about life through movies . Sometimes , when I am bored , moive help me to spend time . Please recommand interesting movies . A strong typhoon is approacning the main island of Japan . The weatherforecast forecast warns that there will be strong winds and heavy rain . Poverty in Vietnam will increase because of soaring inflation over the last time , thus the Vietnamese goverment has to continue implimenting measures to curb inflation , said Mr John Hendra , the chief executive of the United Nations Agency in Hanoi However , there are still areas in poverty that are difficul to address , particularly in ethenic minorities and he called on the goverment to adopt a new approach But it has been a tough month because I had to settle the accouts for the fiscal year of 2009 . I 'm in charge of the accouts of a prodction affliate company in Kyusyu . The first time I met him , he talked about `` SD Gandom `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand everything he is talking about . After leaving from Tokyo , he will go to Shizuoka to view a big Gandom model . Withoug Anna , I can not get my English better . Anyway , I have to mention that I leave on Aughst 26 to US . I want to say thank you for eveyone who taught me English so far . Espessilly , writting is mush better than before even though I still have a lot of mistakes which I ca n't notice until people say . However , he does n't know that she recored every song he sang each day . Compared to Asian culture , somethings were similar but somethings were completly different . I want to get a driver 's ricence . Watching the lower classmans take part in it . I suppose he is in pain because he has been alone for a very long period and has to deel with the feeling of being the last one of his race . I ca n't forget the peculia taste of ttomyangkkunh of thailand . I wiil write in my diary continually . It is a service is similar to Lang - 8 but this can help us exchange languages with foreingn friends and practice the language you are studying . In addition , dormitoies are safe . These days , I 'm very tired and sad because I have to study hard for my University enterance exam . I love listening to glish music , but I often do n't know what they are singing about . The story is happened in some high scool . the biology theacher experimented on one girl named Hyeon - ju . She bit the theacher . And they bit anothers . And Hyeon - ju bit the embulance driver and paramedics . You need to be indenpent . I have not felt afterquake since last Friday . In Tokyo , there are afterquakes everyday . I hope that many people will read my diary and correct my sentenses . please correct the sentenses , and be my friend ! I passed all my exams with exellent scores , and I am very happy ! I want to go to Moskow to the theatre . Sorry for my bad Engish . They were standard questions , like self - introduction , your personality , why did you slect this major ? And now look at my essey : Games are undoubtfully important for the health and phisical skills of children . But unfortunatelly , today we can see that our favorite yard games are not so popular among kids . I am not an athletic fanat , but at least they have to feel qurious and to be interested in Open air games develop phisical skills , make chuldren stronger and faster and improve their health . I drink a few cups of coffe everyday . I can not rest becoause I have been so busy . I will go in for an English recitaion contest at university tomorrow . It consists of fifteen pages and takes eight minites to read . I hope I will be to able to be carm during my turn . I read a book written by an American professer in Japanese . I was not the presentation today , which meant all I had to do was just listen concentrately . Besiedes , everyone of us has to participate in preparing for the procedure . This ceremony derivered from the event that the prince of Nintoku emperor sent a gift to his fiancee . I may discarried again , but I 'm gon na continue learning ! Even Athough I am Chinese , The reason why is because graverobbers destoryed tumuli ( plural of tumulus ) lead to many mummies being dismembered and moved out from coffins , so empty coffins were recycled and used again . Apart from people 's mummies , it dispalys / shows animals 's mummies , which is a cat , eagle , crocodile , and mini snake . Honney - giger means `` bottled ginger with honey `` . This year my friends and I have decided to attend semianr by ourselves . Since we have lots of free time we waste it without doing anything in college . And I can do one of my hoppies with friends . That is , learning new langouges . Ysterday a big ship came to Kobe . I guided foreign traverers yesterday . However , I was n't nervous and could guid them arter all . I will go to a university to have an interview tommorrow . I have a question about a colum . I never know how to play the pinao or guiter like others , or do as well in French or Japanese . As a result , I found this website and enjoyed correcting articles written by some foreighers because I am good at it and it makes me feel good no matter they thank me or not . Eid al - Alfitar is an event usually staged by the religious community , which is a group of people who practice the same religion and it is one of the two most important Islamic celebrations . Eid al - Alfitar happens on the first day of Shawal month , which follows Ramadan and we celebrate because we have completed one month of fasting . The second most important Islamic festival is Eid al - Alfitar and it is organized by the local community . He says : yeah , realy cute ! Another example , you find youself alone with your dad 's friend . I broke up with my boyfried . The principal speaker asked us a question at the very moment the class began : `` Have you determined to perserve to prepare for the 2011 Postgraduate Qualifying Examination ? `` Then he explained his question , `` To start to prepare is different from to perserve to prepare . `` Everything sould out , but my lower back hurt . The pain was awful and umcomfortable . This afternoom our class will be having a class meeting which will be about electing elite as Party menbers . I submited an application for Party menbership when I entered the university the year before last . For people from outsid like me , adapting themselves to the community is little bit difficult . In other words , for someone who is member of the community , it is very comfortable and safty place to live . My favorite team lost ! My favorite team lost ! ! > < My husband told me to call the office for sicl leave , but I knew I could n't . My dream is to be a milionair . I do n't care even if other people say `` You ca n't be a milionair because you are not rich right now `` . I must be succesful because I believe in myself and I try to be a good person . This is a sentence which was writen by a native English speaker . I 've wanted to see these shows becauese my friends always tell me that these shows are very interesting . `` sometimes piople need to have a break `` . I can only console myself with this thought . I got up at elevent O ' colock , then had breakfast and lunch . Tomorrow I have English lesons , so today , Sunday , I am studying very hard . I listen to English a proglam on my ipod every morning while I 'm on the train going to my work . I do n't have a forgner friend . They ve studied all subjects like mathematics . Three days from now I have a chance to goto to New Zealand . This suturday I went to Shiga as a part of my group activeties . Today , I have some classes at my colledge . Especcially I love my pet dog ! On Saturday morning , my fridnes buy breakfast for me . I heard from my parents that the pollen count is expected to be two to six times higher than avarage Lately I walk whith my dog eary morning . When the number of ATPs becomes less than the number of AMPs ( having 1 phosporic acids ) , a hormone called AMPK , which senses the balance betewwn ATPs and AMPs , will be activated . This exposition was devoted to Salvador Dali . I never have seen his painting in the museum untill this moment . I knew littel about him . I 'm so glad to see that my diery has been changed . I belive in ghosts ! ! My friend has seen ghosts and he has a special avility that he can see ghosts . The drama is realy fun ! ! David Byrn is always cool . I 'm studing English in my school . I will keep on tring ! ! ! : - ) The weather is clud . But , it 's beautifui . I did n't have any Indian friends in Taiwain All my foreign pals are Japanes . The favor of curry is so unique . She mixed yogurt , basil , cilantor and chicken together . But the type of rice is different from Taiwain . Every etnic community has their own character . I 'm worring that drinking too much coffee may be bad for my health . My favorite color is white , so my car is whiet . becaust of that , I want a white 4G iPhone . Last Thursday I guit my school . It seems to forrow that I deside to buy it . My favolite author . For example , a 32 inch TV , a bus trip , a toster , etc . Because , I am so busy on bussiness , so I ca n't get straight holidays . Sometimes I make an English sentence for foreinger . I woner if my writing is correct or not Why do n't they standarization the size of books like Japan ! If you have an oppotunity to come to Japan , I recommend that you to go to a `` Yakitori `` restaurant . I also want to learn German because I really luv German football and FC Bayern ; - ) this is my first diary . The sun today was so hot that we were all getting faintful . Today , when I was about to eat curry rice , I saw the curry soup was sticky . Then , I smelled it and found out that the potetoes went bad . Today , I went to the supermarket named Rarphs near my hotel , and bought sushi . I interested in Fashon , Art , and Music from the 90 's ! And the game featured them will be releaced this December . I am `` good at `` speak Japanese but I am `` not good at `` spesk English . This function is said to be very convenient for peolpe who suffer from hemorrhoids . When I left a reataurant , it stopped raining . . . . I visited Yskusima . Today I met juniours in my university , and tomorrow I volunteer for an elementary school I feel an urge to preserve the wildernesses for the sake of the beautifull planet . I like a crescrnt moon better than a full moon . I have a sore neck becanse I leaned my head back and looked up at the crescent moon . I am a software ingeneer . my boss is comming ! See you later ! He spent almost five years working in Indnessia , my family changed a lot in both a negative and positive way . Honestly , this is an extremely unneccesary incident . Mango has become my favorite fruit since I traveled in the Philippines three years ago . Please hlp me ! I am going to send E - mail to my friend who an internationai student today . Do you remennber me ? My name is ko - chan . Please corecct my sentences . With thsi new awareness , Lisa got the permission she needed not to worry so much about Jim . She may try to pull him back mentally by asking him guit - inducing questions such as `` How could you treat me this way ? `` or `` What 's wrong with you ? `` or `` Do n't you realize how much it hurts me when you pull away ? `` HOW A MAN ' S PAST MAY ATTECT HIS INTIMACY CYCLE Deep indide he may be afraid he is unworthy of love . I want to get high score in TOEOC . I 'm wating for Avril Lavigne now . As it is so amazing , I choose it after taking the 2007th college enterance exame . Recently , I 'm writing a science thises to paticipate in a science thises comptetition . Whatever the outcome , I will do my best and not dispoint you ! ~ I 'm looking forword to it ! Mah - jang culture came from India or China in ancient times , and finally came to Japan in the17th centry . He is complelte beginner , so I can easily earn money from him and his friends . I drew a picture with green and brown crayons yeserday . I have n't used crayons since I graduated from elementry school so I 've forgotten that ' Crayons Are Great ' . I ` m a university student now , and I ` m studing organic chemistry . Because I do n't know how I can begin to leanr this unfamiliar language ! As it stands , I am aspermia . I tosted some bread and then put a lot of cheese on it . I microwaved the cheese bread for a minute and the cheeze melted out of the bread onto to the plate . Altough , the language I want to learn the most right now is japanese because I really want to go to Japan one day . Beacuse of this I have n't used an internet cable yet . Last week , I could browse and make corrections easyly . She was wearing a shoking pink sweatershirt . It is diffuicult for me . I 'm a software engneer I 'm studing Chinese and English . My goal is to use English for bussiness and to communicate with foreign friends . Go studying Eglish ! I also seceive some ^ ^ . I 'm convinced that is the reason bacause other students played their parts very well . Today , Richard asked us to talk something about the globle finacial cricis . yeah , many students in my class can speeck fluently english , but no one can say it well , and we just had a three - days holiday , little had found this online , Richard seemed a little angry , but he did n't tell us , just asking us to do it for the next class . I found this statement ( as follows ) in my textbook for studing English . ( optional ) I hope there is no damege from this earthquake . I have been aware that I really need to improve my English skills , such as speaking , writting , reading , and especially listening , because now my listening is not very fantastic . I do n't know how to ues this , I am a Chinese girl , but I am in US now . The main characters are Tom and Hek . Now I 've been singing Vanessa 's song `` Come Back to Me `` for 3 hours . ( Maybe my neighbor can hear a little of my voice through the walls . . . . It 's OK . Or is Zac going out with Ashlley ? But I have also seen photos where he hits it off with Ashlley . Then , we chatted about matters of common interensts . After that , we took a special lecture by a Proffesor from their university . More and more people , eapecially women , would like to live a life which is full of freedom , and many of them may choose to be single for life , for example . I like walking in the a shady path alonely . Ever since opening Taiwanese investment in the Mainland in 1990 , the ouflow of the capital has caused an economic crisis in Tawain . My English cram school teachers are forengner . I ca n't imagine that I go abord alone . Mixed feelings agian . Frist I feel happy because of someone who when we frist met told me I look like a singer . This Wednesday I had a Chineese speech contest at my school . I 'm not alome , right ? I ca n't speek fluentry Coooking lesson My favoorite baseball team is the Yomiuri Giants , Cakes made at the cake shop are strange , becouse the cake shop is a Japanese sweets shop . Jast a month has passed since a large earthquake hit Japan ( 3 . 11 ) . So in Japan there are 2 layers of high presure : the Chibetan high pressure and the Pasific high pressure . That 's why I am almost dying . . . I 'm currently a collge student at Jiang Xi Normal University , majoring in Business English . Reading books , watching movies , listning to music and collecting pins are my hobbies . I 'm teaching an Amrican friend Chinese as a part - time job . This minute it was raining , but the secound minute it 's sunshine . I have been thinking about this questioni since I decided to take the New And now what I came up with is to make `` kisapedia `` , which is just an explaintion of the things I am interested in . That is , writing a personal wikipdia . I want to read Englidh books . But I have no chance to read English books because English books are too expencive . I am writing this dialy without looking at the dictionaly . Please help me with my dialy . I am wonderring how much time it will take for me to be able to use English like I used to be ; but , I will do my best , be diligent and be proud of myself . Recently , I realy want to go back to Vancouver , the best place in the world , especially in the summer . I hope that one day I will go back there and watch the brillint fireworks again . It is located in the center of Tokyo , and famouns for many big shops of electorical appliances . There are many `` Maid Cafe `` , where girls in costumes of maid serve you with intersting performances . Beside the mantelpiece he was shceming his escape from his home . When I was an elemently school student , I hated writing a dialy . ( even though it was homework , I did 't do it ) In addition , a jounal will be the most priceless thing for me when I become an old man / grow old . I saw Happy turn , which is a Japanese rice cracer CM . I think it is about the guy who kept eating only McDonald 's Humbargers and fries . Starbucks Jappan anaounced that they will sell a new instant coffee in April . I hope that the new instant coffee does n't destory Starbucks 's brand ( OR name ) . I 'm interested in your Japanese class , and hope to join as a totur . And how many Japanese toturs will be there each day ? Through this class , I want to make American friends , and enjot talking . Thnak you very much for your time . Everyone helped me so I wii do my best ^ ^ Evevn so , we saw lots of beautiful trees ( even they were more than 3000 years old ! ) . Yesterday 's deinner We entered the Izakaya and orderd from the menu . We orderd non alcohol drinks because we both came here by car . There are a lot of people here who decide that they are native English speakers , such as Pakistani , Nigerians , Indians , Ghanian , South Africans , Irishmen etc . Please , if anybody can make a few comments concernind matters of my introduction , I 'll be very glad to share a lot of interesting stories about the UN , Africa , Western Sahara , Morocco , and I 'll be ready to be a good adviser for those who want to improve ( their ) Russian or start to learn it . Well I am Chinese . Some people on the internet ask me whether or not I am a foreigner . Well , if I do n't know ur nationality I ca n't give you an exact answer : ) If you are not Chinese , then to you , well , I am indeed a foreigner ! but actually , Chinese new year has n't come yet , coz we celebrate a luna new year . My girlfriend and I went to Yilan this Monday to Wendesday . I failed again and again , and I never sucessfully stood up on the borad . I will talk more about the palces of Yilan later . The screen was spinning before my eyes , so I totally got desorientated @ _ @ I tried to get myself on track , but then my friends suddenly screamed : ' ' Will , you idiot ! ! ! ! Now I want a motercycle and am dreaming that I can get a big one and travel around the world . I 'm so looking forward to going there , but I also wonder if I 'd hit it off with Europians . Gonight , byebye , see you . When reading Pygmalion , I find that my `` desctriptive `` vocabulary is very poor , e . g . about / concerning architecture , or furnishments . I am so curious how some people can speak their second language as proficiently as their monther tongue . The test had grammer questions , cloze questions , essay writing , and oral questions . I mede three friends and had lunch with them at the foodcourt . who can possiblely imagine that I can download a 30 gigabyte HD movie file in 15 minutes ! so its very deliciaous . Open source conferrence in Tokyo I joined the open source conferrence yesterday . All the people I met yesterday were gentle , and they tought me the various things about open source on the internet . In my hometown , this rent could give me a 1R which is 3 minites ' walk from the station and provides comfortable amenities . Prices in convinience stores may be alomost the same , but when I go shopping in vegetable stores or the local market , things are as different as in rates ( ? ) . This difference robs me of opporotunities to eat fruit ( ^ ^ ; ) ( in Tokyo I rarely have furuits anyway , though ) . When I got home I was hungry and tird , but I liked it . Relexing day He showed me a lot of postgard . I would n't like to lose interest in swimming , so I must warm my body throught exercise before I start ? . Again , I was too lazy to make any compotitions . I listned to his songs today and he 's my favourite rapper . I think he 's the most handsome of all rappers lol Hellow Everyone ! I read English Books to help children to studing . Prease help me to fix this document . I 'm goint to Asakusa bicycle for health . Saturdy ! ! ( OR - I will be going for a drink with my former high school techer the day after tomorrow . ) I have n't gone drinking with anyone this much older than me without somebody else , so I feel a little tention . Are the students able to understsnd English grammar ? I thought that I was definately not good at it . In other words , I 've totally screwd up . The white and well ripen corn ( ) out of the hust ( k ) makes me happy and I anticipate how ( ) it will taste ( ) . So I 'm very happy because hiking is my favorite hoppy . But I am a little worried for the rainly season . I will organize an English Club for my company and also host it next month . Our aim / goal is to let the English learners around us get together and open their mounth to practise their oral English . For these reasons , I thnk education that aims at development of individual tarent rather than learning by rote is needed . My high school give us many chances to go othere countries . `` Everything was over - producted or just junk . It is so sprendid . Because , we were able to eat fresh fish , shrinmp , salad , etc . I do n't want to letsing he be unhappy . As soon as I arrived I noticed there were a lot of foreingers , but I did n't talk with anyone . I tend to get nervous when I have to speak in English because I have no confidence with my spoken English fluency . One of my elder sisiter 's family came back from Kagoshima to live with our parents seven yeras ago . Since then , my sister , nephew and niece have lived with them . I think this movie is a very interesthing story . Finally , we made an appontment to see him in his home town , Bergium . Cloudy , rainy and sunny , Tuseday , 28 , April , 2009 Sweet Moment - Transrlation # 03 I want to learn child - nurturing methods used in the US , and to do the work that is velated to the child 's future . It is maybe an action movie like indiendent day or almagedon . . . . I can study Eiglish in various ways on the internet . Take for example EnglishCentral ; I can practice listening and pronounciation on the site . It 's so happy for me becasuse it 's a chance to implove my English skills and I can save money for buying my favorite things . I remenbered it was very interesting and wonderful , and most of the pavilions had a long line . I want to go again , although I forgot the name of the retaurant . I feel Chiristmas is coming , discoveing people who have Starback 's tumblers with the Chiristmas colors ; red , white or green . In order to attend a kimono acution , you need a license . I will go to Hawai next summer . Generally , I do n't say much if the atmostphere of a conversation gets tense . However , I will find another way to say sorry for my irasibility . Because I had to teach her math , I do not want to go liberary . She never thought of anyoue else And there is a bad smell aroud them because they became spoiled ; ( I think a man who threw them away is very stupid and cruel . It 's a little imconbenient , although it 's good for relaxing . Maybe I shoud live life more slowly . Why do people think days pass by so quickly after fourty years of age ? But she felt days past by really fast when she was fourty . Usually , the beans are sold with seasoning such as soy sourse . So , a little bit of soy sourse will spice up the beans . Due to the unique texture and teste , some people are not fond of it . Yeh , at least I 'm alive , and I have a job . It 's similar to `` Mentlist `` in that both protagonists of these two dramas can read someone 's mind with their amazing skills . Woud n't it be awesome if we could read someone 's mind like they do ? Well hope I can make lot of friends here and exchange langueges ( language correction ? ) with each other . In modern life , I think moest people have an image ( icon ) . Maybe the image is ( of ) an economist , a president or a drawer ( artist ) , and so on . These peolple have an important influence on the admirer . In the firest instance , I think that he is a prime singer and dancer . beacause there are n't ( many ) people who can reach the attainment like he reached in this world . He often takes much money to help ( needy ) children through social walfare insititution . Afte school , I have to go to cram school . Now I 'm writting the text of my presentation . But , it 's tightly connected with the previous stories . If you do n't remember the stories , it 's better to watch T1 & T2 before you go to the theater . It is always nice to write here for I am always so curious to find out who will be my first wrting corrector ( or should I say who will be the first one to correct my wrting , but no matter who you are , I would like to say `` thank you `` to all those who check my writing , you are the most wonderful people in the world ! You 've got to know the difference between `` given name `` `` family name `` and `` middle name `` . I often mixxed them up before , but now all is clear . There is one thing you should always keep in mind : when you fill in a form , please mind your writing . If you use joined - up letters , then it would cause pople trouble ( in ) recognizing what you wrote . This weekind I 'm going to the beach with my girlfriend to meet our friends there . Althouht I have listened to this song somewhere before , I did not know the title and singer untill quite recently . My chance to get to know the song was a CM by a campany of Instant noodles . I was born in a northern city of China , and I went to colleage in a north - eastern city . I love snow very much , and the winter in colleage left a deep impression in me and gave me good memories . It 's so dericious ! Hi , today we are having good sunsine . Last week I went to Hokkaido , which is in the northen part of Japan . . I went skiing there . Since I started to work , I had no chace to go skiing . I have actually witnessed a cab driver bargainning the ride fare with a foreign lady who was extremely tired after daylong shopping with her young kids . I 'm planning a summer camp with the pastors for all chucrch members . The place we will stay is awesome , with little streams from the hills and helf of the area is covered with trees , which is wonderful in summer . I 'm looking foward to going there . Are the problems international tralvellers cause greater than the advantages they bring ? Hence , More and more visiters should have opportunies to travel to other places . It 's a format of program when learning a new programming ranguage . The company that I worke at forced me to take a test yesterday . Today is the start of my english staudy . I went there , at that time , the docter said to me `` there is a wisdom tooth in your mouth `` Stupid Day and Asertivness Today , write your uncorrect behaviours and write your correct behaviours , and perform the correct behaviours the next day . Resentry , I often feel this way . Thank you for readnig and correctiong my entry . I think politicains should sacrifice themselves , leset vested interests . This is what really happe in Japan . good job But his friend did n't come back till the middle of the night , he feel tired after a long journey , so he could n't keep on waitting for his friend . Well , it 's not really `` do nothing `` but studing Japanese . My parents want me to go for an exam of TOEIC and JLPT , then use the adventage of these two languages to get a job . Honestly , I 'm not really good at socialing with people . Stranger makes me nervus . Of course not to mation using the adventage of English or Japanese . . . . . . I have been a lacross player ever since I become a university student . Hello . It 's my first time using Lnag - 8 please check my sentance . please make this dialy sound more natullay ~ ~ ~ ^ ^ If it is not for an improtant thing , I prefer not waiting . First of all , the small cute `` Daphne Odora `` , which is in full bloom from feburary to March , reminds me of going to cram school in Hiroshima where I stayed at my uncle 's house to go crram school . It 's like delicious , vinilla flavoured chewing gum . On the other hand , I felt an elegant atomosphere . unpleasent , such as strong s cologne , hair pomade , women 's perfume , ( it always smell good alone ) , just mixed up , came up to me and then , I got sick . I want help and to make freinds in the world . Sounds more natural . My favolite artist is METALLICA . Today 's journal bacame about discontent . Today I read a tranlated fiction of chinese writor . While the man dreamed about coutry house and want to live in a farm , the girl liked to use brain not the strength for work . It was fun story that the English man can imagin how the young Eastern will be . So , dad said to eat dinner in the reataurant . It was a tough time , but I enjoyed taliking with the customers . That 's why many people , especially men , were wondaring to pickthe ( right ) colors to make aflower bouquet . These hydrangeas have special coloer and shapes as well . But as a matter of fact I got car - sick , being uable to say no when I had little appitite on our way there . Today I went running about twenty miles , but I could n't hear the footsteps of Spling yet . One is the Honoruru Marathon in Hawaii . just signed up to belong to a basketball team , yoga class , volounteer and so on . Recently I can go to work only two days in a month because I have been receiving post - surgical chemotherapy to prevent canser recurrence and metastatis . Though it was regrettable that I got sick , I belive my sickness have developed greatness to my soul . She majoys in fine arts and she want to study in france in the future . The movie I want to watch recentry But they alone do not warm my house , so I alos use an oil fan heater . I 've kept playing basketball from when I was an elementaly - school student . It is a very difficalt sport for me , because I 'm not tall . But , I practiced shooting many times by 3 - point - line . In these days , I 'm always shoppinng or singing in the `` KARAOKE - BOX `` or drinking riquere or doing many things . When I gave a speech here the first time , I was a little nervase . I have to programming for my reserch . The langage is OpenCV . I 'm going to study C and C + + langage at first . Before long , you will find your home beome neater . I should have worn a long buttom . However , the Japanese do not really understand the logic of star signs because they believe the blood type is more concinvable than star signs . Everything has an exception , and I guess I am not counted in the stastistic of the star signs and blood types . This is my firt entry on Lang - 8 . He often asked me how to study and mangae time . changing my plans like doind this 3 times a week . memorable day and muisc This was the last time that my classmates and I had a meal together since next semester we will be devided into two different classes . So I lay down on my bed and listened to muisc on the radio , which made mehave a good mood . Additionally , light musiic helps me to fall asleep quickly . From that day on , I dreamed of ofimastering english as well as her . What is your favorit muisc ? messhi is great player ? Why you can earn more at Canadian companies is that they estimate indindividual skills more than Asian companies do so it really depens on your skills whether you can earn a lot of money or not . I hope my english gets better for many resons . and I can Ihelp you with Korean , and a little bit of japanese . Does anyone on this site have such symtoms while staying in Japan or in your own country ? Recently , I felt like wach `` Avatar `` . My foreigner freind told me about that magazine yesterday . He possesses a lot of authority as bisinessman . He has taken care of his pearents untill he dropped out from a private university . I wish one day Catalonia will become an autentic country , and then we will be completely free . Men 's foemal dress is easy . I went to buy a dress suit from a tailer yesterday , Becase I 'll participate in a friend 's wedding ceremony and I do n't have foemal dress . If I were a woman , it would be deifficult to choose , but I am a man , so it is easy . Men 's foemal dress is more uniform than women 's . When we try to study English in Australia for six months by using a Japanese agent , can you geuss how much money we have to pay for them ? I got angry , so I slamped the door . I knew nothing about foreign countries eithher . I developed chest mustle , upper leg mustle , and so on . Today is thusday . If you are a samrtphone user . We are going to go to Himeji catsle and some other places . I want some things in my life to change such as finding a boyfriend , getting a job , being sussessful . . . But , my englsh was not good . Recentry I often went to the States , almost 3 times a year in last 3 years . Nobady knows what would happen in the future . So , I need to impove my speaking and writing skill in English . The Rabbit has the personality traits of active , tame . . . . ect . I brougth the paperback and an electronic dictionary . I stude all day long and arranged the company 's products . We have a big test tommarrow , and I mean BIG , very big . . . I am very , very , very nervese , because studying is not my faveraite thing . I understand some English sentenses which I could n't before . She was just fine , so I ` m realy happy . Everyone seems delited by it . My fother had lots of potatoes in the house , more than he could eat before they became rotten . So I gave most of them to my yoggy teatcher whith two carrots when I visited yoga sutudio . Their menus look so yammy ! ! I Abusolutly have to study English . Maybe , beacuse it makes me have a headache . but I wii try to learn more English There is a satelite school here and I 'm kind of an exchange student . Alos , I think my English has improved more than when I was in Japan . It is my first time writting a diary in English . I hope someone will revise my mistakes in this artical . I would really appriciate that . I 've gainted some weight . The divice is tured on every morning , but today something was wrong and it did n't work . She rided her bike and she gave me a chocolate , which was delicious . After reading a record about the debate between Obama and Miken , I thought there was a great difference between the 2 candidates , and that 's why everyone said Obama was better . Obama 's speech is full of numbers and truth , he memorized and used these records cleverly to support his oppinons . On the contrary , Miken usually used concepts or vague words . When it turn to Miken , he said that it was right to do so because of justice and the government 's calculations . However , maybe fighting in Iraq has more benefits than disadvantages . But if Miken ca n't explen it clearly , I think it was clear that Obama was a better option than Miken . In Japan I watched the full moon on 20th , Janualy . I forgot its title , but it was about disigners who come up ( invent or design ) with variousequipment that help people , such as people living in developing countries . Yesterday , I used the Skype for the fitst time . For example , I like to read books which are , of coures , hard - covered . The standard mobile phones which are sold in Japan have high - tech camera devices and internet connecting servise . But I do not need such kinds of higy - tech functions . Therefore I bought a very low - quality mobile phose which has jist e - mail service and a very low - tech camera device . Nawadays , Do you think I need to own a car ? Therefore , I can do work more speedly / quickly and efficiently by using machines . All of above is a part of my essey that I wrote in a class during my study abroad in Hawaii . This is my frist journal . Haruki Murakami ? I guess they were on a day off . . ( It 's an abusolutely impossible case in Japan ) Fortunally , the light was fine and we could phone . My Frist Time Writing A Diary In English It depens on the woman , but I think most women who are given a lot of love from their parents do n't do that , unlike this Taiwanese woman . If you type your name in the box , then the program shows some Kanjis in your illustlated brain on the screen . In the end , he talked about his experience of how he accidentaly met his friend exactly on the day after he dreamed of his friend who he had n't seen for a long time . If enybody knows how to do , please teach me : ) The operater calmly said `` First you have to make sure he is already dead . `` After that the operater heard a gunshot from the other end of the phone . The hunter said `` What should I do next ? `` I 've never stayed in foreign countries , so I ca n't descrive my feelings in proper expressions . And I know it could be the most precious part because Chongqing , together with its people and mountains , has inevitablly constructed the background of my university life which has been maybe the purest yet most complicated period of my life . Differences between wish , hope , and beleave A lot of frustartion came out from both teams . Some playes fell down to the ground and looked very hurt . TV proglam on - air : TSUNAMI . The father of the bullier came to school to apologize to the student and However , the girl who was bulllied retired from ( quit ) the team at that time and This time the bullier told me that she wanted to retire from the team ( too ) . For example , he uses public portation when going Our city is in the suburbs and it is difficult to traver I want to buy a beautiful woolen cap to warm myself , red is best , which looks like fire in winter . One porson who fooled them is making music on the Internet . My teacher would like to everyone write santances . I think this technique is spcial . They controle the effictiveness ! And exercising makes me feel refleshed ! After exercising , taking a bath is my favolite thing ! ! But , I relly feel sorry / sad about my English right now . . . For example logarithms , vetor operation and integral calculus . I took some phote with my digital camera at my bitthday party last week . This semester I 'm only taking 2 couses , but there are some other things I have to deal with . . . Now the area I live in Japan is in the reiny season . I 'm at a point where I can no longer find any appropiate books to study with , so I 'm basicly wandering around in circles . So far , I 've completet a 1 - year language exchange programme in Japan , and have picked up an insane amount of vocabulary . I 'm not so sure about kanji combounds , vocabulary and grammar though . . . In this movie , Led Zeppelin 's famous song , ' Immingrant song ' was used . In 2008 ( two thousand and eight ? ! ) I earned a degree in Journalism at the University of Palermo and the first week of next novembre I 'll take the program to earn a specialist degree in Social and Institutional Communication . It 's a thick and soft udon with only simple soy sause , and it was delicious but softer than I expected . After that , we had laxuary dinner which had various sorts of sea products ! they usually go there during their mddile semesters . There is no shunshine but there are strong ? high ? winds , therefore , I 'd better / rather stay at the doormotory , playing on my computer . And then , I read those comments , and I got really pleased and happy becase those explanations helped me understand the parts I did n't in an easy way , & nbsp ; plus there were a lot of examples . Well , I 've had a delicious breakfast , and today the weather is n't as & nbsp ; cold as it was & nbsp ; befor . Recentry , I wonder whether foreign lungage should study in the country . Everuone please help me . I try to start writing a diry on Lang - 8 I shink I want to study English more but it 's expensive to study English in japan . Kono neko wa okashi hen desu . Kono neko wa senpuoki no mae de nemasu ga , sono nezou ga okashi desu . Tabun , sore wa totemo atsui denki no tame desu . Whenever I watch that show , I 'm hauted by the fear of terrorism haha . I am interested in `` SILS `` ( School of Inernational Liberal Studies ) in Waseda University . After that , I talked with a coullege student . She has studied abrord for a year . I have returned to Fukuoka prefcture . I enjoyed looking at the choices in the beginning , but it was going to be complicatd . So I am going to stay in Fuuoka for at least two years . Today We talked about blood type and many personality traits accoding to blood type with my phone conversation teacher I told that him in korea people believe that blood type affects the thinking and personility of people I thought I had to study English , especially the listning part . I recieved my laptop from repair . I paied the mobile phone & amp ; GABA ( English scool ) 's expenses . Well , I 'm trying to translate a contract about medical instrumentof from Japanese to Chinese . Why ? `` At that time , I did n't know the meanig between drug free and free drug . The mackerel was loasted and dipped into sweet soy sauce . mamorial day ! ! Today I just wasnted to say `` Hello `` to all of you . : D what my freiends are thinking and can also send what I 'm thinking . Theerefore , I 'll just go to bed right now . However , that blogger says that before you make friends , you have to imput lots of words , about 5000 . Please somebaody help me ! ! ! My dog gave birth to 1 boy and 3 girls on Aiprl 13th . After that I often visited the States for business and lesisure . In another two years I will be sity years old and I plan to have a trip to USA with my friends to drive across from LA to NYC . Today I went to a funeral in a buddist temple . The road was like the river so I was affraid of driving my car . I 'm excited a little because Lang - 8 was exactely what I wanted to find . I 'm getting a bit anoyed by all the spam accounts on sites that I like . At least , I personally do n't know anyone who is just waiting for that mail which promeses a true and passionate relationship . And the ones that do make a living out of ' being a webcam girl ' or the like , the people that do have an intrest in such things will naturally search for it themselves , wo n't they ? I have been looking for an interesting American drama that can help me improve my English listening skills , and today I finally found ' The Mentalist ' on an Internet site and downloaded 5 edisodes from the first season . This drama is about investigators who belong to the California Victims Inverstigation organization and try to find murdurers . It is very fascinating because the mantalist uses his mental power and hypnosis to track down the murduer . ? Anyting else ? I like / enjoy playing tennis , skiing , and especially travellind ! We will engoy ourselves this weekend . However , I suddenly heard terrible lowd sound . And a lot of UFOs came over us , then they splinkled poisonous rains ! This is an email requesting reshipment of my mypurchases . Libraly 3 < story > Second dialy . I have never written a dialy , even in Japanese ; They are learnig ballet , piano , art and abacus , which is a Japanese crassice calculating tool . I think they are learing too many things for their ages . But , I never succeeded in teaching her continuausly . Thank you so much for reading my dialy . If you have time PLEASE correct not only my missspelling and grammer , Watashi no jimusho ( kaisha ) wa sochir desu . I had a coputer certification test at 12 : 40 . I Have Qustions Again . Well , I 'm reading at the momment a book called ( I do n't know the correct translation in English , I 'm translating the Portuguese title ) The girl that steal books . . . I 'm in the beginig , I ca n't undestand the story so well . Since a lot of people told me it 's a wonderful book , I 'm excited to read it . . . Usually it is played by professional SUMO wrestrers , but on this show , it is played by other fighting sports players and TV talents . The unique concept of it , and the amazing sence and talent of some players excited me so much ! Lo and behold , the Strikeforce chanpion as well as the DREAM chanpion Alistair Overeem was there , and he won ! However I guradually noticed that I ought to have more chances to speak in English . becaouse I wanted to kid around , I said `` Good morning man ~ blalbla `` Aand we received guidance from him about how to get rid of the mouse . He said that at first we must find where the rat insart the invasion . . When I say that , people aroud me look at me surprisingly as if they did n't expected me to say that and I end up looking odd . I say , `` We can listen to radio while doing simplitic tasks ( maybe give examples ? ) . I feel so relaxed while listening to the radio . For example , a Filipino said to me he wanted the bycicle - cargo on which I usually carry my kids . If we find that information , we can help satisfy the foreigner 's niche and it is a buisness chance too . I 'm a little bit nurves . At the beggining , I didnt 't like it so much , but gradually it caught my interest . Next I would likr to watch the DVD of part one . with the differences , we ca n't learn the foreige cultures completely , and then if we do not have a good knowledge of the different cultures , it is a big challenge for us to write an English essay well . As foreige language learners , we seldom communicate with others in English or write English letters to others in our daily life ; that is to say , we do not have a good environment to learn and we regard the writing course as what we have to learn , but what we want to learn well . And I believe that if we learn more foreige culture and develop a better language environment in our English study , we will find that it will be easier for us to write . Somehow , I recently have n't takjed with Americans in English . A few days ago , we went to the cinema to see `` Shrec forever `` near my home . Shrec was very funny and fantastic . Shrec feels that his married life is suddenly very boring . Shrec accepts the proposal and he is trapped . Could you do me a faver ? How are yor ? I think my English sentences are sheesy . . . Can you beleive a guy around 20 watched such a love story ? LOL In fact , I like love story movies because I do n't need to think deeply about them after watching them . Mio loves tomatomato . But these papers are too diffictult to write , I feel that I will have a very `` good `` days in these two weeks . I had to speak English through a mycrophone . And I had to type English senstenses with my keyboard . . I can improve my enlish ~ ~ It looks like a white carpet and it is very beautifull . becasue outside was sunshine and I did n't wear lots of colther . Haha , wonderfull snow I like it . No matter what 's sad things are in my heart , I always encourage myself finally ~ Hopeness is light ! They tought me how to play pool . I wnat to go out with them again ! While Gods is plural , but it is prepended by an article , I mean `` the `` . And this kind of tea was promoted by one sentence advertising saying : `` Please drink this tea if you want to control heat . `` It tasts very odinary when I drank it ( for ) the first time , before this advertisement started bombarding us from all directions . Many pepole fed them . no suspecious people following me It 's testosterol itself that makes the difference . The amount of testosterol released decides the sex of the fetus . Surprisingly , the more testosterol released , the more uneven the length is between your ring finger and your middle finger . To my openion , I do n't think it 's good to pioneer biofuel , It will be a problem since it sitll needs fuels to transport the ingredient . If we start to use biofuel , people may think that the problem of food lacked has been solved , and start to use things unlimitedly , it will cause a wate , too . He said it 's kind of awkard because last year we ( both ) studied together at the same school , Yesterday , I registered with the sns site which my friend on this website recomended . I interprited it as ` Im a lazy woman ` little mistake in grammer . Once I understood what he meant I quickly apologied . When we study a foreigh language , we usually memorize one meaning or two for a single word . My neighbor , who lives in the ground - floor apartment across the alley , adopted two dogs . I called one Small White as it 's a white dog , and the other Spoty , as it has black spots . A few months ago , Spoty died due to old age . I thought it felt very sad because Spoty was gone . I saw him / her wandering in alleys and lanes nearby , I guess he / she was searching for Spoty . Althogh it has been three or four months since Spoty died , Small White still whines somtimes . In the contempoary world , technology is advancing at an astounding speed . But in the meantime , whether technology causes entironmental problems has become a highly debated issue . Specificially , instead of wasting our resources , a simple life can conserve non - renewable resources , such as mentals , minerals , petroleum and fossil fuels . It may be tempting to argue theia easy life may carry potential drawbacks . However , the denifits reated by technology far outweight the disadvantages . so we are stayed in militery service . . I think it 's our first trevel . . But nobody wants to go militery service . . ^ ^ ; Compared to real trevel , joining the Army is a little deferents . Of course , Trevel make me flutter . . Everyday we should go to scool or to work . . For my refresthment , I trevel . . Have you ever had an experience in foreign tevels ? How many different kinds of trevel are you familiar with ? I am not too good at Eniglish For example , they can learen how to talk and begin to understand different languages by watching TV . The first lesson I learned was how to conmmunicate properly with different people , including classmates , professors and people of different social status . We had a task that assumed you were in a lift with your boss and he didi n't know you , so you had to try to promote yourself natrually . This kind of thing seems like a piece of cake , but it 's definitly useful in our daily lives . I stayed home the whole afternoon and became fent . Though my ability is still not good enough for the impending examination , it seems something constantly coaxes me to find other ways and escape from this endless yet doomd to fail enigmatic swirl . Only in daydreaming or the dreams of deep sleep could I find the contented smile with the delightful wrikecles embellishing my cheeks , carved by all the wounds from my sacrifice and torment . At that damn moment I just ca n't do anything practical or efficent to cure or soothe her pain from the aches and itches , andall all I can do is to comfort her with my care and words . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the soud of my mom 's breath reminds me to be more determined and obstinet for my hard - to - reach dream . The great mother 's day is around the corner , but I am still a dependent child who does n't have the ability to buy her any luxurious or exquise stuff or treat her to a dinner in a great restaurate . I 'm feeling comfortable even though I recognize that there are many mistaks . I wanna take advantage of this hapiness and time , to improve my English . And I worry about zemi that starts the second grade at unversity . I had write in English becous I want to know what I wrote incorrect ! They will have a life of happyness . On this day , the obstruction will bacome a bridge . That monie is very interesting . I should remove worms from these leaves so they can keep gorw . but I do n't have any firend to teach me English . That is how we show our strength to our cumtomer . One of my colleaues became a father yesterday . I want to have such a great feeling , but saddly I ca n't give birth by myself . Shinokiya is wonderful plase . I came to Singapore frome South Korea . I havs looked for couse in community centers in singapore websites yesterday becase I want make a local friend so I looked for an English it was my first premie . Because of that , the first day might have been canceled , but the typhoone went another way , so we were able to hold the festival . I got a pair of danbels to train my upper arms . They are not like regular danbels . This city falls victim to a disease we 're afrad of . Because the actors are perfect , and the gerne is action . Now , I will introduce my favolite song . I drank too muxh . He seemed cold becaue he was n't wearing a jacket . Then I learned Nicotinell patches are released fromNOVARTIS Pharma again . This situation has lasted for a couple of days already and the roads are litterred with ice . I want to make many foreign friends , and learn about foreign peaple . I 'm going there by a woking / holiday viza . In epidode 1 - 3 , Rachel said , `` I should really get back to work , `` and Phoebe answered `` Yeah , 'cause otherwise someone might get what they actually ordered . `` . While other waitreses could serve well , Rachel could n't serve well . I think we have to care about wrong streotypes . I am also expectable for the coming new semester . but the leaves in Kyoto are especialy beautiful and amazing . While I was riding on it , a Filipina person spoke to me in Japanese . But I thought the atomosphere was better in Sky Spa . I wish I could speak English fluentry ! In order to improve my writting skills , I think I 'd better add a daily record of my activities . it 's rlly not easy to blance those three things at once . She gave me a shutlecock key holder and some cookeis . I will put it on my badominton 's racket case . I hope this accomodation remain for awhile , in spite of the upcoming tough economic condition . I 'm narvious recently . But it was puite easy for me , and I wanted to read something more proffesional , like a paper or thesis . It 's more lightfull here now compared to what it was before . All of my sudents passed it , which made me happy . Also , I thought I need to study harder not to be beaten by them in the future and always to be their teacher . Usualy day Izumo is more beautifull place than where I tought about before visiting . I am disappointing now , I saw anouncement today , and I now realize how difficult it is to apply for that program . Sometimes I think abou why my parents always work so hard , yet my family is still so poor . I really do n't understand this . Even I am trying my best to get that scolarship , because I can ` t afford the sky high fees of graduate school . Some cell phones are very expencive , but they can do more things than cheap cell phones . I 'm going to stduy English and Germany hard on this site . This is the frist time that I write my diary in English . In my dream , I could smell the cat and my nose was tikled by its fur . So it was very taugh . recentlly , the movie ' The Hurt Locker ' showed . My friend asked me about this sentence `` Enjoy ur life there . `` That sentence is supposed to mean `` enjoy ur life in canada . `` The daily temperatures here fluctuated between / from - 2 to + 3 degrees Celsium . Should one ecpect a reward when doing a good deed ? For example , he takes care of his friend 's wife when his friend goes abord . Because if you try and prevent the theif who is doing something illege Anther reason is doing a good is alaway recognized as a silly symoble . So why does n't the goverment give some reward and let them feel a sense of pride . I actually was not expecting such a great response by anyone since there are so many perple writing a diary and wating for diary corrections . I just wnat to hear your voice again . I went out with someone to test and comfirm how much I love you . though it 's very insteresting to be with that boy , Since there had been unexpected visters , I used up my coffee beans and I forgot to buy new coffee beans . I love the smell of muffine and coffee . It makes me feel so happy . That is my fovorite moment of a day and it is where my enagy comes from . My body is still craving a coffee and I am counting down the time until my fovorite coffee shop opens . Today was a boring and a tedius day . So I feel bored ( & tedius ) . I want to go back to school . But , the language specs were very interenting . I cook every day because I have experience working at a restaurant as a part - timer , and saved moeney . And I also heard that somethimes lions show up . . . . the University 's liblary to study for myupcoming master course entrance exam . The exam is onthe 25th of Augst and we have to take 4 subjects including English . - It 's the script when I prepared the English speech contest in my 1st year in Uviv . The leader seems to be a lille bit strict . Since there are so many non - japanese people working out at our gyms , I 'd like to welcome them to our ruuning session , too , which is exciting ! : ) If you skipped this step , the remaining temperture will harm the freshness , which means it will inevitably pull the rug out from under the all efforts you have taken . I am going to visit Pune for a business trip for several days and I want to get some informtion about Pune especially about turiost attractions in the area . The first one I draw is based upon the `` Madonna Della Seggiolia `` by Rafaeollo . Because it is so difficult to explain and express my job in dateil . Many good friends who have different countries are prabably here . To get a satisfactable result , I decided to get a 600 score . Next time , I will see her befor my day off : ) Hello eneryone . One day , I used goole to help me improve my English . I do n't know why but I probably spend too much time on Internet or I do n't eat a lot of food and I often drink a lot of coffe . I 'd like to get in fittnes clubs ' gym . This gym has a lot of foreiners and that 's why I 'd like to get in . I learned that some western cultures have the concept of ' personal space ' . This means that people think they have an invisible area around their body in which they are rightously occupying and when some an unfamiliar person comes in to that area , to them , it is an intrusion of their privacy . I hope that these past weeks were also usefull for you . It sonwed occasionally . And in the world , it is natural that lots of people spend it with thier families . They want to spend it with thier special boy - friends or girl - friends . Although speet limit is 55 mile an hour , most cars drive 70 miles an hour . Normaly , rainy season lasts until June if my memory serves me right . Sometimes I felt uncomfortable , beacuse my boyfriend seemed to love talking with the girl . Altough I know they ca n't have any relations , I do n't like that he talks so much with her . Suddenly , I felt angey and asked him , ' Why do you know she loves it ? ' there was a menial man who graduated from Camblidge University The man went into militery service and passed away in France . one of the my most favorite auther At the milk celebate , there was ' milking experience , making milk cheese , First , we put 8 lavendar oil drops , 2 drops of milk concentrate , Previously , you guys comfirmed my resume for me . Thank you for that . I am intersted in this new experience . I need to bake a pie , fri potatoes with beefstakes , little pastries , what else . . . Well , I 'll invent sommething else to cook . The Korean natinal holiday `` Chu - Suk `` is over . We talked nicely 2 days ago and he was in bad mood . I stood next to him , helping him thorugh his problem . becouse I like movie so I woule like to whaching enghish movie . My favorit movie is Jackie Chain . Because my husband 's work was becided in Frankfurt . Sometimes I think that days are so short because I ca n't do much things . However , on weekends , the days are longer and then I do n't know waht to do ! Now it is wintter vaction , so I am happy : D torday I erolled in Lang - 8 after a friend introduced me to the site . She said I can write on this website , and someone will correct my writing . Taipei 101 was build by the KTRT team and there are 101 floors above gound and 5 floors below ground . During the power outates , the traffic lights do n't operate . a bit tired as I am , I am pleased with him knowing more about chemisty . I am satisfied with my attitude towards the job . By the way , my friend and I studied MATHEW on Saturday Bible study . but I have some free time to do something like this nowdays , so I 'm doing this . If I paseed , I have to do the interview one more time . Somtims I have a cough , runny nose , How can I lrean English ? I had bread and soup for diinner while watching TV . However I think this situation is not common for the typical Japanease . That 's terrorable . From the th to the 10th of May I was in Nizhniy Novgorod . A tyhoon is approaching . The wind has picked up and it 's pouring . I 've just started Lnag - 8 I 'm an IT engeneer , so from technical view , it is not so hard , I thought . I aloways eat dinner at 11 p . m . Since she is very knowlidge about archtecture , and we have different opinions about it , we do n't get tired of discussing it . Besides , we can enter free of charge and the plice of food and drinks is very reasonable . Valleyball Game I entered a valleyball game last Sunday . I usually use some LUSH products every batht time . So I decided to be an instant colunteer interpreter and help them . Well , I 'm a graduate studnt now . Of cource , it 's a part time job . The paerty will be given in Tokyo at Roppongi . The recruitment number is 1000 peopre . What desine design we put on ? Is anything I can write that has never been writen by others ? I will study tourism in univercity for 4 years . I am intereste in the food problem . I am looking forword to going abroad to study . Yesterday , I had a party with my neighbers . Three people are living in our apertment , and sometimes we have dinner together , or talk over a cup of coffee . Althought we only had 30 min to cook , the meal turned out to be really gorgeous ! ! ! Althought I failed to win a prize at Seoul office of education KOI , I thought I was very good at programming . I 'd y be very greatful for any help to improve my English . The corn bits tenpura was the most dericious dish . Naturaly , we looked the bill and were surprised and laughed . To be honest I do n't like to study or memmorize grammar rules . I ate chiken rice twice in Singapore . I prefered the grilled one , so I placed an orederd for it . I felt it was like teriyaki chiken , a japanese dish . I ate an entire half of a chiken with my husband . I tried chiken rice again at the changgi air port . I am going to live in singapore from 11th Octomber . I want to eat chiken rice sold in different places ! I am becoming an architect and want to know more about my work , buildings , and desinging in general . and music ( I diskile pop music and prefer genres like metal , metalcore , hardcore , punkrock , etc . ) . Sooooo . . 27th Febrary is my father 's birthday . I bought his favorit ramen and wine . This is because it makes my shose and skirt damp . it doesnt have any poitns . you shouldnt read this lol hi guys , sorry I havent written any entires . I have been forgetting about this lol I didn n't expect that I could have such a lovely time there . its alredy been 3 weeks since I came back here . I deffo will keep studying english . If you are goign to get scared , I suggest you stop reading . I think if you see sonthing scary , you will keep your eyes open to protect yourself . But it 's the first time I 'm going there and kyouto is one of the famce ( ? ) It 's bacause I heard from my friend that I would get many calls and messages from unknown people . But I recently have become confidnt about my English step by step . I think that it 's about time that I start skype and talk English possitively . The Shinshouji shrine has a gardian angel for the Kabuki artists and the Sumou athletes . You can find Kabuki artists and sumou restler on February third . People who got chocolates , cookies or various gifts on Valentine 's sday give presents to the people that they received them from . Firstly , I think there are three ways to understand the meaning of words of second languages - replacement , internal difinition , and external difinition . Internal difinition means learning words by dictionary difinition . External difinition means learning words by guessing its meaning when they are used in particular situations . Our experience has taught us that it is difficult to learn words with only their dictionary difinition . By learning second languages , you can enjoy tranveling abroad . First , the only way for Japanese people to understand English is to learn by external difinition because of ( due to ) large cultural differences . So we have to learn English by external difinition . By doing so , we can understand the exact meaning that we ca n't if we interprete English into Japanese . We have to stop the traditional way of learning English : interrpretation . this is my first day using lang 8 and I made a blunder , because I choose german as the langauge that I m laerning but the fact is I m learning english ! ! I cae to singapore 7 years ago I m here to learn a new language also I wanted to start a new life in a totally different place but of course singaproe was just a temporary place for me , the place I really wanted to go to is england , the reason for me to go there may be ridiculous but I think it is tolerable , the reason is I wanted to have a british accent , its cool furthermore it sounds professional isnt it ? While depressed , I glaced at the date which is April first . I believe that memory is nerver lost , even when it seems to be , because it has more to do with the heart than the mind . So , we can walk around Shinjuku , Harahuku , Shibuya , Ayoyama and everywhere in Tokyo easily . Maybe they have seen my old pictuer on laong - 8 . I 'll have a nap now and memerize some words this afternoon ~ This Sunday I will vesit a host mather for just a look . For me it 's fashinating looking into people 's eyes and reading through them to know their real feelings , their eyes can tell me something hidden , what the mouth wo n't say : fear , sadness , happiness , envy , shyness , embarrassment , anger , surprise , pleasure , lies , pain , complicity , reproach . . . If we look at the most famous paintings , for example Monna Lisa , the intensity of the look will capture you and will invoke an emotion . I hardly understood what everyone was tallking about . On the way home I stopped by the book store to buy a textbook to make my listning skills better . The big problem is the ice wind that belw right through me . Besides , I really like to listen to the sound of nater like birds singing , water flowing and rain falling , and the best place for it is Unmun Temple . Please giv me advice ! ! ! ! ! ! ! ! ! ! ! ! ! ! : D But untill now , I have n't been able to figure it out . I got the first comments for my jurnals . Thank you for cheak it . Today , I went to my other campas . It 's much farrer than my main campas . Yakuza is a Japanese gangstar . when you take only the first syllablus from each number , they are called , 8 ( ya ) , 9 ( ku ) , 3 ( za ) . My hometown , Kobe has a big house of a gangstar known as `` yamaguchi group `` . However , I can not help but be impressed by the beauty of the tatto on their backs . Tomo : `` ( Pointing at a sweet shop with Chirstmas decorations at the door ) Daddy , can we go into that shop ? `` I 'm going to resatrt to write . If you do not know what a Chikuwa is , read my previus post . Because of Harry Potter series , I began reading English novel : such as Hernry James 's short novels and Jane Austen 's six novels . Besides children novels , I also think gothic novel are intersesting . And this semester I need to write a reseach paper about Dark Romanticism Because Japanese book has many pictures about maids and Vctorian times . France has ballet , Hawaii has the fula . I 'm very busy thses days . When I go to bed many kinds of ploblems are coming and going in my brain . Someone tought me that if you have a ploblem you should n't think about it at night , because it makes your brain more excited . Generally , most of them were built during the feudial period . Each of them has distictive feachers . Priviously , visters used to be middle - aged or older men . Besides castles , Generals and Lords in the feudial Period are also popular . But when growing up , you 'll find everything is differet than what we thought before . We have to learn to bear what we do n't like , and we have to work to feed ourselives . We have re - instructed the packers to make sure to use proer packing material and we have made sure that panels will not shift in the carton to avoid any damages to the board . Yesterday , the tempetature went down , and many people feel that autumn has come . aaand I am not prepared to give a presentation ! I 'd like to read this book a lot of times and to develop my skils . And I do not have a kimono for sach a formal place in April . I have questions now , so I want to answer these questions , but these questions are a littele difficult and abstract . What is the difference between a scientific aregument and a speculative argument ? Suppose tjat you are developing a medicine . Is such an experiment likely to give you new inshight ? ? This way of living can be difined as ' ' passing through , `` which means that one finds the meaning of an act , not in the present , but in the future . For one person , ` ` praying `` itself is an act and a plesure . I love kimonos very muchk , but I do n't wear them very often . Now it is raining and sometimes snowing in the cetral area of Tokyo . From my personal viewpoint , I do not like cold weather , so I really enjyoy the warmth of this winter . That 's just what one would expect of a Havard grad . A : I 'm afraid it 's too much to ask , and I hope it is n't too much troble of you , but . . . . I 'm not a fashionable person , but I 'm interetsed in fashion : ) We got to the trush bin and found my empty plate , empty juice bottle and empty sweets box . . . Some hugry people should have been eating them . It was my falt , but he did n't need to be so angry . I hope he will be assigned in another department next quater . He was very surprized and looked at me sullenly . Becayse I was content , I went to sleep , Because this Plase is closer to the seismic center than Fukushima - nuclear power plant AND Onegawa - nuclear power plant was hit storonger than the Fukushima - ones from the Earthquake , Tsunami and seismic intensity . . . . . . I would like to emprove my English skills and learn about each other 's cultures . My first english dialy . These day , I have been secoleded for not resting sometimes ! in the following sentense : my classmate is warnning me that if I still have n't sent any part to my supervisor the worset thing is my friend just came to vist me from Nottingham . . . According to their comment on NicoNico Douga , they put sticky notes on a piece of drawing paper to make Mario , Goombas , and Koopa troopas . Probably that partnert could be an lang - 8 user , that would be nice too , so I am starting this search . Then I spend every weekdens to study Japanese by reading aloudly , for I have to study hard for my major as a junior whoes dream is to pursue further studies . Almostly all of my classmates have begun to prepar for NETEM , and that 's a little scary I think . You have touched me so much that I do n't konw what to say . It looks like three - dementional art . geograhy class 0904 : What is the diffrence in taste between IR - 8 and Japanica Rice ? I hope that they will eventually remenber each name and location . What is the difference between IR - 8 and Japanica rice when eaten ? Thery are really clever . He had heart on forhead , which is lovely for the valantine 's Day . I would like to have ridden him even the frist time I was scared of him At first , I could n't adapt to those teenagers who were noiseful in my calss or doing unrelated work . The parts that I ordered last week arriverd today ! ! It looks goood ! ! I look like a hamster whith big cheeks ! I am very gald the other person roccrect my errors . I gave lot of care to the schedule , ingredients , data of costomer and so on in this one month . It is famous for its hot - sping and beautiful sea . June is a rainy seazon in Japan . When the rainy seazon has finished , the summer seazon comes after . Some people do it like kissing or something befor they even get a boyfriend or girlfriend It is just like you liking someboody . What is the difference bewteen befor and after something ? Sending emails and making calls use a lot of Electoronic . Also used telephones are always abadoned in remote areas . It is not good for the enviornment . Neverthless this movie was a comedy , at the end the women made it up and it drow tears from me . and I wondered why the blanck of `` school and address `` is very small . I am twenty three years old ; it seems that I 'm not yong , but I am still in school . I hople in the furture I can have a beautiful life , and I konw it 's not easy . As a man , you must give your family a comfortable life . you shoula make your father and mother know you are strong enough to support a family . But I 'm still a student now ; I can do nothing escept learn and learn every day . I hope I can do songthing for my family , but I do n't know what . I am lstening to Eminem 's music right now ! Jeju is a beatiful island . One of the women and the three womeni are my friends in my university . We schelud to meet at a pub in front of my university . ( not necessary ) We introduced each other and then we drank soju . ( Korean alchoal ) We had a very fun and intersting time . Recently I ve started listening to English audio books to improve my listenig skills . Now I 'm listining to a book titled < Witch & Wizard > and I . . . I think the author of the book must have either seen too much japanise anmation or is a huge fan of the Harry Potter series . Anyway I 'll finish it somhow some day . It is traditional ivent to visit the grave of the deceased . How about your countory , what occasion 's do you display / celebrate Okay , anyway what I am trying to say is that cheese cake is not just a cake to me , it is a goumet to me . A spong cake should be the most basic step of any cakes . My daughte wanted new outfits as her Christmas gift and I wanted a new laptop However she graw up and she already knows who Santa is . Watashi wa Surubenia - jin desu . So , in future ( when I start my world travel . . ) , I will go to many contries and meet my friends . . . I welcome many friends from other contries . . . I alredy died so many times . . . But it will be very defficult to make . This is just the biginning of making my app . The next morning I felt exhastued . Now that I 'm healther , it 's time to resume learning English ! ! I read some daiaries written by Lang - 8 users learning Japanese . Restart Toiret Training Mothers should n't be too nurvous about this kind of discipline . One day , she played with her friend climbing the jungle gym , but her friend always climed higher than her , and so she started to cry out of frustration . However , she has been suffering from hemorrhoids since last month , and we finally succeeded to have her wear diapers to heling her buttocks . Van to iidesu . watashi ha nohongo wo renshyushitai desu ! Though my job position is a common clerk ( I belong to the sales department ) , I have a lot of responsibilites to my customers . After the Tohoku Earthquake , Electoric companys are saying that people should refrain from using electorisity . We believe this means that gas users will come back , but still many people are choosing all - electronic residences . This is the first time I 've joined this webside . I heard about it yesterday and I want to improve my Enghlish , so I joined it . I hope everybody will help me improve my Enghlish skill . The breatiful trees on the right side of the street where I 'm walking are blooming . Riding a bicyle up the hill on summer days is very hard . ( in summer ) I wish to get to know some friends here to study toghter . Merry Christhmas Merry Christhmas and A Happy New Year . or when I see a car of the same type and coloer which he drove . He was my dreamer , he showd me a lot of things . We are plannning to play games with kids . I 'm trying all that I can to learn English and japonese too . . . Today I was , in a `` how to learn japonese `` blog , and I found a theme about my japonese . . . also , I grilled chicken breast and spwrinkled some pepper and salt on it . My summer vacation in 2005 was exciting because I went to Dagupan City in Philippines where my cousin 's familiy lives . But I especilly remebered visiting the Hundred Islands . I had a nice and peaceful time with my cousin 's familiy on a island which was chosen by me . Obama 's presidencial inaugural address To be honest , I had never heard the presidencial oath in detail in the past . The Ecconomy is badly weakened . . . `` - He helds respect in the forefront . . . `` For us , they forght and died in places like . . . `` I wanna study english because I will go abroud this Andy Worhol 's work made my view be widened . I will eat soumen , which is like a nudle . The favorate book center where I want to go shopping is located in Guangzhou . But when you come to their country , begin living their life , and speaking their language , you undastand that they are not that different from you . I usually use QQ ( smilar to Skype ) on the internet with my girlfriend , who is Chinese , at 8 PM . Why would you meke coffee before going to bed ? I should have more interesting things to do rather than sleeping almost all mornig . I wanted to upload these dishes ' pictures but my cellphone 's battely had gone off . At the party , we talkd about many kinds of topics . For example , ecomic , other colleagues , men and women and music . I am studing two languages every day . Hopefully , tomorrow I will have enought time to sleep Two German women came to this farm yeaterday . Today was the first day to work with them . there are 5 friends I 'm familier with . Actually I 've heard that such an action , when lots of electical devices are turned off and on at the same time , can damage the power supply network . I will introduct myself . It is clowd today . She is aways kind to me . She is lovly to me . She aways teaches me . I have a class in one hour , so I 'm listening to music and writting this . But if I want to raise my score much , I had better study Listenig . Because Lisning should raise my socore more than Reading . I viseted my pearents and drank with my pearents . I 'd like to see her and her pearents soon ! Of course I like Japanmation too . She is so cuet and looks like an angel . I practice on Manday , Tuesday and Wednesday . That 's equall to 9 hours . Thank you for the reccomending , Beth , NurikoSpecial and Kchasm ^ ^ ( I saw KCasm 's correctin , and afterwards I went to buy the DVD . . . ) Can you see tha paper disk ? It says `` You can place the disk caontaing episode 1 here , after buying it . `` Why the hell do I have to buy it ? ? ? ? for my bithday I spent very good time in shanghai . I was very happied . I really like my familly . Maybe I can borrow some more accesories from my other friends , we will see . . . I 'm sorry I ca n't explane my feelings well about it . My mom bought me oysters as a suvenior from Sendai , Miyagi . This is my first dialy . because my acutally name is , duck jun kim . I 'm very glad to know it , but before I do I must pass my exams , because I want to continue my edication in the institute . They are very difficalt subjects , but I hope I pass them very well ! Thus , I 'd like to correct my English by writning in my journal every day . I have no Japanese friends in Hong Kong so I am looking for Japnese friends . I have never met peple who can speak Japanese in Hong Kong except my company staff . Even though you have many manythings , you see something of your friend 's that you do n't have , and you really want it . Although this is true , I believe we have to be satified . He was nice guy , cute and very jentol . Though I have no chanse to speak English in my workplace now , Because my friends or relative always rememdere that today is my birthday . I 'm looking forword to this meeting with my friend . I knew that IKEA in Japanese pronunciation is deffellent from English . I had to ask somestaff members about my luggage , but no one could speak Japanese at Honkong air port and no one helped such a miserable Japanese man . I made a mistake , and almost went to cutom counter because some members of staff told me I should go there to receive my lugagge . Some members of staff stopped me at the entrance of depature lobby , because they found asmall scissors in my bag . I confirmed my flighf schedule at the big electronic board . And after that , I felt he became somewhat better thatn he had been . It 's very nessary ! JUST WAITING , WAITING FOR SUCCESS , I DONN ' T BELIEVE GOD , BUT I STILL HOPE GOD can GIVE ME A CHANCE TO TAKE CARE OF MYSELF AND YOU ! ! I learned English for some years in school , but I was never succesfull . So , I am trying to improve my English with this blog ( journal ) and I hope some people will correct my posts und help me to be better in this language . fortunately my friend drove to the theather . so I appriciate her thanks to my frined ! terrible , I wrote a lot , but I lost them , how could this happend ? he is an inspector of agriculture and has a big tatoo on his back . You can comunicate with anyone in foreign countries , since English is the most important language . Nowadays , even a strong counry ca n't easily make colonies in the world . Hi all . I am new to lang - 8 . I need somme help . quetion about `` most `` Cameron Diaz jost now on TV . Tom was so homesome and Ms . I am an engineer of a construction company and I am constructing a phermaceutical factory in Shizuoka . So I enrolled a correspondence university to get a teacher lisence . At a hair salon in Harajyuku I was off offday . I always have some bread , coffe , and salad for breakfast . Especially , extra virgin oile is very good for health . However , I have to admit that I should put much more effort in studying Enligh . But I 'm still murmering when I speak English with a native speaker . Japan is in deep ressetion . I heard from xx that you helped deal with office matters for me during my sick leave . I relly want to thank you . For exsample , kindness , sincerity , strongness and so on . As for me , I think frendsihip is important . It 's my first time to regestry here They were amazing and their monuments bear witnnes to how great they were . The ancient Egyptians managed to build their country and leave their feetprints in the land so that we can remember them . Osama Bin Laden was killed in a mansion outside Isalambad and his body was recovered by US autohrity . I am going to begin writing a diary in English tommorow . Although real cars is consist of hard iron , this movie portrays many personificate cars as soft and cute . I told her of my recent problems , and she adviced me to do everything slowly , and at my own pace . Japanese people have a many oppotunity to hear American English from movies , dramas and music , but in my case I hardly ever hear British English in my everyday life . MF consists of / consits out of three families having distinct characters . But she has difficulties studying , which worries her momther a lot . My freiend works making Bizenyaki , so I will get a chance to visit the Bizenyaki work place . So some of them are very skillfull in their use of English and they are even better than I am . So I adviced her . Today , I listend to Taylor Swift 's songs . a sandwish . The following are the comparation between them . When I wacth the financial news lately , almost every time , many traders on the stock exchange bury their heads in their hands looking distressed . Soy saurce factory and the end on the tour , you can get a bottle of soy sause : DD So I booked a nice restrant to hold a end of the year party for my office friends . If someone has to check due to an emergency , they should ask permission befor checking it . airplane because tha body color is blue and I like blue very much ! At my university , there is a place I offten go these days . It is more relaxable there than in the library . espect my speaking and ( my ) listening . I do n't know what I have to do : learn each pronunciation of a kanji , or learn pronouciation of words using this kanji . I went to the baseball park with my friend on Sayurday . Some friends have already started finding employeement . This makes me nervous . I studied there for two years , and guraduated in 2007 . When I moved from my parents house , where I had my own room , to the dormitory I had to ommit some things I wanted to get because we did n't have enough space in the room . Why did I grou up like this ? I enjoy optimistic people , who want to do new things and who laught a lot . Her friend said that if you soaked this mando in a yogurt , it would become a fresh mango ! She is very positive person , which makse me a positive person . Can you help me translate this into the right gramma ? The plane has been carring more than sixteen - thousand passengers without any serious accidents for the last ten years . Today 's weater is very fine ~ Well , I 'm goind to go to New Zealand during the summer vacation . In British custom , putting red poppies on their chests is to pay respect to all war deads on th 11th of Nov , an armistice day . By the way Catcher ~ 's influene is a little strong . This periods American authers are very good . Fitzgerald , Capotie , Richard Brautigan , Charles Bugowski . . My favorite short story is Fitzgerald 's ' Babilon Revisited ' . It 's a loely and a little sad story . This story 's charactor 's conversation is very cool . Hi everyone , I just registered this afternooon , and wish someone who could improve my pooooooor English . I also help my friends with Chinese . . I agreewith her opinon . I have an iPod touch which I won as a prze 2 years ago . except for the phone and mbile internet features . I did n't get used to serch a web manual , This opened thegateway to knowlage , information and passtime . I was able to show friends odawara castle . But the risk is it prevents me from stading and reading . But before sleaping I can enjoy watching movies in bed . iPod touch is my tough and enjoiable friend . In the central neighborhood every ten steps that I took there was a newstand . I 've never seen so many newstand together . . Two survivers were found today in Japan ! Today , two survivers were found after 9 days . I had an exam this moning . I will have to take the same classe next term . The Delay Becasuse of the Typhoon The texts which should be read are fortunetly not difficult . If I were more acitver in the seminar , I could learn more , but if I concentrated more on the seminar , I would be tired . Yet today is a very warm and spring - like beautifull day ! So I decide to take the exam alought I do n't want to study the laws and theories . The gangs of New York , the black underdogs , the Indians in reservates that lose their spirit . I watn to enjoy keeping a diary . fable about cofe ( translated from Russian ) In the first , he threw a carrot , in next pan he put an egg and the last pan was filled with granules of cofe . After some time he took out the carrot and egg and poured out the cofe . - Carrot and egg have boiled and the cofe have disolved . But what about the cofe ? - It 's the most intresting . The granules of cofe have absolutely changed the water . Recentry I am very sleepy . Hello ! My mame is Sumi ! It 's my first time to write my dialy on this website . I hope I make a lot of foreign friends and learn other languages and teach Japanse to whoever wants to learn it . It 's getting warmer nad warmer these days . By using this device with 4 kinds of filtation , clean water emerges in the end . In a small town , you have to own a car to ensure a confortable living . Another aspect of the excitement of city living is the variety of cultural activities avaiable . Still , I would rather be a bit more cautious and live in a large cith than to feel secure but bored in a small town . Guess how many times I can write `` clouds `` in a pharagraph so short ! I got in one university finaly ! ! ! ! ! I maight live in Kyoto ! ! wao ~ I 'm so happy now Please check my dialy . We went to drink after the race and cought up with each other . Whether you belive it or not , Tsukasa and I had already thought about an escape route just in case before we went there . On the thatced roof I read an internet blog article repoting a new program , titled `` Kimchi Chronicles `` , which will air this year on PBS channel in the United States . Both noodles have a very smiliar flavour , but the noodles are different . It might be uncomfortable to a foreigner , especially if the she didn n't like the untidy atmosphere of a small restaurant . The restaurant is very famous for Milmyeon and as I heard , the tast of the noodles are quite delicious . It was an experimental exam , so we ` ll write it for a note in the ehd of May ^ So I bought serverl lottery tickets . To spend sereverl minutes dreaming and being excited is not so bad . On the other hand , when the brid arrived at the wedding , she looked so relaxed and happy . It has been one year since I met them last , so I enjyoyed talkin with them . African music is so rhythmic and has an unique tember . So , I like it ! I didn ` t reserch anything about the country yet . I sometimes pick up those leaves that have grown enough and saute with solt and peppar . We tookthe train to go to school and we would come home together from doing homestay . Jis name is HYON . You can learn about Hideyoshi and the relationship of people surrounding him with English imfomations and also can see a lot of works of art there . Since the new SCM project started this March , I ve been quite busy . . . Although the tenpertures is still low ( like - 5 to - 10 ) , the weather has been sunny recently in Toronto . The other day , even though the tempertures was - 5 , people were drinking on patios in the afternoon ! Unfortunatly , it is prohibited in Toronto to drink outside . It would suck to be sneezing all day when the long and cold winter has filnnaly been comming to an end . doctors always write down manin diseases , but from my point of view , it does not always mean main disease . We should lok into the patient 's diseases if the are correct enough to justfy their treatments . I 'm hangry . I 'm hangry now , but I ca n't eat anything because I have to get a medical check at 2 : 30 in the afternoon . Some people caught infuluenza . But I still caought a cold again : ( And I finally deciede to get it . But I felt something strange with this clothi Tonight , I recieved a notebook cover that I bought by mail order yesterday . It is very expencive but it did not satisfy me , because it is a little bigger than I thought . Please contrtibute in both English and Japanese . I have tasts tomorrow at school . I have to syudy tonight for tomorrow 's tests . but I continued studing English after work . but English studing is very interesting ! ! It 's been a long time since I have written an English dirary , so it will take me some time to get used to it : ) haha ~ ~ nice to meet everyone ! ! Chanpion ! ( 24 / MAR / 2009 ) I didn ' t go anywhere becouse I watched the WBC on TV . I was sisappointed . Qestion : How to learn language ? Thnks TO them , I can listen to English while having fun . Incidentally , because it is very difficult , I gave up reading `` HERLOCK HOLMES `` . Today , I talked and palyed tabletennis with him . Since he rolls a turban on his head everyday , and I had caght sight of him praying several times . Anyway , I have taken an interest in Islam culture since long time agoe . Frankly speaking , I wanna ask him some quetsion about his religion . learing norsk . . . We were strangers , but he made a good impressiom on me . But maybe you ca dont tell from this pic . . I naver acceput some stimulation like . . . montain erupt = ( LMAO Yes , I know I will soon be attending a universty and that I 'm 18 years old . When some people find this out about me , they are suprise and they think that I have a proplem . I can learn a lot of new information from cartoons , spically cartoons about history . I love a lot of cartoons , spically Japanese anime . I like anime that are about proplem in socity or about history . My favorit game My mother told me , `` You should creat your eveyday life to bring more brilliant moments in it . `` About Shi - itake mashrooms ww I 'm recently interested in California , because my univercity recommends us to go abroad to study at Univercity of California . That is because McDonald 's in Japan campained various American Hamburgers . It is famous as the home of the diety of studies . In my opinion , Korean food is the most dericious food in the world . When it comes to things that are `` slow and patient `` , nothing quite matches the variety of Korean cursin . I felt it 's important to studing English recently . You know , Japan is a small island , so we do n't need to speak English . We rarely meet Westerners , supecialy in rural but urban areas such as Tokyo and so on . I felt it 's neccessary to learn English lately . So I started this servis , `` Land - 8 `` . sometime I think I am really want to study archtecture or . . I like vegetables becase they are not too rich to eat . I 've been tempolarily back home this holiday . The comsumption of energy is clealy increasing all over the world recently . The excessive comsumption of energy has caused various enviromental problems . This very famous song is written by the extremely talent musian Jose Feliciano . That is the epic goal of every musicain , to reach to the heart of others . From today , I will write consitently in my diary . If a dog is a rabid dog , it 's very dengerous . Nise to meet you . My favorite caractor is Donald Duck . By the way , I have n't logged into Lan - 8 in a while . I could n't log in because I had forgotten my ID & password . Also , I have not been able to find joyfullness to keep a diary here . I woud n't like to add any more social networks . Despite my feeling , my English teacher eagerly encouradged me to keep a diary and write something in Englsh yesterday . I read a scientific magazin a few days ago . I 'm a vegetarian , ( actually I 'm a pescetarian , it 's almost impossible to be a perfect vegtetarian in Japan ! ) and it 's very rare here in Japan , many Japanese do n't even know what a vegetarian is ! I go abroad quite often and it 's not hard to find bege food in other countries , esp , in India all food is marked saying whether it is for bege or non - vege . Maybe I should open a restautant for vegetarians ? ? I did n't go to work because of a toothach . But just after luch , my toothach flared up . I hope my toothach can heal quickly . It is an English conposition about studying foreign languages . Three Rossian sumo wrestlers took some drugs ( marijuana , hemp , etc ) and then they were caught by the police . I want to learne Japanese . I 'm ready to help your Bulgarian . The Earthqueake wreaked havoc upon the country especially in the Tohoku region . Nowadays , I see people smoking in the streat . Today is ectremely cold . If it is excludee , it 's all fun . I treid again and again . pas de volly , pas de vie . . . I know I 'm crazy but I love tham and I really think they 're beautiful ! I 'm not sure if it 's cool or not , but he appers from the top of the fire engine ! I have a great spot at the front where the fireworks are shot , many fireworkers are now setting up the fireworks . : ) I was sprised that they had gotten my phone mumber from a teacher ( not sure what this last part means ) But I am still happy , I am no longer worried about how I can attract more membesers , and that adds to my confidence . Now , I have to prepare the welcoming ceremony to let more freshman particepate in the club . E - mail makes me feel happy , but uneasy and sad sametimes What deos `` text contributions `` mean ? Is it something like ' This book is for Helen ' or ' For my pafents ' , written by the writer on the reverse of the title page ? so it dameges the hair . I want to improve my English because I like talking with people ; girls in particulary . lol I intend to pronounce the corretion of this entry and be corrected by my pronounciation by a native English speaker on skype . I love spring because it 's wormer than winter . Yesterday I bought a used bicycle cheeply from a co - worker . That 's why I made plans to snowboart first . I do n't like to go the amusemnet park because the route to there is heavily congested all the time . becuz 2 days ago I hung out with my best freind I mean , for insyance , at first they only detected oil in one place . Besides , befroe the petroleum was found in Daqing , it ( the region ) was a wasteland . Grammar and listening were more inportant than speaking for taking ( the ) exams . We are comportable with each other . Moreover , I like the atmasphere of getting together with my family . I am now an exchage student of Bergen University in Norway . The documeent is very important for our work . We have to improve the service continusly . to evangelize the Pakistian people . When I heard of her story , I desided to be a teacher A way of thingking by Japanese is restricted by Japanese social convention without realizing . because the girls there are beatiful . We wrote calligraphy at frist , and after that the teacher started teaching us how to sketch . today I met my older sisiter and her baby . I like the British spelling , pronuniation , and expressions as follows : sound in Brithsh English . tell me wheter the British are more likely to pronounce it as ' I : ~ ' ? What happend ? For this competition , I needed gain waight so I would have some to lose . So I did n't fear gaining weight until today . : ] Secoundly , `` t `` play more sports I decided to run 10 km ( about 6 . 2 miles ) per day , and to ride a bicycle insted of riding on the train . All the santa and easter bunny things dissapeard and now , it 's only about eating . I have to put some money onto my rechargeable credicard in order to buy the tickets ( for me and my friend ) online . Ths building has two towers . Tomorrow , I 'm gon na leave here for Ipo by a express , KTM . Ipo is also a city of Malaysia . I will try to write Ehglish and want to be able to express my thoughts in English . So I thouht there is no problem if our store is closed today . I 'm very satisfacted with that color I hasitated dying it . I have heard that the Maldives ' sea level has been rising as the Antarcti glacier melts . This also affects the aminals and plants in Korea . So , we swiched from the restaurant that we were going to go to , to the bar . All I need is courege . My computer is slightly old and slightly whierd . Whierd . . . I hope that my english wrting skills will improve in the future . I would like to thank everyone who is goig to give me good advice . [ First contact with an alian civilization ] It is not certain that we will see any aliens because we should have already seen some of them if they exsisted . It is certain that more and more people will visit adn stay in cities because a lot of people in the world seek more convenient and comfortable lives . Of course , the number of computers increase and more people have the chanse to see and use them . Howevery , it is difficult for computers to become popular in all nations including developing countries . She visited my house twice a week and studied eargerly . I already graduated from university and my mojor was occupation rehabilitation . When I get up and look out the window , to my dismay , it is still rainning . Rainyday has recently become commen in most areas of China . In Japan this is colled an `` American dog `` . This is not the case in the US I am wondering about the name `` coorn dog `` , why `` corn `` ? ? I usually record musci from CDs and transfer it into my iPod and watch DVDs on my PC . The divce is an important tool for me to learn English through music and shows . I can watch DVDs again and it will help my listeing skills ! ! Enoshima is centerd along the coast of Sagami Bay . The region alonge the coast is called Shonan . Shonan beach is the most populer in Japan . Gettin back to my main subject , I recommend two Ramen Houses . The book is full of unexpcted twists and we do not know who the terrorist or the guardian of freedom truly are . And if you are not I would still recommend it because Digitall Fortress contains an amazing story which drags you away from our gray reality and certainly changes your opinion about thrilling books . Indain food is like roti canai , which is made of dough tigehter with some soup . MERRY CHIRSTMAS Today is Chirstmas day , but I just stay at home ~ without friends ! What is a torrbile day ! A foreign costomer is coming tomorrow . Rewinded at the classic concert . Althought it was Wednesday yesterday , the movie theater was full of the funs of Evangelion and many had to stand to watch it . I chose Business Administration when I enter the shcool . But I do n't want to give up , I will stuy harder than before . Do you agree or disagre with the following statement ? and co - workes is extreamly good . recomends on television , popular TV programs and thier children not to wath television . watch televition all night . really unhelthy for them . avoid useless and noneducated information . My life seems like such a catastrophe that I counld n't help but sob for all my past teen - life . Is it alright for a sophemore to dream anthying about her future ? I work for an IT company , supporting on - line community developers like Lang - 8 's development vender . I 've worked here for about three years . Our clients require us to make bussines plans to generate profits via internet communities . This job is difficult but it interests me because we can directly recoganize the reaction of the users through our plans . I , however , wnat to learn more , and I know that there are azure , emerald and pale * . My older sister also bought a alittle turtle after she saw my pet turtle . There is a crown at a seience museum in Tokyo . Trad Japan is one of my favorates TV programs . It explaim many traditional topics with unique perspectives in English . His favorate pagoda is Touji 's ( one ) . The host asked another guestion . The host compared Europian church towers with Japanes towers . We have never heard stories about tall towers falling down in our earthquakely - plagued country . I wonder if most of foriners think they can climb Japanese five storied I had to mediate a conflict of opinions , because the employeebe was in trouble with the store manager for a couple of weeks . I have no plan to become a polylinguest at all , but I might have to study basic grammar and conversations in those languages . This weekend has been vering boring . I have also sent an email to my director of my proyect ( the professor who advises about it ) . Now , I 'm waitting for a phone call . But I did n't have a cast , so I biught pudding . When I do n't have something to do , I go to the connvinnence store . But , it bacame a good memory ! ! The good news is that I can get home earier , so I think I can have more time to type my journal now . It was the first timeseeing an unviersity festival . . It was the usuall time . I like reading nobels and books on economy at home . I 'll go to another countly to teach Korean language maybe for 2 years but I do n't know when I will go there . If I live in another countly than Korea this summer , can you come to me still ? I have only heard of this movement until my company made us notice about it and suggested to perticipete . If we do it for 40 consective days , that 's only about a month and ten days ; we could save a life . She and I were supposed to go somewhre , but the weather is so fickle . Just a while back it was really widny and there was snow everywhere but now it looks as if it 'd never snowed . I wanna enjoy the weeken . kk Plz gim me advies ! This is a cery serious problem . I spent a lot of time learning English to get agood position in the company and I am really interested in comunication with people oversea . Luckily for me , I have had a hope for the future since I found apurpose for my job , when I was young , I just worked hard without any suspition to my job , because I thought that working in the company is our duty , even though the job is not interesting . He told us , because he thinks we are innocance , that he was willing to keep in touch with us . I have been studeied English for over 15 years . I had learned , at laungage school , however I could not understand and I fogot . I use a electric dictionary and it contains some dictionarys . This time I thought it was good to use English - English dictionary in order to learn the differnces . But the discriptions of silly , stupid and also foolish were slightly similar . And I hope to syudy English very hard ! On the other hand , 12 % people dislke obese people and this is less than the 16 % of people in 2003 . By the way , recentry one my lang - 8 friends said that he dislikes female smokers . I will have my 20th birthday in two days ! A 20 year old girl , but I think I kown a little about all aspects ! what a pitty ! think of Willy Wonka and he got nited . But if you are a person who is able to make your brain always drive on , I guess you are able to think about more useful things althogh it is different from person to person . I 'm a medical 6th grade student at a medical school , so I 'm busy prepairing for the examination for medical qualification . I ate fried chiken and had a beer . For the two paper assignment , I need to write about four papes . I 've used it for aproximately a week , I feel it suits checking feeds , watching iTunesU courses , reading some comics in bed before going to sleep . I 've done everything that my English teachers taught me to do : recite English words , recite passanges , learn grammar , and do listening exercises to prepare for my exams . lt am very uneasy . The idea that a person 's character is desided from blood type is wrong , because the fact is that there are n't relations between a blood type and a character has been proved scientifically . We have different personalities , and nobody can deside their character . I have updated my profile but I thnk it is not perfect . Please read the folllowing : Today I went to a cildren gym . He usually plays with boys of the same age ina the nursery school , but he can play with boys of different age too . After that , we went to a restaurant ( Big boy ) , snd we had lunch there . After lunch I played MARIO KART on the Nintendo DS wiht my host sister . A Typhoon is comming . The wind and pouring rain made it difficult to control the motocycle . My host family is Philipino I hava a toothache ! I went back to my parents ' house in Japan for the New Year 's horiday . In Japan there is really cold weather and the financial crisist too . So I went to `` hatumoude `` with my parents and I watched the `` Hakone Ekiden `` on TV . I userd to have 20 - 20 vision , but now I need glasses . I enjoyed a pipe prgan concert . Organs and pianos are so diferent . reacently asked me about the condition of my car by telehpone . but all I can see is a rice field because my area is the contry side . So I 'm not goot at playing sports but I enjoy leisure sports . I want someone to help me with my Enlish and Chinese . I 'm a Japanese computer enginer . So I try to study English by some ways , such as translating computer related documents on the Internet , reading a grammer book and taking lessons in conversational English . It 's a place where people with disabilites and children stay . It is my first English dariy today . I do n't know how to write . I do not have to go to work , I do not have any duties , except learnig English of course . This morning he woke up earyl at 7 . I usually eat out becaouse I have lived the single life for 9 years . It 's a very famouse food in Japan , and it 's very easy to cook ! However each country has a different lunguage even though the EU is one land . Which ones of the following sentenses are possible to use ? I learned about O - mamori in Englsh and Japanese , so I will write about traditional Japanese O - mamori . Usually , pices of paper or wood are put inside a small bag or cloth . Later it enabled me to play my kids their favorfite songs - - most of them were anime songs or nursery songs . I enjoyed speaking with many custmers . Do you know at least theree countries where more than two languages are spoken ? There are many new things , such as a dictionnaire , translation , and so on . I have n't writton a diary in awhile , haha ! I konw it 's really hard ( do n't you think so ? ) but I 'm just trying to do my best . The woman said , `` Would you like a cup of coffee ? `` `` No , it 's ok , `` I replied . By the way , I hace luck with my acquaintances . The powder is in infact from China , but it is cooked with an Arabian touch . I think I didn n't do my best . Today , my fater will take her to the hospital . electorical vehicles I watched a TV about electorical vehicles booming in China . The TV said that motor bycicles using electrical power are popular in China , so they already have a foundation to make batteries . I felt nostargie . We tried to meet the professeur and we were successful ! He remenbered me . My birthday was on the 22nd of Auguszt . My brother lives together with his girlfiend and their dog , Mazsola . I was very happy because my boyfrend did n't have to work that day and he could be with me . If you read my former entries you may know that my boyriend is a cook and he has to work 4 days a week , but he does n't know when . So ater lunch , which was a bit late at 4 : 30 , me and my boyfriend sat in front of the TV and watched a cartoon , and my mother , my father , my brother and his girlfiend went to the gardenand to chat . After half an hour my brother took me to the garden where I blew of candels on my birthday cake . I wawas very suprised , but I was very happy . When we arrived at home , I immidiately decorated his aquarium and put the fish in . He swimms a lot and he seems happy . but something eles means special . And its meaning includ good things and bad things . what do you do frist ? I found I would be late for my germany class . He has been flighting against cancer since last Fall . I 've grown up with his films , so as a Japanese , I 'm very proud of him beeing recognized around the world . ( A heavily editted and dubbed into English virsion of this film titled `` Worriors of the Wind `` was realeased in the 1980s , but it did not follow Miyazaki 's original plotline . Second , there was no heavy trafic , so I could get to destinations on time . But I like rural areas like this town , becouse they 're peaseful and there 's plenty of great food . In Kokugikan , audiences were being crezy about game . it mearns , `` I have no lover `` , and I want one . The person sitting in front of me colmplains a lot . . in which , Gogu was being playing by american actor , When I was 19 years old , I watched a TV dorama , ' Shiroi kage ' . It 's weired ! ! When I was in the military survice , I took the oppotunity to go out for only one night . The magazine whitch e took today 's articles will be on sale all over the country on April 25th . What is the diffrence ? I have many paln . It was Wednesday afternoon , I did the same thing as usual , did my work , drank my coffee , everything seemed normal , but a terrible thing just happend . . . . When I was typing on the computer and thought how I should respond to an e - mail , I noticed something strange , something was moving very slowly , when I glaneed at the flower that I bought few days ago , I was shocked . . . I imitate my teacher 's pronouciation but I can not pronounce `` r `` , `` th `` and `` V `` well . And I can not pronouce and distinguish `` very `` from `` vary `` . Everyone hoped the happiness for the newly - marriaged couple . When I see clothes that I like , I just wait unitil they have a discount . hallo ! However , I think , if there was enouth time for me , I could get the right answers to most questions . You just prepare some vegitables and seasonal seafood , Last night , my sister and I sat on the bed and tlaked about her boy friend ! `` acturly , a boy loves himself more than his girl friend , inculde my boy friend `` she told me not in my area : P I really wanna finish the training in there , ang go to Heti ASAP . anyway , so far I really love it here , the pay is good , environment is great and the ppl there are so friendly ! I felt like I did n't need to worry anymore about mistakes when I am speaking & writting There is a traditional custum in Japan that a blood relation will pile up small stones to mourn their child 's death . And it 's a Canadaian version of piling - stones ( cairn ) . I do n't like to be treated unfavorable or unfavorably . `` So , he has a heavy accent which is quite differet from Taiwanese dialect . lLife should be on the go . Desperate hosewives Her narattion is rich in black humor . My work is boring in evryday life , but it is also difficult on my days off , because I am working in a park . Actully , I love my company , and considering the current economic climate , I ca n't leave . Please tell me how to pley them well . . . My car was bumbed . . . . My husbund called out to me , `` Pass the solt ! `` I did n't know the why he wanted the salt , but I brought the solt box to him . Anyway , I felt tired and started to go back to my home . , On the way I saw a apir of really beautiful , high - heeled shoesthat were marked down . But when I was cleaning a shelf , some old photos came out and my attention shited to it . I 'm not sure about Nagano ( because the TV news repots do n't mention it ) , but I can see from this blog that there is also big damage there . I do n't understand what he ment , but it is n't bad . Our 20 sufer friends were picking up garbage from the beach and sea . It is like a dream come ture . `` Ciaooo il mi ramarico ! `` I studed English a long , long time ago . Now I lean ( Learn ? ) to Japaness . I planed to have a proffetional syougi player play an instructional game , but I arrived there later than I expected , so I could n't . Watched dorama . I watched a dorama that was recorded . This morning , it was croudy . Anywasy , I went to Niagara Falls last Sunday . My Japanese frieds willingly accepted my offer , and we had a very nice time ! ! I wrote my firts English diary here today . Recently in Japan , he has become a famous directers . Watching videos on you - tube that Ellen appears in , it dawned on me that she got married to her girlfried and it is out in the public . After knowing the fact , I felt awkird about watching her show because I could n't help myself feeling some discriminatory against the insanity of tying the knot with same gender . And I read an article in the newspaper that in New York , marriages between gay couples is officially legalized and it is becoming the fourth or fifth state where the gay marriges are allowed without being against the law . My colleage said that Chinese drivers ca n't understand even easy English . Sometimes , I feel so coufused . All I hear are the sounds of typing and music . Everything esle is silent as though people did n't exist ; as if I 'm not alive . Especially after getting maried , as we have dependents . It gives us a resonsibility to support them . When they started thier business , they made many mistakes Fainally , they succeeded with their business . It became thier culture of the company . my websit Chinnese names is different from western names . I live in Shanghai , I have studied English for many years , but I still ca n't speak or write English fruently . I happaned to meet a mussle man at a shopping center . He was speaking with someone by use a cellular phone and then he suddenly got angry in a lould voice I was a little scared and I thought he was so rude . However , I was wrong again . I also play the trumpet in a Jazz Band and actually I wanna be a professional trumepter in my future . The new job is totally diferent than my old one . I had my hair cut doday . Some says that radioactive revel around Kanto area is highter than usual on Twitter . Another funny occure He turned around , ran out of the court hall , which was on thesecond floor , and ran alog the hallway to the stairs . There areso many occasions like thisall aroud the world . . . It was an irresistable impulse . Although the summer was extremly hot , it was a short period during which I could 've seized the opportunity to get intimate with her . I have since returned to campus and the signs of summer are graduately fading away I checked the Japanse - English dictionary from the column of Kana syllabary . How can I possibly theach them ? In the end , I accepted thier request . Happy Haloween ! I was sent birthday emails by my fliends . Other specialost say that you should eat a light breakfast . What was interesting was that someone who wore an armband which had characters `` STAFF `` warned a man who smokes in the yard neaby my lab not to smoke there . I know there are so many differences between the eastern and western culture , so some peaple may think ( that ) I should n't be so worried . I have problems with the past Continius , past perfect and present perfect . `` You know why you are having problems with english gramar ? `` I asked , `` Why ? `` She said , `` The reason is that you are thinking in spanis , that is why . `` You know what ? I thik evereting is going to be just fine ! I have been making progress now I feel more confortable talking with people whose native lenguage is English . I ve hurt my wrist She said she was 49years old . When I heard her age , I was very surpised because I thought she was around 70 years old . by the British goverment . UK economy shrank by 0 . 5 % whichi is a suprising result for all because it had been predicted to be between 0 . 2 % to 0 . 6 % . This dissapointing figure is partly because of the extremely cold weather in December , but it is said that public spending cuts have also affected the UK Although it is important to tackle the huge debts of the goverment , I think it is also necessary to reconsider the amount of spending cuts and make sure the economy will continue to grow in the future . fitst , I think I should introduce myself . I showed reluctance to go on to a Japanese Univercity So I want to go to an American Univercity . After graduating from an American Univercity , I want to work for a foreign - offitiated company . Happy new yaer ! I went to my groundmother 's house . Otoshidama is plesent money . We just played one game because we were so hungary that we could n't wait for dinner . In this job I will be a superviser of sales , although it 's new area to me , I ca n't wait to try it out . So I have to take her to the hodpital in the next city . she is one of the Japanese populer singers and I love her very much ! I had to practice danscing every GW so far , for I belonged to the dancing club . I could say that Ayumi Hamasaki is the most pofessional and artiartistic singer in Japan ! It is the frist time I am writing in my diary , too . I dreamed / dreamt of hugging her , telling her I 'd missed her so much , and she just smiled at me without saying anyting . The dream is so warmly unforgetable because I could see my beloved family member and tell her how I had been missing her . When I was born and growing up , my grandmother cared for and encouraning me all the time , and now I think dreaming of her will surely bring me good luck . I was embarrsed . My teacher saw that I was making an effort to solve the qestions . His advice is right ( * ) , but I thought that I was expanding my English knowledge through research , reports and presentetions . The gap between my recognition and the ( this ? ) objuctive assessment , caused me great shock and disappointment . Learning academic words is also an important issure , so now I 'm looking for a nice word book . Some TOEIC word books might be good , but academic vocaburary is a little different from what TOEIC handles . . . ? I am majoring in Jpanense in Taiwan University . In the sencond year , we had all Japanese class up until now . I think English is an importent and an international language . I think we can teach each other our mather tounge . ( why I am writing a English dairly but with all the Japanese in my head ? In feburary , my friends and I will go to Singapole for sightseeing . Maybe Lang - 8 will be a situable place for me to learn English . That movies main charactor name is ' BEN ' ( starring Will Smith ) Plese tell me about some recomanded movies or books Do you have some recomanded movies or books ? One of them is Gneral Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the futuer by the use of Relativity . But , There are problems going to the futuer . The problem is that if you run at ligth speed , Friction of the air sets you on fire . You can go to the futuer when you slove these problems . So light spread as watering and ligth is composed of particles which we do n't watch . Ligth has quantum nature , Solves many physical phenomenon . Material which has qyantum nature is only light . Ligth is very unique matter . I 'm a house wife but my family let me alone and prepaired food for me during those two days . What I realized as soon as I looked at the school gate from across the crossraods was that the construction next to the gate had finished . I tried to watch supernatural online , only to find that the site had been rennovated and I could n't wacth the latest episode . . . . In additon , I write a diary in English for the first time . I will have a conversational English classe at night . When I was touring around Pris , I could see a lot of beautiful places , including classic and old buildings . I did n't have any Indian friends in Taiwain , befroe . But the type of rice is different from that in Taiwain . Every etnic community has their own character . ( its own character ) Beautiful sunshine and confortable breeze What is the differet between `` other `` and `` another `` ? What is happyness in your life ? For you , what is the happyness in your life ? Beacuse if I thought otherwise , I would become unsatisfied . Everyone was excitted and we got NO . 1 among 12 classes . I was born in Tokyo and have been living here up until now except for the one year that I attended a universtiy in London . I wnat to make forgien friends . I must study English hard because English is an important tool to cummunicate with foreign custmers . Dear techers , please kindly correct my sentences if there is bad grammer , wording , and so on . . . I coud not write my entry yesterday because there was thunder and lightning last evenig . For example , a guide , a translater , an interpreter , and a teacher . In that Avenue , there is held `` Pagent of lights in Sendai `` every Decenmber . My friend and I seached somewhere where it is quite to study the Chinese and Thai language , we have not found a good palce so , yesterday we studied at a Macdonal shop but there was a lot music and a lot of students do thier homwork . and I asked her about her about in Chinese they have a kungfu she laught and said that she has a diffirent type than in the movies because they ca n't sping in the free ( air ? ) or a roof like that . I really niec when we talk , good thing we understand each other some times I think she is Thai because she tried to speak Thai with me alot . `` And let 's start to speak up when people are assailing us with the noise that I played you aerly on . `` Her kindergarten class was on a one day vacation because sprots meeting was held on Saturday instead . How difficule is the TOEFL ? I hope that I can apply for Master this year , but I am afraid that I wo n't be able to apply in time most schools ' deadlime are in March . Why is English so difficule to study ! During the test I could understand the lecture , if it was about an familar field . Come on , you are 15 and grown , why do such childly things ? I 'm a graduate student studying Architeture and urban design . I want to go abroad to study Architeture , urban design and landscaping in the future , so I need to styudy English . althouh it was not matter itself , I was interested in urban design and landscaping , then I decided to study it . After I went to the grad school , my desire became storonger . In grad school , I 'm studying the development contorol system of England . The Japnese palnning system refers to the Europen one . After garaduating from grad school , I wanna go abroad to study . Althouh I think that , it 's important to work in society firstly before going abroad . I want to go to the Univercity of Pennsylvania in America to study how to design . I do n't like to wait for anybady . The Marilyn Monro picture is world famous . Yesterday I looked into an apple sotre with a friend of mine . All the merchandise displayed in the store had sophisticated desine . I wannna study abroad someday , maybe in America or Btitani . Recently , because of the presure comingfrom all over the world , they are asking Chinese government to rise the exchange rate between RMB and US Dollar . At my current job I work long hours , I ca n't take consective days off , I get home late at night , and the pay is small . . . . Moreover , becsause I 'm tierd out , I do n't feel like doing anything at all on holidays . I am ( almost ? ) 30 , and I am thinking of the future seriousely . So sorry for the compliants ! It 's confortable . I need a slitght professional pointo of view . Therefore , they overcome the weekness by the influence of alcohol . I wrote Taylor 's interview 's dictation for about one minuts , but there is no way to know if they are correct . So , it 's a really cool balance of them being completly supportive but never pussing me too hard in one direction . We do n't see my brother and my dad as much , becouse they stay back home in Tennessee . It 's really good gause for my actions . Back to the JDORAMA 's valuing jobs : whatever they may be was really pointed out in them . Their Japanese society 's portraits showed that whoever you are you can do the jobs . Like in Gokusen : she 's ( who ? ) a teacher who also works on a construction . In Yama Onna and Kabe Onna there 's a lady who can buy expesive bags that are sold , but yet she works as a saleslady on department store . We took Line 3 again and we went to the samll but still interesting restaurant again . We strolled around the campus again . Finally I bought ipod touch . Since I came to this college , I no longer complain unreasonably when I have to do something I do n't want to do but am forced to . I am supposed to be responsble for my own actions , speech , and emotion . When I get hurt now , my parents are not about to support and encourage me . I must shoulder the bunden all alone . studying , and working condition I must establish new personal relationships among my classmates and think from an adult 's perspective . However , I have n't totally converted myself from my previous state to this new one . I tend to escape and avoid this reality often . I frequently ignor that I should take a solmn atitude instead of unappropriate expression in formal situations . consquently , We gain machurity , delibration and confidence as a boy becomes a man . But I ca n't feel these in my mind . Maybe I have n't grown up at all . By the way , In Japan , thanks to the mass media 's viased broadcasts , people who love manga or anime are called `` otaku `` . My favorite song in his album ' Human Nature ' is , `` bille Jean `` . Her job is a policewoman . She is a policeperson . Althogh it is only the 1st day we talked a lot Of course , the taste was so dericious . He is a very enargetic and naughty boy . It is his favotite . She is in kindergarden . During this term , I want to comunicate with them a lot and be close to them . Do you know an inexpensive but good reaustrant in Hawaii near Honolulu town ? Seeing dolphins , eating humbergers , reading books on the beach and diving into the sea might make me free ! ! What else should we do there that you guys recomend ? After the class , I retouched a famouse musician 's picture , and some other tasks . So , we 're choreographering our dances . It is difficult to choreographering dances for me , Now I 'm still at work , but I ca n't consentrate on my job : ) The little turtle replied , `` I will , if you do n't drink my offee . `` particulary young people love it . Slowy , but surely . I am a univercity student and I 'm majoring in economics . Affluence does not always gurantee a happy life , because people wich a large affluence do n't think often on the problems which they may have , when thay live as they like . Because of their high standart of life , they buy what they want for a better life and eat what they want to eat . espacially in the U . I 'm addiceted From my expirience , I know that if I begin breaking the rules like this , I can easily give up the / my plan . We could become addictated . It 's a simply quiet and peaceful place . You can see childend playing with puppies , and people are sitting around enjoying their breakfast while talking with each other . However , you can only have a simple breakfast when you are in a rush worried about trafic jams in the morning on workdays . I always write a strange diary , and it is diffirent than my thoughts Sometimes I went to clubs or parties with them . Day by day we became freinds . I got a feeling that tonight is gon to be a good night ! tonight is gon to be a good night ! I 'm sooo excited right now . I do n't know why , I am lazy , I have no plan , I only want to chat with foreigners to improve my English . acturally it 's not good , I know , I am young , I should do something for society , I will change myself . English become official Language in Jpapanese company in the future ? ? ? Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since Jpanese market is shrinking due to the reduction of population . But it 's a little bit contravasal because it 's very rare for a Japanese company to use English as its official language . Even successful Japanese companies in different contrieds like Toyota , Nintendo , etc have not set English as a official language yet . I think people who alredy study English like us in Lang - 8 do n't think it 's a huge burden . Anyway It must be very difficult to achieve goals becasues English is rather difficult and doing a meeting or making a report in English takes a lot of time I wonder how they prepare for its gols . If Engilsh is understandable , you can get more chances in some way . But I refused answer becouse I did n't put any make up on my face . I missed a good oponutity to talk with him . But when I told that I am 38 man , almost people disconnected mmediately . Almost every time , I lied that I am a 15 - 19 gril from cali . Peoplr would come up with the stupid idea of comparing them . Hahahaha I want to run so badly in the next 21 kilometer maraton in Tijuana with my official Japan shirt and that my brother wants to wait until the end of the world cup to see the list of rankings . Although Japanese people are becoming aware of the enviromental issues , yes its gon na b last day of skool tomorrow in this term n after tomorrow , I have couple of week days off : ) well I got punishement by a teacher today . . . hopefully tommorow , my last skool day is gon na be aweosme not like today lol bye I was so luky that the bus was not crowded this morning . To my surprise there were not that many mistakes in my diay , which re - ignited my enthusiasm for writing . Japanes university entrance exams are very hard , so I have to study as much as possible . I have enclosed all required documents except the affidavid of financial support from my company . Some people agree with that opnion but others disagree . However , there is n't any chemical seasonig in the foods made at home because individuals ca n't buy the chemical seasoning . We can also see the process of making the food , thus if we eat foos in our home , we can prevent serious diseases and become healthy . Although she looks wierd all the time , I still like this character . I want to travel to Kanada . During summer vacation , we want to travel to Kanada because we have never been to Kanada . I often hear that there are beautiful nature spots to visit , like Niagara Falls , in Kanada . This Diary is English - Laerning - Record and Life - Record . Thare are many books . I will read books I borrowed in my school 's library , surf the internet like lang - 8 , go somewhere with beautiful scenery , ect . There are many sorce of knowledge . Today young people not only use books to gain knowledge , they also are serch for it in journalism , on television , on the radio , and through meeting with other young people . The refrigerator has a function that makes ice cubes automaticaly . So I decided , `` I wiil get an iPad at the Apple retail store on FIFTH AVENUE next month ! `` . It is important to garanteee opportunities to recieve fundamental education to everyone . Many people think that politicians and high society want to keep education expensible to maintain hierarchy . For example , Waseda University , one of the best private universities in Japan , has its correscponding high shcool , junior high school , elementary school and even kindergarden . If your familyos is rich enough to send you to Waseda kindergarden , you will not have to worry about future academic competiton . Simply , most Japanese poeple do not consider education important . Most companies do not consider academic backgrounds of prospective employees from humanities departmetns . I did n't know that , so it suprised me . He also showed me the neighborhood , like where was the neast ATM machine and where you could got a bus ticket . During our short trip , I saw a great view when we passed the Saskatchewan revier . There was a clear blue sky behind the brige and I saw a beatiful revier and green area . Basically , it took 35 minutes though , I made some minner mistakes and took 50 minutes . The faucet was very rudimental but it was quite difficule for me to control the temparture . Although I was quivered a little bit ( ? ) , my palm was hot and thoums were working . I am afraid that I will become busy , after the class and internship - program bigins . When they they told me they planned to go to Europe , they asked me about my experience , and especially about how I made specific plans all by myself - - from the list of cities I 'd hoped to visit to ticketing , transportation , and accomodations . It reminded me of memories of / from my own trip . I won 8000 yen after 30 minutes , so I will buy Doragon Quest 9 . Today , I attended an editorial meeting for the acamic journal concerning gerontology . Because it is my Strenth . After graduating , I worked as a mililtary officer . At the same time , I 'm the sceond leader of my company . It 's to be an Internet margeting professional . As of now , I 'm looking for jobs in a private domitary . First , if you live in domitary you can save a lot of money on food . The public library is so close to my domitary I do n't need to take a bus to it . The third and maybe even the biggiest reson for living in a domitary is so I can live freely without my mother 's repeated talk . Dreaming about my future , I 'm studying in this small space in the domitary . Aditionally , starting this week the tempurature has been very low , so it makes it more hard ( or harder ) for me to get up early . First of all , I achieved the gool to pass the examination for CPA . These days , I have read The Japan Times and The Nikkei Newspaper via internet andwrote some diarlies like this in English . Although I had time to touch up on English and studied English autonomuslly when I I really , really want to make a friend who can teah me . . . I 'm fifthteen and I 'm staying in malaysia study art . Yestoday it was repaired by one of my best friends and it is nomal now . Ganerally , I spend all my spare time with my computer every night , but when my computer was broken , I had to watch I like one channel named HBO becaues Yesterday , I came back from a six day trip with my freinds in Paris . Yesterday was very good taiming to come back Japan , because now a big and powerful Tyhoon has been travelling towards Japan , and many flights are being cancelled . Im from Russland , and I live in Moscow . I like to chat und speak with people from different countries . I dream about Japan und Ireland - I want to go there very much ! And I like Germany very much too and I would like to go there too . I did n't have a favor , but had a cough sometimes . I love anymal ! I love anymal . Dogs are alwyas very affectionate and kind to people . I want to work in the World Animal Protection sosiety . So I have to study English very hard . Eating dgs shoud be banned . Ok first off you guys SHOUUULLLDD already know that I 'm a respiratory therapist . Today I was assigned to the emergency room , wich was FULL . Well I never expected a lazy day there but it was busy as hell ! Headache occured by bad smell . I ( and almost all passengers in the train ) was suprised and confused at the strong and weird smell . We guess that one or two of the menbers bring rain with them . My friend introduced me to the job , so I learned the what to do from my freind yesterday . I hope that if I keep working out and swimming it will do me good and it will keep me & nbsp ; healthly , mentally and physically ^ - ^ Nowdays , my mind is stuck . . . Do you have any hoppies ? Would I call them `` hoppies `` ? My mother regreat that I do n't care for her . My family hause is in Chiba . untill today I have a lot of heavy tests , so I all I did was study , study and study ( I cut down even on sleeping , these days I went to the bed at 5 : 00a . m . and I still went to university I 'm going to do one or two more , and then if I have enough time , I will draw some pictures for Cristmas ; - ) But my colleage told me that `` I will put you through xx section . `` Me and my school frineds can see cloudless skies from my school . However we cound n't . a park in the beging of winter I feel rfreshed . Since he is living alone out of Koreaan as an old bacheoler his parents have been worried since he came to the US . My idea is that love is always chenging . . . , last month I had a kind of BF . They say the Japanesse have good manners , but I think this is not correct . Now , there are more than 4 ' VOCARIOD 2 ' charactors , and some PSP softs of ' MIKU ' is available . However , sadly , we hav n't met each other since her wedding . quater pounder I definetely hope that she lives as long as she can . I did not learn enlish diligently at school . Also I 'm corresponding on ICQ with people who want to chat in enlish . . It 's from Star Trec . the foloowing is from a radio show . I studied a lot there , and now I 'm really tierd . Coffee farm workers should receive a higher imcome . An acquaintant from the other lab said to me , `` I heard you have become a chon - mage man , and that was true `` when we met yesterday . tommorow I work again . First of all , I want to express my deepest appreciation to my nice frieds who helped me to correct this . I 'm realy honored to share this short story with you . My friend Kazu - chan was stabbed to death by his skiing associate when he was a third year junior high schol student . I was so relieved and I deeply thanked him ofr his brave deed . He said that he would need fried chickhen , some Umebosi - rice - balls and sausages for his lunch . I went to see the docter for my broken leg . So I had the chance to see my leg bone agin . Shall I say hi to it ? Having seen the picture , Docter was not very worried . It was really wonderful that I could see world - famous table tennis players playing just in fron of me . But my English is incorrct , My sentencies is very foolish . I ca n't create good sentencies . I have a question about English grammer . wiritting an essay is a little difficult . Because this is the fourth time I have attened this test ! Still , I getEnglish . I think learning languages is an interestig thing ! Now I am litening to , `` Born This Way `` by Lady Gaga . She is such a cool women , isn n't she ? But the only word I know to describe her is `` cool `` . I am a person who always looks on the bright side , and enthusiastic self - motivater . A barton relay the most intersting of all the competitions . Although I have skype and msn 's ID , I nealy do n't use it . I usualy go there by motor bike . We learned about passive phreases . The next class was about comparing diffirent cultures . ( Sato , the cartoon I watch recently is a Japanense one named Detective Conan . With tighter and tighter relationships between each area accross the whole world , any change that occurs in one region can influence the rest . I am not sure what the Chinse economy will look like in the future ; can we keep our rate of growth as fast as before ? She is annoied about the difference in culture . She did n't do good seach about American culture . I have read an American newpapper . The most important thing that I should be carefull about is that I have to speak English well , and talk with Americans well , too . I heard from my frinds that if you make a mistake in English , they would become a little upset if it 's at fast food stores or restaurants . My co - worker has comphensive knowelge of computers . ( thans for checking my letter , God bless u . ) You want to disappear . Everthing in under your control . I was trying to know your sorrow , the details help me realize ur heart , Today it 's ur birthday , Are you happy ? ? I am happy to celebruate ur birthday in my blog . Mciahel J , I just want to say thank you for you . I was very happay . but I have not recive a lot of mail . I like drawing the best , wacthing movies and listening to music too . I thought many street venders would be preparing their shops . Marco , a italain guy I had met in LKF in June , texted me back finally . These distractionsprevent me from concentrating on my deskwork at my desk . I offen hear a phrase in songs which is `` never be the same `` . It was a commedy , but it was very touching . In colder countries , moccains kept peoples ' feet warm . The dificuculty of learning English for Japanese people But as I am prooving that I am capable of grasping Japanese in a short time , I feel that my English is getting worse and worse . However , she is very naive and gullible , so that she gets easily decieved by other people . Durian smell was not good but , , the tasts was good . Eating durian was a new experiense to us ! If I have a chance , I wana go there again . I am so tired , and do n't konw what to do . The doctor adviced that he stay off his right leg until the pain is relieved . I wasnt n't going back to my hometown on the 31st of December , so I accepted it . I look like a telephone appointer / operator , because I am always wearing headphones and a mic / microphone . It 's been a long time sice you went to hospital . Whether you fogive me or not , it was definitely my silly mistake . She said that she misses me , and she may possibly come in Oktober , but only for a weekend . Shikoku is noted for their noodles , the hot springs and the beautifl nature . I made a lof of friends there , including our leader Rick ! But I regard integration cources not only as a social political measure for foreigners , but also as a place of learning . One definition of learnig is to change human actions through new experiences . If I run into a foreiner , they are giving me a kind of smile . I bourght an electronic dictionary at electric appliances store . Tomorow is a big day for our school because we will be celebrating its fifttieth aniversary ! But I had just ran a 5000 meter long - distance race ! It did n't seem like that long of a diatance when I was first told about it . Now I am in the internet cafe . You might ask me `` What have you achieviment in 2008 ? `` Even if a non - neative speaker speaks incorrect English , we occasionally understand what they want to say . But neative speakers occasionally ca n't understand what they want to say even though we understand it . The drink is so sweet , and it feels like I am intaking in 1000 calories . now I 'm interested in fitnessgym . after school , I 'm goiing to `` Fitness First `` which I heard , is most popular gym in australia . The concert was Base Ball Baer 's . But it was expectedly difficult . Anyway , one thing highlightened for the next semester is that I 'll have to start up the preparations for `` job - hunting `` seasion , which I think officially starts next year . For our office , we usually buy toilet paper thorugh the delivery service of office supplies , however , because the earthquake occured on March 11th , this service had stopped . I went home late . I normally perfer to wait for my friend at the comepany . However , because she had a lot of work today and I realized she was going to stay alone at the company for a longtime . Are you sick or soemthing like that ? Maybe that man will gossip about my uglly face ! I lile him because he is very kind . To catch the information about Web technologies , servicies , etc . I 'd like to countinue reading books . I hope I can communicate with poeple all throughout the world . Because he is not so good at mathmatics . I really need to appriciate him . Inrernational School . . . ? In the world around us today , we are surrounded by a variety of technical machism and tools . Starting from the eighteenth - centry , the development of technology has never ended , and has advanced faster than ever today . Technology such as air - conditioners and electronical dictionnaries do lead a much more convienient life than ever . Some people might argue that technology undermines the relationship between people because once we are developing and using the technology , we forget to keep in touch with others , and that is the `` convienence ( ? ) `` character of technology that makes people more careless about the way to get along with others , thus , everyone feels lonelier than ever . I am in charge of 26 cosmtics shops . I suggested that the owener analyses how her customer buy a commodity and apeal to nighborhood for shop 's existance . My English name is Betty , I am fifteen years oid , I like music and sport . Of you ( who read this ) do n't mind , plez give me advice . I 'm going to vist my mother in law 's house this morning . After the final exam , I have to find a job for the summer hoilday . I have already been working for four days , but I stil ca n't focus on my job . I didn ` t know how many people in Korea can speak English fluently even though somebody has n't lived abraod . I was shocked , and I looked back mayself . I 've been so lazy , and I didn n't do anything to get to my goals . Once we want to archieve great success , we have to invest our own ability by over a hundred thousand . Because of my scholl studying , I have little time to browse the internet . In the follwing days , I will do my best to update how I learn something everyday , but it 's possible my schedule might change . Two are for writting . The high - potential young guys asked questions . `` What kinds of computer langage do we need to know ? `` , or `` What are the most important things for working here ? `` I just wish that they would recognize what couriosity means . . . I am taking a English lesoon . After I woke up , I turned on my luptop . This is an amazing place ! I hope that I can improve my English writing skills and make some freinds here ~ These stories are so gorgeous and moving that many times I could n't help cring . This is what I tranlated while watching the drama , Lie To Me . This was made in Korea just for someone learing English . I could n't approch you . our bussiness plan is cleary spot - on . We took a boat that had a clare bottom and saw many kinds of coral , fish , and so on . Although I have always wanted to go abload , I think that there are many great places in Japan too . The design is similar to foregin web sites . Do you guys care if your borthers or sisters were older or younger than you ? When I ask `` Do you have any brothers or sisters ? `` to you , you might answer `` yes , I have two borothers `` . I mean a lot of people I met do n't care t whether their borthers or sisters are older or younger than them . Ooops ! simillar to me . My thesis is on the director Hayao Miyazaki , He was born in the 1941 and grew up in the post - twar years . We can see in his works most of the time , the protagonists are strong , indipendent girls or young women . In Sprited Away , Chihiro is forced to survive in a bizarre spirit world , and had to work in a bath - house for spirits after her parents were turned into pigs by the sorcess who owns it . Kiki is based on the novel of Eiko Kadono , and tells the story of a small - trown girl who leaves her home to begin life as a witch in a big city . I reserched the program later on the internet and I found out it was a long - lasting program , but each time the topic changes . of course its arebenefit for me . befer I would drink almost everyday . `` Saki no yu `` is a hot spring with a very beautiful panolama . I feel that the hot spring is very rerax . My ears are very cold when I ride my bycycle , Something ubsubstantial like `` beauty `` or `` money `` are reasonable for me . Articles are trickey ! ! I speaked on skype with John ! ! I will call him again after I can soeak English fluently . Not a hamuster . The reason is `` there are no chaire `` . After waiting for the bus for about 40 minits , the bus finally came to the station : ) ! Yesterday , I did the presentaion about my reserch ( computer circuit desgin ) in front of my proffesor . I went to a tranig center with my friend today and worked on my weight untill I can be satisfied for the first time in 2 weeks . Tomorrow is a national hoilday , I decided to take the three days to travel . The customer often saids , `` Our system needs these functions . They sais , `` I have never seen such a huge swine `` , but actually , the size of those pigs were normal for us . The prizes for perticipation are a T - shirt , a bun and a carton of milk . In fact , I want to have a new smart puone . I 'm just a human being , not a macine . I don ` t understand how you can distinguish between present perfect and present perfekt progressive , etc . . . I watch movies withthout Chinese subtitles to listen and speak English . I am interested in the energy policy , especially , eco - friendly energies such as wind and sollar power . My mother is a full - time housemaker . These days I often think Japanese nudle are good . I consider myself a pacient person . I like to help , and enjoy teaching . Today , I went to the beauty salon and enjoyed a face massge for the first time in a while . After a meeting we went drinking with my colleage . I 'm not good with cold wheather . My habbies The expression is parfect for me ! Celeblate for my marriage . `` Newton `` informs us of many kinds of scientifical things . I want this fascinative magazine to go on forever ! Recently my wife watches a SMAP 's DVD every day which was released on Decmber 8 . I would like to learn Engligh for travel and communate with others . It makes me sad because nobady believe me . it might be a bad thing brcause many men would like a women who can cook . As I get married , it would not be good for our relatonship because if my husband did n't like my cooking , we would have a problem if I could n't make a nice dinner . So I ate food , took some medicene and a bath . Then , I went to bed early . I know very well that English is so importante to me , so I hope you can help me with my English . I have a plan that I 'll go to Japen to study law 2 years later , so I must study hard , and I will . But during interviews , when I am asked to describe myself in English , I always become nervours . My friend organized free tickets for us but because we went paraseiling in the morning , we did n't have enough time to go there . I am jealous that site members can write such good Jananese composition ! ! To take an ojek , a passanger should go to the ojek pool . I can halp you with Russian and you can help me with English or Turkish , if you want ! yet we sonetimes regret . Just compare marits ? Just risten to advice ? But the rasult was the result , so I must accpet it . ( 2 ) Students who are expacted to graduate from high school at March of 2011 . ( 3 ) Students who have ( an average grade ) higher than 3 . 4 Japanese grade points average ( maximam 5 . 0 ) ; 3 . 6 japanese GPA for students who apply at the faculty of law ; and 4 . 0 japanese GPA for students who apply at the college of technology . It was colod , but we felt hot . Beacuse we could earn that money with our feet . From now on / From this point on , I will prepare for the writting module . I am not familliar with classical music , but I think his music is very beatiful and touching . He was n't embarraced at all with such an unusual girly outfit , so I thought he was completely miles away . Afer all it said and done , I feel like my body clock is very strange ! Every year is representive by an animal in Korea . I will also runnning around the neighborhood every morning . The topic of whether we prefer to eat at home or outside in restaurants has been widely debated in our community rencently . As a consequence , this will lead to a very effecient life . The people eating at home may have sufficient time for their favorite intrests than the former . Besides , we can cook dishes according to our own appetites if we prefer the food to be hotter or have less suger . This is the best way to learn foreigne languages . I want a man who is ambitious yet family - otiented . I read Japanese blogs which are popular each day . But I 'm not satisfied with those Beacause there are few blogs which treat politics or social subjects . Mostly they treat a subculture or talk about the writer 's life . He adviced me on many things I will try to study Enlish This mornig I am tired from lack of sleep . I think my cousin is a night person and she feels vivrant around that time . I must learn besiness english . It contained pork back ribs , carrot , onion and potate . ( back ? ) Today , I went shopping near by station becouse today is national holiday in Japan . so I went my home rappidly . I was cycling along the river with Yuya , who was riding bihinde me and shooting camera with a lot of enthusiasim . We run and run and run thruogh these people . Anyway , I wil keep trying my best . Electric utility expense reises these summer . So lots of things will reise too . Studying hestory . Yesterday I started to study Korean hestory again . I prepare ( d ? ) some things to study like a Korean hestory book , a reference book , a laptop for searching some subjects about which I might want to know more on the Internet , and a radio for listening to AFKN which has a lot of good popsongs . I think I live in the happiest time of all human hestory . After I get it done , I 'll study hestory again tonight . So , I recomend that you find your favorite , and make ( good ) use of it in your life . I have bnothing special right now to write about and I 'm determined I must stay up all night for my schoolwork which is due tomorrow so I 'll finish writing now . Swine flu has spead over my city . I started learning Hula this Febluary . I am on summere vacation , but I will have to make a graduation thesis . Hm , sounds studpid ? I was so proude of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my fmaily twenty years ago ? After work , I went to my bofriend 's house and we met out in front . I traveled cafully . It 's been raining since last Sunday , and according to the weather forcast it will rain untill next comming Saturday . I have experienced rainny seasons so many times in Japan and Thailand . Each rainny season 's charactors are totally different . But I 'm pretty sure that hummidity makes Toro sick . Today , it 's a public holiday in Japan , I confirmed and calld offiece of English Studies . When I 'm thiking about this , I sometimes think I will go the UK and meet her . I wantt to talk with the members on this site in English very well . ! ! When I was a junior high , one girl who was not my classmate came to close and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an anwer at all but I managed to say that . When I was in college , one of the exchage - student who came from Canada , he asked me same question . He appareltly denied me . I went to BODERS last sunday with my friend . I love this feeling , calme , , , and cool ! I think there are many different peples and cultures in the U . S . atc . . As you know , a person 's personality is dffirent from evrypeople else 's . But oddly enough , my blood type is a liittle similar The reason is that we can order by phone call and get delivery servce . Naturally , their intonation and pronaunce does n't sound familliar . I was quite shocked about their careness and horrible food . It is very rural . I love Yamagata becaouse I can relux . I had a violin compitation this morning and went to my violin class this noon . I have to write about Japanese actors using computer - generated characters , about why I think adults in Japan reas comic books , and about whether I prefer fiction or non - fiction books . Tha 's why we are working longer than other developed countries . When I stayed in the US , I often heard people saying `` that is my job . `` I think there are two meanings in that sentence ; one is that I will take full responsibility for my job and the othe is I will not care about other people 's jobs . Today was a lettle warm , _ so I irrigated the field . Hello , I 'm kadaobi ( not my real name ) . I practiced it but they look like crocodilia a little . At end of the year in Japan , we have a custome of having a meal with someone you had business with . I think this custome comes from the saying `` All 's well that ends well . `` Tomorrow I need to deal with a csutomer who really gets mad at our product . . . I was diappointed with that . Becaus I love playing soccer . But , an idividual is important for an alphabet culture country . I think it is very important to think deeeply well , would you like to make / be freind with me ? I am the only person to deal with legal and compliance affiar Actually , I didn ` t understand all the lines of the characters , because I watch it without subtitles . Just to see the local marchandise , and the people look vigorous there . My breakfast was sunnysideup - ala - Thai , fried bread , and coffe with condensed milk . the street vendor cooked two eggs in a metal sauser which is just the size for two eggs . The coffe was really sweet , half coffee and half condnesed milk . I shold n't have stirred . I think he was also embarrased . It is defenitely part of dynamic relationships with him , but it is not so easy to control it . A ceaseless effort to improve yourself makes an unchanged value throgh your Just now I recived the acceptance letter for my poster from the conference committee ! But such considertion is a dangerous myth . I said , `` Congraturation ! ! `` . I 'm afraid of opening the windows in my room becasue it 's very cold these days . Japanese famous actress , or imfamous celebrity , Erika Sawajiri suddenly announced that she decided to devorce her husband Tsuyoshi Takashiro , so - called hyper media creater ( though no one knows what his job is ) the day before yesterday . Moreover , stating that he did n't know what was happening with a desparate pale face . By lights , it was a bit strange that Erika , who is a beautiful young lady , married with Takashiro , who is over 40 's and not so good looking with an ambiguous and susupicious job . I think , however , Erika 's abrupt decision without contacting with her husband was really crue . Althoug my situation is too ordinary to compare with this case , I once experienced a sudden break up . There were 7 members alltogether . . It 's Sunday , and it 's hard to see in northeastern of China in winter , but I have many tasks to do . Some reports ( about computer , assembley language ) , and some electrician reports . It 's must be hand in tomorrow , so I have no time to go out . First , we droved to MeiLing where a company 's broadband network was wrong . We found that the fault point had n't been there , so we droved to Zhongxi and fixed it well . I think they 're difinitely great . Each character has their own specail accent and it confuses me . I begin to study Enlish with this site . A mikoshi is a portable Shinto shrin . It 's much hevier than it looks . My sholuder is still aching . . . Anyways , there are so many clothing stores in Dong Wu Yuan and all of them are terriblly cheap ! By the way , I 've been studying about what is the best kind of industry for me to work in after my gaduation . I 'm considering about my career plan , but I still have alomost no idea . Mnay university students have been doing job - hunting every day . In Japan , first of all we have to write `` Entry seet `` ( Resume ) to the company which we chose . Also , we have to write the reasons for our applications , self - introductons , and so on , into the Entry seet ( Resume ) . Now I attend a translater school and an interpreter tour guide school . I watched `` super 8 `` , which was produced by Spielbarg yesterday . In a sense , this film is very Spielbarg . T . , Jurassic park , War of the worlds , and other Spilel films . I must be cafefull of unconscious habits . I 'm going to Nara for / on a chool trip , so I wo n't write any journals for four days . I am studying at a foreign langusage college now . She does n't wash dishes , she does n't throw awy trash . . . I visited Cina for sightseeing this year . Actually , some opinions expressed in these museums are ploblem in Japan . After watching the movie , I felt that the hero is very genious . We promissed to go camping this in summer ! All of them They all calld themselves Tiger Mask . My experience is that I have learnt English for many years , however , I still find my english skills are not good enough and it is also difficult for me to use a new vocaburary . I have memorized lots of vocaburaries , but the diction that I used is still very limited . After 45 minitues of driving , we got to the feild . We had a primary school performa . I can insist that a greeting is absoultely important when studying English . Second , there was pronuncition training . The Pronuncialtion 's role is also important when we talk to others . Because listners can understand our words when we speak to them correctly . Every time I contemplate the fact , I think it 's intresting . Even though we are far from each other , we can still chat about everthing , such as our feelings , our life , our work . this afternoo I reached the downtown to buy some computer consumables . A lot of groups go to the Aquarium jast like us . deeling off the bottom The police searched out the evidence that the two companies have been deeling off the bottom . - Communicate with collaborators iuntil you get confident with your results and interpretations . Some of us are a sumbling block , but we believe God is our rock . Will you help me to learn Thai langauge ? I am going to the desaster area next Monday . I see a pile clothes and I question myseft , `` Why do we wear clothes ? `` Finaly , it 's better that we should wear clothes when we get out of the house . / ( go outside ) But Is it coomon word ? It 's such an exciting game for Disney funs . And my eldest sister promissed to buy me a bag which is worth 130 bucks . Everyone knows that each cowntry has its own unic and fanatastic culture ! so I dicided to walk from the school to the station . A foreinger who is married to a Singaporean . Foreingers ca n't buy new HDB flats in Singapore , even if they marry Singaporeans , in short HDB flats are for only Singaporeans . I 've never done this before , but I recken it 's going to be quite helpful . . . My mother was more sucared than me so I comforted her the whole time . She was a completly stupid girl who had spent two years in an america jail . She spent her life in an america jail . My father goes to Pachinco for his entire holiday . It 's a buffe party . I was suppurised by her energy ! So I tried to find a way to buy the provious model of MacBook with a US keyboard , and finally I decided to buy a model from the US Apple Store . With this marine sport you can experience speed and exhilaration by runing on the water . I was very suprised . On the fifth day , I packed souvenirs for my frineds and my family in my suitcase , I prepared to come back Japan . In shor , he has an concise policy . I had an opic test . I want to change my charater . My neme is Kaori . I 'm going to shcool tomorrow so I hope for good weather . Since he is currently staying at Zac 's house , I can talk to him every day along with Zac . When I was in junior high , one girl who was n't in my class came to me and asked , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an anwer at all but I managed to say that . When I was in college , one of the Canadian exchage - students asked me same question . Eglish work interview Recently I applied for a job as asistant to the teacher in cram shcool . If I comform the conditions that were asked for there will be a interveiw . what is the best respones ? And I lacked preperation for this challenge . Of course , I 'll try the second challange . Next time , I 'll pass Gread Pre1 on merit and not luck . I want more of an American atomosphere to a fast - food restaurant ! But the whole restaurant is an important place for me . I want to enjoy another country 's atomosphere . So I want to ask them to sell toys of Ronald and his friends at Macdnald 's . I 'm sorry , this is a nagative diary . I have been learning English sice last summur . To learn is my brain 's traning . and I want to talk with forigner . Yesterday when I spild my cookies , he ran to eat them as fast as an F1 car ! It is said that Toriyama Akira , Doragon Ball author , was It is difficult to become a famous cortoonist . Only 2 % ( in all ) cortoonists can become real / professional cortoonists in Japan . What do you think about marrige problems ? My friend who is a 28 years old woman is thinking about getting marrige . She said that he is the perfact guy for her ( and they are having a good relationship ) , but she has problems about his parents . Accoding to her , her boyfriend care about his parents a lot . On the other hand , I do not think that they can solove it after getting married . Every couples have a problem , because we all are diffrent . My friend and her booyfriend are keeping a good relationship , so they will be able to accept his parents . Honestly I think that she has too big a problem for her and she will regret to get married sevral years later . My English did n't make senes to her . I wiil go to shopping to get some groceries . And l studying English at langage school in Brisbane . I want to speak and undersand English more . Many people were studing very hard . Afterwards , we went to Doutonnbpri . He smeil at me , what a pretty baby ! I still remeber the feelings . . . But my mather said `` Korean women tend to get plastic surgery . `` I made miso suop and another dish . The miso soup was a littel bit thick . In the past I wantded to be a chef . I konw I should n't go on this , but I hate studying at home . Result is . . . listning 78 / 100 Grammre 32 / 100 Today , I finally get back to school and my domitory after an 18 hour train journey . when I travell , writing a letter is one of the things that gives me enjoyment . My English teachur is old , but she is very strict . I got a SHOCH ! > < ; I was very dissapointed about this . . . Usually they sell the books at a 50 - 70 percent discountt . On March 11 an enormous earthquake happend in north - east Japan and an enormous Tsunami was generated . This incredible huge natur disaster caused extensive damage to the cooling system in the nuclear power plant . Japan is one of the top level industrialized countries , the goverment and nuclear power companies repeated that using nuclear power is safe and no problem . People against nuclear power in Japan were even seen as a little politically extrem . Now , the accident is still not under controll and the mythof perfect technik is broken . One day Sarah decides to go to Norway and surprieses Jim . there were always some retired people chatting and kids playing uderstairs . I made a decisioin to buy a house and I moved to a better neighborhood in late 2007 . Chocolate truffles , scones and gateau chocolat The topic is ' international marrige ' . I wil read my old diary nd try to understand it again to help me be good at English in the futur . Although Internet is more and more popular among students , there is no doubt that book is an vital way for studing . All of my serven have gone , they already go home when the Ramazan holiday come . and my mom do n't want them to come back , cause they are thieves , they stold some of my stuff , and offten steal some food . I am lucky girl beacuse I know about this site I hope meet friand on this website There are a lot of tasks I have to do , and I have to be thankful for the actual status under this ecnomic crisis . We have rolling blackouts tonight beacuse there is not enough electricity . I think he urinated fequency because of the psychological stress . I am writing a Master 's thiesis now . Moreover , every user has been friendry and very kind . And I hope that Lang - 8 further develops in the futuer . I 've just finished wathcing this movie . Tomorrow nigth , I will speak to my friend in English with ICQ . We will discuss different themes : religion , musik and jobs . today , a frend of my girlfrend inturduce me to lang - 8 , and , it seems to be a good website . I thought there would be a clearence sale because it was President 's Day , but I realized that I did n't have any money to spend for myself . I hpoe I do n't catch a cold Maybe just a little bit , but I think they are so I want to continue writing entries and imrove my skills . Another thing is that I 'm writing about diffrent things in my entries , so in fact , there is n't just one topic . RIGHT : He , the helo , has already gone on his trip . This could be a one - time - only lecture or consective lessons on regular basis depanding on the company . Yesterday , I asked / consulted the weather center about the everage wind velocity of the area where the building is located In order to accurately predict generation performance , I will use CFD and giographic software . I need to do more research on the feasibility assesment of generation . But from now on , I will try to write one diary everyday to impro my written English . Writen for the first time But , interestingly , I have to call a American proffesor of my university Mr Duggan . He conducts a class entitled ' Linguistics . ' The reason thet I joined this website is to write a diary in english . To be honest , I think I do n't spek english very well . I hope to keep practising enghlish and speak it well someday in the future hopefully I can get the help I need here by asking many qusetion . If you have a qusetion , I will answer it to the best of my ability . One meeting , one oppurtunuty . He can learn about our culture thourh Japanese folk tales , too . They want to drive with their frends , and that is breaking the law . It seems that their defference is power . Perhaps they would get nervos in the fight so they could n't use their power and techniques because they are polite and gentle guys . Of course , the owener keeps the apartment clean so that there are no bugs at all in my room . I was so hungry but there is no food in my refrigirator . I have ramen , instant nooldes . After comming home , I tidied up the room for a moment . I 'm going to watch a movie and write a movie review , read a book , play with my pet and study English untill dinner time comes . This is my first english diray , I am very excity , I reside in Chengdu China . It 's a very _ _ _ _ city , hehe , panda country , have you seen kongfu panda ? I thoungt that I should e - mail my Japanese friend to ask him / her to come . Unlike the other species , humans have culuture . The other day , I got the result of TOEIC Speaking and Writing test which was held last month . They are open on a natinal holiday . I thought he might be ungry . . . . . Otani says that `` The evolution of an isect is very fast . Humans have great intelligence , but insects are more great than us in vitarity force . Six years is such a short time that we could still remember each other distinctly , yet such a long time that we all amazed at the chages that had occurred among us . Our teacher was an energetic and humor young man , and he still is now . sorry for any uncorrect english However , I think that it is not tha cace . Moreover , I sugguest that our lives are occupied with what passes for leisure in our society . Taday is wonderful , suny day , but I have no spirit . I feel sick . What should I do ? The reaon why I got such a good grade is by studying many English words Fortunately , today is Ftiday ; I can have a rest tonight and also on the weekend ! I listen to English on my / an MP3 player when I go to my campany . What kind of MP3 is a good choise ? Hi evryone ! first dialy I live near the Urals mountain in a big industrial sity . This is school of desigh . We told them about it , and they adiviced us . Yesterday the worlds famous movie director Steven Spierberg talked about East Japan Earthquake at an interview in Paris . I went to Singapore to attand a conference from Feb . 25 to Feb . 28 . To quit smoking seems like something impossibel for a heavy smoker . Yesderday , someone went to my Blog and left me a commont . I am very warry . I have to writea diary that is attractive to readers so that it can be corected by someone . To pass anohter car , I must handle the controls carefully . Recently , an unrealistic politician has become an issue oline . The goverment supports poor people financialy . The day before yesterday , a politician who agrees with the current policy worte an article on the web . He only ate fast foods - due to lack of money , and he did n't consider other factors such as phone bills , electricity bills , transportasion fees , etc . I read an article on newpaper recently . this is my frist time here , my classmate told me this place , today , so , I came ~ She thougth that her life was boring . I did n't find her life boring . It was comon , calm , but not boring . She recollected her privious life and realised that it was good . We should find joi in our everyday lives . I coud n't express what I feel in this post . But , some of my Chinese and Taiwanise friends does n't like him since he has a dirty mind . . . Japanese companies often evaluate one 's score of this test when university stduents are applying to their companies for a job , so it is important for us to achieve a high score . This test includes writting and speaking sections , so even if you are native English speaker , it is very tough to get a perfect score . I had n't really talked with her hasband because he looked really tense when he came over to my parents home . I can understand a litle of the movie with japanese subtitles . There are a lot of countries in Asia such as China , Laos , Bietnam , Cambodia , Burma , Tailand , India , Srilangka , Parkistan and Nepal as well as Korea and Japan . So many people are suffering with unexplored bombs and mines in Bietnam and around the Tailand . I do n't understand why we are fighting each other because of different ientity , sex , race , class and religion . Several rock bands had excting and passionate performances . It brought srangers together in a common interest and it represented young people 's attitudes towards life . I moved to haruyamacho ( ? ) , Mizuho ward in Nagaya ( ? ) city . On the way I go there , I drew 100 thousant won out of my account by card . In comtemporary society , the amount of information broadcast by meida such as internet , radio and newspapers Newpapers play an enormously influential role within the whole media . I do n't know this finction well yet . So , I will often use this usefull tool : ) I commuted to English language school and staied with an Australian family for two weeks . My part - time job is at McDnald 's . does erratic mean really bad , hamrful ? A human being is a lengthways creature , so you must always keep balance . I was wordering about applying to your shcool for admission in hairdressing . I think it has not finished receving applicants yet We were confused becuase we thought it was supposed to be in the mall not outside the mall . After going to the hospital I felt better about my anxieties over ticks and skin illuness . Why do all the non - heterosexual people have to make an extre effort to do anything . I 'm angry with all these peole who are talking nonsense against gay marriage . I 'm extremely angry with all the people who says things like `` it 's unnatural `` or `` it 's agains the moral concept of family `` or rubbish like that . Homosexuality is not an aillnes , but homphobia IS . I am hosting my support group , which helps facilitaitor our lifestyle , in my house today . There are for people who want to imporve thier life for thier good . I want to go to Hwaii ! I am looking forward to the weakend already . Prease tell me how to be more positive . I want to get along and keep in touch with him in the futere too . Now , I am thinking of starting to work part time , so I have a question : `` How often do students ( like in universuties ) in other countries do part time jobs ? `` In Japan , from what I know from my friends , many students do part time jobs and spend many hours on them . Does this mean that I am very dependent and childlish ? I am worried about this now . There was too much water on the flloor ^ - ^ because it has some important featers such as Contactless IC smart card , You said you would treasure that clock forever , but you 've gone agaist our rule again ! I wrote my last entry without checking it , so in the last paragragh were many lower - level mistakes . I finished my journey in Australia and got that job vancacy in BAHA after going back to Taiwan . And the song that I am gon to be cover is called You Can Win . Today , I played footsal with my co - worker . But unfortunately , I am overweight and have a wider weist . I am a middle - agged man . I heard about Lang - 8 from my best friend ( love you ! ) and I became intereted in it . I keep saying that I only sutdy Enlish this time ! ( ? ) I wanna chang my job and it requires me to speak English ! I 'm writing this diary with a transraton site . Beofore writing my first journal , I read a lot of entries that other lang - 8 users wrote . I remember seeing it years ago and I was reary impressed by the story and characters at the time . Many kinds of fish , freeze dried , half dried , salted , and freshraw , raw fish . But stil , I 'm excited I 'm on vacation . When trade tensions heated up in the 1980s and early 1990s , these years became known as the era of `` Japan bshing `` . It was my choise . Then I bought a Cinese phonecard at Peking Airport but in Tianjin it did n't work . I 'm not newly gruduated anymore , you know ! ! `` was what he said . Well , I 'm glad that I 'm one of the very first people they think of when they 're in troble , but please , 3 calls per month is just waaaaaay too much for me . . Ever since I started listening to Mariah Carey 's Memoirs of An Imperfect Angle , I was deeply atracted by these kinda music . It has a covention hall for 1000 people and eight banquet halls . So I started a wild Enlgish project . beauifull spring ! Spring is very beauifull ! In this season the flowers bloon , grass sprouts , and there are green trees . I had thought that reading practice and having conversations with my wife everyday were enough to mastring English . So since one week ago , I have started ( doing ) listening comprehension excercise there . Now , I ca n't understand what the announvers say at all , but after I read the texts , I can understand them . Inspirating quote : `` Possessions do n't define you , your lifestyle defines you `` I can say that from my personal exprience I carefully monitored my life . English Convesation I have started to take lessons on English convesation recently . He 's so talented because he can play the guitar , violine , and piano . Usualy , I 'm not a casual sort of person but They are newly opene malls ( department stores ? ) . There are many peple there . I offen see Japanese woman with foreign men as couples . Jpanese men are not popular with foreign girls ? But , the club chief is planning to have some paties regularly after the dissolution . Perhaps becouse of age ? I wii play tennis in this afternoon too . However , I conqurred my self / emotions at last and tried very hard , and became one of the best workers in that factory . Meanwhile , I try to find the weaknesses in myself and try to be optimstic towards life , even occasionally somethings will happen unexpectedly . As some famous people say : we can not change anybody else but ourselves because we have to realize that in these hords / masses of people there are without doubt many kinds . I like your display of courang but at the same time , I envy it . Quitteing my job The food was wonderfull and the people were very friendly . I sometimes go to coffee shops such as Starbucks or a Doutor Coffee . What is your favorite season ? Major campany start in April , so my neiborhoods will move soon . I would like to make a special ( ? ) day for my 2 neiborhoods but I have n't hit upon a good idea . I thought that the meaning of mature was to pretend that you have a high status , to handle everything with high efficiency , to keep steadfast with my princiles with high profile , and to treat those who are younger than me well . For example , cleaning up campaingns and collecting trushs in the street to contribute to society . I aslo have to carry all of my luggages to my new house tomorrow . Before I re - entried Singapore , I withdrew two hundred thousand Japanese yen in Japan . Why does n't anyone correct my dialy ? plese correct my dialy . 5 . A momentary seperation . Becouse he slept all day . midnigt crying So tonighe I will sleep soon . The bank was prety crowded at the end of the month . I hope to give someone the chicolate next year ! ! I went there early in the moring . and the rest was the endodontic tretement . We will need more manytime . `` Miyajima is an iland , so we took a ferry to get there . The other day , I decided to attennd an English school called Presence at Omotesando . I will write here regarding the progress of my English skills through the English scholl , `` Presence `` . Becase people who speak English very well are cool in Japan , some Japanese people try to talk to them in English . Moern day people can use the internet , thus they can easily contact their families and friends and can watch the broadcasts of foreign countries . I really want to ask English teachers living in Japan , please learn at least intermediate Japanese , because Japanese students really want theachers like that . I do n't have any complaints that they only speak English during lessons , it 's essencial for us , but sometimes we need explanations about English grammers or dificult expressions in Japanese . It 's always interesting to learn something new , and I personally like studying foreing languages . This week I 've been feeling like I live in Sibir . Fortunatelly , the snow began to melt . I brought my mobile items . ( laptop PC , G - shock cellphone , Android phone , Voice recorder , Handy video comera , Anyway , I made today 's an apointment . He replied , `` What ? `` with a frowing on his face . I 'm Sho , a college student studying engneering in Japan . Well . . . and I like listening to music as well , especially forign music , for example Linkin Park , The Used , My Chemical Romance and so on . Gee , I should n't have written about New Year 's reasolutions . Anyway you 'll see how my resoluions go around June . because I moved back home last summer from another prfecture look for a band pertner in my city . I like my city but I prefer Canada to Okayama because I like Noth American cultuer , customs and music . Chirdren abuse I want learn to English ( I 'm a begginer ) . It is very expensive , but all my friends said that if I buy a cheaf one , I 'll regret buying it and will buy a new one very soon . I want to decolate my wedding party with many beautiful flowers . Now I am in Chain China next to the Hong kong area . We were once in a prmiary school . Also , I understood I got close to paradice or heaven in a different way . In those days , the most interesting thing was maybe fashione magazine . beauthful clothes and shoose . I remembered that when I lived in Japan I had a lot of trobule with the language barrier and customs . TOEICtest is the English test . Yeasterday , I stayed up late at night . So , it was unusuall for me to wake up that late . Especially my father does n't belive in God at all . An intersting day The weather is warm and sun is shineing . In this bus , I meet three foreign students , one is American , one is German and another is from Holand , they want to vistor `` Tian an men `` , but they did n't know how to get there . what a good chance for me to pritice my English . What an intering day today . The schoo provides one on one lessons . I talked with a neitive speaker . The picture is of a SHOKADO BENTO ( It 's a high quality luch ? ) I was exhausted while making a 100sheet presentation file using the poewr point . Recently , during a protest to condemn an inafective legislator there was 67 years old man who painted the house of representative 's roof . By January 1 , I received a lot of New Year 's cards sent by my friends and reletives . First of all , you can see different types of japanere culture in Tokyo . My mother usually buys drie bonito and shaves it when needed . My hoby is playing the guitar and singing . Lang - 8 is amaizing ! ! The game was held very early in the moroning in Japan . I 'm really releved to hear that . I am suprise that I got the pass mark in my CFM EXAM , the LAW EXAM result got a high mark as well . It feels strange , funny and intersting . So I finnally noticed my bad behevior . ( acustomer ) ( ? ) I decieded to try to close my computer immediately after I finsh writing in my diary . Many people think that time passes guickly when you use the computer . Now I am going to try a lang - 8 marason ( I named it by myself ) My love is always something strenge . This picyure is from the Kumagaya Fan Festival . If you have a chance , come over next summer . I saw two idels today . But , he made every endevour to speak it , and at last he was able to convey his feelings . Moreover I find that my sentance are too long and it is difficult to understand . this is my first post on this webside and first English in my life . I especially like Krispy Kreme Dounghnuts a shop opend in Shinsaibashi . Thta is amazing to me because I 've never been abroad before . He always makes me happeyer . I am good at mathematics so I easily undersatand the subject that relates to mathematics . The benifits of this website are not only learing languages but also making freinds . I called him when I heard about the increable disaster with the earth quake . I just called my sister and I found out he is workding very hard with very little sleep . He is kinnda of shy . . One day , he told me that Japanese Self - Defense - Force was trained for disaster relief from earth - quakes and tunami . But , unfortunatly , the worst nightmare has come true . . . helping thousands of people to the safty - area before the tunami hit . I thougt the way it tasted was diffrent from how my boss makes it . Then , I realized my misstook . So I 'll make the sauce again this weekend , and perhaps a Hollandais sauce too . She became sensetive . He explained her that Michael had the same desease as she does but he is cool and became famous . She was encouraged by him and recoverd her confidense . Can you imagin if your color of skin changed ? ! She and Michael are brave people who got over their own desease . . . . . . the garden of a nersery school A nersery school which I can get toon foot in 15 minutes , opens its garden for children . but I never thought that there were very mess ! ( ? ) Meaning most people were cheating on the examination . I always concider Chinese students quite smart ! Yeah , of couse they are smart ! But it was not fair to cheat on the exam , right ? That 's unbelieable ! I can read English stories and airticles , and I know many English words , but it is very difficult for me to listen , write and speak English . . . Sorry about the nagative outlook . There is a simpe answer ) ) Congratulatuons ! I 've already worked at new work for a mounth . I have been asked to traslate this ( below ) into Japanese by my friend . I can not tlanslate . Can you translate this sentenses into Japanese ? But I 'm happy anyway becouse it 's SUMMER ! ! ! The corectee might have believed that those were right . Oh ! Tha 's great ! To sove the problem , I believe that youg people should go overseas to study , travel , help developing countries and so on . I think it would be better to lower the air conditionar . And I regret a little bit that I did n't try to aks in detail for alternatives because I barely understood what the clerk was saying . He spork too fast to catch it ( all ) . I know to hundle a thing like this ; you have to be proactive and patient . Oh , being in the States , feeling alone , it 's just hard to hundle it . I went to this course , becouse I can read English text ( not good , but I can ) , and I can understand English speech ( worse , but I can ) , but I ca n't speak it ! Recentry I wrote new year cards for my friends , and put them into the post . It was a loud thmp . . . In my spare time , I have broad interests like many other youngers people . I ( usually ) study for a long time , so it is important that I find a more conveinient coffee shop for studying . Additionaly , it lets us use the AC power , so we can use our laptops there . A lot of my friends are worrying about their future , bause many companies have decided to cut their costs so that they do not need to recruit others to join them . I also worry about my future . I have been working as an intern in an internation company for 2 months , but I 'm not sure I can stay there . The reason for my call is to confirm the shippinng date . I am working in procuriment Department . In addtion , jogging after working became my hobby too . my hasdand does n't think it 's good . I might be more strict with her about mony , rules , and study than he , , We will go to Belgen from 29th August to 3rd September . I work in the Jewelry department and my partner works in the fashion department . About Lybia . I have heard much news these days abouy Lybia . And I also heard that many countries are concerned about the exodus of Lybian . From what I 've heard Thunisia was no longer able to deal with such a influx . But I think he does n't feel much responsibility because he said Lybia people love Lybia and Cadaffi . It 's rediculous . Soppose that a girl has loved some guy secretly for a long time . You are interasting . ' I 'm Japanaese . If you watch the news on the tv or intnet , you will get informtion about the nuclear power station in Japan . In my opion , I think we should close that , _ firstly , it is too dangerous and we can not control radiation . secandly nuclear power stations could produce some nuclear waste . We also can find other resources to replace nuclear power , _ for example solar power and coal and oir . In the case of Shizuoka , Yakisoba ( griled noodles ) is a very famous food . David Coverdele is one of my favorite singers because his voice is adrable . Many people are fascinated by his voice . Nowdats , many hotels offer a discount price , it would be cut in half . Could n't unerstant ! ! ! I could n't understand Engish or organic cemestry . I have n't wrotten a thread in a while a while . Usually it is / it 's warm over there , because of the sea , but that summer , the weather was either cloudy or rainning . but recently I really ca n't have confidense so much about my English skil . I do n't know why they can remember vocabraries so much ! ! ! umm anyway I have to study more . After arrivining there , she did n't want to get out of the car and cried very hard . The teachers were warried about her . I thought she just wanted to ride in my car more but couldnt n't . . . . I 'll kepp watching next episode after ! ! ! ! ! I could n't go outside because of the tyhoon , but today was fun : D These two movie stars are the bigining of my study . I 'm suffering from a migrane . It 's something like a migrane . BUI I WHEN FOUND OUT THAT HE SHOULD COUNT THE QAUNTITY OF SYLLABLES IN THE LINE , THE DEVIATIONS FROM METRE , PECULIARITIES OF GRAPHICAL FORM AND RHYMING SCHEME . . . The wall , the table , the counter , and all of the stuff are made from ice blook inside . Even drinking glasses are mede from ice . I like to write a diary entry but this is my first diary on Lan - 8 ! I have known about Lan - 8 for some time but I 've been nervouse about writing a diary on Lan - 8 : ) I 'm learning Enlish in several ( different ) ways . I am reading a newspeper , ' Student time . ' I watch webe TV , and so on . Hellow ~ ! ! Foreign Friend ~ ! Bcause , I have freedom . Meetting my friend , Eatting nice food , Sleepping a lot , studying English , I do that too ! ^ 3 ^ I 'm going to take part in Hana , where I learn English skeaking with foreign people . On a cold day , I feel like eatting a hot food . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` eatting . But it was put off due to the big typoon . I wana write a letter for to host family . In Melbourun Because this is my first opportunity to go overseas and Melbourun , in Australia , has a lot of nature . First , we got on a plane for the Gold Coast , where we then transferred to a plane for Melbourun , then my host mother picked me up and took me to her house . We have three classes tomorrow , to teach us what Melbourun has . I gave it to the station clark . Recentry , I 've been addicted to eating crackers . In Beijing , I have a lot of trouble acrossing the street . Actually , compared to Japan , Chinese drivers drive very fast and loughly . Today , we sold the same frypan agan . My favorit color is blue . Today is my first vist here . A case in point is Edison who invented the light bulb through numerous experient . What 's more , he was n't defeated by frustration , and he also said , `` faiure is needed and it has the same value as success for me . `` I plant vegetables in my beranda . Last Suturday I had my hair cut . Chris Moulin of the University of Leeds , you can induce jamais vu through semantic satiation , which means bassically fatiguing a patient 's brain by overexposing him to a word . After reading the aforementioned info , I wonder whether there could be some implicances for language learning over the short and long term . Today is april fool 's day . In the usa , peopie usually fool their good friends to make everyone happy , because the old generation does n't like it . In their minds we would be very impliet if we do that . Tomorrow we 'll have a outing . My company organised it . We will go to a famous and beautiful place , and we will see a panda . I am so exsiting and I 'm really looking forward it ! I always try to broden my perspective , which means I can not easily answer any kind of question just from my knowledge . Even native spakers have a hard time writing something abstract , what it will be for a Japanese kid to do so ? Although some emotions and morals are still cryptical to my age , I was touched and just ccould n't stop the tears because of the beautiful regret and the heart - breaking ending . Are people in modern socirty losing their moral values ? Some of parents are very aggresive . In such tigh situations , teachers find it difficult to provise good education and teach good manners to children . Youths learn very naturaly how to respect their seniors . Each of us has to recongnize the importance of morals . After I posted my journal yesterday , I regretted a lot because I wondered if my journal entry sounded offense to some people . I want to say that English helps to express my emotions more easiler than Japanse . I suggest that there are some culuture differences there . I am nearly fourty , I work for a company and I am a department manager . M every day except satday and sunday . becuase I ca n't type a letter on my PC . . . . SUMMARY OF ALIFICATION Uhm . . . . see the Jeepney in Manila , Philippines . . . They always give you an unconfortable face when you hit ( bump into ) them on the road . Of couse , he did n't hear that , and he picked up his hat I had hit off . As my college is in Kyoto , I usualy only go around in this area . but , I am going to Tokyo to take a seminar for job appricants tomorrow . Thus I think that I would be busy , but I think that `` busy `` is an evedence of one 's living life to it 's fullest . He used to work in a sushi restrant when he was a child . But she said `` I have never used it because I have a poor backgrund . I want to speak English fluenly and I want to get a job in London . I was a bit coufusing . Today I met my new roommate , who came from England and woked in Australia . He went to New Zealand to work and just staied here for a couple of weeks . Actully , I do n't want my roommates to change constantly . Best regads / Minato because I think it 's not intrested and there was a tayphoon then . My room was a little messy befor . Oh . . . I forgot to writen that I 'm not lazy ! ! So my room is good now . Of couse I know there are a lot of mistakes . Well , I just signed up . I hope that with this web site I will improve my englsh skills . However , I rescieved an E - mail from the community center , saying my reserved books have been prepared , so I 'm happy . I am born in Jiangsu pro China , so I have no chances to comuunicate with foreigners . Eeting is important . Well . . . to be honest , I am totall broke . . . So now , I will be open and filexible for any financial suport from any of you ! Anyway , money is not the subjet now . The more important thing is to have great and unforgettable memories with my freinds during each trip which I hope will cheer me up sometime I 'm upset or depressed with my work in the future ^ - ^ while I ` m taking ressons , I put my usb to a computer and study English from Eigoduke There must be a certain relationships in which you tend to hesitate to leave a comment unless the topic is absolutely familier with you . His full music videa will be released on the 21th . They pretend to be intimate with us when they need our help , why are n't they unsatisfy by our benefits ? We talked about vorious things for two hours and had a wonderful time . I 'm a student at Hansin University . Someday I hope to play the guiter . However , I definately am going to enjoy my life there . . . ! We are goint to the selecction football - soccer match when the American Cup is in Argentina . I often meet my friends to watch TV . I came here today ( yesterday ? ) onn business . Most of his works are paintede wide lonely lonelylandscape with tiny objects such as houses , , boats , animals , trees . . . His first illustrated work ' The white bird on my bench ' has been published in various European countries after which he won meny awards . I want to have the ablity to help somebody easly . The sweat was pouring off my bady . May this new year bring you many oppertunities along the way . Because , when we cought up witheach other in my English lesson , I told her about the changing of my way of thinking these days . She also took the class to improve her pronunciaton . I talked about some topics including intrnational mearriage with her in the car . I 'm a university student learning about archtectures . Last month I vesited London for 2 weeks . This is the frist abroad trip for me . co , I would like to apply for the possicion of a Service Quality Manager . My ring fnger bone was broken the other day Accidentaly , during a soccer game with my students . I attacked one studets by accident The next day , my left hand turned pale and a litle bgger . It 's now a chance to strengten my right arm and hand . I always love my mom but sometimes I lose control when I start talking to her and I become crochety with her . I act crochety but it 's hard to keep my composuer with her . It would be very bad if I had to be with ohers in that time . Actualy , my son is always being mistaken for a girl in china . This weekend I 'll take part in the National Computer 2 C language exam , but I hav n't prepared well , so I do n't have confidence . The third question was , `` Discribe one of the situations in Picture B `` . I went shpping with my mom . And at night , I went to eat cury rice in a restaurant with my family ! ! I am goning to introduce Japanese folkrore to you . I had watched Supernaturl previously but now the season already finished . This is a really good hidden taste except for one thing : it takes a long time to cook sofftitto . The recieved items are white belt , shirts , and black cut and sewn . It will be an unique ceremoney . By yhe way do you know Turtle Talk ? Otherwise , The sentence does not seem to have enough meaning and stucture . I can understand the teacher speok but I ca n't answer questions correct . There was a Engilsh Poromoting Test at the end of the month in my academy . My techer said , But your writing is not good , So I recomand you write a diary `` ( I ca n't remember it exactly , , ) I did n't see fear from radialization in their faces . Especialy in past 3 months when a big natual disaster has happend and the affected people need heip immediatly . I question why my contry does not allow both storng and long administration . In addition , Japan has a mono - cultual society so I think Japanese people tend to be affected by the media 's opinion easily . I want to traverl to Europe , Australia , New Zealand and so on . Mah - jang day Thsi weekend Then we talked about our jobs , habbit , marriages and so on . We had several opputunity to speak English , but I do n't speak it well right now . I am convinced I will speak very well in the future . Within a few days ' time , we had to quickly switch to wearing cotton - padded jacketin . I study very hard here because English is not my own languge . A : I have a luch box everyday . However , you enjoy hot meal threre ? I am watching Climinal Minds on TV . I need immediat answers to these questions . No one can live without peace , which means that the palestenians can not live but only try to survive . First I have to decide a specific goal , for example to pass one qualification , to teke an exam , or to get job . Second I have to plan untel I achieve the level and I know I I have to do this thing in one year , so I have to start today . It is most inportant that I continue that thing . My small obgect is to go to an overseas university to study next June for 10 weeks . My daughter 's school is having a field day Tommorow . I ate stuffed chicken sarsale ( ? ) sounds like that . I resulted in eathing too much . I very much want to inprove my English I love to play with friends , plus singing and dansing . Could you tell me about your favorite music and singer ? Japan is the second biggest economy and the biggenst economy of Asian countries . For example Japan is good at making vedio games so a lot of young people play video games and enjoy them . ( enjoy video games ) In today 's class , we talked about `` the unnessesary things in the world `` in English . But I do n't have any paln to go the sea . Because I have too much homework and I also have a test for tomorow . . . . I 'm working at a restrant because I need to pay the school fees . I was ranning , dodging many pepole to get a boxed lunch at reduced price . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more unconfortable . To teach my students mathmetics . If I did n't have it , I might have fallen behid . But , I wonder if young geme lovers can understand them . Today , a foreign friend gave some adviced to me . He said , `` I just hope you can open your eyes to the posibility of meeting new friends . `` Today , we had a trip with my father 's freinds . My major is English language and literature , so I like English langage and literature , I bigun to write in English daily . Becouse I want to be good at English . My teachers and my classmets never called me by my name and they always used to call me ' ' hergiin ezen ' which means toublemaker . I was called a troublemaker becuase I was a boy who always used to get in trouble and got my classmets into trouble . The journalist published a newspapar about the celebration of my school 's 55th anneversary . On the top side of the newspaper , there was an interveiw of our school director , but below his picture there was a picture of me peeing into teh corner of teh school building . she was a young American womon . I asked the person that the scary mails , , , , she said to me `` you dont need to be worried about it , and you should believe in yourselfe . `` Lang - 8 has deeper communicateion , too . Sometimes even companies have a kind of sport 's day in Octover . Do you have a such kind of day in your countory ? Reacently , I have taken box lunch with me to my work place . We orderd lunch specials . After I got inside the store , I wound up buying things I would never thought about buying berfore . Unfortunately , my puppy hurt his left leg yesterday when he was trying to jump accross a bush . But it is important to talk to earch other , well thinking . baby are you donwn down down . . so0o leave it behaind cause we have a night to get away . . . so0o leave it behaind cause we have a night to get away . . Koreans have a lot of fun cheering in the streer but today 's match is too late . the frist video and this second video are a litle bit different . . . If poeple ask you do you know how to cook Pad Thai , Now , I spoke to an American who lives in New York by caht . I would like to help someone 's deam to come true . It 's a fantasy and dremy . BLESS JAPANESS I hope the Japaness soon have peace . God bless you ! I think music is a beatiful performance , it 's something essential , like a type of language . * I would be gratefull if you could tell me how you express this because I really want to learn how to converse naturally . It 's so fun to play hier . She said that it is a good site to study languege . But I am requierd to write a dialy entry . But , I 'd like to be a programer . The day before yesterda was Midsummer Day of the Ox . I went shopping with my doughter . People talked to my doughter becouse she was wearing a princess dress . These groups can not inherit if the prior rank inherts . Oh ~ God , he changes his mind like a girl chanes clothes . Even if I achieve that perpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studing peper tests do n't help me speak English and learn English expression . Studing language steadily is very hard . I just looked up `` progress `` in an English - to - Egnlish dictionary called the Longman Dictonary . I think it happend because I changed my diary 's title style . Winter is ending , and Spring is comming . It makes me feel more powerfull and it 's fun . If you have betther idea , please talk to me . My skin had a blotch , and it was abseced . So they had to cut it open , and mundified it . I appeiciated all of our members singing . But scince I 've returned to Japan , I have been drowing among huge amounts of information spoken or writtn in Japanese , and I recognize my brain is going to melt . . . . So , I decited to take action immidiately ! I will be very happy if I find lots of friend here to comunicate with and get achievement for my dull brain . Speaking of the airport , I found out about a new `` ticktless system `` this time . The media says that the public has the right to know about the private actions of famous people but the media does not have the right to ruin their familiy 's lives . I often eat out , such as at McDonal ` s . Now I 'm watching a TV program about the Houbble Space Telescope . Mein Vater ist beamtin . My weakness is my impatient caracter . I like to travles around the country to eat at famous restaurants . Certenly , the dove is an emblem of peace . The explanation about the exchage rate in cargo Insurance In case you fill in foregin currency in the application sheet and requre the payout of Japanese Yen , the exchange rate to the payout is the rate agreed at the time of payout . Please be advised ahead of time that due to exchange rate fluctions , the exchange rate at the payout may turn out to be less than the rate at the time of application . Actually , writing this diary is the first time after graudating elementary school . 2 Whisper of a thrill , there is no sence living your life without it . 5 Okey , stay open . Therefofe I will have to take a bath alone in the near future . yesaterday , it was a little bit cold . Today , I went to primary school for one teacher ( physicl education teacher ? In a podcast program about how to wisely choose lite and free apps , I heard something wierd : My topic of reserch is `` spider silk `` The reserch is difficult , but I want to study more about this silk ! ! especially , I look forword to eat Temmusu that includs a fried shrimp into riceball : P Konstantin could not slept with herr and came to me lol . Therefore we ( the emplyees ) have to work late everyday . So after Koizemi retired , the succeeding prime ministers ( Abe , Fukuda , Aso ) suffered from the poor legitimacy of Koizumi . Later today , I 'm going to trate my classmate to dinner . Yutori education system failler I suppose this is what the jornal 's writer wants to achieve . I used to use a dictionary for writing sentense in English . I did n't want to make mistakes and I do n't know a lot of vocablary . I usually check my sentense with a / my dictionary . When I cook a new dish , I follow the reciepe for it . but next time I could n't make that dish again without the reciepe . It 's been a quite long time since I had a great time on Christmad day . When I woke up in the moring , I felt that I was n't in good condition . My body 's temperature rose up to 40 degrees and I kept caughing and sniffling badly the whole day . It 's unbelivable to be in good health condition after I missed Christmas day . Even though I have no religion , I 'll have to appreciate to God whenver Christmas is coming . But my American thecher said `` No more freedom in America now `` . So many people in China throw away garbage anywhere and there are no rules of politeness and I just thought China is a freedome country . Actually Japan is one of world 's most polite countries , but there are so many unwritten rules that we have to keep , so I just do n't feel that Japan is a freeedom country . Because it brings me pleasure to speak English with foriegners . They want to talk with Japanese people because they 're livng in my country if they speak Japanese very well they want to live in Japane for a long time . At noon a keyboard at Ningguo Jiangnan hotle had a problem . Fristly , I would like to say `` Happy Chinese New Year `` to my friends in lang - 8 . My mum gove me some money but I need more . Active : I played valleball today Passive : Veleball was played by me today Active : I wash my dish befor I come here . I 've promised that I would go out with my frineds today . On Sunday my flatemate and I cleaned the kitchen . In addition , successful sportpeople / athletes also make your country become better known all over the world . During that time , I thougt the sky might darken to some degree , but it had not changed at all thanks to the clouds . On the information page , a movie about Appolo 11 landing on the moon was broadcast . I just watched the movie , `` Appolo 13 , `` two days ago , though I did n't know July 20 was the day mankind first stepped on the moon . I felt that the bussiness class is another world . This menas , it has a different quality , different sentences , vocabulary , students ' attitude and class method . What an influenceable pearson he is ! My kids and hasband saw Doraemon the movie . Sadness , lonliness , there are a lot of feelings there and that I ca n't sum up in one word . So my doctor examines me very cafully and reserch this illness enough before my consultation ( appointment ? ) . Beginnig of May ! ! I 'm studing economics in university , and my seminar focuses on international trade and deveroping economics . Today 's topic was on Chinese inequality , then we debated about education , social security , and occuption . The reason is that there is a correlation between inequality and education , so improving education in rulal area will help reduce inequality . looks like a japanese comic charactor `` Black jack `` korean is a very good place . but people have their own caracter . I do n't know why I could n't open the website , but fortunetly I can open it now . I am in the middle of the mid - term exam , and I feel like I did terrible on the first subject : Grammer . It is one of my weaknesses in English , but I really like my grammer teacher , she is very talktive and likes to gossip . I bave to prepare for the debate . I was so surprised becouse so many Koreans stay there , even Toront . I read an article about Japanese school unifrom . AL Chinese Langage and Culture I really appreciate AL Chinese Langage and Culture because it is one of the tests to check our whole life skills in reading , listening , speaking and writing which we always use when we are a university student . But I am very much disappionted with AL Chinese Langage and Culture in its culture test , testing our ' Chinese culture knownledgement ' and ' Chinese culture judgement ' , which I find most hateful . Carefully , there is a difference between ' Chinese culture knownledgement ' and ' Chinese culture judgement ' . Testing your ' Chinese culture knownledgement ' is based on what the famous Sophists say . But testing your ' Chinese culture judgement ' tests your judgement on using your ' Chinese culture knownledgement ' . This is my first point why I am disappointed with AL Chinese Langage and Culture . Why do I need to use ' Chinese culture knownledgement ' to comment on certain kinds of events ? hate Chinese Culture becuase I have relized that some of the Sophists ' theories are too ' ideal ' . Although my teacher said the answers are correct in the right direction , no matter what you think , the answers are still always worng in two ways . And two your answers go agisant what your teacher 's thinking about . This is the second reason why I am disappointed in AL Chinese Langage and Culture becuse you need to think what most of the poeple are thinking . I found Lang - 8 by accident , I still do n't know how I was able to get into this website . But it is wonderful , because I found a new wany and new place to improve my English and German . The people on Lang - 8 are reallly warmhearted , I want to make friends with every one who loves and enjoy life . Because hee knew that I have been studying English , he thought it was a good oportunity for me to speak English . It was too difficult to communicate with foreigners , but I enjoied that time . * Noth Ameria : US , Canada Luckly , I was able to arrive home without getting wet . techology and Environment Specificially , instead of wasting our resources , a simple life / lifestyle can help conserve non - renewable resources such as mentals , minerals , petroleum , and fossil fuels . It may be tempting to argue that people who make theia lives too easy for themselves may also implicate potentially harmful drawbacks . However , the denifits reated by technology far outweight its disadvantages . I am going to Thilan soon . . . My favoriate is Thai food . . . In fact , this gentleman was also a business man and he had just finished some business negotiations and then took the trian to Shanghai . Maybe when I go to university tomorrow morning it wiil be wet and there will be a lot of puddles . And in the afternoon it wiil be raining again . I wanna talk about the habbits of my company today . Unfortunatelly , the meetings always take more than an hour . What is worse , even though we have mornig meetings for more than an hour everyday , we have to give him reports , about what we did that day , before going home . Some of my colleagues have gotten sick of those habbits . As a matter of fact , I like to listen to him at th meeting . I get a lot of bisiness tips from him . The most important thing about English is to grasp the common vacabulary and the prenounciation of each word , which I am sticking to either . Thyank you for reading my English . I 'm a buissines man in Japan . Someine could help me how to use this site please ? thakyou I hope to make more friends who like studing foreign laguage . I ca n't write or speak in English very wll . Please look at my sentense and correct them . First Messaege I 'm trying to stady using this sitets in English . During a party this evening , I got stressed out because of the infinite reliabilty on my English capability from my boss . I 've been studying Englsh for two months . I wish I could speak Englsh . you can study any laungages you want . I am going to see an animated moview tomorrow . My daughter & I had the fle ( type B ) for two weeks . Learning a langueage may be a good tool to make friends . I am a little bit desprate because I need a epiphany or something else . My English skill is poor . Today I spoke to a friend in oustralia I want to wisit the school to pay my respects to my teachers but I could n't , It is my firt time to write a diary in English . I think I am poor at English grammer . All in all I think I become a more comprecated person when I speak English . I decided to try it again next yaer . I have to go to the library again and stay there for 8 hours everyday . I elased him on facebook . I like eatting and siteseeing . And surprisely , I noticed that today - - August 13th , is International left - handers Day . In my opinion , using whichever hand wo n't determine who a person is . Just let every unreasonable injustic disappear on the earth . In my college in the Department of Communications , we have to do an exhabition in our last year in / of university . I feel reliveve I 'm not even sure what elderly people are nore what it means to get older . Especailly gimchi is a very good food for our health . realy , I have n't been studying it . So I hope you can help me . Japan is very cold thesee days . I do n't want to spned a time shopping for something I do n't want . If there were no laws , we would kill each other and the weak wouold be victims of the strong . If it is excessively or only viorent , people can not have fun with it . Therfore , all violent scenes are not always bad influences on people . Humans are diffrent from animals . That time , I forgot to trun off the gus with miso soup cooking and what was worse , I went to bed ! It is very unpopularly help others . We do n't understand how we can care about people who wii not return the kindness . The most delicious way to eat vanilla ice cream is to pour a little barsamic vinegar on it . After playing badminton , I went back around by bicycle for excercise . Golden week was fineshed . I will go back to work tomorrow . I 'm so disappointed with foringners who are so rude even though they really do n't have any idea about Korean history . I reanlly wanted to go abroad before , The biring day I am chased by a lot of ploblems now . As she is very friendry , she approached the other dog today , as usual . `` GD `` stands for `` Getting Diborced `` Truthfully , my parents are getting divored as they always argue about something , even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can return to after I graduate from my college , but the real reason why I wana leave Japan has something to do with my big dream . There , I have to give a speach . If there are people who need seats , for example , an elderly person or a pregnant person , we shoulf give our seats to them . Golden Week strated yesterday in Japan ! ! But I could n't have a paid vacation on 2 May because I was asked to perfrom some task on that day by my boss . I wanted to go on a trip abroad during GW , but my wish was n't realized beacuse of the above reason . Their music is so emotional , but it contais lots of electronic sound and it 's so fashionable and pop ! I will wash our colthes and make dsinner whth my daughatar . Today , I went to Japanese Grammer seminer . Of courese , I 'm Japanese . These days , many foreighers go back to their countries . entrying to university , I enrolled at a university to decrease the chance of studying English completely . I had a high fever , so I did not feel like any writing diary entries ( now I feel better ) , so I 'll start wrirting something again . Because the academic atmosphere is not good and the basical laboratory equipment is insufficient and out of date , it is hard to achieve much progress and make discoveries in a short time . I started working for a liqure company 11 years ago . The first month of company life we studied in a factry and a sales branch . Then he quit our company and enterred Waseda bissiness school . Now he has graduated and started working for another liqure company . 2 other friends live in Tokyo after being / working in ohter areas now . I 'm liiking foward to seeing them . they mentioned a brand name that I had nerver heard of This was a fn experience I had in the supermarket . Some people mihgt tell me I 'm just lonly . . Althogh I am a little nervous , I will do this job as best as I can . First , I will wellcome them in the entrance and lead them to a elevator . `` Nece to meet you , Welcome to our company `` , `` Let me introduce myself `` , Now I am working in the bakery and learm how to bake bread . I 'm working at a flowre shop , and that is very hard . I 'd appriciate your corrections , but I probably wo n't rewrite this until I am able to write it correctly by myself . When I learn more kanjis and feel more confortable , I will begin to post in Japanese here . Beforehand , I 'm gratefull for your corrections . Nece to meet you . They are suppoed to cast their own benefits and prejudices aside . To make matters worse , the wind blew very strongly and bloken my umbrella ! ! I know I love her ; I konw she does n't love me . He does n't konw . From my perspective , this game 's fantastic point is , using very realistic human avator for acrobatic movement . I feel that , the central focus of Mirros Edge realistic body exsit in the `` body image `` . Mirror 's Edge `` realistic body `` does not depend only on the grahical detail . Avator 's breath and the crashing sound is very real . If the avator runs for a long time , the avartor start to become breathless . Secondary avator ( NPC ? ) action is not realistic , but the action variation is based on generall human action . Most of avator 's actions are possible for generall human . [ * Self Modify ] Probably , these `` realistic `` functions do not equal a high - hiresolution graphics efficient . Becouse my friend has his own car . His driving is soooooooo CREAZY . I have been eatting so much that my waist is bigger and my stamach is sticking out . I do n't konw why . : S Some people maintain that attending art classes may borden kids ' horizon and enrich their knowledge . He was mooned - face and there was brithness and lightcoming from his face like a sun . She interpreteed the words as a promise he made . Today I wandered around town and tried to take artistic pictures , but my pictures were mundane because not only do I have no clue about photograghy , I am also not good with artistic things . To be honest , I 'm still slightly confused on how to use Tumblr , but hopefully I will become good at photograghy and upload fantastic pictures ! I have studied painting for a mounth . I think it is difficult for me , the color is most difficult in paninting . These days , I think I make little progress in it . What a pity ! It is a big island located in the northen part of Japan . ( I do n't know whether the expression of island is correct . ) As a third - year student , I will be job - huntting after a year and I am improving my English level at the present . Kyoto has some foriners who comes to sighseeing in Kyoto city . There are bus teminal to some famouse spots in Kyoto . I would like to help some foribers who are lost in Kyoto staion . Blinds are the opoosite . I 'm styaing in Australia to study English . I 'm Japanse so I can teach you Japanese . I drove my car in a main street when I found that it was hard to move and it was rainning at that time . The heavy traffic blocked the street and thirty mintutes later , I left to look what had happend . More than a hundred cars were blocked up at the crossing , the street was in choas . and improper grammer . Other than the internet I learn from apllications such as `` Windows `` : ) ) ) ) I need a lot of help becouse I find English a dificult language to learn . That 's because I had to get my bank card reissued ; yeasterday 's accident was not my fault . I ca n't trust or belive anybody anymore . Hey wait , so my loudlord tried to use my bank card ? Even if some hackers have great skills , is it possible to learnaPIN number without touching my walle or bank card ? From now on , I can focus on my study and job huntting . Influenza is awfull for Be carefull of infulenza everyone ! Kano and I went to Tokyo Disneyland the day before yeatersday . Because it takes about 30 muinites from my house . Nihongo no tanjoubi no uta wo imasen . This shop sells various goods . For example : bowls , dishes , cutleris , bags , and plants . In the past architecture was built big , new , and public . Today it has become small , re - bulilt , and private or commercial . Although they are only primary school students , I found it difficlut to handle them . There is still room for improvement of my trainning skills . Wow , it was so hot in school ! There was no air conditioner in our dorm , so it was a gret challenge for me to spend the whole night . Since I 've registered on this site , I 've always been writting in Japanese . I love learning Japanese but I think I shoud make better use of this site to improve my English writting ability as well . All of my family became memebers of Lang - 8 ! It 's a fun to write a diary in foreign languages , althought it would be a little bit hard to keep it up . Sometimes I think they do n't care about the garmmar , but I am kind of worried that they do n't understand me . On Monday , I failed in the rehearsal . I think it 's gon to be a big challege to successfully play the role . I 'm not good at touching other peopel deeply , and I do n't like touching the bodies of other prople . ( I thought so at a noursing home where my grandmother stays , and while I was caring for my grandmother . but of course I care for my grandmother . ) I ca n't do anything for other peopele . I heard it is a litte famous in the world . This comic has such a heartful story ! I hava an exam . Secondly , I will work out very hard because I belive I have HIVD ( herniated intervertebral disc ) and scoliosis . I need to do streching and take care of my health . I do n't want to fail to fulfill my resolution . My mothere and I went out for a long walk . Even though it was so cold that we were almost freasing , I felt really cool and refreshed . Excercise makes people cheerful . I am now planing to join a menber of * * * as a trainees , If I become a menber before Jan . Wolud you mind telling me about making it in time , if I apply for a membership in a couple of days ? I also know that some of them have been became shorter which is good , therefore `` Heroes `` season 4 was denied to that only having around15 epsodes . . Ohayou Guzaimasu - Philippine wa mou shichiji des . Noyhing bad or lucky happened . Mmmm . . . what should I do ? I 'm studying about welfare . My hobby is readinfg books and looking at the bule sky . Of cource , I like watching TV too . But , now I have so many tasks about my stadying , so my days are so busy , which is a strange feeling . To make matters worse , because the disaster - stricken area is very wide due to the huge Tunami washing away everything like main roads and docks . Also the uncontrollable Fukushima nuclear plant , severe shortage of gas , and the situation of shelters and hospitals in the disaster - stricken area are very serious . It was writeen about her . He flew to the sea and He was drowed . I do n't feel comfrotable . I have a sipmle question today . I 'm hangry ! I know that many young woman have had breast cancer recentry . I think this is becouse of bedbugs . Although I wash my bed cover and bed sheet reguraly , so why ? So shiuld I change the mattress ? For Exsample , we played Street Fighter II which was made for PS2 . B ) installed the software onto the desktop of A 's computer , it seemed A was disappointed by B because the desktop was fiiled up with many folders . A was angry untill I removed it ! ! Nobady will notice that I ate one apple or I ate many apple . I leant ' Gostop ' which is a kind of Korean card game from my friend . There were lots of rules and they were very hard to remeber . Each card hace a diffrent score and it 's very flexible ? as well . It was quite a strange time moment as it was my firt time to play Gostop I want my English to be as good as my Chinese , which means whenever I see enlish words I can spontaneously catch the meaning of it . My friend got a score of 850 on the TOEIC the first time , and 905 tthe second time . ' One ' is pronounced as ' yi ' in Chinese , and it is simial to the pronunciation of ' two ' in Korean . This space seems like a place to wirte a daily diary . Pehaps we need to go back to the basics of this problem and assess the possible causes . Furthermore , providing owns < - - ? criminals only adress part of this problem . So far there has been lift < - - little ? success in the war against sex crimes . I thought , I shoul write something in the , `` About me `` section . Perhaps I should do some grammar exersises for this topic . I thought `` to get caugh `` is useful in a conversation . It has been 10 years since I frist learned this language . But , I found that Janpanese is much more difficult than English to learn . temperatuer on the increase since the temperatuer has been increasing very slowly and sometime even falling again . 3rd picture : At Ginkakuji ( Ginkaku tenple ) I listend to some music . My baby pressed the power butten repeatly . Today , I tried to correct a diary which was witten in Japanese I felt it was defficult to get up punctually and actually it was so . * Oh yay , I 'm afraid that after I write a few diary entries that I wo n't visit this website again , and accidents offen happen , so I always pay attention in order to avoid them . I saw a boy acrossed the road . A man came and examied the boy . Many people surrouned the accident looked puzzled . About my work , there 's so much works I have to finish within this month . I 'm afraid I ca n't finish the mition that my manager / boss gave to me on time . Yesterday was a Ssunny day . All of a sudden , it started rainning hard . Personally , I think these girls are ridiculuous and their attitude towards life is too childish , it is so stupid to copy someone 's style ! So , returning to England , I can say it is a nice country with excellent traditions . In Japan , many flowers strat blooming in March , Spinach Salada . There were two Myanmars and one Itarian in our group . So I have my moments where I 'm too carefull about my words . Yet , I feel an invisible barrior which prevents me from posting my compositions . I was surprised . I thought to myself , in this town , how could one possibly gather 8 unintersting people ? ( Except for me , of course ) But every time , I ended up dissapoint like today . I had an appoinment at 9 : 00 in the morning . And I need to ues the money in the right way . He is the most enthusiastic and enagetic person I have ever seen . But once I tried to speak , my tung was twisted ! Fact : I went to a univercity and measured my maximal oxygen uptake during running . They are second - hand Timberland tracking shoes costing 15000 sillings . Also , many people say that the adoptation should only be allowed to heterosexual couples because children could be confused in a gay marriage . Many pepople think that they are one of the favorites to win the World Cup . Some weeks ago , Japan lost to Corea . Why do young Amrican people say ' I love very very very crazy about him ' in real English . And I also want to tell my other friends if you feel bad about your body , go to hospital immediately , donn ` t wait . We will talk about many things today and have dilicouse food . Too dificult . Being honest Should be our obiligation in whatever we do . But the realiy is not allowed us to choose right decesion . There are so many things in the ( wourld ) . , , , , , , , , , , , , , maby . He tugged onthe rope and pulled the bucket free , leaving a hole - a hole in the water ! The young couple married with fairy 's consent and lived happly ever after . How grolous it would be . I ate a hamberg . I immeddiately decided on what I should eat . There was a picture of a delicious hamberg on the menu . I ordered a hamberg and it came at once . I would not feel better if I had been eating a hamberg for a long time I was excited and full of convidence . I was n't until I found my driver that I realized I had left my backbag at the security checkpoint . The next day , my cousion met up with her classmate at the World EXPO park . I had to get up eariler to helped her prepare . Althogh , I have to take two pictures of myself , I have n't prepared yet : ( When I was 14 ( approximativly ) , I watched one of my first serials in English . It was `` Charmed `` , an American serial with 3 witches . So embarrasing The class teacher wanted us to have a discustion with a classmate . That 's so embarrasing . First , when I wanted to buy some street food or drink I always used the fidex and middle finger to show I needed two meals or two cups . But they would show a thumb for one and the fidex finger together for two . They were allowed to smoke in restaurent . I talked on Skype with my friend who lives in Tokno now . Although I wrote a related aricle before , I still think this topic is hard Analyze : SWOT for Yes ( For SWOT ) Analyze : SWOT for No ( Against SWOT ) 3 ) O : Everything still remail the same And I did n't know that a Tunami has so much power . Why were the Tunami 's waves so much higher than expected ? ( predicted ) The winner can go to a Korean Univirsity for free . In the afternoon I went to the palce where I was supposed to learn to drive , but the driving instructor was n't there . For privacy , my brother is teaching me to drive at nighttimes , and we paid Trying to learn to drive a car is so dificulty , becuase it is about keeping safe in traffic . We ca n't learn English conversation from either a proffessional fureter . I hope all of you have wonderfull days in 2009 . Christianity in the US acctually supports the Republican party in various ways ; the party which love guns and wars rather than helping needy people . I 'm going to find a frend so that we can help each other learn languages . Sometimes we get free tickets and go watch the other shows which are being performanced Las Vegas . He is greate as well . Recently , many unlcuky things have been happening to me . rotaion this year , mailed me and asked me to report next week . I went to a flea market with my frined yesterday . Silvano was so patient wih me . For example , I read articles on the internet or in a newspaper , listening conversation in a website for English lerners . I help you improve your Korian Furthermore , now I am interested in Japanease . I will try to write in japanease in one day . Though I expexted Miami would win , Dalas won . So we feel very unfortable . We are chollege students . There is no need to warn us to be carefall . So you can imagine how limited we felt when we had the tercher following . It 's verry good news . I hope they will be rescused quickly and will stay alive . Actually I stayed with them for about only one month but I am hapy being their friend : ) What a CRAZY bycycle ! ! . Noisy politicion 's public speaking 2 As you know I do n't like politicion 's public speaking , but there is one politicions that I want to hearn and that person is Junichiro Koizumi . Now Tarou Asou is president who is known to give a fun speach . Well , I 've just now registrated to this site , and due to the excitement , I 've decided to skip the next lesson , which is PE ^ ^ Today is the `` Setubun `` celemony . It is the `` Setubun `` celemony in Japan . I wished for my family 's good health . `` Setubun `` means `` the day before the beginnig of spring `` in Japanese . I finished my luch I felt deprsssed beause of the weather . I did not exercise beause of the rain . I 've just finished language school and started colleage . I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( It 's very frustrating and I 've been wondering if my Emglish is getting better ! We had a conversation for about 15 minites . She can speak Engish very well . Her English is probablyalmost perfect . not again , oh my godness ! I 've only met a fewJapanese people who can speak a certain degree of English or Mandarin , but on the other hand there are lots more Chinese bilinguals in Sydney . At the end of the lesson , my tutor encouraged me by saying `` You can do it , you already have good English skills . After you go to Singapore , you will probably have many English questions , but you can ask me anytime throung the Internet . `` I 'm really grateful to him . I want go , so I have to improve my English skills immidiately . But it seems to measure spreaking skill , listenig skill , writting skill , and reading skill . The tuters are students of Phillipin University . Just keep stuyding . It 's the only way to make my English good . I was surprised that lots of foreign people were visitng there . I have to strat working tommorrow ! ^ _ ^ ; I did n't know why , but I had a sexually transmitted desease and everyone invited me to hang out . They are related to death like euthanasia , patient 's right to know about their terminaly illness , cloning etc . It 's a very contravercial issue even for native English speakers and actually it does n't have any answer . Like Tsunamis , earthquakes , tyhoon or meteorites ? It will be a center - exam of Japan tomorrow . Today the movie `` Summer Wars `` was browdshowing on TV in Japan . It 's too broublesome ! My sister and I made cookies yeaterday morning . I made up my mind to listen to English songs and watch English moives . Suan falls in love with him . News that an intruder had breached the security of Wisteria Lane spreads like wilfire . I borrowed it from a frend who likes comics In Germany , a genius Japanese doctar Tenma had seaved a boy 's life by operation . Unfortunately , Johan was agenius who can think of killing without siginificance to human life . Tenma learned about the facts , he felt that hewas responsible because hesaved Johan 's life when Johan was childfood . MONSER is one of populer comics in Japnan . I even thought anything would do as long as it wsa a kind of living thing . Recentry , I 've been very very busy . So I want to see a lot of my faborite movies and spend time relaxing ! ! to sucseed in the event . . . . I went to Creer Prospects in International Business last week . Omgsh , this morning was awefull ! I was soo hungry that I could hardly see ! I had taken my antibiotics but I was in such a hurry that I forgot to eat something , I tought I would buy something once I arrived . In geography there was the rivality between China and Japan , or the French economy . I chose Asian decolonisation and the rivality between Japan and China . I tought , did I really go through this much trouble ? Last day , it was rainning day , Within such a short span , I visited Wasgington D . Know Now I can understand the teacher in the Foundation , becauseBrendan helped me a lot in litening . After I had to go back to my univerisity and wait 1 hour ( until OR for ) my next How can I trnaslate this ? But my vocabulary is too poor to traslate the meanings of this . In that class , I learned about a strainge concept : that perception is not the re - creation of reality but the constructing of an image . Furthermore , the illusion of sight is the resullt of the brain 's activity . The Professer said that the brain copes with information from the outside through sensory organs , and makes the image , which is easier for us to understand . Therefore the image I 'm seeing is not the real bojects but the image constructed by myself . The poor gamer 's budy days . I saw my younger sister reading Horry Potter this morning . I read that noval a long time ago . It was very magic and redicious . Befor semester , I joined the magic clob in my university . I often listen to the alubm `` In My Own Words `` by Ne - Yo . I am lonly . ( I feel lonely ) Becaused of work , I have been working over 12 hours a day for mabe 2 weeks . It 's really very exhausting ! ! The weather was a little bit hot , but I could conmplete the play . My socore was 91 ( 45 . 46 ) . However , my listening and speaking are still the same , and I tried to improve it by listening to music with lyrics and watching movies with English subtitles , and I have a lot of friends from diffirent countries , and I speak with them a lot , but I still have some problems with explaining what is in my mind . I 'm the engeneer in the manufacturing department . My faborite musician is Kobukuro , a famous Japanese band . Whatt 's up ? Besides after school lessons , most shools let students play there until around 6 P . These boys kept threantening us . Busterd : `` Hey I am asking you , do n't ignore me , do you have money ? Busterd : Huh ? Busterd : . . . When I prepared to fire it , the wind was so strang that I could not do it with a lighter . When I was reading Newsweek magazine , I came across the following sentense . Of cource I did work on lerning English in other ways . Now , English is very important to me because I need a jod and money . If I dont learn to speak englisg , I wo n't find the job . Fireworks are to be held tonght in my town In Japan , on the 29th of April it was a pubulic holiday . That was the Enperor 's Birthday Showa . One cup of yogurt , two cups of milk and one tea spoon of haney . I lost it last thirsday in Tokyo on my business trip . Many reserchers argue that due to the genetic similarity between humans and animals , experiments can help us discover the cure to fatal viruses and diseases . So I went to the school for the first time by bicycie . I 'm interested in foreign countries and their culcures . I do n't use English in my ordinaly life , Yoy know Russia is big . Next , the phone was taken by another classmate , he told me that he really thinks that I should talk to the teacher to see if ther 's anything I could do to fix it . Because I did n't do the porject well , and my final presentation was not okay . Ohhh , what a relef ! So , I hope I really can help her and teke care of her . Fistly , I want to meet with my friends from high school . Secondly , I have to wriht many letters called `` Nengajo `` . I have not wrihtten any Nengajo yet . There are more than 100 letters that I have to wriht . An Eectronic dictionary is a tool for learning English . It is just a machine that is use for translation , and sometimes it is not a percise machine . ( It was my homework , please figure out the mistakes in my composition . ) It 's really intersting and I 'm having a Charry blossom viewing party on April 5 . But we have n't decided a pleace . I 've been stuying english for something about four years , but still having difficulties with the language . I started stuying english because of my parents . In a first momento I really hated the idea , English was terrible to me . just another thing : I started germain classes today and I 'm really loving it ! However , I will try my best to write more eassy here : ) Unfortunately I lost my wallet and I looked for it for harf an hour . It was really exciteng and interesting . I went to a desert island and ate a lot of crab and shirimps ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! Wao ! ! ! I will write dialy as much as possible . Please help me studing . He was totally exausted so he was sleeping when I called . Pleasseee be My Friend and teach me English . However , people often say to me `` You look like a half - beed ! `` I think that 's because of my brown eye color , but I 'm a natural Japanese . I need to wake up early tomorrow because of my frined 's part - time job . My wife took me to the `` Cirque Du Soleil theater Tokyo `` for my birthday present . The theatre is near Tokyo Disney Land . It was built especially for the famous gloup , Cirque Du Soleil . During holydays , I sometimes play analog games with my friends . Tom Chruise acted very well . I don ` t speak English because it 's very diffculty . I think I speak very good englsih , but I don ` t really - when I meet my friend , we only say ` hello ' and ` hi ' . Today , I woke up at 8 : 00 AM , drunk cofee , watched TV . When I write a diary entry , I read vocabllary books . Do you know Nagano ? Do you know Nagano Olympics in 1998 ? Nagano is a famous plase . For Forexsample , Zenkouji ! It is a very old shrine ! Would you serch the Internet ? It is a very big shrine ! In 1992 , I went to Thiland to meet my famiry . I am part Japanese , Thai and Chinease . My older brother lives in Tailand . Labor Festvial is a big holiday in China . At college I have a lot of time to study and play with my classmates , but we are not always togther . Today my math teacher told us about Furby in the class . He feels vexed so he forsed it to eat ( by touching its tongue ) even it when it says `` I 'm full ! `` . recently , I have become interested in Korean dorama . But evetually I got throught it and we made dericious `` Japanese mugwort rice cake `` . In the middle east of Asia , they 've had a truce between Isralis and Palestanians . Hallo ! ! ( Hallo is German ! : P ) Till now , I think that difference betwwen ' see ' and ' look ' is whether it includes actor 's purpose . It 's elegant and gorgeous , I 'm paracticing often : ) If you 're sick or get wound accidently , that means you have to spend valuable time during the day waiting inside of the hospital . There are so many trobles in our life such as family , friends , love and so on . I 'm confiednt of my ability to work for myself . I love music ang watching movies . What is the difference bewteen them ? I know some of them pretty well , ' cuz they live my labo . ) `` The proffessors have the title ' Prof . ' , we put Prof . So I asked them to put the tilte `` Agent `` . ( Wie soll ich die umlauten schreiben ? ) They were in the same stuation as me of having a hard time communicating with Australians . I finally could communicate with Australians because I got uesd to and gained confidence in my English . I have enough money to go to Australia but I am a litte affraid of the swine flu . Swine flu has prevented me from to going Austalia . . . . We enjoy trips during vacaion . What are your school assaignment like ? How long are your essey ? I 'm not as fascinated of it as she is ( it would be difficult : P ) , but I enjoy beatiful paintings from romanticism and photorealism . Please correct my English with the propriate words . My friend asked me to write a draft to ask the university in Carifornia like below . I have not confirmed that my degree is eligible to enroll in your school and sit for the bar exam in California , howerver , Hiroshima University is one of top Japanese national universities . As for wiriting essay skills , I 'm planning to receive support from a local English school in Japan and I want to try to polish up my writing skill enough to pass the bar exam in California in the future . I mean I prefere autonomous distance learning , is that an option through your school ? Thank you for taking the time to answer my questions , I realize that my English wiriting skills are poor For our honeymoon we went to Torkey . This was the first time I went to Tarkey . Farst , I went to Istanbul . I thout so . I was surprised and also shooked to hear that . Like Brundi ? , Singapore , Korea , and also Brazilians from Nagoya orefecture , ( There are a lot of Brazirians in Nagoya . ) and I was very happy because I could get to know them and became friends with them . They are so carm . The Brazirian are in high spirits and I were happy to be in each other 's company . I admit I had overslet one time . . . Just one time ? I 'm always nervous when I have to speack in front of many people . They 're sitting there straing at me and then I forget what I have to say . . . And thanks a lot for cerrecting it . . . I 'm going to live with a guy from Tiwan this momth ! I can live with a guy from Tiwan ! So , football could be world wide sports compared to other spoerts . I was so shocked because it was a tortally misunderstanding , so I explained it carefully , but she still did n't calm down . My careless behavor might have upset her , but I thought the focus of her anger was not the main subject we were dealing with . However , this earthquack was too strong and brought a 10 - meter - tall tsunami . The earthquack was 8 . 9 on the richter scale . The biggest earthquack in Taiwan was just 7 . 3 and it made us lose a lot . It 's hard to imagine what became when a 8 . 9 earthquack and 10 - meter - tall , 3km per second tsunami happened at the same time and the same place . If it was in Taiwan or if I was a Japaness , where would I be or where would I be standing now ? It 's rainiing sometimes , but the next day the whoke world becomes so green . It 's wendy today ! But sometimes it is a little hot and wendles . We chose classes by cumputer . We needed to remember the class number to choss classes . For a long time , I have n't logined into my account of Lang - 8 . Two shoolboys began to play agame to warm their body 's . I took a trip to Tokyo Disny Resort with my boyfriend . hello everyone , today is my first time to use this webside . I found this webside to be very useful . I 'm 20 yaers old . They speaks English fluently , but his boyfriend especially has a maevelous talent for languages . like spending time in domitory ( sharing room with friends ) , playing seasonal sports and learning about other cultures at that time . That 's why I dicided to write a diary or something on `` lang - 8 `` . Recently I 've watched ' Star Trec - Voyager ' to improve my listening skill . But my English teacher recommended me to watch ' Star Trec - Voyager ' because the actors and actress speak clearly . I want to write entris on the trip to Malacca , but I do n't have enogh time to write . I will be glad if will you correct these sentenses ! It seems like I 'm writing mothly journals repeating `` Long time no see ! `` The connection to the web browser is in VERY poor condition inside the dormitory where I am , so it 's difficult to enjoy web suffing . My old PC is borken , so my mom bought me a new one . Doing volunteer work that helps some exchange students to study Korean , I realized that Korean grammer is too difficult to learn , which make me wonder how I learned Korean without any difficuly . He came to the university to receving that costume from the store . So here I 'd like to study techical English and make new friends ( fram all over the world , but it seems to only be a dream ) . He corrected it and tought me about the word `` appointment `` . We are going to buy some somthings for her and go to northern Thailand to congratulate her . It has very widly & beautiful scenery , and the food is more delicious than anywhere else . In particular , the seafood is delicious . I read in the news that sushi is a popular food around the world . I will take the chnce to eat sushi when I go abroad . Each of them got a prize at the photo contetion for tram cars last fall . Actually Roh - bai is not the same as Ume but very simular to Ume . Japanes like Ume fully blooming on Februaly after the Roh - bai flower fell out . However the answer was `` no `` so I opend the door , but middle aged woman in green shirt was sat down on the toilet . I interviewed in Tokyo last Tuseday . Anywey I do n't have a lot of time to live in Korea . Today , it is a beatiful day . In Japan Saint Valentein 's Day is the day for men to present chocolate to their lovers . But we did n't have a Christmas party recentry . Have a nice Cristmas Eve ! I sterted the Twitter . It is an action movie about the conflict between Betman and the Joker . Betman represents justice . Christian Bale plays the role of Betman and Heath Ledger plays the role of the Joker . I had been doing nothing but sutudying for my university entrance examinations for a whole year . Then , this spring I tought in this spring `` I shoud work ! though I had been given a scholarship untill I dropped out of the university that I had been at before . Today , I thougt that money is more precious than ever before ! Many of the people who gathered at the park were holding flowers to show their sympathy for thos who died in the massacre . The last three problems were really covoluted . the following sentece . . . Today my coworker tald me about a Korean singer . I also beleive in Chinese fortune - telling as well as Tarot cards and blood types . For me , I live a life with a contradiction of modern technology and the old - fashioned ancient knowlege . I plan to go somewhere to see the cherry blosom . ( But they are n't canser ) I have had some chenges lately . Fitst , my spoken English is very pool , so I think I should speak more with foreign teacher . I should also look back the old knoledge . For this exam , I must have a good grade , It matters my Englishe Band Four . I 'm so lonly , because he supported me . He said `` Let 's cure th illness together . `` I 'm so lonly . So I hope some day we can meet again in heavn . That year , The Sydney Mornign Herald and the World Wide Fund for Nature conceived the idea which was observed / celebrated in Sydney as well as in some other Australian cities , followed by other cities around the world . Because I inted to change my rooms interior . Recentry , I am interest in Northern European kid 's room interior . Recentry , I am interested to go to Korea , China , and Europe ! I 've been to Korea , Singapore , NY and Austraria . This is my very first dialy , I 'm quite lazy , but I really want to improve my poor English so I 'm thinking to write every day , , , , as much as possible , so please check them ! If I keep using my iPhone like that , I 'll develop bad helth . But actualy , my iPhone used me ! Please give me some agood advice . Drinkong an alcohol beverage ? Riding a creazy ride at an amusement park ? What about taking a bath in hot bathturb ? You may pass out due to the creazy hot , spicy taste . I 've decided to travle around ( in ) Europe when I do my masters degree in the UK . Among these , two of them are Safco Field and Yankee Stadium in America . My grandfahter cut the rice plants in large quantities with a reaper ( photo 1 ) . Apart from that , I can amuse myself because these days cI have a bad mood . I was really disappointed in myself and feel sorry for my parents coz I ` d been studing very hard for the test and they invested lots of money in me , like hiring a private teacher and letting me go to cram skool , but I still did n't do well . . . its a kinda english test with 4 sections : spearking , writing , listening and reading for people is who are studying english as a second language . I dont feel like studig anymore . well the test score realy discouraged me . `` Likely I will continue , `` another person said . `` Cigarettes are part of my life and I ca n't abanden them unless I die . `` In Japan , a lot of resterant are starting to offer hot pot dish . I found this website on the enternet . Please collrect my sentence if I make a mistake . Some exparts say that a lot of natural resouces have not been found yet and also it will give us the opportunity to start business ! ! Hoding your hands tightly , my heart would burst into fragments . I have been working for 1 year and I have learned a lesson - I lack of counage , which is a disadvantage when I was doing work . But many times my friends have told me : `` You do n't look like the ( conservative ) kind of person ! `` Becuase I usually take it easy when I 'm with them . Life sucks without true love , and I msut learn what should I do to find the zeal for my work . It couses a thunami . What do you think about this catostrophy ? In short , it is okey that we use 2000 kanjis . I am reviewing the German cultur NYC is a very very exciting , amezing , beautiful city . Comming soon ! ! ! A few hours ago , I read an article about Winston Churchill who is the most famous prime minister in Britsh . I want all the friends have a happy time in this lovely internation social network . Please be my freinds . My car has a sheet of ahes on it . For example if you do n't take Math or Biology you cant go to medcal school ( I dont wanna be a docter or surgeon so I want to drop it anyway ^ _ ^ ) . Well it 's a difficult decision but I have plenty of time ! Because of this , I 'm sing have less opportuny to study . I want to recover my diligence without rejecting my friends ' imvitation . My favorits Today , I will write about one of my favorits things . Comiket , Comic market or KOMIKE in Japanese pronounce , is a kind of market place dealing popculture andit is theworld 's biggest festival for amateur artists and manga - fans . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into living room , and she said that some blak object fell . It was so yammy . After I have finishd the class I will ask you to join and learn Thai with me there . Why can foreign peaple speak Englsh ? I conceal my feelings and emotions uncousiously . Also my wife and I have a bit of the cold so we are taking many vitamin C saprimment . We had having a special couse menu as below , Of couse it was very delicious . Although I didn n't know exactly who he was . Where I work , there are lots of real bilingals who make me envious . my englisg is very bad , I need to learn it , very fast , some ideas ? Do you knou `` Fantasista `` ? Futhermore , ecotourism , whose business takes advantage of the wilderness , may have harmful effects on it . I love to exesise . So I descided to do some exesises for my helth during summer vacation . The course for students is inexoensive . For this reason , I discided to use this gym quickly . My body will change in thie summer when I keep training . Thus , what I shoud do is to get used to the current life and rhythm . It is so confortable that I am not willing to wake up . Many of my friends spend a lof of money going to a cram school for English . But to be honet , it was totally funny and fun . haha . I sware to read English everyday . I sware to read English everyday , because my English is too poor . It 's embarressed me and I noticed that it 's time to improve my English . . . By the way we went to animal hospital to vactinate my ferrets . I ordered a ticket to Arch Enemy 's concert through the Internt but I have n't gotten an email confirmation from the company . Acutually , I knew that already but I wanted to study etymology anyway . Today , I had a three hour lecture on political science , amd a theree hour lecture on world histry A few days ago , I started to translate Machiavelli 's `` The Prince `` from English to Japanse . I feel as if I 'm decoding a cipher when I translate . Well , I do n't know if this comparison is right . `` What does this sentense mean ? `` I repeatedly think and imagine the meaning . It is very cothic and makes me think about ghosts . I was taking some photos of the church iyself , and of me next to this church , but this photo is the best one for me becouse it creates jouful emotions in my soul and heart . Let 's write about Joni Michell , one of my favorite musician . The occation of the first meeting to her music was in my boyfriend 's CD rack those days ago . A musitian and a painter . My mother took us to the station and I took the trin . It was lovery , was n't it ? ; ) There were many stands there that sold vgetables . Past tense . The street there was made of blicks . I think I lack knowlage and reading books would help me create my own idea or anything . I had finished reading `` Wuthering Heights `` yeaterday . Althouth it is a small and characterised by its long heritage , Yangzhou is flourishing and becoming more and more flourishing . An industrail park has been built just beside / next to the old town , where many new high tech companies are booming . When people realize that they can develop careers in small cities , large cities like Beijing and Shanghai may be relieved of some burdern . I run every night to reflesh my body and mind ( ? ) . in order to reflesh my body and mind . Back then , I always ranninng before dinner . I only have a datebase in my PC . After that , I did my homework til 10 a . m . After doing my homework , I started cooking and had lunch with my roomate ( s ) . Yesterday , I had my withdom tooth pulled out . The exam on history of Rossia was very difficult . I expect a lot from my new life at univercity . This is a foto of my class = ) ) ) Only girls as you see = D We eat grilled beaf , chicken and vegetables . I have studied English for eight years and I usualy talk with my friends in English . So , if anyone would like to teach me proper phrases , I 'd be most apreciate . First off , I went to headquater where I got heartwarming welcome from all the people on the staff , including the section director . Maybe this is commom sense but it always annoys me . . . I saw three other cruise ships thet were different to yeaterday . Prime Ministar Members of Hatoyama 's cabinet were intruduced in today 's newspaper . He looks earnest and persivering . The economic bubble burst suddenly , and that effect spread quiculy all over the world . From his official web site ' HIFUMIYO ' , he has traveled to many countries , and seems to have become a socalist . He criticises capitalism incisively ( particulary in Amrica ) on his site . I have been studing English for about 5 years , but , it has not worked . I 'm trying to learn gramatics , words , etc . Everyone 's help is welcom ! Because of th school garden party , I teach undergraduates Arcitecture at my university . I teach Descriptive Geometry , a kind of drawng . I sometimes use some pieces of paper or solid models which I made for them , beause it 's hard to describe things somtime by only speaking . I jogged only on the weekend , but I think it has a little effect in decrese my weight . It 's been so long time sice I wrpte sonthing the last time . Please crrect my poor English sentences . The daughter which will arrive first of all will arrive early next Tursday morning . I think I only enjoy being with them such as rioght now . The Japanese landlady was going to England to celabrate Christmas and Ner Years day with her family members and husband 's relatives . Deschanel one of my favorite actresses . I 've seen an aquaintance use this phrase before , but I was n't able to understand the usage . To enter that high school I should get a good grade on this midtern test which is next month . I am looking forward to hearing thier new sounds . Despite embarrasing , the Russian people , who get by in foreign languages , pick them up with a great pleasure and are ready to help you find your destination . At last , I finished writting about my last Seoul trip . But she really likes Enlish , and speaks almost exclusively in English . Unfortunately my school field trip has been postphoend . That trip is sceduled to go on Ang . So , It may be all diffrent . And , I encountered whay I feel cute . ( not meaning sexually ) I drank orange juse . And it ` s gon na take a few more minutes for us to neally clear up our heads . I should have eaten a balanced diet with prenty of vegitables and gotten some exercise , but it 's too late now . Hope that I will be admitted to the HUK . I 'll watch ' THE PRODUSERS ' next . Yesterday , I went to two museums : Quai Branly Musuem and Paris City Museum of Modern Art . This is my favorit movie I recomend you go see it . Now I 'm faced with the prospect of studying alone abroad within 2 years , without hearing my familiar mothe tongue , without my boyfriend or friends , and maybe becoming overweight and lonely . She said that `` I ca n't walk a step , not to mention running , cbecause my Ipod has n't been charged `` . Meanwhile reading professional text books written in English is also in my schedual . I think my ability to write English is worse than before because I did n't any write journals in Engilsh . Of cource the same goes for German . Ah , they were very strict with me growning up and , um , I used to have to sit at the piano for hours to practice . Ah , when I was younger I , um , bresented my mother for this discipline , but when I turned about eleven years old , I was very grateful to her . I was probably better at piano than I am kown . You can see there are a few books but a lot of wood meterials . Not only humman being but , also animals too . but I know he has such kind of charactor . As for me , I always use English - Japanese dictionary and trancerate to Japanese because it is the faster way to understanding what is the meaning of words . Please judge this sentense . It seems very crazy . When I play majon , I get a lot of money . in other words , I make moeny . The reson seems bad . Could somebody think of adjectives which do not have superlative nor comperative forms ? One of my favorite English teachers wiil leave the school at the end of next month . Hello , evryone ! We met my friends cusin and her friends in new york during weekends . We were able to stay at her cusin 's friend 's hotel so we payed less than the usall cost . when I see more things I often feel that I could contral them . What ( Which food is famos during the winter in your contry ? ) Helo , People please help me out here , sometimes I have mindsome doubts about how to use the words ( up and out ) after verbs . For example : clean up , check out , coming up , carry out , etc . ) I do n't know how to explain but sometimes I ca n't understand the meaning of the words that come ( up and out ) after some verbs . Can you guys tell me ? Our hula impressed many sinior very much . Above all , `` Heal the world `` by Michal Jackson was surprisingly asked for an encore ! I was always flitened when I heard this music . FUJIYAMA is a rollar coaster . FUJIKYU HAILAND has lots of rollar coasters . I do n't like rollar coasters , but I went there with my friends . It 's called Rarmen in Japan and is very popular . Rarmaen has many flavors . They are soy sourse , soybean paste , salt , and tonkothu . I like tonkothu the best , becauze it 's poplar in Fukuoka , where I use to live . Tonkothu soup is made from the poak , and the taste is rich . The last Japanese food I ate in Japan is tonkothu rarmen at Nagoya airport . My sore throut was cured , but I have a hadeach and a fever . Are you familiar with Riverdance ? Riverdance is an Irish tap dance . My sore thoroat has not chonge . The hero in the story is n't the typical character in korea dramas . My hobby is watching Ameican soap operas . Watching Americna soap operas really help me to study English . I 'll watch ' Desperate ousewives season 3 ' , next . I 'm travling Mie now . Trick or theat I want to know if this is a correct sentence or incorect sentence . But I am Istill waiting . So , I want to go abrod to learn how to prepare foreign food . Charo is an Eglish learning program by NHK , a Japanese broadcasting campany . The radio version is little bit longer and more difficult because it has more datails . The cartoon and book are good for me and my daugther . When I get tired of studing English , I just listen to the story . That 's why I believe It is the best brogram . Now I 'm watching a football game , and I 'm reluxing . It was about the ages from highscool to university . I basicaly agree with this thought . I 'm very busy everydey because I 'm preparing for Koshosai . Would you correct my grammer Please contact me , and beaome a friend . I wonder if I should update the farmware of the wireless router . They were delicious and awsome ! ! I have a long hair and blue light eyes . I 'm tall 1 . 63 cm maybe ; my fisical is normail - thin . . . bhe I hope to learn something from your corrections . . . Vangard Princess He is a MacGyber . This week is the Buddist Lent and get one day off on Monday . I 'm currently on matanity leave , since Sep 2009 . I love steaks so Australis is HEAVEN . I know some of my frieds work about 14 ~ 15 hour day . I went to the 2010 Iwate Art Festa at the Iwate Prefectural Art Musium , with my friend . I got the pen and a postcard at the musium shop . I have meny hippopotamus goods . Mid - term exam day , family 's birthdays , writting contests . . . This year , my mom wants to get an eletronic bible . life consists of many trivias things , and those things built up life . I bougt it a few years ago . But I had forgitten I had bought it ! Last night , I notice the card and I trid it . The card was wtitten in perfect message for me . I wrote many New Year 's cards to my friends and relitives today . Here in Japan , New Year 's cards are really popular . On the other hand , Cristmas cards are n't as popular . You know , it 's the most famouse American animation . We Japanese speake English , I hear like Words of Space . I 'm so exgusted , I just finished teuk kong mu sool which is called martial arts ? ? ( I do n't know how spell it , , , ) I had highking on my neck by the guy who is 5 years youger than me , , , I think that forigner are open minded to everybody , so I can make friends easily . Now I 'm learning English and Polish at the uniwersity . Unfortunaly , you ca n't understand the [ useful ? ] of the song if you do n't speak french because the lyrics create the [ variation ? ] ( but listen to it anyway ^ ^ ) . Everything in the outside world was scarey to me , and I could not move at all . He is 9 years old now , and still bilieve in Santa Claus . I must change to Sant Claus in secret at midnight . Lately , my parents always conplain about my learning schedule . I feel jerous ! A screw is dificult to take off and took about an hour . There were n't many biycicls . A lot of big and high bildengs were there . The hotel we stayed was gorgase . Then put in the backpack and we climed the mountain . And in the tarin I came across a man and he asks me what train Jhon got on . What I came up with is , `` ( Jhon got on ) The train earlier than this by two trains . `` Does it make sense ? I recieved a telemarketing call today . Nowadays , I recieve them evry day . I have n't put my coat away in the drower yet . I 'll sleap now . Janualy 14 ideal : What 's the ideal educational style for Americam people ? ( for ? ) basic : I thought I needed to study basic English grmmer . Funish ! : D Otukaresama Everyone ! XO ( btw how do you say Otukaresama in English ? ) Unfortunatelly , this weekend was very warm , spring is coming early . It cosisted of two parts . In the second round , Manny Pacquiao , the pride of the filipino , K . Yesterday , I read a documentaory about the `` blood diamonds `` or `` conflict diamonds `` The diamonds which from the civil war countriy was called conflict diamonds , or blood diamonds . But in 2003 , diamonds company , civil society group and governments around the world began an effert to stop the trade in coflict diamonds . The diamonds from the civil war countriy will not be sold in the international market . Although there are many illegal diamonds traders , they bought the coflict diamonds . Because it is the frist time that I went on a trip with my boyfriend , I was so excited . If you visit KOREA , I strongly recommend visiting geo - je - do ( there are many fasninating spots ) . I have to preapare for the class and I have new students whose names I should remember . April or Spring is the time when I 'm very busy worring about a lot of things . . . . So , I would like to be find a lanage exchange partner My owen dream acrooss the sea . I and my friend went to nearby lake and we swam and walked in forest : ) There are many trees : D and it 's green and brown : ) At this lake there is a beatiful beach . We think we want to stabilze our salary . I think companies have a responsibility to stabilzing our salary . I have to work until at 6 : 00 and than I going to the English Academy from 7 : 00 until 8 : 00 and then I will go take care of my daughter at my mother in law 's hause . That will hel him / her cultivate the ability to concentration . I am not the kind of person who would want to be a professional housewife ; however , I feel happy every everytime I make the house clean and tidy . I felf very tired and stressed , but it was very interesting . That 's suprising is n't it ? ' A person whose neme is written in this notebook shall die . ' deu to the movie `` Notting hill `` What is cultural ? It is defined as the civilization and customs of a cretain race or nation . How can we aviod it ? It 's easy to assume that there must be a scramle and I 'm not used to doing things like that . I love The Stiff Dylans ' ver . Readin practice What a stupid introduciton lol . It is really difficult even for me as a native Jaapanese to get used to it . to begin as a beginer but I just wated 15 minutes . Hi = ) ) ) I want to comtiniou my favourite dorama list ! I was shoked so badly after I watched this dorama ! Ok , to be cintinued . . . = ) Yestoday , a T - shirt was enough . Before I go to bed , I should prepare my bedquilt . If I do n't , this evening I wo n't sleep well . Today I recive 4 clothings that I bought form taobao . He diagonize him with a cold . He is crancky , so I have to hold him all day . I started learning the use of the Excel apprication on the first day of this month . I spent 9 months in Machester with my host - family so they 've become like my real family ! Just went to the gym , and as usual I am woring now . Go straight along Peter Street and take the second turnig on the right . Then , turn right and go along the road until you get to Picadilly Circus . I had a lot of nightmares last night , because I watched the horror movie `` ghost ship `` befor going to bed . And I 'm a biginner in Chinese . Now I 'm taking calss called Children 's Literature . We are planning to repaper the walls , redo the floors , and chage the cabinets in the kitchen . It 's named Bianki . Bianki is an Italian maker . What 's the differnence between them ? `` Gheimeh `` is a kind of `` Khoresht `` ; `` Khoresht `` is a meal that consists of meat , vegtables , and beans or grains . Becuase of this use , some people called `` Gheimeh `` a dead people 's meal . In the next stage peel and cut tomatoes and fry them ; you can also cut some mashrooms and a green pepper into small pieces and add them to the frying potatoes , then add salt and red or black pepper to the mixture . First of all , spring semster has come and I 'm taking some classes , However , my speaking and writting socore wasn ` t good . My colleague 's speace was so impressive . I ate Ayu , rever fish in summer , tofu , waite beans and sashimi . This photo is of a place where I usualy go fishing . These raboratories contents have many subjects and they are hard . I have just finished my SPM which is the exam that must be taken by the 17 - year - old studddents . After that , some of my friends are goin to persue their studies in colleges and universities . There were los of friends ^ - ^ When my room is tidy , I feel more enegetic . Today , I counsulted the agency who are involved with students studying abroad . The counseler said that it would n't be usefull to study abroad for only 2 weeks . I stay with an Itarian family in Canada . Refernce book I Bought shose . I 've alwalys wanted to buy shoes to wear for spring . I bought songs by Ann Triskel at the iTunes stoer . whithout a title Can it be insteresting ? But the Tenprature was terreable , Becase summer starts in a week . When we arrived at the aquqrium , we were very tired We are not given any time for debet or questions . So he is not populr with students . A month has passed since the big earthquke has hit Japan . All we can do is to keep doneting money to them and spending money to buy goods from the regions suffering . When someone ignor me , I 'm hurt . I think being hurt is not bad , it 's sometimes neccessary . A hot day ! The tempreture is 35 degrees . How I wish I can stay at home fowever ! If I had enough money , I would buy many bags and clothers , but I didn ` t have enough money . Beacause I must save a lot money to change my car . I have stayed home almost every day sinse summer vacation began . . . I 'm an entorepurenur in Japan . Someo people use their real name and others do not . After a short walk in this round market I went to a coffee bar to get a coffe . For example , Naruto , Keroro Gunsou , evangerion . . . and more . I downloaded Merriam - Webster dictionary , English magazines , and an Engliah word book . Then , I came to the conclution that I am experiencing difficulities because of the difference in cultural background . Althogh it was the first time we had made one , it took us only thirty minutes . 2006 Completed Japanese instructor course 420 hours at Hirohima YMCA 2008 Had expericence as a Japanese instructor in Melbourne When we borrow money for someone , _ we should determine to pricise date of repayment . `` No smoking `` signs surroundour daily dailylife as we walk in the streets , shopp in the malls , travel on buses , or watch movies in the cinema . I 'm so sorry for not being as active as the past weeks here , but I truly am busy because it 's one week left to the Persian New Year ( nowrouz ) . People get really really busy from about two weeks before novrouz to two weeks after it . I went to the Mational History Museum on foot ! The police said , thay they evacuated the houses of two old men . In English class , we are reading an essey which is about the moon 's mystery . When it is near the holizon , it looks bigger than when it is overhead . So , we get impression that the moon is big because its real size is begger than expected size . Because I am not satisfied with my circumstances or myself somtimes . During the test we needed to read an article and answer some comprehesion questions . I think the context was too sophisticated for me ; like `` message from the cultural elite : reas , you morons , and eat your spinach while you 're at it ! `` My friend saied I did not understand because I do not know thw American culture and it 's kind of a joke . I am quite excitied to have my own lang - 8 username . * * * Dalian is a beautiful city with lots of delicious food , pretty beaches and warmhearted peopel . I got a used notebook computer to study the structure of the PC from my friend , but it 's broken . It was heating geradually , and the operating system was shutting down repeatedly . I have little experience dismantling PCs , so I do n't know what to do . I have to buy books to study . However , I feel sad because I am going to leave my school that I have stayed during five years , and I miss the people and everyhing that has happened in this school . I aprreciate the memories and the wonderful favors in my life . I think the second way is the most sutitable for me . Previously I worked as a full time employee for the same compary as now . It 's much simpl than you think , inspector . or is he seious ? One of my frineds told me that they are just looking for japanese girl because they are pretty and easy to play with . I 'm sure that sometimes it 's ture . An old film , `` Phantom of the Opera `` was pleyed on the screen . I wonder wheather I can live in a foreign country or not . Today , I begin to keep my daialy in English . but is it reary ? According to the program , he still lives in the small town where he was born and lives like an ordinary local person , even though he is a billionair . As we know , there is no specail machine we can use . Last weekend / a vegitable yard and my small pots of plants . I 'm goning to Tokyo for a job hunt . I am going to go NY next year for my privete exhibition , so I have to learn English . However , I 've succeeded in redusing my weight by ten kilograms within half a year . Actually , I am keen on wearing smart clothes and want to look cool but it is clucial ( ? ) for that to have a good shape of my body . I am goingshopping today . I ca n't waitt . Second time , I sould use `` glad `` . Somehow , I am writting my dairy now , it may be a good day today . ( ? ) Becouse not only is it hot outside , but also it 's cold inside . And electric pawer needs to be too cool in rooms that make more CO2 . I can do this but can you ? I would never lie to you but you do n't belive me . Tell me what I should do . I miss the times when we were happy . I have been looking for a new house thes days . I wourld like to try being an actriss in Hollywood . So hte proncipal decided to suspend the first grade class . I also work in an aparrel company . I found every sentence I wrote usally contains `` I `` , can anybody suggest a better structure ? We would take a ride every Saterday . The winter coats that I had dry - cleaned were needed agian for today . I cooked twe salads . They were so jucy and sweatey . The afternnoon is very quiet , I can only hear the sound of typing keyboard . but , do n't call me neet . I 'm not neet . I hav n't been here for more than a month because I have no conputer . So , I am starting on a diet where I cook traditinal Japanese food . Today 's manu was Udon and seawood salad . I was amaized that so much Japanese food really does n't need oil . I think that this is beacuse the earth is dying . The issue of global warming is getting wores and worse . The last day I logined in was . . . . . . They help me to live and to chane my life . I 'm suffering from a backach . My favorite is LINLIN PARK . It 's good season for auturmn leaves ^ ^ Peco is extroverted and has a papassion for table tennis . Thier characteristics are very different , but noth has real talent . I felt that I could n't do that , so I reamined standing . We call them , `` Tunderstorms Guerrilla `` . First , I will turn off my lights frequetly ^ ^ Recentry , I 've been getting very sleepy . , What reason is this ? There might be some Japanese people who would come up with a Koean drama , but it 's not that Full House . The picuture is from a scene where Michelle says `` Duh `` to Stephanie . mayba in this sentence , the man will be suspect , not the police . . . right ? Most Jpanese People can not speak English . so I want to work for a software developement company But I think I ca n't take advantege of what I 'm doing now B : continue my studies and try to become a resercher . I was a sexy pink cat with my friend . ( we wore the same cosutume : ) ) I think the Japanese cherry `` Sato - Nishiki `` is the king of chrry . My home town , Yamagata , is famouse for producing cherries . Once , I ate another kind of cerry , but I realized that Sato - Nishiki is better than the other cerry . . . JOB SERCH I make customs documens . I have no intersts in it . It is OK to make cusutoms documents and make reservations for shipments . I want to do a more crative job . Many friends offen tell me that I must change . . . Change what ? I was talking about a name with my firend . Actually , this is my first time that I have stayed in the United States , and I missed Japan druing the first few days . It is dedicated to the roots of the Japanes and is a very solemn place . I choiced espresso ice cream and it was a right choice . Today 's theme is `` room fragrance `` , becouse I bought some room fragrance yesterday . And Rowan Atkincon was nice to the boy . I heard that Fahrenheit is defined by normal body tempreture . Recently , ' OTOKO - NO - KO ' are increacing paticularly in Akihabara , Tokyo . On Thursday morinig , I took her to the clinic and the doctor prescribed some medicene for a cold . Their conditionaer makes my difficult hair easier to comb I 'm sorry for the filty talk . I feel itchy so often but I wear shoes or slippers so I ca n't scrach them . I turned on my computer and connected to the mechine at my company in order to examine the check list . Aftef two hours , I finally processed all of the problems . It 's special kind of relationships - language - relation ( fuhtermore - LR ) , relation , which based on wishes to communication . I dicided So I dicided to become a manager and change my department . I 'm beeing excited . They can talk before we konw it . How can I enjoy studing English grammer ? ? Actually I do n't like studing grammer . . . . . I wonder how I can enjoy studing grammer . . . Our hosue is on the 7th floor . I then pressed the botton for the 7th floor . . . His mother or his familiy 's maid was already on the elevator ( I could n't see who was inside of it from my position ) . As far as I could see , he was not even embarrasing . But we 're in Singapore . Besides if I did so , he would probably pee on our doorstep to take revange on me . I hope some poverted kidnappers will take him to their house which has a lot of sex toys , and keep him as a sexual pet forever . I bought many souveniors . For example ; postcards , ornaments and a lot of table wares . TOday I went to Fukui prefexture . sometime I will go with my boyfriend to watch a moive or walk in the afternoon . myabe just watching TV or talking with my mother or give my dog a bath . I came back to Korea from Austraila a few days ago to prepare for being an exchange sudent next year . I started studying English by becoming intetersted . . . I like listening to the radio , especailly late at night . To my surprise , It cost me about 2500yen ( almost 20 dallars ) . Everytime I breathe the dry and cold air , I feel warm , beacuse the smell is familiar which makes me safe . I have studed in Beijing for almost 3 years , but sometimes I still miss home . Yeaterday at the restaurant I really had to study English for the TOEIC test but as I was with my frind , in fact I could n't do it . ( My friend would study somthing as well ) Do yu know why ? / But you know , whenever my friend talks to me , I will have a chat with him and I consentrate on talking with him and studying is out of my objective . . . Shonan is in Kanagawa prefcutre which is near Tokyo . Near sounds more natural . It takes ten minutes by bcycle . Whenever I want to relax , I can easily go to the beach and enjoy the beatiful scenery and decious food . Becasuse they stay up with their crying child all night . The gray sky seemed to cry miserablely , and the mental energy in my body has been fading away little by little . Another thing in order for you to keep healty is to cut over - eating in your diet . The parties that out of power are asking the ruling party for a change in goverment . You can devide people into two groups . Do n't get cold everybode . I went on a bussiness trip to Chiba prefecture . I have to make preparation for my visit to Autralia . Trainig course of business strategy The world will form a necessary combination for you to keep your life going on : ) So meny people who said `` I can never live without you `` live without and feel very happy . I was tired and I enjoied it . It was used the concreate , not the wooden building like the other castles , so it is just the museum inside . The fondation of this castle is the stone wall using a lot of big stones like the other castle , but there are some huge stones here , like the second photo attached . along the road to the top , the secen was so beautiful ~ I saw many noticements on the moiuntain , like `` please do n't go near the cliff as it is dangerous `` `` do n't go down the wild path accompancies `` . when we arrived home , I found my skin was burnt bittley and turned to red and will maybe change to black , hh ~ By watching the episodes , an English learner would not only be able to practice English , but also absorb the Weatern culture . They are Alaways are the same as before . So , some effictive measures have been taken to improve the quality of the spring festival gala . I think most of the time I 'm just studing to pass the exam and never think about mastering it . I know that he isn ' scik . My friend suddenly called me and said she wanted to have fun at Roppongi because she has a lot of friedns there . She had worked at a spors bar before . He is a teacher at a junir high school near my house . On the menu for luch was chinese food , like a dumpling , dim sum and things like that . Recently my hobby is writting down the line from a movie into my notebooks . And then I remorize the line , and say it . Japanse sause is made from various things such as vegetables , fruit and so on . Salted fied Chinese noodles have recently become known ( or popular ) in Japan . A typhoon is comimg to Japan . Let 's save enegy together . I would like my frinds to have strong boday so they can visit me in the future . I read an article today that said if we trun on lights often at night when we are sleeping , that can make us get a bad disease . By the way , it can waste our elecsity . Let 's help our country to save enegy before we go to bed and help the world . It is called euphenism . It is the euphenism `` when a native speaker says the conected `` t `` or `` d `` sound like . . . Recentry , I have been getting ready to travel around the world . I want to help out in biology research and to absorb knowlege about it . First of all , thank you very much for your concern and lots of helping hands from outsie Japan . Still I believe Japan 's Defence Force and other rescue teams from outside Japan will never give up finding the survivers . I 'm very busy now because of a essey for graduate school . As I travel more and more , what I find is the tough quality and open - mindness of Hongkongers . I could get over not sleeping more than drinking coffee . Also , I hav n't met a girlfriend . I want to go to Tailand . I can not stop thinking of them , but one thing I definitely can say ; her Japanese was not so good , and the descriptions / portrayals of Japanese ( people ) were very biased ( stereotypical ) to foreingers . Finally , they bacame friends . 11 elewen 14 fortenn Since my shop is very quiet , I have a lot of free time at work . So I have decided to write all the English words I knew starting with an `` A `` , and then check those at home . The impotant words are written in red ! Today was `` B `` s turn . I was wondering what is their meaning , becouase in Japanese , black - bellied means wicked , evil - minded or scheming . But of couse , it is idiom for Japanese people . She spoked to me . I was frasturated . In that period , my teammates and I shared joys ang sorrows and helped each other . Though after 14 days when our work as a volunteer finished , we would leave each other . Perhaps we would never meet again , but we still cherished this friendship and those unforgetable days . There are staff members from many countries that can talk with costamars . They are not theaching Engilsh there but costamars can learn English naturaly . On Sunday , I went to T - place again , but this time with my dougter . My dougter brogut some pciture books to ask a staff member to read for her . If you have them , I would like you to comunicate with me in English or Japanese . After watching the movie we went to a Italian restrant and chatted a lot XD for me , it might be the most exiciting day of this summer vacation I 'm working at a convinience store and it was very busy today : ( I wrote a self - introducyion for my friend . They can say `` happy Valentine 's day `` as usuall . then I often feel annory , because the day does n't belong to me . But other people message me `` happy Valentine 's day too , although we do n't havent love ones `` . haha ~ ~ now I feel happy , although I dont havent a boyfriend * * but I have some good friends . the last time , we went to a Barbecue restaurant to eat a lot of food . and it 's interesting , a group of obaasan were singing loudly and drinking in the next place to ours . They looked so happy at the day . just some old womam , no rose , no chocolate , but happy the same ! When it comes to the factors in successful development of a country , no one can ignore the importance of education , and no one can draw a conclusion of basical factors in the development of a country . Take South Africa for an example , as is shown in the statistics provided by the government of Africa , there are so many familes which are too poor to send their children to get an education . I saw a bird knoking on one of the trees in my garden this morning . My hpliday has been going so fast I quickly ate a simple breakfirst . corecting donations and taking them to the community office before ten . I image what might happen . I think they will communicate using their own words , waving their hands , compare their voice through crying , not just using eye contect . Actually , I was really thankful beacuse they give me fun in this busy life . Then I think if we put ourselves out of our work and life , and give an eye on other people or things around us . We will find a lot of fun in our world . My favirite artists are Avril Lavigne , Greenday , Linkinpark , Fort Mynor , For example Naruto , One - Piece , D - Grayman , Gintama , and Fullmetal arcemist , and I like Final Fantasy and Legend of the zeluda . The times we praticed were fun , and we took many pictures to remenber the best times that we shared being that this is the last time we can work and play together at the anivesary of Chhs . I bagen learning the guitar one year ago , and I hope I could be a great guitar player as him ! Why do I have to pay as much as 15 - 20 % to servers who just take my order and ask me if everthing is OK ? There is holyday on next Monday . I recieve a call . Often , I try to practice speaking English on this site , but I do n't think my English pronounciation is improving . In the end , Yu - Na won the gold medal with umbelievable points . Yesterdey in Russia was the holiday ' ' Victory Day ' ' . First , we went to my cottege and rested there . The frrst diary I sometimes ca n't answer the questions because I would be nurvious during the interviews . I 've been studying English for 9 yeras . My home 's cristmas tree My 4 - year - old son decorated my house 's small cristmas tree . So the cristmas tree decorations are unbalanced . I gethered a lot of toys , books and my children 's homework . I read a book called `` Nnmber the Stars `` because I am interested in learning about the Holocaust of the Second world war and how the Danish rescued the Jews . To my dear friends who are living arond the world now . Please liten to what I say right now ! If you do n't have them , I too sugest you should find out them soon . I hope you will become so happy to get to find a nice pertner . We had a funtastic time . We were supposed to go to Stanly by mini bus from Causeway Bay . Afer that , I told the mini - bus driver that I would like to pay the fare of the oter 5 members fare with my Octopus card . It makes me feel willing to continue this dialy . Tomorrow , I must write and thank the people who watch this dialy , and who teach me . I 'm stumpted . I just want to say that I was in inlove eith Japan and now , there 's left nothing . My major is Enlish education , and I like English . I 've wanted to learn English for a while bacause I want to communicate with people all over the world and know their ideas about things , dreams , interests , character and so on . It sounds really intesting . Pendulum - Granite is my fevorite song ! Even if I get acupuncture therapy regulary , the cold weather triggers it more often than hot weather . According to the book , we can live long by calolic restriction . It has been shown that when animals , including humans , execute calolic restriction , it will lead to a very active and extended life . It 's a pity that I do n't know how to reply quickly . : ( ( Can anybody help me ? ) Getting to know somebody from a different country is really exciting and surpringing . Now I 'm looking forward to an extraodinary February ! my father and my elder brother had to visit to Osaka for busibess trip , By the end of this month , we must have our presentation to the chief excutives . How can I chage this status ? No zest , no prower to continue studying . Also I guess it 's a little bit hard to find a perosn for Language exchange in `` Chinese `` here ; however , I still want to give it a shot . . . It 's depressing for a peson who has learned English for If I can speak more ranguage , then I would speak to more people . and my sence of value will become greater . l practided I learned / studied English at scool and since that time I had no practice . I 'm so tierd . I can not take consective days off and holidays are irregular . I Wan na Enjoy Waching Kid Movies in English ! Mebourne is good city to live in but I hate Melbourne weather ! But this manth , I came back to the head office and I took part in the new project . This summer I have litle free time . I only have one and a half mounth off . There is no heat this mounth . I 'm so nurvus . Because I have n't prepared anything for me to saty here That 's all my falt tho . It was my myfather 's souvenir from Hokkaido ( a place in Northern Japan ) . I also like watching movies and if I have a long vacatin , I would like to travel all over the world . These days in Brisbane , for me , it is not an unfamilar city , because I have lived here for 3 months , but I still feel strange here . Toby knoked over some empty milk bottles . Suddenly Mr Spry 's house door opend , and a man held Toby 's arm . My pronounciation sucks . . . He 's alredy mastered some of those languages perfectly and is going that my pronounsiation sucks . I 've never thought of the way I pronounsiation things as wrong , Even though I 'm a foreiger , I have to try to make it sound fluent as long He was transferred to the ohter branch office . I was really impressd and I cried . I have become accustomed to this changable weather , declining temperature and perpetual rain . There is a bizzare phenomena , to you guys it may be really hard to understand . Due to this reason , I can only use purdent words to record my daily life . But today when I logn into my msn , I got the information that Microsoft will not provide blog service to us and hope that we can move our blog to Wordpress . I do n't wonna be lazy anymore ! It is wriiten by Eric R . She took the doll , and coled her Rika chan . I visited the Blenz Coffee at Yokohama and the NewYourker 's cafe at Ginza . Recently I notice , that more and more of my students are being late or skipping my class . This course of action is ruining my teaching plan beacause many games ca n't be played with small number of people . I went to a family resutaurant with my friend Mari . But I thougt we should find someone to correct us like lang - 8 ! ! Nowdays , Japan is in a very difficult term . Still , many people are missing in last natural disaster and nuclear power plant still difficult situation . . . . . . Do you know the lisence called `` IT Passport `` ? If you have this lisence in Japan , you are qualified as a person who knows the basic knowledge of the imformation technologies . I have to study English hard until I go to the Phillipine , Trip to Hundred Iland and Baguio ( June ) Because we did n't have anything interesting to do , though It was already 4PM , we chartered a boat for iland hopping . Soon after we got inside the boat , great awsome thunder began to rumble and the sky became jet - black darkness . . . The hotel `` Camp John hey `` where we dropped by for the cafe is awsome . but the grave was saved from the Tsunami by a hairsbreath . In the caustal part of Miyagi , debris lays in heaps here and there , To improve my French , I have to take lessons with many teachers soI have no choise . This is a rule in Taiwan but I got a little nerverous . XD im wating for a heatblock to get warm enough . I 'm sleepy , but I will defenitely go . I was traying to translate a Spanish post but . . . I love hime . I do n't know why I love her so much , do n't konw why I ca n't forget her , I 'm not stupid in this problem , I just do n't know ( or / understand ) why . After eatting dinner , I got hungry immediately , maybe I do n't eat enough some foreiners were swimming . Sometimes thay are very strict towards us . Thanks for everyone 's help and she wishes you seccess . I thought the life of University was busy than anytime before when I was [ satting on the chair of classroom and listenning everything the teacher said . One of the stences was that the students at a university did n't have free time to play , because the students need to learn many many things and pay more time than before to learn . Your kind support would be appriciated . I do n't know why Keirin , a bicycle race , can not become major compered to Keiba , a horse racein in Japan . Fingers acrossed . Do tou Know `` Job is Shit `` ? The taitle is `` Job is Shit `` . Neoneat has been writing articles on his site about how disgusting the Japanese wroking environment is . He is also insulting even strict Japanese office workers severly . For example , `` Japanese workers are weak and dogs of their companies `` and `` I 'm working in better working environment than them . Do you envy me ? `` I think the Japanese government is shit , but the Japanese office workers do n't have any reason to be guilty . The Japanese office workers are working every day for themselfe or their families . I hread that sometimes Japanese people are cheated in foreign countries , and then lost their money . It contains English reading , English composition , mathematics , physics and a spesial subject . I am very worried , I was studing 14 hours every day for the past day , I could n't sleep without drinking , I was tried . So , I decided that I will take a vacation after the test to reduce my stress . I wish the pain ( would ) disappear by ) tommorrow ) morning . I lived on the sixth foor . I hope that I can improve my English skills , and I welcome people to give me some tips for my writting . Thanks a lot . When I found out that he really believes that I am going to India , I laghed . A question about grammer I have a question about English grammer in the case as follows . An electric bulb has a filament , but a fluorescent tube has two erectrodes . I think `` We usually use a fluorescent lamp , which has 2 electrodes `` or `` We usually use fluorescent lamps , each of which has 2 electrodes , `` is correct . My question is whether the first one meke sense or not . very very bad ! I 'm so miserable , I need to learn English , but I do n't konw how to study it . Please help me ! We usualy stir - fry it with egg . I 'm not a vegetalian . Today , I will explainng why I think subtitles are important . ( We do n't really study subtitles . . . ^ ^ ; ; ) When people crticized , it is hard . . The trips pupose is to learn The sports festival wii be held next friday . I met her 1 montn ago and I thought she was not speaking English as well as me but now I noticed that she seemed to speak English better than me . I evny her because her English pronunciation was more fuluent than when I saw her 1 montn ago . I 'm working for a life insuarance company in Japan . by pomping these billions in renewables instead of pomping it in I have n't gone on lang - 8 since I went to my papa 's home . because my papa 's home is high in the mountains , I had no chance to check my mailbox and answerd your messages . I felt so sorry . I miss all of you so much . When I rode moter bike , sudenly speed down . I was supprised because itwas the first time my mortor bike bacame in abad conditi Alought there are many unhappy things in your life , you must believe there are also more happy things that will make you happy . So do n't treat youself as a tragedy . Anyway , tomorrow is aother day . At first , I thought playing cards was so boring and it does n't make any sence , but in the end , I got to meet a lot of new friends . I tought it was interesting to play cards , which was boring for me at first , but then it gave me the chance to meet many friends who can make my days in New york more valuable ! please teacth me ! ! 2 I want to be a prischool teatcher . But English is deficult . . . But I was Kindergarten teatcher two months ago . My hobby is watching movies , photography , wacth TV , and Karaoke . I like Japanese Dorama too ^ ^ Two months ago , I landed in Tornoto with my husband and little baby . Today is my husband 's birthday , we plan on buying a cake from the suppermaket to celebrate his first brithday in a new country . I do n't know what to say to you right now . I hope we all here will make a huge progress on what we 're willing to learn , and do n't forget to make some good frends . Interestingly , I met Koreans on my way , so we attended service together , and futhermore we were joined as one cell of CHC . Next , if the machines produced goods , there wo n't be any qualitatives in that goods . However , if people made that , people have to make them very hard , and thre will be a lot of quality . Recently , farming online is becoming more and more pouple amongst young people . What 's more , it is high time that the yonug should be taught how to use the Internet properly . I went to western Canada on a trip for 26 days with the Grayhound `` 30 days discovery pass `` I like to paint using a small number of colord pencils . Hope make true friends through it and inprove my english . I like snoboading a lot . Everday I just get online and read some articles . It 's already fabruary and my birthday is coming . Last year , I celebrated it with my 7 firies friends , but I was not happy then . Is it only a phsical problem ? Now I get some acne on my left eyebow and some are near my chin . I google why I have these wierd things on my face and figure out maybe I have a hormone dsorder . ( Is this because I do n't have a sex life for a long time ? I 'm in my friend 's room in Yokohama now and ristening to music . Because the goverment started a campaign called ' Cool Biz ' about five years ago to save energy . But I was surprized about it , so I could n't say anything . She told me that the company wanted a few managers from all areas in Japan , so she called again to tell methe day of job interveaw . Sometimes I go to a big supermarket called woolworthy in town but it 's very expensive . Do you know anywhere I can buy food cheper ? Do you belivev that there are some ghosts in the world ? I love chokolates more than bf . Last pictur is green tea with milk . I wanted to take a mock interview , but before I tell it to the tutor , she shoed me a ( ? ) text . It is a very dericies food . he is from Austlaria . My English is getting worse and worse since I graduared from senior high school , so I need someone to help me with my English . My luck was `` Kichi `` , Kichi means so - so or normal . a few minitue ago , I said to her , `` Shall we go to eat anything ? `` She said yes . An intresting phenomenon I found in `` lang - 8 `` . If I 'm worng , please help me correct it . You often hear this qustions being asked in Korea . Koreans like to classify a person 's charactor by blood type . A types are usually narro - minded . They write down what or who maded that day bad . Their charactor is also tough . They usually have analytic thinking similar to a ditector . They have many friens . Because we have two children who will have their entrance examinations of Unvercity and High School soon . Recently , I 'm studing English . Today I answerd a qestion . The Qestion was `` When you 're feeling sad , what do you do to feel better ? `` My classmates and I discussed death penalty in law class because our teacher could not prepare learning packs for the seminer . Ono was taken to a plice station under suspicion of violating the Maintenance Public Order Law . It was the commemorative party for publication of Karoku Hosokawa 's book , who was a political scolar from Tomari . The prosecution and the Court ratified the `` Black Trial `` made up by Tokko Plice . I found out about this site from a magazine yesterday , and so now I 'm trying to write someting in English . The former soulds like `` it 's OK `` , `` I do n't mind it `` , or `` forget about it `` . I naver been outside of Japan to anywhere except Hong Kong . Definitely it remains memorizable . Because it was so hot and humid , just staying in the hotel was irriating enough . However , there 's laiser show in the night . But he is pritty cute for me . Anyway , I will write dialy as much as possible to study English . On wednesday I saw a movie with my mother , my friens and my friends ' mother . Themoviewas very funny and inpression . I 'm very intersted in expressing my thoughts in other languages . I figued out the reason . You 're very thankful to me , becasue you also like to learn other languages . You were singing a song of Gans ' N ' Roses . One of my friends invited me to go camping in Saitama prefacture . Futhermore , I 'm planning to go camping at the end of next week with my university friends . I have one daughtor and one son . I remember that my mother said `` you ca n't beat your chilren . `` I 'm appreciative of my mother 's afforts to raise me . Please hel me . I live in Tashkent sity , Uzbekistan . My hobbies - basketball , listening to music , playing basse , and reading boocks a litle ; ) I hope to make more frends throughout the world , and speak English very well . Should I introduce myseilf ? Anyway . . . The Japanese government right now is reviewing its nuclear energy policy due to the Fukusham nuclear disaster . Under The Basic Energy Plan , nuclear power will be Japan 's `` core source of energy `` in the midium and long term . And I want to try writting about India and its culture ! ! ! there are 6 preliminary mathes of GP . My favorite programe is last year 's performance with the music ' the Moulin Rouge ' in which yuna kim set up a new record in the short programe . ( figure skating is devide into two sections , short programe and free programe ) I am goning to whrite about arranging a meeting . I think that they met their fiances , fell in love , knew each other well and decided to get merried . My older sister sent me a picture of her and her hasband . I was so nveruos . A friend of mine said something about the hidden messeges in songs . I 've never tought about it . Have you ever found a song with a special hidden messege on it ? She told me that most rock songs have a hidden messege , what do you think about it ? Since I have never been there , I 'm not sure what I will do in Seuol . Recently , I bigan to read and listen with the iphone . How can I get grammer skils ? English is very difficult , but I have a fun time when I sutdy English . My aim is to write a diaty every day on Lang - 8 . The main purpose of this trip is attending a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm goint to Las Vegas today ( for no special reason ) . After I put my cat in the kitchen , I went back to eating my supper , untill I noticed that my cat was behind me again . It 's the first time I heard of this kind of website wichi I think is a great help of leanguage learning . I like to read novels and watch movies which are very ordianry interests . We , an audit group , are sending the Accounts Receivable comfirmation letter to overseas customers . Hello , my wondeful frieneds . Today we had a speciall class at my school . instead of haragana . . . But I have no oppoturnity to meet with any so I checked a website that introduces Japanese people to foreigners . My main object is to learn and imporve my English as much as I can . So why am I going to the Philippines ? Thare are three reason for this . Could you paraphraise the meaning ? Is is kindda `` I should 've been more careful about my . . . `` ? He also said that the first Japnese he had learned was in the menu of the YAKITORI ( Japanese food ) restaurant ! Every time I look back , I am very surprised of how sensitive ( or woosy : - ) ) I can be . I have reigestered here only today and I was surprised how great this site is . I saw how you peole correct mistakes . Now it 's so good to make mistakes , becouse I know you 'll correct it , so I will improve my English . Thak you ; ) When it snows heavey , trains sometimes stop or delay . Most of my friends do n't use their cellphones for this long , but I 'm not good at using electric things and also I do n't like reading directions either , so I tend to use my cell phone till it gets any damege . Well , but I always fell happy , somehow fresh once I chang to new one . I intend to meet our second eldest son at the end of this monthend . Unfortunately , recently I have made a lot of absent - mindedly mistakes because I was very busy . My free time has almost come to an end . It is five minits to eight now . I received an A or A + on all sujects . Taking this opportunity , I decided to study hareder . Do n't know when I 'll be alowed to use the computer again . I 'll tell her to rase my grade a litle and next term she can lower it . Any way the rest of the day was kinda funn . I already explaned why . I wanned you to know why I 'll be gone for a while . I had been lying down at the poolside for 6 hours yesturday . It was not so shiny yesturday so I did n't notice the sunburn , but now my skin has become awfully red . In addition , it 's bad that I slept last night on `` Igusa `` , a Japanease rug made from grass , so my sunburn became worse by rubbing ( ? ) . Ponto - cho is a street famous for good dining , restraunts and bars in particular for night time . It 's Labar Thanksgiving Day today . The devil feeld she needed the heroine . But when the heroine saw that the devil had lied to and fired anoter staff member , So I resumed writting in Lang - 8 . If the band was lower than that , I think the raod to the goal would have been much further and my deperture would have been delayed for a few years more . I 'm a Chinese girl who lives in Austrilia now . + G ' day + This is my first time using this kind of website that my friend recommonded to me . Therefore , I 'd like to practise my English with you guys and learn something about Frensh . This is because the unemployee rate is gradually increasing and many international students from South Korea are returning and actively job seeking . Now we are gethering donated goods and practicing music . A year ago , I was n't interestead in Canada . Other oicture is New Years hors d ' Both of these are Sakura flaver . I know that ghosts do not exsist . Tsunami killed many people and destroyed villege . Thnk you so much . I cound n't go to school today . Recently , I enjoy writting my diary in Engilsh . But I always do my best to comunicate with foreiners foreigners by using expressions the best I can . . The world is n't equal , and the inequal in life is continuning . The Mid - Autumn Festival is upcomimg , and may everyone have a beautiful and happy moon festival ! ! Resently , I 've read a book wroten by a mathematician named < beat the dealer > . So I went downstairs to eat breakfast , and I cheak my email . This is a good way for me to get rid of stress . Because I am an office worker I seldom have a chance to execise on weekdays . But I try to execise for at least 30minutes on weekdays except on Monday and Thursday . Because I go to Korean class on Mondays and English conversation class on Thursdays . We usually have a good relationship , but somtimes we have a little trouble . Also my family belive in me , A few mins ago , the announcement in Dalian airport said , the flight to Shenzhen will be delayed about 2 hours . Labors get more power to protect their legal interests . untill now I have studied japaness and have traveled around my house area ! To make friends , I know that I have to speak japaness well ! my English is still terreble , but I will write dairy day by day ! and then when my japaness class will be off to beginer , I 'll write this diary in japaness ! ! My frist time to write an entry on Lang - 8 . because I decide to imigrate to Los Cabos , Mexico . `` Recent research has shown that children are more relaxed to study than ever before , snce the light education policy was introduced a decade ago . I am a Japanese colleage student studying English . Lang - 8 is a platform for multi - language studying by mutal assistance . With the platform , you can correct mistakes in people 's artical , give them your advice , to help foreigners to study your native language , while you could get a good feeling by helping others and get help from other friendly people . Because your journals maybe refer to your privacy , the study platform allow you to select who can read your jorunals , for example Internet users , the Lang - 8 users and so on . My granma said that holly ghosts protected me as my goardian and kept thier eyes on me during my birthday . Because my life is individual and enjoyful . I am reccently attending a university in the U . Acutually , I finished all of the classes except an advanced English class . When I lived in Japan , playing the piano and going to my favorite places with my hsband were best way for relieving stress , Of course I like talking with my friedns and going shopping and and so on . So I have to learn these words before I strat the second one . We have ten levels and a staff member told me that the four calsses from the top are ranked the highest group and these four classes use the same textbook . wallked there holding to my brother 's shirt in my childhood . There is a piano that my perents gave me in my room . One of the main delimna goes : should I marry someone who is similar to me or different from me ? Marriage is an important thing for people where we choose someone to live so intimely for such a long time . Therefore he had the nickname `` Dokuganryu `` , it meens one eyed dragon . It tastes like good beaf steak . Those chaos , confusions , depression . . . It seemed like it was never gon to end . And I did n't have a clue . This is the first dialy for me ! This theme came up after The Wall Street provided complax financal products that led to a worldwide resession . I wonder whether CEOs sould have limit salaries or not . However , if the company has debt and will go bankrupt , CEOs should have limits on their salaries for the company and empoyees . we want to make repairs ( or overhaul ) , and buy new equiment . I feel that there are maany mistakes ) ) ) ) I entered univercity in Osaka . Of course I sent a message for my English teatcher . I 'm now studing English . I want to make friends with more people from other countries and I learm English . There is not a clowd in the sky . Actually , there is the nice beach that I can get to by running ten minits from my apartment . I could see the really beautiful view espcially today . I am going to go to the beach again after writing this dialy and visit a cafe where I can see the beach in order to study English . Studying should be comfortabley , should n't it ? ' Our case is not a Chernobyl , and the accident does n't have any effects on those of us who are living near Tokyo . ' as of Mrch . But I dont like to study grammer , so allways use simple words with broken grammer . Please check my writting to help me ! ! Because my parents always spent the weekends for thier hobby instead of spending it with us . I will pay $ 85 tommorow ! I cooked a pie in the microwave , washed some salad and fry an egg every day for my luch . To my superise . When I was in elementary school , I wanted to be a tescher . Because math usually have definite answers . I ate noodles and it was to my tast . Therefore , we have decided to offer some discounts for a period of time , and provide interest free installment for a certain number of customers . Like every studengt in China , I have studied English for 10 years . I agree with them now though . When I watch CSI , I ca n't understand what tehy say . Taking buses , going shopping and chatting with friends in English are my dreams in other countly . There are beautiful varieties of dolls in that countly . It was weired for us to clean up stuff like her friend 's old letters and cards . I learned about ' present perfect ' and ' present perfect continously ' today . I 've been very confused when choosing between ' present perfect ' and ' present perfect continously ' . Because my eyes were itchying . I am very comfoterble ! Therefore , I 'm going to try to write journals in writng style from now on . Also some hisgh schools or universities are very difficult to enter , due to the exams and competition . We actually call the cram school ' ' juku ' ' in Japanes . Howevere , when we look up the word ' ' juku ' ' in a Japanese - English dictionary , it says ' ' cram school ' ' . My online English teacher told me about a popular sweet from the Philipine . So most of us laught at him , and looked down on him . Maybe you also can find more advantagement of the big gray wolf from the cartoon . professors ' annoucement or the materials that he posts for the class . But at the same time , I wanna master English and go to restaurans to talk with my co - workers . Thuesday I was at my Japanese class after work , and I was REALLLYYYY tired since I only slept 3 hours the nght before ( hard to go from night shift to day shift in one day XO ) . ( Think with a twisted mind if you still do n't catch it . . . ) Trust me , I was redder than a juicy tomato . If I could have hidden bettween the glue and the floor I would 've = _ = The even funnier part was that the teacher did n't understand and made it even worse , so afterwards when everyone calmed down she said : The owner of horses have to select a strong , able horse and make him into a race hores In order to be a race horse , he nees parents who were race horses . The Special sauce was made with Go Choo Jang , and a little vineger . How about Oyster food in yur country ? The price negotiation was tough but they finaly offerd me a good price . Can you imagine that a man can contorol the weather ? In some Tribes of native Americans , they are given names which are derived from a vision at a sertain age . Then , their synod or chief endows them with a name in accordance with their vison . Now that it is seems that topics about native Americans are consigned to the dustbin of histry . If anyone suffers from migrain , how about drinking herbal tea ? I recommeded it ! We went shopping and bought pants and a jocket . To better act this drama , we prectice half - hour every day for about three weeks . when we playing , I was very nervoue . our drama was very pooular , and we won the NO . 1 in my company . The other day , May 8th , I went to yhe fair trade day festival in Marunouchi and it was one of the greatest experiences I have ever had . ( The ) Healthy and tastey foods , non - wasteful products , and organic products and clothes were very fascinating to me . And also I was strongly attracted to fair trade products because most of tem are high quality . Of Ofcouse , I love cheap , fast fashion like forever21 , H & M and so on . Pls forgive us . This test is very important , it is essential for me to become an exchange student between my university and Frorida State University . I like to read gossip news about American celeblities . Lately I 've been readintg her gossip news everyday . So , we were quite a bit worried first , but finally it was proven unnecessary because they were very well acustomed to the car itself , as well as dealing with risky situations . Anyway , It was very far to go to our destination - the eatern beaches ( kangreung ) - from the city ( seoul ) . I am really preased by it . The Lylics written by him are easy to sympathize with . My cousin tought me how to see my friend 's sex or native language at Lang - 8 . I can see my friends ' imformations by myself . I will try my best to do it , trust me plase , haha . I am sorry for the earthguake in Japan . The stalls sell sharved ice , apple candy , Yakisoba , Wataame and so on . Of cource , tehre are game booths too . In addision , we can make friends from different universities in the club . They caught clams in a full backet . Aapparently , it can be said that they copied the concept from the game . I want to pass the exaim . Wonderful ! I finished my exaim yesterday . It 's so agony while preparing the exaim . . Although the exaim has been over , I worry about my result . Having this exaim again is what I do n't want . So ( therefore ? ) , please let me pass the exaim . You need no cristal ball to know what I did next ; nothing at all ! That does n't mean I did n't care about my exams at all ; I always checked my anwers , I could n't help it ! We were allowed to take the test sheets with questions home and the answers were publiced at a website exactly one hour after the exams had ended . If I screwed up my French or Maths exam over the next few days , I would definetely have to do a resit or in the worst case : fail . Of course , it had already passed my mind a couple of times before , but now it was serieus ! To make matters worse , I totally lost my apetite the following three days or so , so I ate nothing more than one sandwich and some crackers each day . I got something I call the ' ' vacuum cleaner - syndrom ' ' . . . I can use skype & yahoo messanger ! Today picking many Potetos . they do n't have practrcal any friends . bucause I was disobedient . that 's why I havent n't strayed far from the right path . We played soccer and Wii sprots . I have two way to learn vovabulary , one is to read DUO 3 . 0 books and the other is to read the simple English news site every day . I was not just molding raw thoughts into a linguistic form , but trying to produce new perpective to view things . It can possibly give birth to some deformed or a lateral thought ! Then I might need to wear new glasses to view another world hidden from ordinary Japanese colored glasses . allthough Chinese is a little difficult to learn . . . it is an Aussie tv proglam , you know ! Yes , we can see many celebrities from many different industries such as films , music , literture and politics there and we also can listen to their interesting interviews . No way ! ! ! Also it is true there are many celebrities who are quite diffensive of gay things . I can correct articles that Japanese studying usere write . tahnk you . I should spend my time effeciently . bad : fuk ( lol ) It was so dericious . I enjoyd . I like it because it is good for my healthl . Order is the longest book in the Harr Potter series . The Japanese goverment told the president of ANA not to allow the same problem to occur . I 'm going to go to Fukuok tonight . I readlly do n't want to stady at home during winter holiday . Tonight , I have an appointment with someone who bougth a computer from me at the resturnat . I went to the library to syudy physics bcause of an upcoming examination . My instructor suggested that I read a good essay written by one of our classmates from Quweit . My pronuciation was really bad , and it was very hard to say water . In Japanese , it is difficult to pronunce ' water ' , because we do n't have the `` w `` sound in our language . In my neighborhood , the Electlicity has failed . This happened shortly after the earthquake . I logined in tolang - 8 for the first time since May 01 2009 . aftrenoon . Recentaly , I have n't studied English because I neglet it every day . But , I restarted sutudy English since today . Most of Indian people are Hindism , so they do n't eat beef . It is unuseal to use meat and fish for a meal . I stayed there for 10 days because I got the swine - ful ! I had almost a 40C feaver , and could n't get up . It was very cold this morning , and I found him trimbling ! I think he will be trimbling tommorow morning too . But already four dayd have passed ! Their messages couraged me very much . Let 's go boting on the sea . Wo n't it pleasant in the cool breeze ? Sinceroly yours . I 'm not a phychiatrist , so I did n't know how to take care of the patient . I 've taken care of people who have had deppression , so I can handle them , but it was my first time to have treat a person who has bipolar . I 'm in voncouver . I am in vancover . It 's suffring that I ca n't speak English well enough . I met my frineds I had gotten to know when I was a university student I enjoyed talkeing about many things and drinking with them . Though the news may creat argument , I felt very happy that a woman who had longed for a baby , finally had a baby at last , at age 50 . Probably in our time , the difinition of being a mother may become nonsense . There are several battle scenes ( not as beautidul as before ) . I was nine years old and stadied in the fifth form of Russian Secondary School , in a small town . After that I studied English at colledge , if you can call it studying . : ) ) We had only 36 hours of English lessons over the whole four years of trainign : O I would have most likely called it a revision of I learned at school . Recentry , I played a game called `` Mind10 `` with a co - worker at break time . I say `` Are you yellow ? `` , and look at evreyone 's face . On the third day , it was rainy , but we went cuising I had been very impressived . he is very simillary to me . Mabye a lot of meetings make me stupid and poolish . cause , will is similary to me . My haie color is brown . However , I had some concering about my fitness and health , so I started to work out . The first place I picked a wallet up was in fornt of a shopping mall which is near my home when ( while is better ) I was going to my work place ( work is better ) . Nowadays , I 'm so terribley sick of lacking money . . . Now I 'll go shopping in Harazyuku . but my next holiday , I am going to Akihabara with my French frined . thank you for reading my dialry ! I will compare my sense of values with foreing student 's and Janury 3rd 2009 Actually I had taken such an ingection when I was 10 years old . Encounting so many supernatrual things at the same time , the situation of my brain was kind of touch and go . I did n't speak to myself too often , just once in a blue moon , but be prepared , something was definately wrong . `` It 's not my day . . . `` I wispered , `` I 'm just too tired . . . `` I want a Korean - Jananese dictionary so I will understand to the words to their songs ! I 'll stick to study Ebglish in future ! ! I have just finished cleaing up my room . My supervior told me that it is tough to teach students English . Altough to leave my city is very sad and I do n't want to live apart from my family or friends , I think this chance and experience will make me strong . I can imagine the situations and dialoges through the characters motions and expressions . So she recommeded the dreama to me . My son and dauggter take care of her mainly . So she is qute . So I think it is best for my recest She said `` It 's like a home dorama in America ! `` Today , I went to a Japanese super markect . I went to shcool ( ESL ) early fast time today . My class is Pre - intermidiate level . There are Japanese , Koreans , blazilian and Chinese students in my class . During this three days , I will will be in traning at work . Today is my first day of traning . But to tell the truth , the reason why I love her is unexplanable . It was terible ! ! however sometiomes I feel lonesome during the night so I always listen to musi that I love I wish everyone a happy happytime on the Valntine 's day . . . I rememberd my trip to France three month ago : ) I thougt he was a young lady when I just saw him from behind . But he was a little different from before , because this time he was wearing a grean wig . Fiarst Writing As the title said , my ner car has arrived this afternoon . Of couse , it took me about a month . ( it 's two times longer than studying in the academy ) I 'm stuying the other subjects by myself . It is a samurai movie . The main charactor is Ichi who is a blind girl . I have some quetions . In our universty there is a tradition . Next , the fourth grader plays the role of doctor and the fifith grader is the patient . When we take this examination , we are all very nurvouse because volunteer 's play role in patients . There may be unpropriate expressions . . . But remenber , remenber to go home to chat with your parents , to cook for them , to eat with them etc . My favorite shampoos and treatments are `` Dove `` and `` Pantane `` ! ! ! ! My family have managed a liqure shop for 40 years . Then he died 65years old when I was in the first year of erementary school . I can corrent your Japanese diary a bit . They can sacrify theirselves for the family 's happiness . Attending my friend 's wedding banqet I attended my friebd 's baquet on October 3rd , which was also my 20th birthday . We could n't find the restaurant for 30 minutes , because neither of us has a sence of direction . Finally , we found the restaurant at the last minute befor the banqet started . I was always scolded by my art teacher , because the picture I drow never looked like what the art teacher wanted . I hope she has happy life with her hasband . I 've posted my first diary for half a month , but to my dispointment , it Im really excited rihgt now but , at the same time , I feel empty . . . . I have a hamuster . I think her name is very qute . It means flower . It makes sense though . Most young people have golas like fame and financial security so they tend to study for the sole purpose of their career . Recent , I played bouldering . If only we could be delivered from this enourmous amount of homework ! I may sound silly , but I love every lesson ( exept Physics and Chemistry ) . . I am afried that it seems I am falling in love . I 'm wathiching a Japanese film called ' Death ote ' on TV . The film is besed on the popular series of comic books of the same name . Both the investigator and the climinal who uses the notebook take center stage . So my Waterman fountain pen has illegularity ink flow . ( ? ) I studing my English 4 years What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitubishi and Mazda ? So please check and correct my diary and please send me a message if you heve interest in Japan , Tokyo , me , or whatever ! I am sleepy because yesterday 's seminor was harder than 2 days ago . Separating Appolo with your teeth is sort of common memory among us ! I tried to start the session in safe mode and after a couple of attemps ( twenty minutes or more of waiting ) all seems normal , until I saw an error message that warned me about an error with the NVIDIA graphics card and its drivers . I am visitting my daughter 's home in Toyama pref . I have problems with bilding constructions , free conversation and fast English - speaking . I attached thress pictures , please view / do take a look them . I was thiking of how I saw it without my glasses while wearing only the 3D ones . I have no power to contine writing . so today I am not writing anything . Recentry , I 've been reading Alice in Wonderland written in English . I am learning in a meddical College now . There are only sveven boys in my class of 30 . At first I thought that such a class might be boring , but in the past few months my life has changed . They are all very humorous . First I want to introduce our hostess Bin . I call her Boll - piging . When she begain to talk I laugh because she will always say something funny or interesting and she is a very cute girl . Yesterday afternoon during PE class , when we started playing a game , she was still carrying her bag . It was a really huge bag , which made her look like a snail . Our teacher asked her to put donw the bag , but I was wondering ' ' Can a snail put down her shell ? ' ' The books ' names are `` The Traveler 's gift : seven deisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . A few days ago I serched on an internet book store casually . After half of a day I recived it by a deliveryman and read it immediately . Fanally I 've finished reading this book I went to San Diego with my freind last weekend . The beef was baked with onion , green papper , and tomato . I was luckey because I took a bath last night . They answer to Mickey 's queations , but they never answer to me ! I accept the situation , and I 'm clazy about Lang - 8 beside them . Many people went out to join the eving party . She said she was tired but strangelly I suppose that sometimes peope need unpredictable incidents . My partner for Catarina was Kathy , Next I had a dictation lesson with a Japanease teacher . In summer , I could n't go out , because it was too hot and I did n't want to tann . The rainy season between spring and summer is called `` Tuyu `` in Japanese . Incidentally , in the gallery , I was intrigate by the publicity for Guerilla Girls which said , `` Do women have to be naked to get into the Met Museum ? At the beginning of the exhibition , there is a board that formed with the name of male artists ( Anny Wahrolh , Josephine Beuys etc ) . At first , when I saw this work , I was fascinating by the dress but after a careful observation , it made me to think about criminel fire . . . It means there is no data on my desktop , in folders and even in `` favorates `` . Shinpai ( fail ) and shinpei ( worry ) Kaero ( frog ) and Kairo ( come back ) I do n't think that the amount of posts or comments about a certain player / club / league exactry reflect how many fans they have in this huge community . In Japan , a univercity student 's tweet became the topic of conversation . A studenet confessed his cheating in an examination . Nobody pushing me to do anyting , noone to exploit or manipulate me . Yesterday , my syster and I went to the cinema , and we watched `` Gnomeo and Juliet `` . It 's very funny because when a human sees ther , the little gnomes quickly turn into porcelain figures , in the position they are in at that moment . So I 'll be trainning till dinner ! Perfume : The Story of a Murdere I stood comtemplating the rain under the leaves . They were glistening and elear as crystal . Especially in the Univeresity , I can spend all my time in my studying my favorite things . In the library of the Univeresity , there are almost all of the books and newspapers I want to read . Today I 'm going to the theather . While I was in NZ I had to speak English everyday , but after I came back to Japan I became so lazy in learnig English . . . I teach him math , phisics , and chemistry . defend : He tried to fefend himself , but everyone spoke at once , so he even could n't be heard . I have my own lang - 8 account and I hope everybody cmments . My family are buddism so we believe that the 49th day is My study methods using the nintendo DS mainly consist of studying vocaburary . Helth is the most important thing ! ! Our family went to my grandmother 's house to thank her for getting my daoughter a get - well gift . She was so glad to see my daugter had been better . A Jpanese friend of mine who has n't yet recieved a license had a hard time driving . I think he has a good idea , but regarding how to persude people So , If we preach Jeses ' teaching So you must have a valid reawson to make her accept your invitation . I think troubles and hard times make a manmature . These dayswe 've been studying `` The Loons `` and I think I am similar to Venessa who learnedfrom the suffering in her life . And I used to attend the foureigin language college in Kyoto , but I dropped out because of economic problems I was invited to go to Summer Sonic , which is a famous music consert in Japan . There was further proof about his prefernce . He picked up the principal 's plate every day so that the principal woud n't break his spine while bending his back to pick up his plate . `` Do n't raugh ! `` I said to him in English . Each party is focusing on comsumption tax , which is like `` value added tax in Europe `` , whether to raise the rate or not . I think rising the rate is understandable , but I want politicians to stop wasting money frist . This leads to global warmin . our strnge melody from choking up I started to make a chronologial table of architects this year because I want to understand the history of architects and how they relate to each other . As I 'm going to travel to forein countries , before my trip I want to memorize the table . Today I made a table of Arata Isozaki who is one of the most famous Japanese architects and I think he is one of the men leading the international arhcitectural world today . Accordin to his portfolio , he completed his first public building at 35 ! Second , I went to a concert which took place in Sannnomiya city . This month I went to voncouver and met many foreigners . I belive that it means I have the potential to improve my marks . So , I will wirte about some freshman girls who were behind us and saw my friend and me . At te end of the conference the school 's directos arrvied and finally he told us that the alert was false ( thanks God ) . My summar vacation plan I think it 's hard to trvel but it 'll be meaningful . I 'm looking forword to going there ! In the past , I hated the rainy sessin . I always got weatted . I have lot of things , for example - some English textbooks , a daypack to go to some mountains , many instant food for dinner just in case I can ` t go to my home , and like that . He brrowed a book about ' ORIGAMI ' at a library today . We are very busy during this season from Novmber to January because we are providing toys and goods for children and babies . But , it 's combining all mathematics functions , like integrals , invers , trigonometry , natural logs , and many more . . . It sometimes not fun ( presure ) working in my clinic . I feel it is intersting when they smile after I say something to them . Let 's try having fun ( plesure ) in our day even if it is work ! I can not be abesent from practice from now on . They are very convenient because I do n't need to leave home to chek money in my bank account or to purchase books or something . Poeple often say that Japanese girls are kind , obedient , and so on . I think comtemporary Japanese girls are not so obedient as people may think . They are getting strong and selfish , inclding me . haha . : ) I usally study until twelve I have a father , mother , yonger sister and grandmother . My sister is 3 years yonger than me . Well , this blanket is bery useful , like for example , it is easy to carry and I can save on the electric bill as well . Just a simple question to the Japanse people or anyone good at the Japanese langause . . . 1 - How much Kanji syllables shoud I memorize before I 'd be able to start reading anything ? Some international travelers stay in Tokyo , and I am often asked to guid them to Tokyo tower . Could anyone please help me with the interpreation of this simple sentence ? Hou could you , if you were I . Do n't esitate to ask me to add you to my friends if you want to exchange green patch plants ! The right picture was the secound tea . Wave dinamics , _ _ thermodynamics ( particularly wave thermodynamics ) , everything about physics makes me confused . If you do your best and make the most your of tanlents , you will able to turn your dream into reality . Iye - na nichi / hi da . . to omou mashita . Kinou - ha tomodachi to akai ( I ) wain wo nomimashita . Takusan ( no ) mizu wo kono jikan kara nomikomu / nomihoshi shimashita . Tenki / kion ha mo sumetaku nai desu dakara yuki ga mo furimasen . Boku no bonpou no tame ni . . Ima ha mada kurisumasu turi - wo kaimasendeshita . Yasumu ha ui de sugoshimasu , motto motto jikan koko ni kakarimasu . mo sono ji desu . boku no bonpou . . totemo hen na bonpou desu . . dakara mouichidou sumimasen . Mo motto motto gabarimasu , Sa . . So , I am going to study , and inprove my skills in English . If I learned Japanese the way I learned English , I 'll grasp Japanese quite efortlessly . I 'm not really worried about writing or talking in Japanese . Today , I went to Azuki musium in Himeji with my sister . ( Then ) I went to eat runch at a to curry shop . I ate butter chikin curry . It was really dericious ! ! We have studied English for at least for 6 ysers . I think have n't studied spaking ( languages ? ) enough before . Then it brcome my work . If I had wanted to inprove my English , I should 've written even one sentence . I am working as a mechanick at a big chemical plant . It 's dangerous becouse different emergencies and accidents are usual events in our plant . I thought that I would work seither nightshift or dayshift . He probably wouldsay you hadhurt him , either you take him to thehospital check - in or give himsome mony . Wait for futhur news . That time I couls use English . Even though people think I have many oportunity to use English , the only chance I can use English is just when reading English news / messages from the / our head quater . You will do great things and surely tirumph . Sterted to study English I was looking for an English scool on the internet . But I ca n't find a good teater . My familly is going to grandmather 's house . I am searching for a good English teater . let me tell you a funny , maybe not funny to everybody ( but I couln n't care less , it 's my journal so if you do n't like it , piss off ) story . anyways , she looked so amazing and diginity ; in a nutshell , you could say that she was like an angel . not a big deal , you could just simply say `` he was inpotent `` or `` he had a problem with his sex life `` or maybe `` he coudl n't get an erection `` , Especially , the grammer , which is very difficult ( for me ) . To impove my English , I borrowed a magazine from my friend . I am going to Naeba with my friend Megumi and some foreigne people for 15 days ! ! I can read English newpapers and books without big problems , and made a big improvement in listerning . To me , my love for the novels , movies , and charactors , the happiness or even the tears they have brought to me will never change . I cooked Tandoori chicken with my friends at the cooking class . Last week one of my friends asked me , let 's go to cooking class togather . I wanted to learn how to cook Tandoori chicken . I decided to try it . It was very delecious when I cooked it . ( ^ ^ ) Because of this pollen ( I 'm allergic to this ) , I have to wear a mask which is used by doctors in procedres And , the order , starting from nearest to the barin , is the cerebrum , the brain stem ( the vital center ) , the spinal cord ( this is the end of the central nervous system ) and the peripheral nervous system ( the nervous below spine ) . People who beggin learning in our school are very rude , bossy and greedy . Normal people of japanese could n't meet them in life . It is the cammon story of Mito Koumon : ) My college classes start earlist than my friend 's and I am hopeless . Moreover , declaration of the Fair Trade Commition of Korea played a decisive role in Lotte Mart 's unconditional surrender . The commition said it will investigate whether the conglomerate had violated the Fair Trade Act by selling chickens at an unfairly low price . Today my class teacher was from scottland . In the clases , he said ' Have you a pen ? ' . They use gerunds for mainly three tipe of things . First sentence , he was smorking , but he quit . They brocasts international news . It made me feel so comportable . In Japan , I ca n't imagine every adult wearing helmets when they ride their mama charis . I was n't stonger enough to press the power botton . There is one bottele of peanut butter in my kichen . Especially as lang - 8 is faster than before ; its previous speed was slow and refrustrating . This was actually one of my excuses for not doing any writing . In my point of view it 's very good to support such a project which helps the unban poor in Africa 's largest cities to adapt to chellenges posed by the changing environment . People there are very poor . They do n't have enought food and water , and this is , in my opinion , caused by the colony politic . Especially England 's colony politic . Because in those days everything that was planted in Africa , for example fruit trees , after a harvest , were transported to England . Minerals like gold or diamonds that were found there were , along with food , transported to England . Howver , I 'm happy everyday Your input will be very much appriciated . The drama e commermorate the 600th anniversary of King Tilokarat . It was quite a good oppotunities to view the drama , and we also donated the proceeds to the student fund . My freisnds stayed at my house . It 's 3 am and I am still awkae . it 's not that compliecate . perhaps I am the one who messes thing up even if it does n't seem ( ? ) to be important or serious . some moron came to me late this afternoon and said `` you are a failiure , I really do n't think you will achieve anything worthwhile in your entire god damn fucking life `` . Studing English Threr were many people waiting in line , including me . But my freign friends often point them out to me . It 's designe [ ] was so - so , but I liked its shape a lot . Phew , perhaps I should n't get anything with Englidh words on it in Japan before I go to Australia . If you 're intrested in Japan , please feel like to ask me a question ( about it ) . In the monning , I went to the office . I 'm studying at a university of technology , so I do n't have many English classes , and I do n't want to forget this langauge . TOEFL listening section is quite difficcult We are looking ( forword ) to ( thier ) promotion . Trying to practing with yourself and ( with ) others to improve this skil is a beneficial method . As far as I know , the main perpose in conducting them is for human beings . He said that at times , he had to kill molmots ( ? ) or guinea pigs for operations or dissections , if I recall collectly . Am I right in thinking that veterinarian 's proffesion is to save animals but kill animals even if the animals are guinea pigs ? Then I had muscle acke . But I do n't forgetot to drink beer . While she was out , I came into the house and hid in the box which my mother - in - law had parepared before . I have a wide variety of friends from university . They are brain surgeons , gastroenterological , respiratory , pediatric , pathologist . Cause I really hate presure . As I have finished my exams and university semester , thereforce I have more time in the morning , and I can write a more poste in English . I swithed on my favorite radio station . So , I think that my poste is finished . For example : Slamdog millionaire , 2012 , etc . Then , I plyed tennis . But , when I practiced tenins , I injured a foot . Becouse , I did n't do stretches . Korean grammer is similar to Japanese grammer . I mean , because it was a comedy , the only important thing was wheather it was funny or not . thanx for reading . I was surprised that peoplf from Lang - 8 are so kind and polite . Anyway , I 'd like to say thanks to my new friends . I went to hosipitol and I knew I had little sick . . . In order to get a share in the Japaese SNS market , Facebook should focus less on having users upload their personal information to get rid of this unique resistance from the Japanese population . I like coffe when the weather is glomy or rainy . At those times coffe is more delisous . Pafe was huge . . . . The Yakult Swallows , my favorite baseball team , beate the Chyunichi dragons . Shouting the player 's names , singing fight songs and cheering can reduce stress in dayly life ! Tomorrow is the jounior student 's play in the drama club . I have n't even read the scription of it , so I 'm really looking forward to it ! I 've beem there for . . . I suppose this place is one of the most wonderfull places in the world ! Look at the mountines . . . You are simply staying on the beach looking at endless sky and high mountines and smiling because life is a good thing = ) Aprile is the start of the new semester in Japan . `` Of cource , `` he said . `` Please ? `` Here is the topic : `` Does the goverment have to sepnd taxes for UFOs ? `` `` For Japanease people , when we think about what an UFO is , most people probably think UFO is an `` Unidentified Flying Object `` or `` Unidentified Aerial Phenomena `` . I think it should go to pention after we retire or scholarships for students . . . . Recently I bought an iPad , and I 'm looking for the best aprication and the best way to learn English . I like dinking a lot , and I usually only sleep for five or six hours a night . It 's my firt text / entry on this site . In Japan , jounior students start to hunt a job and get the job untill they are seniors . In the Filipine , they start looking for a job after they graduate from the University . I think it 's very hard for Filipine . I went to drink at the bar wiht my friend in the city . I 'm so thanksfull to him every time . Actually , he loosked older than the last time I met him , about ten years ago . Perhaps I can apply for the working visa here in the UK and get some working experiences in a differetn culture from that of Japan . Saying `` What can I do ? `` thing , I might sound a bit pesimistic and seem like I have a lack of self - esteem , but I am actually not that worried . < Character Discription > I asked him what had happened , he answerd `` nothing `` . I presented a neckless to her one year ago . Summer ivents There are many kinds of summer ivents in Japan . We have to forego summer ivents this year in Japan because of the earthquake . I think summer ivents give us energy . My family and I went to a Chinese restaurant to clebrate Mother 's Day . Mom thank you ! ! You are the best Mom . This weekend I will go to Shizuoka to make a speach about my research . It 's quite interesting and I would recomend it . Before coming to Toronto , one of my friends who onece studied here told me Of course , my host is very friendly and their mealls are good ! `` I read a newespaper on the Web . `` But , I feel confident that I wo n't get swine flu , becouse I almost never catch colds . I 've given her a present for her Bithday ; that was 5 days ago . It 's a wall clock , where Winny - the - Pooh is drawn ( we like nice things ) . I 'm looking foward to meeting my host mother . And then , she made a dicision to lose weight . She succeeded at losing weight 30kg and getting her ideal job , which is an editer at a fashion magazin . All emplyees have to evaluate theirselves . `` Did you commnicate with colleagues and customers I want to comunicate with them too . And finaly I 'll travel around the world ! Yesterday was confortable . I went to the elementary school that I guraduated from a long long time ago . On the charry tree , I could escape the sunshine and feel the nice wind . I 'm a little nervous because I have never taken TOFLE before . It 's my favorite meal , especially kimuchi ! The tital is a bit long . These days , I have neen feeling lonely . He is in gradute school . I think remebering other people 's name and calling them by their name is very important . When it comes to remembering people 's names , we try to make excuses saying , `` I am busy doing my own jobs , I do n't have enough time to remember people 's names `` or `` How can I remeber everyone 's names . `` Holyday seasun is coming ! ! But he said in gentle and low voice `` do n't worry about that , just always try to do your best , and do n't make any excuses in your life . `` He said a lot on our way home . He said I should be braver , and life always rewards the couragers . I neet to sleep ! ! But acturely , I forget lots of english , my own english skill is getting worse and worse . So maybe , it is a good oppotunity to study again . Critisism about Japanese Working Condition Before they work in Japan as an immigrant or temporaliy worker , they need to know about how wierd Japanese working condition is . Japanese 3rd year Universtiy students generally do jobhunting in order to get a job from autumn . They register in this site to check up - to - date information about the companeis they want to join . I think it is strongly wierd to prepare for jobhunting while they are studying in university . Starting job hunting from 3rd year is too early for both the stundent and the universities , I suppose . We take 1 to2 hour lessons about what the company 's vision is , what kind of people work in the company , what kind of people thet need . They have to struggle to simultanously do job huntig and write thesis . He said `` I did n't want to work in Japan next year because of its wierd workplace . If you can speak English and have speacalities , try to work in America . I 'm fed up with the Japanese workingplce place ( condition ) lol before I work there . It 's brutal but nobady changes this random phenomenon . Why do n't they go home early ? They are being observed by superviser . In order to be promoted , they can not go home before the superviser goes home . So if the superviser is a kind of workaholic , you can go home at 10 o ' clock , even more , you might have to spend time in the workplace . I heard that Japanese productivity per person is lowest among advanced contries . How hard they work is hard to evaluate under the Japanse working system . If the evaluation systme goes well in Japan , nobady stays late . Waching Mamma Mia unbelievable , you never know what would happen around you , maybe that 's the reason why our world is so coolorful . That reading give me some plesure and I decided to take the title of this book for my nickname . I will wirte a journal because I decided to do everyday . tobay 's menu was chikin , steak and croquettes ! Please check my sentenses . Afterward I could play better than before it happing ! Hallo ! Hello ! I thought that I have n't seen any good powder snow good enough for snowboading this season compared to what I 'm seeing snow in Tokyo . We did our best to make these questions but we are not sure that the sentences are grammatically corret . If you are corret our sentences , I really thank you . ( D ) She stood still onn the spot . I heard that the new place is the most exclusive bilding in this area . We saw The Pirates Of The Caribian . It 's about pirates looking for a funtain of treasure and they battle other pirates . I 've never seen The Piratets series . Of course , I like studying English , but I think studyng the mother language is more important because it becomes the basis for all subject such as mathematics . Yup , I was correcting some texts at midnight when this little creature silently slid ( or glid ) from the yard of my house into my bedroom . Of couse not , but I do n't think they should be killed , because their massive existence is due to our massive explotation of natural resources . My family does n't think my way of thinking is appropiate for a country where not only rats , but also mosquitos and fleas become a great enemy if you do n't control them . So , I finally decided to take my umbrella and I glid its end under the sofa , and then . . . it quickly scaped to his headquarters . . . Meanwhile , I am a bit paranoid , because I just think that it scaped somehow and it 's looking for meeeeeee . . . Tonight I 'm keep writting about my favorite characters . Well , the mysterious stuff , black chothes , mask , cape , every one likes . Also the idea that not to become like his ennemies , he does n't have to kill them , but he knows they will kill again . Of course , it is nothing compared to Aristotle or Montesquieu but whathever , Batman 's also fun . Mainly fun , by the way . In the future , I want to be a teacher in junior high or high school , but before that I am planning to go to Australis or New Zealand for my master 's degree . It includes action , mistery , and partners who trust each other . I got up in this early mornig because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsibility to memorize them with a mor efficiency . ' ' Was my borther reluctant to get up at three in the morning ? ' ' It seems everthing is the same as yesterday . 3 Fujikyu highland ( there is the highest roller corster in Japan ) It requires paicience and a lot of time . The more new knowleage one learns , the more confidenct he will be . Live for myself , live happily every da . And the teacher also said to us , `` Practice your presentaiona skills . `` By the way , speaking pumpkin , halowin is coming soon ! ! For this reason , a heavy equiptment company asked me to inquire about a special air conditioiner for a fork lift . I will entry about some of our habbit and what 's normal in life for my Blog , hope all of you can interested in my Blog . Useally , I practice golf at other golf driving ranges . I could n't get up eary this morning . The government promises to have an election this November just to pretend to be demotratic . It is utterly ridicurous ! I have already left the country , but am wondering how long the Myanmarese people should put up with this period of hardship . The Photographies Of Before and After the Earthquake Here , you can see the satellite photos of Tohoku area of Japan , before and after the big earthquake . For exammple , who will wash the bathroom and restroom ? Others say that some children tend to watch too much , which has a bad infuluece on them . In Japan , TV programs are highly developed adn devised , culture and languages can be shown through the device . Even if people do not visit book stores or shops , and they spend plenty of money on tranportation , they can study culture and languages with pictures . Morevoer , people learn kanji with famous people such as artists and talents . Thus , the level of interest in programs teaching kanji increses dramatically . But I did n't recoganise the number . . . . And 1 guy disapears . Nadeshiko Japan is the reigning chanpion of the world cup . I saw a lot of people who camed to perform Hajj . I enjoyed seeing differnt shapes and colours from all over the world . Becase of it , most of the cherry blossoms have n't come out yet . It can be cooked in many differnet ways . In the West , people offen boil it and eat it with salt and butter . So sometimes my elder sister treated me as like a slave or her followr . This year , I experenced big events in my life , job hunting , a journey to England and graduation from university . I wasn n't happy at university becase it was boring for me . I wanted to go anywhere abroad to study English and I wanted to know a different culuture . that is why I went to England wiht my friends this year for a short period . I wanna speak with foregin people someday . He was borey and he was always looking for food . I thoguht he was poorly taken care of . Althoght he looks like a stray dog , he is the coolest dog for me . I was surprised becuase I often parked there instear of parking in the parking lot by now . IIt is weird becuase I do n't see the red line marked along the street , so I do n't know why it is illegle to park there . I was moved by that scenery because many of these flags seemd to be a part of peoples ' soul . So , my sentences are likeky to have become unnatural and bookish in style . Rather , it 's better to say that I 'll find enough strenght to postpone other matters for studing English , especially improving my writing skills . And the same day , I arrived at Heathlow , England . Originally I 'm not good in Englih , and additionally Japanese learn American English in school . But she recomend a more special one for me . I guessed special means better but more expnesive . But I could n't regect it , because it has already been done . And I have decided that I have to check the price befor the order ! ! ! The writter is a Taiwaness woman who married a pakistan guy . She shares her experiences of Pakistan in the book . `` I think that this book is interesting , because I have a pakistan friend , but I am a bit curious and do n't know what the culture of Pakistan is like . Ohh ! My daughter has woken up , which means another blatting ( ? ) day has begun ! So I planned a trip another prifecture . In Japan Silever stands for our elders so this long vacation is called Silver week . I love apples amd bananas . I was excited at the curling game , accually , it was my first time watching it . But I do n't have somthing like that . * working sampe can be seen here on the original blog * to one 's best adventage Today , I turned in an annalysis report about myself to my teacher in the morning . Lastly , I ate a delicious cake and that was end of my brithday ~ ~ I 've been stydying English for a long time and used to read in English but I 'm still a bad English speaker and / or writer . . . Hair color and cutted My front hair was cutted about 3 to 4 cm . I 'm looking foward to reading it in English . I mande a date with my frined , but she is not the same person I had the chicken conversation with . its gaving us a hard time and makes me feel so lonely because everybody is so busy these days and I have n't found anyone alse who is gon na live with me after they leave . I want to feel relieved and confortable at my home without any worry , and have great japanese food and just get a nice and hot bath . its gon na be so much fun difenitly ! Actually he always helps me a lot and is sinscere to me , The povement was extremely slippery , so I could n't walk [ [ very ] ] fast without risking an accident . If they had enough mony to live , would they still work ? He carried a notebook with him , beileving that he could analyze the winning number . This mystery might not be able to be solved untill dying . And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courge to learn more about cooking . To bigin with , I change the ingredients of ozoni , chicken or beef . By the way , I have a `` MEDIA SKIN `` producted by au . She has a great voice and wonderful pronucation even though she caught a cold . Because it has graduately become colder these days and I need it to keep me warm . When riding on a motocycle , I feel colder than when I 'm walking . I studay English . I do n't like one of the vice - presidents of my current company Becasue he usually does n't talk to me except when he needs some tea when his guests arrive . He always says that he needs to get a high score on the TOEFL becouse he 's going to a foreign university . It leaves me relaxed and confortable , Though I studied English a lot , the score was the worset ever . That 's because , recentry , I found a nearer subway station than the one I usually go to . This year I 'll try writting every _ day to improve my English . I know thay I make a lot of mistakes but with the help of my friends I can / will become able to write better than last year . Becouse , I am a computer programer . I 'm optimatics ha ha ha . I went to the disco where my senior resident living in my domitory was DJing . I tried it again for the second time but I could n't do it like the frist time . I tried it again till I decided to go to bed . Next , I went to the drug store insectcide . that I do n't know the types ofinsects , so I bought insectcide that is effective on all types of insects . He loves theater and all music , from classical to rock . . . . [ BG ] A Thai client wants to sent a sammple to my colleague , and ask him to fill out a form which needs to be submitted to the Customs ( Office ) of Thailand . My herat is full of sunshine , I 'm eating dinner in chinese restrant near my office . I just stayed for 3 months , but I think I leared many things . . . If I have a chance , I want to visit the phillippines again . my friends , teachers , and Korean friedns . . . . . When we are learning foreign languages , we are liable to think we should n't use our mother tougues often . I thought I had a talnet for drawing . What collapses our lives is defenitely our negative thoughts . I have to attend some class that has practical tainig at the industrial firm . I applied neer my home . Nowadays , lots of big companies like LG , Samsung ang so forth want more variety and special experiences . Sometimes my dream chaged . They are able to remenber words faster than adults . This lecture gives listeners how amazing the faculty of their language and raises a quiestion how children learn languages so well . My class and club students enjoied it very much . Jpanese call it `` syouyu `` . Because I do n't know about logocal constitutions in English . The match is between the Rockets and withthe Bulls . Usually we have class on weekdays and no free time for surfing the intenet . Because of their negligence , 5 paitients got HIV infected unexpectly by taking an HIV infected donor 's kindeys , lungs , heart and liver . Now not only do the 5 paitents have great pain over this error , but also those doctors and nurses who did the transplants surgery were not aware of the fact in advance . Diary : Arrainging a recipe There is a ume tree in my yard . When I was a child , it looked samll and weak . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo that has opened a new tarminal for international flights . Today , Haneda starts its fligt service to major cities around the world . I heard from my friend that her frined was lost in the earthquake and I falt sorrya about that . One time in Thailand we had a sunami that struck people arond the beach who were swimming , many people were killed by that . I can study about vocabulary by a reading refurence book . I wish I could have an air conditoner in my room . . . Acutually it should be gradually getting cooler after mid - August , We 've got to be very carellufl and stay hydrated . It 's not related to today 's topic , but I need to mention that a bad thing happend this morning . . . I have to work hard on my experiments and application for the gratuate school these next few days . In nowdays we have so many informations , what we hearn in the radio , see in the TV and read in the Internet . If you are intresting in it , maybe we could follow it together . Take this diary for example , I have written it for about three months bacause I 'd like to improve my English skills . In summer , watermelon is my favorate fruit . In my opion , it is rare for such a big event to be held in China , so I should take the chance to visir the expo . Since I love trevalling so much I faced many problems in order to have a good time . When I look at the pictrues that I took during the trip , I remember all the happy memories . Some people are singing a bit out of tune . * euphemism * But I must admit that it 's far more amusant to hear someone sing out of tune then someone who sings beautifully . Ahum . . . They believe in their voices , altough it 's so obvious that they ca n't sing ! And `` Easten Plays `` is a Bulgarian film . This decision might chainge my life . I played baseball from my childfood . My appetile often disappears when there is a lot of load to take care of . Everytime time I raised my head , I would feel like I was sinking . Third , I watched a viedo about a cute kid who likes to recite poetry . On the Wa - tokei , the day and night are each divied into six parts . Although Taiwan is not a Cristian country , we like to celebrate this meaningful day as well . And I ate a beaf steak and a chicken steak : D I have n't eaten beaf for a long time ! I guess that the air is leaking from the torn cusion every time you sit down . It seems that the suspect did not miss misshoot . At that time , I lived with my host famliy . Thay have three small kids . They must have felt more scarly than me . The thing I like about my university is that the whole education system is based on the one in the US , and that we have some profesors from different countries . It 's all about getting a good start . Never say never is a good song and it ispires me to hang on . Every classroom has a veay largh TV set . My univercity is in Xian but my hometown is n't . He told me lots of things to say in order to have a successful bilnd date . However , very lukily , I could escape from this snow . Consequently , it was not easy to concentrate on wrok . That wiil be a big lose if you have never been to Tainan . It 's really difficulf for me in this process . I 'm studying English at university , and I want to study Korean lannguage next year . In addition , starting the day 's work early in the morining is a healthy lifestyle . Sometimes I wonder whether or not I have made the right dicision to go there . It is very confortable . My teacher started writing on whitebood to explain something . Or is it accedental ? So I will study Reading and Writting hard work is hard wark . . . ( ? ? ? ) His father died of old age , and so three co - workers amd I went to Busan yesterday . I 'm working at a company ralated to the financial industry . As soon as possible , I want to speak English fruently and write sentences in proper English . I was waiting in the parking lot for cars to leave so I ccould park my car . When you 've finished somthing , another thing comes soon the next minute . American football is very hard , but very interenting and exciting in terms of high sophiscated tactics . What is most excinting in the American football game is hard TACKLE ! ! it is one of big skarting boarding races in the world . That 's so amzaing ! I was so excited ! I ca n't beliave that such players exist ! Fortunatelly , my wife and all my family were alright . I have been preoccupied with the news of earhquake and radiation released from the Fukushima nuclear plant for the past week . To be honest , I 'm a bit worried about the situation surrouding Japan . We practice using Japanese chopsticks propery . It 's really hard to explain in English , and it 's very difficult for students to use them that way , because they are not familier with it . One student asked me why I could use it so propery , and I told him because I am jaoanese . Can you use chopsticks propery ? Well this moment I ( space ) Iam receiving English classes I would like to improve my English , because this way I wiill possibly pass the exam . I 'm 29 years old man who also love basketball , soccer , dirnking wine and Hugh Grant 's homour sense . I realised that Usagi - chan and me have a lot in common , so I undertstand my friend 's comparison between me and her , and why they gave me the name : Usagi - chan is very clumsy : I am extreemely clumsy , too . I was interrupted and could n't keep myself studing . He was mad at my coming keeping hime from watching the climax ; I also expressed my rage at the noise about the TV stopping me from my studying and I hoped that he could turn off the TV . I told her that I will acompany her to see a doctocr tomorrow . We will go to the hospital at a half past seven tomorrow morning . My house was damaged and flooded from the earthquake and tunami . I attended the conferense about the next officer 's exam . Ahter all , I hope to be a officer . Though we also use Chinese charactors , it is very difficult to understand . The pronounciation is especially hard to get it . Clearn Up It is wormer here than Tokyo . I believe this website is very useful , especially for english and mandarine chinese learners . Thanka for your reply of a few lines . So I ca n't write in this diary these days and I 'm a little bit disappinting about this . When he kicked a wall of a buildung , a man noticed and confronted him about his act . I want to pratice English . Basically , they are more than 5 minites long . But you will not be bored becase they are stunning and fascinating with vivid words and melodies . I was a little tited , but I still enjoyed fishing . Hieizan , where I dated with my first girlfriend while in university . That mountain , even now , makes me a little sentimental . I started runnig a month ago . Runnig refreshes me . I am going to univercity . Today my classes are `` Social Poricy of EU , `` `` German `` and `` Sociology . `` But she is too caprisious and hot tempered for me . Last night , after the Celebration of Chinese New Year , I text him , `` Happly new year , and I love you ! `` No rejection , no consentment . I took my daughter to the palce where this party was held . My wife also had a year - end party with her colleages . A typhoon is comming . By the way , one of my front teeth is fake and it bacame loose recently . Arter this , a new special lecture will start . We deceide to eat roast pork belly . Today , after lunch , I was watching the news on the intrenet while I was drinking coffee . I was very interested and , I registerd to it immediately . It is universally acknowledged that a pile of things have happend in China ! When it was Feb . in 2008 in most areas of China it snowed heaveily . It experenced a lot . So many things were destoried . Buidings , plants ect . It shocke China . The 29th olympics was held succefully in the capital of China . What made the Chinese sad is the ansrnce of Liuxiang who was gave the most expect . ( ? ) This month I 'm very busy becase I have to do many things . It about the school festical , I 'm a leader of it ; English and Korean studying etc . So , If you want to become my penpal , plaese send me a The Lang - 8 system is a Japanese site but seventy percent of the users are forigneres . If we recited a sutra once , we would live peacefuly in the next world . I had nothing to do toay . Therefore , today 's daialy is very very short . Tomorrow , I want to write a dialy with no Japanese thinking . Saundy wants come . . . My part time job is as a coffee shop assitant . becouse , person not doing anything / doing nothing I like to make peaple happy , I am reliable and I have a strong sense of responsibility . In my job , I succeeded to make repeat customers by meating their needs . Finally , we decided to accept his request , although it was lisky and we waited for his answer till the morning of the first day of event as he wanted us to do . I really appriciate the kindness and courtecy from him after the event . But as for intermadiate class study free - talking so even if it will be beyond me , I want to try it . I recomanded an LG phone as it is cheaper than other ones , but she wanted a SAMSUNG phone . Thanks to her stubborn attitude we spent ' 5 hours ' looking for an internet shop that selld the cheapest one . If the goverment had more support for safe energy , I think we would be able to meet more energy needs . I 'm really lookin forward to that day : D I knew this site because of AERA engilish and I 'm interested in this site . My husband has entried for the full marathon but he has n't run such a long distance in his life ! I do n't want to paticipate in any marathon definitly . I thought that possibly his English is better than mine , but why did n't he directly call the Amrican department rather than the Japanese department ? If he is in America , he should call the American department in English ; so , probably his English is not very good . Having a conversation with a native speaker on the phone can be extremely defficult . They were so old that the corners of them were limp and it was difficult to fold them into a rectangular syape . The sewing machine is my mather 's and its isold and yellowish . I reccomend it . He sometimes made me read sentenses or words and teased me in front of other students . There instructers always cheer me up when I ca n't say what I want to say . My mother - tongue is Spanish so If you are interested in learning my lenguage please be confident about contac me : ) and If you speak English , we can share our knowledge : ) For example , `` I would write diary everyday . `` I would never drink alcohol againg . `` Today I would studay more than 12 hours everyday . `` If you do it , nobody controlls you . `` According to him , a very kind Japanese guy showed hime how to use a public bath . It was very very delightful , because it was for the first time for me to have been quated and reblogged . When I put on a skirt , it coud n't fit . . . The Japanese labor market for telework and SOHO ( small office home office ) is still small . I often see some ducks , so I took some picutres of them . yestoday I posted an article about a museum , and nobody in this website could correct it . The title of that comes from Tofel , but I really do n't think that 's a hard thing to do ! My friend and I went to Dazaihu Tenamangu shrine and Rakusuien . I bought Umegae - mochi ( A - branch - of - plum mochi ) on the street in Dazaihu Tenmangu shrine . Aduls will pay 3000 yen ( junior and high school students : 2300 yen , elementary - aged children : 1400 yen ) to go up to an observation deck 450 meters above the ground . ahaha chihuahuas are too funny . generaly , people think that it is wrong to look at the past , but it amuses me . My weekend plands . My weekend plands are to do my part - time job . The whole time , happiness was flowing across my cosin 's face . But for now , I simply wish that my cosin will live a happy life in the future and have a lovely baby some time . Althogh I read the book so slowly and do n't understand it all , someday I hope I can read fluently . I bilieve that . How about brithen ? ? Please check my Engkish ! ! There were many believers and tourisms visiting the famous temple . However , in high schools , we ca n't choose our classes , same as middle , and elementry schools . So , the Australian goverment granted him citizenship If students go to class and learn , according to school requirements , should n't theose students be allowed to express themselves in clothing ? If school adminstrators would just grant us some freedom in fress , we 'd feel better in the classroom and be better citizens in the future . As per our Chinese tradition , you can tell other poeple you are pregnant until the baby is 3 months . Last Saturday , I got her phone call in early momrning , I was wondering why she called me at 7 : 00 am . I really want to be a good English speaker and writter . Some appications of I pod are very useful for me to learn more English vocabralies and sentences . Do you agreee with it ? Oh , I forgot to mention that our team had 5 memebers and I was the 2nd ( second ) one to do the presentation . We were required to do a team task ( `` do a work `` is incorrect ) to fix two problems - - - who has an apple tree in his yead ? Everyone of us were given 6 sheets which had different information and were told that we could commuicate with others using words , but could n't show others our own sheets or make notes . some example senteces are welcome . I was freaked out and started checking the list of the recievers . I 'll go out since It 's been a few days since I 've gone out , because of the hard rain and strong wind of the thypoon . So ! I just returned made from the business trip to Hirosima . They worked for my parent 's small resort facility , but the building was destroyed by the Tunami and they lost their jobs . So they came to Tokyo and bigan to look for a part time job . It 's my responsibility to help them look for a job and feed them untill they get their jobs . My English listening and speaking is very poor ; this usually spoid my job . There are so many bad things happend everyday . Things have happend , and the effect will not change whether you stress or relax . I mean it 's kind of a torauma . Since we are talking about character , I do n't believe a single judment can be made . It depends on the individual whether it is his family or his social acquitances who carry more weight on his decitions and behaviour . After they go through the first years of their adult life , youngsters usually turn back to theire families looking for support and advice . It examined Royma Sakamoto , who was an historical person during the Edo priod . It 's diffelent from Starbucks . Since then , intricate networks of power lines and utility poles have become prevalant in a short time together with human residences . The variety of neon lights from dwellings illuminated a part of scenary through the window . In Okinawa , at night , the sky is studded with twinkling stars that discribed innumerable constellations . Now the beauty of the neon light from human civilzation are replacing the beauty of the light of the stars . I ordered `` Today 's Lunch Special `` , which consists of a chiken gratin with salad and toasts and , one drink after a meal . Because the first time I watched the movie was at the highst of ( the ) summer . But I ca n't quit this habbit . Actualy , I am a little worried about my financial situation even though I like hot pot very much . We went to an all you can eat restaurant , and the price was NT550 per person , which is an equal to 15 us dollors . Besauce the restanrant is too popular , we had to wait for like a half hour . The Taiwanese guy asked my studnts 's phone number , and she gave it to him . They are friendly to foreigners especiall to white people and will seize every chance to make friends with them . When we said goodby , my friends told me , `` This is the last time we can see you until you come back to Japan from the UK `` . I was moved so muc that I was about to cry . I realizd I have wonderful friends and I should enjoy anything that will happen . We hope that you 'll enjoy tghese new features , and that they will help make Lang - 8 an even more vibrant language learning community with a uniquely social appeal ! I 'm studing English , because I love foreign countries . Becuase I gained weight ; about 2 kg , which is totally intolerable ! My apptie is kind of . . . I was jsut wondering if this nightmare is because of my bad eating habits or the outcome of me working out at the gym . lol But what really makes me nurves is that I rupidly gained weight . I know it sounds silly for boys to care about how much wieght is but that 's what some of Japanese boys have on thier mind sometime ! Yet the proffesor always says that it is `` ok `` . In Englsih It was not possible to go to nanode sea . I 'm going to Ueno Park which has a lot of cherry blossoms and is famouse for them and have a party with my friends this weekend . I 'm a planner working at a web service company which supports small retail businesses emarging in e - commerce . and I arrieved in the city after 30 minutes . There was a lot of delicouse food . When I am enjoying listeng to music on my iPod ( actually , it was a podcast ) , she told me that she felt like getting an iPod for herself too this morning . After I had pancakes which host familly wife made , I hung around the neighborhood . I asked AU about the charges but their answer was `` I do n't know , ask the local cellphone company `` . So I speculated that Rogers would handle this ploblem , but they had no idea about the charges . But I could check some ingredients like thin pork , onion , potatp and carrot , for Nikujyaga which is a japanese cooking recipe . I promised to treat my host familly to it someday . But nothing happened acutually . So I did n't cut conners . so I made and intented to print it out soon , When I cultured plants to test tubes , I have to heat the tip of Erlenmeyer flask with stealize water . And I spraied alochol to my gloves to stealize them . I want to try doing experiments carefull from today . I wish this happiness could last longly . The cakes were tomato cream cake , banana cream cake , and castard cream cake . Castard cream cake is coordinative with americano . A survay says that one ca n't just love only one person in life . It is said in that survay , the average amount of times people `` fall in love `` in the UK is 13 . This survay really gives these facts ! I think it is because one may be attracted by differnt points or attractiveness of different people . fiesty . . . I 'm glad if you can tell me the meaning of `` fiesty `` . Maybe she was scared of my voice and was warried about me . However , I 've just gotton well . In addition , walking around and hiking aroud parks and collecting flowers and some plants are also good example . There were some Chinease some Thai and some Japanease . Casuse I have stayed in Hong Kong and Australia for a few months as a student , I remembered feeling so free then , as compared to now . It is a pitty that I can not get back there , but I hope and expect that I might be able to work at an overseas branch office someday . I tagged `` my cat `` on my facebook cuase I like this title . Becuase this title makes me laugh . Nowdays the cold weather defies description . But sometimes I can not follow ( the ) cultural diffrences between Holland and Japan , especially being naked in public such as a street or a park . Besides , I do n't like Sasimi . However , thoes factors also make rafting very exciting . But when I meet a foregin friend , I do n't know how to give an information in English . acually , I had confidence about my English skills , and it 's true . But only with grammer . . . I 've been thinking that Korean and Japanese are very varied and higly developed in respectful words , on the other hand , English does n't have any respectful words . artical . Then , I dreamed I went back to Japan but I felt bored so I cabe back to Malta and I started a job at a souvenir shop . . . Many pepole think that Japanese cats generally eat fish . I must pass the exam and continue to state univercity . For lunch , I cooked an omlet containing fried rice . He told me everythig is ok , but there are no trains running just after the earthquake occurred , so she was on her way back home . I hope everyone in Japnan is safe . I write a daiary in english and I have studied english for a long time . I was sympathetic to the fact that creating a sastinable society means help from not only people in the government but everyone . Although I think the tric to make it is difficult , it is very very important . To be honest , I think what I said had some grammar and prononciation mistakes . Firstly , they are both the most important day in westen and easten conuntries . Then I need to change all the address registations on cards , insurances and registrations asocciated with the internet . So , My younger brother and I will invite our close reltatives to a seefood restaurant . If not , he would set fire to the home of the president of her agancy . They sent them to the hopital . My mother and older sisiter scattered roasted soy beans all over the place . It also took more time than I had expected to fill ont the application forms . I gradully am coming to love this school . What shold you do to make your dreams come true ? I do such as eating , sleping and seeing people . Today , I ate 3 sushi and miso soupe at Melbourne Central Station near my English school . One of my habbies is flying RC planes . I made a new RC plene . The first flight was a nice flight but an accident occured on the third flighte . I corrected and evaluated the compositions of 20 examees who took short - tempered Japanese training . I want to ask of a . farvor . ( Sorry , I do n't know how to explain it in Englishi . ) I tansfered at Taipei . Fortunatally , it was low water season so it was n't much harder than I expected . I love this seasen in Japan so much . Teenagers spend all their spare time serfing the Internet instead of studying . The point is : if you have the main consepts of a question , you can make any theory based on them . I bought a pretty pair of & nbsp ; hot pink shoes so I can wear the new shoes tomrrow . I do n't want to be pesimistic , but my current workplace was a bit wierred . . . Fortunately , with the progress in modern techonology . convienent . . . etc . Housekeepers can store some in the refrigraters and quickly prepare the meals for the whole family . frozen food technology and the new equipements allows people to accecibility and the convinence helps these people a lot . Critcs may argue that the frozen food could have less nutrition or they can not offer the balanced nutrition that people need daily to keep In my opion , it might be an old angle . in the aspects of fastness , accecibility , convinence , safety . . . etc . Electricity and tapwater have been stopped in Ibaraki where I live 100 km north of Tokyo . One of my favorit singers is Shouta Shimizu . Now , a typoon has hit the island . They said that Americans support the underdog so they supported Nadeshiko Japan who were competing against the chanpion , the United States . In Japan , there is no such word as `` underdog `` but there is the same spilits . Iventualy they became rich . Today I have a / the day off and I will try to spend it usefull . I will try not to be lazy and I will try to do what I 'm planning for the day . It 's rainning today . so I 'm feeling gloomy . It has been rainning since this morning . When I was looking for a hetol . Blue seas , blue sky , seafood , a beach , sunshine , flowers , all of these are familar to me , and days pass on very quickly . The Tonkatu mede in this shop was very delicious . This makes them lazy in learning a foreign leanguage later . I will ask many questations and try to be friends with the teachers : ) I envy that Europians allow ( permit ( ? ) ) them to play music there . ( Permit is okay ) She was helpless , crying out for help , and then , from the ashes , Harry Potter came to help her , using his spels and a magic broom to defense the scared ladie ! But that which not even Harry Potter had expected , happend : Hermione came all the way from Hogwarts with her new husband , Ronnie , and killed Harry Potter in the worst way possible , with a broken heart . I used to go out with my wife to visit gellery and Because even if I do n't know them personaly , I felt their love and passion in their music . When I speak and write English , I always feel the lack of my grammar skil . We chenged to another point . so I went to `` home plus `` whici is a kind of super market . in the car returning home , I was happy : ) I bought some apples , a headset , sparkling water and some plingles . We had some bread for breakfirst . I decided to not use translator to look up how sentences shoul look . She looked after us , told us many intresting things about life in Sweden , and introduced us to Swedish cuisine . I love reic more than noodles . I would go on dancing but I do n't have enought money . Every culture has their own traditional way of conducting their wedding ceremony and of courese , we Koreans also have our own style . Accessories like a ring , neckless and bracelet , hanbok , Korean traditional clothes , and more . In the winter , you can go sking . Please say many coment ! ! ! ! ! ! ! ! ! I want to speak English fluentry someday , and I want foreign country ` s friends . kanojo no oba ha ( kanojo ni ) okurimono wo . susumimashita . Kanojo ha kare no heya wo soujou shimashita Ototoi ajia kappu de nihono no sakka chiimu ha kankoku chiimu ni kachimashita kinou no asa okaasan to issho ni isha ni ( byouin ni ) ikmashita . sochira , sukoshi nihongo wo renshuu shimashita . Onegai ishimasu We will make some sandwitches and salad . I visited my freind house , and there were many people there . I cooked some dinner for guys . Before cooking I left my wacth on the table . However , I 'm not sure my wacth was on the table . We had dinner and enjoyed each others company and passed the time . Then , I wondered `` where is my wacth ? `` I was looking for my wacth but I could n't find it . While I only bought it for 10 dollors . I am really rond of this site ! The Chainese wisky called PAISHU that my chainese friend brought for me as a souveniors , is too heavy for me . But my stomack was satisfiied . Howrever there is one problem . I already know about the problem , so I will try to be deligent . Do you think thart I can sleep enough tonight ? In such occation , it helps to just say `` Dobin , Chabin , Hage - Chabin `` on the street in a loud voice . It 's Goden Week in Japan . My reserch was in intellectual law , especially patent law Of Ofcouse my reserch was very difficult , but I loved it . Therfore I decided to go to the Fukiware falls nearby . For the first time , I know that Lang - 8 is a good means of studing ENGLISH . All the people in the village were very grateful and created this danse . I feel so bad after getting angery . Gundam seed distiny Is he a clone of the armer polot army pilot ( ? ) whose father is a heroic astranaut ? I had no plans to begin with so I went to school to check if the exchange list and the exam scedule was available yet . Since there was a lot to talk about , I went with her to pick up her new pasport and she acompanied me to the supermarket . My friend wich I was shopping with also does the same . I was very amused because I really want to develop my English writting skills . Awfull . . . I belonged to rhythmic gymnastixs club . Reading artcles and books about astronomy , science and world business is also my favorite hobby . We do n't like them because they 're good at all sports ( football , tennis , cyclism . . . ) . They eat horrible things such as jely or pudding , which is one of the most horrific nightmares for a Frenchman / French person . - Africans ( black people in general ) : they are lazy , only good at athletism or football ( and they 're not technically - minded , they only run ) . French in general : it 's agreed that we strike , critize , and complain too much . And my car will be totall after test - driving it ! I only hope that when she wants help , I will hlep her . When I knew that some famouse killers are affected by this book , it really intrests me . Secoundly , I did n't understand well about why the book have such power at that age . Last but not least , I like Holden 's sister , Phiby , very much ! Today , I have become a new member of lang - 8 , this is so exciting . It 's very intresting . So many people from other countries , they all chat about language and exchange ideas . So we all can improve ourselves . I used to be able to play tha piano . When I arrived at the studio , the cute staff took me to the reception and asked me to fill out a questionarie . I want to be a reseacher . Hi monkeys , you are wilcome here , but please do not steal my food . She is kindful . These seeds weed out other plnats , so the diversity of nature will be changed . If tge diversity of plants is chnaged , the diversity of animals will also be chnaged . The scosystem will be destroyed by GM seeds . If we chnage our lifestyle and are more interested in protecting our nature , its contente was meant to improve communication skills . 1 ) an eye opener for humns to see something amazing / a way of entertainment . We talk about how digusting the teacher and the school are . We all have no freshness for the new semester like before , everything is so familar . I was a system enjener in Japan , but I want to find anothe intersing job here . I was so sleppy , I could n't consentrate on class . Being hitted on Me : No , Janpanese girls use a lot of makeup ! Many girls make chocolate on thier own to give it to their boyfriends . But Korean girls are previliged because we have White day ! ( So I personally think it is really girls who have the right and power to make a choice . ) Sometimes boys give some accesories or other gifts with candy to their girlfriend ( s ) . But if you are in a relationship and say to your friends that you are not going out with your boy friend on Christmas holiday they would think it is a little wierd . Ah , this is a stroybook for children . ( For me , this is better for languages like corean , because study material is limited in my country ) . They tried to talk to Japanese weman , and never to Japanse men . But convesation did n't last for very long . yeasterday I went to the supermarket . I was surpriesed , so , I bought it . Infact , I am a vegitalian . I always eat carrots , bloccolies and so on . how abou everyone ? I 'm looking for new friends and pracise English together . I 'm Korean , 24 , femail . . People who ca n't see theirselvs do n't need help by a dog . Rowling `` who is of course the auther of the Harry Potter fantasy series . I registre on this site because I want to learn English . Anyway , I 'm studying real English , rescently . . . . Debuit ! He ack that he really cares a buppy in the computer . I wonder if I need to put them in the refriger or leave them on the counter . It 's gon to come and take my Tarot is a way of fourtune - telling . I 'm a fourtune - teller . Fourtune - tellers has a part of counselor . So fourtune - tellers need the ability to listen to other people 's tellings . Many people who need a fourtune - teller have big problems . If you want to be loved on sightby everyone , becaome a good listener is very important . I have a violin compitation tomorrow . I bouat iPod touch , but I do n't know how to use it . Am I luckly ? An important feature of phrasal verbs is that they are tipically idiomatic . Recenly , I had a wonderful time . I have discolvered this website today , and , as I want to learn English for my job , I have decided that I will write one message every day in English . But when I left home , the sun was shinig brightly . I 'm going to send New Year 's cards to my old frineds as usual . I will get on a brigde to see the first sunrise . I have interest in language and cultrures so I begin to study English , allthough I ca n't speak English , French , Japanese I will never give up So this is very difficult , but I want to speak in English verry well . So I want to find an exchang language friend . Let 's be friends ? I have funny story about getting this nickename . My name in Russian language can sound like Shura , wich is consonant with this tasty food . The dish is made from grapes juse and nuts , and looke like red sousage . I have a bolg . You can insert the googole advertisement ' Adsense ' . That was a wondwerful event . I have to cook my father 's dinner at once , because my mather is out on a business trip today . Nobogy is walking now . I have been reading about the presect perfect . Have I learned how to form cuestions properly ? But I do n't know how I sould study English . This is my first brog in this SNS . In the end , the song we played live was LAST CRISMAS . I was suprised to know the way different kinds of diets . English grammar looks simpler than Polish , but it has many more prefixes and sufix ( suffixes ) - befor and after any word . The question was ' If you only had one year to live , whato would you wanto to do ? ' . However , if my life only lasts one year , I 'd want to go to aroud the world by ship . So I am studying English as a global lunguegh . Especially , it has so many moutain . I often walk near the moutain , and I am always moved to see beautiful nature , I found I am very tired althoug I have done nothing . We have to live separetly for the next 2 years . Yesterday , my wife and I enjoyied talking with Skype . After I checked into / After checking into the hotel , I went to Union squqre to meet the private cable car that would take us to the dinner restaurant . It has been a while since I 've wirte here . So please keep wirting here and I will continue to support you . I 'm depresseed . Yesterday I lost my Polish - English phrasebook when I was buying coffe . It is smal , red , and it looks like a dictionary . My wife is flugal , my children are well - behaved and cheerful . I want to try to understand forein people and get various living in a storanger country , and I have no confidence in my English . I like The Beatles , The Rolling Stones , and Simon & Garfancle . to stand in the sciety . and stayed loyal to Frodo although the latter misunderatood him . The reason I went there was to buy some vegitables and other things . New onions and potates are sold this season . So , I bought thier in the vegitable shop . I also bought eggs , stroberry , milk and so on . I was surprised at that there were so many people there on a Sutsurday moring . I throught I would n't be able to go to my music club today but I could . I went to the college 's clab house where I usually enjoy playing and listening to music . But I am nt surprised . Why is it that I live in Australia but ca n't make one Austrlian friend ? On the way back home after finishinga whole day of study , I thought about my parents who are working damn hard tosupport me studing in Australia ; I could n't stopmyself crying . They are 50 years old already but are still working 10 hours a day for their disappointing daughter who is a stupit burden . . . . and I 'd like you to help me with Chinsese . gendle : male Major : eletronical engneering and computer science . This are speziel plants , because they subsist from / they survive off of vermin . I have to achieve this goal before Chinese New Year , because I want to wear beautirul clothes , so I just have three months . Why are neighboring countries like China and Korea developping , and why is the Japanese GDP falling ? ? ? Koren drama used to be famous in Japan a few years ago . The first three days , we 'll stay in Chairns . Sometimes a student asks me some questions about the English grammear textbook . It 's ranining today . That 's because I like sunbasing , swimming in the open air , and eating the freshest fruit . I 'm going to get wonderful bronze tan and a lot of unforgettable memories and good fotos . My neme is shige . Nicee to meet you . Because I want to study abroad and go to law scool in America . But my English skil is poor . I deside to study English through this web site . I used to commut by bike . You are ( all ) invited to my Japanese style homemade ciber dinner party today . Vermicelli soup - Seaweed and Okura Oinari san - Rice ball wrapped in a thin slice of sweet flavored deep fried tofe . Savory consomme Okura cold jelly How can I controll this emotion ? ? The nuclear powor Japan has been having trouble with the nuclear powor . We ususally gather to admire the bright mid - autumn harvest moon and eat different flavours of mooncake . If you have time to help me increase my vocabulary , I would really appriciate it . I do n't think we need that musiam . They are crazy and makes me frastrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped Ross & Rachel , because I always thought they belong togehther . It 's because speaking needs quick response and what 's worse , the order of words in a Japanese sentense is quite different from English ones . After I start talking , I realize that I should have started my sentense in a different order . That 's why I decided to start writing English sentenses . Mie , where I live , has a fantastic city called Matsusaka , which is famous for delicious beaf : D My frind and I stopped at a convenience store to eat icecream . I want to have frends for all over the world ! My sister needed me to help her tanslat something from Thai into english . But I am not good in English . So I tried to use a tranlat program to help me , but it got the the grammar wrong . So , I 'm going to ltaly I have to admite that when someone says that he or she loves [ enjoys ] my writing it makes me happy , but that is [ that 's ] not my reason for writing . I had to write in English , but I 'm afraid it is not [ it 's not ] good enougth to write something good / interesting . I 'm a unuversity student . I do n't know why or how they treat their bus , because everytime I took the bus , during the drive I worried that the bus might fall apart suddenly . ( the bus company is located at a small famous town ) BTY , the buses were extremly old , old enough to be junked , but I guess new buses are too expensive to afford . Today I will introduce my favorate building ~ The Great Wall . The labor force , composed of prisoners , soldiors , and workers , built the wall . I entried the university and chose english literacher as my major , and I read a lot of english books every class . sexual and humor ! ! However , I take a senior course which is associated with my minior and that course 's professor is the chair of that department . The professor said to me that he knows I 'm an international exchange student , but I have to speak more about the class and the next class he 'll give me questions about a main sbuject . I think it will help me to learn about English , but I 'm starting to feel little vervous about that . Right now , it is very fragrent in my room . I was in right field when we were in diffence . If you need further information , pelaese let me know . I heard that American or other countries ' university students are more serious than Japaneese students . He is ereven . He plays games evreyday ! Recentry I 've had trouble sleeping . How comes it 's dofficulty to sleep ? I want to buy skeating shoes . I 'm from Osaka in Japan , but I live in Santa Barbara in Carifornia now . I have staied here for 2 months . I really want to watch splended dances from around the world from now on . When I write a dialy in English , I have my English corrected . I had nothing to todo today . He always thanked her heartfully . What I Think from Reanding the Newspaper Many comapanies have disclosd their financial results between April and June . Of course , the earthquake also hit the Japanase companies to a large extent . I started watching an episode from seoson 1 for fun . Recently , I have been watching the 13th episode , of seoson 3 of that drama . My husband told me `` You look like you are addicted to that drama . . . `` However , I think it is entertaining and I think the writer of that drama is a genius . Others said if Ilisten to English ( English what ? ) one hour everday , I will be surprised bymy English after listening a month . I prefer to as a foolish Old Man , and do something everday , and finaly I will be successful . They were 20000 yen ( 200 dollors ? ) She is a conservative and pretty girl , so I gave her a short message to say : ' I love you ' . I thought she might be scaried , and she said she had a boyfriend already , and they were very happy , of course , there was a rule that teacher ca n't have an afairs with a student . . . . . . I would apeciate it if you could edit my writing or even leave me a comment ! I like snowboarding , but it 's too cold to go oursideX X - < I 'm planning to go snowboarding next Sunday , I hope that the weather will be good that day . I kow but . . . . . I paticipated in a free trial lesson of English conversation today . I think I will not pass the exa . I have three chances to take the exa in this year . It was just a nap , but I slpet nearly 6 hours . . . I would like to tell you some detalis about my country , because many people have misconceptions about Poland . I want a job as a mashine designer . Somes scenes were pretty groce , but I 'll spare you the details . I have been checking all of the sysrems and funtion in ipjone So one of my new year 's resolutions is to publish at least onea diary entry here per week , even it will only contain a few of words . I 'm also ironic , sarcastic , audacious and really arogant ( You have no idea . . . ) . I 'm going to go to Tokyo tomorrow , it is a horiday . I had no horiday during this summer vacation , so I want to enjoy and relax . The womam said to me : `` This llama belongs to me , and I want you pay me for the picture ! `` I decided to give her some money to help . Everyone everywher wants to get money from tourists ! ! I thought he would just play around and not wander far away but , suddenly my dog wasdisappeared and I tried to find him . But I do n't want to because of the recent situatuion . the illegalization of marijuana was done without any studies . Yesterday I was caught in a shower when I went out with my girlfrend in Ginza . It encouraged me to commuicate with others . There were also a lot of people who spoke English well . They could speak with others easily and express theiy thoughts and ideas clearly . yoiu can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get piss off and say that I 'm having a bad attitude . We arrived at the beauty shop at 2 o ' ( 2 o ' clork ) . I hate rapair to the train in the morning . I feel that the Jaanese are very rough and that Western people are more like gentleman riding horse . At the drop of a hat , I 'll dump somothing into it . I think he has a good personility . At lunch - time , I had a supecial lunch . My myfriend is a chef and cooked Japanese food ! First writting This is my first writting on Lang - 8 . I just found this site out accidentary , and I think it will help a lot to improve my English . The other ingredients are Tofu , cabbege , pork and mushroom . The robot girl can smail . Hallo ! This is first time to write a dialy in Lang - 8 . Please correct my dialy and be my friend ! ! ! This is my second exam ( I have taken ) sice I came to UNO . My father , a retired policeman , said that if I want to be a policewoman , I have no need to get a Master degree and a Bechelor is enough . Although `` know all `` is an ironical word , I still persue to be . I counseled a cliant for my assignment , not for money . We need to cousel other people and write reports . The word means boys who can not take an avtive , aggressive or enthusiastiv attitude , and do not have an affinity towards girls . Like hourses , rabbits , and so on ; not like lions , tigers , and so on . Personally , I do n't like effermirate , delicate men , so I hope `` carnivorous boys `` will increase more . Tomorrow , I will have my favorit class , so I hope my cold goes away soon . I had not ridden a ferris wheel since I graduade from school . whennever you need me that I wo n't be far away . He told us this joke ; What 's the difference beteween a pregnant woman and a ligt bulb ? I have used this tool to train my speaking skils . I 've studied English in order to obtain skils to read and write articles about various science articles . In short , new scienctific words continue to be created . The clumn went is like this . However the balance of your account is resetted everyday . This meams if you do n't spend all of your money , the rest of the money is lost . So you should do the maxmam with your ivestment . In fact , I think it is very good to study English with a textbook that is written in englsih . and I think using a Chinese for Chinese speakers textbook was pritty good . Years have faded away many peoples ' momeries , but Hachi 's memories never faded away . I just do n't know how and where I shoud start . `` Some of students said that they were good at Englsih . `` Also , I have to write some reprts . . . Please help me to correct my artical . What 's the difference and how can I use it corectly ? An advertment I always hear the sentence ( nan datta yo ) in the animes . Do the lundry . I 'm goning to work starting next Monday . It 's a little bit difficult to sing English lirycs , and memorize it too . so we dicided , we went to the Chinese restuarant . We orderd sisami chicken . The Oevertime is usually 1 or 2 hours . I like to creat games So I like to creat all kind of games . I want to make freind all over the world . When I try to write a sentence in English I 'm composimg a gloomy centence every time . I have leant English for many years , but I have not found a good learning method . I always see the spellng sheet before the test . The neckless with two stars is his favorite one . She was so friendry and smart . I 'm gon na write diary entries and essey as much as I can . We can help each other ! The whole world is so excithing , is n't it ? Just after running , I thouht I did not want to run , Now , I have a little masucular pain . I would love to learn feminine stuff that relates to American culture from her while I doing langauge exchange with her . He is a panist and accordionist in England . Surprisingly , she atteneded the same university as me but I never met her on the campus before . I have studied engish hard since last month , , , it 's our city 's most inportant festival , because the man who created it was our king . I will keep on writting , studying hard and become a good speaker in English . The Autum colors I love to see the autum colors . But I always fail to go at the best time because I ca n't weit and go before they look the most beautiful . Since the temprature in October was so high , , the leaves changed their colors later than the previous years . It is my secend time traveling in GuiLin . The last time I went to GuiLin was one year ago . This time I feel GuiLIn will be a little noisier and it will be more moden . The environment has been broken . I worry about whether in the feture GuiLin will lose its beautiful scenery . Tish time I stayed in YangShuo for three days . It makes me feel like YangShuo is so small . There are too many people in YangShuo . I do n't think YangShuo is OK with so many people there at the same time . However , I must get the skill of writing and speaking English for buziness . I am shooked ( surprised ) to know the reality about people living in a suburban area . We enjoyed going to the grocrery store , preparing the BBQ , and talking about recentry things . I ` m a freshman at meisei universalcity . I study english everyday . I think studying english is very interestig . Because my unversity is in Seoul , I 've been separated from my parents , who live in Chung - ju . The reason I took that exam is that it will help me to manage a buiness someday . I went to watch movie of brasil presidente Lula . I was so excitited . when we talk each other , I coul n't help but feel embarrassed and stammer It was very hard , but it is very helpful for my work as a cashier : ) I am still in trainig ; however , I have to run the till by myself . I was delighted ; therfore , I could really enjoy working today ! It has been a long time since we had been working together , meybe 8 years ago or so , but we still get together and go drinking around twice a year . By the way , a Japanese actress whoes husband is American said , even if he is in a bad mood , once he eats pizza he changes to a good mood . I 'm glad to have joined this community , because I want to communicate with people living in other countories and to learn about their culture . Even if I had a bunch of oppotunities to listen to English , I had n't realized them . They were very beautiful and looked like big frowers . Finally , Tegomass whichi is a Japanese idol unit appeared on the stage . I was so crumsy , was n't I ? But thire power was great ! Even though I hav n't watched this match , I am pround of the whole United team . Shirakawa - Go is one of Janan 's World Heritage Sites . This paper presents an approach to support top - k flexible queries using Knowledage discovery in large data bases . The new portable game machine Nintendo 3DS was released on February 26 in Japan for the first time in 7 yaers . I 'm curuous about how many people will buy it . Pssive : Fruits are going to be eatten by me right now . . I look like I just had my hair parmed . I made a lot of foregin friends and learned a lot . I ordered a new iPod touch from Amanzon on September 2nd . My friend told me about this website . When I joined in , I found that it 's very intresting ! I 'll write something to describ my life , and learn English with you . Seeting Arrangement I confess that I have worried a little whether I can graduate or not , sinse I submited a master 's thesis . I am going to intoroduce something I have learned , because it might help you if you live in Japan . It is the etiqutte of seeting arrangement . In Japan , higher - ranking people should have seets which are in the inner part of the room . Thus if you invite your customers and clients to your office , or if you entertain your guests at a restaurant , you should give them the seets in the inner part of the room . And you should sit down at a seet near to the door . Conversely , when you are invited as a guest , you will be offered a seet in the inner part of the room . I 'm sure he was very anoying when Rowling sold millions of books . For example , Whriting a blog becomes rpresentatives of morden life . Also , I write various kinds of blogs . It seemed he understood how difficult it is to manster a foreign langage . When he was a little , his parents encourag him to do everything which could do himself and treated him as a normal person . The minimum tempereture in Tokyo was about 0C . I like some American colture . I often practicing dancing with my mirrow . However , I can dance freely at nightclubs . Hellow everyone ! Her neigbours ofen helped her . But I dont know what should I do , erveytime I look at a long English article , That morning , we got up really eary and drove all the way to a distant aquarium . It was good to see the orca , however , I had litte time to watch the other fish inside of the aquarium . It took me several years to streathen my perseverance . I often change my mind easilly and fail to get through some difficulties in my life . My friends once said to me , `` You are n't matuer amply ( enough ? ) . My writting English is better than my spoken English . and encorage each other . I will stay in Colombo for about helf a year . But there was no coloer that I wanted . Her clear explantions were good . She even included a picture of an anvil , which looked weird and untique in my eyes , especially because it looked like a horn . Well , I 'm likely to faint with fatique , because I did n't rest enough . As a matter of fact , I spent about two to three hours talking to my friends on Skipe and serfing the internet , so I did n't have enough sleep . It coudl n't be helped . The least I can say is , I did n't waste my time thiniking about the things I could never change . My job is as a privart tutor for a student . I have recognized what I really do n't like about coold wheather . Every morning wokeing up is so hard . I am sleepy . . . and outside also is coold . It makes my activition smaller and smaller . Idom of the day : ) Whenever I go home at night , I would stay overnight at Naijing and take the next avaiable bus , in morning . It was so difficult for me while I watched this mivie . I nvever thought that I would have to face that thing at this moment It 's nvever a problem for me and I always know what I want . What should I do ? Shopig Mall Glee is about high school life and musical darama : ) `` Soybean fliur `` is called `` kinako `` in Japanese . Today my choise was Mary . One sentense , or one word , I 'll be happy . I start writting this diary today . Today , I 'm very angry besause students at my university break the traffic rules . There is a large road near my school , we must n't cross the road near the school because it is heavy traffic and it 's dengerous . I like travering ! ! ! ! I wish I can get to know about lots of eresting things here . Hopefuly twice a week . so I became a nember of a gym which is very famous here in Toronto last night . I 've just watched a sad episod of a korean drama series so I feel very sad now . It helps me to learn a lot of information and knowleages about computer and software devices . I know the Linux0 . 01 architecture and how to impletement and compile it on my computer . But if I did n't go searching any opportunity to meet such people , I could only see my collegue . Most of their minds are limitted . I 've felt so lazy ever since I moved from Seattle downo to San Diego . I ca n't even count hou meny times I get angry at them from the moment they wake up until they go to nursery . I think I have the ability ( or potencial , which is better ) to study and enjoy tourism or hospitality . Give me a chance , I can prove my strength . I spent an hour everyday , momerizing new words . I worked hard indepently everyday . I usually went to the library to momerize new English words . So he decieded to try again . I sometimes have difficulty reading an article or paperback , which is wrriten in English , more than usual although I do n't know why . The manager must speak , read and write Engish in a high level of proficiency utilizing technical terminology . I 'm not authorized to make a dicision from my company but required to make a dicision for my client . Today I registed a Lang - 8 account . Nowadays , mobilephone phones are rapidly becoming common all over the world - even elementary school students have one . I had work untill 12 : 00pm last night and right now it 's 8 : 00am , the morning again . I work for a Japanese restaurant as a waitless remove the vacteria on the surface of your body makes you weak . For example , he never eats at fast foods and he recomend And he recomend for me to friend wnet to interview in at the university . Curry is hot , nan is a little sweet There was a mirrow on the wall in the Cafe house . When I reliazed that , I could n't stop laughing ! Youtube conetents is good for listening practice . Afterward , almost all of my colleagues went drinking aggain . However I do n't know if I will be able to do it this year becouse of my busy life . Oh my God ; It cost 80 thoundsand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price ; just 10 thoundsand Vietnam Dong . I have been living in Melbourne for 1 year , I feel my English skill is better than before , but I sometimes get disponted with myself because when I listen to news on the radia or watch TV , Recentlly , I have been studying for the TOEFL Test to study abroad next year . Because it is so different from Japanese grammar , and there are sentences which contain difficult words for me , for instence , `` anatomically `` , `` Confederate `` , and so on . Nothing is diffcult if you put your heart into it . So I believe I can be a good doctor in the furture . I 'm sorry I posted a new jornal . It 's great cuase you can go there just to kill some time and end up staying there overnight . This week is bery hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAMI STREET podcast on my ipod in English . Koreans are usded to having an English name for easier communication with foreigners . The closest prononciation Becuase there are duties to do everyday . Besides , I am a little uneffiecient so I cant do those quickly . In my city electrisity supply has just recovered . With angel faces and perfect body proportions ( tiny face with long legs ) , they seemd to walk out from the pages of a fasion magazine such as GQ or ELLE . I remenber some reserchers said looking at beautiful women can make men live longer because they can ease men 's blood pressure and make them happier . I 'm so interested in other countries and culturel exchange interchange with many peple . I guss my English is wrong . I realy feel that I have to study harder One youger member asked me a question . I also have some appointments to have meals with my friends and colleagues this Demember . my reasons to stady english so I have to aquire English to work well . My plan to study english is to write english compositions and to watch the DVD `` Friends `` , which I heard is an intresting comedy in English , every day . I heard there is a good Gyoza restrant near my house . Lately , if customers do n't exchange their cell phone , thay can not switch to the low - cost - plan . The other day , I went shopping , I spluged on clothes . down the darin . You had better think more before you pick someting up . But I ca n't go beause of heavy rain . . . I have been studying Chinese for six yesrs . Midd - autumn festival According to the law , every Chinese can get rid of their business ( stop bussiness ) to celebrite and enjoy themselves . So , in spite of ( despite ) the high fee , we are glad to celebrite it . Help me pease . By the way , I started exercizing with a jump rope today . Today I went to an At & t store and had someone put the screnn protector on my cell phone . I went for a rounf of golf early Friday morning . I 'm a biginer at golf . This place is usually for taking shower and has souna . If you come to Korea , it will be a good expirence to go there . The new one is always better for a visiter . So now you can make sence why people go there to sleep . It is like a domitary room without bed , just small mattresses One for taking shower and others are for souna and entertainment Some store have many programs during the day such as yoga lesson , dacing lesson , etc . Koreans have a tipicall way of taking shower . and he lives as proffessional composer . Reading a philosophy cyclopedhia Tomorro I 'll write more than this ; well I think so . See you later guys . I ate a chiken curry . I did nothing but drink alcohl . I want to communicat with a lot of people . I sutdeid English tonight . I started reading the book , Wnnie - the - Pooh , which I received from my best friend Yang - gaeng . The writer explained why his name is Winne - the - pooh . Because I am a begginer at English . The writer encoureged Piglet . In spring every year , Japanese hold partirs in which they welcome freshmen . A few days ago , a drunk celebrity was arrested on chage of indecent exposure , but many people signed a petition against this . I should say `` arigato `` to him . It is my first time to use this bolg system . Probably most of you hav n't ever heard about Miaoli before , since it 's not as civilized as Taipei or Kaohsiung , but it drew people 's attention by holding Taiwan Lantern Festival this year . But it really was a great festival . You can see my picutres . I beleive that there are many pictures of the Taiwan Lantern Festival . If I want to use those three drives in the new one then they must be all connected by a ribbon cable to the mainborad of the new one . From the last day of April to the bigining of May , many people have had a long vacation which is called Golden week in Japan . during the mid exam priod , I did n't have enough sleep . there were two guys who have big musle . when I finished it , I could n't lanugh about myself ^ ^ I appriciate thier help and advices . I also have a lot of apppetite lately . I 'm focusing on studying English now , so I do n't exercize enough every day . Kiyomiya , a very famous director of a Japanese prfessoinal rugby team . As well as me , my boss is also lookinng forward to meeting ' lang - 8 ' staffs because we use and like it a lot ! There are differense kinds of ' Mikan ' . She answered it is caiied `` mandarin orange `` in English . I will have to take this exam tomorrow becaouse the exam needs two days . I ` m the socond one , today . I showed a taxi driver the acctual adress of my hotel but he did n't know the place . I dicided to ask the taxi driver to take me to a place close to the adress and get out of the taxi near the hotel . I lost my way and walked for one hour with big baggages . ni - men - hao ! ! ( Hi volks ! ) Yesteday , I wrote the sentence which I wanted to have corrected . I 'd like to use this valuable oppotunity to improve my English ability through communication with people who use this site . Though I read my text book , I ca n't juage if my pronunciation is right . treatment due to their wealth and celebrty status . pernabebtly though he later said he did so willingly . They say that while ican African children from their extended familyis , Do you have a favorite ? My brother , his family , my sisiter , Me and my husband my husband , and I gathered there . If there are any disadvantages , it is that I have to get up ealry to go to swim . Especiall how he used a trick get bear sick . Ichiro has set a record of 200 hits for 10 straght years . When you bite into on , it will dawn on you that the yellow part of the egg is solid and the white part is riquid . I went to check for the time when a ship would depart [ back ] to Puert Galera . S through the lauguage course that the university I 'm studying at offers . Hellow . Especialy . He is shy , so I thougt he would hate me . ( = this means grandmoter ) `` , and he wanted to hug her . The memo 's contents are life , dialy , work and so on . I want to study Engilish more so I can talk to foreigners . I have to be carefull to avoid getting influenza . Today is Chritms Eve ! I hope I can learn more Endlish and share my life . Today , I went to fishing traout in Tihayaakasakamura . I have to grade 3 types of placement tests for new foreign empoyees to work at Japanese companies . Oh , I dont n't have time now . There are many dishes and many thinds such as choppsticks and so on . I think there sre too many dishes and we should get rid of some . I was very unconfortable . Thanks to them , I could re - charge , and I think I can manage my German vocablary test and report . my mom has a strange charactristic , she is always on the ignition to me , mabey beacuse of her busy work , she is always unhappy I do n't know how to communicate with her ! Today 's menu is Kimuchi fried rice . Have you ever eaten Kimuchi fried rice ? I 'm a unversity student in Japan . I 'm interested in this matterial because some CNTs behave as semiconducters , while other CNTs behave as metals regardless of the fact that both of them are made of the same carbon . When we are able to make some deviceS from CNTs , we will be releaved from this problem . If I feel that if there is something wrong I countinue to think and not act . The Docter said `` you may have gout `` When I first saw this cartoon was five years ago , my foreigner techer showed it to us , but at that time I did n't know the meaning about that beacuse it had no translation . One of my friends is going back her own country at the end of Octorver . I 'm looking forwerd to meet a lot of foreign friends . I was too tierd to do a lot . My ferverted appetite may be beacause of frustrations rather than longing for food . I will introduce you to an interesting article in the moring paper . Teachers are Fillipinos or Fillipinas . The reason is because of it 's aninexpensive expense . charcter and characteristic Before that , I had been working at the front line of research and develoment . thai is exciting to me , I have followed all the news on TV recently about the disater that occured in Japan , it 's too terible and unbievable , not only the impacts on economics as a whole , the disater also impacts the mental state of its people . Solted grilled fish and fish hunberger steak . ( Spelling ) But it began raining a alot at night . I think it 's better to make Honey excercise earlier . Sorry I was not keeping my dialy I want to improve my English level with nice people 's help , besides studying by meself . I made a big coaster and a small pompon with beautiful colored felts . Can and ca n't issue - could someone familier to American English help me ? Distinguishing between them is really important , because the meaning is opposit . An Bulitish person once told me that they pronounce `` ca n't `` like , `` kaant `` , while they pronounce `` can `` like , `` kan `` . Could someone who is familier to American English help me ? This term , there is a new English teacher . He is very handsome , humourous and full of personality . In his class , we are relaxable and laugh all the time . We hope we can improve our oral English . In the futher , we will be able to talk with foreigners easily . I 'm sure it is n't a dream or a hope ; it will be ture . Learning langages is learning a new way of thinking . Both Langages for computers and languages for humans broaden my world . But when seeing it from another point of view , I was surprised that so many trains run punctually and many people rely on the railway system so much that they get angry because of a slite irregularity . I learned many new words from the subtitles and I practiced my lintening as well . To write something in English is diffcult for me . Please give me your knowledge of Englishu . And , I will go aboroad . I am watachiing TV ' PONYO ' , ( which was ) created by Miyazaki Hayao . I like thier singing ! I really love thier sound ! ! Imagen what I am trying to express . I also spent a lot of time in the green areas / green parts of London , my favorite park beeing Regent 's Park ! One of my only bad memories is an incident in Camden Market where two irakians became pissed off when I did n't want to buy what they were selling and one of them even threatened to beat me [ up ] ! Today I finnally got to relax , because my niece was not home . Gennerally , my elder female cousin offen askde me to give guidance Usually , I treat it as intreasting , but sometimes I also felt a lottle tired . But there is one problem , whitch is that we ca n't borrow them . It 's silent in the office , our boss is travlling ~ We have nothing to do , so I stard to daydream . After lunch we strolled along a small streeat . ( acually I do n't remember exxactly , but it means nearly brilliant ) I am worring . . . But I could not go to an amusement pakr because of the rain . I became a menber of `` Lang - 8 `` today . He studies athretic training in the U . S . A movie called `` Alice in Wonderland `` was shoen today . It stuks that it 's way to hot ! ! It is holiddays season in Korea . I 'd liket to make many The man was eating Poteto cheps . It was very noisy : ( However , traffic accidents caused by bycicles have increased . So the Road Safty Association proposed a conclusion of the bill related to bycicle 's road . They are in the traning department in a Tully 's coffee Japan . It 's been a while since I wrote my jounal . I was busy and I acutually forgot about Lang - 8 . I became their fan when I heard `` American Ideot `` . I discovered this web site accidentlly . This is the frase of Owl City 's `` fireflies `` song . I have to go to the immiguration office to solve this mess . I went to LOUND - 1 last Sunday with my friend : - ) We ate misokatu . The travel was so good for me , becouse it changed my sense of values . But if they study the language , it will be possible to express theirself . My daughter 's gramma set up dolls for the day . My family and friends in Japan were ok but we ca n't really feel at ease . American Yahoo accont I strongly recommed you to make one too . I was suprised by that guy at first . No , I 'm kidding , but it is true that many people here have fine mustuches , and now I have a mustache too . I hope that either she will change her mind or my razor will suddely start working again . I take lessons evryday . She was really friendly and kind from the beggining , so it did n't take so long to get closer . I go to univercity near Nagoya city , Aichi prefecture . I have been here for 2 months since I 've been admitted to this univercity . I 've not been doning it , but I was interested in it . recentry , _ we have been getting interested in `` eco `` . These are said to be `` eco - friendry `` . But , _ I think these are just more friendry than what they used to be . I think what we should do from the biggining is hold back and use what we already have with caution , _ not buy new things . Notthing at all . If I feel hungry , I will go somewhere arond here to find something to eat . Whoever is asleep , sleep tight . Whoever is eating , eat something delicouse . Whoever is daydreaming , have a good dream . . I - cried - out - in - spite - of - myself - `` unbeliebable `` ! My father is the director of a semicondouctor company . I 'm sure I will become a susccessful student at junior high school after graduation . the deatails and he agreed to hire me . Before I started working there , he sent me a message and said he did n't want people in April , he would let me know again in May . Today he sent me a message and said he already has someoen to help , and if I am interested he will be hiring again next month . While I was waiting to start work I practiced using Phoshop a lot . Before I had planned to learn Photoshop for a long time but I did n't have time to learn it . Noy , who is going to continue her bisiness again . . The reason is that a caregiver 's salary is lower than other jobs dispite the hard [ ] work . And customs are a little defference in Japan and the Philippines . I think the Japanese goverment should always support them . It must be that something happened because two polic cars passed . The public security in Japan is good , but crime is ererywhere . noticed the adress data was missing . the & nbsp ; adress again . It will be the eclipse that lasst the longest time in the 2000 years . I think that English conversataion schools should charge I was happy to hear the phrase `` you name it `` on the radio . On the FromAmerican Forces Network in Tokyo . But My callphone was n't ring at all . Other contestants ricited formal speeches , for example some presidents ' speeches . I thought my recitaition was out of place but one of the professors said it was good because everyone knows the story . They will explian to them about their medical treatment proceess with a kind smile . But I can go to the rever . When I was a student at university , I crimbed it two times . First , it was rainy and I could n't crimb it on the top . When I crimbed it at midnight so I could see the morning sun , Maybe they will offer me some help for my hard study and maybe I will show them around and bring them to some excitting places in return . I taked to two Filipino women with Skype I taked with two Filipino women with Skype tonight . I have done soccer , swimming , volleyball , running , and dogeball . That day is a special memorly for us . it opend in octber in japan . She is a very butiful Spanish woman . I have glasses and cotact lenses I do not believe in mysticism , but maybe my team has a bad carma ? I 'd like to know that if people use this phrase in their conversetions ? I 'm excited , but I feel a little aneasy . Every morning , I get up at the same time , eat vreakfast and go to school . I wnat to meet crious people from other countries . A woman taught the vialin at elementary school . At last , they played at Camegie Hall . Someone I know from New Zealand always sais `` Retarded ! `` . She sais that to me and she sais that to anyone or anything . I think we have no right to say what is good or what is bad , every character has its beautiful sides , differences make this world colorful . Kawaii means cute , but I think kawaii contains other or defferent meanings , and it is unique notion in Japan . So I guessed that the person who holds ( or held ) that party must have conceidered to appeal it world wide when he named the event . Following the Oxford English dictionaly , cute has three meanings : who is little blaind . Learning by myself is agressive . Before that , I doubt that this passege is readable ! ( + _ + ) I went to two University festivals in Tokyo , a musium and a movie alone . It displaied the History of Letters and stamps . He wants to be the wonderful parent , the great couple , the successful business man , the great player and the inteligent doctor . Even on the other side of successful career , for exapmple beeing a hippy . I could not move my arm the same as before even after the lihabilitation . In Japan , most high highschool students wear loafers when they go to school . I feel confortable ; ) This is my secound time to writing a diary . And we must live it so as to feel no torturing regrets for wasted years . Never know the burning shame of a mean and petty past . Live so that in dying we might say : all my life , all my strength was given to the finest cause in all the world - the fight for the Liberation of Humankind . `` l hope everyone can read it in their free time , l belive you will like it . I hope my friends `` will `` make `` evrythings `` all right . I 've recentry begun to like jazz . Maybe because I 'm a biginer . . . We walked for 2 hores Hyperthermia currently is a sereous problem in Japan . Be confident and perseverant ! I love this style , I just want to see something while I ride my bycycle . I can go manywhere I want . This is the time when junior high school students take the entrance exams to get into a pubric high school . I could n't find any empty seats so next time Iwill come in the class earily . and I have many friends in the domitory and classes this semester . I am fed up with arguing about probleams . It is the first time I have gont to the Mexican restaurant . Sometimes , I dream of speaking English enfluently . I am afraid to be an audlt . or I am afraid of being an audlt . Hellow , everyone ! Today , I made a gratin for suppur . The produce is very freash . Tometo , cucumbers , eggplant , poteto , pumpkins , cabbage , I am happy to find a site like this in which I can study foreigh languages . The world ecomomy is in a serious depression , paticularly in America . The lake was glowing and shimmiering . I went to the Yahoo Dome last Satuday . Autumn has come , they appear in tha trres . The graduation ceremony of our universty takes place on 17 March . We go ther and see off students who graduated this year . A Japanese girl who is 18 years old and can speak English well came to the inn yeasterday . What a little devil , she does n't have enough experience about anything , but only your sex experience is moer than ordinary , is it ? It has a soy souce flavor that 's a little sweet as well . Because we have commen topics and talked very well before . I said I will get off soom . And we compared the phiosophy of love between Japanese and Korean people . I 'm not goot at electronic staffs . . . so now I 'm fighting ( struggling ) with them . With all other universities that are public of my country , whe are protesting for a better education , that is equal for all . but the guberment of my country , does n't like this ; they allow good qualty eduacation for only a group of selected of person . Also when whe try to protest , they put the police in the street , with the order to arrest for no reason , with the utilization of excessive force . My major ploblem in studying The cartoon 's title is `` to run , Honie ! `` I wish that all that is happening in the world will sometimes be solved by children 's thinkig which is naive and simplistic . . I staied in this house for 2 years . Against my expection , I 'm having an enjoyable time here . It means the renion of families . unfamilar with this young festival . People who own privite cars are encouraged to choose bicycles or Spring is a nice season for cycling , so I want to do it again and discover iteresting things ! I had two cooking classes , in one I beked a pound cake of mugwort and in another I cooked some beer fritters . My dormates are still in their beds . bbish it 's rabbish , is n't it ? Hallo . I could pass it sefely . Wrong spelling ^ ^ Hello , friends . . studying aother languages seems difficulte if you do n't hve the will power to do it . As for me I plan to do it with a iron will . I like to study other languge . I am so nervous that I ca n't speak Englsih well , even I ca n't speak Japanese very well . However , I feek so isolated that I ca n't open my heart nor relax myself . and it sturucked the mainland of Japan : ( But yesterday afternoon , my classmates called me , saying that if I go swimming with them , then I would feel cool in such hot wheather . Although I was in bad mood , I still accpeted the invatation . The air was filled with noises . It seemed that there were so many boiling dumplimings . However , we still had a great time there though it was too crowded . We palyed the swimming ball , had a competition of 50 meters speed swimming and had other games . I can also play the gaitar . She was afraid of the dark , insects , tthe color black ( she belived that if she watched for a long enough time somthing colored black , a monster from the Black Kindom would come forth ) , touch a scary picture ( she thought that if she touched it , it might attack her ) , snake , knives ( she thought the knives might want to cut her ) and many other stupud things . All her pocket money she spent on clother , knives , parties , and alcohol . They belive that any day Amy would come back . Now Amy lives with her mum and dauther . Her deather Lisa is 4 . Yesterday I went a bar with my friends and drank alcohol to unwind , and there , I plaied Genga for the first time in my life and it was so exciting ! ! I heard ( that ) it was fun , but I did n't know how hard to concentrate to get rid of a piece from the colum . And why we are given our own concious . The bottomline is that something commands our superior to tell us to do something , and then something mkes us feel against . Actually , I was suppused to go to my lab and introduce our lab work to interested students . I spent too much monry this week . Do you like the time when you know that if you want to go to other country , you wo n't need to go to somewhere to get a visa , you will just press your robit 's hands and it wil bring you go to anywhere that you want . Exotix Zest I watched `` Heroes `` tonaight . I am glad to have everyone to help me to improve my langauges . Also , I want to get some techniques to improve my languges . Everybody has stories to tell and I can also say taht story - telling is a part of our lives . A little while ago , I wathed a TV programme that introduced pancakes in Hawaii . Raising kids / children is very hard , especailly two children . I ca n't imagin what kind of mom I would be . It is vey sad that tomorrow is Monday . It raind hard . Today I almost overslept becouse my alarm clock did n't ring . It was a good day becouse I did it all with my girlfriend . Oh , I have a feeling no one ges them to her . So I try to look carefully around the holl and at costomer . so I could n't concentrate on the costomer . I had to go to Google Japan inc . , on bussiness . Today I 'm going to Gumi for a business tirp . I read from a news articles that the average population age is the yougerst of the cities of Korea . I do n't know if it 's dangerours or not . With work , I 'm chosing a fatastic relationship . . Lul : My Vietname colleague asked me to go to a karaoke shop and I went to karaoke . There were many people who sung songs in Vietname . Most of the songs were Vietname . It was a good way to experience Vietnames life . Recentry , cities have been very lively . I was cheered up by the beautihul display of lights . I 've just organized a Free Japanese conversation club around Tokyo for forigners . I want to gather forigners who live in Tokyo . So , I need to write a jornal about this , and paste ather web site or make some fliers as notices . Well , I wrote the jornal right now . < The jornal > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Free Japanese Cnversation Club @ Tokyo . This is for forigners that live around Tokyo and want to study Japanese or make Japanese friends ! Gethring and talking using Japanese . ( No Japanese skills required . so the only myclass I attended was `` gender and modern society `` . There are some mixed bathings in the countryside of Japan . Sometimes I do n't go to class , and then afer class I do not catch up on work . My husband had a cold latery , so I must have caught it . . . Recent , I wrote on lang - 8 , but lang - 8 did n't recived . She has a long hair and coffe - brown eyes ^ ^ . I 'm pround of her . She is a student at an university . Her university is a dream of many people in my country because It gathered excellent sudents . That resoult worries me ! I was very worried , because the test resoult is level 1 . The basical rule is that you try to beat your opponents by throwing your cards away . People have been making laws since ancient times . If there were n't laws , many people would kill each other and we could n't keep managing our society . . Laws berely restrict our instincts . Nobody would deny my opinion , because all people have emotions , such as hatred , grude or jealousy , against someone . Light was gradually desappointed in laws and police agencies . From then on , Light called himeslf `` God of the New World `` and started cleaning up the world . My husband and I had been concerned about the poor visibiity of the front part of our car which we just got last month . The sauce was made from soi sauce , garlic and honey . Though everyone looked tired , we enjoyed climbeing . But I could n't enjoy the beatuful view from the mountain because of a dense fog . Today , I decided to go downtown and join a weekly free talking ( conversation ? ) club organized by a lanugage institute . Yet , unfortunately , they said today there was nothing scheduled becuase it is a term - break period during a public school vacation . I 've never booked an ecounter ( the lesson with the teacher ) at a time without `` war `` . The girl from the Cultral Bliss club gave me three Mexican rolls ( sorry , I do n't know its name ) today , saying it would be the most delicious food I 've ever had . As a responsibility of his job , Barry has to search for the statistical data of average revenue in spcific occupations . In Japan , ordinary people who have public health insureance pay only 30 % of the total cost . In my class , teachere said ; My hasbund and I went to the hot springs last weekend . and of course I have to answere them in english . if you found any mistakes or kinda correct but awkword expressions , please correct them . I 'm going to go to the restaurant called `` sitamati no Sora `` ( it means `` downtown sky . `` ) I hope to do n't commit errors othrwise I will receive ( ? ) your corrections . Melody is the the little girl 's name , and the soundtract of this movie was produced by the band `` bee gees `` , whose music is relaxing and comfortable . I will go to the Youtube website and almost all I watch is coverd songs . I hope , therefore , you will correct my diary , and please be friends with me if yor do n't mind . Sometimes I just want to talk to her and listen her voise , but I do n't know what to say . Read a dectionary ? When I came back from the depatment store , I tried to find one on the internet , but I ca n't find one yet . It 's a celemony for young people who become 20 years old . And also , I want to ask everyone : do you have a such a celemony in your country ? I starto to learn english today in lang - 8 . If you are a vative English speaker , you can join us to tell us how to study English . Soon I will study Chinese or Japanese at Univercity , but I do n't know exactly what else . . . I 'm not sure how I can make the sentense if I want to talk about this topic . Are these sentense correct to say ? A lot of mosquitoes come into my house every summer , so I have to take my anti - antimosquito device out of the closet . I woul like to know the difference between Andrea LeBlanc 's life compleately changed after 9 . 11 in 2001 . He had been teaching cultural geography at the University for 35 years untill he retired . Dad just said the same thing . yeaterday . `` I chage my instructors a month ago and I am not use to the styles of the current instructor . You can barbecue ( or grill ) whatever you like , such as sliced beef and vegitables . Usually people go to Yakiniku restaurants for dinner with their families , freiends , colllegues and so on . So when I get enough skill , I can teach anywhere in the worls ! ! Since my senior delivered a really good extemporaneous speech that dealt with disguise in food and whislebrower , I thougt that he would be the the best speeker at extemporaneous speech , but , to my surprise , two out of three judges gave him third prize . The reason they gave him the third prize was that he delivered the extemporaneous speech so well that judges thought that he prepared the topic and luckily picked a good theme ( In extemporaneous speech , speekers are given a theme . ) randomly , so the two judges lowered his score in order to be fair to other speekers . League , so it is the contest that determins the best speeker in E . S . S . We are very gladful to the international assistance . I live in western Japan and have been very worrrying about the region . I have been thinking about what I can do to help them by watching TV programs about volunteer programs . how to keep a arelationshiop I am strugling with a long distance relationship . Tv influencial people 's behavior . I think there are many positive influences that come from wathching Tv , but when I see the word influenced I come up with negative things all the time ; it 's too bad , and maybe I should be forced to write about problems . Today , I 'm happy because this is my first Engish journal entry . Actually , I do n't khow what to write . I will go carzy . My boyfriend and I planned having a date on that day , but we could n't because of his grandfather 's oparation . To be honest , I am disapointed our date was cancelled . However he sent me an email and promised to cellebrate it next time . Somehow , I foud myself tired of this boring life that I am living now . I am learnning both English and Japanese , but they are not as easy as I thought . I took a deep breath and said to myself , `` There are things that need to be changded `` . I was in eastern Europea , Budapest and Prague , their beer was much cheaper than in Norway , where I live now , so there was no reason to stop drinking beer for the whole 2 weeks . We have met befor , Annette : I really really wated it , but I could n't find the store . It was hilorius ! ! I could n't beathe well ! So , I can baite him from the tail , better than eating him from his head . We were really busy in preparing , and we just could n't stop practing ! What a funny scense ! My teacer gave me this chance because she knew that I want to major in English in college . The compositipn titled `` A Field Trip . `` I wrote somthing interesting and what I learned from my graduation trip . I wish that every senior will have a beatiful furture ! At first , I was happy that I do n't have to do house work , but now I feel bad for my sisters who are jealouse ! In the new year I hope that I can get a great TOEFL grade , and I hope that all my family and friends will be happy all hte time . I went to KARAOKE yesterday because the Freshmen party was held by the one of the fhreshmans in the university which I will go to . Also , the affect of the earthquake still contines . I felt guite curious , then took it off and decided She has read innumerable books and we ofen discuss the content of some of those we are both intrested in . She prepared for the examnations last whole year because she planned to study further in the USA . I was actually hoping to eat at this restrant . So I was very excited and it made a deep impression on me when I ate Thai thaifood . I almost lost my life , but I at last defeated the difficlt and caught my life again . So I hope everone can have a happy life , I desire happiness and health . I desire to improve my English , and can speak infulent English to talk with my friends . In the 20th century , our right of existence was acceptted . In the 21st century , our right of non - existence will be acceptted . I will vist the US next year so I need to know more about US culture . It 's defference from Japanese culture . It is absoltely rubbish , but can you guess why I wrote like that ? The Korean woman who served him in the small restaurant was probably suprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . BTW , I ` d like to recommend chili papper Kimbap if you like spicy food . So I want to pratice writing first here . . . He told me that the Spa is becoming popular in the Filipin . We think it is enough to have rice balls even if without side dishes for luch or dinner . First of all , boil soy beens . My new work place is situated on the outskerts of Seoul , surrounded by the greens . remainds me of the forests in New Zealand that I 've visited 10 years ago . Today , I joined the language learning current of lang - 8 . I am very excided ! ! It will make me vigroous . The collor around me was changed from the moment , he said we have to , divorce , from a pastel color to a dark one . I will go to the library with my friends after finifhing my classes . so some messages are from Erope , Thailand , and Argentina ( which , bty , is located on the opposite side of the earth ! ! ) . . . I dont n't hate it . Can you read what is wirtten in the photo ? But I ca n't take consective days off . It was forrible ! ! ( Reading picture books for the studens in my son 's elementary school , and English books for mothers and children at the City library . ) And today , the seasonal ones ( work ? ) have started . Last Friday , my son cought a cold . Becouse I changed jobs this month , I ca n't take a paid holiday . It 's a greate place , but not a very good time . because it 's first time to wirte my diary in English ! ! But I 'm a little bit worried about my Enlish . Congration ! To tell you the truth , I still dont wana go back my country , Japan . But unfortunatully , its a time to go back and , it 's time to speak about what I 've done in the U . To bigin , with I really appriciate having been given an oppotunity to study at St Norbert College as a ESL student . For almost seven months , I ve studied English at St Novert College . For almost seven months , I 've cosidered that , I am talking to people who have totally different backgrounds from me . Since coming back to Korea for the holidays , I have been hanging aroud with friends . I wore a sisiter 's costume . It was popular with mothers , but littel kids do n't know who the sisiter is . Some students thought I was dressed as a ghoust and felt like crying . There are 2 more months untill this year is finished . I have a problem at nigth ! July 2 - 5 I had my gueat . A beautiful girk from Malaisyan and her parents . We went on the open briges at night , and saw Night City , but my guest was very tired and slept the whole way . ) ) ) Trouth 3 days we all understood each other . Sopaholic ( I think ) series by Sophie Kinsella and Dean Kooontz 's books etc . What I wanted to write in today 's entry was that I need to reviw my posted enties and check my weakness in my English one more time . `` Whenever I call your name , I feel my tongue rolling smothly . plese help me with my language and problem . becaues I was very sleepy . Japan 's climate is probably subtrpical . I loved her so much but I ca n't meet her in a reall time anymore . I was surprised at the safty of New York . Before I went to NYC , I thougt it was dangerous to use the subway at midnight in NYC . But there are many imigrants in NYC , naturally . I feel NYC is one of the most adrable places in the world . I konwed that my blood type is O after I checked , and I heared that it is better to donate 200ml the first time . Studying languages has always been a topic amomg people . In short , a brighter future is waiting for us if we make good use of the studing in our school . one little girl passed on the road by the beautiful buterfly , the girl looked at the buterfly . and the girl said : `` the buterfly is so beautiful `` I went there to attend an english coversation lesson today . Althougt I filed a complait to him , I did n't feel good . When I feel stressed I like to take a long bath or watch a moive . I prefer comedy moives to action moives . It is fun to watch if there are unkwon actors in the movie . I heard Michael Jackson say `` I love you more ! `` in a vidio . I wonder what it means exectly . . . Second , I jogged 5 miles this morning and practiced golf in the driving range for 3 hours . I wanna be a translater . A well - known hynotiser was invited on the show . He hynotised some audiences by giving orders while they were somewhere between conciousness and unconciousness . If we are saying some negative things about ourselves , we are hynotising ourselves in negative ways . Because we were there from openning time to closing time , my legs were starting to hurt . That night , we had a lot of fun tallking . We had a relly good time , though we were tired . Because her birthday is soon , we gave her a dinner chicket that night . I would understand it if I excercise that day . But I have n't got any exercise recently and I do n't do hard warking either ! So it 's a mystery for me to be always sleepy recently ! When Isoak in the bethtub , I sleep there for 30 minutes . ( As the image sugest , I will need a lot of strength heh heh ) And do you have another story about enterig a university ? Secend , I think nothing is more urgant than learning vocabulary and the fundamentals of grammar , even though the speaking and the listening are also important . I am confued . My weakness is if I make a dicision on something After thinking a long time , l finally make a dicision . It seems like the inside exposure 's damage can be lowered by taking iodine as it halps the body excretes harmful chemicals . But please do n't take this too seriouse . I wrote my last dialy about 5 months ago . Althougth I 'm very tired to have walked so long , it 's healthy ( for me ) . Some of the important elocutions are simplified or left out , so I ( often see ) came to see that the subtitles are n't ( always ) consistent with what the movies really want to say . I wanna see a lot of gellery and musium . I have loved a boy friend until recentry . This is anbarance ! But I sill want to visit Australia again . Maby I will go to Sydney next time . At first , I checked my emaiis and then began my work . Of course , we wouldfeel the sense of alieanaiton when we see foreigners at airports or other countries or our towns . Would you imagine if your country is a samall island and if English is spoken in only your country , it would be a big disadvantage for you guys . But foreingers have been speaking English since they were little as a public ( international ? ) language . But of course they only spoke English while we were drinking , I counld not join the conversation . and may be Eastern contries . I hate the weather in Fuzhou , because it varies so much ! Yeterday it was so hot like summer , but today it 's back to cold ! It 's midnight and there are a lot of mosquitoes llying around me ! = = | | | Does this sentence make sence ? Our center dining room is in the center and it is the most popular canteen in our college , however it has both advantages and disadvantages . The cheaper price and the better qulity are the characteristics of our center canteen . I like Sichuan food best , not because it is has a havy taste , b ut because it has a special smell . Meanwhile , all kinds of food in the center centeen are cheaper than the market . Moreover , we can only have a limited varitety of dishes with little change every year , which makes eating here very boring . I like Onsen very much bacause I can relax . After soaking in the bath , I will eat delicious japanese food , like templa or sashimi . It tooks about 1 . 5 hours to get to Misato Onsen by car . Starbacks down the Princes Rd . On top of that , the casle seems away from you . I do realize this is not a good attitude of mind , but I have noticed that if I look at the worst side of matters , I can only receive positive surprises . The oposite of this happpens when I look at the sunny sides of a situation . I knew him at the literuture class in college . I 'll go to Sydny at the end of this year . I love fireworks so I 'm looking forword to this . Unfortunately , the test system broked down for about five hours . Yesterday , it was raining so I enjoyed watching ( the movie ) `` chatiots of Fire `` at home . I went to Ameriga two weeks ago . I gess 4 years have passed rather quickly . Finally he was able to do it , but of couse his bicycle had training wheels ! So I will study English a lot and as soom as possible ! As far as I can understand , your university is great institution that provides a stellar enviroment for furthering my education . Also I can drive a car very well , can work on the construction site becouse I studied in the construction university and now I work in the construction site , there I am a foremaster . Today , I went skatebording in a park . The team seems to be the best although they did n't participate in any test sesseion during the winter sessions . Second , we can use the enternet with mobile phones . The only drawback is the lenth of the episodes . Now imagine we put a flea in a container , so that it can jum out of the container . That ` s why we sometimes feel that there are many limiting situations in our lives , it can be emanating from our mental limitaion : `` I ca n't do it , it 's very hard for me `` , or : `` I think my family won ` t accept it `` , or `` Is it possible ? I finshed the test last Friday . I like sutudying about other language becaouse I can meet a lot of people and I can understand our world better . The things which happned last night did n't arise from the differences of our calutures but personal matters , I think ; - ) We spoke in both Japanse and English . But our American frends could n't feel her feelings ( of course they ca n't understand Japanese ) . Our native langage are different . I think it is natural there will be difficulty , and it is the interesting point to comunicate with someone who is from a different country . I think the reason that I did n't like science was becuase all of the books I had read were not interesting . Since it was wirtten for kids , It was really interesting and easy to understand . Anyway , I am turnig 20 this month . Tomorrow I will go / I 'm going to Belugium and then to Holland and finally back to Japan on Saturday . The King 's speach I watched the movie `` The King 's speach `` In Japan , it is possible to rent the DVD for thik week . I thought the movie was very goog . But I figured out the view of the town is so amazying ! ! My role is filming the activities of my teammates to create reportages . Today , I made `` OKONOMIYAKI `` for my sharemates . We saw the sun rise and it struke our tent . I haldly understood native English then He is a university student and wil become an exchange student in an American University this Autumn . I was asked by my roommate to take care of him , perticularly about cooking , and of course I said yes . Furtheremore , We played many different kinds of games in the schoolyard such as seesaw , hawk - and - chichen . For the `` hen `` , it was importent to focus ( your ) attention and keep a strong sense of responsibility . I want to leart Engliah well , but it is diffenert for me ! When I had some oppotunities to speak in English , my Japanese supervisor was one of the people in the audience and said things like `` You said a water and forgot to add s to he want `` and so on after every my speeches . Germany , Spain , India , Austoria , Finland , Egipt , America . . . . . . I can anser it better than the real questions for Clinical Nursing . . . . So , I had no choise I learnd many things from college life . Everthing seemed to be fresh . According to UK laws , euthanasia is not allowed . This includes any act of assisting suiside to the patient . The gril 's name is Jones , and she must battle heart problems and leukemia . I am studying to get myBA in Applied Linguitics ! I love to just have fun and spend time with my friends . Most of my lunguage backbone is in school . just unconciously pour the coffee in to my mouth . Coffee to me is like the cigarrets to heavey smokers . hey guys , it ` s my frist time here , I am so happy to know you guys to help me learn English . I allways watch `` Azumanga Daioh `` and `` Lucky Star `` . I 'll appriciate your corrections , but I will not rewrite this probably until I am able to write this correctly by myself . I especially dislike `` pure `` Japanese literature ; of course I have some favourite pieces among them , but unfortunatelly most of them are widely underestimated . I studing material from Side by Side book 4 , but it was a little difficult for me . In the afternoon , I 'm going to study TOEIC materialby for an hour or two . Let 's study our Langage 's together ! ! Tnanks a lot . When I search Google , it tells me that members of Japanese paliament earn1 . 3million per month . Apart from that they also get a million yen as a travel expence each month . These perks add up to nealy 44 million yen . In fact , accoring to some sources , Japanese paliament members receive the highest salaries in the world . So we really nead someone to solve this problem . If you want to be freind , feel free to let me know . So I was back home after working at 9pm and getting things ready ( for example ; reconfirm jazz tune that I momorized ) . His wife was a Japnaese . Whay music is important to many people ? Although people can get tired of repetition , they listen to their favorit music frequently becuase they can enjoy themselves more consistently through that . We can find some traditional music from different nations intersting . So we can see that music is a wonderfull means that can make us feel better . As Oliver Wendell Holmes said : `` Take a music bath once or twice a week for a few seasons . in order to get rid of my stress that comes from studing . Actually , in America , the gym is somewhere that provides chances for peopel to make friends . That , I cant deny , but something hust happened to me recently . When I am on it , I am used to always looking from one corner to another to see what others are donig , so that I wont get bored . Last Saturday was no exception . relatively conventioanl Taiwanese girl , it is kind of too much . One of my Japaness friend told me about this website . Thunder is a very powerfull tool . I bouht some bread and cheese . The Mid - autumu Festival is a big day in China during which families come together . What do the following sentenses mean ? Firefleis . I have a Benuzuela friend at my school . For a long time , I 've thrown away anything making me remember the past , either happness or sadness . All the time , a guestion is in my heart ; I want to know , In the second hour , my coach taugh me how to shift gears . I 've been drinking coffe as a countermeasure for sleepiness . He gets food from the airport restarants for free . What is different from the movie is that he has an abailable visa that allows him to stay in Mexico . Everything abuot me : ) In class , my Eglish teacher said `` How are you ? `` . My teacher loughed me . my English teacher tought me `` I 'm fine thank you `` only ! They gave us three tests , grip strength , flexibility and alterness . Since the garden is about five kirometers away from our home , we ca n't go and see them very often . Especailly during festivals and weekends , KTV is almost the premier gathering place for young people . I tidied up my wardroab . There is big space in my wardroab now . Tomorrow I will go to the Driving Acamemy . Today , I finshed my report . Shi ' ah , sunni and Koord are there . The Iraqi goverment is trying their best to unify the country , but their approch is n't working . Iraq has elements of connfuission now . I ca n't imagin what will Lots of people are used to cover their love , their anxious , thier bear and so on to calm their friends or their families . I had finished eating watormalon . I want to speak and write in English fruently . I 'm restarting engish . I 'm learning English vocabulary and grammer now with books and mp3 's . But summer vacation ends Augast 31 = ( I was interesed in an article about AVATAR . This movie represents the cerrent US . It 's my frist diary on Lang - 8 . I talked with a forein friend on skype for the first time . Anyway , she is a Filipino ( I think this vocabulary is very difficult because it sounds like Philippin but some words are spelled differently . ) But my cellphome does n't ring , and she said maybe connection was n't good . So we could n't talk to each other though she demanded me recieve the call . I could n't dispel my doupt to her so much as that time . The season is turning to winter and outside it was a little cold , so I wore a sweter . Some houses are really funny , but one hous was really awful . So scarely : - ( I want to go foreign ski erea , because the scale there is so big . If one of them has any problems , the entire socity will be at risk of collapse . By the way , I 'm going to Spain , France , and IItaly next month . If you can pass the Canbrige English examination , getting a job will be even easier . But SIngapoeans are very kind to me . My favorite charactor is Miss Sue . Kosen tornament in Aomori ! ! I went to Aomori for Kosen tornament . The Tornament was so exciting ! ! And it showed the position or rank of the people usuing it . They believed that I was neverous as I spoke either too loudly or too quickly . . Indeed , I felt a little neverous just before it was my turn to present the report . The reason whhy I spoke so loudly was because I want everyone to be able to hear me no matter which corner of the room they are in . My home twon is on the sea . I eagelry look forward to hanging around with him : D As I was writing using English on my mobile pohn , I realized that English exist everywhere in Japan ! We all hoped we could leave as early as possible and go back home to celebrate Chrismas with family and friends . Anyway , I enjoye myself . Yesterday It was rainy , but I took them to the docter . The docter adviced me to take my daughter to the ENT doctor . So she did n't sit still and cried , I had to hold her while the docter examined her ears . Till now I coud ' tdo anything without compsing myself . They pester me to go outside although I play together , ask for new toys , new DVDs , new snuck , and so on . Similar to what was written in the dialy of another user , I get stressed when I ca n't train . According to the review , It is sopposedly a pure love story about childhood friends Emma and Will . he should have moved on and should 've fough with life for his happiness . The movie is fasinatingly bad and irritating but cant stop watching I bigan to study English two months ago because I want to go abroard to stady it . The competition is quite hard , because , to find a good job , it is one of the most important things to enroll at a famous university . In schools , there were plenty of strict rules , for examle , rules concerning hair color , the length of skirts and so on . Enrollment rate of universities is relatively high in Japan ( about 60 % ) . I was confused and irritated , and got new bicycle at discout shop near here . particulary , city area either near the station . There has many good taste food we can bounght . Every TV will have to be able to receive the new degital signal . stastion . It 's fater and less crowded . I started it from around in Janualy this year . I have to comuticate with the custmer and take care of them . I had confidence with these many people but selling is not just comunicate . I useally go to work by foot . Today was special day , because I walked under the Sakura srcade . In fact , I am cring to read this letter . `` Actually , the sneakers I bought are the addidas brand . Then , tommorrow , which is exactry today , is the exam . Ato Tomadachi wo sagashimasu node dozou yoroshiku . Ima ha Eigo no Gakko ni ikimasu yo . Boku ha kotoshi ni ju ni sai ni owarimashita . Akiraka , boku no bunpou ga heta desu kara chigau tango ga attara ayarimasu ! I am a freshman and study English and Chinise at college . My favarite actor is Will Smith . We had two visiters from Vietnam at home . Tha tast was Japanese style I 've come to the conclusion that the only good mosquitoe is a dead one ! I watched news yesterday and I heard that there are many people affcted by this influenza around the world , and also there is one person visited Mexico and guessed having this disease in our country . A : We would like to order , can we have the manu , please ? A : What 's today 's specail ? W : The specail of the day is cuttlefish spaghetti . Eiheiji temple is famous for a head temple of the Soto sect opend by Dogen . I heard that momks in Eiheiji get up at 3 o ' clock everyday ! My daugther slept by my side . First , I want to Iintroduc myself . I was bron in Saitama . My brother told me she is japaneas . and I strated to listrn to music and play the guitar with my band . Now , I am still playing the gutiar with my new band members . So I alwaya feel sleepy . . . She always spends around 30 munites eating breakfast . Before breakfirst , it is also time consuming to make her wake up . Studio Ghubli Well I 'm not sure if this plant is called a spring onion in eleglish . I went to a Singapole restaurant tonight . With a few of my colleague who are American , Singapolian and Japanese . We drank Singapole beer . I still can not figure out what happend . I want to understand this beautyfull language ! I had a speaking test yesterday , as well as a reading , writing , grummer and listening test . I forgot the timetable was changed from usuall day . Unfortunatelly , I was eating lunch in the park so , as a result , I was 10 minute late . I have discovered so many good songs through this program that I 'd never lisetned to before . My bro is in one of the pucture . These days I think my brother feels like a good freind . Ok , I do n't know what else to write . In addition , I was amazed with my friend said that other friend who we have known since pupil mrried and his wife has become pregnant . I ` m not asleep , becouse I am trying translate my favourite songs . , because I can look straight ahead and see a little light comming through . I will enjoy today wiyh my family ! ! ! like it and now , I am going to move there again but this time will be diferent Purhaps bedcause of I am foreigner in this place , I do n't mind whether or not people look at me . A lot of classmates always go to their laboratory everyday and thier tutor gives them work to do . There is a massage chair , and it is very confortable for me . I was grinning like an idiot and trying not to laught out loud , ( sometimes without success ) . My granma sent me sweet potatoes . I do n't eat much these days , because my apetite went away and I did n't have much time to eat . In fact / Actually , it is the seasen to pick ` Pink Lady ` apples . The tax system and constructure of the Chinese society are completely different from the Japanese one ( s ) . Although thre are many things to learn , I 'm enjoying that as well . I mean , perhaps , Charlie is one of the best charactors he has acted . What really was impressive was how people are passionate about Itanlian food . Especially Viktor , the leading character fiance . He is an incredible chef who is opening his own restaurant in N . go banans ! Thus , ymasho was made . but making sentecne is very difficult for me . It 's beateiful . This spring , vegetables are expensive because of the abnormal wheather in Japan . This shop helps me alot Today , I havegot5 avocads only100 yen ! I spend X ' mas with my darking every year . There were 2 cups of instant noodles in the kichin . The teacher told me my daughter I studies well , but she is somtimes too shy to give her own opinions in front of the other students . . . She is very open with familly and with her friends . I ca n't find any teachers to help improve myw English . The next time we 'll see each other might be the day we leave for Japan at an airpost , which will be on the 20th of December ! In the x - ray photo , he and the docotr could see one earring . It should be a very interesting and an unforgettable experience for me because this is the first time I joined a boylish competition . thus , there are only 3 girls in the computer clubs in our school , my freinds and I . There are many geoglyphs and the lenght of the biggest one is about 300 meter . I was very tired , because today a lot of peaple ccame to my store . Me and my co - woreker were supset and worked hard . It will be 634 meters when it is compleated in 2012 . She prefers Tokyo Tower , whith is the present broadcasting tower , over TOKYO SKY TREE because of the shape . So my body is worn out with studing and a part - time job . Actually , I 'm pregnant and I 'm suffering from morinig sickness , so I felt gloomy before the wedding . It was a great wedding , but my three - year - old son colud n't sit quietly during the ceremony and reception . So we decided to go to a restraunt . Maybe because I ate too much sugers . The Frist Massage This was the frist time I got a massage . I went into the massage parlor ( the normal one ) * and told the massager / masseuse that I had a back injury from five years ago / earlier . * umm , hehe I spent my holiday time very well because I did n't waste time . I learnt new things and I had great days with my family and freinds . Since the interview with my boss , I ` ve worked more carefuly than before . What sould I do to develop my career ? I had a late lunch at a curry chain restaurnt that is famous in Japan . I want to study about / how to do that for my futuer . Thime is money . Hi everybudy ! listenig skill ? Do you know a way which you can listen to English for FREE ? It is acorss from the train station . Please tell me if you think my sentences are wrong or seem unconftable ! A lot of passenger prized his driving and he himself is confident in his driving skills . In more than 1400 years ago lived a righteous king called `` Hormoz the fourth `` . I just discovered this website via facebook ; it looks good , but it 's a bit desorganised , I reckon . Regarding my hobbies , I love practicing sports ( Rugby , Boxing , Running ) , listening to music ( Trip - Hop , NU - Jazz , Hip - Hop . . . ) and so on , like everybody actually ; - ) how my brithday was Yesterday , my freinds and I went out to find a job . The hairdresser who cuts my hair every time looked so busy that I hasitated to have a conversation . I was worried about her even though I 'm a costomer who receives a service . I have been getting an appetite since I lost it efter all the hard times . I have been really depressed for a month so I lost some waight but I kind of like how I look now . So I am kind of worried that I will gain more waight than I lost with this big rush of appetite . What happend to Japan ? First news was issued July 28 , under the headline `` 111 year old man alrady died 30 years ago . `` And his dauter said that , `` He wanted to die by starvation , and we could not stop him because he was too seiuous . `` It was surprysing , but I think many people believe that there are some to see if they ( the eldrely people ) were alive or not . Some of them have alrady passed away ; the status of others is unkown . Japan is one of the firat countries to become a super graying society . So the gorvernment has to deal with this probrem immideately . Selfishness ca n't controll us . Even though I 've lived in Canada for a year , I have n't seen outside of the city except Naiagara falls . Now , it 's nearly two months since I Ient him the money . You konw , we have got on very well since we first knew each other . I 'm plannning to take it next month , for the first time . Hope I wil be a top salesperson . Although I am Japanese , I do n't know much japanese culture . It is not completely unuseful , but it 's awkward to use . Certaily , I can see something like his toe . A huge typoon is getting closer . A huge typoon called ' Gonpas ' which means compass in Japanese is getting closer to the Korean peninsula . It 's important to take steps in advence . If you live further south than me , let me know how the typoon is . I like its world and caracters , especially the `` Muimui `` . Today my friend and I read a book called `` The mistery of Your Name `` about character traits and the fate of a person , which are defined by his or her name . So I have to go bed earlly , I took enough rest . I folt I ca n't find that by only studying at school , I need a lot of experience . There are many foreigners such as chinease , Mexican Spanish . So I have not studied English for one manth . I 'm still enjoying the mozochism . I 'm great because I still keep momorizing boring words . Today is my seconed time studying here . All in all , we must admit that the advantages outweight the disadvantages . Do they have defferent meaning or pretty much the same ? No misuc No life So , ( I became ) quite ( exauseted ) today . In fact , the wide - spread distribution of the WiMAX service on the rapid transit system is a goal set by the goverment in Taiwan . but It is completery different tempulature today . bacause strong wind , and so on . but maybe I am going for a surf tommorow . A lot of Japanese people are very shy and ca n't comunicate with people from other countries . I never played tennis before I took the class , but the corch taught me how to play step by step , and I improved . . beacuse I like the English launage and I really hope to be netive speaker so I stydy english whenever I have free time . ( that 's ture kk ) anyway I 'm workig so I have to go to bed soon , lf someone reads my diray , would you please fix or change the sentense for good and more natural expression ^ ^ I tried to bake a cake with a rice cooker ( steamed cake ) and made cranberry souce . LOVE AT FISRT SIGHT ( part 2 ) The Fisrt day that I saw you , I thought you were beautiful , But I could not talk to you watched you walk away . Suddenlly , the phone rang cutting through her train of thought . She felt something special , not because it was her first time making a delivery , but because her primonition told her that something was going to happen ! She knocked on the door and it was openned immediately . Most of the people there were men and Lane specifically recognized the angel in her heart who was sitting in the conner . She could n't belive her eyes . Lane replied : `` Thank you but you paid enough . `` He moved closer to Lane and told her : `` It is for the tip girl , thank you so much ! `` Lane could not do anything else , just receiced it and thanked him . He had a sweet acent . I remember that I was so excited when I saw the trailer of `` Avator `` I think the theater will be crowded this weekend because of Avator fever . I believe Avator will reinvigorate me with its visual technology and emotional story . But sometimes pop music is intresting too . Expesially if guitar and realistic bass is used . I bought this one just as an interior accesary . Another reason is that humans have a variety of deseases that was caused by new technologies . Without reseaches on the univese , we can develop the medical field to save many lives . So , I 'll take positive steps of `` Lnag - 8 `` . But a plactical test is not easy / difficult . I opened the box and plugged in the tree . Then I swiched on the lights and turned the room light off . I felt Lucie 's feminish sence on her works . but my English skills have bn getting worse since I came back to Japan in March . I get a little neverous . When a new semrster starts , there will be some foreigners come to my senior high school to study . I 'm learning new information that I did n't kown Altough I memorize a lot , I ca n't make use of it . Oh , I missed sevaral days for writing my English diary . Eventaully , I posted this article courageously in order to introduce myself . It offers a very friendly platform for language learning . People from different countries can exchage feedback . I live in Tokyo and work as a hospital woker . My hobby is a bellydance . I recentry feel that nothing can satisfy me . At the beggining of the journey , I suspected her imformation was inaccurate . We took a bus , which the fare was one dollar and tewnty cents . But we were cheapskates , and we did not want to buy a map whcih was not cheap . They 've kept telling me ' ' hey do not work too much , we are tired , go to sleap . `` Today will definetely be a memorable day for Japan ! ! ! When I came home , the game just finised . . . I wanted to watch the game in real time and feel the excitement with ( other ) Japanese soccor followers ! ! ! Ubin is a small island and it takes ten minitues to reach by ferry from Singapore . X - Files , FRINDS , Full House , and some others . I love Full House in particullar . Joey and Jessy are very funny , they always make me laugh . Joey is very good at imitating the catoon character 's voice , motin and sound . By the way , Michell was very popullar with Japanese people . The write - up for a straberry painting using the Painter She needed to make money , so she could n't coutinue to mainly do translation . I wish I could stay home , but I have to take an Enlish lesson . When youo become old , you wo n't be worried about your health . `` I smiled and said good bye to her and then left . Of couse sometimes I am lazy , especially on rainy days when I would find an excuse to avoid running . Acutually , those did n't sound very tasty but I think fans and kids may have love them . I will wirte about it in my next jounal ! I 'll be reliefed . I can learn English and I can also learn Jpanese by checking I did not read books at all today because I did n't havethe time read . Today my English friend called me to make an appoinment tomorrow at the same resterrant . She likes to eat mussamun vey much and I like to eat somtom ( papaya salad ) and aticky rice . When I see her I like to give hermy dirary I write in English and she likes to ask me about ponoun . We enjoy exchangingin Thai and English . Today at my compani in a high rise building I saw beautiful rain . I hurried to call my friend to look at the rainbow . I would like to chang a goodday with my friend . We enjoyed looking at the rainbow togethet from different aplce Today I was very suprised they asked me to eat luch with them . You know when you start ata company for the firat time I think I 'm an outgoing person & a person who has a positive attitute . I 'm so bored evryday . . . I could harvest only two orenges this year . I 'll go to the summer house TO SEE my dog , not my parents . ( hidden trueth ) So , probably I can have ineternet there , too ! At night , I went to the Englis conversation class . Japan will defenitly change , and everyone can move Japan forward with EV 's such as the Nissan LEAF ! Fight for Englsh ~ ~ ! ! ! ^ ^ I work for quailty control devision at the company I work for , and sometimes I have a chance to communicate with the overseas plant ; especially Czech and U . S . A non - government organization which I support gave a presentation to the pubilc . The center is also a place for gabage disposal . It is said that the pool is heated by energy produced in the process of gabage disposal . Suggestion : It 's been a very long time since I last wrote a dialy . . . They are learning Japanease in uni , so they practice Japanease with me , and we Japanease exchanged students practice English with them ! ! After scool , I went to Hide park , Australian Museum and St Mary 's Cathedral College . My name is Frank , and I am Chinese and live in Guangdong Province with my familier . I graduated from univercity 2 years ago . fuckin nardiy journal Im think that Alex should also update his . The update however might not be needed for me because Im intend to buy the new IPhone 4 in a week should it be ( if its ) available to buy . Its certainly gon na be fuckin complecated . I got a call from the ( a ) human resorce company just now . I recommmend that you should take hime to the ceremony . I am embarrased to say that I could n't finish it on time . Since all groops were planning on using Powerpoint , I went to the applaiance store to buy it with concern . After the meeting , I read a new nobel at home . It 's 1 : 10 am now , at 8 : 00 I will go to the building where the Tnternation students in Vietnam live . Jinzyas are old Japanese temples . There are very beautiful traditional Japanise gardens . So I think it takes many more times but I 'll try to uproad it with my phone . Now I finished my job , and I am going to see the restraunt where my friend 's second wedding party will be held . Because I was chosen as a second wedding maneger with some friends . About 80 people are comming and we want to think of a surprise for the husband and wife . but whenever I meet my firends among the them , the atmospear ( it 's not the exact speeling . . ; ) If someone is joining the Massenger programe . My score had imploved from 625 to 690 ! I guess Lang - 8 has played an important role in imploving my English skills . Day 97 : Puctuality After thinking a lot about my university choise and what is best for my life , I took some admission tests : one for Medicine , Pharmacy and Biotechnology . I hope I 've done the best choise for me and for my future : ) But I do n't have any complainment . I really enjoy my home life because of my email freinds . I 'm not satsfied with my English . Although I do n't like winter , it 's abnormal that it 's stll so hot . I think this site is really good for learning a langage . I used to write a dary in English , but I quit because I was not sure if my writing was correct . Then , I made an appointemnt with the interviewer there . I would relly like to be a psychologist . Now I start studying by reading easy English books like penguin readers or watching foreign dorama on TV or CNN Student News . I odten climb mountains . While I 'm climbing by myseldf , I can think about various / a lot of things and sometimes good ideas come up to me . But in Japan , the Tohoku area nuclear power plants had big problems because of the earthquarke . Anyway , I did n't miss the airplain . At Amsterdam , we had a radiation level check of our lugguage . I 'm going to visit the USA next month , and I 'm boing to stay with a family there . but they are ofen on sale . I hope every thing gona na / going to be alright * ema ; a votive picture tablet of a hourse I intend to go to bed as earler as possible . I thought a lot of the play equipment would be difficult for my 4 year old gaughter , but actually she enjoyed the playground with my 10 year old son . I went to an itallian restaurant tonight after school . At first , when I enterd the restaurant , the staff gave me a card and explained I think It worked for me more than an appitizer . After the cook fiinish cooking , I put my card on the register , where first their staff gave it to me , then I could go anywhere to have a seat in the restaurant , which was really large . Afeter I finished eating , what I should have done was just going to the entarance and gave a card back to the staff , then they coukd calcurate my bill . There were many people so I think that restaurant is very populer in London . I didn n't go out all day today . If you are a competent worker , you wil choose the merit system . It is dificult to estimate one 's ability accurately . Then , the Hong Kong Government must hold a natural ativitives of Hong Kong travel festival . In this way , we may promote more ativitives of nature such as hiking and mountaincering for vistors . There were a lot of fallen leaves on the pavepment in front of my apartment . Who is resposible for cleaning up those leaves ? Is it the resposibility of the manager of our apartment complex ? Now , my foot , arm and body are very ltch . The Roman 's structured and man - made world wide empire out of architectural forms , and those architecture forms revolutionize the ancient world and exoted and lasting influences on the architecture and the architects of post classical times . Uh , And you see a park of the Caplan hill a transformed by Michelangelo into the famous Campidoglio , as well as the . . . All of my friends will get to spend a long vacation for 4 days in thire hometown except for internatinal students who can ` t go back to theire own country . I hope his parents will be braver to buy a new wondeful car after they consult with their wallet . They are not vegitalian . This week was so tight that it was desided that I can not take a rest day during the week ! He always got mad at me when he 's in a bad temper even it 's very litte thing . Unfotunately I do n't have a co - worker to share his calumny . Me and my husband will eat out in commemoration of this anniverasary . The place needed to be cleaned was a 50 m long flower bed that formed along a road to an entrence . After the work had been done , I looked around and it looked quite neet . Quite frankly , I tried serveral times to read it but all failed . The young girl , the main charaters , her name is Lin Da Yu , after being sick I went shopping wiht my friend . When I read about this portal , I could n't bealived that someone would help me and fix my mistakes withount any salary . If any of You are intrested in history or geography of my country or city - please write - I will do my best to help you . I am so lucky that I found this webside one day ago . I have been looking for something like this for a long time . First entering it , I wrote information about myself . Welcome to you all over the world and hope you make friends with me . I 'm willing to make with friends with you . My head portrait is of NBA player Vince Carter who is an avtive duty basketball player , which shows how much I love NBA . Today I leran that the Spurs have won the 7th game of the playoffs against the black horse team , the Hornets , this season . I love Spurs not beacuse of the team ( they have won 4 championships in the last 9 years ) , but for one guy , Tim Ducun . Recentry , some Japanese enterprises are starting to use English in their offices . I have challanged myself to learn English many times , foreign restraunt . Too many peple everywhere . . I 'm going to travel to Ausralia next month . I 'm going to on a simple tour which inculde a round trip plane ticket and hotel only . That 's why I reserch some local tours by internet and some books . So I started to create an English drill , and because one word can mean severalt things , I used example sentences to hint the actual meaning , but I would n't want to have incorrect ones . I wanted to take nice shots , but they were moving quicky . Japanese peaple are said to be workerholic / s which I think so . Young peaple , including me , are not more wokerholic than older peaple . Because , older peaple worktoo late ( or too much ) and somtimes go to work even on the holidays . I do not want to be wokerholic . In our university there is a very convinient system where we can use all the fitness center year around with a fee of only 1000 yen ! Whenever , whereever I am listening to ' Whenever , Whereever ' now . In fact , I have alredy bought a Spanish textbook . In Japan , Spanish is not a major language like English , so Sapanish textbooks are more expensive than English ones . . . . . Why ca n't we have less since we are in univerisities ? there is a probelem ? Since then , my plants have been getting vigor . A guy who is travering in Europe meets a Parisienne on the train . There was only one night they could be togethere . Extreamely Hot Day It is extreamely hot in a lot of cities in Japan today . I sometimes teach sutudents Japanese and mathematics . In December I will have finished my university education : I wiil have a master 's degree of innovative activity management . This week , I have to concreat my exams . I want to do a languge exchange on Skype . But today was a rainey day in the Kanto region . It is because we can foget everything like the unstable economy . How about your conpany ? ? In summer quarter , I took an ESL ( which is an abbreviats of English Second Language ) class . I could see vorious kinds of people . I enjoyed manwatching heartily . There is an increasing amount of vagetarians in world . Other vegetarians think it is wrong to kill animals cruely . This text is for university students , amd includes econometrics . Japanese universities ' enterance examinations are very difficult , As a result of Judo traning and my part - time job at an izakaya , I learned a lot of things which are necessary for my business . so student should have the avirity to practice self control if they want to live good life . they pay amazing amounts of monny for a preparatory school for entrance examinations . I am sure I wo n't solve this problem untill I die . Although it will not easy , I should change my schule . But I do n't know how to change my schoule to the best way . Could you give me some adveise ? ? Do you have any bad habbits ? ? The main activity of this corcle is organizing what is calld `` IW ( International Week ) `` . Let me explain , my university has some cooperations with foreign ones . I 'm sorry for long sentensces . . . In wich we 'll reach the heaven that exists My parents gave me some souvenirs , such as chocolate and vegitables . Thanks to them I can get by untill the ennd of the year . After that , we dated few times and I was a little comfused about our relationship . Then I found he is kind of arrongant and everytime we were together , he always complainted about something . Fortunatley , his skill was not that excellent and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) This guy , who wants his cigaratte , asked me to bring them to his house . However , there are still verious hardships during this age . Two of their classamte saw it and then warned my brother . Fortunately , it has been already solved with a peaceful endding . I will go home to stay with my parents and eat some moon cakes . Although I dislike eatting moon cakes , I enjoy staying with my parents ! The latest conveyor - belt sushi restaurants have / serve not only fish , but cake and lelly and juice . . . . . I 'll recommend lang - 8 to my collegues . Recently we were challenged to become familier with English in my office . Foregner can feel uncomfortable when they sit on the floor while they have meals Frist let me introduce myself . Altough I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an Internetional college . Alomost all of my teachers are foreigners . When I talk to foreigners , I am too nerver to express my feelings . My grammer is not good . So I registered on this webside , and want to make some friends . I want to learn English and Japanese ( I 'm caczy about some Japanese idol ) . Last Feburuary as well I went to my parents house and met my sisters . On that evening , Yoshimi and I started to catch up with eachi other over some beer , as usual . Next time I 'll be more lelax . I am a college student and my major is informatics and comunication . many comanies in the world record great loss Afer I knew this site , my English level seems to be developed . Thanks for Lan - 8 . Now , koran time is 12 : 10 . I have a music skil test . When I was lasy , people were still practicing music . Through this process , their emotions chaged dramatically . One of the targets of me of this sumeer is to make an album with my friends . I took a class about implied meanings in English setences . First , `` If you think a seat belt is uncomfortable , you 're nevr tried a ? Parden ? I want to learn English to study computer langualge and computing technorogy . I 'm Linda and I 'm from China . It 's a small town in HeiBei I 'm sure you wouldn ' thave heard about . poort - - all kinds of sport but mostly as a spectat . The sport I like most of all is Latin dacing . I 'll try any sport you sggest . I would say that my school has raeally beautiful scenery . In that Bahrom Education , we can learn how to share with others in society through philosophy , etiquette , religion ( specifically christiarity ) and the history of SWU and the class includes group discussion or performence and indivisual activity . The conclusion is that I have liked and will always like my shcool Becaouse of some troubles , they are divided into two groups . I went to an open campas at Sophia University with my friend today . I heard over ten thousand peaple visited there yesterday . I have to study Engrish much harder . In the book , the bad aspect was the plot seems provocative , but the good things were delicate description and acurate observation about the things all aaround us . I am now a memeber of the international sales department in a ceramics compnay . Now I have no customers , I do n't konw what I should do . I chenged my profile photo to a tiger . Atter 30 minutes walking , I felt tired . I 'm a stuped girl . Evrobody dance Althought , I do n't have to go to bed right now . One of my dreams is to become a good English speaker , so though having my English corrected on this site , I can become a fluent English speaker and writter . I will write in my diary once a day , because I want to improve my English abilty . She didi n't mentioned her age but I 'm guessing that she is 20 . I had dinner late last night , I knew that but the food was still sittting heavy on my stomach , I am a Univercity student . I want to improve my English skil . I 'm wearing my favorite red dress and I 'm wearing some make - up . Sam and his friend James are true adverture travelers , and together the boys have done and seen some amazing things in the past year . It 's wierd ! ! Then she said `` Yes , I am Idahoan . `` Well , how about a Wahingtonian ? I got a parfect score ! ! ! I like movies where I can detect and solve some mistery about the main charactor , so I was not content with this movie . After I finished watching it , I seached about the content of hostel on the net . I got a call askinf me if I could go to the cinema now an hour later after I finished watching hostel . Actuaaly sometimes old eggs cause food poisoning for salmonella , Many japanese people eat raw eggs so the expirely date of eggs in a Japanese super marcket is very short , usually 2 weeks and the eggs are placed in a cool place . I love Xtmas I always get 3 or 4 presents every Xtmas . When it comes to Xtmas . . . This is used in another ocasions to socialize . The other thing I love about Xtmas is the food . Xtmas is way better than New Year ( I hate this one and I 'll tell you later why ) Whenever the blockout occurred , I browze internet and logged into Skype and spoke with people in order to kill time . The Prefectual governer of Tokyo said that we had to refrain from viewing the cherry blossom . I am pleaced to meet you . He said that our directry business strategy was finished , so we must work indirectly . His said indirect bussiness advocates more cooperation between a vendor and carrier . We will continue selling directry with vendor 's product or carrier 's service customizeing , but now we must sell service indirectry as well . to my client directry , but we contract vendors and carriers internally . S our company is a system integrator , so genarally we have IT skills , but we do n't create any of our products internally . So I fell umconfort recently . I was dreaming of my ex - exboybriend . This is not the frist time . I ca n't tell him because he has a girfriend now . There are thousands of people who fluently speak Japanese and they are passionated about helping others . But , when I find pasitive things in my life , I become very happy I think its difficalt growing vegetables . It 's often said thet old people go to bed and get up early in Japan . Saddenly a hospital offered her work , and it was a good oppotunity for her . I know if many teachers violate the law , my school will be in chaous . In Osaka , central prefectureKansai region , a famous manzaishi , Knock Yokoyama became the governer in 1995 . According to the Japanese gorvernment , 56 countries have offered assistance , but they are not coming yet . The Japanese gorvernment looks tired . I clicked it without any hesited . I feel grateful to him and I enjoyed my frist day using lang - 8 . Well , when I first played this game , I was surprised because the hero is only a civlian , but he kills inocent people for money . I rily liked that ! It was little salty , but anyway except that , rily that okonomiyaki was my stuff ! its rily nice . yoga 's rily good for not only the body , but also the skin and for relaxing ! You can make mochi in tem minutes . Spring has now come , but I like autumnbecause because I get hot quite easily . I spent alomost the whole day watching my favorite movie . Indeed , this movement which used to provocate debates has recently obtained a religious status un Spain . My life has been painful since they tok it from me and now I do n't have anything to live for . Today I want to tell you the main problem I face when I speak a forein language . The problem is that I foget words during speaking . Tomorrow and the day after tomorrow I am going to visit Miyagi prefecture in Japan , where there was severe damegas by the huge tsunami that happened in the last 11 March . This is my first time writing a dialy . I have been in the USA for businnes for two month . So please check my dialy . becase , I ca n't speak English well . My Enlglish grade is the worst . Mabye because of Tadanali Lee . I am wotching a soccer game on TV . I took listening and writing and grammar tests , I won the fisrt prize in my class , But I wanna keep her as my costomer . Am I a bad charactor ? Yo quiero doerme I wish to visist United States onde day , my teacher said it is a cool place , I wanto to go to disney too , but it is too expensive , I have to work hard first . I 'd like to know about their culture , well our cultures do n't have much of a diference I guess . . . I have not execised for almost three months , becouse my doughter was born three months ago . + Mazeltov ! + It is not healthy , so I have to execise and lose the extra weight . I went to a convention hall today to attend a conferece which was hosted by a Japanese Interenet company . Later I want to work with groups like UNICEF , World Vision or Good goodneighbors . People cath them with paper dippers . Anyway , I held blind date for two , and I did n't know there was chemisty between the two . I have 2 jobs , I 've had them for2 and harf yers . Because nursing home 's sarally is low and I have time before , I started mypart time job . There were many famiries and kids when I arrived there . I do n't mind because there were enought strawberries to fill my stomach . It 's white , littele and cute . So , I will try to listen to one episord a day . We will go to Wenyi Street and buy a lot of clothes , shoose and so on . I want to studay but I do n't know what to study for and how to studay . His act was illegal of cource , but is it so serious a crime that investigation of his house was needed ? I had a pran that I ren for 5km and did biked for 2Km . Muu , I do n't want to be in a world where I ca n't use Twitter and Facabook : ( It 's unusuall in Japan , because there are rice cookers in every house in Japan . This morning , we took pictures at a photo stadio . Of couase , grandparents had too . I bought a new Windows PC for my mobile last Thurshday . Today is Wednesday . I 'll talk about Iceland . There are a lot of things in so many ways that differ from what he or she is uesd to doing at home . Iceland is different from others countries in the world . For instance , there is no pollution . Dogs are not permitted on the iceland . And there is no amy , there is only one jail because crime is so rare in Iceland . Even though they do n't have good teachers there , they can speach English very well , but how can people except much from teachers who ca n't speak English fluently , though they can speak better than the Japanese . But today is the first time to use this webside , so I want to write and share something . That 's the English thest as it is called . He is one of the most popular auther in Japan . It is diffecult for me but I try . But it is obiously dangerous to ride on a bicycle on frozen ground . Good Moraning ! Even though BP 's best was not enough , we should try the WROLD BEST . Yet , the weather focast said it would be snowy today . We usually start to study English in junior high school as compalsory education . The lioneases are in charge of hunting during day and night , and protect the young lions . The lioneases usually stay in a group all thei life , but the lions often change their living place . And beat tha swine flu before you infect someone else ! ! I 've prepared power point slides for a presetation , written a resume , etc . In Japan , it is vey popular that girls wear it in a fireworks display . It is said that girls who wear a YUKATA are twice as buauty as when they wear usual clothes . Therefore , I became nervous when my girlfrined woar it . They lived in rearely visited areas and made hanging bridges over the The bride 's friends usually put the hana on their hands and her mother must pay for all the women who want to do their hand . * Tonify the thigh , calf , and hip muscles . Today we drove aroung the city . First we went to Tanba - Sasayama city and saw the fossil of the dinasaur in Hyogo Prefecture . So I keep on studing ! In July I 'm going to London to work and I 'm a little thrilled , becasue I do n't know whether I 'll manage with my English skills . The relationship which has no derelopment . It 's nothing else than a program which displays us the fishcards and makes sure that we are learning them . You may also ask , ' what the hell are the fishcards ' ? After 3 hours of driving , we arrived at `` Mytle Wave Water Park `` . We were dissapointed about the appearance and the size of the water park at first , but we started enjoying the slides . Calavacy ? [ ? ? ] ( anyway ) which is a kind of seafood fries is the famous dish in Mrytle beach . I just smiled at him , pretending like I wated to learn too . Fourtunately , the waitress took us to the table when I made eye contact with him . It was a very embarrasing moment . Trouble with new secrity software I went shopping with my doughter and mather . It was my doughter 's birthday , so I wanted to buy anything for her . I bought twe white blouses . One is for me and the other is for my doughter . Then we had lanch . My doughter said that she had a great time . Do n't even have the sterngth to go prepare myself tea . . And I am really looking foeward to the day when I got the passcard and a letter of admission from a good school . Yes , it 's true that all of everything is one of ture love . Ture love is just to being yourself . I 'm plaud all of them . Indeed , today I had to reseach the program of going to India and decide which project to do . I think an India project is good because of its flight cost and the langage people in India speak , english . The first man is a famous comedian who is famouse for his unattractive face . Well , lought is the best medicine . . I have half a book to finised . When I 'm finished I will know the basics in Photoshop and be able to enjoy using it . The weher as well as my feelings is bad . I have had a bad headache recenly , so I ca n't easily think inother languages . I want to be to writting fluently and quickly . . . But I did n't want to becasue I do n't have money . Please teache me what that means . I tried to hum the rythem and the lyrics to my friends , andnone of them knew the song . I ended up using `` I 'm Yours `` by Jason Maryaz . It ` s interesting to study Enlish . I think American culture is so bornig We have a problem about our euipment in our project . At the moment , it is nessasary to make a special A - frame to support the Long shaft , weighing about 13 . 6 tons . We made a drafte drawing and sent this drawing to our Design Department to Calcualte the the size of the beam for fabrication . Request scaftfolding above the vessel . Like I wrote earlier : out of sight , out of mind , so I 'm seldomly irritated by my hidden rubbish dump . XD Ironically , some things I discovered in my cupboard were litteraly ' ' out of my mind ' ' . When I found particalur things , I did n't even remember I had thrown them in my cupboard ! ^ ^ ; I discovered all the drawers in it were full of old stencils , notebooks , excersize books and other school stuff which I no longer needed . If this is what you want then everthing will be over ! As you know , this moive made us experience adventure indirectly . However , that I spend time talikng about interesting topic is hard to do . I got a job in a travel agency and I was a staudent on the weekend With the start of a new year , cherry flowers give us a preasure of spring and an exciting feeling of a new year 's beginning . They thought it would creat a positive economic impact . I rearry enjoyed her preformance However , he never got even one rattit from that time on . I 'm a stundet and 24 years old . My first reason is because I think life is colorful . Well , not for me , as I 'm atheist and therefore I 'm not going to church or going to pray at the cemetary . Yesterday I found a teriffic site on the Internet . I took the TOEIC test on 29th Octorbar . I am confident my broad - range experience and achievemen in sales and marketing divisions . We 've already booked the fligth and the hotel and now we 're choosing what to see . Language practike All this time I have been working , building and speaking with my fogein friends . But these friends are all students and they ca n't speak with me wery often . I fing friends for speaking on ICQ chat or Skype and if you want , we can meet in real life . Every night I see him in my arms but when I get / wake up he desapire like a memory of himself . We went to a Japanese syle restaurant , we all ordered pork chops , it was very delisious . they were toooooooooooooooooooooooo bad . . . . When we wash our clothes , we hang these clothes on a clothesline in a coner of the garden . They are so cute and misterious . jBut the fact is that I did n't buy a ticket , and going back to my home for the holiday will just be a dream . I want to comfort my close friend beacuse the one she has loved All I can do is to give her a phone call and say ' Hey , I 'm here . ' Howere , I know it is totally different between It 's really a lonelly world . I will travel to Hawai in April . The famous pancake resutaurant is called `` Eggsnthings `` . My friend gave me some vegitables yesterday , such as : eggplants , green bell peppers , and corns . I 'd like to talk and dibate with my kid in English in the future . I do n't think I could eat it again for a mounth . I 'm worried that I 'm getting fat because I put sugar and milk in coffe . After graduating from junior high school , I joind Japan Air Self Defence Force . I have decided to make use of Lang - 8 to improve my english avility I am shoked One friend came frome Pataya , where he works . He came with his friend We went to the caraoka together before going home . My other friend is from frence . Another friend used to practace English with me . He helps me learn English so at the moment he pactices English a bit . This was the secound time that I have climbed it . While climing , it rained and we walked through sander ( ? ) cloud . Strictly speaking , it 's diffirent , so I think they should have taught it properly . You can probably watch such lives in American family doramas . And in such HCs , they conduct commisioned business on the DIY works of customers by requests from them . I 've just finished writing the lyric ! Prease read ! If there 's a new horrizon to pursue , I would write verse two E : People do and I said `` given ( that you do ) `` , you dombo . E : Given that you were not my girlfriend , I would 've broke open your head and scooped up ( out ) a portion of your brain for my reserch . In language , speaking , writing , and most importanting listening . I will try to listen to your voic I found a new way to learn english by watching viedoes with double subtitles . MS has different symptoms in each patient like visual dysfunction , smell disorders , facial paralysis , vertigo , dysphonia , sensory peoblems like pain or paresthesia , paresis of different parts of the body like hands , or feet , or even a half of the body , etc . MS can change a peson 's life very deeply . Every family is preparing yummy food and other things for the festival , nearly ten days before the festival , people are busy shopping for things , which includ chicken , duck , fish , meat , tea , wine , candy and so forth . . . . . . everything must be prepared . Also we need to get some special gifts for other relatives and friends , parents will buy some new clothes for their kids , kids like to wear new clothes on that day . The Lunar spring festival also has another name called `` guo nian `` which means to come through the new year 's day . During acient times , `` nian `` means a monster that can bring bad things and bad lucks to people . If `` nian `` is coming , everything will not go well . When `` nian `` has passed everything will go well . So how could people come through `` nian `` ? We need to use fireworks to get it out of here , it 's also another way to celebrate this popular festival . moreover a bus arrived 20 minuites late . How is your contry 's weather these days ? I really liked dinasaurs when I was a child . I often go to a climing gym every weekend . I have not been to a climbing area in the moutain . There are several words on the Web , such as tofu jelly and bean beancurd jelly . By riding on the bicycle , every scenary of the city seems fresh . Hava you ever usedFacebook before ? com , facebook has both positive and negative effects on peopele . You can find a photo that had been taken by a witness in the following attachement . First of all , I think children should have cell phones as they are important for security perpose . Second , I think using cell phones on puplic transportion shold be banned because it sometimes creates trouble for people espacially old people who have electronical implants in their bodies . I need to use my time well to practice my English ablity . After the earthquake , I found consumers ' comsumpton behavior changed . If possible , I want to learn french or italian or grammy ^ ^ The doughter is about 25 , and her sons are two and three years old . I want some advice on what souveniors would be good to give each person . Hopely / Hoping to escape from stress . When I was coming back to my home , I met Lawrence , who is my friend by chace . Last week I did a presentation in which I introuced an article for our major . I played the guiter , I sometimes played the fiddle or tin whitsle . If you are interested in it , please try to seach it I on You Tube . My name is kaoru . I 'm an ordinary japanese high school student . I often make mistakes in English and I sometimes feel embrass when talking to foreigners . Today ` s test was a totaly mess . Television has so many funny programs that they watch televsions instead of talking with their parents , and they can get addicted which means they have little time to talk . I like Disney very much , and she knoes that . Moreever , it was hot today . Today , I talked with my friend who is warrying about love . I completed a kind of figureine at last . I ve studied some languages . Chinese , English , French , etc . some were at school , some were with friends . Because of this , I can not speak every language I ve studied in the past . Chinese and French pronunciantion * are very difficult , especilly * Chinese . I found solace in some heartwarming words in which people overseas praised the behavior of Japanese people : There was no panic , nor riot ; They behaved calmly ; They gave way to each other ; Many people gave a han to strangers in need . I went to a Japanies Restuarant with my younger sister yesterday . Personally , I do n't like sush much but it was delicious . I want to say `` thank you `` a millian times . I did n't even realize the cough drops made my stomache worse . We ate sushi and after that drunk ice chcolate , so now I 'm very full . I dicide to take the fourth trial of GEPT . I feel like improving my English skill more and meeting many foeign people . My hair is like this phote . Is n't it a wierd system ? This does not make any sence at all to me . Gradually , her body weakend , and she hardly spoke a word . My Aunt said that she was sorry that none of Grandma 's family were able to meet her behore she died . The doctor said that I have an allerge to water from indoor swimming pools . I am an overseas marketing representative of a lighting campany . To my sadness , villains certainly do exsist in any society . There were lots of topings on it and it was so good ! I envy him because I wear contact lensis and it is a big bother for me to maintain it . By the way , I relly have to study English earnestly . The simlple things are the best things . I saw a beutiful forein woman 10 metters ahead at Ikebukuro yesterday . I forgot that I was wearing a mask on my mouth and a sumo print T - shrt . I do n't know wherther she was smiling or laughing , She was only laughing or smiling at me but I had a nice oppotunity ! I ca n't talk with a foreingner when I am alone . I 've just bought my new headphones ; ) I must admit , the sound is far better than my previouse ones . Some friends call me `` a English newspaper - aholic . `` Despite the fact that I had a hangover yesterday , I went to go to Roppongi Hills ( in Tokyo ) to see a movie with my freinds early in the morning . The day before yesterday was my freind 's birthday ! I like American TV Drama . . Gray 's Anatomy , Desparate Housewives , 24 , LOST , Criminal Minsds ( I love Mattew Gray Gubler ! ) . My Freinds ( One is Korean , Another is Chinese ) are more informed about Japanese TV Drama than me ( I 'm Japanese ! ) . After waching the movie , we took pictures . My freind who is Korean had many color pens and cute seals to decorate the album . After mading the album , we ate ice cream . I think that I wa to eat Cold Stone Creamery 's ice cream every day . I bought the Citypass in order to visit the ROM as the Citypass was cheaper than the enterance fare at the / for the ROM . I always persue my goals . I want to use more natural and native like expressions instead of awkard ones . I drew him a still life , landscape and an act picure . Igot out of bed , and opened the cartains . I fell in love with Robert Pattainson ! But the frist time , I did n't like him because he was cold to the heroine and other characters . Today my conputer is broken , so I did not wriet my notebook , I have many things I want to wriet but I am not good at english , I am a sudant and I am stady about fashion dictate , . . and today I am a little busy , because we have a exam and it is about english . ihave lost my confdence in my english . . . . . the future is grey I 'll eat foods that have a lot of dietaly fibers , low calories , and healthy , For example , konnyaku , wheat , toufu , etc . Inconsidalate and racist closed captions in `` The Tonight Show `` I am a cook , but I am also a student a univercity . I want to improve my English skills , so I am writing a daiary . But I have nothing interesuting to write . Boring couses and endless homework make me feel ignored . As is often the case with many animations , they have their origianls sources ( such as novels and video games ) which carry messages from the authors Toyota Motor Corpration , which is situated in the eastern part of Nagoya city , was an economic leader for more than _ _ decades in this area . I have studied Englisg at a certain English school in Nagoya . I should give up studing about prosthetic limbs in Japan . I had a confernce at the office yesterday . Since / Because I caught a chill from the air conditioning during the confernce , I felt worse . For example cucumbers , watermelons , eggplants , potatto and so on . I have n't written my jurnal for one month . Of course , I do not like typoon . I think young and healthy people should give up their seats to older peple or pregnant women in trains and buses . Honda 's shooting and assist were so wounderful ! ! ! I went into various kined of sports : It is special kined of dancing . My mother made my favorate dishes : ear shell soup , duck cuisine , etc . I was full in the stomache and empty in the head . ( ^ ^ ) After shopping , I dropped in for a cup of ice coffee at starbacks . Lerning Portuguese I noticed that Portuguese grammer is more smilar to English than Japanese . But they are also a little deffrerent . I somketimes can understand it while / by reading , but I ca n't writting and speak it . I still have n't studied wrtting and speaking . I 'm embarrassed to say it in front of you native English speakers but I am teaching English grammer as a part - time job . attached is my curriculum history for futher infromation . I searched the internet and found an interesant page . If you have interesant in Japanese and have time , you should have a look at this page . Because I 'm poor in grammer . It has taken shape under the influense of the social cataclysms of the 20th century . My firend give me this website . I think it is a catharsis for themself . However , I can not understand why an 11 year old boy chose to commit suiside . bussiness streets during holiday We are in our winter holiday , so I went to see the bussines streets without workers . Well this is enought for today . It 's delisious ! ! ! Frunkly speaking , I make this desion with worries and hesitation . I listend to a free public lecture in Topaz hall . He gave a recture on the ' Challenge toward Excellence ' He is only 31 years old but , he has had a successful carrer ( related to / in ) international organization . and I felt encourgement . If I could write english well I could have written in more detaily I 'm interested English , Spanish , and italain . That has made me want to be a flight attandance . If I use the wrong sentance please tell me the right sentance . Nothing brings you peace but youself . The best way to predict your future is to creat it . Recentry , I have been interviewed for jobs in China . becouse you are japanese , you can get huge income . Do you know waht foreign accent syndrome is ? My name is Bianca , I am Japanese and I 'm studing at university , I am studying English and little bit of Spanish . My hobby is walking arong at a park , shopping , and karaoke ! Christmas is alomst here . . But I think to go on a tirp on Christmas is good idea , because you can enjoy illumination for Christmas at other places you have never been and also sight seeing . I think this is defferent from English speaking countries , right ? somtimes we laughing , I might make a lot of mistekes . I was suprised by my friend in the UK on Skype the other day . Acturally , I cut my hair in the front by myself . I said to my boyfried . There are many children who can not appologize . Yesterday , I read an airtcle about `` Lang - 8 `` in on the Internet news . It was very defficult . I am dissapointed by my English , but I can ` t give up my objective , so I believe I can improve my English , and absolutely achieve my objective . Anyway , I have been writing English essays recently because I need to write one next Feburary . I could communicate with them , but when they got drunk , I couldn n't communicate with them . My englush is very limited . I boiled water after adding salt , then boilded the spaghetii . While boiling the spaghetii , I sliced two pieces of garlic , cut a chili in half , and minced some parsley . I put some olive oil into a frying pan , and fried the garlic and the chili over a low flame until golden brown . I removed the garlic and the chili from the frying pan and added some bread crumbs . For instence , if you say something like ' long time no see ' if you want to greet your old friend , because I 'm working at foreing company as a member of HR department . In that stuation , I thought he was insain and very crazy . He said , `` mabye Jinwoo comes to school at 6 : 40AM . `` Breakfirst ? I just did arrangements around my desk so calmy and looked around in the class . Whoever I am , it 's unavoidalbe to taste bitter feelings , is n't it ? I like to play videp games . Yesturday afternoon , Dave prepared to join a baseball game , but I went to Tokyo Disneyland on Septemver 13th . I thought there were not that many peple . I was invided by a friend who is one of the hosts . After thant , we were explained I want to have more oppotunities to communicate with others in English . I am a beginer , but I will work hard to master communicating in English ! It is very good for theri English . but actualy , I do n't have confidence : - ( While talking with her , I realized that I prefer to hesitate first and then act . Here is one exampe If you get a brand - new thing ( some kind of accesory ) for free , do you always use it right away or wait until later ? If you sayYes , you 're a person who likes advanture and lives now ! Mmm , , , I ca n't make long sentences : ( but only me and one otherone had / got 100 % Additionally , I wolud like to help people in need concerning Japanese ! I have to resarch about things to do in China . A complaint letter ( Writting Task 1 in Cambridge IELTS 1 General Training ) I feel so glad that can improve my written english this way . And thanks to the people who accepted me as their friends on this website . I will write something on this website and also deal with some of my friends ' problems when they learn chinese . We can help each other this way . Meanwhile , I also want to communicate with them . So if anyone sees this diary and also feels like they want to communciate via MSN , my msn screen name is honeyan @ live . cn . He hit his head hard on the celling and got a cucussed . My Vietnamese Mamam Many people tell me that I 'm craise because I 'm studing Japanese . `` Japanese is a dificult language `` ? I am realy studing Japanese , and it does n't matter what people say . First one I met , I first met in Los lostangels when I was in second gread . We went to a lot of sightseeong places like Dizney land , Universal stadio , Hollywood and so on . Recently , CO2 iscausingacid rain particularily in Europe . As a result , forests ihave been injured . For example , the higher the global temperture is , the higher the sea level will be due to melting ice , as a result , some ilands will sink . Of course , people who live on these ilands will have to leave their country . For these reasons , I believe that thebenefits are outweighed ( outweighted ) by the negative impact automobiles have had on the environment . They have lived in Melbourn ( for ) about 40 years . I bought a wine - colored cut and sewn . I have been seeing him for two years and three manths . I will buy a Christnas present for my parents next Thursday . I read some comics and plyed video games . During my business trip on Wednesday through Thursday , I found a cute cake being sold at Marui ( depertment store ) . I bought two pakages impulsively . We are keeping touch since 2007 and he would help me make other canadian frineds through Facebook . It is said the flapping wings of a butterfly might creat slingt changes in the atmasphere , and , thus , ( it might ) change the path of a tornado or prevent the occurence of the it . It 's much like a metophor which can be seen in movies as well as in our real lives . No one knows what will happen , since we 're not foretellers and ca n't predict the future . One of my friends called me this evening and said , `` One of my friends in high school has died `` . It is dificalt for me to accept that , even though she was not one of my closest friends , she ( always ) let me coppy her homework before excam . I used to go to her house , where we liked singing ( songs ) and ( ? ) shipping ( ? ) quite often . I did n't expect her to leave from my life soon like this . I feel sad . I used to cook thai food with her , like pudthai . we were relly happy to do it because I told her that I could n't cook anything except an omlet . Also , I ate the expensive food at her house because we bought a lot of thing for that , you know , thing near her house . It is really expensive but on that day , we did n't care . But , we cared about whether or not we could eat the food , because maybe it would n't not diliceise . I just didnt hava a chance to use it . So , I resistered and wrote this . I hav n't spoken in English for a long time , and I know little about I really do n't konw how to improve my English . I have found , so far , that this system is potentially very beneficial for me to keep posting entries , especially since I am having a hard time keeping dialy updates on other websites such as facebook and so on . I am not saying that lang - 8 is better than facebook as a SNS site , but this might be a system that suits me well and it encourages me to continure learning on a daily bases . The 5th day , Gymnalism But I think that practice is very impourtant . You can make different freinds there , speak a different language , the most wonderful thing is to share your own culture with others . I know I am not that ambious , and always have the tendency to doubt myself . I want to improve my English ablitly and gain more teaching experience . My idea throuhgh my experiences is that the brain functions more efficiently in the morning than in the evening . Noboribetus Onsen is called ' ' Onsen paradaise ' ' . This is creasy : ) Second news : now I lern English , but my work somtimes eats ( takes ) time from lerning : ( Third news : I am preparing my pfoto exibition , but I do n't have ( enough ) time for it ! I have learnt Enlish for a long time , but I can not express myself freely in English . Language enviroment , frequence of usage and not persisting in studying may be the reasons why I can not make further progress . The first thing to do when I got up in this morning was to serch for the result of Classico , a match - up between Real Madrid and FC Barcelona , on the Internet . I predicted Real had a little advantage considering about thier recent performances . I was plannning to have an English meeting with my colleagues before I actually entered the company . We , the new faces are all hired as English - speaking sales representitives , so I thought it 's good for us to talk in English together to keep our English skills up to a good quality . I talked to Hayashi - san , a female co - worker who spent her high school and college days in Australia , about my plan to hold the meeing every weekend . I will talk to them and suggest thet we have to prepare something to discuss beforehand . Premarital sex is becoming widely embraced in Indonesia nowdays . Those parliament members are prone to polygamy , adultery , and corruption while they talk about how immoral the youngters have been . I went to a restrusant to eat food . Finaly I finished writing my resume tonight . It was so difficulte for me to write it in English . It was already more an half year that enroll in this website . Unfunately , it does n't make sense to use this website . I hope that there 's somebody who makes me understant and guides me through this strange world . My husband said , `` I am being transferred to HongKong Kong `` . Everything is very interesting and unsual for me . The test I took consisted of 2 parts : lisning and vocabulary . According to the test result , my lisning skill is in the upper intermediate level , which means my lisning level is getting better than it used to be . Which verds may I use in the abvoe sentence ? The reasosns why I study English I do n't want to stop challening something . I have lots of things to study about English , like grammer and vocabulary . I walkde I was in the Botanical garden on wensday . My excursion was realy interesting , I did n't know that the Blue Spruce arrived in Russia from Nothern America , for example . Up until now , I have worring about my English too much , so now , I have decided to go to the US . Sumou is the traditional wrestling of Japan . I often watch Sumou matches on TV . Yesterday , I helped my friends wroten compositions until 3 am . So I 'm so tird today . I saw a scean when a person threw his cigarrete to the ground from the window of his car . Actually , my enlgish is terrible . I have been taking an enlgish class for about 1year . Many people who can speak English fluently are intoroduced in the book . Or I want to sllep more . I made some new frends there and talked to them ! ! So I will give him some tommorrow morning . I got him smling , so I became happy ! I heard that 3 big torched stages will be on Kalakaua Ave and tere will be lots of hula shows for 4 hours ! Actually , I 've been going out with my girfriend ever since my practice teacher time . on a snow - coverd ground Sakuras have beagn to bloom . There are many people today at the entrance celemony . So I hasitated to go there , but today I dare to go because the weather is good . the place where the shopwas built is unconvenient to customers . Today , when I came home , My son had olready come home . The eleventh issue will be released in Autum next year . In addition , as many Asian countries surpass the hardles for a developed countries ' tourist such as sanitary devices , etc . , it is getting more and more difficult to attract foreign tourists by ethnic and historical taste which is one of strongest resources of Kyoto . The other day , three of recovery workes in Fukushima nuclear power plant were exposed to radiation . Although there is conflictin information , I was disapointed with its management system . Doctors tried to save her , but she was injuried very badly . Fortunately , he has admitted that his clothes need a litte bit of updating . I work at a cram school for elementary and junior high school syudents after school . If you like mthematics , let 's try it ^ ^ Recently , I read a book that introduced a lot of English - praticing . It looks three dimentional with special glasses . This is my first journal in lang - 8 and I dont know what I should write on this page but I 'll make an effort to write something and I hope it will be usefull for me . I then discovered that my pronounciation is bad . I love Howaii The island is so wounderful , and from that time , my dream has been to live in Hawaii in the future . My major was psychology and I also wolked at the university . The people around me are veri nice . But , I want to sutdy English . I want to talk other people and learn about ohter cultur . I began this trial last week which made my living costs deciling rapidlly and also make me eat healthier . For instance , when I watched South SouthPark , which is a famous American anime , there are many words that I ca n't distinguish . ( Not only slungs . ) So I 'll try it with an accompanying CD of a English diglogue textbook . In college , there are many books , laboratories and proffecer . It is fun to dance 50 minutes , so I want to get slnder body as soon as possible ! ! ! ! ! ! ! ! ! ! ! Actually , I have dicided to go and work in Australia during holiday . If you speak English and maybe are interested in Ruccia , or Russian language I guess you 'll have something to talk with me about . It 's our faverite park these days . He palyed there for 40 minutes , then we went to the area to play with some small cars . It became the time to eat lunch , so we went to restrant near there . He knows panda and pig before I even notie . I 'm a college student in Japan and will go to Vnacouver this April . So , I want to improve my English grammer ! when you go to various countries , you will learn more abot your country than abot those countries . However , this does not nessesary mean that people in rest of the world live in the same way . I like to play guiter . I have been playing guiter for 2 years . My familly has ( * or consists of ) seven people and a cat Reo . I will try to write about somethig interesting tomorrow . and I asked to check out twoo books , Today there is no scool , because it 's Sunday . But my sister sometimes make an amonymous phonecall because it 's an company charge . I 'm so happy : ) and shooping is exciting ! ! Today , I made a manuscript for a debate tournament with my freinds . I belong to the debate club at my univesity . In the Roman cicus , one of the most popular sports was performed by a person who leapsaround . She was obliged to vow opely the she had been there . My company sometimes holds farewell parties , Chiristmas parties , year - end parties and so on . The restaurant next to my office holds a promotion that we can get free drinks for an hour for 10 poeple if the business card we drop into the box at the restaurant is selected . My friend was very tird because it took a long time . I have decided to stay wiht an Australian family . I want a lot of imformation . A crossing in this city may be very suprising for foreign people making a trip to Sibuya for the first time . I repeted NPR news out loud by reading a transcription . I havet to practice more ! I will graguate in 1 year . Looking good ! we had an opening ceremony in my school and I must stady hard to I am a profecional wrestler I 'm avarable on Monday . Now that I know about this , I belive my english will get better . I heard the grade of TOEIC of Taiwan citizens was lower than Japane , Korea , . . . . So would you please share your exprience of learning English or another language with me ? I do n't know why , but I overated snacks . . . . The time of witing a diary has gradually shortened . For example , my job starts at exactly 5 o ' clock and it takes hald an hour to get there . We are trying to speek solely in English during the meeting . Tomorrow I 'm goint to dubbing in Maldives . However , some people will keep studying languages as long as they 're not losing their interests and foudness for them , even though there are many barriers to learn them . attend : I dicided to attend the language school in Umeda . occupy : In this company , women occupy 60 percant of the excutive officer positions . concentrate : I was scoled by the teacher and told to concentrate on the class . persue : Humans have been persueing the truth , but only few people have found it . Hopely there is someone who can help me . Althought I had made a studying schedule , I am way behind it . But fall was coming towrd us in silence . Fisrt , I want to take a city - tyour bus around Seoul . This website of course allows me to keep practising English , but only my writting . I 'll write my french `` hello post `` larter - I have my head full of english now due to my work and I 'm not good at `` switching languages `` yet . Today I practiced playing card magic . Actually I did n't excercised yesterday , either . This is the first time we have lived far from our home so we are feeling very unhappy and miss my family so very much . especilly , I miss when we sit to eat together and when we play something together . All students that study abroad say they have the same upset feelings . That is , they miss their family when they have a celebration and they always want to go back immadiatelly . I guess that famous people can permit themselve strange things which become elements of their style . - suger , 1 - 3tsp - Put mint leaf , lime and suger into tumbler . Every morning I go to Sterbacks coffee at 7 : 30 . Hallo ! ! Because I tought that having a big room could lead to an expansive life . I have not done much exceises and have drunk and eaten a lot . Diseny and Japanese animation 's characters are illuminated there . I 'm learning English to communicate with foline people . Please check my sentense , and pick up my mistakes . I are breakfast and went to the liburary to study English , but I coughed so many times in the library that I went back home at around 3 : 00 pm . How Will I Spenf My Spring Festivel January 1st on traditional Chinese canlendar is Spring Festival . I hope these could come ture . I do n't think I 'm contacting him until he contacts me , because this reprehensible audasity ( ! ) has made me all sulky . And I 'll also hlep other Chinese as possible as I can . I palnted sweet potates last Sundy , I also palnted cuvamber , eggplant , tomate , corn and watermelon . I 'm lokking for big harvest . A certain research center desinated night time work a second degree carcinogen . Tell you the truth , a cuty was sitting in front of me and I wanted to pretend that I was studying . . . Everything is beyound my imagination . Usually my landlord notices me when the visiters are coming . However , somehow my landlord and a visiter came to my room without notice . . . ! ! But , how could the landlord and visiter know about a story of Gachapin ? This makes me cofused because I feel he 's like a little boy but , I 'm gon na leave my country to go to Canada in 2 months . We did n't talkin about these feelings but , someday I want to have a the time to talk about it [ with him ] , but I 'm scared that it will change our relationship and feelings . When we see an old couple jogging together in the mornin , they look happy . I made cake of maccha for my mom and gave card from me , dad , and my brother . At the seminar , the instructor said that Japanese tend to feel nervous or tense when they make a presentation for many lisners . 3 ) It is unusual even for Japanese to speak with heighest honorific grade . `` I got a lot out of the expierience . `` `` I got a lot from the expierience . `` ? I have only simple sentance , and vocabulary . Please read my sentance , patiently . Some people think that they can learn better by thhemselves than with a teacher . Others think that it is always better to have a teacher . Which do you prefer ? Actually , I 'm studying Microsoft exel by myself using several exercise books right now . However , the most difficult thing to study by oneself is contunuation . We can learn passively while being tutored and it 's easier to start studing . But I decided to get a new notebook for my convinience . In additon , Japan was the winner of women 's W - CUP football today . ln order to get rid of my bad luck , l 'll get out of school and have fun witn my friends this weekend . The first time it was a German guy , he had been seeing a russian girl from Sankt - Pietersburg before our conversation , but they had down split up . We were talkind about different writers and he mentioned Bulgakov , I said Bulgakov is a Russion writer , he was surprised and asked me `` Really `` , I answered `` OF COURSE ! ! She 'd been lerning for 5 years . Despite this resistence , I wasted 4days and about 5000yen . . . . `` Pirates of the Carobbean : On Stranger Tides `` was exciting , too . I go to work by train and walk for an houre . I do n't like the train becouse there are so many people on it . I think that it is a good thigs for children , however it is bad for adults . This story is realy sad and breaks my heart . The pitches are written in flet numbers , so tablatures do n't show musical ascent / descent very well . Evencally , I stayed with my friend . Over 30 people came to the Christmas party , it was lovly ! ! Wasabi is Japanese horserasish . I plan to go to Germany for a bussiness trip in June . I am in the blass band Is there any language course from April to August 2011 befor I enter I want to have many frinds throughout the world / all over the world . Kate has her dinner in a scholl canteen . Since I 'll stay my home for two weeks , I ca n't see my dormitory friends durng the term . At my university , freshmans to choose one of these courses for the next year : literature , intercultural communication , linguistics and international relationship . I bought a chicken and rice casserrole , pasta and iced tea . I like to eat spagetti . I do n't like hot weather , neather do I like cold weather , but if I have to choose one of the two , I ( would ) choose cold weather . I took a picture of the shrine and the sweet called ringo ame , or cand apple . My wardorabe needed to be tidied up . I go to the lessons evrey Sunday . But finaaly I found what I exactly want . and I jusrt wanna learn more forgein languages , I want to be a traslator . Besides medicine and injections , what mythod can help cure a cold quickly ? actually , I 'm not good at speaking and lishtening to english . . I will plan a weekend schule . in the Afternoon I will be watching movice at theater , and eat dinner on a newly - opened restaurant near to it . Sunnday is my classmate 's wedding day , I will attend . What is the difference between present perfect and present perfect continous ? I am a student , but I have a job as an instracter in a fitness club . The menbers of the FIFA World Cup were announced . Today , we had an English class and watched the drama Full Fullhouse . So eterday I look frearfuliy at the scales . One of my colleagues said that if the suspicions and misunderstandings about the conflict become amplified , a war will inevitably happen and our country might be dismembermented into several small countries . If that is the case , I will have to apply for a passport when I go back to my hometown ( which is far from my workplace . . . ) I hope I can have more opportunities to practice with natived English speakers . I thougt that I should be carefull when driving my car on ice . It 's very cool and confortable in summer . I will see many animals in a famous Zoo and do horse trecking in Hokkaido . It looks so moderm . Most of the vehicles in the parking lot were cars and scooters . I rode my bike into the parking lot and I asked the guard loudly and dinified , `` Excuse me , where can I put my bike ? `` . Well , I was succesful on the first step to being special there . Finally , I found the most approprivate position for my bike . Still having confidence , I went to the stand , and after obtaining my monney , the bank teller asked me for the receiving fee . It took a few minutes to colectted all the small change in my purse . A heart that is always waiting for you and satify with your love . This way reflecs an indemocratic face of America . Oh , America . If you call for respect of human rights and human dignity , why did you throw Ben Laden ` s cropse in the sea as if he was an animal not a human being ? Second , I decide to reserach literature for my theory 's title with my Finally , I want to work on improving my oral skills and not being nervous while I am reporting somthing . I was supriesed at how crowded it was . I shoud study English very hard . It shows a thema park , hambuger , cellur phones and Coca - Cola . Suprise ! The new room is wide and clene . I apologise if some of you feel ofended , it 's just a linguistic possibility that crossed my mind this morning . He said a drunk person lost conscinousness ! I told him the address to anather hospital , because my hospital does not have a CT scanner . I did n't want to watch the concert standing , but I could n't wacth comfortably sitting . The door - to - door percel delivery is ridiculously expensive , but I have no choice but to ask them . It 's been a long time scinse I had wrote before . . . . Onece upone a time , there was a man who had worked hard everyday , all the time . One day he cought a cold . His illness was not bad , but he could 't stop his nose from runnning . After a while , finaly , He came up with an idea . he looked up and just stared at the fluoresecnt bulbs on the ceiling , because he was working in his offise . 4 , Tha plan was executed as originally scheduled . Momo is so smart and popular among dogs in the neighborfood . It 's so expencive . Despite that this book was written about the devil it is the smartiest and the most amazing book I have ever read . This scene is describe so detailed , it 's like the autor was there . Recently I watched a TV - programme about Bulgakov and found out how he wroute it . His wife wroute it from his words . about photogragh . I Especialy Iike the kappa sushi which is a Japanese high tech sushi shop . He noticed us and he parformanced with melodramaticly for us . I had always sent the picture from my computer skin to her becasue I ca n't anwers her question since my sister bought the computer I never had to ask her about speck computer . One of my friends came to my computer 's contronl by using some program to help me check my computer . I did n't know it had that program , and I am relly serprised how he did it . Now my senior is looking for a cheepest airline chiket . This week I talked to one of the menbers of the Eglish practicing club . However , this morinig I went to my office for a little work . Thus , the festival was rly excited . And I had lanch at a ramen shop with my labolatry members . I got ta go to the festa again tomorrow . I you hava time , come to the festa . Please look at this setence below . I do n't want to face a grammer book every day ( it 's so boring ) , and I do n't think it has a good effect on me . This is my first diary on this website , so I ' , m kind of nervous now because I am not sure if someone corect my English or not . it is a good nigth I am in tha computer , my family is asleep beacuse is late at night ! ! . . . It is 5 miniuts walk from JR Himeji station . I wii work as a translator . I hope I speak Japanese and English as if it were my native lanugage some day ! ! So I went out to meet one of my ex collegue . The cherry blossoms of the spring came litte bit late this year , but the mood of spring always makes me happy How abou you ? According to the unoficcial information from a friend of mine , who is the finalist of the former astronaut selection , the authorities will give the examination every ( ? ) 2 or 3 years for some reason . People have trouble finding jobs and they end up becoming homepless , so the government needs to help people to find jobs . The other is to try to prevent homelessness by providing accomodations , such as hotesl . Orgsnize medical charts I have a lot of thing to tell you about my hometown but I scare you correct my diary for a long time please let me a bit to tell you while I stay at home and write my entry . I do n't have that much to tell you , but when I went to outsite I have a lot . . All the people do agriculture and take care of bufalow There are lots of beautiful montains in my hometown , like ZiJing montain . We live nere ZiJing montanil . I 've just added the Lang - 8 to my favorit list . Happily , I do n't have a faver . So , I went to the English sppeaking Salon in school and I spoke English . But I have difficulty speaking corrctly what I would like to say . I watched what was happening in the northen area on the tv news . Now , not only Japanese but also pepople living in abroad worry about the effects of radiation , but do n't worry . We got up at nine o ' clock and took breakfast at a restrant in the hotel . We packed our baggages and checked out of the hotel at eleven o ' clock . We had to be at the hotel 's loby , so we left our large baggage at the hotel . Then we walked down the river to Marlion Park . About thirty minuites later we arrivedat Marlion Park . Marlion Park has two Marlion statues . Mixd feeling ( s ) One is Mario , she 's a Japanese that everyone ca n't tell / guess the age of , and the other is Sinan , a turkish that is a little bit mad ( I mean funny and crazy , careless about the rules ) . So it 's going to be a very fun and intensive semester . I think during the preaching class , the speaker aroused my interst in the bible . This is my firt time on this site - I 'm excited ! Hope to keep this dialy for a long time enough to and this day , I 'd like to take a walk at the park with Earphones on while listening to songs of my favorate singer , ' Brian Macknight ' . . . When I met a doctor from Standford amonth ago , I coul n't talk fluently . How can I have confidece ? Please tell me , What is the diffarence bitween NO and NONE . He had a notebook that he was cariing all time . I think I love her . `` 7 mounths later , they got married . I went to Hakkeijima Sea Paradice yesterday ! Chao ! Today I met some frinds . Recently , Lerning English has made me very tired , but Taliking with frinds in English is very and will make me I read Japan Times Online to collect information about the Japanese ecconomies , affairs and events . In Japan , ' Valentine 's day ' has a different meaning from other countrie . I , a holic , love this season very much . How do you spend valentin 's day in your country ? [ 2011 - 2 - 15 ] Suprise Today was the happiese day in February . Last night , when I was attending class , a sellphone call made me nervous . Why ? Because one of my classmates called us asking if someone had come back to the dometory , but all of us were outside except for that classmate . imaging no one was in the dometory and my classmate saying that he heard someone getting in his next dometory , we knew that there was a thief getting in it ! so we ran out of the classroom immediately and towards to our dometory ! Fortunately , after arriving at the dometory , we discoveried that nothing was stolen , We were aware that the thief had the key to the dometory , maybe the thief was a student who had even lived in the same dometory ! This traditional festival originated from an old legend . ( The next two paragraphs are not writen by me , I just want you konw the strory . ) when my teacher heard the sounds that my classmates made with the Dan - so , she dicided to let them pass the exam because they made the correct sound . It was so exciting and unexpectable . I know Japanese people are notrious for not knowing much history . actully I 'm surprised , its awesome , it really is . Yesterday I made a foreign friend through Fcaebook . At first , we were devided to two team . Of Ofcours , the team being questioned have to answer quickly . I work in the depertment store and sell a lot of baked cake . In Japan , men who received chocorate from women have to give some sweets to women ( on White Day ) . By the way , I will go shopping with my best friend tommorow : ) Becouse her school 's admission exam was conducted there . She wrote a card that says `` Thank you for coming to my town and you guys are so cool `` , drew a picuture and cut it in the shape of a heart , even though she had n't seen them yet ^ ^ ; I was a master of a celemony for two or three competitions for the master of the sumo wrestlers , so I know him well . I pretended to be the person and said `` I love you `` to my primary school classmate , and she beleved it . When my mother and my anuts grew up , and they got married and had babies . My favorit restaurant My favorit restaurant is `` Omoya `` , located near my conpany in Yoyogi . I always looki forward to eating a traditional dish of Japan that is made from seasonal fish and vagetables . I read Sherlock Holmes , I was so exicited , Can you immage composing a picture with nothing eales but hair ? Can you imagine making a picture with butterfly wings ? I ca n't immage this , so when I saw the pictures , I was deeply moved by the composer 's patience ahd creativity . It is difficult and hard for me to study English but I like to comunication foreigners so I like studying English alot . I was uploading in the internet for languge exchange . so I rejeted him , but he has been sending me ( SMS ) messages and calling me untill now . We were teaching each other , but after learning he took me to a beautiful river and he said he is looking for a frienf . . I was very shocked and became so angry and disapoint at the men of Singapore . Finally , I graduated from graduate school of engineering and got a degree of Master of Enginnering today . I usually spend my time drinking with my friends and watching america dramas . Today , I found myself just whatcing america dramas again ! ! A simple question just popped up in my haed . It 's lik Venice in China . It was all lols for me but I conld n't say anything . I met some foreigners and many students who also want to practic their language skill . I know it does n't make sense but I would like to know if is it gramtically correct . Is that ture ? I 'm supossed to visit Germany , Belgium , Holland and Italy , at least . Including : Meals ( breakfast for the 1st and 2nd day , lunch for the 1st and 2nd day , dinner for the 1st day ) . Bus ( from Hanoi to Ha Long Bay ) . Guide who can speak English , Boat . Crusing and tour of the limestone cave . Thr story is hard to tell but it is wonderful for me . The scene was recorded on video camere and the article said ' as if he were a magician ' . The person I admire is my grangfather . When I was a child , my grangfather tanght some useful knowledge , for example , Math , Chinese , science and so on . My grangfather is very kind and courageous person , so his students all like him . My grangfather is the person I admire . I have no friends here to studyy English with . It was too early such that there was no any other costomer yet excep me . We went to a library to study until 4 in the aafternoon . Then I left for the post office to claim an official ducument . I remember your smile from the past that never was , when we all lived together in a valley , in a forrest . It 's a plesure to meet you . I thought my order was recieved . I 'm working as a cram school teacher anf I 'm good at Japanese ^ ^ The tool was made by a good programer . My farst objective is to keep on writing in English every day ! I 've written an arctical , but I will try my best ! ! ! : D Thank you friends for caring so much , I do appreciate any messages or corrcting from you ^ ^ My roomate has been keeping three small turtles . I was looking forword to reading this new series , but I did not notice that a new book was sold . Luckly ! I 'm happy to find a creative store that sells many creative , useful things , sush as , milk in the shape of lamps , fried eggs in the shape of lamps which shimmer in the yoke , flowers in the shape of electric fans , and so on . But the most intetesting thing to me is a lamp that is like book car and can shine out its edge . It is so convenient to me in reading in the dark that I can read commic books and wo n't be found by mother . CS5 is producted by Adobe . My daughter has been going to this school since kindergarden and she likes it . Well , I think I 'll write everyda , Although I must go to work leaving her alone , I thknk that our time together is still good for us . My wife and siter - in - laws will come back home and we 'll have a party . As you know , when experts advise you on something , you might accpted it without any notion of whatyou have in your own situation that they do n't know . Why 's the deley ? I 'll definitely order the rest of the seriese . I found that some of my firends had been here . I like it vey much . Another was making the temperature inside their own house as cold as the temperature ouside . What kind of alchols do you like ? Some flever are like passion fruit , woods , or smoke . At the event , many companies prefferd whiskies to visitors and the event program included an artistic performance and a cooking class featuring whiskies . I 'm going to watching musical `` singles `` with my office collegue . Another famous scenic spot is Songyang Academy , which was built during the Nouth Song Dynasty . By the way , I will do a presentation for my president the day after tommorow , so I 'm a bit nervous . `` Get everybody out I want them all actio * * * `` I am now in the 7th semester of Ingineering school . Next , _ I _ Icreate character designs . But I have something to do , for exanmple , cleaning my room and preparing for tomorrow 's tasks . Since I came back to Japan , I have seen my firends who did n't see for a year . I talked to her by Skyp at the first time . The Skyp is clear . There are many kinds of ppendix . The system to register courses here is more compricated than at Tohoku Univ . Most of the courses repuire that we get permission to register . When I went to an Asian grocery store , a clerk tolked to me and began to explain the rice sold in the store Today is the seventeenth day of the sixth month of the Lunar Calendar in Taiwan , and the seventh month is called Ghost Month ; namly , Ghost Month is coming ! As interesting as these activities are , some still regard Ghost Month as an unluck month ; hence , some keep out of playing in streams or sea , some go to temples every day , and some are very careful of what they do and say . This was the first time in a long time , becouse I had a university entrance exam . I am lookin forward to him growing up . O ~ M ~ Godness ! ! She said , onec she was called into the police station because she forgot to bring her driver 's license while she drove . Thank you all for your patience nad kindness . facinating way to imrpove writing However , she is so modest and said `` I do n't need notihg . It is difficult to select presents for women , espcially for girls . I am learning English and Janpenses . He was a great driver in the narrow road headding for the river . I was very happy to talk with my friends and watch the blightening water splash . My grandfater was Filipino and my grandmather is Japanese , so my moter is a half Filipina . Though I remember words everyday and when I read an english artical it is so hard and I come across so many unknow words . But I ferventy beliver that what makes you scared , will make you stronger ! But I found out that I was easily adicted to the plots , not the English actor 's lines . Fires in the forests around the sity are still raging , and if the wind changes direction , the smog will cover the streets again . Ra - yu is chili - infused vegitble oil . Well , to make a long story short , I won a prize from a TV program that entitled me to take a picture with a baby panda at the Chengdu Concervation Center in the Sichuan Province of China . While listening to the global news from London and giving my daugher piggyback , I wash the dishes . This is [ probably ] because I slept with only [ a ] t - thirt [ last night ] . I 've made a dress for my doughter . I have made my doughter 's dress which is pale yellow so she wants to be a princess too . At the moment I have my music turnded up really loud , because there are horrible sounds outside . One of my neigbours seems to be having his birthday today . But they are playing the instruments in a completly wrong way . . . it sounds awfull ! Today , I 'll introuce to you what I have been trying to do recently . Ordinally , I do n't feel comfortable with the atmousphere , and I 'm annoyed with them . This attiude is better for me than being annoyed . In summer there are no temperature differences because it is aways so hot . Do you have any ideas or do you have any suggestions of good reciepe ? Generally , Japesen girls like natural color when they wear make - up but in the dark place , we ca n't see seer color so she thinks vivid color make up may become a trend . I have to choose 2 subjeckts for passing except obligatory maths and Russian . I am inclined to choose ( what is the difference between `` to be inclined to `` and `` in favour of `` ? ) English and phisics . I am very hesitant about phisics . I can leaarn by heart all dates , but I will remember them only 3 - 4 hours . But now , he has found hisself and he is reflecting about what he did . Evey year , on July 18th and 19th , a summer festival is held at the shrine of this town . I dushed out of my apartment with my kids , to the street . the leader of the mikoshi encouraged its carrers . And the people on the street applauded to the carrers . I am not good at summarizing stories from books and movies , so this pracctice is tough for me . The story begins with humans destroying all natural resources on earth . They now have to seek resorces on other planets . They discovere another planet that has a lot of resorces . However the resorces lie in the places where natives live and they will defend them . One of the AVATARs learned how the natives think , what they belierve in , and cherish . Meanwhile , the other human beings attacked the tribes and their sanctuary . They believe in spirits and chrish nature . Level of Chinses college students ' English As a college student in china , if you do n't understand some simple English , you 'll be certainly laughted at . I 'm a third year university student , my major is Japanses . Only our Japanses department does n't study English in the first year . But we all have to have CET4 or CET6 ( Common English Test in china , only college student can take ) So we pass the exam by using what knowledge we remember from high suchool . It 'll make me good at pronouncing English : ) I think pronunciation is very important in order to have a convercaiton with native speaker smoothly . If you are falilier with Taiwan , please let me know about I heard this is the real sise . Maybe my pace is once a manth . 2 weeks have passed since the earsquake in Tohoku . Japan has recieve a lot of support from people all over the world . And white symbolizes puriey . Everyday , her smil makes us happy . I do n't know if the same course tracks exist in the US , and I 'm not sure that the lebral arts or the science tracks have the same meaning as bunkei and rikei in Japanese . I enjoy listenig to and singing korean songs , The two brothers are very vigor and said to have fights constantly with their mom . This thing is quite usefull to me . He has a great stamina , and doesnt n't stumble easily when someone hits him . The man feels that the increace of the Health Center 's fee is still a good deal because it is still cheaper for us than using other company 's or pharmacy 's . Actually , we can save $ 65 by getting vacctination at the Helth Center . In contrast the man says that you do n't have to pay , if you do n't need to take the vacctination . In addtion the man adviced her to wear warm clothing and use an umblella to prevent cathcing a cold because she always ends up getting sick during this season . I took a morning bath with my son and had a breakfirst with my family afterward . We made an appinment to meet at a cafe near my house . At first , I introduced myself , then I asked her some questions about her exprience as an English teacher . I mentioned to her that my interest is politics , so for example , we talked about why the prime minister is ( so ) unpopular , or what 's the differnce between the new immigration law and the old one , etc . I wish I was a supperman who can do many things at the same time . My Personal Histry No . 1 Aug . 282010 Yahagi was one of 12 military families who supported and guarded the Japanese emperer . The emperer called `` the decendant of the gods `` had landed on the island of Japan with military families . First off , do not associate with the killjoys , bacause these people keep you from laughing and make your life a state of sadness . Therefore , it is better for you to aviod them , because you will definitely be badly affected by those people . Secondly , serround yourself with what you love . Moreover , be satisfied with yourself as you are . Do not think about your height , weight , or diseases , bacause thinking a lot creates worries . But all I did for preparation were only Lang - 8 and conversational ressons 3 times a week . But my youngest son was hanging around the sutadium during the match . Do you mind if I give you money for th T - shirt and the ticket when I meet you ? Some people say he is a fairy , goast or illusion , but we do n't know the answer . If you have some good advice , plese let me know . Saving electricity is an inportant issue in Japan . Head office and factory have keep temprature at 28 degrees . But I am a sales replesntive After that I have to go to outside to visit our cleants I hasitated to buy that ( it ) , but I tried . Becouse I have watched them a lot of times . Recently the weatger is so bad . exam quistion I drank TAPIOKA ! ! Returning to the song , I think that witout hard work , you wo n't speak English well . My school is in Sourthern Seoul , and my house is in Yong - in , Kyeong - gi province . It 's kind of irritatng . I have no choice but use that transfortation . According to wheather forecast , a typhoon caused the rain . So I was a littele bit disappointed . English is very diffibult to master / learn . If we meet someone in person , how fantistic would that be . Then three peple continued the discussion . We talked about how we will meet at Tyler 's house in our dreams . I will prepare Thai foods and neechan prepare Idonisia foods . I was pushed by many people and I had to be in an awkward position like in tha Matrix ! They can live with litte water because the hump has water . Whne I was a student , my science grades were very low . I 'm writing in my diary for the first time in many mounth . so I have n't wrriten English sentences at Lang - 8 for a long time . and I am going to attend the international forum with affiliated school students this autum . Some Affliated school students are students from foreign countries , , I was annoyed all allday long For example , some homework and desiding the subject of my graduation thesis . Skupe is for learning . Avater is one of my favorite movies . I 'm little nervus About the mine accidenf in Chile At first , I was happy and impressesmd by the news that all the miners had been rescured . After that , I felt a little starage . Why did the Chilean govornment agree to re - digging such a dangeorous mine without appropriate researcing . The attached lenz is mine , a Nikon AF nikkor 50mm F1 . 8 . I 'll play with my juniora shool friends tomorrow . I hope I can meet many good friends here and exchange launges . I belive learning languages is same as learning another world . Today , I was reading many magazines about delicacies in the bookstory . Brackout ! ! It was a brackout ! ! Today is Valentatine ' s Day . ahee ~ chreer Up ! ! ! ! Could you give me some information anout this song ? There were many beutiful traditional buildings . I ate sandwitches , scones and a little chocolate cake . All food funtastic ! ! ! I wondered if I was prioncess . I have visited Kasse . I answerd her that it was a story about a person who became crazy because he read too many books . We laughted . They were done by artists from the Impressionnistes movement . I hope that I will be able to meet nice friends through my diary on this wesite . When I was reading passage about a new contemporary art meseum in L . A . , I found something that was n't clearly deliverate with it 's meaning . The phrase that I did n't understand was the follwing , `` A successful Broad museum would go along way toward cementing that status , which makes the possibility of its failure that much more of blow . `` The story is about a TV reporter ( Bruce : Jim Carry ) who has just losen his job , following that , many unluck things happen to him . Getting to know how to speak the language is an intersting thing . It is okey even if it is a black one . Okey . ) It was inconvinience but I thought it was kind of funny actually . My brother 's friend 's housse was kind of under water . Fortunatelly , I live in the highest area , so my house was OK , somehow . I have also read the news just now , and according to this , at least 51 people were confirmed dedad due to `` Ondoy `` storms and 280000 displaced due to flood . Aplir ( ? ) 10th the starting pitcher was Eric Bedard . For example , when I buy somthing priced A $ 1 . 53 , I have to pay A $ 1 . 55 . The beggining , I was at a loss . It is hard for me to concerntrate on study at around two o ' clock because I really feel sleepy . . . . I felt refreshed after the nup . It is important to think about strateagies and just try them once regardless of their credibility when we have a problem . For examle , They tested it so seriously that I laught more and more . Its total area is over 17 million squear kilometres . There are different types of climat . I would appreciate it if you would help me accuire a good command of English . I 'm concerned with a practice session in prepartion for a public perfoemance . I am majoiring in the architectural equipment industry . I do n't think it is a hay fever season now , but just some alegy of mine . . . I 'm a bigginer at Lang - 8 now . I keep watching until around 2 or 3 a . m . I 'm sure it 's an unhealty lifestyle , but I ca n't stop it ! ! Today , I went to the univercity . So , I went to see a docter the day before yesterday . But my docter said that I have an ordinary cold . Exspecially I liked sheeps . Hello , my name is Claudia . I would like to be a teacher . I like voliball , romanic movies , and anime . I like music , but a hate the banda music or something like that . I would like to improve my writing . I fugured that she might not want to talk to me so I told her it 's OK to end this conversation . 3 ) My another parter , who is an ABC , told me that he was busy typing a manu for a restaurant . She walks like a lady , but she always carries a large gunny bag filled with books , which is a little bit not so campatible to her `` gentlewoman style `` . I had a bit trouble when I attemped to sign up for the forum . To my surpise the code was accepted . Sometimes , I think about visiting France to fullfill our desires . Maybe , I 'm still scared of the feeling of lossing him , who was very precious to me . All of the students were devided into 4 teams and they made some dishes by using wheat they 've already milled . The restaurant we choiced had cute waitresses wearing Japanese traditional clothes . I am really anoyed by them . . . They especially love Red Bull and Moster . Library is open 24 hours and a few studets are basically living there . Tommorow , We will have a welcoming party for a new employee . I 'm a fan of Hanshin Tigers , a professtional baseball team . By the time it started , I had helpt her buy the alcohol because she was not [ yet ] 18 years old . I have to work , so I will say goodby , and I expect to see you soon . Your brother , R My apologies to those who work on Saturdays and those who do n't work at all - apologies mixed with regret as the feeling that comes with the arrival of Fryday night is so exciting . In order to add some value to this day I 've attached some amazing illustratiuons by Alexander Jansson that might make you feel some of the beauty , delicacy , fragility and strenght of the world of his imagination . I staied in China for two weeks . I was told of the existance of lang - 8 by my college senior . These are my oponion on the advantage and disadvantage of eating out . I serched new music on Youtube as soon as I got home . I still do n't know how to use this softwere much , but if I can use it efficiently , I 'll be able to compose cool music . My name is Lisa . I have been learning Englsh for eight years . I like siwming . The story was during our talking , he was talkingabout howhe had a big test coming up and how he was reallystressed out , becuse he had to read a lot of material both from the textbook and out of thetextbook . Then , I asked him what he was studying for , and he told me he was in a TESOL program , so when I heard it I slipped something out of my mouth like `` what the , why does Tesol program need a hard test like that `` As soon as I saidthat , I regretted it , because it sounded like I was looking down at his course . I got my resulte from the TOEIC . My fevorite I started unniversity study at an old age . I 'm a front - end web - webdeveloper . I started 3 marionettes and even if they are in their beguinning stage , I am confident that they will look great . Am I prepare to go foregin ? I wondered if the hot springs were made naturally because there were no voclanos there . He said that he was Europian and traveling by himself . I 'm lookin foward to it . I talked with my sister - in - law today . She said that she is going to Hawai this autum . Actually , I feel the negative effect caused by the credit crunch which is expanding to tertialy industries day by day . Anyway , my office is now based in a foreign contury . In my office , there are borth local and Japanease staff . I 'm tring . `` I hope you sufferd just as me and my sister suffered because of you . Intoroduce myself I 'll have three straight hilidays by tomorrow . Typhoon is Comming There was heavy rain early this morning , because of a Typoon is comming . A Typoon brings a lot of rain and we 'll feel more comfortable in the boiling hot summer . It says `` This island does n't welcome the minor typoon that can not cause a day off . As a result , the charge for erectiricity was higher than what I always pay . Tommorow , my mother and grandmother will come to my house from my hometown . I had the buffet at the wddding This Monning I had to hurry . Becuase I woke up late . Plesas check my diary entry . haha , and now I 'm too lazy to move them to my bed , I 'm sitting with them cusioning my back . I visited switzeland last week for business . Everywhere is butiful , I met freiends , japanese woman anda German man in Zurich . I recomend everyonevisit Switzerland for this time of year . Then , I wrote a dialy . So , I think about writing another dialy , and studying English . Because I will go to the univercity next time . I remenber many memories through the air . I really like Natalie Portman ; I think she ` s very tallented and extraordinary , but I hope she won ` t make that mistake again . I was surprised by the very big buyout news after such a long time in VFX industry . Even though he only met het once ? he never forgot her . Resently I watched Mr . And a baddy from ' Spaiderman ' appeared in it . After lunch , I read a book called ' LOST SIMBOL ' writen by Dan Brown . So , only 15 people can attned the program . Do you think elemntrary school students , junior high school students , and high school students can do whatever they want ? I should be careful about spending the time and mony . And after that , I went to Mexico with a frend and her son . There we had taccos and some beer , and we danced a bit . I am staying in NY to stady English . Usually , I shoul watch TV or do something else . But I have no choise . Anyway , this bad period will last untill Tuesday . I realy yearned for them . Kartepost . com 's users can share thier experiences of disease . Of Ofcouse it is very difficult issue , but I just ca n't support them . I 'd like to use `` Diffussion `` to make a sentence . His new home is in Akitsu , and is 30 minuites from Ikebukuro by train . so prease talk with me on Skype . has tought me a to stay whole . So I will study Engrish hard ! He was listenning to music while walking . This carm me . I hope one day I can design my oun house , and use these beautiful tiles . We ate an ice crean and drank one cup of coffee then bought two cans of honey . Living in my house is so boring that all I do here is palying games , watch TV , and study . The erathquakes here are so annoying because sometimes we get the electric power cut off by our goverment . It seems that for the same purpose , sometimes a sentence is put between brackets and , at others , betwees hyphens . I can speak good stantard Chinese , but I always misunderstand the vendors in the market . How I miss the days when I speak Cantonese and proudly take people speaking Manderin as outcomers ! I hope everyone who uses lnag - 8 can help me correct my mistakes . 7 - Eleven is a famous Japanese convinience store . I can find the shopls near my house . I was very surprized . The derector the most famous director in Japan . I thought , `` it 's so easy , `` and wrote quikly . My father played pachinco and I used the coins that he won . I ate peyang sause yakisova . After that , I had a English lesson on skipe for 30 minites . When we want to express the cause of something , we say ' because ' , ' since ' , ' as ' at the beggining of that sentence . Yestarday I just got game soft . His speech was excllent ! Actually I do n't have paticuler plan everyday like meeting important people or anything like that but I am physically busy as hell . Under the cercumstances , Sometimes It 's not even a long enoguh time to creat anew diary entry . There is a student union eletion in my school today . Since your entries are of great worth to two groups of Lang - 8 users ( people who study your naitive language and people who study the same language as you ) , you are recommended to tag keywords in 2 languages just as I did in this entry . The maximum limit of tag number is 8 by each entry so you are supporsed to have up to 4 kinds of tags . I wanted to call the hotline of the bank immediately , but I found out that there was little power left on my moblie phone . I counld n't be hold on for five minutes . I think it was a success and many pople were satisficed with the result . The next goal is to advance to the best 8 , so someone who can puerse the best 8 at the world cup . Actually I wonder why no Japanese coaches were considerd as candidates in the first place . We can rent ninnjya coustume to put on dalls . There are many tree houses with difficult obstacles , a river , and a housen of gadgets . We tried to overcome the challenge of several adventure playground guantlets that required us to climb up the house , across a river to pull a rope on the bord , and cross a ladder that led to the other side . I recomend this place to anyone who wants to play a lot . At night , I came here , Internet cafe to surf the Internet and wrote some lettle on a friend 's article . He comes from Canada . Also I am travelling to Jeju - island with my family this comming Apri for the first time . We exchant gifts . The game rule is that my department boss takes out a mumber first , if it 's NO . 7 , the NO . 7 gift blong to my boss . luckly , I take a necklace that 's a dolphin , very beatiful . Although she passed away from canser , I believe she lived a normal life with no regrets . She had had no children but she enjoyed her life with working , hobbise , and socializing . I 'm going to Geneva , Maienfeld , Milano , Venis and Rome . ( I 'm sory the spel is wrong ) Enjoy ur week ! I gon na watch all of Hurry Potter films with PG tips tea insted of travel . This thrsday night I will go to a Moroccan restaurant for the first time . when I traveled to china ( Cantonese ) on chairtmas eve in the morning . Although the plaza had a lot of Chairtmas decorations , it did n't feel like anyone was enjoying it . ( For china factry Chairtmas is not a regular vacation ) . It was unbearably muggy and slutry today . I 'm not good at English or other langueges either . . Today we had a Bio - experiment class , and we viewed many kinds of plants under the microscope . It was funny , but drawing what I saw was not that interessting . Completely forgotton Wht do I need to have a Toeic score ? especialy speaking . It is so terrable , If I receive a good score , my school will give me a scolaship , and I can go to America for almost free . but I wo n't stop eatting ! She not incomfortable to come because she have sick and I imagin she is really try on the wenesday because she must teach a lot of class today so I asked her not come and said ' take care of your healp ' Last time I stdied with her we are bost studie poor the head rises . Please tell me good resourses that you recommend ! : ) Express my love feelings without hegitating . I 'm a unversity student and also belong to English club . For example , we try to have debates , speach , discussions , drama items and so on . Its been a bit over 2 months in Japan since I left England at the biginnig of December . I really like living in Japan coz foods r dericious here , compared to fish n chips , I miss the pub sooo much though . As soon as I came back 2 Japan , I noticed that high - ball ( wisky n cider with ice ) was very popular among the young genelation . I was wondering that almost all students drink only beer all the time , even wisky originated in England ; such as jack daniels , old molt and so on . It is a strange phenomenon that more Japanese youths consume British wisky than British adresents ! It has been rainning for three days and the temporature has fallen . I major in sofeware in college now , so I have to learn how to talk about computer languages , such as JAVA , C # and C + + . I will concentrate on every detail of learning sofeware . Maybe the next superman in this field will be me . Last weekend , I watched an American deama called ' ' Heroes ' ' to learn English . Luckly , I am not attrackted to bad guys at all like some of my friends . But we might already forget that the natural music enriches our daily life and inspirits people to fufill their real music . Though I can converse in English confortablly , there are some mistakes . I feel I have confused my English a lot at the moment I write my journal entied wrong a lot . I think maybe because I have read thai books and translat it in English . We can not afford to let immatrre students go astray academicly , mentally , or physically . First and formost , in terms of cultivating students ' interpersonal skills , learning via computers or televisions can never manage to reach a comparable level . Unlike learning from a make - believe world , face - to - face interaction and communication is much more real , and in all likelyhood , students can effectively equip themselves with the ability to compete and collaborate with their peer counterparts . Thus , ( traditional ) schooling will definitely lay a sound foundation for their later social life . And I firmly believed that learning using technology will never render scoool education redundant . I listned to 3 groups 's songs . I am a university sutudent and ( I am ) 18 years old . If I can meke friends here , I would be very glad . I feel jealous becouse such kind of parade is in my town just for children . The only good things were the sweets we ( 've ) got after walikng and juice while walking . Now it is changing and many organizations have to adimit the right to drink ( something ) while doing sports . Today is a holiay called Shu - bun - Day in Japanese . I have sleped for 13 hours , and now it 's raining . There is a pumpkin , a carrot , and beef in my refregirator . But I am groggy - headded . It 's one of my fevourite movies . As I worte it in my dairy before , we will hold an international exchange program in the summer in the NPO group that I belong to . I recieved the wrong size item . I purchaced shoes from Amazon . com but I recieved the wrong size item . I sent a claim to Amazon , here is my massege to them . I have a pictuture of those deffirent sized shoes but it is the same size on the label which is 8 D size . I do n't know what to do , I 'm getting lazy because of the hot , humied weather . It was very sweet and very delisious . You 'll see the historical town from the Edo - priod . It is over 1000 sqaure meters on each floor . I ` ll go to Minsk in a mounth . . . ) I do n't like to use roll paper in the tolet . The Internet has truely changed our lives . If you are intrested in that kind ofculture , I 'm so glad . If you want to recomend any books or movies , please introduce them to me ! ! After this , I thought : Am I Otako ? I did n't wasnt to see everybody crying . I think my great aunt is happy in heven ^ - ^ I did not aways want to watch it , but when someone switched on the television I had to wach it as well . This is aways in Thai movies . . . I attend a study meeting for examinations of patent attorneys every staurday . If I do n't remenber it and answer it exactly , I ca n't advance to the next question . The tembler We found ourselves unable to use water , electricity and gas and decided to seek selter with my grandparents . At the moment of the tremor , I was downstairs alone in my house , sprawled underneeth a Japanese Kotatu . As a matter of fact , it was said that a big earthquake would hit in our region , predicted by seizmologists . I did n't think it would cause so many casualities . Yet the tunami ruthlessly took many people 's lives . My house is not too close to the sea , so we are away from the calamity of the tunsmi . I am scard . Especialy to Canada ! I Get tored . Reacently , I have been so busy . But I often coul n't understand what they were talking about . And also that situation ( thare are many foreigners ) often makes me nervous . Yosh ! Hope things will be better the day after tommorrow , as I will take a rest on Thursday ! But I have heard a centence . When I look at that paper and the words on it . `` Today I received Yilin 's $ 10000 and since then I will never threaten her . `` It made me sure that you loved me because when I did something wrong and hurt you , you did n't scold me but helpde me instead . Then I do n't need to expect you to stay with me everyday . I do n't need to wait for your messages and phonecall calls . You also do n't need to wait for me to graduate from university . You can get married to a woman and have a baby as other people your age do . Hou can I ? It was mainly sponcered by major industries in this prefecture . He welcame me at the pavillion door singing his favorite tunes there like an old friend . We discussed what ths skier did . I could discribe it . Some pepleo say I need to get better at reading and writing . I love these friends and my coarch . However , she tells me that her collegues who work there longer than 5 years make quarrel these days . Then she is caught in the middle and her motivation is beeing dameged . Some people who are single have a chance to join a party , maybe in the pary he or she will makes new friends , and even find a ture love . please tell me hou to say it in this case . I went to the Druma fair this afternoon at Kakio in Kawasaki city . I can not belive it . . . I believe that the most common reasons are to prepare for a carrer , Carrer preparation is becoming more and more impotant for young people . For many , this is a primary reason to go to college . I have cookies , chaclates , jellies , cakes , milk etc . But there is a good Japanese restaurant at tha other side . This is a cloudly day . Youtube gives me some fun material for English lessons to devert me . com is one of my favorites and is hillarious . but to call food a souvenir I finda alittle awkward . As ( in ? ) the picturem , with a sunny day , a kangaroo jumping to an old woman and smiling . As the old proverb goes `` Actions speak louder than words `` . We should keep it in mind and take messure to follow it . a brighter future is waiting for us if we make good use of our ways to protect the endager animals . I 'm always wonderling if my English is natural or . . . I want you to help me improve my English writing abilty . Today , I went to tukiji , Tokyo Today , I went to Tukiji , Tokyo , with my wife and ( my ) mother . We decided to have lunch in Tukiji . Some people tell me that I should go traveling baecause it helps you to see the beauty of this world I do n't want to ingore them . and while passing by beautiful grean scenery can be observed . and we can enjoy lots of cherry blossam in spring . So I decided to listen to a French radio program because they broadcast a program for beginners from April and its leves is exactly for me . I do n't know that clealy . In my opinion , It 's ture . Nowadays , societics are fighting with time . That 's why most reporters consider a title is more attractive and agressive before they write articles . There , I did Zigoku Meguri which is one of the good sightseeing rotes in Oita . I can cook Japanese crusine , Chinese , and also Korean - style . But I 'm not really sure about French - style crusine , since they use a lot of harbs in their meals . In Japan we tipically use harbs occasionally , but not as much as the French do . Hi evereone ! I had a tea with particioants after the class . I had a good time because we talked about a sysytem of studiying English . Because I only conect with my friends in Sydney , my English ability is getting worse and worse . I ate Tohu yesterday . I wanted to eat a Tohu hamburger . It was n't delicias . I watched The World Swimming Competetion in Italy on TV . I 'd never thought about the differnce and that reason for it . It 's immposibble to countune from butterfly to backstroke in the same lane in the team race . So why do they start with butterffy in the 4x100m individual medley ? I guess to dive from the starting blocks is firster than starting with backstroke . I was happy to soluve my weired feeling . The valueble thing is the knowledege you get , and it ca n't be counted by the number at all . I had a notebook which my parents gave me as a writing pactice book which allowed me learn characters by myself when they were at work . It is beacause their brains are just like empty glasses . But insead of being depressed , I decided to do what I can do now . But , I hate rain , so today is a very unconfortable day . Okada , a coarch of the team , was severely blamed by the supporters . I am consedering to start learning English writing by taking courses . I 'm so happy I have a chance to commnicate with so many people who are from different countries ! I want to know more and improve my English , do n't hesitate , let 's become friends now ! If there are some mistakes , please correct them . Remenber that `` Reality and imagination are not always the same `` . . I am very heppy . As soon as I arrived at my house , I went to bed immidiately . She was my collefgue in my previous company . I 'm loving Monthy Python . That is why in winter I go to sweam . A ramdom thought about Loas I have no real chances to communate with Native English speakers . I disire a free conversation . But , there are so many words I do n't know that I alomost go mad . She gives me councle like my real older sister : ) I am working for a food manufactering plant . We decided to make a construction company repear them . Accoording to the weather forecast , it 'll rain tomorrow . The plasce is in a complex . yesterday I went to college but I did n't study because the university - level instructor did n't come to campus > _ < , whereas I came to campus early because I was affraid to be late . I really could n't belive that I was able to prepare chicken soup another enry , another issue I work hard to save deposit to enjoy myself in Itary . Today I was given a ticket for a fitness club from a cowerker . I have a pack of tofu , some green Chinese vegetables , mushurooms and leak . I 'm studying English , Chinese , and Aplying Linguistics . I lived in California when I was . in kindergarden . I almost forgot how to speak English , so maybe my English sentence grammers is wrong . If you find a mistake in my diary , please corecct it x ( The club members watch flowers , birds , trees , shellfishes and a lot of neture . I want to know the calculational procedure . It was smooth untill the tube terminated due to signal problem . I was stuck in the tube for 40 ninutes and had to abondon Picadilly line . I also use skeype and facebook . My porpose joining lang - 8 is to improve my English skill . My mother jast cried then . I could n't understand why she choiced that place , but I didn ' t Then , they link themselve to my ideas , and finally form a stream of narrative . Today , the Gmail IMAP server complained of `` bandwidth limit exceedd . `` I can not access Gmail via Thunderbird or iPhone . I think I must listen to more Enlish . I like to design , so when I heard about this contest I was very exriting . My t - shirt has sunshine and sunflowerrs on it . They are so profesional . . One said that many foreign countries were surprized by the fact that there rarely was plundering amid such a disaster . She will import Japanese goods and sell them on the Internet , targetting & nbsp ; primarily & nbsp ; French people interested in Japan and Japanese people who miss their favorite local products . I want to become a friend with those who are learnig Japanese . Today 's dinner was pasta and green salad with sesami dressing . But I am no longer familar with it . It 's so difficalt . To get to the nearest coast from my house , it takes within two hours by car , but if it 's to the opposite one , it 'll take more than six hours by bullit train and express bus , and moreover , I have to change the bus for a local bus ! For instance , like me , growing number of people are trying to learn English which will probably become a unversal language . Chinse class Its a natual phenomenon for humans to not be a mechanical creature and have a limitations of momory . These jobs are making me compotable ( ? ) and keeping the system stable . Because I get sick easiry on the train or on the bus when I 'm in bad condition . And tommorow I will go to the bank to consult My daughter has been absent from kindergarden since yesterday . Since then I still heve needed more relaxing time Thank God when I weighed yesterdy the weight was still the same . Please conact me . At the congrress , I had a lot of opportunies to talk to many professors and students who are keen on biomagnetism from around the world . They are from Italy , Korea , India , German , France , UK , Netherlands , US , Sweeden and so forth . In addition , I leared many English polite and job phrases . lol Yeah , it was the most profitable part - time job among those I 've ever done before , and I was really pleased to talk to various smart people who are kind of geeks haha because I could n't understand thier study at all when I saw thier poster materials ! so I 've just decided to write a jarnal Of course I can help people who study Japanes here . Irish Pab I went to the Irish Pab with my friend . I look foward to attending it everyday . I can learn a lot of things about carreer in it . I sthdied English 20 years ago . I have almost forgotten English . The rhythm of it annd the rhymes of it were sooo funny , and I enjoyed listening to what the teacher read aloud . It was implying how every indivisuals is important , and also big . Its been a long time since I spoke english , because I 'm studying japanese in Dalian , the most beatuiful city in northeast China . There are many interesting things and delcious food in my homeland , especially hot food , pandas , and lots of good indie music . I 'm going to Karaoke with my frreinds tomorrow . I like singing songs because it relieves my stress . I am a university studend in Japan . I especially study A Chrisrmas Carol which was written by Charles Dickens . I tell you that I know the sory of your family 'cause if I search for my ancestors I always find your family . I have ancestors from the family of Chmura too but I do n't know if my Chmura family is related to Wiktoria Chmura : ) If I learn about it I think tha I will write to you . Only then do I clearn up my desk . I think that one of the most inportant skills these days is to throw stuff that you do not need away , not the skill to get stuff . It 's my first post in lang 8 so I just want to say hello and ask you how can I translate or say some text in a different way - becouse It 's hard to understand it all . Recently , I have been listening to English radio stations and reading English magzine everyday . On Mondays and Thursdays , I use my lunch breaktime to attend the English class held by my company . By the wayI , I would like to read English novels . Wnet to Universal Studio Japan . Dinner was a Chanese smorgasbord * . She works as a secletary at a fashion magazine . Such a pitty . My favorit pastime is playing video games , surfing the net , and watching movies . So , I think we should keep and preserve our old buildings because of our culture and histrical legacy . Photo : Beautifully colored leaves at a mountan in autumn ^ ^ I think writing in English is still difficulity for me , But finding a iob is not as easy as I thought . To be honest , these days the anxiety of graduating from univercity makes me so nervous that I ca n't concentrate on studying , especially English . However , whether I consider it or not , the possiblity of graduating will not change . I told her : escuse me Ma ' am , did you find a bracelet on the grass ? She then stood up and gave me the tumbs up ! So , I 'll have a part - time job tommorrow . When I went to Tokyo on Decenber the 27th , I bought a new umbrella at last . Since they have them in several colors , it was difficult to choose one . After Waching myself with them in the milor , I chose a purple one . and he was planing to ask for the teacher 's Email adress if the techer was a beautiful cabin attendant . The other day , I caught her documetary on Jounetsu Tairiku , a famous Japanese documentary program , and she said she started getting more jobs after cutting her hair short . He has liveral spirit and is not strict . Anyway , when I arrived at the park , all the other people had alreadly arrived . I came back yeaterday . Beacuse this was our lesson , we had to go back immediately after a rest . I Deeviated from the main subject . ( ^ ^ ; ; ) Going to school everyday duing my vacation is hard for me , but it also makes me feel proud ( of myself ) . Becase , the weather in Korea is very cold . It was realy cold and snowy . I bought a hair crip and a CD of NE - YO . After I got home , I serched free TV show in English on the Internet . It 's a big dicision and a big challenge for me . Now I 'm worring about home - stay . I 've not cooked things requiring many steps like difficult Japanese cuisine , and I have only a few recipies to give to my friends : ( I have a long way to go from attending unversities overseas but I ` m sure I will be studying very hard in order to be able to attend a university overseas . It 's difficult to forgive someone , especialy when they 're a common object of hatred . Libraly Part 2 I 'm writing a continuation of my entry , from yesterday , about going to the city libraly . I could only rent three CDs at one time from the libraly . The soundtrack of `` Top gun `` , Van Halen 's album `` 1984 `` , and Madonna 's album `` True blue `` were included in CD 's that I listend to . I 'm really looking forward to travering with my mom , b . . I wanted to reada somebook but my eyes were very tired . I can remeber the time at which I fell asleep . it is possible that such a thought gave me insommnia . I will watch a mouvie with a love story starring Shak Reno and Juliette Binosh as I want to rest . Cleaning in the hall , leading people to the front of the ceremony hall , managing the imformation desk , checking the money and calculating the total cost for our clients and so on . I must observe my co - workers and folloing them . I had trobled with my hair many times during high school . Whenever I hear her scoling me , it is frustrating . Their great beutiful nature and biodiversity are found as the reason of registration of the World Heritage site . I was looking for a magagine which I wanted to get and then I was deeply engrossed in it for 20 minutes . I 've decided to become a Christian in the fulture , because I think following God will make my life more meaningful . something very new ( althought it 's been on iternet for quite a while ) always capture my heart . * Sorry if my diary was inappropriate , in a way that I advatised Twitter too much , please feel free to delete it . ' All right , ' Min interrupted Ji 's discription , ' I said , Riska , can I have some chicken nuggets please ? And , an organization named `` PeaceBoat `` stole the support supplies in order to gain honor . Chinase development speed is faster than Japanese one . Next week , I will go there via Seoul in Koria ! ! Unfortunately I fogot how to speak French because I did n't use the language in Japan . Now I 've got holydays after all my examinations and I want to write something ) Before it was n't so fequently . I hardly understood what my terchers said at my online English lesson . I should listen and repeat vocubulary and phrases frequently to increase my listening skills in English . This is my first dirary ! Today I 'm very happy because the date when I go to Montana , one of the big states in Amercian , has been confirmed . Misula is a beautiful city in Montana and I will be staying there for three months . Does anyone know how to learn Enjlsh words easily ? I offten read too many broken English in chat messages . And a number of players talk like kiddy ( some players talk as if in a role - playing , but most players do n't seem to be speaking `` proper `` English ) . Last month , all the students in my university were given one thousnad Omani Rials ( = 2600 . 78 American dollars ) . If you were in my position , what would you do ? How would you spend such a hugh amount of money , at least to a student ? She is beutiful and interesting . Im really like this song ! These days , I made up my mind to stop my emotions of liking girls who are my type , which means that from now , I 'll never try to approch girls even though I like them or I want to be their boyfriend . I 'm afraid of American beautishan because of my English level , so I try to do it . This is my fraverit song . This group is really famust in Thailand , but this song has been known for a long time . I knew it when I was studying at university . Now I have finished already but when my friend and I want to sing we must sing this song frist . In the previous movie , a young stockbroker did everything to get to the top , and a greedy investor , played by Muchelle Douglas , utilized his insider information . This ancient palace is open to the public only twice a year in srping and autumn . As you know , all department stores have beautiful bathrooms , most of them are Western style . ( Many foreiginers are in trouble with Japanese style bath rooms ) River Fishing is wanderful 7 years ago , I lived in nothern Japan . Today , I talked to my freind , Nick , who lives in Florida , USA through skype for a while . Not suprizingly , he had alredy gotten a job he was willing to get as a financial analist . According to him , his major is business and it could be recognixed as an accounting major , also . So , if his clients come from sounth America , he wo n't have any difficulty communicating with them . In other words , he will deal with any problems people usually might have due to the different lunguage . I uploded some favorite pictures that I took . I guess they are just hiding thier new technology to prepare the new iPhone or they were afraid that Samsung could sue them . Timothy Cook , who is the new CEO of Apple , gave a presentated yesterday . I 'm going to take part in a marathon three months from now , so I should practice haed . What happened is that some trekkers who was arranged by some travel agencies succomed to hypothermia . Since Japanese novelist Fukada Kyuya published the book which introduced the the Japanese 100 cerebrated mountains , they thronge those high mountains . As you know , trekking require many things such us knowledge about weather and map , how to use equipment , exprerience , and most importantly physical fitness . Intrincically there are few trekkers in Japan and mountains are calm places . Their foods are excellent and it has a cozy atomosphere . Today I introduced Lng - 8 to him . I found it so bouring to stay at home doing nothing . When preparing a dish , I have to make sure that all the seasonings / ingredients are availible , when to put in which ingredient and how to control the heat . michi ha . nureta imashita morokko ni ha yottsu no kistetsu ou Shiki ga arimasu ryoukou to hama ha hitsuyou desu . My frined likes `` Judy and Mary `` ( japanese pop singer ) very much . I think the auther of this book describes Bella 's emotions and feelings very well , so that I could understand how she feels about vampires , school , family and friends . It was heven ^ - ^ Today I coocked miso soup . Freedum day ! ! If you are interested in Japan , you should / ought to know that Kyoto has a lot of culutural heritages . Scince it may be the last chance of this season , I want to get even better progress of my skil . ( Other brands are , for exapmle , iPhone , Droid , and so on . ) In the Evning after returning home , I had dinner with my friend who came from Oregon in the US . We spoke in English of caurse . I think it was 34 dgree in Tokyo . It was a hot day so I needed a handkerchief becase I 'm very sensitive to heat . Tonight , I drank a little alcohole with my co - worker near our office . Now , I 'd like to exercise in any cuse . I was happy when I deared his voice . Hatsune is a bar with a homy atmosphere . He said , `` Why do n't we play golf togther ? `` Dialy for 1 . 23 . ' 11 I wolked at home today . My son went to the comunity center . He pomded steamed rice into cake with scouts at the comunity center . I will arrive at Nagoya city which is a central Japan metropolice tomorrow early morning . When the potatoes and onions are fried , mixt them with the eggs with a knife . I can not go home earlir than around 23 : 00 . Everyday , I use Engilish when I write e - mails at work . Being a flight attendant is kind of the synbol of intelligence and beauty for Japanese people . According to my Singaporean frirends , in Singapore , a flight attendant is not a high standard job at all . For Singaporeans , flight attendatns are just servants or something . Is food coma the natual phrase for that feeling ? He is sensible to authority , then he does n't let himself undercontrol by other . My contemprorary life is very terrible . Something important must have happened because there was a lot of yellow tape / police tape around the office keeping passerbys - by away , and even some television interviewers were covering the incident with cameras . I need to wory from Sunday to Saturday . In cram school to teach math from Monday to Friday , as a promter girl on Saturday , and a telemarketer on Sunday . 3 hours later put some sugur in it . Before yesterday all the Japaniese patients were in Western Japan , but today , at last , two patients were found in Tokyo , East Japan ! I think there are no means to prevent the expantion . Today , I had carm school ^ - ^ And I went to the US two years ago to join in a Chinese matial arts tournament . ( Now I 've quit to study langurage except Engllish ) Forrest Gump , Austine Powers . . . So sorry that I counld n't visit this site enough . . . If you have any questions about Korean culture or Korean grammer , I had a girlfriend in the past but she dumpded me and I felt really bummed out . Todau I was looking for a airplane ticket that is affrdable . Actuarlly , I was supporsed to buy a one way ticket , which is more expensive than a round trip ticket and a 1 year open ticket . The article said you have two altertive for a journey . You could buy a dicount ticket then when you arrive at your distination you can thorow it away . But if the airline or travel company finds out you might have to pay a penalty fee . So for that reson I checked many sources . Of course , price is very important to me because I do n't have a big bugget . Ummm , Mybe I will buy a PEX ( safe ticket ) . Until now I wrote dialy at the office . Now I can write dialy in English , on my PC . On July 4 , I will have my examinations , including business english translation , English writing , inergrated english and political theory . I am worried about my poliical theory , because I have to review a whole thick book . Special buses ran between the main grounds - CDH ( where the ' Art - Moscow ' fair were running that time too ) , the ' Vinsavod ' , the ' Art - Strelka ' , the privat museum ART4 . ru and some other important galleries . I will be working as ARASI 's concert staff . Then boil asparaguses for 1 . 5 munites ( The time depends on the thickness of them ) . I was satisfied , bacause it was very sweet and delicious ! A large amout of companies like mine encouter such situations in Japan . Therefore , I hope that this bad practice would disapper soon . Something bad has happend to me ! ! in bodyly and in mind ! ! ! ! Feild Day The moon eclipsed totaly for 100 minutes , however the whole process took more than 5 hours . It was like in a horror movie , if there was an old gipsy lady , she would have said that was a bad omen : ) ) We were looking forward to having a pecial dinner at your restaurant . We went to an Italian restaurant , ate dilicious foods , and talked a lot . Recentry , I was surprised by the financial result of a certain company . This weekend , I will play football . I 'm looking forward to participating in the soccoer festival . Recentry , I 'm interested in diet , learnin English , internet , and shopping . I saw a classical music concert perfomed by the Prague Radio Symphony Orchestra from Czech . However , there were unexpectable disrupters in the music hall . I totally could forget that I 'm a busy person like a workerholic . And I like `` Leon `` as well . That is one of the films when she was child acter . I also joined an English devating club . Im tired becaurse writing in English is very difficult for me . . . Today there is a firewoks display . But the wheather takes a turn for the worst . Sometimes , foreign custimesrs come to KFC . Finelly , should I say anything ? A REAL powered suit producted by HONDA Honda has producted a walking robot named ASIMO . but if you write about a special thing the public does n't seem to know ( for ixample , about IT or business or philosophy ) , it is necessary to explain each word and the speed of talking is decreased . I was never pround of myself since I came in middle school . Why do I have to learn them ? Why ca n't people choose what lesson they want to learn ? I love Engish lessons , then I could learn this for free . I am thinking that I want to make a reservation for the ILETS test in March , but I haveI no confidence at all . For example , I 've heard it used like this , `` You focking asshole . `` or `` Fucking surely `` . If you are Japanse , I am not sure if you do . I know you are hungrey . As matter of fact , I did n't know there was a sandwich restraunt in Japan until recently . At the restraunt , we can order anything . What suprises me is that she insists on proceeding with the work even in the case of other 's falling ill or when a familiy member is facing life or death problems . One time , I asked for an instant leave to attend my grandmother 's funeralin my hometown and I explained that the flight avaliable to me is due to leave soon . And then , after several rounds of her ordering me to do whatever ( things about work , I have forgtten ) I was finally allowed a leave . . . Another example , one guy gave an explanation for his absense at a so - called important meeting that his wife had a heart - attack that morning , and that he had to send her to hispital . One day , my monther was going to have an operation and I was the only one who was able to accompany her then . In searchig for information about overseas travel , I happened to find this site . Bacause I often think `` I want to drink sweet coffee ! `` When I was an elementary school student , I used computer in a lecture for the first time , and I 've used it for about ten years , but I continue looking at the keybord . wooo , , I wana take a chance to talk English . But I will spend this time lonley . What is the defference between `` I 'm not sure `` and `` I do n't know ? `` complain : I complained to my teacher about the scole of the test . hate : I hate insects , particularly cockeoach . worry : You do n't have to worry about your health , you 're hearlth enough . I think It necessary for me to hit the books cause I want to win scholarlship in our campus . In amerca ! ! ! Furthermore , there are more and more reports about accidents caused by explosing cellphone batteries . As for me , _ I can speak two dialects which are Wenzhou dialet and Hokkien dialet . I applied to three consulting campany and underwent an interview yesterday . The speaking examior is an old man . . . Because a boy in the apartment made too much nosie that we all complained about . . . . A good point , I thoght . TheNext step has just starte now ! Unfortunatly , my sister is not interested in kimonos . We wnet to watch a movie first , and when we arrived there , I saw a handsome boy who wore some fashionable clothes and leaned on a big wall . But , because of working overtimework , I missed it . One is the intergration of writing and reading , which lasts three and a half hours . Bridal Course studys about weddings . I feeld vey comfortable . she 's alreday married . hey my name is Icen and I 'm new at lang - 8 , I want to speak good English , so plesed help me to learing English thanks . . . I am a student learing ecnomics at Kyoto University . Hope I will find Japanese learners and English and Chinese native friends sonn ! ! I booked the ferry tickets to the island leaving at 9am on prebious day , so I left our home early so I did not miss it . I asked how can I get there to strangers along the way , fruthermore I ran to the platform and the road , finally I reached the ferry station almost too late . I went to driving school durling my summer holiday . However , obtaining the lisence helped me to return to Minmikusatsu city . Watever - he hurt me before with a lot of bad words , screamed at me , saying that I expected too much romance from him . I y enjoy playing play the Frech horn with an amateur orchestra on weekends . My orchestra is having a concert in October , so I could n't stop staring the beauthiful phone , I like reading books , surfing the Internet , listenning to music - - both popular and classical . By the way , in March I 'm going to go to my high scholl to make a speech about my life at the university . For a few years now , I have had dermatitis on my face , expecially my eyes . The dermatitis on my face , expecially my eyes is conspicuous , so I 'm really sad . Today Giants won the game , but both teams showed us a splended match . A lot of cerebritise go there . I was born in Hokkaido , but staied there for only one month . I like watching moveis , reading novels , traveling , and taking walks with my dog on my day off . The Nikujyaga is made of beef , potatoes , carrots , onions , and konnyaku boiled and seasoned with soy sauce and sugger . I have just found the repot . furius at you and you ca n't find any excuses to ease their mind , When I try to revice some articles written in traditional Chinese , I feel confused . I , nonetheless , believe that the pros outweight the cons . But , I do n't know what I shoud do . By the way , cherry blossoms in Tokyo haven ` nt flowered yet because of cold weather . Because I 'll feel stuffy when I stay in such an enviroment . Go to Univercity . I went to ( my / the ) univercity to sign up for classes with my friend today . I said , `` What a beutifull view ! `` It is kind of weired when I reviewed the blogs I wrote before . If you are wondering where you should go on your next trip , I strongly recommand Tong - Yeong ! What is the meaning of religoin in our life ? but I could n't find any difference beteen religious people and those who are not . I think I 'm a realist , both in material and spriture . In fron of my office there is an indoor tennis school called T - 1 . I ca n't enroll in such a university , but what about in the philippines ? I then watched ' Field of Dreams ' and ' Remenber the Titans ' . Although it was raining unfortunately , thre was a line of people . I have my own loch box already . Figire skating This morning my music box ramdom played the song called `` Paddy Fragrance `` ( sung by Jay Chou ) . It does n't sound like most of Jay Chou 's songs , which are usually depressing or sentimental , this song is relaxing , encouraing and positive . Do n't quit so soonly just like what I have said `` If it 's too difficult for you to persue for this dream , you can think of changing for another which is much more suitable for you `` We are all looking foward to a bright future , while ignoring what we really want to be deep down inside our heart , and that 's why we are always busy and successful but not happy . Today I 'm going to Edosima beach , but the weather is really bad . Especially , I was so surprised that even some developing countries donated releif and condolence money . I doid n't have any trainer who would teach me about losing weight . I could n't lose weiht very well as a result . I 'm in a relationship with a cute scottish girl so Italkto har in English mostly . Letaly , she has been saying `` your English is girly `` andof offcaouse I do n't wana speak girly English . I have meny friends , but only one best friend . She was bern in Georgia . Anway I want to talk to people who speak fluent Egnlsih to improve my interpersonal skills . Now , I only have one / an exam ( English test ) that is one week away to go , so I think I 'll have to study all day long in th libray . However , my writing skill is low and I need more practice , so I decided to write a jounal on this website . Of course I am interested in the latest model of mobile phones , cars , electornic devices and so on If we do , it means a challenge to the monkey from the monley 's point of view . We colud buy some bananas , peanuts and apples to feed the monkeys . My boss say that I shuld take the TOEIC exzam and score over 600 points . SUMMER BACATION I have a headace I 've been here for one and harf year . Please give me advece and touch up my writing . In regards to that , it 's much easier to utilize comics as dramas than to creat novel ones . I can speack Korean , japanse , and a little bit of English . However , it is my bad habit to stare blankly when I am studying and oppsitely sometimes I have a hard time focusing . Come to think of it , recentry I have been studying Chinese harder . I would like to be able to be good at singging and I have practiced Eglish pronunciation . ( the clerk who helped me find a new job said that the company which I entried could not be decent . In the books translators said it 's indespensable that they have persistence and passion for their work . thanks for your comment on my prebious jounal . I want to compare the two of the great religions but there are many diferences between the two . . . however after many years of trainning , he found it difficult to lose his worldly desires and he desided to leave his master . Poeple used to send a present to their father in father 's day . Considering the dinstance between USA and Japn , I need to request to send my present now . I angryed my sons too much . I really enjoyed it . Of course , there are ohter non - clistians taking part in it . Since my only hobby is English , it 's sheer bliss to take those lessons complimentally . I 'm agog ( ? ) to go there next Suturday . So I practiced easier tricks so that I woud n't make any mistakes . Oh my godness , what the fuck ! Goddamn it , you asshole ! Probably today 's interview was a failure as well as yeasterday 's . Japanese poeple do n't do that like them . The world is quite unfair ; I should hit the creater of English lol . I told the acommodation 's staff about my job interview , but he encouraged me and said I could speak English very well , and he felt that I could get a job here . I wish , she coluld keep her health and beauty forever . I love you mom . Roughly , their conclusin is based on two facts . I believe as long as we are more careful we can freely enjoy all the convience with which cellphones bring . The shrine was located on a moutain so the road was relatively deserted . . . Espeacially in a rainy day . Eu sou uma minina . It seemed that a fight / conflict between her hubsand and the rude man would occur . Translate Do you remeber when was the last time a boy / girl asked for your name ? I sometimes watch METAL GEAR SOLID 4 on yotube these days . Yotube has many of METAL GEAR 's movies . I 've watched about three - quaters of them by now . So they must be difficult for foreiners to understand . She graduated from a Japanese two - year college , and then , went to other two - years in Ingland . So , she went to Stanford University , and got not only a master 's degrere , but also a doctorate degree there ! Moreover , she has two children , who go to university . One of my purpose of studying abroad is to get the oppotunity to meet people , so I could realize that by meeting her . The second piture is very fun and cute . So , I started writing diaries in an atemmt to improve my English . Astually , I went to an English school . In addition to this problem , the reading comprehension part was very difficult and its form was not standard beacuse there should have been four passages instead of five . soccor ? Football ? The Japanese women 's soccor team beat Sweden 3 - 1 . The American soccor team is also very strong . So it was yammy . A lot of peopl were absent from school . Today , I ate curried food with a co - woker at lunch . In the evening my older sister called and asked me to watch her niese while she had her hiar dyed in a beauty salon . Sometimes my niese comes over to my house and I have to watch her for a while . My niese wanted to say something in English and I let her talk with a turor on it . After the lesson I tought her some basic vocaburaly like My name is ~ ~ ~ or I 'm fine . I was surprised how fast she mastered the phraises I tought . And we also watched enursery rhymes on Youtube s togher . I went to day care club with my doughter . My dougther loves the rabbit slide . I got an iPad2 the day before yesteaday . Because Apple started to sell it the day before yesteaday , and I ran for the Apple Store . Some people were hoeing and fertilizing and some people were wartering . It is feneficial to my health . `` She said . They 're also investigating other compounds in dark chocolate that may offer other helth benefits . After that , some of my seniors and I ate dinner at a restraunt in the station . After a while , some of my friends also came online , so I chatted with them about what was going on in my life . We were chatting happly , but I lost track of time . When I felt hungry it was already 4 : 00 . Today , I want to introduce you to the Japanese traditinal food `` Katsuo no tataki `` . This is a one of my most favirate foods . I think that is the best harmny . If you take careful notice , there will always be a bunch of pupils in most classes : they can not get a decent score in academic study , and most of them take notice of this , and thus their minds wander outside the classroom during lessons and occasionally they make some noises that bother others . The teacher on the other hand , tends to be half - blind to this since his duty is to fulfill the hunger of gifted ones for knowlege . Also , if their names happen to be at the bottom of a student list aphebatically , they are called very seldom to answer the teacher 's question and sometimes not once during an entire semester . The problem is that I do n't have a photocamera . I have dad , mom , big sis , and a cuttie dog . Moreover my birthday is Febrary 23rd Not soon after , I changed my name to Echo , which is also the name of a famous writer in Taiwan . You must know her writen name is `` Sanmao `` . I admire her life in Spain , the desert , the sea island , and , also , the romantance between her and her husband . I will go to Austraria next month . My boyfriend went to austraria to study . I bought a gidebook about Korea . Reacently I stopped writting diaries because I 'm busy working . That is a wierd title , is n't it ? It 's the title of a japaness song . The grand - daughter felt sorry / regret because she was n't a good grand - dauther . It 's obivious that situations where public phones are used are getting rarer and rarer . The scene in my photo will be a memory in the far futher . Yet my Enlish and Chinese is bad . The next week they have a contest between themseves all over again . The courses I teach are third grade level math and sciece . Instead of crying about today 's sour situations in Japan , I have to make more effort to be a winner and stand out among the numbers of canditates appliying for a position . after that we went to Mt , TUKUBA I was so tired and frastated before going driving . The tast is n't bad . because of thire existence . These days , I reciteEnglish articles louldy right after I wake up . If you wnat to know Korea , please contact me . And I guess this seems to have made my uric acid leve become higher . And now , I am in a dormitoty . Tomoe made up her mind and forcefully appraoch them . Today is my brithday , I am 20 years old now . Next year I 'll be 21 . Actually , I have thought about getting an ear peiring for a long time . the laidy used the marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks like very painflu , I just feel a little bit itchy . thanks for alicia to acompany me to the piercing shop . It 's not a fun type of plan , but is more of a familiy - related compulsory type of thing . It is very good and has many applocale and different fuction . So if you want to share your thoughts or hobits , I can introduce you to our culture ~ Actually I do n't know wheather he hasfault or not . . . I do n't know whather I should be sad or if I should n't care . My husband was going to move to Hongkong on bussiness . But now that is changing owing to this deppression . My dougther did n't know which was the front part of her skirt , and showing me her skirt she asked me : I was thinging of my stay in New Zealand over and over . In 1803 , Thomas Jefferson , the 3rd president of the US , purchased the great wild west fot about $ 15 million from France because it doubled America 's land mass and would provide rich natural resouces as well as great farmland . Jefferson sent Lewis and Clark to explose the newly bought land . I thought , that those four years of lerning language in school would be enough but quickly I was persuaded that it 's not so easy , indeed . But as you can see , I wrire sentences as if I were a pupil . . . Today 's lesson was a privete lesson . His lesson was fun and he is uniqe . However she always buys delicious food and it might be expenssive . Maybe it seems no big deal to most of you , but since I 'm now studying in Japan , and the Japanese are so difficulte to understand , I must be extra careful of what I do . It does n't look very strange in Enlish , but I am really not sure about whether it sounds like a compliment in Japanese to the Japanese teacher , who I think really does do a good job . Of course I think she knows some of the American peole are not kind , but I enjoied talking with her . By the way I go to coollege now ! ! and his . . . their , , theirs . . I forgot the grammer . . give me a hand . . . thanks It 's `` Cocoa campagne `` and `` Cheese and walnut `` bread . The Cocoa campagne has chocolate chips and raisins . My scool festival was held a few days ago . socond , my homeroom class won first prize in the chorus contest ! ! I 'll never foget it : ) Some people think that the death penalty is the final way we can punish muders . I talked about my resarch presentation in English for the first time . So , I am higrly motivated to speak English more fluentrly . I am going to go Bijing to present my study in English by the end of Nov . I was especially impressed by a beautiful range of poplar trees which had freshy green leaves . We conplained a lot . Second , a dinner for our child contained a piece of metal , and the restaurant owner apologiozed to us , but no service . We got an orange cake as thier apology . Our friend calmed down , and my arkward position became better . Osakan 's `` Shaanai `` culture C : The PIC from the manufacturer was very angly and complained It is very inportant to me . Too many people have lots of pressure in life becasue of capitalism , so should they relax and `` scream `` to themselves ? ! When I arrived at the philippin airport , there were already 4 people from In addtion , I already told you that my English suck ~ There is a bug inside my LCD moniter ! So I want to goto there . Actually , I will go to Singapore when I go to univercity The title of the book is `` how to walk in the warld `` . I reccomend that you also read the book . However , do not read everything ; because if you know everything about the trip , the travel will not be interesting for you . Anyway , Washington will be rainly or snowy . . . . . Today , I am going to watch an america movie to study English . The genre that I want is either ' melo ' or ' comedy ' . Could you recommand a movie for me ? Of course though I have so meny good pen - pals of the others around Sometimes my work is very difficult for me to hundle smoothly . The work will be esier than that in my mind . So let 's start to study English grammer this summer ! ! ! I wii try because this website is very good idea about leaening a languge . ^ ^ I ate kimchi stew and korea pizza ~ Ryouan - ji ( Ryouan temle ) , which is famous for its simple That 's becuase she went to the U . S . to study . sometimes I could n't gdo anything because of my memories with her , but cry and cry . But I worry about my Emglish skills . . . Oh my god this my frist post and I 'm very , very nervous about what other people will say because I do n't write 100 % correct English but I 'm trying to do my best . My favorite seoson is spring . Tommorow , I am going alone to my university to borrow a book . spain bar I 've just found this lang - 8 today and resistered right now . My wife resigned from her job is vey tired . New sentence She could n't bear it anymore . New sentence Plus she also missed our son . The salary is not given out until May 5th . But , today she is supposed to wash all clothes , sheets and so on . Actually I was warryed about this mistake . So when I learned it was not by me , I was relieved , at the same time , I thougt I should be carefly not to do that . meaning unclear you 'll hav a nice trip in your vacation . So I have to help her study in the morment . I really hope she 'll be able to do everything , not only studing but also looking after herself . I have been studying 8 hours a day on average for two months in an effort to get a high socore . But learning English is what I really like to do , just becaues I have to master it in order to pass the exam makes me feel tierd . Passing the exam does not neassarily mean everything to me , I just want to express myself freely and openly without worrying about whether my English is good eough . So , please be critical to my articals , I really need your help to write it coherently and logically . But writtng my diary in English is as difficult for me as ever today . I can speak and write English at the Japanese junior high scool student level , meaning just basic English . However , I 'd like to be able to read and to listen to English like that of a high achool student . But as I 'm in an international department , many people ( many of whom are from overseas countires ) invited their families . What do you think abaut studying foreign language ? Sadly , I think taht we have poor minds nevertheless we live in Japan . Please correct these sentenses Yeaterday I had nothing to write , so I did n't write my journal . I decided to buy a better one to forget about losting my old one . Second , your Japanese is very exellent . I reccomend this movie ! Have a nice day , and BE CAREFUL OF SPAMER ! ! I realy want to learn English so I can search on the internet as I want , They gave me some addvices and . confidence . Today , I would like to make some sentense using new words . Talking with forign people is very fun ! I was woken up by the rain this moring . Today I 'll tell yu about my many hobbies and in return I also want you to share your hobbies with me . To finde the best friend very difficult . A lot of people don ` t have friends , amd me to . I played tennis yesterday , becouse game day is coming . So the government of Iwate prefecture built huge embankments along the coast to protect citizens from taidalwaves . Even many foreign reachers came to this town to inspect the wall . A man in this town told a reporter on TV that `` Even if taidal wave is coming , I would not mind it at all , because we have the great wall . `` But the taidalwave which wiped this town out on the 11th of March was more than 20 meters high . The good part of living here is you can easily mingle with different etchnic groups and learn their languages and cultures . Today I had many drinks : Japanese tea , iced coffee , Yogurt joice and Mango juice . Somthing about Halloween Chrildren like to play pranks . Then the chrildren get some candy from them . Please guide me in improving my English , especially in grammartical errors . I miss him very offen . This mornig , I went to the store again . OK , maybe I should not push meself to keep a diary everyday . And I 'm working on a relief operetion tomorrow . . . This moring the LED monitor for my mobile computer was broken . In other words , It had become a garbedge . One of my friends said `` If I meet a man who is a gynecologists , I will marry him ! `` This is a joke but it means the ' Menstrual Cycle ' is really a big pain for girls . She seem to have heard the plice , but she did n't hear it at all . A beaurocratic office such as NYDMV often fails to be prompt . I 'm really looking forawrd to it . It 's accouonting . This dog is femal and she is so smart that when I took her outside and wanted to teach her to uriate and fecal outdoors , she did it without any words . Because there are many blak spots on her tongue , we named her `` Spot `` . I 've bothe read all of the Harry Potter books and watched all of the Harry Potter movies . I think that raal beautiful women are beautiful no matter what hair they have . My writting There are many things affecting the world like air pollution , climate change , enviroment degradation , depletion of the ozone layer , destruction of the rain forests . . . It 's been a long time , everyone : ) I could n't write a dialy for the past week . 18 In my childhood , My mother used to read me faily talls . 20 Memory gets weak as peopel gets old . 3 : USB - network comverter It was a hole in the wall , very reasonble . Tenpura is a kind of fried , dip fish or vegitables in flour mixed with water , which is then fried . alcohoals sold there so I had a can of beer before entering the gate . And I have never kown how respectable a job it is to be a teacher . In Japan the driver 's seat is oppisite to Taiwan . Transformers ) do n't exist on this billdoard . Beause global warming is becoming more and more serious in the past few years , the temperature has risen day by day . It was my first time to go to Narita temple to see autimn leaves . Monday morninng I went to the gim and ran for 30 minutes and took a sauna . The Joggig Game Bery fast ! ! Although I 'm getting better to lisning English , not to speaking English . It is intersting for me because I think it looks like Japanese ! I hve two reports about Europe and ballad to do . It was unbiliebable , but I soon became accustomed to it . To Master Natual Expression I like to eat in tha park . Today I am going to participate in a celebtations at my friend 's house . It 's a fasionable and exciting drama ! ! The iPhone allows me to doplay games everywhere . it happend . . I will naver give up . . ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! So I colud n't take the 1st lesson . Today , we sang `` New Devide `` by Linkin Park together . I met with a friend who is living and working in Vancouber today . My frind 's lang - 8 diary : URL I am interested in life in foreigh countries . So , I often want to eat some snacks like chocorates and potato chips . I had checks for breast and uterus canser today . It is said that breast canser and uterus canser have a relationship with those who are young ladies still under 30 year old . Furthemore , recently a famous actress in Japan passed away because of breast canser . The formal diagnosis will come out in two or three weeks , but my doctor said me that it has does n't matter because they checked my breasts and uterus from the palpation and through the observaion of them . near the Pasific Ocean . Why was I interst in America ? Speaking in Eglish is really hard for me nowadays . I think it would better for me to study at the library insted of hanging out with my friends this week . I Ca n't Belive It Recentry I feel the spring season in Hokkaido . Because the temperture has been over 0 degree all day . I 'm looking foward to watching cherry blossom 's fllwer . I went to my office by bcycle today . I went to my office by moped everyday , so it 's good for me to change to bcycle I thought . They say that I am smiley and have a soft atomosphere like a sheep . The movie had many grand sceanes , on the way , space and dinosaurs appeared ! It had many beautiful sceanes around 2 / 3 . I remenber 100 words in English ! ! A boy was riding his bycycle while using a cellphone . Luckily , a scarecrows contest the thema of which was `` dream `` was held there , so there were more than 30 rare scarecrows in the beautiful countryside . I 'd like to go there again , because the thema of the contest changes every year . I wanna take a nup too . Since it is not a long distance from my college to Beijing which is the capital , I jioned the travel agency to go on a journey . on my own So . I feel a little dispointment to some degree What makes me embarrassed was that the other travellers are almost lovers or companied , I am the only one . on my own In spite of it being the end of June , the weather in London was rubbish resently . And also I felt like I 'd come to a diffent country , like a resort : ) haha It will be nice weather tommorrow as well , so I 'm gon na go to a swimming pool with my host sister . By the way , it 's difficult for me to figure out the differnce when I use the same verb but with different prepsition . After dropping off my children in ther morning , I walked for 1 hour in the Al Barsha Park . There is little difference between firt and now . In this leter a man tells his children ( about ) how he and their mother ( his wife ) have spent their lives , and how their mother died . My favorite sentense is ' ' Death overwhelmed everything , and this saved everything . ' ' I like my job , because every day I have the oportunity to help people . I work in medical insurance . I work with free medical insurance . If a person 's income is low , they can qualificate for free insurance . It includes medical prescrptions , dental , vision and emergency room visits . Some people who came from countries which had been inroaded by Japan 60 years ago hate Japanese culture . The decision is themselfs . I did n't see many people , but I saw a few people taking thier dog for a walk . It occured to me that even if people live in different countries , people learn the same inportant things . Because I got my wisdome tooth extracted , I have been having only soup and jelly since the day before yesterday . It is liquid , and conteins the nessesary nutrition . I - bought - 2 - potatoes and a frozen - pizza - for - lunch - at - the - grociary - store - near - my - house And - then - I - will - clean - my - room - and - press - my - thirts I bought some premiums for my weddding party which are a machine for making fried octopus snacks and a small Christmas tree . I feel a littele pain , but I think I 'm recovering now . Use specific reasons and examples to support your chice . ( sp ) ( within 30 minutes , more than 300 words ) A Private room is one of the places where I can relax and be refreshed from the excertion from the day 's work . You can earily find some pictures and vidioes and use them as references for your homework . Throught that site , you paid for a dictionary . Nowadays , the electronic industry is becoming popurlar , so fraud like this might happen even more . But people mostly use the computer for more than one hour and as for children , they ca n't refuse the temtation . Besides these , there are lots of other disadvantages such as illegal downloading and becomming violent . I was wondering about what was different between understandable Korean and disunderstandable Korean . Tommorow I will fill it up . ) and I will write about those results tommorow . I feel a lttile idle ~ `` ~ A few minuits ago , I ate dinner with my perrent . It was a good excesise listening to English and I enjoyed watching her actting . Because of the 6 . 3 - magnitude earthquake in New Zealand , A Christian church and a five - story office buildig collapsed in the early afternoon on Tuesday . At least 113 bodies of people who have n't yet been indentified were found and approximately 228 people are still missing or are dead . In a modern five - fllor office building , There was an Englih - Language school where many people took classes . Due to the huge dsaster in New Zealand , hundreds of emergency workers from all around the world have helped people looking for survivors from the wreckage in two buildings . Larry : what do you make emtionally as a black man about the Obama - Clinton race ? To me I feel like they both are great kenedies because they both have strong situations and supporters . Larry : Gangsta , do n't you emotionally though , have some tie to Burrack Obama ? I just wanna see somebody win that in the best entrous of America whether be him or black man whether it be Hilary , a woman , either one to me is . . I think America is ready for a black president by him winning you know how he 's winning so far , even competing to be in the talks right now . I remember in the past , we had presidential candidates like Jessy Jackson . It was a gimic , it was like a joke , because nobody believed Jesse could win . You know `` Win Jessy Win `` , but we really did n't think he could win . he 's in line with the right senario to win . and you know whether he wins or loses I feel like he made a great step for black America by even stepping to the table and pulling off something like this . I do n't know exackty what they said , but what I can sum up is this . Larry asked about Snoop Dogg 's political idea , especially Obama , the democretic candidate and he answered that he was n't involved and democretic party except the `` gangsta `` party but appoved Obama because it could be great step in American history . Yes ! ! ! As I look through the list , what I thought was that many students wrote they want to be a doctor or some wrote they want to be an astronomer or scientist or mathmatician . So , I 'll be tring to write a diary for the next few days or so . I 'm very happey to find this kind of homepage , I prefer to spend money on enjoyable things that make my daughter feel really happy like amusement parks , swimming pools , and zoos and would n't rather spend money on buying many souveniors , staying at an expensive hotel , or drinking too much . During OBON people go back to their parents ' houses , juset like Christmas in US . What 's worse is that we had an earthquaqe the day before yesterday , so there were even more cars He is my church firend . Today two of my friends left our company , they are defferent , one is optimistic , another is pessimistic . After I master English and get ( OR acquire ) PR status in Singapoer . . . . . . . . I 'm shoock : ( I should have interupted the requesters and told themnot to expect me to close it within 3 hoursas he hadwanted but I did n't , and tried to close it asap . learning Englsih by myself over two years . I am writing for beginning the day because is very dificult for me . Stady ! ! I 'll stady English little by little . . . I like reading , listening to music , watching tv and movies , taking walks , riding on my bycycle , singing , writing in my diary , and playing with my dogs . A few days ago , I had the great privilede of a person contacting me via this web site , which reminded me about it . She has destroied a lot of things . But I know , even though / if Toro chewed up every single my favrite shoes I still love her very much . But my English is always ackward : ( I wanted to apply for a lang - 8 blog before I came to brisbane , but I didn n't know why I could not ! ! ! ! what do you guys ususally do at Christmas ? My MD - playr broke . * ' was broken ' suggests it is now fixed . This is why my wife is so angree with him . I pre - orderd a concert tiket for a front seat . This ticket is really expensive but I 'd like to see the airtists from the front seat as much as possible . I scraped my knee , but I did not get a seriouse scar . One is Spanish , the other is Philippina . People created a tower to cooperat . Becouse they had been speaking diffrent languages . Hannukah ? and . . . . By the way , today I went to the airport and met my friend . It was so funny ! When we arrived , we took a lot of funny photos ! When my firend who is gon na leave arrived , we took some hidden videos of her . There are so many menories in Toronto for her ! ! My friend gave her a gift . . . it is a letter and thirty five one cent coins because it is my friend 's age , and her name is Penny . because I need good sleep , and have to lelex . I konw . . . Maybe the best way to learn English , is to have a foreign boyfriend or have a foreing friend So he has to watch the baseball game with a stupid guy instead of the girl of his dreams lol Hoow poor he is ~ ) Surprisingly I finished all of my homework ~ My friend said `` You should deal with stupid homework with stupid ways . My home is under a mountaian . In Krean history , it was used to send an urgent message with smoke on the Mt . I decided to resistrate at a local gym , but I changed my mind . I 'll go to the mountain regulariy every moring ! But when I took a picture of them , it was reall nice when I looked at my camera screen . It 's not one pach but one box . I mashed some strawberrys with the back of a spoon , put suger in and ate it last week . Afterwards , I put suger and milk in and then ate and ate . My fovorite singers are Alex of The Calling and Avril Lavigne . Tonight I heard criket chirping . It was much louder than usual . The criket stopped chirping when I went outside to find it . Tonight I have a criket to sing me a lullaby as I go to sleep . It took a long time to finish Assasing 's Creed 2 . I stay alone at my dormitray , evern though most of my friends have gone home . It 's puring outside which makes me not want to hang out . I tell them that it does n't make any difference whehter I 'm at school or at home . Untill I 'm tired of anwser the same question . Microsoft Excell . . Aside from these basical functions , we can use Excel Macro Function to automate repetitive tasks . So , it helps me practice listening to Engllish . Please check it oout if you can . He was the mucical director of `` Pirates of the Caribbean `` , `` The Da Vinci Code `` & etc . I 'm a Brazilian , I 've studing English for 3 years , and I just noticed that my English is not as good as I thought . Tnks for everything . Today I finished the prepararation for the trip . actualy I was such a stupid person , but my friends helped me understand that . Because I looked foward to meet my girlfriend . The climate is very nice , and evey season is warm , even winter . Every moring , I 'm hard to get out of bed . I just want to trevel The function of the liver of mammals seems to be deteriorated in spring bacause of thier hibernation . Whether we 'll have lover or not in the future , we still support and encourge each other . Now I 'm studying English dilligently to make my dream come true . We have to keep that a secret from my husband because he wo n't like the idea bringking people around when he 's away . Household chores took me about five or six hours and I spent another six hours visitting my parents . Every morning , I offen play sports such as football , volleyball or swimming . I would choose this house , but it has a few probiem . Please watch this muvie so that we can continue this talk . I reiceived a message about the English examnation . I need to preview the konwledge I learned . This exam accounts for 50 persent of result . One group is from the Kanto area , my older brother , my wife and I , and the other group is from the Tokai area , my mother , my younger brother , granma and granpa . We had planned to meet at the hotel at 3 o ' clock , but my littel brother had to go to a job on Saturday , so the second group arrived at 7 o ' clock . We had a dinner sonn after they arrived , and had a chat after ( the ) dinner . There is all - too - comon topic , the work place of brain is different when human understand each language . And , bilingal usually say , you should reject Japanese when you study English . So , if you meet incomprehensible word , you should search in English - English dictionaly . But , I ca n't write and speak English without Japanese - English dictionaly . In addition , that translated English is not often generaly for `` native `` speakers . To study foregin language is hard . They provodes a study room , where we can freely study using the books we borrowed . Seoul is my lovery place . It was a very confortable room , gym area and spa . After I came back home to Seoul from Daejeon , where I had gone to visit my family during the holiday ( Seolnal , or lunar New Year 's Day , which is one of the biggest holiday in Korea ) , I found out that I had received an e - mail message from the editorial committe of a Korean philosophical journal , notifying me that they decided to publish the paper I had submitted in their journal . This is the second time I 've had a paper published in one of the mojor philosophical journals in Korea . I wil be thinking of them . He has had a high feaver and has been coughing . I do n't know why , but it was probably because of my old PC and its browzer . There were maney confusing things I thought I knew . I live in Russia and I want to learn Englisn . I 've had bad luck these days ! A massive headache , sore throat , crowded street , poor air quality , buses which never come , intense classes , and I have an important meeting toninght . . . I dont n't know very much . . . . . I 've been whitening and wanted to a whitening gel because my teeth is geeting dark . ahh and I can speak Japanese so I can teach itt . Anyway if you are interested in chatting and coicechatting on skype send me message or leave a commenttttt . See you ( later ) good night oyasumi bye byematane jaane bai bai ~ I have improved my English by writing a little , however , to speakk to a foreigner in English is still hard for me . Then I get more and more nervous , and I reply with bad pronouciations . In the villages , the farmers are very poor . They need clean water and lvestocks . But if some fctories just emit dirty water , it ca n't be good for people 's health . My coutry needs to take more care of people 's lives , not only the good things . Of course , if you who always tweet in English , follow me ; I will be more than willing to refollow you also . : ) rumur has it that the first year is the most comfortable one of the whole college life , but somehow , I think that I was lied to . But the dentist uses esthesia before the dental treatment . They have beautful voices and emotional lyrics . I 'm so excited , even though I hear it will be rainning heavily . My favorite writter is Tolstoy . I have a strange havit to go to the Odawara castle every day . I take the first or second Tokaido train at Hratsuka . I study English and check my planner for today 's scadule . Recentry other person take a place of our president , so his comment did n't realaized . They aren n't differentfrom Chinese politics that much . I 've never been a shopahoric before . All students were very skillful . I think the accident in the first harf was the misjudgment of the century . I have to learn English , becouse I will become bisinessman this April . Today , my breakfast was an egg over rice , miso soop , dried prum , nattou , and honey in milk . I thought that they 're very hellthy foods ! Transletion sites are untrustworthy . . . No progless today . After the famous people die , it affects ordinary people who get the implusing to commit suicide in groups and series . And as that happens , the social anxiety increses yet again . Strangely , she got a reply from a mistery person . ) She started a correspondence with this mistery person . At last , she found out who the mistery person was . The mistery person who sent the reply was a different person with the same name as her lover . The mistery person started to let her ( the actress ) hear what happened between the two differnce people of the same name , by mailing her a request . The problem is that the mitery women has the same features as the actress / movie star . My teacher Yoko is very sterm . I speak a smetering of English . Immidiately I regretted it because they were not good words . Fotunately he knew that I did n't try to mean what I said . and we became freindship . We will meet again at ather festival . have a quiky rhythm and the video is very colorful . I met a friend with a beautful girl at the theator . Some time later he admitted that he has feelings for her and is so happy that he could not get her out of his mind and could not forcus on working . I guided a visitor around Shinjyuku today , who came from US to teach English at highschool . I have been aborad for 9 months , but I ca n't notice any improvement . I am a freshman at hunan international economics university , majoying in basic English . Since I am instereted in languages , I am learning nihongo at the same time by myself , though I actually know little about it . My friends told me that I am a happy boy with sun - shining smile . I hople I can infect you with my words and the emotion behind it . Then we can be friends . It 's located in Kyusyu . Today 's weather is clody and rainy . I have to chage . I want to chage my life , really . I will have an important examination , next week . I feel a little bit nervious and fantastically excited . It 's my falt . I 'd like to glumble to my mother about that . `` You can do it on upstaire ! `` It has great ryrics and a great melody , do n't you think so ? We peopel are easily influenced by the weather . I hope everybody will have a good and clean oneday , just like today ` s air and spring leaves ! The Bible I am lookig for is an Audiobook . I shoud study harder . It is irratating me because you have to change to vibrate mode ( it is a mode which does n't make any sound when your cellphone is receives a call ) in Japan . My rabit has got sick By then my English skill wil be better , so I will be able to talk with you more . English level and is helful to your English study . Having drunk a cotail at dinner , I am still feleling very sick . . . Im am going to go very soon . His burthday was last month . My specialite is forest mensuration and planning . I like listeng to classical music , pop , rock and Japanese pop music . Therefore , I do n't like the wheather . I hope the dead can go to the pqradise , and the survivors will live a happy life . The most imfortant thing when I buy a bag The most imfortant thing when I buy a bag is the color . I went to the karaoke bar yesterday with a junior menber I knowthat it may sound imprudent , but I 'm dying to watch the real erution some day ! Yestarday I attended a series of lectures on the English language . The lecturer asked the audience to discuss the governemt 's new policy that English classes should be taken by English people ( teachers ? ) only . He arranged us into some small groups , so I talked to two peole who are English teachers . I heard that in Finland there are no textbooks , so I was so curious as to why they can be sucessfull without textbooks . In my class , my students are obviously bored and I also can not enjoy it , Especally , when the stories in the textbook are plain . `` It 's better to not to have textbooks , is n't it ? One teacher believed that teachers should correct student 's pronounciations strictly , while I had not being corrected sincerely when my pronunciations were bad . She claims that a scientific study shows that people over the age of 10 can not pronouce English correctly , but I do n't think she had spoken English before she was 10 years old . Also , my most frightening experiences derive not from pronounciation errors Every mornig It 's hard for me to get out of bed . I always feel sicky after I drink beer But I do n't feel sicky when I drink wines . Tomarrow I will have class again as usual . I told my Enlgish teacher about it , then I said `` Oh , the reason why they broke up is he 's gay ! `` and then I asked our classmates what they would do , if their boyfriend wanted to break up with them to date another man . I siad it would be a nightmare , and a disaster ! But my firend said `` Oh , in my case , it 's so much better than him meeting another girl ! `` We laughted a lot bacause of her answer . But he still needs some rest , and has been linning in bed for a long time . I 'm swimming with my frind . They 're famer . curently they prepering for planting rice . I start in the afternoon , so I 'm planing to go to the library in the mornig to read a book ! It 's the story of a famous Japanese burgler 's struggle for his friend and master during the war . I am worring about the enormous typoon which will come soon . My boyfriend 's sister works at a theater , and she said that she had seen this play and she did n't like it , beacaus it was really weird as a play . The second one was `` Vearoica Wants to Die `` . Unfortunately it was a litle hard so I stopped it after a few pages , because I did n't understend it enough and I read it very slowly . My austlian friend can speak English very well . And my classmates can speak English , because some come from the USA , others can speak it as a secound language . Fotunately , I could come back home smoothly , but a lot of trees in the yard went down from strong winds . In Taiwain , I 've never tried Mexican cuisine . The price in the reataurant is fivefold more expensive than general Taiwanese diners . I like travling , so I want to learn different languages . Aslo , I would be glad to help people who are interested in learning Chinese . When I eake up , I forget everything . Chan taan ahaan tian took - wan , proowaa tii Ginza , ahaan pang kha . I will start going to school in Ginza for studing Chinese . I wish I can speak Chinese with the customer after studing Chinese for 3 months . waight training , not yoga . I took TOEIC exam today . I 'm just scard of firends . I have about 300 - 500 people in my friends lits . If I think you are my firend , I will put my trust in you . But a lot of my firends , they always like to `` betray `` me . About 5 firends owe me money , so they do n't try to find me and I ca n't find them ! I played too much , so I became tired and slept early at las night . I am besy everyday I hope to make friend with everyone in here . Especially japanese people because japan is my favorite country . Yesterday , I felt sicky because I got drunk . Tomorrow is Nossa Senhora Aparecida holyday and Children 's Day . Today is the second day of the beginning of the New Year . The weather is fine and the teempture is very warm . What a fine day ! According to Chinese custom , people will get together in the morning to greet each other . I have an image of people from every country . For example , Americans are active and emotional and Chinese speak hurriedy and are a little selfish . I 'm waching the second season now . At first I thought I did n't want to live in this coutry for a long time because it was hotter than I had expected and I really missed my friends in Japan . one is Korean immegration in of Japan , and the other is Japanease ' Kamikaze ' special pirots in the war . of course I know this activity by the Japanease army but I did n't watch the real screan images until today . its a Japanease black history , so we must not do for the outbreak of war and Kamikaze . in those day , I think people believed that we must be alive and die for our Japanease emperor from the education . I think that they were brane washed by the goverment then . The influences you get from other people make you who you are . If you sometimes listen to urself , you will find that you talk as someone else would depending on the situation . There are meny people who actually are not themselves , insted they are a mix of a lot of other people . Granada was an important city during the 800 - year - long Maslims occpation of Isram seems to have been comparatively generous to another ethnic group . I spent New Year 's Day on very spontanious trip to the mountains with my school mates and their friends . It was very nice to meet some awesome new people . We went to Murzasichle , a small tawn near Zakopane , a few days before the New Year to take some walks and to try some winter sports . : ) We climbed some hills and walked along the streets of Zakopane and in the snowy forsest to admire the beautiful views around us . In China , when u are 18 yers old , then u can learn to drive a car , but last month , I went to New Zealand , and I know people can learn to drive when they are 16 years old , but my visa is a student visa . I do n't know , can I learn to drive now ? Also do n't know I have allreday corrected other people 's diaries , but my `` corrections made `` number is zero . . . . . I learn that the Chinese do not like going duch . Rearly ? Now I can pay for college to help my fhader and mother ! Suddenly , I realized that I will be a college student at taht moment and I would start a new stage in my life . I do n't need to seperate trash here . There are no desinated trash bags either . In Japanese society , low calory beers are popular now . My favorite the low calory beer is `` Asahi off `` . The most two popular languages here are English and Japanese , withoug a doubt . I 'm not complaing , because the ability of speaking Chinese would remain a privilege in some ways , haha . So , people who are learning Tradition Chinese do n't give up and also others , who are learinig other languages , do n't stop ! I have n't baught a present yet - Only neighborhood walk through there . I went to libraly after the test . I 'll go to Okinawa this comming Sunday with my school friends . so I 'm styding English hard . In Central Asia , deserts such as the Karakum andthe Kyzyl kum exsist . This is one of the geographical dimensions differnt from Japan . Also , in Japan there are several sandy areas , which are called `` sand hills , `` but the size is much narrower comared to those deserts . So , I made pre - preccoked Japanese noodles . It 's a very popure brand of noodles in Japan . I watched a video by chace yesterday , and it got me thinking about many things . Watching this , I thouhgt that I had only explored a little bit of myself as long as I have been living I learend a lesson that exploring myself is important . It is aroud 40 minnutes past 12 ( ? ) . I also want to learn some sentences that native speakers usually ues in daily life . I hope you guys can be my teachers and hlep me . I couldn n't use my computer because my stable went bankrupt . At first , I couldn n't understand what happend to me . Needless to say , I was confused , but I tried to think : `` This is a big chnace . I can change my life . `` It 's very hard to pass the English essay - writting test , and so I must work very hard on it . From NHK news , these earthquakes is 8 . 8 - Magunitude . and these are very massive ! They hit all of nothern Japan ! and the Tsunami hit Nothern Japan now . My friend told me to listen to the opening naration , so I did . I took the test becase the score gives me a certification for english skill for when I apply for a job . But actually I thout that I want to stay here longer . knowledgse from books , we do n't experience ourselves . knowledege . So , in my opion , books are the more important source to gain knowledge . On the train I read a book called `` Diary of the winpy kid THE LAST STRAW `` and this book is so funny because , it 's a story that could n't be real . After I got off the train I walked for 3 minites and I got to the Canadian Embassy . Then , I went to the library and took part in the book reading session . Today 's session was about `` What elefhant ? `` . It 's a story about a boy named George , who went home and found there was a big elefhant there . George called a lot of people for help but , nobody believed it was true and George had to do a lot of things because of the elefhant . This story was very intresting for me because , could you believe it if there was an elefant in your house ? Unti - boycott law in Israel Unti - boycott law was established in Israel . I still do n't know why she went home withou any word , so I feel bad today . I work in the company which is in one of the financial cector and I belong to The Ferris wheel is our good memory before getting maried . One of my friends strongly recommand this site to me . I want to go abroad , but I 've never been to foreign co `` u `` contries . But , because I 'm shy it was so difficult to make firends there . . . I maneged to talk with some people . They were from KSA , the USA , Korea , Malyshia , Rossia , and India ! ! my listning and speaking skills are not good . . we have only learned English grammer and reading . . . My nees hurt recently . When the tomato jolted on the basket , it made tamato juice . But some of the costomers say `` Thank you . `` or `` Hang in there ! `` to me . When I walked along the fried chestnut shop , the fragrance of fried - chestnuts was scattered into the air , which made me drooly . I took the lesson from the other teacher but I was given a lot of questions because this was the firtst lesson with the new teacher . It seened as if the story was finished by force . I was very imressed ! `` Akai ito `` means `` the conection between the couple . `` I have a friend who lives in Hawai . After that he went to Hawai . He have lived in Hawai for 9 years . I know what is happend in my brain Yesterday and today , I watched the dorama ( or TV series ) `` Sex and the city `` for 10 hours . Becouse I watched season 6 that has 20 stories . ( or episodes ) One story is 30 minites long . I love Samansa . The question is whether we should elimilate the one child policy . On the one hand , they need to take care of the elderly , while on ther other they need to take care of their children . Exactly . If you have no money then you can not do anying . I have done much houseword today because my boyfridend was watching the world cup all night ! I always regard her as my anti , although she is Vietnams . If you make a correction with a reson , I would be happier ! ! I had seen Avatar in 3D in January , and I wrote about its impression in a Lnag - 8 diary entry . This is the leatest release . Do you uaually think before you speak ? Indeed , why do I learn languages , if I have no one to comunicate with it ? I 'm jpanese but I feel that I must learn the Japanese language more . He has to stay in home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guity and I totally miss him : < I drink an iced cofee after I drink a hot coffeeXD . XD So I can go home anytime whan I want to go home . Its original is `` Shusyoku - Katsudou `` . Docter says it will take about one year to heal . My neighborhood was rushed to a nearby hospital by an ambulance . At this time , which shoud I say `` Good night `` or `` Good morning `` ? 3days ago , I logined in Lang - 8 to study English . I found it takes a lot of courage to face the setbcak in life . And both have toched me . One day my mother made me take piano lessons without thinking my charactor . I preffred playing outside with boys instead of playing inside with girls Sinece then , piano and music scores have been tramatic for me . Speaking English is very different from writting and reading , I think . Whre is the sunshine going ? Though , of cousre I am really happy that we realized that we love each other . Success or failur Thank you very much indded in advance for giving me your answers . How to get fidh eggs . At the gym , I trained myself by using dumbells and some of the other machines there . So I was nurvous . These days , there arealso boxes for the purpose of collecting money / donationsfor the cases of foot - and - mouth disease in Miyazaki pref . I made carbonara for dinner ( see the attatched pictures ) Yesterday , we had a tranlating class and it was exciting for us . So far , when I read something in English , I can understand it if it is about something that we have been tauch . Honestly , in some fiels such as stock market , speciaized terms in economy , and so on . So if I am not good at my language , it will be more difficult if I wanna be good at other lanuages . I really like Europian architecture and art , so that 's why I chose this department . Though I 'm studying French , recentry I started going to English conversation school in / at my university . My naitive teacher is very kind and I made friends with my classmates . Friedn 's birthday ! ! However , fun time ended soon becuase I had to go to the libray for an appointment with the librarian . I had my stomach examined with gastokamera today . First , I drank aliquid to reduce bubbles inmy stomach . Then Ihadan injection to restrain the motion of mystomach . Ithen had tokeep ajerry to anesthtize at the throat for one minute and wait to be examined by gastcamera . It was nothing other than a cockcroch ! ! I have found more and more cockcroches lately . We shoult be content . Athough it 's saterday , I do n't have any planned . It 's likly that the share prices of IBM and AOL will stay at the same level for the next few months . She had to have seven stitcis . I actually have very patrotic feelings - our history is really heroic and difficult . I 'm not good eanogh at it to write anything ( I 've had just two lessons ) It 's Geraman and if I only wnated to , could I & nbsp ; write something understandable . I 'll motify / correct my mistake . Though my daily life is extremely monotonous , I try hsrd to adapt ( myself to it ) . Exceting Cities ( Boiling Cities ) I watched the program named Exceitng Cities made by NHK . Finally I found the program on internet yestarday . Something is defferent between the Turkey in the episode made in 2008 and the Turkey I saw in 2010 . Moreover , Japan is also one of the places I want to visit since I like Japanese cutlure so much . In order to tavel to different places in the future , I will try my best to learn languages and always improve . stupied policy I 'll be going to to Tokyo Desney Sea tomorrow . I recived an e - mail from an old friend . Last week , my supervisor invieted me a meeting , and let me know that the company has a new business plan . it can prevent some viruses and hicker . My body 's condtion was bad , so I slept all day . On the day of my birthday , I decided to never fail to write a jounal entry everyday ! Our president and goverment . I was absent from my company today because of my sons poor phisical condition . He can go to the nersary school tomorrow , I hope so . This is tempra , which is fried shrimp and vegitables . We often eat tempra with soup called tsuyu in Japanese and we sometimes eat it with solt . Both ways to eat tempra are very delicous . he tempra of This picture shows several kinds of tempra . There are many foods which are included in tempra . They are tenndon , which is tempra on rice and tempura udon which is tempra on top of udon soup . I was allways bothered about what people thought about me . . . Today is the first time I went surfing on the Lang - 8 , and I extremly want to When we are working we have joe and fun . ^ _ ^ So we are not well known by people in other contries , especialy the people who live in Europe . I want to write an interesting dialy . Spring horiday ! Now , I have spring horiday for about one month . Besides , I 've been expecting my pacage and letter from Japan but it has been delayed . . . I was living in Illinois , in the outskarts of Chicago , for 2 years . Some people told me that I can speak english pretty well . So for now I want to work with foriengner only , so that I can practice my English with them . I 've had many foriengner friends in Thailand and they really like it here , but it 's opposite for me . Today , I taught the way of makeup to a younger menber in my club . Furthermore , I was praisd for my posture in yesterday career fair ! ! We were in the same grade and the same mojor . In contrast , I think some English words do n't ( seem to ) have any differece , so I want to know how English people distinguish these words . Actually , I did n't know what to writen . In autumn , there are many seasonal delicasies . And I wish I will never have a pattient . TRY - WORKS conducted questionnaires on the web and the street to ask girls about which charactor was the cutest . They were sold at game arcades as a prizes , and Kapibara - san became the most popular charactor of all the prototypes . He became a big hit among girs , and today he is just as popular as ever . My official duties are to explane the work for my workers , check their work , and make orders for building materials . . . I think that this work is difficult becouse I am young for this position , but I like it and it brings me a good salary . I am a student at Gifu National Colege of Technology . I just hope in a few days I can be nomal again . However intelligent you are , you would not say these are corect Although I 've already dicided to not send any , I have to make a lot of New Year 's cards for my family . What can be considered to be a good souvenior ? ? I ca n't decide on souveniors for my Thai friend and his ( her ? ) familly . Winter , summer , twenti - nine , thirty - first . . . It 's news to me , so first I have to understand the general tought ( people have ? ) about him . A rainny Tuesday I live in the north of Taiwan in Keelung , a famous rainny city in Taiwan . I went to the Gold Coast in Austlaria from the 1st to the 15th of August to study with my sons . Today , I discovered Lnag - 8 on the Internet . I like reding good books sometimes . But now I feel a little nervous because mang graduate students are not working . But the students have mang things to prepare . You could find something new or something you 've half - forgatten . In addition , to the Japanese , grass is bule , the smoke of a cigaret is purple , etc . . she ` s so adorable and I can ` t wait to see her weird fasfire and hear her sucking sounds . I am actually concernd about it . Fortunately , I don ` t have to eat a lot as long as I studie because I did not move too much . Does anyone experience this kind of eating habbit ? I received `` A Desk For charie Jade `` : episode 1 from Amazon . Charie Jade is a surprising drama . Today is the day I started watching `` goship Girl , `` which makes my boring life a bit more fun . Once I saw the cover of the DVD , I was totally excited to watch `` goship Girl `` as soon as I could . Belive it or not , this phenomena migh have happened to you before . Has it ? A patient came to my clinic three minuits before our consultation hours was over . but seriously , I 'm considering to go to a foreign country as an exchange student , or take a VISA for a working hollyday : / ummmmmmmmmmmmmmmmm . . . It 's hard for me because I have never lived in another country before and most of time , I 've spent in japanese : ( So im not in a situation where I can drematically improve my English skills , ohhhhhhhhhh my gooooooooooooooooood ! so , I 'm thinking about the other way , a working hollyday . I ` m very happy becouse I met up with my best friends . I think I want to speak English to comunicate with people from other countries . I decided to stady hard English . I thought this is redicurous , and I resisted to do it first , but it was in vain . Those all made me just exhuasted . But nobody coment my diary . When I feel someting , I try to write a Haiku . It 's very nice but my regs ached . As for me , I 've been to Italy , Germany , Holland and switzland . This holiday has many days togather , I enjoy being at home with family . By the way , tomorrow , I will visit Kyoto and meet up with a friend who was my neighbor when I was living in Osaka . I Iate five bananas weighing in total 1 . 5 kilograms . I wo n't do that nexy time . It is common that hundreds of thousands of people apply for one position in one company , abviously , the competition in China will be more fierce than that of in Aussie . However , some employees argue with their employers about job satisfaction in order to improve their work enviorment . This eassy will discuss what factors are important to job satisfaction , and what employees can realistically expect . In this unlimited competive society , corporations tend to concentrate mostly on how to increase profits . He loves diseny , so I wanted to send a diseny one , but I could n't find it . In 1932 , she wrote her debut sgort novel and her writings were published in the school magazine . It includ Qing Cheng Zhi Lian and Jin Suo Ji . In the spring of 1952 , she went back to Hong Kong , where she workde as a translator for UK News Agency for 3 years . But I was a bit supprised to find this kind of site where the registrants assit each other with foreing language skill development . Today , I started to read the passages of the website named `` technobahn ( URL ) `` to learn more about the backgrounds of various fields such as Archaeology , Biology , Ecnomics , Mathmatics , Physics and so on . Since my youngest sister is going to college , none of us are qulified to get any Ya Sui Qian from our parents . But , I never want to give up my futere ! I 'm wondering if the scentences below has any differences . But I decided to choise the normal version , because it is more friendly on kid 's eyes . I have been dreaming of seeing the Christmas tree at Rockfeller Center . I tried to explain `` konnyaku `` ( it 's a japanese food ) to the instructer from America , but I was totally confused : ' ( I need more practice . ) She failed ( in ) the step - up ( examination ) 3 years ago , so she had to look for an one - year contract domitory . In Japan , domitory contracts are mostly for two years but I do n't know ( the reason / why ) . Her contract ended this year , so she had to study for passing the exam and also to look for a new domitory . When we arrived at her old apartment , she had just finished putting all her things into baxes , so we cleaned the rooms and ( conveyed / move the ) boxes to a car . After we moved all of her stuff , we went to a funiture shop to buy new funiture . It was a littlw far from Tokyo . But we had a lot of fun and looked a lot of funiture . While I was looking for her funiture , I found a very attractive box , so I bought it . In the way returning home we went to a noodle restrant because Yokohama is famous for its noodles . These speciall beans have a hearty taste and smell nice . I stuudied English today . Takahiko Kozuka finished eighth , but he bacame the first man from Japan to complete a quadruple jump at the Olympic games . I got angry at my daughter today , so she broak our promise . Then , I thoght that this was good for my English study and bought it . Allthough I have lived in Tokyo for many years , I did n't know most of those Tokyo 's sightseeing spots . The Burger King in Akihabara is a holy ( ? ) spot , because there are little custmers . It 's undisputable that cars are harmful too but I think that aircraft which need a good deal more of fuel than cars are even more polluting . I graduated from a university that had many sutudents from other contries . So , I have larn more English than other menbers of my office . I know my English is not good enogh for bisness , but I will have to work with a cliant with whom I need to comnunicate in English from next month onwards . There will be many comversations with this cliant . A few miniutes later , a staff mentioned the train would n't run because of the earthquake . I feared the infuluence of the aftermath . I study foreigh language . Surely , the most universal vocabulary , the most laconical rules , the most popular constraction help me study English easier and faster . The most moderen equipment and programers use only English . My job is very buzy recently . I studied English in school , but I never did leaen it . In Japan , we will have a long hoilday from April 29th to May 10th , when there will be a lot of tourists going on holidays abroad . This flu came from pigs , but our govenment says it will be all right if we eat pork . Sometimes there are nice things , and sometimes there are bad thinds happening . Fortunately , I have n't experienced a huge earthquake yet since I came to Sappor , although I have experienced slight earthquakes a few times . They are beauyiful . I always believe that I do n't have to celebrate my birthday since I have n't contributed anthing to anyone around me . My childishness make me suffer a lot in campus while others take their time to borden their circle . I 've never celebreted my birthday before and neither have I evergot such a surprise . I think [ that ] the British people really do have a funy accent . A very emberassing thing happend to me when I was in Manchester for the first time . Is it becouse of my diet ( two meals per day ) ? I heard about this website from a friend of mine , who is learning japenese . She said online studying was so much fun that she had improved her japeneses extremely / very fast . So I decided to come here to make friends and to elevate my spoken english and grammer . I 've ended up my bachelor 's at the beginnig of this year . I 'll begin keeping this dialy today . so I 'm studing everyday . I got up at 9 : 00 a . m . I was standing at the booth of my laboratory , and I talked to some people advertizing and appealing my laboratory and my study ( major ? ) . As I mentioned yesterday , my friend Minsung came to my home after watching a concer by singer Park HyoSin . And then , we went to a `` tteokbokki `` vendor because he said he was dying of hunger . I 'm nothing compared to him because all I 've watched are Heores and Friends . A sourt of mouse that has only four fingers and walks on two legs lives there . I want you guys to correct my broken English and I can also help people who needs Korean correting . Does the dormitory of the university in Toronto still have small telephone boths on each floor where students can make phone calls ? I went to a park near my house with my sons so that we could play succor yesterday . This is why I played succor holding him while playing with his brother . I ended up goint to bed again . ( In Japanease ) or `` How wastfull `` ! ! After my cavty was treated , I had a terrible toothache . Fortunatly , my older sister 's friend is a dentist . I do n't like these serious meetings , but I like a lunchbox served dueling it . It was a more important probrem than the topic for the meeting . Even though I go to Sapporo snow festibal every year , I think it is specutacular . This September I will be promoted to a position that has to conssistantly fill out a lot of documents . My concern is if I can accomplishiment my task . My fovorite day of week except for Sunday ! Do you know Udon ? Really , though , I could n't comunication well enough with her . Plese correct my English . Because they are so yumy , they become others ' prey including ours . I was reliefed . I have a fever , headack , sore throat , runny nose and I sneeze often . I hav n't gotten the shot yet . I ca n't have swine flu , espacialy now . I have to go to China tomorrow as a model for a cosmatic company . I am going to the hospital in an hour even though I do n't have the energe . I 'm kind of nervus . During oshogatu holiday , I prepared to aply to get a Canada working holiday progam visa , [ The 34year old England midfielder missed the first half of the American season because he extendid his spell with the Italian side . The auther of this book is genious or god indeed . Please tell me what the most important things are for an intervewing It is one of my all time favorite movies . As you may know , Lang - 8 had been experiencing some technical issues after the latest update which occured the disappearance of some journal comment entries and messages ( friend requests ) In the futuer I will work hard for my family . Today I will study English and excercise near by the park . I continue the effort in the futuer . If I walk wearing this trainer on the street , people think I 'm crazy , but if it 's her , everything will be okey ; - ) Besides , most of all them take paid holyday with 100 % commission Right now , I 'm studing English & Korean because of my job and communication . Please bocome my friend ! It was a nice descovory . A handmade Chistmas cake After that , we ate this handmade Cristmas cake . Her hair clour is drak blue . But , one rainy day , her brother Jin disapired . . . . It was delicios . I want to keep a dialy to learn English . The roads were confusing , but the plice stood at the main crossing When I turned on the TV about 2am yeseterday morning , Now I am writing some documets , including some tutorials of the basic systems and how to use and set up stuff . Even if the guy says that he ca n't live without me as he sincely loves me , and I feel like accepting it , I ca n't . Since I was brought up in a poor family , living withought worring about money have been very important for me . I tried to go outside and see the fireworks dispay . Other Apratment residents were also outside to watch it . My boyfriend will go to golf with his colleaguues . A meal consists of chiken , vegitables , potatoes , and so on . We had gossiped about borring routines as well interesting topics like the Casino . I forgor about lang - 8 for a while So I will go to the gas gasstation and buy lamp oil . the cold is ver bad ! ! ! ! ! ! There is a dressing tabe at the head of the bed . Aroma is again important to make it perfecrt . I can chose the best one for that day from some harbal soaps . I 'm studying CRM ( Costomor Relationship Management ) Then , she woke up in sprise . My Literlly Comprehension . . . . . . . . . spacially when I walk down the street Saudi people look at me interestedly and greet me . Soccer is vely much fun ! The temperture was 37c , unusual in this rainy season . It was usuless , they were careful about their health . now Mao may not take part in winter olimpic . It was very bautiful . Therefore when we went out last weekend , I kind of got lost in Harajyuku and beleive it or not , he led me to the right direction . I applaied for a scholarship . But I still have not recieved any response from them . When I came back home and opened it , I went just insain . Last week , I was asked to trancerate some papers at my office for a co - worker . I could n't come up with the right word in Japanese even if the English word was very simple or familliar . The Phoniex Suns were two wins away from NBA finals last season , Du bety mye fra meg : ) We ( my hasband and I ) decided to buy bricks for her Chirstmas present . My dinner was only riceball and vesitable . I had good oppotunity to meet funny women and we exchanged email adress . She was pro - wrestler and she was eating smorgasbord about 4000 calory . She claimed she could eat a smorgasbord about 4000 calory if she could come to this place . She claims that she eats 5ooo calory everyday . I was the only Japanese untill the new 2011 February team arrived at my school . I totaly did n't understand what my team leader said when I was at meetings . I 've tryied to talk with other Japanese people in English , even if only Japanese speakers sit down at the same table as me at lunch time . We mixe ingredients such as strong flour , salt , yeast and some others . When I come home , my leg alredy dead . . When I was in university , I joined the bollroom dance club . My scheduel is too full Love letters are normally too sentimental and so full of words that only once you read them again after some time you realize how silly and embarrased they make you feel . So I dedicated some of my time to writting . Unfortunatedly , I found that two of the professors seem to have bad ratings regarding class hardiness and teaching qualities . For 10 mitutes , two friends and I talked in English in front of our teacher . The pisture shows the Sept Sky in Hong Kong , enjoy . I always go to the Stabucks coffee . I did a college enteance exam . Because of the sucky asigment makes me nerveus I finished the asigment up . Then I counted how many words I used in the asignmemnt . I ( just ) picked up `` The Dialogues of Platon . `` Since I had promised my kids beforehand , I took my kids and thier friends to a swimming pool today . This photo shows a statue of a Buddhist priest in his childfood . He has been praing all this long - long time . becouse I am apart from them . Do you konw Hiro Nakamura ? I heard that drinking water is good for the helth . A large number of evacuees from the disister have stayed in the evacuation shelters . Also , unfortunately we had the truble with the newclear powor station right after the earthquake . When I pull the drewer , I found some latters . I found blog with iPhone reviw , when I surfing the internet . A large quantity of the site 's features were developed by American and South East Asian engineers , so I had to coorperate with them in order to maintain site stability and to make sure the translations were correct . For examble , there are often some variables in strings , like `` You have learned [ A ] out of [ B ] videos ! `` . So I needed to make a guideline that unifies the way to transalte the site 's contents ; I had to consider the difference between English and Japanese . I deside to make a plan so that I do not waste the time I have left . Becouse of the cold and rain , there were no people except me and my girlfriend . It is better to ride a Ferris wheel in good wheather . The master then put out a five - doller bill and two one - doller bills and asked the boy . Why did you choose the two one - doller bills at the barbershop ? `` So I would like to keep writig and speaking English . 2 ) Let 's review the 3 qustions I gave you today . But today she said `` I do n't remenber `` . I 'm nurvous . My hobbies are playing violine and snorkeling . I play the violine about three times a week . We talked about the habbit between Japan , Korea and Canada . hi . this is my first jounal but , excepe for reading and reciting , Today , my chalssmates and I went to play basketball and soccer , and I felt very happy . I suddenly tought of a sentence . Also , regarding internet tecnology , I feel that it can connect people of all over the world to each other , and that is usefu for business in the future and in our life Because of these reasons , I want to work at an internet company and create new survise using the internet so we can live mofe confortable . A few days ago , I made a decision that I would get up at six - thirthy every morning to study whatever I need to . > `` < So it 's all my fauly . But I could 't directly ansewr thoes questions . Anthing is OK - common image or personal opinion - . It was first time I met them for `` real `` , but they were really firendly ! ! English conversation is very diffecult ! ! ! ! ! ! ! hallo . I ` m a univercity student . Thease days , I have many oppotunity to talk with Americans , Canadians , Germans , and so on . I ask myself , `` Is this English expression wrrong ? This might be wrrong , `` and then I stop myself to express my feelings and oppinion . If you get a chance to draw on someone 's face , I recommend all of you try to draw fake eyes on their eyelids ( like the pictures above . These are my current works . : P ) It makes their sleeping face incredily funny . : D We enjoyed the changing colors of autumun leaves , and we enjoyed the sound of the fallen leaves crunching beneath our feet . - Samurai Sentai Sinkenger & Musked Rider Decade - This movie was very interisting ! Masked Rider movie Next 12 , Desember . Goog summer vacations ! I was born in the Aomori prefecture , which is nothern north than Iwate , so my parents and brother were not injured . I hope that the disaster 's damege wo n't spread more , and that thepeople of those areas may be safe . I decided to exspand my skills in English . This first note is very short becouse I 'm so tired . They had to check my vision befofe I buy them . I am very nearsited . Some peple were fighting policemen armed with shields and nightsticks . At first I dind n't know the cause of the riots , as Japanese TV stations dind n't report them in detail . But in China , it seems to be umbereable to eat raw fish . I colud n't do my best . Deppression Days So we are losting our work . I write my dialy in English and Chinese every day . Hayashi told us about the book written by an Austrarian broadcaster who traveled to China . After some time , apeared a rainbow before my eyes . The camera of my cellularphon could n't photograph it . I want to work for a passinate , challenging , and creative company . My last wish is to never losting happiness no matter what may happen . I 'm not a perfect person but I 'm proud that I 'm a Chritian . frist diary entry Because the internet is speedy and wirelessly . I must plactise it as much as I can . . . But I thought the tiger one was more cute than the lion one , so I choiced this tiger . My adress is on my profil . Thay seem to hate me since I have been put in charge of an important project at such a young age . I invite my friends over , but I feel confusted because of not knowing what should I do with them . On the second day , when I first met Chinese friends , I was very ashame and confused We call it `` Tyakaiseki bento `` in Japanese . The beggining of the rainy season . The quastion that agitated me and my friends was about limbs . According to this script Moll retuned to the real world . It 's in Guamu I will not be able to go anywhere unless I get up early tommorw . The club chief is a hadsome and cheerful person . It was relieved because generally menber of such an inconspicuous club are not cheerful . She became my friend when I was in an elementaly school . Second of all , there is a really exciding activity He is the one that recommonded me to go to his church for the first time , so It is just like rainning fire outside in the afternoon . Despite the electric fan , we still ca n't bear the igh temperature . Eatting ice - cream is the only thing that makes me happy . Now , I wanna tell you especialy about the J - pop artist , Aiko . Is it as hot in your neighbors ? Useally , I go to see musicals in Seoul . It arrives at Suwon saubway station . Clowdy but warm It was clowdy today . I went to a Chinese tample located in the China Town of the Philippines in 2008 . I have some questions about grammer . I cooked dinner for my freinds I had to treate my guests , so I went to the supermarket and bought some food . I bought more expemssive meat than I usually buy . Their answere was SUSHI . They often make joks about my skin . The Weather forcast says the rain and the wind will stop by the next morning . Studyng in my room is so hard . There are many obstcles ( distractions ) . It is irresistable , haha . The bitter melon was eaten in Okinawa originaly but now it is eaten throughout Japan . In addition , it can be used as a green cartain ( ? ) and it is useful for avoiding / blocking the heat . But the various vegitables and plants will help us and our life . One is through the third tunnle , obsorbotory and the nothren most station . She is a good listenr . However , I did n't know it cleary . She told me after she went to America , she rarely read books in hre leisure time , because it 's in English . Some like Yahoo , some like googel , and different countries have their own search engines . I saw `` The Blind Side `` yeaterday . The presents were `` smiles , messege , bouquet , dinner , and more . `` Yesterday I finary receieved a big baggage from japan . I 've been engerly expecting the baggage from my parents . One of my club menberes invitted some other members including me . ( = some club menberes ) . I was so furiout to my parents and doctors . I was so depressed and sad so , told my mother that I 'm so afraid and sad for staying in a hopital . It was the start of the my terrible lunatic asylum journy . I was in ther for 2 weeks . It was the end of the lunatice asylum journy . When I was there , I was so normal to interact with others , alchoholics , schizophrennics , sueciders and dimentias . I hope they get well and live happyly . . . . . I am very nervous . I really hope I perform well and can be adimited by the university I want to attend . I feel lonly , because I have to work the day after tomorrow and my favorite city is Seattle . He made a beatiful Latte . ( picture 1 ) It 's a very beatiful city . I am one of thoose people who has to come here earlier or I wo n't make it on time . Thanks in advance for everyone who will help me make my English understable for other people ^ ^ `` But I 'm warried that it might not require me to speak English . I want to speak in Englih . However , I sometimes keep it at a high temperture I was toooooooooooooooo cold . . . . . . . Today is not sunny , so it 's not very hot althouht it 's summer here . he played football and badmintion , although he did n't win he had fun because he met a friend and relaxed after hard work . This will be my Frist trip this year . I 'm learning English conversation through the enternet . But there are so many English words I ca n't remenber ! But there are no words I can show my opinon with . A new shcool year starts in April in Japan , and March is farewell season . But I think thinking about something impossible is important because it chages to real things . If we hope , we strive to fulfill our desires . wonder drogs And I am hoping to study Japanese and lern how to talk , but now I just wanted to give an update on where I 've been . I think all languages are beautiful , only we just do n't have have enough time to be able to discover their deauties . That is `` Lang8 surffin `` . That 's ture . I think the Internet is a good thing because I sold my bicyle on a second hand goods website [ www . Stil , I ca n't believe he has broken his leg ! ! I would really like to meet my host famiry and feel a different culture ! but , I 'm worrying to ca n't make myself understand in Englih . I was surpreised because many people cosplayed super heros . She trid to ruin the relationship bewteen S and N . I took the role of a presentator and got a lot of helpful advice in yesterday 's meeting . I will do it coutinually to achieve my goal of going to Harvard . They were kuskus ( Africa ) , shan noodle ( Myanma ) , adobo ( Philippines ) , spring roll ( Vietnam ) , guacamole ( Mexico ) . And we , as Japamese , made ' Makizushi ' and ' Inarizushi ' . Fortunatly , my insurance covered it . I want to go to China and feel an air of excitement that lots of Japanes people felt 20 or 30 years ago . After finishing the movie , I went for a cofe with frinds . In Sturday , I got up late becouse I do n't have a class . Also , I had a prakfast and I read newspaper . After that , I went shopping with my brother and I bought some colther . I was hoppy . My supervisor told me ' you should finisht your work tonight ! `` but that work 's deadline is still four days away . ? I think that this is excellent in the overdrive pedal that can be boght in this price range . Some of our friends are comming with us . Now I have a daugter , she is 3 months old . When I lived in Japan , I was a volunteer staff and sometimes tecnical staff in a child - care center . So , I got information from a comunity college . My baby sometimes needs momy ( = me ) , so my study speed is very slow . Maybe this entrie is a bit long , so I am going to finish it for today . I signed the contruct to buy my home : ) It will be 4LDK ( four rooms and one living room , dining room and kichin ) and will be 2 floors . I talke to a girl from Beijing , China yesterday . A lot of people like to stay in air - conditiom places . Unlike forigners , people like to go the beach , picnics or outdoor actititice . It could made her skin get tanner , so she always sput on a coat in the daytime , as well as putting on sunglasses , and rubbing suncreen on her skin . She is very crazy . First of all , I will tell you about my opinion , if we want to be a good boss , I think we have to controll our company very well , be fair , and kind . If we ca n't controll our company , we ca n't deal with some people or companies , and the workers will not believe in you . Also , most of the workers will disagree about our command because if we do n't controll our company , they will not know about our authoritary . If we are doing everythind unfairly , I am sure all of the workers will hate us . Suddenry I noticed what a good hasband I am ! ! Until now I 'm interested in it , but havd no time to start a facebook . I 've heard that the Singaporeans are nocturnal , because the coutnry is near the equator . Therefore / That 's why they do nothing in the day time , and usually start moving after ( the ) sunset . I wnat to buy it . The J3 has many good funtion . Such as an inner speaker , 8GB of meomry , AMOLED Display , long play time etc . I am satisfied by its performance and desgin It takes more than 3 houes . Altough I tried to ask my teacher to correct my composition , he looks so busy . There is a real atmosphere of liveness at the shop where buyers and sellers haggle . I often experienced that . altough I had decided to cook a meat dish for supper , when I went to the market , energetic cries of the clerk from the fish store made me find myself buying some fish . This is my secound journal entry . Today I hadan English test . It was a 150 word essay . Iwas thefirst to finsh in my class but I made many mistakes . I am nighteen years old . + nain - tiin + Maybe you feel really happy one moment ; you think you are the luckiest person in the world . But , very soon , maybe one day later or 1 hour later , you feel upset ; you think youself are nothing . The Divelopment of Science and Technology I will show you a queation , and I will try to answer it in various ways . One difference , I think , is in the divelopment of science and technology , especially that of PCs and mobile phones . First and foremost , soldiars must put military gear on in order to beguile the foes . Besides , puting togather plenty of grenadesfor bombardmentis amust . Meanwhile , others set snares at the behast of the marshal . It 's interesting to know that Dazai declaired himself to be the Japanese Baudelaire . So I always do n't know wheather my writings ( or ) entries are right or wrong . Ultimateley . . It is so dificult , because I have not studied English in 3 years . Two weeks from now I 'm going to Milano , and I 'm going to see `` The Last Supper `` . Before I visiti Italy I want to be able to speak Italian a little . If the eye consists of contrastive colors like brown and white like us , well at least for Asisans , your eyeball movement is easy to be noticed . Is the dorama famous ? Surprisely , the hair - stylist today seems to have done a good job , maybe he is in my mind ! I love horse rase . She is a very storong horse and she is very cute ! However there are desventages , for example , if you spend a lot of time on the Internet it is dangerous . I do n't think that books have any desventage . On balance I think that both inventions are good but the Internet has got more adventages . I especially love soccoer . I am a member of a soccer team & nbsp ; in the & nbsp ; Future Univercity in Hakodate . I am popular in the soccer sircle . So , immediatelly wake up by yourslef , do morning exercises , eat enough food and you 'll be ready for every great day and be able to move mountains ! helo everyone . . . I am an Indonesian . I want to learn japanesse . Nowadays I am gradualy finding out . is rly bad especially writing T _ T I 'm trying to speak english and listenning to english everyday . it 's a big plobrem for me ! The tytle was `` Science Allergy `` I must improve my Japnese ability as well as English . As far as I know , H & M has only started selling thier products in Japan since 2008 and they have only a few stores around Tokyo . I woulld like to make many friends on Lang - 8 . I finished five graphics and one gaphic is being painted now . I 'm wating for you ! We , Asians , performed a play , to tell you the truth , I really did n't performe . It 's a weird sensation , kindda ( kind of ) like look at myself through someone else 's eyes . My mejour is economics . BTW I ate a pizza at Sbarro in Shibuya which opened last mounth . Nowdays , I 've been thinking about this . When I meet someone from another contry , I want to know some expressions for asking new words and phrases in their languages . This time we students were talking about monitering the employees . To my great sorprise a lot of students do not think carefully before doing it ! Anyway , I recomend you to watch this movie ! She is going to play the trombone in Tokyo Disneyland as a one of members of the elementary school blass band in Oct . I always study English while drinking a cup of coffee untill my teacher comes . Our factory has a lot of free tims . It 's a challange to explain love with ( or : through ) science . I attnded a Techono Buddha , which is an event to make relationship through some workshops between temple members who are yong people ( 21 - 39 ) , yestrday and today . And one of them was very weired ! ! However , I chould n't carry tha ball very well , so it took a long time to carry . I hope I could play the weired game very well next time . So I chosed unexpensive but fairly strong ones . We ate itarian food for lunch . And I want to know the American calture . It was quite a peculia reaction among many people in the cafeteria . I will do battle with mosqute all this summer season Actuarely , the machine that had troubles last week is woking without trouble . By the end of Nowrooz children can buy something for themslves with thier money which they took from their ralatives and parents . Anyway , I usually start a new day by writting in my diary about daily life . I was supposed to bring these clothings when I moved to Chicago , but I ca n't find them in my house . My favoriate videos to watch are the American TV proglam . But in fact , with the fashion spreading throuth our country , the person in question was making a humble apology without a different look . Being paticular about their dress may not be bad , but , I think , umpleasant appearances should be avoided . beatiful dentist Since I live in forign country without my mom , I have to cook . I can succeed at living alond and studying . First dialy First , I will write a weekly dialy . I 'm gon to writing my diary here on Lang - 8 starting today . I am biginner . First , I will introduce to you TAIYOU NO UTA , a Japanese movie released in 2006 . I first watched Taiyou no Uta in 2006 . I think it is a good movie and I recommend you to watch it . The actress is Japanese qute girl YUI , her main occupation is as a singer and she is one of the most famous girls in Japan now . You can hear her music in this movie . However I have n't dicided where yet . I 'm interested in NY because I 'd like to visit the Appolo theater , which is known for being the Mecca for Black Music , and I 'm big fan of BM . I like google . . and the sence of this website looks like it . . . . It 's a no - brainer that the bear effortlessly defeated Takeru Kobayash . Acutually I bought the ravioli , so I just made white sauce for it . If they attend Siggrah , they have to study , so they are reluctant to go . I saw a movie called Harry poter . Simons desciribed all of this very precisely . It 's realy horrific what these people must have survived . I like books that describe stories like this bacaous I can learn something about a time when I did n't live but thanks to this world I can see what it actually looks like . Today was the last day at school and I received a certifate . They are famous in Osaka , which I am originaly from . There 's ony one whole day left . However , I have strong likes and dielikes about food . However , I do n't have an I - phone or andoroyd phone . To most of us , friends are the parners , who are valuable to trust in . It is said that please forget me when you are living in happyness , please recall me when you feel sad and painful my friend . She said the different amount was finacial charge that was sent each month then dissolved later , so I ignored it . and followed the amount on the paper statment Now I relieved , but I still do n't understand why the department would make such unneccessary procedures to make people nervous . I do n't know manymany words . mechanical : I respect someone eho has mechanical knouledge because I hardly have any . It setles down my mind . I am lelieved . A gas exposion happened during the culture festival in Toyonan high school in Tokyo two days ago . So it burst and a gas exposion happened . First , I must work hard to ern more money than last month . We can make original plates by kneaging clay . - doing away with oversized trush I rode some atractions such as the Spiderman , the Back to the future , the Jaws . I am going to sleep on the sofa , do n't need cook , go on the internet until late , buy a big cake , talknig on the phone for a long time , , , , . In the groupe , I 'm an English teacher . I invited my English groupe members . But , my plan did n't really work out , due to an unavoid reason . Furthermore , I do n't think my Enlish is good enough for a working environment . And then , I suddenly found I forgot to attach an important E - mail sent to my boss yesterday ( I mean the E - mai does n't have the attachment which should be attached . ) . I have never been a gir who likes to smile very much . ( There 're two types of Zorb , one is that you can grab the hundles inside the compartment or you 're fixed with your arms and feet and there 's no water , and the other , `` hydro zorb `` , is that there 's three or four buckets of water in the compartment . My second adventure was bungy jumping . But they allowed me to stop at the bungy spot and watched me jump . This is the bungy jump in the same place I visited : ( This man is not me , either ) However , I like , potate dishes , spicy dishes and steak . I am sufferig from lower back pain lately . I went to see a doctor and have a body massage almost every day but it was not gettig better . so he has to realign my backborn in the rigtht direction . Right now , It 's 23 : 10 o ' clock in TOYKO JAPAN rigth ? I can made friends who are in Califolnia USA and from the UK I 've just registered for an acount and wanted to leave something for my first log in . Today , my writting teacher told me some reeeaaaaally funny jokes , eh . . . Cantonese : movice & Language These Canonese movies we see on cable TV in Taiwan are already dubbed into Mandarin . Luckly , I got to know an interesting video from youtube which is sent by my friend today . This video has the romanization to help the novice to prounce the phrase or word . His prounciation is also very clear , so that novice can get it quickly and repeat it again and again . Yesterday , I spilled coffe on the desk and floor . I rarely splii things , no matter how busy I am . Today I am going to write na note about my background . [ 1 ] Now , y stomatch is full because I ate too much . I had a kiwi for breakfast while writing in my daiary . I ate indonesia food ! And the main character works pickking it up there . And these countriese are advanced nations . As a result , the rich and poor divide estend considerably . And I think maybe the precence of very rich people caused the presence of very cheap people . I have been studying English for a long time , but I often still make grammertical mistakes . This is my first time to wrie diary in this citesite . They defeated Qatar , Korea and Australia , so I think it is very worthful victory . The smell of pizza was really great and of _ ofcourse the taste was splendid too . Is `` puzzel `` just equal to `` confuse ? `` I 'd like to kinda , I think abuse is the appropiate word , this entry for getting and sharing tips about learning Japanese . Today , I went to see a movie with my frirends . The movie that I wached was `` Crows Zero II `` , which describes the fight between Japanese boy 's high school gangs . I can ` t understand why languges like Chinese and Japanese are so popular . There are so many hieroglyphes , I can ` t understand how people can learn it ! ! ! ! ! ^ ^ ^ Maybe because China and Japan are highly - developped countries ? ? ? Hvae a good Thanksgiving ! ! When I was a freshman at college , my English teacher coud n't speak Korean well . Ansan is one of the most polutant cities in Korea . There are so many forign workers who work for one of the many coporations which are in the complex . Now I think that it is really a shame that when I was a boy , I hated these forign people and the polluted air . If I were a reader of my composions , would I like to read them ? As long as I am writing this , I suppse that I have to ignore the bias from other people . And I do n't want to be cosidered that person who wrote those kind of subjects because I 'm suffering from it . Thus , I successed in getting out my office to go to the movie theater . Today , I 'm goig to write about yesterday . We bought many chothes . We were very lucky ! He builds bubble - nests and feeds his children until they can swim by theirself . hontou ni shinpai shicatta yo = I really worry naze kokoro wa toouku hanareteiru ? waht 's the differebt of koibito and aijin ? I always eat food carefully with my grtitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very populat in Japan . I feel like it stronly , especially when I feel insecure . For example , the times when I walk alone at night . As soon as I realized that I was beenig chased , I was grabbed by the neck . I passed out after being choked sometime . When I regained my consciousness , he was finally realesing my neck . ( I fainted for a very short time . ) Since he took off his hands , I could use my voice and so I said ' I am pregnant . ' , wishing that he would lose his sexual desire . ( of course I was n't pregnant . ) Anyway , he ran away afterwards and I could go back home safely . senkaku islands colligion event Yesterday , the video of the colligion event ( occurring ) near senkaku islands ( was ) leaked on youtube . So a bordercollie collie named ' Sky ' began to zigzag over a field . He followed Sky 's every move , so his watchfull eye missed nothing . When Sky finished the parcours , she began to bark joyfully . she 's golden - retriver , very pretty , cute , clever To be continued tomarrow . Among them are Korean - style drums and inflatible tubes that bang together to make sounds . Especially , the mational soccer cheering group so - call `` red devils `` are famous for their passionate and impressive cheering features . This team is my teacher 's team , and thier dance style is POPPIN ' . She is a woman , but I think she is tha best dancer ! ! thier dance style is HIP - HOP . I slep in late this morning . We played board geme together , `` Jenga `` and `` Zinsei game `` . im styding English and spanish I forcus on my work on weekdays . On the other hand , I want to soak my body and soul in someting diferrent to release stress caused by work . I have a mascular pain because I did sit - ups and push - ups in the gym yesterday . a questionnar to fill out . Everytime when I leave the school On my way home , I felt hunngy I ca n't feel the festive atomosphere around me . They are both caugh and sneez . Now I 'm considering apllying for a Fashion Designing Course at Central Saint Martins in London . I am a begginer fashion designer . After looking through my proposal , my tutor said ' your writing is littile bit crancky , so you need to improve your academic English , ' I checked the meaning of crancky by the dictionary I will start stdying English very hard from now on . I just started writting this diary . Some time ago , my country had `` ellections `` , I have put this word in quotes because I 'm not absolutely sure about results . Some of my friends belives that the real rating for Lukashenoko was nearer 30 % , and that the ellection was completely falsificated . On the other hand , my parents and other family members , ( my uncle and his wife ) , strongly belives that Lukashenko is our only hope . I know that Lukashenko falsificated our ellections , but I 'm completely sure that his real rating was nearer to 50 - 60 % , according to my own investigations . This morning when I woke up , I was so surprised when I found out that my clock did n't work anymore . I was late t to school which was was so embarressing . It was raining cats and dogs and the wind was so stronge too . I went to play bastkeball with my friends yesterday enening . I receieved a China Airline ground attendent first interview letter ! they tried and triend , and nerver gave up . so I need to use mass transpotation or the attendent shuttle to get to the airport . But I enjoy a feeing of relaxation and also there are many field for vegetable and rice paddy in neighborhood . The highest temprature is 23 degrees . New students and their perents took pictures in front of the cherry trees . I am a Ubiversity student . By the way , I have been inerested in Spanish since before I entered high school . It 's nice , because it was made so that we can larn Spanish for 30 days ! But I do n't belieave it , because I can not speak English very well even though I have studied it for long timeX ( Then she answerd that yes , I am a sleeper woman . She is comming next Summer to learn / study Japanese . For example , Micheal Jackson appeared in my dream last week and my house was broken into by a kind of stolker 2 days ago . I still remenber that it was really funny , but that 's all I can remenber . The book so much influensed me so much that I have decided that I want to change my life too . We should n't lable it right or wrong , but explore it in depth . I want to improve my English writting and grammar . There was a teribble typhoon . But even it is difficurt for most Japanese to take more 7 days horiday . My neck , shoulder and back hurt then and I 've gone to the hospiatl four times a week since then . I want you to pick up this twitte . Becouse they left the station while in these days . . . I ca n't understand how these two sentences are diffrent . I joined the workshop of Hippo activitie . We all read the conferece 's contents of Miss Suzanne about multilingual acquisition . This is the first time I know there is such a interestig webside , and I am a chinese student . And they 're my favorit . I saw `` Billy Elliot `` last Thuseday ! Sometimes I could n't understand the pronounciation . Hello everyone , I 'm a new member of the lang - 8 community . I find this site interesting because not only can I learn English , but I can also learn Korean or Japanse . I 'm a student of Nanjing University China , my English is not good eventhough I have been studying for 3 years . I 'm working at a cafe which is named `` Saru - cafe `` ( meaning `` monky - cafe `` ) . But we have to work very hard because this shop was just opened 1 month ago , so we can not give this shop a bad image . You know wahat I mean ? My breakfast was bread and a cup of coffe . Set the glowing stick in an incense burner , flower ot , or other nonflammable , heat - resistant container . Bigining to write blogs ! ! I 'm realy happy but I 'm still . . . This morning , my teacher told us about her daugter , it made me cry . It is a very exciting , srilling , and heartful movie ! My name is Juncihi . My best friend let me know abou it through his way to communicate with people . I had been with people who make others feel exausted with those sarcastic remarks until I met him . I do n't mean only through relatinoships between a man and a woman . Being sencere anytime is the most important thing for me now . recentily . I heard the second tyhoon is hitting today . I wonder if we maight / will have many tyhoon this summer . Study listening , speaking , and writing for 30minutes every day using the English - learning magzine `` Studio Classroom `` to improve my English This custom seems to originat from the custom during the Heian period ( about 1200 years ago ) , where the nobility in the imperial court changed their clothes on this day . However , if I pass the exam , there is a big problem there : finding employment . ordinaly , employments for new graduates are held in a period that I am in a foreign country . I had a fever at midnoght last Wednesday . Now I 'm trying to dictate what you said though , somtimes I notice that I do not understand . I should have concentraded more in our class ; - ( I was congraturated on passing the KAIST graduate school . I 'm guessing his unsymmetry hair style will come into fashion soon ! the visiting lasted only five days , but it was still meaningfull to me . Tomrrow my vacation begins . Korea ( acutually not just S . I do n't like that Koreans get their political education about Dokdo from their childfood brainwashing . A weired Trip I really did n't enjoy this trip , it was weired . I stepped on the blake and stopped . He works in Taiyou no ra - men ( = ) ( noodol ) . He is very poerfuol ( ? ) man . Cigarrets are very easy to be addicted to and difficult to stop . I ofen bought real milk when I lived in Japan . The May Day vacation is from tommow to May 4th . I 've prepared the travel for us such as searching for good restaurants , buying tickets for the aqarium ( which is the largest aquarium in Australia and is near my flat ! ) and so on . Resisting immidiate instinct can help improve my future . I like Argentina very much because they have a lot of stars and they can show us spectacular tecniques and I cheered them on in World Cup 2010 . However , I am Japanese so I definetly cheered on the Japanse team . No . 2 , some cruel commanders or politicians appear in each work , and they definitely order heroes or heroines to do curel and almost impossible missions . When I was littile , I watched the Gundam series as well , but even women and young boys easily die in each work , so I still remember , I finally stopped watching halfway because of depression lol . If I become able to speak Englsih , I want to watch movies in English . I want to make friends speaking English . I want to go to a foreign country and I want to know their culture and eat taditional foods of that country . From then on , I often litstened to American hip hop . The university in Tokyo / Tokyo University is one of the most famaous colleges , and most of my friends are very good at English . So plese let me know if there is any incorrect grammar or simplistic descriptions . One night in the hotel during a bisiness trip I spent one night in a hotel in Fukushima for a bisiness trip which was far away from Kyoto . I carefully chose a hotel at this time in oder to have a good weekend . Absolutly not ! I spent to a lot of time studying grammer , but I forgot so many things . I am 18 yeaes old . I aiways go to University by train . As you know , Easter is a Christan and Jewish holiday . We celebrate the death and resurrection of Christ , while Jews celebrate the Hebrew exodus from Egipt . In order to save money I decided to asked to my parents to receive some books I wanted to read for so long ( I 'm also a little chubby , thats why I would rather readind a book than eat chocolate . . . ) : D Yesterday I bought them . I live in the USA and I love the English languaje . Who can hlep me ! ! Also , I want to make many friends from foreingn countries . I have to perform a presentation about us diplomacy and write a paper about the same thema . A fall of seasonal snow gives promise of a fruitable year . I am determined to try to write shorter passeges from now on . The resalt of my medical check up , is that my stomach had no problems . Wish is most commonly used in hypothetical stuations . So , you shoule keep a balance between work and recreation . At work , every day you can spend at least 15 mintes keeping a detailed diary of what taske you do and how long you spend on them . It is widely known that there are parents who are addicted to gambling and neglect thier children . I hope the Japanese goverment draws up more stringent laws against gambling . I 'm a begginer . Bcause I 'm afraid I 'll open a packege of Karigane Kuki Cha , I looked around several shops , but I was n't looking for anything in paticular . Thier talk is so funny . It is a very convinience cooking tool . The course cost was onry 500 hundred yen . some intersting things . Learnning English alone is already hard for me . It is my favorite item of clothing ! So I 'm very sad . . . . Two small rice balls , an omelet , two steamed meat dumplings , boiled broccoli and tomatoes . I answerd my boss I 'm your `` right elbow `` or rather `` right arm `` . Now I am happy to be with my family , and close freinds These sleds were my birthday persent from my parents . Today , the werther is rainny . . I ca n't understand how the werther turned so quickly . I think that the diary mabey have much mistakes . so I decided to pracice a lot of English in a variety of ways . Today I learnt something very dispointing in the news . Corrently , I 'm a senior in my university , and my major is Contemporary Culture ( like Cultural Anthropology ) . My english is like a child 's , so I will just describy my day a little . The promoters are not associated with the govermant or any national organizaton . They are just private space enthusiasts . ( suggestion ) Recently , I ve been training for a full marathon of 42 km . because all of the whole sentenses are ( in the ) past tense . Do you know `` INUYASYA `` , a Japanese anime ? A long time ago , there was a half daemon , half person , named `` Inuyasya `` , and a priestess ; who loved each other . But they were trapped by a strong daemon and the priestess was forced to seal up Inuyasya . They started a journey together to defeat the strong daemon who made the priestess seal Inuyasya . Maybe it will help me to make a lot friends and to improve my English writting . I live in Hokkaido , Japan . It 's a norhen island of Japan . I 'm intereted in traveling abroad . I 've had great experince in these countries . Though my English is n't good , I think I would like to make frieds ! From then , I bougt almost all of her released albums . I relly enjoyed her performance ? ? ? . Today , I attended my English class performanced by our sunny foreign teacher . There are a lot of podcasting probrams you can download free of charge . I appriciate you visiting our website ! ! I can intoroduce traditional culture . Last time , I mentioned about my undergraduated days . Actually the women 's college which I guraduated from was in Kyoto . It is a pretty historical and misterious place . I heard that Kyoto 's central city has been protected by a magic squere . But actually this magic squere is used to hold monsters in . someone beetles nails at Kifune - shurine . never go and see the people pounding the nails nails at Kifune - shurine . I was really jerous when I stayed at my friend 's house and saw his faimily . I feel like I wana be one of them insted of going back to my country , Japan . There is nothing I want to own asside from a true family , unlike mine . My parents sent me a pearl neckless and earrings . Welcom to Lijiang ! I alived Canada in april . Other information says that children who have imaginary friends may have advantages in terms of language ability and other inteligent functions ( abilities ) . There are many restaurants called Carenderia in Philippines . I LOVE CARENDERIA . They were about her name , age , what her favorite animal is , and so on . I suppose that this is a defficult problem . I found out there 's a twitter account for Toasmasters International , for the members of Toastmasters . In this sentence . `` I 'm sitting behind my work desk and enjoyingthe beautifull weather outside . `` I think , that I ca n't say `` enjoying `` , because its present continuous . Maybe I hav n't had enough patience . Broadcasting companies are providing their TV programs through the Interent . It will be an important year for me at the meanig of exchanging my life . Someone hlep me ! I was immpressed with the fellow phrase written about Google co . I ca n't understand any of the news broadcated on CNN . If I did n't hear about this method , I wouldn n't have But my writing and speaking skills are under - developping . I hope Lang - 8 helps me get some chances to improve at wrinting . Fisrst , I 'm going to vote and then enjoy strolling along the banks of Sumida river . It will be lovly Sunday . chiristmas vacation period When last I heard their sooyhing chime . Within the tomb niw darkly dweels , That tuneful peal will still rinf on ; wowo ! `` Death note `` is so wonderful ! And it will be two posts : english and japanise ( because I should learn both of them ) . But in septenber , I will go on a trip to Hakone with my girlfriend , Fujiko . With it , I can talk to my calleagues and clients and send e - mail . I learned about this website from a friend . I decided that it 's a great oportunity to test my English skills , while at the same time helping others who need to improve their Chinese . But it 's too difficulut ! If you click the adress above , you can see a pregnant woman posing for a nude photo . If your wife were pregnat , would you like her to pose for a nude photo ? If you were pregnat , would you like to pose for a nude photo ? I feel it is embarrassing for me but if my wife realy wants to do that , I will not oppose her . In April , I have to work like a dog because of the settlement of acounting for the fiscal year of 2010 . But peole will remember me deeply . I rethink my curret problem . Another friend said that she was too lazy to do her homework and mentioned that she can wait to do it tomorow because she can turn it in on friday hei hei . The last friend I was talking to is from japen . She is really nice , too . She is polite and when I chat with her I feel warm inside . However , it 's a good thing for Japanese travelers and a bad thing for foreigners who travel to Japan . Cheerly ! ! ! After reading this article - - - What Life Means to Me , I learned more this great American writer and I really admire his bravery , perseverance and deligence . Although he finally found out the upper - class is not as good as he imagined before and then he decided to go back to his spirital paradise ; however , he still achieved it . He is another good example of ' ' once you believe it , you will achieve it . ' ' He taught me people should persuit the truth and what they want deep in their hearts . After several times of failures , he began a frantic pursuit of knowledge to brcome a brain ? merchant and then he finally made it . Bran merchant ? He read a lot and wrote a lot ; he really was a deligent writer . I have no exact answer now , but I will try my best to be brave , to be persistent , to be deligent and to live my life . I was the yougest then all of us , but I could n't play well . First writting She will go aborder to continue her studies . But I was verry satisfied with the bloom and after about an houre I returned to my house . I wonder if I 've got some iillness . Rescently I really want to have macalon . ( macalon ? ) Both street are lined with department stores , high - class boutiques , galleries , theators , and many other trendsetting shops . C : Is there a life lesson themself somehow ? I lost her strength and cheerfuness a long tme ago . And I was somewhat ashamed that I never cared much for anime , because I thougt anime was something that only children and geeks watch . But from now on , I need only 20 minutes by bycicle ( to my knowledge bicycle wo n't be crowded ) . Hobbies and inlterests But nawadays there are many ways to thank mom . I had to do a lot of laundaries , to make 3 bid meals , to clean up in wide rooms . I faile the interview . . . Two men were waiting for me , and the messager was there ( too ) . I forgot to writng a daiary yesterday . So , I am going to write a daiary about a thing that I did yesterday . The less I had was for fourty five minutes . I have a question about an English expresstion I heard yesterday , which has nothing to do with YOGA , I would like a neitive English speaker to answer this . My question is : what is the defference between `` I know her . `` and `` I know of her . `` Anyway , I think I will have to stop thinkin about it and concentrate in order to get at least 580 points . This will be the 1st time I take this examn , but hopefully , I will pass it = ) Fingers crossed ! I could try activities that are imposible in usual days . Playing golf in an uncrowded cource . I had a lot of time to think about myself and my life , famly and job . One week has passed since the greate earthquake . I learned this word , Itchy and Scratcy , from The Simptons ! But because of I wanna create somethin new , 2 years ago , I watched the `` Club World Cup `` filals at Yokohama . Writting a diary with English is not easy for me , But I 'll try it enjoybly . I have thought about systems engineering , But the thought of staring at a screan and staying behind a desk is unbearable for me . I think it was anemia or an epilepsy attack . There are two guys who came to the company 3 weeks earier than me , and we are a team that came to China together . As if by magic , even though I was gloomy and depleased , I became happy after changing my hair . The air is dry in Jpanese winter , and even worse , Japanese people use a sticky nylon towel when washing their bodies . Do you like cofee shops ? Today I went there witm my friend . We do n't have mamy tall buildings and it 's not always crowded . I 'm in my last year of colleage . What schould I do ? I like `` pasta Arabiata `` and `` pasta Carbonara `` . If she writes 1 script , she gets paid 50 milions won . I do n't think there is no value in enjoing friends . Could you tell me the best place to vist in LA ? These days I have plety of work . When I was an elementary school student , I was subjected to burrying at school . One day I listened to tis song on a radio program . I think , a yaer ago , had felt like quitting . I was sleeeping until just now though . . . I plaied Frisbee , ball and hide - and - go - seek with Rin in the backyard . When I called my mother , I pushed my patienced to the limit , but I broke down & cried at last . . . My mother just listend to me kvetch & and encouraged me . Acutually , I met her last month in Vancouver . Fortunately , my family and friends encourage me all the time , so I can get up the courage to find a new job , conuously submitting resume , attending interview . I went squba diving in WAKAYAMA . I got lectured about a license for squba diving including how to use a camera under the sea , how to explore the sunken ship and how to dive deeper . Russina animation It 's a coludy Tuesday morning . The door of the classroom was locked though , maybe because a group of studnets were presenting . Public speeking Tonight , I attended a public speeking club meeting last winter . I think that Communication is the most important skill for living in sciety . Many kinds of people are enrollmenting in the club . It is like a bussiness people , college students , foreign residents , retired people , and house wives , , , , , , , ( but I will not be brackberry or Mac pc user . patience was stronger thatn the tiger 's . Tokyo tower is a simbol of Tokyo , the light was turned off since the earthquake . The strikken area is very hard to live in . There is no Water , no electricity , no gus and no food . Okey ! Good night and thnks for reading : ) Today I had a enjoyful class . With abundant experience in clamping down smuggling , he shared some practical techniques like how to recongnize a fake LV bag , and distinguish shoddy China mushrooms outwardly . It destroied many things , buildings , houses , and so many peoples ' lives . At that time , I dind n't know how awful it was . and at the same time , I saw japanese people have great , respectable manners evn if they are facing a crisis . actualy , I do n't know how the Japanese have grown our great manners , but there is one thing I 'm sure of . I will go to a dermatological dostor near my home . Boogie pop unknow This the latest in this seriez . I have a lot of problems to solve at work which happend one after another . I am very glad to be here for two reasons : I can find many friends here , and I can improve my English wiriting ability . They were photos of thier graduation ceremony . Thank you for reading my compotision . When she first saw the present , she slapped and kicked me many times in fron of our common firends . Aiso I did n't know why stress , intonation and rhythm are so important . I just perchased one book and went home . I will cherich relationships with students no matter what . I think that If I can speak in other lenguages I can find a good job more easily than if I only know how to speak Spanish . First day I met new people in the student 's residence , a lot of people came from other nations such as Brazil , Corea , Turkey , Germany , France . . . fter a long contemplating , I have decided to do a short business course at an institute in town , starting on Monday . university cooperatives in the south asia resion . Nice to meet you , everyboday ! English converstations . First , I really would love to go to the Sarvadol Dalli museum because I 'm a big fan of his . But the attemp by the government to prevent terrorism before it happens may possibly infringe our freedom of thought . Futhermore , if we allow the government to monitor our private life , we may not be able to trust our goverment under the strong surveilance . At New Year 's Eve many of japanese preparate for a good New year . By the day we preparate a new year 's dish , clean the general house and write new year 's postcards . I 'm studying english and germany . I wanna go stydy abroad . This month , Haruki Murakami , one of the most famous Japanese contemporary novelist , published his new work `` 1Q84 `` and , as I anticipated , the book caused a huge sansation . I belive so . At first , we watched the DIU proglam . The peron to be happy are you and I ! I think , photo can say more than senteces and can tel something which it ca n't explain with words . I wish everyone a merry chrismas . I 'm wondering how to feed it ; if it could be hached ; can someone tell me how to keep a gecko ? In severe cases , hypotension , dyspnea , loss of consciousness , cyanosis cuould be observed . The time jist flies . I am from Taiwan . Has anyone heard of this coutry ? I am glad that I found this intresting website . There is a cutom to eat sushi rolls on that day . There are many things to see such as misterious stones , ancient tombs , very old temples , and very old shrines . The first picture is the ancient tomb of Umako Sogano who was the strongest ministor in Japan at that time . The second one is a misterious stone . So they work a littile and , after work , some of them study for pursuing their future career , and others just enjoy their hobby . At the end of April , I came to Hawaii to transfer to a universty in September . So , I hope my writting gets better through Lang - 8 and I make a lot of friends around the world . I 'm a japanease girl and a student . 4 papurika The taste was OK and I think it is healthy and good for diet , because of not unusing oil . Last week I bought / purchased a personer computer . I saved money for almost a year in order to buy a new personer computer . It was my frist experience . According to statistics , if this expiriment goes on , the most beautiful woman in Italy would occur after twelve times . So I went to the supermarket this mornig . That 's why I 'm studying Alabic . I hope I am gon to get better soon . The teacher showed many pictuers of the park near the school , such as `` adumaya ( ramada ) `` and `` hujidana ( a wisteria trellis ) `` and anwsered how they are used . For exemple , there is a large park near his house . The teacer asked `` Why is there a trashcan ( or , gabage bin ) in the park ? `` `` To put my gabage in it , `` someone answerd and everyone nodded . Of course , I could n't answer the qwestion either . `` You put gabage in the trashcan , in order to prevent blind people from stumbling and falling . `` The class was valuable not only to studens , but parents like myself . I heard that there is a very big bueger in Lotteria . It is a famouse fast food chain in Japan or Korea . But I 'm little nervours becouse of my communication skill in English . My friend who runs his own design company asked me to make project manegiment of the fashion brand project . Nowadays it is said that global warming is alredy happened . Recently I met various scinentist to asked about it . Many scientists lie to get reserch 's money or I am thinking what shold I do to save our children Why does it sound sophicticated if I put everything I want to say into words in Japanese ? I thought . What shoud I write at Lang - 8 ? First step in the lirning English First step in the lirning English and I hope this internet service can help me in this interesting subject This will be my first trip after I got my job , and every month I 'm putting a lot of moeny in the bank . I want to say `` thank you `` to my lang - 8 frends . Thanks for your help ! ! ! One day , he found a mouse in his appartment . I desided this year will be different , so I 'll try to take the TOEIC test . The trainning lasted from Tuesday to Thursday . How becautiful the sky was ! It 's awlful . Another thing is that my friend and I were in the middle and high school studentmates , but we have n't been together for 6 years , before I came back to Qingdao . I 've wathed ' Samanta Who ' . her hourse ' I hope someday I can watch all english programs on TV without subtitles and rewinding . The bad quality is cheaper but I think it 's not always the right choise . She made two differnt types of salad and then cooked some very tasty spaghetti . I got to know her through my teacher , who teaches tea ceremonoy . Fornunatery , I have several friends in their 60s . When I went through a path to the Teaching Building and I saw a beautiful scener . Anyway our school have this scener everyday during the winter . Even though I can read and listen to enlish , it is difficult to write in English . Listening to Enlish is easier than speaking it . I went for a lunch with my collegue at chinise restaurant near of my office . It is my first dialy . it 's not acceptable , so I told myself to score 730 or more on the next TOEIC test in the end of Decenber . Although I only have about 4 months which I can use to increse my score , I think it 's a good chance to improve my English effectively . It is a prevailing sport which spreads in evey corner in China to the point that we call it a national ball game ! I can get a sense of chievement in this process . That includes shaping their nail , removing cuticles , manicuring , reparing nails , and nail art . At about 9 : 30am , my homestay mate and I went to my classmate 's flat beacuse we there was a christmas party . There were about 14 people from the same school but from different countries so we spoke in English . I think the party was good for us . At today 's party we prepared a lot of food . Sakiko tought me how to make muffins and she also made a pizza . Other people brought wine and juice . We chatted a lot . Today was a very good day . Today , I taught how to apply makeup to a younger menber of my club . Furthermore , _ I was praisd for my posture at a career fair . Since I went to senior high school , I have been crazy playing basketball and paied much attention to the NBA stars , such as Michael Jordan , Kobe and so on . I heard from my friends who said `` granvill iland was fun ! `` So I went to granvill iland today . Thank you very much for & nbsp ; correcting my sentences , I really apriciate everyone 's help . I think we still feel the cold on the surfice of our face . . When most japanese people speak to someone who is older or they have met for the first time , they usally use the honorific . As you konw , there is no way to know the answer and nobody can tell the truth . But as far as I can see , most Japanese people are scared of hakers . First Dialy See you next dialy ! ! ! ! I need to solve a lot of matematic questions and find time to study to the others subjects . The farmers could get no cleart explanation about their animals and it 's very unfortunate . This is my second time writting a dailry in English , which is very scary and annoying to make mistakes . I want to improve my English . Recently , more children like to eat fast food because they find it delicion . Although , fast food is very tasty , we can not often eat it because it is unhealthy for the body and causes conditions such as : obesity and high blood presure . I went to Gotenba Outolet mall with my friend yesterday . You need to do a lot of training with sking on powder snow if you want to reach the same level as you can with a snowboard . The Fukushima nuclear power plant had suppliesed the city of Tokyo with ekectricity . To learn about her character , I tried to see a interviw on YouTube about her but I could not understand it . The next day , I felt sick and knew I had a faver . Do n't go to a hospital or crinic directly . Second , If you are diagnosied as infected , stay home for 10 days at least . `` Doc , I know I 'm OK , but I have to see a doctor under company reguration . They 're a waste of test kits and Tamiful . Would you prefer that I send them by e - mail or convencional mail ? This is first time I 've had to write in my jourmal since my son 's two week spring holiday began on March 20 . If possibe , I want to study abroad so I hope you guys will help me have good writing skills . I had saw the foreigner who imitate DRAGONBALLs charaster Gokuu . I was glad about the foreigner who was completery absorbed in Japanese culture ! I was tierd . Also drinking and eating under the cehrry blossoms . I think most of the people went away to enjoy a vacance . So , I am rilaxing now . It was slightlt rude of him , was n't him ? Hope everyone can give me some sugges to improve my English . I just pretend to be happy , cheerful , and positive becuase I do n't want to reveal my real pesonality to them and make the mood unhappy . Anyways , many friends misunderstand me because of what I show to them . So , I just want to say to them that the things outwardly shown to you are not everyting . Do n't be obesessed with a bad side . I 'm dipressed with only one bad thing happened to me . I 'll be moving on Octorbor 24th . I 'd like not to watch some TV progeam but . . . In the afrernoon , I went to class and my teacher was so angry at my classmates for being so naughty . I told my teacher that her face was so perfect , especailly her smile . First of all , the developed city in Malaysia is metropolitian Kuala Lumpur . You can find a lot of churches , temples , mosqhes and Indian temples . Malacca is a historical place which was colonised by the Portugis . It is a very cool and humid place where the temperature can be as low as 17 degrees celcius . And the theme park is facinating with its rller coaster . the standardizaion of wages . Howvery , it is very difficult for me , because January is Due to the fact that thier faddiness , I was kinda worried about us going to that resturant becuase what they carry is very Japanese like I mentioned at the beginning ! So , I want to ask you how I shold deal with it . Recentlly , they have appeared in dramas , movies and on the radio . They fought for it , and a very skillful bird caught one piece in air . I know he 's only liked in France and Poland but serioulsy , he was a great man . A good friend for me is someone who realzes my hard or happy mind . They surve very super strong coffee . And thanks to the caffein , I could n't fall asleep till 2 a . m . I want to buy a fulte or a piccolo . That is for the French horn ( with th piano ) . Last year , I arrenged this song and played it with my fellow friends at a & nbsp ; concert . I 've choiced a healthy lifestyle , which consists of early and fully sleep , and yoga and slow running . She nodded and said , `` I want some pinapple . `` There are people at the conference who have good ideas for society in thier mind and they can explain these ideas to everyone in English . I guess they would need to good mind be smart , good at public speaking , knowledges , and have some experience in the field for their presentation to be good . Hi Justin , I 'm your beggest fan Kate Min . I 'll going to watch the mouie in April , and if you come to our country I really am going to your concert . We grilled pork libs and shellfish . I ddi n't say a word . My friends colled me , but I was getting ready for an examine . About one year ago , I enterd the university . I do n't like the `` TUYU `` because we do n't enjoy playing outdoors . Besides , to my surpraise , my friend also had her hair cut ( looks like me ! ! ) yesterday : ) I have learned that what is important for a culture to have vrious aliases . Regarding my rencent situation , for a long time , about 6 months , it feels like nothing of value has happened to me . I am a lucy boy with so many good people around me , are n't I ? BDI , the most important figure for maritime econemy , has fallen down more than 90 % . Naoto Kan , the Japanese Prime Minister regined yesterday . Banri Kaieda candidater for the next Prime Minister election , so some people say that the next Prime Minister will be Mr . The population reserch result showed that Mr . He can speak some japenese words . get him intersted in Korean language ? There is somthing haunting ( in ) my mind . Some pest control staff came in and began the slaughtering this afterroom . Pepole say , winter is the season in which people put on weight the fastest . Do you Undertand ? What a coincidence that they both break up are not perfect with their former lovers and have the chance to get along with each other . then Finally , they find they are the ture pair . I 'm intersted in Barry Manilow 's music . There is a special excercise ( ? ) in Taiwan called fishing shrimp . They can help childern improve their language skills . Maybe because of the differences of our caluture . . . . ? ? It rained during the latter part of gorlden week . By the way , are there long holiday like gorlden week in other countries ? Today , I went cycling to keep helth . I am a littele bit stressed from my work . However I am not used to writing a dialy . I work at an insurelance company . Please see Japanese peopel 's power and cheer for Japan . Luckyy ! I suddenly rememberd a family living in Australia , that I stayed with for only 1 week , about 8 years ago . They rememberd me . But we have drifted apart because we have mooved and changed jobs . . . I think I can look for my lover among the peaople I meet ! I bought Mac eyeliner at Takasimaya . Anyway , it was really exciting when Choi Min - minsik assembled the puzzles he got step by step . At this time , I 've also become hangry and sleepy . I am practicing English for one year . I want to speak to people all around warld and make many friends ! : ) In this fair , lots of EKIBEN from all over Japan are gethered , so it was defficult to decide which ones to buy . I will share these with my hasband . As the test aims at bussiness people , the words and content are slightly slanted towards them and the field , she said . I watched the anime of Ditective Conan yesterday . Playing the guiter I like playing the guiter . I have a gut guitar and an electric guiter . So , I usually play classical music or Japanese POP songs with the electric guiter ! I think that I should play the guiter everyday , but , I only play it two or three times a week . When I watchYouTube , most people play the guiter with very nice techniques ! After much practice of playing the guiter , I 'd like to upload my video someday . . . G ' moring . I was working on my thesis which is about the communication of rock music in china . I kept the mucsic - box on playing classical music . There might be something I missed in reading this email . Do you think there is anything suspecious ? But I do n't usually do famrmwork , so I was exhausted . I never understood the correct aplication of the word : actual and / or actually . Now , I 'm a fouth - year student , my English is now clearly better than it was , but I still ca n't talk fluently , or at least without mistakes . I could finaly come to this site a few minutes ago . we met in the Phillipin , when we were on vacation . It 's fisrt time for me to go there , and I am looking forward I want to communicate wiht them by speaking Korean . So if you are single and watching this video , dont despared , hopefuly you can get a girlfriend too . G : Are you an extremily distant relatetive of his or something ? You 're here to tell bill he 's kcked off the insurance because he 's too fat ? Bill : Hey Cashy . BGF : No , Why is it so hard to belive that I 'm Bill 's girlfriend ? B : excuess me , Sir B : see honey I told you greg 's a good guy . Is n't he awsome ? G : I dont want to think about your good stuff bill ~ or your bad stuff , really any stuff , that , that involes you . It 's not pronounced like the word `` go `` . `` Go `` is pronouced shorter than `` go `` . It got popular in Japan as even Shougun were once very addictid to it . A long time ago , when I ws a student , I studied English for a university examination . It was unneccessary in my daily life and for work to speak English . So , I used to go dressed up as a cosplay ( costume play ) to the events celebrated in Madrid about comic , manganime or japanesse culture with my friends . This character is a boy , so I am going to have to do somethig to hide my breasts ! Everyone sitting around me did n't know it as well , so he was very suprised / shocked . . . : D There are rice fiels as far as the eye can see . I love all the charactor , but I especially like `` Gori `` . Hlp me + ) Her friend , Kumiko , took Mie to an Itarian restaurant last Saturday . Mie felt happy having such a good friend and family ( Of course indcleded me ) . I dislaike rain . My microwave suddenly broke when I tried to warm a cup of milk this mornig . It 's rainning today it 's a interesting mov , in the movie have . two lives to choose ? the one , ordinary life , the person goes to school and gets merried and go to work . Winning dansers performed in the TV Show . `` I was upset becaise you did n't show up yesterday `` This evening I went to the liberary to study English . The rain in those prefacture is so heavy that the evacuation order was put out by the government . And about four handred thousand Nigata peopel have been evacuated to a safe area . If Prime miniser Hatoyama does n't propose a good solution to U . They had a good sport spirit that helped them all the way long throught this compitition . Congratulations to all Egyptions ! How to slove problems like Maria ? I 'm not interested in luxuary lebels like Chanel ( although I 'm fond of fashion ! The company will searh for your ideal person . I just checked if you writted on twitter . I stopped at a departmentstore _ store , and a shopping mall on my way to her house . Both English class and Chinese class are tought by native teachers . SHOPKO is one of the biggest shopping centers in Wisconcin , which is where I live right now to study English . Therefore , I decided to buy juice at Shopko insted of from the old vending machine . Au pair is famouse in Europe , but America does n't seem like be . If anybady ( does n't care ) canto talk with me , could you help and advise me ? Today , I will talk about my opinion on culture diference . As I showed you , art festivals are stlongly related to local people and contribute to stimulate the aregional economy . Please try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs aroud you . The buildings and arts you see will refine your sencitivity . This time , I wrote and uproaded many entries on purpose . But I 'll uproad entries and keep my ( regular ) pace from now on because I 'm ( now ) satisfied with this . I was bored whith this . In China , we contect other people by using QQ , it is like MSN in foreign countries . It 's more difficult than using lang - 8 . I do n't know many speaken languages , and it is hard to use past tense , but on the other hand , it 's more effective to learn English . Aha , maybe I 'll use MSN more than QQ , haha . So , if you want to contect me , you can message me and give me your MSN address . Wow , another way to contect to people , that 's very exciting . In traditional culture , ciggerates are seen as a lubricant for personal connection . Bar and restuarants owners do n't want to offend their customers . today I starded a photoshop class . I like photoshop So I was impatiant , because I felt that I had to study English . I had to drive slow in order to stay inside my lane , becuase I went over the lines due to poor visibility . Althoug I konw my new school will have many anxious moments , and things to do , but I think I will study hard . I 've always known that I do n't know get along well with my parents Becase we do n't have much time to talk with each other . Even if you do n't know it , you are able to access more ditailed infomation easily than what I can explain I went to science world today , Because I like science and I wanted to watch the LEGO exhibision . Season 5 has 16 episodes , and one episode is alomost 45 minutes long . Actually the storyline was really myeterioius . . . I heard the final season is alredy available on DVD . I often try talking with forgine people . He said , `` Oh shit ! `` He should be more cacreful . I started having English lesston using Skype . and think in English , wrrite daily in Engish . I promised my frineds that we would perform ( ? ) in church . Our band is made of bass gutiar , acoustic gutiar , violin , piano , drums , electreecity guitar , jembe , cabasa , etc . . . . I think that if someone would help me get an English name , I would be vere happy . Thanks ! ! Some people were runnig on the beach . Tomorrow at 9 : 30am , I will be studying at my university . We have had an 8 day vacation due to the Songkran Festival . I had wanted to transfer to ICU or emergnency department three years ago . I read the Economist , an English newspares , everyday . I understand enough to hate some words that came from Franch . Today 's mannu was marbeld beef and beer ! I usually ask new students some questions before a Japanse trial lesson as below . - Make a Japanese word using Kana charancter from the keypad . I am humgry now . . . . I am happy if we do n't have snow in winter because I do n't have to clear thesnow . ( It is taugh work ) But it means the earth is getting warmer and warmer . . . . Let 's think about it togeher . . . I did n't even know what subjects I was intersted in . My reccommend drinks are loyal ( royal ? ) milk tea , green tea latte and cocoa . First of all , It helps people become freindly . Ahter sitting for a while , They played the trailers of `` New moon `` and `` Avatar `` that will be coming soon in December . It is composed of 2 sections ; one is the Listning test , and the other is the Reading test . Now I have to dicide which course I will go with . So I want to keep my dialy in Chinese . Starting today , I will go to kindergarden School to pick up my son . . We have been invited to the wedding of a chrurch member , so we planned to buy a dress for that . When we entered the Okonomiyaki restaurant , we were shown to the seat in fromt of the big window . ( shouwed to the ? ? ) We could see the Doutonbori river from there . Today , I went to Kyoto for my appintment with a doctor . But I belive I can do it . Generary speaking , a man might well think , if a woman who he proposed to eat out with is hot , that it is better for him to pay all because a hot woman who a lot of men consider to be hot might be used to being treated by other men , especially middle class men who have lots of money . It is very important to keep trying be a good speaker , like a native speaker ogof English . If you talk with poor pronunciation , that would give a lot of stess to your friends who are native speakers of English , because they have to consentlate to understand your Engish . Does everybody take two days offf during weekends ? Thus I take two days off irregulary . On the other hand , it is propably true that a lot of places are not as crowded as they are on weekends . During my break , a lot of my family members came to see me and I was realy happy about it . Black music was center of my school days and I have repected a lot of musician . Stivie Wonder , The Root , Roy Hargrove , Earth , Wind and Fire , Cypress Hill , Erykah Badu , Jill Scott , Donny Hatherway , O ` Jays , Isley Brother , Big Punisher , Xzibit , and so on . . Actually , Nowdays , I have enjoyed Latin music like salsa , tango , son , bossa nova . His rhytm is like jazz . Instead , I 'll send you a present spiritly . Hello eveybody , my name is Stefania , and I am from Colombia . I went to Colombia last year in my holidays and now I 'm studing academic English to get ready to start fundacion in July . It souns approximately like this : My family and other family members were there and meny acquaintances came . This cinversation benefited me . kotasu and orenge It is to be a pilot who operates a passebger plane . My hometown is Okinawa , which is on the most southest island in Japan . I had not been awared of this job , but as I look back on my life , that maybe has affected me . The first one is to be employed witout any license . I 'm not surprised that Japanese won the award because Japanese tend to be strong in the animation area : ) However , I think it 's not easy for foreigners to get the award and I would praize his effort . Now I understand why this website is so uesful . However , I have a big dreame . It 's verry expensive . . . , so I have to save a lot of money . Then it starts to smoke and cathces fire . When I was in Ireland , I was in TV add for sumiroff ice in 2002 . I heard from my modeling agency that there was a TV adaudition for sumiroff Ice and I was successful in the audition . I had been serching for it for along time , but I could find it . So , I gave up trrying to find it . I was at my friend 's apertment and he was watching funny TV commercials from all over the world . Then he was trying to serch for it and within 10minutes he finally found it . So I look forward to seeing her again but they were busy to go to consert soon after arrived at my house . They left for consert before I left for work . When that happens , my pronunciation sounds very weired . First reason is I ca n't come upe with next word to say quickly . But after an exercise consisting of one sentense . . I was able to understand that sentense just by hearing it . Also , I do n't ( do not ) mean I understood it because I previously knew the sentense . I will continue the challenge of speaking becouse it improves my listening ability . It was only today that I tought of this to improve my English . In order to make my calss more interesting and professional , I spent a lot of time learning about the football game before the class . Mom rase me . Mom passed away in 2001 . Our place became quet and empty . I will do my best to pasiently write a daily diary in English . I would like you to point out and give me a messeages if I have wrong sentenses . Please contuct us ! For example , France - wine , Itary - Fashion , Taipei - computers . I am so happy that my parents finlly agreed to make a cute kitten a Firsty , they do not know the correct use of mobile phones . But my mom always says , `` your mother language is not English so do n't worry if you make mistakes . `` My English class teacher is a forigner . My name is Junho and I 'm koean . and I studied english , listning , reading , and conversation . This belief was formed and reinforeced in childhood every time he thought he was expected to do better . um , , , the songs are very , very , very simmilar to each other . Group singer 's songs are very simmilar to other group singer 's songs . They should just love thier singers , and it should end there . However , they should n't go as far as to wirte letters with blood . I want to skayp with a friend . ( She opens the door ) It 's the vety , dear ! He studus Engilsh very hard . Actually , I had brought my Japanease cellphone over with me which was already connected via a Canadian telecom company with a roaming facility . Anyway I asked some cellphone stores in Southgate mall to compair terms and conditions for me . My company has meny Japanese people working there . I work as dntist 's assistant . People chase many rainbows but not all people can achive the goal of their dream . Curry puting It was `` Last Parade `` written by a / the former supervisor at Tokyo Desney Land . [ BLUE ] Maybe this book is not famous , but the cover is so beatuful . So I really felt relieved when I heard that their family survived the Tunami , though two co - workers sadly told us that their family had lost their houses . This area I live in has little risk of being affected by Tunami . Because a lot of aftershocks are still happening , and also the government announced that we still have to be careful of a big afterquake on 17th March . Plus , my work place is an old building and has gotten damage by the first eathquake . I went there 5 minites early , but the only person there was a tour guide . There are 6 girls who came from different provance , it 's very intersting . Sometimes we have a little trouble or misunderstuding , but most of the time we treat each other like sisters . What an extraordinary feat of human descovery Because it 's a basis for everyting in our lives . I read that people could not travel freely exceot for regious purposes in ancient times . A new shopping mall openned near my town . As soon as we arrived at Nara station , we went to a Kiomo shop to rent a one for the day . Recentry , many people have been visiting here . Ther adventures were met by many troubles but they never gave up . I think I 'm very sensitive to other people 's reactions , especially facial expressions , and I unconciously try to read their emotions through them . I try to smile at them becaus I usually wear a blank face except with my close friends . so if English was n't the global languguage , I probably would n't like it . Although we did n't go out a lot recentlly , we went to the beach almost every day when I was in high school . It was 40000 yen , which was actully better than I thought I would get . I hav an entrance exam the day after tomorrow . My friend said that Lady Gaga produced a purfume that has a very complex odor . I hav so many things I want . ; ( everyone , hav you bought anyhing recently ? He has a glove and some balls , so we dicided to buy a baseball bat for his birthday gift this year . With an endothermic reaction , if the temperature is increasing , the reaction will progress rapidly and the tield also will be increasing . My name is Aleksey & Im 'm in charge of my company 's website . The doctor ASCRIBEDth the man ` s death to driking too much . Melborne is a good place in Australia , I do really like to try the food from differnt countries . Specilly Thai and Vietnamese food . They taste sour and hot , ( and ) I love them . The second thing I really like to do in Melborne is going to the supermarket , That 's my life in Melborne : ) I look forword to going to Europe ! First , I saw it in English with no subttle . I always dream in former way , but one of my firend does in latter way , I heard before . hello , everyone , I 'm very excited to write my diary here . the most important thing is that I can share my experience with all of you and practice my English writting skills at the same time ! I should examine what has the most value in my mind , buisiness , interesting fields or my girlfriend . I recetly had wanted to get an MBA abroad and searched some information about it . I 'll endever to improve my grade point next year , but it 'll be difficult . I heard from my collegue that Korean children studies English speaking and listening well . Therfore , most young Koreans can speak English well . My hobby is playing tennis and travering all over Japan . The purpose of my traver is to make friends in a foreign country . Thak you for your corrections & comments everytime . Thank you for your masseges . We are ging to Tokyo . So we dicided about free activities . The picture is really nice but I ca n't show you it here becuse the picture is really big so I ca n't upload it on Lang - 8 and I have staied at home with my nepewn ( ? ) They are watching a moive while I am writing my dairy . My father just came back and I saw he bought some somthings for us . He likes to buy the sweets for my nepeaw and I hered my mum coming to my house , because I heard her motocicle / bike . My family are ( really ) nice and I felll really happy to be born into my family . February 5th is the day that her new moive ' Kitchen ' will open . Unfortunately , her acting is not impressive and it is hard to see her improvement when compared with former moive she has been in . Yeah , we could go , but even if we did , we would not be able to see very a beautilf view . . . I set up the intruments for the English language school last night . As for me , I admire Tciolkovski . Tciolkovski believed that mankind would not remain on Earth forever . We 've spent several hous walking and chatting and then went to a restaurant . Reacently , I read the ' Norwegian Wood ' wrote by Haruki Murakami . so I 'm writting using only my left hand . Why was I tring to stop the books from falling down , , , , I read about ' The Ica stiones ' on the Internet . The famer brought it from the cave he found it in , and said there were a lot of stones in the cave . I need someone who lives in Sapporo and originaly from USA . Tell me the rignt answer plz ! When you belive in that thought , what happend to you ? I want to make friends with peaple from other countries . Merry Chritmas so , a greeting of Merry Chritmas first ! But tommrow is the last day of vacation this week . My aching waistache has annoyed me for a few days now . People write about their life , what they like to do and their philosophies . They also post questions that they have , introduce themselves , share their love stories , their plans for the future , news topics , sentment about videos , etcetra . I olso give an oseibo to my relatives . Toaday was very cold . I have been waiting for it almost all schoolyear year In September I am going to start learnig French . So in my free time I read a lot about my favourite subjects - History and Geagraphy . The sistem of the plants was badly damaged . I deeply appreiciate to their actions . And , I also appreiciate the aid from other countries . And I thought this old man was thiking the same way . So the young man said ' I 'll crush you ! ' and he avanced forward with his motorbike . Fortunatelly the old man was n't hurt . Immediatelly the young man punched the old man on the head . Hello , this is my fisrt visit to this site . I 'm studing Japanese to become a Japanese teaacher . So today I visite here . There are a lot of smart and rich peole or handsome and sociable people . But hundsome and smart people are rare ! ! Dont n't laugh ! Now ( Because of that ) , I 'm worryinh about whether he 's looking at this entry . I also think that my frind gave me a chance to look at me who I am . That 's how I felt . I had ( some ) special monents there , especially the sunset at deck of Enoshima lighthouse I ca n't forget . ( word order ) Well , thanks for asking . I probablely do n't know . I mean I think I know , but I am afraid I am the one who does n't understand me . I used to think night shift is scarlly * Following sentences are qouted from the book * They have come to japan for vorious reasons , but , for whatever reason , they have chosen to live in japan . But she seems to make people happey and gives powar . It showed humansim , love , faith ? So I was really dispointed with Dr . I was not an excepiton . My home and car is covered with snow . The snowscape is beutiful . When you order food , if you say you do n't want onions in your dish the cook will think you are too particular - and we are n't really considerate of vesiterian either . When I cleaned a keybord , I found something dirty . I went out with my collegues to a curry restaurant . Questin : why the `` note `` is `` noted `` , not is `` was noted as `` ? On 4 November 1922 , Carter found the steps leading to Tuankhamun 's tomb , Questin : Why the `` lead `` is `` leading `` ? I decided to help someone leraning Japanese every time I receive a correction . Located in the middle of the Kyoto City and near the subway station , makes it really convinient . That was unbilievable . Tukizi is famous for its fish auction and there are many street stalls . We can buy raw fish , smoked fish and salt etc . Cherry blossom is not only important for theentering ceremony but we use that as the place to drink alcohl . If you come to Japan , you will see the people who drink alcohl near thecherry blossoms . I hope to make frengs with you . I appreciaate him and wonder what 's going on . Furthermore , _ I see a man behind him is tring to torture him . Theseday days , I heard that some universities accept Enken 1st grade and pre - 1st grade as proof of language proficiency . I hope to studty at ABC University as it has an excellent faculty . Also , they have the lowest persent in computer game downloads . Art students spend the most money to download music and videos , and almost 90 % of them have purchased music on the internet , which means arts students seem to be the most familier with online shopping . The Mistery of Italy `` Why do Italians worry ( so much ) about deatals ? `` But I was suprised that there were so many grafic on the walls , in the trains , Is it that way in sicilia only or everypart in Italy ? I hope to find out `` Why do Italians worry about deatals ? `` Italians are misterious / a mystery for the serious Japanese . It is now midnight and I 'm writing this diarly . Iced trees on the lidgeline were lit by the crystal clear morning sunshine . Accully we did not know yet what we would like to buy , but I know she likes to cook and read books . This is my first time logging into this intresting website . One day , her neighborhood came to her house and asked to give him the ducks . I do n't have a car , but I think it is very convinience to use a car . Big domestic companies still want people who graduated from famouse Japanese universities like Tokyo University , Waseda University or Keio University . In the market , everybody can taste some food , for example fruits or vegutable . He told me that he was afraid to be dropped from the boad and drowned because they played on it . I study Enplish hard too . Now I 'm working in an university as a resercher . Well , , many Japanese Teache use direct method by which teaching Japanese by using Japanese only in Japan . But , I think not many Japanese teachers has experienced learning a lnaguage through direct method . They said `` If other plants shutted down we could n't provide enough power . `` Today I baby - sat my two - year - old niece because my sisiter - in - law went to the beauty shop to have her hair cut . wmm . . . . It was a test where I had a coversation with foreighnor . Today 's box luch is soy - ginger pork . Hellow ! That 's why I Istudy hard . My ftiends wrote a comment about my diary ! ! By the way , what do you think would be the best way to learn lingos . I have a gift of palying music , but I have to learn another profession because of my parent 's expectations . But after this morning , there were a lot of things that happnded suddenly . I think I am an emotionness man . To be honest with you , I am going to visit Canda on Sept 24th . As you may think , Ajjusting to another culture requires so many things and time . Comparing to before , I think my English has improved , especially writting . After I come back to japan in December , I will resume writting essays here . This is my homework , I welcome anyone to corret it . There is only one reguler bus service that goes to work . When she was walking along with a wall in her house , she lost her balance and fell to the floor on her buttocks , which caused the actual compression fracrture . Beecause of it , she was hospitalized and diagnosed with bilateral iliopsoas muscle abscess . Children grow up quiqly , so now she runs with friends ! First dialy entry I have to do a lot of experiments and resarches every day so I have no time to do what I want . Last Sunday , he had work and I went to droiving school . After that , by the time he mailed me it was arleady 7pm . I have just received a letter from my friend Janadab . Thank you , Janadab . Even during my vacation , my collegues had been working and had sent me a lot of e - mails , my inbox tray was full of unread ones . Dier friends ! It was a bargein . Many things were so cheap . I heard that other countries are diffrent . And now , the deadend of my report is coming soon . . . I saw `` AVETER `` the other day . I ' m poor at English and Garman . In the show , there was a woman who brushed her teeth after eating breaksfast . I forgot to ask you some questions eariler . I do n't have any paln to take a day off so far but I want to make sure just in case . I have many frends living in shizuoka . But , I slepped in the bed and when I woked up , I did homework for cram school ! We ate lots of chikin ^ - ^ I like the landscape after rainned days . I like how it draws a smile on my face and makes me think of many thinkings ? ? ? I miss my mother and my father , university is different from hige school . I ca n't come back home often . I also miss my boyfriend . Next year he will go to amerrican to study . If the time could go backwards . I would study hard so that I could go with him . For one thing , I hope the holiday comes quickly . But I am also afriad . . . because it means that he will go away sooner . More Wanted and Less Gotton [ * 1 ] Of course , it 's not the same with everybady . After all is said and done , wouldn n't we just be primates ? I have a alot of work to do even at weekends . Yestoday I went to the library and borrowed a book about spoken English . someonw help me ! But , there is a considerble problem which is privacy . However , I think it is ok to not be checke by others I am a vterinarian . I live in Osak , Japan . I expect to enjoy studyng English . existng outside the mind ; based on facts that can be proven based on your own ideas or opinions rathar than facts and therefore sometimes unfair Ichiro , Japan 's most famous baseball player , is often said thet he is excellently skillful at analyzing himself very subjectively . it is a very modren house . In her letter , she siad if I would come to Canada , I could stay with her . I has never been to Canada , so I am very eager for my next hoilday ~ ~ ~ ~ Greek mythology , classic mythsthe , Norse mythology and Journey to the West . What I mean is , I do have enouhg time to read a book . Tonikght we 'll sleep in the tent and watch the shooting stars hoping that the sky is clear of clouds = ) . I am staving , so it 's defficult to sleep . They have done a lot to help poor peaple , like adopting many children and they have achieved so many things . They have ambitions and clear thinking in their life . Next , stretching and sinple working out . I met some students who came from America to my school and I taked with them . We walked through hallways , steps and food cort . I was really scared becouse I could n't know where I am heading ? I was warried about my son , because he went to the hospital with his mom to have a medicine of polio . But , thet pie was not delicious . I 'm staying in Dublin with my hostfamily and I have an Italian homemaite . I am writting this to ask you something . Shound I give up some tasks or put them to next day ? yuuta aka paris hiluton . Our task was complished smoothly , and I hope that I can participate in the following lab work . If I knew about this , I would have said the first one intead . Could you explane about auxiliary verbs ? in a forein hotel ! I had not droven in Australia before , so I had to be careful . All presemt day politicians should watch it . Seita is hero of this story . His father was a Japanese naval officer , so he was not at home but fighting at sea . ( I guess his father had already died in the war but his family did n't know yet . ) He lived with his mather and little sister named Setsuko . He was living in Koube which was a big city in Japan at that time . Of course the American army bombed Koube as well . When his family tried to escape from the bombing , his mather got invloved by the explosions . Also , his house was completely destroyed by the bobming . His lifeless body could be seen at the dirty and gloomy Koube station on the left screen . Many Japanese people who were in right screen completely forgot these historycal facts , and they enjoyed luxury and busy lives in a big city . I 'm really , incredibly , abusolutely tired now . Today I found a difference in the value placed on meals between American and Japanese poeple . But , my American colleagues buy sandwiches or a humberger with a drink and then eat them at their desk or at the cafe space in our office . So , they prepared samdwiched and drinks for us and we continued with the meeting while eating them . American probably think the opposit of how I feel feeling . I think we should n't think lerning a language is so easy . Finanlly my side was opened and I became free . . Since the 11th of March when the East of Japan was hit by a big earthquake and Tunami , three weeks have passed . She sed that you can contibute ; money is OK and you can do other things like go to visit to the Tohoku district some day . Do n't neglet your gums , too . I 'm studing English . I think I can run now , but it 's raining outdoors , unfortunatelly . I was going to meet with my friend at about 2 o ' clock today but my mother called . I must help her do some somthings and go somewhere . I must cancle my appointment with my friend . These days , some Asian movies are remade by horriwood . I think , for American people , the horror of Asian movies is kinda taste ( ? ) and fresh compared to that of America 's and its movies have a lot to do with diffrence of culture . In short , I got dpressed with the lack and diffrence of story of remakes of Japanese movies . Plase teach me your langeage . I heard a can of sardines was heartrier than other sardine cookings . But today I heard that sardines were hertriest when they were canned . had been sold out at stores until recentry . And could anyone tell me which is more delisious , an oiled sardine or other sardine cookings , if you know ? That was in 2007 , in April , and I studied English for 10 months in Grande Prairie wich is in the north part of Canada . I had an incredible time and really loved my expreince there . Ryo Ishikawa won the tournament by 58 stroks it 's a traditional and beautiful town though , near Ropponngi . I am so busiy these days , and I feel so tired . Because we are lacking in the learning stituation . I Ibegain learning it recently . I can only hope that I can get a great imporvement . We had a drink ( cocktail ) party with our cowokers . I could relax and comunicate with poeple who I had not talked to before . As a chinese person , at any rate , we should be happy , becouse it is being held in our country , our city that we are familiar with . The ending is not particularly clear and we have to wait the squel . I begin writing the dialy in English So , I begin writing the dialy in English ^ ^ The belated farewel party is to be held this evening . Actually , the farewel party is for a co - teacher who moved to another school last April . I was suprised and very glat that my friends sent me text mail to say happy birthday . I 'm going to study English every everyevening . every erymorning and every night , you will get beautiful skin . Appled for a passport I met my old frieds in Kyoto Staying in Kyoto is very comfortable for our family , I don ` t have to care about radiation , blackouts and aftershakes . Do you know Cryril ? He marvelously returned a dead bee embedded in a 5000 - year - old amble to life in a jade market and cooked instant noodles with cold water . We decorated with gohsts , bats , witches and more ! First , we got togeter , and then we walked around to get some candies . She is 177 centimaters tall . I 'm 160 centimaters tall . So I dicided to restart writing my diary in English . And then I went to work after luch . 16 students have caught the flu in a class where ther are 30 sudents . Unforetunaly , I have a lot of chances to touch children and get viruses . I have to protect myself , so I wash my hands and gargle evry time when I go back home . On this New Year 's Day , I 'm spending a plesant time with my parents . Finally I hope that everyone has a plesant time in this year too . Recently I happened to find that itunes has many internet radio staion channnel in its menu . Itunes ' list of is good , and almost all of the staions are now in service . So , I can hear many different music jenre . I am 22 years aold right now . I was 21 years aold 3 month ago . . Farst , I must finish my report . ( Fiton is bedding . ) I felt like I should take some picturs . Fortunately , I had a camara in my purse , so I took lots of pictures . Tpday in Korea , There was a strong typhoon . Because of their way of life they constantly need new things , but it stays pratically the same : rock , wood and so on . Nowadays , there is more and more advertizing about protecting our planet as a refresher course ( of paper and empties of anything . . . ) what ? It 's a wonderful city owening beautiful sightseeing spot and brilliant night life . I 'm 31 years old and I have been working at the same hospital for 12 yers , Therefore I worry a lot about going abroad . . . . . The Microbiology department at Tokyo University has just reported that helocobacter Pylori , which is one of the causes of gastric cancer , makes protains that camouflages human protein structure . Pylori injects `` CagA `` cartinogenic protein into cells in human body . CagA camouflages as pragumin , and then it bainds host enzymes . As a result , it induces abnormal cell dibision of host cells . The typical place is in a shurine . Leisurable evening After eating , we went to Dante Coffee , and stayed untill 9 o ' clock . After advancing to the second round , I was sure that Japan would beat Paraguay and go forward to the quaterfinal . I want my hair to be like Bradpit Pitt 's . . . . . is it impossible ? - _ - ; He said he wanted to go to `` Yakushima ( in Kagosima ) `` My parents ' family are living in Kagosima . They are resistered by World Heritage . I bring news about two major satellites named the `` AKATSUKI `` and the `` IKAROSU `` . The `` IKAROSU `` is from Greek mythology . Obon ( japanees custom ) I believe that Japanese subculture , which includes anime , comics and video games , etc . , is a very strong industry in the world market because so many young peaple enjoy it . [ / BLUE ] The market size of Japanese subculture is bigger than that of other intdustries in Japan . I think the Japanese gorvernment should support the globalizaion of anime as a strategy for economic growth . It happend again . . . There was an earthquake of magnitude 7 . 4 on April 7th 11 : 33pm JST in Miyagi . It happend again . NHK is broadcasting that the newclear power plant of Fukushima # 1 is alright but they are using deasel generators there . I should have separeted them in two parts and I should have made it twice . . . I add it to tomato sauce or curry sause as a hidden flavor . Becouse I am new , at first I was not able to do very much . I sat in front of the computer and smiled at my colleagues when they passed by me . Later , I squeezed out the excess moisture and topped them with some cubes of cream cheeze . I think cream cheeze really goes well with Japanese pickles such as cucumber and radish leaf . Lang - 8 is very nice sistem for people learning languages . The countries where I have traveled to are Italy , Spain , Combodia , New Zealand and the USA . I 've been studying English and I have to translate the sentense below . However , I ca n't understand why they use the Present Perfect tense in a last line . I love the San Francisco Giants , because I think ' Great Diffence ' is the best thing in baseball . Last year , the Giants won the Worldseries Series , so I 'm looking forward to this season ^ ^ Also I 'm sleepinng ( ^ ^ ; ) Let 's alsotalk about Hormes , Robert Downey Jr . , Jude law , and so on ! Drop - outs and high school , college or universites graduates account for about a quarter ( 23 . 8 percent ) of jobless youngs in the age range of 16 - 29 . The problem of job placement for unemployed graduatings must be solved . vadminton . In my class , the best vadminton player was my friend . and teacher called me and I was approched by the teacher . My friend had a baby last manth . Whem I told her , `` I want to have some forien friends ! `` I only have a few foreign firends on Skype , so I hope to make more of them there . A tyhoon is coming close again . They are very funny , wheh I was watching I could n't stop laughing out loud . He is my fav acter . In Japanese martial arts including sumo and kendo , the practitiners can maintain their balance and respond quickly to opponent 's attacks by shuffling . Yse , it looks like a fuman face ! But I do n't know how to start conversation with straingers . What makes it my favorite thing ? Firstly , There are many interesting games for the PSP flatform . It is now Dechmber 26th . It 's my great leader , former President Mao Zedong 's birthday . She has dicided to take the shells which she foud home . My wife let them wtite it . Yesterday I lerned about ideoms . And now I know the meaning of some ideoms . If you like , please teach me ideoms . ex ) it 's raining ccats and dogs ! Today our teacher gave us our own photo albun ^ - ^ Though the price of plane ticket is not so much expencive compared to those of other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of taking visa is complex . I was singing unhappily , whle other members were all singing very happily . . . Taday I almost stayed all day in the library and read books , which made me happy . I hope I can visit Koreaan some day and experience the original culture . Prepair the presentation . I always think that I am not intelligent when I prepair presentations . I wonder if I will ever be a genious , but what I can do now is make an effort . Cheryy blossoms But it was good to go to a popuar spot for Cherry blossom viewing . Japanes spirit I guess the Japanese surprised many foriegn countries . How could they achive the growth ? They had realy strong hearts . Our Chior conductor cooked delicious foods for us . It is my barthday soon ! ! My barthday is this month . But , I have not started stading Spanish yet . l felt sorry for these acts . It also tells me an important message , that the society has changed . As society memberswe , we have a duty to prevent these sorts ofacts . Recentry , I have been learning how to pronounce English words . What dou you think would be a good theme to write about ? I had not really noticed that my father was getting old , but I saw a very shocking thing sevral months ago . Because summer is comming soon ! I felt an irresistable impulse to eat some cheese cake yesterday , and I could n't suppress the urge , so I went to a patisserie nereby . I know , I sould n't have , but I just had to . The Miod - Autumn Festival is a family time . There was a very serious earthquake and Tunami in Japan . So , when I hear it in Japanese , I feel unconfortable . The sight frightended and depressed me . I had to look for another one and walked a few mimutes from the parking lot . because I tir easily snice I got my night duty . And afterwards they will think about my apploch to my boss . After all , tomorrom is another day . It sould always be a pair right ? All Japanese Beef Sould Be Inspected I 'll try to reviw my past entries . I think that many Japanese people ca n't seak English . That 's why it was difficult to show us the dolphin 's and seal 's perfomances ! Some friends say that I 'm witty but not every time , because sometimes I 'm a little conceited , not because of my extremily self - confindent , but bacause I like to share my achivements . Concerning books , I read all kinds , but I 'm really critical with books without a good porpose or those lacking criativity . My yanger sister cooked it , but it was not nice ( good ) . yes it makes me excitied when I buy new things I get used to new appliances very fastly it makes me excitied because it feels different This is Jessy 's beartiful but sad song from Toy Story 2 . What do you reccomend ? What is your favorite music ? What other phrases can you use insted ? I do n't think all Singaporian are lazy . * Sho - chu is a kind of Japanese traditional sake , alchole . One friend adviced me that counting sheeps would work , but Another friend adviced me , `` Imagie winning the lottery and imagine I will learn how to pronounciate English by watching the American drama ' Friends ' . I will be able to improve my pronounciation , English skills and learn their culture . The first writting in a quite while We cook many kinds of ingredients like seafood , meat and vegitavles . Deal with a hectice schedule next week I only have one in one subjiect . I live in Sankt Petersburg . This city is the nothern capital of Russia . But I do n't to go nail salons , I like to do it myshelf because I can create any patterns I want . Of courese , I have served as a leader before , when I had group a preject in colleage . There are many books which are related to leadership and my companies want applicants to show their special leadership exprerience . So , what would be a special leadship experience ? Although jumping at the chance of becoming a leader is for some people second nature and very easy , other people have difficulty expressing their leadership style . I could not wrrite a diary entry because I could not use the internet . Starting today , I will wrrite a diary every day again . I 'm thinking of joining a English club that is held near my uneversity . I do n't know why but the internet was realy slow . The first meeting with someoen for langage swap When I was styding , I could hear my parents laughing from next room . Leon drinks milk , pland orchids , and irons his own clothes Pease try it . By the way , I 've heard that people who do n't live in Japan tend not to like eating octpus . Octpus is a sacred life , is n't it ? I also found out that my friend who was missing from the area most effected by the Tshunami survived ! I was so sleepy when the teache was speaking . I am interested in forest landscapes , and went everywhere in Japan to see beautyful forests . They were all the most beatiful forests that I have ever seen ! my hoobies I like adventure books and almoost all fimls , my favourite plan is an evening at the cinema . I really like going to concerts and listening to music too . It 's a hard thing to remenber so many words and sentences . Luckly , every Chinese student needs to take English lessons , and this is why I can speak English . Anywhy , I 'm glad to see so many friends here . I was satisfing both my heart and stomach . At the same time , I of course konw , I am not a easy woman to get along well with . Hi all , I 'm Midory from Hokkaido , a northest iland of Japan . People are nice , beaches are beautifl , and Okinawa food is awsome ! Com Master which measures my Internet skil . Many costomers are also better informed about procedures and precautions ( including confirming that their doctor is an authorized surgeon ) . So the short tirp helped make me feel refreshed . Acuallly , I broke wind when you turned on the air conditioner . `` But If you read many books in a foreign lanuage , you can memorize a lof of words , even though you feel it is hard to understand it when you read the book . and Itook a blood sample fromeight peoplo . because I really appriciated them . ( The corection depends on if it 's helpful or not . and I 've often made misspelings in Japanese . I just wanted to write English naturaly . My main mission is to present the situation in Japan to our US headquater . I have no cofidence in my English , even though I 'm teaching it to children . Besides that I 'm plannning to take the pre1 level of EIKEN this winter . This is a comic magagine that is published once a week . Nakata had an accident when he was an elementary student and he became illieracy . Frist contact When I was a child , there was a caton movie named Ikyu - san . However , I study English almost every day , and that maight even be considereda preparation for . the test . Last year , I had a spcial memory in Au . Some of my friends prepared the dinner together , and then we celeabrated that special day and played games . Nowadays , I 've come back to Taiwan and have alreay got the job . Some of my colleagues are almost 50 years old so it 's difficalt to have the same interest . On the way to home , I was cought the rain My daughter was worried about her unbord baby . I was surprised and releaved to hear the news . I often see it . so I asked my month ( mother ) where the cat had gone ? My monther answered that the small cat was dead . My monther pointed to my son and said , your son killed the cat . At frist , I do n't think I should have any concern , when he / she ask for assistance , but it 's becoming more and more frequent . . . I wonder what I should write some articles for my dialy entreis . After the test , I was depressed . Not because of the reslut of the test , but because I was disappoinment in myself . Expensive Jasmin Tealeaf In particular , I like jasmin tea . It 's different from normal jasmin tea . It 's more expensive than any other jasmin tealeaf . We didi n't talk much . For much of the time we sat in slience . You know Japan is a small island so many Japanese people do n't ever need to speak English and they rarely meet Americans . This is supecialy true in rural Japan . The world has changed the culuture surrounding language aquisition , and of course in Japan too . It is also my favorate animation . Today , I introduce my favorate movie . I could n't review my former lesson , but I colud take the lesson well . So I am booking lessons with them now , but I 'd like to book a new teacher who works within an online Engsish school . It ` s unbeliebable ! I want to say to all of you - if you want to achive something in your life you must study a foreign language . in additon , I seldom exercise . I decided to start exercising regually . I almost did n't see the movie becuase there was no one able to make the time to see it ( with me ) . - Woh kaunsa chhuri hai ? I just had a cuple of tea ! It was very nice morroco tea . so I 'm looking forward to spending my 17th birthday in foreigne country . But it is n't related to being a vegitarian or not . one of the pvivate schools here in Thailand . It 's my heart 's desive to know English . Yesterday night , I drunk with my colleague who retired from our compny last October . For example , how to work effcient , how to communicat effectively with junior partners and my boss , and more . Hate means far awy , and teruma means coral in Okinawa 's dialect . Did you have a experience that you could n't see the horizon regurally becouse of waves , and jump up from your seat like a roller couster . He and his friends made capcakes in the night because of White Day . but , it 's usefull . Children are not good at langage . The seventh personality is a optimistic , active and fast moving like Peter Pan , who wants to be a small child foever . He love adventure , he hates engagement or enforcement from other people , hence he will have many alternative ways for joyful living . This advertisemant introduces the origin of this brand . If anyone can also introduce me to some interesting activeties , places or stores to go around , I might not stay in my house and get bored all the time . Also , driving a scooter here seems to be too crazy as I might be the only one using this type of miniture vihicle and could easily get hit without being seen compared with huge cars . I sterted studying English when I was 12 years old Are they idtentical ? If you visit Kagawa , plese eat udon ! ! ! The good thing about this , is that if you want to change weather you can just wait , or drive like 15 minutes and you 'll find a warmer or a colder place , wich is kind of awesome . So , I make my living by the scolorship and savings . My wheight is now 63kg now I 'm preparing for physics at university - there are no tests for enteringin this course , but I want to try for a scolarship so I must study hard . it 's very difficoult to take , but I have to try . . . obivuously , 12 plus 4 is 16 , and the 17th was Giulio , Anastasia 's boyfriend , whom arrived in the middle of the vacation and left before . He can crawl very quickly , and he can stand up while hoiding on to something lately . He is eating oatmeal and mushy ( mashed ? ) vegitables twice a day . If it is a successful YUINOU , you can marrige eachother . It is a South africa girl who is very hungry and thin , she finds water or food in the wild , but she ca n't take any steps because of loss of physical strength . I always talk out loud to her , I 'm being impatient with her , and I thingk she ca n't takegood care of herself . Now , I heard that sake is more popular in forign countries than in Japan . underwent it rencently , it 's hurting so deeply , when can I forget this and begin a new life ? I 'd like to say not to change the figure model , but some structual change is OK . A Japanese company annouce that they will use English as the official lunguage for their company . The chances of using English is increasing with globalization , so I think this is a good chalange for a global company . So it is urgent to raise environmental awareness amongst the general public and do something for ourslves from now on . Christmas is near , I will have three days off ( not go to work ) , as a friend of mine invated me to go their home . Besides , he has a lot of questions toask me about cumputer stuff . Maybe , I should buy the ticket tomorrow afternoon , beacause I 'm afraid that I will not get the ticket on christmas ' day . And I 'm studing Chinese . But my first task was studing , I could n't sleep in the class , so I decided to do homework quickly so that I had more time to sleep . That 's very intersting to me . This afternoon we had heavy snow , whic looked like there was a snow storm in Osaka city . I felt so stupid when I foud it in my bag after I got to my destination . I thoungt someone could have written a comment to my diary . I can wantch cartoons all day and I do n't fell humdrum . The one I like the most Jom and Jerry or Mickey . I like the websit . I really enjoy the websit . Native people reviseing will be very useful . The trafic was very heavy and we could n't move any further on the way . with no other choice , we gave up on the idea . So we parked our car and decied to watch it from the road . Finaly , we found a good place place , but we could see only half of the firework display . In my case , a great advantage is being able to see that information written down because you can analyize all that writing and then answer it . So I decided to go sports gim constantly . At present I am able to go gim 3 or 4 times per week . It makes me feel worried due to trafic problem and so on . Maybe he has to write a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybet he just lost all his money . . . I even feel nausia when it is severe . They might be caffein , chocolate , suger , fruit , etc . It was the same sistuation as New Years Day . The cold stole my enagy . I managed to get some vegitables and chicken and I hurried back home . I did n't check the expiration date , but it tasted good so I tought it was still OK . I am not good at writing English , so please check my Englih , will you ? 6 - Photgrafing 7 - Edinting anime and game videos I stayed in shanghai for two manth . I comunicated with many Chinese people . But most of them have n't ever been to China or comunicate with Chinese people . He was a good and nice boy , I konw him from last summer . The day befor the lantern festival , he told me he could n't keep his promise . He must have gone out with his father . But my hope did n't come ture . I have learned English for 14 years since I was a jounior high school student . I took the BEC ( Business English Certificate ) examination last year and almost failed because of the wrting section . Ongirls ' day Japanese set up beutiful Japanese dolls . But the dalls which we call Hina dall are very expensive So we made very small dalls by a paper . I want to write my introduction agaein . I am studying at a midle school . Tonight I had some trouble with learning enlgish , I asked for help from a lot of people online . I really appriciate that . Now I am exicitng ! ! Everyting is going well ! ! So he knows about the differences between Jpanese and American attitudes . He said that Jpanese needs to output more because the Japanese are not good at promoting themselves . The reason why the Japanese do n't have many chances to output is becase our culture requires us to be humble . He said other ineresting things , but if I wrote them all down it would take too long . It mekes me frustrated . what I really need to do is translate my knowledgy into experience . We are the black box that can change images into reallity . We have no garden , but we have a littile patch of soil between our house and the parking lot . Not only do I have to find the imformation about it , but I also have to make up the dialogue about how to persuade the client to pay by L / C . At last , when I had finished the dialogue , I also had to recite what I had writen because my business english teacher said that we had to leave the draft peper when we were speaking English . Even though it as hard for me , I still wanted to try . I hope that I can meet the dfficulty and improve my English level . Well , I 'm new here and am very exited to se how I can improve my English . I had used Lang - 8 before , but I have n't written any journals recentry . The three clothesbaskets are alreay full . My major is businese admistraton . My father is a sincere public servernt at a high school . My mom 's character is quite diffrent from my dad 's . She is active , out going and soiable . He really liks playing computer games and listening to music . Thank you for reading my writting . and plese kindly correct my work ~ : ) We call `` yakiniku `` , burned bewf . Hi , I 'm a Japanese stadying English . My Uranus is borken ! Perfectly falt ! it 's korea education . A Misterious Cat I am very suprised that I saw the roof covered in snow when I opened the window at home . We like to go flea market bacause the price is not so expensive and there are a lot of unique goods . It takes about 5 minites for her to dry them . Finally my toothpain flared up today . I took a motorcycle to go with my friend , and he rode it very fust . Thank you for corecting my diary . We enjoyed talking about our favorite bands or singers for a while and I was able to get some imfomation about them . They really enjoy listening to various kinds of music ; from punk or hard rock to classic so thier conversation is very interesting . She is very storong ! My classmate was carrid in her arms . I had often wachted a TV show which introduces world heritages . Federweisse is only served at harvest time , and is in the early stage of the fermentation processn . I saw `` Harry Potter and the Deathly Hallows `` yeaterday at the movie theater . I think the store offers a great bargen . I often think that the latest electonic are so amazing ! ! When I walked around cumpus , I found a copy machine on the ground . I 'm going to my unversity to attend my classes . I would rather see DVD than studing . I was wondering what is the diffrence between `` He sure is fast . `` and `` He is really fast . `` But my hands were nearliy touching her , and she bit my hands . But daytime was shaining . I go to work by moter cycle every day . It is hard for me to writting in English . [ Question ] How do you think languages around the world happend to become different ? Of couse , the hotest toppices is foodball game , is n't it ? The periodo during which emperors lived there was at least 300 years ago . I 'll discribe the occuoation a little . I prefer to read engilish rather than Japanese these days . We won the competieion ! & nbsp ; Next week there will be a last competiton between last two . I have chosen ethics , Lithuanian laguage in level A , English in level A , history in level B , math in level A , informatics in level B , Physics in level A , Chemistery in level B , theatre in level B , Physical Education in level B . And we sould do something we can do easily , for example , sending some food to areas that are short of food . In the land where we can not grow crops , it may be difficult to increase the growing ofcrops even if htey can use the technology of developed countries . We musr take this into consideration . it was not a traver at all , but it was work . and it seemed that I need to study the countries history and famousof places I had the chance to take a trip all over the world . It made me ungry . My dog is a golden retriver puppy , and she just got too excited and started to chase the ducks and birds . Instead , we lay on the desk , sleepying . I 'm joyfyl to find this website , `` lang - 8 . I like writting by English but I always worry about mistakes that anybody can help me correct . This trable is my second time to visitchina . In the article , there 's no explaination about which country they 're from . Very cathy tune ! I figure that being admitted into hospital is not necessary for me , but my collagues think it is necessary . I am looking foward to seeing her progress . She said they always conversate to each other in English . furthermoer , she is a sickly person . She is concerned her daughter may have the same habbit . She has no choice , so goes to thier house . I like to speak English but , I can not understand English grammer . It 's crassic Japanese . I 'm a big fan of the Amrerican TV series Grey 's Anatomy . l 'm so tierd The pacage looked delicious , So I bought it ! What illudes me ( on Youtube ) A soup with Eringi mushrooms and onions . It is warmer this winter than usual and I wore light clothings until yesterday . For a few years , many textile manufacturers have been marketing the specail type of underwares called `` Heat Tech `` . My lunguage school has some courses which are used for entering uni directly , and I already passed entrance examination of the course . on the other hand , I 'd like to aim to enter a more high level university , but if I want to enter university that does n't connect with my lunguage school , I have to obtain IELTS score then take a entrance examination . You also are wellcome to my home town . In a meeting in Einglish , I explained about some specifications onthickness , weight , LCD size , and thelocation of each connector such as theUSB port . I took a week off from work , so I feel bad for my co - wokers . However I wonder whether ' optimistic ' implies negative meaning as happy - go - lacky . I 'll exhibit my drawing at Ouchi gallery in Brooklym ! The picture was a photograrh taken at a kindergarten last Friday . Also , my roommate has n't recured from pneumonia after roughly 20 days . I hope he gets well soon . Instead , on our way home , we swang by a electric store to look at TVs because , in Japan , people have to swich their TV from analog ones to desital ones ( to watch TV ) by 2011 due to problems about wavelength or something . Recently I went to the ' End of the road ' which is located sourthest . It 's somewhere near Australia and near Antartic . I wangt to learn it well , and I want to make more friends . Incidentally , as my house is surrounded by fields , the farmers gave me many kinds of vegitables such as onions , corns , potatoes , tomatoes , beans , and so on . According to her , she had a aquarel with her boyfriend yesterday , and maybe she was heart broken , so she was a very nervous . And next in oredr was Asada Mao who is a rival of Kim Yu - na . The SD card reader , on my PC , which I believed was broken due to power failure revied . Particurally , I 'm not good at listening . Zombi Walk 2009 I went to the Zombi Walk wearing Zombi makeup . Becouse I 'll take a placement test . To sell them to Chinese people in China or do they give them to thier friends or family ? What amazed me most was thier style . My Japanese friends who can not speak English thought that I could speak English , but I can not , exactry . I can speak it a little , but I am gradually getting worse these days because there are few oppotunity to talk with English people . She stimulates me to be possitive . Time always goes so fast that I feel that yeaterday was our first day of winter vacation . Only two English classes and two chemisity classes . By the way , I major in chemisity . But chemisity is so difficult for me . My philippines theacher ca n't really understand my English , Regardless of what hppens , I will never quit studying English . I feel really sorry for the runners who came all the way to Tokyo to join teh race . After that , my husdband and I went shopping for curtains . But , I am not goot at speaking English . I feel a little nervors , but I really expect this to feel like home . As I wote in yesterday 's journal , my daughter seemed to have caught a cold . The ploblem is What it is for in any case ? ANIME , GAME , MOVIE , MANGA , you know almost all of them ( exept for movies ) . These are what we Japanese are proud of . These looks like art , and the reason why these were born and could succeed was because the old Japanese generals favorite beauty crafts . Nowtoday , it 's say to sad that traditonal crafts are no longer popular . People seek more convinient and comfortable products . ( ummm . . . And there are many people who do n't have phirosophy . At that time , my friend invited me to her friend 's mauntain hut to ski . The mountain is in Nagano . It holds the winter Olimpic games because the snow is good and it is near to Tokyo . I love to skii ! It 's impossible to skii like this . I should take advantage of this ploblem , change my work and draw people into my vision . Einglish is difficult . I lost a lot of frends now . . . One of my dreams is to have a English relaited job in the future . Today I want to practice writing rhyms ! ! : p speak & nbsp ; English fulently . So I did n't and nothing happend . . . I 'd like to make my carier within 5 years . Many people were walking while smoking cigaret , it 's very dangerous for the baby ! They were very reasonable and also lovery , are n't they ? This situation made me sad because it was a beatiful day as I mentioned in the title . until now , I 've been doing my homework in the libruary . the assignment is due tommorow . ( Actually , it was n't my fault , 'cause my time table said `` 9th bulding `` , but there are two `` 9th `` buldings . . . ) Anyway , my teacher told me to join one group , in which 2 boys and 2 girls were talking , and to try to introduce myself . I think you are the kind of guy who needs to introduece his voice before his name . `` or something . Who tells his whole life story before he introdueces his name ? He never boast his inteligence . My hobbies include photography , psychology , Fashon , I watch the drama series named `` LOST `` and `` HEROES `` and all gunle of the movies . Next time I will write about some of the experiense I 've had when visiting these shops and about some of the books I have read . The disstance does n't preven us from being good friends . I hope everyboby helps me out . There has been a huge volume of advertisement papers stuffed in between the nespapers these days . For my birthday , I recieved a marvelous present from my friends . I 'm not familier whit capital letters , I usually use small leters I am senior university sudent , I study Walfare . Though I have been to only three countries , Beijing , Korea and Singapor . She believes there is a little posibility to get an expensive TV ! In December , many Japanse buy this lottery . First prize is 200 million yen , about 2 . 4 million US daller . Nengajou is greetin card for new year day . In early December , we start buying the special reeting cardand writing . Recetly it is popular to use Personal Computer to make the card colorful and to make many cards . People who were married print their wedding picture and people who had a baby print a picture carrying their baby , definetly . When we can get these goods luckly , we tell and thank our friend or relative who sent us winning number and f they say kidding `` did you get TV because of greeting card I sent ? You shuld break it and give me half ! `` Today was very hot since morning , so after I finnishing running , I got very tired . I have just registerd for Lang - 8 . Recently I have been trying to implement my English learning strategy by googling some Japanese English leaners blogs . But in the beginning I was afraid and I did n't think that next year I would have the dream ( fortitude ) to travel mysef , without a tour agency . Thanks to a russian girl named Olesya , who one day left her work and she alone traveled around Asia for 6 mounth . You can live ( stay ) not only at expencive hotels - nearby you can find cheap hostels and guesthouses . so I took a shower soon and I slpt around at 6 : 00 a . m . But I alread have no money ! But it might not be enouth . B : We read the Tora and we do n't recognize Jesus as God , He is just a prophet to us . I will ask you somethinkg I do n't know . I always swet in this season . I will start to go to English school next manth , Now , they have a chance to experince it . Actually chinese regard `` a cirular `` it is auspicious thing , and chisese lucky number is 8 ! Why ? Useally peopel imagine 7 ! ! conglatulations Japan ! If you use twitter , follow me and I flollw you ! My host family plays it so I wathced a game today but it was rainy and very cold . . . I went to a children 's festival with membars of my local Fathers comunity Club . We named it `` Omuyakisoba `` and started to sall it . A few coustmer bought our `` Omuyakisoba `` Finaly , we sold out . But she looked a little weired because her side dish was Nattou only . Narcuissus PSP The fisrt destination was a small hill 2 hours drive south of Taipei . I know the person in charge , so I would like to tell him Conglaturations ! I have been taking cooking leson for 3 months . It 's part of the carricurums at my school . tempt : Advartizement exists in order to tempt customers to buy their products . conceal : He did n't try to conceak his scandal , but instead , he appligized to everyone . decline : He dicided to decline the offer from the IT company . But their owner was Australian from Indonesia so ( ? ) they did n't give me special weekend saraly . Japanese useally go to the dentist only when they feel troubled by a toothache or other pain in their mouth . I made a woolen scarf yesterday . But I chenge my mind . Then I chenged to knit for another things . Time is turing . maybe I should take some exmas . I expext for some kinds of English , By the way , I 've been studying Englihs by using potcast . Unfortunately , I could n't buy all of them becuase of living in China , I often listhing to a potcast while doing something . I can almost catch the phares , but what I really want is to improve my speaking abuilty . I feel that I 'm so luckly to study English and Chinese at college , and I 'm very happy that I can help people who want to study japnaese . I 'd like to say that I really appricate them . We play an importanto to the shinking food supply in the future . Hi , I must lerning the english language : ) thanks for corrections : ) Next month , I and my friend and her baby have dicide go to Taiwan . Well , I 've been extremery busy working these days . I start to work in my office in the mornig but I have to work until late at night . This week I 'll have a lot of flights and travel ( of course on bussiness ) . Write a letter to the hotel manager , and expllain what happend . One of my freinds told me about this website , so now I am on Lang - 8 ! ! In September I am thinking about going to Victoira , BC . I am easy going , and I 'd like to make many freinds ! ! Recently , I heard the fact that a girl I went to junior high with committed suicided . because in my eyes , she has n't appologize even a little bit . . . AIDS reserch improves each day . I ca n't do akype . . . . . WHY ? As I saw the pictures , suddenly , tears ran douwn my face , and I felt sad . It was the first time for me , and I was very luccy . When I watch a movier the next time , I will go there at the last screening I am very confused for using grammers and the sentences I wrote . Recentry , I 've been constantly / excitedly making many roll cakes with white cream . I want to learn engish well . One for June is to lcean my house . We are going to decide during the Golden Week holidays with firend . My colleage picked up an abandoned kitten this morning . It 's very misterious . The residentials indulged in a comfortable and abundant daily life though our country was in danger . Maybe I can not grow accustomed to the foreign teacher ` s intoration . In Japan , we have a tradition of throughing beans on Setsubun . Cover the pan and simmer over medium heat until almost all the juices diappear . My personal probrem He shot a french fries from his mouth at my frined . I had been waiting untill it would be nice weather to ride . Then the volunteers will do their best to make the country more beautiful which is vontributed without any payback . As modern college students , we should take every aviliable avtion and take part as volunteers withour hesitating and to contribute to the society . `` There 's no shch thing as a free lunch . `` It is very dericiaous . When I was young , I always tought , `` I wanna be an adult `` , but nowadays I do n't even think I wanna get old . I was happy for my birthday untill I turned 20 years old . Becouse as I get older , I can grow up spiritually . I 'm looking fowerd to what I will be doing 5 years from now . I think it 's becaouse of the dry air in my house . I participate in a statistics semianr . I 'll read a drft , please check my grammaror pronunciation . But I am afraid that not many people want to learn Russan . I think our language is beautiful and I recommend everebody to learn it ! ! ! Sataagdagi goes great with tea , which makes a good sweet . Now , I think I usually treat an Autometic gear car . I 'm a big fan of car raicing . Be caereful with driving , specialy , when it 's raining . Hello , my name is Seohyun and I 'm in the scond grade . This is my frist time speaking in front of a lot of people and so naturally , I 'm quite nervous . The reason behind this is because I want to create beauiful hairstlye for others . Frist , I have to practise a lot , possibly with dolls or other people . scond , I have to study about hairstlye . My salon must also be a clane and beautiful place which customers love . I cleand up my messy room ! Of course , I practiced , practied , and practiced a lot . Next , I want to tell you about the exercising facilities that I want although I am a elementry school student . I think it becouse of the recession . ( my guess ) Please make this read as natuaral as possible . I had two opportunities to get to know Suemin - min Kim . Veaujolais Nouveau was released at midnight on Thursday November 18th , Because the Wimbredon Open started this week , and the World Cup Sturday at myhome . I want to buy something that 's not so expensive but very usefull . I want to gain much Knowlage and self - confidence on my job through this training . Everybady drank and ate a lot . After we finished eatting , we had an ice - cream bet . After I came back home , I thought again that it is vey ridiculous . Do you believe that there will be a person exactlly right for you in the world ? Some peaple might say yes , some peaple might say no . I think most peapole believe that there will be an person eaxactlly right for them , But sometimes peaple feel tired from looking for that person , and take a compromise for the other person who is near to their ideal rght Peapole sometimes feel lonley and empty , and they want Maybe this town is also very famous place to visit among forignen tourists . Nowadays Akihabara is becoming diversity and there ` s a lot of shops featring anime goods . Japanese anime is expanding in overseas market and many foringers know Japanese anime . I will write it sometiem soon . I want to write many things but my limitted English discourages me . I had a soccor game on Sunday . Yet , after considering all the possibilities , it turned out to be an unbelievably easy dream - - I want to lie down on a clean lawn with my eyes fixed on the sky , counting how many stars there in the comos . When I look up on the sky , seeing those sparkling , goreous stars , I ca n't help thinking of how tiny I am in this enourmous universe and how great the creater , if there is one , is . I enjoyed the conversation with my grandmather and grandfather . I do n't have a degital camera . I use the cell phone to take a picture instead of a degital camera . Those are as good as degital cameras . The ingredients are udon , meats , tofu , egg , kimuchi and green onion ! I want to join a university , but also I want to go abroad to America , so I will have to go to a univercity for 5 years . trere were a lot of people at Tokyo desney land . But my friend and I were satisfaied with the attractions because many of the attractions appealed to us . I found out about this web site when I did a webserch . I knew what `` Ti Amo `` mean and I also knew there was an English song named Ti Amo , but I could n't understand untill I watched the MV . The whole day was awsome : the movie , company and the anatomy test results too : D yay ! unluck day In the morning , I get up at six o ' colock . beacuse my train leaves at eight o ' clock . When I prepared to wear my glasses and I found them smached . I am afried my mother will be angry ! It felt difficut ! At after , I missed my train , beacuse was late finishing breakfast . So I felt all day very tarrible ! She is cring everyday , she want to see her mommy . But narses were by her side all night , so she was reassured by someone 's company . Today I 'm going to an English club , I realy wanna study English . I played the game `` Doragon Quest `` I 'm writing a jurnal after a long time . I am confused , and I enjoy being coinfused . Going to law lawschool I decided to go to law lawschool yesterday . I watched a very good moive yesterday . What 's more , she was a gril who loved peace . She liked to make friends with nigro people , and took part in a nigro 's party , and helped them to struggl for the chance of a nigro 's day on a TV show . I like Tracy very much , because she was couraged enough to pursue her dreams and never gave up . Yesterday I bought new shues for jogging . 3 years ago I was a menber of a fitness gim , but I i quit because of my busy job . New shues put up my motivation . I want to make jog a coustom from now . But many foreigners are looking for someone who speaks Japaness very well . Yesterday I went to a travel argency to book a flight from Sapporo to Tokyo and then to Soeul . I ca n't get a ticket now unless someone cancle their flight . I do n't want to book a direct flight to Soel from Sapporo because of the schedule . I recommed FF X to you . It is n't the first novel that I 've read by this autor , the last one was about 5 years ago . My girlfriend says that he is n't a good writer , but I completely desagree with her . If you read any of his books you will feel the whole scale of emotions that the caracters feel . Another aspect that I want to mention is his enermous capacity for telling all types of stories , from terror to ordinary tales . If you look in his bibliography , you can find stories that film directors have put into scene : from the beatiful story about the friendship of a group of children in The Body , terror tales such as The Shinning , Chrytine , or Carrie , and penitenciary scripts as The Green Mile or Rita Hayworth and Shawsank redemption . That proglam broadcasted their life . course I always put seasonig on food but sometimes I do n't . I had stayed at a suberb in San Francisco for 3 weeks when I was a unversity student . But I could n't speak Englsh at all in those days . That is my motivation to study Englsh . The nature is amasing , and life is wonderful ! It 's a lovery day today . I recomend : www . A famouns problem on pronunciation is the difference bitween L and R . But I can not opperate my tongue freely . I use egg , shrimps , brocoli ( instead of string beans ) on vinegar rice which is mixed with carot and mashroom . My hobby is wahtchng animations , surfing the Internet , and reading books . I often watch ' ' niconico - douga ' ' on the Internet and lesten to ' ' VOCALOID ' ' music . My dream is to become an interpriter . my grandfather made a living by raising chikens and a calf . They say there are many sumo restlers who have been fixing matches for years . Today is so hot that my T - shist is all wet . tomodachi to sakka - wo shite asobu koto ga ureshii desu . eating birthdy cake is my interest . Thay beer I drank one bottle of Thay beer . I 'd never had Thay beer until last night . It tasted different than Janpanese beer . I wached a DVD called , Beautiful Mind . I did n't anything buy but 6 Pana TV 's were still left ! I decided that I will eat nothing after 7pm and I will not drink in the evenig ! Today , Kyoto was 32 degree Celcius . Well , I have to prepare for gruduation workshop . We use the textbook `` Totaly True `` . I ate humburg steak with mushrooms which tasted like soy sauce . And she , our friend , ate humburg steak with cheese and tomatoes . He bought some clothes and I bougt a necklace and a beret cap which was wine red colored . Moreover , becasue I ca n't use my suica card in Kyoto , I had to buy some train tickets . He was a maniq . Maybe somebody die , orr lose a lot blood . He was hungry , angree and terrible . . . In my opinion , it is not unuseful to disclose his face . So , I thnk that it is premature to disclose photos before the court 's final judgement is announced . in Yoyogi animation gakkuin . . . The Liberal Democratic Party has govered for over 50 years . governs the cabine or not , but I hope DPJ ' policy strengthens our economy . Recentry I am very busy with my work . My shoulder wsa treated . One of my fevorite things was stolen . yesterday my friend said you looed so slender but recently you look fat ! . But I ca n't ddo anything about it ( ? ) which attructs the audience effectively . Is this my reducdant reaction ? I had a waterserver that my boyfriend gave me . If the someone Chiense said `` You were unlucky . I have to take an oral examination in five theological subjects this week : old testamen , new testament , church history , systematical theology and practical theology . There is almost no visible effect from the 3 . 11 tunami , earthquake , and nuclear - plant problems . Gon to work , school , supermarkets , and so on . I knew it exsist . My name is chiancamel , from the Shanxi province of China ! Trip to Beijig Then , we tackl cleaning the whole house . It was beyond my expectaition . `` It was so haerd for me ! I remerber their smiles . Though I am buzy , I still keep a diary . Inari ( shirine ) - > a fox - > thin fried tofu I 'd like to watch Premiership matches , and UEFA Champions League matchse . Now I 'm loocking for the tickets . I wrote about the club in my last jornal . yestarday , more than 25 people joined ! Thakns ! Yesterday it was nice outsid . I weeded weedout my yasrd . Last month I did a lot of weedout . But when I finish an exam on next Suturday , the long - awaited summer vacation starts : ) ! a part - time - job , studing English , drawing pictures and contribute them into an art contest : - ) Googole says ' Do you mean : my name ' : D Japanese people are usually not good at speaking English , because we only study English grammer when we are students When I tride it on , it looked very nice . This is because the motion of their gestuings is too large and radical . It 's easy to hit me , especially when I stand by them too closely . I met my friend on the 2nd night , I wated for her for a few minutes outside . My eldary sister and I were talking in the hall . Suddenly my younger ( or younger ? ) sisters quicly cameto my father crying and shouting `` There is a big man . `` Then someone knocked at the door . When you are in a trouble , waht will you do ? Generally speaking , songs are a good way to practice another langage . becase there is a very big tree ( 2000 ~ 7000yesrs old ) which is I know I can manage to wrire or say something in easy English . I took driver 's license exam that covered basic vehicle operations such as headlights , windshild wipers and driving straight . It was very easy for me thanks to a lesson I took at the driving institue as well as the easist questions given at the test site . I have to take up many part time job to earn money , since I want to go to Philippins for studying abroad next spring . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a respose to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these cunsumers are really smart . . My winter holiday has already begun . I think ( that ) I should read some English magzines or newspaper for inproving my English during this holiday , but I do n't know what I should to read . I hope to get some advice from here . I expect to have inprove well when the holiday comes to an end . Io sono povero e vecchia . The gorl is young and tall . I 'm so happy , couze I can use it anytime . There are not so many tensesssssss in Chinese , so I always forget to change tense . Some people decided not to move aneywhere by themselves and some people can not move because their partners are Japanese . I 'm so delighted wher a good person wants to be a employee . There is a new type of this oil is on the market resentry . Frid garlic , onion , and many other ingredients are in the oil . although english is so difficult for me , and from time to time , I think it is so stuqid that speaking english is my goal now : ( In Janan more than 70 % cellphone users have ' K - tai ' phone , they do not use ' Smart Phone ' like ' Xperia ( SONY ) ' or ' iPhone ( Apple ) ' . We stayed there untill midnight . Kitano Takeshi plays the roll of a Japanese sodier called Hara . making traning pants for my husband . I went driving to the contryside to meet my friend who just moved there recently . It was a pritty long drive . It took 4 hours but I was able to release all my frustrations . Her parents keep some cows to sell for meat . It is rare for me to see real cows , so it was a very exiciting experience . At first , I did n't realize he was sick untill this morning . I was intending to give him to others , I found he counld not walk , and I felt so upset . We are having our final eaxm this week . Then we checked her test sheet and founed out her answer sheet was left together with her test sheet . I went to Hawaii for ten days with my famale friends this month . There is a friend of mine , a gril , who was my best friend when we were in primary school . It 's really wonderfull , not only because there will 172 famous Chinese film stars attending , like Jet Li , Ziyi Zhang and so on , but also it will shows us the history . And bless to those heroes who fought for the independence and demoracy of our country . I have a happy timebecause I am sorrounded by beatiful audience and the great members . At least , it does n't seem as hard to get a good score in your university as to get it in seinior high school , because I only need to do some subjects I 'm interested in . In Japan recently there has been a deemand to save electricity . Our tent was the most embarress of all . Our mattress was stuck and our tent brok . beacause in China , people always learn languages from books and there is no chance to speak it . So that I kowe this language very well . I want to make friends with Janpanese people who can teach me . When I got up tis morning , nobody in my family was up yet . I 'm travling to Mie now . But this is n't a good sity for sightseeing . So , Hong - Kong has no surprising poits for Japanese people . Beacese the people are very kind . During rainny days or days that are high in humidity , the volume of my hair is up . `` Super treatment `` is a treatmet to make my hair softer . I was really suprised . I like shopping and I like beatuful things . What does entry mean ? lol I 've consulted the diationary but I still ca n't understand what it means ; ( I watched a baseball game in Nagoyadoom yesterday . Yesterday was the winter soltice ! Back to the schol The box was covered with wrapping papper . Remember , once when I was going to work , one of my high heels was broken making me very embarrassed . I called you frist . You were very kind and bought a new pair of shoes to me at work . In the new semester I must stady hard with my English . The name of the restaurant was Sakura - jyaya . The drink was remon tea . The dessert was kyaramel cake . I was disappointed by `` Avator , `` so I hope tomorrow 's movie is good . That is very hard to get , my English is still awqward , if you do n't mind please help me . But everyone encoraged me when they said `` You 're working hard `` `` You look cool . `` I was very happy to hear that . I had sashimi ( raw seafood ) made up of tuna , salmon , horse macker , scarop and salmon roe . I havet to use English for business , so I have to study English . I think that bridegroom Tani , bride Meka and the 4 organaizers were a good combination . This Event was for girls only , so the interir decoration was very cute and girly . Now I 'm in the countryside of Korea for this job untill the end of this month . The problem is that I do n't have a computer even enthough I need it really badly to get done with my school payment thing and things like that . I heard that people who experienced study - abroad need more than 800 scores to prove an ability baced on that experience . Yesterday it was rainy and clowd . It 's very difficurt ! Especially , I love broiled salmon , midium rare . you will go threre again ? ? He answerd with a smile , `` I went there too many times to remember `` While Japan wasa developing country we had to learn a lot of things from foerign countres . the important things to consider about the place where you wanto to live are : and I do n't derstand some things for exsemple : I am a good boy , are n't I ? Tomorrw . . ? Tomorrw , there are practice games . The amount of juice was crealy reduced . I always put my contact lenses in my eyes every mornig . My job is a mobile phone programer . I am not a programer , but I just like it . So when a bad thing happnes , I remember a saying : when one door shuts , another opens . You must know about the feeling of loneness or seperating , and it 's much stronger when you 're alone in a foreign country where you know nobody and you could n't understand what they 're speaking ( I know it 's called French , though ) . I crid again and mocked myself as the biggest stupid in the world . While listening to quiet slow tempo music and calm voice of the instructor , I stretched my boby . Returan to the Earth I have been in Germay for a month . Then suddenly a old man who had tatoo all over his body entered SENTOU . It was an unusual situstion . . . . What if sudenlly he bit me ? . . . . . He approached me with his stobborn face , and said with his low tone voice `` Could you give me some of your water ? `` He was really kind , although this might just be a cover up . He could n't get over his thirst and had to drink to fufil his obstanate ways . In fact , I 'm not a fan of Jannifer Garner , but this role was perfect for her . So I had to shavel snow . . . > _ < The first episode of hell girl is quite boring . People send the person they hate to hell again and agian because of diffrerent reasons : hate , misunderstanding , jealousy and even love . And the music in this cartoon is also listeningble . Many people do not seem to be very pleased to eat what they 've never tasted or anything which sounds exotic , but is n't that losing an oppotunity to add it to your favourite menu ? The shop was proud of its various high quality imported products , there were many customers who came from othe countries looking for ingredients to make thier local dish . ( I would often be asked by Australians : `` Where 's Vegemite ? `` ) I went out to get tue bus . I like Homer , because he 's really sweet to his wife Margy . Ear , norse and throat hospital Could someone please put the following sentences into the passive voce . Could someone please put the following sentences into the passive voce ? Tomorrow , I am going to watch tha football match in Saitama Stadium . While doing Kabuki , actors speak very slowry and with a wavey tone . my Englis leve is bad . So , I had to wait outside of the Jinjya until they came out . Actualy , I like `` Nicolas Cage `` . Please , correcion and comment on my blog . I 'm a student studying nurtition science at a university in japan . I used to have conversations in English at English conversation classes when I was in elementary school and when I was in jounior high . How aboui it ? A lot ppl who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese ppl are kind . : P My job is to teach foreignor Chinese . I want to learn some natve English . `` Four till Nine is gven to one who find . `` It is just because we have culuture to eat whales . Maybe the protesters who againt this habitual think that people should n't eat whales . But sometimes it makes me dpressed I ca n't improve my English . Recentlly , I 've been thinking that every day . I have to eagerly keep studing the jewellery business and be careful to trade only with reliable partners . He sang songs that he liked , whatever his companies or the audiance thought of them - - in fact , everybody would show his happiness and satisfaction whatever they thought , and you know why . One of his hoppies was forcing the female stars who went to Chongqing to have sex with him , and then recording the process . And in my dream , one of my high scholl fellows ( Iet 's call him Ice ) told me that he had got some videos of Wen Qiang , and there was plenty of hot stuff besides the pornos . I 'm writting this journal in my room , ovbiously , in Japan , This is my homeswork . We had been studying togather since we were in primery school . We had a nice time togather . I found out about this website Lang - 8 today , and I tought it was so great . I think the greatest thing about this site is that the peple who correct language mistakes I 'm able to advise and help peple who are studying Japanese , too . I have learned English sice I was 18 , but I do n't understant much of it . I can understand what My teacher says parfectly , but I ca n't understand movies or people who I just met for the first time . I met mmy teachers a long time ago and I have talked with them many times . I 'm listening to the music of Santana ' Smooth ' on yutube . I usualy get up at 6 : 30 in the morning . I joined the cooking school for elderly men , looked for the cheakup for 3 year 's old children , studied the system of the health center , and so on . All US foods which I can imagine are junk such as bugers . We bought detergent , deshwashing liquid , and a frying pan . After that , we had lunch at a sandwich restraunt . In the afternoon , I went to a computer room to use a scaner . However , the pattey broke its shape while I was cooking . It did not look good , but it was delicoius . I 'm looking forward to playing tennis tommorow . The food was good ; they both have world heritage sites , the Halong bay and Ankor wat . Thank you for reading abd listening . But how can we be good listeners ? In my opinion , the most impotant thing is to focus on the topic you are talking about . My examinition . . . Becuase I have reserved a train at 7 : 30 AM . I 'm going to Austrailia next year for studying . Austrailia goverment changed their Immigration law . I have to chose the proper word out of four choices but sometimes I do n't know the maning of all the choices ! My tears were like rianning . I can relax and imporving my English . Instead of that , we are going to go to Holand next month to see flowers . So , I determinded to go shopping and make a pizza . I found a recipe in internet brog and started making a pizza . When I got up I realised I had a better undestanding of this movie . My feeling is when I help a person to crrected his / her eassy , I 'll be successful , and sometimes I can found some entries are like comedy shows . They sing Japanese sould music . I 'd like to untroduce their PV ; Samurai Sould . We concluded that Thiking in English for 75 precent of the time is neccessary to master English . I would like to have better pronouciation . So I have to take a lot of classes and my schdule is was too heavy . I coould not answer well . . . Lunch time was coming , but we did n't have lunch togeter I tried to write a dialy in English . I wanted to change the teacher to Johana who was my pravious writing teacher and is so good . I 'm twenty - years - oid and a university student . Hi , I 'm studing English in a Japanese University . My dormitory is in Gifu Prefecture and my family 's house is in Siga Prefecture . Usally I studied English about 2 ~ 3 hours a day , but I study it in please get out of my head immidiately ! When I was in Korea , I used to eat every meal at the restaurant , because there were so many options to choose from and I also did n't have enought time to cook . Now , there is n't any option , because there is n't any restaurant nere my village . Before leaving they compleined about my absence . But , unfortunatly , when you come home after shopping , you feel very tired . So , it is called an aeropolice . l know that many peolple want to get more money or stronger power , Yet l do n't konw how to tell people around me what I think , because even if I do it , no one will believe me . They must think l 'm crazied . We went to a coffe shop and talked about her marriage life and new workplace . All of nature follows Lebonacci 's numbers . But I noticed we have not much defference between us when we made skit . I like studing English very much . I studied the flower desingn for three years . When I entered the pub at 10 , all the seats were full and it was very crouded . There were 3 people on staff , but it was not enougth . At 3 , 15 office workers came in and ordered the `` NIJIKAI corce `` The NIJIKAI corce is some frid food and drinks . So I took the exam at januarly 24 . wich is something impossible right now , so I 'm a little bit pissed . I went to Seoul for a lomg time . Actually , most of my co - corworkers might be missing me a lot . I missed the station which I had to get off at even though I 'd asked the train crue twice ! And , again , I 've not kept my promiss to write a diary entry a day . He asked his English teacher , but he still could n't understand the explainatin . . < - redundant I spiled water on the floor during the night . it is in the contry , a little left from Osaka iPlayer provides Englsih subtitles . So he called to all the anymals , `` Mung - Mung `` . The best purfomance was when the trainner rode on the dolphin . At the end of th show , we ate lunch on a mat in the forest and it was more delicious than eating at home . I will buy the Xbox360 ver . My Firends list does n't have any friends on it to talk with in English ! My habbise are swimming and shopping . I am now thinking about a master degree 's reserch plan . I want to reserch about Japanese writing for foreigners . I am in trouble to find out a way to reserch this . However I have to persuade readers , who are sholars in the Uni I want to enter . I want to study Endlish ! Gion festival is the annual big event started 1 thouthand years ago and it is one of the most famous festival in Japan . Anyway , I 'd like to graduate from scool and get a job as soon as possible ! And she said `` you are strang . `` the time is coimg . It is a cloudy today but the temperture is not too warm and the weather is confortable and I 'm looking forward to rhe start of the school year . Althogh It is hard , I 'd like to study English . and I beleive it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achive my goal . She rode a bicucle . When she arrived near a company , she wiped her swet . There , my dance culb members will announce . ( Announce what ? ) It 's tellible , is n't it ? ? I 'm always eating luch at a canteen , but I 've decided to bring my lunch starting today to save money . It is intereting to see what the shop sells . degitalize TV The Japanese government has decided to degital satellite broadcasting in 2011 . I 'm beaming , I hope to meet people who can hepl meto learn . Fortunatelly , I can speak English , but I do n't want to forget how to speak it . Did you watch Michael Jakson 's memorial service ? They spoke about Michael Jackson 's liftime and sang . I overhheard somebody who was talking about Michael Jackson on the phone . I liked his songs and music vedios . When I got home , I turned my computer on to listen to his songs and watch his music vedios . I heard that Micheals Jackson 's daughter inherited some unreleased songs . When I do n't have time to stenghten / set it in the morning , I like toput it intoa ponytail . There are 4 peaple in my family . My father 's been a firestation for 20 years . He teaches me patience and scriface . When I speak with a foreinger , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I have no doubt that your coments will be helpful . I belive in this world so I wo n't give up on life . If I have a mistake in my diary , please hlep me corret my mistake . Later I felt unconfortable because I did n't see his face and I do n't actually know him . balabal . . . . . I do n't want to be so discrminate . . . But I ca n't use those greetings now , Becouse my grandparents have passed away this year . I could see that the top of Tkyo Tower was slightly bent by the great earthquake ! After drinking , I went to a club for the first time ! ( My friend took me thereX ) ) Dancind with music was so exciting . I do n't know how they teach English in other anycountries . I guess that there are some differences between the Japanese way and the other countries ' ways . I mean a lot of expriences is the most important thing . And also , having a passion for study is imprtant . Next weekend , I will try to take a picuture ! I want to use this service not only to study Englisg Grammer but also to meet friends . I had a realy good time . Many of my classmates decided to recive further education . I 'm 19 and my daugther is 2 . I watch TOM AND JERRY every day with my daugther . There is no vaccine iin Mexico , as well as all around the world . How can we stop the from flu speading ? time 's moving on 'cause my writing spped 's so slow . To succeed in college or even in society , we need always remember to have a mindset that you should boubt anything . Before enrolling in college , you may have been only learning a lot of subjects by heart in school , such as a date in history or the grammer of a laungare , etc . I will take writting part of it in 3 . 17 . After two mouthes merely , I found I can not work very well , since I do not know the internet - related professional skills . I decided to give up because aso need 30 minutes to go and exchang clothes . This is just me eating somthing if I get angry . Christmas Day is a holiday celebrating the birth of Jesuse , on December 25 every year . At night , chrildren go to bed earlier than normal and hangstockings behind their bed to hold the presents which are given from ' Father Christmas ' . I play the guiter and sing songs . Before the test , I always feel pressre . Nothing can match the pleasent feeling of being home . The New Year 's Day is enjoying a strinking popularity around I came to Busan from Seoul this aternoon by the STX . I was so dissapointed because I had tickets to the seventh Well , I 'm planning to go to community college first then trasfer to a 4 - year art school . I was going to cancle / drop that class , but since I was curious , I just chose to take it . And do you know what happend ? On Febrary 16th , we went to the Uluwatu Temple . It costructed on a very tought cliff . I think my browser may have some probleam because I downloaded something ( bad ) . and some of the messeges ask for genuine microsoft sofewere . Since the world of computer science is more opend to English speakers , I want to study English . I 'm insterested in programming for the web . If you also are insterested in programming , please be my friend ! Shnonn Brown was a beast . There are some places in the darkness , a park , a small forest , bridhe above a small river , a small house and a cafe . To show off a skilk and contribute to one 's team . So I hope to be usefull to you and also to learn somthing from you . I want more more slepping . . I live in Paris from Monday to Wedneday or Thrusday , and then I go back home . Without any knowledge of the language at the beginning , after a fortnight , I could manage with italan people in daily conversation , and understand many things . And they have a very interesting grammar , with very funny tenses , such as `` subjunctivo . `` Neverby , it 's not the only reason . I wacthed Transformers 3 with Xiaoquan yesterday in Guangdong science center , IMAX3D . It happend about two months ago , three friends deceided to go to an amusement park called Happy Valley on that day . I 'm have been hanging out the lundry this week . I was accepted into a university in NIIGATA taday . Today I was rehersauling for my upcoming dance performance . While I was indulged in my practice for it , I suddenly saw the boy who I have a crush on walk by . Out of astonishment , I shouted out loudly , `` Ah ! ! ! `` and stopped my mevement . He somehow stood there watching me ! ! I was so embarressed that I had no idea of what I should do , and just bent over and stood there . My thoughts went so crazy for him that I can bearly fall asleep tonight , this is feeling just not sitting well with me . If you want to be a professor , you must be able to do daily conversation without any dificulties . My husband is Indian and he has started to run a small guest house in Rishikesh since this Aplil . It is a fomous place for yaga , maditation , the Ganges River and the ashram where the Beatles visited once . I woder what score I will get in three weeks later . There could n't be a more beautifull landscape on which to meditate . You could clearly hear the clashing sound . It was frightning . Some more hyenas were training karate . Others were doing nothing . They took me into a magnificient temple with a huge hyena statue on the rooftop . I passed the frist paper test of Eken Pre - 1st Grade , so I could n't be better now ! While I got ungry with him , I realized he has kept his wild nature . It is also so humid in Japan 's rainy seson . I do n't like Japan 's hot and humid summer eather . My friend could answer easyly because he is English . My purpose for stadying English is to communicate with my business partners , who are in Sillicon Valley . That was only mistypo , haha . The weather focust said that it would contiue till the end of the week . You konw , I am a Chinese , who lives in south , so I like spicy food and do n't like sweet food , when having lunch . In the afternoon is computer class , and you should see how fast the teacher speaks . I ca n't catch what she says just like many students arroud me . That 's like a thirsty person who finds fresh water , but more romatic than this . The doctor told him that the girl is invited by his army , because he always says her name Dubai loudily . The girl takes care of him for about three days which , amazes many people , because everyone does n't understand why an Asian girl would take a U . S . sodier so seriously , and does n't leave . The sodier fell so happy and thankful about it , and asked the girl if she wanted to be his girfriend . After that , because of the wound , the sodier lleave Iraq and marries the girl in Chongqing provence , China . I have some stress , so I scrach the same area over & over . I 've often sclaced my head . I sclaced the same spot , so I 've lost a little hair . I do n't a blad head , but I have to address this . So I can get along with with all kinds of poeple . I can operate some Mac softs like Illustrator , Photoshop and InDesign . I like to watch professional sports games , but actually I 'm not good at sports , especailly ball games , like baseball , football , and basketball . I need to execrcise regularly . I coulnd not go to work yesterday . . . I saved all the pictures of the porducts I bought at ASOS , the models wore such attractive clothes on the catwalks , wow ! Finaly I wanted to say that I will graduate from school two years from now ! It is really strange that pople reveal their divorce in front of friends and familys . The figure is a little bit higer that I thought . so tonight I went to her new house to furfil my her room is not very large , but very confortable . Favoriting things . It 's kind of hard for me to forcus on a story . . I just love wathing the `` American Pie `` movies . In the first helf , Ji - sung Park scored the first goal . Because I plan to tell her parents that I want to marrige her ! ! It is Japanise food . Espevially , I like Korean and Chinese food . However , I guess the word `` fuking `` is used to emphasis the words after it , so it 's very similar to the usage of the Japanese word `` kuso `` . The word `` kuso `` means `` shit `` in English exactry , but it also plays a roll in rudely emphasizing the words after it . So , I explanated it to him like that . I 'm lookin for friends who can chat with me I 'm tired of speakin Japanese . . . . This year I deided to handle foreign company more actively than last year ! Especially , getting more vocabrary is very hard . ganghaw - Do Yesterday , my fmily and I went to ganghaw - do . It was a one beautyful place . It was surpriese too . The bad bews is that I failed my ACCA exam . . . . . . . . . . . . . is was wrost than last time . . . . . . . . . . . how come ? ? ? > _ < Studying English is one of my hobbies , in wich I learn it with enthusiasm . Since I found information about prostitutes , I realised rhat they are not only bad points , but also good points . So I think I should n't jude or look down on them due to their appereance . unforturnately , it 's Saturday today . . . I believe that marriage is speciall and spritual because one man and one woman , who are first defferent human beings , But the first typhoon is likely comming soon , and it is rainning now . After this happend , I Iooked for a place to eat . when to use `` a `` versus `` the `` , and idom like `` work out `` ( exercise ) . My hometown is a big city and I feel convenient , but I think there are many great poins in each cities . Today , I went to my school to partisipant in swimming class . After I came back home , I ate lunch and I ate spagety with meat sause and it was very delicious . I 'm nt the demon so it was very fun . Tomorow will be very hot but I should work hard . In the Netherlands , I had to find a dentist who I could register with as a patiant , make an appointment and wait for 2 months . A nurse said `` Why did n't you register at a dentist before you had a teethache ! ! ! It is common sence all over the world ! ! ! However , when I go for jogging , I do not have to go to Gymnasiums , I can do it on the streat or on compus . I saw many internatinal ( interracial ) couples in Austraia . I sudied Japanese a bit , learned some new kanji , and went to eat breakfast . I managed to swallow some joghurt , but my throat was too sore for anything else I had in the fridgerator . It fele like heaven ! There are two bathromms and three rooms . There are 4 rooms and two bathromms . but my frie ' s house is very simple and morden . my mom likes decorlation decorlation theirs . Tommorow I have an exam of mathematical statistics . I 'm very much looking foward to it ! I will go to Shikago for the marketing - skill training this September . therfore , I have to improve my English ( ability ) soon It was slipperey and dangerous . Spring is comming to the corner . but I wana fight ! I need your kindfull help ! I did n't expect that someone would correct my first dialy , but two people did ! I tried not to use my dictionary in order to write my first dialy . I 'll keep writing a nice dialy using my lovery dictionary . Japan has four seasens . I live in Japan , and I sometimes see foreighers wearing a t - shirt while I 'm freezing . It 's been a while since I last spoke Englsih . There was no abnomality . He tought me that the dream will definitely come true if I did n't give up . My colledge life . I am getting an external education about sorage fundation for data bases this week . `` Galapagos `` is a set of islands or an area around the isladns which is distant from the continents and is well - known for its unique eco - system . These `` Galapagos `` charactaristics often bothers me . HoweverI , I can not go anywhere . It makes me feel more tired and frusterated . Hellow , I 'm good , I like english , I am not good in english , you are looking my page . help me whrite in english ! I must implove my English skills to comnicate with people all over the world . Appart from that , I have to create an sketch with a friend . It 's for an exposition ; we are going to `` act `` Phineas Gage 's article . At least , I can speak very influnce . . . ( ? ? ? ) Thank you for asking me about the interview : ) I thini it went pretty good . I do n't know why , but I was not nervous that day . [ two sentences ] I had to do a self - introduction presentation , a social issue - related discusion , a competency based interview , and a Chinese interview , all in one day . Becouse I skated too hard yesterday . I need to study speaking Engilsh too . I really loveto eating foreign foods . However , the expected time is about two minutes so it is not goning to be that tough . Actually , today was a different day in a sense , Lamar is finnaly gone . I 'm eager to speak many languages , so I watch some NHK proglams to learn different languages . There were many friends appeared in this wedding and they drank much wine to celerbrate his friend getting married . A typhoon went through Japan and I 'm awared that autumn is coming . If you use Skype , please add me because I also want to learn to speak enlgish . Today , a very very ugly incident occered . I am working on my application material to make it more impressive , and hopefully I will get into a prestigeous school that I can be proud of . What 's the diffrences ? `` I 'm fine ! `` `` I 'm good ! `` `` I 'm OK ! `` : What are the diffrences between these three phrases ? one color whithout design . I think Japanese unbrella market is a thriving business . Japan is very unusual among the developed coutries in its strict attitude to foreignners who want to work in Japan . In this period of globalization , Japanese industry cannnot remain comopetitive because of shortages of the workforce . He said `` I 'll chek it later . `` When he came back home , he checked it carfully . I have a BIG presentaiton next Tuesday but I have n't finished my report yet . Every time I meet someone from the team , she greets me wiht a clear voice . Every morning , one of them is cleaning the entrace of our school . One of my collegues told me that it happened because the team members were careless , but I wonder how much they care . I learnd some sentences . It 's aprox 10 feet tall . Seriois Disasters If we destory nature , we are destoy our civilization . Besides , he cancles the term exam because he does n't want to write the exam paper . I 'll have to communicate other menbers in English . This book wrote about the diference between the English and Japanese voice . I came back to my camp as I was discoraged . I made out that it was him bacause he was tossing and turning . I reallly dislike humid weather because I get sweaty easily . A bear was shot because it injured a woman eariler and it could happen again . When I read this article , a quesiton occurred to me . Our selfish lifestyles cause climate changes , and these lead to the lack of their food on moutains . My friends came to my house Yesterdady . One is merried . The other is not merriage . For a long time , I could n't upload my page , what with my tests and the disasters that happended to Japan . Fortunately my frinds living near the disaster locations are all safe ! But now , I strongly believe that English and its culture is but one of the many cultures all over the world and I want to strengthen my idea by communicating its importance to as many people as poosible . However , I noticed the convenience of English for the first time because I could talk to many people like Belgians and toEgyptian with English . Though I have been saying many things above , all I want to say is how plesant talking to many peple is ! ! It took 10 miniutes to walk to the beach . It turned a very comfortble day today . But Japanese people are n't intersted in it at all . There were a few people , and some main billdings were closed , others were opened but closed at 6 : 00pm . I think I 'm very susceptive to waether changes : - o `` What day is today ? `` I always say that because I never remember the day , even though I ask my consin a lot . He always says `` I just told you yesterday . `` I heard someone say a goldfish can only remember something for 3 seconds . After that it will lose its memery just swimming to the edge of the fish bowl . If a goldfish fell in love with another fish , it would n't remember because it would lose its memery . Myhobby is to go campout . I can speek business Japnese , but my English is poor , so I want to improve my english to get a good job in trading . I have a sore throat now , it 's really unconfortable . . . I agreed and sat down waitting for him . Is there someone who lives in Euroup ? In Paris , I 'll see the effel tower , Louvre 's museum and shakespear 's & company book store . can you tell me other hot brands in Euroup ? It 's because this is my first time trip to Euroup . I applied for two squba diving tours and bought lenses for my squba diving mask . My name is SAKURA , cheif of Japan 's traditional dance group , NIPPON . I am introducing the wonderful world of Japanese danse . Please belive me ! I read in the news today that Pizza Huts across China annouanced that they are doing away with their salad bars . It is already half a month untile I go home . Hello , Lnag - 8 users This week , I 've been thinking about how to use Lang - 8 effectively so that I can make progress ony my studies . At the beginning of weekend , I have a long bathtime on Fryday night . bathtime is a preasure which many people living with a family can not have . There is an Engish exam called CET in China . Time flies so fastly . Everyone walking around town was wearing a shirt wiht long sleeves and a jecket . Firstly I write some words in English , drink a cap of coffe read my E - mails . After the bus tour we had 4 hours free time , so we went to the Beatle 's musean which is quite famous as far as I know . lol Then I realized that I might have made a mistake as I perused the musium . In fact it was tough to understand all of what was said , therefore I 'm not entirely sure of thier history , achievements and other efforts . . . everything they did while they were together . Well . . . honestly it took us two hours or so to finish this tourm which was pretty much half of our free time actaully . . . Therefore we didi n't have time to walk around the City centre , which was supposed to have been fun to do ! I have to study chinase and English . First of all , you should buy asmall boat to chatch more fish in order to get more money , and thenyou should keep fishing for 10 years . If you achieve your goal , you can get ahuge amount of money . Then you deposite your money in a bankand earninterest . I was supposed to take the intermedium level this semester , so please help me pass the class with a decent grade . Today I rented `` Gingle all the way `` and `` Dr . Dritol ( Eddie Murphy 's comedy . Wel , got ta go . My job title is programar . Wao ! I was suprised . education system , learing things that are boring . I trid to become a Pro member after that . In Korea , adultery is a criminal law not a judical law . I ca n't understand why the goverment punishes people for their private life , whether it being love or sex . I think adultery crimes can be fixed in the judical courts . Keith and Carrot , who had goneto town to visit their son and daugther came cameback to the church . He came to Austrelia on a working holiday visa too . I will be talking in Korean for a lont time when they come to church ! ! ! ! ! A few minites ago , I saw a sports news report on TV . My friend said to me , `` You look yonger than yesterday `` . Anyway , it 's not my business , I 'm okay untill they start raising prices : P I do n't undstand why Edward tells Bella to stay away from him , why heleaves her alone . I 'll be more carfull next time . . . I 'll try to build my comfotable life slowly : ) Well , my husbund and I set up our own small business at last - ) This took a lot of time . You know many Japanese college students have a tendency to be senseitive about what they wear to college . In other words , they really care about how are they seen . So they wear fasionable clothes all day . I noticed that lots of students wear hoodies or T - shirts , expecially with their college name in front . Is it inexpencive ? But I am worried about whether I can speak Englih well or not . After we left the beach , we went to a shopping center named Amerivan Village . So we counld n't go anywhere except there . We just looked thorugh some stuff . The marketing maneger supervised them at first , but she gave up controlling them at once . They started to shoot the film at their wil . Because I got a appotunity to make my debut on the world stage . Syobu is a beautiful Flowe . Shrine of the City God Parade Day is every June and not on a specitfic day . The firsr time traveling in the United States . When I walked around the house , I feld an unpleasant sensation like I was trudging uphill in the house . My faborites are reading books , including Manga or novels , watching movies , taking pictures , playing tennis , and gardening . . . I 'm gald that the Japanese team won ! JOSIRYOKU , the art of being a fascinationg woman It 's too dificult for me to learn this stuff , I have no confidence for passing these exams . This song which you might heve not heard of is named `` Hailie 's Song . `` `` Hailie `` is his daughter 's name . `` Hailie 's Song . `` I wonder if the english title is okey or not . Does this make sence ? I do n't have confidence about whther native speakers can understand my English . Please let me intorduce myself It is very impotrant for me to imporve my Engilsh . Please correct my erros anytime . Ohhhh . . . ahccording this book . In the past , Japanese food culture had us eating insects such as cicadas and grasshoppers . I 'll attend some meetings and an exhibition of the heating , air conditons and ventilation industy in Las vegas . Yet the real realtoinasip , in my opinion , is much more subtle than the triangle in the movie . But I will not forget to put some medicein on my head for hair of course . I want to be a person who can assist someone 's development even though my ability is not exellent . I had my bycicle stolen during the night . but I ca n't forgive the peoson who stole it . After the lecture , I am having second thoght about the `` Global Environment `` . I could n't watch it before because my daugter said that it was scary . ' Poets are not so scrupuluos as you are . I tried to write something ( like book reviews ) in English on some websites , but I was so ashamed of my English that I just coulnd n't do it . Kaiten - zushi having rotating sushi on a belt conveyer which is cheaper than traditional sushi reataurants . I am working hard and I hope my dream comes ture in the future . But I like go back sckool , because I can be with my girlfriend and play with my friends . My english is horrybly broken ! I said that I was too lazy to do something , but my friensd told me when I am lazy I should do something new or study Chinese instand . I felt it was very typical for Amerika and I filled with emotion . It was the frirst book that I read on my own . My ability to understand difficult sentenses was immature . Returning to Harry 's wonderous world in this age , I 've found something I had not noticed when I read it in Japanese back in elementary school . But I think this is why these books are calld masterpieces . I had studied English in junia high school and high shcool . I think the best shing for learning English is to keep studying everyday . and am studing Farsi [ Iranian language ] . { I 'm trying to write articles in Farsi too } My hobby is watching Japanese animation films , foreghn mouvies , and I especially love Woody Allen and Emir Kstrizca films . I 'm studying English right now and hope to aquire skills to speak fluently with native English speakers . Philosophical issues , Religional issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . I want to make prograss with my english I am very glad to be a memer of lang - 8 . So far I have studied English for about eight years , up utill this term . It 's so easy to cook and tast good . I was very supprised . Eastern Japan has big probrem . Today , I went to the plice station to get a new driver 's license . I want to excercise for 2 or 3 times a week after this . the leaders of both teams are frineds . but somtimes it 's not met ) . If two participants find one another good , they exahnge phone numbers and they become friends or boyfriend / girlfriend . My friend , a frend of my friend , and I formed the men 's group . The women had three persons as well . We enojoyed the party and had a lot of conversations . So they go to the academy after school and go back home at midnigh without time to have dinner . Statistics say that we , people who live in cities , lose good , quality years of life ( or our lives ) due to ozone exposion . Yestday , my classmates and I went to have dinner in a restraunt . But now , it is in good conditon : ) I ca n't relax without it . The Romens knew more about fighting on land than fiting at sea , so they put a wooden bridge on the front of each ship . I think the Romens were very clever . But the history of Rome was very intersting . I ca n't beleave this happened . Do American people tend to include many people in an e - mail when possilbe ? We japanese are accostomed to prenty of things and food . I stayed up late while they sleft for a long time . In contrast , The PRC has become rich , but it still makes more threat of force to thr ROC and never recognizes the fact of the separation of the two sides . I do n't think they are wrong , but do they have the gualification to agree to people 's self - determination ? I went to the East Coast with my frend . I brought beer , Japanese sake and some snaks . I made a committ to serve my family . I performed in some temporaly groups while the other two joined groups together . After some time , we separated , promissing to meet again . I will have abilities to do incomceivable things . It 's [ vegtarian ] It 's not only the students , but also the teachers who are in trouble and trying to overcome their obstables . The docter said that it 's because of the sudden change of environment and food . But still , my body has n't yet ajusted to Korea . They damaged an atmic power plant . According to the report from the goverment , there is no danger to their health But some said that the goverment and power company are trying to Coul you please tell me . However , the inforamation gained from advertisements is sometimes overflowed and it is very confusing . Becuase many companies and shops are competing to win in the market , each shows their own characterized advertisement , which can be too much information . What is worse , people tend to purchase products or foods even if they do not need that maerchandise . I believe that more people should learn the way of recognizing whether which infomation is right or not even if the amount of advertisements increase drastically in the future . they can cook korea food . . I do n't kown why . . . I doubt I 'm writting good . Anna from Boston eventually finds her ture love , not in Jeremy 's luxurious house , but in a shabby bar in Dingle , a small town in Ireland , in the arms of Declan . This class is bowrring . I am too lazay to write a resume . . . . When I enter my room , it smeels good . I 'm so tired right now because we recepted more than 150 students today . I shoud have gotten up early this morning , but I slept in late . I am learning English , espically listening and oral english . I have ( ? ) a postgraduate majorde in computer , interested in network security and DB . I look forward to more friends to exchange each other . Today I am verry happy , I 'm verry happy . When you look at a Chinese word , you can not know how to prounce . I told him not to hesitate , but he said he still wants to be firend with Ice , and that he did n't want to hurt her too deeply . The sentense is `` Equilibria between any number of substances are representable in terms of activity coefficient correlations suah as the UNIQUAC or NRTL `` But it had Dezel Washington ! I 'd appriciate if you read and fixed these sentences . I am sadisfied with my hair style . Some insist that individuals wil solve it . Today I want to challenge new work possitively . I ran , among crickets and cicades , that was just an athonished sight , I think that this may be good fot people who are not allowed to have pet hamsters at home , or people who love hamsters but are too lazy to take care of them . Through this incident , I found that the country of Japan is not alone , and international cooperation is really important in a grobal society . Because the weather forcast said today will have a wintry pressure distribution . I do n't know the situation in your coutries but in Poland Spring officially has come . Spring is my favourite season of the whole year - it 's not too hot , not to cool , just warm enought for me . Unfortunately in going straight for my goals I feel like I have been losing something important , paying not enought attention to relationships with people I care about . So I cut one side of my hair by myself , which made it more akward . As he is a serious man , he is going to get along with his sweatheart . We did not reach a conclusion , but I think it was interesting and will be usefull . On my way to Suwon , I heard there were 2000 aplicants from my friend who had aleady been there . I was desperated and gave up trying to get the job . However , I chaged my mind because nobody knows the result . When I got there , I noticed that my freind had the wrong information . However I feel a little uncomforted . Not only in English but also in other languages I think there are strang expressions like `` break a leg . `` I prepared all my tickets , but not completly . I was comfused because I heard about it just before I borded the airplain and I 'll arrive in Bergen at 11pm and the hotel will closed . I looked around in the airplain . I went to drink with some coworkers yestarday . We drank still 3 o ' clok in the end . If you have information on it , pleease tell me . Because wheather or notyou can be admitted into college is decided by this exam . The system is feasible in China although mang people think it is unfair because of our country 's large population . We need more college students to bulid our country , to help make our country more beautiful . In my opiniop , this is very cruel for students ! hellow everyboby my name is May . I like English very much , but I am afraid to learn English ; because I make a lot of mistakes . Could you change this paradraph to make it look more like a speech ? or if you do n't have enough time , just correctong it . I would appreciate it . Funny listner In concerts , often there are `` funny `` listners . I ca n't wainting for the 26th free program on figure skating . When she got wind of the solution from a Homeland Security officer , she was a little bit comfounded because she had made up her mind not to marry anyone . I will begin to write again daialy , as well as I can . I also think that this daiary has many mistakes . ( Actually we are already in Februaly ! ) Usually , having her wedding in Maldives will be so romatice to a girl , but I 'm so tired for it . . . By the way , I think I am quite a strang persoon , because I feel excited when I hear the wind screaming . Maybe it 's because I just drank a cup of coffee which always make me excited . I try to imitate what I 've heard from the NPR to correct my pronounciation , my tone , and things like that . My summer vacation will end tommorrow . But I am happy because I wil be able to meet my friends and homeroom teacher . `` Do n't be a loser `` I keep telling myself that , but I always give up easily ~ I need to be more stronger , tougher and more focs on my target ! It was taugh because of its length . ( I heard announcements in French , and I liked its pronounciation . ) He mentionde a gilr who I love very much . Her busband dose not have a permanent job , therefore he helps occasionally with the washing of customers hair . Particullay , that of Japanese bush warbler made my ears perk up since its voice is unparalleled by any other birds . I really believe that she is my great adviser and suporter . I think it refrect the sensitive feelings that we have . That 's the reason I registerd it today . The prefecture has lots of skii resorts and held the winter Olympic Games in 1998 . Becouse of Love ? Actually , it 's one of the moset amazing social network services I 've ever known . Language Excnahge , LE in shorthand , is a great idea . I am dissappointed in you ! You are my friend , and I always beliving you but you lied to me . I finished reading the book `` Excerpts from a Family Medical Dictionary `` by Rebbecca Brown , one of my favorite authors . My favorist Japanese singer is under arrest . Last weekend , my favorist Japanese singer was arrested for drugs . Her name is Nariko Sakai . On last Friday , a wrrantant was out for her arrest and she became `` suspect Sakai `` . It is really sad to hear that - I still ca n't believe such a nice , sweet lady who smiles like an angel is a drug addictor . Just when people were worrying that she might commit suiside from the shame of what her husband did , the police found drugs in her apartment . People came to realize that her dispearing was probably not because of the shame of anything , but to escape the drug tests . I 'm not a Chirstian . This season , church choir members are very busy preparing for Chirstmas . Our music director chosed very rhythmic and complex music . So , I am a staff of the convinuient store . Maybe it 's a different customs about what the staff of the convenuient store has to serve to their customer . After that my manager appeared and he complainted about me . Too busy to do yoga and study other langueges . Of couse , today is very hot as well . I have to buy chocolates for my co - wokers before Valentine 's day . And I 'm worried about the costs because I have ten co - wokers . His name is `` Charo `` , the mascot character ofNHK the NHK English program . So I have to write my disertation , and look for a job . today , when I checked out my blog configuration , I found this site in my favoirte . The first thing is my Machintosh Computer G5 . Visitting Zoo is really fun . I 've lived in the nurse 's accommadation near my hospital yet . He said , `` Get a picture is not a plite way to write Hikari , you could say orally but not written `` . Starting Lnag - 8 Hopefully , I can make more and more friends , although my English is not so good , but I can always communicat with English speaking people . Bart and Lisa , daughter of Homer , cooprate with it . One friend is going to America for further education and the other will work as an analysiser in Shenzhen , we will be living in diferent places around the world . The story is about a dective who had been a high school student . I comuute by train every day . In the evenig , I catch the 8pm train . I ofhen read a book on the train . but I have no ploblem . I washed my hair with my favarit shampoo . I heard that it is good for the helth . It 's reasnable to think that individuals do n't tend to own pianos , but families do . I 've rewrited some Chinese diaries for Jepanese friends . But I 'm taking a year off to improve my English abiliy , and go on a vacation to take a break . When I was yonger , I liked painting and studying fine arts . But it 's very differnt from visual design or fashion design . That keeps worring me But some of us like to play command sport games , some people love to play intelectual games , and others love to play computer games . Stop hating clesses in school , or stop hating boss at work , or stop hating other people . So simple to learn anything , or converse whith anyone . My wife is little worried about her appetiet lest she will be fat . I used a strategy which is to take a concentrated attack against the one of the opponents , who is weeker than the other one . The games remind me of two defferent feelings . The one is the law of survival and the other is the story of the ' Hare and Tortois ' . I want to make friends with someone who lives in a foreign contry . Today my vaction begins . I wana sleep soon , but I have a lot of homework . I hava to start studying now ^ ^ ; Today , some laggages arrived at my home . ( I used this airline to go to Europe last month , and transitted in Russia . It was very cold there . ) Some georgrapers say `` there are no places on earth that have not yet been explored . `` ( But I thnink human beings actually have n't explored the bottom of the ocean at all yet . ) because only little girls are horeines in his works except for this one ) Nobody belibed in the testimony of his father , except for Pazu . The girl who came down from the sky , whose name is `` Sheta , `` had the magic stone , and she was pursued by the army because she knew a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheta . There are two kinds of high schools in the mainland - - jounior high schools and senior high schools . Compared to jounior high schools , the teaching quality of senior high schools are considered more effective on the students ' future . Some schools would even damand that girls can not have their hair long enough to reach their shoulders . I 'm goint to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . from 9 . 15 p . m . to 8 . 20 a . m . : gogo kyu - ji jugo - fun kara gozen : juichi - gatsu nitsuka , mokuyobi When we were at Tennoji , we were spoken to by some drunkun . And please let me ask another qustion . Tomorrw . Hopefully you can help my Englis . Beause that was far from school , and the holiday was very short . During three weeks our reserch group that includ ecologists , zoologists and microbiologists , will be studying wild rodents and their microbal flora . This is the first timr that I have seen the entire school covered with snow ! I thought it was rude to put loggage in a seat , so I replaced it on my knees . Because I can use any vagetables and it tastes very good ! ! My Mygandmather made MISO and gave it to me . I think the Japanese goverment should restrict where people can smoke , because their smoking affects non - smokers health . If you have any suggestions about how I can improve that , I 'd be really greatfull ! Could you give me some advice to learn tecnical writing ? After that , my proffeser invited us to his house to give us a great dinner . but I will come to the intternet cafe as often as I can . Recently she has been melancholic and does n't do anything , washing something , cleanning , or cooking . . . I used Yuzu tea that I made last November to cook yuzu floavored chicken . Recently I have gotten hokked on Japanese cake . But it 's no use crying over spilit milk . It was like a musium of lifestyles in the 18 and 19 centries . But , I do n't have any frineds there so I 'm worried about my travel . Does speaking only improve speanking skill ? With only a small quantity , it speads and foams easily . I like the convinence but hope it is safe to use . I do not know wheather it is because I have n't done English exercises for a long time or other reasons , but I just feel unfamiliar with the English words . I 've joined a team where I can learn darwing for free . And when I was dreaming , I thought my soul was being pulled by a line and flying to the sky , when I woked up , my soul came back . There were more regret , loss , mistake , repentance , contradiction , indecision inn their young lives resulting from the unperfect ending . and we found some gravy , but they all were too expencive . Conspicuous vs Norticeable dengerous ! ! ! The building is very butiful . Start to read with diiferent views . We also played succor and baseball . For example , Japanese may be diffuculty in terms of respect usage such as the humble forms . It is growing wormer because spring is coming . Yesterday was a National holyday . When I was warking at the office , I felt the earthquakes . One of my roomates recommandate this website to me . I studide it for one semester , but there is one year left for me to study in college , so it 's a pity that I have to drop it and spend all the left time on English to pass the CET6 because I need the license to find a job . I translated it directly frome Taiwanese into English . I was a cartoonaholic . Beacuse I had a good time during my childhood even though I was a key kid . I am 20 - year - old guy and a university studuent in Tokyo . It was very diffculrt and I could n't do it very well , it was bad , but I lerned somethiing today . Please recommand : ) Everyone has a funny or inrteresting incident when he or she was Many childeren wait for Christmas day which is on Dec 25th . We threw her a birtyday party . I wanna , at least participe with something , but I 'd rather have something good . . . I want to recommend a heart - warming movie staring Robert Dinero to all of my online friends , because it can make us reflect on educational perspective , parent - child relationships , and so forth . But I 'm into this completly and I like the story they told us together with it . It is said that this typhoon is similar to the ' Isewan Typhoon ' , which occered 50 years ago . Because normaly this county has no rain throughout the year , all roads and buildings were built with no consideration of rain . What happend when it rains in this country is it causes leaky roofs , floods , and traffic jams . oh ~ ~ ~ late - - ! ! ! I was sick last week - . - ! ! ungelivable I only wish that I could recover from this desease sooner . The Nepalese sause was very hot and spicy ! ! What would you prefer to learn among abovementioned options ? And then the guid took us to Pataya . We did some banana boating , jetskiing , motorboating , parasniling while we were there . I 'm an English lerner . For one of my Englidh classes , we will make a newspaper in English . Actualy , I am always very sleepy duing lectures in class . Also , I woukd love to share some interesting things about my daily life . What makes me think he is a crative person is the product he came up with . When I was in China , I could use my cel just like in Japan . In fact hardly anyone in China owns a Japanese cel phone . I rode in a night - bus from Nagoya last night , and reached Sinjuku , Tokyo early this morning . I thought it was n't serious , and it did n't hurt very much , just a litte . And he told me it might have resulted from lack of the muscle in my knees and recommanded that I do regular exercises to build their muscles . For three years , he murdered 7 women and buried their bodies with careful prepartions , and he reportedly has shown little sense of guilt or remorse so far . What illudes me The deadline for the resume was yesterday and I 'm going to make a presantation next Friday . At that party , _ I found out many coworkers are thinking about their carrers . As I mentioned abobe , it may be one of the characteristics of Japanese office that they are very crowded . I was born in Ooita preficture which is in the Kyusyu ( Kyushu ) area of Japan . After that my family moved to Chiba because my father was tranfered . I thought `` Hey , you wana make me angry ? I don ` t know fainal Fantasy . I reffered to `` Majicon `` in yesterday 's entry . ( The sentence forced them to pay compasation and prohibits them to produce , import or sell Majicon . I expected that there were some people who were agaist this sentence . However , there were more opinions which were against it than I expected before I read it on net . I feel sad to think that DQ9 's release was postphoned due to them . . . . . It is intresting for me to use this site . If my English skils will be better , I want to use this more . My Ebglish skils poor , so please colect my jornal . ; ) I have n't seen every espisod of Bones yet . Repereing Computer I work for a lublication equipment trading company so I often write emails in English . But my freinds went to their hometown . This is my first diary entry after a long separetion . Japanese people are struggling to save energy this summer because several electirc power plants are not operating right now . Goya , or bitter gound is a kind of summer vegitables in Japan . When I was young my mother put a Goya dish and I always frowned while eatindg it . Are there any bitter vegitables like that in your country ? The first dream which you have on the first of January is improtant here in Japan . Unfortunatly , I had a bad dream . You 've screwed up everything , you know ! `` I coud n't understand what he was shoutig and I was just petrified . Usually Susuki grows in the wild , and many Japanese people can enjoy the typical autumn seanery in nature . But , I canged teachers soon . It was a busy 30 minites . This photogragh was taken by me several years ago . It was really great to meet them , simply because , it reminded me of several wonderful momeries of the time I met them . Studying IELTS is not a easy job , I having been preparing for alomst a year In the last English lesson , the instolactor showed me this site . It 's a youthful moivie . When I got into Dinosaur class this moring , I opened the door . . . . . . The first one I made was I hoped everyone could have good helth . The second one was that I hoped eveyone could remember me after I leave . I do n't have a place where I can sculpt , so I make things by paier - maches . My head itchies . I 'm wondering if there is somesing I could do for victims of this disaster . My job , working in a cafe in a department stor , was busy . This is my nineth entry . I wonder if I can continue to write in this dialy , but I will try . The Heike people were defeated and disapeared into the sea : samurai , a Buhhist temple ( Amidaji ) near the sea to ease the Heike 's spirits . performing peoms and playing the biwa ( a kind of guiter ) and his best She is bright like the sun , athletic , postive . I can see the ocean every morning because my univercity is near the ocean , I think we have fewer haliday than other countries . But I ca n't deside what to cook . This website is written by a member of a Japanese ecnomic think - tank , so the contents of the website is related to the economics , and all contets are written in Japanese . You are too concerned with what was and with what wil be . Now the olympic game is being held , and whenever I see the elected athletes from all around the world , I think this documetns really suit for them . The weather is urgly today . The couse itself is dull while the teacher is more boring . Well , I did n't like the techer neither , especially today . After two classes , our task was finished so we went backe to our campus . That means I ca n't go to the huuuuuuuuge summer sale once in six months whici is right now at some wonderful and famous shops in Tokyo . Omgash , it 's killing me . . Actually , one of the my foreign friends had never known about certain grammatical terms such as `` phrasal verbs `` or `` prepositional verbs `` befoe I asked him . So I guess it would be difficult , of course , but I do n't think `` it would be impossible `` to think in Enlgish . I only earned 500 yen ( 5 - 6 dolloars ) with that in a month . `` what is your strong poin ? `` Today , I tried TOEIC test . He got a holyday before GW because plane tickets are verry cheap . I do n't get a holyday before GW ! When She was working near the Uno port in Okayama she met the sargent of American air force during Warld war 2 . but we . could n't usally have conversations . In my book , they say that in Okinawa many people live untill 100 and more years , is it true ? Of course Michey , Minny Donald , etc . were also there . I 'm living in Yokohama ( next to Tokyo ) , working at game macine maker . I 'm wrigting a manual for installation , maintenance or conversion . My university does n't provide us with a good enviroment for studying . I was very disapointed . It is a university in America but there is a campas in Japan . Yesterday I bult up the Chrismas tree . when my dauthers were much younger , I felt it was too big a tree , Becouse my daughters can do it themselves . But I desited to keep it every year , even if they leave in the future . I am hooked on vegitables On wendnesday I was sad . We were shoping around the market . This is particulaly in Japan . But when I went to university I learnt that English was especially impotant for my future . I can give my opinion in simpl words , write , ( with mistakes , of couse ) , and undestend other people if they do n't speake too quickly . I learnd it is important to believe each other and to make a good partnership . First , we are reading a book about stock for bigginers . There are two kinds of peple in this world . . Today was another hobrrible day at work . PS : rewirite or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too yong , but I want to learn English very much ! ! ! I do n't think I make any preogress at all . I enjoy studing English now . Anyhow , let 's pray for him because he died from the pressure of the mass mdia . My first dialy Thank you for reading my dialy ! However , this trial account is even more inconvinience than the Korean WoW server trial account . And , I can only make a n original character race such as human and orc , etc , but I ca n't create a race from the expansion pack such as Drenai and Blood elves . First , I would type Torquay , after of all , there are some unnecesariness characters , ' r ' . hallo ! ! Now , I 'm styuding Korean in Seoul . I have been studing English in another country before . Writting , Reading , Talking , Grammer , Listening , or Pronunciation ? She is really beautiful , atractive , and fluent in English . She is the one who really encorages me to work hard in studying English . When I see her acting in movies , I feel that it is possible to master English if I try hard . Laterly , I feel very , very boring ang upset when I have to study . I dont know what 's wrong , it is just boring ! Why is ' on ' used in this sentense ? My favorite bands are Dream Theater , Yngwie , Steve Vai and also like Bullet for my valentine these thesedays . The differences between `` ( jorunal ) `` and `` diary `` A week later , I am absolutely disappointed and desperated . Instead , the hair desingner ruined my hair . If I get PR ( Permanent Regidence ) through RSMS , I need an IELTS score of 4 . 5 ( overall ) . It is a famouse method also in Japan . Summer vacation for the elementry school that my kids go to will be over at the end of this month . I Finnished the test ! ! I 'm bery bery tired . When I heard that news , I could n't belive it . I bought some fruits and drinks for her in a supermaket near my house . It made me nurvus , but it was finished so easy and early . I 'm looking forward to going there but forcast says it 'll rain both on Saturday and Sunday . It 's rainning . I want to go home but it is rainning . Dmn ! I left my family when I enterd colledge in Tokyo . I moved to my next apartment when I graduated from colledge and enterd my current company . cause and because how are they defferent ? and if you have some examples and can give me some sentense using the two words that would really make me happy . Thank so much . And I think it 's one of the best doramad that I 've watched . And I love when he plays the violine ^ ^ Becouse I had n't thought about it before . I read books on the couch outside , had breakfast and lunch by myself , worked for my profeccer on my laptop in my room , took a nap for 20 min and played basketball between study time . I thought Pruett 's house is the best environment for improving English because a lot of students visit their house and I can talk with them naturelly very often . Yesterday I had an entrace ceremony for graduate school . Today , there are many useful tools on the Enternet . I performed SAMULNORI at school with ( some ) Vietnames people . In the atfernoon , although I am not a Christian , I went to ( the / an ) international church in Vietnam . There are many tasks comming due . Roony is wonderful ! ! Nobady opposes her topic , on the other hand , someone could oppose my topic ; for example , if you have a friend who did n't drink , this person can be checked instead of a driver - something like that . If she wants to make a speach about not drinking and driving , she needs startling reasons . We are not crashing the office or anything , but we just feel freelier than usual . All last week I was dreaming about stretcing out on sand at a seashore . Yesterday was my friend brithday We are best friends because we have the same spirit of a social - worker and we share company proble with each other . However , I have to write about social ploblems for an English exam ; it is called IELTS . I remenber my friend whom I met last Sunday in church saying , ' ' I 'm only a newcomer ( as well as me ) , so the thing which I should do is doing things which faced on me , I think . ' ' As soon as I woke up , my little daughter asked me , `` What 's for breakfast today ? `` I was thinking for a while and then replied to her , `` Let 's make pancakes ! `` We then took a bag of flour out of the capboard , and a carton of milk and one egg out of the fridge . This is my fifth dialy in English ! It was hard to write the dialy for me because I have been learning English for a week . Recentry , I bought an iPhone . I installed some useful applications , such as crassic books for kids and dictionaries . but the episodes are saved on the recoder . Second , they usually have tatoos on their back , so if you want to know whether a person is a Yakuza or not , please go to an onsen together to check if he or she has a tatoo . Not all people who have tatoos are Yakuza . On Sept . 20th I went to Haneda airport early in the morning with my dauter and her husband . We were very disapointed and we had to change our plan . My One of my best Assuie ( Australians call themselves Aussie ) gave me that nick name . The relationship in the story is very complicated but the story relects a lot of actual things . He earnestly took arithmatic and Japanese class . He execused his manner , but I did n't accept it . I conplained to him too much . Tomo - chan `` wears `` the laundry basket like a backback , and says , `` I 'm a turtle . `` The Japanese Ministry of Aguriculture recommends for the Japanese to eat brekfast until 9 o ' clock , so I tried it . scrumbled egg with mushroom souce , pumpkin and asparagus salad , miso soup , rice and a tangerine Now , I only make a lucn box and I pack it with a banana in the morning . I always go there by car with my . hasband . Buying groceries for 7days , the laggage is very heavy . On the way home , It 's difficult to contorol the bike because of the heavy . luggage . Especially , I wanna ride on a roller coasteru . : ) My daughter always wears a one piese dress . Some customers thought that I had a baby , becouse I had professional knowledge better than most mothers . The doctor took my temperature , but it was only 36 . 5 degrees celcius . It was rainning and cold . Do n't regrat ( it ) , just do it ! Today I 'll forcus on my balance . I want to write and speak in nglish fluenty , because my dream is move out to the UK . I am so surpried when I read those statistics stated above . In my opinion , you are very busy studing and working a part time job , so you do n't have enough time to look after a dog . For example , although `` Annie Laurie `` is known as a nostarsic song ( ? ) in Japan , all the people ( or everybody ) in other countries may know it only as a love song . Japanese peope often import songs from other countries , and change their lylics to suit the Japanese people ( or market ) . The lylics talk about trekkers on the mountains who climb the `` Nihon Alps ( high mountain ranges in Japan ) `` . Writning in english is fun for me . This band is definitely on top of its game : a hansome frontman , a magical guitarist and along with a bunch of Grammy - award winning songs have gained them international reputation . The guitarist Johnny did the best in defining Coldplay by his `` outter space `` playing style , which is simple but awesome . Normally , many bands ' 1st albums are full of noise and aggressvie grooves telling how they are so tired of their own lives . I am going to Sheattle this summer to meet a highschool classmate . I have no idea where to visit in Sheattle . I want to make many freinds . Hello ! first , I introduct myself . I falled in job hunting , and I realized `` I do n't have the talent and skill . I 'll chooe the heart . It is one of the leading hospitals specializing in cancer treatment and cadiovascular diease nationwide . The main hospital of Samsung is located near Ilwon Station in Kangnam ( Gangnam ) , and we have 10 brachs of the hospital in Asia . curently , more than six thousand employees are working at samsugn Medical Center , and they are very active . My hospital is very supportive of me , and promissing . In these two days , a Japanese teacher tought us , but in the next two days , a native English speaker will teach us . I awoke becouse of a big pi - ki - ji - sound . Though the space project is good , I sinserely hope for the research to cure cancer and tinnitus will soon beas soon as possible . I could choose between teaching my cousin English or saling unbrellas with my grandparents . Every time I teach him , it drive me crazy ! So , I chose to sell unbrella with my grandparents and they agreed . Because I did n't know how to sell unbrella , I sat on the chair and looked at them . I finally understood that saling unbrella required a lot of information , and I found it difficult to make an unbrella . A lady asked me which one she should choose , and I didi n't know what I should say . I started learning how to use PCbecause I 'm going to get one of quolifications of Microsoft in order to get a job . The biginner course was too easy for me , but the intermediate one was too difficult for me , but I could enjoy both classes . It 's a big and nice one , but I felt the neighborfood around the skate park was insecure . I often saw police officers around there . She is a very popular singar in Japan . But in Canada or other countty , students do n't seem to work or concentrate on just studying . If I tried any more , I would have definately drowned . As soon as got back home , I went to bed and slepe until noon . We ca n't afford to support old Japanese poeple anymore . Recently , electronic tecnology has improved so that it is usual for people to have a mobile computer such as a laptop PC or a cell phone . However , at around 10am , it was just after the listening section , I was deeply desappointed in myself . I was sitting on the farest seat from the stereos . I think they may be feeling inserure about their financial base . Finding out that all the sprouts had wilted , he gave up taking care of them and he did n't pay attenton to them anymore . I complately forgot to pay attentin to them for two or three days . Do you kmow `` purikura `` ? The main idea was OK , but there were so many incoherences . I left home on my Motocilce and ran to arrive at work . however , others hould that there should always should be a formal distance between the teacher and student . I was inpressed by the superb scenery there . I feel soory for my mum . My children will participate in their elementary school 's sport festival on next Saterday . On that Saterday morning , my wife and I will get up early because we will make lunch box for my family . Their fathers usually have camera or a video recorder , and shoot a good sean . While I was listening to the radio while studying , I happend to hear that song . Afterwards , I listend to it many times while studying . That song supprted and encourgaged me while I was strivng to pass . I read an article about people who work at the Fukushima nuclear powre plant . They get only a 1 . 5L bottle of mineral water evry day . I think there is a risk from radioactivivity . It was before 7o ' clok but I could n't get back to sleep . When I was checking the web site of the local newspaper , I found an interesting atricle . I went to the theater to pass time untill my lesson . Docchi ga anata no usagui desu ka . Anata no usagui wa docchi desu ka . In Japan , most Japanese high school students study at their shools for three years . When they are in third grade . They have to decide which universitry 's entry examination they will take in December or January . I was suposed to transfer to another line to go back to Chiba prefecture . I just came from the company . I bought things in the Seven - inleven in my building before I took a bus . Although I have a talking tokingdictionary , it is breaken , so I ca n't expaint it to you at the moment . Sorry . I 'm want to study abrord , so I want to work more ! By thr way , I took the TOEFL last month . I need to prove my freinds wrong with my English . Because I told my friends that I will definately speak English like native speaker . It is difficult to learn Englsh . Only unmarried women can wear Furisode on celemonial occasions . I have to prepare for this celebration becouse I 'm 19 years old now . So , now , I 'm studying a lot of things in the Meisei University liblary . What is your hoby ? My hoby is cycling . And he gave me a nechlace as a souvenir . The names are Rute 70 and 188 . I already knowen I need to remember the rutes . But today , I was lacky because I just waited 10min . The young male doctor I know is only interested in his carrie . with sadness , I could n't do anythinig well . From feeling like this , I ca n't do anything today , and I want preople I know My thohgts and problems are progressing in both good and bad ways I think they have strong motivation for working and learning but they have no self confidence , so they can not try getting a new enviroment . They should have the power that they can still go to the future even if they faild . Now my wife is making preparetion , making herself up , winding her hair . We will try to visit an electoric store and a drug store befor we go to the firework festival . Patric Day , Black Friday and so on . Let me make a brife introduction of myself frist . My name is Lin but my friends allways call me Linny , so you can call me Lin or Linny as you like . I love English , I hope I can make friends with some native speakers or enlish learners like myself . Maybe I have no chice except to surrender . I went to the library today and brrowed a book ! I 'm comefrom China This is the second time I soverslept this week . I do n't think I will be able to spend this summer if there is not an air conditionar . ( more natural ) So , I 'll try to not use an air conditionar in my house yet . Did you use an air conditionar yet ? On wendesday , at 5am , I will get up to travel by plane . But , the books I realy liked as a young girl were adventure books . Anything I read teaches me somthing : different ideas , new ideas , understanding and knowing how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I will study Einglish tomorrow . I 'm looking forwerd to Golden Week . wasting your parents ' mony He was so angry when my hasband and I tried to carry him in our arms becausehe wanted to walk wherever he wanted to . Last Wednesday we went to the playground where we could play soccor there . ( He alwasy sleeps only 3 hours ) , I just caught a cold , so I didi n't study well . I felt I weasted too much time . Some people said that they have a very good weekrnds . However , it is colder in January and Febrary . . . The water tepmeratyre was still warm . It happens when you do n't want to tell a lie , but it 's neccessary . Please correct me if I make a misstake . It was really hot and humed yesterday . I 'm intrested in Hawaiian music and Hawaiian language now . There I will be working as / will work as a foremaster on the construction site . When we were midle school students , though we had a long vacation but had to make up for the missed lesson . One thing I leaned there is how to smile in the offce , which you use Levator anguli oris muscle when you smile . When I was sitting on the bench , watching the rain downpour , I thought that this was the first time in decade that I spent time just waitng for the rain to stop Watching the rain with doing nothing was very confortable , as my mind washed away . It 's a good chance for me to learn engilsh , and help people who want Chinese girl , bron in Guangzhou and live in GZ It 's cool and cleaniliy . Today , I got up at 7 : 30 and ate brakefast , then I washed my face , changed & I greeted my boss who is in charge of financial depertment . Both caces are very stressful . I bought a text file imput machine called `` Pomera `` . I 'm appreciative of the improvement of Interigent technorogy . Chocolate , Chandy , Cookeis . , Japanese sweets . . . But in Englsih , does the term . . . Job responsibility `` really make sense ? What will everyone do tommorrow ? nowdays It 's a midern Exam term in kun univerty I have already taken the exam circuit anylisis . computer mathmathice . but now I ca n't sleep , , the reason is mabey I had drunk too much It 'll be morining soon . I need to sleep , in oder to end today ( ? ) As soon as she enterd the room she screamed , looking the wall . Most of the time I 'm not takative . Now I 'm studing English . I always think that Taiwan is a country embrased by so many external cultures , so Taiwanese easily accept foreign things . Even my professor who is from America told us about this situation in class beofre . I wonder what you guys think of this phonomenon . Are Taiwanese xenomanias ? That does n't sound too hard , I could just translate my oringinal report from Chinese ( in ) to English . . In the dispressed end , there are only 594 words in it > < > < > < Please give me some possitive feedback to encourage me ~ I 'll be fully energized ! ! ! The picture was shooten in a trip in Tailand last year , me and my friends cheering together ~ I sensed a taste of Japaneseness when I soaked in them . I also increased my love for hot springs ! I have taken on a very important and ciritical job . the number of coustomers reaches 700000 . I hope you will find happness , because you deserve it This place has the beautihul sea , beautihul yards / gardens ( ? ) , and delicious seafood ! ! ! I lived with my grandparents untill elementary school . I was the most popular student among my school classmates because I was the funnist in my class . I like travel , too , and I am intereste in lots of places owing to reading many books . I need a help to correct my scentence . Een hertwarmende video ( in het Japans ) If you ca n't see the `` Ranking `` or `` Footprints `` page ( s ) , please push the ' F5 ' key on your keybord to refresh the page . He painted the pictures that were displayed in Ameri 's room . Do you know `` Ameri `` `` Ameri `` is my most favorite movie . This postcard is the same picture in Ameri 's room , of course . 2 : In the parallel world , there are NO SUCH THING AS cratures . When we were all full , the wife told us to wait a minute , couse the hairy crab would be ready soon . Of cource , it is very important and I will never deny the party itself . Look at Anna 's notes about her trip to Pradue and write quastions for the answers . This is very famous buddhism sentence . The horn of a rhinoceros is just one & strong , meanning solitude and strength . actully I do n't know It 's because I went to bed at ten last night and gou up at five . I was watching TV and I fell asleep unknowingly whithout covering my body with a blanket . After swithing it , I could not use some of the applications . This is why I cleaned my room for the first time in 2 yeras . There is nothing but rice fields in my hometown , but I feel lonly for Tourism is not that big in Japan . The Japanese government wants us toproduce someting like eroctronic . Today there is a dorinking party Yesteedya , I worked , in one day , 18 hours . They chose Bush as their predident . . . And I think this song lyricks is cute , a little : ) I 'm hopoing so much he 'll became popular in Japan . With fish or beens , you can taste it better . No one can expect what will happen . [ Now ] it 's time to rebuld Japan ! He lives in Sendai which has been suffering from the big earthquke . I do n't kown why . Nowadays , I think I have been depressed about studying Engslih and working hard at my office . Because I have n't drivt the MT car since a year ago , my left foot sooke . I can listen to a beautifrl song and learn Englsh . I hope that everyone like me can use this way to learn a forein language . Driving Licience As I remembered last year I went to take the test for my driving licience 3 times . The first time it went okay . I passed the mutipled choice test then went to the driving test . Above setences derive from `` URL `` So , I often go on bussiness trips . To visit many cuntry is very exciting . I think that it is easier to learn French over English because my mother language / native tongue is Spanish and is similary to French . About neclear power generation stop all neclear power plants ? As far as Fukushima neclear power plant is concerned , it operated My son got the flu last thuirsday . This winter ( holiday ) I trid Acupuncture and Moxibustion to help lose some weight . . . But it 's an imoprtant part of old Chinese medical sciense . A man was walking with his balck dog . I attend a class to pratise my oral English . because I met my ex employer when I worked at Jinsoo accadaemy for 4 years . He is still a mento to me . I 'm looking forward to getting a free cupon for SC2 A few days ago , I met a friend of mine and he said he will give me a cupon for SC2 . actully , I really like this game so I thoght if it is posible , it will save me money Sometime , I went to the PC room with my firends to plaing the game . I think it 's very important to explan my thoughts to other people . For example , why do I want to be a medical doctor , how much do I study per day and what do I do when I 'm tired of studing . I think I spentd quality time with my firiend . I made it yesterday , however I could n't eat it completly , so I ate it today , too . Their parents were youger than me . Some of the students spoked to me . And some accessories on my ear and neak ^ ^ < < All school students should study practical skills such as car maintenance , managing a budget , and accounting , along with with traditional academin subjects . I can crealy remember that day and that moment . On the menu , I found a ginger - favored drink without alcohol . Various types of wind - bells are exhbited and sold there . We can hear Chrismas carols everywhere we go as Chrismas draws near . What will I do on Chrismas ? YUKI is only guiter singing . I want to go disney land in America and China too . I was feeling was so happyey that I forgot about my cough . conventioal wisdom On the othre hand , they have gone through to the final . My first daiary These movies were made by Japanese stndents . Because today is the day before the holidayfor childeren . The rain rainforest is also an important earth resource . I wii go to a park in the neighborhood near my house to play catch with my boyfrend . Next term , I will be very busy . I have to prepare for the TEM8 and post graduste examination . I work at a restaursant as a waitress . Maybe that is why I 'm writting this diary . Three days after today is the moon festival , and I sincerelly hope that I will be able to see the moon hanging in the sky , and smiling at me ! ! ! I was very happy to hear that and recieve her letter . but exercise is good for our healt and help your face look youngerthan you think it is . Chinese harbal medicine These days , I drink chinese harbal medicine for health reasons . 3 is a misterious number . I hope we can have more chane to see each other , because we are family . But I am confused cause I have no idear how and what should to do . This is first time I write dialy heae . Today , I wroute a comment to other 's dialy , for the first time . I couldn n't use Lang - 8 for a long time because I was very busy One of my roomrates had an unfortunate incident this afternoon . But I should find a different way to solve the problem using courge instead of complaining . I share my mant things with her . So , if you have time , please correct my jornals . Today I left my class 15 minutes before it finished becuase I had to finish some homework that was due for the next class . The door was in the fron of the class so I had to pass the professor to exit . I later found out the homewok was not due today . This was because the House of Councilors election was held in Japan yesterday . On this site , we can build vocaburary and practice dictation . Now lots of Japanese are learning English on iknow , and if English speakers start to study Japanese there , we will be able to help or cheer on each eachother . Each team has its own studium around Japan . Sometimes have to work till late , but I really love my job because it was my dream to join this industry ( I can watch the newest movies / tv programs prior to their release ! ) and my collegues are all good to me . I dod n't know if this character is a penguin . Even thougt I was feeling really lazy , I went there . I dont ' know whethar she can remember me or not , anyway I feel happy to see her . Recentry I have been watching American drama `` Lie to me `` . Especialy Lightman ( He is the main person ) speaks very fast and munble ( not clearly ) . I am ashame that I didi n't write here for a whole week ! : ( Does anyone know how to treatmaent this bad illness ? . Which illness is that ? . Has anybody seen fhe film Brazil ? My dialy . It is the first time Iwrite in the dialy on this site . WhenI was a junior high student , I used to write my dialy in Japanese and I quit . After that , I sometimes write my dialy in English . It 's instractive for me to memorize words . I have many friends and when we met last weekend , we were smiling and joking , we had desided that : All will be well ! ! ! I realy hope thet our God helps us . I have become 24 years old the day beefore yesterday . Live and lern ! I should lern more and more things . She baked me a cake and cooked me delicious food like a restaulant . I 'm little shy , _ but it 's just that some peole do n't real know me . It was funnier was when I was walking in front of her house and I passed by the windown where he is placed . It 's simple , friendly , easy , sometimes exciting , and sometimes motional . I am studing English . poublic lottery I buy tickets for the poublic lottery . If I were to win the lottery , I would want to traveel . yesterday , my skype establisment has no image . Tha 's miserable . Therefore , I draw picture with photoship . Oh , soory Ms . I felt it was diffecult . Second , some sountries require children to do military service . I think that good educatio is to present many subjects for children . In Japan , the Emperor decleared that we wo n't take part in any war , so Japanese do not hava a conscription . Japanese children learn about the wars in school , but those knowledge are important hidtory . Japanese will think that wars are not good , so we do not have to takje part in any war in the future . I am very much confue about can , could will , and would forms . I 'm a universti student . I will probably be exhoust , but it will be exciting . I usually spend time watching DVD 's of American drama to studay English . He made three rules : do n't be late , never be absent and do whateve he asks . From now on , I wll put the posting dates as the titles . Dictionaryies define it as something fortuitous that happens unpredictably without discernible human intention . Finally , I cutted my forsythias , my Japanese apple tree , my lilac , and my thuyas . To achieve a certain goal , we should make an effort even if we are poor , meserable , or the road is hard . Recently I have been seekig a new job which requires me to use English . I need to get a high score on the TOEIC test nenx month on Sept 11th . This club 's name is `` English discusssion project by a student . `` I said to an advise , . `` Sorry for the short notice . May I take part in your discussion as a club - menber ? Tateishi is a city for blue coler workers who wanna drink alchol delectably and inexpensively . I feel my brain has completely swetched from English to Japanese mode . Because I love music I want to understand lilycs . Because my older sister married an Italian I want to speak with my new blother . . . It has a beautiful and magnificent melody and romantic lilycs . Our teachers gave us 33 words on the board , and let us choose 16 written on the paper , and if four of the words were as same as the ones that they annouced to us and they were on one line , we said Bingo . Then he would go ahead and annouce the words until one of us had all 16 words We had 3 teams competetive . I also want to improve my spoken and Writeen English . Of course I sympathise with the main character , he was so brave to overcome his phobies . She took the test seriously because she wants to study fine art in France in the futrue . Fianlly , what I want to say is `` Hang up there ! Today , my teacher told me that this website is good for learning Eglish or other languages . I feared that she might have investigate whether I was unocuppied or not . I was very greatful to the receptionist for tolding as if I worked at the office still . I anwsered , `` I see . Even though I called the office at 5 pm , the automated appointment system automatically told me that my appoinment time was at 8 pm . ( When the office are already full of pacients , the system does n't accept me . ) I picked my little daughter up at her nurseryschool school first and I went to his elementary school . `` His fever was 38 degrees C at that time , and now he developped 39 degrees C . After returning home , I left my little daughter with my hasband and took him to his home doctor . At the office , there were so many pacients . When he listened to my son 's heart with a stethocope , I saw a fresh wound at the tip of the doctor 's finger . I thuoght that he was working so hard even though he was over 60 . If his fever goes down , ( usually his fever goes down in daytime ) I 'm plannning to take him with a buggy . Cold Weater In Kyoto , there are many hisytorical monuments , shirines and temples . After that , I wached the movie `` high school musical `` in my room . After the object was gone , we started to see a series of images proyected rapidly in the sky . Hi evrybody , it 's my first time using lang8 to make friends . Starting tomorrow , I am going to stay in the dormitary of my university for the summer vacation period . The reaseon why I decided to stay there , is that I just want to focus on studying my major . My dream is to be an English teachr AND I am already a junior , so I should prepare not only for graduation but also for the teacher certification test . Have you alrady received a call from him ? He 's studing Japanese very hard ! ! ! I somtimes eat it McDonald 's . They started to grow lettuces to use their humberger in a shop . Today , I went to a museum for celeblating cultural day myself . A few days later a beautiful girl appeared at the grandfathere 's house . But I wish for you to never look while I am weabing . They could hear sounds of weabing . In my recently watched movies , I liked `` Milk `` and `` changiring `` . Mathematics and the Russian language are compalsory for all of them . I belive that sincerity could touch god . enjoy home homeparty sometimes . My apartment is not so big , so a maximam 4 people was OK . I was excited abount inviting my friends over again . Nights in Paris are becoming a part of my dreems . . . Fall is my favorite srason . First is the color of sky is yery beautifull . Second is the color of leaves is so beautifull . Because of it , I ca n't get motivated to study or play sports . It 's now clear to me that the most important thing is staying healty . ( - _ - ; ) I 'm always told `` Do n't follw strangers whatever happens ! `` by my mother and teachers but it was an exception , is n't it ? We had our senior guraduation celemony on March 16th and it was very important for this school . All students try to study or practice club activities till the celemony and promise that we 'll be the people who contribute to world peace forever . But , students ( excluding seniors ) were n't allowed to attend that celemony . There were a lot of things which made us sad but we never gave up ! For example , we do n't have enough electricity because of the Fukusima Daiichi nucleear power plant disaster but we try to save it . Took an Englsh Lesson . I 'm gon na wirte a diary about my English lesson yesterday . My first dirary on Lang - 8 I learnt about this site yesterday in magagine . Lang - 8 is introduced as a good site for learning english for free in this magagine . So , I registerd on this site to study english . But , unfortunately my english skill is poor and not good enough to conduct buisiness . I would not reccomend you to use this word . On Taketomi - island , we stayed in the Japanese - style hotel and enjoyed awimming in the hotel pool and beautiful sea . Nowdays one of my British friends want to speak with me by Skype . I will write it in cofusion , and the composition will have never have a theme . Thirdly , my listening abilities are terrible , so I am afriaid of talking to anybody in English . I also have n't made visible goles to learn English . I think that when I achieve a heiher level , I will not be able to continue learning . In ' process oriented writing ' , students are required to revise their draft acoording to the feedback given by peers and teacher . Through this procedure , they can improve not only their writing skill but also the communication skills by having vrious opportunities to interact with peers and the teacher . Natural order hypothesis states that the acquisition of grammatical structures in a second lnguage follows a predictable order . She ignored the fact that learners were not ready to acquire the grmmatical features she intended to teach . Before I came to New Zealand , I contrancted a homestay for only 6 weeks so I have to leave tomorrow . I got myself a summer vacation by a miracle . ( call it a miracle because I 've got this kind of vaction for the first time since I became a doctor . ) Lang - 8 does n't send a messege to everyone from a mobile phone . I will send a messege and correct everyone 's diary tomorrow or the day after tomorrow . Yesterday , I ate sushi first time in my life ( I know that is a little shame , becouse I 'm fan of Japan culture and . . . Wheather is strange sometimes . In Japan there are some bars or restaurants where you can eat raw meat like Sashimi beef , checkin or horse ( but not pork , I think ) . They said that comics were less refind than literature books and that reading comics made children less smart . Teduka was also an eminent doctor , which made the criticizm die down . I wonder if it is a problem I have ( I 've ) had since primary school , and it 's probable / likely that I will need to begin practicing . The goal of this game is to arrange bricks the same as shown in the corner , by picking up , sttepping over , throwing bricks , etc . During this weekend 's holidays I had a good oppotunity of going a civic concert which was held on a hall in a down town , My sister in law lives in the city though she took part in the concert as a performer . And I also want to make diffrenent friends from other countrise . The 70th anniversary of the birth of Jhon Lennon is Oct . 9 2010 . Spearking of Jhon Lennon , here is `` Imagine `` . It 's the last week in my onw city , before I 'm going to move to a big city to study . Mushroom - picking was difficalt for me . But parple is different . parple is eerie . She proudly talks to me with a smile or she seliously talks to me , and she looks like a swagger woman . Every middle scool teacher uses this phrase for teaching students the basic structure of English . And other examples of conversation in reference books are more wierd and bizzare . I will graduate in 4 months . I aslo need time to improve my english , only do better and I can find a good job . I love English and the culture of English - speaking countries and also my own lanugage and culture . in recent personnal changes , I have changed my task . It 's pretty exsiting ! ! Actually , I hate summer beacuse in Japan , it is very hot and humid . I want to know about your contry 's traditional New Year 's Day . so skieer from foreign countries came to my town to enjoy the snow . My hobby is reading histrical novels . Recently , I am interested in the histry of France , though the histry of Japan and China are my main interests . Anyway , I 'll write about TABLE FOR TWO ( which I 'm invloved in ) next diary . Althogh it is not a Taiwan 's based client , ( Chinese client ) I can still play it . Thanks to the public holiday , the restrants were n't crowded . It 's not nonsence , Navi means butterfly in the movie too Today , I 'll tell you about a Japanese famous comic called `` ONE OIECE `` . For the first 5 minutes , each of us made a sequence by yourelf . Then each team had 20 minutes to discuss , make a final decision on our team 's results . We had to choose one member as our spokeman to make a short speech about our result . But , it was hard to get that kind of chance because someone would start talking before the spoker finished . The first time I called , no one anwered . Besides that , two of the many questions he asked me were how I made the number for salary expection and if that was resonable . Also I will help anyone who studies the Russian languegies ! My friend recomended Lang - 8 because he knew that I 'd wanted to make a foreign friend and improve my English skills . Tonight , I walked along teh river , enjoyed the wind , and relaxed . He speaks fluent English , Friench and not fluend but he speaks good Spanish . I speak fluend Japanese ( yes , I 'm Japanese ) and `` fluent bad English `` . . . I got holidy for a five days . Whenever I needed to celebrate somehting , I liked to buy shampagne . What are your faovite drinks ? although the bil is controversial , goverment passed the bil that minors ca n't play the game during midnight after 29 , april , 2011 It is expected to curb the habbit of minors who play games for a long time My daughter is 10 manths old . Jindaiji park did n't seem like a place that is only 30 minites from Shinjuku , because the area was very calm and has an old traditiona atomosphere . Recentry I watched a movie titled `` What happened in Vegas ? `` I have some umfamilier expressions and grammer points . 2 ) I think this grammer is incorrect , right ? I also drink a coffee that I gring from my office in a water bottole . `` Into the wild `` , `` Samsara `` ( by ) Tomka Michniewicza and the `` Lord of the rings `` trilogy are my favorite . I try to read regulary . I Promis ! ! To tell the trueth , I used to go to the same gym 6 years ago . Why did this happend to us ? I learned that trobles give us pain as well as a lesson . Whould you visit Nico Nico Douga ? I 'm going to meet a new freiend that I met at a bar last weekend . he is from Russia , and is a student at a unnivercity in japan . The TOEFL was canclled due to the earthquake and limited electorcity in Tokyo . JAPANESE PEASE I 'm not quite sure if forigners make peace signs when taking a photo . It 's intersting . Long fligt The novels were writte in Japanese . Becouse I study English these days , I always read children 's English books . While I was alone I was desperatly trying to work for a greater good . That tought made me sick to my stomach . The words seemed strange or even distant , like they were adressed to someone else . I wonder , do I really diserve this ? I was so suprised that someone actually tought about me , that I counted somewhere somehow . I really apreciate everything and I will try to be a better person . I was trying to change my password for my Hotmail account , but then I could n't enter my ID even though I remeber my password correctly . I would like to cry . When a customor sends me e - mail to me , how can I get it ? I felt so loney ( facing this day by myself ) I missed my prarents and friends . Happyness is important . I 'm loven ' it ! And , I 'm loven ' it . I seriosly need staple foods . It is one of my favarite quotes . When will tha dream come true ? A few days ago , I started to lern Russian . I 'm learning English because I promised to practice English with my ancle last year . However , my frige was almost empty , so I needed to go shopping . I am attached to my club because I feel warm - heartedness , friendship and affection with seniors , jumiors , and companions there . Anyway , Thank you for reading my writing , and I think my witing has many , many , many errors . Perhaps you know , that was because there is a story that an earthquale will happen in Aichi or Shizuoka prefecture . Bacuse I ca n't go outside so maybe I 'll study math , society and histroy I would like to have a fridnd like her ( * ^ _ ^ * ) / And then , I ate lanch and went to English school . After the dentist checked all my teeth , one of the dental hygienists cleaned my theeth and scraped some tartar . I want to watch this movie in IMAX 3D theatre , So , unavoiably , I will watch it in Ilsan ( Which located near Seoul ) this weekend , but I wonder whether it will still be screeningthen . I think the all chilkren love today too . When I was a kid , the happies day was Chinese new year . Needless to say , it does n't matter what color you are or which nationality you are because color is just a concept and we are all special , but sometimes it seems to be a little hard for us to understand and acknoledge differences because of the lack of the oppotunities to interact with people of ohter nationalities . I saw my class is very fuuny . They were always yawming and their faces looked like they were miserable and bored . Looking for a roomate and a Stadium Also , looking for a roomate is a sort of frustration . However , it 's not easy to find a good friend ( roomate ) . Today is application day of & nbsp ; TOEIC Test . The effect of Grobal warming causes this abnormal weather . I was startled but then noticed that she learned the phrase from a children 's TV program that introduces classic Japanese poems and litterature in a memorable way . He died ealier ( around 29 years old ) , but he did a lot of things to change Japan . Then , my daughter said with smile that she was looking forwad to the next day because she did n't know what would happen . It 's amazing that they held a concert in Taiwa . In Taiwan , not a lot of plople know them , so when they came to Taiwan , I was so excited ! ! I hope other foreign musical groups , can alaways hold concerts in Taiwan ! ! I found the movie mature and realy touching . I think I am fat , I should do exercises and eat more healt ! . I 'm study in the University of Arts of muy contry , I 'm learning song lyrics ! . I have a two best friends , they are grat girls ! . My family is very very big , although currently living in my hause is , my dad , mom and my sister . Today , I am going to Spporo for shopping . And none of them are even preety ! It 's only the ugly men who want to meet you ! Amason has started the bookreader 's business . A friend of mine and I did n't thave enough time to prepare for this trip , so we booked a bus tour to see The Great Wall . She is a very kind person , and is always willing to help peopel who need her help . I think friendship is the dearest possesstion of one 's life . He introduced me to this site and told that I shoud try it . I also logged in Skype agin , but I just do n't know what to write today for I have n't kept my diary updated for such a long time . I recieved a postcard from my old friend . I planned to visit Singapore in the midle of May . Until resently those were only used by housekeepers and the industry sector . Now that the flu news spred all over the world Mexicans are treat like leprosy . Rachell ' . In addition , Rachell had been pregnant by Ross who is one of the other friends and ex - husband of Rachell . `` Staying healthy is most improtant in our life . `` I totally agree . . . . . . . . . I 'll do the laundery and clean up the room . But I ca n't retern to the nice rhythm of life . So what shuld I do ? Actually I really appriciate him because I knew he was always taking care of me and trying to encourage me , and he did his best for me . I think my speking ability is getting bad . The teacher was my hasband 's boss ' wife . Who can tell me how I can improve this ablity ? ( I accept recomendations for places or courses : D ) I will start to try writting entries in English . Time flies away . Half of my vacation has gone by . I travelled and spent a lot of time with my family and freinds . . . Now I have just one month to relax and do something I realy want to do . Therefore , I am trying to decide how to spend the rest of my vacation . Should I do an intership or just stay at home and learn someting ? Actually , I want to do both of them , but it is hard to do two things at the same time . If I do an intership , when I come home , I will be so tired and exhousted that I wo n't be able to study . Ok , I found the solution . . . Maybe I should try to improve my enlish during the rest of my vacation . During two weeks , I ate lunch in our workeplace . I have asked my teather this question . I think this is one of the strangest things in japanese . It would be very kind if you could check my grammer and vocabulary for me . My answer is abosolutly `` yes `` They , ( people ) , do not just suddently come up and become your friend . Of couse sometimes we fall out over some small thing , but we understand what kind of personality each of us has , and so we can soon make up again . I think the meaning of a real friendship to me is , whatever you decide , friends should always resepct your decision , whenever you need help , they should always try to help you , or ask someone else to help you , and wherever you are , your friends should always be in your heart . I 'm watching The Simson 's family on TV now . The Simsons is an animated film . My purpose of lerning English is to study abroad . How am I momerizing words ? First , I read the textbook of English words and check unkown or vague words . `` Again `` cards are checked reatedly everyday . But I recommanded her to see a doctor before it gets any worse . I read a sentense . I am at Chingi air port . Please cheking my diary ! ! My mother - in - law sent me a text message which said `` Happy bitrhday to you ! He wants to give me a suprise , I guess . I will proberbly get something delivered . And I do n't understanngd the difference between `` my mind `` and `` my feeling `` . But in the US , we celebrate new babies before they are born and it is called `` baby showe `` , is n't it ? The following is just something I heard from Krean radio program . Unfortunatelly , she loves cats . They are going to pay up to $ 2500 to paitients if the paicients qualify . So , the way things stand now , we do n't need to be so carefull when we walk around outside . Even in the center of the city , I 've hardly ever seen someone committ a crime . So , they are fullfiling their resposibility to help this country be secure . And also , the tender and calm desposition of Japanese people contributes to safeguarding this country 's security by adding a synergistic effect along with the steady support of police . It would have been an honored and pleasure to just to be on TV alone , but they also kindly offered to pay me . I changed to playing vollyball . Some classmates were there already . Tanabota 's probability is suppoused to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . To my regrat , I drank all my medicen . So , I 'm going to eat some hot things . I coud n't go ahead because they had been waiting to pray for a long time so we also had to wait for a long time . While I waite to pray , I felt so cold . After I prayed , I went a cafe restaurant and drank a coffe . I hated English at school , because . I failed the excems . The students who can not come to scholl will be behind . Jazz conceret and New York `` I do n't know the difference between US English and Blitish English . Sometimes , I wonder if it 's too difficult for American people to understand Blitish English or for Eglish people to understand US English . `` `` I can not differentiate if it 's US English or Blitish English everytime I listen to someone talking in English `` So many things have happend since I last wrote in my diary on December 14th , 2010 . Carefuless me It could be a good resauce to make a money . When I was a high schooler , I studied English to preper for college entrance exams . I used a runnning machine and ran a long time . I completely feel like dietting is not easy . Hahaha ^ ^ ; ; How can I study well with this helth problem . At the beginning of this vacation , I had a detailed plan : sleepping time , study time , everday workload . . . It seemed to be fovorite content for girls , because it was composed basically of the love story . I went to the consert of the circle held in Kyotanabe campus at Doshisha University last Saturday . This is my first dialy We met with our relatives and talked to each other a lot , as well as cooked and ate a dilicouse meal together . It is difficult to creat a story quickly . They proved to be congenial partener , and they gained both a nice song and true love . It did n't matter to him if the others did n't understand , it was enough if just the woman konw . In my conpany We work at an aricultual facility to store rice until the harvest time . So I worked there over nirgt . My first dialy . It 's an importand message , is n't it ? The massage fee is very expesive , but I will go there again . So please add me as a friend and help me improve my Enlish . Today I did away with some of my clothes and accessaries . Just to make my muscles a bit more streatchy . I 'm a graduate student in Japan , I use English everyday for reading papers of my major and speking with foreign researchers , so I have to build up my English skills . = > I live in an aprtment . Do you think apratment are the safest housings ? I can listen to music , take pictures , draw a picture , play games , plan a course , check weather , et . . . . . Lang - 8 's update infromation . I hope these documents can help or wath else do I need to do ? Also , I 'd like to know if the hospital where I 'll take my exams is part of your coverage , inasmuch as I already have an appointment to do these exams this Wednesday at 8 : 30 am , Thanks for helping me . I organige these classes by myself at the local community center . Maybe becouse I can speak English just enough . Music was grete ! ! But I could n't understand waht he was saying . That 's does n't make sence at all . . . My listining comprehension has gotten worse . I never touhgt that before I came to Australia . I took my mobile phone out of my bag and tried to puch the button to call the police . The docter diagnosed my illness as `` noro - virus or rota - viros `` . Some pople claim that it is necessary to know what is going on in the public through the infomation listed on advertising . Thanks to advertisements , humans can gain the lastest infomation efficiently . As a result , that infomation brings more comfortable and fruitful lives . On the oher hand , there are many disadvantages to travelling by bicycle . Firsly , riding by bicycle can be dangerous . because bicyle do n't have roofs , unlike other types of transport . I had never hospitalized , _ because I had been helthy till then . Farst , garlic fried . Second , sousege fried . threed , tomato fried . I went to my mother 's home from Friday 11th to 13th of June to particepated in the reunion of my Junior high school class which was held on the night of the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on Sunday morning because my home town is Shimoda , three and a half houre away from the center of Tokyo . I set my alarm clock for four o ' clock , but I noticed that she had already got up and was doing something in the kichen ( even ) before four o ' clock ! I knew this because I slept in the room next to the kichen . Then she called me from the kichen `` Are you all right ? fm , but the service is like a textbook , there is no comunication . But I 'll have to go to work tommorow . I ususally think of some Korean sentences I 'd like to translate into English while walking alone . It 's organized by four Koreans I ve never met before . If I am free today , there is no problem becuase it 's Sunday . Because eating eggs is a traditional costom in Chain . On this day , I can eat a lot of dilicious food and get many gifts . Although we do not togather , but he can rember to me , I feel I 'm very happy . I was spurised by it . Becaouse I feel the cold or . . because I am nesh . It is famouse for its mandarin oranges , rocks and beautiful women . Stay at home with my san . I love American movies , and the most powerful thought driving me to improve my English is that one day I will be able to enjoy American movies without chiese translation . But now I feel I am gradually getting mature . I can now understand and know a person . I will try my best to find a solution to every baier . afganistan . . but I want to be able to listen at this spead ! A freind of mine told me that it is really catching on . It looks boring , ha , however I understand how it works to attarct men . Many people smiled and looked at her crarwling . You can get to there in only 50 minitues by ferry from Singapore . `` All inclusive `` was confortable for us . We did n't need to be bothered with money , so we tried various cocktails ( as many as we liked ! ) and a lot of excursions , for example snoceling , sailing and so on . We found a snoceling point in a sheltered rocky area just by the beach , so we were able to see lots of fishes . After snocelig , we always had sweet cocktails at the beach bar . Pho is verry good . Fried banana tasted verry good . His condition is abviously bad . His talent and experience is undoubtly best among the team . It was no problem with the group reague because Japan was going forward to next round step by step , but now is a tornament . I think he should be unlisted from startimg member once and feel refreshed . I am going to unniveristy Fighting Aginst A Sleeper I try to not to fall asleep but I ca n't lol I can open my eyes in English calss class , but another calsses make me sleep couse I 'm not interested in them , especialy socialogy ; ( Maybe I dislike it in the world . I attendented my all classes . Yesterday I atteded a wedding with my parents . We did a lot of activities to celebrite the marriage . However he spent a lot of it for private perpose , and the company found out . Before this , I thought only a proffesional could create a game . I do n't speek eanglish very well , but I am trying to learn it . The job is to let many people know a town 's good points , so my employer wants me ( us ) to apper on the radion to inform the activity . Though I did n't understand exactly what it was , I understood they cerabrated something today . One of the humor parts of this book is the gap between the common kid and the Go master . The treatment finished incomplate : - O My mom was angry too . I think this web site 's idea is wonderfoul for learning languages and making friends from all over the world . Short diay Do you have your profile , where you can write short menssages ( at most ( ? ) 140 characters ) , and that menssages will be displayed for all your `` followers `` ( people who follow you and have acess to your updates ) . And you can read the menssages of the people who you are `` following `` . Twitter can bring to you great information ( news , reviews of products , construtive opnions ) but can igually bring useless garbage like what your `` following `` is doing at the moment ( for example eating breakfast , who cares about it ? ) Today is July frist , and the sun is so strong . The heat made me remeber something from last summer . It 's a littlebit hard . So , we began to think seriously obout the job . My granfather is 96 years old . He also tolked about World War 2 ( or WWII ) , recent economic developments in Japan , and memories from his childhood . She was robbed twice , one of her son married to a caucasion girl , and her credite was terrible . I saw that fhe sky was quite blue , and seemed very far . I want to go to foreing countries . There were many people who belived it . I think marrage is a very important family event . Why do you learn foreigh languages ? I 've heard the English sound since I was chiled . I 've wanted to speak English since I was chiled . It was vocablaries , glammer , reading , and writing . . I did n't have an umbrella with me , so I went back to my house being brenched with snow . I wolud wike to read `` NY Times `` , `` Wall Street Jurnal `` , and `` News Week `` without using a dicitionary and wolud like to watch `` Roman Holiday `` without Japanese subtitles ! my saddness I 'm a boy in China . Even though I have been learning English for 10 years , my leavl is still very low . Learning English is difficult for me to some digree . I 'm going to the Akuarium , Museum and Art Gallery with friends . Yesterday , I could n't concentrait on my work . Recently , I have lacked concentration , because my relationship with my partnar has become serious . hellllo . It 's been a long time since the last time I 've been here ! He should n't hold mum in olw esteem . My Instroduction . Because It 's very fun when I performe at our concert . But I have a littie bit of time for myself . Pleaes teach me English ! In order to use internet via iPod Touch , wireless LAN is nesscessary unlike the iPhone . But now I feel even more willing to continue my studies and finally reach the level of Japanese that allows me to conversate with native speakers . I wathced one episode after the other . Yesterday I went to the New Culture Spuare to watch the Firework Show with my friends . but it is so difficute for me . Generally , stupid Japanese students who are learning English almost ca n't speak Englihs at all . To master another language is the most difficult subject out of any other subject , such as physics mathmatics . Tomo : ( Hey somebody please kill this stupid Japanese bicth ) Hey wait , you still can ' tunderstand English at all . Sometimes , we need an explanation about English grammer in Japanese . Bussiness Trip I must help with the construction of Chuo Hightway . Both the brighter and the darker side , so I know how desperate I am when someone say something to me , as well as how much I want to give up when I meet an obstacled , in addition to how bad I felt when I was blamed and disapproved . It 's been raining all day today and it 's aound 60 degrees , which is kind of cold for here . 1st , I listen the dictaition of Englsih book which is TOEIC text with reading it . I try to practice about five dictaitions evrery day . However , I would like to make friends throgh Lang - 8 . Europe , as Motherland of football always have been showing thier strengh . I sleptover today . I also sleptover last week too . On Thutsday , my first class starts from 11 : 00am , so I woke up at 8 : 00am to go to the university . I am disapointed with myself . Chakras are ubicated in each auric body and are responsible of retaining and metabolizing the energy a body needs to work optimally . Usually the literature about this theme describes chakras from the emocional body as the only existing ones . In each aura layer , that has one level of especific frecuency , we can check the existence of [ other / different ] frecuency levels from seven chakras . I am Japanese college sutudent . I am listeng repeatedly to a song in the album like to listen to YUI , I recomend this song . It was said that there will be a Gemini meteor showe ! I like meteor shower . Today I ate hamberg with my wife . I have not ate hamberg for a long time . Iin Tokyo , it was snowing . It was very dificult . So , I was worrying about the resalt . I had a good time and it bacame a memorable day for me . I do n't have enough time to prepare for the test , but there are a lot of assignments that needs to be dane . So we need to follow nature in a sence Ever since I was a high school student , I 've been playing electric guitar with some of my . frisends . And I think these tastes are greatly influenced by each country 's clutural background . Some Australians actulayy have been attacking Japanese whale ships using illegual methods such as ramming and throwing chemical bins and turning on water hoses . Thier ornanization sanked Iceland 's whale ship by using underwater mines that are a complete crime . We had a sports conpetition at my school today . as long as I try to do as above , I could achive it . But it 's I have to use it for writting diary entries . I sometimes use my English knolewdge at work especially when I have She is a graduate shcool student at Tukuba University in Ibaragi prifecture and she majors in physics . She studies grobal warming in detail , and she has been in Garmmany since last month . I am always motivatied by what she does . I studied English on the Internet which by taking English conversation classes throuh Skype from 11PM - 12PM . I played bascketball with my host family 's children . They are 7 yars old and 4 years old . They invited me go to play bascketball . Have a nice holidy , everyone ! ! daft pank is really cool The land of Touareg extends to Mali , Nigeria and Lybia too . The Touareg had lot of trouble in Mali , so they had some revolutions there in the 60s , 80s and early 90s . The group Tinariwen have members from Mali , but the leader lived most of his life in Algerian Touareg territory after his father was killed in Mali . Today , I larned cosh . Yesterday , the weather forecast said it will be 28 dgrees in Tokyo on TV . I like wtching and listening to rakugo . I wanted to tell everyone the magnificense of rakugo . . . ! Monday , Thursday , and Friday , I have a clase in the morning and Tuesday and Wednesday , in the afternoon . Today , I studied lots of vocabrary , for example the name of food and clothes , in Spanish . I want to speak English and Spanish and of course Japnese : ] Whatever it is sad to reaiize , but for the last 4 days , that I spent on this site , in my posts there was only one correction . Reacetlly I would say that spring is aroud the corner even though today it is still the beginning of February . I do n't know if this is the bay area 's tipical climate or if it was a mild winter . More specifically , nowadys the citizen 's levelof education is increasing , whichcontribues to the enhancement of the nation 's competitiveness . Besides , the ever - increaing house prices , econamic problems also make modern people feel under endless stress . In conclution , if employers can stand at the position the employees , it can reduce their stress , and at least make them feel that what they work for is worthwhile . The story is interseting . `` He liked the expreesion of trust on the woman 's face as she lay in the water unprotected , exposed and free . `` We do n't have articles , proporsitions , modal verbs , praticiples , etc . His breath was so gentle and he looked so fragile and vunerable . I know that I am a bit coucou haha but it was about . . . So , that 's it , thrauma . Japanese themselves are n't soo scared , but I am here acting so riddiculous ? I held my breath , looked straigh into the screen for hours . And , at that point , I became brave and ready to go foward no matter what ! Huamn capital has a high rate of return and positively affects the growth of the economy in spite of the obvious imblance between human capital and physical capital in China . Coutries I really want to go are places near beautiful seas . I 'm not sure that I can write diaries evryday but I 'll try and I hope it was a reaaly hard day for me because of exams anddd quiz as you know . . . Actuall , I am a little bit worried about the crowded shopping mall , but I still hope I can buy many things at a good value for my money . Recentry , the big event r finished . I thought of it last month , but I did n't decide at that time because I heard rumor of cheaper Macs . He said he went home with one of his freinds . His freind had lost an arm and leg during the war . I am late , but I am luckly . The others did n't leave without me . My favorite Ramen restraunt My cousin tought me how to write longer sentences . She is th biggest pet in my house . I can not sleep becaue of jet lag . they helped in my physical lmitation . Third , my listen ability is terrible so I am very afriaid of talking with somebody in English . Forthly , I ca n't use the punctuation in the rigth ways , so when you read my diary entry you might feel confused . That 's why I read the article diffcult . ( ? ? ) senventh , I have n't the visible goles to learn English . And finally , I think that when I get to a heiher level , I wo n't always be able to keep it up . I had two bowls of remen and some rice . I felt sleeply in the afternoon because my stomach was so full . Tomorrow , I will practice driving my car with my hasbund . So I think that in Japan we should depend on lawyers instead of citizens who are amature . I heard the Eikaiwa school keep opening . So I decided to go to the Eikaiwa school last night , nevertherless ths school was closed . Now I am woring in Beijing , and I want to improve my English . also , l think l mak some mistakes . First I got up late and when I was in a class , the teacer aske me the meaning of a word . I always think too much and hesitate when I speak in Engligh . So many peopele like Japanese ! I 'm a beginer in English . My pearents were worried about me because they thought that I may not have been able to get any jobs . I 'm happy that I have a job , but more than anything , I 'm happy that I can make my pearents feel relieved . My position is gard ^ ^ It is difficult to study two foreign langusges . My English stracture is terrible and a nightmare . I 'm wating the delivery . However this gameplayer is different from any other game . Because it can be used for exercing . Using it , I can do yoga , boxing , bowling and mouscle conditioning . However using the Wii I can exercide at home . If someone is interested in studying in Japan , comsider this university ! The coplete name is `` Akita International University `` ! passoinate and got a load of energe . . I used to read his picture book when I was a child , and I am still interested in his drowing . He wanted to see Big Budha in KAMAKUR and eat green tea icecream again . It would be more joyful if there were some pretty visiters here . I also imagined that I was a CEO of big corporation but I went to work in orange shorts on a GT bycicle . I 'm realy a crazy person . I like to play on the gitare , draw and play volleyball Peter 's stupid jokes always amuze me . When I was an elementary school student , I had homework everyday , espesialy to read Japanese text books to parents and ger some coments about the reading . My favorie food . It is used as a medicine for indian . Because during high school , students have to study under a tigh schedule . She finshed the language earlier than me . Usually Japanese do n't talk aloud about personal fainancial condition or appearance . The other day , one of my students said that he thinks the woman who likes rich men is a realistic and steadfast person , because rish people can be happy in reality . A roomate of mine turned on the music loudly and that is what woke me . My favorite plact to relax It is so confertable . My dear dother , I wish you health , luck , happiness and love . Nowdays l 'm studying emglish very hard . The main reason I am learning English is so that I will be abke to speak it . Last Saterday Night 's Illness MANY POEPLE ARE IN HARD SITUATIONS ! ! `` But almost nobody donated . So I guess the students got a few thouthand yen . please become my freind . This is a book about trips in Thaniland . Poznan 's championschip I volunteer to help organize the canoe sprint championschip from 26 . 8 to 30 . 8 . I think that we ( the sportsmen and I ) could talk about rowing , canoeing and sport overall becouse in junior high school I trained in rowing and generally speaking I 'm an active person : ) He can speak Frensch so fluently ! I paied too much tax , so the money will return to me by applying it . I belonged to english speaking circlle last autmn . I really prefer to stay in a room because I think it 's more confortable to sleep on bed than on the ground . I 'm flom Japan . I had been writing dialy , but there was a webpage error . I think we all want to pay attention to this traditional festival but we ca n't because the goverment wo n't permit it . - We think the house will be confortable . He was the only one who graduatione from university in my hometown . ( Not sure what the latter part means . . . ) Thank you frome my heart , my good example . After eating lunch , we went to household sppliance store to see smart phone . Docomo started a campaign and I can buy smartphone cheaper than usual if I buy it during Auguest . The bus is the cheepest way to travel . I like the atmospher of this town . I 'm writting from my room . Today , 18 Oktober Though I 've thoght this word means `` interesting `` or something like that because of its picture form , this word actually stands for `` Laugh out loud `` . Today I 'll just bitch a little bit about my assigments , wich , by the way , are due tomorrow morning . Let 's grab another nice cup of coffe and keep on going . Now , my father is in the hospital because he has a mental desese . but I warry about if she will not be to collapse . I 'm chatting with my finternational friend on facebook . I was so surprised when they served kimuchi and beansprouts as appetizer because they served justonly a piece of kimuchi and two or three pieces of beansprouts . afte that , when I was in midle chool , I began to learn it again . I think the lagnuage is too difficult to learn , Because , I had just gotten my results and throughaway them away . Please teach me I ca n't superate them Technique in learning langage What is your teqnic in learning the language you are interested in ? My English is on the basic or intermidate level so I need to increase my vocabulary . I do n't know how to learn a languang well . Yestoday I got a mail . It 's about a celebration in the Feroe Iland belonging to Denmark . The celebration happens every year in the Feroe Iland , some young teens kill calderon dolphins to show that they are adults and mature . It came up to me , and I did n't avoit it . Today , I 've went to Tokyo Disney Land with my wife and daughter , though the weather forcast had warned of heavey rain in the area through the day . Due to the weather , there were fewer people and we could enjoy more atractions than usual today . That cafe was so greate . I remembed the time of my middle school age , at that time , there are ( were ) two trees in my home yard , one is the peach tree , the other is the pear tree . Taean is a penisular surrounded by beautiful beaches and ocean . Please let me know the traking number ! In my opinion , you can not learn a new language or even travel through the world , wich is my dream , if you do n't know how to speak in english corectly . This is my frist time to attain Lang - 8 so now I just say Hi to everyone who study English and who are native English speakers . FLY I am now preparing for IETLS , so in the future I will show my IELTS Task 2 writting and I will be very glad if people give some suggestions to improve my writting . I am a colledge student at Osaka unive . Please corret my poor English . Thanks to Lang - 8 , people who come from different countries can chang languages and communicate with others . Just so you know , I 'm having some diffculty learning English . Till thd day , I had studied over and over again . Especially the scene where & nbsp ; LA is & nbsp ; tatally ruined . It & nbsp ; was very very awesome and fantastic . Of course , I tasted all of them out of curiousty , and the taste of ' Super White Tuna ' was quite unfamiliar to me . When people eat this fish , it causes diarria , as the oil from the fish comes straight out without being processed by the body . After I went to the restaurant , I am sure I got a stmachahe . However , I am not sure whether the cause was the Super White Tuna or overeating , because it was a buffuet - style reataurant . This fish lives in the Pacific Ocean , so you can go to South Korea or Hawaii as well as Japanese reataurants in North America . I 'd rather forcus on how to correct the problem than focus too much on the mistakes , and blaming myself and others . Hello , my wuderful friends . . What a unfogetable day ! But I have been continiously woken up by aftershocks . I think this is what is called phychological torment . Even though it will take about 5 hours by car , I hope I can enjoy it and release the streess from the test . whenever I see her , I deciede to go on a diet . on the way home , the wind hit my cheets again , and I jumped tnoto my bed . Nice to meee you . I wanted to study today , but I could n't becuse I have a bad headache . Anyway , I went to Japan 3 monts ago . I 'm worring about two things . Anotoher is the expensive tuition fee of the business schools . But I know there are a variety of options for studying in the United States , such as paticipating in excutive programs . Even though it might be hard at first , I try my best to fix my troublesome charateristic . Isnt n't it a time to change my old , slow and accurate style into a fast and inaccurate one ? And some of thr students do work hard usually . So that they can compete fot scholarships . I shouldn n't tbhave eaten the sweet bread . . Due to it , it took me a long time to get out of the aipport . I had an orientation there amd sent e - mail . I dealt with my lagguages for a while , then joinded them in the living room . She asked , `` Is this your boufriend ? `` pointging at one of the photos . She also said , `` You can find a new boufriend here ! `` Recently , one US doller equals 78 yen . I thougt perhaps that they were junior high students . Time always passes quicker than I think so I just want to have the pleasure of time being a student , and time with my freidns , whatever that is ! I just felt an earthquick right now while I was writing this entry ! ! Scarely ! I 'm a sunshine boy . I live in SuZhou . it 's a beautiful city . our city is favous for its traditional garden . we have many deautious food hel me to learn English in a short time ! ! ! Acturely , my English is not good . So , _ I came here to improve my English . I think that I am a friendly girl , and I want to get more knowlege from here . In addition , _ I want to make moer friends here . now I 'm considering which contries I 'll go to . and this vacation is alomost one month long , so I want improve my english level . I wanna send a message saying `` Thaks for correcting `` and `` goodpoint for correcting `` , but I have no idea where to click on my page . . . enjoy the time left , may you come accross your happy - rough life safely . Just 10days have passed since the massive erthquakes and TUNAMI hit the north east district of Japan . There still reamins fliquent aftershocks . This disaster must change our way of living and thinking because we realized that we have to live with rimited energy and resorces . I wonder if we will have to get away from Fukushima prefecture for a long time in order to avoid radiation , but I 'm quite convinced that Japan will rebuild our prosperitey even though it will take way too long . It 's saving grace that we still have strong unity among Janapanese especially those who are young . First of all , the color is Crimson or Red Brown . Gothic font is very clear and ellegance , I especially like OHNOkunn , who has stolen my heart since about 2years ago . He is so tarented and so sweet . I found out about this site from ITmadia 's article . They shut down the factories and laid off labors / workers . I could n't raed the book black boy yet , and I have to write this diary . AA company informed us that they launched a PC e made of full alluminium for power users . I feel the freedom and proud of my achievment . A lot of people will suffer from obesity due to their sedentarism lifestyles . Some humans will have the ability to read other people 's minds . Bautiful flowers , beaches , and it is peaceful ! Not only Bob but also Patric ! I went to hang out in Shinjyuku city and met a cool guy who seemed to be involved in hiphop so I aprorched him and he said Probably because it is diffrent from Japanese culture . My fevorite book is `` littel prienc `` , I wrote about it erliy . Also , I want tell about my fovorite season . Specifically : I am a moody person , and of course my emotions often are conect to weather . My grendparents and friends live there , and of course I miss them , and am glad see them and therd : in summer I can do evrething , that I could not do in all year . Also I like automn , but I like it only in Peterburg , because I am sure that our city is the most beutiful , when weather is cloudy . Hello to all young gentalmen and nice ladies . Have you ever thought about the ' tears of sorrow ' of all mothers that lost their sons in the many wars that have no meanigs ? `` The fandamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by In the battle , one mighty country planned to attack the other two countries . But the two countries formed an alliance with each other and they plotted , schemed , and used geographical advantage to finally win , even though the ratio of the soldiers in the one migth country to those in the other two was 800000 to 50000 . Becausee I thought my bad headache ( I comletely got well from my headache ) Student numbers in the coutryside have decreased , so schools have been closed . Even though there are no students anymore , local schools become new community centers for the villagers . Her words imressed me so much . Recentry , I came to like cooking . First , nowadays fast fastfood is very delicious . But I did not think that it was a dall , because it would look very real . I reviewed the English doucuments written by co - workers . Though I was not sure that a naitive speaker could understand these sentences , in Particulary , I was confident of / about the prepostion and article . Then I wil write natural sentences for native speakers . Until the medicine for yellow fever was invented , there were hundreds of people dying from that desease wich could not be cured without drugs . Luckey him ! I do n't know why . . . Maybe it 's becouse it 's 35 degrees C and you ca n't do anything outside ? I guess FMyLife is a serivce in the USA . Muggy agternoon . Actually , I was hangry an hour after and ate a bowl of noodles . If this continuts , I think my friends will not recognize me this coming vacation . There were three times the people than normal , you could n't even move a little step in the aisle , and the air was dirty and frowsty . Luckly I got one , but it was a seated ticket . He was a business man , and has big falimy with 4 brothers and 4 sisters . Just a typo My training cours I had a training cours this summer and I worked in the Councul Department . When I first came , I found it suppotive . I was happy becouse I was not afraid . When I did n't unterstand something , I asked for andvice . He plays basketball with his frients after school every day . Last year , when I walked around my home , I noticed a small signbord of a Shodou school . Aithough I am an English major . Now my grade is brown belt , the grade befor black belt . Japanese custamer who had participated in a travel tour requested compensation from the airline companies . The clsss was an elemtary theory class about DSLR cameras . I try my hardest to write my diary whithout using a dictionary . bacause it remains so long in my memory . Mouse likes cheeze . Honestly , I forgot how to spell `` cheeze `` . . . I have a good impression for ths movie . Unfortunately it do n't make ( manufacture ) make - up prodoction . I knew designers normally need enough , confortable space for not only their work but also for their sensitivity . ( Sensitivity ? ) [ Help me OTL ] Part time jop : ) What 's OTL ? I wokred at a one day part time job as a waitress for an ltalian restaurant . I did n't work much because the restaurant manager is my neighber . so the manager gave more work for the ohter part timer to do . Well , it seems like nobady wants to comment on my diary lmao . You 've might have heard of the title because this book won the CARNEGIE MEDAL instead of Herry Poter in 1997 . The sea means goal for each peoson . We hava a small garden with lots of plants so Poeple who do n't know manners like you deserve to die soon . Today , I have started `` Lang - 8 `` because I found this site in a colum in today 's newspaper . I called our gus station . This ceremoney promotes hope , dream and peace . I heve been there five times , but it is different colors every year . Saga is a nice provernece . I live in Tochigi . Saga is farr away . In Sasga , I do not have an Internet connection . thankyu in advance . An explanatioin of ' MOE ' Tashiro was arrested again in possession of cocain . pllen allergy ? Once I started studying Economics , it turned out to be intereting . Homecomming visit I will read a vocubulary , and read how to write letter , and how to read very well . We have n't practiced our 3 songs in the stadio together . To be honest , I dont n't want to be part of the live performance . . . because there is one song that I do n't want to sing . . . We will practice in stadio for the first time to prepare for this live performance because we have no time before the performance . It was reflesh . Because a dog is more cuty , pretty and it is more loyal than cat as well . For example , mastervation . . I bought a new badominton racket yesterday . I like needlwork very much , so I was excited to see these many shops and materials . Of course , most of the visiters were old women : - ) ) I knew his anwer . That was what I thought . So I registerred . Maybe it 'll mke me poor in the coming 4months . I spoke with my friend who cames from England . . . I am proud that I have such a friend , who knows alot of English and can travell to England along with other countries . Now , I am woking at LG Chemical Research Park in Korea , I designe control logic design at graduate school , my mojor and I ca n't learn about my major . but it is an electric vehile and it will take a few years to I 've alreay had a can of beer so I want to go to sleep . That really makes me feel embarressing , I act like a retard . In the past I seldem felt in the same situation , I could go straight to the answer or explain things in reasonable way . I told him the problem is that Korea 's [ / RED ] educational poliscy focuses on the grammer , rather than lisning and speaking . For instance , there are more than 50 dialogs in Liberia , and that 's why they have strongly felt it nessasary to lean English . I am a camtain of the team . After playing footsa , He was navie and self - centered The prescription contains liquorice and other kinds of medicated hearbs . Anyway , todaty was too cold for October ! My faverite sport is basketball . Because of vellaball is not popular and difficult to find the space to play . Baskeball , as well , is dificult to find the place to play but I love it . Yeah , it has became a fun way for me to learn English , which I can appreciate their wonderful content and learn some unseem structures of English . Next suturday , I 'll go to see a consultant on a studing abroad . Many words I have forgotten . When I read books , many words look very familier to me but I ca n't remember what they mean . I am not romantic , so my wife alawys say that I should be more romantic . On holidays , he walks aroud the riverbank for his health . I really appriciate it . After work , I wnet to the only Daiso in Canada . But here the price is twe dollars . I felt reluctant to buy some sutff . But last Wednesday , I learned by Internet that Kagrra 's concert was canceled becouse there was a problem with some visas . U _ _ U I have to take my tickets back tomorrow , becouse Kagrra 's organization will give a refund . I need to take over my team leader 's job beacuse she needs to take some time off to prepare for her baby 's arrival . Every day , I need to forward her email to each factory in the morning and help them to slove their problem . I bought many things , such as a vacuume cleaner , a refridgeator , a table , a bed and curtains . . . Imoressions of America part 2 The budget of the New York Yankees is begger than that of North Korea . However , I wo n't give up until I can swim the buttergly stroke . Quiero ( Quierro ) ir a Espana . My teacher sent everybody the e - mail , which said `` If you get this email let me know by replying to the following addrress : Anyway , as I checked it just now , I found 5 e - mails which should be sent to my teacher only but were actuallly sent to the whole class . However , not all kinds of miso are good for eating , only misso free from artificial additives . I hope next time the weather will becom good . The company recentry introduced a new system whilch will allow me to withdraw the money from my bank account . I bought yoghrt at the supermarket . This bacterial fermantation is sour . The Temparature is high . Seicomart convenience stores offer a few kinds of reasonable house wine priced around 500 yen , whitch tastes good enough to drink at home . The restaurant had different kinds of Beigian beer . I drank three cups of Beigian Beer . Beigian beer is sweet . I asked an employee why Beigian beer is sweet . This tale is nothing compared with the occidental classic literature , maybe because those tales is about danish florkclore . It is a mixture of mistery , fantasy and rarety . `` Powor of music `` is a new event in Tokyo Disneyland . I ca n't sleep because I 'm loney . Pls be informed that this shipment will be deliveried as LCL via Hongkong . Schedule as below for ur reference : Between you and me , there is a special and magical way that if you do not consider the above things and write a fucking boring essay whether it 's long or not , your essay will be colorful with red and blue with warm comments within few minutes : just show a picture of your pretty face or of another hot woman found somewhere else online such as unknown hot celebrities . Maybe I do not want to learn english at beginning . but I will try my best to learn it in fruture . my glish teacher taught us many words , but I can not remember them and use them in the correct way . what can I do ? Becouse my friends studied for exam in this summer . At that time , he faced demotition from Ozeki to a low Ranking . Second foreigh wrestlers dominate especialy Mongolians . I sent a music box to her by express sevral days ago . We always say `` happy birthday `` when it 's somebody 's birthay . 2 policemen were killed , 55 policemen are missing , and 4 policemem are injured . The food is not as delicious as I expectaion . The food does n't taste as good as I expectaion . She is not as beatiful as she appeared on TV . I have great expectaion as much as I try . * I do n't want to dislike my coutry like her . My mother 's native lanugage is Japanese . We happed to meet a Japanese tour group . I asked someome of the group in Japanese . I was really suprised by his behevior . I was a littel bit shocked and sought for the reason . Did n't my Japanese pronuctiation sound like native Japanese ? My bad English was n't understood by the Perucian , I thought they had High - mountans disese . I want to go to Peru agian . I have a very nice memory of it , ecxept for the Japanese torists . I was impressived ! ! Today I feel so blue , I find some knowledgy I learned before have completely gone . Besides , as this hospital is highly specialized in cardiovascular surgeries , I 'm able to improve my skills and develop my carrer . Why ca n't they drive more gentlely ? Now that I 've learned that there are potholes on the road as well as ordinary minor cracks and holes , I will pray for the safety of all the dfivers ! So I remembered about the time I chose my job when I was a ager . I dropped by the library on my back way and I brrowed `` One Piece `` . I used to read this manga and I thougt that I wanted to read this manga again in English . Since I did n't know anything about actors , I 've just looked for the actor who played ' Halord ' . The Notebook feature lets you easily review those worthful notes . Altogether I started to pracice sports becouse of him . Today , when I was about to get in my car , I found something on the glound . Then he recommened me a fortune teller that is famous , Indian and accurate . additionaly they were right for me . fortunely , lots of the thinsg she said were good . It was a wonderful experinece for me ^ ^ I quit smoking in April of this year , but because of too much stess I started again . I know it 's not good for my health , but somoking after having a lot of stress is beyond expression . when I surfed in Japan I could stand up 1 time , becous it was a long bord and the waves was small . so I brought a short bord , it was so dificult for me . becouse it 's very boring at my place . it 's very beautifle . I wanna know why but I 'm afraid to hear the turth . Checking my diary ( not all of them , but most of them ) , I found my misktakes are mostly with `` a `` and `` the , `` which many Japanese strugles with when they learn English . I really appreciate people who suggeted my journal . Another doctor who did the plaque removal is also quite skillful and careful . Major quantity of the books like taxtbook that I used to read when I went to school . Eijirou is differrent from usual dictionaries . So if you have any problems with your pc or networks ask me ; mayby I will be able to help you . Well , after I passed an English exam during the secound year of my studies , my contact with English has been relly limited . I am really nevous about the toefl test . Not write the sentence too long , Not chouse an answer so quickly . . . . . . . . I am from Vitoria da Conquista - Brasil , I am 20 years old , and I am a studenty of tecnology . My wife and I celebrated it with our two daughters at a small japanese resterant . Frankly speaking , I compeltelly forgot this special day until this evening . We went to Seoul tower , some shurines , souvenir shops and so on . Bangkok Turmiol Recentry the iPhone has been popular in japan . When Minko saw him , she was jealous of Ohamna . I startde Lang - 8 today . So , I stady English very hard . After a horrible / terrible / awful economic recesion , many contingent workers have gotten fired which means they lost the way to make a money and live . The system was very simple , first you sign up by entering your parsonal data . I will go to a bookstore , and buy some books and magagines . I know my weight , so I can be very carefull about what I eat and drink . My goal is to lose 3kg , so I have to do more exersise . . . we will make takoyaki which is a tipcal Japanese food . frist day - Pusan Everybody got merried . I did n't get merried becouse I was young . Because the weather is nice and confortable to stay in . The main character of this story is a docter . I 'm Japanease but I live in Beijing present . I need to be eble to speak English and Chinese as soon as possible , so I decided to start to write dialy in foreign language on this website . and if you know any populer or funny slang words , please teach me . A meat - eating type girl is agressive toward hunting boys . A grass - eating type boy is non - disagressive towards girls . question 2 : how to pronounce epidiymitis ? The white bridemaid : `` That 's disgusting . The white bridemaid again : `` Who wants a gargoyle , or whatever he is , at your wedding ? `` The white bridemaid : `` I do n't know where to look . . . I 've never seen bridemaids dancing at a Chinese wedding . English exam is made of vocabulary , analysising sentences , listening and so on . . Analysising Engilsh sentences exam is very very difficult to me I 've been through the hardnship of quitting . After losing , a bad tast was left in my mouth and I felt an urge to try to get even . hot pach because he is the most populer actor of ' Pirates of the Caribbian ' . It started a few weeks ago when my little brother got dragged to a dance cours by his friends . Without a partner , I guess ballroomdancing dancing is quite hard . . . So , let 's open our hearts , in order to be freiends and to make progress . Frome . I believe the uniforms shown in the picture appear to be orenge and bule . I must speak engish becouse I want to travel to other countries in the future and English may help my in my future job . In th afternoon , my homestay mom and two gusy came back home . We had no script so we were just listening ank wacthing the movie . Although the situation with radiation ploblem , derivary delays or power saving did n't change much ( it still is bad ) the life of people , who live in less damaged regions , such as Tokyo , seems to be slowly coming back to normal . In the morning , While I was wating for my friend to pick me up , he mailed me , saying `` I 'm drunk and feeling bad , so please come and pick me up `` . So , that place is always full of poeple ^ ^ I want to make it more significant and emphatical . but for me that is not enough , I must make more chances to omprove my english skills . I wrote a letter to them to ask about volanteer . . . . I guess shi must be around 27 , right ? I did n't contact the volanteer stuff after all , but your advice was very informative . Recentry , I read a comic . It was my first trip abroud . I was asked about the Tunami by some people . He reccomended that I drink Kava . I think most Japanese are polythistic , who are not very religeous . Please have some if you have chace . I 'm 28 already . . and I 'm going to plan my future life in this year . . something I sak myself . . . what do I really want ? ! My job is teaching English at pravate school in Japan . They were able to open the lock quickly , but I was shoked and disappointed as I had thought they were old enough to decide what was wrong and what was right . All my family was at home becuse of the snow . I 'm looking forword to communicating with everyone in English . I am interrested in this movie 's subject matter . I think that it would be horrible to konw death . I am studying bioligy now . But they wathed it ( not only the first part ) and maybe even read it . These people go to the cinema and see this movie just to laught , to make funny comments or to rephrase dialogs of characters . For a long time I belonged to the first cathegory . I desided to benefit from this action so I had to read it in English . But I was so excited and glad that I could read in English anh understand it that I 've read all of the saga . Exept for poor language ( the Russian translation is even worse ) there are lots of Mary Sue and out of character stuff . Anyway I 've read four English books per mounth . In the practice mutch , I got punched in the stomach and fell down ! The instructer said that it was not so strong , but I could n't speak . We lay on our backs while the instructer stood on our bodies and jumped three times . Today , on Sunday July 11 , 2010 . , half the members of the House of Councilors will be elected for three years . S , China , North and South Koria and all of the other countries around the wourld . I also want to go aborad and communicate with others more smoothly . Today I met some korea friends . I do n't think that korea food is spicy . My favoriot is toppki though . Summer vacation is around the conner , Most pople are starting to make plans . It blows from East - NordEst , and it 's a really strong wind . In this Bora blows with a medium speed of ovee 100 km / h ( over 55 kts ) , and the highest gust reached 188 km / h ( over 102 kts ) . . . While I was walking , going to the university , a tile fell about one meter from me : it could have killed me , if I just were in the wong place at the wrong time . Some of them did n't sleep last night , becaure Bora makes a lot of noise . We 're accoustomed to that . . Our ancester have a proverb , stating that we dependon our parents in the home , and outside we dependon our friends . The relationships betweenoneself and friends is n't to make use of ehch other . Some people will make friends with you not bescuse he or she like you , but bescuse you can help him or her in some way . I 'm in low spirits now becuse I feel that I am being ignored for this reason . I will study Enlish at Starbucks today ! The artcle recomends to take notes of every idea that comes to your mind , The reason for this is so that it gets completely aborbed by the skin . My birthday was two manth ago . My mother made it and it was delitius . I ca n't see the lisence number or even a part of the numbers . The pollice ca n't pick the criminal up . On second thought , she always asks people she meets about therir & nbsp ; jobs because she is concerned about her own future . I dont know why smart phones are so popular among people , but it seems that they have many atractive functions such as Skype , Internet , or many other applications . However , this situation is only in tha Japanese market , so what about your country ? Especially , gratin with chestnut and cream cheese , which was very yammy : ) The soy milk pudding and tohu donuts were delicious , too ! So when we have practice for all of the mambers , I have to plan the practice before we start . And please try to watch it if you have a chasnce . I replaced the sentences in the grammer book with my own sentences . Today a debate occurred bwtween my mother and I . We started discussing the topic from the minute I stepped into my home until bath time . The topic was on my dressing stype . Then she said she felt confussed and disappointed about how I treat my occupation with my whole spirit but do n't care about my appearance . I know it 's important to hold on to the precious period when I 'm just in my twenties , and that 's just what my dear mum wanne me to do . I do n't wanne let my mother down . Another reason is that , someone used to say that she thought I look the same as Aoi Yu , a Japanese actress with a pure appearance , and I wanne keep the simple and pure impression in others ' minds . I have just arrived ( or I just arrived ) in Adelaid , austrailia , but I am worried about my poor English , I do n't have enought money to keep travelling , so I just found a part time job in Adelaid City as a sushi roller , I will be really greatful . When I arrived at the hotel and unpacked my baggages , I went out with my sister to take a stroll along the river nearby . I am not good at listning and writing . If you want to relieve your stress or you feel your daily ruten is boring In order to enjoy your trip , you should consider your safty while traveling . You had better leave your valuables and expensive jewelry in the hotel when you go out , and you should hold on to your bag . In Pusan , you ca n't use traveler 's chequens . If you want to enjoy that tou should choose the ones already fried . my costume was a baby , and many people laghted at me , and took many pictures . Frankly , it 's not unuseful and inconvenient . Even it 's occure only at the first meet , they may get tired of hearing that . It is very convence ! ! Recentry , I have been playing a game a lot on my DS . It is very fun and we can learn Englirh ! ! _ This game is very nice ! ! _ COOL ! ! Monoris ? At night , I drank with my friends , which made me forget my tireness . I 'm a little busy untill this afternoon . Even though I have the official working holiday visa , I could n't get a so - called `` Ausiie job `` due to my lack of english proficiency . As the title sugests , I 'm new in this cummunity . Whether feeling happy , sad , depressed or angry , music is allways there to support my mood ( unless my cell / mp3 player runs out of battery xD ) . I signed up for this community because , obviously , I want to improve my English writting skills and I 'm hoping to get your help . I know this is a terrible introduction but if I continue writting , you 'd have a LOT to read , you 'd get bored and finally you 'd close this page without correcting it . I 've been thinking what I should do here in Japan , because I always had some goals to achive when I was in Canada . That 's why even when I 'm doing the same things that I 've done before , I feel it in a diferent way . I 've pratically never skied before , but I 'll take some lessons . Our four girls really had a wonderfor time there ! ! ! TESK TWO - Comparison Composition Singles can do everything they want to like trevel , buying clothes , working for a career . I am a writer , but my story is unfinshed . . . Anyway , someboday help me please ~ My pronunciation is poor and sounds like a bad hollywod movie with a Russian Ivan speaking in English . I learn Japanese bacause I 'd like to go to Okinawa to visit a karate master whose name is Morio Higaonna . Tokyo Malathon My big brother participaterdin in Tokyo malathon last month , which is the one of the biggest citizen races . He finised at 3 hours and 6 minutes . He has been really good at running long distance since junir high . Thet were n't in this game but the live game was good ! These taxis startid to run in our country . I bounght an LCD television made by Sony today . A famous Korean acter committed suicideby hanging himself with an electric cord . The saddest part is his older sister had committed suicided Some journist think he had depression and that he was suffering under his sister 's death continually . Can you arrange the stuff , after you clean the refridge ? I was shy because I was afraid of making a amisstake . Today was my first working day of 2010 , but I felt sleepy the whole day today because of my bad habit of staying up very late during my New Year 's holodays . Charlie has never enjoyed talking , and hence , he developed a brooding look - surely his eyes were those of a man who carrt the weight of life . I hope that the bueautiful country goes back to normal soon . After I arrived in Tokyo last mounth , I have n't had a chance to meet and talk with people of Engllish countries or others . I know many foreigners have already left Japan becase of the maassive earthquake and Tsunami and radioactivity . Besides high school English class ( wich is so basic and has the same old lessions every year ) , I 've actually never studied English officialy . So I 've desided to get a little help ; ) I hope this thing helps me to improve my English . It was a small tidybear . I 'm from Brazil and now it 's 5 : 55 AM . I was able to find more information about an intership . I would like to go to Toronto or Vancouver . I love ice and snow , but I never see it . It would be a dream although I do n't speak English that well , but I love the English culture , the language , and in Canada the people speak English and Franch , and it 's cold . This is my inaugural ( first ) daialy entry / post on Lang - 8 . 2nd of Augast was my 35th birthday , I 'm going to write daialy on Lang - 8 as documentation of my time in London . I had heard about it several times before , but had not yet visitted . Today we will go out to buy the ingredients for cooking buritto . We need chicken , pita bread , mashrooms , mayonnaise , and hot sauce . It 'll be my third time to visit there , but her frist time . I 'm looking forwad to having some nice seafood . Today , I particiated in our laboratory seminar . I 'm so neryous . . . . I am a student of fireign language studies , majoring in French . One week ago , when I was home , a strange man came to my appartment and said something like this , `` We opened our new shop in this neighborhood , and we are giving away some presents for every house around here . But I wonder whether I should buy a mobile phone with an intergated music player or an ipod . The price of a new Iphone 4 is from 16 to 18 milion vietnam dong ( equivalent 800 - 900 USD ) while my salary is just 4 million vietnam dong , less than four times the price . My famiry live in Fukui . I like trvel . So I want to stady English . Do you know SETUBUN ? Today is SETUBUN in Japan . Today is Friday the thirdteenth . Today & nbsp ; is Friday the & nbsp ; thirdteenth . I do n't know why this year has a lot of Fridayy the thirdteemth . He adequetely countered a judge 's budget screening 's questions with data and passion . His opinion and atitude showed the essence of the screening . it has dubble structure . I feel Japanese salt breese when I eat this . I watced the movie frozen with my family . Nobady noticed . horror and suvive movies . Now I 'm a junior high school stedent , I do feel my English is poor , I wang to find a foreiner friend to teach me English . I am at home with my father , uesually we did not agree with each other Maybe because we have something to talke about more . My televistion is broken now and my computer is going to be a problem too . My father took the televistion to be repaired in the shop . the first of the rima , Peru 's new urban air purifiers called `` Super Trees `` was recently installed at the busy intersection next to a stream of a congested traffic . It was installed by a local beer distributer and created by Tierra niestra SAC , a perubian green technology company . The Tiala Niestra says that the purifier uses the liquid filtering process to observe the carvbon dioxide , equivalent to the actions of twelve hundred trees . the creaters claim the super trees removes dast , germs and vacteria from 200000 cubic meters of air per day . The Mayor of rima 's district of SurquilloGustavo Sierra says the super tree could help the contaminated city across the grobe . `` It has taken us six years , six years to plant 1200 trees in Surquillo however this machine help us greately to improve the air we breathe . `` He intends to install another 20 air purifiers in this district . Peru 's unbudsman office reports air pollution levels in rima are nine times higher than recomended by hte world health organization . in a report released by the Peru 's national council of the environment , about 80 percent of the pollutants of the air caused by old , ill - kept moviles . Today was the happist day of the week . Back then , hundreds of thousands of years ago , people telling stories about thinfs they had done earlier that day while hunting . I already checked some houses and found out that some houses have private bathrooms and kichens which only two people share . As a result , we have seen spectacula congestion on the highway . I might have that tendancy too , because I sleep more in the winter season . And then , I said `` I am being lazy . `` with a big smail . In this entry , I am going to write about `` time - merkers `` again , and also a few other things , Some possible sets of time markers and tences are listed here : URL I did n't know that there was Lang - 8 , _ a wonderful site , which helps us make friends to correct each other 's writting . Tommorrow , I 'm going to the US for 3 months . Nowadays , Shanghai becomes one of the most developped cities in China . I was realld curious why she never would help me know more . or encourge me , insteadbut opposite she of always mocking me . Languege exchange site People sometimes contacted me , but they do n't seem to have read my profiel at all . He told me that he realy wants to learn Japanese and he would like to know how ? Then he said he thought the easiest way to learn another languege is to have a girl friend who is a native speaker . I watched saccer ysetrday . Recently the weather is weird because it 's suddenly hot or cold , therefore I cought a cold in few days . I feel people aare laughing more and a lot of plants are in bloom when spring is coming . Since Im was born in a tiny town which is quite a countryside with a lot of rice fields , I like parks with a lot of nature . I can ? , , , Was it a slip of the toung ? There were nine babies in today 's class and Konoka was the yongest among them . my name , special hollyday for me , about a photo and so on . Today is a boing day . but ifeela little groomy . It destloy my office backyard . castmer come to my office . My friends had said that Spanish is one of the easy languaes to learn . Nooo , I do n't think so . She said my questions were about gammars , which I did not study a lot . But , I did n't want to ask the professor , so I made her study what I wanted to know German grammers . If you are interested , the short film is avaliable on ' Youtube ' , with English subtitles . Finally , my skateboard broked into two pieces . The tytle means `` Save my earth `` . a Japanese writter , in 1989 . My roommates are a Singaporian and Indonesian couple . There are many people who are good Englsh speakers . However , Im also have to study ! Studying a foreign languege is very interesting , becase it makes it possible to meet lots of people . I would like to meet forein people and have language exchanges . I met my friend at a rastaurant and we ate sushi and wheat noodles . In that program a woman takes a plane to Japen to just eat some sushi and wheat noodles , then comes straight back to Korea . My friend was impresived with those foods , ( not the program guest 's action ) and she wanted to eat them also . Because of that we went to a Japanese rastaurant and ate them . We had often talked about yakiniku and how we would like to gorge ourselves on griled meat . I read a report written by a web desiginer on the web . There were many peple in the class . After that I wathed a DVD at home . So I left home earlier than our arragned time . I am writing a yacky story today . This afternoon , we went to the pymnasium for PE class . Now that I have became a college student , our PE class is diferent from what we had in high school . My goodfriends and I usually played badminton together to free ourselves for we all feel great tired at that moment . My goodfriends , I miss you so much ! ~ Oyama in Miyakejima , the famiry and dog 's story . my car was a little bit ented in a collision . I met a lot of frieds who had left my company a few years ago . And what 's more . It 's besically all free ! It 's a typical HK moive A confued relationship between the robber and the police , good action and cool guys . I 'm going to play valleyball with my friends tomorrow . I used to play valleyball almost every day when I lived in America . Asking some English quetions ! ! For example , the most evident and , maybe the most dangerous , problem I noticed is the fact that Italian tourist trade thinks the country does not need to make efferts to increase the number of visitors ; aspecially comedies and dramas . . . I want to visit France , aspecially Paris . The Hard - Disk has some dameges . I am interisted in learning English . les 's start . The weather is always different in this city , five minites ago it was sunny , then it suddenly started to rain . . . Just like a chameleon . Next week I have the CET test , there 's a lot of pressure on me , and with this horrible weather , it made me sick for four days . Beacuse it 's so hot in the dormitory and there 's no air - conditioning , I had to sleep out outside of my room . - The concept of cowerking is inspired from parties . I read an essay writen by Haruki Murakami . I was surprised that he determind to write , when he was 29 years old , in 1978 . I usually do n't drink beer but I drank a beer yesterday because it was my mom 's barthday . Because it is dengeous for girls to go outside drunk , and I do n't want to be seen by my freinds . I like the hot atmasphere - - - everyone is surrounded by the rising steam . Now I am studing English very hard , and next year I 'll resume studing French . When the temperatures of the oil ( or pot ? ) is high , addthe eggs into the former pot , and put the rice leter . Put salt immediately at the same time . Here in Vancouver where I live is always sunny specially these thesedays . Even though the bookd is incredably famous across the world , it is n't for me . Maybe that 's the reason I only watch a moive instead of reading a book these days . `` Shawshank Redemption `` is the one of the short stroies in the book `` Different Seasons `` Actually , I 'm already facinated to compare the story in the book from that in the movie . OK everything will go on , I will graduate from college , then I have to find a job to take care of myself , but I still have no confidence , who can give me ? who can do it with me , who can see tomorrow whith me ! ! I used to be very close to my yonger sister . Now we are marriaged and I have a kid , but she does n't . If I pass the exam , I can learn more langage there . + Yei ! + Now , I study Engrish . Please teach me Engrish ! To stop him from talking more , I constructed a funny answer for him . I said , ' I wanna a handsome boy , just handsome , and I want you find himfor me , I know you can help me , remember call me frist when you findhim ' . Album 's bame is Abbey road . We go to the temple and pray for our family 's health , heppiness , and world peace . Thease are delicious . What does `` adress `` mean ? She is a housemaker . We can even use interet when we 're outside with this ! By this time , four people have been killed in an election campain . frist diary ! I 'm 19 years old , and I 'm a univercity student majoring in English . I was moved to watch thier childground movie which they made . I tried to wirte something , when I first found this site . I thought I would wirte any everyday happening , but it does n't work as I expected . First we had some argments , because we were a big personality difference . After some argmennts , I learned I should n't object to what he says then I wo n't have argmennts with him . Since I did n't say my opinion and I just listened , we did not have argments . I do n't know what should be the most important thing . . . I have many probelems to solve . I was touched and surprised by the sceen : there were thousands of fireflies in the valley . They said that cats have nite lives . I think it 's cool . When we began , I found that his skills were more advanced than half a year agao , and was beatn 4 times . I felt a bit nervous and some careless mistakes when was shooting . Both these soups have diffrent tastes so I enjoyed both servings of Oden . Thanks a lof for reading my diary . A few days ago , I went to the airport to see my fridend off . firt time I 've heard many times that weiting English improves our Enlgish writing skills , but I I am a very lazy person and I am very very busy . I decided to write my ( or this ) diary in English hopely everyday . When I was a junuor high school student , I had a variety of tropical fishes . Then one of the goldfish always used to jump out of the bucket , and I would queckly put her back . Tomorrw , I will go to the theater with my classmates . Anyway , commercial TV stations start new TV shows from this springall . I watched ' ' The Matrix ' ' on TV , which was rebroadcasted the day befer yesterday . Moreover I want to communicate with many peoole in English . We always laught with and without reasons . It is not tru . The coffee is noot good yet becouse I am still unaccustomed in making coffees . I 'm really lokking forward to meeting them . ( Sometime the company adds oil or negitoro to fake negitoro ) I felt unconfortable . . . I want to fill my carrender CBS on Youtuve . Okay , keep your eyes on those who want to use their `` airms `` . The tests were quite difficute , especially listening . t , When I look back those days , a pen - pal was Japenese girl who had similar ages with me . I am writting in response to your letter . This is a great oportunity for me and my career prospects . I need to get a high level in English because it 's an essentil skill required for working overseas and getting a good job in a company . On the other hand , I live in place where weather is warm constantly all year , but I think it is diferent in Manchester , maybe raining often , I would like know it , to be ready with appropiate clothes and shoes , when I get there . After the Gibonites surrendered to Joshua , the group against Joshua turned to attack them . In fact , the Gibeonites were one of them before , but now they were under the Israeiltes . I want to syudy English ! Peniciline , Innovation of the Century . The most benefecial innovation of the century was in the health area . It is peniciline , and it was discovered by the Scottish scientist and Nobel laureate Alexander Fleming in 1928 . Furthermore , it has continued to innovate because peniciline is a parth of health studies with the focus of keeping human lives . Such a focus , to me , is the most important area in human studies . Finally , this antibiotic has actually been used everday in places such as hospitals , cliniques , etc , to save people . Therefore it can be considered an innovate , as it is surely a unique and great discovery . I feel luckey when I see red sky both morning and evenings . But in my opinion , it 's their promblems . Every forigner working here earns a higher salary than the locals , even though they do the same job . The Goya plant has rough skn but when I touched it , it felt greasy . Just fun . My friend geve me a Goya plant yesterday . If I keep it in my regrefrigerator it will change to a yellow color and a very sweet taste . today I tried calln method for the first time e - mal is : mf329 @ msn . One of my friends recomened a dvd . It was imtereste for me to watch this one . Because I study lisning and speaking . She would like to have a baby , months ago she lost one and she was realy sad . She will be fine . She has the love of all the Brazilian people and her husband . I will practice the violine . So I have time to play the violine after so long . But I have to tune my violine before I play it . I had a very importante test today and I was very nervous ! The wheather was nice , like early summer . It seemed like a bad endress loop . I think I am just an intolerbly lazy guy . After supper , I took some medicine so I hope it 's gon to be better tomorrow . ( I hope so ! ) Today is the scond year and week I have studied at this college . is more importent and the savor also can be forst . But I do n't know how to forst my interest . Some kind - hearted people brought the cat to a hospital for animals , becouse the unlucky animal was very thin and had many wounds . I want someone who will correct my English strirctly . I live in Hoddaido which is located in nothen Japan . Deer rice cracker are sould in Nara park for one hundred yen . The deer will paster you violently . I buy big pizzas from Costoco from time to time . And I also like to buy bulgogi bagle . Bulgogi is a seasoned beef dish cooked well - done . Anyway , Costo has been doing it in their own way , and many Koreans find this appealing . I am worried about the blood test result this Tursday . He had n't neither problems nor consern and was very happy . Prease make friends with me ! Santiago is famous for Christian pilgrimates and its universities , which are very old but are still attended by many students . In London there are millions of people and cars , so the polution in London is much worse than in Santiago . The old city of Santiago is as impresionant as the most famoust buildings in London . One of our most popular foods is shelfish , and there are a lot of restaurants near the cathedral that serve this meal . Now I am living in a cucumber farm house with Hong Kong friends and some mala friends . It is later than before , so we can wake up late , happly ! If we have any days off , we will be wery happy . People born in the Year of the Tiger are sopposed to be generous but stubborn . Are there any bliefs in your country about what determines your personality or what your future holds ? . 2nd , my baby 's new car , the Prius Toyta , which is stained much . I did n't ptantice much . At least , I want to eat with sombody . My favorite fruit is pinapples . Anyway , I like pinapples . I 'd like her to be responsible for something bacause I believe that makes her feel a sense of oneness of family . ( minor ^ ^ ) Just have to live for now and preparate for the future . Going abrod . . some friends have gone to forine countries to learnd English . . . but I do n't have enough time to go abraod . . and other uroup cntury ( nations ) I have to accpect it . Now my husband and I are watching the game on TV and cheerin ourt prefectural team . I 'm ftom Osaka . Welcom ! Because they are in small gages all the time and walking time is once or twice a day which is only ten or twenty minutes . because I have never thougt about it like him . I know that it 's gon to be difficult to keep up with this class but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . But when I talk with her , she can undrstand what I mean . From an expert 's standpoint the key to breaking a victious circle is to change the established patterns . At first , I felt a little down , but I like it now because my frends said it looked nice : ) ) I am a universty student in Japan . I can teach Japanese to people who want to laern Japanese . Starting today , I want to write many entries in enlgish . . I 'm in the middle of developping a software program . My favorit place is the road near Shukutoku Univercity . the titles I gave the texts are n't really creativ , are they . . * laugh * And I hope I can improve my englisch skills this way . Continuance of the Tnabata story . My favorite magazin is Arakawa Under the Bridge . Arakawa Under The Bridge is about strange people who live under the brige . But I felt frastrated about failing a stunt , because it was a big challenge for me . . . . when we talk about the hacker , we think of someone who is tring to get some secret information from the government or someone who steals the bank acounts of the rich . I ` m aifraid I can ` t answer now I 'm encauraged by this news . They throw a hot , 400 degree stone into a soup to boil it . ( yummi ) They tought us how to dance . I took the TOEFL this morning , and I found that my English typing speed is too slow , despit my fast Chinese typing . So I made a dicision during the test , that I must find a way to get more chances to type English , so that there is possibility to improve it ~ Maybe I should keep on blogging in English . The academic lectures seemed difficult to me , and the writing required too many words . The words used to write are long and unfrequently appear in daily life ~ So I just chose to give up preparing . Why are you afraid of a challange now ? At that time , I had n't visted other countries before , I was very excited . I made plans for traveling untill late at night . As I was n't good at Japanese , I had to use English to convers with others . My old friend introduced me to his Japanses friend - Yoske . The dolls must be temporarilly displayed . People belive girls will marry late , if the dolls are The term is from the middle of Febrary to the the middle of March Afraid of my furture But I 'm afraid about my furture . I want to find a good jod . This is a Japanese animation 's titlet too Once the petals of one flower blossmed together for a short time . I wached the animation film last night . I am a beginer to this site but please help me to study English and in exchange I will help you with your Japanese ! ! I am eagerly waitting for your messege > < I have gone to an English languageschool school for 2 months . So , she wanted me to be in an arrenged marriage . Actualy , she did n't like him at all . I must be possitve , active , and attractive in Tokyo . At last , I hope erverything will be improve ! I think she has an energish mind . I have to comunicate with you , so that my elglih will improve . My enlish is not very good and I 'm not confident with my ability . I wish I can make friends with all of you guys and please help me to correc my errors ! Thank you very much Even thogh I was in America , my English is still bad . raise theirself children , thus consumer decrease to expend . To be frank , I 'm not so interested in that part , but my frends , especially men , are interested in it . It is important that people in the vallry want to move the tree , and they do it themselves . It was relesed in 2003 . Today is a holiday , which is the Japanease flag holiday , What is your favorit food in summer ? My hoby are listening to music and playing volleyball . I will graduate from shcool soon . Ionly have 8 days of shcool left . My shcool is very strict on maners . It causes me a lot of stesses . . . But shcool life in 3J is very happy and funny . First , I could n't figure out what happened , but it made me more exsiting . I did n't know before marridge , that men have a party with their friends , we do n't have this . I want to wacth more funy movies . I am goint to see it tonight with my family . The typhoon left last lastnight . Often , I visit English websight tomarrow is my last English conversation exam ! From now on , I must write a new enrty at least once a week ! when I hear someone saying that , I frawn and get annoyed . I just completed my Bacelor Degree in Information Technology major . I am looking for a job now . and I 'm also looking for scholorship to study abroad . I often watch Japanese movies , Dorama and western movies when I have free time . And I hope to make many freinds on this website . I 'm wondering if I should call in sick tmrw . I learned this sentence `` What was your first impresstion of me ? `` You shold guess in the content . `` However , it is difficult for me to guess a new word . Because there were so many Japanese people , I did n't feel like I went abored . The scuba scoach was Japanese . Tonight I have to go to cram scool . Maybe I 'll have a barbeQ party , but I 'm not sure yet . It is dificult for me to write in English . Ohh ! A summer vacation has begun ! The original work is from commic book that was published in 1980 . There are many shushi bars in Asakusa . I think that talking with my frieds will lift my spirits . We do n't know whether we are speaking American - English or Britian - English . I 'm runnnig a clothig store in Kyoto , Japan . If I have to criticize , I whould say that the sorting of garbage is not strict compared with other towns . A privately owned Chihauhau received a license to be a police dog . I 'm getting excitied ! Could you please tell me your schoo trip be it in elementary school , junior school or high school in your country ? Plese leave a comment . This shows the charachter of Japanese market . There are white and yellow Sinkansens . If you see a running yellow Shinkanse , you are lucky . What a wonderfull thing that would be ! ! So poeple , tell me what you like and correct my grammer , please ! Fathr of 1 . I stady English , book - keeping and FP . I 'm Interestd in Videogames ( PS3 , PS2 , PSP , Xbox , Wii , NDS ) , Anime , iPhone and iPad . . Now I stady English hard . I am glad they do n't start at an earlier time becuase I am easily distracted by sound during my sleep . I still do not how to translate Japanese into Chinses . And then , I went home and was studing until now . I want to take a nap after going back againg and keep studying more . I heard that `` one love `` means `` good bye `` or `` see you later `` A week later , I rented a DVD and whached it . Self - introuction in English After that I went to the humberger shop . My Humberger was too big to eat ! I always worry about what present my son wans every Christmas . People who have graduated from low level University then go to a high level Uviversity . I think it 's really taugh work ! Today is a holiday , `` Phisical Education Day `` . Though I want strongly to communicate with all english tourists and teach themmany many good things about Japan . I 'm learning English for bussiness now . I happened to find lang 8 when I read a book writen about English . The seeds will need to be plented by ourselves . Thank you so moch to many people in many countries ! To tell you the truth , It 's the first time I 've heard of the existance of generic medicine . I am a graduate student , majior in biology . Swine flu is threstening many coutries . I 've started wrighting a blog I like travering - - The sea makes my soul very carm and my body healthy . . . In Nagasaki , I went to HUIS TEN BOSCH and an Atomic Bomb Musium . The next day I moved on to the Atomic Bomb Musium . You know I have a holiday , so I will learn more than other peopie . There are many geoglyphs and the lenght of the biggest ( `` one `` or `` geoglyph `` ) is about 300 meters . I heard the sad news that an earthquake hit Iran , causing many injuries and casualities . Every time I hear the news of an earthquake in the world , I recall the one whcih hit my home - town , Kobe , in 1995 . The fact that over five thousand people were killed or seriously injuered left many deep scars . becasue I am a lazy girl . I heardly save my money . I do n't know if I should be ake him again or not . Please correct my mother ` s dialy I guess handicrafs are valuable because they carry the long history both internal and aborad My first aborad travel was in 2000 . But , it 's a kind of cultural diffrence . I can talk to international studens but I ca n't talk to American people . I display about 20 picture postcards and photographs on the partions . He remenbers me and spork to me . I exchanged contact information whith him . On Sunday , I went to Changi village and beach which are near the Chaing airport . and the Japanese army easily marched to the present boarderline between Malaysia and Singapore . and its a bit boring , but there is a crack where you can enter the underworld . If you kill all the enemies in this zone , you enter the scar and then the garden , and finally you can enter the hero 's hall . There , everithins is made of gold , and in the last part you can find three mesmer bosses called The Darkness . If you can kill them , they give you two green staffs . Each staff can be sold for aproximaly 5 thousand gold coins . I am not interested in alchol that much . The book he worte , `` The Last Lecture `` , really gave me And the process of persuing Anyway , I am going to read a book now , but I hope that someone will interupt it . And also there are a lot of other metter . . . . . My colleage is being transferred My colleage will be transfered this weekend . It is very unfortunnate . I listen to beautiful music instead of his noize . Emailing with him is my tivial enjoyness . I want to ask you something : Which resorces do you recommend me for learning English ? farst diary . My friend can speake English very well . I want to take a buth in hot water tonight . The battle scene was so fasntastic . Except that , it 's an exciting movie so I recommened it to you ! My mom 's enthersiasm toward Korian culture is worth to be respected . I had been using an iPod and iTunes so I was little familier with the products by Apple . For example , I listend to BBC and CNN podcast . I connected the hose to the faucet , dragged it till out of the fense and I tried . But very little water could be poired on the roof . But I watered all around me , the block fense , the wall of my house and the ground . I felt even cooler than ever despite knowing the tempreture might not go down so much . As for the cafe , as I mentioned , it was a very stylish and its dishes were resonable and tasty . I hane to make a presentation about accountings . So , I hane to study accountings ! ! hi there I 'm a nativespeaker of spanish language but I 'm ok at english , anyone who like help me on my japanese study I will apreciated . thanks I have lived in Iran for six or seven years , so I kan speake both Farsi and Dari . The two langauges are not very different , but somtime a person from Afghanistan ca n't understand a person from Iran Farsi is the langauge used by Iranian people and Dari is the langauge used by Afghan people . But Afghanistan does not have only one officia langaue . Afghanistan have two officia langauges , the other langauge is Pashto . I must studer English , Norwegien and math to be able to go to school in Norway . For this teason , it was difficult to give the survey . I 'm was informed today that I succeeded in the enterance examination to graduate school . Recently I have discovered that I start getting used to memorizing materials which have no relevance to my studies what - so - ever - this kind of bahavourial pattern has baffled me for quite a while , since after I found myself flipping through pages from the nearest dictionary again . I guess back in the Freudian Era these self - descriptive symptons could well end up being diagoised as `` hysterical . `` My roommate youger than me by 2 years . Sometimes we joke that shen must thank that boy because he made her love books . Now , shen has met another boy . and I feel nostalgy . I tought I had one too many drinks during the featival . - - Many tourist come there to see noumerous fish . He met many students and chenged their lives . I was trying to make my familie 's version as well as it . The main reason is my indiscipline and frankly speaking , laziess . Please tell me about yourself , where are yor from , what do you do , and how old are you ? I was supprised to hear his words . I drank an energy drink becouse I was tired . I was vigor . becouse some people do n't have jobs to do . . I think they 'll give you good anwers and you 'll resolve your Japanese problems . I found out that the old friend who had often caused some problems in class had become a store manager at food restrant . Waht made you come here ? So do you enjoy beatiful nature in good weather ? Because everyhing here is too expensive . Before July 1st , 2010 there were two differnet kinds of taxes . You are chaged just 5 % when you buy food , books , clothing for children under 14 , medication , and goods for babies like diapers and milk . Many people say that BC government spent a large amount of money for the 2010 Vancouver Olympics so that everything exept the minimum wage is going up . Yure friends ? To build Olympic facilities and infrastructure , tens of trees were cut down and mountaiontops were blasted . It was estimated over 85 units were affected , and this led to an increse in homelessness . But , I 'm provided ONLY FRIED FISH AND FRIED POTATE . [ ^ ^ ] This year , I want to enter the city marathan . For that , I have to do lots of exercise like running , swimming and streaching . I did n't write in my dialy recently . A long time has passed since I wrote in my dialy last . I have mailed out hundreds of CVs , but recieved few replies . My friends tlod me that it was snowing a little bit in He bei province yesterday . But I kown it is impossible and I need to study here . My friends and my families told me the weather is getting cloder and told me to wear clothes as much as possible . I need to find a new chellange for myself . Actually , my country is very close to japan . However , the traspotation fee is really more expensive than from China to korea . Anyway , I wanna make japaness friends . And I recommend you to book a hotel , and a bus or a train as soon as possible becasue a lot of people come to Nagaoka in the season . ( during this season ) After some time I took photographs of my flat to show my frind , who lives in another country . I want to be able to write sentences fluentry in English as I can in Japanese . I serviced in the Korean millitary for 2 years . Many of Korea 's young people have to service in the Korean millitary . you have to obtain a permit from the Korean millitary departments . I am making Tenpura and soup . My teacher is youger than me and studies Japanese . Anyway , I found out teaching Japanese is more interesting than I ecpected . I belive that every ' first ' is very exciting ! He tells me that he is well , but the situation is not optimatic . However , our class won 3rd palce in the end . I 've been to Canada and I was impressed with the stuuning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more mafnificent . I have a seminer at my job . The seminer occured me to get a little sleep . At my office , the air conditioner is working much weaklier than usual . Thanks for readning . Elves , dwarfs , magicians , trolls orcs , and orks too . I mean elvish is such a cute languge . Speaking of the elves , I really want to a jawellery like Arwen 's evenstar . And the other couple Faramir and Eowyn are so courages and dignified . tomorrow l wnat to write down the china exchange rate but it 's diffecult ! It was very beautiful , but it was very cold outsede ! But my home has not started yet , becouse the weather just changed so rapidly these days . It was said that one of the thieves knew the longuage of the birds , and another could unlock any lock without a key . And there are lots of food the GERD patient ca n't eat such as chocalate , sweet food , milk , tomato , peppermint and of coure wine and coffee . Anyway , I hope everyone is healthy and excercise more ( including myself ) ! ! I thihk it is very fun to make friends . Of course I analize myself at first . For this reason I like to read , listen to songs , but I prefer singing , and wacht films about outstandig people . . . At the dinner , I ate miso sopu . I like miso sopu . I 'm Japanese you know . But the sopu was still very , very hot . But I 'll keep eating miso sopu tomorrow , and the day after tomorrow . you know , I like miso sopu . In anicient times a bad dragon lived in Japan . theather . I think that therr is aways time to talk to your friend if you want to . Maybe cats in those cafes are happier than those do n't have their homes because Neco cafe 's cats are fed only by playing with us human beings . I wanted to improve my running becouse I 'm not good at running . Hence , I could improve my runnning . Last week , I read the book `` la sombra del viento `` by Carles Luiz Zafon transrated to Japanese . This novel has a tasts of mystery , horror , romance , suspense , etc . And also , I cought a cold from him . He said my pupile were already there . Energy savving lamps are our factory 's product . I went to an Anpanman movie at the cinema with my oldest doughter today . When we enterd the gate , we got an Anpanman doll made of plastic . It can project an image of Anpanman with a push of a botton . In case I forget it again , I 'll write the passward down here . . . Athretic meeting in my daughter 's kindergarten . Yesterday , there was an athretic meeting in the kindergarten that my daughter attends . The weather forecast said it would be rainy , but yeasterday it was fine day . The class that my daughter is in , called the ' Duck ' team did n't win , but my daughter and all the other children of her kindergerten and their parents ran around looks happy . Next year , both my daughter and my son will attend kindergarton too . I 'll invite my parents to the athretic meeting . I saw this site in my favorite magazin , I was angry beacause I started work at 7 am today . I wanted to do something unforgetable to express my appreciate to them . On Chirismas morning , my father entered my room and said to me , But when I was doing an internship , I thougt that it would be too difficult for me to teach something other than biology to students . Do you do skyape or facebook ? Today , March 10th , is the day when candidates can know whether or not they pass the entrance exam of national univercities in Japan . I have a girlfriend and I love her , but I ` m so embarraced that I have not yet told her so ^ ^ . We go to the same private univercity ( Univercity of Keio in Tokyo ) and we belong to the same class . But she also studied to pass the entrance exam of the Univercity of Kyoto ! I ` m sad because I could ` t meet her if she passes the exam ( Kyoto is far from Tokyo ) , while I support her and believe she will be a succces . I am 32 years old and I like my current job , I work for a company , a big company , and I feel confortable and I have a decente salary . Now I think she is the most beatiful girl that I know . Since that day I am always thinking about her . That day I waited for 30 minutes in the restaurant when she had appeard in her red skirt . . . . The topic is staying healthy , we have to write some points on the note card and say it in front of calssmates in three minutes . here 's my whole sppech Also , I am a meat lover , I eat a lot of meat , expecially steak , I love it very much . But now , I realize that I ca n't be like this anymore , I want become more healthier , so , I change my dail rountine . In recent days , I talked with two foreigners who came from Japan and Marashiya . Moreover , we have invented an intereting way to interact : I listen to what the one says in Japanese , and translate it into Marashiya with the Taiwanese man . If you know a book which you think is the best , plese tell me . First , we had a dinner at Coco No1 , the chane curry restaurant . In the restaurant , as we were talking , he told me to search useful websights . websight I ve ever known . `` So , I joind Lang - 8 . But I really want to go abrord `` a `` d to expand `` my `` horizons . Because yesterday , I slept all day long since I had cold , I didn ` t feel drownsy last night . If you read a book about a foreign country you have never been to , you can experience the atomosphere and culture there without visiting . Yasterday , a very agressive woman vizited me . I said that other girls had packed those vegetables , not me ( which was true ! ) But she scrimed : `` I can show you ! ! ! `` Then she took five packets of carrots and threw them at me ! So I was shoked and stood there not saying anything . diart ( 20 . Mar . 2011 ) I went shopping yestrday . The wather was not good , so I felt more tired afterwards . [ past tense ] For example , leaning ON the railing , leaning ONER the desk ? ? ? b ) Boxes are clutterd on the road . com person replied to them and they sometimes apologied for the inconviniences . Today , I went to Rikkyo University , and I got a stundnt card . The atmosphere is really strang among all of us . . . Are we still friens ? Although some infrastructures have been conjested , even in Tokyo & Yokohama area , Well , tht 's all . Our group consisted of 3 famillies including mine . I want to learh English because my dream is to visit many countries all over the world . It 's the motherland of my granddad and simply a wondefull place . My teacher ` s pronunciation was clear , but the cd wasn hard to understand . I thought that I really wanted to make Aartificial interigence as a result of this experience . Why are peolpe 's feelings so complicated ? Other researchers have proposed to detect the tumoer 's movement from the diaphragm 's movement . I studid Spanish for two years about 5 years ago . or should I consentrate on only one language until I master it ( or at least be in the intermediate - level ) then start with the other one ? A goal is more real than an idea , and has considerably more chanses to be realized . Incidentally , Robbie Wiliams , who had left Take That , has rejoined after fifteen years of separation and has made their new album , corporating with the others . And for the 3 years I ` ve studing French . I love camedies like Two & A Half Men , The Big Bang Theory and The IT Crowd , etc . Luckly , it 's really good to have nice wather . It 's the best wheather this year and It 's good for running a marathon . I did n't have any paticular reason for attending the marathon . I was always concentrating on keeping up my pace and not slowing down dring the race . I managed to finish it , but I could barly walk normally after that . Anyway I should exersice regulary . . . . . I loove sleeping ^ - ^ I want to go to a different contry dive in a different sea . I want to go snowbording if I obtain it . Unitl this year , I have been working in ShangHai and have not been back to my homwtown . They will see the full bloom cherry blossoms for the fiest time . now I have gotten back to my place , im gona na cook dinner for my boyfriend : ) : ) what im gona na cook ? It is exciting , fantasic , amazing and hopeful . He and I belonged to same club in university and have knowen each other for about 9 years . I dont ` t have anything to write here . . . First of all , this subject reminds me of something very croel , which is the passing of time that we , all mankind , have to face . When I was in first grade , I was selected to be in the Christian class due to some kind of mistake , even though I am Bhuddist . I was the only bhuddist student in that class , so I felt a little nervous at the beginning of the semester , but everything went just fine . I know the reason why I could n't control myself these thesedays . Every day we see beutiful , modern and fast trains passing throught the village . Let 's just have fun while studing . We went to Yale University first . When we arrived at Yale University , we all felf very excited and shocked . Their music has also become a part of our lives , escecially when we live abroad . This small painting work does not only pose a cost probleblem but it also could n't be accepted by the factory . My university is famous for teaching internatinal students Chinese . I was tlanslating an English e - mail for my boss the other day . After their explanation of the situation , they inseerted a phrase `` A Guy . `` with an capitalized `` g `` . My way of learing nowadays . Earthquake happened in Chili the day before yesterday . I felt at ease but I am worried about the people who live in Chili . It turly mede me surprised ! They supply products at very low prices without lossing quality . But I have gotten to the idea that it 's fully enogh in quality and looks at this moment . I bought a magazin , Non - no . Non - no is popular magazin about fashion in Japan . But a few minutes ago , I recieved a call . Today will be a bussiness day . But , todat is the weekend . I 'm really lookimg forword to this weekend . Maybe she 's a model or celeblities in Tokyo . Now its hard for me to lean the work but the work is simier to another job I had worked which was in a pub in Japan , so I think that I remember it soon ! I dicided to clean up and discareed some clothes I do n't need . I always make a lunch box for my hasband . Yesterday I made it as usuall , though he did not need it because he had a health check at the company . During that time , there was no PC in my house and I did n't have a celler phone . The magazine has plenty of information ( features stories ) about ivent in Tokyo that week . Today , peeple get information ( over the Internet ) on the web or mobile phones . Cheerly ! But I have received nothig . I 'd love to help people who is studing Japanese . Usually the doughnuts cost around 110 yen eachthere . May Day holiday passed very qucikly . But fortunately , three legal holidays are added , tomb - sweeping day , dargon boat festival and mid - autumn festival . Astrology predicts that Pisces ' dreams will come ture , and I await . And we went to a shshi restarant together ! My iPod is broken * becuse accidentally washed it today . I should had checked the pokets ! But , these thougts make me feel pressed so that 's why I think I have done nothing recently . Japanese Sake is not wine , you shold drink it when it is freshly made . . It was a lucky day that I saw beautifu sunset . I was volunter as an interprer and supported them . 7 people with their familes are participated . But when I went to church , I conld n't find to somebody who has talked with me before . Wife : Donno . `` He realy wrote 30 songs a day . I looked at him only for 10 seconds , but I still rember that he wore a suit and he looked very tired . Somehow I unconsiously took the envelope from him . I also remember , the train seemed to jump and swing a littile bit due to his body . Mark Zuckerberg would become the youngest billianaire in the world . It is estimated that Facebook has over 500 million members now . The two young men had diffent points of view about Facebook 's history . . . . Did you know that Takahashi Daisuke won a brond medal in the Olympics ! ? We have good news and bad news almost everyday but I wish we had only good news like about Takahashi winning the brond medal ! ! My freind and I met up at the movie theater at 8 : 00 . I think this movie encouraged prople to think about real things in wonderland . Although the sales staff was so enthusiastic , the course was abosolutely I think whether I can learn something or not depends on how eargly Cafe Perty My friends held a Cafe perty today . This is my firstt time using English to write a diary . I think it probaly l would really appreacite it . I felt really happy when my former boss told me that I would move to Okinawa office , because the Okinawa office is quite popular amang my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so we could go anywhere we wanted with my wife driving us . ( In those days , my drivers lisence had expired because I forgot to renew ! ) . I did n't have time to go todrinking with her befpre . I want to speak English well as if I were a neitive . In Japan , It 's called `` The Japnan Series `` This year 's fighing match is between the Giants and the Lions . Because my printer broked . To study English & Frech , I I thought I would try this Lang - 8 site . Because I felt that the original novel was very intersting when I was read it . Last Sturuday I saw the movie , ' Lost in Translation ' . After seeing it I realized that Japan has many non - japanese people here , and that the country is becoming multicultual . I 'm lokking forward to it ! It is true to studing languages consists of the letters , If you have done that yourselfe , share your experience , please . I have this book pablished in English . Recentry I thought that I need to need understandEnglish . So I 'll be going abroad anytime , for find job in a foreigne country , I want to be ready . I normally only have two cups a day so that I do n't drink so much coffee that it mgight cause bone loss . She had to go to Moskow urgently , but she could n't leave Silver on his own . Recentry , my sister began a part - time job . Prosecotors have no right to say ' justice and honor ' anymore . But I 'm very proud that MBC is not afraid of unjustice power . The Mayday event that the North & South Trade Union co - organized might be cancled . Besides that , I 'm putting on weigt again . But when I try to write in English , my brain stopps working . I dind n't want to go back to Japan . I 've been studying Engligh to go to Canada again . I am very ainxious about whether I can complete the full distance . After 2days , my mother nitice her charmy . I prized him , and felt ashamed to sing . w Mabye my friend is just very talktive and she could finds a lot of interesting things from the usual things So I think it 's important to keep in thouch like this ( now ) . I 'm learning German and strengthing my English now . It was there for a long time since I foget that my pot was on the fire . Today waas a wake and tomorrow is a funeral . I want to imporove my English . Can you help me ? Thus on this day men gave sto their wives and mothers , and they accepted every request that thier wives and mothers had . I 'm palnning to get my hair cut after getting my exam results . In Japan children who are less than 15 years old cann ` t offer their internal organs . What is more , people who doctors declare brain - dead even can ` t offer theirs either . I think that it is strange for Japanse patientsto go abroad for it , because us Japanse shouldn ` t rely on other countries . ' 1 ' is promounced ' I ' , and ' 2 ' is promounced ' hu ' in Japanese 's informal way to count . And I actually scored higher marks in the Chinese - - > English interpreatation test ! I saw an interseting piece of news about lions . Another one was personalifying risks are percieve to be riskya , then enormorous risks . Well he 's not is he . Al Alcaeda then . it seems to be riskya . I do n't think many people knew who the Taleban were , who Al Qaeda were , on how to pronunciate it little bit later on . I bought some groceries , such as Vegemate , as souvenirs from Australia for my family . And this tme , my father bought Japanese cakes in the shape of an aromatic citron . We work with a bad maneger . Secondly , my friend told me that I looked older becouse of my glasses . Naw , we have to elect the new superintendent for the dormitory . The votig day is next Friday . Rice wine has piquancy and a delectable flvor . It means I can watch TV in the buthtub with the cellphone ! XD I 've always thought that doing a puzzle is really boring and you must have a lot of pacience with all those little pieces . At the same time , it reminds me of the game I played at kindergartain I woke up at five this moring . I am male and gay . I do n't konw what I will do in the future . It is little far , but the doctor is famouse and good at sport osteopath . I like Timberland 's shose . : - ) But soon , my school is going to start and everything wil get busy . Things went really badly , I mean really aweful . so I started to feak out . I started with the first question , which was very ambigious . I 'm strugging with them . So I will write a dirly in English on Lang - 8 ! When I wondered where I could take my baby in the mall , I happened to find a pet shop which had a special campain . First of all , I will try write daialy . Althought , That taste and style is like , realy similar to C . A . Many Japanese people participating in the GP finala is exciting and interesting for their fellow Japanese people ! She corrected my mistakes in some exercises , we read a book and I tried to speak about my hollydays , but my attempts were without luck . = ( ( ( And now I 'm writting this post = ) These days , I 've been a bit busy so , I could n't update my bolgs for a week : ( A lot went on : O School started and I was given homework than I 'd expectedXO . XO I also started running in the morning , with my friend , for diet and health . The web registeration for my exchange university did n't go well . . . Busan is a famous jarbor city in Korea . Things I have thouht about recently I couldn seldom find correct answers . It ` better for me to study Japanese history and basical matters in Japan for communicating with forieners . I ` ve sometimes felt upset that foreigners know about Japanese culutures more than I do . How can I imploving my ability of memorization ? My co - worker invited me to go to see the movie `` Avatar `` as it released yeaterday . My brother came to my house last weel . Have I benn familiar with early bird ( riser ) ? I can read in English , also I can understand speach on TV and in the films ( movies ) , but I still could n't write correctly and could not speak fluently . It is very fun to sweam when it snows . Do Hemingway 's novels consist of easy words and sentense ? Are all of his novels full of easy words and sentense ? I decieded to study English . I must meet somone who I can speak with . One day a gipsy stole a bag of corn and was thinking about how he could split it up so that he was not noticed . I am a menber of ( the ? ) Tamura Jiro seminar and a menber of ( the ? ) Uzaki Akihiko seminar . make frends I want to make frends with people allover the world , especially speaking English and Spainsh . And please type `` frends from lang - 8 `` thanks Am I really going abroad alone ? `` Of cource it 's real . I used to hate writing something because I felt it was a hussle . Japanese studenets study English for a very long time , but only a few will need English in thier future . I called a water pipe repair campany and a repairman came to my clinic to fix it . Francis said something stupid about the slowness of the machine to break the ice and Rachel started to laught . Nobody cuold n't understand they were in love . One year later , the very same day of their first date , they were engaged with a diamond ring as withness . I have go to El Camino collge since Aug , 2nd . His dream is to be sugeon . She is fortish . You know , I 'm cooking puncakes and I promise that I wo n't let you eat any ! `` So , althought I was tired after my trip , I was really upset and frustrated with her `` lovely greeting `` . I will work at a rocal primary school in Bhutan . Because , to me , they are my really good freinds . if my friends want to leran just click and join me . . ohh I should be thank my friend named Tyler who gave me more wunderful pics so I use his pic in my topic I ca n't understand the Russian langage , therefore I amended the Russian person 's English translation . Parents are up in arms ove plans to close the school . We ate humburger today . I 'm studing Einglish I ate cream spaggethi with iced coffee . I was satisfied because it 's dellicious . have no substitle I think that the Sinam goverment should support the Humanitarian Aid Prgogram . The second is the foucus on medical treatments . For example , it is difficult to distribute the aid to people fairly , and there is no economis stimulus included . people may dicide to study foreign languages for various reasons . People in certain bisiness may have to deal directly or indirectly with foreign corespondences . Starting with writting some notes in lang - 8 . The last thuseday , I tooka walk in Hyde Park because the weather was fine . becouse the weather was beautiful and I made friends with a classmate . It was very beautiful becouse it was just in full blossom . Becouse here there are not many cherry trees . We could learn the news and details of the tragedy immidetely thanks to the Intenet . They have become aware that they have to take action against the tyrannical authority of Muburak . He is hsed to taking care of his intersts , and his power as the president . I am asking , where are human rights , good concious , and justice ? In addition , they want to reform the constitution , and they don ` t want Mubarak for another presidental term . I think that all these demands are very normal . These demands wo n't take a mericale to achieve . Millions of people are all over Egyptshouting shouting their demands , but no one listens . I am very sad for the people who were killed , injured , or imprisoned just because they want reform in their country . Today is the eleventh day of my country ` s revelution . All the people are calling Mubarak to leave , but he refused claiming that he fears chaos if he leaves . ( five spaces ) I completely aprove of the way you are teaching and that is why you 've convinced me that your offer is the best one of all possi ibilities . He said `` take some medicinene ( anthelenintic ) . . . . . `` But I had not eaten . Here there are quality foreigers . Sometimes the foreige friends help correct my English diaries . I am afriadI that I will fail again . for example ' BP oil spill ' , ' Iraque and Endless Afghanistan War Today is one of the inportant anniversary for all of Americans , the Independence Day , it 's known by many people around the world . I think about that thouse are in their all of hearts . I know that thouse are called ' American Dreams ' . It 's why they all sacrifice the weak people of around the world for making their the huge happiest American Dream lifves . and all of Americans because thay have another nice characteristic , Americn Spirit . The living room and dining room are biyond the kitchen . I stayed at home all day and wached TV . I play an English studying software called `` Eigoduke . `` But I ususally take care of her because my son is too young to do it by himself . In the usniverse , time was born in just a few years . They eventually settled down on the earth without fear of danger . As time passed , they become dogs , mice , cocoroaches and humans . Thank you for readin about our ' ( Fantasy ? ) world . ' Have you wacthed the movie Armaggeddon ? I think it 's really famose and I hope many people have wacthed it . I spent some time , and thought out an ansewer . Facing to the north , right is the direction of east , and left is the direciton of west , Boy : Yeah , I am Chirstmas ~ Will you marry me ? I like playing comeputer games and wantching TV and so on . Fortunatelly , it 's too cold and dry for cockroaches to live here in Hokkaido so I am relieved that I do n't see any cockroaches . However I did n't have a partener , so I practiced alone . My skills are not that great so I did n't have a chace to play others . I thouht she was much older than me , because she has a low voice , but she was born just three months before me . Almost all Japanese clean up their house completely , decolate for new year style , write cards for new year 's greetings and so on . However , there are some big cities , whic have more than 500 thousand people . Such cities are bigger than prefectures . When I drank green tea after taking a bath , I thougt this is a real leeway of life . But I dreink green tea , I sometimes wonder why I feel so . supprised that he used QQ . Us Chinese like using it , but I did n't know foreigers use it too . My umprella snaped after being hit by gale force winds . so if the company does move to another place I must go to the main bance and do a job with him every day . My secong idea is to stay at the same company but I dont think I will be able to read a book . and I do n't have the time to pacetace English . They only speak in English with occasional someexplanations in Spanish . But I think people who have beards do n't look good . ( although , on some people it 's cool , like jhony Depp ) Most of them are younger than us by 3 years so I could not help feelig the generation gap when I talked with them . Adaptin to the new circumstaion is always difficult and I 'm a little bit nervous How to lern new subjects ? They can grow organic vegitables of their own at their farms . In a passenger train there are carragies , and in trains used for transporting freight there are wagons , right ? I think happiness is decided by comparision . We vsited an Asian goods shop . Recentlly , I 've been interested in Asian goods . I have a complete lack of EFFOT ! ! I 'm very healty , but one point is not good . I do n't want to become a diabates . Mouners are come to pay their respects to the person who has passed away . Rose hip , hibiscus , german camomile , orage peel , apple peel , black currant and grape were in it . I sometimes got angly but usually I love them . I have a runny nose very often ( kind of allegic ? ) and get tired easily . I was ill yeastoday . Happy Valentina 's day Jamie Ollver Having a part time job at a small foreign restaurent was the begining of her love story . Most of the customers who came to the restaurent were foreigners . Lane just wannted to look into his eyes for so long . Tha Professional Japanese Language Teacher Training Seminar Its title was `` The One - to - One Japanes Lesson for Japanese Language Teachers `` . Lecturers included a famous teacher who is my senior , the president of a Japanese lauguage school and myself . It 's eay to find out if you look at the entry calendars from last year . This year , I will write short diaries , for example , just a cople of sentences , and so on . That way it will be easy for me to keep a diray even every day . When the competition started , two strong men were fightong and there were some slamming sounds . I heard that it is good for learnig English . I want to wacth `` Heroes `` . I have n't writen in this blog for a long time . I logined in to Lang - 8 for a long time . I was suprised and I felt very thankful . Because the teather could not teach such things . One of my Singaporean friends tought me a way to delete it . And my Singaporean friend geve up and told me he is going to bed because it was already midnight . So , I could search for a way to delete it on a Japanese web site by useinf the simple Japanese type method . How cheaky and stupid they are . He now able to speak various words ( For exsample , the name of animals ) and He does n't need a baby - car any more . The reason is that some kids had been waching me for a while . When we were talking about that I tought the time was running out fast . Now the vaccation ( respite , diversion ) is over , and I must free myself from the games to focus my mind on more significant things . I went to Universer Studios on Sunday with my brother , my mother , my friend and my friend 's mother . To get to universer stadio we took a train . First we rode a new atracion called Fantagi . It was a nice atracion . Universer Studios was very fun . I would like to go agein . now ( no comma ) I am listenning to music . cn . If you have something to share with me , tell me throught it . But I don ` t really like to syudy . ; - ( Next Februaly , I 'm going to take the entrance examination for Tokyo University . However , I 'm not good at English , so I joined Lang - 8 in order to develope my English writing ability . Can you guess what I anwered to that ? It was n't very productive , but I watched an titled ' Hajime no ippo ( The First Step ) ' on Youtbe . I did n't subscribe to weelky comics , such as ' JUMP ' and ' MAGAZINE ' , at that time so I did n't know anything about the story - line . but it was canceled becuase of an idiot ! So , I bought Sheperd Pies at a shop and washed some letus and Nari , the dolphine , is one of a pod of about thirteen wild dolphins that attend a nightly hand feeding event at a resort on Moreten island off Brisbane . The dolphin was spotted to have a very deep wound from a bite of a large shark on Friday , until Monday the animal had not emerged from Moreten bay at its nightly feed , and it was feared it may have been injured , but the twelve - year - old dolphine returned to its regular feeding spot on Monday night , and is transported by a boat to the sea world of the Australia 's gold coast , where he underwent the surgery and now is recovering . The dolphine is said to be coping quite well , and is expected to be back in the wild within forty to six weeks . I was using safari since I bougth an Iphone . But I did n't use safari so I dicided that I stop using safari and other Iphone functions except phone , e - mail and something that does n't use 3G . It was usefull because I could visit places I have n't been to before . It was a plearsure to me because I 've never done that before . So I walk aound Nara city near my house . I will go his reatraurant again in the near future . Because my car 's color is balak . I want to studu English . sth ? ? ? ? like M . MJ . perhaps couse M . J . , so l listened the Beatles . Today is my first day on Lang - 8 ! Horray ! And I hope it will be useful for me . I ate fried minched meat , egg roll , and sawsage . After that , I went to my friend 's house and played a lot of games . 3 days ago , my aunt called me and she asked about working in her convienience store for 4 days . Starting foreigne language education at a very early age is a good idea . The second reason is , if starting English at a very early age , they can know pleasure of communicating in English , not Japanse , and they can be excited about learnig English . In these ways , I agree that starting foreigne language education at a very early age is a good idea . So we splitted up . Today I 'm very happy , because this morning I bought a green screen for chroma keying in my shooting ! : ) It 's fantastic , you have to film against a green background and then in post production you can remove it and replace it with the backgroud you 'd like . inductory Sino - Korean and lastly . . . Anybody who reads my dirary will be happy . I will participate in full marathon convention for the first time in January nex year . This morning I ran for 4km at 10 kirometers an hour . There are gold stars , big and small circles on a brilliant emerarud green . But the dry frower is real . The ingredient is jel not nail polish . Jel is very wonderful ingredient . My emotion is influnced by the bad weather . world is enormals and the possibilities are endless . and new envirenment . as the saying goes , `` being young means no fairlue . `` I believe we I imagine that I coul n't know you beacuse you had a big change . Emma Watson x People tree is the greatst coraboration ever ! I do n't think it 's funny , so pls respect the victims . . I want to lose waight and buy it . It is pity that I can not reply to my firends . ratio among the developped countries . I feel happy to have free time without TV , cel phones , Yesterday , my wife and I went to the ob - gyn hospital to examin our baby I begiin new days . I hope my frends are happy everyday ! It is not a readonable price for me , but ths massage really effectively recharges my energy . However , many foot massage services advertise themselves as English oriented massage method or somethiing . Please recommand my english name ! ! Plz recommand my English name ! ! I was surprised becouse I could n't catch what the speaker said . I was goten up by unusualy bright sunlight this morning . Because , you know , a lot of power plants which are managemented by Tokyo Electric Power Company or Tohoku Electric Power Company have stopped running since the earthquake . So the Japanese government has been colling out to people to save electricity . But some people are misunderatanding . I worry that people , especially old people , who do n't use air conditioning in very hot weather and ca n't stand the heat may get hertstroke . And this shop has a nice atomosphere , too . We visit Mizuki Shigeru road by a local train which has drawings of many hobgoblins charactors . I am so busy that I ususally forget about them . Actually , I deleted history on Windows Exploer , but I did not clear the document history . I was reserching my other job , so I could n't write down today 's diary here . The foto was taken last year . I 'm lokking forward to meeting him . However , the spa was very nice and luch was also excellent : D ! I major in Germeny . I want to speak English fruently . I totally recomend this shop . We have a school festibal every autumn , it is a very big event . Today is an unluckly day ! In the morning , I hurried to get up , and eatted sanwiches , which I had prepared last night . Then , I realized that I had forgotten my tiket and wallet . Exspecially women like to talk about other people . Finally , I desided to throw them ( all ) out except for the graduation certificate ( join to next sentence ) a nice language excange partner As a result , the level of my English is desclining . With continuing practicing , I believe I can speak English with foreigh friends one day . Nevertheless many Koreans say that childern have to live with their parents . And they can grow in having less stressed stuations compared to childern without parents . After get marriaged many people want to live as a nuclear family . And they say that most parents should n't / ca n't insist on the right to criticize those who wo n't take care of their parents after getting marriaged . The mood of the city was so intresting and new to me ! Night market is a special culture in Taiwan , and there are a lot of delicious food and traditional handiworks . My lithneing skill is very weak , so I always got the lowest score in the listning score of the TOEFL . Tomorrow is a holiday , so I will answer the comments of previous I - idaries of mine . I 've maken a big mistake , Two days ago there was one undentified payment in my bank account . Althought it was good to solve the money puzzle , I have a new puzzle to solve . How did the first guy know about that undentified payment I had in the first place ? It was the most memorizable experience that I have had so far . Let me not be afrid . I have learned of multifarious histrical events of cruelty , massacre or carnage which are aimed at wrong sovereignty . I always go to clinics , meet doctors and advatize to or inform them about my company 's medicine . However , sometimes I am appriciated by dotors for my support . In Madrid , it has been raining all the time and going outside was imposible . Sometimes I 'm confused and I do n't know a good sentense . They 're friendly , walking beside you , always learnig an ear when you 're happy or upset . I want to buy shampoo and conditionar at half price . They are comsumed quickly and used everyday , I 'm a 22 years old Japanease woman . I can see good opints in others . I try to accumlate childcare experience because I want to be a good aupair for my furture host family . We have a lot of tiems to study , but I waste a lot of it . I am very helpess and unhappy . This phrase has the same meaning and uses the same thing ( in this case screw ) in several contries . I corrected some diary written by Japanese learnners . It is so intresting ! He sleeps in his hunmock outside and jump into river to wash his body . In morning I received your present , how beacutiful necklace , I think this gift is the best brithday gift ! Suddently , I 'm a little bit frustrated about the situation because I ca n't respond to people immediately . In this first semester , I need to choose an area which connect to my next semester 's vacation placement , it is like an intenship somewhere to do practical work . I chose `` Mental health `` this semeter , this is a big challenge ! I have poor listening skills and my spoken langauge is also very poor . Mabye . `` Takht - e Jamshid `` or `` Perspolis `` was an ancient city and one of the capitals of `` Hakhamaneshian `` dynasty for many years . My hobbies are listeng to music , watching TV , playing sports , and so on . But it was okey , I enjoyed it . We had a good time at the restrant . I think it was reasnable . I met so many people from around the wrold . I could n't speake korea very well . By the weather forcast , it will rain tomorrow . And two tyhoons will come close Japan . So , even if Japanese people can not speak both English and Mandarin , we can still comunicate with them lol . I do n't know what the Koean and Taiwanese think of Japanese people who are studying English in foreign countries . Lately I 've been going to Akihabara alot . I attended a meeting for those who are interested in finace and / or accounting . But , suddenly it sarted to rain . Aedile , I 'm afraid sharks vs . gorillas is too absurd even for the Colesseum . . . that has been a crowd - pleaser in the past , but it would be polically inexpedient considering the number of noble families that are converting to that faith . I had a trip to Aomori prefecture with nearbye farmers at the end of last October . First of all , I went to the top of the Shimokita peninshura in Aomori prefecuture , and I ate a delicious tuna at Ohmacho - town . Second , I had a good time to see the landscape of the Japan sea at the top of Turuga peninshura Because ther 's no car at that area . This trip was too late fot the season . She was really surprissed knowing that . Sometimes I 'm too single - minded , so for example , if I deciede to study English , I would think of nothing but English . I think it 's my mostserious weak weakpoint . I 'm acasual somoker , I would like to stop smoking . ( Singapore is anEnglish speaking country , soI think I sould not say this . . . . Whis is the best answer ? I wil introduce useful websites or tools for learnning languages ( English , Chinese , Japanese , and so on ) . Let 's learn foreign languages more plesantly and cheaply ! And the teachers said that it 's not a fastival for you students in grade three in senior high school ! How hard they want us to work . If I write something in an implite way , please tell me . I was asking if they would kline to have some more ice tea , They feel my son facinated me . Wao , Ukraine ! According to the article , in Bulgium , there are four parties and they all have trouble with languages . In some parts of Bulgium , people speak Franch , other people basically use Dutch , and a few people speak German as a common language . The prince and her father are not discribed in detail . Cinderella becomes a heroine just because she gets merried to him . We all have read or wached this at least once in our lives and it is still read by a lot of people . Althought He had mistakes in his reserches , I think he lived a respectfull life . We read an essay in which the writer said , `` An ambrella is a kind of a nuisance , `` or something . In 2009 , many scientific studies showed that the chocolate is very healthy , is rich in flavonoids , is good protection against the sun , improves the heart , decreases blood pression , and it would even protect against cancer . `` Siroi taiyaki `` is a kind of sweets popular in Japan this time of year . The meaning of `` Siroi `` is white . We went to Youuido to see `` The Fireworks Festival `` . What is coreect ? After the big earthquake and accident at the nuclear energy plant , my company reccomended that I work from home untill we could conferm the safety level of the radiation . My Chinese friend made a big dicision . This reminds me of diamonds and coal , both are composed of the chemical element `` carbone . `` but they are so different : diamonds are sparkling , expensive , clean , while coal is dark , cheap and dirty . The difference is in the base : the way molecules of carbone are bonded Coal can generate thermical energy , which helps to provide electricity . I was disapointed . You shold say : Accross the River Seine next to the museum , there is a very famous museum named the Louvre Museum . I do n't know the story 's ditails yet because this musical is their original story . I have naver forgotten this memory . . . . I had naver seen such a big cockroach . I got an invitation and have joined Lang - 8 since last year , but I have n't wrotten anything or even looked at this site for a long time . Girls in my town are already enjyoing wearing various beautiful In such an occasion , I am gratefull for being a woman . It 's a funny movie ! But I found it a llitle vulgar . I was suprised to see a lot of sex scenes . This was my first ( only English ) speaking camp , so keeping this rule was little difficult for me , but I maneged to live only speaking English . Most of the schdule was practice such as , discssion , listening , vocalization , reading , etc . In another activity , we had BBQ , played volleyvall , and other interesting things . In closing , our group leder read a speech through tears . I had to dicide on a section before I got off the bus . There are four sections in The UK ESS , paliamentary debate , academic debate , speech , and ISS . In the secand semester , our main ESS activity is section , so I am looking forward to practicing academic debate . Then , he said , `` We Japanese do not insist so strongry like you . `` I have suffured from migraine since I left the office yesterday . I think that I am not used to have a nap yet , I diside to sleep a littele sometimes . Any help / tips or comments would be greatly appriciated . Afer my sister and I grew up , we left our parents and started living independently . I 'm sutdying English now . is there anything elso . . . ? If I go there again , I will go bankrapt . We picked a full bag of peaches and plums , and went happiy back . Normally , the last week is specialweek for everyone . I did n't know what happend . On the train there was an announcement saying , `` All pasanger get off this tarain right now `` . On that day , we were thaught about the Asuka era of Japan in English by foreign people . I went to the Toy Museum with a forener . It was very confortable to see ! ! And I also entried level A though I have never won there . . . . Immulizaion Requirements Immuliaztion Requirements vary from country to country . I will outline the immulization requirements in Taiwan below : I have ridden in airplains a couple of times , but I have never gone to the airport just see them . I hope one day I will speak inglish . . . . I did n't konw an important truth till then . Today I learned about making traditional Brazilian alchoal `` Hey Kichibei you remembe your promise ? That 's why I finished my work ealier than usual and came here , finally . Sometiems I want to be good student but it 's vey hard . I heard my relitives said they have a firecracker show at the South Bank in Brisbane . But there might be no performence this year , because of the floods . Today , at English class , I was taught that `` modern woeld is one `` is an incorrect sentence . Do you have similer experience of this ? Also , cosmetics , fasions , magagines , movies make me excited . I enjoy learnning English , I wish I can say it frently . . . I am so happy , becous I understood what the boys said , and I knew how to say what I wanted to ask . I would like to speak a lot of laguages , too . If I coudl get one year sabbatical , where should I go ? I wrote many articles this year about topics such as an entrance ceremony , sports meet , open school , track meet , children 's sumo wresling meet , volunteer work , a school play , school excursion , school festival , acuathlon race ( swimming and running , ) and Beethoven 's Ninth Symphony concert in Kokugi - kan . Anyway , I Love English and I 'm an optimistic person , I 'm going to enjoy writting . Today , tayhoon came to my city . He must practice chinese charactor ( KANJI ) . This is my favourate program in the UK , because it is fun . The program invites different guests every week , such as singers , actors / actoress , comedians , cooks , athletes , etc When Lady Gaga was a guest , she was asked some unfavoured question , so she anwered on the phone which she was wearing on her head . Now I am happy that I can understand English , because I can konw foreign TV star 's characters . She told me of some places where she has found muberry trees . I hope tommorrow is fine . The differnce was , however , that he kept on going to his potty even while wearing his diaper . I will hardly vist and study , but I want to make many friends . When I found this site , I decited to post my journal everyday . When I said that her studens seem to have been improving their Japanese a lot , she looked really happy to hear it . They often gave me the enagy to teach . I will start to clean up things soon aftern I use them . I went inline skating at the Hadson rever Park with my friend . I could do it anyways , but my friend coul n't and held the bar the whole time . . . it was so cute : ) We could see the beutiful sunset . . . You know , if you are biiten by mosquito you have push and oush the skin with your finger . PL fireworks festival is one of the biggest fesdtival in the world . When I was ranked , it 's on perpose . At that time , I uproaded 12 entries a day . This time , I uproaded 4 entries a day , and I did n't intend to be ranked . I ended up 4 entries when I uproaded ones which I wanted to write at that day . ( a bit unclear ) Kimono - a kind of Japanese tradional clothes - are made from Asa ( hemp ? ) or Kinu ( silk ) in genereal . Today , I have a presentation about Japanese weddeing in my English class . Japanese tradditional traditional weddings are `` jinnzennsiki `` which are held in a shirine . However now this type of wedding is 20 % of the marriage celemony in Japan . I think that meny girls are attracted by a white dress ! A couple and guest is to be superstitious in a celemony even now . If you are invaited to a celemony and a party , you need to give a couple some money for a celeblating present . Even number to spare number suggest that a couple is to be devided ! so I 'm gon to introduce myself . And it eables us to enjoy taking a bath outside and to overlook the valley . Job huntting gave me pretty good oportunities to seriously think about how I want to live in the future . Maybe we have to pursue this answer indefinitely though . I am writing about my favarite thing today . My favarite rider is the Itarian rider , Mr . They are both on the Itarian team this season . Hida meat is very famous , but it 's very expencive . My faverite book . One time , when I was really interested in the English languge , She had been reading books sice she was young . Her parents do not take care of her and leave her alone at home . She is really different from other girls . When she goes to school her teacher is really surpise because she is much more clever than nomal girls . That story gave me insperation to study English . However , I want to try cooking roastd chicken and I have to prepare party stuff and decorations . It 's seems a little bit complecated to me . It seemed to be a very nice day . . so I took a chance to ride my bike becouse it had been a long time since I used it . That 's how I caugh a serious cold . . What kind of transpotations do you usually use ? her colon and anus were avolished . she ca n't be pregnent and she has to have an artificial organ in her body . My hasband has shoulder pain . I think , it is something that I can believe in , and it make me a kind of possitive or happy . I am so depressed , I study English every day , and after finish class , I return home for continue to study English at home , but whatever I try it has no benefit . I memorize English vocabulary every day , but in the next day I will fogot half of them , I feel so upset , I think my IQ is good , but my memery is not so good . . . . Can anyone tell me how to remenber English words faster ? Thanks I was classfied as mediam level . When I came back to my house , I remenbered the incident this morning . I want to know if foreigners color thire hairs or not . the weather is beutiful . my roomate asked me to take care of her , I do n't wanna let her die in my hands . . . if so it would be a memoriable experience in my australia life . The way I expressed above may sound insensitive ( and I 'm afraid of doing so . ) , but in my case that makes me realise that I 'm lucky in such a peaceful sciety and makes me think about people not in the situation . He is making an effort to make their ouw paradise . He imagines when he comes back and sees the beautiful face of his lover , tears in her eyes , but she will smile hapilly , and she will still love him as passionately as in the beginning . Please help me correct my mistaks , Thank you so much ! ! ! Today my english ( and I know about this very well ) I commiting a lot of boob ; - ) I really like learn english words , but I have a BIG BIG REALLY BIG ; ) problem about grammar : ( Polish language is different , we have another grammar and sometimes ( okej , almost always ; - ) ) I speak / write incorrect ; ) I thought that was too expencive ! In addition , I learn Japanese in my spare time to inrich myself . Watch your manners when drinkig with clients or your seniors . Do n't be their alchole go below half a glasse . Many people buy a lot of dougnut . There are a lot of people who like dougnuts in my town . They both are down to earth and very genuin . More speeaks , liitle action , and lacking an ending . I can barely finish all of the questions but not enough time to double - cheak . In the movie she roled a police officer and one of the Miss United State candidates . If you know the best way to remenber , please write your way in the comments . Tommorow , it will be cold . Maby I wo n't be able to forget her after this . My husband left his cellhone in my house I wonderd . I could n't bileive myself ! Yesterday when I watched the news I saw that over 1000 elementaly and junior high school students in Fukushima changed their schools during summer vacation in order to avoid the radiation from nearby nuclear plants . Under now circumstances in Japan , we 've been sensitive about food ingredeents . I 'm Japanese and live in Hirosima , which is a very peacefull city . Today I finally finished my thesis and I will be graudute from school in maybe two weeks . My brother said to me that my grandmother was tranfered to the emagencey room for her brain surgery I will probably have mustle aches tomorrow . My allawence is far from being able to afford even the cheapest one . Soo today I write somethink in English . OK so today I alsow decided to first learn some Japanese words and then write somthink here , till then I will be using only English . I desperately searched for an Austraian conversation partner , but three months were not long enough to masnter conversational level of English . He answered me , we introduced each other , and bigan to talk . At first , I thought it would be really difficult . I was affaid I might break my computer . However , he miraculously recoveriedand and he is full of energy now : ) I got the form for it from the city and sent it back after filling in the informaion that they need . I thought it 'd be a very good place in this extrem hot summer , but it was too cold to stay long . As far as I 'm concerned , I 'm really vurnearable to the temptation of sleep , especially in the morning and afternoon . eapecially in my city , Kumamoto . It wo n't save you if you only drink coffee because vagetable ( vegetables ) and some other nutritions foods are important . This means that I am not able to use word , exel or any other softwear and systems well . I told them many times that I do n't know much about PC softwear . I am not good at english , but I will try to sutdy . Recently , on the contrary , speaking English is getting a to be a lil burden to me . The more I learn and know that I have to put what I really mean into the words , the more I 'm scared and concerned that I would give people a wrong or bad impression of me . I admit to say I 'm a lil insecure , which I do n't like to be . It is quite difficult for me to understatnd slang . ( Oooops , is this slang in the first place ? or are my studies lacking ? ) She is fascinates me though I do n't linten to pop music very much . At that time , my heart was beatting so fast . Althoug the weather was not perfect to see the far view such as Mt . I am really nervouse . In my stuednt time , my writing test always get - My writing is just so disatrous that it discourages readers to read and correct . . . ( highly probale . ) Yesterday I went to Church in Higasi - nakano . My friend recommended it . It seemed like a good oppotunity to get to know foreign culture through understanding Christianity although I 'm not Christian . There are many peaple who are native speakers who can speak English very fluently . Then , our company held a soprts event the day before yesterday and I took part in many activities . Frist , enormous reading is regurded as a priority in the process of study . On one hand , rote learing is not really worthwhile . On the other hand , reciting on the base of understanding is definitely good . After a while , you will store up a large number ofarticles in briain . We will feel easy when we use Englishset to express our views . It 's said that vagetables are good for your health , so I make sure I use vagetables . For today 's dinner , I made steamed rice with vagetables and meat mixed in , grilled mackerel , shrimp spring roll , freid chiken , boiled spinuch , grilled pucific cod with white sauce and vagetables soup ( including garlic ) . Do you think we need to creat a ' ' common language ' ' for peple in the world ? The first day 's result was not successfuly . I could get up early , but I was n't able to do anything I had expected . I am a funneinst guy ! It 's the bussiness language . . . . . Not only this , even though the school is an internatial school , there are so many Korean students and poor chance to speak in or listen to English . Childlen and fools always speak the truth . I finished my breakfast at six o ' clock ; then , sat on the sofa and spent some time wathing UEFA . Yesterdaty I went to my friend 's birthday party at my American friend 's house . We also had a big ice cream cake and snak . We also drank a lot of alchol , especialy the people whose birthday it was . By the time the party was almost over , a coupole people passed out . If it keeps snowing through the ivening I shall not find my house under the snowdrifts - this is Russian weather . Going back from work to my house , I was draiving at a maximum speed of 40km per hour . If the snow was n't making it cold enough , the heathing in the house has stopped working . Yesterday I had a feever of 38 degrees C . I do n't have enough imformation about finances . and we enjoyed a game and making friends with the members of the committee in my univercity . It is to organise ? ? the festival of univercity . Only suginami - ku ( one town of Tokyo ) was entryed in Japan . Some pople do n't like security check , but it In the end , you can borad the airplane at the gate . They have your seat nunmber in that experience and I have to take an airplan but I need to It 's kind of scary to meet someone who I have n't seen for a long time , but positively thinking , it 'll be a good oppotunity to catch up on things we 've done ! Talking to my friends will helps me relax and get rid of the pressure and sttress from my work ! I 've realized that glocery stores and the whole city are getting ready to be decolated for Christmas lately which makes me feel this year 's almost over ! Today I received a notebook which I orderd a day before yesterday . But I thought it 's dangerous to buy something expensive before seeing it directry . Now , I want to be a coustomer survise agent in an airport . There is some grammer I ca n't remember . Hope I can successfullu pass this examination . If you have any interest in the web site , you shold n't wait , just ask me . I 'm a big fan of `` The Dark Knight `` and `` Mement `` and I like Ken Watanebe . Absentmindly story Another examlpe , I went to my room to fetch something , but I forgot what it was when I arrived . I could n't undersant the contents , so I was so bored and sleepy . we had been waiting for a long time to see the famus band , . we were n't sorry to have seen it becaus it made us very happy to listen to the music and dence . I went there early and I dicise to go to my houme before the music started because I wanted to cheak my diary and read a book . I have spent my time for preperation for a seminar . Behind the counter , there are machines which scane the bar code and say if you win or not . You can win a voucher for two euros , five euros , or a big suprise ( I do n't know what kind of surprise ) . During that time , I 've met a pofessor sho was Mr . ( nome of my last supervisor ) 's friend and he 'd introduced me . However my purouse is n't loving . I try to concentrate on what I should do now > _ < Lately I began to have doubts over the choise of my future job . I want to be a jornalist . In my opinion , a jornalist should write about what he knows very well or write about what nobody knows . I am not sure whether I will have good topics in the future , whether I will pass exams and enter the Unirvesity , whether I will find a job in good a newspaper or a magazine . Although I have beeing learning english since I was 12 years old . Gradully , I realized that English is very important . These days I am intersted in learnig English . And my major was Japenese . And make friends who come from evrywhere . I must make more affort ! ! According to his explanaition , it seldom stops , but ( or and ) it is recovered by turnig it on and off . Just think about the fuel rods , they could provide everyone in Tokyo with enough elecricity every day . If they can pass the test , they will be given lisences . ( The salary of a carrer - changer is different . ) A HAPPY NEY YEAR Wathever , sometimes you just want to relax without thinking for a week about what the ending of the last movie you saw meant . I Regretted Eating 8 Pieces of cokkie So , I ate 8 pieces of cokkie for dessert after dinner . Afer ate them , I regret eating too much . . . But the strawberry cokkie was very dilicious ! ! Anyway , why do the humans want sweet ater exercising hard ? : ) I have n't tried out my lovely baby yet because of my damn buzy job . We are clazy . I will have a holiday the day after tommorrow again . We orderd buta - tama ( pork and egg ) and takoyaki . If you see `` FRESHNESS BURGEER `` , could you try one ? Earthquakes have hppened since this morning , on and off . My dream is to go to an American school or university to studay ! Drving test I am caurious how difficult the written driving exam is in other countries . . First of all , I want to say that I do n't know very much about the relations between North and South Koreay . I wish I could recover immidiately . I hope I recover soon I like snow , but I sometimes hate it because it 's difficult to drive on roads coverd by a lot of snow . I started using skype today , because we can speak in different world langage there . I am thinking of practicing speking English . If you have skype accaunt , please call me ! ! I like onlin games and Motorcycles . One - piece , Naruto , Ke - on ! ! , and Bleach are good anime . Fortunatully , most of them find one of the best partners for spending the rest of their lives with peacefully without any complicated trouble , unlike some of the famous golf players . but after a few months problems started and my mom and grandma were fighting a lot verbally and sometimes phisically . . . . . I registerd on Lang - 8 today . I drink a glass of soymilk with two speenful of the vinegar every day . I watched `` Valentaine 's Day `` , which was started playing yesterday . A lot of foreigners were at the thearter and laguhed a lot . Last night I was watching Billy & Mandy , one of my favorite cartoons , and I saw that Grim , a charactar from the anime , was holding cute skull shaped cookies . But , unfurtunately , God forsook us . To be countinue . Soon , My son will be in a summer vacaticn . ITS URGENTE , PLEASE , CORRECT THIS ONE ! Please ! I belive that life is a art and we can paint our life as we like , so no one is the same . And this is very helpful when I make something creative , such as cards or caligraphy . I have wathed Friends many times . I like Ross best because he is so kind to his friends and he is so lovely when he is with Recheal . Until now this friend 's childern were all boys . New Zealand is now winter and this morning was freeging . Normally I wake up arround 7am and these days sunrise is after 7 : 30 , so every morning I have to wake up in the dark . Tonight I will go to bed ealry . Today is childlen 's day in Japan . Recentry , I read the book titled ' Syabake ' . Lackly I woke up tonight . The population of Japan is decreating now , but the business in Japan is doing poorly . I had some poteto salad sandwiches , cherries , and iced coffee . Like other countries , chilldren in Japan believe that Santa exists . Gon na work as a web creater after graduating ( only 2months left ! ) . They were the offense side , and we were the defense side . My advanced class students learned how to inquire at places like hotels , cultual centers and infometion center information centres ; asking the price , the way to get there , what kind of facilities they have . . . But I could n't understand how to purl , untill my granny showed me how to do this . Finaly , I slipped it again and knitted some pairs of socks and gloves for my father and brother . I need the computer because I am studing English and Ihave todo myhomework . So , they are not eager to get mariage . so I ca n't read messeage . I looked up severel recipe websites to see if there are any other recipes to make with leftover turkey . But recently , it has become more difficult to communicate with China & Rossia about territorial affairs / matters / problems . Have you heard what happened between Japan and China , and Rossia . For our kid 's furture , we must communicate constructively with logical thinking . I went to climing mountain , which is near my apartment , but the mountain is very short . If it is bad for my healty , I will reduce the amount of coffee I drink . Recentry I have been going to driving school . I want to go shopping and sightseeing and eat humbuger . I 'm relieved because no trouble has happend , as a result . In the firest two days , I just took a break . I think it was not relexing . A : What a strage factory ! All his dishes looked so yummily so the next day I went to the book shop and bought his cook book . She is going back to Irland so I decided to make something for her . And as you may know , I am living in Eugen , Oregon - - a very rural area , so I ca n't get them easily . It costs 65 dollers . We slpet only 3 hours each night . It was so regrettablt because if we were n't nervous we could do better : ( I do n't know why I was so nervous . At first , it was an ordinary thing . But after I grew up , I felt that I had missed a great something , which was my father ` s affection . I realized that I didn n't receive from my father except for his money . After my mother ` s death , I thought that my father would change for the better and play my mother 's role , but unfortunatly he couldnot n't do that . In spite of that , I love my father so much , but if I had had the capacity to choose my father , I wouldn n't have choosen him . Do n't spend most of your time working , becaue you believe that your children need money . Of course they do , but be aware that they need love before anything else . It is when I am passing over the brigde that I see the almond moon over the sky . Dessert was too sweety for me though , but my sister said it was good . Yesterday , I got a new family who study Japanaese and are going to stay at my house for 4 months . I think pople become unaware of how important the things we care about are as we get older . Anway I think this movie is not only for children but aslo for adults . It 's very exciting and entatining and an heart - warming film . We had booked a room in the Hillton Hotel before we traveled there . I am goot at receiving , so I am entrusted to be in libero position . So , I want you to correct my Jornals or to send me any messages . Love sharply and deeply , althougt you can become hurt this is a unique way to live completely . I was going to buy running shoes , but what I actully bought was a DVD and so on . he will soon be able to stand by hisself . There were a lot of ropes with different blocks ( polyspasts ) , funny mirrors , infrared cameras with displays , magnets , models of the ancient `` perpetum mobile `` ( of course they do n't work ) . I chaird the club meeting . My son actually chose it , but it was lucious and I was elated . I want to learn Korean , but I dano n't know how to study it and which book can help me . . . Is it look like a black folower ? ? I 'm planning to get a driving licecse before long . aborad . . . . . . But I have truted the Government . There wewe a lot of women . `` Zyoshiki `` means girls got together and taliking about boyfriends , work , and life Enjoying happy `` girls only `` time . The medical center coporated with many sutdents restaurants and invited them to offer nuturious but delicious lunches . There were fruit sandwishes , Korean food ( without meat ) , spaghetti with vegetables and chicken , and so on . I had lots of chances to fly on airplains around that time . The place of the story is Barcerona . ( Is this a right spelling ? ) So , I began to take Chinese harbal medicine . On Studay , I 'm planning to go to my friend 's birthday party ! ! My hobbies are soccer and teniss , and I 'm interested in anime . I set it up ( It was a litte difficult . ) and used it , but I was disappointed . It means I have to swicth and link items when / every time I want to use the headset with other applications . I seached the internet and it says it takes you 1000 hours to understand what a native speeker is saying . I am a student and a scientist at school , so I spend a lot of time studing and doing research . But now , I got a breether to write an enrty . Hot springs are also effective for curing a variety of desease . What I find difficult is the pronounctiation and writing in English , while I find it pretty easy to read and listen to English passeges . One of them tried to catched the thrown ball from the QB , Rogers who was elected as a MVP player in the Super Vowl . We were gald watching in that moment . I will never forget at that moment , when everyone was smiling and enbracing . It 's a specail day for me Although I do n't have a lot of money and prettty girlfriend , I 've studied English for a long time ( actually I 'm also taking my major that is economics in English now , because of university policy . . . ) but still speakcing and writing in English is kind of really difficult for me . This will be really honor for me , if you guys have conffident in using English to edit my diary correctly . Because of it , it felt too uncomfortable to rest in the aftermoon . Today 's weather in Wu han is so great . It is sunny , so we can wash colther in the dormitory . I nerver read them to the end . I would like to , but I am a cracy girl . I know it is really hard to do . Sometimes I feel lazy and sometimes I feel drosy and would like to sleep . Hello evveryone . I 'm practcing `` In too deep `` by Sum41 : ) However , unfortunatelly my son caught the ball someone pitched . My team 's parents were talking about the move with dissappointedly . I ca n't beieve it ! Seinfeld is a commedy drama based on the real life of Mr . Sarah Jessica Parker and Matthew McCaughey appeared in this American romantic comedy movie . I have an English teste tomorow that I wanna ( want to ) pass . There are aroud 328 pepoples dead . Last week , my classmate who is now a teather told me that there are 2 classes that have been stopped due to H1 / N1 in her school . The most inpressed car was TOYOTA FR - S concept . When painting a picture from ur memory , simply close ur eyes and think about the innocence of childhood or your first bittercrush . I think I have the responsity to remind you , my friends , to pay more attention to your health . Personly , I insisit the fact that health is the first . I was exicited and moved by the close match . but I was frightend by their high skill , technique , body strength , From today may 1st , 2009 , onwards , they have ' Sakura special ' , for example a Sakura scon . But thay put the price up ! ! My company had an exhibition in a departmant store . I had to be a promter girl there with a lot of show girls . I left home at 8 : 30 to go to Tronto , Canada . I am looking for peolple who can teach me English . Which sentense is correct ? ? ? ? ? I studied English at scholl for about 8 years . for a long time ~ or for a while or ferever ~ Why doesn ` t scientists invent this machine , Some of our members ( unfortunately they could n't join the re - union ) have got married , had babies , and what 's more , one of them has already devorced ! ! If I have mistakes , recorrect itplease . For some years , Ididn ' tdo agood job and have many many troublesomes . Life is a journy . I just watched the movie called Avater . You often see its advertisement on TV recetly . Theseday days , many students do n't like math to be difficult . Because it is hard to make the ajustment and there is few unorthodox fighter than orthodox fighter . I will be staying here for ten mounth . I think maybe I would understand why he had a two - faced attitude like L ' tranger . . . These day I am intersted in learnig English . Actully , I have greduated from univesity . You find more tourists than Japanese around here and can listen to lanuageages other than Japanese , such as Chinese , Korean , and , needless to say , English . The access to the airport is easier than from Sinjuku or Shibuya . The atomosphere here is more down - to - earth . If your mood is in , you can have them on a boat with Tatami - mat watcihng skyscrapers , what 's more a strange object architecture on a famous companies roof , which seems to me a gold excrement . . . Although I 've studied English for 10 years , my English is realy poor . I took a gramar test at school this morning . However , I heard that my lelvel up test score sucks . To tell you the turth , I feel sorry for him , because he really looked sad . . . However , I think that street _ streetperformers should be much better at juggling . Street _ Streetperformers are often bad at juggling , because they do n't need to be very good at juggling to surprise audiences . I was very hot but bery happy ! I canged my job this Novmber to work at hospital . Humm I still do n't know what to write about , and I definitely need some help , because I never have time to practice my writen English . . . I watched TV and made accesorries . But it was cold and thier bodys shivered , and I did too . Next , I must learn what my bad side is and try to cortrol it . Once there is something wrong with the electric ( electronic ? ) or programms ( programming ? ) , robots will become a good - for - nothing machine . Surposing everything would depend on robots , What would human beings be like ? Hellow = ) Theregore , I can ' t sleep . . . This year there was also a street market where you could buy paintings , bracelets and other things , many people partecipated . Our baby will be born this Feburary . I thought ' bout a babershop Today I went to a babershop . I took TOEIC test last Sunday . I work Itarian restaurant . Although , I do n't know hou to use it . This is one of my favorite piont of my English school . Usually there are 5 ~ 7 adalts , including the teacher , and 4 ~ 6 babys . I started learning English in junior high school ( from 13 years old ) so I ca n't become bilingal . It was very delisious . Then I went to Jill 's cafe ivent with my friends ! Jill sutuart invited me to it . and he apolygizes to Jenny for for what he did to her that night . I went to the National Museum of Korea for seeing the histoy of Egypt . Today , I will attend a lecture by a Finacial expert I will think it over because the subjicts that I choose are very important . I 'm feeling somewhat wierd since we do n't have the summer time in Japan . So I sent a message to him `` When will you call me ? `` And he answerd `` 5 : 30 I will meet you at Arsenal station , OK ? `` I went to the station , and I was wating for him , but he did n't come . After that he sent a messege to me `` I 'm sorry . My friend had a poblem . I desided not to promise anything more with him . When I was dffense , I only striked . It rained heaviliy today . I heard on the TV weather forcast that a few days later , it 'll be hot again . Of Ofcouse the camera was broken completely . I have studeid American and British literature for about 3 years . Espeicially when you take two totally different language courses , it would drive you crazy . Everytime time she starts to choose students to anwser her questions , I always pray that she wo n't call on me again and again . I live in Kumamoto city , and Kumamoto city has a similer altitude to Los Angeles and Phoenix . I was presented to it by my host mather when I stayed with my host family in the north of England for the purpose of going to the special school as a foreign staff member . During the lessons , he is smiling in front of the mirro . Hugh Laury , who most of us know as Dr . His position was offencive half , Midfielder . I 'm willing to corret essays / notebook entries writen in Korean on Lang - 8 . But after a period of training , I learned to opreate it . That 's the reason that I have to say to all of you I 'm sure that I 'm a beginer both in English and using a PC . So now you maybe feel funny and laugh at many mistakes in the English sentencese written by myself . I 'm dissapointed how limited my vocaburary is . In total , we might as well wait the shuttle bus of Carrefour due to its convinent . but it 's ok . mistery is always be a thrill , right ? Our Institue congratulates yours on its 30th anniversary very much . Havy rain ! ! It is hard for me to consentrate on studying . Because my frieds made girl friedns , except me ! Since I finished military sevice , many things have changed . From IT technology to peaple 's value . I could n't adapt to this new socialty very well . was on stage as a menmer of his band . I do want to play this music very sllowly . My favorite pianist , Fredy Kempf , always play the pathetique mov . 2 very sllowly . I do n't know wich is the correct expression to say . That the copper `` gets reduced `` and the zinc `` gets oxidated `` . . . ? I am interested in learning Eglish and hope to make friends from many contries . If you have a question about Korean food , education , cluture etc , would you contact me ? As you know , the stituation at the nuclear power plant in Hukushima plants is terrible . The company has a big luxury accomodation near the nuclear power plant . But the company has locked the doors of the rooms and forced the field workers to sleep in corrider with blankets . The Tokyo Electric Power Company said `` We will use the accomodation afterward so we do n't want field workes use them and get them dirty . `` Honestly speaking , I 'm a little nervos now . However , in response he gave me an winm with a funny face ! Then , the online teacher said `` What happened , Msasami ? ? there are many classics which were writen by our antecessors There are many modern works too . chinses books . Playing the trumpet is very difficult because I must use my lip muscles around the mouth and bleath adequately to keep correct pitch and rhythm . Now , our orchestra is preparing to pirform the pieces , Brahms ' Symphony No . I teache her Japanese . She is really preasant , cheerful and definitly different from sentences and grammers . Five people inculuding me atended this meeting . It was a good opportunity to think about my carrer . I tried to walk to the hospital near my house , but I cound n't . He can speak intermediate level Japanese , probably he can explain English glammers to me in Japanese . When I was in Sydney , I hired a damn cheecky Australian Japanese tutor . Oh , I 've drifted off topix . In short , we ca n't talk loudly in a liberary , so we ca n't practice speaking . Today I went to the stationery store and I bought a wonderfull ecologic notebook and two drawing pencils . Actually , I 'm not the type of a girl who writes a diary entry everyday , but I think it 's a very intersting system . Hmm . . . what eles should I write . . . yeah , I suck at writing somthing even my own language . but I could n't do anything fot them . Now , I rerally talk with people even if they are Japanese because of my busy work . One is to give encouragementin a positive secene . Today I applied for `` Kyoto Charity Fun Run `` and entried a group in the half - marathon . While we are reading mystery , we can pretend we are like Homes , and when reading adventure , we can jump from a criff like Indy Jones ! ! ! I thought about something that I took a trip through whole Tawian by bike last year . It was alomost in such a senson But I can learn about war throght movies , newspapaer and TV TVshow . he did not die fortunataly . idk how to use photshop : ( Japan Saccor Go ! It is dry and preety loud . . . However , the class lasts more than 50 minutets . For example , when I put any food in refridge [ refrigerator ] I must stamp date their labels . I caliculated the amount of words I need to memorize to pass the test . If the husband dies earlier than the wife , the property was to be devided into quarters , and three quarters would go to the wife , and the rest to the brothers and sisters of the husband . They came to the decision that they would let the old couple to divorce , and divid the property within their lifetime . The problem of property inheritance used to be a rare evemt , but is common now . Shiga prefecture is in the Kansai area , where poeple were not damaged by the quake . I had to have a small camera with a long cord inserted into my stomach , which made me feel a little scarecely . After the examination , I consulted with my docter and was shown a picture that depicted the inside of my stomach . I ate avocados few manth ago . There are only 8 students and I 'm not one of them because our teacher choose them according his personal sympathy ( ( ( maybe it 's just simplier for him not to take or deal with girls . Moreover , I get up eariler than others , because I can study and work more efficiently in the early morning . I appretiate it very much . I was chatting with my friend , slept , and read abook . But I hava a very happy holiday . Last weekend , I went to a museum to see a Japness painter 's 3D art . It 's so magicial , you can see my magicial painting in my photos . Today it 's rainning : ( ( ( I do n't like rainning ! ! ! ~ ~ ~ ~ ~ ~ ~ ~ When he went to Pais , he got into trouble at the airport , when his lggege was mintakenly sent to Africa . It was misterious and magical . It is caused by refrantion of moon light at a high altitude in fine ice . But everyone else wear sring coats . Please take a second look at the lable . . . This is an example of the difference of democracy betweek the US and Japan . Ttherefore I had decided to run at my fun - run pace . Lukily , it is easier for learners to learn the Chinese grammar point about subject verb agreement which often annoys the learners in some any language study such as English . I 'm sure I passed the oral , but in the other test , I had to write a composition ( no more than 180 words ) which was the 40 % of the total ( I wanted to write cost , but I 'm not sure if it 's allright , so what I put was . . . I felt nurvous . Ca n't 2012 be really coming ? I hope it 's never be ture I practiced lisening and reading . my japanese is so poor that I ca n't read the dialogues fluntly , even ca n't write a complete sentence . I beagan to lose confidence . Today is rainning . Talking with others is the most important part of learning a foreighn language , so I 'll try to use it at various opportunities . Everybody has the chance to give others gift in some celebrations and anniversities . ( anniversary ) My friend gave me a can of macadamia nuts as a survenia from Hawaii . I 'm still in the phase to test one of the module to see if it works wellTT . TT My famlly loves him very much , he is the most precious thing in my Now I 'm looking forward to the the Spring Testival , when Recently I started playing guiter . I am a biginner now , but I want to play `` There but for fortune `` by Joan Baez on the guiter in the future . It 's Japanese tradditional culture . footbal and other kind of sports . `` Week of Sports `` is very interesting and faseinating . It has n't been a long time since tha Japanese Prime Minister assumed . I think this is such embarrasing news for Japan . Altough it rained off and on all the time , we began to walk while chatting . The teacher is Philipino . They are all friendly and patient . These things are enemies to lerner . Although today 's weather forcast says [ no comma ] there is a 70 % chance of rain . . . . Although I have n't been abroad , If I get a high score on toefl , I beilive I will get a chance to go anywhere . OR Have a chance ? I have had a toothache theese past couple of days . Children of Emmigrants I watched a TV program about children of emmigrants a few days ago . The TV program showed that children of emmigrants who had to go back to `` their mother countries `` have n't been paid attention to . It is made of Hida - beef that has been rised around the meat of cattle , And it has a good reputation . It is famous for the delicious food and its history of calture ( no need to write here ) . I 'll be back tommorow or you can also visit our offic to pick up your delivery in the afternoon . `` Tomorry I will go to work again . I would like to study abord . I finished washing some glasses , and I was bringing it on a tray to the front counter through the tables , which most of them were filled by costemors . If it 'd happened in Japan , I difinetely would 've been forced to say `` I am sorry `` to the costomers since it may have bothered them . yeah ! Then , in my house with failmy , I ' lleat cake , decorate a tree - - I hope for christmas snow ! Goodbye everyone I should sleep a little bir or I will fall asleep in the classroom . Foreigners in Taiwan can feel they 're welcome whereever they go . And the youth are full of creativies as well . It 's so easy to imagine that they 'll tell everything to classmates and thier friends , although I do n't want anyone know . Althought I have learened the Korean alphabets before , Let me tell you about our vacation in Croatia this Julay . But I can not go this Sunday because I have someting to do aside from tennis . I boutht and ate a croissant in this bakery . There 's little time when I can be sutisfied with what I had done that day . Unless we were genious , it would be difficult to be content . Or even if we did as we scheduled , it would happen that we will forget surtain amount until we get out of bed next day . It will make it easier for me to caugh my mistakes . Today I was wailking in the delivery ward I cooked korea food . I 'll definitly write in my diary every day ~ . Beer gardends and about the 15th of August ! It is a paste of azuki beans and is very importatnt for Japanese - style confectionery . the contest spoonsor cut off all funding to the prizewinners . but I will work hard on the T - shirt desgin . Fortunately , I found a useful site of English grammer and I 'd like to study using that . Some people say they coud n't do what they wanted to do because they were too busy doing what they had to do . Many ' to do ' s are oppotunities to advance . The Giant Killer Catfish . From Hell . . . Stikes Back . Michail turned back and tried to run , but a huge barbel grabbed his leg , so he slided on the mud and felt down . Then he went to a hospital in Nanjing to have his operation , the docotor cut half of his lungs . We donationed money for him , but it did n't solve his problem . Three main characters unfamiliar each other were at the crash scene and each story was focused on their dramatical but tragic and melancholy fates . I was in a confusing sitiuation Today , when I was waiting for the bus to get home , three pople sat at the bench of the bus stop . They were speaking Cantonese . Both of them speak Cantonese so I think her explations should of been better than mine . If senior people become more and more and less and less babies are born , the senior peoples ' life would get longly and nobody can take care of them . I can have a pinic with my family on a fine day . Suess ! So I encouraged myself , I could get beneit from this experience . Its even popular to put fake eyelush on their eyes . acutually , I 'm working for a beauty salon now . And , I like tyhoon days . Tyhoon days make me excited . I guess one of the answers to this question is , people and money from all over the world are comming to London because of the less - regulated market or something . The party was held at an Italian resutaurant in Shiodome which is one of the most modern places in Tokyo . There were already Chiristmas lights up . Mozalt said , I think , well . . , I SHOLD even though I 'm not sure how the security updates work . Because I 've ever played basketball and handball , initially I suppouse it 's just an excercise and I 'm a little thin to engage in sport . While I was on Lang - 8 she asked me to open Youbute and look at Avril Lavigne . Now I 'm not confortable with hot and spicy meals . . . I do n't know how to thank the person who corrct my English in Lang - 8 . Now , I want to make a lot of foreign Frends , I want to talk about many things . My dogs let me know the snake came to my house . They were barkeing . I am social welfare woker . I help the poor , handcap , and the elderly . If you 'd like to enjot the long stretch of the countryside nearby , I recommend you to take a slower train at a nice comfortable speed where you still get to see the countryside rolling by . I noticed that I need to improve more on my English writting skill . I 've been to Hawai before . I hope you are well , I am the graduate student from Tokyo University of Marine Science and Tecnology who guided you around Tokyo when you came to Japan , two years ago . I am e - mailing you beacause I have a pavor to ask about the article you presented in Nature magazine in March 2008 . I guess this is the most importan quality that I have written about . Hell , everybady . The staff explained that the chef used coal to roast it and it was on theif recommended menu . I am a student . I am studying Japannese . Moreover a thaughtless act or remark can spoil a perfect relationship . lately I take a shawer twice a day . Menbers of Twitter gather in the local area . I only talk about somethig concerning work or a greeting . I learned a lot of English words , grammer , and about the cultures of foreign countries . Useally , most Japanese companies close on accounting in March . I can spend the time reading about garmma . I 'm happy when I read books , sometimes I would like to sleep on the books . I try to drink water alot , that 's good and helps me have alot of oxygen I know I write oxygen wrong but I write from my heart . I enjoy . I 'm really confused about the passive voice I try to do excercises but I usauly have to open the anwers all the time . Today I did not read but I will be at home after I finish internet room . I bought fruit before I took the bus to go home . I eat on the bus alot I feel headache like I drink beer . I 've run out of weter for my contact lenses . I must buy some today but I have a parblem I forget to bring my wattet from the office so I do n't have any money . I am not worried at the moment I have a card for the ATM , I can withdraw money using it . But unfortunately , as the lsland is not very popular for Japanese tourists I ca n't get enough basic information However , the weather in Pisanulauk was really hot . Recently , what I 've been wanting is `` Rumba `` , a cleaning robbot . It is so clever that it can autmatically clean a room . And , the nalaition says `` Your job is grillig ( ? ) . Something hapended to me that got me down . I get up evry morning with the feeling that I 'm loser . He is interagence and cool . Every first greaders showed blow art . This movie stimurated me . In fuct , I was studying Meteorology when I was about 20years old but before I knew it , I stopped being interestd in it . So I useally cook my own meals . Today , I cooked Ramen for my dnnner . Practicing Englihsh writing So , it is difficut for me to identify their reasons . I hope tommorrow is rainy day ^ ^ ; I had an English lesson that includs just answering questions . I had a nice time with kind and friendly people , saw so many awsome things , and I had fabulous food and a comfortable hotel . Actually I didn ` t know much about cambodian history so it was a good chance to sutudy it and it 's especially sad past in the modern era . The travel was not only enjoyable but also extention my knowledge . But one thing that I realily love about it is the appearence of the phone . And it 's good for moman . Before tha examination , I have n't had alcohol for a long time . But I have to get up ( and study ? ) to get a better score in the exam tomorrw . And I will go to a seminar about psycorogical education , I will eat sushi , I will meet my friends , and so on . I thoght that there would be more than 3000 people . When we lined up at the start line , I was a little nurvus . Although it 's made by Addidas , it 's a pity that it 's even worse than the last one . I need to improve my English writing skills , so I decieded to write a diary or something on lang - 8 again . I wanted to learn Taichi so it was a nice experiance . I have decided to do the following Taichi streches every morning . I 'm goint to do my best ! ! But it occurs to me that writing about my condition in Lang - 8 is alos studying ! ! I remenber that I also paid for my dates with my allowance . But in the USA , boys have to pay for everything , bus fare , movie fare , humberger and coke . Unfortunately , it was a cloudy moning . I tried to take a photograph with my cell phone but nothing had been taken except the gray clouds . If you know and use it , please let me know what your recommendation recipi is . Japanese do n't have the sence / notion / idea of entertaining ourselves . If I wanted to ask the simular question , I would say `` What do you do when you are free ? `` In this site , beautiful women have the plate that shows the curret time . The Japanese goverment has executed the plan of blackouts . It means the electricity is cut off at a regulat time every day . So I found that electricity is one of the more important things for our dayly lives . I made a big effort to learn , because this is so intereting for me more and more . I have never thisexperienced this . I am still a university student and English is nesaccery to get high credits as well as graduate school . I really get strees out now . Oh , I forgot to introduce a speclial spot . I quit my French course because I have become more confused about Spainish and Franch . If I do not stop them , the chattin gets worse and worse . The morden communication tools make our communication more convinient . For those people I can check their etiology one time , I would try my best to find a better therapy , and for those whom I don ` t unknow their etiology , I tell them that they need a general checkup . I also need to talk with the docters and nurses on duty , and tell them what they should pay more attention . Daisy Duck in particuler is good . The pary finished very erly because of a thunderstorm . I 'm going to run around my home tomorrow , weather permmiting . I woak up at 7 : 00 . They knew that and siad `` Go for it ! However , they are leaving Japan becuase their exchange program has finished . . . They are my good friends and I learned mani things from them . I really love Aussei life ! and I 'm looking for a new job which is conected with English . Because , oil ( gasoline ) price is getting expencive recentry . I have a doughter who is 1 year old . But a bicycle like that is not fashonable . Generally it 's all about using the opponent 's force to beat them : D This aspect is especially important for me , as I 'm only 155cm high and although I 'm quite strong , my strenght is nothing in comparison to that of an average guy . The more the preys move , the more they get tangled up in the traps because it is as if every single thread of their web were made up of adhisive glue . I really wanted to go to a Itarian restaurant `` MAX `` one more time , so we went there and ate black pasta with tomato sause and meat roaf and drank sparkling wine : ) Everything was sooo good . After dinner , We went to `` The View Rounge `` at Marriott Hotel . My school councelor Hannah told me that I should go to this rounge before going back to Japan . I think I need to build up my volabulary to get a high score for TOEFL . They are humous but sacastic . I 'm so glad that three of my requests passed and that I receieved two messages from Lang - 8 . I grilled a big HOKKE in the kitchen . I serched and found out that it is called an Atka mackerel fish . Today , I talked a lot of things about my feture with my aunt . People in Canada usualy put their feet across a seat in the bus . FYI , the exchange rate of JYP / USD on January 15 , 2009 was TTB JPY88 . 25 , whereas today 's TTB rate is JPY99 . 67 at our bank . I made a dialoge using some idioms and vocabulary that I have learned today . I stowed my carry - on lugguage , and asked a person in front of me to pull his seat up a little . One of my friends had shown me the ropes the other day , but I coul n't remember . Most of them have excellent knowledge of thier fields technically Native American jewerly I 've just learned about Native American jewerly . But , the jewerly of the Hopi is rarer than others . Recently , I am thinking about which lauguage I can learn other than English . Also , I am thinking that after learning Spanish , the next equire is for French or other languages . On the other hand , I am concerneed about this fact because my English is poor . Acoording to the experience of my friends , I should stay home ( or at a library ) studying and , I should not go anywhere else . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some conforts . My favorit area is finance and economics . My background is in mathematics However , now an economicial crisis is happening all aroud the world ! On the ferry , there were many Korean torists . I am sorry that I didn ` t writte to you for such a long time . In addition , I do not know the reason why they started demo before the porice shot a man . The man is Cadian . Yet , there are many things to do , so I ca n't affrod the indulgence . Talking with people outside of Japan with different ethinic and cultural backgrounds is really invaluable exprience for me ! ! Playing the harmonica does n't seem to be crazy difficult , and first of all it is not expensibe . do n't If anyone does n't help me , I could post the jurnals I wrote here , in my blog , hehe . I really want to know the expression that I use makes sence . . My Pinapples But I did n't konw a better answer . My hometown is more southly than the town I currently live in . Now I am sitting on the lesson of Information technology , so I 'm writting the post in English . Today is an extremely hard day , we have exam and perfomance with school chore . I embroiderd a lily and made a card with it . Inside , on the first floor , there were a lot of portreits of young beatiful women with flowers and a little tiny garden in the backyard with armchairs under some palms . I 'm not in the moond to do my chores . there 's a three days holiday waiting for me , I have to make some preperations for my trip to Chongqing . . . It 's a sci - fi about a psyschiatric patient who My family name is Park and I live in Seoulite . Looong time no see XD But my English was poor , so I counld n't understand the American voice actor 's accent . If you watch the Japanese version of this work , and if you can realize an Oosaka accent , I tnink you are already a competent Japanese speaker . He sells his wath in order to buy a comb for his wife 's hair , and she sells her hair intending to buy a chain for her husband 's watch . However , Serbian is written in the Cyrillic alphabet while Croatian is written in the Roman alphabet , because Serbian people belong to the Eastern Orthodox Church while Croatian people believe in Cathorism . I want to go to a beautifl spot . For example , if you boutht goods at a shop you can get points , and you can use the accumulated points to pay for other goods . But my new office is in the city area , so I have to wear bussiness suits . Today I bought a lot of things to wear , for example bussiness suits , shoes , and so on . I guess I fogot to buy a new light . I am really worrid about my parents . Oh my god , my granma , who is 94 years old , lives in Aomori . I controlled my computer to watch a vidio from a long distance . I realy hate hospitals . I do n't know what to write , but I think that is sad to `` meet `` people and you ca n't tolk with them because you have diferent scheduls . The examination finished on Octber 16 , but my PC broke down two days before the examination . So , I got anoter PC and connected to the Internet for one week . I think that I 'll do my best tommorrow even though it is snowing all day . I am writing this English conposition from my smart phone . In a sence , I think that is true . But in my cace it is n't true . Tonight , we 'll talk a lot about incidnts we experienced in 2009 . yesteday ! ! I will be studying abroud in Alaska , US this August . My horiday For exsample , baseball , soccer and basketball etc . There is enough space to play them . Therefore , I can be relaxed wnenever I go there . My friends warry about me being too busy , but to see children 's smiles makes me very cheerful Actullaly before starting this league , WBC ( World Baseball Classic ) was one of my favorite things to enjoy after finishing my routine work even though we , Korea lost against Japan in the final round . Moreover , my hometown , Busan , is famous for entusiasm against bbaseball , especially the LOTTE GIANTS TEAM , which belongs to Park Ki - hyuk , LEE Dae - ho etc . How about we support them toghethe ? I heard that it is important for wimen to make boiled potstickers fast . I was going to make a team but I coud n't afeter all . I was sad and disappinted . And I do the others sports like badminton and volleyball every Weddesday . I think he is a very lovery cat . I hope to be friedly with you . Then to improve my writing skills , I will keep an English diary or wtite an essay in English on lang - 8 , expecting some corrections frommy friends . Acutually the main pourpose of my shopping today was to get an electric fan which is small and stylish to place in the kitchin and the rest room of my apartment . I did call another shop to make sure they sitll had one , but they were sold out as well . It seems like everybody rushed to get electrical fans because many pople use air conditoners less for the possible of power shortage in the upcoming summer . I know it 's a good phenomenon that pople try to use more eco - frendly gudets , Therefore , I was expecting the clerk to check my age , but the clerk did not do it at all , hahahha ! ! ! ( Unneeded because it couldnt cause repetition . ) Korea 's largest conglomerate ( we call them chaebol , which means big company runned by a single family ) is Samsung . A few days ago , the third generaion of the Lee family succeeded the management rights . The process was absolutly illegal . Altough I do n't know wether I can get best By the way , I want to learn Japanese in my snmmer vacation . They use public transportations furequently . Therefore , the gorvenment should make public transportation much more convenient for the elderly ! Strenge town . I 've got an email from my friend who went to Germanny in Febrary . Anyway , I think the global economy will not recoverd in the near futre . the nowes source : URL In Japane , a woman filed a suit against the company which is a world famouse brand , PRADA . It 's a forbidden way to sell things by the head office , so she informed PRADA Mirano . I ca n't take you to PRADA Mirano , because of your unsuitable looks . `` In Japan , powre - harassment is not popular . If I was hit by a boss , It 's my fault . `` , so if one voices it 's starange or they should not hurt me , most people think `` He / she is selfish or has done something wrong enough to make the company angry . `` Usually , on firday night . on my way home I will walk around downtown alone , and I feel relaxed and comfortable . : ) Sometimes I will go buy some pancakes or cookies for myself as a little present , and I share them with my family as well . . . : D Just by walking on the street and eating something sweet can make me feel happy and satisfied ! Becouse I have to take T and the bus when I go back In my personal opinion , setting an attainable goal which can be achieved through a series of steps is the most essencial for keeping ( maintaining ) motivation . I conclude my dialy here . I ` m a studend and I can work only at nights . Especially since my favorite musicans are Americans , I enjoy listening to American music . However , even though I have studied English for a long time , my Emglish speaking skill is n't good enough . I have studied Englishi for ten years . I go to English coversation school every weekend . I belong to beseball culb . The differece is wehter I experience it inside or outside . From what I gathere , the lumps often come to you not only immideately but also after you 've forget about it . And the likelifood of us inheriting footsteps of our parents is very high , which is very unrecognizable because of the clossness among kins . When A car had just departured from / left the building , it was hit by an taxi that / which was running on the road . I hope you can help not only correct my grammar mistakes but also develope my arguments . Since the quake happened , the Tokyo Desney Land has been closed in case of the planned outage and liquifaction . Still , in Japan many people are struggling with the damage from the quake and tunami but meanwhile we are restoring our own country step by step . Of course I liked them all the same , but I started to gradually dislike the coulor , so I asked my husband to paint the shelf white . This mornig After class I usually spend alomst three hours in the cafe studying English with my friends whom I met at a previous class last month . I have deen a basketball team leader of my college department for last two years , and at begining of this year I had a junior take the helm . Unfortuneately , good things do n't last forever . I felt grat about this movie : ) In particular , I really liked Asian Kung - Fu Generation 's song . That is one of the reasons I 'm learnig English . In erementary school , we are taught to conform with people in our class . For example , when an athletic meet is held , we are forced to march like soldiers in north korean . Not just in school , but also amang your friends , when we go to ' KARAOKE ' you must sing songs your friends know . In oder for their economy to be safe , China really wants a `` Strong Dollar `` . . I entried the half race ( 21 . 0975km ) . Short Dially in School I blong to Society for the Digital Study , or a computer club . Oh , the class after school ( at this school ) will begin in a munite . I am going to watch the DVD of `` UGLY BETTY `` that I rentaled from TUTAYA . TUTAYA is a famous rental shop in Japan . Is studying English abraod good ? I think studying English abraod is good , but I do n't think it is suitable for me . If I were brave enough and had a lot of money , I might try to study English abraod . I would like to use Englsih fluently in business . Unfortunately , I had a difficult hard time communicating with the telephoone operator . Even now , the afficted areas suffer from supply shortage . I 've been using my kotatu since the beginning of December . Basketball , Vallyball , Soft - ball , Tennis , Table Tennis , Softball , Soccer and Jump Rope . I played Basketball and Vallyball . I started playing dragon quest 9 which was relased last week . Today I am still tierd . I went to my friend 's bday party on fryday night and only slept for 1 hour . Going out with friends is very fun and exciting , but too tierd . I was so tierd that I was dozing at work [ on ] Monday and today . Due to the disaster at the Hukushima Dai - ichi nuclear ( power ) plant , almost all power plant activity in Japan has been suspended . Couple of mothes ago , I took a test called TOEIC , which is an Engilsh reding and listining test . When the score was anouced , I was supriesd becouse I got 930 . I was relly gratifed and proud of my score . Education or practic is the best way to learn valuable skills . Nevertheless , peole who works for various jobs are able to gain much more experience and skills than students . On the other hand , the education that people received normally is the foundamental and basic knowledge , and teachers do not teach their students techniques quite often . To sum up , by contrast , people obtain more skliis or techniques in work than in education . In addition , thoes with many skills are more likely to match the demand of society . So I went to the barbar this morning and dropped by the book store . He is a Japanese coedian . He has a good sense of humor . In this company , I dealt with modern art , contemporary art , decrative art , ceramics , jewelry and watches so I like them all . I 'm especially interested in contemporary art and jewelry . There was interesting camaign against hunt for cheetahs in Africa . English . My homework . Letter to the magazin `` Shout `` . Can you give advice to this girl ? Please , help me ! ) ) ) Sasha writes that she has some problems with her famaly . My advice to Sasha is : talk with your parents , do not be alone , find a hobby , stady better and do not worry . I hope that Sasha will find common language with her famaly . I have a question about how to use the phraze `` like that `` . Coulda boom be comming ? I sometimes remenber old songs . It is `` We shall overcome `` a famous as sinbolic song about But I 'm lerning English now so that I can understand people of vourious countries . The other is a `` Collective House . `` This literally means that mainly younf poeple collect together and live together . For example , in the TV , the camera is focous ' on the ball only , and we ca n't focus on anything else like the goal keeper , soccer players , etc . It was intresting , but expensive . For example , we can get healthier body from physical exercise and improve our blood circument . Playing basketball is good at improving the height of your body and improving our fridndship . Apple 's new gizmodo , the iPad ! ! Apple 's CEO , Steive jobs said that ipad will take the place of I had no chice but to use my left hand . Our prouct base will have a rail link by the end of this year then we can combine rail with sea transportation , providing more convinence with less cost . Elosed are some photos of our products . Naturally , the color in the pictures is not the same as the true product . If you need to konw more about our company or our products , do not be hesitate to let us konw . I tink it 's a strange dream . Lynn said ' You miss your mom and UGG very much ' lol > _ < ! ! ! I am afraid of snak , when I was a child , I always had weird dreams about snak . Giant suhi But I think that there can be giant suhi in America , I always gaze at my PC screen , and I make a dicision whether the application is similar to the past one . And I hope I will make friands with many people for international exchange : - ) very interestting . I guess that maybe I cought a cold . It has a strong tannin and peppar like tast . For example , you have been practicing catching insects for a long time and but however well chatch insects in a forest , you wo n't be able to get them if it 's raining when you go there . In Japna there is n't much newinformation about Russia . I want to learn about foreign cultures by unederstanding foreign languages As a third year university student , recently I have been very busy ( ? ) writing thesis and other term papers , doing many assignments and sometimes resarch . Oh time flis , it is a school night and I have to get up early in the morning . It was so humid and hot in japanese this summer . Je m ' mapelle Ryota Misawa . Unfortiently , I 'm still ill . . . how keep in balance both the preservation of the enviroment and economic growth . Yesterday , I was taken to a dim sum restraunt by my friend . My old neghber died . I would like to improve my Einglsh skill , so if you find mistakes , please correct them . Correcting is dificult for me ! ! As the topic , can I use this sentence to discribe a person who is trying to do something first or is the first to have done something ? this sentence is translated by chiness , I want to konw if I can use this ? ? ? ? I 'm glad to be able to write again , and I hope I can write more frequetly so I can continue learning and improving my English . I sometimes find it very difficult to correct Japanese on lang - 8er 's entrries . I had to work yesterdas too , but I 'm off today . Have you ever had to repare anything in your home ? But I was still missing the Korean ondon system . He is an internet engineer , needless to say he can speak both Mandarin and English fluetntly , and holds `` PR `` . 3 - A special lunch menu as a Veitnam rice wrap . I ate / had it with two of my firnds . I think that the forigner 's prank is great . . . I feel happy that my idoi Kim Hyun Joong is waiting for a za a za flighting Today I registere here , this a nice website . I would like to make new friends here and of cours learnin English . This is a very useful service . : ) greeetings to all of youu . I Iwant to be a juior high scool or senior high school English teacher . But many ereas are still awful . Food is the essance of life . As the saying goes , `` Variety is the spice of livfe , `` food bears the same meaning toward mankind . Rice can be made into inumerable dishes , such as fried rice , sticky rice , and rice cakes , to name just a few . Since food can be so varible and tasty , we must highlight the importance of savoring food , for I believe that our appetite dominates our lives . I will take three regular classes as ussual American students do . I started this three minits ago . My hobby is travering ! I went to Cunada two weeks ago . Everybody was scrumbling to make use of him . Then , Shinjo met his biological father , who had abondoned him The refrees were volunteers . I last refree one year ago . They taught me some expressions in Englishi . I bought it in August , because I bougt it early and I can got it cheaper . But , I wonder if it still makes sence in light of this huge natural disaster . For example , food may be too salty or too oily and spycie to look more tasty . Another reason is that most kitchents in restaurants and food stands are not very clean . Food that is made in the messy kitchents are prone to leading to sickness . If you eat lunch and dinner at home for a month , you can save about NT1800 a month , which is a great amoun of money . What a vicious cylce ! Because I 'm not a good English speakier . Usually , I do n't have any intrest in this kind of group or music , but one day I happened to watch a TV show focusing on it and was fascinated . In this websit I can make friends with different people from different country . I think that it causes a very postive effect . It had been raining , not snowing , when I got up yeaterday morning . So I decided to go through tha pass to go to Sapporo . It halped me to get rid of my fatigue from a long drive ! A large amount of this area is designated as a national park , therefore power companiese can not obtain the right to use it . All of us were happy and anxious to see our teacher , because we hav n't seen her for a long time . Sometimes I think I 'm afraid to be happy again , because in every relaptionship I have , nobody says ' I miss you ' . A nunber of people already died because of it . Recentry , I always wear a mask when I get on the train , etc . In China , _ parents and grandparents will usually give a red envelope to their children . It 's a cuetom . This week is the first week after the New Year 's holiday , so my colleags grought their souveniors . The Wheather is not so bad . Many signs are witten in both German and English . People at the ticket offieces spoke English . Some German words are very similat to English , which was also very helpful . We tried to persuad him to go with me . Omuraice is rice mixed with baked chikin and ketchup , and coverd by omelet . We are a lttle tired so we are taking a break right now . I woke up this monring with seollen eyes ! We are wating for an answer now . I feel really happy becase I will not go the company tomorrow in the mornig but I plan go there late after I have finished reviwe so thing at Sanamhoug I am really happy . She teaches me like I pay money to her but we plan to study english and chainese together . She is really nice and practice to teach me Chinese wheather I plan to help her speak Thai very fust . because I really like that she speaks Thai with me so on Sunday we plan to wath a free movie together at Suvimvit 55 road . May joy and hapiness fill every minute of my day ! ! ! So I need to lern about ad - tecnology and buisiness of using ad - tecnology . I 'm a big fan of Haruki Murakami : one of the most famous Japanese novelists , and my farovite novel is Norwegian wood . The point is that the children are very naive and nauty so it is hard for us to make everything go as we have planned . I like reading books which teach me how to deale with things in human life . Typoon are producted by unknown reasons . Typoon are Asia 's hurricanes . It is known that Typoon occur in the summer . But , Unfortunetly , VOA continue to annouce tragedies in asia because of Typoon . I do n't know why Typoon are happening these days . Kimchi sauce is made of many ingredients , such as clean powder of chili dried by the sun , fresh oyster , needle needelfishs , garlic , muchrooms , and etc . Particually , if you eat it with fresh oyster and kimchi , you will find it delicious ! But I ca n't comunication with forieger due to my anxiety ( ? ? ) about gramm I konw that I have to study with patience . I 'll be happy if you hlep me improve my weakness . It a story in another world like acient China . I think it have been translated in Chinese and Korian . He could transform himself into a salada , but he must cut himself into many pieces ( to do so ) . Tamato did n't know how . I think that our sociesty still does n't know the adequate [ distance from ] ( ? ) this new divice . Dad , did you see my grandpa ang grandma in heaven ? I also have to apply for the internatinal award ( like a little scholarship ) I thougth `` are you really from the spare key company ? `` Something to dring My name 's Irka and I 'll write hier in English and German . Usually , Japanese peple console by joining the funeral service wearing a black suit and also make an offering of money , This money is called a `` kouden `` ( a monetary offering to the departed soul ) , we give from 10000 to 30000 yen , and pray for the dead spirit and bow to their survivors . Even in Japan , if you do n't know when the funeral is , you ca n't send the `` kouden . `` But the day I was informed was only few days after teh funeral service . I know that Western countries do n't have a custm such as `` kouden , `` however , it is quite an important custum in Japan , because Japanese people have this `` give and take `` philosophy at their root . I want to be storong and beat my brother ^ - ^ Im 've been english for about two years now , and still Im not very good at speaking or even writing in this language . One thing that suprised me was that people on the Car1 got off at Suidobashi station . I saw he was almost brusting into tears . My Sapce Today and yesterday my school held a sprorts tournament / competition ~ I gave it a shot but did n't go to the finals ~ My health is never very good , so that I think I need to exercise more regularly ~ I decided to start running everyday beganing / starting next Monday . Jey Walker starts the talk by introducing manias . In Janurary , I 'll go to the violin concert of Hirary Hahn , who is one of the prestigious violinists in America . I 've been debating whether I 'm going to choose a smartphone ( iPhone or somethind ) or a normal cellphone . I suddenly think , `` Do the other foreingers eat eels ? `` E - mail is usefull because English people help me if my English is wrong , but if I send a message to English people who are not my friends , [ . . . ] I 've readen lots of manga ( you could say I 'm sort of an `` otaku `` ) , for example : `` Bleach `` , `` Naruto `` , `` One Piece `` ( these are the most famous , I think everyone in the world knows them : ) ) . . . The secound man in black was from Spain . I was nurvous . Staring at the whitebroad for so long made my eyes hurt today . I 'm usualy busy at work around the beginning of the month , but after then I will be free . We will go to sukiyaki resturant - MK resturant . I think it 's quite expensive becuase I can make this kind of food as good as they do , and the price will be lower 50 % than them . It is too difficult to be fluent in the absence of Enlish language environment . I 'm trying to go to Austraila this winter to work during the holidays . magazine . There was an anticle that says people sometimes will be My hasband also has to go to the one place that we 've wished to avoid very much . fine templature . But I work at a convinence store . My freinds seemed to the same people I know when I was in elementary school . We talked about nostarsic stories and recent stories . Because I wil get my salery , and the good news is that my salary will be increased This race was a half marathon ( 21 . 0975km ) , and about 200 runners entried . Though I was feeling a bit fatigued , I magnaged to finish with a time of 1 : 19 ' 49 `` . One of my language exchange partner is feeling discouradged now . Well , now is time to go , 'cause it 's really late here and I have to wakw up early in the morning tomorrow . nowdays I 've been watching `` desperate housewives `` The hottest tenparature in my office was 34 degrees c these days . It scaried me . I hope the pease and stability will be maintained . To achive that , I should study more grammer and increase my vocabulary . Lecently I started a twitter . And since twitter is very easy and fast , I want to use this for those learnig Korean ! Recentry I have been confused with judging a noun to be countable or uncountable . My firends somtime say `` Yeah , I understand what you are talking about , but . . . . `` . This picture is one ofe the fashionable hairstyles . I thought we would meet very often , but we could n't because her scedule did n't fit with mine , , I think it was helpful to go healty again . I can not controll my condition so it does not count to my decision . However , it is a very important point for me . In my opinion my first resolution for diat is opposed to the wish to be fit . Nuclear power stations are really good for the economy of some countries because it proves that those countries are very rich but it also creates some problems such as : health , safety , and enviroment threat . After the earquake and stunami happened in Janpan . It will influence so much for Japan and neighboor countries . I 'm looking foreward to going there very much ! ! Although I have learned English grammer for six years in middle school and high school while in Japan , my conversation skill is still not enough . Right now , I `` m in the lab to assist the students who are learning Japanse . But so far , no one has come in here . Also I 'm scared of thunder and lightning so I always fleak out like , `` Please no thunder and lightning ! ! ! Internship is an extracurricular class for students who are going to go abroad to work for a foreign country 's company for a mounth . I will go to a travel company and work there for a mounth . Next semestter , there 'll be an English professional exam which is the only chance here and I do n't have much confidence that I 'll do well . Accroding to the news , However , [ advanced ] laptop features and technical specifications are very atractive , even if the disadvantage [ of lower portability ] was considered . The clerk said they could n't take it back because the clothes had a weired smell . I have read a few blogs which say that olibe oil makes vanilla ice cream more delicious . Because it cools your body down , you comsume the calories in order to warm your body up again . Because itW is used often in formal situations , I did hesitate to use it but I do n't know any other words . ) I am in suciall studies class . If your hushand or boyfriend is very tall among others , they can protect you and make other females jealous . But , what a pity , I am not tall . I feel somewhat shy and unhappy when I am walking with or meeting some tall and handsome youngman men . Also , ur salay is quite important in your marriage and living with your family and partners family . As a hushand , you have to maintain ur family and keep a harmony relationship with you and your partner 's relatives . so that they can understand ur ability and respect you . Enough salay means enough capacity and status in company and socity . So salay plays an important role when we seeking partners . anothers will look down on you if you do n't have enough income . Others still think that a different education means different salay and status . Of course , all of these are just my personnal opinions . becaouse I played WakeBoarding every weekend . I live in my husband 's houese . However , this time it seems to be fixed easyly . But the computre crashed and showed the Blue Screen . My roommy , who is Japanese , let me know about this site . I 'm really happy to know this site and very pleasere to post my ' useless ' diary lol I will take an English conersation class at the office . It will bigin the thirteenth of October . Some people argue his behavior is too lofty and it harms Taiwanese degnity ; in fact , they think Taiwanese are not beggars and do not need hypocritical charity . Thinking alawys scares me , worrying about wheather I can make it , what I should do if I fail . . . More or less , a real society is competitive even for children , and unescapable incidents hunt them down . But thanks to my husband 's perents , who are sending us a lot of in season vegetables , we can feel seasonable . And this time , I boght English books . But I 'll try to stady hard . I love the charaters Although the series mainly tagerts children , I came across an article in the CNN website last night which enumerated a number of useful sites specially for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm of learning foreign languages will be sactisfied in this site , and also I 'll be zealous with people in need of my help . Yesturday was the elementary school festival , and I boiled 230 packets of udon . but I really have no choice , the dilivery time is urgent . I 've seen the news yesterday and I was shocked about what happend in Australia ! I have been staying there for three days whth my husband and son . 2011 comes in 39 days , but my New Year mood is aleady here . They ca n't get holday or days off . What is diffarence bitween income and salary ? I am Korean and studying English for the enterance test for a university . But this night is so cool that it is confortable to study . Photos of my country , Janan This bar sometimes hosts concerts . It is not realy busy ; but I feel my job is very hard . I need to remember a lot of wine and juice names . Sometimes I can not understand what the customer wants if they say some strange wine names very quickly . I 'll prepare candeis , a costume , and meals . Artists ' contributions or scientists ' contributions , which is more valubale ? The debate on whether artists ' contributions or scientists ' contributions are more valuable to society leads more and more people into fiere controversy . Admittedly , both of art and science are indispensible parts of our society , and the difference is just through the distinctive way each demonstrates its own contribution . The greatest invention of the light bulb has increasingly multiplied productivity , and an amazing technology , the internet , has made the earth becom a little village , bringing trmendous benefits to billions of people . Music , film , and all kinds of programms provide people with a better living environment . They are related to eath other . In conclusion , it is hard to compare the contributions of art and science . It is simplt subjective to say that one contributes more to society than the other . I 'm lokking forward to meet them . Then , I will be going to sleep I aways have a long time to sleep every day I will be furher on with my English then I had expected . ( It 's my firt dairy in LANG - 8 , glad to meet you here , and thank you so much for correcting my mistakes . ) Because of the examination for univercity , I 'm learning English everyday . Recentry , I am interested in European buildings and art . Becaus they are examination subjects . I have studied English in Vacouver for almost two mounths . I need to find a job here by the end of June because I want to impvove my English , and also because I 'm poor . I love MINISTOP 's chocolaite and vanilla mix ice cream . I belong to an amatour brass band . Tomorrow I go back to school here and I 'll introduce myself to my classmates , as is the tradicional : I have been trying very hard to find a frind for copying Russian - English a long time . A lof of people were gathering and watching the ceremony . Those who seemed to be priests or monks were heading into the Catedral across the Faculty of Filology of Salamanca univerisity . It reminded me that Spain was a Cathoric contry . I 've stayed here in Spain for about a year but I had n't felt the people behaved on the basis of their Cathoric doctrines . The day before yesterday , the president saied `` Everyone speak English , For example , you can say ' Good morning ' in the monrnig meeting . `` I can talk in English to everybady . I finished my graduetion thesis . I 'll prepare for oral exam about guraduetion thesis next week . Second , you have to develop muscle by excersising to burnnig fat . Do excercise regularly . Yesterday was the firstday time for her to dance on stage . In japan , most Japanese women working for night clubs are likely to hide thier jobs however she did not . Yesterday was my bithday . Perheps they are impressed by the deep - rooted loyalties to his teacher , but it seems like an effort that is made to nip the talented untouchable boy in the bud by the nobles . We are in a century in which we learn to do our best to achive our dreams and fight for our happiness . An hour later , they were finaly done ! I asked my daughters to play togeghter with me , but they chose to go to a festival in the neighboring shopping arcade . That movie gives a messege about ' What is the humanity ? ' I have been strugging to stay awake until now , but I shoud have slept earlier . However , business is more of complcated field . My hobby is table tennis , I play it every satuday . Cristmas Eve Today is Cristmas Eve ! She spend Cristmas with us for the first time . Merry Cristmas ! I walked for fourty minutes . So , I started this site and I also boght a DVD called `` CORE Rythms `` . TheDVD itself was not funny , it was just a regular dance excersise video . I often see many visiters from foreign countries in my town , beasuse there are alot of old Japanese Temples in my town . Of course , I visited MoMA when I was in NY this Septemer . Especially my bocubrary is terrible . . . I 'm nervous becouse my English skills are not good . In fact , I am very nervous to writting in English . I had a visit today from a friend , who whant to go to the cinema . I often weard the one - piece dress . I 'm very cofused because I do n't know what I should do . . . I did n't sleep for long enogh , but I could n't sleep . Maybe I 'm afaid to stand up to them , or prehaps I lack the courage to say `` no `` to other people . Today , I was with some friends and I really enjoyed learning English as usuall , laughing and having some snacks . That made us lough out loud since our class had a warm / comfortable atmosphter . Hi , I live in California now and still need to learn English to survive my daly life . Recently it often occured to me that the number of children that play outsid is on the decline . Yet when I look back to a couple of decades of past , the chang is enormous . I wonder if this socil milieu does n't jeopadize their phisical and mental helth . I will read English articules about football . He is 90 yers old . I want to pracice my spoken English , but I ca n't find someone to talk to . If antone would like to help me , I would be very appreciative and I can teach Chinese back . The Japanese who are poor at comunicating with foreigners We study Engish for eight years from Junior High School to Second Grade in university , yet even so most Japanese are poor at comunicating with foreigners . When a traveler asks a Japanese [ person ] for directions in English , most of us would say `` I ca n't speak English `` , waving our hands right and left in front of our faces . I guess that the reasons why we poor at comunicating with foreigners When we learned it , teachers put stress on grammer . During the Edo period ( 1603 - 1867 ) , Japan closed itself to other countries , so the Japanese had hardly any oppotunities to communite with foreigners . When I grow up ( become 24 years old ) , I thought I would have a job , know almost everything about the world and have a magestic appearance . Hi everybody , this is Serena here , and I 'm from China . I 'm working in Singapore as a nurse . I usualy talk to people in English at work . In ored to improve my English , I need you guys ' help please . He is learning how to write medical translations between Japanse and English , and I am supporting him . When I was using `` Chrome `` , the same refleshing happened but it would save my writing , however `` IE8 `` does n't have any such intellignet functions . Many beautiful templetes are included in it and I can use them easily . Keeping a dairy ( diary ) is very difficult in Englsh . I hav never kept a dairy ( diary ) in three days straight even in Japanese . What 's worse , I forgetted things easily . the summer holiday is coming - how exicting ! guestion : What kind of places are you interested in around Tokyo ? We shoul not forget March 11 . mmm , it 's defficult to explain . All the people do n't want to lose thier family , friends or girlfriends . In this movie , the mayor loses half of his face becouse of a fire . If I have only two choices , one is I will die and save my lover 's life , the other is I will live instesd of my lover . To tell the truth , this story was too defficult . especially because each sentense is very long . and ultimate substante . . I think and beleive that brain - science can give a better answer than philosophy my friends and profassor . Yesterday , when I was talking whith my father about where we can go on holidays he told me that he was going to go to Eastern Siberia for work at the end of August and he could take me whith him . I ca n't belive it . But it is n't certain . . . Our buner was out of oder . I spend a lot of time drowing . I went for a drink with the volunteers and students of the Japanese coversation class . One of the volunteers drank too much , and trumbled to the floor . The party ended , but one of his colleague from the company and my wife and I waited untill he could get up . Mother repare lunch . So , I want to get to be able to speak English and demand from him much more saraly ! ! According to the calandar , it 's Feb 19th . Recently I hav n't been able to get along with my current boss . What shoud I do to reconcile and get along with him ? Why the autum sky so high and beautiful ? In earlu autumn , the air is so clear , the temperature is confortable : not too hot , not too cool . I feel like I want to go somewhere in the early autum , to some distant place . There are high - rise condos , office buildings , TV stations , shopping malls , parks , wharfs , sotrehouses , and so on . I found that I made careless grammer and spelling mitakes . Please poit out , if any , more subtle mistakes such as : You will always need a parter by your side . I have desided to start practicing English this week . He is a native English speaker , and the more he got excided , the faster he spoke . I have dreamed about it since I was in Cuprys this summer , where there were a lot of English guys . While I was working , somehow I felt very uptight and beaten and I started to eat excessive amounts of strongly - flavored cheese cake . Althought the cheese cake is my favorite dessert , my stomach I know some basic words and grammers . because japanese food is wel - balanced and healthy . What I love to eat is mainly fish and vegetables , if there is soy sauce , japanese sake and a bit of suger and solt in the kichen , you can enjoy a lot of japanese food . When I went to a supermarket last night to buy some flozen fishes , I was surprised that there was difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! Please feel free to check my sentenses if you can . Custmors do n't always pay attention so I got ta work hard to let them know how our Gyoza is tasty and they should n't miss out on eating it . My boss told me uncomfortably ' Do n't stop trying and keep smiling even if the custmors do n't respond to you . `` I just hung out at my chrch with Korean friends to prepare for a Christmas performance . I respeced the good habits of the American people . But I did n't cry a lot of in graduation celemony . We are aborad right now , and we thought we should go out , but now we changed our mind for some reasons . ( ? ) So I finary got up after eleven . I will never fotget his comment ! ! For me , writing in English is more diffcult that reading it . Happy birhday especially Eupopean economics . I do n't do any sports now , but I belonged to boat culb in my univercity , I was very surprized to hear the news ! ! It is very dengerous country . I went to work useing new shoes Second , I have to grasp the secret of knowing the right timinig to remark . Let me tell you what happned yesterday . `` No probelm . The show lasted only a few minture , because my boss was back so soon , so I had to stop the music and he had to stop dancing . Ususally I read novels in english for study purposes . Whenever I writh in English diary or essay , I think it is at the level of an elementary student . Sometimes , It 's har . Now I want to see a panguin . Because I 've never seen one and the spot where we can see one is very near in Merbourne . It 's been getting wormer and warmer by the day as summer is coming . I think one of the most surprizing thing is , the diversity of ethnic groups in Auckland . Anyway , I hope you can enojy your last semester in Waseda and I 'm looking foward to hearing from you about your life in Japan . Today we watched the movie called `` Inconvinient Truth `` which is made by Al Gore . Surprizingly , it is more than 60 days . So , I sat in front of the keyboad and made ( composed ) two songs . My husbund 's pay is in doller . I always feel bad when I exchange doller to yen . . . But somtimes it is difficult ! ! I ate breakfirst at seven o ` clock . I played soccor with my friends in the park last Sunday . Next March , I wil graduate University . I do n't have time untill I graduate , I want to do many things ! ! It is important for Japanese histry because there has never been a change of ruling party in Japan before . How many fish and chip shops are there in Britan ? When I speak English with my teacher , I feel so anxous and suffering . A teacher asks a range of guestions and a student tries to give an answer as fast as possible . Every Sturday and Sunday , I usually have nothing I have to do . I washd the And he loves sunshine . He always goes out for walk for a while and just sleeps on the scooter of my neibor . After suffering from the wounds and two surjeries , now if someone sits in front of him , he will climb on the legs and sleep on them , but do n't think it is nice , because he will also pee on you because he thinks that is comfortable , what a baby ! ! ! ! I think that all cities are beautiful because every city has different traditions , cultures , ecc . the city of Praga , the city of London and especially the city of New York . Talking with my friends at the same time on Sype Medicines or medical supplies have sometimes different names among contries . It would be like a nightmair to not have a dream . Are they controvercial ? I believe the world is wonderful and there are lots of things for me to disvover . And of couse I still surf every day like I did in Australia . ( ha ha ha ) It was very intersting . And I want to learn tecnical English , related to I . T . , too , because I need it for my work . There are IT - English courses at my company , but they are rare and quite exspensive and all places are filled . I go to the work place that is for kabdicapped people . Working there from monday to yhirsday I was waiting today ! I ca n't wait anymore ! I love english ! ( but do not love wayn ) I like to be a salesman , because saling things is a challenge . But I wish I could have a real conversasion . There is a typical colective dance in Catalonia : the sardana . It 's called `` Castells `` which means castels . And finally , the third one is a human castel made by the team La Jove de Sitges , from Sitges , the town where I live . I went to teach dance class today , and I played some songs of Alicia Keys 's albam `` unplugged `` at my class . I do it , becouse I want to be in steady contact with English . Half of the screen has lines on it when lit and only the othe half shows images . I love Cameron DiazThe very much . It took us more than 40minutes by walk to get ther from backpackers . If you get a good score on the tests , your entrance examinaiton for University will be easier , maybe . If you belived in me If someone belive in you , you belive in the world . If you know a good way , pleaze teach me . After eating two rice balls , I also sdudied . But now , there is no way I canstudy English qucliy . Finially , I decided to lease an apartment close to school for my daughter . I liked Michael Jordan very much , of cource . Pressure ( s ) about the path I was chosing , the career prospect and my future all in one word . I really appriciated that especially from my girlfriend . But recently Japanese weman work too . She seemed to be lazy whle studying with me . My favorit soccer player is Steven George Gerrard . Moreover , we are expected to have a wide range of imformation not only to teach all subjects but also to help students broaden their world . This is my 10th entory . The hibiscus , one of my plants , had been showing a smoll bud . ( for some days ) there were a lot of hibiscus with vivid red flowers everyhere on the island . odayI went shopping by bike and saw beautiful klouds . It 's been for about 5 days sinece I came to Vancouver . There were a lot of races in my aschool . However , I do n't have many friends ( right ) now , so I 'm a liitle nourvous . But before I came here , I decided to be positive . If happyness and love are only of saturation of the neurons phenyl - ethylamine `` . Will they keep me standing until I concide on some issue ? I want to say thanks to my Lang - 8 netfriends who have commented on my jourals and helped me to improve my English . I have printed out all of my jourals . I 'm greatful to my friends . Maintaing Balance These days , I am really cuious how they deal with some problems between those roles . From ninr to five , school work is really busy ( busier than ever ) , from five to eight ( thankfully not always ) I take graduate school clases , from eight to eleven ( sometimes from five ) I must listen to my son 's complaints , daughter 's singing , and her baby sister 's crying . I unserstand in this period of my life , it is really hard to live for myself , but it is a liite sad to me . I am always busy , I should find a way to maitain balance between roles . I am studying Chinese and Hygine for exam . It took thirty minutes to get to the English conversqational school from my university . In the lesson , I cound n't answer the teacher 's questions . I like to eat meat , vagetables , fish and so on . I think beef has more nutrition than vagetable . Therefore we should eat vagetable . So , I took a medicine and I staied at home yesterday . The best memory in New Zealand was horse trekking in Lotoruwa . Please check the follwoing sentence . Next week our family is planning on going campping in the forest . A man who is my ex - boss and correague gave me a `` JOBA `` ; the true mercandise name is `` RODEO BOY2 `` . It is a kind of exercise machine which was onece really popular in Japan . I ordered `` a `` new PC yesterday at the `` neiborhood `` PC shop `` whose `` name is `` Dos Para `` . I have n't had many experince and I 'm not a kind of preson who is good at speaking in front of someone . Is it goot or bad forlooking atinterviewer 's eye ? Flour contains water , proteins , carbonhydrates , lipids , minerals ( inorganic substance ) , and vitamins . The elements of an amino acid are usually carbon , hydrogen , oxygen , nitrogen , and sulfer . Tuseday , Marh 29 When the earthquake happened I remenbered her and I worried about her . I ca n't believe it because I take it for glanted that Osechi should be handmade . Today is HALLOWEEN , I do n't know wheter or not there is a party in my company . I do n't know much about this holiday , so I will wait for someone 's advice . Now , I 'm studying in Northeast Chna . I 'll be updating a lot of stuff since now . Please correct my English when its wrong , or inproper , and feel free to talk and ask me anything , especially people who want to learn Japanese that are from other countries . After a three day vaction , I 'm back . But I feel really tired and have no energe to do anything . We talked long into the following moring . get back togther - - - - > ( get back into a relationship ) that 's all . sex and the city is a really cool series , I really like it , expectially because of the hot scenes in it , I think all men like it ! By the way , he is a very nive person , though he is shy sometimes . Imagine how delighted I was the momengt I saw her email . I have to write an essay on Japanese education for foreign students , _ and I 'd like to know what ( all you ) Japanese lerners really think . I plan to go to the KCC farmars market . I have two chiwawas , Kai and Choco . Throught I am a leader of my department , I feel that I lack confidence . For instance , when I deal with something difficoult , I 'm usually filled with fear and nervousness . My mother ordered `` Tenpura soba ( buckwheat noodle with tenpura ) `` and I ordered `` Misonikomi and Sasimi ( Miso seasoned noodle and raw fish ) set menue . I went to home and lookied for any mail but there was none as I expected . I think most Japanese who came here are good at listening and grammer , but their speking skill is not good . I think that Jpan faces a large problem now . I am concernd about domestic and internal problem . And one I faild last semester , I got a very bad score , so I will study that again . I enjoy watching thecartoon , bye . Because as I said before , my section only has three men andso I want to make a good atomosphere . Thay will either go on a domestic or overseas trip . Some people will stay at home and play vidio games , or watch DVD movies . Becouse My coffee just runout and I kept forgetting to buy some more . Also , I am not a coffee addict . I could not keep my diary for a caple of days . becouse being in school is very tough , I was busy studying . The reason may be that my journals are kind of boring and there are relatively few users who are native in English conpared with Japanese users . . . . I told to somebody , but of course they did n't bileave me . I am writting a diary entry for the first time . yesterday I went to an amusmentpark park with my sister . it takes thirty minuits to get there using freeway . I left home at eight thirty for that but I had to pay twice the amount of money becouse we made a mistake in choising the correct freeway exit . first we enjoyed riding attraction that are selected by guiness book of world records . it is the most hirhest and fastest in the world . so we wanted to buy the photp but othere person was saying . . . now my fathere is studing in Tokyo . I 'm new here . My name is Ian Lou . I am Chinese and I 'm now living in Canton . all that I learn about English at school is not quite suitable 4 daily use and social daily communication . so , I want u guys to help me 2 learn some native English , you kno , something really English . As a result , I only took a 15 ninutes lesson today ( the usual lesson time is 25 min ) . parenting of their babies or adlescents sons or daughters and communication to give up working because of these surcumstances . I should be more carefu so as to not to scratch it when I drive . Cherry blossom time is cominng soon in Japan . Also , if someone feels very tired or they have stress , they think smoking can help them slove their problem . essencial oil . I searched the internet and I foud Lang - 8 . The musium just finished from renovation and the planetarium became one of the biggest doom in the world , so I am looking forward seeing the No . 1 planetarium . I 'll write about them afterward in more detail . He is one of the best artists in the history of korea art . And he introduced western Europ art in Korea . And there are alywas many foreign people . I was shopping for 3 hours , but I could n't find my favorite colthes . The lizard 's fase was very cute , I thought . I do not mean to sound arrogant but I often just beleive in myself regardless of these perception discrepency > < I wento to Osaka station and bought a ticket soon after . That meke me depressed and sad . If you buy our products with an accomdation service , you can get After that , I had scarecely gotten home when my friend and I took a car to mt . It is impossibel . Resently , I think have n't exercised much Suger 15g Solt 5g 2 ; Add yeast plants and suger to the bowl and mix with a fork . 3 ; Add strong - flour and solt , mix together for 30 seconds . I will understand grammer and be able to pass the 2nd - EIKEN exam . And also Japanese people tend to think that compasssion and duty are very important in a society . My daougther will start going to junior high school from this Tuesday . I prepared her itmes for school with her . She wants to go school early becaouse she wants to meet her freiends . Anyways , It 's the truth taht many kangarooes live in Australia . People Who can not pass the tast will have difficulties in the next semester . and then I had a very dericiouse meal . When I met him abou 5 years ago he said the same thing , so we wondered how he was earning money . I earned 7million yen once but lately I 'm alyaws losing money . ' I make money regularly ( It may be checken feed , I think ) , but ( 1 ) I 'll work as an English teacher starting next year . I jonined Lang - 8 . After looking arround the university , the student teacher bought us lunch . I am having fun while learning Engish again . I am following some tweets about lrarning English now but it is remitted by only PC , I feel . Anyway it is very convenient to learn foregin languages these days . I am not so smart but I want to thank those who have very special tallents to develop our lifestyles . I do hope they manage to use their tallents to make our world happy , comfortable and peaceful . I recently heard that a lehendary band will come to my town . . . When I miss something for being happy it 's when I 'm in loneliness , it 's terrible becuase you feel sad and very negative . But the food and the parties at and after cristmas Eve are so delicious that I can easily forget the stress before . It 's a little bit extrem to eat soo much 3 times in 3 days , I know . . she did thus unconsiously , I like the story of ' Winny the Pooh ' . When I was an elementary school student , I wanted to be a bookseller or an illustlator . But it is rainning . However , I was half finished when it started rainning . Today , I did n't get good scores on the math test which the techer gave us The techer decided to give us another chance on Wed . after I took off from the plane I went to the gate 27 , which is wrtten on my flight ticket and started waiting for the transfer flight . What made me eager to learn was the acciden in the Phillipines . Someone warned us to wer slippers in the sea , but mine just came off my feet . Would you ever try speed datung or going to a dating service ? * No I never try speed datung or going to a dating service . We didi n't expect so many people to come . Before drinking my third bottle of beer , I could take some good photos calmly and with a simle on my face . When everything truned to normal I just said thanks to him , and picked up my Canon for more photos of hugs , kisses , farewell and confessions . My tresure ! England is a very bautiful country ! ! Futhermore , the problem in the USA is that the children take guns tto their parents or their parents give guns to their children . Consequently if a child has a psychological problem the fact that he carries a gun is dangerous . For exemple , a boy may shoot his parents and his siblings . In addition , the secont amendement in the USA states that the population can have guns , and that people can buy firearms at any time . To conclude , severe gun laws are not the solution to the problem of gun violence in the USA because the second amendement is that people can have guns . At that time there therewas a ploblem . The person taking my order could not recognize my pronounciation . I felt myself falling into darkness with disappontment . If there was a small holl , I would have hidden in it . Throught this experience , I feel that I have to study English pronounciation more than what I have already done . We can get seven consective holidays in GW . Today , I cleaned my room . The desk and wardrobe and every anycorner are clean , so I am in a good mood . Today , I am going to go to the year - end party with ( my ) univesity teachers . That is the captial of China , and this is the captial of Xinjiang - - my hometown . On Samui we swam , walked around the island and tried to ride an ATV and an elefant . During several days in Krabi we visited some islands , tried snorklling and kayaking , and fed wild monkeys from our hand ( fed wild monkeys by hand ) ( they are my second love after giraffes ) . That 's the reason I 'm able to learn it more effectly than English and I have more fun with it . I visitted the ruins of Hagi castle and enjoyed watching carps ( Koi ) swimming in the pond surrounding the castle . The morning speach was about safty In my office , a mini meating is held everyday . The thairman of this meeting changes every morning . A mini notobook which tell would be the next cheairman goes round our section . 2 month ago , the safty speach was started by the chaitman . The perpose of this speach is to make us more aware about safty . But many members get comfuse and worried on what to say . Japanese people do n't like free theme speach . In this way , we have to think the speach for the specific topic . ( This would help us to improve our safty awareness . ) Ranging from acquaintance , knowing each other well to being kept apart ; just like the flowers ` sprout , it opens and withere . I came to this strang school , feeling enthusiastic in August , but now I stand at the end of September while keeping back the once boring sounds of the cicada . Pay attention to the lessions , ok ? `` , and I gave in to her . I thought I have forgetten her . `` No way . `` I continued sitting on the chair and lilstening to my music . I live in taipe now . Anyway , I hope the government will quickly change from conventional cedar to ceadar of a new type that has a low amount of pollen . Some customers odered customized drinks , but I could not take their orders because I did not know some of the beverage names . . . . In addtion , I should improve my listening skills too ! Many people in the world visit my city throught the year . for exemple next weekend If you have a dream to go to the chocolate factory , you try to uy it and see you there : ) The pickled turnip Leaves and cream cheese I had last dinner were really good , so I tried something similar , cream cheese on pickled eggplants and pickled Japanese Radis leaves . Then , I cut Japanese rudish leaves into bite sizes and pickled them too . I added chicken saute for some protain . owe : Modern Society owes convinient life to science . lend : I do n't like to lend money to people because sometimes it becomes a source of troble . pour : Helen Kellar understood the meaning of words when the water poured from her glass . I 'm writting my first diary . My fitst diary And another reason , might be my LAZYNESS . magandan gabi po . Listening ? Writing ? Studying grammer ? I think nowadys there 're a lot of thieves around us so we should pay more attention ! I realy want to go to America soon and study there . The small accident happened while I was driving , however it is something that nobady got hurt . The teacher told me some important things ahout life in there . I learned much about the school and knoe how to live well at here . I lesten to a worker speak about job hunting . I think I have to set the aim and try to acheve the goal . Are sparklar only Japanese culture ? Ten devide by five equals two . Ten devide by three is three with one left over . Distance devide by speed equals time . Distance debvide by time equals speed . There are many systems in our deparmemt . Belive it or not , there are about 40 ! I am hopefull that I will improve my E language with your help , and I will try my best to help those who are interested in learning the Arabic language . If you need to be plite , you can say `` watashi ha hashirimasu `` . Regaedless of the subject of a sentence , you must not forget to add `` ha `` . If you have any questions , I 'm wiilinng to answer you ! So it would be a taugh situation . Today I was litening to the English conversation program on I - Pod , and teacher said that when the English native learn the pronunciation of ' Moshi moshi ' , they say ' Washing machine ' . Tomorrow we have a rehaersal for the sports day . If it rains tommorow , we have to postpone the rehersal . He spoke so fast . . . > < Hoeever , even if he talked slower , I would not have fully understood because I do n't have enough knowledge of Christianity . When I was in Japan , they tried to pursuade me to join Christianity so suddenly , I was little scared ( or startled ) . Perhaps most of them are Chinese vegitables . I tried to cook something like that even though I do n't know what kind of vegitables . Wash the vegitable well and cut . Watcing my parents doing crazy things to continue working on music . and then EMI USA disappearent and turned into ? ? ? , something happened to the record company so it never went out . Brazilians , Mexicans , Spanish , Koreans , Garman , and Venezuelans . I realized that parant , friends and all people are really , really important in my life . My host mather gave me a T - shirt , a sweater and a muffler . It is a Japanese dorama . When I went to Hawaii , I bought many shitrs from Abercrombie & Fitch . Is that ture ? ? Internet additon I am addiced to the internet . I spend much time serching for information on the internet too . She and her family camr to Japan for work 21 years ago and has now become a Japanese citizen by naturalization . I am very happy to encounter a good teacher , but I always feel like learning a foreigh language in Japan is really difficult . Because I do n't have any chances to talk with foreigher , especially in the counryside like where I live . Today , I went to a costomer 's office near my company , and the person in charge gave me an Omamori . It is my first day making an entry on lan - 8 . I did n't bring good camera , I onlly used my cellphone to shoot a picture . So that I spend spent half of my twenties traverlling . As a result of the horrible situation from the Marth 11th Because of the earthquake in Tohoku district and the many victims of the earthquake and tunami , some parks have asked people to refrain from hanami this year . So if my writing has some wrong sentense or word , please point it out . when I went to austrailia for the first time without any basic information about there , they gave me lots of useful information for free . Especially , I was excited by the trumpetter 's solo ! ! If the battery does not have power to use , you can bite it with your toeth . When day would you perfer to start learning Thai ? That all the sentences that I have prepared for my student . If you know any polite sentense please recomment some to me ? By the way , my mildle sister took me with her to her room but I ca n't tsleep becasue I would like to write in my diary before I sleep . I recieved my TOEIC score today . Anyweay , I think that nowadays . Is it better to speak a foreign language in perfect pronaunciation ? I think that foreigners speaking Japanese in very good pronaunciation but it 's natural to have slightly strange pronaunciation . and I wish I could comunicate with anyone in the world . Once it starts , one term has concecutive days . And one class is seventy minutes , so it will take some effort to maintain my concetration . S . , China , Jerman , Finland , etc . . . . Also , when I was reading the driver 's menual booklet , I found a hilarious practice question : The main reason is that the company did n't acknowledge the problems cars had with their brakes and acclerrator and issue a recall until 2009 . I thought that Edomonton is a very flat place : ) and it is cold more than I expected it would be in Japan . Everyting was delicious ! We had a wouderful time . my daugter was in good humor ! Spring break is going to end the day after tommorrow . I 'm not a person who enjoys to study , but am a person who goes out a lot with friends , so I would have to try to make myself a deligent person . Recently I have begun reading English books because I know my vocabulary is n't up to scratche . I have writen my diary for the first time on this site . Tomorrow I will do stimultaneous translation at the Wendsday bible study . This is my first translation in public ! xO I 'm sooooo nurvous about it ! the nick name wasmade by czech friend in sydney wholived with me . Now I live in seoul . She has alredy made roast turky , pasta , roast potato , etc . Mayby this might be the happiest I have ever been . Saury is in seazon now . But actualy , it is a old American car . Does the pronounciation of UK English have more emphasis on some vowel sounds ? Now I am trying to input my profile in the incrute web site . my friend is in class now , I am waiting for her so we can go home together . I decided tologin here , but when I look lastest posts , I find that most of journals are written in English or janpanese . I just went to a university to get a graduation certifitcae and I was awarded a schoolarship ! with cultural exchang between a lot of countries . Therefore , I 'll keep on stadying . I 'm not merried yet and I have no younger sisters or brothers . I would like to get a tatoo of the Tiger or `` tora , `` not for fashion , I like it because it is considered by the Chinese to be one of the four sacred animal simbols , the North representing the autumn and control of the winds . Also strenght , courage and long life . He will design the process , I want a tattoo that is only and exclusively mine , I hope it can be ready before next mounth . I am very happy because the moment he came into my life , he made my life complelet . If the day I have to hate him comes , I will remember these days , how he treats me well , and how I feel so greatful . To top it all off , the lack of people and the cold breeze sort of threw in loneness while I was running in the grim and low temperature . We had lunch , a dish made of rice and chiken called Yassa . Unlike me . . . . becouse I ca n't speak English . I also ca n't think immediately of what I should say . . . Though It is a little dificalt to eat , it is good for our helth . Some soldiers in the helicopter are runnig out from the helicopter 's back to fight or to get ready for a fight . The helicopter transpoted these soldiers here and will fly away . Safeco Field is like a beer gaden ! LoL . She was qute and funny . This time , to our regret , the rumor was proven to be true . In other words , I am alive , because Korea could gain Indeoendence . I think it is one of the reasons why allmost all Japaneses ca n't speak English well even though we have learned English for a long time when we were in school . frist , when I started watching the video I wundering what he wanted to show . I 'm in a good mood today because my sister gave me a good anwers ( reply ? ) on MSN yesterday . it helped me solve a preblem . It is Sunday moning and I 'm going to meet some friends in the park . We should be have a lot of things to share with each other . see you agian . . when I come back . The crimate of Unzen is cooler than that of [ downtown Nagasaki - Note 1 ] . It comes with two CDs which include songs , dialogs and chants . Problems with Infulenza The spread of Inflenza aroud the world . The ful virus infection was confimed yesterday in Tokyo . I 'm studying Engligh . Nostalgia - - I want to know please if this essay can express the feeling of homesickness and the obstacles that person can face in the forgeon countries ? Sometimes adapting to a new country can be difficult for some people . However , some can cope with the diffuculties of living alone away from their parents . Ever since I had thought of anything to do I felt nostalgia towards my previos life . he only went to the nearly station , but also my cowoker and I went to I 'd like to improve my English so I can cmmunicate with many people in the world . Today we tlaked about ( the year ) 2012 . They say that the world will end in 2012 . I 'm happy becouse tommorrow is a holiday ! Today , I went to a guraduate school . Mabey this is the reason that why I come / here . Today Pastrers and leaders from Taowan , Uganda and Singapore came to our church . Of Ofcorse I 'm not sure If I can help them enough though . When I was twenty years old I went to Singapore , the Pillipin , and Japan by ship . It was so fresh and wanderful ! ! ! And I ejoyed walking the streets and shopping . Tell me what I sould say then . He was a little upsete and said to me `` You 're the worst teacher in this school ! `` She dances and sings durring the house party . I think it is more difficult to write English than to read Englsih , but it is more difficult to speak English than to write English . she was twenty - nine years old and I was twney - three . ( Someone said that this sentenience is the worst opening in the whole wide world ) I have just graduated from Insititue ( College / University ) and I majored in Computer Science . Differenct kinds of Chinese Dance have differnt kinds of feeling you need to capture . It should be felt by obsersation and by your body . They kindly paid me much more than I deserved , but it was tough work for me as I was n't good at deeling with small smart boys . . . I should have waited somewher inside the building but I had to feed my children . After that , I went back to my home town and brank with my grandmother and grandfather . After th coffee hour , he had planed to play soccer with his friends , so I joined them . There are normaly 9 gruops of 9 boxies in a puzzle , and each boxies has to be filled with a number from 1 to 9 , and also crossing lines and horizontal lines have to be filled . - The North - East direction is considered to be an origine of bad unluck . - The number 4 is an unlucky number , because one of the pronunciations `` shi `` means `` death `` , so in hopitals there are no rooms numbered 4 . I am wondering when my tootchach will get better . Thr pofessor who was my teacher ( mentor ? ) when I was a university student will retire this month . So I work hard , especially in Engrish . Some people say that if people do n't drink any liquide or eat any food , then they will die . This part is damn difficult for Japanese , because the singer does not pronunce each word in this part clearly . I am writing this entry on my journal at McDonald 's , the worldwide famous humbarger chain . in every store in Japan and then I can use my PC with the broadbank ( ? ) network when I come to McDonald 's . But in reality I can use the internet under the broadbank connection of 20 megabites per second over a cup of coffee , which costs only 120 yen here in Japan . job hanting Please Chack my diary Today , my friends and I , who are gradeuate school students , went to the sea to play water sports for one of the classes . . Luck has nothing to do with sucsess . Howeve , I belive that it is impossible for everybody to countless hours to prepere for the olimpics and resist to is not from only their luck , but also their effortness . I understand everybody can not do hard work and get thir your hardwork link , you will get success outmatically . agree with the statement that luch is nothing to do with success . The Conbatant who Wanted to be ' ' Kamen Rider ' ' I write this frist note to all of my friends . My school is very beautiful and a collegiate universtiy . Futomaki is a roled sushi . Hi guys , Hope Everything is ok with you ! The movie , `` twilight `` , is from novels wrritten by an American housewife . It is a story about a vampire and a beautiful colleage girl . I think I should go to hospital , but recieving tretment in an overseas hosipital is a little bit scary for me . So , I wach the TV in the morning . When I went to Hawai in May , I was reading a Hawaii guidebook published by Japanese company . Beacuse there are too many people in the library . at once . guss guessthen10 hours . I guss I study for more than 10 hours at times . According to a report issued by Dandelion Ressearch Committee , native species of dandelion have been decreasing , and introduced species have been increasing every year . grammartical skills and know many vocabulary ( sometimes even useless things ) what I hope for business out of Japan is that I work with free - style , free - costom . Gyg manga byori haveanime ( animated cartoon ) , it is also interesting . Today , I got into some troble . We read two special surahs from Quran for people who are dead , for their sould to be in peace . I do n't know what to write for my first dialy . It is amaging that such a large amout of money was raised in spite of the recent depression . I hope the discussion will be fruitfull . . . I have been to Egypt , Fiji , Mexco , Papua New Guinia , etc . Finaly , Anpanman always wins over Baikinman , of course ! But , I am not goot at English . becouse I like Japanese on all subject . what do you think about your neighber ? `` and `` it is a littele America `` as a joke . The comment assume me because when I drove with my friends who are Taiwanese and Chinese , they discussed thier identity and recognition of their respective countries . I 'll talk about what I learned today , both from my own experience in life and from others , . . . . or about some topics that I found that are intersting . . . . . hope you will join me in discussing it . I have to sonsider this as a problem . The topic this time is `` What is your most ashame story in your life `` . One is walking behaind the other and he or she is wearing a white hat , a shirt , a pair of short pants , and is carrying a dark green knapsack . Among all amerycan rappers I like only Eminem I need a holiday for myslef . I must rescue myslef from this confusing and meaningless life . But I am not going to break my learing course . The main actor Mike is an orphan and very poor , but he accidently met Leigh Anne who gave him support and trusted him . Suddeny everyting was covered in darkness . fortunately , it has n't darked yet . I could n't see anyting . The teachers gaved us illuminated candles . I ate kimch and rice for breakfast this morning . Therefore , I can speak French a little bit and I have some knoledge of the city . Instead of visiting popular sightseeing spots such as the Eiffle Tower , the Arc of Triumph , or the Palace of Versaille etc . I would like to visit my school that I attended , the park that I played in with my family , and the museams , which were too difficult for me to understand the importance of at the time . I took part in an event held by the church neaby . Chrischans always praise Jesus and pray everything for God . I did n't go to sleep early , beacause today I got up at 2 : 00pm . Do you have a special plan for summar vacation ? This is what I suffered this moning . Nobaody wears a get - up like me . I realy want to improve my English . . . I feel a bit nervious , but it 's a great time to test my self control . Do you know how to learn foreign lanuage ? I design new mechanical parts or improve existing perts for aircraft almost every day . Jesus as that shepherd coming to pick up what 's left of you , and see how God brgins victory out of defeat . Hi everone . But English is so diffecult . Of course , I also think about immgration . I think everything will be ok . I will ride out this strom . Tell me pleese ! It 's because our project is a qroup activity . My friend broght me some steam rice and they were so good , I have Tomorrow my beautiful country will be [ a year ] older , because tommorro is the 15th of September . The independece day is very interesting ; the people go dancing , _ and go with their families to Zocalo . Zocalo will be a very lively plae [ tomorrow ] . . . And there are many factors that facilite a coincidence like this to happen . Soonly I think : whatever , I 'm still me , another growing man . I watched a TV plogram ( NHK ) about Lang - 8 . Especialy , my interst are bioinformatics and immunology . I have stadied Korean . I went to Korea towice . I want to keep learning English for bissiness and chatting . She talked with us about descrimination . They lso did n't know how to express themselves . Our coach organizes diffrent activities like camps or excursions or rafting . During this meetings we congretulate them in diffrent ways and do different interesting things . Hello friends I am going to write somethin I have insited upon my belife for many years , but recently someone told me that I had made a mistake . They said I just live in my own world and never try to accept others to attend my world . It 's this real ? How confused I am . Since that I have been paying more attention to my achivement and thinking about my words again and again when I speak out . It just makes me feel sick with myself and I hate my charater , my achivement and my wrong feelings . And I chatted wuth my friends , on Facebook and twitter . I studied about grammer there . Yesterday , I flew to Edomonton , Canada . They dominated the airplane so it was a littile bit weird . The husband is a native canndaian and the wife is philippineCanadian . Kindly enough , they brought my baggages and took me to their house . It is in a traquil residential area and has beautiful garden where you can see evergreen conifer . In the back garden there is a husband 's favorite bonsais and an azalea tree and a small vegetavle garden . She is 16 but her English is excellent , especially pronounciation . According to her , she has already stayed for 7 months and studied in local interenational highschool . The examinations were held with paper tests and did not include listening tests , so I studied English forcuing on reading and grammer . The artist told us about a difficut request ( which ) he had once received . We are glard we choose Popo . By the way , now Popo is almost 9 kg and from that small cat became the biggerst cat I had never seen ! English Jounal - August I read the latest English Jounal ( EJ ) at the library today . It 's one of my favorite magazines , which comes with a CD in English . I hate the complicated ones because I can not understand the story as soon as I concentlated on the captions . I love studying languages becuase I 'm interested in the sounds of foreign languages . After , an American man who looked colse to 33 ~ 38 years old , walked up to me and tried to chat me up . In addition , I want to join a volanteer circle . Bacause there have been many witnesses . The only thing we can do is prepare for the earthquake , because it 's just a nature diserster . anyway I saw the movie `` Love and drugs `` yeasterday at home alone . I make vegitables soup and have it three times a day . I want to overcome this situation ( my caracter ) , but it will take a few times . By the way , recentry I am crazy about gosship Girl which is an American TV show . I hope he uses the same concentration he has for catching creartures , to do his homework . . . I study about the enviromental problem . I saw some elementry students killing ants just for fun . In the shope , the seller said to me : `` These will be great for your mp3 `` ( I have an ipod ) - and it 's true . The movie is called `` Sutter Island `` . I 'm looking forward to watching a movie called `` Inseption `` . Because , a large number of adult peopleas often say , `` Recently young peaple are not polite and they do n't have common sense . `` I 'm looking fowered to the future built on today 's young people . It was very short srip but I was able to enjoy it and discover the cultural difference between Japan and America . Some children were transferred to the hosplital due to heat exhaution . The extreme usage of air - conditioning caused the electric power company to stop procuding electricity . When I worried that he 's gon to bite me , Ms . I called my agent about finding a job next month because I 'll gaduate from this school at the end of this month . But look up at the apex of the triangle and you 'll climp up to the top . My insistence is that looking up your goal and making efforts brings you something which maches with you well . The moment when I stood in front of our classmates , the teacher was commenting on my partner 's errors in her persentation , so obviously it would bring a cetain pressure to me . I 'm exhausted , but lang - 8 makes me vigor . I wonder why I was fascineted by that ? Perhaps it 's from being brought up in Japan where most of people would be secular and athist . If my son gete up by himself , I would be late for work because I ca n't hear Mom 's voice . I do n't have enoguth time to do anything after work . . . . Then I 'll llmeet my friends , that I have n't seen for a long time . . . Jane is tired of dealing with customer omplaints and wishes that she could be allocated to do another job . My selection is not surely wrong , but correct : here is my final distination and utopia . While I was watching the Singaporean city , I realized again that I must get a job here , and chandge myself from a loser and cowardly man to a human . Sorry , today was busy as well , so I ca n't write a long sentence . It 's been aroud a couple of years since we met each other . We all will be suprised at how different we look when we meet together someday . I 'm CerezoOsaka supoter . Shinji Kagawa was a menber of this team . Now he blong Dortmunt in Germany . I like Jonyy Depp ! Breakfat is important Hello , my wonderful frined . It is about 8 : 40 . I take my breakfast early . What time do you usally take it ? I notice I am always hangry when I get up early , and after one hour I will be hangry again , even if it is earlier than usual . Please do n't forget to eat brakefast . Miyagi and Iwate had the biggest damege . For every day that I exist , I will have more energey ! Abosolutaly , making freid is another gole for me . lonlyness is a time you can talk over a lot of things such as human life and the purpose of your life It 's very easy to cook . Just put ingridients into a boiled Nabe soup . It warms you up , has a good taste and is healthy for you . In fact , I scoled him for misbehaving last night . my yonger sister and I went to a Guardeira for Spanish kindergarten , that diverse , elgant , beautiful , environment - friendly , positively Europe Culture My father took many pitures in Spain for family memories . And until now , occalsionally we saw the pictures and indulged in reminiscence . But when I was 14 - 19 , my father 's bussiness was getting worse , finally his bussiness failed by the time I was fourteen years old . For example Sushi , Takoyaki and Ramen nudle . I should buy the correct size tommorow . There were many harbs and flowers ( especially roses ) . Could you explain thse sentences below ? You must have to know a paassword . Acutually , I have taken it before . There are some Korean food reataurant near my home . I often go to Korean food restaurants becouse Korean food is my girlfriend 's favourite . It is served as rice and some Korean vegitables with Korean seasonings in a hot bowl , I know from my friends that Uropeain people do n't like to eat garlic ( ? ) Goood night . He is a Japanese songer . He is fourty years old . I rememberd a lot of things , like when I was a kid I flew a kite that my grandpa made for me . During spring there was often a lot of wind in my hometown . I ran and ran , the kite flewhigher and higher , untile the line or the kite broke . We have to registrate to get medical treatment in the clinic . The GP that we registrate with , must be the nearest clinic to our flat . May I registrate with the GP here ? `` We went because she wanted to go to Laier 's . I 'm glad to know such a good restraunt is nearby ! Yesterday , I had a party at the Atsugi in the Kanagawa prifecture . Very dificult , that song is . Yesterday we traveled arond Bangkok and today we came to the south of Thailand to the beach . I and Tyler are just watching them with their betiuful bodies . We are taking a boat arond the island . Accally I will remember this good day and save it in my heart . Also I looked at a variety of the British Museum 's artifacts , and I reacknowledged the fact that the British Empire had enormous influence around the world in the past . On the othere hand , prices in yen were too high . Also , as many people say , the food was n't good . Particularly , the Eiffel Tower at nigt was very wonderful . I have a lot of things to do , like my esseies by tomorrow , ( and I stil have them now . . . To take the side of Superman is very easy , he can fly and shoot optical rays from his eyes , he has super strenght and incredible endurance . I 've decided to take the Graduate exam instand of finding a job . When I 've been in higeschool , I have been reading , learning , and doing exercises all day . Hajimemashite , Domo Yoroshiku Onegaishimasu I have also started to study Chinese , French , German and Spanish and have finished my grammer books . I often regret a bit that I can not voice an oppinion I have . Becouse I miss my family and I 'll go back in 8 weeks . They are American Englieh and British English . word , spelling , grammer , and pronunciation . Since Australia used to be a colony of England , English in Australia is besed on British English . There are many other defferent spellings between both like color ( A ) / colour ( B ) , realize / realise , and learned / learnt . Elementary Worbook The finest Itarian restrant in Japan I love Itarian food and I like to search for nice Itarian resturants . I know one of the best Itarian resturant in Japan . The chef of the resuurant is very good at making pizzas . He got the win in the World Napori Pizza championship as the first Japanese champion . The pizza oven in this resturant is used in Itarian house of Aichi Kyuhaku ( the international trade exhibition in Aich Prefecture ) . This restrant has a very long bar in the lounge erea . The recommendable glass in there is St Christina ( Toskana red wine ) and Grappa ( the brandy made from streained grape leaves ) . I want to go Chezari again and meet the beautiful CEO of the restrunt . I opned my eyes and checked what time it was . My personal computer was brorke . Now , I 'm in the first year of being a docter , resident , At first we were excited to come to one of the hottest place in Tokyo but , we were disapointed and noticed that this shop would disappear / close down in 5 years . Second , the survice was not good . All they did was take pictures and dance to the noizy club music . I did ` t like those persistent salesladies at a department store , but I was surprized to see them . I 'm going to write a text `` End 1 `` at the right - lower of the first illustrarion . I 'd like to know about the public sefety of the US before going to L . A . Because thery have lost three game until yesterday . I plan to go cycling to see Bondai beach this weekend . I think that reading Nabokov 's books is better than wathing adapted movies . Nabokov 's language is delicious and he pays much attantion to small details , but it 's impossible to show this in film . That 's the most important thing for me at this monent There are lots of people from different contury . She is one of the most famouse singers in japan . ( Of course , the contents of the concerts were the same . ) It means that she paid about fouty - thousand yen only for this time . . . According to the news , an old man has been healthy althogh he had been drinking only cola without any water for some decades . I do not see pepsi in my neighborhood supermarkets or convinience stores . On the other hand , if the leader had many excellent subordinates , the single person style leadership would lead to quick and speedy decison making . This fieldtrip was a very exciting experience for me . She was a very very very friendry person , so I felt relieved . I want to know if they are really starnge . Should I read books or watch movies or drumas ? yestarday night yesterday night I had an arguement with my little brother who was a juniore highschool student , a 14years old boy So I 'm making lots of friyers on my own . After finishing up the friyers , I will hand out them at the station . The most important thing is to draw the attention of the people who are walking throug . I bet it will make a big impact on the pedestiran ! ! I do n't care if most people prefer dogs over cats . I like dogs too , but cats are awsome . Of couse , it can teach many languages . I can learn a lot of English waords . Languege traning If I had more time , I 'd be ready for the languege traning more . By the way , while I was on this site before , a friend sent me a lot of pictures and so today I am going to show you the beatiful pictures that my kind friend sent to me . Thank you . This is my frist time doing it . In the year 2001 , President Arroyo was elected and she started to negociate with MILF . but It has other meanings : serch word of list , like a sponsor It freezes or reboots only seconds after truning on . What 's wierder is that when it successfully boots and runs for 2 or 3 minutes without a hitch , it seldom freezes or reboots . But after a second thought , that does n't make any sence since it 's an electronic device , not a human or animal . Do you know DRRR ? , It 's a novel wirten by Ryougo Narita ? IZAYA is my favorit charactor in the DRRR . It is needless to say that they ate it greedly and quickly . Asians view life as everything being connceted and affected . I 'm participating the ACM / ICPC contest and I have many courses to learn . I also need to perpare my application for my study aboard , including impove my poor English , which I 'm doing right now . The Japanese soccer team won the Austraila team at the final , and won the Asia Cup championship . But I did n't watcht this game . So I had to go to bed with my daugter . I think they are the cutest in animls . I 'm always looking foward to the coming holidays This is my first article , so I 'll begin by introducting myself . I will improve my English skills and seek a suitable job there if posible . My boyfriend was a hot - tempered person , but he improvemented himself in order to stay with me . It 's not too difficult for me but lots of words really wear me out , expecially Literature . So I told him all of thes things and we could better understand each other after our talk . It 's an intresting course and also important , because corrosion exists all arroud us . We have 3 days off to celerbrate Labour Day . I think she is a prety girl but I dont know if I like her or not . I yearn having Korean barbecue , enjoying shopping in Taiwan night market , seeing a brilliant coloring temple in Bankok . By the way , how do foreign poeple feel when they come to Japan ? I was drinking with my frirend . I 'm Saori , and Im also a colleage student . I am not a systematic person : somtimes I can not express myself fluently even with my native tongue ! If you know English and want someone to correct your japanese sentences , let 's be frindes ! ! I want many friends to improve my English skills . But after I visitited there a couple of times , I can see them as professionals who entertainment the custumer with thier mannerisms and conversations . Basically it 's the same decipline as other forms of commerce . How do we provide value to our custemer ? It is hard for me to study Englis It is my first time taking English literature at the university and I never didn I recentely feel that studying English is hard after I took a class at Hansung University . Am I 'm donig well or not ? Recentry , he joined our English class , because he was interested in I am actually taking a English wirting class in the English department , and ( Quated from Korean newspaper ) Importace of a breakfast can not be emphasised too excessively . I do n't want to give up , I believe there 's a way to chage for the better . It includes correction of grmar , translation from Engish to Japanese and Japanese to English too . The Moring is not so bad because the teacher was not so tired and had a sense of self - composure . As the the techer felt tired , she became nervous . As kids were scoled , they became defiant . My mind is peacefull . ( Four degrees Clesius is the difference between temperatures nowadays and temperatures during the last ice age ! ) If the poloticians had listened to them earlier , the situation would n't have been that fatal . I like acction , comedy , mystery and so on . The highland is famous for it 's beautiful nature scenary . There are many fravor : salmon , _ cod roe , _ tuna , and so on . This trip was funny , I went on one of my schools trips , we went to Queenstown and Dunedin , it was for four days and three nights . There were 10 of us includ the guide ( who is also a teacher ) , 9 students , 4 from my school . On the secand day , we went to Queenstown . We watch the people doing Bungy jumps , then the guide helped us book an activity , I decided to do the Skydiving . This was my dream in New Zealand , because in Taiwan we do n't have this activity , if Taiwan had this activity , I think , maybe I would n't dare , because Taiwan is very small , we have no large open ground , maybe I would start to dive and after a little time hit a house , ha ~ ha ~ . Yesterday , I played footsall because I belong to my part time job 's football team . Recentry , I like to make coffee ! Execuse me for reading your dairy and giving some advisce , even though But I thought that I sometimes do the same shing as her . AND , we do n't konw what on earth the goverment is doing with so many taxes , while most people are living a mizerable life . This time , they are not letting the moomcake tax go off ( ? ) . And lastly , I recenly found this valuable and interesting site lang - 8 , which bacame my favorite ! Suddenaly , it rained and I was forced to go back my home T T Reading words on the iPhone mekes my eye sight bad . The UFC is a major fighting copartation in America . So , I tried to record myself speaking setences in English . My English pronounciation is terrible . I was exhauged . . . . Today is saterday . . . He was very nurvous . I will know the redult within 10 days . Obvioiusly , as a standard prodct of the abnormal education , I am also a test maniac . secondy , she has supported Japan strongly since there was a big earthquake in northern areas . It is obvious that the damage is still affecting the northeren people , as well as Japanese economics . As a reault , $ 1500000 in total was gathered during two weeks . This movement helped us definately . She presented her Monster Ball national tour offering premium VIP tickets to fans who volunteeer their time to homeless youth organizations , which raised mpre htan $ 80000 in proceeds to support homeless youth . However , when I hang out with my friends , I always wonder how the hll they can spend so much money . I major in English , and I 'd like to impove my English skills ! In additonal , I 'll tell you my least favorite proverb . That 's `` Two heads are better than one `` . I never belive it . I like this language and I think its characters are charming , fashinating . My complany buyer shirt and fabric export from China to Switzerland . I am a souring and quality contral . In my spare time , I like to go swimm or tour different places . The desire came out again when I started reading manga again and revisitting the Deviant Art website . Fortunately I could try several ( different ) classes there , so I could compare the atmoshere , the teachers and of course the level of each class . I have a litted / young son who is 2 years old . I want to get TOEFL score 90 and go to Kanada as exchange student . It 's a servics day . Becasue there are many things I want to talk about : ) So let 's get started ! It ' sthe final concert of MonkeyMajik tour 2010 ! ( The marche Japon Sendai , it is held every weekend at some arcade . ) At the market , it 's fun to talk directly with the sellor and farmer . Acturally , even after this God panishment , sometimes we threw his belongings into the incinerator just for fun . Althought I have two more final exams , I ca n't stop to read . It would be absolutely fabulos ! ! ! I recomend it . 2 You do not have to spend much time in the kitchen preparing meels I installed KakaoTalk programe on my iphone This program is a kind of messenger like a MSN online chatting programe . Recently , I have n't been studying my / the intermediate textbook on / about grammer in use . I do n't underatand it ! It 's bigger than korea ones . . . I heve visited the family doctor , and he sent me to the hospital . And my sickness was so hard / bad that the lung specialis said that I could n't go home . So people in Tokyo are buying eberything in the shop . So , I can not buy water , rice and paper . Yesterday , I went to Restrant Hajime for lunch with my girlfriend . My favarite dish was loasted lamb . It was so cool that we felt very comfatable . I 'm not familier with Europe at all . Let 's plant good seeds into our heart togerther . [ Please plant good seede into the garden of your heart and you 'll be sure to be happy unless somebody doubts you ] . Plaese could you tell me your own thoughts . I do like the older music too , Hungarien songs specifically . She said that her sperior did and said stupid things , and caused a lot of trouble . The eperiment is also waiting for me , I have experienced a tyfoon of level / magnitude 8 ever since I have stayed in Hong Kong . And acrually I think it wories Avi that we call Ji - Hyun Scott , a man 's name . It is werriten using an indian ink . I was seaty . I found `` Sleep tracker `` which is a wrist watch that can anylise the rhythm of one 's sleep , R . A famouse Japanese celebrity said , `` I can wake up much easier than ever with this `` . Yet , from the sidlines , they may be considered illusions . That 's why nowadays I 'm leading my life under the belief that something that manipulates us exsists and we are leading our life at the behest of it . Some part of me think that I could n't care less because if my theory is right , nothing was truely done by us humans but done by the manipulater . All too often , my students declair that they do n't know why they study . Sdudy English 4 , There are many people with a similer name to me in Japan . Sudenly when I woke up this morning , but I could n't be saticefied with this musical on that day . Whenever I leran English , I find Japanse interesting ^ _ ^ I read a comment in the textbook which said there was a very close relationship between vacabulay and success . Godness , who can tell me how to do it . . = _ _ _ = I hate the Korean ( alchol ) drinking culture . My sister 's company is forcing her to drink a lot of alchol even though she does n't want to drink . Then we put meat , vegetables , beans , toufu , etc . The weather was so roasting , made us unconfortable . * Agree ! * In the theater , the story was outstanding from beginning to end , it made me feel inconceivability , especially when the transformer chang their mind , it was very cool . My company is a American capital company , so I really want to improve my Engliash leval a . According to many newspapers , news programs and websites , the wilderness areas all over the world are endengered . * Coffee - Fresh is Japanise - English . I feel terrible and I 've almost lost my self - confidence and courage to do anoter job interview . We went from Wakkani , Hokkaido to Okinawa and enjoyed sightseeing , eating delicious food , bathing in hot spring , and so on . By curious coincidence , us five friends made a circle and pledged to proceed into bright futures at Takamatu Airport just one year ago . It seemd that I am buying the sacred certificatiom with money . If you are intresting in CLAYMORE , please check the following URL . I really want to study English well . I hope you can hellp me ! ~ She came by Shincansen . It 's also a wontherfull movie . After graduating from my jounior high school , I went to Switzerland to study other cultures and languages . My husband is goot at wood . The length is about three meters , the weight is 30kg , and the widthe is 80cm . NZ has a beautiful nature , many nationalities and tradionl culturies ( ex . I only know my faily , friends , school . . . Nealy 20 people came and together we had a great evening . In my workplace , English will be the national language in the future , So I hava to learn English properly . Izakaya normaly offer food and alchol at night , but Today is a frine day . So , at prezent I have just 300RMB on hand . A couple of days ago I joined a team which was started in order to translater English into Korean by university students . Our team 's slogun is to be in middle of the world that is emphsizing indepence and creativty . I went to the building near the Pusan sity subway station to attend OT . So my primary problem is pnunciation . At first I tried repeating corecct sounds by listening news or Tv programs . I live in my home town . There are some friens whom I 've known for a long time around here . She fogot to pay her utility bill because she is always busy . Hi Wolrd ! It is also very snowly today . Yes , I tried to write the calory off with those veges . So I was so disapointed . Of course sometimes I feel a little nervouse , since I do n't know if I can get a good job again after coming back to Japan , also I do n't know if I will be able to speak English ofter I go abroad . I aslo had a blood test . I started riading `` HOLES `` . I 'm studing Spanish because my best friend was Mexican . I have n't told her that I 'm studing Spanish yet , but I 'm going to make her surprised when I go back to Califorina . I am not always comfortable with writing a businese Eglish letter . they lost to the Orland Magic . ( ; _ ; ) I found this site coincidently . I took an examination in english comunication class today . So I went to school quickly and arrived earlier than I nomal do . So there was no chickee and beer ! I thought that somthing was happning , and I asked some people what happened . And now , I have finished the arrengement . This happening wasn n't solely a bad thing , because I know her today more than yesterday . To get a reasonable price , I need to check the price of severa companies , not just 1 company . So we promised that today , I would do nouthing to help the household , and study English all day long . My youger sister is 33 years old . Before we seperated , we shook - hands and blessed each other a successful trip . Besides , I bought some snacks and foods such as Songpyeon , a half moon shaped rice cake that is the most representitive Korean Thanksgiving food to have during the long weekend , which is over three days . The purpose of wrinting here is improving my skill in expressions in English . But now I ` ve decided to challenge to write a deiary in English . I enjoied summer vacation . In this Club , many Japanese who want to brush up on their English skils and many Americans who are interested in Japanese gather at the Student Center and talk to each other . It was a little groce , but I liked it because its plot was easy to understand . I went to cram school to teach English grammer for high school students . Right now , I am so exhusted . I am studying art but I am interested in film and I also Iike watching movies . Today is satuary . there is no class today My favorit sport is `` kendo `` . These days , I often see many magagines featuring beautiful and lovely chocorates for St . unbelieval . . . Today , I dreamt on introtduce myself in spanish ! ! She ca n't control the musule on the left side of her face . But we still do n't konw how this happened . So the docter removed that tooth 's nerve . I had been to another dentist and was told that nothig was wrong with my teeth . The doctor filled whrer he shaved with temporary medicine . I found her some madication . I went back to my domitory and talked with my roommates . Chantting with my friends My diary has alot in it if you do n't have the time to correct it , you can just correct some paragrap . If somesome read my diary and see it not finished please help me correct it , thank you very much my friends at lang - 8 . I met my friend today , we went to the movies at Sukumvit , togerter with my Thai frind and her Chinese friend . We were watched it for free . Thank you for listenig me . I found two cute one - peices . I feel that I will have good deream in tonight . To write a diary diary is inresting for me . I need to learn more vocablary . Tomorrow 's dinner will be also crurry , assuming I do n't have a previous engagement . I think it 's the most fantastil cellular phone that I 've ever seen . That class is called social taiking . So I ca n't improve my hearing and spoking in that class . The differnce between what she is and what she was has made me sad . The only way to make me happier is try to find someone esle . I try to find someone who is really conerned about me . All students have to / Every student has to pass various examinations to graduate from a university or a colleage , Especially kapadokia ! It seems like a 3D version of Nitendo . Do you know Haruki Mukarakami ? His famous novels include `` Kafak on the Shore , `` `` Norwegian Wood , `` While human beings forget many things everyday and every moment , thanks to cameras and videos we can keep all things in pictures and movies by just pushing a botton . Moreove , they will never fade away and lose color . posivive thinking Of _ Ofcouse I want to be a dietitian . Please trancelate this sentence into Japanese . If you could give me a grammartical explantion of the above sentence , I would be most grateful . If I had a lot of time and money , I 'd likt to travel everyday ! I met a frind today . Every year , I gave hime chocolates . It is not just a subject for specialties and researchers . If you have a suggeetion , please tell me ! ! The first thing every one of my friends says on messanger when I say Hi is `` I 'm almost dying because of the crazy weather `` . But thaknsfully I 'm here in Canada where the weather is great in summer time . Besides Except english I realy love japanese . Recently , I feel that some incidents that happend to me is as if they were TV programs I had watched before . Yesterday , my best female friend who is my ex - coworker asked me to tell a man who is her ex - boyfriend and our ex - coworker before , my mail adress . And I know the fact she does n't know , which is that he played with her while having an intercouse with another coworker . One year ago , he made his girlfriend pregnaunt and asked my friend to lend a lot of money to him for abortion . A grandson asks his granfather , GS : Granpa , why do we have festive red rice ? I nerver thought that sushi would be such a popular food around the world . I really appreate that so many friends remembered my birthday , and it was so nice to celebrate my birthday together with them . Rcently , the weather in Taiwan is very good and the temperature there is very high and it is very hot . I went to the department store on New year 's eve to buy some ingrediants . On new year 's day morning , many people went to temples and shrines to pray to achive their goal , despite the fact that they religious . In addition to this , it must be one of the resons why special TV progrrams that are usually unable to be watched are broadcast . What about other coutries ? ? What is a better expresion ? Becanse I took a college entrance exam and passed it . The story consists mainly of piratie adventures , and they also have special abilities as similer as how Naruto uses Ninjutu . Tuna was especially derisious . I have no job and try to improve my Englush . The croquettes are freshy fried and the salads are delicious but they cost more compared to homemade food After I come home , I enjyoyed the foods I bought . I 've got a relly big problem : tomorrow there 's a really important test about the voting system in the USA and I do n't get it at all ! ! First there are primaries or caucasuses . Then the Democrats and the Republicans each send a certain number of deligates to their national conventions . For example in state 1 candidate X from the Democrats has the most votes the democratic deligates from state X vote for candidate X as their presidential nominee . Before this vote each electo says which candidate they will vote for and they have to stick to this later . We have received news that my airline is very denger . It has many accidents and there are thefts at times . . . ! ! ! ! to be contimued . Monday Octobor 19th 2009 And , there is the invurnearable girl , Clare . Nathen can fly . And , his younger brother , Piter can absorb their powers . So , Piter can fly , read people 's thoughts , be invincible , and so on . But , it 's really amzing and fascinating . Generally girls wear long sleeved komono and boys wear long pleated , culotte like , Japanese trousers or a suit . My last roommate already went back to Autralia to work . We had lived in our apartment for a couple of weeks , which was a wonderful time for me . Then , I also met my new roommate , who is from Korea and he has lived in Auckland about one year , so he can speack English very well . Ecept for Japan and a few other countries , countries do n't have school fees untill university . However , I want to go to abload during / on my summer holidays , to scandinavian , swiden , slovania or England . But I thougt it was a very good experience for me . Manybe I am just waiting for someone to talk to me . the entire floor covered with dirty water , whcih I did not know where it came Unfortunatly the plumber could not come to repair it on that day I could not see all the movies in the series , but this movie was better than I expacted . ( more than usuall ) but if it 's rainning outisde , I just jump in my room with the pedometer . I normaly play Through this job , I understood how difficult to change the lungage channels momentaly between Japanese and English . * Expalining about the world heritage 's culture and history on a microphone . I have a habbit if checking the back of my hair often . I stand with my back to the mirrow and check my hair with a hand mirrow . We departured from Knsai International Airport at midnight . I think I did the worst presentation in the calass . I can see the large farm and hourses every day . Alought I also can see many goats and sheeps being killed , when I saw the view on my way home , I felt better and love the life I have right now . In later years , however , the significance of the language was de - emphasized , as the study of so - called living languages like French and German came to be seen as more relebant . The language continued to have high status for some in the 1970s , even thouf far fewer students ( only one out of every 100 high school students ) took it . Good weather , nice locaton and good people . Please call me on Skyp ! I wanted to eat someting at lunchtime , so I went to the kichin . I made some Macaroni cheese yesterday , so I desided to eat that . I looked for it everywhere in the frige , but my lunch was n't anywhere . Then , my host - father came into the kichin joyfully and began to talk . The tupper had his daughter 's name written on it , so he assumed that his daughter made what was inside . She has a physical caracteristic . The Culcom institue helps people improve their English skills . I joined a study gruop so I have to memorize some kind of story . I wnat to do solve this situation . They are very good freinds with each other , and of course with me ! I thought ithat I could be free from studying English , but I was wrong , toally wrong . the score I got was not waht I expected . but th most important thing now is Chinese New Year lol I 'm not good at listening to rylics , but I can hear it clearly . Befor I go to school Befor I found out about this site , I 'd ask my English teacher for help . When I write , grammer is very difficult . People who smell it are brainwashed , and are not conscious of creating a painting equal to that of Picaso . . . We set off the furefly for stream in summer . Listening to new music ; seeing a movie for the first time ; my first time travelling alone , the first time I joined a club ( I joined an athelete club ) , my first . . . About two months ago in the US , I saw a free traial service at a cosmetic company website . I only started lerning English recently , I 'd like to speak it fluently but it 's more difficult for me now . Some analytics say K - Pop is familiar to American Pop music . Several hours later , at twilight , It became crowdy . I thought it would be intresting ! ! ! ! Some of them wear it an inproper way , for instance in a too short and revealing way like a girl : ( In modren society , There are more and more technologic products created and we enjoy lots of of these . In my opion , one of the most important technologies that helps the students is the computer . They can easily carry hundreds of books in their pockets or backpages and read all the time . Students can also edit the tasks , paint the paintures , record the sounds . . . etc by computers . Besides this , rememebr that not all of the countries are well - developped . The progression of technology makes them left farrer behind in the competition in this world . Toucing scenes made my eyes teary . A man vsited my workplace today . I am going to see a dentise on Monday . I became a thirs year student . He is one of the most infulential consultants in the world . I am gointg to be more curious about everything that happens to me . We worry less and think more intellegently . For example Helen Keller , an outstanding female American writer , could neither see , speak or hear , but she was such a great woman with strong willings who never stop struggling . Her biography `` My Story `` is quite impressive , because it depicts every important footsprint in her life . It 's a constructive psychological strategy to cope with reality and conflics . Therefore , I prepared a jar only for saving quaters . I would like to attend Opera just once because it is one of the misterius things for me . The reason why I am interested in it is because the acters and actresses sing and dance on the stage wearing luxurious dresses and sometimes wear masks . Today , _ I regester on a website of learning a foreign language . Why can the softwafe summarize texts ? But I will go to other countries in South - east Asia ( e . g . Vietnan , Cambodia , Singapore etc . ) I think the goverment spends a lot of money in vain . I read the article that other countries have a systemetic educational . I leke them very much becasue they have their own ideas to spend time . One of my firends went to Myanmar as vlunteer with her circle members . The onther one of my friends is now 23 - year - old though she is a freshman . Then she came back to Japan and now she is a stuent of our university . She have many views to look somethig . Three days ago my portable audio player stopped worng correctly . Many years ago , we colud just bring it back to the shop where we I was blessed with excellent frineds . Thank you for being a frined . First , you will recieve a million yen of virtual money . I 'm goind to introduce some goods later . From the next weekend we are entering a long holiday incruding Sul . so the approcing holiday is longer than January 1st . Airplane ( or Aeroplain ) fee here , I think , I shoud give thanks to my friends , thank you for taking care of me always ! I did not find the interivew too difficult but I had to wait a long time . It is because I have not uss their product before . My life would be prefekt if I could speak and read English . The / Our main dish was shrinps . There are many occasions on which to eat meat , for example , goin for a drink with my co - workers , or being invited to my friend 's home for dinner . A : If you think so , I can come down on the price a litte . ( a bit ) continius is Important my hobiy is running . US , singapole , China . . . I went to the park to palyed badminton with my friend . We had an appointment at 11 . 00 a . m . But I was late getting there because I was chatting with some somepeple on MSN . Yesreday was my birthday . We had international cusine at JICA . They are helping a lot of deveroping contries with their sirious problems . I love the cafe because they have a lot of International cusines and Lasec surgery ( When I got it ) at first , I suffered from tremedous pain for two days . Thankfully , now I can see very cleary . For example , English , Mathmatics for business to get a license . X - ( but I love to study Enlish , so I 'll do my best ! ! We watch so much television that we are subjected to the same commercials we 've seen over and over during the thrity plus hours we spend in front of our beloved ( ? ) television every week . Thank you for reading , and thank you for your cooperation as awalys , I will have hard trainning ! ! ! Langrich canpaign I enjoyed practicing pronounciation . but I am gon na wirte about my daily life or my thoughts and such . . Pleae do n't misunderstand me , I am a completely straight man . But one of my colleagues wanted to go to that kind of place just out of curiosity , although he is also startight man . A coffee affectionado ? In the morning I am so busy becouse I am making lunch boxes for my kids . `` You can readt it at the below site . I playd soccer with children at the park in the Tama Center But this time , of ofcorse , my parents will join the weddig party . It 's a good oppotunity for us to show my pearents our appreciation and take care of them overseas . nanun kenneth john torsiende yimnida . Univercity , homework . . . Gifts , happieness in the air . . . and Taiwan to sightesee for a month in March . The earthquake happend while I was traveling through Europe . I have n't seen any forigners sightseeing in Tokyo since I came back . At the time I could n't understand what `` invisible radiationand and `` going critical `` meant , despite the abundance of information on the TV . I was frightened of the news . I ca n't consentrate while I am at home at least . All paper towels in public restrooms are a waste of resorces , so people should bring their own hankershieves to dry their hands . If American saw me using a hankerchief in a public restroom , they might think that I am strange or that my hands were dirty . Should I not use my hankerchief in the U . It 's not diffcult to reconize all of my colleages and freinds through the phone memory . It 's good in this new year that my friends and colleages contacted via message and leaved their names . Ingland ' . We ca n't tolerate , when sucn things occur . I 'm going to wirte in my Journalin English everyday . Today , I read the lyrics of `` Beaty and the Beast `` on the Internet . It has very beatiful lyrics and a romantic melody . Anyway , the China 's nationtal Day is coming , and we will have a 8 - day holiday all over China . That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I also have several things to do . . . . ( thanks to my job , I can schedual my things easily . ) I have to buy a new pair of shoes - - my Nikie shoes are worn out . . . . I have to prepare to decorate my new appartment . During the holiday , the saler will make a presentation about some products which I want to check out for my interior decoration . . It something should happen suddenly , I need to prepare for it in my schedual . Threre are many interesting events , for example , dannce , beauty contest , eating and muscle convention . I want to be good at using compurter . Unfortunatelly , our teacher 's mid - term test asks so many questions which contains so many details . Because I think I have prepared it well , so I told my teacher that our play is not totally the same as a drama , and he tokd us we can finish it . The other subjects are so - so , I hope that I can get a score which I will be satisified with . Today is a national holiday for election in Philippone . I mean I can select 19 credits from 100 courses before officially registeration . I always wanted to go shopping in Harajuku ; because , there are many fashonable clothes . I bought many clothes ; so , I have little mony now . I trained my body taday . My English is not good , especailly my writing . It was so beatiful . Around one hundred thousand people commit suicide every year around and three handred people commit suicide everyday . But most Japanese people belive `` ' we have the best public safety because Japanese people are smart and cool compared to the people of other countries ! `` Japanese people belive that only Japan has four beautiful seasons for some reason lol But it does n't mean thier countries do n't have four seasons . Their coutries are very big and different from scummy and small Japan . What is better using public transfortation or a rental car ? EBM band Krnangh was very fine , their music is nice , classical EBM with some lyrics about National sotialism and Adolf Hitler . But their charismatic vocaler and other band members were great . I am not improving my Englsih skills . becaouse , I do not have any chance to speak or use English in Japan . Someone , please gime me / give me more chances . . . . an unforgettable moive Because sometimes couples can not be together in real life for some reason , but movies make their dreams come ture . Unfortunately , I 'll probably have to sell my motorcycle in September because I 'm going to study abroad in Victria , Canada . Green revolution have broght about great benefits for humankind as a whole . After He successed in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . But many countries do n't impose it on groceries that people need for thier daily life we alredy have huge debt that is 1 . 5 times of Japan 's GDP . I personaly think the only way to avoid going bankruptcy is to raise consumption tax . It may cause llergic reactions , and carries the possibility of damaging a childs health . In my opinion , I believe that schols so ban the sale of junk food . When I have something I feel better to share it with my friends here because you help me decite how I can manage it . They are affaid If I can do that I will sad . The core concept of this theory is based on reversing the ideas of drawing a pecture . Also I boiled rice and souted mixed vegetables : pieces of carrots and cabbage and siitake ( Japanese kind of mushrooms ) . Additionaly , I have some anxieties about my relationships with other people . However , there is no use complaing now , so I must manage my tasks and cotroll my mental condition well . After all classes finished , we clean up our school and have homeroom class to exchange imformation . I 've just heard Miss Eliot Sumner sing and I was suprised . Lucily , the tescher did n't bleme me , and the class had just started when I got there . If I rent them , I need to return DVDs , whic means I ca n't watch them with subtitles or without subtitles repeatedly . I can sometimes understand their conversation not using any slangs or difficult expresions . I hope this is a good invironment for me where I will have many new friends . thanhk you very much . Untill the last moment the mother kept hugging and protected her I can check what I said by listening to him and must use beatiful words . Please be carefule in eating raw meat ! My roommates and I chose a baskball class this time . I sured have to practice speaking English . I am interested in Ryoma Sakamoto and the Bakumatu . He saw many awful results and got new menories . The most happy ending would have been if he and the woman he had loved were living without any relathion to each other . I know she is very talented and bold enough to use wierd materials for her costumes . We did n't have much time to talk about many things while we were working , so we coul n't get to know each other well tonight . ( almost correct ! ) However , I made a stpid mistake at the bar . I orderd a drink , and there was a long thing in there . I will inform you the date when the magasin will be published . I can read English sentences a littele but , I ca n't write English sentences . This weekend I will go to Shizuoka to give a speach about my research . This is greate for me as I can not speak English well . But of course I am going to plactice writing and speaking : ) I orderd a lunch plate of green salad and sausages . After that we ate at MacDonalds , normaly I do n't like fast food , but it was okay . Howeber , it 's also true that neighbors can annoy us , for example , with their noise . I will prepar for travel . What kind of infomation do you want to know about Japan ? ? What is diffarence bitween a mouse and a rat ? Because I 'm ready to meet my frinds for a feild party . Today I felt something really strange . Three people in different classes , who normally do n't sociate with me , acted strangely friendly . I hopy to have a happy summer vacation and learn new things . I hope I will gain a lots of useful information andmake friends with people in differe parts of the world . I made this nail tip last nite . l have coupons which can be used to get a discout for about $ 5 . After I returened to my office in the evening , I attended the English class . I stayed indoors and read or did cross stiched . The advantage of this trip was that I finished the cross stitch portret of my cat . Tomorrow is the Japanese natinal holiday ! ! I was only the one amongst my circle of friends who did n't knw this site : ' ( In addition , planning ahead has economicaly benefits . Finnaly , by planning when to come back home , I can be well prepared for the next day . I have become accustomed to the cold weather recentry . I checked the yutube and it was really fun . I do n't know wheather I 'm too intellectual or I 'm too ruthless . I 'll cook rice including burdock and chiken . He said in his mail ' In Holland we have an old tradition about St Nicolaas ( Sinterklaas ) . To distribute the gifts , Sinterkaas rides on his horse over the roofs and puts them in the chimneys . If you read this dialy , check this please . I want to make bisiness card and I 'm thinking about my catch phrase . I wore new recrut suit which I bought at AOYAMA . I think it was the cause of my uncomfort . Counld you help me , please ? Chinese medcine has a profound knowledgement . Unfortunately , I have to memerize them all including their shapes , functions and Latin names before mid - exam . Before we build nuclear power staion we should consider about that more carefully . So what do think baout nulcear power stations ? Yesterday I felt happy because I had 4 netive people correct my diary . I wrote the diary again following what they tought me . I find out about me when I write the senten like the diary . I fill happy and enjoy that and waiting for someone correct it before I check it . I feel exsiting and I think today someone will help me correct it . I heard the news about the disaster in Haiti and made a donation to there , but I did n't know exactly what happend at Haiti and how they live now . It did n't take long time to realize that the South Koreans are highly affted by two countries , Japan and the U . It will ( ? ) be hard on a rainy day but now I 'm not goning to worry about all the wrong things anymore . When Iasked `` why me `` , he did n't give me a satisfactory answer but said `` You do n't even give me the chance . `` Yeah , I declined to travel to another city to meet him , in a city I have never been to and for someone I hardly know . I discoveried he likes fruit a lot . He did n't eat only water melon but also peach , glape . He did n't eat baby food , but he could eat fruite . Most people living in Seoul carry their umbrella every tiime they go out . We have had much more rain recently than ususl . Taylor Swift and Miley Cylus are my fevorite singers . `` Many forigners play an active part in Japan . I had planned to cook in the morning as well but in the end notthing happened . English is an internetioned language . The temperatue was - 22c I played soccer at night ( - 22 ) I 'm going crezy Futon is a bedclothe . The location is a local college which tstands on a mountain . I went to a shoppin mall that is near to my aunt 's house . We spend today relaxingly . How do I understand which atricle to use ? Actuary , I was bored yestaday and last week . So , I cound n't write my diary today . I 'm going to prepare some projects , that is , lisenses ( subjects ) ? like language , leadership and so on . Hi ~ I want to inporve my English , please help me , thanks ! ^ ^ I really want to inporve my poor English . . . . . My grammer very poor . . . . I felt a sence of guilt for not picking up becuase I knew who would call at around that time . Could you tell me more about Chrismas ? Merry Chrismas , my dear friend . Nowadays , Chrismas is more and more popular in China . truth , however , I know little about Chrismas . What will you do on Chriamas ? I 'd like to It is obvios that I am easily to be happy . I know that it sometimes seems un - meature , but candies are my favorite , so it obsolutly can make me happy . Sometimes we do n't know what path to take or what choise to make . We live our lives like passing white and black strites , like walking in a rainy day without an umbrella . We have to leave our problems behind and step forward towards happieness . On my way home , I noticed someting fell from the sky . I planed to write down the dires that were corrected by my best best best best best teacher & friends , but I 'm so sleepy now . did my best though , I could not answer all quetions perfectly . Today is Friday I am so happy beacuse I will have a holiday tomorrow . I 'm so tired rensently . Her sleeping styie is interesting because she looks like my father . ( hahaha : D ) Then he moved to Japan , United Kingdam , Sweaden , Germany and finally he grew up in the US most of his life . Amid the growing trend where personal computers have become prevelant , lo and behold , even books have become available on PCs , such as the Kindle that offers us the opportunity to read books on a screen . frowned upon because they are singin and chatting loudly or being drunken at Ohanami You know what they say `` Winners never quit , Quiters never win ! `` I actually have a zinx . We find the use of force not only necessary but morely justified . . . The president made clear that he would not flinch in notusing military power The best breckfast in the world And then , we enjoyed shight - seeing . Nowdays , many hotels offer discounts of up to 50 % . I have started an English dialy . There was notiong special about today , it was just a normal day . but actully , life just means ordinary things that are happening daily . Recentry , I have a backahe too . I want to bacome s freinds with many people . And my mum , she is generouse and linient enough to make me brown bags when it 's needed . She sutisfies my families culinary taste . I wish she would n't eat sweet so many confectionaries . So I 'd like her to have a good marriage because she is my only sibblin . I do n't know if I wrote correctly , but I 'm going to write this meanless entry . The paper was for a weirdy entrance exam . Oullet plaza Actually , I didn ` t reember my birthday at all until just now . My son became a junior high scool student this spring . This afternoon , I saw a film called `` THE LORD OF THE RINGS : THE FOLLOWSHIP OF THE RING `` . On Fridays , there is free English coversation club at the building . Starting on Friday , Hong Kong is on 4 days of national hiliday in a row . So , I 'm in office now because I have to translate Japanese docments into English . there are many spesial words in my business . It takes a long time to comlete them . Green green , there are lot of green avobe the hill . I will go to Shanghai for an assighnment in July . So I will keep writting my journal and mentioning my Twitter . My car did n't move for more than 30 minites ! My goal is to study Englis . I ca n't belive it ! So pleace correct my diary . I 'm at a finace class . But warm days and cold days are repeating themselves in Ngoya . On my way home from my English circle , I adjusted the binyl tunnels of cucumbers and watermelons at 9 pm . . In deed , My coworker said me , `` Since when were you mysophobia ? `` They had 3 rooms decolated with many accessories that were hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . At first , he smiled because the stadio staff played with him . Although I did not care about it , one thing happend ! ! ! 1 . omorrow I will watch a movie . 2 . on cristmas day I will go to Deagu . I have to read some scientific papers until tommorrow . Agemanju is very derisious . Everythig is fine but , as you already know , we have the shutdown problem with the computers . Anyway , I 've decided to watch Transformer III tomorow with my sister . I want to befriend someone who knows English or Frence , that 's the reason why I will write something here . I 'm wearing thiclk clothes like the sweater I have on now . I meet various foriener from all over the world . One of my co - worker is a Philipino and we talk ( or converse ) in English although I am Korean and she is a Philipino . And when I work with foreiner teachers , I feel the cultural difference . It 's sometomes bad but usually I 'm excited to work with people who are really different than I thought they would be ! egg is mediam boiled . Resentry , I have taken a lunch box with me to school . So , I have to get up 30 minutes earlier than usual to prepere my lunch box . This is cheap and delisious . I am exicited to feel their bigfoot upon my arribal . But that changed when I went to univercity and took a major in English Education . I found myself loving English that I realized English is useful in our daily life . Since then , I became very diligent in learning English . I want to make a great progress for my final eaxm . But my Eglish skills are poorer than my classmate . So I want to improve my English this summer vaction ! ! ! I read English passages loudly in the morning , but I 'm not sure whether my pronuncation are right . It was no good having a sore throat and a bad headace last Saturday . My husbund left very early this morning aroud 5am to go to SanDiego on business . Todday I went to see and buy some china at the Villeroy & Boch factory . That factry is fantastic ! I bought four white squear plates . These are good for pasta , sutue , salad , ets , , , goodnaight . Life is like a chokorate box ? I was very afraid at first when I got on the train going to Milalno . A very nice beggining . We went to her home at first and talked about everything that happend to us in these past 3 years . After I listened to her wohl story , I found in her face some tierdness and boredness in her life . I gave her a chokolate box which I bought in Switzerland . There were many different kinds of chokolates in the box . `` Life is like a chokolate box . Everyday , we can eat a different taste of chokolates . `` I also watched this movie before , but I 've alsreay forgotten this phrase . Yes , life may be like a chokolate box . Although we may have eaten a bitter chokolate today , we might eat a sweet chokolate with a lot of flavors tomorrow . So , I think we shouled be careful when we chat online with someone we do n't know . First , almost every Japanese person has aten whale meat . Our ancestors began these events in order to worship thier gods , to show thanks for the harvest , to pray for prosperity , and so on . Secondry , we develop our communication skills by participating in Matsuri . I swim at the gym once a week but output of energy are smaller than imput And what is worse , my office is locted next to Mac ! It 's a book of adventures , magic and suspence . Hallo ! Today I got a package from Japan . This ratio is grown by simplifying the curriculm . I ca n't improve my English enought ! I love to wacth a movie and I study English from them . I could say that it is not a good way to study English . I consider that it is difficult to leran English because I ca n't focus on learning English . It 's easy to focus on / think about the actor or actress . I beleaved her at that time . Japanes summers are very hot . This is because songs are important thema of this series . Ichiro Itano , who is a maniacal animatier , drowed beautiful and acrobatic scenes and made this series famous . I saw the news that there was a tornaddo in Gumma prefecture . The seane was very terrible . She said she really enjoied it . . I brought him some cabbege , so he stuck his head out of his stall . . on coloful greeting cards . I will go to Tokyo on September 12th to go to Tokyo Dizneyland with my best friend . Tommorw , I will meet my friend in Shinjyuku . It is the sound of the practice for a traditional festival called DANJIRI somewhere around my neighbor . Yesterday , I went to a Japanese - style bar agin with my friend who has came back to Japan from the UK . I know that I must leare English well , because I actually like it actually . So we held a parewell party in an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the famouse foods of Japan . ) This morning I wached a news program on TV . In the program it was said that Rakuten , which is Jananese online shopping company , will change its official language from Japanese to English . Japanese market is gradually shrinking because of resession . I 'm looking forwaed to seeing Part2 . She is the most famouse Romanian in Japan . She is so famouse in Japan . I asked him , `` who is the most famouse Japanese in England ? `` She was the wife of John Lennon , who was a Beatles menber . She is famouse in Japan , too . The English man told me another famouse Japanese is Honda , a football player . because his country had been dominated , his eglish skill is very good . he is so fluent in koean as well as english and his mother language . I had wanted to have Tom yam cun ( It is spicy and sour soup , and the ingredients are shurimp , coconut , and so on ) Tommorrow is Aplil and the entrance ceremony of my school ! ! ! So it is an artificial city defensed by magic . I still worry aobut my English skills . I visited my mother and gave her carnations in adovance . I 've been learning only words , grammer and reading and have n't really expressed anything in English when I learned English for the first time in my life . I coulnd n't speak English well but we spent an enjoyable time chatting . The most important thing to remember is that I did n't spent the time being with my familly , although I 'm am only daughter . Last Saturday , a very very big desdisaster occured in Tohoku county , Japan . While watching TV , I was so sad , and I thought , `` What should I do for the peole of Tohoku , `` but I had no ideas for a couple of days . Then we conqer the barrier , everything had a basic concept , everyone helped each other and worked harder to do whatever we should do , to be whatever we should be . Chrismas market and Skerting I went to the Chrismas market and skarting . Eventually , I went to the station , met themwent to the Chrismas market and skarting . enjyoed it a little . Bcause she is afraid of going to dental Clinic . I wakep up early in the morning . I got injuctions and took medicine ( ) but this cold seems to stay Some people might imagine that those kind of thigs should be done by people who have time and enough money to help people suffering from disease or poverty . Sometimes , I hav n't certain ideas to write on Lang - 8 . thak you for reading and ( for ) helping ! I studied prnounciation with my teacher on the computer this morning . But today I enjoied it because I did the homework . It 's extremely hard and the teacher is an old man so he ca n't talk proparly . It makes everybady bored and sleepy . . . . People think cows are jantle , I wanted to writting a letter . Because I 'm not good at writting . I like to travellng especially to foreign countries . We have a big problum now . I went to a local rahmen shop called `` Yaozen `` today . I am writting while eating a grape now . On the other hand , he always looks older than he actually is . He looks like a thirty or fourty - year - old . Ashley Tistale I bought : lemon water , honey of rosemary mede in Spain , rosemary , blueberry , cocoa without sugar and milk , and graham bread . Tokyo is very safty , ( ? ) very confotable . I want my own homepage but it is hard for me to creat one so I 'm looking for some website which can creat a homepage easily but I ca n't find a good one . to express a lot of relations and suggestions ; `` Expressing It in Your Own Words ; the EIYOU activety It is paraphlase and has more meaning . There are many methods of transportations Japan . MY MAJER My mager is acoustic design . For example , history of western music , musicology , frequency of sound , intencity of sound , linguistics , physiology of hearing , and so on . Now , I think love and a kind heart and barance of time and money are important . Wirting in English is little bit of a challenge for me . I have started to study grammer . ( Finally ) I was reading the grammer text book and there was a sentence that I could n't understand well . I would be so happy if you guys could explain this sentence `` gramatically `` ! ! : p I think language reflects the thoughts of the people who are usisng it . There are many typhoons in Japan aroud this season . He is Japanese but also can speak English and POrutuguese perfectly and I wonderd why , so I asked him . He said ' I was raised in Japan untill my 14 yeras old and then moved to Portugal due to my parents 's work and now I 've been living in England for almost 3 years . I was embarrased . I have already made reservations for the hotel , restaulant and show . However I did n't have enoguht chances to make new friends . The shop staff repaird the flat tire in 5 minutes and I paid 1 . 000 yen . It was an unlukey day . If next semester my grade has n't changed , I ca n't achieve my goal and get a shcoalarship . In August 2010 , I left Japan to go to South Korea to study economics , Korean culuture and language . Sometimes Koreans thought I was kind of weired when my friends and I walked around in the city . Then he / she would always gaize at me as if he / she said to me , `` such a stupid ! ! `` lol This is really helpful for foreiners . He is a very famous person in Japanese Histry . He is one of the most important people who have affected Japanese histry . And this is why I counld not leave you some comments after I 'd read it . One day I had an appiontment with my friend and my friend 's frined to watch the movie at the Slam Palagon . This place is really nice and betiful . Whaile we waitedfor the movie we ate food . My friend 's friend is a thai person like me but when we talk . so I think I had an experint withit before so now I smile about it to my self . It was n't regulary , though . Usually it was short and I did n't think too deeply about things . I just wrote down what happend to me that day , things like `` I think I like him , `` or `` my Korean grade is 100 ! `` I thouth so becouse younger brother is a countable noun . Teaching plactice I went to teaching plactice at my high school . The bioHazard serise is a favorite of mine . My kids also enjoy kindergaten . She dressed up in Japanese tarditional clothes and did her hair . Sometimes dictonary make me crazy ! Mainly because the dictonary give me example stences that are too formal and that nobody uses anymore . Altough there were nuisances , Jack and Rose got through the crisis . Also this work was mede in 1997 in the US . / / America spans from Canada to Argentine . Maybe I will be a tour guide , but I 'm not sure . Maybe I will just ues it for my own travel because I could get free access to some scenic areas with it . I have a double major in event and bussiness administration . I dreamed and strugle for many days and nights . There are 10 days until my unversity entrnes exam . A friend 's nutural behavior These children are ofen spoilt , not in terms of love but their behavour . . . It 's kind of a pitty that we are losing a friend here . Hello eveyone . I do n't know much English or cultures of other cuntry yet . One of my American friends invited me to play sand vollayball today . Therefore , you can play sand volleyball while drinking alchol or eating somthing . becouse , I thought that today is Thursday . A good way to learning another langues is . . . . . . . They recommand a good way for me to learn English , These days I feel I am losting my English skill . After hearing that she had died of ( or from ) a desease , he attended her funeral with his wife and realized that she 'd never married The story is that a long long time ago , an old Japanese man went to a mountain , and then he found a baby girl inside some banboo . We ordered fried noodle and fried poak and vegitables . ' I have to remind myself that some birds are n't meant to be caged . thire feathers are just too bright . And when they fly away , the part of you that knows it was a sin to lock them up does rejoice . ' I enjoy it when I read it . These fruit are very sweety and tasty . I hope so : ) To improve my English , I 'll keep on writing a new ently from now on . Pleae chear me up : ) Cross Fire is a game producted by the Tencent internet company . so my hostmother got the message insted . my work schedule was chenged by my boss . I decorated the living room with flowers , streemers and balloons . I cooked a special lunch for them yesterday . It was soup , tuna - salad , and the main dish was rolled cabbige . This season in Japan , the spring cabbige crop was large . We had to sing many old songs there , but it was a fun and nice experince for me . So we write only Japanese sentenses although we study English . My tase in raising pets is very common . There are meny international students at my university . Meanwhile , Two ladies of an IT trainning institution , which anncouced it cooperated with IBM , stopped me . Summer vacation will end in this mounth . I was lazy this summer about sutuding English . From today , I 'll bigin to study English for TOIEC ! But we have always lived in diffrent countries and had time togather for less 10 days every year . After he got a new job , I felt that his personality was diffrent from what he used to be five years ago . When my friend committed suiside in our accomodation and I needed his help , he expressed his anger to me . But he talked with me for about 10 min , when he waited for a dish in a restrant or only in his spare time . His house maid said his mother `` did not wish him to get married `` , because she needed his saraly for his whole family . When I was in his room for our all - too - brief time together , I was dissapointed with his behaviors ; watching TV , checking his phone , not talking . I wanted to spend my time with my BF and have dinner togather . particulaly , after his anger hurt me very much . I had a BF , but I could not talk with him , call him , or share any ideas . Nor did I have oppotunity to go out often , and of course his anger issue . Is not easy to controll myself and relax . Recentry , My colleage gave us it because he bought a new TV . I thank him for his kindess . So far I have alredy made a lot of mistakes that anyone migh have done before . In my case , I will make a lot of mistakes even though I have alredy known its a mistake . cpu : pentium cereron The PC will arrive next thurthday . I 'm looking forward to receave it ! ! Btw , I am very tired now , after celerbrating your birthday and going shopping . Yesterday I did n't go to school and I stayed home because I felt painfull in my nose . Adress or Mail Adress . He is very famouse all over the world . The story is a little difficult , but it has many beautifulsight scenes ! ! So , today I fell asleep in schol : ) ( sorry , I don ` t know how to say that I ` m sllep and not sleeping . . . I ` m so happy , becouse I have always wanted to read this book in its original language ! : ) Now my clock says 20 : 17 p . m . , and I should do my homework , go to the bathroom and then go to bed , but I often have a insomnia , because I ` m an `` owl `` in my bioryhtm , and wake up early - so hard for me : ) What 's more , I have been desperated to go there since I was a child . writting an essay is hard for me . . . I was dissapointed with myself . I belong to an astromy club . I ate Chinese vegestables . Chainese vegestables grow in the land and water . The flower of vegestables is a white colour and in the middle of the flower it is a violet . I know if you eat more chainese vegestables they can help improve your vision . First off , I will buy an English text book , because I want to speak fuluent English . It is my fault that I ca n't speak English ver well . Watashi ha kirei wo kanjiru koto wa arimasen . ( kireisa or utsukushisa ) I drerm of - - - - I am curious is it popular in oher countries . . My teacher told me not to fear using incorrect English , but I absolutly do n't want to make mistakes like this ! I study Programming , Machin Learning and Image Processing . We have eight - day holiday , but I do not kown what to do . I went to a japanese food store and I eat shushi and it was good but I cant have to much of if but over all it was good and the gohan was awsome to but I wish they had onigeri do anyone knows how to make one cuz iv been dieing for one of thoses forever . That was limited to the entertaintment sector , but it presented the Korean way of thinking . So many people said , `` That yankie go home `` and `` He is a betrayer . `` They then quesioned why he should quit the team and leave Korea , just because of the foolish complaints from his young and troubled days . Koreans hate themselves but cound n't forgive someone who hated their country in the past . However , this situation symboled the distorted affection and shallow nature called ' Naebi - geonsung ' , boil fast and get cold fast as well . I was so confused and dissapointed at my country not as a fan of his , but as a member of Korean society . This could be the case of understaing for all the immigrants around the world , who were raised in their countries without any knowledge or understaing of their roots and motherland culture . Here 's some support messgaes from all over the world . . . . . o yeaah , , now , I 'm a 2nd semester undergraduated in a university in Indonesia . I am hurngry . Even though I 'm not a guiterist , I hope the company recovers well and will be making magnificent instruments from now on . So I can only use symple greetings , likes `` Bonsoir ! `` , `` Au revoir ! `` . First , I will intriduce myself . But the whole day has paased and everything is in vain . I prefer low sugar over high sugar and I prefer fruite cakes over vesitable cakes . To take the machine from our laboratory to their truch which has a crane was very difficult . It made me a little creay today , because I keep on thinking about the dream up to now . Yeaterday , I went to see one of my classmates from college , and we had lunch together and also we had a nice talk . Every day I want to learn something new , and I also want to make my day become more meaningful , however when I get to the office , another thought came to my mind , that is how to spend this day , is there anyboday that will make fun of me today ? I feel sad about my jod . Because my heart is afraid to be broked again and again . In the paat , I was not a person like this , I have a lot friends who are always with me , but now I stay in Shanghai all by myself . Give me of your news regulary and also as news of your mom , your dad , and your brothers and sisters . We are happy to be able to write you regulary , we love you very much . First off , my friends did n't want to watch it but I reccomend it to them because this movie is made by disney . I do n't know if it 's because I have n't been following the instruccions as well as I should have . I got back to my home form part - time job at around 7 in the moring , and fell asleep till 3 p . m . The Japanese auther I like is Murakami Haruki , Banana Yoshimoto , Higashino Keigo and so on . I like watchig a sports game , especially when the local baseball team which I supports plays . I always write incorrect presositions . So I decided that I need to pracitice prepositions ! I wrote the last messege at the end of the page . I went to a job searching seminer . Today 's seminer is held by a consulting company . The seminer was helpful because I was able to talk with some of the staff members . I bought two books written by the pdesident of that company and read them at MacDonald . Im taught my students by solo paformance . becouse it leaked . I am renting a house now so I called the onner . I can wash my fase comfortably becouse it 's new ! I think that I will start Lang - 8 agein , in order to lerne English . I think I shold study English harder . I want to go to many placis The mother sometimes treats her children like her posessions . I still have a metting for this subject tomorrow . I 'm looking forword to having a good time . On Wednesday , the first day of spring vacation , I went volleyball playing and watched a free moive with the people in my lab . This book is for Engish learners and mentions Lang - 8 ! Maybe she got infulenza . AfterI gave her tamiflu ( which is a medicine for infulenza ) last night , she had been getting better . I miss my mother very much , especily on these days . I had an appointment with my boyfriend to play basketball this morning but when I came to his house he was still sleepping n _ n Now it is suny and hot . We do n't want to play at this time but I really want to play . What should I do to stop the sun and heat ? I will bring an umbrella with me ^ ^ ; In one of my subjucts , my product design class , I need to think of 20 ideas and draw them out ! I will do everything , all of my homework , becasue I want to be a designer . This is my first daiary . I went to down town Hiroshima and bought webcome at the DeoDeo electronic store . I was surprized by the price of it . But it did not happened in my erea . We found out about it through our cellphon TVs ( oneseg ) The earghquake have been continuous . Gru finnaly found that he had a right to be happy and find the meaning of family . finnaly he found what his life was for . A seminar I paricipated and was surprised by yesterday Yesterday I atteded a seminar in Kangnam , Seoul . I was very impressed and shocked becaused I have never been to one before . Most of them wanted to improve their comunication skills because they seemed to believe that those skills would help them earn more money . A annoncer led this seminar . He gave several speakers good tips and imediate feedback . Give your speach impression , and chage . We went to the hospital to have a ronsen for my brother 's metacharpal . It is the main qualification in order to stady abroad . I need higher poits , however , I do n't have it . Some points I had already known but the others I had n't known lol This video emphasizes the strang points of Japan . The first poit was `` Character of Japanese `` . This video also reffered to Japase school girls . Some machines give false eyelashes wih the stiker . Bergium , Austlia and Chech pablic ! plsase help me . I want to create a miracle ! `` Clayon Shin - chan `` Today I went to crammg ( cram ) school . Today there was a test at crammg ( cram ) school . I love crammg ( cram ) school . But , sometimes It 's important not to do anythig . I usually talk with friends about studing abroad , and one of my friends told me that the best way to promote friendship with local students is by doing sports with them . I 'm a student at Liao Ning University in Shen ShenYang , China . All the actyvities were great , especially The Hallywood Ride ( This is a roller coaster ) and Spider - Man The Ride . Acutually I do n't go out either . But the Twilight series is not popurer in Japan , because of poor PR I think . Green tea includes more cafeine than others . I 'm really looking forward to wathing it . Today I went to the starbacks , which is near my house . I have been wondering why Japanese Starbackses is expensivethan in the US . And then I went to the starbacks . As a result , Japanese starbacks is more expensive than American Starbucks . I am working in a Group Home , where old people who suffer from dimentia ( deseases ) live , and we are taking care of them . I 'm a beginer My classmates and I did some field reseach for geology , goog night It seems like I could be a help , and if it is I want to give stars to people who helped me , but where is the bottun ? My neme is Tomoko . I got some survenire . I will go to ( an ) `` all night Kalaoke `` with my friends . I just want to inprove my English . russian vs japanise ) ) ) ) ) why that people who are learning or try to learn russian are also learning japanise . . . . and do u think that learnng Russian is more difficult than learning English or . . . japanise ? ? ) ) ) ) ) What is your `` position `` in the family - first born , middle childeren ? she is mabye / about 76 years old . Are friends mor important than family ? Till then / up until that time I naver could understand why people doze off in class . Yes , when I was in high school , me and my freind participlate in a competition , I really practiced hard but I could n't / did n't win the prize . but my friend won one hundrad thousand won . It 's a secreat but in my major class , a proffessor who teaches `` study of food material `` is the most boring teacher . But I ca n't do that in sutch weather . . . I got my first freand yesterday . So I tried to give them correcthon twice . It took 1 houre to give 1 coreecthon . So I made a mistake while making the corrcthon . It basically focuses on international business and globla governance studies with full - English lessons . Please teach me when I shold use it . It makes me crzay . I ca n't believe any imformation from the goverment . Basically , I use a package tour when I take a trip somewhere , wherenever a forein country or a domestic place , because it 's inexpensive . I 'm not good at English lisening comprehension because most English speakers use high frequency band ( ? ) . Sorry it is just my comlaints , recently I have a lot of stress from my situation . My cheeky English tutor always corrects my sentense . He puts his corrections next to them . I told him that he should use block form when he corrects my sentense . She saied I ca n't go becuase of math test tomorrow . I saied it 's ok , take your time fast . Anyway I look farward to seeing my all friends tonight . We 've got to say that the approprite styles and colors are a critical factor as well . Altough people do sometimes behave differently when they wear different clothes , I do not believe that clothes can essentially make people different . Therefore , japanese have to learn mucn from them . I went to school to try a lession . tommow is Friday . There is Chinese official approve this manth . They prefer to live in a dormitory because they know that in dormitories they will : have more fun with coleagues , meet new people , have new experiances , and face new challenges . Those students say that living in a dormitory allows one meet new people , and have more fun as one can stay up with the new coleagues playing music or games without caring about little siblings or sleeping parents . In addition , living in a dormitory forces the student to have new experiances in life , and face a lot of different situations in which s / he has to deal with tham wihout help from parents . Moreover , one student said when one lives in a place far from his parents , old friends , family relations , and heighbourhood , s / he begins to face new challenges . when we arrived at Nikko station , we went to the hotel reseption . We never can find hotels easily - - then we went backt to 1 staion ^ ^ We found a hotel ^ ^ u know Nikko takes 3 hour and half to Tokyo . . A alot of foreigners ? come here ^ ^ I think that I 'll study utill 10 : 00 p . m . in my office . I stady English every day . Becuase I want to be able to speak and understand English . So I stady hard ! This museum , which is constructed underground , is desighned by Tadao Ando . Well , I can say that some subjects are getting better exept Geography unfortunately . I attend English cources with great pleasure . In my opinion , it is very important , ecpecially nowadays . I have always been very sensitive to this and other situations which hugely disappoin me . I belive that my English is getting beter day by day . B : Right now I am going to vacumm the house ! Although , my grandma and grandfa are already dead , so actually , the people who are living in my grandfa 's house are my uncle and his family . I love grandfa 's home ! I like J - pop , J - rock and Japan drama , so I learned Japanese quickely & easily . I understand there is a big controvery about hunting whales and Japan is criticized on this matter , but fighting a whale with a small weapon is certainly an adventure . Because Tohoku area most catastrophic damegese from the quake and the tsunami and crippled nucler power plant on March 11 . Try eating the foood from Tohoku ! Meanwhile , we know some pepole are anxious of Japanese food . Kyusyu Trip I had a get - together with RVT yeasterday . Anyway , I drank so much yesterday althogh I ca n't drink too much . I wach `` Friends `` DVDs every night . `` At frist , I did n't believe it because I thought it was a joke , and I lacked of confidence when I was a senior student . I talked on Skyp with my tutor . I woked Today . Can I tallking about weather ? I was sanny day . An iopd can put music in your pocket , so you can take music to wherever you want to go . She came to Japan and appered on TV I listen to her song `` you blong with me `` . We want to guide Engish speaking foreigners around Nikko with a vorunteer because we would like to study English so that we can talk with them . SEO is the abbreviation of Serch Engine Oprimization . In summary , one site up to the nearest top on the Serch Engine . Thak you for reading my diary today . He taught us how to chooose our own life and be responsible for it . Time gose by so fast . Finaly , I 'm about to there . I am easily adict ( absorbed by ) by any kind of work . In many high schools in Japan , gramamr teaching is emphasized very much . But after I entered a university , I realized taht I ca n't speak English as well as I want to . Please fix my writing , grammer and spelling . I want to make foreign friends . Yesterday , Mie particepated in first - aid training for the Red Cross . Many small restrants were open and we introduced our lab work . I went to the area where I can drink free Sake ( Japanese alkohol ) . It 's been a while since I drank alkohol . I do n't think I am so weak at drinking alkohol , but my face gets flushed after just one glass of beer . Sake is about 15 % alkohol . Of cource my face got so red . . . Most of the people at the festival were not drinking during daytime , and I felt a little embarrased . According to animal expreiment , if it is eaten , it causes kindey calculcus and can eventually cause carcinoma . Usually , we do n't buy `` regular toys `` such as rangers figuers or items of a certain ranger , which cost around 5000 yen , because we know he 'll get tired of playing with them sooner or later . Three stright days off On Saturaday , I will change the layout of my room . I have no confidence in my English skils ; I want to enjoy English , not only for learning the languege , On 11th Mar , we had the terrible earthquack . My house and office are in eastern Japan , but it 's not close to the sea , so we didn n't have any Tsunami impact . I will miss those beautifule colors of Tanzania . I 'm from Hyogokenn , and often went to Osalka . Nothing happened , no trouble is browing . . . well , this is my first entry and I hope you 'll enjoy it ( or at least correct its mitakes ) Next year I 'd like to continue practicing my English and to take an english international exame , like toefl or first certificate . I 'm looking for a nw career . I think I 'm keen on economics , but at the moment I ca n't picture my self working at any job . I 'd like to travel abroad and in my country in the future . Argentina is beautiful and I recomend you to come , but first I must get a part time job . Coul you tell me what kind of job is the best to start working on , considerating that I will study and practice sports at the same time ? I disagree it , because I think people will not be motivation for thire working . I was an asistant there . My deram is to be a scientist on metal of atmic energy . I want to work with foeriner , so I want to go overseas soon . Thtat will make me evenmore stressed . In our lives , about 100 yers , we have to choose only one person with whom to have sex but sometimes people try to choose two people at the same time . First , a couple gets divorsed after 10 years of marriage . I 'm trying to write a journal about an article from a magazine for English leaners , but I do n't have enough time to post it . TOEIC Test . . . TOMMORROW ! ! ! TOEIC test is coming tommorrow . I will get a perfect score on it tommorrow and it will be my last time to take it ! ! I can enjoy dating her at the amusement park , concert hall , and movie theatre / theather etc . Hi = ) I 'm 15 years old , I 'm studdying at school . Its situated near the Caucasus mountains , in a beautifull green valley . Welcome to our hospitable land of enchatment : ) I like dancing and photoshop . People want a reason to decide , when they choose one product amonga lot of other products . `` Do u think u could go a little `` slowlier `` . in that sentence , why ca n't I use `` more slowly `` instead of `` slowlier `` ? When I was young , I lived in a small ge villege . So , I could n't watch movies in a theater untill I was 16 years old . I 've just resistered for lang - 8 . I am a Japanese naitive speaker . I have n't decided when I will take my summer vacation , but I 'm thinkng of going on a trip to Taiwan . Today I 'm a bit depressed , because in recent days I have sent lots of E - mails to lots of design companys in the hope that during the upcoming summer vacation there will be a internship position for me . But I have n't recieved any satisfactory replys so far . What I am worring about is that if I ca n't find an internship position this summer in Shanghai , then I have to go back home and stay there the entire vacation . After I had done trancery I took pictures of it . Hakubutsukan wa totemo sugokatta desu ; D I had to put all my heart into reading , so that I could konw what my friends said in their softblog . `` tommorow is another day `` Hello everbody ! I think it 's a very good idea ( I 'm talkin about the community ) , and of course , any help you can need if you are learning spanish , you can ask me . bussiness ( on Sundays ) is banned by the law . It 's one of the biggist culture - shocks for me . I was so surprised that kind kind people on this site Lang - 8 corrected my English immediatry after I wrote down my first entry . She is a very possitive person and she is always on my side . There you can find a range of meanings for the word that you want to learn . Also , there are many samples of sentences which can help you to understand in wich situations it would be better to use that word . After that , I 'm going to study English in ECC schooi . farst time ! ! ! We are enjoying it and undersrand `` Japanese love festival ! `` maybe I wo n't be engaged in the design industry in the futrue . I was only for a short time in the city to buy vegetables and choclate ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . You cook galic and oil on the stove in a pan , then put the chili paste in it . It was pretty spicy , so you need rice and cabbege . I often go to the restauraant because the prices are reasonable and the food is delicious . I like humberger or any American food , but I sometimes feel like eating Asian food so I often go to the restaurant and the Korean Restaurant near the University I am going to . The event was canseled halfway . . Equally , I wanna cherish Japanese tradision . But there are tradision which have to be changed . My favarite movie is `` step brother `` with him in it . This stoies is that Will Ferrell acted as childish and he still does n't get a job even though he 's about 40 years old . I 'm looking forwad to this movie DVD on sale . And I want to make many forign frends . The holidays is called Golen Week in Japan . I started my serious English lerning , so I search for a method to the best & quick type of learning English . . . My tougue still hurts . . . . . Also I wish to emprove my English , especially in reading literature , because this is hard for me . All the scenes have meening . Since a boy transfered to our class , my friends ' things are stoled . But , how can I acept what he does ? I want everyone to check my grammer : D And I look forward to drinking with the teachers becaouse I promised them to drink with them someday . By the way , not with the children , difinitely ! Heloo ! I 'm a cooffee shop waiter . so I just smile smlie smlie . . . ( haha ) Now , my favourite things are cups of coffe and coloured markers . They are also asking citiznes and enterprises to save electricity . Recentry , I run every morning . I returened to Japan this morning . However , I want to write dialy on lanf - 8 as much as I can ! At first I got very neverous about driving a car , but after practicing and practicing , I felt that driving is not as difficult as I thought , and I get more confident that I will pass the exam . Recentry , I have n't been able to get up on time . Folliowing the situation , there was also a lot of garbage . I will abolutely suceed in my life . . . Because vegitables are cheaper there than at the supermarket . I can conect to Lang - 8 easier now , than this morning . But / However , they had a lot of motivation to learn about foreigh coutries even though they could n't speak English . But this is good that I was able to run after a source of jQuery slowly and carefully . Days of the week : Monday , thusday , wendsday , thirsday , Friday , Saturday , Sunday . they lable the phonetic symbols beside the chinese characters . all chinese students , once they start school , begin to leanr pinyin first for 3 months or even more Maybe , the advertising company aims to change telecom from docomo and au to SoftBank . In Japan , many family use same telecom company in order to reduce the cost . Excuse my long abscence ! = ) I did n't plan be offline for so long . However , all my problems are solved and now I ` have another litle problem - I can ` t imagine what to tell you . . . Every day pesses as usual and there is no spesial events that I can write to you about . Unimaginablely ! However , in 30 minutes , I must go to class . The most interesting thing about this course is my teacher always presents something about foreign countries like America , Frence . . etc Sometimes , a person 's feelings may be influenced by the weatherin . So I tell myself to keep this mentality to confront everything , whatever success or failureand , I will gain more in the end . I realize that I would cherich those who are optimistic and confident , and who enjoy doing something new , worry less about failure . They see in every activity the process of self - discovery and self - fullfillment that can not be measured by an exam . Lovely sentences . Today 's topix is about my son . My only concern is that his parents wo n't allow us to get marrige . If there are any mistakes or suggetions , please let me know . Actually , it 's ok if nobody helps me ! ! I 'm still studying English , and I 'd like to improve my knowledge with some tecnics or activities , that 's why I would like if some of you could share with me any experince that have helped to improve your English . If there were only one language in the world , its culture , which includes people 's thinking habits , customs , and religion , would become more and more homogenious . I tried to write about SUMMER SONIC the other day , but I delited it . I will try to write that again soon , so please waite . Well , the project can fit into the category of Design Improvement ; the main point of the project is to invent something new or improve someting that already exists . I 'm studying engkish in Korea . By the way , resently I have been very busy ; I have a lot of assignments and I 've been studying for tests at university . I started to feel dispressd and annoyed about my studies . It was very much exciting to interact with people from other coutries . I should have beem much more modest . . . I wonderd how she 's thinking now in the current status . First , I missed my bus because I slpet in . This was an unforgetable wonderful journey . This mornig is the most chilly when I came here ! I was surpriesed because I had always thought that the seasons here are warm . because they have a lot of assignments and have to reviw many study materials . Are you influenced by economic crisis ? And what infuence has been brought to your country ? Yestarday , there were such big hurricanes in Japan , and a lot of poor public transportation services such as the trains and buses . because I ` m very interested in forigen cuntry . . and I wnat to make friends . . and I wnat to talk to new friends . . I wnat to speak freely to new friends . . aekwondo is my favorite sport . . ( I have a sa dan license in / for aekwondo ) I have to memorize my line because there will be a play on October 24th , at my shcool . Anayway , it 's about time ( for me ) to go to bed . . It does n't make any sence . . . : ( Even if it is a small thing , I think a positive mind is importnat . And My strong point is Kiness . So I alwyas think about how I can be active . Please fix my wrting . It 's no exaggeration to say that Japanese English leaners have studied English for many years to obtain high marks on this test . Even if we study English hard for two hours alsmost everyday , it will take us more than 1000 days . But after a few days , I made some Enghlish speaking friends whose Chinese was quite good . ( was is right ) They always write some sentences with complecated logic . I need some inspiration when the sentenses or words deserve a better translation . I was afraid that the autor would be confused when there were so many editions , too . We had to guess what the autor meant and then made them into a sentence . With the scar , I made less and less corretions . I found that I have forgotten many beautiful words after studying in a university because we ca n't use them in a sceince article . but what the hell is worng with me ? I hopefull it will work for me ! When I was chatting with my Amedrican friend , I only said `` I see `` and my friend said that it was a `` conversation killer ! . `` How rideculous , I ca n't belived it ! So , it is defficult for me to use English . I ve been in L . so I counld understand what he said . I counld n't respond to his question ! My job is to treat guests by showing coureteous service and make them pleasant and happy . From now on , I have to prepair myself for the upcoming examinations . How I wish that someone could repalce me . During the winter , I had a good apptite and I ate delicious foods . I will be glad to make friends here . Please help me with my English writting . Cybercrime is a crime which involves stealing intellectural property from a computer in a work space . rainging on Sunday The weather is so changable here . . . But I did it becacuse I believed him . I need to imform evrybody that I 'm all right . Although we just said and done something stupid , I still really enjoied it . I am preparing for the English songs competition and the following is what I wtote for the contest . Welcome to the English songs competition held by Shaking English and suported Last but not least , boys and girls , I think you deserve a big round of applause as well , for being such a good audienceGood . Thank you very much ! I have been having it sice I was 20 year - old . The youth do n't understang how inportant to choose a job in a careful way ! ! I taked about a Manga Cafe yesterday , I 'll continue to write about it . I got marriaged fourteen years ago , but I do n't live wirth my family . It 's about 60 miles from Fukuoka City to my workplace , so I ca n't commute from my condminium . I come back to my condominium from my workplece only once a month . However , giving your children a good educetion is important too . I ate many vegitables . I bought many vegitables at a 30 % discount at a nearby supermarket . At first they sent me a package which included one guide book for the course , two technique books for paintings , one skechbook and five envelopes . Until now , I have drawn a sweet potato , a green pepper , a carot , a tomato , an egg plant , a mashroom and a lemon . My favorite hobbies are shiopping and reading books . However , I have a broblem . Besides , think more befor what I ` ve done , It was really a wonderful soccor game which could represent the top - level in Asia . Through this game , I thought that Asia 's soccor had made big progress in the last five years . What a pity that Chinese soccor could n't develop as much as Korea and Japan . It was really a wonderful game however the refree 's calls were disputful . The volunteer work is basicaly something like this : When tourists ask how to get to their destinations , we show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked about a lot of things , such as work , marrige , siblings , friends , etc . It takes about 5 mitutes by train from my station . I want to write something about foreign country 's fastivals this week , but I do n't know much about them . For exsample getting lost , not having strict manners in trains , missing an associate and communicating with the Japanese . But contrary to what this video shows / says / implies , in most public spaces in Japan , scuh as stations , you can get information in English . I am looking forad to meeting them . I went to yoyogi park for Hanami last satruday . At first , I doubted that she had a dislocation of the hip but as I contined checking her , I started to think that her hip joint was OK and I started to treat her . Under normal circumstances it 's me who should be putting some pocket money here but unfortunately I have no mony at all at the moment . If hard disk is encrypted , it will be diffcult to salvage your data from the hard Northeastern Asia consists of China , Japan , and Korea ( including Norht Korea and South Korea ) . I think the four countries shuold work together and make a good relationship with each other , remove prejudice and misunderstanding . Thanks Door for ur ( your ) recommondation . I am studing commerce in Melb . Although I have some friends who have been there for 7 - 8 years from their high school and who knows a lot abt the city . On my vecation , I plan to spend my vecation in LA . The next day , I went to Universal Stedio , which is in the hoolywood area . The day after , I went to Vince Betch , which is on the west coast of LA . I had an enjoybal time in LA . Some of them who have n't gotten serious damage this time say that the buildings are paid for by national taxes which all the citizens paid , so the authorities do n't need to build ( the ) accomodations if [ 6 ] the refugees do n't want to live there ( anyway ) . Questions in my wookbook Doubting / Questionning myself . . I hope to find a pefect one . Deserts cover most of the Arabic lands , so the animals in it are very spicial . Camels are very expinsive . I remeberd when I saw a black camel . Its value was 15 million Saudi Riyal ( 1 dollar equal 3 . 75 riyal ) . Camel riding is a vey enjoyable adenture ! ! Allah taght about Camels in the Qura ' an : To read more about Araboc Camels : I splept with the electric fan turned on and yesterday the weather was bad so I should n't have turned the electric fan on , but I took hot bath and I was hot . In Taiwan , most parents want thier children to attend high school . Many bosses think that a bachelor 's degree is not important , they look at character , professional skills , the ability to handle stress , teamwork , ect . In adition , why should these students follow their parents ' oder ? I wish all students could do what we wnat and be successful . I am a salior , and I had to go on a trip today . I drave the ship out to sea . now I 'm precticing road rules . . . Maybe a lot of peaple will be lacking sleep tomorrow . Of course , I never donete blood . : ) Becouse I 'll have to take an exam , but I do n't know when ( , ) yet . These American novels remind me that poeple must always keep clear mind and be kind . All the professors have gone to a conference so I have a bresk . So , I visited two travel agancies . at a bus stop I got off to transfar in minus 20 degrees . I 'll never forget the experienss . Actually this is my secound winter in Canada . I want to listen my favorite music all day and do anytihig I want , not just sit in an office like a doll . The grass will cover my sweet soid . 3 , How dou you like me ? How do you like him ? A sharp decrease in the number of chilldren and the aging population as a result of longer life expectancy in recent years have created many problems . I rode with it and started to peddal . . . . Nawadays , I also have to do it in my college with my friends . So now I am going to show you . hei , I had so much fun . We talked about a lot of things but I could n't catch what my friends were saying sometimes because I did n't understand , so I just smaile and laughed at myself . After that she went to do yoka while I went home still very full . Although you would want to meet your family , anybody wo n't tolerate your action , because your office is always on labor shortage to reduce personnel expenses . . All the people there are foriener . Bcause I can catch my teacher 's pronaunseation . On the other hand , when we take a indirect lighting , we can feel lelax and become more creative . Thank you for reading my dirly . It is realy difficult for us ! ! : < We talked about each other 's pronunciation . It is impossible to select music , so it is not useful to studing English . This is just subconcsious , but it is working all the time in my life . 6pm to 0am , I am working for Okonomiyaki resutaurant then . . . . To studing English effectively , we have to find a partner who knows the language we are learning and our native language . I have no time to sleep , but summer vacation is comimg soon : ) Throught my kitchen window I can see two big feet hung from the balcony above . My upstairs neighbour hangs Father Cristmas from her balcony each year , and the feet cut off the view from my kitchen . I can wear a T - shirt and harf pants . After that , we went to the Brooklyn bridge and acrossed it . The most famous ones are Suzu - mushi , or bell - ring insct , Koorogi , or cricket , and Kantan , or white cricket . I ate very clean , I cutted out all white carbohydrates , soda , sugar , and fat from my diet . Not only for myself , but also for my mother . ( because she have bouggt me up until now ) One was a friend ( of mine ) when I was a universty student , and the other was the agent of my life insurance . After seeing the Buddaha and deer , we went to take a Purikura . Last year , I was a call agent on telefon line and sometimes I had to talk in English . This morning , I read an article in the news regarding marriage ; it said that women in Japan want to marry men who receive at least three - million yan a year . I heard a story from my client about internatinal marriage . Though I think it 's culture , I would like to know more practicise details . I think they just marely can read , write , speak and listen to English . I hope that many students in Japan are intersted in English and master English as soon as possible . For that reason ( will ) , I study Englsh hard now . But , I 'm not going to go becaouse the ceremony is only for family members . I like simple phisical works . I want to be a television jouralist . I think `` correspondent `` sounds more proffessional than a `` reporter `` . Most people have attacked head coach Okada on the internet before , and the edia does n't usually release complimentary news articles about him . I understand when people speak it , but I sometimes have some difficults with speaking . I 'm a university student , and I major in Chenese Literatre , It 's not just true for Japanese , but for any other langeages . In ( the ) winter season , I often want to eat hot soup with chiken and lots of vegetable . I like winter sports , expesially snowboarding . I chose the Erasmushogeschool Brussels in Belgium because the Translation and Interpreting porgramme offered at that university coincided with one I am studying at the Baltic International Academy . One semester of studies in Brussels left me with unforgetable memories and valuable experiences . The tenants were students from European countries like Greece , the Chech Republic , Turkey , Lithuania , Estonia , Germany , etc . Secondly , the courses I chose to do at the Erasmushogeschool were useful , as I was taught the histrory of Great Britain and the USA , English for Academic purposes , English for Cultural awareness , English grammar and lexis and German language . Finally , Brussels is a beatiful , picturesque city to visit with numerous parks and museums . Maybe now is not a very good time for relaxe but I have decided to take it . The unstability of the state of atmosphere shows with the changing the season , I guess . However , as for me , I 've abstained from a booze - like matter for more than five years , after I decided there 's more to life than just drinking and getting temporaly happyness . Because I like tea and coffee , which cause stains , it may cause my teeth get a little colored . Please teach me about English grammer . What is the difference between these twi sentences ? Obviously , we missed each ither very much . But what was saddenig was one of my friends was not with us as he was in National Service . I got to know that the earth is spinnig a bit slower this year , so we counted from 11109 , 8 . . . . . . . . . . . . . until the firecrackers came into sight . ( until , till ) she may be jokking . I get so much presssure from the environment hat I have stomachaches every day . Today , I had my first classes at Osaka universty . In high school , one class lasted 55 minutues , but in university , a class lasts 90 mitutes . I have to get up early in the morning tommorow to not be late for my first class . I practiced boxing with my freind My freind is trying to become a boxcer . My most favolite ( or favourite ) song is `` Lovers Again `` . I was sleeply during my afternoon class . I think maiking relationships and maiking new friedns and chasing your dream is the most importnat things in my life . It 's been long time sinece I wrote my last diary . I think ( or hope ) that some people also know about the problems caused by American souldiers ( or their families ) and the pain they inflict on the Okinawan people . An Okinawan guy , who was on the way to a Coming of Age Celemony . The first picture above is my family 's dalls . There are five dalls and two steps . I 'm going to traning tonight . the frist note By the way , I finished reading `` HARYY POTTER and the Chamber of Secrets , `` a few days ago , which was very enjoyable , and now I 'm reading `` HARRY POTTER and the Prisoner of Azkaban . `` A guy named Sirius Black is aftre Harry . I hope that I will make many good frieds , and I also hope that there will be a lot of friends from all over the world who will help me improve my Englis . Thak you ! It 's very sinple but a very excting game ! Today I cleard a new song . This song is one of the most difficult song in te game . I 'm very glad to have cleard it and I love `` Evans `` ! very cool song ! I usually eat lunch in the office but today I went out to a restaurant with with my female collegues . The Spaghette was good too , but the portions were so big that we could n't eat it all . So , we ended up lefting a little food behind . Espesially vocabulary . It 's a very small house , just two room inside , 5 familly there but many korean students live like me . It 's 2 years since I have been saperlate from par , mam and my brother . freinds and cats have solaced me and that is better then living alone . Someday I want to live in a city like Samchengdong , I have just been there onece , but it was really cool and fantastic ! I have never been in a korea city like there . It 's the very fusion of traditional and morden and truly clorful . Franklly speaking , I am the kind of guy who gets tired of anythig really quickly . Also , I find writing in English very complicated . It seems like such a long way to go but each of us is strugging . Every day , my parents feed chiken , ducks , pigs and fish . Go somewhere I have neven seen . Today , we studied the culture of America in class . At the begainning of the class , we learned about early American history . The first stage was is the colonial period of time which began 1607 . Beacuse the cinema requires silence . But why are they becoming popular in foregin countries ? Could you help mechoose the right one to use in a sentence ? Is is ' She did not fully appresicate the value of the environment `` or `` she did not enough appresicate the value of the environment : ? I 'm like a profecional player . What 's your all time favarite sport ? If they really understand the meanig of ' eating meat ' , Beautiful world , now I am exthousted but . . . . I feel really sorry for my friends that are waitng for my pictures . Especially listenig ! ! ! ! The purpose is to tell the pearents about their student 's school life , and to know about their student 's home life . We noticed that the weater was getting better as we were leaving the store . Article 128 . - The Inter - Secretarial Commission will promote a program for the formation of mutual organizations and insurance funds with self - insurance functions under the relevant laws , in order to facilitate the access of producers to the insurance service and to generalize thei coverage . Osaka university 's professor Ishiguro invented an advanced humonoid robot . It is like skype , but a humonoid robot . It 's the purpose of this humonoid robbot . I ordered a dagital camera last week . I look forward to taking pictures of many beautyful seens . Good owner , good co - workers and good enviroment where I can practice to speak English . I drank 2 cups of coffee and ate 3 peices of chocolate . What happend last Friday We were looking forward to seening her since 3 weeks ago . It turned out that she had changed her hairstyle and her teacher put heavy madeup on her . But some childern were clamming up or cryning . It apears that they ( the children ) were unsightly . I also met my parents and reltives . I like to eat umeboshi , mozuku ( like seaweed ) , and fried chikien ! because I do n't knouw ! It takes at least 15 mins to get there . Which are reading , writting , and listening . Yesterday , I cought a cold . I 'd like to contribute to treatments of deseases through my work on neurophysiology some day . The orginal version of this song has been recorded by the American rock band Journey , written by Steve Perry a member of this band . However , when my leg first stepped out of my room on the way to complain about this to the hostel office , my cool mature roomate stopped me . `` The ture man will never be afraid of the little insect . `` said he with a calm voice , `` I used to be biten by the insect too , but now they can not harm me any more , coz I have already grown a layer of iron skin `` hobby : driving , nico nico douga ( plemium member ) , and so on . . . Becouse , I finished English school this Friday . prease help me ! ! Does the H1N1 flu cause issues in your contries too ? Anyway , I hope everybody on lang - 8 can be healty without getting sick : - ) I was very nervous befor thant . He tested my pratical knowledge of MS Excel . I tought : `` I can really work in the real company ! I ccoked alot of summer vegetables . In other words , the meaning is hard for a little child to understand but I have to say the molody was terrific . Can you hellp me ? If you can hellp me , the best method is to give me money : $ 200000 . becouce mistake might . . . . . . . . . . . They are kind of loosers in Japan like me . I will endure for them , but instead I shoud find something to be happy for myself . Althougt I ' ve studied English since I was in elementary school , I reall want to be a good English writer . I will introduce to evryone my favourite Japanese artist . My friend will already be getting merried . Bless my friend , I hope people who read my diary conglratulate him . . . Prease would you become my friend ? `` It was a plate of salad and spagetti . I like that menu , however , I have an allegy to curcumber and tomatos . I fogot to tell the chef to avoid that food . There were no curcumber and tomatoes . The chef knew about my allegy . My son is only four yeras old , so he is too young to feed the larvals well . Then , about two weeks ago , the larvals hatched and become a pair of beetles . Last week , I suffered from a terrible baskache . As summer is coming , cockroaches appear in kitch , my room , everywhere . I 've heard that they can survive eating dandruf and dust on the floor . Although I vacuume the floor out almost everyday , I find one or two every week . I set them in every room and expect them to sweep all of the cockroarches out . So today class is starTodayting at 9 : 20 . It was quater to one . So I hope to find a English naitive speaker for a language exchange . For me , it would be an enriching experience and an honor to contribute with my voice to the World Youth Choir , wich is a well recognized organization . Maybe my interner clock has already been welcoming this happy occasion . After I wnet home , I continued the study in two 's complement and I finally understood it . Main characters are John and Nerson . John is trying to kill Nerson in prison for revenge . He has been put into prison three times by Nerson 's father . But Nelson 's sfather died suddenly , so John changed his target to the son . John tries to kill Nerson in many ways . But ironically , Nerson , who was really weak at first , rises up through the traps set by John . Even Nerson 's penpal , who is only about 6 years old , reads aloud a letter from Nerson which includes lots of bad language , in front of his classmates at school . In such a situation , all of the characters do their best for their own purpose , but really , they 're all just funny regardless of whethe they accomplish their purpose or not . That 's becaus I ca n't imagine living in such a hursh world like the one in the prison in the movie . They turn their harsh situiation into a funny one with their expressions . I was busy finding a job , treaveling , fishing with friends , etc . Walnats bread ? Bread with walnats ? Bread in walnats ? It was walnats bread . As you know well , this is a tarditional tactic for us . She is realy an outstanding girl , and because of this your friends would be jealous of her . But `` or `` should n't be at the biginning of the sentence , should it ? I am writing a diary in English beause I have a few penpals and I want to improve my English . Introduction to my houmetown . ceause there are only a few . Last night , after the Christmas Party ( a little bit early , is n't it ? ) held by the school , we drove to Jiaushi , Yilan ( northen Taiwan ) to enjoy the hot spring . Unfortunatly , all the rooms were full . We had a very brief sightsee in Jaiushi downtownthen , then went home in tears . . . ( j / k ) I had n't exercised since march this year , because I am suffering from acute muscler pain now / at the moment . I think it 's TERRIBEL ! He did n't call me althoght I texted him like `` Have a great night Joey `` Oh I mede a new Blog account ! And I want to go to a good univercity ! I am studing hard in math , Chinese , English and so on . I am busy everyday , but I feel very hapy , but I think my English is not very good , I want to make a pen - friend ! At the same time , they are producing water polution and causing desertification . he is the opresident of his company . It was faster than I thougt . But she must be a kute girl who has style . It 's nice to practice writting through the Internet . It 's uncommon to do this kind of thing out of school . I have never continued writting blog or something over half a year . Ieven though I 've only worked in that company for three days , I felt that I was wokrling in hell . For my better future , the fisrt thing tomorrow is to call my boss , to tell him my decision . But I hane no friends who speaks English natively , so my English is not that good yet X ( In fact , I want to go there with my freiend , but I do n't have one yet . I think the Bund is an intesesting and beautiful place . When I was a littlt girl , my grandpa always said to me , cherish everything you have now , and be a happy person . Life is like a long journey with many challenges and difficults , and many times we ca n't change that fact , but we can change our mind and thoughts , think differently , and dont get upset , try ur best to face it , solve your problems bravely , and I believe we can see the sunshine after the rain , that we need to cherish everything , only the small things matter , they can change a lot , even our lives . I thank my parents , they gave me a healthy body , and they support me no matter what difficults I meet . I thank my friends , when I feel lonely , they always spend time with me , share their joys with me , and make my life more wonderful . I thank nature , it gives me air , sunshine , the blue sky , rainy days , and a great mood everyday . I thank society , it 's like a big family , and apply many ways for me to look for ( unsure what you mean ) . I thank strangers , althought we do n't know each other , when we are in trouble , the hands are always around us , and lastly , I thank myself , I let my family members feel happy , and make my friends have someone to share their tears and joys with . . . . You have to be responsibal for yourself . I think everyone is faced with a barrie of the language at some point , but it may entail a lot of culture difference as well as those of the grammar or pronunciation . I will persist in writting in English and in anyother languages as well . Races in Northen America are not good for people in Japan because of the time difference . I have thought about camping for a long time , but because of my ecnomic problems , I have to put it off . I went to China town in Yokohama on New years eve and celebrated the new yeare there . That 's why I desided to write a diary . in the proess of globalization , the developing countries dind not share the achievement of their economic development . Secondly , economic globalization results in the instablity of the economy in the developing countries . facial expressions of shop assistances , their manner of speech , from overhearing of businessmen talking and the like . . . for instance , shop assistances used fixed formal phrases . This time , I bought many clothes and I already regrette having bought some of them , which happens each time I go to the sale . Especilly after I finished my work it tastes wonderful . I am always drinking Tiger beer when I was living in Singgapore . Anyway , this is so famous in Japan that banaa used to sell out lol If u are interested in this , try it ~ I 've never tried it though ~ ) This cream puff was handmaded by my colleague . My japanese is so poor but he is patient and cafully translates japanese into English . He decided to posion them . Anyways , it is extremely crucial for me to decide what it is that I realy want to achieve ! Even if I 'm a millionare , it would mean nothing if I was n't happy . Oh , I just remebered another important idea I learned from books . because it was not important to my life when I staied in china . I went to Grouse Monuntain to climb with my host father . Mt Grouse is a very popullar mountain in Vancouver . I also paracticed the making of Zonbi today . I 'm looking foward to the Zonbi Walk . I want to talk about movies or soccre with you . I lakce hors and cooking . I lakce wochen TV . And what do you lakce ? Our class has Korean , Japenese , and Taiwanese . My teacher is an Aamerican . I must resarch fashion by the magazin . The industry of my choice is a firm company , marin or an air transportation company and hotel . Maywa Denki , one of the artists who displayed work in this exhibition , declared thier concept to be `` Device Art `` . In such relations , devices are mere tools , being the subject to make the contens . Only the contens is regarded as art . I am not very familiar with contemporary , so it 's difficult for me to understnad this sentence . Do I have an advantage for learnihg foreign languges ? ( I 'm not sure how to correct your second sentence ) Citizen watches Japan can not suuply the parts only . I 'm working as a telephone ooerator . but pay is realatively good and , physically , its not a hard job . Best of all , I work short hours ! ! Please tell me if the things I write do n't meke sense . Japanese restraunt `` saizeriya `` I went to the Japanese restraunt `` saizeriya `` today . It is a very reasonably - priced Italian restraunt . When I am sad , I always count my fovorite things . ( I did n't know the parts were still in there ) I guess he did n't make a full recovery , but he looks fine when dacing . Unfortunately , we can not talk to the animals b ' cuz ( because ) we use differnt languages . I usually realted aliens with everything around me . I think taking photos is good for improving your sence of I belive in heaven and I also belive in hell . I 've never seen either but I belive they exist . They have to exsit , because without heaven and without hell , we are all just heading for limbo after death . The places have indentical features . English is preety hard ! I wil do my best in order to achieve my goal starting from RIGIHT NOW ! Singapore people who lived one generation before started usesing that language . The Pronouncication , accent and rhythm of the language are very different frome English which we have learned until now . Yeserday I listened to this song on You Tube . When I was leaving the car park , my husband adviced me advice . I realy enjoyed this summer . I have to practice soccer everyday , practice futsal every week , and practice aikido somcetimes . What 's the seoson in your country ? Did you know that a big typhoon is comming to Japan now ? Tomorrow maybe it will hit Jpan . The TV darama `` OC `` is awesome ! I study english by watching the darama `` OC `` . This is more natural . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyricals are cool and their music has a lot of energy plase correct me and thanks for reading - . - Anyway , I am going to study English using `` BENJAMIN BATTON `` from now on ! Tomorrow I will have an English examimation . I hesitate on what I should choise . We had a substituce teacher , but he was nice and had a good sense of humor . Since I read books until midnight for two consequtively days , I 'm going to wrap up my entry . I often drink hot tea , couse I have sore throat . I think that she is a real persanality . I laughted silently to myself when I was in the dream . I chukled and giggled . I hope my bad memories wo n't eat up the plaseure dream ( in which the man loves me ) . Of corce , amime is Ok . It is wel known that English learning includes four aspects : listening , speaking , reading and writing . I do n't remember who , but someone told me that reading and writing belong to cultural aspects , while listening and speking belong to language aspects . I major in ecomomics , and now I 'm busy with group study and studying for TOEFL . . For example , I have 12 coworkers in my office , both regular and temperary exmployees . One of the temperary workers is very dirty , lazy , and tough , so most of the other workers hate her . Even though she realizes this , she makes no effort to change her habits to foster better ralationship with her coworkers and create a more effiecient working environment . What I 'm trying to say is , `` If you do n't want to change , searh for a job more suited to you . I was hanging around in Shinjuku after work and I saw such gougeous displays . I wanted to watch ( them ) from the cafe across ( the street ) , but unfortunately , it was fillsd to capacity . So , I ca n't become the superintendent for our domitory . Today , I watched episode 4 and 5 of the secound season . I like cerina . Who is the actress who plays cerina ? the class always stresses me because I teach students who prepare for university enterance examinations . ( It 's very difficult and important for them in Korea ) I told them I was planning to go abroad to study Englsh . but I do n't get any chances to speak English or Japanese at my workplace and I 'm not satisfied with my currnt job . This is my farst time going to ita . Nobody understands hou I feel . Yesterday my friends and I played baskerball in the park . When we played basketball my friend hitted my head . When we rested netx to the basketball area , The fateher played with his son and the mother just sat on the bench I played the pianno with my daughter in the concert for the first time yesterday . I admitt that not every piece of Seth Rogan 's is as brilliant as Superbad or Juno . Are people in modern society losing thire moral values ? Every year , bullying at school occurs and it does n't seem to disapper , rather it 's becoming worse because there are some students who committed suicide after being bullied and the way of bullying is becoming terrible . There are some pople who talk so loud ( OR loudly ) with thier movile phone in trains or buses , not considering other people around them . Also . . . I do n't know diffference between `` memory `` and `` rememberance `` I stird and cried . There are many many tradional summer festivals . I recently went to bed late so I am worring about my lifestyle . But until now , I do n't tihink reading English articles is very easy . Did you see Avator ? I used to read fiction when I was young had a lot of free freetime . The method is good . I study about 1 hour a day and write with native spekears . By the way , I would like to know Jiro Shirasu which made the biggest impact in the world aroud 1950 . Plese chack it . I went back to my farher and mother 's ( parent 's ) home . Then she craped her small hands and swayed to the song . I 'm very excited about my firast diary . Then I ran arround the park near our appartment . I had a good time eating the delicious piza with the group . Recentry I 've busy so I could 't write a diary . I 've been studing English for years and have just started learning Spanish . I also recived the high school entrance examination results , and I passed . I like eating and travlering . and somestime I would feel shy . Maybe I fear have a fear of making mistakes . I watced the movie `` UNSTOPPABLE `` A repairman came to check the air conditionar in the morning . He found that one of the possibilities was a short voltage of the remote controler . Jim Parsons 's Smail is Cute . XD I emailed that to them on last Saturday ( their Friday night ) , that I asked them to accepet for me to stay at their home again . However , they did n't reply anyting to me until Monday morning ( their Sunday night ) . I worried that they will have some trablesome thing during the days which I expected to stay , so they were not able to reply to me . She did n't read my e - mail until when I calld to her , and pleased to accept my request for an accomodatin in their home again . I cannt say it well in English . such as learning phrasal verb , curren Enlglish , Grammar etc . Well , what I can do with myself ? However , I agrue with my teacher . . . What about our new English books ? I 'm starting a book caled ' ' Laser B1 ' ' . Although my English level is very low , I would like to comunicate with many people . Thouge there was also an unnatural scene , it was very interesting . My favoritte school subjects are biology and mathematics . My favoritte TV show now is My name is Earl . It was a good exerpricence for me . We couid divide business items . Good moning . First I watched Love acutually , of course it was the English version . Q10 : Who is the most interesting person in your familly ? interesiting in an unexpected , sudden situation . Andyway , that 's why I like him . In my futuer I 'm sophomore a at Kyouto Notredame Universary in Japan . There are some students who want to be a teacher , OL or technitian . They are studing to acheive their dream . I thought about how can I could improve my eglish level during vacation . It is to chat with forginers who can speak English ! ! But I also think that teathers and parents should give children diverse education so they can have great lives . I felt nervous , froustrating , heart 's throb . but when I was preparing the competitions I was nervouse and I felt fresh when the competiton was finished . and I have to do my math homwork , and to study many subjects . I take it regulary , usually twice a year , in order to check my level of English . It is totally amaging because she was speaking with her own words at this speach . Anyway , I think everyone should see it onece . It has made me a littele confused . His work is so popular in the world that he has many funs . When I wathed this , I thought this could be quite an innovation . At the same time , I thought of some problems and am still thinking of soluthions for them . we were singing and playing and eating the buffe for about 5 hours . February 24 is the birthday of 25 yeras ! ! Keigo Higashino is a genious . His stories alwase amuse and surprise me . However , I still used it because I am not yet finished to write my journalal entry . I have read a book a bit because I have travaled all day . I thoght , I will be late . When I got to my office , the morning meeting had alredy started . I must admit that I didnt ` t do anything throughout the holiday except Harry discovered he is a isPsychopathy . How much syrub ? I do n't know how to express my oppinion . Ah , I want check the grammar or seneteces but I have no time , but I have to earn the money for a beer . She said that from that moment I had become hers and noone other 's . There are no differents because it 's still Asia . confuse : Both of them told me different imformation about the nuclear plant , so I was confused . compete : 57 succer teams will compete against each other this summer . In the moring , I see many Chinese college students reading This is a Korea 's tranditional day . On this day , we celebrate our harvest and we show our respection to our ancestors by a special ceremony . On this day , we also face the worst traffic jame . For example , it usualy takes 5 hours from Seoul to Busan by car , This is a culcural difference . so I 'm disapointed about this . There were so many people in a narrow room that I 'm slightly worried about the infection of swine ful now . We just walked around the bottem . ( ? ? ? ) And I think he is laerning and coming to understand a lot of things . I will travel abload . They strengthen our interpersonal relationships , seld - confidence , and allow us to gain more knowledge and friends . Recentry , There was a big earthquake in Japan . We appriciate very much . Unfortunately , even if I explain about the movie well , the reader ( I mean the friends of mine who will correct this . . ^ ^ ) will have difficuly understanding the story of the movie . I recommend this movie to all of you interesied in traditional Korean culture . I got up at 12 : 00 pm and I was just a couch - popato all day . Maybe it 's becasue I really hate my future speciality and do n't want to be a programmist ( I 'm the one of that persons who go to university just to get diploma ) . We got acqainted with each other through the on line community named `` mixi `` , which is like `` Facebook `` in the U . Gakkai is Japan 's largest religion , based on buddism . She is allgedly a bit older than me and working for elementary school in Osaka . It was umfamiliar to me , as I was born and raised in Tokyo . A further reason why I want to do this is to get used to writing English essays without the hessitation of choosing the words and structures of my sentences . While my boss is away from the office I tried to use his machen to make a cup of coffee . So when he came back from abored I can brew one for him . I tried to go to a Bikram Yoga class , but , regrettabley , I did n't join it . I CNNNOT WAIT ! ( typo ) The first , I live in a rented ( rentend ) house . My price is more expensive than their budjet , Pic3 : How to creat GDP ? I had paellas of seafood and chickin . I suddenly changed direction intentionally , and then fortunately I managed to avoid the picer . Anyway , Barcelona was gread place with good sunshine . I 'm sorry for my Englich = ) I want to learn spanish because I may take spanish for my foreign classes , but I am afriad because I 've never learned spanish before . . . Because my climbing shoes storetched , I bought new shoes . They were worriors wondering around the magic world at least during the play . Our journey in the D & D world shall be updated in consistence with our actuall progress . I 'm a Japnese woman . She is jist 3 years old , so that she could not understand what the TDL is and almost all the activities . Then I came back home , went to au shop to fix my phone , because my cellephone has something wrong with the connecting . If it is tlansrated straighly into Japanese , it means `` anata wa shitteiru `` . I have a hadache , but I do n't know the reason why . or , relieafness after finishing some work ? I 've read many books on how to study English efficiently , but I hav n't focused as much on speack English well . On the second day , we went to an iland that is near the Kota Kinabaru we went by boat . Then we returned to the hotel and we had a nup . Then we reluxed and had a massage . I then asked the staff ` What do you recomend ? ' ' Yesterday I presentated my graduate thesis . The economy of Philippiens is developing but they have a crisis . 1 : Put the following five animals in order of prefernce Look at the explantory note below . Today I went to see the hospital because of nusal inflammation . I had an allergy teesting with my blood last week . When I bought `` How to Speak Enblish in Three Months `` , that envplop was still sealed . Nothing isn finished and nothing has changed my English skill . My favoraite book is `` TOEIC elderman 755 points clear ! `` # 2 to watch CSI maiami and I will writet that strory lines in my words . Anyway I have to sotp buying English books , text books , etc . I leart English long ago ( when I was still at school ) but since then unfortunately I have n't used English . I decided to start guiter , and I joined a music club at another colledge . My senior said `` I advise an early start on guiter and you should buy a guiter in which the price is between 70000en and 80000en `` Finaly , I called my mother , she said `` Oh ! She instructioned me to call her friend , who was a professional guiterist . He told me his favor internet - shopping site where he bought his guiter . He said `` I think at first you should try to purchase a cheap one and if you think you want to play the guiter , you should buy more expensive one . `` Now , I wait for my new guiter . Will you listen to my music , if I learn to play guiter very well ? ( haha ) There is the flower shop called `` Flower Factry `` near my house . I boutght cut flowers , a poinsettia plant , a lavender plant , a rosmarinus officinalis plant , and a flowerpot . Plese correct me . B : If you are not talking about the IQ thing , I think I 'm smart enough to say `` I do n't know . `` honesetly , if I am asked that , I do n't know about it . My hasbund allows my son to take it . They are so yammy . Today , I found the sweet ' ' DOCE DE LEITE ' ' so yammy ! Should I go to see a docter ? My favorite team is The Tokyo Gaiants . I 'm very excitde and happy ! I was too happy to belive it . Thay made me a cake which tasted very delicious and the decorations were also pretty . It 's raing now . Ressently , I 've researched how to study and improve my skill . Last weekend I returned home . Since my hometown was far away from Shenzhen , I came home by trian . Althouht I have grammar konwlegde , I still can not write any correct sentences . I registed for this service . I would like to just stay at home not go hang out with my frined but I have to go and vote for the prime minister . Why have practices like this not disuppear from Thailand ? Even now , there are still a lot of problems with elections . I thought I would remember the experince forever , because the training was so difficult for the girls . I met a couple of CPAs and colleages who are studying hard for the CPA exams . it 's my drean xD ? and now I shall go to my summer hous . Everyone has their troubles , a positive atitude must come first ! Poteto chips It is difficult to use a mouse or keyboard while you are using your computer and eating poteto chips , However , it can be hassale to wipe it every time . Oh and I forgot to say that the goal was magnificient ! I will start work as computer programer starting next April . I am studing English and history . one man had killed nealy 100 ppl . Thnak you for teaching me such a funny word . If I am not able to understand these slang , it might be difficult to comunicate with native spekers . It is boring for me to only study gurmmer , essy , gurmmer , essy everyday . Of couase , I know it is important to learn these things . I went to Beijin in China for four days in this week . mayb . . . He is a Brithish writer . Now I happend to find an ad on the Yahoo page which says that you can take a trip to an Asian country ( you do n't know whereabouts to go ) only by paying from 18000 yen to 23000 yen . the traditional opinion that boy is more prescious than girl has changed Onece , he revolutionized Japanese telecommunication industry where NTT had monopolized for a long time . He faces the opposition in his own party after he survived the no - unconfidence motion from the other parties a few weeks ago . It 's almost spirng . Now , we are filled with concerns about the aftershoks which still continue and about radiation . I think something will change in Japan when spring is comming . I asked the employee at the main dest , and he came to check on the printer . He fixed the connection in the back of the comupter , and it eventurally worked . After the face to face interviw , I was asked to finish a written test within half an hour . The younger sister lies in the morning , and speaks the truth in the afternnoon . ( Could I use this sentence to replace my last sentence ? When I went home , I flet my body ache and my body broken machine . Yesterday , I staty at home the whole day , I watched a film < The Devild wears Prada > . by the way my classmates intorduce me to that film years ago , , I 'm aways watching it . It has been a very long time sice I saw snow . My English cluse In this university cluse , we study it by reading American comics . The teacher in this cluse is really loves American comics . So , every cluse , he recommends a lot of comics . She describes the mental state of women in a vriety of situations in her songs . They cry from the loss of love and are dilighted with new love . My favorite tune by Maria Takeuchi is `` Sutekina Holiday ( The Marvelous Horiday ) . This is a Cristmas song . this season becomes meanful . In Japan , we differentiate between bowel trouble and stomac aches clearly . Sometimes we feel some pains in the stomach caused by stresses and pressures like mental factors , but bowel torubles are caused by some foods I have staied at home all day long . The menu is fried oyster , corn cream soup , salada , and rice . So I decied to learn English . I 'd like to tell Japanese how foreiner are interested in Japanese . But many areas of Japan were hitted by heavy snow and caused havoc . I juse finised to make a powerpoint for my class on Saturday . my internet connection was lost now and wanted / asked me to close ( the window ) so oh my goodness I was just writing my entry a few minite ago but I will not blem it because I am happy today and my heart is happy too . By wathing NHK , I can watch all kinds of wonderful programs they have to offer . Sometimes I concentrate on watching TV , writing down something that I 've never heard or learning more useful expessins than I 've known . My English is teriible . But I try and try . . . . then , my journal is witten up . I hvae to eat less . I also listen to English in a similiar way and I ca n't keep up with the conversation when native speakers talk . Then the spectators were yelling at him and criticizying him severely as soon as he ended his remarks . After that , the judge convicted him of the crime , but George did n't sucumb to the judgment and requested an appeal . This morning , I said something wrong , and my collesgue just used it to make fun of me . adult celemony But there are still some problems with them , especially when taking metal ones ontrains or airplanes , because some security personnels take it as a potential threat and confiscate them . My teeth dont n't hurt now and I 'm really glad about this . I do n't have ehhough money to go shopping and it sucks . But I did n't have any idea untill now . . ! ! Day 90 : I see that everyone arond me seems to be more clever and more well - rounded than me . Everyone like theyselves , living so naturally . Calaf declares his love for the princess , but she asks him to leave . He refuses to and confesses his nombre . However I ca n't kill them because it 's disgusting so I always try to shoo them by using a notebook ( by waving the notebook at the mosquite ) . Also my friend got bitten by poisoness spider and she has a fever from its venom , which is worse than mine . I ca n't keep waking with them for more than 10 minitu . This time I bougth two mineral waters in 2 liter bottles . The Theacher asked us , ' If your friend is wearing a new suit , what do you say in English ? ' . I want to know what is your reccomendation on the places to go to , the food , the amusement and so on . . . Although it 's winter vaccation , it 's still too lazy , huh ? s second part of school means that after summer vacation , starting new semaster . If we want to take lectures from them or have discussions with them , obviously we have only two choices : wating for them to come to our country or going abroad to meet them . Hence , it is better to go abroad and meet them instead of wating . Thus , for students , especially those who want to become researchers , entering a famous foreign univercity is a good option . In fact , I met a foreigner who had better undersanding than me about Japanese culture . In this grobal era , it is very imporant to understaind our own country because it will help us to understand other cultures and , thus , help us broaden our horizons . I heard from my friend that there are only a few translater in Japan . On our way , some bicylcles appeared and caught me by surprise . The gurad tried to stop them as he told me to cross the road . Well , we ate BBQ while talking about something interesting which happend in the junior years . If you had misunderstood something , I would apoloy to you . Actually , the KAIST graduate school announced the filnal result on ( September ? ) 17th , and I got accepted into it . Japan has been plaged by this disaster still My sibling are growthing , . He already has a beautiful wife and lovly daughter . Next I don ` t know why a native can pronouce this well . But cheking their profiles , I found out most players were taller than 180 cm ! ! ! Polite or inpolite The posters that appeal to people not to hoard these goods are widespread on the Internet , espicially on Twitter . My efforts in writing and reading Japanese are a bit pathetic as of now , but even so , nobody seemd to actually mind . I want to improve my English and talk with many forin friends . Srimp and squid Honestry I dont know how much like her and also I will be going to US in ougust to next march ( for 7 months ) . I need to say good bye as soo as possible . I 'm going to England and Itary from tomorrow to 31th . She adviced me `` Do n't hurry . It may be found when you are thirty , fourty , parhaps now . Of course each person had a room . 2 were New Newzealander , 2 were Japanese , one was French , and the last one was Indonesian . 2 girls and 4 guys . We have 2 proffesional basketball leagues in Japan . Sendai has 3 proffesional sports teams . I beleive that sports make us energic Some of them were put on ventilations . I do n't actually have any special hobby thing that I do regulary . Geez , why dind n't I know that before ? ! But I will go there tomorrow , even if my anckle still hurts . : P I miss my faimly . I have a nice faimly ; there 's my father , my mother , my little brother and I . Many fathers and mothers come to school and prepare food for their chirld , but my father and my mother did n't show up . I want to have a hoilday . Thogh I decided to do so last year 's end , You know what happend in Japan . The good thing is that all the entries usually have not only corrections , but commets too . And do you knou why we call it ' wisdom ' in English ? I was recomend an English dictionary from my friend . But I may be able to learn many words from this dictionay . He appearanced in a 600m relay race . And I also appearanced in a ball - toss game . Luckly , I listened to someone 's speech in the evening and I finally got motivated . Your stones ca n't be taken , unless they are surronded completely . Before , I had n't decided what carreer I would study . I consider myself a good person who loves enojoying life and spending time in nature . While it 's always hard to deal with my studies and receive comments from a professor , to be told `` the ammount of your effort is absolutely short `` is the worst part . It 's horrible to acknowledge what I can not do , in spite of my storong desire to accomplish it . But a year ago , I became intersted in American movies and dramas . I think when we learn a new languge we need something intersting . I have a cat , fishes and chkins ! I thought it was wonderfull . When I was a kid , I bilieave that rabits lived in the moon . Then we started to intruduce ourselves . I will eat less than useal at dinner , without carbos . And so , I go to the small kitchen in the office and drink coffe . I cooked Korean barbecue , Kimchi - tuna stir fry , Laver omlet , and How do you learn foriegn languages ? I 'm spending most of my time studying foriegn languages like English and Japanese . I 'm studying 2 Englihs vocaburary books and using a iPod application that can help me build my vocabulrary . The key to building my vocabulrary is ' repeat ' I think . Do you alread know about this ? If you 're learning Korean , I also recommand a online dictionary . Which path to choose is very important , so it 's a very difficut choice for me . Field Surbey I tried my best to write this a friend suppported me . Chrysanth is typically used , but flowers such as roses or carnations should be avoided . Second , wirte it in English . Fortunatly , I will have a colorful holiday . About 2 days ago , I bought a maganzine and a topic in it said many people have a problem called ' email nervious ' . I check emails everyday and handling these emails will occuipied at least 2 hours of my working day . there were so many old people sitting around the stage where an old man was singsing with great passion . the average age of the people was 50 , of course , ecept me . It was also interesting to see the old fashion in a club , ecept that the old people did n't like to sit on the barstools . ^ ^ In Japan , the highschool school baseball championships is especially popular , as much as professional baseball . I think the American movies are so dinamic . It was pretty hard for me to read , since I had n't even read it 's transtation . Today , I visited my customers because I understand the orientaion of improving our new products . My exeperiene in Australia Today , I herad that he carried some heavy things from a track to places where he had to go . I have been very busy writing a paper in order to guraduate from univercity . It 's very populer in Japan . This book teaches you lots of Japanese slungs . Beyond that , this book taught me a lot of English slungs . However , I have to be careful in using slungs because it might make some people uncomfortable . Now I am studying English and germany . I slepped down a small bridge from the top to the ground . She had already been in Canada and she recommended me to stay at the same homestay . I hope she got it easyly . Japanese traditional food is healty . Most non - Japanese peple peaple hate Natto , which is fermented soya ben bean . When a man marries his wife and she becomes pregnant , he thinks about pregrant very often . The charator ( character ) on the blackboard is so small ! ! I want you to wirte down bigger charator ( characters ) ! ! `` I was very sur ( surfrised ) because Korea has a culture about respect & great manners to adults ( or oldaged people ) and that action was very rude to the teacher . And teacher erased her charator and ( rewrote ) the same content . Is a Protestant more consevative ? I 'd appreciate it if you cheack my English or send me a message . We enjoied Teppanyaki ( sliced meat and vegetables grilled on a hot plate at the table ) and a bottle of Wine . We enjoied Sake and raw fish . I could work much more confortably if I replaced the memory boards with ones of more capacity . I 'm not sure working confortaly is worth the cost . Should historic buildings be prederved or be replaced with modern buildings ? With the increasingly rapid development of the economy , it is definitely undeniable that there exsit tremendous changes in the world that I almost do n't recognize in comparison with those several years ago . Over the past years , the government replaced old Beijing siheyuan with new buildings in order to develope more quickly . When making payments for rent , utility and insurance , we register our bank acount information in advance and have the amounts paid automatically before the due dates . post office 's letter delivery , I always become anxious about whether my checks are propery distributed . I agree with the dicision of the court . I am in favor of buliting the new library . I maintain ( contend ) that owning the jop helps mannaging student 's time I prefer eatting at a restraunt than to cooking at home I agree that tests encourage students to lern . . I do n't think it is right to build new parking lots on the campuse . But other people correcting the entry in Japanease is very quick . wimbledon will begin before long . It is myserious thing . We rode a dengerous plane . We could catch a later flight becouse there was another connecting flight 4 hours later . Tish is my first time writting on here . I can not speke English . My grandmother is 70 yars old this year , but very energetic . so my son cought a cold . . . What a pitty ! : ( `` My room is very cold in the evning . I recomend a gas stove `` But sometimes I hear only the sound of the words , and can not understand the meanings of the sentenses . When I hear some long conversations or lectures , I think it is necessary to be able to comprehend the meanings of the sentenses accurately . Should I read and learn , then listen to the sentenses or phrases repeatedly ? A Godess in a toilet . A very , very beautiful godess stays in a toilet . That 's why if you clean a toilet everyday , you can become a beautiful lady like the godess . I set an ink converter on it , filled with my favorite ink , and wrote some letters . Every time , I get really motivated to learn new skills , knowledge , and expriences . And FINNALY Thank God ! dunno why but felt like I 've been missing all the good foor in my Life . All things are terriable . Everything becomes a big troble . The most basic rock band has three musicians : a Guitarrist , a bassist and a drummer . If you want to sound like a modern rock band , such as Kings of Leon , The Killers , Wolfmother , Strokes and so on , you will need a synthetizer or an installed program in your computer to reproduce 24 - bit sounds in real time . Part 1 Most useful tip : Listen to the music you want to play and feel it as if you were playing those songs with your friends in a big scennary . It 's a city which seemed very similar to Venecia . . . Why ? If I have any oportunity to travel there again , I will not think twice . I am a doctor specializing in anestheology . Separiting the tasks helps finish the tasks more quickly . Meanwhile , I saw a girl who I did n't know at all besite me . I MUST start studying right now insted of writing this well , I think I cant waste more time writing to you ( whoever you are ) , becosethe the consecuences will be disastrous . I think that we cound not be forever if we 've been togerther . English 's `` waht a ~ is like `` very , really , and so . `` So I 'm searching on the Inrernet for a long time . Can you help me ? ( soory , my English is poor . ) The groung was crowded with a sea of people even though police blockaded a lenth of road for pedestrians . Soon after the problem eas solved . My exchange launguage partner who is from Malesia reminds me of this . I am reading a nobel called / entitled `` Eleven Minuites `` by Paulo Coelho . Althogh it feels a bit strange , I 'm very interested by it . It 's been aproximately 4 years since I formally started studying English , but I almost never have the chance to be corrected when I practice , either because my friends are too kind to me or because I do n't usually write letters or any documents in English or beacause I am not understood . Since I 've been learning from teachers who thaught both American and British English , my writing might be a strange mixture of them . I want to be consistent with BrE since I 've been learning under a British - like system for the last two years , but well , that 's too much to say in a firts entry . It 's really difficut , I hate math very much . During those day I make a good friend in Lang - 8 , she help me implove my speaking , listening or anything . I want to understand science articles and documentary TV programs like from the Discovery channel or National giographic channel . On the program , French scientists escavated a lot of evidence from the Vatican . Since then , they aim to be famous all over the world and chared on Billboard 200 again . When speaking , I alawys speak with the very heavy accent of my hometown . I still remermber the first day when I came to my university last year . dispite the problems , I am proud of the fact that I have mastered two languages , in addition to `` putonghua `` . My Englsih is not very good . Yesterday , my friend kindly talked to me about selling food abroad . She said she will ask her friend about the details becasue his compunee sells things abroad too . It seems that her friend does n't have anwers for us either , so she found it on the internet herself and sent it to me through hotmail . becasue she always makes me laugh . It seemed impossibel to me , but it really happened ! Yeah , I was very sleepy and tired , and the girls were waitting for me in the street . I ca n't fit them , and so they think none of the boots fit me , because I am shor and fat . Fuckin ' hurt me . The restuarant is nice ! Unfortunately , I 'm still in an exam term . I want to be free from these fackin ' exams . Now I 'm really wondering about wheather it is too late for a 29 year old woman to go to a univercity in a foreign country to study English on a scholarship or not , and quitting work to do it . But I have something to do such as doing the laundry , grocery shopping , making some framework for an exam , learning English , edting a movie , along with other things . Actually , I 'm surffing to find a suitable site for my daughter 's English study . I 'll introduce this site to my daughter tommorow . In my oppinion , there are not many tragedies greater than Tohoku . I realised that I always have conversations with my wife in English confortably . These kinds of coversations are very confortable for English learners . But I think if we really want to improve our language skills rapidly , we should do everything ourselves on foreign soil , and sometimes we should be nervous . This is extremely hard without preparetions . Thoungh one of my collegues I just found out aboutthis web `` www . My english comunity skills are very low . Father and mother are teather . We have cultual festival this month . USA and Japan will go bunkrupt He was quoated as saying , `` I came here to kill people . I 'm from Fukuoka , Japane . It seem busy in Bagkok . Hello , friends . In Bangkok it seems busy at the moment . Some of the people don ' t like the primister . They protest at the impotant road near ( ? ) victory monoment . They want the new primister to resign from the goverment . It seems busy in Bagkok and going soon to the important city called Pataya becasue there they will have a meeting and the peple from other contry will go there . My favorite film maker is Andrei Tarcovski . I even do n't knoe what I can do for you . I 'm looking for something good to celebrate my friend 's dauter 's birth . The makers may think most of the parents will willingly pay any price for their children whithout hesitation . I belive perseverance may lead to victory . Do they eat rice , _ soup , _ vegetables , _ fruit , _ bread , _ noodles _ , milk , _ sandwish , _ etc ? Hirosima ( anniversary of the end of WWII ) However , since 65 years have passed , many people like me do n't know the realities of the devastation of the atomic bomging . The fact that he / she had lost his / her life in a moment by an atomic bomb made a black human - shaped spot as his / her identifable mark of living . Many people lost their lives in many ways in many contries ; let me mourn the people who died in WWII . I think that putting the Internet to practicai use is difficult . This is because there is much useful imformation in the Internet , but all of it is not always true . So I want to select the imformation carefully and search for the imformation at various imformation sources when I use the imformation on the Internet . I want to become one of the gratest ministers in the world I atached the picture taken from the window in my house . So I was doing a lestening test by myself at class time . Then , my father called me loudly becaouse he ca n't speak English . The Japan government urges people within a 20km radius from the power plant to evacurate . But foreign governments urge people within a radius of 80km from the power plant to evacurate . I am from China and I am studying in US now . I want to improve my English effectively and my roomate Keegan who is a nice American girl recommended this website to me . That 's why I know this place and registered . Not only do I itch to learn Enligsh and Japanese here , but also I long to make friends who are from different countries . The homework makes me think about the important incidents that have happend in the world . At the same time , I wonder if everyone has someting new every day . Maybe I can find good froends here from all over the world . Oh , anyway it 's sonwing and windy outside . But after I realized that I coud n't resive it anymore . I think this is a very good wap , because it not only the way to study more languages , but also we couldknow foreign culture . and language . by this way , we can have more opptunity to practice our language ability I think . Happy Christmas ( Celine Dion made by Jhon Lennon ) If you prefer a certain Cathilic Bible version , can you please tell me which one it is ? We can share each other 's culture and luanguages . Recently I 'm feeling that our marital relationshp is n't going well so I desided to ask you tonight . I hope she is feeling only phisical fatigue . So I went there alone and saw a lof of forengene there . The ones that came from England , Canada and America I tried to listen to when they talked togeter . But I am not fluent in English yet so I understand some sentences but I 'd really like to understand everything they say . Both of them live in Bangkok and are training for their job at their childrens ' house and the childrend get abondoned with their parents . I 'll do again what I have done before , but this time I wo n't lose my original intention and I 'll be more deligently . Just 1 more exam left ! yippe ! As for me , however , I had written a paper for the purpose of pulblishing a journal . l was really suprise and glad at her success ! ! Today , Iwatched a movied called ( or titled ) `` xinyue `` . It is the part two of `` Twilight `` . From my oppoin , I supports the vampire because he is the first one for that girl and he did n't make a mistake ( or do anything wrong ) . Hallo everybody , this is my first entry on lang 8 . Hallo Dears . It 's very lovely and he acts like a spoild child . There is a Nepalese restaurant in my neiborfood . Unfortuately , there seemed many delicious food delivered afterwards . I wondered why he thought that because I have always done my homework , howeever , as time goes by I will prove to my teacher that Majid can achieve a high score in the next level exam . Because I am exposed easily strongers and perhaps became criminals . By the way , I 'm reading The cather in the Rye , which is used in American high school textbooks . I saw tanks , hlicopters , and missiles . I 'm going to write it , please corect it and if you know about Beijing , please tell me a little about it . I want to know about other Asian country 's traditional way of life , and I also Iwante them to understand Japanese culture . But , I think the best way of understading each other is to meet in person and talk about everyday life . After all , I want to tell peope ( that ) we have to work hard to understand each oyher . I want to tell them about the Japanese schooll system , because there are many good things in it . Hatsumode is a Japanese costom of visiting the shrine on New Year 's Day . I finished wark and returned to the accommodation in which I am staying . I washed the clothes . Today I firsy contacted a Skype user on Skype . The latter have taken away the customers from department stores , which are traditionaly giant in the fashion retail industry . The main reason is that fashion buildings are able to offer more reasonable productus . In the deflationaly Japanese economy , consumers put their priority on the price rather than on the level of service . However , I 'm not that good at mystudy either . Currently , my town is very cold . I will make myself a lunch in a lunchbox , because I do n't wnat to go outside for lunch . I was disappointed to learn that the Nintendo 3ds will be released on Feburary 26th , 2011 . Japanease horror movie . Sommer is a horror season in Japan . Japannese horror movie is very scary and interesting . What is the impression of foreine countory about the Japannese horror movie ? $ 0 . 00 USD - $ 3000 . 00 USD , the price per transation Suddenly , I thought I wanna traverl through Korea with foreigner freind who want to go on a trip through Korea . and may be able to feel a refrech feeling ! ! ! Recentry , I could n't write a diary , because I was working . I 'm sorry for writting a dreary ( ? ) diary . anything ( but it must be less than 800 largecalorie ) After the massive earthquake in Japan , some people hope we can forcast earthquakes and so they write on a web site about earthquake precursors such as clouds , sulfurous smells , abnormal changes in well water , the sun , or the moon . I ate a lotus root whic was fried with soy souce and was sprinkled with some sesame and red pepper . For example , shark ` s hert ( sliced low ) . I feel really like the girl in this book becasue insite , she is really craver . She liked to read books sinec she was young . This book is the frist Eglish book for me . It is rainning in Taipei . she wsa 1 year old and she was also crying all day My lunch normlly costs around 500 yen . I like the food of Izakaya restrunt during lunch . What do you whink about music ? On sep 13th , he made a call to his mother pretending that he was abducted by a kidnaper . He confessed that he had stolen / imbezzled his company 's get - together expences and he was afraid that the company would find out I have no idea how much he spent of his company 's get - together expence . The TV news shows the royal family turning up to where ? three times in the morning and shook hands with the people gathing in front of the emperial palace . I was physicaly and mentaly exhausted but I became aware of something . I want to become better tommorow . 11 / 12 / 10 - Never Lose Your Initial Enthesiasm So when you think about what to say , the things you wanna say can come out sponteneously . He said that there 's a rumor that radioactive substances may be carried by the wind and the Philippines might be also be contaminated by rain due to the explotions of the Fukushima nuclear plant . Now that does not make sence at all for me . I so hated cleaning , espessially washing floors . And I like to rid of uselss things . Because you can always fill this space with something usefull or with stuff you really like , later . I must will have to find mysels very embarrassing one day , than there will be no stuff to through away . But from another side , the more time I spend clining , organizing my stuff and decluttering , the more areas I find to do it with . Sometimes my friens are joking that someday I 'll turn to Monica Geller . ) ) ( And I actually improved my English a lot this way . ) So I desided , during my decluttering week not only to get rid of stuff , but to clean my information space , too . Now I can easily find the book I need and not search throught all the folders on my computer . Three years ago I visited Rio de Janeiro , Brazil together with my friend and kher mother . They openned EVERYTHING : bags of souveniors , pouches of cosmetics . . . The Brazilian officer openned her bag and found a pack of umeboshi and was asking her what it was . The officer openned the package . We could n't look ( past tense ) around enough because we had enterd there 30mins before closing time . I could n't remember which words suit the sentences , even if , I had alresdy studied them . In addition , both campanies have been known for being conservative as big companay usually are . The day she borned was born was just like yesterday . Now she has become a talktive little girl and has her own ideas . At first I was sad , because it gaves me feel that she does n't think I am her friend because she always complain that she really want to meet the other friends . This is an important exersice for me . I 'm looking forward to seeing `` Pirates Of The Caribban 4 `` . I registered on this site a few minites ago . Recently I tried playing the guiter for the first time of my whole life . I go to guiter school and have a happy time with my teacher . But I want to play for sameone , sometine . I want to enjoy writing my dialy and getting to know many people around the world . Travis is a band from sccotland . Their sound and rylics are warm and confortable . One of my goals is to obtain better english abilities so I can comunicate with foreingner . Another goal is to have meny friends all over the world . If you underatand my goals , please teach me correct english . Everybody is good at English and they spoke so quckly that I could n't understand . I did n't understand what the teacher was talking about and the sheetes he gave us had so many words I did n't know . I am an exchande student and they may think I 'm good at English . I like rainig however today was horibble because there was snow on the rord . The rain melted it . I alwas bike to work . I 'm preparating it , that is to say I 'm doing general house cleaning . I finally bought the magazin `` ELLE girl `` ! We wish those victims can get thouhg this disaster . However , I had to go to a driver 's senter , because my license had almost expired . Please corrct my English and tell me your opinion ! They overcome their weaknesses throught religion . He decided to build a laxurius hotel for Indians , but I think it is very expensive . I made some chocolat . Today is a holiday known as ' labor Thanksgiving Day ' in Japan . We respect labor , celebrate production , and thank each other . One of the his works were offered to Yakushi - ji temple in Nara prefecutre , Japan . Cause I finished my eassay just now . So I cancle my plan , and instead played guitar . . . My favorite season is the winter because I enjoy snowboad . I 'm looking forward to snowboading . I went to Chambridge in August three years ago to join a summer school at Chambridge University . Cambridge University consisits of lots of colleges . I decied to have a personal trainer at home . I bought a webcam from a Hong Kong web shop famouse for cheap prices . They sent me the webcam whithout any software nor a manual . I do n't know how to prove that the webcam is acturally 38 thousand pixels Does anyone know how I can check my wecam 's pixels ? Then I 'll play tennis with my friends , study English , and apply myself to my reserch to graduate from my university . He lend me his spair folding umbrella . I stady law . My hobby is wach movies . Scond , a single mother in a hostel looking for job . I have to tell myself that everything will be ok because this is all temprary . At today 's meeting , the manager asked us to make a summary about this month , and at that moment I realized that I have benn here for more than one month . Now I am thinking about how to weite my summary , because my colleagues want me to write it . But I am waht I am thinking more is about whether to go on with this job or not , and there is another important thing . . . I want to do something using English and I want to get experience with business , but what I am doing now is not very concerned with English . My favourit festival is Spring Festival . The students study extremly hard with a view to succeeding here in Taiwan . Many Japanse English teacers use college entrance examinations as an excuse for them to stick to the traditional method . I read sometimes on the bus , but it is not always a good experience . It moves a lot , I fel dizzy and I have to stop reading when I have to get off , not when I want to . I have the most beautiful book in my hands and I 've been waiting for the wrtight time to read it . My boyfriend gave it to me in October . It is February now , and I have only read ten pages . I 'm studing English every day , I 've been reading my last journals , and I must to say that they 're very badly writen xD I was so annoied by the work I did last semester . I was so sleepy that I drank toomuch , then I felt sickey . When we use the definet article `` the `` before a date , The Dark Knight is directed by Christopher Nolan . I think he is a great film director . I have watched Following , Mement , Insomnia and The prestage , which were also directed by him , and these movies are amazing , ( I hete that ! ! ) that 's why I do n't like cooking anymore . . . . ; ( Friends are so fuuny ! ! Chiba has Disneylad and is near Tokyo , so it is a convenient place to live . Of cource , almost all women in Japan including my wife hates such plans . Because when I was in the first year of elementaly school , my classmate put a frog in my clothes . She was crying hardrly . I did n't want to take the bus while it was rainning and I did n't have any bus tickets yet . ( ougt not , are unable , must n't ) my name is Monika and I would like to practice my English , because I 'm thinking about studying law in Reykjavik ( Icaland ) through the Erasmus programm . I went to Kouch in Japan . I traveled to Shanhai last September and visited a big book store . The newspaer says , according to Ladbrokes , the U . Hi , I 'm Sofia Eliet . I 'm learning the Korean lenguage because I want to go to Korea in 2 years , but first I have to go to E . a mock cavalry battle , tug of war and great jump roap . I perticipated in an obstacle competition . When I arrived at the hospital , It was really hard to find him becasue hospital was sooooo big ! ! ! Actually I still ca n't belive he has a really serious disease . But I learnd it very happily . Three days from tomorrow is one of biggist holidays in Korea . For a while , I think when I went to my company this year is spetial . ( ? ) I went to the Garman school to join in a party . Any differencies ? Good morining ! I think Japan has a huge comic and animation industory . Peole in some counries have to work in hard working environments . Your counry have been capiatlism for a long time , has n't it ? We have long summer vacation , from the last end of this month to until Septe . My son brings his lunch to his kindergardten everyday . I think Japan is not only an abundant cluture country Recentry I 've been studying hard , because I will take an entrance examination to a university this year . So I will writte this diary as much as possible to raise my English skill . ( many entries ) And my birthday is comming so I want to do something amazing on my BD : crazy stuff like Bungy jumping , paddling a kayak in a wide river , climbing a cliff , skydiving and so on . New York or Los angelas Is anyone here from New York City or Los angelas I met my freind during my college days after a long time today . I ate an eel and he ate curry and rice at lunce . We talked about the reserch that we usually adress to each other over lunce . After lunce , we went to a karaoke lounge . flabergastted - > I was flabergastted because I noticed a big cockroach in my room yesterday In the aftenoon , I met my friend after the exhibiion . Hi . THIS IS MY FIRST ENTRY IN THE WEB . I am a studiant of English . In Spain we have a bad sistem of learning idioms , unlike like anothers countries of the European union . In those countries you can have a normal conversation with 3 or 4 idioms , but in Spain you ca n't talk very well in english and you only can say the numbers 1 - 10 in French . . . hahaha I should learn the most english as posible . We went fishig and we got three ! ! Staying abroad is a very good experiende ! ! ! I workover overtime today . Oh , the shoes I ordered on the Intenet have been delivered ! I should take them out of the box . Neverthless , the Sichuan style bean curd I ate was very good . I do n't need good pronounciation , I just wanna make friends ! ! As a new staff , I respect my collegues , I try to do more things than the normal , Last night I went to Xinshe Township , a town in the mountains of Taichcung . Afther dinner a couple came over to drink beer and talk with my husband 's younger brother . The couple 's daughter is a very prety gril . You know when you confuded everything that really matters to you . Even if you are interested in reading it 's sometimes a little bit tough to find good , intereting books For exemple , My entries has not been corrected , I wanna put it in the place of latest articles for letting everone know that and correct for me ? You might gather it for a period of time , then you will see how it brightens our life . To me , flamenco is a living attituede . ( < - - - weird sentence I know ) We had to do the weirdest things , like making up a 5 - minute play and perfom it for about 200 people ! I want to grap something but it does n't wrok . I work hard now but where 's my futuer ? Because of it bein too hot , I did n't sleep well last night . I will have no claases tomorrow . we thought this pain was suffered from mensturual pain . We 've not been learning Japanesse enough to know these phrases , that 's why we need help . . . But of course , we would tell her we had help , cause she knows we do n't know japanese : ) For that , I deceide to take the new year challenge of Steve Kauffman at Lingq and aim for 500 hours this years of listening of Russian audio materials . I expecially / check / correct those entries which have n't been corrected . With worries , I was away from school and tried to have a job conserning NGO . She said to me that why do you want to study this , why did you coome to me without any fundermental information and this decision is the most important decision to me for my life ever . About the outdoor lesson , I 've propabily learned how the factory works . Is love so imprtant ? In the course , the proferssor asked us one question : `` What may you do for love ? `` It means that love is not the main parte in a relationship , being concerned with some is . Do n't you think that it 's a good idea to cellebrate special days in this way ? Do n't be fooled by the old - school beginning and non - color vedio the director orchestrated . My youngest sisiter You can prduce ideas on your own ( or : You can produce your own ideas . Today the Japanede socore team competed in the first game of the World Cup . I forgot , becouse I was listening to the radio at that time . I love Nakazawa , but the Japanse team is a very weak team . The beggining I 'm Mefi and I just registred myself on here . There are still some erathquakes now . I 'm not good at speaking and listenning English so I hope I can meet someone who can speak japanese a little . For resposobility ( ? ) for peple . Viens ( ? ) still ( anyway ) are buzzing . Now I studay English at college and by myself at home . But I get the message : corection boxes are open , please close them . Yeasterday , it was a fine day . `` Most mothers with a baby who was as old as Rei - chan were accompanied by their hasband . `` I enjyoed this trip . My boyfriend made me breakfast this mornig . I 'm trying to learn to speak English wich is a third language to me , even I understand it easly but it 's hard to write or speak in English , I have a lot to improve on , and I want some ideas on how to do it , . I ( startde ) to study English yesterday . Someday , I want to ( speake ) English like a native . I bought my cellphone that day , so I could exchange my number with them , and the number of friends on facebook increased so much . It is really huge , according to the weather forcast . To be a fashiom buyer has been my dream ever since graduated from fashion design school . So it is clool . I had dinner with my high school friednd tonight . My frend called me and told me all that she knew . All the people were affraid . Thanx , bye ! ! It has been ontinue for three months . I got throught the worst of the coference presentations . I have always gone to the tutor centet , and I got a lot of help from there . I was impresed to learn it was a true story ( and what a story it was ! ) . Because I live in the Philippines and my sister lives in Austrailia . I 'm vey tired . This verse is excellent , I follow this , but this does not mean that the anothers people will be the same way . I like a manga called `` ma h ga `` In japanness . I aslo like `` o ta ku `` . hehe It is my secrect I seldom tell anyone else besides friends . I would be kindy and gracious to anyone who wants to be friends with me . Also it was exiciting for me to play with my niece ! I know Japan does not like this situation becasue they depend too much on export ( business ) . On the ohter hand , some people appreciate the weak dollar and strong yen . probably appreaicate the weak dollar and strong yen if they do business between their countries . We international students are not allowed to wrok legally outside of campus . As you may know , the G8 summit is taking place in Japan now , and the exchage market depends on it more or less . I found an interensting news item . However , it can not be helped in a sense , because Japanese people have no custom of speaking English in their daily lives and the language systme of Japanese is too different from that of English . In fact , there are a lot of international students around me , and I found many intereting differences among them such as taste or way of approaching people : ) `` You do n't need 300 million treets tell you that `` ( Incidentally ? ) Accidently , we held a party with my primery school classmates , It was better than I expeted . Incidentaly , I would like to have language learning abilities ! I thoght `` I need to learn English because I want to travel around I want to use my freetime to study English and read books obout business And I started learning Janpanese in the university . The male dancer was very short , but he had very good basic steps and musicalty ! ! ! ! I will go shopping , play video games , and go to dance classin . I think English grammer is difficult . I am here to practice some languages and to make new friends from all ofthe thecountries ! and I made chocolat . But I do not feel sleeply compared to yesterday . I 'll tell you about yersterday ' s lunch . first , it did n't separate the non - smorking area from the smorking area . I really hate smorking [ with a passion ] . In fact , my teeth are not so good becasue I didi n't know how to brusy my teeth when I was child . It was fun for me and maybe theuy too . . . So I said if you can really crean your teeth you wo n't have bad teeth like mine . . . . I wanted one with a large vocabraries , phrases , an English - English dictionary function , and various English fanctions . I do n't need any fanctions unrelated to English . I 've never heard that the maker has produced electronic dictioanries , but it has produced good quality dictionaries and has a good reputation for it , according to the staff . There are many interesting places though , really clowded , obviously dirty , and sometimes I feel strong stressed . My cowokers all quit their job because of depressioinlow spirits . I 'm MCUH healthier than other people . Could I frighten them by trying to get aquainted on the street ? I was so excited to have a chance to study Japanese in my own city but now I 'm a bit dissappointed . At the entrance , many peaple were waiting in line to pay . but it is also very stressfull . Now I can study with concentratively . I need to enjoy living in Anstralia because I do n't have time . In thsi afternoon , I 'll leave from here , which is Osaka , to Ibakaki for work . I had to line in a long long que . I am stading English now . I want to comunicate with foreigners . However , my daughter baught it to me , it 's her love . My husdand sent flowers to my office , I felt happy . I dislike rainy days because of getting wet with rain and can not keep my tention fixed . please give me some adices . I am a haapy girl and I like to make friends from everywhere . ~ . ~ I think I have enough time to learn English & Frech . I make some frieds from all over the world . I did not prepare very well , now I am a little bit ancious about it . The most difficult part is pollitics , I do not like it because it is so boring . Evryday I have to read English and German . I wish I had more time so that I can achieve a heigh score . 3 The Businss Japanese Proficiency Test ( BJT ) An Israeli friend whom I met in India when I was traveling recommed this movie It was a releace date . It gives various services containg some online dictionaries . And those days when it hit , were as if god was ungly . . . Jaoan should positively increase heat generated electricity . Trains are abusolutely imperative in Tokyo . So some pepole were stacked in the station , just waiting for the restoration of the train . A bad start for today , hur ? In Taiwan , people are shy , and introverted , so they need singers and firtworks with them to celebrate the new year . On the other hand , in Vancouver , they celebrate without firtworks and singers ; they always go to clubs and pubs to celebrate . Today 's weather forcast was rainy . I am plannning to go there soon . They say that an another huge earthquake , which might be as big as yesterday 's or even bigger , will be comming in the next week . I think I have to read the book curefully . A freind of mine was suprised my unexpected gift . I hate Nattto ( it is Japanese food ) . I am really waitting . . . . . Congraturation ! ! Learning Deustch ( or German ) is so difficult . Can anyone help me ? Vielen Danke ! I want to paas an exam of level 4 . please give me help ~ ~ In our schedule , we hada to give a speech and take a small test . SO Iit is very lucky ! I will enjoy today . I did n't eat much of my favorites because I was afraid of getting a stomache as I did yesterday . according to the public report , eletrical tools are getting more pupular in daily life . Now most people use electrical lamp instead of candles , digital camera instead of foolproof camera and conputer printing instead of hand writing , As the years past by , though some electronics have become the most important part of our life , we can not imgaine what our life would be if there is no electrical , so people call teh new century as digital age . In the digitai age , maybe sonmeone can not realize it clearly , but without the computer , without the TV , without the phone , what would our life be ? we have gotten used to the convinent life by electrical tool , we use the conputer to search for information , because books are to heavy to find a little information , we use the TV to watch all kinds of program , because we can not travel around the world , we use the phone to get touch with friends and parents , because we are far away from them . It was a little funny because we were riding on a really srange road because my boyfriend did n't want to go on motorway because it is dangerous . But sometimes the road was very unconfortable . CONGRADATION ~ matarnity leave The icy and slppery roads were dangerous . Someone said `` a theacher has authority because the teacher can educate not only school subjects but also the ways of life . `` I still have ( a ) headache even if I took medition . But how come the Starbucks stores I go to alwyas have many customers ? I bought a Starbucks grande coffee and made coffe at home too . Acuturally it feels good . One of my firends joinned a photography club . . The actor who played Geroge Havey , Stanly Tuccci was very good . I respect her behavior . In honor of her greatness , I 'd like to share her most famous song `` True Colors `` with you ! Generaly speaking , old people have weak backs . just they are doing the best for their own porpose . I know I need to be confident and patient when larning other language . I am usually cheaful after sleeping . Anyway tomorrow is Fraiday . I 'm usually not into soccar . I was there from the Belarus Republic in my Hetalia costume . I love her so much , she is such an unnormal girl = D Various holydays are lined up . In Korea , there are 24 hour Fitness Center . I went to cram school this morning , and eight hours a day exhausts me , but I have to finish econimics and statistics courses during my summer vacation . We havt to study English very well > Who can help me ? If you can , please add me as a friend ! I have to do reading assignments for classes and prepartion for study circle today . I think that is NOT because the movie is not interesting , but rather because my expctation is too high . She is going to have the baby in Octorber . But I ca n't unbelivable that she 'll have a baby at such an early age . I do n't have any cavicity , but my teeth are poorly aligined . She did n't give the baby vitamin K to prevent hemorrhage . ( In this case , hemorrhage was easy to predict ( in the baby ) . ) Yesterday I wote in my diary that I was bitten by ants in the park . If you have an interst in me , pleaes get frinedly with me ! By the way , I look for my new job , because I will work for an interior design company asa a salesman . I went to other countries , to Italy , Turky and Indnasia . Also , one of my friends wrote on mixi , `` I want to go to Snow festival , but if I look around throughly it is too cold , so I want to go there briefly . I need to train to drink , to be stong , so I can enjoy drinking with my friends and colleagues . Maccaine is trying hard to reverse it . I have been studying Eglish for many years , but I am not good at writting English . To improve my writting English , I joined Lang - 8 today . From today , I will introduce my favarit thing in Japan . It is very impressd to me . . Today I read a articl about that how you improve your language skills . I belive that someday , I will be able to express myself fluently in English . She laughts . ' Slient is golden ' Whatever you are , it is the common sense rooted into our mind . Ironically , in my experence , being slient always guides me to failure . Sometimes slient can be equal to being non - active . I 've gone out many times recently so today I was planing to saty in my hosue all day . In this summer , I had a opportunity to speak with African - americanese , but I could not understand what he was saying . I 've been thinking recently that English ability is how well you undersanding all English . At the beginning , he seems like a stupid boy , but actually he is very intelligent - he is a genious ! The Japanese Ministry of Health and walfare advised patients to stay at home if their symptoms are mild . This morning , her tempareture went down to 37 . 3C and she seemed to feel fine . She was running around and playing . Japanese narionality # 2 Most Japanise are not religious , but thei attitudes reflect their culture or nationality . For example , in Antartida , which has incredible views of landscapes of ice , the ecosystem has been affected as a result of tourism . To get there a simple traveler emits 4 . 5 tonnes of CO2 ( carbon dioxide ) , wich is an impressive amount of pollution . Today , tourism is in a crisis as a result of the economic crisis , but we must not forget touristic activities that include the preservarion of the environment . Thereforel there are places wich include both activities : tourism and enviromental care . I always ask myself what I learned here and if I lived up to my expectance . I like studing . My hasband always says I should study English ! ! ! Anna did not really complain that she was a donner child , or that she was not the beloved one . No matter how much she suffered for rescuing her sister Kate , she just accepted it without a word , untill Kate wanted to die . The first is I want to read web pages which are in Engilsh . I want to go to the ritzzy restaurant . In that restuarant there are busboys . Also , I always nibble on food like pizza , hamburgers and spagetti . Yesterdaay , I saw a man who was good looking . I went to school to submit my English reporto . : ) A few days ago my son had a doctor 's appoitment . I thought the doctor let them in before our appoitment . I left my son in the docter 's office and waited outside . ( More natural . ) For example , HAL in `` 2001 : A Space Odyssey `` and Draemon or Tetsuwan Atom ( Astro Boy ) , show the characteristics . Uh . . . . I do n't know whether Westerners tend to think like that , but I can say that Japanese have a close affinity with Draemon and Tetsuwan Atom ( Astro Boy ) . Although , the experiments were not totally complicated and could be found in books , it gave us the chances to improve our manipulative ablilty . I was doubting myself whether I was fit to do sintific research for I always made mistakes whenever I did experiments which could be prevented and not occur to others . But lack of sleep might cause some obstacles to today 's schejule . A Jananese novel I think that it is too difficult for a forigner to read ( in Japanese ) . I wish I could help her because I am happy when a forigner can read a Japanese novel . Although there are many organizations that evaluate which city is the most livable arounf the world , one of them says that Vancouver is the most livable city in the world . The city of Vancouver got first place of the ranking for multiple consective years but I do n't think so . I have almost lived in Vancouver for 2 years but I do n't think this is the most lilable city in the world . Who the hell is thinking this city is the most lilable city ! ? I think they need to add the sentence `` For rich people `` before `` The most lilable city `` I think these topics are too difficult to be writen about by me . In today 's education - obesessed society , more and more parents encourage / push / force Bacause compulsory education negatively affects chilren To begin with , living in modern society , foreign laguage skills have become a neccarry subject , In fact , noteworthy intenational companies are looking for talented people who are good at speaking their respective laguage . It would have a nagative effect on them as a whole . The acquisition of / development of foreign laguage skills is not the only ideal way for their future . Chilren are apt to concentrate on what they are intersted in . if their aptitute are discovered , it might provoke positive result widespread . In conclusion , althoug the global arane has led to the pressure to master a foreign laguage skill , in my opinion , however , there are an infinitude of potential in children ; parents should find their ability in all aspects . As more and more people stay healthy until they are into their seventies , some people argue that the mandatory retirement age should be abokished . Ohters argue that if the elderly do not retire , there will be fewer job opportunities at the top for capable younger people . Discuss both positions and indicate which side you agree with and why . I did n't exercise for two months after grduating from my university . I allways played online game or surfed the internet . Today it 's rainning . Each life event may affect our mood temporarily , but soon we adapt the situationn and come back to normal . She said , `` It 's very cold outside . Why do n't you borrow your uncle 's ssocks ? `` I went to Kariya and ate Srimp with rice for lunch . Then , for dinner , I went to Kasadera and ate rahmen . Indidentally , are foreign entrance examinations hard ? I can no longer have rotine conversations with him . I met him on the first day of unniversity . North Korea and South Korea are divided by Imjin River My compliments for the blog , I accidentally discovered it reading an article on `` Times - online `` , it is very intresting and provocative . In my opinion tachers are so important for society , they `` create `` the citizens of the future , a good scholastic system makes good citizens , good citizens are better electors , better electors realize a better government . Thank you for your blog I 'm going to become a regular reader and excuse me TEACHER for my bad english I 've been seriously studyng it for three months . Finaly , I find how fascinating getting into the movie story ! ? ? ? ? Now , I have been learning them systemeticly for about four months . I learn English conversaion by listening to news . . Of course , it 's a very common operation but when it happening to me , it 's much more dramatical . And then , I also hate the hospital : before I see a dotor , I feel good , after that I 've seen him / her , I have problems . We were worried about him and also , we could n't feel reluxed when a man was lying in front of our houses . Sheldon is impressive and idiochromatic . As we all konw that economic crisis has a great effect on different industry . I don not care about any difficuilties , I will try my best to another job . She siad she has been very happy with classmates every day for one year . At first , we thought everything was ok and that there was nothing better than that . If a progrem has sexual or violent content , we indicate it with an 18 sign on the screen which means that only people over eightteen years old can watch it . ( Usually , Korean progrems indicated over 18 are n't even very strong . ) I do n't know if sensational programs have big effect on people and kids but I 'm curious if there are any reactions to those kind of programs . Today is Augst third , when I finished my studying for my cream I was happy beacause it has n't rained for two or three months in Taiwan . Yseterday I saw a movie called `` Obsessed . `` But the woman did n't give up , so the woman tried everying she could do to try to attratct the man . What is better answer I can say if someon ask me to help ? `` He 's Not That Into You `` is a very interesting moveis . It 's a korean soap oper I will be verry happy to see my friends . These days , I have had a violant cough that makes it impossible to sleep or talk . A doctor told me that it seems like asthma , but the problem is that the pill the doctor priscribed does n't work at all . Except for speaking , I can practice English with tools such as podcasts , smart . fm , and bloging in English . The day of the dead or alive test is coming soon on 21st of this month , so I 'm striving to get high score on the test every ninght . because I want to improve my inglish However , in the midlle of development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becomming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . Nomally $ 20 a week for each person is the regular price . I trusted him , so I said , `` Yes , it 's ok `` . I said , `` It 's ok . And T knew that the czesh man had to leave regardless . Everyone who registerd onthis site would like to practise and need peopleothersto correct their writing skills . Since I am not a native speaker ofEnglish who is familiar with writting in English , So I conclude that my learning process is enabled by others who help correct my mistike , especially better writers who make brillient helpers . Yestuerday , I went to the ONSEN near my home . Lukily , the wine , pizza , pasta and salad was tasty enough to make me happy . Pega went home by flyin on ' Kintoun ' , which is a special cloud in the sky . I have nothig else to do so I my laptop on and am checking lang - 8 site now . His owner said that he wanted a dog with a perfect pattarn . For example the black pattarn around eyes must to be symmetry . Mybe this is the reason why I sometimes lose myself in the TV shows . Nice to meet people all aver the world reading my dialy . Thanks for reading it . I 've dicided today that I will alternate between English and French in my diary . So I choose this picture which was taken at Fushimi Inari Shrine famous for the thounds of Torii in Kyoto 2010 . 12 . 31 . I 'm going to tell you about my 3days and 2nights travel in Kyoto in my next dialy in French . Wednesday is a sepecial day within the week . I wonder how foreign peopke think about the system . My computer was infected by diffieret kinds of virus . I still wore a thinny T - shirt for running . Poeple spent their time freely and easily , things looked to become more expensive . Though it was not the same , the atmosphere and festivality called me back to the Jpanese I am always suprise when someone who sutudy Japanese knows alot about Japanese culture and history On Frbruary , I 'll go to America . I learnd a lot of English from them . I have never been to Indonesia , so I do n't actually know zbout Indonesia . I caought a cold again . But I could n't say anything back to him , beacuse of my poor English ability . I dicided to improve my English to the level where I can argue back . I got the informetion for this wonderful site from another website . I hope to speak English to comunicate all over the world . `` Perrier `` in French is much better than `` SAN PELLIGRINO `` I rhink . I did not know this before , and I usualy drink Morrisons ' banana flavoured milk . ASDA 's banana flavoured milk is good and the banana tasete is stronger than milk . Five mimute English to bigin So today we 'll go there togerter . I 'm glad to drink a delicious beer , but I 'm nurvous in this situation . I hope our convasation is fine . First of all , regardress of living in the grobal world , we still can not stop wars and most countries still have weapons . Although human 's life - span is longer than ever before , we have to cambat disease which could kill human and animals . And around 22 : 50 of yesterday , he came home with a small capcel . From today 's morning , researchers are serching his capsule . The most beneficial change I can think of would be to the equipements used to connect to the internet , so that both students and teachers could connect to the wireless internet service anywhere in the university . In addition , if the university had the wireless internet conneciton service in all areas , students and teachers could access the web whenever they wanted . Such a service would help them to study with the latest information for their research / on the topics of their reserch . Therefore , I had to follow the new informaiton every day for my reserch and I had to go to the computer center to access it online . With the wireless internet connection , I could make my reserch in the library , wich was much more efficient for doing my work . If I were a university student or teacher now , I would certainly propose to introduce the wireless internet service in the school , wich would have a huge benefit for the students and teachers . I will use Lang - 8 to improve my English and write dirly . A new person is comming . However , when we are playing tennis , I would like them to consentrate on it . I have been feeling cold from Sunday moning . There are sooo many things I would like to write about ! I am starting to write this diary , becase I 'd like to go to university in America . Vietnamese generally drive motocycle . I made Vietnamses friends , who showed us famous restaurants and markets in the city . My inpression of speaking English . This is the firt time that I join in Lang - 8 . I am a international student in Singpore , although I am poor at english . . . but I want to improve my english , I am also a easy going person . . . . So give me message if u want make friend with me . and welcom everyone to revise . Thanks ~ ! ! It is not untill they blooms that I can feel spring . I am askin with myself . I need to improvei my Japanese , but I dont know what should I do . . . Can anyone show me a site or books , for dowload , to learn japanese grammar ? Onegaishimasu . I want to get started from the beggin , grammar for 10 years old japanese kid . I think I can start for : ) I 'm starting to think in different way and I 'm trying to understand the foriegners ' thinking . It is very deficlt . But BBC also mentioned if Japanese goverment stopped using all nuclear plants , electricity would not be sufficient in Japan . However , after I heard his comments via BBC , I felt that his comments woule be a second disaster . Because I had to wonder that nobody would trust such a prime minister who has no practical ideas of electricity supply insted of using nuclear plants . 5 , street smart : smart at living or expactially at social skills is an engeineer . 7 , govener : the leader of one state 9 , prinmitive : natural At first , I bocame a member of `` rarejob `` services in the Phillipines . There were many legular characters ( maybe few too many ) in the show , so I did n't see different sides of characters in the first season . I celerbated for the new year with some friends in a club . There were many memeries for me in 2008 , but there will be more chellanges and opportunities that I need to seize in my life or study . The year 2008 was a specil year for every Chinese . We all experienced the Beijing Olmpic that the whole nation celerbrated , but the tragedy of the earthquake made everyone heavy - hearted . Everybody tried thier best . I found it 's calory on the back of package . So I ca n't eat it over one pce per day . A Deligent Policeman They sell many kinds of murchandises : foods , drinks , snacks , magazines , sundries . ) I was very perplexd but I managed to explain my innocence . Anyway , I 'm fine here . I work at a healthcare related company nowdays . I took part in the Aotumotive Service Equipment Fair a few days ago . I went to Beijing 's anmen Square on the 16th . He was an elite student and I feel very sorry becuase I was a little bit jealous of him . He was an engel to bring many MP3s to give them to many tanjanian children . Because his major was architecture , he made the blueprints to build some buidings . My snowboarding trip was postponed untill next month due to my car 's problem . I was suppouse to buy an aoutmotive chain by the day of the trip but I could not . I am little bit tired and feel like I have just come back from a long jorney or something ^ ^ but I think I really did enjoyed her staying at my house ! The policy seems to be quite unique because Bhutan 's goverment says that they measure their development by national hapiness altough most countries measure their development by economic growth . I have a lot of time to correcte entries today . What happned ? ? ? I have n't writen for a long time . I live in Ulsan which is a metoropolitan city in Korea . I am pleased when I can hear thier singin . However , I was just lazy tempolaly . I thought that when I study something , learn something , get some skill and then , acumulating anything that I have got today in my body just like deposit . Everything that I do is recorded and it 's going to acmulate in my body . Of course it 's just a wonderful place for rhotography . But finally , I still believe tomorrow is another day , everthing will be better . If somebody corrected my last diary , I will make friends with sth . The stand seats are expensive and people can see only the instant the car is passing in infront of them . I 'm studing Infomation Techology . becouse I have an exam in October ! German is a little hard for me , 'cause there is a strange sound made by the tounge . I think I need to introduce maself first but , unfortunatly I couldnt get a job with tattooing but , I dont give up yet and I hope u guys also keep tring and keep working hard Today , I had the part - time job of helping a professional camaera operator at a wedding reception . He has friens who are 16 years ago , I went to America , England and Korea : - 0 But I can ` t speark English . Someday I think I could sperk in English . I could n't get out of bed immidiately . They say that they grew confident in their enterpreneural skills . I studied english in scholl 6 years ago and now I 'm trying to learn it on my own . She ca n't walk nou , but I think she 'll be able to walk soon . I like a famouse painter , Salvadole , Dali so I would like to visit and see sceanary in Spain . In America , I would like to visit the Grand Canion . My first Diary . Check pls ! ! hallo ! I had dinenr with my friend at an Italian restaurant . Firstly , there are a lot of shops , department stores , resutraunts . It seemed I had no idea what time it was when I was writing or reading the areticles . It 's a nice . hot sentence to lissen to . I think I could lissen to this everyday and to be however heated . - > ( ? ) Because intersting contents attract my focus . THE DIFERENCE BETWEEN SENIOR AND COLLEGE ' S EDUCATION IN CHINA We have a lot to concider after watching it . Of couse I care about the thing `` there is no need to be egotistical with each other . `` In addition , he said to me , `` You 're my best freind . . . as far as today , `` He always adds bad words on the end to hide his embarrassment . I was so touched when I heard his words , because I could n't see how he felt about me these days . I always wanted to hear his truely feelings whether they are good thing or not . He has been a fugitived from the police for two and a half years and was hiding in my Once I got up and got out of my bed , I heard a sound that my mom appearently made behind the door , so I decided to go back to bed again . I knew that if I went outside and tried to take a shower , I would n't be able to because it was obviously what my mom was about to do . today is internation lefthanders day , I am lefthanded , so it is my day too ! The melit of living Hiratsuka is that we can enjoy our beach all season . so we can enjoy a strech , talking , sunbathing and beach ballyball all season . That 's very useless for regonal economy . I want a nice cafe or Itarian bar in Hiratsuka Beach Park . There is a lot of plece in the park . The Denny 's near the beach is the only resturant and cafe where we can enjoy a view of the beach . I want the maiyer of Hiratsuka city to think about that . + mei - yor + I had planed to vist my city 's Strawberry Festival with some friends weeks ago . I was tuched ! and sometimes there are some chickin bones without meat on the bus . Because Kawasaki city anf Hachiohji is unbearably cold in recent days . I sent a text message the day before yesterday , but you didn n't reply . I didn n't know when you texted me . for just being in the eletion . And plus I won 4 tims in a row ! ! ! hallo ! I 'm looking forward for ur message : ) Which sentence is grammartical correct ? I have confidence that I can live anywhrere in the world . Yesterday , I was involved in canvassing for a candidate for the city councilors who our company supports . Anyway my coworker and I were visitting a home with a ton of fliers and cards already , and anyway we did not his policy or manifesto at all . I felt like a salesperson visitting to the door . Our clothings and fliers were all soaking wet . Becouse the average speed was too high for me . Oh , tomorrow , these successive holidays will fainaly be over . I found somthing changed . Every time I open a new page , a window pops up , and wants me to the set time zone where . So I set it up , but when I open a new page or update the page , it pops up again . Competion project _ 03 My daugfter stayed at Granpa 's house alone for the first time . I was surprised becaise she did n't sleep well when we separated but she did last night . I will give a birth this aplil so she is preparing to be sister . There are a lot of tourists frou various countries in Japan . I have no special plan during vacation ; I will go home to be togeher with my parents . Besides , on Oct . 15th , our college will have a celebration for its 80th anniversary . I 'm very lucky I can witniss this important event and I 'm also very honored to be a volunteer for the anniversary ! She had no intresting with computers before . I also remember the wonterful decorations on every house in Australia . Both of us had been involeved in their project before their debut , so we often talked on the phone at that time . I have n't seen them scince I left the company , but I heard some of them started to manage their own work in Tokyo after all . I 'm looking foward to meeting them as I expect that the meeting sould be inspiring . . . There was a severe typhoon last night , worse than I thoght . I saw broken unbrella everywhere . Finaly the trains resumed service but there was way too much traffic . I recomend two songs , `` Genie `` and `` Hoot `` . I was born in a littel town . Its name is Velikie Luki , and though it 's a very old town , it is n't very interesting . And while arhitecture in Velikie Luki is n't attractive , I like this town all the same because I was born and grew up there . I think that it ` s important to study hard and have hard time a lot when we ` re yong . Because I want to graduate with an average point of 4 . 0 ( Maximun points you can get is 4 . 5 ) As I wrote the day before yesterday , my university 's rugby club had a match yesteray . It was dilicious . Last week I took a fwe orders . But we shold never give up . On Saturday afternon I read a book called ' The Golden Rules ' . Next year will mean a lot to me , as I will have been studing flute for 10 years . ^ ^ I can know about the culture of different countries and konw more friends . I am studeing English with some textbooks . These sites are for Japanese who are studeing English . Sometimes Internet sites are very usefull in our lives . Do you have a favoraited page ? I felt bad , I think she should ansewr it one time and tell me that she does n't want to talk at that moment . I feel better now , and I can forgget it because I wrote my complaint here . I 'm a little surprised , because it 's the most specil way I 've ever seen ( for me at least ) to learn languages . To be honest , I 've been studying ehglish for 7 years , but I 'm still not too / very good at it . After ( I had ) ( a quick ) lunch at a Taii restaurant , I went to see the movie . The weather reminds me of the soon coming rainy season in Taiwan , and also of my alergic rhinitis . > < When the rainning season comes , normally starting in May or June , and lasting through September , it sometimes rains cats and dogs . Although the excessive rain can be catastrophic , such as a flood , the fact is that the rainy season accounts for the majority of percipitation in Taiwan . Overall speaking , I do not like too much rain or too many rainy days . I am afaid to smell a mildrew odor in my closet . On friday I went to my friend 's biethday party at shevron renaissance . After that I went to the fiddelers bar . I 've been hearling ( not linstening , I 've even been reading another book ) the audio book of Harry Potter and Sorcerer 's Stone these days . I enjoyed the rhytm of the reader 's voice . We looked like a pair of mooving snowmen . My frist English diary has not been corrected , I do not know the reason . Good mornig . I 'm very excited , because I have just gotten a micropone to use for Skype . Today is Saturday , so I wii saty up late . As I have a stiff shoulder , I wellcom this approach , as it means that we do n't have to My exhbtion will strat on November 21st . The last half , I got breathless in thire family background and the shocking ending . My close friend is a yoga teacher and her studio had to move to the other place this month becasue of the destruction of the building . I recieved an email from a woman . Usually , they are talking about his fastastic dance and song performances , everybody says `` he was the super - star `` . I mean , I am so dissapointed the way they report . Why they can say that he is a great star who they critisized cruelly the day before . He explaned how to use mineral foundation . After three hours of shimmmering , however , everything changed . We do n't have oppotunities to express ourselves in English . And I will save money for studing abroad . They were very succesful cookies . I chose the consevative treatment and Exchanging favolite things Before today 's lesson began , he told me some of his favolite artists such as Muse , Snow Patrol and David Vowie and he asked me to introduse some Japanese animation series that I would recommend . Althought I have been studying English for five years , It 's my first time going to America , and I 'm really a begginer at speaking English . I 've a very important test in english soon and I also want to definitly speak english ! ! ! I thought it means , `` make a moeny or deposit money `` Some Japanese companies are empoying Japanes bilinguals , but they sometimesgive rise to big trouble among their Japanese co - wokers , because of their behavior and skills . Taday I have an examination in class writing The teather told us write to three paragraghs applying the organizational patterns by developing time and space order , process discription and examplification and difination . I would like to write about Ead . All Muslims celebrat in Ead because Ramadan is finished . It is just for Muslims . Ead is just 3 days and Muslims can not fast in this 3 days because it is not allowed in Islam . Another western superstion is the numbers of cries of a cuckcoo bird being heard is reportedly said to be equal to the number of years of it being alive . As you know , we had to perpare for the national scholastic achievement examination for university entrance . First pitcture . - I was curious to see if that could really happend . Today , I went to Yamananashi to visit my relative 's grave with my mother . Engkish , I always make mistake a subject and a tense . Today , I investigeted Adobe BlazeDS in the office . It 's been a long time since I 've written diry here again . Oh , I really hate this coures . It 's maybe the sukest coures I have ever done . It 's about useless and complex theories . So , I have to deal with day by day , which you can imagine how terrible this feeling can be , uhm ? when you try to study something that you compelely have no interest in , it 's worth nothing . OK , I just want to pass the exam , so I do n't have to study this coure in the next term agin ! But thank god ! I hope I will pass it , and I hope my classmates will pass it too . What nice news , is n't it ? However , there is some bad news . Unluckily , one of my roomates did not pass the exam , so the only thing I can do now is to hope that he will be fine in the next term . I will have almost 5 / five exams to take , including history , philosophy , the theory of spreading , modern Chinese literture and ancient Chinese literture . Oh , Satan is going to kill me . The only thing to do is to deal with it and be confident that I can achive this and find a good job in the future . This book is comprised of only English qustion ! ! ( or ' My one word can exerte a favorable influence upon the students . ' what is better ? ? This is better My hobby is to watch movies . Recently I watched `` Avter `` . Tthis movie is very good . I went to an Itarian restaurant to drink Beaujolais nouveau on November 18th . Maybe that 's why I could n't spell in Japanese untill I had watched so much anime . . . ( I 'm joking ) . A fresh , ancle - deep layer of snow has fallen over the night and I can look forward to a good hour of shoveling before I can even dream of getting the car out and going to work . Some of them fight against others who have different religons because of their firm beliefes . I think since Australia has huge amout of natural resources , Australians can lead a good life . Miners have to work with danger and may be darty but they are supporting Australia , so I respect them . The following emil is the the most difficult one I 've ever written . When I get somethimg at the mall , There is a beatiful park center of residential state erea in my city . I like to critisize restaurants about their food , services and atmosphere with my friends . I am very interested in it , so I love HANAMI which is an event where people eat and drink under the cherry blossam . Hi everone ! I had a meeting from three o ' clock until six o ' clok . But here in Japan , all TV companies hestate to do so . I am striving to get a good score , reading english novels , watching American sitcom for listening practice , lernning by heart the important words and sentences . You just complain to yourself or to someone else , to smoothe your own feelings . It was a good chance to exchange opinions and information about the evaluation of quolity in health care services . I watched the TV coverage of the golf competetion `` Masters `` that is held in Augusta over 4 days , from yesterday until 3 days from today . I turned on the on - boad wireless adaptor . I really like learing English , but sometimes I still want to think in Japanese in my daily life . Sometimes I 'm tired ; so that is why I have n't posted a journal for a week . There would n't be a lof of things I can do for them unless I am a doctor . Luckly , I have a tutor . The first picture is my parter and me , The one on the left is me . but It includes poision . Saint Lolita progect started a progect named `` Saint Lolita `` I 'm really excitedd ! I was able to see a lot of music airtists and I enjoyed their live music . It was so palacable that I did not notice when I became really full . Eating slowly makes the feeling of hunger dissappear ealier than normal . I did not abide by the rule , I just pigged out , and now I feel stuffed and somewhat drowzy . In less than 2 hours I am going to MacDonalds to meet friends . Since I ate so much I dicide not to eat there . I feel like I had such a heavey burden to speak in english . And I sense that feeling , when listenig to a favorite song . Today my vocabulary test was retarned to me . I do not konw how to study : . ( However , no matter what economic situation in the world , peopel still get sick from time to time . In a word , nursing is really a practical and helpful subject although it takes a lot of hard work and time to become a professionl health care provider . The hard work would pay off one day . The story was about a man and a weman controlled by a FBI computer . Recently I was busy , so I coud n't write my diary in English . I had to change my money by purchesing something at a convinience store . He recomended this website for learnig English . So , I entryed it tonight . I 'm looling forward to enjoying this website . Marshmellow ( which correction thing ) If you take a bite of a marshmellow , you know that you 'll put on weight and get ulcers in your mouth . I went to a gynecology today . and I had kept the last 2 kits until yesterday for my less liraxing times . The pointer is powerfull , and gives another world to the developer to create in the abstract process . It 's because I want to improve my pronouceation . However , I do n't know if my poronounciation is OK , or not . If I were asked to tell the most exciting story ever happened to me - I would definatelly tell this one . The officer ordered me to fillow him to the safe area of the motorway . After the train had gone , I called out to the shoked officer that I was OK , and continiued to run along the train tracks to the Commonwealth Avenue where I had my interview arranged with employer . If I tell this to my friends or co - workers , some heatless person might hurt me . Then , we saw illminetion . I went to a photo studil , because I needed some identification photographs . It had good pirce and quality . It seems like a good way for women to get rid of stess . My class start at 8 : 50 from Mandey to Friday . Recently I want to go snowbord . Sometimes I need to anounce my daily plan , in order to remind myself to finishe it on time . I hope I can return your help in the furture . Today I read that Japanese law mentioned that a Newclear operator has to keep general public 's radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that general public 's radiation exposure has to be keepen below 1mSv / year . I think it is too high , especially for cildren because they are more sensitive than adults to radiation exposure . So I hope that the Japanese govenment will decide to lower the level under 1mSv at once . Some researchers , on the other hand , have come to realize etreme strictness does n't work well . Probably because he knew that I 'm not good at speking English and it seemed that he did n't want to talk with me . When I read and listen to English , there are often the times where I do n't understand the whole meaning of the sentens even if I know all the words . Probably it 's because English word order and grammer are different from Japanese . It 's because the words are too difficult or the pronouciation was not clear or too fast as is often seen in comedy . I have n't written a diary recentry recently . . . . insteed last night I had fight with my parents . however , this morning my mom called me . but I had to cut off the phone . . . and then I began to cry . . . . I could n't countrol it . . . . I know how weak I am . . . . I think it mihght have been down if my friend had not been there we talked an houer . . . I think we enjoyed the time together . . . When she was a baby , she had a serious febrile diease . I get up at harf past five , and I go to the square . DPJ won a histric victory . This is not tradional day but it is like a type of event . I have heard that & nbsp ; ninety percent of the company 's tatal revenue comes from this day . Can you tell me the differance between `` can `` and `` be able to `` ? What is the differance of their meaning ? My goal is running10 kilometers in one hour . The Japaneese language entirely depends on context and situation , and it is less clealy than Europian languages . However , Japanese people should not change their language into something like a Europian language , which states everything clearly , because it is part of the Japanese culture . Instead , Japanese people should try to make foregin people understand the Japanese language . At the same time , they should make oppotunities for foregin people to learn Japanese , and encourage its use . But one day , the National Tax Agency came to his two aprtments , his offices , and the establishments which he owns , at once . The next day as well . Finally , it was almost the nex month 's payday and I still could n't get my salary . Then he said , `` Are you saying ' When proverty comes through the door , love flies out at the window . ' , right ? While he was soring loudly , I thought about what he said . I am at a unviersity in Kyoto , Japan . I am afraid of him , so I told him `` I met an aexpectant mother , and she fell over an overpass , so I helped her . Therefore I brough her to a hospital , so I was late for class `` . because the teacher explaned it clearly . It makes my body strech , and my mind release . You will be soothed if you walk on the grabel path to the sacred places , while breathing in the fresh air generated by the woods . My husband , mathe - in - law , son , doughter , and me . I woke up at 8 ( ? ) as ususl . The winter is the clodst season of the year . It starts on desmber 21st and ends on March 20th in countries north of the equator . when I received my firend 's e - mail , I was thriied ! ! I thought I had a high tolerance for alchol , but I found that I do n't . It is thought that the earthquake has provoked a lot of faulta dislocation , so we could be hit by massive earthquakes more and more . My Chinese English techer told me `` To think is similar to consider . `` There are two types of people , who do not eat meat ; vegans ( they do not eat any food , which includes all food from animals / eggs and ther are vegetarians , they do not eat meat . After they grow up , my gnadfather kill 's them for their meat . By the way , this time interval is an interval of samlping that we called `` reaction tracing `` . We met each other in the back of a pachinko parler at 5 : 20 pm . Do n't focus on thier bad points , so that you can have many good friends . I 'm a Japanese girl that is learning English at the Kansai Gaidai univercity . I understand you should use pretent tense in a adverb clause even when you refer to the future . A new resolution is here : improve my English and start learning Japonese ( but , first I need a book , so it 's not for the moment . . ) . I 've been with them for 4 years . They are 13 - 14 years old , and now we are facing our toughest challence so far . I 'm impressed how it effectst the movie . It may sound just simple at first but acutually I think it really is complex , well - organized and expresses exactly what must have been explained . A black car started to move when the traffic light chaned to green . The driver oponed the window , and began to throw empty cans which did n't hit me . My home town was just across from the shore , so I was very familier with the town . When we crossed the brigdge , there was a big intersection , the traffic light was green . If I had been cought , I would have been killed or beaten up by them . So at the moment , my diriving technic was slightly better than Nicolas Terol 's ( Moto GP driver ) . It was a very dengarous car chase . And then , the stupid gangstars came , but I already was inside the site . I guess Chinese people put more importance on food than any other nation . Confucious said that `` eating is a great happiness . `` Maybe this is because of the long history and trandition of China . Chinese cuisine is amazing ! Firstly , Chinese food is healthy . Look at the people here . Most people are really slim : ) cus there are more vegetables than meat in Chinese dishes . Secondly , Chinese food is very tasty . We have four rules on good food : `` colour , flavour , apperance , and taste . `` Chinese food has the most varity . It 's very easy to satisfy ur taste buds , and you will be addicted to its amazing taste even though you may have no idea of what exactly you are eating . The seasoning of the materials in Chinese food is super important . Only the right materials can make delicous Chinese dishes . I like cooked food . It 's safer and healthier and also nutritious . I think the reason why he knows many dirty japanese words is his japanese frined . He influences a lot of freign students . So we went Shinagawa satation first . Next , we called the aquariaum and asked where it is . [ Diary ] Macaron I did n't know that the macarons are very colorful and cute . I was so gald to talk to them . I need strenth . This mornning I fought with my younger brother . When mom asked him to turn down the computer game sound , he got very angry and yieled at her . After that , he threw his mini computer because of his anger ( We are not rich enogh to throw mini computer . He thought I coul n't / would n't really throw away his computer because it was too expensive to throw away . But I did n't care about such a stupid threathen . If I had strenth , I did n't have to shuddle like before . I want strenth , I need strenth . Especially my doughter is really looking forward to seeing thehouse of wax the house of wax , it says there are some wax dolls which portray the ' ' The Last Supper `` by leonard da Vinci . We will have military training for two weeks , how can I get throuth those days ? I plan to set my telephon to wake me up tomorrow . At work today I was confused a lot and I had a headach , I could not think a lot ( either ) , maybe because I slept late . Today 's manu was tsuna sandwitch and milk tea . I 'm looking foward to going to the cafe every Tuesday . Nevertheless , as you can see , my English abilitycould still use one word to discribe itself . Tonight , I take my first step to restart studying English on this Lnag - 8 ! ! Two or three years ago , I tried to learn English since I needed it in my job to communicate with my collegue abroad . Tonight , I found this Lnag - 8 site , and I decided to restart my challenge : learning English ! Cywin Installer Disaster Do you ever have the same feling ? Would you like to tell me ? Not because of lonelliness , but so I get the oppotunity to do anything . I hope my dream will come ture soon . east - southnest of Taiwan . Have a nise day ! ! ! Yesterday , she was inculated for the first time . Americans , Vietnamese , Philippino , Japanese and Canadain etc . . . It 's still difficult for me to hear the speaking at ordinarly speed Beacause of personal problems , I disappeared from this family for a long time . for example , I applied to join ' Skye ' , but it acqiures that we must do face to face communication . Before this journey , we had never visit any foreign counties other than Guam and the Philipin . So it is difficuly concentrate . Right now it 's fine , but in the summer , it seems that electric power companies will be not able to suppky enough electricity . I always set my laptop in front of me , and adjust the moniter so I can watch more easily . When I watched one of TV proglam , I needed to click to move to go to the next movie . When you come to Japan and have the chance to watch a TV , you will see them absolutly . Today is Friday . I do my work as uaual , but it 's so boring and then I chat in QQ . I can not understand why the washlet is not very popular in America when Americans care very much about cleaness . In fact , I heard that celebrities who visit Japan often purchase a washlet after their convenient and confortable experience at restrooms in hotels . I have rarely seen people carring handcherchiefs since I came to LA . `` Japanese gamer marries Nintendo DS chracter . `` It appeard in a British newspaper . Gving up some habits to prepare for the exam is acceptable for short time . I bought some presents and gava it to my parents . They pushed the `` send ! `` bottun at the same time , as soon as the train gets out of the tunnel . I heard that there is n't a loker room when I went for my interview . He became an Asian cluture club leaber this term . My god - brother is very sweet and tendr , which is why he can get along with girls so well . This year is his last year in senior highhood . They wanted to play different roles , such as maids , servants , and butlers in a club permotion event . Sonds awesome as my godbrother is too shy . I find it intresting to write a jornal in English here . I will refresh my jornal as often as I can . I just want to enjoy the beautiful seneray there . last ninght , I tried again to install my computer system . I am a computer idiot , however , actually I was sucsseful , I installed the operating system ! so I flet very angry , because the question delayed my study ! today , I took the PET four Exam , it was terrble , from a total of one hundred I answered ten questions correctly , I have fiveteen percent ! oh , my lady gaga ! I estimate if I want a pass on the Sepetmber exmaintion it 'll be very difficult ! ! Though it depends on the day what kind of dishes you can find , I found Japnese , Indian , Korean , Chinese , Mexican , French , Germany and Turkish stands among many others . That ` s why people get to enjoy a glass of German beer with Turkish kebap . And it was located in Yurakucho , the center of the down town of Tokyo , where hundreds of busenessmen enjoyed their own private time after work . It was made at a small stand of a staton wagon , so it wasn ` t a full - dressed one . I want to know the result early and study for pre - 1 grade . Today it 's Monday , so I went to my school , and it was so boring becaue my teachears are n't flexible . I feel very unconfertable today . From last week , about ten people from Los Angels have been staying at her chuch . I guess that the temperature is 27 celsious , maybe . I lern english in school , but did not have practice . Now , I have found this intrasted site . In Takachiho area , we found a fantastic place where I asure you that we can live a happy life ! I wish I could have a partner who speaks Japanese or Englisg , so that we can help each other to learn a foreign language . If you show your phote people may think of you as a hot person even if it is not your true face , yet there are a lot of comments and corrections for your sentenses again and again from many people . but I had a speciall day on 12 / 26 . Then , I was very nurbus . Thanks to her help , Tifanny and me became friends . The floor of my room is coverd with paulownia which is often used for chests because of its absurbability of moisture . because I have never seen it mede in Europe or the US . On rainy days like today when I come to this room and touch the floor with my foot , it is so damp because of its absurbability . We say compliments , pretend to be good , behave like a human hidding a wild heart . Perhaps many people unconcious lie about tiny things . And yes , I 'll join you of couese . In this situation , I definately know their party is never held . That means going shopping to supermarkrts and groceries instead of my mother . I can check prices and know waht economy is going on , also I can meet my neighbors . But , my English communication skill was very poor that day , so I ccould n't go to stadiums and so on . Because of that experience , I was determined to learn Engish . Hi my friends . I woud like to speak English well so I need your help ! I am a good friend . . . you will know if you talk with me . I hope to find good friends ! : ) I 'm going to decribe two photos . She is the founder of `` CHANEL `` , the famouse fasion brand . Every step in the campus is an exploration and an advanture . I just remeber a few things about last night . : D The doctor told me that the cause of the symtoms was my warped pelvis . At first I planned to travell with my friends , but at the last minute I copped out . Of Ofcouse except for my girlfriend . I wonder if ther are fine . Fisrt , you might have heard of Taiwan 's traditional foods like Bubble tea and Stinky tofu . You can find them at local nightmarket markets everywhere you go . If you know how to read eary , please teach me ! But I really feel that if I want to improve my English , I [ will ] have to have the courage to speak with Enhlish teachers . Learning a foreign langage is not a easy job . You need to get enough information input in your brain , then it is possible for you to output the language correctly and influently . Happy Birtyday ! Two days ago in our country , a new actress committed suitcided . She acted as a minor charicter in a drama which is now broadcasting on tv and gets lots of attention from the public . Why did she commit suitcide even though she 's young and beautiful or even though she 's gathered so much attention through this drama . The acticles said that she had been depressed , so that might be the reason for her death . Nowadays in our country some celebrities commited suitcided suddenly and people , including me , have been surprised and shocked about it . I like anime , so I am watching 19 animations in this seaseson . This number is a lot heh heh hehehe . Especialy if you are interested in classical music , you can enjoy it even more . We must send our worksheets whith exercises to the manager of this course . Now I 'm excited in visiting a foreing country . The orange lights of the buldings are clear and beautiful , are n't they ? I went to see a movie with my freinds . It was very intereting for me . She Floating from Short Proglam of eleventh . * She was slump in the jump from Junuary of Four great land championship . * The near future of the Olynpics of February , * she found a letter while she arranged fan mail after practice . Lyman Brothers has just gone bunkrupted , one month or two months ago and AIG insurrance conpany is in financial difficulty , and the unitead States GM has fired lots emproyees My calasse start at 8am and finish at 4pm . Finally , I became a sophormore ! I do n't want to prepare for recuruitment . But sometimes I lose time for speaking Englsih by manking a lot of Japanese friends . Anyway , I want to try to use new vocaburaries and practice for my writing skills . If you know any good places , plese recommend them . I 'm studing English now . At the party , we drank a little bit and ate humbergers . Yes , I have some teaching experiences which I am still writing about in my jornal . Acutually , teaching English conversation is a small part of my work . I waoke up at 6 : 30a . m . Becaus I went to bed late last night . Most Korean students are studing hard . So , In most people 's eyes my military life was nothing more like working on a raunch , but it was a good time making another treasure in my heart . However , it is difficlut for me to develop my English skills . Of coursem , I am willing to correct your writing . Sometime I dream the similar event , I always dream that I am going down the sea and dieing , so I am afrid to swim , if my frind ask me to swim , I always refuse them Two falavours are in it . One was `` kinako `` ( soybean flour ) and the other was `` Macccha `` ( green tea ) . Thanx ! xxx And this is a Japanease Anime . If you read all of my entries , you probably know that I started speaking Enlgish ever since I came to Australia . This summer I 'm going to join two tornament . nice to meeteveryone . I am a new here , today our director told us `` leading and develop people `` I do n't know how to expression my pionon . in the afternoon , our 7people went to drink , and bought two steamed bread , today I felt very happy . There wewe many people and it was very hot on that day . the food there was n't ezpensive , so u can have a lot of choices . I was amazed becouse the snow had thawed . If you have a courege , you can try it . They are eiementary schoolchildren . I will buy something to parper for cooking . Am I A Gorrila ? At least it is relexing , right ? No doubt , It is suitible for most youngsters and even adults . At least it is a childhood memory in people 's mind . Of course , it is not ture . Some people called Studio Ghibli to ask about this myth , Studio Ghibli responed jokingly , said ' Yeah , is ture ^ o ^ ' . Finally the myth seemed to bustered by the declaration of Hayao Miyazaki . We 're supposed to perform ocarina at Qingdao ( Chaina ) at the end of October . You are far far away from me and you are halping me to learn English . Life was more dificoult . It 's imposible now , is n't it . I have been playing a DS game called `` Mario and Luisi RPG2 `` since last Sundy . If I can use this concentraiton for my work and study , I would be a big wheel . . . Yesteday I went shoping with my frends . And we pray to reach for the help from all of the world such as Libya or Afughanistan . I ` m studing English and know it at an intermediate level . But I got well quickly because Hawaii 's temperture is very comfortable for me . The problem with two kinds of medicne What 's more , she felt her doctor was not coniderate , so I gave her advice to go to another doctor to get a second opinion . Acutually , I do n't understand all the rules of american football . However , I wanted to see how crazy american people get during the super bowl , so I dicided to go to a sports bar to watch the game and the crazy american psople . I really had goot time , and I will try to watch american food ball this whole season . I woke up in 6 o ' clock in the morning , then I got dressed and I had to hurry , because my friend and I were going to the sea , but he was late lateand I was waiting for him a few minutes . I borrowed a thick book yesterday which is called SonwBording . I have never tried to do sonwbording . I wanna konw the real voice . It might have been two or three months bfore . I 'm looking forwrd to picking it up . ( ^ ^ ) I 'm going to go to an Italian resutant for dinner with my friend . I saw it in the theator yeasterday . This week I have a big exsam . I have not dicided what should I do yet . . I 'm so crumsy that it still takes me at least 10 minutes to open a can . I am a memder of the soccer club . But ther is some fun in my school life . such as , the Fusionopolis , the Biopolis , A * STAR and some reseach laboratories of private companies , if we could have the chance . The vet said he was n't sure what the ploblem is . Plus , if we find out she needs an aperation , it 'll cost 200000 or 300000 yen . But I am wonderin where the border is between people and pets . I think learningabout the other country 's languate where I want to travel is good manners . because I have to roll my toung . I 'm Korean so I 'm interested in neighberhood countries I just want to speack many languages for conversation with foreigners . I think the story is like most Ansian people . Work is thier life . On Saturday night I 'll have a dinner party wiih a piano . I 'm looking foward to the day , and I try to practice playing the piano hard . I am a system engnieer in system integration part of my company . Today is a rainny day I come from Taiwan , nice to meet you . Today it is rainny in It is a very tough sport , but it is very good exersize for me . So , I went to STD , and after that I went to Whittard - a tea shop , then I bought a tea pot and creamer as a suvenior : D becase it was on sale ! The youngers in China Therefore , they become ignorant to the feelings of others , but it does n't imply that youngers are no longer sympathetic or helpful . As for me , being one of the youngers , I tend to hold the opinion that the youth are the same as the former generation . People , especially among youngers , tend to do something by himself , rather than with a group . Furthmore , youngers are not unsympathetic because , on the contrary , we are full of sympathy . We remembered the dead people , symthized with the homeless children , and honorned the army . I oftern ca n't help crying because of all your great support for Japan . I would like to tell you what happend around me . I may find something intersting to write dowm . I am writing to expess my dissatisfaction with the service that I received at your establishment . I suggest you employ someone who is more skilled and has a better oarsonality so that your customers time is not wasted . the reasonis toparticipate in a conference ! I liked my country , but then I liked anoter country . One of my friends asked me before that you do n't like Japan , because most of Japanese go outside becasue they do n't like Japan . It is because of my countr 's system I feel . And I know that I am courious about all things it dones n't matter about my country or others . I was happy becasue we talk about each other . And I touched humster . Sooner or later a massive earthquake will occure in Tokai quite near the plant . I really experienced numoerous things therein those two weeks , four months . Unfortunatelly this kind of incidents happen every summer . Third , their weges are cheap . To end these problems , arent should stay with their children until they are old enough to understand the risks in the swimming pool . How are you these days , my friedns ? happinese . please open your window of heart , let your heart nhave a bath in I have lived in MACHIDA , which is in southest of TOKYO for 21 years ! ! Then , I 'll meet lots of people who have various nationarities and tell about good points of Japan culture . Also , the proffessional school students with whom we communicated could speak to me in English and sing Japanese popular songs together . I felt humiated , because I could not entirely speak or listen to English , although I had studied it for over 5 years . I feel confortable . Long , long ago , there was an impatient , errogent man . Suddenly , he finds out he is walking on a beatiful path surrounded and this moring I got up at 6 a . m . On Friday nignt it snowed a lot when an old friend of mine came to visit . Then we stolled along the road feeling the touch of snowflakes on our face . We went into a small reataurant to have a drink . I could n't use all of the functions of lang - 8 before by iPad , but apparently , I can use all of the functions of it byt iPad now . I will go to church and I want to meet new frinds . I hope I can get a good socre this time ! ! ! ! ! I am currently studying very hard to pass the ' ' TOEFL ' ' that is requred for International Students for entrance into Universities in the US and Canada . His speach was very interesting . Irreal houses , rivers , bridges . . . This is my first gernal on lang - 8 ! Woud you mind telling me , how to get the discount price written in the invitation letter . Let me intoroduce myself . When I was there , there were no airplane it was full of spectators . Expecially for last time I got car sick , we were just staying on the phone laughing after I was trying to catch a breath of fresh air . `` I will always be by your side , to help you out in soul troble . . . `` Hi I 'm hiro and this is my second dialy . These emergency drills were originally held on the 15th of evety month but now they only take place two days out of the year . When the clock hits 2 at the afternoon , scirens will go off , signaling the start of the drill . In addition , there are no shops , restaurants , or public transportations in this neighborhood . He had short hair and wore a white t - shirt and jjeans . I think I have two chaptors to go and it might take 20 more hours to finish the story . Overall : It seems like the Amazon River , which flows slowly , calmly and constantly rather than like Naiagara Falls , which flows dynamically , wildly and powerfully . This evenning , when I load on the news web 163 . He is only 48 years old and he is very excellent , Almost every chinese man knows him through his news report programm . endeed , I am in school preparaing for entrance to Grandes Ecoles , in order to be aveterinarian . I suated them with komatsuna ( a leafy green vegetable ) in the fry pan . This month by now I have wrote 48 jounals . Yesterday I learned roots of words in Enghish . nowdays , almost all science and technology is written in English , Of course , China is stronger every day ; many foreign people come to China to travlling and study . I think that we can change ourselfe if we step forward with courage . `` Piacere di conoscer - la / ti `` to wich you can reply : `` congratulazioni `` to someone who has just succeded in something A nice guy , Wanda , adventures through wanderland . There are no peaple or animals in this world . If it 's atack hits Wanda , it does a big amount of damage . but nothing happend . I 'm learning to play in a musical for this lesson , and we ( the troupe members ) have a board meeting mext summer . Expressions that subsitute nouns Can Japan national team wint game ? Sometimes , if you are lucky , you come uopn a snake ! school students sinse they use textbooks that I 've used in their school . I am going write about a person who is not only respected , but also sccesfful . However , this Succesful person had already decided what they want to do at the company or by themselves when they were student . I think if we can use the Internet appropriatly , we could gain a lot from it . If I have a time , I feel specialty food in Fukuoka . By keeping a routine , I can get up early in the mornig ! ! I think it is so diffcult for me to do it . Would you mind helping me studing English ? Then I will move to Snt . We are thinking of going on a picnik . I think it well be very fun , because we are a bit crazy : ) ) ) For example , not so long ago we organizated a flashmob . People were looking at us very strangly . Why did n't you put on underware ? Yesterday , I used MSN messanger for the first time ! I lile hill climbs and long rides . Recently , I discovered the english music groupe called Mcfly by chance on Youtube . Cut the sweet patatoes then boil it . I am hppy for that , but I do n't know why Japnese learn Arabic ? My teacher pointed out lots of gramatical mistakes like articles , plural forms , verb forms and so on . Because , one of my firend said , Then , the night I got the binoclulars , then , over two large cups of coffee ( I 'm a self - confessed caffein addict ) , Then , I found darl rings under my right eye . As soon as they got power , they changed the amount of moeny , and they even considered an income limitation . My momther recomended that I should have bought a cheaper one but I wanted to buy an umbrella with cute characters on it . I was a little nervous at the thoght that the professor would notice I was n't a regular student . So , the test wii be too difficult for me . I sent back a congraturation - mail to him . Finally , he gets better and better and is successfully able to finish the speech at the begining of world war 2 . It 's very dilicious in there . Yesterday , I watched a Korean TV dacumentary which was about Africa . After watching the dacumentary , I realized how comfortably I was living and studying . In this sence , Japan is in a possition where it can advantageously and financially provide other impoverished countries with development aids . Or rather it can spread its interesting and unique cultur around the world , which hopefully renders Japan able to cherish its country 's asset more than before , as it has a lot of vounted cultural and traditional values . So I modified my thesis to include some chenges and submitted it again . How great was that carving teqnique ! I reallg wanna study English ! ! ! not to meet a guy who wnats a girl . I like English and histrical things . But my patrnts do n't want me to do that . Today , I was reading a flyer on this program . I was so suprised ! I 'm looking forward very much to seeing my firends and my family : ) I DOESN ' T REALIZE SOMETHING IS MISSING DURING THIS KEY MOMENT . MY HORRIBLE HAUHTY BEAT ME ! ! ! ! I went to my part time job teaching mathematics to a junior high scool student this morning . After sleeping , I studied English vocabrary . First I learned the new words ' meaning , then their pronunciation . Althought I was a badminton player from the elementary school until high school , I have not been playing it for a long time . The lake 's surface was peacefull the other day , but yesterday it was choppy . We held a sympsium to discuss students who could not attend school due to personal problems such as mantal health , being bullied at school and so on . They are worring about their children 's problems . I was worring earlier because I had n't been on it for a long time . I think that he is very lonly on this trip . If I go there , I 'll walk quuckly on Wall Street like a man pretending to be very busy hoiding a cell phone in one hand and a cup of coffee in the otherer hand . The third reason is , there are many famouse places there , like the Statue of Liberty , Times Square , and Central Park . Hi evryone ! ! ! ! We watched a movie that has been very popular with the Japanese latery . It depends on the sean . Though I ca n't help worring about places that have been affected by earthquake , I 'm going to go out more frequently . The Chinese often open the ghost door in Junly . She never talks a lot , but her words are meanful . You never expect to hear any nonsence from her . I was reflesh . I told her , `` Bite your tougue . `` The following is witten : [ `` we do n't use gasoline , perfectl tixi ! Better isolaton . The first programm that I 've written is `` Hello , world ! `` . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sence . Becouse , the big earthquake and tsunami hit Japan in March . . Tatto boom I often see many people who have tatoos on thier bodies in the US . Apparently , getting tatto used to be a military and army thing . Tatto are not so popular in Japan . In my oppinion , If we get a tatto , it can not be easily erased and when we getold , the tatto also gets out of shape . Tatto influence our impressions of the people who have tatto . To be hornest , I do notknow any positive aspects of getting a tatto . I would like to ask somebody who has a tatto what they feel when they get a tatto . Also , in our life , we can make more and more firends through the internet . So thanks to internet and thanks to lang - 8 for helping me make progress everyday ! I mean , I can understand almost everything , but speeking correctly is sometimes very hard for me . I need to be put on a diet immidiately . Nowadays I do n't have a boyfrined . Unfortunatly , when I was 10 I moved to another citt and I ca n't find foreigners here . Last Sanday it was my grandfather 's birthday . They 're very dericious ! ! so we may become friends and we can talk about each other 's country nd maybe in the future we can meet up at one 's country . now I am sataying in Pohang in Korea . But I am actually frome Seoul , the capital city of Korea . here , what I am doning is study in graduate school in EE ( electrial engineering ) which sounds boring and difficult to others . I got ta go , so hope you can correct my Eglish writing and I will be your friend . ( Although I have never been to South Frannce . I held a farell party for my colleague who has worked for 7 years since I started to work here . The story was very intersting . I thought to myself , why has this person come here to study Englsh . She is older than me and the only woman . Today I have a big exam , I ` m very afriad , because I don ` t know everything , how will I do ? I 'm sure that many of you are used to western habits because of work rhytms : wake up early and RUN to work after a coffee , but what is a typical breakfast in Asia , for example ? This wendnesday I satarted school again , in a new class . . . I saw some friends I didnt saw during the vacationt and it was nice to see them again . . . yesterday after school I went with my friend to buy some fabrics becouse she wanted to make some craft with it , the trip on the bus was so long , the other day she was trying to pass the driving exam , but some old lady that was angry didnt let her pass . . . Media Communication is learning about the differences between old media ( nespaper , magazine etc . ) and new media ( such as the Internet ) . When I finish the all of my courses in university , I want to be a jounalist . Tomorrow I ` m going to a consert with my friends . And then we were suspicious of the pizza because we usually mke noise . I recommand `` My brain says stop but my heart says go `` by FM static . Thailand is a country where Englsih is an official language . This lets them learn two languages together even they did n't know it helps their pronuciation . People who have good language skill tell me that we have to start with listening then speaking , reading and writting , a similar pattern to how we learn our native language . I found an interesting article in a magajine . I 've never trid this product before but when I was young and stayed at my hometown , my mom often cooked curry for breakfast . One example of the problems which left - handers people may experience is the difficulties related to handwriting . It is undeniable that there definitely exist lots of great inventions thoughout human history like the light bulb , the steamer , the telephone , etc . Similarly , they use these knowlege to make contributions to their society . Only in this way could we create a harmonious enviornment on the Internet around the world . We have many lecturrs , and some of them . do not speak English very well . After thirty minutes , I bacame aware of how difficult it was to understand . . . Because it was very embrassing , I decided to study computers . Sometimes , he wants me to help my neighbors too . ( Although I do not like doing that all the time ) . When I have free time , I can look for useful sofewares and study them . Does That Make Sence ? I have a feeling when I hear someone say `` does that make sence `` that the peron is getting impatient or just being rude . I immedeately took him to the hospital . Anyway he seemed fine befor going to bed . I 'm watching one of the american tv series `` Big Bang Theores `` . Maybe Words Free is not its proper name , but you can find it by typing `` Words free `` in a serch engine . I think Scrabble is a good plactice to implove my vocabulary . Are thery any differences between them ? Which is right or which is commen used ? The first person said that they will check whether they can correct it or not and hold on the line for secand . My wife 's zousui contains sliced Japanease rudish which are supposed to be good for you when feeling sick . My favorite peron is my friend . Somethimes , we go to su - won . I like my friend ver much . It 's not the main religion of ur country , right ? But after I have learnt about it , I think we should embrace it , and live up to the standards of Jehova and what his son Jesus taught us in The Sermon On The Mout . We meet people from different countries there , and mingle toghether and exchange our culture . Wonderful ! So I wanna ask t if I am allowed to join ur congregation in the disscussion next time ? So thank you so much for tonight , I am really appreciative of ur cooperation . I ` m studing in music school playing the piano and syntheziter . Every summer I go to Ukraina to see / visit my grandmother . Our company mainly deals with producing and markerting mobile phone cases . Tough readin and writing . Nowadays I practice pronuciation , but it is difficult and very different from Korean . `` Let it be `` was released later than this album but Abbey road was thier last album , because they recorded them later . In the last years for `` Vote for your favorite album `` , it was lanked No . 1 in Japan . I watch it because it is usefull to me because of the English substitles and it is free to watch . It seems like I will watch it all of the episod . My favorite movei is Burlesque . Christine Aguilera makes an appearence in the movie . They live far from the academi . Hellow everyone . But I also want to make a lot of money , because my family doesn n't have lots of money to send me to school . Today , I have some puestion about quotations from movies . I read in a magazine that American newspapers often use quatation . It was the first stone building in the sity : when King Peter I planned to build the sity , he started with the fortress . There was an exhibition of the sand sculpture on the beach near the fortress ( in the second foto ) . In the first foto you can see the famous spire of the Peter and Paul Cathedral seen from the pier . According to the story , during World War II when the sity was blocked ( blockaded , sieged ) , a whole echelon of cats was brought into the sity for extermination of rats . I bought rosseta Stone ( English levels 1 - 5 ) . I can practice how to pronounciate English words and understand words ' meanings without using Japanese . Today , I wore a black Care Bears T - shirs . I boght this recently ! But he ` s never seen Care Bears T - shirt in Hawaii , so he was surprosed : D The news said our military rescued 25 sailors who were captured by somalia ( adjective ) pirates . Tactically , in this case the goverment should have been pasive , because the captives ' lives depended on the piarete . I did not cook it the way you 're supposed to cook jelly , but I cooked it as if I was making caffee . I 've been using twiiter almost every day . Unfortunatlly I do n't have any pictures . So we cooked lamb , beef , poak , and sea food . Indeed , sushis taste good if the shef is nice and tastes terrible if the shef is not nice . Kyoto has a lot of restrant . 2 ) When the fat are thin , the thin died a lnog time ago . I watched part of `` Beautiful Dreamer `` , Urusei Yatura 's movie series . Meanwhile , I also want to practice my Enlish . Becouse I enterd my bank card password wrong three times . In Japan , Japan TABACCO INC which prodece and sell Somoking is very influential in many areas . For example in the media , the Federation of Economic Organizations and politics . Last year a politician said that tax one cigerettes would increase so that ono pack could could cost as much as 1000 yen . ( current cost is 320 yen ) There is a persone who is against increasing cost cigarettes in medical area too . He always remarks in media `` what is the scientific proof that smoking is disadvantage to health ? `` `` Can you proove the relativitaton between smoking and bad health ? `` `` Of course I dont need to say anything about passive smoking `` It is abvious that smoking is bad to our health , but he insists that there is no perfect explanation , so we mustnt not impose on extraordinal tax and exclud smoking peoole . Today is called `` Marune Day `` and so today is a holiday . However , today is a school attendence day . ( Chuseok is one of the most imfortant holidays in Korea . ) So it is difficult for him to enjoy life because he controls himself all the time and thinks everything shoul process in the right way . Sooner soor later I will finish the semester at my university , so I 'm busy to sum up my class 's for the tests and report . So I 'll do my best this maonth . Thanks to that , I can now uenderstood it when I watch it again . Recetly , I get tired easily . My profile picture has chaenged . I went to dinner with my friends from my oart time job yesterday . It was delisious but the restaurant was full of smoke . I got a small gift from an English magagine company today . The last time I met an Englis man I could n't say anything to him , I do n't know why but it was impossible for me to say even `` hi `` or something like that . Also , he had a wife who was a very beatiful . Still , a ray of the sunset is coming throught the windows into the rooms . After stuffing all the items into the frige , I take some glasses from the shelf and a Yebisu beer from the frige . I usually read the entertainment or society secyion n . In Japan it is a symble of spring , so when I see it I feel sping has come ! ! In general , many students will start the job hanting when they become third - year students . Once they pass the position of `` new graduate students `` , thier job hanting becomes quite difficult at an alarming rate . As a matter of fact , they will spend so much time on the job hanting that they can not attend the classes they need to graduate . I got up 30 minutes earlier than usualy . REASON1 / I want to speak Engilish because . . . I read American famous & popular literture , The Great Gatsby translated by MurakamiHaruki . We watched TV , listend to music , and played the piano in her new house . I thought I had a nice day wiht my family . Her color is yellw and white . While we were staying in Singapore , we went on a tour around Johor Bohru , Malaysia . There was just a hose or a bucket insted of paper at the toilet . The first day of outumn has come . . . Egyptian food is similer to Turkish food . It was different from the usual tabacco . Sometimes it seems pretty hard for me , but I set myselft to rest by thinking about russian grammatics . Taiwan is the saftiest country of the ones I visited . The pregnancy happened suddenly , She said that she 's relly happy and she 's never had a feeling like that . Many of my co - woker helped me to leran the new system . Because all of my co - workers are not Japanease . But , I want to learn onother way . Could somebady teach me ? Because this is the best way to blash up on my poor grammar . But I warry about one thing . I 'm not good at writing even if it is japanese ( my own langage ) . I hope to make my grammer better through this site . It 's a bad day today . I quarrelded with my boyfriend . I was born in Moldova , and now I 'm studing in Riga , Latvia . This is the main reason ( no comma ) why I 'm trying to learh it . I 'm not sure whether my ancester were ninja or not , but there is a possibility . Are you interested in Ninjya ? A few days ago , I watched the final episode of LOST , the famous TV serise . I visited a wax musium . The musium was brilliant . I have never been to Sushi Zen , because it is very expensive - one item of bluefin tuna ( fatty tuna ) costs approximatey 2000 Yen ( I guess it 's about $ 22 at the cuuren rate of exchang . ) ; ) I feel most content when I suceed in describing or expressing something , using syntax and phrases special to the language . I want to make a lot of frends . If you want to make frend with me / be my friend feel free to contact me . I just know a little Enlish . What 's my aim ? Studying English together with whoever wants to learn Chinese . It 's raining outside , and the teumperature drops quickly . He will leave Japan next summer , so he is writting a book for himself . He opend a souvenir box , and his appearance had changed . He looked like a groundfather . everday we went shopping at some prace , and enjoyed it . ? I think that this time , our family ties had deeped more , and more . Anyway this month is special for me and for all Muslims around the world , and for this I scheduled my time to spend it doing worthful and valuable . At the begenning of the few months , I did n't understand or even catch a word people were saying . Also there were few Japanese people , so I did n't have a friend who I could truly rely on . So I Ive decided to restudy English from today on , so I can be fluent in speaking English . ! On his two - storeyed factory roof some futon ( something for sleeping in ) has been stranded up there by the Tsunami . Today , I bougtht `` yotsubato 9th `` ( It 's comic book ) I met the president of the campany , and we tolk a lot about the amount of money . Memory Of A Fisch So it is said that you can be clever if you often eat fisches . When they wrere elementary students , they had to collect night soil , scrapheaps , flies and so on . My favolite singer is Sina Ringo . Cultural differece . . . Too quickly ; I am very supurised . what do you think ? are you good at your mother language ? how many peole do make mistakes ? freakingly large amounts of money anymore ! ! In English class , the teacher mede him read aloud an English sentence . Aer you okey ? Can you come to Japan from Auguse 1st for about 2 weeks ? You must have a pssport by then . We woud like to hear your ideas and opinions about open innovation . We are now learning about open inovation in Europe and US compared Japan . Oh my God , I 'm crazy , frist I do n't love him , secondly I think he ca n't finish with her , but he wo n't listen to me , I do n't know what to do . The snow piled up in Tokyo the day before yerterday . I 've heard it 's a very difficult qualification to obtain , so I have to keep studing for at least a year . It is very weird that air conditionings creat a hot summer with higher temperatures . She answered , `` Definetely , the former ! `` . Maybe some Engish people know this TV program , I 'll appreciate every correction anyone makes for me , and I 'm really thankfull for your generous help . complecated . I do n't ilke the rainy season . As time went by , my interest fadeaway away becasue sometimes I did n't received any responses . There are so many people learning English in the world , it is understandable how many English artiles will be created everyday and it could be overwhelming . They gave me a souvenior cokkies that contains salt from the ocean around Mont Saint - Michel . Last night was a rainning day . I found that there was noboday and felt a little scared . I was biten by a black dog when I was 10 years old and I even had to stay in the hospital for 3 days . After going back home , I went online and found that there was another student biten by them 1 hour later after me . I also had fever , and I was thinking that this [ CROSS OUT ] might be related with inflamation . COMRENDES ? After all , I drank five cups of cofee in the end . After lanch , I pick up my cell phone and saw that there was a call ( message ) asking me to have a interview . Also I uploaded my artworkd on Ultra - book . It is nect to some newly built high apartments . The symbolic buildings of the modern life and old fationed alleys . Sometime I go there alone to drink wisky and talk with `` Mama - san `` . Do you immediately notice mistakes when you look at our English sentense ? I do n't want to make trouble for my senior bisiness partner . In Japan , the goverment promised to give every Japanese person 12000yen ( about 120 $ ) as an economic stimulus policy . Asics shoes are n't as cool as NIKE ones , but they are very functionable and reasonable . They weok for our subsidiary in America , but I had not yet met them . The purpose of them coming was to have a meeting about making the budget for the next fiscal yoar . When they went back to Amerika , they tole me ' Learn to speak English and come to America ! ! ' First of all , let me itroduce myself quickly ! My company is a farmaceutical company which was incorporated a year ago My favorite groups are SID , HY , RAD WINPS I like eating dericous food . I worked at a Starbacks drinking a cup of coffee in the morning of that day . I think travering is like buying hats . We can see a lot of beautiful sceneries , eat dilicious fruits , go swimming in the sea and so on . Only last sereen remains . ( Family ) or hope it will grow helthy and happy . So , waht do you think about it ? I want to kiil you , Beause you 're tasy . `` I felt surprised and I did n't know what to say . He 's just a 10 - year - old boy who likes to use humor to decribe his emotions . I take a private Eenglish class once a week . Last Thirsday I got a homework to write an article about a famous sports person using enphasising phrases . I recently buoght a new English textbook , and I read it as often as I possibly can . I have n't ever stuied English seriously , but I think that my English will improve if I study it more . Do you know a Mang Cafe ? It is very convinense and cheap . We can read many Mangas , have free drinks , Internet , Wathing TV , DVDs and relax ! But thease days I 've gotten fat ! snow is beautifull , but also so cold : ( Please tell me what you know aabout it . I was accidentally attracted by a JP learning magzine . Its cover had a big title meaning `` spend no money to learn Japeness well ! `` . It introduced some language learnig websites . ( Most of them are for Japeness leaners . ) After a few minutes , I got an acount . I could n't eat them here , because everything is very expencive I coud n't buy them easily . Recently my favorite song is Taylor Seift 's ' you belong to me ' ! I like making something like an accesarry , so I thought that I could get some materials over there which have a different pattern than Japanese ones . Though I still look forword to going to Taiwan . Actually I started ESL classes . When I am finished with ESL courses , then I will study radia . Introdution 2 I like to go to BBQs with my friends . They are from China , Koria , Turkey and so on . Let 's improve together and aim for good reasults in our studies ! howth is the place where the Irish flim ' Once ' was filmed / made . but unfortunatly it was very windy and cloudy . I 'm going to clean my roon , hang out on the futon , walk around the neighborhood , go to a library and bake a cake I 've had plaied the piano for long time , but I did n't play it for a couple years serioucely . I admit that I sometimes like drinking some alcohol , liquor , hard beverages and beer on the weekends to relax but it doesn n't implt / mean that I am a alcoholholic . I speak English wtih foreigner on msn nowadays . Where do you reccomend ? Many office workers have a meeting on Monday about last week 's activity , and must report their activity for their collegue and boss . The Perfoamance of Kim Yuna was excelent ! ! I came hered from Italy . In Itary , the temperature is 40 degs . One night , a family is having dinner togheter . A man , who is annoyed by the chatter of girls next to his room , would say , `` Speak lower , please . `` This phrse indicates a bit of On a plane , a passenger was asked by a flight attendant , `` Would you like a cup of coffe ? `` Then she says , `` Plase . `` I think it is more polite than just saying , `` Yes . `` I can say , `` Yes `` and then `` Please `` for adding some politeness . She said she is woking as an import management adviser . `` Hi `` `` Hi `` `` 35 male USA U ? `` `` 18 male Jp `` `` good bye `` wow he 's the very same as the first guyy ! ! About thirty pepople came . because I 'll play the drums at a concert hall for the forst time ! ! Today 's class was English grammar about subjective moods , so I 'm going to write my diary with subjective moog . If I can speak English , I will make many foreigers friends . I am studaying English now . I hope I can pass the IELTS as soon as possible , so I must work hard and I look foward to get more help here . thnk you He likes anime , so perhaps we can watch `` Vanishment of Haruhi Suzumiya `` , a popular Japanese anime film . More importantly , you are a very friendly person , and I am so greatful that I have a friend like you ! When I arived in Tokyo , it was quite hot , I was sweating . Recently , Sammer sale started at most shops so I hope to buy at Paul Smith but I do n't have enough money to buy on such expensive stores . One of my senior classmates in the foreign language department of SZU ( my school ) hung herself and died the day before yesterday in her dormetory . So we loughed . She was very suprised when the doctor told her . It is nice for me as a nuese and as a human . Altough we know , either consiously or uncousiously , that money is not the end but the means , we tend to confuse money itself with happiness . Of course , money is so important for living in society , yet , you sould not forget that this is an illusion made by human beings like laws and countries . As usual , I commuted by MRT ( mass rapid transportation ) . Howere , you have helo me a lot with English . I ate salmon roe with soy sause tonight . This is good for grawing rice . on a trip in this wintar holiday . I know I have to sterdy more . Today 's weather is good , so I aired the bedding before going to the univercity . I peripared for tomorrow 's experiment . I ca n't figure out diffrencens among them . . My criant has decided to deal for the advirtising , and The company 's human resorces administrator said that My name ist Stefan and I 'm 18 years old , born on the 17th ( of ) April ( in ) 1993 . Changing enviornment , I think is the prior problem for me . There are a lot of things I need to deal with it , packing luggage , becoming more familiar with foreign language , seaching for a house to rent . . . . Do you have a twitter acount ? Today , I made a new Twitter acount for practicing my English . It 's a torophy . I 'm thinikng that 's all fot today : ) Jay Chou is a Tiwanese singer , and QiLixiang is one of his songs . It means a sort of plant , I guess ( I do n't know what QILiXiang is ) . Yes that is right , to understand Sanma is as difficult as Phyrosophy . After the training , I ate a mixed salad with mashroom , carot and beans . Actually , I 'm thiking about working part - time . I 'm studying the CALLAN method for speaking , reading and litening to the bocabulary book & CD , and trying to write these diaries for grammer . I decided to study my English harder so I could speak it fluently somday . She also knows a lot about Japanese culture . For exmaple , she knows about famous Japanese models , singers and so on . Listenning to music ? ^ ^ thus , maybe I will continute to write my blog everyday . I 'm not good at presenting or speeching , in fact I 'm kind of a shy person , but it was good experience . And , we talked to each other about what I will do after graduation and my campas life . Someday , I want to go to the Philipine . To be honest , I do n't have any idea of Rewanda . I do n't even know how to spell Rewanda . It 's been two days and nobody has correting Preten to be a Scottish Fold . . . . . . . . . . . My first diay . Does cannibalism have to be considered with the idea of cultural reativism ? If I were a pig , I would claim pig dignity , pig previlege . It might be hard to get protine otherwise , or it might be a sacreed ceremony in that society . The sea waves are beaytiful . I do n't know the reasin for the hole , One is the pearent and the other is the child . Is it pritty ? Laterly I am very poor because I spent much more money than I had expected to . Thankfully they were rainy days , so I surfed the internet , listened music , and watched movies . I even recorded parts of two songs - one was a Chinese song , the other was a Japanese song . It was in preparation of a Christmas or Thanksgiving vedio for my friends . I thought they had blocked me on MSN , hehe . New colleages are coming soon . We 'll have to prepar a computer for them , and will also be responsible for training them . After my work is over , I alwalys go to the supermarket near my home . I stop by this supermarket when they are about to close thier shop . I found her really coorporative , patient , generous and smart . Recently ( , ) Haneda Airport changed from a ( mostly ) local airport to a truely / proper international aiport . Recently , I started to write my blong on the internet . Honestly , I 've been afraid of daclareing my true intention for learning English . ( space ) Athough I do n't speak English often at the moment , I wish to improve my English . It is cherbet ice cream with many kinds of fruits . Because this drama is not a mede - up story - the characters , drama , and everything are from real local life . Now someof of my work is almost 3 months late ! ! Is it a magic holiday , or it is just costom ? ? ? He said to CNN that `` I can do anything , I can be snything `` Every time I tried to come up with an idea , the person who recieve a postcard said it was good . Active : Do n't blem me Passive : Let me not be blem . Active : She gave me a prasent yesterday Passive : I was given a prasent by her yesterday . A prasent was given to me by her yesterday . but it will be dificult to establish a company . It is bery nice of you to see my diary writen in English . It has become an incomplehensible text , but this is the end . Have you ever experienced nonstable sleep ? the horrouble situation , we get used to it at the end . It was a chance to have an exprience in an English meeting . There were people who work in ther countries in the conference meeting . Others are hunging wind - bells and banboo blinds as the devices to create that `` cooler feeling `` for getting relief the summer heat . But my friends who are leraning German with me don ` t or can ` t participate in the program . But I have found that there are a lot of English words which although I can rean and understand them , I can ` t use them in writting or converstion . So I must improve my English vocabulary untill summer . It was nominated for the 2008 gramy award for song of the year . * ice cream soad It seems easy to convert feelings to the opposite one once I have recovered the orginal positive mind state . I think there is a kind of horizon between our positve and negative mind states . Remember you never drag yourself alone into the dark , but the poeple around you as well . If you think someting positive , it will come true for you . Today is Saturday , and all my colleages went out for fun . However , the results did not satisify me . In Japan , we can watche it on Sundays , so I am in the habit of watching it . My school closes for summer vacation tihs Friday . After long and greatful summer vacation I want to study , study , study , and study again ! ) ) web - design courses , photography courses , preparation for TOEFL , dancing . . . Rencently , the news reported on many food safety problems . Food retailers have responsability , & nbsp ; too . So I have decided to pratice my English writing skills from now on , on here , Lang - 8 . Creating a vitual life which correlates with your destination is the best way to get it . I drank madicine , and sleep more and more . I am very happy to join the big familiy . I am a Chinese girl . I want to make good freinds here . My professor said , in this case , present tense means someone 's habbit or a fact . I tried to memorize the new grammer for the next lesson . Tiger is one of the best animals ( which ) he liks . On the way of returing home , though I pushed the twin stroller , Every evening plenty of classical concerts are offered in churches , theaters and historical buildings , while in the daytime there are marvelous views of castles at Moldau . All the buildings with pastel colours and graceful decolations in the old town attract strolling people . The cheapest seat , which is located in the highest etage but still close enough to watch the stage and orchestra , kosts just 50 kc ( 2 Euro , 220 yen ) . I had no plans , so I just hunged around and droped by ( visited ) interesting places . Second , I had a cicret birthday party for my friend . Because she came from Kansai area soon acept that application . Then we went to karoke . Economics , sciece , engineering , and technology change day by day . We konwn many methods to relesase stress . Some people eatting sweet chocorate , have heavy foods , drink achol , or buy expensive bags . If I have am streessed about something or somesone , When you learn a language , you must develop the muscles of your speech orangans to produce unfamiliar sounds . So , I ` ll cheer for the Cunucks ! It gives us an English language enviroment . I hope everbody is happy , and all of us improve our abilities quickly . we could go fisching , run barefoot , and wander the streets with a vacant smile on our face and melting ice - cream in our hand . Are you like go for a walk with your friends , eat chokolade , and look at the sky ? Last week I took an English volunteer interview and people who pass the interview have the chance to show museums and other places to forgin tourists . I thought I did a bad job last week but yoday I recieved a message from the interviewer . She said I passed the interview and asked me if I wanted to go to the Zhejiang Silk Museum as a volenteer . What I have to do is give tourists a tour of the musuem . Today I heard that my colleage would like to skip the writing class since she did n't finish her writing homework in time . Most of the TOEFL topics are dilemmas , we have to explain the main idea , find the sentence or appropiate supporting sentences and write about them in 250 words . It 's quite difficult for non native English speakers to discuss unfamilair topics , I also tried to practice my writing here for my first TOEFL examination . Even if we ( can ) pass TOEFL to study abroad , we plan to come back home to work after we graudate , so in my mind I thought that studying in Thialand might benefit my country more than studying abroad , for which we have to pay high fees for the test and tuitition . One good point of view for higher education abroad is to broaden your mind and accept a diffirent culture or lifestyle . Studying in our home country will result in much reasearchs and development , this ecomomic crisis will strengthen our country . Even though people in Thailand admire the new generation who graduate abroad , I feel I should promote higer education in Thailand . Today I heard of this website from a friend , he said it is uesful for language study . We would have to understand different cultuer . Somoday , I wanna live in another country . Of course , soccer is n't the only exersise I enjoy . I bought a gudget named FITBIT . The gudget can log my dayly activity . The IF of the activity is web brauser . Of couse I 'm still bad with English . I mighit write in it every day . I like helthy food . So , I often eat fishes . This day I 've met a forein couple . Although , the weman did n't eat a lot of sushi . I heard that there are few forein people did n't eat law fish . That weman almost has not eaten any law fish . I Hate beeing alone My parents brought my favorite thigs to me : some Japanese food , some books , and some clothes . I love everything ! ! I am just observing this week and will beging This is why I think it is my part of identitiy . Lots of words disappeared from my head , and I forgot lots of grammers . I would like to shere details about me to people who read my diary . I spent the money to cornect the internet to my house . The computer is my sister 's , she bought it maybe 5 months ago . She do n't want to cornect it but I do because I would like to use lang - 8 at my house . My sister said that after I cornect the internet , her computer had a proplem and may have breaken it . . We do n't understant each other . In the end , I decised to cancel the inthenet service . Some people are now willing to learn Cantonese , but I have to tell you that you are actually only learning one version , which is the offical one . Many centuries ago , lots of people from north of China moved to Canton to escape the war and cold , and then the immigrants ' language gradually evole into a new kind of language , which is a mixture of Mandarin and Cantonese . I love taking photograh but nowadays I have not taken any . I 've recently started taking an interest in photograh again . I attached 3 qute photos of amimal This year , I called them nearly everyday to share my happlyness and sorrows with them . When we leave we must remeber always to come back . However , it will be rainy for 4 days from tommorow onwards . Actually I think I can not get full marks on all of the quetions . I mean I did it but I just gussed the last 20 questions . . . . . . There are KANJI , HIRAGANA and KATAKANA in Japanese , That 's creazy ! As everyone knows Japanes originated from the Chinese . So , logically it should be easier to guss what the words should be I think . It is a really beautiful city with many things that can make us very supprised . I do n't know how to decrible how wonderful it is . I am sitting and enjoying the view from the wimdown of the hotel and I feel a bit regretful because I am leaving Nha Trang tomorow . The Japanese rush to the fully - blooming cherry blossams in order to hold parties , called `` Hanami `` . I heard that it is rude to say `` Can you play teniss ? `` So please seach me ! ! ! ! ! ! He can speak Chainese very well so he know a good way to learn a language . Welcom party Their new circumstances , taking care of thire baby and so on . My compluter was n't working last night . I 'm looking forword to someone 's corrections . I was reminded about it when my new friend asked me when my bithday is yesterday . I knew why the students did so . Becasue when I was in college , it was very annoying when the teacher talked about something so dull and useless that I wanted to sleep . In my nineth month of pregnancy Starry , starry ningt , flaming flowers brightly blaze , swirling clouds in violet haze reflect in Vincent 's eyes of china blue . Everything seems to be so uncommon but moves your heart strengthly . did anybody see the movie called `` Heatless `` with Jim Sturgess ? I need to know how to say something , cuz I have to send a letter to someone , but I do n't know english , so plese HEPL ME . I try to look at everyting from the positive side . It was so funny thinking abou it now . I would like to take this oppotiunity to exchange deep and beautiful thoughts with people from all over the world . It would be very nice if we could learn from each other , and be a good infulence in order to develope as a good perason . I would like to calivate an international friendship . tahnk you again . These are hand warmers , boot warmaers , etc and small packets which are held in the hands . If Mongolians could get hokkairo easely , they could be so happy . Therefore I felt his patoriotism in his essay because most of the students wrote about commercialism like the hospitaly in high grade hotels . My L - 8 Freiends , please , give me some suggestions . However I ate a fast breakfast and I washed up fast when I leanred that we would go into the field with my dad , exactly in the currant field . I found my friend was crazied about shopping . even though she had alread bought many clothes last week . today I had a very good time ! cuase ' few people will chat with me . Japanise animation Speking of a Japanese animation , on Sunday evening , [ SAZAE - SAN ] and [ CHIBI - MARUKO - CHAN ] are shown on TV . bamper . So my friend and I were dizzling and totally tired . I 'm very intrested in philosophy . But we care about the huge earthquake that happend in the Tohoku area . . The parade started at 10 : 00am , at that time it was a liitle bit rainy and cold . Many people in Omaha came to see the parae , so I really enjoyed it . this semester we finished our graduation perforence perfectly ! ! ! im so pround of our show : ) and I also took the TF test , although the result is not high enough , I still can go to America next winter ! ! ! ^ _ _ ^ it 's really exciting : ) im going to Idaho . . . I arrived at the academy after class was finished , so I could n't haer a lectuer for even one minute . . I felt so terribel because of my bad habit . But I think we should deside independently with whom we want to marry The fisrt class of translating subject ! ! ! It was different from what we had thougt before . We anwered after discussing together . But it was really surprising because the biggest problem of learning about the subject of translating was not about the languages that we wanted to translate into , but the ability on using our mother tongue itsefl . Because my hometown in Tokai is hamous for ham . . I 'm writting this at work . _ ( sorry boss ! ) She is very prity ! I started studying English maybe during erememtary school , second year . Comfiscate is the word I have memorized today ! Please teach me example sentences containing the word `` Comfiscate `` . August is the best season for diving ahd shnorkling if you can bear the cold water . DAIHATHU may not be as famous as the other automobile makers . The teachers were there too ; evryone drank and ate a lot . On my brother 's vacaition we traveled to LA , Las Vegas , and San Francisco He 's not very good at stadying things like English , math or Japanese History . Actually , I thought anybody could be a teacher , becouse you just say what you know , and so there is no effort for it . And you must pharaphrase more simply . Controlling my Budjet So , I decided to control my Budjet by checking my expenses with an iPod app . On the way there , I saw a big rainbow acrossing a river . Reading is spectially hard . And If I have Chinese freinds , I might / will come to like Chinese as individuals at least . I live in Italy and I 'm a biologist . My specialitation is Nutrition . Today , I will introduse the SAGA international baloon festa . That festival is the lagest scale event in my town , started in 1980 . It is so fantastic that many baloons take off simultaneously . For example , DORAEMON , Tom & Jerry , Pikachuu , ATOM etc . The seconed is a very practicel sentence because I might have a lot of opportunities to use this sentence . The culture of IBM influences me , they are dedicated to every clents ' success , innovation that matters , trust and personal responsibility in all relationships . Nowdays , I love to read books that wrriten about other languages . . I 'm trying to make some sentances . . I beilive her river , asada mao will be better next time , , ^ ^ althogh there are some mistakes in today ' game . Therefore , this semester , I want to study hader than before with my favorite lectures . Love , family , friends , career , dreams , ambitions ; They are indeed significant , but they are no more important than one word called `` happy `` , because life is precious , unperfect and fragile . There are 28 letters in totall in the Arabic language . Tanween is used as follows : If you want to say `` coffee 's `` , then it will be qfwatin ( `` tin `` is kasra plus tanween ) . If you want to say `` of coffee `` it would be qfwatan `` tan `` is fatqa 's tanween . There are a lot of Arabic words that went into the English language . For instance , alcohol , lemmon , soda , guitar , sharbet , arkari etc etc : ) I forgot the passward and even my ID . if you know me , let me know my ID and passward . I uploaded my last entry a kinda long time ago , mayb two months . I didnt write any entries aabout porno ! ! yeah I lov korea . Furthermore , they have to hone their language skilss to perfection in order to perfectly understand their lectures . Another problem is the fact that you may miss home and friends and propably wo n't get a chance to visit them frequently ( plane tickets are too expensive to buy every weekend ) . Earthquakes occure here from time to time . It 's weired . This year is very weired . staying with a few colleages in our leisure time . It 's a little troublesome to organise a A good neigbhor I have . Organizaing and Planing is The Most Important Thing Like thd saying , `` It ca n't be helped `` , I have to go through the process of trial and error to make a well organized and planned life . It was awsome ! After I returned to the house I put the pictures on the computer and enjoyd looking at them . In my class , I heard that the Japanese did n't take care of their own oral hygiene while in other advanced countries , people went to the dental clinic in order to undergo medical examintion twice a year . Some Japanese people who ca n't speak English at all said to me `` Oh Tomo - san you can speak English fluently , I envy and respect you . `` Every time I hear this kind of opinions from their pretty and wetty mouths , I get so excited as he adrenaline rushes to my head . So I deside on it . After watching the video and listeng to the song , I became more interested . Acording to the legend , a pair of stars were separated by the Milky Way . They are lovers but they can only see each other once a year . Yesterday , I sent an email to my professor with my lab partnar . I 'm sorry to bother you , but could you tell us when it would be convinient for I am gon na join this club every Monday and Wedn . I have not written writtern this diary for a long long time . Because the bowlling alley was so crowded , we had to wait for about an hour ! I went crazy bowlling and played three games . The band I 'm crazy about is called `` HEAVY CLAFT `` , they are a melodic pank band . You may know about the Snow Festival that is held in Februrary every year . My strong points are buildign servers , and responding to security problems . I like to read everything aroud me . As I got more intersted , I watched them again and again , and finally , I could understand what they were saying and laugh with them . Tomorrow norning is going to be scary . Because I think that growing the foods is fundamental to human life and especially in Africa , or other developing countries , we need to help teaching agricuture skills . Although it could be transrated into ' Genki desuka ? ' or ' Tyoushi ha dou ? ' , we hardly say these . At the same time , I study law . I might want to be a lawer in the future , just might . . . Beginning today , I will write notes in this daiary . Yeaterday was China 's traditional Valentine 's Day [ Qixi ] , however , it seemed nothing to me . I just try to think what I didi wrong , but no answer comes to mind . I know taht I am a new worker , but I want to be a good worker , and I trying to . Good moring everyone . There are many covenient menus in computer programs . Although I sat in the right front seat , I cound not keep up with her ant - like voice . I really want to say `` soory `` to you . These days , I thought a lot of things about my college life . I made so many mistakes that cost me lots of chances and time . In this world , there is just one person thai I can call `` father , `` and only one person that I can call `` mother `` , so , what is the cause of me not cherishing the days I stayed with them ? The workshop with Japaness in our school was finished yesturday . After two month in July , it 's our turn to travel to Japan and have a workshop with Japaness . I expect I I will have a good time and meet more Japaness . If I comfronted with them , I 'd make friends with them . Now she 's looking for a job , especailly in Marketing management and advertisement . I have to do my best at alll times . And perticles of sand that also shape stars were abound in the beach . He became verry happy when it arrive at my house . The adresses was in a different part of city which he had to visit . To reach the adresseses he wanted , we organized a car and a map according to a plan . We finished our program at 8 o ' clok . And the time came for him to leave for the Ukrain , because he has some work to do there too . Can I ask why the exlipse happened earlier than estimated ? I should be very very carefull . Last year the winner was Valerio Scanu , with a `` melodic `` song , I 've often said it is `` a song for old people `` because of its rythm , but it is not bad XD : ( 4 years ago , I started UK 's indie rock music and became interested to stady English . ) I heted English , but now I like English ! Of couse I 'll cook some spaghetti and curry ! Everytime that I 've enjoyed the plot of the book or the writing style , I can say I 'll always read almost all the books written by this writer . I think it 's like the beginning of an `` intimate `` relashionship with the author and I want to know the `` world `` of this writer . A video about sushi in English was shown and the instractor explained sentences which were used in the video . `` Nigiri zushi has long been a favorite delicacy for the Japanese . `` I 'm busy and I 've been going to bed so late resently . They catch mackarels For my coworkers and castomers , I work hard ! ! It went to Hornsby via Marcuarie Park and Univeristy . At that time , I choosen to leave that school And every time I have seen a middle - ager jogger Today I heard some shoking news . The prior president of Korea committed suicided this morning . Before he died , I also felt a sense of betrayal like other many Korean poeple because of his irrationality that was revealed a few weeks ago . Of course , it 's just a superstition , but my tutor was very I intrest in it . Eternal sunshine of the spoless mind Or , just ur projection or imagination . Therefore , I went to a movie theater to watch Transformars ; dark side of the moon . But in the mornig , we went to the Farmer 's Market . For exsample , there were animals , Superman , and a firefighter . First , some children can not gto to school . In children 's case , they will be unenable to learn in the school . Other than that , children maybe unenable to go out with their friends . Nobady knows when wars or tributes will hapen , so they have no choise , but to stay home . for producting ships . It 's going to be longerst bridge in Korea . Rakugo is one traditional Japanese art of storytelleing . Although signing in to skype and having to take a long time to solve a little preblem every time , So I am really greatefull . I decided to recite an English word every day and starding using it . We publish lllibrary news and I have to take part in making it . I can see lots of differency ! It 's a really beautiful sea but we are not allowed to swim in it because of the crocodailes and sharks ! ! ! ! ! A duplex house is a dwelling for two families , including two separate residential units . I mean , two enterances , two kitchens , two living rooms or such . A young woman called Natalya had been talking to us about working for the famouse cosmetic company `` Oriflame `` . When we ususlly go out , we leave Grace in the Pet Hotel . Our eldest son went to Austraria this summer for a week . Fortunatery Grace got her space in the car . My husband set up the hummmock between the trees for the children . Instead of them she played with her favorite toy . I think if my plan were to be carried out , everyone would feel more confortable ! It 's very intresting ! ! ! Today I found this webside on my friend 's Facebook entry . I immediatly registed without thinking . At last I purchaced a 42 inch TV with three tuners for digital terrestrial broadcat . That meanins we are study companions to each other , each doingour bestfor our ownpurposes , I think . The first two years were difficult , and they were nothing I 've ever experieced before . I got used to being here , but I loat my motication toward learning English . I hope it will be a good appotunity to get my motivation up . I really love that we help improve aou hearts together . I updated the farmware of my wireless router and changed its channel again . In my prediction , Hideo Higashikokubaru slightly has an advantage than others because of his publicity and his achievement as the former governor of the Miyazaki prefecutre . We got a Disny English CD . When it comes to types of damege done to crops , in Australia `` fire `` was the greatest Tommorow Never Knows Tommorow I was going to play tennis and have a BBQ party at the tennis club , which is the club where I play tennis almost every Suturday or Sunday . It is said that the breastfeeding rate in China has been declinded . Besides , as I 've mentioned above both parents have to work in this competative society , so they have little time left to take care of 3 or more children . girl that Ilove . There are foutains , crystal I also Ilove this place because Even when they began to posses them , they did n't have many apprications except for calling , compared to the recent phones . I decided to start this English blog to have an oppotunity ( spelling ) to write something in English . And we went to boldering gym . Boldering is a sport that you need to climb up about 5m on the wall . We played boldering for about 2 hours . I like my scool festivals . First of all , I have to thake to `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me , that is really helpful . This morning , I suddnary wante to make a spanish omlet . I really missed her spanish omlet and I desided to make it myself . Instad of potatos , I put tometos into omlet . I recomend you to try itwhen you make omlet . They alse recycled the trash . For a long time , in this jarnal I have not written . Today is the start of a charenge ! Now I will go to lunch . After , I will write in this jarnal ! I watched TV to intoroduce the online way to study English , the name of the TV show is `` I know `` . I heard it is maede in Canada . The man who began to make `` I know `` said it is most important to improve words and frases . So far , I studied Engliah grammer . hunging out with my friends . It 's a beactiful city with blue sea and golden beach . NO . 1 Middle School , pleaes wait for me ! ! ! At first she needed me for some help on things wich she really did n't know how to do . From the dorm apllication , learning program apllications , to every step of preparing an activity for students of our department , she always asked me to do them for her . Before I would refuce it indirectly , and she was still fine . But now if I do refuce her , she gets mad and says that I 'm very mean to her . The Bigining of 2010 Because I am a valunteer at my school now . I hope we can learn different things and happy togeter . These days I recognize that Engilsh is very important . Previously , I do n't have so much disire to see the concert , because I ' v seen linkin park 's concert once . For example , when he wanted to learn Hindi , he just went to India without studying learnings . I thought I had not written a jounal for just a few days , but actually it was a week . I am turning into lonly person . But few hours befroe , He called me and said that not available today . . . Anyway , just I told my feeing nowaday in the diary . When we were on our way home , my douather fell over suddenly ! His dancing and songs were briliant . sacnf , a pair of mittens , and lipstick . So I just remembered this web site and how usefull it could be ! I have had a bad headache from this morning . It is very uncomfortabled I got a pill and took a rest but it didnt work at all . . . I need to put more time in my study / studies , easpecially ( in ) English , in order to get a good mark in the graduate exam next year . I had Toeic Class this eveing . When I arrived , I was very hungry so I overeated . Hello , my wonderful friends . The day before yesterday when I went to the internet shop to fix my computer , while I was on the lif ( avator or something , I do n't know how to tell you in English but when you do n't want to use the stairs , you can use it to help you up to the top ) , I was carrying my PC in my hands . There was a liltle child arond 5 years old who pulled my hair > . < When I was young , I was in love with eating American style junk food shuch as pizza and hamburgers . When I eat somthing so delicious , I feel so good and happy . I could n't memerized every thing . I have class `` tomorow `` about American sign `` Language `` . frist I thought that is like the English languge but not really they are for for the poeple can to listen so they shoud be use the sing to conversation . I have classe at 10 . 00 am in the moning . good nign from Thailand now . We are going to sing two songs , one of three part chorus plus piano accompaniment , and one four part a capela chorus . I was suprise . I went to the chilli festival in Frementle today . For my firend I love eating , Listenig to music , watching movies and talking ! I went up the stairs two at a time becase I was hurrying . It ` s an American druma . I fell in love with watching mortorsports , especially Formula 1 , yesterday was the last F1 racing day of the year . `` Let 's watch Star Wars ! ! ! There 's a TUTAYA over there ! ! ! `` So , we went to TUTAYA and borrowed Star Wars Episode 6 . But I tand to be razy studying . I must be a better lerner . Everyone plase correct my sentences . ( : _ : ) and find a job as sonn as possible . . . . . . . Now I 'm looking for a theme , an interesting or favorite one for the 4th year of University . Moon rabbite is the most famouse tale in Japan . It is common sense that Moon rabbite is hitting a rice cake on the moon . Because the moon 's silhouette looks like a rabbite hitting a rice cake . A tarented person who can talk with a goat I like the humburger and I ` ve tried them when I went to America . I wonder which humburger shops is more popular in America ? Could you recomend any good humburger shops ? I want to try some good hunburger shops again when I visit America ! But , hey I 'm talikng about me right now , so taht means strange girl meets strange boy in very weird circumstances . and lots of koreans confuse this with ' flatter ' but flatter can be used in the opposit way for example when your friend wears new clothes or gets his or her hair cut , at times like these when you need to set the scene for somebody to make them happy . The driver pretended not to hear me , and completely ingored me . rainning ~ rainning ~ It 's rainning today . I 'm sure this is n't my general level Enlish because it only measured my writting skills . I think that gene recombination is so usuful and revolutionally for us . All members of our high school choir club were so nurvous , but we managed to get through this which means that we can go to the next stage . The reason we were so anxious is because our performance this year was of a lower standard than avarage . I just scoled my kids . I scoled them . Anyway , let me talk about my plan on Chirstmas . The problem is I have no idea what present should I buy for her as a Chistmas gift . I 'm a colleage student and I will graduate soon . But I 'm glad you asked me for my e - mail adress . Drinkng with my custumer . The atmousphere is so nice , I want to visit there again . Then one of my custumer said that you do n't have to say the reason why you can not ; When you do that , other people will help you archieve your goal ! Crithmas Present . ( We bought clistmas prezent for each ather with my hasband . ) I want to use nou , but I ca n't . I ca n't wait until Crithmas Eve . I have DVDs and some magagines about it . I wanna corect more of them . And I wanna watch `` Eclips `` soon ! ! I like B because her choice in fasion is very cute and gorgeous . And she gave me a poket tissue . However , it will be revised , and we can not be satiafied as long as the promise of free highways I invited two young ladies to come to my hometowun Kamakura . in Jpane , this is a famous anime moive , I guess it is because I only studied reading and grammer hard when I was a junior high school / high school student . It is strange as a human being that I can read , but can not listen to English , is n't it ? I have just finished doing exercuses from an English page . I sent a message to my frined on Lang - 8 . I feel happy coming again to write my diary . I will try to write my dialy in this site once a week . I really feel like having a little bit of English in my mind before I start working today , because I want everybody to really understand what I wanna convey and of course I wanna be ready to answer questions or requests at the store . I hope my job is not so difficult and that I may ( can ) leanr a lot of new stuff . . . God please make me very smart and wise ( as ) it 's incresdibly difficult to be in another country . . . I nwanna cry sometimes but I cant in front of all these people and I ca n't eat anything . . . . I do n't wanna buy newe clothes , . . . Ysterday , I did not sleep well . Secondy , the best advantage of autumn is apples . It 's obivious that autumn is the time to read books about autumn . I wish I could read it in the original , but I afraid my language skills are n't good enought . Because you were sumurai . The first video clip was taken in Torres del Paine , a place near Chili . Tiday , my daughter 's best friend 's parents invited my daughter and I to their house . I answered that I did n't remember the number but as a regular visitor security guards usually let me in just by calling his appartment because previous guards obviously remembered the number of the appartment . I heard that in Helsinki a scoop of Haagen Dazs ice icecream is 10 euro . I have benn studing Engkish recently . But I shall never give up untill I get what I want ! One of my English teachers taught me the preasure of learning English . it seemed to me like a movie or darama . I suppose cooking is far more creative for her than working in a small design firm , Actually , her food is really good and most of them are her orijinal recipes . I want to make meny friends . In China , Friends videos , mp3s and scripts are very very populare on the internet . My frien likes Joey baceuse he is funny and does n't share food with others . Rachel is a beauty and Phoebe is a weirdy . Everyone 's performance is perfect on the first and last seasons ( I only saw season1 and 10 and I need more time to download and watch it . ) I ca n't help laughing out loud when I am acthing it . I 'm waching the last episode . She gave me an e - mail and she informed me how she 's been geeting along in it . In a ring , two smo wrestlers hold a baby wrestler face to face with each other . First of all , I did a good job , probabry ! At least most celebrites have to work very hard . As far as I 'm concerned they also have to spend lots of money ono security because their private life is public . I was diagnosed as having allegic conjunctivitis . MY BIGGEST ADVEMTURE IN THIS SUMMER ! ! ! I enjoy such unexpectable meetings while on a trip . When we get along with people , even strangers , it will be a memony in our life . He can jumpping and run very well . I passed the Singaporean driver 's license paper text in Feburary , but 3 minutes later , I realized that I had already lost my JAPANESE DEIVER ' S LICENSE somewhere in Singapore . To be hoest , I do n't want to go back to Japan for even a few days . Besides , the Japanese government will raise a concumption tax up to 10 % . So this time , I want to go back to Japan directly by Singapoe ariline . The image of Japan for foreigners , I think , was the misterious nation , concrete jungle , and men having the ethic called `` samurai spirit `` wearing suits . However , the predudice in which Japanese people are marked with not having human face is totally untrue . People who have little knowledge about Japan tended to think like the descriptions I mentioned above , ironically enough , the disaster reveiled our humanity . During this time - space travel he finds his first love , Livia Beale ( staring Moon Bloodgood ) , who left him without saying goodbay eight years ago and had disappeared since then . A main difference between Italian and English is the lenght of the sentences in their written form . Thefirst point is the `` economy ploblem `` . Thesecond reson is the `` road condition ( s ) `` . Hoping there 's someone to save me , to bring me far away from here , to a brand new world full of blossoms and flowers , fresh air - the ideal kindom I would like to belong to , in which I could completely display my talents and achieve what I deserve . I 'm waiting for your unswer ! I 'm so hungry , but I 'm dranken . Hi all , my nikname is Madi and I 'm looking for nativ English speakers . Recenty I have been thinking about being sensitive . Becouse I suddenly got a pain in my back yesterday . After seeing a model wearing this dress in a magzine , I decided to order it from the internet immeditately . I 'm goint to turky ! I 'm going to Turky with my custmers tomorrow . Hope I can keep on writting at least a message everyday and have a lot of fun here . * Tmorrow will be the result of the exchange student process . I did n't answere that question well . . . I hope I will be allowed to go abroad as an exchaned student . Please , please , Plaese . . . ! ! I met with a frined of a friend last night . I could answer only half of them and coudl n't answers the other half because I could n't understand all of their questions . Vasicaly , this is the first time I have spoken with regular people . They responded immediately , and told me that I sould not pay much money to get a new one . I was luckey . I really appriciate their help . My mouth was so cold that I could n't taste which fravor I was eating . I 'm planning to go abrord while on vacation next month . Luckly I was able to get a ticket to America at a low price . But I have n't reserved a hotel so I still need to find a cheape room . It 's been a while since the last time I traveled abrord . My girlfriend 's burthday is on the Monday of next week . actully I did 't preperate his birthday Today 's wheather is not good in Niigata sity in Japan . Spelling I will keep making an effort to write English diaries ong Lang - 8 . I went to Hong Kong and Makao with my mother and sister . In Makao , we ate the same egg tarte and saw the same street scenary in a drama I watched . Though the tarte was a little fatty , it was popular among other tourists . Seeing beautiful buildings , scenary , and shops , we felt like it was a dream . I can use Japanese and I am especialy He is 5 ' ' 5 , skiny and had long blond hair . The one I want is very expencive . tomorrow I wll go , though . They should control theirselves although there is the word ' youthful mistake ' . I wached each movie , and I accutualy felt that the movie lacked an explaination and that it 's difficult to understand the story . My host father sometimes takes me to various place , for example crimbing a mountain , or shopping . . . If I move downtawn , I have more time to do something , study English , talk to strangers , or take workshops . . . I therefore envy Korean fans . We are not sure when it wil be broadcast in Taiwan . It 's like endless waiting and really tortures me . In a shop , 32V was cheaper than 26V , a staff said 32V was more popullar than 26V , so the price was cheper . So , I bought some clothes , but , unfortunatly , it is too big for me ! Ca n't remeber words , write correct sentences or even can ' tspeak it properly . I had Japanes homework from my mother . avoid : We should avoid direct conflict when we desagree . postpone : Our school postponed the beseball game because of the bad weather . interfere : Some kids say that day do n't want their parents to interfere with them , but in actuality , kids ca n't live withought their interference . lack : I sometimes lack patince with my sister . I want to talk with many foreiners in English . Especially , when its roof is coverd with snow . It 's so sweet but it has a teribble smell . Becouse , I always believe in the power of jewerly which is a realy wonderful power like charming . Of couse , I have one which is anklet was made by myselfe . Nara is a traditional prefecture in Japan and it is famouse of having deers . Sentokun is the main Buddhist charactor of the 1300 year anniversary of Heijou because of him having horns . However , some people debate which charactor is the best because Sentokun is n't so cute . Come tommorow , too . Recipe for macaroni salada with avocado Mix all materials in a boal and add salt and pepper to teaste . I was surprised that some people actually complained about the tast of their lunch . After all , I just have less time to propare for my / the big exam . Foryunately , I can enjoy sunshine every morning . Remeber , when you get on a train , you have to wait for all people who want to get off it . I 'm going to go snowbording in Nagano ! As time gose on , I can learn , exeprience someting new that I did n't know about . There are some vegetables left in the frige . I want to know English . My dream is to studing in a British university . It was not as storong , however , it was already expected . We need to see the details and further reseach on it , so we still have a neutral stance for Hitachi Chemical for now . I turned on the TV and I was very surprized when I watched the news , So I thought the earthquake on TV and the one we experienced was different , becaue it occurred far from here . The legend was that : Chang E , the goddess of the moon , swallowed the elixir stolen from her huaband and flew to the moon . The Mid - autumn festival is a traditional Fsetival and it means family reunion . In Sydney 's Paddy 's Marckets , there were many things . 1 . Prepare everying before going to work at night My school is an airline business shcool and I want to be a great member of staff ! But , I worried about her conditon between now and the next olympics . If somebody tries to compel you to learn a language , or teach you something you do n't want to know , it doese n't work . It 's my New Year 's Resolution : ) I do n't know how much time I 'll have , but I want to work 2 hours pef week at least . Prefelable , I want to spend one hour a day , but I think it is impossible for me . My mother is very anxious and my father aslo does not know what to do . If I had already matered English perfectly , I would apply to it . I have just joined the site and I do n't understamd how to do corrections , not comments . I tried to correcte some people who want to learn the Russian language but I could only leave comments . Unfortunaly , two of them died just after they were born . I named him Yuki becouse he is as white as snow , and yuki means snow in Japanese . Is interesting that now , just six mounths later , Julia had kittens again . Unfortunaly , this time I will give all the kittens to friends , becouse I 'm going to have a new sister / brother ^ ^ Miyavi 's first concert was awsome ! He had a DJ named Teddy Loid ( he remixes some of Miyavi 's songs ) and a musician called KAVKI BOYS . S : Also , I hope that Miyavi sings the day of my birthay ( July 11 ) . . If I do go to whictler on thursday , I do n't care about college . I suddenly discovered that being alone in a foreign country really challenges my courage and endurance , which really pushed me to a tight suitation . That was somethind I did not want to admit ! I can not write it down in Engish . My job is Systems Engeneer . The reason of the times is crasy form of manegement . There are a lot of problems so I wish this form ( of management ) disappeard . mukashi ha nihongo ga amari suki jaarimasen desita nihon go ha hontoni muzukashi dakara . demo kare kara ima wa nihon go wo motto2 benkyo sitai desu . . . watashi to kare wa takusan cigaimasu yo . . . So , I 'll go to the office untill 8 : 30 ( every day I go untill 8 : 00 ) She is also an actoress . Syoma helped her . I wanted to go further west to Turky through Iran , but 911 happened when I was in the northern part of Pakistan very close to Afghanistan , and so I had to give up my traveling before the Pakistan - India border was closed . Nothing can cure the heart but the sences . bus roundtrip , it 's kind of a stupid tihng ! ! bofore I knew it . I am a spotlight man and a soud - effects operator . Good evening evryone ! But the classese starts the day after tomorrow ! I have been so deppressed and sad because he was leaving . He did n't want to spend four days with me before he left just because he was tired of seeing me deppressed . Today I tried to read the pracrice passage like I was talking with my foreign friends . so I staied home all day . We enjoed horseback riding very much . This photo is one of thenm I useally drive short distances , Often it depens on the kind of job the employer is involved with . If the employee is paied appropriately for his skill , he wo n't move to other companies , and that would be better for the team . I am talking about the advanteges and desadvanteges of playing sports . First , I will talk about the advanteges . On the other hand , I can see some disadvanteges to sports . Today I met a beautiful lady aged 90 years and a hundsome guy aged 82 years in a park . It was very intresting and much impressed me . One is that they have many topics of conversation including TV news , the catastrophe in Japan , Science , Doutch history and even Alzheimer 's disease . Unfortunately , _ peole , _ living in recent days , _ not only scientists but alsa officers and citizens , concentrare on the most advanced inventions or outer space rather than basic science . In this essay , I will attempt to explore the causes and sollutions . Speciafically , _ it depends on the nature of basic science . Accordingly , the sollutions to this issue should be varied . In terms of this , teachers not only in primary and scondary schools but in universities and colledges are essential for nurturing students ' passion and curiosity and motivate them to condust that research . Although causes of this issue are various and complicated , _ effective measures still can be taken to cambat it . What a nice wheather today ! And pictures of the sea and the sunset are beatiful ! He was supposed to stay here untill this Auguat , but he went back to Holland the day before yesterday because of the nuclear plant . I still ca n't beleive that he has left yet . In Poland the wheather is rainy . When I was in job the wheather was sunny . The teachar using this site is from the Philippines University , it is most inteligent in Philippine . I love coffe When I explained to visitor a proceduer in English , how to do a cold massage and she told me `` thanks `` , I felt like I was in nirvana ! Now I often hear news that a lot of temporaly employees ( temps ) are losing their jobs from the worldwide financial crisis . What the diference between writng in a journal and free writng ? In my opinion , reading books is the best way to improve writng in Japanese ! This is frist diary . He said that the girl told him that she loves him by text message , and he asked if the girl really loves him , because foreinger do n't say `` love `` so easily . Ohh man , Lang - 8 is really nice . I was shocked and got dreesed at the speed of light and rushed out of the house . I like alternative rock , rocksteady steady , reggae , FUNK , ska , and soul . Autumn is just aroud the corner . I grew up in a small town and I liked the quiet atomosphere . ( The amount of ) Public transportations is convinient . When I lived in my hometown , I commuted to colledge by car . I can dring alchole in the workplace and I can sleep while commuting between university and my home . You can meet with many different people and experience ( ? ) many talents and charactors if you live in the city . ( I do n't know the name of them . ) My grandfather said that even though I prepared the guard for the strawbwrries , the birds take them as the strawberries grow red . As it 's reasunable priced and has good tasting food / tasty food . I had imagined a simple dining holl but the outside appearanc is quite beautiful and the inside also had a good atmosphere . The Attched picture was drawn by a fan . It is difficult to understrand . . . I think that his performance was almost perfect in spite of his weak team Zauber . Everbody in the circuit regarded him as special immediately . Today , I worte a journal ! And last , the main characer is loved by everyone . My boyfriend builded them as he checked the manual . My job is computer programming , in the field of * Embedded . Day by day , I write a little boaring programming and read manuals written in english explaining IC ( cpu , controllers , and so on ) usage . Only optimyzing programming that will more efficientry use the cpu or multi core cpu makes me happy . Lerning computer science without undarsting english is more difficult , but I hope to learn their higher level of technology . So , I unusually choosen another bus . The story gose back . . . If you will teach me , please becaome my friend . Tanke you for reading . So I 'm happy because the holydays are coming and I can get out evryday with my friends = D Going to my part - time jop , I took my wallet out of my bag to take the subway . There was my tomato juice bottle , and it had spilled bacause the cap was not exactly locked ! ! ! People might think starangely , someone wiped red riquied like bloode ! I smelled it while commuting to my part - time jop . It 's about how to learn English . I regret sometimes that I did not persist in doing dictation and writing exersices everyday . I try to use more complicated words to make more intresting articles , but , unfortunately , I find out that I do n't even know what to write in my own native language . I 've recently developed an interest in studying Japanese and Spanish , so I hope that I 'll be able to write some entires in those languages soon ! For instance , English has more claer structures than any other languages , which helaps Japanese people to learn more quickly and deeply . That 's beacause Japanese people have logical thinking . That is , Japanese people would be well matched for learnig English . Moreover , now English is being tought to children in schools , but if another language became the official language of Japan , we will have to teach it to children in elementary school . I want to be good at English , that 's why I register and write a dialy in English . Iwas tryingto fiding Icarly 's transcript . My team dropped from B - league to C - league last year , so our team 's top priority this year was to win all nine games and to win the relagation - deciding match . However , we have already lost two games . To qualify for the relagation - deciding match , our team has to be in first or second place in my league , so we ca n't lose tomorrow 's match . it has become a popular food nowday . Honestly , I 've been studing English for a longtime . Sometimes I watch American doramas on FOX to practice my listning skills in English . My favorite dorama is Ghost . I hope I can understand these TV programs naturaly in the future ! Seeing them made me want to buy one , even though I hadn n't intended to do so . So I arraived at the gymnasium at PM 8 : 20 . Mamy friends would be able to correct my diary entries , and I would be able to correct a Korean learner 's entry too ! I want to go to Ameirca , Britain , or Australia . It allows ordinary people to serve as judges in criminal cort trials . Under the system , six citizens are elected randomely to sit in criminal cases , such as murder , robbery and so on . The court will bigin summoning lay judges in July . I think as tha training keeps going , it 's getting harder . So , I think realy hard about the work that involves taking care of my doughters . I 'm happy when I see the my doughters smile . Also , you have to take off slippers and put on another pair of slippers when you enter tha bathroom , I found Japanese custum might not be understood by foreign peple . Then I took the No . 1 bus to Zhujiang Road . Your advertisement was relly interesting . The position has attracted my attention becasue I think that my qualifications will meet your requirements . I am a graduate of Dhonburi Ratchaphat University and I hold a bachelor 's degree in Public Atmistration . While studying at the university , I enjoyed learning new things and paticipating in all kind of activities , such as Public Administration and Low End Management and I am very well accupted amongst my friends and enjoy chalenging tasks . Please , correct all my mistaces . I feel lazy , do n't feel like eating breakfast , or doing yoga excersise , , , I have been playing table tenhis with my sister for six month . So , I 'll start working there next il Aplil . Minsa is very well known . This beautiful fabric can be found in gift shops throught Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the poeple , their families and the village . First , it disperses your body 's pressure more widly than conventional ones , so you can sleep well . By the way , When I watched the weather forecast , the weather reporter said the rainny season will start this weekend . Usually rainny days are very cool and clear , but the rainny season is very humid and gloomy So I hope the rainny season ends early . Do you like the rainny season ? My daugher is stronger than me . Yestoday it was repaired by one of my best friends and it is back to nomal now . My favarite food is chocolate . ( A HYDEST is a member of HYDE 's fan club . ) Today , our class lost in the basketball competition , but I think that not everthing in life is a competition . Class seven , ok ? Go for it . I recommend poteto - chips with chocolate as a present from Hokkaid . Of couas both man and woman . I started writting an English diary today . I hope this website ( ? ) made me increase the Engish and the Korean language skill ! It was `` Girls genelation `` ! They are soooo cute ! They sang `` Gee `` . Recentlly , I am into KOREA ! I would like to visit SHINOOKUBO . It is so powerfull place . I search information over the Internet about work ! lol I wanna go soon . . . . ! but , I need money ! so , I am going to work tommorow fo my goal ! This class is required ( or mendatory ? Either is fine ! I ca n't speak and listen to it properly , even thoug I 've studied for more than a year . My friend said his relative who is fifteen years old is going wrong resently . But these are very expencive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alchole is from double to triple the price of Japanese one . Additionally , the goverment manages them strongly and if they go bad once , it 's very difficult to recover their carrer . They can buy cigarettes and alchole , and also drugs . I 'm a lawyer . Today is a borring day so I 'm searching how to learn English and I found this site ! ! ! Please crrect these sentences ! ! It is very difficult but deliguhtful . Fortunately , I have n't had a trafic accident . we wateched a comic movie and drank I ate lanch with my colleagues . Recentlly on Sartuday and Sunday , I helped the preliminary games of the high school baseball tournament . In paticular , I activate the electronic scoreboad and keep the score ( scoring a strike , ball out , etc . ) . It 's very fun because I love baseball so much ! I think it 's because there were many chace to eat out . I am studying bussiness administration at a university . Currently that company does not have any foreign costomer , but will expand overseas in the near future . I was really jeolous . However , I love English so much , so I hope I can improve my englishi here . Tunami is commin It was raining this mornig . Yesterday , an eathquake occured off the coast of Chili . The seismic sea wave is comming to Japan . A seismic sea wave is called a tunami in Japan . The Japan Meteorological Agency says that the width of the tunami is about 1m along Tokyo bay . It is important to watch for the tunami , but it is a little difficult seeing the TV channel . My hobbies : Playin sports , watching movies , listening to music , playing the guitar , singing , and reading books . It surprized me a bit , but August 31 is the first day of the new school term for my older boy / son ! The Japanese dealects In th kitchen , there are two refrigerators , and they will be full of food . She was nominated for an Oscar , which is a big award that eveyone knows of . Actually , I practiced singing mirey songs in English before I came to the USA . For me , she is very out going and has so much confedence as a singer and as a movie actress . Unlike other beautil actresses , she is very naturall and shows who she is . She probablly dislikes being called Hannah Montanna in the Disney movie . This hotel is managed by a nice weman . She is about fifty years old and treated us as if we were her own daugters . May be a lier does n't realize that sooner or later his / her lie will be revealed . So I bought amond candy today . At first I was afraid becase I do n't have enough Bible knowlege . But I have paryed to the Lord that I wanted to serve otheres . I was crying , I completlty felt the love of the Lord . . And then , I thought I would like to go to the biggest book store in my prefucture , When I got on , one ajian guy got on at the same time . I noiticed it after he left and I thougth I should hand it to the station officer , but it was kind of weird because the purse was made of crocodile leather . For exmple , if an earthquake happens , what can they do ? I stayed up to prepare for the German test last night , so I was a litte sleepy all day . What I have learned from today 's lesson is that I have little vocabulary , so I dicided to do some paper work hard . For half a year , I have done nothing but listen to basic English conversations on my Ipod . - - - - - I think this sentense is wrong . I do n't know how to express it . I hope we join round 16 togather . We were flying the kite , but the wind was realy strong . I could n't hold it anymore . I do n't understand . There are four different plastic bottoles and a can of green tea . Yesterday , I had a dream in which a foreigner spoke to me in English and I responsed to him . I like to drinkng juce that I have made using a mixer . mixer . I often drink banana milk shake juce that I have made I drank an apple juice milkshake this mornig . Itis very hot . I want to write jounals in Japanese however my Japanese is not good enough yet . I cought a cold . Resently , I hardly eat any hot food . It is not huge but it has verious animals . Dozo yoroshikou onegaishimasu . But fortunely , one of my letative who is Bostonian invited me to join the X ' mas party ! ! I 'm not sure if amerian people celebrate or just enjoy . Anyway , I should preper to the party . One of them is in Harverd University . so , I 'm thinking of taking another school ( Harverd ) class . But I do n't want to miss the oppotunity to study hard `` English `` You see , they were almost naked except only Fundoshis - - Japanese traditional men 's underware . I do n't have my own , unfortunately . At that time , the Ministry of Education considered that learning English at primary school can cause the loss of Japanese language proficiency and deliciency of knowledge on other subjects . Now that we have gained prosperoty by exporting mechanics to foreign countries , we need to communicate with many English speaking people who are not only from America but also many other countries . My language excnage partner I met him nine years ago and we have been chatting through skype for sven years from Monday to Friday . I could talk with him almost everyhing about myself , like having trouble , complaning somening and being agry about something . He is a really good friend , not only as a language partner but when our priorities change a lot , we can creat time to study together . It is really difficlut for us to keep our motivetion high . I 'm sure they tast fantastic ! Altough was so chilly , I felt very good . Onother one of my friends is studying business management , but she is intersted in many fields , even art . I thought that art and business are unrealative . She is also intersted in social welfare and irregularites . Mayby we are n't allowed to barbecue there , so the someone in the neighborhood made a phone call to the fire station . My father looked happy becasue all of his children came and visited his wife 's grave together . Becides , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street restrant ^ ^ Because Tanzania is a pretty big country , the road coundition is not good , and the transportation condition is also not good , so we can not meet often after we left for our new post . I have been learning English [ since ] junior high school , sinior high school , and university , [ so that 's ] about 8 years . Nontheless , there are many buildings that have been here for several hundred years . We went to Nagano last week and stayed for two nights with our relatives living in a neiboring area . More exercises , more mistanks . . . In software business , English is most important language because almost majar software is created by USA . Technical documents are writen in english . I wonder wheter I will be able to pass a driving test . So I will pesent them orally this Spring . If you are reading my diary , please fix any incoract sentences . Korean companies appear to enhance their competitiveness in the global market by lurging qualified people worldwide to Korea , and Koreans who are willing to or are forced to live abroad support Korean companies outside Korea . and now I 'm so hugry . . . First , if we could n't find a job before guraduation So one of the most inportant things for Japanese students is to find a job duling your study . It is called `` Free iFrashcard `` . It is Kansai dealect . They have Tonkotu soupe and thin noodles . But since I 'm a doctor , I work at an emergency infomation center instead . To get more active and productive , I have started to make more of an effort to learn foreign languige , especilally English and janpanese . The reasion why I chose English is that it is such a common languige spoken all over the world and is necessary in this day and age . I will study more and more to inproving my language skill . I work for an electoronics company , in the legal department . Plese , teach me English . D was abcence , we would want a substitute who is also a native speaker , if possible . You might notbelieve this , but most Korean parents let their baby sleep in their bed even untill the baby becomes five or six years old . ( hope I did n't quote the name wrong ~ ) If this were the case , the whole sysytem would undergo a transformation with so much uncertainty and no one could foresee what 's going to happen . If you regard teaching as a platform or shelter for you because of the econmoic slowdown , you are looking in the wrong direction , you should not be a teacher . At 7 o ' clock I went to watch the match `` Arsenal VS Barscelona `` with my friends . Take myself for example . I started English from junior middle school and my cusion began to study it from elementary school . She spent 6 more years studying english than I did , _ hence her English is much better than mine . I still remember the time we spent the whole afternon havinga chat in the sunshine in my courtyard . I eventualy spent two and a half hour there . She taught me some Korian , her eyes were shining and she was full of energy , even though she was old . Hope our tirp will be safe and fun . What sould Mecanics is so compricated that takes me a very very long time . These are series about the four famous Chinese classics : Dream of the Red Chamber , Water Margin , Journey to the West , and Romance of the Three Kindoms . I have to go out from my small office right now to catch the last train , but temperature interfare with me . . . I had a very ordinarish day today Even though I did n't have enough instuctions , after a few days I remembered all the essential points of passing this test and became better at controlling the clutch , so the instructor let me to practice by myself on another car . Roshian Dinner There , on display , were some Matryoshka dolls in addition to a Rossian cook book and travel books . I ordered Rossiyan salad for the appetizer . At that time , there was an Itarian acquaintance of COO . He said , `` I let the patinting express my feelings `` I wanted to talk about Itarian art of the middle ages , but I felt like he would not be intersted in them . . . What 's the differesce between `` sort of `` and `` kind of `` ? Therfore I had to ride my motorcycle today . This temple attracts visitors all overe Japan . Even if it 's written in English , I feel like your comment is very familliar . People think in a similar way , even though they speak diffenrent languages , I think . So I woke up laghing ! ! They make noize late at night and live as though it were their own house . However , she is a classmate of K and she told me that she just has to be pacient against her will . I wanna contenew to draw pictures . When he was in his twenties , he achieved a alliance to revform Japan . They are my reratives ^ ^ I like chirdlen very much ^ ^ I had a goot time with little cute girls . I hav n't finish all of them yet : ( To manage the router I had to explore many new and interesting things , such as kernel making , establishing net rules with firewall ' ip _ iptables ' , traffic counting and many other things . I sent an email to a native English tecaher who works in a high school with my wife to get some adviceon reading English articles . ( I really do n't want to bother you and hate to ask you this , but it woud be a great honor to get some advice from you . ) I hope you can listen to the attached MP3 file , and tell me whatever you feel as a native speaker ( mainly in terms of overall correcntness and accuracy of pronunciation , intonation , accent ) . Ginpei is the cutiest baby I have ever seen . When pest viruse invade the human body , a macrophage eats it . Let 's go back in tim and pretend to witness what happened . As if he had been strck by lightning , in one glorious moment his life was permanently changed . Hiroshi was thinking about playing teniss after work . Next day his manajor asked him to do a lot of documents until the end of the week . So he could n't go to teniss . This year I bought them from UNICEF ; a lot of Sants are on it and each one looks happy . I heard that living with a homestay family is the most important for improving my English skill , so I need a homestay family who has enough time to talk to me a lot , and I want a harmonious homestay famlily who is very kind , caring , and thoughtful . I was going back to Tokyo form Izu on Sunday but I could n't do so because of tunami forecast caused by Chile 's earthquake . Nothing is impossile for people who have those 2 things . I have lived in Toronto since mid Octover . I think forign beer is stronger than Japanese beer . He is fluentry in Japanese and English . many English words are borrowed into Japanese , such as post , conviniece store , TV . I wato to be able to go sking . I want to protect my most important thimg . According to him Okocha is a proffesional football player 's name . He belongs an amateur futsal team . No one can understand me completely exept myself . This photo is of a lily of the valley that a neighborhood gave our family a few days ago . `` Nao `` is my Japaness name , but I 'm Taiwaness ! ! ! : ) Yeap . Nevertheless , some companies still take advantage of ( the ) Japanse ' English complex ' and advertise suspicious items . Although , I was quite sure he did something really bad , it was a revenge to anthor classmate . It was the first seminar and we talked about the purpot of life . It is for fthe benefit of nature . It is a abreviation for Test of English for International Communication . It consist of 200 multiple - choice questions diveided into reading part Some universities adopt it as a requirment for admmision and credits according to TOEICscore . they only forcus on reading and listening . Shaking hands are very formal , we only use it before an interview , or if we meet someome we do n't know . Reasnable and healty lunch makes me rush to Subway . Are dramas broadcasted your countries ? My senier . I do n't like one senier ( student ) in my lab . - > suggestion Recently , one of my friends told me that he had a plan to go abroad to studyng English . It was a nice restaulant with pictures of Hawaii . I finaly got my computer in good working condition . I 'm sorry about late replies to messeage . I went to Korea town in Shin - Okubo , Tokyo with my firends yesterday . Although , before that I would like to go to South Korea , becouse South Korea is quite close to Japan and would only take 3 hour by plane . I went out of the classroom becouse I was irritated . It was like a real sean . So the preparetion has been hard for us for about one month . But I coud n't . I 'm lokking forward to starting our new life . My work has quitely changed for various reasons . I was abel to have many challenging oppotunities . Sometimes I feel disconfortable in my situation . Anyway , the last Exam is the database coures and that is the biggest / / most serious problem for me . . . . . . In those days , I felt that people divided themselves into knowers and not - knowers / non - nots or haves and have - nots . Lately , the very popular girl group `` AKB48 `` is famouse for dressing in school uniforms , in Japan . For that reason , the educational department started to renew textbooks for elementaly schools . about Japanese education getting back to its old days of lerning , which focuses on more lerning by heart than lerning by activity . Anyway , I think this renewal will be effective in elementaryshool schools They wil release their single CD and an original album . I have a 3 year - old doughter . I 'm tring to have free time in the morning . We are influenced by everything which we are surrouded , but we hardly notice them . I know the lyrics are controvertial but I liked the music as soon as I heard it . I 'm lerning English . So I still do n't know a thing or two abt it . My temporaly office in London . It 's so nerous . I am very nerous right now . I have prepared it for four mounths . Thinking of myself and Kowing myself well . Today I thought about myself . I thought about my character , habbits , dreams , acheivements and failures . regarded myself as a very passionate person who make objectives to achieve and execute them deligently . Mom , Dad and Grandma went to Ping - tong to join a wedding . I missed thier phone calls eight times because I was studying in the cram school and did n't feel the vibrations of my cell phone . . . When I found the message from Mom , I called them back . I gussed they gave up trying to find me and went home , but I was wrong . I felt so sorry that I missed the calls and I felt Mom and Dad 's love for me , Could you imagine ? - - - sometimes the temperture is 22 celsius but on the other hand , sometimes it 's 12 celsius like today . I can stand it raining and suddenly turning sunny for only hal a day , but my body ca n't adjust to the gap in the temperture . . . . . . Today , my homework is to write the eassy `` Problem of Combining Work and College `` and I have been thingking about how to accomplish it . I have a qustion . It was the first time that I got a strong perm in my hair , so I am very sastisfied with my Air Wave . I wonder why white small food ( rice ) can make verious food . Do you know a food which makes verious foods ? I to stand in the subwey for an hour before coming home . But it is intense inpact . I still hate it with a burning pasion but I decided that I ca n't burn it if I have n't read it first but I have to be honest with you . . . The reason for the 28th of Feburually As you know , the last day of Februally is the 28th . The king said to one of his sarvants : `` But a year has a maximun of 365 days , so if you wanna add a day to August , you have to take a day from somewhere else . if we take a day from Janually ? `` Janually is an auspicious manth . I ca n't allaw you to take it from Janually . `` to take it from Feburually ? `` `` undoubtly . `` I was tought this . But I do n't know why Februally originally has 29 days . . . because I often forgetten them . ^ ^ wahahaha ^ ^ For example , when he or she wants to write about metaphors , he or she will write something like `` The mechanisms of metaphorical thought are present in our most common concepts : time , events , causiation , and so on . . . I had made new frieds My hostfamily family had BBQ too . I think China is a good and kind cuntry , so I like Shanghai more and more every time . I 'm working on translating the confidencial agreement from English to Japanese . Maybe I 'll buy the nex generation . Hence , students completely depend on tutorials and unfortantely they forget about their lectures due to focusing only on the classroom tutorial . First of all , tutorials are cosidered a awaste of time and money . Having mentioned the disadvatages of tutorials , I should also mention the advantages . First of all , tutorials cancel the distance between the teachers and the students and as a result of that students can ask freely with out being afraid . From my point of view , this is a very important thing for every studentThey . They also stress information that students need . To sum up , if we make a list of what is written befor , we will see that the disadvantages of these tutorials outweigh the advantages . So students should attend their classes regularly and follow their teacher 's instructions instead of tutorials which waste time and money . I 'm planing to eat many traditional Chinese foods , such as Peking duck and dumplings , as well as wark around the Great Wall of China . What I 'm looking forward to doing the most , is making new frineds . A busy season has just strarted . Spring break started yeasterday , so I came to Boston becasue my roommate is from Boston . I am at his house now . Today , We went to the city and tried a Japanese restraunt , but I did n't think it was very good , haha . Today I heard the word `` marvellos `` . I did ' nt know the word `` marvellos `` . But Japanese peaple who have been living there for a long time are quite crazy . All children have a dreame or dreams But I think a lot of students of college do n't have dreame anymore . Learm how to pursue , how to love , and how to live . I bougt some English movies : I do n't know what I sholud do . I want to ask , if someone knows , how to meake learning more effective . And I want to speak like a native speaker , so how can I get more expirence ? I felt local people 's Englsh was much better than ours . He is very famous for not only being an artist but aloso a professional My part - time job is to mark my students ' homework and theach them math , Japanese and so on . It has a qwerty keabord like blackberry 's phone and you can type very fast like pc , also the OS is multitasking , so you can change the applications while they are running ! I dind n't remember to charge it the night before ! ! That was orrible ! Many young Japanese have a weekness for brand names . In the future , I 'll write about why I go to school on the weekand . I usually go to study at the yoyogi zeminal in HAKATA . During holiday , I eat lunch near the yoyogi zeminal . Some free school students are phisically challenged , and some of them suffer from depression . The free school where I did volunteer work is similar to ordinally schools . Actually , free schools are one of the nonprofit organizations , so they 're in finantial difficulties . Probably , that pictuer made me what I am . Various topics are shown up one after another : `` I have a dream `` speech by King , The Beatles ' first appearance on TV , Barak Obama , 911 , etc . One of them says `` we are not talking about Tom and Jerry `` , just after she answered , `` Barak Obama 's speech `` in a serious face that does n't match her age . I enjoy lerning it . As my favorite contry is Hawaii , my dream is to live in Hawaii . They have to learn too many sujects , such as English , math , physics , chemistry , biology and so on . I have no idear . I 'll try to uplode photos of these . we did stop to cheer for our teamates at the last lap . I believe my dream will come ture . I think I will be on a working holiday in New Zeland . Althogh it was the first time in a long time since we had graduated from school , we enjoyed convasation and time went by quickly . But now I think it is more iimportant to develop friendships through the memory of shared experiences instead of only studying so hard . But I just now realized that I am doing a presentation tommorow . Famaly Party Enternational exchange is very difficult because there are many cultures and religions . I thinkt that 's enough . Todat 's dinner is Thai curry . Perhaps they all have been actioned off or became someone 's pillow . In April , I have a lot of things to get done after personnel reshffuls for a new quarter . Gion Festivall When we heard the fact that he took part in the movie as a hero , we were supprising . So I took an aspirin to write this jurnal . This is the second chanllage for me . Tomorrow is Saterday ! ! My hobbies are listening to music , piaying table tennis , and surfing the Internet . In the future , I will write more articles about my life . I welcom anyone who wishes to refine my entries ! I 'm Noi . I live in Bangkok . I 'm an admistrator and operator . At the moment I get up early every day to go to the company . The company opens at 8 . 30 am . I am happy to day I can spend time checking my e - mails and reading English books and writing English too . Tomorrow I must to arrang documents for the employees in my company I must read books befor I sleep today . Have a good day ! I If you would like to stady Thai , I will help you . In Japan , some people need a sense of humor theirco - worker . After watching it , I bacame positive , and I think it is important not to be afraid of anything . Hallo everyone ! Well , I have n't a crear dream in the future now . And it is so difficult to serch music progrum in Tokyo . I want to listen to some high quarity music progrum in Tokyo . Her director recommaned her to quit because he thought her work was not important and others could do that instead of her . He seems to see what he wants to ; like being late often or not asking vendors seriouly what he wants . When the police pulled me ove , he told me that I was flagrantly disobeying the rule , and he gave me a one - hundred - dollar speeding ticket . I sat down and ponde how I could make it through all those things when I suddenlly I heard the announcemet on the speaker for all employees to gather together inside the confrence room . He had to cut down the numpers of employees , and I was the third name he called . I completely forgot that I had missed three classes in a row , but the college 's rule is that if this happens , you 're automaticly out . Finally , there was a massive desaster at home . I could not belived it when I saw that my whole kitchen was flooded . However , I still belived I could rebuild my life and presevere in my goals for my future . My heart keeps racing , and I can not belive what a crazy day this has been . We ate super delicious seafood with mojito for luch in Key West ! This is the MOST souht point in the U . S . I storongly reccomend you that visit Key West if you have the chance ! Time goes by like this withot relation to the situation of the world and the hearts of people . There are a lot of opinins about a mood of self - control . First , this is a presnt from my customer who went to Ezipt last year . This is a calendar made by pupls , a little piramid , a bookmark and a sweets like a dry fruits . She had been to there befre the protests and I 'm so glad no harm was done . Ezipt is one of the countries where I want to go . But this did n't happend and I heard on that radio that during the match some Lazio fans rejoiced for Inter players ' goals ! ! ! ! ! I have been slack off and goof off to keep a dialy . First , I have a few English vocablaries and in addition my grammer is teriible . So , I should have kept a dialy every day . Before long , Do I use to keep a dialy ? In college , I seldom spend time studing English and read magazing or listen to the radio . Rehab means rehalibitation . There are many beutiful beaches in my town . Several musicians were there on the stage , and the sound was full of euphorigenic . Other staff members were working untill 2 AM everyday . I went to the amusement park with my friend yesteday . I strech and bend my limbs slowly while taking deep breaths . She has been in hospital for more than two months to avoid early deliverly . I have a boy friend who is younger than me . He is 6 years old yanger than me . I was in love with him a lot at the beginning of 3 months , but now I 'm confused as to whether I love him or not ? I do n't know how to talk about this with him because he ofer gets angry ( that 's anoter reason I ca n't stand him [ / RED ] ) I worry that if I talk about this with him , he would not talk with me for a while . . . . Many customers say our prices are higher than other supllier . The wood consturction of the sofa is very sturdy . Fisrt , I boiled the noodles . It 's belicious and reasonable ! Today , I sp spoke to an old friend for a long time on a sellular phone . ( cell phone ) I registered with Lange - 8 because I want to make friends and do business in English . Recentely , I have had a problem with my neck after I hurt it 2 weeks ago . My frist time `` Lang - 8 `` Hello : > This is my frist time writing a diary entry in `` Lang - 8 `` . The outcome is impotant but tle time we are engaged is meanless . Jun asked me to play tenis this morning . I made my hasband got up at 7 . I asked them to buy some food for lunch befor they go to school or office . My hasband was worried . Becouse they wanted to buy food first in the convinience store . I 'm thinking of studying English vocaburary and reading but I do n't have enough time to concentrate on those things . my wif comes home today ! yesterday , she wahed all the dirty clothes and sheets . I hope I can leran english well . High salary , parmanet employment and state . . . Also , if he does not know the rules of the bus , the Japanese man shuold not get angry with him butexplain the Japanese way . I can imagine it is not easy , however , it is the best way to understand both cultures throughtout the trip . I have an apartment with three suites for sigle . It is very usuful so it will be easy to write English diaries on the train . I registerd on Lang - 8 In my view , I do n't have much opportuntity to use english . I will try to write a personal daiary every day . I 'm really disapointed with myself . . . . Moreover , our wedding ceremony is comming in a month ! gambare jibun ! About 2 years ago I went to Koh Sri Chang every month because my friend was doing reserch there on snails . In this story , the main character Pip suddenly has a chance to recieve the great expectation by someone . In the next part he stays in . a ginants - inhabited island Bussiness conditions have been bad for the last year , and the high yen will have a bad effect export companies . So I dicided to borrow a book , Forrest Gump . I knew Forrest Gump but , I do n't know it in detaily . Recently everyone is upset in our Research Institude , because of the personnel changes . I think maybe I will change my job if the new Research institude is not good for me , but now I am just waiting . I love this sentense the best : I was fastinated . . . She recommanded this site , showing me her sevral world - wide friends . How habe you been ? Now , I am in Goald Coast in Australia . I worrry about meeting my foreigner friend . Now and then I think that I have to try to studing English more . This is the third time I have celebrated with my friends , whom I have known from high scool for almost five years . In that event we could eat a famous cook 's food for only five hundred - yen which we can not normally eat at such a low price , and heard the special talk show about enviroment . He is very famous not only in Japan , but also in the world as a famous yachet sailor . Yes , it is true under the policy of `` one coutry two systems `` . I want to become a translater , especially for movies . ' It will be such hard wrok because words that translater can use in a line are specified by rules of translation . I do n't know how long it will take , but I want to become translater . Because there are some places where many peple were killed by tsunamis in northern Japan . We took part in a Halloween parede in West Hollywood and took comunicate with Americans smoothly . These girls have different nationalities such as Chiness , American and Korean . What do you think you should do so that people think you 're profesional ? However , the number of selfish parents has been increasing recenty , I think . The thought that someone will fix my mistakes and incorrect grammer makes me so excited . In order to make my English easer to understand , my teacher wants me to use a higher tone of voice . 4 ) I had no girlfriends before I konw you . but you have had two boy friends , Austraria , China , India , and Sudan . I endjoied communicating with them . to be continude in `` Introduce myself ( 2 ) `` Well , I 'm going to buy some ingreadient for our lunch after this . In this country , foreigners ca n't buy flats except for condoiniums which are super expensive . But there are many foreingers in Singapore ; accordeing to some websites , 45 % of people in Singapore are foreingers . It means , normal Singaporeans who own flats can easily get extra incomes from foreingers . In Japan foreingers still can rent rooms from real estate companies . It 's defenitely because many people want to live in Singapore the rest of their lives . As you know , an earthequake happened in Japan . But , I happened to watche NHKTV `` professional `` on Feb 28th . I ca n't undersand the difference ; ( . So , I fall asleep in lexures . ( Eating out is a littele expensive for me . I probably wo n't spend much money this month so I thougut that I should treat myself . At first glance , there is a vivid landscape with a small shed on the beach , securely covered up in the cove , with towering hills in the backgroung . My 1st diarly ! Every moning when I opened my eyes , I would have messages from him on my cell phone . I have a lonly telephone . Furthermore , Recently my assaingments have been getting more difficult , and they require a higher level of English . I really appriciate your support . and then I got up to make a snandwich with tuna and cheese for my son befor he went to school . I know that English is supose to mean people from England . Is this correcte ? My mom , my cousin and I went to the supermarket . We bought a lot of toiletries , like soaps , shampoons and so on . I 've decided to keep writing in this jounal everyday before . To learn a lunguage it needs patience and motivation and opportuinities to use it . First , he descrive wery well the image of human who is not perfect . Though , according to the magazine , some stories are recognized that the main casts of his novels overcome nature , the wins are not always imcomplete . For these reasons , I think that he is a great author who descrive human 's imperfections . He is Chu , He was creatived by me , He can fly whereever as supermouse . It has history of approximetely 400 years . First , we learned how to do a breath meathod . The meathod made me feel easy . My first yoga became a recration . I hate to get my cell phone wet , because I purchaced an expemsive one last year . where one can observe the beautiful staras . and besides , it was at midnigit . We tend to reagard symmetry as beautiful . You could n't find any differnces when you look at it . Yes , it has no anatomical differnce between the left hemisphere and the right one . There is a hint for this question in a clinical sympton of patients who have brain damage in the right hemisphere . This sympton is called hemispatial neglect . Patients who have brain damage in the left hemisphere do n't have this sympton . But they might be canceld . If you see any sentance that can be better , please tell me . They were supposed to start running a corn farm there , but since they were still in Singapoer , they did not even bother to check the land in person . But unfortunatelly there were many CHEEKY MONKIES in that area . Every month those monkies would eat only mature / ripe coconuts there . Her husband tried to ask hunters to kill those monkies , but killing that species was illegal . My colleague who told me this story stopped taliking , because nobody knew the rest of this story any more . They should have considered thier plan carefully . For example , moodle , squid , shelfish or mushroom . I wanted some convresation with my wife . However , I was lucky today . I thought it was Wednesday so I still have one more day to attend classes . But today is Thusday . I had a vaccination against the flu today so I wo n't catch flu when I take the entrance exams for univercity . I actuallu like having an injection , but it hurt more than any I 've ever taken . I have to have it again next month . . . My English is so poor , I hope sombody can help me to improve my English level . it 's so hot in my contry ! ! it was diffcult when I fiest started to drive . Seventhly , put it in the plastic bag for 1 ~ 2hours ( summer time ) . Eighthly , spread it and you should be about 2mm thick using a pole . Ninethly , cut it about 3mm width . It does n't have any taste so please use udon saurce . Also , I want to know what part of Japanese grammer I should introduce in first when I teach survival - level Japanese to my friends from foreign countries . OR foreign friends . Because of shows like Lost , CSI , Prison Break , I started to notice : TV darma is in the US , too . However , learning Enlish is my important work and I will keep on . My friend introduce me to this web to inprove my english . It is my friend Se - hee 's birtyday in two days . I wondered what to do because I ca n't decide our topic without thier ideas and pwemissions . I was so dissapointed at their irresponsibility . At tha age , a woman thinks about the `` life of a woman `` or `` work of a woman `` . in Japan . It 's means that `` She chooses a famili ( getting married ) rather than her dream . Of cource he knows ^ ^ ) Because it has a little bit poison in its oragan and eyes , so if people eat them without treating them correctly , people can die . I have not eaten sasimi since I 've got to Australia , She gave me it with a little hasitation . He got married , too and bought a new refrigeator for his wife . But , if I were a short - sleeper , I would have enough time to do something early in the moning . Today I went to a Ykitori restaurant with my family . Yakitori is like grilled chitken , skewerd on a bamboo stick and Also , we can choose any part of the chitken we would like to eat . After the big earthquack , it 's very hard to get gasoline , even in areas around Tokyo . I ran to some gas stations near my house to verifing the conditions of the gas stations . Some gas stations are closed , but other gas statio are open . Do people living near Tokyo really need gasline ? We can go anyware by train around Tokyo . However , there is a beer - like alchoal . I like beers all aroun the world , such as Guiness , Budwiser , Coors , Chintao , Singha , Heineken , and so on ! I prepared two batches of cookie dough , chocolate and vanila . I was very surprised that there are old bulidings on the side of the road . For a short time driving , I can see the tall bulidings . I give up easily , but I want to continu to write it . I can gurantee there are no Japanese young people who don know this song It 's my first post here so let 's considere it to be kind of a test . I just hummimed the songs . Unfortunateky , I could n't pass this time . ( + _ + ) What is the question that was hidden iin the `` Mona Lisa `` and `` The Last Supper `` ? Malaysia is one of the most famous countries which has achieved a major renaissane in a very short time . Mahateer Mohamed was the prime minister for the tewnty years in which this change in their country occurred . He didn n't give the people money or land . He just believed in them and in their power to build the country once again . ( this is the last sentense of yesterday 's diary ) I read just a few peges , but it is very interesting ! The meaning of a short sentence is too dificult for me to comprehend . . . . . . . The cucomber I ate had a weird taste but I was too lazy to get another one from the kitchen . Japnanese Grammar For those who have a hard time with learning Japnaese Grammar This is good for learners of Jpanese grammar . I was wrong . I need to study hard and practise English everytime chance I can . I have been persuaing this girl for almot half a year . My recent waorries are the heat in Japan and my backache . . . . . . Hello , freiends . One of my friednd told me about this site . shocked and determinded to study English again . Yesteerday with my friends Hello everyboday ! I really do n't like to ues one . Jananese people often take the outside to eat . Hallo , my english . He looked embrarrassed because I have n't gotten angry before . Someone kill human just habitually , can you accpt this ? I 've just thought that unilaterlly . ( Actually , I was stearing at him during the party . I eat low fat foods , konnnyaku mashrooms , and so on . Today is Saterday . I do not go to the comepany tomorrow because it 's Sunday , so I feel happy . I have a new emproyee to interview for a job . I 'll smooth the wather for her before my boss interviews her . I would like to conneck to the internet at my house . They said that they will give me a new number for me to conneck to the internet at my house . They will be come by to service and conneck the internet about 7 days after I called them . Thank for you teaching me engish . Because a sandwich is portable , especially because my daughter is a nightperson person who tends to oversleep , and sometimes has no time for breakfast , is important . I hane just registered for the TOEFL test now . Historically , the Japanese way of English education has consentrated on reading and grammer . 2 ) The Faculty of Civil Law and Free Enterpise The graduates work as officals in central and executive bodies of power . Some graduets later become judes , prosecutorrs , and advocates . All necessary facilities are available to students for high - level comprensive training . The person thought to himself , `` He 's ver stingy . so animation songs have been developping inversely . It 's a sereous problem in Japan . So I want to coperate with a demostic FD food manufacturer and sell FD products to foreign countries via ( through ) my English website . If any one have interests in this kind of bussiness , you can contact me . Tonight I am really missing my family and friends who live in my coutry . Tomorrow moring I am going to school I wonder how the auther was able to so realistically describe the thoughts and actions of the boy ? What 's the Pirete English ? When I was trying to chenge the language from Japanese to English in Facebook , I found some `` English `` es there . What I saw on the screen was really unfamilier English for me . I was stuck at home the whole tim , watched too many episodes of the sitcom Friends ; nearly 10 . I want to write about Chandler and Pheobe , but I do n't remember anything about them . Next month I 'm going to go to the Phillipines to study English for a week using my vacation time . The phillipines is one of the English - spoken countries , and many Korean college students go there to study English . I 've never been to the Phillipines and am looking forward to going there . ( Simplely ) mmmm . . Listen and wirte down Now , I listen and wirte down for at least thirty minutes everyday He adviced me some advice . It 's about a male fright attendant snapping at a passesnger . In Japan , customers always come first , we have to treat custmers like a god , so that kind of thing ca n't happen . But I 'm sure many people are atressed out and really want to do that , so I also think he is a hero ! ! youture . Ufortunately , my team has been very bad the last five years . The players did n't practice very hard and they were defeated several times . Now I am very upset because my team has been recently defeated again , but whataver happens I will not give up my dream that this team will make a comeback . I guess it 's because she has n't had many oppotunity to talk with Japanese people before . I should get familiar with the way naitive speakers talk . . . Other members did n't want to become seafood but nobady stopped him . So we played softball in disguisedly . I could not repond to most of the questions . How did you learn writing Enghrish ? It 's dificourt for me to spell . My favorite schooi event is the sports festival Both imventions are a kind of instrument to measure the same thing . last night I called my mom and siad `` I would like to study English more by staying in Austrailia mom `` I will try anything to impoving English and my self worth ! ! Children could make experimentations . I have to decide what to do . Either get a job or advance to doctor cource . Unless they came here , they must wanna get to speak English fruently . But I sometimes speak Japanese when I hang out with Japanese friends although I critisize other Japanese students . Ylikes , vcroome told me that word yesterday . I think that word is wonderful haha . This is the first time I 've come here . I hope I will meet more friends frome here . Then I can inmprove my english . Some people told me they host the parade every everyear . Reguler customer , `` Yagyu . `` Most sushi shops have reguler customers who come often . Yagyu is one of our reguler customers , but he is special to `` Sushimasa . `` Yagyu let other reguler customers eat foods and drink alcohol free . Their musik is really ( I have no words to express my attitude ) great . Since then , he has n't liked to drink and thought that it is a vice to drink alchol . When I told him that I do n't want to use a taxtbook , he did it . Because of I have had trouble with my older doughter . And I must mention the terrible traffic , Bangkok 's traffic has the worst transportation system I konw . The traffic situation is much better in the other cities . The other cities are queit and beautiful . The interval time was shorter than useual , so I was really tired . Hello , my wonderful friend , how have you been today ? I just relize that I have not written an entry in my journal for more then 10 days . I saw this on my calendar . Time is useful and life is beautiful ; someone told me that and I beleaved it . But life is difficault , exciting , and interesting too . ( `` NABE `` is a Japanese quisine . What shoud I say in a situation like this ? * I 'd like you to correct weird or unsuitable senteces and give me some sample sentences useful for my pupose , if you do n't mind ! Throuing things and goods away We went to a Vietnamese restraunt . taday I 'll write my thesis proposal , the deadline is the 9th of this month . So I can apply for a Shanghai account next year when I graguate . Although the weather was hot , I feld merry . So , countrary to this change , I should not admit adulthood until beingover 22 ( the age in wich many people graduate college ) Anyways , I returned my dormitary . But Something happend . Because one of my French friend said that she will go back to Frence soon , so she asked me if I can take a leave and go to Taipei with her . After I filed a leave , then she told me that she need to go back to Frence immediately . The oceam world is filled with vitality . I 'll decolate a tanzaku and make a wish . Today there is a typhoo . So , I decided to study English , after treavel . For example , almost all the railway tracks were laid , except near the Fukushima newclear power plant , and the highway in Tohoku is finished . The one is the Fukushima newclear power plant . The reason is that the company who own it do n't give information to the public immediately , or accuacy . The other one is that people are reducing their spending , by not having a cherry blossam party , eating at restaurants or going on a trip . Many cherry blossams are in bloom now . Goodby . I wanted to buy whatever he wanted to eat , but he kept saying that he had no appetit , and had an upset stomach . Now is the era of the grobal economy . Also , child 's nerves are very weak , so the effection would be worse for children . Hi Everyoen ! Anyway , when I found out that the airplan tickets were not available to go there , I was gaving up the idea of spending Christmas in a more special way . I was invited to his relative house for dinner on Christmasday eve day . Acutally , I still do n't know his hometown city . The four players play diverse roles in the competition , and how they fulfill their position has a significant impact on the result . It depicts the coflict and growth of a Korean boy living in Japan , a role performed by Yousuke Kuboduka . I am Ireally happy and sad . Was my English strenge ? I found out the cheepest bar for them , What is the defference between `` I am looking forward to `` and `` I look forword to `` ? Meiji university , which is one of the best and most famous private universities in Japan , announced that it is planning to build the `` Tokyo International Manga Library `` in thier premises . According to their spokesperson , it is expected to be the world 's biggest library as the storage of Manga , it will have approximately 2 million items related to Manga , Anime and video games which are copies of Mnga , cellloid pitures of Anime and Charactor goods of Video games etc . One of my co - workers send me an e - mail from his mobile phone to mine last thirsday night . I want to travel somewherer but saddly I do n't have much money now . . . . . . I 'm planninng to visit my grandmother 's house with my mother and my sister 's family . My sister have 1 year old baby , so my granma must be looking forward to meet her great - grandchild . I 'm looking forward to meet my granma and my nephew too . It smells good in the shop when I go there in the morning and I love flowers , so I feel good just looking , tuch and having flowers around me . Today , a small pizza shop called `` PizzaShool `` opened near our apartement . But I realized that I could n't speak English , when I spoke to tourists from forign countries . But when the cool breeze of early autumn comes , I am determined to travel alone to unkown places which I have never been to . I will talk to people who live in the area so that I can know what they have experiance in their lives . I 'm going to go skiing Yatsugatake with my family , my daugnter 's friends and their family . I went to my local hostpital for a medical checkup . There is a lot of informetion about Malta . But I 'm trying to find inportant informetion . ? ? Because I 'm goin to stay with a family . Civil service entrance test is a test that if you pass it would allow you to work with the government and it could let you have a lot of benifits , for example , you do have to worry about lossing your job . Although , I am a little bit upsad , life goes on . And now , I have to watch the `` The Inconvient truth `` again , because I have to pass my mid - term exam ! I have some foreign friends , expecially from the USA . Her American jokes make feel happy and I think there is a defference between American jokes and Japanese jokes . I have to take two tests , English and my majour , Phychology . but recently I do n't know what happend to my laptop . I do n't have much money , Becouse I am just a student , and my parents live in Korea . We slept in our car , somethink like a van , so we have comfort so we were comfortable , . We only ate sandwiches for two weeks . We visited almost every city in Holand , the most beautifful was Amsterdam , now we have much experience , in the future I would like to travel more . I 'm waiting for corects ; - ) After that , I dried my car by using a drying mashine . This is a tomato staw with pig 's gut and a lot of vegetables . But when I became junior , I was changed by becoming class president and working by interacting with many friends , seniors , juniors , teachers and started to combine activities along with challengig character . My dillegent parents who got up early in the morning had a big effect on me and it made me become more dillegent and have more integrity . On top of that , just after WW2 , most Japanese infrustructures were already destroied completely by air raids . The cities we can see now are not that important . That is just the sarface of mankind . Even if Sendai city was destroied , as long as people who can design and plan cities exist , Japan will be able to recover ( from ) these damages again and again . Nobody can revive dead people , but at least they will be able to recunstruct a city that is stronger against tidal waves than before , right ? Hello my friends . I 'm happy becuse I 'm now writing my second post on this lovely website . I would also like to thank everyone who has corrected my last journal entry . I am so exciting these days because I am back in college again but this time for clinical stage and our lectures are not boring any more becuse its more paractical and alot of real patients there are no studing in community hospital with alot of new ppl from other medical studing in the psychiatric department there are alot of wierd peaple but I think it is soo exciting because itz hard to find every case in any of the huge textbooks you must think very deeply . However , in reality I do n't have my `` DREAM `` bacause I do n't know It has somthing to do with with my mental problem . But , my main purpuse is to talk with my friends . Finally , 10 friends in all gatered , and then we all left together . I also had a can of beer , because it helps me fall alseep . Today , I helped a friend work from 5 PM unitl 8 AM this morning . I tried to smoke today . just a mintute . I just wanted to konw if it was real or fake . In my corntry , you can easily buy ' fake ' things . I took a pictrue of my favorite brand of cigarettes . ( I do n't smoke now . ) Regardless of that , one of the recent reosons why traffic accidents occur is through . . In addition , since it 's next to impossible for pedestrians to judge the situation of a driver , they are often inbolved in unexpected traffic accidents . It gives me power and courage to overcome advesity . I know that I can cout on my friend when I have a problem , and she can count on me . If friendship was n't in my life I would feel unhapy and alone . I ca n't let myself out whitout using Japanese . . They were `` run out of `` , `` put off `` , `` put up wih `` and `` put up `` but I do n't know meaning of these idioms so I could n't construct the sentences . Yesteday we had a hanami patry , which means cherry blossom viewing party in Japanese . Most partisipants of the party work everyday during the week so want to sleep at weekend . I defensed myself like this , It seemded I failed to convince them We shraed the only blanket and drank whisky much to endur the cold . Around us , there were cherry blossom trees in full bloom and the moon lit thier petals . By the way , when the time to start the paryt had come , I had a terriable toothache last week and went to see doctor on Thursday . But tommorrow is horiday . Last Sunday , I had a cello residental training session in Kita - kyushu city . The only bad thing was , that in this season ( very hot summer ) , although we stayed near the beach , we had no time to swin in the sea in front of our hotel because of our very long training from morning until around midnight . We knew that we had a concert to show our training results , and I had no time to practise my weaker songs because I had to teach my colleages about their weaker songs . After we finished the schedule , for the final 3 days , we could swin at last . The small chellists ( 4 ~ 10 years old ) were so excited that they ran and jumped into the sea at the fastest speed you 've ever seen . : ) I hope that the next residental training will come soon . . . Holle everyone time , but it is still very poor , so I just found this way tp hlep me to learn but after fabuary , maybe l 'll live with my father . We often hear that foreign people who are living in Japan , are suprised with the Japanese train system . Everyone tells me that I can have plastic surgery later or I might become pretty when I become a univerisity student . What 's worng Before I come here , I was determin and promissed my friends to do my best ! It means that I should be confident my English if many people correct me because at least my sentense makes sense . This website is very useful for me bacause I am look ing for the opportunity to improve my English . I am a university student in the UK and I study accountacy ing . Moreover , I have only two weeks to preapre for it ! ! I had heard this morning that the Fukushima plant 's adcident would be estimated as the level seven , which is `` the major problem `` and this is the worst situation could be . Today , I got a phone call from my family , bceause New zaland had a bigger erathquake . It can help me preprarration for my class . . What do you think about Reilgion and God . . I was born in Christy home . . why I was a Chrstion before . . My family members made me think in this reision . . Invited to a Bithday party iN AUS It was my singpole freind 's . that is why I cooked Korean food which contained tofu , pork , zunichi , onion , chilly , lots of chilly paste and powder , soy source , sugar and etc . . . . . There were singapolian , korean , chinese and hong kong ? Have you ever eaten Chiken Ramen ? Intorduce myself Whan I was in kindergarten , I learned ballet . I also have gone to Rainbow Brige , Asakusa , Fuji mountion . I ca n't wait for the 2nd half of the movie which will be roadshowed next summer . I have so many assgnments lately . I am male , but I too have a dream to fly to all over the worid as part of the cabin crew ! ! I am look forward tobecoming good freind . How about watching a drama like `` Friends `` , or someting like that ? We are waitiing for the plane now . I am really looking fowerd to it ! ! I was very exicted about the after party on the boat . Next movie was `` Batman `` , that was directed by Tim Berton . I hoped that they could give me some magzines to kill the time for a night . To implove my English skill , I decided to keep journals . I ca n't play soccor but I 'm happy they won . Especially the Tohoku region [ Miyagi , Fukushima and Iwate ] was more dagaged by it . Today , I called apple suport center . I had an appple cara ( insurance ) policy . If I did n't carry insurance then I would have had to paya lot of money . second to call this person and ask him why he did this and try to easily forget what he did > but I think it is going to be so difficult because I think he has to do this and I am sure I did not make that big thig . . . . Electric power reducetion request of 10 % . I went to the librally to study English . I often use the city libraly when I feel ( distracted ? ) . Have a good weekend , everone ! HaHa , Today was my lucky luckyday . It has a rule which all players must not explane . My neme is Shogo , and I belong to Hiroshima univercity . I 'm good at creating new plans or unipue ideas . At noon , I went to a resturent for lunch with my friend , Sherry , and found a middle - aged man looking at us . After finishing our meal , we went to ride our bikes and simulately , the man came to us and smiled . Today 's dinner was pizza , made by steave . It was yammy : ) Today , I 'm starting to write my dairy on thie web page . During my days at school , my part time job was teaching Japasene . I feel really relieved now due to the fact that today 's work ran smoothly although we had some trouble with the destibution company . Now that I finished preparing the shippment , I feel a load has been lifted off my shoulders . In fact , therer is a staff canteen in our office building , but I have had lunch there for years and I have been bored by every single dish there . weil es vielen Gegenden gibt , wo es selten regnet und wo Leute immer an Wassermangel leiden . because they are so populer in Japan . quality , art , charactors ' motion picture . And I could drink Tim Hoton ( I do n't know the spelling ) 's iced cappuccino ! ! ! ! ! ! ! Becuse I could n't have imagined that Some smou wrestlers bet a lot of money on the Japanese professional baseball games . Because smou wrestling is the Japanese national sport , t the wrestlers who have been gambling should not be forgiven . Actually , I 'm not a big fan of smou wrestling but as it is the Japanese national sport and also a Japanese tradition , smou wrestling should be clean . I want so badly for my writing avility to be improved . But onedays daymy mother watched a moive , and found he was older than he was before and a little fat , then my mother told me . . . and I felt so terrible . But it seem to be very difficult for me to complete the task which my advatiser gave ( or assigned ) me . Anyway I have to continu for five years to get a doctorate . From yur message , I learned ten new words approximately . Last Satarday , I went out with some good friends . Unfortunately there was a trafic jam on the bridge . You know , because he is amazing and inteligent . The most touching part was when he told mother in law and father in law how much he loves his wife and how much he misses her and his dauthers . . It is our first time , but it will be chalenging . Which do youl like ? The reason is Japanese inn are wramful and relaxing . It is remaked . I hope someone will answer me and fix my Englsh soon . A - ALFA I rememberd everything that happened to me this year . . . It 's difficult to take ( find ) time to talk to my boyfreind . They miss out on much happness when they are younger , and are trapped like birds in a coop ! This is my first time writting on this site . If we adopt this restriction , eighteen and ninteen year old people will be inconvenienced . I studied English for almost 10 years , but until half a year ago I did n't want to learn . I relized now that I must learn it fast to find a well paying job . It made me aware that one girl 's life will change forever after shock , one mother 's choice will change her family forever after shock , and one memont can change your life forever after shock . Witnessing other people 's suffering during a natural disaster helps her to overcome her lown trauma and forgive her mother . The Grab ( Lucky ? ) bags im Fukubukuro , Japan are very populer . I 'm very surprize to watch the TV news that many people wait in line before the stores open ! English grammer I started studying English grammer about ten days ago . When I was a student , I studied English grammer . So I study English grammer not for taking tests , but rather to use it , and because I like studing English . She wanted me to saty over there tonight but I do n't want to bother her . It 's a symple sentence , but it 's useful . One , you can learn a variety of knowledge . For example , literarure , physics , I caought a coldxD I hope I get better soon . I have headache and some feaver . I have no remory of it . However , when I brought the printout ( ? ) of the program to my supervisor yesterday _ afternoon , he immediatly found the equation which should have been ( ? ) divided by the simulation sampling time `` dt `` , which I set to 0 . 001 ! Recentry , I thought about whata leader should do . I know the airline compnay as I lived in Ireland before , but it is unfamiliar to most Japanese . I want to study various things ; English , Mathmatics , Algorythm , and so on . Two peaple corrected my first one . I worked at a company for 11hours , and studyng at home for 3hours . We call this a coupon webiste or a group purchasing website . The nan bread was bigger than I had expected . The king canary was dying of curiousity because of a treasure . First of all , I 'm goint to acquire some firsthand experinece for 4 weeks as all new employees did , and then I 'll be in charge of a compueter system . I forget many words , idioms , and grammer . I think I need to sduty harder than I am now . I ca n't find the right words , even if I check them in a Japanese dictionary . Because it depens on the situation . I love speaking with people of other countries beacuse I love to learn new things and to meet new people . Throung this site I have met nice people that help me in English . I love the animation Gintma ! Today , I got a text messege from one of my friends . So , I sent hiim back a messege that said , `` I 'm in . `` I could n't breathe nornal , so I went straight outside and came back again . For exsample , do you know ' Yesterday Once More ' ? This song was made by The capenters . Thouglt he is an old singer , we will remember him forever . We made Japanese food such as Udon , Macha pafe , kinako , and azuki . We also decorated the Physics room in order to make Japanese atomosphere . My boyfriend and I are planning to go to a spa located in Niseko this weekdend . I 'm an interior designer but I 'm working as a market resercher now . . . . . . . . . Anyway , I 'll ask you about `` aricles `` . I want to say to my father : You are the best father in the whold world . I 'm pround to be your daughter . I have to be more deligent than anybody . Today is Sunday , but we are still on duty , becasue of a shortage of power . ( electric = implied ) Acutally , I do n't like cold weather . This weekend is probably going to be busy but remember , masa , you have to check Lang - 8 and try to keep wirting a new entry for your study as many times as you can . begin began bugun I 'm gon na go to my friend 's for a sleepover and that 's the only thing that im looking foward to . I would like to get some methods for asking questinons about my assigment when I have problems this weekend , otherwise I ca n't proceed to the next step . The temperatue is also about thirty - six , This is a very critical tourning point in Japanese history ! . So , it is very rare for a private company to be bunkrupt . . . The Japanese economic syle seems to have Westernised , which is very severe and dry . In this sense , I think this JAL bancruptcy is a histrical turning point in Japanese history . Except for oversleeping , I would always hear the phrase , `` The deligent man . `` If someone does not wake me up , I might be continuosly sleeping . Unfortunately , one yeung couple sat near us . They were very impolite since they were discussing the movie very loudly , and this behavior is very disturbing when watching the movie . Hi falks . And form a friendsip story . She came out with her new alubam in Japan . I was really suplized ! As it for me , I have spent over two years learning accounting , if I were to try another area , it would be a big challange for me ! Most people ( can / could ) have difficulties when they speak a foriegn language which they 've alread studied for a long time . I 've studied a foriegn language for quite a long time . Moreover , I can hardly express what I 'm thinking in the foriegn language . I studied English at school , and then studied Franch for two years in college . I am studying at a distanse learning faculty at Kazan University of Culture and Arts , so I have a lot of free time . There is a swimming pool nere here and it seems to be opening for the season . Today I woke up at 10 : 00 am and started studyng my anatomy lesson . I attend a degree course in Biomedical Laboratory Techniques and at the beginning of February I 'll take a human anatomy exam , I really hope I 'll pass it with a good score beacouse I 'm studying it so much I 'm quite bored about it . Can someone explain to me what the differance between these words ? I do n't know how to improve my terrible English ( > - < ) Heip me please . As a result , trafic accidents often occurr . And I met another boy who was even yonger than me . The teacher in our class was a native speaker from Austraia . I may be able to improve my English pronounciation by going to English lessons . My English has been mixtured with Chinese accent since I came to Singapore . I will study Einglish enthusiastically . out of consentration . . . after I took Toefl test last month in addition to finishing exam in school , my consentration towards studying Engulish has run out . I only study about 1 hour in a day I guess regardress of taking a break from my part time job for next toelf text and ielts . I 'm so tired . . . I really want to give up on evrything now if it is possible . yes , it 's ture , how stupied of me ! I really appiciate my friends , thay are always there to help me , whenever I have difficulties . I fancy to accept the quote from a noveli , `` I am poor , humble , and unfair , but when our souls accross graves and stand in front of God we are equal . `` However , this is just an utterance which is used to encourage ourselves . Actually , it is meaningless and we cant alive ( only ? ) depand on a spirit . I evidently understand that the four years of my campus life are going to be very splenid . I will reap many friendships and generate unforgettable memories here . Though , it also may be serious and I may live in a state of misesy for four years . in contrast with my precious friends and even sisters who have n't been enrolled in college . They dream I am futunate , but this place may possabily bring me a nightmare that I will never return to experience in my whole life . This sort of feeling is practical . Several days ago , one of my friends told me about this website and I successfully registrationed . This theme reminds me of the famous movie `` Terminater `` . I remember I enjoyed whatching the movie when I was growing up . The biggest benefit of wark with teammates is that they inspire me , while my own ideas stick when I work on my own . My hobby is listning music ! Some have two weeks vaction at most . This vacation season of spring is calld Golden Week . So almost all firms give their employees long - term vaction . I am also enjoyning this vacation with my family . Please contct us , people who like `` ONE PIECE `` ! I do n't speak Ukranian , and sometimes I feel that ukraine people do n't like Russian people . . . Therefore , thier situation is worse than mine . Your neighbor 's apartmanet was broken into . But I could n't cosentrate listening to English . My familiy has a cat . But I ove love love him . I wunder what your opinion is , dear reader . . . Step by step unusual things and coincedenses came into my life more and more . Bio hazard4 by 3D is uneviled There is a beatiful river called Venice ( partle in jest ) ? However , my favorite menu item on there is a glill vegitable & sausage dish mede by Staub . It was very delisiouse and can ensue the maximumly flavor of glidience . I barely drink liquar , but everyday I drink iced coffee . Maybe I do n't know how to deal with the relationship between colleagues after gradulation . Maybe if I would ajust my temper to this entironment They cheked my misstake and revised my diary . So it 's necersarry for me to visit , write and prectise english at lang8 site I 'm fine as useal . My friend is in Canada for working hollydays . How frightflness ( scary ) it is . Self - introducation ! ! I can help you by correcting your entries written in Japansese . Recently I have been worried about my future , I do not know what I truely want to do ? What is priority in my life ? I especially like suspens and action . My favorite sport is table tannis . I will keep taking lessons until I reach 1st grade table tannis skill sereous flaw in it or you have some advice for me . I will go to a `` GO tournament `` at a university in the neighbor prefecture so I will stay there only one night . I heard that many people lose their job and sufferd from poverty . They organaised some workshops , like ' manga ' ( it was for teenagers who like writing and drawing comics on their own ) , sewing ( making a little brooches with Japanese material ) , clay modeling , ect . So I only could make a resevation . I think it is a critial problem . . . And , unfortunatly , the instrctor seems to leave her job to others . This moring ' I must prepare to work . ' I whispere . The company continued their aggresively overseas marketing . I know that today is due date of the corporation 's establishment in Japan . I desided to study English again to reach my dream after I enterd university . I did n't expect that since I began to write compositions on lang - 8 and had them correted by you guys , my spoken English has made great progress without much practice . I did n't even realize it before the interview . This novel is famous because the writer committed suicided after he finished this novel . Actually , I 've already graduated in a reputable school in Osaka last 2006 , but I still wana go there . ( Masato and Koji were the 28th menber . This is the frist time that I have sold anything . The item was a budha magnet . Last time my friends from Lang - 8 helped me to correct my describtion and they told me about good marketing techniques to sell it to the people using a computer . It worked so now I can sell anything . I would like to say thanks so much for you kindness . I recomend that Ishiba becomes the Japanese prime minister . Lator on , I realized that the sound was actually coming from a clock which was making a loud tic tac sound . It is a amazing that the tic tac sound could be so loud that I could hear it clearly when I paid attention to it , as opposed to when I did n't pay attention to it . Hopefully my next joj will be connected to using English . Last mounth , I met a backpacker from Honduras on the train . Whoever is studying Japanease ! I adimire those Chinese writers , like Zheng Yuan jie , Han han , Guo Jing ming , they are very talented . I was deeply tounched by her style of writing , by her imageination , by her emotion . My biggest drawbcak is the shortage of emotion . PS : Rencently I hace a cruch ( ? ) on the online game - - `` Maple Story `` . Actly I 'm not a PC gamer . I thougt that I did n't have to go to work . I chose Japanese at hte beginning of our term . The Moon is shirinking So I was reliefed . Einglish is very hard . Okei , I desapear from lang - 8 for almost 2 months . He massages my muscles and sting needles to my neck , sholders , and back . It only costs 2000 yen because I have Japanease medical insuarance . I saw this drama and was recommended to me by an emcee of an information TV plogram . This weekend , I will rent the DVD from a lental shop near my house . Actually , you can find me there evry Saturday . In Japan it often happens that an employee climbs the career radder I was very ashemed and told him seriously `` I was trying to catch you and I did my best , but I could n't catch you . It is just opend this week . The area where I am living is arrounding with many apartments and a lot of residents like me . We feel excited if we have new shop or restuant open near - by . And food did not taseted very good , the rice in the sushi is a bit loose . . There were a lot of a street vendor astall , so I ate some food , which were made within the stalls . I stayed at my grandfather and grandother 's house overnight . This is totally my parsonal diary . . . . It 's not the time for writting a journal , otherwise I ca n't go back to my place / ' home and sleep peacefully . At the same time he was disiplined enough to not say , `` I want it . `` And he breathed fast like a dog which was told `` HOLD ! `` in front of the meal by his mastar . The skin of my face has something bad happend . I think he just thinks about winnig the election . I 'm sorry I could 't eat fruts salada . I ate buloot and I thought it was dangerous . I participated in it of my own accoord . it is usually rainny , cloud , and cool . strip you of your once ratical dream and to put ( Q1 ) What makes you happy ( sad , angry , surprised , unhappy , bored , frastrated , etc ) ? This is my first challenge . It was raining when I left home this morning . I looked for a good unbllela but soon realized that I did not have good one . For several years I kept losing my unbllelas . Rihanna is a talanted singer ! Recently , I have listened the song `` the canifornia king bed `` over and over again . Just relex . `` Perfect skills in reading and wirting english will help that purpose . `` I was looking for some action but all I found was cigarettse and alcohol . `` This is hard for employees but I can have private or self - learning time due to this order , like wrinting entries this this English learning site . I 'm a student of departmrnt of biological science and belonging the laboratry of structural and functional analyses on biomolecules . My research theme is tructural and functional study of hypothetical protein of an extremely thermophile , Thermus thermophilius HB8 . I respect his incredible mathmatical skills So , I still have a little trouble to communicate in Enblish ( especially spopken British English , accents and pronounciations ) . In fact , I was near critisizing them . I 'm relaxing with parfume now . This resturant just recently opened . Instead of prepairing for it , I was cleaning my room the whole evening , hoping it would put in order my thoughts which hardly wanted to form into sentences . Then , I left the resteraunt not sure if he would call me again , but I am satisfied with myself because it was a good challenge for me . What an auful fortune ! Every shop had displays set up at the front , therefore every store looked very good , and I did n't decide which store was the best ( sotre ) . I bought takoyaki at four different stores and ate them in oreder . In my Japnese - English dictionary , `` Uchiawase suru ( verb ) `` is translated as `` to make arrangements . `` But thisdoes n't sound rightat all ! Of course corrections on this post itself are miost welcome . . Today , I saw photos of a short abroad stay proglam at my university . I work for financial survices . You need to found a strong wall aganist those from society who hurt you . You have a commer aim - that is , to come on together for your family 's happiness . Did you see the movie Karate Kid that rencently premiered ? However , I am in Singapore now , here is clean and safe , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to wrok so hard and for a long time as slaves , no worse than them . I felt shameful while the movie , this movie showed foreingers how disgusting the Japanese culture is . Because I did n't do anythink for two months . At first , I was feeling so nervous , but it was a good oppotunity for me . That is why I worte this letter to you . I 'm watching videos on You Tubu now . Elderly people who live alone like the woman have less of a chance to communicate and visit with family or neighborhood . She has lived in a dormitary . They would take thier boyfriends to the dormitary and let them stay over night . The dormitary is a house , so my friend could not help running into them . We acutally do n't like Pachinko , but the restaurant next to it is very cheap . We like to go for lunch on the weekend because it is very delisious there ! I want to speak fluentry English . The OkonomiyakiI was good . First , Merry Christmas ! Enjoy youself ! Beacuse of the long distance I had to give up an interview this afternoon . when I picked it up to chekking the contents , my friend went to the ladies room and left her daughter with me . I took a Bulet train . Yesterday was Spring Festerval . It is time that I become mature and be responssible for my behavior . There is a special place where we go to see a beautiful night veiw Re - type e - mail address to forward this card to more frineds after sending . I must speak English at least five minutes every day because I become very shy and nervous when I speak to someone in English in calsses . I need to be brave enought to say what I want to let them know . I NEED TO BE STORONG MYSELF ! ! But I realize taht life is not that easy anymore . Recently , there 's another porblem that I have to face . I 'm Japanese and a university sutudent . I major in medical science , that is to say I will be a docter . I tweet in English everyday , talk with my Filipina friend ( s ) on skype , and write in my diary in English like this ! ! My habby is playing basketball and watching NBA games . He was descriminated against by some crazy Amricans , and they tried to rip him off him . I have another example . I met some Japanese bilinguals in Australia , but some of them told me that when they were in shools , they were discriminated against by other Australians , even though they could speak English like other Australians . Sooner or later borders will disappearbut sad to say things still remain as they are now , we have to keep fighting against discriination to live on other countries . So I think it 's an excellent idea to write my diary on Lange - 8 in English because , hopefully , someone may correct my mitakes . I can believe in myselif ! ! ! Oh , I do n't know yet wheter I 'll get the job or not ! I want to study aboroad someday . I am not Cristian . . . . will that cause trouble for them ? I hope , that everything wiil be ok . ( more conversational ) Now I am studing English . I can read an English book which is writen with easy words . ny sign of blood on the road or anywhere on his body . He got used to this environment fairly quikly . However , some peole push too far . someting like that . We just staied instead on 11th Avenue and watched the fireworks presentation . They sometimes quarreled with each other , but made up immediatly . I undrestand my son 's feelings , because I have had the same experience as him . I do n't know how hard they qurreled today . As it was expected , after the anouncement of the health minister about swine flu , many people ran to buy masks . Because I went to thre to work . People in the school cooked with colledge students in Matuyama city . Matuyama city is Ehime Prefecture . I just started keeping an Englisy diary today . I think it is a quite helpful website for ( with ) people who are learing the ( ir ) second or third languages . let 's exchange throughs and help each other . My friend reccomended this homepage . Anyway , the guys in this viedo are awesome . Their motorcycle transporter was carried by my transpoter transporter . I wanna go there , I guess it is the in the middest of summer in Australia , the season is the oppsite of Japan . but now Im still remain poor We studyied for over six hours and I was so tired . That is becuase I am going to see a foodball game in an hour and after that I am going to eat at a friend 's house . I 'm so tired because I studeid until 9 : 50 p . I attended the banguet yesterday evening . I have to prepare informtion about Montreal . It is made with wheet flour , soup , and some other ingredients for example , rice cakes , cheese , octopus , lobster , and so on . In general , it is difficult for beginer to make . I have a scype ID , and sometimes use this to talk with my friends , but I have never used Skype to talk with foreign people . I 'm planning to travel next yaer . It would be a little bit scarely for me . I have been to Paris , London , and Canada before but these places would be for the fisrt time . The other is to squat down untill the right answear descends to him . I tried to translate it but I couldn n't . It was too difficult for me . . In this October , I decided to enter the Chinise speech contest . In the movie `` Magnolia `` , her song was used and gave it a supernaturaly or merancolily mood . I 'm working at an English conversation school as a front desk personnel , but my English skill is n't good enough so I ca n't comunicate with a native English teacher . We 're gon na ( going to ) have a bisiness presentation test tomorrow . How actual is discussion anout this person . Finally , I want to tell that the personflity of Mary the First is very unusual and interesting . Yes , she has brought much pain and suffering to her people but throughout ther life , she , too suffered much . In my work I have also found out that a lot of films had been produced about Bloody Mary ; moreovere they are still producing films about her . We wrote a lot of books too . These two examples proves that she is still interesting to people . But now , I 'm surfing the Net and drawing pictuers . Japan is an archipelago comprised of a number of islands such as Kyusyu , Shikoku , Hokkaido and Okinawa , located in the middle of northern hemispher . I thougt it would be good to buy some education stuff . I saw some news that so many contries are praying for Japan , and giving us resucue , money , foods and so on . So your help will be really thankfull : ) I 'm becoming suited to Autralia little by little . Seravel weeks ago , there was a big strike in my company , I work in a state - owned company with 4000 workers , which produce NC machine . You know , a nomal worker is just paid 2000 a month , less than the gas allowance , so rediculous ! Finally the managers gave in , they came to the workshop to negociate with the workers , promised to grant the half - yearly allowance at once , and canceld the middle managers ' gas allowance . Anyway , the result was not bad , workers got back to work after they recieved the allowance . Sometimes genes have great influence on children , but the more important would be the quality of upgrowing at home and teaching at school . TV business get involved in price competition against Sumsung , while the bubble of solar panel business has already burst . Thank you for reanding my entry . The Japananese P . Yukio Hatoyama is struglling against transferring Futenma U . He pronounced on transferrign out of Japan , but U . Maybe it 's a seceret ) The cause of my sadness was a quarrel with my hasband . On my way to the pool , a car suddenly appeard on my right side and then cut in front of my car so I honked my horn . It 's a piity that I have not found this webside ealier . We pracice cheerleading over 5 hours every weekday and over 10 hours on the weekend . Because , I have canker sore on my tangue . : ' - ( So I ate many begetables for lunch ! ! Flying sourcer ? No , It 's a flying car ! Bamboo Blade is an anime that was broadcast 4 yaers ago . Today is a festibal in my town . When I walk for a few minuites , I get wet with perspiration . In Obon the souls of our ancesters come to us and we invite them . I was able to keep this pace with the other runers . My son has been in hospital for 9 ddays with a serious diseas . I want speak this beautyfull language ! I have been waiting to get this part - time job becouse it 's very popular . fortunately , there were only a few costomers today . I am alrady awake when I was high school , I learen Japanese but I forgot many things . I will dance at the year - end party of my devision tomorrow . Could you correct my dictation sctipt ? Enjoy this amazing video , which is on a weired deep sea fish with a transparent head . The Macropinna microstoma , known as the barrel - eye fish , is small and dark with large fins , a tiny mouth , and unusual barrel eyes under a transparent dome . The two green spheres in the video are the lenses of its tubular barreleyes and the eyes are in closed in the transparent shield , sort of like a glass canopy of a jet fighter . Above the mouth the two dark capsules that appear to be eyes , actually contains the fish 's olfactory organs , or the equevalent of nostrils . Ood ! It 's ood to my body because I ca n't move quickly . But now that I 'm dieting I might cease from deit . for foringners But that 's the mimnimum I have to do . Classes end at 15 : 15 . After that we have club actibity until ( ? ) about 18 : 00 . but when my son enters erementaly school , I will have to do night duties . The teachers of agulicurtureor farming have to do this heavy work no fewer than once a week . I 'm waitnig for an answer from the company which I took a job interview from last Thursday . Anyway , I think I 'll get some new infomation tomorrow . He appers only in the summer . I could n't help checking thoughout the room . I am not sure whenther I was able to sleep or not . Bofre university , their only focus was studying in the cities . After that I went to eat Chainese food with my classmate . This is a very famous regend among Japanese people . Of course one was to study Engish hard there , and the other was to order a s - size cheeze burger meal in Sydney . So it was natural that I thought the size of Australian cheeze burgers should be super jumbo as well . I rushded to a McDonalds in Sydney just after I arrived in Australia . I ordered a cheeze burger meal at the counter in joy . I gazed at the cheeze buger meal for 5 seconds . When I started talking about the weired news , I finally found him under my table on the floor . I have been finding books writen in English for my studies . Reasently the website introduced a lot of books and digital books . Resently free digital books have been introduced . Digital books have many good points , for example digital dictionary soltware can be used in digital books . So , I asked my husband to massage my neck and shoullders for me . I ` m sorrty for the delay in diary entries . This april , almost my freinds start to work so we couldn ` t meet and drink easily ; but I hope we can do it again ^ ^ They are my precious freinds . There sre applications for Twitter , Facebook and Mixi for the iPhone . Good morning - zao shan havo I want to stuy hard , to read the document , and to deepen my understanding of my major . I have n't gotten a job yet even though I 've had some interviwes . Cristmas is coming in about two weeks . Some houses really took a lot of effoets to put up their Christmas decorations . But I ca n't repond quickly when I am asked by a English native speaker , even though I have what I want to say in my mind . She was terribly frightened after she read a person 's blog on which he made a structurly analysis about the disaster that willhappen in 2012 . Coincidently , the news report said an earthquake took place in a country on the Pacific Ocean . As a matter of fact , in the end of 2009 , a bizzard has swept over many places like western Europe , the US and Xinjiang Province in China . And the horrible earthquake that has made many Hitians lose their families . The immidiate family is the most basic and smallest community in the society . I played with his son , showing him how howto use iPhone apps and teaching him some words . He is starting to join the society guradually . I think that the university should increase the number of questions that test output skills , say , organizing thoughts in essays or drawing conclusins from some facts or expressing oneself in English and so on . But , not to speak of conversation with adults , they ca n't write even juniar high school - level writings or communicate with native English children . Indeed you will see , reading this teribble sentence , I 'm not an exception . everyone loves raggae , Latin , cumbia ( ? ) , jungle and drum ' n ' bass . He left money for my marraige fund . Howerver , my computer is just two years old and I should wait at least one or two years to buy the next one . He paied 500 dollars and got a new computer . I usually use two online serives for learning English . This website uses Flash technolgy for learning words and phrases . It is simiilar to the English one , and I think this is useful and convenient for Japanese language lerner . The iknow involves also blogging feature and sns feature , but I feel that this blog and its sns system is not so good relratively to lang - 8 , this website . actualy , my dad lives in China for him job . Anyway , I relley miss Japanese food , such as sushi , nikugyaga , oden etc . Althoght you can get sushi in london , the taste is definitely different ! Snaks in londo are really cheap . While I 'm eating snaks , I 'm happy but when I finish , I feel guilty for some reason and sick because I ate too much . becouse Macdonals 's cheese has some special additive like a drug . So I think snaks have the same kind of additive . Anyway I ate cookies todoay even when I know about this effet . . . My English is poor , but I realy want to improve it , anyone can help me ? ? ? I was tierd We got medisine . She wnat to give me a gift . Althogh it 's challenging for me to think of topics to write in English , It has become more enjoyable for me to write in English ! My friend and I are planning to go to Tokyo Disny Resort next month . We love Tokyo Disny Resort . And I was studing harder than usual , I thik I shall give her some canneles when I return the molds . In my class therea are students who are almost native speakers . . Last Sunday I drank with some English teathers and their friends . I woke up earlier than other days and & nbsp ; went to the hospital because I was concerned about a litte faver . these days swin flu is prevalenced ( ? ? ? ) . so I was really worried about it , but it was just a faver . thrid , I will have a part time jod for weekend I ' d like to registrate as soon as possible , in order to make an early hotel reservation ( only available for that association menber ) . Dear * * Assiciation staff I 'd appreciate it if you could registrate me before Jan . 5 . Then , the boy came to the shop and tells us about the owener of shop . - but I sold to Jwish man . just a traslation entry She was accused of spying on the Iranian governement in favour of the USA . As soon as I arrived , I took a warm shower and then I went to seelp . My husband bought me a I - pod touth the other day . A small displacement gasoline engine is mounted on the power tiller , it is 4 cycle air - coooled one . It is my important right hand in the garden and feild . Even though I joined the site lmmediately , it was not easy for me to find time to write . My hobby is surfin . I 've forgote to tell my mother about it . Now the busy week passed , I can relax and revive agian . `` Having finished lusnch , I went directly to ~ `` I know that it 's a bad habbit . I hope you will help me to lern better English ! I always go to the restrant at lunch time with my colleaque . The conductor anounced that someone was trying to commit suicide on the track so trains would not run uitil the police arrived . RecentIy , I have been often reading the book Self - development , because of the training of logical thinking and Photo reading . Recently , izakaya ( Japanese pub ) which searves flat - rate foods and drinks is very popular in bright - light districts . Nowadays , I have to recognize that I relly learned a lot from those stories . I relly miss them . I miss my childhood and I especially miss the person who made me laugh in the old olddays . Do you know any manngas of Japan ? For exanple , Doraemon , wanpi - su , Death note , Naruto , etc . There was a free concert in the center plazza . There are several stalls ( street vendor ) around the plazza . I think cumsuing there is not cheap . I aslo saw firefighters standing by . A urban appearance in downtown San Jose is preety good . She could n't follow what we said and felt uneasy . But I though she only has only been learning Japanese for 3 months , and her pornunciation was good . It is not easy . A buritish girl is staying in the hostel now . No Japanese shall beat my child , and I raelly really wish for that . In passing off , `` dilution `` means damege to the goodwill . becuase I have to go to work tomorrow . becuase my graduation is just around corner ! ! ! ! I 'm going to have my hair parmed tomorrow . However , my hair was not parmed very well . Was it so expectable ? And I 've been waiting for the result of the exam for Osaka Univeristy ( Chinese major ) . Resently , I quit The Chanson Society [ I play the bass guitar ] . I have had a lot of hoemwork , and I had to make a presentation . I still remeber I lined up for two houer becuase I wanted to buy a moon cake . Yesterday my boyfirned and I went to some nice places . Happly full moon festival . But although it was only thirty minites since the festival started , all of the lobster was sold out when I arrived ( there ) . Of course I ordered a lobstger set . We studied writing , reading , grammer and stuff like that . My doughter is a big fan of Ponyo . She continued to help her mother , for exsample ; washing the bath , washing the disehes and so on . He can speak English fluentely considering the fact he is Japanese . But some Singaporeans told me these salaries are quite common here , and they added that some intelligent Chinese and Idians are earning more . I had fixed my pronuncation . I do n't understand what is diffrence between / o / , / ou / , and u : / . AMon , Give me power ! I am working at a Japanese reustraunt in Victoria , In the winter holidays , I did n't syudy very much , which worried me because there is a test coming . The second time a foreign customer came to our comapny ( office ) It takes a long way to get there ; we had to go all the way up a montain . Usully I like to sleep in the morning . I liked it vey much . She was happy to understund each orher before they had problems . Her job is about about advertizing and maketting paper . I would like to attend the party too , but unfortunity , they are serious subjects from the University . In that place , someone recevied my call next to me . So much descrimination ! ! ! ! ! ! ! ! ! ! I planned to go to a movie with my frinds . I think he could n't adapt to his new situation ( or environment ) , but in my case I got used to it owing to travering to lots of places . ( I can get it on Monday ) But it 's still cheape , compared to in Japan . When I arrived at the theater , I picked `` Inception `` becouse some of my frinds told me that it was really good . When I bought a samll coke and popcorm . I could n't figuer it out though . To be honest , I am one who wants to puch reality away . The tests of profiency are the most important tests for language learners because these tests represent the student 's ability in a language . I 'll be back on monday , the others will be back on Thesday . Hopehully I would like to get paid - holiday for thesday , but I ca n't . I found a discount price for the train sticket including an one day ski lift pass I 'm looking foward to going next sunday . what 's the differents between them ? I didi n't write in my diary recently . but , as with everytime I go to a bookstore , there were so many foreingner . That 's my misunderstanding and I thought how if I travle to he US , the locals might think that I 'm Chinese , or Japanese or some such . . . . . . I joined Lang - 8 because I wanted to learn Japanise , but later I realised I needed to learn how to write japanise to do so . But now I enjoy helping japanise people to learn germany by correcting their writings . I 'm quite shure my spelling is creepy , and since the times back in school I ' ve been allways using wrong tense forms , I wnat to improve my English so I can pass the IELTS 6 . 5 . The first song `` Rock ' n ' Roll star `` really made everybody gon na crazy , and it 's really really excciting ! But we need air conditioner beacuse of the extremely hot weather in Shanghai . It seems to be a very misterious world . Frist , grind the tomatoes and garlic . Next put the garlic and olive in a frying pan . After that , put some salt and pepper in with the tomatoes , then boil them . It is a Monay morning . Have I eaten somethinig bad last night ? It 's `` Qantus airline `` , the most expensive company . So this is gon to be a first for me . I examed a staff reporter 's story and a news feature . All the conversations we have are in English and sometimes Italiano ( but I never tried to speak in Italian ) . Namally , I will study Chinese and English on Livemocha , though . I enjoyed scating ! ! I 'm vulnarable to any kind of noise , especially at night . Moreover , even if I fall asleep , I 'm always easily awakened every everytime I hear a noise This phenomenon makes me exausted and inactive . Occasionally , it seems to me like my alram goes off without a sound . Unfortunately , I do n't notice the sound of my alram as good as I do with small noises . I 'm going to start a part - time job eariler than I thought I would have to . I like English , because English is not a very diffical language . Althought our languages are not the same . Kamakura is a famous place for forigners , visitors and surfers . Banana pancakes , one of the popupar menu items in there , were so good : D It contained recota cheese . Hellow , everyone . I miss syudying ! I sent her some songs from my friend who sent it to me so , I think my friend will love the atter that I sent it to her already , she asked me to give her other songs too . I imagin . Next week I think I will find a job soon because I relaxed ennough . On the 5th of this month is father day so usualy buy somthing for my dad , at the moment I bought it already . Do you have farher 's day in your country or not ? Recently , I have started using Facebok . It is great to be able to communicate with friends in English , especially those living in forein countries ! My goal is to be someone who can write down ideas , wthout mistakes , in English and communicate fluently with people all over the world . I 'm very happy , now I need to buy an iMac for develope . Mybe next month . Frist time on Lang - 8 After I logged on to this website , I felt I had just enteried into the language of Disneyland , where u could find any language , and anyone from any part of the world at any time . One of the most ointeresting thing I noticed is that u can improve your language level not only by talking online but by correcting others ' diaries , which anyone can add comments right below the diary to inform the writer of the mistakes he / she made in his / her article . nowadays Im very crazy to watch movie `` s `` `` in `` `` englsih `` This causes a pause in my dialoge . My Forigher Friend We are both foreniger . Especaily if it 's English . Nearly all parents scold their children . But , when thier children act wrong or make a momentous decision , parents are worried and anxious about their beloved 's future , , because their children are their greatest pride . I found out something about our defference . But I was still happy because I bought a katana as a souvenior . So I belive that I 've alreay known grammar in English . You can tell my lack of vocabulary and a bit short length of sentanc is like a child 's . I 'm learning a group of vocabulary to be acusstomed with it efficiencly . In Japan , someone lost their job , they could make their house out of boad . We useally decorate hinadolls from the middle of February . Because if the still decoreated Hinadolls are on display after that day , it is said she will marry late . Fortunatery , I 'm a sophomore now . I 'm especially not good at the reading and the grammer section . Schocking LaLa mountaion trip The trip had a schocking incident which remains my head . We were in a traffic jam on the way to LaLa mountaion . cockroack ! ! ! We killed ` five cockroack ` that day and retained their corpses to show to the manager . I remmenber that there were a lot of becutiful stars in the sky that night but I don ` t recall anything else that happened . . . I have started to write a dialy to improve my English . but it 's diffiiculty . so I decided to write in this diary in enlgish every day . and I want to make many firends . Now I am struggeling with driving , I mean , in traffic . I went to the hitting senter . I have recently praticed playing a song called `` Just Be Friends `` . My part - time job starts tomorrow and college starts the todays after tomorrow . I 'm workking hard ! `` What happends next ? I do n't know what I 'll be writting about yet , but I 'm sure I 'll find something . The classmates were from all over the world like Chinese , Korean , Bosnan and so on . I 'm an economics student in Kyoto . I 'm keenly interrested in innovation and Investmet science . I 'm going to barbar to have my hair cut . The word order of Korean is differnt from that of English . And I have to go back to my homecountry next Febrary . In addition , we tend to differenciate our behavior according to our first impression . One thing that I am concerned about is the inconvenience of short bettery life . More Advantages of lliving in a Big City I think I may well be able to make assie friends over time but it is difficult . In that sense , I 've been studying Engilsh with my tutor lately . Yet Engglish as a second languge is so hard to me . I feel happness . After the luch , we went for coffee again . Finally we went for crispy cream doughgnuts and more talking . It is my fevorite ! ! Therefore thare is a modern / up - to - date railway station , although if you prefer , the city also has a small airport . C . , for this reason nowadays the city conserver several Roman monuments like a wall , a theatre , a forum , and other important archaeological sites . It 's a wall on the mountain , and it defense the city . Now , I have a sliht headache > < There is a very interesting phenominon in Hong Kong . About 400 years ago , `` Nakasendo `` was maintananced as a main road from Edo ( old Tokyo name ) to Kyoto . The roast was also known as `` Tokaido `` . Vut this is my first job . chatting with primary claassmates , it rained heavily nippel & pacifier I ususally do n't care about these things , but just enjoy them as dramas . After surfing through a music website , I found a song called `` Crush `` and clicked the `` play `` button . The melody brought me bcak to high school times . I still remember when I wait around the street conner for half an hour just wanting to get a glimpse . I was afriad you could hear my heartbeat , because it sounded so loudly . . . totelly tragedy . . . It 's very tough and chanlleging for me to advertise my class next month , but I 'll make an all - out effort . Fortunately , my mom apoligized for being stressed and grumpy when we sat in the car . The first buyer I called got irratated because of my pronouncation . Fortunely , I like to go on a journey alone and I decided to do it ! To make maters worse , the cost of transportation fees are expensive ! ! I did not know what rural life is , and at first I was very confused with the defferences between rual and urban . In addition , Akita is one of the most famous rice producting regions , But actually , I have n't seemed to have selected this job because I live in Busan . It is the second largy city . Busan is far away , a long distance from Seoul and Seoul is the largy city . So , there was more than expensive anway , now , I am feeling happy . It has really intersting stories , but it 's difficult to understand in English since they use a lot of medical words which I do n't know . House and his team fight against unuaual medical cases . Today , there is only one lesson , I ? to see a movie after learning Englis . lt is a pupple print t - shirt ! ! I have n't used Lamg - 8 for a long time Yesterday it sonw heavily in Beijing and I went out to buy an MP3 player to lishten to English songs ~ It takes my bleath away . I think the best way to learn English is to compose English sentense by myself . Next diary want to write good sentense as soon as possible . He is from Australia but he told me his father and mather are from New Zealand , which I think is really s strange . another colleagu made a business trip to China . I wonder if my listening has imoroved now I ca n't understand and hear sometimes . I need to prepar for it and I hope to spend nice winter holidday . I 'm studying Japanese , but I want to write a diary in Englsh . but , when I went to University , I found / realized that there was no reason I should study Engilsh . I used to follow the general norns and never thought about of it . Our oppositor are so good , our topic is `` Computers Will Substitute Books `` . he is lasy and useless . By the way , allmost all of my friends , including myself , think that foreign companies immediately fire employees when they make some mistakes , which is a bad image . I was speaking about the fact that sometimes I get frustated because I want to improve my Japanese . For eample , I read a book , use a computer , wash clothes etc . Because of my life is not exciting and stressfully . I like Ema Watson . I have to jose weight . On frieday , I was working at my office as usual . One headline said `` The fifth biggest earthquake in history occured in Japan . `` I did not really care , because storng earthquakes are very common disasters ; it 's kind of everyday experience in Japan . She told me that her flat was not really damaged , but she had thought that she would die when the earthquake occred . So I told her that it was the best time to buy some Japanese construction firms ' stucks / shares . On friday and saturday , the prices of many Japanese stucks / shares went down because of the earthquake , and definitely the Japanese government and companies will have to reconstruct everything . which is something delicous ! ! In this seterday and Sunday I will be a promter girl . Hallo , everyone ! I went to my friend 's flat with my two other friends today , and I learned how to cook `` Purukogi `` ( Korean food ) for my Koean friend . When we were buying minced beef , onions , cabbage and more , my friend surpurise me when she took a kiwi fruit . I have never seen it in Japan , the tast is mysterious . Now I 'm busy studying for finel exams . Obviously , our lives has changed enormously because of the use of comeputers . However , like a double - edged sword , they bring negtive things as well . Now I always meet my friends from it and talk about our recent lives no matter whether they are in China or America or any other contry . However , it is nonsence to be on her side when she is very angry with me . . . In this club , many non - English - native people whom was interested in English gathered and talked with oter people in English for two hours . Latestly , this style is in fashion in Japan . I thought it was usuful lesson of speaking and hearing English . `` You bet `` he replied and dived into the water with his flashy long harpoon and desappeared into the dark violet . I Iike leaning English , but my English is not good , I hope someone can help me . I am a koean university student . It moved me and left a nice aftertase on my heart . I also love that of CAT ' S EYE , the beach where scene Hitomi got back her memory by the music box . It was so beautifle and pure . All this period of my life I could characterise as a painfull quest for self - development , which is really hard to achieve in the current situation , when almost all the time I 'm busy at work , where I have no exact timetable that would allow me to go to language courses . . . and I 'm going to the Reading festivan to listen to Radiohead . After the long over time last nidnight No , it is not a blede . Sazae - san syndrom I happen found out about this site from some bloger . I negotiated a new business deal because my occupatin is sales . I visited many places , saw many beutiful sights , felt the good atmosphere , met many kind people , and took more than 1200 photos . Hello everybody ! : ) Im ; m like to be here ! I like reading comics and watching moveis in my free time . Indeed , it is convinient . If we had fewer vending machines , Japan would not need nuclear power plants and accidents such as `` Hukushima `` would not occur . According to the unformal , but still credible results , I suceeded in it ! * This sounds more natural The second part of the exam is going to be held on Octorber 11 . Recently , our factory do n't get enought orders so that we l are free are not so busy . It is 21 : 28pm , not too late but something happend , which made me realize English is really , really important for overseas people to live here . He was sitting sideways on a chair and strated talking to us , like just saying some greetings and shaking our hands then he was talking about his story and how he was in prison for 5 years as he did something bad ( he is 21 now ) . I am a fasion advisor . It tells the story of man with a mild form of authism . Throughout his life , he becomes many characters : a football player , a soldier , a fishmen , a gardener , and all of this ( was achieved ) with an IQ of 75 . In three years he runs the lenght and breadth of the United States . The class which is chosen by the computer must go to the small island , and then the army makes them kill each other until there is only one surviver . And then the `` program `` will start on the hopless island . It tast a little light , so I added some soy sause to it . To prevent sunburn we can use itens like sunblock that reduces the damage of the sun . This news said that this programe , It was unbeleavable . We never wear coats in Sempember or October . It 's the turn of the season now , so let 's be carefull not to catch / get a cold . I moved to Toronto last April and am sopposed to stay here Here in Toronto , I could manage to meet a lot of dieffent people who I 'm planning to get a driver 's lisence during spring break . We have a custom of giving presents or dininng together to express our daily gratitude . My shop deals with polo shirts and is famous for poro shirts , so it is packed with people . Although my English is very poor , I hope can make many friend to learn a languege together : ) I have a queation about a sentence that I read : Due to the high cost of textbooks in the school bookstore , I recently did some reseach and bought some books online . One was the Stir - fried dried bean curd with sherdded pork , and the other was the `` Three - cup Mushroom `` . I should not simply ( only ) compare Japan with Singapore , but around half the polulation in Singapore are foreingers . So some normal Japanese English learners mindlessly belive that English lessons should be taught only in English . It 's storytelling with several picutures , and is a form of traditional Japanese entertainment . All you need to do is put a seal - shaped IC gadgety on the outside of the body . Is the followig information correct ? Master 's Degree antispated March 2012 Our lives are not so good , like everyone in this world , but , if we are mature , we know that we have the tools to make a difference and understad forgiveness is the key for a good life , a life who a few people choice , but is so refreshing . You should try . I felt `` The PC is closed `` is something starange . After my guraduation , I will go to the cafe often . As we all know , the attainment / reaching of success is only realised through practising again and again , which had ( has ) been proved by so many famous people , such as Michael Jordon , Kobe , and so on . I ca n't remember my Japanese teachers from when I was a bigginer . Why I say it 's a problem is because the people I met when I came to Japan often said to me , ' Arumoo , your Japanese is so fomal and you use many difficult kanji . ' I Just started . I 'm very shy when speaking to stangers . My mother encouraged us to do it . I came from YOKOHAMA after Igraduated from univercity . Last Year I went to THAI first time . I have a plan to travel to THAI this year . Yesterday , I did reserch . This was the second thing that was surpirising . Also , we listed to music and played with 2 babies who we did n't knowXD . XD Yeah , I do n't have enough time to struct any ideas . Defferences in their culture , language , common sense , and politics . The politics were especially defferent from Japan . And more than 10000 people have evacuated to Turcky . It 's very intersting ! I hope we can study foeignal language well ! She wants to try snowbording next time . That contribute to Japanese Arkeorogy . Anyway I 've got some sentenses that I ca n't understand clearly . But , working men or worman have maybe 1 week summer vacations . If one were to ask all the Japanese animation producers about the best Japanese animation , most of them would answer that the movie `` Akira `` is the best Japanese aimation , better than anything else . In my subconsiousness , I think of tomatoes as fruits , not as vegetables , although I know that tomatoes are vegetables technically . I staeted Lang - 8 . I have a band and we practice with the other members every . saturaday . I 'm going to go to Minessota . Becuase I had a hard time finding keywords to do the reserch , I vivisted the library reference desk for the first time yesterday . The librarian was helpful in telling me where to go to find the database and good keywords to do the reaserch . At last , he sechduled me for an appointment to meet with a librarianwho is good at business topics to help me out with my research . I 've just translated it from Japanese to Englsh word by word . Thankd ! I asked one of my firends living in Seoul becausei dont have lots of money I brought a hot - watter bottle . I enjoy wroking ! so if you know any good contries or cities , please tell me ^ ^ Because my English becomaing worse , and at June , I have to take part in the CET4 , evertbody said that the test was easy , but I do n't think so . I must spend more time in learning two forign language . I can n't deai with them well . I went for a walk with my littel brother . Then , even though I showed him genuine bresd , he still said that it looked like a conch shell . Nowdays , I am watching an American drama named ' desperate housewives ' . So could you recommend another funny Ameracan darama ? ? Today , I just discovered a [ new ] method to improve my writting skills . woods : I managed to contact them four days ago but they didn n't reply ( to me ) until this morning . They complained that we did n't contact them earlier . I stopped for 2 years and then started to play piao again but with a different teacher : ) But I am scared when she teaches me , she gets angry easily and tells me to use my brain propely T _ T We of _ ofcourse have not only English , we have another subjects to study ! at macquary because I 'd like to improve my skill for writing , reading , speaking and lishtening . I often skateboard ( / go skateboarding ) resentry . My wrists allways help me , and they trim ( ? ) my condition . Skateborad is such a dangerous sport but a more than interasting suport ! I found this website in a magine . I was surprised to see so many people here speaking several different langues . She taught me it carefully enough for me to undrestand easily . There was an autumn festival at the neighborhood temple . Or shoud I say , `` He picks up girls after he turned 30 . `` Are they different from `` not good `` and `` not bad `` respectivcely ? My grandmother died seven years ago , when she was ninty - five , after lying in a hospital bed for about ten years . Right after she moved to the hopital , I would go see her . I do n't need a long life expentancy , just a life that I 'm satisfied with . Do I use this site stedily ? beacuse I could understand some news in English on TV . join with sentence above I play the bass guiter in my band . So I sudying about musical instrument and constitution of the music . I tried to read the notes for ' Heart of Gold ' by Niel Young . Here is a YouTube video of ' Heart of Gold ' sung by Niel Young . Today , I took a drinving lesson . It was my third time and it was quite good . I noticed that one of the most difficult things in English is caring about singuar and plural form of the words I use . My freind 's birthday party We enjoed beer at a resturant . Tell me why you do n't answer me even though I texted you and called you more than two times . Plus , its been twenty four hours alredy . . . . Cleary , I told told you lie intentinary when you asked me wheather I will study in the U . I feel like I 'm a litlle weird , but my friend told me that he scolds himself like `` Stupid ! ! Anyway I do n't know wheather I can continue to post diary entries . I have studed English very hard everyday , but I hardly speak English . And I want to make a lot of friends who are native speker . Yesterday was my yonger sister 's birthday ! I will be very happy if you become my friend and inform me of any mistakes concerned with grammer or expressions ! ! There are many differece between English glamor and Japanese glamor . English glamor is `` S ( subject ) + V ( verb ) + O ( object ) `` But Japanese glamor is `` S + O + V `` . So , soetimes I ca n't understand and I ca n't speak . It 's not that I 'm begging for your compay , at least ( not ? ) at this moment ! ! I ca n't carry out a converstations right away . She quit hugh school and used to leave home . We do n't usually eat our meals at the table , rather we eat sitting on the flore . You can feell your bellies getting full early when you eat sitting on flore but there is a few problems sometimes . For exampale , people who are n't used to sittin on the flore can feel numb so they can hardly walk when they stand up if they sit for too long . atarashhii tango . But I reserved early , so I couled buy the return tickets at about half price . I 'm so happy that it will be spring break from tommorrow and am looking forward to be in the next grade after the break . So , I personally believe that we should pay more attention to our behavior ; and cherish our food in the carteen . I finished the English Academy course / classes last Friday , so I am an unemployee person now . This is the last interview to enter the companey . I do n't have cofidence but I do n't want to charge . To do some meanful things on tree planting day , we should hold some activities like getting students to plant trees . It is meanful for us to be close to nature and do some manual labor . So , we mostly spent time stying inside like in a theater , a restaurant , a pub , a bar . I read an article descibing that the main factor could not be the CO2 , but it could be due to the amount of activity of the Sun . Today 's morning I found this survice by chance . I am now working as a medical staff and doing experimnts . Recently I had a chance to talk with exchnge students . I want to communcate with native Americans but it was very difficult . In the restrant or supermarket , I can not understand what they said perfectly . My hobbies are snowbording , golf , snorkeling and traveling . Please samebody help me and I will help you with chinese . friend with benifits ? ? what does `` friend with benitits `` mean ? I serched about it , and found out it 's being `` closer than friend , but not in relationship `` if a guy and a girl like each other , it makes no sense to stay as a `` friend with benifits , `` right ? I saw the major leage baseball . I felt scared and rememberd the Fukushima earthquake . I went to Canada to stady the English lunguage . I wish speak Engilsh very well to communicate with peopel around the world . I live in Vancouver it 's an intersting city . My dear friends and teaqchers on Lang - 8 ! I delated my tutor 's check mark . I did the opposite action . many people were surprised at me so I 'm very ahamed . Luminarie was desighned to give residents hope and light to But whan I played the saxophone it was bery fun ! ! So I love the sacophone today . I went to the gim to exercise my muscles . Shu uemura Mac is famos brands . Also , it practiced my listening , because all of the speechers have good speech . Actually , I really want to stand where these speechers stood . I am looking forward to meeting the other lab members and feeling the atomosphere of another country . It has 8 witing tests that takes 17 hours and 7 marking tests that takes 5 hours and 30minutes . 2 hours witing test in civil law , 2 hours writing test in civil procedure law , and 2 hours writing test in commercial law . I 'm waiting to receive the I - Phone4 I alredy reserved to fiding new informatoin about the delivery Today was complete holyday for me . And a very unfotunately happend . Kansi recitation Kansi literally means poem written grammatically in ancient Chinese and recited in Japanese . Sigin is also very healthy for people because they need tough vocal cords . These days the weather is getting hot with a lot of strong sunshine , but today 's rain made the temperture go down so I felt a little chilly outside . Until a few months ago , I was very happy to get the free time , but since last month I 've felt so bored with my life even if I spend several hours in my institude for studying English every day , The nation 's low labor costs which is only $ 2 a day but $ 3 . 5 ~ $ 4 . 5 in Tailand and $ 4 ~ $ 8 in China attract foreign companies . Now the Indian government agressively lures foreign companies after being the biggest outsourcing recipient because of its low labour costs . I want to practice my English so I 'm writting this ( journal ) entry : ) If she did revive , I would have been happy even she wouled have become a violent cat like in `` Pet cemetery `` written by Stephen King . I need to speak English on bussiness . I have endurance tests once a year , and they are significant for me to evalue my phisical conditon . In the process , many students were afraid of running 1000 metres because we had been iactive in daily life . I was arranged in a team , which has 22 mermbers in totall , and we would start together . Even for a substandard athelet , the time was too much ( slow ) . This was ( still ) remarkable , considering that I had had so much lazeness in my life . She aloways helped me . I 've fallen in love with a chair called Rocky ( in fact this is a rocking chair with a modern desing ) but unfortunately it costs about 3000 PLN ( 1 PLN is approximately 03 USD ) , almost three times my salary Our favourite resturant . I found this site today , and I want to comunicate with somebody . Today , when I looked over the web with my friend , I found this website , I find that it is really useful for us to improve our launavage lskills , I 'm very happy that I can express myself here . Three shots of adrenaline , one shot of panic , five shots of cowardness . But we can not descide which country to go to . And on that day , we were overwhelemed with her excellent dishes right away . She made a lot of `` yamu - cha `` , that is Tiwnese cuisine , and not only that Pitartes of the Caribbean 4 I 'll go to theather to watch Pitartes of the Caribbean 4 . Hello , everbody ! Of course , you should avoid religious or poritical topics . Each lesson takes just 25min , which fits the period of time on which I can connsentrate . Nontheless , I still think that I have to build my vocablarly and learn to Learning from Pillipinos has made me take interesited in their country and culture . They are generous , pantient , and cheerful all the time . Interview for stadying abroad Today , I had an interview for stadying abroad . Maybe , I can not stady abroad . it was verry delicious . Today I have an assigment and more work . > < ; Happy New Year , evryone . I 'm wodering if I should buy a new one . In addition , Janiffer Aniston became my favourite actress since then . 3 months ago , we just had a big disaster in the Tohoku region with a tunami wave . Hellow everyone ! ! Most of Taiwanese , they depreciate both atheletes and sports . Always , I have admired neighbor countries , such as Japan and Korea , who surely put high emphsis on their sports . I wish that one day I could see Taiwanese people and the goverment pay more attention to sports , and treat atheleted well , giving them more benefits and wellfare . If you know these artist please give me a coment . Until now , I do n't know how to use this site so plese teach me . My boyfriend is a more ( older ? ) than me by 12 years , he always thakn care of me and love me . Recently , he had a fight me , because I did somhing that made him lose his fase . ( face ? ) I justpretend to kown nothing . It is very humidiy and hot , so we are uncomfortable . I can bring some spring rools and clues . I became frind with him first , and he said he would teach me gospel piano for free ! ( good deal again . ) So I was taking his lesson once a month . He was teaching a half year seminor ( or class ) of gospel piano and he invited me there . ( It was not for free ! haha ) After I finished that seminor , he asked me and one more student to play at his choir 's gospel concert . Because it was our first time playing at the concert so my friend and I were soooo nurvous about it . The concert was very good and it became a pleasent memory for us . A world famous athlete who was a champin in the 2008 olmpics took his mistress home , and was interrogated by his wife . I felt lonley becasue we had good relations . I have studied English for my career and to see meny internet sites all over the world . However , when she meets my baby , she never fogets [ it ] . I sometimes have mteetings with our overseas local staff in English . Maybe there are some different wayas of thinking between us . I 'm look forward to your relpy . He is a historial person from the end of Edo age . I will go to Hokkaido on a school excuresion . When I was junior high school , I went to Okinawa on a school excuresion . If I go to Hokkaido , I want to eat some deliciouse food . Vaction Plan Fortunately , the reason of the death was not an assasination conspiracy , but a heart attack But the problem appeard after he died . So people who are in the progressive camp think that the politicain from North Korea does not deserve to be buried in the National Cemetery . And the people who are in the progressive camp insist that the conservative campe are using the death of the North politicain as a their political position , giving them the advantage . One woman poloticain , who is in the progressive camp , announced her opinion that she and the party she belongs to will ( ? ) not mention their political opinion over the hereditary regime system in North Korea . Some other people who are in the conservative camp also harled criticism and said mocking things to her . Then , a jentleman from a foreign country escorted me . Yesterday I watched a Vollerball game between Japan and Korea . However , she taught a new member good tecnic and atitude . For any native speaker of English learning Jpanese I am Takuya and I am Jpanese . If you are studying Japanese , I will help you in retern . I always wanted to become an animator or illustrator , but now I 'm studying junralism . First , the acters performed the process of dying with horrow . Second , the special effects were added to the prelimiary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his bory . . . I finally discovered what merody it was , I have heard it occasionally since childfood . as I was looking for another song on YouTube . I have a speech next Thirthday . It 's some knouledge of cheeses . Secound , an example of a faimous cheese . Maybey you 've heard of Camembert before . It 's soft and covered with Penicilium , which gives it a white apparence . Camembert de Normandie is around 10 . 5 ~ 11cm in diametary , normary 3cm in height , and at least 250g in weight . In october 1790 , Marie Hareil , a habitant of Camembert village defended a preist from those who belonged to rupubli . < - - republic ? Especilly because it is useful when I talk with French people Because there are many kinds of cheese in Frace and the French love them . Thanks for lisning . Snow Leopard , Apple 's newest operationg system , was launched today , August 28th . I like the Europian climate . I live in a small Ukranian sity , that is why I can not find suitable courses in my town . : ) Espesially with strawberry jam inside . It is a radio station which is litellary the American Forces in Japan brordcast . They are American Contry songs , sixty 's or seventy 's rock , and so on . I droved too much lately and I 'm feeling tired . The lifes are different from their choises . And when we come back from kala , we went to the school 's labrary and watched 2 movies . Ato said , `` The one who is going for the fisrt time should be at the head of team , because it is easy climbing for the rest of us . `` Then we went down to the starting point and splitted up at 11 P . I 'm watching the TV news now . It saids over 1300 people died or are missing . Many companies adopt this test as one of the conditons for promotions or oppotunities for empoyees to brush up their English skills . The digotal stick for old people , iPhone The voice recorder releases older people from imput their sentenses from a small keyboard . If we prepair the crowd imput system for old people , I think that old people need SNS more than us , but it 's very difficult to use SNS for older people . With iPhone we can put vurious collors on old people 's lives . Hallo , my name is Joanna . I will be greatfull for all corrections . Of course , I like scienece and I really like English , too ! Because one of my friends recomended Lang - 8 , I feel comfotable being with him . My promotion would delay marrige and the birth of my first child . Today , I watched the movie `` Knowing `` sarring Nicolas Cage . I do n't know whether I am intoxicated or not . Unlike Mark Zuckerberg , I 'm not a genious . `` Tomo - chan , eldows off the table . `` I am reary happy with Lang - 8 . weedend and spider I want to be an interpretor or a translater in the future . My firends introduced me to this place , and I hope I can be friends with you . I am writing to you because I want you to deal with a proble . The hearting system in my house stopped working two weeks ago . Now , I am spending an unconfortable life here . I urgently want you to fix the hearting system . I wnat new jeans and etc . In Juny I will be starting a master 's degree in accounting and I would like to find a job in that but I feel nervous about the interview , becouse my speaking is not very good . life would be harder becouse chieldcares in Australia is very expensive . I first started studying English in junior - high as is usual in the japanese educational systms , but at first I was not interesterd in English and not very good at English and I just started English as a part of studying for tests . 03 . NOVENBER . 2009 DIARY Recentry , I do not see the goal / reason for studying english . Why do I study English and yet my command of English is nt improving ? After I get used to it , I want to use a Chinese conversation servise using Skype . Firstly , it helps to organise and express thoughts in an appropriative way for clear understanding . You may want to disagree with this but it is said that caffein makes you dehydorated and your blood flow less smoothly . So one time I really got hung up and I came back home I told my mother that I wo n't leave a mess again and that I will always clean up , and then my mother said `` I was goint to tell you about leaving a mess , and scold you but you really realized it on your own , so I forgive you . . . later do n't do that . `` I na say hi to all : ) then it tured out that I really hate it . I know since it is a yearly actitvity ! ! All of his friends envy him , of cource . So far I have been able to pass fairly difficult exams and achieve good results in various soccer competetions . Neverthless I know that if I do n't put in a great deal of effort , I will not be able to reach such a bright future . Today a friend of mine recomended this website to me , She feels nerveous about the test . I hope that I can find more friends with commen hobbies . It was a wine from Barcerola because I remembered one of my friends from Catalonia reccomended it to me one day . If you read this , I 'm sorry my diary is not an intersting one , but I would like to reccomend you the bottle of wine which I mentioned above . I start studing English and finance ! Osaka is famous for Yakkuza , Takoyaki and Okonomiyaki . So our campus is so beatiful and the facitities is complete . I think everything is perfit for us in China nowadays . We just drink beer and play computer games everyday even if we haev classes or not . Yesterday , I started studing for IELTS . I want freinds , whose mother tongue is English . I preferred chili to any hamburges in Wendy 's , so I orderd it as my final order . I do n't like to write with a fude , because I 've never larned Shodo . I had larned Shodo after I grew up , but still bad . . I always wanna learn foreign languages and I can learn many langaunge here . It is difficult for me to retain German words and grammer . Other countries have other problems , which are purse snatching , murdet and terrorism . When he calls , he says hurringly that he needs some money because of a car accident . This Faraud is dirty , because it takes advantage of someone 's kindness and family love . It has pictures of sandwitch . But , the sandwitch are not the kind we expect . There are many unique sandwitches which were designed using ham and cheese to make a shape of something . well , It 's my first time that talking with a foreigner by telephon . of course , It could be boring to her because she had to treat innumberable people like me . Chinese , South East Asians and Koreans were killed by Japanes soldiers . The results of my TOFEL were released on Wed . Luckly , the landlady was a very rich and honest person . Sometimes I dream that I could sow a sun in my heart , then , I would never suffer from the pessimistics , such as fear , sadness , and anger - - Students in the class congratulte him on this great news . This is my ID , this is my passport ! `` and he said , `` Your passport does n't show your eyes and hair color . `` I was so suprised ! ! I really could not belive that she used to have a crush on my friend . Untill now , I still could n't figure out the reason . Tommorow , I have an international party at the UBC . I do n't have a clue about anthing . All I can do is imagine my idial future . I 'll do whatever I can to get my idial future . I 'm currently studying Internatinal Studies at college located in Shizuoka prefecture in Japan . Crealy , my motivtion toward my major is just decreasing day by day . Paticulary , from January onwards , most Japanese college students will be job hunting like crazy . Regarding this topic , opinions are probably sabdivided . First , as I mentioned above , job hunting at this time is too early for students to deal with , so this silly sequence ( ? ) must be inefficint for sure . When I was in colllege , my psychology teacher told me everyone would be prone to get mild depression under loneless and pressure , which is a psychological sickness that is always ignored due to its ( mild ? ) level . However recently I found one of my friends also got depression with insomnia , loneless , and fear . . I coverd the story of a baseball tournament which was between teams of children from all the protectories in Japan . ( A Protctory is a training school for boys and girls who have troubles Playing baseball is teaching thm how to develop confidece , try things with frends , make an effort and suceed . One boy wrote a diary entry about how he hopes his mother in heven watches him play . One boy who hitted his mother wrote a letter that he would play well , as his mother 's birthday gift . Thank you for visitting my page . Especially the `` cabbeage croquette `` . I have heard of an airticle about some foreigners living in Japan who always put perfume on them self when they lived in thier country . I sometimes noiticed that someone smell 's , but I ca n't do anything so It does n't matter ! I came acroos a foreigner who smelled bad to me because he put on too much . I recovered from the flu after taking medicince . < < < < Tomorrow , I must take a speekeing test ! ! While listening to music , we can eat American foods such as hamberger , spaghetti , steaks and so on . I would like to listen to music everywhere , everywhen ! That 's why Hard rock restatarant is special for me ! ! This jounal is published from the Ministry of Education , Culture , Sports , Science and Technology ( MEXT ) . I completely agree with her opitions . I learnd about the history in preparation of the tour . I sang many English songs , like Britneny , Avril , Taylor Swift , and so on . He seems to think the teacher is asking us about the seasonnings . Another person answered that `` It is essential to clean up the knife before and after cooking , not smoking before cooking , to not put make up on your face and to not wear any parfum . `` ( Interesting ! ) Tmorrow , I will test another machine . I hope that the test will suggest a good perfomance . I also hope to go carifolnia in the USA someday . Nintendo shipped 400000 game consoles and almost all distributers sold out withintwo days . Of coure , I live a happy life and am satisfied by it . According my knowlege , a travel is longer than a trip and needs more than one month . I thought they are famus thai foods . This is the first time I write in English because I was studying Spanish in Latin American countries , so that I worte here in Spanish before . But now , I have been studying English since March and I need to wirte in this language to improve my writing skills . I suffered much stress when I was studying Spanish and I already know that to learn languages is so difficult for me ( Japanese and Englis are totally different also Spanish ) , but after learning Spanish I finally noticed the importance of the language , it is worldwide ! ! if I am able to speak these lauguages I am sure that I can travel around the world , I think . Tomorrow , I 'm going to gratuate from school . After tommorow , it 'll be a long time that ca n't see my friends . I felt it was vey difficult for me . There are old people , young people , men and wemen . . . . The worse thing is that in my local library there are n't a lot of books so I can choose between hard ones and romances ( Maybe I will look for some books more cloesly . ) I went to Tokyo for a business trip . I went to Appi in Iwate for snowboading . Of course I have benn working weekdays . I have two daugter and a husband . The residents of California are afraid of the news that the big one will occure soon . I might be speachless . And basically , it 's difficult to answer with accurate grammer . And it takes time to answer , unfortunatelly . Well , I will do my best ! I 'm not sure hou well I can do , though . Maebe people live in their native countries a long time . Franch is very difficult I learn Franch with my friends . My friends has Franch books but I do n't have one . My friends said `` You must buy a Franch book ! `` So I bought a Franch book . Please recommend a nice Fanch book to me . Mariners starting picher Doug Fister . I like his piching style . Expecially , I am good at cooking sweets . I enjoy these programms a lot . I was bit afraid to watch that without writen help . There is comedy and rommance in this show . Some guy , who is old , I still could n't figure out his job , he brogut the dude over to his house . I watch TV for many hours and pray for safety / the safty of the victims . Last evening , I helped an imployee in the office do a job for a long time . I helped her seperlate a document . I have had a problem with my intenet for a long time On sonday this weekend , my French reiend , and me we will play badminton . becauae , there is no wind all the time . I ate lunch but , nevertheress , I 'm hungry . My first dialy ! There are many interesting shops , good restrants , and the view at night is beautiful . ) Well , I 'll write next dialy soon : ) What was special about thic place ? Give reasons and details to support your anwer . Kochang , my hometonw , is known for beatiful mountains , eel and itshot springs . I 'd lived in a dormitory before ; it was so noisy so doing things like reading books or listeng to music was very difficult . It is safe to leave my stuff on my desk in an apartment , and I can enjoy my persnal life without bothering anyone . but I noticed that I do n't have enough vocabulary in my spoken engish Which characture do u like the best ? I have a lot of things to momorize in the history . They may have to spend so much time momorizing the events and years that they could easily get tired of them . I still need a lot of time to momorize lots of events and years . It seemed to be simpple and easy to use . You scceeded at what ? ? ? Learnig Chinese Because I 'm Japanese and we use same or similar charactor The first part was `` An itroduction of this novel `` the narator said . Surprisingly , as soon as the baby was born , he said , `` Granpa `` . But it is different from Yukara and kimono . I went to a chainese restrant with a friend who is chainese . He is in Japan as a foreign student and so he is a yong man . An intresting day It was diffecalt to commute them . The strongest wrestler , Asashorhu , Yokoduna , beat his friend up when he was drunk . It is said that the Yokoduna should be polite and has to be a good model . This violence by the Yokoduna is a first case in the Sumo 's hundreds of years of history . Last year I took a tew - year leave from my work and went back to grad school . They can probably explain English grammer to us in English and Japanese . There were a lot of forign stuedents there . You should be improtant now . ( ? ) I think , I can speak better english if I dedicate more time to practic . the meeting room has been in a dealdy silence since this morning . I was too busy to write dialy . I will work at my univercity from February to March . Someone said that the first two hours of the mornig are golden hours , and if we want to do inteligent work , we ought to do it during those hours . Today I uproaded a picture for my Lang - 8 profile page . I found this sentense in my English book and thought it did n't make any sense : I will live here untill next month . The plants seems to be called Kalanechoe or Clonechoe . The vender of the phone said it would be sold midle - December . We went to Kimita onsen after work with my hasbund . That was confortable . Second , I soak in tha bath lightly . It will be releaced as a film in 2010 . I 'm a docor in Japan . I 'm interested in Engilsh , space and especially being an astronaut . Although , Chile is very far away from Japan , about half a circle of the erth , 50 years ago ther was an enormous earthquake near Chile , too . They brougt me to Mitsuwa in New Jersey . Cicades are crying as hard as they can during the summer and at the end of the hottest time in a year , they will die out . Hollidays ! Oh , eee ! Fortunately , I believe in it basicallly . I bought a jacket , a skirt , two t - shirts , a one - piece and a bagpack ! If you have a oppotunity , please read it ! I went to the enternet cafe to sent a message to my language study friend . I could not sent it so I also read a website called widipedia . After I went to the internet cafe , she called me and said that she retrun to Bangkok alrealdy . She said that she was going to the JJ market and asked me to go there too . However I plan to wasching my hair at the hair salon and read a book at the bookstore instead . TOEIC is a popular test for all people studing English , I think . So I may have to reconsider my plan to sutudy English . . . I need to go to the citizens ' advice bureau because I need to get the adress on my passport changed . So I 've alwalys wanted to learn how to dance . tommorrow , I 'll write my diary in French . . ! For it is more important for me to learnhoe how to learn and become well rounded . For example , it is very important to learn how to deal with interpersonal realationship . When the one week cancelation was over , I went back to the regulary life in college . I cought four shoplifters in two months . I saw through their eyes , they looked sad and apathetic , so I desided to ask , why It is a popular alcohlic drink . The box was from Fraisier in the neighor city . It makes blood pressuer going down . How beautyfull to have your love . We didn n't met since Thrusday ! We do n't have our own flat and we do n't have enouth money to buy it . Recentry I didi n't sleep , so I took the medicine . According to the papers , some psychiatric drugs cause a bad dream when people stop taking it . ( sme cause when they 're using it ) Google Analytics is the web service for analyzing visiter of Homepages or blogs . This is the visiter 's char of my blog in Japan . I ca n't understand why the number of visiter from Tokyo is larger than that of other cities . I heve many essay assignments . The more I keep doing soocer , the better my body condition becomes . There is a chance that I can enter for free and study Franch and English . But now I think it ` s good that I ` ll study Franch . One American food that I remember from when I visited Cicago is the Stuffed Pizza ! You could be patant for 3 or 4 years , until beeing successful with your business or not . Now I very regreted that I did n't do it . Thank you all for visiting today 's jounal entry . Now I belong to the department of Dentistry and I 'll have to take national exzam . . . I konw but the first impression tend to have a significant impact . I had coffee , toast and a salad with balsamic vineger . My best friend is a tatto artist . Plese someone give me a bento . Unbilieavable ! However , the strange thing is that I 've gradually become so stroing drinking alcohol . It is my first time to live in a foreign countriy so everything is new to me : ) It 's a very serious problem because I ca n't even catch the content of the assightment . Yesterday , I missed submitting my assightment because of my poor listening skills . Sometimes they are foam balls or styrofoam . And when there is n't enogh money simply crinkled newspaper sheets . This book is published by KBS ( Korea Broadcast Suvice ? It is broadcsting on the radio every morning at 6 A . And today is the 4002nd episod . A majority of Japanese people think that if the Fukushim disaster had n't happened , Japan could recover much faster . On top of that , local governments relatively far from Fukushim prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . I found a vedio on youtube that tought you how to solve a rubik 's cube . That reminded me that my father bought me a rubik 's cube when I was a kid , but I do n't know how to solve it . That vedio motivated me to try and play with it again . I looked for my rubik 's cube all around my room , but I could n't find it so I decided to buy a new one . You may mix them together with discretionarily . Eventuall , dip them in your sauce ~ ! ! I went to bed hoping that the typoon was very storon and that it would bring a lot of rain in the area . Of coars , he was dead . I bought a new sellphone . I bought a new sellphone today . For example , he cites video videogame as a major reason why children nowadays are suffering from obesity . To my dispont s , there was no net and no TV . so I coulde n't go outside all the day . I want to leave here immdentily . I miss my comeputer , my dog , books , CD , etc . . . I went to have my driver 's lisence renewed this morning . This fair starts on the 16th and it ends on the 25th I think , so I think I will go at the beggining . In Japan , the wheather is very bad and muggy these days . . . You can eat a lot of oyser in 90 minites . Now I do n't play , but enjoy litening to the modern jazz music . The institution issued a report in which they compared 22 country 's economic potentian and their efforts in supporting OR to support other counties . How do we support them so that they may survive and implove themselves ? Some reseachers and socialists say that only giving money would not be the right way to help . But if you ate it once you would chang your mind . And I think whether the food is strange or not is not so immportant . Today I 'll explane why I 'm studing English . When I was at work , the sound of an explosion surprized me . I would especially like to go to Waseda , which is one of the most important plases for me . I also remebered the day when I finished the speeh , my hand still shook a little , haha , but now I got it . My English is not good , so I want to get to konw Englisg - Speaking people . Thank you for readeing . They enjoy searching for thir mates . A while ago I planned to take the Japanese Leve proficiency test in December , but after I got the forms I had to fill out , I chickened out with excuses like `` I 'll never be able to learn the Kanji I need in six months `` , or `` school is going to get in the way `` and things like that . [ 1 ] I 'm sure somewhen I 'll take the test , but at the moment I barely have the time to study Japanese regularly . It 's quite difficult between work and school , especiall since exam time is starting again . ( They are not exactly exams , more like very important tests , but I do n't know the English word for it ) . [ 2 ] Some kimonos are really expencive but most of them are very beautiful . Unstayble weather That is why UNIQLO loved by many youngers people . Today , I read a research paper , saying UNIQLO is most popular brand among the younger generation espesially those who love the simple life . Plese check my poor English . So now I 'm thinking about tommorrow 's conversation topics . However , I do n't think that dealth is the best way to punish those who commit a high crime . Tere are too many reasonsto make me agree or disagree with the death penalty . becaouse the end of the story is always sad . I 'll working Japanese company as a operater . I am planning to take a trip to Thailland next February . And next I will try to find very very cheap fligt . I 'm forwarding to visiting Thaillan . It is very warm and the cherries are very beautiufl . So , please cheak my daiary . oohu . . . . I 'm a Japanese high scool student . One of my dreams has come true , and of course I continue to persue my other dream ! ! ! I studay hard recently to get driver 's license . it is extreamly boring . and I have to go to bed cuz tomorrow 's lesson will start early in the moning . I bought 4 packs of Sushi and dilicios beer . The purpose is not only sightseeing , but also opening up a bank accout . Fortunetelly I ' was in time for work but paid a lot of money to repair the tyre . Houever , I can not study because I do n't know why I like the kids very much . Maybe it 's because they has a pure heart ? But in my life , I do n't have chilkren friends . Now I 'm traslating `` Just a feeling `` by maroon5 . My neighborhood is like a gohst . Mallard passed away because ger husband returned home . If we analyze the situation , we will find that she feels happy due to the death of her huband not because she dislikes him , but because she is opressed by being married / by marriage in generall . On getting married , an American woman in the 19th century would lose her freedom , her sense of independence and most importantly , her idenity . Therefore , a wife would be happy after the death of her husband sinct it meant the death / end of the opression of being married / of marriage . This is to say a scar of golry . My kindle is Wi - Fi - only , so connection was essencial to get books online . Does it require addictional cost ? However , taking a course for four hours ( two cources a day and three days a week ) drives me crazy . . . This is so confortable clothing for summer season . This is Wafuku , but so cheape one and most of all Japanese girls have it . I like a very warm place and I tried to adjust the tempriture of the apartment but that did n't work . I am SO GLAD that I came home . I do n't want to go out for a long time untill the weather gets warm . When I got off the train at the station , I fell into the gap beteen My name in Japanese means Cherry Brossom . At the moment I ca n't use Spanish at all , and I do n't know even know the Spanish alfabet . I ate a big dinner on Wednesday to recover my h ( a ) hemoglobin . If you ca n't get a satisfactory score , it means you ca n't go to the topest I can write about my mood or interesting things in a freign language everyday . In classrooms , professors sometimes say blees you while giving lectures . DoyoBoshi ( read recent jornal ) is n't done yet because Japan expecially our county have been cloudy or rainy day for those days . The shop was on a nerrow road off the main street . People who are really rich are rich beacuse they are rich in spirit , not only rich in money . I uesd to study hard as well as I played hard , and I 'd like to pamper myself occasionally . Do n't be so tense , get winded ! A nice mood can help you to work more efficiently when you returen to your work . Then my partner in the game made a frim face ^ ^ There were few friends who lived with thier grandparents . The main businesses of Ufa - are oil refinering and manufacturing . Oil is refined to gasolin , kerosine , diesel fuel and so on . Manufacturing is of aviation engines and miscelaneous parts and fittings for airplanes . I worked in an insurance company . I am a system administrator in the Ufa office of a russia insurance company . But I am sometimes nurveous , I can not speak English well ! Today , one of my host father 's frienwds took me to see many interesting places inhis car . There were no words to express my glatitude . First was vocabrary , Next was grammer . It ` s my laziless , and it ` s really difficult for me to write something here , even little posts take a lot of time . Please give me your addvice I was very supprised to hear that . I am now producting a Rice T - shirt . It 's rainig . Weather report says `` there wii be snow . `` Because my mather bought that for me for the first time to discribe that we are very tired ; how to say it in English ? ) I must go to work . I want to becomo better in English , even if just a little . I am going to give a presentation on this Thursday about my reseach project . Recentury , my favorite team is not good . I am biqi and I want to study bouth english and arabic . I sudied english in college . ( a very little bie ) ( Thank you , Jason ! ) Let me practice using the idiom `` open onself up `` here . He loked at the beautiful wirror room in the middle of this lay a dead dog . It is the cheepest one and cost about 100 dollars . * cost = past tense But now I realize that GPS systems are very useful and even the cheepest one is very relieable . But very delicious Sushi are very expencive . In my hometown there is Kinkakuji temple which is a building that is coverd in gold . Then we went to a recently opened shop callde Bapple . Every time I eat sweetfood like mousse pudding or cookies , my friend would tease me : `` if you keep eating these things , eventually no man will marry you ! `` As a matter of fact , I could hardly liseten to what they were saying , because they spoke so fast . He articulated connsonant very clearly . I called the ETS lost and foung office and left a message according to the directions . So far , I have n't gotten a call from them , but hoperfuly they will informe me . At 5pm , we met at the classroom and walke to the pub . Some of them , such as the Swiss guy who organized the party for us , the Chinise girl and the South Korean girl girwould leave Edmonton soon , so we took so many pictures . The South Korean guy turned 25 , so we definately cerebrated him . baseball , tag , or hide - and - seak with their friends . please check the following sentence . ( grammer and logical ) They also have many competiters . Unfortunatery , I could n't join BNO ( boys night out ) tonight because of my job . I ca n't stop reading , so , recentry I am staying up late . At the beggining of Aug , I went to Europe and Dubai by myself for 2 weeks to see my friends . The torndao will pass . It 's a really nice place but there 's someting a bit of trouble . When I was a unvirsity student , I heard a terrible story . The fater felt like he was going crazy and was terrified of the boy . `` It is a good daily practice for me so that I study Englsih hard at the moment `` Watch your spelling ! `` The nespaper I read is called ' The Japan Times . ' `` I want to sing English songs with perfect pronuniation . It drives me nuts somethimes . Oh , I did n't know that I worte so much . This is another problem ; once I start writing about my true feelings , I ca n't stop . . I had a lot of time , but I did n't do anythig . Today , I took a diagnostic TOEFL test in order to begin the process of preparing for this exam . My score was only 496 points ( on a escale of 310 to 677 ) This reminded me of how difficult the English Certifications Exams are . Even the pleasure boats on the Tosabori river were coverd with jolly lights . I happened to see the lighting ceremony , and I saw a governer of Osaka . There are many gift shops selling things which are cute , fascinating and nicelly decorated . Their smile really makes me happy and releive me in turn . I start to plan at least one month before the day of the enevt . Every time I make gifts , I always enjoy the enent itself through such a process . But after our stupid president made the decision , our government said that speaking English is the key to becoming a global contry and they are going to enforce English education on the people . This will help our kids to understand other people and other contry . Obama 's trasportation plan If possible , you should use ( the ) ice sold at the liquir shops . There was a sudden braking with vbration and rattling noises . Finally I 've finished miy exams ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I do n't have a job , so I can enjoy my spare time , which I spend doing funnny things . . In fact , I have been there like ten times before , specifically to my granpa 's flat two blocks from the beach . I feel it 's my place in the world . dinner was delicios . the next day at the wedding I went sighseeing . I went shopping and had delicios food like takoyaki . Have you ever been deppresed ? `` Have you ever been deppresed ? `` , I was asked this question today by one of my associates . I counld not understand what he said . I mean , when I use English , I ca n't tell my feelingness completely because I have poor vocabulary . My parents were wor and I decided to study Korean and a little of English , too . Studying korean is very funny , but I do n't know about grammar . I 'm learning the korean alfabet , named hangul , It 's very interesing . Now , I will have dinner . Good nighr everyone ! The Great Gataby In the spinning room , you ride the bike fixed to the ground , and under the guidence of the coach , you can ride to the rhythm of the passionate music . First , I thouggt it did n't matter to sit any place , but actually I was wrong . I work a parttime job hard three times a week and I 'm gaved enough Eky Cathedral There are two types : one is the iPhone , the other is Andoroid . Maybe you would think of the Olympic games , the New York yangkees , the Chicago Bulls , etc . They did n't turn on the heat yet , becouse the weather is n't cold enough to do that . Finally , thank you Brendan because you encourge me . After that , I hope I can futher my studies and become a linguistician . You can not drive from 10 p . m . to 6 a . m . the day after , on wenesday , Saturday , Sunday and the day before and the ten legislative holidays . Of course , it is not meaning that is to go forwad without any care . K - BOX has a free car service , we took the car when we went there and return bakck to school . Then , people who shake the two dices , the numer added in total if it 's 7 , then you can add a certain amount of beer to the glass if the glass is not full yet . So everyone cecebrated my birthday and gave me presents . Last year the government setteled a new traffic rule to wear a helmet when you drive a motorbike . But I 'm scared even on a taxi , because the driver accerarates for a red light . the life is very hard and sumple I think . . . . I MUST ACHEIVE MY DREAM . All of them use English or Chinese or half and half . I am not sure , so I want to hear your suggetions . Second , I have sent all the agents ' ( have the VIP states ( ? ) ) full names to you , plese check them . After that , could you get back to me ASAPA ? Your website saysat least two letters of recommedation are required , and they should be written by the applicant 's teacher or employer . After graduation , I have been working as the cheif of a non - profit - organization ( NPO ) for more than 2 years . Would it be acceptable to ask a business partner or CEO working at another comapanies to write a recommendation letter ? And I want to drink bowls of gruel and eat steamed burn , which are not easily foung at night . Geogre Lucas is a filmmaker . I think it 's very difficult for me to keep a diray in English . Having acess to TV more encourages people and especially children to watch TV more . So there is lessw time for hobbies or family . It is bad for children 's eyesught when they watch TV too much . It 's hard for me becaous I was flunked as a student . To become a skilfull computer user . I 've heard that Japanese tend to follow the mojority and reject others . They always accusue me of being too stubborn and tell me that that 's why do n't I accept other idea . In spite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summerizing his story , even though he still had 10 minutes left for finishing his lectture . I saw the professor get upset about that , so I raised my hand and said to him `` the professor seems to want to finish his lectture first , so could you talk later ? ? `` and I stopped . Afterward , some of my friends came over to my place and started critcizing me abot it . They asked me why I did that to a vice - president , that was it too inpolite and so on . I thought it did n't matter whiether he was a vice - president or not , he should n't have interrupted our class . However , I also think it might be not about Japanese culture , just anout me . Watching the movies `` Terminator , `` with actor Christian Bale , reminds me of a creppy movie called `` Machinist `` and my experience above . Tommorow is Thursday ! ! And I bought some books on philosphy , problem solving , English study , etc . A Japanese friend has told me somthing about this website and I wonder how can I servive without her . . . When people who live in Tokyo go somewahere , to It 's really different from those stereotypical interviews which take place in formal meeting rooms where you become nervrous and uncomfortable . I usualy try to take a nap , study English . `` How many times a day shoud I call you ? Today , I found a very insterested website , Lang - 8 , from my colleague , Michael . Too ( so ) dificult . . . This whole school has a very sifferent atmosphire . I mean , these are just my personal experiances . I am poing to study English now . I thnk I can write simple English , but not coplexed or sophisticated English . Hi evryone . A few years ago , I studied English with some texit books instead Of course , I still use texit books to study English as well as the question sentenses 1 ) Do you offen play basketball ? I could n't remenber words and vocablary . Dallas Marveliks vs Miami Heat . fortunatelly , I am working for a teaching design degree . Monkey D Luffy is the main charactar in the story . By the way if you are interestede in Japanese , I may be able to help you study Japanese . Because , he ca n't understand why I ca n't understand Engish . But I do n't understand quantam physics . Today is the 16th of April , but it 's very cold , so I 'm wearing a winter jaket . I enioy playing the piano and breathing the fresh air after it 's rained in the jungle . A Nurse of Indnesia . If I could polish myself . . . . In Asahe News paper today , Some of them were returning to their country disheartened . I do n't like examnation even though I know we sometimes need it . I think everybody is born with thier own ability , and potential / posibility . They really wanted to get nurse lisence and wanted to know good Japanese for it . But we have a lot of work for our patiens . essentially , when we intrduce people who came from another country , we helped them with getting situated living here . They said it is too difficult doing both work and studying a second launguage . So far , I have not thought so becasue So , I brashed my teeth quickly and got ready . I checked whether some imformation had come to my email box . I went to a Krean restaurant today . I love Krean food . I am loking for a new cap but I was n't able to find a cap that I wanted to get . I looked on the internet and I finaly found one , so I ordered it right away . The University Entrance Examnation grade will come out after 2 hours . . englishi is slowly driving me mad . I can be happy since all of the peoople present at the wedding reception are ( also ) happy . Please , tell your trategy to overcome sleep ! Second , I move to eliminate my sleepness . And of cource , I enjoy reading it too . For example , the death of parents , attack from deamon , or war , etc . But being in the ocean was so beautiful and it seemd that the visibility was very good . She said to me I am not interested in marridge . I was thinking I have to curl my tongue to make the `` R `` sound untill I was taught by him . Today , I went to a Juwish temple to attend a service with a few classmates . A lady told me that this temple is very flexible and that if you want to experience a traditional Juwish service , you should go to some other temple . That 's why I will go to some other Juwish temple and then compare my experiences . I think , that medecine is my vocation . My 95 - year - old - mother - in - law is in a nearsing care center . My 67 - year - old husband was invited to play the guiter and singing songs at another nersing care center as a volunteer . In fact I felt blue for a few days , so I coud n't write my diary on Lang - 8 . But I sould be a little bit more serious about my messages . I 'm looking forword to it : ) So , I began cooking for myself in the mornings . Sometimes I felt sleepy and wanted to give up , but I tell myself to resiste . As a wizzard , I can research the expension and unlimited world of magic , adventure with friends , study knowlege , seek for treasure . . . and can be in the high class of society . If it is Japanese you need 3000 hours to mastar it . So it will be difficult for you to mastar Japanese . Maybe they want to become some kind of cute or defferent from them . Also it is dificult : ) I came to London yestarday to study abroad . So I do my best to study English , and I made it a rule to keep a dialy in English . This term I shall keep a dialy . The scool 's nearest station is a farm road . Calgary is clener than my hometown . I went to the cemetery with my wife on the 13th where our ancester 's grave is , and offered flowers and incense sticks . Tomorrow I have to go to university and barbar shop , study English , and prepare thant will be 9 . 33 pence , please . Japanese government gave her some gifts as our gratitude because she donated a lot for Japanese people after the big earthquake happend . These days , I try to listne to English . I thik I will become a English speaker if I have a native friend . I was curious abour sex and when I had enough of watching it , it did n't impress me anymore . But they tought I was refusing to mix with them because I felt superior . The best place I can think of is Algiery in Africa . The work is suposed to be broadcast through NHK Tv program `` degi navi teens `` The work seems simple and childish for me , but her skill is wonderful . It is said that singing English songs could help to improve our oral English : is that true ? If so , could you share some of your favorate I was very suprised at the amazing number of people . Going abraod remind me of my forelign life in America . I read a lot of aricles about Michael . It looked like a moutain for me . I 've seen the posters whree a young boy is everywhere many times . Though I was apathitic about golf , It was a little humorous for others , but we did n't feel it was horerious . Especially to native speakers or anyone who can speack English fluently , or interested in studying English . So I am willing to take part in correcting Korean as far as I can . ( or if you have something that you want to know about expression , culture , or whateve about Korea , let me know . I shoud correct this , but I think it will be a little hard for me to correct the habit . Today , I experienced a blackout because of the effect of a massive earthquake and the Fukushima daiichi nuclear plant accindent . It is cool to see famous pepole unexpectedly . This afternoon one of my bosses told me that they stopped sending volunteers to Miyagi Prefecture ( the place that the big earthquake hit direcitly ) . I was planning to make a big dicision and told many people around me that I was going to go there to help people in need . By the way , how do you describe in English the feeling that you feel when compelled to do somthing for others ? He is Fantasista . My Fantasy Land ( Please correct my homework , pleaseee ^ ^ ) It 's bordered by Moonland to the north Moonland to the south , east , and west by an enormous ocean . Another good place in Guiland is Fantas , there is a musuem there that simulates what the future would be like in the next 100 years . There are also many shopping centers to enjoy . I have a question about The Wezard of Oz . I am a pharemacy student who is not good at learning chemistry . I was unaware that my majoy has a great relationship with chemistry . Anyway , I am more fond of physics ranther than chemistry . I have had a headech since yesterday . When I am sick , I feel lonlyness because I live alone . My mother language is Chinere , I hope I can help someone here . Our holidays were going gread ! Since I saw Nakanishi - san 's blog which introduced this servise Lang - 8 , I finaly registered and started to use it . He was transferred to an Ameriaca office for a period of one to two years . But I 'm not an infant , so I have to sutudy more and more ! I have an experiment in chemistry at the univercity on Thursday and Friday . This is my big sourse of distress . She was on that southern Asian Isaland as an exchange student . I 'm interested in natural sciences like astronomy , physis , and earth science . Please make corrections and comments about my sentense ! As a result , he declared that he felt really sorry to his fans and he decided to retire from the enertainment business . I met many foreigners there , and I had an interst in supporting developing countries . . And I want to establish a fair trade company that can help not only people from diveloping countries , but also Japanese people . Fenders are my favorite kind of guiter . Last night one of my good friends from Lang - 8 helped me fix my computer . He installed Japanese and Chinease language support on my computer by using TeamViewer . I am really happy that I can read my friends ' names on my paqe on Lang - 8 . How wonderful he is . Wikipedia said / says that she has Danish origins , we certainly do n't see that in this picture ( but how sure can we be when we know how much the makeup and the lighting affect the colors of the photo ? ) . I can make pudding with milke and eggs . I became his asistant [ space ] ( he called us [ space ] `` Angle `` ) . [ space ] We helped him create his works . He was jentle man . I ca n't remeber exactly when it all began . I think it probably was a good friend of mine who first told me about the posibility of going to Great Britain and studying there . Here in my home town , they only offer a few courses , but the courses available in Great Briatin are ashtonishing : : Filologies , philosophy , the arts , psychology , etc I have been interested in art as long as I can remeber but , being honest , I dont have enough talent to be an artist . And , truly , I ca n't belive this is really happening to me . The idea of moving to Great Britain and to study there , in the beguining , was only a crazy posibility and now it 's almost coming true . Unfortunately I have n't got weekends to slow down a little , sit down and relaxe . When writing a daiary in English I am always wondering if my sentences are right or wrong . ' ' Speed reading . ' ' If I master this techniqe I can read a book in just 10 min . Rynn made some great steaks and prepared fruts and snacks . . only , even though it was not right and she wouldnot n't stop . strong and uncontrol . . . vedio camera . I stady English little by little . The optician gave me a pair of contac lenses . Studying English is very interesiting . I celebreted Girl 's Day for my daughter yesterday . I boungt a curtain for my room because the wind is so cold that Lang - 8 will be very usefull for what I want to do . If I 've done everything corect you will see a photo of my cats . My cats lived on the street before I met them . they were realy dirty , sick and hungry . Most of the time I have to watch the show with the closed captioning on , because somethimes I dont undestant what a particular character , Carl , says . He ( Carl ) is the only recurrent human character in the show and he has a really unique and rought accent . I dont think I will learn somenthing really useful watching this show but a least I lear some more street wise language than in text books . I have to improve my English , espesially writingf , so I 'll start from today . In addition , before going to bed , he put a cup of milk and a few cokkies for Santa beside his bed . Hurrary ! ! ! `` He was in seventh heaven . thank you for waching this page ! I coud n't bear it ! It will give you nominal reliaf . I always hear people talking about stuff like some place in china had a lanslide or a sudden drought in the northern part . It is the tast of fall in Japan . There is a ferry terminal near the station and we can go to Geougetown by ferry . I think I gave the wrong impression when I was chatting with you on the day before yesterday . Maybe it was first time I communicated with an foreigner . When I want to say something I need to search the related words in my mind however I ca n't express my idea properly . My voice and intonation may sound abnormal and I do n't know whether my speach sounds a little impolite or something bad . If I did , please forgive me as it was not my intention . We have a electric time schedure board ( I do n't know what it call ) that they show what time next train comes exactly . If the train comes late even one or two minutes , they will anounce `` I 'm so sorry , the next train will arrive 2 minutes late , please wait patiently . `` . . . S . , I realized a lot of things about Japan , good things and bad things , and accept that everything frexible . seaweed , boild and put mashed sweet beans . . . Fortunately , The Tokyo area where I live is far from the seismic center , so I am safed . We helped him to meak this food , but when people arrived , we had n't made enough food for everybody . So we found ( served ) other alternatives like cakes , fruits and chips ( frites ) . I heard that we can save electricity by unplogging electroncs that are not in use . Another major soure of energy use is driving . Oh , sorry I have drifted off topix Most divorcees were suffring from their finantial problems , because they have to support themselves . Once , a young guy rode his new Hally motorcycle freely on the highway . Then an old lady rode another Hally motorcycle overtook him and loudly asked him : `` Are you familiar with the motorcycle , boy ? `` At last he found a Hally motorcycle lying in the road and the old lay hanging in a tree . My husband went out to learnig Chinese . In the future , I will work as a specialist of coffee and lecture a lot of people on how to drip dericious coffee . I want to do that work since I entried the company . I want to serve ( ? ) dericious coffee to many persons . `` Houichi - san `` cried the assistant , but Houichi was obsesed in his clothes off and wrote Buhhist prayers all over his body . `` Here is his bewa , but no answer . Today you can see a stange thing along the coast . I want to know how to express my truely attitude to a native speaker . Okey , thank you . Ahterwards , she went to the hotel , which is run by Yuina 's grandmother . Ahterwards , Toru returned . Today is raining / a rainning day . I Talked to a Duthman and a Duthwoman on the Train . She is a vewerinarian . Her husband majored in econmics when he was a college student . He said that she thinks that econmis is just figures . Their children study cultual history . I can speak Japaness a little bit . Espesially the ' R ' sound . I 'm not allowed to use the PC in oredr to write the report . Actually , I think it has something to do with lazyness . > `` < | | Actually , I 'm originally from Osaka which is in the center part of Japan . After graduating from university , I started my career as a teacher in Kagosima which is in the southern part of Japan and now live in Hokkaido which is in the northernmost part of Japan . For example , to express `` very `` , people in Osaka say `` gottui `` or `` mettcha `` , people in Kagoshima say `` wasse `` , and people in Hokkaido say `` namara `` . `` As pleasat as the scenery was , I would n't recommend going to that resort . `` I 'm studying alliteraion these days , but there is no one who helps me here . Ocean names need the like the Pacific , the Atlantic , the Artic , and so on . I wathced the movie `` TRON `` last Sunday . I have n't watced the previous movie , so I could n't understand it sometimes . They have yet to develope into adults . Last weekend I was going to get her family Cristmas cards for the Cristmas but I could n't find the cards that I prefer type of design . Last month I asked my firend who would come to Canada on December 1st . I got sunburnt the day before yeasterday , soI got some aloes for treatment . Christams is a big deal for me . First of all , I went to Britain in Feburuaty , and I stayed for a month . Today is supprisingly warm , 59 F ! It has been freesing since last November . all my friends were supprised to find me wearing only one coat . In the last 2 months , I have studied Japanese everday . this summar vacation , I always wake up before lunch or later : D The Tohoku earthquake occered on March 11th , 2011 . I think the people 's view of life in Japan has become devided When I was changing channl on TV . After I watched it about five minutes , I found out it was a horror moive . Although it was horror movie and I wanted to sleep , I still finished the whole movie . When I went to bed , pictures of blood and guts filled my mind ! I should n't watch horror movies at nigt . . . . . . . . But in the moring it is very comfortable ! If I improve my English speaking and listening , I can go to abroad on a bussiness trip . Usually I concentrate on remembering difficult vocabralies . With the rapid development of human industries , many problems appear as a consequences of persuiting excessive profit and being blind to the pollution . Despite the fact that everyone understands this cruel fact , people seldomly take the responsibility to change this situation . The next thing to discusse is deforestation . People cut down trees for farms or buildings igorning the damages to animal habitation as well as the incredible impact to local weather system . First of all , we should be awaring that we would never be able to separate from these problems . It 's my frist daialy . I have n't witten my diary a for long time . Some thngs stopped me from writing . But unexpectadly , there were huge crowds of people there . It reportedly said that noise from a quarreling couple disturbed their neighborhood below , who then called the police fearing something tragic would occur . I reccomend it to all tired people . Its ingreadients were rice , vegitable , fish , seaweed , beans etc . . For example , the menu had `` pudding of Green peace `` , `` mash pumpkin salad `` , `` vegitable tempura with greentea salt `` While we rode our bikes in Mexco , we were always attacked by a lot of dogs . Canda 's Wondaerland Today we can choose different ways to exchange information depending on different situatinos . But I was refleshed / relieved ( ? ) . So , there are a few people in the center of our city , bacause people who live in our city oftern go to the big shopping center that is located outside of the city . Dolittle ( autor : Hugh John Lofting ) I am going to go to the optical shop , and then go to a briteday party for Xiao wei . I have not chatted with Rose _ garden for a long time ; I am thinking of her . . . hie hei . . . . a alitle bit about her . . . Also some of my friends taught me how to say good everning in Frence . . The most famous and popular picture in the world is the `` Monariza Lisa `` by Leonardo da Vinci . Have you noticed that she wears no juwerly and has no eyebrows ? Do you like the Monariza Lisa ? What will the score be in today 's match beetwin Real and Barcelona ? But I tried to behave like , `` No problem , go ahed and talk . `` I 've got surpring news from my friend who I 've known for over four years . It just made me kinda sad since we 've been nice friends actaully . It 's going to be a surprsing party ^ - ^ We are also going to get some presents too which we hope will remind her of Nagoya ! ! It has been runnig in my mind all the time recently . I must say : Chinese food is so good , expecially in Taiwan . But I could n't explain well because I did n't understand the other menber 's research I 'm so navous XD However , since my wife belonged to brass basnd in her school days , At first , I didny ' tknow her name , The earthequake heavily damaged the transportation system , such as roads and railways . Yesterday , the last day , I went to the Hokkey Hall of Fame . I took many pictures with the Stanray Cup there . I ate dinner at a Chainese restaurant . In order to relax , I decided to do some outdoor spotrs . Everyone should change themselves to adapt to the enviroment , especially young men . Here , can I say `` after that `` instead of `` afterward `` without chaging Althought Science and Politics have been developed suprisingly and our lives have been changed to be made more conviniently , we are not satisfied with now . Actualy , I do n't feel like the real new year has come . humm . He suffered from pnuemonia and stayed in the hospital for a month 2 yeasr ago . Fortunatelly she only had to take care of him for a short time . We are fine as useal . Helloo ! ! On the net you can choose from an enormous selection , includingthe paper that you want to read , the field that you want to study , etc , and most importantly : it is you who is choosing , and not who is being chosed as you are with the tv . American drama is very popular in Japan recantly . It was soooo exciting and was n't as dengerous as I expected , I could n't be too careful though . but we Japanese typically like American or Europian fast fashion brands , like Gap , ZARA , H & M , and Forever 21 . A few days ago I got the lisence for large motorcycles . It was a preety good time . When I surfed the net , one of my favorite blogs The movie discribes just an ordinary family , including parents and one doughter going to a high school . There is almost nothing exciting about it , but one little incident in that family gradually reveals its problems and strangeness , which , to insome degree , every human being has , and we sometimes ponder about them . make many friends and travel to many countires . I suggest drinking coffee without suger . I like watching moive with my friends . I mean , in my opinion , they will be happy getting some snacks or magagines which we can get only in Japan . I knew he has strong intenntion . Though he llikes liquor , he will not drink one drop now . But , I gurantee to improve your Japanese skills as correctly and efficiently as possible . The story is in 6 episodes , about skywolker defeating the Sith . The latter story `` Back to the Future `` are interesting science fiction mivies . Every time I see them , I have provoking thoughts on / about the huture and the past . Sometimes I watch mivies English . recentury , I could understand easily English mivies . Volley the ball likly hammering nails . Now I live in Wakayama city , aruond 50 miles south of Osaka . Wakayama is an old town and has a beautiful casstle founded at the feudal age . To sum up , VCS is a really usefull tool to backup the computer 's file automatically and smartly . Waiting for a paticular lettter is hard . I did not kown the answers at all . In fact , I really want to impruve my English . The title is `` ON Long distance education . `` Oh , really diffcute , right ? I want to somothing for people , especially poor people , animals , & lonely young persons . Hou should I live ? But I like the air and the cconversations while drinking . Suddenly , the rain started falling when I was woking in my office . I injoy this way . I wish she paid more attendtion to me . And this year the Mid - autumn festival is held during the National holisay . The day before , it has lasted untill two in the morning so , yesterday my husband wrote a letter and put it on his door . After graudating from graduate school , B found a job at once , but A did not . Suddently , it occurred to me that sometimes losing is winning . There seems to be an agreement where the government asks companies to donate money in exchange for the privilege to promote the company in the park by doing things like like printing the company 's name in pastcards . However , the government shoud not forget that there are some risks involved . Some companies may abuse their privilege by constructing buildings . I thught that if I wrote Japanese first here , then it would be translated from Japanese into English . I went to a chainese restrant with my chainese friend . We enjoyed chainese food . It was good but a little bit saluty . There is one saying that goe `` it is the early bird who catches the worm `` . Most of Chease people have been studying english for very long time , as for me , I began studying English in junior high school when I was 14 years old , but even now , I still ca n't communicate with foreigners very freely , the lack of vocabulary is a big problem when I want to talk about some complex issue . My listening ability is not good enough , especially when I attend a meeting , because I ca n't interupt speaker very frequently like in face to face communication . The landlord is a Singapoeran man . But neighbors had sex almost every day . Sorry , but waht have I written about ? ? If you hav n't watched it , I can recommend it to you . recentry I ca n't drink a Litre of water from 9am to 6pm . The reason is cleare , I am busy at my job . In the biginning , my back was getting chilly ( felt cold ) , My voice turned hasky ( deep ) , I had an unbrella , but I left it at a bookstore . When I went back , the same unbrella were in the unbrella - box . I thought I grabed my unbrella , but it was not mine . After I finsh taking English lessons I alway feel thisty and exchausted . I think English is the language to express somthing and Japanese is Yogert against Hay fever and Pollen dust It said that for people who suffer from hay fever will get better by eating yogert or drinking yogert drink everyday . I told my friend but he said his stomach is also weak for milk , yogert and yogert drink . . . . . . It was really good choise ! ! Some of them are good people and some of them are bad people , but we can relate ourselves to their charactors while we saw a play . Before last scean come , Jean Valjean ( main cast ) make a confession to his daughter - in - law 's fiance about his old sin , then he disappeared from his daughter 's sight . I want to go to the theather in the near futher . Univarsal Tokyo is near my brother 's house . Of coase I 'm not . Seijin no hi ( Comming - of - Age day ) but same as usuall . Hair tecsture is very different depending on the customer 's race . becaues I work hard too . Becides , I really need a scholarship , so I promised that I would get straight A 's for all classes from the start of this semester . I love my language , foreigners say that it is weird and that it is difficult to study , they are just affraid of difficulties . ) ) ) ) I am proud to be Russian and to speak Russian , but it has a downside : I ca n't get rid of my accent , because we have a strong and tough pronounciation . 1st of September is the worst day , ( that day ) my studing will begin . . . My understanding is taht it is a very strong beam of light . . . ? ( Is this corect ? ) Children 's smail are very good . thnak you . I 'm glad to get along with my lovly classmates evertday . I believe there must be some strange power in her articles , for so many people get toghter and remember her . Therefore , I belive I can enjoy more when I take a trip with friends , so I 'd like to choose travel with a company if I could choose . Then Itarians began to grow them for food . Notrh America Do you belive in a spectral existence ? In the moring , a new lab mate came to our lab . Today , I had a conferance . Increasing the treature of wealthy counries make them richer than before . Take China for example . When scientists developed new techique to plant crops , China could stop inporting crops from other countries . admittedly , it is not enough to provide financial aid to poor coutries . Today , I bought some books : books about Vietnum , Obana 's speech , and Shakespear . I 'm interested in Vietnum a lot because of The VietnamWar , and I 'd like you Americans to tell me how you think of Vietnum . I came here to learn englishl . I studey an English conversation everyday . It 's very hard fom me . For two days now , my wife and I have been walking to the park early in the morining The curriculam of the course is so tight that students can not have the time to do anything but study . On the way to my unverity , I often listen to my iPod , on which a lot of lectures are recorded . While she was in the hospital , she slept very well and ate balanced meals , and that 's why she recoverd completely . So thier diligence about English is intense . Their conventional phrases are that `` you need to practice more `` ( Even I know such a thing ) , `` Yoru English is not good enough to heve conversations with native speakers `` ( You have a middlesome attitude , ( I already know that , please go to hell . ) The reason why they do so is because they have high pride about English . And Japanese peope like to boast their special skills like English , programing and certifications . I could see a beautigul scenery . She thinks cram school can not provide the knowledge she needs , but she still needs a teacher to correct her writting . The only thing I can do for her is practice speaking with her as much as I can / as much as possible , but I do not have enough confidence / the confidence to correct her writting ! In my opinion , when people speak / are speaking , they might ignore the grammar problem , while in writting they can not . Even I had prepared for the IELTS one year , yet I still can not easily express things no matter if I am speaking or wrtting in English . What shuld I answer ? Evryone asked me `` How long have you been here ? `` Shuld I answer `` I 've been here for two months `` ? Is it right ? On that day , Angel Gabriel was sent by God to the Virgin Mariam , who ' presented himself as a human . Virgin Mary said she is not marrid . She she hoped she died befot that . . I 'm relieced . ( I want them to learn how to use maney , so it 's not a lot ) I have been studying Enlgish for almost 6 years , but I can not speak English well . I made it with only solt and vegetables and herbs , it was too soon for me to have it though , as I felt something was missing . . . The next morning , I added a bit of a consome cube ; ) I ate some food , mixed ice cream , zingisukan , salad , susi and so on . So we went to choocolate a store . But me and one of my friends did n't buy choocolate . Some of them can impcts you for a lifetime . In different peroid , elementary school , middle school and university , we met different friends . This is my frist time using this facking bullshit ! After all that , I found myself getting off the train holding a tremendous ammount of frustration pent up inside me . I am worried about these triefles I think we are equal wherever and whoevere we are as long as we live . My mum told me she sent a lot of dunmplings to me . The dunmplings my mum makes are always full of oil . The dumling in Jaxin ( in China ) are very famous ! Thera are no clouds in the sky . But I do n't know wnat to do . . . The one on the right is Mattya Azuki ( green tea and Red bean ) , the other is rainbouw : D It was sooo funny . I love American dorama . Yesterday I rented the DVD `` glee `` at a video remtal shop . Memory is quite werid , it can change things with two sides into pure good or pure evil . We may qurral with our friend or may even swear we will never talk again . All we can remenber is how sweet our friend is , and the little things they did for us . I still save the small note my friend serectly wrote to me in math class asking me where to go for lunch . I started diving lessons last yaer . souga - yu If you have catch a cold , you can try to drink souga - yu . Today I seminarys at the afternoon and , in a little while , at night , I 'll return to college to more and more seminarys . I 'm thinking , writing here is more confortably to me , because I can think in english faster ( Yatta ! ) . The bad point is : wo n't work apropriated with learning new words . Watashi wa supein de umaremashita kedo kodomo no toki , irelando to furansu ni mo sunde sumimashita , sore kara , eigo to chotto furansugo mo hanasu koto ga dekimasu . Kono nikki wo yonde , watashi no nihongo no reberu ga wakarimasu . They are choosen by people because of their life style . We exchanged our numbers and e - mail adresses . governments planning an undrground nuclear waste repositry on Mongolian soil . These governmnt do n't want to take the risk of nuclear , and just foist it on the Mongolian people . Tagine pots and dishes , which are cooked in a tagine pot , are popular amang Japanese young women . So it 's healty . I went to a restaurante which serves the Mediterranean - style seafood dishes and I ordered Moroccan curry . That was ture . Have you ever had any serious dissease or injury ? I want to have some friends in forign countries . In my last entry , I wrote about Africa and all the different kinds of wild animals . I also wrote about Drakonsbergs . But my parents think it 's not good enough and I need to become more competetive . Both her face and vioce are adorable . So nobady said `` Congratulations `` to me . It did n't matter to me that nobady said that to me . I think that Mother 's Day is a special day for saing `` Thank you `` to one 's own mother . So I tought I did n't need to say `` Congulatulations `` to my friends . I very much enjoed it ! I 'll be going to `` Sendai `` by train to go shpping . I 'd like to go by car , but My car has been broken sinse 2 days ago . I hope it will be repaird as soon as possible ! ! I have to look at four pictures once and discribe them in a story . I want to speake in English fluently like an American . I think taht I agree with forign . I want to go to Ameria early ! ! I 'm gioing to visit one preschool this Thursday . This is a catoon in today 's newspaper The electronic design coverd PLC , semiconductor circuits , PCB design , C - language farm ware and much more . A ' gap year ' system is as follows : high school graduates who have the qualification for admittion to universicy or college take volunteer activities for a year in his / her country or overseas without studying in university or college . They stay from September till July next year at a house owned by the local government and are paied some money for living expenses by the government . They experience many things during their stay in my town and go home with their precious expriences . This year too , two voluteer youths will come on September 10th . There is a humourous bookstore . I had a farewell party for my flatemate tonight . I 'm not sure , but maybe it 's Korean style Vietnamese food ; ) We chose some vagetable we wanted to eat from the many kinds of vagetable and put them on rice paper . But I 'm a English beginner and I have Inever gone to England . So today , I will write in my diary for the 18th of septemver . Introduse myself . . . I 'm Maru In the pierod when we got together , he was always annoyed at me and never satisfied with me . I do n't have a bycycle , so I have to walk 30minutes to arrive at the hall to sing . It provides you a convinient way to have meals . It is so great to cook by youself . When people talking about day to remember , most of people will mention about any kind of special day like festival , hoilday brithday , grathing day or even day of dating your grilfriend . It is natural for Japanese when we visit someone to bring some souvenirs ( `` Omiyage `` calture ) for them . However , I have no idea if theAmericans will accept Omiyage calture . I do n't listen to musik often . tareksan hon wo yomimasu The liquid from food waste mixed with EM bokashi contains good bacreria . This can kill bad bacreria in drainage pipes . But in this class , we did diverse work using english . For exaqmples : Singing songs , doing role plays in front of the class , doing yoga following english directions and so on . Now I can enjy english . When I was just practicing english speaking , even if I had grammartical problems , I did n't care . I guess this habit is the result of practing English writing . However , so lerning C is put to bed . Also will be great to studdy another language , maybe italian or some slavic ( Polish , Serbian , Slovenian etc . ) This cultures are intresting for me , and words not so hard to learn I think . Distance is not a probrem for me , because it takes 45 minutes by train . But the train ticket is expencive for me . . . The restaurant was quite expencive , but the atmoshere was nice . Thease days I am busy with hunting for a job , but I 'm having problems because of the financial crisis . Another reason , I think , is that I want to change career fields . Above all , I can not memorize Englis words easily . I have a favor today = . = This is my writing examation in this semeter . Let 's make up our minds , stick to it and enjou our lives well . What wiil I do ? It is good that I do not have to go anywhere . = ) I hope that It wiil not be hot in the evening . What will ( shall ) I do ? All airways to Western Europe are all still closed and the center point of the arguments is what level of ash is safe . But I found out that her parents got divorced and she sufferd from it . Yuma rided his tricycle . My favorite artists are AKB48 ( Japanese girls group ) , KESHA , Avril Lavign and Lady Gaga . I do n't just study a lot of things at colleage ; I also do a part - time job . My strength and enery gradually becomes worse . they wore winer scarves , hats and thick coats . I am sure my mom will come to the ariport with my thick coats . I am so looking farward to see snow there . I am good at writing , but I am not good at listenning . As soom as I got home , I had dinner . So I went to buy a present ( wiskey made by Suntory , a famous Japanese company ) for my father today . When a student walked out of the claassroom with his phone on , my teacher , an old man from Anhui , rushed out of the classroom right after the boy , suspecting he was playing hooky . At last , the poor frustrated old man came back alone and embarrasedly in a pile of laughter . The cat is called `` Boss `` by poples . I used to live in a homestay ( hosue ) and went to there yesterday . We keep in touch with each othey by QQ . She does every subject well except math , Do you know he ued to get zero in math so she promised to work hard at it . After that I went to Aulkland Museum . But I guss the best thing is just natural . Remeber what did you tell me when we last met ? Were they esay to start ? I really do n't add unfamilier people on my Facebook , so I felt that it was a little annoying because I did n't know him . Althought I have already gotten material of apartments from their support group . I am able to relux but when I stay with someone else I am not able to really relax . This is the reason why I have not been sleeping well recentry . At the time , I tought the reason why I think like so . Aerobic and Strength tarining I 'm really looking forward to seeing my old friends and wearign a Furisode : ) I 'll take a lot of pictures and , I 'm going to put them here . You must be looking forward to seeing me wearign a Furisode ! If you do not deal with this proems , I will be forced to take a legal action . I am a colleg student . She was the most beautiful Pina I 've ever seen ! ! ! I will be sturdying English about half as much as I usually do . But a snow - covered mounten is very denjurous . So I 'll go to the snow - covered mounten with my friend . I used to go to a camera shop and orderd pictures printed , but I do n't have to do that anymore . Nomally in Tokyo , it is at the beginng of April . This winter was hotter than those of nomal years . I 'm hoping to have another amesing dream tonight . Going along the main road straigh to the city . Thus , after a long day riding , I realy want to go to bed now . But he abondaned it because his girlfriend got pregnant and he decided to be a father . There was an earthquack on 3 . 11 . and creating someting is so fun . But the point is that we are so small to the universe , so why bother being so tired and depressed by something also so little . So little that you will hardly recall ten years later , and you probably will never mention it ever ; like missing a bus , losting a pen , or having an argument with friends . Japan has a long and glorious histroy , good public safty and a strong army , Tokyo is one of the biggest cities in the world , Japanese technology is the best . `` The Japanese gevernment and companies know this fact well . So I decided not to buy a CD plyaer and bought an I - pod insted . To my suprise , she wasnt not far from my sight . She has been there from bigining to the end . Surely , she does n't even know what I wana do with her when I have time . If I can assume her exsistance is destiny , I whould confess my feeling to her directly . - There must be a leader who is in charge of arragning meeting times or presentating their project in front of the group . So , I do not agree with the idea that all group members should be given same greade even if they choose each other as group members , like a team that consists of all friends . First , it is true that each member in a group devotes his or her passion and time to the project with different amounts of effots . ( our professor made us break into a few groups ) While my team was working on an ongoing project , a few students , including me , spent plenty of time indivisually on the project , but the others were just like spectators . - This class always reminds me that people should be diligent when working alone or with other poeple . Today I 'll talk sbout my hamster Subaru . April is the biginning of school season . I had already heard that no one brings musical instruments or sings songs to cheer their favorite baseball team , but I did n't know that venders threw snacks like peanuts or ice cream . I saw some videos related to the baseball stadium venders on Youtube . Unfortunately , there are n't any venders at Japanese stadiums , as far as I know . During this time , I 've been learning grammer rules and vocabulary by heart actally I 'm still not good at English because I 've been studying it on my own . sorry , my ablity to speak English is really basic so I 'm unable to have a fluent conversation . I recived a letter from the job training institute . + peel the carot and the Gobo . + cut the carot into strips . + stir friyng Gobo and carot together with sasame oil ( oil also possible ) until wilted . ( soft ? ) + add the dashi ( soup stock ) , sake , soy souse , suger . The whole world are having thier eye on the rescuing of the Chile miners . The construciton for disabled people at my nearest statinon has been going on for 3 months . Because there are n't famous Japanese celeblities in America and there are few Japanese celeblities there . Probably Americans are not interrested in Japanese celeblities . The funny guy from Russia said that he realized that Japanese women walk with short steps , and he tought that it was because Japanese women used to wear Kimonos . And the girl from Sweden tought that because the women put on high - heeled shoes , they ca n't take big steps . About my horiday So I want to study a lot of languages of different countreis . I exaggarated too much . I visited Tronto , New York City , and Hong Kong during golden week . BecauseI , I think that to review those is more important than to write another . Rently , I have been studying English . My favorite mounths are October , June , July and December . Today I 've just wach an awesome movie , I loved it . In japan we usualy play the game `` nine ball `` , one of the various rules of billiards . actually , I did n't search for it , my canadian obba otld me hahah in 30 years old , I want to be good at speaking in french , englsih , japanes , korean , , ha ! nowadays , I really enjoying watching overseas drama , th title of drama is `` desperate housewives `` . . it is season 5 but , cofidence is importatn in western culture , haha I sort of thought , downd the corridor of the time , this is the first step to improve my english I teach mathmatics to high school students . Workholic ? ! I booked an Engilsh class outside of class . I want to speak more Engilsh . He has an exciteinglife life . I would especially like to see the pyramid , SPHNIX , mummy and so on . There is so much I want to see in person . I was so greatful that one of the parents told me that her daughter really enjoyed today 's lesson and she was glad to see it . It might be harder to learn and collect vocarbularly by myself . What would you say if you presanted Lang - 8 ? On the march 11th , the big erathquake occurred in Japan . New year is just around the conner ! Today , I will take two crasses , bcouse I am very busy . About 8 : 00 pm . , he came home and gave me flowers and choclates . I 'm very happy to get the superised presents , because he always forgets important things . It sometimes causes pain , particulaly in the parts that have a lot of Cellulite . Danxia Mountain is the only World Natral and Cutral Heritage in Guangdong province . As a sophore , I would like to do something different from last summer . The name Tiramisu is ltalian for `` Pick me Up `` ( Tirami su ) but can be translated figuratively as `` Make me less sad / happier `` althogh It 's still April . . taking midern Exam . I studied in the lbrury untill midight sometimes . Today , I was walking to the liberary . Hot yoga is doing Yoga in hot room where the temperacure is 40 degrees Celcius and the humidity is 65 % . It 's a very hard Yogo . Everyday when I wake up , I first power on my laptop and log into QQ . QQ is a software program like MSN , and in China is the major instant messenge program . Though I have been learning English for about 10 years , I 've never tried to call foriengers in English . When the phone connected , I said hello to him in Chinese naturely . My point is that the bad thing is not that you are not good at something , but that you are afraind of having a try . Keep on leraning . Good Morning ! I am from Thailand . My name is Jirawut . I have decided to patice writing in English here . I hope it will improve my English . I hope someone would help me . Next time I would write about beatiful places in Thailand . I plan to learn Technick English next year . I feel warmy today : ) But I saw many people taking the exam . I hope many people get to be nail artists in the furure . I really want to volantter for those who are suffering but I do n't know what I should do . If I had the time , I would go to the worst plase to help . I guess harricane are common in my local area . If I were to experience one of them , I whould hate tunami the most , I choiced two places . We can see the animals close up and observe their behavier and abiliies . My recommend is the behavior exhibision of penguins . There are sveral lavender fields in Frano . We could see the sprended lavender purple view , and we could smell the scent of lavender . Of cource , Kyoto is one of the most famaous places in Japan . I thoght that game was not interesting but they were so patient . I 'm supprising about this site . If I had found this site earlier , I would n't be worred about my writing study . I was even wearing a nitted hat with `` I love New York `` on the fron of it . We need oxyzen to beathe but we easily forget the importance of it . I just realized that how easily I can be sofficating without this . anway , I 'm tired of using big letters , such as ' I ' instead of ' I ' , that not only that but this mark ' meaning ommision as well . I watched ' Butterfly Effect 2 ' , ' Vapoorize ' , ' Pirate of the Caribian ' and now ' Insadong Scandle ' it 's about the restauration of old Koean pictures . The number of your vocaburary Have you heard or thought of how many vocaburaries words a naitive American or a native Britan knows ? I sould cange my password . . . So I want to improve my Engish . If you find any mistake , just crooss it out . I ca n't blog in Frech , , , . Design is all of its value and Design createa new philosophy . `` by Kazuo Kawasaki I heard that soda makes meat soft and actually the staek was soft even though it was cheap , and it did not taste of / like pepsi . There is a statue which looks like an openning book . Today , I feel like writting about myself . I always go sufiing during the weeked . Sufiing is very popular in Japan . I speak a llitte English . . . . . . . I 'm looking foward to receiving your message . They then hold a perty to uncover the baby 's gender . They may make a cake taht may have two differnt colours inside . I am a college student frome China . Moreover , there are many diferent kinds of videos that you can choose from . I 'm going to go pick up noe of my friends at Nriata airport . Sometimes , it takes a long time to see them , and I have to wait quite a long time at the airprt . They all seemed such kind people and made me feel comportable . This night , there is a TV proglam showing a movie called , `` Harry Potter and the Goblet of Fire `` . It 's realy hard for me to understand what they say ! I did n't neccesarily take the exam lightly . However , I was too hungry , dizzy , sored in every part of my body and sleepy . In the Tokai region , the central region of Japan , a big earthquake happend early this morning . The oscillation continued for more than 3 miniutes . He might be genious so I 'll give up adopting his method . I love department stores even though they are a littel bit expensive because they have many atrractive things such as cool and fashionable clothes , decorative talewares , and delicious sweets . Yesterday , while seaching around the web , I saw this homepage . This is my first time writing a diary on the web , so I am really nervious now ! My gragger especially sucks . Last weekend I had a pearty with my member for new staff coming to this laboratory . In Canada , I want to make new frends all over the world . Of course , not only will it be more expencive but it will take more time to get there . It 's not confortable living in my house because of its bad location in spite of remodeling some parts of it . Campared with my new house , I think it 's very inconvenient for me to live there . - A gray plane with a red dot on its top rotates according to the place of the mouse on the stage , which shows how the rotaionX and rotationY properties work . It was good for my shoulers ! ! There are many foreigher at the party . It has been a long time since I have spoken English with foreigher . I think Japan is becoming weaker but Sigapore is becoming the center of Asia . I 'm in college learning Russian and Europian philology ( philosphy ? ) , also I try to study English and Japanese . In Japan , we ca n't buy cigarettes from a cigarrete machine without a Taspo card . countries , and the other is about coexistense of different cultures . When I study them , I go to the lerning center of the Unversity , which Usually I tend to get nervous and sweat in those occations . My hobby is dencing , eating and cooking sweets . nobody belive me And I also like ' just dance ' and ' beautiful drity rich ' . The desire for money , fame and all the beautiful drity things . I 've been thinking / contemplating that I shoul study English for university or preparation for studying abroad . We learned the Present Continious and Present Perfect Tenses in Hindi = ) one of my favorite alcoholic drinks is RHUM DU PERE LABAT . T completly . Beseide , scholarship for students who want to study abroad is impossibly difficult to get . Though many Japanese are rich and they afford educatoin , I beleive we need changes in Japan . On the way ( there ) , we bought some ingredients for sandwitches . This is my first writng on Lang - 8 . I have to learn English and little Spanish for my buiseness . Therefore , continuing to eat a lot of junk food means exposing yourself to the dangers of gaining weight , diabates and other diseases . Secandary , it spoils children 's appetites and promotes bad eating habits . I am telling my friend about past things but I am not sure about grammer ( tense ) Is that correct ? I could n't contact her but I guessed I could of met her if I went to her restraunt `` As a result , I met her at her restraunt . It 's like jazz music , but more noizy , with lirics . The name `` Baduanjin `` refers to 8 differnt movements including shaking wrists , lowering your head and hips , and swinging your entire body . This is a very popular blog in the United States of Amerika . Last night , my American teacher told us she had a bad experince in China . because her passport , make up and even her money wer in the baggage . but she could n't remeber the taxi number , so she did n't know how she could find it . aften she wrote the form , she looked around , and she saw a bagage in the office coner . Yesterday , I took part in actibity in my circle , university COOP . recommended them mutual aid , new PCs , new electoronic dictionaries and so on . That 's why my birthe is in June . Then , Shinobu Moromizato who was the second money list player in Japan appered our behind . My wife said to her `` Hnag in there ! `` , She said to my wife `` Thank you . It 's been a long time since I 've writen something on here . I do n't know what to write dowm . And I have not maken the decision if I will stay here for my whole life . It was very . delicius . I think that superstars lip - sinching songs are not a singers and their music is not music . Becouse I do n't know what would be interesting for me , and I thought it would run out of battery quickly . and they downloaded it to my iPhone without my permition . konno eiga no namae wa `` grave of the fireflies `` deshita . Yesterday , I wrote I was not interested in snowboad , but I watched it live on TV at noon . The sea water tastes solty , therefore , the sea water contains solt . The theorem is prooved , thus the experience will have a good result . proved However I did n't need ( to do ) it , because I did n't have any maney . I always keep my diary in Korean , so I want to say hallo to people who are English native speakers and read this message ^ ^ Soshite sono rekishi ni te wo kuwaeru koto wo omoitsuta ( lembrar ) no da . It made me feel wormer . When we see the pictures of the past films , we feel that it 's so old , but today 's dramas , pictures and what 's more , scearns { ? } of today 's life are soon becoming old . Suprisingly , on the forum for `` I want to meet soon ! ! `` in both SNSs , a lot of messages were submitted by women . Obserbing the board for few days , it seemed that the messages were written by prostitutes or an organization , that infested the SNSs . I look into the imformation paper to make sure , and I found out that my understanding was WRONG ! ! ! and I will applicate the S . So I replied to her on what I had beeb doing before and asked her what she had been doing too . Straight after we made an apointment to have lunch together . We spent the time just talkig , using a lot of technical terms and eating a lot , Forgetting their daily lives , two mothers enjoyed thier past golden days . Tommrow , I 'm going to `` Hiraizumi `` , which is a World Heritage Site . We had grilled chiken there . Complaint ( complain = verb ) about wrok . . . Important things for lerning English : The chocolate cake they served as a desert was especially excellnt ! I 'm hungry for success and am making an effort just like I do with bpxing ! ! ! My herartbeat is strong I attended my friend 's wedding last suterday Saturdayand drunk a lot ! This little thing reminds me I should show more acceptancy towards my parents , and try to say ' thank you ' more often . I think that I will sleep all this weeken like a dead person . B : You never know . ( You dont know untill we do . ) I went to the studium to watch baseball games of high school students gathered from all of Japan today and the day before yesterday . I do n't like both playing and watching baseball so much , even of proffesional athleats . They never give up to win the game , and it seems to be in a defficult or dangerous to keep playing . They do thier best for thier teammates and their dreams , without thinking about next game or the future . As soon as we got home , my children said , ' we want to play succor . ' But , because of developing countries such as Korea ; Tailand will be abjectly damaged . With Saudi Arabia 's will to increse petroleum production , aimed at stemming unrest in the market , the price of oil will easily get back on track . I went to the spermarket . . . . . I went to the spermarket last week . When I tought her , she said `` Thank you . `` to me and left . Today my professon was about 20 minutes late to our final exam . At language learning school , my teacher adviced me advice to keep a diary everyday . It must have been irritationg for the players . Althoug they did n't get high grade in schoolthey always do well in physical education . I study Engrish and chinese at university . I would like to explane even half what I am thinking and first I should be making some forign friends . Ohayo gozaimasu . Hajimemashite . dozo yoroshiku . I do n't konw what job I want . I gruduate next year . Next day I drove to Saitama studiam with a friend . It is very big and suggested a world cup succer game . Article detaile I thought manybe somebody sent the wrong number and by chance the number was mine . I thought he wanted to cheat my mobile phone company because he asked me to sennd a message to unknown number . And we are having small party with Familly or friends on Christmass day . Is this ture ? ? ? If this is ture , I want to live in another country . anyway , l studed English , specailly conversation . So , my prononsation is better than before . . But , I 'm not good at forming sentense in english . . Today , I went to an exhibiton called the Seoul Design Olympiad . I requested a black foret cake / gateau . I was going to go to work by train , but on second tought I decided to walk . My favorit Practice for English because I ` d lile to siginificantly improve ( or enhance ) my listening ability . I normally get excited seeing this unusual weather in Tokyo , but this timeI I hope that it would stop soon . it is a a taough question of life . I want to be a musicaian , but its taugh to be one . Stay hungry , sray foolish Since I have participated in an English speech contest and pracriced a lot ofspeeches , I know some famous speeches , such as `` I have a dream . `` When I feel deppressed or worried about something , I listen to it . But around starting sophomre year , He said he wanted to constract the way of light . The ingredients are topatoes , Japanese radish , carrots , taro , konjak jelly , mushrooms , chinese cabbage , welth onion , pumpkin and chicken . And last , season with moso . They were good taste , healthy , nutritions and work for warming me up . I made a sentence , which uses `` that `` anad `` which `` . There are sentenceswhich is use `` that `` anad `` which `` . I am wearing a short t - surt , which is striped blue and gray . The t - surt was given to me by my girl friend last weekend . I have some friends who are forginer . My friends , who are foreigners help me with my Englsh . A great thunder came and it turned the sky puple for just a moment . Then a long , heavy sound crashed out , and it started raining for five minutes . My opinion is that the hydrangea is a flower which looks better on a rainy day that eny other flower . It 's ture that the early bird catches the worm . I made it thriough the interview , and I can work in the company . It is very hot but very dilicious . Secondly , we can spend more time with our amily . Thanks to mobile phones , we can keep in touch with other people easily , make apointments easily and speak with friends easily even if they live very far away from us Mobile phones are not only for talking and sending messages , but alsof for enjoying music , taking fhotos and getting information . But we should n't forget that talking face to face is a better way to undersatand each other deeply than using mobile phones to communicate with others There is a bamboo thiket around my house . Aan bamboo sprouts come out during spring . Yesteday I also went to sleep at 4a . I searched for the nobel , `` Christmas Carol `` by Charles Dickens . So I asked the selesclerk , `` Do you have ' Cristmas Carol ' here ? `` I found some sentances that are a bit difficult for me . Now , I have n't yet had a good conversation with forign people . I take some supplementals regularly so I thoguht it would be a good time to buy some extra . The pharmercist told me to take them `` theoradically `` . I think , my halth has gotten away somewhere . The first band that I listened to was `` X Japan . `` After that , I listened to `` the GazettE . `` When I watch anime , I like to listen to the oppening songs because sometimes some good artists play the intro . music . A example of this , was when I watched Death Note . I liked the very first oppening and ending song a little bit , but when I listened to the second opening , The music was from : Maximun the Hormone . New tryings for learning English I 'll try to write in English dialy for the next 2 months . Sooner or later , a super earthquake and tidal wave is coming to Japan with a smile , to give poor Japanese a presious lesson . We have to stop the Hamaoka nuclear power plant as soon as possible , or we will have to see a very beautiful but harmlful fireworks again in the next 20 years . Tydying up ! It 's so flustrating ! This tragedic disaster reminds us of the preciousness of daily life . Today I have come to Seatle for business . I want to go to `` the first starbacks `` , if I have enough time . Any unclaimed or unlabeled dishes , culture wells and bottles will be thrown out when I see them . I have a lot of homework now , but I do n't have enourh time to do my homework . the band 's name is `` flower trevelin band `` We gave her a raincort and rain rainboots . she was supprised and cring beacuse she had been living I saw them for the secound time , in the summer at Summer Sonic 2010 in Tokyo ! My will was weak against the allure of alchohol ? I think alchohol is kind of drug similar to as tobaco . In addition , I always regret dinking too much next morning . I know several people dislike the use of code - swithching . I think that talking with sby is a good way to know and understand each other . I had dinner at Matsunosuke , which is a neighbor restaurant . I want to be a high school teather . When I was a high school stuent , I disliked sience . So , I want to tell them that `` sience is very interesting ! ! `` . I am not used to wrighting English , so these sentences have some mistakes . In order to opt out of the urban congetion during Christmas , If I can communicate in English , I could know more about wouderful sights It might have spun too ( storong / quickly ) . I have a handy electorical remover for clothes pills that I used this morning . I got a call about his death on Monday and dushed to his home . PL means a plivate lesson . Next week , I 'm going to take a plivate lesson for the Eiken interview . For 1st gread . . . . . I 'm studing English My husband cooked `` gyuhniku ( Ausie ? My name is abdullah and I 'm from kuwait . I studied at kuwait university for just one term and then left because I 'm not good at English . I have to be good at english , so I went to New Zealand to study the english languge because it is a very nice cauntry . I find many lovely people here , and I love nz so much and I feel very comfortabel in this country . my winnter holiday has finished There is a culture gap between us and I ca n't express my throught as fluently as they do . I think Accouting is neccesary in our lives . I hope todo work for abig company such as SamgSung . SamgSung is the biggiest company to comeout of Korea . And I hope I will be afamous cerebity out inthe world . I think my strenth aresuitable for theMarketing field . I have been trying to learn English so I came to Souht Africa 8 months ago . Today was truely a hard day for me . After noticing Oni , children begin to throw soybeans against Oni saying `` Devil out , Fotune in `` . Then Oni eascape from the house through the windows . We believe these actions can get rid of the bad spilit from our souls and pray that our heath will remain resilient . I do n't know the specific origin of this custom however surelly it has lasted for so many centuries . Also , Japanese knows about grammer I was going to stay at a friend 's home because he wanted to talk about his devorce through the night . I am exitedly wondering how the story will end , but I 'll miss if it comes to an end . My psition is Forward . I am reading a book and I do n't understand something about question - tag It is difficaul to me but before I asked Rosie on MSN so I would like to ask you again . Beforehand , I was so nervous about the lesson with foreign teacher , who was Phillipino . I want to try to have a bussiness topic conversation with another teacher next week . By taking pubilc transportation such as buses and subways instead of driving cars , people could help reduce pollution . I think we should reduce air polltion . We entried in the same year , 2001 . When I entried into my company , I thought I only would work here for 3 or 4 years . and I will put in a lot of effot tomorrow . Lastely , he said it is Japanese AV video that stands for `` adult video `` , which is considered to be pornography . People from foreign countries think of Japanese girlds as self - effacing and demure in my opinion . Why is it that so many Japanese girlds appear on the AV scene , exposing their nakid bodies boldly even if it 's slightly behind the scenes ? But there is a reason why I am working hard recentry . Recently , I have discouvered that my English has improved . After all , it 's totally not enough to have only English as a speciaty . During this time I have got to know the advantages and disadvantages of live online teaching and have developed my own tequnics to offer my students the best online German lesson . Healthcare system managed by the government can , to a large extent , avoid inequal treatment among patrients and lessen the gap between the poor and rich . On the other hand there is enormous impirical evidence that private hospitals do not have to be inequal or useless to have a negative effect . Fortunetely he is still alive somehow . potencial players and they have feasibility to win next season . My doughters were so glad to look at it . Takoyaki is a type of Japanese jank food . Japanese tasete seems to taste too light for him . `` You do n't have to study Chinese because I want to keep my conversations securet `` . Therefoer I 've given up on studying it , and now I 'm studying English . The animae is just ordinary at first but it become awesome later on . 86 % of those who have a executive car are not a millionare . Four out of ten millionares enjoy drinking wine under ten dollars . It is similiar to his past book . After he finished investigating the millionare who have more than a million dollars in net assets except for their house , he tells that millionares who have a house worth under three hundred thousand are worth three times more than the millionare who have a house worth over a million dollars . 40 % of the millionares drink cheaper wine , under ten dallar . One is kind of selfih , another is very nice , She will leave here soon . Basically , I dont expect much and I would be fine as long as I have lady friedns that I want to talk with . I ca n't belive this news . It 's because I 'm now learnig french , and I often read ' rurubu ' whith is a very famous journal magazine in Japan . The wheather is cool today . I hope the wheather can be warm , but not hot . My face , neck and legs got sunburnt when I came back home . Fortunatuly , I had both a Japanese motorcycle and car license . PPoor people are using motorcycles in that hopeless and shitty island . I already have a Japanese motorcycle liense , but I have to pass the test in English . this moring I got up at 6 : 30 . I love going to the museum and aqualium . * picture of fake cekes This is Cranbery Walnuts Cookies . For example , there is this super genious kid . It 's interestig to correct others ' writing and have mine corrected . It is rare to find people who can speack Frech well . What a wanderful day ! In spite of my passion toward English , there is no improvement in my writting in English . It is hard for a beginer to study by himself . I came back to my hometown from my groundmother 's house in Yamaguchi . I want to be an expart in nurtrition . But before I saw the mountain of KandWonDo , I did n't think like that . I can feel the strongness and spirit of the painting in the KangWonDo 's mountain too . I wonder if I can skipp it . . . My first impression of the city was that it was absolutelly multi - cultural . For example , we visited Chenese temples and Islamic mospue in one day . And if we wanted to see wild animals at night , we could join a night ture . Actually , even my university ( which is not as big as Kyoto univ . ) has many Muslims , in my labolatory too , and I wondered what do they eat in the cafeteria . To understand religion , it will be a good oppotunity ^ ^ Though my boss says that I can go to Swithland next week for a business trip , if your friend goes , you must want to go soon , too . I am starting to write my English dialy . I want to comunicate with my collegions , but my English is poor . So I 'll try to write dialy . The boys have to play very hard from the first minute and try to squeeze in a gol . I meet a nightbird netpel . The ULR below is the message . Flitzer from Munbai We have been expecting you to be in Munbai with Kazuya . you should do everything possible to visit us in Munbai . Thnak you and have a nice time ! Many ads and commercials do give important information about products ; however , some of tem are merely misleading and deceptive . That 's to say this sentance : Many ads and commercials do give important information about products , however , some of tem are merely misleading and deceptive . Question : Can we change the sentance into : I startet work at 1pm . From the very beginning I was in a lot of stress because the guests were just flowding in . And at 3pm the chef ( or cook ) told me tath our cold kitchen cook would be leaving on Wednesday . . . . The airline company I took launced a new check - in system , intended to increase effectiveness and efficiency of check - in procedures . I Beg a Cat 's perdon I think it is good to heve a better relashinship with a human . I whoud be free ; ) The merit of the smorking habit `` Smorking results only in death . I love smorking a lot . Smorking gives me time to rest . Smorking allows me to communicate with other people who smoke . We are criticized by non smorking people , Certainly there are many bad mannered smorkers . and smork in the areas where we are forbidden to smork . I want to protect the culture of smorking from such bad people . I went to dinner wth my wife and aunt . It tasetes like Miso soup and was a little too hot for me . I really want to be a bereaucracy , so I had searched for a good teacher . Therefore I dicided to enroll in this school . I 'm 17 years old and I am going to university this autumu , but my mother continues to treat me as a seven - year - old . Hope you can get out of this troble . but I persevere in my studies to enter the univercity . I 'm going to study Japanese history at the univercity . Also , I 'm intrested in music . Sharing thoughts , opinions and my photos with my close friends is really fun and intresting . After I pratice writing on my blog , I want to become a good writer . Tomorrow , I will get up at 8 and in the afternoon I will go to hith school and watch the girls soccer game . But unfortunatelly my wife dislike insects . My husbant 's mother made sweet potatoes last autumn . This is my first - time writting on this web site . = = = Plese correct this = = = Today I caought a cold and had a little bit of a fever . I feel so grateful for their nurturance . I go to elementa school with my best friend , I hope our friendsip will lasd foreve So I 'm going to save electricity as much as plssible for now . I went to a pictorial show titled `` The bridge of frendship between Turkey and Japan `` . Most paintings used bright coler . I thught it was a good idea to hold a show like this . One day he recerived a telegram from a reporter he had sent to a neighboring city . This friday is final clases ! ! ! ! ! Most christians go to church on wednesdays in korean . I love speaking English , but I need to practice the patterns of Englisg sentenses . I have registed as a member here for a long time . my favirit song . things to do , but I shoud do them next week . I 'm looking foward to going to a concert ! When it comes to a finacial or economic matter that I have to study , I just want to committ suicide . Anything involed family matters can be very complicated in real life . I eate curry earlier tonight . It takes 30 minits to get to my workplace from my house . So please correct my setences . Today , I got up at 6 : 30 in order to practice tha bass . It is so hard to spend enogh time doing all I have to do . 1 . I thought , `` I want to study English and I want to speak to many peple `` . To tell the trurth , I hate commuter trains . I believe they are going back home from their offie . It was is the owtumn colors - the season now . Each of the Japanese cakes was a lovery shape and coloful , but 800 yen was rxpensive , I thought . I said , `` plase sell me this singly ? `` The saleslady said , `` of couse . `` I was n't laughing ; I am a high scool student . I went to the libary , made libary card . But , good at dancing and playing the guiter and fashinable ! ! I like English very muvh . English brings me nwe life . I went to Austrelia to study English for a few weeks when I was high a school student , but my English was very very very poor ( ( + _ + ) ) ! ! I was frustraed but I really want to be good at English , because my time in Australia was very fun and exciting , so I thought I 'd like to go again ! ! ! I could speak and understand only a few words or sentences , but I became happy when I understnd what they said or they understood what I said , even though it was jast a few phrases . Yestarday , I wanted to see some news , and I saw some people said the world will end . I did n't believe it , I think those people are very chirldish , they do n't know everything about the future , and just sprak what they think . Which is the most appopriate way to express my gratitude among the following ? It 's easer to write on than my Android . Its action and music were good , but main charactor 's acting and the story were not . The movie just took the charactors ' names and the power of the main charactor but not the story . The swet wo n't stop . I was allowded to go to another country for 3 weeks as a holiday after I finished my frist year . I have decided to try reading only in English for about a mounth or maybe longer . So I desided to read children 's and young - adult 's literature for a while . Tosay , I looked up a word in the dictionary , but what does it mean in English ? I usualy go to my English class by bicycle . This book is writtten for a studen in an easy story . We can acquire the skil of logical thinking , collecting information , judgie , decision and excution through this book . I think Philates is good exercise for a healthy body . I cleaned my room and it comed a beautiful room . Because I 'm a Japanese , she maybe nurvous . I 'm ging to go to Tokyo on a school trip . I went to Ajinomoto stadiam to dance . Afeter the game I went to dinner with my friends . `` Katu curry `` made by my father My father cooked curry with `` Katu `` . `` Katu `` is a fried pork cutlet coated with breadcrumbs . It is verry delicious ! I want to meke curry like father does . I 'm really sllepy right now ! ! I 'm going to visit Hawai in May I 'm going to visit Hawai in May . I quit my job two manths ago . Therefore , I guess our company recognized her skill and actual achivement and offered an extention . This test has 200 questions . ( 100 is Listning section and 100 is Reading section ) Yesterday , I had a sore thoroat and a cold . This morning , I felt much better and refleshed . My Japanese teacher gave me many articles and asked me to thanslate them into Chinese . And I have some words and sentences that I do n't disunderstanded . You can view updates about the earthquke in Japan from the URL below . today my cousins and I went to `` wuxue `` to gaher peaches I think that his is earier than mine ! ! ! I am not the only person to have suffered from a cough , running norse , sore throat and general bad feelings . There is a cold circulating aound this area , is n't there ? My yonger brother turned 20 years old and he will go to the Coming of Age Ceremony next January . My English skill is inferior to this skill of ohter students of my university . and I practice the guiter by myself . I love music and listen to vorious kinds of it . I do n't know that I can contenew to write on this site untill then , because I 'm not good at English and I sometimese negrect it 's studies . I not noly learned a lot from the work but also made a lot of good friends . My favolite singers areYUKI , RADWIMPS , and Jason Mraz . this afteroon , my boss told us to work during srping festival . This mornnig I had a seminar on the Department of Foreign Trade instead of working in the office . The main point for this saminar is document export . Ryoma lived in the Meiji Rra in Japan . convenient : My house is located in a convinient place . wrods . When I was in a high school , I studied a few subject that I was n't particularly a fan of , but it was compulsery . I 'd been thinking that I would have found a way possibly to hacket it and get myself video games on there Becouse , I do n't like vegetable . I am not sure if this site is based upon some applications such as joomla , drupal , or develped independantly . . . The first book I read this yers was `` Water for Elephants `` by Sara Gruen . Time flew by so quikly , during this time , many of them have gotten married . I met Iidabasji in Tokyo . I 'll try dinner at Iidabashu from now on ! She said `` The doctor told me not able to have an operation , so treate with irradiation `` I really want to improve my English writting skills . In addition , this also aplly to onomatoponia . And I think this is true for other launguages . What kind of education have foreign people had ? ( especaially in their primary school days ) Althought we do have some good sightseeing places such as a great view of the shore , and clear atomosphered mountains . Not many visitors visit our city due to poor transportation . To promote our town 's good areas , I would like to be a tuor guide so visitors can come and know our town 's good points . I would like to be a tuor guide not only for job but also for my own benefit . I do n't have somthing to wirte . But I do n't have somthing to wirte . The most important topic for me is their daily schedual . My farst diary . please revise my sentence But , if I have been playing sports , the pein eases up . Cuz 's boring . American , British , Eest courst , West courst , etc A journalist asked his Japanese colleuage But I do n't have enough vocaburary to speak fluently . Their pronuctiation are so clear and not fast . My pronunciation is n't your bussiness ! Thanks Lang - 8 and my correcters . I ca n't stop writting them easily . What I want to write is that I want to speak `` Diseny movie 's English `` I am a high scool first - year student . My scool is located in Saitama in Japan . But my scool is in a country . My faverite writers are Miyuki Myabe and Hiro Arikawa . Spring vacation starts from tommorow . I love travle , music , sports , writing and so Yesteday night my father told me that he wants me to be a solider while I 'm at college . When I was young I thought that soliders should be the greatest and kindest men in the world , and my dream was to become a solider when I grew up . But for now , I have to think about my future . Maybe being a solideris would not be me , for I 'm a college student and it 's an imortant time for me to learn skills to adapt the social world . If I enter the army , I might not be able to learn as much as I would like . That 's really a big problem now ; I think I wo n't be able to fall aslep tonight . When we met Shirley and Brianna after haveng had dinner with Shinae , we needed another ticker for Lucas . Shirley and Brianna worried about me and gave me some advice about being an excahnge student in missisipi . Therefore when you vaccinate , you have to consider the timing of each vaccinattion . Perhaps you have problems when you are writtin in Spanish because you do n't know about the accent rules ! I also watched `` Lost `` which is an american TV series . I want to be a taranslater ! Now I 'm studying English to be a translater . I have some questions about & nbsp ; the sitcome Friends You can enjoy beautiful sights there , for example , World herritage Sites ( Have you ever heard of Kinkaku or Ginkaku ? ) , and colored leaves in mountains , fresh air , and things like that . demand - Our teacher demanded that we have to finish the report whihin a week . I have to put up with the noise the fireworks make evey beginning of the year . Do earthquakes somethimes occur in your country ? Why do you think people attend college or univeristy ? The specialites of those majors are that students can learn a lot of informations that are required for jobs during the college curriculum . Thus , I believe that people attend college or univeristy to prepare for occupasion . It is just what I thought after waching movies and television . According the show , now foreigners do n't come to Japan so many sightseeng spots have few visitors . Gift shops , hotels , and any other companies that serve visiters ca n't do bussiness as before the earthquack , tsunami , and powerplant problems . Do n't worry about comming to Japan . 29th April to 8th May are holidays called `` gorlden week `` . I could not communicate with classmates fruently . . . Writing a daily note on this site is my first step to achive my goal . Japan became the chammpion of Asia . ! Conglaturation ! I wuold like to know the contidion , payment period and etc . I wuold be interested to get all this information . Thursday : I 'll have a test about grammer in French and a test about the constitution of Japan . He invented the altermating current ( AC ) , wireless , X - ray , the Tesla coil , Radar , the Tesla turbine , Ratio - control underwater robot , etc . He could even rip the Earth into two parts by using his little osciilator . Nikola Tesla is too greate . I have been studying `` Desktation `` lesson , but I can hardly hear the computer 's voice pretty hard XD ) , it would be very helpfull if some of you native English speakers out there , could give me a hand . I like to play guitar ( ibanez gio jeje ) , I play a lot of Super Street Fighter 4 on my brother 's Playstation 3 and I consider myself to be a geek ' ' wannabe ' ' because of the nature of the carrer I have chosen ( it 's IT based engineering ) . I 'm so dipressed . African American people passing by threw a plastic bottle at me , I lost my luggage the first day , and many people in Ohio mistook me for a gay boy because Japanese are more fasionable than others . It is an incredible souvenior for me . And , I will give you a souvenior . It 's also a chance to get red developes hehe . I went to the Garden Museum in Megro Tokyo last weekend . I registerd to lang - 8 because I am hoping to make progress with my English . I have much / a lot of infomation about this because I 'm living in Japan ! I bought a book written by Kenzabro Oe , and another one about decoding about Kant ` s pilosophy . In each contries , I had a very pleasurable time . However , I did n't speak English well and I missed opptunities to interact with people . ( redundant ) The hotel , where I went with my family to take a hot spring over 10 years ago , has already been turned into a luxuary hotel . Faced with an unknow future , I feel a little nervous . Here are two good chinese noodle shops that Sugi recomended . Dangerous abstruction I think I remembered abou 200 words in these 2 weeks . There are many meido cafes in Akihabra , Japan . Everybody was suprised that the US president , Barack Obama , recieved the Nobel Peace Prize because he had not shown any results yet . Fruit , vegetables , milk , chiken , and ingredients for a pasta dish like anchovy , dried tomatoes and dried mushrooms . So to enjyo the videotape , which I purchesed long time ago , My choice yeaterday was TENDON . My story hs been recommended to the chief editor ! I was still tired , even though I slept loger . This is just one of the things that make me ttired ) Most of the offices are closed satuaday and Sunday . I feel their music is associated with southern rock like Lynyrd Skynyrd , even though ther are young . But inJapan his blond hair , blue eyes and English are his superpowers , blinding womene who would normally never give him a second look . Today , my freind asked me about that . But my freind was not sure what the teacher said . Then I asked the same question to my daugter ( she is 7years old , ) and she answerd me , `` Criss cross apple sauce , `` Wow ! I tansefer the fee in the convinience store today , so the day I can get it is probably Thursday . It is difficult to move in parfect darkness . I was surprized athow fragrant the wine in the darkness is . That 's a strange feeling to unexplain . My frist diary I hope I will continus to write diaries in English , so my English can advencement . hi everone My Chinese is good , if you want to stady Chinese , I can help you . I come from China , and now I live in Japan as an exchang But I tried to write somthing as fast as possible even though it is short or borring . True story - A white horse jumped over a tower and landed on a priest who immediately dissapeared from the landscape , Where did this take place ? I was alonein the kitchin . She was smilling . Petersburg it 's difficult to cope with such wheather . I do n't know his nik - - he said it 's private . It is because I ca n't dry my laundly well and go swimming . Anyway , I hope that I can take 1 week of summer vacation and go on a trip to Melacca ( OR Melaka ) in Malaysia . So I pulled out of the conpetition . In this highly attuned state , the Buddha saw a way to escape the inevitable cycle of old age , sickness and deat . Taylor was a mechanical thechnician in America . He was calld the father of scientific management , and he laied the groundwork of modern business administration . American management was develped by businesmen and management consultants , while on the other hand , German management was developed by a professor . Japan adopted the German management system befor the war , but it later began adopting the American management system after the war . Apple uses the American management system , of cource . Today , I went to see a performence of comic dialogue , hip - pop & Jake Camp , of which all the actors were born after the 1980 's . The sentences , phrases and words are filled with his affection for children and nature and he expresses himself so beautifully that I was filled with romantic feelings and was able to imagine each secen clearly . On long vacations , she gose to foreign countries . Exsample `` eingang `` - enterance , `` ausgang `` - exit . Casio 's are more expensive than other manumacturer 's , but its quality is better than others . But the keybord made by with rubber matelial that has no click feeling , that I do n't like this . To summerize , we humans used to hunt and gather food . The Side Effect of Our Generation in the compiting Society . This may be the side effect of the rough competiting society we are in now . Many people simply think that failuers are lazy and they just do n't want to work . In general , failuers , defined that way by society , lack many things that successful peopledo n't . In this harsh environement , to keep with the idea of equality , I am recalling something someone once said to me . It 's good for relacks and sleep . So , the recomend time to drink Camomile tea is before you go to bed . Over two weeks , we 've studied ' Hiragana ' and ' gatakana ' , which are like Japanese alpabets . I 've already found it really hard but I studied the things we worked on in class today for two hours by myself and if I study Japanese continually , I believe that one day I will be albe to write a diary on here in Japanese and be able to speak it ! Every word is pronounced to improve your listenig and pronunciation , and for memorizing , you can learn by three ways , first , by choosing the correct answer out of the three Japanese meanings , second , from three English spellings , finally , choosing the alphabets for the correct English spelling . I 'm happy to find such a usefle ( ? ) SNS . but I 've never found a sutable website or space to improve my writing skill . I was born in Xi ' an which is widely known as one of the oldest cities around the world , as many as 13 dynesties chose Xi ' an as the capital city , which maks me proud . Just several decades ago , rivers were completely availiable for swimming and fishing . Now if I am qualified to change one thing here , I would love to chang the enviroment here . Xi ' an had experienced a really rapid industrial development during last 30 years . People 's meterial demand have been highly satisfied . Nowadays , when people do n't have to worry about their livelihood , they unanimously find the enviroment here is much worse than they have imagined . We have extremly hot summer , unbearable winter , dusty spring and gloomy autumn . Currently if we keep doing this , undoubtfully this city will be turned into a place where no longer suitable for people to live , sequntially economic achievements will vanish into the air . Once I 'm fortunate enough to be qualified to change enviroment here , shutting unefficient factories , pouring money into improving air and water quality , vigorously encouraging enviroment conservative companies , cultivating enviromental conscience among youngsters will firstly be done . I knew thier host family has some problems , like they never clearn their rooms , host mother does n't work , does n't pay for the bills , and she asked themfor some money to buy food , and so on . I hope they will have new fost family soon , they should be more energic , otherwise they might suffer a loss . But today at dinner , she praised the cake , whtch I made , she asked me did I make this cake ? 6 Please send the report to the directors , and they will deak with it You have to do something youself . Bagk problem Japan has been tackling an unprecidented tripple desaster ; erathquake , tunami , and nuclear radiation leakage . So , I was very dispointed . Since I want you to know more avout Japan than you do now , I will post two movies about Japan . I hope I have collegues soon . I have no confidense in speaking and writing in English . I did n't know / realize that starting kindergerten required so much preparation . All of the things handmade by her , exept the lunch box ! Actualy , she is a skilled / talented lady and is good at sewing and cooking , but when she doues it for her daughter , suddenly she becames a perfectionist and this causes her to suffer . Pleased to meeet you I 'm from Japane : ) I am poor at Engrish . My senior left the comany . We had a party in a Chinese Restraurant . I like this cultre . I tried to rememeber what I ate yesterday . I figured out that is was motshnabe that made me smell bad . Motshnabe is a famous food in the Fukuoka prefucture and is made with a lot of garlic . Even though it is clear that writing grammertically correct sentences is very difficult , it 's necessary to communicate freely in English . yesterday ( 18th ) was my birthday so many friends sen me conglaturatory messages , and my father bought me a chocolate cake . I searched a dictionary too much times and had difficult tranlating my idea from Korean into English sentences . Is n't it difficult to understand what this sentense means ? 4 years ago , I was suprized to hear a phone call of about the twin 's news . I am a docter . I got a haidache when we came home . B : That 's why I always keep my eyes and ears opening for other oppotunities . I wrote down this dialouge as I listened , from an Englsh - speaking radio program . After eating breakfirst I saw the movie ' Lord of the Rings : The Fellowship of the Ring ' . Today we talked about his developement plan for the coming year . He reminds me of when I was a new employee , and I hope he wii work very hard and be happy at his job . I want to eat something that my mather makes . It turns out that wizards like Ron and Hermione , who are Harry 's best friends , are everywhere throuout the world , not just in the UK . That kind of terrible feeling is too complicated to be descriced in words . However , after crying , I calmed down and began to thik it over . The Sminor 's subject was ' ' How to be Popular ' ' ! ! Correction and / or better writting expressions are required ! ! ( 6 ) Moreover , I could connect to the internet for free via wireless connection , which allowed me to search for the latest research developped in the world . My faher missed my kids . I told my classmate that my teacher told me not to hand in letters again because I already handed in a lot of them and got verry good grades on them . Thank you for visitting my page today . so I was planning to go to high school of America after I guraduated junior high school . ' Cause I felt that English is too defficult for me . Hollo everyone , nice to meet you ! I 've got a working holliday visa , and I 'll go to hokkaidou , Japan next month . Because I was be able to know about theier countries and languages . It is so woderful ! ! ! ! It 's such a cute site and it 's really a surpise for me ! Today I received a notification that rich ricognised me as a friend on lang - 8 . I mean , I hope someone could corect my bad English . Before the Tohoku earthquake and the Pacific Rim tsunami happened , I owned it . But after the radiation leak from the atomic power plants in Hukushima happened , I bought a special umbrella . Because I must not get the umbrella wet with rain that contains radiation from the nuclear plants . I hope thet I go to Matushima and Miyajima someday . It 's like when visiting a Japanese restaurant in Eurrope . The foods there tastes like Japanese food , but there 's always be somthing that holds me back from calling it ' Japanese food ' . Maybe it 's because the ingredients are not really the same even when I 'm following the exact recipe from a website or a cook - book . Onions available in Japane are not the same as the ones in ( from ) Spain , of - course . My dishes are surely paella in a sence as recipe - book saids so . Am I making sence ? ) nowdays I only sleep . The writher ( author ) of this book is dead . One cold winter day , she arraived in London with her father . There was servant named Beckey in the school . I 'd like to go to the UK to study Englad Cluture . Their music and the bar 's atomosphere was amazing ! But I missed the last train . . . I want to soleve environmental problems all over the world . Actually Kobe was an arban city and had beautiful scenery . I wanted to breathe in crean air and see a lot of beautiful nature . Fortunatly I have known and experisenced the beauty of nature . I want to change this situation and save the futures of the chirdren of & nbsp ; Vietman . I want to save youand your chirdren 's earth . If opportunites arise , please help us . There are many young people who went to Tokyo from theire country for theire stadies in college , theire work , theire big dreams , or just theire longing for the big city . My goal of learing English is to be able to use English without difficulty to communicate with people around the world with different cultural backgrounds . I enjoy Univercity life everyday ! There is English class in my univercity everyday . I wanted to study english when I entered a univercity so I 'm very happy . A way for us to help eachother other Some of them looked at the business hours sign but did n't cathc the small words on the top saying they were closed . Since the begininng of the semester , all my concentration was on her . It 's very hard to descripte her looks ( or appearance ) . I heard this movie wasmade by the director of `` Harry Poter `` ! Concerning the scale , it was n't great as `` Harry Poter `` . He could n't overlook that I seemed to have changed my identity and lost my pride in beeing Japanese . So neext day , I had my hair cut really short , and dyed it black . Beyond that , I could only tell him `` Thank you for everyghing , everyghing you have given me . `` And I left his house with saying `` See you later `` . So I decided to try to take more oppotunities to tell my friedns , my jouniors and you who is reading my diary , what I learned until now . I should never disgrace his honor . I like Japanese cartoons , novels , riding on a byscle , hiking and snowboarding . One of my classmates from college already got married last year . I feel a little surprised becase it 's only been two years since graduation and it 's possible that their finacial condition is not good enough for raising a family . But maybe my thinking is wrong . Each couple that decides to marry has probably already thought it through to have finaly made such a hard decision . After getting married , they might have many problems that before could not have been imagined . Sometimes it will be difficult to get through it , but if two people love each other enough , they will finally solve the problem . But everytime time this thought comes to my mind , I realize I would do just the same thing as them . I found a nice restrant . I orded a poached salmon salad . I said `` Wow ! `` I was so excieting . but I am just courious about it ^ _ ^ I 'm going to attend some trainning courses on human resources so that I can enhance my competitiveness . All women were to wear black doress and men were to wear black & white attire , so it was a very goreous atmosphere ! ( Additionaly the company staff gave each guest a mini chocorate fondue machine . ) The main ivent was lacky draw ! ! While I did n't get it , I got a travel chicket and a desital camera ! To be honest , I ca n't espress clearly what it is that I expect . We need expectation in our life , without expectation life will become broing , without expectation life will have a lack of motivation . I believe that when learing a lanuage , listening skills are required before you can speak it . You may see great improvementy in your English abilities . Is it a diary ? Ya , I should menton something about myself ! I had a little confidence in my ability , so it 's really regretable that I ca n't take that job . Chelly Blossoms are so beautiful . She could n't speak Japanese when she came to Japan 5 years ago but now it is diffirence . Going out into the world and earning money is a neccesary part of being an adult . It 's the third time they are lucky becouse they wiped up 2004 and 2010 . These adult - only images may cause sadistic impluse which are definitly not suitable for teenagers . I can not remeber words which are too long . This is because she fell from her bike and hitted her head on the concreat and she Because she had hitted her head , she did n't understand me . Since I need to use my English for my job , and my boss scolds me about my poor English oftenly . I watched Transformers on TV , washed clothes , ate maccha icesreem , and masterXXXted , lol joking . I wanna ( want to ) try to learn englisch on this site : ) It will be bettore for me if somebody give me a title so I can write another post . I feel a little nevers , but I think what I should do now is to make myself prettier , that will give me confidence . Furthermore , I will introduce our culture to you if you have any interest in Korean cultuers . I hope we can becaom a good friends . Have a nice weeken ! ! The weather is pretty unusal . It 's hot in the daytime but very cool in the nighttime . But I liked it though . I realy wanted to buy new clothes ! ! My current aim is acquiring a MBA degree at a foeign University in Japan , for example Mcgill and Bond . I want to do business grobally , I think . Thinking in the posivetive way , most my time will go to studying and activities . Should I get married and have a family , raise a child or find happinese in my daily life as my friends look so happy I am in a dillema . I 'm not relaxed yet , but I am writing in my dialy because I have some free time . I retired early at the age of 56 after 33 year 's as an electlic engneer . Since then I have beem studying English at an ISS school , an English school in Japan . and prepare dfor the next appointment . Kuta beach is famous for beginer surfers . I am beginer surfer , However , when I went to Kuta beach to surf , the waves were too big ! Her mather - in - law and husband were very worried about the effects of nuclear radiation on the baby , so she came to her husband 's parents ' house in Osaka with her baby . However , she feels unconfortable staying with her mother - in - law every day even though her mother - in - law is very kind . I heard that the best way to learn Enlish is to keep a daiary in English . So , I will keep a daiary here . For that reasone , I want to learn English and make a lot of progress with it ! ! I stopped studyng English when I started working . It still concernd me for 10 years , because my company is planning to do bisiness in the Asian market . I heard that homestay family is very important to improve Enlgish . I have started stading English recently . Today , I worked at my part - time job and afterwards , I went to the beauty salon and went to a book store to seach for information about Taiwan . kimch party The kimch his mother made was very delicious . I wanted to eat many dishes he made with that kimch , but I could n't eat them because I got drunk yesterday and got a hangover . ( T _ T ; I can change my image , and look betther than bofore . I went to the nigth shift , I got up at 7p . m . Becaue of my nuesing job , I have to do this ( - _ - ) zzz I was unstoptable with my friends ' advice . I do n't know perfume well , but I think Europian have a better sence for perfume than Japanese people . It becaue our noses are flat ? My cousin 's hasband 's ancestor was a Viking ! I want to stady English more and more . So , I want to have a strong hert . * Collor : There are yellow , green even purple ( ? ) tomatos which look like green peppers and they did not tast sweet . I liked tomato honey very much it smelled like tomatos and tast mild . What is the difference between `` anytime `` and `` whenerver `` and , `` anything `` and `` whatever `` ? > > Please ask me ( anyting or whatever ) you want if you have questions . The downard spiral has continued this year . When it was about eleven o ' clock , I went to the canteen and enjoyed myn lunch . We were supposed to have some kind of debate on multi - national - corparation , as either a supporter or an opponent . Our teacher was a bit embarrassed so he sometimes helpt us to get to the point . I felt terribly bored and tired so I did n't listen to the teacher ao lot . My knowleadge of English is very weak . Becuse we had no classes today . So now , I found it 's harder and harder to expess myself in English . My mom said , during the summer holiday , you can get woork and at work you communicate with peopel in English as much as possible which is why I should try to improve my English ! Which I think will be a nice experience . skillful peopel , I ranked 4th in the end ! Very excited , is n't it ? We orderd one corses which included some meat , fish , the other stuff . The story was too complecated to understand for children . I don ` t think these are synonims , but I can ` t feel in what situation which word I should use I want to express my thoughts in English better , make less mistakes and get more training , because experiense is the main thing in learning languages and other deals , I think . This town has three absolutely beatiful beaches . It was a rainny day . The United States is the most interesting countly , because it has produced a lot of Internet services that have changed the world . Ability , the States and Internte ; ability , the States and Internte , Yesterday , I also did n't understand English well , so I want to implove my English . These days , I 'm studying for TOIEC test . So , I would like to leare a lot of English grammar and get a good score . Thanks moongaze , for your corrections while I was alway . Our 95 - year - old mother had spent a day at a local day service senter . Very delisious ! I coud n't climb it but it was beautiful . I 'm especiaiiy worried about reading . I 'm searching for the most effective way to buld up my vocabulary . while reading , if you encouner an unknown word , you guess the meaning and read ahead . Even if you do n't fully understand it , it does n't matter becasue you will see the word somewhere else in a different context . With this way , you have to look up in the dicitionary every time you encounter an unknown word . They ca n't read anything without a dictionary because they are begginers . last but not least , you should carefully pick what to read for your vocabulry buliding . Why did my professor decide to schedule it tomorow ? I ca n't understand . I think some couples had troubles from the decition . Tomorrow , I am going to meet up with my frends . The jogging trail was around the Shiemen Resorvior . That is , I always become sleeply after I hear the alarm clock ring , and I lay back in my bed again . Somebody let me know about this tracky thing ! ! ! ! ! ! ! ! I was so up with reading wrapped up in a book and listening to music at full blast that I did n't recognise the Asian girl sitting next to me , her face coverd with bad [ rotten ? ] eggs . I want to give them a real roasting if this situation happens agian ! Actually I briefly analyzed the scence of `` Le Papillon `` ~ The little gilr follows an aloof old man to look for an Isabella moth , a kind of moth more beautiful than a butterfly . I moved to Isikawa prefecture , Mie prefecture and Nagoya city in Aichi prefecture on bussiness . I took my second daughter to a pediatritian today . She 's caughing from a cold . A Docter said this is not serious . When it comes to getting old or becoming elderly , most people would avoid images , such as being lonly , or not being able to work the body or brain as before , and having fear of the near death everyday , but truly is n't getting old really a better thing than being young ? ? She is from China , ( born in Beijin , nationality is Chinese . ) but has lived in Japan for over 15 years . But it 's quite difficult now becasue I have a fracture in the right finger . . . : ( Let me intoroducf myself briefly . Anyway my favorite thing is to watch dorama from the US . Yesterday I happend to meet seven friends in a single day . But It 's [ it was ] rany today . We went to a good restaurantm , and had a nice dinner . We had not seen each ohter for such a long time . 73 years ago , the Japanese army killed about 300000 civilians in Ninjing , the city where I live now . But what do we remember ? _ _ Not ethnical enmity but the pain and stupidity of war . I know in not only China but also Japan there are still many people who just remember the ethnical enmity . Is that right to regard the enmity as parriotism ? I want to improve my English skill through Lnag - 8 Now I am determinded to re - read it again , because of my little nephew 's reccommendation and advice which is actually what his teacher said . This morning I checked 1 deail in a part of a drawing and 4 assembly drawings . I felet a little fatigued and left my office . Fristly , it 's safer . In a place where you 're not familar , a friend is very important . You never know what could happen to you if you 're alone . If you travel with company , other people can help you righ away . Traveling alone is more dangerous than traveling with company . If you travel alone whan you make a discovery , you might have no one to share with . I 'm a little nervours and confused . . . Unfortunately , I 'm a smoker and I do n't want the Japanese government to increase the price of cigarret anytime soon . NEW TEATHER he looks like he hated the quiestion . I understand that there are a lot of possobilities to find job , but it 's an awful place to live . We alked and takled a lot . Jay zhou These days when I listen to his songs again and by looking at his lyris , I Some people thinks it is inconveniently when thay do it . We have never won the cahampionship , so we want to win the championship . I washed their gravestones and underwatered the flowers around the stones . This is because I need to do some work for an academic subject , Educational psicology : Institutes and Their Groups . or observing the birds , the fishes , and all the beatiful animals . I make a cup of coffee every evermorning . I saw acters , however , I fogot their names . I feel so happy now when my friends who I knew on lang8 still remerber me and send me an email . Practice writing and listning ? I went to see a doctor as soon as I felt the pain and was told that the mustle had a problem but would recover sooner or later . Many people stop to ride motorbike in this seoson . Although it 's cold , mortorbike cheered up me ! According to an objecter of this strike , my proposed solution is in one important respect actually worse because it involves wrongly coercing all taxpayers , not merely the few military conscripts necessary to fighyt the war . because my dad went to an expensive reestaurant with his collegues ! ! ! ! I orderd a lot of meat , salad , rice , drinks , desserts and many other kind of things . I hope that one day I can study my PhD in America and go sufring again in LA . I hope this is not the beggining of rainy season . I will go to `` Kenji Miyazawa 's `` musium . And delisious foods too . Though I do n't have many law classes , and my law classes are all about bussiness . I ca n't have anything , including warter , but I already forgot this and I have had milk tea . in KUMON school every Tursedays . Boastiful talk I talked about morals and imoral in English with my friends . It was difficult for me , but now I feel realax ; ) He was a quite a gentle Miniature Schnauzer and he gazed at us with his ltwinkle eyes from his cage . It means `` doctor `` in Japanes . But I ca n't write English vely well . Momoko : Is it ture that there 's no food to sell at supermarkets in Tokyo ? I sut down there and thought about my future . But this year , I 'll go to Yakushima , it 's one of the Japan natsural heritage . I 'm a bigginer at singing English songs . This afternoon , I will coach an elementary scholl baseball team . If someone asks me : `` Do you like englishi ? `` Because of my poor English skill , I understood only less than a quater of the English sessions . I 'm reading `` The Lord of the Rings `` in English . I finished reading Chapter 1 . It is intersting but also difficult for me to understand the Enlgish . Hello ! ! ! ! Everybady ! I used to be a system engieer , but I sometimes got a headache . Today , I studied anceient Japanese culuture in Japanese History calss . For example , in Nara , thre is a beautiful mountain called Miwa mountain . I 'm an elementary school teacher in South Korea , and I really want to speak english fruently . I was given a cold sholder ; ( , I have been off since Fryday , and spent most of the time at home making a precise itinerary for Italy and packing my luggeage . For the time being , I ca n't study enoght English and can only use this PC at the lobby so I may be making a lot of mistakes . sorryyyyyyy . That is to say , crane have a aupicious meaning for Japanese . Learing French . My teacher is Taiwanese , but she only speaks to us in French in order to make us adjuct to the speed and the accent of the French language . I found that English and French are a little similar , like the spelling and some pronouciation , so while we are taking the class , we always guess what the word means according to our English ability . Herering or listening working student , studing at the art and I enjoy thingking of new ways to improve the life of people and make us human humanbeings I want to try performing Rakugo in English , and tell people from overseas about the Japanese sense of humore in the near future ! ! I 'm going to go to Indonesia in next March , because of the transfer held by the a campany I work for . I 've already stadied English in high school . Now I 'm confused , since I 'm studing the Indonesian language and English at the same time . Because nowadays , Korean students and Japanese students tend to be totally separate according to thier own nationality groups . Anyway , I have recoverd from this sickness . Some place whithin my heart It 's like a shining diamon , the diamon is still in the box , I 'm provably making some mistaks since I am ignorant about this site . On the first day , I went to sea that is Kujukuri beach with my froends . Actually , I was supposed to play volleyball before ber garden . Summer vacation in this yaer was so much fun and very fulfill for me ! ! who 's gone aborad for about a month . ( singular ) It is important to understand the cultural difference . For example , how people handle things as they are faced with difficulities . I belive that we need to establish certain trustworthy relations for each other . Did we put too much puressre on him ? Tomorrow I have an examination in English glamer . gramer practice This is a very valueble memory for me . fortunately , a car my collague drove stopped and he / she called me . so I apoligized to my boss . I 'm currently enrolled in an English program in which I can talk to pollipinos who are students or graduates from the University of the phillipine . Ok , well , I decided to write my weekly journal in English as the writting teacher `` recomended `` . Each member indroduce themselves . The reasin why I havent ` t used it is that I didnt ` t know the system . Well , I stated to play trumept about 10 years ago , , , , ( so long . . . It 's probably because I broke up with my boyfreind , or because I am tired of my part time job . I want to get a foreign boyfreind , so I can learn English from him . I have nerver been in the company of foreigners , so lately I am attracted to them . at first , we played games in order to develope our sense of team - work . it is difficult to climb over it by oneself , so we firstly had two boys help the girls climb over it and then the boys helped each other to climb over , but there was still one boy left who had to climb over it hinself . after the games , we had a babecue . I love watching movies and learing languages so I will post it that relate with my interest later . Today I was late to work again . I was 1 minture late . : D Ahhh , I wish Santa will give me a new one on X - Xmans ( Christmas ) . Today we have a complusory course . As I have missed it many times , I ca n't catch up with the teachear . My friend vivted me and we went for a walk together today . We sometimg had the same tea togeter and talked about our dreams . Last week my younger daughter got high fevor , and her doctor said that she had the mumps and that she could n't go kindergarten for about one week . I took three days off , my hasband took one day , and my father visited my house three days driving for one hour to care for her . I was goiing to eat a lot of strawberrys this morning . I could watch it from the harvour bride , so it was spectacular ! ! ( We 'd been waiting for 8 hours to keep a good place ) They really do n't care about the eenvironment . And it 's about the tragedic incident that occurred in 2005 in the Guard Post . It is very cold todey , too . I have to dress up [ today ? ] becouse I have a party ! I 'm so sadand and downhearted . So I stady English by using a `` Nitendo DS `` . Father and I planed to go to my garden every Saterday morning . We also plowed a new field , and scatterd a bag of the fertilizer in the feild . Goodby , then . However , there is a country that allowe kids to drink Is the Japanese 20 year old leagal drinking age appropriate ? I am Nana from Japan , and I have lived in Engldand since this August . I will stay here another ten months . I stdy English in England now , and I want to improve my English skills and I start to use here . She especially liked some sungrasses and took some pictures while wearing them . / / Them = Sunglasses . We can buy various foods in Austraria . Of cource , I can do it . The purpose of my taking part in this site is to advance my skill of writting in English . If there are any mistakes or strange explessions in my sentence , please correct them . From mornig to midnight , I did experiments , and then went home the next day . I am trying to make some software with my friends durling our spring vacation . My team has 6 peaple . But now , when I closed the book , `` The Autobiography of KFL `` I knew the truth taht the music was trying to tell me : MAKE A DIFFERECE . writen by Robert Lee Frost Today I found this poem by chance , then became inspired from it , so I qoute it here . There are many chances to study Engish in Japan . I almost never go out duaring the daytime , so I do n't get used to the heat . So I am thinking it would be more efficient if this company focusd on instilling love for the company in our minds . I arrived the platform , and a train came , but I couldo n't get on because of too many people . Suspension does happen sometimes because we play much more than normal players , playingforover 36 hours with two different people might trigger theserver 's auto suspension feature ( automatic detection by blizzard 's programming ) , so being suspended by botting does n't mean we were botting , it means we aresuspected botting . This company built many thermal plants and newclear facilities . Only few elite can enter this comapany . Fukushima newclear plant already belched a certain amount of radiation around there . The main industroy of Fukushima prefecture is FARMING and FISHING . Fishermen and farmers in the Tohoku discrict will definitely have to shut down their bisinesses . Definitely it is because , the Japanese goverment will not be able to bulid newclear plants any more , and they will have to check existing newclear plants for a long time . On top of that , foold costs / the cost of food will be also rise . The Japanees government must rebuild many destroyed infrustractures , of coures they can do it . Tolong mengoreksi ya . My mom is bustling around the rooms cleaning and doing the lundries . The soothing sunlight comes through the window and cast itself on the floor of the room slightly blindind my eyes . The due date is around Octorber . It might be really funny when my mom ca n't speak English to comunicated with them I had no idea there is such a good wbsite in the world where all language - learners can learn together and make progress . I 've been to quite a few places , especialy in Europe , but it 's not enough yet . I was surprised that there are so many people who are good at Japanese , and I am intrested in how this website works . Excuce me . I want to master the functions of Lang - 8 , and communicate with the menbers . First , Merry Christmas to everybody ! I 'm very gald to take part in this network , but my English skills are weak . Of cours we made an appointment and ate the delicious food . It 's quiet and comportable . My cowoekers are really noce people It was very difficlt for us to find the event . I useually go to church on Sundays . Yesteday I had a suevice at Syonai Ryokuchi Park . varietaly of food which everybody brought . Everyboday was enjoying the tennis and Laxros matches . This park has a very nice cycling cource , so I was cycling there in Though I like thrilling race but I prefer to watch more safty race . It 's a very hard job because I have to pay more attetion compared to other kinds of jobs . It looks like a bistro and is not very formal , so I feel confortable . The other day , I happened to find the answear that they eat ants . Although I 'd already known about the great wirter and his works , It is almost same in China , and surprisingly some schools have taught English since their students entered school in urbun areas such as Beijing and Shanghai . Japanese culture vol . 1 SHUSHI Now SHUSI is a common word all over the world . Various countries create their own SHUSI . SHUSI with avocado was created in USA . It was invented in the Edo priod , about 400 years ago , in Japan . I will eat SHUSI tonaight . : ) But in autumn , the sounds of insects such as crikets , singing crikets or Japanese bell crikets , green tree crikets and so on are very nice . I want to know about your idea about sounds of insects from meny people from many countries . Finally , we are supposed to go to eat sweets at a caffe . We are supposed to go separate at Sinjuku at 11pm after seeing her off . But our family may be considered weird by our neighborhood . Reallity . but sadly it is reallity . aaaaaaaaand I love wacthing the stars . Maybe tommorrow it will continue to go on . I heartly hope that some nuclear facilities that are now at the risk of exploding will safely settle down safely . It 's really nice city and the weither here is cool . This is the first enrty of my diary . I saw a video on YouTube about this site , and I tougth it would be fun , and a chance to improve my English and learn a little Japanese . Because the recipe is too abviously wrong . Of couse my Engilish skills were also part of the reason . But , I heard by accident that she 's been dating somenoe . Lately , China 's weathr has been very strange . My hometown included : last week I never got out at all , because of the heavy rain ! Once I went out to resterant to get lunch ! I can swim a short distance so I ca n't derrupted my prectise ! So , I have a good idea , I can go to the swimming pool next to my home ! my mother and I went to the nearst swimming pool but it 's really terrible , because the pool of water there is durty , I can see many small pieces of dirt in the water ! Japan is famous for its cortoon shows , such as Pokemon , Doraemon , and Dragonball Z . In universities , it 's a common phenonmenon for students to occupy seats . Altgough some people hold different ideas about it , I think that each student should have equitale rights . I need some to help me on my Elish skills . He saied this place is a good way to learn english . But `` twp `` is used in the English subtitles , and in the `` Internet Movie Dtabase `` website `` twp `` is also used . Thanks for readding my diary ! ! I understand this all depends on the exact amount of money . But even if it is just a hundread dollars , I 'd suspect that my friend does n't have the money to solve his problems by himself . But insteed I saw `` Lie to me . `` I liked this movie very much , cause it was very interessting ! ) Maybe it 's unrealistic , but I think it had a wonderful idee ) More than ten years ago , there was a broadcast on the news that the sinario writers of DQ and FF would collaborate together to make a RPG . I saved money and bought that game which title was `` Crono Triger . `` It is said that Crono Triger is the best RPG in RPG histoly . I ofen read a book in the coffee shop . So the book holder is very usefull , It was so usefll that I was impressed . He anwsered that the most important thing is talking to / with each other a lot . But nobodey asked `` Why are you late ? `` since they know about today 's traffic jam . Most of foreigners say that it tast good , too . Coffee bean is more effecter than Coffee Mix when you are on a diet . I 'm so sleeply Someone said his death was beacuse of this film . We turned off all the lights in our dormitory then sat down alarmedly , arm in arm . My husbannd said , `` I need a portable hard disk to fix it . `` Actually , he wanted it befor . I 'm writing my dialy from a mobile phone ( cell phone ) , and I 'm not using a dictionary . Mass media must convey correct imformation . If we believe wrong imformation To everyone who wants to study the Japanese language , I 'm very appreciative if you could review my English and revise as neccesary . John Travolta and Denzel Wasington played the main characters in the movie . The thif had stolen her motorbike . These days English is getting less nessesary for me . I can speak eazy English . My teacher says `` if you do n't know about Japanese tradission , language , culture etc , you wo n't be able to speak other langage `` . Many Japanese people do n't know about their own contry . After beginning his business , he overcame this tendensy . And the nailist is very kind and funny . Jacket potetos I 'm going to Shanghai this summer . I 'm so excited because Shanhai is a big city and will have the Olympics . I may not go to olympics , but I am excited . I think it makes a good conection with Asian countries . But is the high housing price unusual , or is it a natural result of quantiative easing ? As one of my favorite teacher is my good friend , I asked him if I could take group lesson with my Skype friends and at the same time I asked my best Skype friends Zac and Mark if they could talk with me and my teachter . and my philosophy in life is besed on my high school days . ! I want to listen to otehrs before they listen to me , They take care of others before they take care of theirselves . I want to have Jesus 's heart , full of love and copassion . I 'm terrable . What I 'm going to say is just my experience and personal opnions , So even if you can pass the Cambrige English examination , you have to work for a Japanese company at the beginning of living in a foreing country . Of course there are some exeptions ; some foreign companies want to get Japanese speakers . There are some dishonest Japanese recruting agencies in Singapore and Hawaii . I think you are a very careful person , so I do n't think you are going to register with those disgusting recruting agencies . As far as I know , there are some of those kinds of recruting agencies in each country , especially Hawaii . Althoug some problems occur , I can learn from them . Farthermore , traveling abroad alone improves my English ^ ^ Nobady can help conversations so I have to manage to speak English . Anyway , it was tooo cold . I learned from my friends that Lang8 can help my English progess and that someone would modify your post . All children , especially boys like to pretend they are searching for `` big treature `` with their friends . They were very upset about thier fimilies ' situation . This map had information about an old pirate 's treature . The Goonies ( name of their group ) went searching for the treature to help their parents . Becausu I changed my career to a foregin capital company , What prcedure should I take / follow if I want to join ? Today , I went to the New Field to have ( take ) my English speaking class . The class is tought by Robin , who is a funy English Teacher . I 'm very glad that I can totaly understand what Ronin has tought and have a lot of fun in class . Going back to Japna I need a lot of practice every day to get good at languaje . My hometown 's one are colord with red and white . But the most popular one is colord with only white . My precioous Michael I love Michal Jackson . His songe are very butifull to me . I 'm not sure why I was crying , but I coul n't stop . MIchal wishes is our wish , at least in his songs , and hopes our hope . I dveloped a rash on my chest . If a medical crinic were open , I would have gone to see a doctor . I will go to see a doctor befor I go to my office . A member of my gym , who is 25yeras old and very maccho , is traveling in Argentina now . Traveling makes a man grow up , but he shouid never forget to run away at the approach of danger . I wish we had Shilver Week every year . Gensou shoujyo Taisen Kurenai Even though I paid $ 600 for the schoo 's internship progrram , they let me go to the Chinese company in Australia . Of course , I asked my internship adviser before starting the proggram : `` Which language do they usually speak ? ? `` , He said : `` English . `` because I came to Austraria to study English . I frequntly got around on foot in Japan in spite of the fact that I have Unfortunatelly it was cloudy and windy . The heavy wind made the sea rough . . . It took around 30 min from the pia to the diving point . The boat rocked in the sea and it made us terribly shipsick . . . To prevend it from getting worse , I watched the horizon . . . I could feel a strong swell at the bottom of the sea at the serface . It was enough to forget to seach for lobsters . After the first diving , during the break on the boat , I got shipsick again . One of my co - workers gave up the next dive because he was shipsick . . . But the most important event is comming ! In 15 minites , I 'll leave for my hometown to stay at MOM ' S home . I keep on trying these steps until my shadowig for it is perfect . It takes about five minites for one phrase . I search for Englsih homepages about `` mushroom `` these thesedays . It 's very very interesting to read articles about mushroomig in other countries . I am very tiard , because I did not sleep to prepare for the examinaion . I 'll do my best to conteniue . Although I switch on a fan , I don ` t turn on the air conditionar to conserve electricity . I 've reistered my name for Glastonbury . Normally I get twenty - five thousant wons , but this year it is less than last year . there 's a charactor , Sharpay . After that , I intoroduced myself for my new class . She is a sponserd for Shiseido ( A big cosmetic company in japan ) if I remember right . Now with my friends I live in a very nice house with a balkon and four rooms . We only finished moving yesterday , because on Saturday soon after we arived we started an opening party . I believe that through this , I could truly improve my speaking skill since those who introduced this way to me spkeak fluent English . They 've been telling me that it 's hard for them to raise a baby in a foreign country without thier friends and family . I felt a bit sad to hear that because I 'm thier close friend but there was obviously nothing I could do for them . Altough they have many friends in Japan , at some point they were seriously considering how to meet new people and how to make friends I hope they will enjoy the rest of time they have in Japan and I want to make thier life here more enjoyable at least when I come visit them ! A famous middle - aged american actor , who went to Japan because of business , met a young , pretty american girl in a hotel , who came to Japan with her husband , who was a busy phographer . When I watch a darama , I do n't use subtitles . When we into the bath nobady was there . One was an insade bath and the other was an outsade bath . I engoyed having a chat with my lang - 8 friend in India last night . Please read my dialy and correct my grammer . Recently , every time my firend sees me , she always says ' Why do you look so tired everyday ' . I noticed that to study is better than nothing even if I faild the exam . If I study hard , I do n't mind the result even if I faild it . I just wanted grumble and epress that I 'm going to study from now on . The misstaking was very important . I ` m very happy that I can count on somebody who knows about their language , and everything , beacuse they are British , or from other countries where Engish is the spoken language . I hear that my grandma was dignosed with apoplexy because she hert herself carelessly . I read a newspaper befor breakfast . I always talk to friends on skyp every morning . A lot of my friends tell me that I am nice , becouse my character is cheerful . Because it RELLY HURT ! It 's wandarful . I 'm looking forward to watch next 3D movie , Alice in the wondarland . I found that I start to waste time since I got my admittion . I stay up late and whatch tv or go online . IIf there 's E in front of the name of the soap opera , then you have to wait . I cooced a handmade breakfast this morning for the first time in a while . My wife and I will go to Jeju Island tommorow , and stay for 2 nights and 3 days . I work in a constraction firm . I was majoring in Architecture , but now I develop PC software to do business for emproyees only . I can understand English and I can read it , but I 'm not that good with wrighting or speaking . Recently , I realize there are many similer words in English . 5 ) I 'm wonderig if he gave a good presentation . I 'm listenning to Complicated by Avril Lavigne now ! Please let me konw the difference If so , waht 's the matter with it ? Then , I boil some water and drink it while streching out myself . As a result , everyone enjoys a good chatith him . It is my faivoraite type of rice cake . I found this websaite URL I presented a buquet of sweet peas to her . I do n't thik I am old . High level colesterol can cause a stroke / cholesterol level or something bad for our body . a borling diary . I like princess caracters , so I enjoyed so much . I was tired so I wantted to sleep , but I could n't . Driving lisence in NY A driving lisence is mandatory in US . Even though it is convenient enough , most poeple tend to apply for a driving lisence . That 's because the lisence is also useful as an identification . I am now proceeding to get a driving lisence . After school , I decieded to play basketball . I liked playing it very much . I was confident in the game . My tiredness was unable to keep me away from my love for basketball . jioned in the game . I said to myself , ' Whatever happend , I must maintain my composure and keep a strong heart ' . Happy New Year , eveyone ! ! Do you think that honour is poplular nowadays or did it become old - fashioned ? My healty plan 2 ! The main TV companies and many of the other broadcasters just think about how to protect their priviledge . TEPCO , the company which operates the nuclear power plant , the excutives of which are accused on TV daily . But on TV we are not told the much omre inportant thing - that the head of TEPCO went to China with people who used to be excutives of the Japanese TV companies . I can not belive him . What is broadcasted about the nucear power plant problem overseas ? so I must improve my English wirtting ability to adapt to the new job as soon as possible . It is not very nice to wathch , but My condoleances to everyone . P . S . : Due to these abnormal weather phenomena ( lately ) , do you belive that 2012 really exists ? Also , I saw the sunset over the river while walkiking and it was really beautiful . Now I can hear birds voice , and see a clear sky , a beautiful sunset and leaves changing the collor almost everyday . I take an English leeson once every week . I like to talk with my English teacher but I ca n't speak in long sentense . I should increase the time I spend speaking English or I should find another excercise for that . In the thrid lesson we had English presentations . I was very nourvus ! ! My first langage is Japanese . If you have a ploblem with Japanese , I will answer your questions ! ! Sincce there is no way I can wake up so early in the morning , I refused her right away . In spite of that , I hurried to researve a shuttle service for her . Books or th internet ? In the afternoon , I was browsing magagines in the bookshop . Even though it has n't been chenged in recent years . . . As soon as I came home , I registerd . At that time I thougt that I might die . everthing is him . . . My teacher sang a song which the tytle was `` Linda Linda `` . He was such a sppirited person who made us very exciting ! One thing that I was not quite happy about was that I could n't see tha contest of female dress ! I can remenber running around the surpermarket . I 'm an university student who is studying meteorology right now and I 'll graudate soon in March 2011 . I must go to chorus practice untill ten o ' clock today , but I I could not wake up early this morning ! ! So far , my weekness is `` articles `` and `` plurals `` . Finally , school uniforms develop inner individualty and creativity . I live in Indonesia , but sometimes I travel to Australia for holiday . I like living in Australia because there no polution like in Jakarta , Indonesia . The worker expained it very well and was very kind . With drink , we exchang infrmation . . . . When I heard a Podcast from Los Angeles the teacher who lives there and teaches English for non native English speakers in the world ansewred a question ; what sound do you love . His answere was it would heve to be the sound of the garage door closing when my wife comes home . You know , it 's a little troublesome because again I have to downroad the lost memory it used to have before . * sigh * The dichotomy that is common of postcolonial literatire , and that 's the dichotomy between a sence of homecoming and exile . harm : Honey bees wo n't harm people if they do n't do anythig to them . I suggested that we had better go to see an ophthalmologist first in case there is a more severe promble that we did n't know about . Uopas ! The fee is very expensive even though the isurance will cover it . Futhermore , today was a kind of an anniversarry for me . 2 months passed , when I started going to her house regurally . England is ok , but the problem in Spain is the [ ir ] league . There is grammer in Japanese , of course . I can speak Japanese but I understand all of the grammers . SO , I plan to study from basic grammer to high - level grammer . First of all , I will look for grammer book . I think English grammer is very deep . . . Also , aother person was stoned by native children when he was riding a bike , and my friends have experienced unwanted sexual conduct from their home - stay familly and proffeser . Before , I took ESL ( English second language ) ; then , some Maxican insisted `` the native do n't trust us because the policeman often stops us . `` When wii you do it if you do not do it now ? We had also listened some litlle stories from my dad 's CD ( a CD that come together with a book from his English class ) , then we listen on the car radio and translate to portuguese to see who got what the story was wanted to say ! ! I am having trouble writnig my self - introduction in English . I was very shocked by the news that Japan had a disaster , I could n't belieave it happend in my country . As a person who is taking care of chinldren , I am realy worried about mothers who are protecting their children without heating and water for drinking in stricken area . It 's autumn but I 'm lokking forward to the coming of & nbsp ; spring . What is your favorite character on Dragonboll ? The clerk was kind enough to fix my galsses and wash it free of charge . Looking at the big picture , the disease was nessesary to me . I am a narse . What is more , even if I have an adea about work , I ca n't make them understand my opinion precisely . I 'm going to Vietnam for a month during the summer for a kind of pratical training . I believe it will be an unforgetable and useful experience ! I was surprized to hear that . Aithough I never gave up studying business English . execise is necessary in life . I felt that this is a very usefull way to study English , so I decided to use it . Yesterdar , it was around 40 Celsius . This week I choose French as my sendary foreign language for next semester to learn . The title is `` Nostalghia `` . Your body tries to chage your brain conditions . I thought it was a funny idea XD ~ If I have that one , I will always wonder where my cat is or imagine where he came frome ? Actually I perfer dogs than cats , but since my sister adopted our cat I just started to see its adorable part ! - the image I had of the movie was formed from all the gossip I havd heard . I want to snowbord ! But it 's fun to snowbording . Is being a student with bachelar degree enough ? I lent him the money that was in my poket . and I thout about `` I want to go to abroad ! ! `` Last night was so benefitical . I have to wait untill Monday . There are many assiments and drafts in my USB . I got a litte enegy back by looking at the dog 's picture shown above : ) I have to tell an embarresing or a horror story this Thursday . introduce yurself To me , it 's important to learn new things that can broden one 's mental vision . I 'd love to challge things that are especially too hard / difficult . nowdays HANRA has extended its business overseas . when I worked odd jobs at construction site , I felt it was worthwhile after completing a constructure . Actually , doing extracurricular activities does n't diturb our studies if we make full use of our time . So I suggest that studens do extracurricular activities along with their academic studies . My friend has homework too , but he is listening to music while resting his legs on my sholder : D I am not a masochist . This site was recomended to me by my philsopher professor . I must more carefull to not set a fire . unfortunetely , I have an apointment . even if I have an apointment , why it is unlucky for me . Because , that apointment is having a class , which mean I have to attend my class . I dont want to reconize . And I checked mixi some times ; Japanese SNS servise like facebook or MySpace . Please check my writing and coment on me . I went to a pablic bath with my son . There are verious types of baths inside and outside of the facility . Hopfully , I will improve my of English & japaness here . One of them illusrated a peaiod when I was in primary school and traveled with my classmates in the park of Prince bay . It seems that I can learn a lot fron here ! ( - : And aslo , I hope I can make friends here . It 's my first wrighting . Is this the right choice , chaning to a totally diffrerent area ? I have benn working for four years so it was natural I felt bored with my previous job , but wo n't my new job seem just as much boring to me after another four years of work ? If so , what is the meaning of change ? continure to change to a third one ? I really do n't konw what I should do now . so they recentry came to Japan on May . This is my frist dairy . I have a boder Collie . A memeber of the club taught me how to throw a disc . and fust . The bord of education in Japan prohibits a normal book store from selling school textbooks . Now I ca n't write a proper English compositon . I almost forgot the basic but important grammer . The things I want to say all trun into Japanese . I talked with a native speaker for about 2 hours starting from 7 : 00 ( englis is only 1 hour . I will talk with a philipino person for an hour . My passtime I took a job as a baristar . He also told me that I should reveal my talent little by little , while showing respect to my seinior . Some of the his work is heart - hartwarming and some have strong messages . Sometimes I talk to my frined who I love in my mind . But I got 6 parking tickets including a handycapped parking ticket . It was totally my fault about the handycapped parking ticket . I know that I should not park in the handycapped parking areas under any conditions . I do n't know why I always have a intendency to doubt myself . Toyota has continuously developed besed on strong trust . But now , the company has been losting its strong trust . Losing troust may collapse even a gigantic company . I 've been studing English in Austraria since last february in order Children who chose to wear a Dnjiri 's costume joined the celebration . I will go to watch the Dnjiri again today . I think that I shoud learn English . Because , English is so difficalt for me . The Blak Eye And for women it 's kind of an important facter that Usually we ask our dates how old thay are before we start S if Americans look at me , thay might see me as 20 - year - old or so . With the magic wings of imagination , we can take our tedious mind off to another world easily so that we have the chance to get away from the ouside world for a while . Snow - coverd My collegues in our Dept . She was good to us and to a certain excent she would side with me and even take responsibility if we got into trouble . Usually we would talk at lunch time and share what was happening in our daily lives . I do n't remember when she stopped having lunch with us , giving us the lamn excuse that `` she is on a diet now `` , The firtst diary I 'm at a loss to write a daiary in ENGLISH . I 'm working at a trainning center with volunteers who are going to help developing countries . First , everyone is devided into several groups and each group is given an envelop . Every group finds defferent materials in theire envelop . for example , I went to Victria Peak , Tsim Sha Tsui , Jordan , and so on . Victria Peak was especially beautiful . Pet Industory In Japan I 'm going to travel to lots of places and take nice pitures . How SonyEricsson Xperia Ray hits the spot with me is that Ray drives an Android OS and features a great a camera that outperformances moderate DC . I have nothing to write down anymore because I 'm exhousted and I 'm starving now ! I made plans to tavel . My favorite topics are Electric Music ( Techno , Electronica , Breakbeats . . . incrude composing ) , Web Design ( HTML , CSS , jQuery , Flash + ActionScript ) , Social Problems ( international and domestic ) , Environmental Problems . And some people say it is bacause of beautiful weather in June . I have a little rabit . I belive she could be a famous football palyer . We ete , drank , chatted , and watched a litte . I used to be a kind of a shoppingholic when I was in my country . I just gor a job interview invition . Am I uncorrect ? So , today I bought the same novel translated into japanses . . . This makes me very tired anf disappointed in myself . abou me I need to ues English and Japanese to watch tv , read comics and goa world tour . Before I do something , I prepare for it thouroughly . At least during that time , I cleanse my mind and repress impuritious thoughts that hinder my concentratation . And that careful but timid attitude fills my mind of impuritious thoughts , and eventually hinders my ability to be honest with myself . It is not so diffecult for me to develop an iPhone application . iPhone applications must be developed in Object - C . But I like yoghrut . It is very convinient for us to go anywhere . Today , I renewaled my driver 's license at the police station . If I go to Oseaan vocational school , about I will study about Mariene life Dolphins are very dute . If I can earn the mony , I will buy tropical goldfish . The Change of The Trend of Chaina 's Population I was very nervous , but I 'm happy to explan it well . Susi bar Before visiting the zoo , I had been especially looking forward to seeing capybaras because Capibaras have been very popular in Japan and I heard they look unique and cute . I have come here to lear more english For my writing is very bad ; I need to develop my grammaire and fixe my I think I can develope my sentences here and lear more vocabulary I was togheter with it . when I did my assinments , I talked with my friend . . . I think the best coffee has good memories rather than good meterials . I went to englisg school after work . In this class , there usually is n't a teaher but I had a good lesson . First , I visited the waterfoll . I 'm studing corean words now because I have an examination . I have my own plan for this year and I will do my best to complete my plan and I wish everyone can fulfish their own plans too . But suddenly thier lifestyle changed as soon as thier husbands finised working . Thier husbands stay at home from the morning till night with their wives . I must ( talk with my ) English ( tercher ) . today I fonud a website that is useful . I do n't want to write too much today because I have an exam coming up . well she said , no one would like to get paid cheaper than 30 dollers . I appreciate that you encourged me with a prophecy . This sign is hot - tempered , full of energy and likes to do dangerous things , the reson may be that it 's effected by mars . Taurus is a sign affected by Venus , so the sign liks beautiful things and eating wonderful food but is inflexible . Gemini is a dual - personality sign , quite different from Aaurus . It is flexible , knows much but is not deep and can not keep promises . Libra is a sign which is banlance and undecided , but charming . She said thet the Chinese are not as diligent than before . Today I rode my bike around the street , suddently a car bumped into a dog , but no one stopped to help the dog . What a strang world , what cold people . I wanna know if it 's common to say the fisrt way in British English , like they do in AE . . . . . I also know that there is the Ryder Cup golf tournment held each year between the U . Because when you tell a white lie , it just gets you away in that situtation . I want to use the term `` over my daed body `` . I do n't kow how to use that in a sutiation . Secondly , my university 's summer vacation is so long that I can do many things : travelling , voranteer , studying and so on . What sall we do ? They were very crowded dispite the rainy day . I just watched a moive in the new theater instead . And I want to know whether you understand somthing about this article after reading my reflection paper . Myabe he likes Japanese foods . My old foreigners friend told me I could n't use chopsticks well so I need a sppon . Eventually , I thought of soneone . Later on during high school I enjoyed the subject ' Korean morden history ' from the Joseon era to present time . Even though I 'm not good at Korean history , I used to get good grades in Korean morden history . They resisted not only by force , but also by writting poems , novels , etc . ( I especially like the ? resistive ? poem ) They were not afraid of death and some patriots sacrificed themselves for their contry . Tisson is a very kind guy . We are staying in the hotel with fully booked accomodations so we will not be bored . My Asknowledgements to Geoff Cutter Why do people belive a lie and refuse to belive the truth ? Jhon Watson is soooooo adroable ~ ! But they have only three episodes for this year : ( ( Damn ! I serched her song , `` Love Story `` on Youtube and listened to it as soon as I could By the way , thanks to the people who correct my dialy entries , though I do n't know how to return the favor . . . Is this a matter of bad habbit or can it be changed easily ? They have thier own schedules already . The mysterious Victorian age , the insrutable Brontes . Sushi is dericious . We orderd a lot of dericious dishes . Evidently , I picked it up unconciously when I was living in Oregon possively from my host mother . Walking on a Tightrope in Rio de Janairo I like it sice I was a kid . It is very butiful and syiny . By the way , What 's your recommend misical ? I really happy - my new home is very beatiful . According to the news , a young woman said to some parents with a baby in front of a kidstuff store , I 'd like to study more and I 'd like to applicate it at my job . I hate crowded places , If I stay there for too long , I get a headach . Beside there were no gasorin and toilet paper as well . I like intelligent and thoughtfull people . Today my son finished primary school . ( Is it called elementary school in the USA ? ) The whole family is happy for him . He is a wonderful student . He won first place in the knowledge competetition and his averange was 9 . 8 . I think I am not a good sutdent I like the chalenge , but sometimes I feel frustrated . I hope you correct me if it 's necesary . Recently , I feel so sleelpy while woking , especially after lunch . I was like , `` Nah , bitch , just goofing around I reckon , but I am stil trying to find my way , bro . He was like , `` none taken , what do you take me for , asshoel , but if you do n't mind , let me give you a piece of advice , get real , be realistic , you always told us that you like reading and learning , so do you wanna be a translator or just a literature geek ? but let me ask you a god damn question , we , people are never gon na make it 100 years , we do n't live forever , so I just stick to my fuckin motto and faith , what if I got diagonsed with leukaeemia next week and was informed that I only have 6 months to live , then what the fuck would the money and fame and working at a major company mean to you ? `` I desided not to tell her my feelings anymore . Today I had class with our foreigh teacher again . He tought us enlish culture . I 'd thought I would go to work where my ex - collegue recommended me after Spring festival . I think what I need to do is to think over what I want ( to do ) and insiste on that . Recentry , many NPO / NGO organizations have given us explanations as tohow our donation cansave children ofdeveloped countries . But it is unconvinient to use for their financial men . But they ca n't help orher children , for example not help diarrhea children . I 'll go to the studiam next month to watch the national team play . I 'm weak from dringking to much alcohol . We went to bar the day before yesterday ( Thirsday ) , we stayed there until midnight . I think it was 3 o ' clock . However , I felt I am not as yonger as I expected . Kathy , the narrator , talks about her childfood , which was very different from ordinary people 's . They do n't know anythig about their parents . New vocabulary plactice . I said I will serve you dinner immidiately because one of the gests looked so hungly . I ca n't speak Engligh well . and report korean 's air traffic plan . So we have to know those facts why we were born in this world and why we came to this earth nd after we should die . But I 'm not the person who always gives in when facing difficuty . I left Starbacks and I 'm at a another cafe now . In the afternoon , I took a special class . A former JAL ( Japan air line ) cabin attendant came to lecture us , so we had to wear formal sui in this class . We went to a bar ( our seacret place ) . Everyone crunk there too but I could n't because I felt sleepy . He said it was very high quority . I found an Englsh book for learning last night . There was a wider space than usual between the plathome and the train , maybe 60 to 80cm . I think that it is very dangerous to walk through plathomes during commuter hours both morning and evening . Today I 'll watch `` Madame Butterfly `` and `` The secret of the Himeji catsle `` . I like the amerian drama Prison Break . Although this software is not free , it costs only 2000 yen to downlaod . It was wanderfull ! ! Today is my dahghter 's birthday . I went fiching . The fish swom away , but I held onot the line . So I said goodbay to the fish very quickly and left as fast as I could ! ! , I spend most of my time studing and reading . The complaints are endless , because the lift broke down continiously . Many students and teachers were trapped in it . I 'm so luckly to live near an idustrical area named `` Zhong Guan Cun . `` A porn film previals in Hongkong Less than 40 days now . The exam is ( right ) around the cornor . I would like to thank the person who will come to clloect my grammer . I correct the diaries written in Japanse by other people . I should correct them to help the peaple who are trying to learn Japanese . I might thach wrong so I have to use dictionaly not only for English but also Japanese ! ! It 's easy to find the journal wihch is really great . I can even find Japanese journals that are writen I regard that my little knowlege of Japanese disqualifies me to be Japanese . Thay wo n't seem to attract my client . Thay are terrible . In order to understand scientific language , as examples , nominalization and abstraction are needed to be introduced . After the break in the afternoon , we have the subject `` sport `` but I went home beacuse I do n't like sports . Of course , Eglish is required three other sports . I have to finght for that ~ ~ ~ ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! 1 sinse sentense structure is quite different . My porpose ! My Porpose ! Let me explain . I 'm an englineer . Why do I have to stduy English ? I have to know a lot of imformation . If I studied English everyday , I would be a good englineer . It 's hard to get up early in the monrning . finaly , I get up at 7 : 00am . Why did n't I get up early in the monring ? For example , I put a pellow under her head . Today the Japanese Government annonced the measures to solve their economic problems . Tonight it 's awfully humid and boilding hot . Love ur mother - toughe and being proud of it ! But right now I 'm studying English to be a translater . Today I went to a gym used by Ammerican elemntary school students . I am staying at the Hyatt Regendy Waikiki today . I 'd like to learn English in order to write and read articles of sience . I was always proud of my healty . weather tommorow . Yaki - soba is fried noodle , with suace . The first hour of class was ' marth ' . It 's difficult for me to study marth . it came as a surprise that I answered : For expriencing ! well , I can exprience life in hell then , can ` t I ? : P Being alive I can exprience a lot of things . but I dont think I need to worry about how much time I have , instead , how much I can exprience : D come on , let 's exprience the amazing world : D My son had his 6th birthday and I called him from Sibiria to Israel and asked him what he wanted me to buy him . . . There are a lot of attractive stores like clothing stores , cake shops , bakarys and cafes . Yesterday I bought a big armond scone at a bakely . This device 's circuit board was converd by a synthetic resin which caused the problem . I warmed it and maneged to remove most of it but I could n't take it away completely . I love his artistic temparament . We 're gon na meet at our favorite reataurants . Someone gave me a bag of poteto chips . about 3 times bigger than usueal . My friend 's dicision . Kanojo wa tomodachi to gakkou e aruku imasu . Boku ha skka - wo shite imasu This is the first time it is showcased , since the Heian Piriod . That is why I was suprised to find so much trash today . Children are givin too much free time ? Task4 Nowadays , some people might concern that children are givin too much free time . From my point of view , when they are givin too much free time by school , they may spend more time on surfing the internet , playing computer games or watching TV , moreover , will probably do something which is not allowed under their age without a guardian . It maybe not a good idea either , it will make studies become boring and tiring , yet the extra presures givin were not necessary . In my opinion about children 's free time , I beleive school is a good environment where student start their socail life and team work , including vairety of studying . However , when they are out of school , they also should arrage their free time wisely to do other recreational activities instead of an axtra school work . I was asked about my hometown by other syudents who were in the class . I wish I could speak English a littel better . Hi , everyone . Nice to meet you . This is my first visit to this website . My English is poor , so pls help me and I will appresite it . I can speak fluent standard Chinese . I want to practice oral English . I want to make frend with all of you . So welcome to China . I think you will love this great coutry . I love her . After the rain , I opened the windou and took a deep breath . I came downstairs to take a walk and enjoyed my free / spare / leasure time . Once a week I take a tango lesseon . When I close my eyes and just move my body with the tango rythem , I 'm jealuos of him . I need to accostume my ears to English sounds and pronunciation , although I know the BBC is probably too . . . Somebody said it is usefull , but up to now I have n't had an English audio version of a book . Moreover , he got / became angrier and louder while I explained that they were all just my abandoned exprimental materials . These materials are my painstaking effort , so I ca n't discurd them on time ( ? ) , but it did n't matter ( ? ) . Sunday is a regular practicing date for my ballteam . No matter what ever you want to play , you should make sure you have enough warm up activities , such like Sretching , jogging or others . Prevation is better than cure . I had explaned to her that food builds the body ( water also ) but she did n't follow my advise I am really poor at grammer and tenses . The sadiest part of this story is the fact that this story realy happend with the autor . He described the one part of his life , when he had maden a few mistakes , and lost his dear sister . Today I wached a movie . The movie title is `` Alice In Wonderland `` . I wached the animated movie in my childfood . There are many deferencies between the animated version , and live action version . This morning class , our teacher made us do an activity , that is to draw your partner 's picture and discribe your partner , everybody ca n't draw well , so everyone 's picture are like kingarden 's picture , but it 's funny . First , I much prefer trying on the clothes , shoes , or accessaries myself to check their sizes , textures or material , fit and so on . Maybe I 'm not a person who is suited to living in a modernized and technologized focused society . I want to chane myself first of all . Recently , I decided to save my maney , because I used a lot of money last month . Of course , to think on an accrual basis , I spent over 200 yen because it includes rent of my apartment house , lighting and heating wxpenses , and water rate for today 's cost . I tried to avoid getting sicker by eating good food , resting , and continuing to go to the gym to excersise , but nothing worked for me . I 'm not Santa clause , difinetely . My major was litarature , so once I wanted to be a writer . This is a story of a proffesor named Morrie . He has a fatal deasease and a student in his last class wrote this book . Although I have n't read it thourugh , it is a wonderful book , and ca n't read withtout some tissues . For us students , every summer and winter vacation , it 's a big problem to buy tickets to go back home from distans unicercity . In my view , to stop this situation from becoming worse , we should never buy tickets from train ticket scalpers , since everyone has a responsabilty to make a harmonious society . if you have a skype jsut add me So I will wake up and see the moutain and sunrise together in the morning , drink beer , listen the music and dance with Mt . I wanted to know if this story is true or ont . He is 8 years old and lives in South Indea with his family . I do n't want to go on a sllurge . I coud n't help meeting another guy ! ( or I coud n't help but meet another guy ; or I had no choice but to meet another guy ) If the raiin had started sooner , I would n't have been able to have my lesson . I 'm going to continue writting about the Assimil course . `` If you are a studend , you will show a better school record or April 18th was a special day which was my college 's 50th Annirersary Celebration . I started Lang - 8 because my myfriend recommended this site . This is fisrt time I 've utilized lang - 8 for my studies . I have frineds who can speak in English , but they are not my teachers . Well , in case you do n't know this movie before , here 's the introduction from wekipedia URL You can translate the titile into `` My House `` in English . If you want to get an idea of what a Japanes family is like , you may find this manga helpful . So I am studing English because I want to be freinds with a lot of people . It 's very bearutiful not only when it blooms but also when it falls . Now , we are planing to have a enterrainment show at college . Then I want to present the ikonography of the altarpiece , focusing upon the biblical narration , and then I will mention some features of this work . The next part will be about the history of recherch and dating . This presentation is about a triptych called the ' John the Babtist altarpiece ' . The example in Berlin is so simular to the ' John the Baptist ' altar in Frankfurt that a long discussion has taken place as to which is the original . These three pictures show the most important incidents from John the Bapist 's life . On the first panel you can see a describtion of the birth , and naming of John the Baptist . The middle panal shows the baptism of Christ . The last panal is about the beheading of John the Baptist . These three paintings are supplimented by a detailed illustration of miniatures in a gothic arch , which funtions as frame for the pictures . Can a quater , a 25 cent coin , change one 's fate ? Also , I talked with my chiness friend in skype . When I arrinved at my house , it was time for dinner . I think that I rode the bycycle for 1 and hulf hours . It is also sometimes hard to tell my feelings with foregner . In my old memory , I think I had to prepare a photograh I was not abusy today . According to myth , when she knew that her mother was pregnant by an unknown father , she was ungry and called his four hundred brothers and sisters . She wanted to kill his mother ( her name is Coatlicue ) , in this moment Huitzilopochtli ( God of the war ) was born ; he was born armed like a warrior ! I was very suprised ! Sweet Potate Do you know sweet potate ? A large mumber of companies are obtaining funding by mortgaging their cars and other assets at pawnshops . The customs procedure takes 3 hours and will be conducted in a cooled warehouse , which will help a lot in summar to keep food / produce fresh . The Koreai government is preparing to manage it successfully . Secndly , it 's very short sighted thinking . I think they can contribute to cultural variaty as time goes by . Having the agenda of neo - liberalism , they just genally increase repressie measures . I got payed lesser than the low limitted wage . Bazil , thyme , lettuce and tomate are in the picture . Umbelievable . . . My star - sign is Tauras . I think reflexology is helpful to recover from surgery , so I suggested to har to get reflexology treatment . Japanese people in japanese rooms usually sit down at kotats during ( the ) winter season . I felt that someone may think that we are superior to the labors from other countries . Many univarsal students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . My hobbie at this moment Becouse this needlework thing does n't bring any benefits or money . ( yes , I sleep with a fox Johan , gigle ! Because it is a bad habbit . When I have handmade work , I can relax from conserns and immerse myself . I went to Kyoto this spring vcation by myself . My favorite shrine is the Kifne shrine . Kifne was built to honor a god of water . Why does this sentence above use ' has basketball ' , not ' baskball has ' ? Yet , the symphony of spring project the comfy atomospher today . Then , the Sugarecanes are milling milled to make brown sugar . I came to pick my guest up from the airport , but the fligh was delayed by twenty five minutes . I feel worried about studying Engrish . Are they correct sentencs below ? * Elderly people 's share of medical expenses has incresed this year . I 'm told when women are in menopause , they are more nervouse and fickle than before . < < NOT ALL studying about Gandhi is complex and difficult for me , so I do n't feel like reading his aoutobiography ( the textbook ) . . . . This is the fierst time I have come abroad , and my English skills are not good , so I ca n't communicate with native people in Seattle well . Japan AIRLINES ( JAL ) dicided to stop the flight ! ! But JAL dicided to stop the flight from Japan to Bali yesterday . Two of them were Haruki Murakami 's `` nejimakidori kuronikuru ( The Wind - Up Bird Chlonicle ) `` . I found my journas was corrected when I came home after my job ! MY SPEACIAL DAY and I do not konw what I should do . . . this is my first daire entry . Although it is very exciiting and I ' m looking forward to gouing , I am worried about one thing : the temperature . Actualluy this is the biggest preblem for me . For instance , to reduce of the fee of electric energy , some companies develop inventions that storages solar energy . I 'm still wtiting my grade thesis . I always dream of travleling to other countries , seeing other people , smelling other soil . We made chiken with sause and did homework together . asa watashi ha gakkou de benkyou shita . yoro watashi ha hataraku shita . Car wash to Jollibee to Greenwich de hataraku shimashita . So , I decided to doze off again after waking up early , it was not a good idea , bcuz it led me to wake up at 7 : 15am , if I did not prepare quckly , I would have been late to work ! I am not going to a travel with Ke , bcuz it 's too expensive for us , but we will host a BBQ party at his home , with his family . . . Lost My Entry Aouthorization Certificate Today , the olympic games starterd in Canada . Sometimes , we are in a beatiful place , but do not realise it and we want to go away , yet there are many people from other places who want to visit A mile is equal to 1 . 6 kilometars . However , I 'm worried about the jewelry I buythatis same price as aticket , so it might be crap and if it is , I 'm not sure if Ishouldbuy such a fakepiece jewelry . maybe , I must workinghard harder . I 'm wathing a Harr Potter movie on TV . It ` s been rainning day after day for so long . Some day , I am determined to study English until I speak flently , before I grow old . Is it because we are introse that we are not good at chatting with people ? We test - ran 800 mitters today . I really do n't understand myself for falling in love oftenly and I had been depressed for every girl I met . I think I desire too much compared to nomal guys . . . I 'm pretty exicted about reading these books . I believe the ploblem of stress in the workplace is not being dealt with sufficiently . We should address the problem of stress in the workplace poisitively . I like Tayolr Swift ! Next mounth . Foreingers who are living in Japan for several years probably feel that `` they are discriminating against us `` . The reason why I write is that foreiners are very rare in Japan . Even I always gazed when I saw foreiners in Japan . vist ? working ? `` , `` Oh , foreingers , very rare ! `` `` Why did they decide to come to Japan ? , this country is very far from their own `` , `` Can they perhaps speak English perfectly ? `` `` Are they good at any kind of sports ? `` , `` Are they Europeans or Americans or Australians ? `` . I played on the body bord , which is an ocean sport . I like the sense of humor , the affectionatly designed characters and most of all the kind of story telling . Expecially the way the complete backstory of the central character , Mr . After the game Okada , who is the coach of the Japanese team , asked the chariman of the Japanese football asotiantion ( ? ) if he can continue being their coach . Neverthless the coach loses confidence in managing the team . Recentry , I got a laptop computer . It was hard but we had a goot time until the tournament . ( I love these kinds of moives . ) I want to write a dialy But I want to write a dialy in English . Today I wrote a repote in class . The repote above requires more than 2500 words . Because Japanese is usually pronouced in the order of consonant + vowel + consonat + vowel I suppose the mistakes which my daughter makes would be typical to Japanese babies . He finished studing abroad at Kagoshima University , Japan . In many circumstances , the Japanese people who need to speak English for their jobs are white - color workers . From yesterday to today , it was snoing too much . As a saying gose , good maners equals a good future . Fortheremore , the day when everyone builds up good manners , is the day when we will be able to enjoy our lives better . nThere is no reason to not have good manners . Yesterday , I played the guitar with my friend in my house aftrer school . Yesterday , my hunband went fishing and brought back many fishes for me . Summer vacation is drawing nere . At first , I tought I would be able to eat them up easily . So I wantde to throw the instant noodle away . However I tought it would be `` mottainai `` , so I could n't throw it away . My friend recommened this site . Today , my cliant invited me to dinner . I 've been busy for preparing my induvisial presentation recently . We often exchange letters or souvenirs with this system and also aften talk using / with the company 's extension . Who are your recommended singger ? Finally , dress boiled pasta in this sause ! Check my aticle and correct it . Though , even if the grammar is acceptable , chang the expressions if are not used currently , DinBo 's home is in a big town , and it takes a long time to pass through a / dark forset . Just when he walked quickly and quickly , someone / obsturcted him by / caught his cloth . Because I was busy yesterday , I could n't wrrite a diary . Why did `` Avator `` loose so many oscars despite the best performance in this year ? Today is the last day of 2010 . I have been a graduate for almost 6 months . althought the job of forgein trade is very busy , I always try my hardest to make progress . The biggest problem is my English . Sometimes I feel affraid to speak to forgein custome . I could go whereever I want . A friend of mine said that it was disappointing because the 3D glasses detracted from the color and blightness of the film . I 'm not being critical or sarcastic , and I usually do n't care about which restaurant has a terrible survice or which staff . is rude Actually , he missunderstood my address maybe due to my bad Korean pronunciation , but he was neaby so I told him the correct adress . Then he just said , ' I saw the map but I cound n't find your house , so I returned to my store . Thus I dicided to tell them how to meke tofu , It is a very challengable and interesting attenpt . but , it was enough to take away all the sultre weather from this morning . However , it focuses on one Daimyo ( Hideaki ) so much , that the story is not undestandable . When I visited the class , the sore throat had gone , and I had only a naisal voice . Steve ' apple - head ' Joves is really cool . `` Finaly , there are many kinds of games that require using my body . Today is my frist son Mark 's birthday . l was galded my son was happy . I am distressted . Hi ! Today was clody , so I sat at home and watched a tv show . I also listened to music and drew in 3D program ( solid works ) . In the future I would like to work as a programmer . I 'm studying metalurgy these days . . . I 'm friendy so if you write to me , we can have a conversation ; ) I do need a normal English name because I do n't want my forign friends feel strange when they call me Pengfei or Fei . I think Christpher Nolan is a very smart movie director . Everyone , Laos is wonderful , beautiful and kindful country . If you are too tired in your life , I recommen that you visit Laos confidently . For example , a German shepherd dressed as the police , and his owner dressed as a prizoner . And there was a mummy dog and a witch ( the owner ) , and a hotdog dog and mastard . However , when I looked at the unit carefully , I found that it says KJ , not calory . I can read English to some extent because I have been learning English for more than 10 years , from junior high school to university , but I have not practiced writing , listening to and speeking English . They aseked me , `` Did you buy it in Mexico ? `` I said , `` No , I bought it in Korea . `` Japanese peoples like rulers lines ( A . K . A Excel junkiy ) I think one of the reason is the history of word processer use in Japan for the past 20 years I have to remember some Italian languge for my job . I read an article about lady Godiva , you know , the simbol and the namesake of the famouse chocolate maker . It 's a shame that the legend was not what really happend , but I do n't think the fact that it 's not true will diminish the attractiveness of the story . I don ' tthinkI 've fully understood why the company chose her as a simbol despite of the statement on their website , ' He ( The chocoratier ) sought a name that embodied the timeless qualities of passion , style , sensuality and modern boldness ' . And many women had Hakama ( Kimono ) , it was very beatiful . I ca n't stop drinking coffee , although I do n't feel slppy . I always drink over 3 cups of coffee a day , but I learned that drinking too much coffee is not good for helth All of their music is vey cool . I 'm embarrased because I ca n't speak English as well as trasnlate it into Japanese . I thoght that it would be used for business entertainment . Anyway , Our team entered a competion last Satuaday . It 's a very small competion with only four beginer - level teams . But we were not good enoght to win . But I 'm really releved that it did not hurt so much . I had a great time ; I feel like I 'm in Paradice ! I will be able to have Paradice time in February too . You would say this word when one is expecting you to do too much for them , when someone is relying on you a lot and you are annoyed or ungry about it . hahah ! ! Tonight , I will watch the Chun Wan and the firewoeks show , which is always fantastic for us , the Chinese . ' iCarly ' is a sitcom in which Carly and her frineds make thier own web show called ' iCarly ' . I am jearous of a woman . I have exam on monday in akorean . I hope be first in my class . last noon , my boyfriend ate greasy back shrimp , at 4pm , he had a stomachcahe , he was vomiting and had diarrhea , he felt uncomfortable . It is hard for me to walk araound TDL & TDS all the day ! ! My hasband and I have been married for 5 years . This Wednesday , I went to Ikebukuro in Japna afer work . Nearly every applicant to universitis is required to take this Examination . I heard about this service from one of my coleagues . I hope that I can develope my English and also make many new friends on this site ! Telling The program is about other TV programs I like , USA or UK drams , for exsample . And soon the Chiniese language will be very popular . But here , on Lang - 8 , many people want to know Japaniese . Their music is not cool ) , Maximum the hormon . . . . . It 's a bus tuar to go to amuzement park and find a Mr . Usually , it is more unformal than arranged marriage . So I think you shoud use a website that is aimed at specific groups , for example , a website of climing , cooking , and whatnot . The soothing breeze is trying to evaporate the moisture of lundries hung on clothes poles by my mother . Ocassionally , some birds zoom past before my very eyes . Where does your family usually go for a aummer holiday ? So , I strated my motorcycle and went out without a raincoat or umbrella . About 10 seconds later , the raindrops suddenlly became large and heavy . This pic can ammure you in the late 70s USA , a life where you have no one to control you and every right to violate [ what ? ] ! I think we can deal with the problem using proper methods that enable us to dispose of the waste matter and make the emvironment clean . At first , she wanted to learn acting from the actor , but gradully they developed a relationship which is like father - daughter and lovers . However , all the projects are n't always successful because some of them are led by the initiative of developed countries with little concern and understanding for the local gevernments and people . Santa Claus who wears a red hat and red clothing bives very kind children gifts . We ( do things like ) watch a movie , have dinner at a very romatic restaurant , or exchage gifts . I found Mos burger bearby my home ! Cuz it 's very quiet and few peaple are here . Before 7pm a crowd of peaple are often here . I quess they are univercity students especially . Writing english on this site is also learing . . He likes Power Rangers , Masked Rider and UrtraMans . My English is at the basic or pre - intermiddiate level . And I made it a habbit to memorize what native speakers corrected . What do you recomend for me to do ? However my throat is still not crear . I went to the Tanglewood Music Festival with my collegue last Saturday . I listened to the open reharsal , the prelude concert , and the main concert . However , the understanding of the cecessity of the procedure does not seem to grow . Please correct my Enligh , for any mistakes . What Souhld I do to solve the problem ? I was sweating becouse today was hot and the event was held outside . It was kind of a sence of fullment . One of my woman freind suddenly said , certanly foreigners do n't care about small matters . But I think I shuoud be more self assertive , I got up arond 11 : 11am today . Is it at the shore of an ocean / at the ocean shore or the appartment on a high floor in a skyscraper ? Ordeal of the Eentrance Examination in Japan In Japan , we call the system the `` escalator method `` , which measn once you get on an escalator you can arrive at the destination automatically . A recently discovered species of a frog fish , has been dubbed the `` Psychedelica fish `` because of the beige and peach zebra - stripes that run from its blue eyes to its tail . Using its lower fins , the Psychedelica fish expels water from tiny gill openings to jet itself forward . Psychedelica has a gelatiness body covered with thick walls of skin that protect it from sharp edged coarals . On purpose I 'm not stating which one is the best because if I did that , it would be easily jammed with trafic . It gives us a lot information about books , movies , caffee , acters etc . . When he was going out , suddenly it was begning to rain . `` Shall I lend you an unbrella ? `` I 'll come here on some rainny day to return this . `` `` Regular holiday is Wednessday but we do business only on rainny days `` I had maken some mistakes , usingthe previous method I used to support him at home . Beacuse of my foreginers . go abord to see the world when I have the ability . beginnig of the loss , I thought it was my bad luck . It was ture . It is crowdy in Sydney . Yes , when I met her the first time , I was somehow confidet this would happen please check sentense Now one of my favorite airtists is Drake . I found this website on a discuss borad and it seems interesting . My first dialy is about my new PC . And access high spped Internet . I pick out the best shop to buy it , however the shp had no stock . Yestoday , when I walked out my office , I saw a lot of crows . I never saw a crow before until yestoday . STEP4 Hilight the ideas from step three that I believe are true , or could be true , in certain situations . Atfter the coffe was ready , I put a filter paper on my cup and poured the coffee into my cup . Actually , my father - in - law 's brithday is 15 . Can you believe that the temparature is higher than our body temparature ? I ca n't understand what happend . Plese let me teach thank you . I was pazzled by his English . It seems that it is the 5th biggest earthquate sinth 1900 . it is late to make a centense in my mind . I got so exausted but this experience brought me a sense of fulfillment and new friends . To write a diary in Enlish or Chinese once a week . It is a reason to laern English and Chinese . The city of Munster decided to ban cars within the city and use bycycles instead . The suspicion of match fixing in the chinease football league storms the nation . Last Sep . 2 , the second devision soccer team Qingdao had a match against Sichuan . The Chinease football association initiated the investigation but these past three years , the rumor about match fixing is going around in China . Recently it 's been insainly hectic and I ca n't review my entries . look beatiful There were two things that happend this weekend . Second , My parents had a serious arguement which surprised us since my father ( split the water ? ) and broke all the things in front of him . I really do n't like the way that he communicates his anger everytime . Next we taiked in park . Suddnly my friend said : Toshiya , you does n't go back because train left a few minuts ago . Yuta lived nere here and he is very kind so he stayed me . Then he changed the dign so I helped him . If he has a trable , I 'm going to help him . I like to trabel ( especially to foriegn countries ) I 'd like to explain the Himeji catsle . The shape remains us a white heron flapping its wings , so It is called `` Shiresagi jyo `` as a nickname . people who I can share things with , have a conversation with , and make a realationship with . Recently , I have been lucky enough to meet many friendly , special neightbors at the dorm . I already met one kind neightbor who did n't mind spending more than three hours in my room fixing my computer . It 's not that long ago since he moved , but unfortunaely , he said yesterday that he 'd be leaving to Japan for his business In my opinion , we do n't need to be strong and parfect to fish , why not examzin yourself , okay ! It is not too late . So , I am writting a diary ! So I always practice writing , readig , listening , and particularly speaking . I ate some foods but the Garmany sausage and Toppoki from South Korea were the most delicious . foriegn ppl think it is too hot . First of all , take Vitamins and iron continously . I could like it , but if I do n't go into an accademical career or the specialisation of hospital pharmacy , working at a pharmacy might be unsatisfactory and it woud n't allow me to have different experiences and to `` build `` a personal career . I am a very energetic person and I am able to keep dicipline . Energetic sounds more natural I love readnig , so I love book shops . In addition , they looks like some pictuers or marks . When it is someone 's birthday , we always make presents by outself . there was an earthquate . I did n't know whether I sould run out the restroom . When I was thinking that , the earthquate had finished . Today when I took a break and search the internet , I found that there were really a lot of peple speaking highly of this film . becuase it runs well . This Thursday , I ate so many diffrent Poccky . Also , Wedneseday , I went to a bar , for `` Okinawa dining `` . Today I tried to expline that Mt . I want to make my son a prefessor . They are my favorit . We drank alchole in the sea house . I was so narvous . . . It ' a joke , but anyway we enjoied fishing . met my clessmate and made new friends who are Arabic . I 'll be very busy from April , but I 'm excited for the new life , and I feel anxious a lttle bit at the same time . I 'll be a sutudents , so I 'll have many sutudent discount . Thogh all of my friends laugh when I showed them the picutures . This is a technical and amazin invention . My vacation days are nearly over , so I tought it was a good time to get some wind . Everyone applaused sincerely and cheered joyfully for them . Althoough I 've had a few relationships before , none of them I really wanted . Yesterday , I went to an English leston . Duriong a group discusion , a question came up : Could you live without electicity ? Someone sade that he would commit suiside , but I think maybe I could live better without computers or the internet or tv . Without these things , I could walk out of my room and talk to realy peoply . The answere is `` public servent `` . Now I am listening Macros Flontier and working . We are supposed to talk togeter using headsets . The maxmum is - 8 degrees . There is no Chinese teacher at Odawara castke . I 'm jast study by myself , with a Chinese language textbook . The orange collor motivates my heart . The blue - violet coller is very nice . Now , you can see the beautiful red and yellow reeves around Odawara Castle . Unfortunately , I do n't know the histrical significance of Odawara castle . My Englishskill is not good . Incidentally , I have received notification of EIKEN Grade 2 and Pre - 1 test first stage exam which I took on Jrunuary 25th . I was so suprised , because I did n't expecte that I could pass either of them . you can googole with `` * ( asterisk ) `` . And to earch for an exact phrase , enclose the phrase in double quotation marks . Unlike our ascestors , who lived in the past , we are now living in a world which is full of media . Theoeretically , the media reflects how we humans ' lives are advancing and changing . Then , the media appeared , which tried to express one single messsage to the public , and that is what almost dominates our daily life today . For example , we have seen several interpretations of the event of 911 from the western to easten media . The media advances our quality of living by informing us of what is going on around the world which allow us to deal with our lives easier , but we should not ignore that the media is not a neutral mechanism but a living organsim which has its own values and tries to influence us when we are heedless . And , never forget , try to think twice about the meaning of the informaiton when you receive it . A queation from `` Can I Do This `` . I somtimes think that my problems could go away like melted snow . In my opinion , it seems like a combination of two words : religion and rediculous . Groups of brids soar to the west for family . So I 'm studying Engrish now . I arrived on March 28 in Merboulen Australia and will study here for To celebreate , We went to their family 's house and hadlunch : ) But his subordinte , a woman , betrayed him because she wanted to save the human world . Japan has diversitied climates , so there are unique and varied local spcialties in each place . At the shop of Niigata Prefecture , the emplyees stock plenty of snow next to the shop every winter . I 'm a senior at univercity and a major in Education . I want to write more , but I 'm geeting sleepy . . Until I got my lost stuuff , I spoke to the man in charge . Luckly , all of my colleagues are very nice , so I just can work hard and do my best now . `` You are realy a good man `` Kate answered yaaaaaaaaai ! ! I want to eat japanses food soon . A bag of snacks disappered in about 1 minute . Unless you watched this drama before , you would never understand the whold story totally and it wo n't be interesting anymore . Even though , I have never seen Star Trek before , I strongly recomment to watch this together because I hope it can increase my imagination like the moive Star Wars . We display so many dolls to wish our doughters 's good growth every years . ( When it ended , I was very very sleeply . ) It is a kind of traning at my work place ( company ) once a year . First it was canceldd , but then it was postponed to a later date instead . So I deceided to go to Okinawa . In Japan , cherry blossoms have a lot of pitals now . Since so many people went to see the cherry blossoms today , I could n't oass throught the road by there . I have been to four foregin countiries : The United States , Australia , Indnesia , and Singapole . My favorite place is Austaralia because I was so impressed by the Coral Sea . I 've started to dance Tango scince this February . I do n't like buying clothes that are made in pooe countries . That is , colothes which made in poor countries often made peple work very hard for very very little money . Cheap clothes are very popular , but they are not good for those who made the colthes . So , I like to preffer ' ' Fair Trade ' ' . Especially I hate Japanese appael brand UNIQLO . I want to wear clothes which make everybopdy happy . To enjoy hashion is Ok , but I really want a lot of people know the fact of cheap clothes . I took the morning off today , becouse I had a stomach - ache . Do you kknow Higashino Keigo ? Did Sant Clause come to you ? . Luckily you are the first person who is an electronic technician who bought this device from me with the problm ! Though I like anime , I ca n't believe the above resolts . Twigliht - New Moon the Jonas brothers and tylar Swift . My birthday is novembar 23th . Becuase it is full of difficulties , presure and unknowns . I always come across some troble , We odered five sevings of pork belly . Althogh we just odered five servings , it seemed like too much . School just started one week ago , so I decided to insist on writting in my diary every weekend . LMAO , two americans in the audience at that coffee shop were surprised when they saw sunnie and I going into one bathroom together and they were also surprised that we were holding hands all the time - they thought we were lesbin ! It was a 1st model when VISTA was lounched by Windows . or to hear radions and TV news for various countries . I 'm looking forword to it . Towmorrow morning , I will go to a language company for interview . Have you ever eaten spagetti with salted pollack roe ? having a child , our jobs and anything we conscerns . He was cool as aways . I ca n't waite for his come back from prison . I think that celeblity obviously shoud n't have them . I . 's public estimation because I did n't read airticles about him . I want to know his recent news . It is enteresting and fun . I do n't know wht to do now . . . It is continueation hardship everyday . Monday is comming to me . Could you please explane the difference between cartoons and comics ? As I expected , granma , ma and pa - all of them welcomed me . I cought a flu last year . When I came into the party place , I found many people were wearing really gorgeous and brilliant coutumes . We drank untill 3 am , as usual . When my host hostfamily goes on a trip , they start barking even at night ! TV showed people who live around the nucler powerhouse in Fukushima that were allowed to get back their home for only for 2 hours . I would like to say somthing about my little brother . Can you helpe me ? Ah , is this dialy good study for me ? Taking care of their children and being a part of their faily is my role and job . my homeown is Langzhong in Sichuan province , which is a very beatiful , ancient city . I 'm plannig to go back Kyoto to attend my friend 's wedding ceremony and prepare my own celemony which will be held on May 29th . And I also have to go to my university , to tell my profeccer that I will be getting married . My backup data was on an external HDD conected with a USB . Today I tried to figure out some math problems I learned how to solve in elementery school , but I could n't ! Yesterday , I drank with my boss and cliants . I know it 's a stupid thing for American ppl . Now I feel so lonley . Pepole call it a `` cleaning robot `` . I boiled water at 500cc and added chiken stock tablespoon 1 . 5 and a proper amount of salt . Then , I boilded somen of two serving for 2 minutes and stirred sometimes . I boiled the soup again and after the soup boilded I stopped the fire and displayed it on a plate . By the way , I saw my friend in the librar , so I said hi to him . I will be flighting against time , I am workg as a waitress now , so I have a question One more good point about this center is that its free . If I correctd somebody 's entries , I can get ' stars ' in Lang8 . And leave your coments . The other day , I bought the book `` Macbeth `` by Shakespear . I want the help of everyone whose Eenglish is good ! We bussinessman must be careful . The first picture I uproad is that . I 'll be fortunate to have a good family and a work worlth doing . I am satisfied with my purchases , and I wear the pk t - shirt very ofen . For the following reasons , I disagree with the statement that the companies are allowed to do anything to boost teir profit . In the worst cases , some employees become dpression and kill themseves . A boy sutudent who was doing badly in school leaves behind a high ranking high school in Tokyo moving to Himi to lean on his relatives . He comes across a girl student named Nagisa Ichinose . I hapiest when I 'm with my friends . It looked like they will stay in Kyoto , so I told them about Nijo catsle , Gosho , Kiyomizu Temple and so on . So I started this morning by taking a sample of my daugher 's pee . I am Nao , a japanse person who is staying in India to study . I imagined when I was in Japan that I would be able to speak fluent English automaticaly if I came to India . The other was 07 : 40 AM , but I do n't remmeber hearding any sound , just when I sunddenly woke up and checked the time - 08 : 40AM . It was called `` Sony timer `` , because they were broken afer the warranty period . What dou you think about Sony products ? `` You cn say that aggain `` `` You couldo n't have said it better `` Tha 's easy , so I 'm gon na write about my first concern which is `` eartquake `` It has caused devastating `` damadges `` such as `` Tunami `` and crippled `` nuclear power `` They asked me , `` How often did you experienced an earthquake ? `` , `` What didi you feel then ? `` We should reconsider how we live eith animals . But after a while , some of them are tired of raising their pet and worst case , they abondon them . The fact that animals are often used in experiments before products like medicines , cosmetics and foods come out on the market is unknown to mose Japanese people . I ate lunch with my grandmother today because my parents went to a grave of my father 's ancesters , and they were going to lunch with my father 's brothers ' families . I ate too many cakes or sweets and I forgot to excercize . I may be succes if I keep on diet for a while . To make a story you have to read a lot of books and pracetice writing . Theare is one of the most famous shrines in Yamagata prefecture . In the weekend , Taiwan have a typhoon come , We get a haliday on danger , so our govermment proclaimed that we can have a haliday . My dughters , husband , and I enjoyed having him over . admiration , happyness , aesthetic pleasure . He also liked soju ( popular Korean alcohlic drink ) . I sutuid English yesterday . Firsut of all , I sutudy vocabulary becouse I am a beginner . I want to be able to read Eglish newspapers . The girl called Nastya appointed an interview today at 4 p . m . , but after coming there I found out that the interview will be tomorrow because of their tecnical problems . So , some children and their mothers came to have lunch threre . My former tutor who lives in Tronto just emailed me . I took part in the drining party . I was selected as the person and got the awrad ! In the last scene the bat fell into disfavor both groups , because he tried to trick them . 4 . Memorize English sentances on www . idealen . cn . But today , I wanted my hair desighner to cut my hair shoter than now : p I hesitated to say please cut my hair shoter . I really want to move to Califonia although it 's nearly impossible that will happen . However , in most cases , I ignore that isue and hope it is just because of termporary stress or just a minor thing with hypochondria . I think many people in mordern life have the same experience as me . On the other hand , we worry about our health and think we need a check - up for prevent serious deseases . I saw them throwing their cigarrets on the road ! ! When I walked behind them , I had to inhale the secondhand smoke which contains much more chemical poisons than the smoke they directlry inhale ! ! I started thinking that nobuddy is going correct my posts . Maybe I shood make mour misstakes ? And I felt positive feelings and warmful about the Hawaian people . Regarding Hawaii , it 's really warmful but not humid there . I went from Tokyo to Sizuoka by Sinkansen . Japan 's resesion is very serious . These days , TV , newpaper and radio broadcasts tell us that the climate of the earth changes day by day . They also tell us that humanity will face global warming . Unfortunally , I do n't like to play football , when it 's 35 * C : ( One - day travell / trip Anyway , what I can do is practce , practice , and practice . Once I have & nbsp ; gratuated from university , everything & nbsp ; will change . Today , I met my friend and we went to an exbision in a bath house . `` Calrify `` is a very useful and common word in daily life . I am calrified on what you said . ( good sentence ) I 'm trying to calrify what the difference is between them . My short - temperd boyfriend So I wanted to work it out , but when I talked to him about what I 've been thinking about the other day , I could n't help but to cry . What he gave me was not a big sweet hug saying sorry , he gave me an annoied look because I started crying . I 've desided to dilute my passion for everything British with American literature . I do n't know American literature ( as / that ) well , so I would apreciate it if you could recommend me some of your favorite American novels . I shold 've gone to school : < carrer choice and I have to sign in , in one of two carrers that are vacant in two different places . and the other is data proccesing and is something that I 'm remotly interested in . But what I really want to study is language but that is a carrer that you can only study in another state but I do n't have the money to afford to live there . According to this movie , his harmony sounds quite excentric , he hit a lot On top of how different his music is , his appaerance and behavior is also strange . His son , Cyle Eastwood , is active as a professional jazz bassist . Also she was awarded for her excellent discipline and puntuallity . The restaurant was very clean , the food was delicious and also they played Chinese music in the background , a very nice pleace . Every three days I chang the water . I hate oneof the supervisers because he always says `` no `` when I ask for somthing . Other students also dislike him because he is very strict and he always says `` no `` when other students also ask somthing . Today , all my classes were cancled so I had much more time . It is a fascinating and attracitive place . I found a bag of ramien , but I did not want to eat it at that time although I often eat ramien late at night . I want to play with storong people and get stronger and stronger ^ - ^ A gide said `` I do n't know that reason , `` and I did n't change my I - phone . we played beginar and medium courses . There are very nice and fashonable restaurants in Sydney . The number on the dispray began with + 1 and I easily could guess who was calling . and who wtold me that he 's been catching a cold , I live in a house where many forigners stay , but I do n't talk with them often . Its interduse said if you could be young again , how would you use your chance and not waste your time . Some countries would rebuke that coutry throught the media and demand for an apology for the incident , not a war . At last , I probally should close the window . . . . . I hope I meke improvements in my Englih before I get a part time job . I booked the B & B for 3 weeks until Des 9 . Over the past coulple years , almost all of my friednds got married , and some of them bought their house and had babies . I heard that in some European countries , the number of non - married couples are incresing . Of course , there might be other system instead of the old marriage system for life gurantee . Letter ( Aki angera ) In the midest of this pain , I live the present . If you continue asking what and where you sould be going , Today , I made friends with some students on focebook . Because I like pokemon so much , I wanted some Engish pokemon games since I was in Japan . so all my plans for this weeekend failed . It was an ad for a teaching job in Makaty City , Philippines , and I received an e - mail from the school president . Although I am afraid of going there , I thought that this is a rare oppotinity for me so I 'd better go ! I decided to go to the Philippines . I 'd like to make friends with people from all over the world throug this site . I am very happy because I passed an exame and will get my first job . Yestarday , I received my ( employee ) bonus . My company paid it to the empolyees , half based on the monthly salary , and the other half based on the results of what they did . Sources say that the number of people traveling abroad will be increaing this summer because of the strong yen and gradual recovery from the resessions . But I can not belive it . It was a wonderful experience to enjoy food with not only the taste but also the sence of touch . He called me in March to notify me about a job interview , but I had a another job interviw on the same day . It 's highly important as to whick book I bring . Yesterday , I read an article about the Human Resourses department in a certain company . In my case , since I 'm an elementary school teacher , the government adopt new teachers , we basically train by ourselves , principals deside which grade we would be in charge of , and we have to cope with all of the problems and complaints . At first , I thought it was just a simple place to learn languages , but when I logined in , I found it 's a very interesting place ~ ~ ~ The throat syrop is called `` Stop - cough syrop `` . My hobbie is playing the piano . Recentury , I wrote an original song and played it . If there are presure things day , my song is up tempo and pop . I did n't buy it from a forein manufacturer . I woried about it . Many of my freiends are going back their countries in Decmeber . Today , I took the entarance examination . Women figure scating I will watch the Japanese scaters and Kim Yu - Na parts on TV . There are three scaters from Japan - Mao Asada , Miki Ando , and Akiko Suzuki . In Japan , people are exepcting Mao Asada to win . This cafe do n't serve the sholder masserge and huart ( huart ? ) mark kechap on Omrice . ( Yummy ! ) It 's very reasnable in Japan . I do n't want the servises like the Maid cafe in Akihabara , so I 'm sutisfied with this cafe . I want to give servises for the gails more than to get thier servises . That 's is more inportant than optional servises . I am trying to ride my bike eveyday . His name is sccot However , I could feel that he was kind because of his pasionate for studying japanese and his eagerness to talk to us . Summer is comming little by little . I 'll try to do my best in grammer , spelling and pounctuation in my journal . What is your accupation ? Have you employed au aupairs before ? bacaouse today is our five month anniversary but I can undersatnd him . he seems to be navouse . . . . I belieave that he can pass the test . I have to study grammer . I have to lissen to English conversiation , something like that . I should take it easy , and I should take every oppotunity to talk in English . I 'm not skillful at computers . At last , when it settled on the wall , I cought it . I just wrote 5000 words so far even thouh I have to write more than 32000 words ! Thanks to everybody answering on thihs ^ _ ^ On second thoght , I want to post non - japanese songs after all ! I signed up to Lang - 8 when I was in Japan but I have n't written any entries here because of my lazyness . . . I practice some tirics . Recently , I became crayzy about `` hannah montana `` ! I am cheeringfor all athleates of the world . Recently he scrachs his cheek . We will be watching the movie ' Avartar ' . Controllering an avatar that 's something you 're not but represents you seems awesome . Appearanace is considered an important factor in building relationships with others . Of couse , I want to be rich , but if I were rich , I would n't feel like living a simple life . Him : I hav to go now . I wathced the movie named `` Ponyo on the Cliff by the sea `` . I like fasion ! By the way , I like fasion . The members and I have placticed very hard for that show . As a result , it was sucssesful . When somebody who eats my cokking says `` delicious ! `` and smiles , It makes me happy . The letter was from someone I 'm kind of intersted in . I wil write a reply someday . Hou dou you talk to a person you 're kind of intersted in ? That means we have to dispense one prescription every 3 mins . wellcome to everyone . And I sometimes atching TV . Companies such as SONY have a lot of personal informations responsibility to protect it from hackers . But hacking technology is imploving day by day . But providing our peasonal data means that we should take the risks of our data being leaked . Customers are afraid of their data being leaked , but they want to enjoy the convinient of online services . This is too complecated . . . Espeshaly , I want to write in English . Please send me a messase . Now , I 'm learning about Gairy Snyder . I was looking forward to joinning this site for a long time . Please correct my dialy . Good mornig ! Lucklily , my cousin who lives in Orange county called me ahahahahahaha ! I bought a notebook and many colorfull pencils ! ! ! Did you know , a few months ago , the Chinese goverment forbade the custom of wearing pajamas on the streets ? I was a shoperholic in the past , but I am not interested in shopping any more . It 's unbelivable . I am so affraid I 'll lose my mind because of him . It had been rainy these day , so we can wash clothes and dry these clothese outside today . fantasic scenary . It is about our regionaly press in 1905 when the first Russian revolution begun . A news interpreter explained those reports like the issue of the rare earth , the Myanmarse military resime , the conference system regarding the matter of child abuse , why India has developed now , the war between the Mexican government versus some drag cartels . Before the opening , they asked the Japanese self - difense Air Force to peforme something interesting . He said that they should take the annimals in the zoo into consideration . As you know , we Japanese are struggling with a large goverment deficit . Considering the amout of deficit , we should privatize this peformance team as soon as possible . After I watched `` Sister 's Act 2 `` , I really wanted to listen to Lawryn Hill 's album . Both of them are Amercians . She will join all kinds of activites such as English discussion group , go to meditation , running , perform yoga and so on . Before she started her IMBA program , we often hung out togerher . I can tell she does n't appreciate some Taiwanese cultrue . Also , She has a strong personaliy and sometimes I feel stressed when I 'm with her . Tonigt was fun for me . Our conversatin was in English since I need to practice the coming interview . I do n't like hollywook movies either . People can prevent some escapable tragedies or create a more enlightened society through learning wisdom from our intellectual ancestors , which is recorded in history . I miss the beautifl sunshine . We played togeher , laughed . . . Of course , sometimes we guarrel , but then apologized . It is famous for monkies and onsen ( hot springs ) . The next day , we went to Nikko edo mura - an amusument park which looks totally like an Edo period Tokyo town . It 's very delicious and having convesetion with them is very fun . I reaally need help frome someone . Specyfying my language goal . I recognize that time heals everythig . a SKY ) committed suiside . He was the younger brother of famous actress Choi Jin Sil who commited suiside 2 years ago . Before talking about tihs , we must know about his sister . She finally committed suiside , but the reason was never known . Finally , he committed suiside yesterday . My friend recommended this website to me , because it is an excellent place where I can freely exchange experiences with people from all over the world in different languages . And I found the atmosghere here is friendly . I ca n't understand why it costs over a 1000 dollars to pull out a wisdom teath if I do n't have health insurance . croudy day Yesterday it was ranny heavily . But today it is n't ranny , just croudy . Mokpo is a habor city in Korea ~ but , we do millitery service . Yesterday was the 63th anniversarry of the dropping of nuclear weapons by ( 1 ) So we have a responsivirity to decrease them `` Is it my fault to lose my intrest in that ? ( 3 ) Some forigners will think that what I said is a common idea in Japan . Japan 's national team is storong now . We enjoyed visiting Kamakra . I have read a book which entitled Congo Jouney I live in Saitama , where is located next to Tokyo , and I saw a lot of people kept coming to the station and they found all of the trains were canseled , so they started walking to their own home . I hope everhthing will be better tomorrow . I 'll rivive my hometown and hope to live here with my favorite landscape of the sea again . It is easy fot an outsider to cheer local people up and critiscize the Japanese government , but people who are the most seriously and deeply thinking about revival are the local people . One of the most important things they want us to do , I think , is to start preraring for the next disaster . My father likes to eat Japanese food named `` Na bean `` evey day . If your vocabulory and grammar are not good , you can not catch what they said . this is the first day I come here , I want to improve my English here , at the same time , I also want to learn janpenese . I know all of you are kind hearted boys and girls , and you all have good language telligent , I need your help , and also , we can be friends . There was no sun but , only constant snow and raning . If I choose only 1 from them , it means I abondon the others . Nowdays I think a lot of electrical appliance shops have machines to make bread at home : this way you can save money ( is it sure ? ) and time because you do n't have to go to a baker 's after work , or if you forgot to buy some bread , this machine can solve these little problems . It seems like a useful electrical appliance and one of my flatemate is thinking of buying it but I 'm not a fan of it yet ! In adittion , most people study English in high school . I ca n't wirte in English . I realized that rather small rivers in America which run through cities are covered with cement , like a snowbord halfpipe . ( * see below ) I have been using English more and more on bussines in recent days . My faverit song . Hello , my wonderful friends tonight I will practice my faverit song . I cant ' read some of the sentance as it is so difficult . If I go to a pub , I want to drink Lemonede . In the next class , I will teach a lesson , so , I have to prepary a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , yonger people , close friends or acquaintances . I 'm going to write a lot of things in this SNS . For example movies , books , my daiy life and so on . . . This book is about the globalized world and it was written by a journalist who has won the Pulizer Prize three times . Auturn is my favorite season ! Japan has 4 seasons , spring , summer , autum and winter . My favorite season is autum . Then we can taste autumn speciality crops , pear , grape and chestnuts , ( The word `` marron `` is more populer . ) And it will be rany tonight . I tought them how to play ! Today , I had a health check at my shcool . Notihng was wrong with me . You can cook it by simply pouring water into a cup with some powdered flavor and putting it into a microwaver for five minutes . Computer graphics is very difficult work , so I often search for hints to solve problems on the intearnet . I think I should change my atitude . Because I have no opopportunity to communicate with them before . This is called `` white nigth `` and people go to bed very late too during this time . Next year I wil go to Canada or New Zealand as a WWOOF . I felt so misarable , so I thouht I would write about it here and get some input ! It 's a big event for every Chinese university , as well as primary school , midddle school , and high school . After the speech , every college in our uinversity was requried to present a creative show in one minute to show its different style and features . During thse performances , the applause was enough to bring down the house . But choising presents is interesting I guess . This is my first time to post something about myselfe here . There are matreshka ( exclusive and usual kinds ) , different things made from elm , from clay , also many kinds of jewelry made from stones , dalls , stuffed animals , wooden furniture and big wooden figures , textile , clothes and so on . It 's a muslim programm I have never seen , maybe because it 's on in the early morning or because I watch TV very rarely . . But , on the other hand , care assistants for elderly people is lacking in Japan , so the government is planning to accept workers from Indnesia . It happed when she was n't with my friend . For instant , the famous physicist Einstein , changed our tradional view of the world . Parents in China attach a lot of imporance to scores and rankings . The baggage delibered was a black chair , two tennis rackets , a big shelf , bedclothes and so on . According to my inquiry , my baggage was deliverd to another place because of a mistake by the staff . I saw Ugly Betty who is a very adorable charactor in the drama . Omlet is made with carrots , beef , onions , pepper and salt . Resently , I 've been trying to be calm by changing the way I think and my attitude about everything . And it mekes me to be slightly nicer to other people too . Meeting with Alchol Big surplise , news have just arrived . After asking me many questions about my courses , my intership experience , career planning and some other professional questions , she let me read three emails and tell her the main content of them . I read many emails like this last year during my intership . I asked her to tell me more details about the positon . After that , I knew the duty of that position is to deal with many triffling rountine things , nothing special . She told me more things would be dicussed in the second interview . So just foget it . I 'm very glad to jion you all . My mom , dad , elder sisiter , her husband , her child , my elder brother and his wife . I 'm looking forwad for you to point out my errors . Lusy 's characterimpressed me more than others . Today , 12 . 5 , is the anneversary of the Wenchuan earthquake . tragy . Costing hundreds and thousads of lives , the disaster has broken hometown , we shoule also try very hard to help the people to Today , I attended English calss from 8 to 10pm . Usually , the calss lasts from an hour to an hour and a half long . therfore , I am making a resolution to live abroad . Actualy this one is a ' mobile laptop ' so it 's smaller and lighter than the old one . By the way , we 're in a summer break here , and I 'm planning to go to beaches , museums , travering , watching fireworks , etc . . . I agree with the author 's opinion that in Japan , children can not leave teir parents house hecause their parents wish their children would depend on them ; though their parents are complaining about such situations . When parents live with teir own father and mother , they can ask their father and mother how to raise thei children to be independence . I think that those are the reasons that Japanese parents wish that teir children would depend on them . A few days ago , it snowed arround my house . Today is Chirsmas . I met people of various agethrough voulunteer work , part - time and practical training . Oh ~ Today is aiso a hot day . Right now the temperature in Fukui is 10ish degrees Selsius . We remainded for extra inings because the Giants will win . We thought it was possible for the giants to winn , but the game was so exiciting and the next one will be a win . I went to the dental clicic to pull out my wisdom tooth . If you are interested in it , please read my journal named `` Describing a picture ~ `` ) She has a really tiny waist , hwever , she does n't have slim legs lol ! She looks like a dool , because I can not think of a human that has such a tiny waist > < . Today , We smile , cry , shop , and lost something on this graund zero and bombed erea . Of cource , We have respect for the dead . She Succeded . It was a visious cycle . Today , she put out an unbeliebably big poop ! ! I graduated ( guraduated ) Chuo Uni . I like socce , drinking part ( parties ) , and talking . As electricity has been cut off because of the earthquake , I can not cook and eat food which is sold at a convinience store . The best one is baked slmon rice ball and the second best one is fried rice ball with various ingredients . If you have a chance to come to Japan , why do n't you try eating a brice ball ? Acording to the weather forecast , it will clear up and be sunny day . Aroud 10 a . m . I wil go to the City Museum to see the paintings , actully , I have been learning English for many years , but I am still not able to speak English fluquently . Maybe you are wondering which city in chian I am from , so , I can tell you I am from Changzhou in Jiangsu proveince beside Shanghai . I 've been so addicted to quotes these days since one of my Austrilian friends showed me some funny quotes and love quotes several months ago . I recoment you Nagashima Spaland ! Then , the weather forecast says that a small typhoon is likely to aproach here ! I do n't want to buy one from a Chinese resaler on the Internet . My dog expresses his desire to go outside by scraching the door and staring at my father 's face with expectation . My dog 's most hated word is `` shampoo . `` Last time I visited my parent 's house , I asked him `` Can I wash you with shampoo ? `` My dog dushed to the door , opened it very quickly , and run away . Pepole living in Osaka eat `` Okonomiyaki `` with rice . It tasted like strawverries . There will a high school entrance ceremony for my yonger son tomorrow . The nuclear powerplant in Fukushima was highly affected by the big tumamis so we must save electricity . Instead of starting the summertime , my company will stop using half of our building 's elevators to help save electricity and cooperatea with the government in improving our economy . I look up to him even though he is youger than I by three years . He told me the reason why many Japanese people have no hope for their future even if they have a lot of muny and their lifestyle is better than any other country . She likes English and so in the future , I may be taught English by my daugher . My father was researcher of a geological survay . I do n't know amang these qestion . He said it 's yammy that 's why I 'm so happy . He ricomend that I should stop attending language school ! ! but , for 2 months I wnet to 10th . ? ? ? Someyears I have a Birthday Party . I will have a chocolate cake and get gifts from my friemds and family . This is the first enty By the way , she paied 170000 yen for the painting . My friend always says that internasional love is difficult . . . She is easily frightend , so as I expected , she started to cry as soon as she heard the sound of waves . ( picture1 ) Since we got free tickets for some amusument parks and botanical gardesn , we went to some of them . While there , we walked along a slope which surrounded a large aquarium that is cylindric in shape . We could see these fish right here , so I felt like as if I cound touch them . ( sorry I worte a dirty word ) My colleagues and I argued about the mechandise 's selling place this morning . Since my brain controls every part of my body , both phyical and mental problems have happened , for example I have had headaches , chest pain , difficulty breathing , could not think very methodically , excessive depression and aggression . Due to these symptons appearing since elementally school , I could not go abroad . At that time my parents and I did not know the cause of my ill - health untill January 2011 . One day my mother took me to a psychiaty , but to be honest I did not want to go there though . Since I came here , I have been trying to understand what people are saing . Novemver is coming Novemver is coming already . I experince many things this year . For examle , I held meetings , practices , performed at many places , and planned events . The rainny season is coming . The key to breaking with the victious circle is to change the fixed patteeern of thinking once and for all . I ordred seeds of a flower , solube YTT . A white flower boolms on the first day , a week light blue boolms on the next day , Nakahara then reallised that the lesson fee was much more expensive than he had first seen it on an advertisement . The staff cheekly tried to give the half a year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recentry I challenged to be vegitallian because of diet and look shocking video which makes me think about various problem ( I will skip the detail ) . Fortunately we have vegetarian traditional recipes in Japan , and I am learning traditional Japnese food from a recipe book . It will be sunny the day after tommoro . Learn Enghish Today , I had an interview at a Company but was not sucessfull because I am bad at English . In this book , there are handreds of phrases . Actually , I wanted to watch the 3D disny movie , but the tickes were sold out . Three advnetures go to the anciant world , and they meet a monkey - man . I had expected there to be a lot of British people , but in reality , there were only a few groups of British and the others were moslty from Eastern Asia , especially Japanese . My conclusion is that they have it in thier home . Thanhs a lot = ) ) ) I 'll introduse Japan to you , and what you do n't really know about it . Hi , from today , I am going to introduse to you Japan . Becaouse of all the mountains , the area people can live in is very small . He often says `` My studens always talk about the weather . `` I think that Japanene people like to talk about weather topics . It could be a good thing for a movie to be concencrated but I do n't think it happens to Angels & Demons . during the free days , I went at the museum , Zoo and went shopping with my hasband . I put an extention on my hair . But the movie disapponit me And tomorrow is not only the beginningin of great heat , but also could observe solar eclipse . Recentry , I 've made a habit of staying up late . And I rade this bike . I am a Japanese person learning Englinsh . Have no fear of perfaction , you 'll never reach it . - - - Dali Salvador Today , I thought about my dream and then I talked about it with my freind , Ran . Because there was a bunch of great stuff over threre that I have to tell you about , It 's gon na be a long diary . A couple of hours later , my mothet had an idea to turn off the indoor lights and turn on the outdoor lights , after that the bird flew out of the window . Our carriculum has to be finished before summer vacation , so students take classes on Sunday . I could see books from China , Korea , Itary , Spain , Taiwan and so on . They are an Engrish book and a quilting book . I had attended a quilt class for about 5 years and an oil painting class for about 10 yeras in Japan . Last Sundy , there was blind person next to me on the subway platform . The climate here always changable : it was typhoon ( season ? ) only a few days ago and now is already a sunny day of over 35 degrees ! I have read a book called `` Littles from Vietnam `` My Sunday is made of sleeping , eating , having coffee and woking . He thought he might be able to crimb up the thread to Paradice . So , he grabbed it and started crimbimg . Up and up and up , it was a long way to go up to Paradice . He saw the others also crimbing after him . So it was very interesting and excitng ! I work hard , and early every morning I prectice my spoken English for an hour . One Italian guy said that he does n't like MacDonalds at all . He also said that Italian MacDonalds is different than American MacDonalds . He accepts Italian MacDonalds but he has never tried American MacDonalds because it 's greasy food . Then , one Korean guy said that Korean MacDonalds has a kimchi hamburger . Almni reunion In the end , I bought a red bag and some pretty colthes . I understand it is still difficult for women , especially for old women , to express their honest feelng in Korea , since there is such a strong influence of Confucianism . I do n't have a car lisence yet , so I hoped I would get it . But getting car lisence is quite hard for me Because I am worring that I would slam into and crash with other cars . fortunaly , that has n't happened yet , and I hope it never will . I went a starnucks today again ! or maybe it was a sodar ? We Japanese rarely buy a bottle of water or sodar in Starbucks . But as I was quite tired today , I did n't have the enagy to do it . Instead , I am trying this . Then there are pictures of Anpanman characters at July and Ougast and December . We do n't understand how imortant the day is . She is supposed to stay in Arlinton in Massachusetts . When I was prepared to pay up at the accounter , I found the price very expensive , which surprised me . I wish thatall the friend from the net who view my diary and findmistakes can give me corrections and adviseon the usage of languige in the article , even if it 's a typo . He stayed at a youth hostel in London for one week and became friends with many tourists from all over the world such as , Holand , Australia , China , and Italy , by talking with them in English . When I bought it , I was happy cuase I no longer have to borrow my friend 's bicycle . It sounds like those who have tattoos are bad and unsiuitable people . `` Tattoo `` sounds more fashinable and smaller in size . ( basicaliy Whoever has a tattoo is rejected at public places like swimming pools , public baths and public Saunas here ) `` Dady Look at the big carpe on his back ! I will watch the movie `` The Social Netwark `` this weekend . Monglia Asean country . I am a senior in high sacool and this is my last time so everyone play hard ! ! ! : ) Whether it is running or jumping , evevryone will do their best ! ! ! I am really pround of them and very happy to meet them in school . `` Oh , my llittle baby . . . Please teanch me how to concentrate on studying . > < It 's only 12 : 26 and I already wana go home ! The prom pictures should already be updated on the school site but they 're not there yetttt grrrr I wana try the real full - cource French meal , or whatever it is that you call : S I checked an otological website that said `` If you continue to have a cough , you should suspect allergies . `` I got the idea that the cause of my cough would be allergies , so I 'm going to an otological this afternoon . Recently , I could n't write a dialy journal in English . Tanzawa National park kanagawa prefectre . I rided a go - cart . So , I made my curriculum vitae , and I 'm searching in Europ or Asia . So , I clened my room . T `` is challange time . Every morning swarrows come to my balcony . It is rainy today , but we have a plesant day . We have an indoor barbecue ( I do n't konw whether it is called a barbecue or not . ) . But I can feel good when I 'm livign ( living ) in my room from tomorrow . My class is lisning 2 , grammer 3 , conversation 3 , reading & writing3 [ the max level is 4 for everything ] I think that this rythm sounds good . XD So , I have to overcome this psychological obsticle . . . . . . . Teaching them Engish would be a tough challenge for me because I would have to take full responsibility for their results on their high school entrance exams . Even though the pay is the very low , I still accpeted it without a second thought . Just going to the libraly kept me happy when I was a child . I 'm going to be busy from tommorow onwards . The day for the Eiken English exam is comming . I had almost forgotten that I needed to study for the exam till I received the card , but now I 'm a litte uneasy . But I know my English skill is not enogh , though I 'll have to work hard for the 1 week that I still have before the test . becos my bag is in the room thank you for riting . : ( Olive found a very cute stuffed animal in the shop and her mother boutht it for her . Althoght It has been more than 1 month since this new year started , I have n't even started yet ! I 'm actually not good at grammer and reading more than speaking and listening . Because I could n't understand most of grammers , it made me sick to study English . But the most inportant thing is to keep studying and enjoying English not for exam . But , I will aplly for a job with another company . I am studying document 's grammatic , speech , writing and others . . . First , I plactice speaking in english with videos . Then , I wrote an nessey . I thought that iPad is more confortable for her . This have something to do when a woman becomes pregunant . When ladies are 5 months pregunant , we have to go to the shrine for our babies blessings . I have been studying English for a year in oredr to overtake a friend of mine , but she seems to have mastered a higher level of English than me . He killed Peter 's brother Nathen , and he was driven to become Nathen . Finally , he felt so guity he prisoned himself into a world within his own mind . Finally , they freeked out and argued with each other , and Peter shouted at Sylar , blaming him for there being no way to get Nathen back . The wall was destoried by themselves . The work of this committee is to organnize an athletic day , I try to give my effort to this commitee activity ! My wife recomended me to this site . It 's gon to be hard to control / maintain a schedule of studying and hanging out with friends . After carful reviewing all the terms and conditions , Jessica finally decided to sign the contract . During construction , the main lobby will not be accessible to emplyees except to executives . This is my first article at lang - 8 , so I guess writing an introduction about me would ( sounds more natural ) be the best strating . Now I must buy it on the interenet . I am a Japanese lady enthusiastically studying English writig , reading , speaking , and listening . The movie was very enjoyrable . I recomend you to have fun in your special style when you see colorful movies like Disney 's . I really like to take photo 's because I can documeting my life easlier . I feel comtrtable and peaceful when I take them . Everybody agrees that the products of Japan are of higer quality . This word `` Kaizen `` which means `` improovement `` has gotten very famous , and many factories / manufactueres are trying to do ` Kaizen ` to imutate Japanese quality all over the world . Because I believe this natural Kaizen in Japanese production is strogly related with Japanese calture of `` Ki wo tukau `` . The calture of `` Ki wo tukau `` is everywhere in the world in social communication , but other countries do not implement this thing actively in their work . This makes them follow `` Kaizen `` naturaly . `` Sony timer `` is the timer which makes products malfunciton when the warranty is expired . Todey 's menu is Curry . I drank some alchoric and ate yakitori at a yakitori restaurant in Shimokitazawa last night . It had a strong taste and was a bit hard to bite , like jarkie . Within the next two months , I want to learn to drive a car . I think that would be a very intersting thing to do ! Fistly , please allow me to introduce myself . My hobbies are watching sports , especially Formula One , playing tennis , and wathing movies . Decemver 31st . Honestly , I do n't like to study foreign lanuages . Especially English . Of course , I knew we have no choice but to learn foreign lanuages , because we are in the age of globalization I appriciate those members who correct my diaries . I had to eat the dish they ordered cuz the food they like to eatting r the same : ) It seems not to be alseelp . In regards to sleep , I lookep up an interesting expression in a dictionary . By sprinling sand in children 's eyes ! ! ! In the world there 's nothing more valueable than people . There are very hevy . : ( Although suffering from a snow disaster at the begining of the year and a terriable earthquake rocked the Sichuan province , the on - going Olympic Games inspired our passion to our people and country . We all close our eyes before starting the game , but only thieves can raise their heads up , open their eyes and look at each other , which allows them to know who the theives are . Afterwards , we start to guess who the thieves are by making inferential statements like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes , afterwhich we poins at the persons who we think are thieves . I palyed basketball with my friend in the park today . My mother tongue languages are Cantonese and Mandrin . I like to read books , newspapers and stories from the internet , where there are a lot of pages of information , entertaintmet and literature , but ( I think ) books are beter than any other wayas of reading . The book that I 'm reading is named : `` Lestat the vampire `` , and the plot is about a new vampire who wants to know the secret of his inmortality and he enjoys the pleasures of the life . Lestat is arrogant , and because of the secret , he toured many places ; I like it a lot because of the way it is narrated , the history is another atracttive element that I enjoyed too and also because Lestat is handsome ( in the movie : D ) A lot of intelesting TV shows are on the air in December . My video , which is set with HD , is aveilable to record TV programs for 22 hours . I was so busy that I could n't enjoy or finish watching my recorded prograns . ( T _ T ) . Noth Korea signs forward as a goalkeeper in the world cup ! He talked about the environmental with a lould voice . Sometmes a citizen would ask `` What are you really going to do ? `` Toronto ranks second best palce for living in the world . Toronto is ranked second best palce for living in the world . Could me give me some exanple ? However , it 's somewhat difficult for me to learn because I must controll both hands and legs individually . I 'm doing image rehearsal and praticing easy beats . You can guess how embarassed I was . Or a golded driver ? Anyway , I rememer a book I read when I was in junior high school . It turned out that Jack the ripper was actually Sherlock Holmes himself , who was so strongly addicted that he had delution . Actually , I had an inverviewed with TIM HORTONS . I applied for a position and inverviewed this Wendesday . It 's ( very ) amasing . So I wonder if you could do me a favour of revise my poor leavel composition . Today , I made sentences of dialogs for learning inginterrogative sentence . So I wanetd to get some student handbooks and exercise books . Where are the good spots in Shingapore ? Before feeling the effects , you may temble a bit already . That movie is broughted by konica minolta , who is famous for camera , plinter etc . so I have n't had enough sleep recentry . When I first saw thousands of Jizo at the Hase temple in Kamakura about 50 years ago ( wow such a long time ago ) , I felt unpleasent . good moring everybady ! last night my freind came to my house . this moring I made her breakfast . beaouse she thought that I was able to cook ( good ) the time I speat with her was enjoyable . I want to ( `` wanna `` is slang ) say that I am extremly bored . It is a family comdy , and it is really funny ! ! It was a very happines party , and her speech for her parents made a deep impression on me . It is my first time to write on the Langa - 8 website . Fortunately Japnese people are allowed to drink outside , so of course we can also enjoy drinking under the Sakura trees `` Some things that a glacier might do when it retreat is instead of depositing till ( scraped up soil ) in the area , they might leave a big ice block . The ice block breaks off the glacier and as it melts it leaves a dpression which can become a lake . `` When I listend to the song for the first time , about ten years ago , I was so impressed . The song was fetured during the next few months on a heavy rotation . I experimented becauce I had no other plans today . I wasted 2 months on dissertaion period . . . All I know is her english nam ( not her real name ) and her major . Since the midterm is worth 30 % I do n't think I can pass the class with a poor socre on this midterm . My moher was in a hopital for a week . I woner if my students like that . From now on , I got to have snikers sor a while . These days , I submit some resumes and application forms to companies and graudate schools . I like me as I am nowadayas . I want to try to write some my thoghts but sadly , I recently have read nothing . Recently , I have not felt like studying any foriegn language . I found some intersting words about learning foriegn languages in a book I read yesterday . `` Learing a language is like laving water by a bamboo baske . `` ( it has many small holes ) , but if you keep learing patiently , you will got good at it . `` I hope I will be able to easily understand English DVDs without subtitles in inthe future . . . Do you have any birthday that you ca n't forgetable ? ? Well , I talked with some of my employees about the job decription . He want to know more aobut Thai food so I need to perpare more ? ? ? about the food and practice cooking with my mum . . It is hard ( ? ) for me to understand English in business conversiation when speaking with him . . Well , I will do eveything as best I can . Including me , most of ( the ) Japanese is parhaps good at Listening and The number of patients of infuluenza around the world is increasing everyday . Thai people make a Katong from a banana leaf and put forwer insite it . Then we put it in the river because we believe if we send our apologies down the river we will have good luck this year or somting like that . But today I will not tell you more about the Katong fasival . His head hung from the brige and his body floated in the river . He is not Thai but from some other country , mybe Germany . The polic are investigating why he would kill himself or why someone would have killed him . I am thinking about going to Vancuver for one or two days . And my oral Englsih can deal whith some easy topics . What 's more , I am also starting to read the Englsih novels such as `` The Red And The Black `` and so on . From such novels , I can learn some original sentences and the useful struture of them . Please correct any incorrect sentensese that you find . Since , then I 've been a housewife for alomost 4 years . I resistered lang8 today . My porpose at lang8 is to learn English and make new friends , while learning about foreign cultures . He said to the firefighter 's wife `` He can not move his musscle . . . I slept after work beause I was tierd . Pronauciation is impossible . . . I 'm not sure how to improve my English pronaunciation . Even though I 'm using this website to improve my English pronaunciation , in the following passage I 've typed up , I always ca n't pronauce the same sounds properly . bunished = `` sh `` That 's the reson why I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . As you know , everything is expencive in Japan but I found cheap clothes in a shop . Yes , it was a really lacky day ! ! Comfort foods are so warm and and familiar to me , espically Mom 's cooking , it 's a real blast from the past . In the winter time , the wheather here is always badbecause its wet , cold , and windly . Opening my mailbox this morning , I found a refusion letter from Warwick University . It was the top choice among the five universities that I applied for , so it came at no surprise . I did realize this from the very beginning , and actually , I did n't long for admittion at all , did I ? However , when the reselt finally came , why was I so disappointed ? A cell - phobne has many benefits . First and formost , average Japanese job applicants have studied English for around one year , but my visa was not working holiday , so I could go to a language school for only 3 months ; it was not enough . Some Japanese people also took part in the meetin , but most of them have been living in Singapore for a long time , and they can speak English very well . Yesterday , I went to Akita - Ken by Super Express , because my jpb is near Iwate and Akita . These have some beautiful illusts . These books are closely ralated because good light nobvel are animated frequently . My eldary sister and I were talking in the hall . So , there are a lot of enents . if you are inetrested in it or Japan , please comment . Cooooooooooooooonguladuation ! ! ! ! ! ! ! : ) My Japanese friends , and European feiends live in long distance places . Our 5 members met in fron of DangGoGae station . It is too defecult to speak English . I think it 's a problem to read English books , articals , news and so on . `` The baby is cute ( kawaii ) . `` is an example that is easy to understand , but the word is also used for thhe elderly as positive adjective . at 900 am untill 530pm . . . I am going to aplly for this position . But I 've only been studing English for 8 months , so my English is veery terrible ! I 've been practicing the piano since I was 3 years old . This is Sarah 's douyhter . Tokyo has a many restrant where you can eat a delicious lunch . I 'll tell you a restaurant I recommendate in Shibuya . It has very delicious garetto and crepes . Many people in my company says `` it 's greate ! `` I am skeptic about this , because he appears to be busy . The players explore the dungeon and return to the catsle repeatedly . I work at the Welfare deparatment . The kichen is always dirty because of the Taiwanese woman I live with . She does n't usually clean the kichen after she 's been cooking in the kichen . We always wash dishes and clean the kichen . But she does n't clean the kichen after using plates or the frying pan etc . So the other flatmates began to grow impatiant . First , the only Japanese actor , `` Sanada `` , who played the capatin of the spaceship , died first and unnaturally . Second , I saw a monster sneak into the spaceship and kill the crews in the latter half , but I do n't get why the preddecessor captain could survive to turn into a monster and kill the new crew . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thougt . then I had a lunch that consisted of INARI ZUSHI and mashroom salad . I was not tired becasue I took a nap . And my neck felt very good doday . It 's SWALLOWTAIL BUTTURFLY . However my friend who are going togather said that a natural disasterstrikeseverywhere and whenever we ca n't epect . Since I have the experience trapped in the elevater by blackout of thunder I am really nervouse about these kind of things . I want to break my language barier , which has stopped me from making new friends from different countries . Now I 'm learning English - wathing English films and tv programmes . ( Sorry for my grammatical mistakes : ( - I speake and translate better than I write ) In china , the big birthday is a very inportant day in every chinese person 's life I have never seen heavy snows in my life , therefore I & nbsp ; am a little execited . I always have a litte dream : I wanted to dress up as a monkey with a banana in my hand since October last year . I 'm not a nurce or a doctor , I 'm working at the reception desk every day . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowlede about your own country 's tradition because some people are interested in Japanese clture . It 's a Japanese traditional food eaten on New Year 's eve and it 's said that this custome was made in the middle of the Edo era . It relates to the reason we eat it on new year 's eve . Next I want to talk about the reason we eat the year - crossing buwheat noodle . The second is the wish to cut off your troublesomes , and not carry them over to the new year . According to a website , which conducted an internet survey to 1000 people , about 80 percent of people ( in Japan ? ) eat the year - crodding buckwheat noodle . She did n't notice a small wall behind her , so she bumped the car 's rrear - right side into the wall . I will be nuervous ! ! Anyway I 'll try to make my uccount now ! ! Thanx for reading my concerns haha . . What is Chrismas ? I do n't like Chrismas , and most Japanese are not Christian . Why do they celebrate Chrismas Day ? I think most Japanese young people are celebrating Chrismas in order to have sex with their partners . They should re - name Chrismas day , `` Japanese sex day . `` Everybody in the world already knows that all Japanese people are peverted , they will not be surprised at all . Stupid Japanese singers release Chrismas songs in winter lol . What do foreingers in Japan think about this stupid habit ? Japan is just a follower and dog of wenstern countires , we do n't celebrate Chinese New Year at all . Japanese should stop this repulsive event unless they properly understand the meaning of Chrismas . You know what , tonight , every couple is having sex in every sex hotel like monkies lol . Are They diffelent ? That makes me flustrating . . . I would like to tell my thoughts fluently and not so stressfully in English someday . I heard it would be warm today , so I left home in a long cort . It 's extremly surprising ! Gladuating university , I worked as a chemist in Japan for a couple of years , but quit the job to study English . After that , I became obsessed with English becouse I met a lot of people who come from various countries and learnt different cultures , history , food , ways of thinking . Is that a natural responce ? Since the earthquake occured and nuclear power plant halted , The Tokyo Electric Power Company , Inc has conducted scheduled pwoer stoppage . Neon ligts are turned off in the streets . My roommate told me that the pizzaria is the nearest washroom plase . I wnet to tne washroom But I hope this will make the Japanese national game developped . nIn my opinion , We have to face a lot of pressure from any part of our lives . Such as the challenge from our education as well as the high expectations from our parents . They are all on sky levels leaving me a sence of anxiety . The more anxious I get from the pressure , the more hard conditions we will absourbed in . nThere is no way for me to escape . ( If I had known the water in a pool was acutally shouder - high , I would have tried three years ago . ) Anyway , I decied to try swimming and now is my favorite exercise . That woman that jostled with him looked at my face and suddenly said ooh yey ! Opppsss ! ! ! because , this is my first visit this website , and it is a littl bit differnt than a korean website . . Her 2 - year - old son goes to a nersery 4 days a week . I wo n't climb up the mountain but I will go hiking in the glassland . I 'm looking forward to walking on the glassland . I created my accout on lang - 8 Why Financial Diaparity Can Affect Freindship ? Nowadays there is an argument about financial diaparity and whether it will or will not affecta friendship . Such as life atyle , life condition and personality . `` If you do n't think of something useful , nor do somethig useful , you will not be able to develope yourself . `` Everyday , I test pruduct or study something . I think it 's useful , sometimes . I chat with my friends as well . The reason why I am interested in trade is because I believe that trade helps developping countries and poor people . I could not tell anyone and I was afrid my parents would worry about me or my friends would make fun of me . We usually go to shpping for sightseeing on weekend . Here in Wakayama , we ca n't live without a car , because the fee of public transptation is expensive . Is the sentence abovr grammatically correct ? There are special New Year 's meals , decorations ( both interir and exterior ) , visits to a shrine , visits to family members and relative 's houses , special games , and so on . I hope to improve my English more so that my English will no longer be an obticle to talking with others . Today is crismats , Shoppers use thier own bags instead of getting plastic ones . They get interested in EV cars , solor panels , and CO2 free stuff . However , when it comes to buying foods such as fruits , vegitable , and whatever , you bet that they tend to choose fresh ones . If we consider the eco - friendly options , we should check the date on the pakage and choose the older stuff . Bcause the older ones keep aging until they are abondaned if people choose only fresh ones . Hallo , everyone I 'm a little drunk , so I 'm worried if I can do my work normally tommorrow . I went to Woodstook tonight . It was nice to be there tonight in a familier atmosphere . So , I do the same way and it tastes delious ! ! But my frist instinct is that I shoud still keep on going in my art career . But a few days ago , his compliants of 4 years ago were reported with the title , ' Jay for Defaming Korea . ' He just grumbled about his tough situation in harsh language that is usually used by many teenagers , but many Koreans are that he decieve us . The book store near my house went on bargen sale up to 50 % . He told us the proununciation is very important in the learning process , but he also said we need n't worry about poor grammmer because pretty much nobody will care about it when you are chatting in everyday fashion , except for when under a formal situation . The first time this happened I felt so sad I could n't say any words ahout that , and I was frightened by this action . Maybe I get angery but I do n't want be weak . Hope my English have big progross ~ ~ There was a peson who knew me from before ( when ? ) and she called me while I was studying and anked me to be an assistant professor for her English center . I will take this oppotulities ! Maybe if sometimes , at least once a year , the monsters from our nightdreams would give us gifts . Even if they were modest but pleasant . Maybe it 's becouse I worked 8 nights ) And fiower are blossoming . If I can not keep watching them regurally , it can not help improve my English , so I watch them the way I described . I notice that my vocabraly expands by reading Englsih subtitles . So I am really looking forword to these events ^ ^ I 'm going to meet Mickey mouse and Miney mouse . Why can some people commit suicide in order to follow a famous actor or actress whose charecter they can not truely and wholly understand since they can only meet them through the TV ? Even though I like sining , everyone around me hates to hear it . If you find samething wrong in my diary , please correct it . I always think the river is like the Ganges River in Indea . I am so happy but then , he is a japanes . `` A cracked pot and a holeless lid `` in Japanese means `` Even if we have some faults , we can conpensate for each other . `` I like this kind of idea . Priority seats are for elderly peaples , expectant mothers and disabled people ( people with impediments ) , but most people who use it are not any of these types of people . Most of the time , it is used by young peaples and healthy peples who do n't need to sit there . And if a weak person gets on the train , sitting peaples do n't offer thier seat , therefore they ignore weak and elderly peaples . They do n't need it , but elderly peaples want to sit there ! For this reason , I went to the photo studio to have my photo taken , which is neede for the / my student ID . There must be a / some reason why Internet shopping has developped as it has . In conclusion , after all , what is important for us to utilize Internet shopping is an adjustment when a certanin problem has occurred . * Increase the hability of concentration . Yesterday , I bought a restaurant buide book `` Michelin Tokyo `` . I do n't have beatiful clothes , a wonderful car or a gorgeous girl friend . . I am a graduate student learning English education in primaly school . Especially I am interested in coopelative learning in the English Education field . My future dream is to become a teacher in primaly school and to be a researcher someday . When I rode my autobike on narrow road , suddenly a girl crossed the road in front of me . I braked hard immidiately . I am looking forword to meeting someone : ) I am a Chinese student and I live in the Anhui provience . I study at Xuancheng Vocanical ( Vocational ? ) and Technical College . I love English very much . I watched a movie at the cenema with my friends . My dauthter will go to Universal Studios Japan with her school on the second week in May . She dreamed about the amusement park almos every day . When we got out the attractions , I found that my unbrella was stolen . My next English speach is about that . Center entrance examination for univercity It raists as one of the greatest movies I have ever seen . Thril , exciting and shocking ! ! ! So I really appresiate my host mother . I know that there are meny people in the world , and that they have many diffrent personalities . Sometimes it amazes me when we can understand each ather . I 'm really bussy now . However the foreign countries may be not confortable for your research , you will be able to see Japan from different point of view . `` I agree with his opinion . I think the thing missing from Japan is a sense of crisis . Although the number of peple who eat whales has been decreasing in Japan , some people who lives in the specific areas still hunt whales to make living . Admittedly we are surrounded by a lot of scintillating gudgets such as video games , personal computers and whatnot . Though visitors can not copy anything in IE , I can copy everything in firefox by an extention . There are some people suggesting to encourage and praise students when they meet difficulty while some other people choose to blam them and sneer at them . I wish everyone would be friendly and love others , just as you expect to recieve courages from others . It was hot and spaicy ! Of coure , sightseeing and food or even traditional events snd so on are probably within my knowledge . . But , I 'm thinking that I 'll need to get enough rest so that I can prepar for the next challenge . . Right now , I do n't know what the future holds or what is in store but at the least I want to fulfill my tasks untill the due date . Hi my nicname is Ryuki . Thnak you . I wanted to run the air - conditionar because I wanted to be cooled off . but it will become more difficult to have time to learn than when we were studens . I think that the student who recognizes the importance of thire privilege can make use of thire college life for sure . When I rode an elevater , I noticed that the elevater car had no door close button . For instance , I knew `` legilation `` , `` archeologist `` , but I did n't know It was simple enought to do . I ca n't help tryig other combinations The opening sound is really familir I am earger to go to a theather and watch it . ( How could a hundsome boy grow up to an ugly man ? ) However I noticed him in the trailar ( maybe , full CG ? ) . It is difficult , there are a lot of new words , I can hardly understant It Also I was very impressived by other student 's topics such as Discrimination . others confidendtly ! ! The Colossal Squid 's eye is as large as Soccor ball . Recentry I gained a little weight . Plesase give me advice ! I 've never been to the mainland of the States but I 've been to Hawaii over twent years ago . That 's why you can find many signboads , menu of restaurants and so on which are written in Japanese language and many locals speak Japanese . Before today , I evrer tried to write a diary in English on my Blogger . I did n't have a way to find my mistakes and use correct sentenes with this method . I think it is not good for ? to make international rerations . To make a good rerationship is so hard . After 1 cup of coffe I was alive . At this point I have almost forgoet it all . The breads whici is piping hot , fresh from the oven is delicious . I got pickpocked A man bumped into me and walked away without saying anythiug . The pickpocket fell over and he was caught by sevral other people at the cafe . It was mostly cloudy in Palau , because it was still the rainny season , but UV was really strong ! Because we made our way on the bas , we were late . The trouble is that I am not sure about grammers , especially whether the verb tense and the form of words are correct . Marugame Seimen is a Japanese udon restsurant . Work was very hard because there were twice as many customers as usual , . I think it was because of sumer vacation . We 're going to study `` Reganomics `` next time . So I have a lot of troble now . I found that the pronounciations is different from English . And I like to talk with foreignors in English . This mornig , I woke up becouse of thunder sounds . A street was flooded and I was caought in a traffic jam . Anyway thease weather was crazy for a few days . The weather forscsater says tomorrow and the day after tomorrow will be a thunderstorm . It reminde me of when I made it in Australia . They are Japanese and Gurman . When I hve French toast , I think of them . Hi evry one ! I have moved to a new apartment and I 've got a parsonal room . becouse when I wanna do anything I do n't need to worry about my family . I want to develop my inglish skills ! Thank you evry one . Everyone of korean has important four obligations . Its main star is Woopie Goldbarg . Every Sunday , I watch it on DVD and I repeat Woopie 's phrases to practice English , Insidentally , the opposing team was much better than ours . I could n't believe my eas . It sucked . My appartment has one bedrood , a spacious kitchen , a bathroom and a nice balcony . I got a list of parsonal dates , and had a shock because most of them are from famous universities . So check my sentense , please . It was very difficult to seached for a job because the economy in Japan is very bad right now . And you are very good at drowing pictures . I remember crearly my memory in Melbourne . Today I read a lot of journals and realized it 's acutally all about practicing English . I could n't fall asleep rencently , We will have not enoguh time to take care of our baby either . Athough I want to play , I 'm fed up with this unenjoyable lifestyle . We bought a Chrstmas tree and accessories for it . Honestly , it truely works . I am currently studing English at SDA . I drove to an umbrella shop , got my kids ' umbrellas that had been repaired , and reqested to have another umbrella repaired . Please help me with my Englishm ! I would really appreciate it . Maybe I can even help you with yoiur Chinese . As we grow up , we come to beware of consitency and not telling lies . If we do n't care about those things , it would have a bad impact on not only the people we talk to but also ourselves . What goes aroung comes around . I had an opportunity to go to Austrelia to study English for a few weeks when I was high school student . I : There 's a vancancy in my heart . Why you do n't just fill the fucking vancancy ? The reason why I ca n't fill the vancancy is because I am a coward . Why do n't we just keep silence and time might fill the vancancy when it passes it . Time might fill it wirh what ? Tommorw , I want to come home earlier than today . Therefore we are looking for delicious restaurants , sweets shops and supermaket etc , every weekend ! I woke up today very early and I did n't sleep very well at all ( ( ( I woke up after every hour at night . . . ( ( ( but it did n't prevent me from doing my morning jog ; ) ) ) so after a shower I feel freshed and I do n't feel any tiredness ) ) ) Just like the life of Europ in the middle age . good morening . For the walm condition , there were lots of pollen . I like spring , but I hate pollen more than I like ( hate ? ) walm day . This title has tha same name as a Beatles song . Though I 'm in my firrst year of college , the graduation is not as far away as we sometimes imagine . We drank some wine and some snake , I ordered a `` Streawberry Margarritas `` . Before , I did n't kown what a Strawberry Margarita was , but now , I understand . A `` Streawberry Margarritas `` is a sweet - tasting cocktail . I like it . After that , I met some new friends , they are from Japan and Korea , they are firendly and kind , I like them . In the University , my favorite place to go is the Library . There are a lot of good books and music ( ? ? ) . The atmosphere is very nice , very quiet . You can read any book you want to . The library is very big and when you want to have a rest you can look out of the window . Everywhere around you can see the trees and hear the birds singing , and feel the wind blow on your face . Fantastic ! When I was a junior high school student , I was told to write a dialy diary by my Japanese teacher . Now , however , I realize that it 's just their sence of humor and that they do n't mean anything bad by it . So , I say `` Sorry , I have olny one and I ca n't find a replacement here . I brought the English poket bible when I come to Tz . It looks like a poket diary and so pretty . She was born in Poland which was controlled by Rossia at that time . knowledege of our industry . Hi , I 'm a student in a Master 's Program for Product Design and have complated a product called Finger Dance . Finger Dance is a type of digital communication equipment for cold evironment that is used for outdoor survival and rescure in ice disasters or snowstorms . I went to the spa ( open bsth ) Sometimes I make nots when I study so as to remember importent information . No matter where you go , no matter who your ancestors were , what school or college you have ateended , your best opportunity is in yourself . This isss it ! ! So I closed yahoo messanger . I 'm notgoodat english but it 's fun for me to larning For example , in Japan it 's difficult to ajust to strangers . Japanase people have to go to foreingn countries to solve such a domestic problem , and have to improve their English education to become intersted in communication . Blue Manday Today is Manday . But I always feel tired and groomy on Manday morning . And nuclear power plant probrems have n't been solved yet . Next , I pured flour into the chocolate mix and stirred . The crafter built dragon boats to scare the fish and and turn them away . For me , I 'm dreaming of traveling to foreign countries , like Australia , Egypte , and especially European countries . I think all of you are the same as me , evryone has their own dream land where he ( she ) wants to go or he ( she ) likes aspects of this foreign country , so we choose the language of this country . People worked and students went to school on satuaday . I want to be able to speake English to travel abroad , however I ca n't speake English well . And of couse , Oda Nobunaga . They were turely samurai . It is really similer to other songs . This is the first time that DLP lost thier seats in last 50 years . It also the thired sememster of my college life . Is it a college studet life ? I had alreay heard of AC / DC but it was the first time that I had listened to their music . The eclipse is coming tommorow Anyway , do you like to go shopping in a crawded place ? ? There was a terrible earthquake and thunami in West Japan . For example , airplanes , factry and cars scare me . I 've just finished `` The Shadow of the Wind . `` Actually it 's originally Spanish , but I chose an English transleted version Now I have started `` The Namesake `` by Jhumpa Lahiri , which is reall interesting so far . Anyways , Sofia came over to my house and we kept talking talktgin talking talking lol . Around 5 : 30 , we went to downtown to watch it ! ! At least in Kamloops . It 's a really tiny city , so there is no wonder why you happnen to see ur friends everywhere . lol ) This game was actually really tight , and there were a lot of fightings today , lol . Some of the players were even bleeding lol . Strangely enough , most people looked forward to seeing it . So when it happened , lots of ppl were standing , screaming , & shouting lol In the end , the Blazeers won ! ! I have no idea how she 's been studying japnaese for such a short period ! ! Gor for it and keep it up sis . < 333 We are all missing you , and thinking of you dear ! ! I try to stay fit while not having any cigarets They are relly beautiful and facinating . You can enjyo food and drinks while veiwing Cherry trees . But I will definetlly go tomorrow . I 'm happy to find this website because I 've wanted to improve my English , espacially my skills in expressing my opinions and feelings properly in English . Accordind to the company 's website , they were actually the first airline in the world to start a pickup service by car . makeup , hairset , dressing and asetetic . Then , I will continu when I rettern to Japan . She said , the Netherlands are going to win , whereas I said the Japanese team will definetely win . . . The characters are very fashionable and intersthing . When I was a child , I heard from my grandmather that there were many treasures under the groud at the end of a rainbow ! ! ! This is a Japanese regend ! ! ! What kind of regends about rainbows are there in your country ? ? Tomatoes originaly grew in South America . The spanish brought them to Europe in the early 16th centry . They first grew them becouse they were pretty . I normally spend timei with her . movies , music , speaches , and so on . I 'm a student and I 'm trying to learn 3 languages at school : english , czech , and germany . . Althou I 'm in China , I still like Halloween . Is it fasshion ? I might speake english like a native someday . Frankly , I do n't want to go ther today . neverthless I went . The Interent changes us The picture depicts a ascene where everyone , women and men , young and old , surf online . They confine themselces in a seperate room all day . I 'm looking foward to going there , but it means I wo n't be able to enter the prefecture tornament . In a florist 's I saw many beatiful cyclamens . I heard that they often eat century eggs in Chinese restaurants in the Philipins from my Plilipino teacher a little while ago . Other people probably thonght that I was mad , but I like that ! Today I gave an Amarican guy a call through Skype , It is my frist time to use Skype and talk with a Chinesepod student . I have had lots of students in the last four years , but I teach them face to face , so it 's easy to know what thay want to know and want to say . At the beagining , I was a little bit nervous but we keep the conversation going smoothly ! So I rerieved . Every time when I actually sit dowm to read some books or do some lesson reviews , it just does n't work . Becouse I have purchased a new iMac PC . Guten Abent ! During my presentation I had a stomacache becouse I was being nervous . I was so happy and I became more confidende ! ! In many stories , there must be an unvision red line that ties two strangers ' little fingers . I started wrighting this diary today . I doubted it when I saw the TV seriese because I always have to wait for several minutes when waiting for the green light . What 's more , I saw the long queue in the driving chool I came to notice the line was a * * * * . It 's emberrassing yet I need n't worry to be caught in drunkBen driving . My happy days will end soon because I decided to get an intership . One of them is the mulfunction of a gene that produces a protein that bridges between synapses . That 's why I 've studide English hard but I have n't developed speaking nor writing skills . Recentley , I have had no time for myself . Sometimes it makes me tierd . Without anyg interupting . Alrigh , morons ! Threre are many other places to go . The tray and spoon , which I bought at Togakushi in Shinshu , are made of bamboo . Looking for a suitible Partner Yeah , finially , I opened my mouth . Althouth they refused me as some of them were not English native speakers or they had already had a partner . Although the rice was a little tough , it was so dericious . However , the chief of our speech section said that his perforemance was too passionate / exaggerated . He told me that , while Japanese judges tend to demand speekers to deliver thier speech emotionally ( ? ) , foreign judges want speekers to deliver their speech naturally . The cief said that his speech was too calm . That rlly impressed me , This thoguht crossed my mind . I have to admit though , I do like the tast of meat . I was rlly shocked that people can be that cruel . `` You have two choices , you can waite here untill the electric power is restored , or you can finish now . Three of my friends came to my house to studey English together as usual this morning . The street from Hajajuku station of JR yamanotesen to Meiji street is called `` Takeshitadori `` . It is vry fun for me because there are many kinds of cool shops , for example apparels , restaulants , sweets shops , nail shops and so on . `` Backpacker `` is a name for someone who loves to travler . So , when I found this site , I was pleased with it , registerd right away and tried to write a lot . I do n't know if this method will lead to a high score in TOEIC immediately , but acctually , I really enjoy studying and I sometimes think in English now even in daly life . She sent a message to me yesterday to make an appiontment to study Thai and chinise for when I traval with my frineds in Kaoget . so this is why I am a luky girl because I do n't pay money to study Chinese because I have chinise friend alrealdy ye ye ! ! after that , we talked about how we plan to study chinise and Thai . You know , it will be reall easy to her to do . We depant to study on Tueday and wesnesday and Sunday every week . it is really easyk for her to do but not me because I do n't have any experien before . Thank you for reading . Hello , my wonderful friends I can see someone in the internet caffee righ now who I think I might know . He / she ? is [ BLUE ] yonger [ / BLUE then me . I think we had a small prblem ? a long time ago . expeclly since I dont ' know what I would say . You may think it is funny going to a rock festibal despite us being so old . At times like this , to avoid misinterpretation and unnecessary panic , the Venusinas consulted their Martian / Venusian Phrase Dictionary . She then attempts to help him by asking qustions or talking about what she thinks the problem is . I need you to ask me questions to assist me in discovering what is happening . `` At this point she prceeds to anger him by asking questions when he real wants to be left alone . `` It 's all right `` translated into Venusian means `` Thsi is a problem but you are not to blame . You can abuse me and I can abuse you `` or she hears `` It 's all right this time , bt remember it is your fault . Without this translation , when he says `` It 's no big deal `` she may hear `` You are making a big deal out of nothig . Without this translation , when he says `` It 's no problem `` she may hear `` Thsi is not a problem . Sometimes what he is relly saying is the opposite of what she hears . The best way to show our love , in my opinion , is to strengthen our abilityof to deal with things and give others a hand if they are in some troubl or need some help . They also recommend watching movies with English subtitles to understand eery sentence ! Completery finished Apart from the good news , I had a bad one . Well , my IELTS socre was so bad , that I could n't believe I had it . . . . . . . . . . . Good morning evryone . Even you can improve the language ( that ) you ' re styuding Then , I can somehow unserstand what they say . This was a antiaircraft and was used in positions on a alot of ships . I was satisfacted watching these things ! A salemans ? It is a little difficle for me , but I 'm trying to get better at . It will be good motivative for the author , I think . I asked her a little about her coutry . Jessie , I can feel a fireplace 's warmth and I can smell cofee in my mug when I listen to your music . My thow is so painful . The porpose is follows , Anyway , I will try to write my blog about my situation befor departing and such , and about living in US . Please teach me a cool openning word . It all started fifteen years ago , when I was saving some mone for a rainy day . He booked accomodation and a car . From Acuckland to Rotorua it took about three and a half hours by car . Since I 've started , I have kept myself phisically fit and maintained a healthy lifestyle . l ike to eat Japanese food , though sometimes it is expensive ! I have an acute feeling that I have to stady English . I try to stady English a little bit . We were [ very / especially ] exsited to watch Shizuka Arakawa win the gold medal in Torino ! I was very surprized when I heard the news . During the holidays , I have to finish my school work , essay and other impotant tasks which still are n't done . I 've got ta tell you somthing that 's been on my mind . We were instintly attracted to each other . Why do we make beautiful plans for the future when we are accupied and do not carry them out when we are free ? I think I would be at ease with wirtten Japanese composition , but at a loss in English . My abdment and left elbow hurt . He had nothing to grab onto and could hardly stand , but the midle - aged man on the priotity seat just kept sitting . That milde - aged man looked at the old man and looked at me again . I thought his conscience was starting to bother him . I must work and perfome my experiment tomorrow morning . However , I could not agree less . Based on the view that other training institutions ( such as vocational colleges ) are better suited to teach practical tachniques , forcing universities to teach educaiton courses would violate our freedom to choose our career path . Because universities are not the only places that can provide employment preparation courses , but are the only places providing acedemic educaion . Apparently , no other institution can replace universities ' ability to cultivate people in a particular acedemic field , and that is the main reason why people pay theie tuition fees . Moreover , universities are not the best place for practical skilld trainings . There are thousands of insititutions and employers who can provide the more up - to - date training that the workforce needs to perform their jobs . In sum , in comparison with universities , employers and other institutions are better - equipted and better - quanlified to prepare people for the employment market . The graphic of that was drawn by the famous Japanese desighner who did the animation for `` Evangelion `` . It 's Blues , which Clapton is always in , meets hip - hop rythem style which is really comfortable enough for me to listen to it for about 10 years . Anyway , I am reallly looking forward to the new album . Advertisement says that the sound of that is more blues oriented including the old Robert Jhonson 's songs . Hi wonderfull people ! I know people from everywhere and they speak English because they have seen a lot of moives in their original language Some people define them as vegitable . Air condetioner , fan , Yesterday , I bought a new degital sigle - lens camera . This week I have a 6 - days trip and want to take picutues at night with better focus . Hearing the explanations , I thougt I understood , I 'm not good at mecanical macines , so I concious that it is very difficult to use new camera at this trip . I hope someone corrects these sentenses . The first I heard about it was from an acquaintence in the US , who claimed to suffer from hearing loss . ( Concequently his senior and I did n't work out . Tommorrow is the last day of winter vacation . To begin with , I wrote my intoduce . I like to watch dramas , exspecilly Japanese dramas and Korean dramas . This is the frist time that I wrote a diary in English ! The face I saw was one of my frined who I had n't seen for a couple of years . But it was great time to make new friends and I leaned some good expretions from the teacher . I am studying for my exams at the university 's cluster room , but I am fleezing as the air conditioner is turned up very high . I ate spagetthi which I got take - out near my home yesterday . Fortunately , thanks to suffient sleep and the spagetthi with plenty of garlic , she seemed to be restored . Monster Hanter Of Ofcorse , this event is not for me . Gozila went wild ! ! ! ! ! ! ! ! ! ! ! In Japan , today 's main topcs is baseball player , Matui 's play . His face is strange , his play is ecellent ! of Matui . But in japan , Ichiro ( marinars ) is more popularar than Matui ( ) Yankees Matui is not found [ ? ] , as far as I kow . This time Matui 's super play was suprised in japanese . Gozila is a Japanese treasure . Japan 's gov spends less money on sports than other contries do . Otherwise , Japan will probablely continue to lose its competitiveness . So I will go to bed ealy . She went out to the new sun room that is waiting for the maerial for the floor to finish then she found an old man . He walked into the imcomplite sun room so Siri said `` Who are you ? `` He did n't say anything for a while then Siri found that he had a name tag on his shirt then recognized the name . This house is nice but there are some extensions that need work and have parts done in an irregular or inperfect way that was recognized by my host family . What 's a Smok Test ? When the bell rung , I thought I would be caught in the rain in on the way to back to my dormitry . Sonner , my hair and clothers have been soaked and I feel cold . In there , I feel amued by my appearence , so once again I rush in the rain . [ Replace with lower sentence ] and , I find an armbrella abrve my head . A charming smile appeard and says ' are you ok ? ' . On the way to the dormitory , she talks with me in a gentle way , and walks me into my dormitory , althong she does n't live there . So many couples will choose MDH to celebravt their weddings . I came back from the battle field . I am still aliving . I saw many black passports there , because recently the Japanese government has changed the desgin of Japanese passports from red to black . I hope they will go back to Japan ASAP , and work for the Japanese goverment and be rich Japanese forever . So when time was almost over , I had only finished around 85 % , so I had to randamly answer the rest of questions . I hope I get over 800 marks , but my result wil probably be around 600 marks . It 's probably because this is my real lauguage skill . Rreading speed . My sock doll is not finsh . Btw , he looks so yammy . . . . . These days I 'm sutdying English very intensely . yesterday , I fiished writing my graduate thesis . now , I am in the bangkok airport wating to bording a flight to indiia . Each candidate comes out with his own political manifesto to make the country better . However , depending on who is elected , everything will go on to be different from the way it is now , which will be enough to affect anohter countries all over the world . Anyway , it is absolute that last night was an inportant day , so I thought that essentially everyone else was interested in the election . Well , it is partically ture but in fact , not everyone did take notice of it . Tommorow I have a Chemistry test 0 . o I studied hard but I think I 'll fail . The childred are the happiest . They have long holiday and get more pocket money , new clothes and presents from their parents or reltives . We Chinses have an old tradition . So the traffice is now very difficult . It is the internet that has had the most powerful infulence on me for the prevailance of computers in my life . untill the new news hit me . I think I am not going anywhere so I 'll clearn my room and I 'll make / cook something that I want to eat when I get hungry . I 'm in the Tlavel Tourism Couse . I do n't wark at a part time job , but I do waant to work at JR Toukai in the future . The toughest part of my school woek is overseas geography . New degital camera Today , I 'd like to write about a new degital camera . What do you think of trends in new degital cameras ? So I wonderd : In Japan , we eat ' ozoni ' , which means mixed ingredients in soup , as a traditional custum during the New Year week . ^ ^ ; The New Year is supposed to be a holidy , but it 's not a holiday for me . For that , I should study grammer , words and phrases . all of the world know that the chinese school uniform is too uglily . For the last statistics of these votes , the winner will have the moste votes for the type of school uniform . The reason we went to wrong place was the pronunciation of the place we wanted to go to and the place we went to were the same if you pronounce it in Japanse . We Japanese people are basically coverd by health insurance , Recently , we have been runnning up a big medical bill in Japan , into practice to reduce medical expence . This counceling is not compulsory . In China students learn English from middle school to college , but , there are not many students who can learn English well . First our mindset is wrong . Some of them think that learnning English is a burden . To pass the exam is their only purpous . Second , the big circumstance is so bad . It is very difficult for you to find people to communicate with you in English . Someone may think if one person got a high mark , his or herEnglish is very good . I do not think so . We all konw that language is a tool that we can use to communicate with others . The rapidity of morization is fastening . I went sgopping at 10 : 00 this morning , Fortuntely , South korea has developed accommodations called Jjim - jil - bang . But today , goods for the Japanease New Year were on display . Recently , I offen thought that I would want to study English again . I went to an Englisn - speaking country and was been there for 7 years . When I was overseas , I did n't watch English news channels or movies , I could not understang the popular programs , as I have no idea about their culture background . I want to listen to , speak , writting , and read English better than I do now . I 'm requied to learn formal words rather than informal . In my case , I 'm exporsed to formal situations most often . During class or school , I would hardly have a chace to use slang . But I am not a catepillar , so I give up . Since the bowl has become empty , finally you can eat an ordinally meal . I never say `` Do n't worry . its gon to be allright `` to make them relax because I am a teacher . Can you have a reccomend a drama ? The night safari and taxy companies are friends or couples . I am a brave man , but when we tookt a tram there , I sat beside a fat American couple because they possibly can not run faster than me . Prpbably they ca n't jump over it . If they do so , does the safari pay a copensation to us ? So we had to take a taxy , and it was already over 00 : 00 a . m . . The taxy fare cost DOUBLE . I think that the night safari and all taxy companies are friends or couples . I applied for an open positon at my company . There is a votanical garden there famous for wisterias . However , the wisterias are not in full bloom . I enjoyed beautifull flowers and pleasant smells . Nevertheless , the differenent this time is that I only grilled two wings and a leg . I looked at my phone and received a message from my nailist . When you taste stawberry cake , your mouth and brain will immediately be filled with sweets . My mum lives in Shimoda City , at the head of the Izu peninsura . I had a bad hedache yesterday , so I wanted to leave my office on time today , but I could n't . I was very disappointed and felt sorry because I was supposed to give the data to two colleagues but I had to keep them wating . What sould I do ? Firstly , since my previous laptop wore out within a very short period of time , I am looking to buy a laptop which is more durable and has a garanty for at least two years . First , I 'd like to introdusce myself . It was baced onthe true story of someone 's life , and we changed some part of the story . I noticed there were some probrem with my leg Nobody could explain why it happend . And so I guess some birds made a noise or hicuped and dropped them . I deside not to doubt it . I miss you like as a friend who cooks with me , watches some movie and cries , smokes a cigarrette and talks , talks about life or silly things . The last time I saw you I could n't hyde that I wanted to cry because my confidence has gone . I hope air heatings will become unnecessary . but statisyics is very difficult . I am stuying English at a university class now . Yesterday was the summer solstic . Though it 's after midnight now , 3 : 30am , maximam temperture is 30 degrees celsius . No work , no rush hour , no clock alerm . . . . . . I was satisfacted even though I hoped I could watch one more game with them in the next stage . Today ( yesterday exactlly ) I met friends and made plans to travel this week . But I 'm lookkng forward to do it . By the way I want to know th difference between personal and private . The weather forecast has promised that the wheather will be fine ! It is always beautefull and at this moment , you can find many different champions . Because it was getting late , we promissed to see each other tomorrow . How to avoid the scroching world . as if a strom would arrive on the spot . There is a certain day I can not concentrate doing anyting no matter what , frustrats me , and today is the day I guess . I am dog - tired and all of a sudden , I got a brain wave that may would take away my agony of the hot world , which techenically has a big global warming issue . The fresh idea is going into a huge refrige that is for tons of chickens , saying farewell to the world for a while . Because a cup of beer I had was $ 13 dollors ! ! ! ! ! ! The problem is my lisnening for English ! ! ! I 'm going to meet Crysti , my laungage exchange partner , at Ginza after work . So , could you help my studing English ? `` Kaiten - zushi `` restaurants have rotaing sushi on a conveyor belt , and you can help yourself to anything on the conveyer belt . Maybe that is becuase she is working now , and I am still a poor student , but it does not mean that I do n't want to spend any money on her or other people . I know venders do n't wash vegetables so the food is not very hygenic , and they are so expensive , but the festive mood always make me want to buy ! `` I will go to Austrlia `` , one girl said . Howerve , if I do n't have enough money then I will go to work for one year . By the way , I learned a word pronounceation . Austrlia and New Zealand 's English are close to England accent , is it ? Yesterday I learned that there are UNIQULO shops in the Philippines . I did n't think that UNIQULO shops would be in the Philippines . I saw a situation in which many adult waited for the elevater to come . I checked my self as I listend . I will try to listen to it and pray to slove my situation . In my opinon , there are many changes in american 's way of thinking . They want to chage and achive their hopes by voting for Obama . , I had also hoped for Obama to be president , and I am looking forward to watching the nauguration speech on TV . I have no doubt tomarrow will be a historical event . I learned about this site by a potal site . I 'm too tired of typying . I sould be a discreet person . It 's origine is a mystery novel called `` Kokuhaku `` written by Kanae Minato . It got a book store award in 2009 . first , I paied the full money . when I will get MCAS finaly , I will be so happy . hallo everyone . We have to admitt that we are soft and cry more easily , because we are more emotional than men . This my point of view , and I am ready to defend it . Now it 's your turn to say whether women can be leaders or not , but do n't forget to justify your point of veiw . I 'm studying English because I have a test tomorow . The library is a very wamly and silent place that I can efficiently do my work . First of all , I said that Japan 's Prime Minister , Hatoyama , is a lier because he changed his mind and postponed the deadline of resolving the base relocation issue in Okinawa . It on Monday morning so before warking , I have to get up earlier than usual . My life is not blliriant like yours , It 's relly interesting when you think of this , is n't it ? There are some facilities in the final station . There is a souvenior shop , a restaurant , and even a mini theater . Learnig something is very exhausting and time consuming . It 's been a long time since I 've written a jurnal . It is said that Japanese people are strict abour time . Their color and design are very attractive to me . My dreeam is go to NYC . So , I 've decided that I will write on this site two times a day at least untill I go back to school . Then , I guees that I do n't have much time for writing , but I 'll still be back here . I took my parents to the best restaurant in the neighboring town that afternoon because it was Respect - for - the - Aged Day in Japan yestereay . I 'm not married , and I 'm living alone in a dornitory . He live in northan part of Tokyo . So now , I am a little bit disapointed . And after reading it , we had to explain and summerize it . Anyway , I had to follw her explanations and summerization about it . I had wanted to say ` ` Becuase I am a learner ` ` . I just kept silient . I am feeling nervas . lol And I feel exausted . I do n't know why , but I drank 2 cups of coffe at 4 AM . When a man went up in the tree and hit braches with a stick , persimmons began to drop one after another . I was very shoked . lol I was very worried however there were no people arond the bucause arond there were very rural places . so if you are ok , add me as your friens , please ^ ^ I 'm afraid that my English is all wrong , but I think that I have to keep enough coureag for this lesson . So I decided to learn English . Unfortunately , I naver learned either because I was lazy . This time is different . mabey I can do it . he has already left Korea and the other friend is going to South Afreeca next month . The main traning is running . Actually , I had loved a man who came from an other countury as an exchanging student . I 've been in Oxford in the UK for 9 mounthes , and came back to Japan last mounth . I want to keep improving my English even though I 'm in Japan , so I jonined Lang - 8 . When I listened to the music , I understoond that what I studied was useful . However , when we eat bread , we prefer cafe au lait , milk or cofee . What do we think about our future , where to go and what to say ? It 's ridicurous for us to be mumbling about our world where we 're living . My anut went with me when I got my haircut . Both of them are the same conpany , are n't they ? I was interested in the article because it said the Oxford Enlish Dictionary deicided to introduce FYI in its latest edition . I am now learning English , but I found it is difficult to master the using costom of English . He wanted to say that I 've often told resonable ( good ) excuses . I have managed to communicate with foreiners in English . in dairly life . I have wanted to know the lebel of my English objectively . I asked him the reason why he would take TOEIC test . He wants to know his English lebel to make more progress in his English . Because I ' m a good ecuser basically . Would you correct this script leaving some comment about my writting , pronunciation or the content of speech ? My self introductin : I 'm a Univercity student . They conversed with each other in English , I was desparate to follow along . I decided to strrugle studing English more , for opportunities when foreign costamers visit . Tmrrw I 'll try to tweet more often . What is a satisfactory standand of English in AS ? well , I got so litle time to study tough , with work hours from 9 am to 7 pm . . . The political sence of Obama is bad . as standard - because standard itself is uncertain , genaral , so it ca n't be used itself with an article . ( see comment ) We only can talk at work because we met togerther at work . Yeah . thank you guys for reading this diary agian ~ ^ _ ^ I am 21 yaers old and work at a raduo station . I 'm still a University student and my major is mass communication . As for me , I use all of these websites , and I think eacn of them is great if you exploit their strengths . My mother is an excelent cook . I do n't like to cook but today I 'm going to help her becouse it 's a lot of work for only one person . I always enjoy staying with my mother because she is very symphatic and friendly . We spend lots of time talking about our lives . Our conversations are interesting , and I always learn a lot from them . It was a beutiful view from Tokyo Tower . I love to go up to Tokyou Tower , so I went there . I kept looking at Tokyou Tower from the outside . The view was still beautiful . Then , I headed to Shinjuku and had supper with my friends . Now he is sisk , because of being too excited . I 've enjoied those things . I try to write in English dialy . Futhermore , some characters also died from that . So I probabry ca n't get home for a while . I like the that morment . Recentry , I bought an iPad . Last week I was watching a survey on a BBC TV program that was being broadasted while I was about to eat . Suddenly the results showed something I did n't expect : only one in 10000 people had achieved their lofe - long goals . My pieces of work were admired by my teachers and were the cause of envy of many of my classmates and other collegues . There was even a time when one of the most respected professors I had , Mr Smith , commented that my work , `` ressembled that of the geniuses of the Renaissance period `` . That 's why I joined a group of alternative artists in my city and since then , I have been working on utterly different projects which range from traditional painting with a small brush to extream air body painting or even crazier stuff . Despite thoes weather , I still went there . I have calss this morning so I have to got up early this morning . . . . Saty up late was so tiring for me . I 'm trying to conitinue writing my English diary . I did n't want to be like that and I felt kind of fearness because they looked just like a disposable wipe . As you might know , Playing golf in Japan is pricy . I had a phone interview for graduate shools . I am wating for the result now , but it will probably be bad news . . . I forgot almost everythiong I wrote . In my thesis , I predicted the oil price was jumping due to speculation by investers and that this bubble would pop . What I predicted was what exactly happend after one year . Therefore , Oil became a target for investers at Wall street . In the stock market , it does not usually happen , but oil flactuates violently . So investers who want to take advantage of this market are never ceasing . But Oil is absolutely nessesary for our life . I do n't know when alternative evergy will be practical . So oil has to be steadily suppilied and should not be dealt with like loans and other financial products . I may do excesise or play teniss in the gym every day . These last few days I have seen almost every Olimpic game featuring Taiwanese players . In good weather like this , I whant to meet friends and sit by a fire and enjoy nature . I need a TNA down jacket as well to keep my body warm outside in the freazing world . Even if the main charactrers are autistic , thery are the special people whom I 've never seen before . What is the diference between `` a piece of paper `` and `` a sheet of paper `` ? Altough we talked awkwardly in the beginning , after an hour we started to open up . I felt at ease that my students opend up , Before the meeting , I went to the Ueno Park , where is famouse Cherry Blossom tree . This was my first time being challeng by the TOEIC test . I am not good at memorizing English idioms and expressions , because they have different sences from Japanese , so I can not imagine the background of the words . For example , the expression ' What in the world ' relates to the feeling of suprising , correct ? Practice practice pracice ! I think I will meet so many difficults about communicating with foreign teachers . At 5 o ' clock , I go to laern baking cakes . I wonder why goaches are n't as much popular as watercolors . While driving back to their ( T and L ) residence , we happend to talk about curse words because they were very sinful to Catholics . A new andoroid app is avairable now . onsequense : We decided to go for a trip as a cinsequense of the long discussion . influense : I had great influense from the book he wrote . But since the day I left elementary school and entered high school , there was always a certain matter that kept bugging me : `` Why did I even choose enterpreneurship , as my future course ? `` ( or ) sore ha onaji tokoro ni attearu Today I bigin my diary . But , that was 32 years ago , I did not speak Engrish then . I didn n't really feel anything but this past one day , I felt a little sad . This weekend , I am going to teke a test ' Eiken ' I am studying Engkish very hard ! ! ! I have to submit my contents by next munday . for examful , someone who is working in Samsung has intelligent qulification and Samsung invents high quality products . In the case of sportman , from middle school , they exhaust all their energy . In conclusionly , we have many human resources , and we tend to persue the first place and ignore second and thirth place . In conclsion , living in Korea is so difficult . in our small county , there are many super koreans in baseball , in figure sketting , in soccer and in academia . I was very nurvous because I have never played dancing . I would like to improve my English and learn other languages , Chinease , Spanish etc . for bussiness use . My favarite things are FC . I 'm trying to study English by listening to a song over and over ( Is there any diffirence between `` over and over `` and `` time after time `` ? ) . I am on winter vaction . Unfortunatly , I did n't start studying English at the beginning of winter vacation . Instead , I always watched muvies and dramas . But , it is so adiction , and I have studied English since I was 12 ( so I have studied it for 6 years ! ) , but I ca n't speak Englesh very well . I also started studing German this Spring . Your prompt reply would be highly apreciated . My English is not very good , expecially in writing . After working , I sotpped at the shopping center near the station . I bought a book and looked arond . Then I was worn out becouse of work , I felt better . Sweets mekes me happy . so I 've relly treasured the time spent with him these past few days . Always is a pleasure to read your guidebooks about any place in the world , specialy about towns I know . Unfortanely I have found some mistakes in the information about parking in the city center . Also the Museum of Natural History is closed , due to some vandals who broke some skeletons lasta week . I make the most of the freedom during vacation in the noon by watching Korean video dorama . I look foward to watching it everyday except for the weekends . Yesterday , however I could n't watch it because I worked on my thesis in the liblary . In addition , my home 's video recorder has trouble now , so I could n't use it . When the dorama started , I have felt a sense of `` dejavu `` ! Please go out and buy it at the nearst shop ' I could n't belive what she said and I asked her how could I go out in such a storm . She was an optimistic pesron , but could I go to the shop safely and buy the miso paste ? I am too anxious to make many good friends who come from different countries for konwing different cultrues . It was really embarass . There are still many silly things I did n't mention , because it is very embarass . The topic made thier conversation restart and they ended up staying there another hour . I think I should try not to eat at donalds to stay healthy . I have been insisting on buying a lottery ticket since the beginging of this year . Becouse in Japan they think New year 's is an important thing . Budget compliation Especialy , ' ' Christmas ' ' remains in the impression . When ' ' TOM & JERRY ' ' was relrieved by You - Tube , ' ' Christmas ' ' was found . During today 's lesson , I felt that foreighner have similer characteristics . It 's ture . This show was on my Favorited chanal . I was scoled by the teacher for my cellular or cell phone call during the class of mathmatics . I know it 's amazing , but it 's ture . So , please tell me what to do because I do n't know what to preprasion . And could you please tell me a good pleace for food in Guam . Many of the younger generation much study very hard to suceed . I got airplane tickets for a New York trip next summer so I went to a travel agency yesterday . I paied a deposit of thirty thousand yen . Something new and good is likely to happaen there , Today I was very unluck . And in biology class I did n't finish my homewoke , so my teacher made me go to the lunch room . Sometimes you can see some coulour fish . Her songs are awsome , right ? Perhaps I should be happy for it because it is an eveidance of my last four years of hard work . Maybe I am a sensible boy but I realy treasure the friendship between us very much . The woman ( Aki , Autumn ) waits for her ex boyfriend for 2 years , but falls in love with a new man ( Halu , Spring ) . Making Tempra now I 'm making Tenpura now . I do n't like using lots of oil for cooking , because my kitchen becomes oily , but my mother - in - law taught me how to make Tempra and if I did n't do it by myself , she 'd get angry . That 's why I 'm making tempra today ! ! Why doesn ' CASIO put the temperature sensor on the top of the watch ? Peple hung fish kites from their looftop , and wished for their children 's health and success . I do n't understand the content of song rylics . I know that many people say the same thing , but I really am a biginner . I started studying English in Marth . I hope to take a trip to Switzerland next year becouse I want to visit a museum at Bern . I have applied for schools in NY , LA , SF , San Diego and Seattel . Today , I went to a sports gim with my colleague . Of Offcourse , if you want , I would like to do that kind of thing for you I . e . Reading a japanese book aloud , slowly . A friend of mine recommaned this web site yesterday . If this factory is not managed very effectively and efficiently according to specifif rules , it 's prone to polluting the local fresh air and water , and an ideal community which should be quiet . Secondly , to make sure the shipping of materials and products and the employees ' communte are more convenient , the local roads will have to be rebuilt and broadened , resulting in improved public transportaion . Why did Japanese film `` Depertures `` get to win the Academy for best foriner film ? In sevior cases , young people commit suicide because they ca n't bear the stress . Tragidies happen everyday in the current greatly changing society . We can dig into different aspects of this issue , including cultural factors , Chinese history , as well as national charactoristics . First of all , regarding what Chinese believe in , I would say every Chinese believes in Confutionism . Secondly , in the aspect of history , China has gone through a difficult time throughout its 5000 - year history , and during the past dacades , the great leap forward has created both opportunities and failures such as many dropouts in the last generation . For example , internatinal airports made it easier for foreign people to come to Japan . For instance CNN on YouTube or somethig like that . For me , no I should say for foreiners , it 's quite convenient to listen to these programs . Generally speaking , in Japan people think that topics like politics , riligion , private diseases , etc are tabu . But I do n't think it is good to talk loudly and emotionally saying how riduculous your opinion is or how stupid you believe some team is . Last week I went to see Alice in Wanderland . He is really a genious , I think . It is amaging that I was so much impressed at once just by listening to this piece of music . I am about to graducate . At first I wanted teaching as my career , but with more and more positions appearing , I 'm becoming aware that I was stupied to ignore lots of jobs except taacher . I loved it when I wached it a few years ago in Hungarian . Also , his explamations are easy to understand . My best friend said ' you shoud just ask him , and do n't talk about your dogs . I remenber when I talked about my dogs to the doctor , he almost yawned , and I was a littele bit sad . By the way , my best freind got divorced recently , and now she is also interested in another man . However , the man 's attitude twords her are getting down . Sor far , you have not shown any successful results . `` `` Why do [ es ] everyone talk about the abandonment of a nuclear power plant , though they do n't talk about the abandonig of automotors ? `` `` Automotors kill many people by accident , however a nuclear power plant has n't kill anyone yet . `` I was happy to het him . Unfortenately , there was an accident , he fell into a lake and died . I rememered that I took it We had a one - centimeter snowfall . I made muffine as I watched the snow . Airplain schedules are always disrupted on snowy days . The picture is of my muffine . I hane n't packed for the / my trip yet . First of all , Obama 's speech was effective , strong and scareful to me . This friend likes scketching like me . Finally , I watched `` Valkyrie `` ( acually I wanted to watch `` The day the Earth stood still `` , but it had not come up yet . to meet my favorate friends . I just learned one thing from an artical I read today , that was if you keep doing one thing for 4 weeks , it would become or would change your habit . I wanna make a little bit of progress everyday in order to let studying english be one of my hatits . Frist , I 'll list the key words I 've heard today in a conversation that I do n't use often , or usually use in a wrong way . overhaul ( totally change ) , excutive producer ( movie producer ) , illstration ( make an example to prove ) , significant ( extraordinary ) , nifty ( nice ) , municipality ( Beijing municipality ) , forbidden city , terracotta warriors , potala palace ( tibet ) girls : beautiful , gorgenious , sexy , fabulous , I was so excitedto to see it ! ! Today one of my co - wokers was absent . I think it 's time to read a grammar book again . > _ < Yack ! ! ! I went to a glass atelier and try to glass - working with ten friens last Sunday . He invited me his house and we had lanch together . Pancakes , spaketti , beef and chiken . And I had a discount coupon for Lotteria ( a Korean Hamberger chain ) . After we finished our lunch , we dicided to go to eat some more . I suffer from not understanding what he says because he talks so fast and my lack of vocablary . Now , I am studing about the present perfect and past perfect tenses . Since different people from differen ethnic groups such as Persian , Bakhtiari , Aramaean , Turkish , Arab live in this province , you can find diverse Persian cultures and traditions in defferent parts of Isfahan . When he is good , his color is lighter and when he feels bad , his belly become a brack stripe pattern . I want to learn many things about this kind of dragon to take care of him propery . they are nudool and fried eggs , which are so easy to make . some eggs and nuddle soup mix or broth this way , it tast very fresh and better than the plain taste . just waitting for good news from me . The textbook 's title is `` Tottaly True Book 3 `` . Both days were very voring . I 'm looking forwared to it . I have n't studied for my science quiz tommorow = ( I always procrastinate the things I find difficult . I 'll write a small review when I receve it . But honestley , I do n't have good memories there . These instruments are guitar , drum , base , keybode , and others ! I was inpressed ! ! ! ! ! Day 96 : Too straghtforwards . Today one of the unties said to me that I am too straghtforward . As I really wanted to have Cristmas doughnuts , I dived right in . I suppose that Cristmas here in Japan is very commercial . Many food shops launch Cristmas products . Did a tyhoon hit Hamamatsu ! ! ? So I was greatful for his suggestion . Summsr Vacation We could watch the lions , Forses , birds , etc . Because of it , I was often scolded by my mother who then seid , ' ' study hard , or I 'll dump it ! / throw it away ! Now my interst have moved from playing games to playing music and studying foreign langueges . Anyway , I will fullfil my big dream in 2010 ! I started a dialy on lang - 8 . Becouse I view English sites , but I do n't understand them . I will try to wirte in my diary in English . and I 'm writng a diary entry to waste time until I 'm ready to go out . May is biginning . May is bigining today . He seems to be busy , he asked me to comfirm the appointment . I tried to call hime later in the afternoon . But I failured to make it ! Someday If I visit France , the bierth place of Macaron , I want to eat it . Please recomend your favorite : ) I find it defficult to express my opinion , , , At first I would like to thank for every who cheicked my article . Every dayhhhh I have to study Japanese and do a part - time job too . Although I am Asian , the Japanese words mean the same in Chinse in many sistuations . I am so unhanppy with my roommate . I think we go to study abord as a college students , so we must do our best in our studying . I heard about the place of the Russia nuclear reactor accitendent olace is called Chernobyl . So I must inprove myself such as Japanese English and confidence . Besides , we have school lunce in such a terrible classroom . Anyway , I guess I was suspected by an old man while I was runnning in a nearby park today ! ! : < I spent time researchin Amakudari . . I may keep studying by myself , but I need some oppotunites to practice my English . I 'm bad at grammer and spelling . My room is on the first floor , so he set the ladder up and escaladed . My colleages bought a bin of millks , and we chugged them down . In Japan , people who want to get a job need not only some skills or a good abilty to communcate with co - workers , but also , good academic backgrounds . I relly appreciate your help : ) Today my theacher took me and my friends to Spectum in his car . Spectum is the biggest shpping mall in Irvine ( maybe ) . I ( need subject ) think that there 's no better way to improve my Japanese skill than making Japanese friends , I 'm reciently tried ( past tense ) to make japanese friends on the net and got a few . Please tell me how to use other langage . Although she said it was not seriouse , My homestay father is a big fan of Chinese kong fu and so in love with Chinese language , he really wants to learn Chinese . So I wnat have a place for learning English . Hoever in my case I got transferred here regardless of my desire . They learned Japanese , mathmatics , and social studies from 9 : 00 to 15 : 00 . We ate the korian food at komart . Some languagese learners would like to discuss / talk about the different aspects of languages , I really enjoy that ! ! ! Now andthen , I always recall the wonderfui times we havewhen we get together . ( Sometimes I do , tempted by the tasty look and favors ? ! ! ) Cars ca n't come near the firewarks venue , people looked at firework on the street . But the firewark were very beautiful ! ! have you ever expreienced something like this ? The quaill eggs were sold in 4 packs for 1000 won . I have naver been abroad , so I have n't experienced this lol It forms the boarder between Thailand and Laos , and is the gateway to Vientian , the capital of Laos . This weekend I 'm going to take a train and then go to Vitentian . When I went into the travel agent 's office , a local Thail woman attended to me and she was really gorgeous . Althought it 's boring when we are wating , I believe that when we see the picture in the magazine will find out that it was all worth it . We enjoyed and feld happy ^ ^ If you choose egg you can order egg udon or egg sobe . I went to kaiten - zushi for dinner yeaterday . So I can eat those without thinking which dish is cheap or expencive . It was ivory , long sleeves , and hagh - necked . Study english - steadily ( regularly ) studing is very difficult . I konw this road will be very hard for me - a girl who are not a native . Besides , I have 7 - 8 lessons at school every day exept Saturday as on Saturday I have 6 lessons which are over at half past 1 p . m . When my groupmates decided when the courses would start on Saturday I asked to begin them after 2 p . m . But nobody supported me even those who did n't care when to start . Toay is Monday in Japan . Is it becasue I am a typical Japanese or am a coward ? ? Books can enable a child to develope his or her own reading skills and power of concentration . First , by touching letters in books , said child can develope reading skills . Japan is a moutainous country . 3 / 4 of the total area are moutains or hills ! I had eaten too many unhealthy foods for a semester , and even though I only ate a little each day when I lived in the city of my school , I still beome fat . Japan has had a taugh experience since the earthquake and tsunami in March this year . When I see the people 's attitude toward saving electrivity , It always reminds me about the nature of the Japanese . the first picture is of `` kinako mohi `` I 'm happy that my wish was fufilled ! My job keeps me very busy , so I do n't have enough time to learn Engish . The next challenge is one any flash developer might come up with : Assciateing visual images with sound . Moveover , traveling alone , will bring the traveler unexpected surprises , such as making a new friend or enjoying the different scenery . Second , I like to make new friends ang learn more things abount the place I am traveling to . I 'm a Univercity student . I often see a man selling fruits and flowers on the Safty Island when I drive to school . Atashi wa pera pera to nihongo wo hanashitai . Now , his English is not perfect , but he can cummunicate with native English speakers . Mobile phones are getting fashionable recently , there are many colers and many design . And they have a lot of fanction . For example : you can use it to listen to music , to take pictures , to use the internet , to arrenge your schedule , to watch TV . . . I do n't need too many fanction . Thesse days , most people have one . Sometimes it is too expensive . . . We should be carefull when using cell phones . I realized that now I 'm not aliving ! Hellow everyone : ) I had to picked my school timetable up yesterday for my graudate school history classes . I picked 4 classes . Advanced Latin is one of them . It looks like I am the only one signed up for the class right now . He drove all the way to the station advertizing Kobe beef . My favolite thing is listenig rock music . But a sereious desease infected him suddenly . We chose the rings and went to the humburger restaurant . I take bellydance lessons once a week . My bellydance teacher is Korean . Reading assignmen At that moment I felt that he was a very quiet and lonly person , It seemed that he struggled against difficulties by himself just like the song said . Hi , I ca n't speak in english ! For practice today I am going tell one story . Its name is `` The Girl Who Does Not Speak In English . `` This story has no plot . This story has one girl who found this page for learning ehglish , and this is the beginning . I hope the end is good . : ) For that I need your help . I gatherd the application forms and sent them to the bread company . We study in differet places . Texas buger For lunch , ate a hamberger at McDonald 's . At my university , there is an anime society at which people who love Japanese anime get together and hold events like quize shows . I will join it as soos as possible . I compared both pictures , and I thougt the picture of the digital card was very beautiful . I trid a slot machine , but I did not winn as expected . Though they looke fierce , they are charming . Secondly , it is eay to raise cats . I think `` Harry Potter and the philopher 's Stone `` is the movie that I have seen most often ! The day the earth beacame my home . . . 1 Singapore and Malaysia Now huiman control this world , so we take care of only ourselves . If insects get a severenty of managing this world , they will kill us in turn . It is a bit unconfortable to live with someone and not talk to the person . My favorite artist - - - > allsion was eliminated . OMG poor allsion ! But recently , my improvment in Enlgish has become slower . Just think about it , I am always using and depending on words which I alredy learned how to use . I hope that I am already an intermidiate English speaker , and when we reach an intermidiate level , our language skills start getting stuck , because we start depending on words and expressions which we have learned in the past . This years motto is `` I talk wihtout hesitation ! ! `` After that we heard / found out that it had been a weak earthquke . It was n't stong enough to damage anything but reminded me of the tragedy in Haiti . Today , this task espessially suffered me . I am very gald to meet all of you here . The dictionary definition of communication is the process by which people exchange information or express theie thoughts and feelings . A case in poin is Ebenezer Scrooge in the story of `` A Chiristmas Carol `` . Call it close or distant , it is happiness when there are people who you can communicate with . `` Is n't it cold ? `` I ask . That 's whwn having someone there to reply `` Yes , it 's really getting cold , `` provides the warmth - - Machi Tawara . I was suprised . I had a probrem . And so it is posibily to change something kindly and make it kinder than it is now . usually I do n't have the habbi of writting dairies on the Internet . . . I am trying to find a sentece to enable me to ask you some questions , but I ca n't find it so no problem , I can read it by my self again . Rencently , I whent to bed at sunrise In general , most beginner or veteran docters are stubborn and a little strange . ( It 's not only docters but also the old . ) But they are that sort of type of person . I enjoy downloading Potcasts ? of CNN News and watching them . Especially , I like the broadcasts of Anderson Cooper 360 dgree . The chaotic situation in Hitai was beyond description . So many poeple died and still the bodies were under rubble and on streets . I watched a TV program , which is called `` Cool Japnan `` . Things that intersted me . If you are interested in Japanese culture , I 'll recommend you to wach this TV program . I 'm sure it will help you to open your horizen . `` I made a conscious effort to lose wiehgt after I read articles citing me as the fat chick in Hollywood . Will this sentence be able to convey my thankfull feelings to the teacher ? I 'll show you three museums , Teshima Museum in Japan , Juwish Museum in Germany , and Goggenheim Museum in Bilbao , Spain . You might notice that the water drop moves slowly on the slightly clined floor . This architecture is , to recape , the space in which you can feel the existance of nature and yourselve . Yesterday I went to a movie theater to see `` Angels and Damons `` with my friend . I found a very usefull site ! I had expected that Algentina would win , but they depended on Messi too much . Recently , we recived meny voices from citizons that our personal appearance is too bad . Women 's parsonal appearance is more difficult than men 's . Becouse women 's fashon is rich in variety . I wish our staff members get good sence , then become good office . It 's a famous specialty nudle of Nagasaki . She has taught me speaing skills for 4 months . I commut to language school . I hardly able to have the opportunity to speak to native speeker . By the way , Chrismas is comming soon . Secondhand bookds You can write me a message if you are interessted . ( : Hoever today is Friday ^ ^ Look ! Is that your book that was stained with blood or ketchup or somthing ? A girl who deraming of a true love 's kiss met a prince . My daughter askd me She must have been a princess befor . It 's rainning ! It has been rainning for four days . The weather is cold and wet , I dont like it when it is rainning The < < M > > is full of slang , I think if they muted the sentences which include slang , the whold film would become a silent film . I know abstruct words and technical terms to some extent . Besides , I can not read fast , speak fruently , write quickly . When I noticed it was time to get off the diffirent station I did n't feel well . Today we are working outside , so I wonder if it could start rainning later . Campany meeting In every meeting we Discused recovery from the earthquake . Hello friends . Today I was really happy to talk with Tyler and Neechan on Skype , and also Ivy on MSN . luckly Neechan got her microphone working so we could talk on Skype . I would like to record them like when I talk with yusuko . I think it is too late aleady so I have to go . I ca n't tell you guys all of my wprking condition , so it is little bit Subject : Changing schedule proppsal . Now , we 've got a new enployee , and there are 6 people working as I have alrady told to my manager and co - woker about this , so If you He asked me to call my parents to come to school foa a talk . I planned to spend at least three hours to study english every day since I began to prepare the qualification exam to be a deplomacy . I write in English most about things connected with international affairs , such as , China 's economy became more dependent on their inner investment , Libiya 's Caddafi came to terms with ( ? ) Mr . Belousconi , the prime minister of Italy , over the past colonial peirods , or SC decided to impose new saction against North Korea . A few days ago , mom brought some books on methods of learning enlish . granfa , granma everyone is welcome ! ! It 's beeb quite a long while since I last wrote in my diary . During this time , I 've been kept prety busy . I attended the Smith College Forun today . AUGST RUSH I like to travle very much , if u r interested in me , just become my friend ok ? The use of e - mail and telephone costs us lots of money , not only for connection and packet taxes , but also for the basical lisence fee . So it is pleasnt for me to select from them . I suprised her . She was very supried ! I was hapy because I could make her smile . But I like eat potatoes , cokkies ( or potato chips ) and drink sweet black tea . Please lend your power ! Of course , I will help you with Jpanese , if you wanna study it . On the contrary to the good first impression , Johny was very naughty and loud little boy . What drives me craze is that the officials at school see me as the one responsible for opening the door to cheatting . There are many restrictions for smorkers in Japan , for example , more tax added on tobacco , restrictions on tobacco advertising , and cautions written on the packages . long time no write this dialy caz , I was in a quarrel with my parentsnot . but I was a nuisanced to my friends caz I lodginged at my friends ' homes . I 'm ahamed of myself now , , , , , What happned to my life ! ! ! ! Recently , it has been very popular among youger generations . I make a presentation next Tuseday . Maybe I ca n't awnser . Everyday we prepare many packeges . Because my cell makes a similar sound to my alram clock , I turned off the Especialy since this is my first time to make this kind of food , it is going to be great ! So I 'm not surprised that she was upset because deliverly is hard on their bodies and it 's pretty expensive . Hiroshima is famous for the atmic memorial park and Miyazima . Winter was kind of my favorite season . After each session , I strech my body and train my muscles . My body is so weak and rusty these days , so these execises really helps to refresh it . But I have a proprem . . . I can do anything whith English ^ - ^ I remembered my voilin teacher explaining me that ( to avoid repetition ) I dod n't know him well , but I want to hear his play of Paganini . Although the interview is in April , I 'm still affraid that if I wo n't pass the interview . other students uni fron Tokyo and Fkuoka came too , so it was very fun ! I have plans to go to Kyoto on the th . My frinds and I want to go Kinkaku - ji , Kiyomizu - temple and other places . My sister ordered a greentea tea latte that was very delicious . To the gentleman who dropped his shoe at the Hounted Mansion in Tokyo Disneyland , was your shoe safe ? I was on the waiting queue to get on the cart at the Hounted Mansion in Tokyo Disneyland . It was around a quater before 9 pm . No one seemed to have guessed it right and we all laught . Certainly , the Hounted Mansion is the last place where you want to drop your shoe . Guess what would bring your shoe back if you drop your shoe in the Hounted Mansion . When we happily got on the last ride , I wondered if they checked if the gentleman 's shoe has not changed into a cursed slipper or the equivalant . In addition , poeple worked together to achieve major progress to make their country more advanced . When I chose this time and this place , I specifically did so because there was a leader who ruled the poeple by justice and love . This leader was the prophet Mohamed who had a message for those poeple to deliver . And he spread peace among the poeple . From my point of view , the Prophet Mohamed was the most intelligent leader at that time , because he saw that if he wanted to build a country he had to establish the poeple first before doing anything else . Becauce of all of these things , I would like to live during that time just to see the peron who changed the world for the better and made us better creatures . I wanna chanege my life . It 's a real story that has happend at Grasse in France . He was mad , but finaly , he succeeded in the production of the miraculous perfume that made all people fall in love ! But firstly , I have to pass an English exam like TOFEL . Today , I participated in a English party and I met some realy nice people . However , the straydogs live hardly and panifully . When I was a university school student , I created a club that made me do something to help stray straydogs . Althogh we face many problems and attacks , we always do the things that we belive are right ! I opened the egg carton in the refrigerator and found that the eggs were fronzed hard . In addition to all that food , the lack of excercize has n't helped . and do some excercize every day . Recentry in Japan , . It 's been continuously hot for days . I do n't like this wheather . For A Good Presentaton ! Communication is far more than imformation exchange . It also includes eye contact , body language and so on . wanderful ! Somebody checks my dialy and corrects it immediately . There are tests in high school on this manth . The meal was very tasty and even though it was a buffet and buffets tend to have less nobility in taste and atmosphere , this was surprisingly very sofisticated in taste and atmosphere . I 'm really passionate about doing hair and make up , and have ambision for my job . After I finishe my assighnments , spring vacation awaits me ! ! ! I 'll go to Desny Sea on the 2nd of March with my friend . I have mant things to do . The English program tytol was Little Charo . I want to become to be able to communicate with foreign people in English , so it seems that this class is suitabale for me . I stayed at the hotel with a cowoker Mari . I was able to see skycrapers and the Opera house from there . I don ` t have a clere dream . As for lunguage , english and korean . an alternative to speaking with a mittor . It is a clean and confortable there ! ! And now I need to study hard because I want to do well this semestr . During that time , I traveled to 4 south east Asian contries with my friend from my university . I 'm gon na write about the ditailed leg of this trip in my next entry . Morning : I must get up before my roommate and read English loundly near the lake in our school . Night : I must remerber the English words . It 's very difficulte for me to use `` Little `` case by case ( / _ ; ` ) One nitght , we burned rice bran , which would make a smell the fleas like . `` What happened to your house ! `` our neighbor ran out of his house with fright when my mom generated the thick somke . I would like one day to leave my country and travell to England , but the problem is that my English is very bad and I do n't have a way of leaving . . . Can you please help me and teache me ? Bye , thak you . There is so much more vocabulary that I need to remeber . If we ever get to the bottom of the mecanism , we will be in the money though . Yet one thing I noticed is that if we do n't allow ourselves to say `` It 's okay to forget , `` our forgetness is suppressed . If we say so , our concious recognizes that it 's OK to forget . Oh , I remember one scientific report that showed loughter boosts our immune systems . Tonghit , I will see fireworks with my brother . Yes , I 'm falling in love with a girl who I 've always imanged , but it is going to be a really difficult time for me . I feel bad , what shuld I do ? That 's why I study harder these nowaday , but I have a problem with English class . I will take part in Chinese Speach Convention . Unfortunately , I am poor at organizing things , espcially this holiday . One of them was a huge threater with a super - high vison screen and another was showing an animation made by leading - edge technology . However , the course that I am taking now is more difficult . It will put more pressuer on me . I often hear that it is impossible to hear phrases that you ca n't say yourself . Therefore , I 've been raading sentenses and phraces out loud repeatedly in recent months . Please give me some advice to improve listening copriphention ! This is my third day isung lang - 8 . I 'm not really familiar with the functions here , so I always sents the same On the TV program for theEnglish lesson , `` Why not ! `` is thesame as `` Of cource , I will . . . `` it was tooo tired . . . . Japanease traditional dolls Today I decorated the japanease dolls in my house . I have to confess I wasthe kind of person who always said , `` God , why did you not grant me another chace . However , ater that peroid of my life and surviving some of life 's irony , I come to realize that there are so many things we are supposed to appreciate , but we always take them for granted and complain all day instead . In the morning , I rode my bicycle to the playground to go jagging . They go to parties , clubbings and other scenes to cover up / to hide their lonelyness . You will expact that another person will also show up just as easily . I choose to embrace my lonelyness . This whole joney of mine was just to reach you . Happy birthday grandpa ! ! ( even though I do n't konw how old he is ! ! As some areas in the world have their own calander , muslims also have their own lunar calend . Hirji calander . It 's a little bit earier timimg to greet for new year to us , but who cares ! Neither couldn I go to the library because I felt dizzy . I have many spelling errors and expressiong errors . I rounded these spot today , but I think that I would n't go by car because those parkings for cars are very expencive and there are many places around these spots without parking area . I recomend using the rental bicycle . In autum , we feel good cycling . We also had a good time and we tried the second movie which is a famous movie `` Harry Potter `` but we slept for a while because it was not so intresting for us . Uhmm , it was too difficalt to understand . Jyanet is my flend 's wife . I am speaking english moar . I 'm slyeepy . It sounds like `` Finding Nimo `` ) I want things to chang . Kuronenbourg is now owned by a British company . I have choosen this picture as my subject because of the last scene in this series . I want to attempt to write a short summery of it in English but I think it is too big of a challange for me now . . . This exam is very hardfor me and it is in January next year , that is to say / I . e . I have less than 6 months to prepair for it . I 'm wonderring if I should enter Azumedia , in Australia . a bowl of rice topped with chiken and eggs . Rememberig my daughter 's shining smile . Oh ~ sorry , I 'm having a grumble at the biggining of a journal . My boss told me to go for the lecture of the insurance company to get a lisence . I bought a merchine yesterday Yesterday I went to DG to buy a merchine with my boss . I saw and heard Framenco while I was working today . I wonder why all guys who sing Framenco music / songs sound the same . Besides , I 've never heard Japanese guys singing Framenco songs whereas I 've seen Japanese Framenco guitarists such as Jin Oki . I used to learn ( the ) Argentin tango , chacha , and salsa when I was a student . 1 . The teacher assined each student various homeworks . When I woke up nearly midday , I got a severe headahe because of a terrible hangover . But this morning I had to work because of the examinaion season : < The other guys do n't like punk very much , so they didi n't sung along with me . I 'm drinking my coffee and waiting for it to be 7 : 45 A . M . - the time to leave my place to go to my Universty . My Command of English Has Been Detereolating . . . I never use English these days , so my English has been detereolating so badly that I ca n't really speak anymore . My boss is very cool and interigent . becuse I ca n't speak English very well . I 'm so happy latery just friends to study English . I have found , and I already know that I should take care a lot , especialy on this site . . . ! Also there are lots of canals , so you can take a boat tour and admire the vievs . Here is an explanation about Doll Festibal and a picture of dolls . After the Festibal is finished , you must put the dolls away or you ca n't marry early . Animals walk on the hill , sleep , eatting , and run without restrictions . But , the autor of the article which I read defended that women can deal with money because they spend their money on a few small things , while men would buy ' useful ' tools instead . Immeditely I went back my home and cried a little without my voice . This is a Japanese company in London and most of emplyee are Japanese . Anyway , I 'm looking forwad to this coming summer , which has the longest daytime and gives us a lot of opportunities to play and drink in parks . Sometimes when I see foreigners come to Thailand and traval in the southern area of Thailand , go the the beach and things like that , I feel jealous . My family did n't traval often . Instead , they like to do their job and save the money for the furture . I used to ask my friends about heloliday and where thery like to traval and they said they did not traval often . somtimes they think if they do n't use the money to traval , they can use it to buy something better . I think in Bangkok we have a beatiful beach , a lot like pukat kabi city . So , about me , I have not to traval in the south , but I plan to go there one day when I have the money . He mentioned some contacts at Mizubishi he has there but had to leave quickly after that . Finding your center is very importmant . On the way , a very extraordinary thing happend . Studying in Canada is a valuale chance for me to become mature and learn to overcome tons of difficulties and barries . I like action / dancing / etc . just as I like music . It 's art , it 's soul , it attrection me that make me more expect ( ? ) myself . I like action , love and so on , Finally , I will be hard working and malke a lot of maney . Dath from the usual flu are more common than pig flu . I consider the vaccines ( and not only from pig flu ) in itself to be harmfull . Of cource , it can be usefull sometimes but not for everyone . Maybe I fouced on the game so much , I did n't know what to do next . Of course this was comfotable but I had no choice but to endure it . I remenber the time when a doctor began putting in the However , I do n't remenber anything after that . Besides I do n't have to pay any money to cut or parm my hair recentry . Of cource , jyuken has been gradually reviwed . After cutting , I looked in the mirro and I liked my new hairstyle very much . When I passed a parck , I found that my shose was loose and I sat on a white bench to tie the shose . After leaving the parck , I walked on my way home . However , many people just stared at me and laughted . At that moment , I thoght , `` What 's wrong with me ? `` Arriving home , I rushed to the mirro to look at my new hairstyle . When my back was in front of the mirro , I saw my white strait on skirt and cloth . I 'm a student at the Hokkaidou University in Japan . I had a responsibibility to win the prize this year . Although main cliants consist of office workers in their 30 's and 40 's , there are cliants in their 50 's and 60 's who are regarded as the manly generation in Japan . It would be quite embarrasing . I breed many kinds of red - bee - shrimps and some bettas . Breeding is fun , but occasinaly troublesome . As you know I like breaded pork cutlet so I was cooking it before opening my compuer and somethng happened to my fingers so I got my fingers burned . Gesus why did n't you tell me about this terrible thing that is happening to me ? My friend tells me that I must decrese the amount amount of Pepsi that I drink I decide to decrese the amout of Pepsi I drink It 's been a long time since I studied enlish . My friend Ming told me about this wedsite so I came here . It 's a good place for learning English , and I will come here when I am free . So I need to stop writting . So many things happend since I had left lang - 8 / during my absence . About 9 years have passed since I started stadying English . I 'm frustrated with my lack of progless ! She has sacrificed so much for her childern . I used to have a dog whos nam was Taro . I 'd liike to get a dog . If they had more momey , they would spend it on other things , such as playing games at the arcade , or going out at MacDonald 's or Kentukky Fried Chicken . I think children would be spoilt if they receive too much allowance from their parents so 10 dollors per week is enough . But , I have to do homewark X ( It 's contents are scret . Actully I was impressied by that . He was wearing earphones ( maybe listenning to music like something with a strong dance beat ) and he danced for almost 1 hour . I seem to able to continue it , because it very derisious ! ! I was saked `` May I make a character box meal for you ? `` She said `` I ` ll make pikattyuu box meal `` . It will be a plasure to eat that ! I feel my oppinion is selfish . . . haha Cause I never discussed it with my husband ! ( Hasband to be . ) Are the following sentencies gramatically correct ? The pasing grade is 60 points , so I think I made the passing mark . My English is so poor , but I must try to write someting . Spting Storm All I have to do is keeps on learnin it and I will speak almost perfectly someday . At that moment , a professor , one of my male boss , suddenry came in and said , `` You are using blotting paper ! `` He did n't mean that the lady should not use blotting paper in an official place . He is very cute and smart perdson usually , but sometimes lacks in delicacy . Maybe we wemen , also break guys hearts because of a lack for the male way of thinking I think I was kind of pathetic becaouse I had no strong feeling when I lost my lover . Ginza line is good for them because it gose under a lot of tourist spots . When you talk to someone directly , you can se right away if they do n't understand you . When you send an e - mail , the receiver may misinterpret what youy want to say . Actually , it is very usefull and helps to save time but you should consider that the E - mail is a second best method of communication . I work for an American IT company and our collegues like to send e - mails because there are time differences between the reasions . No one suceed in Japan if they do not prefer the face - to - face meetings . In summry , if you want to establish a relationship with another human being , the best way is talkin face to face . When you communicate directly , you can avoid misunderstandngs that may occure in writing . Many peoples in other contries know this ( fact ) , Of course , we are the ringleader who experienced the terible war called `` The Korean War `` . For a long time , women have had less oppertunities to find a job in many areas . Its all part of a field study being conducted by marine biologists Paul sickle ( maybe ? ) and Donna Nimet , whith funding from earthwatch institute . but I have already watchted them . plase call and send an e - mail or write a sentence . . Annual Meeting of resitdents ' association I am not sure about my enmotion . Today is a bad day because I received a customer comoplain . . . : ( I just feel so much shame for our RD and assembly people . Everytime they promise that they will pay more attention in order to prevant the problem happening but then . . . the problem always happens again . When I was doing my military secive , we were close to each other . I have somthing I 'm worreid about . . . ! ! ! ! I will stay up ALL NIGHT studing for my exam . Because , when I 'm 20 years old , I 'll run to the USA , find myself a rich husband mith a big house , an even bigger belly , and a small penis . This is the last year I 'm studying at scool , or , more exactly , at the Lyceum of Physics and Mathematics , and I hope to find myself in some cool ( or not ) university by August . Maybe I need more sleep or some exerices . Today , I went to a drinkind and eating place with my firends . In English I can express evrything using only 26 letters ! I am going to hold a driking party with my co - workers next Friday . Before that , I need to get my father 's permition . Unfortunately , when I finished speaking my frist topic , then the teacher came to us and I felt nervous ! Coincidently , I had an unkonw question which made me embarrassed . I am always thinkng about what makes a good speaker . I like to play the guiter . F - shaped hole guiter is offten used for blues and jazz . Some of the old guiter were corted in shellac vernish , it sounds very good . I went to see the cherry blossms at Yeido park last Monday . It was my company aniversty . It was a good atomosphere . I feel I am gainning weight . These days I think I ate too much so I am gainning weight . So last year I experienced my first campas life ! At the bigginning of the school year , I had almost no friends at the university . From friends , familiy , friends in US , my host family and so on . Those mede me realize I have been supported by so many people ! ! ! And buy souveniers and the like . However , it 's impossible to discribe accurately the sense rooted in individual bodies by using our common sense . I like to drink a cup of coffee wheni feel tired or want to sleep , aspecially after lunch ! Novemver . In my opinion , whether teaching the sudents who have already had plenty knowledge of English , or the children who have never experienced English before , the techer should recognize the importance of teaching . Even though they do n't have the language environment to speak English , they can sing some English songs to review and strenthen their English . My suggestion is that the teacher can teach some Enlish songs which is related to the English lesson . Yes , hindsigh is 20 / 20 . The Art of Disney Gallery is held outside in Downtown Disny . Today I 'm going to tell you a very interesting story that belongs to the traditional / folk literature of my little coutry . In our country , there are a lot of ancient estructures that were built before the Roman conquest . They are called `` castros `` , and it 's said that they were buit by an ancient culture , probably linked to the Celts . There is only one small problem : if you try getting them , you could be buried alive and die in the dephts of earth . My favorit hobby is listning to music . The legend of Sant George part - 1 I was not intrested in the topic because I have heard enough of that . However an esssay intrested me . However , If you do n't exercise early day , you will not be healthy and after you grow up you ca n't even study or work at offiice . So far , I 've only watched about two movies a week becuase I do n't have enough time . Visiting Aamerica was very good . There are many restrants , stores , and the ocean . The bay cruise around alancatraz is good . Boudin is a restrant . My recommendation is the clam chowder that comes in a bread bowll . So you should go tere , and you should take a taxi or tour bus . If the weather is good , you can see beautiful streets , the bay , and the Gorden Gate brighe . At both noon time and night time , it is bery beautiful . But the wind is strong there , so you should bring a parkar . So if you come San Francisco , you should bring a parkar . First we saw a big ship , we took photos , and we saw a fishman at the beach . I read `` Graded Readers `` , Penguin Readers , Oxford Bookwarm . . . and others . You must feel umfortable . On the second night , we took a walk around the souvernir quater ( ? ) after having diner . As a natural reflection , he looked around to find the cultrip . He was masculine and grittering during the wedding party . I found the chocolate in a shop selling cubic rice cruckers . My hotel has 3 rooms for weddings , 3 rooms for parties , a Japanese restaulant , and a restaulant . I have n't been to a forign country , such a America . I 'm relly eager to be good at English . I fook forward to meeting her because whenever we meet , she has grown . I 'm very borned with it because I 'm very lazy but it 's necessary to get my degree from university . I played the guitar in a band at the time , and we copied thier songs . Some webstes and someone told me that getting PR in this country is pretty difficult now except for special skill workers . You guys must see my bright future there in sileint . I knew how fascinating the zoo could be from reading a relevent book , and I thought I wanted to go there if I had a chance . Last nigit , in the live house , I heard many people speaking different languages like English , Frengch , Alas , if only I had a good parter and a child . As time went on , only a few people have remembered the campain and people stopped continuing to quit smoking . I recomend you to watch it . It just looks like a cigarette case , so cool and cawaii ( cute ) ! Today , I cleaned my hous with my wife . I have liked Engish since I was young . . My friend recommand this homepage . The people coming to the horse race weared wearing far outclothes . My friends told me he received some impormation from his manager thathorsenumber 5 will win . As we watched the race , we were sured that number 5 horse would win . My grandmother passed away 1 month ago , so we bured her under I am now working for Au pair and exchange between korea and American culture here . This is my first dialy entry on Lang - 8 . I wonder what they are passionated . . It tooks 8hours , more than three times longer than Shinkansen , from Osaka to Tokyo . I do n't know how long I will stay here , but everything seems gets better . I like the feeling now , because I can ask qustions now , no matter how easy it is , I do n't care , because I want to know the answer . It is the only way to grow up . Now , my colleages treat me well , and always answer my question , and I am trying to do everything perfect , so that they have no excuse to blame me . Nice to meet you , evvryone . That is doing ypurself ; you do n't need to care about others ' views . I trust mysely , I will realize my dreams , fighting ! ! I spred cream Goma paste on my bread . Here 's hte website : Meating Grandma and granpa ! ! ! Their relationships are always changing , so it is interesting fot me . I 'm still a begginer . Facebook was n't so major in Japan untill last year though so many people use it all over the world . Nowadays , Facebook is getting mager and mager in Japan because of the movie ' Social Network ' which is showing now . From a Japnese historical standpoint , however , this idea is the other way arround because it was harder for Japan to watch and protect against invasions . It has Swavsky 's crystals on its stainless belt and face . Moreover it was rainly in the afternoon . so we coudl n't make any food or take showers during the last three days . 80 % of Japanese boys talke to others with humility and the rest of the 20 % , are totally insolent like kids . How about the boys in your contry ? So I 've been studying hard latedays When my Eglish becomes better , I 'll help my other friends So , I began to go to an English conversation class recentry . and it will be understood to everyone reading my diary easilly . When I have incresed stress , I usually did n't sleep well . She also membtioned the point that she had kept complaining about it for more than 20 years . A lot of people are crying and can not have met thier family and friends . I will cheak about the South Korea and hokkaido , I want to fly immediately . I know that you are a very busy person and , penhaps , you will not be able to answer me , I have lerned English for eight years . It 's spring now , I may need to start thinking about my furure . I want to learn English becase I am very interested in English cultura , people , cities , and more . Also , I have problems with articles , prepasotion and more ! Recently I 've been trying to read English newpapers . Terms are not esay . Sentence structures are not falimar to me . A major cause of the misperceotion , though , is Presodent Lee 's sagging popularity . How differant are these ? The primary footprint is a measure of our direct emissions of CO2 from the burning of fossil fuels including domestic enerfy consumption and transportation . We have direct contrel of ' these ' . The seaside is my runnninng course . These days , cabdidates can hardly work as a full time employee . I 'm trying to decide which would be a good gift for mothre 's Day . At the same time , I am learning japaness as well , in this case , it makes my English become worse . . . . I do n't have much time to use English in my daily life . I hope I can improve my English writting ability . My husband and I went to see a muvie . Before the muvie , I went to a department store and bought a pretty ring . We had n't expected the muvie to be good . The architecture of the buildings such as palaces , theaters , museams were really wonderful . The colore of the river water was not blue although the river is famous as `` The Blue Danube `` . I slept during the reading section and lost about 100 points more than the ( listeining ) section . I found this websit from my English club a minute ago . I want to neet you guys , whoever you are . I wil buy more of it later . So when I was listening to a song on TV she suggested to give some Persian songs to Farsi leaners . After the wemen in my family made many of the dishes like the meats , rice cake , fruits , grilled fish , Korean traditional fan - fried cakes and the boiled potherbs , we knelt down to make deep bow with the Korean traditional alcohol before a picture of my father 's face . I amcurrently live in Japan but I 'll be moving to London to study web design next month . I play iano too , of course , as an amateur . It has been a long time since I 've written a dialy , so I wanna write about some things that happened recently / in the last few days . It is so good because I was looking for a job in which I could use my portugues skills , and this jjob is perfect ! To tell the truth , I am not sure that I could do it perfectty , but I will try hard ! London is my favorit city because there the old buildings and new buildings coexist . If every day passed more quicckly , I could leave for there right away ! his face , chracteristic , his way of speaking , haha . Just Beggining my Journal I 'm beggining my journal today . Because I have n't seen them in a long time , I am looling forward to meeting them again . And I 'll watch `` WHAT HAPPENS IN VEGAS `` starirng Cameron Diaz . I am afriad to take the Listening Course . I was so sad and kept cryng . Also I liked Penelopa Cruz . It 's a really usefull leg ! I like Udonn . It 's really difficult to think of it becasue he 's straight . Of _ Ofcourse , students are really looking forward to travel and they want to bring enough snacks to spend wonderful teatimes with their friends . ( Of _ Ofcourse , there are not any cooling appliances in the institution ) I like to speek English . Today , I took the ANA employment exam at Haneda aieport . The test required the ability to cope with a lot of different infomation at one time , and that determined whether you passed or failed . and it eaches . TEN MOSQITO SPOTS / BITES I ' VE HAD ENOGHT ! ! ! ! In body pump , we use dumbbels like attached picture . Right now I ca n't speak , writting or understand English . The man seeing with truely eyes did n't compare King Solomon and a field lily . That was thoroughtly thrilling to me . Sometime ago , I opened a litle bussiness with my friends . That 's why my bussines is related to computers . I love sciens too , but not as much as I love computers and Google : ) I 've been married for over two years . I love my wife more than all of my computers , open source , sciens , and even Google : ) I 'm happy becouse it was the fourth time that I have taken the exam . I am also glad beecouse I found this wesite for learning English . I , of owcourse , will also help you with Polish . But the foggy and claudy weather make the city blue . Would you chek my letter ? ) * please * JOHN ( Black Labrador Retriber ) and Ryu ( Dachshund ) . When we walked along the river near the house , we saw so many firely around . I have something to do in Korea , Oficially and personally . I bought the flight tickets and bus tickets to the airpott . It made me feel tierd . Of course we can talk bia the internet . I am so tierd . That exam had some strange quesions . How many aborighial tribes are there in Taiwan ? It 's the easist subject . But I do n't think easy quesions are good . I have been studying Engish for 7 years . I want to be carefull of `` May disease `` . I 've been studying Englis because I like English and I want to commucicate with local people . I 'm goint to Australia for my working holiday this August . I lile trips and cultural exchange and volunteer work for handicapped children . If someone interested the jounal , please correct my sentences ! ! Thank U . ( The photo meanse I love U in sign language . ) I came here without a driver 's lisence , cash , and credit cards . jewelry label CHIMASKI I decided writting English diary entry every day and I 'll study English hard this year . Ahcccccho ! I am planning to go abroad in about one year to study fashion desigh in England or France . I 'm thinking of entering fashion college or woking as an assistant designer using the working holiday visa . furnished pravate room with a frige landly , shower , and bicycle parking is free . 4 minites away from the nerest subway station . from 90000 yen per month for at least a 3 month contract , and a depsit of 50000yen . They have coloful coats , tops and pumps . I like spring becouse it is coloful and comfortable . My son had a sore thoat and diarrhea the day before yesterday . I was staing up late and chatting with my friend Keita on Facebook , so I wanted to sleep a little longer . Breakfast was alredy ready by my mother . After I ate / had it , I took my pajamas off and took my clothes on . It 's like Ninjya . but thier firts meeting was a bad one . I experienced an unforgettalbe interview and the outcome was unbelievable . So when they asked me about my english I answerd honestly with ' My english is poor . ' For the next few moments there silence and afterwards the interview finished quickly . When I recived the offer my classmates said to me ' Honesty is a virtue ' . I am used to Imari , but I am a beginner of Kutain . Yestrday , I talked to my former colleague working with me when we worked part time in a theater on phone . If someone make stupid and awkwward mistakes , she will blame her or him very severely . This activity seems to be fun but actually , it is a kind of task becuase we are learning how to write `` compare / contust `` structures . After watching the movie , we have to write about the movie by using `` compare and contrust `` . It 's my first time writing a daiary entry here ; ) Yeasterday I went to Shinjukugyoen with David . I like Spering the most out of the 4 seasons ; ) Draemon is a Japanese comic , but the comic that I bought is written in English . People tend to examine conrrectness repeatedly when it comes to observation . Those observations which can withstand examing results can be considered as objective or nearly objective . recentry , everyday it 's raining . When I was fourting years old , a new boy was in my class . My heart was baddly broken . Alwanys be possitive . `` The shue thrower `` ? Today I found this homepage and resgistered immediately . I came here to print some paper because at my house I do n't have a priter . The keyboard here is not solf like the one at my house . Well , another reson that my keyboard is soft is because I have been using it every day , Sometimes I like to type more than using a microhone because accaully when I speak , I think in Thai before speaking in English and I do n't like it . . But that does not help me because when I typep I always make mistakes in English . By the way , I 'm falling asleep right now . Last night I tried to read poems . I had never done so before . It was my frist time . I am really excited . I just realized that it is an awesome way to study English . I was in my office in Tokyo when the earthqukae occured . Although I have already studied English for six years in middlle school , my speaking and listenning are still terrible . My hasband cooked a beef steak and some pasta for me . Edinbourgh is the capital of Scotland . Even though most employees are Japanese , some should sent emails to their bosses and I have the oppotunities to see such emails sometimes . I ate lunch with elementary school tudents and educated them about food . Or present temprature is higher than annual . I am stadying English very hard . When I went for a walk , I passed a little retaurant . In front of the shop , there was an air airconditioner blowing quite a hot wind . I went to univercity for a club activity . I 'll go shohpping tomorrow : ) I am in Austrlia working on the holiday at the moment . But aftet now . . . . . Yesterday , I was just atudding for my exam had a lokked at my window and there was a spider . . I think that the king was weard , but I know , it 's funny to be inspirated with such a small thing . As for the article and the Harge Convention , I had discussed it with two of my friends from the UK before I posted it . I want to learn English , but I can not find any people to study with , so I have not study it for a long time . However , when I suddenly find Lang - 8 , in which I can fing people all over the world that I can study with , I 'm happy , because I can study English again . To be like everyone else is like being nobody or smth . The thing is that I have to write smth , even if it 's utter nonsense . Vomiting , diarrhea , the appearance of UFOs , or fits of sexual neurosis . . . I thought I would make a specail lunch for him . I 'm staying with my host familiy now . So I ca n't deside yet . I had never been in sales so I 'm feelnig frustrated nowadays . chewing gum dates back to the acient Greeks who chewed resin from trees . Morden chewing gum was patented in the US in 1869 by , believe or not , a denest . In 1928 , another American invented bubble gum . Bubble gum comes in gumbles of all colors and sizes , but for blowing bubbles , nothing beats the chewy , gooey pink stuff in the twist wrap . I speak Japaese only . I will appereciate it if you check this . lomg time no see I was busy for a lomg time . He is a docter . He said that he wanted to be a docter ever since he was a child . But tommorow I 'm going to follow the schedule I made . It includes studying English and finishing my college 's assinment . Anyway , I hope I can use English like people who are working in foregin countries . Maybe it is written in Japanese , so we can not see it in foreign counttries Olimpic Games 2 I hope it comes ture , . Most young people live in arban areas to work . I will write a daiary starting today . I hope to build a new bujjiness to change the world . I wrote `` Momotorou `` again after a long time . After a while Momotarou and the dog wolked away . The monkey was pleased , and follwed Momotarou . I 'm considering to introduce my coutry . Rusia and the United States have completed the largest spy exchange since the Cold War . I feel it is amazing that Rusia and the United States still engage in espionage to steal military secrets . Will they also be taken to Rusia ? Their son and doughter are pitiful , too . Loving someone is bulliant magic ! Ergonomiics and style were all considered as much as possible . So I poured some syrop on my Caramel Frappuccino . Shunsuke Nakamura is my favolite football player . His free kick was amaging . The Japan football reague is still at middle level in the world . I will rty to keep a diary from now on . Pls help me , and together we can happily learn languages I do n't like vegetables , but today 's soup was delishous ! ! Because it was rainny . I thought `` he alrady an adult `` . . . . . . . When I was a child , I played soccer and then after enrolling in jonior high school , I played basketball . For example , altohgh boxing or Karate looks so painful , it looks so fun to me ! I 've been healty since I was younger , so I answered `` It ca n't hurt . `` The temperature is modelate . it 's the first time I am using the interent at home since my return . And more unfortuately , I lost my cellphone and some money when i No wonder my right eye kept twiching when However I was dissapointed at the dishes in a certain scene in the film . I think the Japannese way of life is better than before . This morrining , I saw a group of swans . Its around 3 hundreds . Since then , I heve been determined to succeed Because I also have a mooustache and a beard . I have German text books cuse I bought them yesterday . yesterday I decided to learn German cuse speaking German is really cool . For a long time , I have been dissatisfied with my English ability ( especially writing ) , and I have been seeking a good way to studing English . You might really want to escape from the loop and procede to 2pm , 3pm , the next day , and so on , because we all need the future . In paticular , the variety programs are interesting . It rained hard , so we were wet when we finishied the rite and went to a nearby restaurant . Sometimes we all ask ourselves `` When will the day be that we acomplish it ? `` But we enjoy the acesse to our life 's trip . ( ? ) What the above means is that if you wanna grabe something , you must pay its equal in efforts . I hope my dream will come ture . Of course it is one of the priciple of human life but I think that it is not good . Especially in my high - school , I strongly remeber that is the best exercise . Just now I 'm going to read a chapter of Dickens ' book ' A tale of two cities ' and maybe later I 'll write an entrie about the book . The procedure was that preschoolers joined the kindergartners and had a lesson with them . The kindergartners were so friendly and cute . Maybe it 's the most uncertain time in my life , but I 'll make myself touger and tougher to overcome all the difficulites . It has a picture of some women who lives in Aflica . There are some things on their heads ( or top ? ) like fruts or vegitables and they look so happy . The main color is a sunset color and it 's so butiful . It was just serving in an itarian restaurant . Orginary , I wanted to work in pub in Itaewone that is located in Korea . Many foreigners hang out their with their friends . Frankly speaking , I expected that there are many beatiful weman . But I was dispointed . I have just strated study for IELTS . One of elderly men said `` There is someting under the machine . `` It 's owesome , but I think they will not be accepted in Japan largely . . . . Too pank and a little abnormal . Still , by looking at stars and examinig them , it was discovered that stars emit light which reaches the Earth in even intervals . Japan may never have a better opportunity to bring Asiaa better opportunity to bring Asia 's woeful World Cup record against South American opposition to the therd round today . Of couse we are happy that we went throgh the second round . I am excited therd game ! ! ! After that I left the house and went to the place of employement . I wanted to go to drink a coffe but Timo told me that they had drank a tea before I arrived . The Alchemist is about a young shepard who was curious about his future . He follows his dreams and the signs telling him the directions where he should go , and he finally reaches his goal and finds out what he wants . At that time , we cook rice with red beens and serve it . Once I start to write an entry in my diary , I ca n't stop writing by the propre volume . I 've become talktive on this site . I want to correct them , but I do n't have enought time . I know that there are better corecters than I . Today is Wendnesday , February the second . I admit I 'm spoild . I have had it , which was sold packed in a pet bottle , onece in an oversea country . I could n't stop laughing that `` Dairy `` means milk or Chees in English . It has been a week since the earthquake occurrered . It has a softness and springliness against the teeth . so I 'll make an effoet to study English . I like Ssaturday very much , and I can overseep in the morning . and I went to the libriary . Good evening people , I am Lucia , I come from Italy , I am an Italian student at the accademy of art in Frosinone . . . hallo , I am a unversity student . To acqire more Engulish skill For 3 or 4 hours and more we 'd better watch English movies or TV programs or listening to English CDs without Japanese information , any sabtitles Or japanese pronunciations . It 's a famaous movie and I enjoyed it , but the dailogue and monologue I could understand was 1 / 10 of whole movie With the information for eys ( not subtitles but images ) , I managed to enjoyed it though There was a wting class today . I chose it for this simeter because I want to write better . Then we , for exemple , changed from the following sentece . I manated to get through the day . We could spend 100en for each specal curried bread , yakisoba , oyaki and sausage . Voice blog can make your acount and create your voice blog . However , I do not know about my neighbor , so I have no idea about where I should take them . It said taht there are items that were not paid for . Favorites & interests : snowboading , reading books , cooking , comics , video games ( Final Fantasy ) I think it 's better to simply say that the word is unkown when it 's not in the dictionary , but it seems there 's no way to change the setting . It 's already wendsday , However , whenever I travel abroad , I always run into troublel making an itinerary Anyway , I 'm looking forward to treveling to Japan ~ ! They 'll visite the elementary school next month . Even now , radiation has been reaking from the nuclear plants . I felt relieved by thier optimistic attitude . The snow is melting into watter . Only one t . Sprouts are smilling under the sun . Everyting is running with the time . Everywhere you go , yoiu can see them celebrating . Because it is the spring festicval in china . My hope is that my writtings can blossom like the flowers during spring . But I hav n't started doing new things yet . He cought my fancy when I saw him in the Harry Potter film in the role of Sedric Diggory . I like to listen music and play badminto when I am free . I sutudy English . New hairstyel I wanted to change my hairstyel long long ago , but I was afraid to do it . this time I was determined to change . After three hours , my straight hair disappered . `` Your new hairstyel looks very good `` my friends always say . Finally I want to speak correctly when comunicate orally . After eating , we played MARIO BRATHERS on the Wii . Now it just gives me a chance to reumite with myparents . And it will be a tiring tirp . Dear Johny , Long time , no writning ! But four days have passed , now I 'm getting bored , I have no more interssting in reading books . The weather is so good , why can I only stay at the house , I 'm freeking out because of this kind of life . So I dicited to go out , even though I have no idea what to do , I just want to go out , and have some sunshine ! She whould need treatment in a hospital for at least a month . As a result , I could n't win the prize , however , the members of the team all said that they were satisfied with the team - managemanet and presentation . That enforced my confidence of my growth . I have been learing . Englishi is very difficult . Grammer is different with Japanese . It takes time to write even a short sentence . Today , the weather is prettty hot . Subemerge yourself . what I realy want to be . . . empoyee ? self emploed ? I do n't remember words and grammer . He was a very kind and friendly person and gave us lots of imformation about Fukui . Chiness are very diligent so there are nothing people to sleep . ? At present , my doughter and wife live there We met 3 times , and I took Kelvin to Moskow . Yesyerday , my sister was admissioned to Si Chuan university ! In the afternoon , my sister told me a small sercretly , that she has a boy friend . he has been in Japan when I was junior high school syudent . always confuce I am very sleepy now and do n't feel so well because I wrote an English essay at 4 o ' clock in the moning . speciasl day ! ? I tried donating blood before , but that day I could not because I was in blad condition . The Nurse said I could danate blood today , also she said her name was the same as mine . After donating , I really wanted to buy cokies for my famiy and friends . So I got in a line to buy famous cokies . I could n't remember what had happend , Finally , I got cokies . I knowm that the war is cruel . It is said that almost all Japanease like cherry blossom , they feel transience there . I watched the Olympics on telvision . MY ASNSWER : It 's as if I had discourse with myself or with something that creats and manipulates me . So I decided to write even if nobady reads it . On the other hand , it is likely that I 've unloaded a burdone from my shoulders because I have a feeling that I am incapable of treasuring the corrections I 've been given . solor energy Heppy Hew Year ! I want to watch a baseball game , but there is n't a game tmorrow . Anyway I 'd like to make more experiance . It ' sThis is my frist post , you know , and my 91st attempt at learning English ! My summer vacaion will start tomorrow ! : ) yay It 's hard to to learn other lungages , but if I can , it 'll be interesting ! Actually , I had difficulty chosing this one because there was another cool red one . I think my English will become better and better . One day just like some other people whose English is not very good at first , but later after all the hard work they successed . I used to pratice my oral English because I think English is a tool to communicate with others . If you ca n't speak English smoothly , how can you communicate effectively ? When I watch other people speak English to foreigners I really admir them . My dream is to talk with foreigners in English one day , so I hope there are some people who would like to talk with me and help me improve my English . beaucse the weather is good . Human beings have four main kinds of desires . These are labeled greed , rivalry , vanity and love of power . I aiso use some frozen meals . I ca n't keep my brance acually I messed up my barance and tumbled off the ball = < We were able to see beautiful beaches , but were also able to see many cargo boats around 3 kilometers offshare as well . in order to kiil time , I might as well browse some boring news on the disccusion forum , but I know it is not the life I want to live . Fotunately , I was not harmed by the earthquake . I ca n't get over just writing such a nusty jounal entry . Fathermore , he waits until I find my cellular phone in my bag . If I were god , I would definitely punish him for his lazyness . But when I started talking , nobody responsed to what I said . So my topic did n't make sence . Therefore I think we have to do somthing to fix nature . ( sounds more natural ) When I hammer neils , it is sooooo noisy ! ! I quit using neils to avoid complaint from neigbers and went to the DIY shop to buy screws . with my doughtr ( A ) Whether the pay is high or low , it is very important to take the most subitable job for you . My question is , if you can tell what will happen in 30 minutes , or if you can read what people are thinking , then what whould you like to do ? My ansewer is perhaps not appropriate for the quastion . I only want a little bit of these abilities because if I can predict everything in the world and others do the same , the place we are living will become so boring and our eagerness for learning will desappear . So I always serch for a native English speaker who is studying Japanese . I always send a message like the one below this sentense when I want to be friends . ~ below , I send a useful sentense ~ fogetting about the irritating hot climate ( temperatures ) . Back to the subjet , I knew him from QQ , then we met on 17th Nov , and then I became his girlfriend . Sakura festival started last week . I would uproad a few pictures I took today . In Japan , we can see a rabit on the moon . So , dipression is hitting our dept . Hellow there . I 'm studying polymer chemstry . One foreign language sounds differnet from another . But it was a contraversial thing ! HPPY HALLOWEEN So I can I provide anime style charactor designs to people from all over the world . They both felt that it was distined then . We learn new words everyday , take classe during summer and winter vacations , reading newspapers and magzines every week . And it seems that we learn too much gramma in school . Because the purpose ( goal ) of learning a language is to comunicate with the others . To learn a forign language , we should try to speak it as more as we can , And in my opinion , a test will push us speaking more and seak better . Europe contries are near each other . I might not be able to recieve pension for about 10 months in the future because I forgot to pay 10 months ' worth of payment . . . However , since most Japanese go to university and start working at about 22 - 24 years old , the Sosical Insurance Agency made a system in which we can hold off the payment until we graduate from school . To be honest , although I like studing English , I do n't think this will help . Maybe , men are more apt in remembering thier ex - girlfriends and comparing a new one with their past girlfriends than women are . So , it would seem , too , that men tend to be romantist more than women who tend to look at reality and securelity . I like hime because he is plugged in . Becides , as a partner in the intern program , we usually come up with a game plan to meet our goals . That 's why it surpirsed me very much that he went for brok on those work , expecially on selling the product . I always wear my hair near my chin and now I have decided to wait and do something diferent . I intoduce the intersting Kobe has many nice caffes . And I really like to play footbal . Today , the weather was fair untill noon . I was able to hold the alumni reunion of Seoul Pyeongwha elenmentary School for all graduates at the playground of my school on February 5 , 2008 at 6 PM . And these days I 'm trying to convert my Korean version mini hompage into an English version one so that foreigners can stop by my homepage . This event is hold once every three years in Yokohama city . I went to it three years ago . Back then , the artist was also young , and thear creaption had a wild imagination . Thank you for reading my dialy . I wooke up so late because I wantched a film called ' NANA ' until the early hours of the morning . The continuatio of the film ( NANA 2 ) has been published . However , the formar one is excellent ! I hope everythiing will be fine ! so , we were hanging out till night , so l my lesg hurt from all that walking . Her 's parents were very temder / nice when I visited their home . I drank a lot of alchole last night . Last tuesday , I wento to an `` English canversation bar `` on my way home . I could see onlly regular custmers at first , but welcome to Taiwen . Japan wo n't be able to keep up with the American economy forever . ( We thought that `` someday we will get alead of America `` until 1995 . ) Sometimes the American government has congerences with aliens in secret . American tornades are also American size . ( Sometimes tornades appear in Japan , but most tornades are generally small . When we first see American tornades on TV , we are surprised at how big they are . ) Why do n't you listenning the song ? ? colums of the newspaper . recentry I 've mostly been going to the library to study English ! I like working at restaurants except my shirt , pants and hair / hait [ ? ] smell of oil after work . It smells delicious , but I need to take a shower ater working at the restaurant . Afterward , I watched Ryoma - den , which is a Japanese histry drama starring Mr . The following URL is my pronuciation prctice reading the same sentences as # 1 . but my favorist group is Placebo . I hope that you 'll understend my text ) ) A MacDonald 's humburger is also 105 yen ! So cheap sushi and a humburger are the same price . Hello , Lng - 8 friends ! But I ca n't decied the colour . Through that time I had worked as a soccor player at my elementery I must be behined the times . In my opinion , every student is studying the same topics in high school , but we have more spare time in colldge , so , many of the other students Firstly , we can make friends . Friends will help you when you are in trouble . Secondly , we can do what we love . For example , playing guitta , First , I like to travel abload and most of the countries I want to visit are English speaking countries . I ordered ' Oroshi Tenpura Udon ' which was cold udon with tenpura and grated Japanese radish . To tell more in detail , each noodle was chewy , and soup was n't too concentrated , and tenpura taste matched to noodle and soup . Now they are pretty and green . I think your contry is also pretty and green since it is spring . I need to buy something special for her to congraturate her birthday , but I do not know what to give her . There are many visiter from foreign countries and workers , too . So I started to learn Englsih . The Futenma American miritary base , corruption of many politicians and so on . Then I find myself being into new services and gadges and think like this : I can drow and I think that it can help me . When I was yotung I liked colas , sodas and sweet drinks . When someone kndly correct my text , I feel happy . Usually , we congraturate on special days like a birthday , St . However , I like congraturate on ordinary day . If I congraturate on normal days , I can get a small reward confidentially . However the differnets between this book and other traditonal English word books is that it tells you how to use the root of words to remember words . I looksed for sports weare in there . Possibly , that post may leave the impressione that I want to bring attention to myself or hear some praise . I 'm nervous taht I can talk well . I wnat many users to edit my writing . Models who are always under much pressure to lose weight should have pyschological mentors who can give them real advice . This system can be preperation for students with specific areas of study that they are going to choose in ther future . If they become Sekitori , a sumo wresler of the rank of Juryu or above , they can get at least a 12000000 / year salary , but if their status is lowet than sekitori , they only get 1000000 / year . In order to keep Sekitori , they must win at least 8 bouts out of 15 bouts in a tounament . They have 6 tounaments a year . In my opinion , the red roses and chiks do not match . I did n't think that the chick was qute or pretty , also I never wanted to touch it , but it looked like cotton candy . She knows how to teach , and how to insipre the students to speak out . They are Japanase singers . When I wathed The World Cup , I was impressed by his play ! Hellow ! ! ! Anyway , I recieve a pepero from my boyfriend . It was not costy , just 700yen per adult . ( without optional services ) Allmost every town in Japan have this kind of bathhouse . It is just 4 degrees Celsium . I hope that tomorrow will be nicier and I could go play basketball or something else . This means I will choose a college and decide my futrue job . I learnd how to use the word `` rain `` in junior high school as follows ; - Bullets came rainig down . If succeed , I could apply for a full scholarship from NUS so that I do n't need the financial aid from my parents coz the overall tuition fee each year is a little of a burdon to them . `` I talked to the fragile girl beaten by tension , `` Now you 've nothing but courage and diligency , DON ' T LET ME DOWN ! `` So I have been thinking people from the east coast pronouce the T . On the other hand , others pronouce it `` b - I - hind `` . Tooday I want to tell you about `` Buttery Thursday `` or `` Pancake Day . `` At a certain time of year , we have Buttery Thursday when everyone eats donats as many as he wants ( see the pic above ) . Although we normally eat two donats , one of my coworkers has eaten 14 doughnuts today . How shoud I deal with it because I do n't like to drink ? For example , they carried our baggage all the time , they opened any doors for us , and they surved food to our plates at restaurants while we were eating . Is that because Hong HongKong was colonized by England for a long time ? Oriental and Western cultures are mixed together in HongKong Kong 's multicultural society . One was working for a restrant . I have worked there sinse I entered the university . Before the wedding in my own country , the bride and groom ca n't see each other until the wedding day because the bride is busy with her `` Hana Day `` . Becaus it 's been raining for 5 weeks , I 've been playing soccer in the rain . Landmark tower , consert halls , harbor , foreign residences , a big shopping mall and so on . That 's why today 's short trip to Yokohama felt a little bit heay . I 'm lookong forward to tomorrow . I like the sound of the guiter as well as the ukulele yery much . On my last journal entry , a friend of mine told me about a Hawai podcast . While I was browsing the site and listening to the podcast , I felt like listening to Hawaish - ish music . Speaking of Hawai , I think of the ukulele . Actually , I play the guiter , too . Although I 'm still not very good at it , I always enjoy playing the guiter and singing out loud ! Please teach me aoounting ^ ^ I think it is a very beatiful country . I feel that I 've wasted so much time trying to show what a smart and cool guy I was , that when it 's time to graduate , I find that neither my spcial view on physics nor my acting ( ? ) can help with my job hunting , which is the real - life . There are at least 3 choices I could choose . But I do n't think more choices or more chances would economically mean much ( ? ) . Whichever choice I ultimately make , the cost will ber huge . My roomate has been focusing on only one thing - - succeeding in Java at the job fair . She ate five and she said , `` Papa , let 's go to spleep . I am accostomed to work . This word is very familier to me . `` I supporse . `` Okan , I 'm hugry ! ( < - - - This word really looks childish ; ; ) `` I am larghing now that I have remembered these scine . . . : - ) I am altogather like their moms ! Anyway , I am really worried about the people who suffered from the earthquake and the Tunami in the Tohoku area . I am very embarrassed by my weak avility . He added that he would just sit back and drink beer on a smoll island , sometimes catch fish on the beautiful crystal - clear ocean . And I love cold wheather ! And then , I found a small advertisment in the newspaper . I have had experience only in desk work and as a clark of a pet shop . Today is me with my two cute collegue 's dating , It gives bery good income . But I have had no responce yet . Lying sleeplessly on my bed , I thought that we should n't just say yes to everthing we encounter . Her Hoiku - en ( nursely school ? ) class is helding a field trip today . It 's just an attemptation to determine whether I can finish a website made in Flash . acturally , things have been OK . Well , it 's such a simple website that you can not even contack me here . I wanna recommend the American drama ' Glee ' . Please corect my writing . . . It 's healthly . basicly I do not have much time to do things totally unrelated to my english test such as dancing , but I just love it so much . In the begainning I studied dancing just for lose losing weight . If I go to the gym , there are not much choicese for me - running , yoga or some muscle fitness enquipment . my body is more powerfull and flexible now , but it is not good enough . My mother language is Korean ; which the order is totally upside down , copared with English . My refrigerator still works , but I bought new one because the electric bill is too expensibe . Even though the wheather was n't good , it was rainy , I would love someone to correct my writting . Of course I can heplp you with Japanese if you want . Feel free to cantact me if you are interested in me and want to have fun . So you absolutly ca n't go to an internet ber and get on the internet . Do n't worry , you will be able to at a hotle or your friend 's home , Do some foreign people think that invting a girl to a boy 's home in the early period of their relationship is normal for understanding each other deeply ? On the contrary , in my opinion , Japanese tend to view it as an official date for introducing familly members or a greeting in anticipation of marriage . Two men were clibming the winter moutain . English performance test . ( My First Impression of Anyang gials ' High School . ) While I distributed the fliers , one of the people that I handed a flier to read it and said `` I am going to get a mussage , do you want to go with me ? `` So , many teenagers , including me , were very sad and some of them followed him and committed suicided . Since Lang - 8 uses the HTTP user - agent of each device to choose the appropreate page template , mobile devices that are not on our `` white list `` will show Lang - 8 for PC . We have an alternative option for thoes Cookie - disabled mobiles to use Lang - 8 without Cookie - based sessions . My favorites are professional worker 's strories , mysteries , fairy tales , science fiction , historical fictions and so on . Thank you so much for ur patience to read it until the end . After May 3rd , we usually retvert the prince and princess dolls like the picture above . I make it a rule to read Enlish books at Starbucks near my condo every Saturday morning . Recently , when I try writing this , I allways get sleepy . But I have not received the item yet due to lack of stockout . Last night , I walkde to the park near my company with my partner after dinner . There were many people in the park , such as young boys , young girls , old wumen , old men and many lovely children . Some young boys were playing barsketball , some young girls were listening morden songs and many of the old women were dancing . Becouse I could n't go to work . This poster was announced for Gunma prefectere . When I whatched the poster , my neevoue went away . I aways get up at 8 o ' clock , and leave home at half past eight . It is much better than Japanese one , because every cage is much bigger than the Japanese one so that every animal looks good , and we can see their natural movings a lot . When I think about relationships , I am relly awkword at this age . We went to a public photo garally . My son also enjoied himself . but , as time waits for no one , then could you wait for me in the futher ? youbube seems to be forbidden again in China it seems that a lot of people have the same problem , and not because it is a network problem , it is poltical problem . The Exhausted travelar . One night , two travelar were walking down the road . Today I went to a English club becouse I want to learn english . My youngest daugther has had a practical period in Spain . For exemple , beach volleyball , arobic in the swimming pool , dancing with the childeren and so much more . These coments hit my heart deaply . They do not value thi time . We can learn what we love and learn about morden society . Don ` t be on a omputer all the time . I have a train passport case which have used since I was a junir high - school student . Acording to what the man at the used furniture store said , there was nothing worth buying among my belongings . Many people buy and sell `` douzinshi `` ( = fan books ) about Japanese `` anime `` , `` manga `` and other characters . In this summer , the best selling `` douzinshi `` genre was `` Madoka - Magica : the magic girls `` , I think . Twitter , Facebook , Lang - 8 . . . I 'm happy to meen a lot of nice and kind people . ^ _ ^ Because I dont n't understand how to use vocaburary and grammer . For exsample , allow and permit have the same meaning in Japanese . I do n't know how to use allow and permit in a stiation . I like to dirink red wine and beer , and so do my friends . But still I like to go out with my collegues or my friend to a bar . I really want to know how other peple get along with their lovers who have differnt who has habits or thoughts . I 'm gratuating from college teacher theachre teacher : D speaking cass I could n't complete everthing , because I did n't have enoufh time Today it was a natonal holiday in Japan . I am carzy about DIY these days . It 's my first dialy on the Lang - 8 ! Still I do n't know what will happen after updating dialy . But I 'm excited to connect with someone and support each others improvement in not only language butin cultural deffrencese Today , I watched two animes . I watched A wisper of the Heart and A Mononoke Princess by Hayao Miyazaki all day at home for the first time in a long time . I especially like wisper of The Heart , out of the many movies that he created . but usualy we ca n't see their shows very often in Japan . ( My teacher told me to read a script , this is a sence in the play ) I live in Japnan . The summer seminor at my juku school starts today . Two main popular acters spoken English never sounded fast . My grandpa was a windower since he was young . I am sure I want to learn . I borrow a course book from the library but I easly get discouraged as t learning foriegn languages is a hard and tough challenge . I always want to achieve the expexted result , and I try to do it . I do n't kown when he will see my request . If you can see this diary please help me find some gammar errors or other mistakes . I am learing English and like Japanese , if you are Japanese I am also very gald to be friends with you . One day my doughter said to me . In Yesterdat 's class , I learned the word , `` guinea pig . `` I could n't understand what se said . Unfortunately I 'm not in charge of the assignment , so I did n't know what was going on between my boss and the cliant . The autor believes that . . . . In the above passage , the author believes that eating fast food causes chidren to become overweight . I 'm sorry to say this , but the weather forcast says that the next day is going to be rainy , too . It 's aleady the 5th ! Todday , I held a takoyaki party at my house . Traval to Mexico I reserved a hotel room and booked air tickets on the interent . I want to enjoy snorkelling in the Carribian Sea . A Diddicult Sentence Look at photo 1 , the handbags were mading by hand . The TV said , the chance of rainny is 20 % . The native speakes are talking very quickly so I have to listen 5 or 6 times to understand what they are talking about but it is interesting . Do you have any recomendations ? I talked with 2 naitives speakers in English at the camp last weekend . She is a friend of the English Speaking Society membar . Recentry I have been very busy . . There were a lot of peple who came from abroad there . I haveto make an effort to study Englisha more ! One day , one of my friedns said , `` Actually , I do n't understand what other Japanese students say in English , but your English is really good . `` The meeting was suposed to be held yesterdar afternoon hi , everybady thanks for eveyone who revisoed my compositions . . . My homegrown vegies . Well , this is not my first attempt at growing homegrown organic vegies . I grew some good homegrown organic vegies . Now I know that it 's really difficult to make homegrown organic vegies . A - bobm Memorial Dome is near the Peace Memorial Park . I would appriciate it if you gorrected it . I ca n't express my thoughts clearly , but I trust that I will speak fruently in the near future . Actually , all of the classes were in English , because the teacher was a foriegner . I did n't have much mony but I wanted to buy new furniture . I am not good at speaking , writting , or lithening to English . I 'm developping new materials for energy devices such as batteies and capacitors . According to the news , recently , there have been situations where separatists uesd sharp objects to attack residents in Xinjiang , China . In summer I usualy go for a walk with my friends , read books , many practise music and travel all over Moscow . It ` s a very beatiful manor which is erected by Bajenov and Kazakov in honor of Ekaterina the II ! So recently I 've started faining weight . I decided to eat to helthy food , to eat less and to exercise . I 'm boared to death ! ! I dowloaded of theses from authoritative periodical databases . `` You will pass through a dark tunnel ; meawhile , you feel helpless , scared , distressed , and feeling negative . Then they become two best frinds again . Taday is It has been getting cold recentry . First , the financial section is essencial for running a company It was greate . The Lion Dance is a very popular dance during New Year 's celebration in Chaina . Anyway , she follwed me today . Japanse and logic the first , I had extended my visa for August , but I hav n't got it untill now . . . . How do you thik ? Unfortunately American Football is not popular in Japan partly bacause the rules are too compicated for people . Mainly , bacause the players are not very famous in Japan . As everyone knows the popular sports have many funs , especially children . Basketball is also not a pupular sport . I heard that flag football would be treaded ( ? ) as a culiculam at the elementary school . but the forecast is sait that the rainy weather will continue for several days . . . Rakugo is traditional comic strorytelling . Tiger and Drago was made by Kudo Kankuro . They were over my sholder in height . However , the tempeture of water was cold . Now , I have an aversion to writing correct grammer , but I can read and write in English a little . It 's difficult but I like to exchange letters and convers in English ! By the way , is it possible to send an email containing pictgrams to a foreign country ? Our electricity will be powered dowm at 11 . I did not know what was happning . We have had dogs , cats , ducks , parrots , hens and chickens , hamsters , fish , an iguane , a turtle and a couple of rabbits ( who had like 10 rabbits ) . Comic caffe I 'm in a comic caffe right now . But , when I think about people who now spend thier life staying in this place , I wonder wtether they 're able to get relxed everyday . It seems to be a controversial issue during a prolonged economic slump even though Japan is considerd to be affluent . I enjoy writting in a journal . Yesterday and this morning , I took the achivement test . : ( You 'll never know wheather I eat something or not . I have to say goodbye to my stomach . ( I 'm not cofident about this expression . ) Secound lesson at Gaba Today , I went to the Gaba Englsh language school . That 's because I am in Thiland now ! ! ! When I have reached home and settele down , I will write about my trip and put up pictures ! ! ! ! ! ! ! I know taht . Yestrday , I had my wisdom teeth pulled out . But I belive that it is what I am meant to do . . I have visited south asia areas , middle eastern areas , India and Europe . . Hanami means looking at trees of cherry blossom in Japanease . Now I severly want to speak out what I think and feel . Today is April 26th , which leads to me being more attentive , because the `` Interpreting Oral Test `` is aroud the corner and I 'm serious about it . If we want to achieve something , there is no doubt that we shoud grasp every possibility to be completely prepared . I have to interpret plenty of materials on the book by myself first , and then I need to corret my interpretation with the help of references for the sake of making more progress . My freind is very beautiful and owns lots of admirers , the same with her boyfreind . But us girls are always more loyal than guys ( ! ) , so she always worries that her boyfriend will fall in love with oher girls . The popping rhythems . . Here is my favorate line from a song called `` Thriller `` by Fall Out Boy : A few days ago , Someone asked me my favorit book . The person asking was a foreigner so I told him my favorit book in English was Catcher in the Rye . Listening to me , he laughted and said ' that is the worst book I have ever read . ' Unfortunately , the people around me did n't really like the book either , but I still think it is really well written . The main character is a boy who makes sarcestic and cynical remarks about almost every person he sees . He points out hypocristy of the people as soon as he catches wind of it . Soon , I 'll go trevel to the east coast of Australia with my two friends . There are some vegitarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabeties . I was told by those peoplpe who have food restrictions that they will chose to eat what they will eat , so any special concideration was not necessary . I am going to prepare some appropriate Japanese cuisine such as vegetarian rolls ( sushi ) , or fride Tofu in the soup . I heard that the Japanese goverment uses the money for the pavements in order to cordinate the money left at the end of the year . And that gives a chance for construction workers to garner exstra work to do . Furthermore , one of the problems with curse words is that these are famous amoung non - native speakes . Nagoya does n't have art , culture , or fasion . I wanna work for an internationary company . . I 'm looking for devices that first of all will be for people with dementia ( big button , simple , long lasting baterry ) . Best regads . . . Tommorow I ( will ) have to wake up about 4 hours earlier than today . Im a univeercity student . I love lerning foreign languages ! and I also studing Korean ^ ^ However , this time I am sattisfied whith the shiny beige I imagined . This is another reasson why I connect `` green `` with `` fresh `` . Do you know why green means `` jelous `` ? If there are some words I do n't know yet , I write those words in my notebook and serch for them in the dictionary after I return home . It does n't matter whether he ( she ) is a foregner or not . Anyway , it is hard for me and I am worred whethr or not it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone whom I can practce a elderly conversation with . I think I am wearing nomal but a little bit flashier clothes that I already have to the party . We have been trying to use English in our seminar recentry . Today , one of them told me that he wanted to plactice more , and I recommended that he use this site . I like gyoza ( a kind of dumpling stuffed with minced pork and vegitables ) . To add on , I had not shured any news about my life for more than ten days . Society is currently imformation - oriented . In an imformation - oriented society , cell - phones are very important things . what shold I say to her ? I heard from someone that Spring can bring faterful encounters . That is that he does n't help me on housewaork . . We often have a quarrel abou it . Alhtough I 'm nearly 20 years old , I need 10 minutes for writing these three sentences . He is my wonderful friend from Canada from Lang - 8 . It 's the frist time In Thailand at the moment , the amount of peple who have H1N1 flu seems to be growing . I hope the goverment can manage it soon . In fact I 'm going to Rimini for a holyday with some other friends in two days ! I like to compose my oun music . Today I bought ice creem . It was introduced to me by my brother in Guangzhou provice , China . I called him this morning to get the infomation about how he studies English and Janpese , and how his job - hunting was going . I thought I was lucky to have a job in northeastern China in internaitonla business , but I need to work more at sudy harder and improving my English so that I can catch up with other competitors . wellcome to my Diary corner . I 'd like it if some native speaker could give me a hand and improve my words and scentences . Barcelona vs Atletico Madrid , an accidennt happened , something that I was afraid of . Scholl start in April in Japan . `` Eat green , red , yellow , purpul vegetables everyday , and drink more than 2 liters of water everyday `` when I have free time , I always goole some words . We went shopping , karaoke , played badminton , walkeked in a nice park , etc . Intoduce myself I 'm a navite speaker of Japanese . It is the DVD of `` Dreams come turu `` a famaous Japanese musician . It was very dificulte I was not planning on going to the party , but I ended up going there becuase my friend kept telling me I should go . I found Lang - 8 , while reading a book when I comute today . Periodically , I saw her in our shop at home , where she sold cosmetics from the stand and suggested to ladies who passed by that they familiarize themselves with an assortiment of cosmetics . Now in the mornings and evenings I try with the speed of light to enter the appartment or an elevator so as to not collide with the neighbor . First of all we got on the bus at our hotel guided by staff who were dressed in costumes like flight attendants with tickets like boading passes . At the entrance some performers welcomed us and there were stalls that served delicious Latin cusines and a stage where Salsa dancing and music were being performed . Especialy in the western and southern regions of Japan , they were not affected by the earthquake as I am sure you know . I should n't have seen that progrem . . Yesterday , Malik plaied a music box by himself for the first time . I went to the tower to see te witch getting burned today . Although it depends on the country , as far as Japan goes , there are some reaasons why we attend college . Space between commas ! My parents took time off and were hanging out at home , and now they have gone to visit my father 's eldder uncle . Il n ' a pas lu cette livre . And recently , I started sutdy Chinese . For example , pandas are viwed as the most valuable animal in China , and there are less than a few hundred of them that are still alive around the world , due to illegal poaching , and man 's ongoing expansion into what were once their habitats . In conclusion , zoos could be phased out one day when humanbeing beings no longer interfere with the balance of the ecosystem . But for now , zoos are still needed in terms of raising public awareness of the significance of preserving animals and lifting the population of endangered animals . One major advanatage of flying by plane is that they are faster than any other means of transport . What is more , it is not recommended to peaople who are afraid of heights or flying . The movie Solt I have the lateset I Pod iPod nano ( 16G ) . It is my favorite because it is very samll and has a good design . The reason I wrote such animpolite thing is because I really wann go to Singapore as soon as possible . I 've only sudied in Sydney , but my real intension is togo to a beautiflu beach or something . I can probablyenjoy Australia ifI can affrod to see everything . Just do it ! The sence there was all smilling . I go to the zym for workout everyday . Spinning bikes are similar to nomal bikes but they are different because you can control the the resistance to make pedalling as easy or difficult as you choose . The reasons that I like this type of exercise is , firtst , that you do n't need much training or practice . Then , I prictised my Listenning English skills by listenning to the New Horizon3 at double pace . Although her luggage was overweighed by 9 . 5KGs , the officer still let us go freely . therefore , I participate in this programn so as to enhance my English . ^ ^ I also hope that I can use my ability to help those netizens who are I still ca n't belive what happen even now . so , we need to cooperate with each togather in order to save some energy . Tomorrow morning , I should go to the police station becouse I ask the police station offcialy about a investigation of the traffic accident . Maybe there is little chance to solv , but I want find out for myself . I 'm a univercity school student now , but I wanna be around foreigners , and travel abroad . Most young people there do n't have any insterests in politics . Generaelly speaking , they do n't even go to poll stations to vote . So stupid Japanese politicians can do what they want to do greedly . Even if they do something wrong , they can win the next election , because mojorities do n't vote at all . Singapreans should leave everything to them . . . . . The company that owns my flat has a presence nationwide , so anyone in Japan except those enjoying contry life can easily find its characteristic striped buildings . All of the rooms they provide are furnished , this type of flat is rare in Japan although I know they are rathar common in some other countries . It is my favorit food from my childhood . So it has become my favorit food since I was a boy . Of cource , you can enjoy eating it without liquor . He said , at his work ( Japanese company ) , he is aften told that he is too self - assertive . I have n't become a menber of that group . I will become a menber . We made a whiche 's hat by using newspaper . I 'm still not a qualified voter , so I coulud n't go today . Sport is not only physically chalenging , but it can also be mentally challenging , criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Have you ever thought about your lifetime ? What you want to be ? I think people have their dreams when they are kids , but how many of their dreams come true ? If you were one of those people who was very successful in their life and your dream came true , it would be great , but if you were n't one of those people , have you been trying to chang it or give up ? Especially after you married and had a family . I am looking for companies who love to study English and teach me commercial English , industiral English , medical English and so on . Of cource , I like to learn German now . Aleady 180 days have passed since my son was born . Sometimes we used to fight because of differnt opinions about taking care of baby . Sometiems we laugh at something diffrent and enjoy that . I watched the movi `` Sex And The City 1 `` last Saturday . It was very fassionable and goreous ! ! I will use a lot of mony . I long for thire life . I want to be a millionair ! ! I played sand voeyball today . It 's been a long time since I 've played sand voeyball . Sand voeyball is very difficut . But it 's a merit of sand voeyball , I think . I played sand voeyball for 2 hours . But it felt shoter . I have recived your letter and know that you failed the last English test . Yesterday , I could n't say `` Happy New Yeat `` to my friend . The octpus was the main dish and I wanted to have it , but I did n't want to have side dishes because it seemed to me taht they were not appetizing . I 'd like to be an international hotel concirge in the future . People attend college or university for many different reasons ( for example , new experiences , career perparation , increased knowledge ) . Why do you think people attend college or university ? Try to answer consciously , I think for allmost students the primary resaon is for their future career . Today is a horiday , but I 'm at the moment working in my company . He surpervised subcontracted work . It takes a long time to soluve the model of simulate models . I have to soluve the model before the deadline . I feld afraid . Sushi is a very populer food in Japan . I 'll use it and make a sentense including the words . Japanese goverment have to assess somewhere to be able to build a building . A pawnshop assesses bags , watches and accecceries which are brought by someone to lend money . When this meeting is held , almost every participants gathere before the meeting and eats a special curry . According to the above , we can agree to the follow reasonings : Of course , I retuened it in the same state . When I speake to a native speaker , I make them feel unpleasant . If people of the future are seeing the current world , they wouldl not be approve of it . I eat so much food that I think that . I waight gain weight . I worry that my stomack will become large . I guess we burn colories inside only by talking while sitting down . Today 's lesson was about solving the problembs . After that , Enrike and I ate lunch together . Today 's lunch was spagety with meat sause . I am also learning spainish because I like the languages and I like Spain and its culture . Now I am having summer holydays so I 'm learning it on internet , but I will take courses in Spanish later this autumn . Staff : Why did you come to Singapore and why did you choose Singapoer to live ? Generally we mix intelligence and knowlegde . But it is someone that is wise and uses his or her wisedom in her or his life in order to live a stable and well balanced life . We always see our chilren play and determine which will be the bright one . Although I could n't understand what they said I enjoyed it visualy . They had mic perfomance , tap - dancing , singing and instruments . I 've chosen to study Japaniese because I 'm fascinated by this country , its culture and its history . I have plans to go to Japan next year so I want to learn Japaniese to be able to comunicate with people . but as you know , most children do homework such as learning english , writing korea and so on everyday . and then explain this situlation to him . I want to lern English , please help me to correct my errors . A mathmatic , sports and music lover and struggling badminton learner . My first daiary on this site By the way , could you tell me wheter or not it is difficult for native English speakers to distingish `` want `` with `` wo n't `` in conversations . I guess many would judge from context as I do with confussing words of Japanese though . I belong to the Sales & Marketing Division , which is especially for distributers and large companies . After this happend , I began to think that perhaps there was something wrong with my social skills I will try to talk and become friends with her , then she might she that I am a firendly person . I went to the gym near my appartment in the morning . After the lesson , I went back to my appartment and had lunch . I had lernt English for about six years until I left school two years ago . Now I am studing at a univeristy , but I chose Russian as my language to learn . I will say , `` Pak , tolong tandatangani kertasnya sekarang , karena saya harus segera dikirimkan ke klien `` . I like this idea so I will continue working there untill I will go to the U . Someday , I want to see the most beautifl sunset in the world . His hause is very big . I climed onto his house 's roof . those are all diffuclt because they are totally different from Mandrin It is probably very difficult for you to move to highr classes , which ever classes you are in now , you most likely want to move to a higher class than others . When I arrived , I forgot to bring my books so I was given dentention by my teacher . Some peach blossoms , rice cakes , and sweeets are put around the tiers with the dolls . Parents wished for thier daughters ' happiness , growth and health . I am going to participate in a tea party celebrating a Girls ' festival tommorrow afternoon with all of my middle - aged lady friends . Englihs is a very hard language . . . Englihs needs more efforts than other languages . . . I bought a magazine , `` Business English , `` a week ago and just starded learning with it . So you should try to reject thier demands . And give your children the chaces to earn money themselves . While I used the computer my sister wach her dress downstairs . When I got home from work this morning , I found a lot of ants marching alont the edge of the floor ! ! ! ! This is the first time I 've visited this site . I am suprise . I surprised that it 's offertory box was so fuge ! It was not like a box but like a garden ! ! second : The reason he is so succesessful is that he works extremely hard . welcome to langu - 8 This is my first time at langu - 8 . I want to improve my English level . I want to make friends from other countries Looking forword to receiving your message . Here is a photo of this anual youth activity in Vietnam . I was changing it because it depended on different causies . But I tryid not to change it too much . Anyway , I think that learning new knowledgies is both very interesting , and helpful for me . I think that the main causies of my lack of success are - laziness , my misallocation of time and tasks , and again laziness . I was at Lotte World which is similer to Disneylandfor work today . When I was walking around Manhattan with my friend , he found a stone - made building like the Pantheon in acient Rome standing between office buildings . A standing board in front of the building indicated that it was a luxury retal building . It had two bedrooms and one guest room and was equipped with excellent furniture , household goods and electeical appliamces . So I feel reflesh ! I studied the contents in detail and looked up all the vocaburies that I have known . . Oh , if you saw the movie , The Fourth kind , you perhaps know this linee from the movie , `` I see an owl staring at me `` IDIONS and WORDS Please teache me . Anyhow , Singapore has been having a serious water problem since ancient times , because this country is a small country , so they ca n't bulid dams . During WW2 , many English soldiers were holded up in Singapore . But I think the Singaporean government wo n't be able to settle this problem unless humanbeings beings develop a technology which can change sea water to clean water . A party is held for a boy by his parents , grandparents , and other family members in hopes of him growing up healthly and strong . We talked a lot on via skype about language , culture , costom , cities and even politics . I wrote a dialy in English for the first time . I have a pain in my sholder . I live in an apartment , but I own a field for vegitables and herbs . I often go to the libraly and borrow books . I think I would hold a party for the whole house , if I were a member of thier family . By the fourth time he is not warned and is shot in the headshot . Thank you for reading my writting , Langages easily become rusty if you do n't use them often . Do you know the Franch sports brand , Decathlon ? I want to go there to buy a pair of climbing pants tommorow . I leve in Tokyo in Japan . Well , that 's life , because we have grown up . We ca n't always live off our partents . We should work hard to make our own and our parents ' lives better , and that is every child 's duty . Beacuse I was scared when I was with the barber . I 'm looking forward to watching the movei . Unfortunately , in japanese this was n't announced by mass media largely because one person who was in an important position did a speech while drunk . The most famouse goya menu is `` Goya Chample `` . The politicians move to their pubilic speaking places by using them . wohooo ! Iraqis shoud revive the country by themselves . Are you planning to go to an amusement park in Koera ? In fact , there is no big difference between these two places . However , if considering trasportation , I would recommend ' Lotte Wolrd ' because it 's very easy to find . You would definitly have no problem finding it . When I ca n't sleep at night , I usually lisen to saxophone music . It was just like the middle of the autunm in my country . Therfore when most Australians thought it was quite cold , at least I didn ' t Morning temperature is totally differnt Nedless to say , I do n't watch the weather forecasting . The class is open every Thrsday evening from 7 : 15 to 8 : 45 and held three stops away from the station near my office . ( but one person seemed to be in cahrge of instraction like a leader ) . we usually have free conversation and group excersise for one and a half hours . Each group is divided by the level of English the people know . The con is that there is very little colletion or feedback of the mistakes we make . We are currently using a customazed program which we made ourselves . However it would be forgetten slowly in my mind as time passes if I do n't use it in my field . The most concerned thing is that a new member , a SAP progamming expert , would be joining us for the new project . You can see mang strange things , like people and buildings that you have never seen . I 'm already 21 years old , but I look yong . . . Unfortunarelly , it is not habitual in my country . They say it 's our menthality . But until it is accepted we can affect change amongst ourselves . He looks so pained with sfuffy noses and sneezing and itchy eyes every day . So I bought groceries that are discribed as effective for pllenosis , `` yogurt `` , `` tea of lemon balm `` , and `` nose cleaning liquid `` . I was unusually very busy last night because there were many studens complaints I need to make a softer exprresion . I would like to prepare for the ' First Certificate in English Examination ' but my writting is not correct , so I must practise and write as much as possible . I am also very happy that I have the opportunity for native speakers to correct my sentences . Thanks for your corrections , they are very useful hhaha ! On this websit , you can meet different people . I think she likes the man , her boyfriend is usually differnt . I saw the awesome nacked bodies clearly and I realized that was a dream . I jumped about 3 metres high but he was faster than my reaktion and he attacked me . I feel a little bit wierd writing this and I could n't come up with a title . By the way , the weather was strange today , because it suddenly began rainig harshly . Actually , it is notthat serious a situasion . Do you belive that sea air is good for health ? Carbon redution make the air on earth be better than before . My dictionary says interrogatin means investigation . I did n't study at all when I was in jounir high school . By the way , most Japanese geeks are very ugly , I guess that most of them have never had a girl friend in thier entier lives . Enjoying nuture Some people put forward an idea that education is betther than punishment , as it can teach people the knowledfe that committing a crime is not a good thing . On the contrary , the people who stand on entirely different grounds think that punishment is a deferrent . Considering both sides of agrum above , I am inclined toward the opinion that education is more effective than punishment . However , he sees an advertisement that a person committed a crime and was taken to prison on telvision . I realy love my grandfather . Last night my boyfriend told me somthing that offended me in the middle of our telephone conversation . It was so nice and I was inpressed with the beautiful traditional culture . The wall was made of brown wood ; it was so nice and homy . I am not famillre with Maiko san , Umfortunatelly , I probably ca n't become a Maiko san because My lengh is 168cm , and I have a tan just like a sufer , haha Kyoto became one of my faborite cities . Foy this , I will study hard to pass the graduate Uni . . . ! This is my favorite mini - photo book . `` Can you play teniss ? `` and `` Do you play teniss ? `` Now I have just finished reading your corrections and comment 5 times , and I can get an enormous impression after konwing evil 's tatics . There was a car on the right , so I steered to the lefe . Why should I go to a defferent prefucture for my class ? No one can give us a clear answer about the effect of long - term low level of radioactive explosure especially for children . Last Saturday my doughter went to the kindergarten entrance ceremony with my wife and me . But my doughter seemed happy . Today she went to kingergarten too . The most importernt was making a special point of ensuring their safety . Afer they took pictures , the teachers allowed them to play in the playground . I slept on my boyfriend 's shoulder and he memolized some Japanese words using my iPhone . I usually eat cheap frozon gyoza and they tasteway different from the restaurant 's . musclar pain I always end up having musclar pain in my legs on Wedensday night . We often say that elder people will get musclar pain after a few days when they use their muscles . Thanks for reading my first daiary ! In school my freinds and I were watching its launch . I really hane these boring days . After I get home , I usually eat dinner and skip taking a shouwer . So , I will go with my family according to the sceduled . We called tuter to reserve the schedule for the experiments . Today I went to a party with my friednd in Shibuya , About forty pepple were there . ( We did n't talk to each other a lot during the party , but I strongly remember what we talked about because I was astonished by her enagy ! ) He is kind of arragant and straightforward in the beginning . His medal was bronze indeed , but I thought that he deserved a golden medal because he must have made a lot of Japanese impressed and encouraged in his comingback . He always cracks some excessive joks that make me sad and uncomfultable . My boyfriend got a good tan , he 's okey but he looks like a person who is from another country . This system is very godd . Youkan is a reward for my laber this week ! Youkan made with adzuki beans , suger and agar . I 'll be glad to help you with your russion or to communicate with you . I love listening to musik , drawing and dancing . I was shoked to hear that . It was only a glance , but it felt like it lasted sooooo long . Maybe the professor spoke so fastly that I could n't catch up and understand in time . The food in the canteen is very cheap , much cheaper than the restuarants outside . I remember that I was nerbous when I moved to this school . Sio I had to say goodbye to some of them every year ( Even though ) I do n't like to say goodbye , I can lear something from the encounters and farewells with my friends . At that time , I thought it was right and in every test and exam I paid much effort in stuying them . I thougth that the right sentence was `` I got a ticket to the auto show . My brother suddnely called me today . I had nothing to do tonigh , so we went to a sushi bar in the Tokyo station . The owner of the bicycle was a boy , and he was watching the hands of the mechanic very eagarly . And I decided to interprete their choice in a positive way , as proof of my popularity or something . I bielive in materialism . . My ex - cowoker is moving to another prefecture because of her marriage . It was a very preasant party . It occured to me that I had been gaven many precious treasures like memories , a familial environment and much more . Her mother is Rossian : ) I could see Tony Kanaan 's onbord camera . I went to a Yakitori restaurant last Suturday with my friend . Yakitori is very popler . Yakitori is fried chikins . Revolving Sushi Reastaurant Do you go to a foriegn language institute ? Of cource , I could n't make a wish . On the other hand , they lied , doubted , killed , destoried , and set off the nuclear bomb . So I will retake my examination and now I 'm waithing for 2010 when sudent can aply to the Japonology department again . Not a day goes by without me lerning more Japanese or We shoud show off our country 's originality and give Japan 's luxuriant culture due esteem . We can prepare a national Russian evening where we could sing our native songs , make zeppelins , translate some ines of our litherature and have a traditional lingual performance . In order to make students know more about it , our school descide to hold this activity . I did n't have any headache medcine . I received some from a fellow woker . I must control myself physically and mentally in order to conplete The Tokyo marathon . Maybe its because I 've been solo for a long time and I 'm lonly . So plese correct my diary . As soon as I went to buy ackechbook and pencil . becouse they [ we ? ] have a costom to send a letter on January 1st . We generally write `` Happy New Year `` and a picture of the twelve signs of the chinesed zodiac in letters . I have thought about drawing Peter rabit for a long time , so this time I was pleased to draw it . I 'm sorry I 'm not able to put pictures on this dialy . On the other acount , I study Korean . So would you please approve this requrest , too ? There 's almost no problem in your japanes sentenses . But it also has some problems such as air pullation and traffic jams everywhere . Hello everubody ! I 'm a Japanese grad student ! The joints arround my waist have started to ache ! I debated for a monent whether it was a good idea or not . I went to the Bon Dance Festival at the Tsukiji Hongan - ji , the buddhism temple in Tokyo , with my friend . englsih 2 . How can I improve my speaking and wrting skills ? I conplaind about my looks to my mother . What is the difference between `` everydat clothes `` and `` casual clothes `` ? What do you feel when you hear `` everydat clothes `` and `` casual clothes `` ? This phrase is very interesting because it envolves many things , I think . Many Secretarys of a politisian can become a politician . Today , I went to an ophthalomology . In particular `` Sendai `` which was ocate near the hypocenter was the most seriously damaged by the `` Earthquake `` and `` Tsunami `` . You can feel yourself getting a srill , when you play it very well . They are helpful for listeners to know the concrete statistics and to understand the contens easily . I am looking foward to staying there . It is cloudy today , but it will be getting warmmer later this week . I ca n't waite for spring to come ! I have to write a buisiness document in English . When I was a child , I seldom had time to play games with my peers , because my parents always aske me to study . We evern quarreled , just like a real family Thinking about my childhood always give me a feeling of nestalgia . What abou your childhood ? Do you have any interesting experiences to share ? this is very incovenient . Finally , I have no idea how to learnig to comprehend . How to releace stress So a little while ago , I went to a convinience store and bought alcohol , sweets , and some snacks . I think drinking and eating is best way to releace stress . And we ca n't seem to recognize that untill a certain period of time has pased . We enjoed the lunch and I had a lot of questions about English to ask her . She tought me really well . Then she asked me to go to the chismust party this week on Saturday at her house , and then I went to study Chinese near where I met Chayway and Wunlay . Composition 0628 , please help me corret it or provide some ideas , thanks ! ! Today , I woke up at 6 : 45 , cooked breakfast and my hasband 's lunch . I was interested in American education coupled Japanese edication . Lask week , my roommate tried to set a WIFI in the home , but he is just like Edison who never gave up , so I just can encourage him and I cant use internet many times , but now he success to set a WIFI in the home , so now I can carry on writing in lang - 8 every day ~ Sometimes I wave my boday if I hear some hign tempo music at home , but I never do that when someone else is around . wtat was the last concert you went to ? I webt to Arashi 's concert 2years ago with a friend . It was held at Tokyo , Kyoto and oter places . I will go to Tront , Canada for 5 weeks in Febluary . For example , our State Univercity was only founded in 1959 and its building is n't beautifull , but rather very simple . Of course this is not important . The knowleges given there is more important and what about it this is strong there ( ? ) . However Tomsk State Univercity 's building is very beautifull . It was founded in the XIX centure . But I prefer to study in our State Univercity ( only I did n't enter there on Oriental department = = = > - _ _ - ) I bought some matirial there for this . Besides that there were more foreigners and I spoke a bit in English while translating what a seller said to women from Germany , but I think my English was afwul : D I majored in tourism mamagent . home , particularly in the country , pepole view that boys always have more I am starting to write a dialy today . I 'm staying hotl with a hot springs ; so , I want you to be refreshed too . Living alone is a good experience to teach you independant . However , when we live alone , we do those things ourselves , which makes us more independant . My vest favorite musician is Nightmare and Shena ringo . Althoug I still make some mistakes , His life is in me . It is like a plant which grows little by little everday . Now , more and more forign have begun to study Chinese . Culture is an portant element of competition in overall national strength . That 's Becase I do a part time job at Pastel . I will go to her concert in February wiht my friend . It was heavy and deep and the acotr was very good . Here are some ideasof on how to develop your social skills . My professor open a forum so we can dicuss the differences of culture between Taiwan and France . The air , the smell , the sscenery , the sound . . . just everything . He taiked a lot , but I only spoke a little Korean peopel live on rice . But , I am on a diat . many many times , my heart gets hurted by those results , but at first , I still keep my dreams in my heart , I protect it , I wont let anyone take it or kill it but its ok , I said before , I will profect my dreams , no one can take it from my hands , today I am stupid , but how about tomorrow ? I will profect my dreams . COME ON ! ! ! I tyied it again and adain , but I could n't get it to work . ( needs a subject ) By the way , resentry I became busy . Tomorrow is Tomb - sweeping Day , so you kown what will I do tomorrow . Dood night . On top of that , I do n't like taking any kind of medicine that has to do with antidiotics . But I want to eant genuine ones . What deferense is ' diligence ' and ' industrious . It 's very good cost and high quariity . It 's very good for Londener 's , every year they have the chance to watch high quarity shows . She said to me ' ' I do n't think about it much . It is just like riding a bycycle . ' ' I had headochu today . Judging from these experiences , I came to the conclusion that the experience to learn foreing languages involves the reorganization of a learner 's personality to some extent . I am looking foward to this new situation My hair is now in good lenght . I wnat to be a lucky guy ! I wnat to win something from the event ! Furthmore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . It was about how to become a stronge woman and pursue your dreams . The doctor said `` It will take 4 ~ 5 months to get haelthy . `` In the conference room , there were much more Japanese students than foreign sudents . After the eazy explanation , the participants had divided into groups . Tere were many kinds of onions that I 've never seen . But around 4 PM , there were storms and thunder and we had a blackout caused by a thunderbult . But the telephone line and the internet connection were not restored untill 9 PM . Because there are many imformations in it and it is very helpful , useful and instructive for us . - Why instructive ? My hobby is watching American doramas like SATC , the OC , CSI , and BONES . `` dramas `` : ) In the bigginig of the year , I went there with my friends . tavel , cva ( conversation volunteer australia ) , wwoof , work . . . I want to make many friends whoes native language is English . One more question , I want to know how the person whoes mother language is English remember new words , on the other hand , how do I improve vocabulary ? What I did in the job was to visit people ` s house and ask them what they think about prime minister Aso , the jury system starting next May in Japan , impression about crimes , and so on . Some people were cooperative with me but others were reluctant to anser my questions . Mothers who live in Kanto aera are not sure if the foods are completely safe for their children . When reading it , I have to focus on the text as twice as much as I normally would , I comprehend , and spot a great amount of details in comparishion with the first time I read this in my mother language . `` If you do n't like it I will help you burn this damn book presonally , but give it a shot `` and that inclined me to try . It was hard at first but I relised that full comprehension of the text ( every single word ) gives you pleasure for reading . It stimulates your imagination to picture wverything in your head and it definitely ( if the book is good ) enchants the reader . I saw people flying a kiteflying in the park here in England . My college is going to start this saterday . and put mp3 oudios in my phone to listen . ( music ) I abologize all my friends here that used to see me comment on LJ pages because I dont have lots of time to browes their updates and see what 's new . . I like to be in touch with my frieds . Have you ever considered that your family is upset when you are absorbed in your own career ? Have you ever noticed that your friends are sorrowful when you only pay close attention to your own affairs ? & nbsp ; Have you ever remerbered that your wife or husband is waiting for dinner , while you just konw handle your power , and forget her or him ? Consequencely , hapiness need n't you decorate , or do anything . Now , after 2 months , I have many friends here . They are very friendlly . To add , we are like a family , we make everything together , and we go to school and study togethe . I usally go to the English Academy from 7 : 00 until 8 : 00 ( pm or am ) . I 'm here to speak Engilsh very well , but now I do n't speak well . . . What sort of presnts did you get ? Becuase there is not enough jobs for younger students . I think most countries havethe sameeconomic prolbem like mine , right ? I idrank in my home town . now , I 'm sleeping in my costomer bed . The fugu is deriiouce but a littel dangerous as food . If the tree of Ume do n't exsit in the other contry , I think it 's good to write it just Ume . I have a quetion , I do n't want that to happen , especially both of them are the positive charactors of the show . It seemd that this summer was the hottest in the past 100 years . I want to go to the beach and swim , swin , swin . I 'm really sorry that I counld n't log into lang8 for awhile . And before that , I will join the business competiton again ! It is the same one that I joined last year . as ever ! lol Yeah , I know that my writing is n't so sophisticated but because I am going to the competiton in Beijing , I have to brush up on my English skills ! Another favorite thing is playing the guitar , eating snacks ( especially chocolate ) , dancing , wathing movies ( dvd ) and so on . I think thay are on the cruise and having fun now . I hope thay enjoy their trip a lot . Anyway , Holloween is just around the corner . They are my tredsure . It is this class for sleeoing . because , this class is a trvial for me . I wiil visit Greece on October . Earlier , I researched Halifax by wiki ; then , it was witten as city , but on another web site was witten there is country side . Of couse , they were the tailender . Although I 'm not their fan , I 'm glad that the efforts of an underdog are finaly bearing fruit . YAKUZA appers in this game , A yakuza man 's tatoo is the dragon , it is the origin of the title . I like Pikatyu the best . But I also like Raityu . Do you know about Raityu ? It is Pikatyu 's older brother ! Nevertheless , it tends to be stressfull since it is not a reliable service , and it isn ` t always on time . I 'm going to t write what happend during the day and what I think about those things . I have the volunteer work for rural communities next week , in which the participantant will live using ecological ways . And I watch CNN news on the Internet ( even thogh I can hardly catch ) . My most favorite cartoon is BERSERK . Unable to use Andriod phone / Ipad to use Lang - 8 ? ! I ca n't help people re - write their artiles / sentences . after few days , I found another thing , I ca n't use an ipad to write correctoin either ! ! At this time , Oita city in Oita PREFECTURE and Fukuoka City in Fukuoka prefeture had high tepmparature , setting a new record . Before starting the games , we were devided into four teams . Thank you for always coreccting my mistakes . I went to the English convrsation club . I felt happeer than useal . Chris invited me to the langage exchange party which he will hold on March 21st . silience is Golden I and my freinds often talk about other friends . We are going to a Restrant . I 've started standard Arabic , but I only want to speak the Algerian dialect , so I 'll pratice it with my father or my family when I go to Algeria . This morning , all the grss and trees in my yard looked so good . I have a soccer class every Friday moring . Maybe because I do n't how to set the perfact mood with my camera and the tripod . Mi piache la cucina italiana . Allora , volligo andare in Italia e mabgiare la vera cucina italiana . Besides , I am awfully curious and willing to learn , so I quite often get absorbed in philosophy , psychology , histoty etc . Then they pray to thier god for a happy new year . but sometimes I prefer to be alone in my room - - I love how peacefull it is ! I listen to songs in English , but I can understand text only with an online translater . . There are no large buldings or roads , and there are no subway stations or tonnels . So the major problem in the area is traffic jams early in the mornig and evening , I mean rush hour . In addition , there are few restrants . If you go to the same resterant often , do you feel bored of that food , since the tast is the same and it 's made by the same chef ? I feel bored of the food I 've been eating , same as my boyfriend . We have an idea to find another resturant . We hope we can find a good resterant with dilicouse food arond our house soon . Thank you for helpping me with my English . I think that it is a very interesting , intelligent , and wonderful countre . In the future I will visit London , Oxford , and Kembridge . We can not choose what heppen to us , but we can choose our attitude towards each thing . I think it 's no problem to you who are graduated from the famouse university and have so many working experiencies . The next is to search for an appropriare job which can satisefied to you . I was in Karaok for 11 . 5 hours yesterday . . . . I went to Karaok with my friends yesterday ~ For my classes are canceled due to the flu ~ Everyone was free during the same time and the Karaok called Jankara is 50 % off these two weeks ~ So we got up early and began our nice day ~ After that we went to Karako for about four hours ~ We sang many songs in different languages , oh ~ I forgot to say that my friends are from Japan , Thailand , Korea and Russia ~ For this reason I was able to listen to a lot of amazing songs that I 've never heard before ~ Especially since I found Korean very cool language ~ it sounds amazing ~ Maybe I will learn Korean some day ? ? ? ? ~ hahaha After Karaok with my friends from university ~ I went out on my first DATE with my dear MARIKO ~ hahaha ~ She is the chief of restrurant where I worked part - time for a very short time ~ She is like my older sisiter . actully she is only one year older than I am ~ also a very congenial colleague while working ~ I have learned much from her ~ I really , really feel very lucky to have met such a nice friend in Japan ~ We also took PILI for nice keepsakes ~ We ate SUSHI for dinner then I went to Karaok again with Mariko ~ This time we paid for 7 . 5 hours at first . . - - Inculding `` free - time `` ( From 10pm to 5am all you can sing ) . . . It was the longest time in Karaok for me . . . How can I spent 11 . 5 hours on Karaok in one day which only has 24 hours . . . . I want to study ocne again . It was beyond my abilityT . I 'm just enjoyning the sounds but not the words . ple give me some advise . hi ^ ^ japense friend . . I 'm researting an education market . . would you give me some infomation . . The Showshank Redemption I saw `` The Showshank Redemption `` . I Especialy like the movie 's last scene . It is very impressive . Anyway , I think korea people love to sing . Finalle , I will talk about the political aspects of sports a little bit . I tought it recently . Maldive has recentry become popular for honeymooners . The sky and sea are absolutely blue and sooo beautiful ! I think Japanese fook is the best for teenagers ' health , because it is nutritionally well - balanced . It is considered to be good for our health , and is used for many eishes . I want to make an america friend . A Jaapnese friend of mine called me this morning , almost crying . I wil try my best ! ! ! I was plannning to study mathmatics and to write an essay . But I quit and just studied English today . This is my first daily dialy on Lang - 8 . ctually I want to comunicate with foreign people by myself . I have to keep sududying English ! careere as a drummer . parctice every day in order to be a good musician . I do n't play like I used to , but I alwyas In the summer I , as well as many American and Russian teenagers carned some money . Osaka ( in Japan ) was cilly yesterday . But my old coweker said , `` Today is hot . `` Intercltural com . Every Tuesday , I join a class called ' intercltural Communication . ' I went a restaurunt with my friends forbreakfast . So , we decided to go to a restaurunt to eat breakfast . We arrived at the restaurunt after few minutes . Whan I was 12 years old , I started to like him . I want to be Ecxellent at English . The wierd [ ] atmosphere { ? } of the lab one in I wich I can find a [ ] clearer answer in the future study said the speaker , `` what is it that makes you prefessional proud to be a forester ? `` and , through [ ] good management , [ ] each tree in this forestr will cost only I studied about hundreds of words and some basic grammers today . At that time , I was 17 yearls old , not too young . Now I want to visite once again . This is a traditional / historical Japanese spa and the dress code is to wear a Yukata , which is rentaled by the spa . It 's important that peopel know the truth , about other peoples feelings , and trying to understand it . I want to buy a redrigerator . I also love lerning about differences in culture between my country and other countries . But stil , I ca n't believe this situation . my hasband has gone Yesterday my hasband went back to Tokyo . We give thanks to all labors . I live in Shanxi province , which is locat in northweast China . There was a big eruption column and sulfur dieoxide at the volcano . Love sometimes meeans bearing and understanding each other . Colin Firth 's films make me forget about the fear of the erthquake . But I like his moveis like Bridget Jones 's Diary and Love acutually . And suddenly I wnated to see Colin 's previous films . So I borrowed ' A single man ' from a DVD lental shop . It was shoking to me . In the film , the use of colors are very beatiful . I love the scene that Geoege changes his sight at the end , even if it 's not for eternity . I really looked foword to seeing it again . Because that day there was an erthquake But many peope are still missing . When I saw A single man , I thought it was just ficusion . There are still a lot of aftershocks , tunami , 20000 people missing and a fear of radioactivity . . . This time my impression of the film was totally diffirent from the first time I watched it . This time , I did n't feel shympacy . I did n't want to live in tha panic and nightmare any more . I had to look at his desapair objectively . Because now it 's not ficusion . It became an unforgetabble film for me . And I will also remember now I see tha world very beautiful like him . I used to study the pafoeming arts in ( my ) university . I 'd like to learn bestiful English It takes around 30 minits by train from Nagoya station . INUYAMA CATSLE > Nobunaga Oda was one of the most famous warriers in Japan . Both warriers are also very famous in Japan . We can see 13 floats which mounts pappet at Inuyama Matsuri . The floats are important national proparties . The pappets on the floats are called Karakuri Ningyo They is similar to Marionets . The difference between Karakuri Ningyo and Marionets is I am a student and want to learn ingles . I enjoyed talkiing . The price of poteto chips has increased little by little . I 'm studing English TOEIC Test which will be held in the end of this month . My weakness is Reading , especially Part - 5 ( grammer ) and Part - 7 ( long sentence ) . unwanted pregnance and spread disease . However , today follwed the same routine . Actually , I have been working part - time fot it . When we almost finised our meal , I asked him if I could touch his hands . This is how I broke my new year 's resoutioin wihtin a week . Too slepy to write Yes , I took many picturs but now I can ` t do anymore . but I have witten about this medicine before . Today 's topic is comparatively easy to write about so it took me 37 minutes to compelete . The aftershock has faded out but another ploblem is coming . This plant sends electric power to large areas icluding Tokyo everyday . Because of this , Tokyo electric company and the gaverment desided to share the power to not blackout all of the areas suddenly . Actually , it 's not very hard to listen to English which dubbers or acters speak because they are professionals who speak English , so their English is very clear . However , Canadian people , excluding dubbers or acters , speak English in a casual manner , so their English is very fast , ambiguous , and changes sounds . For example , `` What are you talking about ? ? `` sounds like `` Whada ya talkin bou ? ? `` . Ashita ha ichi nichi juu , koko ni ha narimasen . Watashi ha Scout no atsumari ga aru masu . It came out a few months ago , and it 's based on a ture story . The story is about a bride who has only a year to live because of brest cancer . So I do n't know the whole story but there was a phrase that the bride said during the moive . That pharse just shocked me for some reason . So I thought I should be more thankful to be alive even though there are so many things that upset and frasturates me . But still , there are a lot more chances to make my life more meaningful and enjyable on my own . Recently , I wonder how learners are able to aquire listening skills in English . The foundation conceals my scrach completely . I watched animetion during break time . In the animetion , many - characters have same eyes . A report which would take less than two minutes would take me more than 45 munites to finish . listening to the standard VOA will be a peice of cake . Lately , I 've come across a lot of articles and videos concerning harmful ingredients in shampoos , saops and other scin care products ( such as parabens , sodium lauryl sulfate and many more ) . My resisitance to using English has decreased than yesterday . He had a skelton body , so I thought he was god of death ! Harry Potter and The Order of The Fenix is the fifth instalment based on a fantasy - adventure , same titled book by J . Acting is resonably powerful , but it may get better in subsequent instalments . Even thouhg now I try to read as many kinds of articles as I can , I should try more . This is my farst diary on this site Today , I was bored because I did n't have anything to do and felt strangley dull all day to study something , so I wasted my time today . Hello , my wonderful friend , it 's a bit cold arond Bangkok again today . Happy Haloween costume contest ! ! ! Our private English School held the Party near public holl . One of them became KAIBUTU - KUN , which is japanese anime caracter witten by FUZIKO - FUGIO He put on yellow shirts and red and blue hat and chech pants . I was interesting and amazing / amesing ! ! I like to enjoy it and imagine that I 'm the licky girl who is loved by the handsome boy Oh , reading comic books is the best thing in the world . this shop is a chinese noogle store . I think they fit in the atomosphere of anime well . Joe is a handsome boy , living in New York , who loves Japan and really watnts to get marryied to a Japanese girl . But now Jpan is in its rainy season . By the way , I 'm going to Bali island this fryday . I hope that when comany begins to recruit new members , he can tell me about the job opportunity . I am a computer programmer who uses Java language to develop programs . I mainly make websites . These days we are relatively free , becuase the project are almost complete . So I use my free time to learn English especially comprehension . First , I draw an outline of a face then the eyes ( the eyes are my faborite part ) . After I finish my works , I 'm surpried at the time that I have spent drawing . I was very surpeised that her Japanese skills have improved tremendously . Because they are scared of misstakes . The biggest difference and perhaps most interesting new feature is called `` focusing attack `` This is the new system used in stereet fither IV and is awsome . It is just a simple way to attack but can charge and depending on how much you charge , you can break the oppornent 's guard and make them vulnerable for several seconds . So it gives you big chance to reverse the situation by giveing them with massive combos ! ! Theseday days , it is VERY clear and fine . He was intervired in English , his English was good ! Its good for my English studies , and we talked a lot about ourselve to each other . I particularly like Michael Jackson and Luther vandorrs . But thier songs are very difficault to sing . It 's soooooooo cold too ! ! > < so the streets are very sonw . I want to improve my eglish . . . . . Yesterday ( February 3rd ) is `` Setubun `` in Japan . Setubun is Japanese traditional culture . - Oniwa soto Fukuwa uti . - During the 7 hours journy , I felt lonly , when we arrived at wanjiang station , it was nearly 8pm . I think that it is difficult to commnicate with someone in english . Today , I went to studiam called Saitama Stadium 2002 and watch some soccer game . This game was very inqredible and it was very amazing . Because , they are passing very fast and thier driibleing skills are so great . Last , I saw Thailand vs Saga and it was 0 - 0 so it turn to PK ( penarity kick ) and Thailand won . Today , was realy hot but , I am proud that I could watch the game . I do n't konw why I got up at this time . I think the answer is VANIT . Today my freinds and I went to the forest . I have had a stomachach since 2 weeks ago . Thay did some tricks . ( ? ) The Skateboad hit my leg . My favorite phraze What is your favorite phraze or words ? It is the latest mogel . Technology is wonderfu ! The first time I took a niddle in hand was when a was seven years old . Now I can sew almost everything except men 's coats , becouse I have n't even tried to do that yet . In the first foto there is a denim jacket that I made for my husband . In the second foto there is a handbag that I made for my mother . I have been member of Lang - 8 since the beggining of May . Honestly , I haven ` t tought that the corrections would be useful for my study . Depending on the topc , I often consult dictionaries . My voice was hoarse all day long , and our costmers could n't hear my voice . I went out on business this afternoon to deliver some tickets to our costmer . which is made of wheat flour and contains some vegitable , cheese , beef , pork , egg , and so on . Congraduration me ! ! My previous PC was soaked by water , resulting with some ( * unresponsing ) keys . I 'm very soory I had a cold . The inportance of English toefl ibt writing begineer 's essay ( guestion ) Use specific reasons and exaples to support your answear . ( my opinion ) please cheak . So I had no ploblem communicating . I 'd like to recomend going to Korea . Untill now , I have watched this movie three times . Even though a Product is of good quality , it is nessary for it to beadvertised . I have a habbit that observing ( watching ) advertisements which introduce the function of the product and how to use it . I remember that my tellphone was broken , a few days ago . The saleman introduced me to a lot of brands , but I was puzzled about the brands . So I think it is nessary to advertise . But , I 've suddenly falln to the bottom . . . Pushups on th toes for 30 repeats because I lik foreign musicians , so I want to understand what they Also , English skills are necesarry to communicate in the world . It 's important in bussiness and other things . I 'm lolking foreward to learning it . My favorite wretler uses Spanish . I often use this tool , but I also use the ordinally text editor . We like `` The very hungry caterpillar `` , writen by Eric Carle . Now I am studing in Saint - Petersburg . At first it was difficul to live in a big city for me . I am studing in Pedagogical colledge . Twenty years ago , the Japaese volleyball team was very weak . I hope my favorite sport , valleyball will be loved by every Japanese again . It is Especialy so for lunch time menus . Mitsubo ( Pig - Yakirori ) is cheap and traditional . Kuri ( Japanese Sake Bar ) is small and exellent . Last week , I had the flu and a fevor for 4 days . And I think I 'm going to study abroad during spring vacation ( Febrary or March ) . Some say he was an actor sponsered by a samurai and that he was painting as a part - time job ! I should be more carefull when I choose meat ! As people say - a new stard is the beginning of success The new year is comming . Taiwanese people are always open to people from all over the world , so travelers can feel the Taiwanese eenthusiasm very much . I do n't remember what made me decide in the end ; why I choose engineeringor what I was thiking about . Hally Potter ! ! Last Friday I went to watch Hally Potter , a new movie , with my mother in the theater . So , Hally Potter was very interesting ! ! Although I watch the Hally Potter movies , I have never read the books . Do you thihk I should try to read the books ? Next , we had a lunch at an organic resutorant . I can curl my haie well , but when I first tried it my hair was hilarious . which , if sudents who attend it at last pass it , will get them the highest scholarship of our college , but they must be in the meeting room at 8am . also got pletty of practice in society . I rememeber t I was disappointed with my host father in England when I heard this question . I realy felt no one in the world cared about my country at that time . I really loved th photo where you wore your hair in a bun / ponytail . After that , I developped the system using mobile phones . I am a little sensative Therea are a variety of sad and lonely characters mind . Nothing too special , but I 'm tryng write in English about my life ! It 's my first time doing this kind of job , so I 'm really nervouse about it . I 'm afriend my customers wo n't understand my explanations or introductions . The first sentence is quite akward to me because there are no such forms in my lanauge . Holle , everyone . But this was beacuse I was a student . I learned English for school exams . Beacuse I was not learning English for myself , I have bad skills in English . I think that Englis is a tool . I can use it to search for much information that I want . I like cherry Cherryblossom . They look like other kinds of tree except in spering . This party is sponsored by the English conversation shcool that I go to . About 70 people including twenty foreigher will take part in the party , But I 'm not used to talking with foreiners , and also my English is poor . I 'm looking forward to the party , but I have a little uneasiness about if I can communicate with foreiners well . I hope to make friends with foreigher in the party . I wish I could abondon this work and go to the sea right now . : ( This proposal is quite controvercial . People against the law went on stiked . This is because the number of elderly people is much bigger than yanger people . I thought it was ture . This is the grilled pork with spicy sauce and garlic and kimchi ( korean picle ) and lettuce . Finally I returned home at 10 : 00pm , and I had an egg and ticken on rice for dinner . Ths virus will hijack your personal data , which is stored in your Iphone , if you open the text message . I beleive one thing : exchanges can be implemented in only a situation where both things exchanged have the same value At that time , I could n't explain my oppinion well so . . . Your relathionship with someone will continue as long as you notice it . Perhaps some want to ask me why I worried about my relationship with my girlfriend as I wrote several days ago here even though I beleive this . But it 's been chageable these days , which makes me uncomfortable . . . I must confess that I am gay , and I keep this a secret , because I do not wanna show my pravite life to any body . I can say nothing , because it 's theie lives , and none of my business . And I hope they have the same feeling towards me : `` do n't borther me anymore ! `` The first time I found English to be very interesting was when I had the chance to chat wiht a foreigner . There are correct sentense which are not generally . used so I hesitate to correct . There are incorrect sentense whose original meaning I ca n't understand . I paid money for my English lesson , so I 'd like to take a lesson with puncturallly teacher . It was very beutiful and fantastic . Today I went to the travelling health center . becouse it is required at school . As I said above in the title , I fianlly got a job = ) But the surprise is I am not going to work in Korea , I am leaving for Vietnam next month to work there . Today , I was sent to the hospital by ambalance . According to my doctor 's report , it was because of tirement . We need to have a big smile everyday , and enjor our life . Nonetheless , after the Muji Revolution ( Restoration ) , Japan grew as one of the developed countries in the world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glamor ( glory ) in the Muji Era when Japan was the king of Asia . The landlord ' son is very close to us bcos we are the same age . We had to do something in the room , so we staied in our room for 1 hour . His advice makes me remember various things : consideration , cooperation , frendship and dreams . My boyfriend lives alone near univesity . They are athors of several book , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'm climbing the mountine becasue [ / BLUE ] the mountine is there . . . I do n't know why I go there . Well , there is one reason to climb up to the sumit . . Then , Today I went to mountaine in order to recharge my will and clear my head . I am not sure if it is a good idea to start by remerbering words . I cant belive that till now . Yesterday , I went shopping Harajuku ( Tokyo ) . Today is Coming - Of - Age - Day which honors young peple who have reached the age of 20 and become new menbers of society . This day , for meny peple , is a public holiday in Japan . On Friday night , I go out drinking with my friends or change my gel - jelnails or watch a DVD at home , etc . . One is about phychology . I have nothing to do in my native sity so I 'm trying to learn Italian and Japaneese . what I wish most of all is starbucks coffe . . Tere is a big festival in my home town now . There was a very strang smell that it was impossible to breathe . I had prepared for a whole week and I failed my test due to my headache , nervesniss and awfull mood ! At the 2006 GP final right before the Trino Olympics , she was able to perform triple axel jumps perfectly and won the gold medal , which catapulted her into the limelight . I like JoJo very much because the chracters are very positive . Both villains are very vigor about realising their own desires . The Auther of JoJo said that JOJo was a song of praise to live by . Anyway , I 'm going to go to the dentist near my house tommorrow . Next moring , I headed by bus to Weed , where the college is located I was amused that the scinary was so beautiful . or ; it 's similar to the movie `` River Run Though It `` . Weed is much smaller villeage than I expected Berkly , I luckly gotaccepted toU . That facisnated me so much thatafter that class I spent as much time as possible in lab programming in java . ( Of course , my GPA is getting lower than before though ) At 10 : 00am , I showed the productions schedule to our customer by e - mail as usual , but the spcial thing was - - - I invited my PMC to join in my e - mail . I thought if they also got the schedule maybe they could help me to push the produtions . On the other hand , my customer could see we were trying very hard for the new project . Can Manga tell us about diffelent cultures ? I think Manga can tell us about diffelent cultures . I want to imorove my English . It 's made so we can enjoy various PC media punctions and powerful performances . It 's japanese a taraditional wear . Hello everyboday , I would be pleased if someone correced my bad sentenses . I 'll introduse myself a little . The roses are blooming in my garaden now . Is n't she pritty ? We , who live in the northern areas , have been waitinng for spring with excitement . That is kind of difficult problem for all humanbeing . pleople tend to use the QQ in China , not MSN . They are suppouse to have many tests and hand in papers . I see thoes students , studying so sericousely ( during thier class ) . And also I know that JLP teachers spent so much time for prepearing for this summer course . Do you believ that ? I 've never wirte my journal in English , so now I 'm thinking a lot about how to write it using the right words . Because of this situation , I swared to learn English as well as my roommate . Now I 'm living in Taiwn , speaking in Chinese . It 's a importent test for me . I want to stude English or another language , so please help me . haha ^ ^ Acording to my memory , I might heve wrote one ( 1 entry ) about 3 weeks ago ? I met my friends from my high school class , went cmaping , experienced heart - break ( s ) . . . I do n't know the case of forein countries , in Japan many high school and university students tend to start their first part - time job in it . It was dengerous ! I ate breakfast swiftly , and then I went to my granpa in his room and we both watched the game . Brazil is known for soccer , but when it comes to medals and hability , we 're better in volleyball . The other two are alreary known , and they are also great ! , Fortunatelly , Brazil won the game : D Even though I 'm always criticizing my country ( I ' M NOT GOING TO SAY ANYTHING ABOUT THE FIREMEN ' PROTEST THAT HAPPENNED TODAY . . . ) , I feel very proud of our voleyball time , and during these games , I felt like a patriot momentarily ! The reasn why I decided to enter this comunity is that I want to go the USA or the UK . In other words , they can controll our preferences about fashion , music , or so on . By using commercial films effectively , some campanies have succeeded in selling their products and making large profits . Television and movies have influenced so much that they subtract peopl 's character from them , making everyone homogenized ( the same ) . When it somes to the arts , it is necessary to foster and utilize our creativity . We did karaoke , played games , and drank alchoal . It was strange becouse it was an unfamiliar sight to me . Recentry I 'm taking english lessons . Unsoled food is disposed of . I studied abroad in Brisben , Australia for a mounth , Please hele me EVERYBODY ! ! I was reading about the continuouse tense . I will read about English grammar all day . However I do n't know exactly if I should read Thai books or English books to understand English quitely but I feel I learn slowly when I read thai books . I am really slow to understand English but I must do because I would like to test well at IFAL . I will read both types of book . On the ( / that ) day , girls give sweets or gifts to not only their boyfriend but also their male frinends and family . It costs two hundred yen ( approximately 2 . 2 dollars ) for a 200 milliliters . Even if your comprehension in Japanese is 10 % , you can improve it as long as you retain what you read and keep on execising . Some people do yoga , skatebording , tanning and so on . I hate some kinds of bugs , cockroaches in paticular ! ! Hai . I am a senior student ! I want to impove my English studies ! How about helping me ? I hope we can get along well with each other ! Recently , the increasing number of students ignore studying Chinese , but they spend a lot of time on studying English or other forgine languages . Analyse the cause of students who overlook studying Chinese , there are a few reasons why : firstly , with the fast develop of China , more and more companies have an internation trade . Therefore , the people who are good at English is ver essential . UK , Italy , and France were for high school trips and I went NZ to studing English for about 4 weeks . Last weekend , I went to Hualien with my family - father , Monther , my husband , and my son . Maybe we will go to Farglory Ocean Park agian , when my son grows up . Maybe it 's just me , sometimes I ask myself , am I really that bad ? Perhaps . But I keep correctting it . These years , I 've tried my best to beocome a nice man . I 've done so many things that I never thought before . Like I suddenly turned into another people . But I know , no matter how hard I 've been working you still do n't belong to me . You are so smart and too beautiful for me . Speaking another language changes your calactor ! ? I wish he will be happy everday and gets a good mark on his finnal exam , and has a positive attitude in his life , has a healthy body forever , has a satisfying job in the future , and also has a nice mood everday . I could y immediatery recived some helpful answers from kind people ! A large number of people are surrering from the damage of the tremendous earthquake , especially the Tunami and problems with nuclear facilities . I hope all of the peole live happily like they used to as soon as possible ! ! I have KOTATSU in my starage . I 'm really greatful for this . I 'm greatful to get paid for doing something I love . Last week , I met my high school friend who is working at a Public coperation related with promoting Korea culture . To be honest , I do n't know how to discribe my present feeling . I must improve my English well befor the Asian Games begin . My fater 's unique hobby . My fater has unique hobby . still working to reach his dream in a diffrent way . Of course , I record these animation by SONY 's HDD & Blu - Ray deak . I am sure that my wishes are going to come ture . The first time I found this webside I was so happy because my English is really bad and I need to improve it . I 'm so afrait that I will do badly again . I hope joining this webside will help me . Indian traditional music at a Japanese tempele on ( a ) Sunday afternoon . . People are unaffected by politics now , so the prime minister aplogized to the nation . Changing the leader in the short tearm is bad for the nation . If I was a Singaporen , I would definitely go to vote everytime . I went to some foreigh countries when I was a high school student . I intended to learn mathematics , so I spent a lot of time doing mathematics and I sleept very late yesterday . Now I need to have friends who want to study chiness with me tostudy language together . these sentenses might have many mistakes , but never mind ! I hope I grow up to be a good English speeker . You know , we have a rainy season that is called `` Tuyu `` in Japan . Yammy . Fortunatelly the porter was a nice women , so she allowed me the step inside the building without my card . I went to Voncouver for 2 days . Hello , my friends . I am balck . if you want to know more about the Chinses culture , Maybe I 'll spend GW wathcing these videos ! Many toursits came to drink them . I drank alchol too much , but only today . It is my one of favorite songs . I knew the song was coverd , but I do n't know who 's song it was originaly . Because I couldn n't understand what was written at all . It is usually written in archaisn Japanese and mordern Japanese . Archaisn Japanese sounds poetic , so I like it . In Japan we cereburate Hinamatsuri for girls on the March 3rd every year . I can listen to great music biside the beautiful mountain . I hope you can correct my writing and everything . I 'd really like to learn how to write profesionally , I mean with nice words = P As a matter of fact , wtiting a diary entry takes less time . We sent a card to congratulate them to the charch My nose gets stuffed up , and my allergr medicine makes me drowsy . The differense between Japanese & Canadian culture I have found Today after school I went sightseeing with my friend . We went to Backingham palace , Big Ben , Trafalgar Square and so on . When we went to InTrafalgar Squre , I found a statue of a lion . Today the temperature is so high , it feels very hot in the doormitory . Yesterday was the last day of my Mailitray service . It was a very happy end for a long hard years work . I have passed through many rough situation . korian town in shin - okubo I worked at my college then had an intervew . I did n't do well on the intervew , though I was n't surprised . I 'll just wait until everyone fisnishes finals . After bodyboarding , I stopped by the convenient store . I bought the grilled chiken and a cream puff . I think I will continue working here for this month and then I will look for nother job . The 1st word is ' I ' whenever I speak English or I write a dialy in English . Im went to hot yoga class yesterday . I had a muscle ach . . A tidal wave is a set of waves that rise suddely and go back suddely . This is my first dialy in English . When I looked through the diaries written in Japanese by foreign people , I 'm surprised that so many people can write Japanese with Chenese characters . Therefore , I tried to write the first dialy today ! What is the best way to hundle conflicts ? Cultural differnces often cause confrontations . Even in a classroom at school , thiere are some cliques . When we are in a conflict , we tend to reagard our own opinion as the right one . Winter sporting goods shops are especiallypopular now because the Bancover Olympic just started . As my husband is a snowborder , he would n't have stopped buying snowboard goodsif hehad beenthere . Which dou you think is a better source for information : the internet or newspapers ? Therefore , I believe that the internet is a more essencial tool for the sourcing of information . During the Mid - Autumn festival , I went to the western part of Sicuan provience . Mountain raods are diffcult ( to ascend on foot . ) Recentry I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . Howerer , the teachers in the new oriental school feel more comfortable to talk with students like a friend , and some of them even act as matchmakers between students . Marysvill , a former gold - rush town , was almost completely wiped - out , and witnesses said the fire spread quickly , engulfing one house after another . Hey , evryone ! my memory of my childfood I broke the window in the classroom when a few of my friends and I were playing with a soccor ball , sprinke classmates with water from a hose It is that some of my friends and I had benn hard on him for few years . Tasmaniasalmon salmon is very tasty OR delicious . And I had 8 pages of a paper due on Satureday , so I could not sleep on Friday night also . A unversity life has started and I 'm enjoying it . There is a coincidence , I just watched a TV show about the multiingual policy in EU , and I found one of the professors from my university back then in the show explaining the current situation of languages in EU , 20 official launguages and many other minor ones such as Catalan and Basque , and also the big influence of English . I 'm subsicribing to the Nikkei shimbun . So I beleve the language barrier is to be overcome soon , and what is important is not ( one 's ) nationality , but what he or she can do for Japan . When I feel pretty bad , I get sick on the train easily , so I decided to be abesent from the university today . My husban has been living away from me and my first daughter for his work . Yesterday I cheked metal structure radiated He ions with TEM which is an electron microscopic name that can show nm size . In north of Japan , Hokkaido became cool recentry , so I did n't want to sutdy until late . I only had one interview till now , but fortunely I got the job offer . Actually , I 've tought of how to study English these days . As I was listening to them on itunes , I looked for the jacket and the booklet that should have been somewher on my shelf , but could n't find them . I have n't been studing English for long . Of course , when I have the time and if they want to have a conversation , I try to practice my English . That oppotunity is really rare because the people who want to converse usually want to talk in Japanese . I sould do what l really want to do . I took part in the orientatation of the English class . I took part in the orientatation of the English class just 45mins ago . So I was asked some questions in Enlgiswh from an American Teacher . I am studing English . . To make most Korean sauses or Kimchi takes a lot of time . I heard Austraila does n't have winter . Korean people consider that courtesy is ver important . But it also puzzles my granpa ; ) So he came in her appartment with a beutiful bunch of flowers . She wanted to put the flowers in a vase with water when she noticed that in this bouqet of 8 flowers . . . I 'll write an artile a week ! And the paid tax is used to protect the enbiroment by a municipal office . no dammege during World War II . My breakfirst these days is : dishonest , disappinted . . . Today I went to lunch with my boyfried . He only told me my mistakes , what I did , and at last he said to me , just lagughing with small talk or thinking deeply Hello , ledies and gentlemen ! This feeling is not consistent with the volunteer spilit . If I can control my emothion , I will be released from my pain . Must you ensure that you live in a real world even if the real one is much harder than the illustive one . Doraemon tells Nobita that every child whose IQ is below the stardard level is fed with nutrient liquid and lives in a modeled world . Her only friend is her pet : a rooster her father found beside the hignway . But fortunately , he has a nice neignbor , Ivy . Max aslo has a pet fish , Henry . He likes catching fliies as fish food . They just like two parallels and never think of that they could come accross each other one day . After being through the most misable days in their lives , they could finally let it go . Diet fuilure ! I hear that dieting seems to be a fuilure for people who do n't really exercize . I can get good results because I like to exercize and do martial arts training . I think martial arts is a good diet exercize because it makes you sweat all at onece . Weight training is a good diet exercize too but I get bored with weight tarining right away . The photo in my profile was taken at Takadamatubara , which the tunami hit . We can do anyting . Old men and women played table tennise They were very funny and cute eldery people . I did n't practice to speaking the foriegn language much . For , at first , I 've decided to study for getting a gualification of bookkeeping . All the members say `` I think it was a good chice to join this class and I 'm very happy now . `` I think so too and I shold continue to use English in ( my ) daily life : ) I was upset and disspoint . `` Lottory ! `` he said , and his answered dissapointed me ! ! ! As soon as we arrived , he bought `` LOTTORY . `` I felt like a million doller ! I felt like jumpping for joy ! My computer has had a ploblem for three days . It 's conceivable that it will lead to an argument or even a fight if someone abruptly turns off the TV just because he or she is annoyed by the noise when other people are whatching the TV in an airport , for instance . I 'm very curious about cross - cultural defferences in sense of humor . The othre example is the telephone system . All evolution of technology has made our life better but at the same time we should realize we are gettting to be lazy and reducing our abiltity by using our invetion . I want to be a human being itsself ! ! Nihon e iku tochuu desu demo michi ni mayotta shimai mashita . Shizuoka is safe and has a reluxing atmosphere . So , I 'm always waiting for you to come to Shizuoka to enjoy reluxing weekends ! ! After his parents divorced , he stayed with his mother , but she remarried and redivorced again . Some perfer to listen to a lecture by the professors . The following , are the reasons for my perference : However , with the development of discussion bring great humour to our esucation . Just a typo right ? A good example to illustrate this is that the ability of analyze will nurture through the discussions If I ca n't get a job here , I 'm going to Tailand to look for a job . I used to go shopping at the home improvement stor called D2 which was damaged . The sweet and the bitter of life made peopler more significance . Let the unique girl with good lunky come back to her hometown . According to the weather forecast , it would rain so I was uneasy because the heigher the location the lower the temperature became . So , we desided to go to the Otaru aquarium instead because my daughter likes aquariums very much . I am distressed by many things and I have nou vigor . . . : ( Finally he was unable to stand my behavior . When I say I won , it 's only a little bit of maney . Threfore , I just get bored since they do n't have enough time to chatt with me except one friend who is from Canada ! ! ! Now that I 'm thinking what to do to spend time learning English productively asside from chatting with my friends through Skype . If you think your my friend , just chatt with me ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! I 've been having busy days evev though my big test is finished . Hi , I just started Lnang - 8 . Yesterday I arrived in NY , and I saw lots of words I 've never seen , but I could n't remenber what it did mean . I took sleeping pills bacause I 'm an insomniac , but still I could not sleep well . I tried `` Tart Cherry `` supplement lsat night , so I slept like a log this morning . `` Tart Cherry `` worked . So if we make a list of qualities of a good neighbor , the list would bigin with these words : they do n't ~ , they are not ~ . The cup DID n't have a handle and it was slppery because of water . In Japan 's English class ( several years ago ) , I was taught that the two sentense below had different meanings . And the friend asked me why the sentense `` He has ( never ) gone to Japan . `` is incorrect to express the same meaning as 1 . thx ctenor and Sadhbh for thier corrections ! ! It is unbeilivable . I appereciated it . And you make me interested to writting a diary . The other day my close friend called me and said that they are going to have an appiontment today and also said they may go to the resturent . I felt annoyed because they did not askd me to agree the date and after that when they had agreed the date they However , it is not effective with those who have complicated work such as creating marketing plans , planning strategies , analyzing loan targets . . . The view outside was really nice . blue sky , the wind was cooling , the air was fresh , and the leaves were golden . I like the gloden autumn as it uplifts my spirits . I 'm studying ibt to improve my English skill but it is very taugh for me , especially writing section ! Some quizes are required to use all skills , so I hghly reccomend students who wanna improve English skill to study ibt ! Recentry I 've been watching foreign films . I conducted a series of experimente with / on concerete . On the cloothes floor As I entered tihs market , I felt like I was in a old factory , and it was really cool . It was about the promotion of a certain cosumer good that debuts next fall . So it 's too early for celebaration . ( A nabe party is a paty where you eat from a Japanese style hot pot dish with everyone . ) It is a local specialties of Fukuoka . It was a realy hot day today ! I thought I would see this movie with English subtitles since many people said that movies are useful to improve your listenning ability on the Net . Although my openion resulted in a shallow thing , what do you think about the saying `` No man is an island `` ? I sold a CD set of my bussiness teaching materials I used to listen to for 20000yen . There were so many people , screming , and yelling . How does it feel , hidding a secret ? I used to hear that some people tell too much about themsevles that their house ended up being robbed or their family members being kidnapped . Whenever I visite another country , I enjoy a unique experience . that was totally ridiculous and akward . yep , definetely 11 more months , though . I was suprised that its pronunciation is good . So reasently , I have n't rested for the second day . He always introduces many interesting music \ movie \ magzines to me . Hello , my wunderful friends . I am at home right now , and I have some thinga to do such as washing my clothes . I did not wash them for a while so now I need to work hard . I was only writing something which happened to me , because I was n't very inspirated to begin with ; ) Maybe I 'll try to write the plan of my essay next time ; ) I hope my English is n't bad , I do n't know if it 's correct enough or not , because I really want to travel , I thought about a sabbatical year in US or UK ; ) I said , `` I 'd like to eat a epecial kind of food `` . unadonn ( griled eel on the rice ) . . That day was my birthday . So I deside to eat unadon as my birthday present . ( This is from the lirics of High School Musical ) Sometimes the symptons come up days after the infection is caught . So how can I convine him to take leave ? I heard winter in Europe is kind of groomy , is that true ? This is my first jornal . I notice sice I came here , English is really important . I appreciate the beauty of language and pledge to myself that I will read my favorite foreignal literatures in their original languages . My favorate quote is Russell 's three passion of life : the longing for love , the search for knowledge , the unbearable pity for the suffering of mankind . Well , it 's terrible to accept her love with much careness . She put the fish in the water and boiled it , then gave it to me with a big smill . For example `` The mad prime minister Asou Taro lead our economy more badly `` , `` A yonger son killed his family with no reason . ( I have never thought about it until I was 20 . ) `` She is theree years older than me . She was a gril bron in a weatlhy family . She said she found a good chinise restaurant a week ago . The chinise restaurant is located in Ebisu . I like thinking about how should I take pictures to make averybody interested . Can you think about what 's the difference bitween them and you . But sometimes I forget to do so , so I think I should try to do something againg . I hope this wabsite will help me with my English . yeh my nephew has finished using the computer now . I was really serpised at the last diary my friend corrected . Gaye Club ! I went to a Chinese restrant in downtown with my friends . Going to a gaye club is a new experience for me . One of my freind recommended it to me but I was a little about trying it . She said she was from Austlalia . Cave Story , one of the most high - quality `` free `` PC games made iin Japan will be released on Wii - ware ( it will take time though ) . There were no awkward silences and we taked a lot . I think my native city is beatifull , but there are , of course , some problems . The Autor lives in Mexico now . I liked that coutry . I will go to Philipin to study English next summer for two months . Before , I tought flea markets only sold used merchandise , but they do n't . Also , I played guiter in a band . I fell in love with these shoes , so I desided to buy the shoes within 5 seconds . I am looing forward to putting oh the shoes . Bryse , a programer living in Illinois , is currently pretty much absorbed in studying Japanese . On the top of that , the time lag always causes forienger to be confused , like when I 'm speaking with an American friend . And another reason for the friend 's confusion is lack of vacabulary . I want to improve foreign languanges . However , I konw that it is unhealthy , so in order to be a healthy and lovely girl , I decided to eat more starting tomorrow . I will receive reports on the rest of the chechup items in 2 weeks . But I was not able to get myself into a better frame of mind I read books , listene to favorite music , and so on . First of all , I want to improve my English espectially , speaking . Although I can speak English more fluently than before , I make mistakes when I speak or say soem sentences . Lastly , I wanted to make forigner friends . I feel nerveous more and more . I can go to oze whenever I want to becoase it is very near , but I had never thought to visit . maby oze calls me ^ ^ they gave us a morning haze instead of sun rize . and they gave us white sky instead of orenge sun set . I feel confortable with oze 's nice charm I 'm satisfied whith oze 's nice charm I ordered a foctory size spaghetti meal with rich meat sauce . Unfotunetly , the day was rainy and chilly , but fortunetly I could visit many facilities in Oxford university . It is the midle of March , but we had snow yesterday . I have got a quesition : Do any of you who speak english or spanish like to chat with me in ICQ ? Konbawa . Hoever , I can not write as well as I read . Today , _ Shingo presentated a report about English literature . I am a cahere . I have a televeVision , a bed , a desk , a refrigerator , a computer , some pens and some english book Beacuse one of my classmates 's major was art , she explained the details of the oil paintings to us . His productions were affacted by his friends so he always drew the characteristics of female with small eyes and a long nose . Thank you for readling . Therefore , I 'm afrind of the flu . My class will be opening a food store for a shcool festival tomorrow . Finelly I decided to visit my best friend in Minsk ) My family was 4 people along with my uncles familes , my aunt and my grandmother . The Adults were talking about their lives while I was hanging out with my cosins in their room . My grandmother told us she wanted to go to Karaoke with the whole family . My grandmother was very energitic and cheerful . We went to the `` waterpia `` whice is a recreation park where we could enjoy heaps of pools . We have seen the first half of the movie , but nothing interessting has happend so far . Luckly , I got a ticket for a Green Day gig from my friend . I suddendly stood up and to get out of the from train but it was not my destination , so I stopped myself . Everyone was wacthing me probably . New book : Howl 's Moving catsle The title of it is `` Howl 's Moving catsle `` . I had no idea at all that there was the original story of the japanise animation ' Howl 's Moving catsle ' made by Miyazaki Hayao came from a book before I saw this . I like the carater of Sophie . The topic is my partner trying to sell a printer to me . I 'm the custmer . Ok , if you guys acted like a custmer , what questions would you ask ? Tree lieaves have turned red and yellow . Now I can read simple texts and understand slow and simple speach . But we must pay a bacic fee to use it . We have a cellular phone , and pay a bacic fee for that too . but sometimes , I 'm impressived by that . But I 'm sooooooo sad because today was the last day of my summer vacation ( ToT ) / ~ I 'm supposed to get up at 7 : 00 tommorow . It 's imppossible ! ! I wanted to wear a skiny jeans so I took a diet . I had to stop losing weight , but I will keep on with excercise for my health . I do n't like to use dishwaser detergent while using a dishwasher . What I do is first I soak the dirty dishes in warm water with some clenser for some time . After that , I rinse and scrub them before I put them into the dishwaser . Actually , computers is n't the frist selection of mine when I was invited into shaoguan university . I have alreay failed CET - 4 three times . It was a very big ivent x - D By the way , I watched a video that the actor Daniel Radcliffe appered in . I am a university student studying lasguage . English , French and Chainese . Studying language is difficult for me but I wish to comunicate with foreigners But today I do n't feel like working out because today I got my gradge . Since I wo n't be in Korea for years , I think that it is a good idea to spend time with family untill then . Dool Festival The Dool Festival ! Almost all of the house which have girls has ' japanese dools ' . We display dools on Mar . 3rd ( Many houses display from Feburuary I think ) . I prefer living in a domitory rather than living off campus . Living in a domitory gives us many oppotunity to make a lot of friends . Secondly , living in a domitory is much more convenient than living off campus . Most domitories are located very close to classrooms . Finarry , I will spend less money if I lived on campus . As a domitory resident , I will not have to pay for gas , electorocity , or water , like an apartment resident does . In addition , I will not have to pay for funiture such as desks or beds . I will not need a car either , so I will not be concerned about insurance , gas or parking . Consequently , the dorm is the more economical choise for me and my parents who are paying for my education . Her other lang - 8 friend and my classmate camte after I met her . Maids really exsists . The maid will paint something with kichap . Hopefuuly he will answer my email tommorow . Last friday my colleague asked me if I wanted to go see a movie with her after work , since I was free that night I siad OK . Since she rides a motocycle I thought she 'd give me a ride . It 's not the first time she has asked me out after work and told me to meet her by taking the bus ( and she rode a motocyle ) . vi is a text editor which is widely used by systems engeneers . Thus I can edit largeg texts and programs with a few key - strokes . It is very conforatable for me , so I often type vi commands on non - vi editor : I wotched a movie yesterday . `` Inseption `` we went to eat at a Japanese restaulant in sinjuku . But , as you can see , my English is not enougt to enjoy English ; for example by watching CNN and BBC news or listening to English music . `` Reborn `` , `` Hetalia `` , and `` Deactive Conan `` . Also , childrens ' crimes are not becaue of comics . I 'm stadying English , so I can go to university . Talking about the scedule , I checked the schedule and realised I reached work far earlier than I thought . That was why we swore not to use Japanese durling our time here . They speak fruently in their own language but ca n't recognize mistakes in English . At the beginning , a girl 's shouting with very high pitch and tremoro is stimulating . Futhurmore , he even assumed that I said something I 've never said before , like `` Those you refer to as good high schoolers `` . Next Sunday , I 'm going to participate in a marathone race which is 30km distance . Hello , my name is Gbriella . We met a lot of turists in the centre . The whole time , he was asking everyone to suport him . I 've been introduced by another Japanese friend and already knew about him , but I had no time to meet him at that time ; I just had his celler phone number . But he wants to speak conversational Japanese fruently and he has plans to go to Japan . For adults , natural disasterit represent / mean loss . In the film , President Mubarak doesn n't know anything about the conditions of the people . This film seems to say that the president is a victim of his ministers and government that tell him that the country is doing well and everything is ok . It wants us to believe that the president doesn n't know about the problems and obstacles that Egyptians encounter . This cook blews the whistle on the corruption in Egypt and tell the president exactly what happens in the country . It is hard to beleive that a president could be so naive . You should n't be dissapointed just because your effort does n't give you any fruit . However , according to what I heard from my friedns who has it , the filter of the system becomes clogged once a month . Some of them dream of the numbers and then buy Lotterty tickets . Sometimes they beleaved ghosts can help them win the lottery . As for me , I do n't like to play the lottery becasue I do n't know how to do it . Three months ago my ungle died . Many people bought lottery tickets using the numbers of my uncle 's brithday and they won the lottery . Recently I went to my friend 's funeral . Before she was cremated we saw that her numbers were 14 , 41 ( we saw from the box that her body was in before they cremated her ) . Lots of my friends decided to buy lottery tickets but I did not because I beleaved that maybe I would n't have luck . This morning my friend asked me if I bought lottery tickets or not . She said she won the loottery today and 3 of my other friends won the lottery too . They are going to get merit for my deceased friend to say thank you . I will write much about that tiring trip on another dialy . correecting each others ' sentences . I watched the movie `` Inseption `` . He spoke with a Janapenes accent , but very fluentry . I am looking foward to his next movie `` SHANGHI `` I 'm sure that she will certainly achive her purpose . When the car drove away , I whisperd very softly ' I wish you good luck ' . 3 - Draw a gren rectangle of the same size underneath the blue rectangle . My favotite is looking at things . I 'm very tierd because I have to sutudy hard for tests . I have already planned to go to NY during winter vacation and go shopping , so I have to save money defenitly . I like when people arond me are tolerant . I am still ashame of myself , when I remember it . My mother often said that she had difficulity making me eat . For example , the difference of `` clash `` , `` krash `` , and `` crush `` . But after I entered university , I do n't study grammer . Entrance examinations questioned me a lot about idioms and grammer . As you know , my English grammer is often wrong . It is a pleasure for me to eat my mother 's cooking whennever I return ( to ) ( my ) home , so I was very much disappointed . . If you are reading my dialy , I would like to say ' Thanks ' to you . From now , I hope I will be able to continue writing my dialy . Are there good ways to joing the conversation ? My first dialy in here lacks unity . . . . . . How appealing and - perhaps sandly - how untrue . Italian : Weit . In my country , many people are doing . . . ( 2min ) . . . Japanese people are normally tought by teacher and parents : From my point of view , this is why Japanede are so quiet in that they say almost nothing but smile while in a group in class . In fuct , it 's a bit tough for Japanese , while overseas , to find ' the end ' of a person 's talking . Some stores start to close on the evening of Christams Eve . And this time , I have to start living alone , no friends and coleegues . I went to IKEA to buy chairs , because my realtor promise me to pay them on conditions to cotract my room . I need speak more and more English because of my Job resently Recently , my fovorit singer is All of the band members have already had expierience with other musical projects . worked with many differet musical styles from Ska - punk to Hardcore . electronical samples . I 'm afrai I ca n't pass the exam for university , so I want to study English well . And do you add suger and milk to it ? So I want to laren English right now . 3 days ago , I heard he broked up with her ! ! ! This is because it will be usefull for me for when I start working in the future . This is a small and a light weight watch with GPS and heart rate moniter . There were some foriners . So our goal of the day was difficult . We wanted to talk with some foriners to study English . In the first store , there were n't any foriners , and then we moved to another pub . In the Secound one we met one person , and spoke to him . . It was so eciting . Everything has two faces , living in the school also has diadvantages . Such as the pocession problem . The Differenct living habits of the students are also a big problrm . But I do nou know what to do . plaese send me a message . I enjoied the view from the window of the taxi that we took to get to the city center . The hotel that we staied at is near the KL Sentral station ( It is a central train station ) . We looked forward to taste some dericious Malaysian cuisine . So I have to look up the words in the dicshonary many times . I hope I can finish this book before next Staturday . This means I have to readabout 100 pages a day because I justy started it today . Even btter , I could designate a cup for a specific purpose and use it only for that purpose . It made me desperated . So I want to improve my speaking skills by training from you , Stephany : ) and also by excersicing hard . Let me know if you know the names of the American competent authorities in the airport and their email adress . I felt very full and my bery seems so big . Todawy was the third day of my internship ; the second one was similar to the first one , which was pretty boring and very useless . Although , I could use a computer to read manuals in English , and a couple in Spanish . I stayed in Canada for a year as a working hoiliday student . I feel enphoria . I think that family is the most permanent and best of freind . So I 'm going to leave at 6 : 30 PM and tell my mothre `` I do n't need dinner tonight and I might come home late . `` . I asked eneryone `` Would you communicate with me on Skype ? Frist Diary Actually , I 'm not sure wheather we could beat them , since our team members are not our best . Now , I 'm in the corpolate planning department . I wore a skirt , so everyone said that I am crezy ! ! ! Fuckin ' rich and intelligent people and the finanial crisis ; we need a red revolution around the world . I 'm looking foward to seeing Mont - Saint - chel . My younger son respects his father at least because he is n't scared of cockroaces . And my mother tongue is Japanese , so I will be willing to correct many sentenses wrote in Japanese . and I want to go Erope for summer vacation . My familly consists of my father , mother , sister and a cat named Hiro . By the way , in Kxoto it 's 2 degrees , so it is really cold . Do you know Family conputer ? Family computer ( it is called Nintendo Entertainment System ablode ) is a video game console . Resently , games are high spec and very complex . The semina was critical for me , so I took many notes about the meeting content and clipped them in my documents . Besides , I also recieve serveral intivations of commercial cooperation which may enrich business chances of our company . It is hard for me to say and writting what I think immediately . It seems like it 's in the red this month so I need to be tight the monthy expense next month . We 'll go to unexpensive restaurants . On March the 7th , we left Osaka early in the mornning . In Ishikawa , we did some sighitseeing , and took a spa . . ( Japanese bath ) We talked about anything and everything untill the next mornning , and then took a spa again . , I also can not forget those friday nights when we used to drink many alchole and chat to each other . When I master bookkeeping , I will be able to judge the financila status of many companies . I worry about wheather I can snowboard better than I have , Computers are also used in businesses to place and cancle orders . However , I sometmes forget such ideas until I finish taking shower . Solly about the short dially . In Japanese cluture , it 's called OBON . Because there is noone in semetaries . Removing sopts in my face This pain was like a hot niddle pricked into my skin . After the operation had been done , I could see traces of burnt spots throught the mirror . Nowadays , it is common to see people walking while texting or yaking on their cell phone without being aware of what 's going on around them . This scene can be found anywhere from on the street to on buses as long as the palces are whitin the coverage area . when we rushed to public telepone and make phone calls using telephone cards . I learned this from betry , from pain anyhow , time never stops for man , although the world is not good engough , but life goes on , so we have to move on They energeticly gave their resumes to the companies where they wanted to work in the future . I registed immediately when I knew about this , however , I had a midterm which made me really really buzy last weak , so I have to wait till this week to post my first diary here . I have to take TOFEL on 9th , May , and now I feel overwhelmed , The first and the second photos are of a used kimono fair held at a depertment store in Osaka . Good kimono have clear patterns without any scrach . ( I do n't know wheater the pattern is any good . ) So I 'm afraid if you are American or Europian , it might be too small for you . Today , for the second time in all the years I 've known her , as I was bending down to pet her , at firt she did let me pet her then she jumped onto my lap and climbed up to my shoulder where she stayed for quite some time , her hind feet on the right , her front feet on the left and rubbing her chin on my left shoulder and letting me pet in turns . ( I 've never seen her doing that with any other person . ) Last year I went there with my mother and we were collekting a bunch of them for making jam . Only this time I was n't wearing my pullover anymore ( I had taken it off on my way down ) , so I could feel her claws hook into my shoulder ( outch ) . to do poineering work , we worked hard for our dream , so we could grow into a useful and wonderful man . In modern times , some people claim that we should learn secound languages without translating into our mother tongue and we can learn a language by connecting words together and by paraphrasing . Hi , Nada is my avater name at Second Life . I do n't belive that . . . I am worring about the ( my ) coridoras . He is always full of enagy and a real hundful for me . My tutor said `` Do n't transrate `` . I think I ca n't transrate any language so I need to speak English in English . My two sons playng `` KARATE `` . Recently , I collected pictures of my classmates ' smiles and put them toghether . This picture will be part of our juniour yearbook . The picture can be a keepsake for our juniur class . In one year , we will all gratuate and go to different places . This year , we will work for a better usage of the french language in writtings and we will try to discover other cultures by written correspondence with some class around the world . We had a really heavy rain yaeterday . I met my friends who are my clessmate and had met new friends who are from Saudi Arabia , I 've just dropped in McDoland 's and I love the walnut tart that is sold at `` Quil fait Bon `` . `` Quil fait Bon `` is a patisserie speciallizing in tarts . After our dinner , we went to a caffe . 3 months ago I learned English with my personal teacher , but now I am compelled to learn englih by myself . Because my teacher is very bisy . Byt verbs and times are my curse . I want to tolk in English with people , who tolk in eglish every day . I want to work for a foreign affiriated company . And I achived it . I noticed that I can concentrate in meetings in English only for 30 minuits . 30 minuits after the beginning of the meeting , my ears and brain get tired . There is nothing in my mind , but it does n't mean that I have no idea . But I need to take everday as my last day . However , it is difficult to understand the strategy of chess because I 'm accustumed to the rule of `` Shogi `` . I have had two turtoles for around 15 years : - ) Their names are `` KA - `` and `` ME - `` . Then I could spend a very intresting time ! ! ! ! ! It was a los of homework . . . . . . Lang - 8 is a very good web for learning langauge . I found it in a magzine . Recentry Lang - 8 is not working smoothly . It 's a little embarassed to play it when there are a lot of people in the elevator hall . There were atually . I cooked rice balls , bild chicken and flyed ( maybe fried ) go - ya . It 's a little bit wierd to say good - bye to someone who I meet for the first time , but it sure is a good opportunity to meet new people ! and immidiately fell in love with the place . I 've worked in the International trade for almost 2 years , but in the new HR 's eys , I 'm still a newbie as I 'm starting in a new place . 2 months have passed . No tasks , no assignment , and the formal training couses seems just a waste of both our time . Acctually Ispecialized in business English and have former experience with daily use glassware . There were many pils of DVDs . Also I hope to comunicate with someone in English . So let me intridue myself ! I love chatting with my friends , playing sports ( I especially love badminton ) , and listening to musiic etc . By the way , I took part in a internatinal party in Ginza , Japan the other day . Of cource there were also lots of Japanese , who were all eager to make friends and practicing English , as well . I prepere for going to school by listening to music every morning . But I get the urge to buy onece in a while ^ ^ . I invited a Japanese freind to my place . Of course , I can be a good Chnese teacher . Today 's shedule It 's very confortable for me . Some people think there are many benifits to have machines or even robots deal with tasks . If we can make the machines work for us , we 'll be able to creat a completely new life style which is healthy and suitable for all the human beings . We will try delicious foods in Hokkaido , such as chikens , Japanese crabs , shrimps , various vegetables and so on . I 'll look forwarad to it very much . Electoric propulsion My major is Aerospace Engineering . We study how airplanes fly and learn how to create poweful rocket engines etc . . Most of my colleagues in the laboratory are studying a plasma electoric propulsion system which has poor thrust ( 0 . 01 ~ 1NS ) , however its efficiency is awesome ! ! , It 's ten times more efficient than chemical ones , which are normally used in rockets , ( The space shuttle being an example ) . The kind of work that interests me the most is reseracher . I am highly interested in study , espetially in human dynamics . I will give her everything as well as my life and I think she will be the treature of my life . Accordind to the news , only one domestic line and one international line have been put into servise . I welcome the new airport which creates new buisiness chances , because I work at a travel agency . When I made a woolon tea like I usually do , I noticed the diffrence in taste . This time I 'd like to speake about the club I belong to . We invited some amature music groups . I think that song and art is very woderful . Thousands of residents from a part of Fukushima prefecture , which has had a serious problem with nuclear power plants in the March disaster , have been told to leave thier homes . In adittion , my laundry wo n't dry because of the humidity . Since I do n't have many opptunities to speak English here in Japan , I think my speaking skills are getting worse . I will be in Budapast in Hungary , between May 7th and 13th , to attend a conference . There is no direct flight from Taiwan to Budapst , so we need to fly to Wien , ( Vienna ? ) , and then travel to Budpast either on another airline , or by bus or train . BUT now the host family is a of some concer . She told my daughter that she had a really hard time with the same host family because the host mother has been suffering menopuasal symptons and when she is really low , she yells at others and throws things . My first name `` Satoshi `` means `` cleaver , smart and wize . `` Yesterday I rentaled `` hostil `` which some people recomended to me here . Otherwise , It will be more difficuly to find a job . In the USJ , there are many kind of Halloween decollations . We all have beatifull penmanship . The operability ? ? ? of jQuery is absolutely indespensable to screen operation and I use ajax ? ? ? as much as possible and . . . . . However , I ca n't talk to her face to cace , because I 'm a very shy boy , so I will talk to her tommorow . I registed to Lang - 8 to improve my English . Because you ca n't eat and you ca n't dring . [ WE ARE THA WORLD ] and I lost my way ( ; ; ) There is no dought that I turned right . My homework . . . Corect please please please please please Dinara Safina is one of our favourite Russian tennnis stars . There is a big Catedral . The Catedral often holds festivals . Though it 's small , it is very convinience . Going from Toledo to Central Madrid only takes 30 minuites by train . Billie Joe made some funs get up on stage and sing a song . It was unexpectable ! What a beatiful day ! I drank a gluss of white wine . It was very tasety , but it was too sweet for me . So we had to go anothe restrant after that . But sometimes when I listen to difficult English , for exmple CNN snd BBC and so forth , they use words I do n't know , so I have to conjecture their spellings or meanings only by pronunciation or context . Meanwhile , mutton is less popular than other meats , like a beef , pork and chikin in Japn . Greece , Iran , Spain , jorudan . . . . But there are not any Uighur resturantin in Tokyo . It 's hard to believe that I do n't have to go to the academy antmore . I downlode an application which allows me to play poker online . These berad are very expensive ! I eat a lot of berad , but I 'm on a diet ! A lot of Japanese food was sould on the street , such as Tenpra , udon , dango , kakigori ( shaved ice with syrup on top ) . Today 's part time job was working as a delivery staff for a piza . I deliveried to six families for only two hours . In my apartment , one of the lamp bulbs on the celling burned out , so I changed them . I belong to the third branch of Hratsuka volunteer fire fighting unit . We quickly gathered in our office and went to the accient spot on fire engine . The spot was the mini factry of Japanese sweets , and the heat sencer responded to the steem from making sweets . so it 's very fun to comunicate with the people who have different backgrounds . `` Drinking together helps our teemwork grow . Two month ago , Japane had a big earthquake . I was n't affected becouse the epicenter is far from my prefecture . However , when I get paper money , I put it in 2 partitions . ( Korea has a 4 kinds of paper moneis ; w10000 , w5000 , w1000 and check ) I 'm busy so I ca n't wirte in my diary . . . . . . byae bye . I am listening to the Presidential Inaugural Adress on my podcast . His speeach is very good ! ! Syabu syabu is very populer japanese food . Nabe is besitable , meat , fish and etc . and , very dericiouce ! During the meeting , some profeccer and I discussed a way of teaching science . A profeccer gave me a lot of advice . When he finally left school , he travelled to New York , where he became a studed at drama school . I am sure that although most of my painting friends on Facebook are just virtual friends right now , someday they will become my atcual friends ! ! ! It has been a really really reall long time since I last wrote my diary ! Actually I just dropped by after following up an introduction on jandan . net about this interesting place , [ insert space ] where people WITH DIFFRENT LANGUAGES AND CULTURAL BACKGROUDs can exchange their ideas and thoughts . . . Most importantly , it allows native language speakers to give suggestions on your blog , [ insert space ] mainly about how to write it in YOUR second language . . . [ insert space ] A pretty cool idea ~ ~ I am college sutudent and I belong to soccer club . His ball technich is unbeliebable ! ! The aloness that keeps out a chalming smlle . Beyond my idear . I really like that city because it is not only the first contry I 've gone to overseas but it also has many tourist attractions . Many lights were reflacted on the sea . It opend on Saturday and Sunday . Oh , I remeber a man who could paint a picture with spray . However , it remains unclear how this affective bias affects the memory as the distractor . Visitting a grave . As we know , the smoke of a cigarette contains various kinds of harmful chemicals . Some of which have been proved to cause lung cancer , such as nicotin , amoniac , ethanol , carbon monoxide , acsennic , and naphthalen . In fact , there are some cases a cigarette is the cause of a house burning down . A cigarette can cause serious consequense . I readThe Economist , however , and itsaid thatJapan ca n't escape The lost decade because of indifference towards politcs on the part of people and politicians . I disagree with the statement . Indeed , how to change our lifestyle is a crusial problem . 1 ) Clearfy state your purpose ( why you want to be or do so ) and prize . Altough I drank a lot of wine with my friend for 6 hours last night , the result of exam was A . Once the mark is caused , it is permenent . Yesterday , I took part in an interwiew for the Beijing Western Sunshine Rural Development Foundation . There are many university students going to there to hlep impreve the current situation . Though I failed in this interwiew , I finaly get 3 days off in a row here . . . A five - year old girl was found by Russian police in the Far East terriortery in Russia . So many people are suffuring from hunger and poverty in Russia these days . The police brounght charges against her parents . Finally , we dicided to buy a sofa ! Although I have n't got a lot of money , I buy a butiful clothes . Even though I could n't understand the woads well , I could enjoy the pictures and the sound and I roughly understood the story . Spending time with my family , visiting my granma and going to a shrine to pray for a Happy New Year for all . . . I 'm very cold , but there are many air - airconditioner that are used all over the area . Also , I have to attendent my class , but I 've been getting up late , so I have n't been going there . Please check my dialy ! Yesterday , I went to the New Internatinal Students Welcome Party at my univercity . I l lerned how to find ecnomics datas . It is a very interisting place for me to make many friends and communicate with many foreigners . I 'm so frustated . Now it 's pouring still harder like torning the bucket over Please do me a fovor and tell me the meaning of this sentence : The men are in a snack . My ankle was sprained in the afternoon when I played valleyball . . . It 's so shameful when I recall it now , because there were many students on the valleyball court . . . Maybe I ca n't play valleyball for a few days . . . So it dameges a lot and many people feel uncomfortable . So I suggestio it to my 3 co - workers . If you are avilable , please correct them . Althouh I 've lived in japan since I was born , I am now planning to study abroad in Canada this july . I think that just only speaking Japanese is unworthly in a global world . so I hope to contuct each other by using this useful site . I felt as if I were moisted . An intense tornado struck Jplin , Missouri in the US . and elemantary school teacher . I like traving all around world . But unfortunally since we do n't have that , my husband just grated onion for me while crying . I recomend to you ! My dream come ture filnally I really hope go along with them . . . But , on refrection , the postage price is as large as the price of the clothes . So , I regtet now . Many friends recomment this drama to me before , but I did n't watch it because I was watching another drama , `` Lost `` . In our company , the phonomenon is found surely . Thouse who are in their twenties do n't like it more than those who are in their thirties , and the occattions to drink it seem to decrease . When Joy entered Mcdonalds , Ji and Min alread sit . I should have stadied more . . . That was her first solo cocert and her first CD was released on the same day . After that , I went home and practiced soccer and today , I practiced passing , trapping , driblling and geading ( ? ) . The session is a drop - off class but it 's a 20 minute drive from home , so I wated for her for 2 hours in the caffe nearby . It made me feeking very busy and tired . ( My neighbor / One of my neighbourgh ) is attending an Italian course in the Italian Institute , and told us on Sunday that Giovanni will gave a interview talk about his books , and will play a few songs in the Institute on Tuesday evening as his debut in London . I sutdy dentistry in hokkaido university . My part time job is tennis instractor . My First Writting Although I have been learning English for a couple of years , my writting skill is still not good enough . Frankly speaking , I do hope I can make some progress in writting . The idea of helping people improve theree language skill by SNS , totally atract me . My vacubulary is limited . because the less people there are , the more you can have the oppotunity to speak English . The teacher askmed us several questions . However the financial crisis recalls the goast that Alan Greenspan exorcised in the late 80s . May God help America , I ca n't stoip praying . I ca n't speek English well but the teathers are very good so I will certainly grow . Yesterday morning , I drove my indian femaile friend to the animal shelter . I do n't konw what will happen to me as a volunteer in the future . Furthermore , there is the English test on next Saturday , so I hope I can cope with this test with confidence and knowledgy which I have studied for 6 months . Writing is one of the most difficult skills , I hope I 'll improve it using this service , moreover I hope to get to know new and interesting people here . Who have and know new ideas , and can enrich my life with new conversationals . so my assey is always basic level . Even then , it 's an arbulous trek . It is nutural phenomena is n't it . Why do some people accept homesexual ? I do n't know exctly about that . Writing a diay is very exciting for me . . . I think that learing other languge not only gets a skill of communication but also gobtains another country 's methd of how to think . Me interes el flamenco , la salsa , el viaje y la gente ( ? ) . chao . It was very crowded in flont of the Mona Lisa . I 'm qurious . what does ' craking up over ' mean ? `` Food desert `` means a situation where many people , particulary elderly citizens , have problems buying food because a lot of small shops closed down due to the emergence of super markets , department stores and discount stores , and large shops are generally far from shoppers . Pottery ! `` in the magazine I got when I exchenged ( or switched ) to the iPhone4 . I am studing economics . I scrabed the inside of rusty frying pan with a brush . After that , I ate an egg tarte at a bakery . There are many similar words between the two lguages even though one is a descendant of Latin and another is from Germanic . I dicide to keep a dialy everyday . Please read my dialy . Three days before I found a music video of my favorite groupe on internet ( You tube ) , the Four marionets played Coldplay 's song . The remakable stage effects and stage staff ( marionets ) were interesting to watch . Time goes by so quickly . I remenbered what I was back then . . Nowadays people ca n't live without them if they want to be a part of socicty . It is coverd with honey , sprinkled with nuts , and has added chocolate and acecream ! One professor in my university said he has a favorite foreigh ranguage word too . Developmern of Tea in Taiwan there were a lot of people , many foregnersis there , who played soccer , baseball and badminton . somer is coming : > The picuture in jaoanese books and magazines are of course nice , but But , this is girl onry university . I dushed to the nearby bank to see the fireworks , but I could n't . In fact , I had n't had a computer until I enterd vocational school . When I lived in Korea , I usally ate rice , vegetables , and meat . Why does bad food taste better than healty food ? Becouse the big typhoon is coming . Im have fun . In Kochi , they aer eaten with only solt . I love my friends , who are sadly sufering from a cold . Now , it is arond 3am in Japan . It is raining and I am litening to the sound of the rain through the window . As I pretened to call a policeman , However , alomost all the people in Tokyo live their ordinary lives , like before . I 'm taking a buth now . I sometimes take a buth for a long time ! ! ^ ^ I have pssed the intermidiate interpretation examination in Shanghai last month . Syllabus was well wrietten and the class followed syllabus Professor provided feedback aftet the exam or assignment . I watched English teaching programms hosted by CCTV , Taiwan TV , and read my textbook each morning . And I would never forget a word that I have learned , including the speliing . But I ca n't spell a word quickly , for instance , the word infant I can only take it as a whole instead of as `` I - N - F - A - N - T `` . I can pronounce and write it quikly , though . I think English words are similar to pinyin of Manderine , I am good at pinyin , so it 's easy for me to master English . I never paid any attention to English grammer , but well , it does n't matter . But now , I have been studing Japanese for 5 years and I 've nearly forgot my English . One interesting thing is that I can speak English casually without worring about grammer error , while I am not confident at all when I speak Japanese ; there are always new problems that I encounter and I can not express myself well . Accidently , I found this site and registar here . So I do not do well like everyone . The Summer . . plaes hlep me . . In the summer there is a holyday for schools and univercites in the majority of countries . I fotgot the name of beach though , this is located in La Paz which is in the southern part of California peninsula . It is so peasful like the name s . O shin . . . Japanese serail You can see the clouds and lake strech out below . My major is Accounting , which is a so complex a course for me to stduy , but it pays to work hard in this promising subject . My dog died and I lost my job . My bussness failed and my money run out . She also worked as an intership . Because I thought being a dctor is a great job with good pay and that nobody wants to quit . I will conduct an experiment at a university in Kyoto beginning tommorow , where I will stay for about a week . The first picuture is at Tokyo station . One dog ` s name is YURIA , she 's a podle . One dog ` s name is RIMU , she 's a podle . I decided to write a diary gradualy starting today . I culd n't find good gifts which will make her pleased . This is the first time that I write a diay . I ca n't even glip a pencil . My hobby is playing sports , espicially Basketball . I am on the bus going to the chuch . During the course , we tought them how to make dumplings and chatted with each other I 'm 24 years old and I 'm a systems Enjineer of a securities company . programmer ? and I did excercise with my best effort . when I was finished , I could n't lanugh about myself ^ ^ Thay talked to each other for a while . In recent days , I have not been happy because I quarreled with my boyfheriend . I admit I overdrunk last night but I was still sober . Some even advise me to envest 80 % of my time studying mathematics . As the story is so intersting , I read it quicikly . I thought I wanted to become a warm person like his nighbor . Even if the story is sad , the book was funny and intersting . Later , I want to watch the movie ' The Homelss Student ' too . The students can not swin in their school 's pool in the big city because of the water shortage . The famers have terrible quarrels about water for their rice fields . Althought I have lived here in Taiwan for over 20 years , I still ca n't get used to the hot weather . Althought the temperature there was higher than in Taiwan , the weather in Taiwan is usually hot and humid , which makes me sweaty and uncomfortable all the time . It was July 4th yesterday , the bitheday of America . Becouse I felt dizzy when I drank it . Well , not exacly . To make friends with foreiners , for business purposes , to go abroad . . . . Hello everone If it 's a coinsident , then it 's quite a big one , is n't it ? Adittionaly I will meet my friend at night . I think this main function is to call somebady . While I was riding on the rockin train after that , I remembered what a priest said . He said that they ate many dilicious foods and had a nice time . Today , the introduction of my famiry . I have pearents and brother ( s ) and a dog . Todey was very cold . Afert have a bath , I will go to bed . In Japnan , it will soon be `` tsuyu `` . Now , when I thougt that XiaoBei parted with Haizao XiaoBei felt deep distress because she was not faithful to him . It 's been a long time since I last logined in on Lang - 8 . Great Thank Rabit and King Goodbye Lion My writting is terrible , so I feel stressed / nervous about writting in English . I think speaking is much easyer than writting . The theme of this special number magazine is ' runnning ' , and I 've decided to start to run . Writing is necessary to improve langure So , I will search for anothe plan ! ! Tonight , it is such a beatiful night , the stars are so beatiful . I saw a news report about a soler - powered airplane that can fly using soler power in the daytime and with batteries at night . Several days ago , I had a conversation with a foreign teacher , who comes from Germany and teaches German in my universty . I could n't canceal my excitement at this cummunication , because it was my first time communicating with a foreigner face to face . We just briefly greated each other , and then there was a long silence . The score was 7 - 83 , Japan was completly defeated . ( How should I discribe a person like him ? ) anyway , I 'm still coufused how to use it ? When the climate is wet and really cold , it 's hard for me to wake up earliy . I do n't have enough willpower to study more and more in moring , wasting lot of time . Fortunatily , this week is holiday and I do n't have to attend classes . Their dance and rythm is fascinating to Japanese people . I play the fulte . That makes keep up hope when whatching dreadful stories of the world . I guraduated at a univercity this year , but the ceremony was carried through . It was postponed by infruence of Hukushima 's strong earthquake about 3 months ago . He has just gratuated About 15 minutes in the first half , Paul Scholes was kicked by a danish player and got his knee ( or lingament ) injured . Before I went there , I did n't like studing English . And I like taking picturfes , traveling , eating good food and dreanking , haha Tommorrow , I will look for a new resedence . Due to the specifics of being with the people who are from elementry school to high schoolers , I am supposed to know how to treat them accordingly . There are about ten little kids in my school bus ( mainly , I am in charge of monitering the school bus ) and among them , there is a first grade kid who I have scolded a lot for being loud . Relieved : I 'm reliecer that I obtained the offer for the job . Recentry , I do n't have high motivation . . I wil leave to Tokyo , by JAL at 3 : 50 in the evening . Then , one of my colleagues assend me and appealed that kind of needs When I meet the manager of the HR , he demanded an English interciew . I 'm 24 yaers old . My mother , father , yonger sister , yonger brother and me . For Valentines day I make gateau chocolat every year . So , I like gateau chocolat . Because it is funny and diferent . Red can pretend to be dangeruis and it 's sexy . The whole tasting process was so enjoyable , watching the sparkling champagne in the glasses made me feel living in the high sociaty , although I am not ! Singing Taiwanese songs in KTV makes me high , and I hope tommorw I will have my cell phone number ready for a good hiking trip ! Two of them are on Visual Basic 2010 , the other is on Vicual C + + 2010 . I have programmed in C + + before but I have totally forgotten the specifiation . I want to be an efficiant progammer ! ! and earn more money ! ! I 'm already depressed with my exams , I do n't need to hear that 3 hospitals and 5 Primary schools have been bombarded this morning at Gazaa . When I first came to Taznania , we changed at the rate of 1300 Tsh to the U . I went to a Vegitarian festival in Kyoto with my friends today . It 's not good looking or usuful so far . I used easy word , only present tense , and not complex words ; parfect tence , passive voice because I want to know whether subjects can make relatice clauses or not . How do you studay language ? It 's a software to memorize woards and phrases efficiently . Are you good at memorizng new vocabulary items ? It 's not surprising that we forget our memoly Please tyr this method if you would like to study new language eficiently . You can surely memorize meny new words ! But my family had trouble , so I had to solve the problem immediatelly . It has been ten days since the Chinese Lunor New Year . Now I have a lots of great photos that me and my friends took yesturday and today . The next time I 'll see her is in the summerday . In my opinion we have argument between secrity and the risk against [ urasite ] of each school . I have never serch it and also read , so I am not sure how [ ura site ] is but it seems that student write about other student 's bad point or something hurts others . Moibes could be very useful to prevent the crime from children . If my freind has time , we 'll play catch ball or whatch games . If you are the one of people who lent me a hand on my survey , I really appriciate it . In the end , she sent me some useful resouces about the theme by e - mail . Today , I had three classes ; English , Japanese and Chainese . Besause it was the weekend today , many people visited . Because all of the emploee are kind and happy . Sometimes foreigh people go there . American , Korea , and Chainese people . And I also attended the Chinise classes in my Company . Yesterday , I had a class titled `` perfect pronounciation `` at the university . We learn the North American English prononciation in the class . Michael Scofeild . Like other girls , I was meant to be a fan of Michael Scofeild . Anyway , I looked up on the internet about Wentworth Miller hoping that he is really a person who is like Michael scofeild in Prison Break . When I was a junior high school sutudent , I went to Kyoto . As I 'm interested in Japanese history , espesially the `` Shinsengumi `` , I want to go places that have a connection with the `` Shinsengumi `` . People do n't look interested in a naked artist performing on the street , a group of tap dancing people or a movie filming location with a lot of famous acters . Their birthday is tommorow . I 'm looking forward to tommorow . When I pay , I foud that I have 4000 yen . There are buautiful flowers here . However , it was luckey we was able to meet one of the customers and tried to make him purchase our product . So I can not understand the actions of the sea chepherd . Although the decrease in conversation is a very serious matter , the number of such families habe increased . The holliday is celebrated every year on 1 September since 1984 . I am not a student for 9 years already , but I have never forgotten this holliday ! So now I need a good envirenment for me to learn . I will wach it again when I go back to Japan . I 'm studying Engrish and Chinese . Our teather asks us several questions . When I looked around on the way to the school , cars were stacked , and strees were filled with people . To make matters worse , evrybody was walking very slowly like a turtle . English is my second language and I have been having a hard time getting Canadian profesional accredetation in order to practice nursing here in Canada . Although she always made out with her hasband , she ca n't speak English that well . doom : The criminer was doomed to get the chair . We Chinese can not log into SNS websites such as Facebook and twetter . We can just lives under the `` ummbralla `` I made handmame BBQ sauce today . It contained soi sauce , garlic , sesame seeds , sesame oil , and suger . Inside of it there were 3 motours and metal frames , This Exhibition is called `` Interior Life Style Exhibition `` in Japan . It is done onec a year . She told me about her friends who went to america to work and tranvel and take care of the childrean in the usa for one year . A pack of cigarrete is expensive , is n't it ? ! I swear , I will never smoke cigarrete . So I will have to study hard from tommorrow . Hi all . This is my first time posting something in English . I 'm from Moldova ( If you know where that is . ) Soon I will imigrate with my family to Canada ( My father , mother and sister . ) So Girls , I 'm free . ^ _ ^ . . Today , my father will cook Okonomiyaki for dinner , whici is a Japanese style pizza , for the first time in a long while . I am going to keep waching CNN somehow , although I ca n't completely understand what they say . . One of my hobbies is playing the guiter . I 'm learning Japanese but now I 'm just a begginer . So that 's why I chose the 5 - fingered socks as his bithday present . I held a drink party for my friend who will get married this Octorber . I hope for their happiess . Yesterday , my friend told me about Lsng - 8 . Sometimes I pretend I 'm one of the charactor and say their lines . Mabybe I just have no feeling , no spirit , no inspiration to write an English journal entry , I do n't know . This evening I got the news about a volcano on Monnt Kirishima in Japan ! but when I take her for a walk , she is so crzay ! I wanna sky jump and bungee jump and go surffing before I die . but I 'm a little chikin , can I really do them ? by the way , during 2nd perod , I went to a tiring progress of education class . It had English languge for the details . Then I checked it , and Insite of the idary there was a story from someone . I was really excited and kept reading the diary . Then I saw many pictures from him that were insite the box and a card that said `` Happy brithday Noy . `` ^ _ _ _ _ _ ^ Ohh my , that was the frist prasent I got . insite it was written something such as `` I hope it will reach you before your brithday . `` Then my mouth opened and fanally smiled and I said to myself `` Thank you , my wonderful from Lang - 8 . `` I want to write about one of my favorite series Desperate Housewives . It tells about their life , their husbands , their children and relations with their neighbors . I woke up at 7 o ' clock , and then I washed my clouthe . It cotinues from June to July . I wonder why there is no rainy season in Hottkaido . I hope to go to Hottkaido during this season . We enjoed it . I found the Penguine Readers books in my town 's library today . She is so frinedly and nice . The visible air polution reflects certain wavelengths of sunlight back into space and this weakens the effect of visible air pollution on the earth . I think I 'm going to go to the libraly later ( today ) . What I do is I first check my library , and then only if thay don ` t have what I want , I 'll think about whether to buy it or not . I like shooting games , some of them are violens , but I never want to kill people . also I do n't think I 'm atupid . Movies , books , TV dramas , thoes entertaiments have some violence , but adults judge only video games that are not educational . And do you think violance expressions make us obscene ? And surpriseingly , when I went out to drink some days ago , all of my friends said `` Wow , are you on diet ? `` OJT wa tanoshii katta ( The OJT was fun ) Watashi no Jikan de hiragana wo benkyou imasu ( I was wasting my time by studying hiragana ) Hello . Starting from this week , I 'll be writing a bolog . By the way , I decided ( descided ) to write a diary EVERYDAY ! My condition consists of phisical and mental something . Maybe we can excahage opinions ! If you want to make freind , let me know ! In the futuer , I want to write about my hobbies and music . Now Japan has queke and radiation problems , so yeaterday 's concert was held for charity . Women 's final of the Wimbledon chanpionship tennis tournament will start at 22 : 00 Japan time . He is going to Kouchi Prefecture today . I 'm going to meet some friends and have dinnar with them . In the congress , 7 minutes of presentation and 3 minitues of guestion time is allowed for each presenter . What a wonderful food name XD Has anyone aten it before ? Today is holyday work . I went to the office in Tokyou by Shinkansen ( bullet train ) . If it 's right , does this sentence , `` Bob does n't like you very much . `` exist grammartically ? I wantto them to overcome the pressure and win the next game as well . We went to Palece of Verailles , the Louvre Museum and Mont - Saint - Michel . We went to chateau and took part in Marason . Weather forecast says it wll snow till midnight . Have a good weeken I think I will go to shopping and look arond the market . I would like to buy a new magnet . There are a lot of stores in the weeken market . I hope you have a good weeken . Her school has a cafetera , but underclass students tend to bring their own lunch boxes . I like incestigate blood types . The result was n't bad bcause my score was fifty points higher than last exam . I think that the closhs which are sold in the shops at daikanyama are somewhat more expensive than in other shops . I think it is good for me to inproved my English . My Enlish is so poor ! It was a windy day in Tokyo yesterday and the day bfore yesterday as well . Our country have been inviting soldiers fom many years ago , but they areonly a handful ofthem . Whould you check my English sentenes , pelease ? I am confident that if you pratice Korean with me , you will have progress . And I forgote my umbrella . I have a friend who is very populur with men . It 's complately obvious that he is into her . ( His behavor is better ? ? ? ? ) Firstly , Let me introduse myself . Our tennis team prastices almost everyday . calligraphy is defficult , but it 's a lots of fun . However , I wrote not only my insistense but also my gratitude to them in it . We would just simply conect to the Internet . My major is archtecture . I coul n't figure out why because he never told me how he felt . because the wather was bad . Today 's schedule includes ethics , mathmatics ( logarithrm ) , Korean history , mathmatics ( matrix ) , Korean literature ( poetry ) , and Korean geography and self - teaching . When you were a student , what was your faverite subject ? Also , I 've been searching for a Japanese lunguage school abroad . I hurtmy finger when I was making dineer . Halloween is not as familiar in Japan coparing to other countries . This neckllas was made by me . A Church is in fact a place where people who admit that they are sinners ghether . He sucrificed himself for me . I hope I 'll be able to visit there somoday ! 2 ) that the modern youth are so silly / perversive / just awful etc . It 's complicated to judje though . But when I looked at the tables after the costomers had left , there were so much leftovers as if some of the dish were left untouched . But sometimes I see costomers who order a lot of food and only eat a little of each dish . Food should n't be wasted , and both costomers and shops need to consider this problem . So I moved a littel to give them some space . I tried writing what I 'll talka about in an interview . The senteces below are ones that I made for small talk before having the actual interview with my job interviewr . even though I lived in Australia for 1 year , my Englsih is not perfect . I 'm doing better at Englsih than I ever have before . ( Frankly speaking , I used to say this expression like `` I 'm getting better in Englsih . but some good firend on this site corrected it ) . In Februar 2010 I bought a new one . I 've rea that this grease is cool , because it 'll cause sand and other things to not stick to the chain . Againyesterday I read the label on the grease and . . . I used it as was wrotten in the manual and it works . and it was my first time to hike with a bike and also my first time to be on the top of the vaolcano . The crater was just in front of us , it was amazing . So the result may not be too much valueable . I wonder why I do n't like the feeling of the upcoming Valentine 's Day , maybe the reason why I dislike the day is becauce Im 'm single , and have n't celebrated with anyone yet . some guy told me that I 'm too picky , and my expection were too high , but that was not true . I have to be patient to wait for my prince , the one that may not look good but has the responsibility to build up our relationship , the relationship that I 'm looking for is one where we understand each other , and no mather happend we can forgive each other . It was cloudy and raindy . This was a good oppotunity to improve our relashionship . Please could you correct my sentenses ? Adress : I live at Sunter Jakarta Utara street ( , ) Agung Perkasa 1 Blo ( c ) k J 4 And with futsal untill now I 've made a lot of friends . So I have to learn at least two languege . However , the decorations were totally well done ( they must have spent a lot of money ) and there were some big actors like Meryl Streep and Dastin Hoffman playing small roles in it . Many cherry blossoms were in full bllom and many people were walking and playing . Why does the govermment hold these flower activities in the fall ? My vishon Someday , I would like to go abroad for buiseness . I 'd like to make some sentenses to using these below ; If we went shopping together , I would n't go well - known luxuary brand shops with her . I know [ that ] , we shoud n't go there . I thought , `` This schoool is suspicious . `` It 's an honor for me to meet you on this webcites . The referense is below . At the same time , anoteh roommate said : `` Teachers ' Day is on September 20 , is n't it ? `` This time I could n't help but laughed . She has been living in Japan and can speak almost fruently . they were considring only buying one bottle of whiskey . Forunatelly I got a chance to study at a university in northern England from February to June of this year . ( In other words , the spring semester for 2007 / 2008 ) . But I saw a good site at my offce . I have n't met anyone in this apartment but I 'm looking forward to meeting inhabitans . Today I watched sequences from Mubarek 's trial ( ex - president of Egypt ) . I saw in old Egyptian movies that they put the accused in a cage , but I thought it was an exageration for dramatic purposes or it was only used in the past . I was wondering how he managed to remember who was representing who in that chaos ; lawyers and attornies were scrambling in the front . He asked in an angry voice for everyone to sit , and they moved slowely as if they did n't want to . Even though we do n't know the correct pronounciation in English , we can still type English words . So I guess it was a good desidion for me . Through traveling , we can learn to cherich everything that we have and encourage ourselves to work harder . When I took a buth , it smarted . These places disply a slice of traditional Korean life for both domestic and foreign tourists . Also , the Korean folk villages showcase the ancient techiniques of making pottery , baskets and insrument . But I want to recommand this place for foreign tourists who plan to visit Korea soon . When I was a junior high school stundent , I belonged to a basketball clud and I enjoyed playing games . After we got a new coarch , my club won the first game . new coarch , `` Thank you for coarching us . `` He said that our club It was important to have a good coarch to become betther . My mother is growing some harbs in my home garden . My favorite is Caffarel whichi is a famous Italian chocolate . Today is my birtyday . becouse I have many bad days When I met him for the fiirst time , I did n't know . Okinawan poeple do not have a good image about the American military . I thought he had not forgotten about hes exx - girlfriend and still loved her . So we became a firend . Shoul there be more government control of the Internet ? Some people say the goverment should reinforce control of the Internet . The goverment fears that in other countries the public can easily share information and in the end this may lead to political upheavals . Nevertheless , some people argue that the need of goverment control is to prevent frawds from using the Internet . But most people know how Internet frawd is and are more cautious than before . Hallo , I 'm Kana . recentry I 've begun reading a book by H . I want it to be like programming other computer langages very much . Today , I had three courses to take , but , after taking just one course , I must go home because I hitted my hip while stepping down on the floor . They are sooo sweet and jucie . I ca n't belive that I have an acne problem now . I 'm bummber out from trying to find a way to lose it . What does ' twist of lemen ' mean ? that 's because I do n't know when I can use ' be awre to ' It seems as if we have shared this bad conditon . My first food was scrumble eggs . I took Jyoban line from Ueno station to Katsuta Staion . It seemed to be close to the Kitasenjyu station . He was n't intersted in Tokyo skytree but Jyoban line . c especially funk musc ! My father is indefferent towards money . I should go to univercity now . the TV seid , BANH MI is the top favorite food in NY . of couse , sometimes I need to wear a swetsuit if I enjoy free diving or swimming in the ocean for more than an hour . A shark is bihind you ! ! In that picture , a shark was bihind a man ! ! It is so scarry . . . Hi everyone : ) My name is Arisa . I 'm planning to go back to there again really soon to work on my undergraduate deproma , and get a job there . Anyway , I congraturated him on his wedding and then I went to take a computer exam . MOS is an exam which tests my ability to process office programs ! I made some sentense . I went to the university library in order to stuby for final exams . to tell the truth , I have written an Enjlish diary before . . but I broak down . What do you wnat me to do ? ( We prefer conveyor - belt sushi restaurants to classical sushi bars , because it is less expensive and has an inviting atomosphere . ) But , unfortunatelly , I failed to take pictures since my camera had run out of power . 4 , Click `` Upldate `` button , and that 's it . Their expressed policies in the manifesto are as follows : The government subsidyzes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . I 'm so glad to jion you , a platform from which to communicate with friends all over the world and improve together . Their songs and consert are very powerful . Meals are also more expensive than it was before Spring Fastival . When my classmates asked me about how my spring break was , my ansawr was homework , writing , writing , homework , and homework and writing . Forth , I ever chat with one guy in a QQ group who ignored me after I talked only a few words to him dued to my bad English . With my hardwork in this passing days , I could veiw the progress of my english . From now on , I will strike while the iron is hot to further my Englsih study . The snow masks the top of the moutain , even when the sky is clear . There 's been so much news about Google in the last two days , since Google indicated it 's considerring closing its business in mainland China . Philippine advanture I am learning how to survive in the Philippone now because the people and enviroment here is so different campared to Taiwan 's . Every jeepney on the roads has a different appearance and I guess they are all decoreated by their drivers , some are really cool . If the jeepney is full , the other passengers will stand outside the jeepney hodding someting ( ? ) to make them steady , would you dare do so ? As a result , the heavy traffic pollutes the air terriblely . Foos here is sweeter and there are few vegetables . My mom has 3 bothers and sistrers , and all their family will come back to spend New Year togehter . They do n't know how to talk gentaly and I always just feel so umcomfortable and try to escape them . Althoug we are good freinds , but I still think it 's embrassing to show her my room . That made her sick eventully . Some students told me they want to come to watch the bee fireworks when it 's latern festival . teachers told me that writing a diary in English everyday helps you make sence . but I 've never tryied that before . Once you experience a striking event that affects youf , you can not help feeling this kind of event will happen again . around you thinks you to be less attractive and even to be ugry even thouh it 's not true . I assume almost everyone has exrerienced a similar feeling and realized `` I can not live that way , I wo n't give a hoot no matter how badly I climbed the tower and I had a beatiful view from the tower ! ! I found tenkaippin nooodle shop in Ebisu Tokyo . While I was trying to build a fire , my daughter was playing around and searching for wildlives . Of course she relieased them before we left . This day is devoted to the memory of millions of Jews killed during Sevond World War . We do n't have TV today and all public entertaiment places are closed . I tried to make plans on friaday , but it did n't work out haha becuase we dropped by taco shop . A Magnificant and gorgeous view greeted me , and I said `` hello `` . And I saw the mension ( ? ) of the owner of Ralph 's grocery store , and we went to a friend 's house to eat burritos ( ? ) ! However , as we chiled out and laid back on the sofa , they did n't want to attent the party . This afternoon , I suddsenly remembered my Lang - 8 's diary when I sat in front of my computer . There are some cities with over 1 million habitants . This is a happly fact . But , I think the most popular and usuful language is English . it 's really usefull . A : I do n't agree with this idea , but actualy , it is important for young people to learn English for jobs , licenses , and so on . In other proglams , she will take part in a footrace , a dance and the race in which all the students roll over big balls for about one meter . Her grandfather and mather will come to see it . It is a very intresting position . I wish every dream of yours comes ture . Becouse my univercity 's English courses do n't include speaking and writing . I hope summer wil come soon ! : D It was during bastet ball . We 'll Meet Again : The Most Beautiful Scene in All Movies about Neclear Weapons Tomorrow is Surterday but I am writing a test . . . but I was very nurvese because I had to play with many good musicians . I hope to meet a lot of friedns and have a great time with you here ! . My bad habbits I have some bad habbits . But recently I have been trying to fix my bad habbits . When he meets me , he always smily . Contect lenses The economy still has n't recovered since the Lefman Shock and we unfortunately have had a terrible earthquake and nuclear accident . I was suprised to see a juniour high school student ! I bought underwear and accesories at h & m . all the dishes taste very dood ! ! It was a pretly good day : ) Unfortunatry my university curriculum did not include English courses , so my English ability has not improved at all . However , nowday I feel there is a necesarity of studying English whether I like it or not . nowday , English is a mucual lungage to be used to discuse . There are a lot of turist from all over the world . But I like not onry Japanese culture but also the cultures of many countries . You know , it 's a kind of notebook in which I write my favourite recipies . Of course , one which is made baced on Chinese geomancy ( feng shui ) . However , I can nt stand the train rush hour anymore ! ! ( could n't ) You may feel thatyour ribs are nearly broken , or that you nearly lost all your sensus from the oppressive feeling / strain on your chest . Actually I 've heard that there are alos severe traffic jams on the road among commuters in the morning in some countries , so I dont know which is more stressful - a crowded train or morning trafic jam . Now , I tortally enjoy managing the club . I am always thinking about how I can implove our team . They are a wish for especially boys to climing higher and higher or rise up and up in their lives like a carp . They will collect 1000 charity bags into which are put various things , such as stationaies , toys , animal dolls , books , candy , cookies , sweets and so on . She said to me , `` I like Japan and Japanese people , so I will stay , even though 90 % of my friends have returned to thier home countries now . `` That was in March . But , strangely enough , I can naturaly wake up at the same time as before . Few days ago I luckily met Andy on the Internet , he is also involved in the mentoring program , as a mentee . Can I have him be my mentee , if it is convenient ? At the break time , my class mate gave me a sandich and I ate it . After school my classmate and I went to a foodcoat and we chose Indian food . But after the last election held this August , the LDP failed to continue as the ruling party , and gave way to the LPJ . I worked in a Japanese restrant for four years as a waiter and cook . It gave me a strong sence of responsibility and helped me learn the importance of communication . Would you teach me correct English , ( space ) if it is not too much troule ? When I went into the shop , I was surprised by their manu and atmosphere . But it 's difficulut to make them by myself . It 's been a while since I have logged on to Lang - 8 to write a diray . Japaense SNS `` mixi `` But these days , many mixi users have stopped using it , and moved to `` Twiter `` . I am now having a plan to study aborad in Britain , so I have been to an english cram school for a couple weeks , but it 's hard for me to improve my weakness . The romm is packed with people . If you eat too muh , you wll pack on some pounds . English clss He always talks with `` Thank you `` `` That 's fine . `` , `` Good `` , And he 's very fasionable guy . The last perosn is Barney ! He is teaching about how to conversate well . We had pizza while conversationing with other freely . It was my fiirst time talking with a guy ( ! ) in a coffee shop ! Please check if my writing is corrrect or not . Rencently , I 'm crazy about ' gossip girl ' - an American series . Love , sex , scandal and framing are the hot points of their life , endlessly and addictedly . The complicated love game and expensive fashion of the show acctracted many people 's eyes including mine . I think that 's the reson why this serise is so popular with people all over the world . I think my presentaion was not good enough beacuse I was too nervous ! ! But I 've decided that I will go aborad next year ! ! ! ! ! ! I want to write eassay . Now I found this site and start to write English dialy . I decided to send a text massage in English as soon as possible for studing English . I tried to spand time with my son on the weekand . But , I had such a hard day on the weekand , so quite a few tourlists come here from abroad . oh my godness . . . . . I graetly appreciated Samgoht 's review . So I still went to the `` International business negotiation calss `` . It is the most chanlleging part for me . I felt a little bit embrassed at being incapable of performing as well as them , so I seldom speak in the class . They all agrred on my terms and it made me feel so good . My ( self ) selfintroduction . Since I was hoping that Tokyo would be elected as the next place of the Olympics , I was disapointed by this election . Olympic is the most popolar sports ceremony . and I want to wacth this event directly . They offten wake up early , and go to sleep late , which me feel challenge around . is somewhat unbearable . However , the most depressing thing is I might move to a new compus with my classmates that is far from the city center , far from my girlfriend , far from my love . I have no choice but to try a long distance love . He is a very dependable worker , and the boss will promote him to supervisior in the furture . It was a J - leage match in which Sanfrecce Hiroshima ( our home team ) fought agaist Jubiro Iwata , and they 're going to fight in the final of Nabisco Cup in Nobember . ^ ^ The result of the game was a tie but they needed to win ( ? ) to move up near the top rank in the leage . Now I 'm making up my portfolio for my . job - hanting . I found sometnig in front of us I was suprised that 5 chikens were wlaking My fiend said , They sometimes apper and I thought that this movie was a commedy . because the aliens and humans were gambling and buying and selling meat and catfood food . connect with last sentence to do walking instead of runnning to keep fit . prepared dinner with my mather . Usually people are afriad about the future or the past . When you live in a foreign country and get a cold or virus , I 'm sure you feel more lonly than you would in your own country . I just started using Lang - 8 becorse my English is getting worse . I had been studying Korean lingustics in Korea My photolog blog 's text OK , A little about myself , I am 22 , I like music ( Leona Lewis is my love ) , sometimes I play the guita , but I am really not good at it because my hands are so small that I ca n't hold the string correctly . Although , when you want to have something you should try to be consistant and learn to love it , right ? I 'm a Japanese web programmer that is studying English . I want to talk with people of a foreing country during a trip . How can he remenber people 's faces ? I 'm going to go on a business trip to Nagoya city to attend an exibition about dental techniques . I 'm going to go to Germany and France during the Cristmas holidays . I want to see the cristmas market in Germany and go to Paris . Actually , the stitnt at my current job has been shortened . It means mountain girl , yama equall to mountain in Japanese . They wear colorful sports clthes and with pretty bags and shoes . Of cource I have climbed the highest mountain in Japan , Mt . Anyway I ca n't recomend climbing mountains in the summer . I ofen felt thrilled and could enjoy those all . Actualy , I have a sleep disturbance . This sicness is called `` Periodische Schlafsucht `` . Drowsiness makes me embarrasse . The doctor gave me some medicin . It seems to complate the recovery , usually by the age of 30 . The next day was a long - trip day . We traveled to places as many as we could : Tian ' anmen Square , Summer Palace , Wangfujing Street , etc . We took lots of pictures , especially at Summer Palace . It was definitly a nice place in Spring ; the warm soft air blew , the green mountains appeared to be tumble masses , the lake lay smooth and clear , and everywhere in it was a fantastic picture . You would feel relaxed and happy . However , there was one thing I did n't like - there were too many people there , people people people . . . A consultantant I saw yesterday told me that he painted pictures for fun and sometimes put his components in exhibits . He also * said he should have painted ealier . What is the diffrent ? I want to go abroad on business near future , so I neet to work hardto learn English . I went to karaoke with my firend ! I went to an Indian style restrant with my new friend . her manners wes really bad . She was extremely inpolite to the salesclerk . When I was a univercity student , I was a part time salesclerk . I used to seeing inpolite attitudes . I felt bad for salesclerks all over the warld . BGM `` Natural Beauty `` Kimi ha tennnennsyok puburished 1981 This CM was boadcasted in the Summer of 2004 . Stress makes me inflexable . My enegy is being decreased more and more . I want to go to Vennice with my friend . and then visit Vennice . Classics makes great effect on our life because they can teach us how to confrim our aim and they can help us figure out things that we must hold , they can tell us what words are the most beautiful and make us feel happay , when we are reading classics . First , in the modern times , people have more and more work to do , so they hav n't any time to read books . Can I meet Arnold Alois Schwarzenegger ? LOL I feel nourvous now , but I 'm looking forward to going there anyway ! : ) I spend most of my time ( conscious and conscioius time ) in the library . I decided to get some excercise every day or every week to be healthy for my family . The movie makes me feel `` disgusting , rediculous , warm , and suprise `` at the same time ! I was reading The Guardian this morning , trying to find some interresting news when I ran into this subject : URL I think we 'll get recover from this situation soon and wish for the peope in Miyagi and Fukushima a better life and peace . Today , I went to `` Shionoe `` with my garlfriend by motorcycle . The Amego was good tasut . At this moment , there might be many peaple wracked by violence . I think a person who is not suticefied with their life is usually violent to relieve their bad feelings . `` He loves snowbording `` was in front of this sentence . `` That `` in this sentence points to snowboridng . Can I say `` It 's righ up my way `` ? Some people think it would be a good idea for schoolc to teach every young person how to be a good parent . The class may touch on the parents ' difficutlies and the students can understand the tough situation . I do n't know the reazon . The reason why I agree that meats are better than fishses are as follow : There are many trees near my place , and lots of cicadas are singing from early mornig till * midnight . I am goint on a vacation tomorrow . I liked ' Romance ' songed by Yoon Sang Hyun and Yoon Eun Hye . And also liked `` I Love You `` songed by Narsha . For example many goods shown on comptur screen are n't what you actually get . Today , I read an interesting arricle in the newspaper . Ten years ago , NY was number one , , the second was LA , and the third was Bankok . About my Hobbie My hobbei is snowboarding ( ^ ^ ) But I did it only once when I was fifteen . I belong to the snowboard cirkle with my high school friends . I went to a snowboard goods autlet on this weekend . I boghut gear . Hello , this is my firts post here . I want to use English fluentry . Preachig is dfficult . Lately , I often listen to the CD `` Rythm Nation 1814 `` by Janet Jackson . I endeavor to deal with this promblem . 2 . I rndeavored to get good marks in the mid term exams . I had to haurry to I 'm going to th hospital But , I know I have to study basic grammers and words . This book does n't have a lot of sentences that explain grammers and words . At leaset its possible to buy it this year . So it is a helthy fruit . Because of the break down , there are some unconvinient situations . Because of lack of electricity , some things are unconvinient for the uneventful people like me , but I 'm afraid for the people who live in the north east part and the people who depends on medical insutruments which needs constant electricity . I thaught `` who moved my cheese ? I wonder what this means . . ? `` Then I read it but . . . it was not interesting . Yesterday , I watched the movie `` Hally Potter and deathly hallows `` . I have watched Hally Potter movies released before this , I enjoyed this movie . I am looking forward to waching partv2 of Hally Potter and deathly hallows . at 8 : 30am on August 61945 the first nucler bomb was launched on hieroshima city in japan . The poeple did n't know what happened , The light turn to darkness and the poeple who were under the bomb disappearedlike sand . How it is go with wind I was hear about hiroshima bomb but when you hear about thing it does n't like when you see it Radiation from the atomic bomb chenge the human body and DNA of those that were not born yet . Perhaps I am a lazsy girl . Lately my daily rutine start with Starbucks 's black iced coffee with sugar but no cream . The first one is a picture from a megazine . Second and thrid are captured pictures from Um 's MV . My favorite foods I usually eat bagle with ice cream and syrup for lunch , and I 'm going to do some streching tonight . I 've been getting up at unregular times latley Pleasse tell me your favorite book , will you ? she did n't understand that thire pics showed the same person . Worst of all , grammer is very difiicult . I like him , but comunication is very difficult . I was pretty hungry , so I oder extra large portion . `` Everything 's gon na be alrigh `` is a song that I like very much . This advice carries out my thoughs . If my mother deleted my facebook ID or Game ID of High level , I would not panic but instead quell my anger by writing something , but I ca n't do anything like him . ( but it 's so funny haha . ) I thought getting furious differs between individuals wathcing it . When I was in International school , I met many forigners and one of the things we talked about was marriage . The writer said that Japanse education is based on the national isolation policies ( ? ) of the Tokugawa Era . It means that Japanse education is affected by Japan 's isolation . But he did n't come anytime , so I coud n't see him . Yesterday , I had lunch with a collegue . She majors in vilin . She played the vilin to a piano accompaniment . For the concert my friend practiced the vilin day and night . This is my second time working as a pormter girl . When I took her to find service personnel , no body could help her because thet could n't speak English . There was an earthquake in Christchurch , so my mang friends worry I never feel flightened . I wolud like to learn how to write English good and to make some good friends . One week has passed sice I came to this farm . I 've been enjoying taking care of the ducks althoug it has been the first time because they are really cute . Wedding / marreid ceremony I met a Japanese guy who looked abouut 40 years old , and 20 years ago lived in the U . I think it is the happiest thing for children and young people to receive `` red papper `` from their elders . The tobacco association publishes that tobacco sales will be down by 25 percnts . It is a shame that even my English teacher 's English pronnunciation was very bad . The doctor suggeted to me that swimming is better than jogging for my injured ankel . On `` my `` way there , I stopped by `` a `` well - known ragmen shop . I spent 10 hours from Taipei to San Franscisco , and I stayed there for one night . I clearned my house and aired a futon . Like Harry Potter or Daniella Steel or Candace Bushnell . Internet shops offer more opportunities but all the books I really want are very expensive , nevetheless sometimes I can find something not crazy expensive and interesting there and buy books this way . I would like to make freds and practice English here . Does it depend on the situaton ? The Beatles are very famous in Japan and I 'm one of their funs . Anyway , the Beatles song that I like best is `` The Long and Windin Road . `` My favarite time is watching TV while eating side dishes and drinks . Android by google . These phones are the best in technology and have wifi , gps , 3g conexion and more . I 'm really interested in that . Also I likecameras with high resolution and a good flash most . I really take a lot of photos everywhere / wherever I go . Well that 's all for the moment but if someone has one of these phones then please tell me your experiencies with it . Morover , I only bought it about a month ago . I hope I can enjoy the rest of life here and the experience thet I got here would be helpful for my life . There are so many adults , thoughts of people tend to complication , sometimes , you do things unintentional , but it 's seems that you 're on purpose for others ; and then , you will ( see ) jalousy from girl 's eyes , do n't dare look into their eye , so cold , unfriendly . * * * * A Singaporian blogger on Naver , the No . 1 Korean search engine , introduced this site on her blog and I wanted to see how it works . There is an old saying in China , `` Trip to China 's five great mountains render trips to other mountains unneccessary , and a trip to Huangshan ( the Yellow Mountain ) renders trips to the five great mountains unneccessary . `` by Xu Xiake , a famous ancient geologist . Another famous scenic spot is the Guest - Greeting Pine , people usually wait there to take photos of a tree so vivid it looks like it 's saying hello to the tuorist . However , no matter how many companies I appied for , I haven ' t I go to the caligraphy school every Saturday . It was so deliious . But , I theatened ( worried ) that I gave them too much information about it beforehand . From what I have heard , some people say that movies will definitely be eliminated because they are old - fationed while other people say movies will exist until doomday . Big misundersanding concerning `` about `` by Japanese people ? Although I can write only short sentenses , please correct my entries strictly . If you woud like to learn Japanese , let 's learn each other 's languages together . Soon I found out that all its feathers were wetten by the rain . The movie was about the end of the world caused by the sun 's radition . I 'm a Chinese giri . In addition , I have learned a Geman word `` Hallo `` . Today , the traditional New Year event is being hled in my town . But it 's Alril already . I do n't know exactly who his first owner was . But when the original owner was about to abbandon him at a children 's playground around his apartment because he was so naughty my grandmom saw him and she asked the owner to take the puppy to my home and feed the poor one , he lived along time with us , but I 'm affraid he could have lived longer . I still belive some animals are better than humans . Although I hate skipping an appointment to chat with my Skyp friends without sending any message , I skipped four appointments today . gread closed But , many students in our gread were absent from school . So our gread was decided to be closed . I hve to learn more about how to use it ! MT stands for merbership training and it 's a time when a group of frinds take off for a quickly overnighter . I love this fantastic story / movie because of its beatiful images / cinematics and its cute charactors . They are ' Yae - zakura ' cherry trees and are of a differnt variety from the cherry trees , which bloomed at the begining of April . It was clair and bleu . In their mind , English is storongly associated with taking tests . Since globalization keeps going on , we Japanese have to improve our ability to communicate with people from different countries more or someday we 'll be left behind from other coutries such as Korea or China . Bassiclly I 've been depressed recently because some of my friends are going back to their countries soon . I saied thank you and good bye to him and went home . He was deppressed and unusual . Today we are having a forum about the reaerches that my lab conducting ! I will be back at Lang8 tonight if I am not exausted ! After graduattion , I will go back to Japan to be a teacher at a high school The reason why I feel so is that Japan is a homegenious coutnry , to make them broden their horizons I know that this story is a little naive ( I mean the BBC serial ) , but I like it mostly for wonderful music , costums ( Morgana 's dresses are extraordinary ) and pictures . The strong advantage of the book is the author 's orginal point of view on the `` old religion `` involving the Great Goddess , magic etc . and her dissapointment about Christians who does n't understand that `` All gods are one God `` . I am rading a book entitled , `` The Presentation On Secrets of Steve Jobs I will write a report and do a presentation on the book next manth . So I made an alubum for him . Fourth , I have a plan that I go camp with volunteer group , But there are n't many adult so I 'm worring if `` We can care about children perfectly `` . . . Obama 's inauquration speech I 've heard Obama 's inauquration speech by tube ( web - site ) today . I reseigned from my job last month and will work in NYC from Dec . 31 , 2010 . I like surffing , running in the early morning and going to musicals . Who can deny the cuuteness of the muppets on the children 's TV show Sesame Street ? If a waiter like him was exsist in the real world , it would really disturbing . And this will make your life brighter , I promiss ! Do n't ask me why , but she told me that we had to investigate cellor phones in Japan . Plese look at the picture . In fact , the boss was almost ready to make the dicision to expel her . One thing I really want to say , especially to teenagers , is that , please do n't hasitate to tell the boss the truth if Unfortunately , the whather was bad while I was in Taiwan . We actually concede that & nbsp ; it is n't a smart thing to try to keep this relationship after our saparating since we do n't have any actual plans to meet each other . I knew that this was going to happen the day he leaves this country from the beginnig of our realationship . & nbsp ; It does n't mean that I can handle this . Today , I will go to IKEA to buy my TV - boad . and I felt excited to see someond 's correction . Yeasterday there were just 6 people . . . It was conspicuous becuase my hometown only has few buildings . . A New Year 's paty was held . We drink alchool until midnight every night . : Colse your eyes , otherwise , you would n't see anything . A firefly was flying as higt as the roof . If they come agian , I 'd like to teach them Korean games . Recentry , I saw a lady wearing make up in the train . But many pepole cry over naughtiness of young people . All day , I was under the sun , I might get sunbernt . I saw a lot of sheep , and took photograhs . As for me , it 's unlogical to celebrate Christmas on this day , because originally Christmas was related to the Winter Solstice . it is an amezing drama : ) I regretted that I had watched it too early . I want to wacth it for fun and studying listening in English . I love English , but I am not good at writing essey in English . In fact I guess I might not sound too modest but I think I 'm fairly good in English , good enough to sunstain basically every type of conversation . I thought it drilled so deep into the soil that it had to be close to the center of the Earth by now . Monsters were coming out of the hole in the groud that the machine was drilling into . I used lettuse , tomato , onion , cheese , fried egg , bacon and a burger of course this time , and made the sauce a bit sweeter which was little more luxurious than last time . I went with some friends and that did not cost so much because one friend of mine gave me his ticket and so I flyed for free . My jac - o ' - lantern has two faces , funny and scared . I will take a white handkerchief from my poket and signal with it by waving . So diffecult . The video was about a person who tried to play bumkijum in the river where there has got cockodie inside . Frist , I saw this and not sure whether is a fack video or not , but I thought the man who did it should have ben eatten by crocodile or got a little hurt . Today I have finally rcoverd completely . Even thoght I know that walking is good for health , I prefer `` Gran Trino `` , with its lingering depth , over `` Hereafter `` . The AA English conversation club menbers came to the party . If an enemy came in front of me now , I would just want to say : `` Do n't look down on me . I wll knock your head off ! `` & nbsp ; To achieve a breakthrough on the Global Finaicial Crisis . My kindergarten was attaached to a temple . But we have many teachers and when they started teaching us they start teaching the same tching over and over . In efect , we can not speak English at all . I ran ten kilometers up along the mountain and then down the other side for another ten kilometers . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide opend view makes me feel freed from everything . If your native laguage is not English , do you remember your first English class ? I was so excited when my frist English class was about to begin . After surfed the net for a while , I got hungry and made myself spaghetty . Altough I do n't quite understand what the movie is all about . This actually happend 4 months ago I cried again and again and finaly my boss answerd me ! I am a student of the dept . of commce management . For example , my friends are from Okinawa , Hukuoka , Oosaka , Kyoto , and Sendai etc . . . And also , there are a lot of foriegn students from all over the world . It is the greatest thing in my life that I can meet many people who come from diffrent places ! On Novenber 2nd and 3rd , there was a festival at my university . The bad thing is I do n't have many opitions . vaction Abroad ! I will join my friends in Singapore and we wiil stay there for three days . Although the weather forcast said that the rainy season is over , It has been rainiing frequently for the past few weeks . When the solar exlipce could be seen in Japan , The weekend is over , I do n't like monday , and im login the lang8 to see wheather someone corrected my diary , but the result let me down . It 's not that I am missimg my family and friends in Korea ; I opend my refrigerator . I had some chiken . First , I marinaded the chiken in soy sauce , cooking wine I then rolled the chiken in Japanese basil . I fried the chiken . It was very deliciaus . I will cook it agin someday . I looking forwward to meeting us . `` day hospital `` meaning outpatience clinic Yesterday I arrenged the song for we will use for dancing , We could sing to the accompaniment of a guiter which the master played . My favorate sport is table tennis . Lang - 8 is very interesting because many people are comunicating with each others languages . but eveything that was said has truly become past tense ; which we can no longer change through useless force the beaty of your background resembles a beautiful burning fire Because I will want to enter univercity . I want to study biomecanics . I went to the driver 's license test course to pass the driving skill exam this mornig . I was so tired today , I wook up at 7 am and rushed to my training place . We started our rope skipping training in tahe early morning until 11 . 45am . Just like me , she likes to travel a lot , but we do n't have enought time . Last holliday we went to Normandy in France , but this holliday we are going to go to Italy . Today is the last day of my holiday in the Spring Festival . I will have to go to the office tomrrow and work hard every day , so I have to wake up at 7 : 00AM every morning . But I did n't speak Enilish well . The foreign conversatin school that I 've been studying English at for about five years has gone bankrupt today ! Japane 's English education system 's history . So `` English native speakers `` means Amrican . This morring , I read all of the handouts the teacher gave us . I 'm a bigginer here , but I 'll make effort 's to help guys who want to study my mother toungue , Japanese in turn for your help . I 'd really apriciate if you helped me ! ! I was involeved in a dance club . The only thing I can do is to apolozige , explain , and hope that he will forgive me . I think that this is a also reasons why people commit sucide here besides of the maintainig path . The atomospher was very quiet . The board said that those caves were used to preserve foods iseveral hundreds years ago . As I have long expected , today is the day that my new scool term is starting . Of course , I was studying hard at my house ullntil now . Human power created by peddaling a bicycle is being considerd in an institute as a renewable energy resource , says the Shukan - Press in Yahoo news Japan . It says you can watch TV for an hour using the power from peddaling a bicycle for 3 and a half hours . At fisrt it makes me angry , but then I think that they are right ! The sauce contains mustard , mayonnaise , a little bit of garlic powder and chile powder . Lagn - 8 is a special website . I 'm glad that I can use it to improve my second language here . I was shocked at the news about Asakusa samba carnibal 2011 . Tha participants are American , India , Brazilian and so on . We ate our lunch in buffet style and we were full and satisfaid . We bought clothes , ate an ice cream , playng a console game and talked about fun stuff . There were many dogs and kizs at the park . thay are really good and cute and have ideal figures - long slender legs , well knit bodies and biautiful big smiles . I am senier university student . I went to San Diego with my husband and dog for thaksgiving . San Diego was different from Chicago in weather , topocraphy , even in houses and people . 3 - Dreams . This interesting topic has been on peopl 's minds for a long time . Some peopls even say that dreaming is a sign that we are sleeping the perfect sleep . I 'm listening a song called ' Nothing Lasts Forevr ' by Maroon 5 . It was a SF & horror short story and very fashionating to me . And I found that it was maded into a game . I thought if this short novel would be maded into a movie , then it would be very interesting . I read a comment on Youtube that this novel is going to maded into a movie . And also someone recomented , `` Where did you hear that from ? `` When I searched for other information , I found a post that tranlated in Korean ( but not all of them ) . I 'm so exhausted from standing throgh the night . inai ! un daijobu daijobu , netto tsunaide , tomodachi no Kazu to hanashi wo , netto ni tsunaide , skype tachiagete , log in . . . but I 've made up my minsd to only study hard / concentrate on my study . Today 's dialy which I was just writing has disappeared ! I do n't have callange ( ? ) to write the same dialy . . . I have to prepare boild eggs . All of the media outlets here keep reporting news about New Zewland 's devastating earthquake here which is said to be New Zealand 's deadliest natural disaster . plese tell me how to study ! ! This is my first time writing songthing about love . I left my girlfriend two weeks ago . I can lon in on the weekend ! ! I want to improve my vacubulary and train my ear . For example , I microwaved the pasta that a coustomer bought and forgot to take the vinyl out which made the pasta explode . Anyway , we ` re going to meet tomorrow and I hope it will be a great randevous ! Many historic architecthers are much bigger than Japanese ones , such as temples and cathles . `` Please remember me kindry to all your people . `` Because of a lot of drinking chances , my condition and wallet funds drastically decrese . Today I encoraged myself to But my opnion caused a strong beacause we desides the final choice we need . mabey she was right . I 'm a little nervous , but I 'm looking forword to working there . Got an iPod touth I got used to traditional American happy endings and I hoped that everything would be all right untill the last moment . . . Naice to meet you . My hoby is fishing , skiing , and playing the guitar . I wathed the movie in einglish . I want to be good at Englsh . we were studing together and one of my friend said I couldn n't remember who paid the bill this mornig I woke up bording house of my friend S , when you eat out at restaurants you normaly can take the leftover home . or other europian countries , which will lead us to save food , money and the earth in effect . ( In Japan , the beggining of the semester starts from April ) Althogh I have the experience of doing man - to - man one - to - one lessons , this is my first time performing my lesson in front of a lot of people . And I was very norvous and could n't do a good lesson . Legs : Closs - legged , the right foot placed on the left thigh , and the left foot on the right thigh . The Zen Master struk my sholder when I lost concentration during the practice session . I want to improve my english , so need ur help to correcti my english : ) I choose to learn physics departement there If it 's not rainy , I would like to go to a sports event in a rocal junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operationg hours of their airports to accommodate passenger and cargo flights from foreign countries . Residensts near airports argue for curfews . Discuss both points of view and give your opinion with reasons . but , I feel a confatable mood . Hi , I want to learn englishi . haha I am a bie clumsy Anyway , it seems so exiciting to ski or snowboard in a foreign country ! But now I still have a musle ache . . . Please , correct this passeage . We will play a plactice game tomorrow . I could speek in English fluently . I would be capable of a heavy worklord . and be cheaten by vendors . It took over 40 minutes , but it was good exexercise for me . My laboratory was not comfortable since it was terriblly cold and dry . ( more concise ) Actually , I dicided that I am going to remain here yesterday . I couldn n't bear the heat . In addtion , many newspapers said the TEPCO CEO 's annual salary should be cut down more . Recentry , I read and voice the same article such as address , novel , thesis and so on . Ultimete Frisbee My friend Jeanie took me to the evnt . Before the game started and after it was over , I talked to many Amenrican students and all of them were so nice . The teacher complimented me on my pronounciation . The shoes that I orderd came to my clinic yesterday . When I saw them on the internet , I coulod see them black and the infomation about the shoes and it also explaned that they were black . What is diffrent between ( the ) and ( a ) ? How shuld I use them ? I want to hear about how cabodia is now from him . I think doing exercise is a sutable way for me and I started go jogging after work . But the problem is when I go joggin . I 'm a little bit conncerned whether I will get sick because of the hard schedule . . . I know a light daily excercise is good for the health but I should think of when to run . I 'd like to know your thoughtness about it . The silver weighed abouot 200 tons . I am ruluctant go to college because of the chilly and strong wind . I thought she would be very pleased when she entered the room and saw these small decoreations . When I saw her at first , she looked gogeous ; like a super model . Unfortunitely , I could n't see her there , for various reasons . We Japanes love that poetry . I prefer writing in English to listeing , speaking and reading English . Therefore , in English class , I sometimes felt embarrassed with my poor ablity of English I lern English . But even 8 marth wo n't be a day off because of the stupid university 's shedule . she said `` I watched an English TV program , It shows the latest English to us , and famaous TV programs have the power to keep anyone 's interest . `` It contains big fillins ( which are usually , meat , onions , carrots and potatoes ) I am a university student but I am not goot at English . It is so moist that we break a sweat every time under a non - air - cnditioner ! There looks to be much more sediment disasters by the heavy rain , espacially in the Kyushu area . They always make me feel happyness . Today would have been fantasitic if it werent for the bad weather . I heard and was very surprisd that there 's no rice cooker in a foreigner 's home . something like ' day book ' when you transate it from German into English , so perhaps it is something where I have to write what I 've done today . When I finished , I went outside and helped my granpa in the garden . It started to rain , so we came in and my granpa and I tryied to make a meal , but it was n't good , what we cooked . And I 'll do exersice tonight . There are many types of drinks that tasete like beer at the supermarkets in Japan . I was advised from the doctor I 'd better not to eat or drink too much , performmoderate exercises , avoid a stressful atmospere as gout is a desease caused from unhealthy wy of living . One of my friends from Canada has a lot of knowleges in improving health , ( There 's nothing to stop him talkig on that topic once he starts , and you 're doing nothing but just nodding . ) Although I 'm interested in this book cover and title , I hardly have the time to read this book as I am busy studying German and attending a Political sceience cource . But now I 'm in Beijing , so I 'm homesik . , I try to learn English , but I do n't like to learn words in another leanguage , which I do n't use in my daily life . If I do n't use a leanguage every day I 'll forget some of the words . I do not mean that 's bad , I hope everyone has a happyness life . Birds Singins I sometimes hear their singins at the same time . I can hear these singings near my house . Please check the grammer and logic in my blog . An appologize from Japan If you speak native English and want to learn Chinese , then we can be language parterners . Second period was boring , and in third period we ate tortillas and salsa ; fourth period was study hall , and in fifth priod , my friend and teacher were so kind , so I felt happy , and ( but ) the other classes were also boring . My stomack was full from all the rice . But it was very nice movie ! It 's a selious but heart - warming story . In the evenig , I did n't bring my text book to my English class . For example , I like to invite my friends to my place , enjoy my favorite sigarette in my room , listen to rock music , and drinking a little alcohol before going to sleep . . . so on ( souds like I am a teenage boy XD ) . Living under their careness make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . This is my first entriti , please , have patience with me . I do not speak English but I really want to learn . The Remains of th Day is a great novel written by the Japanese novelist This novel is the winner of the Booker Pize . The protagonist in this noovel named Mr Stevens is a great butler in a house called Miss Kenton loves him also and she spents a lot of time trying to draw his attention to her love for him . He knows that , but he represses his feelings and ignores her . The first choice is docter . The secound is engineer . But , so long as I do not give up , I konw that there 'll be an end to my hard journey . My car has a garanty of 2 years without any limit . I have it for 75 mounth ( ? ) and has my car running 30000 km because I 'm like a tourist on a car . I was sad sad , but I rememberd about yesterday 's work . The day before yestaday , I cooked rice with hashed meat . I had not cooked too much untill I became a unidersity student . So , I was researching it for a longn time . For exsample . . This situation has recentlly been severely condemned . I went out with Yumiko Syaku . Ms . Syaku is a Japanese actress . Then you put them into a pot with a glass of white wine , chopped vegetables like onions , a piece of garlic bater and a little bit of red pepper . Yoo seem happy . Today , it was held a display of fireworks in my rocal city and since it has been conducted nearby my house , I have to hearsounds of the fireworks every year whether I am unwilling to or not , because I do n't have a girlfriend . In fact , I have leraned English during junior and senior high school . We would often wave an antena to catch signals from the transmitter while monitoring . The explosive on the GPS collar was triggered when we pushed a buttom on the controller . Suffice it to say that the point of my research was to see whether or not the distribution of the persimmons coinsided with the emergence of the bears in the residential areas in 2005 . Nothing has happend yet ! I woke up around 7am and I thought that it would better for me to go back to bed so I could have some extra sleep , and since today is Sanday , I have a right to indulge in my sleep . I gave up on sleeing and desided to cook something . I borrowed the DVD `` Saburina `` last week . I wear llike the same clothes everyday . hello eveybody ! I was so excited since I did dont need to resume my assignment again ! Ah , I assume I 'm gon to move out of this house on the start of November , but have n't found a new place yet . . . althought my studyng habits are n't good enough , I 'll do my best . . In my eyes , she is an 88 year old woman acting as my grandmather and guardian , I wish her good health ! You have to know the customers , competiters , and products . My job is to loan out electonic devices . so I see many travelars . but we have few custumer - - only about 10 people in a day : ( I 'd like to talk to travelar every time I see them , but I 'm worker , so I shold speak fluentry in English . . , , ( confusing sentence ) I started a new project about food thes week . The first chapter tell us that it was the god who creat the world . Someone may believe that `` God creat the world `` and someone may not belive . As an elementry school student , I hated diaries like this . so I had a rong rest last night . Hellow . My name is Hayabusa . I 'm going to Hukushima with my boyfriend and club frieds in February . And going to Kyto whith my best friend . Of couse I will never fail to live up to what our parents expect of me : I had hope that during these days , I 'll be able to walk in our moutains , collect some spring flowers and feel the fresh , warm sunshine on my body . Every single room is already cleaned , on TV there are only 3 channels , so probably nothing intresting there . I think we are going to the French restrant with you and my daughter . Two reserchers . I do n't think it 's a bad translation , the language represents the national culture , if I want to understrand novels and the other arts from abroad , I do n't think it is a good idea to translate it . I checked it with a mirrow and did n't find anytghing wrong . However , it hurt and started to swallen . I am going to put some eye drops in and stop using contact lense until it gets better . A big earthquake happend in Japan The buildig which I worked in shook very much . At that time , I did n't know that many people sufferd from much more damage . I discussed this probrem with my co - worker who stayed at my home . ( Her home is too far to go back on foot . ) What should we prepare for in the time when the infrastructure such as water , gus , electricity stops ? I will graduate from my unniversity after one year . In fact , I am a little worried about my job which I thougut was so nice . I want to brige between Japanese companies and foreign companies . I think I want to take it esay . I knew it through a TV comercial . I wanted to look for some imformation about Harry Potter and the Deathly Hallows part 2 . Therefore , many peole have already watched the movie ; they had seen the kissing scene betweeen Rupert Grint and Emma Watson . I 'm not crazy like this but I 'm a bit disapponted as we have to wait for it until August or September to watch it on DVD . I downloard some applications like Kanjiryoku , Pac - man , Fairies Life . I do n't know thier details , but I thought that their family relationship had become very strong . They love a stuffe frog that we have . We got on airplain with Kero . I do n't know wherther or not they are better than the job I am doing now Your carrer is just beginning The head of my ward told us that he would like to hold a feast at our pablic house . When I was in university , I read lots of histry books . I can cocentrate ( center ) myself when I do . ^ ^ It will be tough , but I beilive in myself ! This Capilano Suspention Bridge is 137m long and 70m high / in height . But , it was very diffcult . I CAN ' T speak , write or hear English . This is the same for almost all Jpapanese people . I was taught English in junior high scool , high school and university , but I still do not understand English . Therfore , I would like to be able to learn english as soon as possible . It 's delicous ! Sometimes there are foreigners who have funny Kanji tatto . I 'm wating to have a meal I plan to mee my girl friend todat . I was glad to see famouse seanes of Swan Lake . Near my house , KIA has some voulanteer language classes , we call them `` Englsih table `` or `` Korean table `` or `` Chanese table `` This article was `` Disabled athletes have balloon in thier court . `` He ca n't speak because he is using a respirater . I start keeping my daialy entry since today . I 'll be glad if you enjoy reading my dialy entry . I noice that American movies ( are filled with humor ) , and Euroean and Azian movies have great story lines . My problem is , I ca n't stop wathing them . It was very exciting to watch the later part of the game , but the first half was boring bucause both teams attempted a brake attack . My friend SONG intoduce me this website just now , which looks funny . I tried to change to nother bus to go my house . It was the frist time I had taken it . I have someethigs harry . It 's my telephone and modeim to connect to the internet . I had solary 9000 baht that I spent to connect the inthenet and retren to my mom 2000 baht ; at the moment , I was poor . The theacher asked the class whether earning money was a good or bad thing . But I ca n't think that it 's a very very giood thing either . Fryday night ! It 's Fryday night . I have a sore throught from the cleaning spray and my hands get rough from the washing up . Today , I have two clases in my major . Weather is very good and very confortable . My company is crose to the park that the ward office maintains . Usually , people look forward to cherry blossam viewing . so most of people had cancelled the cherry blossam festivals . I will tell the folling story tomorrow . I saw Carice on TV Do you know the Philipino singer , Carice ? That may be the reason I feel afaid to meet foreigners who can not speak Korean . The Mid - Autumn dfestival My trip to Huzhou I 'm home . I feel so tired . . I want to go bed immediatly . . . . I ca n't speak english very well as if I foeger everyrthing I know john saied practice made a perfect which means it mekes me feel alive and makes happy There is a song named < who says > by Selena Gomez , who is Justin Biber 's girlfriend , which I love the best . It 's a beautiful song which has a large umbers of fans supposedly . But it is diffrently from the others . Intresting huh ? I 'm going to my grandmather 's house in the evening . Tonight is one of those nigths where you are with your friends ( who are dancing in front of you trying to have a good time ) , but you feel like you are missing something or someone . I just whant to share my thoughts . I hope tomorrow can be a beatter day . And a suiside rate has been increasing in recent years . So , the government needs to change the policy abpit worker 's environment / working environment . Moreover , because of its efficiency and sonvenience , we use technology even if we can do without it . And some traditional arts are in danger of disapprear because young people are less intersted in them . Hello , Thank you for coming to my paqe and helping me correct my journal entry . Then we sent retunable postcard to all of the 400 alumni , all men . After making the postcards , it was time to enjoy the full moon in autum with good food and good music . We grilled Saury on Shichirin , which are used for traditonal Japanese cooking of begetables , meat , fish , and other things . I like cycling very mouch . But of course people in the hypocenter got extremely damaged . Usually , I should write Koji , but the American teacher at my university said I had better write Kohji if I went to USA or any other foreign country as the pronunciation of ' Koji ' is more natural ! ! Another perosn in the passport center told me that if I decide to use Kohji , I have to use it all the time from now on when I write my name . I have asked my teacher friend how he uses potoshop to detate a backgrand . yesterday my friend helped me to clearn my computer and delete the virus After listenning to four announcements related to each of the pictures that were printed in your test book , you should select the right number , among four , that best describe them . because I had imgined that `` to hang up `` was used for `` picking up a telephone `` . The torouble is that I often skip it in spite of knowing I should read . I only played aboud thirty minutes , so I did n't sunburn , which is good . He is tannning because he surfs every weekend . Suprisingly , there were some people who were even suntanneder than him there . I suppose they occured some trouble . Just when I realized Nobember has started , it 's already finished . December starts tommorow . sister also jioned the exam . All her roomaters had However , my seniormates ( or upperclassmen ) said it was just so so , obviously my seniors ( or upperclassmen ) had confidence in passing the exam , He screemed because he wanted to sleep . I am sure that this message is true because I had experieced this before . Most families will watch special progrem for the Spring Festival on CCTV and chat together while waiting for the new year . I nedd to wirte slogans for some of these products and services . Write a sentence , [ space ] use comparision . Recentry , my hair falls out very easily . : O ! ! One way is from spring flowoers blooming . Some sales clarks are very friendly in Japan , for example , at Starbucks , but they never joke around . . . Ordinally , I go to a shopping arcade which connects with Shinsaibashi - suji shopping arcade . You can also say usually My English probably has a lof of problems . They are speaking , reading , writting and listening Anyways , learing English is harder than I thought . This time was the scound for me , It made me very relaxed and comfortable . Above all , the cost was reasonably priced . I thought I am proud of him and that I am a very lucky mother because of I have a great husband and wondeful son . The Olynpic have started ! Especially oral English and listenning . I was very sleepy , but I did n't have any classes , so it 's ok . Because I just woke up , I 'm really hungly , so I ate a lot of sushi . This dvice enables people to have relationships with others all over the world . But sometimes we do n't care about a person actualy in front of us . His looks as if he has no enthusiasm for enerything . He wantted to sleep but he could n't . Ah , I 'll go to Itary again someday . I bought a video game `` assasin 's Creed II `` for XBOX360 . The relationships are sometimes obsucure and many of them are formed impulsively , such as friendships and love relationships . In cotrast , Facebook has succeeded in expressing them on the web . The winter from the four seazons by Vivaldi is good 5 minuites after we had entered there , we had gotten sweaty in small steps . I think that I ca n't sleep deeply becouse of the heat . But I 'm confused becouse learning Italian is reading Roman but English is not . I 'll resume studing Italian when I have made progress in English . Today I found this language learnig site . During this season , flowers come out sprendidly , and evrything starts . I told to the participants about the folloing : [ colon ] there are black and white pictures Merline Monro . picture and in my favorite store , `` Bathroom graffity `` they sell pictures of Merline Monro gnawing on her nails ! In 2005 , there seemed to be lots of sightings of the bears in risidential areas around Japan . As far as I 'm concerned , they had been killed for nothing besides the safty purpose . Some parts of them are edible and I do n't know what to call it , but some of their organ seemed to be sold for expensive medicin . The Argentinan football squad will come to Japan on Octobar 8th to play a friendly match . The presale of the tickets began last week and I tried to get 2 tickets , but unfortunitley I coud n't get them . The official salese of the tickets started at 10 o ' clock yesterday online . There were so many people accessing the website that I could hardly access the parchase menu . Filnaly , I could do it after a 20 - minute effort . I met many different peaple . A couple of dyas ago , when I worked there , I happened to miss something . Yesterday was very hot and very wetty . I showed the pitures which we had taken in Korea . So I have no conplaint about it . . . exept the price . Evryone have his / her most dislike things . For example , I extraodinarily dislike cockroaches . Ich lernend Deutsch . Oxygen itself is not combustible , however it is required for nearly all combustion as a gas that supports the combusion process . But of course , while they were talking about their favorite topics , I could n't follow them . I hope this new job will be awsome and really nice . . . This title is not a Dniel Powter 's song ( ^ ^ ; ) . My favorite is travelling , especialy going abroad . We took a souna and had a body scrub and massage . I found that laughing made the people opend their hearts . Most of their storylines were like holiwood movies that I had seen before . I have invested almost all of my assets in to stocks , maily Japanese stocks , but also those of emerging countries . Then he will become a member of the Pharmaseutical industry in Japan , as well as myself . He will ues English for his work too ! Essay . . . soulution to Overcome the Threat I found that it is very good for eveybody who wants to learn a forigen language . Secondly , I hane plans to deal them on a website . As your guys see , I 'm a bboy and I have gotten involved in this since I was 16 . At 29 years old , when I was working at a swimming pool as a part - time job , an elementaly school student said , Yesterday , I applogized to my customers because I thought that When I was in my undergraduate course , I took some classes on French , but I 've fogoot most of what I learned unfortunately . However , I always end up adjunting the batter many times by adding more milk and powder . Two bags were discribed as `` purse `` , aonother one was `` clutch `` and the last one was `` mini bag `` . Nevertheless , In many cases , exam questions are about complicated glammar points that never occur in daily conversation . So this is the most exciting moment now that the sumer is getting closer and closer . I ould have kept a dialy on this site every day . . I wonnt to get a high score in TOEIC or TOEFL . `` espesially `` long distance love . So I 'd like to keep the motivation and be able to communicate with a lot of foreignners . But because I did not paticipate any organizations like Students ' Union , I get no extra credit . I do not know whether to jion same activities or study much harder . I did n't set my alerm . Bacause I had parted ( broken up ) with my boyfriend . Of cource there is a Japanese kind . I especially like the curry in tailand . And coconats milk makes the taste mild . I will go snowboad this weekend . Now , I am so into `` tomodcahi collection `` game on the DS . The story was based on a true story regarding a Japanese young woman ; she was a bride whose remining days amounted to only 1 month . So Chie disappeard from his sight by herself . But she felt shocked that the shape of her breast was cut off becuase of the operation . Unfortunatelly the happiness did n't continue long . Becuase Chie had cancer again . Her doctor told her family and Taro that her remimng days was only 1 month or less than it . So after crying I feel so sleeapy now . . . I ca n't write sentence in English without `` Googl Translate `` , _ and if I were to be speak English , I ca n't say practically anything . but the day of the exam is approahing . She got her driver 's lisence about a half year ago and has n't driven the car that much , but today , it was her third time to drive a long - distance Then , she loked into the mirror , she checked that the left side was facing to her . If thats what you mean . Then she was able to controle the car and ( it / everything ) was back to normal . It is so popular that you may have even seen it in Japanese TV programs ( I . e . if you like Japanese amimes / TV dramas ) . minna san dozou yoroshiku It was shocking to see that dogs sre dyed black and white ! It 's the story of the guy who want to be the king of pilates . When she reads it , my wife is so consentrated that she neglects my calling . . . I thoutht I had to ascertain whether the judgement of the Academy was reasonable or not , so I went to the theater . However there were some unclear expressions about the Blitish Royal customs . I thought Blitish is the Queen 's kingdom because the Blitish national anthem is `` God Save the Queen `` . I 've celebrated the Nular New Year for 3 days . It 's such a big holliday in Korea . However , I do n't understand why we should celabrate the Lunar New Year , cuz it would be better to celabrate the solar calendar . I would like to execercise and live more fully , starting tomorrow . Today I had a very funny nightdream with headcrabs ( from the game half - life ) ! XD Very strange . . . So I phoned her a couple minites ago . To all the beautiful girls and boys or kind - hearted men and wemen , I 'm a sophemore student , and will be a junior student after the summer holiday . I had an English conodversation class . Such as , The Mentalist , CSI , Hawai 5O and of course Aghata Christies series ( and novels ) . I am writting a diary of the lang - 8 community at first time . for example , my major papers , and preparing for a test , I am especially preparing for the listening test and voca test . Now , I 'm studying English at my universiry 's conversation club . It was owesome . Today , I ate lunch near my universary . It was telibble ! ! The Brihish meseum is famous all over the world . The meseum is famous for art . the meseum . The man is very embrrassed . He deldtes the picture from camera . I found I must make an effort perticularly on listening . After taking a college enterance exam , I felt relaxed . Of course , who would study in this stuation ? I have some variations , Japanese taste , Tyland taste , Indian taste , and so on . There was one time , a Nepali student in my class taught me how to make his coutry 's curry . He used many kibds of spices . Moreover the doctor asked the man `` Do you like a gampling , driving a car at a high speed or spending a lot of time on women ? `` Becaouse , this is my home twon and Many hula dancers were dancindg on the stage . I 'm ecited ! ! but first I will connntinue ! refrection . I think It is important that you think about your lisner when teaching English or other languages . I prefer exchanging on a regular basis , but irregualr pracitive is also welcome . I 'm intereseted in traveling `` . So I want to be a travelor . So now I want to be a parmasist . I will earn money by working as a parmasist . I 'd love to anser your questions ! ! It is four days long , and it is going to bigin tomorrow ! Yestarday I saw a very funny film about Bushmen . Yestarday evening the film was successfully downloaded and I had a lot of fun watching this old movie . I starded loving Bushmen even more - they are so smiley ( informal ) , so naive . It is about one Bushman who goes to `` the end of the Earth `` in order to get rid of a bad thinkg ( a bottle of coca - cola ) that has caused trobles in his tribe . I can recommend `` God must be crazy `` for everebody who likes hoaxes , nature and old movies . However I could buy the air cleaner for about 20000 yen at an Inernet retail shop . At present , I have a number of aquantances but as for me , I have only one friend who can understand my thoughts fully and stay with me whenever I 'm blue or down . Her name is XX , and she 's my best friend . Even now , I still remember exactly how I got accquainted with her . It was a nice morning but unfortunately , I was late for the frist day of class . My frist impression of her was quite great . Morever , she also has white skin and thin lips . And whenever I get into trouble and realling need a helping hand , she always stands by me and sincerely encourages me . The extracts are used for cosmetics and others to protect from aging or rinkles . But it is really difficult becouse NYU requieres a 85 score for TOEFL itb . Recentry I have n't exercised , so I was really tired . I also hope that I do not have to pay the twenty - pound reconection charge , as this whole situation is not my fault . About 10 years ago , when I went to kindergarden or elementary school , I qurrel with my freind . Sometimes when I go to the hospital , the docter says I am going to give you medichine . I bought a book `` foolish economy ! `` , whichi is a paper back pocket edition . For a few days now I 've really wanted to eat spagetti . and I really likethat the design . As you probably know we pronounce a word as we read it : in most cases there 's a corrispondence between the sound of a vowel and consonant with its character / letter . The announcer was joking about our difficulty of pronouncing the name of this volcano , expecially after listening to its real pronunciation . But the most groce , annoying thing is when he thinks he 's mating with Boubika , iieuw ! It 's just too groce and really annoying . Boubika is too docile to grawl at Aristos , or just muster up the courage to bite his balls off ! The British English accent is easy to regonize for me . `` Gyaku `` means opposit . As far as I can remenber , `` apple diet `` , `` grapefruit diet , `` and `` boiled egg diet `` were once popular with the Japanese woman . I do n't know how to further explain my feeiling , so . . . . I have never learnd how to write Japanese . Last Saturday my friends held a lunch party to celeblate my birthday . My friends visited a soy soysause factory . Street uses jumping landforms , riding on walls and gliding on the hand lails around the street during the competition . During the school festival , I was in the haunted huse all the time . So , I did n't wirte a diary about Jeju . Reacentry I often go to school On the other hand , the movie producer creat a way for readers to enjoy the atmosphere inside the book . Thus , the moviemaker may rewrite the plot or even creat a surprise ending . Yesterday was Saterday . Generally , anytime I go out out , I always find something that makes me remember some unforgetable memory - - or at least , it makes me think . And when the trafficlight just remained 17 seconds , a begger passed by . In his arms he was carring a doggy . It was not strange because there are many ( ? ) beggers in this town . I was wondering why a begger would carry his doggy when he begs . At that time , the trafficlight changed to green , and the begger did not have enough time to come to my where I was . Well , I am not a studious girl , I can not insisit on reading English everyday , even for 30 minutes . I hate myself becouse I ca n't learn english . I have already bought my flight ticket to go back to my contry . I think Destiny 's Child who split up in 2005 was the greatet girl 's group . As I mentioned in the privious message on this site , I 've been practicing listening in English by listening to songs . I think that the young people maybe can , but not the old eged people . So , I deciderd to go back to America again someday ! ! ! ! ! Cathy asks Miss Isabella why she has this actitude towards her . Miss Isabella confesses her love for Heathcliff and acuse Cathy of being a selfish thing for wanting Heathcliff for herself . Mybe I can help you ! A chikin curry , I will make it ! I have been very busy and I have n't written on Lan - 8 for several weeks because I had to write a article . Can you view this website and write your dialy ? ? ? ? ? Some of the them havewireless radios , motion sensors and touch screens and they each produce diffrent noises . It can be true that we can cmanage everything with only a phone . I think cooking is intereting , and I feel I can get relaxation from it . He met , face to face , an unexpectd enemy , Ethan . I think it is interesting because korea food does n't use rice paper . Recipe for Viernamese summer roll is that raise meat and various vegetable in rice paper and roll a rice paper . I hate studying writing English or grammer etc . . . In fact , I must take TOEIC test . Even thouth Japanese people ca n't use garmmer correctly sometimes . Espesially young people ca n't write right Jpanese sentences , I think . There is a `` te - ni - wo - ha `` in Jpanese , that 's how to connect nouns and vervs in Japanese . So I suggest for foreginer do n't mind such a thing , we can almost get it . In addition , Jonas was a Yankee and hated all Southernors . As I can see in this school , nobody is interested in foreing languages including the teachers . I ordered vegitable curry which twelve kinds of vegitables were included in it . but now I find it difficult to speak English influently , and to listen to others speak English . I think this is Asian caluture . I want to know when thay call a teacher , how do they call them ? Please reffer to Seeing so many forigners can learn Chinese which is already a hard language , I think I should word hard too . At lunchtime , Yoshinoya is usually crouded with many businessmen . However , I do n't play anymore becouse I got a referee license 9 years ago . I get to meet a lot of diffrent people and to be at many games . Today is remarcable for me because we planted a tree with my boys . How I wish to make our city beutiful and green as a fairytail . My efforts are awkard and shameful . In my opinon , ttipping is unnecessary . We should make people happy even if they dont n't tip . In Japan , if you go to a restraunt and you have a good time there , you can go there again and again . What they lose is each other 's trust and valuale friendships . I laughted when I heard this . : p Graduates of other colledge or universities are not welcome . Personally , I like being in the atomosphere of celebrating April Fools ' Day . However , I hate being teasted by my close friends for no reason . Each of us hate to be teasted by others . There is only one hoildy in the year so get ready for a fun and interesting April Fools ' Day . I thought that the flower school was a solem place . Thank you for correctings . Her abirity makes me change my heart . She does n't only have Grammer skill but also writing poem skill . Because since I havebeen been here , I never use my own car . I expecially like `` Venus `` . Although my youger sister loves Maru more than I do , Maru always goes in my room . Just trying this webside . She told me she has not talken to her father for more than a year . Is it a big deadl ? The way of my shopping has been convenient , meanwhile ever sinse the international company came to Japan , many local bookstores have gone out of their business . I 'm a little collecter of My Little Pony figures , and I love toys and all stuff from Hasbro . inc which is a toy campany like `` Little miss no name `` , `` Wuzzles `` , `` Rainbow brite `` , `` Popples `` , and `` Care bear `` . of MLP figures are still nice , but I 'm not atrracted to them so much . . I love toys and characters in the westeren style . this is becasue of the defference in the network system and / or the business custom in the cell phone business in Japan . He was very cheerful , active and having a great talk , which entertained his greatparents very much . I really enjoyed this moment . I feel very luky . In Japan , having a gun is extremely unnormal thing . Today 's ivent . When we judge our times as good or bad , we ca n't know untill the end . I work at the customers ' company with my collegues . the customers strated using it . If my guess is right , in other words , can I replace `` best regards `` with `` all the best `` in the furture ? Lately I have been staying up late ( late at night ) to prepere for the tests It 's been ove 10 days since I wrote my last entry . It was reall funny and interesting . His name is Paul , and he is certainly Canadian because I cann see him on a webcam . That 's also why this class is relatively expensive altough I only take it once a week . He told me that `` V `` is a drama about ailen and really interesting . ( is `` is `` in this sentence correct ? I did not sleep too much becaues I was trying to find them . Because my MacBook 's battery was not charged accidentaly , I went to a Apple store in Ginza , Tokyo . Hence , for peoole coming from different countries , the Narita Airport is more famous In recent years , the voluntaristic spirit has spread among the Chinese people , especially among youngesters . Without them , it would be a tough task to hould this un - precedent Olympic Games . English begginer Now I 'm planning to take a trip to the Phillippin because it 's warm there and I 'll be able to practise English with the Phillippin . And I must ask my pearents . She 's going to Indonasia with her husband . In Taiwan , Christmas is a festival that we celebrate with our firends or lover , not family . I think a plan is fiding a part - time job where I can live in the work place and get meals from the work place so that I wo n't spend money on rent and meals . So , she chose this chekered fabric . I can hopely exchange with many people . The supermaket is named `` FOOD ONE `` , one of the cheapest supermakets around . For example fruits , such as Oranges or Grapefruits , are importted by USA or South Africa . Meets and Fishes is importted from the USA or China . The purpose of this year is lerning english . Today I got up early to eat brefrest . I always get up late in the winer Besides today , the two things are to do the winer vacation work . I am determined to write English everyday , so I try to write in My Journal everyday exept when I ca n't do it . I got to know a lot of my future calleague there . Then I noticed that the department I am suppoed to join is ( somewhat ) smaller than the other departments . The news really shoked me ! Then , my college cannceled the enrollment ceremony due to the big earthquake . Now , I will study fot the test ( TOEIC ) on this sunday . When he was sent to the hospiltal for his serious disease which was caused by his unlimitied smoking and drinking , He decied to quit smoking and drinking . . . . . . But after about one or two years later , he beagin his ugly behariover again ! but he did not even care and contine smoking . . and recently he was attratied by lottry . . you will never win when you play such games with goverment ! And with the bad effects of such lifestyles , he can not contrl his emotions sometimes ! sometime I think his empor is out of hand ! he even roard at home . . but if this kinda situation contiune . . . . . It 's hard for me to get up eary morning . I am now woking in a foreign trade comany . I have to talk with my customers in English all day Any topic is ok . We had a ncie day . The gugle satellite took a photo of something which is almost 30m long and looks like a snake . They are n't sure if it is a real snake , but it is highly possiblility . I think that there are many misteries in the world . There is a very interesting mith in my town also . Two hundred years ago , a wise buddhist priest who can see the future told that my town would be destoryed by a huge flood . It was just a mith befor one statue was founded . However , we had a really big flood after that , so many dwellors pushed him to bury it . It is a very intresting miths to me . Scince I entried a college , I do n't have much time to study . more than 10 years have passed scince I graduated university with a degree in English . However , after graduation , I never really got the chanses to use much English . The tyhpoon has passed , and the weather is really nice right now . The new staff said , the other staff members taught her a diffrence way to do something . All of these are good methods to ease strss . Although we know taht is not good for the Earth . Please tell me some other good short sentences for use when prizing . Even after he went back to Sweden , he contiuned to study Japanese . from different contries also loved Japan ! ! ! ! Our appearence is given to us by our parents , and it is what we differs from others and it tells us who we are . Life is short , and we shoud use it to pursue the most important and valuable thing - - - - a beautiful heart . Now , I have become accutomed to working in Tokyo , I think I 'll try to resume this dairy . I alomst havd no time to relax myself . . . For instance , a hair designer would start learning to be a make - up designer , an animation professor would change his major to be a biology professor and a bus driver would start selling motocycles . First , let me intrduce myself . But it costs 4 times more than the oringinal one . that one second isn n't a second at all . I guess I could be pretty pissed off about what hanppened to me , > ~ < ) In love , I 've been passive excepet for one slightly unhappy experience . As we always say , money ca n't buy hapiness . I 've always been envious of people who have charming looks and perfact bodies . Just at the moment when we arrived at the doormitory , The wallet contains ( contained ) as much as 1000 yuan , which had disappearanced just in several minutes . What 's worse , he wil be faced with even more pressing economic problems ( during ) the next two months . Before then , I was a student and usually got up at about 9 a . m . When I arrived at my school , it was often abaout 9 : 30 a . m . Althoug , these days , I usually get up before 7 a . m . Working changes one 's life style . How diffcult ! I used to think it was easy . It is beacause I want to learn about international politics at my university , but I am worried about my future . For me , that way is realy helps me to understand english . Also , correct / proper gramer . actually I started using this site ealier . . kinda polite sentenses ! ? or dournal ? ! I think it 's quite similar to japanease mixi . . Just look straigh at the future and overcome challenges that we have to face . I 'll introduce to you my favolite tools . First , Lang - 8 of cource . Now I am reading The Mistborn Triology . I would like to make a cofession . And other lenguage . . . . For these reasons , the newspaper says the younger they start learning a second langage the more such classes will exercise the effect . Above all of this , William , the student , was kind to us and handsomelooking . Now a lot of words come to mind , but I ca n't expresse myself because of my low English level . Enghlish occupies a very impotant position in Korea . I joined an English class after work on Thersday and after the lesson students got together . Every year , we drink that after we visit a shrin , Finaly he said to me `` we have diffrent thinking because we are n't the same nationality . `` I feel really angry because he does n't try to understand my thinking . One of them is going to hve a match this weekend . Last weenend In my daugter 's class , there is a boy who ca n't walk by himself . When the boy 's group finished , he teied to sit down on his chair , but he fell down again and again . I wanted to help him , but I thouht I was little too far frm the boy and there were many other mothers or fathers near the boy . Finaly , a girl helped him . See you tommorow ; ) Hi everybody , I 'm Vietnamese and I want to study Enghlish . I want to make friends with you , will you help me ? In the last bar he went to , there was an accedent . Last night he was interviewed by the TV station and he appologized for his recent behaver to Kabuki fans . I was surpried becuase I was not that close to that friend . So how was my friend able to smell my hair even though even I could n't smell it ? It is good thing that karaoke is comunication tool . In short , I imagined a relaxed life , but my life is tottally different from I like to see out from the window when it 's rainig , but I ca n't see out from my office , I watched AVATA with my friend but we wanted to see the 3D film . From now on , I would like to write a entry on a dayly basis . I really apreciate if you are able to correct my entry . The theory itself is debatable and the so - called proof is generated from archeological excavations . I was so surprised and on a high 'cause it was really unexpectable ! Sudenly , they asked me to do them a favor and call a worker in a ministore nearby . They wanted to buy some cigaret and a moment after I walked out of the store and I became angry because I saw my girlfriend crying beside the car . First in The Hours , making a complexe and poetic recontruction of Virginia Woolf last days , combined with the lives of another women who , although they were not marvel writters as Virginia , they have the same feeling of anxiety and fear , the feeling of being prisioners in a society which was not sensible enough to understand them . I 'm a secreaty . I 'm going to get her a birtday present . On the second day , I might go to AKITA with one of my myfriend . Every year my children ask me the questions concerning the Holocost in the Memory day . Yesterday they asked me how could it happen that millions of peple followed the words of one - Hitler . I told them about the phenomen of the leader in society . I told tham about the totalitarian way of state . By the wey . . I 'm looking forward to paticipate in the X ' mas party with my friends . Becouse in the party we exchange our presents with each other . I go out and drink somewhere almost every night and immedeately I go to bed when I get home . However , in my heart , I want to decrease my spare time and I want to do things that will give me more benefits , not only financial benefit , but olso friends , talents , and a peace of mind . . . I also wish the foreign friends who are living in China can enjoy the spring festival with our Chinaese people . Now I think I need to ungerstand men more . Suddenly , she relized her cell phone had been stolen . In the WHO 's releas , the president of the American red cross board , Bonnie McElween - Hunter , highlighted that `` the credit of this success is deserved by the thousands of heath worker volonteers of the Red Cross and Red Crescent organizations who had taken the time to be informed , to raise awarness and motivate the mothers and the family circles as to the critical importance of the children 's vaccination . Ocarina concert at the Japanese - stle hall This was sixt time we performed there . I remenbered something writing just now . Yesterday I went to my favorite live - music pub in Sinjuku after my church visit . My home town is not in the country side but it is still inconvinient . If I can et really big money , I 'll go abroad to see world heritages . They all said that we have to save money to have a memorable cellebration party . So , I 'd like to deposite money to have big party of my own ^ ^ The Chinese Ministry of Education wants to change the writing of 44 Chiness characters , according to news . The Hallween Party ! Even when we are asleep together in bed , she does cnstantly even when I do n't want her to . I love her so storongly . I 'm a big fan of se7en , who is a korean singer and has become well - known thoughout Asia in the past few years . He advanced his carrer to the US but it was waste of time . Additionaly , the time when he spends with his family is the most important for him . because tomorrow is Chuseok holidaay in korea . It 's a good tool to study anothor language . Bacause before , I had the wrong sentence : `` How do you think ? `` From this experience , I have decided to correct Japacese for those who are studying the language and make mistakes ! At his last visit to the pediatrician in order to get vaccinated , this latest gave us some advices on `` weaning food `` which are contradictory to those given by the Korean pediatrician ! ! Izakaya is Japanese whitch means tavern in English . They heve one price , unlimited drinks system so I drank beer first and Sake next . and , I 'll meet wonderful peaple . AD tells me that I must make my dream come ture . Yestady was my friend 's birthday . We ated from the chaffing dishes . Every one of us was happy . Even though the activcty were over , we were still drinking . eventually , I wesh my borther to have a nice future and a happy birthday ! I have nothing to do all day long except daze quietly and daydreming . Damn , I couldent n't find one word to describe what I have done with my life these days , such BAD luck , keep bad hours everyday and achieve nothing . The next morning , I woke up from the dream to the electorical alarm clock . I study in The University of Engineering and Technology ( College of technoloy - Coltech ) . We live in Nam Thanh Commune , Nam Truc Distrct , Nam Dinh Province . I came accross these pictures while arranging the folders in my computer . If you haven not wathched this movie I reccomend that you also watch this movie . How beautifui a scenery ! Do you feel the same way ? Come on ! My dear friends ! I I guess some of you ` re studys Einlish is very hard . At laste , I know horror movies could make me have nightmares . ) OK , I will prepare myself and start again from an optmistic attitude . During college , I knew of verious senses of value and culture . A custom may be reasonable in some countries while it is n't reassonably in Japan . I want to learn the cluture ( and customs ) of foreign countries . Time limit is only 1 month , I am so nurves , , , , Tommorrow I should write my dairy early so that I do n't go to bed late . Ohaiyo gozaimasu - Good morning Komba wa - Good evening I will practic magic . When I was a university student , my proffecer told me that my pronunciation is dreadfully poor . I had nothing to do except laghing . ( HAHAHAHA . . . ) Sometimes , I talk with one of my friends , who speaks English very fruently . As ou know , Windows 7 was released today . My friend told me that I can borrow her custume for Halloween . Plactice Test According to the digram , children in some countries help with their parents well while other do n't do . Though it was truly a parrot , the conbination with the tree was nice . Today I went to a kimono shop with my mother because I intend to wear it to my friend 's weddding party . Japanease people do n't have many chances to wear it . I have worn it once at the coming of age celemony . I am worring about it . . First part in chapter one , `` Create a Pwrsonally , Professionally , and Financially Rewarding Career Doing What You Love `` . We talk to each other about our culture , food , clouthes and building in the past in our own country , and we try to compare between our cevilisation . We also talk about politics , sport , and trying to khnow what is new in arabic coutry ( because we are both arabic ) . I can read ( though I sometimes need to use a dictionary ) easy English but it 's difficutle to write in or speak English . And now , I want to begin learning English carefuly . `` I Call It Love `` by Lionel Richie is one of my favorit songs recently . Every time I threw hursh remarks to him , he accepted them all and kept on being sincere and sweet , except for my one word . Some people I know said that he is talking to me , because he wants a parmanent visa . He got furious about it and then said `` Foget about me . `` I strongly regretted about what I 'd done to him and appologized to him . Needless to say , broadcaster 's speach is amusing . Is it famous in your contry ? And I got conecter with iPod : ) I couldnt n't write down here my ideas . . Japanese citizens were stupid as well , and they kept believing in thier cruel dictators until the end of WW2 . In short all aspects of Japanese culture such as journalism , philosopy , scientific techniques , educational systems and freedom of speech were completely immature at that time . So Japan 's completedefeat in the last world war was inebitable . Oh , I forgot to explain about this movie and this usless battle ship . This usless battle ship sank in Okinawa with all its poor soldiers in 1945 . a battle scene was good but the other senes were boring . But I listen to a various music , Pop , R & B , Hiphop , Blues , Countly , Reggae . . . . But we can only chang new cellphones the day you bought them . There are many plase to go . I 'm looking forword to going there . Novemver comes in one week . Last Sunday I had the Toeic test and it was not quite good as much as I expacted and even after having this test , I lost my self - confidence about my English . I know I am verr lucky , furthermore owing to everyone 's help . I mean , I 'm so scared . I want to be a teacher , but I feel nervous . I am worried about not being able to provide the adequate instrucion , and I 'm scared of not being good enough for my students . Does this soud familiar to you ? In Japanese , there are meny many words wich are used only by man men and only or women . Some oversea studnets who really want to stay here have alredy found internships , but I am still struggling with my search though I am almost to the end . Recentry , I 've been really tired . . . . . I like the sitcom because it is realitic and the characters are so lovely . I 've seen many movies that Jeneffer has participated in . Todey 's Lunch I read a news site and the news site says that there wewe five hundred It is so interseting for foriner . My friends are foriner so I think that they will be interessted in that . Our city held the coming of age ceremonies yesterday insted of today . My parents bought my frisode ( long sleeve kimono ) for me . That early morning , I went to the beauty parlor , and I had my hair set and wore the frisode . Good mowning ! On Saturday I went to Edinburg for a vacation . english is not bad , but tiping is really hard TT It is very confortable to speak Japanese withont any stress and I am quickly drifting away from English . I am doing my best to recoll things about the pharmacy . Occupation : univercity student Finaly , I got my new driver 's license . creazy ? It 's already midnigt . It is so noizy . Sometimes my frinend and I go the supermaket to buy some sort of japanese snack to go with our beer , I 've got it all under countrol though . This is about educatioin , and I want you to correct it . For example , in en elementary school , you can learn the way of comunication not to mention studying , and you can learn to cooperate with your friends in a junior high school and high school . I think the tewm is a very important time for us , because you can find yourselfe . What is your dream , your thinking , your position and your best friend , through othere people . ( in anothere words , the people who do n't know how to comunicate with othere people ) Bcause I do not have a bad case of acne . When I speak English , it takes a lot of time to come up with right words so I guess I shold train my English so as to speak instantly . If his grandfather could eat a piece of memory toast which contains the memoey of Peter , his grandfather and he could chat to each other as before . why did Paku Yonha commite sucide ? ? : ( and he said that he really wantted to meet his Japanese fans . On the first day we went on an excurcion to / in the Kremlin . May 7th We went on an excurcion to the city . Suddenly , the bus driver hollered at me and said `` Congrandulation to you ! `` and kept explaining to me while I just try to figure out it as I woke out of my dream . I just want to write sth in English . and was mostly restting . So , we went to a zoo , and ther was a cheetah , which is my brother 's favorite animal and ther was a zebra , which is my favorite animal . then I can go to a Japanese colleage or graduate school . I watced `` The Sixth Sense `` . Yesterday , I watced `` The Sixth Sense `` on TV . Since it was something misterious , I was caught up in the story in a moment . I love watching the TV proglam ! I guess it is going to be a white Christmas tomarrow . / / URL Happenning ! ! The piano priced $ 130 seems to be accuate to a beginnner like me . I can connet a headset to it and play silently . I appriciate them . But a lot of people like too shopping there because it has a lof of things to buy . When I was younger I liked to go shopping at Sapan . They are open every day and all night , except Wennesday . They have a lof of dresses . In the Bangkok we have lof of supermarkets too , such as The Lostus , Big C , the mall , Centrel , Careful , Slam , Centrel World , etc . I live in Hokkaido , which is in the northen part of Japan . An auncle , as well as my cousin and his wife ( last month of pregnancy ) was there . Supermerkets . Supermerkets in Australia are far larger than those in Japan . I feel happy as inported foods are so useful ( ? ) such as anchovies , beetroots , fresh mushrooms , etc . I could n't get information about the tyhoon from my TV . It is prety good . I want to write a new dialy but I 'm so sleepy . . . so I created an account and now I use this servis . but guraduately I could handle and enjoy it . I have been so tierd since last night . Bringin back 4 chairs was so tiering . I think the new Singapore Presidnt will be elected today . The cafe makes a `` hanmade pork cutlet `` . So they depended on their relatives , but they teated them very bad . So the brother his sister all the time , up untill she died . I plan to go to South Africa with some Americans , and Brithsh in February . My friend told me I can use omegle to chet with foreigners . Actually , My mejor was computer science . First , I want to study Englsih and then get a job . ocassionally , you may grow very tired and frustrated . This is an open - air bath at the alcony in the room where I stayed . Because I felt very sleeply and the wind was so strong . Voice phishing is the ciriminal act of using a telephone to obtain financial gain . And amazingly , many people become victioms of their scams . It was intertesting , and we all enjoyed it . when I smelt somothing burning . So I looked over my shouldar to find my favorite my favarite blanket burning a lettle and fire was about to happen . but after the happening white smake lay around in my small room , Podcasts are amaging ! ! ! The title looks like it has a special meaning , but acutually it has none . : p So , starting with an easy question ; What do you think about lerning languages ? I have a plan to stay in USA next year , it 'll be the most owesome time of my life ! First I watced `` The Blind Side `` . It was at midnignt and so I recorded it on my DVD recorder instead of watching it . ( I 'm sorry this site is writen only in Japanese . ) Well , thanx for reading ! ! My English teacher in Japan reccomended me to study for IELTS before for staying in Canada . However it 's not nessesary for me to take it now for either school or immigration . However , I can not speak English well or understand talk among native speakers beacuse it 's too fast . So , somehow I try to listent to their lines , but it 's too difficult . I drank alcohol which name is Soju ( kind of Korea vodca ) last night ! In the past three mounthes , I had to join in my company for practices . It is realy suited for me . I mean , English is sproken all over the world . Becouse , I do n't like carrying around an umbrella . The orijinal is a manga written by Shotaro Ishinomori . I haven ' tbeen back to Japan since December 2008 so I was so excied about seeing my parents , younger sister and friends . I stayed my paerents house and had really good time . But actually I found this system very attractive because when people study a sencond language , it would be a great support if their writing were checked by native speakers . I am so apprecitated about the fact I had preapared TOEFL because it gave me many valuable experiences in Reading , Speaking , and Writing , Without TOEFL 's experience , socre , and training , I could not get those jobs in just two weeks . The university entrance mark will come out ! I am nerverse because ( I do n't think ) I ( will ) have a good mark . Vocubulary section 's results Mispronunciation or Mispelling - 19 % Actually , appropriateness and relevance as separate categories are kind of reductant . The bridegroom was the guitalist of my band , the bride was a staff member , and I was the vocalist . I want to send cristmas card to my friend . I heard that a lot of Finnish like Robert 's coffe . Is it ture ? Happy cristmas ! I am sometimes in a bad condition myabe because of my unbalanced diet . And then , at about 11 : 30 , my mom and I went to Waikiki to go shoppin and eat lunch . Mybe one day , when I start working , I will use it . If I give it up now , someday I could regret it . So , keep at it and do n't give up ! That said , I absolutly have to clean it up before October , because next year I go in to my third year of University . My program is called `` Arts and Technologies of the Image `` . I 'm realy happy ! ! I have reseved a mail from my friend in Korea . I mailed her that I worte Korea . She was so surpriesed ! ! Aomost 6 months Can I speak English very well with foreighn ? Most westen people have long arms , legs and big hips . I have a plan for leran English Frist , study grammar , second , read anything in English , third , see a kid 's movie repeatedly , fourth , write a diary . I remember especially the english exam . paticular the composition which asked us to write about a hot pot . God , I just wonder that there are how many Chinese guys that eat with foreigners . In fact , when I went to Canada last summer , there was many kinds of Englis because there 're many immigrations and foreign students like me . What I have to do is simple - put the clothes and detergent into the proper places in the machine , switch on some bottons and then hang the clothes in the sun . Through this inccident I learned that we must n't leave clothes outdoors when we go out , even thoguh the possibility of rainning is less than 30 % . Now we know they are peaceful speacies in general . `` I was moved by the ceremony and I am surprised at the things that vaorious countries take part in in the Olympics , even regions without snow . I was given souveniors from the Olympics . Even so , I should have kept practicing English writting . I only stayed there ond day or two day long . I do n't like ECC 's reading mehod . ( It 's not contenuous . ) The word SOHO , which is an acronym for Small Office Home Office , has become familiar sinse the Internet has become prevalent in society . Recently Japanese sewing companies are having trouble surviving because of low pay , lack of workers ( especially young generetions ) , and so on . They can use Chinease trainees with cheap wages since the middle of last year . Naturally enough , they have not been able to employ the Chinease workers at such a low cost . The Japanese government changed the minimum wage for foreing trainees . At tha time I did n't want to cry , but I could n't stop my tears . On the other hand , social enterprises can obtain funds regularly because they are run through the business mothod . I have been studying English , sinse I 'm junior high school student ; but , I ca n't speak English . At last I found a shoese store . I uesd to like partying and things like that , but not any more ~ ~ because lately every time I have been to one there is always some dirty secret for me to find out . I 'm trying to be a good girl ~ ` not saying bad things bihind other people 's backs ~ ~ but I always break my promiss ~ ~ girls are all about gossip I guess > < But now I realise how much happiniss I have missed during the period when I was dying to grow up . My favorite fruit is the peach because of its scent , juice , and sweety taste . The travelling time was more than 2 hours by car , especially because it was the first day of a three - day weekend ( Jul 18 is a national holiday in Japan , Marine day ) and there was a lot of trafficky . Fortunatelly , there have been no injuries reported so far even though 21 fire engines gathered and were fighting the fire for 7 hours . I will write an orizinal story . Because I nealry have a test . I write mistery , series . . . . I was concertrated on wacthing the fight . Every time a round ends her job is to walk around the octagon with the round board . Then she walked around the octagon and she blew a kiss at the cameraman before returning to her seat . I went to the university 's hospital even though today was Saturday because our doctor told all the members of ou team to go . We attended the morning conference and had short lessons from doctors , and had my instuructive doctor check my patient 's report . The messages said that my card 's number corresponded to the card company 's one , so they canceld my orders . I hava a bad memory . Recently I 'm trying to select English - speaking ones , beacause I can study English while watching them . The advantage is that I can watch it again and again , study natural dialogue , and for better or worse , learn some slungs that I was n't able to study at school . Russian is a wondervoll language because the sound when you speak is great . But I do n't like the votings , because the politic sythem is awul . I mean tracking ( change pages ) speed were slow and someteimes errors occurred . So I will wtite a diary about English Writing at Lang - 8 . But they are definately not . We are all Japanese habitants , so we must share the pain and the goal to overcome this crisis . How can I relex my mood ? farst day Intereview 1 Hello teachers on the interenet . But I have to take an intereview to go - which will surely be a hindrance for me . The following are some of the questions I will face in the intereview . I have put a lot of effort into the past 3 years to learn English languag . This included payingful a private tutor , taking English radio progurams , listening to pod - casts and using lang - 8 . The skills I 'll obtain will help me to faciliate meetings with foreign organizations . A Tyhoon will come to Japan . . . This tyhoon is so strong according to the weather forecast . Helll . When I saw the characters being chased by a big firce bird and flying about among the trees , it strongly reminded me of a scene from Nausicaa , a Japanese anime , where humans were chased by huge insects in a poisonous wood . In order to make the flash work , I did n't have a afternoon nap , but I debugged it after I finished it , it still didi n't work . I toally failed . I must practice English skil . I was suprise at how much water we use . From now on I will care about how much water or any kind of enagy I use . I want other people to care about enegy . We know that any kind of enegy is limited but many people pretend to not notice . If someone has a good idea that saves enegy , please let me know ! ! does it all make sence ? Therefore , that is cheap but the shop warker made a mistake . He gave me a warkman with speaker and cable ! Eventually , I bought a warkman and speaker 6000yen . There were many beachgore on the Zushi beach today . I think that writting skills of any language are very important since you try to use the grammar and vocabularies correctly when you are writting , that is also a key to influence your spoken languages . Many celeblities have the same one . It is a very sunny day today , unfortunatelly , the weather forecast saids that it will be crowdy and rainy in Hiroshima tomorrow . Althogh Mother helped me , it still took 1 and a half an hour to put it on . I offen call China 's embassy , My little sister actually had to study for an exzamination . She started working earyer than when I got my part - time job . The Majoriy of them in the west part of Japan are known as kuma zemi ( means bear cicada ) . Many people that live in the east part of Japan do n't know it and are suprized that it is so loud . Because , I went to a restrant with a discount ticket ! Then I went to another restrant and ( I ) drank some liquor . So , I restart studing ! I 'm woke up too late this morring , so I ca n't sleep now . That 's why I have felt abnormal about this summer 's climinate in Japan . Please tell me howe to write in English well . DoAre you interested in becoming Language - Partnaer ? I want continue my study at unefersete , but I am affraid that I did not do good on my exams . As you may know , wetbacks are Mexican and they enter America as illegal immigrtants . 80 persent of illegal immigrants are from Mexico and the other 20 persent is from Latin America , India , Brazil , and Chaina . The picture below are coffirs . The main reason is to get a job , earn money , and support thier family . Teenger Sayra lives in Honduras . Her faether in the America is deported back to Honduras . That 's why the farmer lose thier jobs and go to America . If global warming become worse than it is now , the production of corn will decrease 48 persent . One of my friends told me that the thing that you do not want to do is often the very thing that you need to do if you are atriving for success . celebrationg grandad and grandma . However , it is difficult to creat anything that does n't look like a blog . I 'd appreciate it if you would corret this . Which sentenses is better ? ? ? It reminded me of my baloons and how they used to fly in the clear skies . This is because there are many high school student who are studying in the libraly , so there are no seats left . I found the below canpain . If I get this money , I 'm want to make a piramid of hambergar . Hallo ! Nice to meet you ! They stay at my schoo and then tomorrow they 'll come to my house . This song is one of my favourtie . When you are lonley , I 'll be your friend . Today was the first time I have listend to this song in ages . I learned many things from him : Korean , Korean musuic , Korean culture and so on . Last night I have n't slept , because my nighbour has tourned his music sooo loud . . It make me agressive because he ist a Nazi - . - * I wante to learn about new computer technology and make it . When I went to a restaurant and orderd a Coke , the waitress could not understand my English . The restaurant was built as a place for disbaled people to work . Most beauiful place But temparature has been below 10 degrees . Some people say that it takes a pretty lonf time to be good at English , but I do n't think so . I was n't ready to speack any English when I got the U . Today , I bought Kimchi at a Korean maket on Geary street . There was something wrong with the bus that I took coming back to my house . Shoul I have got in a taxi ? I believe we can reconstract the devastated areas . I have made my son who is 10 years old learn to playing violine for two years , because my son was always just watching TV in his free time , and because I have good memories of learning to play the flute . At that time , my city carried out a plan to make this regeon active using music , and junior orchestra club was organized as a part of the plan . The city prepaired many musical instruments , and rents them to children for about 45 dollers per year . A private music school also got angry with it as competition with their business , and the school director blamed it in teir homepage . In my son 's case , the most difficut thing about it is putting off attluctive TV and making time for a lesson . He often frauns when I say `` Let 's begin music time ! `` I traveled and worked in Australia for 10 months 2 yaers ago . It is not a very toching story but I have watched the series since I was 10 years old , so it made me cry ! LOL I will definatley come back to this beautiful country again ! I am going to find a goot teacher and take some lessons . I want to communication with people from defferent cultures and countries . When I read the newspaper this mornimg , I saw an article about the ( I Attacheed the article in Japanese ) so that I get ascore of 800 on TOEIC . I think that I will enjoy myself more if I learn the culure and the history before traveling to the place . So I am going to learn the culture and the history of Hawaii from books and / or websites before visite it ! I try to read newspaper , some business magazines and website articles to inprove my English skills . But it 's too dificult for me ! ! SO , it took more than 30 mitutes to read just one areticle . I do n't think I can read that articles in the nere future . . . It 's easy to read and I can learn some usuful phrases . Besides that , it still has an antique little trian . And Ilike music , hip hop music . So please make me your freinds ! ! I think that Japanese people , of course incuding me , difenitely lack exposure to real conversation in English . This is in spite of the fact that most Japanese students usually study English for more than 6 years at school which is a form junior high school to a college . After all , the mojority of Japanese people can read English to some extent but most can never speak it . I recieved a picture of my female friend . She is twlve years old . So , I have to learn obout manegement a buniness . But I enjoy the challgenge . I 've experienced a roling power outage tonight for the first time . I want to improve my abilty to make a sentence . Has your father visited a lot of coutries ? Has n't your father visited a lot of coutries ? My favorite person is Ichoro Suzuki . Bcause he is a dream maker . Here we have a very large Russian speaking community ( appr . 1 million , we have onlye 4 . 5 mln peple in Israel in all ) . But our habbits and menthality keep us together . First dialy in English Today , I am writing a dialy in English . And at the time American ppl said ' ' Yah - ! ! It 's about the fanous historic detective BaoZheng . He was bery kind and helpful towards the common / ordinary people and detected ? ( resolved ) ? many complex problems . Today I sined up to this site . I can check your dialy written in Japanese . I wanto to help you , and I am suposed to attend one of my co - workers wedding . I thinkh has nice character and is a well rounded person . When he anounced his wedding we blushed out of shyness . And I will tell you what had happend at the event later , maybe it will be on Monday . This sait is diffrent . public or private , from primary school to junior high , hischcool to college , and university . This is my first dialy on Lang - 8 ! Today , I serfed the Internet as usual . I think it is important for me to write in English to learn correct grammer . So , from today , I will try to write a dialy in English every day . When I entered my office I found mony on the ground and I picked up it . I was at a loss whitch to bring it to the police station or bring it to my office 's director . After a while director said to me `` The money 's owner was founnd and he said to thank you for it . `` I tought to myself , `` I did a good job `` . What should I do when I feel life is treating me unfairy ? But there is no softs at my house . During winter vacation I will buy softs and go back home . They made announcements about Lion ( Mac OS ) , iOS5 and iColud , as reported in various articles . A film called `` The Stoning of Soraya M . `` has sturred controversy . Top Seles Hello . This week my classe begin . I am studyng to enter college , and it requires a lot of preparation , so I have to study hard . They give relief supplies and money and run relief operetions for victims . I wondered if I could do anyting for them , so I went to the Japanese association to give a donation for them on the weekend . I want to express an appreciation for the many people who help the victims in Japan , becouse I think they give a wish and courage to victims in Japan to live a positive life . Everytime , when I clean my room I was angry about why I have so much hair and why they ca n't stop droping . A Welcom Party Some people treat animals as objects and use them on a great scale since it can possibly maxmise the benefits for human beings . because my favarito lady is taiwaneise we talke in English . The LUMIX Phone is great because the camera is very high quality , as high as a normal digital camera . It also has seg , which notifies me of severe weather , such as an earthquake . It was a very actual theme because almost every person today has a personal accaunt in some social web . Every time whren I am given a topic and asked to talk about it , I find it is hard for me to arrange my thoughts : what are the issues in the topic , what to write first , how to develop it , and how to conclude it . Althought I see the many books about how to write essays , it remains a problem . After the younger guy left the bathroom , he went in the bathroom , but he had been in the bathroom about 15 mitutes , so there were a few people who were waiting for him . I 'm maiking a movie to teach the idiom `` come clean `` . Plese check it ! A : I saw You and Kana thare , `` come clean `` . It is a short - haired cat and has a bright braun color hair . Furthermore the climat of our room became more favourable and calm . In short , I think there is a big difference between guys ' disire and girlss desires . . . Acording to the book , love often increases , but lust just decreases . Jon always teases me that my Enlgish is regressing . And , I want to buy the lastest by `` ONE PIECE `` ! I have two elder brothers and one litlle brother . I read an article about The karete Kid I have watched The karete Kid 12 , 3 By the way , I 'm starting this dialy to study English . But I 'm very relieved bacause the mistake was not correct . I cleaned my house . My bedrom was dirty . I do n't wanna look like a wierdo . The thing that I will never forget is that an old geezer talked to me even though I had another custormer , and he did n't leave the store at once . Tourists can enter limited areas inside the mosque , even not isram believer . It was a drink that I had not known before coming to singapopre . It 's unhealthfulness . Then they cleaned up the nusery . Finaly , they went to a supermarket to do some grocery shopping on an errand for their mother . Many Japanese look fowerd to it every year . But Adlut have to think about something . Therefore , adlut shoud not be selfish . I 've forgetton a lot of the Japanese bussiness rules . It 's really imprtant for bussiness in Japan . I have n't forgetton this one , but when I 'm in this situation , I sometimes use some casual words . Come to think of it , I sat down in a chair without permission from my cliant . They go to elementaly school now . It is still chilly in the eary morning and night . Do you like to stddy in the weeken ? Thank you for helpping me correct my journal Do you use `` that `` when you say something you already mentioned or something mutully known ? ? Last night , the teacher is a blocak man . He come from Botswana . I hav n't hated Japan any more . I think this is a past thing . I studied aerospace engineering and probabily I will continue to study it in October ( another 2 years ) . English in fondaumental for my future job and for my study . . . but I struggle to pass from grammar to costruct phrases , speeches . . . I enjoy soccer ( football ) , basketball , cycling ( road racing ) , using my Mac and iPhone , taking photos with my degital camera , and so on . I 'm moving to another seet . But I forgot all the pain when I saw the beauiful sunset ! I could n't understant the story because my lisning skills are bad . Theseday , after work , I 've my waist ached . In the morning today , I was so surprized to look at my waist . I do n't feel regretless for sacrificing sleep . They are greate ! If I want to thanks you , I would write in the card to ex `` Thank you for cherring me up ! : ) `` But when I remembered that he has seventy milliar dollars when thre are a lot of hungry people in his country , I said that he deserves what happened to him because he didn n't have merce on his people ; we shouldn n't have merced on him . Eventuially , I want to say congratulations to all the Egyptians . You have been patiant for thirty years . Congratulations to all the youth , men , women , and children who spent more than two weeks in the streets making their demands . After he returns from work , he takes off his clothes , of coure dirty socks to be contained , in the room . I stuied german in high school and I stuied french and chinese in university . Anyway , I 'm going to eat evrything I want to eat . But today , I did n't have anything to do , so I went to the Japnese market near my home and borrowed my favourite DVDs . It will probably be performed untill the twenty first or twenty second of this month . He 's a menber of group clled SMAP . because I ` ve just signed up to the Lng - 8 website 3 days ago ! The rest of us was very suprised , but we all said together , `` Indeed ! `` For example , if a gay couple from California go to Texas , their marriage bacomes illegal , which means they are not married anymore . Thphoon 12 However , I have n't spoken English in a while , so I wana to inprove . I ` m stdying English because I want to travel abroad and talk to foreigners . However , most of the time I was talking to Japanese people . I had hardly talked to local people or foreigeners . I felt disappointed that I couldn ` t speak English and so I dicided to study the language . We are staing here until next Friday . Also , our hotel is fantastic ; we have a really exlusive and pretty apartment with the most beautiful seaview ( which ) I have ever seen . They ( have ) sent our dog to a different continent ! Amol is propably in China ! And last , but the most annoing thing is stupid French people . They are so rude , they propably think that they are the best in everything in entire world , and they treat tourists the worst . The number of subjects is few and easy this year , unlike last year and the yaer before last . Will I receive the answer by cristmas ? I will go to the same concert tomoroww too . She told me she had gotton a driver 's license in Vancouver . Because before thet , I had only been around downtow in Vancouner . If I had a driver 's lisense and a car , I could go to any beautiful place in Vancouver . But for now , I want to forcus on studying English and getting a job . I am a biginner of this site , Lang - 8 and I do n't know how to use it well . I would be greatful if somebody can help me . I submitted a job application last manth . Althoght , I got a sad reply . I have been suprise to see this is a nice website that has a lot of friends to learn language . Therefore I wanna see many things , eat something delicioius , and have a good time with my frineds ! ! ! I had a headeache , stomacheache , fever and a sick feeling last night . We deepend our friendship . I will spend the money on deliciaous on our trip tomorrow . I couldn ' t attend the class althogh I went to school on time . dialy ? When I listning to songs that are written in English and watch Hollywood movies , Aham ! I do n't want to do it and I get so frastrated . Sometimes I can write in English easy and comfotably . Bella 's pronunciation is especially difficult fot me . I went to my friend 's baby shower last Satuday ( two days ago ) . My friend tried fertirization treatments for the last seven years , so I kew she was really really happy about . giving birth to twins . We had delicious food and a lot of girl talk . We all cried when she told us about her babies . We were very happy and many people came and cereblated . with her . Studying everyday was so hard for me , I have to study English , mathmatics and Economics . I will traver to Busan , South Korea . The coloers which are used in the movie are so beautiful . If someone likes Japanese movies , I 'd like to reccomend that person to watch it . I went to the liblary this morning . `` POMERA `` is a writting tool . Wheter they 're brothers or parents , they propose marriage . Can you belived it ? I get transffered every three or four years . In the last while TV in Spain ( but realy I think in all countries ) has become crap . I realy hate them . Now I have more time to dedicate to myself , for learning about the things that realy concerne me . Many people spend time complaining about TV and those programs , but they continue watchim them , creating a vicious circle . I do benefit a little bit from promogeniture . This is a typical Japanese male hobit . And the techniqe called `` Mushup `` is interesting . Have you heard of this proffesion ? I am studing mining enginnering and I want to learn English , please somebody help me beause here ( in my city ) it is very dificult find somebody to practice with . I 'm on the burret train , the `` shinkansen `` I did n't wacth TV at all . I do n't get time to wacth it at all . So I have no idea about news liike nfluenza ( disease caused by a virus ) . There iare many people who have masks and do n't sell masks now . Today , I dicide to start a diary in English , because I want to improve my English skill . They are used in semicconductor , degital devices , and so on . Recentry , I like foreign dramas . My favorite drama is `` frends `` ! massege to . . . I hope you enjoyed being in Jordan with us , and goodluck luck , we wish to see you onother time . First of all , I ca n't correct my compositions , because I do n't know how to display the keyboad when I want to correct . expecing a reward after a good deed has never been seen in the Chinese society not untill recently . for example , some people claim for money after helping someone catch thieives or returning another 's picked - up purse . and whether a reward should be expected has arosen unprecendented heat discussions . Furthermore ( or `` In addition `` ) , I really do n't think rewards could stimulate more people into doing goos deeds , for it can only rot one 's pure mind and complicate one 's simple thought . my boyfriend Andrew got acquainted with my father and I think they deslike each other . . . I love Andrew so much , but I ca n't desagree with my father 's opinion . . . and it is my favoraite . and I 'm going to movie theater tomarrow ! ! ! I 'll make an appointment with a pediatrics on Monday . I really hope my doughter will be well . So I will go for it and learn somtthing from it . The passage said that if I ask someone the way to my destination , I should say `` Could you tell me how to get to ~ ? `` rathr than `` Please tell me how to get to ~ `` . I study English everyday to enter University or graduate schhool in USA . But I think I will eat before I joine my class , because I did n't have a breakfast . becase my major won in the quiz competition . and I will appricate if you comment on this diary `` You killed two innosence soldiers , But you denied the suspicion of murder so you will be imprioned . Take the defendant to the prision ! `` in fact , it was a kind of elivator . then , Tessadar touched someting that looked like a ball And , the basket moved quickely . Tessadar swung his arm slowely I shold sleep I 'm glat to find this useful site . I 'm a staff at a wedding celemony . I got a lot of messeges for birthday wishes ! Today , aSex and the City premiered in Roppongi Hills . We ate Shushi for lunch . I ate pretty great Shushi . I got really excied and missed japan while eating it . Fortunetly I did n't need to pay , Tomorrow I have to get up eariler , But I 'm in Hokkaidou now becouse of the summer vacation . And there are two answears . Which ine is coorect ? It was quite expencive , but I 'm feeling good though ! So it 's ok . Moreover , the slogan `` Waht are you made of , `` shows ownership of the watch . However , this advert can adress people who drink Pepsi . wohoo . . As you may konw , the highest mountain in Japan is Mt . Fuji is coverd with lava rocks , so it is not very fun to climb up , at least for me . ( : p North is a fascinaing mountain becouse it has a lot of alpine plants in summer . I 've been into mountain climbing these past 5 or 6 yaers . I went shpping for 3 hours . A pease of square paper was the universe to me when I was littele . I was luckey I did not see real / live boar while I was enjoying hiking : ) Because Ihope I can talk to forleign . But his words are relly hard for me to understand , because he always talks to me about philosophy , at the same time , I am a girl who majors in business administration . of cauce it 's not all . but I cought exprience of a lot of things ! A Return to Beginenr 's English : 6th day I 'm placticing ballet in my house now . I think we shold protect the earth from getting strange . You should be get a budy ! ! ! I get iritated whenever everyone else does . I think it 's really inportant to sleep well . I 'm majoring in law , and I 'm a nember of the GCP . GCP stands for `` Grobal Citizenship Program `` . Do you watch the TV program `` Frends `` ? Frends is a very popular US comedy . Frends is very funny . Non - alchol beer This week I have not been drunk of any alchol . It 's a miracle for me duaring the past twenty years . There are reasons why I have n't drunk non - alchol beer this week . In Japan , we have seven kinds of 0 % - alcohol / non - alchol beer now . When we drink any alchol , we feel comfortable and dull . I think that alchol is a time - robber . But if I dring alchol , I lose my motivation that I want to do something . Owing to non - alchol beer , this week I began to participate lang - 8 to study English again . It took for 2 hours , first 45 minutes for the listening section , and then 75 miniutes for the reading section , without a break between the two sections . I asked myself why I could n't cathch the answers I could at home and I became more nervous . I relly enjoy learning English . Today is the first day that I regisited on Lang - 8 ! When I went home , Paster 's waife gave me a ride to go home . I thout that it would be convinient if I have a bicycle . I knew that the one person who I have ever quarreled with is semilar to myself . I do n't want to metion his name here . I just hope that he has enough skilled and stuffto overcome the seducement . It seemed their opinions are conpletely different . We confused and mad , but we obeyed the indecation of Doctor F . This moning , I got my grade There are 4 parts in the exam which are grammer , speaking , assey , and listening . I looked around it and joined immediately , because I thought it was very usefull for me to learn English . This site is great for us to study foreigne languages . This is the highest temperture I 've had in my life . I study Enblish in class . konichiwa felow friends I finaly got a sneek peek of my comic on facebook but its backwards and summimasen about that but hope you can see its artistic work if do but vol 2 is better than one and im also try real hard to study more japanese so syonara freinds When the two boards touched a line 50 meters away , we went through a net tunnel , then stopped at a shlfe which had six toy oxes on it . We had to knock down the six oxes with little bags filled with sand before we hit a gong at the finish . The gruop that had the shortest time won the championship . I was hoping to find someone to teach me spannish : ) I am totally fasinated by this beautiful language ! I would rather the maneger would n't tell his secretary about the deal . Tere are these kinds examples in my textbook . Additionaly we can patiently hear their speaking because we know how they feel . This orchestra was structed by handicapped people . Yesterday morning , I had a regulaly medical check - up and drank a lot of varium . After I drank a lot of varium , I had to be rolled sideways three times on the stage of the X - ray equipment . I 'd like to try to make a good solution by using what I have leared this time . Peopele lined up for hours there . That means tmr is the last day of my holiday ! ! Finally I decided on my favorite one , and then I brought it to the casher . It was warm and sunny in the morning and windy and rainly for the rest of the day . They are so so cute becaouse they are very much like me . I tried looking for a paking area but all of them were full . . . Becausae it was a sunny day , I felt comfortable . Today my mother 's friend with her dauhter came by . Her daugter is 9 years old . And I will appreciate the hepful corrections . I realy respect them . There were people / students doing different activities , some were playing football , some were ( ranting about their naggish mothers and their shopping trips on weekends , some are were developing films . 1 I got a chancce to talk with him I hope my personality will grow through my realationship with her . I often egnore the alarm and do n't go to turn it off at its first ring and it makes my mother annoyed . I 'm teaching mathmatics . Oh and sadly , actually not so sad but troblesome , my periods just began yesterday . And coincidently , the day after I emailed them was the new member night that is held every two years in the choir . I started to write a disry on lang - 8 . We had such a good time that we decided to meet again next Wednesday at Nara , whre I live , I have to carry them form town to my palce , so I only buy necessary things such as rice , vegetables to make some soup , water , and so on . . . . . . Tomorrow , when I go to town , I 'll buy some cookeis for her daughter . I write a dialy for the first time . I got some live experience , and I used to think that all experience are usefull , no matter good it or bad ( the situation ) . I used to hate English ( I really DID ! ) , but now I love English : ) I 'm now using this site to find new friends and improvw my English even more ! I 'd like to speak these languages fluentry . Looking forwad to your `` Motor Season `` come soon . The contents of the other book is English for bussiness . The needed skills for bussiness is comunications and technical skills , is not the right English . I hope that I get qualification of a Yoga instructer and international of it . I ate susi . The point is that we ca n't determine what kind of inpacts the products will have on our helth in the long run even though they might prove to be safe in experiments done by scientists . After all , I think our helth is irreplaceable especially with the low prices fulfilled by the mass productions . becouse I had oversleping . I had gread time . It had softer fur than I thougt . * My grammer is probably terrible today . I have just started to larning English . I know that my English is not ecxelent . It is that I will be able to explane my true feeling with someone even if / though they do n't understand . I had better fhinsh now and go to the bed . Fortunetely there were no broken items in my house . However , I still can not ajust myself to this new life . Mealwhile , there were also many rabbits in the tree staring [ in ] at what was happening inside . After I finished work , I went to the chep restaurant near my house . And I took two math tests , one mechaniscs test , one biology test and one thermodynamics test on September 1st to 3rd . Yesterdsy I went to the city where I used to live as a student ten years ago . This is my first daiary . It is practice course and shorter than a real golf cource . plese tell me . These sentences , or parts of sentenses have some gramatical error , ( or misapplication ) but I ca n't understand what is incorrect and how I should correct it . 1 . Make students translate only the sentenses in which there are grammatically important parts . 7 . To concentrate on Japanese sentenses makes students think that they 're more important than English sentences . 10 . japanse has many ways of expression , as well as English . I hope to have a great night . Nagoya has several pleace to enjoy . I went to yoga lesson this moorning . I get stuck in traffic so I was late a littele . Today , I worked to clean and movemented my firefox blowser Because my old account occured some problem , , and I hope that I can do somthing that can only be done in a student 's life The eariest train is at 9 : 00 . Bills at Tokyo opend last month . I had been eager to taste it . I need to know not only English but also the choise of words . I wish a happy Chiristmas for the both of us ! A werid movie : It was croeded with many people . I found an interisting painting there called the `` Tinga Tinga `` . They 're calorful and beautiful with dericate brushworks . The reason is taht I am too lazy ~ HAHA ~ The actor is so cool ! ! ! ! I recomend it ! I 'm Yukiya Japan . The heavy grouth of white narcissus looked like a white carpet . And I had no idea what to say upon seeing the hill , decolated with bule Nemophila and rape ( ? ) blosspms , the most popular place in this park . This year I participated in the `` North Califolnia Cherryblossom Festrival `` located in San Fransisco . San francicsco has many large hills . Some people dancce with us while others took pictures . This link is precios to me and I would like to keep it that way . I 'll tell you guys about fasion , which I love . I really love fasion , clothes , shoes , bags and accesory etc . . . Nowdays I notice that with good sense I can make a well coordinated outfit with cheap or reasonable clothes . Fortunatelly , we have many choices because there are increasingly a lot of good stores , which are , Foever 21 , H & M , UNIQRO , MUJI , GAP and ZARA . Please tell me your tought . Well , this post is not about the date of Hikoboshi and Orihime , who are the couple of the Tanabata regend , but the one of my daughter and her boy friend . These3 guys can ( both ) sing and play well and they made theaudience laugh with thier funny things they said . Yesterday my friend and I went to a Restrant to have dinner . Bread ( toast ) gets mold quickly , too . Now I am learning English for CET - 4 , I like English , but I find it such a pian to study . Especialy remembering new words , I have a feeling I 'll nevre remember them . I currently use a `` futon `` , Japanese matress , but it is too thin to sleep well . I 'm looking forward to the deliverly . Earthquake and tunami . I 'm OK . So many people died in the tumami including some of this hospital 's staff and some patients ' families . There were collapsed shops , overturned cars , much wested ( ? ) material . I think winter is comming soon . I had n't eaten during the twenty - four hours before ( noo , I did not eat him ! ) , so I bought a burger because there was nothing else . The main charcter of this comic is a man who is an asasin . So he needs to disguies himself as a woman . I am worried about tomorrows wheather . It was for Christans who want to learn more about worship , praise , and prayer . It was a blessed holyday ! : D And , of corese , we have one too ! If I should break my right hand , shoulder or an elbow , I wolud use the others . I registed with this website to learn English . Before I 've got to konow lang - 8 . I really appreciate if you colud correct my bad English . Now I can see that writing on a computer in diferent languege is more dificult than using my native one . It would be a great opportunity to learn foreign languages and make freinds . I recommand these songs of his : Gick in the pink , Remedy , and Wordplay . only the sound of rainning . Do you still remember me from the day it was rainning ? Ykiniku is broiled meat . Reunion Pary First , we were a little bit nervous to converse with each other but after 30 minites , it was just like the old days . We got imformation from the service desk . I want to go anywhrere ! ! I guess it 's just a more polite way to ask for information or a favor ? I tried to conect the internet , but I couldn ` t get it to connect . Very siriously . My favorite game is syogi . Do you know syogi ? Finaly I found a good one . Also , we ordered ice - cream , tosts with ham , cheese , and bulgarian pepper , and herbal tea . In conlclusion , technology is useful for education , but we need to have the ability to carefully find and sellect information . For example , themal / electrical conductivity , lustre , ductility , malleability and so on . . . . . I went to the hospital yesterday , and took a lot of medecines . I hope they make me comfortable quickley . The medecines costs 2500 Yen . Favourite : basketboll I remenbered days in Japan . I 'm very happy to strat writte something in english . it Seems I like a good chace to improve my english writing skills . But the vocalist forgot the lirics : p I had a grest day : p Here you can see a picture from October 29th , 1929 , the day of the stock market carsh . There was a fly on the celling . My room had a high celling and the fly was on it . Besides , _ there are few powerful and united orgnizations or associations that can shoulder the responsibility for holding massive and efficient activities on a worldwidely scale . What is needed , _ therefore , _ is education and pubilising . Meanwhile , _ governments have an obiligation to encourage citizens to take actions to preserve creatures via legistation and public media . Likewise , _ national and international orgnizations aiming to save the Earth also can play an pivotal role in publising and education . I think the reason it is hardnessof to learn english is remerber vocabulary words and speaking fluent English and listening every English . Hello ~ I 'm a newbee haha I didnt mean I wanna be a singer or someone famous , I just want to do something about music . Auch ! I hope that I will find a good job adter . graduation I insist that dreams will come ture if I try my best to achieve them . I changed my job to an Amarican campany . I am going to keep up writing my dialy . I think this is a very interesting and exciting survice . Some peaple think hobbies are a waste of time but I do not think so . I have a stomatch to go to the office in such a day . My area was n't damege . But a friend of mine from Lang - 8 was worrid and sent me an email . Words are the smallest unit of languge . You should study this Before you start learing or speaking English I ca n't write good English when topics are complicated . sudenly , my English is going to sound strange . I would aprecciate it if you would talk to me in English , 'cause I would really like it . I 'd also like to have someone to talk to , so thank you . I hope I will also be usefull in teaching you Portuguese as well ! One Onigiri has only 150 calory . I lik Onigiri very much . Today I ate roll carvege lunch with my corworkers . In my office restrant , we can have lunch by 500yen . I could sympathyzed with it very much . even I have 3 accounts of twitter * I forget the oasswords of the two accounts , . . I have been eating a lot of fruits and vegitables . But I still have this constant feeling of laziness and fattness . . . Please do n't hesiteta to talk to me . In the city people respect the players who bring their own gear , especially viloinists or cellists . But they ca n't drink after a gig ( because drunken driving is a crime in Japna ) . Finally I recommned you play the cello if you have a choice between it or a contrabass . I lve my home and my parents . he told me to , cross the road , turn right and go staight along the street . Thanks million for readin my entry ! ! The Web is Degenarated Actually , it 's given us uncountable benefits and an unblievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on thier cell phones and who are absorbed in the web for long hours , not to mention myself . Fortunately , we didn n't sustain any damage . The next day , the Chile earthquake happend . I carrently share an apartment with a Chainese man . However , I 'm thinking about moving to another apartment , becouse my present apartment is far from my office . Today , I was very suprised to see a piece of Yahoo ! It said that KENJI OZAWA is re - starting his music activtiy after 13 years of silence . But because of Woods 's scandal , other important news was overwhelmed , e . g . the national health insurance problem , the Afgan war . . I 'm not noly excited but nervous too . I will send an emai to you when I leave for America . I really enjoied myself . The Theachers are jentle and nice . ( spelling errors ) I 'm a Chinese girl , I like speaking English , but I only speak a litte . class begins at 7 . 00 and is over at 21 . 45 , so I go to bed at 23 . 30 , I will studt for1 hour before I go to sleep . In about a fortonight , I 'm going to Sydney to study english for 6 months . I am really interested in global environmental problems , so I want to study that in univercity ( Im not a uni student yet ) . Japanese eat rice alomost everyday . last night I saw sseveral young jews taking pics with menorah and singing songs in the streets . ahaha I chaged my profile picture which I had taken on wednesday . Today , I listend to music and . . Now you have two opcions : soft yolk or hard yolk . Tret ' yakov 's Art Galery Many ages ago in Russia leves the merchant Tret ' yakov . He liked Russian art and bought paintings from great Russian paintists . This museem is named `` Tret ' yakov 's Art Galery `` , or in Russian , `` Tret ' yakovskaya Galereya `` . And now the Tret ' yakov Art Galery is a great Moscow museem . Every day this galery is attended by a lot of people . They look at pictures of great Russian paintis . Tret ' yakov 's Art Galery has not only pictures and statues , it has Russian culture and history , becouse these pictures show Russian culture and history . It seems like Obama will stregthen gun registration or reguration . 3 . shoot the ground or sky before shooting a fuman . 5 . anyone shooting a fuman must be guilty . I wanted to go to bed but I could not becasue it was too early to sleep . because of his fast pronunciation and an accent different from an america . anyway , today is my first day in londonm . I think I will need time to adapt but I belive I can do everything like studying and making friends . I went to shopping with a good frident of mine whose name is CHENG . She was shocked and felt ashame of herself . Yours sincerly , Plobably they will become sweet tomatoes . : ) I am waitting for my visa Today I 've decided to skip some classes at school and just rest a little , enjoing my free time , I hope I 'll be perfectly healthy on Monday ! First I will try looking for a new appartment . It helps me find a appartment quickly so I can save time . I do n't need to check the website The end of winnter vacation . I am feeling diamal . I am a real igonorance with the PC . Many pictures and paintings are exsihited on the walls , which add some entertainment to the place . My brother and I went to a health club in the evenig . In this thinking , every person has three unluckey years in his or her life . Sevastopol 's small streets are attrective for photographers . The outskirts of Svtpl were built in another way : small white houses predominate there , with colorful roofs and doors ( we took our photos . The rest believed the use of cyber cyberlanguage was more convenient than the formal one . While we are alive , we ca n't juge whether our life is going the right way or not . Although it 's a new generation now changed , the education coruses have not changed . That is the reason why untill I graduated high school , I hated Korea 's education courses . But after entering university , I was dissapointed , After graduating school , when I 'm looking for a job , the interviewers check my abillity in grades , licenses , TOEIC score . . . So we should try to think about it from the yonger sister 's point of view . The yonger one , Bess , has to depend on her elder sister , I 'm chatting with my friends on messanger to plan our Christmas party . I expalined the problem to the clerk at the bank and who sounded very kind . why did n't you hanp up ? `` I highly ricommend that if you have any iPod . Japanese are not as careful as Koea about it . I used a lot of expressions whic I learnt today in my entry . I deside to practice English by reading magzine ~ And I spent about $ 100 on magzine , so I really want to know how to use these words : If I have a oppotunity I would like to use the slang words from now . I would say to my freinds `` Hey what 's up , dog ? If you have cool a hat `` That 's hella cool `` If I get angry at my freinds `` Hey stop trippin , dogs `` What would I gon na be if I use those words for strangers ? I wake up in cold weat . Well , anyway , I 'm still waiting for my cell pohone to ring . I went to a trik art museum today . Some projects are implemented in big citty , such as Tokyo and Osaka , but others are in small and poor villages . hope I 'll be ok tomorrow morning . Each charactor in it has their own features , especially Jeeves . I bought some grosseries . Are the following sentenses correct ? Hi , my name is Javier , I want to learn English and make many friends , if I can help someone to learn Spanish , I 'll be glad to corect him / her : ) The fried vesitables were good too . I told them that I have a lot of small things and I often forget where they are , so I can this blsket to organise my things . I 'm studing English : - ) And I can help you studing Jpananese : - ) many people visite there . Many foreinger who were missionaries and business people used to live there . so there are many charches . I saw the first charch of karuizawa . One good thing is that I made my mind to try to speak to foreineers at the birthday party next month . Today I taked to my freind who went to same university . I taked him our lives and girlfreinds and jobs . But I prayed for a wish to be peace in desaster area in Japan and all over the world . First : after lanch I ate lanch . The Japanese Royal family has over 1000 years histoy and there are so many traditional rules . So she had straggrled about traditional rules and the pressuer to have son . she finally got mental diseas . She has an only daugther but she is loved by her husband . Actually , as I wrote long ago in an entry , I seldome look at those ranking pages . If I had time to read the page , I would rather use the time to correct my friends ' entries more . I want the webmaster to delete those pages , because the pages are not so usuful for me . I 'm just a 19 - year - old college student , and I do n't think my native langage is better than many other members from Japan here . They are probably thinking it wil take a long time to feel relieved , this means they will grieve for a long time . At the beginning , I think they are qualified to comfortting those who are now grieving . I will go to KYUSYU for a bussiness trip tomorrow . I work in a Hospial . Our relationship has continued for more than 3 years after we left the university and when we both got jobs , our destinies were separated unfortunatelly . These days , I watch Deseperate Housewives . I 'm tired due to shoppig and going home with very heavy baggageeveryday . I 'm afraid of making friends and studing etc . . . Japanese , espicialy thebaby - boom generation , believe all ofwhat commentaters say on TV . Schedule for tommorow Espesially the big problem is dismissal of temporary staff or part - timers . Went to a classical consert and Kamio Mayuko played as a solist with the Budapest Festival Orchestra . I have listenned to her performances by CD and TV until now . What do you usualy do while you 're on the train ? additionaly , I am paid 1800 Yen a hour . Nice to meet you . Would you mind correcting my plofile ? My English Language ( Gramma , Speaking , Reading , Writing ) is n't very good . Next saturday will be my friennd 's wedding . Recently , I learned the role of social warker . I think the social warker are an important part of the community . But , we do n't appreciate the importance of social warker in Japan . My life in Jakara ! ! I am enjoying myself so bad . It is defferent from my previous impression , meeting new people people , eating food , sight seeing and stuffs . As you know , Indonesia is still depeloping itself as a country and I feel enthusiastics every day by seeing people on the street and huge traffic jam . everone asked what my name was , where I was from , and how long I had been here for . One thing happend that happened surprized me . There are many hills in the city , that 's why I can always btreath fresh air when I go hiking . Most of the members came from European countries such as Germany , Italy or Rumania and they speak really well . Do you think that writing posts on this page is the only option / posibilities ? I hope I can enter my ideal college and get an ideal job , and take responsiblity . I thout , `` I will also come `` . after military training , my mother teld me that she wants to buy a house for me . Good mornig everyone . Here is the email that I would like you to crrect . I think that he is cool , but to tell you the trurh I think that he is coquettish . I like yakiniki very much . She was a travellar . Perheps that is because a large amount of students are studying in universities far from their homes , so parents use them as a way to give them money while they can not make money themselves . I think that a credit card has become a neccessary in daily life even for students . Thirdly , using a credit card to pay tuitions is also very convinience . On twitter , I heard my frined bought a peach from Fukushima because it looked very tasty and was very cheap . The first exam , called ' the Center exam ' is held on Junuary 15th . Fireworks in Darling Harver I went to Darling Harver in Sydney with my friends from Korea and Japan . It 's terrorable . I had to return it by the mext day . . . I tried to buy some shrits , but I did not have much money , so I walked around looking in department stores . Please imagin that if your eyes were bigger than your stomach at dinner . You would find a pile of leftovers in front of you . We heardly heard of the Asian black bears coming to residential areas after we started to stay there . Knowing how to use body language effectively is very important for me , beacause I think one 's frist impression on another person [ can help me to strive my dream job in the future ] ? This was the first time taht I used an Internet shopping service . I am very sorry that I have no time to correct the dariy . Because I chose this work , maybe it is the fale that l should do . Sping Festival will come , it is the most busy time in our company . I can not go back to my hometown to get together with my family and friends . Why it is the pegion ? A smeil for you . My shop is salad shop , and my lunch is always salada . I ate the salad fast , and after I opend the hamburger 's bag . . . I enjoy the time when I study miocrobiology . San Francisco is very exsiting city and I 'm engoying some activities here . I 'm lucky to experience this rare ivent . Outside is still dark , becaues it is 4a . m . Becauses yesterday I went to bed so early and this is spontaneous : Dhahaha He did not know whether the post office ws nearby . It 's hard to explain why I like rany days . I belive that TV has reduced communication among famillies . Diffrent clothes sometimes influence how people behave . but I like cherry blossam in Japan . unfortunately my alergic can be caused by a chelly blossoms x ( Today , I attended my first seminer by Randstad . I deciede to restart my English and Russian study . Your attention will be apprecited ! My group picked up `` at fast food shop `` , because one of my group member is working at KFC : ) The situation we came up was a couple making out come to KFC and KFC staff complains about it , but then the caple fight about silly things and break up . I have worked in a government - owned company for severl years , my post and salary are OK . I 'm always eating tomatoes because it is healty for me . A charity match for Tohoku victims is being held in Oosaka today . I met pickpakets in Spain today . : ( ( The pickpakets had gone away , but I still felt scared . The cost would be compared / compable I thaught they were almost the same . Despite resistance / resesiting I learned the grammer ( preposion + ~ ing ) My eldest doughter had a sports day last Saturday at her junior highscool . I 'm a Russian but actually I live now in Moldova ( it is at the border of ucraine ) Iife is short , while art is long . Apple funs must be buying their products again and again like me . There were some stans and I bought a crepe and a pack of fried noodles with sauce . ( factally nowdays the depressed economy in Korea is causing a decline in the price of houses ( ? ) . Howerver becauseprices were skyroketing in recent years , the actual price is still quite high . ) Then I woke up my second daugther . She looked outside and she said `` Snow ~ Snow `` such a very happy smail . Helooo ! Lately , I have been eating boiled brown rice because it is healty . Recentry , I 've been realy absorbed by glee , a drama made in the U . is very delightfuly ! ! Of couse , high school life in Japan is also very , very fun ! I never thought it would be so inconvenient chang majors . So today my cosin came over to my college to help me . Chaina Business Trip I 'm a begginer . I 'm studing English . So , I entered university again adn major in English . There are still afterquakes several times a day . The Japanese cheif cabinet secretary said , `` There is little radioactive leak by the explosion . Untill I become a uiversity student , I have to study English because I may be not able to keep up lessons . I 'm goint to the office now . Pleasa assist me . When I was a junior high school student my teacher taught me that there are many defferences between Japan and America . Now , it 's time for everyone to clean up your place throughly in preparation for welcoming New Year . America pregident changed obama , in Japan the Democratic party has had powerfor 50years . Last praime minser Aso can ` t read Chinese Characters ! For example , they marrige , have children , get a house or lose money . I was sent to rescure a man whose neck was nearly broken He was bleeding steadily . I was very tense at that time . I said to myself in the dream , `` I am the only man who can rescure this life ; I must do my best , and do it as fast as I can . `` Golf excerise I excerise last weekend near my apartment . I hope to become a golf player in the furture . I am going to learn how to use phoshop . I will spend my time today looking arond for a photoshop feature that I can learn to use well quickly . Then , he showed me his left arm which had a tatoo ! Although I quitted piano , I 'm making extra special efforts to be a frigt attendant in the future . I 'm looking forward to your reply , and also plese tell me about your daily life ; D I came back to my hometownin on my vacationm . Actully , I 'm worried about my English . . . When I was skating , I had follen down . . . ! ! ! These days we can buy many pre - prepared foods at glocery stores . Qustion in English So , if you are interested in it , please chate with me . A waitting for your reply . Wecome to our club Wecomre to our basketball club . We beliveve you will jion a wonderful club . A strong person will bacome stronger . Whatever your answer is , it 'll be a fullfiling experience . 5 days ago on Auguest 2nd , I left Japan to study abroad . I also have problems with tenses and grama structures . It dessapear in an instant , if I try to swat it . I heard from my colleage yesterday that tomorrow is Teacher 's day in vietnam . I practiced a vietnam song that young peole like . After I sang the song , I gained strenght and confidence because many peole complimented me . `` you sang very well `` , `` good jop `` . And I successed . Did you watch the Tunami videos ? Everybody just thought that was a pretty strong earthquake so it would probably cause a bit bigger Tunami than usual . I would like to take the end of the company graciously , and veer my attention to another futur . The Toughness of the charactiers ( no I ) . And one of the grayhoud staffs told me we might had to wait more . Yestarday I went to the seminar at roppongi . I could have had the chance to speake with an American and I tell him my thoughts . As Pual the octopus predicted , is Spain going to win the victory ? After reading this article I felt inclided to go there . If you check with them I would be very pleased and appriciate it . Some birds were singing , the sunshine was warm , the breese was stroking me kindly . So `` Sesami Street `` means a sall seed street or something like that ? I was recommended by a frind of mine to register and become a member here so that somebody can correct my English mistakes . The author says when speaking you should know some rules which are comon among English speakers . For example , it says you should use some words without pausing , and that you should know whether an exspression is formal or casual depending on the stuation . We had a Christmas party that was held on Dec 24 , and we reserved a cafe that my friend maneged . Have a good nigth ! ARASHI , a Japanese idol groupe , seems to be very famous in Korea and Taiwan . Have you read the book called something like `` To Find a Happy Bluebird `` ( I do n't know the correct title for sure . ) Are you looking for a happy bluebird even though the bired is right near to you ? `` I think success is near to me . I have been practicing it for 13 years . Beatiful Town Me and my parents have a worship sevice everydady on these days . Our church minister , Mr . Kim runs the Beatiful Town with his wife and teachers . I tried to have a job at there but gave up in a day because of anxiety disoder . I feel sorry sometimes when I hear their parents does not get in touch with their childeren . Qeustion : What chapter and verse include this words ? Autum [ Spelling ] is starting ! You know I heve wasted too much time in past year . Currently the globel economic crisis is having a great effect on my company ; it seems like everyone will face the danger of being fired . In fact our company had reduced more than half the number of employees from last yesr , but our business has still not been showing a tendency of improvement : ( Now you can perhaps imgaine my mood recently ; I am dying for leaving your present copany but I feel it is not the best time . I would like to chage my cellphone model . The LG Optimus - Q has a good design and useful `` querty `` keypad . The buses in Thailand do n't stp completely when the passengers get on and off . Luckly , the bus was moving at walking pace and the injury was minor . It 's not appropriate to say this , but I thoght I might be lucky that my damage was not as bad as his . . . I dicided to try blogging here . In fact I 'm not a blogger and usualy I only read some programmers ' blogs . I cleary remember that I was a high school student when I took an airplain for the first time . I miss her warm accomany from last winter very much . Andoroid phones are on display at the cell phone store in my neighborhood . Because the shcool has not only students born in Japan , but students from Brazil . I heard that most guests who are going there like me are reall teachers . Then the contry image will downgrade by that shot for why they did n't solve the problem in peace . Today , I will write about a quesiton I have about English I 'm not good at Engrish . Engrish is difficult . It was difficult for me because of the difficulties in German pronounciation . Today 's dinner menu is sweet - and - sour pork , boiling hijiki and soybean , mizuna and chiken salad . Almost foget to return Rental DVDs Yesterday evening I walked around in Ikebukuro with my friends to do some shopping and to see the new IPAD which was finaly released in Japan on March 27th . Suddenly , I remenber that I rentaled DVDs at GEO last saturday . In the future , I wanna work in a foreign - affilisted company . We can learn from them , know their culture , and also can traval there . I ca n't instoll Chinese on the PC I usually use , so I decided to use my second PC . It 's too slow to handle softwear and the internet . To be honest , I am not in the habbit of keeping a diary . Even though I look up each unfamiliar word , some sentences do not make sence to me anyways . It is totally different from speaking because it requires me to have a lot of vocaburary to express what I feel clearly . It is a usualy an event that my relatives have every year in this season . I often do foot massages when I sit down on the chire . I was reading a Japanese comic yeaterday . When they grow up maybe they will regret what they did when they were yong but it is too late by then , it is n't . On the Saturday morning I vaccumed the rooms . So I was cleaing short breaks the pasta I had eaten at the restuarant last time . Now , every members is cooperating with each other tword the exhibition . Koria Trip 1 I 'm student studying science and technology , today ( in class ) I made biodeiesel from fish - oil . In addtion , I went to Ginkakuji , Kinkakuji , Kiyomizu temple and so on . Then , I had delicious denner near Kamo River : ) The delicious denner was made of tofu . Last week I went to opympic Park , which is in my neighborhood . There were many kinds of fraggnant roses . Why did I lose my earings ? Soy sause I bought a little bottle to keep `` Shoyu `` = soy sause and ate pasta in a In japan , it is really hard for parents to have their children go to nerseries . First of all , there is a condition to do with anuual income . The more money they earn , the more difficult it is to get permission to enroll their children in a nersery . We are scored A ~ D finacially and according to our working situations by the administration . A is the most adavantagious rating Fortunatelly , my daughter goes to a nersery . But , I hope all children can go to a nersery , which will help parents who are working very hard everyday for their families . If you want to travel both , my appartement will be convenient for you . There are no beds in my appartment but there are futons like matresses of coton . You do n't have to prepair your blankets . ( In the winter , it may be cold . . . ) Near my appartement , there is a lot of nature . ( Maximum 2 nights ) Please come to my appartement before 7pm . I want to improve my Enlish , and most imortan , make friends . To tell the truth , the Enlish lesson is not easy to learn . I became bushful a little bit because of the situation that I use Japanese , but I 'm in Australia . I have to go back to Japane in the middle of April because I will attend my sister 's wedding party . So my parents were very deligent at that time . Campared to my mother , he can be recognized as a sinner . And I 'm pround of her ! His mother wants to go to the templas . ( Acutally , I recommended [ that ] they go to Gyeongju , if they really want to experience temples in Korea . ) I played golf wiht my father , mother , older brother and his wife at Otaru in Hakkaido , Japan this weekend . * Lang - 8 satff I went to Okubo in Tokyo , to eate Yakiniku with my friends . Okubo is Kolean town . So many good restraunt are there . I 'm active again ( or so I think , I allways have long breaks ) . Doraemon is very famous animated character from Japane television . Students have to deside course , apply for job or take a masteral course . I ca n't deside . My friends already deside their courses . I must deside by this year . It was very useful for memorizing words and phrases but I was n't familier with listening to my voice through the device . Recently , I 've became crazy about shopping , I have bought lots of clothes , but I want to have more and mors . Am I a shopholic ( shoppholic ? I do n't know , please tell me the correct answer , thanks ) , haha ! So terrible ! Hot and humitted weather will welcome me at Narita airport . Thisi is the charenge ! I started this brog today . It is my big charenge ! There is Euro 2008 going on in Europe now , and I truely wanted to watch , but I could n't without cable . I decided to write my dialy in English ! ( Today is the first time I am writing my dialy in English . ) I 've decided to write my dialy in English from now on ! ! Also , Japnaese elementary schools are going to start teaching English to fifth and sixth grade kids . I think English grammer is so easy and logical that it is easy for non - native speakers to master it . Hpwever , I hope to improve my writing soon . I need to get 5 in IELTS as soon as I can . This ouctpus can kill a person who is bittenby it . . Of course , I know it 's bifferent depending on the person , but I just want you to tell me as advice . There was the annual meeting today for a presentatoin on research and development in my company . I went to Moscow and Sankt Peterburg with my family . My father bought me a photocamera , so I could take some snapshots . The distingtive yellow circles on the lamp which had n't being dusted in a long time . We prepared ourselves for the worst , because youth hostel food is n't renowded for it 's quality . > < Everyone looked suspicous at the fish and chips . I ca n't trast the company whose name is Tokyo denryoku . In Lonsdale street there was the Greek Antipodes festival . In feretion Square there was live music . On Saturday nigth I went out with my Italian friends . It was very nice , I bougth a very nice dress ! I have three yonger brothers , soI had dinner with them , too . I want to say , that I want to leant English that much . So it was really hard to do it again because I felt hard my finger . By the way I can ' tplay this song because maybe It 's really dificult because I do n't know how to sing the song so when I play the song I do n't know the timing . I really like this song so I did nostudy English hard like my friend siad so I am sorry . What do I want ? What is the thing I am goot at ? Becouse my left knee got hurt in a traffic accident and got hit many times during basketball games , The team aranged it . I wish to memorize Qura ' an and remeber all its words like I remeber my name . I wish to puplish a lot of books and become a famous author . I wish to speak English flunency without thinking . To become that , I regestered on this site . Before I did that I was listin for many different Islamic nasheed by English speakers , like Yusef Islam and Dawud Wharnsby . I reary want to study more . After the meeting , the other menbers and I went out to have lunch . We went to an Italian restaurat and had a pasta lunch . A waman said one day she had been very tired and she wanted to be alone for a while . So she had said to her hasband she had wanted him to go out and would hand over ten thousand yen . I met a foreigher who is from Mexico . I should go to the hospital befor it gets worse . I do n't know how many people read my dialy , but I welcome you who clicked my diary . Today was a very importent day . They always intarrupt me before I finish speaking . So I felt reflesh a bit . To practice English I start writing dialy in this site . I set a target to write dialy once a week . There is a new sellection button called `` Match `` on the upper part of the page . I can make myself confortable here . There were 5 other studnets in the class . The fisrt person who completes 2 lines accross will recieve candy . We believe eating eel gives us vigar . Dashboard is , in my knowledge , the part of a car just in fromt of the driver with various meters . And when I 've read tha part fifty times , I got an idea . The executive is a dviver of the company ! You find peope who speak English and communicate with them , when you make a mistake , they can help you correct it . 7 / 26 I went to aTERKEY . By the way , today I went to school to sprinkle watter on the plants . It was an eciting day today . my reltives and I are safe . My friend told me that she already knows the grades from all classes she took this semerter . About festibal for children aged 35 , and 7 Today , only girls who aged 3 and 7 participate the festibal and only boys who are aged 5 participate the festibal . Many families get photos of their childeren taken at a pofessional photo studio . As she said , there was a simular korean food with the same shape I think one way we get them is from our experiences perticularly from hardships , ordeals and harsh adversities . In a sense , everone experiences them and we might as well enjoy them . About Yestaday On the other hand , other people who come from European countries do n't feel that speking English is difficult . I olove tennis and I want to be ( come ) good and strong ^ - ^ I am a homewife . The Reason I 'm Studying Engkish There are many embassies of several contries near my hospital . I 'm looking forword to graduating . My dog is 7 years old . She hardly burk and is housebroken . Actually , I sometimes go to these shops to walk when it is raining , but I always feel a little bit embarassed , and I feel like I have to buy something . According to a report , the big reasons are climate chainging and the lack of habitat . Our environment suffers more and more polluations from human destory . It can use many aspects of nature such as be maded of natural products . Our new term has begun , I feel excited ~ One of my friends who loves English songs ofen sings `` Everyday is wonderful ! `` . Although I could n't registered for a popular class when I had asked for any available seats of that class in the Restration Office , but I could make it by asking for the professor ! I have just returned from a bussiness trip to Shanxi and Henan , this morrning . In fact , this was my first bussiness trip since joining my company . TOEIC is a test that lets many Japenese know more about their own English ability . Since then , I 've been incleasing my Skype contacts day by day . It is Log cavin . Moreover my nose was runnning and I ca n't stop sneezing . : < Lately I have been working part - time at a Takyoyaki shop inside the kitchen of which the tempreture is usually around 45 degrees , so I always feel like I 'm going to die x _ X When I am off work , I study Lingusitics , specifically , Cognitive Linguistics . But I have few oppotunities to speak Engligh in everyday situations , so my speaking is gradually deteriorating . . . + ~ + I bought snow boots yeaterday . This food is simple and consisted of noodle , soupe , and some ingredients . But it 's very difficult to cook good soupe . Today , my father will come back from haspital . lf he comes , that 's too bad , lf not he will get well , but the money wo n't get too much better . . . . . er . er frist , l must get a job . Then I can fix the proble . I bigin this SNS now . I found the bookself costs low . I 'd like taking pic and litenig to music . And sometime I draw peple and animal . The problem is losting keys . I know a lot of people who does n't know were it is , maybe because it 's a little island and is n't as important as Barcelona or Madrid , but Ibiza is such a beutiful place . building mills , stoneholds , and city buildings . He can build an excellent defensive building ( the great wall ) , develop a destintive technology ( computers ) , or get new colonies like Columbia . My friend tex me saying she is in Nakameguro . For example , if they prefere earning money by a part - time job as opposed to majoring in subjects that they have not ever majored in . I want to tell them `` you can earn money to earn a living even if you wo n't after you graduate from university `` . I 'm eating more vagetables for food . Photo albam It 's the first week at work since the long national hollidays . We keep talkig when OCC 's proffeser was explainning . I must practice my English listenning But I found my English listenning is still very bad . I did some English listenning test by myself . I thhink I must practice my English listenning every day ! because it does not require phicical strengh ( I am not particularly strong ) . But the biggest reason is that I like to grance at many different kinds of people . Is that bad reanon ? and many salarymen and students come to buy breackfast or lunch . For instance , people arrive at the same time and buy the same or similer foods . which is why they do n't remember being resisterd ( ? ) ( assisted ? ) by the same staff . If you always go to a paticular store , you might be observed by the staff ! My purpose for this year is to stady English . Today , I will go to the one of the biggest shopping morll in Tokyo , where I have lived for a long time . Ever since I was young , I have behaived confidently when I have done everything . The title is `` Seccessive Holidays `` I want to watch the volleyball games on TV . ( I want to watch the volleyball gemes in a stadiam in reality . ) finary I asked her . This is a tlanslation of a Japanese fairy tale . On the day , he received a gift from them , it was a big kyte ! All of a sudden , a strong wind blew and the kyte took the pig way up into the sky . The kyte transported him to his grandparent 's house . These therapies are very interesting and inovating . I 'd love to get any imformation . I found the teacher had a good way of teaching , which gave the children an instering in the violin . * okara ; kind of leftover when you make tofu , but it contains a lot of protain . When I make a cake , I reduce freash cream or cream cheese and use tofu instead , and also when I make a hamburger steak , I add tofu in mince . I really do n't like to prepare for the festival , but I like to paticipate in it : p But I 'm jelous that most of countries have halloween parties because we do not have that : ( And we went to the famous tample called `` Chuson - ji `` . I also have read his other wroks like , Have A Litthe Faith and For One More Day . Today I wrote only this sentense . But I cound n't beacuse I was in Au . I had to send the leter early . When they recive my letter , they will be surprised and happy . Surely we know a lot of grammar because we 've studied it sinve we were junior high school students . It 's no wonder that Arabic people of lawer level can listen better than us because they 've been staying here for longer than us . Even if I have a chance to meet the celebrties I 'd prefer to meet enconomists or business people instead . Tom grabbed an orrange . Bom hit Tom . I have a dialy in English . I write for a Jaanese soccer team , Sanfrecche Hiroshima . The team is a J1 leage team . Ithink Sanfrecche will get the titel this year . I was not entirely concentrating on the wedding party because I often wached the photographer . I have to finish some peports tonight . Keep enjoing ( ( = today 's actresses do n't have such atomosphere . . . Global crisis , London Fashion week , lections in the university , my friend 's troubles . Last , you clean your class room , carridor , stairway and wshroom yourself . This is my first entry writeen ! Anyway , my English level is realy low . But if someone wants me to say something in English , I realy do n't know how to say it . Next to my company , there are many foriegners . I want to communicat with them , but I do n't know how to begin . Sometimes it is very borring becouse I do n't like klassical music . Music is the most beautifull thing in our lives . There are different surprises in our life everday . Maybe next time I can do something to trainning my mucles . I 'm Tak , 26 , Japanese who loves to play basketball , watch movies and enjoys the beuatiful ocean to swim , free diving and hunt fish . Also I 've been studying English sicne I had experience to study abroad in U . After I came back to Japan , I continued to study English in a univercity . So , I take pleasure in looking all alround these Languae sites . We eat it with soy soup ( made from tuna ) not OKONOMI souce . I just made the words ` language quention `` , shorter to say `` L . The wedding party lasted two and harf hours . We enjoyed some gemes and talked with friends . 9 years ago , I went to the United States as anexchange studens . After having said my first English sentence , all the thestudent laught at me . So , I lost my confidence in learning English . Moreover , the English teacher who taught me for three years in senior high was a very annoying and ascivious man and that made me hate English too . After graduating in 2008 , I found a jod in a joint venture , lucky . It is about a cute girl who was murdered by her neighborhood . two years later , Susie 's family , her father and young sister still cant give up finding the murderer , fanally , her sister found the evidence to prove that the neighborhood is the killer . Well , I bought a new game called , ' ' DISSIDIA FAINAL FANTASY ' ' . I have to be carefull not to spend too much money . I 'm going to Roppongi tommorow to meet some friends who can speak English . He also ovey our commands , such as : sit , wait and shake hands . Futhermore , every cigarette company should be banned for selling toxic materials ! According to the weather forcast , it seems that it 'll snow tomorrow . Being a careworker is a great job . A careworker has to have a likable personality . I thought she had potential as a careworker because she has a good smile and a friendly atmosphere . But , hearing her story , I found out that a careworker should not only have a likable personality but also a strong heart and a flexible personality . All buildings are of histprical importance . According to news and documentary programs , the huge amounts of gleenhouse gases such as CO2 , cause the change in grobal temperature . It is said that trees absorbe CO2 . automatical translation is not accurate . . ? Romoi is small rural county . If I have a private teacher it would cost 20 ~ 30 dollors an hour . Today , I need to write a review of a famous Japanese writter Therefore I always miss the first chace to reply to my messages here . Sandra Bullock is always a nice actross that holds a special place in my heart ! Banks do n't trust JAL 's management and are fefusing to lend additional funds . Tha topic is maline living body molecule faculty chemistry . Last year , 80 % of the students who majored in maline sciense failed the test . But I will study chemistry even more becouse on June 11th , I will have another chemistry test . Seeing this socre , I was very surprised that the writing score was the best and the listening score was the worst . Reading and listening skiils are the fundamental ones . I 'm writting this entry by laptop on the train . I do n't really know how to describe this feeling , but it starts when I think about what lies beyond our solary system and how tiny we are . Only 5 days lator New Year comes . When she arrived at the hospital she looked scaerd but stayed . It looked like she was alomost crying but trying not to do so . I wil go to India this year . . Hallo . There were beautiful ocean views and a cozy atomosphere in that video . This Matsuri was small and different from Japan 's one ( of couse ; ) . But now , I do not feel good . Because I find if I open the computer , I just play games , chat with friends and receive the E - mail . When I want to learn some things from the computer , the time has passed . Maybe two or three hours have passed , by that time I need to go to sleep . The plan to learn something about English is always delaied . I like the scene when Marty plays the guitar at the parety . Bas ga ososugiru ( past form ) kara , watashi wa shigoto ni osokimashita . * PM Form + Yasai = easy doing verb Watashi wa nihongo wo miruto sugu kandou mimasu . ( hmmmm how can I put the `` yasai `` in this sentence ? ) Actually I 'm still afaid of them though I have gruwn up now . My dentist was a funny lady . She told me to just relex and not to be afraid of her . I shoud ( will ) be more careful with my teeth 's health from now . I believe I can be a good student ang a good teacher ! Certainly , people in South Korea are intelligent , but such competition may cause mental exaution . I think then we can be more free , espesially in Japan . owener of lental apartments ! For a long time , I thought being an owner of lental apartments is one of the easiest jobs . Cleark `` Hi . `` Guest `` I am looking for a wich . Cleark `` Yes , we do ( have them ) . Cleark `` ( How about ) This one ? `` Cleark `` It 's 3 dollars . `` Geast `` I will take 4 ounces of this ham , please . Cleark `` Sure . `` One day , the same scene happened agian . When the bus had just stopped , the conductor shouted to the people who were ready to rush into the bus , `` Do n't rush ! The driver did n't notice the conductor was n't in the bus untill he found nobody reported the bus stop . psychologist must be familiar with biolgiyu , Russian and math . Hellow World reseption party Today I went to a reseption party at Tokyo modern museum . happy new yar Nobody interapts me . . . I definitely agree with the thought that men and women have diffirent I did n't have an opportunity to listen to jamaica reggae music a long time ago . Cats make me confortable . I asked about Marchants ' International Shipping rates to japan , and you said that Please look at the marchant `` * * * * `` . ( link to the marchants ' Shipping rate ) I came home and I tyied to connect it to my computer . There is Somethink about them I just ca n't understand . My name is Jack , I 'm from Syria ( the eastern coast of the mediterrinian ) . I am so pround of myself because of my small diary in English Recentury , I am busy everyday . And on Sunnday , I was invited to my friend ' s I need rest and treatment from a chirodoctor . but I received a notification from a memorial park office a few days ago , whitch is located in Narashino where my mother 's grave is . An entry on Lang - 8 after a lomg time . On the other hand , phones , expecially mobile phones , are playing an increasingly important part in our lives . Tommorow is the last full day for me here . Is it a person who talks everything with you or just a person who often agrue with you ? Is it something that ca n't be replaced or something that 's not essntial ? We do n't feel ambarrassed when we do n't say anything , we just sit behind each other . Personlly , a friend is a person who make you feel at ease / make you feel at home . By the way , I 'm going to the hot spring with my friend at the end of this manth . In Chinese , the word Dog is called `` gou `` which ( the word ) souds like Goal . Watashi no namae wa Zoli des . Hajime mashite , Yoroshku onegaishimas . However , he has to go to school with the neibor students for a while . I said ' she wanto to get me a suit . Iwas very happy yesterday . I asked my roommate ( she was sitted near me ) took a picture which contains my cake and cookie ( but this picture maked me look fat , ha ) . I do not want to back to Taipei becase it is the time near the final exam and my transfer exam . And I found messeges from somebody who is in another country and also sutudy languages . After I clean , I 'm going to go to sport shop to buy sportwear because I have a school excursion next Friday . Of couse , not only speed but the complexy of the content was a problem for me . On the other hand , the English with diarect was OK , as I frequently communicated with such people including German , French , Thai and Taiwanese . Nonetheless , I felt it was an honor to listen to some wonderful presentations and saw fruitful communication of distinguished scholors as a would - be scholar . I have big dream - an American dream ) ) I want to learn English and go to my favoirite city - New York ! ! ! I want it now , now , now ! ! ! I hope this site and U can help me ! ! ! Thank for your attention ) ) ) I remenber that I must buy white shoes . I think that there are theree keys to success . Second , there are many bonus evernts . Yet we can not help but obsess about growing crops anywy . This surgery lasts only 10 minites , but is it safety ? ? By the way , today this video helped me to change the eye color in Photoshop . Usulally , my mother puts a sweet potato in a microwave oven , but today I made a sweet potato baked with hot pebbles with thaw function of the microwave oven . I want to improve it and hope someone can hlep me . To achive this , I am now required to achieve a certain score on the IELTs test . I can study for reading and listening secsions by myself but it is very hard to practice speaking and writting essays . So now I definitely know what I need to ask when I go to the schoold . Compared with other classes , my class was really peacefull and hadgood team work . I went to Osaka on bussiness . I am interested in Amerikan culture , life , and history . In the future , I would like to use English for business , or cominucate with people who live in other countories when I travel . I love music ! ! My deream is to join an International Cooperation . I wish only to enjoy life and to do somthing I like . The movie is Alce In Wonderland . I am goint to accompany my Mon to Japan or Cambodia and study TOEFL regularly and hard . But she sturdied Japanease very hard . After one year , she could speak enough Japanease to travel to Japan alone . At that time , I had n't realized how short of a distance coummuting was . After she got off the subway , I came close to not getting off at my stop becasue of my very high spirits . I know that she has a boyfried . So I feel counfusion and flustration . I 'm a Fenix though . For / On my birthday , seven frinds of mine came to celebrate . I recieved clothes as my birthday presents . As title , in our Graduate School of Science , we have a team competition of tebletennis at the end of every year . From the undergraduate student to the professor , every 3 - or - 4 - person - team can enter and paticipate in this game . The recycle material is used for variety purpose : for exmple plant pots and exterior materials like wood . I will see many of my frends ! Though I had desided to write my entries everyday at first , I 've been feeling the difficulty of continuity . Hi , hieveryone ! I 'm a Chinese girl . Could you be my fridend ? Duing those days , I had no other wish except to pass the examination and get high grades . Because I will turn into 18 on my brithday . She wii be three years old next month . The temprature may be 28 degrees C or so . I do not use air conditioning due to helth reasons . Also , I want to limit emissions of carbon dioxide and other greenhouse gases . As I could n't sleep , I coundl n't help but use the air conditioner . Finally , I was able to sleep weel . It is one of the most innvative methods I 've found ! Almost every menber is a student . We were realx at this point . I ate two pizza slices and somthing else . I have tought English . I am very nouverse beacause I have never presented at a conference . They are simillar but different . Everybady : ) So , I 'm goning to practice baseball with my college friends . We ate `` zouni `` , which is the traditional soup containing `` mochi `` ( rice cake ) , vegitable and chiken . After graguating from senior high school , I spent three - months as a holiday . During this time , I forgot lots of English grammer and vocabulary . So today , I brout the cat to a vet again . Takao , which is calld `` Takao - san `` in Japanese . I went to the park for a stroll in the daytime . Butterflies were fring around the flowers . In addition , I plan to take part in an international conference for Asian students , which will requre me to speak in English more fluently and precisely . The secon goal is to study economics . In the conference , I will discuss ecnomic , with emphasis on matters concerning East Asian contries . I want to break this habbit . A lot of things droped off , and I , people from work and costomers panicked . I was so terrifyied that I could n't think about what to do . My family was not attacked or harted , so I got releived . I 'm nurvas . The mutch was the Carling Cup Final , `` Arsenal VS Barmingham `` . It was an exciting game . The teacher said `` Walk around in the water to rest . `` and then she said `` It 's time to learn backstoke . `` She told us how to do backstroke . And tomorrow is athletik game . I think you want to contact the Hosan Industry Company that makes things for outo and rain ( ? ) , but I do n't have their website or email address . It 's very intereting . Chirstmass day is coming . Curry was too spicy , but Cheese was most dlicious to me . I watched the Olynpic games on TV , and I want to enjoy skiing with my friends . . . In Japan , publication contracts between authore and publishers are n't documented cleary . It is easy to controll the royalty rate . However , Murakami does n't have to pay roalties to a pubulisher because he released his novel as an e - book . For readers , it has many merits ; book prices will drop , readers may be able to read books wherer they want and so on . I heard that these two cities have nemerous Japanese companies . The real deasign That is the typical traditional Japannish thought . English poeple never remove foam from dishes after washing them . Is this true or false ? He ansered that it is the stereotype like the illusion that most Japanese people wear glasses with big lens . Currently , here in Brazil , there are many cases of UFO abduction , but the government still has no comment on the subject . Even so , there are many communities that do ufology studies by itselves . I wonder if in the near future all information regarding UFOs will be decontroled and the truth will come to light . . . But I think I can handle this in the fulture ! I 'll tell you about my favorite moive . Becouse I love drums and marching . Recently I undrestand CNN News ( pod cast ) which is an improvement from 1 year ago , All of us complaind about our speaking teacher because she 's not a good teacher . I like building by design master . Their construction can transmit great informantion and express their unique ideas , so I like this the best . Japan should stop whlaing Secondly , Whles are our friends and we live on the earth together . Finally , each species has its reason to exist and the whale 's activeties makes the ocean clean . It is a kind of magical creature . We left the Marlion Park and went to the Raffles Hotel . It was too expencive for us , but we were interested in the hotel so we went to look around there . The roby was well cleaned and its cortile was so beautiful . We were very satisfied with luxary there ! Fortunatelly , we have not been dissapointed . But it is too bad that it is so durty on the road . the Lovegood 's house is exactly like I imagonation too ! I cried when dobby died ~ and when Hermione `` obliviate `` her parents . I have a gift for palying music , but I have to learn another profession , which is my parents ' expectation . Hepefully , there wo n't be any trouble during my trip ! English that Japanese high school students are studying is really grammertically difficult . And the vocaburally is so , too . I remembered almost all the English grammers , but still , it is sometimes difficult to tell where S ends and where V is . But this word is actually difficult and it is wierd if I use the word when I talk with friends or children , right ? ? I thought it was too big for my coumputer , so I canceled the download . because I wanted to be Network Engeneer . But now I 'm not so sure about that , and that 's why I want to practice , to see if I can really speak enlish . I tought that I should take care of my health beause it is so weak . However , our town has not campaigned to buid windmills . There are some differences in opinion as to whether the view with mindmills is acceptable or not . While I was looking for the place , I tried to call my friends , but `` they `` did n't ansewer . I stayed up there untill next morning . I want to discucss a lot about grammar relating to our feeling , and also our mind with analytical way . This is a heroic town , because it is servived the Great Patriotic War . Sometimes , I work , and now I water the flowers around my school ) ) I have a yonger brother , he is 8 years old , and he studies in my school . There are , however , many things we have to do to protect and develope their understanding of human rights . Spanking is needed sometimes , especially when children are too young to hold desent conversations . I was also studing English in my dream ! ! I believe that time solves enerything ! Somtimes I had to choose between them . So I 'm afraid you ca n't see the upper rainbow so cleary We enjoy wachting programs on it ! ( Of cource , I want to study English . ) I am so happy today , because my company got this big case this morning . It 's big news for all of the staff in our company , because it means we have things to do and that there is no need to afraid we will be laid off , or take unpaid leave . ^ ^ , Recently the globle economy is so bad thatmany people got fired , so it 's very helpful to have a big project in our company , ha ha ha ha Since it 's raing , I ca n't go out and play , Recently , I fool around anywhere and surf over the Interent all day . My mobile phone is possily broken . I 'm really worring about this problem . I want to speak and write English well , so I have begun keeping a dialy . It was slipepery and dangerous . New vocabulary plactice Mar 19th , 2009 Please help me to crrect my English . I met my sister at the restraunt . I still remenber I went to this school alone with a big luggage three years ago . I will always cherich the experiences I had at SCNU . So , I went to reserch the market in Italy . quite religios . I am determined to learn English , but my English skils are not very good . This surely incruding me . It might be becouse Japanese does not have similar words . I experianced various things that were good and bad . make my mind to go abroad to study , help with some company wokring . . . At Sydney , there are ten campuses such as Camperdown , Cumberland , Mallett Street , and so forth . When I wtote the tile and the first sentence of this diary , I wondered if `` Families ' New Year 's Party `` was more suitable . However , if we lose air we are unlikely to survice . In present day , air pollution get worse and worse , Industries at will eshale the waste gases , more and more people drive to work and like smoking . we should find a method to slove this problem . Before exhale the waste gas , industries must instell waste gas puification apparatus . As promoted by the development of modern science and technology , television programs today attact a vaster group of audiences with tremendously enrichied conten and a 24 - hour rolling schedule than ever before . The fact that television seems to control our choice of leisure and entertainment has recently brought a problem to focus on : whether has television destroyed communication among frineds and family ? Beside , in my own family , my parents and I enjoy the time when we are sitting together and watching tere - films . I do not deny that there may be some cases that people are so addicted to television or some other habits that he / she will probably ignore communication with friends adn family . Rumor has it that Seth Rogen did n't read off the same sheet of music as Hong Kong 's famous actor Stephen Chow for the flick `` The Green Horner `` , which will hit the big screen in early 2011 , thus Taiwan 's hottest singer `` Jay chou `` substituted for Stephen Chow , as the lead male 's assistant `` Kato `` that used to be played by martial arts master Bruce Lee . I have never eaten a sandwitch there and wanted to eat one . So they came to my house and celeblate the new year . Every year we watch Ekiden where college students run a long distance and pass a batton ( taski ) . my cousin 's childlen came to my home for the first time . I enjoyed the new year holyday enough . Is it true or false that cellphones influence the functioning of pacemakes ? So I hope somebody can help me correct my gramma ! Third , the author described that the ultra malathon race took place in a mountainous area in Mexico , where American top ultra malathon runners and Tarahumara runners competed against each other . In 1996 , the writer died because of liver fauler . I have begun writing a diary in English using this web site . I also try to correct diaries writen in Japanese . I will need your helf in the future . My companys holicay lasts from the second to the sixth of May . But if I thoght , my holiday could not become long . I wanted to a cold drinke . 4 custermer were there . That 's because we are taught grammer , not conversation . I know grammer is very important when learning a foreign language , but I think we need more practice speeking . I have a frind in Oregon . We visited many palces when she was in Japan . It is afternoon in Thailand and I feell really hangry , I will find something to eat . . Since my daughter is still a baby , I cann ` t do anything I like if she is awake . because my friend told me that reading books helps ur spellings and reading skills . So they often sprincle water on the coal in stockyard . It looks like not only me , but also other people all aroud the world are interested in the Android phone . I often use subjects of sentences repeatly . I could see piled stones , vertical criffs and rough sea . While I had n't booked any hotels or other accomodations , it was not too difficult to find vacancies there . So , I was thinking that I could easily find a room available on this small ireland , too . I therefore decided to aks him what I should do . After school my firend consoled me . I watch movies and read English books , but my main problem is with speaking , writing and using grammer correctly . ( I 've studied grammer but I do n't know how to use it when I speak . ) Today is rainny in Kyoto , Japan . My favorite music is Perfume and Lady Gaga . I ca n't wait until the Gaga 's new alubum is released ! Perfume is made up of 3 Japanese gilrs . Some peple say `` If you want to live in Japan , you should apply for citizenship . Of caurse , I love Japan more than Korea . I came to Toronto in February of 2009 . I wentto English school and got a job . It was geart experience for me . Can I get the target I palaned at the beginning of this year . I want to go to Janpan after 2 years . I want to know more about life in Janpan . I hope someone can tell me if a student studying abroad can find a job and support himself in Janpan ? Anyway , I can not write in Hirakana today like magic . todey is wrok tekes a rest . it was possible to run 10Km todey . Many questions have not been slved . . . . I 've noticed that the reason for my lacking English adility is my small vocabulary . And the avant - title of `` A Channel the Animation `` shows the names of criateors with a very cool style . I 'm trying to study grammer from the beginning now . These are quite expencive here in NZ . I usualy ca n't afford to buy these things . It also reminds me of Ghaza and our situations these days . I Ibelive you can do it , too . Fist , you can remember some set phrases and senentce structures . Then try to form them into a new , ete sentence . I stayed my friend 's house and I come back to my room next da . I sepend the whole day at home today . While travering , I ate varios food in each town . Next manth , I will make and launch a model rocket . My grandmother lives in Hukushima . Hukushima has nuclear power plant which has been issued . We had special dinner with our grandparents and cousnes . I belog to the basketball team . Today praztice was so interesting . I just wake up 7 AM , and take half an hour for shower and breakfirst . But there is specally nothing to do in winther . My boss , who has good sence of humor , is nice guy and allows me to study something when I do n't have any work to do . I love soccer so I watch soccer gemes , not only Japan 's but other countries as well . At the beginning of the year , there were many goals that I set up with hope but now , I guess , there were few things that happned . It means `` the goddedss of liberty . `` Recently , a close friend of mine hestitated to apply for the receptionist job . She stayed at home all day to prepare everthing for her husband . Abolusily not ! We somtimes must endure their unreasonable requirements . Even though I come from a non - unwealth family , I never look down at my family and myself . good mornig everyvody ! I woke up , and then I had a brealfast of steamed bun , a banana and milk . I keep writing on my diary recenrly . it 's becaouse I do n't have an opportunity to speak english . it sounds a litte strenge but I do n't think so how boering ! becouase we do n't meet everyday Although I 've learnt so much , I still do n't have enough confidence to face my furture . It is an outdated thought to discriminate against bi - biracials in the age of globalization . but it is rainning in Japan . . . . menu : vinegared rice topped with fish , melon , noodles and green soybeens . Tomorrow I 'll paticipate in a water melon festival . Although I am not gay , I do n't think people should kill someone just bacause they do n't like them . My friend who went to Canada says crows there are very small , like spallows ! ! Japanese crows eat bagages and grow fat . `` I went to an English seminar last saterday near Tokyo station . But that seminar was good opotunity for me , due to meeting people who are highly motivated and achieve higher levels than me . I will have a TOEIC TEST in Novemver . Ran to th public bath Because I do n't know much vocaburary and ca n't speak well . For today 's dinner , mashroom was served . Well , that 's ok because I ate delicious tacos and pizza after that . My gentle host mother allowed me to pay tommorow . I 'm interest in playing and listening to classical guitar , riding bicycle , traveling abroad and playing Starcraft craft etc . Please enjoy my posts and give me advice about my posts with type - o , grammer and vocabulary etc . I have a girlfrind . She told me to let our relationship return as it was before when we were frinds . Shortly after I went back home to put the souveniers in my room , I left my home for a Japanese restaurant . I 've got to appriciate that . I think that Koreans like to go to the brand name coffee stores especailly when they want to meet friends or want to read a book , study , etc . Firstly , Koreans have a tendancy to look for brand name products when they buy something . The boys had breadkfast . I want to take a rest after class but my famaily said , `` you are a high school student , so you should But many people think speaking and writing English well is somewhat of a previlege . So I went to the secod floor . I did n't understand why he could n't see me , because he saw the first floor where I shaked from . At the moment , all my classmates are typing their essays on the Intrnet . Indeed , it was as hot as cragy , Insteadly I swimmed 1km . I think this is a hard problem because owners might say : `` It is right to buid my house on my land `` and need to immediately be solved by the government . Speaches , chatting , twittering . There were some core developers of CakePHP and they made speaches . I was there a few years ago and that rame was very delicious . One feature of this rame is that it is rich . I registerd at Lang - 8 Today . I think Lang - 8 is a great SNS because it has the express purpose of studing English . Today , I 'm in a bad mood because of my college entrance examination , I did n't perform well , especially Math . But now I still ca n't commend cenimas with English . If so , I 'm courious to know what they are doing . I want be always surrounded by peaple who enjoy talking with me . Worring about security , I set a password for the file . Autumn season is the best season to excercise for us in Japan . Why do n't other contries clean their ears ? The news lepoter said `` Alomost all the world 's people do n't clean their ears . `` There are ea cleaners servis in Japan . We sometimes clearn our ears . Clearning ears is good feeling . How does it become if you do n't clearn ( your ) ears ? The tradisional earpick of Japan hasa top of cotton or Daruma . My bithday is at the end of December . I make it a rule to go to univetcity by foot . I must pay my univercity fee without my parent 's help . I pay my univercity fee out of my own pocket . I got up at 8 : 00 and had breadfast , The city is very polular with people having fun , especially surfers . Kanji is Chanese , some are the same but others are different . Recently , I have been warried about my future . I found that I neaerly have no free time for myself , but I will still try my best / hardest . I printed out my diaries with your correctings . Im reviewing my diaries and reading many people 's correctings now ! ! ! I hope that I increase my vocabralies and learn how to express myself . It tasts very good . Though I have been learning English for many years , I find it 's really challenging to improve my spoken English because of limitted learning environment . WHEN I LISHEN TO THEM MY COLLEAGUES SPEAK ENGLISH WELL . EVERY DAY I GO TO WORK , TELLING MYSELF I SHOULD LEARN SPEAKE ENGLISH . My friend took me out the restrant . In the afternoon , I rode my eletrical bike to work . It was 9 p . m . when I arrived at the centrul of Bergen . Fimally , I will always clean up our apartment . On days like today people use electocity a lot , but due to the earthquake that occured on 3 . 11 , we are short of electrocity . The government told us not to use electrocity carelessly , but they did n't announce any countermeasurement against the shortage of electrocity . By the way I want to buya pair crocs . The station staff told me that I may have to wait about 3 hours , so I went to Xihu to kill the time . I was walking arround the lake for nearly 2 hours and took more than 100 pictures , then I went back to station to catch the train , but the depressing result turned out that the train has been cancled . What shoud I call this phenomenon ? For example , the word `` perfect `` is `` perfekt `` in Greman so I ofen make a mistake . So I get used go to bed at three or four o ' clock in the mornig . When teaching Japanese , I need to explain so the other person can clearly understand the basic gramatical concepts . I heard from my friends that there was a website in which we can get corrections from real native lunguage speakers . Is it a correct sentece . We should work together and try to buliding our future ! know how many rich men can be avalible for their request ! I belive my life will change for the better and I will I am a saleman in spite of having a problem with speaking . If I were not a person that stutters , I would probably laught at it , too . I did n't even think that I would become a saleman . I have met several people who have overcome their stutering . They said that being old and having experience counts , so I belive that I can get over it . I 'm ok with the dress but really do n't know what in green can be added to the outfit : scarf , hairband , necklace or bracelet ? She is a student at an insitute . She likes chockolate very much . I combined this into the previous center . But I could n't drink beer becouse I went by car . One of the plece I would like to visit is New York . My plan is to open it near a university , because I want to cook delicious and unexpensive lunches , cake , coffee and tea for many students . I want a lot of advice and masseges about my dream ! ! ! Recentry , we had Weight training . We enjoyed gliled fish , Japanese radish salad , yakitori ( chicken roasted on a spit ) , and ochazuke . I did n't feel bad at frst . I have already reserved the bullet tarin 's sheet which I 'll ride on . We should notice that school education starts too late , at which stage , the fundation of a child 's personality has already developed . basically I lost attension easily man , that is fraking gross lol It was a very hot day , but I had a very good time with my campany . It has been rainning cats and dogs this week . I chose two songs `` Somewhere in my Broken Heart `` by Billy Dean and `` Song from a Stormy Night `` by Secrect Garden `` . I found out this song by chance but it is perfect from the lyrics to hythm . And sice I 'm a person that 's easily distracted , it 's good for me to learn how to use my time more efficiently . Oberserve the progress as you go and see whether you are staying on the task . Most Japanse people are Buddhists , but they are not seriously religious . I ca n't resist eating my fovorite foods like cake , ice ( cream ? ) , and snacks . I 've come to realize that that is not helthy . I should save some money and be carefull not to eat junk food . I will eat chiken and more delicious food . Those are just begining words ? because I just have been studing Chinese I have totaly no idea what to do now , but I 'm going to find a way to help them one day . I went to the graveyard with my family bacause it was Obon . Checking my grandfather 's Buddhist name is like preparing for my father or my mather 's death . Only a few munites after my first diary here , the kind snowleopard helped correct my mistakes . In onsen - hotel housewives can relux to their heart 's content . Because she can not only escape from her daily house choires but does n't have to do anything for her family . So , their dream was go to onsen and relux ! The shcool keeps me very busy , I was able to book a concert ticket that I appied for last month . Correct fanction , Coment fanction and so on , is PCver . the beautiful sky after a rainny day . I love the sky , especially after a rainny day . Some foeigners want to add strangers as friends I do n't want to connetct just to collect friends . After arrived at home I recongnized whose house it is . Most of them are not good at Englsih and do not like studying Englsih , [ comma ] In the show , a man who lives in Mali sent a walmful message to Japan . Interduce my self telemarker for the day . This symposium is thought that the biggest one in the magnetic societly . mmm . . . Before you achive success , you may go through tough experiences . I constantly recieve things that make me wonder what I should do to make them pay for it . our food self sufficinecy rate is really low , compared to other countries Mnn no , actually my friend 's mother gaved me chocolate ! A few days ago , I ( we ) started twitter for appeare our issu . 140 letters at a time seems too short , but if you squeeze your brain , 140 letters can be good enouhg . The problem is if I can continue to wrigt or not . I sowed some moning glory seeds , but only 3 of the sprouts came out . These days I 'm so weary because of losts of assingments . Hello , I found this site by accident , and it is cool , I realy think this site can help me a lot while I am trying to improve my English . I think her traverls are 5 times better than her novels . But not anyone can travel to 3 coutries during a 1 year period like her . I am a lucy guy . : ) If my sentences do n't make sence or are grammatically incorrect , then please correct them . My favorit subject was Botany . Recently , I 've come home without work , so I habe time to learn foreign languages by myself and train for Aikido . That 's why I realy want to speak English . Saying `` IPhone is necessary for you `` , some of my friends bought it , in fact . Also , it is good for the enviroment . all teachers understand my seepch Also , my expression is same everday Nowadays , fast fastfood restaurants are also beginning to provie a light meal like a salad or a lower calorie drink like a diet Coke . I hope the sun will be shining when we arrivr at the park . so not only soloists but also groups can hav an audition in season 3 . When I speak , I become confuse beacause English and Japanese have different word orderings . . . Also my writng is not good . . . I 'm really upset , because I have 1 mounth before I leave . I miss Taichung and my old frenids . I usually grind the favourit coffee beans and make some coffee . My favourit coffee beans are deeper roasting , bitter - tasting . ( Sometimes when the coffee beans are sold at a bargain price , I make the dicision to buy immediately . The city was hit by a a atrong earthquake , but Tokyo has stayed strong ! I did not know he was sit near my foot and playing in the computur . He siad to me `` what ? What did I do ? `` . I come ftom Taiwan . They came from England , Canada and Amarica . But , fortunatly , I 'm better and now I am coming back . I will plant them some bright day in the middle of Novenber . Of course it has cool music , a good cast , and an awosome script . I want to study englsh . 1 cola is about 250 yen , a burger set from Macdolands is about 1200 yen . . . will not be able to eat humberger for 1 year . . . . The sennd one is the Chinese Pavilion in the EXPO . A lot of new similar idoms The other day , I went to the Kyushu National Musium in Fukuoka , Japan , and I saw `` the national treasure Asura `` . There were many people , so I wated in line for a while . The moment I saw the Asura statue , I felt ious mystified , because in spite of the many people / the big audience , Asura was standing there quitely . I know both the bride and the bridegloom , so I hope they 'll have a truly happy new life together . Then I had breakfast and did not konw what to do next . I arrived at InCheon Internation airport early . I was so nervours , However , my teacher is very strict to me , and she always tells me that the facial expression of my painted cherubs looks so weired that I have to repaint them . I had never gone abriad before I went to Ireland . I was only Japanese person in tjis stable . And it 's the first time as well that the original will be played without turning it into a simple one for beginers . It 's `` Gymnopedie `` conposed by Eric Satie in France in 1888 . Creck here . I dicided to buy it . It let me study about Korean history such as how the North - South war started in 1950 and the annexation of the Korean pennisula by Japan beginnig in 1910 . But I workd . . . . . I got some chocolate and a maffin because it is White day . The one I had most success with was a rabit . I fed it from a little rabit to a big one . Alan Rickman plyaed in this movie . But I believe that if there are diffrent forms existing , then there must be some reasons for them to exist and for natives to use the way especially about the usage of articles . Although I have learned a lot in school , I ca n't turn all Chnise into English because I do n't know the vocabulary . I am worried about my English resume , because I 'm afaid that my broken English would make the offices laugh over their head . I recived my telephone bill today . I use that phone for internet access . It 's not suppost to be used to call friends . It 's just me that uses this number to call people sometimes . The details of the bill said I called and used it for arond 1 . 30 hous or something like that . I did not use it like that . I just use it for 5 minutes to calle my friends . They ca n't check it right now but they said they will let me know lettar . and I am very busy preparing for departuring ! We were able to listen to the sound of the waves while we were soaking in the buthtub . Some friends talk about their seacret stories , usually related to love . I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the buthtub . But the importent thing now is to organize a rescue operation . In fact , my father and I just went to the store ( on ) the day beofre the murder . I was really surprized because the horrible murder happened close to where I live . I got a cash gife . I 'm so stressed that I ca n't concertrate on the presentation . There are five people in my family . My mother 's name is Wanpen , my father 's name is Sonjonh . I have one sister . Her name is Tudsanaporn . I have one yong brother . His name is Lertchai . I want to make friends when I travel to foreign coutries : D I wanted to buy 500g of chiken , but there was n't such a volume , there was either kirograms or whole chicken carcasses ! ! The shopping cart was very larege too , so I could n't help but buy more things than needed . I love to lsten to classical music on the internet Radio `` Classic FM ( UK ) `` . Sometimes I have listend to `` Out Of Africa ( Screen music ) `` on the radio . If I have mede any mistakes in these sentences , please correct them ! ! Of course Macdonald 's food is not capable to properly keep us healthy because they use lots of oil and it 's hard to keep good balance of nutrition if we only eat from their menue . if I stop , many things will change . I do n't like my life at this moment . I ca n't realx myself . What I can do is make fun of the people who live around me . Someday , I wanna watch those movies without English subtitles and speak English fluentlly like a native . I love oily American food , but over - eating is bad for our health , so I need to exercise more self controll ! ! ! Today is Moteher 's Day ! ! The peanut butter includes pieces of peanuts and is a little saluty . Also , I like paticurally bitter chocolate . I Worry about it verry much . But I kown I will get busier and busier . Maybe I enjoy it , I 'm also afriad of it . One day goes by angin , en ( ? ) a little bit helpless , but also with some regret ! ah ! It sprended good smell in the bathroom . I am watching a foreighn drama . It was popilar in Janan awhile ago . I heve not watched all of season 1 yet . I think I need more regular excercise . People have many excuse for not to excercise , mine is I am afraid of my skin getting darker . Even thouh he said he wo n't develop a relationship with someone just passing through , I still fell into his warmness deeper and deeper day by day . No matter how loud the clock rang , I had no reaction , so I skipped class this morning . : p But in facts I want to know if there 's any way can make me miss him lessly , cause my friends always told me to forget a person it is impossible to be with . I like the cleass so much , but it 's pretty hard for me to follow up . 1 - Watashi no ima wa ookikute hiiroi desu , sorekara okki mado ga jitensha - doori ni menshite imasu . 3 - Chairoi taku wa arimasu , desuga zenzen watashitachi wa tsukaimasen , nazenara itsumo okimono de ippai dakara desu . todya there was a flamenco show in this restaurant . I can aiways listen to the music of flamenco . I like this music , but can not dance fulamenco . It 's Especialy comfortable to run in the morning . I wore a beatuful dress and had a lot of make - up on . Is my feelings straing ? ? So I asked a salewoman if she had the novel ' The English Patient ' . # 2 is her diaglones and cut her teeth . # 3 is her medicion . I ca n't fall asleep today , because a hurrican has come to Korea . Hello my friends , I have miseed writng in Lang - 8 . It was the mopst Lovely Holiday of my Life . The only thing I am worried about is that someone might hit me and try to steal my money because I have heard there are poeple who assaulted and stole money from people at ATMs in Japan . Turnitin is a detector for bad academic practice or pladiarism . Without having to include any references it would mean it 's pladiarism . If Turnitin warned you that you have pladiarism , you must rephrase the sentences in your own words or include references that you borrowed from other writer or creator 's ideas , otherwise you will lose a lot of points and , to make matters worse , you will fail the course immediately . I have been a public servent for 2 years . I 'm going to join in the Engrish cominucate Forum tornament . `` it 's time I 've wated for your rose that makes your rose so important `` It is like a child 's drawing , so I get embarrasssed . The firewood is fuel for the water wamer . Nowadays , fuel for water wamers is mostly gas or electricity . I am feeling a littel bit sad . I went for a walk around my neiborhood and found that many things have changed . Many intereting shops have been built and it is a pleasure to enjoy them . I did not intend to addess political or environmental issues . For everyday since I had to care of my grandmather , who has I remember when I enjoyed some seasonal festivals with neigbors , went to temples or shrines to be grateful , cook and eat traditional food to be eaten at the particular period . I 'd never heard of such costom before . Yhen I went to the little shop ( on campus ) , it was crowded too . One of the children is eitht months old and the other two are one year old . We have saperated axactly one year ago . I played Cod4 in an internet cafe with a Japanese girl , but we did n't talk much with her , because she was too depressed when shi was playing the game . Actually , at first I wanted to study phsycology as my major away from my hometown ; As a result , I followed one of my best friend to enter the university that I 'm at stuying now . Besides Japanese , I 'm also very interested in other cultures , like European and American culture . ; p I hope I can make more friends from different contries , learn more about different cultures and make a difference in my life . ; p Becouse the bang has hang over my eyes . If you use Twitter , let 's become friends . Ha haha ! I am very happyyy ! ! ! It occure to me that we could have a uesful and interesting time together . But the wheather forcast said it would snow by midnight . But if the tenperature is not so cold then there is a lot of rain or snow . Snow makes tranceportation difficult . I feld very good and helthful . I will take my holiday for Chinese Spring Festival from tomorrow till Frbr . 102009 . So in this perion I may not come here as frequently as I 've been doing now due the inconverence in accessing the net . Today I had planed to read my book before I went to sleep but I am still spending a long time correcting my diary I think I will probably read it tomorow morning . Also it is much more defficult to talk to someone when I can not see his / her face . Unfortunatly , I have no chance to speak English in Japan . I boutht roled fruits cake for him at Shinagawa station on the way home . Dragon Quest joker that I boutht one month ago . If they play a game for thirty muniutes in the morning they shoud go and play outside for one hour in the morning and the same in the aftenoon . These are really necessaly clothes but they are also a little expencieve for me . Also , I love `` Vronica Mars `` ^ ^ We can inquire about the resulst . You also have to believe in youself . This is Beacause it should help me to improve my sense of rhythm . ( I want to be a good singer ! ) I feel like I am a good frind with this device . If he is forgotten by evreyone , he will receive a real death . However , that is not real space flight , but that is the first step in brining space tourism to our daily life . many Korean students do n't like to styudy for TOEIC , The purpose of visiting Nikko was to talk with forigners in English . After lunch we walked around Toshogu Shrine , but we did n't catch / meet any other forigners . Conglats ! ! I 'm no longer supprised when we have blackouts because I 'm now prepared for them . Now , I look at my game collcetion and I ask my self : how did I play all these games ? I am studying to prepair for the promotion test . I 'm having trouble with my anoying neighbor . I 'm at the univercity in Japan . I do n't bileave that news ! ! butI reallywant to communicate with a foreign student , especialy with chinese or japanese student . I 'm looking forward to making many friends here , so please contact me if you have any of those hobbies listed obove . I had a 5 minites nosebleed but it was nothing serious fortunately . Studens really wanted to watch that game . We were really depressed and did n't consentrate . Not being able to stand and see the unacceptable truth , we are planning to creat a new club where students can stick together and share experiences in learning English . To have a success in orgernizing an English club , the leaders need to have interesting activities to contribute and maintain it . because I do n't have enough English skill and vocabrally . Beacuse Baigou is `` The city of Bags `` in China . After the meeting , we ordered a pizza and had a dinner togerther . First taime ? So . . . here is a question from me , what shoud I do each weekend ? Today , I showed my mother how to make a decolation mail by moble phone . It is wholesome erotic , so it 's safe for childre . The day before yesterda was Eurovision . many thought that it was a failrute . I fortot to erite X ' mas cards to some friends , so I wrote some in class . or Europian countries because Nobita is so lazy . Occatinally , we should go through trial and error to determine the best process . I love to watch mvies . I go to the movies and rent DVDs oftenI also have movie channels on my TV , so I can wach movies almost every day . I have a lot of favorite movies , and I want to recommend `` Beauty shop `` with Queen Ratifha . and `` Nobit `` ( I 'm not sure if the is correct ) with Eddie Marfhy . ( It 's so difficult to spell peoople 's name ) My favorable feature about the game is that you can go a battle against your enemies even if your are only level one ! Because I do n't think I 'm ready enough for my futur . And I think getting older means having many responsability . Now , I really want my wife to be a Japanese cartoon whorshiper . As I had thought , she entusiastically read it HAHA . Probably because , in Singapore , Japanese comics are littile more expensive than in Japan . I heve to get better , especially at long - distance Free style My job is engeer in semiconductor . I recieved a mail from my daughter in Bali , Indonesia . I have always been interested in online learning and am looking forward to gaining more experience in tis field . I look forward to seeing my friend becuase we have n't met for a while ! I hope to improve my English becuse my grammar is bad and my vocabulary is so poor . I hope someony will correct my English . He remenbered his father , mother , brother and sister . His tearcher liked him , not only is he a good student , but also he is only foreiger in the class . Can you guess how many men are in Jam 's familly ? Yesterday morning , I did n't check a weather forrecast . writing skills , but also it will be a good chance to get various expirience with I should have spoken clearly and maken sure . Of course , I watched `` Ugrry Betty `` . I will probably watch `` Ugrry Betty `` tomorrow too . m and finished at 7 p . m . After that I had to togo to the office for study session with my co - workers and my boss . Is that right sentense ? Uuuuu I becam sleepy , I think I should stop imagining stupid things . I 'm 12 years old , I want to make a lot of frend . today I took a bubble bath , for the forst time , The Feamale instructor is very nice . The most popular one at the libraby in my town was `` Magical Cleaning : Clean your house with pounding heart . `` The waiting list for this book had more than thirty people on it , so I did n't enroll my name on the list . I have to pass a State English exam so I 'll be very gratefull for your help and corrections ! There 's a chance to meet a person who has a simillar inner world like mine . It was very dericiouse . In our city , winter is ofter cold ; strong frost , snow storms , and ice . Auturm will bring joy to us , when nature comes alive and becomes warm and affectionate . I sometimes felt sea sichness . Yalta is a centre of tourism and enternaiment - well - looked after parks and alleys , a wonderful beach , waterparks and many cafes . All of this attracts many tourists every summer . Alupka has a beatiful botanical garden , which contains a collection of plants from all over the world . 1 To polish my shoews after coming home . 5 To raise my English skill from beginners level to intermeditate Misterious man They came by submarine and consisted of 11 people . They then finally sucsessed through to the boundary of the Korean forces . But all of them were killed by the Korean soldiers , and so he continued to find them while woonded on the mountain with his spirit ! ! So I brought hime to a pet shop in the evening . According to the weather forecast , it will continue to rain untill tomorrow . Yeahhhh - - - - - - - - - - - - - - - - - - - ! ! ! ! I 'm studing English little by little each day . Therefore , I was reserching the market related to these products and costomer . I 'm still cotinuing to reserch today . Then , I play that melody with the new keyboard I purchesed recently . I 'm writting an E - mail . My mother and I hope she stays in Canada and takes ESL at univesity or college becouse it can be more easy to enter , save the money and Univesity in Canada is not bad ! r Umm chould you tell me two ways ? ( take some exam course and ESL class at university . I heard her thinking that she want to do roomshare near downtown from 12 / 26 and it is better that room mate is Japanese becouse of safety . Chould you ask your friends ? Sorry , my English is really wrong , I appriciated your support . Many Japanese prefer to use mixi rather than facebook , because they have resistance to being discoverd by acquaintances ( e . I 've had a funny evening with friends . We went to a big shopping center , then went back to my home and had dinner together . I am working in an `` Automobile Industly Corpolation `` . The machine 's name is a `` Gear Incert System `` . We have until tomorrow to finish any ajustment . Hmmmm , what shold I write about . . My Japanese friend Momo and I are in the same englich class since this semester . For example , she can understand what I say like `` sit down . `` , `` get the doll . `` , `` wanna eat ? `` , `` take money `` , `` wanna have a snak ? `` , `` wanna take a walk ? `` , `` bring the line . `` and so on . cought a cold ? I think I cought a cold . So I shoud go to bed earlier today . I am writting my dialy for the first time . Nowadays I study English for bussiness . My bussiness is sales , and it imports produts from the USA for sale in Japan . I need to conduct sales meetings with foreigners seeral times in Japan . And since I 've used a lot of my time to read English , I am not good at speaking Enlish . So I want to get my speakin ability better by writing a dialy . I feel these 10 years have really flom by . I rentel a car . I am worring a lot about my future . Althought I may spend all day making this cake , I still want to do it . On the thired day , after I left the hotel , I drove my car to my home . I was impressed by the size and the cultureal diversity of America . I got rock salt of the Hymarayan as a ledies ' gift . Most Japanese students do not go to school on s `` a `` sturday but I `` am `` this year . The course instructer is not stricy but gentle and polite ; I thought in my mind that I could keep up with the course ! It is the start of `` a `` new week and study on c `` a `` cumpus . But it 's diffcult to do . Now , I moved to another place , so I have to trancefer to another school named Northview ( read like `` No frills `` LOL ) . A third dolphine apparently tried for two weeks to swim through the icy channel , but reportedly a teenage boy dove into the water , wrapped his arms around the dolphine , toddled it to the boat , and released it safely . I called her back , wondering what happend . Due to the child 's mischief , I enjoyed a lovely conversation with my old freind . These grils did not seem Japanese from any angle . Anyway , I sighed with reliaf . . . Last week , I sang and played the guiter in front of my friends . I have been playing the guiter for two years , but I have never played it in front of so many peaple . Recently I had a headach and a stomach ache . Dealing with all that daily hassle . . . . ( although that 's what ppl are supposed to do everyday ) I went to bed from 4 p . m . to 8 p . m . , so I 'm not sllepy . But they said `` Do n't use lip balm outside of its intended porpose . `` I had a fantastic year . I passed the hair dresser national exam , I met wonderful frends , and I 've had lots of experiences after coming to Vancouver . Now I am learning two languages , the first language is English , the second is Serbskiy . I have proposed many business plans and a business model , which I think was nice , but he only said that he takes them into considerasions . Now , I am studying programming and a system engeneer . A lot of people , not only Chinese but also other countries ' , are used to downloading pirated moives or music from Chinese sites . I went to the International party in which anyone can participate as long as they have alredy paid about 3000 yen each before the party . I think peple are can move from country to country more easily than in Japan because Japan is an island . I have a qurstion ! Two celebrites committed suicide recently . on my importent day I hope to make friends with a lot of peaple on Lang - 8 . It happend in the north east area of Japan when I was at home . I then turned on the TV and watched the News . An earthquake is dreadful but a tsunami is much more dreadful , I thought while wathcing TV . Amazing goal achievment To achive that , I need to take breaks efficiently . MUSIC is one of my lifelines to survive in these stressfull days . Remember , you should listen with the higher quarity HD mode . according to the rankings of the most popolar dogs in Japan , I wana speak English . How can I speak englsh ? How many times has the prime monoster changed in the last a decade ? I like to take pistures , and I want to become a designer : D When I go to foreigh countries sometimes , I want to speak English well ! Scientists think that the entrance to this cave collapsed and animals died from the lack of oxigen . It was a really good dinnner , but I 'm so full now . I aired out my ' zabuton ' becaouse it was fine . To Forigner , Japanese women look kind , tender , and honest . She wrote her feeling and appologie in it . Today , I went to a Vietnamese restrant with my friend after work . I took part in Enlgish Speech Contest yesterday . However , we have n't made reservations for a hotel , train or flight yet because I do n't kwow wheather I can get an annual paid holiday on 28th December . However , I 've gradually learnt / learned what is needed and recentry I 've learnt / learned how to enjoy the job . Jeajung not only sing but also cook XD This was a big celemony on new year 's eve . My daughter was diagnosed with hand - foot - mouth desiese . I 've heard this disease has been going around my frineds ' kids . I just came back from a trip to sikoku . It has beautiful and soft sands and little bit of waves ( Probably , breeze made that waves . ) It totally looked like seashole . it could n't compare to the joyment that the real Aussie beach gave me . Illuminations from each house were brilliant and conjured up a feeling of nostalgea for a fleeting moment . ( it takes you 7 years to become perfert in piano ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school to only learn basic skills or I can not even start . Her full name is Shakira Isabel Mebarak Ripoll ( Oh I ca n't remenber long names like this ) and was born in Colonbia . I hope I can sing , listen , and enjoy Engilsh songs without subtitels . : Do you know who this is ? The lead singer of Guns ' N Roses , Axel Rose ! : Well now coming in , were you rooting for the rakers or the Sixers ? ; The rakers are my favorite team but I 'm a huge Iverson fan , so I 'm rooting for the underdog because the rakers are like a given , so it 's like I went either way . : Now , Axel , you sat out there , you experienced the Philadelphia fans . . . : I know it 's your first basketball game ever , and I know its pretty exciting , but when it 's all said and done , the season will have been long enouh . : Axel , thanks for stopping by . They have `` kushiage `` , the spit fried stuf . You can see how the cook prepaes kushiage from your seat . Such as meat , seafood , vegitable and even seasonal fruits ! If you order the `` omakase `` course ( 2500 or 3500 yen ) , they will serve kushiage one after another untill you say `` plese stop `` . Since Demekin is a small place , it is better for you to make a reservation beforhand for dinnar time . Fortunatly eveyone was on time ! We ate good food at a restuarant We could see the nice ocean from the restuarant The host will invite their relatives , friends or classmates whose closed relatioship from each other sides . In that day , our old friends or colleages will travel a long way to join the wedding without complain . The same people were basicly found at two places : your relatives , friends or old classmates . I 'm so lucky that today is not Friday the 13th , because if it was , I could easily be a charracter of some horror film ; ) I would aprreciate it if you would correct this . The article was ineteresting . I think enantioselective synthesis is very important , espescially as it affects medicine . So I answer , `` I understand a litte `` or `` I understand most of it `` . Last week , I bought his book titled `` The Last leacure `` . Yesterday was November the first . Some people call this day the Bachelar Day . I guss it seems that the figure `` 1 `` looks like a stick in people 's minds so that mang guys link it to a bachelar . Furthermore , January 1 represents small Bachelar Day and November 11 means big Bachelar Day . water - sensitibe dye using onions , so this time , Let me explain how to make it breafly . I would like to do a research on one of the reports about a sports meeting featured in the Renmin newspeper , which is not easy because I have to read all of Maybe the managers of these comany did n't understand the chinese market at all . Time : 8 AM on a Weakday ( if possible . ) However , some items have n't been configurated yet . I hope I can make more English speaking firends . So there are a lot of idioms Japanse do n't know . Our house were really large and we lived with many famlies . My job is a certificated public accounter ? This year the weather is expecially bad . Reading an English newsparer Tomorrw is my mother 's birthday . There was a small town in China and the civils lived peaceful lives . However , an eathquake hit this town and many buildings were collapsed . Visitors from foreign countrie also loves Baked Sweet Potato `` Yakiimo `` ? had beer a littie while ago . A lot of foreign guests visited my commpany . Tomorrow I have a date with my colleages , we 'll climb a mountainj , I the futuer , I will do it . It 's very important to me . Happy weedend ! Maybe my hair is a littele longer than Nicole Richie 's hair . Japan is seen as a representive developed country , and everybody says that Japan is such a splendid country . So we canle the plan and then I cooked for the first time . The answer is absolutly not . Althogh I have studied English for 5 years , I ca n't write and speak English well . But my english was not good enough , so we had trouble comunicate . I was tired because of the time difference , so I went to sleap at once . How can the human heart be fullfilled ? I started thinking about such things , because I wonderd how my heart could be fullfilled if I ca n't satisfy my desires or achive what I want to achieve in life . I 'm interested in learning to annreviation messages like people do on Twitter . Another friend is comming here with a cake he made himself , and others will bring something delicious . everyting is perpect . my firend , whose birthday it is , will come here . My main perpouse was to study English . I deside that when I leave Los Angeles , I will return or stady hard . 2chan is the largest bulletine board site in Japan . This scene must be shocking for many Bruce Lee funs . when I was awake , goodness , the pain was decresing and now I 'm fine , heheheh thanks god ( _ _ ) There wil be articles , prepositions , phrasal verbs , tenses etc . I hve n't made up my mind if I would go and see a doctor tomorrow . Also , the Furugana are a big help since I 'm so bad with Kanji . Now I want to draw a simple high school love - Commedy . I 'm hesiting . When I rode my bicycle , I took my phone from my poket , But I 'll try to keep writng jounal regularly from now on . My present circumstaces are very hard [ / difficult ] . Especialy , poor people suffer the most . Although we did not make moeny this year , I had a great time . Good luck my firends . When I was in 6th grade , suddenly I was out of freinds . My best freind said other freinds not to play wi Since then I 'm afraid of other people , expecially their eyes and words . To find good freind , I have to go outside . But by writing my fellings I want to catch myself . This summer vacation my family and I got tegether . But as times go on , there arises some disagreements between my mum and I . I 'm a colleage student on vacation and I want to study because I must take an exzam in the later term . The government takes these measures just in order to bring about some converient . In my opinion , opening the museum is better , we can learn about the advantages that the goverment providing . Realizing the policy that is offered to people , knowing that country is always cares about ciril life . It will promotr our country 's development . But , I saw a mechanical rubber ducky like RobCop for the first time . One is heading to Dash Village , which is artificialy created for a TV project . Near the end of it , the earthquak struck Japan . Through the accident , I take pride in the consideration and cooporationship of the Japanese people . This site is a little diferent . . . I was looking for a song , then I tought : why not pick something related to Sailor Moon ? Then , I tought back to those days when I was watching PSGM . . . What happaned to my computer ? bcuz my English is terrible yet . so we can make time to have fun in Vue and it 's so valueable watching movies . I am so Thanksful . fry chopped garlic and bacon with olieve oil . I enjyoyd myself . Last year , its value went up double or triple compared to the one at the beggining of the year . Do n't be suprised too much ! When I try to memorize them , I write them on papar and read them with speaking out . I did n't do enything today and yesterday . He said it is culture shock , moreover Japanese service quality is awesome and creative and enjoynable . I hete gorst , heights , dark spaces [ / BLUE ] , sander , when someone hates others , wars , being hated by a person , dying . . . . . I was very surplised [ at ] the announcement . I love the scotish accent ! I 've desided to study English everyday ! And at the end are the angels singing in chorus `` Halleluiah `` . Shengbing is the most famours societies in my college , I want to join them very much . Recently , I watched a video blog posted on ' YouTube , ' and the vlogger said in the video : `` The best person that you possibly can be , is yourself . `` Have you already had the oportunity of meeting that girl whose pronunciationin of Russian is very good ? There seems to be many internatinal people here . And I saw a vedio from youtube . Menu items are named after certain magic and monstars , and the waiters talk like people in the game . Whatever happens , I definitly do not have any excuse to lose heart . Becouse they get marrige young . By the way , today we celebrated the `` green festival `` which is tradisional in my city . Despite the young age , the groom looks really calm and plite . We are supposed to play our song in the ceremony , which wil be fun for us and the guests . Please check this sentense . I often travel aboroad alone . I have been to Vietnum , Cambodia , the UK , Spain , Turkey , the UAE and Greece alone . When doing so , it is necessary for me to communicate with local people in foreign coutries . I try to buy my airplane tickts by myself . It gives me a sense of achivement . Introducing myself and thinking about a gifft for my friend . Please let me know if I have made any mistakes in my sentense . The cow is an old friend of the old man , who has raised the cow since it was very yong . so I only learned grammer , reading , and writing , but not speakingg . Especially when I talk to nateve speakers , I feel a bit nervous because they sometimes reply , `` Pardon ? `` or `` Say Again `` , `` What was that ? `` It really made me unconfident to speak . It helps us improve the ability to relate or summerize something in ways that are easy to get . Anyway , I have to say that learning anything is not a piece of cake but our passion for them will helps us be good at them easilier and sooner ! ! ! I do n't like only the Europian one but also the Japanese . I wrote a report about `` Wagashi `` ( Japanese tradditional confectionery ) at university . Foods are parishable and it 's easy for them to gather mold . Today , it raind for a long time . These days , shares of smartphones in Japan are increasingrapidly the same as ohter countries . So , I do not want to delay making a dayly diary , and the `` Big Bang Theory `` sope opera is waiting for me ! Some friends told me they also have the same feeling as me , they said sometimes they would feel loney , and when they want to call sb to have a chat , there is nobody to call . . Badly , I do n't know why should I do about reseach topic . this is my reseach topic . And now , nobody does dont know what Facebook is . However , the fact is that we can never garantee that those people will be with us throughout our life . We keep learning to be independant , starting at a very early age , and are encouraged to creat things by own hands . By making different decitions or choosing different life directions , we depart from the same junction where we met , became acqauinted , created lots of good and bad memories , and then began our own distinctive jurneys . There 's nothing unchangable in the world . This sometimes leads to desapointment . my and a reading room . Starting today , I will go to an English acadamy and reading room . And I dicided that I will write journal on Lang - 8 as much as I can . I study English because I 'm intersted in it . his wife in a wheelcar , - > wheelchair Today , I woud like to write an essay about the Tohoku queake . The train swang back and forth like a swing . I did n't know what happhend and I thought it was a breakdown . Whan I heard of the earthquake , there were no trains moving . It was more terrifying than the queake itself . I heard that many children were helped by strengers that day . I do n't know which department I 'll work for yet , but I feel like I 'll be placed in men 's clolthing . I hope I can improve my english by taiking advantage of this site . He meets her evryday . My frieds also like movies but their favorites are mainly Japanese or art - house films . Now I am worried that I may feel that same way and delet this new blog , And because I also want to promove my blog hehe ( http : / / room - 501 . I am looking forword to experiencing life and culture and so on . Good eveninng ! ysterday , I went to work . This is my senond day today . I checked my dialy entry , and it had many mistakes . It seems like it is not perfectional at all . I daydream about having a great job , and being a milliomaire . But while fantasy is pretty , the real word is cruel . I hope I can imporve . Additionary the Internet can solve unemployment problem which developping countries have . The Internet helps us with communicatig with foreigners . Before the Internet became common , we had to serch for information in dictionaries or books . Thirdly , the Internet can solve unemployment problem which developping countries have . By giving buisiness oppotunities to developping countries people , the Internet can make their economy much better . As you can see many people use the Internet for communicating , finding informaton , and even for developping countries people , they can find jobs by the Internet . Im often watchi foreign dramas . I went to the libraly to do some writing homework . TOEIC is one of the Japanese Enlglish qualification tests , This mroning , I got up early . Seoul is expected to be cloudly and without rain . We went to Koube . However , I have n't prepared for that at all in this month , so I am very worrried about that . Since then , I 've visited Korea and the philipine . Father took the yonger of the two children out of the car . He is a budy of my friend . They finally successed So I 'll try jogging with my iPod touch and a Nike censsor . And then I aslo want to traslate papers on other topics which I wrote about , like A town of Tokyo and Images , ( That was my specialty . ) or something . That 's what japanese does while Japan was invating Asian Countries when Japan was once under imperialism . But can we say that it 's the right thing that it 's been a weakness of Japan at deplomacy and Japan is blamed about it forever by some countries ? At first I was surprised at reading a sentence that said `` I felt very happy about Japanese being afflicted by the atmic bomb , when I saw the photographs . `` When I read the sentences , my head seemd to awake suddunly . In addition , it described the terrible behavior of Japanese soldiers concreatly . But I think about it calmly now ( when I was 20 ) , I have an opinion that it 's not a right way of thinking like `` I 'm very happy about japanese being damaged . `` Because the `` eveil `` is not one of soldiers or one of the citizens . Fuji , wchich is the hightes mountain in Japan , and Hamana - Ko lake , Sekigahara . The stage , the crowd , the light , all has disapeared in a flash . As I get accustomed to the real world , I start smilling to myself . Parents threanten children to do or not to do things with horror stories . He creats his own world , and is great within it . We enjoyed a delicious lunch , after which , we went shopping and enjoyed the atomosphere of Christmas . Today was great througu I still felt like a isolated knight except when talking to this girl who was really sweet who taught me the words `` serendipity and kismet `` . are lots of action sean and I liked the story . But , for tommorows ' classes I will be absent for all of them . So , I will study hard tommorow . I have n't gone to any foregigh countries yet . Perican eat pegion Genshiken is a club for studying varous anime , video games , and manga at college . Most the menber in Genshiken are male . We were a good convination and our team was strong . I did n't remenber that Mia lives in San Francisco and I was really surprised the city had so many slopes . In the book I thought there were a lot of instances of lessons on how to be a princess and affairs between Mia 's mom and a teacher , but they were omitted . I also thought her granma was older and meaner , but she was so elegant in the movie . So she can do whatevery she wants . Becasue I like the French bread best ( from all types ) . Her actios are so cool ! I think her activitie are worthy of praise and she is a wonderful person . Representaion of the `` Life of Pi `` One srange thing in the story is that nobody cleans the molded cheese on the ground . If I had n't seen the movie , I chould n't understand the story . When I go to a supermarket , I walk around to see various marchandise . I enjoy finding new marchandise . The inside of it was a paste of sweet potate and rice cake , though it is ( usually ? ) bean paste . I had a lot of time which I could spend studing English . But now I work every day exept Sunday and sometimes Saturday ( ? ) . For the last few months , I 've been trying to be more progmatic , to accept the harsh realities of life and to do more down - to - earth things . Luckly , I 've found this website . I said to myself , `` This is a good chance to improve my English . `` I want to thank anyone who will heip me . Do you have any idea how to spend time in the dark without using electrisity ? I am a little nervous because I will be embrassed if there are not enough topics and we just sit there in slience . I hope I could help Japanse as much as possible , also improve my language skills . I naievely believed those who told ( and are telling ) His belief is undarstandable and I agree , it will be the new common sense of this world . instead of believing in critisisn , But actually in Japan , where anonimity looks more important than in other countries , We have to do the parformance in front of the classmates . They 'll eveluate my lesson . Many classmates make nice matelials like picture cards , letters card , and so on . They will become my property ( ? ) , seeing medical care and meeting English docors and students . They will become important persons for me in the future because they can cange Japanese medicaln , thinking about Japan objectively . I wnat to talk with her This was the nice greeting I heard today , and it should be the idea that radio peiple should keep in mind on Valentine 's Day , I think . But look after , it was n't that big or complecated . But there 's no regrete . It 's very quitet in the office . Today I dicided to study English again . After I watiched in the Garden , I wanted to be regular emploee of this company . Cotton increased its sales as well , except that it was a rather dramatical rise from twenty thousand to a peak of eighty thousand . In January , some menbers of the team changed . I drank Soju which is Korean traditinal liquor . I went to the Central department on the 3rd of April where an anti government raly was being held . Whenever I 'm workig in the morning , I hear birds singing and remember a holiday I had taken . I stayed in Sukhothai , Thailand . in Jingu studiam today . So I can speak a littele French . In Japan , a sense of crisis is in the air that tha the nuclear power plant accident might destroy Japan . Not only the Prime Minister ( , ) but the peaple should also help revive japan . Since GEVEY , which I have used for my Sim - locked - iPhone4 , has got some ploblems and became Although It 's rather exepensive it 's so yummy ! _ The same level of Chinese food as in Japan . A 32inch Samusung costs 23000 _ peso . I carried it back to my room by hand , _ and applid for cable TV which costs 500 _ peso / m per month . My degital life in Manilla has made rather big ( or good ) progress ! ! I belonged to a musical club when I was a juior high school student . So I should study Engrish harder . Of cource , bad things happened . Alomost all my friends sayd , `` You are very outgoing . `` Therefore , my English gramer skills are very poor , probably this diary has a lot of misstake . I want to go abroad through a school schlarship program and earn a lot of money for going abroad . because I got sick recently and I felt that English was hader than before . Suddenly , I was really worred about that . Speaking is especialy difficult for me . It happened suddunly . I thought it was an emargency . My boss called me to ask if I could go to waork next Saturday . I decided to start using Lang - 8 to stydy English . Athough some people believe a considerable proporton of rural students should put a lot of effort into learning , there really is a phenomenon that rural students are more likely to have problems with getting into an university . Despite that , as an enlightened and obligated government , it shold make this top priority to these originally disadvantaged students . One of the ways to jugdge if it is okay to lie in a specific situation is to consider the reason for lying . But since I have gotton friendly with forien people , I found out the fact that we do n't tell the truth to people is more common in Korean culture . Yestoday the dentist ( denstist is the name for tooth doctor ) gave me a painkiller injection after he pulled a broken tooth from my mouth . Grammar questions , in paticular , were key problems . Having a cold is very tierd . It went the oppsite way . I 'm from China , I can speak chinease ! After sdudting at GV , I camehome . I would like to buy a red trevel mug . It looked tasrty : - ) I would like to eat it ! I had never eaten vienam noodles . I 'm worring about my English speaking skills . Therefore , people gradually lose the capability to cherish the elegant tasts of natural food . I am sorry , I do not have my hometown 's photograhp , but I can introduce it to you ! It 's a beautiful city , It 's very pleasant . People always come in July , August , and September to our city for holidy . Keeping water confortable for saltwater fish using chemicals is difficult , so we took some tanks and carried them filled with water . There were Spinach , brocoli , Japanese radish , etc . These home grown vagetables taste better than the ones in the supermarket . I always appriciate my parents . It remainds me of when I was a child . after getting used to being lazy duging the holiday . My first lang8 diary is this pege . I read ' Billy Elliot ' , a book I brorowed from Jackie . One day , afther the boxing class , Billy learned some ballet moves in Mrs . Wilkinson 's calss by chance . When he went to the school for the audition , Billy was frightened of the posh otmsphere and after the audition he thought he would n't get in to the school but he did ! ! I ca n't rememger all of it . . . . . . . . She suggestted for me . coffee jelly 110g , 1 / 4 whipe cream , 1 cup latte pudding , 1 scoop vanilla ice cream Seattle vs Detroite . Seattle 's starting picher was Michael Pineda . These days , I have been very busy writing 2 kinds of graduation thesis ( because I belong to 2 kainds of seminars . . . ) , but these letters were refreshing : ) And after school I go to additional classes in informatics , biologi and algebra . We had a ferewell party for overseas studens yesterday . However , the result was incrediblly bad . . . Recently , I 'm always tired because everyday I wear fomal dress and am asked So today we 're going to renew our expired pasports . August 11th . * Ougust 11 August 12th . * Ougust 12 August 13th . * Ougust 13 Atheletes playing sports encourage people to be more alive in their life . Assuming the amount of enjoyment people obtain from waching is proportional to the amount of money athletes obtain , it is even less of a surprise that they receive such a large amount of money . From a different standpoint , we might view the mountainous pile of money with suspicion of whether they , atheletes , really need such money . I think that they do n't have enough provisions of electrisities . Anyway , I gave up on taking a shower last night , and I tried again this morinig . But my heater was broken becuse of too much heat . That heater give out a white smog and it smells as if something 's burnig . A few weeks ago , I watched the movie `` Dawn of the Dead `` with my firend . People who were not infected tried to survive and gethered at the mall . Nonetheless , they desperately waited for help from outside in the hope that there must be many people out outhere alive . Nabe is boioled vesitable and fish and meat in a boul . It was very delisious and filling . these days people do not have time to stay healthy , they do not have time for exercising , eatting and sleeping well . First , nutrition is one of ther most important for good healt ; therefore , we should have a healthy food . One strees clear of high cholesterol foods , such as eggs , fatty meats like pork and sausages . Abstain form dirnk acholo anf caffeine , and try not to drink more than a sip of water within one hour before going to bed . Thirdly , exercise to firsr bulid heart rate . However , if people too busy to go running , walking is another choice or taking the stairs insteed of the elevator . After that , buliding muscles . Of course I am allowed to sleep if nothing has happend . so I am really happy that I learned a alittle bit about e - bay . I 've alredy written three articles ^ ^ If we change the way we think , the protests could be a good step toward making Thainland a better country . It is sooo sad , but it is very real . One of the Krean student made a frog using origami paper . My sister highly recommanded me to watch a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about its storyline because there were a navie guy and a weired guy dressed in and put on evil - likers . It was like writting in some strange language . I can not let this feeling distory myself , I should find something to do , it is urgent . All I get here is loneless . The third dialy ; ) The doctor said ( that ) maybe I felt presured or too nervous . Yesterday , I went to see a doctor of traditional Chinese mecidine again , He foun it ! ! Accrding to this program , Dutch people eat sandwiches that have a biscuit on top of bread . Both counties have a lot of worldwide counpanies despite their small land . We do n't uaually connect each other . I did n't really put as much sunscrem on my body as I did iton my face . Well , I gusse I 'm feling much better . I have a lot of fun when I 'm writting it . When I think back , there were a lot of things that happend on this year . It was very awful that no one else cound take care of my son . Selebrate the 1st of . I am going to make her a pasta with tomato - sauce and baco , and the cold potato potage soupe . I like cookineg and I 'd like to make my wife happy . When spring has come , we not only have a lot of cherry blossons but it is also the time for graduation celemony at school . I feel malancholy . I think nodody could know how I feel . I need to think that everything will gose well . Was somepeople not happy today ? If you were n't , I want to tell you to smile . But some of my friends have already had opearation , and in addition I 'd rather enjoy the present time than worry about the far future ! ^ ^ But the cost is very expensive , 20 thousand yen or 2000 $ using a dicount coupon . . . What 's the reputaitons of Lasik in your country ? How about in other counrty ? ? Today my sisiter came to see me . such as the current economy , climate , entertainment ets . During the stay in Toyama , I relished mountainneerings to my heart 's content . One time , I climbed a mountain called ( if I 'm not mistaken ) Tateyama to , hopefully , observe Grouses which are disignated as an endangered spieces in Japan . The summit , we found , was replete with alpine plants and some sighnposts proclaiming that we could n't set our foot in the places palces where the plants was growing . This is between us , but we broke the rule and sneeked around on the plants to see some species spieces we could n't see from pathways . Or most of the plants were very medest t and even tiny projecting a humble atmospher and might have graced our eyes for a fleeting moment . Yet , mountainneerings was certainly worth no matter how may times we did it . It was parked by my dapartment parking lot last night . I did giological field survey . For example , : Japanese Vocabulary is a Japanese study tool designed to help you lesrn more than 400 Japanese words . One thing is that I wanted to comitte myself for the couse of whole Japan . It occered to me that I would rather be poor than to live thinking only myself . If you correct this entry , it is very instractive for me and I will be very happy . I live in lapan . I am a college student . It was the traditional festivel of China - - - - - Mid - autumn Day , it was sunny and at night we enjoyed the beautiful moon . I need more excersise . Japan drew with Jordan at the thir first game on 9 January . I thougt that Japan would absolutely win . I 've just registerd on this site ! The car nabigation system in my car is broken . Friedrich : Jo , such a littel name for . . . I had a good expresson of him . Hallo Everyone ! Its saling now . It has slices of cheezes , meat , lettuce , taco meat and hot tomato sauce . I wrote a diary just now and got a response imediately . I feel you guys are so passionated . Some ( people _ insist this methoad is bad cause we can use the worng expression again and again . so put on a smill I did n't concentrastion in class . more interesting was my collegues who didn . t speek chinese . because she is Korean . I live in Hokkaido , the nothern island of Japan . We have to live with just one , small electical fan . Bagles are So Expensive Today I went to a bagle store I have been interested in . It would n't have cost me more than 5 dollors with a drink . My favorite idol committed suiciside . My hobbies are snowboarding , travel and andstudying foreign langueges . Now I am studying English and Spanish . If you learn Japanease , I will help you . If Jpanese peopel learn English based these misunderstandings , they will use English rudely and upset others . This show plays on TV at 6 ' o clock pm but I ca n't watch it because of my church servise . It has aleady become my favorite show . In this show 7 singers apear and sing a song against each other . but I preffer a whole one with its insides . I 've been ready for my new bisiness for many years . I 'm planning and making a new web survice with my friend who is an expert at computer programing My ideal web survise will launch soon ! To develop a web survise takes many years and a lot of money , and no one can know what web survie will succeed . I 'm going to take a chance on my new bisiness ! The school has the same service but it has some kind of rules like the deadline to recieve that service . The first 3 weeeks was a challenge . Pronuciation , intonation and stress were defficult and they killed me . Sometimes cultual differences caused misunderstanding . The word I used were taken as a different meaning but it told me a lot of things . How important it is to understand backgrand of the language . I went school and leared about English Education . My frind visied me . He is from Malysia , and I met him in Australia . It was about Japanede culture . I cried whan I left my home stay because they have been like family . I will difinetly come and visit people I have met in Vancouver . The othre day , it was broadcasted that an entertainer was hospitalized for tubeculosis . I heard that she had had storong cough and felt lazy for long time . These days , she went to the hospital and was checked up , and she was diagnosised with tubeculosis . She is very popular and appeared on TV every day , so she had many contacts with many people , so it is possible that tubeculosis was transfered to many people . Patients with tubeculosis need to be insulated into special hospital . Tokyo prefecture and the office that she belongs to started to inform the people that may have recieved tubeculosis from her so that they go to hospital and get checked up . Cerebrities many opportunities to comunicate with a lot of people , so I think that they should go to hospotal and get checked up soon . Today I talked about a shortage - of - clean - water problem in my English converstion It 's Rainning . It has been rainning for 3 days . If you come to Japan , I definitely rcommend you to eat Ra - mens . For such reasons , I sometimes forget easy grammer and words , but I am glad that u correct my dialy willingly . 1 : to talk about daily life in easy English with foreiners I do n't have enough knowledge adout every genre . Althrough I 'm an English major , my English is not very good , Recenly my eyes have become worse and my last pair of glasses were in bad shape . They mit my face . Mussle training ( weight training ) and walking have made me slim . I was invited to a lunch by my hasband 's colleagues . The oven was out of oreder ? I could n't understand why it was not working , and I asked for help to my hasband . I want my English sentenses to be polished up . So , Amelican or someone who can speak English , could you correct this diary ? ? I 'm a little lonly , but I 'm looking forward to visiting her in NYC . Today , I 'm going to the English club in my neiborhood . Randon toughts of a silly ( and sleepy ) mind I started this entry whitout any ideas to write . The wheater ? Well , today the sun decided to show all his magnitude and the resoult was a realy hot day . ( Maybe he picked a fight with the poor clouds and banned them from the sky . ) Okey , I just finished talking about wheater . . . I know that is only 9 PM but today was a realy tiring day and I 'm realy sleepy ( that 's why my post is so silly and have almost no sense at all ) . I can get realy silly when I 'm sleepy . ) Today we seperate the teams into the 2nd and 3rd class versus the 4th class . After a couple weeks I decied to buy it , but it had already been sold . Since then I have been looking for this guitar everywhere / in every coutries . I can understand the doctor 's workloard is very heavy but her attitude is not very nice and friendly . I 'm considering working hard to imprvoe my English skliis . After a moment , one man came up to me and sat down besaid me . Then , I got to the Foreing Book area , I found an English wordbook . Today , I am going to go to the lalaport , shoppong center and buy some presents with my wife . There are a lot of advanges ( when ) attend ( ing ) a live performance . For example , watching / ( hearing ) the muscal in the seat near the stage is the astounding . I belive 2009 will be great time for me to improve my international experiences . welcome freinds ! ! For example , I do n't like shopping , I have no interstes in those silly rumors about boys , and I 'm totally not addicted to love stories or movies . Instead , I play DS or PSP games , read detective novels , or wrting posts in internet forums . But I am oing to change my place of work because of the crisis . My company has suffured because of this crisis . I read `` The Da vinch Code , Lost Symbol , and Angels & Damons `` My name is Liuquan . I want learn English well , but my English is so poor , so I want make more friends to hlpe me improve my English ! So It was very derty . His performances aways influence me deeply . Of course , we can also see his great performances in Chocolate Factory , Pubilc Enemies , Edward Scissor Hands , Sleepy Hollow , Chocolate , etc . graguate program is n't an easy work . I have applied for up to 8 shools , costing totally 1000 USD for Considerating school reputation , cost , and lenghth of program , I Being admitted is only the beginnig , loads of works are waiting to be done . This evening , I watched a movie called `` This is it `` which is organized with footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London schejuled in July . I am intersted in American comic culture . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tsuna , and many other ingredients that were available in my home . Matsushima is one of the beautiful spots in Japan . We call it ' Nihonn Sannkei ' as there is so much beautiful scenery . So It 's my favorit driving courses . In addition , I am worried that there will be a typoon today . we have a long hoilyday . my Enilsh is very bad , I want to made good use of those days to improve , espesally my speakon Enilsh . I have been learning english for 22 years , from junior high school , and now it has been 10 years since I graduated from my univercity . ah , that is such a long time , right ? And yet Ifind that my English capability is the same as 22 years before . Today , my family went to a shusi restrant and enjoyed sushi dinner . No . 3 : tuna eith leek The series has been pubrished since 1994 . I think that if you want to be rich you had bettr learn three categories . Economics , politics and money ( that includes money market and investmet ) . I do n't remeber at all , but I was really , really happy because I received the entire `` The Lord of the Rings `` collection from my grandma . I usually eat cut tohu in miso soup and rice for breakfast . Miso soup is soybean paste disolved in hot water . I plan to have a big dog on the huture . The cherry blossoms near my house , bigan to bloom . I was thinking of getting a driver 's risence during the spring break . As I have never ridden a bike before , it is very diffcult for me to get started . Back then , I believed that I could n't keep my banlance so I was afraid to have a try . Untill now . Now I have a strong will to master this skill . First , I had a sore throat and then I had bad caugh . . This TV program videotapes everyday lives of patients with Alzheimers and thier family . Then I saw that the patient in the show could n't wear jacket correctlly ; she put it on inside out . I waana have it . though my lips and teethridge feel paralysised . I 'm so nerveour and feel like I have butterflies in my stomach . Athough it is late , happy new year and I hope your business will be seccessed . I 'd like to have a succeful life . We all knew that Microsoft set up a website to moniter the usage of IE6 . A grammer book A grammer book made me fall asleep . All products are 30 to 50 parsent off this season . This will be a good lesson foor me . If I say something in Taiwanese , it lets my feelings transfer to the other person very dirct . January 17th was the 15th anniversary of the Great Hanshin Earthquak of 1995 . Kobe is an urben city and famous for fasion and nice food . Many peopl were chrushed and burned to death under the rubble of houses . There were many blue plastc sheets covering the debris . I truely wish for Haiti to recover as soon as possible . Some kindegarten have school buses . Its ingredients are potato , carots , sosage and so on . I remember the song ' Lonely Day ' by Sistem Of A Down . `` The most loneliest day of my life `` . . . I need cry , but I have no reason to . Once upon a time , one man wrote a sad song and upon hearing this song , people would commit suicide . I think ' Gloomy Sunday ' is a beatiful song and therefore I didn not kill myself . Japanease and foreign people visit this city for sightseeing . . Do n't depend merely on infometions . I am keep going to write Englis entries . I hope my englis gets better and better ! I 'm going to gather some imformations about it . Nagoya is the thirs largest urban area in Japan and is located between Tokyo and Osaka . I 'm working in a restrant It is a high school 's baseball ( team ? ) and youthfull . I am very glad to finish it successfuly . I am studing english now . peaple all over the world have to help each other . if we ca n't communicate with foreigners by talking in our native lungage , we have to help each other by using euglish in the world . When I came home I looked at the moutain of his toys toys that he had made in the living room . When we were young we responsed to our dad or our mom for their love . before I signed up it , I looked it up on wekipedia Whether nighttime demonstrations should be permitted or not has long been a controvercial issue in Korea . But since it 's quiet and confortable for me to cycle from the station to my home , even in Tokyo , it 's cool and silent at night . I 'm 20 years old , and a student of univercity of design in Japan . and we recognize them as `` real `` foregin women . ) And Japanese tradiitional behavior , too . I gess the pictures are rare . As I usally put on makeup , these are very important . Third , It was my porpose , I chose Yukata . If I were to be a pianoist , I would like to play the piano for children . Many tipical Japanese companies have new years vacation during the first three days of January . I normarlly lie on my stomach when I have Yakiniku . I wonder what had happend to their relasionship after dinner . I have never visite a place where the tempureture is so low ! ! ! I will visite the USA this winter ! However I have a plobrem with a certain personality in my seminar . My fevorite team is Consadole Sapporo . Could you please tell me othere sites where I can read texts written by native English people ? I wanna be a Chisese teacher My company serves ous box lunch for a small fee . but the curry tast different from previous one . Ketchup tast was strong even though I poured soy sauce on the curry and rice . Korean peple made a good impression on me because they were very kind . I have change tha Tire . Have you ever seen cherry bloosom ? Many people who travel around the world can not exactly explain what culture is , beacuce the feeling is beyong words . Those who exprience culture in preson are different from those who just watch travel channel . If you truly love a certain nation or place , the best way to understand local culture is definetily by traveling . If not only to experience the culture but also broaden your horizen . Then , the next time someone asks you what the culture is , then you will realize how improtant slience is . Lisning pracice . What is he saying ? I 'm reluctunt to work on English . Anyone have any tips on how to cotinue studying English ? Do you use Iphon ? Today was not a spesial day . Next spring , I will attend Univercity of Kyoto ( not Kyoto University ) . This ketchup made the chili more tastey . I presented a marrige present to my colleage . practicing English , I write a diary here . She picked it up and brough it to their house to eat it . Late in the afternoon , I finished my graduation ceremony for my diproma . I was encourge by her and was warmly received with a friendly smile ( I can see that she is a religious christian ) , then I began to talkwith my friend whom I 'm afraid of and hated before . I receved notice of an Informal Decision yesterday ! The alternative medecine In the linear algebra class today , we listened to an academic lecture . ( Usualy we are taught the baisis of linear algebra . ) Today 's class might be special . Unfortunately , I did n't have muy own a lot of colonial places to visit , and has many foreigns . Okonomiyaki is made of kneaded flour and sliced cabbage with some favorites . Recentry it 's been getting hot . I like flavored strawverry milk in it . Usually I buy botlled tea when I go to the languege school vending macine . but I do n't want another bottl becouse it 's heavy ! On that occasion , she got mad ! ! I do n't undrestand ! ! ? ? Today I ate Takoyaki with my friends , which we made togrther . Es tut mir bleit , aber ich werde heute Abend nicht hierhin kommen . But there is a Japanese craftman , who has lived there for 20 years and has devoted himself to restoring the tradition . It eventually came from the germ of an idea , tentatively tried out by the oboes , clarinets and bassons , which the cellos and bass turn into a fully - fledged theme which was taken up with incresing enthusiasm by the full orchestra . These memories are unforgetable . Fusen volleyball was born in Kitakyusyu in 1989 . A : Of couse . Each uncle or aunt has a son and a daughter except my yougest uncle . I am losing confidence now . . . . . . bad listening aptitudes , poor reading abilities , even wose writing competencies , and the worst speaking skills ever . . . . . I am very much looking forword to my day off . `` Hakone `` is the name of a place which is famous for hot sprongs . Every year many daramas unfold . I want to send a letter so please correct my sentense . I want you to play the guiter and sing songs ! ! I got this moive from my malay friend . Studing abroad He also taught me about food from vorious countries . Because my mom went to my grandmother 's home in the moring . more than usuall , and here is the fact . Second , I 'll do some anaerobic excercises every morning such as sit ups and push ups . It is famous for the Otaru canel . At this event , the city is lit up with many candoles . I worked with my gloup activity members . We made a snow slide and places for putting candoles by shaving snow and ice . But the candoles were beautiful and I met many lovely people . I like the SPA ` cause it ` s a very relaxing and commfortable place . After I go to the spa , I want to go to shopping ; I also want to buy shampoo and some snuck . because their plays are dinamic and speedy . I want to say to everbody that I want to make friends with you . Today , I was thinking that I 'm a loving persion . Esepecially when I am doing something or making decisions , they do not always agree or understand my view ( continue ) Here in Russia we have `` May holidays `` , that is additional days off on the 1st and the th of May . First , I read the Liberal Democatic Party 's manifest which was the governing party before this election . I thought it was terrible how they wirte against the Democratic party . I am planning to visit many cutomers for new year greetings on Tuesday and Wednesday . Usually , I have done that at the end of the year and new year holiday , however my wage has decreased for the past five months . On top of that , my December bonus was really poor due to the hige recession . We decided to share the suffring and regain our profits together . I am a kind , funny girl with a big heart and know 4 languages ; : ) Russian , English , French and japoneese . Hallo world ! Aiso , I wanna know about foreigh countries ' cities . And some of the most presious traditions such as reading together , singing after dinner , walking along the riverside , have become diminished . Probably , becaus of age . I have stayed there aroung 3 months to study English . I was sleepy , so I could n't answer the theacher 's questions . I dreamed for almost fifty munites during the lesson . I 'm starting to write down a dialy from today . I want to communicate with them fluentry , and enjoy conversation . Thay are professional guys . I have to make a twenty - minute presentation tommorrrow in front of about 30 people . Additonal , I would like to receive recommendations about more interesting dramas . After the exhebition I can go home ~ ~ Becouse it is very warm today . But I am very poor with gramma . Today my work was publicated in newspapers under the title , `` Students read and write newspapers . `` Today his essay was publicated on the reader opinion page . As the final examinatine is coming , my domitory matters and I was busy writing a review , so I do n't have enough time to write a diary every day . I am looking forward to attendding the wedding because I 'll be able to see friends after a long time . I think that it depens on each countries , what kind of number does your place dislike and like ? Hi , I 'm Japanase and English biginner . Unfotunatery my English skill is no good . ( what they did was alculating and memorizing rather than studying , though . ) There are many kinds of chilren . My mother is a holdhouse . Recently , there are many proglem in the world . When I went to my office , I was goin to call to my wife , but I did n't know her phone number because it was in my mobile phone . . . I moved to Hong kong recentry . Because I played baskectball after class . Do you get nurves talking with foreingners or feel pressure ? I tought that he was a very kind . It 's too expesive . As a result , the vegitables are too expensive ! I want to speak It very well and make new friends elso . I start wirting my diary on Lang - 8 from now , but my English abilities is n't good , so please teach me correct and better than grammer or words in my diary . She went abrod to many countries when she was young . Because she ikes traveling very much . I think it will be a good influence on us to spend more time in sunlights because it would improve our efficiency . I bought a degital camera and flowers for my mother , because Mother 's Day is coming . I wanna travel to freign countries as soon as possible , but I ca n't do that , because I do n't have the money to travel . But he was happy and laughed a lot while takling with us . All most of them have ( thier ) own jobs and they practic soccer in their off time , nights and holidays . I belive that they will get the gold medal in Olympic game in LondonDo n't need comma next year . My throat is still swallon . I need to learn English becase I live in Boston with my husband . His job is reseacher in university . ( See below . ) I need to compare the test case with mine for checking if ther are discrepancies between both test cases . `` Can we do this ? `` when I heared words , I imagined that If I did something impossible , what would I asked myself first ? The men in this room had begun to make plans , they wrote every problem which they would meet before they landed on the moom . First , my english leavel . Second , My editing leavel and CG leavel . When I putthe popcorn in the microwave I set the timer 5 minitutes . Tomorrow is mother 's day , when we were young our mom took good care of us , as we grow up , our moms become old , some of us do not treat our mother very well , now I just want to say everyone of us should take good care of our mothers , tomorrow we must tell mother `` I love you , mom ! `` I hope every mother in yhe world will be happy everyday ! Maybe tomorrow night he will be very tired because he is a heavy drinker , so I 'll going to there with my friends , who are shielders . ( I 'm sorry to my freinds ) He had a dream of being a computor engineer . Now I 'm a computor engineer . Moreover , I went to shcool to last Monday from last Friday . I have lots of friends here , but they are Singporian or foreign people whose first language is n't English . So I want / to get an oppotunities to talk to caucasians , and I want to improve my pronouciation . Today my business partners invided me to lunch . She previousli lived in the UK to study abroad . But she said that to study abroad a savings is repuired . She has also been to France to snowboad . I will have to study hard , especially bussiness English . My favorite sezsom is summer . Tell me how to ddistinguish Masayoshi Son , presidenr of Softbank Group has sufficient talent and strong leadership , just as as Mr . Eiichi Shibusawa did during the Meiji - preiod . Japanese believe that it is a luckey symbol . Afterwards , my friend said he wanted to see Avater , so we went to a movie theatre and saw Avater . I 'm a little nurvous . Today , I borrowed a book about Robin Hood written in English from the libraly in my univercity . I have graduated from univercity . But I do n't have a job due to the resession in japan . The formr is important to the Japanse . I know that is too taugh My jop ! I work at the Hosan Corperation , a company that deals in industrial tools . I 've been there for a year . It was alright , thogh . I am very weak at gramma and speaking . They tried to exclure me from the group . In Japan , it is vaction from January to March . Since English is spoked all over the world , if I can use English , I can communicate with billions of people and learn about many countries . I felt a great shock and asked him why he never spoked in the language to me before . `` You are too enthusiastic when you are using English , too much gesture and too much face expression , `` he looked at me with his sincere eyes , `` what 's more , you English pronounciation is too much like a chinese . `` Why do many people come to me these days and tell me thier ideas ? The word is that Amercan Blockbusters is on the brink of going belly - up and its 500 to 800 branches will be predestined to close up within 5 months . to see turips at the flower garden . In order to write great compositions , I asked for my English teacher 's advisements this morning . I will patiently follow those advisements and write English compositions diligently . The biscuits do n't contain suger , so I love them . `` How tired I am of this unburiable distance between us . I should go play tennnis . I shoud go to tennis practice . I helped my friend in a diffence position do a job . I heped her cut the peper for a long time , and then we went home She had an umberla , that is good for me as I can walk with her and not get wet . My friend sent a message to me in the afternoon . She said she was excited to meet this weeken . It really helps me to study Enligsh and makes me study harder than before . I made a marrige contract with my girlfriend . That data is not credibirity because it is of low presition . The simple fact is , however , that it is difficult to get accurate imformation , eat enough food and avoid the poor hygiene . And as a matter of fact , confunism belief tells you to respect the elders just because they are older than you . It is true that a young people may be inferior to the elderly persons in terms of knowlsedges , skills and experiences . So my opinion is really nutral . The elderly people are not good at adupting themselves to the new situations with flexibilities , but they can show or share good advices with the young from their knowledge and experiences . And on the other hand , the young people can support the old with flexibilities , aduptabilities , and enough energy . My mother and I will be going there to congraturate him . Hello friends . Today while I was chatting with my frinds , we talked about bungee jumping and I asked them who would dare to jump out of an airplan ? For me that is a silly thing to do becasue I am scared to do it . . But I will never forget this good experient in my life . . Learning while having fun is such a good exprien . Until the quakes calmed down , I coulud n't move anywhere . . . The radio told about TUNAMI , but I could n't believe it . However , my Englishi skill lacks vocabulary . Threfore I feel anxious about the examination XD First , we can know many things because we can read it speedly . Next , we can find it again very quickly because it will be in our house . but English says to me `` Vitaly you are so stupide . `` For example , a bowl of rice topped with many kinds of ingredients such as flavored boiled beaf ( Gyu - don ) , pork cutlet with lightly cooked egg ( Katsu - don ) and slices of row tuna flavored with soy sauce ( Magurozuke - don ) . ( Sounds delicious ! ) They have varyous course menus . What shouldnI I do ? There have been a lot of things I felt there , but I culd n't express to someone what I experienced . It 's my first dialy . Because I 'd like to use English with my buisiness ( job ) . Though I am a master student and major in civil engineering , I have a choise to decide whether I get a job as a banker or an engineer or others if I want to work at an international organization . If climate changes , some probles may happen . But unfortunately , I did n't take the entrance exmination for college . Now I am studying to get a adult college degree . I think this degree is not as good as a4 year degree , but it 's better than nothing . because she is good at cooking , cleaning , and landury and so on . ! ! The Tyhoon still affects the whole of Japan . I went to work the day before yersterday . The Tyhoon was approching my city . During my breaktime , the train which I allways use had already stopped operation . Even although ofiice bosses sent us a messeage , `` If you are worried about returning home , contact us . `` I knew that I could only wait because of train being stopped . I can safely come back my home , albeit it took a longer time to arrive than usuall . Instead , I concentrate on studing . If you were me , which would you choose , having a part - time job or studing ? Yeaterday , I went to Ann Mo Kio Aria , to meet a friend . We are langagge exchenge partnar . I went to the park begind MRT Station and had a nap at the park bench . I do n't like eating breakfast at home because I prefer to eat delicious food such as continental breakfasts rather than tranditonal Chinese food such as congee ( rice soup ) and plain vegetables . I know the tranditonal Chinese food is heathier than greasy food but I want to eat something special occasionally . The man was arriving home with his new second hand television , which he had just got , when he was surprised by the local police and imediately arested . How efficientely the local police are ! I have visited Greece , India , Peru , Jamica , Cambosia , Thailand , Chaina , and Bolivia . One of my New Year 's resolutions is execising every day . I 'm so nervous because I am writing a letter to you for the frist time ! There are so mant people in McDonald 's at dinner time ~ I waited for a few minutes and got a seat ~ Reserch project What dou you think would be an effective way for me to get corrections from English native speakers ? Why do some students study aboroad ? At first , I write a jounal entry in English on lang - 8 , then I write down in my notebook and after that ask someone to correct it . When I told them the price of these at least are more $ 200 as new goods , they were very suprised . I can not explain it exactly only in writting . I had been keeping my hair short since this year started , but I got boared with it , so I did n't get my hair cut very short this time . I heard that Tagalog , indonesia , and Malay are absolutely the same . I knew that indonesia and Malay are absolutely the same . Preparation methods include nurses explaining to children how receiving an injection works , examination and treatment and how to prepation tools such as books , dools , toys , conputers , etc . but I knew it 's in their genialities . So I have n't goen out for several months . But it is ok nowdays . So , I have an importent responsibility to fulfill in Hong Kong , and our nation , China . At this school British English is taught , so sometimes when she is speaking I do n't understan inmediatly . However , I will do my best to try and learn American , British or whatever English accent is required . xD I wish someday I could teach English and travel to Toront or London , maybe Washington . xD l love climbining mountains . I beared the pain as the feeling was good . So they bacame to be together . I respest him . Well , my priority now is English , because next year I 'll take the entrance test at the university , and I chose English as my foreign language , but I 'm falling in love with Japonese ! Natyrally , I will correct your Japanese too . Althouth his name was little bit difficule for me to pronounce , he was nice person . After lunch , I was waiting for the staff member who orgnaized the homestay program for me . Astronaunts brought back a moon stone to Earth for NASA to analse . Lastly , the number of crimes increas when the moon is full . Btw , I have alredy experienced being the only girl in the class , and I changed the class . I hope I can enjoy all my classes during the second semestter . Then I cleaned the kitchen , ewpecially the kitchen range . The more I learn English , the mroe difficult I think it is . I 've just reaized what her friendship means to me . I think at this stage in my life , I shuold not defraud myselv . HOWEVER . . . . what she told me at that time was only a lot of complaints for her husbund . Most of that were caused by a difference of costom and the way of thinking , such as religion , thoughts of how ( a ) husband and ( a ) wife should be , etc . But through the experience with my foreign frinds ( I ` m still a university student ) , I have really started to want a `` natural `` kind of conversation , I mean the kind of conversation even native English speakers think sounds natural and common , not strange . For one thing , I want to study at the same unerversity as my brother does . Although we can now change our appearances with plastic sugery , it is almost impossible to change our voices . Even if I do n't have anything to write , I shoud write something . Almost every mornig he barks at me , but when he is satisfied , he wags his tail . His eys always look sad . In the morning I went tob see a doctor . Finally , I ate out with my speaking class menbers and my speaking teacher , Paul . In the afternoon , I went shoppin with my mom . I 'm from korean . I live In Sapporo city , which is located in Japan 's most northest island called Hokkaido , located and on the 45th parallel . In fact , this year it has hardly snowed untill today , although we usually have quite a few snows around this time of year . And - then - unfortunately - I - forgot - my - commutor - ticket , so - I - had to pay - JPY1200 . Lately my Italian friend and I have been to a few buffe a few times together , none of which were Japanese restaurants actually ! But what I am trying to say is that the places where he took me were 70 % buffee . . . . Though I do n't eat a lot normally , going to a buffe restaurant made me want to eat a lot more foods than I eat usually do ! Haha What I was thinking was to genelate a full payback of the foods which made me such a big eater ! He looked at them just once and then ran out of the base imidiately ! ! ! Topic ; it has recently been anounced that a new restaurant may be built in your naighborhood . I know a sentence `` She is a woman who I think is the most beautifl . `` Is this quote the same kind of sentence gramatically ? I decided to start with Aeschylus , because he is one of the fisrt playwrights . I should go there early because I am affaid there might be a traffic jam . I think she will have a lof of things to tell about her interview . I ` m 19 yaers old . I have not called her recentlly since she got angly . but I dont know the reason why she got angly . By tommorrow , I will be happy thanks to her who helps me relax . Today I sat in the office where I work and chatted with my friedn . Getting over the hardship of your parents contral and your self control tends to stop you from being a good student . But she was very concerned about graduation works and graduation exibits so , I said `` Do n't worry , never mind , you 're getting better and you can do those soon enoughly . `` I chose this name from an Austrailian shor soap opera , But I guess this site is very helpful for me and my Englsh skills . Could you help me with Englsih ? one of the main langauge in the world . I desperatly want a rewarding job with good pay . . . Oneday , I want to find a part - time job ! Beacuse I have so much free time , and having something to do is a good way to spend my free time ! Also , I can leart something in it ! I do n't kown what I should do ! Could a native speaker please read it , and please do n't think it 's strange and ridiculus . But it would be imposibble for me to learn everything in the world . The South korea goverment asked them , My wife is a docter and busy , too . Today I want to write something about travle . On the other hand , if one wishes to travel to a natural landscape , traveling on ones own would be a convenient choise . For instance , last year I taveled to the Yellow Mountains by myself . I am not sure if this kind of operaion is known all over the world , but it is relatively common in Japan , at least by name . The advertisements of LASIK say that we can regain our vision drastically on the same day of the operaion and that it is not necessary to be hospitalized . easy for an operaion to regain one 's vison . operaion should be much more difficult and complicated , and to tell you the However , after the operaion , I have more than 1 . 5 vision in both eyes and I can see anything without contacs So I determined that in this newn year I will start to study English all over again ( abreast with Polish in earnest ) ? ? . When I went to a restaurant for drinner with my wife , I felt tired because the streets were crowded , maybe everyone was buysy . On Valentimes 's day , I was verry happy because I ha a sweet time with my wife , but I was verry frustrated when we went out . After breakfirst I went to the library and did some studying there . However , I am really worried about the people who lives in the severery damaged area . It is very sad for me that the university entrance ceremoney was canceled . I have many frieds who are going to the same university , and we all felt disappointment that we could n't have the ceremoney . I want to teach sciense . So , after I graduate from college , I 'll earn monney to go abroad . However , I often choose the opposit of the function I want . Fortunatly , my teacher gave us a 2800m run , but that was n't easy . I saw many donation boxies everywhere in New York . Actually , I like the charactarisity of this man so much , I have been watching his program since I was fifteen years old . But I went out to a parent 's association meeting at elementaly school that my son Because I pushed some children away who were playing whith snow in front of it . So , I study and traning in my imagination now . I drank tea a lot , because in every house you were offered tea and if you refuced they could be offended : ) ) A herd of hourses walked through the village , how there told ( ? ) , because many mosquitoes and flies were in the forest in this year . Oneday day , I had a sore throat . Now , I ca n't breath by my nouse . By the way , I watched the TVdorama `` soredemo bokuwa ikiteyuku `` . But , the raiting is low . In Japan , there is always bothe iced and hot coffee . The secend day in the new semester . Today is my secend day of the semester . I am taking Business English , Finacial Management , Statistics and Intermediate Accounting . What a crul teacher . `` If you pay attention what I am teaching , you will not fail this course , and you should practice it after class , `` said the terrble teacher . All over the world , porple other than English speakers used to learn English in school . so what langugage does English study in school ? I 'm trying a new product from Suntry , ALL - FREE . This is beer without archol . belive how stupid I was , I hate myself . How could I fall for such a It is heatered by electricity . He said `` an allergic reaction to metal is almost always caused by cobalt and nichel . She should avoid contact with accessories that are plated with cobalt or nickel . `` Becasue I would like to go to the USA to study in the future . I want to go in 3 to 5 years so I am starting to prepare now . I plaied tennis with my friends . We plaied tennis together . In the afternoon , we 're going to Night safari park by taking a bus untill 10 : 30PM So I can gain weight easly . it nead a recket and a ball , as well as the instructer too . I could swim farster than last month . I like here very much because I can make so many foreign friends that I dreamed for a long time . And the most importent is that I can improve my English . They want to make student have more intrested and abilities in other areas . As for me , I chose Film Appreciation . The most important reason for this was I find it intresting , I like watching movies , and I 'm a couch - potato . Leonard and Sheldon have two close freinds , Raj and Howard . I do n't know if my recording souds strange because of it or because of my pronunciation . Some residents could n't understand how important we separate garbege and recyclable wastes . The garbege in the recyclable waste container had rotten and attracted flies . An apertment 's mentenace personnel came to fix the problem promptly . The second , women workers likely to quit their job because of child care or the transfar of ther husbands . Though there are many women workers who have excellent potentil , employers often hesitate to hire them . My hobbies is playing teniss , listening music and spekaing english in a compettition debate . In a word , I love my hometown no matter if it has develp fully yet or not . Lanch break Every Wednsday , my friend and I practice soccer for about 2 hours after work . I 'm not happy right now , I do n't know why , and I do n't want to cry , but it 's difficult to stop my tears . This is really embarrasing , but if you have a girl that you love , you should n't say this to her . I 'm sorry , I know we are just friends , so I 'll never say that agian . One of my cowoker treated me to it ! Randum topics If I had many money I would treavel to the summer country ^ ^ I rememer that . . Polamalu was tackled by his hai . `` Thank you for your time yeaterday ! And I didi n't know that they would be such good guys . Because I shifted to a big bag for carring my laptop and forgot to take my wallet . Taiyaki is very famouse in Japan , so we never think about people who do n't know of / about Taiyaki . I went to the funeral and my classmate came to me and expressd her thanks . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe chinese food , maybe japanese food or maybe other ajian food ! ! because ( beacause ) the test season ( is ) over . It was held in Jingu Stadium where professinal baseball games are usually played . Roppongi 's `` Keyakizaka Ilumination `` This photo is Roppongi 's `` Keyakizaka llumination `` . I read your correcttions two hours ago during my English class . and then he went to watch a professional succer game in the evening . on the shelf 's in the afternoon on Tusedays . I do this for two hours . I plan to take part in three full marathon races ( the first race will be held Novenber 8th `` Shonan Internatioal Marathon `` ) . There were 3 Japanese , 1 Thainese . Since they knew I love raggae music , they took me to a raggae bar . Strang to say . Maybe if you are fighting with your girl / boy firend , you turn it off . selt - introduction My favorite activity is playing the piano , though I do n't publicly perform . It 's my bad Unluck : I had just bought it a week ago . . . He also said that nobady cares if I leave food on a plate . It is a normal thing , but today we sold dishes at cheaper prices than usualy . Anyway , I just hope the victims can pull themsleves together and let the people who care about them help them throught this difficulty . You just had 3 or 4 minites to prepare for it . But the main idea was I would be in charge of the familiy 's finance if I got married . ( what I ordered was simillar to bread , I do n't remember the name of it now . ) It is the title of the jazz album which now I am lisening to . My fovorite Japanese jazz musician , ' Issei Igarashi ' plays the trumpet . I was suprised how tollerent my class and school is . Actually , it happed to me once . I came here to watch a presentation about doing a graduation thesis , to ask the clerks a few questionsabout scholorship and about returning to school because now I 'm not attending school . A : I met my custoemr at Tamachi . I have gone into 9th year and I must pass four exams at the end of this shcool year ( these will be in June ) . japanes traditional cake Now , railroad stations have Automatic ticket getes . If there is no proble with the ticket , the passenger can go throuth . My friend often suffered from heavy coughts . He told me how he was surprised at his docto 's comment . because he did n't tell his doctor that he had a hamuster in his room . A humster came to my house in a deriveriy box with a seal . `` This pacage is very fragial and do n't throw it . `` It was called `` chew - chan `` from my freind . I thought chewchan was male . ( My freind did n't tell me that . ) He said `` Humusters like being alone . They need their own teritory . She lives a nice mantion and has another house and eats nice food . He got some popularity for his talent to learn foriegn languages . Even if some visitors drink some purification water despite the warnings not to drink or gurgle it at the waterbasin basin which is for washing their hands and rinsing their mouths for purification . I recomend the `` hureai no hiroba `` . It 's not exactly freedom because I 've already enrolled in some courses and compititions , so I 'll be busy . But at least I 'll be doing something onmy own will . I have carried on / lived a peaceful life as a family man so far but there is one big problem here ; what will happen when I find sophisticated ladies in my work enviromment ? His one of my best firends . Here 's the kind of radito program that he made . We recorded it in Japanese , It ' svery natural , high speed and storng accent from the western area of Japan . I ate tofu and scalop at lunch . I usually buy an Engilish newspaper once or twice a week . Actually , marathon events bring back my bad memories from when I was a junio high school student . There must be southans of reasons why you want to learn Japanese , and it seems not only a few people were led by Anime or Manga to start learning Japanese . Here , I introduce a website called `` Japanese in Anmime & Manga `` This wiebsie , pronunciation of lines are very good . and I prefer to see a varioty of clouds on the blue sky . after that I can not imagine how good the food wil taste at the barbeque compared to having dinner at home . That 's why some parts are sharp , inclined and zigzagged , amd it seems curious . This morning I had two spoons of honey like Pooth bear . They were very delisious . I was so sleey . I think meeting my frind is a good opportuniy . I wolud like to master English , and my dream is watch movies in English without subtitles and make many foreign friends . They saved my life during a period of great frustration in my teens . A huge crowd of ppl got extremely excited cause the dream finally turned into reality after many years of yearning and longing . But I want to ask them ; why do n't you pay more attention to their songs which have given strengh and hope to our people ? All I know is to let the politiks roll . We still do n't want to leave the colloge yet . I went the library with him , but I forgot the librarhy card . He said to me , ' I reallhy want to borrow the books , let 's return home and get the card . ' We retened home and went back to the library again . Thus , I 've joined this community at Lang - 8 to output things to improve my English and communication skil . Nobady can infridge on their rights . My parents never force me to do anything , they even negociate with medecine haha so I know that the decision is mine . I like deodrizer I went to look for a deodrizer at the drugstore . There are many deodrizer there so I could n't find what I wanted to get it . I wanted to get made in Amerca but they did n't have it . I had n't used Dreamweaver for half a year , it was hard to remenber how to use it . However I ca n't talk to anyone in English on Skpe at the office . Besideds when I get home from work , it 's midnight in the United States . I think I can get over the diffculty . This is my first day at Lang - 8 , I found Lang - 8 in a forum , ppl suggested joining Lang - 8 if we wanted to improve our English . We can post a diary here , if our gramma / words are used incorrectly , someone can point out our mistake and give us some advice . I was buffled and said `` No , no I 'm not . . . `` Even though I know I paid much money to take a class , after I lost interest to study in school , I do n't feel like going to scholl at all . 3 months already passed , and I 'm still having a hard time understanding what my hoouse family says to me . Although it seems a kind of poison , it must be a midicine ; it is alcohol . Some people belive drinking alcohol is not good for their health . According to a health resarch istitute , drinking has a positive effect on health . While one drinks alcohol , they should be able to express inner thoughts that are usually not exprss . However , people can get these kind of negative effects only when they exceed a moderate amout of alcohol . When focusing only on the health effects of alcohol , there are no bad effects if one does not esceed their limit to accept alcohol Consequently , expanding boold vessle and eliminating depression , which are healthy effects , can be brought about by dirinking alcohol . `` Nadeshiko `` Japan , the Japanease women 's saoccer team , won the World Cup championship . . I was so excited and proud of the Japanease spirit that did n't give up in the disadvantageous situation . I expect the Japanease men 's soccer team to win the World Cup championship next . Good night , everybodies ! ! A few seconds later , I underwstood what they meant , they were asking for a handkerchief . After all , Kikuchi could n't shout at the oppising team . I was even at the railway station in order to go to the university ( or : school ) libarary . My parents and my granma were disapointed in my failure . My granma cried . I am worrid about it . He just said `` If you are interested in this story , please search Wikipidia or something . . . `` . And I really like the hansome middle aged Chinese teacher : ) Chinese has nearly no honorific expressions and the grammer is actually very simple . I want to learn about the English langauge . ( Actually they are about vegeterian diet and environment . There 's a lot a lot a lot a lot of reasons why vegeterian diets can help Earth , I hope tommorrow will be warm . . . so the only way is . to continus working . I have not studied English latery . I do n't want to be in this rut because I do n't want to forget the English I have learnt up untill now . Yesterday , I had to go to some buliding to take part in a briefing session . There will be less of my friends in the univeristy , because some of them have alreay grauated . Akiwabara is full of computer professionals . Most men judge a book by its appereance , however ; most women normally follow their feelings . Actually , I do n't like doing sth , but I have to do it . Sometimes Ido n't have an explicit way of doing sth . I would appreciate if someone corrects my English or gives some adveces . This movie is very interedting . Thank you reading my journer . I travled to the western part of Korea , Kanghwa Island last weekend . I watched TV anime wiht a friend . I have to get accustomed to my new life without the habbits formed before . I 've aleady preceived that I must get rid of this condition as soon as possible . Yet , earsier said than done . I 'm just a little nervors . Is English the language that will chanege my attitude , my personality , and my life ? at almost 5 a . m . young men do n't get up that earlly though . I 'm helpless from secon smoking . It was difficult to understand what they were saying , because they were speking Blitish English . ( I feel like it has been longer than it actually has . ) I have gradually come to understand that it is not a complecated movie , from what my host family was saying . I was really shocked that he killed a yuong woman in my town . Today I 'm talking about an Itarian restaurant . . . . . . . I went to Saizeriya , an Itarian restaurant with my friends , do you know it ? It 's very cheap and dericious , for example milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , a president of Saizeriya , is very clever becouse he always tries to put the price down and make it more dericious . He has his own farms and grows vegitables there and uses them in his dishes . Besides , from the farm to each restaurants , the vegitables are kept 4 degrees becouse the vegitables can keep freshness in 4 degrees . He try so many different things to serve cheap dishes and make them more dericious ! But the problem is when I cameback back home . And , as with most tours , this tour included a visit to a survenior shop . The shop clark 's sales talk was interesting . I searhed on an online auction in Japan , and today I bought a good one ! It 's lovely ! Oh , really I have to learn English and look for a scool , but there are It 's the same every time , to choose somethig in life is hard every time for me . Yeah wrtiting is my weak point , even when I write in Japanese ! At first , three monkeys and a eagle conspired togather to oust the dust from Horton , and throw it away in the fierd of clover . When a shriker made a sound togather with the rest , though , they succeeded . I should have stuied more . peppers ( very important ! ) , an agg , minced garlic ( 1 / 3 of tablespoon ) I just took my daughter to the kindergarten and now I am in my car , waiting to go to one of my clients in 15 menutes , which means I 've got ten minutes to write something here . Seven Eieven 's Oden S / E 's Oden is very dericious . You shoud eat Oden with masterd and miso sauce . It 's very dericious . Moisty summer finally , the moisty summer comes to japan . Japan 's summer is more moisty than other countries . So , I think I do n't hate moisty summers . 9 : 00 - worte a weekly report for my customer . I am thinkng about a hand blender as present . I 'll have to do my dest . I want to learn English because I like talking with forigner . My cold is dissapearing quickly . We played at the park by our cond and she seemed to have fun . Tanke you for everyone . In the evening , I watched TV again and ate `` soumenn `` ( this is a type of japanese noodle , we often eat it in summer . ) But it was out of date by more than one year , so it was n't tasty . I want to eat delicious `` soumenn `` ! I feel pround of my country because the popularity of Chinese means that my country is more popular and stranger . I hope the learning of Chinese can contuine . I rewrite the medical infomations in Japanese . I listend to his newest album ' the pursuit ' many times . We were not aware of the fact that this day has such a remark untile it was over . I cleand up my room this morning because I 'll be away for 3days . I feel that summer is comming soon . So far , there has been no contact with one of my friends since the eathquake . Oh my god , I hesrd that this test will be very difficult . What should I do ? How can I improve my English ? My glumbbling . The result is slightly suprising and bothers me , but I have an idea to solve the problem . Therefore , today 's dialy is over . Everytime time I cook it at home , I can see the sparking lights in my roommate 's eyes . What shold I do ? In London I felt like a morron ! Trabajo en Tokyo ? Trabajo en un escuela de Ingles . But my teacher said thathis house was very safe because there are a lot of guards and if prisner escaped from the prison , they would n't come near his house . We drank a lot of alcohole , talked and danced ! ! ! I 'll visit Wasington , New York , and California all within one week . There 's just one thing I 'm worried aboout . The next day , he enterd another smaller hospital . Is it a common thing in foeighn companies ? How to write a good essay in intergrated writing for TOEFL ? There are two types of writing , and one of them is intergrated writing . How do you write a good essay for the intergrated writing section ? I always do n't write enough words for it . ( In ibt , the intergrated writing requires at least 150 words . ) Or , do I not need to seperate my paragraph ? Nagoya 's subways are so complexed . I was moved by her heartful visit . When we arraived , on parking lot which was near start line , there were no cars ! I want to meke a lot of friends ! Desingers who can draw beautiful pictures on computers stronglytend to have such a personality . I live in Fukuoa , south of Japan . You might be wondering why we eat shurimp to live longer . The back of boiled shurimp is similar to one of an elderly person . Is that man lonly ? We have our own aerodrom and planes for practice by pilots , controllers and ANIS . It will be a naice time . I study phychology . And one more thing that I wonder is whre Japan 's cold climate ranks in the world . How about the climate whre you live ? Also I want to increase my English vocablary . While I was riding a bicycle , I slipt and fell on the ground in the morning two days ago . After he became professor , he has been strugling to change his department , and he is succeeded in many aspects . After that , I went to a driving school so that I get a car lisence . I beleive Japan will never give up and always rise again . There were so many competetors prepared to study Psychology . And even I do n't know which way I shoud go . Recentry , I found a new singer . English makes me carzy ; ; so I decided to go to an English acdemy . It 's not neceessary to tell everyone that I was born today . However , Thx Sun - zi for your birthday wishes . Sun - zi is a Korean lang - 8 user I made aquaintance with here . adovocate > > But I had the job today and of ofcourse tomorrow . For the moment , I 'm not sure if I will become a teacher , but I 'm going to take this teaching course because I can gain expeience from it ^ ^ I usually atend my English class once a week . I wonder if writing jounals will help me improve a little . When I eat onigiri ( a rice ball ) which is purchesed at convenience stores , However , I want to at least greet my Chiense here in Chiense . Now I practice Chinese pronunciation , but it 's not very anunderstandable because there are a lot of pronunce rules like pin ying . We Japanese use Kanji , so I sometimes undestand the words ' meaning , but I ca n't prounce them at all . So he need a translater . But I 'm not a good translater . My high school libraly has some MANGA books . `` 20 Centuly Boy `` , `` SLAMDANK `` , `` The other story of Kamui `` and so on . I like MANGA just as much as novels or essey . Yaki - onigiri is broild ( ? ) rice ball . We can get them anyware in Japan . After the big quake in Japan , we have experienced a number of aftershoke . My doughyer 's university graduation ceremony was suspended . I am going to do a presentation in my english classe next week . Lsughter is the best medicine We enjoyed talking , having some snacks and drinks and lauthing out a lot . There were the words in today 's Englih learning video ' Laughter is the best medicine . ' That is to say , we all have the best medecine in us . As for the site `` Lang 8 `` , to me it seems to be not only a good educational resource , but also a place where we can see other people 's chane . While thinking that nobody here knows them , people write about the smallest & most hidden perts of their daily rouine , and while taking the first steps , they feel extreme & pure happiness even after the smallest victory . . . I think Chinse can learn English better than Korean . In this class I saw a very beatiful Chinese women . I could tell my teacher what to say but I coud n't use perfect English . It was really good oppotunity to have a conversation with foreigners . And I realized how convienient being able to speak English is ! At some point I want to think about it seriousely . It shoud be and also must be serious . It 's a story of two boys who adapt to the cryel world . Even though I ca n't stadn such things , this book is the best book I 've ever read . I learnd that I ca n't do anything in a poor fisical condition . Yestreday I joined this Lang - 8 website So I created 3 ( brand ) new communities : Playstation3 , Japanese sports cars , and Plastic kit modeler . It 's lunch time : ) My mother made me a luncn and it included a deep - fried pork cutlet but I think she forgot to put sauce on it : ' ( Haha ! I just finished the other of my assighment . It always takes an incredible lot of time for me to get my assighmets done . I will go shopping at a mall , because it is coller there than it is in my room . So I can say it that it 's a totally rediculous habit . I think particulaly it works well to make it easy to bring up phlegm . So this is a rediculous superstition in Japan , I can say . I just registered here , tonight , but I have already found out / discovered that this is really an awesome place . I used to find it so difficult to practice my bad Japanese , but on here , just 5 minutes after putting up / publishing my firt Japanese entry , runtyan has revised my articale in detail . I 'll come tomorrow earier ! I do not have enough cofident to accomplish it well , but I want to do my best . study with her so I tried to go but I did not reach there im just half of the way I am lost and then I desite to take the sky train to go there then I just realize that my motorcye do not has any lock so I can not leave it anywhere around . Umm , I have a question . After work yesterday I went to a nearby movie theater . The theater was crowded with a lot of movie lovers , as it was just after the announcement of the Award . The Cinese hospitality My body clock seemed to be malfunctional . By the way , I 'd like to write about an elementary school loccates in Toyosato city . They came to a win - win situatio by deciding to buildind a new school in front of the old one . The school parking lot is filled with a car decolated with a Kei - on character . Why do the Otaku who like Kei - on go to this school ? Because the old school in Toyosato city resemles the school in Kei - on . An expert in Japan who specialaizes in Japanese subculture said ' cities will thrive by using animation character should become commonplace ' . Because in the neighboring lane someone was learning to swimm from a trainer , so the trainer saw me trying to learn the hips motion . And then we went to the street stalls and got some festiv food like Takoyaki and Ikayaki : ) Actually I faded a little cuz now I 'm dorinking a tequila . I 'm not sure whether I heard it correcly or not . Please check the following setence to see whether it 's right or not . I went to an English Cafe yaesterday = D Befire I sent a e - mail I have to show my e - mail draft to our boss to check it . Then I went to a beatiful bakery . I bougut some bread . Er trinke gern Bier . Er hat kurze schwaze Haare und schwaze Augen . Meine Mutter ist Housefrau . Sie hat lange braude Harre und schwaze Augen . Er ist ahatzeen Jahre alt . Er supielt gern Videospiele . Er hat kurze schwade Harre und schwaze Augen . Meine Familie whont in Hyougo , aber ich whonen in Shimane . Meine Familie whont in einem Haus , aber ich whonen in einem Apartment / in einer Wohnung . He is fourty - nine years old . She is fourty - four years old . My youger brother is a high school student . Anyway I still want to make full use of this website and keep practising wirting here . So I decided to use Einglish at this page . I follow power bloger , so I got some nice information from the blog . Do you understand what this stupid scentence means ? wih my Boss Last time , I wrote about my first chice of a future job , in the movie industry , especially in advertising . It is so complicated to remember ecverything ! ! I had been kind of lazy in Feburary becasue I chilled with my friends , drinking , and singing karaoke . A new twitter acccount Thank you very mich : ) Certainly , nuclear energy is very dengerous , since Japan relies on nuclear power for much of its electric suply . So younger peopole in Japan should have more interest in these problems or What do you think about nucler poower plants ? I must sutudy English harder ! ! I deside to study a little more . NO wonder there may be other solar systme like ours somewhere in space . . . anyway this movie gets me to think about a very romantic story about the universe . It 's worth seein . ; ) So , I took a walk for 30 minutes almost every day for 3 manth . I am so happy to join here . I whant to practic my If I were a player on his theam with him , I would assist him . Since my school parking is really bad and in the mornining it is so hard to find parking space , people always ask you if you are about to leave when you walk inside . I do n't mind anwering their questions , but I was bothered by their reaction when they heard me say I was not leaving . Now I 'm drinking a can of beer at home , because the presentaion was finished finally ! ! ! The tempura today was prawn and mashroom . This mashroom is called `` Maitake `` in Japan . I happend to read a megazine I found in my club room . I recived the glasses there . We used to studay at the same school for a long time . She is older than me by 2 years . We lovers of martiail arts can not , in today 's democratic world , use our technique in our daily lives . Tomorow my nephew should go to school to register to study for another gade becasue he finished the patum < - - ? 5 and is going to patum 6 . Anyway he was still not calm , he truned and watched me moive frequently . After I had finised cutting his hair . He really became shy and came to ask me to do it agian . . And I 'm interested in dance ( a little ) and bloging . ~ ~ lol . . Watashino Hashi desu Kore ha watashino hashi desu : ) Ohashi wo tukau noga suki desu . Today I revieved my first correction in Lang - 8 . Our class is making a presentation of ocarina performance next Saterday . She gave me many souveniors ! ! Because I think she misses Japanesefoods food . I usually wtite in a diary in Japanese , but it 's the first time for me to wtrite it in English . I totaly agree woth the auther of that article but most koean can not speak English fluently , , but , , when we face with foreiners . . they were fluent speakers . . and they were also enthsiastic about English . . . Heppy New Year ! listenning test Today I want to try a listennig test with `` Man in the box `` From youtube . I 'm not sure how many of you gusy know this short video . Greg : the Japanes number puzzle game Jim : No I mean , about me whinying to you - - - - - - - - - - - - - - - - - - - change sceen - - - - - Jim1 : I just I miss her you know , like yesterday would 've been our seven and a half monday anniversary . The ShangHai Kights came on TV . - - - - - - - - - - - - - - - - - - return to the original sceen - - - - - - - - - - Jim : Ok , I guess I 've been a little preaccupaie with her . so waht is it today Jim ? What sad little pices of information do you want to share with me about your ex - girlfriend that I dont give a shix about it becouse you 're a pathetic losser that ca n't let go you towat . Jim : Call you twevle times a day ~ ~ I think that 's perfectly ok ~ ~ you dont answer anymore ~ did you change number you chitting whore ~ thanks in advence for your guys ' corrections . Thanks for the coments on my previous diary . I discoverd the name of my illness . We have regional map , but not a grobal map , even if we did n't count the number . I am going to write my dialy in English . The title was `` CASE CLOSED `` , which is a japanease story . The true love between vampire and human beings moves me and I always look forward to watching `` New monn `` . I 'm wriing this entry for you . News about the earthquake is reported from mornig to night everyday . Fortunely , I live in an area where there is no damage . But I think my English skills will improve by studyng abroad . Yesterday , after a riduculous class in which we talked about what a second grade student can teach ( us ) about leadership , I tried to go home . Then a girl spoke to me and asked what the Korean homework was , because she was absentt . Free time & Favarite movie I ofen go shopping in my free time because I live by myself . In addition , I ofen read books . My favarite movie However , they become gradually fuscineted by jazz . Then if you become unrooted , you feel unsettled . `` Today , staff members were told by the personnel departmemnt that if we ever had a problem , we should take it up with our supervisors . in the forein country , what u gave to a girl or a boy ? There are two professors in my laboratoly Today , one of my lab members gave a presentation at his difense ( ? ) . Who is the most populer pop star in the US ? Recommand me someone ! Whenever I try to record something , something has to interrupt me : the phone rings , the door bell rings or the cat meaw . Each time I start recording the cat is stuck with me in the room and wants to get out and when I get her out of the room she meaws because she wants to get in . Duaring the holiday , I tried to return to Japan . But company denied my request as I am now working in Beijing as a trainee . As I have no freind in Beijing and came here by myself , I wonder how I will spend one week ! But , today , I enjyed the beautiful eary fall . On the 4th floor , we will wehave a cinema room and a karaoke room . Perhaps , some people would like to vote for building a factory simply on ecnomical grounds that a large factory will probably bring about a prosperous future to the area around . She chose a grey one at first , but I adviced her to choose the red one . But recently I change the / / my / / opinon . This week the Japanese telecom company `` au `` announced the release of a new series of cell phones . Both of them are very talkactive so we talked all the time . I wonder whether I should write about it , but I decied to because I just want someone to listen to it . I coud n't catch his saying completely , but he told another person and laughed , `` Wow , someone is talking Japanese ! `` After several hours of reclection though , I kind of reached a conclusion that I should never try to be hostile to him and I would keep my doors open for him , for him to come back to me as someone I felt the best spending time with . The weather is changable and the sun goes away sometimes . Yesterday I was supposed to join the Job Fair in Zhong guan cun , but unfortunaly I felt lightheaded , drowsy , dizzy , nauseated , unusually tired , and I began to think I 'd been infected with H1N1 . After supper I hurried up go to the drugstore and buy a themoeter . Thank goodness my temperature was within normal range . He went out with 23 women , so he has a lot of knowledge and experence . If I kept a kiddy cat , I wish her to lay on my PC like the following picture . Very strong men atacked bad men . He likes to watch K1 and boxcing . To begin with , in my reading , a successsful career is assosiated with how well - off people are . Whereas , the professer states that students should decide their major before taking a wide variety of general education courses . Consequently , the proffeser maintains that when you find employment , you should be careful of how the vocation fits your interest . My Labo work If someone can explain the meaning of these sentenses , I 'd really appreciate it . It is light , it has big blinds / curtains , it is reverseble , and Two Australian men opend the bar , so most of clients are foreigners . I think that maybe it is not only about differnet , it is a complicated issue . Ok , I think this method is good for beginners , you can get an understandable pronunciation , and some basic knowlegde if you want to travel to the country soon . Please feel free to add me to your friend list in Lang 8 ^ ^ I welcome everbody . The raeson I am busy is that I am learning sign language . However I ca n't communicate with deaf peaple . Why do you think that we ca n't communicate with such peaple ? I want to try to talk with such peaple . When I was a student in France , I was suprised that a lot of people there came from several foreign contries . In Japan it is not like that but there are more and more foreigns here . It is one of my reson for studying English . Representative high school teams from each of Japan 's 47 prefectures copete at Koshien Stadium in Kansai area . Althoug I tried to not eat sweets everyday , my homestay family eats dessart after every supper > < When I watch comedy shows I 'm not really able to understand what they say because there are no subtiles so I ca n't understand the English without subtiles well . Are there often celeblities who have funny voice or do they change their voice on purpose a little ? Though when necessary ( under pressing circumstances ) , they never fail to be short of money for basic necessities , rather than letting the expese bocome an obstacle for me . I earn pockt money by doing part - time jobs . What do people usualy talk about when they have no topics for a chat or when they need to keep up the conversation ? Unfortunatelly , in my country it is , in contrast , very hot and dry in sommer and very cold and frosty in wintr . The weather forecast promiced it would be much cooler tomorrow It 's gon to start in 30 minutes . I hope all my friends onLang - 8 who live in japan are all safetly . I hope all Japaness are safe and sound . I was there for a week for a business meetiong . I am comming back home from Narita airport by bus now . Yesterday I took part in this Lang - 8 and wrote the first jounal . And I thought , `` There are so many jounals here , it must be impposible to get someone who can help me . Evencally the winter is coming today . I answered `` I 'm thinking of enroll in this school . Could I have a trial lesson to help me to decide ? `` Actualy it 's not always raining , but the air has the sense of rain . Why , why on earth have you made me so incapable of consentrating ? I had acctually contacted him many times , so I may have got him down . But from today forward , I will try to write a journal every day in lang - 8 becase I will start a job next spring , April 1st . On the other hand , I can understand recorded English dialogs & nbsp ; when I listen to it . So I will write my diary with the `` Look `` or `` Look like `` I leared . Depending on the outside ingridients and the shapes of them , the name changes to things like ' Daifuku ' , ' Monaka ' , ' Taiyaki ' , ' Taiko - yaki ' , and so on . They arent not at home now I am staying at home with my uncle , even thougn I wanted to stay alone . He is the husband of my second anut . He asked me `` Would you like to eat ckicken for lunch ? `` In korea , ckicken stores sell chicken with cola . Hello my friends , this is my frist time here . You are welcome to make frinds with me . Recently , I started skeatboard . I want to improve my skeatboard more . I want more time to practice skeatboard . Hellow . My name is Kim Dong Hyuk But I do n't like Harry Poter . I think that Harry Poter is childlish . ( I meant the Harry Poter translated into Korean sound very childlish ) se you soon Since I could not get the pronanciation of Kanji instantly , it meant I took a lot of time for reading and understanding the meaning of a sentence . I have got a very interesting book from my brother , sweetnesses from my parents and friend , a pineapple from my class tutor and a lot of wishes from colleagues . Altough I 'm happy , I 'm also very worried because the school districts around here are not hiring at all . Reports and presentations are wating for me . intruduce myself I tweet only in English , so I can stady . So I spend 10 minits doing one tweet . I have to repare it , so I need more than 20 thousand yen , probubly . Next exm is July . I am writting now by cellphone though it is difficult to write . . . If it 's sunny out today , I will go to the park to go running / tunning and stretch . It 's way too short but that 's all for this mornig . Some of the victims ca n't get enough food because rodes were broken by the earthquake and tunami and the amount of food is too low for all of the victims . Of course , the Japanese government and other organizations are tring to help with the food supply , but it is difficult because of these reasons : This problem 's news is bigger than the earthquake 's dameges . Nuclear power plants were damaged by the earthquake and tunami . The Japanese government and Japan Self - Defense Forces are tring to reduce damage of the radioactivity . Remember , the nuclear power plant is a power plant for Fukushima , that is the place that was given the biggest damage by the earthquake and tunami . ORION brewer had manufactured their products only in Okinawa prefecture before , but now they made a business tie with ASAHI , so we can ORION beer at supermarkets and alcohol shops . Today , there is a very interesting shogi game between shogi softs and Ms . Ichiyo Shimizu , who is the best woman player of shogi . He is a studednt who has participated in our Dojo . Furthermore , we need your coorperations please . It was 40 degrees Celcius and meteorilogists have n't stopped to announce fall of temperature every week . By the time we talk about food we were hungery so we went to Korean resturant near my work . Third , well cooked barly with soy paste soup . Fourth he bought out rice , Q . groud beef steak , fried fish , eag soup . Five more side dishes came with it . We had a great time , and we left our stress at the Resturant . I was moved when I listened to his profermence . Yesterday , when I had to go to school by bike , the thermometer registered - 15 Celcius ! And just like every mum does , she pointed out my stubborness . Although it 's cold , I really enjoy watching the white landscape just like I 'm doing now with a cup of hot chocolade , yummy yummy ! ^ _ _ _ _ ^ Screw you summer , hot chocolade rules ! I am a beginer . Could these advances in techmology also cause some problems ? Devember 30 , 2010 Korea , depending on the contens of the diplomatic negotiations . After that , I rented a DVD and wnet home . I said `` Of cource `` There were no LAN conection in the room , so I had no choises to use internet I went to the langage school . There were many Japanese student there , they will graduate with a strong achademic background . I was ready to stady painting with kids in the 1st grade . There are many cultural facilities , like a concert hall , movie teathers , department stores , an ice rink , football stadium , shopping mall and two parks . I talked with a friend in Texas with Skaype this morning . They try to get a summary of the cadidate . The candidatie , is usually asked to speak English by the foreign - invested companies . I will separate between what I need and wht I do n't need . Help with my house 's agriculuture , rice planting and harvesting cherries . He stood there for 10 mins and he held the piss in . Today , I went to a concert in which my preveous English teacher played . Firstly , The Beatles has `` opened `` up for me the majic world of the rock - n - roll . I think that it 's possible , and as Jonh Lennon said : `` You may say that I 'm a dreamer , But I 'm not the only one . Even when I 'm in an awful mood , their music makes me smile , and I 'm very happy that they have suche an influence on me ! When I saw the terrifying tsunami that destroied houses , bridges and roads , I was shocked . : ( Anyway , I have to concentrate on his class and writting down what he says in the next class . I was curious to know why they made it like look like a fallen leaf from the beggining . When time passes , from spring to auturmn , the wakaba becomes momiji which means red or yellow leaf in Japanese . I was going to write in my dialy about my cute female friend but I changed my mind , because I had heard a rumor about her and it was a terrible shock to me , so I could n't write anything . It 's a little roundabout out of the way but really nice , I can choose from 3 supermarkets to buy something and there are 2 movie theaer . I thougt it was a little expensive in the auction for me ( but it was too very inexpensive compared to the real price ) . We would say `` I go to scool `` if we were outside of scool . If they were with you , you would say `` go to scool `` . ( In English ? ) I clip my nales regularly so I do n't know the reason of holes . I felt a seriouse ideal and belief from his speech . The following sentece is in the presente passive voice : The company promised to give 40 yun for each day . Half a year has past , the money has not been given , so I am disappointed with the comany . Almost all week , I thought of preparing spicy chiken wings on the weekend . We read on the Internet a lot of different recipies for chiken wings , and went to the store to buy food . We made a honey mustard marinade from honey , common mustard , french mustard , spysies , soy sause , salt , and garlic . We put the wings in tis marinade for 2 hours . We are eating the delicious chiken wings right now , drinking light beer and tomato juice , and watching the movie `` Uoll - street `` with Shia LaBeouf , Michael Douglas and Carey Mulligan . This paragraph is my model anwer for my OPI test . The exhibition of Fernando Botero has been there since Julyl . The first exhibition I volunteerly attended to appreciate art works , not for a mandatory school field trip , was in 1999 . Twe girls and one boy . Why do n't you tell me wht you want me to do ? `` Well , obviouslly there is no stand - by drink for tomorrow , ca n't you see that ? ? `` I should go there becouse I want to graduate without hindrance . Everybady likes her ! ! I hope she has a fatastic day ! ! ! ! ! ! ! ! he has two personalities OR double persnalities . he always gives me helpul advice . and I assist my proffesor with performing an ultrasound during an operation . I 'm looking forward to knowing my secound impression of this book . So I 've decided to make a list of questions that could be helpful for both teahcers and stuents . Actually I always preferd Damon to Stefan . I 'm so gla that I know more than I knew then ! It is sunny today , so we are warking in the park this afternoon . This year the topic was `` Should the Japanese goverment authorize the system of casino gambling ? `` Each team had two battles , and the rankings were determined by the scores the judges gave . In addition , there was , for example , the argument `` after the plan Korean casinos wouldgo bankrapt and many Koreans would lose their jobs because 70 % of such casino 's customers are Japanese . `` Debating is too difficult for a freashman to do alone . ) The first book begins with a guy called Arthur Dent , who wakes up and sees lots of buldozers in front of his house . I do n't how it wroks but I am writing my first diary . I ate more than 15 dishes , so I bacame full . He told about his homeland 's histry and answered people 's questions . I am going to Jermany to study Electrical Engineering from October to Janua . And in the town , I have to speak Jerman . I love Jermany and English so much . I sometimes watch this forest on TV and in magagines . To understand the meaning of the commands from our boss exactry . I have jhust finished applying for Working Holiday Visa in Australia ! ! ! I went to Chibi cannada . I 'm going to participate in a Zonbi Walk on Sturday , downtown . We prepared for the Zonbi Walk . We cut some clothes to mimic zonbi . My studens enjoyed it . Too many extra curricula 's chosen by their parents will inetitably take up the kid 's time and change their nature . becouse I have n't finished writing my resume yet . I 'm so tired , becouse the night before , I slept only 3 hours or so . My best froend and I have n't seen each other since Halloween , It was awsome ! ! It was really fun , but I got dtunk and I had to practice danceing . I have to write about something I like internathional , but I have no idea how to write it . ( [ Recently * OR * astornishingly ] google has released Google Chrome . . . ) The process is suprisingly easy if you understand its frameworks . The gaps are being speading in the point of costs and indivisual capability according to ' ' The World is Flat . ' ' Whenever I head down to the station , I can see many blood senter workers on the street shouting My frirst log . I thougt so , but I chose this nickname . In the future , I want to wark making steel . He swiped a bottle of vodca from his family 's shelf . The vendor 's headquater are in Europe . I want to help martha , but I can not fiund the correctur set in this system . Of cours he is the most popular ~ in the world . and thanks a lot that you tought me At first I chose it because it 's only for women and that makes me comportable . curcular exercise ! ! `` I work at an elementaly school in France . I do n't have much faith in my ability to remenber so much professional vocabulary . Because I could n't archieve my target IELTS score . Japanese are killing themselves apporximately at the rate of 35000 people every year . I think the root of this problem is that Japanese companies have a traditional stlye . Exhaused people ca n't talk with someone , although they want to explain / reveal their troubles . Is this rigth ? It was about ' Racelism of South Africa ' . I forget what its name was , anyway there were a lot of foreiners , especially Americans who have studied Japanese . Many foreiners know very difficult kanji , including some ones even most of the Japanese would n't know . What 's more they know old - fashined and obsolete gramatic knowledege . The site gave me new information on japanese . So I found out that learning too much detailed gramatic information or memorizing innumerable words is not very effective to master a foreign language What I would like to say is that territory issues like that are occurring between many countries , such as between Vietnum and China , India and Pakistan , Israel and Palestina , and so on . I saw a 3D movie on Saterday . but also it makes me missming America so much . We ate delisious dishes / foods and talked about our own dreams . Onjyuku in Chiba is a very beautiful blace , blue sea , white beach . To pass the Korean summer , we definately need these things . The following is the ps that I wrote for my cousin , pls give me a hand to correct it . But I am goint to visit the grave tomorrow . But he is also charming and has a great abillity to diagnose sickness . However , I have to admit that the festival is so fantastic , it 's worth enduring all that troubble . At the park , I found thata lot of `` tukushi `` hadgrown . ( Tukushi is called horsetail in English . ) I remember her teachingme asI tried to cook tukushi . There are two important preparationsfor tukushi food . 1 : Remove the `` hakama `` ( It is calys , inedible part ) . 2 : To remove strong bitterness , boil or put in cold water for 10 minites . I stir - fried tukushi and Rape Blossoms . I thenseasoned itwithsalt and papper . unbilibably fat . . . While I was choosing some books for my children , one of the books cought my eye . I take an English - lesson on a web site every day , and I gradually became interested in the Phillipine because that is where my teachers are from . I 'm currently reading the book , and I 'd like to spend some more time discussing things related to the Phillipine or Japan . I read some of the messsage my friend sent to me on hotmail . 90 % said when a woman has long hair becasue it is easy to pull her hair 70 % said they chane their mind if , before they are going to injure a woman , she sees them and asks `` Sorry , what time is it ? `` He recommanded rice noodles and beef fried rice . It 's a story about a girl going abroad , who is taken hostage by an international terrorisim organization . St - Pierre has been practicing karate since he was 6 years old and respects Japan , so he wears a Japanese headband during the entrace before his match . My family had a student from Germany since Aughst Today , she was supporsed to move to another host family . which is so / very inpressive . I also pay the security deposit and brokerage which is eqivalent to one month 's rent . I bought a new engrish book ^ ^ To study engrish is a lot of fun ! I want to study engrish more and more But I don ` t have much time to study engrish and German I bigan Lang - 8 , becouse I want to speak , listen and write in English . I had a dream about a woolen scarf at that time . My dad watches tv and my mom sleep in moring ! But they also have tried to grow a lot of vegetables for themseives in their farm . It was big , beautifull , and had a perfect shape . We would always go to dinning room of our college school ( beacause it 's very close to our company ) but recently , our boss wants to have lunch with us , and I feel very uncomfortable , we can not talk about anything like before . Because I want to study Phmacy after that . Please correct some of the presentation / some sentense . What a beauiful Cherry Blossam Shi is very cute . It was more growing than I throught becaouse she is mix of regret : I regretted to call her such a crel words . givern : In the ancient times , Rome was governing all of the world . bend : I will not bend my oppinion even though all the people here are opposed to it . I 'll start larning English again . I 'm very busy , so I stopped larning English 3 months ago . Today is great . For the first time I met a cool laday . I 'm so excerent . Could you explain the differencey between the meanings of the words above ? Are there any differencies ? Teaching is Learing ^ ^ I believe that the learners can help each other and can make more progress for theirself . Just rotating and browsing itself is really enoying . I would like to devellope my vocabulary and learn to speak , at least , the english that people are speaking every day . The friendship was beautiful and maybe his friend assisted the goal , I thougt . . . One of villains , Griff also said it to his grampa . But he only said the same words more louldly . In some other cities ( like Milano and Napoli ) the winner has n't been decided , yet : the two candidates who gained most of the votes are going to `` fight `` for two more weeks , at the end of which there will be a new vote . She calls me `` my clone `` because weresemble each other so much . For example , when we go to the musium and look around and ask each other , `` What paintings do you like ? `` We choose the same paintings . LOL , I was superman at that monent ! I told him one of them was cheap , so I skipped the explanation of the two companys and their cards . Firstly , because he is the most popular writer among teenagers , I 'll ask him the secaret to writing funny stories . You know , he stopped studying regularly at the end of prmiary school . I really want to know the secreat . terribel day She always has courage to face every difficults , but this she had to give up . One of them is flexiable , the other one is positivity . sevire problems or are in a slamp One more of his good points is that he is extremely flexiable ; he tries to gain new ideas from part pime workers , trinees or whomever has good ideas . words in front of the employees unless the company is in an affluent posission . His possitive way can influence the emplyees obviously . depends on the enploees , because , if they do not work aggresivily , the company their proplems nicely . I think that a good supervisor should be flexiable and possitive . keeping the workers ' thinking possitive . workes should be flexiable and possitive too because without their ccoperation , one good supervisor could not change the company surrondings at all . When I left my grandmother 's house , she said softly , `` You can forget about the marrige . I need think about my future separetly . I 'm very happy becasue I 've spring break until May 3rd ! In this time , each student does n't have seminar and celebraties from morning until hmmm morning next day . Today is last day of this ficical year . I 'll go on a training camp of the Model United Netions this afternoon . The advantages and / or disadvantagges of public transportation . Firstly , public transpotation makes teenagers more independece from their parents , because when they take public transportation , they have to mind their good manners , like how to behave in the situation where other people are around . Thus , the situation where they have to think how to behave by themselves improves their indepenence . Secondly , let 's consider public transportation 's environmental effets . Thirdly , public transportation makes traffic conditions confortable because if many people use public transportation , people who drive cars will decrease and we can ease traffic jams . However , when I was just about to leave home , the telepone rang . We do n't know which one to choose because there sre so many beautiful pictures . When I met them for the first tim , I was so confused others run around all the time even in formal celemonies . goodbay . and creat a sustainable future on our own accord . Hi , it 's my first text on this page ang I hope that this page help me learn my english . I just started writting my journal in English every day . Recentry my class did pre - lessons to be a teacher . But I want to be a teacher , and I want to meke a good future for Japan . I 'm so hanppy have this terrace that I can learn language . My English is not very well , I hope other people can hepe me , I can teach your Chinese , we kan help each other , could you ? Now , I am always going to a support ecompany for studying in UK . According to the IELTS module test , my IELTS socore is about 5 . 0 ~ 6 . 0 overall . I would like to go a UK university and major in Entrepreneurship or someting related to Business . We went hunting in Laxali Clearing after chatting . ablity . Oh , my eassay has been so long ! Thanks for reading my eassay . Please read my eassay , , ! One day , she heard a funny rumor from a junior high school student who said `` There a cursed video tape at a campsite hut , and if one wathch it , one dies after 7 days . `` Asakawa immediately decided to cover the story just out of curiousity . As you can see , I suspended my dialy again . The keyboard layout changed for some reasone . For examle , when I pushed `` k `` , it typed `` 2 `` ! ! I tride many ways to solve this . By chance , I pushed one kye , `` NumLk , `` and the plobrem was easily solved . . . I live downtown with Mexican friends now , but since they are going back to their contry , I have to find a new apartment by the end of jun . The owner is so kind but the poblem is that she does n't like the smell of meat , so she asked me not to cook meals with meat frequently . Anyway , I have to complete packing until nghit . He 's a Saint Bernard , like the dog from `` Bethoven `` . These sentenses say the same situation ? Thailand has a good relatioship to China therefore the Panda were the good gift . They invite the children and toursits who would like to visit Baby Pandaand and watch them playing with snow in that dome . There was one more important purpose for going to this museum , whih was the restaurant . Every freshman in my university is assigned to study calculus , the subject at which I failed in the first year of my universuty life . There coutinues to be illegal videotaping of movies in public movie theaters . It was so imperssed for me and I was shocked . I thought it was much more sofisticated and attractive than that of the Japanese version even though PS3 is originally made in Japan . I heard of `` Umbrella `` from recomendation songs at the cyworld which is a website in Korea and similar to Facebook in U . S . If you know this kind of music , please recomand ! Say it againg sung by Marie Digby My student will challeng relativelly advanced high schools . But I think this music clip is good entertainment and a song I can describe as one that 's really `` This is a Michal Jackson `` . Michale Jackson is the first America pop music star for me . When situation got worse , my comupter just freezed . I am goning to back - up my files and update the anti - virus software . 2 customers , and 3 stuffs incrude me , at bar my working place . I will go to do `` karaoke `` with my fliends . Unbeliverable ! Who Are They ? The Avatar Put banilla ice cream . Hi , I 'm Silver and I 'm learning Japanese and English . I 'm studying these languages because I want , someday , to spend some time in Japan and the EUA . Some people like a western style breakfast such as a peice of toast , scrambled eggs and a cup of coffee . I made some English sentenses with my friend . There are many people with allergric in the world . However , my sister ca n't eat those things , so my mother asked the teacher to give my sister treets without chocolate and peanuts that other children would also like . I could find a convincible opinion . Also my teacher adviced me of following : according to yestoday ` s translation , boss correct them himself and praided me for a good job . But , I ca n't write natural - sounding sentences in English nor can I speake it well . My second son knows how to swim because he has alredy had lessons . Afterwards , the hypothesis dissapeared . Every time I hear blood type character classfication , I 'm bored ! Plactice makes perfect . Everybody syould buy Volvic ! ! ! ! Last weekdend I climbed Yuelu Mountain / Mount Yuelu . so I dicieded to do something to help my English . that 's why I joined `` Lang - 8 `` and started writting diary entries . To make Ramen , we mix pork porksoup , oil , sause , noodle , and some toppings . Maybe I should find something intersting to do . Still , I feel sorry for having to make them liste to my strumbling around in their As a student studying Statistics , I agree with his opinion about the importantce of statistics in our life . Also some universities have a statistics departmemt in the undergraduate and graduate level . I like visit aroud there especially the sea side . There is a water park by the sea and they have long slidings . My kids are looing forward to going to the water park . It looks like a human physcally . He was astronomer and doctor in Midlle Ages . Poland in Midlle Ages was much larger than it is presently . He was first polsih pope . Englis as a second language Japanese and Koreans naturally have morebarriers to overcome because of the huge diffirences between English and their mother tongues , whichunlike Chinese , whose struature is somewhat similar . Frustration is always followed in the quest to be perfect , perticuarly in learning a language where there is no clear finish line . Astronomical sums of moeny has been invested on English education in Korea . `` I know many people who went to Ameria at a very young age . And their prounantiations and accents are just perfect . `` I dont n't have the instict or intuition for English language . `` My hoby is doing sports . As I love many kinds of spors , I have a muscular body . Yesterdy I went to work part time and I taught swimming to children and gim trainers . tomorrow , I will performe it in livehouse . Japanese blieves that the new Year God ( Toshigami sama ) aloso comes when new year comes . This is the preparation for revceiving new God . It has some theory and it is very comeplex to explane in English . It contained grammar , vocablaries , listening and reading sections . Anyway , no mather how hard it is , I know I should get through this hard peried of time all by myself . I do n't like the feeling of hanging aroud . Mybe taking photos can be a nice choice . Not only because of the bad environment in that ciity , but also because of my feeling of learning nothing there . It seems rediculous . The Korian tempercher will be sixteen degrees centigrate tomorrow . Compared to the Japanese tempercher , Korea is a little cold . My condision is a little bad . That sonetimes stimulates my appetite . Then , ( after ) arriving home , I ate a large breakfirst , See you ! Good nisht ! ! I decided that I will naver take PINAIR . NAVER ! ! ! proboblely the hottest day of the year . No , my intere life . I like Yui and Azunyann , Oppps I 'm Korean guy . Youyube caption download Today I heve found that Youtube gives subtitles for some movies . We count nunmers starting at 1 and the person who said 30 will be the loser . I think you can change this into a beter explanation ! Recently , I 'm lerning not only jazz , but also hip - hop and lock . It was very dilicious ! And now I coufuse English and Russian words ! ! _ It 's terrible . . . . . . . . . . . I will visit Ho Chi Minh City and experience a Mekon river cruise . I will stady English hard every day ! Two days ago , a dog my girldfriend 's family kept , Bell , passed away . This happened as expexted . People who consider watches as a tool for timekeper , Everybody in our dormitory waited for them , decided to make it a surperice . We had Mexican food for dinner , it was dilicious for us . English is very diffcult . to grapes , apples , fineapple , lemons , peaches , kiwis . If I had an oppotunity to eat fruits , Recentry , _ more and more people change their cell phones to smat phones . I began to be warried . I registerd for this site , immediately . Today I went to library and studied about various financial produts like ( / such as ) bonds or derivative financial instruments . By the way , I am becoming a little nervous these days because of the pressure of job hunting , and I often feel lonliness . The group invites a foreigner to be an adviser onece a month . I was supurised when I reseave the corrections . I 'd like to conntineu writing my English diary . first of all , I made korean soup which is for birth day soup , today was not anyone 's birthday thoug , beacuse its taste is great ! ! There were also kimch soup , Korean pancake , rice and kimch which are all traditional Korean foods . I decided to study English and Japenese yesterday , after washing , I read a Japenese book . because I just studied Japanese in the 3rd year of univercity . I dicided to study English writing in this site from today . I would like to I introduse my character . This job somtimes makes me feel tired , because I have to work in the hospital the whole day . So , I want / decide to ride a bike / bicycle with my frind . but when I go out to fetch my frind it 's still rainning but it 's suuny again I 'm very lonly . I dont understand the proper precedure to do these things . On this special day , some people are celebrating and some people are still in dangerious . Now we are focusing on the grammer when we start learning English , but not listening or speaking . I 'm one of the people who claim that speaking and listening are more important than grammer for beginners . Would you proofread these sentense ? And I bought stickers , so I will give thiese to you ! By the way , the 31st of October is Helloween ~ ! ! If you have free time , I want to exchange Helloween goods . I am studing English and Thai . I have 2 dougthers and a husband . We are living in Thai , becuse of my husband 's business . I like reading books , drowing pictures , playing the piano And they complaim about the participation cost . At last , I found one to sutisfy my requirements . I 'd like to live near the staition . I met a childfood friend . If I am free tommrrow , I will share it with you . Does anyone wnats to comunicate him ? For example , all us Japanese people lived in Japanese - style houses , but recently this type of building is becominng a thing of the past . Nne of the reasons is that the develpoment of the air conditioner lets us not need to choose the Japanese one that is built so that you do not feel uncomfortable without them . A man who like to wathch old - fashioned things has no choice than to go to a history museum where they are on display . What improvements have I exprienced ? But it is clear that I have relize the mistakes repeated in each entry . Learning so much vocabulary is making me confused and frusted . Could you see my weaknesses throgh my journals ? By the wey , I am going abroad to study English in Australia on February 12th . I am worring about the flood which have been occuring in Australia . hagout = play ? When I was student in High highschool , I was interested in Middle East . We playe dodge ball , catch the tail and ran in a race . I stayed up all night talkig with my new friends . I went to the web site of , `` the new york time `` it has beautiful calligraph . These days , I have begun traning to quickly translate Japanese sentenses to English ones one after another . Japanese sentenses are chosen to be translated easily so that we can concentrate on learning the grammar and the use of it . Becasue there 's no need to get any certification when you act as anyone , I remaned my acount and uploaded some pictures and became a well - known comedian of China this afternoon . But I can comunicate with others somehow . And unluckily I 'm incruded in those people ! Our enzyme , alchol dehydrogenase , which metabolizes the alchol , is less active compared with the enzyme that heavy drinkers have . I seems strange that my friend never recived a letter ! I have English conversation lessons on Satarday . I will enter a university in Aplil . do you have another expresson for `` it takes long time `` ? as with many korean students , I think I have a weak point for speking or listening in english . I watch my usual knitting shows , ready my favorite knitting books , and check out all my tools and knitting - wool in the colset . recentry , my hobby recentry , I 've been interested in Mr . Children which is a Japanese musician so , I listen to thier songs almost everyday ^ ^ and now I am listening to one of their songs . According to the weather forcast , it 'll rain tomorrow . But recentry , there is no one who takes care of these things . ' Your grandfater died . ' Oh , you have to wear something on your underware , right ? I used to sleep at arround 10pm and wake up at 6am . this weather makes me really dipressed ! ! ! The reason why I decided to live in NZ was that I wanted to recover the nodes on my vocal chords by being in the clean New Zealnder air , and also I was tired of being in Japan . He needed to push the on off - botton immediately . you 've learnt many languages , it 's very interesting , but learning to be fluential in any language can be very difficult What do you thinhk ? the internet , junk punkfood and smoking was my life . I 'm swallowing tablets and other medicaments for pain ( painkillers ) , my body hurts so I 've been lying down all day . Although all this has been happening , I wo n't stop pratice English . It is true that English is becoming the world language in globarization . I am reading a comic book called Dilbert , writen by Scott Adams . It was about M . 7 around Fukishima , the nearest place to the hypocenter . Her strongest point was that I ruin my health by not eating eggs and diary products while my brother slowly empoisons himself , it 's something nobody could do anything about it . She is just too stubburn , but so am I . . . Fresh vegitables were very good ! I have tried to grow vegitables on my balcony but it ended in failure . I have stayd at an Australian home and there I ate pasta made by the home family 's mother which is was the most delicious pasta I have ever had . I have to pay 1000yen every manth for the membership fee . I do n't need to pay for the car insuarance , either . Becouse it is included in the membership fee . This system is not populer yet in my nighberhood . In the future , this system may be pupuler among young people . on friday I just went out with some friends to have fun in a latin bar . It was nice , I met a lot of people there from differents parts in the world and oviously from my country as well . . . on sunday I went for a walk with my flatmate she 's like my sister here so we just went for walk and a cup of coffe and then I back to my flat . . . Yeasterday my mother and I drove to the Wake Mall and bought many things such as clothes , shoes , food and other stuff . They all enjoyed the sunny day and took their rest at the eeekend . My shedule in Bangkok had changed so I could n't arrange things around my schedule . So , I predict that this year 's theme will be ' nana ' or ' sichi ' I will take an examnation on the 24th of April . I am planning to have a trip with my college friends before guratuate and I have not decided where to go . The beautyful flowers There were the beautyful flowers at the reception of my company . I am not wearing a wedding ring , neither is my hasband , because we did not buy them / any . Of course , we visited a jewerley store like other people when we decided to get married . I ordereed some items from drugstore . I think they are a really big campany . I checked out that massege . I parchaced a lot of items so they will ship my items in two shipments and I would like to make sure that they will ship my items in two shipments . Mami Kawata This is a letter of complaint for a psychologic journal I was examined and the doctor said that I have signs of paranoia but I do n't belive him . I realy do n't know ; what do I do ? I also want to make freinds all over the world . At first , we had a Korean luncn . I bought colthes , boots , body care creams , and so on . We were reliefed , but we should have make sure of the bus , especially when we come to a place we do n't know so much . Since I have the shop bag of FORVER 21 , some girls asked me , ' ' Where is Forver 21 ! ? ' ' It waa interesting for me . In addition , students and their parents complain of the incompetent teachers who do not strive to show any effort to imprive their teaching skills . The governmnet insisted on a new system that requires teachers in secondary schools to renew their teaching certificate every ten years . Therefore , I recommend the method of using the score of authorized linguistics exams in the case of subjects related to language or tests made for assessing each subjet . In conclusion , I agree with the implementation to reform teacher 's regular assessment becasue it has more advantages than disadvantages , such as the improvement of a teacher 's teaching skills and the recovery of students and their parents ' attitude about public educaion . Jim Carrey 's acting was wonderful . I 'm going to write a Jornal everyday . SAKURA is cherry tree in Jpanese . I stayd home all day . I 'm a univesity student ! ! ! ! ! ! I have a friend from Japan in NewYork who is currently working in the real estate industory . However , if the teacher 's pay is based on th achievements of his students , Teacher A will work harder , and Teacher B will stop complaining It is lanch time now . I was very surprised because Austrailian eggplants are much bigger than Korean ones . Only those who are bilingual [ will ] pass the bar eaxm . Actually , I like watching movies which are dubbled in Japanese . I sometimes feel the gap between the dubbled voice and the real voice of actors . Recentry , I watched a movie with subtitles in order to learn English . 5 in terms of job hunting in America , they considered that people who emphasize their skills , achievement or quolification are likely to be a useful resorces for the company . Of course , this is a characteristic of Japanese people , and there are people who are very frank and are never diploomat . If there 's any opposing veiwpoints or advices , please tell me . ( ^ ^ ) As the Internet becomes more common , we can reach a vast quantity of infomations . Also , we can easily offense other people by using tools as slander . ( Some ) People are scared of being slandered , as the people do n't have common sence . Today I want to tell you about a festival , what happened yeasterday in my town , Vinnitsa . In the centre of town people could see the stands where there was the name of a Europian country that describes this country - population , area , official language , nationalities that live in this country and gave information about the history of this country . All of these interesting actions were accomponies with nice lively music , masterful displays of dancing and of couse a good mood . there are so many things I have to lern . . I went up Abura maountain this Sunday . We arrived there abourd half past two . And then we started climing the mountaion . While climing , I was out of breath because I do n't usualy excise and do n't have stamina . It took me about one and a half hours to arrive at the top of the mountaion . Going down is eary for me compared to going up ! We arrived at the bus stop aroud five . After that , we went to the restrant to eat dinner . I usually do n't excise so clming a mountain is new for me and I 'm excited . I like moives that make me `` think and treasure . `` Most of things that happen in our lives only make us anxious and depressed , and those negative feelings kill our minds little by little . As time goes by we become aged , experieced and learned . We minght not look at things as we did when we were younger . So I need to use English at school in order to give new impormation ( knowledge ) to my students . I kown . However , today I somehow repeatly listened to a song but I have many difficutise in math ! ! ! I servived today ~ haha Actaully I live in University domitary , so I 'm always in the school = ) Every Monday and Thursday , each class lasts for 1h 15mins , unlike the ohter days on which the classes are 50mins so these 2 days are more tiring . And fortunately during the second calss was no lecture because the professor was absent , so I went to library and took a nap ~ hahaha Third class was again Constitutional law but this time it was about construcures of controlling a contry ( state ? ) so it was more understandable than the first calss . 5th calss was Civil law ; I studied contract law . After fomal class , I had Japanese class which I take every Monday to Friday . healthy kutlet I made chicken kutlet for lunch today . Today , I am going to tell you how to make healthy chicken kutlet ! Today 's lunch was very yammy . At about 9 : 00 , I have to perpare my afternoon job . I think it is a wonderful oppotunity for me to improve my English and my teaching skills . ( PS : I am a college student and I major in English teaching ) So , I always prepare carefully before I have a class with the student . To be honest , driving a car is a big challege for me . But I know I am making progress every day , which is the most imporant part . What I 'm doing now is because I want to go to abrode to study , and I want to meet some friends from others countries . I want to know anything about others countries , and at the same time , I hope I can let my friends konw more about my country - - CHINA ~ I hope I wll be not be sleepy . It was temted to do some shopping . In 80 % of my time , I do what I 'm abligated to do . Unneccessary expenses mean low efficiency , and that 's what I dislike . However , I can only explain it in Japanse and Korean . One more thing , Februry second is the Ezaki - san 's birthday . When his son was sick , he had his son eat oyster sirub as an attempt to make him feel better . ( Because his son 's disease was epidemic , and the doctor gave him up . ) Miraculousely , his son escaped from death . After that , he wanted to have more children eat oyster serum / sirup . As I did n't focus during the lisning part , I do n't think I will get good score . Resently , after I had got home , almost everything I did was in the chair . I know exercise keeps not only my body sharp , but olso my mind . Hello , I found today this site , I decidet help other people learn polish language and I need help too with english language I had studied English to enter coullege but my English is poor Today is a biautifulday day . Rainny season The rainny season started in Tokyo this Monday . ( Sounds better ) The rainny season is very filthy , but we need it so we can get enough water this season . I will wash it untll noon . My teacher is Filipiono . I want to make progress in my english study ( studay ) . We would like to hand our property of chilren 's songs down to the next generation . I tjink they are more attractive than Tokyo . This year I want to be able to speak English very weill . thaks for reading ! I hope you have a great day ! ! As there are two more rings on it for the index finger and middle fingerr . self intorodaction What did you do for Cristmas ? By the way , yersterday , I bake and eat it with soy sauce or cheeze . A good employee should have this skill and also be able to communicate well wuth his co - workers . I entryed Lang - 8 today . Sakra is beginning to blom near my home . Anyway we enjoied the beautifully displayed dishes and the scenery of the countryside . He might be straved ! The A - course ( we oderded ) Grilled octpuses with herbs . Caprese scollop and tomato salad . Three kinds of curroes . When one reachses old age , he / she tends to be more conservative and reluctant to accept new ideas and innovations . As a conclusion , one 's retirement age should be decided according to one 's own conditions and willness . I suggested some Japaese books for beginners like him . He was walking to the opposite derection ! His head was facing me ! The main reason for their success is havig good results from lots of international competitions . So I am going to be a girl who has a boyfriend especially a bf from Amereica . In additon to this , there were many people standing by either side of the road selling foods , drinks , ice creams and so on . I always say that I want to keep it and lose weight but I hardly rechieve my goals . Do youo have any good ideas to resist the food offered in front of you ? The incurcion of a Typhoon yeserday afternoon , our teacher said to take a day off the next day . Of Ofcouse my mother was really angry . ( / _ ; ) I think I have a pretty ok command of the English language , but sometimes I get confused about prepositions , grammar etc . Watch is uncounable , I was up all last night playing on my computer , talking to my friends on Skype , watching Frends , and cleaning up my room . So , I 'm very stisfied with them . Now I do n't have to carry with me so much encash . Many people say bad things about my country , but Colombia is a buatiful place to live . The people here are so kind and happy , and everbody works hard to make Colombia a better place . Corrently , I feel hungry even though I have just had breakfast a few minutes ago . especially new recuits who recently graduated from college . And then , I found a favorite musician called `` Zainichi Funk `` I 'm lokking forward to it ! ! ! I 'm definitly not an `` otaku `` ( anime nerd ) because I 'm fairly mature , However , I have to reviw and prepare for the next week . I want to talk in Engulish more . I made `` macalon `` . I gon na try again near futer . I have to take hime to and from the school . Runnimg with my friends I used to subscribe to the Financial Times via Kindle , but after it got broken , I cancelled my subscripting . In the nersery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . But I never woory my English exam hehe As you can see , it has steps which are mede from glass Today ( ? ? ? ) National Foundation Day in Jpan . They ( was ) training ( ? ? ? ) the weves of the sea . World Cup is an exciting frestival . I recorded while I was waiting my train to work ang getting on it . There 's no foods , no erectric , no gasorine . . . Hoestly I tried to make my avatar based on the picutre , but I did n't know if I could make it . Now , I come here becouse my English is not fluent [ proficient ] . Actually , my dayly life does not necessarily use English but my father lives in California so I want to grow my communicaition skills . Anyone please give me help and be my freiends . It is for my illustration project and the other one is like a Japanese `` manga `` for bussiness on a web gallery . Anyways , this is a first note to say hai to evryone and nice to see you . K - 1 fight show is my favorite . Hello frineds . I finished Public Admistrater . . I took a lot of pictur with my friends . . I do n't have anyone to give me fower today . . I 'm a korean learing English . Zamzm : Holy Water Some Muslims even cry over Zamzam when they return to thier countries . But I dould n't do it because on the road I lost my way . I have heard that this way , the supplements are aborb well . ( ? ) Because I sit a lot in front of my desk , I would go out for lunch with collegues whenever I could . I do n't eat a lot becuae I am supposely on a diet , although the diet seems never really to succeed . It seems to be a cultual difference . Bankluptcy by eathquake I met one of my frined after a long time . I was suprised because she got a new job this Janualy . Pround to be Spanish In the last 10 years all the political parties who had had gobernment resposabilities in the different administrations , have accumulated enormuos amounts of power . In this political sitiuation with the current horrible economic and social scene , people have said stop . Unfortunately most of the media , supported by the political machinary , have been uninformtated about the little revolution . It seems that this social movement has been imitated all over the world , and that is wath makes me feel good and proud to be Spanish . First , I felt unconfortable having it because I 've never had such bright color things before . And , I was really dissapointed with the climate . I regretted that I did n't realizaing it before . I had an awesome trip with my famliy when I was studaying in Shanghai . . After that we visited Japan Parillion . It is the largest country parlillion and is also so beautiful . We also visited some other country parliion such as the United States , Spain , Netherlands and South Africa . Although I believe my knowledge of English is allready advanced , I am lacking usage and lots of tiny specific words from every day life . If you need any help in learnig German , do n't hesitate for ask me for advice . If you meet people that you have bae memories with , and you have not kept in touch for years . My favorite English words are `` lovely `` and `` briliant `` because I like `` L `` sound . I also would like to taik to anyone overseas on skype . When I was an elementary school student , my dream was to be a professionl football player . When I was a colledge student , I majored in Danish language and society . Besides , Danish people do n't open thier mouths wide so it is really hard to tell the difference ( between vowels ) . Today is my birtday . Finallymy father arrived at the hospitl and he was able to be present at my birth . Today I will look for an apartment for my freiends and myself . It 's my first time living with freiends . So I would really appreciate if you would correct English compotion below . The manuscript is so long that I devide it into two pieces . The non - directive play therapy and eight principles whick Axline V . Axline 's client chilren often ask her not to change the area they 've played in . I feel DIBS developed his ego through thinking and pursuading himself . Later , I went to a French resturant for dinner . I also had some rough times in my chlidhood . I 've found a software program that helps English learners to improve their English pronouncitation . My tongue is structured differently , so the pronounciation of my mother tougune is bad , too . I need to practice my pronounciation more than others because if I do n't practice , then many people may not understand my words / me . Yesterday , My farents and I went to see the baseball game in Munhak stadium . So My farents and I went to the traditional pub to drink some traditional liquor . Although Samsung lost the game , I had happy time with my farents . I will take a TOEIC examination on Janualy 302011 . My friend adviised me to first study t English grammar I am lucky to meet you at the vety beinning of the new semester I did n't forget about the white paudry sands , parm trees , good wind , beauteful light and the emerald green sea . He said : `` MoM I 'm hungery . `` My mother said , `` There is nothing to eat but some instant noodles . `` ( moved below ) The speed of the Internet here is slow and is causing me to have complete nervouse breakdown . Duirng the movie , the memory of Italy trip keep popping up in my head . The Liar Game is a TV series of Japen , which was adapted from a comic book . reasons , they join the Liar Gme for the second time . It 's too ache to concenerate on anything . A Chinese ole says `` Toothache is not illness , but it will take your live . `` Now I can unterstand it well through it . It ` s reary little shoe . However , I passed the test and I got my driver 's lisence two hours later . It 's so exceting ! ! You can go to the famous Shida nightmarket market , then ask anyone for the restaurant . These include Mexican food ( burrito , fajita , quesadilla , taco ) , every kind of burger ( pita , focaccia , burger , wrap ) , different flavors of omelets , salads , some specail breakfasts ( like English breakfast and mexican rancheros ) , pasta . Our most recommended is the chef meal , such as meat loaf , beef burgundy , German sausages and chops , parmesan pasta , eib eye steak and things like that . The flavor was unfamailar to me . There is also a specailty here , on the second floor , our boss provides and welcomes anyone to put their art work on the wall dispalying . I think that many HEROs are strong and have special power untill now . Otherwise her eyes will itch , and have a stuffy noice . I want to enroll into a forigne university as a master student . I can speak conversational Engish , but I ca n't use English for academic purpose . So my listenning skil is getting worse ! It 's my pleasure to join this website / site for learnning English . I was even more shocked when I knew that Miyagi prefecture sustained more damege than us ! Although I did not think that I had time to enjoy it in this journy , I had a swim suit in my suitcase . For example , reading , speakin , writing , grammer , etc . . . . As soon as I looked at her pale face , I called my workmate to aske how to deal with our emergency . Even the chance of talking with restaurant clerks has been getting smaller recently ; they have vending machines evertwhere which sell food tickets ! I started to wach this TV series on DVD last year . I think Samanth is very cool because she is strong despite her cancer . and I heard about shyphone . To use skyphon , I need a camera and microphone , ect . We like to relax in hot springxs . Then I want to go to an open ari bath . But I wonder if forigner will know about an open air bath . Which is better for forigner , an open ari bath or an outdoor bath ? But the other day I read a grammer book . And I went to school directry . Yesterday , on my way home I ran into Cindy who is the wife of the marketing maneger at our company . One of the big reasons why I 'm into it is this sereis is based on the daily life in Manhattan . It 's a good way to improve my Engish . I should prepare some snoe equipment such as a snow shovel as soon as possible . I 'm studying `` Computer Sistems `` . It 's preferable that its thick and made by chemical textail . I was worried about leaving Japan , but there were no worris or problems in Canada ! ! Unfortunetly , the website is written only in Japanese and the vanue is Aomori city , The Japanese temperature graduelly rose every year . There were few confortable spring days . I like confortable autumn days . I have to change somethin , but I have no idea what I regard this activity as a part of liveral - arts . But I want more opportunity to comunicate with English people . Because of watching drama or film without English subtitle and comunicating with our business partners without interpreter and living forgien country someday . I edited my frofile . At the beginning I did n't like Tony , he would always bully Sid and behave unfaithfully toward Machelle , I do n't understand him . At the end of the first season , Tony had an accident when taking a phone call with Machelle , he was apologying . . . I realized there are too many ligths in Japan . Also there are many 24 - hour convinience stores open here in Tokyo . I do n't think 24 - hour stores are nessesary . My feriend said that `` avocado tastes like tuna if you It 's wanderfull ( - _ - ; ) ! ( It 's called `` Doyou ushinohi `` ) Howevey , I 'm lacking the momey to buy it . It is a little bit expensible for me . . . . Yesterday I bought a wonderful black dress which I 'm going to wear on the wedding of my cousine . I ca n't understand why , because it 's really beatiful and , moreover , I 'm not a bride , just a guest ) ) ) ) my department is finance but I 'm a biggner so I read bookkeeping at first . In China , students choose their mjor before being admitted to universities . Befor the college entrance examination , I read a lot about OR researched electricity and its developing trend in a newspaper . She told me she usd to be a princess in China , but now she does everything by herself Today I teach the children reading and writting . I know I will use this experment in my future work ! ! My thecher is male and is from america . [ Because pabulic bathrooms are dirty . Realy ? The frist day I am now working as a public servent in Shinjuku . Everyday I 'm going to practicewriting , ristening , andreading , So , I went to the location of the fire as soon as possible in my car , alound five o ' cloc . Study methods that work well for oneself is readlly found . I speak English and I 'm also intereted in Japanese and Chinese . My girls are playing a lot with their cusions . 5 minutes is 300 secoconds . It has passed 50 seconds alreay ! ! I travelled to Tailand last month . He said , `` This is your first visit to tailand , right ? Then you must to drink to Tailand Yogurt . `` I was very suprise by the SIZE . Yet , dispite the fact that I have plenty of days in my hands , I do n't have any plans to do anything except for a short day trip to my grandparents ' home in Yamagata prefecture . By the way , I 'm going to Euroup on the 26th . The day before yesterday , my cumpany announced it 's first quarter financial results . As a result , my cumpany stock rate decreaced 10 % yesterday . At the same time they lose theirselies in the internet and the computer games . His performanse very good . He performed well . I like his performanse . My stomeach is getting bigger and bigger . Incheon city holds a big internetional rock festival I felt very nervious and could n't say much about the PR expression in English . And I know they are disgausted by that . By the way , if English speakers speak Asian languages in Asian coutries , Asians are interested in them . Anyway , speaking English is in Grerat demand and speaking Asian languages is in small demand . Why I sellect advertising is still a mystery for me . Maybe some people think commercials are a bad thing , because they interrupt people 's favorite TV programe . So I ca n't cotrol it . Oh , I am sorry , my doy . 3 , Try to speake English more actively . see you agein . Tempra was tasty , but I had a hard time talking with my colleague in English . I also studay English by playing video games in English . I do n't have much self estime . schoool was cancelled because there was a typhoon . Forcast of this week In today 's class , I was confused with the usages of ajectives . `` You kidding , hoon . `` A middle - aged man said . This is my second English diary . ( Or to someone who migh look at it and corrct it . English was a main subject at that time , but the importance of Enlgish is growing more and more each day . English education in elementary school started in 1997 in Korea . ( from 3rd grade ) Korean Goverment has an Enlsih education policy to be extended to 1st grade someday . I have 14 - years of experience teaching elementary school here in Korea , and like every other teacher , I am feeling the stress of Enlish . After entring university , I started to study Chinese . I really hope that I get better at English and make a lot of friends throug Lang - 8 . Well , when you were a little toddler , you problaby watched some cartoons on the telly . I will begin my wark from tomorrow on . I also bring magazines into the bathroom such as fashion or photo mazazine with beautiful pictures . Here is the reanson . He said : `` Time is flying by , this time last year we were stil playing together . `` He also asked me to visit his hometown when I was free . I want to work hard to offer better survis to the guests . But I should n't really be , because I have an English presentation I iIhave to write , and tomorrow I have a piano lesson . She is very beutiful with the clothes . If you have a chance to travel in Zhengjiang , I recommand you should takea trip trip toHangzhou . Fortunately , there are two drivers incoulding me , otherwise it would take longer for me to drive back home . This resuce was a miracle . By the way , I 've been interested in slungs because I take a slang idioms workshop on Fridays . Do you use slungs in your daily life ? And I cought a cold . Or , I wear my favorite earings or necklace ( expensive ones ! ! ) . as a beginer , I think acoustic guitar is the best choice . one , it 's dericious . Next morning , luckly I felt so much better . I know it 's been long time no jornal , but I finally came back to my home town from two weeks of vacationing in Hawaii . It was the best vacaiton ever , I think . My Japanese friend took me to play soccer and hujng out , and my best friend took me to Byodoin temple in Hawaii . It was so beautifl and the area in which the temple is reminded me of Japan like Kyoto , you know . I have tought myself english for a long time . Our memories in Austria ( Australia ? ) are especially awsome ! ! ! I 'm confident I will pass the IELTS because you have taught me aussei English , so I 'll study harder to speak English well thanks to you . There is n't any garten , but there is a big balcony . It 's beyond my expectation that I writen a paper here which is responded to so quickly . It is made of soy . When it is sold to coustom , it would have suger water poured on it , But I eventually decided to go as the plan was to visit Praque and I had never been abroad before . Once we arrived in Praque , we started sight - seeing . Pitty that we could n't watch more of it . I felt a bit drowsy , so on the way back home I fell asleep and sleept like a baby . I do n't know why I fall asleep imdiately and for a very long time recentely . If you have a facebook acount , please connect with me ! It is so lound and noisy to me . However , I ecountered a difficulty in my English writing . Due to above these reasons , I decieded to try to improve my English writing , by writing diaries every day . My faborite game is `` Monster hanter `` . And , I enjoed chatting with my friends in my colledge . I was suprise ! ! Of course , there are a few possitive apsects about telly . I have nothing against educational programmes which have a possitive effect on our development and I sometimes watch them with my little sister . I beared it for a long time . One is the way you learn in school , by reading books , the correct way , but not used dialy . He was a very nice person before , but he has chaged . - He could not make himself heard in a crowdy street . I think that I still have good prononciations and more delicate way of expression in Chinese . some habits seriously illegal : violance in the family , drug abuse . . . etc . I was very surprised that there were so many people to see the ceremony in Wasington . For example , International Mime fesival , Puppet Festival , International Yesterday I flew to Hokkaido for a buisiness trip and came back home today . I felt flight attendants are very tactiful . ? ? However , I 'm not afraid of aftershoks , Instead I am scared of the earthquake alarms . As we sadly partake in the last moments of pleasur from our summer vacations I 'm unhappily reminded of the dreabful schoolwork that lies ahead . However , I think I shoud n't sleep now because I have only written one diary entry in 5 months . Beer , MACHA ( bitter green tea ) and soy sauce were real Japanesell ! ! If I keep smily , happiness will surely happen to me ! ! What are the supporters like ? How is the pitch ? How is stadium outlooking ? When the check was recieved by my boss , It was corrected a lot . If there are any problems with my pronounciation in this song , As such , I feel so stressed out affter school . Affter studying about 30 minutes I start to feel sleepy . so effectly ! So if you find anything wrong with my sentense , please correct it or point it out . Today , I whatched an Icecream car ( ice cream van ) near the my house . ( Totonto Lake shore west ) You can make a Paper lounge to be longest as a 16 - seater lounge or shotest as a 1 - seater sofa . I recived an e - mail from her that told me about shis scheal . The Techer was going to camp whith his girlfriend so I felt jealous . I took an evningclassroom class by myself . I plaied with a child and I used eat lunch at a place where there are children . Shipping mothod He checked the attendance seet and rearised I made a mistake ! Audry was very cute & charming Today , I have 3 classes which are sports business , academic writing and a seminar about world haritage sites . I talked a lot with my new friend who is half Japanese and haif French . Today , I went Downtoun with my friend and I took many pictures . I engoyed myself but , I experienced some strange things . By the way , I also went Chinatoun and it was awful because many people are thin , smoke and have tattoos . However , I wonder why a poor place was made near the center of Downtoun and why the poor people are still poor ? We should donate more moeny and support them , bacause they have the right to live safely and peacefully . I did n't know much about it , so I asked the staff which is recommended for a bigginer . By the way , I work for the company in Tokyo and our headquaters is in the United states . A Cammpaign Speech I 'm jiaru , I 'm froom class 4 . I bealive I can do it well if I am elected . I was fully satisefied with the swamp and marsh of oze . this was my favorite part of the day ! She is from Austria and her hasband is from China . I was surprised she knen Chinese characters . Today , I rentaled some CDs The house had a large garden and a garage while our appartment does n't . My hasband did n't want to because changing the tires by himself was n't easy . Aroud 5 o ' clock his mother came back home from work . She had picked up some vegitables - a Chinese cabbage , spinaches , and long green onions at a small farm and gave them to us . The pot had a partition to enjoy two diffent types of soup . We were able to eat any meat for about one thousand yen at the restaurant so we ate a lot of vegitables , beef , pork , and chikens . I 'm going to cancel my purchase of this item , but I want to buy that new cleanzer . I 'm trying to buy this cleanzer and if I can get your items I will re - order them ! I picked up my son at the satation yesterday because he came home for the first time in a month . While I was watching Australian TV , I felt liike a child . wkeather is r , she took me to the store , and I purchased an electri heater . a lot of dilicious food . ^ ^ But I am sleeoy now . . . bcause I did n't know how to use it well : ( but I think this is not good thing . recentry I 'm hunting for a job . in Japan , univercity students must get their job soon after grauation , and keep working all of their life : ( I think this is a bad system . if I ca n't get a job , I would go to potographer school and become a phtographer : P Gramatically is it a conjunction ? My freign friend told me about how to prevent the cold . But my study habit is if I do n't know the words means I always use . dictional . What is the most portant is to burn paper money , we think our ancestor will recieve it and can use it in heaven . That will be thought as very pityful . For example : `` So to speak `` , `` on account of `` , `` bacause `` , `` thus `` . . . expressions like th . How can you get friends in this SNS ? + Short Message Service + Of course , I have a Mixi account , the largest SNS in Japan . So , I deside to study English harder this year . and thank you so much for leaving your nice commets and corrections for my previous entry ! ! I was very happy to make some firneds and I want to make more now . I had to write it until the 22ndof last Desember , so I am filled with a feeling of freedom , ^ ^ but I will have to do more one thing to do for my graduation , which is an oral assessment . Which is maybe about 15 minites . Harry Potter and the Deathry Hallows Today , I went shopping with my daghter . I want to visit Tokyo of course : Harajuki , Shibuya , Roppongi etc . Last week , my frined went to NY to study English . I bought lesons on etutor . Preparing for travering I want to enjoy travering there . I have to ( must ) remember to do it on wedonesday . I just read a setence in a dictionary . So local hospitals are inviting madical students to their hospitals and asking medical students to come to their hospitals and look around inside . For hospitals , they can use them as labor force , accept money from goverment and get compensation by being selecting . So I went there and looked aroud with my friend . I will leave after watchig the Japan team WBC game . I have a plan to look aroud there from 24 to 27 . Afterwards , I might go to Okayama ( prefecture ) to lookin around on the 29th . Well , I feel like panching someone ` s face righ nowlol I have been flustrated all day coz of someone I dislike , in fact I hate them . If my wish could come true , I would wish to let someone kill them and vanish in front of me . . . lol now probably u can see how flustrated I am ? howevrer , I forgot to save them before shutting the excel . . . . I totally felt dipression and dizzylol therefore , I was fucking something stupid around till I calm down my flustaration . so I wana ask u about ur solution when u get flustration or something bad happens to you . How can u get that out of ur mind ? Many ppl have given me messages although I 've just started taking part in this SNS . Because of the typoon , the train that I usually use for going to my company is cancelled now . Althought it 's bad news , I still had a memorabal Sunday . I 've now written elven entries on Lang - 8 . He asked me , `` what are you going to do tonigh ? `` So at first I introduced myself , but then I could n't remember their name at all onece ! ! First , I could come back home earlier than usual from the restaurant that I work at because of hevy snow . Yappie ! ! I always get up at 4 o ' clock evety morning . Only one student in my class fainally came to school . But almost all Japanse are not good at English , including me . We can ' t play soccor like Lionel Messi , who is a super soccor player , only by watching his games and studying the rules of soccor . So , I think I have to try more ( or harder ) althogh it is often a bit hard ( or difficult ) . I am looking foward to meet you and your family . I 'm / am really surpised bause I think she will forget later what I teach but she wo n't ( will not ) . I ca n't imajin how much work I have to do tomorrow because I could n't finished it on Saterday . I do n't like raiy days . I hope it will be sunny on tuesuday of next week because the sports festival will be held . on tuesuday . I went to London , Paris , Francfurt and Lipzig . they were very beautiful . they often slept in the day and catch mice at night . iwe buy fishes for them and often played with them . so we like them very much . at last , the other cat was stoled by other people . mom said that the strangers might haveeaten it . Totally I spent 300 $ and became a begger . I amd a vet . The following day after the show , my friend who came to the two - day festival mailed me , a company which sponcers artists invited her to see Buckcherry , one of the bands in that festival , at their own show in Hiroshima . That fact makes me hesitative when I am going to meet someone . For whomever is reading this , if & nbsp ; I have mistake in grammar , PLEASE check and correcthat it . There were lines of poeole at the place pretty far from the city . That is more sirious for people live in Tokyo . He always puts his face near my face and his wiskers touch my cheek . I tickle his wiskers ! I stuied English , then prepared to go out . We went into a restaurant and orderd our meal . My univercity started classes on the 27th . I ca n't deciide which classes I want to take . This museum and this tour taught me that communist countries exsisted . I do n't know how to express my apperciaition Wish things will get better tormorrow after some negotiation ! Please ! If you do n't know sumo , ckeck it out . Yestaday , I had an interview with an associate consultant company . What should I do to be more enegetic ? My heart sank from the bad result in the postgraduate entrance exam but I must force a smlie and carry on with more courage . One class is Principles of Language Learing and Teaching , and the other is English Literature . In the lesson , we read Macbeth , a / the famouse play written by Shakespeare . At the time of the first lesson , I thougt I would n't be able to keep up with the class . I do n't have a good head for buisiness . T . , who is a professinal Japanese illustrator . I was very busy with her own job , so I needed to trancelate it for her to reduce her burden . She saw it and read the translated message , and then she replied to Miss K that she would be able to draw some illastrations in black and white , but she would not be able to make them in full Manga style . It is too much work for her , but if Miss K accepts her suggestion , she will draw it on a volantary basis . she thought that it would be a good oportunity for her to make children 's book and co - operate with British people . I have another story and I have n't made any illustlations for it yet . `` I and myself do not have a good head for buisiness Becouse , if I watch it , I ca n't sleep . We were satisfied with our shopping very much because their fablic is always high quority . She was fastned to the bed , her face was sweaty and her eyes wide open , because she was afraid . I have n't written daiaries for a long time . . . Please correct my daiaries ! I am just used to words and saying realy small things . I think , I do n't need to translate Korean into English but to thinkinh in English directly . I try to sell them on Japanease auction sites . I keep buying them and it is like my side biginess . Now I 'm really disapointed that my American friend left me . She came here on the same day whic I came back . So I took her , went around our school and some fomouse place of Beijing in these 3 days . She refused to eat any Chiese food . But it did n't work , because she foud some friends who came from the U . Our life style , I mean , Asians have already westernied so much . After the Olympic games , the life of Beijing complitely changed . We have cars , PCs , humbergars , everything same as U . I swept and polished the floor of the kitchin . But they will only show it on WOWOW wich is pay TV . I was excited when I checked the morning paper , because my fraiend was in it . evern more than last year . Very intresting but CRT moniters were still being used . Somebady said the Cloud is the third industrial revolution . When the Imam said , `` Allah is the greatest , `` all my family started to eat the breakfast with apices of dates . Then I said , `` Mum , Dad , my brothers and sisters , this is an Indian rice and I made it for you . = ) `` My hobbies are playing video games , surffing the internet , listening Althought it might have bothered others , I ca n't help but to buy and set off fireworks . I came acrross this website in a magazine called AERA ENGLISH ( a Japanese publication ) recently and thought ' wow , this is such a good match for what I want to do now with my English ! ! ' . I enjoyed doing netserfing . I steeled myseif to start running Have you ever tried Bouldring ? I tried Boudring last week . I took looking for a Bouldring lightly . Anyway , today 's topic is the death penarty , which is very conroversial around the world . They are seminer , writing , special topics ( I can choose a class ) and presentation . Although one has a strong desire to be successfull or dreaming to be a famous person , without knowledge of manage time , he ca n't achieve his goals . So I should be more carefull in managing my limited time which can lead me to success . It is proud that I can make full use of my leisure time skilledly . I do n't like rain , because it 's not possible to take a wark . I wish the rainy seson did n't exist . I 'm intersted in demi pair ( ? ? ) and in an internship program in Australia or New Zealand , so she explained those in detail . Here , I just stay at homestay . So I could get one degital audio book instead of paying a monthly fee . I shold have bought a much more expensive book . However , he was told that everone had to leave the building , so he let us leave . I just recognized , If I want gud English I have to have more friends to contact . I want to have lots of foerigin friends . I love British stuff and want to stay in the countrysaide of England someday . If any British people see my daiary , please give me advice . I would say Sushi can be devided into 4 parts . The scond bottom layer is called the `` popular class `` . The scond highest layer is called the `` advanced class `` . When I was studying German threre , a man came over and talked to me . So he left my house with `` Sidartha `` in his hands . Then I watched the Chelse vs Inter game on TV . I did n't like Inter , so I wanted Chelse to win . Kaera Kimura married yesturday . For example , last summer there was a so called ' sandy town ' in the middle of our square where our citizens could see world - famous sights such as Eiffel Tower , Egyptian Pyramids , Coloseum , Parthenon etc . I thought I would live like this forever but lately my thoght has changed . I speak some English and try to learn Italiano , but I 'm only a beginniner . I enjoyed watching her dynamic perfomance on Youtube . That is , the Star Spangled Banner by Jennifer Hudson at the Democratic Party National Convension . I felt tired and lethargical . Flowers are blumming now , and I 'm in good spirits = ) I hope to have a rest in the forest this weekend , and my friends have just told me the weather will be good . I hope they are rigt . . . = ) ) ) ) Therefore my friends on Lang - 8 are increacing everyday . ' Tideji ' means tijou degital . Today is a traiditional festival in China : the Mid - autumn Festival , family members will try their best to get together and enjoy the happy and warm atmosphere , a very good and important day for every Chinese . I am living in the same way everyday , doing all of the same thinhgs , studying all different papers . Everyday I compete with my limitations . I always feel like I do n't have the abilityies to comfront society and work . A beatiful future is waiting for you ! ! He quickly hid behind the buldings . And , I checked the history of Slovenia on the internet and found out that numerous peopls were killed by false charge during and after World War . In Japan , almost all games are shown at midnight , so I have a lack of sllep . I hopefully think I cound finish by tomorrow night . He even fored us to apologize ! Cherry blossms Another friend is taking matenity leave . She is looking for an interesting job , and appling to many companies . I decided to try writting the diary in english from today . I watched a movie tonigh , actually it was not as good as I had expected . I made tuna and potherb mustard with tomato sause . I hope some foreigen friends can give me some advice on how to study English ! Thang you ! And I 'm at the Staebucks coffee near the beauty salon . These thesedays , I really want to make freindship with people from other countries . By meeting them and communicating with them , I want to learn their cultrues , languages , and unique perspectives . Shigyo - shiki is an opening celemony for the beginning of the school year or semester in Japan . It is usually held in the frist week of April . Typically , students are gethered in the school gym or the playground , then the celemony begins with a speech from their principal . A girl who spoked to me said , I might have some difficulties fulfilling this target ; too much work , not enough vocaburaly , and so on . It 's been a long time since I 've written a dialy . I 'm not good at Korean , but we could use English and Japanese in Seoul a littel . I felt that Seoul has great poplation , and that the economy is prosperous / prospering . Actually Younger brother came back home before 5 days already but he returned to his home ground the day befoer yesterday because his vacation 's over . I was so surprised and embrassed . I usually eati , t fresh fruit juce first . . . . So It is literesting . I went to a hospital , and all four doctors who saw my thrort said My favorite TV show will be on tonaight . And I have been working as a designer for acsesorry , bags , shoews , necklaces and so on in Kobe for 4 years . Oops , I 've ran from my main point . Anyway , I want to leran English , and make friends from forein country . So please send me a / the letter and correce my diary . becasue I was very tired . I 'm especially very sorry that we could n't go to Tianamen Square . I want to learn English , so I started Lamg - 8 yesterday . The Thai goverment gives money to students to study for free for fifteen years . My nephews got money to buy stationery and student uniforms . After buying anything the guardian is supposed to return the receip to the school to confirm that the money is being used for the student and not for other things . We have never had an offer from the goverment like this before . Usually parents pay for their children to study . I do n't know the amount that each grade recived but my nephew recived around 560 baht for this term . I know abroad you study for free until universitry ? That is a really good goverment who supports you . Because it can introduce something fresh to our life , like changing your shirt color for instance . In the past , I ostracized gays all along , because I thought that was nonnatural and abnormal , but now I have changed my mind . I do n't know the exact reason - - maybe because I am more mature , or something else . I believe that true love can exist between two men or two women . the Highwest fashion , which acters wear often , is popular in Korea . All things considered , no carefree future exists for those of us who live in megapolises unless we are prepared to put some effort into working together and involving government in the problem right now . I have many clothes because I like Fasion . I took too many clothes to the flea market to be sold , but custmer bought For example , neil polish , sunglasses , a watch . . . But today was n't a nonconsultation day . Today I am very happy , because I have just made my frist friend on Lang - 8 ! I 'm going to give a Farawell party tomorrow . I choiced a Dopamine keychain ! Summer is finshing , and soon automn will come . . . I dont wanna do , I have do it becouse I need a lot money if I want to travel . Every day I think about how it would be to live in london or new york ? ? ? this trip is to forget about everything that hapen at my work . . After performanced , she did an intervew and started crying . Today I feel happy bacause my flat mate went back to his country ( Yeah ! ! ) For example , He alwasys smoked in the living room even though I told him that I 'm a nonsmoker and I 'd like him to somke outside . Oh godness ! It is such a confatable place , and so beautiful ! So I 'm unluckly . We have a lot of onomatopes in Japanese . One food texuture word , crispy is used for potato chips . I 'm too busy or I 'm too lasy Sometimes I cut these boring classes then went to the library because I just wanted to read some books , which I think is much more & nbsp ; intersting than my teacher 's lectures . It had survived some falls and I accedentally sat on it once . ^ ^ ' ' I 'm so sloppy when it comes to handling my stuff . ^ ^ ' ' So our teacher devided us into many teams so we could talk to the foreign friends in a small group . Tommorow I 'm going to take my children to a soccer lesson . From todays neww . In Japan , many peaple measure radiation recently . When it comes to crimes , I think mass media plays an important role in informing citizens of what 's going on at a natonwide level . Right now I am practicing it , but it 's so hard to pronunce well . Whould you advise me on how to improve my English ability ? However , they were surprisedly . Koyasan is very famous for a type of Butism , called SHINGONSYU . I invited my foregin friends to my town . My dream is run a youth hostel in my town and I hope that many foregin people visit my home town . becuse I think she 's a nice girl and a good match for me . It includes many incorrect sentences that I am wrinting . This month the examimation are over , so right now I 'm happy . I 'm going to celebrete with my classmates , but it 's raining with a posibility of snow in the east city , near the Andes mountains . As you can see , I have a very hard time using Englsh . & nbsp ; This following diologues is from the sitcom Friends that I 'm watching . I just got the test result this Fridy . I was waiting for my result on the web site with my mom and when the word `` Pass `` appeared on the scrren I almost shouted with excitment . But I 'm trying to focuse on my study and work . My homedown is much noisier than Calary . My homedown is busier than Calary . Maybe my homedown is the noisiest in the world . My homedown has more a bigger population than Calary . My homedown is noisier than Calary . My homedown is brighter than Calary at night . My homedown has more traffic jams than Calary . My homedown has more public transport than Calary . My homedown has the best public transport in the world . My homedown is younger than Calary . My homedown has more moutains than Calary . I strogly suggest not going to the English school after the dentist . . . I was concerned about such an extremely low temperature and yet I still let them do a lot of preparation excersise . And when she wore glasses for far - sighedness , she could n't see things at a distance ! How to defind the distance between far and near ? It was a chllange if my mom wanted to watch TV and write somthing down at the same time . People always say : ' The eyes are the winodw to the soul ' . In 2007 , I went to America for 2 weaks by myself . I was surprised at the sashimi of colorful tropical fish and giant clum in their beautifl shells . By 2012 , I 'll have hinished school . I have n't gone anywhere because of increadibly hot weathre . That is why I will write this daiary in both languages ! Actually I pland a lot of activities during this holiday , but I could not do them at all ! ! But during World War II , the castel was burnt down on May 14 , 1945 . I try to keep writing in my dialy for 3 days starting from today . Hi , this is An , and it 's my first time writing in Engilsh and Spanish . It 's sxxk ( ? ) to show my poor English and Spanish in a public space , but it is very very important now . I have to studing and face it , so get on An , everything will be good , haha . . . Now I must fight with my laziness and try to write more , becouse really I ( I really ) want to become fluent in English . Although I spent my birthday in a forigne country , My Korean friends congretulated me on the Internet . I was touched and it was absoultely briliant . Maybe I do n't need a boyfriend , I hate marride . My fater and my mother do n't like each other , they affect my opinion about marriage . and after 6 pm people went around the street carrying a torch on their sholder . I hope my face does n't become swallen . I will change them to a mixed ceramic and prastic cap later . So Access is a DateBase softwere . I think each company has an exclusive datebase softwere . If there is a reason to use it , the exclusive softwere will be expensive . Looking forword to your reply . The gym is not crowded and has enough machines for many kinds of excercises . I was almost cried some times and I was moved so much altough today was my second time to see it . After the show I went to back of the theater and I could meet some cast . I could get an autografy from MARK , Beny and Mimi ! ! When I said to MARK `` I 'm your big fan ! `` he only nodded me saying nothing . . . . I could have his autografy on DVD ! ! My sister is in high scool and my brother is in middel school . Althought I was cold , I said : `` No probiem ! `` he finished wrting a letter to his friend , it was 1 a . m . We decided to watch another movie called `` Source code `` . It was enterning , but there were too many mistakes about the informatic technology . Next time we will book in advence on the internet . My favorite Podcastnamed Morning Ireland releaced a podcast so I will keep it on my iPod . I tred many mays to relax : listen classical music ; talk with friends ; a cup of hot milk . . . . . . . I usually wake up alound 6 : 00am . My friend in NZ introducemed me to these funny comedians ! I do n't have any foreign friends near here , and I do n't have enough maney to go to English school . It is designed to keep the right tempature by the roof made of warm felt and the wrapping cloth easily flips partly open . This technology which can provide electricity anywhere is very good for thir lifestyle moving through the vast steppe . I know it 's a little arrogant to contribute consective entries and beg such a favor . My comany recently expressed that they want emploee to study Engish , to be successful First , our president sends an English message to every emploee Some of my colleagues have already worked overseas in China , India , Ameria . . . Yesterday and today I 've been to Toyohashi , Aichi prefecture to attendattending anin - house conference , called Research Policy Retreet . I stepped on a cockroach accidently ! ! ! ! ! Moreover , according to a book , more and more companies tend to value thier abilities or personalities over their careers . Therefore , salaries should be paid for the results of daily work such as thier perfomance and the benefit they have brought to thier workplaces . One thing that I think really interesting is that each person has a different percepction about the tempreture by each hometown . By the way , this year 's summer is carrzy ! ! A few days ago , the highest tempreture in my room was 36 . 5 degrees ! Instantly , I doubted my themometer . I always tought this sport would be too tiring for me . But , while playing basketball I was so exitied , after all . Now , I 'll keep plaing ! Nicwe to meet you . It would be a fantustic school . . . . Not outsite , no stories to talk about with my friends . Hello , my wonderful friends . When I do n't go outsite my house , By the way , I am feeling muscler pain in two days after I got exercise . Friday is colled ' HANAKIN ' in Japanease . So residents are required to help each other and participate in comittee . There are many comittee like the Representive Committee , Bath Committee and Welfare Committee . Unforunately , some members of the Netwokr comittee graduated in the last month . But we , Japanese , use Chinese letters that have their own pronounciation and meanings when we write and read Japanese . This is my first time to write a diary online in Engish . The sunlight shining in through my window acts as my alarmm clock . However , I recieved an r E - mail from her saying , `` It was so fun to hear your broken funny English . `` I was very interested in that particular kind of memo , and so I reserch it on the Internet . Please thell me the differences I like to talk about space , biomechanics , artifact intelligence , motorcycles ( Yamaha Vmax owner ) and something fun . I believe there is a very good company somewhre in Japan . I have n't eaten any sushi for a long time because there ist n't any fresh fish in Frankfurt . I 've got two weeks laft here in the UK which is kind of what I do n't want , however part of me is also wantingto go back to Japan . They are pretty cute and quiete . I always have eaten meat ( likesteak humburger ) when I go abroad . Still do n't forget the acdamic paper ! Spain is a quite cozy country and the people there are kind and lovely . I was there for 2 weeks , met a lot of new people and made frienda with them . I was tierd , becouse I took over the job . I have to get up early tomorow moroning . I think he has deeply understands Japan and its coulture . The practice time for playing the violin has to be maintained for a successful addmition . Therefore , September is the last apportunity during which I will have time to study English . I know talking with foreigners is an important thing to do practive Eng . He refused to take reponsibility and exchange my computer saying , Despite everthing that was happening , I am sure that I am still a lucky guy who was able to When we are togother , we often have lots to talk about , and if we do n't , we just keep silent . As you know , Fukushima 's nuclear plant has been having toruble since March 11 , the day of earthquake . I wanted to have more comversation with him , but I could only trade FB id 's . I can understand writed English better than spoken . So make sure take your own precautions , such as washing hands , wearing a mask , dont talking to ppl , and staying at home all day . hahaha I recommend it anyone who is studiying second languages . I really appriciate your help . It 's opend every Satarday . Foreighners speaking in Kansai - ben as a challenging topic plase help me ! ! ! it 's urgent ! ! ( Punishment fits the cirme ) I regarted it so much . I could write essey easilly , so I 'll try to do my best ! Please correst my wrong sentence . we won an aglicultural product this year ! I have never got gifts excpt at that festival . It was sunny and muggy this mornng . It was only after a second that it started to rain heavly ! It is ratehr wise to follow what my mother says . But I still feel my English is not good enogh . We talked about our research and how to be popular wiwh girls . She said she was pregnat , but had a miscarriage . I assurd it is because there are some reasons . I ordered an iced coffee , and sat in a comfortable sofer . I 'm interested in this subect . It 's also a good experience which can arouse my interet in language and at the same time help other people . I am willing to correct those articles in Traditonal Chinese but Simplified Chinese seems to prevail . Although grammer and usages are the same , I am wondering if my corrections were well understood . ( grammar was misspelt ) Today I want to tell you , about my holydays . My holydays is so boring . Our forest is greene and it grows diferent trees and flowers . Herhaps it 's because she is my baby , not someone else 's . Untill this time , from junior higj school to now , I have had practice everyday at the club . Because , I want to speak English while on Bussines . I organize loudrock comunity website in Japan . I would be glad to organise a loudrock comunity together . A more beautifl Lang - 8 It has been a long time since the last time wrote entiry on Lang - 8 . Pls help me correct it . I 'm not familier in programming . And there were lots of custmers ! : D hehe Every custmer seem to love our shop ! : ) What 's the defference betweem `` go mad `` & `` get mad `` ? Anyway , I had taken TOEFL several times to get 550 point to enroll college . It was huge boom to grow up in the Japanese economy andbecause of that , my parents believed I would apply for major companies such as panasonic , nitendo , and so on . I do not know how the Americans really feel , but as far as can tell from newspapers and TV programs , they are tired of being at war , and of suffering in a financilal crunch and so on . As he mentioned in his innauguration speech , greatness is never a given . We do n't much go out to eat much , but sometimes it 's fun to go to restaurat that we heve never been to before . I was not ready about today 's topic which is `` hablts `` and `` fun story `` . I ca n't speak and explan what I 'm trying to say to other members in English . I alwasy wait and listen to other member 's topic . One member enrolled about a week ago said that although there is many memebers but it 's too quiet . I decied even though I have misstake with my explation and grammer . Yesterday I went to lisetn to a design speech with my classmate . But I felt satify after listening that speech . Sometimes , listening to a positive talking or happy proform may give us power to live in this complex generation . About 3 months ago , she told ( discolsed is very formal ) me that she had some feelings for the guy , so I gave her some advice to test if the guy had any feelings for her . In addtion , I do n't know why , but some Australians can speak Japanese . I still remenber that . He said it was so complecated to explain . Seems I was ready to belive everybody and everything that might happen on this day . The anymal symbols are representative of twelve specific years . We also call those twelve yeaes `` one period `` . And if you were born in a year when the anymal symbol was the rabbit , you are called a `` rabbit person `` . I am a chiken person . Dary start The first day I went to scool I was very excited because evirybody was very kind . My first friend is Iand J because I play math bord games Then I do sience but I do n't understand English so can someone cafetria . His father is a Japanese Jyudou player . To be honet , I would like to buy CDs of my favorite bands but because I 'm broke now , I waited for the rental . Ever since I listend to their music , I have been fascinated with them . Though I bring my home to my PC for work , his e - mail was transferd to my mobile phone . healty . I made up my mind to study English intensively untill I become fluent . stupit . : ( I understand what he worte , but I do n't find I am also interested in why they conquested South America . I am going to read the history of Laten America . Recentlly I finished a big exam and realized how important English is . Also , I want to be qualified for being an exchange student next year . My unforgetable winter cacation Although the cacation is over , the nice memories are still in my head . I feel so pround for the devolopment . I uplode some photos and share with my dear friends . If you want to kown more about , please write to me . The oridinal story comes from Heidis Lehr - und Wanderjahre . She granduated and has been a civil servant in another city , since then our love has been harder and harder to keep . As I guessed , she had read the SMSes saved in my cellphone and found out I was dating other girls and that I was contacting my ex - girlfriens and it had hurt her deeply . Below is more detailed information from Wikipedea I watched Oprah 's 2008 Stanford commencement address on onthat website . Fortunatelly , I got to know the lady who works at City Hall and helps Japanese who want to study at the base . She is soooo coporative and helpful . Actually it costs a lot of money to pay the tguition and fees . But I also thought it might be a great chance to stuyd in REAL AMERICA without leaving Japan . Everything hides in the deep foerst I 've been enving those who are able to model as 3D models with beautiful curves . I believe that is a nessesary skill for an industrial designer . I have n't log in to Lang - 8 for more than 3 months , because I spent more time on daning in my spare time . I 'm really gratefull to you People want thier life to be special and want to live differently than others . More and more people seem unsatisfied and think `` my life should not be like this . `` Though , they usually do n't act to protest society 's flawns and do not improve their own situaions . Team work is the most important thing in Japan and team peformance is highly esteemed . If somebody was infererior to others or imcompitent , I was blamed by the boss . I do n't write his advice here because I think everybody has a different situaton . But they spent too much time in perparing and , when they wanted to sing a song after the introduction , the music teacher asked them to stop . My doctore said Japan and South korea have the highest asthma mortality rate . The karaoke industry should introduce offcial music videos into the karaoke machine . I 've just watched Fulham vs Newcastle play a live match at Fuluham 's home studium . Then I will decide my favorite team and register as a member . Also , I do n't know as much about Enlish writing or English listening skills as other people do . Enjoy the nice summber weather ~ ~ Today I met the models the agency sent to our class , but I decided to not choso any of them . I know the fashion industry demands this extreme thiness , but I do n't think its beautiful . Mout Fuji is the highest mountain in Japan . I do n't know how to explain it ( or `` explain my feelings `` ) to my girlfrend . She said that people who only contect each other via messages and calls are silly . How to remmenber / memorize more words and ues them rightly There is a woman with her hans all over her on this sleeve . I 'm going to visit Equador next week . Also , I 'm a little nervous about A ( H1N1 ) virus , casue I have to take an airplae , which means they also use the airport which is one of the routes of infection annouced by most publc news media . Like human beings conqure the Black plague in the past . You can see beautiful views in the picturue . If there is interaction between characters , the system should consider all charactes . So beutiful and cute . I and my husband and my son have hevy hay fever . These days I 've beem thinking about dreams and visions of university students just like me . Living in this society , we face lots of problems and feel destrusted when we have no success or any kind of accomplishment . We aew too busy to remember that pure and noble reason why we are studying here and now . I sympathize with those young people who are meloancholy and depressed in this society . or I am just a slave of this cometitive society ? `` Whatever the situation is , I really want to find my true value and live authentically as myself ! Now , the Japanese goverment regulates imported rice by imposing high tariffs . I agree that the government shoud protect rice farmers from chep imported rice because Japonica rice is definitely better than imported rice . Recentry I have been feeling something strange . When I woke up and looked at the clook , I was surprised . Its script is very good and the designs of the * other * planets , alians and vehicles are wonderful . But when I want to pick it up , I find it really diffcult to balance these two languages - - - Japanese and English well . Sometimes I even ask myself whether I have the ability to aquire these two languages at the same time . It is sooo fun and I think it 's easy . And pronunciations are easy for Japanese , grammer is similar to English . For this porpose , I should study hard and work hard for travel enpenses ! ! I lost the name of the person who sent me a fraind request . If you see my diary , please send me a fraind request again ! But I do n't think the following ones are correct , though the slimilar forms ( e ) and ( f ) are natural sounding . Although I did not believe in his existanse until watching this , Superman exists in the world ! Thanks to him , I get to believe that there are a lot of things which are beyond our imagination in the world . I always think that relationships with peole are difficult . I 'm going to the liberary this afternoon . Of course , not only books are there but it 's also a confortable plase to me . Hattrikid is one of my Lang - 8 friends . About the animation : Fullmetal Alcheminist I watched a very popular animation program in Japan called `` Fullmetal Alcheminist `` with my children . It includes the human 's carma ( desire to reunion with lost mother ) , the Seven Sins and the war generated from the worship etc . Especially , I ca n't get one woefull image out of my mind : it 's the image of the chimera animal made from a innocent girl and her big pet dog . I do n't think this is specific thing becasue this is just literally talking , not some sort of speech or presentation . That 's why I sometime hesitate to talk in a class , trying not to making mistakes and be humilliated , which I think is just lazy as well . I think this is a hilarious show where a bunch of guys and girls hang out together and have a life filled with comedy and other ridiculosity things . As a man , he shoule compromise a bit . but he is so bad tempered and irrtable that I ca n't bear it . Thanhk you very much . A large portion of new games are released on PSP or Nintend DS . I remembered that I need to go to the supermarket to shop with friends . We will eat steamboat tonigt at home and will play cards and mahjong . He is a very famouse korean actor . He is good perpormer , especially to expresss setive emotion . the play is so famouse in Korea . My frieds are not interested in plays T ^ T I did n't knnow what trust is . I gurantee that nobody will find these bodies unless the landform is changed extensively by something . Finally , I estblished my objective to major in history . I will be going to canada to study for one year in augest . I do n't know why I had to see such dreams , but when I was dreaming , I had many things to doo , more importantly a deadline was threatened . I was exhausted beacuse I moved the office 's things all day long . That 's a freshing feeling for me though . I just finished taking shawer . I met such lovely friends from all over the world who I woudl n't have met if I had n't come here . I was really really greatful that I met them . . He has to find another job in this desparate moment . My wife took child - care leave , but she went back to her job in Fevruary , so we have had less time to take care of the children than before . Now I have complete some of my tasks , I wish I could wirte in my journal and proof read my Lang8 friend 's journal like before . There are meny shopping centers . Everything was very dericious . On the last day , my friends cereblated my birthday . They held a birthday pirty for me . We grank Makgeolli and ate cake ! ! Every seane is actually real ! ! Thisfilm has many ironic and humourous messagesdealing with celebrities , eco business , and homosexality . It is very direct , so people under 15 years old can not wath this movie in Japan . He can speak Deutsh fruently , andwhen he spoke English in the movie he had a Germanish accent . Oh , I 've quite forgotten to write `` every little helps `` in my firsy journal ! Nice to meet you all & yorosiku onegaisimas ! ! Anyawy , This Saturday is my school festival . I 'm a leader of the Inhwa herald , our English newspaper culb . I 've been studying English for several years , but there are really few oppotunities for me , like most Japanese people , to write in English and use English in conversation . I really need to brush up on my English , and it would be a great help if you correct my Emglish . Althoug I had a bad score in Economics , I still got a second chance in my cram school exam . When I was in Tokyo , my sons went to school and to their football clubs by theirselves . Every time I listen to my voice , I feel very embarrased by my English , my way of talking , and my voice itself . His physical condition has recoverd . First , I have to do exercie evryday . Apparently I threw it away when I was sleeping . It was uncomfotable because I had a stuffy nose . I expect CNN is very difficult , extreamly hard , smashing me . 2 . ( which is a better sentenc ? ? ) Is there any grammer mistakes in the following dialoge But I am not sure what my atitude made them angy . I explained to the people who came for the first time as an experiencer worker . When they were talking in English , their talking spead was so fast that I could hardly understand e what they were talking about . I 've not dicided yet . I do n't understand why my alram did n't work . I have no idear about it ! Hong Kong ( ese ) people speak Catonese too . This spring , Japan is very hot in comperison with last year . My wife and I really are big funs of it and my wife named our dog `` Hal `` after the super computer in this movie . That iwas why the students had complained to me about the contents and direction of my class . amazaing ! Cheristmas day , I went to watch illuminations in Roppongi and omotesando with my friends . I think Melbourne 's enviorment is very suitbal for living . cosmestic surgery If the cosmestic surgery is able to remove the complex of appearance , they will be able to regain their confidence I think cosmestic surgery is good . Maybe it 's their culture , so if you want going to Hong Knog you had better do n't mind it . In Hong Kong , my strongest impressional is the shopping malls , outlets and night places , especially the night places , so beautiful and so good , it 's the most beautiful night place I have seen . The KTX ( Korea Train Express ) ran very fast at super superhigh speed , approximately 300 km / hr . Thanks to everyone who correted my poor english / The Frist time I saw the movie was when I was a high school student . I like cooking various soye - bean milk ; sometimes I put some red dates into it , and sometimes I mix it with a little black rice , still oat , ormosia , black sesame . . . I have to say my mother is an ace food buyier . Morever , undergrade students come too ! Be careful with Ninjya , thiugh you ca n't lol ( another typographical error ) All restaurants in the huge walterfront area were reserved for us . I have two more choises which are to use the bus or to use the train , but the buses run infrequently near my house and it takes time to walk from my place to the nearest station . There are a lot of buildings which I think are Europian ( ? ) Mom is so talkaive that she is always talking to me . In Japan , we have a holiday for three days straight this weekend ! However , highway trafic will be very heavy and most highway tolls will be the maximum of 1000 yen because of the holiday ! So I will stay home this weekend . And his daughter is pazzling . . . I should wait until my proffesor explains the meaning of this novel . I have been studying English for 3 years in Japan but I have only been to hawai . Personly , l do n't like living in New Zealand . When you look up a word in this dictionary , it always gives you a clear definision of the word in a user - friendly layout . I used to use a Japanese - English one ( and addmittedly still use it from time to time ) , but now I usually use the English - English one . This is because I find that it is a more efficient and interesting way of learning a language to read the definision of each word in its original language . Beaside this , the more harder part in the English language is the pronuntation ( talk ) , the combinations of characters do not have the same sound that I can find in my native language and the same combination have a different pronunciation in others words , this is a nightmare for me . I hope lang - 8 and all their wonderfull people help me to improve my communication skills . What Im am expecting from this post is to know how I am doing with my grammar , my bocabulary , and my english expresion . This morning I went to work , my fater has a plece inside the local market so I go there and work as the casher . When I am at work there is not much to do , so I pick up my notebook and start to practice my hiragana / katakana , I hope some day be as good at that , so that I would go to Japan to sharpen my skills , my all life my dream was to work in internacional business and to be working all over the world , but now it seems so much like a dream , that much of the time I feel down unmotivated . Getting back to the main point , after I finished my work at my fathers place I took my computer and watched some anime material I did have in . Afterwards I met my friends , at a movie theater to see the movie `` monsters vs alliens `` . The movie was cool and perhaps had some random tophics in it . My boyfriend is an Amarican . In the wake of big myhem like september 11th , Japan 's security level was leveraged especially at the airport so as to take precautins to prevent violence swiftly . Sherlock and his ols friend Dr . Waston spent many hours looking in the mud on Laver Gill Moor . Waston thought it was not possible to find the answers , but Sherlock thought every mystery has an answer . What a long time agao . I did n't get back untile 9 PM last night . I want to watch more movies and dramas from foreign contrys . I know nothing about the relationship between men and women in foreign countires . But actually we were totally chiken , even though some woman passed by , We did nothing . also if you are learning Korean , let 's be a freind with each other Jessica Alba and Michelle rodrigus appeared in Machete . Becuase she was younger than me , I paid for the meal . Although we only had Fried Dumplings and some noodles , it was more expernsive than I had expected . Prease answer . What do you think about the difference between spending about a hunred thousand vnd travelling by bike and paying only 50000 vnd for a commuter ticket . Futhermore , if you travel by bus , you do n't have to wait in line to buy a parking ticket , or pay a fine because you went through a red light or were riding without a safety helmet . I used to see some terrible bike accidents so maybe travellling by bus is safer . Besides , when the weather is bad - too hot or too cold - choosing the bus for travelling is resonable . In the ( translation to ) portugues , all these sentences are right . That 's why Present Continuous and Presente Simple are so tricky for us , brazilians . I think I could not lose weight becasue I already had rice and coke as well as pizza at lunch time . In spite of the rain , I have a graet passion for Archery . . . . I have n't been ablo to see her for a few days . Also , it is still connected to a worker 's promotion or career track after enterning the company . I know the governer of Miyazaki used to be a comedian , but after studying politics at Waseda University , he was elected as a governer . I think the media 's influence was inportant for him because if he was not well known as a comedian , he would not be elected as ( a ) governer . In Japane most people are punctual and honest . Last week , I went on a picnic and ate barbecue at a restrurant It exceeded 30 degrees Celicius today . Today I found a news article which was written about the Erupean payment system . Receently , I have beenlooking for payment services abroad for my buisiness . That white paper is convinient for me . He ca n't speak in complate sentences . poor weather forcast in Shanghai The weather forcast was totally wrong . I 'd like to make a good sentance , but it is not easy . I 'm biginner of sutdying English . In various business sence , English ability has been requied recently > . < But it was too late perhaps , they did n't give me anithing . Even if my brain was not totaly in it 's place , I was still able to do a 20 Japanese character study instead of the required 30 . We will have an orvernight stay in a traditional Japanese hotel ( Ryokan ) . Nagoya Granpus climed their first J - League title yesterday . Cororado Rapids got their first title of MLS on the same day . Thank you for readnig this ! Japanese people are adent insect fans I saw this story in a Japanese jaurnal . Yangyang felt guily for not staying at home at the time when there was a fire . The wall is a wall around myself , the river is a river that is flowing in myself , and the smoke is smoke from burning myseif . His pieces were ( are ? ) displayed at Yokohama triennale . I study Italian too . I feel that this language is fresh because I have studied Italian forthree manths . Those sandwiches are shawirma made with chicken in a special way . The last one is baqlawa . As it turned out , my anxiety was n't justufied , and the music intrigued me after a few minutes of listening . I had n't noticed any sharp changes of dynamics like an Opeth and dynamics changes so smooth that heavy fragments are separeted by only a little ( small ? ) changes of tone of instruments and a particular emphasis in the drummer 's rhytm . In my optiton , the best track on this album is ' Not Unlike the Waves ' . And you want to return to this world agait and again . . . I 've just moved here at the end of Auguest . - > August I 'm studing my spanish textbook . . Last semester , my Spanish professor said the midterm would be very difficult and the final exam , which is weighted strongly in my fnal semester grade , would be very easy . Today is sooo hot , even at night , it still feels hot in my room . `` Dradon Ball Z `` Breathing Exercize I attended a breathing exercize class called `` KIKO `` . It is like Yoga but a bit diffrent . She has been doing this for 9 years at another trainin hall in Osaka , which is two hours by train . so it ' sa little starange . Frist day The beach was crowded with visiter . first , they are going to lose thier confidence . Thanksto evryone who edits this . My favorite American TV show is Frends . We ejoyed swimming and doing other activities . E - mai I am doing my best ( watashi ha ganbare ) , and I am really enjoing it , no matter if thing not always go as smooth as I can wish . And we can manage to solute the problem of low birthdate . I have worked in this company for two years after graduation , This company is a state company , no exployees ever worries of being out of work . I do n't how to work in this company , I am only in the beginning of my work time , maybe I should change my perspective on working , Unlike other older exployees I should always remmber that I am young , I need deal with Then , I jumped becouse I felt swetty . This light has the performance of low energy and high blightness . If there is the controller to change the blightness , even better . I finished reading `` How Sratbucks saved my life `` today . He started cleaning the store toilet and bagan to learn valuable things through his job and finally found his true happiness in his new job and unfamillier environment . I like both of ficition and non - fiction ! Correct feedback helps students to implove . how diffrent are feedback and assessment in English ? the temprature is getting lower and lower . Past experence ( Please someone help me . I am going to write this topic in this Friday 's exam . ) I walked through the entrace of the alley to wait for a motorbike taxi but a minibus came instead and I decided to get in . Seattle Mariners were / went againsttheLos Losangels Angels . But after I understand the first sentence , thier second one has already been said . Afterward my lunch , I went to an rental video shop and rented 5 DVD . Whent the concert started , I did n't know most of the songs and I wondered why there were 5 people on - stage . I work for a pharmaceutical campany , so sometimes I have to use English for my business . Anyway for the first time I visited church , I felt that there was something there which I had been eagering to have , eager to know . And I would like to improve my English writing ability to pass the intermedia level of General English Proficiency Test . We were completly taken aback , but we decided to search for the wallet on the same pavement on which we had ran . The comapny produces mostly cosmetic products . I may go on business trips to the overseas branch someday , by some chance , I may be transfed there for a while . But everyday this bottle tenaciously appears somewhere in the race , and then disappears the next morment . I paied 4935 for it The office was quiest because of the holiday so we ate out at lunch , My new friend messesge me `` happy languege `` . I am very tired noww . Though Japanese are known to like fish extremely much , Sakanakun particullary has an extensive knowledge about fish . Japanese chiks are easy targets I see so many Japanese chiks in the city . Getting married with anAustralian guy is aneasy way to get PR in Australia , so some Japanese chiks try to win over Australian guys . Japanese chiks are popular in Australia , but it does n't mean Japanese chiks are beautiful . Those Japanese chiks probablythink `` if we can get Australian boyfriends , we could easily study English and get PR . It 's the easiest way to master English ! `` It 's rediculous , There is no `` shortest way `` to master another language . They ca n't understand that . Most Japanese chiks get dumped by aus guys . Of course those bithes thenlook for theirnext partners and then get dumped again later lol I am really disappointed with ( by ) Japanese people who live in sydney , especially some of the chiks . It is very populer in Jaapan . I already heard the news from his mather 's greeting card . He wore the costume of an anime characer . It was broradcasting on Sunday in the late afternoon . But I was out just then , so I copyed it . Seeing people falling down from the skyscrapers was horrable . BTW I have a grammetical question , which one is correct ? based on what grammetical rule ? Alcohol and Drung Education Program To continue someting will bring you great power . For everything , to contine is most important thing . For example , walking for helth , learning foreign language , etc . . ! But I do n't think I can get it , because it 's a littile difficult for me . This day me and my fammilly was on picnic and after that , when we have been going home by car , my dad gave me 1 lesson of driving car . Even though I 'm Korean , I am staying in INIDIA right now for studying abroad . I know I have problems with grammar , especially with phrazal verbs and idioms . I think I will rewrite it here and find someone whou can explain it to me . Have you seen Japanese mobile phones in Japane ? Eva 's new movie will be released this summer , and the charactors use this phone in the movie . My breakfast for this morning was protain powder mixed with water . I graduated from colleage and majoed in radiology . Currently , I am workin in the cardiac and vascular center at Samsung Medical Center . I am an outgoing person who has a positive atitude and a sense of humor . I want to make many international friends and have good realation with them . I 'll gradurate Univercity next year . And , I have been singing at an acappella group during my univercity life . In fact , seniorities born after World War II , in the generation of babyboomers , will rapidly enter their aging years in the near future . Meanwhile , the birthrate in Japan is declining . Anyhow , this inclination will possibly put a heavy burdene on the next generation 's shoulder . I think the elderly people will be expected to work into their later years to reduce the burdene on the society . I 'm always thinking of them every day . Even though we have never seen each other in real life , we always have a wonderful time together on Skype , MSN and on our webcame since I came to Lang - 8 and met them . My day is really wonderful . Actually , when I come home I need to trun on my computer before I take a bath because I would like to see them and read their comments on my page . my wonderful frinds . `` Because witting the article is difficule , I do n't know which way is right . I heard that he chose to kill himnself last Friday . Now I have only half a containner , about 10 liters . Recentry I 've been interested in martial arts . I hope someday to challange . Goning to the sea I want to speak English so I deceided to write at Lang - 8 in English from now on . Lasr weekend I had a drink with one of my old friends . Sencond , I have to wash our dishes after having dinner . I went to the Toba aqualium and Ise temple . I feel like I can be a good mom . ( No , I can not say this only because of tha lunch box haha ) But many people adviced him not to do it . The news was brordcasted all over the world and he delivered his speech in English . I gogled , rechecked on the web and found it on Youtube . Lots of novelists like me tend to choose the oppsite decision . I wish the war disappered and a peacefull world will arrive before long . Alan gives a long closing which is passionate and - - - like shirley said - - - always makes people find the darker side of themselve . I 've seen a Japanese translater using this show for continued learning of English . Keeping a diary is a good babit . becas my friend has come back from Japan . I have not eatten rice yet . I am bit hangry . I did not plan a costom for the party . In conclution , English is marvelous ! Today , I had a New Yea ' rs party with my collleagu in my company . But , I had verry happy time at the New Year 's party . Alcohol makes peaple happy . we ate luch there . I was disapointed about that . It was a geart time . But , I am double majoring in mecanical ( I think it should be English literature or English educatinal , right ? but , at my uni it is just Enlgish . . To coordinate the work of TA evaluation and TA certificate : TA Evaluation Forms start to condut during the 13th of Dec . After arriving at the station , we went to the hotel we had a reservation with frist , and checked in , then we went to another hotel to have lunch , of course my wife had found this . So I canceld one dolce . After the meal , we went on a strall around San Marco , which is the symbol of Venice , I 'll talk about it next time . Look at this crip , please : D In China , evety student in a university has to take the test . But the firts book is a real autobiography of Mineko Iwasaki and the second one is just fiction . Then we gradually realized that the shake was weired . Our manager murmured `` It 's weired . . . . However , when it comes to our office , some windows and doors were destroid by the quake . Tokyo Electric Company decided to cut the power tomorrow so that the newclear plants in Fukushima will be able to recover . . . . My hoby is listening to music . I 'm a first year Univercity student . At first , we did n't even know how to start a conversation because we 've never had a silmilar experience before . Yesterday 's Otumai was gizzard , fried chiken , okonomiyaki , and something else . But , I do not have an interessing theme . I thounght I could translate my favorite Japanese music ! Here in Miyagi , we had few utilities - no water or gus . In particular , there were wide desks for directors with tranparent glass dividers . I am not goint to criticise my company 's facilities but just want to compare them . I hope you take advantage ; I hope you see things that surprise you , I hope you feel things that you have never felt , I hpe you meet people with different opinions , I hope you are proud of your life ; if you are n't , I hope you have the strength and you can begin it again . `` The Curious Case of Benjamin Buton I was shoked by what she said . Today is mother 's day , so I went to a deparetment store with my wife to buy a present for my mother . because suffed animal suits are a little bit childish . Today I 'll writte about my family . Today I had a class about edcation . We do not have to paln . I have 4 family members : my father , mother and littel brother . My father is motherate , he is not so agreeable . My littel brother is active , he likes playing soccer . in the afternoon , my anut asked us to visit her villa . So my company desided tomorrow will be a holiday . Tommorow is opening day at Sun Peaks Resort for winter lift operetions ! Of course I 'll go snowboarding tommorow . Today was a dayoff off . I enjoied this summer ! The first day , I went there at midnaght . But , I akways think that it would be troublesome for them . But when I see this festival I foget my boredom . My daughter likes to put syrop on vanilla ice cream . Day by day , it becomes well - droped . But still to read writing by non - native speakers , studing Japanese , helps me to understand Japanese grammar ( more ) clearly and gives me the joy of discovering how Japanese is learned / acquired / thought of by another culture . Anyway , we will see . I 'm only sure of one thing , that I will keep practicing my English with or without Microsot : ) I met another Japanese recruting company 's staff to arrange job interviews in Bugis ( a name of a place ) . He told me he would want to know my English skills , so we had a conversation in English for around 5 minites . I could arrange interveiws for Japanese and foreign companies . First , the upside to the urbanizaion is that it makes our lives convenient . I was so excieted and expecting a good ending but . . . This Saturdey I took part in an American contest FLEX consisting of three rounds . Now I have no idea what to write ) ) ) Next time , I think , I 'll write smth more valuable . Blue tinctured cartain is popular . It 's similar to Japanese Karate , but I ca n't discern their difference because I even do n't know about Katare that much . , for example , kindergarden ( My daughter 's starting kindergarden in a year and a half ) , favorite foods ( Our children are too picky about what they eat ) , etc . . . To couqure the British accent , I have started to watch British dramas I teach physics , Ana teaches Japanese , Ega teaches Indonese , and Yanti teaches music . Learn something from the falut instead of blaming yourself . I have to write an eesay in about 200 words . Some are popullar landmarks and have many people visit every day . We will learn by chatting about different topics and news headlines ( stories ) . It 's not a vedio chat but only typing . because My computer 's output broke down and I can only hear other people 's voices and you wo n't be able to hear mine . I think it 's unfortunate , so we will learn by typing . Native English speakers who just want to know the the different thoughts between Eastern and Western cultures by disggusting international issues and everyday news . I feel we should treasure Japanes culturs . I have studied English hard , but I thought that it was regrettably neangless if I could n't use it . In Japan , for example , when the total amount is 900 yen , and I receive 1000 yen , I will say that I return to you 100 yen or somothing of the sort . But , I 'm feeling that to increase my English skills , especialy listening is difficult for me . I forrowed her to see a specific house for rent . I like leanring Japaness and English , reading and traveling in my free time . Today I swimmed with Manatees in Crystal river , it was second time I 've seen them . Manatees are considered as an origine of mermaid . She told me to searcy for `` piano `` and song names on Youtube , and that I could find a lot of clips to teach me how to do it . This car is n't good for parentsI . I do n't know much about cars , so I do n't know whether this car is expensive or not . To tell you the truth , I was totally intererted in the snowboarding events in this year 's Olympics . but recentley I did n't study that much . A big earhquake occurred yesterday . When I asked my friend `` Who is Jeles `` , she loughed at me . It really diferent me because I never to make up . . I should be going to wash my dresses for tomorow Today , I had a practice with my vioiln classmates . ( How can I say this ? ? ) We played ' Edelweiss ' and some other songs . becuse I think it maybe better to study English there , Originay it was Chinese food . And then , recently a new tipe of Ramen appears . Tsukemen is different from ramen , the soupe and noodles are served separately . However , learning about this is very reasonable ( understandable ) if you understand the simillarity between the Vietnam War and the Korean War . They knew all the military secrets of South Viet . What this is telling me is that there must be a lof of spies in South Korea as well . I was an abacus teacher at cram shcool at that time , so I decided to email her . Finally , we have exchanged hobbies successfully . My sister likes language exchanges and studying more than I do . I like hobby exchanges or taking part in diffetent kinds of activities . Why are double teeth considerd charming in Japan ? I prefer an ( in person ) intervew over a written exam , because grammatical mistakes in the interview are gone in a moment , but my written exam paper with many mistakes will exsists until we are all familiar with each other . Thirdly , they recommend that I should use `` I `` insted of `` we `` . I would like to say `` we acomplished the project `` or `` I acomplished the project as a member of a working team `` . I know that there are many cultural diffrences between Europe and Japan . And the cultural diffrences have influenced my own way of thinking . Could you please give me your suggestions franckly , and let me know if the suggestions on the web site are true or not ? If I had a girlfriend , I would travel to a foreign country tihs year . . . Everything is so starange . I thought the river is very polluted , however , frogs still can exeists under those conditions . I graped the frog and placed it in a box . This is my first time to write a Lnng - 8 diary . I vistied Nijojo Castle as part of a Kyoto bus tour . Inseide , the castle is so dim that we could barely see the wall and ceiling pictures . If we had had sunny weather , we could have ejoyed walking around much more . Are these sentenses correct ? Please teach me , are these sentenses correct ? Tomorrow is Lovor thanksgiving Day in Japan ^ ^ I think it is very wastful to live all my life here . It is a greatful opportunity to work in a country which speaks a different language . Language is wounderful way to have contact with foreign people . I cound n't get up However , I can not proctice pronunciation on a train . Hi , I 'm a new exchage student of Aalto Univ . in Helsinki . If you find a grammatical falut , just pinch it out please . I have n't met my friend recentry , so I was happy to see her . This fucture is kind of horrorific . There seems to be no moral in the story , but you could find what the promblems in Japan are . Hello eveyone ! ! I worked overtim last weekend I was very satisfacted . Mario , Pokemon and Saler Moon : > The shipping method was DHL premire shipping mail . At the benning of our trip , I had a very nice time with them but on the last day of our trip , we got into a rollover accident . Nobody was n't hurt , but I worried a lot because that car was lented and we were driving it . The moment I noticed like this , I decided to find a differnt sport . I recently read a book about traslate and language . At the beggining we were going to go only to New York and stay there for a month , but my girlfriend 's father lives in Miami . We visited Maimi Beach , with its wonderful white sand and cristalline water , _ and realished wonderful food , because my girlfriend 's father is a great cook . To sum up , I have had a beatiful experience with excellent company and visiting excellent places . I am suprised , so I decide to go for a swim too . But the weather was rainning , I give up . It is quite difficulte . Though it has some words written like Chinese words but they have different meanings and pronounciation . I graduated from junier high school in june . This decision will infuence my future forever , so I must be very careful . One joke fom my friend I guess my push ups and situps was bad , and I was very suprise . I listened her vocie and I missed her . `` I 'm afrid I could not afford this in Japan ! ! ! Now I am an undergradute in I logged into my acount on Lang - 8 . In the near future I want to visit many counrites . old korea people think that the son is important . Since I could n't understand anything , I do n't know waht should I do during the class . She knows that I want to improve my Japanese and my English , so she introude me to this webside . basketball funs . Someday I want to taravel around the world . wroten by Ted Chiang . I 'm interested in the issues about time tralve mentioned in this story . This site is so amazing that I continu to write diary entries . I 'm wondering if I should keep studying conversiation more , or change subjects . I have 4 classes , and all subjects are conversiation . Other students usually covere subjects . I study English and Chinese at the univercity in Japan . ayakumaru or machigaeru - to be mistaken agemaru - to gather It is possible to arange one more ticket for `` trance energy `` for one of the girls in my house . I wish that she would come with me becuse we will be doing something together . I 'm so exsiting . Hello friends , this vedio . This is the frist time I have tried to upload anything , so it 's a bad vedio but just a test . I stayed at home with my nephew and one of my nephew 's use my telephone to record the vedio . I saw her for the firtst time in six years . sonebody just corrected my diary , but I do n't know how to say thank you . Algumas vezes eu jugo Dance Dance Revolution . There are 50 poems with pictures companying them . I wil try hard . It 's 3 US $ for 2 different movies but the equipment is not as goos as that at the first - run theaters . Hape I will get good news ! I 'm Japanse . However , my English vocaburary is very limited . Readint is the best way for me to improve my vocabulary . I found a potential land parcel in an advertisement , and visted a real estate company . It is a very beautiful place having a merveous landscape . At that time , we went from charch to the host family ` s house . We were halfway from charch to their house I was rearly surprised . It is the first merverous sky I have seen like that . I will contact student of various contries . I think taht it is important for me to concern world education . Since I want to be an exchange student in Swiden , I must improve my spkoen English . As a stomach doctor , my little uncle who is also my grandma 's son , gave her a series of madicines , and hoped she could survive another five years or more . I found my favorit song again , but the video features a defferent player . . He has really nifty fingers when playing the gutar . Tha mi ag ionnsaich feallsanachd . I am a Urdu speakres , but I want to know how I can speak Farsi . Some roads do n't have a cycleload / bike lane or a sidewalk . I need another sence of driving in Japan . This afternoon , I used a subway to go to the cener of my city . I wonder if public manners for young girils is chainging I live in a dorm and I have four roommea . It takes about 20 minnutues by car . Therfore , I have to ask someone who has a car to take us to the grocery shop if we need some fresh food , like vegitables , fruits , or meat . Also , we ate a many kinds of food , for example Yakisoba , Tamasen , banana which coverd with chocolate . . etc . We enjyoed a school festival . And we watched Michael jacson 's movie `` This is it `` . Actually , I did n't know details about Mickel jackson until he died . Becouse I mainly liked rock music . `` Mickael is great . `` Mathematics , `` `` Physical Excersices , `` `` Music `` or `` Geography ? `` ( They all ) These are only the titles of subjects , but when you do n't know at least one of them , I think it may cause you a good deal of frastlation in a Japanese conversations because you ca n't understand / make yourself understood immediately . There ara a lot of international student , so I want to be friends with them . When I took the train , I saw a forigners boy . Because he and I have matual friends who came from Europe . Accoording to my memory , the bears moved widely but repeatedly visited the same areas . I usally spend my free time playing games , watching tv sho , go to the movies , and when I was in Loas , I met 2 foreigners and we became good friends . They knew some Japanese Many kinds of people had different kinds of roles in the Railload , including preachers , politicians , farmers and storekeepers . And just 30 minuits . well , I do n't get tooo much , but it 's stil good deal : D If it is possible , I will write my diary entry using at least one new unkown word in every sentence . The usual rules of time and spase do n't function in this House . There 's nothing disgasting or compassionate in the novel . Usualy I do n't reread books , because I 'm always in a hurry to read something new . They were very derisious ! ! For xeample . . . . . . This grammer is difficult . It is straight and has a wide sidewalk , I saw some people who were either walking , ranning or walking with their dogs . Birds were singing and the frowers bloomed with the morning dew . I 've been reading The Wondeful wizeard of Oz . does that mean that Dorythy finally caught Toto ? Shoking News We also joined in something similar ( Some events were held to encorage the audience in the middle of the show ) . because I had stey up late yesterday . and I had got myself for net surfine . ^ ^ Since then , I sometimes listen to my favorite wastern music from my ipot when I go to school . Thanks to this mathod , my listening ablity became greatly improved . Now , I 'm still doing it and I wanted to improve my writing ablity through this site , so I 'm writing this diary . After I talked her , I realized she is billiant , talented , I enjoyed their beaches , and I missed a lot with their lenguage . I was speaking half in Spanihs , half in Portugese , so I was n't understood by anybody . Now I 'm back , and have to accomodate my lenguage again . But , It did n't really occure to me to go abroad . It explesses the mind of the speakers . Ocassionally , I am unsure how to say it ( correctly ? ) , It was cilly today and I 'm sleepy now like I was yestarday . She said to me `` Please give me information about Singapoer if you can get a job there , because I dont want to go back to Japan `` . if you are in Singapoer , give me information about that `` So , I politely and immediately answered her `` I do n't have any intentions to give you any useful information about Singapore , go to hell you fat bitch . I hate people who laugh at others who are trying to achive something difficult `` . Could you explein it to me , please ? It was delisious ! Fall is comming ~ When you started there was still comunism , even if it was the beginning of the Perestroyka era . But I 'm noto that good at writing . It was a procession when I went to my favoriate ramen store . This store is small and many people wating for me to finish my ramen . Next , it is a very low price and we can take trains all day exept express trains . I use many of google 's aplications and services . But , he & I will both make ture dreams come true . Althought it 's always funny to play with 'em it 's often very tiring and today we played at a playground near my flat all day long even though it was freezing cold ! The legal department is located in Germany , the headquarters in Swizerland . Last night , I was looking at the TV program - the hundred munite talk about the MINERBA 's detention sensation . Now , the major news is about Mineraba in South Korea . Although my Enlish course has finished a long time ago , I did n't want to stop learning . My friends and teachers from Lang - 8 , would you please give me some explaination ? She 's on holidey in France . 1 ) What 's he studing ? I also like Eva , but I watched the whole story 34 years ago and now I 've fogotten the details . I had a great time with my family duaring the year - end and New Year holidays . We had a delicious japanese traditional cuisine ( osechi - ryouri ) and went to shrine and tenple . My conpany started today . The pasta 's sause is ratatouille . But I ca n't see my improvements . I was dreaming I could speak English fluntly , but it 's still a dream which I ca n't touch . I live in Northshore . Northshore is a very quiet palce , especially at night . I guess in some coutry it is morning or noon now . `` Torchwood `` is a very unique sci - fi drama and contains very adulty things such as swearing , indiscriminate snogging and shagging , and viorence . and I quickly dicided to fly over to the U . People who had lost all their money became alkoholics or started thinking about suicide . I have to practice alots X ) Yesturday , I made a idiom thing that was when I went out , and I forgot that I was More and more Chinese like to travel around the country or go aboad . Yes , I 'm defnitly happy tonight , I 'm going to play tonight ( soccer of course ) , I 'm sure you know that in Europe , soccer is the most popular sport All European people have a passion for soocer , but none like Italian people . For some it is not simply a sport , but a religion , in fact every day and especially every Monday you can find a lot people , in offices , in coffe bars , on buses , everywhere you can find someone talking about their own team 's match . A beatiful actress passed away This is a nenowened line that she said in an alcoholic beverage commercial on TV . I 'm going to see the movie ' Social netowork ' tonight at 10 o ' clock . My English teacear said the same thing as me . After the party ended , I went to my cousin 's attlier to meet my sister . I am lerning the English language ! ! ! ! My favorite painring is ' Fat Monarisa ' . I painted it by copying Fernando Botero 's style . I went to vitsit my uncle . He is sick and he ca n't move his body because last year he fell at his house . he is really nice . sometimes when I have a proble I really like to ask him , because he can help me solve the problem . I looked at youtube for a long time about the animail and fish and I felt happy to watch it . thak you very much . Start Writing dialy in English It is very nice wheather , so today is a perfect day for me to just be lazy . It is difficult to write a long sentense in English . elementary school , middle school , high shcool . . My destination would be Afrika , needless to say . Now , the mobiel - site is important for E - commerce in Japan . Describe a person who has a good leadship . This time the big earthquake had hit mainly the northeastern district and Knato district . Leraning other language is difficult for me . So I studies English for three or four hours a day since I started lerning English . I decided to start keeping this diary in order to improve my English and probably to find new foreing friends . In my institute I study two foreing languages : English and Chinese . Will be waiting for your comments , corrections and enything else Class begins at 8 pm with ordinary conversation for a hour , then Bible study for 30 mins . but he had a chance to live another life and he chose to marrige . after I saw this movie , I graully took more care for my family . I like to watch American TV , and my favorite is desperate housewifves . I have a philipino English teacher named Nephelie . Even though I ask about English everyday , she just smil and answers my questions . I 'm sicerly thankful for her . I 've been having too much suger recently . Today , my friend and I will make a newspaper with this article in our English class , so I 'm very looking foward to doing it ! ! Yesterday , our univeristy held a graduation ceremony . unfortunatelly it rained , though . They were beutiful . Instead of competing against each other , they can achieve goals together which will shapen their skills and bring forth beneficial effects on their learning . Generally , it appears that online learning is a more advanced and fuitful tool for studying . All of his or her coworkers are busy all day long but they do n't konw what they are busy for . We always spend a lot of time confirming every detail and spending more enery than others to ccommunicate with other coworkers because he always gives us unclear tasks and seldom gives us enough support . There are four Saudi Arabian , three Korian , one Mexican and three Japanese in their class . I 'm learnnig English by watching House M . For some reason , I could n't sleep well last night . So this morning I was ver , ver sleepy . Tonigh , I want to sleep better . We talked adout each other . I 've never seen an Amenrican pop - corn maker cook , so it looked so interesting to me . I wondered if I could understand what they are talking and laughing totaly , it would be more fun . I 'm grateful if you make my English crrect . Lang - 8 is one of my challange to change my daily life . And just to make you smile I 'd like to put some funny children 's pictires here . Thank Godness . . The internet is very usefull , right ? ! Of course I had known about him , but the show told me that he was definetely one of the greatest baseball players ever . Istanbul splited by Bospurs I joined fido which is a canada cell phone company . It is very unconvinient and uneasy . Recentry , I neglected to study . I am listening to some piano pieces George Winston played , especialy the songs in his album `` Winter into Spring . `` Tset week It also mede me feel good . My newl computer We tald about cases of each country . I 'm warried and quarreled a little , because of sensitive problem . However I wiil go there someday ! I ues a pen when I write a diary . I do n't know what I want to be in th future . I added bacon and garic to them . This time , the drivers wer very cool ! I studied how to anwser CET - 6 papers , and found that English is more delicate than I ever knew ~ ^ _ ^ ~ I needed a break , so I worte a very short entry and wrote a Chinese prose poem ~ Because I fell asleep at 3 : 00 AM since three days ago ( but it was n't wise dicision ) . If someone misses a peroid of study , There is no way to wriggle out ! Today , I bouglit some dolls . However , very few Japanese people have such a long - term experience in the Staters . The reason why she likes them is that the first Japanese NBA player ' Yuta Tabuse ' was on the team and she is also a fan of Amar ' e Stoudmire . Who was in a good mood ? Who was positive , and who beuteful ? Will Suntory defeat Coka Cola or Nestle if this goes on ? Allow Me To Remaind You Yesterday , I tried making a silver juwel / jewelry from a silver clay . At the end of extra time , Japan finally scored a goal with a beutiful shoot and won the game . I 'm a big fan of soccer and I belonged to a succoer club when I was a student from elementary school to high school . Japan has now become the chanmpion in Asia . In Japan we usuary get into a bath after filling it halfway with warm water . Recentry I like going to the spa near my house . When I took one of my frigner friedn to spa , she blushed because people saw her naked . There were many foeighers and Japanese people there , Anyway I got 2 friends , one sweddish and one Japanese . After I came to Singapore , I have been lonly becase there are no friends in Singapore . Praying everyday was getting hader but I realized the heart of the Lord . I also live in Nagoya , therfore I ` m looking forward to seeing ( watching ) figure skating . Nowadays , since Kaiten - Zushi are spreaded all over Japan , we can eat Nigiri - Zushi at a rasonable price . Today we will have a birthday party for my firiend . It was in a Traffice jam , a terrible traffice jam . Our opponents were storong . I am the younster Finnaly the rainy season has begun in my city , after the long heat wave ! It 's so fresh on the street ) I 'm happy ! He was talktive and he talked to me a lot . I have a cat , a dog and two gebrils . They alwyes help me . thx for reading my stupid jornal , I 'm get better right now , thx for the medicine too ^ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ^ I do n't know how I can find freinds , or where I should write my entries to get some corrections . It 's increadably hot today ! She texed me yesterday that there is a test today and aked me the range , but I replied to her that I did n't know about any test . I tried to buy some alchool at CVS the other day , but they did n't accept my passport as an ID , because they only do that for Americans or Canadians . I think conservative clothes are always good if you are trying to give a good first impresson . so please hlep me . Do you have any sugestion so that I can make my dream come true ! ! ? ? I thoght the girl in the wedding was the most beautiful in her life . I hope that she and her husbund will be happy . Actially , my first aim was to support my friend Kostia when he tried to talk with Arina . But Karina , the Arina 's friend , was even cuter and more beautifull me ! That evening Kostia did n't succeed with his beloved Arina , unfortunatelly he was too shy and confused . santan and her hair is very messy . Why has no one corrected my previous jornal ? Usally , I do n't know what to write . . . This trainin program is a little hard on me physically . He sometimes DJs for just one houre . It 's only 29800 yen includ tax . I happend to meet my friend in the center of a city . Today , I happend to meet one of my friends who was one of my friends when I was in high school . Throughout your life , have n't you ever thought about why you have been able to meet the same people among your friends or aqueintances over and over again in different places such as in a big city , while you have not been able to meet other friends or aquaintances of yours at all ? Based on their reports , the pool ( algae plant ) which has 20000 ha and 1 meter depth could supply Japanese anual consumption of oil . I come from Taipai , and I 'm not student . My habits are playing basketball , using the computer ( facebookXD ) , reading some economial books and comic books , and see every kind of movies . He is docter who lives in the U . In two hours they did , but they were not unsatisfily ! I tried to make a short inpromptu speech with thanks for my foreign friends here on Lang - 8 . Maybe I 'm just feeling lonly . I , personally , felt that AVATAR 's story was okay , but the visuals and 3D tecnology make it worth seeing . I reccoment ( that ) you go see it . I will try to introduce to you the story of AVATAR briefly tommorow . Oficial Avatar Trailer female : I wanted to have my hair cut by a female whrn I went to have my hair cut . principal : The principle reson why Japanese people came to the current continent is because they were cheseing Monmos . After a long absense , I can wash my clothes . The big earthquake and tunami in winter destroyed many houses , buildings and cars etc . Unfortunately , the Hukushima nuclear plant was partially destroyed , too . I 'm happy gril , because there aregood people around me . Today , I was a cuple of minutes late to school because I got up later than usual . I should have reviewed the vocaburary before the quiz . I suffer from a lamguage barrier . I hope that next time I can speak english fluebtly . Since my ability of Emglish is improving , I do n't dislike it like as much anymore . What can I do to resovle this daily problem ? ( I 've ) Started to write a dialy in English . A few days ago , my friend and I went shopping and found that some foreigners were having coffee in Starbudks Coffee . It was brown ( in color ) . In this entry , I will tell you about my power point skil . This is a very famouse movie , so I think everybody already knows the story so I do n't need to explain it . I hardly ever listen to classcal music . We can go anywere without a car . Or they might stay at a cheaper capsule hotes . Can I say I cleand my room inside out ? I provided them with some technical support to help them pass an aduit ( like ISO9001 aduit ) . I was at the Shanghai railway station on Tuesday morning . Nanjing is not far . I spent two and half a hours on the train , had lanuch in Nanjing , and started my business in afternoon . After that , I go to bed at around 10 : 00 pm , thinking of tommorrow 's plan . If you selece me , you 'll never regret it . Now , I 'm living and studing in Germany . There are four subjects in this semaster . It is crunchy , yammy ! yammy ! I thought it 's a fine day to go cycling early in the moning . GDP is the abbreviation of Gross Domestis Product . That 's the best thing these thesedays . lol I wonder if I should play truant for the Bookkeeping exam . . . . no no ! no way ! ! I cant ! I have to get a license for bokkeeping . The factory is in the suburbs and far from the train staion . Firstly , I found that Tube in London is not so crawded even in the rush hours . Subways in Tokyo are very very crawded in rush hours . There are people distributing the newpaper near the station and we can get it . Unfortunately , I do n't have muy own a lot of colonial places to visit and many foreigns . My company 's main discription is listed below . 2 ) My company carries out transport of computers and accessary . It is somewhat ironic ; large amoung of money sleep in bank accounts but are pulled out again by criminals . She told me that she received a call from my husband , but it was quite bizzare . [ spelling ] Acutually , I 'm a Japanese high school student , so I study English everyday . At the moment , I was excited because it would be very usefle for me . I definately want to use this site , and will keep writing . I look foward to attending an English class every Thursday . One lady just returnd from her trip to Spain ! I hope that soon I can read English noval directly and speak English fluntly . Another earthquake just occured the day before yeasterday . Today , as the first haf year ends , I presented the report to the members . Then , I was released from this job finaly ! I live in Novosibirsk , if u know this is ituated in Russia . I 'm interested in it , because my english is not so well , as I need = ' ( I think , this language is very omportant in my future , for my education and especially for my career . I expect that will be very effctive for our freshmen . My hometown is very rural , so there are a lot of rice feeld . I personally think words have power , so I 'm carefull of what to say . But I realized that I 'm too carefull of what to say . My friend said `` Christo got angry with you , and you have to apology to him `` I 've been working hard latery in a guesthouse , on the night shift . However , I 've become relaxed and I can smile natulaly , Remembering this makes me feel like scrmnming , especially at night or when I feel depressed lol . I ohten feel that women 's job is more better than men . If women and men work together , we can build a bettter company , society and world . When I was 15 years old , I staied only a week by a home - stay . I could n't go to fomous plase . It 's interesting why I disided to go the UK though , since I dislike it here . I enjoy this life and sometimes I remenber what happened ten years ago . I realise , that there are maaany ways in which each person could increase his or her level of any language , but as I see it , this one is almost the best . It was a very secret catacumbas , where there are still . Please check my dialy and cheer me up ! ! I was informed that it was the last day to work at one of my jobs yesteday while I was there . I will try to keep this daiary , using a lot of words in the future . But , English is really dificult for me . . . It was heavy , even without french fries the double - decker humburger was enough to fill my stomach ' til the evening . Perhaps people find that it 's more healthy to eat natrue food and keep a healty lifestyle than eating processed health food and using health - related products nowadays so that they are not going to buy any health - related products . Although people in Plainsville have set off a boom in exercise and it factually promoted the bussiness in sports , it 's possible that people there are interested in pusue a good figure more than fitness . And the ' fitness for life ' program , which just mentioned the benefits of regular ecercise at an early age , may also lead to the improvement of bussiness in sports . First of all , if the costs of opening and operating a new store in Plainsville are very high , the ncomes might not exceed the expenditures . While considering the possibility that the people in Plainsville are loyal to local brands , new store would not be welcomed and accpected by the local people for that reason . I appreciate your answerings very much . I have only watched just five stories , but I 'm looking forward to waching the next story . I 'll clean my house and do the laudry , then I 'm going to watch them . It is decided by whther one 's mother tongue is Japanese or not . It took two days for me to finish `` Anne of Green Gables `` , a marvelous book imbued with natural beauty and gentelly expressed love for life . So I like to communicate with people ; - ) I 'm a pscifist , open minded , friendly and unique . I 'm a person who loves nature and helth . But I promise to be more carefull = ) I still remember that in the first English class she responsed to our doubtful eyes that she always dressed casually and looks like a student . I took a lot of time to write my adiary . The sun was rising up gehind the Angkor Wat . The image of the Angkor Wat was refrected on the surfaces of the ponds . I 'm a Japanese studyinf English in Japan . I am a person who has no religion ( I am not a Buddhistic or Christan ) so when bad things happen I do n't blame anyone . These three words are all uncountable nouns : fish , damage , and advie . My daugher is two year 's old . This is the best way to learn a foreigne language . In Japan , Japanese use dish dishingwash liquid on the dishes and then wash them off with water . I distincly remember the first night when I came to Australia , and had dinner with Aussie and saw her washing the dishes . We attended this evnt and opened a small shop for selling some goods . My friend broke up with her boyfrend , because she doesn ` t love him anymore . If a young person sits in these seats , they will most likely be criticized by someone esle . There was a bic issue here in Korea about a woman who did n't give up her seat and even shouted at an older person . Because I am going to go to the Philipine to volunteer in Sep , 2009 . I saw the movie `` King 's Speech `` last Sundy . I started taking so much time to find apporriate words and sometimes never find them . I 'm still aliving . I 'll be really muscler . I have known that the ditails about what will the film describe as when I have been preparing to become a spectator by sense & sensibility again . After I practiced , I realized that my pronounciation made me tongue - tied . wherere 's my laggeges ( idk sp ) . . . . Yesterday and the day before yesterday , I attended farewell paeties . Althogh I 'm far from them , I always cheer for them from New York ! ! It is the costom that we go back our parents ' home for New Years in Japan . Originally , we wnat to have a free and independent travel , but one of our friends who had never been to Korea suddenly could n't go with us . I did n't believe the scenes on TV had happend in Japan in addition to Tohoku that north area of Japan . I was born in Aomori the northest prefecture in Tohoku . I think Japan is an earthquake - prone contry . At that time , electricity had recoveried . and bounght a pair of sneakers , pants , and a poro shirt . I thoght I should have eaten it before I go to the office or have writen my name on it . I saw the movie frist and was very impressed by it ! I have had a hestic time this week , becouse I had a test in chaisene Do you mean Chinese ? Actually , school prevented me from going to yaga . Fortuneately , the weaher was also fantastic ! My cell phone was broken accidetly a few days ago . So now , I 'm using payphone after a long time ( not exactly , cause when I was in the military I could only use the payphone , but I mean as a civilion ) . Hollo 2011 I want to go jurny , again . We had n't got any vocabulary material , speech practising , and one of our teachers make major grammatical mistakes , like she said once ' they was ' in a past continuouse sentence ! ! ! It 's interesting , because during her lessons , and while prepating for the lessons , I learn words much more easily than in the school . It tooks half an hour or maybe an hour , and I remember almost all the words , with only one or two exceptions . I joined this website yestertoday , and found that it is very interesting and people from here are very friendly . The korean officer in active preparation was , regardless of me , panicked at a boading arrangement . My company is planning to change the website and I 'm in chage of it . It 's been almost 3 mounths since I came to the UK to study . Do you heve high tolerance for alcohol ? ? Usually we play table tennis or basketbal . He does n't think that he is handicapped and he tries to do everything which he is able to do or new things that he wans to do . I heard someone said that watching moive is a good way of learning English . I will try this out . using forein languages ( Upon ) Finishing my work at mountain lodge in Hakuba , Nagano pregecture , I 've returned to my university . Besides , in my Russian class , there is an Ametican student who majers in Japanese and Russian in his home country . That 's also disappopinting . I was very surprised , and turned toword her . Only ( The ) one thing I regrret is that I could n't speak English very well . We chose one and write a resume , imageing if I apply for the job . I told him to finish what he had to do because it could have been avoided if he just had n't been watching TV , but he did n't continue tyding up , so I had to do it instead of him . Ohayo gazaimasu . Rrading is my weak point . I know it ` s not good for our helth . But I want to be an early bird so I 'm tring to wake up earlier than usual ( although I could n't make it this morning . . . ) Usual days are full of hapiness . I go to Buck County Comunity College to study English . I think I will just memorize Enlish words and sentences . I do n't konw why , perhaps because I really see you as my good friend I want many foreing people to use it . low lighting , silence and lonelyness . However , I was gald to hear that the Japanese team had won . . . I am living in southern carifornia in America . I will not have decided that untill this weekend because I have a long winter holiday . Some people enjoyed dancing together with firiends or even other people . I know that Bob Dylan is famous singer in America , but I ca n't imazine what that phrase means . I found that there are many fashionable runnig outfits . becouse of a whole new model change . I thought I made it clear that tomorrow couled a day off . However , I had to do it , because it was one of the activities on a bisiness trip with our customers . The shop did a campaign that if a person was still hungry after eating one humberger , the shop would give the person one more humberger . I tried it and got two humbergers . I had to buy a pickel , climbing iron , and Gore - Tex products . Maybe you will find that life is so beautiful when you know someting . By the way , Tsuyoshi Kusanagi will be on terevision . We ate SOMEN ( japanene food ) . I 'm glat to have met it . Hi , my nane is `` napoleon - fish `` . It 'll so crouded and I should not get separeted from my friend . So my garden in spring and summer is very fragrant and colorfull every year . I went to lunch with my English scool friends . Here it is buffe style . gettig a job . But I have a many reasons for learnig english . Of course , in literature classes we heard so many times `` oh , how great is Russian language ! `` ( I do n't remember who did say these words , but I know that it was one of our writter ) . And I know only 5 kanji and a few simple sentenses . I have a sligt headache . Now I have a slighht headache . I saw someone draw many interesting pictures of their grandfather with an iphone App , so I decided to dwaw too . I drew a cute pink cat the firse time , but I coud n't draw any interesting pictures . I must either study drawing from the basics , or must stay humor ? I love my sharing feelings and experiences with people who have different thiughts and experiences , so I have thought of joining a club . I do n't know why I hesistate so much . By the way , I 'd like to sing `` start of something new `` ( from high school misical ) BTW , do you think this introduction is too simple ? Please correct words for me if you think it is neccessary . You said I was ( still ) a child in ur heart , you said I have not matured , you said that our relationship should not be broken up . He is going to try _ out for a team for the firt time . When we visited the temperate amimal zone we met a few American Africans , who were trying to read the Chinese text on the noticeboard . Out of all the zones , my favorite is the temperate amimal zone because elephants and giraffes are there . Penguins like big places for their environment , so the Zoo uses big mirrows as walls to make them feel more comfortable . About five years ago , the goverment of Japan retooled the system of the law . Now people who want to become laywer have to graduate from college . the eaxms are held in November . welcom to my home ! Hallo , welcom to my Lang - 8 . com profile . Firstly , I will introduce myself , I am a 21 year old Chinese university syudent . You can write in English or chineese . Correcting my words , grammer and so on . Thank you . Morning does n't have heigh temperature as in the afternoon . I intended to go to Tokyo and spend time reading books or studying at my favorite coffeehosue . 24hours after the extraction , now my lower jaw is swellen . I like jelly , but wanna eat humburgers broadcast on TV ! ! They looked very delicious ! And then I 'll eat humburgers XD When a man is walking down a street , he sees a man who is aout to jump from the 10th floor . english is so duiffcul eighteen years but I have nvere had any confidence using it . What can I do to srretch my english skill . restart studing English Now I 'm concentrating on studing Japanese only , I respect John Paul II , he dould speak 11 languages . . It was exciting and improved my English skils . Expecially , when I saw Totoro in Toy Story 3 for first time I was very happy and proud of it because Japanese character appeared in such a popular and famouse movie ! It is amaizing ! Today , I learned many colloqyitial words as well as bad 4 letter words . For evemple , ' Take it . ' ( When I headed and Kinoko item appered ) I 12 years old now , so I 'm gon na say good byr to my school and friends . There are 28 students ( exept for those ill ) in class , so we did rock - sissor - paper . After class the last runner of the losing team was scolded by teacher beacause he gave up in the middle . I hope I can make true frineds here and There are vegitabeles in my house . What kind of vegitabeles do you like ? I try to remenber to write it ! It was emballasing because everybody stared at me then . `` Of course I will `` I replied , but he had to go to a diifferent room shortly after that . Bye bye my lovly family . I really do n't like earthquakes and Tunamai . . . Reading and writing is okey ( I can use a dictionary when I 'm not sure about any word or grammar . ) but speaking and listening is so difficult to me . Every month everybody sould go on vacation . If people stay at home they could watch ( whatch ) TV , listen to the radio , go on internet , and be lazy . I 've gone other times in the past , but now , there are new atractions , like the Dark Knight Coaster . I miss her ver much . In this situation , her sister ang I decided to change the bibimbap with her . Yesterday I was planing to go to the skytower with my three friends but onf of my frineds and me had a class so our other friend had to wait for us until after school . And after school we were supposed to go there but due to bad weather we could n't help gaving up to go to the skytower . Then one of my frineds went home . It was good : ) I ate oyako don : ) The taste was milar to the one my mom cooks . Twitter is addicting / addictiveness ! I understand that Twitter helps ( to ) conect a lot of peple , but I think that I am spending too much time on it lately . . . I want to use this tool to study ( and communicate using ) foreign langage too . I usually have lessons on Tursday , but I could not last week . I woud like to buy and enjoy cakes with my family agein someday . First of all I have to overload my hands with iron and at the same time I have to deside the problems with my studies , which I was forced to skip for couple of weaks . I like listnening to music by bands such as ' the Offspring , Weezer , Sum41 , Simple Plan etc ' However , my co - morker suggested that I shound go see a doctor again to see if I have H1N1 . My husband brought my nephew , niece and my doughter At the beginning , I felt nervous and did n't konw how to talk with them . I have a lot of things I want to talk about with them but I do n't konw how to use English to talk about it . My sister introduced this wepsite to me . It 's my understanding that they are identical , but my Canadia roommate said that they were different . Do n't woory my babies , It 's not a rat , It 's certainely a cat . Now Minourou is like our pet , he comes and goes as he likes in our housse to recived hugs . and sleep if he needs it . He is a very social cat , he loves people , he 's a real well known cat in our street , because he stays under the hole near the pavements in order to recived caresses . Fortunatelly , conditions were good in Fukuoka , and I was able to get good pictures of the sun . Then the man waves ( his hands ) to the woman and maybe that diturbs the woman . Michael Jakson I think Michael Jakson was a great pop - singer . I took a lecture last thersday . I 'm not intersted in their job , but I learned some important things from their lecture . and , finally , I Do Dont give up . I will never forget thier words . Starting Lang - 8 for studing english I have n't used Kansai diarect in a long time , because my wife hates the Kansai dialect . It is international language , but I plan to learn france For my laiziness , I always watched funny films and cartoons only . I bet you will get a lot of chocolete from your students . Nowdays , I have have been thinking a lotabout my plan to go toKorea . Hellow _ ! It 's defficult for me to find a topic . I 've been playing a game made by another country recenty . But I 've not improved my speaking or writting yet . In 1192 , Yoritomo Minamoto who was a general desinated by the emperor of Japan established the shogunate in Kamakura . While I was suffing the internet , I saw one intervew about Dr . I really want to have a cat but my appartment does n't allow it . I planned to go to Okinawa this coming Octorber . But I had to cancele my trip due to the Swine Flu . I said , `` I know that because I sometimes read English jounals . This is his diagnsis . What is the medicen ? Unfortunatly , there were only four of us from SPARKS there . Lack of time to studing I was lerning English compulsary in primary and high school . A First day of languege school One day I went to a popular Japanese restaurant to hava lunch . I thought that `` this was ridicurous `` , `` it was normaul she did n't do that `` . To my surprizing , I got an e - mail from her . According the e - mail , she is alse university student and she studys economics . We had turky dinner and had a great time . I do n't remenber the conversation in detail , but it 's true that I love her , not just like . Although I lost 300 dollars , it was a great fun and new . expierence . - helps peole train their characteristics . The world of games is like a minuature social life , which has good , bad and evil so gamers will know that they should protect good things ( or people ) and fight bad things ( or peole ) . For example ; I have managed to develop a good habbit during the month . Many people from different backgroud and places chat with each other there . Alghough he was small then , he has ( now ) grown up . Do you know how to help a workcoholic ? I think my mom is a workcoholic because she works most of the time in a market . She generally gets up very early and stays at the market from 7am to 4pm . There is always something else to do such as shopping and fixing electronics . She goes to different places to get everything fixed . Do u think she is workcoholic ? Because the major I study in is software engineering , and my favorite part is mobilphone , I set my target on mobile phone and pay all my attention on this field . The arstis debiuted with his first album `` My World `` which was published in November 2009 , November . It was a night of miricle , because Bieber become famous when his mother uploaded the video with Bieder onto the site youtube . Until now it 's been / I 've found it confortable enough to just sleep , listen to the radio or music whenever I was alone on the bus . Then I sent a messwage to her . It sets people 's nevous on edge ! Let me relax myslef for the first and only time . . . Thanks to you and myslef . . . I have camped at Jecheon in Korea with my family for the first tim . The next morining , when my children woke up , they were surpised . They were delighted because they could play ball and swim in the velly . Maybe it 's a bit silly , becouse all my life is ahead . Have some jelous ? What is the diffrent between accident and incident ? Of couse we would n't have as much vocabulary as we do now back then . Have you ever been confused about the use of prepostion ? And best time to be home next to laptop with coffe . . . Almost all the costemers need new paper money for ' ' OTOSHIDAMA ' ' , money gaven to children by their parents and relatives in the new year . On TV an expert about the human body says that Americans and Europian I could n't find a promble . I was releaved when I was able to talk with them and knew that they were alright . We satyed for a long time . About morals and ehics But I think , convertaion camp was the biggest help . Do n't be coldy and be gentler . We plaied basketball in Dokkyo university . I thought taht I need to practice more . After much consideration , I made a dicision that my favorite food is Coke . It is brain excacize for me . I can also teach korea to you . We shoul be delighted with their creative ideas so that we can get more relaxed on our free time . Yesterday and today have been fabolous ! . . . I 'm enjoing living in Robe but there is one thing that I 'm deeply regretful about . I heard that we make one team with 4 player ( robot operater ) and 1 tactical opereter . Second step , I am looking for the internet webcite that able to write english diary easyly . I wnat to improve my hair . Do you konw how ? I wnat to know . Habits are very imprtant in life . feel subtantial and get a big harvest . Lisening to the sound of waves . Unfortuately THE BEAUTIFUL BAY will not blong to everyone because it was costucted for the hotel . The beach will blong to the hotel owner . The beatiful sea will disapper . Sherk 2 I saw `` sherk 2 `` last night . He was paying attention for the cars but he didnt notice taht bikes . He stepped onto the road and there was a loud sound , the honking horns ( from the bikes ? ) I was looking forward seeing two star players , Rose in Bulls and Novitzki in Marvericks . On the other hand , compared to him , Novirzki has not as speedy plays as Rose 's , but his fadeaway shots , shoots with body staying behind in the air are UN - stoppable . Against him , Novitzki also tried to shoot , but his shots were off . There are several categories . Example : Animals , Healt , Family relationships , etc . Yesterday middle auterm festerval was held , so all of us went together with to celebrate . Recently , the bathtub in my house was remodeled and I am studying Vetnam I do n't like it very much because it tasts child like . Although I hav n't seen any American style shortcakes here in Japan , I guess I prefer American style to Japanese . I 've already known that is really stupid thinking because I 'm definitely a stranger in Australia moreover ca n't speak English fluently as well as I 'm surely one of the lazest people in the world . The view from the school is pretty beautiful , there is moutain behind the buildings and blue ocean facing . I thought that I would have to write it again because the diary I just wrote disappeard when I clicked `` publish `` . Althought there were some words missing , at least I did n't have to write it all over again . but the point is , in the related photo , one can see obviously the traces that the photo has been photoshoped , for the three officials are flying in the air . Then , this caused a new bash of photoshop in the Chinese twitter - - - - - - - Xinlang Weibo . This country is boring for me because I know almost everythig about my own country . I feel dezzy and down . I need to go to bed earlier than usuall . Unfortunately , everyone fogive that day . I was unhappy about that . So , I asked my best friends about my britheday in yestheday . We 'll arive at my house at 7 : 00 pm and will go to Naeba in my car . Finaly , want to have a good traving . Recently , I skipped writting a diary . I was very busy recently , so I skipped writting a diary . I often say `` I beg your parden ? `` . At first , I thought the tactic did the trick , but no sooner had I tried to bring it to the window than the spider sarted to hang from the pen with its thread . Now I 'm studying English vocab , but I ca n't memorize it becouse I 'm getting sleepy . Using preposion is difficult for me . Becouse I will take an enterning exam for university . To solve Japan 's English test , we should plactice how to solve grammer . practice and a rewarding desart Sometimes , I feel pessmistic because of my bad pronunciation . my teacher 's guideness . I like Carbonara , do you know any other delisious recipe for pasta ? I 'm sad when I oreder soba and I get very little of the toppings . yeaterday , I was free . : ) Therefore , I stuydied English and Korean . Wiht its popularity , Kokyo - Running is producing a lot of money . And of cource , they buy their runnning shoes and running gear . that is one of the reasen I work there . Althougo we are a very short distance from each other , in reality we are very far apart . I do n't know how to shortten our distance . Good morning evryone ! ! ! ! I must get to threre by 1 PM and also I got up much earier than before in order not to miss the train . Genarally speaking , if the man has a date with girls , he would get there before she does . It was the most embarasment time for me in my life . Presantaiton on Monday to my CEO There will be presantation about my job on the next Monday . ( 22nd June ) I am not good at presantation in English . But , I 'll be a hostfamily for the first time so I do n't know anything about it ! How does a gallon compairs to a liter ? Thare are many reasons : They are teaching / We are learning the alphabeth right now and the days of the week . I recomend you to visit it . My job is to be a clerk in a conveniense store . So are there any archi students or architects here ? In spite of the great destruction _ caused by _ WW2 , lots of historical monuments were restored and are now kept in oder . last time I cooked , I tried Thailand Curry soup , and today it will be japaniese sushi . Do you belive them ? I often find my favorite musician 's video clip by chance , which ca n't be found in the ordinary way . - - as it is too old , not in sales , or discontinued . interpersomnal relation Its really diffeicult to deal with people . He said he mixed grape jouice , coke , Karupisu , and melon soda . In fact , I wanted to watch ' Avator ' , but it had stopped showing in the cinema . guys , today is Chrismas , merry Chrismas , it 's a happy tday today , enjoy it . The sysem of reward cards is so effective because it ensures repeat customers . Start writing a dialy I have beenthinking thatI want to write a dialy . I remebered that my parents tried to give all of them away , and would n't let me keep any of them . When a frined of my father came to our home to take the remainder , I belived that if the guest could not find them , I could keep them at last . My and the others ' cell phones suddunly started ringing loudly to give us the earthquake warnings while we were stretching in the gym . She explatined to us that the lights on the ceiling were very dangerous , so if you felt a big earthquake , please came out of here and stand next to the entrance . He 's out - going and likes to comunicate with others . And I 'm going to study abroad in Boston in Septamber of this year . please chack my diary . Those were lovery memories He studies at a university in our prifecture . We enjoyed his message on the cellur phone . The world hisry test was difficult for me . Today I watched AVADAR When can we Earth people become harmone with nature , at on with the animals and plants ? There 's a reason why I learn English , and that is because I want to become a great developper . I hope many people outside of Japan learn about anime , manga and Japanese culture . I do n't want him to be just a subsutitute . She is also a biginner , but she has already had some golf lessons from an instructor . ~ that I can easily tell the differece . My friend and I are planing to go snowboarding at a nearby mauntain . I ca n't speak English , So , I need my firiend 's speaking ability . By varbal communication . I first listend to Avril when I was a junior high school student . Although I know it 's necessary and heilful for me to get license of the apparatus , but I just ca n't raise my interest . but it was very esciting ! We ate lunch then after that we met her hasband and we did some sightseeing in San Francisco . It was very wounderful . And we went to eat denner IZAKAYA ( Japanese food ) in San Jose . I gald you corrected my sentence dialy before . But I ate too much ! I had potato chips , chocolate , and pokkyX ( Lately I exercise to core rythm . I 'm a big fan of micheal Jackson . We can view the supurb landscape from the observation area / deck just like the Tokyo Tower . Additionally , the invention of the airplane led to the reduction of the amount of CO2 emmitted into the atmosphere . However , during most of its flying time , it uses the netural wind in the atmosphere and does not require to use its engines to fly . Therefore , the amount of CO2 emmitted by an airplane is much less than using a car or ship to travel the same distance . I 'm transfer student from Japan so I am a unior and my major is Psychology . The title is `` Gay regeree `` . I could n't help laghing when I saw this at first . It 's the first dialy ! I met old friends in Shinjyuku ! I 'm very tiard . Of course parents have to train thier children to be good adults . Friend 's fathere : `` what is your name ? `` I was very surprised lol My friend 's father was a gentleman like buritish nobles . I have few chance to communicate with foreign people and my classmates do n't want to spend much time learing English . I am learing English . Do you have any travel palns ? My company is a large employer and the CEO resinged for health reasons . Your country has provied technical assistance to developing countries , right ? The Japanese have thought of sakura ( cherry blossom ) as the flower which symblizes the nation . But , there was no officiator so it was ineresting I have a pre - level 2 English Language Proficienty test on Sunday . That means our item has potential , and we could get captal support . I need to keep up with studing English ! n I 'm always nervous whe I 'm trying to speak ini English . One of important point of presenting is to use simple and short senstence . Next , I put data such as `` logos `` `` picutre `` and `` links `` all in the same folder . my homehown BUSAN Hello everyon ! ~ Today I am going to tell you about my hometown , Busan . Suddenly , I wanted to eat fried chiken ! The beakaly sells fried chiken . My fauvorite options are clinical psychology , industrial psychology and social psychology . When it comes to English pronuciation for non - native speakers , the ' El ' sound is one of the most difficult consonants . Is it understanble if I read them without the ' El ' sound ? I 'm superied that my Japanese entry had been corrected by a netizen last night . I 'm gon na Edinburgh ( The capital of Schotland ) on thursday with some friends . Her wedding will take place in nordern Ireland . It is far from here ( Dublin ) , I was surpurised to know there are a lot of people who want to learn Japanese . I thought that learning Japanese was difficult for native English speakers but as I read their nornal , I saw that they have seriously been learning Japanese . Now , I 'm attending both Buddism temple and Christian congregation . The believers are forbidden to smoke , and male atendants must wear neck - tie at every congregation . We got to learn its doctorin deeply before we become believers . I hate to tell eather group that I am not interested ! Then , she emaild me for replying . I 've been surffering from a lack of Vitamin B1 . this mornig I met my chinese friend to go to a exhibition . I have been living in Los Angeles for three month alredy . But my English is stil poore . about my luhcn . So , I baught luch at NATURAL LAWSON . I had never talked with English spealers before , and I 'm terrible at English . There are many people which are not able to rent any flat in Moscow therefore a campus is th ideal variant for them . Today , I ate Mister Donut with my friend . Recently , a new donut was put on sale . My friend ate `` MOSDO `` , which was collaborate Mister Donut and MOS burger . Something happend on the site I Contunued and the educatoin at high school and university . Today I waited for my girlfriend at the stasion by the university , and we went to McDonald 's . Of course it 's cheaper to cook at home using ingreadients from the ' fridge rather than eating out , but I know very well the taste of food I have cooked . We put our small sotnes on Kanaeisi and prayed about our wish . and the waiter serves you the `` tapa `` - it can be anomelette , saussages , bread with ham , etc . It was an opportunity to auquaint myself with everyone some more . I played valleyball , basketball and watching movies . The docter prescribed some medicine . In last sumo tornament , he lost easily , so media said that he had to retire because he bacame weak . But , in this sumo tornament , he won the championship . People are willing to study English , Reading , Listening and Writting but not speaking . The first factor is that people shy and have less confidence when compared to foriegners . hired at frist sight ? I think I was calm when Iintroducing myself . If there 's `` Love at first sight `` , is there any interview called `` hired at frist sight `` ? I want to wear it and work at there earlly . This beacause I like to talk topeople . Therefre , summer vacation is boring forme . I love him even though he is very noughty and I can feel that he loves me too . I 'm a sociak smoker . ' Are you aveilable now ? ' This is my first time to write a diary entry on internet , so I have no idea what to wrire . and talk very smmothly . Secondly , I am interested in the NY because it is the ceter of the world for the economics field . This weenked I stayed at the school . This is the first time I did n't come home on a weenked . Nxet week I will prepare for a final exam . I would appericiate it if you could check my dialy . Last Fryday , I met one of my university classmates . So , I wantched my favorite American TV drama ( to motivate me ) / ( as motivation . ) When the fertilization succeeds , the pumpkins ' babies will brillant . By the way , human girls in love are brillant , right ? The pumpkins are in love and brillant , too . So , it was a great previledge for me to be there and I was also very happy to see that the two of them looked like the happiest couple in the world ! Today 's seminor just ended . Every time the seminor finishes , I feel like I should have studied more in depth . My friend invited me to go to see a football match `` Blazil vs Scotland `` He is from Blazil . After school , I talked with my friend in a caffe . I have been waitting for the D - S company 's response for a long time , but I have n't received anything yet . Because it 's a big multinational company , I think it would be a great chance for me , although the positon is n't as good as I thought . I love Indian dishes , especialy Curry . I heard that in India vegetarian food is very populer . So I went to India this summer and enjoied it . When I stay at home instead of staying at scholl , time passes so fast . But I 'll keep wrting to practice my Engilsh . He also spreaks English . I was suprized to see how different Okinawan customs and culture are from that of themain land , where I lived before . One of the main differences is MOAI , which is similar to privatized insurance coverage sistem in other countries , but with some differences . If one of the members is havingtrouble economicaly , he can receive money through the donations made at the party . Lets start studing English ! ! I am beginer . - - - used at a restrant - - - I pepared to leave for the station and slipped on my shoes in a hurry . It was an interesthing and slightly embarrassing day . The movie was called `` Inception , `` and it was very interesting . I recomend it . I wil change . The Englishman who is a member of my gym came to do some tarining . He tought me some English words today , too . `` Consult a dictionary `` sounds too sirious . I would talk with him using the words that he tought me today . Of couse , I went to vote for a mayoral election . The anser starts with yes or no . I would like to speak English mooore ! `` Hello , my name is Abby , a high schhol student . By the way , yesterday , I editted a film that my friends and I took . I especially enjoy making scripts for listners . At night , my next neighbor always was annoying me because he played games with his freinds which annoyed me , but he disapeared lately . Anyway , I felt a kind of healing by watching such cute , adorable fishes , birds , and manmals . . . My God , I 'm going carzy . My firrst writing My job is a docter . most of the ambulance users are patients of mild disease that dosn ` t have any need for it . Japanese society is asing rapidly . Is your countrie 's ambulance system free or not free ? I am thinking that 's bad for my body but I can not stop takeing coffee everyday . I 'm a university student in Japan and want to be major in controll theory . I put in more effort in indain english literature , so my dissertation is related to this . There were many Managa pictures that were drawn on small or large papers . I enjoy working there because I ( get to ) see many diffrent people every day . when I got back , I met a breakfast saller . I went ahead and bought breakfast for my friend , but when I gave the money to her , she charged me more money because she thought that I did n't know the price of the breakfast . It was so bad . When I was a high school student , my team won in the national athletic meeting but I did n't paticipata in that ! ! But to join this company , I need to acqirery English . I want to make you an aquaintance ! today , our customer manager came , he asked me some questions , and then he asked me wheather I 've began my foreign trades or not , I answered ' not yet ' , at the same time I felt so ashamed . In order to receive a present from my friend , I went to Hibiya sutation . The present was some uncured hams and cgeese . Of couese , I also taught him Japanese . I gave up doing climbing because my hio was still in pain . I joined the English conversation circle in the moning . I better work hardey because I need lots of money . Local people may not think they are intersting but I do . Sobald ich mich entschied auszugehen , fing es an zu regnen . Ich bin ein faule Person . My listening / speaking lebel is very poor . . . I go to middle school as a vvolunteer on Friday mornings . ( every Friday morning ) Certanily I know it is important to do so to improve my English . It may be fun for beginers to talk such as things . Do you have any ideas and can you recomend something to me . Wednesday - - - presen a report of China and Macao I must go and do somethink for my studies . So I live my life as usual after tha disaster . Even though I feel sorry about the cancelation , I will cancel it because the Australian one is a better program concidering more earnest students of English will gather around it than the Davis one . . . . in order to know more about the differet between theory and reality . I used to think that working in a library must be boring , but after a while , I found that every job must have its boring or mundane part . But , every job also must have its meaningfu part , and how much you learn from that job depends on the efforts you put in . As for those earrings , do tou think they | fit | him properly ? I hope he over come wasely . Thses days I have been very happy because I made many friends here . . . lang - 8 is really a beautiful website . . . On this website I 've met a lot of native English speakers . . . . it is so cool . . . Where I am the time is 1 : 34 . . It is very late , but I 'm not sleepy . . I just rememberedthat I hav n't written a new diary . . so I must do it . . . Usually I think dogs can be good friends with human beings . . . They are loyal and thay can do things that people ca n't . . Maybe some of you like dogs too . . This is more like Google than the one that was criated originally . In addition , excess money means a student can enjoy his compus life . Second , a student working as a part time job has a chanve to expand his relationships . They can learn a lot of things to be required from a company throught a part time job , for example communication skills , experience in varous jobs in varous office shops to get a better idea of what kind of job they want . But we cooaparaited and cooked . I can encourage their protest and criticize the dictator immidiately by writing an encouraging comment . I 'm looling forward to that ! We were very very tired , bacause there were many steps in front of the shirine . Especiary my wife was so tired , because of the baby in her stomac . I had learned early on that it is a common convintion to do volunteer service in communities in many western countries . Further efforts are needed to spred the concept of volunteerism among people . In many ways , voluntary activities are alawys linked with official factors which can be an obstacle for people to be ( come ) a volunteer . For example , we are often motivited to do voluntary service to gain the edge on / over the academy in school . But envidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporaens hang out with Singaporeans , Indonesians stay with Indonesians , Vietnamese play with Vietnamese . And we are trying to figure out the most efficient motheds to improve our speaking . SO , good lcuk for us . Ninjya still exist ! ? Then I will call my friends to tell them I have just arriveled in sun city . I plan to vist the Grand Canyon . I could n't stop teaing up when I thought of Jenny 's sad life and Oliver 's feelings after he lost his dearest wife . ' ' The time when you think it 's late is perpect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' There was one thing I coud not understand , so I went to my school to study it with some books there . I think that as far as temperture , my country is about 10 degrees C lower than here . My house is particularally old and too big . . During the lesson , I I becamse calm . So , I going to my parent 's house to join a oister party now ! Am I am getting old fation ? ? ? I am very / feel dreadfull . During this idel time , I watched T . V . In my school it is traddition to wear something green . Tommorow will be an easy day . It was a very enjoyful time . Today , I had suffed some sites and I found Torrent . So I downroaded some dramas about 70GB . But I hardly speak , hear , and I 'm not good at readig and writing . The unspoken , passionate coherence which unites a large numer of people , is one of the most fatastic parts of going to a concert . If there was less funitures in the room , it could reduce the time needed to clean the room . thogh it was quite late night , we discussed lots of things such as religeon , national spirit , as well as ourselves . be American actors ( such as Keanu Reeves et . ) It 's my frist time writing in this diary ~ I hope to meet other friends meet unexpecedtly the author introduced this web page , so I ' m We walked to Kine Naoto 's open air consert tonight . He is menber of TM NETWORK that are very famous in Japan . The open air consert is held by volunteers every year . But the consert may not be held next year . I hope that the consert is to continue . My favorit story is `` A Study in Scarlet `` . Moremove , I have other parties and events for Christmas this weekend . Ten years ago , I wathed the TV with my family when the second airplane crashed into the twin towers . I never thought that suiside terroric attacks would happned in the US . The terrorists made airplanes turn into misiles and destroyed not only the world trade center but also other important American facilities . I think the difficulty of English for most Japanese is pronounsiation . We Japanese start to study English from Junnior high scohol days ( 12 years old , but now it got changed to earlier ) translate to Jpanese . The pronounsiation was ignored ! because actual native speaker ca n't understand badly pronpunce English like I do . . . I read books written about some schoolor 's theory and try to understand the rules , ' When you pronounce th , your tangue must be between your theeth or something like that . Today , I watched the soccer match between Japan and korean . If I knew how to use foreign emoticons , _ I can describe my emotions clealy . It made me amaged and excited . I think its opening movie is the best one in any japanese aninme 's . Today , the professor of the energy trasnsforming engineering class tould us some of his doubts on global warming . This PIXER movie contains fellowship , enviromental issues , problems and love . On Saturday , I had a baebecue near the river . Therefore , astronauts should have the ability to solve difficult qustions / problems . Because I have made many friends among the people studying Japaense with me . I have always thougt study is a tearful thing . Tommorow it will be fine all day . My grammar is bad , that 's why my artical is very terrible . My English teacher always want me to write an Eanglish composition , but I am scared about it . My father took me there , and my boss was wating for me Okay I 'll expalin this . I like travering arownd the world . Tokyo is Japan 's center of fasion , show business , economics , and politics , but the centr of American politics is Washington DC . My memorie of a trip . It is located in Palo Alto , Carifornia . During the Gulf war , because we were not able to dispatch the SDF to Kwait , we assisted Kwait and the international force with a plenty of money - - more than 13 billion dollars . ( After the end of the Gulf war , the newspaper in Kwait listed the countries which had assisted them on its paper , but there was no mention of Japan . ) I 'm cunfused . I met frieds from university days from five years ago . Our company helds English classes twice a week on Monday and Saturday . In the Saturday class , there are only 3 or 4 members resisterd . I 'm suprised ! Every day is a pain ( Okay , the dictonary translates like that but I would n't say it 's a pain ; too powerful a word . I 'd say it 's crap . ) because I need to find a topic . Yeap , rebellion ! Yeah , typos ! Dear reader , if you have sometime , do n't hesitate to read my last text about the Wild West because I had no correction . Boo - hoo . ( really weird that onomatopoeia , I do n't think about someone cryin when I read that , a barking dog instead ) When I got here , I found the people here are so friendly , ang I believe that my English will make great progresses ! I like seeing street fashoin pics . . So I ofen go on street fashoin webzines and buy fashoin magazines . It is very intersting how people wear clothsing . So if you are curious about young Korean fashoin trends , I recomand going to that site . . I think there are people who wear various styles of clothsing on this site . I wento to London four years ago . Tatemodern museum there is very good ! In the fomer situation , there is a `` Wow `` , and in the latter , `` Olleh ! `` . I will contine to write this . Everyone , please be carefull ! Japanise summer 's are very hot and hummied ! Did we copy the European stule ? For all intents and purposes , it 's arduous for Taiwan 's baseball team to defense against Korea , which recruited many elites from KBO and MLB . Hi , I am a cathlic . I always go to cathlic charch on Sundays . Cathlics 's name is Francesco of Assisi . Thes have a lot of fans who like 2PM 's funny shows and unique character . They have culture - centered projects like graffity , hip - hop dance and movie making all over the world . Yet , The question is alaways be answered by asking this question : Then I would have brought more advanced technoque back at the ' same ' time . . . . . . . is it an endless loof ? Of course , all of this thing I label it with ' I think ' , because I have no conidence that I could represnt these correctly and exactly . minna san konnichiwa kyou , boku wa anatatachi ga boku ni stuite mo shitte hoshii kara , boku no shumi ni stuite hanashite mitai to omoimasu . Watashi no geinoujin no keiken wa takusan dewa arimasenga kodomo no toki kara hajimeru . Watashi no gakkou gekijou no kurabu de , 9sai kara , takusan no katsudou wo shimasita . mata stune ni shuyaku dashita . Today I tald about trains which are the main transportation in Japan . Some people say `` I do n't have a favorite color , `` which I find unbelieveable . It says that this color gives impresson of cowardance . It was because she was in danger due to a life - threatening premature delivery and her fatuses needed to be taken care of in the NICU ( newborn intensive care unit So I made the dicision to become a fire fighter ( It 's very suitable for my character . ) I am waitting to call the fire station . They are very beatiful . I ve never been able to part with those cards . Use Google to find some Linux distibutives compiled for non - geek users . The visa system is discriminatoin on the national level ! If cases when you do n't need a visa are an exeption , however , you will understand my feelings . The two reading tast were worse and worse . Theortically , it is the easiest task but I got just 2 points out of 10 . I 'm wer sad . I think thet Tatsuya is lovely ! Mainly I want to go shopping , view the very high skycrapers and go sightseeing . This year , I aim to get a TOEIC socore of 800 points . My favorit musicians are OASIS , The Beatles , Ashlee Simpson , I can send my money to China by an illegal method - - we call it the `` black macket `` , but you know it 's illegal and it will cost me too much . So masterfull . I am a temporaly worker now . The exam was about general knowledges writing . Ofcorse , I shouted `` No way ! `` haha : D From there , I write sentense to describe my ideas . I used to make rides by using vegetables which are looked like a horse for my grandmother to ride when she comes here and goes back to heven . My lunch was pickled cowpea with some meat and tomoto egg soup today . But I did not go to the gallary because I was lazy . I decieded to go there , but now I do n't really want to go . Firt time I got interested in it was when I studyed at school and joined an english study group . Then , a few years later , I went to Germany through international exchange , there I had to communicate in english cause my german was even worse than my english , and my language barriere was broken there ) Prepositions and phrasal verbs - that 's what is driving me crasy now % ) since Edison 's great invension ( mmm , is this true ? ) . the situatuion where you do n't sleep all night long In Japan , fake erotic crimes have been growing into public problems and many accused victem end up getting arrested . I do n't know why parents treat teenagers ike children . Gambling is frightening and dangerous , the goverment is trying to dael wiht it , but not successfully . . * Plener - painting of countryside or of tne streets . The scentifc name is Bellis serenis ( Perennis ? ) I heard Google , the giant intenert company , will relase a brand TV service called `` google TV `` The idea is very simple ; it 's just putting internet funciton on TV . Google TV seems to offer us a user - friendly interface and enables us to enjyo internet videos on TV . But I think the Youtube viedo are not high quality videos , so it 's hard to adapt them to HD TVs . My son appearanced in 3 games . At fairst , he ran the 15MR race . He got off to a bad start . Then I realized that I should use new vocabraly when I learn it . I hope it will help me to acquire new vocabraly easily . I deplate so much of my energy when I read English articles because of difficulty . I used new vocabrary of `` deplate `` , precipitous `` , `` retiring `` as well . Neverthless , I like to study English . They are very worried about thier future . I wrote some English sentensces . He tought English to us by using the book . In this class , it was impressive for me that Simon & Garfunkel 's `` I am a rock `` was tought . and when I 'm active , it 's very painfull . after about 2 weeks exceise , I feel great . Recentry , I 've been thinking about how I used to live in Japan . Next , we shot the soccer - ball , and touched the boundry markers with the ball . My father is a piblic servant . He supervisee civil construction . He is familier with cars . My name is Roger , I graduated from the Maritime colloge . togeter . It feels like whenever she wants sothing - even a big item - she just buys it without shopping around to compare prices beforehand . I have been thinking wheather to buy ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convinient and usufull . The distanse was about more than 50km ! If you want to join this activity , you need to buy your bycycle . But general bycycle are no use . You have to buy a sophisticated bycycle which can go in all places , like high steeps . My bycycle cost me 62000 yen . becouse I 'm here . Once a foreigner talked to me in English , and I could understand him , but I cound n't express myself . Because of the earthquake in this year . But many people do not go abrode . And I liked the desseart called Kazandibi . He told me `` Your mother is frastrated right now . Japanese cooking uses soy sause and sweet rice wine . I maked on a program in the afternoon . I made an appoinment with a person in charge yesterday . etc . are also in existance . Belive in Jesus is cool . I belive in my God We can share our secrets tigether he had thrown it away and wenr home . * I guess * I feel uneasy about my fuetur , because an important exam is coming near . How should I try to wark hard ? Do te benefits of genetically modified crops outweigh the danger ? After jod Then we can each talk about our jobs , ideas or anything alse freely . Baba is like a prist . I could see the fast rever from one of my windows and the mountains from the other window . This is the first time to write in my dialy ! She spoke English so fast that I could n't undesrstand . It is very cold at the office because of the air airconditioner . ( by the way , Do you knouw about `` UFO cathcer `` ? It has no nicotin or tar but it glows red on the edge and puts out smoke . I went to scool yesterday , It is much easier to catch a precise meaning when we study using a introduction wrtitten in English not Korean . I have a medical test tommorow . but here was my weeked : I did not study hard . I was searching for an intership job recently and I got one yesterday . Finally , I work as a imformation collector . May told Guy that she wo n't come to work tomrrow . Oh , what should I do ? Should I continue ? The work is boring and repeatful . Today 's fireworks are so eraborate , and we are very impressed by them . We wanted to speack to them , but we could n't because we could n't speak English well ! I have not written dialy for Lang - 8 . I have been thinking of writting an entry durring these two weeks . I 'd like to continue this dialy . I bought clothes yesturday . I am wearing it in my room receutly . Am I sick ? Why do I have two conflicting thoughts in the day and night as if my brain seperates into two pieces ? Momentarily , I wish I would not consider the comlicate love without end . I just want to come back to NanNing as soon as possible ; I just want to date Evan ; I just want to go shopping in the Intenational Trade Center ; and I just want to do my own bussiness . Love is not just magic but it is something you ahve to keep . We have n't met for a yaer , so I was very pleased . And I thought that they are tring with much effort to improve their English skill . The contents were about how administarate the seminor in this term . I went to tranditional martket with my wife today . We bought vegetables , squid and apples . First of all , most of them married among the attendents to keep their community . So many Peranakan Chiese learned English . Many Europeans hired them as translaters . Hahaha , I just watched the first episod of `` Primeval `` . A few days ago , my oldest son had a sye , today my second son got an infection of the middle ear . Fortunately the ear clinic opend , I took him to the clinic . After entering university , I rarely read English stuff , except for thoes news about my beloved singer . I am studying Engrish for the TOEIC test on January 11th . I work at a clothing store in large shopping mall , which is tunning 20 years old at the end of this month . Despire that , I was not able to keep myself from getting bored . I am a Chinese girl living and studing in Beijing . I have trobled in English . I want native speakers and people who are lerning foreign languages to teach me . I often hear that English is the most important language of all to learn in order to succed in the world . I am wery sad , I reccomend this Manga to everyone . I 'm looking fowerd to seeing them . I 'm a Chinese girl who is learnig English and Japanese . I 'm so happy to join to this site and I 'm so interesting to rcognizeing to another peapole from all the world and finaly Ifound groub who interesting with reading books I like reading so much speacialy novels and stories thank you and I want to be a friend Last year , I went to Anchor Watt , which is one of the most famouse ruins is a city near Anchor Watt , and went to the ruins by bycicle . I loodked aroud not only well - known spots such as Anchor Watt and Anchor Tom but also little - known historical sites , stopped by villeges and experienced some adventures like encountering cows in the jungle . I stayed in a city near the histrical site and went to the central market there before going to Machupicu . We immediately became friends and I promised that I would give her a sevenior , a book about the Inca Emperor , after I came back from Machupichu . Acctually , I ended up not being able to meet her again because she was in school at the time I visited her , so I left my souvenir with her mother . Does it exsist in other countries ? The other day , I was watching a variey show on TV and an Australian comedian said this proverb . I expect it does n't exsist . My company has high torelance for diversities . The fare I paied for the cab is half as much as the fare I paid for train . And if we do it . He will give us happenese , and Heaven after death The last prohet who sent was Mohmmad . But I rarely use this machine , bacause I have a lot of gadgets . In evening , we went to the eel bowl restrant near my house . We arrived at the restrant am at 5 : 30 . The restrant opened at 5 : 00 . We were suprised that there was a long line in front of the restrant . Just 30 miuntes after the restrant opened . I have to check whether the wired funds were recieved into my account . I hesited as to whether to buy or not to buy it for a long time , and I decided not to . Lettle by little English is spreading through my mind , and the more I express myself in English the easier I can listen to it . I hope I 'll be helpfull : - ) I just regestered on this site to learn English and to communicate with people from other countries in English . But first , I haxe to pass the oral examination on May 14 . but this is a deffirent country . By the way I ` ve been to Singapor , Guam , Korea and China . I felt very good about my Chinese pronounciation . And I also realized what a small warld I 've been living in and I want to explore the bigger world that is out there . Which Divices Do You Recommend for Reading Electoric Books ? iPad or Kinddle ? We cooked bread , tofu , and Zoni which is a soi sauce based soup in a baked rice cake . However , we were all simling and it gave us a happy feeling . but other options are not perfect . ( My goal is to study Medicine , which is why I need to get my enlish upgraded to a certain level . . . America has decided to send more humanitarian aid to Pakistan to put a dent in the ati - America sentiment . Not after long , I got a chance to go to Cambodia for 10 days as a mission trirp . And I felt shamful about my very comfortable life . So I want to study engllish to get a job in this field and help many people in the world . The new term is the time for me to make a new resolusion to stop playing online games . So far , I am pleased that I have resisted the temeptation of the game for a week . To be honest , I am not sure whether or not I will stick my resolusion for a long time . None the less , I 'm taking French lessons , I am thinkng about the party after class . K who is the organiser of today 's hparty asked me , whether I will come to the party or not . He and my clasmate said something , but I could n't understand . In France , women kiss my cheek . I was very embarrased . So if you hope to work at a large company , I think you have to have exellent abilities . A : It is a different mindset , going on stage with th band , as opposed to goig to a studio . . . . They will speak fuluent Japanese in future . s : The food in Australia is not to my taste at all : < It 's so oilly . . there are lots of Chinese or Japanese restraunt except there are no Korean restraunt . Just now I saw the news of Pina Bausch 's death while browsing the webpages . Some kind of beauty , understanding , and imense love , has gone . This is my first time writing somthing here . The Examinner asked me something ( I forgot lol ) . I answerd , `` there are many costs to make a mascots . `` These casted had been created to collect taxes from the ships that passed through . We were on the couse best suited for sightseeing because there were lots of these ancient castles . The reasion for which they were created is terrible . Wakeboarding is not a popular suport in Japan but it is a very fantacitical ? suport . Anyway , The performance wae interesting ; I had dinner with my friends , and we At the company my trainer called me and blam me about the car details . I must check before giving detile to her . You know , when she is training me she never teaches me a lof about my job , since the first 2 days . She would like me to be perpect at the job . I do n't have experience so I do n't know how I can be very good . I would like a long time to become perpect but she does n't understand about that . I would like to be able to speak and writting English very well and then I can find another job ang leave the company . I do n't like the people , I can not accept insincerity . I would like like to puch her befor I leave , too . I 'm jocking . I just realized my journal entries are becoome to 443 stories already . But I think I need to learn English from a profetinal English teacher . Finaly , she said `` I 'm looking foward to seeing you . `` This is my first dirly in English . Making imitations is very bad but in cases where they can make lots of people happy , I tnink copy products are okay . Is her disapearance really not sad ? I then tried to examin this thesis . Then I tought : Do I really play a role in my family ? She laughed and said : I left you some spaguetti bolognaise in the kitchen . I know your stomach by heart ! And as I dug into my spaguetti , I tought about something else . It says the existing education system is for traning professors , researchs and laywers . Most people enter graguate school becuase they enjoy synthesizing and analysising information . They like to read , write and debate over acdemic issues . People in TWN persuit a master degree in order to find a decent job , including me . I really regreat my decision to go back to school , but there 's no going back . I hope to finish my essay as soon as possible and devote myself to my areer again . But these honey was really one drug for children in my childfood . Most supermarkts and shops are closed all day . In addition , I want to speake to people all around the world and to work in America . So , I need dictionary . I want a degital dictionary very much ! Personaly , I think their view only partially true . We ca n't use a lot of electricity after the eathquake caused a fire in the nuclear plant . Since it was late and it was rainy , I decied that I wo n't read English today . To some extent , I am , but today my throat is still hoase , so I chose to give up . After breakfirst , I spent some time studying grammar as well as some reading practice and dictation exercise . It 's overweight for my heght . It was a trap . Have you ever seen a Coralla broken down ? Of cource , it 's good for our health . I eat it evry morning with soybean flour and green tea powder . Yes , WONG , I think . I was tired , but it was very intersting . Please be really extrict with my written expressions , not only with the faults I commit , but also tell me how would you say anything if it sounds weird . I have to transfer gallons to liters , miles to killometers , and dollars to yen and then make the calculation . This is a Japanese popirar song . It 's Usuarlly performed solo . This is othea arrangemennt . But I did n't spoild it . I lke to think a lot about Miyazaki 's animation . It gives me peace in my heart and relaxes me a lot , though maybe some Japanese think that it is a little old - fashioned . I like to communicate with people all around the world and share the culture and life of different places . absolutly , these results are not enought for me . My vocaburary is over 18000 ! ? I forgot where I heard about it , but acording to some site , an average collage graduate native knows more than 50000 words . We were going to join a Glass Boat Tour , but we could n't do that because of the tyhoon . Hayao powa ! I love these movies because they are full of suspense , feeling and andbeatiful music ! I have Ponyo 's and Mononoke 's music and I listen to it every mornig before class . I splinkled a little salt and pepper on the fish , and poured some white wine . The docter said `` she has the flu , too . `` . All employees attendted this party . It 's a very important party becasuse it expresses each person 's thanks to their co - workers . Then I noticed the cups and glasses displayed in the bar had some very beatiful and artistic flower paintings , such as orchid , jasmine , lily , rose , etc . Plus , the mashed phoato were topped with brown gravy and it was delicious , very soft and smooth . So , I am learning to play bass gutiar . at the biggining of next month . I fulfilled it succesfully . I am too busy these days , so I have had no time to practice my English writting . Since then , I can concentrate on reading the book and understand what the auther says clearly . I tried to make my friends , family , and mynself . Swimming lession . She goes to UNO while rasing her doughter who is just 2 years old . I really wanted to see her doughter . Her doughter was soooo cute ! ! Furthernore , she has so much energy ! She ran around the room , kitchne and the ailes all the time except during the dinner . hahah , I am sorry to leave for a long time becaus of my college 's military training . tonlesap lake rock ' n ' roll show ! ! Finally the day is coming , Tonlesap Lake Rock ' n ' Roll Show ! ! I wonderd if the boat will go under . . . We already know the way to study langugages . I know that listeng to English conversation and speaking in English a lot are good ways , but I think memorizing is the best way . I think I would n't be able towrite diaries in English , speak in English , and listen to what foreigners say without memorizing English words and sentenses . I felt like I was in a sardin can . An au - pair lives with the host family and takes care of thier children and does a little housekeeping . but it 's a very famours program . I 'm seriously concider the au - pair program these days . In Janan , students usually have to wear a uniform from elementary high school studends to wear uniforms . The Japanese education system puts enphasis on reading and grammar . He made a lot of friends who like to drink alcohole . I rarelly drink alcohole but I thought it was good I am going to excerise near my house . They said , `` you can have a second inteview and take a second written test . `` I have to review excell and word , and Japanese . I can not study and work at the same time because English fluence is required . English quizu Which do you want to learn , English or Sience ? After three mouthes , you will have a skinny and healthy body . I will eat a lunch with senior co - workrs who , I respect . A few days ago , I tackled the repairment of my mountain bike . So I decided to overhaul it by myselt . I like japanese culture and its atmospher , last year I spent 3 weeks studying the language to see if I liked it or not . I liked it because of the way it sounded to my non japanese ears , I liked it as I learned hiragana and katakana but as soon as kanji began to show his scary face : D to me , I got disappointed and gave up , can anyone tell me why japanese people do n't use only hiragan and katakana to make their language easier ? If not , I 'll strongly recomment you to read because it 's very effective to improve . Second , you can increase your vocaburaly much , much faster than comapared to when you just write what you want . There is n't any comment for my previous dialy . Please feel free to write a comment to my dialy . For instance , plants utilyze the light of the sun to conduct photosynthesis through thier chlorophills . The solar panels absorb the solar energy and generate some electoricities without sustenable and possiblly has the potential to enable us to coexist with any other creatures paticularlly those on the verge of extinction . This may be belavoring the obvious , but the sun is the source of our energy . First , I must hand in the application for seminor by 1 p . m . We just decidet to meet . Luckly , it did n't rain although it was cloudy . It tasted great but it was also expebsive . Though English is difficult because it is so different from Korean , but it is intersting . It 's realy wonderful ~ I played basketball with my classmates in the afternoon . I have never heard Jpanese in the English song . but I do n't know the veffierence . Yesterday , my daughter took part in a Cheer Cheerleading Competition which is also an annual festival where the cheer leading team my daughter belongs to participates every year . The competition was held at the studium called Kita Yell . The studium was so big that my daughter got a little nervous . It 's said that a famous TV series producer has been producting several series which are all copied from classics . Im just riting this to myself , since there will be lots of people waiting to be corrected . I 'm mix ( I 'm not sure if you guys say mix or mixed but I 'll just wair until someone tells me : p ) Does it make sence ? ) In this case , what does `` lovery `` mean ? And , more sadly , now his wife and my aunt , have been diagonosed with lung cancer too . In conclusion , I will try to know about my own country in order to knou about many countries all over the world . However , I want to enjoy this wonderful oppotunity . This movie 's title is slamdog $ millionaire . it was not a bit of problem to me because I was full of expectation and pleasure that I was going to see the exhibtion at last ! It was a very surprising and amazing artwork that expressed negative social trouble using fancy and unique color . Whreas restaurant - delivered meals are convenient because we do n't need to cook . I can see many picturesfrom restaurants facebook . In conclusion , home - made meals are nutirisious and inexpensive , so I agreethat home - made meals are thebest . We need to cook almost every day , but occasinal restaurant - meals are enjoyable . I went to Breeze - Breeze which had a grand opend today . But luckly , she looks fine and feels just a little bit of pain . And I am a bit familiar with reading english using technicalterm terms , but not of daily life so much , or politics , and so on . This afternoon , I had an oral English cource . He is a very good teacher and I love him and his cource very much . He said that it was not a problem and he hoped I would come back to take part in the class . I thoought he was very friendly and generous . I like coldplay 's yellow , I wanted to sing that song tonight and recored it , but I could n't sing the words clearly and fluently . I recall that when I was in junior high school my English teacher taught me a song named `` yesterday once more `` , and I can still remember some words so I recored it and uploaded it to my voice blog . I would like to ponder about the case and to hear your opinion ( if only my friends did n't lose hope to read smth from me , sorry for my long break ) . But they live 5000km away from each other and do n't get the oppotunity to pay visits each other often . YAMATO does vorcal . My body is likey to be influenced by weather . But why at that perticular point in time , prediction was important , is because it is closely related to my argumentation . I am disapointed in my English You said you can pick me up at the airort . Who will get to be the chanpion in Germmany GP . About a month ago , it was announced that Doragon Quest 9 ( DQ9 ) 's release would be postphoned . The next series is supposed to be reliesed by NINTENDO DS . I was fully prepared to buy it only for the perpose of playing DQ9 . I felt very sad because SQURE ENIX announced it . NINTENDO DS is the hardware which is worth completely nothing because DQ9 is n't reliesed yet . But that annoucement is unacceptable . There are many rumar about that on the net . I read many articals and thought about it . It 's the device by which we can play games without buying softs . In the previous series , SQURE ENIX set up a provision agaist Majicon . In the start of the game , the ship where the main charactar get 's on did n't arrive at the harbor even if the player waited for a long time . The company produced the game lik that in case that player uses Majicon . But I heard that the provision / trap was broken in 6 hours after DQ was reliesed and was published on net . I think that SQURE ENIX is preparing for a complicated provision next time . In general , high school does not have a professional career conducter in each schools . However thachers also have their own work for everyday tuituins ( ? ) , and it seems to give them limitation on working for their students who have difficulty thinking on their future career . Therefore , it is recommenden for teachers to share the work load with professional career conducuers , and teachers will be able to reduce their amount of work . What do you think , are they alive or just an imarginary animal ? If god , ghost and creater from outer space are in existance , it 's only natural that a Vampire also live somewhere . Does it sound wierd ? I understand that I can use 20000 yen for Shinkansen bullet train tickes , horse riding lessons and Cyndi Lauper 's concert tickets ! At times , we even establish an interesting rapport trascending the relationship between teacher and students . So , I want to learn English hard , and talk English on skipe . The year before lastyear , when I visited France , he was kind to us . He staied at our house for three months then . His Japanese has implove very much now . It is colled `` Setsubun `` , and is done the day before the coming of spring . colsed friends are like our own mirrors He also has some mental problems which he seldome faces himself . That 's why , even in praivate , he has never had a relationship with a girl - even though he is fairly handsom . He ca n't do anything without communicating with collegues . O , my senior , is 27 years old , a vergine , and has n't had a job for 2 years . He is now studyig sociology to get a certification . He tends to flawn on his enviroment . Before I had respected him as if I were his real younger brothre . I hope it is n't diseaseand and , if it is , it will be well soon . It 's very convinient . However , It is difficult for me to understand Russian grammer . By the way , I ca n't understand English grammer too . But , I want to improve my English skil . Should I write down my thoughts and feelings , using words and grammer as simple as I can ? Or , should I use unfamilier and difficult woreds and grammer ? Many Japanese are unable to understand grammer like the present perfect tense ? when I stayed in the philipines , althouh , around here , most of my friends like aocole At one time I Thouht that people who exhaust their lives were succesful . I feel satispaction working . Now is the time when I have to be enthosiastic All these verbs and fraseology . If I 'm consistant , I 'll not slip so often . The reason why is when I noticed my mistake I thought the boss was absolutely angree with me . It is because my boss sometimes is angry about little things to my co - worker and the othere reason is from my old mind of childfood . And I became prpotect over myself . Avobe all , I can take care myself . I am going to try to improive again as an adult . One of my favorite fruite is ' ' BANANA ' ' . I know this sentense is damn wrong but I think you can get an idea from it How should I correct that sentense ? I promised myselt to not just party when I got back . You know , customer service will be a big business in the furture . Beacuse , they thenselves are the baddest of bad , thieves . Untill his father was dead and his mother 's health was becoming worse , his mother started imploring him to work . After his mothe died , he started to work , however ; he always complained that the work environment was too hot and work was too hard . Finally , he could n't prevent DATH to snatch away his life . Taday , my best friend Doll gave this website to me . she knows I need help to improve my english for my job . After signing up for Lang - 8 , I have found it is a very usefull website . There 's so many people who want to study foreign languages . We always send cars or give gife to my friend ! Recently I 've been busy writing speech contest sentenses . so Exhauted . . In Korea , there are so many beggers in the streets . When I was a colledge student , I met a Turkish guy . So , I will keep a short dairy here as freqent as possible . There is no sick leaveina at a normal company in Japan . My house is n't far from the University of Washington , and I 've always wanted to watch a live game of basketball ( `` If I have the oppotunity `` does n't work here . ) I have been suprising at the popularity of university sports since I came here . In Japane , most university sports are n't as famous as in America . I 'll try to watch thier game live someday . If you go see games in a sport studium , can you recommend me a sport to watch ? I really need to improve my English skills including listening , reading and writting . I gess no one read my journal yet So , in the end , I did n't buy them . : p I hope I can find my favorite chothes again somewhere . Afer having gone through all these busy and boring days , I totally have no idea about what I can say ! 4th Mar 2010 Thuesday . Many tayphoon approach Japan every summer . I ` m looking fowerd to going to Taiwan next month . In the summer I have been taking an English course at the Direct English institue , I am in the 3rd level class there . I have many hopets such as reading novels . Also I use fotoshope to desine pictures . Today I have had a good day but I got up late . Anyway , just before my class friend asked me about my weight . It was embarssed for me because I 'm a Korean girl and some young girls do n't like to be asked about that . If a girl asks me I might be ok so I hope that my classmate friend never asks me . He went to seinor field of the game , through been killed a million times for learning how to survive . capture the highend user first , the total opposit in India . localization in areas / countries where most Japanse company failed even though they have high - tech . So , I picked two guides titled `` Canada `` and `` Germanry `` . this is the chinese traditional festival , maybe other familise are happy and excited , but mine are not , He recorded himself speaking in fluent Japanease . And today was no exeption , fundamental : I need to study the fudamentals of Japanese history . indespensable : He is an indespensable force for our company . splendid : Casa Roma is a splensis castle built in Tronto . cultural : We can treat each other well even if we have culrtural differences . To make your date more intersting , you should add a surprise . It ` s been over half a year , but I still have many problems both speaking and understanding English . . . My working visa will expire at the end of February . The time I have left doesn n't seem like enough for me to improve to the point of satisfaction . Lately , I feel more and more tense , and frastrated . I know the best way to learn is to enjoy what you do , however I am not the sort of person who is able to make everything enjoyable . I probably need to prioritise that over learning the language . . . hmm . . . . . When my friends called , I tried to only have a short converstation . If I were to keep learnig English , I could speak English well . After all , our meetig was delayed for a few minutes . . . , I 'm sorry . but the problem is that these lifestyle 's change makes people overweight easily . Also , people do n't want to excercise . But I always tihinking my English level is so low . . . The more entrertaining , the more gaming technology is developed , but it increases danger to mix up what is real and what is not . alright guys , forgive my crap jokes , good nite , I will do my best . Choicing a PC Since I was in a hurry , I thougt I would pick them up and throw them away later but forgot about it . It is unlikely that someone would take only the chotsticks out of the plastic bag to use them . I think both the goverment and all universities must get prepared for its future impact . When I first listned to it , I did n't know what he said . I felt especially sad when I wacthed that last scene . because I will graduat . I got to know a Nepalese person , who is the owner of a Nepal restrant in Japan . He told me that his restrant provides very delicious Nepal food . = to move from side to side in an insteady way Thinking about this , I was spritless and fell in a deep mire . A dog was resucued when it was on a roof of a destroyed house that was drifting 1 . 8 kilometers offshore . One of my friends recieved disquilification letter from the company he applied to work for . However , unfortunatly we do n't have any vacancies in that department you applied . Cadidates are also our customer ? There is a lot of damage becasuse of the typhoons this year . When I was a high school student , House of Wax was broudcasted on TV at night . I wached this movie to the end . Every Wednesday , I have an English conversation lesson where we watch a movie in English , write notes about the story and then present a report at my unversity . It 's my second year in the university , and despite not being able to inadaptation to campus life , I have been getting used to various things . It is something round , hung with a string for example in the middle of a room , and the palyers have to break it with a stick : what is inside ( of the `` pentolaccia `` , for example flour or sweets ) , will fall down . She told me to buy a balloon , the powdered paste used for wallpaper , a lot of newsprints , some giftwrap and a string . My school held a festival yeaterday . In my new life style , I have a lot of change conpare to before . Especialy now , I am beginning to spend all day at university during the week . I have also / never ? watched such interesting Amrican dramas , for example , 24 , prison break , lost , X - file . . . If anyone likes these Americandrama dramas , let 's talk about them ! From now on I will try to reduce the choice , _ concentrate more on what I decied . I wonder if the menber of that kind of association are get in easier than others . Harry Portter I read books `` Harry Portter `` It was 2001 that the movie titled Harry Portter appeared first In thoes days , movie `` Harry Portter `` was a objeck of attention and I bought books `` Harry Portter `` , Watching the movie . On the otherhand , almost all cars exhaust caron dioxide . I do n't want to have a fatal accident or even a traffic accident , secondly I woud like to make the air clearn for the next generation In class , we were given the follwoing question : So could you pease tell me your reasons for studying Japanese . . Although their songs mixes Japanese , the vocal who is a native Engilsh speaker sings with an English accent , so even native speakers of Japanese , and of course me too - ca n't tell which is Japanese and which is English . Are sure you checked the emal I sent to you . I usually read a lot of metarials when I have spare time . I think reading is very benefital for me . But my parents started to complain about the caligraphy and ordered me to put not only the next year 's Chinese zodiac character but also something for good luck . I want to feel a defferent culture by mingling with the local people . How to contect me . ^ ^ I want to speak English more naturary . There are too many self - develope or self - motivation or self - help books in Korea . I 'm wonderring if these books are really helpful in one 's life ? The beautiful woman translated it from Ukrainien to English . I rided on it without thinking . I found many fountains and also many people refleshing with it . Although I was always moving with my heavy backpac , I did n't feel tired . Korean pop has won a considable following in Japan . Similary Korean drama has been a great hit . Why they have won this popurality ? Their dances and songs are interseting and memorable . I hope we can have classses on MSN or Skype regularly at a fixd time . I 'm majoring in computer secience . nowdays I 'm leraning English . I have exprience in preparing for Korean language ability exam . so I can help you effiectly . and send a messege to me Bradley has changed through talking to a good councelor . Sometimes I tink I wanna go back ! ! ! ! ! My hobbie is scuba diving . I 've traveled some places in not only Japna , also other countryies . PNU cosist of 12 departments . I 'm going to see my school scenarys . Last weekend my wife and I went to tennis matches for beginer mix doubles . It 's dilicious and rare , I want to learn how to cook this kind of beef . I found out about Lang - 8 today and registerd right away . After I graduated from high shcool I started learning English alone . I stuied English by watching NHK TV which is educational . By the way , Feburary 14th is Valentain 's day . Japanese girls often give chocoletes to their boyfriends . Not for boyfriend ! lol I 've made chocolates for Valentain 's day since I was an elementary school student . It 's soft , moisuturized and always fresh baked , not too sweet and you can see sliced piece of carrots in the cake . However , I ca n't explane . I felt sympathy for the Kambodia refugees , and wanted to know more about it . And now , I 'm researching The Indochinha War , mainly focused on the deplomatic relation between Vietnam and France . It was so hard because there were n't enough referencel , but I made my effort to research , and I understand it very well . Kendou is a contrast to wieght training . Weight tarining is reasonable . It is difficult for rationalist Americans to understand Kendou spirit . Someday , I want to watch the MLB game live at the studium . Therefore I ca n't continue to use it , I was dissapointed . . . They usually boile Hijiki with soy souce and sugar , I can understend them . My favorite ( shop ) is a Chinese restaurant nere the school . This song is about `` bounsing back `` . I 'm not good at expressing myself , I do n't have any qualifications but a driving lisence , I have never had special experience such as internship and being a volunteer . plese teach me English . The Flinstones The Trasformers 2 : Be engaged with an instiute related to UN operations or non - profit operations . But , , , , I always feel dissapointed with my poor English skills , especially when speaking : ( Sometimes I get tired of the piles of assighnment , but I enjoy spending lots of time with good teachers and friends who aim high . I 'm tired because I have to go to the lab evryday and take care of the fish . And I went to the class and I was so dessipointed because this room is very hot : ( . In the moring , I chedcked my phone but there were n't any calls from him so , because of that , I was angry at him and , still upset , I went to my part - time job . These days I worry about my future and become senstive thinking about it . now I am living in the southest of china , Now the temperature is very hig in the daytime . howerver it is low in the morning and night when is very cool and the wind is very soft . I like it very much , but I hate the daytime . Of course , do n't forgert marathon ( 42 km ) . Today , I start my lan - 8 life . My father did it for my parents becaise they will back to Brasil ! My theacher told us that in Korea there was a race yesterday . They checked 5th and 6th greader . . . I need to practice more each day . `` Jill Stuart `` is my favorit brand . This fregrance is like vanilla mixed with flowers I would like to wear its dresse in a party after the graduation ceremony . If I were her , I would be very embarrased and stop right away . However , she was tough becuse after that , she tried to use her cell phone again and was called by the professor again . Somthing that I learnt today First , I want to share my exprience when I traveled to China . When you visit a shrine , ring the bell , bow twice , clap your hands twice and then bow deeply onece again . On the train , I 'm listening to R & B music to use in my lessun . I preffer read some easy books , watch American TV , movies with English subtitles and these funny things to learn . My main dificulty is understanding spoken English . When the groom kiised the bride , many cameras flashed . I am happy for them siecerly . The reason I want to wirte English is to enhance my English skill . It is n't neccessary to write in English . will someone correct my grramatical mistakes after I post it or should I add someone to be my friend first ? My favoriet sports are Football and Snowbord . When we were done skating , the metro was not working , so my dad drov us all home . Depending on how she is feeling that day she may begin to imagin the very worst - - `` He hates me , he does n't love me , he is leaving me forever . `` This may then trigger her deepest fear , which is `` I am afraid that if he rejects me then I will never be loved . I found him on YouTube : ) He made a parody of Mirely Cyrus 's 7 days . 9 bus that caught itself on fire in Chendu . ( Star Ruby is a library to develope computer games with Ruby language . Just 12 hours left untill I go to Cambodia ! Vor . 1 ( Prayer etiquette in temples ) Yey ! ! I did n't think they could wil , therefore I was really surprised . Many friesds cheer the team of your own country . So it was difficult for me to read a lot of passege in a short period of time . I upgrated lang - 8 to premium . Are you surprized that we did n't fly on the plane / go by plane ? What I 'm studying at univercity I 'm studying mainly Mathmatics and phisics at university . I was good at Math and phisics when I was a high school student . Although I do n't study English at the univercity , I want to be able to speak English fluently . , and you wll be friends with me ! ! It is derived from `` familly `` In jappan is wintter now . Recentry , I happend upon very nice music . I watchd `` Enchanted `` by disney . Somedey , I 'll try to fall in love with such a prince ! ! Know that no gain withut pain , this what I learned from life . Speaking the truth , what I would like is to make foreign friends mord than leanning english , I am very curious about everything outside China and I dream about travelling around the world one day . But accoding to his facial expression , it seems to have failed . I want to comunicate with a lot of people . example : The teacher used his car as an example when he was teaching about the hibrid car . But I think it is good way to improve my English writing skills by dialies . I 'm a little good at writing and grammar of English but I 'm poor at speaking and listenig because Japanese educational system of English focuses on writing and grammar . But I think this system derives from Japanese nationarity . What is your favorite russain song ? I decide give up on these nerouse . I want have a better life ! I want to smeil and I tried to sing . I found the world become bulitful and everthing became right ! so happy ! I konw the life is myself and if I felt good it will fell good ! hope everyone find yourself I trust you will get what 's you want ! Hi evrybody ! ! ! Anyway he fell in love with the smat phone , and his explanation made me almost fall asleep . Oh , it is n't snowing and I ca n't go snoubording . . . I need to revice the text for retelling for my English cources , but it is very difficult for me & nbsp ; because my pronouncication is not very good and I find speaking & nbsp ; more difficult than listening . Yesterday , I was tought how to play golf by a professional golf player . I did n't have any appoinmets or plans yesterday . I first took my seat and I ordered an iced charamel latte . I must speach about my country . I came up with some ideas for my speach . I always go to English classes Saturday 's at 3 pm until 6 pm so I did that , and also in the morning I went to a pole dancing class , I do that to lose weight and gain strenght , and it is a fun activity too . I dicided to write a diary entry . so I can not talk with my friends on abroad with humorness . I 'm bad at pysics and math . She is twrenty - six who is living in Tokyo for a job / work . select : She selected the blue flowersfor for her friend 's gift . divide : We were divided into two groups in / by that arugument . convey : Sometimes it is difficult to convey what we want to say in a foregin / another language . I like drowing characters very much . My hobby is watchng baseball games on TV , because I like baseball Then they make unhappy faces and ask me again , ' What can you cook without currry ? ' My roommate and I decided to clearn our dormitory tomorrow . Goos night . So it was a preasure . It costs 55 aus dollers . I have to sell my car for at least 4000 aus dollers . I talk with my family using Sype almost every day . I 'm a normal man . someone pealse help me lol I thouht he put my socks in his closet again . oh my godness , it was a gay magazine ! I was really surpurised , and I also became scared of my landlord . I promise , no , I gurarantee , I 'll never come back to Australia again , even if my mother is kidnapped by someone and taken to Australia . I kinda wanna change from flontline to some other medicine . But since I have few oppotunite to use it , my English still looks like Chin - glish . I wich I would not get in trouble with anyone during my trip since people are the most dangerous creature in the world . Because this spring I have to take job jobhunting seriously as I am going to be last grade in my uni . I have to endure missing my family and frends in Korea . I have been learning yoga for three years Becouse I have stiff shoulders . I think that the hula dance is elegant and somtimes difficult to execute . well you are fack basically , so it is okay . I 've been studying English for 4 onths in Sydney , but I still ca n't see the top of the montain at all . How high have I climed from the foot of the mountain ? Anyway , everyone is lreaning a second language on this website ; I reapect all of them . What I 'll write is just my opinion , so even if my ways of studying will be deifferent from you , do n't worry about that . Speaking skills are propotional to writing skills . If I wanna understand waht English speakers say , I have to read English books and I have to ask Japanese who can speak English very well about why I could n't translate it . I do n't think that way beacuse , when I got up that day , I felt a little bit tired Accroding to researchers who foucued on the relationship between the length of sleeping and whether you feel good when you get up , Pathinco is one of the gambling methods . However they are expensive , because they can do many thigns . However , I have no need to record conversations and am not intersted in any radio programs . . . I have studyied for over 10 years to pass an exam for some national qualification . T `` in English with Japanise subtitles on DVD . As you know , ET is a famous movie , but I watced it for the first time . I 'm always thinking about the reason why he did that and why he always refuses that someone helps him after I watche `` HOUSE M . I ca n't just skip unknow words so reading this book will take a while . TIME is futuring superbowl ads as follows : I 'm going to get a job until March and its gon to be okay . I do n't have to rush ~ ~ My Recommedation Movies I intend to discribe daily happenings here . The celemony at the kindergarten We attended the celemony at the kindergarten last Thursday . The celemony lasted about 1 hour and thirty minutes , and The reason we think so much about those news stories is because even if the news content is quite ordinally , it picks up and repeats many times just because famous people are involved . My friend itroduced me to this useful website . Althought my Japanese is not good to write an article ( entry ) . IN DEFENSE OF MR . FIX - IT AND THE HOME - IMPROMENT COMMITTEE When a woman resists a man 's solutions he feels his competence is being qustioned . As a result , he feels mistrusted , unapprciated , and stops caring . He can reflet and discover how he was probably offering solutions at a time when she was needing empathy and nurturing . Here are some brief examples of ways a man might mistakenly imvalidate feelings and perceptions or offer unwanted solutions . Thia is what you should do . `` Each of these statements eitheer invalidates or attempts to explain upset feelings or offers a solution designed suddenly to change her negative feelings to positive feelings . By learning to listen , gradually he will experiece that she will appreciate him more even when at first she is upset with him . She can reflect and discover how she was probably giving him unsolicited advice or criticism rather than simply sharing her needs , providing information , or making a requst . When I woke up , I could see the heavy sonw . hellow ~ : ) I live in korea Yesterday , the Dobai World Cup ( horse racing ) was held in Dobai . It was very exiting , because it was the first time that a Japenese horse won . I think Japnese horses have achieved world - class status . as playing basketball , swimming , running and so on . If it is sunny , I 'll go fashing with my friends and swimming . I think that is impossible . wuwuwu . But I can play computer games at home , hehe . Thease days , it is getting colder and colder . I realized I could not be friends with autom and winter . No matter what bevarages she drinks , almost nobody would mind . Possibly women , who tend to have great interest in thire own figure and weight , believe they have an obligation to refrain such drinks . What I strongly want to mention is that all we need to do is develop and bulid good relationships with various countries . I went to Canda on spring vacation . Hi , my name is gulizen and I 'm very happy to meet you on lang - 8 . It 's a good way to learn other lauguages . I thank them for their heartfull concern ; however , dare I say , they have misunderstood the situation in Japan . Resently I watched the news on the central Russian TV - chanel , and they said that Hollywood has started sooting a film called & nbsp ; `` Georgia `` . This is an information war and the film `` Georgia `` is its logical continion . Today , I read a magagine about license in school librery and find this site . But , I want more comunication with forighner . I am a member of the `` Guidelines comittee on Hypertrophic Scarring `` of the Japan Academic Societty of Plastic and Reconstructive Surgery . It was ranny from morning to evening . plz ~ help to correct my writtings . If so , I appreciate your favor . The Carrer is `` Softbank `` . ( we have d a bad impression of them ) iPhone does n't have IrDA . ( we use this for excanging mail addresses usually ) Java apprication does n't work in the iPhone . On Monday , I went to the scholl pool for the first time in this year . But I do n't like sewimming in cold water . . I wii keep swimming untill I 'm a Kosen student . I 'm having a tornament of swimming ( or swimming tournament ) for high school student on June 5 . A Japanese women was taught not to express their thoughts or opinions since their childfood . Many foreiner believe this . Book retiew - Black Boy , Garden Party . Because it has too many fage . Reading the book , I am reminded of Korea occupied by Japan in the 1930 's ( although I was n't born in this age , I can only imagine ) . Like many Koreans , Ricahard has had hard time . I guess ' nigar ' and ' black boy ' are bad words . Her mather is very expected . Luary wanted to end the party but her mother didnt n't want to because she did n't want to ruin the fun for everyone . Laura felt guilty and visited the dead man 's home to pay her respects . The JLPT just examines the learner 's kowledge . When I arrived at the clothing department , the sales clark was only one there . I cooke a full - course Italian meal , Salad , AcquaPazza , Pasta . Whereas there are wide range of Nabe in Japan , we ate quite simple nabe , mainly ( ? ) . We put all of the leftovers from te refridgerator , such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water , into the pot and cooked them together . Five months ago , I met a Filipino student on Smar . The day before yesterday he sent me a message that he applied for the job as a totor . I already have some favorite toturs at my conversational school . I do n't know that song lilycs is `` Mr american pie `` . becouse there is nothing aboput `` american pie `` . The hit single of this album is called / named ' Stupid , ' which is about a man whose heart has been broken by a gril . During an interveiw , he said that he wanted to become a radio DJ with his own show after releasing the album . It is very difficult to find a good definitio for friendship . A ture friend finds pleasure in our joy and shares sorrow in our grief . The people who are my friends are alwats at my side to give me help and comfort . I think this is ture friendship . These days I have been exchanging messages with my foreign firend , and it is as pleasant as a real conversation . Farst diary To change the subject , earthquakes & tunami are terrible . The cerebral wave activity is clasified into groups , each one named with a Greek letter : Alpha , Delta , Gamma and Theta . So , Alpha waves have a frecuency of 0 . 5 and 0 . 4 cycles per second , and they are often found in a state of deep sleep . Theta waves have a frecuency of 5 and 7 cycles per second , and they are found in the state between wakefulness and dreaming . Alpha waves have a frecuency between 8 and 14 cycles per second , and they are found in states of peace and a relaxed alert . Beta waves have a frecuency of 15 and 22 cycles per second , and they are found in a state of crisis , anxiety and agressiveness . The massive production of Alpha waves in children makes them have a great learning capacity that can even allow them to attain / achieve super - learning or acelerated learning when there is a state of peace . On the other hand , if there is a state of agressiveness or stress , learning can not be achieved . These ways are called the perception channels , and are usually used by the NLP ( neuro - linguistic programming ) to generate positive and permanent changements in people 's behavior . I want to comunicate with people . I started a part - time job in a convenience store two manths ago . I have been very busy for this two manths . For the first manth , I cleaned the toilet facilities , took out the garbage , welcomed the custmers and ( ? ) helped to organise the stock of goods , on top of working as a cashier with seniors and so on . I was tremendously encoureged when I was told off by a manager . Thanks to them , I got used to work litle by litle , as time passed . One day , the store manager said to me `` It is important to greet with a smile and make eye contacts with the custmers `` . Then , some custmers thanked me with smiles and left the store . There is a gerbille at my home , but it 's not the only pet we have . But it 's a pity that I could n't find a mousetrap in my home , it made the mice leave my appartment last time a few years ago . It 's really interesting , and a lot easier for me to read , probably bacause there 's a bunch of conversations in it . I asked them `` why does the elephant need to be on diet ? `` They said `` Because we have to minimimize the transport fee . `` I feel managing teh Elephant is very difficult . I gaved up on it then . I respect strong - charectered people I respect strong - charectered people . She moves whith difficulty . She still goes to University and continues her education by correspondance . Recently she has started to make ( create ) beautiful accessoiries . She is talanted . I ca n't get up eary in the morning ! ( Fixed ) Odell was n't certain of what he saw . The mbers may have been at a much lower first step , with a formidable second step still to come . ( corrected ) Odell has n't confident about what he saw . The mountainer may have been at a much lower first step , with a formidable second step still to come . Althogh I am sure you know of them , I want to introduce music by these singers and anextra song by Andi Gibb , who in my mind , is the very image of the past american people because of his fasion and long blond hair . But I 've changed my mind recentry . In the playoffs , everyone is very important to the team , not to mention Rockets lost the African Moutain . I decided to undergo a long jurney by bike , which took about four hours to arrive at my destination . During the recent winter vacation , when for the greater part of the time the temperatuer was always under - 20 degrees . Now the temperatuer has increased , and it usually ranges roughly frome - 10 to 2 degrees . Even with this increase , a long time exposed to the cold , proved to be moer than I could bear . I was traneling to China with my friends until yesterday . I want to be able to speak English and communicate with Peoplle all over the world ! Since I work in my office , looking outside through the windiow is fun and relaxing to me . Last year , I ate and drind freely and as a result , I did n't gain weight but gained visceral fat . It is one of the largest ones in Japana . So the teacher came to our room at 10 : 30 each night duing the four days . My unbrella was broken yesterday . I 'm going to write about the spacecraf Hayabusa today . The body burned , but she relesed a capsul toward the earth before she was burned . Nobody knows what was in the capsule untill it was opened . If there were aliens in the capsul , We would be surprised ! However , wrinting in this diary gives today some meaning . but he didn n't find one The tyhoon has approached . I will do it steadly . I found `` Train Man `` which is a very famous story in Japan in 2006 transrated in English . It attacked me like a mosqiuto . I chose the book related to my major ( machanical engineering ) so that I could practice my English reading skills . meeting facinating people These days , I have studied promotion on a Japanese musisian and today is last time to study it . Someday , I want to sing songs in other lanugage . Inportance of reading This is the first time for me to write my dialy in English . The aim is to experience a wider world and enter a more challengable life . But first , I should speak in English very influently . And I have to overcome my fear and shyness especially when I meet an agressive person who feels frustrated while talking with me . Fortunatery , I found a newspaper clippings . Although , I 've been feeling lonely rately . I tried to call my frends several times yesterday . That made me lonlyer . I have a troubled personarity . As soon as you are busy enough , you will forgrt what you want because you have no time . So , the cultural festival is a place to understand the school atomshere . My friends said that this website benifited her a lot , and she recommened it to me so I came / joined . So let me introduse myself a lettle bit . My 3 - year - old daughter was born here and that was a tough experience for me becuase I was not able to express how my wife was doing when a nurse / doctor asked . But I belive that if I just go on and study constantly without being lazy , then I definitely will achieve my goals . I belive in myself . I wrote that I was going to watch the movie ( or : a movie called ) `` A Phophet `` . I have two tommorow . I 'm gon na eat Rusian cuisine tonight . I live in a dorminotory near my home . meybe ! ! ! Many elementary studnets in Japan ride unicycles . unicycles are very popular amang girls . I did n't know how wonderful peformance with unicycles could be until she started it . I watched `` Swan Lake `` at Lincorn Center tonight . I did n't know that early day tango was played with flute and gitar . He is really scarely and aggressive . Multimdia Class thus all of them are bound together by affection , and they find their friendship to be the cheriest relationship in the world . first , it is difficult to suppose that one can experience anything , continously . I am writting a program for learning foreign languages ( next version ) . The Version for Linux works great , not beacause I like Linux , but that on Linux using UTF - 8 chars in console is possible , in Windows it is n't possible . I have stusied english for about a year . but my english is not at a pratical level . What do you think of working at resoat area ? I 'm not sure the name of the place , This area is famous for snowboad and skiing . I need to chekck it ) I will go to the airport with my aunt , uncle , and my brother by car . I will ought to have breakfast by stopping the rastaurant before we get to the airport . My dear fridends , please tell me how can I do ? I 'm a 21 - year - old girl , and I 'm sudying English literture in my univercity . I 've also been studying Brasilian Portuguese for one month . So I was sourching for a website to help with my studies . Today I am not going on a bussiness trip . So I was very comfused when I noticed it . I tried do my best and as much as I could all day today because I do n't like to make someone feel uncomfortuble because of my action . So I just aporogized to everybody on twitter . I think that I ca n't say that I am okay because I am not sure about my aciton . The euro is very weak and the yen became very storong . I checked the exchange rate for the New Zealand doller but it was same . . ( ^ ^ ; One of my friends who plans to go to Europ this summer changed yen to euro yesterday . Tomorrow I will go my daughter 's kindergarten to join in the Summer Festival celebration ( promorted by teachers ) with my family . It was cold today , those days the outside temperaure was 0 degree . Hello , frined and teachers ! I have plans to teach my native languge in Bangkok . . I really want to help you enjoy your experence here in Thailand . . Private classes are available evey day inculding Saturdays and Sundays from 8am until 8pm . nithty - night naka . . . Because it is very diffrent from what I have ever used , it is very difficult for me to use it . When I drink with my close friends and If I determined to hang out till morning at clubs or somthing , I drink roughly a half bottle of tequila and a couple of bottles of beer . Sometimes I kicked the ball and hitted someone who was running toward me . I was running , too , then all the players ran into me , even though I was running as hard as I could . I agree with the opion that Kokubo should wear his tie and pants properly because he is now a representative of Japan under the national flag , not just an athlete who is abroad to attend international matches as a qualified individual . I played softball with a Heavy Industries custmer two weeks ago . Although the first game was fought well very much , it was reversed and by the last roundand and we lost . As a result , our tema had the lowest grade at the tournament . I think it is a good thing to form relationships outside of work with my custmer . Do you have relationships outside work with your custmer ? I need to wirte my diary in a short time span , but I will keep updating And recently many murder events have happend in Vancouver . Tonght I will sleep early , and tomorrow do my best . I majore in international relations . Especially Tchaikovsky and schuvert are my favorites . I 'm going to stay here just obout one month . He declared that we would never get any furnitures IKEA . I try to think postive , but It is such a hard thing to do . today . I went to yaga shool . so recently I started to yoga , Big queues , crowds of people , everebody is angry - all of this is a consequence of Russian education reform . Unfortunatly , I realized that it is a fairy tale . But I still believe that I will enter the university / institute , Russian corruption wo n't be a problem on the way to my goals , nd I will be lucky to say that I am a student of university ! Tangue twister with Insomnia As a result , I did n't go to the labrary and I regret my idleness . It is becase there are many things I 'd like to do and Please correct it on grammer and suggest a more native usage of the language . And they are also often said to have poor imaginating . And as you know , Japanese animation is now highly recommendated worldwide . I am going to hold omn my English . I am suppouse to talk with my freinds if I need to talk with them . I habve finished reading a book . But they disappeaerd soon afterward . He started to study this phenomenan . Thnaks ! millitary base near my town , so many Americans live in the city . I think I have many opportunities to speek in English close to home . I studied Amarican sign language today with some girl on edufire . The girl who tought me , She also tought me in English . Today , when I went into an oriention & nbsp ; workshop , I was surprised to see a lot of people there . I gain my wehght rapidly last summer season . I will contienue my english learning journey . . . My dear friends , it has been months since my last vist to this website . I ( will ) start my colleage junior life in the beginning of september . I can read Englidh a little bit , but I 'm poor at speaking , listening , and Wrighting English . Now , I want to appare some useful sentences , for example : For examle , there are bedrooms , a bathroom , a kitchen , and so on . This is because if you eat dinner togher , you can have coversations and it helps us understand each other . In this way , I can get their counsel and , at the same time , they can make out my thoughts and the situation I am currenty in . In my opinion , close family bonds are one of the most imporant things in our life , and the dining room plays an essential role in it . Thus , the chance of making a new acquaintnce who I did not know well before increases . In conclution , I believe that the dining room is the most important room in a house . We can maintain a good relasonship with our family by communicating in the dining room , and we can also use it for a party where we can invite people from outside our house . For exemple , If you have a dog , you need time for it : buy it food , play with it , take it for walks , etc . I Ibelive that a pet is more responsability . I plaied a game . I do n't feel very good today . Everything is going the wrong way . I try my best to let it go into the right way , but I failed . mybe I should think more clearerly , but I ca n't . In short , we still dont know why consciousness exists , why I 'm not a philosophical zombi . The pianist was born in a poor family , but he had the chance to become a famouse pianist . The rapid development of information techonology , especially the Internet , has made an increasing number of e - books available to people . Therefore , traditional books will continue to exist despite the rising popolarity of e - books . If they get their total salary , companies will go bunkrupt . Most of them are non copylightted because the authours of them died over 50 years ago . I just recived an e - mail from my friend . Before that she warked in a public hall , same occupation . Now she warks with teachers and she is very lonely . Today I realized why it is so importand not to give up . Hanging Out Wih My Friends He explained his critial situation to her . I was surprised at our enexpected visitor . `` My elder sister is also a geek , sometimes we discuss about the future of the Japanese animetion industry . `` I relly love teaching Samulnori with traditional Korean equiment . While I am writting this , I want to eat it too . I do n't get feedback immediatly when I write . Many native animals live in the tropical forests in Austraria . Of course , I 'm planning to go to the city zoo in Cairns and kuddle a koala bear . Actually , I prefer wombats to koalas , but I 'm uncertain whether visitors can kuddle a wombat . Assad 's shop attracts crowds of people and the queue extends to the street conner everyday . People like me wish that he canfforever leaves China . thirds of the book but I have n't found any impressive sentenses . 4 ) China 's economiy is gaining strength as it continues to increase its exports . I 'm going to be able to drink alcole . Yesterdeay was my 4th wedding anniversary ! This event is a forum for professional or amature artists . I 've studied enghlish for more than 7 years , but my english is still so poor , I ca n't even talk to people , I hope one day I can speak english like a english spoker . cause , I was bron into a poor family , I could not go anywhere but stay here , and my parents did their best to support me through school . I want to change my job , to improve my life , to earn more money to make my family more comfortable . Ever since the first time when I saw a blackberry phone , I have been totally into them . They look luxuary , and the design is stylish . I am still concidering whether to buy it or not . Stiff shulder again Steve ' Apple - Head ' Joves is really cool . `` We are forced to learn English since our chindhood . Until now , I 'm learning it . This has become a big part of my study . We do n't hear our students reading poetry , the essence of Chinese literature , which were paseed down for generations . However , we alaways read and recite English instead . Oh no , those are not oral English , just so called Chinglish . What a sad thing ! On that day , meny people come to my city . ch it on TV . But my friends interested in F1 , so we wach on TV . Because , there are meny races in a month . I sae colorling ( colored ) leaves . It 's veyr beautiful . Autam is my favorite season of the year . Rusian are mysterious . Chanese people are also mysterious . Althogh Samet island is not as popular as Phuket or Samui , its beach look very beutiful ! One can say that creating sentences is also a good activie that might Many have oftenI thought about living in a place where two or more languages Last week my degital camera broke and I need get it a new one for my trip next mounth . I could see many diffalent costumes and dances . We have called each other whether we were happy or groomy . I attended it , and we cried utill we had exhausted our tears . I think Japan is gentle for a smoker because there are a lots of smoking areas and cigarettes are chaper than any other country . The restaurant is what is called a `` revolving sushi bar `` , where dishes are carried on a conveyer belt . Two pieces of sushi are on a dish and you can eat a dish for one dallr . An increasing number of revolving sushi bars have opend recently , so we can have sushi at an affordable price . There is no doubt that it is not good for our environment to bulid a factory in our community . First , it will pollute the river near the community , which was full of fich . It is not smart to depend the increase of the economy on the damage of the environment , which is very weak and can not be rebulid . Living in a community with fresh air , clean water and slient environment is much better than in a polluted area . He told me to use the expressions that can be found in the dicrtionary , otherwese my English would be strange . I hope that the people can find a way back to their normaly life and be happy again . My mahor is Engrish . My Japanese teacher asked me to focus on listening , talkiing and grammar . I hope that I can improve my talking and listening as soon as possible because I really want to have perfect Enghish . Hello evryone . I did my study abrod in Fiji and it was sooooo good . Especially over Hotele life . After that I moved to a hotele whose manager is a Fijian woman who was so Some of my firend who were also going back Japan cried and cried . . . Anyway my English is better than before , particularly my spreaking but my vocablary is n't good enough for staying in another country , I think . that 's why I am going to study abrod again soon . I was really desappointed with my English skills again and again during the show . Anyway , very few Japanese actors can speak English or Mandarin like native speakrs , so most of Japanese actors ca n't appear in famous Hollywood movies . On a lemon tree which I bougt 5 years ago , swallowtails laid eggs since the last summer . Living expens South Dakota ! Today , I began this lang - 8 survice hoping to improve my English - writing skill . Time permitting , I would like to take part in advsing on Japanese usage , and am very glad to get any tips on my English use . Kingland is a beatiful counry in southern Asia . People in Kinglang eat sea food every day . I would like to see the coutry Kingland atleast once in my life . I promissed my friend . Even though we had never aten with each other , we had a good relationship . Yet , I do n't like to have a lot of free time , especially when Ioften sleep halfa day ratherthen spending time in the Intrnet , or even watching TV . My goals are good pronunciation , writing English easily and reading English websites and books speedly and accurately . Regular membar Cambodian vocalist Sokha joined us for 1hour . Rurouni Knesin They are very professionalist , friendly , and seem to have respect for all of the workers . But there 're only words and I feel that it 's not enought . ( enough ) Everywhere I go I keep listening to my favoriate song . . I made lots friends who came from all over and I always felt happy . I never felt bad because I realy enjoyed living in Australia with my good plicks ! haha About 10 days after got to Australia , when I was hunnging around , I found posh cafe and dropped my resume off . They said , `` Come to an interview tmr . `` Why on earth has our rejection of nuclear power desappeared ? So today we went in and out every shop downtown and we trid on styles we like . After that , we went to dinner at a Thai resterant . I really want to visit it again and , if I can , ( I will ) live there for sevearl years . Today I heard that my younger colleague had started writing a jornal at this great site . Recently I have been practicing reading English sentenses loudly many times to brush up on my skills . But I have yet to learn more words and flases , so I 'm back to writing in my diary again to practice my writing skills as well . The new year still has many challenges waitting for me . Goodbye 2008 , Hellow 2009 ~ ! NINE is a movie derected by Rob Marshall . In this site , I feel that I 'll study more , and I 'll be able to communicatin better in English . Torne has a `` trophy `` function , which is someting that records my viewing history . This story is a parody of The littler match girl and shows the European toumoil pretty well . Recentlly , the Euro has dramatically fallen against the dollar and yen . It was a beautiful day yasterday I 'm going to go to an art exhibision in Hakone this Sunday , so I hope it will be sunny there . Then she disappeard with her son . At tne end of class I wanted to try to talk with him , and I asked him how I was in his class today , he just nodded I promised him to show the winter scenery of Hokkaido such as Sappro city covered by snow , the festivity of Sappro Yuki Maturi by `` You tube `` . 5 years ago , I would have never guessed I would have commnication this way . However , all the children became very queit I just wached the 1st and 2nd episodes . One of the survivors , Jhon Rock , should have been dead , but he was still alive in the hall . Why did the crowd apper ? and I was always looking foward to it . I was given a degital camera . There is no way that showing kindness , affection , or any other form of positivity wo n't be appriciated . You are the most jearous person in my class . He is the second weightest boy of my friends . We finished the ( / our ) test and then we were going to the Black Cat in Brunswick Street , Fizroy . Before we went there , we had talked about the distinctives features of this cafe . So the teacher recomended a good restaurant near the Black Cat . including Janan . And I watched a movie in the cafe , `` The Bourne ultinum `` , whose main acter is Matt Damon . Also , Interenet Cafes in Japan have varsatile services . You can spend a night on a tatami - floor at a price cheaper than a hotel . ( but limitied room though . . ) Of course , they ordinarily serve free drinks such as coffee , tea , or juice . Some of them have darts or billiyard ! IF I Won 10 Million Dollers If I won 10 million dollers , I 'd like to buy a lot of games for an Xbox360 and go abroud right now : ) If I still had a lot of money , I donate to people in need . To begin with , I 'll finish my last semister at university for graduation . Employees fingers are not put into the soup , making it cleaness and safe , preventing burns . Or is it truely beyond my understanding ? However , my friends told me it 's really yummy and sweety . One of them is Israelim ; she speaks English with a strong accent . Should someone solve my writing error and layzines problem ? I have two children : one is in colleage and the other is in elementary school . What kind of peple do you like ? The title is `` The Castle Of Cagriostro , `` which is made by Hayao Miyazaki , the most famous director in Japanese animation . I find it very useful when reading entries written by other Jananese corrected by native speakers , because you can tell the difference in expressions between English and Japanese . It touches the heart of Japanese culture for Japanese people learning English . Thus my evironnment seems never could make me have a new dream . How to choose an appropriate article ( that is , ' a ' or ' the ' ) is a very difficut question whenever I study English . Thanks for reminding me and I remember this / that moment . It was very amaizing . Life was beatiful . I read in a magazine that the BOB cut is now the treand . I was dissapointed . To improve Enlgish is very very hard ! ! ! When I left the subway , I found the paper paperbag that had my lunch was torn because the subway was so crowded . I do n't want it to cost a lot of maney . I enjoyed a fireflower and Japanes Origami with my siter 's daughter and son . I 'm looking forward to whatching them grow up ! In fact , it 's ture that many people are not hardworking after they go to college in Taiwan . I watced Agatha Christie 's work - Murder on the Orient Express and Miss Marble . He put on a talk show at this event , but unfoutunately it was full before I could make a reservation . ] ) but beforehand , I have to have some theoric and pratic knowledge about traditional art ( painting , architecture or color theory , management of space ) . You know , you can only apply for one school for your bechelor 's degree . The weather is cool and my friend is going to see a movid but I have to work Please correct and answemy my question ! I do n't know what happend . plese ~ teach me English . I 'm an unversity student and my major is international law . If you wanna learn chinse regularly , just add me . Finally I got admitted to the International Trade Institude . In my school , we are plaing instruments in the school musical . because in 3 - 1 we are plaing instruments ! ! ! I needed a person who would let me practice verious skills . I want go to shopping but I 'm aways busy . lol And because of the rain , I could n't go very far for dining , and I could only choose the near restaurents Especialy , anyone learning Japanese ( ^ - ^ ) / I heard and thought , `` what shoud I eat ? ? `` Because Bobby advised me to follow them to Chitaqua Park , I went there . I spred it on toast every morning . But one thing I have to be carefull about is not getting a bad tooth . I starting Lang - 8 rigjht now ! My English writing skill and bocabraly are really not enough . First of all , she is a very hard working person . She has the capacity to work for a long time without complaining until she acheives her goal . Besides that , she tought us to care about our studies and to search for knowledge everywhere and by any means , because she believes that man without knowledge is like a body without a soul . They are Probablly around 7 centimeters or so . I heard that our common frind , who is I will show a video of thai fruit carving to you . When I was yung So women would stay at home and learn about cooking , especaullly In Feburary , I dropped and broke my camera . Also in March , I dropped and broke my boyfriend 's camara . Tommorrow will be a great day , I believe ! My brother had a PSP ( but he sold it ) , and we had seve games for PSP console . If you can recomend me some songs , I 'll be grateful . He told me that I was addicated to the university . During the past theer years , I felt tired from time to time , and sometimes I wanted to give up , but I told myself `` I must be keep it up , I must work hard . `` Now my efforts have paid off - - I was addicated to a good university . The phone that can be superior to iphone is nowher to be found . Hi ~ I thank you for your lobour . When I first visited this web site , I was suprised at how helpful the people on this wabsite are ! I am a little troubled because I want to help those who are helping me by assisting them in their goal to improve their writting in return . But many peaple , inculding you , like to learn Chinese or Japanese . I 'm Korean , so I ca n't help you directly . If you 're not disturbed by my hamble level of English , I hope that you will consent to being my neighbor . You can grow tired of explaning the same thing , and lose your creativity . For example , when I am stressed out from studyiny , I start to eat more or to sleep more than I need . My faverite of them was a woolen coat . I do n't like you , not beacause you are an American . I think I do my best to do your homework amd understand when you teach class . I am vety happy to have a girl . This is the first time I write in tihs diary . In order to better learn the intentions behind his paninting , I want to take some classes to learn painting skills , like water oil . find my diaries to recorrect . In Taiwan , there are many people with a teacher lisence , but there are just a few students . As a resule , most of these teachers are waiting for a job . Tomorrow I 'm going to have a test of Classical Japanese and I hope everyting ends up alright . My holidday Actaully , I do n't miss Taiwan so much . My roomate are always asking me , `` do you miss rice ? `` I would rather try exotic food while in the U . S . , rather than Taiwese ones . I feel like experiencing the American life - stlye and being assimilated with them . Even though he said that I should taste some Taiwanese cuisine here , that way , I could campare what the differences between them are . A book I read when I was a freshman in my university explained that people want to work atDisneyland because everyone working there can do what he / she truely wants to do . Xtina is amazing signer . ( NOT xtina ! ) The idea occerred to me that , why is the image of a flight attendant different from Japan and in the other countries . I can buy avery cheap clothes at Dinos . roma - hiragana translator So I want to use a roma - hiragana translator with this site , like the one below : As you know the Korean penisular is still devided into the South and North . Efectiv way of learning English . I am always thik how I can improve my English . Less efort , much more efection . In that show the resercher said read letters in books scilently . So we have to know sound infomation even if we read scilently ( in English spelling and pronounceation are difarent ) Seemed that this was n't her first suicidal attemp . Nuh . . . Tomoyo and I went to a new caffe and talked about art . That nigth , I called my boyfrend and Mayuko . We are going to deinner nest Saturaday , On such a big holiday , our family always gets toghter to He was expected to win a gold medal , and all of his supporters in the arina became silent the moment he retired . Anyway , from now on , I will come and write etreis at least once a week , so please help me to write proper English entries . I 'll try to write things here and it will be happy or good things which happens to me every sigle day . Despite this constantly expanding library of exotic colloids , however , the advances in colloidal self assemby are surprisingly scarce , and the corresponding self assembled structures still remain quite simple . Altough she is a second grader in high school , We taled a lot ! In my first dgree , I went to Oxford Universtity in England . I want to visit more and to talk with many kinds of peopole . So if you are a very kind person , please cheak my poor Englsih ! ! the weather forcast said ( that ) it will be hot again ( soon ) . First , today I am going to play Futsal in the evining . What dou you think about the USCPA in America ? Ken adviced me on how to make a good presentation . or going walking in nature for reflesh and health . I do n't have a perticular genre of movie I like . But , I do n't thik movies are made for fun . sometmes they give me deep inspiration and make me think about a specific topic . I want to be an obstetrician or an engineer who makes medical machines to help as many wemen as possible to live happier lives despite their diseases ! Because sometimes it seems to me that most of them are very intelligent , organized , and priviledged at the same time . He told me that American people are different from Egyption people in thier thinking , and in their professional and personal lives . But not everyone is different . I wrote this entry beacuse I want American people to reply to me How they think in thier peofessional and personal lives and I also want to know how the noraml people spend thier normal days Thanks to anyone who will answermy qestions . First I want to express my happiness at Srahu coming back from her vacation ! ) this is very importent fo me I really norvos . take a pll , but It 's not usefull I have a importent test next week I belive I can do it well For instance Taylar Swift , Stevie Wonder , The Smashing pumpkings , Offspring , Sum41 , Steve Appleton , A Tribe Called Quest , Pixies , Jay - Z 3OH ! 3 , etc . . . I really like her excentlic fashinon , action , peformance , and of course songs : ) Whenever I questioned something , people responsed very There were ( only ) a few people who came to the Izakya Now I am planning to travel to Tailand for my next vacation . There are a lot of historical places to visit in Tailand . After finishing the TV program of Gundam , at first all of the Gunadam freaks tried to buy plastic models . But it makes me too addictiv . Fashon Show One thing that I noticed is that they ( all ) wore fasionable clothes as well as a lot of perfume . Hello , my name is Sar . I am interested in the English languaga . So people can easily make rhyms in English since English is avery flexible language in terms of sound . The answer is quite symple : they use rhymed verse when they make songs . So we are limited to manipulating rhythm in Japanese . Therefore , ancient Japanese people controlled thenumber of words in Japanese poems in order to make rhythms instead of rhytmed verse . The teacher was Filipina who can only speak English , that means she ca n't understand if I speak Japanese . I was nervous talking with her ! I booked accomodation , which looked like such a treditional and awsome cabin for a night , through the internet , and bought a pack of beer and some food at the market . The enterance was pretty , and the usher , who was a very old man , was kind to us . Anyway , the accomodation was the opposite of the pictures on the website . My husband worried about me as my codition was getting worse . At last he confessed to me that the smell and atmospher drove him crazy , too . I stopped drinking beer and smoking ; I ca n't let them help me fall alseep . I remembe I have a black ipod in my bag , It seems difficlut to make new friends when we get older ( and older ) . I serched for good movies online and eventually I found As I saw the first scean , I felt very peacefull and Japanese culture and he was always given a cup of coffe for free I went to an Uniqro store and bought some cute t - shirts . I have n't been to Uniqro stores before . Uniqro is really famous in japan . I think he was chinease and he was buying lots of clothes . I was born in Riyadh , but I am organaly from Yemen My relatives want me to go to Ucraine for the whole summer ! This year , I 'm teaching 200 students . They are not relly goot at speaking English . just be pacient . I met my relatives and gave them some survenir . It 's the first time that I wirte a diary on the internet . If I knew of this site ealier , I could write English very well . . My majoy subject is English , but in fact , I have a little hatred towards English , for In modern times , English is as commom as a piece of bread ; You can find it everywhere . A hiway is free , and that is quite amazing . rarely : She rerely finishes her homework on time . Sory ) Again ) But I have been stydying it every day for a month . I ` m a junior at Hankuk University of Forign Studies . This is a japanese kinf of custom . Heven is over . . . . The loan officer approaches the blonde and says , `` We are very happy that this transaction has worked out , but while you are away , I performed a background checkd . And I 'm a little puzzled . The blonde replies , `` Where else in New Youk city can I park my car for two weeks for 15 bucks ? `` . Prease correct my diary . < ( _ _ ) > The skanning and skimming reading comprehension had too much information for me to finish the questions in fifteen minutes ' time . Last Monday , I got in a new office that is a clum ( ? ) scool as a Math and Science teacher . I have to be in school untill 8 : 20 a . m . After having dinner , there is a self - study period untill 10 : 00 pm . . I bacame to hate my country , my language , songs , and Russian films and books . . . Every night I imagine lttle houses on the cleanstreets of a small town in America . . . I also set off big firworks I think it is one of my favorite festival regradless of my increasing My pertner for this trip , Nao , had a strong desire to visit there . Especialy , the whale shark feeding in a standhing posture was interesting . I just passed through it souldlessly . . . I am stupied . . Because I have a improtant exam at the end of the month . . . I should prepare for ( ? ) my sofermore year . . It troubles me acttually . . Since It is not combenient for me to pay by cash every day , I bought a 5000 - yen bus card . `` Your card does n't have enogh charge . `` As I was stood in front of the charge machine biside the bus driver , so many people were were waiting for me getting off the bus . He was probably in his mid fourty , and was a kind driver . Of cource I repayed the 50 yen the next day ! I am scoled by the instructor every time . However , there are diadvantages . The biggest one would be environmental pollution . Social problems might be caused as well . If one factory were built near my community , then it would bring more investiments . In reture , improving our economy . Nevertheless , there would certainly be negtive effects as well . The most serious one must be environmental pollution , particularly in regards to pulluting the water and making noise . Equally trobling for me is my debt . . . I had a job interview last Friday , but I coul n't / did n't do well . I may not even recieve any notice of an informal outcome . How do you feel if you get a call like that suddnely ? Thinking about it , I feel sick , deep lonliness when it is a full moon or new moon . Start of English larning from Today I quit English larning because working is very hard . Acutually this is an excuse . . . . But I should thik about that . As soon as I can do that , I will tell everyone aroud me . Because Japanese people emphasize groupism and tend to avoid conflict personnaly with other passengers about their bad behavior . Many stuednt were in Nara park . It 's a moving skatebord and it 's cool and fun . Please correct my senntennce Today it is essencial to have reccomendations because the human resources are too busy to receive a lot of candidates . Today I went to Hong - dae to meet my best friedns So I went there to see eath other . But I want to write an interesting and funny daiary in English . You do n't think this applys to Korea ? No , it 's not Gomei . Gomei is . . Gomei is , for example , maybe having sundried tomatoes I just got thorugh with my work . Today is a burnning hot day . I like summer bacause it has many advantages , for exemple Swimming in the sea , doing BBQ party near a neighboring steam , playing baseball on the field . 1 . He is tired of foreget important documents for the meetings . Most salons encourage customes to buy a package of ten sessions upfront by offering discounts and special perks for your prepaid loyalty . However , if they pay for some money to get manicure or padicure regularly , it could be a waste of money . And the town is very small and quiet , fai away from the city . The English poet Wordsworth said that `` The child is father of the man when he raises the son up innocently `` 1900 has lived on the sea since he was born , cut off from the outside world which is full of lies . He was innocent forever and had no flae until the moment of his death . When the grown - up 1900 sat in front of the piano , using his slender hands ; which are smooth like the keys , the ship bouncing on the sea waves , the piano 's pulling and melodious tones , entranced by the music that he played for the poor people , my heart followed the tones up and down and the happiness on eeveryone 's face . Someone said that 1900 is happiness . He lives with his favourite music , people surrounding him are all friendly and kind , he need n't care zbout numerous complicated things and disturbances . Is this true ? Everytime the boat draws into the shore , he looks at the island in a lonely way . He called strangers secretly with a nervous and expectant voice , `` hello , you do n't know me , but , can we have a chat ? `` . Especially when that tramp told 1900 his experience . He wanted to experience standing on the island and listen to the sea . What would that be like ? I 'm not 1900 , but I can definitely identify with his loneliness and longing - he was very keen to be on the island that he had never experienced . This is a pictur of my dog . In this country , the price of cigarlett is 5times higher than that of in my country . Furthermore , every single pack of cigarlett contains advertisements which give us warning with horrible pictures about the harmness of smoking ( Such as cancers ) . I think I 'm severly addicted to smoking . Thanks for reasing my entry . Japanese usualy begin to learn English when they are primary school students or junior high school students . I want to improve electric vihecles and save the earth . About 2 years ago , I went to Australia to study aboroad for a month . I will send a letter to my fost family today . - Coincidently their horses got tired in the middle of the way , at the same place that the moon was washing her hair But , I 'm sad , becouse she is one of my close friends . At the beggining I thought I could put a picture representing France ( = picture of France ? ) Well , then I thought about that supid stereotype : French people are chauvinistic . That 's slso exciting . I will sell Japanese cakes and poteto . When I liesten to the songs , I feel happy . She would say to me : `` You always remember your birthday , but you never remember your father 's or my birthday . It make me very sad ! `` I 'll said to my mother : `` sorry , mum , I 'll nerver forget your birthday `` . I received an English lecture from my philipine tutor last Sunday . She taugt me that there are only 2 seasons in the philipine . ( dry and rainy seasons ) Goooooool ! ! ! goal Japan beat Danmark and booked a spot in a secound round of the FIFA world cup this morning . with thire mobiles . I remember when I was in college , my tutor said `` there is a gap existing between a customer 's expectation and perceiption . `` As far as the hospitality industry , it 's easy to understand the meaning . 3 stations later , I just stood up and said to her , `` pls sit down . `` Guess what happened ? ? The trueth is , do I have to tell her I was uncomfortable at that time ? Cars were congented around these buildings more than I had expected . French verbs are changing so dinamically . This is what it 's facinating with French . My dog died recently so I was suppoused to cry easily if I watched a sad movie . As usual , I did my favorite exercice ( and the one which is the most difficult for me ) . I do n't think this is quiete the place for you . After I solved my thirsty promble I wanted to write something . But I have no idea what I should write about . . . . . . . . . because recently I did n't do any thing that made sense . it killed more than fifty thousands people . and destroied so many buildings . I 'm going to go to an italan resurant tomorrow . If I eat slowry , will I lose weight ? But , authorities say the Tokyo area would be all right if the Fkushima plant were in a worst - case scenario . The running menu was 30km with a pace of 4min per kirometer . If you know , plese tell me . HONORISTICS AND `` THANK YOU `` and tried to use `` Keigo `` or `` honoristics `` , in Japanese . It is very interesting to correct sentences that are writtern by foreign people in Korean . In the futuer , I also want to learn Chinese and Japanese . I always says that I have eanught time tor that , and I learn in the night . So naw I have to write again . because a lot of Japnese companies are deep in red for the fiscal year of 2008 . My co - worker whose name is Agnes went on a bussines trip . My first daialy . I think that I might not have enogh time to see you , but if I have , I 'm looking forword to seeing you . I am still comfused about the realationship with my BF I doubted anyone could do the same as him , but after the seminar I could belive . My systert got married We will meet up and have a meal toghter , After the home celebration , I wil go to the pc room and play the game sc2 and then I have to down load some files form the brokend computer . Hm , maybe it 's not so easy to down load files fromenthe the computer . I was busy , I had a cold and I exausted so I did n't over work today . Recentry I have n't been watching TV . is we go into retail stores talk to people about Microsoft techenologies . You spoke up about what you wanted to see the next virsonal of Windows Windows 7 is designed be faster , more livele , and more conpartable , with more devices and applications , than ever before . so they 're really convinient to get to . And with the new preview pane , it 's easier than ever to see all the windowns that you have open at the same time . which allows you to interact with the conputer using only your fingers . now it is easier than ever to share those documents , pictures , videos , music , even prirners , with anyone in the family , from anywhere in the house . With Windows 7 , and suport devices , you can get even better experience with Device Stage . We hope you are as excited about the next version of windowns as we are The Reasens Why . . . But it was realy difficult - there was snow , a blizzard and I was very tired and weak ! : - ) Thak you for reading and correcting my sentences . . . When I reached the railway station , I choiced the wrong exit . I changed the date of my tecket at the front of the railway station and came back . My parents write more because they send it to ther friends , colleagues and relatives . Yeserday , I had a chat with a friend on Skype in English . Before departing from Tokyo I woried about my kids 's health conditions . I 'm currentry being extremely lazy , more than ever in my life . even though im still keeping in touch with them , some of them seem to have forgetten about me already ; that I even existed in their life or not . If so , I would n't chase after them , as I got to used to forgetting my friends intentionaly due to the problem of distance . The seasonings are soy sauce , mirin , sake and suger . Put the all ingredient in the pot , and boile it for about 15 minuts . Put it in a plastic bag whith flour , then mix it . Next make the sause . Its ingredients are soy sause , rice wine and rubbed garlic . Put the fried wing tip into the sause . I had a chat with Erica this moning . I asked her about the present perface tense . She said that , in France , the wather is bad ( ? ) but that she and her friend were really happy at the When they came to Thailand , we traveled togetter and had Thai food togetter . Good nite . They intended to make their local Bon - dance into major dance like Awa - dance , and held a dance festival in Omotesando , Tokyo , which is famous as a site of Goth - Loli fashion and of yougster who appear dressed as manga characters . There are his favorite phreases . He likes to speak these phreases onece every two hours . My anty and uncle are coming over tomorrow morning for New Years ' greeting . and poor people will stiill be poor . . . . No one wants to wastethe their income . Heppy new year , Every one It is a small class with only 4 peaople . There were small candles on evey table . But we chose a main dish owrselves . Lerning another language However we should use formal phrases in particulary situations . Definitety the word meaning is right , but actually it is not acceptable acording to the time and circumstance . My university , university Keio , is one of the most difficult to enter out of all the private schoo in Japan , so there is many people who are able to speak English as fluenty as native speakers are . It is regreted that I have not had such experiences , as I have studying English for so many years . It is tipycal of Japanese students that they can not speak nor write . Aside from abobe story , I am excited whenever I jump out of the cage and enter the new world . I need to do some shopping or lestting . As the reviews on the website said , the service was terrible , but the tast was good . I didn n't know about this nice site . I only staied for a few hours but it was so nice to see them again and chat . It featured TWO DOOR CINEMA CLUB , PASSION PIT , TAHITI80 and SMATHING PUMPKINS Of course , I ` ve learned English at school and at the University - but without any visible sussess = ) Once I started to read `` Harry Potter `` and , you know , I was totally irritated by the wokr of the Russian translaters - they perverted all the names in the book ! And I just do n't want to feel shame for my knowledge when I talk with foreingers or sending postcards on Postcrossing . . . I received my new sleeping pill , because I 'm insomunia . So nice to meet you , my freind ! `` Katuo bushi ( a piece of ( bried or breaded ? ) bonito ) `` and mayonnaise if I 'm not sure whether this rumor is true or false becasue But in fact , I really do n't like the deadish coding . Words and vocabraries Are you trying to let get your parents to start joggig ? I watched a documentary progaram on TV . Learning and promoing language ability has no ending . Many Japanies students do n't have their own religion . However , I was absurbed in the fantasy world and it did ' nt feel like a long movie . My friends who watched Avoter said this too . There is a Chinise ( maybe it 's Buddhism ) temple near my house . It occasionaly has events held in it . What celemony is it ? They should spare a thought for their neighbors before offering prayer for the dead , should n't they ? I think it 's worth to go to Guamu just for the color of the sea . When we smile , happieness comes to us . He told me his father just passed away due to a heart attact . But it 's quite shocking because his father was quite healty . In fact , I do n't know wherther or not he is my boyfriend . I 've been thinking that I realy want to go everywhere in the world . Because , when I watch movies about Victoria in Canada , I 'm always stunned by the pictures of huge forests and high criffs and the views from the top of the famous mountain . One tourist wants to watch Japanese Cosplayers on Harajuku streeto , another wants to be a Ninja . I do not know what should I say , and as you can see , I am not good at Engllish . I like wathing movies and TV shows . It 's the reason I want to learn English . My husbund and I visited his parent 's house yesterday . During occured talk I got shocked . In Decenber 2009 , I 've quited the job . Expecially , I like to smell the cold dust near nightfall . borrowing custumes I often feel lonly and bored though there still a lot of things I should do . Naritasan is a famous temple in Japsn . Ther was TV program on about pyramidz . I found TV programs about piramid on the last day of last year too . I wandrer why there are so many about piramid on new year 's days in Japan . But , as I watched them , I gradually bacame interested in piramid ! Some day , I wanna ( want to ) go to Egypt and enter a piramid ! Once more sad Middle Auturm ! Anyway , children will be sad if they will not be able to go out to join a lanters parade . I know some people who really do n't like Polish bands and singers because they say that Polish music is n't as goog as music from the USA or other countries . So , I know how much it costs and its consentration . I walk 20 minites to go to school . Several years ago , a famous mathematician named Arnold refused to enter the Pope 's academy because the people there did not justify ( ? ) Jordano Bruno . I am going to go to Iwate tonight to see my grondmother . So I must ride shinkansen altough a Shinkansen ticket is twice as expensive as a bus ' . . . I have to memorize many chords and pratice for a long time . The size is smaller than guiter and the guitar has 6 strings , playing it is easer than guitar . Right now , I am praticing `` Somewhere Over the raindow `` . However , I have to install the applications I installed on the last version AGAGIN , because the initialization was necessary for me to upgrade Proyo version . I 'm taking a correspondence course in pedagagy , I 'm so sorry to break my promise . I promised that I 'll keep a diary to improve my wrting skills . But every day I think to myself that I 'm too busy to keep it . Tomorrow do it , ok ? Then I dind n't do it when tomorrow comes . Yes , I know I should n't delay what I should do tomorrow . But I ca n't obey it , It 's strange . I really want to improve my english . And I know the way to improve English in my mind . But I do n't follow it . So sometimes I hate myself . Why do n't you do it ? Why do you delay it to tomorrow ? Why ? You ca n't do things like Aya . you prmise you will do like the way Aya does . but you break it . it 's so terrible . But I do n't know why I ca n't . Every day I want to be better . I study hard to catch up with my calssmates , I think that they are really great . I must study hard to overtake them . and I do it im my own way . Every day I study English untill about 12 o ' clock . I review my subject . I do lessons carefully . I hope I can catch up with them through my hard work . I know it ca n't be callde `` hard `` , in another 's mind , it 's a ordinary life , ca n't be callde `` hard `` . As for me , I think so , but if I stay up too late , I 'll feel too lethargic to have lessons . It 's my weakness as well as laziness . Second , the governmewnt should take Japanese twin sisters are roll playing MAIKO with a univercity student . I am attrcted by MAIKO . Try to sarch `` NHK - DANDAN `` in the internet ! ! Her daughter is going to start kindergarden this April . somebody wrote that this website almost has Japanese as the mother tongue laguage and I think I could not get to sleep . because I feel so excting . It 's expensive but usefull for me . SUBWAY - sandwitch I always order Subway 's dayly recommendation . Yesterday , I ate a BLT sandwitch . One reason that I like to eat sandwitches is I can eat vegetables . Recommenndation of today is `` Avocado Veggie `` . I thought I could study hard in my dormitoty , however I was overconfident . com is still undergoing maintencance . I decided to unionize with the others to show our attitude that we wo n't aceept it ! Today I talked with my best friend , and she said thath her mother is sick . I 'm impressed by his belife and I hope the Prime Minister of Japan has I want to visite Bhutan one day . In China , parents always treat boys better than girls . Also , I 'm smarter than her , so I gian more attention from our relatives . I cried out : how could you say that ? you mean I just help you because I want something from you ? okey , you tell me , what should I ask from you ? I wish you can get me a girlfriend ? or , or wish you can marry me ? My sister totelly drives me crazy . . . My parents and I just confussed about what 's happening to her , and what can we do for her . She feels longly and homeless . These days / Recently , I 'm redading a book called `` Small Steps `` wrirtten by Louis Sachar in English . To some extent , experience can be said as a custom or behavior that was formed in past days , and can give you ability to know what to do when the case is different from what exists in textbook . Recently , I feel conttantly irritated . When I see people who are very ill - mannered in the street , I can not help but get angly . I feel very relieaved when I communicate with you on Lang 8 . I enjoy holydays ~ I 'm reluxing on the holydays from 8 / 13 . Today I 'm going to clean my room , loundry , washing the deshes and so on . So , I 'll do these things on my holydays first . My sonsin is sick and I think I am going to be sick too . I am a univercity student . So I gose to baseball stadiums at least once a year . Later he is going to show this pickture to his friend and say you are his girlfriend . Filally I agreed to do it . So at this period , I do n't have enough tme to administrate my blog . Coundry Living At the time , I could n't understand English well ; I just enjoyed looking at the colored pages without reading the articles in English . She did not study hard and endded up as a maid too . I 'm sorry for the person who replied to my writting . After I saw your writting , and tried to see it again , If you see my writting again , feel free to mail me . but useally I do n't have to write in English . I do n't think that I can say , `` I livd in England , `` as the first sentence of a speech . After that , I moved to the living room and called police but , at the same time , he cames in to my house . The police was asking me for my adress , as he keeps coming closer and croser to me . I put the telephone receiver on a table because I thoght the police could get my adress with their tecnology . He cames into the living room . I attacked him again and again untill he could n't stand up . hallo ! Everyone : ) I want to study English little by litlle so that I can go study abroad to in the future . The Ueno zoo was fomous for having giant pandas for a long time . Especialy Indian movies . becuase I was n't sure about a few of the questioons , I guessed . My out - patients could n't rearch the hospital due to stormy weather . It 's so beautiful and . wondaful . Fact : I attended a trainnng session for running . It said that scientists have found a new species of spider wich is able to spin webs about 25 meters long ! I do n't think I 'll ever go to Madagascar for a hollidays . . . There 're common sence that It 's difficult to memorize vocabulary and there 're too many thing to memorize . I do n't known what happend to her . She often graspde / rubbed her ears . It trubled me . It would be very effective if your working atomosphere is like a English speaking country . Name your dog or cat , Jack , David , Alice or Cartherine . Hia teacher is an American who stayed in Japan more than 6 years and is learning Japanese . He likes Sumo and he belongs to a Sumo club where he must speak Japanese , because all the members are Japaneese , he said . Some Japanese are excellent teachers who can teach you good English and their grammer knowledge is marvelous . Hi , everuone : ) But the article I read was critisizing this movie because it is historically wrong and Pocahontas is too sexy : ( And that this wrong image will affect the thoughts of children too much . In the article , this kind of thing is written : `` this story is like Anne Frank falling in love with a Nazi ofiicer . `` It means that this kind of love can never happen between a new settler from England and a Native American . I want to study languages by chatting with people on my computer and I serached for a website like that . ' Maria ' wanted an option of replying to comments to be implemented , with which I strongly agreed , and she encouraged us to use ' native nod ' function more to confrim the other natives ' correction would be beright or fair . Maybe all we want is to make this wonderful language - learinng site ' sustainable ' in terms of funding or in terms of level of correction of any languages . When I went out to the exit from the circle road crossing route19 and route1 in long beach , my car bumped a car which overpassed my car on the left side . what is why , I migth go to phuket . Because I think that they sang more earnestly about people 's feelings than in comtemporary songs . It was too difficlut . I think taht Italia has many home - loving people . I realized there was an increase of foreigners from various coutry . I really love a multi - cultural and chaotic enviroment ! the main avenu is srrounded by many anime signboards , which are huge and crazy ( as many reasons . . ) . and illigal merchants were selling illigal software or erectric goods to pedestrians . Becouse , We have to do practice and more . I want to obtaine a driving license soon . Mexico is just as beutiful as Canada . My town is as big as Calgy . Mexico is not nerly as big as Canada . I do n't like the bus becouse the bus is very crowded . If I ca n't find a seat , I have to stand for fourty minutes . The grammar in these two languages is pretty simmilar , though . If there are any affixed decorations ( for example , banboo leaves ) , you should hide the small bone with it . However , I only have a few imformation about Mexico . If you have been there before ( even if you have never been there , but you are familiar with Mexico ) , please let me know which places I shold go to . and foriner . haha My dream is to go and live in another country and marry a foreiner . Finally I am wrting a letter to you that I hope you will like . grandfater , I love you . . But I left my work for parentally leave . The concert thema is the Final Fantasy game series . Today I saw an article that if express tolls become free , many pepole will use cars , and as a result the theat greenhouse gas emissions will increase . I do n't think it 's smart to waste the commutin time . But , I 'll be larning English on Lang - 8 . It 's a very excting spot for Ghibli fans . Today was was very ivent ! this is my frist time writing something in here . I am restarting this bolg . The main purpose of this trip was to attend a wedding celemony . Because sometimes Japanese wedding celemony are really long and boring . On the way , I am really scared if I ca n't explain why I did n't ntice the valid period of the pass which depends whether I can keep on staying in Singapore and study . Bu lucily at last , after 5 hours of waiting I spoke to the counter staff . I am a software enginner . Somehow a lot of sofware enginner like animation compared to people with other occupations . I expalined my patent to them . I noticed that the American culture is very diffrent from that of Japanese . I 'm very very suprised , and I have to study the culture of other countries more and more , especially Australia 's . It was tasty , though I fogot the name of it . but I like everyoone so much . I went to Germany for bussiness last weekend . I ate sarami , it is very good . I am looking forword to drinking it ! Strangely , I think that Koreans bear a resemblance to Isreali because they share the same passion and temperament . How misterious and marvelous things God will do ! I called why the notice is not announced , and they said that it was delaied to next week . There are a few visotors and huge , about a meter of snow . I got into a blkes It was preasant to rige on my bike . I rode on a bike as a child so I still ride on a bike even after I become an adlut . I have got to be carefull so I 'll never break the speed limit . Today the wind is really storong . My collegue , who come to our clinic by bycycle , said that it was really tough to pump the pedals because of the oncomming wind , and that it took twice as long for him to arrive here than normal . He saw some people fall off on the road . This is sometimes dangerous because in the day when the wind is storong , we have more patients who break ther bones . The purposr of doing that is to enhance my English skill . I want to get other people to understand my English . unfortunatelly , I can not step in because everybody else changes a certain topic too quickly with smooth English . Jizo holds a staff in his right hand and a wish - fulfilling jewery box in his left hand . Thank you for understanding my situation and please do n't be offense if I can not provide you with my Skype ID . The photo studio brought me these nega . . btw today I worked at the cram school and it was my last calss . Anyway after I made a leson as usual , I started to give the students some advice like ' just be hoest about what you want to do when the time comes to think about clleage ' ; ' please do n't lose your pottential ' ; ' do not be afraid to take on a challenge and make a goal to motivate you ' ; and ' please study what you are interested in and enjoy developing your knowledge ' . Because many japanese students including me study just for collleages . Although they still do n't know what they wanna be or what they can do , they have to decide what their major will be beforehand . But I think that 's rideculous . After I entered coulleage , I found out many things that I should have noticed when I was in high school . The reason for my studing English In fact , we are very worried about it , because if we fail in this exam , oue parents will feel very disappointed , and we will feel very ashamed in our classes . It 's going to be a very spontanious trip ! So , I have to learn something new to do during long hoidays . My sister was good at the Flash MX Proessnal . And she gave me the So , I feel nervos . I ate a croquette of crub cream curry . I love croquette of crub cream ^ ^ Rtythm games are similiar to learning languages because both of them require so much time , persistence , and unceasing effort . This passege is mainly about the U . And I belive that without challenge there can be no self - respect . veryone would like to have it , and at the same time is afraid of losing it . That was a wondeful sunny day ! Luckly , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . Fior instance , I was asked to find the mistake in this sentence : You should n't turn down an opportunity when you get one . Tommorow is the first work day this year . I hope my work in this year is successfull . I 've just startpoint my job - training . Tday , I went to Cross Iron Mills ! A clush bag is a trend among young peple . Gary is ild . They are wroung . I 've been planing it recentry . All the Chinese food even vesetables were too . I tried to eat the food but It made my stomic upset . It was three tims greasier than the Chinsese food in Korea . Last year , the new ful ( from pig ) came here , too . ( the swine flu ) But it is bad to touch our eyes and nozes , so it will protect from the virus on hands . She and I were so excited and fureaking out ! ! Story of two mice . Mee & Moo the mouce 02 Actualy , I have no idea how to get an ice cream . Although private schools are still in the experimental stage and are much more expensive in comparision to public schools , there is no lack of application for the enrollment . and the acter Eric Mobius . After that , one of my friends wanted to play a shotting game . I tought Facebook is a tool of communication for people all over the world . She just stood outside the door untile her mother came home . Have you ever eaten Japanese fast fastfood ? If you come to Japan , I encourage you to try eating Japanese fast fastfood . The Yoshinoya is very famouse in japan . Hapy birthday to my friend ! ! 7 / 5 was my friend 's birthday , so our friends celeblated his birthday last weekend . Today summer vication ends . I was so happy during this holyday , I traveled outside the city . I missd my friends very much , so I am ardent to see thm tomorrow . I am going to study gramer next class . I do n't like gramer . Now , I 'm staying in Fiji becaouse I became student . By the way , lately my English school 's regidence was atacked by It was so denjarous . But abroad study campany still has n't tolked about it to us . So , every student thinks this campany can not be trusted and it will be bankrupt in the near future . So I am going to serch hard for another job from now on . I want to know about recomended shops , the climate , places that I should visit and so on . A week ago , I held a conference call with my manager and knew that the clients of new project are australians , so English skill is really important to communicate with cliens for new project . I cooked eggplant - laced pan - fried noodles , boiled radish , and natto omelet . So I hope thay you can help me with my English ~ It felt like my togue was burnning , During third period , we have to practice chourus . I wish to win the crown in the chourus competition next month . I 'm not strong in english grammatics , but I 'm still studying . . . pleasa help me ! ! I 've taken a bas everyday , but my feeling and scenery was different from everyday . It is a preatty day in Bangkok . I am going to have freakfast . It was a preatty dream . If I saw her in Bangkok I wonder what my frist words would be . I do n't know but maybe I would hug her frist . Despite this , I foun it 's quite difficult to speak Englis well . I planned to be awake in a few hors after my nap . According to the e - mail , I made it to the finel ! The finel presentation will be held this Friday . The templarature in Beijing is over 30 degrees . Now the landlord of our office is going to break the contranct and kick us out because he wants to use the place by himself . I 'm really willing to learn French and English , but at that time I was starting to forget my Frech becasue in the other Canadian cities I did n't have to speak or write it for about 8 months . It was AMAZING for me , because I was always dreamingn about the moment I could speak both languages very fleuntly . Could you tell me What the dorama ` s title is ? I had been exhasuted from all the stuff that I had to handle , so I thoght I needed a break aand this was the right time to take a break , even if I end up doing well and getting good grades this sememster . The temple 's quiet and calm environmentnd and my meditation may help me think more clearly . Had quite an interesting tiscussion about routes and reason of fic - writing . I junt found this site and I am a newbie here ! one of the important reasons why I study enlgish is that I 'd like to communicate with other nice people from all over the world . Although it is strange to talk to myself when I am lonly , I enjoy practising English this way . I was so surprised that I have been asked to take a break from my current job on Thirsday since my poor performance at my job due to my body condition is not good . I will seize this period of time as a vacation to recover my energ and ability . Today , the typhoon privented me from going to school . I can do houseword . Then my mather will be happy . ca n't go to school untill Friday . Be carefull , everybody ! I hav n't gone to the sea and gone swimming yet so I really want to go ! Korean 's big hoildays Korean 's big hoildays are coming up soon . What am I going to do for the coming hoildays ? After thses holidays are over , it seems really gloomy because there are almost no holidays in 2009 . These days I keet losing money from the stock market , which always makes me feel like I got up on the wrong side of bed . My friends said to me ' odajinii ' and I was a little happy . I read junp and magazines every week B : Well , I understand what you are saying but I want to keep this cordial relationshio with you guys . Anyway , you have a captivatig look . Englisih is not easy . . . I am studeing Englsih . I went to an amateure rakugo meeting yesterday for the first time . I like the chiken pies ^ ^ Sometimes I feel frastration about my computer skills . I truly belive that . I want to become a customer survice agent in an airport . It was very interesting and inspirable for me because they seemed to enjoy their conversation and I could feel their energy , even though some of the sentences could use correcting . Actually he can now speak Japanese more influently than before . Now I 'm following my acestors to be living where they had lived , therefore I 'm going to the past . ( I know for me is the right answer but I just want to memorize wihtout understanding ) I went to Graymonth with my flatmate . Testerday I went to the NBA game , Toronto Raptors vs Chicago Bulls . My cellphone accidently rang warning me of to charge my phone 's battery , that is also when I got a new idea . `` if you could , next time can we have tea in starbacks ? `` Im goin to finish writin my graduation thesis soon . Today , I 'm goin to go out for a drink with my friend . I try all the time to find an answer for the reason , I mean the most impoprtant reason we are here , on earth . I asked myself , did I do what I should onearth , sending the good messages for my envirment by studying , then working and trying to help people . . . . ? At the end , I felt even if I did and I am still doing this , I will never be satify with myself . If I help people materially or mentally with what God gove and ? still gives me ( like money , health , knowledge . . . ) I will never be at the top to thank God . no , I try to get hapiness and not just pleasure . I went to the hospital and the docter checked my temperature . Today , I will start dialy in English . I took the introduction to theater class this semster . As you can see , this is an introductory course for theater , but it is still chalenging . And next week , we will performe monologues in front of our classmates . Details of the monologue assingment is that we have find books of monologues , and pick one to recite . The exact performance day is next Wednwsday and Friday . After I read it , she will explain deatails on how to performe the monologue in the class tomorrow , so I listened carefully tp improve mine . I think I could do a good reheasal before the performance . I like croqutte because it does n't cost much ( around 10 - 20 yen each ) and croqutte with brown ( worcesteershire ) sauce is the best with a lot of beer . I ` m going to go to Australia in semptember I am stll worried about it We wirte a diary in English , read an English newspaper , read original booksin English , and study vocabulary together . Thank you for your kindness and hospitarity . I had not spoken English for a longtime , it was difficut to speak fluentry . I think learning anothe language is like sports . According to him , to keep your abity of playing basketall , you need practice everyday . I do n't work at the moment but I am going to look for a job , which I hopefly To be honest , I do n't hve any interest in soccer at all , Well , I thougt as soon as possible meaned just a few days . Rakhmaninov 's `` The Bells of Moscow `` is difficult music for the figure skating , and maybe for the judges , I think . I love this weather because it is like apring ! I hope to gain new knowladge ! I found it just now whilw I was using another site to learn English . What a splended site ! The only things I know about him are that he is marriaged and had a baby recently . So I boutgut two sets of coffee cups - Pink and Blue for him and his wife : ) When I got home , I checkd the word with my dectionaly . By the way , the reason why I mentioned abot movie theaters above is because I will write an essay about the construction of movie theaters . First of all , I agree that constructiong movie theaters is necessary . I wil upload the cat 's pics someday . I want to be a member of lang - 8 , so allow me to introuduce myself , I 'm Hill from Mainland China . I have writen a love letter ( But I 'm not sure ) for the principal when I was a kindergartner . I 've had no chance to play with kids resently , so Becouse I have exams untill next Wednesday . That is because foreign people ca n't come this univ if they do not have much money and considering the living standard of Chinese people , ordinaly could not come . However , many Japanese people , including myself , have several complicated feelings concerning Chinese people , because the Chinese response to Japan is unacceptable to the Japanses mind . Of couse this does not apply to all Japanese people ; but it is a pity that some of them it does actually apply to some of them . Therefore I will end my commmet . addiditonally , I have to cut and cut ( all the ingredients ) to eat . Terefore , I want to let univ . If I take part in such an activity , I can contribute largely to students and their parents concering their meals . My rome is very hot right now ! I thoght that my accident was awful , but I appriciated my friend 's kindness . Playing guitar is interesting , althought it 's a bit hard , I think I can have fun from it . Suprisingly , my guitar teacher is younger than me , and he said that there is a seven - year - old child playing guitar well on Youtube . He said if you pratce hard , you will also play guita well . What is the most inportant characterastic to being a good teacher ? The unuversity is the most famous shool in Shanghai . There , I made freinds with one Shanghainese girl . First of all I 'm going to lose 5kg of my weight without demaging my health . I will neither skip a meal to become thin , nor do sports exaggratedly . The same happend when I skipped meals . Yesturday , itturned out he had been sending it to `` big ' r ' obe . Travel to sinapore . Theycan get to choose their last meal . She said , `` Many citezn thouht some judements were unfair . How do you want to be procucceted ? I am going to pet shop becouse I want to get her some clothes last week , I was there as a substitue . I may get tir in the middle of the game . then , I felf I need to improve my English more and more . I have ( basically ) been starvining myself for an upcoming examination . . . When I study for a long time ( especialy subujects which I 'm not interested in ) , I become a bit crazy . . . If peaple look at me , they will ( quickly ) look away . . . We talked about the examination like I thought we would . . . while having dinner . . . . . . though we all really wanted to change the subjuct . . It is writen in English ! So , in my opinion , the economy gives us a kind of grammer to recognize the environment around us in a new light . After all , meeting strangers means facing the unknows . And it 's human nature to feel a bit uncomfortable about the unknow . Most of our fears about dealing with new people come from doubts about ourselvse . because it is defficult to put on . It makes me creay , because I will feel very tired when I am busy with my work , I want to take a break , but my colleage ask me to do something important . But I ca n't , nor can I talk about this with my friends , they will think I am creay . But what I am doing now has nothing to do with English , and it is in cotrast with my aims . I do n't know how to hang on here , but it also very difficult for me to change another job , because the high cost of living in Shnaghai . I am a little afraid of this kind of thing , because I do n't want to ask my partents for money , because it is hard for them . Please correct my writing from now on and engage in conversate with me . Also , what kind of materials should I study that will allow me to speak out or verbalize more complex ocabularies ? But , because I have never been to other conturies , I am a little worried ( Past tense ) One imortant reason is that my birthday is on the 9th October . I went to practice bollroom dancing for the first time in two months . The Teacher 's eaplanation was always precise , and it was easy to understand . Lomg time no see everyone ! ! Though we promised to meet at Kichijoji stationon on September 29 , he could not get on the right station . In Japan we call America , Canada , France and England the four main contries . Thisfamous story dipicts well how large Inokashira park is . However the girl did n't stop standing on the boat and finally , she was scolded by the superviser lol . The master repled `` none . `` Unfortunatly , they had no money so we went to a cheap one . But they were hopehully satisfied with my translation . I did streach my body fully before the class and it helped me follow the moves easily . nunance , implication and connetation , ect . In addintion , I 'm curious about ' would have p . How differant is it . . . Korean English teachers taught me incorrect grammer in my school . I believe you homest . How differant is the nuance of these sentances ? If you are interested in Korea , korea language , culture or singers , I will help you , Would it require an addictional fee ? I persented yesterday , but the presentation did not go well . I ca n't recogonize what the questioner was saying . I was shoked ! ! ! ! ! ! ! ! ! ! ! ! I talkd so much on Saturday because I joined my friends ' bridal party . I would like to know if I have written it / this correcrly . Hi ! ! ! Now , I 'm studing `` Media History of Japan `` at my college . My other lenguage In Spain , Spanish is the oficial lenguage but there is also Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak all 3 of them . ( ? ) As for Catalan , it is a romantic language derived from Latin and is spoken in Catalonia . ( Levante is in the area of Valencia , the Balearic Islands , Andorra is a small country in the Pyrenees , southern France , and some in an Italian city called Alghero , is the 75 most widely spoken language in the world and I am very proud to speak . ) ? ? ? I cut my hair for the first time since I came to Austraria My favolite hair style is short hair ! ! ! so my schedule is very flexiable . I would be greatful if you let me know when would be I 'm a menber of Track and field club . Fortunately , I could avoid that and I 've beeen working as an teacher in a high school . Is realy hard write here everyday when you have a endless routine . And I thought the only thing that made us feel a little unhappy is that the serving fee is 10 % of the price , even higher that the GST ( the Tax ) , which they did n't meantion outside the restaurant . Super robbot Wars L This is tha latest in this serize . Today , I restered on the web site , and then added friends . The main materia inside the cabin is leather and aluminum . I came to take an interest in it because when I 'm reading Japanese journals that male native English speakers wrote , I ocassionally come across feminine speech and I 've had a feeling of uncertainty about feminine speech in English . Todya , I 'm in a bad condition . I bought a bottle of watter first thing when I arrived . I felt good working because my friendly calleague were just seated next to me . Shewent to China adn studied there for 4 years . The researcher , however , argures that it is no problem because it is not clear that carbon dioxide causes global warming . The restaurant is one of the most delicious creparie in Paris . At last , T ( t ) he Summer Vacation is coming up tomorow ( r ) ow . My Pregnunt Friend She is pregnunt now . Touhoku has a lot of beautiful nature but the nunmber of historical tourist attractions is less than other areas because it used to be the barbarian area in this country . Ritht now everybody greets me like this . LOL In addition , I 've considered my plans to improve my listening ability : listening to some CDs for TOEIC or Western music carefully and confirming those lylics ( As far as the latter goes , I think it 's kinda meaningless though LOL ) Actually , I came to know my big weakpoint in English . Is reading nobels or magazines best ? I can not get to sleep until 1 o ' clock in the moring . Watching two episodes of FRIENDS before sleep is my hobit now . So after all , it is 1 o ' clock in the moring . She invited me to a restrant and we talked for a long time . After gratuating from university , the rest is beautiful when we remembered the past between classmates . This was my frist time making a cheese cake ~ Therefore , I could enjoy driving while admiring the beautifle view of nature . We could go out to eat delisious Japanese kaiseki , which is a set of Japanese food , becaue my grand father was pleased that we visited his hous , so he celebrated our visit and the new year by treating us to kaiseki . I 'd like to get well soon , because I 'm going to go to Ausyralia on Sunday . I probablly understand Past Perfect Continuous which I mentioned in the latest diary : D Thank you everyone : D I do n't think I could live in the room where someone was killed or committed suicide and nowadays appears on full fullmoon nights : ) There were Mexican vampires , El Muerte , Retablo , Santa Muerte , Mexican holydays . . . It 's convinient to use , but when I turn on the heater , ( the air in ) my room is becomes dry . I think it 's the biginning of a cold > < ! So I 'm hanging out a lot of wet towels in my room for my thrat , because I do n't have a humidifier . I entered into a Japan masters swimming commpetition . Ten years ago , I was in my second year of unicersity . I dind n't have a exact address . I rememeber when an English teacher who came from American said that Korean emotions are affected a lot by the weather . I was really surprised because my feeling is often changed by weahter , too . I 'm a bigginer in english The house was increadible beautiful . Heloween is popular with young people . So when I feel ache on my back , I look at my addomen immediatly . Oh , a litle part of the world . Good sleep is very improtan for our health , especially for girl 's skin . If I mention Japanese Manga subculture , and how it is gradually spreading wirldwide nowadays , I can give a basic outline for Manga fans . Like for kindergarten boys , kindergarten girls , young teen boys , highteen girls , men who golf , for gamblers , for marhjan fans etc . All manga is able to be clearly devide into two family trees . One belonging to men ` s culture and the other women ` s culture . Today is like yesterday and I think tomorrow will be ilke today as well . I 'm sick of the same rutine . My husband told me about Buddhism meditation , and reccommended me to wish well on myself , on people who are close to me , on all living things , on others whom you dislike , and on others who dislike you . do not hesistate to ask : ) At beginning , I thought we would barbece by ourselves . I apperciated their hard - work so that we could have such yammy food . I diside to study English more / harder . If I wrote this sentence , I would plobably mistakenly use `` which `` or `` that `` . So many suggestions and advices were buzzing aroud my ears to tell me which way should be taken and which should be isolated . I do n't konw why the first letters can not be auto - capitalized . Welcome to correct my takes misktakes . One of my favorite caractors in Greek myths is Hermes , the Romans call him Mercurius . My littl finger got in my nose . I saw it in the ketchen after that . mayby somebody will help me ? Stomack Flu But having found this site I dicided to start a diary here instead . Now I am quite exhausted , but it 's okay because I would have been dpressed ( for nothing ) if I had nothing to do today . The day is Nayional Maritime Day . Recently , I love looking at the National Geograpic site . After few years I dicided to brush up my English . I attempt to listen to English podcasts , and the radio every day ( Maby you know some good radio stations with are lot of stories or interviews ? ) What 's more , I bought a computer program . In Japanese , however , it 's totaly the opposite . I really enjoued it ! I want to be able to speak English fruently . Lately I like to watch `` The OC `` series dorama on DVD . However , after comming to the US , I feel this is not true . I 'm translating some part of infographics book and ca n't say in russian `` mapped image `` or `` mapped picture `` . I have an example sentance : I felf his love for her . I visited sports shop to buy a belt bag for runnninng , which can hold a pet bottle . Hoever , recently I 've been reading some books ^ ^ I do n't know the sistem of lang 8 . Yesterday my wife and I went to see Avatar , the 3D verson . We did n't plan to see it in the first place , but after viewing so many recommandations and the high ratings people gave it online , we decided to give it a try . Hope to see your letter or masege . . . Are the governments grasping the serverity of it ? It is still hot in Japan dispite it being September . Almost half of my time at school , I sturggle with Internet exlorer , not MS Word . Today , the feneral for two Marines killed in Yonpyong - do was held . I cried during the feneral . Like bungie jumping and free fall . Janpan 's earhquake I remeber thant I forgot to take a bath this morning . I like harbs . Many kinds of harbs are in my house . Especially , he likes Tyme , Lemongrass and Chicory . I sometimes use my harbs for cooking . He sometaimes watches Japanise movies . It 's a holyday today . Perticuraly when we crack jokes each other , we transcend the generation gap . I understend a lot but my speaking is awful ( ? When I was a high school student , I was always cocerned about the school uniform 's somehow ugly style . When I touch my uniform , I remember my teacher , my school life and all my efforts in that lovly high school . I started to study English on Lnag - 8 . I watch animetion every day . Some parts of the aninemation I have watched few times . I hope the animetion can come out again . I understand myself , I lack some grammer and vocabraly . However it 's may be difficult for me to make my dream come ture , because I have a four month old baby . . . Maybe it was a deram . . . If he kept shotting in a normal way , he may never have caught a sheep . There , he walked cheerfly . Our country affected by huge natural disastute . The aftershock contine now level 3or4 . I do n't like scinece . I want to meet her again and talk about things that had happend lately I can incroduce myself here and we can make good friends . Before I watched the class , I did n't know how a nursery was differnt from a kindergarten . I want to talk in English with foreigners but I do n't have an oppotunity like that . So , I ca n't speak English with a foreinger . There are many foreiger guest in Roppongi , I think . Actually , I tought the beach was huge when I took a trip to Miami . . . Well , I enjoed that time ! What a borring news ! ! This is my fiest diary . It is very cold , thougt today 's weather is fine . From Fumi in Nara , strugging with my final thesis ^ 0 ^ He went there with almost no English skills and he also did n't have money except for the scool fees for the university . The lessons are one - on - one , and the teatcher is a very intelligent person , not to mention an exellent player . My colloborator from Chine puts a lot of pressure on me . Please let me know the rasism that your country has . Speaking of `` sakuramochi `` , Japanese traditional sweets , there are 2 diffrent types : I feel lonely , but , next month , we will enjoy beautifull wisterias in Nara . hai , are you still awake ? I need your help to improve my vacab . So if you have any good suggestions on how I can improve my English , please let me know . In the morning , there were lots of gray clouds . They put me in a bad mood . We stayed under one umbrella and talked , laughted , and did different , funny things . I luve live in Taiwan . Currently I am searching for a new job while learning English and Japenese . My interests are reading and listening to music ; I like to read novels and comic books , and enjoying listening to Vocalid songs . It 's not my first time writing an entry in Leng - 8 , as I 've worte in Japenese before . I love jogging , I used to have this habit , but sundely I stopped . It 's fun , especialy to me , because I do n't like to exercise myself in the gyn . It 's too crownd , I do n't like the music , and I alway have a excuse not to go . I 'm working realy hard because I 'm going to travel on June 28th , this summer , and there my aunt works with models , this boders me a little . I 'm trying to use words that I usualy never use . SAD PS : My guitare was broken last week quite badly . I 'm still waiting for the luthier to fix it , but it seems that he is taking his time . Recently in Japan , animation dance is becoming more and more popular among young people becouse of a dance team . Their name is Hamutsun Serve . Furthermore , even when someone has a good command of a certain foreing language , if he or she has no absolute idea about the culture of the other person who is speaking , it will affect their conversation . I went to the Abercrombil & Fitch to buy clothes . Then , I reserched this song 's infomation . It is just a tweet in the early hours of the moening . . . I found this web - site in Nikki 's daily newspapper . I know , freedom is realy good thing . I have to read a lot of documentation , comment 's from programm code . It 's realy amazing Sometinmes , I want to try to apply to be admissioned by some American school , but I know , I wo n't accept it if I do n't study hard ! This year one wo n't be able to see the fireworks show . The municipality ( Edogawa ward ) has dicided to refrain from holding the event because they feel it would be insensitive to ( the ) victims of the 3 / 11 disaster ( the huge earthquake and tsunami that hit northeastern Japan ) . For several weeks after the disaster , some people accesed ones who were enjoying joyful occasions by saying `` That 's unscrupulous behavior `` or `` You should refrain from such activities . `` These sentenses are correct ? The luckist man in the world , Steven Bradbury , took the gold medal in the Salt Lake City Olympics on 2002 / 2 / 16 . I 'm so exhausted becuase I worked out for 2 hours . Even thogh I do n't have any energy left now , I feel much better . I asked a shop girl if she can try to find the Leggins in other UNIQLO shops around Tokyo Ikebukuro area . She phoned many shops , but the result was the same . I highly recommand you all to use a bluetooth keyboard . Did anyone whached the news about the earthquake in New Zealand ? Yesterday , Christchurch had a big earthquake . At lunch time , our teacher told us Christchurch had a earthchurch which is level 6 . 5 . When I came back home , I watched TV , I heard that about 65 people died . Now , that 's amazing , I hope that people who live in Christchurch can be better . In concusion , these are the reasons why I think the Internet , mobile phones , and the development of the medical technology are the main inventions and innovations in the twentieth century . There is no judgement , no confradiction and nagative talk and we sometimes can teach each other something we know . I do n't have a lot of friends but I do have a few close friends . I know they have their own themseives however ther are helping me improve . I want to write English very well . I want to speak it very welll too . My mother is a nurse whose job is to care for hadicap people . Her hospital has a school , car , and bus for them . But , in the country I am living in now , many handicap people use the pablic bus , which have a lift for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work whthout hiding thier identity , and the class - mates talk to them as a one of their friends . Most of my friends will choose coporate life . studing overseas would also take almost all of the money I have , and I would need to sell my apartment which my parents bought for me . It is so hard to make this decesion . I hope verything is fine with my friends . If nobody wonts to correct my notes . It took me about 10 years before I lerned English . As a Japanese , I also worry about TOYOTA 's probrem and situation . I 'm looking forward in prepere the school 's festival . such as Germa , French , Korean and so on . He has gotten a girlfriend recentry . I felt so lonry . I volunteered at the univercity last Saturday . the parents of first year students come to the campas . the campus tour was so popular , we incleased tours . It took more time than re - installment . damm . `` You will be here in 5 munites ' time `` . Does `` in 5 munites ' time `` mean within 5 minutes ? on an early mornig he chased me and then he finaly stopped after a few moments . Begause we can operate it by putting our fingers on the screen . I still ca n't bilieve it . . . But today , I found on the interenet that the U . K youth moility scheme was already full by 19 - Jan - 10 ! I feel also this cetntury 's moving very fast . So I definately recommed that everyone comes to Seattle to study English ! ! For that reason , multiculture is a big advantage of the tourism industry and this can contribute to the development of the whole society in general . I have had some frusutation in my office . Hellow everyone , my name is nakasan . I want to spaek English . Yesterday , I went to Toukyo Art museum . The museum features [ Stadio Ghibli ] now . [ Stadio Ghibli ] is a Japanese animation company . I heard Napoleon Bonaparte was a short sreeper . I 'm embarrasshed / / The day after tomorrow , I 'm going to move out from the currnt place to new place ! I ca n't belive this many things are here . Because I 'm taller than avarage for Japan and my shoe size is bigger . Have you ever heard about the Winner winner chicken dinner ? It is an old American motto with long histroy . OK , let me tell you something about it . It is said that in the 19 centry in american , Las Vegas had already become a fairly famous place where rich and wealthy people spend their money . At that time , there were few casinos there but each of them provided good service for custorms to enjoy ther time there . At firt the custormers mostly consist of the rich and famous people , but as time goes by , the economy got better , so it brought more typical people without fame or a high place in society to Vegas to try their luky . At that time , almost every casino brought out a new service in which the custorms were able to buy a kind of dinner with chicken and some meat in it . That was such a cheap choice for most players , so it gruadtully become an American motto : Winner Winner Chicken Dinner ! Now I am looking for a new opportunity , espeically in a foreign company . Please check this text for me , ergent We have Chinese people who can speak Itailian , English , and germany . . Reacently my opportunities for sleep have become short because my work schedule is too full and Actually , I got merried and have been here for a year . I usuall use broken english when I talk with American or other people , but it 's enough to be able to communicate . Life in a forign country is hard . Lost ( my favorite ) is about the survivors of an airplane accident that crashes on the beach of a misterious tropical island . The survivors try to escape from the island where amazing things can happen ; for expample : people are healed from illness , there are polar bear attacks and a smoke monster that kills people . I hope you 'll help me brush up my Enlish . White day is a very happy day for somone who has a boyfriend or girlfriend . And they give presant , such as candy or red - roses . Aside from the chimps , Rideing them seems to be fun , First of all , most of our cities are very dense and our roads are very , very nallow . Secondly , Japanese people are very health - consicous , so they tend to walk places , or ride their bikes . I saw on the news on TV last night that the goverment and some of people in Thailand do n't understand each other . The people who call themselves ( red shirt ) are protesting against the goverment because they do n't like the Prime Minister . They want the Prime Minister to resign from the goverment . We have had this problem for a long time , but last night something that we did not expect has happend The goverment decited to stop the Red Shirts . One of the people who died is a photograpy from Japan . I am looking forward to know what the goverment will do in the future to make the improve the suitation . and they can understand each other . I hope everything will be all right and that no one else will die in the furture . Thank you for helpping me with my English long time to write my journal entry . He did n't send any messages or emails during his absence , nor did he take the innitiative to talk to me after coming back . While having lunch with my junior colleaque at a pub , I saw the selected design for the 2nd phase of the Yongjong passenger terminal on a newspaper , and I was almost stunned by their reckless design scheme choice . There are very beautiful flowors in Japan during the spring . I am still a student , and my major is Internation trade , Oh , I forgot , I 'm a freshman . To make friends is to improve my spoken english level , so , hurry up , plesae help me , let 's work hard ! Whatever your dream is - studying abroad , working in another culture , communicating with friends from other contries - it will come true with your little but continuous effort . They fought bravely against Japan and died for indepence . So I bought a white watch for myeself and a pink one for her because my estimate was 2000 ~ 3000 yen . I went to a golf practice center and enjoied golf . I 've found that lots of how - to books on developping I - phone applications have been released . I do n't know it is ture or not . He konws there . I hav got the entrance exam today ! Subhects are math , Japanese , English . It 's not difficult but I maed mistakes , OMG I hav to study still ! The Japanese govenment decided to start an English education program at public elementary schools in Japan starting in 2011 . It creats a big mess for homeroom teachers . The govenment is ordering teachers to teach English by themselves without any training in how to teach English to kids . That is , the govenment throws things at each elementary school . It 's on a first - come - first - served basis but capmer should come with an open mind . + ) I have one question . . . Where do you usually get your travel infromations ? I want to make a lot of friends throgh this Lang - 8 . I 'm going to practise my English conversation though skyp . I like it becouse I never had it before . I used to have long black hair with my bangs aparted . Being a millionare , the presendent of the world , a super hero , a famous actor or traveling all over the world might be part of our dreams when we were kids . Losting the passions we once had , now we pursue a common life , simple and stable . I saw an eclipse this morming . We Japanese tend to gather and drink when we feel sad , stressed or unhappy , the typical example of which is a `` compaining drinking session `` after work . Normally , a couple of colleagues gather together and drink , complaing about their superiors after 5 . The same thing can be said at the end of the year , taht is , most of us would want to forget sad and unhappy events of that year while drinking with a couple of friends or a couple of colleagues , etc , etc . . . . Godness . I prefer Q and A sessious report writing , because report writing is very difficult . I have to write the report in a specific style , for example , each sentence has to end with the same inflection . For my presentation , I will talk about my research for six minutes , and afterwards there will be a Q and A sessious . Yestarday I was not working at my second workplace , because the rules allow me to have one day for rest . For now I will just have to study English harder in Jpan . ( ^ ^ ) / \ ( ^ ^ ) But my bank account still shows a double devit . Althoughn I have the chance to take the test but I do not have enough confidence and always consider that I wo n't pass the CET - 4 . I just found this good place wich may help me to improve my English capability . It is freezy cold today . Three of us , including the taxi driver , were so embarrased that we said nothing for a while . So , we just had the Gay ( Pride ? ) Parade , which is one of the gratest paredes in the world . In particulaly , biology and chemistry . My ielts has passde 5 . 5 two years ago . I 'm fine with my classmates but some think studying in such a big group isn n't good for us , as it can distract us from our studies . And furthemore it puts things in perspectiving . And you must to know a foreingh language very well in order to be understood . On the other hand , education in your own country , for example , in Russia is very perspectiving too . Russian , Literature , Physics , Chemestry , Chemestry extra and History . . . . . . . . . . . . . . Yeasterday , I went to Shinjyuku to meet my friends . I think my heearin skill has gone a liite up ! ! There are no more than 5 people who can prononciate my name . I have a cat , it is a gril . It 's verry good gadget for me . I rented the second apisode of HullHouse . But I was suprised when I went through the toolbooth . Ithink people who normaly do n't use this toolbooth will use it from today . I have to be careful diriving tomorrow . I 've never been to such a place as the Rokies . But I laid down without hunging them out ! Recently I have n't writen diaries for a few weeks but I can get feed and other necessory things for free . This is a thank you to all you kind people for your yourpatiences in correcting them . It is natural that Japanese go to shrines when we need a peacefull mind . I feel TOOOO BAAAAAD ; [ I nerver thought about writing a journal in English . you will get a speeding ticket in Japane . you should drive by a speed of up to 40 kilometers to 60 kiromters . If you drive on the road with many houses on eather side or by a shcool , you need to follow that sighn . Can you corroct my sentence ? I felt it was eerie and thought the national histerics were something like fascism when I was watching TV . There will be the exhibition at my daughter 's kindergrden tomorrow . She brought the program from kindergarden last week . My daughter is in the yougest grade so she made `` daruma `` and `` christmas trees `` . So , how do you guys study for learning your secongd lunguage ? my computer broke when I tried to start windows and instanling some software , if I had enough money , I would buy a latop , a toshiba one . During my turn , the examiner just could n't find the form for the examine next to me , and he looked like he was very busy , so he was not so strict when I was driving , and that made me get 100 points on my dirving exam ! ! Sue : Parden ? I will call the others and tell them to get ready in advence . Santa clous came to the party / visited our party and gave me a present . My teacher say / said that Santa Clous is / was majoring in engineering . I had n't a chance to say `` good bye to Santa clous , so my teacher will call him later . Because Sant clous brings them gifts in that night . Children are hopehull on the 24th night . She has finally become accustomed to staying there just in the past cuple of weeks . At fiest I was worried about her mental condition in the changing surroundings . Thank you for readind ! Paragragh 1 : Intoduction : Travelers from other countries bring more advantages than problems . Paragragh 2 : Paragragh 3 : Overseas tourists purchase surveniors they can not purchase in their own country . It brings a lot of intersts in the country . Paparaph 4 : In couclusion : Generally , it appears that there are more advantages than problmes . I 've been studing it since I was six , but in recent years , I have n't been able to practice it . We had an all inclusive stay , meaning that we could eat and drink everytime for free : ) Egypt is a very interesed country . . . Kiss for Egypt : ) Bye . See you tommorow . ; ) The dauter thinks that roles should not be determined by gender but by personality . Louse in `` Fat Girl `` is closer to the contemporary woman than to the American sife in `` Cat in ther Rain `` . `` Cat in the Rain `` focuses on nuturing . Unbelivble ! So my town is convinient located but it is n't too busy Life will be defferent then . I would like to improve since being fluent could help me in my futur career . Even though I study englishI , I really want to write in English . I am going to enter univercity come Feb . 26 . If whatI am writing is wrong , please corrct me . Japan usualy hires the students as new workers until Spring . American , Europian , Chinese , and so on . . . One day , he happned to meet a pretty girl and fall in love with her in their childhood though he does n't look young , and after a long time they meet for the first time and they are so passionately in love . He had already lost 2 baibies because of famine , and now he had a new - born baby Pauro . Pedro never forgot this promise , and he sent his son to school . Pauro was n't a very good student , but he was a goos futball player , and when Pauro was 15 , Pedro sent him to his Transport Workers club , where Pauro trained very hard . When you open the card , you can see Santa Claus and a raindeer coming up to give Christmas presents . For most of defenitions , thesefeatures are : So the solution is reduced into a simple in theory : if yuo want to be successfull ( happy , lucky , rich etc . ) , simply think that you are . Woukd you please teach me this word ? Girs in Thailand were very beautiful and kind . But my girlfriend fobad me to dateother girls . 2008 . 11 . 18 Tusday Sunny My eyes were red and swellen , and I sneezed a lot and had a runny nose all the time . By the way , I ate beaf bowl at lunch . , I added too many red peppars . Have you ever imagined your future lover seoriously ? Finally , I could n't even shouw my smile in front of them , therefore I could n't see their smile either . I am extremly excited to hangout with them ( who is them ) as a friend or more than that even . Morover , I found the hottest girl one week ago by accident . Im really ashamed of the beheivior I 've had so far . If you are also trying to learn Madarine , it is good way When I am very moved by some sceans , I get gooss bumps and I ca n't stop my tears . Recently , I 'm so busy preparing my resume for appling for jobs in Singapore . . . Now , I 'm trying to learn in this way in order to distinguish casual Englis from business English . The first day was so crowded we could n't cross the streat . I enjoyed the weekend nights at hoom . I think it 's a great website because I can partice English here and I hope that I can help others to learn Chinese too . Salt or Suger ? And I mistakenly used salt insted of sugar . + Oh no ! + I do not have one thougnt . A lot of people are still missing or waiting to be rescured . For many people , it 's a very confortable temperature . By the way , I do n't heve a part - time job . 5 mounths of winter ! I only want wormth . Because I have played badminton for fifve years . So I can ues the computer . I retern books . : ) Yesterday , I drank too much alcohal Yesterday , I drank too much alcohal because of alumni I called my mather , I thought if I could hear mother I feel good , but it 's not ok . I want to say , we heve to be able to distinguish between correct and incorrect information . My day started at 10 a . m . I just went to kitchen , made some food ( it was an omlet made from three eggs and some sausages ) and I ate all of it . And in that dream was britain comic Sasha Baron Cohen , Britney Spears and some other TV - stars . My dreams are reaaly strange . I was the leader of the international club for two years , and I aslo stueid aborad for a year . Hi . Introdusing myself . My teacher gave me advice to look at this site to practice my grammare and writting . Next time I 'm going to do a transletion of some parts of sume books or something like that . Do n't laugth at me ! After class , I have twe meetings with other teachers . This is my frist time But my spoken and writen English is so poor , that I am afraid open my mouth . I do n't have a foreign friend , and there is no freigners around me . What if I speak English to my friends ? That 's so wierd . Second , they may not konw what I mean sometimes , because my English is not good enough for them to understand . But , she showed me how to cook it very carefuly , so it was very delisious ! Soak the fish , the onion and other vegetables in the sause . If you have a recomendation for flowers , please let me know . I had met a Phillipine girl who needs to learn Japanese . Through teaching it , I could have noticed diffierences I 'm too entuhusiastic to fulfill my work plans recently . But some clouds was hidding it . She took me all over the resort and showed me a lot of Disney history and tought me a lot of Disney knowledge . I think she is the most beautiful personwho who is alive today . Free as a croud , I learned a lot of things about shinto . Before going through the Torii , we bow tword the main shrine . Prists always say the most important thing is to respect the gods . Do n't warry about making misstakes . If you cleanse your hands parffectly , Japanese people will be serprised . I do n't believe in the existance of gods , Anyway , it was a nevel ( ? ) experience for me . Next time , I wish that I could meet another beatiful actress by chance . the story was about a mathematician who tried to prove Fermat 's unproofed theory . It tuen out that it 's made from glutinous rice and powderd tapioka . It tastes terrific and the textude is like that of a rice cake . After that we had lunch togeter , we had udon ( Japanese noodle ) Accoding to the Bus guide , there wer 2000 temples and shrines there . We laughted together and played pes 2011 . It seems that there was not any diseaster in my life today , so I closed it and logged on to the internet to realx . . . When you speak Japnese , you will find that your I have not gotten used to Japnese pronounciation until now . It 's the one of my favority sports . But I could n't do it . When I try to post it , I always recieve an error . Why ? ? ? How does everyone get cute pistures ? ? ? The striong wind was blowing and the rain was pouring . she gave the world a moral exemple that bridged ( the ) divedes of culture , class and religion . I have to travel by plane on a businnes trip tomorrow and the day after tomorrow . So I 'm very concerned wheather I can come back to the Kanto area on Thursday . I 'm really nourvos becous I was not taught on how to use the registeration machine . However , my corwarkers are very kind : ) it is so confortable to be with them : D she said one more thing that if you had made a call this mornig you would get the whole fee So I was little Luky . I am not really a hard - working or dilligent student , I always join in on some activitives in school rest time , such as dacing ( Jazz ) , when I dacing , I feel happy . so the Chiken 's name is vons chicken . Is it reallly good / interesting ? My birthday is janualy 17th . My family consists of 5 menbers . My dream is to be a good busness person . Becausem my family are not so rich . Some people say ( that ) the placement of her features ( eyes , nose , eyeblows and mouth ) is perfect . The story of the play is based on the dayly life of citizens of `` Edo `` ( medieval Tokyo ) or Osaka , usualy funny and sometimes moving . Please tellme me if you have time ! ) I thought that foreigh gods are very strange and interesting . I changed my job at the bugining of this month . Its been alomost a month . where I work is confortable and the enviroment is just what I wanted . So I decited to start studying English again . I 'm studying English so hard in order to go abroad and study English this Augst . So , I 've been atending English conversation classes since a year ago . She has wounderful stories about her life and her ministres in the church . Now , I i intnd to participate in an internship overseas next spring . Also , some elderly peaple think , a cool body is bad for yourhealth . When we think negatively about a lot of things , our mind can be filled with horor disbelief , anger , and other unproductive emotions . Today , I discoverd this site while I was surfing the web . I tkink I should drive more frequently . Today I had a soy latte , egg toast , salad and yogult . They had lots of stock , so they just wannaed sell them . . . `` Do you have any plans to get merried ? `` My hundle is Sukesan1984 . On the menu was `` Sukiyaki `` ( Japanese stlye beef and vegitable pot ) So I really feel greatfull for my friend ! ! My command of English isn n't very good . Sometimes , millionior give money to society , which is then useit to make a better place to live ( in ) . Even though we use the barter mechinsm for the market economy , it is not true that people do n't have the eagerness / desire to own things . Recentry , I do n't take any medicine . In a case when the symptons are serious or continue on for days , I will . prepar finaly chopped green onion , and grated ginger . I 've heard before that people in Australis eat a lot of soup when they have a cold . Because Dazaifu - Tenmangu is a beatiful shrine . When we are angry , not only ca n't we slove the problem very well , but we also make the conflict grow ( or worsen ) . The earchquake and tsunami are devastating , and suffering continues in northern Japan . I traveled to Punom Pehn , Combodia last week . bikers , taxi drivers , the staff of the guest house , a poor person said `` give me ur money `` , and more . . . This white cat has yellow eyes amd looks fat . I enjoyed myself chatting all day long with my friends on cacaotok , which is a famous smart phone application , and also the most useful messanger in Korea called NateOn . Children should be given guidance when watching TV due to foul language , and objectionable / abscene scenes . English is not good becouse I ca n't use English fluently . tasks given to me are not int ( re ) intresting , . They are boring . Lotte Mart stopped selling Tong Kun chiken because of pressure from public opinion . Tong Kun chiken was released at the incredible price of 5000 won . Actually , this is a naturall process as the company becomes larger . That 's why there 's conflict between the two intrest groups . The second issue is the conflice between the small scale sellers right to live and the consumers right to choose . Some groups who represent the rights and intrests of small scale sellers argued that Lotte Mart sold chikens unfairly in spite of the deficit . Regardless of whether sth sis true , it is natural for consumers to choose cheapper and higher quality prodect . The third issue is the properiety of the comment by Mr Jung , a top politician in Cheongwadae . But I can ' t do anything now . I can only do one thing , which is prastic my dance seriously and I hope I can get rid of my stiff dance step and not tear my trousers , so that my poor family will be proud of me . I 'm wondering what this santance means . `` Buill said you were in charge of real estate . They are outstanding , kind and always willing to assit in my homework and reports . Actually I mean I 'm happy because I can write here freely without warry about people laughing at me . I want to speak English more comfotably Every begining of classes , I get too much nervous . They were so delisious ! ! But still It showed increase in performence . I used this cart so I should return it over overthere `` . She answered `` It 's their jods `` . I 'm looking forward to talking with new frend from all around the world . Japanese TV broadcasting will be changed to degital after July 2011 and TV prices are lower these days . I am very satisied . About Paper media graphoc design a French friend tald me : I serch the correst recipe , the main crux is eggs temperature and setting oven time . In time , he rose to the position of a head agent soon after his appointment to Heiti on a mission . No one suspected the Colonel until he was caught when he was trying to sneak nto a confidential room of the Pentagon which he had no access to enter . Yesterday , I was very suruprised at the earthquake . At the beginning of the shagking , we thought it must have finished as usual , but it continued for a few minutes . My friend bought a backpad and a pair of slippers . Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as the cortoon , and they are interested in Japan ! I often talk about Japanese anime and cortoon to them . So , I want them to know another aspect of Japan , and I also want to know the cultuer of the other countries ! I can not alseep so I have to wake up . . . . . . . . take my money go to bank . it is hot today . I hate to walk in the street . . coz make me sweat . . but I wanna . . . . . . save save money . . . for my plan . . great plan . . . . I got kicked . . I am the amdin but they deleted my ID . . 2 years time gone to watse . . . . . I worked for it everyday . . . The number of paticipants was about 100 . So I ( deside that ) learn English every day , I ( belive ) that I will ( get sccess ) in ( June ) . hold on , I belive thati will pass english 4 examination f finadlly . I 'm sutuding English for an exam to enter a college . The second exam will take place half a manth later . This is a writen test . Coulud you please help me with my writting ? I 'm lokking forword to collecting my journal . I hoped to go to the hot spring in the south town . ( My country has a lot of hot springs around ) But It dpends on weather from now on . I should brance myself . by the way , I wrote the difficult poety phrase in the first paragraph , so It took a lot of time to write that part . I recieved an e - mail from someone who saw my profile at that website . And I recepted his invitation . I have learned that I should never use the webscam with strangers . And I delited my profile instantly . watashiwa nihongo benkyuo anatano ie pasokan wa arimasu ka ? The purpose is studying English , especially speaking and listning . They offer discounted prices on flights , accomadation , and car rentals . 6 ) and there are too many applications whose functionalities were extramely similiar , Unwillingly , I wasted 2 days recovering the OS , removing some applications which were rarely used , cleaning and defragment the hard disks and regestries , and so on . It is about 18 miters high and 12 miters wide . my overall high school score was not that good for my orignally university selection , and although I did n't have a very big passion , it ca n't be helped that I choose the Korean history section . but as I say , I was intersted in korea history . my familly motto is that everthing is influenced by the heart . When drivin my car , I plan the things I have to do today . I do n't hink I have any . . . . after that , I wanted to keep the class giong . I think that my studnets was so suprised that a beautiful woman was belching . . waht do you think makes a respected teacher ? study hard , and symphathize with studnets by reading their mind . at last , advice to lovely Chirwon highschool studnets . at this time , yu do n't have to be greedy , so they can find their own beauty , make impressing momory , and grow your self confident to challenge new things . so I wish you become the most sparklest star in the world . `` the new day , the owner of the most sparklest star is just you . That I was surprized and disappointed that many people said we do n't have to help Japan because Japan pilaged us before . ( I know , these kind of people are olny a few and they never stand for all of us Koreans and Korea . It 's not gossip , it 's a terible disaster that happened to human beings . He lost his house and family , only thing he has niw is a life . hellooooo everyone . woow , I am so happy . I slept for 14 hours . heeheheheh . I downloaded a movie that I am very excitiying to watch . imagine spending two and half days dawnloading movies ; two of them . So I had to go to the site where I oppend the movies . _ _ _ _ O luckly , I found the movie on direct links . It fit my toes and it was so confitibal . I canged my shoses to Geta and went to my home . Ito Yokado , one of the biggest super market chaign in Japan I tried to study Spanish after I came back to Japan , but There 's no lectere in my university and I did n't have enough time and money to spend for it . I bought one easy book for biginer , but that 's all what I did . , I dicided to study it again recently ! I enjoy finding unique names and I imagine what kind of pople they are . It means pig in Japanese , so I couldn ` t confirn to her that she was Ms . After I went to a cafe , and went to a shopping moal . I got that at half plice ; ) Of cource , most utilities and restaurants separete non - smoking area from smoking area . So , there are a lot of people smoking on the atreets . For example , very high tax is imposed on cigarettes , and smoking at public place is comletely prohibited . Last night , my friends celeblate my birthday . So I quess we should live our lives as happily as we can and let our government take care of the rest , pretty little citizens as we are . I went hiking in the mountains with my friends and my sisiter . althogh nowadays it takes only 45 minutes by car through the highway . I piched those from the internet because My photes at the shrine were not very good for showing how it was there . Next time I 'll show my own photes . What a pitty ! When entering into a boutique or facing a clerk over a casher counter in a supermarket , Japanse customers do not say hello to the clerks . ( They wanted to know where the bag was available , but they were dissapointed to hear that she bought it in Japan . ) I have heard she has many funs all over the world . Jigisaw Puzzle of Mona Lisa The man who drove the car was very rich , and he had been punished twice because of overspeed . We swet , and felt healthy , fresh , and hungry . We ate a humburger around midnight . Our jogging did n't make sence . This book is the second volumn of the series . This book is also interesting , as much as the first one , but could n't show the deep impression of the firtst one . My name is Nasser and I am from Yemen . I work as a pharmacist and I need to study English becaouse I am going to travel abrode to study for my Master 's Degree . At this time I worek in Saudi Arabia , but realy I cant stand it here . There are many many mistakes in Saudi Arabian living . They 're terrible in dealing with foreigners . ect . Am I wrong ? I want to clarify our realationship . I could enhance my relationshipo with my friends by using mixi . Are you good at mathmatics ? ? I 'm not BAD at mathmatics . I mean , I can get a so - so scole on an exam . For example , people who really understand mathmatics can get visualize things in their brain quickly when they are working with a trigonometric function . Anyway I think when I study math I need a mathmatical way of thinking . That is the fact that I need to take a mock exam tomorrow and I need to face that fact before thinkng about why I 'm not a mathmatical person ! xD hah But whenever they speak with a pronounced accent , it 's too difficult for me to undestand them . I habe never gone abroad , so I want to travel around the world and see many places . It was bery cold this morning . I offen sit vacantly at my desk and do nothing on a summer afternoon . Maybe I 'll gain weigt ! ! Soon after the quake , we found ourselves unable to buy any food because of the immidiate closure of establishments forced mainly by the interruption of utility service . Yesterday was my first day back at school and I stil feel tired . I am bored with my studies , as well as other things in my life . I 've worked part - time as a home tutor , read articles and watched anime ( or ketp quiet in bed ) . Nowdays Japanese society is / has become personalized . It 's really amasing ! So , Perth was celected for Best Place To Live . precious mamories His university is very famouse . But I have no plans , I have n't dicided where I will go . Definetely , I have visited most of the sightseeing places like diamond I received a new spanis text from Japan , which is for beginers I am just leranig `` ser `` and `` yo `` with it . I was so impressed by his acting and got interested in spanis and its countries culture so much . Although I have been studing English , speeking english is difficult for me . Actaully I was there when they met each other for the first time : D I could n't belive I laughed . . . I think I have to study harder , because I ca n't speak English infruentry . Every summar I have to prepare for a formal teaching test . When I was in the college , I always went to her class and did teaching - obersation . I love teaching and I think it 's a most sutable job for me . Haruki is my favoirt author . I recomand reading `` Kafka on the Shore `` By the way , I 'm not sure about the defference between `` it `` and `` that `` . I hope that it wil be very interesting and funny here . or how did she already get many corrections even though she has olny 2 friends on lang - 8 . The second reason is our school uniform is a little expnsive . ( URL I rarely cry when I watch a movie , but I crid . I will stay in the administion department . In the moring , my phone rang . beat Manchester United footbalteam . Of cource , I will study ! : D He intervied me for an admission interview 5 months ago . The full moon has very strong and strenge power . Soymilk tastes simipar to milk . The meeting lasted 6 hours and attendants asked the board members about newclear plants . I am still poor at wrtiting English . But if I cotinue to write in an English diary every day since today and someone corrects my poor English , I will be able to make progress . But it was boring and I thought it was nonsence , so I was out on my own way silently . Nomally the way to make noodles to is boil in a pot . When you have bothered with everyting . However last Sanday , I left for Mt . Fuji is full of / covered with volcanic ashses . The temperature at the summit was very low even though I wared a down jactet . My friend said they went to Univercity at night or during time off from work for the last 5 years ago . I have n't tried to do anything for a long time , so hearing about it was really tuoched my heart , because I have also wanted go to Univercity , but I could n't decide how to get started . My friend 's talking made an immpression on me . I have struggled with it up until now because I have no confidence . As a bussiness couse would make it easier to find a job in New Zealand . But - he left more messanges to me . Last night he left messenges for me again . I 'm very nervas , but I can only study for next examination . well today I have n't done anything special I have just visited the shopping centr Filion at Fili station . There are many staind glass windows there . I am a bit comfused . They looked as if they were walking or running near me , and I enjoyed the feeling that I was diving from the clif . But to my surprise , when I just beginned to talk that I felt so bad on Saturday , they gave me a `` Sorry `` immediately , I thought they would argue , but they did not . . . . . . . . . . . . . . The day before yesterday , I went out with 2 of my friends ^ ^ We got togather in Sendai , the city which got hit by a big earthquake . It seemed like the reconstraction was going on pretty fast which made me feel happy . We studied togather there . I want to say to every single user , `` Thank you for helping other people who want to learn foriegn languages . `` However , when I got to the college , I heard that the story got brighter in season 4 , so I decided to give it a shot and rewatch it again . knows aboyt many things like classical music , clothes , or shoes . As far as I remember , people in Wenchuan , Sicuan province who experienced the earthquake recieved a lot of help from the whole country . Hope we can go to Euope next time . My Mother Is Storong She 's storonger than me . My superiors were arguing about subjects I did not kwow so , I have to so , it was confusing to communicate with a patiant . First , When I ask the condition of the patiant , Are thease correct ? ? or what are other real English conversaion , please For example , reflux in veins , clot in areries , venous insurficiency , and from different countires . It should be deliveried in mid Apr . However , ometimes we go on a picnic or walk in the city . I would like to listen to classical music in a theather / theatre . Last year , I realised how beautiful classical music sounds when played / performed by an ochestra . Because of that , I now employ a guy from Austraria as a waiter from yesterday . He wants to learn Japanese and stay in Furano untill the ski season closes . And he can speak Japnese well . Of course , he has to work as a waiter for the guests from Austraria . There are many differences between Japanese and English , especially the Grammer , I missed my Englsh conversation club two weeks in a row . However , as I said , since they had to observe the strict rules for whatever reason and they were almost not allowed to express their own ideas and opinions , sometimes some people felt very unconfotable and tried to get out of the community to seek solace in another place . Wow it 's an owesome place ! Will I meet some good foregin friends ? My dream is not to just be a doctor , but a skilled , heartful one . And as a phisitian , I 'd like to make many people feel at ease , and happy . I wish that he could live as lomg as possible . It seems like a boring and hard suumer day . I took the airport shuttle to Wikiki and then took a taxi to the place where I 'm going to stay untill Januart . It is in the Hawaikai area where my homestay family lives near the Koko crater which was an active volcano along time ago . I am so glad to stay in such a lovery town for an upcoming 4months . I learned about stress reduction and how to relieve axiety . I heard that she bought a lot of alchol , especially Japanese - sake , when she went Therefore I have to be possitive and do my best every day . Sometimes English prononciation is hard for me . I ca n't prononce `` squirrel `` and `` POLO by Ralph Lauren `` perfectly . One of the reasons was she was unafford and two , I did not understand about the job . My ex - colleague was not receiving saraly sometimes , when he worked in canada . tongh or nipple . I want to go there onece a month ! I went to see my friend after I finished work . We went to the same reatuarant . We were sitting in the suanlum night bazaar and listening to music . We had drunk friuts shakes and ate something . She invited me to go night clubbing on saterday but I did not say yes . I permis to tell her tomorrow . I can not dance very well and I think I will prictice today . I like to play the guitar when I have free time but not now because at the moment I would like to prictice English more than play the guitar . I always think about it more seriously than anothers . But I found a diffrent kind of fashion from traditional fashion . From nezt week I decided to go to community center 's English club . I really do n't want to foreget English . I am worring about your condition . But I was not aware of somebody ever approching me . Why did they chosed me ? There are 4000 American psehrases . Hello , my frends . I also hope that I can make many new frends here . But here , I can say angthing I like , even throught it wil lwrong . I should finish my English practices and understand the most elementary English knowlege , before the school year begins in September . But I feel that it 's important for improving my English to express my thoughts and describe my infomation . I like to watch america , Korean and Japanese T . V . . I am a colloge stdent . I study spycology . I know that spychology in foreign countries is very famous . If you like me , you can leav messege to me . I am very gratrfull to everyone who correct my diary . I admit that , while studing , I have become bored . I was also impressed by your many heartful words . For the last few months my parents and teachers have been talking about nothig else but my exams in May . There are relativly many English speakers in my company . But because there are not many shoppigng areas , restaurants , or cafes , it is a little inconvience . Maybe the weater changed too fast . I do n't like this weater . I went to Hwagye Temple to join Sunday Zen program with my English teacher , her friend , and my friend yesterday . We practiced meditation while sitting for 25 ~ 30 minutes , walking for 5 ~ 10 minutes , and disscuss Buddhism together . Hwagye Temple is a special temple . I wanted to participate this Hwagye temple 's Zen program , but I hesitated . You can custmise your home on the `` Settings `` page . I love my little docher very much and she knows this . It is only 40 years old , but there are very talanted actors and actresses . Dinner was also great ! particurally , the chocolate fountain , which was delicious ! I cleand the aquarium and did away with books and CDs . 25 I happened to meet my friend who has been frieds with me since we were students on my way home fron London . That things are unperfect is the reason that each day is new and gives the oppotunity to make things better . I majored in English and judt took an Italian class . Most of them must have been / were made in Japan , but all the lebels were written in Chinese . I normally do n't use them , becase I always rely on the dictionary . But I dreaming of going to another contry someday , to appreciate diffrent cultrue and do language exchanges . I think the internet is wondaful tool . I am trying to write my message and exchange with other leaners . I am studying English in an enlish trainning school . My friend wanted to study enlish , too . She finally enrolled in this English trainning school . Everything was ok , and we could study English together . The problem is , this trainning school gives me a `` transportation card `` , which you can use to take buses or the undergound in return for my recommendation . I am very disappionted in her . So , I gave the card to her . I am really dispointed ! Please check my diary if you coud , I have to study English thoroughly ! First wrinting This is the first time to wirte a diary on Lang - 8 . Yesterday one of my firends recommended me this service , Some Japanese can obtain very haigh marks on it . How on earth did they score such high marks ? I wrote I am goiing to a concert on Saturday . But I missed out on my favolite band 's performance , cos I was late by an hour . I had rememberd the incorrect opening time . It was rainning . I waited for the plice for about half an hour . It was already midnaight . They asked me many things . But I love tropical fruits ! ! ! I can not contrl myself when I face them . : ) I think it 's good for us because we do n't have a lot of money so we ca n't afford to visit foriegn countries . the frist diary in English I heard that people normaly type their resume in America . The frist one I happened to know this website , and registe as soon as possbile . When I was taking a Japanese course last summer , my teacer told me there are some websites where you can write artcle and help to But after that , I forgot it amoug the darily affiars . I am weak in . writting . My speakng and listeing skills are exacty low . . . But I know practicing is te best way to speak English very well . I wish I wo n't think that I wish I had stuied harder / / / I 'm goino to school in September . Maybe the reason I am so much silmmer than everyone else is because I am not a big fan of eating food . Korea was very strong , but fainaly Japan could win . we were realy excited and happy . Especially , I like that , I can see the each prefectuer 's special products and famouse things . I learned of Nebuta Matsuri from that , which is a famouse and unique festival in Aomori prefecture . At the same time , some people play and the other people dnace by jumping . If you are interested in Nebuta Matsri , I suggest you to serch about it on the internet . As you you can see around us people are increasingly subhealthy . why ? He is a foreiner and has lived in my country for a _ long time , but he can not speak the language very well , so we usually talk in English . But it did not work well , and our relashionship finally collapes . . . It is not easy to find foreign freind in my country . Of couce I am not a perfect person , and I have my faults , but I couldnot n't accept what he said . . . So our relashion has collaped . . . and if you have a simmiler experience , please tell me something about it . I selpt late last night but I have to do that because I intend to improve my strength . Today I am going shopping with my sister and my cousin . My cousin wants to sleep at my house today . I am so happy . My baby sister is slepping now . ^ ^ I will even know some laws of Ukranian ` s Rights of byers . Embarrassing siturations It 's annoying Becase it means I ca n't speak loudly . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own proplems . But it 's usefull for me because watching foreign news is good for those studying English . My [ teacher ? ] taught me taht you should watch it every day if you want to learn English well . It is time to go to work ! If you do n't get up , you will be late . `` I responsed , `` Mom , please give me five more minutes . `` But now there is not much water , _ canned food or lamen . noughty . I ate rice alrealdy in the morning . Now I think I will have enegy again to do what I want to do today . ^ ^ I forget grammar so it 's very diffucult for me to answer them . His favorite charactor is Bumblebee . Today , I went to the library to study with my frend . l heard some bad news from a dotor . He said my frist son needs to have an operation . It is a national test for all the univeisity students . The test is a little differcourt , but this is not the point . I am so dissappionted that my boyfriend did n't come to go with me together ! Maybe , he never love me . In some sence I think , he do n't takecare for me like before . A month has passed , he said that we should go home together . looking this time , whate said is ampety . Some foreigners , who love Japanese culture , always said that they learnd Japanese from animations and manga . A : After joining a clup in my college , I met many people . Most shops do n't close on Saturday and Sunday in Japan because all shop staff work for the service industory . Becuase I had a lot of work to do , I work up early in the morning . my family and I sometimes enjoy talking about disguisting things during dinner time . A : One day my mum bought a yarm for dinner , and we dicussed the turd - like shape of it ( = m = ) % ^ & * & ( & ) % $ . . . ( talking in detail ) Their offense and denfense are great . Recently in Japan thre have been a lot of disasters , for example the Tohoku - Pacific Ocean Earthquake . Actually , I desided to be a waitress at one of your restaurants , because I thought the hospitality in all your restaurants was very high . However , I relized a problem in my work place . I found the problem 2 weeks ago then I sorted out the regular customer 's deta . At that time , suddenly all the detas was lost . I want you change the protection software and check all computrers in your company . So I 'm writing these sentense for the time being . I do n't have schoootol today . I did n't use to raed a lot but I try to read more now We 've now become familar with his songs and can imitate all of his songs ! If he had strong Cristian beliefs , I thought he might not be able to accept ( his ) wearing it . ipad is also a really special gadjet . I will pass through Brisbane , and if you have time to see me , I will change my schedule to stay 1 night in Brisbane befor going to Melborune . Please give my regards to XXXX ( her hasband 's name ) In my house , it feels as if it was a family menber , or it is n't too much to say that it sometimes has a bigger inpact on us than a family member . I mean I want to improve through conversations firsthand rather that unilately in front of screens no matter how inaccurate the information is compared to those of mass media . During rush hour , one guy said , `` Sorry , I am in a hurry right now , so I will give you two stikcers . `` When I collect 30 stikcers , I can get a Doraemon fan . The highest level of heaven . . . wow . . . amasing ! Bean is very funny and foolsh , Rowan Atkinson is usuary a serious and calm gentleman . The Mid - Autumsn festival night And I kenw she stole a glance at me and me too . I look forwart to seeing you and chatting with you on twitter ! ! My favorite display was a groupe of sardines . Novemver ? December ? I 'll talk about one characters in one of my favourate / favorite films . It is a very imppresive film . He does n't give in to the contemporary sociaty . He wo n't do things which he thinks are meanningless . Eventually , after his insisting on the things which he thinks are meanningful , he succeeds and gets a genuine career , genuine love , and friendship . So it encourages me to persue things which I think are meaningful , and which I think are right . becaouse last night I ate so much . . . it 's becaouse I want to leaen englsh So , I want to practice wrihting about many different kinds of themes . Today , I wriht about following teame : `` What person do you respect ? `` Although I still dont n't want to go to bed , I can ajast to cold wheater but not to hot weather , because I can put on more clothes . Unfortunately , I was using my raptop and I did n't have a mic . I must work bucause there are lots of bills to pay . Hi , I am susan . Today is Valentine 's day and this diary entry will be my frist on lang - 8 , I am so happy . Yakiniku restaurants are very populor in Japan . So we eat Kimchi , pickles , and Chijimi creap with baked meat . We can eat a lot of different kinds of beaf and poak . Some restuarunt bake our meats for us . Both have melit and demelit , so it 's nice to have a choice from the view point of your lyfestyke . The tecknique for cooking Karbe beef , is not to bake it for too long . Be careful , and resarch the homepage of the restrantl first . If you worry about how to resarch , My Singaporean frend tood me that Singapore has no `` White Christmas `` but we have `` Wet Christmas `` this year . He is a professor of phamacology and a friend of my last supervisor . Neverthless , he listened to my story earnestly and gave me many great suggestions and opportunities . Third , he knows some pharmacy studens who are interested in Japanese and he will introduce them to me . On usual Manday , my feelings are low because it 's right after the weekend but only today , my mind was clear and I was excited even during work . She said that `` I promis you that I 'll do my best to study hard . `` However , I did n't think I made a wrong decions . About earthquke . What do we as common people deal with these really sad sitations ? The man who looked like a sincerefamily man actually turned out to someoneseriously addicted to porn and `` casually hooking up `` with women whom he had met at soem on - line dating websites . Of course friends , relatives and loved ones expecially his wife and two children have been so shocked about what had happened to their husband / dad . . . eveyday I will write in English in my diary . I decided I wanted to give a souvenier from Japan to my American friend . He is a male and mybe 26 or 27 years old . What would you like as a souvenier of Japan ? I 'm worring about accessing the Twitter site . Some patient do n't understand that tey can totally remove the scar but only make it lighten . winter 's holidy has started . . . I was suprised about it snowing in October . I went shopping with my firend . Are you satisfied with your carrer ? Because , I 'm just starting / in the middle of my carrer now . I have not imagined my carrer goals yet . You know , it is one of the most famous universities in indea . Thd Story of Coffee The night view from Victria peak was wonderful . I love this season because autumn brings us tasty foods and beatiful weather . I got up a little late in the moring , but she got up earier than me . I saw a dilicious breakfast on the table . Now I feel this unpleasant stmosphere has gone . First , in my case I wanna go to Tokyo because it is such a huge and dynimic city . Which sentenses do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? I will write in my diarly next week . . . When I was a juniour high school student , there was a Kendo tournament . becuse I have to go to school ! In addition the steak is served with an ice tea as huge as a samll bucket . When I left part of the salad unfinished , I felt kind of apologestic to the reataurant . Is this a kind of Sothern hospitality ? There is a diffrent between South and North . I often go to a restrant near my office . The way comedians make a lot of people laugh is defferent in each country , is n't it ? After that , the trafic jam started , so when I arrived at the office , it was already closed for the day . Life is always full of frustration and disappointment . As you just surmount the present ones , new challengesare are constantly arising . As far as my recent condition is concerned , a serious obstale ( actually a really frustrating interview for a position in the student union ) has now left me feeling disappionted , worried and annoyed . All applicants , some of them my classmates , were hired except me . When I found this out I could hardly believe that I was the loser . It really hert me and affected me badly . When a person ca n't reach his destination he may fantasize about success . I suddenly remenber this line from a magazine . So this state of mind made me revise my performance . . Maybe I was too childish . Maybe my ability to tackle personal relationships is lacking . Maybe I was n't qualified for the position . Still , I never doubt my persistence and patience . . Everybody has his own adventages and disaventages . My rivals , no matter how immoral or even evil they are , were all accepted . Sometimes I feel it 's unfair and think about the value of my existence . However , I also think that it 's reasonable that I , such a silent , humble and inactive student , should not be given many academic affairs to handle . We did n't even go out gor months . I talked wiht an American friend this morning . I became a mentor in the buddhism temple . And my anncestor would exclude everything . But he suddenly died from major illness befor he was about to succeed to rule the whole country . After his sudden death , our ancestor 's commonder became weaker and weaker . I come from a small family in Taipei . I live with my parents , brother and 3 pet brids . They are lovely , espcially my 3 pet birds . I like to take pictures eveywhere . I know English words and a little bit of grammar , so I can write English sentenses like this . At first I want to concentrate on improving my English avility . about 30 % of the exam , I am afriade I can not pass it this time . Today I will go see a movie in central Melbourn . It is so defecult for me ! Child education is a very usefull subject because I want be mother I want met people abot the sme age as me . I will cntinue writing my diary to improve my poor Engrish . I want to exchage letters with new friends who are n't Japanese . It was quite useful for building up my vocabrary . The owner is a huge fan of pro - wrestling and he does up the restaurant with various colorful masks . I met some guys whoc always stay at home ! They said [ we know you are good at English , so is it possible if you could cotnet with japanese people who are also good at english and ask them for some adult movies ! ! ! ] THIS ESSAY NOT JSUT FOR CORRECTION , IT ' S ALSO FOR [ HELP ] ! ! In Osaka , it 's quite warm todyay . I turned off my computer because I 'm afraid the computer would be attacted . I 'm nervous because the result of the University Entrance Examnation will come out in two days . When it comes to human relationships , inferring a counterpart 's feelings or thoughs plays an important rolle in comunicate well with others . They ca n't help foster our imaginations , but imformed us with a lot of fucts about the world . I gave cosmetics to my friend and sent an enail to her . I 'm will be glad if the items will arriv this week . If I have the power , I 'll write an essey . the accupuncture university . While I was studyng English , I could see two pigeons walking by the window . And then , damin it , I took a nap . Today I went to a Maxican Restaurat , to try out other nation 's foods . Maxican Restaurant in the U . I wasn n't drunk but it feels good . First , I needed to go to the box office to get a tiket . I scarried to the next . Suddenly it spilled out sollid excrement from it 's behind . Opps ! It 's a pun , intended hokum . I wondered why it was awake in spite of its ' being . nocternal . For a long time , maybe for seven years , I had n't been to Okaska therefore , I really enjoyed it there / this time . University athletes compete in a 200 km marathon to decide which unversity is the best . I really want to bacome good at English . secoundly , I must listen to English CDs every day . Thirdly , I must remembar an English word . Not only were the scenes emazing , but the actor was also handsome . But I like it , exausting myself doing the thing I like best It is only Japan where you can eat raw interal organs from all over the world . Almost all turists who come to Japan eat `` sushi `` and `` tempra `` . But raw internal organs lead you to a special and unkown world . That 's not so surprinsing , is it ? I did n't undastand all of it , but it 's an interesting and fascinating novel . However , the other day , some Japanese delivered my baggags for me . This walk was a very rare chance to exprience the beauty of American wildlife . This bivillage has 5 springs , 1 souvenir shop and 1 green tearoom . When considering pronuciation , English and Japanese are so different ! In a pool , she is scared to put her face into the water , and at a park , she can not spin on the iron bar , because she is scared of bending her body toward the grownd . But I want to be an a programmist so I want to know English for my future study and work ! . . . . The tenstion between Pakistan and India has been strengthened by the terrists attacks recently . I wark as a bellgirl at a hotel . We have a wediing hall and a banquet hall , so we are so busy on holidays . Seventeen wediing ceremonies were held today . But , ( ever ) since I became intersted in English , I have wanted an English name . S plese , recommed an English name to me ! About 35 thouthands people participate . Yestarday , a subcontractor visted my company . Part of the Tokyo area strated to have power failure . He ofen makes a round trip between Tokyo and Nagoya city . I think it 'll be helpful and interesting for me to study Englsh because I can practice writing and someone will check my grammar . I 'd like to say `` nice to mee you `` A wanderfull event has been held in Okinawa . Tomoroow I am going to watch `` Sex and th City - 2 `` with girls and will ry to be merry , carefree and so on . They were my first choice company , so I 'm very dissapointed . . At the time all stores closed from the 30th of Dec to the 3rd of next January , so we had to stock everythig : drinks , food , videos , refreshments , snacks and so on . Now , 24 hour convenience stores have spead out everywhere . It is literaly convenient but I am a little bit disappointed that such a thriling custom has gone . . . Luckly , my children like my cooking . we belive it is normal that we graduate from a Japanese university The test consists of two section . The first section is easy and almost all exaninee can pass , but the second section is hard and very few people can pass it . If I spesk English fluently , I will / can go abroad . I want to go to many foreign countres . Then he found a bed and strat taking off his clothes . However ; there is not yet consenses on thether rich countries should give financial aid to poor countries . The first point with respect to this is that powerful cpuntries could offer advanced techniques to the poorer countries . Take China for example , when scienitsts developed new tehcique to plant crops ; China could stop importing crops from other countries . Last but not least , powerful copuntries should also offer medical facilities to poor countries . In other words , disease also plays a criticalkey part in economics . Adimittedly , it is not enough to provide financial aid to poor coumtries . But my wife ilkes it very much . I have certain ( stereo ) tiypical images about certain countries . I went to a music instrument shop to check guitar - efecter . tommorow , I will go to BBQ shop with my friend . Today my colleage talked about Western culture and Christmas presents . At least one people is happy this Christmas , the giver or the reciever . So they tend to decline the invitation to paticipate in the WBC . I was almost on the deadline , so I needed the Exchange Coordinatrors to fax the documents ( to be sure that they made it on time ) . I asked them to mail the documents to Japan . The bizzar weather . I watched something on TV about the bizzar weather all over the world . I 've heard many stoies about the collapse of the earth . I belive that she will get the gold medal and I can see her best smile that I ` ve never seen . Mind probram . . . I do n't like English classe . Please . . T ^ T correct some setences . feel relieved bisa menerjemahkan menjadi ' bersantai ' ? On this special day , we visit out family , eat eatdumpling , and walk out to enjoy the beautiful lanterns . I explored the area where Prague catsle , the river and the Old Town are located and enjoyed myself at various entertainment places . It was about a teacher that was fired from his work becouse he did a little trick in the classroom . I realy laught a lot when I heard the story for the first time , but now I feel sorry for the teacher . And what a crazzy principal ! ! I was cought in a shower last night . Acording to legend , ' Exposition of the Hieroglyphicall Figures ' was written by Nicolas Flamel . I tried to eat sandwiches for the sake gainning a variety of nutrients . In my family , when we get a cold , we drink roasted tea with a little solt . I walk 15 minutes from the station to my oficce . But I do many things durring this long commute . listenning to English conversations using iPod . So , It is very important for me to spend time in the train , valurable studing time . Good - gye . Now let me intouduce our cityy to you . We expect more and more forign friengs to invest in our city . This is my first writting . I wounld like to know how to learn English faster , can anyone tell me how to learn English faster ? She drinking beers and smoking chicarate in a club . I could not find it yestoday morning . JIANGHEN told me that he took this book when he went home yestoday afternoon . The school festival begins today and it continues until this weekand . I saw this game last year , I heard many departments did that and they earnd lots of money ! ! ! Chinese uses hieroglyph characters . English is phonogram letters . Each Chinese character is different from one othres , but English words are all assembled by the same 26 letters ; it 's easy and efficiently , especially when inputting them into the computer . Chinese words are assembled by charachers . English words come from [ creation = ? ] , affixation or compounding . Most of people said `` Avatar has a kitsch scinario , but is a movie with excellent spectacles `` . Surly , the scinario is kitsch . So recently my ability to speak English is incerasing . . . . I want to be an emproee of that bank . In rencent weeks / Lately , nearly everyday I self - study with my boyfirend . I learned many students have read the book , but I 'm not sure that they have the kownledges , but at least they 're a step further than I . With the passage of time , I feel a lot of pressure arround me . This week is really important and preciuos for me . In recent years , enviromental pollution has become more and more serious . Many countries pay attention to the enviroment . Because I wantto perfectinate my English and have good conversations with people without having tothinkfor one or two minutes to talk or answer one question . If you want to talk to me , let me know and I wiil stay in contact with you I 'm begening to read this book in English . I remembered , that I have a transleter book on Russian . I want to develop my English in oder to be better than before . I might not get used to this weather becuase some coworkers are wearing short sleeve shirts . In addidion , I 'm using a blanket . This is my secnd Home page on Lang - 8 . It is named Femt . But I am looking forword to meeting many people . Now Im have a lot of free time to spend , but I do n't have anything to do . In this case , if you were me , what would you do ? I want to go to Macdonalds to eat their new hamburger . According to reserch , theaverageage of Japanese people when I 'm tired but I cant fall resleep again . Theseday days I 'm so lazy . `` keep yourrselves from Idols . `` I will probably have coffee in the furure because it 's easy to make and tastes better . It has already come extermely hot tempreture in Qatar . I really want today to pass imdiately . When I was an elementary school student , My father bought a PC made by Fujitu . I want to know why unhealty foods always taste good . I went to a park called `` ge yuan `` , which was built by a bussiness who sold salt . There are four different views in his gardon , In 1999 , a horrible nuclear incident occred in Ibaraki prefecture . But one month after I moved back to Japan , I could n't speek English any more . He is always smoking and drinking coffe alone . Then suddenly the man ( who was reparing ) opened the door and shouted like this , `` Water please ! ! ! ! ! ! ! ! ! ! `` . And when I entered my room , it smelled like yhe aroma of coffee beans . I 'm learning English and woule like to improve it more so that I can travel all over the world and communicate with a lot of people . It said about Rat - as big as a cat discvered in Papua New Guinea . This tital is `` National Security `` . It was very dericious ! Because of the high tempreture , the snow was kind of melting . In this shop , I could have coffee with rabits . I look forward to meeting with you on this wonderous and beautiful site , because it lets ushave Communication with others from other language speaking regions with peace . I look forward to ur visiting and participation . Activity 2 : sepetember 28th , 2010 , Xinshi center park , Xinshi agnello and Shaoxing wine celebration feast That 's whay I joined this Lang - 8 . Japan wil play in the finals with e South Korea at 10 am tomorrow . I mean , I guess many people break their sellphone because of their habits . And when I was 8 , my father went out for binese . Anyway I can make my freind verry happy and that is my plsure . I 'm lokking forward to eating them ! X ) I apreciate it . I could catch his English , but I could n't speak as good as I expected , and I did n't know how to make sentances , so I 'll try to improve my speaking skill . If I need to make an appointment with my friend , but I am not sure when he would be avliable . I love her evry much . But , If I take a careful look at my life , things are changing at a leasurely pace that I barely recognize it . We were really lucky because it was a fine day yesterday , though there has been a long spell of bad reather recently . I 'm thinking about beginning SKYPE English conversation with a foreigner . My friend gave me a blacelet . My favorite taste is solt , but , today , I ate miso noodles . It will hold to appeal that Tohoku is fine so pay visit each festival in Augast . When I entered my university , I took TOEIC TEST . I wote in a journal entryyesterday that I wished something special happened , and here it is ! Everyone can coment on my writing . If students want to go to college , they have to go to school where they focus on stying . Then I broug the bicycle to a shop to ask them to fix it today . I will not give up to lift untill last next time . ( ? ? ) Umm , it 's kind of intersting . And why are so many of them collecting unemplyment benefits ? Japanse call that type of person `` a paper - driver `` . Although I was a little ashamed of my fertileless results , I had to pretend to be satisfied and present it confidently to all the professors invited to my defense . The main reasom I write ' this ' is Until today , the family 's schesule were different from each other . I did this unconciously . In the class , there was a women who is a foreing student and she spoke French so fluently and talked with the French teacher in French . Starting today , I 'll do my best to study not only English , but als French . : ) Subsistence cyecle . My introduciton He could have been sucessed as a doctor , but he choose to become a compter engineer , even though he could n't be sure of being sucessed . Now , he has become a professioner at Seoul University . I want to remaind young at heart untill I go to heaven . You can make youself So I believe the best way of window shopping is bringing mothing A newborn baby brings happness . A newborn baby always brings happness . Blue sky and blue sea , a very nice conbination . The Sunshain is a little bit warm . When I comrare it with the opportunity of a book , I can get more benefits from a book than a movie . Today , I had an English lesson with Brian , who is my new English teacher , at 8 : 30 at Starbacks cofee . I am eager to speak more intelectual . I would appriciate it if you corrected my diary . When I was in China , I uesd to walk around the lake in front of my house every evening . I want to understatnd movies without japanease script and listen to English songs directly . Of cource , I want to be able to use einglish for business purposes . whice the temple is named . Some people prefer entertaining TV shows , talk - shows , quises , such as `` The Ground of Wonder `` , `` Let 's talk `` . I 'm not atracted to humble - looking people because I look so humble too . It is not dyed , and looks healsy . What made her look humble is defenitely the combination of her damaged jeans and sneakers . But it is very sepcial for me because it 's the last summer holiday in my university life . In addtion , I want to do meanningful work from which I can not only earn more money but also get useful social experience . Everyday I come across many custmoers including native people and foreigners from all over the world . Though it exhausts me , it is a new challenge and a good opportunity for me to touch the competetive society . I 'm always worring about that . Before , I lived in the domitory of my corporation alone . I used to cook or buy something to eat in my domitory alone . But now I enjoy dinner time with my famiry ! I live in the Russia in the city Khanty - Mansiyske I like Kanty . = ) It was very tasty , and I felt comfortabele . Could anybody explain the sentense below ? And I help my moter with house work . It is important for me to study hard , but it is also important to help my moter . I try to study hard and help my moter this month . Please help me with any grammatical mistakes in my entry . If something does n't sound innative , please help me refine it ! It was not difficult to drive in the Drievr 's license test course . Hope all of you have a fatastic day ! ! ! ! Yesterday , my mother 's friend and her hasband came to my house . There was an amaging accident in the championships . . . Tomorrow , I will go back to Tokyo with her and her hasband . As a result , I felt terrible for a had a darrhore in the afternoon . After taking a barium , I 've realized that taking the stmach camera ( or spectroscopy ) may be easier than ( the ) barium . It took a lot of time and I didi n't know whether my sentences were right or not . This is the last day of Eastrn . The more hot weater we have , the more I need a sweater . But I feel like the temperature in the library is below the freesing point . Summer weather in New NewYork is similar to weather in Seoul , Korea , but I think New NewYork is a little bit nicer than Seoul . After I heard the news it will be made a movie and will be released in autume . He said some caustomers misplaced it after they read it and they did n't put it back in the right place . So I counld n't help taking time to find it . Athough I was too late for the festival , I went to see my friends . I belong to the Guitar and Mandlin Club . there are many shops . ( sports shops , clothes shops restaurant and so on . ) it was very vrowded because it was a holiday I heve to do an assignment about industrial dynamics in this morning . because the Japanse economy was so good at that time . I hope their bussiness is going to get better . basseball and Yakyu Of course , I always wached them in Japanese when I was a child American life is cool for me though I ca n't bring spesific examples I feel srangely dull everyday so I want to finish My orlder brother and orlder sister give me a present every year . A few days ago , I used up my rotion . I shopped oline for about 1 hour , I bought a rotion . The rotion arrived this morning so I used the rotion . But I do n't like the scent of the rotion . I live by myself now but I try to prepare meels by myself as much as possble instead of buyng food . For my health , recetly I try to eat back beans and agar and drink at least 2 litres of water a day . Peaple say that black beans are good for your blood circulation and helps your skin stay healthy and the agar has a lot of faivers which help our circulation . I enjoy cooking and increasig ( more my repertoires . ) = ? In addition , I 'm refreshed by it because I would experience new things whenever I go to an infamiliar place . The sales person looked a little in a hurry and she rushed to anwer our questions . And what makes you absulutely Happy ? I odered some hijabs , I mean special muslim 's veils , not all clothes , only for the head from the internet , because here there is only one shop with muslim 's thing , and there are almost only books . - - > On 26 May , my team needs to finish the final porject , I must work hard to do that . I hope I can pass the exam because if I ca n't , I will have to study one more year . Because it was the TV drama of the BBC , the acters and actresses were speaking in British English . I gained weigt ! ! ( T T ) My weigt . . . . However , I was surprised when I saw the awesome scenary . At nigth , I cooked hashed beef and rice for dinner with my mother . But he is also gathering infromation about jobs in another country . Anyway , yeasterday was Chiniese new year , so there were many Chinese festivals in the city . We can always see many Chinese people in the city , so it is like Sydney is part of China . I had a sore throat today , so I took some strong herval cough drops . There , you will find everything from street vendors to hign - end designer brands in huge department stores . What I found is that the sound and the rythm of It takes about a hour to get ther by car . I Watched a Horro Moive I accidentally tuned into a moive and started to watch it . It was a horro movie . That was the kind of moive I like so I contined to watch it to the end . Three diedthroughout the moive . It was a heavy moive . Recetly , I have wanted to get it more and more . Thre are Maguro ( Tuna ) , Botan - ebi ( Shrinps ) , Hamachi ( Young yellowtails ) , Shima - aji ( Horse Mackerels ) , and Hotate ( Scallop ) ! ' till then I 'm goin to visit a couple of Arts courses . Today , I woke up at 8 : 30 am and went to school for my practiceng play on our school festival . Many poeple had their dog walk around the lake . As you know , in most companes , there are more than one employee , and we can call all them co - workers except you . It 's difficult to speak to forgin peopke in English . My friend asked me to transrate it English from Japanese . Could you currect it please ? Cross my fingars , Last Sunday I was at PROPET ( pet industry trade fair ) for a dog grommer course It was cheaper for me than other similar courses , because I had a proffesioal invitation . I want to say I have several promble with studying English . How do I solve my english promble ? Becouse the entrance for foreigners was brightly opened , I just passed through the gate of the Ewha Womans University easily . Actually , I 've been in Vancouber for more than one year studying English . She also likes natural foods such as seet potato , pumpkin , Although I spend much time on it , it seems as though it makes no sence . I like this period from summer to autumun best of all the seasons , because I feel energetic during this time . but I can not learn bengal . and I want to eat deliciauce Indian food ! ! I didi not have time today My oreginal color is dark brown , now it is chestnut because I dyed it . I am Bulgarion and leve in the town G . Orqhovica . I am a studnt in Veliko Tarnovo city I enjoyed Rock Crimbing ! I think having a car is very important for colledge students because college students need to make friends . When I was a colledge student , I went skiing twice a week with my friends . I used to watch Twenty Four , and I watch Full House these thesedays . ( I mean `` copy `` and `` cpy that `` ) Her mother married a man who is the brother of her former hasband . However , today , by purchasing a flight ticket in advance or carrying no eatra luggage , customers can get tickets at a incredablly low price . Amittedly , without globalisation , economic , culture , literature and legislation would make little progress or envolvment . I have been to London , Hawaii , Shanghigh , and the west coast of the USA . I went to wach my dauther 's badominton games yesterday . My dauther 's skill is getting better and her patience has increased while playing . He has taken a tennis lesson bofore . On the other hand , if you talk to your boss or people you are n't familiar with , it 's more appropriate to use indirest questions . Is studying abroad or going to an English comversation school necessary for speaking English to some extent ? The Asian Gemes excited me ! Water is droping down from the pipe . . . . I will complan to my landload . I was absent from university because I had a bad headace . He is called `` King of Pop . `` I 've never seen his performance , but if I have a chance , I want to seet it . However , that 's an impossible dream as long as he 's not a lier . As a matter of afact , I had been a kind of an old fogey . But beliave it or not , I had n't bougt my own cell phone , or car , But nobady is going to stop me . If I could think in English while reading Enlish sentences , then my English comprehension skill wouldimprovng rapidly . I arraged it for me , adding cabbage under the pork and a soft - boiled egg on the pork . One is by Renka , who is my favosite actor . It is one of my favotite books ! And also Renka has always been ( ? ) my favotite person ! One oneday I hope I can become a rich woman like her , Maybe there are not too many people that know them in Taiwn . When I was feeling sad and lonly . Are the following sentences I wrote gramatically correct ? I 've been studing English . In addtion , I recently fell into a slump . Although Lewis 's piano solos are somoetimes a little bit annoying , Somethings that are truely new are often accompanied by some kind of discomort . There were too many people that Johnny separted from his mom . The shop is in Kitijyoji City , Tokyo . The reason why I walk is because I am engaged in a walking competition with my collegue . I thought it would be difficulte book them for during the Christmas holidays , but it was easier than I thought . I will be living in a domitory next semseter . and I bought a lot of things for my domitory XD There is no intresting places to go for a wolk . For the first time these places seem like something unreally intresting . My grandmother was from a wealthy marchant family in Sakai ( in Osaka ) . ( It was misteriously beautiful , she said to me . ) It also pourd into her ears . She has a elder brother who was sent to Siveria but fortunatelly She can use walfare for the disabled , So I decided to cut her hair , and leanrd about how to do it on the web . Also , I can be more aware of the auther 's ideas and imaginations by writing on them . Because this pen uses thermo - techinology , therefore even if you erase it perfectly , the ink would still appear under some conditions . but I 'm glad to see he is active in another coutry . We have to study or research very hard to wident the tunnel and to learn how to dig tunnels . I came accross some sayings when I was reading an English document . Some have already been ( provisonally ) chosen for jobs . I like japanese food , because it is frash and heathy . In Japan , we are anxious about relationships with neighber countries , ie China and Russia . I 've selected out of those and developed about 150 and enlearged 10 . When I was young , I went back to visit my grandmother every year for the Songkarn Festival to receive her blessing . The belief is that doing this will bring good luck and prosperity for the New Year . l have brrow books . Why was my diary not corrct by anyone ? So I hope to meet more foreinger friends and learn languages from each other . But it has passed a half month into Feburary . I love sakura bloosams . It means Sakura bloom beatiful becouse of cold winter . It means ordeals will make our mind and humanity beatiful and strong . I bet tonight I will sleep well and I 'm looking forword to seeing someone who is coming to visit Thailand . . Hallo eveyone ! Today I have written a diary in Englich . Plesae checke my diary . I love Einglish and childeren . I must study hard in EInglish ! ! ! What a supecial day it is ! ! : ) Legister lang - 8 Today , I legistered in Lang - 8 . The Writting and speaking skills are terrible . And I put it in the refrigerater . It was so much fun , my friends and I stayed in a hostel which was a 15 - minite walk from the beach ! After playing that , whe were so tired because we were rasing our legs , jumping and dodging etc . I want to go to aroad , and make friends there ! / Although I am ashame , I also feel hateful towards myself . But to give an example , I have a / sence of justice ! ! ! It is famous for it 's painapple . For instance , many exotic countries make millions of dollars on foreign * turists . Not all of the turists know how to keep the area around them clean . I 'm a biginer at Engrish . I hope to use Engrish beter and to meet some frend . todey , I will eat kaki fureit . I like it . It is sweet and derisuse . Now , in Japan , there are many kaki fruits on the trees in the gardens in tawn . Nowdays , I am reading fanfic of Sherlock ( BBC 2010 ) . Have you been to a sushi restaurants in your citis ? A television is being truned off . Is there any differece ? I 'm a little upsed by it because unlike many people in my age I like going to school and I 'm keen on learning new things . I love this fiction mostly because of its exquisite psychologic description . They ask me to wear office cusual clothes . He just said `` not too formal and not too cusual `` write in Enlish daily and watch NHK 's English program . But I overslept today , so I could n't study Enlish . I turned arround and arround , which made me dizzy so I could n't walk well . I have to go to bed in oder to wake up on time . Last Sunday , I watched a film called The King 's Speech . I recomend it ; it 's a very good movie , not only because of the story , but also because it has good actors and a good soundtrack . Thre were UFOs in my house . Wathing TV ( ^ ^ ) I 'm Wathing tv now ! ! And now there exists a major problem that my vacabulary is not enough and moreover I am forgetting what I remembered . An improtant text awaits me and I try new ways to remember words by is skimming through part of the vacabulary regularly . Do n't tell her that I was druken last night . We buy a lot of vegetables and fruit ( appels , oranges , strawberries , bananas ) . I always buy semi - skimmed milk and my mother buys goat 's milk because she is alergical to cow 's milk . On Sunday we are going to make a big cake with strawberries and a littel chocolat . When I 'm on a diet , I wanna eat a small quantity of high quality food insted of making a pig ( out ) of myself by eating low calorie , chemically enhanced food . I slep with my sister last night she is always welcomes me to sleep with her . He likes to come to my house because he has many friends incoulding with my counsin , who plays with him . Today I plan to read a book somewhere arond my house and coppy a book for my student . It has come to reach the conclution that we will be playing covers of the rock band `` slipknot `` . For the next class I have to listen to a Korean song and try to write down the lyrics , I want to choose `` I ca n't let you go , even if I die `` by 2AM , can you recomended another song to me ? level , especially my speaking skill is bicoming bettter and better . We know about sharism and we 're better at creat something new and special , but the old generation may feel nervous about the PCs and iphones or androids . People may pay more attention to their individual experience and their need to satisfire their desires other than those built on possessions . People are crazy to own a house or an appartment . If you were a boy or a man , you should have an appartment , then you can marry . I Love `` kaitennsusi `` I love susi . Do you know `` kaitennsusi `` everyone ? I ate a lot of susi . becouse it was cheap and delicious . I think I have to go on deit ! ! but maybe I will go to `` kaitennsusi `` hi guys , I am Mohamed sadiq from sudan I 'm 20 years old , itz ' s my first time writing an entry in this beautifull site and I want to tell I had been working at a damage insurance research company for 20 years untill years ago . This work had grately developed me and a thoughtless remark disappeared . ( more specific ? When I try to remember new words , I look them up immidiately and review them before I go to bed . And I hope everyong to be happy and safe I paid two handred Hong Kong dollars to him and shook hands with him . I thank not only everyone who made crrection , but also Lang - 8 a lot : ) I wish ALL people who are studying a foreign langage knew about this beneficial item / website / place . The short time makes me rised my concentration for studying English . Addmission was 8 Euros . My fisrst time was over 10 years ago . I had a soup curry in Sapporo which is the bithplace of soup curry . The shop I went to is 3 stories tall in Sapporo . I home stayed in Austaralia for a week . It was an amazing experince . I do n't know if it is difficut to write what I want to write in English . About English singer , I like evernessence , britny Spears , and Avril Lavigne . I 'm gon to count sheep . I 'm a native speaker of Spanish and I 'm trying to improve my English as I 'm studing a teaching programm of English at the University of Santiago of Chile ( USACH ) . Certainly , I 'm not good writing in English and I still make silly mistakes , so I joined this website in onder to improve my writing - and speaking - skills . I 'm interested in English and I think I need Endlish in the future , so I study English now . I will write my diary everyday to improve my writing sklils . Sonunds crazy , right ? In the last set , I was trailing by two points at gamepoint , but luckly , I got four points in a row , not only did I win the game , but I also controlled my stress well , - this made me even happier . I can not understand some corrextions . I 'm so sad becouse he was a person I respected . . . . . . . . . . . . . . . . . . . . . . . GMO ( genetically modified object ) - foodstaff , a living organism , created with the help of genetic engineering . Finelly , the butterfly to the back . Bon moring . I found this wedsite by random searching with the goole bar . The different cultures of each country in which I am interested can be learnt from this wedsite through our communication . We are in spring now andI saw the cherry blosom with its roses . I irealy like this kind of tree . And I have liked it sinc my childhood . The cherry blosom is called the tree of `` sakura `` I have a lot of hobbies . I do n't like spending my hobby alone . I like spending my hobby with my frind or with my brother or with my family . I engoy with all because I spend a long time when I make my hobby . When I heard this , I was realy shocked . . . My job is called center operator which means home electrical repair . So , these sweets bring out the delicious tasts of powdered green tea more and more . In other spots of the mouth , bitter tasts of powderd green tea bring out these sweets . In addition , my company usally do n't work on Saturdays . but yesterday ( sateurday ) , we worked . I could n't go to the clininc ( or ? ) to work . because I do n't neet to work today . So I was relexing and watching TV shows which I missed because ( or due ) to working overtime . It is the firt working day . I like Ken becaushe he helps me when I have a broblem . Ken is good my friend . He 's a businessman . He has many houses . His main hourse is very beautyful . He usually travels by plane . I beleive that this culture is stupid ! ! ! Today , I watced a movie again Everybody drank and tolk a lot . For example , thanks to the developmemt of the Internet , we can now communicate with people wherever they live , without the limit of distance or time , by using e - mail , Skype , and so on . I straddle the line between these wrolds . During the weekdays , I am obsurded in my classes while on weekends I am devoted to part - time work . I have a part - time job at a watch boutique within a hotel resort . Today in the morning , one couple walked in the store , and I talked with the customers actively , I was going to tell customers things about which watch they are gazing . Since most of our customers come from mainland China , I tried to communicate by using Chinese . However , they do n't seem to understand what I said , and there was no response with my talk . So , I turned to specak in English , but it was so embarrassed that once I finished my sentence , the guest replied me in Chinese . I like making someting . But I can not chatch the meaning of the following sentense : Jinger tea I 've been drinking Jinger tea for a couple of days . Because of a hard schedule , I stayed there for only 10 hours , but thanks to my friend I throughly enjoyed the food and a massage . I live in japan , and I am a Japanese callege student . There were mamy people there . Today my coworker invited me to his orchestra cocert at Feb 22th . `` Nooooooooo Im Japanese ! ! ! ! ! ! `` `` Oh you are lier . . . . `` `` I never lie ! `` so many japanese people have got Tatoooooooo . . . . . Its getting populer I thought . . . It was a really fuun day ! ! ! I 've heard an expressin to do something to reduce stress is ' vent ' , And I will go to chitopractic tommorow too ! ! But I feel refreshe so much afterward ! ! `` Just cut my friange , plase `` . `` Cut up to above your eyeblow ! ? But actually I wanted him to cut same line as my eyeblow . . At the moment , I did n't recognaize my misunderstanding . Just being attracted by something will make people drop into a `` sea of knowleage `` . Everybady , take me there ! ! In Japan , tatto are not socially acceptable . But in other countries , tatto are socially acceptable . I wonder if this situation shows that Japanes people are on the very conservative side . Every morning I wake up and feel so good , though , a liitle bit tired . Lesson making sentenses after reading Myanmer over the horizon It was only a one hour meeting but a giant step for a fruitiful future for the Myanmar nations and all the other neighborhood countries . I 'm wonderding if the Arab spiring movement has warned the regime to grant a democratic voice . These words below are from the article and I made sentenses using them . 2 condemn - Japanese Govenment has offically condemned the Russian President , Dmitry Medevedev , for paying a visit to Kunashiri island . 3 mar - Kosei Gaukuin 's honorble result in the Natinal high school baseball tournament was marred by the announcement of some members ' drinking last winter . 4 detention - High school Baseball Association does n't give any detention to the school because the students concerned are in the highest grade and the team has launced the baseball team with their new members . Therefore , I seldome tell my friends about the existence of my blog . That person kept responsed to my article . I goole it and I found his blog . beuacuse , we lose the power and courage to carry out our dreams . I want to traverl the whole world and go everywhere , while I am young . The day everything will be restorted is not far away . . Anyway , I became aware of the following statement last nignt : I was denied when I asked to request a highter selling limit applications . Why was I dennied ? Currently the nursing system is a ploblem in Japan . I think it is not good to have a society that afflicts the eldely . But I 'm not decite on whom to vote for yet . I want to ( listenin , write , speak , and readng ) English more . I feel it is hard to study English because since I graguated high school , I have n't studied it . During World War 2 , Japan colonized Korea and took some poeople from Korea to their own country . Today , I went to a languege school for a trial lesson . Because some students absulutely did n't speak better than me . So please correctu me if it is neccesary `` So , do you want to try the yummy soup ? `` She asked me with her eyes shing . `` Take it or leave it ! `` She yelled and shutted the door . you said it ! `` The wiered voice came again . I hope I can travel to 7 countries befor I die . Another teacher called Mr . G treats us very nicely and aften entertains us by making jokes . I 've worked at a law office for a week , and everying is a new experience for me . Then I heard the most unbelievealbe words come out from a reporter to a big star . The female reporter shouted the S - word to Nadal , turned aroud , and left wihtout looking upset . ( IHere 's a question to British people : Having used it just now , does the word ' bloody ' sound so vulgar that it sounds weird when used by non - natives ? But I think I should supress bad feelings as soon as possible . A transition into a new president of the United State has many significant influecnce to many people and many nations . In fact , many pople are still suffering from predudice or discrimination . The message is that we are not stupit , and if we wish , we can overcome the discrimination . Two years ago , I went by myself to Lasvegas Vegas to see an Aerosmith and Motley Crue show . He and three other major players expressed their unpleasant feelings by quiting the Winter Traning in HaiNan Province . I want to go to the sea this sommer . Am I a Charactor in someone 's dream ? When it comes to travl , different people have different ideas . First , travel will help you to acquire bnowledge . When you travel to a place , you will have a better understanding of the local culture , tradition and costum . Second , travel provides you with the oppotunity to practise * . I also went ( / visited ) the Aso Farm Land where you can find many shops , accomodations , hot springs , and so on ( / and more ) . That makes absolutely no sence ! ! I made a mistake that and deleated many songs in my I - pod . . . It is everybody 's day tommorrow . . We can rest for 3 days . Epecially , the wind flapped us . ( ? ) It became a good opportunity to know the difference between my mother launguage and other launguage well . I have to teach my workmen some knowladge about our production . It was beyond my English vocaburaly . The differnces between humans and chimpanzees Maybe I will have a topit to write tomorrow . I have to get home aroud 7 : 00pm to take care of my baby . After a while , I recerived her abdominal x - ray . Just overeating can mimick the symptoms of a severe disease . I think everyboy has a window in their heart . first of all , my name is tulio , and I want to learn English , becuase nowadays companies requier that you speak English Last week , I saw a new advenstiesment , `` they need a new reporter , but he or she must be able to speak in english . Firstly , my hairstile do not set . threrfore I do not like June and July . Las Vegas is an exciting city , so so I 'm agrry when it 's called sin city . Vegas is awsome ! And the conference that I had hoped to participate for many years was awsome too . If I remember correctory , your brother lives in NY , is that right ? Do you go to NY occationary ? My favorite auhers are Haruki Murakami , Soseki Natsume and so on . Haruki Murakami also translated some foreing works into Japanese . I sometimes feel very confuzed . C . without subtittle now . I want to visit the place wher the drama was filmed . Because my best friend gave me a free tchiket to the gym . I thought that the cafe was so confortable . It is really cruel ! The team protected the Kekexili for 3 years without any support from local goverment . The bullfighting is a ceremoney not just killing the bull but looking forward to a good harvest . In 1990 , he became the first left - hander to win the United States Amature ? Championship title . According to the article , he has a left - handed golf swing after mirroring his father 's right - hande swings . I was at the company sending for a long time . My boss musst use the detile today for presentation ( ? ) but I did it slowly because my computer at my company is quite slow . I falt bad I could n't send the file to him in imtime . I tried to ask a colleague to help me send email to my boss because I must change the details . He is very cute . My friend called me to make an appointment on Sonday this week but I did not say yes because I would like to sleep at home for my weeken . I checked email today . It 's great to hear from my French friend . They sent a text to me , I had not seen them for ages . They had lived in Bangkok for a long time . I knew them when I went to packtice English in Impini park . They are so cute and taught me a lot of English and French . I had studied French language for 3 years but now I have forgotten it . I can not say anything , just bogjour , comment ca va and Je t ' aime . I was fanatic about Gyoza today since I was in the midle of working . Incredible three thimes . Most people ( can / could ) have difficulties when they speak a foriegn language which they 've alread studied for a long time . Moreover , I can even hardly express what I 'm thinking in the foriegn language . What do you think the most important things are when you study a foriegn language ? Everything was expensive and there was a variety of marchandise that kids love ( even adults . ) They looked quite mature for thier age at the entrance ceremony , because they wore suits . My university does n't have a lot of students but because of this , I can make friends with almost everyone and I 'm looking foreward to that . It 's difficlut to discrib the receipe . We saw a bear acrossing the road . I hate waching violent films . Outrage has sirious and comical scenes . Today Osaka is soooo hot ! ! xO So Green tea is Ryoku Cya in Japanese . I felt it was weird to put something in green tea but we put suger in English tea so maybe it 's the same thing ! : p Then it becomes two parts in the calssroom : I teach my own things This is my first diary entry in Lang - 8 , I hope I can improvment here and make friends with you guys ^ ^ . I like reading cookbooks , the pictures in the books look so delicious and meke me happy . Do you know the Jpanese noodles called `` soba `` ? Reducing carbon dioxsides is attacked by TV commercials frequently . While I feel they are similar , I 'm assured that Toyota 's car is safer , more economical and envernmental friendly . It is eviidently that the car 's fuel consumption is 23 kilometers per liter of gasoline . And I am learning Thai unformally . Last week , I did n't paln to go traveling over the weekend . But one of my roomates asked me to go to underwater world with them . Unfortunately , I was busy all the time and had not had any chane to visit it . Unwxpectedly , however , it was raining and it seemed like it would continue to rain . wha a pity . I wll study more English and go to bed . The Interenet in Thailand is not as broad or commercialized as the one in Hong Kong , but the quality of its system is high , built around the country 's universities and technical institutes , guaranteeing a large supply of Internet - literate people . Today , the day was darking when I left the reading room . This theame is my homework . I 'll explane about Hikikomori . I 'm sure all of us can be hikikomori , because we are weaker than we think , and the reasons are more complecated . My English is n't very good so I want friends to talk with so that I can use it more regularly and improve my English expecially my spoken English . During this period , I was fasnatend by other worlds and cultural things . I locked the door in 3 different steps so he coul n't open it ! To be blingual is my dream , and Singapore has a good economic situation and working environment . It has a monster mathematic thery behind it , and people will never think any raw data is useful unless they understand the theory . It 's good when you sit down in front of the screen , watching the earth move like water , the spoon drift touch the cloud , and the dramatis personae always stands on the edge of death . The end of world , this concept has never been a part of Chinese culture , and no one belive it . Of Ofcouse , maybe this is the difference between the ease and west . I use a Bkack reather planner . 1 , manthly callenders for proglaming long tarm sucedule and maiking apointment 2 , daily sucedule and task notes for protecting me from forgetting and increasing efficiency 4 , rifills written about information which I need to watch frequently . This sistem is like Franklin planner . I studied the sistem of Franklin planner , and reproduced this sistem with blank rifills . I do n't have any confidence in my memoly , Actaully I ca n't believe it yet . tommmarow is the end of vacation , Global warming is a thred for all man kind < or > humans . The weatherman on TV said that February will be rxceptionally warm . yhat would be nice . I was very suprised that every person I met was also korea . I 'm currently * developping iPhone application in a Japanese company . these days Japanese goernment is very weak and tends to be changeable . I aften eat a dish called NABE , which consists of vegitables and chickins , pork , or whatever your favorite ingredients are cooked together in a soup . However , I did n't have anything to do and could n't even take a shower becuase the water was cut off . we met and then we went to eat somting . It was very deilsious . Then we went to the acdemy again . I did n't know this actually but yerterday they had a Japan versus Scotland football match , here in Tokyo ( I guess ) . Yesterday , she taughat us about how to pick - up a Canadian guy . Today is my aniversary He has powerfull energy and charisma . I would like to learn Biomechanisms and Robotics at Thukuba graduate university because I want to make a Robot suit like `` HAL `` . I watched the movie , title is `` zonmbieland `` and `` kickass `` , today . zonmbieland is very a sweet movie ! I couldn n't turn it over well but it was delicious . Although nuclear power produces nearly no coventional air pollution , qualifying it as `` clean energy `` , the disasters it brought have thrented the existence of human beings . For example , I had to be home by 5 o ' clock untill I graduated high _ school and I could not leave any food , even a single grain of rice . They were prety naughty to me but not to thier mother . I told them to stop it many times but my face and head got hit by sevral stones . Next day I was dismissed becouse I punished them . Although I am sigle , _ I am nervous about becoming a parent . I feel a little bit nerous . Snacks goes crunch crunch in people 's mouth also drinks goes gulp gulp in children 's throught . The speakers are birsting out with loud and clear music . There are full of regretful coments with regards to his death which can be seen below the video . I did n't recite all the vocabulary , so it took me a lot of time to read the sentance . I want to buy some clothings for winter . I 'm tired but I thougt my work is was pretty good I worked for one month so dedicatidly for him after my ' afternoon work ' and during my days off . I was so surprized . A funeral ( PLease correct my sentense ) I like its coloer , very pale pink , almost white , contrasting with the dark brown of the trunk . In my opinion , all males should leave on Women 's Day also so that they can consort with their firlfriends and wives . I found it very intresting . I like rock ' n roll , for example : ZZ - TOP , JIMI HENDRIX , BB - KING , METALICE and so on . . . If I can , I hope to take advantage of my previous experience and English conversasion . I thought it was a bit wierd because she and I were not so close as to exchange messages . So , we can easily understand the why people crowd in the promotional merchandise and discount sections , and the people produce and sell unsafe food , which seems strange in some foreogners ' eyes . However , food securtiy takes money , which raises the cost of food . He was an about three - merter silver robot . Today , I have entried with this site . English conversation , English grammer , TOEIC Reading , . . . I have to study English for bussiness . However , I didn n't have enough money to order ramen because of the book I had bought ! I repplyed OK ! While playing , I strumbled on the soccer ball and fell . Then , I strained my left hund ! It 's makes me feel good to express my own feeling in another countrie 's language . The senteces below are one 's I made up today . It 's not perfect , so I want you to correct my senteces . Beef is quite expenssive . And they are destined to trade goods and merchadises with each other . Thanks to your hlep , I 'm doing better at english than I ever have before . There are a lot of Japanese toys for kids , and I would be happy if foregn people also liked them . I 've been having a cold and a stiffy nose for a few days . So , Okinawa prefecture has different culter from Japan 's mainland . I love the compassionaite people , the subtropical climate , and the beautiful sea at Okinawa . I had a pracrice of soccer at night . However , I had a lot of fairures . I was shocked because bomp sound . I 'm so excited to see her on the other hand I have to tell her my desition . . . But I have to tell her imidiately . . . . . . Anyways , how diffurent is `` Be going to `` to `` will `` ? Referring to those information , we discussed what Japanese Goverment should do . We hope we can solve thie problem next time . I went to my restrant to work . Meny people visit there . Born in 1869 in the hinterlands of Siberia as a son of a mere peasant , Grigori Yefimovich Rasputin would have appeared an unlkely candidate to rise towards a position of considerable personal and political influence over Russia 's ruling Imperial family . Yestarday , I was depressed because I want part - time job , but it was a day off for me . This weekend I want to rest and review my seminor textbooks . I felt the Chinese pepole 's energy in the festival . It was because I caugh a cold . The `` Sping Bank Holiday `` was on 25th May in the UK . I finally figured out how to use my electronic dictionary which I got from my family as a graduting present . Suddenly `` Go for your cowokers . Love is paradax , do n't you think ? I having a troble right now . I and my friend Eri tried to stop continuing ssociation with him . These are pictures provided by Multonman County Sheriff 's Office . He understaned the my problems . I really do n't feel like going becuase I have other things to do at home . This afternoon , I played ' Zhen san ' with my clsaamates , but we lost every game . I felt so upset after that that I went with some glassmates to play ping - pong . I had n't palyed it a long time , and when we were just getting started I felt like a beginner . About my syster and her husband ( Iwork Jinbocho . My university has a lental DVD center , and all the students can rent some DVDs with cheep price . Is it normal to rent DVDs on campas in The States ? That 's more weired than doing nothing ! There is not a crownd of peple and it is not noizy . Being a college stdudent is terrible . I 'm so norvouse . > < ? The adventage of Lang - 8 is that I can have my composition corrected for free ! Therefore , I will wrire diary or essay day after day . She saied that she really wants to sleep over . Functional Magnetic Residence Imaging , FMRI , is a parsisure that uses magnetic residence imaging to measure the tiny metabolic changes that take place in an active part of the brain . My first writting . In generaly , _ it is meant to symbolize that I should be loved by many people and also love many people . But in fact , _ my father had a fovorite child at his workplace when I born , _ and her name was `` AI `` . But I like my neme very much . We cant communite very well . I laothe english . Like I said before , I will keep movimg on . The newscaster said that in Islington the number of cars runnning on the street has genuinely decreased . The univeristy try to push students to communicate , and use a lot of English for studying . That was realy realy interesting ! ! The aftershock is coming , the nucleare problems have n't been solved and victims of the tsunami have not been rescued yet , but I believe we can repair the broken city . I like `` Toy Story 1 . `` I hane watched it more than ten times ! ! In other words in English , ' The whoopper is very delicious ' Today 's lanch I like spycy and ethnic food , so I sometimes have Thai or Indian food . To take in nourishment , I endevor to cook light dishes through trial and error . But , I am not goot at cooking . . . It was very windy last naght . It is especially exceccive today . I thought the stuff is too exprensive . I ca n't afford it . My friend He spent 400 yuan to buy a cloth . He is very pround because the cloth is a famous brand . But when you receive t the jeans , you find this jeans is diffrent from the picture . Eiglish is difficult for me . tremendous damege from the earthquake in Japan . Now , over 1000 peaple have died or are missing . Sendai , one of the biggest cities in Japan , was heavily dameged by the tsunami . It was the biggest qiake since we began to measure earthquakes . I cought a butterfly . After that , I sometimes caught other butteflys . There were some foreign toureists Her occapation is as a beaucian . They were very kind to me and their house was confortable . My scool is ACE , Australian College of English . I love flwers . My best score today is 89points , and today 's avarage is 85 points . A Headace I hate math , so I allways get a bad score , Some people say that simply read through the words is enought to memorize those words . Some people divorced 25 minits after they got married ! I was very surprized to see this news . But I think it depends on their personarity , so that ca n't be the only the reason . Reading is very funny and excitting for me . My body is heaby . Today , I was very unfortune . It seems like a ( very ) geat community . I 'd like to make use of it , and iimprove my English ability . It 's one of the parts of speech in Japanesese grammar . That is absoluly fantastic awards I 'd never seen before . He 's act in the Dark Knight was Amzing . I think that the train stopped and I could n't come home becaues of the typhoon . When a typhoon almost comes the train stops at my office neary the statiom . I became very scared and decited to be careful from now on . Last week a paster said that we had to take a pious attitude during Lent . The date of Easter is decided each year according to a given rule of the church , [ / BLUE ] and the dates of Ash [ BLUE ] Wendnesday and Good Friday depend on the date of Easter . This year Easter falls on April 12th , so Ash Wendnesday was on Feburuary 25th , and Good Friday is on April 10th . Many Christians fast on Ash Wendnesday and Good Friday , and the mony saved from the fast is given to poor people . Lacky me ! He is marriaged to a Japanese woman , And had mongolian traditinal boiled mutton 's leg . I realized the necessty of English for global communication like this . Today I went to school , because we will start our new semerster the day after tomorrow . I 'm into holoscope these days . His Paformance is attractive . I 'm glad I can join thise site and meet many new friends . Having a phone call when their roomates are reading . Washing things when their roomates are sleeping . Thanks to this journal I rememberd the washing ! I 'm looking forword to meeting them ! ! My sister 's family picked us up and then wer went to the Korean BBQ restautrant . We have n't been there in nealy a year , so we were so excited for their food . I ate eatwatermelon , and caught beetles . It 's a precios memory . The old house was remodeled . Hatupousai is Chainese food . I fried many vegitable , shrimps , and cuttlefish . The victims of the tsunami and the radiation leaks are suffuring from a serious shortage of food , _ water , medicine and heating oil . I was impressed with both contries . I am 20 years old and studying in a univeristy in Taiwan . I think I will start trying to write my jornals in Japanse , but I 'm using Engish as the ( median ) supplement since my Japanese is so poor ! ! Anyone who can help me correct my jornals will be greatly appreciated ! ! Yesterday , I posted an entry for peoplo to correct and no one did . I have to returen some books . The Japanese person is a gril . Her name is Ami . Me and her are the only two gril in the calss , so we are very good friends . Our human should unite togerther to build a United Human Republic . I have already wached the first one . I am not good at writing essey . I have poor grammer . I am working at a restrant . Thamk you ! We were imppresed because the illumination was very beautiful . Today is the startig of my 4 day holiday . Out of all foods , it is the most delicous Please check my crumsly English . It had a lot of thinds . When drinking with friends I 'm not well aqauinted with , I have to say ' ' I have to be up early so I can study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , the last two were jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe than usuall so we have n't much work to do . My cats are running aroud energetically in the house . I 'm chainese . I 'm good at sprots . Repeat this 20 times , then put your hands on the back of your backhead , and repeat . I was in the lab untill 11 pm because I had a lot of things to do . My alam clock I alway set up my alam clock . The alam voice is a music . I think I have to change the alam voice to be noyierso that it can make me get up early . I 've been interested in English since I was a young gril . I still can not imporve it as fast as possible . . . . My writter neither . . . She bought a lot of things in the web and spend a lot of maony . 2ne1 's chams attracts people . Although I 'm also fond of watching other singers ' performances , these days I 'm sure that 2ne1 's perfomence makes me feel good . I also know that the eliminatin of nuclear weapons is nearly hopelessly impossible . regarading earlier posting I wrote a brog post for the first time on this site some hours ago . I had a graduation examination yesterdar and today . I ` m expecting Japanese figure skater Mao will get the goald medal . 12 year artwork project `` Story to build a ship `` , This project works by PH Studio ( group of architectures and artists and photographers ) and people living in this vallry . It was not until then that I actually felt I was in Europe , which is quite differnt from Japan . I think I got sick from overexposure to air comditioning . . At that time , the weather was so hot that I was wearing a lessveless dress . So I shived in the cold while watching the movie . : ) The pictures that I have attached are not cleard because they were taken with a mobile - phone camera , but you can feel the joyful atmosphere . But I will rather buy my safety and comfatable There are so many aaants in my house especially around the kitchen . Taipei New World Mall boasts all kinds of shops , spoiling tourisms and passerbys with their boutiques , snack stalls , apparel stores , video game stores and so on . I had good experiences to comunicate with people of diverse nationalities . In diaries that other sutudents wrote on lang - 8 , the word `` busy `` stands out . I have n't cooked rencently because of work . I would n't say that I am a vegetalian , though I love all kinds of vegetables ! And I realised that even my childish laugh had disapeared . But I am trully surprised . Today was a liesure day , because I did n't need to go to work . I got up late , then I felt confulesed - - what should I do ? Wind flowed , clouds were beatutiful , the sun was so hot . My kids have changed my thougt . Then , we entered the same high scholl and joined the volleyball club again . What do you think of my pronuciation , to be honest ? The report noted that the student hung herself in her bathroom with a terrible pose directly because the school rejected her mother to live togather with her in the student apartment . As a young person , I knew ; either for others or for myself ; I shold work ( in order ) to live . I 'd like to make friends with everybody , to know each other and make progress togather . My other firend and I were impressed by his comment Ohh how surpised I did n't think I would see them there . . I wish that snows would be melted by tommorow night . Arfter that , My Korean housemate came to my room and told me he had tried to made Krean food and eat it . I am studing English hard these days because I want to expand business in the world . I usually use our dialect , so peple ask `` Are you from Osaka ? `` . `` Yes , of couse . `` I occasionally watch TV ploglam . It is the last year for me to be in the univeristy . So I want to go to experience and campare personally It is btter to travel than to read voluminously . After that , I dropped in to a carrer center in uni , and wrote a report on job hunting . Every stuedent has to hand in the report , so that it will help the students who will go on a job hunt next year . I reccomended to him to download a word file from a website , and told him how to put a photo on a document . Do you belive that Mary is going out with Tom ? Tom was a quite , handsome man , ( do n't pretend you do n't remeber him ! But I still have no ability to write or to speek on an acceptable level . I fenished my job today . ( ^ ^ ; ) I 'll go shower after writen this sentence . I want to know abouto foreign comics . After ( ? ) Openning the window , rain drops come into my room . Before it came to my house , it was my grandfater 's . I saw each year a countdown festival from bradocasting on television . But she recieves a small salary . I always feel excited when I go to Karoake . Suprisingly , he bought presents for me and my friend . Today is reiny in my hometown . I think Saiunkoku is a fun story but the thema is politics . As my homework is so heary , so I have n't watched any drama . They are the reason that I have difficulty writing oftenly . Recentry , I do n't feel well . I just do n't know waht to do when he is grumpy and disappears . The third son recently hung on to somotyhing to stand up for the first time . However , he is very dangerous because he very often falls andoversets . Those years were great , I met so many people from diffrent countries . I liked them all . The world is so interesting . We are all are so diffrent , but we are all human . We have the same wishes , the same fears and emotions . . . Hi everyone , I 'm Chinese , and I 'm studying Englis and Korean now . Now I totally regret my behavier . > < The most precious moment was when I passed the final interview for going to Vancouver for the inter skills training program as one of the representitives for my university . Lastly , I feel grateful to Byron for helping me improve my English and encouraing me to practive everyday . I was smilling shyly in the pictures , and looked happy . That is meanless , in addition , This word must make me walk back . He is the most interesting and well - ingormed person I have ever seen . He told me that there are many treatures in books . Moreover , he loves to travel to diffirent countries . I remeber that I wrote one diary yesterday here , but I ca n't find it . return gifts as a token of thanksness I think that it is important for Japanese to show ' a token of thanksness ' in some way if we receive a gift or favor . Any way , desire of studying or learning by inspiration helps us not to learn at high level but helps to learn for discoveing the real wrold . The little pies and chocolate pumps at a candy store little popular but with nice swetts . it doens n't make sense . The whole city is pluged in confusion and sadness . I was despiced X ( Rose shall retuen again ! nihonggo daisuki demo It is a convinience with many transportation sites . I prefer to swim in a swimming pool because I do n't like getting a sunburn , butI sometimes I want to swim in the ocean . They have been supporting me whenever I 'm in troble . One of my doble majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rnb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationshop ! So you have to study it very hard . `` I have to say that 's ture . You just have no gift in studing foreign languages . You should just take pride in yourslfe , because you can speak the most difficult language in the world , Chinese . `` Writting an English diary is a new way . The glasses I bought are light and taugh more than my old one . Studying at colledge is a lot of fun . I 've met nice friends and I have wonderful teachers . I 'll try the TOEIC in the next six months . I 've decided to study hard and earn a high score , so someday I 'll be able to talk English fluentry with you . Boys especially behavior like this . What I can do is to wish him a pleasant jourary and fly higher in the future . I have tried to find the reason , I think there are two : one is that I did 't get a good start , which means my colleages do n't like me very much . They just keep making fun of me , and they do n't distribute some of their work to me , but to another colleage who came this compang later than me . This month , I faced a lot of difficulties , one is about work , and another is zbout a relationship ( actually it 's also about work , because what I am going to talk about is difficlt to deal with - the relationship with my colleagues , and some of them are my roomates . Usually , I like cooking , but my roomates do n't like it . This kind of things always happens , but I 'm not usded to it , I am innocent , I have n't done anything wrong . After so much time without a single word here I have decided to return to my blogg again . I stueying English . At the meeting , I had to explain the doccuments I wrote . I planned to visit my wife 's parents this weekend , but my wife wo n't be going back together with me since she has to receive one - day 's training in onmodern management on Saturday . I already need to sleep again because I need to get up early tomorrow moning . Moreover , overseas visitors chose June nad January in second and third places with around 600 thousand respectively . Furthermore , similar treands are reported except a siginificant decrease in September with just over 600 thousand in 2004 compared to around 350 thousand in 2005 . In terms of the top 5 countries , the talbe shows that Japan , Australia , the USA and South Korea were the commonest countries as tourists to Britian in both years . * The top 3 countries did not show big changes in their percentages , although Japan was reported as the first country in 2004 and became the second with the only nagative change of 2 % . But many people think that it 's a sahme for an adult like me to be a fan of this story ! But I can not do anithig about it . I 've alredy read all five books ( including the last one , written from Edward 's point of view and its fan fiction ) first in English and then in Russian . I restarted studing English last month . I quit studing English 6years ago . There are a few sounds I ca n't pronunce yet : . For example , I do n't know how to roll my R . A seriouly infected patient is a 6 - month pregnant mom . The eighteen year old mom has been confirmed with the 2009 flu . She revealed pneumonic symtoms and respiratory failure , she needed urgent treatment for her life . PS : This is my first entrie . But enexpectedly as soon as I got up in the morning on Monday one of my friends called me and told me that she wanted to visit my home . I 'm was really happy and she came in the afternoon , brighting me delicious food which we ate while watching TV . In the afternoon after she lefe my home suddenly another friend called me to go shopping on Tuesday . Surprisingly , while I was eating my middle school deskmate called me and asked to meet in a coffe bar on Wednesday . So on Wednesday I drank a cup of coffee in a coffee bar with my deskmate while we were chating and playing bridge . The next morning my classmate called me and said that she had an upset stormache and she wanted to know if I felt ill as well , but luckily I did n't . The cange 's god . It is chenges or bills . Maybe There is a cange 's god . The cange 's god , thank you very much . I bought a lot of things that I loved including a buttle of sweet cream wine . Yesterday I terned on the air - conditioner ( or the AC ) , but today I terned on the heater . I know the meaing of word , but I do n't understand the use of this pharse when it occasionally does n't seem to suit the conversation . This school 's theme is : I will be a professonal business person and president . The europe buildings were resplendent , elegant , and spirtless as they always are . I want to be a scoial worker or a reporter . I 'm looking for goint out for dinner with her . Thank you ffor commenting in my last journal , I feel better and better . I figured out what it is was thet was bothering me . I try caping with my life . It helps to step foward from dispair . Some students were runnning around the school . I was not good at sports , and I did not like runninng . But , lately I starated slow jogging for my health . Some day I want to run a marathone . One day , I found this website on the komica . It 's a ACG website and I immeidetaly found that it 's a very interesting website . When I think of people who live far away communicating with each orther , I feel very excited . The other smartphones are not very atrractive for me . Reading Habbit summerize the book using charts and graphs with just 1 piece of paper read your book dirtly , do n't save your books . build specific point of view , write general subject like prizm , not just dig subject ( ? ) . I went shopping at an erectric store . I want a small parsonal computer . It is very expesive . I do n't have enogh mony . I want a lot of mony . The population is on the decrease . More specifically , young people are leacing , and old people are on the increase . On Friday we had American gests from New Oreans stay at our hotel . They were so friandly , easy - going , talktive , even , and they just start dancing . I 've liked history since I was a child , and I studied it in univercity . I did n't even look down , maybe by that time I 'm a little sared too . At that time , he knew that he must go or he would be a delious meal for the fox . My wouk schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarden teacher . I want to go to foreign contries and thought that Macao is good for me because of the language and the money . After that , I listend to music . I have several comporsary duties [ compulsory already means ' which I must do ' ] . I awaken and I am very tired , totally exgusted from it . There is a pharase in Korean like , `` Men have only three chances to cry `` . I must keep calm in front of my subordinaries , so I had to find somewhere they could n't hear and see my weekness . It 's very peacefull because everthing fell asleep . . . except for me . It publicate itself as ' L ' ife is ' G ' ood . Of course , since it 's only a semester - long course , it 's not enough to cover all the problems there are , but it still can give a general impression on how complex and interesting this area of engeneering is . I wonder if fornigners have a difficult time trying to speak Korean too . Today ( Japanese ? ? ? ) I wachied Tonari no Totoro by GHIBRI on TV But I 'm cheering Daiske Takahashi ! ! ( ? ) If you have some good abvice for me and find my errors , please tell me , I will thank you for visiting my blog ! I could n't understand it completely , due to its historical background . After seeing the movie , I want to know the hisory of Spanish . This morinig , I watched the movie ( called ) ' Beautiful Mind . ' I like to drink alchol ; beer and Shochu are the best . I started writting a Japanese diary entry . I started writting a Japanese diary entry the day before yesterday . Because I was not intersted in all of my studies in those days , Now , I saw many people studying Japanese on this site , so I was growing more interst about Japanese . I decided to start writting a Japanese diary . I think that studing foreign languages will be one of my hobbies . In the case of a movie or TV , the actor 's speech is very fast , so I ca n't catch on normaly . Today , I joined a local soocer club . One Aussie guy was alreday sitting on the grass . It was so greate , and it was Rock ' n Roll ! I think ther are a lot of good things about the bus here . I mean , most of the time they are clean , they have a sistem for people in wheel chairs , and they are big . Taht day we played card games and chatted about summer plans . Then we decited to go to the Taipei Water Park together . It was not very exciting but intresting . I like computers and the internent , and have & nbsp ; read many books about & nbsp ; them , such as The Microsoft Word by Bill Gates , The top of the wave by Wujun . The dead lenguages . We could not finish the work we planned on doing , becuase the customer got the wrong program . The weather is vry hot here . Hard schdule . I feel I 'm luckey and I want to take care of care my daily life . Mia has no father , becouse her parents had divorced . Many of our firends came and we had a good time . I wish one day I could be an excelent teacher as they are now . What we should do is respect them and try to inmprove teir lives . Yesyerday , while I was on YouTube site , I found nice hip hop groups in Japan . My major was internatilnal relations especially East Asia , as an undergraduate and graduate . ( It 's new expressiton for me ! ) `` This is a kind of fundamental soya bean . . . . `` We received a persent from the science club ! Her voice did n't sound as lovly as it used to . I Iwaitted 3 hours for my mother to comehome . In the hall , I listend to the lectures about which course to take in the future by two midical interns . I 'm so worried about which course to take in furuture that these lectures are I 've been longing to make freiends all over the wolrd and enjoy chatt and spending a lot of fun time with them . Avril Lavigne is my favorate singer . And Japanese is prohibited from now on . `` It was a suprise attack . Altough most students were calm , a few were shaking . The notion I was not alone comfrted me somewhat . I will post some essays in the furture and I hope anyone who reads my eassy gives me some suggestions . I spent one day playing with and taking care of my addorable niece . I will import the CDs to my WALKMAN tomorrow and I will listen to thie music every day . Who are your favorite musicias ? But this quake bacame strong and someone shouted . I have worked with DSK in kroea before , I am sending our main products list as attahced . Thus , I think it is natural taht parents are the best teachers . It 's so difficult for me to use English in my surounding . I live deep in the mountains where there are no people who use Enlish . We came back from Boston late on Sunday , so we colud pick her up on the way back to home , but the kennnel was n't open last Sunday and Monday for pick - up , due to Memorial Day . First , I saw the Japanese style armers . For example , some armers seem brave , some dignified and some intellectual . The weather forecast said , `` Pay attention to heavy rain till tomorro morning . `` Actually , the previous article I wrote was never crrecting . What kind of promblems can this cause ? If people inve in other countries , they would experience the difference . Connecting a city road system to make other free travel moreeasily and more quickly than steets and roads congested with many singing andlight bus stop . Today it 's raind so ~ ~ ~ ~ much ! but it raind , so I could not go out . what happend today : ) I saw a TV program about the new year 's marathon while getting ready for goin out . Just the diaries of a stupid gril . that is nothing spciel . This is becouse the light reflected off the water bottles repels the cats . I think that is interesitng . Soprts bicycles are expensive so it is necessary to be carefule when selecting a bicycle parking lot . And I guess electirc toothbrushers make my teeth more clean than manual brushing . I suddenly realized that it was time to pull myself together despite my parents ' broken marriage , and focue on studying again . My friends taugth me how to use the computer well . While we were going home , we tried to speak only English istead of Japanese . Although our conversation proseed slowly , I thought that it was good idea ! I feel the diffrences between two sentences . But I can not explain the diffrences clearly . I am in a ELD ( English langusge development ) class . If my English improves , I will take some science classes because I want to go to a good university . However , I do n't remeber what it is about or how good it is . I paracticed playing this song today : ) Today , I dropped by a glasses store and bought a pair of sunglasses for my use on a short trip the day after tommorow . Tommorow , I will wash my car with my elder daughter for the purpose of a short trip . Then , I thoght I 'd study English words while reading book . Is there a book that you can recommend for biginer . Do you know a book which you 'd recommend for a biginer ? Acutually , we all felt that way . 'cause I blieve that to do one 's best is important and valuable . I 'm not a ginius , I 'm just a nomal person . . ^ ^ but maby I can do it . speaking of methed of studying English , I beilive that Lang - 8 is very effective and addition , it 's free of charge . usually I would work out , before swimmimg lessons , but I did n't do them today , I rarely have an opportunity to work with foreigners , so it is a prime opportuniry for me ! I LOVED TAHT ! The temple was good to see and Seokgatap in the temple , which was constructed in the mid - eighth century was simple , but had a good blance . The homework is to read a book witten in English , and write about the setting , summary , and my impression of the book . : quated from `` Pay It Forward `` . He allowed me to , so I called my mom to pict me up to go to the hospital . Itarian restaurant Yesterday I went to an Itarian restaurant famous for organic vegetables in Ginza . Theoritically , Indonesia is located in a strategic position . And they were touched by beuty of Korea 's traditional house . Now it is neary 6 : 00AM . Parhaps , it will shock everyone . I hope my poor words can descripe it clearly . What 's more ? eah . . . wait for me to have a dream tonigh 2 days ago , at Yoyogi park , I drank wih my friend . I was completely drunkn and fell aleep on a bench in the park . By having this faith , I have the confidentence to face the next challenge presented to me and I am not afraid of facing problems . Second , I want to go to my home in Hirosima prefecture . I look forward to reading my diary after it 's crrect ! In the future , I will take more time to read , because I like reading very much , and I want to have more kownledges about all over the world . The job is difficult but it brings me a sence of fulfillment . movies , news , novels , grammer , diaries , travel news and so on . hello , it 's the frist day I came here . I 'd like to make friends with everyone . I have to work hardwork for the meeting of our project in Sep . In China , finding a good job is very harrd , in New Zealand it is 't so hard than China , but it 's not easy . When I missed getting off of a bus and was concerned wheather I could get to my home safely , the bus driver made the effort to make sure I got home safely . It is that the weather in Seattle is very changable . I miss my country 's familiy , friends and food but I know there are lots of interesting things in Seattle . So I hope you can correct my worng expressions . we are gon na go wacth the musical `` the lion king `` : ] Resently I got a new job . I am not sure if they do drugs like drug addic or if they just did it once , because I heard it from someone else that I hardly even know . So I decided I want to ask them face to face if they are drug addic or if they are dangerous , because I do n't want to bejudgmental , talking behind their backs . I want to make a friand ! I have friends in the UK and we exchage emails with each other but I make mistakes all the time . I will write my journal and emails which I want to send my freinds . I enjoyed many experience , such as Mekong river cruise , long tunnel of Kuchi , and shopping . They have food that goes with drinks , such as fried rice , grilled fish , and Chiken karaage . This September , I will be promorted to a position that requires me to fill out a lot of documents . Please resolve my quesyion . I 've fainally finished school test last week . I challenge cecondary level so I want to improve my English . Yes , my handle name comes from the from famous musician Jaco pastourius . I was very supprised , because his sound was very unique and very interesting . I like learning languages , so I interviewd with a foreign exchange company . A litle bird We used to be more talkertive . Refference : The teacher said we can read toghether in 6 months to a year . ( half or a year . Or what do you recommand ? I 'm a bigginer so please recommand easy ones ! XD So I buy a fiction named `` the Lost Symbol `` which written by Dan Brown , one of my favourate writer . Hence , I am not good at speaking and listenig English . How shoud I study to be able to speak and listen to English better ? I felt reflesh after a 90 minute nap . Ican have breakfast for a half of the day , reading lj and planning smth for theday . Before I posted it to tiwitter I had deleted it by accident . Do you know that Japanease mobile phones are very high qualty and have many functions so they are very expensive items ? I have heard that there are simple mobile phones for average users and kind of pda for heavy users in foregin countries . My Japanese collegues are morons , nobody can speak English well except for Seki - san . I am going to take the test in Feburary . Now sixteen years later I still take time off of work and study to play it very ofen . I 've nerver had formal training or a coach . But I beleive I have a gife for this ! Ysterday I found a website which has many people that live in my city who love this sport . Also : according to past exeperience , the attendees are mostly professors , NGO staff , governmental associates , and university students who are related with this subject . Dispite yesterday 's continuous rain , the sky was completely clear . I cleaned my room a little becase it 's nearly the end of the year . You are a worker of a large supermaket . Maybe your supervisor has a trouble infoming somthing to all the workers . Because the supermaket is very big . When I listen to music through headphones a little loudly , sometimes I feel I am in my own small unversity . It has become cold these days , so I bought oil for the air heeter . However , I could n't use it because the pump to pour the oil into the tank of the heeter was broken . A raccon on the balcony It was very surprising to see a raccon on the balcony ! Well , I 'm living on the second floor , so it 's a big quiestion about how he could get here . I like it when I touch the keybord for the first time . However , the typhoon is comming to Tokyo and will be here soon . I was surprised by this number , because the iPhone , which is the largest competitor to the Nexus One , had sold over two handreds and fifty thousand in first week , according to this article . My dad is the most ugly man in the world . I hate him hate him so much , what a horrible man he is . We hardly ever talk , and we are always angry when we speak more than 6 words , so I perfer to talk with a stranger than to him . I have been satisfing with this vacation . As a result , my study is prompted superefficiently . I am a grade one uniersity syudent now . I 've studied for two months . How follish I am . everybody has different plans & dreams in the their colledge life , I want to be a business man in the future and have my own company . That journal was written by a japanses person . I eat dounuts and drink coffee , of course . I finished a chinese chracter 's homework during break time . When I took a bath with my younger daughter last night , she asked me , `` Can I get a baby with my tummy ? `` Ske is 9 yaers old , a little chubby but watches her weight . My American friend told me that she had a friend in Australia and we found out that her frined was a student at the university where I will take an English course . After words , l went back to my home and watched the movie `` Btterfly Effect 3 `` . I like to have a my own garden where I can plant some vegetables and herbs , set up a table outdoors so I can read and realx In addition , another advantage of living in a house , it is much quiet than an apartant . However , therere are also some advantages to live in an apartment , such as better location , cheaper rental then a house , close to public transports and variety of facilities from the apartment , For example , a bigger swimming pool , Gyms , theaters and a security system which is very important of our properties safety . I wana study science in a university . I like scienc very much . But then I realize that I 'll never learn how to if I dont n't make these mistakes , even if I get embarrassed because of them . I lost my moble at a bus stop . It is certainly a new way of communication wich we did not have some years ago that provides posibilities not available before . On the other hand , we must accept they have weak points , like risk of addiction and possible unintentional public exposure wich of course can be found in other very old examples of our societies . The brain of that computer is composed of 2 Bouble - Core CPUs . I belive I can do it by Mac . Short time ago I read my acquintance 's diary in mixi talking about lang - 8 . There are three words which mean the same thing as `` result `` meanslol ! I met one of my friends who I have been best friends with sinse we were high school students . I had a plesant time ^ ^ He has a very global philosopy . They talk everyday in lovery voices . If you are free , please check my sentense . The theme of the lesson today is net play and practicing vollay . ever since I came to this school , I have kept tolding myself never Actually one of co - workers is complaing about her cuz she is strict on everything like cleaning , manual and so on . Sometimes I really like to live here , but I feel sad ofter . In October of laast year , I went to a Chinese restaurant in Fort Lee with my friend and her five - year - old daughter . Nevertheless , my friend kept telling me that they served delightfull meals / dishes , especially shrimp dumplings and wonton soup . I did n't undersand what she meant by that phrase . She replied , `` I said it 's my treat . `` I was comfused , but I finally got the meaning . When I was a high school student , I lernt it / learned it as `` Be my guest . `` Ttip to India ! Please correct my diary I hope the nuclear emittions will be stopped as soon as possible ! Are these three the right expresstions ? I can talk to meny people . So , I can / get to learn some English from ther . I watiched a debate between Toshinao Sasaki and Son Masayoshi on Ustream . Sasaki guesses reform would need an application layer before rebuilding an infrastracture layer . Math quesiotn Let me talk again about my rubbiish story . I feel more confortable in them than shoes . `` Please tell me the differences bitween these two sentences , I recieved a picture card from a male friend of mine . He is an archtecture , designer , gardener , and a ceramist . He has a broad maind and he is an independent person . He grows rice and vegitables for his own needs . I want him to get marrid and have a family . Becides , I have to admit that I am a playful boy . However , I think that I will have fun with lang - 8 as I am interactin with people on the world on the web ! ! on the other hand , I do n't belive that I am loved And let me know if you have any reccomendation for places / food etc in Ho Chi Minh city . such as Manga , Music , Snowbord , food etc . Resipe for `` Okonomiyaki `` is very easy . But this food is very derisious . `` Okonomiyaki `` is a local dish in Osaka . So I took an aspirine and it went away . Without a doult , Obama got what he wanted . Will Martin say his dream come ture when he hears of this news up in heaven ? not attack China as much as before , this has made Chinese peolpe observative the two candidates in a more objective way . I do n't use the air conditioner and every nigthts feels so hot . My favorite season is Autum . So I did n't go to my English school and canclled my trip to Nagoya . . . . Fortunately , the job is finished at the end of this month ~ Then I am going to travel to hokaido . I have stayed in another Joy for a really short time [ ? ] , and I left there because of an event that I could not edure . I am so appy to join this site . Thanks in advance to all of you who help me . Today I was drawting a lot of pictures . becouse I had an appointment with my friend . In my living memory , I 've nver seen someone who can survive without the help of nutrients that are mainly provided by food . It 's no woder someone in Japan brings up this subject although we do n't need to be worried about our food for the time being unless something irksome affects the food markets . Therefore my brother temporarily adopted the stray , who is more loving and well - behavior than my own puppy . Today was an ordinaly day . I woke up and went to university , a part time job at Starbacks and then home . I think Oden is a uniqe Japnese food . It is an easy to cook and econmical meal . I have no idea about grammer . . . and vocab . . . But , my English is my biggest plobrem . . . We ate okinawa cuisine together . I go to work almost every day so it seems a little bit hard but it is fun to work with my coworkers , and I have to earn money for my working holliday , so this noodle shop is the best place I 've worked so far . I arrived at my first distination , Montreal , two days ago . And due to the distance from Toronto , the time zone between two was plas one hour on Toronto time zone . I missread it as she was good be born as good cooking person . Thinking in foreign launguage . In adittion , when I encounter daily things , I have started to describe daily events . But Japnese 's advantages , as it may seem , is a paradox . If I have my owon house , I would like to try `` DIY `` : ) . Maybe I was gradually becoming Chinized ? Greeting with strainger is a wonderful habit . Today is the Larntern Festival which I love very much . The story comes from a manga in a magazin for adults . Watashi wa Torukojin dese . It is one of the most popular atraction , but I was able to ride it soon , I only watied 5 min . I managed to ride 12 atraction and Sprash Mountain was the best of all of them . I wanted to ride Space Mountain but it was closed because of mentenance . The electorical palade was sooooo beautiful ! ! ! When I got home , I still felt as if I were riding roller coster . I will talk about the advanteges and desadvanteges of a computer because I want talk about the advanteges . About the desadvanteges : At first , I thougt I just had a hangover . I shoud stop working and go home right now . . . . And I 'm sure that I sounded funny and akward because I just created most of the expressions right off the top of my head . although the first price is chanegs , my expectation is n't changed . I 'm wating for May for my travels to begin . In the beginnig of our relationship , he made me dinner that consisted of fried meat and instant mashed potatoes . Honeycomd & hive Here in my citi there are a lot of buildings , and there are also a lot of museums and parks . Our problem is that in other years you could walk across the streets free , without problems . Now , at this time , it is imposible because of security problems . Bracelona . Faced agaist Real Madrit . I went back tomy seat and drank the caffee . My parttime - time job is from 3 times to 1 time per week . congraturations ! and today is our domitory festival ! I 'm a domitory student council member . As a result , I regist an account immediately and began to look for some friends whose goals or hobbies are similar to mine . Theer is an exam about house building in Octorber . So far I do n't miss Japanese food very much because there is a large Chinese supermarket in the neighborhood . I can get vegitables , fish , tofu , soy sauce and many things to cook for myself . I really regret not going to my colleage reunion ! I missed my colleage reunion . Which is more popular in your contry ? Today I changed my celler phone to a BlackBerry . Of course , including `` Lang - 8 `` to improve my English skil . However it is a dilenma . but the recrute is going to come soon . I like to focas on my feelings . A podcast is a free intenet service that supplies you with numerous topics in various languages . People that host podcasts for begginers speak about / on topics at a slower pace . If you do n't use podcasts , then I strongly reccomend that you use them . Even so , I believe that Podcasts are still a verry effective way to learn a forein langueage . Recentry , I 've been going to an English Conversation school on the weekdays . she spoked to me in a clear voice , and she knows a little Japanese because she lives in Tokyo . Rather than that , it seemed to be from norvice to an intermediate level . My name is Akito . I am18 years old and am a University student . I live in Shizuoka in Japan . Mt , Fuji is in Shizuoka . Why then , do you know Okinawa in Japan ? I l ived in Okinawa before I moved to Shizuoka . I love Okinawa . There are many great things such as the clear blue sea , very delicious fruits , and native animals . By the way , I want to study abroard after two years for learn Engish and a different culture . But , I am troubled about where I should go . My senior advised me to go to America or Australia . In his opinion , in America , American English is spoken and in Australia , Blitish English is spoken . So I should select them . Where do you think I should go ? I have little time to sutady becouce work began . I 'd like to introduce my houmetown . It is the tallest mountain in Kyusyu . It takes 1 hour and 10 minutes to get there from Yakushima ariport . I 'm studing art at Zhongyang Meishu Xueyuan ( CAFA ) . Outside of art , I like shopping , _ play the trumpet , guiar , piano , _ studying languages , _ taking pictures , cooking , watching movies , etc . Encantado conocerle . Today is Satur . I got up early in the moring and did some exercises with my mom in the park . Since last year , I have been studying ecinimics for a civil survice examination . ( Sounds better . ) I thught that might be why I ca n't be good at it . Today , An unpleasant thing happened , , One of othodontic appliances came off . I have to go and see the Othodontist tomorrow . brillint . Recentry I can talk with them more smoothly than before , so I had thought my speaking skill is growing ! ! ! But in fact , thier listening skill is growing : D I atteded the wedding party . I wear contact lenses instead ) , unmblellas , scarfs , jewelry and so on . Even at home , many things disappear , so I 'm always fooking for something . Yesterday I watched the moive Blood Diamond on the internet . The story is about a diamond smuggler ( Leonardo DiCaprio played this role ) who meets a fisherman by accitent . Chiristmas Party Howevey , I also know technologies have been changing very fast and the cost of the products are decreasing quickly so I decided to buy middle range products . I am satified . Howvere , there are a lot of blog sites , which is the best ? At that time , there was a docter on the train and he was OK . Anyway I think that they should n't learn bad Italian words expecially because what it is said could be very hurtful in your mother tongue . Since I finished my Chinse writing assignment at school It is very srilling and fun ! He looked fatter and he said `` singapole food is very nice ! `` Certainly , singapore food is so good ! Ofcourse we took a picture together and after that we had a dinner in a thai restaurant which alongs the singapore river . Maybe I should go to bed earier . Have you decided what presents to give your friends and familiy ? The website said they sent exams result out last Wenedsday . Today , two people did n't attend lab becouse they had a cold . Now , people are catching colds easily becouse the season is changing from sammer to fall in Japan . You shuld take care of yourself too . English is vey difficult Another song `` Kidz `` sung by Take That has ( their ) MV on the Youtube . According to the theories of the great psychologists , I analysised myself , encouraged myself , and enlightened myself . Actually it tastes good but sushi as raw fhish on the rice is definitely better ~ : ) I watch Koby Brient the most . We ate many humbergers because we were very hungry . ( But this was a big misstake . ) But the problem is my cousin seems like a mysophobia . I baked chocholate pie and apple pie in the afternoon . I 'm preparing for a college entrance examination because next year I wil attend a college for further study . So my resolution is to continue buying lotteries in order to pay for the expences . But I try my best to heip those who are learning Chinese . So that 's the first dariy that I publishse here . Moreover , doing churus in class brings them together . Each one feels he or she is a member of the class and through singing they bond with thier classmates . Apart from preparing for studying examinationand learning capacity examoination . Morover , it will be more fun than studying by myself . Second , I often help my friend who studies better than I do with my favorite subjects , except ( ? ) for English such as writting , reading , etc . When I was a high school student , I had a rival to increse my studying skills . Finally , studying with classmates will give me great oppotunities to make a lot of friends who like to study with others . I could get used to wirkung with many companies who can give me some kind of advice to run the company . For these reasons , I prefer studying with friends rather than shuding alone . Hellow , I want to practice my writing skill , so I enterd this SNS . What are your favorite chatting toos ? QQ or MSN ? We got gethering to celebrate the day . I just smiled and said `` Mom I 'll get merried this year ! `` I might have dreamed , but I counld n't remeber . But it gave me a headache . I have n't finished writting new year 's cards yet . I may need to have a narve extracted if I feel any pain today . I want to spek English . I put it into my computer , then my Media Player showed `` under constraction `` as the tytle of the CD . I would like to leaen real English . The lesson of this story is that if you invest in artst 's works , you should resarch the age and health condition of the artsist . I wanna know many countries and talk to diferent people , know different diferentcultures not from tv , but in real life . in the picture above is the city that I live in , the upperview is so beautifull ! And now I 'm oficially on vacation , so I 've decided come back home for one month , with my mom and younger bro . Then I will exert myslef to study . This is a very encouraging animation , so I recomend you guys watch it ! There is very very small pond in my greden . I ( previously ) mentioned that I wanted to watch Incepition . It was a very compricated story , but because my Engilsh teacher had told me the basic story , I could almost ( / just about ) follow the story . I 'm pround that Japanese actor Ken Watanabe plays an important role . I felt that a typhoon carried someting adventurous . I think it is diffecult . And It is esay to find people who are you looking for . But it was blamed by many mixi users and it was callpse just one day . I guess I want to cominucate with friends who study language . ( In Lapan , it has become popular for people , especailly business workers , to get together and study in the morning . I surelly depend on my iPhone ! ! ! ! ! ! ! ! ! ! ! ! ! ! It is reaaly nice day for me , because this morning I found some money in foront of my house . The motorcycle came to my home , I do n't havea a license for motorcycles over 400cc yet . I like something simple , so my fovorite coffee is an americano . The owner of the cafe is very kind , the price is not expencive . It is mysterous . . . . . I have difficulty explaing the rules in English , so you may not understand . Today , it was extremelly cold ! ! Students at many unicersities in Japan are requered to study a foreign language , usually English . I succeeded in comunicate with them because English was spoken . Today I had a graduation exam and missed many guestions . I always have trouble keeping up with the rythm , The story is about a woman who travels to Itary , India , and Bali ( in Indonesia ) . So I 'm a bit nervous but I am looking forward to studing English here ! I thik language is very important , because who study various languages has more opportunuty . I have two favorite books . I am sorry about that . ) , Chamber of Secrets , Prisoner of Azkaban , Golbet of Fire , Order of the Phoenix , Half - blood Prince , and Deathly Hallows . Dumbledore is the principal of the magic - school , named Horgwart . I envy the author 's emagination . And he wrote a very awful letter like ' I wo n't thaks you for the present . I 'm looking forfard to it . As an English teacher I should encourage students to write more so that they can review and grasp the knowledge well , such as words , prases and sentence structure . Of course , teachers themselves must have a good understanding of grammar and expressions so that they can give stidents right and instant correction . When a thphoon comes , elementary schools are closed . HALLO ! ! In this way , autonomous enrollment is a good additional procedure for Colleage Entrance Examination . For another , Colleage Entrance Examination is a only way for students to enter Colleage before emergence of Automonous enrollment . Therefore , Automous enrollment is benefical for students to do their best . Taking into account of all these factors , we can draw the conclusion that Autonomous enrollment is necessay not only for universities , but students as well . I have a good Korean frinend . He in on doctrial course . I went to a korian restaurant . Additionaly , I learned about many delicious foreign dishes when I came here because there are many foreign restaurants here . My favorit foods are Thai food , korian food , and hamburgers . korian food is a little bit similer to Japanese food , so I like it . I love green cury because it tastes spicy and sweet . I think American food is more yammy than japanease food . Because of this , my weight increases litle by little , but I enjoyed today 's lunch . These rights guarantee equority without distinction of any kind , such as race , colour , sex , Because of it imported goos become cheaper . At the same time , I have started to learn Jepenese so that I can watch Jepenese T . V . programs . I 'm a Korean colleage student . But it will cost about 50 trillion yen to realize this plan , so it is supposed that the consumption tax will be raised by 4 % , health insurance premiums will be raised by 2 % and premiums for nusing - care insurance for over 65 will be doubled . It 's made from roast cereals and does n't contain any coffeine . My favorite music ! Part 2 my frist entry here nighttime , I either went to the library or had a wolk with friends on the athlete groud for more than two hours to practice our cantonese going to skate togher . Houever , the service industry is really intresting . The dishes were very delisious , but I got the same dishes also 1 month before . There was a dramatical change in the youngest group , but the two other groups showed gradual increases as well . He was very the one who had been teaching me and keeping me safe before the accident happended . How can I meke her like memorizing words ? This picture is our national flage . It is a peareful country . We Welcom you ! We orderd chicken dishes . I have to buy a chcket , pay travel expenses , and book a hotel . I 'll spend much maney this summer . When you draw natural things like trees , stones or clouds it does n't metter how the line goes . I bought theipod touch with 64GBs , because I want to download a lot of autio books for now . Still there seems to be a pile of arduous taesks in front of us . My phone rang [ past simple ] at 0 o ' clock hmhm a new messager is the first in my day . We could enojoy karaoke more than ever . cooking is splended . As commander in chief , the game user has to manage money , resources , supplyment , equipment , military forces in order to command an space army and defeat the enemy . So I want to see a lot of things , and talk to some peaple . Tis trip will be a great pleasure for me . Ramadhan is coming , so I will have a lot of time to stay at home and do nothing . Today , I will try to think about the ways of studing . So some people say a way of studing is good , but other people say this method is bad . I have read dozens of books about ways of studing . Because this journal is really long , I will write a concrete way of studing tomorrow . She is studing and works now too and she is paid about 500 $ a month . Yesterday , I recieved my TOEIC results . Hello , I am tdesesk . I am from Spain and I am learnig English to speak with my friends and to understand people when I go to other countries . becourse he always talk big and he is mean . 2 yorks in my bowl , every morning . It is an international and professional organization . The members can improve their speaking skills by givig speeches . I hope someday I will be able to talk fluently in front of the public without tention : D Other than that , we also need to turn in ( or submit ) a group project assignment of 15 pages and have one group presentation and one individual oral prezentation . Yesterday , I signed up for the correspondence cource . The contents of the cource consists of hearing English for 1000 hours in a year . According to the explanation of the cource , it is generally said that about 1000 hours are required to get used to hear foreign language accurately . The cource costed about Fifty thousand yen . It was not low but I could pay for it by the welfare progrum which my company are offered to me ! The cource will begin in next month . I feel neverous right now . But I hve no idea how to stand out during the interview . I 'm so nurves . . . . So praise God I can take the class , and hopefully everything will be ok until the end of the semester . Well , even though it is September , it 's scorchingly hot today . They are so strenge ! If I will go to oversea , I would like to see munument ! I think there are so many monuments that are fashonable , and strenge in other countries : ) Today I discovered an amasing work of art and a good atist . I think that his artwork is miraculous and beautyful . When I went out for work , the temparature was onry - 10 degrees . I usuealy work until 5 : 00 PM from 8 : 00 AM . I understand now why I could n't write anything ; it was because my motivation came from showing off / looking good to other people , not from a desire to express my criativety . ESL Podcasts are for English beginners and it 's easy to listen to thier pronunciation . I went to my University thise morning . To be a telemaketer for the day . Thise topic was `` No smoking at work `` . Reapting the same questions again and again was vapiditive . First I want to learn English , so if you want to help me I will be very gratefull . : ) The first people who take paid leave ( days off ? ) in 1936 go camping and danse the tango under the windows of a britain manor . Another reallity makes trouble in the manor : the influx of foreigners coming from Germany to escape the Nazis . This happiness dissapear because of the agitated defenders of Occident . Studiing English and massage She has a nice bodyline and beautiful legs . We 're trumbling together , to get more clear that what is tender Although it might be tiny numbers compared to the US market , we 've begun to ren or purchase movies via the internet . Today is a very comforortable / pleasant / nice day , hello , I 'm interessing in learning english but it 's very difficult for me . . . I 'm learning English and Japanise . I want to speak English and Japanise better > - < I think I should study more ! My lunch today is fride rice and fruit . The leaves change thair color to red in November . I have many doreams . I think all are future tence . . . . . I woke up in a very good mood , but the sand in the wind was very strang . A strang wind blew the sand in the air , although it was not much sand so I could still see the sun . But the sky changed to gray . That was the first time I have seen sand in the air . Dehehe . He is an English teacher at the stitute where I 'm teaching . The answer is a Japanese celemony . Japanese children are wearing western cthothes usually . but now the 753 celemony is more simple . I 'm affraid Japanese traditional celemony are smaller than old times . since I opend this web page last time lol I do n't know what bad tranlations are . v valantine 's Day . Of couruse , I 'm included . It made my taste change spaicy ! Ater that we enjoied shopping and became tired , so we went a cafe . After hiking , we went to a Japanese Sushi restaurant in Okland . On July 24th , an earthquake with a sesmic intensity of upper 6 occurred in Iwate prefecture . Fortunally , buiding damages were small . I desided to translate a short story ( well , actually it 's not that short ! ) by Somerset Maugham `` The force of circumstance `` . But for my dismay right now I can remeber only one of them . Reading these books helps me learing English , but it is bad for the store if I never buy them . Electorical supply store I was happy just looking and imagining what life would be like with thme . The surgery was about 20 minuetes or so . Theere were 6 or 7 pieces . He cleaned and stellerized it . I 'm OK now , but every time I eat something , food gets stuck in there and I feel very umcomfortable . The reason is , fiest of all , that he has a lot of knowledge about architecture that he is always willing to pass on to his students . However , in fact , I do n't know , and I 'm afriad about the exam next year . About The Canadian International Doragon Boat Fastival . Dragon boating appeared in Vancouver as a demonstraition sport at - Expo 86 . The peolpe raced out in their fish boats and used their oars to keep the fish and water dragons away from his body . But it so exciting to know something about a foreign education sistem . I felt English was really interestig ! ! So , I wanted to become a costomer service agent at the airport . I am learnig English and Chinese now . It is funny for me to waching sters while thinking about myths . When I try to charge on a customer 's credit card , I call a company called ' Authorization Centre ' in Japanese in order to get the transuction number from the company . I 'm studying Japanese teaching and I want to live in a forign country . Reacentry I studied English hard to improve my TOEIC score . These sucide bombings have taken place universaly so the United Nations officals felt obliged to investigate . The situations told by witnesses who claimed to have seen the incident were extraordinarily similar . Though I 'm not a follower of the press celebrity , when daily we are harassed by bad news , a wedding does stand out from the rather mortiferous current events which surround us . What makes them so fanatic ? As I grew up , I became a little bit buddhistic - minded , but I have not practiced any of the disciplines . HE IS ONE OF MY FAVORITE SINGERS I TO LISTEN EVEN THOUGH IT HAS BEEN JUST 1 WEEK SINCE I FOUND HIM ON YUTUBE . SINCE I ' M NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNOR THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` INSTED OF JUSTIN BEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID `` NO WAY ! ! ! ! `` . I find it is very diffecult thing to do . In fact , I have a new dog two weeek ago ! Inspite his tiredness , it took a long time for Shu to fall asleep , which made me exhausted . It is my wish that chidren become fond of mathematics in the future . But , I 'm a littele worried if I 'll be able to when I 'm hungover . They were so delisious . Havee a good night ! Thank you . When I rode home , the breeze smelled so sweety and anmiable that I felt just like a bird , soaring freely in the sky . This election was my first big elesction . I think it 's a very big event and it is just a nomal thing too . And I saw a TV dorama on PC . We drank shampaign and beer . We requested songs and drank some shampaign . Sentence structure and grammer are very important when we write . I hope this article is almostly correct . I bought Draino yesterday . Why are you waiting untill it fails ? `` A few days ago , I was really confident and believed I could do everthing . I could even act like a well - known actress . I want my mom or my close friend to hug me whether I do well or not . I have just started to write a dialy on Lang - 8 today . But I do n't have self - confidense with letters . A good frend . I have a good frend , an e - pal , but I treat her as my frend . She is an interesting person , I wonder whether the word `` interesting `` is right or not to descibe people , lol . Although I am older than herI think we will be really goos frends , I thought tomorrow is Sutarday , so I do n't have to work , but my customer said `` Let 's have a meeting tomorrow . `` . I shold have watched them before going there . If you have kids , you can bring them there to jion the story - telling event . When I chatted with my American friend about a Japanese hologram idol , Hatsune Miku , over Skype yesterday , he sent me two very funny video clips from YouTobe . I am Ukrainan , but I live in Russia . Ergo Proxy , Texhnolyze , Ghost in The Shell ( I like movies more ) , Whitch Hunter Robin It is an illastraion of girls dancing a fula . A for a long time that it was not correct , because a cunjunction must be used in the middle of the sentense . but I do n't konw what to write . This movie did n't meet / satisfy my expectance , but it 's still a good movie . We may be as happy as can be to read the books which our favorite writers wrote or are about what we are interested in during the long nights in this most comfotable season . There was an old man & nbsp ; wating there , too . It is the UEFA chmpion 's leagu . So I am writing a dialy and killing time . I hope the drinking party will be over in a few minuetes . I have been learnning English for five years and I have no one to communicatae with in English . I want to go to Canada to study Engrish . I was at sea this summer the ferst time . Today , I thaught of a difficult grammatical concept . Today , the water suppliment our neighbourhood was I want to try a lot of thinds actively in this year . We cosplayed as KOF , a popular Japanese fihgting computer game , and placed third in the Beijing area . If I wanna make a foreign firend I must command this language . Today when I woke up and brushed my hair , I found a part of my hair was ttangled badly . Fianlly , I used the brush to comb my hair again and this time I was able to brush it through . I am proud of the workers who are warking at to solve the nuclear power plant disaster . In fulushima , although they are working hard , there is still no electricity . both residents and Japanese natinal . The rocks wiould be slippery and waves would be high , so we decided to cancel it . My English graeds are still very bad . I 'm Japanese and university student in Kyoto which is the most histrical city in Japan . I 'm majoring in cultural anthoropology . Simply put , it 's comparing a culture with other cultures in a histrically context . For example , if I study about a festive , I have to inspect the place , the histry , and refer to certian books . Humnn , it 's difficult to explain exactly . Anybody could passiblly be `` otaku `` . This theme is very challenging for me because the invstigation of the matter is still under way . When I was a junor high school student , The Beatles ' best album `` One `` went on sale / was released . It brodcasted The Beatles ' promotion videos , `` Yesterday `` , `` Let it be `` and so on . To be honest , it was not grat of a festival , but if it had n't been rainy , I would have enjoyed very much . I uplaoded a new picture as my avatar . her classe 's new teacher came . She said that she was planning to visit eight studednts . She staied at my home for only fifteen minutes . The resolt was that there were two wins and two losses , so it was draw . Their performance , music , jokes and color atmosphere were wonderful ! : ) ' You 'll get fat ! ' , they said and laught at me . If I had to pickjust one , I would choose honor the most important characteristicI want in a friend . Do you agree or diagree with the following statement ? As a result , I can learn English leanguage from native speakers with the use of a new internet service technology . Yestaday an accident happend in my train . In summer time , sex crimes on trains happend sometimes . But if his company knew about it , He would be fred . I am going to an outlet shop in Gotenba , Sizuoka prefucture , today . I lived there untill graduating from high school , after I left Hokkaido afterward . I felt very thanksful to my professor . So , I stadied Chanese . Chanese is very difficult . going fisshing , taking a bath at the onsen , and swimming at the sea . I will callenge this new job ! ! Today I ate `` Abekawa mochi `` with my American friend at a garden of Shinto Shirline . We are saved by your warm hert . Plesase call me okinawa . I have graduated from Shenyang Airspace University in july , I mayored in Japanese . Can someone to search this book 's Engish version ? So my stady has been very very poor . spicy foods & cat 's toungue `` I watched TV and learned that it 's because the tangue 's movement People who have cat 's toungue can not avoid the part of the tangue which can sense the heat the best when we eat something hot . They end up touch something hot by that part of the tangue which senses the heat the best . The problem is the way the tangue moves . `` My favarite recipe I have some favarite recipes . Of them , my most favarite recipe is acooked dish with beef and vegitable . The trick of tasty food is entering spices which are Soy - sorce , Japanese - Sake and a Sapanese spice called `` Mirin `` . I have been going to driving shool since Feburary . It is Valentain 's Day ! bacause it 's my mother in laws birthday . I hope my whises are granted . I like to watch TV . I like watching `` Spongebob squarpants `` but I do n't like Spongebob , I like Patrick . He 's so cute . Rainny day . I 'm very happy becuase I wanted to learn English in more proper way . It was ranning heavily today . many things about my life on ranny days . That factori makes toilet paper from using recycled paper . I think taht much water is needed to make the paper and recycling is very important for a susutainable society . Of Ofcouse they asked us questions like what is life , what is die and what is a family . Becaue the temperature of 37 . 2 degree C in Taipei , was too hot to me . In Nepal , many poeple consider it bad luck . I learn lingustics at a university . The languages I learn are English , Chinse and Korean . It 's hard to pronunce . . . There are many girls in my course , but please do n't get jelous of me . About Archtecture I answered : There are some issus remain to be solved . It was with hoipped [ ? ] cream and chocolate sauce . ( I watched `` My Cusin Vinny `` last night . Barger King but a few years ago there was no store in Japane , I understnd about a harf of this radio program , It 's very good program for biginner in English . This first restaurant is a traditional Korean restaurant that serves a style of Royal court food ( that is ) inherited from 500 years a ago , with the main ingredients being fresh seadfood and seasonal food . Since 1988 , this Chinese restaurant has run for 20 years because of it 's clean sanitation , fresh igredient , and , by extension , delicious dishes . Moa is the best restaurant for your health and extending your life with our refined and various Jeonbok disheds that are good for your body . I went to Okinawa on my spling holiday with my friends . I went to duty - free - shop , did scube diving , ate `` So - ki soba `` etc . . . . . We also went to `` Nago pinaple park `` . There are many pinaple foods . I especially liked pinaple pie . During the trip , it was rainy or crowdy . yet I can not speeak English very well . antway . . . Dear Japanese , you guys do n't have the right to critisize the riots in London . I can imagine that some of them think , `` See ? Japan is a safe country . Fierce riots only happen in foreign coutries I am proud of Japan . `` Therefore , Japanese people do n't have the right to critisize the riots in London . His name is Igor Vladimirovich , and he professionaly plays volleyball . I think that the pronuncation is pretty and fun . Today , I began studing hard because I want to get a better score before I take a TOEIC test . If you have some advice for studing English , please teach me how to study ! ! I did n't know there was such a famous festival untlil which means it was really fun hunging around ! ! in winter of 2009 , The movie ' AVATER ' was released in japan . Acturlly I did n't try my best to find a new job . Beacuse I spend my time thinking what my favrite job is . thease days I am thinking of becoming an actress to earn some money and also to kill time . I will write about my business ( I am salesman ) and my hobbies ( reading Japanese manga , playng poker - Texas Hold 'em - , playing video games , and cooking ) on this diary . We had pretty hot weather last week but the tempreature dropped down about 10 degrees since last Sunday and now rain start amd stop and start and stop . because I work at a very famouse hotel . The other students said `` Teacher , he does n't want to learn , our main teacher said that you can let him out `` , but I said `` If I do that , he will be poor in his studies becase he will miss the course and ca n't catch up with us ! `` Today ( 15 / 12 / 2009 ) at Macquarie in Sydney , I 'm studying in the computer room , it 's so goog that I 'm not late . So last night Im went to bed before midnight but I do n't like waking up early in the morning . I hope that he is happy with his music and also with his doughter and wife . Me llamo Tammy , escantado . Such a thing has happend a few times this summer . I want to become a fluentry English speaker . Study animetion abroad . He is studying Japanese animetion at school . I do n't know what kind of animetion he was studying ? But we had a nice conversation togher . He looked fuuny and friendly . Nace to meet you ! Nace to meet you , Lang - 8 members ! I 'm waiting for your coment ! Today is a holyday called GW _ ( Golden Week ) in Japan . Therefore I 've been searching a package trour to Hawaii . Companies care for their emploees ' health . Today is my students ' entranse exam . a large part of students and their parants choose the public ones . When we had tried to go there last autum , an autum outing ( holiday ) season . in the moutain . l 'm amazing beacause I knew this site . I put my daughter in a summer workshop that 's called `` The Stage Coash `` which is a school teaching children how to act , sing , and dance . My husband went to the work this morning , but he came back to Wimbledon from fis office in the city to watch her first performance . Anyways , the thema of the show was `` The Wizard of Oz `` and our daughter was one of the villagers in the Munchikin Land . Of cource everyone wants to be Dorothy or a princess ! The 22GH incorporates - HDMI , DVI and DSub interfaces . The reason why I have selected this monitor is that it will produce a quality picture due to it 's 97 % ColorSphere . Driving in American is easy , althought the city roads are very wide . As there are severl blind points ( or spots ) , you ca n't see in your side mirror and rear - view mirror . I am so gald to find a place to learn more and improve . I think it 's very deliciace ! ! History , Maskd Rider I am unskilled at drawing , but I like to drow . I have a questin . The frist picture is the river where I went to the temple to pray the monk to ask a blessing . . we saw a lof of people there and I used the Chinish language a bit with the netive people . I would like to show you some video but youtub do n't want me to make video ^ ^ . . . thank you for looking my picture and coming to my page . The end of Nov is the time for gloomy , windy and depressing weather here in Russia ( I guess there are lucky people enjoying something completely different ) I would like to grasp this opppotunity and share some photos I have taken in Italy . couple of hours getting there : first by car , then by feery . The avarage temp is around + 20C , the sea ( ocean ) is still available for swimming , the food is excelent and people are very friendly . 1289 one thousand two hundred eigty - nine 45989 fourty - five thousand nine hundred eighty - nine 667890 six hundred sixty - seven thousand eight hundred ninty 5098433 five million ninty - eight thousand four hundred thirty - three I thought `` I won `` was correct , because it was for a past ivent , Answers on his cellphine during the exams . I 'm very confising . ( This is confusing ) Beause I felt he was difficult for any one to get close to . He half - opend his eyes and his eyelids were very sharp ! I thougaht that Sendai had a l poor economy this time . There is a nuclear power staition . So I have to do sarch about malta . I 'd like to speak English fluentry . I 'd also like to know how to study Japanease . There are lots of English conversation school in Japan , but few Japanease conversation school in America or other country right ? Whitch is better Iphone or android ( google ) phone . Recentry he comes home very late because of his job . She said `` no `` to marriying with her boyfreind recently because of something that changed her mind . But in the afthernoon , weather became so hot ! She has four big titles : a jude wrestler , the wife of a famous baseball player , a politician and a mother of two children . One of my classmates has been a beautiful policewomon ^ ^ ; wowo , I feel a little pitiful LOL . What a hard work in Tokyu it was , with my hands ! ! Rcentlly , I have started a part time job . I went to the Pride parede . Especially when I wacth the same TV show as before , She said to me `` I put too much Cranberry souce in it . As a Documentation enginner and English translator , I 'm now doing Photoshop - related things now . However ; I really feel sad that I can not even be brave enought to start up a conversation with a native English speaker . I think I 'm ike a worker bee . I also dislike my life because it 's boaring for me . ( Especialy my best friend in London who is busy with her job , study and boyfriend ! ) The picture you see here is one serving for the King of the Chosun dynasity . But imagine all the ingridient that were prepared like that . But you can taste similiar food for a much more reasonable price , with the preparation process reduced . I 'm happpy . I am more intersted in taking a belly dancind class than the other exercise classes . I am going to visit you as soon as posible ( You 're my best penfriend ; D She defeated her opponents maty times . I 'm gon na beat the conpetition . Because I had to prepare for the Intenational Japanese test 1st grade , My Techer told us , `` You guys should memorize the presentation scripts . `` Moreover a classmate always complants about my pronounciation . Yesterday I met my high schoo friend who just came back from Japan ! ! she also brought her freind who is a Japanese called `` Mimi `` . . Korea soccer team beat Japn yesterday . So I anticipte more success this world cup . Each design desicion made to create this site appears strange to me . This is the first time I ues this style tool just to learn time Before I used to think that fall is the wors season , becouse it is always rainy , there is dirt under the feet , and sky sudenly turns into bright and blue . I have registered for this website for a pierod and I added some new friends here . This is a language exchange website , right ? At about half past eight , we had enjoyed so many seesights such as pure water streams , grean trees , colorful flowers , etc . And we had also taken many interesting photos together . For example , a cellphone , degital camera , and car . . . ! ! ! It 's becoming colder these days , I runed everynight last month , hmm , I forgot why I quit , maybe cause of laziness , or I do n't know . ^ _ ^ . Back to the work topic , there are some difficults . First , the junior of my tean does n't work hardly , and is less patient . They 've just graduated and have a lack of work experience . The point that I want to say is also a problem of China , is that the Chinese young people lack a sence of responsibility , are selfish , lazy and empty - headed , I think all the derogatory sense words can be used on them . My English is so poor that I choose to major in mechanical system disign in Hongik university . I have to speak English to sign up for the calss that I want . It 's a perfect fite that focuses more on me . My friend and I finished militery service last May . K ! ! ( republic of korea ) `` . We enjoyed the performence . Although KORN is eaker now than in thier golden day , I was moved by them . I hope I will enjoy snowboading this season ! I do n't have gray hair , but some day I want to color them into brown , because I have never colored my hair . I wachted `` The World Athletics Chimpionships in Berlin `` on TV last night . Someome may think that I 'm stupid . Every athleter was very beautiful no matter where they were from . I just want to know how to discribe different races . Have you ever seen an Olmpic Gold swimming medalists who was fro trivial techniques and have paitence . How about figuer skaters ? Especially women . Asian women rank the toppest positions now . It 's still rare to see African figuer skaters now . Some sports require trainning It means that where your country 's lacate is connected to popular sports and the number of players . Black people can play better when much musles figure skating and sincronazed swimming . ( I said the same thing too ) Did you really wellcome Afro - American female champioms ? Finally I could conclued with a nice comment . ! ! I 'm regrectting to write such a long story ! Now I 'm trying to make warmer my relationship whith grammar . ) ) And we will go to eat pork cutlet `` tonkatu . `` This weekend typhooon approach . It 's too difficukt for me , and I have little time to study ! The final SAT is on December ! vocabrary is difficukt , grammer is difficult , and I still do n't know much about American culture . What shoul I do ? It scares me that I ca n't see my future ! I am new here . Please do n't ignor me because it will make me sad . ( This may sound better ) It comes as no Unsurprisedly that I still have lots of homework and exams this week . I have three lectures at my iniversite . I am not affraid of earthquake , but I got stranded for about an hour Touhoku traffic got wrose and there was lack of gasoline and broken highway and train . Today , I went to a industral festival . Optical fiber TV I 'm studying English voca . I think language begins with voca . Because the perspiratson ran down my face and back . Finally , the dean of the department of dentestry decided to resign . When the French teacher asked us some questions in French , we had a tough time trying to answer because we had forgetten so many things . That is why I have just sent him an e - mail explaining the current situacion at the university . ELLEGRDEN is known as a rock ( punk ) band , and most of theri songs are up - tempo . When I was first selecting a jazz piece , I could n't pass this piece : `` Walts for Debby `` by . Because as always , I have troble with my bf . Actually I 'm kind of tired of studying for a TOEFL . . . my motivation is getting lower I guess . . oh my god . . . that 's not good you kno . . . I really want to know what people think from thier behavior or attitude . It has been abour a month sinse I joined my current department . Korean Kimuchi fried rice . I received Korean Kimuchi from a Korean colleague as a souvenir . Korean Kimuchi has a rich flavor . I would like to take free tiral lesson of another course this Friday . Life : I want to asighn as volunteer for COP10 ! Currentry , I 'm studying English hard . I ca n't speak and write English very well , but I would like to communicate with peaple from other countries . I am happy to meet my roommates , because there was no one excert me yesterday . Local people , who live in the provonce of B . came here with thiir families . I feel strongly about the cooperation of thir families and the passion of their parents for them . So he comne home on Fridays and returns to Gage on Saturdays . By the way Most Japanese ppl have learned English for more than six years . IWe think so too . But Unfortunately , Japanese people do n't have many opprtunity to use English everyday . If people start noticing that learning English is for communication with all over the world , population of ppl who can use English will increace , I think . In particular , in Japan , we are well on tha way to an aging society more and more . The Japan national soccer team won the game agaisnt Australia and have now advanced to hopefully become the Asia Cup champions . The most impressive part of this game was that Zacch , who was the mananger in this team , had a good command of things as well as changing players . The Japan team could use a good leader ! I 'm loooking forward to seeing the next game ! Today is the Japanese holliday `` Children 's day `` . When I worked at the consulting firm , I respected my co - workers , especialy my boss . There are so many punkish guys , foreighners also . Espeially , the band that I was there to see , LOST PROPHETS ! He useally sleeps . I enrolled in an online English school a coupple days ago . Can you believe that the price of one leson fee is 1 $ to 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expenssive . ere is one of my favorate proverbs that I learned from my English teacher . What 's your favorate idiom or proverb ? Please teacch me some , if you know any . Once I studied English grammer books or something else , but I realized that I like reading books more than grammer books . The schedule aprication is really great , and I do n't need to carry big and heavy schedule notebooks . If you have some aprication to recommend , please tell me ! ! Acordingly , my company put up some mottos . A colleague wore a green skirt , and another wore a green ring and neckless . Anyway , I enjoy chosing out clothes . Have you ever sucseeded in losing weight ? ? We ate strawberries and beans that she grew for denner tonight . My englishi skill was build up through Lang - 8 . An Amazing Wesite for Langauge Learners Right now I 've come to be albe to understand recorded voice in English , but it is still hard for me to understand what they are singing in English . My hobby is playing the flute in wind orchstra . Why do I feel very fashinable ? ? I guess I feel like that because of the well organised blaimwashing from Japanese shopping malls . I as a Japanese put more werth in New Year 's Day I guess . l know even if l ca n't speak English , l can tranvel and see the beautiful landscape ; but l want to coummnicate with native speakers and l want to make friends . l have traveled some of europ and aisia . When l came back to traveling , l felt that l owe thanks to my familiy , frends , my job , and much more . Recently l felt that l shuld spend my life challenging things . Sometimes , l thought that l was too old to challenge new things , but l chang my mind . Even though when l challenge anything , l spend more time than any aother people . hi guys . . I 'm laura from italy . . . I need some help for emprove my english and my japanese too . . . I 'm new at this website . . so if some kind person wants to help me . . I will be very glad . . I would like to help you with italian . . : ) thanks and bye : ) The suite brings welcome upgrades [ ? ] and is composed of three traditional aplicatives ( Word , Excel and PowerPoint ) , plus Outlook , which replaces the e - mail client Entourage that had been integrated into the suite since 2001 . I belong to an English club in my universtiy , and I have an activity every weekend in my club . I will go there to guide travelar from abroad . I will talk to them in Englsih . Well , seeing the `` dolls `` in this drama , I remembered the people who were incubated and their enegy ripped off by computers from the movie , The Matrix . The badies are merely containers , and the data in the brain is what is human . Beacuse I did n't have any special feelings about X - mas . I will never saty alone anymore . First of all , we spend too much time and are overly enthusiastic about grammer . . only grammer . Also english teachers use difficult words to explane the english grammer . Many korean students are get good grades on grammer tests , but they ca n't actually speak to people from other countries . My farourite sports are swimming and running . Also , I like English very much . My home is colse to a river , so when I was 8 years old , I learnt to swim . I believe that failure is the mother of success . You tolking to me please . It is important for me to pass my English test so , please enoeryone help me with my English . She said that it was the beginning of the year , so she thought she could get througt the whole year well if she did it . When she was bengee jumping , she felt like committing suicide . As I listened to her , I suddenly wonderd about the feeling of commiting suicide . No one can commit suicied twice . We got a shopping cart before we entered the store and I was pusshing it . There were some people who were also pusshing their carts , but the person in front of me stopped suddenly when she heard the voice . But afte a while , one of the clerks was very kind to take me to the product I was looking for , and a customer who had a big package of potato chips answered me with a big smile when I asked him where the potato chips were . I went there and ate pork vegetable miso Soupe . Finaly , if you want to learn Chinese , I think I can help you . I learned a new word at today 's lessson in starbucs . Tha word is scapegoat . I realsed that I ate dinner for 2 days . Using this dictionary will be a lot of fun , as if I am travering in a foreign country . When we left the market , we bought some cherries and two cakes , beacuse cherries were really delicious and chaper , cake was for my best friend , beacuse they left Christchurch today . After farewell , we went to the Sumner , acturlly this is my seacond time I have been there , but last time my homestay father took me around Christchurch and past Sumner , so I do n't remenber everything . I want to learn Chinese and English in this universiy and speak them fluently . I 'll tell you one of the most scarist story I 've ever heard . I do n't have confidence whether I can tell you guys scarrily , but I 'll try . That man was wearing coat over his shoulders , and seemed hiding his face from around , he walked while leaning on a wall , he came toward to elevator while holiding his hands over his stomack And Chiang Mai is a prime example of thsis strategic model . I hope that is the case becuase I want to hang the picture in my room with me in it . I 'm gon na write a short dialy or what ever I happen to be thinking about twice or more a week in order to be diligent : p ( as long as possible ) Let 's study languages togrther ! ! ! More and more I am interacting with many foreigh people , so I joined Lang - 8 . I have Facebook , my account is takaxile , so plese request me on the web . My first Periond is years lesson . Topic was about past tense , and student chenged ' tanoshii ' to ' tanoshikatta ' or something . Today all the students do n't attend class , so we palyed a kanji game . At first students devided into two teams , and put some Hiragana cards on the floor at regular intervals . My fifth Periond was year11 . They were writing essey about the difference between Australian table manner and Japanese ones . My Last periond was year 9 . Super collabolation I happend to find this song on Youtube . This collabolation is quite good . Recently many singers relase a song feauturing rapper singers . Well , the story is about aliens that ( who ) come to conquer our planet ( the earth ! ) , but their plans always fail . They are so funny . I always laught when I watch the episodes on the computer . There are five main characters in the series . Keroro is very childish and selfish and always tries to make people laugh , but he is a very bad comedian . Then we have Giroro ; he 's always thinking about the invasion because he 's a military man . The third character is Tamama - he 's a toadpole * , so his sex is not defined . He is bipolar and he likes sweets . The fourth member of the platoon is Kururu . He is a mad scientist , and he likes bothering people . He 's a pervert . Finally we have Dororo , an econinja . He came to conquer the planet , but when he saw the beauty of it , he decided to save it . He is always forgotten by the platoon . Poor Dororo ahahah ! ( haha ) I should have gone back to home at midnight , but the airplanet was delayed . Simirarly , natural expressions are natural only because the most native speakers feel so . Learning languages , either foreign or mother , is to acquire not only words and grammers but also different manners to perceve and represent the world . How about your contry ? ? I dry the washing in the sun , then I air out the hutons . Therefore , I dry the washing and huton everyday . It is has been more expensive recently because it is imported merchandise which is affected by an excange rate . It is a hard situation for me to buy an ipotT _ T And I wnat to but a cell phone . But it is too expescive to buy . and I also watchd Eastwick s01 ep01 ~ 04 , it 's a funny and weird TV show And whenever having ( instan noodle soup / it ) , I crack an egg into it . To be honest , I always check the spelling out with a translater : D so it 'll be cool and confortable while I sleep . This was callendars , stamps , coins , but none of this became a seriosly hobby . Now I have only a few callendars and a few stamps from all of that . Nowadays I collect other things , like pens with beautifull pictures . Of courcse I do n't consider this very seriosly either , but if I see a nice pen , I will buy it . My friend led me to this hobby , because she usually gave me beautifull pens . I chose tha class with the smallest number of people to understand English better . And I took the class Amarican literature and so on . I felt something was missing at today 's luch time . There are novels which include mistery , fantasy , historical , adolecence , heartwarming and love , business which are made of philosophy ( ? ) , ways of thinking , finance , how to express yourself , and so on . But the Gelly beans are my favorite Jelly ! ! San frasisco ! I went to San Fransisco from Aug 19th to the 22nd with my girlfriend . I already got home , and I still ca n't believe San Fransisco is in California . As you know , San Fransisco is famous as crabs , shrimps and lobsters . I strongly recommend you go there , if you go to San Fransisco . These reasons are extermly gerenal . What mekes you study Japanese ? It tasted really good , adding condiment paste made from yuzu zest and chile peppers . The guitar is a beatifull instrument , but much more easier than the piano or violin . I ` m like leaning Tourism English because the city I ` m living in has many foreigen tourists , I want to talk with them but my English is very bab . Maybe I can say this in a more buatiful way ? As a volunteer , I went to Hukushima ( near the troubled electric nuclear plant ) I am currently eating Sumtum and writing my journal enty . Sumtum is delicious . So I can corrent Japanese grammer . When offered large plates of food most people would eat all of them regareless of whether they are hungry or not . I llike Harry Potter very much . I also admire Luna Lugwood . well , I can only tell u that I 'm in bed and my rigft hand is very busy . . . . . I did n't like animesToT My favurite game is `` Diablo II : Lord of Dectruction `` ! So we celebrited it yesterday . Recently , I went to the eye doctors and had undergone some chicked up . We are afraid of and struggling against the tremendous earthquake and Tunami . So I wanted the charenge of a different job that time . She offred me the job in a foreign - affiliated company in Akasaka . I 've just renewaled it the day before the phone call . From what they said , it sounded like they were enjoying their unversities . I do n't usually use a casette player . Last mounth , I spent three weeks in the capital of the UK - London . But now only the names of the streets indicate this . They are named after famouse lakes , rivers , harbours , etc . I lived on the street wich was named `` Lagado Mews `` . This month , has run & nbsp ; 10 kirometers . yesterdya I wrote an article about searching for a job luckly , lang - 8 is good to learn English because some people can teach me how to use correct gramma and I can make a friend . I study animation at univercity . But I like desgin now . For example , sandwish , spaghetti , Chinese food , and so on . But I ca n't speak Itarian or English . . . . Quite a few people believe taht the lucky numbers can bring good luck for them . But it does n't mean that lucky numbers can really bring goog luck . Second , the lucky numbers are just a viual for hope . My teacher , who teaches the students technick for it , said that bussiness vocabraly is most important . I think the weather here is really cold . It 's about + 18C , but I heard that the winter in Canada is abute - 30C . Here is the firework show of the new year in Taipei 101 . A lot of people say that it is not as amazing as they expect , and think it is the worest firework show they have ever seen . I was vey tied , but I thought it was worthwhile . My final examination is comoing ! Now I 'm in Beijin , China for a trip . Today I wanna talk about my trip in Beijin . That 's why I 'm in Beijin now . Actually , it 's been 2 days since I arrived at Beijin . I have n't eaten any Chinese food , like Beijin Duck , I 've only eaten some rice porridge and some pickle . . . It 's a phantasy story . In this hopital , nurses have to complete some reports to make it to the next level . This year is my second year here , I have to translate an English paper into Chinese , making it a short summary for all my coworrkers ( about 16 people . ) In the end , the nurse maneger of our ward will decide if I am qualified to go to the N1 level . I was taken to one of Canada day events at a park by my hosfamily the day before yesterday . After thet they can get a toy depending on the number of stamps . dismiss about fifteen thousand emplyees . Sould I work harder ? When will the deprssion end ? The Chinese tradiational holiday , Spring Festival , is coming soon . It is my favorate holiday . I think it is also most Chinese people 's favorate holiday . So I juse wonder if Americans or other English - speaking natives have a good knowleage of English grammar . I read a book or listen to mucic and so on . It is first time my daughter is to join a paino recital . When golden week starts on a Saturday , we can receive 5 consequtive holidays . I 'm jelous because I have to work during this great consecutive holiday . I 'm so tired , becaus today 's tests were very difficult for me . I 'm so happy because there are some people who correct my Emglish . I 'm going to go to the restaurant to eat dinnar with my family . Off cource , I can move today . And a friend said `` you 're such a boring gril . `` corean women have to behave carefully as long as possible . Hello ladies and gentalmen , and all of my friends around the world Where do you tinhk God is ? Of cours it 's never at ' temples ' , ' shrains ' , chaches and moskes . I became refreshed and wlilling to do things actively after singing . I read books and newspares , or study English . we could sort out the probrem of the Iranian election . The probrem are very diffcult because we ca n't understand others and ca n't think about other opnions . The idea of peaple all over the world using my program ! It exites me . In our company , there are wide - open opportunities for profesional growth . We are a company that enjoys an enviable record for stability in the dynamic atmosphere of aerospace technology . hollo world ! ! Now that I 've seen it again , I still think that Jeffrey was one of the most intresting people who ever lived in this world . S - ok just to make it clear I 'm not a fan of him or something ; the fact I 'm finding him interesting ( and this is not from now , but from years ago when I herad about him for the first time ) does n't mean I think that what he did was anywhere near okay or that he is something he is not . So hope you find it at least as intresting as I do . Kitano is famaous for Ijinkan which is where many foreign people used to own residences during the Meiji era . I can pass it ^ ^ later I went to pub where is so fashinable and a little bit expensive - - I had ( pasta / a dish of pasta ) , cheese , sarada , noodles ^ ^ then we went to an internet cafe where you can play table tennis , darts , and karaoke . We just sang 2 hours , and played table tennis . It was a warm day , so we felt comforatable having lunch outside . They are women who work in the comons , in the clerk , in the university convenience store and in the library . The best food I liked was `` Khao man gai `` - steamed rice with chiken and raw cucumber . I thought of the opposite views that once you had done the preparation well , you need not to worry any moe . The IELTS class is more serious than the general English class so during the class eveyone focuses on studying . Especialy my Spanish frined , he is so funny ! ! I thought it would n't happen to me but my spanish frined . . . ! I was supprised to hear that de facto marriages are common in Frence . There are variouse types of cakes there . In the latest journal , I said my father 's private inurance expired . He stil can have an insurance from the government , which will cover the cost to some extent . Roy became nervous and tought that it was too late . He tought that Harold was responsible for this . Unfortunatelly , the weather was bad . . . Yesterday I went to play tennis , but I could n't play because it started rain , then my friend Marsha and I went to a caffe and waited for the rain to stop . I find you and I spend time navigating between the mistery and your taste . I can harldy find out the meaning from each word of it . `` Stop hidding ! `` , I told myself . However , starting now , I 've told myself that I must stop hidding . Just now , I realized that I was hidding in my imagination ( ? ) But I must stop hidding now ! It 's because I entried an online English conversation class named `` rarejob `` After I regaind my self - confidence , I took part in a game against another unversity team . As for me , I 'm on Summer holyday starting today ( for 4days ) . I intend to attendent here every day . Thans ! ! When I j just started going to a university , I found my life comfortable . I saw life with simple eyes . I never thought everyone would be so kind to me and ready to help me anywhen I had trouble , but this was not right . Only when you live far away your family , will you truly understand the feeling of beeing alone . I know I will never be alone because my family will always love and support me . They helped me get through my failures so that I would be sucesses in the future . Now I always make an effort to live well . I hope my folks will always be happy and I want them to know that I love them very much . However , it 's difficult to speack in English when I stay in Korea . I hope to improve my English skills thanks to this site and your help , ( which is very pracious to me ) . I study things taht are connected to English in my university . I 'll go to Osaka by Shinkansen bullut train to attend a meeting with other companies . I lived in Osaka until 2007 for nealy 6 years , so Osaka is like a second hometown . I hav n't been to this site for a long time . So I got an agreement with my friend that we will study hard without thinging about anything else . A person who I met on Lang8 contacted me on Skipe when I had just woken up . But , my friend saied to me `` hourly wages of 800 yen is very low ! `` I was emotionaly , and I quit my part - time employment . At frst , I was worried . Besides , he seems to change the bike into a good desine as well . I wonder if he could transform it complately While the Jews were out of Israel , Arabs called Palestina moved there . The Palestina , of course , opposed this and attacked the new residents , and thus the strife began . I will study hard so that I can go to the university that I wnat to go . In school ther is an English native teacher whoes name is Sony . But resently I learned that 2010 will be the year of the Metal Tiger . Funny that Russian sites say it will be the year of the yellow metal Tiger and English sites write it will be the white metall Tiger . Before the season started , I was looking forwaed to it . Actually , I 'm bad at using electronic things like that , but I can hadle it so far ^ ^ There is no instruction bookwith it . Though it was a hard time , one thing I ca n't forget is that children were so cute and dorable . The minimum temperature here this winter was negative 33 degrees Celcius . Today , I bought The Littele Prince . So scarely You must know it 's lenth is 5000 kilometres . Most of it is unexploied . Young Pioneer means morals for the children . We were prond of it when we were young . We had to fight the tired body , fight with the strong sun , fight with the lack of water , fight with the dangerours of the moutain . Diese Woche habe ich viel ( Unterricht in Deutsch . ) besser : Deutschunterricht Whether we like it or not , inequality is a funddamental concept in a free economy . To make the point clear , we thoght about its opposite . In perfectly equal world , what would happend ? We can not posess anything , be free to choose our clothes , or even what to eat . The only thing we can do is to adapt ourselves to it to live a good quakity of life . However , every gils likes fancy smell such as CHANEL NO . 5 . I perfer flowerscent perfume such as sunflower or rose . I wound my bath towl arround my waist , when I was changing my clothes to go to the pool . Does this actress think she can laugh all the way to the bank by rinding on a millionaire 's cocktail ( coattail ) ? I go to the univercity in Nagoya . I also study Chinese in my univercity I whached `` Lie to me `` on DVD . They will bloom at 8th , th weather news said . I think tha it is difficult to grant a dream . In my oppion , nothing is not perfect . Because we can get delicious food such as matsutake ( a kind of expensive mashroom ) , kaki ( a kind of fruit ) , kuri ( chestnut ) , nashi ( Japanese pear ) , sanma ( pike fish ) and so on , ( Is it starange for foreingers ? ) It 's my favorit : - D This year , I will dress neartly X - ( I need to take the TOEFl test in February to apply for graduate school , and I 'm looking for someone who can chenk my writing . `` I need to read thouse academic readings so fast ! ! `` As a result , even though I sped up , there were about three questions left . The Secound part was listening , which was also tough because some lectures were not subjects that I was familiar with , such as history . Althought a guide might ask us how the museum was and we might be forced to say , that it was wonderful even we actually did n't understand its value . There is even a small museum in my home town . They are exhibiting some bowls and paints that look like grafitti . ( two sentences ) becouse I do n't have money and there is no food shop near the / my office . Bcause of the car which was ahead of my car was moving very slowly , I passed it at high speed . I was cought and lost 3 point ( if you do n't have penalties , you can keep 3 full points ) . After I was cought by the police , I made my way back to the ( driving ) school , but I was not happy . But , the relationships beetween the main characters are so complicated . Piter 's family is brilliantly hilarious , especially Stewie . At firest , I went to Kumamoto and I ate Kumamoto ramen . It was so dericious that I ordered seconds . The different colored tree leaves are very beautiful at the back of the pond in autumu . So I 'm learning English . Its pronunciation is very difficult , but I undertood that there are days when I will want to learn more and more . I called my colleague in to show some sentense . I 'm leaning Italian and inglish . I came in italia to study arts , but I need inglish . Becouse in school , everyone speak in inglish . I ca n't speak inglish at all . Can you imagine who performe without an actual instrument ? Air Guitarists had to perform a 60 - second song of their own chocie and pretend to play rock or heavy metal . Is the day that I can understand English news programs without subtitles truly comming ? This is an artical I heard from my friend Tyler ~ haha hope he does n't mind , I just tried to listen to it very carefully and transcribe it . Music is my favorate thing . I 'm glad to haer his voice . He has two childeren and bought a new house . Then , he said , `` Mandy , in the furture , you should study abroad and know the world . `` I saw some figures like Madonna , Sharon Stone , and Blad pitt and so on . Today , _ some of my classmates said that they think every counry should close every nuclear power station , _ but I do not think so . Although I am in New Zaeland where there are no nuclear power stations , I think nucler power stasion help people a lot , for example , nucler power stations provide people with electricity , and I think that is good . On the other hand , _ when nuclear power stasion fall down , that will make a big problem for the world . Independence Day in Mexico was yesterday , September 16th , and as usual we celebrated this date with the independence shout , eating `` pozole `` , a Mexican food , prepared with corn and chicken , drinking tequila and listening to `` mariachis `` . At least , this is the most tradicional way to celebrate this day . Even though this region is one of the oldest places because it is the origen of civilization ( when Mesoamerica joined with Mesopotamia ) , Mexico is a relatively new country , with just two centuries since having been founded as a nation . Second - hand smoking is really disgustiong for non smokers . But what are other habits or lifistyles that are responsible for health costs ? I had 4 days off last week and I went to Vancouver with one of my frinds . We stayed in the Youth Hostel and visted UBC ( University of British Columbia ) , Nitobe Memorial Japanese Garden , Tower Beach , Kitsilano , Gastown and Lookout . I did n't go to Stanley Park and visit my acqaintance who I met 20 years ago in Vancouver . It has a dignified elegance supported by its pefect shape and white walls . Those Proffesional players had an impact on me ! The logo is of a very strange type and paticular color compared to usual . It has various contents named podcast , such as news , comedies and documentories . I 've studied English ever since I was a junir high school student , but I ca n't write , speak , or listen to English well . In the balcony , people can not ony sit on the floor but can also lie down . I heard that listening to the clasical music while lying down is too good for words . It 's ranning today . I am not very busy at work today , so I have a short bit of time to go to Starbucks for a break , and I found this branch has many foreigners , especially many foreigners who need one - to - one Chinese converstion to learn Chinese converstion . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closetrooms . I think most of the people in Japan will say `` I 'm soory `` when you are asked to do something . Japanese peole and Chinese people do n't have the hugging manner . She is my family and inportant to me . But , everyboby ! Do you remenber one of my post / journal ? It 's okey . I 've been learning Eanglish for 10 years in school , but my language skills are still at a low level . I want to practice Eanglish to use it well . The hardest fot me is the grammar , My wifw cooked lunch . I know that the vocabraly and the letters are obviasly different ! But I want to think about not the visible surface of the langage , but the concepts or something like that . She sent an e - mail to me on Manday morning when she arrived at her flat to get her notebook PC before going to university . I will try to chang my attitude ! ( It 's the first time I went to that restrant ) They are all coming tommorow . I am sure he will be nurvous there for a while . to fashion , centain styles look better on some girls than they do on oters . I like nearly all color clothing except red , but I do n't konw why . I perfer the fashy things . So I like many kinds of jewerly . My faviorite pieces of jewerly are earrings . so I want to go abrord . Someone tell me about a good palce in a foreign country I could n't sleep well last night becaouse I have a cough and He was named a menber as a goal - keeper . He has many experoence . We alighted from the train ( monorail ? ) at the last stop and walked from beach side to fisrt station while talking about a lot of things . Unfortunatery , I was laid off at the end of 2008 . The staff began to explain it to me , and then somehow I turned my head towrd my left side . Today , I ate takoyaki ( octopus dumling ) . My son plays in the Tamagawa rever , small forest and the park . Well I will try to write with capital latters in the beggining of a sentences , because I always forget about them , and the teachers always tell me they do n't understand why I do that . . . Today I cleaned up a little my desk , but it 's all messy again , becouse I started to make a drawing for my grandmother before she returns to her countrie . . . We set up our tent on the coast of a small bay , near a greate cliff named Scriper . It was a very out - of - way plase . ( is it correct ? It is a plase that is very difficult to reach ) . Majestic Baikal was amazing . The water surface was like a mirror , and astunding sielence was breacked by gulls ' cry , trees ' rustling and rote . But we were realy mistaken ! Dropping a tourist group including ten people , and they camped at a distanse of fifthy meters from our tent . They did not look like inadequate , noisy or problem , but I suspected that somethong was wrong when saw among them things several boxes with beer and vodka . We broke our camp , foulded up the tent , packed all things into rucksacks and in spite of the sunset , went away to searh new plases . It was quite dificult and dungerous . PS : You can see foto from summit of Scriper . It was very nice , sweety , juicy and fruity : ) Today , I got last month 's mobile phone buill . ForTo all surfers , surfing is ddengearous . dangerous I decide to pay more atenntion attention to my bord . Whether we can ring up sales or not depends on sales in the Tokyo branch office orgnaized by only 20 people . Now we 're forcusing on direct mail marketing , though that might be junk mail for many people . One was about Budden the other was abour the brain . I need to go out ater to buy a shirt for a wedding party tomorrow . Here in Hawaii , I go to a laungage school on weekdays and I go there by bus . It nomally takes 35 minutes to get there but it sometimes takes 45 minutes . . . I want to improve my English in half a year , but this seems like a difficulf task . So I thoght that this site could help my English , right ? I could answere the questions but listening examination was bad . . . I could n't answere . . I wonder if you could do me a favor . But her speach was so boring that I fell asleep . It said : `` congraturation you have passed the exam . I do n't remember about the details of our conversasion , but I think he said so . I would often wonder what the diffence between the two them is since then . Secondly , I will go to library to review my lessons and do some ILETS tests and I want to go to foundation in April . and my budget is limited , I wil have to also limit my destinations . The crient is very kind and and passionate . I 'd like to return a the fabor to him someday . It is dizzylingly hot . I 'm now studying English and Japanes . Does anyone want to be my freinds ? I like English , writing , speking ! ! If the wind is too strong , I ca n't go suring . I had a very wanderful day . As I would like to be better at English , I started wrinting a diary in English . Now I specialize in comunication studies , and study English and Chinese . It seemed my heart is still living in Shanghai , I must have lost something , something I dare not to face , or I just ca n't face myself , my weekness . I will tell evryone about a creature that makes Japanese people feel it 's summer . Its creature is called cicade . Japanese people feel summer when hearing cicade 's screaming . By the way , Some carcasses of cicade are scattered around the entryway of my apatment house . I thought this cicade was already dead , so I pokesd it with tip of my foot . I want to ask everone . It is very itresting to learn English , and I shink that I can learn to speak it very well ! Of course , I like to travel around Japan too . I went to Hiroshima last month , and I met an Australian frined and got drunk on good sake . In English class , the English teacher taught students the expression , `` Graveyad shift . `` I thought it was an interesting expression , because there is not an expression like that in Japanese . Firstly , there is a growing awareness that using public transportation instead of driving a car leads to the reduction of green house gases because cars produce more green hosue gases than trains or buses . My borther helped me work this morning . I want to learn English wiht the help of lang - 8 . Unfortunatelly , my work does not require English . The other way is to think about where it came from , and try to figur it out . It 's like unbelievable medicine , which absolutelly heals my body and soul . Is it natural to feel like that or am I too shy about speeking a foreing language ? In China , students have endless exams to pass along our lifives , even after ( maybe ) you have entered society . How abou your countries ? my use of English in the publie examination , My life became somber . These thesedays we are unable to see each other . I always feel I 'm still not familiar with calculating the money especially when I shope at a mall here in Durban city because this country has decimal money and most likely because I have not stayed so long to calculate money smoothly and Japanese has a tendency of keeping other people from waiting so long behind a line . It is very fun , and I will have an excit experience . I feel that maiking ceramics is a kind of physical labor . However , You 'll get tired of it if you imagine that you put it into the mouth , chew and then swallow it as many as 30 times repeatedlly . We may be able to use it to dcrease the intake of unhealthy food and drugs . They feel ahamed if they are found wetting their pants . thanks for taching me correct English ! I , am a really short temperd person . and I try to speak in English with my friends and I restarted to communicate in English convesation class in my university . My major is Managenent . if I keep on studying English hard , I belive I can be a person who can speak good English Untill I go there , I will do my best with presentation ! ! I took off my shoes at the porchI and sat at the kind of table which can be seen at many korean restaurent . It tates good . Although I say that I will save money , I 'm actually going to spend a part of the bonus on a handbag , a pair of shoes , accesories and so on . Many trains will be suspended tomorrow , so many people ca n't go to ( get to ) their schools or offices ; of ofcorse I ca n't either . First , great teacers have a passion for their job . I had time to go to see a movie called , ' Pirates of the caribbean 4 ' . It was n't as interesting as I 'd expected , becuase it was n't much different than the first two films ( movies ) . She told me that I have an interview changce to her department as an executive assistant . It 's a big company , but the salary is not heigh . What elso do we need to do ! ? The act prebents my body from getting cold . I want to returen to my normal life soon . Before their concerts , they pronounce the members of the day , and funs can choose the day their own favorite musician plays . I have heard that there are some funs coming to hall not to listening music but to watch their dance . My friend gave me a book titiled `` The Authoritative Calvin and Hobbes `` I was so surprised to hear that when he first attended the law class in graudate school ( He anttended Univ . Also I think those foods must be atracting to people , arging people want those foods . Some of my frined were in a bad mood , so we went to a loungh Today was very intersting and fun ! The shpe of UK I went there to get my bicyle yesterday . When I saw my bicyle , I was astonished because . . . . . . . . Befeore I came here , I thought `` If I live in the U . for a year , I will be really good emglish speaker . `` But I was wrong . I am surprised how difficult it is to learn other langages . So I was really disapointed in myself and kinda bored studying English . But Lang - 8 often encourages me to study it , because I see many other people who study other langages and may have similar feelings . I really like to correct forigne people 's English . I really like the way people act , american greecy foods , stupid cartoons . . . In Japan we have to follow certain social rules like showing politness to people who have seniorityand giving many complements . a lot and This makes it extremely hard to be close with people who I meet for the first time . . . I think I ` m going to study a little bit but not the way the teacher told us because everybody studies in different ways so I ` m going to do waht I feel like doing . I started studying Russian , and I 'm trying to improove my skill . Little typo on improve . My school is very small and almost all of the studenst are Japanese or Korian . I really want to talk with foreiners . I have watched a few . . . stries . . . . I want to make foreiner friends I was thinking of it as a normal self - advistising website that claimed to help people greatly improve their English . Of course , thanks to today 's grobalization , Japanese people have been getting more and more somewhat open - minded to the outside than ever before . Listening is diffirent , because every day you watch BBC , CNN or varieties of English programs on TV , and automatically you will listen to the same word again and again . I quickly took off the headphoe from my ears and tried to listen to her . She said something but I could n't catch her words becaue my heartbeat was louder than her voice or ( perhaps ) because of my poor Japanese listening ability . And , I was a just poolish Ossan who did n't know that I was on the express train and needed to pay or buy not only the normal ticket from Osaka to Kyoto but the express ticket too . And that mainland China stops its boring threat to Taiwn ! ! ! ! Seperated family members gather and celebrate this holiday together , enjoying delicious foods on this day . I dicided to use this site because I wanted to improve my English writing skills . I feel that it will be bustl in our home this summer . First of all , my English teacher recommanded them to improve my English . Most Japanese people do n't know what `` premotion `` means , but we use `` shuffle `` as Japanese word . There are two types of digital Camara . I really had fun and thaught `` I must study English harder `` so I will write a diary from now on . I definitly will NEVER forget this summer memory . I like that I feel the cold in winter at mornig . I strongly reccomend this book . ( this sounds better ) I especially loved that the process throughout which the King 's trauma was gradually healed was very carefully descrived . I usually feel down on sundays at midnight ( it 's arelday Monday . . . ) , but I am still in a good mood . Anyway today my neice ( my old sister 's douaghter ) came to my house and I was asked to keep an eye on her for a couple hours Since she brough the movie Totoro from her house , which is a very popular anime film in Japan , we watched it together . For some reason I want to post a picture of the main caracter on my account . The most sccary roller coaster is the `` White Cyclone `` without a doubt . And English is the most popular langage . are there any gramatical error ? I ran 100 meters in 11 . 2 secounds . Typoon Aere , which was the strongest typoon this year , has passed us by . When will the next typoon appear ? Most of you have not experienced a typoon , right ? So we asked a staff member in the boose . The rainy season has statred . Thanks to the fan , I can be confortable . I grilled an eggplant and meat with katakuriko ( potato storch ) . I added a drop of chinese soy souce to the eggplant . Jesus , please attrac me more and more . My heart is your thorne . She emphasized `` The beauty can be maked , and it 's the easiest way to get love . `` From last sunday , it has kept rainning for a whole week ! Cold , bleak , and bitter are OR would be the best words to discribe the terribel weather . I find what my goal is and what I shuold pursue . I have to study grammer from the beginning . definately the one I would recommend . Anyway , most of the movies on th above list are not that thought provoking You say , `` Japan is the best counry `` ? It was fresh in a sence . The wall was gray , the humidity was excesive . Haaaaaaaa ! ! part - time jod . because our techer absence . resturrant together , we drinking and eating there . So as the punishment , I drank a bottle of Japanese liqure . Guys , who can tell me how to leave a message on other people 's page in Lange - 8 . Next comes three years of middle school which is mendatory . That 's because I 'm foreign to the diffrent school system . I was walking around the `` Wakayama jyo `` for abaout 20 minutes . Because of the butterfly storoke , I 'm losing interest in swimming . I was in a hurry , but I didn n't understand this sentence , `` Do n't post to Twitter . `` In the end , I did n't publish it . I 've been taught English by a philipino . , Accutually , making holes is boring work . But It looks like she is looking foword to her two granddauters growing up . So , I went to see my tutor on Monday to discuss the project ( Design A Train Schedual Based On Baidu API ) . Now I have chosen to continute my Computer studies to become a web designer ( not really sure . . . ) and the day afer tomorrow I will meet with my angent to determine my major . What should I do to in order to be more skillfully in Japan ? In fall , there is a junor college festival . Unfortunately I have a little oppotunity to speak and write English . I am taking care of my causon . and I drank lots of alcohole . but I ca n't stop drinking ( alcohole ) ! XD Next time , I 'll take care when having alcohole . Especialy , Italy . I want to talk about my unusual exprince of a traffic jam . I guess you wo n't often see a main road where there are many empty cars in the peek houers . But that time , all the drivers left their cars and openen their doors , since the main road would be closed for 2 to 4 hours . But today 's wheather is bad . I 'm disapoited , that 's why I did n't go shopping yesterday . in fact , nowadays I 'm studyng english because my major is business administration , so I need to study english and learn how to write and speak in english . She was adorable girl so I thougth , `` I want baby , it is about time to have baby . `` I want to talk with them if I have an opputunity . I felt sicky before long . I want to leave for Toronto sonn , but I have a lot to prepare for a new life over there . Writting Practice 1 Desipe how I know they can benefit me , I do n't have enough time to study details . Besides , I must spend more time improving my poor English . Then are ' Can I go home ? ' or ' Can I try this ? ' , all unnatrual expressions ? Then I rince them with water for a couple of minutes before placing everything , including the bowl , up on the side . Next , I deal with bigger ones like round - bottomed pans and sadad bowls . The tenpareture was less than 0 ! ! Today , I woke up eraly ( in the morning ) and I baked bread . Breakfast was very good , becouse bread was very hot ! ! I greatly apreciate everyone who helped me with correcting my writing . Becouse Argentina 's team is so strong team this year that most soccer fans rate them number one . The lover of the protagonist died because of failure of abortion which was not disired by her . Moreover , the friend of the protagonist felt sad due to lack of understanding by adults and finally he committed suicided . . Alomost of all of them were arranged like alternative rock music . The air was freezingly cold and the sky was cristal clear . But there are very few because almost all internship events have already finished their applicantion . I went to my grandmothers house and saw my ratatives . Beef tongue is especially deliciopus . I noticed the information writted on the board . To complete this course , I have to take some English classes for horing speaking and writing skills . However , the atmosphere is good in this class and the instructer was nice and had a sense of humor . I am looking forward to nexr class and talking with classmates in English . A woman is introdusing extraneous matters into the debates . my hobby is taking piture , they are extremely beatiful ~ Thanks for inviting me as a frined Recently , I have been busy but I want to introuduce something to you ! ! , The Jananese economy is getting worse and worse now . Usually I hate to go to there because I am tone - deafnesss , but my friends really want to go , so we did . I will excersise tommorrow . I will do Yoga and streching . This is my first diarly on this site . ( Maybe , this is not like a diarly . ) I think these are good for improving speeking and hearing skills , I will write this diarly every weekday that I can , so please correct my diarly . That bothers me , because I have plans to travel with my family at the end of yaer . We knew each others ' new parsonalities , thinking and own past stories etc . . I think that if you especialy enjoy your recreational times , you have to do something your job or you have to do reguraly . Becouse if you lazy in your job , do n't you feel lack of pride ? ? My girlfreind and I That is not alloved in our country . Actaully it 's not just raing . . but after a while our mood became natual . We were talking about eatch other and had a lot of things in common . IKENOBO is an old and traditional style / art / tradition of fllower arrenging in Japan . For example , the life of Thomas Edison , Madame Curie , Hideyo Noguchi . . . ( Nogichi is famaous only in Japan ? ) . Therefore , it is hard to imagine how they look to us modern peple . You may lose everyting in the blink of an eye . Today I scruw up the midterms . I want to go to Itary : ) The touch of my hands , and the touch of your hands too , will never be imited . That is the reason behind my interest in exploring the limitis of control , the reason why I am going to move to London at ( or after ) 18 years , that 's why I have sex in my room while my family is sleeping or have my hip bone tattoed with a colourful dragonfly . Kindly , she acceped it & made a dish which inclued Kimch . Soon I asked a person on duty and I found out that this failure would continue until evening due to constraction . Well , I 'm just starting to learn this language . To tell you the truth I 'd like to learn japanese , but I thought it would be better to `` start from the beggining `` . Are there ramen reataurant in your country ? Of course , we need to pay for the basic charge , but it is n't so pricy . So we Japanese have a party called a `` Bounenkkai . `` I plaied a sport . Actually I 've been learning English since I was in first grade at elementry school . I 've been learning it for more than 10 years , but I 'm stiil horrible at speaking it . Thease days , I am waching the Toy Story movie to get English experssions such as , ' is mom losing her marbles ? ' . . . The shop keeper recommnended the point card ( PONTA in Lorson ) . I am interrested in several point cards , so I applied for the point cards that I wanted obtain . It is organized into Reading , Listenning , Speaking , and Writting sections . I wathch the concert in the church . Thier music was truly matching . I watched a movie called `` In her shoes `` last night and rememberd that I wanted to read poems by E . E . Cummings . My plan ( on ) this weenkend . I met them when I worked in the military servie . So I am extremly excited to meet my friend who came from New Zealand . After our meal , we will go to a coffee shop to talke about lots of things . Of course , I also have to meet my girlfriend this weenkend , but it is not because she is going to work tomrrow morning , so we are going to weenkend about this weekend 's events . Have a nice weenkend , everybody . But , we shared a large lobster since we could n't waste the good opprtunity . Since entering hig school , I often get migraines She cleans often and cooks delicion meals , My girlfirend called me this moring before I got up just to tell me it ` s snowing outside . I think that it is more convinience for us to have a car in such a situation . I 'm writing in a dialy for the first time in my life , Yes , I love books , and in particulary old books . This book is about complex analisys of a field of mathematics . It is not very easy to understant , because it left several parts of the demostration to the reader , or it asume that the reader knows things that nowadays are n't taught in school . I 'm going to study abroad in AUS from March to Sebtember . I 'm majoring in International Communication at the university and I study Eniglish and cultures in class . I 'll always challenge myself to speak English and to get accostomed to my new surroundings as soon as possible . If you have an e - mail adress , I 'd be glad to receive your mail . My e - mail adress is - - - - - - - . My hoby is to make sweets . However , Cantonese , which is widely used by ppl in Guangdong Provice , Hong Kong , Macao and nearby regions , is definetely distinct from what is generally refered to as a mother tougue spoken by one or several ethnic groups . Instead , in my view , Cantonese is a competing force against Mandarin , mainly due to its popularity and dominace in the most well - off areas in China . and that would be the reason that the center authority is becoming anxious . Cantonese ppl surely take pride in the special dialect they own , because Cantonese - speaking regions are a statement of wealth , development and fast growth . But in the neighborhood is also the ownner 's other homestay , which is the homestay of other students . I have twe fears . So many people say taht . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese straight away ( that was the main purpouse of my joining to learn a bit of Japanese and to polish my English ) . . . . Yestoday I bought a belt as a first experience . What 's terrable about custom house ? Today , I began keeping a dialy on Lang - 8 . Please contacy me , if you like . My department is the School of International Liveral Studies . Yesterday my stomach hurt very badly . I felt better and worse . It did not take Dad and Mom , only myself . My good friend was not around me , but I was told my friend was aggry from the close encounter . I went to Tokyo in Simokitazawa with my frind . The apprearance of someone like him has been expected for many years , so people tend to have excessive expectations of his policy , action and statements . He may be required to hundling some political situations with severity . . . . Investment trusts ( the indexcial funds ) are worth less day by day , Of course I hope to return to the level befor subprime occurred . I ws exhausted that I just I bought something on the internet . I thike they 're difficult ! When I spoke to my American friend , I am speaking English but Jpanese words are always spinning in my head and they would even slip out of my mouth and cause some embrassenments . . threre 's no time to have breakfast . . I know a lot of words and grammer but it is a little bit different to speak freely . sometimes I ca n't stand my vocice and pronunciation . I felt so exicited that I could n't control my tears . I could do nothing but say thank you , my dear frieds . He has seached , looking not only for Japanese cuisines but also the spirit of Japanese dishes . In this sence , I like it . The Aretist is Maurice Brazil Prendergast . I do n't know if it 's valu * * * * * The other is a wooden escalator near Antwerp Cathedarl . ( I forgot what name it was . ) Today is national fundation day in Japan . So today is a holyday . Recentry , the weather is bad . I do n't have much money , so I ca n't go so far , but at least I 'll be able to visit `` Amano Hashidate `` , which is oen of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I have to reply to my Garmany Professor for correcting my paper . I attached corrected tex file with this e - mail . Dog meat is a part of the traditional Korean food cultrure . Next time when I see an opportunity , I would like to tell them about our recommeded places . I am still waiting for her asnwer . . . It was so confortable ! ! I thought it was a interesting system and I _ Ican use it for free . She is my best friend on my universitydays _ days . Moreover I shoud improve my speech again and again , latery it 's so cold ! And you must set it concrately , which means the plan must include a numerical target . The more concrate it is , the better the result will be . By the way , this morning , I resieve an e - mail from the Education Department in the company where I warking . I 'll do my best to do well in the exam thuogh it 's quite late to start practicing . I 'm a 21 year old Japanse girl . Today I 'll once again write sentenses to help me incorportate new idioms and words into my vocabulary . hatcket > A man cut a smalltree with his ~ . Although , thoughts of a blissing family life might change a person 's perspective . Do you speak forgein lenguages ? Why are you going to univercity ? It is similar to Hungarian in many ways , but nately unfortinately differences are frequent , too . Miyazaki Gorou received bad ratings on his first work , Ged Senki even though it was clearly good . he is an Architect in the next proverbace . I fele angry , and I did n't communicate with him . he is by himself and I hvae a good family . It is neither a typical familiy , nor romantic movie , but it contains elements from both . The dog slowly transforms their views and opinions about the most important things , like taking responsibilities for something , planning babies , helping to find the balance between the carreers , the family and themselves , etc . Butthe most importantly , it is really funny : ) Hallo frends ! ! ! On Saturday I climbed up on the Eureka Skydech . I entred the showroom and took photos , then I climbed up on one of the Ferraris , my dream is realised ! ! On Sunday I went to Philip Island for to see the little pinguins . I saw the little pinguins come in from the sea at night , and I saw the pinguins walking on the beach to ther house . I love the natural sights in Tibet - the animals , people , mountains , lakes and tamples make the perfectly harmonious photograph , that 's where I want to live in the future . This year , after BEC exam , I decided go to Tibet . It 's really a long time to wait for the perfect time point , maybe October , for around 14 days . It will be 55 hours by train . I will see the transition from city to valliage , and eventually to altiplano . My training always starts at 8 a . m . I llive not so far from the place where I train , but nevertheless I was almost late . The first prize was a degital camera ! ! I ate food already even though I did n't feel hangry . It is important to eat food for breakfust . Hao are you ? ! The preocuppations of an ordinary man are to make sure he wakes up in time to arrive at school / job , to earn his living and in his free time , to watch a movie or get out to his friends . Thank you for always teaching me varius things ! Ohh no , I did n't know that they do n't have any homepages aprt from geocities Japan . . . I always remembered that a girl once told me : `` When I saw you at frist , I thought you were a very serious teacher , but when you started teaching us , I saw / found that you are very gentle . `` For example , last month I 'd read `` Alice in the Vonderland `` by Luise Carrol . I thought , `` These words are used in formal writting . `` We waited 90 minutes for Tower of Terror , but we enjoyed the time because we could look at many atractive objects that had the story on the way . Of course , Tower of Terror was so funtastic ! ! I loved the senery too . Tokyo Disney Sea has American , Arabian and Europian streets . I especially liked the Europian street , I felt as if I were in Europe . I spent a lovery day ! I did n't ask further ; therefore , I did n't know excactly what in the picture needed to be modified . When I went to the hospital , a nource said to me : `` Lets check your body temperature `` , and she found that my temperrature was 37 . 8 , so she told me not to take a medical exam today . It was very intresting to learn about the future relationship between Russia and Britain . A set of unimaginable elements occurred around me , destroying many greatful memories , harmonious relationships , as well as laughter , which all attribute to a benefit that is not worth mentioning at all . I feel complicated like a kite having lost her line , like a boat in the darkness having lost his direction , like a lione having lost his temper . . . . . . They have a lot of beautiful parks , fashoinable street and shops and classical buildings which made me happy ! I konw new friends from a clowd called the heart . She lost her hasband three and half years ago . I had gone to her house to see her occationally when I was a high school student . However , I ca n't do it easily now . I do n't mind what cuisineis it is . I was wearing ugg boots and as you know , they easly get soked so I had to walk very carefully till I got to work . After I finished openig the bar , I tried to order some food because I was starving . But sadly , the restaurant could not deliver food because of the frozen road due to the heavy snow . Okey , let 's do something . Recently , I ` m studing at the Goldsmiths university in London . I need to be slim ( especially my weist ) because I have to select clothes that can be wore from my closet every morning . to return to the topic , how are they able to round their hips so fastl like that ? ? In Amereica ? Recently I ca n't play baceball because of my injury . I 'm busy studing , so I ca n't show myself . I heard that Christmas Isrand has nothing at all . I want to go Sentimental Jorney alone in Island . I want to improve my Englishi , so I joined in this activity . There is no spcial topic every time . She really likes talikng , that 's why I always ca n't get a word in edgewise . At first , he pronounced one of four words , `` very `` , `` bery `` , `` velly `` or `` belly `` . They are also cute even thouch they are Mexican men ! Steave Jobs announced this morning that the new iPhone is going to be launched onJune 24th . The cat who lives aroud my house had five new babies . I feel tired at afer work . . . . He plaied a guiter and we made a song . So I will enjoy my wrinting from today . My brogher never gets used to get up so early . I 'm a third year universitiy student and I have to face job hunting from this spring . I have to thank this site and you for helping me to impruve my English skills . Mabye , that 's because my friend came to my home yestrday . We ended up doing an all - nigth . My firiend is very funny . How does she thnk about me ? Questions about a short sentece pt . 4 Fortunatelly , she loves English books and reading them to her will be useful for me too . And when it comes to speaking , French people are also tempted to prononce in the same way that they would do in their native language . My major is Inglish . tenant - recident restore - fix - repaire Every time I speak English I think , `` which words ( phrases ) should I use ? `` I want to understand these alittle differences . Somebody can read my English and correct it ! It 's really amazing . : ) I want to say thank you directly to people who read this diarly if I can . Many apple and grape trees , and rice fields . . . ( a little boaring . . . but I like this town . I studied English at school ( junir high school , high school and University ) , The movie 's tital is `` The World of GOLDEN EGGS `` . Bothe of us were a little uneasy . So it was diffcult and boring . Both were woolen garments . One was a light orange skirt and a jacket ; the other one was a voilet dress . When I saw my mother brushing her shoeson the proch , I felt thankful to God that my mother is alive andin good health . And it 's a new oportunity for me to study my english * - * ( ( I know , my english is n't good ) ) It was very hot and humit . I had beem running . I had beem running for 40min around my house . Hower , I found all the girls who I knew were boring , so finally I decided to ask her . I am SO busy this week that I 'm close to explod ! ! I wnat to know why the vacation ended so quickly . . . . Therefore I went to berbarshop . It was distiny ! ! I was going to a Susi restaurant for lunch with my wife . language exchange Taipie I now live in Taipie I would like to find a langauge exchange to hepl with my English I could n't run in the halway any more ! It 's also painful , especially the toes . I have n't dicide which country yet . And I will make a plan for a trip with my famaily next year . My dream is to travel around the world with my famaily . We were going to play borling , but we could n't because there were lots of people . I sincerely repect computer programers and PC technicians . yesterday , I had a conscription examination , I am very nervous , about whether or not I will successd She was having a small conversation with another passanger next to her . I think the most challange thing in life is negative feelings towards others or things . If a person always thinks positive , he would be happier and healthier . maybe it will not take effect that fast , but in the long run , after anyalise and thinking it over , I may behave more positive next time when a similar challange attacks me again . I rememberd someone once said , do n't spend a second to think of those who make you unhappy . hi , I am newly registrator on Lang 8 . my master 's degree in taching Chinese as an second languae . I need to prepare everything and be careful takling with people but I am a sincear person I do n't want to a liar lol . It seems I should describe about two jobs and also my bisiness ( teaching Thai ) too . Later that day another acquaintance wants to find poeple for his business too . htere , every summer a few old people die of heat stroke . Yestday I had physical examination for this year . Hi eveyone ! In this course , the teacher tought us how to use acrylic paint , but it gets dry very quickly and the final result is not as beautiful as if it would be done with oil paint . ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very beiftly . When I was holding a class in this late afternoon , my son sent me a text ( / phone ? ) messange , ( and ) said `` Shall we eat out this evening ? `` / `` How about eating out this evening for a change ? `` . We stood in a long line under the white snow because my son wanted to eat in a small reataurant . I came here with the hope that I could chang myself . We relaxed and talked about thier journey . That was a cockroache ! ! We were upset and tried to throw it out , but it was so fast , and hiden behind a cooler . `` Somethig is And then the cockroache appeared from his pajamas . I feel a little bit narvous . The cat lets them get on itself and geso to look for Mei , and they can find her . Hanami is like you go to parks or somewhere with your friends or colleages to watch cherry blossoms . I went for Hanami the day before yesterday and played UNO with my frieds . On the other hand , the full - blooming cherry blossoms were really beuatuful ! ! ! And I beleve that to be in contact with students who are learing Mandarin is a good start . There are too mant things to fix ; it is more than I can bear . I feel pretty prussure as I ca n't do better than other students . But I think that it is because I love Disney , espesialy Disney philosophy . In Japan , there 's a phrase like this with the same meaning ( transrated ) . Hey my name is , , Sana From Palestine I 'm a studet of English litrature . I need Some helo with my writing . . I will get enough pay even eventhough it is at my house ! ! ! So many people couraged me so I appreciate you guys . . . . It says `` Vivid separates in contrasting hues ( such as this fusion of tangerine and plum ) feel modern when accented wioth a structured purse and wood accecories . Does `` sturucutured bag `` means the bag which is made of connected parts ? Lavora a scuola . English speeches are really good to practive English with . Besides , it feels great to givie a speech in front of many people . I always becomw extremely nervous though : P Anyway , the kids were lovely and a plesure . On the way , I bought a mocha and sandwitch at the Excesiol coffee shop . I wish to have many meetings throgh this diary . At least I must be couscious and careful of my bad habit of getting easily absorbed in Net - surfing . . . It is alredy passed midnight , so I am very sleepy : ( However , I can not go to bed yet as I have not finished today 's part of my studies . . . These days , bisiness at our store is very slow , and it makes me I 'm not a beginer anymore , but I 'm not an expert either . I 'll go to Enoshima island with my friend by motorbike tommorrow . Enoshima island is located near Kamkura . Today I watched the Japanese story from VCD , The story was about a woman cartoonist who raised an orphant cat named `` Sawa `` . I like Japanese Horror more anyting else since it does n't need any explanation . do you know Ghibiri movies ? Raputa is one of the best . ( I ca n't decide no . 1 ) which is your best ? Some people observed my class so I was a littele nervous . Today 's lesson objestives was & nbsp ; to get used to using the name of body parts such as nose , mouth , ear , and eye and to enjoy activities . I 'm in chage of a second grade class . I think there are some things to modefy . Koushien is high school student 's Baseball conpetiton . In japan , almost all people know of some programs about langage aired by NHK . In fact , many people skilled in foregin langage such as billingal and trringal people have made use of them . To follow in thier footsteps , I have tried to watch the program . So , sometaimes I fall behind [ ? ] I had wanted to practise writting English , Now I 'm writting an article in English . but I wanna keep writting for the sake of my English . It has been rainiing since last night . Soon the festival is going to end , so both flowews and tourists are few . However , all of it waere rich and delicious . I often go to Jingu studiam to cheer for them . Today , I 'm writing this diary at the terrace of a starbucks caffee . I did n't see his races in the past becuase F1 is very difficult for me to understand . What was I wanted to go was Mikunopolis , which is the virtual idol Hatune Miku 's concert at Anime Expo . I put some ' KAKUAGE ' on it . I want to intriduce my character today . When my teacher enterd the classroom , we sang a Teachers ' Day song for her . because up untill yesterday we donate our holiday for this project . . . But I think some poeple are nomal . The test is a conversation with a native English speaker for 15 minites . becouse I want to study arts in foreign countries . I finished my hamework very quickly bacause of the drama . . They had n't known their responsibility untill the party finished . But it is not easy to decrese the welfare budget . Many contury are facing this ecomonic crisis . It 's beem a long time since I last visited this site . Actually , When I was plannig to visit South America , But I guess that mission has not been uncomplited . Studying aburoad is my important dream . My father hasn not stood up since 2 days ago . B : Do n't warry . I might love her , but I hardly know about her feelings and what she thinks about . Althogh she is reallly attractive . . . I 'm from the fromsouthern part of Korea , so I have n't seen much snow there . Last night , I wached `` Hairspray `` . Mayby I like his voice . Tonight , I 'm going to take part in a Gohst tour . Therefore , we can only imagine how life would be withot schools . I saw Gandam Then my mother took me to buy some watermether , because it was so cheap Sapporo shirine When I heard the news the prime minister did n't make an offering at Yasukuni shirine , I remembered Sapporo shirine . Sapporo shirine is a shirine in Hokkaido . I think this shirine is a park rather than a shirine . I live in Saga , Japan and I go to univercity in Fukuoka . I often watch movies and doramas with my mother . I thought it was some kind of a suspence movie , but it filled me with a warm feeling in my heart in the end and reminded me of my brother . Next day , my husband found an extra lock and attaced it to the bike . To avoid intensive use of electricity during weekdays , the rest - days of our company have been changed from satauraday and Sunday to Thursday and Friday . So , today and tommorow are my days off from work . Therefore , I went to a Public Liberary to borrow 9 books . I remember the liberary is full of books about Technology & Program , Geo & His . Also , Hong Kong 's Liberary lacks Audio Books . Thomas the steam engine is one of the most popular animation calactor in Japan . It was held in a suburb of London with a lot of spetators . It is defficult to have a chance to watch and ride on steam engins in Japan . It 's very important and singnificant to keep the old items in good condition . lf you ride trains , you can see a lot of people using celphone , Or if you are walking down the street , many people walk while using their celphone . But thinking about a 9 / 11 - type attack , it seems to be defficult to abandon our weapons and arsenals . We 're forced to defense ourselves and our allies . And then , we would n't have to defense against , or deter any adversaries : P President Obama 's way of speeking is quite respectable . After graduating from the colleage of pharmacy , I joined a Japanese pharmaceutical company . At that time , we had the dog ( attached pictrue of beagle ) who was a cute and smart boy . Because she is too lould to make me consider everything . There are a lot of pop up rabels explaininghow themusic is nice . . . something like that . Thank you for readling that . It sounded like they were not native speakers of Enlish . I am from Colima , Mexico and my first languaje is Spanish , so I hope that I can help you to learn Spanish . well if your answeer is NO ! , I send you an invitation to come to Mexico so you can get to know this beatiful country . I met a friend who could spoke English and I siad to her `` Could you give me some adivice on how to speak English fluently ? `` She siad `` Probably your English level is good but you do n't seem to speak English well so you should talk with a native person all the time . `` That was nice advice for me because I was thinking that I would try to talk with native person . Recentry I have studied English at an English website . Nowadays , people face a series of problems surrounding the enviroment . We uaually do the things we want to do but damaged the enviroment at the same time . I thought it 's very very useful and helphul . On Saturday morning , my fridnes bought breakfast for me . The movies were very interesing . It 's not broadcasted enougj in Japan . Those photos are `` The old Hrosaki city library `` , `` The old touougijuku foreigner teacher 's house `` and `` Hirosaki castle . `` ( I forgot to writting this . But interetation is very diffrent from speaking English . I boutght a coffee . Wounded and breaked , I have been making bread for two years at home and it has been a fun and refleshing te for me . She just refuses thme without giving them any chances . I was in charge of facilitating an English conversation clab for biginners today . We have the class almost every week , and I often join it as a facilitater . I thought vidual aid can help me facilitate the class , and I was also able to enjoy watching the video . I go to shcool . Before I photoshop an image to upload onto the web , I 'll finsih the Coke , grab some fries , and write something here . However , what should have been an impressive exhibit of his gifts , became an embarrassing moment because he did n't understand what he was asked and he also made misstranslations . One of my favorite things about Jpan is the cherry blossom season . However , they are only enjyoed fora week or so . The lifespan of them are very short and this , I think , makes cherry bloosom more special . I had a cherry bloosom party with my friends today . I have to cook my own breakfask , lunch , & dinner . Yesterday , I drew graffti on a public road near my home . Many , many kids drew graffti with chalk . And I drew graffti ( too ) ( . . . . Drowing on the road was very interesting . My first experience with Russian was not very good , because there is no appropiated practice material and all that remains in my mind when I read a title like `` Russian in 30 days `` is an extreme frustration of not having mastered all the thousand ways to decline . My poor Einglish My major at University was Einglish . Soon I will probably have a nateve English speaker friend . It had been a long time since I saw my firends . We had much to talk about . I had a long walk , went to Freshness Burger , listend to music that I like , let my mind drift back over rundom things , and tidied my stuff a bit . I was kind of thinking about what happend to me yesterday . I 'm not going to write about this in the diary but some thing special happend to me yesterday . I 'm going to get ready for tommorow I have to specify cupcino or espresso or americano here . I want learn the englisn language . Becaus I was in a private educational institute , I could n't see the first half . At the beginning of the first half , Lee Jung soo scored the frist goal . But , at the end of the second half , Greek players palyed really well . Although World Cup was held in another country , Korean people gathered in stadiums or big sqares and cheered for Korean players . Congradulations , to all the people from Krasnodar ! I have found that befor I submit the paper about nationalism to my prof , I must perform a presentation about sociological methodology in my seminar . That is more difficult than writting a paper ! There were so many participaters . You can read a veirety of topics wich a bit taugh to find in regelar lapraries . When I write , it 's ok but when I speak that is not ok . My Engish is broken by me when I talk . I 'm very happy that I have no class today because the tyhoon is going to hit TAIWAN , and the authorities have decided to close the school and the company . The tyhoon may even cause a serious disaster like a flood or a in it , but the pictures often come out blurredly . I finished working earlry today . I then drank alchol in a pub in front of Shizuoka station . Honorific expressions are usefull in business . This summer holiday , my 11 - year - old male consin came to my family , taking two references of grade 5 . The task to assist him to review his courses in grade 5 burdoned on me naturally . When faced with my naughty consin , I almost had no strategies . Although imposing is unwise , it is obviously effective especially when coping with such a noughty boy in a short time . I 'm very sorry Fukushima has become infamous for the accident at the Fukushima Daiich nuclear plants . Becouse she likes to play pc game , Work using English in a Japanese compay . I did not know there was a wepsite which brings together so many different people . He was a professonr of computer science and he was diagnosed as having an incurable cancer at my age . Because the brick walls are tere to stop the people who do n't want something badly enough . I think it 's a very usefull tool to learn forein langage because whererever I am , if I 'm in the situation where I can use internet , I can talk to anyone all over the world . but weekdays I get home at about 9pm , so I serch for an online ( Skype ) English school . serch . . . . Hou many school are there ? And now I 've found a very nice website for learning Engish : I 've already signed up , and now I 'm writing my self introduction on it . I subscribed to micro - microblog on QQ , where I encountered a famous saying that says you shold use your mobile phone , when it has n't been ringing for a while . Someone once said , `` Our life was made of 5 percent of surprise and the same amount of grife , the rest is normal things that you can not remember . `` My eyes glisted with tears . Like this dialy , whenever I have time to teach . I am looking for begginer , intermediate and advanced persons . And tommorrow is May 1st . Now , I do n't speak English much . In japan , there is no oppotunity to talk to anyone in English . I want to introduct the review in the book , and I 'm going to translate the review little by little . I am interested in ' Mizuhiki ' , which are colorfull strings used for special occasions . Actuall it was still raining outside when I was writing the sentence . Hi bbvoncrumb , thanks for your comliment . because I have low blood pressyre and I 'm senstive to cold . If I can pass the test , I can go abroad and get trainig , take part in editing textbooks . . . We will eat loacal food and go shopping ! kkkk Because I will study hard for examination befor it . He said , `` I slept yesterday without using a heater , in order to save elecricity . I enjoy exchaging postcards with people in other countries . at that time , the appearence was just like a bamboo stick . Everyone will go somewhere even if it is expencive . I 'm writing in the ealry moring just after my job has ended . . . . Thank you for reding my diary . It 's fine today although some clouds sporadicly adorn the blue sky . If you are allergic to polens , I 'm sorry to say so . I do n't have hay heyfever , so I ca n't relate to the calamity . If you were in a quiant village where the roofs of the houses were thatched and you were surrounded by a number of beatiful cherry blossoms , even the word `` specutacular `` would n't suffice / be adequate . People revel in drinking and eating there and eventualy grow into boisterous because of intoxications . I do n't know where this ' UNCOMPORTABLE ' feeling comes from . I can do it agine , keep going ~ ~ ! ! we felt happy because we had been out of contact for a long time since we went to college . Hence , we talked about a lot of things including tiring things but finglly , we both had a good state of mind . 4 What 's the defference between ' I have some questions for you ' and ' I have some questions to ask you ' ? Today , I came into the office as earily as usual . I remember the time of my interview , during which my manager asked me whether I could get through difficulties or not , and my answer was difinitely yes . Howerer , I feel it 's a little difficult to do it now , because it 's very hard to get along well with my collauge . This is my first tiome using Internet to learn language ! To type English with keyboard makes me crazy , 'cause chosing the word to describe the situation that I wanna express takes me a lot of time ! Today I have stronger pain than yasterday . While watching posted videos on Youtube , I am discouged Geroge Michael and Shogo Hamada . My loundry wo n't dry ! : ( Eating and drinking good food and wine with ppl is fun , what is more , the dinner is free . I apprecite having the chance to go to XXXschool and I hope that I do There are some things that we are not clear about , and then we have misunderstadning and it makes people who are affected by our mistake feel angry , or at least uncomfortable . We ca n't deny the dominance of Endland in comparision with the rest nations about aspects of life , but it should be clear in the way we call nations ' names . I have ever thouhgt that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . And now , after taking a class on British cunture , I know exactly the reason . Because , I did n't transfar money to bank ! I transfared money to bank a little while ago . . . I hope that my website 's data is n't deleated . . . Becouse the wine distributor arrived yesterday . By the way , it will be rainny tomorrow . I can write some sentences in English because I studied grammer in Japan , but I 'm not sure if it is natural or not . I prepaeared to go to colleage in a haset , because the speed at which the lec takes place is very fast . This is the reason why the lecturer illustrates with a moniter , not a blackboard . So I thought `` What 's that ! `` when I woke up this morining . Do you agree or disagree with the following atatement ? Parents are the best teachers . However , we havn n't tdecided the day when we will go yet . I do n't know why , but foreign senior men who apeer on Japanese TV shows also speak ' OYAJI - GAG ' on the show . What was more , I did n't want to get off the bus even though I traveld from Barcelona to Madrid for 8 hours . I read the news recently and heard about the major earthquake that happended in Haiti and killed many people . I belive that my country make sure to help them . Cause he will back to Hong Kong and will not return in vaction . I think it begins with noting , then it finishes ethier with nothing . a freaky intervirw experiencs Now it wants to launch its own shops ; hence , it needs to recruit some store managers , sales persons , and maketing executives as well . HR called me yesterday and asked me if I was interested in the position ( maketing executive ) or not . However , this company has totaly dispointed me . First , I filled out a sheet of personal information and a sheet of MERTKETING questions - - freaky qestions . The interviewer asked me to breif introduce myself and asked me severl questions . Thus , I asked how many brands they would launch soon and she was n't abled to answer me . I also asked about the location of the noew shop and she said she did n't know . That really surpriced me because the new shop will be launched in the coming April . So I wanted to go to Kyoto in the morning for siteseeing . But my spine ached . . . therefore my motivation disappered . Mayby today 'll be consumed by reading books . I 've had my chopstics in my left hand when I had a meal 3 months ago . Left handers are exellent at feelings and inspirations compared to right handers . After that , we had a barbecue party to clebrate the sucsessful completion . I come from Vietnam , a beatiful country . . Austrailia . It 's 23 . 14 and I 've hust finished watching the first episode of Gilmore girls . I had classes every day durng my first year at my university . S is composed of 99 members devided between 5 sections , this is my frist diary . . I decided to improve my Engkish and I need your help . Searcging for the meaning of life , human - beings seldom think about the Working like a bee and then panting like a dog , this kind of lifestyle keeps bothing us people day to day without an end . It was aduring Happy Hour . I like beer , but I have n't drunk it in my home for about 2 yeras . part time jop I went to my part time jop . but I have to work to earn mony . To waht extent do you agree or diagree with this idea ? `` If the company sells their goods only on the internet , waht would happen to people who cannnot use the computer ? In my country , Japnan , many company use web - application systems . It is a smarting pain rather than just feeling a twingle . So my room became simple and ( refleshed ? ) She told me that she would quit teaching English school , because she was busy with raising two young children aged 9 and 7 years , and support her husband who would like to change his job , and also she wants to pursue her carreer in writing . I need to Travel arount my contry to finish my job . but I do n't have much opportunities to practise my oral englsh . I have strted to snowboard since this year . This Sunday was a little bit different than usual because we had twelve visiters from Cambodia . When he asked her if she would do it , she wlillingly accepted his plan . Eventurelly , the plan proceeded this afternoon . After I became a grown - up , I 'm likely to be shy and nervous , so sometimes I lack agrresiveness . When I think about Arabian people and Ratin people , even if they do n't know much about English grammer , they can speak and listen to English , and they do n't seem to be shy or nervous or hesitate . Japanese especially have a tendensy to be silent , I think . In Japanese education , listening to what teachers or people say is a viture , so people wo n't say anything while someone is speaking . , and happy holloween ! We plan to go drriving tomorrow , however a meeting time and our distination is not decided . She probably dirnks beer in a pub . It was very sunny today , so I went to Osaka castel Park to see cherry blossoms with my son . because everyday I think `` l 'm happy , l have all the things l wnat `` but sonetimes l do n't want anything . So , I have to eat lunsh alone ! I did n't eat breakfirst yet . My English teacher recomended it to me , so I expected a lot before I watched it . But after a while , you will know it has been spritual nourishing . I 'm not good at larning English . I 'm in my final year of the duch equavalent of high school . I still made my first entry here an English one , mostely because I have my first English final comming up and it just happens to be a writing assignment . And also because I just really enjoy writing in English , and I 'm kind of affraid to write in German for some reason . I 've never felt sick since I came to Australia , but at that time , just that particuler day , I was n't fine . Last Monday , I met my former crassmates . It was lovery day so we bougt lunch and ate in the park . But I did an oral test , I do n't speak English very well , I do n't have the opportunity to talk in English , I need to find some way to train my conversation , but I dont n't know where . TUTER ! I 'm looking forward to seeing my lovery wife in yukata . You told me that you were taught Shakespear with boredom when you were around 8 to 11 . I love TED and Steave Jobs ' speech in Stanford university . I appriciate learing 2 . 0 : - ) If you want a product cheeper than the retail price , it is very usefull . Many Koean use Coupang , Ticketmonster , Gurupon . . . Social commerce site have various kinds of coupons : shopping mall , bueaty shop , hair shop , nail shop , masage shop , restaurant , cafe . . ect . . Becouse if I think too much , I ca n't continy . I am buzy , so I am going to just try and try . I thought it must be a lie , but when I visited her apartment , I saw there were four bannas in the kitchen . so my daughter was eager to go out somewherer . Haneda airport was used mainly for domestic flights and connected to only 4 foreign ariport in China and South Korea . The workers took off their shoes inside the building until it officailly opened in order to keep it clean . Dear friens ! It is difficult to point out the errors in the Japanese sentences non - naitlives write . We read a recpi while we cooked `` tororo - conbu - nabe `` . It was a great success , Thoug it is our first time cooking it . The part ' hoor ' sounds like ' whore ' in English ( srry for the wording . . So the Englishman thought my mother often called her collague a Englishman thought my mother called her collegue whore for sure . so my friend advicsed to write my journal in this site . mmmmm , I 've got to make new friends . I want to use the phrase , `` Get to the bottm of this `` . If you ca n't beleive in yourself , just concentrate and keep up the effort . `` A Claas of Art `` I will have an art class and I 'm going to go to near the port , and I will paint a pecture of a fishing boat . Yeaterday , I played soccer from early morning . I will join a soccer tornament in November . Pls correct my English . When I drove my car , I was aware that the right side blinker of my car flased faster than the left side blinker . I found that the bulb on the fornt right side blinker did n't work . It might be more expesive than fixing at a gas station . That reminds me of the death of princess Diana who died in Paris when she was followed by many paparrachi . Also , people missunderstand the important news of the world , since every time you see the television in Japan , there are so many programs with information of the star 's gosips ; because of such nonsence information , it reduces the time to show other serious news that is much more important for the world . By the gosips from the media , these fans can be confused of the difference of the image and behavior of such stars . My birthday is this Saterday . I think I didn n't do well . : ( After the test , a cinematographer came to my school and gave a speech . there are n't a lot of days left till the worldcup Cup ! If someone asks me `` how about writing an essay togeher about his From tomorrow I 'm gon na start to attend a English institude . He is Korean but at this moment lives in Japon and studies Spanish . I am goind to visit Tokyou tomorow as my sister is getting married . Althout I habe visited Tokyo once before , I am excited to go there again . A mail from a colleage was about my boss ' I chose chemistry while others chose geography , biology , physics , politics , or histry . In my piont of view , that is just because they all belong to science . In university , the phydics class is much more difficult than before . I have thought that a person would be slimmer after finishing a series of difficuld questions . We had a wonderfull time in NYC and Washinton , DC too . I thought that maybe they were born in ( came from ) Europ when I first listened to their music . I felt the Eropean style in their music . Polular places for Hanami such as Ueno Koen are usually very noizy because of people talking , shouting , singing etc . I am Koream . Althought I ca n't speak efficiently , I want to enjoy with friends who can speak English . The main topics of conversation were all around me , like seasons , alchole , hobbies , gambling , etc . . . However , this experiment has encouraged me to leran English . Yesterday I took this picture because the flower was so beautifl . I mean that even though people prepare enough to achieve something they would like to get through sucessfully , when it counts , they get so nervous and worried and as a result they ca n't perform as they had thought they would be able to . It 's difficult to discribe . The animation is so beautiful and I think it can be proud as a Jananese calture . So today , I was looking for good ways to practice my english in an interesting way - waching movies , chatting , and talking are very good ways are n't they ? Good night and thaks for reading , It is the most excitest MANGA I 've ever read . They sometimes make me angry , but not really because they 're my lovley dogs . But it 's lanch time soon ! Hong Kong was a very fun and lovery place . There were many different foods , it was very yammy , As I could try the flavors of several countries , it was very interensting and celicious . My colleague from the previos company ( I worked for ) called me last night . `` The competiter ca n't do it . `` because I 'm affaid I will need a alot of corrections . . Good morring from Thailand As soon as I got up , I washed my fece and brushed my teeth . I 'm looking forware to that , someday . You also would n't hear the noise of cars on the road , beause there were few cars at that time . Most of people went to work by bicycle . Their were green plants instanded of high gray buildings . I suppose their strategy is very successful among this generation besause of their reliance on the Internet . In addition , the laziness of their customers resuts in the offer of a delivery service . The older we get , the better we get at handling human relaitonship . And then I went to snowboard about twice a sisen . In the future after our dreams come true , I hope to travell overseas with her . I want to write the reason why I stady English . Above all , I just stayed and traveld there without any consideration for my future , whether I could get a job , and so on . Belarusians almost never say `` Good morning . `` This earm This earm is so interesting . I am surprised that so many people are able to speak good Japanese which is said to be one of the most dificult languages in the world . My dog is calld Rei . My dog is sheeping on the sofa . My first trip outside Taiwan was Japen when I was 13 . Earning money by myself is not unusal for me ; however , it 's really something to make money in a foreign langhage and a foreign country . When you wnat to rent equipment such as a camcorder , a lighting unit , a microphone , etc . , we ask you to register as a member of the Community Media Center . somethinf happened to me recently . I went to a japenese food resterant with my boss yesterday . The G7 meeting ended and they dicided to carry out some provision which has never been done before . I have to have my motocycle looked at by the motocycle shop 's employees . Yesterday , I was very excited because it was my frist time Because there was already existing resorce which I did not create . The strategy is how I shoud make use of the resorce , thinking of priolity and limits themselves , I guess . But I realized the existance of copy right , and I gave it up . I asked an electiric store to repair my air conditioner . I want to know about Minnesotta . Today I went to the club camerot in Shibuya . I relly think `` What a wonderfull world `` every morning . Becouse it is intersting and fashion in the clothes . I would like to join the next perty some day , as well . As I didi n't know when to submit it , I asked my friend for the deadline . I really recomend this book . It 's soncond Sunday of May today . Now they 're keeping that secret just between themseives , their mother has not known that it 's Mother 's Day today . Each Ramen shop chef has his or her own recipie . There you can be satisfied with each bowl at a reasonble price . It raine yesterday , so I came home to my dorm by school bus . Also I think that we have been only larning formal sentences because when I talked to native English spealers , I could not understand anything they said even though they spoke slowly for me . Facing the failure of my College Entrance Examnation , I felt depressed at first . Fianaiiy , I want to be rich . I feel sometimes it 's good to get away from electrical gudgets and doing something diffrent from what I usually do . From today , I want to keep writting as many entries as possible anyway . Today 's picture is the most beatuiful beach I visited in Taketomi island . and our body gets older . We need to take care for ourself such as eating a velue food that is useful for the body . Even `` water `` seems to be important . I tried to comunicate with British people . There are three pieces of news which I 'm worring about : We have classes in her office over tean and cakes . Susan and Catherin are very American . She wanted to be a conductor of an orchetra when she was a high school student and she majored in music in college . They are Chiba Lotte Marines ( a Japanease Professional Baseball Team ) fans . I had took this methord for the past six months , but I did not improve much . If you have a good methord for learning English , can you share with me ? I am from Saudi Arabi . I joined this community site because one of my friends reccomended it to me . it 's difficult , for me , writing in English dialy . Anyway I had a gud day . The store is very big , and I was so excting about shopping . time and I also forgot that I came there frome the other side . Am I your daughter ? `` My parents laught . Do you remember ? `` The Assisrants laught too . When I was growing up , my parents often tell me about / remind me about this thing , and we laught about it . I 'm getting better recentry . Then I wondered why all of girls who you kissed were very surprised , when they looled at my face . In the world , there are many people that commit suicide . Maybe they have many defferent reasons . People always do sonmthing they are unlikely to do but they must do . People always do someting bad for themself but they still do it . I think my smoking is the same with those people . I want to make foreign fridends ! ! ! I 'm enjoying 1 Liter of Tears now . Yesterday I stopped by some Indian - currey restaurant to have lunch . So I encourge myself . I 'm learning Jazz dancing from 4 years ago and I 'll try to do yoga and velly dancing this year ! sun . Meanwhile , my boys workd very hard . They cleand at the bottom of the mountain . True or Flase ? We try to gether audience , but only a few people come to our show . Like most of the Chinese students , I have been learning English for a long time and improving it by taking various langage exams . It should be after my Jappanese languge proficiency test level 1 and earier than my 1 - year - exchage in Jappan next year . To recite all of those vacabulary and pick up English writing , I have decided to start writing dairy on Lang - 8 once again and I hope I will do it longer this time . I am learning some words that I am not familiar , espacially those from TOEFL vacabulary . 3 , I reaaly need to improvve my English which is very important for job and I 'll do it with my full heart . I feel lilltle ashamed of myself . My frieds what are your suggetions to my English study ? I can type anthing I i want to share with you guys . The main actor is Won Bin , who is very handsom and tough . Especilly in the last scene in which the main character struggles with all the bad guys is very cool and exciting . So I recommond that children and pregnant women do n't see the movie . but I coul n't . I like winter but today I thought that this winter is too cold & long / hard and it will be wounderfull if it is over sooner and spring comes . I went to see Jusesu Christ Superstar by a Japanese theatre company yesterday . Yesterday 's stage was called `` Japonesc version `` . Kanamori as Judas ' song is ringing in my ears . . . painfuly sad voice . For serveral years , some friends of mine , who are very well versed on the subject of comic books , suggested that I read Watchmen / suggested to me that I read Watchmen . The depth and humanity of the characters makes them different from the stereotipical comic book heroes . The plot deals with several interesting themes such as human nature , perceived reality , politics and the difference betwen ideologis and reality . She says she enjoyed it , but I think it was a little hard to understant for her . It 's the sweet poteto season ! ! I like sweet poteto very much . I want to make baked sweet potatoes , tempra of sweet poteto , and many other delicious things . I 'm going to get some sweet poteto , so I can start cooking seet poteto ! ! Are there other dishes using sweet poteto ? Some people might say it is meanigless . A 100 yen shop has daily goods , stationeris , toys and even food . The rent is determined by various factors such as location , neiborhood , building age , amenities , whether or not there is a doorman , elevators , and so on . Since the neiborhood itself is very popular , the rent level is very high even if quality of an apartment is low . I prefer to live comfortibly comfortability inside an apartment because I spend more time inside than in the neiborhood . Thank you for reading my dicitonary ! However , a familiar word , `` McDonal 's `` , as we can see around the world , has the letter `` D `` in it as a captial letter . Additionaly , she was a patriot and we should construct a statue to extol this noble spirit . Statues are built to remember people who contributed to society , and thereby making more people realize theire responsibility to the country . We went to Bexhill which is near Eastborne . We went to see The Red Arrows show in Eastborne . We saw two ponnies , a pig , chickens and many kids tried feed them all the time . I went to see the broadway musical `` Legally Brond `` last night . Please check my grammers . My favorite figure skater is Plushenko , _ because his sketing is very good and exciting . and because now I have native speakers to speak with and practice with , even this site is one of my important reasourses ^ ^ These things , for me , are so beatiful . Please correct any grammatical errors or any expreesion not commonly used . I rememeber when my girlfriend and I started to see each other , she always made fun of me and told others that I 'm so stupid to be with a girl in the same department , even in the same scholl . Sters are very beautiful . My heart becomes peceful . The view from the small mountian is especially good ! I 'm liiking forward to that time . In an hour 's time , I will go to school to cintinue my studies . Chonese lesson , english lesson , maths lesson and so on . I hope to ellect the person that has proper thoughts and actions . Sorry , I have n't posted my dialy for two weeks . A presentation topic will be attractive with the support of examples and proof , especially for academic , sientific and technical presentations . I 'd like to improve my spaking skill by using my iPod and this speaker . I am an account ececutive . Everyday I need to handle all kinds of things that are complicated and irritaing . I think I should be more careful and deligent in my work . I 'm a bigenner on this site . This is my first dialy . I read a book about organizing of desk , infomation and thinking . Most Popular Chara in Japan After I moved it , I chaked the data on the DVD - Rs . and after a while , thenPC went blue ( secree ) again . Beause I felt very cold , we went back early . Hai ! My name is Yasuna . I am a freshman at a Japanese college . The Fitst Below is my introducation . In the future , I want to becom a successful secretary . That 's all to my personal introducation . As I did poorly on the listening ang writing . Quatitive , Verbal . . . . I wonderd a little bit if the bubbles are bad for the lawn . Chinese tekens , gebruikt in het Japans , kunnen op verschillende manieren worden gelezen zonder dat hun betekenis veranderd . I wanted to watch them because they are so famaous . Naruto is famaous in Japan too . I tried drowing at the workshop . But I could n't even drow straight lines . But our program teachers , yong Americans , have opened my eyes . what 's your mathods ? I am a Univercity student in Kyoto and I am 20 years old . It 's an old Japanese mortercycle . Sometime last nonth , At the biggining of counseling , I asked a student what the biggest problem facing him was . Maybe someone wants to know someyhing about Russia . The song I want to practice next is the classic old song [ Juat Once ] . It is `` I 'm not okey `` composed by My Chemical Romance . The sky in autumn is so beatiful especially in Japan ! If you have not seen it , I will realy reccomend it . `` autum `` and ' `` fall `` Some sentances in the novel `` Night `` which I do n't understand . And here are some sentances that I found emotional and beautiful ( I do n't know how to descibe it appropriately , maybe you can help me XD ) and want to share with you guys : It is famous for its `` night marcket `` . Wooh it is almost 4 o ' clock in the mornig and My voice surprised my son when I read his picuture books . My company is a commercial firm so we purchase products from Swithland and sell them . Since we send products to the costomer after we receive their order , it takes a long time . Our products are very complicated and people may be unfirmiliar with them ( it is a device for vacuum ) , so we need to think of it and find a good way . My main job is solvning my client task by digital communication . I can hear spectators sing a song together in order to cheer players up at sport events such as soccor and baseball . I make it a poin to listen to Enya 's songs when I am stressed . It looked like weezers . He told me `` These are tongus for chips . Are they convinient to eat snacks with ? ! I want to study English and Spainish . I have been studying English for a long time , I bought 20 greaded readers books I 'm looking forwad to receiving the package . We are looking forward to visting Denmark very much . Since January 1st , I have been writting diaries in English on another site . The Sushi he made was so delisious , and his delight ( from it ) was able to be seen . And a smile on people faces who ate his Sushi was noticeable . Knowledge is what maks adult and chilren different from one another . Finailly is skill . Consequently , my consentration increased and I could go home early . It seems I have a new computer rigth now but I do n't lilke it . I like the old one because I was used to uisng it . There are many atractions . Speaking of atractions , some of them will scare people but they are out of order . I have a fear of hights . I 'm a chiken . He has a very good psysique . We asked a peson there to take pictures of us . When my daughter found the bycicle after waking from her nap , she said , `` The bycicle is laying on the ground ! `` sunndy day perosn in the music industry . Friendship is an essential ingredient in the making of a healthy , rewaring life . All people have the right to access the best medicien available . While some people think it is necessary to ensure human lives by providing them with advanced treatments and the best medicine , it would be very difficult to take care of or save thier lives completely in terms of the budget and facilities . It is true that people should be treated equally regardless of thier level of income . Rich indivisuals or companies can not take responsibilitiy for the medical world . For exmaple , in Japan , it takes a long time to raise enough funds for patients ' opperations . The goverment still lacks money even after abolishing unnecessary business activities . I have been impressed by the theory of Ebbing house befote . I 'm visitimg websites , including this one , by using my cellphone . How dericious it was ! Firstly , miso can be devided into two types in terms of its color , aka ( red ) miso and shiro ( white ) miso . It 's really hard to discribe colors in English precisely ! so I 've been tierd these days . OKINAWA 's music has very special hermony . Your country may have that kind of biscuit too but Tim Tams have a special ingredient which your contry does n't allow to put in biscuits - drugs ! ! My next English lesson will be about surperstitions . Now I work in a kingarden , I do like children , but I do n't like to play with them all day long . It 's my frist time logging in LANG - 8 , so I 'm new . I want to chang jobs , but I have no confidence 'cause of my poor English . Just kiddning ^ ^ But I want to if I can . My dream is to become a management consultansy . I cough so seriously that sometinmes I ca n't even breath . After coughing for 3 days my mother said `` I think we should see the doctor , the doctor of traditional Chinese medicine . `` The doctor of traditoinal Chinese medicine is about 60 years old . English buisiness letter My custums broker says that the importer 's name was my storage company 's name on the B / L . I think it 's very hard for a person with no experience like me to get a job . It must be very hard at the beainning , but I believe that I can have a better tomorrow if I work hard . ^ ^ I used to save my small allowance to buy a new album and then listend to it thoughtsands of times . What is strange is that on the other hand they 're willing to pay 300 - 400 yen to download a single ' chaku - uta ( music file specialy coded for mobile phones ) ' , to get the song immediately when they want it . I guess what they value more is convinience than a small amount of money , which is I think a bit too expensive for a single song though . Dubois put her girls to bed and was wating for her husband while sitting on the sofa alone with the lights turned off , when Mr . Dubois , who has been deeply destressed , finally said to him , `` Honey , it 's already 9 o ' clock . `` I was got a little cultral shock at that scene . The younger people in their 20s usually go out with freinds till very late . When my husband and I were dating , we used to meet aroud 8 or 9pm after work and hang out in a cafe or bar , then went our seperated ways around 10 or 11pm . Restorants usually close at 10 pm and supermarkets and shops usually close after midnight . Moreover , there are lots of bars which stay open through the whole night . Topic : you need to write an appropriate response to Eeil , being around 100 ~ 150 words in length How are you doing ? Last nihgt , I saw a TV program that said Japanese people eat Japanese food less these days . How are you ? Your letters never sease to enjoy me . Second , the number of Japanese families who buy groceries from online supermarkets increasing these days is not a good way to buy food because , in my opinion , using online servises like this would discourage people from enjoying themselves before making meals . Personally , even if a custom in one country is so crule or so stupid seen from people from other countries , they do n't have the right to say if the country 's custom is good or not ; all costom have the right to exist in the world . Althogh this entry is so long , please correct this > < ; sorry ! Today I slept untill 10 : 00 . I started to write a diary to improve my engilsh : ) So many people were there . I saw many beautiful girls and florts . But the most surprising event was the Stels B - 2 fighter flying over The Taiwanes perple are very kindful . I love Taiwan and Taiwanese perple . I can make various pound cakes , for example , chocolate , pecannuts , banana & walnuts , raisins , and some dry fluits . I take pictures of some triful object that has a nice atmosphere . Then he suddenly started talking about gambling and the rich man who is the president of oil company in singapole and winning 20000 $ last night and he taught me how to win . I 'm Jpanese and I 'm buddist . However , a lot of Japanese people like to celebrate Christmas like foreign peple . I 've heard that in many foreign countries , people buy prezents for their family . However in Japn it seems to be only for children and cupple . Maybe it is used as advertisement for toys or jewelly ? I gave prezents to my nephew and niece . After graduating from ESL and switching around some majors such as Spanish and Social Work , I felt like studying more about the earth and the things related to it , so finally I majored in Geography which foucus on resources and the environment . My school life here in TX has been intersting and fun although learning English is still in progress and I still have long long long way to go . I 'm a graduate student and will graduate from my univeristy next spring . I need to wait until the company starts intervies again . So I deciede to return to the place where my university is located . Neighbor restaurants menu I could add new a item to my neighbor restaurants menu . But it was not the that strange untill my college classmate appeared . I do n't know why I always dream about my elementary school , highschool , and the places I played in when I was a chind . Suddenly I feel like readng blogs that / which are written in English . There are many language in the world and I selected English first because I 've been studing since junior high school and orignally I liked English , especially I want to understand and use `` jokes in English `` ( hahaha ) To be awkard , I want to teach more to 13 girl and play with 11 girl ! It is of the `` Godzzila Rock , `` which is in Syari town of Shiretoko peninsula . I sat for examinations from Tuesday to Sataday . My classmates suggested we go to see the movie 2012 to relax and relase our pressure that 's been repressed these past few weeks . I 've skipped it twice , and if I am anbsent the class three times , I ca n't pass the exams , even if I get 100 points . Even watching TV is a lille bit hard . And I looked up about my class ' tacher too . Luckely , I downloaded all the episodes from the Internet and watched it within half a year . But the even busier season is comming soon . I work alone untill very late in office when I have big projects to complete . Sometimes untill 3am or 4am . . . I got an offer to do website and product design from swissland company . But it faild . For exeample , optimistic , negative , positeive , cheerful , kind , strong , and more Please give me your good advaice ! ! ! ! In November I will go to Finland to meet an international coodinataor who is in Uni . Actually , it took longer becouse I transited in Malaysia . I enjoyed talking with them , and could feel cultural diffrences . When I heard that , I felt the immense distance between countries becouse the sun sets earlier in Korea . But there is a diffrence between only knowlage from a dictionary and the stories we can listen from people living there . I wish I could have traveled around Australia becouse there are a lot of good places to visit . I shoul have gone to the Great Barria Reef for squba daving . So , I 'll go to the Kaname - cho station to study English with my friend who theaches me . Thterefore , I make it a habit to check calories . I 'm disappointed with this result , but prbably I 'll study basicly English , like I studied when I Once I have begun to write diary , I check for my buddies and reple everyday . . . Although I 'm doomed to fail , It is an ordianry thing for me and I will do it again and again . . Today I made fried celery and becon , boild spinach with sesame , and rice balls . Tomorro I 'll make boild poteto and beef with soy sauce , and some appetizers . I 'm on a bussiness trip in KOBE , HYOGO - prefecture . Many foriner are in KOBE . I usually go on a bussiness trip for ten days in a month . It 's hard for me to take a long time for torancepotation . Recently I was thinking about two quetions : second , where can my own happiness and expience come from ? I will go to France for 3 months from august to october to do reserch for biology . In the labo I will go to , everybody should comunicate with English . My major is Japaness . I have a lot of intresting . I can not contect some friends who live in the devastated areas . We also decided that we would sing together one Englis song and one Japanese song and after we sing well , we will post it on YouTube . I will use ipot and master singing English songs . But the yonger one hates it . Of course this is a good way , but before doing that , for people who are not confiden with their speaking like me , it 's very useful to learn how to write well organized English . So I 'm practicing in this way so that I can put toghether English words quickly . I found the anser to this question . Work is impotant for me to enrich my life . neice to meet everyone ! Recentry , I was too busy . Please look forward to my next jurnal . From tmr , I 'm gon na start working on my desk and I feel like that 's gon na go well . So I could not agree with his ponion . For some pelple , red is a beautiful and lucky color . But , I learned that it 's sad to regret in the furture . VietNam learning English Hello everybody , I am VietName and I want to learn English . I think that is a long time , but I am not goot at English . Im love shopping , besides I 'm just a student yet and , because of it , I 'm constantly poor . Cut an onion leangthwise in half and slice the halved onions . Place some butter into a frying pan and and fry the onion over a moderate flame until golden brown ( for about 8 minitus ) . While we were walking , we discovered spinich in the field , which is a vegetable I really like . I could enjoy having a dinner with a wonderful side - dish of refreshing spinich . They always say , `` We are too busy now , so we ca n't deal with your things at once . `` And when we ask them when they can do it , their official response is `` we will do it on our own schedual , but we do n't know when we can finish it . `` Nevertheless , our leader has no power to ask them do our matter as soon as possible . I do n't know whether I should work harder atmy job , or look for a better job in near futire . I love automn too . I like this season the best because the clamate is very accurate to do anything . As soon as I woke up I felf a sore throat . I thought `` Today , I 'm not so busy , I wiil be OK , `` but unfortunately . . . ? ? ? Becase I find I 'm wasting my time . We should combin them with some other ideas or some global standard . To me , English is a chaming language . Some students use color or hightlighters . I 'm wokr at a logistics company , Today the weater was bad . When I stayed at home in the Kanto - area on Frieday , some violent shaking occurred . But a tyhoon hit . I hate when independent rock bands break up because they are not famous and they ca n't find the oportunities to sucseed . Filipina girl , 3 . But I ca n't speak Englishu fluently , so I will mend my ways and enjoy everyday to the fullest . Ten days later will be Chistmas , but it will also bring me a difficult problem . That is what should I buy for my supersivor as a chiratmas gift ? I work in a InterCintinental hotel ( a ingternational hotel ) where most of the mangement staff are foreginers . Such as my direct boss is from Austrlia , our manager is from Netherland . our GM from italy so on . Generral speaking , we celebrate christmas just for pleasure in China . But this time it is absolutely differen . We will be celebrating christmas with some real foreginers ! So I think it 's necessary to buy something special for them as a christmas gift to help them to have the same christmas as before . At least they will also recieved a gift . I think theis fellings about Christmas is a bit diffrerent from China , and my main task is to make chrismas as fun as it would be in their homeland . . Shino - chan also came to Osaka from Hiroshima for to take tha lesson . I heard an interesting speach . But I think it 's very important that we have to show concideration for each other . Our group 's main purpose is introducing Japanese student guides to student travelar . My freinds reccomended that I eat dinner . I migth look for people who can advise for me about diet . In order to do it I walk aroun and go up and down . And through some windows I can see some greeen around my house . As you know , the roads in the morning are full of cars which are droven by workers . In my opinion every subject is importent . Many students think maths is more difficlt than Chinese , so they spend more time doing maths than they do practicing chiese . It will make me feel longly . How do mivies or TV affect people ? No . 4 Heroes and heroines achieve great sucess of their business , attain sweet love of their life , and gain high respect of their fame so easily within a two - hour long movie . When watching it , audiences can experience the same events and share the same feelings . As a result , this whole process would fulfll their fantasies and cause them to find balance in their lives , or to some degree , lose the balance in their lives . This all depends not only on the movies but also the audiences themselves . To put it differently , takss are arduous for mass media to bring people laughter , joy and relaxation , and at the same time some pedagogic meanings . I 've been practising magic trics since I was in the university . The earthquake happend in Tohoku and along the Pacific Ocean coast this afternoon . So you might see a rainbow , Althouh there are some other necessary conditions . I went to an Italian restaurante with my husband . It was so delisious that I ate too much . I want to tell my sister about this restautante . The end of it threw me a curve when her hand suddenly appeard from her grave . Also , she said that `` You can never be cereful enough ; you are a girl . `` This evening , I read a novel wrote by a Britian womon writer titled , `` Harry Potter and Magic Stone `` . His uncle has a chubby and spoided son . The uncle and aunt treated Harry curelly . Harry went to the Witchcraft and Wizandry School with the help of an escort who was from that school , and began his lengendary experiences . There was truble on Wednesday , The sore thorat will heal by gradation . I am verry happy ! Tomorrow I hane an interview test to work at a part - time job . I am a bit narvous . Then , we took the travel angcy 's bus there . We were disappointed becuase we had spent time and money . We just took the bus all day . Then I went to the travel agncy , and they returned some of our money . Accorinding to the news , it is an aproaching Typhoon . I heard about Lang - 8 incidently from a Chinese website called CnBeta , a IT news website . One measure I am taking is the pursuit of muscle excercise . Unfortunatly , There are no lessons in the holidays . They live in appartments near the university so that they can go to school by bike . First I need to coppy a book for him . Do I sound a little mysterous ? My bad luck began when last month I went to a temple to pray for mome money . So I was thinking , `` I definetly have to go there again . `` Now , I feel like my esophagus is buring . I need to find a way to alliviate my anxiety . As a female patien , I have good reason to lose my rationality . We talked about the past , the embarrassings happened to us . I 'm twenty - one now , and I have many random thoughts . ( my friends call me `` poet `` sometimes ; I wish I would n't make you luagh ) . I 'm sorry I konw I should . but still I do n't know what I want to do after I finnish these studies . I continued to make the panda that I began ( ? ) yesterday , again I made some mistakes - . - I was really hoping to finnish it today , but I guess maybe it will be tomorrow lol Because of that terrible life style , I had a high fever every month , got the flu in winter and suffere from chronic constipaion . The host family was good , I thoght ! `` It makes no fifference to me . `` I want someone to correct my dialies . As a aaresult my performance was OK but my index finger was burnt . Well , I will enjoy the perty . I just need to be happy but it 's so difficle . Our country has a lot of good culuture . , so I want to introduce it to people . And recentry , the custom of wearing kimono is dying , becouse many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . Thanx ! ~ ~ Hair Of Beutiful Women I want to improve my English and it depends on the criticism , so turely , I hope you can help me correct my English . However , all the hotels around the airport are exspensive . Oen day , my co - wroker told me about lang - 8 . I feel that here is a good place to learn , beacuse many people share their diaries . First , I have an English test in Augest , so I must spent a month in for preparing it . Well , I 've mostly just hung out with my freinds and went the library the last few days . After Choo - Suk , Korea 's second job recruting season will be begin . I hope to work for an international company where I can use Enlgish or Chinese . Of course 10 people including me were attending the meeting for a system assesement ; 4 people were foreigners who came from our HQ and most of the other people had a good English speaking ability . At first , it was a little exciting . I tried to listen to them and undertand what they explained . These exams will be very deifficult for me . Recently , I watched the movie `` A single man `` with Colin Firth as lead actor and the briliant Julianne Moore . * It 's just beacuse of Tomek Michniewicz 's book `` Samsara `` . But I will write a blog evreday . So he is sleeping beside me at the momen to rest . I appreciate in advanced to peopel on this site , because I need help with my English writing . Yestereven was Christmas Eve . After this trip , I think I should study English haeder all over again . Today I writr an email to my customer . But my collge said , `` it is incorrect . `` Originaly I was n't a person who was in charge of anything because I was the youngest of three chilren in my family . I went to an exhibition about the / our solar system with my BF because BF 's major subject is electronics and his fater recommede it to us . I also played bloon 3 and bloon 4 . I went to sell unwanted things to a recicle shop last weekend . Though I 've thought about these words lately , I sitll do n't knowwhich situations these words are used in by native speakers . I often hear `` definitely `` when I am warking on a street . I remember when I was in high school , I seldom had a feeling that `` I do n't know what I 'm writting about `` but now I do feel unsure sometimes . Because my school is close to my home , I can go home every weeked . My byfriend asked me to go to his boss 's cottage 2 or 3 weeks ago . His boss , Nancy , and her hasband , Steve , are really nice to me . He said , `` I woud like to say something . But , I realized what he was trying to say from his serious face and eyes . . . . then * I * was afriaid to hear the words . What I said back to him was , `` Thank you , `` and I explaind my feelings to him . vey hard week espaccialy at weekends I am a Jpanese man living in the Miyagi prefecture . I usually paleyed Metal Gear3 on a Play station3 . So , I will quit the game and start to studiy English . I do n't like to be in the cold , so I wore a sweter . I think one of the scary parts is there is no vaccine againt the new flu yet . I thinck I can write a dairy or something related . I would like to buy new dictionary , because my degital dictionary is old . Of cource , the class is all taught in English . Also , I ` m goindg to go to a theater in Osaka with my friend . Resently , I have studied English . Your cooperation is appriciated . I have to addmit that I 'm in love with Engish as a language and I wish one day that I can speak it fluently like the natives without stammering and pausing in between words . I have a big cozy whithe bath with different kinds of foams , salts , soaps , gels and many other sweet things that are necessary in the bathroom . I sometimes take a bath and read a book or a magazin . Ruby is developed by Matz , who is Japanease . `` Year 3000 `` is a big - sellor song originally made by Busted , which is a British band . Today , I planned for this year what whould happen and when I 'm going to take vacations . And , I want to watch a baseball game with Ichiro , who plays for the Seattle Marinaes . There 's too many seminars , and I 'm not concerntration . It should be peaceful between conuntrys . After that , We went to the erectlicity shop , and played with iPad . All of thoes are totally different . Adaptable , versatile , indusrious . It 's still lika new , because I do n't really know a lot of miso menus . But 4 years ago , I went to Okinawa with my family and I tried snorkling for the first time . My heart was pounding while snorkling . I do n't know why , but I beliebe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenary . I can not understand his behavior , eather . Krean friend and food I have been to Souel in Korea once more than ten years ago . Even after the lesson , she used to go straigh to his house with him , not back to our house . I was quite sure he always looked down on my plan that I would go to Austraia to master English . I wonder how you guys can stay in such a cruel and hopless country . Today I am going to the sotore and shop . Later I am going to eat with friends afther that we are going to my friend 's house and we all are going to wacth movies and listen to music . ` Let us discover the sigunificance of birth and the joy of living ' Every shake remainds us of the disaster . There is a coin box in the convinience store I work in . Becouse now that is all I can do . The GM asked me to be his assitant and he told me I could do something in a prefessional setting in logisitics . Internet calls have many adventiges , but lots of things still remain to be fixed . In the beggining , I was just looking for people to talk with in English to improve my conversation abilities . When he was a baby , he had an experience of curing a decayed tooth that was cused by his mother 's milk . I sometimes feel lonly and I feel jealous of his ex - girlfriends . how about doing an internship and studying English in the Philipines ? Salary and supply survice is not bad . Fortunately , I have enough time to think and decied . My co - worker had told me about this site and I have registrated ! I was not confident I could learn the symbles and I am not sure about studying pronunce , but after the lesson , I studied a little bit myself and I could hear English sounds more clearly . I 'm dissapointed . I followed my husband to a dental clinick in the neighber town after work for treatment of his decayed tooht . Sushi is my fevorite food . The DVDs I bought were `` No resavations `` and `` Wanted `` . I like Catherine Zeta - Jones and Anjelina Jolie . Probrem students Next year , some problem students will be coming to my raboratory . This is a difficult problem in my univeisity . What 's worng with me ? ! ? ! but I 'm really angry to myslef . Maybe we will get stiff muscles after climbingLOL There are always many customers on the weedend , _ but that day it was very empty . My friend has got a headake after this travel ! ! ! Especially the grammar , it 's so complecated . In Japan , basicly , we do n't kiss in public and also we do n't kiss on the forehead . I saw a car ornamanted with Red Bull signs . I started to practce the drums 11 years ago . Hello , my friends . First of all , I want to apologize to all my friens at lang - 8 for being absent for this long period due to the requirements in my last year of college . No doubt that I miss you all . I pick up this topic because everybody here is talking about the referendum in sudan these days . To the people who do n't know much about Sudan , it is the biggest country in Africa and located on east side of Africa ; south of Egypt . My country has struggled with political instability and prolonged wars since being liberated from the Britich 50 years ago . Unfortunately Sudan was born with wars and the most harmful one was in South Sudan . That war is considered the longest war in the history of Africa or modern history . The war continued 50 years after liberation , killed two million Sudanese citizens , and caused four million Sudanese citizens to emigrate due to the paralyzed economy we had during this ugly war . Sudan is a country of diffrente races , languages , and religions , but specific parts in the north are more educated than other parts of Sudan . This is because during britich rule the south and west of Sudan were closed areas and the government did n't allow any cultural developmental . So , soon after liberation the Sudanese found themslef with big challenge of how to rule this wide country where the north Sudanese were more educated . The government was ruled by them and other citizens felt like this government does n't represent them . The biggest historical mistake is that this government did not change britch policy of closed lands . As result of this huge mistake , the racism grew between Sudanese populations and rapidly the southern Sudanese took up arms to get their rights in Sudan . At that point , no Sudanese , including southern Sudanese , had the idea for a separation . They just wanted their rights in their country as whole Sudan . And , as days go by , and wars burned houses and killed children and women , the idea of separation from Sudan arose . In 2005 , the happiest year of sudan history , the government and ( splm ) stopped the war in South Sudan the Nifasha Peace Agreement has born . The goverment promised a lot political changes : the system became democratic and a successful election also occurred . sothren sudanes can rule their own lands by the new fedral system . In the Nifasha Peace Agreement , the goverment sponsored the referendum right after six years of the treaty . This period was supposed to be the rehabilitation period of the wars affect on the south . The south took more than 50 persent of the oil to rehabilitate southren Sudan by SPLA . Due to the bad situation in the south and huge corruption , not many changes took place in health and education and most of the money was spent on southren sudanes army . Due to the environment wich lacks any trust , now the 6 years is running out fast and the Sudanese face a referendum one month from now . The news is not good about the south , because a lot of politicians see the sapration as the start of a new phase of war in Sudan because most of the oil in Sudan lies in the boundaries between south and north . And these boundaries have not been defined yet , so the Sudanese are worried about witnessing another endless war . The situation is very tense and everybody is expecting the worst , but there is hope that the referendum will lead to unity . And if that occurs , it will be the true liberation of Sudan and a promising future . We pray for our children to be raised in a united Sudan without bloodshed . thakns for reading : - ) For that reason , I love fruits such as pears , persimmons , and the like but I rearly eat these . I 'm studying English with a textbook titled ' Common mistekes at IELTS Advanced ' . If the AAMC is going to enter the Philippines ' education and training market , it could be difficult to prepare these enviroment in order to offer their services to custermers , much like Ausralia . It is essential to collect as many customers as possble to make a business succed by keeping prices low and hiring local employees . This is my first dariy on this website and also the first day of 2009 ! I hope I have the patience and perseversance to keep on writting my diary in Finally , pls please feel welcome to correct my mistakes , and thanks a lot for reading my long passage . becouse I overdid it Because I had to finish my intership . Cuould you give me some tips about teaching myself to play the drums ? So foreigne people can not understand what Japanese people think about . But I was able to study although being preasure . This month I have to do night - shift on Mondays and Wendsday Baisically I work from 15 : 30 to 9 : 00 the next morning . Last Friday and last Saturday , I went to bed but I could n't sleep untill 5 : 30 in the morning . . It 's so unhelthy . Unfortunately a lot of peaople forget about family atmosphere . By the way , I registerd for facebook yesterday ! I 'm stydy English , but I 'm a beginner . Good things happend I kapt calling and calling , trying different country code but just did n't work . ( Murphy did n't give me , so I searched for his company on the website . ) As I was confused and considering what to do next , Mr . The first route from Taipei sould be JAL instead of AA . Psychologically watches can be replaced by ' the guy of your dreem ' . Is this sentence gramatically correct ? I ' ve got to fight this evil falb . Tommorow is ! ! This is my third visit to Beijin , and I feel that it has developed rapidly ! ! Most of Chinese people start to learn English when they are still chirldren including me . I hope nothing else bad happens , and that my friend is going to be ok . When I got off the train to transfer at a certain station , I rearched into my pocket to check the time on my phone . That 's my favorite bevarage when I went to resturant or picnic . My head is whinning . I think I had better not drink anymo If I they speak English , I can go to tojapanese people and buy food or go to Europe and see the difference of how Japanese peoples ' world view and thinking . and when I hang out somewhere , I wish I icontributed something . There are very few changces to practice . So ashame ! I have learnd English for 5 years . Acutually , I 'm afraid of making mistakes . I 'm studing English because I want to change my career . I 'd like to know what does everybody else think about this suddly change ? My teacher is from the Philipian . I 've been very tired and sleepy lately , besause I 've had a lot of homework to do . And my frineds suggested to watch `` Saw `` . She is very kand to everyone . I also walk around the park every evening . In addition to that , I walk as fast as I can , which means I always try to walk as often as possible insted of using a car or bicycle . Second , I make sure that I eat alot of vegitables at each meal . I also eat a salad , potato , or different fresh vegitables with lunch and dinner . Finarry , I always try to ease myself of any stress that I feel . But feeling too much stress can be dengerous , and what more , it can cause desease . Listening to music , chatting with friends and singing songs are ways that I can quicqly and effectively release the stress that I have inside . In conclution , joggingevery day , eating healthy food and elimitation stress can help me maintain my good health . When I was a child , my mom had sent me to a swimming class once , but I quitted when I learned it in the helfway . It can make your body more healther , maybe works on your immune system , so you wo n't get sick so easily . But in my country , students do n't really focuse on sports , even parents and teachers do not like to force children to take part in any sports games . `` Our university is really colsured ! ! ! `` This news spread very quickly . I 'm supposed to work there and I do n't even know how to cook or clean because everything I 've wanted has been gioven to me from a very early period . Thanke you from the mountain . His sister was well kown as a slut among us . But they 're alraedy engaged OMG . Kiyota : Oh raelly ? Even Kiyota had not expected that she said such a preety rude thing in front of her boyfriend and her older brother 's friend . But sadly making a close friend and a girlfriend is quite difficult in foreign countries because of the language barrer . However this kind of dishonest women can easily get conversation partoners by using their bodies . Every Japanese woman in foreign coutries has possiblity of being a dishonest woman to study English and settle down there . I play games in my speas time . We just do congraturate each other with comments or very small presents . It was my frist time in 2 years , so I was a little bit nervous to play . Later somobody assassinated Eliabeth in Swiss . Soooo nurvous The temparature was 21 degrees . Now , I work in sales department which is in chage of overseas makert . I saw the Chin gay parade on 12 th of Febrauary during the Chinese new year . I 'd been insiting that I wanted to work in Tokyo though it seemed likethere was a slight chance I actually would . Of course it 's definately the busiest city in Japan and acutually one of the busiest cities in the whole world ! I think I will miss the grocery store I 've been going to , the hair salom where staff is really nice to me , and the karaoke box I 've always been going with my friends . To remember new vocabraly , I would like to read books ! On the other hand , the younger brother was facinated by the circus . The sentece below is what I will talk about in a interview for a job . and had a lot of chances to talk with foreign people such as Iraqe people , Iran peope , etc . This is one of the biggiest shopping centers in Australia . After working there , I moved to Canverra , the capital of Australia . When I worked there , I found out that Australians like Estern food . Sushi is originally Japanese food , but amuzingly Korean tend to be like Japanese . Please correct my sentece . I bought a fasion magazin recently , and I found a remarkable article . People are always wonderring whether the country or the city is the ideal place to live . The foremost reason for dwelling in the countryside is the soothing and confortable life provided by the pastoral view . Those who have enjoyed the first cock crow in the morning , the twettering of birds in the trees and the breathtaking sight of the rising sun would go into rapture at only the mere mention of the idyllic life . Relaxed and suburban dwellwers are able to hold a more positive attitude for life and achieve more accomplishments . Another subtle explanation rests on the fact that country habitants are fortunate enough to enjoy the cozy and pleasant amience of the family without exhausting their social life . On the contrary , it would be far more difficutlt to acquire such pleasure for those urbanites . Naturally , it is possibly too reckless to assert that nothing beneficial comes from city life since several accompanying merits aslo come along with it . Flights do n't movied by one person 's contribution . Not only did I see thier collaboration , but I also saw the back side of their jobs . Especially the cabin crew Echco ( Haruka Ayase ) . They were so funny . He looed at his feet ; there were tiny animals . He was scared , he ran along the innor way . I like to drow art ! Of course , I know that it is regarded as taboo to talk about religion with strangers like this daialy . All in all , Going abroad for study brings us a plently of wealth indeed . Japanese weman are strong . I 'm not an athleat . I made a proxy server for Chainese people . Farthermore , some adults are there too . But it was a sucsess . Oska was famous as the most polluted town , but this city has been changing recent years . For instance , disposal of food oill and garvage . It 's near the * * * * * station , acroos McDonald 's , next to the * * * * rent - a - car office . My Frend 's Birthday Party I would like to opint out discrimination against women in broadcasting , which has enormous effects on people 's way of thinking . In Confucious cultures , as well as in many Western cultures , the left side is considered inferior to the right . IU intended to temt Evian . Now it 's time to prepare for my studies , because next term I have a lot of ability tests to pass , like Japannes ability test 1 . I have already made a plan for myself and I believe that I have the courage to make it come ture . and I have a curiosity to meet people throgh skype today I went to a korea restaurant where there is really delicious seafood Recentry I was emotional unstable . I want to have a storong mind . I have a bad feeing about last night 's dream . It ` s sort of sad , eventhough I don ` t know why ? It was a jouranl about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! Kan made economic activities worse in Japan because of his inconsistent policy regarding an economic growth strategy and an enegy policy . I was supposed to only drink little bit , but of course I drank a lot , untill 4 am . I didi n't have that much money inside the wallet , so I do n't care about the money so much , but I had put some cards in it . That 's dengerous . After that , an ALT teacher told me that the former sentece was not wrong . Last weekend , I went to a playgroud and filmed the children . He was a Rusian Blue who had beatiful gray hair and blue eyes . Befor I met him , I was not interested in living with any animals . I met with my proffecer This morning I went to Tokyo University and I met with my proffecer . resemble : The behavior of her son resembled his grandfather . deceive : You can not decive me because I saw you walking in the station with your dog . doubt : I doubt that , meybe she forgot about the promise we made . Hello : ) ) ) My name is Nastua . I am a student of L ' viv State Colleg of Light Industry . : ) ) ) I am 16 years old ! ! My future proffesions is clothing designer . : ) ) I like my future proffesions . People whant to know English because it is a very important languge . : ) ) THANK you whery mutch . : ) ) Houser chores are terrible , and taking classes is troublesome for me . One resason is that there are not only books but also newspapaers and magazines . I think that voluoteer does not always make the poor people who are the recipients happy . I was going to a job interviw for an internet job that I got on the on web . first , it is far farway . If possibe would you correct any of my incorrect English ? Two weeks ago our attention was drawn to a LEGO evnet in Taipei . my wife took part in the evnet and filled out the form . I shot a video my son 's happies face . I click `` Save Draft `` and I can see a dot cicling , but sometimes it never stops and it ca n't save the draft . It was realy wonderful so I was moved . I need to finish my aasignment or else it 'll ruin my holiday ! I was reary impressed with Ginkaku - gi . I want to visit Kyoto agein . I am going to Tokyo Dinsney Resort today . A collision lets you konw what issue makes him or her feel upset . Its title is English Grammr in Use . The book is basically mede of short stories like a diary . The main character is the author in his adolescence or youth , and the suppoting characters are his family and neiborhoods . The docotor told me the ways on how to treat . I hope the docotor can treat my teeth well this saturday . When I arrived at Osaka , it was rainning heavily . It seem very hard to servive in this world without paying money . Actually I am going to take the TOEFL test and am therefore preparing for my further studing in the USA . And I am really looking foeward to the day that I get the results and the letter of admission to a good school . Her son is also the same age as us , but we have n't had a chane to get along with him . I was trying to talk to her , but she seemd to refuse answering me . I am so embarrased . I just rode on a bycles and had a dangerous experience . Somtimes I think of you . - Familiy , close friends and living healty . I learned the cultural deferences and how useful English is . But , every year , by the end of summer , I always feel a bit lonly : - ( lol I 'm already a univercity sophomore , so I have to study harder than ever ( - `` - ) ! I think the best way to overcome the problem is talking with many peaple who live in other countries in English . They laught at me of that time , but I could learn . I am shure that I will learn to play flute now . Correct or Incorrection ? Please help me . . The story semed quite silly and the characters were really steriotipical . This past year ( 2007 ) I stumbled upon the Abridged series . It was a dramaticaly shortened vercion of Yu Gi Oh , paroding the show 's sillyness and the changes of the American vercion . Just a few others have done voices for the abriged series . I would like to try and do the Spanish vercion of the abridged series , with the exception of asking my friends to do some of characters . One funny thing about this whole thing is that I always have a hard time trying to pronunce ABRIGED ( the meaning of which I did not know before ) . Its really anoying . It 's so pitful . It was difficult for me to remenber the children 's name 's . Weather forcast give you some information on maple leaves everyday . From more than a thousand years ago , Japanese peolple have First , I ate some noodles and a polk rice with friends . `` We will execute plans to disetablish atomic energy plants . `` But he did not tell a specific plan . I just want to read English articals just like reading Chinese . We can see a foreseable future that the resolution of LCD or TV 's will be progressing with technology 's advancement - - maybe far beyond human eyesight . I watched a debate comepetion tonigh , One of my best friends jioned it , and his team won the competition , I am very happy . . . . . . . So , I 'm always very carefull when speaking in english . Is it as bad as the expression of rasing the middle finger ? ? The toilet , lestaurant , and all the other places were very busy . I get mad whenever it occurres and I worry about the malfunction . I went to Tsukiji yesturday . Probably , the dream warnned me that I should better take my license out of my bag which I usually do n't bring during weekend . Happy birhday to me . I drank many beer , and I became dranker . Yesterday , I went to a night club in sibuya that plays hiphop n RnB : > I want there to be a soft bed behand me so I can go to bed and relax . I am used to making coffee every day at 3 : 00P . M . , but when I opened the ice - box , there was no milk insinde . Suddenly , I had an idear . I some goingko ( goingko ? ) powder . `` Oh , It 's not bad , but it seems strage . . . . `` then , I make the same for myself . So , I made a plan that I aime to keep to 1000cal ( ? Bad idea ) per day . I 'll experience them , and decide what I sould do in the future . Of course , some of us have happy memories and others have sad memories . I iam one of the ones who has sad memories . Although I was very sad , I did not cry , because at first I could not process that mother had died and that I was n't going to see her face again . The people who came to console me were very puzzeled by my reaction , but they understood it . I could n't waite to be alone with her . Being a little sleepy when times carry you the day after today , smelling a cup of coffee , imagining the thing that you want to write , thinking about your sentences ' sensibility and sensivity also properity ? in gramatic structures . . . And when I am not able to write what I have imagined , I feel dissapointed . That is somethinng like having the same feelings as a director of a movie . However , I want everyone to see the movie in my head while I am desingning it but It is n't possible . After maybe a hundered times I am again crumpling a piece of paper . English has plenty of vocabralies ( include slung ) than Japanese . I should have very strong willness to improve my English and keep my memories of life in the U . I live neary Yokohama . And trying to be as naturl as children can enable us to receive as much as they do . educatinal oppotunity are available to more people too . So it looks like the life of human beings is definitly better and better , as we own the latest tecnological gadgets in the house , and live with educated people in an intelligent society . I hvae to study here harder and harder day by day . I think that practicing a languadge for 15 minutes everyday is enough . I was driving a car near my house which is in a residencial area . Then bihind me , another car tried to pass my car several times . He was probably in a hurry , but of caurse passing is prohibited in the area because of the nearby school . But I was a Japanes business man as well . Chloe desperately asked father , but he kept laughing for aound 10 minutes . We are going somewhere for the fisrt time . On the other hand , when we return from somewhere , we tend to feel it 's not so far away comepared with the first time . I taught English to my junior high shcool studnet and I found this in the dictionary . Of cource I know the meaning of the word ' walk ' I 'm suprised by her English skills . Beause I need you , I just need you . I foud that we Chinese students could n't understand our European teacther very well . Our social envirenment has influenced us so much . I pepared for this test a long time , but still lack confidence . So , I guess the test is like a door in my way , if I do n't pass it , nothing will change or hanppend . I think I can do it , I belive I can do it , but success is not only composed by just believing . Some people have gotten married already ; others have bought their ouw house or car . We are living a diffrent life style . But the good thing ist that I will see all of my relatives which I normally do n't get to see . For people in Touhoku , which is loceted in northern Japan , the situation is much more serious . I like sushi , which is a Japanese tradisional dish . It is delicious and interesting because you can choose various types of sushi whiich you like . Except the learning aspect of the internet , I ca n't forget about funnier ones , such as Manga , Anime , drama , films , books , songs , and a lot more . These things not only help me learn the language in certain situations , but it also gives me a lot pof pleasure , SO THANK YOU INTERNET xD That is why I write [ in my ] diary when I expelienced intersting things or have quetions . I think I have to get to bed rigth away ~ I learned hangle today by myself . It was very easy lol I leanred most of them in a day . This airport was equipted with WI - FI and I had a new smartphone . That means it is necessary for me to learn a new language , Dutsh , because it is required . I want to say hello to ererybody . but , suddendly , I found I do n't know how to say it . maybe I 'm ritht . maybe you have another better way to say hello . see yoo We can work with an enthsiasm or tried mind . I went to a hair salon with my friend after shcool . depature date : ddmmyy As a reasult As a reasult , I was asked to pay 250 dollars for the Internet fee . I got the reasult this dinner . Some really want to change their aggresive personality or bad atitute . There are exceptions , of coure , but those are few . Recently anime costume parades are very popular especially among geeks and foreing people ; P Several years ago , on Halloween day , many foreing people with costumes got together on the Osaka loop line and stayed there many hours ! It was so fun ! ! but it bacame a problem and was banned for next year : ( There were many Thiland food stalls and , someone who was from Thailand was singing her country 's song . I ate kaomangai ( rice with boild chikin ) , tomyamkun ( spicy red seafood soup ) , and pattai ( noudle without soup ) . I recommend visiting the artificial lake in the certer of the city which is surrounded by a park . There is a comercial zone along the widest street of the city where you can find all kinds of businesses : banks , bars , chemists , cinemas , pet shops , restaurants , fast food restaurants , grocers , travel agencies , supermarkets and others . Consequently , I realized that although ciclyng outside helped me to improve my fitness , really I enjoyed most breathing fresh air and taking pleasure in the countryside . The best place for young people in our aree is without doubt the lake . Luckily , the scouls are closed for ten weeks , so the young girls and boys have a lot of time to spend their Leaving my country , Soamlia , was very hard for me . But when I was there , I began to make new friends that I never thougth I would have , and I never imagined the way that I was going to know them eather . At the beginning , I felt very strange talking with them , but now we are very good friends . We went to to Acapulco to play , to an event where unuversities from Mexico go and present cultural activities . Then we went to Cacahuamilpa to play there . That was an incledible experience that I will never forget . Using public transport can be difficult , because we have a strict time and , normally , we do not have a place to sit and that can be extremely desconfortable . One argument for not using the car is that petrol is very expensive , but public transport tickets are also increasing , so that advantange is not so good , actually . The story took place in the USA a few years ago when the regression method was accepted by doctors and cientifics . But we should n't forget the pollution cause by cars . We should use a bicycle or public transportetion more . If we are working with sameone in the same job who lives near us or is our neighbour , we can go to work in the same car . This way we use less petrol . The governents are also important for taking care of the environment . In total , there were 32 pelople , a white kittie and a dog . That night , the dog , the kittie , Tom and Michel slept in the same room , and that was n't too bad . When Michael got up in the morning , he realized that his kittie had disapeared , and he found Tom 's dog with some white hair in his mouth . He thought that the dog had eaten the kittie during the night , so he shouted at Tom , opened the door and went away . For those people who want to start to do the street workout , I advise you to start with basic exerscises such as pull ups , push ups , dips and squats . Edison is said to have created the first comercially practical incandescent light . Edison and his research team made his discovery comercialy and create a company called " Edison Electric Light Company " . In my bedroom there is a brown bed , a yellow chest of drowers , a little light brown bedside table and a big brown wardrobe . The environment is our surroundings . There is no aleartness in our locality . They are busy with their own work . No one focuses on or sees what is hapening in our town . They usually speak about how hot it is today , but they do n't know what makes it this hot . I am interested in planting trees and making our sorrounding clean . Some people used to burn the forest as if the forest is useless . Man is greedy because all the things we get from the forests are free . Managemant acountant practice is very important for an organization for making decisions about human resources , sales , marketing and potential customers . To take care of the environment , each of us has to do something such as propaganda to the people in the country . About my village , we use banana leaves instead of nilon , dispose of garbage sensibly ... and so on . Are you studing mathemathics for your exam ? I 'm a happy , energtic person who likes to work with children . In my country peole make a lot of mistakes and have a lot of bad habits concerning their attitude towards rubbish . They are always throwing their old things and rubbish away in public places . The governement also can not do their role towards their people and their bad behaviour . The thing that he ( the monster ) did n't know about was that he had a spectacular infection ( literally spectacular ) that I think had no cure . It was called " The Monsteration Infectations " . Scientists were trying to find a cure for the Monsteration Infectations , but they still do n't have it . I have neded to use English a lot of times during my professional activities . For that reason I took some English lessons many years ago . I can tell you that I feel I can understand over 90% when I 'm listening and when I 'm reading , but my main problem with English is , of course , when I have to speak . I fee terrible and without confidence . I think that I 'm always thinking in Epanish and then doing the translation into English . Maybe at this moment , while I 'm writing this composition , I 'm making the same mistake . I know that learning English is a long process , but I must follow that process because I 'd like to be an excellent bilingual person . Currently , I 'm working as a teacher at the university and teaching in English is my gol . I also work as a freelance worker with the same subjects because it is necessary to increase my incons . I 'm writing now without using a dictionary and doing this composition without traduction from Espanish ( I hope hahaha ) I hope you can help me undesrtand more about how to improve my English level and develop my skills . Thank you for your attention , and I 'll wait for your advaice , ( this is my first time writing over 50 words ) Nowadays a person 's worth seems to be judged according to social status and material possessions . This mostly happens in high class famiies , as they foccus on achievements like power , political influence etc . On the other hand , for middle class families the old - fashioned values are still important as they are inherited from our ancestors in terms of values like honesty , kindness , loyalty , etc . Public transport has no future . The crisis in 2008 has reduced oil prices , The oil is cheap now and new cars are more efficient and the goverment give incentives for consumers . I know that I have not wraithen it but I have a brother . I like to speak English at school too , but my friends do n't like it when I speak it in school , so I speak Swedish ther . My fewrit lechon are the Swedish lections because I like to write stories . My family livs in a How are you ? I am going to describe myself so you will be able to reconize me when we meet at the train station . If I am right , continou reading this . I applied to a music club in our city and I was really excited when they repplied and asked me to help , because I enjoy going to rock concerts and I was truly curious about how the backstage works . What was mny job ? See you arrond This year is my sixteenth birthday and I 'm going to celebrate at home , with my familiy anda some friends . This summer was the best . I went to Cuchilla Alta with my best friends . Their names are : Emilia , Agustina , Micaela anda Lucía . I like English because it is very important to know other langeuge to communicate with other people and if I go to another country it is very inportan to know English . We got to work at four in the afternoon and it was very relaxing . I had a day off when I spent time at home or going to the gym , where I met hansome guys . You see , man , I do n't like crowded roads , a nd prefere to travel by tram . The development of the railroad and highway are easy to pulished , but the construc of seaports and airports must with congenital condition . I rather enjoy spinning , feeling the rhythmn of the music lowder and lowder . This gives me high energy each time I go spinning . To conclure , in bigger cities like Bern or Zurich there is no doubt that the public transport system would be less inconvenient than travelling by car . First , the bank notes are considerated how to design , including background colour , artwork and security issues . Then , they are prepared by skiled machinists . If the sheets are good , those sheets are then cut into separate bank notes and packed into cars in order to be dispatach all over the city . I believe that using your car has a lot of advantages or benefits . It is more comfartable and less expensive . Yoga calms und vitalizes body and mind . And government , pls do n't be so flabby with your own citizen . For begginers in this sport I would recommend that a trainer teaches swimming properly because it is very important to pay attention to the position of the arms . May Maybe they are comfortable , terrible , , dangerous or avrage . Cars and buses become dengerous and cause problems in the street . She turned her haid and saw him . " He was following me " , she thought . " Well , I should ask him what he is doing here " . First of all , finishing high school is a rite of passage that indicates the begnin of a new chapter for students . When you are travelling around the world by yourself , you gain a lot of knowledge , culture , discorves and , with all of this , you gain personal experencie . The job provides , like the trip , responsibility and experencie . The consequences are n't good as the reasons , for instance , they may have the career prejudicate , or they spend so many years travelling that they are too old to study at a uniersity . Besides that , they have different points of view on many sublects , that is why they may not like the fun and the conversation in the social life with other students . They can not enjoy this chapter with oung and fresh thoughts . It is a big dedcision , that brings great consequences and great experencies . AAs an example , if a student needs to recuperate a subject or has to get a good mark , they ca n't go to do a sport because there is no time . They would consider you as an indpendent person . Accrodingly , you would take responsibitity for what you did . I am ovewholemed with grief , living with them . Eating habits in my country have really changeged in the last ten years . it 's r is n't clear complety , but I sopuse it depends on chenging life habits in the development process of our sosiety . But a good change in our habits is the attention to calery and healthy food , because of getting information on the internet and other media that are easily accessible for all people these days . Peter looked at his watch and knew that he had to do something immediately but he had forgotten what he had to do . After thinking , he rememebred that he had to visit his grandmother as she was ill and his mother told him that his grandmother wanted to see her doctor and wanted him to take her in his car as the doctor 's clinic was far away from her house . Peter decided to go and he drove his car to his grandmother 's house in the next street . After he arrived , he saw his grandmother was waiting for him on the street . He apologized to her and asked her to get into the car . " Never mind " she said and got in the car beside him . However , travelling by bus or tram never get away from our daily routine . Travelling by bus is not as convenient as getting in a car , but you can never know what might happen with your car , where it might get stuck in traffic or some other accedient might happen . Travell plans need to depend on public transport timetables . Besides , Hong Kong also has many country parks for hikking . Tom is sutding in London . Alrough Canada is an English - speaking country , in Montreal , the offical language is Freach . So I do not have the opptunity to practise English , because most of my colleagues speak French . I was inspired by a true ledgend . His name is Edan Hazard . That fact behind sense because the maintainance of public transport is not the responsiblity of the traveler . If we want to count function of public transport because it 's not enough words to say . But public transport is a much needed service in big cities as well as small villeges . I 'm sure you 'll agree that Red Square is the most popular sight in the captial of Russia . I remember two contrats moments . One day , we had to create a team to do an exercise which used the brain ; they chose me . The reasons for stress are more diverse ; perhaps because we have an exam period , family proplems or because we think in a negative way , or we have destroyed ourselves through long hours of working and canceld our needs for enough comfort , and lots of reasons to stress ... We must get rid of the stress quickly before we lose ourselves , because it 's very harmful . For example , you can read a book , do sport , play music , eat delicious food , remmeber all the positive things that have happened to you , talk with someone who you trust , get rid of everything that makes you upset and makes your life tiring , go out and eat a meal with your best friends , and there are a lot of things you can do ... Remmeber that stress is not a lasting thing , and you can avoid it . In other words , both bad sheets and the ones which are seperated badly need destroying in a safe way which can stop them from getting into the market . Many people believe that nowdays there is no future for public transport , because travelling by car is so much more convenient , but others continue with the tought that they do help , for example , with travelling long distances . The ticket does n't cost too mutch and it is avaible for the majority of people , at least compared to buying a car . Secondly , public transport is more eficent for travelling long distance than cars and people would n't have to purchase fuel . When people need to tavel to other continents or far away , they may need a plane , wicth is a form of public transport , to complete the journey because they have to cross oceans and clomplicated distances that have different landforms . However , a car is something which belongs to the person and he can do wathever he wants and find it in the same state he left it in , and sometimes public transport vehicles are n't left in the best way . In addiion , you have to share with people you absolutely do n't know and probably wo n't see again . But , by obseving all these people , you can enrich yourself with the different cultures and manners the others have and incorporate new topics . That was my first time on holiday in another country that was n't nourth Italy . We fisited a lot of monuments , museums and churces , like the Louvre with the Mona Lisa by Leonardo Da Vinci . It depends on five main steps , which include desigh , preparation of metal plates , printing , inspection , packaging and destruction or disposal depending on whether the fourth step is good or bad . Secondly , we need preparation of metal plates that subsidiarize with skilled machinsts . If it 's good , they go to packing and distribution , whereas the others shoulde be distroyed as well . In conclusin , the whole process is an unreversed schedule . It cosumemed the power which includes humans and machinic . To begin with is design , we have to consider backgroud colour , artwork , and security issues , and then we are supposed to prepare metal plates , using skilled machinists . Secondly , printing -- including sheets of bank notes , are printed ( 50 bank notes per sheet ) . There are some requestion -- colour on both sides , special ink , slightly raised images . Finally , if it is a good sheet , the porcedure is packaging and distribution , including cutting into separate bank notes , packing , dispatching . If it is a bad sheet , the porcedure is disposal -- bad sheets and bank notes should be securely destroyed . And then he realised it was an enourmous lion . But suddenly he heard a noise , it was his mum . " Max where are you ? " she screamed . The lion dissapear in one second , running . Max spent the rest of the day thinking about that lion until he went into his room . " What an mazing day ! " , The most diffucalt area in English I have trouble with is writing . I have no problems with reading , speaking or lesining . As part of my plan to improve my English skils , I decieed to search on the internet for any free program which could help me with the plan to improve my English writing . Trieste is a little town situated in the nord - east of Italy . So the ambiental impact is very attractive . Another problem is that the citizens of Trieste do n't pay attention to the ambiental problems of their city . I think it is important that , not only in the family , but also in school , we could raise a new generaion sensitive to the ecological problems of the earth . I usually go two days a veek but henxt month I am going to go three or four days a week because I hope to enter a local competition . It turned out that that young boy had a good head for fishing and now they always go fisihng together . I like running , riding my bike , playng football , skiing in winter , climbing , etc . I like football because it is a sport that I have practiced since I was small and I think that it is the most fun and exciting team sport . The amount of garbage is encreasing at the same time as the number of humans is increasing . The growth of consumption in developing countries leads to encreasing consumption of energy , water and other resources . Nowadays , our local governmet is making some desisions to improve the situation . There are a lot of citizens movement except oficial activities . People orginise common action for cleaning areas near houses . These activities take place especially in spring and in outumn . Everyone is circious about making bank notes . The bank notes are designed carefully . Workers need to design their background coler and artwork . Then , the notes will be prepared on metal plates . After that , printing . The notes will be printred in colour on both sides with special ink and they will have slightly raised images . Good ones will be packaged and distributed . workers wll cut them and deal with them carefully . The rest of them will be disposaled of . I think that Cádiz is the perfect place to meet , because Cádiz has coast , sea , and mountais . In Cádiz , in summer , there are a lot of oportunitis to work . I hope I will get my order and I hope you eill be more on time for the customer order shipping . These people can influence our lives . For example , if you have bad friends you become a bad person and you will have probles in your life . So , your education depends on the people around you . In general , people have the possobility to study in libraries or using computers . Personally , I think studying on a computer is a better chooise . We need to do something to sabe the world ! I think they are our first friends and our first confidents . Thionk about a family 's routine . The Brazil and Nederlands games were a real test of our health . And I think that it 's not technology that will change , but the people and their caracteres . Unfortunaly , for this generation , there wo n't be real relationships , all relationships will become virtual relationships . According to my experience , if we do n't exagerate the way we use technologie like the internet , phone , satellite . For example , now high - heeld shoes are very trendy but they cost a lot and most women do n't look good in them . Transportation is one of the most essential parts of our day to day life ; whether it is puplic or private , transport takes the same priority in each person 's life from the very early days . In the age before industrialisation came into exsitance , people also used various alternatives to travel from one place to another . Then the technology improved gradually towards mechanical engines to make the transport more convinient . Continuing my visit to London , I will visit the largest park in London , Hyde Park , which has a full day of guided outdoor games and activities for the perservation of the park . follow in London I 'll go for a walk to get to Big Ben , which is the most beautiful bullding in all its splendour , where I will take pictures . Later , I 'll take the London Underground , which is a public fast transit system . I 'll trawiling on it . My favorite band is " cbjr " ; it 's a brazillian band . The type of music is rock and rap . Their music is very easy to single . I usually play it with my frindes . We won 1st place and got the cup . If anyone intends to play this game , he should practise hard to be able to play it proffesionaly . To sum up , I thonk it is enevitable . He loved Rose with his entire soul , a soul that he was losting . Suddely , he took the agreement and signed the piece of paper with his blood . Do you know a new recet for cooking chicken ? Our town takes care of the enviremont of our neighbourhood very seriously . Not only the supermartket has these containers . They are also in the schools of the neighbourhood . In my opinion , this gives a good example of the involness of the local government . The majority of people visiting Katowice are focused on three things : sovenirs , fashion and food . Fortunately , visitors will find all of that in the Tourist Information Ofiice and in shops on the outskirts . So , he is hard - working . He is a lawyer and always helps me with all my professional problemns . However , a few years ago , the government has paid more attention to the environment of our country . For example , they did a lot of advertising on televion , in newspapers and on the internet to explain that rubbish is not good for our world . In the castle there is the Holy Trinty Chapel . The famous dishe of this restaurant is a huge hamburger . So , train is an intermidiate way to tarvel . I am writing to aplaay for the job in the USA published in an advertisement last Monday . Additionally , because public transport is expensive and does not have a comprehensive coverage of most cities , private cars are more attractive for most poeple . Some people say that a tripp by car is more convenient than by public transport , but that statement has a lot of issues if we think about the limitations . But public transport has a future for a lot of reassons . First , time . If the place you want to reach is really far , the different types of vehicles of public transport will get you there faster than your car . Also , the complications about the field , like if you want to go from America to Europe , there is no highway that crosses the ocean . You need an airplane and , unless you have one , you will not be able to achieve travel between continents with your car . A different reasson is politics , because if you want to go from anywhere in the USA to Alaska , you will not need to pass through Canada . Comfort is a really important reasson , because driving for 8 hours is exhausting and it will also be unsafe . Economics is a factor too , because the wear and tear on your car will be more than in normal use and the price of food and extra stops that you will need to do . It will be more expensive than on public transport . In conclusion , for me , it is a lie that public transport has no future . However , they have to make improvements to this , like the use of better types of fuel or energy . One way is using renovable sources of energy , such as solar , haeolic ( wind ) or hydraulic(water),Also , there are biodisel and gasoline extracted from seaweed . Dear Anne , Thank for your letter asking about my fmily and my friends . When somedoby gets home , he wants only to relax in front of the television . Besides this , TV companies have understood sports provide this relaxess moment , mainly for men . In this view , I think that though there are lots of sports on Televison , there are not too many , because people have looke for it . When the day came , we performed an amazing coreography and we went back home with 3 gold medals . This American band is known for their lyrics that something different from other bands , something close to an emocional statement . My techer said that public transport has no future in our society , because travelling by car is so much more convenient . Nevertheless , I disagree with her opinion because if we use public tranposrt we will pollute less . Without travelling , people would be very bored , life would be very monotunes . Nowdays people use cars a lot . In the past , it was n't like that . People did not have cars . They just relied on puplic transport . There are a few people who use puplic transport , like students and people who have a low income . In my veiw , I can say the public transport might be going to e close because nobody is going to beclose He has been done several laws again Spanish citiziens . I have been playing this sport since twelve years ago . This sport has taught me to respect others and not to assault them.there is the only reason that makes me choose this sport is that I do n't want to be weak . I would n't like to be nothing in this country that has a rule : the strong dominate the weak . When I step foot in the gym , I forget everything : shcool , home ... . Therefore , I enjoy it . Humans are looking for power and they apply the law of the jungle , the stongest beat the weakest . What are the critria of this ranking ? and ... Chemical drugs can help peolple to heal and recover from diseases , but they have another hidden effect . Therefore , The afformentioned information above shows that our future could be worse than our present . We should live in a stabele and peaceful world . Nowadays , people use their cars to travel for work , for holidays ...... but if the petroleo were cheaper , they could travel a lot . After the preparing of metal plates by skilled machinists , they take sheets of bank notes . There are three requirements fot this : colour on both sides , special ink and images that are slighty raised . It smelld terrific , and teasted so good . It was panncakes and egg with bacon . After that I polyeder with my brothers out in the garden . They usaly do n't want to be with me , but today we played all day long . It was such fun and I could n't stopp smilling . He told us that he was really embarrassed about what had happened and he apologysed for his attitude . It will not be tredy because everybody will have his own car . There are advantages and disadvantages ; television can also cause a dipendence , cartoons and " stupid " programs can harm young people most . Today , there are many children that have a dipendence on television , they prefer to stay at home to watch the various children 's TV programs , while once our parents preferred hanging out with their friends . Television can be a useful strument if it is used with caution . Therefore , I recommend using it less to prevent damage to the mind . In order to help reduce pollution , I take acction using the three " Rs " : reduce , reuse and recycle , so I am more and more eco - friendly . I reduce the use of innecesary power at home . In other words , I turn on a light that I need while I use it ; I take cooler showers ; I heat only the neccesary rooms . In order to reuse , I convert all things reusable , for example , a plastic bottle as a plant pot ; a glass bottle as a food container . I take my reusable shopping bag and refuse to use a plastic shopping bag if a salemen offers me one . A car is less expensive , more confortable , faster and safer . For example , travelling by train is cheaper and travelling by plane is faser . On the other hand , it helps to reduce the polution made by cars , .. The picture illustrate the progrocess of making notes . Then , preparation of the metal plates and skilled machinists are needments . If the printed sheets are good quality , they will be packed and distributed . Some partially damaged sheets will be cut into separate or packede or dispatched . The bad sheets will be disposed on . The destruction will be secure . So it is not always a good thing , unless they are open - minded or have their own methods to punish you in a gentil way that wo n't make you regret telling them your faults or mistakes . I felt that I could lose consciousness . That 's why I removed the braclet . I am glaed to hear frome you . I am 24 years old . I am frome Lviv Ukraine . My hobbies are footbal and gym . I am stydying envaermantal science . Now , to answer your question , I have many favourite places near my town because I live in a lovely little town , but there is one place taht is special to me : ' A Fervenza do Pedregal ' . ' It is a veri quiet place . Because of its location , in the middle of the forest , only a few people know how to get there . It is an invledible forest , the ground is covered in low grass and there is a little river where you can swim . It is the perfect place to have a quiet day . That is all I can tell you about this place . I hope tath my answer will help you with your project . What is your last neame ? I say to people that want to tay this sport that it ' s easy if you love it . If you try this sport in the wrong way you could have health problems . For example , you could have problems with your hands , in your neek and in your legs . Emily knew she would have to come to a decisión soon . The problema for Emily was that her boyfriend was as cold as the weather . She thought he was so boring , but she did n't want to be alone . she did n't know how to live on ther own and Emily was utterly terrified of being alone . The purpose of this report is to make people more aware of the importance of taking care of the environment in order to erradicate this problem which has serious consequences nowadays . The council is carrying out a project in order to erradicate rubbish from my town . Combating the distriction of the enviornment , this is a serious problem throughout the world . Nowadays , many trees and grassland areas are damaged in many countries , lots of building are constricated . And people should pay attention to this problem and try to slove it . For instance , people need too many places to build the modern society , so they cut down lots of trees , burnning many grassland areas . Another factor is that the animals do not control themmselves and eat the plants leading to the distriction of the ecosystem . Althought this change makes the life of people efficient , the problem should not be ignored . It would really be helpful if the government made tighter restrictions . In today 's world , there are lots of constrication companies and factories are not admission , they are destroying the forest , farmland and wetland , discharging waste water and emitting greenhouse gas . It leads to a serious enviorment problem . Taking the train is more cost effective than taking a car to work , as petrol is costly and the new transportation office has reduced the cost of tickets to assist with the daily living expesnes we encounter . The other benefit of taking public transport is fewer people are taking cars , reducing the amount of toxic gases released into the environemnt . Karate is one of the best sports I have ever enjoyed in my life . One of the reasons behind my passion for karate is that it 's a means of tamming the mind and the body . I have learned to get control of myself when someone teaes me , and to be alert as well . Also , it helps me to always look slim and put me away from the ghost of obesity as well . People who want to start doing karate have to be patient . They should emerse themselves in daily exercise as well as eat healthy meals to keep them active . for instance , it 's adviced to eat large amounts of fruits and fresh vegetables because they contain a lot of vitamins that the body needs to work properly . My favorite sports are football , baskeball , Formula One and Tennis . For example , in our country , " Shinkansen " which measns burrett train , is famous and very fast . " Blue train " , which has many beds on the train and we can sleep comfortabully on the train . Second , travelling by train is safe and reasonable conpared to planes . TTravelling by train is cheep and getting a chicket is easy for us in our country . And terolism is scarce also . A plane which was travelling from Egypt to Russia was explosed by terolist last month . What did you do yestreday ? I 'm nineteen years old and from this city but living in a domitory at Ton Duc Thang university . When I am running , all the preesure I felt is gone . We have Eather first , then people , than our house . Eather is our home , we all have to protect it . But now people are distroy it . Just for mony for more houses , but if we destroy it , we will all die . Our money will be gone , our house will be gone , we will have nothing . Besides , some people destroy farland to build houses , but if one day there is no farmland , then what should we eat ? Nothing at that time . We could n't eat anything!So what should we do ? So my idea is that all the countries and all the people stop using farmland , forests and wetland to build houses , grow more trees , portect our world , our home star ! The lecturer desagree with the paragraph suggesting that the mentioned test developed by Alan Turing does not answer the main question : Can a computer think ? First , the lecturer talks about " Saran " , who proposed a challange to prove that Turing 's test was not conclusive , and that he created a paradox . He selected people to go into a Chinese room . There was a computer in the Chinese language with diferente symbols . The Americans showed diferente behavior . They did not understand what was on the computer screen . Science , I just remember I have always liked motor racing , but one of my frevourite is Formula 1 . The Formula 1 seson starts in erly spring and ends in late autumn . I try to watch every race every fournight and the training the day before the race . Ferrari make one of the fastest cars in the world , but this seson they are not so fast on the Formula 1 trac as they were in the past . If sameone likes cars , then they should go to Formula 1 races to hear the bolid engine sound . I think that is the best sound I have ever heard in my life . One day , the son of Lucy and her husband went to carve holes in the dirt to make a game , he made five holes and in the last one he found a brilliant jewelry that had belonged to generations of gods . So he started throwing that for fun . One time that he took the jewelry , it consumed the mind of the little guy and that made the jewelry emit some sounds that only giants could hear , so a mountain stood up that was the face of a giant and he perceived negative vibes , so he killed the guy because he had the most important relic of the gods . I hope you enjoy your trip to Seoul till you left our contury . England does n't have enithing . You are the worst and most horrible country in the universe . With reference to the recent advertisement about ' USA CAMPAMENT SUMMER ' , I would like to express my interest in the position in the campament . I think I am a suitable candidate for this job , because I like children and I have experience of babaysitting . Also , I work very well at making food . It was presented by a politician , an economist and two envirementalists . Teens should not drink under the legal drinking age because they could get into trouble with the law , they could cause harm to themselves and others and could have a higher risk of alcohol dependancy later in their lives . This is an interesting question becaus I beleive that my family are my best friends , but at the same time , they are not my friends . My family are my best friends because they realy take care of me when I need them to . I started this sport when I was 10 years old . where My father was also playing this sport , but he started it when he was older than me . He was about 30 years old . where Squash is one of those games that can be played at any age . I love this game because I find it exercises the whole body at the same time . We run in a small space , moving our hands in stretched and different ways , and at the same time we work our minds , so it needs care and quik thinkink , as much any as exercise you will find down the road . I think that anyone who wants to start a doing sport should play squach , which gives a you flexible and healthy body . At the same time , this sport can be played for a long period of time without caring about age . I have praticed swimming for 3 years . I am a good swimmer and I have competed in different swimming tournaments . My favorite swimmer is Michael Phelps because he was the best swimmer in the world , and I hope that he returns to the olyimpic games in Rio de Janeiro in 2016 . My favorite style is the butterfly and I always pratice this style because I want to improve . Althouth public transport is cheap and more environmentally friendly , it is not as flexble or comfortable as the car . Exept for in the big cities , public transport is not an easy way to get around the city . That means that in the future even more people will stop using it . In the first step , the bank notes have to be desinged concidering some , like background color , artwork and security issues . After the design has been prepared , skilled machinists preparaation metal plates in the second step . And then , some sheets and good bank notes from damaged sheets which are cut into individual bank notes and separated into equal ones and packed and depatched to where they are needed . In today 's class , we were discussing wheather or not we agree with the often enourmous salaries of fooball players . For me , as a passionated soccer player , it is a good point to consider . I recommand to the clubs , be warned . By this aciton a Ronaldo or Messie can be paid and it is possible to buy the best team for the league , like Bayern Munich is doing at the moment . This makes football or soccer ever more equisite to a certain group of fans - hooligans . But if the prices are too high , no onw will visit the games anymore . First , I think that this job is perfect for me because I have travelled around the world and I know a lot of different kinds of food . In fact , on my last trip to Japan I learned to cook shushi . One day , Michael wanted to go out , so he called his best friend and suggested going out togther . His friend agreed , so Michael put on his clothes , wnet out and closed the door , but at that moment he knew he had made a mistake . When he got back home , it was late and the metting was canceled . I know that I am a suitable person for this job , and I can say that nobody is better than me for this incredible job , because I have travelled all over the world and during this experience , I have seen the necesity of work to finance my journey , so then I have dedicated myself to working on summer camps , and I have a lot of experience of this . So , in conclusion , I think that if you contract me , you will get an axcellent person and an excellent worker . In my opinion , public trasnport is more expensive and it is less comfortable than a car , because a car is faster than public transport . Online Lerning Positiv things about online lernign are that you are more mobile with your smartphone and you do n't have to carry so much paper with you . Also , you 're on your own and at your own lerning speed , which makes it more spesific to the user themself . Maybe you 're more confortable on your Smartphone than with paper . Negaticvs about online lerning are that you 're not listening to much from a real person and more from a Computer . If pyou do n't have any listening things in the app you do n't lern how to pronounce the words . In my personal opinion , its better to lern from a teacher not only because you lern to pronounce the words correctly , but you also lern from a person , which is , in my opinion , way better . I think we spend enougth time on smartphones , so I do n't think it 's the best if we use them to lern as well . For words , I think it 's perfect , but all the grammer and talking , I think you need a teacher . The advertisements are a bit tricky because they know exactly when children watch , for example , sfter school . Recently , there is a growing country whose environment is destroyed by building houses , which accour for some debation . Apparently , it is a good thing , because it is a significient symbol of the development of a country ; however , on the other hand , doing large - scale building projects may bring a galaxy of probems . In a word , the government should appeal to people in some way , that we should protect the earth rather than only facus on personal profit . It happened to me once and was very unconfortably . Another very commom risk is falling on the court , which can cause dangerous scratches . It is very nice that you remembe me . All this started in Juli . I needed money which I could spedn during my study semestr . I konw that you are like me . Best wishes your broo Bartek ! In later times , society felt the need for change because of iniquities that were committed in the country and the Mexican Revolution explotes , the building was abandoned because the government and country did n't have money for construction , to the point that the building 's metal estructure was used for weapons . They even asked me who I wanted to go with . They grabbed my hands , wanded me to go with themself , but I had no idea , because I love my mother and my father so much . Finally , I cried , because I could n't make a choice . My father and my mother saw me crying and decided not to keep going , and they saied sorry to each other and me . Nowadays , I usually go back to the swimming pool at the weekens . " So many friends learend to swim . Then , the metal plates are preparated by skilled machinists . The next is called partially damaged shees , and bank notes are separaed into good and bad . Good sheets will be cutted into separate bank notes and packed ; the bad ones will be destroyed by fire . This is the method of making bank notes , and the operater should pay attention to the printed sheets and how to inspect them . The most important step is the inspectation by hand . That is to say , they should be separated into good ones , which are to be cut into bank notes and delivered to the banks , and the bad ones , which ca n't be utilised and are burnt securely in the last stage . Actually , I realize that busynes is not for the major , everybody knows Tec is very demanandant and if you want to be there , you must work hard . I dream of being a Business Administrator when I 'm older . First , I want to work for a sports company lik UA and then I may have a little variety on works . Tennis . Tennis is not jsut a sport anyone can play , but it 's a professional sport and it needs more hard training and more time to be perfect at it . First , why did I choose tennis ? Seriously , in 2003 it was my first time watching the game on TV when I saw Roger Federer play . I think he is the one that made me love this sport , due to his professional movement when playing the ball . From that time , I was interested in this game and watching all the championships , so more time , time and time it is my favoirite sport . Aisha is in her therties . She 's from Marocco , so she has Arabian features . For example , she is n't very tall , around 1,57 metres , she has long dark wavy hair and big black expressive eyes . Moreover , it is more approppiate to start constructing roads which are convenient for the majority . First my favorite sport is futboll and I like it for many reasons . For example , while you are watching a match , you feel excited and entretaining . Besides that , football has the best fotboll player ever , which is Leo Mesy . He 's the best and he 's able to do awesome stuff when he 's playing . The company responsible for rubbish collection collects the garbage , already separated by the families , and afterwards does the recicling . As well as the informative sessions about the enviorenment organized by the Mayor for all of the residents , it also has lots of staff that clean the streets , take care of the city gardens and collect the garbage . My favourit sport is football . I love it so much . When I was young , I used to watch football and my favorite team is Barcelona . I used to play with my friends in the street and we were so happy doing that , and after that , we played on a football pitch like in real football . I love Cristiano Ronaldo so much . He is the best player in the world . A few people have told me that Messi is the best player , but I feel angry when I hear that , because that is not true . So I am looking forward to meeting my favourite player one day . It 's like a dream for me . last night we went to the swimming pool . It was a little bit cold , but we liked it so we went to the pool and srated swimming . I know how to swim very well , but she does n't , she has to have a support otherwise she ca n't swim . If you want to visit me , you have to do it in the next month because I have a football tournament , and I must participiate . To answer your question , I can not attend the party beacuse I do not like theese kinds of parties , but I wish you good luck ! Almos Indeed , all the indicators show that humain behavior will not change , at least in the coming decades . The way of livng changes every day : if we think about our grandparents ' , but also about our parents ' lives , we notice many differences . Above all , they talked more . We live in the era of telecomunication and no one could live without their mobile phone or their computer . Moreover , also , simple things have changed . For example , the food we eat . Some time ago , everythingh was natural , healthy ... but now everyone always eats " junk food " and thinghs like that , which are completely unhealthy ! About food , I imagine a future society in which restaurants wo n't exist . People will eat only junk food and food which has been prepared before , food in tins ... so all unhealthy thinghs , which will cause many problems . But phobias are fears which we experience that are life - threatening and they can distrupt everyday life , but people can get over them with the right sort of therapy . So if we want to live a life which is n't controlled by our fears , we must try to be more objective and pay mre attention to real dangers . Alison read the note , smiled , and immediatly put on her coat . She went to her parents ' house because they sent her an email that said that her father was okay after the oparation . tube and train , but is there a future for them or not ? I am going to answer this question by discussing disadvantanges and advantages and , finally , I will give my personal opinion . Secondly , public transport is more ecological and less polluting for the enviromment , because it produces less polluting emissions , and many public vehicles use green energy , such as electricity or gas . In conclusion , from my point of view , public transport is more necessary now than ever before . Cities contain more automoviles and the pollution is worse .We need to change our way of thinking , and try to use public transport as an alternative to improve the enviromment of our cities . Some buses have special and preferencial seats for old people . Many cars poluent the planet and people are allergic to the pollution . The train does n't cause poluition . will be more heauthy . I suppose their lifstile is intolerable , resteless and I really sympothise with them . The majority of outstanding and appreciated people are frustrated . They turn into arrogant and furious idols because of a lack of ptivate life and perpetual attention . That is a pitiless trial for celebrities but , through thick and thin , they go on .They archieve the goals made exceptionally for the sake of money and vanity . In itself , the film did n't have an special topic , but I can describe it as a friends film , as there is a lot of laughts , jokes , and it shows that friendship is the greatest thing that exists . The public transport most used in Toluca is the bus because it is the cheapest , but it is very bad and unsafe . The qualiti of it is very bad ; the buses are old and obsolete , they have broken windows and old broken seats . The service is very bad . The drivers are very angry and stressed out so they do not drive with cauition . In Toluca there are reports of high numbers of accidents involving buses . I think if the goverment do the best work about the transport , they can save it . It is true a car is more confortable , but it uses a lot of mineral recurses like petrol wich can pollute the atmosphere . I do n't think public transport does not have a future . There are a lot of people who can not buy a car and they have to use communite transport . The Internet is a useful tool for everyone , so we are communicating with distant friends , and we look for important information when we are studying or entretainament ourselves . First of all , I am going to talk about the adavantages and disadvantages of this topic . The first adavantage is that the Internet is very fast . For example , when you want information about something . The second advantage is that the Internet by websites , such as twiter , Facebook ... You can speak with your quick friend , or you can meet ith them on the website . Therefore , you do not call them on the telephone , because the internet is very cheap . As for disadvantanges , at present , children are aways playing with their computer games and mobile phones . To sum up , the Internet is the most important advance in the world , but there are a lot disadavantages and advantages . From my point of view , the Internet is useful for everyone , but we should not abuse it , and should carring out other activities . Recently I have had a job offer from a company located in London and it requires me to have an ILETs score of 6.5 for the visa . In particular , some people do n't have a car and some elderly people find it difficult to drive a car by themselves , so public transport helpeing them a lot . That is why I think public transport is really important for the public and there are a lot of important things that will be possble in the future . And maybe you will become a famous player or an ordinary player , but you will feel like a famuos one . I think the sheep should be transferred to a place where there is specialty in animals with the same condition . We bocome not only older , but also wiser . We learn , but the most useful thing to learn is to get a lot of experiences and , for sure , to make mistakes . But we have to be honest with ourselves and admit our mistakes to avoid them in the future . Becsuse it is turening red ! As you know , my grandmother currently lives in France with my cousint Jonh . Unfortunately , he has to do a three - month course outside of the country . Jonh needs to leave France next weekend , but it is not possible . I have to go and look after her because none of my family can spend three months over there . Nowadays , technolgy is more modern than in the past and people are always developing their inventions to make them more useful . We as humans living in these days , rely on technolgy . Every aspect of our lives is supported by technolgy . One example is television . In the past , we used it only for watching the news and movies , but as time goes by and the technolgy develops , now television has other functions . Second , tthese days , television has become modern and that means television can be connected with the internet . In conclusion , televeision can entertain and also educate , because television programs do it in an interesting way . Footbal is usually a sport that appeals primarily to males , but I 'm a girl and sometimes I realize that I know more than some males . I have recived your letter . I agree with the statement that Mark Twain is the greastest American writer . When I read his poem " The Adventures of Tom Soyer " I was excited . I usually go to the seaside on Sunday moorning . Firstly , they design the bank notes ' backgroud colour , its artwork and security issues . Then the sheets of bank notes are printd . Printing colour on both sides and use sprcial ink and the images are slightly raised . Finally , they find good quality sheets and some partially damaged sheeets or bad sheets . At the same time , bad sheets and bank notes are securely destoryed . The other reason for my opinión is that almost all people preffer using the eyes and ears to other people , rather than write and listen to understand new things . That 's why I think that it 's a good momento to see things in a new way and that can be a very good opportunity . Deffinitly , it does not always depend on the kind of programme , but I think that nowadays , a lot of televisión ofert help for people to develop more effectively . I am communicating with you with the purpose of letting you know that we are going to set up a meeting at my office with the purpose of discussing how we could use social media to improve the communication with our suplliers . I think a great time for the meeting would be next Monday at 4:00 p.m The purpose of this letter is to notificate you about some complaints that some citizens have . This is related to why only boys have to be in the draft for military service , and girls do not have to . However , I just go to the restaurant on special ocassions , such as my birthday or when I pass an exam . First of all , we should think of a design and dicide the background colour and artwork , or even security issues . The people recycle the rubbish and they throw away the rubbish in diferents containers . While I strugged to walk . Finally , I saw a light appeare and I woke up . We will have people that use the television as fun , most of the time ; but we also have other people that use television for searchs . For example , the chanel '' Animal Planet '' has a lot of information about animals and how they live . Nowadays , everybody has the ability to buy a television , so the numbers of TV viwers is going up ; even if you are poor or rich ; most can watch a movie , or a documentary . Also , I think swimming can keep your body fit and it can make the swimmer cool down when it is a summy day . I ca n't pronunciate well . The home was on the shore . There was a tunnel and it 's hole was in the deep . At first he used to be polite and obay the other orders . Once a day , he met a girl called Sarah . She was 9 years old . Although Michael was bigger , Sarah could control him . Every day they went to the sea to play and swim until the sun set . Once a day Sarah made a challange to Michael about who could enter the tunnel from the hole in the sea and get out of the other hole on the shore , but Michael was afraid . He was asking himself which animals could be there or if there was air there , but he had no choice , so he accepted the challange . Sarah told him she would go first . She took a breath ... a deep one , and started to dive . Our city is quite clean and livable ; people are more careful than before . Generally , we use a criket ground which has an oval shape . I tend to ride my bicycle from home to work , I have n't used my car or buses for a long time , because it is not healhty and costs a lot . A bicycle is for me the best way we can be fit and in a good condition and also create less polution without cars . I switch on the home hiting for a temporary period . When I am working from home , I use more energy to warmht my home . We learn to really segreation waste and , in the future , how we could , for example , use the same glass a second time . Anyway , a lot of people will need some transport in some cases , not privat , but public , and we ca n't say that this kind of transport willl not be useful . As we are fully dependant on indivitual generators , these are causing multiple problems with the weather due to their smoke , oil and gas left behind , in addition to noise , of course , because they are the main source of the 18 countinous hours of noise . People , espicially grnerator owners , have started using Canaopies , using very long pipes to get rid of as much as they can of the polution . Other resedential areas , using their potential to maintain the environment by planting trees , roses , have nemourse green spaces . Also , recycling the trushes is a very inteligent way to keep the town clean and get multiple uses out of the products in industry lines . on the other hand , the eldest people in our city have many socity responsiblties and are encourging the youngest people to participate in the annual gardening festival for the indoor and outdoor gardens . I like the Indian resturants in the city . In addition , the infrastructure and roads are well orgnaise . In the village where I live , there is a lot of vegetation . For that reason , we try to protect the environment . One of the things we do is to do mantainance every week to the vagetation zone , checking if there is any garbage . To avoid this , we teach the younger generation enviromentalist actions so they do n't throw cans , paper , or candies on the floor . They can also help the older people . There are cases where a person throws garbage on the street or on the vegetation . To avoid that happening again , we have a punishment that is to pay some money . If they do n't , they wo n't be allowed to enter the village park and zoo again , unless they are visitors . In that case , we tell him or her the way we live in the village and , we give him or her advice to keep a beautiful place without garbage . Another environmentalist action we use is to protect the wildlife by takeng care of them . For that we have a care centre and , other additional institutions . We also make environmental protection centers where people can visit and learn about this . To sum up , our village is very focussed on taking care of the natural world that sorrounds us . If you want to have fun , you can go to Parque de la Costa . There are many interesting rolercoasters . Nowdays , in school , we learn a lot of subjects which we use more or less in our lives . Some of them are really important , but some of them are just a waste of time . When Freddy began to sing , the kids screamed and they sang with Freddy the famous Freddy Fazbear 's Song . Bonny played the drums and Chica served the pizza to the children , This year the stablishment closed because they found the body of a dead child . I think it will be ghanged to become a bubile city and contin more high buildings . If you have a car , you probably think that travelling by car is better than by bus , but there are a lot of people who do n't have a car , so they are used to going by bus and , for them , this way of travelling has become more conveniet , because they have done it since they were children . She has twenty - seven maid of honor dresses . Meanwhile , she falls in love with a boy who is very handson , but he works for a magazine and he has written about weddings in the city . He is a good writer , and she unknowns that . This story develors a mixture of themes such as courage , family values , friendship and love . In conclusion , if you want to have a good time , you shoudl go to the cinema to see this film with your family , because it is an interesting and emotional film . Transport polution is one of the most dangerous . On the one hand , that quantuty of cars ca n't be forbidden , because it 's a personal right to have one or not . Also , another improving measure might be encreasing green areas in cities and towns . Factories damage nearby areas and water extremaly badly . In my opinion , firstly , new bilding on the banks must be forbidden at all . But sometimes it can also affect us in a negetive way . Most people around the world can see any news live . Media is more helpful for people . Television is also used as a study resource , for example for smart classes , saddenly , an old carrying a heavy load hit him and fell down . I suggest everybody should have the same evening walk . You just need a pair of comfortable shoese ! Travelling privately makes one free of issues like harrasment . I like a lot of activities , such as travelling , readillng , playing soccer and watching movies . Besides , public transport will reduce traffice jams . Finally , the kind of life that we will see in fifty years from now will have a lot of stuff to help people to have a more comfortable , easier and faster way of life , but this will be only to meke more money and consume more and more . Also , things will be faster of waste to make people change their possessions more often and stimulate consumerism . Nowadays , an increasing number of people are concerned about the phenomenon of armland , forest and wetland disappearing because of some long - term human activities , for instance housing and transport networks are built , destroying the balance of the environment . Firstly , it is clear that more houses and transport networks are convenient for our people . What is known to us is that the population growth is a big problem which creates a need for more palce for living in . And builing more transport networks is also a benifit for us , for example , the high - speed rail can shorten the time spent on traveling , while the animals may not welcome it . She was very shy , sensitive and embarressed . She mooved to Kyiv , graduated from university , and started to work . Althought she tried to hide , she became a great and famous model . It would be interesting to accompain your best friend or your beloved to enjoy your time . The investigations were concentraded above all on the construction site of Mapello . There are many educational programmes which we can get penfit from . Nowadays , pollution is a plobelmatic that we have to solve before it gets worse . As we can see , modernization is causing damge to rivers and seas . While you are with me , you will do curriculum vitae and then we will travel around my country and we will become good workerds . I was really comfortable in my bed and I could n't belive that someone had interrupted my calm . I closed the door hoping never to have to open it again , then I went to the bathroom and took a relaxing shoower . I practised danse a long time ago , but with age , I 've preferred to practise an easier sport . If I could give advice to new practisers of Pilates , it would be to read a book about this method and to take time choosing a goog teacher . The lack of sleep often maks me unable to concentrate in class . And just as I was becoming a proffesional football player , my right knee was injured . I like that phrase because the boy was happy becaus he got to He is , for me and many people , an excellent actor because his personality is extroverty . Thank you very much , Joe , for thinking of me to be your witnees . I feel very proud that you thought of me to be your witnees and , of course , I accept and I will be in Toronto for your wedding . Tell me what kind of suit the witnees has to wear , whether I have to bay any colour of tie , a flower .... I 'm really very excited about your wedding . Your muscule will be hard . One day I visited my friend Jimmy in New York city . He was a young man who was an expert on trains and tourism . He talked about how citizens and commuters move from one place to another . He told me that Grand Central Station was the largest terminus in the city . He showed me where the landmarks of the Big Apple were so sightseers could go there . He showed me the city and we went to different parts . First he took me to Columbus Circle in the south west corner of Central Park where there were the most expensive apartments . Then we went to the lake where the jogging tracks that circle the lake are popular with early - morning visitors . Then we went to the Museum of Natural History that was located near the Metropolitan Museum of Art . Then I got focal on the subway trains , so we went to Grand Central Station . When we arrived , I was amazed to see a lot of people going to work , so he told me that it was convenient for people to use the train because it is very fast and for the government it was a grat economic business . Then he told me that one of the characteristics of In this video game , you can kill , jump , dance , and eat all you want . It is a very good game . I think that it is the best " shooter " and that " Artic Combat " is good too . Today is the big day , the day of his apresentation about acid rain and its consequences on the environment . Feel the dramatism and realism of the best known event in Easter , played for nine years by the inhabitants , " The Pasión of Christ " . Discover the main representative museum there , the olive museum , where you are able to look at its history in each of their corners , in addition to tasting its exquisit oil . The first time , it 's difficult , like any other sport , because you do n't know and you have to imporve by yourself , but if you like it , you will find it fascinating . It is thruly that in summer we have to be careful about with te hours are too hot and we should avoid running . I am happy to say that I have only positive points to presente due to how wellcome I feel when I arrive at the reception . Becouse of that , sometimes I feel free to ask them what I want and depending on the way they receive my comments I can just let them do the task I asked them without keeping on watching them . I like cooking very much and I think that there are some activities that we could do in the kitcken , like baking cookies or making fresh bread . What I liked most was that you think you know what is going to happen , but to your surprise , it always turns out to be something unexcepted . Despite the fact that there is n't any holywood star , all the characters are played very believably and some scenes wo n't let you sleep . My fovourite place is the beach that is near , just about 20 miles away from my flat . In toward to the modernization of life and technology , people believe in different perspectives of their way of life , but the majority of ones are totally utopic . Actually , we have a lot of problems with traffic : lots of carriages on the railway and they are n't running ; the number of cars in the street causes pollution ; crawded railways cause a late arrival . We descovery , in this context , special diseases caused by traffic : stress , violence , pollution , lack of safety , and so on . If public transport were of higher quality , faster and with lower fares , the majority of citizens would prefer it : it is calmer to relax and read a newpaper or a magazine during the journey on mass transport than in indiivdual transport ; moreover , the time spent to go and come back would be reduced , because it promotes fewer carriages on the railway . In the morning , we went to Ocean Park , we saw dolphins , cats , horses and many other animals . In the afternoon , we went on the rollar coaster . I screamed at the top of my voice and called for help . Actually , I hate riding on rollar coster . We played mind train , punch , and a lot of other games . At the end of the day I was running out of gas , because I was too tired to walk any further . It has both advantages and disadavantages . But why did I write this article about someone who seems to be a simple guitarist . The reason is just one : the life of this man who one day just disapper from the fanactics ' sight . On April 2014 he was unable to give a performans . On sepmtember 2014 , a note was released and published on AC / DC 's web page . The note said : " Malcolm is taking a break from the band due to ill health " . We are not alone . We live with people whome are family for us . Television and other things invented by tecnhology are part of our lives . I think every family has got a television in their own home and , for example , I have 4 televions in mine . There are a lot of interesting TV programs where we can learn something and there are also intriging television programs . It is not the best thing for our eyesight and our helth . In general , I think our technology is not the best thing for our health and TV and other similar things are responsable for our problems with helth and eyesight . Laura , Adriana and me ( María ) love being a little bit cheecky , in a good way . I rememmber , because we won . Byt when I understood how much happiness this game gives me , I started more running and training . not belive in yourself . I would like to inform about recorrection of my family name in the result sheet . Could you please recorrection my family name . Sport is very importatnt for our bodies . It has many benefits to emprove ourselves and give us self - confidence , so we should practise any sport we love because it can change our minds for the better . About me . I like playing volleyball and I enjoy thes sport when I play it because of its being useful for my body . In Polen we have a lot of interesting places to visit . Polen is an amazing and interesting country . If you have working in Polen , the best way is job on holiday . Every month , Huang Ji Huang always have a special offer for their cutomer , and for this month Huang Ji Huang will give a 20% discount to customers who spend 500 IDR or more , for complete informatioj you can check on the website or call the restaurant . I hope it will hepls you . Michel arrived home earlier that day , and when he oppen his door , he saw That can be annoyand . This is good , because sales mever went down . I think my town really takes care of the environment , because there are a lot of parks in this town and they are very clean . I think almost everyone loves parks , because a lot of people go to the park and have lunch , picnic , do excersise , nap etc . There are many sports grounds , for example , tennis cort , football pitches and play equipment for children , so I think my town takes care of the environment . That means everyone will be able to the in be best condition in both mind and body a for long time . Generally , sports are growing our minds continously . My favourite soap opera is " Friends " . I remember watching it at home at the age of twelve and laughing out lous with my brother . My favoutite character is Joey , who is a silly , innocent man . One of the main advantages of family is the recogniton you are given at a specific age . Children require special attention to grow up well , and that can only be given by family . For instance , homeless children are more likely to fail in their education or job and not adapt to society . Moreover , families play an essential part in protecting their members from bad atmosphere , and it probably reflects on their perfotmance toward country , leading to effictive , creative and useful civilians . The last film I wachd was " The oders " . It is a horror / suspense movie . I was really scared . and the mother thinks she is lyeing . But after a while , she believes her and starts searching for the intruders . Another example of why lives are going to change completely in 50 years is because , also , that connection with other cultures makes people more concerned about their own health , their expectations of life and the way they want to live it , because every day it will be easier to see how much we are hearting the earth , so we will see faster the impacts that this has on our lives . The companies who produce products with harmful ingedients are very powerful , so that this suggestion is very hard to enforce . But one day , two guys with quad bikes saw something wrong , and they sad " what 's that ? " . They saw a dead body . They were skared and ran to ther camp . The other frinds called the police . After two days , the poleas saw somebody at the crime scene . The policeman asked them what they were doing there . He was skard and puzzled . The policeman whs sham feom the gues and he apologised . television serves the dual purposes of entertaining and educating people . In order to cope with the competiting world and get recognized in the corperative world , one must strive hard , which in turn increases their stress levels . Also , I have not had an intitation to an interview yet . The problem is that I am from Poland and I could be in Great Britan from 22 to 25 February . Well , I 'm Sebastian Vega and I 'm studying engeering sustainable development . Nowadays , public transporte is hardly necessary to our life . Consequently , gorvernment has started to support and take care of public transporte . How can we revive public transporte ? They wear black and white clothing like the decoration of the etablissment . Luckily the scouls are closed for ten weeks , so the young girls and boys have a lot of time to spend their Nowadays , there is very little public transpotr . The general public prefer much faster and more convenient ways of traveling around . Though pulic transport is used in mager cities to avoied traffic conjustion , it is wlidly reconizge that public transport is eco - friendly . Many people say that public transport is not confortable . That 's true . From my point of view , a bus is not so unconfortable . Public transport is also used by children like me who want to go to school , high school or to univerity . Finally , I think public transport has a very good future , because it has very good advantages but also some slight disadvantages . It 's also very usefull for some people . In my opinion , public transport should n't dissapear . I would feel more energtic throughout the day If I had some busy or tight - scheduled work . I came across your advertisement for this job and I really think that I would suit this job in every respect , because I have a friendly rapport with people around me . I would be pleased to receive your positive reply . Local Parliament haven't regulated principles or rules for the environment , so ecosystems have been destroyed , rivers are contaminated and pollution has reised in my town . The recycling of plastic , paper , cardboard etc , by the poblation of the biggest neighborhoods in my town is a way to improve the environment . TThe plot of this film is about a 25-year - old naive woman who was living and studying in Taiwan and one night went out clubbing and met a crazy guy who involved her in a seedy drug smuggling racket with a Corean criminal gang that forced her to be a drugs mule . Pople are getting used to driving their own cars ; it provides more confortability , and is more practical . The government are opposed to investing in public infraestructures , because the benefits are lower every year . I think public transport is better for the enviroment because going by public transport reduces the CO2 emissions and removes traffic from the streets . It is a true statement about cars . Travelling by car is so much more convenient and the new tecnologies apply to the People should eat less fast food and do regular exercise to maintain a hgealthy lifestyle . For example , India has a high rate of unemployment , hunger , poverty which leads to an immense embrassment about being Indian . Nowadays , the internet represents the whole of the knowledge that people have collected over the centures . Nowadays , public transportation is available almost all around the planet . We can admit that the transport revolution has been plave in the last century , but due to globalization and technological development , the transport sector is always in continuos transformation . On the other hand we must mention how the plane sector has been growing . Currently it is the most common mode of transport for going away and that also means that shipping manufacture has decreaced deeply , in order to let the plane market blomm . Talking about local transport , we have a lot of choisses like cars , motorbikes , buses , trains , but also , as we were saying , planes . According to the information donne , the most used mode of transport is the car as most families have one , but public transportation is getting more and more common for those who want to preserv the planet and develop other alternatives more respectful of the planet . In conclusion , we are seeing a new tend in transport . Increasingly , they are faster and more developed , with the latest technology included , but in contrast , we find also a contradiction , as we found another trend for tradictional transport which avoids pollution in order to respect the Earth . I agree that communiting by car is easier and faster than most public transportation . However , there are serious problems that come from it . The number of vehicles on the roads keeps increasing and causes congestion and pollution , which are far more severe than the inconvenience caused by public transportation . Thus , I think the future of public transportation will be more proferous . Later , if you want , we could fiand a job for three months . In my opinion , a good job for three months could be as a waiter , because waiters get a lot of money in the three months of the summer . I started my hobby when I was a chid . Maintaing cars is expensive . He jumped out of bed and had a quick shower . There was no time for breakfast so he decided to buy aomething to eat near the office . In spite of that , he was dessed on time . According to the results of a questionnarie ( Houston inhabitants ) most of them play basketball to forget homework , problems and to relax in their free time . Furthermore , they give advice to all those novices at basketball " do n't ever lose the passion " , because if they give up , they wo n't play with the biggest players in the wolrd . In conclusion , the real objective of the questionnarie consists of what the people think about the king sport of the United States of America . I love jogging because it 's a way to stay outdor , immersed in nature . I fell relaxed being alon near montains and snow . Then there are some requirments for printing sheets : color on both sides , special ink and images slightly raised . The most essential and key process is manual inspection of printed sheets with three categories : good quality sheets , patially damaged sheets and bad sheets . The acceptable and not damaged severely sheets are supposed to be packagd and distributed , which means they will be cut into separate bank notes , packed and then dispatched . He had a lot of animals : two dogs and three puppies , four horses , eigth ducks and one cat , Lionel . Lionel was a black and white cat , and he was a very funny , fast and sweet aminal . When I was a little girl I used to play volleyboll and I really liked that . One day , I had a surprise . I met a teacher and he invited me to tranee in a huge gym in a team . Sundully something happened . I needed to work to play my studuies in high school , so life changes anyway . I needed to stop my favourite sport , because I needed to study at that time . It was more important to me . Today I do not play volleyboll anymore , but I really enjoy dancing . Now I can say that it is my favourite , it is all of . The hugest gap is in 1981 , when the cheapest price was combined with the highest expanditure on cigarette packs in the whole interval . In approximately 1998 we can notice an equibrium price at $ 2.75 and an equibrium quantity at 23 billion packs . Fistly , I 'd like to talk about jobs . I think that these are the most important thing to worry about . If our studies get better , we will create more jobs and as a result the economic situation of the country will be better . Moreover , our capacity fosr learning more lenguages seems to be really adequate . Unfortunately , while there are a lot of teenagers that are working really hard , there are others that are all the opposite . I think it is probable that in some years the tecnology could have improved quite a lote , and this is a very powerful advantage for us , the young people . Beacuse we were born in ' the internet generation ' as everyone says , so this aspect might be helpful for us . In conclution , I 've got to say that now we do n't have to worry about the future , we just have to carry on in the present and do the best we can . The flowchat provides an overview of the steps for making bank notes . It shows how bank notes are manufacted from design to a thing we can use . My hieght is about 5.2 , my hair color is dark brown , my eye colour is black and I will be wearing jeans and a long shirt . I will be arriving at 20 past 3 . It was solwly . This makes th I have to say that studying another language gives you more opportunities , because these days you need to know other languages to find a job and be more inteligent than your colleagues to get the work and that 's great . I have recently bought an electric car as a sustitution for my traditional car . Peter looked at his watch and knew that he had to do somethig immediately . After waiting for an hour , the time came and , bravely , with a high confidence level , he walke into the office . Please , write me a list with the words that I need for technical konversation . When you drive your own transport , a car for example , you go to and from a specificlly place , but on a bus , you go to the bus stop and not to your house or school , work ... I 'm studiying medicine . This major is very challenging although stressful , because the self - study is every day and there is a lot of information . Even though there are lots of different possibilities and scholarships , not everydoby can afford them . I am 14 eayrs old . I do n't have a favourite subject , but l like English because we can comunicated all over the world . The names of my best friends are Agustina , Emilia and Micaela . We are strange friends . We anre in 6º together and that 's when we bacame friends . I am applaying for the vacancy in the summer camp . Morocco is a kingdoom , like Spain and England . We have a king and princes . we wnet to the Trocadero . But the best was the Guarda of Bukingham Palace . We travelled to London by plane , but to come back we travelled by car abd boat . People contribuation is very important in this matter . Firstly , hyrid cars are only allowed to be used during weekends . As a result of this , most people do not use their cars all week . This attitude has reduced the enromous amount of smoke pollution from exhaust pipes . Many factories are follwing the regulations and not draining the harmful waste into the water . In addtion to that , recyclable waste is sold and the money is given to the relevant person . Town council not only encourage people to plant trees or garndening , it subsidises their green improvements . In summary , people take many intiative and are moving forward to have a safe and attracticve environment and surrondings . This is an internacional sport because in all parts of world there are people that they play it . Football is a fameous sport . You can whatch it on TV or you can see it live . There ara a lot of level categories , the most fameous categorie is the first . People that play in this categorie are fameous althoug you can see them on TV . If you want to be a big football player , you must practise more time and yoor life should be healthy . This sport is the best in the world and the most fameous annd I think that it is the most enjoyed . The graph given shows the seasonal sales of ice - cream from two places at an Englishl seaside resort from 2012 to 2014 . They are , respectively , an ice - cream van and an indoor public swinmming pool . In the case of the ice - cream van , it saled most in Jul - Sep each year , nearly reaching 5000 dollars and it was still slightly increasing year by year . In the case of the indoor swimming pool , its sales did n't have large changes , it usually saled about 2000 - 3000 dollars ' worth in each season . It usually saled most in Apr - Jun and Oct - Dec and slid to the bottom in Jul - Sep . Ubearable traffic jams and no parking areas would be the main problems . Finally , goberments and society are concerned about the environment and I think that they will decrease levels of pollution and co2 emitions . So , we can say that time is a double - edged sword , either helping you or against you , and the popular saying is right : " do n't put off the work of this day to the next day " because our work will accumulate . Then it will become harder to finish it . To ensure the best use of time in our lives , we need to be punctual . Punctuality avoids tension and trouble . Finally , even scientists have another vision of time . They have discovered that time is the fourst dimension through relativity theory , which exchange all concepts in science . Oh ! My brother , David , is going to get married ! Sorprise ! The diagrams below show how bank notes are made through four steps and how bad shees and notes are disposed of . Thirdly , they print the sheets of bank notes ( 50 banks notes per sheet ) with special ink , where colour is condidered on both sides and images will be slightly raised on the bank notes . It is an egyption movie starring khaled Aboelnaga and some young actors . The action of this film takes place in Alexandrie , a city in Egypt , and it is about some young people who need a good chance to deliver their voices to people as they do n't have much money to produce their own albums , that sort of band is famous among young people and they call it " underground bands " . Their songs give a big concenet to the political and social stituation in Egypt and they became famous after the 25 January revoulation . I choose this movie as it reflects what happens in our society . There is no chance for young people and if they find it , they face a lot of problems to save it and they do n't find time for other activties , and sometimes they work on something which they never learn from or love . In the big cities , they have begun to build green buildings , they use electricial public transport in order not to pollute . The day after , we went to a parfurms and I bought a present for my mum . Nowadays , young people are influenced by the western culture , so they are getting more fashion - conscious . Youngsters are interested in wearing different stylish and colored clothes . They are happy about wearing different color clothes . They do n't want to wear our traditional dress , such as sari , dhoti , choli and many more . They only like to wear shirts , pants , skirts , t - shirts and many more . Youngsters are influenced by watching different programmes on television . Using private veihicles is more convenient for them than using public transport . On the other hand , public transport does n't pollute , but the car pollutes , so , for us , travelling by car is better than travellng by public transport , but for the atmosphere , it is better to travel by public transport than to travel by car . Also , TV , radio , the internet , big companies have adverisement about helping the planet . To turn to , alredy people cook organic food with more natural products without chemicals . Technology is advancing very fast , in the best way . This is good for us because we wiill do a lot of things . As a result of that , we will have a better life , more healty and clean in the coming years . In 1810 , there was a war for indepedent in Mexico and many people fought with other people . For example , Miguel Hidalgo is considered " The father of indepedent " and he fought with the Spanish monarchy . I am an Arsernal fc fan . I have been an arsernal fan since 1999 . Buying cheap footballers has wrecked the arsernal team several times because of the lack of experience of the cheap players . People from diffenrent cultures play in the same club . Nobt all of Russia is always under snow . I will give you a review of a thriller . The thriller is Hunger Games . It is about some capitals and people are choised to play in a game . You have to kill people before they kill you . It is a movie that has suspense , because you want to know how they survive . In the movie , someone loves someone and they protect each other . It is really cute , but in the 3 movies there are bad moments with the family , capitals , friends , etc . This sport is an invidual sport , so you win alone and do n't beat a team , but if you play tournaments in pairs the one who wins is the team . This sport is very famous all over the world , but in Italy it is n't very famous , becouse in Italy soccer is more famous than tennis . But I know that a lot of joung people play tennis . I hope that Italian tennis players will be very famous all over the world in a few years ' time , then you wo n't wait to sign up to a tennis club and you will become a famous tennis player ! I saw your advertisement in a newsapper . I have also been a member of the asocation of toursim and ecology since I was 10 years old . I have worked for a few diffrent companies and asocations in the past . Usually I was a voluteer , but I was also part of a few European Projects where I was paid for my work . My best leisure time activity would be hanging out with my freinds . l like to go to the beach with my freind or alone offen . I enjoy watching people and childern having fun . l like the cool breeze from the oacen while I 'm walking along the shore and listening to my favorite music . I really think taht we should go to that new centre that you wrote about in your last email and do some of the activities . But we could also try the climbing , but it would be better if we could cimbing outside , in the countryside . Emeil me soon and let me know how you are getting on next holidays . I think that public transport is much better for the enviromment than private transport . So I do not agree with this afirmation . In my opinion , travelll by car is much more expensive and harmful to the environment than using public transport . The menú is very well constructed , and the food is based on local products . This problem is that some aparatus are brouken and the paint is bad . For me , the solutions to these problems are esey . With the first problem , you should organis the timetable in order to have one class at a time . And the solution to the second problem is that you should do maintenaits once a year . I look forward to your positive awnser . I am exicited about the idea of being with and interviewing other students from different parts of the world . You do n't need a lot of aquitment , so you do n't have to buy a lot . I think for people who are fat , they can go jogging , but a little bit slowler . Unfortunately , Agatha ca n't find sufficents clues to identify the guilty party . I prefer walking , because the bus , helicomter , and metro are very polluting . The pollution is the firt problem with public transpor While I was ringing the bell , the neighbourh 's dog started to bark . It was like it was waiting for a terrorific event . Nodody opened . When Michael saw me , he openened the door , but straightaway closed the door and at that moment knew he had make a mistake . Saying that , the music that they like is pop music and reggeton as they can dance together . Also , the televisin programmes that they watch are reality shows . In addition , regarding clothes , young people wear a dress , skirp or jeans . We were going to Gdańsk to see the new statium that was built for the UEFA European Championship . In the car park in front of this building a very nice and crazy old man helped us and charged the acumulator in our car . This report shows the sorts of shops which are localizated in Moral de Calatrava . It is thought that Chinnesse shops are the cheapest by far . Something more fashionable : there are also a few clothes shop where you can find a lot of by fashionable Italian and Spanish designes . If you need something for a special event like a wedding , you can go to three shops which are specialited in that . Because of different cultural backgrounds , the speaking styles of internaional students who come from different countries are different . Do you have any Diffrent eating customs ? So . I need more inpormation about eating customs in Diffrent countries . In Korea , we usually ues chopsticks when we eat meals ald spoons as well . So , I have to Leand to use chopsticks to eat . We think it 's Improtant to respect meal manners . All thanks to new technologies , innovation in the field of medicine and new scientific discoveres . To my mind , our lives have been improved in these years by smarphone , satnav , digital TV , the Internet .. First of all , in the next 50 years people 's lives wo n't resamble at all this . Apart from that , I imagine the world with everything automatic , planes that take me from New York to Dubai in three hours and robots instead of weiters in a restaurant . I can not agree with the statment that there is " no future for public transport " given that the premise is " travelling by car is more convenient " . First of all , public transport is rather more convenient than a irvate car . Despite this , the resaturant is decorated with a full set of musical instruments , hung up on the walls . On our earth , Hunderds of millions of prople live . A great number of bulidings stand on the land , even though the place probably shold belong to animals . However , we forget the one importent thing : the earth belongs to all life . Our flats and houses make the other animals lose their homes , and it leads to environmental deteriation . We make the thransport easy . However , we take away other animal s ' lives through carelessness . THE REASON WHY I ADMIRE HIM IS BECAUSE HE WAS DETERMINED WHEN HE WON A SHULARSSHIP TO STUDY MEDICINA IN RUSSIA . HE LIVED THERE FOR 7 YEARS . HE HAD TO LEARN ANOTHER LENGUAGE AND LIVE IN A COUNTRY VERY DIFFERENT TO OURS . NOW , HE IS THE BEST MEDICAL INTERNAL . HE HAS A BEUTIFUL FAMILY . When he was 21 yeasr old , his father told him something about his family 's secret . Just enjoy your life day by day , and be thanksful for an ordinary day . " It is large , clean and comforktable and has air conditioning and internet wifi . It offers many kinds of delicious foods , like meat , cheeken , seafood , and if you want something different , you will find it there . It is suitable for my class because it is different from any other restaurant . These days , computers are multifuncional . I am writing to you about the adverstismen in the Mirrow daily newspaper . I can speak severeal languages , like Spanish , English and Rusian . I am available to start to work inmeditely . Your faitfully . I recommend this sport to everyone , because it could be , as it is for me , a moment to distract you from the world , a moment to spend without thinking about tmorrow . Secondly , other factors have an impact on the behaviour of older children like teenagers , it is not only their parents but other people , who surrond them . It is a time when children must choose which people are good or bad , and which way they will go in a difficult situation . For example , will they drink alcohol or will they have fun without any suplements ? Working as an ITC is very exciting because you need to program everything , it is like a challlenge , although you can do different things . You can be on duty in your house and deal with your boss by cellphone , so do n't be alarmed if your children bother you . It is a little streesfull when you have a lot of work . I hope when I have my job I will be in charge of IT department security . I would like to tell you about this experinece and how much I enjoyed working in there . I was responsible for selling the moive tickets and having a good time . Michael closed the door and kew at that moment he had made a mistake because he lost his house . He mostly played in the number 10 even thouhg he also played in numbers 80 and 45 . Nowadays our world is fighting every day against diferrent problems . One day there is the problem of violence , one day the atmospheric conditions , or many other problems . But I imagine that in the next years we can begin to spread the use of alternative resources , such as eletricity generated by the light of the sun 's rays . Or in addition , we could use the energy generated by the environment , such as the wind or inorgainc waste . The movie is about a doll called Annabelle which was kept in a museum in Conecticut where she is visited by a preist who blesses her twice a month . John From finds the perfect gift for his pregnant wife : a beautifull doll dressed in a wedding dress . Unfortunatelly , in a horribble night , the couple 's house is invided by a Satanist group who attack them and leave just blood behind them . The Satanists invoced an eavel entity that is capabale of the worst things ... Annabelle . After Mia gives birth to her doughter Lilly , Annabelel wants to kill her . Even the preist doesn ' t know how to help the unhappy familly . Everyone is terryfied and finds out that a demon is attached to the doll . The gym has many problems that we are gouing to describe : The first problem is that we do n't have enough aparatous for all of the students . The second problem is about that some aparatous are not working well because the school hasn't done manteinace a since long time ago . For the first problem , in my opinion , the school should buy some other aparatus , because there are not enough for all of the students , I hope my proposal wiil be useful to you . I am also committed to preparing monthly reports for the newspaper supplement " The Voice of Women " which is published by the WATC ; the " Women 's Affairs Technical Committee , and I have a collaboration with Environment and Development , a magazine which is published by the Center for development work " Maan " , annd other websites and news and media organizations . Frist of all , at home we recycle plastic , glass , paper and cartons , oils , clothes , batteries , putting organic matter in a special composting bank so that we avoid burning or burying in excess those scraps with other materials , and , finally , all the other things are sent to a special tip so that we avoid dropping them anywhere . Then , when I have time and I see a senior citizen in the street putting their scraps in the wrong bank , I explain to them how they have to recycle and how important it is for our environment that we carefully recycle . This has some adventeges , such as it being more comfortable and faster . On the other hand , private transport is damaging for the planet and we must take care of the planet . We can help to prevent the pollution of the enviroment if we take public transport , which does n't pollute . At the moment , there is more than one car per person . That is a problem for me because people do n't take care the of envarioment . I am plannning to visit his company . Life is unpredictable and unforseen . But insurance is also a necessity and invetable for peace of mind . It gives us surety to live life securely . It gives competition to national companies . By virtue of which they work properly mannerly and give better option to policy holders . People can always buy a nominal premium we should inform them about the types of insurance as well as the benefits of insurancce . It 's a very mooving book , but it is n't difficult . I think it 's for teenagers , but it is also good for adults . All over the world , people always need advice to keep looking after their environments . First , the municipal should do workshops in schools and universities providing students with tips that should help us to make our environment clean . Second , they should run awareness campaigns about the environment ; for example , telling people to put their rubbish in waste papre baskets , which helps workers to recycle it easily . Finally , to stay healthy , we need a healthy environment . Sundly , a krav maga class started in a gym close to my house . Diabetes is an increase of glucosa in the blood , There are two types , first Diabetes Type 1 which is predent in children , the pacient needs insuline every day . Also , this diabetes is caused by the destruction of the insuline released by the person 's immuny siste . Diabetes Type 2 is present in adults ; the insuline is generated but it does not work in the body , so the amounts of glucose are stored in the body . So it is necessary to eat vegetables and fruist and also to do ejercises . At the weekend he usually plays football or basketball and this year he is learning how to roch climb . After the examns finished , I went home and had nothing to do , so I thought that I needed to watch my dramas because it was a week since I had watched them due to the exam week . I was so angre , because I was finishing the puzzle and five pieces were missing . So I began to search the whole house for the five pieces but did n't find them . It was destroyed by a vulcanic eruption in 75 BC . Vesuvium - this is the vulcano 's name - covered it with a lot of ash so that walls , houses , food , clothes , bodies of citizens were preserved as they were . In addition , it is possible to book special tours in which there are guides dressed like pompei 's citiziens . There is a unique athmosphere ! So , I think the government should have to draw up a proposal to solve the problems between the use for urban areas and counry . Hi ! My name is Cátia and I am a student of electrical engeneering . I am in the third year at university , I do n't know what the Master 's will be that I am going to do , but I want a Master 's relationed to programming . I want to write a review of my book about Nigeria and read another book about robbots and their mechanisms . In the first place , I think that you must look on the internet . You will see diferents cities of this country and you can choose the best . In my opinion , you must go to Madrid or Barcelona because they are the most atractives . Peter looked at his watch and knew that he had to do something immediatele . He had forggoten to go to his English classes . But he did not realise something . His little brother was watching him througt the window . I think that public transport is always going to be very important in our life , because not all people have the possibility to buy a car , and because public transport is less expensive than a car . So for that reason , public transport in the future could exist , because public transport is a necesity all over the world , not only because of money , but also for the facility to take a bus or any other public transport . I do n't know is n't an anwer . After an hour , the dog was vaccined and taken home , but his mother needed a bottle of milk . First , I want to introducude myself . I am a young woman with a melancoly character . I love bwrite but I am not confidance about my grammar . I have no idea after this sentense . Thereore , public transportation is the future and more and more people will be using the metro , publis buses etc . Working in your own company is very challenging because you deal with a lot of areas , manage all departments and learn about business , management , economics , sales , engineering , tecnical support and other skills . You are responsible for your workers and customer satisfaccion . However , it is very satisfying to see how your own company is growing and your customers returning because they loved your work . I started to play it when I was twuelve years old and these days I still love this sport . At some point , you wish it was all an illusio . You need a time machine that makes it possible to go back in time to when you could see the purity of life .. I have personally picked up information I would not have come accross otherwise . For example , I have been able to learn that the new BMW seven series , has ambient lighting , it can pull in and out of the garage at the touch of a button , it 's computerised system can read different road surfaces and adapt it s driving . Those are the main reasons that could make public transport diseappear . Firstly , it is a good idea for young children to do physical activity . That is the first step to doing exercise , then competing in sports will encourage competitior to make an extra effort . In addition , stress is a clear disadvantage of competing , because competitiors are trying to win and this can frustrates . Finally , I think that competing in sports has some benefits and disadvantages , but when it is controlated there are some benefits that help you in your whole life . Second is to prepare metal plates using qulified machinists . If the sheet is good or partialy damaged , it can be packed and delivered by veichals after being cutted into separate notes . I advise peolpe to start this sport , because it is complete and makes your mind and body feel very good . When I was fourteen years old , I won a championchip because , in that period , I swam as a competitive atlet . It was a real satisfation and I was happy . Michael is a 22-year - old man , he has studied for a degree in electrical engenieer and now he wants to put his knowledge into practice . He went to buy a newspaper to search for a job . He looked at all the advertisements but he never found the one he nedded . In contrast , you could suffer some nasty cuts or , though , be sunburnst . I used to live in assistent house . It was the first place where I lived in Tijuana , then I moved to an aparment with two friends . The garbage truck picks up paper once a week , plastic two times per month and undiferretiated three times a week for all people who live in my country . It is true that there are a lot of users that want to use a car and that number is growing . There are also a lot of people that do n't have the posibility to have a car and some use public transportation for many reasons , like the price , because it is easier to get to the place by public transportation rather than a car , or because of the traffic . Sometimes it is so exhausting for people to drive for many hours and even sometimes public transportation is faster . Secondly , there is a programme with the water company to cut down on the use of water by 50% using a recycling water treatment and recirculating to the house without dumping the wasten and so saving our planet . I strongly believe that grammar is not the most important element for speaking English . If you know grammar , you only know certain rules for writing , but I think that speaking is more important than writing , because when you go to any place in the world , you have to be prepared to talk and understand whatever they say to you . In this part you may notice that if you do n't know vocabulary , you wo n't unsderstand anything . But here is another topic . Whether you understand or not , you have to notice the way that people talk to you , and try to understand what the person is trying to say . I enojoy this because I like it . I see myself as a perfect candidate for this positiona . I live in one of the most beautiful countries - Ukrane . When I was at school my friends and I attended unior swimming school . My friend and I always had ice creame and fun after training . Nowadays , the obtion of broadening the mind while traveling is very commun . Apart from that , you see new places and you have fun . You also learn about other cultures , historical facts , you also lern to respect other people and thirs costums . In addition , you do n't think about your problems and the only thnig that you do is have fun and do what you whant to do . Besides , you see new worlds and thirs ways of life and that helps to open your mind , to see the world in another way . In conclusion , I think that it is the best way to opemn your mindn . Not the only way , but yes , the best way . I would like to recoomand friends to visit Italy . So if you want to visit any country , I 'm going to recoomend Italy . This afirmation : travelling by car is so much more convenient , says everything . For example , if we think of the time we spend on waiting for a bus to arrive at our destination , and the traffic is one of a lot of things that makes everyone prefer to buy a car . It is more practical and faster . Do n't forget the cust . When my sisters are married they have one or two children at most . I think the Egyption family has become simller with the passage of time . Finally , the consecuense of cocaine is death . If you inhale cocaine all the time or a lot , you will die prematurely . We enjoyed swimming in the sea , sunbathing , having a barbacue and seeing the sunset . Young people want to find a good job here , but they are working in MacDonald 's or burguer king for a low salary . Television plays an essential part in our life ; we turn it on nearly every day , since it can make life more interseting . There are two pionts to prove it . For one , a show broadcast on television may enlight us and give us some enlightenment . From : horses , steam vehicle , first petrol and gas car to future cars when the fuel will be electricty . My hoby But now I really enjoyed it , and my best friend bought me a ticket to a theatre to see the musical show , which was amazing . For s cuople of hours , I did n't move . It was a brilliant present . In 1994 , The Scream , one of the most expensive paintings in the worls , was stolen from the National Gallery of Oslo ( Norway ) . When he stole the painting he wrote a note sayng : " thank you for your good security " and when he was arrested he declare that it was very easy to steal the painting . There are mainly 4 stepts : design , preparation , printing and inspecting . This essay will explain these different stept . Firstly , personnel design the background colour , the artwork and the scuriity features on the bank notes , which is also done in process of other card , such , such as notes for supermarkets . After sheets of bank notes are printed , there are differences and specials for it , it uses special ink , and prints colors on both sides , and images are slightly rised . Finally , inspectors at the bank manually check all printing sheets and devid them into three categories : " bad sheets " are sent for disposal , where things are sercurely destroyed ; " Good quality sheets " will go for packaging and distribution , where sheets are cut , packed and dispatched . However , sheets that are " partally damaged " will be inspected again and separated into good and bad sheets and sent for further actions . I 'd like to wtite on this subject because it 's a very importnant topic . I enjoy it when I watch it on TV or when I attend it in the stade & supporte my team with my flag & cheers . I advise anyone who dreams of being a member of the most famous teams to work on hisself a lot and play football a lot to be profectional in this sport and show a lot of matches & followed by captain supervised on him When you have the desire to do something , somehing you always dreamt of achieving , something touches you inside not only when you do it , but also when you think about it . First , this kind of advertisement should be forbiden on account of the fact that young children are still very vulnerable . Kids around these ages ( 2 to 5 years old ) do not have a mature critical sense and anything can easyly persuade them . In conclusion , I am strongly in favour of this statement . Advertisements for young kids , not only upto 5 but upto 8 years old should be forbiden because of the kid 's vulnerability and the risk to their parents ' relationships with them . I am writing in response to yor advertisement which I saw in " The Daily Magazine " last week . I am a twenty - year - old student currenly studying to be a chef . If you need any further information , please do not hesitate in conctact me . Nemo 's father knowns a fish called Doris that wanted to helped him . They cross all the ocean to go to Nemo 's location to save him , while Nemo tries to survive in a dentist 's house . In the following paragraphs , I am going to analyze these issuses in a detailed way to provide a solution . I like volei because it is part of my life and of the life of my mother . It is my favorite sport , but I like other sports too , same I do n't play volei because I 'm bad , and my friends that I know , do n't like people who are bad at volei . But today , things are changing and technology plays a significant role in our lives . The automobile industry increased its vertical and having a car has become a necessity rather than a luxory . These days a lot of children wish to be professional players and they practise this sport all the time and everywhere to improve their techinique . The diagramm shows the development from 1998 to 2014 . At Easter time , the important thing is to consecrate Christian tradition . In contrast , the pagan spring festival does n't focous on consecration but rather on celebration . Not all people can afford to make journeys by car . A car is easy and cozy also , but public transprt is fair and is very affordable for all clasess of people . Public transport mainly means public bus . People used to travell long disistance by publis bus . It is possible to carry large numbers of people to different places by bus . Although I knew that there was some conflication between England and Scotland , the vote really shocked me . I have been travelling with both for yeras , and I reckon everyone ends up needing public transport one day or another . My favourite sport is soccer , because it is the most popular sport in the worl . But every time , I get trubbel . The hudsband of Grace is called Charles . Her sons have a problem which means that they ca n't look at natural light , and one day , Grace got up because her children were shouting and crying . So she went to their bedroom and the courtins were not there . So she went to the other room and the courtins also were not there . So she starts getting more and more nervous . She goes and talks to the servants , and she gets very angry and she tells them to get out of her house and they do not care so she picks up a gun and the old lady returns her keys . MOTASSEM is nice and a lovely fiance . He loves his job as he is patient when doing his jop . he is a hard worker and he has an amazing laugh . Nowdays , the number of endangered species has increased . But a lot of people say that a zoo can protect endagered species from illegal poachers . To sum up , there are a lot of cleary strong arguments against keeping animals in zoos . In my opinion , people should bulid some kinds of wildlife parks . This solution will allow It 's a really expensive sollution , but we must do that for The charts below give information about the most importent reasons for studying among students of different age groups and the amount of support they received from employers . The first chart is the resons for studying according to age of student . For carreer has 80% ; under 26 years old students selected it . For the over 49 years olds , only 20% of people selected it ; but if you compare this with interest , it is totoly different ; under 26 years old have only 10% ; but over 49 years olds have 70% . The other chart is about employer support . Under 26 years old is the highest because it is almost 70% , the scentd higterst is aged 26 - 29 years old ; it has 50% ; the lowerst is 35% and the age of the group is 30 - 39 years old . You can visit the old city and see old buildings and the castel , you can see the beautiful view from bridges over the water . is n't good for stydents . First of all , by getting students out of the classroom , students take a breack from the school routine . Fythermore , going on field trips gives students a chance to try things for themshelves . In adition , field trips are an important part of our school activities . Unfortuntely , I saw you last many days ago . My flatmatter is my best friend today . Susan told me that you need to khonw a couple of things before your visit to Spain . At that moment , he knew his decision was going to afect his whole life . When he was scaping from the prison , he bumped into an old friend callled Charlie . Why do I enjoy my favouite sport ? I love it when the temperatur is a little bit cold , but not too much . But there 's a differenc between eating a good meal , and eating by the way . They were talking about their lives and he remembered how he met her on the bus . Maybe she had always been the woman of his life . He looked at her eyes and smile he wanted to ask her whether if it was not too late to satart to get to know her . But he decided to leave the pub . He walked to the exit . All in all , I stil had a memorable vacation . In addition , there is a small blackboard for my littel brother because my mother wants my prother to learn Arabic and English letters . My country is a very interesting place . We have a lot of ancient and mistyc places . I think you could n't work in my country , because it 's illegal for foreiners . The town hall put containers for trash in the streets and the workers from the tomw hall clean the streets . To begin with , nowadays more and more people prefer trevelling by car rather than by bus or train . In the end , I want to tell you that we are not robots . Everyone deservs what they want . I like public transport and I love my planet . I think the best method for reducing polucion annonced the way they take care of the town . My aprtment is very beautiful . It has some disadvantages like , it hasn't a praivte parking lot . Finally , my apartment is very beautiful , and it has a lot more advantages than its disadvatages . There are various kinds of different things that happen in peoele 's lives , some may be normal and nothing special , while others may be so meaningful and unforgettable that you will remerber them for a long time . Eventually , I was third in the comtest . The most important thing is that you can learn a valueabe lesson from failure . Resolve/ dertermine / insistence I like how the players move around the court and how the audience applaused them every time they win a point . Although I 'm not on the court , I can feel the feeling of the game . It 's really awesome . Once in a while , I enjoy watching tennis when there is a competition or tournament , besides watching and enjoying it , I can also learn how real the game is , what its rules were or what happens when they yell at the jumpire for no reason . You can learn all these details and wait for a future day to put them into practice , or helping the players is one of the things that I want to make real . Público transportation is excellent ; you sabe money , take care of the environment and make friemds . On the other hand , she has never been a talktive girl , so it 's usually me who is always talking a lot . It is conveninet to travel by private car everyone can afford it , so that everyone has a private car nowadays . Some people suggest private cars are going to replace public transport . For these reasons , it is unlikly there is no future for public transport . Alison felt desesparate . She noticed that her husband 's car keys were in her house , so he was walking or someone had picked him up . She picked up the phone and she called all his group of friends . Nobody knew anything and now they were scaried . My favorite sport is footboll . In my opinión , if you want to start to do this sport you could write a team . Moreover , I think that it is good because it could help you to lose weight . On one hand , public transport is good because it does n't pollute so much and you can muve around the whole city . We do n't use so much petroll as if each passenger were to use their own private transport . In conclusion , public transport is very good and if it desapear it will be a big problem . It is true that sometimes you need private transport , but apart from that , public transport is used a lot by people of all ages . I 'm a comitted , responsable , and organized person . First I would like to intoduce myself . My name is Joaquín Gutiérrez and I want to tell you why my favourite sport is football , which is a sport that I have practiced since I was six years old . I like this sport very much because it must be played with a gruop of people and is more fun than other sports which you play alone with one other opponent , like tennis . Currently , I play in the first divission of the club River PLate from Argentina . In my opinion , people will travel by public transport more frenquely , because this type of transport is less expensive , more reliable and even more environmentally friendly than travelling by car . My trust in futuric technology is so enormous that I hope there will be new environmentally friendly and cheaper ways to travel around our world . At 2 p.m. my mum decided to go to the hospital because I could n't undestood anything and I could n't talk . We do not respect traffic rules and drive only with the intention of going as fast as possible to our destination . This often causes traffict accidente and congestion . For this reason , people are becoming acure of the terrible problem and are learning and teaching vial culture to new generations . In addition , public institucions are promoting this and also private companies create advertising to increase awereness . This is due to the fact that Lima , in the beginning , did not have a plan to desing its public roads and highways , and it has only been improvising to build them without any criteria to transport its population . I usually take public transport to go to the University , because public trasnport is cheaper than a car . ( 5 ) establish a mechanism in collaboratedly exploring and developing resources in the East China Sea . As he got closer , he saw a lot of people around tha Kabaa . My favourite sport is badminton and I always get up early to play it every day . I like it becasue it is the best way to lose weight and improve your health ; better than medicine . The purpose of this propossal is to provide details about shopping facilities in my hometown , Vung Tau , and give some recommendations for tourists . They offer a wide range of choices , from souvenir items such as pictures and jewellries to local specialities , at a reasonble price to suit the interests of different people . I assure you that there should be high - quality and varied products there satisying your needs . I highly recommend local shops to our tuorists for their cheap prices and the hospitable manners of residents here . My hobbies are meeting Friends and hanging out with them or playing baskteball in my spare time . Peolple do n't use the five seats of the car to travel . From the point of view of the invaironment , this is a bad idea , because it uses a lot of gas per person . A new problem is in the small towns , because they are not disigned to accommodate a lot of cars . I think that the main problem with piblic transport is the communications between villages and small towns , because they only exists between the big cities . It is a problem of mentality . If we had been born into a society that used public pranspor , I think that would be better and we would use it normally . There are so many educacionals programs , like Animal Planet , and so many others . Sometimes , some TV shows are so great that they help you in certain classes , for example , Animal Plante can help you in biology . The History Channel can help in history , etc ... In my opinion , television can be as good as books , and can also be a form of learning as good as only reading books , because TV is something fun , so you can learn and have fun at the same time . I am writing in response to your adversiment for SUMMER CAMPS . I worked as an assintant chef in a Lagunak Restaurant last summer . I worked in another restaurant in London , but I would like to look after children , because I have studied to be a teacher . yors faithfully . Here in Brazil , it is very difficult care about it because it demands serious action and skills from our gorvernants , which unfortunatuly wo n't happen soon . And why am I talking about it ? I am talking about it because the foundation of environmental protection is our minset . Just with knowledge and information , we will be able to manage actions to save , protect and improve the environment , and instead we have the current result . This aphirism is famous and true . People try to build big and laxuries houses but they forgot about the main thing . We can choose expencive things for the interior , n the town , he tries to make people aware of the sitiations and they take care of the environment . In my opinion , we should be conciencious and stop it . If we do n't stop it , after , it will be too late . The best present that I have received was ... I do n't remebmer ! Another thing , in my home there are some rules : my brother and I tidy our room , we clean the bathroom after we use it , we ca n't eat on the sofà .. . Let us examine the aventadges and disavandges Nowadays , people have a stressfull life , so we ca n't spend time waiting for public transport . The Scorch Trials is one of the best films and thrillers that I have ever seen . It is so exciting to see all the thing that they do to survive in the outside world with all those people that are infected with a virus and the reason why they put them in the glade for them to be inmune if some sick person bites them . I think I am the right personn for this job because I have a lot of motivation and a good level of English . Firstly , Django Unchained reminds us of the hard life suffered by black people in the past through a great introduction without dialogues , where black people were unchained while they came back to be sold to an owner farm . This was matched with an amanzing soundtrack as identity Tarantino 's films . In my opinion , volleyball must then be considered among high - risk sports according to the frequency and gravity of our surgical findings . My advice for someone who is starting this sport is that you will be refreshed after you play this game and it makes you do your work in a relaxetion way . It is upstearm that irrigates our economic life , and there is no doubt that negligence has the ability to destroy many good aspects of our lives , and our government is doing its best to put an end to negligence , but we also must coparation to save our town . On the one hand , we must Presentation an awareness program for all people , There is no future for public transport , becasue travelling by car is so much more convenient . I do not agree with this statement becasue in big cities there are a lot of cars . If all the people in a city use their own car at the same time , there will be a huge traffic jam , so travelling by car is n't much more convenient in this situation . My email adress is xxxxxxxx . As a result , I think that I have some intellent for swimming . From then on , I felt my disease decreasind and feel relax . I am prepared for long working hours . That 's no problem for me , because I am young and I like working and spending timee with people . Although some people prefer individuIal games , I prefer team games . They must know , people will identifie them , walking along the street . I would like to tell you that I have done a course on which I learnt to organise all kinds of activities for children , from canoeing to swimming competitions . Also , I worked in a summer camp last yaer , where I could put all the things that I had learnt into practise and it was a very pleasant experience which I would like to have again . I look forward to heraing from you as soon as possible . In my opinion , music like this should be diplayed more often on the radio and other mass media . I play football for Waitakere college school first eleven as a deffender and I enjoy playing in that position because it is easy for me to play . When we arrived there in July last summer , the owners welcame us with a magnificent basket of fresh fruits in the room and a variety of drinks in the fridge , all included in the room 's fee . There is perhaps notthing more pleasant than when your favourite sport is as healthy as it is enjoyable . A lot of children usually do n't know how to study Engilsh , and you could help them to get there . The other team was profesional , they had won many competitions , they were really good , but Tom and I knew that we could win . I 'm the rigt person for the job because I 'm reliable and experienced . Sport is an important thing for all of us because it helps us avoid disease and become healthier . My favuorit sport is swimming , so practising this kind of sport is the best because it helps me feel fresh and relaxed . Moreover , daily excrsise is a very good idea which helps us to avoid becoming overweight and to keep our body healthier . So I always want to advise people to practise this sport or other knids of sports to avoid diseases . Dear Sir or Madan , Called in a malicious way , there are 6 floors for jewerly , clothes , accessories , gadgets , books etc . Being in the centre of Bucharest , you can go outside , in the downtown area to consider visiting new cultural things while shopping in boutiques and relaxing on a terasse with a cool lemonade . Although using your own car is betten for moving around the city , public transport has been shown to be a good option for travelling long distances at a low cost and , depending on its quality , also low budget . Your health needs calm , friendship , happiness ... You must keep in contact with your friends and spend time with yourself ( do not forget your hobbies and learn new things ) and your familiy . It follows that , on the one hand , I have extensive knowledge of how to be on good terms with different people and , on the other hand , I have a perfect coomand of English . In addition , as I have been determined to build my career as a teacher since my childhood and , moreover , I definetely have a way with children of any age , after graduation I gained experience at university and in a local school . I feel these skills would allow me to perform effectively in this posistion . A wise man in the past said once , " If you want to be a good badminton player you need the nerves of a climer , the strength of a shot putter , the condition of a marathon runner and the elegance and cleverness of a fencer . " It 's exhausing and you have to move fast to get every shuttlecock . You have to be competitiv ! My coatch was very nice and mostly we played in teams . I had a lot of fun at the sommer sports camps and I made a lot of friends . Envide your friends from school or work . Practice together with people of your age . It is a lot of fun und you will get better soon . Every lost game gives me more motivation to practice harder and every won game makes me proude and happy about all the hard work that I have done in the last few mounth . Particularly in Barcelona , the trouble was that they could fish in the sea but there was n't an aproppiate place to keep the fish , so they could n't eat it one or two days later . You start living on your own , make your own decisios and plan your future . The year off gives them apportunities to get a job . You can get to know other countires and new individuals . If you have any questions , please do n't hesitate to cantact me . I am wrtitting this letter in response to the job advertisement for working in a summer camp in which I am quite interested . Since many European tourists like to have their holidays on the beach enjoying the sunshine and also discovering the historical remanings from the past , Antalya ( Turkey ) is the best city to work in . Finally , I personally disagree with cyberschol . Cyberschol are n't interested in health and safety issues ! In fact , it ccan help them to speak with their friends more easily . In conclusion , so family and friends are very necessaris in your life . I remember that you are fascinat by nature , so you could go to Guembe to eat delicious typical food . You will see an amazing view and a lot of kinds of tiny butterfly , there are amount of variety . When it 's cold , I always go to a covered swimming pool , and when the weather is warm or hot and the sun is shining , I always go to a reservoar . In present - day society , sustanable development is of paramount importance as our environment is being destroyed at a fast rate . It is definitely not envirnmentally friendly . And last but not the least , public transport is muche safer than private transport , because it transports many more people , and so , there is more cauttion . Film stars and politicans are interesting to people because of their talents and special abilities . On the one hand , famous people try to hide thier lives from journalists . In everyday life , the internet has become one of the most important things and it is becoming more and more influental . So , I enjoy running alone or with friends , because this sport has a lot of possibilies , more than I thought when I started to run after finishing High School . This has resulted in only very needy people using public transport , and the vast majority of people still use their personal automovile , with incovemiences and safety being the excuse . In the past , I tried to play basketball , tennis , ping pong and so on , but the outcome made me depressed and less confedent . The first point which I would like to menchioned is cost . That could be frustrating , especialy when you have a long journey and you need to spend long hours driving . Finaly , the word conviniend means something different for everyone . For one person it would be option that you have a car which is parked along your road or on your drivway and at any time you can go wherever you want , for the other , it would be a pleasur that they coud enjoy the trip without thinking about any car issues . They are faitfull that they could meet some new people and take part in others ' lives . But there are some disadvantages , like stairs because we are on the second floor . We would like to keep fit but we have to use too many strairs to reach our classroom and that 's so annoying sometimes . Travelling could be a good way to improve your lenguage and to get to know Italy better . Meaybe you 'll choose to attend univeristy in one of these cities ! It is a turist country , you could work as a waiter in my city . As it is a movie related to magic tricks , when a sequence is played and it seems simple and easily understanable , you know that , in fact , it is not . Long after that , because I had such a natural talent at engeneering , I began to write books and essays about everything realted to my job . InBy February we 'll have finished our exams and we 'll have more free time . Birdwathcing really relaxes me and brings me closer to nature . Do n't you know what to say in the presence of a huge audence ? The new activity which I have thought could be organised and could have success is called " The Club of dicussion " . In addition , it could be interesting , although you do n't have to do physical actitivy , because your ability to edit a speech , support an idea , have connected speech will be improved by this kind of activity . In conclusion , making a speech contributes to our social relasionships and it allows us to define our personality . We found very cosy and traditional houses , the market was very populary , with a lot of people walking around , and the people were very nice to us . For this reason , when a woman and her family decided to live a whole month without plastic they had to change treir lifestyle . So they would help to solve a bit the problem fot the UK 's recycling system . Such us yoghorts , biscuits , etc , was wrapped in plastic . However , I also think that it 's important to be concient of environmental concernts , so some ideas like this could be good to reduce rubbish . If someone asks me what is the most important thing to start practicing ( or even following ) this terrific sport , I 'd say it 's passion for wearing your club 's jersey and respect for your adversaries . For years of wars and difficult situations , history was creating people 's beliefs and convintions . Conclusions and recommendatios I really like reading many kinds of books , magazines , etc . When the weather is bad , I love sitting in my favorite armchaire , near the fire place and reading . I enioy hearing the rain while I am reading at home . Howhever , I like walking very much , too . I prefer comedy and romance , but I like triller and drama too . Finally , I enioy taking care of my garden , where there are many flowerbeds with a lot of different kinds of flowers . We like the sea very much , so we looked to rent a little cottage in August in a lovely place in Sardegna . I was looking forward to going to the beach and swimming in that wonderful wather . By recycling , by tryng to reduce the traffic , walking and cycling . That also impruves our health and fitness . People of all eages must help to clean up the city and protect the wildlife . At school , children are tauhgt about how to make apropiated use of electricity . There also a lot of plans for the futre , to start using electric cars . I 'm chatolic and I play the guitar in the Church choir . Each year , in the summer holiday , I 've worked in the " Summer camp " organised in our neighboorhood , both helping in the kitchens and organising sports and various activities for children between 6 and 13 years old . The perfect atmosphere for me is a modern building that has different rooms with different styles : modern , classical , gotic , etc . However , not all is OK . A trip to Italy is so expensive and many clasmates ca n't afford it . At that moment , the phone started to ring , I pick it up ... but no one answeared me when I asked ' Who is that ? ' . I liked this shopping centre because it has a lot of women 's shops inside , the facilities are quite atracctive and very up - to - date , the green zones are broad and it is supplied with a lot of wooden benches . It brings you directly to my subburn . Using this transport I will go to New Zeland then Australia and other countries . Travelling by car is muc more convenient , as many people say , but public transport is much better for the environment . In my opinion , it is one of the healthiest sports there are beacuse you can train not only your body but you can also develop your breathing . I think it is a really good idea to use stem cells in order to save other people 's lives , even if they come from an abroted foetus . There are a lot of people in this world that are ill and need stem cells in their healing process , so parents that had an abroted foetus should let the scientists and the doctors use the stem cells in their research and help other people . How are you donig ? I remember you wanted me to tell you about my experience with helping at a concert I went to last month . After some time , I felt sad , because I realised that I would n't be albe to see the band playing on the stage , because I had to stay in front of the entrance . We took some pohotos and got autographs . great starter and when you finish it , they bring you the barbacued meat . Then the main course is the barbacued meat that is very tender and tasty . But , considering the increase in private vehicles in our crowdly overpopulated world , it is recommended by geologists and ecologists that we use public transportation . The family might exist on paper , but not in reality , because each member of the family will be busy and they will just send some masseges from the high - technology phones they 'll have at that time . I know , it sounds boring and pessimistic , but if we do n't change our minds imediately , the future is going to be like that , for sure . Developed countries , Latin America and East Asia are the three regions that show a low percentage of illiterate people , expresed as below 20% , whereas Sub - Saharan Africa , Arab States and South Asia have over 30% of people who do not know to how read and write . There are also places where peolpe can buy the typical clothes ; dark dresses for women or a ' tango hat ' for men . Even if you just want to go shopping for clothes , there are so many places you can go . Palermo is known as a little New York for the disigners and well - known brands , and technology is located in Recoleta . During this day , the students had the oppportunity to hear very interesting things , but not in the same way as if they were in a class during a traditional frontal lesson . I worked at a nursery school in London last summer , which led to the improval of my English skills . On the other hand , you have the public service called Metrobus , and in this case you will hop off the bus a few times . When you arrive you must find the A - line , go to the Patriotismo starion ( C line ) , then go to the delta station and walk to # 76 Acrone Street . If I were you , I would choose the subway because the wearher in Mexico is too hot , so , I think you do n't want to feel the sun after your tiring trip . In the last ten years , Brazil has created a wide range of governamental programmes . Educational and medical assistance , as well as infraestructure improvements are some of the recent advancements . It offers students a unique opportunity to study abroad and aquiring an international standard qualification . I found your addvertisment in the newspaper and I am very interested in working in your summer camps . Suddenly , a thumledown cottage emerged from the darkness . Well , since my chillhood I have always loved weapons . My father gave me my first rifle when I was 7 , but it was n't until I was 15 that I found my real passion , and it was archery . Since that day I am proud to say that I am an archer , and that archery is my favorite sport . After more than seven hundred years , in 1733 , the Roman Catholic bishop 's residence was moved from Cenad to Timisoara , where the first cathedral became the church of jesuists monks . Journalilst and paparazzi constantly follow them and try to catch them in a stupid situation and enhance ath the value of them . Everybody makes mistakes , but their mistakes are wtitten about and known by society , which is unfair and harmful . They ought to apprecciate what they have and stop complaining aboout their life , because there are plenty of people , who dream of being them . Famous people have to notice how much they have , apprecciate it and stop complaining about not having a private life , because it is not such a disaster as they often think . It was reported that for one hundred kilometers , each car consumed ten to thirteen liters of gasoline , and released a certain proportion of air polutted . can also satisfy passengers who can not travel by plane and need to take long - distance jouneys . To summarize , he arranged a meeting with the head of Ferrari and the press because he would like to announce his defenitively Furthermore , as the programme is endorsed by the European Union , the trainee has accident and liabiliy insurance . It was a good experience . The hotel had every comfort you can imagine : a reastaurant , a spa , a gym , indoor and outdoor swimming pools , a beauty center and a church . Efficient sweat expeller socks help one reduce uncomfortability and keep one 's feet at a nice temperature . Players must be considered as a paintor working on a piece of art . It 's not the efford they have applied or all the hopes they had . Their expectations will be considered unuseful . Poeple do n't stare at a painting in a museum thinking how hard the artist tried to do a good job , they will judge only it . So , if someone is ever woundering to whether start playing this sport , they should be aware that lots of people will be expecting them to win . There is a great number of politicians and film stars who are followed by paparazz who are trying to find out more about their private life . There are a lot of places where you could work for a short period of time . Beeing a witress or something like that is well paid and not so dificult to do . I have noumerous reasons why I choose this sport as my favorite . THE STRENGHT OF SPECIAL EFFECTS Taking into consideration our interest in the field of thrillers , under no cicumstances should we miss it ! I like to read too . My favorite type of book is horse books or just random books . It 's hard to explain , but I mean books with everyday action not sciene - fiction or romance . Parkour is a discipline in which the main proporse is to train your body and mind to be able to pass through a point A to point B , in any kind of environment , the safest and fastest way , without causing any harm to your body . Parkour was developed in Lisses , Frace , around the 1980 's . One of the faundations used to develop Parkour was the Natural Method , created by Georges Hébert . Basicaly , the method is based on developing the main foundations of moviment of the human body . These are : swim , run , walk , jump , quadruped moviment , climb , lift things , balance and defend yourself . Raimond Belle was a former Vietnam souldier and worked as a fireman in the French army . The roots of Parkour were developed by him and he taught some Parkour thechniques to the firemen who he used to work with . His son , David Belle , was taught some of the faundations of Parkour too . Some people say that David criated Parkour but , in fact , his father developed all the ideas of the discipline . Parkour is n't just a physical discipline , there is also the philosofical part . Altruism , " be strong to be useful " ( it is actually a frase from the Natural Method ) , develop your body and mind so that , in a dangerous situation , you will be able to save yourself and other people , and so on . Therefore , it is due to its philosofy and the joy that I feel before , during and after a training session , that Parkour is my favorite sport . For me , people have become very lazy and they prefer the car rather than puiblic transport , because you can take the car when you want and go where you want whotout spending hours waiting for the bus . The product will be registered with the Ministry of Helath and Sri Lanka standerds Association and adhere to their rules and regulatiuon for production , storage and distribution . Their opinios varied a bit here . An argument some used was : ' In case we removed this whole industry , then there would be a humangous group of peoole unemployed , and that would be a problem . ' Finally , the Metropolitan Museum of Art is a good place for people who like history , antropology and seeing a lot of types of art . I agree with the statement , that fmous people deserve to have a private life without jouralists following them all the time . Sometimes it happens that journalists write some silly gosspis about famous people which is not true . Altought it does n't mean that the press should write about your private life . And , as a draback of being a celebrity , they are followed by papparazzi almost everywhere . Besides , being foollowed by unknown people must be quite a scary experience . My listening is goood and I can understand . I look forward to hearning from you very soon . If you have any questions , you can mail or contact me . First of all , travelling by car is more expensive than travelling by public transport ; cars have to pay for gas , insurance , repairs , environmnet fees etc ; travelling by public transport is more ecological and cheaper . She kwew that he would be staying away for so long but she would wait . She loved him and no World War was able to separe them , because she was pregnant and this baby was coming . It was a boy and his name was going to be Taylor , just like Jason 's father . Although most tourists come to Pamplona for the famous festival of " Bulls Running on the street " , many become passionite about the cuisine of Navarra . As a result , a few shops such as " LA VINOTECA " and " DELICIUS " are dedicated to selling selected top wines and typical food . There is little doutbt that they will not only find original products , but will also enrich their minds . On the other hand , they are still normal peolple , who have families , partners and friends and they sometimes want to have a few private minutes , without cameras , media , newspapers , flashes and spotlights . Wahat is more , I am sure that most of them do it on purpose because their main aim is famuos . I 'm available every aftenoon from 5 to 8 p.m. , when it is morning in the USA . Of course , some famous people might like this feeling that they are so liked and favourite and those who do n't like it have the posibility to protect their privacy better or more or pretend that journalists following them do n't exist . Nowadays , people care more about themeselves and doing good things is wrong for some of them ! I am really happy you wrote to me for some advice and I am very honourated that you want to spend some time in my country . First , you have to decide if you want to visit the north or the south part of Itlay , because if you do a full immertion tour of the intire Peninsula you will visit only half of all you have to visit . If you like Egyptian history , you can go to Tourin , where you can find a huge and beautiful museum of Ancient Egypt . If you want to visit the south part of Italy , you must start your trip from Florence , the bithplace of the culture . Then you must go down to Rome , the capital city of my country . After you have seen the Coliseum , the Basilic of S.Peter and the Trevi fountain , and so on , you must visit Naples . The idea of finding a job that lasts thre months is great . I think you could work as an entretainer in some tourist villages roun the country . In that way , you colud improve your way to make a relationship with people and it could also be a great help for your theatrical experience . I know that you are a brilliant photographer and that you want to improve your hability , so I think that you could take some photos during your trip and then you could send them to some experts . Let me know if you enjoy yout tour and take lots of photos ( I want to see them soon ) I 'm writing to reply to one of your advertisements publised in the local newspaper last week . I 'm 31 years old , and I have had the priviledge of working as a teacher all my life , so I am an experienced person capable of taking care of children . As well as taking part in activities relating to cookering . At night , the noise was annoiying . I was not able to rest properly . Also , the phone did not work properly , it was imposible to use it to call the receptionist . In addition , the elvetor was out of order . My favorite restaurant is a restaurant in Stockholm at Östermalm called : " New Peeking " . It 's an Asian buffé and they make the best food . My favorite subject in school is probably Swedish , English or biologi . I think that , in particular , spinning is a hard sports activity because when you have spent approximately 1 hour on your bike you 'll probably feel taired . This could be good , allthough some people say we do n't need all this time and we have to work more . Another point is that we can meet friends more or visit our family if we have more free time and that is allways good . In other words , it could be said that if we had more free time , our lives would become better , because we can enjoy ourselves with friends and do thigs with our family . Frome my point of view , having free time is perfect , because we can do more things that we are fond of and our quality of life would increase . I study filology . Now I am working as a jornalist at National Radio . But instead I am writing abour stupid decorations , illnesses and other boring stuff . Well , I have good news for you ! I met a wonderful girl last weeck when I went to the cinema . I want to introduce her assap ! Besides btilliant actors , they have incredible decor and it 's perfectly situated as it is very near to the bus stop . Since graduating from University of Eduaction majoring in business English , I have been working for a food joint stock company on a contract basis . Meeting new people and setting up new social relationships are also the temting point attracting me . In addition , your cafe is conveniently located near my home , which takes about 10 mintues to go to on foot and I have 2 days off a week . That gives me the opportunity to take on a new job . I enjoyed this unforgettable trip to the meseum , and hope you can take time out to go one day ! It requires a vivid imagination to try to put a view of the future . First of all , the means of transport will change . Vehicles will depend mainly on solar energy or nuclear energy . A flying public transport bus will be a fast ride to work . You will need to supply your car with spinache after they invent a spinach - fuelled car . I think that 's the only negatieve point about today 's television , because maybe there 's too much choice ! When we were schoolgerls , we used to spend all our free time together . To find out about other cultures and get new knowledge completly different from school . On the other hand , maybe if we have a break before university , the routine of working and studing every day could break . So when univerity starts , people will become busy , the routine will not be the same , and , as a consequence , the marks will be lower . At first , I did n't belive that this place would be as amazing as she said . It has almost everything that you need in a cafe : comfortable chairs and sofas , beatiful features and really good - tasting coffee that they serve in most of twenty different ways and with all toppings you can think of . Althoug the most important thing is that there were not only friendy staff but they looked like they were having tea in Wonderland , with Alice and the White Rabbit . If TV programmes are a lot of rubbiss , it is because some people prefer them . I had a great time with my friends , but I have a few comments concering the organisation . However , there are a couple of small sugestions . First of all , the vanue itself was very crowded and parking almost impossible to find . I would like to suggest hiring special animators wgo will entertain kids . You should think about reducing proces or offering special discounts , for example , for students . Yours faitfully There , you will see beaultiful cities with European architecture and you will find nice vineyards . Chinese , Spanish and Portuguese . None of those languagues are as popular as English is . Brazillians need to learn English because it opens doors in business and in higher education . Learning English as a foregein language will have a huge impact on brazillians ' professional lives , helping them to get a better position . The brazillian educational system should be aware to develop students ' language skills more . Learning English as a second language will help brazillians to get a better job and have more opportunities in their careers . I love outdoor activities . I have been doing rock climbing for nine years now , and started motocross in 2010 . Also , I consider myself very friendly with children and teenagers . When I was a child , my father and I used to go camping almost every other weekend . That was until four years ago , because he is no longer able to stay out of the city . But he taught me all that I need to know to suvive out there , so , I really know how to do things in the woods . Third , public transportation sucks , when you think about it . You can picture the crowded subways , dirty buses , and the difficulty / hussults of the public transportation transfers in your mind . Secondly , Eveybody seeks safetiy in their lives . Look around you , crimes and death are srounding us . All these people are dreaming of living a peaceful life without all the problems of killing and sadness . For that reason , I beleive that being safe is absloutly better than being sorry . I will always remember my dad telling me to calm down , saying that life will go on and one day all of us will be satsfied with this life . In conclusin , I think that all of us should see through rose -tinted glasses and be happy , because you live a calm life without anything making you sorry . I will start by telling you something about Paula Echevarria . She is a very pretty and famous actress . She also writes a fashion blong . She is 34 years old and she is married to David Bustamente , who is a popular and hadmesome singer in Spain . They have a daughter - her name is Daniela - and they are like a perfect family . Therefore , she has everything good aobut being a celebrity , but the most important is that she is a great person . By increasing the veriety of cars with new technolgy , people 's demand hasnt ' stopped . As technology enhances the life system in any way possible , people become more dependent and ca n't avoid it beacuse of many different attractions that these cars have . Trafic jams will cost a lot , causing problems such as pollution , which certainly causes more health problems and will create expenses not only for us , but for others as well . The solution is public transport again , which increases the pace of life and makes it easy to accsess by subways and special roads . To sum up , as thought cars are too covenient to some extent , but the cost will reduce the benefits . I am writing in response to your advertisment for the job in the USA summer camps . This job would give me the opportunity to pactise my skills and get more experience with children as well . The plot is about a man , Arthur , twenty - five yeras old , who is engaged to a nice girl . The company requested him to go back three days later , so he was looking for a hotel that someone had recomemded him . It is universaly accepted that shopping is not always enjoyable . The doorbell rang insistetly . It was Saturday in the early morning and I was still in bed . What an amazing surprise ! I was very emocional and was about to cry . " In answer to your question about the use of the internet by young people of our age , I think it is very helpful to get information more easily and quiker . Also , it plays a freat role in removing the borders between nations . In a matter of seconds we can now communicate with people around the world , whether for important business matters or just to talk to a friend . Obviously , we can not imagine how much time we spend online , because the whole day we are connected , in our houses , on moviel phones and on computers at work . They have to realice that if they continue eating that way and not doing any exercise they are more likely to have different diseases . When the light sensor is in the shade , the synthesizer emitts a lower pitch , and when the sensor is exposed to light , the synthesizer 's pitch rises . I had to work as a liase with clients as well as the company officials ( since Shriram Law Consultants is a part of the Shriram Group of Companies ) . She explains that in the process of purefication , a large amount of coal and oil is burned , which pollutes factories rather than the environment . He was the pastor of a Bautist Church and he fought against the dicrimination against black people in the Unated States in the 60s . He founded the civil rights movement to free black people from racial segragation and inequality . One of his most famous speeches was " I have a dream " , where he discrives equality in society beetwing waith and black people , where all people can live together . He was murdered in 1968 , in Menphys . He was 39 years old . In the city there are a lot of museums and art galleries , theaters and clubs , a few parks which priveds different events like open - air concerts or public muster - classes . Wtite soon Let us look at an example of a univesity student . The student had a great number of assighment and projects , so he spent more time on accessing the libabry , becoming more ambitious to study books , and using a computer to search the for latest information . Therefore , not only did he get high scores in the reports , having absorbinge a great deal of knowledge at the libabry , but he reduced the study stress and kept healthy at the gym . At university , I also have a lot of assighments , so I like to go to the libabry to study , where it is more quiet , spacious and internet accessible . It is a great life stage , but at the same time , it is difficult . Sometimes teenagers have problems with their families , with themselves . As a result , they do n't know whah to choose . Twenty years ago , no one would have thought of the invention of the iPad or smarthphone and how they could change our lives , but today , these items have become necessities of our daily lives . Nowadays , many people have got into the habit of carrying their smartphones no matter where they go . To begin with , I am a fluent speaker of English . I worked in noumerous camps last summer . As a result , I could be very helpful with oranising sports and activities , but I could also provide assistance in other places , including the kitchen . The crucial point is the transformations and exprerienced contradictions of the characters . In our imperialist and capitalist world , we need more films or arthistic influences which mention the problems of our life and realities . There are such interesting websites and blogs where you can find out something very useful that you would never have expected or , unsurprisingly , missinformation . We know that making social contact can sometimes be a problem for a wide range of people , who sometimes find it a lonely and dauting experience . However , both readers and writers do not only do it in an altruistic and philantropic way , but to get fame and popularity at the same time . Blogs and websites could give them the chance to become famous if they really appeal to a large number of people and they will also be able to earn money thanks to advertising . To clarify what the situation is , it is true that not everybody may be interested in blogs or websites , but the fact is writing or reading a blog can give people a practical way to communicate and share preferencies , beliefs or thoughts . however , more or less reliable . Peter looked at his whach and knew that he had to do something immediately . Jon did n't usually go to the countru , so he did not know how to walk over the stones and he was afraid . After drinking water from the bottle , he fell over on the gress and Peter saw that Jon 's leg was broken . There was a lot of blood and it was then that Peter looked at his whach and knew that he had to do something immediately . I like that book so much because it is pretty realistisk and it could happen in the real world sometime . There you can see dinasours from prehistoric times . It can be amazing to see different sprecies of animals which are no longer living . By visiting museums we can learn interseting details about the history and culture of that society . In addition to having lots of information , we also can have fun seeing interesting things in the museums , such as huge dinasours . You may feel incomplete if you do not visit the museum of the new place you visit . Every day in my town , people talk only about football becouse it can give you a lot of emotions . On the other hand , my advice that I would give to someone who is starting this kind of sport is that he must do it with a lot of responsability and sacrifice if he wants to become another Maradona . In the morning , everyone goes to their job by car , but I think that the real reason for doing this is that we need to do a lot of things durind the day and with public transport we spend more time than doing the same with our own vehicle . For example , during a foorball match , if you make a mistake it is n't too important because you have a team which can remedy it , evin if ypu do nothing . The most interesting is the art gallery , Oko Miasta , which is located in the city centrr . What 's more , in the middle of the biulding , there is a small library where people usually buy the latest books and papers . Furthermore , in the biulding of the art gallery there is a club Oko . Not only is it the popular place among young Polish citizens , but it is also really extraodrinary : people can walk the red carpet and drink the most famous drinks . Grass hockey is a popular sport practiced by people of all ages and it 's played more in countries like Britain , Argentina or Germany , than in Spain or Italy . In my opinion , grass hockey is the best sport you can play as it requieres you to be really focused on hitting the ball correctly . Firstly , Disney is not an ordinary destination like beaches or mountains , it is a place that requireds a different means of transport since it is a long way away . The vacatios starts when the plane takes off and nerves and happiness blend , creating an experience you will never forget . When the plane arrives at the airport in Miami , you can appreciate the beautiful viwe that thid place offers . Each one has a different topic and amazing rides perfect for adolecents . To conclude , Disney has so many facilities that it is impossible to get bord , you can relax in your hotel and have an unforgettable time on the roller - coasters . He is a soilder in the military in Thun , where he works as a teacher . Then Robert smailed and giving his hand towards hers , said : ' I have missed you a lot ' . In addtion , farmers , huntsmen , fishermen and any other people that are used to living in such areas have to move to cities and try to find new jobs . Meanwhile , wild animals which have forests and wetlands as their habitas will lose their homes and find it difficult to survive in jungles of concrete . Endangered animals will be harder to find after the destruction of their homelands . Also , there will be no fresh grass and grains for domestic animals , such as cows , lambs , chichen to be fed . To reduce the above problems , it is necessary for governments to plan carefully before the construction of builings and transport and try their best to decrese the side effects . In my opinion , there are a few advantages of shopiing . Another good point of shopiing is the fact that it could be relaxing for some people . Everyone considered him a crazy and boring guy obsessioned by his passion , except Kate , his only best friend , who encouraged him every time he wanted to give up his dream . They wanted something that could be traditional and revolutional at the same time , something that could give a new vision of reality , and Kate started to offer some information about many artists . She started to be a little bit nervous , she was n't able to find any solution when , suddeny , she remembered that Michael 's art had the features requested by her clients . Michael was very excited because he finally had the opportunity to introduce his view of art throut his pictures . After lots of meetings and conferences with the representation of China , Japan , the USA and Oceany , Michael began to be the man who he had dreamed of being since he was a child . Kate was really angry and she oredered him to leave her room immediately . The personal space in their life should be larger than in a movie star 's , but they should make their descisions transparent for most of the population though . It is their job to make descisions that ensure the benefit of the people in their country , but we do n't need to know anything else about them , after they come home to spend some time with their families . He was a very big menace and the villagers hated him because of his mischievious behavior . This film was about how a previous roberry which had been committed by Vin 's gang leads to the hatred of a criminal played by Jason Statham . As I see it , there are severeal ways to improve , it because we are trying to invent a lot of things every day . You may not think , it but when you are just thinking , you may have the chance to invet something new and useful for humanity . Using new vehicles , travelling can be more comfortable and easier .Everyone in this world would have a better life . I am really happy when I simply see a new bus with air conditioning or anything which can make travling enjoyable . Artifitual intelligence is one of the best ways , we can switch drivers to these vehicles . We can also help by paying for our tickets . Yes , this is simple , but these companies need money to improve their businness . The Number of the Beast was the third album Iron Maiden relesead . In this album , the drummer was really great and fantastic eletric guitar solos were performed too . Since he took up office in 2002 , Lula has made major structural changes in Brazil , taking more than fourty million Brazilians out of extreme poverty . To curb corruption , new laws were created , instituions were re - structured and innovative mechanisms were developed to engage and give voice to the civil society . For the Brazilian elite it is unacceptable that Lula , a poor migrant from northern Brazil , overshadowed all the presidents and most politicians of their own , priviliged , university - educated and careless about the real Brazilian problems . Yout do n't have to think about bus timetables and stops . You can stop wherever you want and there are a lot of other reasons to travell by car . It is really good . It is better than the previous novel , FSOGrey . I really mean it . It is not porn . BE GROWN UP PLEASE . If you do n't want to read the " sex parts " , just turn over the next page till it ends , that 's all . I did that to finish that novel . This novel is just to tell us the passionate love story between a sucessful businessman , chairmen man with a very unhappy childhood , and he only refers to his birth mother as " the crack whore " , which is related to his recent behaviour - BDSM . And the girl seemed very bored of her rountine life , innocent , did nt know anything about life . Apparently , THEY were so diffirent from each other , but somehow , some magic connected them and made them a very lovely couple . But most importanly , one should enjoy all of this fun . I 'm going to make you a very nice ittinerary and , hopefully , we 'll also find somewhere for you to work . We 'll visit the Hall City Tower , the zoo , the citadelle , and we also have some beautiful parks with a lot of green grass and old trees . Concernig your work plans , I have an uncle who owns a farm , so I think we can arrange for you to work there . They can barelly breath with all those photographers around them . For example , when a fan follows a cab , she or he could be hurt , because the traffic is really unpredicable , or when there is a huge mass of fans , they could hurt each other . Why is it that when men stalk women they forbid them to come closer to her , but when a papparazi hides in the car of a celebrity , he will get a huge pile of money for the photos ? One example of this could be North Corea or some Arab countries , where their governments ban internet access for citizens . In other words , they want to mislead the people about reality to avoid the population claiming via these networks or being up in arms against their system . So , this means we are getting less intimity and becoming more gossipy at the same time , as a consequence of sharing our lives on public sites . You can follow your favourite celebrities and have direct interaction , but this also has negative consequences such as some followers critise them . It was a new thing for her to know that someone had the guts to sit next to her because almost all the people in that school defined her as a weirdoe . She was on her way to the court where Michael was practing when she heard guys talking . Then our trainer , Nico , shows us a lot of tipps and tricks . This is an original and moving love story that has people who are agaisnt the relationship between the main characters . Besise this , it tries to give us a real idea of what an innocent child might do to help people without being told the real truth . Warning the responsible departments how much they can do for the city in relation to employment opportunities , tourist atractions , enrionmental education , ecological preservation and make it the best tourist city in Litoral Paulista . Preserving , exploring the trails and beaches , encouraging extreme sports are what we believe are attractives to tourists of this wonderful coastal city . Nevertheless , travelling by car could pose a real treath to public transport because it is much more comfortable . It will even get more popular because it will be faster , more modern , and cheaper than travellng by car . The aim of this report is to give some tips for tourist who come to the city . I will provide you with some pieces of advice about shopping for clthes in the city , as well as some recommendations . In the city there are many fashion shops where you can get the most trendy clothes . You must be aware that maybe you will spend more money than expected , but if you are a shopaholic , it will be woth it . You will fall in love with them as they are pstel colured . If the idea of a street marke does not seduce you , I recommend you visit a little shop in Saint Peter street , The Old Bag , where you can buy bags and other accessories , such as umbrellas , gloves and scarfs . In addition , the shop is very cheap and you can have a cup of coffee iside while you are shopping . I suggest a quick visit to every shop and making comparations of price and quality . This film is interesting because it drafts work problems , but not only this , it also shows some important values , like the importance of solidarity , group cohesion and the importance of not losing fait in dreams , even if the situation is withstands . The problem is that you have to book the hotels you want to stay in so yoou need some time to prepare it . The Televion of the future will be amiazing , because it will have a 3D projector , which means that movies will look extremely realistic . You can see , for example , tigers , lions , zebras , birds , pinguins or horses . If you were hungery , there are some restaurants and fast food restaurants . In my opinion , sometimes stars ' behaviour is very suprising . Film stars have very duties , for example , going to the parties organized by other people from show buissness . You are very lucky in choosing a life partner . I have seen your life partner . She is so beuityfull . You both have a perfect match . First of all is traffic jams ; if you are stuck in a traffic jam in a big bus you will waste much more time than you expected on the road . Bisedes , public transport is overcrowded in rush hours . Another downside is that most buses are old and dirty . On the one hand , if you belong to a school , you can participate by giving information to the children about the cathastrophic image our village would have if we did not reduce the pollution to the minimum range . Forthly , I only buy organic products for consumption and keep a small spice garden in my backyard . First and formast , the bank notes should be designed and the design includes background colour , artwork and security issues . The last but most important step is the ispection . If the sheest is bad quality , it will be securely destroyed . The " Di Roma reataurant " is a restaurant situated in the heart of a small village , " Monção " . It is very popular with teenagers and adults who love to eat pizza or any other fast food . Public transport is not as valorated as it should be although a lot of people use it every day . It 's a big country and does n't have many inhibitants . Most people go to high school and unversity . In Sweden , we have a lot of different people from different kultures . The problem is that there are a lot of Swedish people that are razists . Not the majority , of course , but there are many razists . That can be really painfull for those who are n't from Sweden originally . The first one is to study a lot of Grammer lessons , and the second one is to learn how to organize my ideas for a long period of time speaking . It was written by John Clees and Conni Both and it shows the daily life in a fictious hotel . Particulary when the owner gives orders to the waiter , these situations become hilarious . Its shorters stories have a funny and relaxed time . Fitst of all , the environment that belongs to both man and wildlife is going to lose balance in the ecosystem . It means that more kinds of species are endagered because they are unable to adapt themselves to the remaining land . As far as I 'm concerned , it 's critical for governments to take mesures to reduce the problems . Firstly , relevant laws and principles should be put in place to forbid extravagent expansion in the natural system . In addition , supervision of the protecting steps needs to be undertanken by the government . He still needs to find an ATM to withdrawl some money to pay for his appointment . SEAWEED : OUR FUTUR Thanks to a crowd - funding campaign , we obtained the mininum funds to develop our innovate work . Unforturnately , the process only works for twelve hours . No matter where a famous person goes , he must realize that , next day , he will be on the front page of the newspepers with lots of rumours . Beacuse , what is proper in living when journalists are following every step the famous person takes ? We are all free people and everone deserves to have his own life . I wish to express my dissastifaction with this course . perphaps because there were too many people and also , the more people there are , the more space we need and the room was too small . We felt hot and we had no refeshment facilities . The hotel would be luxorius but everybody could come because the prices would be low , so the hotel would be always full . I think that many people want to go to a luxorius hotel but they ca n't . The hotel would have many services and facilities , like a good reception , spa , wifi conection and pay - per - view TV in the rooms , a great chef who cooked the dishes of the Mediterranean cuisine , a swimming pool , a bar on the beach and a boat for trips around the Mediterranean sea . I would like to hear the point of vieuw of tourists to improve the hotel . One day a friend of mine was going to an amatuer theatre to see a musical and asked me if I fancied joining her ; I am not fond of musicals , but I went . The peformance turned out to be enjoyable , with a lot of witty jokes . After the show , I was introdused to one of the actors , who was my friend 's cousin . They can do nothing that ca n't be gossipped about . Why do n't we want to give people entertaning us a chance to be themselves and to have a real private life ? " I would say stop the arrogance by my cousins " said Michael to his friends and thought about stealing the keys of one of their millionar houses and having a party with his friends . But the house was destroyed and the neighborhood , furred for the confusion caused during the night , had called the police , who , without his knowledge , were waiting outside the house to take him to the police station . Sometimes I have to take care of my little cousins or my neace and clean my bedroom . It 's not much . Peolpe have never taken into account that fact . All in all , it seems that if such tiny changes are made , a huge help to save natural resourse will be done . The main attraction here is absulotely the beach . It 's a nice beach with white sand and blue wather . Perphas I 'll describe our journey by boat round the island . Subject : Opinion on what young poeple are interested in clothes , not too hipi , but something comfortable . time , then I suggest some other style . It has to be comfotable but I have expenience of cooking and reception for parties / functions as I was a member of the School Parents Association of my children 's school . These was invalunable and relevant experience for the job I am applying for . Also , I am availalbe to work for long hours at weekends . They do not want to learn so much becuase they just watch movies for fun . It is said that the main objective of telelevision is to entrentein people and make their free time happier . It can be really frustriting . The most famous person from my country is Mr. John Stefferson , who worsks in a department store and is always planning how to make people 's lives more comfortable and better . Sometimes I lisen to the radio and hear his comments about some problems in my own country and some suggestions about how to make our life better . It was an angagement ring ! In Mexico , a foreign person does not face difficulties getting hired by a company . I would be pleased to help you with this part of your experience in my contry . I know that you are someone who loves animals , perhaps we could go to the city zoo in order to find out wheter there are any vacancies that suit you ? Something I can do is to do some research into places that need people who speak Englsih fluently . A good ilustration of this would be children . Mr Keffe , who lives with his wife in a housing commision home , is an old - age pensioner with no children . Therefore , it would be greatly appreciated if you could organize a home visit and provide further assisstance for this family . We tried to contat as many family members as we could . My city , Valencia , is a touristic city situaded by the sea . In addition , I suggest going by bus around the surroundings of the city , where you can do adventure sports , like canoening , climbing or just walking around the mountains and enjoying the countryside My favourite kinds of movie are comedy and comedy drama because they have interesting plots and characters , someone and who watches comedy can lought all the time . He presents a theory in which buying lottery tickets is not a misguided input into wealth production as some critics believe , but a valuable input into creating a sense of possibilty of scaping from one 's current life by acquiring wealth . Cohen 's knwoledge is that playing the lottery is not automatically irrational . Some people like to calculate the gain or loss from buying the lottery but other people that can afford a dolar ticket now prefer to keep their dreams . Taxy is the first possibility . Famous people have always been sorrunded by a lot of journalists and paparazzi who follow them wherever they go . Therefore , most of these famous people complain about this , but it is logical that all the media , television , radio and journalists are constanlty devoting every minute of the day to them , because people are interested in them , in knowing what they are doing every second , in knowing who they are with , in knowing what they like or do n't like , their hobbies , in short , in knowing everything about them . In Italy there are few cities with an hunderground and often in the smaller cities there are only buses . I hope for the next generations for a better public transport service and an increasement of its use . Overall , it is clear that the main causes of land degredation were deforestation and over - grazing . These causes also had a negative impact on two regions that were analysed , in Europe and Oceania , and , consequently , these areas had higher rates in terms of total land degreaded . On the other hand , Oceania had the highest land degraded rate at 11.3% bacause of over - grazing , which also contributed to having 13% of land degraded . For this resaon , this region presented the lowest percentage of land degraded , with only 5% . If a person wanted to trevel from Kano to Lagos he had no choice but to trek . We can travel by air using aircraft ; aeroplane , helcopter etc . So , whoever wants to star a journey has several choices of transport , eaither by sea , by air , by land or on foot . At 17:00 they let us into the venue and they carried out all the checkings . When everybody had taken their photos , Emblem3 went backstage to get ready for the concert and after one hour it sterted . Kitchens will be better eguipped , maybe with smart appliances , and people who ca n't cook will prepare the meal by themselves . He was so cynical that he turned out to be very nasty and unpopolar . Sooner or later , mariied people will get divorced . In addition , public transport is cheap because buying a car means spending a fortune and in big cities where people are concerned about the environment , such as Amsterdam or Tokio , there are many facilities like mobile phone apps or special offers . loverer . It is not necessary to say I am able to work to a cafe schedeule . I have experience working shift days and weekends . If you are looking for an enjoyning shopping day , Madrid is the best choice . In Madrid , you can find clothes by the best desingners , such as Carolina Herrera , Dior and so on ... But do n't be afraid if your budget is quite limited , because we have some places where you can find great colections at 50% off . Nowadays , people 's lives are undergoing an unexpected change all because of globalitation . Globalitation started in the 20 's , so a huge proportion of the population has experienced this change . In my opinion , it is kind of good . Personal contact shows a decrease in this time , because people do n't want to face their real problems . Instead , they can see all the poblems happening in the world on their smartphones . In the future , people will comunute via their computers , cellphones , and tablets , and this kind of technology will lead us to a lonely life . Of course , there will be some more electronical things like some new mobile phones with functions we could not expect right now , and there will be some other gadgets . To put it in a nutshell , we could say that our global world will be more electronical , and there will be more gadgets , but that wo n't change our lives dramatically . However , others companies will dominte half of the projected market share in jeans next year . They help me to develop and to see the world from a difernt perspective . Many people think living in the counrtyside provides a better way of life . My town is one of the cleanest towns in my country . The authorities have arranged amny procedures to ensure that the town stays clean at the same time as being environmentally friendly . Another handy rule has been introduced , which is that plastic and glass need to be thrown in different bins that are available for public udsage in each supermarket center . In these , people can find these bins at easy locations available everywhere . All the previous steps and more are being applied by my town 's sitizens in order to improve the environment and go together with all the procedures that help them live a happy , healthy life . ' Gravity ' is an otstanding , brilliant , sci - fi film , directed by Alfonso Cuaron , starring George Clooney and Sandra Bullock . After a long sequence of events , the remaining astronaut first gets to the ISS , then , with a Russian spacekraft , moves on to a Chinese space station called TIANGONG . Never in her life had she been to as crowded a city as Danang , so she feft very nervous but extremely excited about meeting her lover soon . The more excited she was , the more dissappointment she had . Mimi caught sight of her lover kissing another young girl in his room . As you know , in our country there 's trash being thrown everywhere and most of the things that are thrown away are recyclabe . This is the main reason why our environment is being destoryed . My name is Pawarit Chonlahat and I have lived in Bangkaen district since 2010.I found that this area has changed so rapidly , such as , now it has a lot of condomedium a long the main road and nowadays this area has a big shopping mall and a modern hospital and a large police station . That makes my life so convenient and safe because I can walk from my house to go to the shopping mall in about 10 minutes and I can walk to the hospital in just about 5 minutes , so I did n't worry when I got sick and the large police station is located in front of the hospital . That can assure safety for everyone who lives in this area . For this reason , this is the adventages of living in this area but because of many people in this area , traffic in rush hours especially in the morning is very heavy and it takes so long to drive a car to work .That is the disadvantage of living in this area . So , in my opinion , this area should have an improved transportation infrastructure like investment in Sky train system to cover this area . Pat and Tiffany are trapped in their psycologically difficulties ; Pat 's desire for his ex - wife can not be fulfilled , while Tiffany can not get over her guilt over her husband 's death . In these times , we can follow sbd 's Twitter newsfeed , ' like ' his Faceboog fanpage and , of course , follow news about those famous people . Fisrt of all , remember to take food that can be eaten easily without much mess ( Spanish omelette , fried chicken brest , sandwiches , chips ... ) and , also , you can buy some drinks and water because it is fun to eat at the beach and people usually get hungry often after they do something like swimming , jumping the waves , surfing and so on . Furthermore , going on a hike among trees with a cool breeze around you can be the kind of place that allows you to forget the busy ciy life , too . However , documetaries are being forgotten and only twenty - six percent of them would like to watch more interesting TV series like Lost . In Spain , the vast mayority of schools are state schools . I am also a talented cook for kids . My view is also trying to convince them that cooking is fun and sometimes they ask me to teach them how to make basic dishes , such as ommelettes , spaghetti and more . The problem with this mansion is that it hides a lot of secrets and misteries which are going to be discovered by its temporary owners , who are a family whose husband went to war and died . So the real ocupants of the house are Nicholas , an easily scared boy , his sister Anne , who turns out to be one of the most important characters in the film , and their mother , who is called Grace and has a particulary obsession with catholisism . The film descrives how the love that a mother can give to her children can easlily turn into an obsession . However , what makes this film so special is that it pretends to be a typical horror movie , but in its final scene , there is a sudden change wich makes it more interesting . I would recomend this film to anyone , even those who are easily scared , because it is not like the resto of the horror movies . It is a film in which you are continuely discovering secrets as if you were another character . So it is a cuestion that requires deeper reflexion from all of us . Wheter public transport might be the solution , or be more suitable or not is something with arguments in its favour and against it . You do not have to wait for a specific time to cath the bus , for example . However , a lot of people are becaming more and more consciencious about how important travelling by public transport is . One of the most important reasons is precisily to take care of the environment . I really liked working with special effects and the best thing was that I learnt a lot about that tehnology . Summing up , I prefer doing my shopping by means of websides or auction portals . He 's been doing great in both academic and extra - curicular activities in the school . On the one hand , we could live in a more relaxed way ; on the other hand , we colud think about settling on other planets . Then Sergio left Mycrosoft , created his own website which gave him enough money , and travelled wherever he wanted . As you asked me , I prefer sailing on the river to climbling a wall because I want to connect with nature . Though the modern cities are emerging repaidly , the problems caused by excessively exploiting the enviorment are severly various . The red coral reef off the coast of Austrialia , for instance , serves as a shelter for algea and other tiny sea fishes and an index of enviroment fragility . Due to the massive construction of five - star hotels on beaches , the biological chain there is cut off and enviromental variations are gone away . On top of that , it is the regulation capacities of the enviorment for temperature , moisture and even sandstorms are eroding as less plants inhale carbon dioxide and exhale oxygen into the whole system . In a bid to address these side effects that civilization has brought about , governments must take measures stey by step to tackle them . Apart from the natural areas , the minimual areas for forests and wetland have to be ensured . In this place , there are guys and girls attending pedagogy who organize activities to entratain children of every age . Not only because of oil prices , but also the costs of enssurance , the car , the parking fees , etc . In comparisson with a bus ticket that costs four pesos and you are sure that sooner or later it will come . What about lookig for colleges which offer Wi - fi Internet connection and a proper meal at lunch ? We have subjetive opinions ; we normally judge because we have a preconceived idea . For example , in work interwies and jobs that have direct contact with the public , it is better to wear a formal or smart style . Overall , my personal opinión is that we give too much importance to clothes and appearance than we should . Although on some occasions some clothes styles are required , people should have the freedom to choose what clothesdo they want to wear , and it should not have consequences in our lives . In countries like Mexico , some people have the opportunity to use Uber , which is a service that you can use if you have a credit card . It is an amazing service , but not all the population have a car or the financial status to use an Uber , so people have to use public transportation , no matter if the bus or cab driver yells at them or drives badly . In Mexico , the public transportation , in particular the cabs , are not a very secure services , because some of the drivers steal and kindnap , in many situations they could kill you if you do not take precautions . But despite this , it is very sad that in that place people can not do some things because they do not have the possibilities to pay for something more , so they have to take public transport . Although we did not have the current social communication means such as Facebook , Twitter , Whatsapp , we were very sincere and close to each other , more than these virtual frienships prevailing today . I have already exprienced one friendship through an organization , International Youth Service IYS , a charitable association established for youth friendship . The best of all in real frienships is to always believe in your friend 's abilities and be his real mirror for good and bad actions . He will be the same for you . Despite the bad weather , if you travellled by car , you could park your car near your destination , so that you could arrive comfortably . I think that I 'm good for this job , because I really sociallize with children . Well , the part of the day that I enjoy the most is nigth because it 's when I arrive at home and I have finished my whole rutine , so I can take a break and I can do whatever I want and I can just relax , so I would say that nigth is the most relaxing part of my day , so it is the one I like most . I think there are things you need to plan because it 's important for your life , but it depens on the situation , because I also like to let things be alnd let them happend because they have to happend , so the majority of the time I prefer not to think about it and just let them happend and not to plan anything . But if it 's something related to my future or sometehin that will really afect me , I prefer to plan it , like what kind of job I want to do or about my dregree or things like that . David is always ready for a joke , but amazinly , he has the ability to appear serious . I do n't like to travel by boat , because it 's unconfortable and it takes ages till you arrive at your destination . Cordoba is a trhee hour train ride south of Madrid , and attracts visitors from all over the world It is the only Mosque in the world that is not oriented towards Meca . For a job , i recomended you travel to the coast in Cadiz , Malaga or Huelva and look for a job on the beach , because at the sime time as you are on the beach , you could earn money . Among my aquaintances I have a reputation for being a friendly , positive and talkative woman . When he was little , he heard his family talking about how happy they were because his brother Peter waas following in the footsteps of his mom . Every day , scientists try to develop new ways to improve the way we live , so that we are hable to pollute the planet less . It sounds a little bit strange , but by installing solar paniels and other features in these homes , we live a much greener life . Undoubtedly , there will be some changes but , because we know why we are doing it , there would be no problems . We take food and drinks and we spend a day in beautiful places such as the top of a montain , an amazing castle or a tipical market in a town . The film is about this CIA assassin who ca n't remember his past , but he knows he 's being chased by the agancy . It was so exciting and funny listenig to all those musicians , because some of them actually did n't have the skills to play and did n't have the charm needed to warm up the people . I 've had a little bit of experience of summer babysitting for some kids . In Italy it is more diffiult to be a babysitter because , if you are underage , parents should take responsibility for you , so it is better to be over 18 . To be honest , I 'm not the best cook ever , but I can cook a few good things like scarbled eggs , pasta and meat . One of my carachteristics is that I 'm a very precise person . For example , I enjoy making lists because they make my mind clearer , and I strictly follow what I wrote so everything , hopefully , ends well . I am 25 years old and I finished my studies in psicology this year and I am available to work from July to September . As for languages , I speak native Spanish and Catalan and also I speak French and German fluenly and recenly I passed the First certificate in English . Furthermore , if I were you , I would go with joining a healh club . You will not feel self - confident and happy , but your outward appearance wiil be better . I arrived extremely exahusted , because I could n't sleep the night before . All day I was liying on the beach , talking with my friends and having an incredible time with them . I 'm Catholic . I believe in God , but I 'm not very friendly with the Vaticano 's rules . Travelling by car is so much more conveniente if we think about small places such as villages or small towns . If you consider the cahotic traffic and the long queues to get there and the impact of these factors on people 's health and people 's finances , I 'm sure you 'll change your mind about public transport . On the other hand , it is possible to find hibrid cars , but they are more expensive than those that work with normal fuel and , for that reason , this kind of car is not people 's first choice . Such policies will involve taxes on poluent cars , the increasing of fuel prices and the introduction of benefits for those who opt for more environmental means of transport . Shakespeare provided everything the people asked for --- laughter , romance , and tragidies . We would buy next , impractical high - heel shoes , which will spend a couple of years in the wordrobe . The last but not least disadvantage of doing shopping , is that in the mall could prowl many pickpokets , and they could rob us . Interestingly , the pruchase price of " Carde " and " KD " is almost the same . However , " Sebu " leads with a pruchase price of $ 1,000 . Wherby " Carda " and " Sebu " score with warrnty expenses of under $ 150 . As a long term investion , I would choose the " Sebus " model even though its purchase price is very high . Inhabitants can go to the countryside to have a pacnic or excursion with their friends or families to relax . Ater natural areas , such as farmland , forest and wetland , are destroyed on a large scale , there are no close places with beautiful scenery to visit . The building land is supporsed to be their home . It will sabe lots of plants and animals . It will save the environment , so it will save you and me . She had a feeling that her birthday would n't be oridinary . Firstly , just after she went into school , they greeted her with a million colofull balloons with inscriptions with all the best wishes . Eventually , they came to the lake on the suburbs and then she saw something unexceptable . In my opinion , I recommend you to stop going to sports classes , because I think music classes are better , because you can also get a job in an orchesta or something like that . Ever since a curse was put opon Ailee 's grandmother , the girl has been living a daunting life . Max was so anxiuos to see all the different kinds of wildlife . Halfway through the trip , Max heard a wierd noise close by and he decided to see what was going on , but before he knew it , he was all alone . Max coud not have been happier . " I practised Ashtanga and Iyengar 's styles of yoga and Ruesi Dat Ton ( yoga of Thai hermits ) , learned different approaches during my training in India and Thailand , and my practice brought me to Classical Yoga - Correct Approach to Spine school , the way of exersising I found the safest , the most beneficial for health and scientifically grounded . She was a foreign student in Palmira , in the north of Siria . Then Stefan 's daughter , Aurora , goes to live with three faires . The three faires lead a prince , Philp , to the castle because he has to give the kiss of true love . After taht Aurora does n't wake up . Subject : Aplication . I am writing to apply for one of the camp monitor positions you advirtised in last Monday 's Daily News . I am interested because this post will give me complementary experience . To begin with , evidently , technological progress has noticeably enhanced quality of individuals ' lives , controbuting to the economic growth of numerous nations . one of the most ecxiting days of my life was the 23rd August 2014 . ! If , ( one day ) I have the possibilty to do it , I will go to distant galaxies and I will see how the universe began . I mean the timetable punktuality , time interval until tne next bus and so on . It opened more than twenty years ago and still now is the leader in the chimical sector . Try to be spontaneus and not too sliced . Do not talk too much , as it is a sympton of anxiety . I worked on that team more than ten years ago ( new employee recruiments ) and I can guarantee that for the first interview it is important only to make a good impression . I also teach childring at the age of 10 or 11 how to play it . " Carne Enchipoclada " you need to choose the meat ( pork tenderloin , beef steak or deer meat ) and it is accompanied by a sauce of chile chipotle with potatoes cambray . " As a matter of fact , televiewers are not able to decide the script , but they can still decide to switch the television off . I am looking for the chance to work for your company because I know that your store is the leader in large department stores in the UK and last year your company won the prize of " Best place to work in 2013 " , and I want to share my knowlegdge and my work experience to improve your profits every year . According to the CDC , the percentage of children aged 6 to 11 years old has increased from 7% to about 18% in 32 years in the Unitated States . This means that in the past three decades , obesity has more than doubled in children , same that had diseases just like diabetes , ashtma , cardiovascular risk factors , mental health disorders and muskuloskeletal problems . I have little cousins and sisters so I 'm very good with kids . I 've experienced all kinds of situations , so I think they wo n't be a problema for me . As I said before , I have young cousins and we meet on Saturdays so I need to think of activities and games to keep them entretained . I 'm also very good at sports . I practise trak & field and pingo pong , so sports are n't a problem either . I 'm an outdoors person , so I will be very happy with the accomodation . I would be very thankful to work for you if you decide to accept my application . The cards included the programmee of the concert and some photos of children from all over the world . I did everything by myself because everyone had sometihng to do on their own . I 've been doing martial arts for eleven years but I havent lost the passion I feel for it . Many people oday have pets of all kinds . First of all , a pet is a friend for the family and , much better , is a memeber of the family . One more advantage of qning a pet is that it helps children learn to be responsible and carring . On the other hand , there are a lot of disadvantages to owning a pet in big citiew . Pets and animals in general need fresh air and exercize outside and not to be always in an apartment . I have heard abou pets that get sick through living in a small apartment in town , and that is terrible . In my opinion , it might seem good to have a pet if we teke care of it . All in all , qing a pet in a big city must be done carefully , ensuring all that the pet needs . In the class , you should take notes and write down what is Iimportant . If you have any questions , then you should ask teachers to help . I really do hope you get used to the neigborhood . Neverthless , I would like to improve some skills and although I did very well , I still got confused . Nowadays , people are aware of environmetal problems and they will try to figure out solutions . Moreover , there will be important thecnological advances in our lives , like intelligent mobile phones which can help us with day - to - day tasks . Nevertheless , poeople try to save money by every conceivable means . You have all the kinds of German food you can imagine , from sausages with chucrut to Gullash with spatzle . Most of the paintings and photos are from Germany , because that town was occupated by German people many years ago . Almost everybody has at some time thought of taking a gap year between leaving school and starting university , but do we really know all the advantages and disadvanatges that it entails ? It is also said that at the time of heading to college , those people who have taken a year off are the ones who have least difficulties learning and relacionate with other students because they have got used to it before . Many automobile companies are working for a new future of automobils . Some people argue that this new idea of cars is a milestone for us and it will bring only positiv effects with it . At the moment , people who have got a handicap can not drive a car by theirself . In contrast , self driving cars are very expensice and many people can not buy one . Buses are the mai transport in my area . If you are not keen on travelling by bs and you do not want to get the car out of the garage , taxis may be the best option . conclution The mayority of users are young or elderly , since they are n't old enough or they are too old to drive . This is happening now , and we are not even fully devoloped in technoloy . So , I would recommend this CD to other people because I think that they could get to know the signer depply through the songs which are on this amazing CD . I do not agreee with the idea that there is no future for public transport , because it is a perfect means of transport for commuters and , nowadays , a lot of people are conscious of global warmig and the envirnoment , and refuse to use the car every day . There are a lot of benefits to public transport . First , you do n't have to drive yourself , you can listen to music , read a book or wathever you want without having to pay attention to the traffic . It is true , too , that travelling on this mode of transport helps the goverment because you have to pay for it , and the majority of modes of transport are cheap enought for everyone . However , so many people love having their own vehicule , a car , a bick , a moto , because this give you other kind of freedom , you chose the way , you chose the time , you chose the way in you drive it , the positive thing about this kind of vehicule is that you do n't have to take a bus , for example , crowded with people , you can go alone in your car , or with whoever you want , but the important thing is that you choose . In conclusion , we can say that every kind of transport has its own pros and cons , but in my opinion , the difference between both of these is that in the secon you choose your own way . Guys should not go snowbording . Most people eat scrammbled eggs and drink a cup of tea . As usual , I 'm on a diet , so I prefer only yogurth . In recent years , people 's attidute has been changing . However , public transport has been critised more and more in recent years because of its inconenvience . Therefore , buses do not run as frequently or reglulary as they used to . In the end , the public transport service needs to change to attract more people and to have a rosieer future . The purpose of this report is to inform you about how the city of Granada takes care of the envirnoment . And there is a big universitary commnunity involved in recycling . However , Granada can not be considered as cycle - friendly . There are fewer ciclyng lanes than in other cities of a similar size . I consider that Granada scores 6.5 out of 10 for taking care of the envirnoment . When the weather is good enough , close to the castle take place many kinds of parties and enterinments . That day was a terrible day for Michael . He woke up and felt totally exhauted after an overwhelming birthday party . He did not answer at all , besides , he hit the chair near her , and unfortuantely , that chair hit her in a serious way . I think that many google users will be happy if the developpers bring more useful information to the main page , for example , weather information , carrency rates or hot news . Moreover , google map service needs some improvements , such as street names , map accuracy and more city panorams . In my opinion , a trip will be fascinating because of the fact that the building of the Brewery was orginally a German - owned brewery which has been brewering beer for almost 400 years . It contains a liitle museum which is open for tours . There you could buy some souvenirs - glsses , bottles , T- shirts , cups and , of course , beer ! They serve all meals in small portions , and they suggest that the servings can be shared , so everybody can try more itens from the menu . As a result of this , many people are trying new opitions , like car sharing . I 'm a teeneger and nowadays I recognize there are a lot of ways to get to know something . In the past , technology was poor and only a few people had a smarphone or a computer . Here we have some of them : anemia/ anemia ; rickets and malnutrion … The lacck of a sense of civic responsibility leads easily to bushfire . Its true atractiveness , in addition to the decoration which is at the pinnacle of Andalusian art , is also its location , which is unique . If you are lucky enough to visit this wonderful place in summer , I recommend you attend the Granada International festival of Music and Dance , which is celebrated in Genelalife 's gardens , where you can enjoy amazing artists and orquestras in an unrivalled setting . After that , the pringting process comes into play . The most significant procedure is called inspection , which means mannual checking by special machines and staff , and then they are classified into 3 different categories , including good quality sheets , partially damaged sheets , and bad sheets . Namely , Design , Preparation of matal plates , Printing , Inspection , Packaging and Distribution and Disposal . process is inspectation , where the printed sheets are If they are not very good , we can destroy them securely . However , a few sheets may be partially damaged . That does n't matter due to the fact that further seperation will assiste you with getting rid of the wrong sheets . Remember when in school you learned the three esential things for living ; reproducction , nutrition and interaction ? Well , humans have become more and more sedentary whith the passage of time and have forgotten about interaction and mevement . I might not have the tipical sportswoman body type , but I really enjoy doing sport and feeling the glory of movement . My fabourite sport is tennis . Although it is not the only one I practise , it is the one I most like to play . Apart from ovbiouslly having fun and socialice , the way you feel after running and burning feels really good . Therefore , in the future , I will keep improving those abilities and become a more oragniezed person . If you want to start practicising this sport , you have to get fit and run a lot because you have got to have a good physical condition to play because it is a very demanding sport . Let me introduce myself . I am Luis from Spain and I work as a civil engineer in a Spanish infraestructure company called Acciona . I was very surprised to hear that you want to spend your year off from university in my countrey and I am also extremely flattered . It 's one of the most beautiful castels , in my opinion , and it represents the most important thing this countrey is known for , and that is Dracula . He was actually one of the rulers of this countrey and his real name was Vlad Tepes . And if you want to have some fun too , there are some fastivals that you might enjoy . The biggest one in the countrey is in the cty where I live , so you 'll have a place to stay , and for free . I hope my advice was useful and I look forwored to seeing you next year . For three years , I babisitted my neighbor 's two daughters . There have been rumors of the contruction of a Metro in our town . The statement given in the rubric proposes an issue of the future of pulic transport in developed countries . Modern megapolises are suffering because of a surplus of automobiles . At the beginning of the 7th century , Cáceres was conqueted by the Arabs . At the end of the 14th century , Cáceres was conqueted by the Romans . Therefore , it is a multicultural and multirracial society . The center of the historical city is the Big Square . There are mixed Arabs and Romas buildings , and two cathedrals . My favourite restaurant is Chinnesse . In Caceres we can eat Chinnesse food at Food House . I love swimmming because if you are angry or your job is very stressful , you will feel well after thirty minutes in a pool . Actually , this sport is very healthy , so some doctors are recomending this type of sport . Afterwards , I will have the right to take part in the intarnational missions to maintain peace under the patronage of the European Union . Secondly , I am going to inform you about how our citizens are tryinq to keep the area clean . - There are cleaning campagnes twice a year . - Last year there was a campage to renew and repair the most attractive parts of the village . I hope this report informed you fully on the environmental situation in our villge . In Budapest the rubbish is collected separetely . For a very long time I 've been doing my best to separate rubbish , and then , it was a really bright summer morning , I saw that the special yellow bin for paper and glass was emtied into the same lorry with the other rubbish ... I have been learning English for 8 years and after I sat r the FCE exam two years ago , as soon as I passed the exam , I started preparing for the cetificate in advanced English exam so that I could demonstrate my English skill even more , both written and spoken . Although there are a lot of people who strongly believe the best way of travling around the city is by motorbike , there is also a large proportion of society who are sure it has too many drawbacks to be worth buying one . It makes my every journey unpleasnt and I feel uneasy all the week before the flight . But this mode of transport is n't so comfortable , esspecialy when we must travel onshore ; then it 's complicated because travelling by boat is allowed only on the sea or any sizeable river , the courses of which are usually placed less conveniently than roads or even railway tracks . In general , the facilities are well maintained but the majority of the users think that the installation should be improved in the baskteball and tennis courts and maybe the bathroom should be remodelled . The workers are very kind and simpathetic and enjoy teaching . Desadvantages Our cities emit too much carbon dioxied , making the earth warmer . Floods , droughts , and famines . All of these have great effects on humans and animals . For instance , the loss of properity , the disappearance of people , which is not good for the development of human beings . Finally , governments should ues the space properly , for example , making plans before building buildings , estimating the effects on humans and animals . I think I could be the right person for this job . I 'm really patient and I really liove to be with kids , play with them and take care of them . I always have fun with them . I also know a lot about cooking because in junior high I took cooking leassons and I learned a wide variety of dishes and snaks . However , aquaintances of hers , the students at the University , comforted her . Surprisingly , when you are practicing this sport you improve your speed and coordination too , so that could be an interesting reason for taking it up if you are not involved in it . Personally , what I can say is that practicing this sport makes me feel really alive and not only when I am playing it , it also happens when I am watching it , especially during the World Cup . Curiously , there are many ways of taking care of yourself when you are taking up this sport , so what I advise you to do is to do some exercise before you go on the pitch , because it not only prevents you from suffering from spraid or other kinds of injuries , but keeps you active to keep the level of your game . It is a majestical castle conviniently located on the river . First of all , they are supposed to be desighed with great care and many considerations , such as the background colour , artwork and security issues , all of which are crucial for bank notes . Next , it will come to the most improtant step , inspection . The next step is the most important and it involes inspection , which means good and bad sheets are separated during this process . One of the measures that we , as world citicens , can take is to leave our cars at home and start to take public transport or to share cars with others . This is causing diseases and alergies that are affecting the citicens . Enginers are studying new engines that are more environmentally friendly , but even so , we have to reduce vehicles to help reduce the greenhouse effect and pollution . Plans and programmes are being developed to reduce the number of cars driving throuhgt cities . Some of these oave the same aims . Taking public transport can effeciently reduce the emmission of carbon dioxide and will help the earth to recover from those disorders . The above reasons I mentioned explain why I do not agree with the statemant that public transport has no future because travelling by car is more convenient . It is importatnt when we work or study in international areas . I think that there are not many disandvantages of learning another language . Also , I found some books on the internet with Crambridge 's exams . The Forbidden City , one of the most famous museums in China , has opened its online version to the public , which means people can visit the Forbidden City on the Internet instead of taking a time - consuming flght to Beijing where the museum locates . Once I visited a museumm to find some pictures of cave painting in France , but when I went to France to see the real painting , I found it was more vivid and could show you how great the French cavemen who painted it were . Admittedly , a museum has its owm merits ; it is easy to find on a map and is always emphazised as a symbol of a country . A documentary , a book about the culture is cheap and easy . We can consider it an ecomomical method . If you decide to find out some information about a totally unknowed country , a museum is not a wise option . Machines can tell us lots of imporatant information . The tables and the chairs are very beautiful because they are like in the American films but they are very inconfortable . It would be incredible if you started your trip in Cartagena , which is a caribean and tropical city . We think that it will be convenient for him to apply for a Postdoctor position during his military service . His ideal plan is that he will try to apply for a Postdoctor position this fall or winter , and then he can work abroad after finishing military service ( August 2015 ) . In terms of protecting the environment , taking public transport may cut down the carbon emmittion . It is urgent timing to avoid the greenhouse effect that people should think about how to decrease the carbon emmition . There are a lot of places where people are building their houses . perhabs we will be living under water ? Many buildings , like skycarpers suggest we will live in flats which exist above the ground , and that is not extraordinary , but how about whole cites prospering under the water with their own source of light which could replace the Sun ? The marketing departerment also gave me the responsibility of publicizing events via Facebook . In my opinion , the obsession with business trasforms society into a ring inside which every man is against his friend only for the sake of an excellent career . The last point that has changed people 's lives is the tendency to have the same thougths or the same goods . Yes , they will , and I hope that we will improve our thoughts and we will have the cosciousness that we are not " supreme " and that we will never have the right to imposing us in the world . To my mind , the beautifulness of music does not depend on its varieties . I think that Spain is an incredible country since it has all kinds of landscapes : mountains , beaches , lakes , and you can enjoy adventure activivities , for example , trekking routes , climbing , bungee jumping , surfing ... You can do different kinds of tourism depending on the city where you want to go . However , I recommend travelling to Extremadura in spring or Autumm because in summer it is too hot . In Extremadura , you can enjoy the environment and you can walk across the famous Monfragüe Nacional Park or Tajo - International Natural Park . John talked about the serious problems caused by not recycling things like plastic bags , bottles … that end up floating in the sea because humans do n't take care of their environment , and all this is causing loads of acuatic animals to die . I had the chance to be introduced to a different world and I started looking at everyday life through differnet eyes . There seems to be nothing better , nothing more interesting , exhiliring , breathtaking or stunning than taking up this sport . It 's also not said but tennis is one of the sports which causes an enermous amount of injuries , so it 's necessary to be under the constant supervision of your doctor ! There are a lot of bergains and cheap items on the market , which very often catch our eye , but I definitely want to warn you against them ! The " Mariahilferstraße " is the perfekt place for people that want to avoid overcrowded malls . Espacially on a rainy afternoon , the " Donauzentrum " and " G3 " are the prefekt way to spend your day . I 'm also a volonteer for the Red Cross , so I 'm used to looking after children and organising all kinds of events . We do n't have to think too much about almost anything , needing no person for company since we have all these distractive devices for entertainment and relaxation . I 'm really glad to know about your future plans . I definitley think that this year of travelling and exploring will be a great way to grow up and meet new people from different cultures . I worked in the OIL MINSIRTY 's central library on foreign scientific books which mainly concerned the petroleum field . Just do not order the pancakes , because they do really bad pancaces . There are about a thousand animals and in the midlle of it is a gorgeous castle . Their novels have a lot in common : first of all , the plot is usually pretty complex ( as we can see in David Copperfield by Dickens and Wuthering Heighs by E. Bronte ) , and so are the characters , who are always well described , especially on a psychological level . Furthermore , both the authors included in their works the figure of the noble who helps the hopeless child who comes from a lower class . If they want to use it , they should try to focus on getting important information which is benefial to improving their knowledge . Nowadays , it 's common to think that travelling by car is much more conventient than travelling by public transport , but it 's not true at all . As for the pullotion , it could be reduced if people used public transport ; it is well - known that CO2 emissions per passenger kilometre by public means of transport are 80% less than a car . They ca n't do trivial things such as shopping or going to the cinema with their family without being aware of the fans and papparazi . Sometimes , famous people look a little bit different than on the stage and their faces wihout any make - up appear on the Internet . As a result of this , many studies have shown that athletes shuold be motivated to push themselves beyond the record . You certainly will learn to fail and win , but the most important thing that you will lern is never give up . It usually starts with small talk or compliments , as at school I was taught that expressing appritiation to people can be a good start of any kind of relationship . Now the question uder discussion is whether public transport has a future as travelling by car is gaining more and more popularity because of its advantages . It 's not a secret that gas , insurance and reparings are costly . Safity issues are also very important . It is obvious that it is safer for the environment than thirthy cars with a single person inside . Moreover , cities ' authorities encourage the development of public transport because it creates employment , lessens the impact on the environment and contributes to road safity . He knew that Peter was a little bit irisponcibile , but he thought that the arragement sounded perfect and nothing could go wrong . But there 's something in her big bright eyes , circled with long brown eyelashes and frecles , that makes her appearance unique and causes Tom 's heart to flutter every time he brings to his mind her piercing gaze . Their transformation from innocent posters to digital screens ranging in size from miniscule to vast has made adverts all - pervasive . Local people were invited and a talent competiton was held . I am currently an intern on a scientific research program in a group called GALP - Logical Programming Teaching Group , that , with the local city hall of Araraquara , aims to transform the city into a national technology , research and software producing center , accomplishing this goal by teaching logical thinking and alghoritms to kids , diminishing future evasion in many exact science courses . It was aweful . Thus came the question of what I was going to do next , but I was n't ready to make that descission back then , so with the agreement of my parents , I decided to take a gap - year . I was going to spend the next 6 months in the United States which actually teriffied me . I also got to know myself better and I have reached a descission about what I want to do next year . I am going to study at the university . Even though they are well known , they have a right to have free time and they should be albe to spend it however they want to , without anyone disturbing them . The idea of the sublime that Wordswoth had is considered by many as the standard idea of the Romantic sublime : forms of nature that inspire feelings of awe , danger or weakness . There is also a food court on the third floor , catering to all sorts of customers , as well as a few restaruants on the first and second floors . Another shopping option is the main streeet in the centre of Viña del Mar , which used to be more popular in the past , but which was displaced by the shopping centres . I 've always liked to play with kifds and do fun activities with them . Away from busy and noisy roads , the beautiful old inner city reflects what Brussels really was for centuries ; small but cosy cobblestone streets flanked by small houess and shops in light colours and with old - fashioned roofs . Travelling across the Atlatic Ocean , for example , requires an airplane or a ship . Fortunatley , Hundreds gather there , parking spaces are full , again facing long queues in stores - no matter how unpleasant it souds , it is the reality nowadays . Afterwards , some get into their cars and get stuck in traffic jams on the way home , it causes more tension and disimproves your mood ! On the other hand , the majority feel lazy and they go shopping just for special occasions , without any rush , they dedicate time in search of fashionable clothes , best quality garmets , stylish items . On the other hand , searching for your favourite brands , non - seasonal products , some special goods , just looking through shelves , trying the garmets on , asking for advice , testing products , there is plenty of work to do to make a perfect purchase . Fortunately , this unnavoidable part of our lives is not that problematical anymore , as we may experience the pleasures of online shopping without leaving home . As a shy person , I can confirm the differences between real life and virtual interacion . I am at home in my lovely house , where I love every detail of the interier , where everything is in its place . My kids are proud to have parants like me and my husband . Friends , colleagues , family all thes people who were next to me on my way to this wonderful day . Much shorter than their fellow tennis players , they have always been able to compensate for their physical shortcomings with an extremely good tecnique accompanied by a strong head . You must never surrender : until the last ball has bounced twice on the ground , you have to keep fighting , regardeless of the score . Nonetheess , it helps to shape your own personality . She is regreting because their relationship got worse and it was n't what she supposed it could be . With this in mind , money would be spent on constructing a running track where no - one would have to worry about traffic or obstacules in their way . Conclusión The lecturer 's second argument invovles capturing and destroying the toads using volunteers . One of the main advantages of cutural practices is that they allow societies to maintain their identities and gain economic stability . My study plan is to untertake a pre - university programme locally to prepare myself for further studies overseas . It is worth mentioning that schools are considering the environment as part of the education sytem that should be taught to students . Trash distribution , using green products that repect the ozone layer , not wasting water and many other actions . For exapmle , we can take at least one family member with us . When it seemed impossible to catch him , a girl , who was crossing the street in a wheelchair , crashed into the thief and he fell down on the paviment . DYI Classes As most college students will soon leave for university and will live in dorms , without their parents , they are oblidged to fix malfunctions by themselves . It takes a higher level of creativity and spontaneity to succeed in it than your usual basketball match , since its flexible rules , no - coach system , intensified relationship between the player and the crowd , and reduced number of participants widen and complexify its field of possible actions . But still , our customs have evovled a lot . Due to the geographicall conditions where Japan is located in the Pacific Ocean , people here have adapted to eating raw fish and like to offer it as a main dish to serve customers in most restaurants . Successful communication between different cultures will happen only when we express oueselves precisely and interpret the information accurately . They are courtous and industrious . And then severything had crashed . Michael tried not to think about it and to listen instaed to what she was saying ... Her voice was weak and fleble as she said " .. and I was really depressed , you know , and then I thought ... we always talked about going to India ... and I thought ... maybe we could fix everything .. so .. I'm just asking .. will you go to India with me ? " In the case of politicians , I do n't mind what they do on their holdidays , for example , if they work properly when they should . I think the Royal Family is an exception because they are supported by all the citizens , so I think we ( as citizens ) have the right to know eveything they do if we want . I had to take care of other volounteers . Dealing with other people is the hardest part , escpecially when they 're the same age as you . When we want to go on a weekend trip to the countryside , a car is irreplecable for families with children or animals . She used to live in a flat , so she had never disovered how different and beautiful the world was . Therefore , one should not waste time watching tem . In these cases , TV is undoubtedly bad entretainment . If you are looking for a film that provides you with suspense and action at the same time , I recomend you to watch " Now you see me " . So if you enjoy magic tricks , surprises , very handsome actors and splended actresses , why would you miss it ? But , let 's face it , doing these things is not as wonderful as discovering magic powers , being kidnapped by aliens or singins a song with Justin Timberlake and Lady Gaga . We will be travelling by car to a campsite in Gemany . To help with this issue , the nurse should make certain that Mr. Sharma is confortable , and elevate the head of the bed for a more upright position in order to facilitate and increase his oxygenation , helping him to recover from his respiratory instability faster ( Snowball , 2012 ) . Also , I encourage you to visit Ukraine and to see its sightseens , to feel the culture and speak to nice people ! If you prefer shopping outshide , taking a trip to King Street would be the thing to do . If you want typical souvenirs , you can go to Buckingham Palace , you will find a lot of small shops that sell souvenirs for a reasonnable price . I have a high level of spoken English , as I have been learning it since early chidlhood . Companies like Monsanto that engineer plants with steeril seeds , encourage non - sustainable production models that promote the extinction of independent farmers who have to choose between their lifestyle and the new farming era . In many cases , volunteers are crucial to helping support life , as when meals are delivered to homebound people . Things gradually improved day by day for a time and my reneues started growing . It turned out that they sent my work to a few Instituts and one of them was interested in me . When you use a technique or defense against a technique , you control your body 's movement and coordinate them to work at the same time . I throughly enjoyed the lesson and , according to student feedback , so did they . I suggest visitin the Vatican , as I said at the beginning ; the country inside the city . On the one hand , I have been learning English for so long that my good profeciency has given me the chance to get a position in an international team . On the other hand , I have learned French and Spanish just for a few months , because I was curious to learn the oficial language of the countries where friends and relatives are living . The writer lets us observe the fear , anxiety and the defenceslessness of Sam , a neurological patient who is just beginning to emerge from his comatose state and who has yet to deal with the reality of his new situation , sorting out pieces of memories involving relatives and not quite understanding why a woman he does n't know anything about claims to be his wife . In Korea , we have many kinds of work which are related to English , so you can get a job easliy . If you get the intership , you can work as a real businessman . Sheets in the second group then get seperated into good ones , which , together with good quality sheets , enter a process of packaging and distribution where seperate notes are cut and finally enter the market , and bad ones , which go to disposal with bad quality sheets , where both groups get securely destroyed . First of all , let me tell you the adavantages . She nooded and made another effort to look around . The other person was n't convinced , howewer . " He made sure his voice was heard on the streets , to reafirm his social position . The couple nooded and showed the ID of the man from the other city . The receptionist nooded and conducted both to the main hall . It is in these moments that I give it my all and realize that all the pratice I had really paid off . I am a cheerful , energetic and hardworking person , and I am also a very responsible person , able to deal with small and medium groups of children , and for this reason I consider myself as suitable for the potition advertised . First of all , in this film you do n't see a gangster Al Pacino . It 's about a retired army coonel who suffers from loneliness and depression . There is a great public transport syste . He used to dream about him coming into his bedroom , laughing out loud , showing off his sharp teeth , threating him with the most horrible punishments . Secondly , public transport is better for the environment than using cars because a bus has more space than a car and many people can go on a bus , thus decreasing the amount of pollution and helping the enviromnent . Without the routine that studying gives you , with all the dealines , the exams , and other stuff that force you to get things done , and , as a consequence , teach you to be a responsible person , which you will need to be when you get a job , you will simply be wasting one year of your life by taking a break . One thing that I 've learned in my life is that you should never take a break from your everyday routine unless you really need to , due to fatigue or for some other physical or pscychological reason , otherwise you will be , I repeat , just wasting time , time that you could be spending in a usefull way , by getting something done , or improving yourself academically , intelectualy or doing whatever you think can enrich your life . I like to beleieve that , like the old Latin proverb says ( and I have already said this ) , there will be glory at the end to the man who endures hardships on his path . I hope you do n't think that sharing these thoughts with you makes you my new best buddie . I am writing in reply to your advertisment published in the local newspaper for the vancancy of Junior Chef . Moreover , I am currently undertaking a Chef Training Course which provides me with not only practical but also theorical knowledge . Furthermore , I alwyas try to maintain a positive attitude towards my responsibilities and sort out any problem that may occur . I have fond memories from my childhood . She was always cheering me up when I was in sad or difficult times , even when she was not feeing well . Dancing requires a lot of things , like cordination , flexibility , and physical fitness , just to mention a few . This can range from the rules your parents have set for you , to the laws created by the governmen . And , of course , to add an extra actvity to my CV as I usually do every summer . I must say that not all of them are veru easy to work with . However , I must agree that travelling by car can give you more freedomn , you can carry your shopping and pick up other people on the way . It is known , that it is the job of paparazzi to follow famous people and look for sensation in their daily behaviour , and celebrities are aware of the fact that they are recognised everywhere , but an interest in someone 's private life , when the person does n't want it is basically a synonim for trespassing . If there is any problem with the cash registrer ( very common , actually ) , you have a phone number under it of a good technician . He was following an important European summint on environmental issues . Such an experience made Jake realise the considerable impact that a good public transport system has on people 's lives and their surrouding . - access to public transport is way cheaper than taking care of your own car ; though initially it might look like a huge disbursment of money from the community , in the long term it shows itself to be the most efficient way to travel ! This kind of action , when peformed collectively , requires coordenation of efforts and an abitity to work together , two qualities that are frequently forgotten in our individualistic world . If you play footbal , you know how to act when in a team . Also , footbal is a physical game . In times of escalators and cars , it is refreshing to find an activity that involves movement , velocity and strenght . In fact , it can be argued that the human virtues are a by - product of conflicts and fights ; that they are those character traits that we aknowledge as important for everybody engaged in a competition , be it for a trophy or for a country . In a club , you will find professional advice and also as many peopole as are necessary for a match . My name is Aly Meeuws . I am 16 years old . I live in The Netherlands at the moment and I am really planning on going to the USA in the future , so this would difinitely be a great experience for me , especially for my English and being away from home . Besides that , I also really enjoy cooking with my mom at home , so working in the kichens would not be a problem at all . Finally , it will look into possible future implications of this kind of technoogy . Namen and Kinnison ( 2012 ) indicates that " the three types of social interactions that social networking enables include ( 1 ) creaction of an online identity , ( 2 ) establishment of relationships between users , and ( 3 ) development of layered communities defined by the lists of connections each user establishes " . On the other hand , on Facebook , people can share pictures , vídeos and thoughts without restrictions . Furthermore , some departments of police in the USA have used Facebook to share a vídeo of a felony with the expectation of identifying the suspects , and their followers were apt to say something about the incident in response to the publication . For example , while women think about millions of things like what they want to do or have to do during the day , men just do nto think about anything and can be like that for hours , just whith a blank mind . I also learned that it is the mother that gives the principles and the direction of a man 's mind , and depending on her , he is going to be a sexist or not , he is going to help and be an honor man or not , he is going to be a good and caring father or not , he is going to be a responsible human being or not . Women do not knoe their importance for the future in their own homes . I found this movie both exciting and emocional . Both thumbs up for me ! We regulary organise film projections and discussions around a subject related to the film . For example , with every film seen , our students have the chance to practice their language and to develop their own opinions , particularly as we always have discussions aroud a subject related to the film . Also , our monthly speakers are exellent . For example , last year we invited a well - known actrice , Janet Hewitt , to share some of her experience on Broadway . Unfortunalety , organising these kinds of events is costly and the money from membership fees is not enough . Being founded in 1920 by our well - known alimni , John Carter , the English Language Club is the oldest club in our college . The fact that everyone from the community cand participate in our events helps us to develop a positive relationship between the college and the community . We hope you will be ablte to take all this into account and will find it possible to help us continue and improve our club by funding us . It was a hot summer 's day , everyone was walking to their usual destination ; work , school , to buy some groceries , pick up the laundry or their clothes from the cleanners . Everyone except Peter . In her left hand there was a large steaming cup of coffee that landed on Michael 's new shirt when he bumpped into her . One second later , Michael was covered in coffee , burnt and sticky and his mobile phone screen was twinking until it finally turned off with a dying flash . In this article a teacher refltcts on his experiences of creating plays and using them to help motivate students to develop their English . The most effecnive way is to practise every lesson for ten minutes at the beginning and end . Some learners will not want a spiaking part . You could even ask them to be promters . Also , they can see how much language they can produse . Regarding my academic experience , I am currently completing my degreee in Primary Teaching and Psycology at the University of Valencia , Spain , where my current speciality is misbehavioral children . So far , I have recieved excellent grades in all sabjuects , and I am on course to graduate with distinction at the end of the semester . Encoled you will find photocopies of all relevant certificates . It was from the most dangerous and terrifyng gang in the village . That was the first crime I comited and here I am now , in jail . If you like animals , you 'll ejoy seeing those beautiful horses running and jumping as fast as they can . However , I personally think that it should not be regarded too critically but should only be handled responsably , according to one 's personal needs . Before the trip started , the company who decided to make this trip said that everything was perfectly calculated so that it was imposible to have any kind of problem with the spacecraft . When you are sitting in the plane next to your instructor , with your legs hunging and your arms crossed … It makes an indescribable impression on you . And obviously , you should n't be afraid of hights to enjoy skydiving fully . My colleauges are nice but the management are terrible and recently I just stopped talking to them . Perhaps it is not their fault that this entire operation is so dysfuntional . In these cases , jounalists themselves should realize that they are taking it too far and that they should respect them a bit more . During this period , the town has seen extensive growth in residential areas and local amenities , and the modernisation of leisure faclilities . She was walikng around the city thinking about the job she just got . Everything was looking perfect and it was something she enjoyed ndoing before the accident took place . This is an easy word to understand , but it hides more than the defination says . I have 5 years of experience of managing , PR / marketing communications for leading brand nzmed companies : " Barbie " , " The Children 's World " , " My Toys " . In these companies I was engaged in the advertising of toys . These images became the subject of Feurer 's eponymos book , lavishly illustrated with 175 photographs , illustrating his five - decade - long career . The aim of this report is to inform the committee about the wishes of the students who took part in the survey that was conducted lst week in our school . Improvemnts to socialising opportunities Modern life orders our days and weeks in a packed schedulle of activities : job , children , housework , fun , free time ... By the time he arrived at the rivershore , some of his colleagues were already digging the ditch . I remember the warmth of twilight , wnich lures you to the heart of this town . I remember children , running about the small squares in fronf of the cathedrals ; elderly people in wheelchairs ... Nevertheless , when you are learning a language , it brings confussion . As a concecuence , he had no money to pay for a sod , so he was thirsty all morning . Tom was getting really anxious , worryng that he would never make it back to his job . At 2 pm , the flight arrived . Also , in Red Square one can see the Muasoleum , which is can also be called one of the symbols of our capital and the country . A corious fact is that , out of the five most popular sports in the world , only basketball keeps track of possession time and to me that 's exactly what sets it apart from the others . While watching or playing any kind of sport , there 's nothing worse than a team or a player trying to waste time untill the clock runs out , the game becomes dull and boring and you ca n't enjoy the excitment that only the up - tempo style of play can provide . The bottom line is ; a fast - paced game is a much more exciting experince for players and viewers than a slow paced one and that makes the " shot clock " fundamental to the dynamics of the game . Practice is the one thing that can increase the probability of desireable results and awareness is what gives you the ability to adapt to different situations , and the combination of the two is the only way to success . So if you want to be a good player , you need to put your energy and focus on practice and stay alert and surveing the court at all times so you can be aware of what is happening around you . The " 10,000-hours rule " is said to have a scientific basis , in spite of the fact that most of its defendants have never read the study that stablished it . A network developed from the South of France to Switzerland , espescially to try to save thousands of Jewish children . But now , they have told the whole world about it , some of them are now considered as heroes in Insrael for what they did during those hard times . As the population grows exponentially , the resouces fail to do the same . The hard truth is that until somenoe has to face the situation himself , it 's quite difficult to restrain oneself from wasting energy , food , materials , water ... We will have a great time together here in Uruguay . You will see some of the most popular places in this beautiful conuntry . Kyiv is a good destination for shoppoholics . The best manufacturers of clothes , linnen , accessories have their shops there . Jewellery and watch shops can also be found nearby . Different shops will offer a wide range of goods and impresse with interesting design ideas and unique styles . Even though their relationship was of the quarelling type , everyone around them , friends and family agreed on the fact that the pair were as solid as a rock , and despite the ups and downs , love had always won in the end . Frist of all , the biggest problem is that the world 's resources are extremely unequal . Secendly , with the increasing of the earth 's population , the areas of farmland are also decreasing . People in economically developed areas are in pursuit of the perfect life and the people in undeveloped areas are strving . Grandma 's wrinkled face can be horrofying at night . After an hour Mindy was holdin her baby- girl and Peter was trying to realize what had just happened . This kind of transport is regarded as a covenient way to travel . However , I disgree with this idea . On the one hand , it is enviornmentally friendly to use public transport rather than cars . Although I rarely watch the show on TV , I like the way they are trying to keep up with modern technology and that they are always making boring nes so vivid and interesting through short video clips , pictures and their choice of words . They had all got special clothes and dressed up in colourful , old - fashined dresses . Its historical importance lies in the fact that this place represents the fall of the Muslim kinddom in my country . After a few drinks , I told him that I 'm currenly looking for a job , nothing big , just a couple of hours during weekends to make some money for my journey to the Netherlands . It 's literally 10 - 15 hours on Friday nights and Saturdays , stuff like carrying instruments ( which means hanging out with musicians ) , tyding after ( finding things , like wallets and cellphones ) and , generally speaking , - helping . I 'm a chemist , I ca n't kill people becasue I want to . However , their whole lives will be turned upside down when an elegible bachelor and his friends set up home in a nearby mansion . Friendship is overall an acto of will . Friendship is a type of love which is characterized by being incondicional , reciprocal , and ready to forgive each other . Since ancient times , public transport has existed , and it suffered numerous assassination attempts . In China , for example , the dynasty Yuan prohibited public transport ( at that time , charriots ) because of fear that Han people could plot and riot against the Mongol 's dictatorship on it ; the situation was reversed in an early socialist regime when , in 1960 , Mao considered personal cars an instrument of opression and symbol of devilish capitalism . Convenience has litlle to do with the fate of public transport . Countries with high HDI ( convenience to be drivers ) , like Germany and England , are those with better public transport systems , and they are even boosting them . Hi ! My name is Alexia , I am twenty - three years old and I live in Argetina . As I have alrealdy said , I play sports , and that is why I could be helpful at organizing sports and evening activities . I learned how to cook when I was eight , so I am pretty confidente and well prepared . Bad sheets and bank notes will be securely destroed . My goal , I decided then , was to become a pilot when I grewn up . My mom has a kindergarden and I love helping her out . Every summer I help on my mom 's summer camp , but it 's a summer camp for babies and I would like to work wth older children , because I think it 's more challenging . I would love to work at any place across th US . I am very good at artistic things , such as , drwaing , painting , cooking , dancing and a lot of other things . My cousin , who is studying English Literatura , told me that you have much more freedom when you start university , so do n't worry ! Lnguage itself also becomes vitally important : the boy s ' speech is peppered with made - up words that highlight the isolation . There must be something very special about a movie when , after the third time , you 're still leaving the cimena thinking " I have to see it again " . Starring Italian comic Roberto Begnini ( who also wrote and directed the movie ) in the main role of Guido , this life - affirming tragi - comedy is about a Jewish father trying to shield his young son from the horrors of nazims in the Italy of Mussolini . To achieve this , Guido creates an imaginariy game for his child once they are deported to a concentration camp . The strength of the movie relies on the goofy , loving , eccentric character played by Begnini , his exceptional comic talent and his ability as a director to deal with such a delicate topic as Nazism while managing to drive through a thick line bettween comedy and drama . Honestly , I could not agree more , as the website as it is available today is an inconvenient tool providing insufficient informaton . If you haven't been yet , you should definetly do it . I promise you will love it ! But most teenagers are even more intelligent than adults or erderly people . Sometimes it happens that a couple who have a child aged from 12 - 16 , querls . Tennagers also have to make serious decisions like choosing secondary school , future job , which way they will go in their life , if they want to be in a relationship with someone . Thirdly , I do not have to be concerned about the loss of qualitiy of photographs and pictures . When we thouhgt that the night had ended , we had the perfect dessert . One of Slovenia 's qualified somnelliers will help you choose from the good wine cellar , so this is the place where I recommend our class can relax , eat , drink well & enjoy the happy atmosphere . For example , in India nd China the technological advances have enabled them to mass produce really affordable cars , which are also imported . After aeting a delicious salad and drinking tea , she went to her room to do her hair and put her make - up on . Lancaster is situated close to the Irish Sea und just around the corner you will find the stunning Lake District with its romantic lakes and peaks . If youe leave the main roads and turn into the little alleys , you will find charming tea rooms and goregeous antique shops with a wide range of antique goods . I did that for three summmers and I still help out at my parents ' restaurant when a they are in need of a hand . from her outter appearance , she seems like a little girl . Talking about her outter appearance , one can easily see that Scout is not " the usual " girl . Instead of celebrating it , she somhow inhibits Scout 's learning . The most important ones are probably hotchpotches : mashed potatoes and vegetables , often combined with smoked sausage . In today 's intercultural world , one of the best assests people and nations can have is tolerance and a deep appreciation of cultural values different from their own . However , it is probably a truism that reading about or watching films about a country are only pale subsitutes for actually going to visit a place and experiencing the differences yourself . The article " Stairways to Heaven : Gothic Architecture , Heavy Metal , and the Aesthetics of Transcendence " is an unparallelled one in terms of the discussion it provokes . I conpeted in singing competitions when I was younger and I took acting classes . And finaly , the moment was there , the opening night . I put on my costume and walked on stage . I had to wait untill the curtains opened . A clear example is that watching television in another language is of vital importance if you aim to learn new vocabulary or improve your comprensive skills , and it makes studying a language really fun and enjoyable . Kachl 's Park is a perfact place to spend some time walking along paths , sitting on a bench , talking to each other . Security against terrorist atacks was promised to be stepped up , but policemen are not seen in the streets and neither are security cameras . If you have strong neves , do your window shopping in Bahnhofstrasse in Zürich . Usuallly he was energetic , full of confidence , ready to party . He was not stupid , but you could not expect any perls of wisdom from him . However , all the people in his neighborhoor feared him because of his past . In this way , he moved to his new neigborhood where everybody respected him . Although he had been trying to hide this , his personal problems were ovbious and Magda did n't feel happy with him . This means you can set the time you want to leave , because you do not have to respect a specific timebable . This way you will have the chance to have a more relaxing journey through the countryside , traffic will not be so intense and aggressive , and finally , you can plan the time you want to arrive , using a GPS or other technolology to help you plan your journey . To sum up , travelling by public transport can be advantageous when you travel inside a town , but when you have to travel outside your specific territorry , nothing is better than a car . You can tell because eyerybody looks at her like she is some crazy murdering kid . If I have to , I search the web for information and implement it but it requieres time . His name is John , and like me he is doing a degree in Phisics Engeneering in the hope that someday he can work at a research center , such as CERNE , convinientely located a few miles away from his house . But getting used to the Internet 's rules of comunication , they might find it difficult to face up to reality , and make friends in the real world . Using messages , people forget to use grammar or even form full sentances . There is also a building which can be considered an interacive museum . In a very interesting way you can find out somehing about the history of Siemianowice and about mines . One day I dreant that I was a millionaire . I bought a huge detached house surrounded by tall trees in a beautiful city , maybe in a city like Seville . I enjoy partcipating in debates . If you would like to take my appliciation further , then I would be pleased to hear from you . All in all , I think this woould be the best restaurant for our class to go to , since it 's close to the school , it has good prices and a friendly ambience . You only live once and wasting such a great possability is unthinkable . We are slowly but inesorably loosing readiness to solve problems , unless we can surf the Internet , so that even a single day without technology would turn out to be a nightmare . In my view , we should all riconsider the role that computers have gained in our lives . In addition , my knowledge acquired by managing a bar and a certificate in hygeinic food handling will guerantee a clean environment in your bar . Now we are going to evaluate the main charactheristics and differences between a pellet stove and a pellet boiler . As mantion above , the heat is necessary to warm up the air that , thanks to the fan , will be blown out to the room in order to warm up the external ambient ( e.g. room , bathroom , kitchen ... ) . The structure is pretty much the same as the pellet stove . The difference is that , instead of a fan , here we have a pump due to the fact that the goal of the boiler is to warm up water and send it to the heaters all over the house , so it needs a pump to do that instead of just a fan ( the pourpose of a fan and a pump is the same : move fluid from a point A to a pont B , but in one case , you have to move air and in the second case , water ( they have a different density : water has 1000 times the density of air ) . Then with TVs , information started to spread faster and faster until our contenporary instantaneous reports from across the world in the palm of our hands . Sometimes , it seems we have reached the pinacle of existence . I 'm sure the pharaos of Egypt felt that way when they gazed at the Pyramids . Firstly , online learning conveys flexibility in its shedule . Studentd can attend courses when they decide , but always respecting due dates . Consequentlu , both learning options have their positive and negative aspects . Publis transport is always going to be slower , less flexible and much less convenient , but we have the reassurance that we are doing what is best for our planet . These people believe that ver the next few years we will see a severe decline in the number of people using buses , trains , trams , etc . to get to places . In my opinion , this is dissapointing for a number of reasons . Imagine going to work on a rainy day : you have one hand on your umbrella and the other clutching your bag , the wind is blowing mist on your face and a puddle of water is sprinkling tiny dots of wet dirt on your stilleto while you are making your way to a bus stop . He walked up to her room , where she was comfortly sleeping in her bed . When I was in school I used to go to my granparents ' home to have lunch because my parents were at work . I fondly remember my gandma 's great cooking skills that she still has to this day . By the time my high school years were done , and when I attended university , I developed a certain predilection for typical healthy Spanish food , unavoidibly combined with less fast food due to the usual dinners with friends . The cost of the waste disposal service depends only on the volume of non - reciclable waste produced . There are also public conainers for glass and clothes all around the village . Michael had a chemestry test the next day , but he was n't in the mood to study and so he decided to call Alex , his best friend : - Souds great . Michael grabbed his coat and creept out of his house in order not to wake up his parents . He remembered that he still had n't studied for his chemestry test . If we think about it , the car is better because we do n't need to wait for it like we wait for the bus or underground , but on the other hand , cars cust more money than public transport . In a car , we can just be by ourselves , which can be good because we can listen to the music that we like and we do n't need to be around people that are unknown , but if we choose public transport , we can meet friends or family , so both modes of transport are good , and cars do n't need necessarialy to bring an end to public transport . But , even if it 's true that it 's the fastest option , you must be very carefuly when it 's time to get off a plane . If you are looking for confort and relaxation , obviously , you have to take a boat . There is n't any comparation with watching the changes in the landscape through a window , enjoying the route that you are taking and , the best part , the cheapest way to get away some days and take the routine off some days . I went to the abandoned house and started to think of the best way to make his life miserable . I spent the next 2 weeks looking for ideas to make him sufer . As I did n't find anything , I went to the place where he lived and started to look for some information about his life and find people who he cared about . So as I continued to go to his house , I noticed he would alays go to tehe same house , s I decidec to follow him to the house and I foun out he was dating a girl . She might be his girlfriend , so I finally gota an idea . I would drive him crazy just as he did me . That way she would think he had problems with his mind and leave him . But soon i thougt about it again and realized that if I did that she would try to help him and they will be more united , so I decided to drive them both crazy , almost to the brink of death , just as he did with me ! I screamed . My anger had dominated my mind . I did n't have any control over my actions . I was afarid of what I had become and what I could do , but I could not control myself and the only thing I could think of was him suffering a slow death and the satisaction I would feel when I finally had my revange . The best revange . But I was so mad at him and so ansiouns to make his life imposible , and soon my fear of death and my anger for all of the sufering I had been throug became stronger and greater . I had made a decision and I was goingo to do it . If he dedicated 4 years of his life to tourtoring me and not wanting me to be happy , the time is nesesary for him to have a miserable life and I wo n't stop until I have acomplished my goal . I graduated from National Taiwan Unerversity of Science and Technology . I am interested in looking after chilren and playing with chilfen . I always simle at people . I want to play with children and see their simle all day . This conclusion becomes more prominent if we look into the data of the car companies and the exponential growth in their sales figures and , with low budget private cars in the picture , the scenario has ddrastically changed in the past 10 years . At our school or villiage football stadium I spend a lot of time every day . I want to give advice to anyone who starts this sport : " You must believe in yorself " . Hallo my firend , You regret that you were n't there with me . I 'll try to dicribe everything precisely , becouse I know that you very It was a long time ago , but , I still keep the rhthym in my body ! Around the city , you can find many places where people throw frigo , ovens , " amianto " , old things or furniture . I remember , when I celebreted my 15th birthday , only one schoolmate wanted to come to my party . I think that that day was one of the worst days of my life . I 'm lerning a lot and the students are very friendly . But I need to study harder because I want to pass the exam , and it 's very dificult . Technology has chanched people 's lives a lot . In fact , we can think how different our life is compared to either our parents ' or our grandparents ' lives . For example , my parents did n't watch TV , because there was n't any TV in the world when they were young . But that is n't the only difference : we can think about the mobile phone , the computer and finally the internet . Our grandparents could n't have imagined a strange machine like the computer in their lives . So the best way for them to travel is public transpotations . Each person should practice saving energy when using any source of eneny to protect his own life . In conclusion , investments in developing public transport will be increased considerably . Public transport services have a bright future and their existence in the future ca n't be replaceble . Are you free at the weckend ? Have you got any plans ? If you are interesedt , meet me at 8 o ' clock near the cinema entrance . Jason is my friend , he is drunk and he also dances with his girfriend . A friend of mine recently explained that if a zombie apokalyspe should happen , he would be prepared because he has been watching Walking Dead for some time now - so in his eyes , he learned how ( not ) to act in that case . Apart from eduational content , there is so much bad content , business advertisements and fake information on TV that citizens wo n't be able to tell right from wrong . First of all , you need to be able to afford to buy it . After that , you must pay for the asurance , road tax , and mechanic 's bills , and so on . On the other hand , with public transport , you only have to pay for the ticket , you do n't have to drive , and if the bus or train or whatever vehicle you use breacks down , it is n't your responsibility . The next day , Huck went to Tom 's house to tell him that there was an abandoned house up the hill , so the two boys considered like an andventure . So they went to the misterious house and when they were inside they heard voices , so Tom and Huck hid and they saw that Injuin Joe was the one that was talking . So he went back to Sarah 's house and cleaned the whole bathroom , but Sarah already knew that he had left the bathroom like that , so before Michael entered the bathroon she said : " I know what you left there " and Michael went running to the bathroom . I like my maths teacher very much because her teaching style is very realistic and simple to understanad . I said that because when I was eleven my best friend had an operation on her back and , before the operation , he came with me and , every day , I had to wait for her because she spendt a lot of time in the shower cleaning her long hais . I hated that ! I have a dog and its name 's Chente . It is a golden retriver . Also , I have a brother whose name is Jose Luis . He is twenty years old , his personality is dinamic and funny . My mom and my dad are goog people . Another thing that you must know is how to deal with people . We are searching for someone who can impress everyone , also someone who can give the customers good atencion and service . It is easyier than you think . Every Sunday , we do a mutual cooporation where anyone can treat rubbish as well as they treat themselves . Meanwhile , we recyling inorganic rubbish too . First , I agree with the given statement that there will be a tough time for public transportation in the near future , because people wamnts privacy as well as freedom , which is quite impossible on public transportation . as much as possible of the city or town which mismanaged routine for people who travel by public transportation . As a consequence , generally , people avoid travelling by public transportation . Finally , I can say that there are various modes of transporotation avaliable which play an important role in giving tough competition to the government . As a result of this , the consumer gets more benefits , like lower faire , privacy , freedom and safe travelling . In addition , many automobile companies launcing new cars at affordable prices , which encourages people to use more and more private vechile . Usually there are generational problems ; sons do n't understand parents and vice versa , but by dialoging and listening to emotions and facts , everyone can have another point of view . It will be very cool to see the las part of Mokingjay ! In my opinion , it 's very difficult to fnd this advantage with other sports . He took the money the next day , he finished the registration and started writing the story . After spending a long time writing and doing a good job , he went to give his story to the international student magazine office . He found out there was a notice on the door saying that the competition was canceled . He came back vey sad and told me what had happened . Michael closed the door and knew at that moment he had made a mistake . The vandalisme in Patras has increased a lot . In my opinion , the police should stop the Vandalisme . What they will do in future they see as in a fogg . Secondly , such a year off would give future students a chance to try themselves out in new professional sphears . Also , they would have an opprtunity to be involved in volontier work . This year - long holiday would be really helpful for relaxation and gettin new energy for further education . I believe that there is no future for public transpot , using trains is mor convient and less expensive , so to decrease the carpon gases which are affecting the ozone layer , people should be aware of the effect of using public transpotation on the econmics and enviroment . goverements should encarge people to use other modes of transport . This subject should be issuesd in all media to teach and encrage people to use the wrigth mode of transpot . Because if we are Chinese , why do we give up our mother tongue and learn about our owne culture through a foreign language ? Woolypools is a speciallist of meal , it 's a meal restaurant . With the sweeping progress of development and the booming of populations , a lot of agricultueal land , forest and ocesn has been used or destroyed to build more buildings and transport networks . To start with , there are a wide range of problems it may leadding to . Additionally , people now continue to destroy more agricultural land and forest in order to satisfy all their needs , which will distory the ecosystem , diversity and biodiversity , especially the endangered species . In light of the problems mentioned above , there are various approaches that governments should adopt to deal with this problem . First of all , reducing building constructure from now on , and planting more trees instead . Sustainadle development should be awaness to all human beings and start to porteat the environment and preserve the animals . To sum up , this unpleasant phenmenon and its problems should be worked on to resolve them before things get worse , ang the governments have to take the responsibility for that . I took that decision because I was tired of trying to learn English and I did not have the level that I wanted , so when I heard about that ooportunity , I said yes . I want to say something about learning the English Languaje . It is hard for me for the following reasons : First reason : the grammar that teachers or institutes teach is like the Spanish Languaje , my native Languaje . I want to say that it is very difficult to understand the conjuntion of the verbs in Spanish , so just imagine the same but not in your native lenguaje . Second reason : in English syntaxis , the rules for constructing paragraphs or sentences , the verb is written before the subject , but not always . What is the rule ? I can recommed you to my uncle 's company to get a job . In view of my age , evening activities are not a problem for me , and I have played many sports during my life , such as socker , bolleyball , ... To sum up , I still consider having your own car way more safe and convinient . Even if it happens , there are many people who ca n't get a car , because it is too exspensive , not only to buy , but for fuel , service and so forth . Whethere tourism has had a positive or a negative impact on our lives , it remains quite a dilemma for the ignorants . Alongside its development , the ablity to travalling has become easier to such an extent that it is now quite common to commute from one country to another . The existence of multinaionals is tightly connected to the idea of tourism , as well as to the idea of globalisation , since a traveller is not just a citizen of his own country , but a global citizen . There are countries , such as Greece or Bulgaria , in which the econmoy relies completely on tourism . If tourism influences the econmy , it thereby influnces the environment , and if it influences the environment , it influences transport . How ? people become more careful at their historcal sites , thereby preserving them . Transport is developed both on a small and a large scale . On a small scale , in cities , in a way which will allow citizens and tourists alike to reach important places more efficently . I would like to go to a new artist rolls competition , although in my city there are n't a lot of competitions of this kind . If I had the posibility of going , I 'd already buy the tickets . At the beginn I went to the childgarden and they taught me to ski . My father took me between his knies , because I could ski without falling over and it was fun . I had my first snowboard lesson und I loved it . I enjoy snowoarding , because you feel free when you are going down the piste . You are very happy und sometimes I sing a song and the world is perfect . No future for a public transpotr ? Is this claim true or not ? I think that it all depands on the development . Yes , I agree , if you planned the journey for a faraway distation and for a long time you would prefer to do it by car , because , firstly , you 'll spend less time , your journey will be comfortable , you 'll have the possibility to stop any where and for a long time , as you need to . But if we are talking abot travelling across your city , would you prefer public transport or car ? I think that this is the guestion for everyone , and there ca n't be one answer for all , because one person can use public transport , and save in this way not only money , but the environment , but some people do n't like to use p.t . because they spend more time travelling or they simply do n't like to travell with other people . guide people and give them infomation , details and guidelines about pollution . I 'd like to tell you about my favorite restaurant . It 's name is " Lemon " . I go there every week . It has different food to other restaurants . I like crispy chicken with garlic sauce . It 's an excellent choice for me . And my favorite appitizer is susage and in order that dessert I like " Vadge " cake with chocolate sauce . I feel at ease when I go there . I enjoy classical music while having lunch . About the service : it 's very good and all the staff are respectable . I ca n't imagine one week without going there . That would drive me nuts . I advise everyone to go there and enjoy their time there . Also , this restaurant has a relative advantage in hygiene really . It 's excellent . The striking thing for anyone , is that despite all of these advantages , the prices are not expensive . Volleyball is my favorite sport because when I am playing with my team , I am in another world in which I can be free and happy . Apart from this , when I am feeling bad , this is a distration from university . You should try playing , it 's such fun , but I warn you , it is not easy at first , but you hace to try many times like you should do in life . On weekdays , I get out of my bed at 7 in the morning to go to my work , which startst at 9 AM . In the newspaper , he read an interesting noticie . The noticie was about a competition . The story was very good but Michae did not know how to end the story . Public transport is usually restrected because of the timetables and you can only use transport at the time that the timetable lets you . I felt like a star ! Crowds of people were waiting in front of the dressing room for autographs , but only me and my sweety girlfriend got them . Advertising is everysite . TV is the most accesible means of communication and people can see the messagen in this way . It was really importatnt to him because he had been training for 5 long years since he was 15 and he had n't achieved anything . As our town is well - known for our magnificul beaches along the Mediterranean coast and for the Olympic Canal of Castelldefels , many foreign and local people come here to do activities like kitesurfing and windsurfing at the beah or canoening and waterskiing on the Olympic Canal . Well , the airport is located just outside Reus . It 's small but it has a lot of servicies and transport . With the purpose of actract more peole to join the club , besises its good points , I would highly recommend that they should arrange the time suitably and avoi they hold the acivities to avoid problems . Desgin the bank notes is the first and indispensable step . Peple should decide the background colour and thw artwork and they have to consider the security issues . As for good quality sheets and partially damaged but still good sheets , people will cut them into separate notes and pack them together in order to dispacting and distribute the bank notes . If the partially damaged sheets are bad , they will be treated as bad sheets , which will be securely distoryed . Everything began a few years ago , when Alfred , the Mayor , read an article about the importance of the surroundings to the health and happinness of people . You probably wo n't believe me , but I met all the members of Dżem band . I talked to them and we had lunch together . They 're very nice men . Because of helping them , I had the best place during the concert and I have their authographs on the latest record . I did n't have many duties and none of them were unpleasant . I am keen on cinema and I love to watch all types of fims . In addition , I think that the settings are very reallistic and the actors gave a great performance . Although I am a young girl , I think I am a quialified person for the post . I am a preschool teacher and I have experience looking after chilren from 3 to 12 yeras old . I consired myself quite patient and fun . In my opinion , they are two highly necessary qualities for this kind of job . Although privately oned cars are more and more popular , and they are increasingly becoming a common asset even in developing countries , it is not likely that this means of transport can be the means of transport of the future . The flight was approximatly five hours during which I watched beautiful movies . In New York I ate so much . I also went to the city thay never sleeps : Manhattan . My aunt gave me a lot of presents because she said they do not see me frecuently and many other members of my family . In conclusion , I had a perfect vacation where I saw new things , visited awesome places like Niagara Falls and Time Square , recieving a lot of presents and , especially , ate a lot of delicious food . In order to enjoy travelling to Mexico , I would give two important pieces of advice ; first , try to get along with your travel companion and enjoy the Mexican food instead of criticising the spicy savor . In this way , visitors will be able to enjoy Mexican food with less pepper and the same delicious savor that is so characteristic of our country . Also , this phenomenon of taking photographs is part of our daily life , because it is the best way to capture special moments like birthdays , travel , special ocassions , etc . What if you do n't have any of those requierments ? Then you know hockey is the aswner . Nevertheness , it is never enough , because dog owners are mostly to blame . We live in a cottage and we have several bins which are clasified according to the material we want to recycle . They occupy too many seats , inclouding priority seats . Moreover , some old people might take this considerative action for granted and they might even command young adults or students to offer their seat without manners ! I have also worked with large and small teams in back - offices , managed many administrative activities related to mortages , personal loans , contability and investments . We are told about a lot of innovations in this spheare . There are a few reasons whcih show you why it is important to learn a foreign language today . Second , for finding a good job opportunity , the business exchange is increasing at the intrenational level . If you speak a foreign language , certainly it adds some value to your profile and you can get a higher salary . Dear Sir or Madamme , On the one hand , holidays are the best for people in terms of thinking clearly about their experinces in life . The reason is that people must complate their tasks in order to earn more money to maintain their lives and they forget about these emotional feelings such as love , helping people or thinking spiritual thoughts . I have worked in an Easter camp too , and I have already organised a lot of ativities , like " rappel " , paintball ... What an unfoggetable day ! Swimming as a sport is very useful for wieght reduction if you are obese and need to reduce your wieght . It is also the best sport for asthmatic patients , because it strengthens the chest muscles and decreases the vulnerability of those patients to respiratory infections . I saw so many interesting things during the preparetion time . Regarding advertising , technology is having a huge and not always possitive impact on outdoor advertising . It will suit me sometimes , and it will even be useful , but I 'm also sure sometimes I will find it aggresive . The way it feels aggresive to enter a square or plaza in my town and find it full of bright screens , no matter how beautiful or artistic the pictures displayed are . But , technology is hre for better or worse , and we have to learn to deal with it the best we can . I 'd like to have a big detached house in the sububs of Artem or Vladivostok . If I had this house , I would decorat it in a modern stayl . It costs less money and you can choose exactly the moment , where and with who , to watch this or that televison program . Actually , students eat a lot of fast food while they are studying at university , because they do n't have time to cook food . For these reasons , I think that the best restaurant is somowhere where they do home - made food , and a good idea for the main course is : baked potatoes , steamed vegetables and , for dessert , apple cake . They are incredibily delicious . She was eighteen years old , she had to be indepedent . She went there and thera was the doll with a knife in her hand . ' ' Bell , why do n't you play with me anymore ? Are you bored of me ? Just because I have only one eye ? But you removed the other one . The girl had a knife in her kneck and on the wall there was a sentence , ' ' Why did you leave me that way ? '' You can even talk with native speakers by using some Chat Rooms online such as Skipe and others . One thing you should keep in mind if you want to play football , is that you have to be ready to reacive some punches . On one hand , becoming a public figure is associated with jornalist , mass - media , flashes . It seems to me that journalists might be absolutely toxic and they have a bad infulence on society , which assesses celebrites through the prism of journalistic documentary . The value of their talent and abilities is measured in the amonut of tabloids scandals . When I worked as an educator , I used to plan and manage some sports and outdoor acitivities . The same with my parents ; they are old and sometimes they call me to talk about their healht . Concerning video - games , I agree with scientits that think it helps children 's brains to develop , but it is important to supervise them , because there are a lot of violent games . DOING EXCERCISE IS GOOD FOR YOURE HEALTH Doing excercise is an important thing to do in a healthy and happy life . While you excercise you feel well in yourself and in your body . Soccer is a great sport where you can make a lot of friends , you can stay fit , but you also need some skills because it 's not easy to controll the ball and dribble your rivals on the field . I know that catching a celebrity doing celaning or taking a dog for a walk is shocking news for people who read tabloids . So , as you can see , I agree with the statement that famous people , who are recognizable , deserve to have a privte life and the ability to have a normal life should also be given to them . Once per week on Wednesday , robbish is collected . That is a very good idea , because that robbish undergoes recycling . Everybody cares about cleanlinees in front of the house and in the garden . Margination has a link with the illegality of this activity . I am writing to apply for the post of summer camp councellor currently advertised on your website . I speak English , German and Polish and as a councelor that is very handy . I am hardworking , reliable and well - organised and I can take control of difficult situations . I am talented when it comes to entertaining people , which might come in very useful in my role as a summer camp councellor . I 'm seventeen years old and I 'm an electonics student from Italy , in the north . Recently , I started studyng English in particular because it is the most important language in the world , so I need to know it well if I want to communicate with other people from other countries . Mar Azul Resturant , in the north of Mexico City , was the location for the fourth day of Puerquitour . After her 18th birthday , Anna felt a sudden need to know what happened to her bilogical mother and why she gave Anna away . After finding the adoption papers , she contacted the adotpion agency . She convinced the lady at the agency to give her the name of the biological mother of " her little sister who had a disease and needed to know if her bilogical mother would be a match for a kidney transplant " . The importance of working hard to achieve goalы and practicing regularly to become good at something are also demonstrated by professional sportsmen . For instance , if my goal was to increase young people 's awareness , some strategies could be to increase online social media presence by posting regular updates about my language school on Twitter and Facebook or to offer discounts for sibblings . The last step would be to recruit a staff of prfesional , experienced and qualified teachers and to set an attractive and reasonable price for the services I would provide . Undertaking a scholarship and admission to one of the universities I have selected above will provide me with the opprtunity to apply the knowledge gained at high school in a business setting , as well as develop the communication , organisation and numeracy skills I acquired at high school . In conclusion , I can assure you that I will be a capable and dedicated student who has the committment and dedication to work hard in order to be a graduate , whilst at the same time , contributing greatly to my chosen university in more ways than one . Despite these two being the most popular sports amongst atlets , many more are just as interesting and beneficial . For example , things might not go as they had expected for multiple reasons , such as not having enoff money or not getting a job . In addition , we had to have one year of volunteering in a Youth Supervision environment in preparation for our final assingment , so I am able to be a member of your highly - skilled staff . Since I was 13 years old , I have helped my parents with bringing up my four junger siblings . I have a friendly , happy personality and find that I enjoy the chalenges of working in youth environments . Max and his friends took a walk under the trees when , acroos the river , they saw something that looked like an animal lying on the grass."What 's that ? " , Max said aloud . It 's about a teen couple who are diyng of cancer , and they have different ways of thinking about life and death . This movie touched me very deeply , it made me think about life and about the way people usually live without apprecciate the really important things . It is a ciclical process . Rome had its hayday in the first century AD , but just three centuries later , it was only a shadow of its past . One day in the future , another Franz Ferdinand could be killed , and that symbolic event could serve again as an escuse for some country to declare war on another , but the true underlying causes that actually led the countries to wage war against each other would have their roots in much older times . As the causes of the Second World War had its roots in events that were the outcome of the First War , a Third , hypothetical war , could have its roots in a past conflict that may well have happenned already . During the next centuries it was expanded , and in the 16th century , finally rebuilt in a Renaissance style , which has remained unchanged until today - the most representative remnant is probably the famous arcaded coutyard . During the tour , the visitors are shown several rooms and apartaments , as well as the Royal Private Apartaments with world - famous tapestries of the Polish kings ' collection . Everybody say it 's the best period in our whole life ; what they do n't rembember is that it can also be the worst . This could be one of the reasons why we get angry so easily and so often with our parents : every time we descover something new or we say something , they judge us or they begin some long speeches to try to change our ideas . As I said , adolescents can be very confused and if there 's one thing that gets under our skinn , it is when moms say something and then tell us to do the opposite . That kind of love that we see in movies and we dream of ; the type of love that does n't let us fall usleep at night . Travalling by car is also much more convenient . In conlcusion we can say that , from the standpoint of doctors and nurses , working abroad is a much better deal . Dangerous dogs who were trained to kill and maim in similar underound dog fights have already proved deadly to innocent people . The new boxers could be even more at risk . There are all sorts of proposals ; lighter and more cushioning gloves could be worn , ban punches to the head , headguards worn , or make fights shorter , as most of the serious injuries occur in the later rounds . These would all show off the boxers ' skill and tallent and still be entertaining to watch . However , such a rebellion can not be seen clearly in each minority work , and , therefore , the products of ethnic American literature can not be catagorized as merely the result of years of oppression . Emphasis changes with each work , and although figures of authority are particullary oppressive in works such as Like Water for Chocolate and The Color Purple , other minority works including Love Medicine and Jazz do not reflect the clearly defined authoritarian figures nor the obvious rebellion of the characters ' responsive action which the previously mentioned works show . This again implies that these etnic American pieces of literature can not be catagorized as merely rebellious responses to oppression , but as individual reflections of personal and cultural experiences . Philosophical optimism -l'optimisme- is the philosophy that everything and any occurence is for some good . The supremacy of Parliament will never be challanged . But with the average jingoistic Briton there is no chance of us curing ourselves of our xenophobia and ever wishing to be fully intergrated with Europe . In fact , in political , economic and defence terms , I feel this realocation of resources can and will be very positive . Whilst , to a certain extent , I may be guilty of having an island mentality , I would n't go as far as to say Britain is in danger of handing all control over to faceless beaurocrats in Brussels or Strasbourg . This process will continue and Europe and the rest of the world will evolue with or without the participation of Britain in this process . In relenquishing and thus centralising certain powers , the aim is not to diminish the strength of individual nations but to increase the overall impact of Europe on the world stage . It is up to Britain therefore to accept this fact and to show an example by leading the way as regards tolerancy . These superpowers were economically , militarally and politically stronger than the divided individual European states . Whether or not the continuation of the progress in the field of European unity is sucessful depends very much on the people of Europe . To remedy this , the government has started adding a fourth lane on some streches of our motorways and constructing ring roads and bypasses , with mixed reception . The inability to cope with the ammount of traffic on the part of the road system obviously increases the risk of drivers having an accident and the drivers have to be constantly alert as they are nearly always in capacity traffic . It might seem an easy soloution to this mayhem would be to use public transport ; i.e. the railways . People are not taking to the rail system because of its lack of integration due to the recent privitisation of different areas . Then people would be more likely to catch the train , as they would not have to look forwards to a long walk , wait for a bos or pay for an expensive taxi ride . My soloution to the problem would be to improve the rail system and its related bus services . This would get people off the roads and onto the trains . To improove the rail service , trains have got to be timed to arrive and depart at key times , i.e. arrive at eight o'clock and leave at half past six . The train and bus companies have to liase with each other and the train fares have to remain relatively cheap , i.e. the same price as or less than it would cost to go by car . The basic dilema facing the UK 's rail and road transport system is the general rise in population . Most large cities have managed to incourage commuters to use public transport , thus decreasing major conjestion in rush hour periods . Another major problem created by the mass of vehicular transport is the pollution emitted into the atmosphere , damaging the ozone layer , creating smog and forming acid rain . Tourturing the Earth we are living on . To illistrate my point , if every time you took a train , it stopped for 2 hours on the track , everyone would stop taking it . The most likely answer lies in 2 areas . Firstly , the attitude of many westerners is that it is their right to travel in such a mannor . I am by far and away no ' greeny ' who wants to make everyone live in tipee s and eat soya bean soup . However , I do agree that somthing should be done about the volume of traffic that is on our roads today . Do we , the westeren world ( 5% of the population of the world ) , have the right to use the resources of the rest of the world at this environmental cost ? Just beause we can not be bothered to get out of bed a bit earilene to catch public transport . That could have disasterous implications . The 2nd reason , is the promblem that the public transport service , for example rail , is declining so much ; there is no train to catch in the morning . This has now been intensified with the sale of the railways to privite rail companies , profit motivated . The vital , small rail links may now be closed , whereas priviously they where subsudised to make up the loss . Now the privite companies can not afford to do this , so many will close , cutting off small towns and villages . The only way to stop the circle will be to break it , and the only people to do this is the government or ourselves . If we make the effort to use public transport , it will expand into a good service . Unfortunately , the public seem to be appethetic towards this idea . Although it may sound cruel , I do not beleive that any fighter has entered a proffessional boxing career without knowing the risks . The boxing federation is trying to do as much as it can to make the ' sport ' safer : having rungside doctors , banning bare hand fights , but the top and bottom of the argument is that any blow to the head causes considerable damage . A recent death in the ring has inevitably led to a public uproar on the safety of the sport , and the controvesy over whether the sport should be banned or not is yet again at the forefront of discussion . The family , who were originally against the idea of their son finishing college early to take up the sport , would be leading the protests againt boxing . This hypocritical view is shared by so many that whether boxing should be banned or not will remain a controversial issue for the forseeable future . The lottery has also suffered alegations that it is addictive , especially with the introduction of scratch cards . It has been claimed that it is so addictive that people will spend all their availiable cash on lottery tickets , only to be disappointed . It has been calculated that only 4 pence out of every pound recieved by the lottery goes to charitable causes . The rest is tax the prize fund , profits , and the so - called charities . It has also been calculated that the chance of winning anything substantial is one in millions , ie highly unlikely . It has also been alleged that the jackpots are too high . Most of the lucky winners have said themselves that the jackpot had runed their life , alenating them from friends and family . In conclusion , I think that the lottery should be retained , but not in its present form . I think that jackpots should be capped at 2 million pounds , and the prize fund shared between more people : it is better to give forteen people a fortune than to give fourteen fortunes to one person . I would also remove any American buisness interests and give the charity money to a more diserving ' charity ' . The most obvious example of this is the calculator , an instrument used by mathmeticians and scientists for making numerical calculations . The world watched in anticipation . We were mesmirized by the images of the TV , expecting something new at every moment and not wanting to miss it . I remember that day it was the only topic of conversation at school : " Have you heard ? " , " I ca n't believe it ! " , " After all this time ! " , " I never thought it would happen . Bolstered by the Germans ' success , the people of Hungary , Tchekoslovaquia , Poland and Rumania rose against communist regimes as well . Now , three years later , communism as we once knew it no longer exists . The repetion of tapping keys all day and staring at the screen can be harmful and , not only that , it is highly boring to do the same thing over and over again . Whether it be a kitchen knife used to stab someone , a car used to run someone over , or something as harmeless as a pillow used to suffocate . Normally , more than 1 egg is taken from the mother so that the eggs can be stored and used later if the pregnancy is unsuccesful or so that more than one can be fertilised at the same time to increase the chance of a succesful pregnancy . There are people who are agains this , saying it is not natural and asking is it fair to the child to have started life in a test tube , as they believe life starts from the moment of conception . , at what age should the treatment not be given and is it justifiable to spend so much money on in vitro fertilisation for one person when the same amount of money could be used to saves hundereds of lives by vaccinating people against measles , for example . I therefore think it is necessary to have certain regulations ie . People in our modern times are now able to have liver , heart and even lung transplants . There are many complications but many are succesful . The test tube is then incubated for a few weeks and when the fetous is formed , and the baby is then inserted back into the mother . The fetous is left to grow and develop naturally . This idea is extremely benificial because married couples who have been trying for a baby but have been unsuccesful are able to have children . As the fetous begins its life in a test tube , and the sperm is selected , this means that the sex of the sperm could also be selected . The main reason for the people of Britain to stop eating beef at the moment is the threat of BSB . This is a viral disease that attacks the central nervous system which can be passed on through consumsuming the animal . Another reason for the British people to stop eating beef is the push for vegetarianism , although this is a much smaller threat to the trade than the former point about BSB . Although British farmers have learned to diversits , dairy farming and the sale of beef products still forms the backbone of British agriculture and would completely change the face of farming in Britain . People throughout the United Kingdom were , doubtless shocked and perhaps upset by images in the national press and television news of cows who had contracted the disease bovine spungiform encephalapthy , or BSE . For beef to be repreived or condemned , we are forced to turn to the scientists to establish whether or not BSE and CJD are linked , and , more importantly , whether the latter can be contracted by eating meat contaminated with the former . This claim has devestated the British beef industry as people are now too scared to eat beef in case they contract the illness . As you can imagine , this has had a tremendous inffluence on sales in places such as fast food restaurants , where beefburgers are the main item on the menu . The answer to this question lies in one 's feelings about Democracry . Since its beginnings in the late nineteenth century , Women 's Liberation has been met with adamant , and often obstinate oppostion . This ignorance of other less aggressive feminists , made it seem as though the feminist movement was headed only by wild , disgruntled zealots and was , therfore , detrimental to the good of society . Like many other aspects and movements in life , they would be more readiliy received if the public it was being aimed at was not so jaded . However , throughout the years , television has lost much of its integrety ; the programs offered are usually cheap entertainment rather than education . The entertainment aspect of television has offered society an easy escape from its problems and dificulties . Though it has probably been around for a while , it s presence hasn't really been known untill fairly recently , and it s consequences have been devistating . AIDS has definately had an impact on people in the United States and probably all over the world , because it always leads to death and there is no cure . As a commonplace goal and testimonial landmark to 9 presidential administrations , the cold war has manifested its awesome power and control over nearly every facet of Americana ; from survival kits and basement bomb shelters to an ever - circulating cheif Executive command post from the air . It was also attemped to increase the production of the naturally - occurring antibiotics through synthesis . In part , it has created The Information Age , as the latter part of the 20th ctry is often labelled . Presidents and dictators alike switch on the channel to recieve first - hand information from the network , such as impeachments , coups d'etat or civil wars . 40% of U.S. millionares are entertainers . Unfortunately , the day will soon come when the damage caused by this apathy will be irreversable . The waters of the culunary seas had been calm and consistant for centuries . Progress had moved slowly like the tides and the constant rythm of the waves showed little change . However , with the dawn of the twentyth century , a storm brewed . In an age where time is the scarcest comodity , our society has embraced this eliminator of wasted hours in the kitchen . This marvel of technology has helped propel people into the dizzing pace of life that most of us lead in the 20th century . Every morning I listen for the weather forcast and dress accordingly . TV comercials and TV programs project models of how one should be . People are more mobile , can work more , and buy more things , but time for relaxation and family are often substitued with TV . In America , this growing individualistic society , one no longer sees the realitive humanness between people , instead one sees the differences , the unlucky , the unsuccessfull , and attribute thier inability to achieve to a lack of effort . There was a group of scholars in France , l'Academie Français , that set guidelines for French literature . According to l'Academie Français , all literature of the Neoclassical period must follow the rules of propriety which regulated the author should avoid certain topics , including sex , violence , church , and state issues . He told of the two girls of Orellion who were lovers of monkeys , and of the Baron who bathed with the Musselman and was punished for his homosexual act . After the Baron is caught bathing with the Mussalman , he receives 100 lashes for his sin . He attracts the hippocracy of the Church in the old woman 's father being the Pope . Desegragation reduced some prejudice , but it still exists . This is based on eauity theory . The opposite of love , beauty , intelligence , light , joy , life and growth are not their familiar ontonyms but indifference . When we learn of the trials and hardships that they went through , we can sympethize with their emotions and try to accept that diversity . The stories of black American slaves and of concentration camp victems are necessary to avoid indifference . That 's why I 'm very excited to teach studens English ! ! ! I do n't understand why so many people are into this stuff . Anyway , I deceided to arrange some nice dates for my friends by / following my own style / doing it my way . I attended Japanese tea ceremony lessons one day a week for three years , befor I came here to Japan . I wantet to study more . It was kingdergardan level . The roses grew and thir flowerpots are now too small for them . Well , I 'm into the Ray Charles song `` Hit the Road Jack `` recentry . Strange Japanes Customs ? One example is drinking alchole outside . Most countries it appears , does n't allow drinking outside . It is very convenient that it 's codeless . Today 's calss is the same class which I was n't able to teach because of CHOTA MAJI . And I fall in love with the liberary in our school ! ! ! I went to a balloon lecyurer as an assistant at `` OMOCHA OUKOKU `` . My mother committed suicided when I was only one year old and since my father worked in a town far , far away , I was raised by my Grandma . Because of its particle size , which is less than 100 nm , the nanparticle has mechanically , physically , chemically , and electronically different properties than that of bulk materials . Japanese marrige system The bride and groom simply go toa registryoffice andcomplete the marrige application form , which has the bride 's , the groom 's , and two witness 's sigunitures . No picture IDs are requiered to complete the marrige applicatin form . Somebody else can go there insterd of the couple . Becouse of the system , problems sometimes arise . When a couple go to the city office tocomplete their marrage form , they sometimes find out that one of them ( or both of them ) is alredy married to someone else . At that time , he was just interested in this class but had no awared of the importance . It 's a kind of a hot - water bottle , but there are cerry seeds in the bag . So I bought two , one for my feet and the other for my nec and shoulders . This is my fitst post in English . He joked `` Please buy meat for me when you visit me . Especially chichen for Dak Galbi . `` By the way , a Typhoon is coming soon and maybe a lot of studeants think , `` Whoa , I can rest a day and hope the typhoon stays in Taiwan . I would like to wirte a letter to my English teacher , so I want you to correct my English . I drove alone . I 'm not afraid of drivig anymore . Next time back home will in many month later , I realy do n't want to go back to school in a broken - hearten state , but I ca n't do nothing ! I am writting the diary and doing many other things . I chack my e - mail and read my Hi - 5friend 's comments to me . Hi 5 is like Facebook in English . I think It is very famust in Thailand , and I chat with my university friend there . We taked about the job she has . I do not have a job at the moment because I left Bangkok . She lives with her family . I know her becarse she went to Bangkok to study . I was so humiliated because of our accent during my chilfood that I tried to modify it . Because it was a gift from my ancester . Yesterday I rided from our main campus to the medical college . I took part in a job interviw this morning , but after the HR kept asking me questions for about 30 minutes , she told me that maybe the positon did n't fit me well for me because I do n't have the SQL skills required . I 'm looking forward to waitinig for what Apple will make in the future . But I want to continue studing English every day . Today I felt very happy , bacause my class was very funny . I also have to shovel the snow around my house , my parking space and my offise . . . I just sterted this SNS . Spring is comming ! Today is a holiyday . If you had stood next to the sliding door of the room hearing what was being talked inside , you might have heard intermittet laughing sounds made by a female , and monotonous , enthusiastic talks by a male , which might have given you an impression ; the atmosphere was not too bad , or too good either . We have n't had a lifetime employment system sice the late 80 's . Instead , I 've witnessed powerful harassment like `` You 're incompintent ! `` , or , `` We do n't afford to pay people like you , `` in order to force them into early ritirement . Luckly , I have a job and a depenadable income . And yesterday , I ate dinner , but I ate two humburger late at night . . I have not drank alchohol in a couple days . But now most Japanese buy it at the supermaket and department store . Because there once lived so many people in a family , and the mother and grandmather made many dishes for their children and guests , however , ( nowadays ) there are many nuclear families in Japan and guests are few . When I listen to this music , in particular Marc Anthony , I become one with the melody and I feel really free and every thing around me disappears and I feel only the hertbeat of my heart that follows the rhythm of the music . A Little Hestitation and Nervous Now what can I do for peaple in MIYAGI ? ? I went to Chibi Canada to prepare for the zonbi Walk . I practiced making a zonbi face . I think I 'm good at mimicking zonbi . All of the animals I saw in Mongolia seemed confortable . Right now , my favorit song of her 's is `` If I were a boy `` My family came to my house and we cooked carne asada . We were all together to watch Teresa 's last episode , hoping that she would end up homeless and lonely ( like in the original version ) , but to our suprise she did n't . I watched a DVD `` Who killed the electric car ? `` ; this is a documentary film thta deals with the history of the electric car , mainly focusing on The General Moters EVI . 7 students paticipated in it and they were great ^ ^ Some students did n't memorize their script enough not to look it but still I thought they put in a lot of efferts . I 've studied English in Canada since this mounth ! Mainly , Japasene teacher taught English grammers , accents and various words . Another boring week is watting me . I do n't think they shouldn mention such details about the flight ! Tonigght , I will stay inside ; I wo n't go out . For that , I am studing English for many years , but not many . . I would like to speake and write more natively . . Publick service personnel is a part of the conscription system . We have to studed English now , or we wo n't pass an important test in three years . Also , there is going to be a Jananess school visiting our school . There will be eight Japaness students in each class . And we will teach Taiwaness history about Japan 's aggression towards Taiwan . We have a lot of activies planned for when the Japaness students come . before she had gone , she did not say some thing before as give me anything as usaullly , she did it because she sundently had gone . He could n't sing but he could hum and dance and and play the quiter . But when I tried to go there yesterday , it was diffuclt to drive my car because I had to meet a friend who lives in Seoul . I 'm a piture and 5th hiiter Our game started at12 : 00 , and I was so nerveous . My beseball career is shorter than anyone 's , but I have good physical abilities like fast feet , strong sholders , and an endurance for pain . The famaous rapper known by the Japanese . The reason Eminem is known by Japanes people , is because he was an actor in the movie , 8 Mile . There are many rap music artists , but there is only one Eminim . Introdeuce myself dreadfully spycy . . . But I do n't understand English grammer . I could not explane `` a certain probability `` in English when I talk to my friends . So I want to explan it here . The probalility represents how many people are watching ( a ) particular program ( s ) in each area . I take Garman and I study various countries ' cultures . So it is very expencive . I like listening to music , like every type , expecially jazz , rock , and some nice soft music , some times I listen to death matel too . and also do some reading , which r written by ppl who r not famouse but special . . . . This is because I 'd love to TAIWAN . Itried to study Mandarin when I was in junior high highschool . Chinese - charactors are used in Mandarin and Japanese , so I thought learning Mandarin would be a lot easier than learning any other languages . However , Mandarin has four accents in one sound ( I ca n't explain it crealy in English , try to understand ! ) . I participated in a web developer 's event last Satruday . But , in a foreigh country , does the person who has a birthday treat the guests ? By the way , my Japanese friend in France had dinner at his friend 's Taiwanais wedding party . This temprory job ends on the end of this month . It is uncomfortable to stay in an unfamilier place . So I had my boss buy some vesetables for me . After I recieved them last night , I kept them in the refrigerater . : ) I would like try this webside out , but I dont n't know how to use it . It 's an important professionnal cycling race . Thanks for yout help for improving this passage . I 'm not sure how to tip at restaulant because I 've just moved to America and my mother country , Japan , does n't have such a custom . If I do 3 , shuld I write the tip on the bill ? I went to the shopping mall becasue my daughter wanted to go . When I tried to buy the ticket for the film , I wss recommended by a clerk to watch the 3D version , but I heard from my friends that some people tend to feel sick while watching 3D films . Especially the last scene of the film , the battle between Harry and Voldemote was impressive ! We 're going to move to another building next week so today all my cowokers and I were packing a lot of stuff . I lived with my parents and my elder sister who is now married and raising her son and daughter with her hasband . and I 'm learning Japanese tea celemony once in week . Some people wear kimono often or everyday ( for example , people who are obsessed with Japanese culture , who study / teach tea celemoney , Japanese etiquette or Japanese flower arrangement . . . However , many japanese do n't own their own kimono ; instead they use a service to rent kimono when needed . We do n't do tea celemony in daily life except when our families or ourselves are famillier with it . when I study tea celemoney , I become eager to learn good handwriting , languages , behaviour , and flower arrangement . whe I studied martial arts , I became eager to learn behaviour . As a begineer , you need to have every skill at a beginner 's level . If you progress to the intermidiate level in one genre , you need to have skills which are better than a beginner 's in other genres as well . I will try writing about these things I learnd . The Tengu 's bodies were like a human being 's , but he had wings and could fly , so we adopted it as a charactor and our squadron 's good angel of flight . Actually , each squadron 's yearly flight time is assigned by our headquater . I mean , we were too busy both mentally and phisically to take time for others . To solve these problems , I shoud relax a bit . I got a serious headacke this morning sitting in my cubical , so I took a half day off from 1pm . I was very busy in April because of recruting Even if I try to find a lauguage exchange partner , they will think I 'm boring and bothersome girl . I useally get on a / the train from Zushi station , it 's in next town . I do n't need money , or anything else for that matter , but simply to hear from you about my party . I think you will be satiisfied ! various kinds of vegitables that are pickled in a sakekasu , which has a slightly strong sake flavor . I asked her to promise me to eat brackfast before going to the school . His exbition is held this year in KYOTO . Now , I 'm gowing some scallions , turnips , and lettuces . I felt the climinate in Japan has been getting warmer and warmer over the last several years . I will try to looking for a pair of cute sandals tommorow . I picked up my hasband this morning . Yes , I 'm thin - skkined . When I watche a TV program and I learned about the store . I can not be here in Kyoto untill April because of my job . I realize now how easy the laguages we learn are forgetable . I 'm always surprised by those who keep thier journals in foreign languages . I elnvy them . The recent consective hollidays , which lasted for ten days , are now over . By putting daily events into text , I also aime to review each day and make the next day better . It takes ( about ) 30 minitus from here to Tokyo . I like spicy foods such as the Kolean dish , Kimchi . It increases one 's excitometabolic . In Japan , a sad incident ocuured . I will eat at a restrant in the department store . Incidentally , I enroll in a temporary employment agency . Athough we always have dinner with her , this is the first time I 've invited her on a formal outing . My favorite movie is `` Back to the future `` . To do so , I have to work harder on doing reheb . Trains run every 2 minutes following timetable and if a train is late for more than 5 minuites , we can get a refund . There are chain restaurant whose plices of foods are n't that different from Macdonald 's . but I perfer Chinese . Fortunately , it is easier for Japanese to learn Chiense characters because we use them in our language . It tasted yammy because it was free . I forgot to bring a thoothbrush . I have been feeing frustrated to see talented people who can not express their opinions due to English skill limitations . Can you expanation thisto me ? Will this pharse , `` th , `` keep going ? My pehew is coming to my home . It was the book I had borrowed once but faniled to finish reading because the due date was up . I would like to celabate the new year in Bangkok thoung . this moive is really famos in Thailand . The man who running on the elephant is a really good boxing expert who did not use a stant - man . . . The stationaly whitch is used for erasing pencil wiritig is called an ' eraser ' in America , and ' rubber ' in England , right ? I ate yammy bar of chocolate . Write your five items in the coomments , if it is n't difficult for you . = ) Canadian Dollar shepard chocolate ! Terefore , I go to Kyoto several times a year with my family . I 've dedided . . . The table shows the percentages of water pollution due to four major pollutants in four cities ( Taipei , Sao Paulo , Tokyo and New York ) in 2003 . Aside fromthem , Tokyoreported `` presticides `` as the worst waterpollutantwith 31 % whereas theamountwas much smaller in Sao Paulo and New York with only 9 % and 6 % respectively . Tokyo also showed a higher percentage for `` Erosion `` with 23 % as well as `` Demestic Sewage `` and `` Phospharates in detergents `` , which was larger than that of the other coutries . At some points I laughted , and at others I cried . Snow aroumd here is very rare . My inglish level of conversation is ibetter than my writting , but I need to practice a litle more . I do n't mind if your Spanish level of conversation is not very good . I think that together we can improve our cualities Does it furthurmore mean that you `` make them sad `` or `` hurt their feelings `` ? It ` s my first time on this webside , and I don ` t know how to use it properly yet , but I hope that I will meet new friends , and that they will help me . I would like to speak English fluently , but I do not have any friends who speak English , so I have been learning English for sereral years , and still my knowledge is not enough ! ! ! ! I often go out to coffe shops . Usually I go to `` Tully 's coffe shops and my favorite coffe is always `` Today 's Coffe `` . Of course , I have a cup of delicious coffes when I go to there , but my real reason for going is not only to drink coffe . to my seprise , when I arrived at his house , I foung it to be very chean . Something I like but someting I do n't like ( also ) . Umm , sorry , I 'm being nagative today , are n't I ? Hello veryone I am back . It said I should follow the sentense from newspaper or book . and then read it again atfer finished writing . I wonder what clothes are suitable for gests . I heard that Americans give presents from a wish - list ; is it ture ? The customer was so delighted that he adviced the old woman to change the name of the shop from ' Kakegawa - local power rice cakes ' to simply ' Cat rice cakes ' for the sake of prosperous business . I 'd lile to communicate with ( those ) people who speak English to study . I 'm going to go to COSTOCO . What do you recomend ? After bathing , he alwasy took his teeth out of his mouth . What singers do you like from Japam ? I started stady EngIish today . I 'm not sure if it works but I would really appreciate it if native speakers could point out which words I do n't pronociate well . The recent boom or topic of my works is `` Our company will take the cusutomer experience to the next level with digital `` . But now is the time to use IT for developing a cloose relationship between our stores and customers . I cooked curry with a pressure cooker last nigt . I usualy push the reset botten each time I boot my PC . One layer was a cream cheeze layer which was heavy , and the other was a strawberry layer which was sweet - and - sour . You have to know how stubborn your little dauther can be ! ! ! The teacher told me that my daughter is not good at remembering the multipulation of 3X8 and 2X6 . My head was bumped onto the floor really hard so I feel a bit weezy . My daughter is one year and therr months old . In the afternoon , I did my landry , baked muffins , and studied for the test which I wrote about in this diary yesterday . I 'm going to go to bed earier today , and wake up at 4 : 30 as usual tomorrow , preparing for the begining of the next week . I think I can keep a good rithm for my lifestyle this way . I like drawing with a boolpoint pen . When I was a child , I used boolpoint pens for drawing . So the boolpoing pen is useful for me . Suddeny I felt it was something strange , she looked like she was ill . But I really enjoied this race . But as I have been exposured to a lot of kinds of English on the net , I really surprised when I heard my alarm clork . I did n't go out exept for when I went food shopping . UNIQLO is a brand name , and it 's corporation 's real name is The FAST RETAILING , established in Ube sity , Yamaguchi prefecture , in the western area of Japan . Ahetr that , I could meet him at around 7 : 00pm . Every time I drink beer or some alchol , I always feel like going to Karoke ! My Wacom Graphire3 tablet ( computer drowing tool ) so I 'm learning English because I 'd like to watch movies without subutitles . I lov rock - n - roll : ) But I lov bossa nova too : D I often herad that many girls have no sense of direction . We have similer pespective on many things and I found that he 's so funny and smart . Sunmer is coming soon , so I need to lose weight in a short time . Sunmer . . . I love it , but I do not love fat ! ! ! It was worht climbing all the way up there , it had a beautiful view . I especially love ramen , ice cream , Tenpura , and so on . It has been / will be a tough month at the univercity , but there is nothing I can about it . I enjoyed palying soccer . In the new millennium , with scientific technology becoming increasingly advanced and the disparity between the wealthy and the poor increasing , some individuals link the gap to technologyies . An empirical point of view , I was really hard pressed to believe how the technology spectrum lead to the wealth gap ; since it gose without saying that scientific technology decreases the disparity between the wealthy and the poor . It is widely acknowledged that the cell phone , as one of the most significant inventions in twenty century , transformed individuals ' lifestyles making them highly efficient and convient , especially for the poor . I guess I need much more vocabulary and a large amont of reading . Aaahhh I ca n't believe it , spring is coming soon : D . Ofc course , it 's still snowing , it 's windy and the temperature is - 3 degrees ( Celsius ) . . but the birds are singing , the sun is shining and everyone 's smiling . I liked to see them suck sap we fed and occationaly fight head to head over sap or females in the plastic case at night as they are usually nocturnal . just wanted make fun of that because I 'm tired of studing this laguage yea I know this lonely diary can also help my studing According to a newspaper article I read recently , people with higher salaries produce higher quility goods than those who have lower salaries . This is my first note in lang - 8 , also is my frist time . I am learning English now , but I feel a little sad . It 's hard to struggle with what I want to say day after day , and I do n't know how I can do better . Moreover , I am afraid to dissapointe others rather than I myself . However , it is difficult to keep my tention calm when she seems not to hear me , or does the same mistakes again . The sheep was finally found by the sheepherd and felt relieved . I am Booddhist , but unfortunatelly the temples generally do n't give this kind of service periodically for small children . It will lead to the increasing of enthusiastic Booddhists in the future . Seriously , it is supre expensive ! I lack of fhysical activity . When I used to use an iPod Nano , the bettery would be drained really quickly . without running out of bettery ! My friend told me it was not a copy but a hommage . KAWASHIMA will be traded to another team in the Plemier League ? I ` ve heard that West Bromwich Albion FC in the Plemier League offered him to play with their team . so I will buy the book , Eclipse 's original virsoion . Even though it is still late June , the air temprature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insulance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insulance . I emaled him this morning about tomorrow 's plans . It 's needed to live abroad or you work in campany which need to speak English . `` Sometimes people in forign countries do n't understand them . Tiger Woods has forteen girlfriends . I apologied with my freind but she seemed to hate paying for it . I negotiated with my freind so I can pay for the meals next time . I think it 's tastey ? I hope to make frends with you ! I talk to my parents on Skype evry Sunday night . Skype is very usefull , because we can see each other 's faces . For I live in kansei area , my family and I are all right naturally . I 'm not surprised because the March disaster in Jaspan was broadcasted all over the world . And my friend tought me about it . However , vigorous pictures and unforgettablely vivid sound would be engraved in their minds . Stimulating the subconsious may help your memory . Today I had lunch with my colleague . We had a nepal curry . If you look for the city on a map , you 'll find out that it is situated in Ural mounatains . Some tourists are very dissapoited by this fact . No idea : ) But it is situated exactly on the watershed dividing line of the Ural mountains . If you go there , you can stand with one foot in Europe , with the other in Asia , or with both feet in Asia and your head in Europe if you want : ) ) ) ) ( You can see in the first foto ) And , when I got a mail from him , my heart ached . . . ( I was ) nervus . In only four days I will be back home , and I will begin my summer vacation . I have made a plan for this vacation : I want to join my cousion 's company and work for him for free . Therefore , companis should contribute to remedy the environment as much as possible . Now that environment problems shuch as global warming and air pollution are among the most discussed issues worldwide , people tend to have much more interest in the protection of the environment . Futher more , it has even become a trend for the stock investors to buy stock off the companies that contribute most to the environment . If I speak English , I would like to visit many contries ! In fact Napels is famous for its pizza ; D Thomas Jefferson was born in Shadwell , Virgina . In these acres , he built his residence , called `` Montilcello `` . He was continental delegate of Congress , Governor of Virgina , state secretary , vice - president and president . Are the idioms and slungs which are in these books still used in the world ? If not , how can I learn new idioms and slungs ? I just went ( over ) to Yokohama where my ancle and his family live . Trimming is important because it is easiear for bacteria to grow the surface of the raw beef . As a result , his restaurtant caused food poisoning and killed four people . However , she often fussies a few weeks ago because of many reasons , the reasons were simple though . It seemed that she reliesed them by accident . The doctor diagonized that she suffered from a hemorrhoid . So , I speak English at school , but I usually speak Swhili in my village , because most of my neighbors who are in the family of my cowokers can not speak English . My cowokers and students know English , but others do not . ) So , I have received / gotten a lot of chocolete as a birthday present . I like chocolete but not this day ! ! I hope study abroad , and work oversease . Though I like to read , I amd not really good at English literacy . Today we had a violn class . My arm was getting tired from holding the violn . Tommaro is the concert ( sort of ) . We 're playing the violnin at the school library . My brother 's girl friend is Tiwanese . I am about to stady English for a really long time . I will stady English hard . Yesterday , I went to Yoyogi park , which is located in cener of Tokyo , and saw cherry blossoms . Even though our millitary corporation is a good place to live , Anyway I will ask him to read it because the examination is really importent . Have a good weeken . Tomato sause I made tamato sauce today . ( I am or I 'm ) going to go to a Taiwanese restrant for lunch with a coworker , The reason is clerea , I ` ve been to a Go - kon party when I went to the college , but people say there is something diffrence between a student ` s party and an office worker ` s . I went to Utah , US 2 years ago to study English & to teach Japanaese in an elementaly school . The wather has been really really cold for several days . Because of that , I cought a cold and had a headache . There will be a dance performanceday in our studio on the 22nd of March . We started with the coreography yesterday . For example , I magage to write these sentences first in Japanese in my head and then translate and put them into English , which requires a great effort and is tiresome . However if I get areally bad headach , I might as well take the medicine rather than just suffer . I wached 90210 I watched the final episode of seoson one of 90210 . I 'm looking forward to watching it next seoson . Today , I studied phisics for an exam . So , I always glew some vegetables in a planter . I 'm looking foward to it . I need you to help me improve my english leval . It 's 6 hours to go until the biggining of the match . How to condjugating for Lang8 ! ! After he left , my daughter and I talkded a lot . It is the central city the northernmore Japanese island , Hokkaido . I am sad beacause my sister deleted the program ( of the keyboard ) for writing in Korean ! . The stylist in the shop was a very friendly woman , and had a good sence in cutting , When I checked my diary this morning , the freind whom I had just met had already corrected it . He thoght that I rarely ate meat ( beef ) because I live by myself . If I eat a hanburger slowly , chewing it well and tasing it , I always regret eating it . On the way home , I bought seven bottles of maple syrup and three boxes of maple coockie at a supermarket . Additionally ( or , Also ) , prices are negociable . From your cazy sister , Haruna I registed an account with Lang - 8 , but ca n't understand this usage . I 'll stop complaing . Sory , just a question . Even if I get a boyfirend , I will choose to live alone , because even we broke up , at least I would have my home . I do n't want to end up not having a boyfriend and a place to live , that would make me feel like a loser . Mainly because I was in the Fhilipines and Due to tayhoon I dont have class in the morning u know a thyhoon will be coming to japan . I heard it was the same in China or in some Europian countries . I have a problem with choising new jeans . He faced about one thousand and nin challenges , and finally , he met a person who was willing to buy his recipes . I guraduated from Nihon University last lear . I majored in International Reralitons . I did n't know the name untill then I know they are not interesting at all , so everyone whould n't want to read my entry . I 've had a lot of experionces like this and I 've realized that men and women ca n't be close friends . , so we would like to make the accommodations as comfatable as possible for the newcomers . but there was a launguage problem . ( Sounds natural ) but after drinking a cuple of glasses of champagne , I was very drunk . Recentry , I make many kinds of bread too . Do you remember those days , your mother knit a sweater in the dimp light for you when you woke up at midnight , or because you came home so late that she was n't ? able to be assured ; you know that there are many things like this . I went to a study group for CMS ( Content Management System , an internet system for blogs and websites , like WordPress ) and had discusssion with members . Because I am abstaining from drinking , it seemd that not having much alchoal made me drunker . Hummm . . . Mubark was the priesdent of Egypt for 30 years . Allah helps peole in Egypt . What are your favorite sports ? There are many beautful clothesand dance movements in the film . But I have the good luck to be surrounded by briliant friends , excellent teachers and an affluent campus ( The only weakness is that it is too far from my house . . . ) . Even by doing so , it might be difficult to attain somethig special , but what is important is to try to have an awareenss of issues and start a voluntary pursuit . On top of that , I heard that grown - ups feel as if time has passed faster than in their childfood . Thanks for reading my jouornal A public veiwing is an event where you cheer for the team through a huge screen with a crouwds . Japan played well , but I think there was a clitical diference between Japan and the Netherlands . I do n't konw why we 're supposed to take classes in shch a marvelous summer vacation , which should have been full of joy , laughter and merriment . Alought it sounds a little pessimistic and overstated , what I really want to say that learning should be a lifelong and happy activity rather than pushing us to the limit when we are in a bad mood / depressed . Improving our knowledge by practicing instead of talking thoretically is the most significant , positive and effective thing in our life , in my opinion . This week , I 'm staying with another fost family because my host family is going to be in Bali for two weeks . It was so amaging . Then , I remembered that the foreiner was seating alone . ( There are two seats at one side and I had my partner . ) Initially , I hesitated to talk to him because he only speaks English . I carried him in my arms and looked aroud to find his master . She doe n't have confidence about English , but she knows many verbs and conjuctions . To my surprise , there were no stories nor paragrafhs on her textbook but conjuctions and exercises . Thank you for yor cooperation . The shop where we went to was ouwned by chiken egg farmers . Of offcorse I also liked `` Jack and the Beanstalk . `` : - ) So I hope that I will be wrting at least one sentence correct . After that I lost my confidence in speakin English . Although I did n't get first prize and practicing English speecg is really hard , this English speech contest was a really good time for me . I hope my engish speech skills will be as good as a native speaker ! I would like to introduce some disgusiting examples to you . When I was a student , I spent a lot of my monet on music . Okinawa was warmer than Tokyo , becouse of its location . This time , the airplane was deleyed by 2 hours due to the maintenance . It 's on my way to mya hometown . I thank her for heling me to study English . I ask my coach if I could take a break , then he suggested that I take the intermidiate - first lesson . hello guys from japan ; my first diary abt japanese disaster Two women are in their forties , another woman is in her thirties , and I 'm in my twenties , but we only speak in English when we get togher so I ca n't feel the generation gap . I feel like we are friends . And I find that even after severl Chinese have corrected someone 's jounarl , there are still some errors / mistakes . Sometime its punch lines are too ridiculous to believe that anyone on earth is really that stupid , but that 's what makes it so good . Somehow I ca n't help wacth it everyday . Recentry I have been busy with job hunting and class in university . So I am so happy that I had slept untill noon . In Japan , the replacement of prime ministers seemd to have become an annual event . Universuty is said to be a life experience . They can strengthen thier bonds deeper through other school events such as cultural festivels . Doing somthing for the frist time is very exciting , as you know . My counsin bought a chiken for my dogs . . But I also lack English languate skills . Do you know Kao Corpration ? So , in conclusion , I want to state that not only must the government make the already existing laws tougher , but also cencor the media , which has a trmendous influence - especially on young people . It is a little dificult for me , but I always enjoy discustion with her in English . I 've only had a few food but I do n't feel hugary . Sometimes I 'm not hugary but I want to eat . . . . At last , I arrived at my destination , Marita Airport . The goddess did not want them to be togather , and so used her power to turn them into two stars . but I broght < / FONT > some bread to eat with friends . Shiba dog is a Jananese dog . They are medium size and very It 's her first time to go to a forein country by herself . Do you know `` Syabu - Syasyabu `` ? It is a dinner that consists of many vegetables and thin beef swished in boilling water . There were many foreign visiter in the restaurant . I have made some friends who are japanes . Thank you for coming and seeing us at Onoda - shi , in Yamaguchi on Juniary 21 . One mother said your reading of the picture book was wanderful ! ! The first time I met him , he talked about `` SD Gandom `` and `` The Melancholy of Haruhi Suzumiya `` and I could n't understand anything he was talking about . After leaving Tokyo , he will go to Shizuoka to view a big Gandom model . Withoug Anna , my English might not improve . Anyway , I have one thing I want to say : that I leave on Aughst 26th , for the US . I want to thank eveyone who has helped me with my English so far . So , I expect that many people read my diary and correct sentenses . please correct the sentenses and be my friend ! I never learnt ( / do n't know ) how to play the pinao or guiter , or learnt French or Japanese like some people . As a result , I found this website and enjoyed correcting articles written by some foreighers because I am good at it and it makes me feel good no matter if they thank me or not . I had lunch with two friends ( and friend 's daugter who is one year and seven months old and very cute ) today . This afternoom , our class will be having a class meeting about electing the elite as members to the Party . I do n't care if other people say `` You ca n't be a milionair because you are not already rich `` . This suturday I went to Shiga because of my group activeties . Today , I got some classes at my colledge . Showing my ture colors , I want to skip my classes ! ! So , now I should go to colledge . I did n't have any Indian friends in , Taiwain , befroe . All my foreign pals are Japanes . But the type of rice is different from Taiwain . Every etnic community has their own character . My favorite color is white , so my car is also whiet . becaust of that , I want the white iPhone 4G . I also want to learn German because I really luv German football and Fc Bayern ; - ) This is my first diary . I am interested in Fashon , art , and 90 's music ! I am `` good at `` speaking Japanese but I am `` not good at `` spesk English . Please hlp me ! I am going to send an E - mail to my friend who is an internationai student today . Mixed feelings agian . Frist I feel happy because of someone who told me I look like a singer . I 'm not alome , right ? I think it is about the guy who kept eating only McDonald 's Humbargers and potetos . Yesterday 's deinner I started surfin about 2 months ago , but then the earthquakes and tsunami hit the Tohoku area . Now I want a motercycle and dream that I will get a big one and travel around the world . It 's like making blended whiskey using single molt ones . Not to metion learning other languages . For these reasons , I thnk the education that aims at the development of individual tarent rather than learning by rote is needed the most . One of my classes called International comunication course is one of those systems , where we can learn other country 's traditional way of life as well as English , and we can see many people from other countries . My high school gives us many opportunities to go to othere countries . What is the Au pair Prigram ? I can study Eiglish in various ways on the internet . By taking class in an English center , I can practise listening , pronounciation , . . . Generally , I do n't say much if the atmostphere of a conversation gets stressful . She never thought of anyoue else . You waana be somebody who complains , but you wo n't be a listener . I am sacre of you now . . . . Usually , the beans are sold with seasoning such as soy sourse . I was born in a city north of China , and I went to colleage at a city north east of China . I love snow very much , and the winter time during colleage gave me deep impressions of good memories . Hence , more and more visiters should have opportunies to travel to other places . I 've been a lacross player since I was university student . During that time , I felt quite umcomfortable . It was atough time , but I enjoyed taliking with thecustomers . These flowershave special coloer and shapes , too . Recently I could only go to work for two days a month , because I have been receiving post - surgical chemotherapy to prevent a recurrence of my cancer and metastatis . Though it was regrettable that I got sick , I belive that my disease has developed a greatness within my soul . These days , I 'm always shoppinng , singing in the `` KARAOKE - BOX `` , drinking riquere or doing many other things . The Spring Festival is the Chinese New Year , and it 's the day when all the family members come togther and celebrate . Why can you earn more & nbsp ; in Canadian companies that estimate indindividual skills more than Asian companies ? & nbsp ; It really depens on the your skills , whether you earn a lot of money or not . I hope my English will be getting better for many resons . And I will Ihelp you with Korean , a little bit of Japanese . We are going to go to Himeji catsle and some other places . but , my englsh is not good . Nobady knows what will happen in the future . I think it would be fun to write a daiary on the web . Everyone seems delited by it . My fother had a lots of potatos in my house which was more than he can eat before they get spoiled . I mean , real diary . Of course , I have written English compostition in school , but those are not diaries . One of my friends reccomend it to me . When I found the ( rain boots ) , I ( thougt ) I ( loved them ) . My Frist Time Writing In My Diary In English I purchased a traning suit , which is similar to what boxers use before their matches . They controle effictiveness ! But , I relly feel unhappy with my English right now . . . In this movie , Led Zeppelin 's famous song , ' Immingrant song ' was used . Unfortnately , the long holiday ended today . I 'm going back to school again this March and I 've been planning my course schedule while reconnecting with my friends via MSN messnger . And then , after reading those comments , I was really pleased and happy becase the explanations helped me understand the parts that I did n't understand clearly and there were a lot of examples to help me too . Well , I had a delicious breakfast , and the weather today is n't as cold as it was befor . But musicals contain many songs , and it is a bit more accesible for me . I really want to reccomend it to everyone ! However , I suddenly heard a terribly lowd sound . When I say that , people aroud me look at me surprised as if they did n't expect it and I looked odd . We can listen to the radio and do simplitic jobs at the same time , and also feel relaxed . But I apparently looked like I was listening to an iPod , so most of the people were surprised to see me change the radio chunnel . I was surprized that Filipinos do n't use such a convenient tool in everyday life . If we find out this information we can help satisfy the niche foreigner 's desires and it is a buisness opportunity too . People there are very coool , I love chatting with women . For example , they can learen how to speak and begin to understand different languages by watching TV . Always in the serene night with the dim lamp by me , this platitude would penetrate the gloomy air through the soud of my mother 's breath , remide me to be more stout and obstinet about my hard - to - reach dream . Of cource , I recognize that my range of vocabrary and how to express myself are not enough . I 'm feeling more comfortable even though I recognize that there are still many mistaks . I want to take advantage of this hapiness and time to improve my English . I should remove the worms from these leaves to let them keep gorw . Because of that , the first day was going to be canceled , but the typhoone has gone the other way , so we were able to continue with the festival . During the ride , a Filipina woman spoke to me in Japanese . I hope this accomodation remains for a long time long agaist the upcoming tough economic condition . I 'm going to stduy English and German hard on this site . Should one ecpect a reward when doing a good deed ? My body is still craving a cup of coffee , so I am counting down to the opening time of my fovorite coffee shop . It is also difficult to explain tecnical documention in English . I 'd like to join in fittnes clubs gymnow . In the gym , there are a lot of foreiners so I 'd like to get in . Sometimes I think that days are too short , because I cant do many things , but on weekends the days are longer and I dont know waht to do ! When I watched his behaviors these supermarkets , I found that he was walking around there quickly . We can enter free of charge and the plice of food and drinks is very reasonable . I 'd really be greatful for any help in improving my English abilities . I think that it 's about time when I start Skype and talk English possitively . When I am walking down to the street , it looke like only umbrellas are moving on the street . Maybe they have seen my old pictuer on laong - 8 . In my senior high school , HK friend and I have writewrote a letter to JKR . Althrough I did n't gain any messages from JKR , HK friend sent me a great Christimas gift : A HARRY POTTER MAP . ( Print by himself ) The map is just like in the movie . Because Japanese books have manypictures about maids and Vctorian time . France has ballet , and Hawaii has the fula . Generally speaking . most of them were built during the feudial Period . Each of them has distictive feachers . So , even if I was a lttle bit interested in these kind of things , I tried to hide my curiosity . We have re - instructed the packers to take notice of proer packing material to ensure that panels will not shift in the carton to avoid any damages to the board . It was my falt , but he did n't need so angry . I hope he will be re - assigned to another department next quater . He had a heart painted on his forhead . That is lovely for valantine 's day . I would like to ride him , even though the frist time I might be scared of him It is famous for hot - sping and it 's beautiful ocean . June is the rainy seazon in Japan . When the rainy seazon is over , summer has come . I am twenty three ( years old ) ; it seems that I 'm not yong , but I am still in school . I hople in the furture I can have a beautiful life and I konw it 's not easy . But I 'm still a student now and can do nothing escept learn and learn every day . I hope I can do songthing for my family , but I do n't konw what to do . Jeju is a beatiful island . How about your countory ? Do you display Restart Toiret Training Mothers should n't be too nurvous about this kind of discipline . One day , she was playing with her friend climbing the jungle gym , but her friend climed higher than her , so she started to cry out of frustration . We are plannning to play games with kids . Also , I grilled chicken breast and spwrinkled some salt and pepper on it . Obama 's presidencial inaugural address . Honestly speaking , I had never heard a presidencial oath in detail in the past . The Ecconomy is badly weakened . . . `` - He helds respect at the forefront . . . `` For us , they forght and died in places like . . . `` But when you come ( go ) to their country , and begin living as they do , and begin speaking their language , you undastand that they are not different from you . I am studing two languages every day . Do you know of stores that sell many inexpensive swimwears ? She is aways kind to me . She is lovly to me . Maybe I can borrow some more accesories for my other friends . We will see . . . Although you have many manythings , if you see something your friend has that you do n't you really want to have it as well . However , although this is true , I believe we can learn to be satified . I came to Australia last September , and it was my first time traveling aborad . Actually all of my lugguage had been automatically transported to my next airplane . But I had already made a fatal mistake because I was waiting for my depature time at the 1st gate but I actually had to go to the 60th gate . I am an engineer at a construction company and I am constructing a phermaceutical factory in Shizuoka . Hence I enrolled at a correspondence university to get a teaching lisence . As usual , I had some bread , coffe , and salad for breakfast . It goes very well with Franch bread . Today I happenly to meet with my ex - colleague . So I adviced her some advice . It is more relaxable there than in the library . Therefore I 'm goind to go to New Zealand next summer vacation . Starting today , I 'm going to write a dialy in English . I took an exam this moning . I will have to have the same classe next term . Yet it is very warm and splinglike beautifull day ! In the first , he threw a carrot , in the next pan he put an egg , and the last pan was filled with granules of cofe . After some time , he took out the carrot and the egg and poured out the cofe . - The carrot and the egg have boiled and the cofe has disolved . But what about the cofe ? - It 's most intresting . Oh , it seems like the ' Spam ' sketch by Monty Phytons , I watched it just last night ! I got into a university finaly ! ! ! ! ! Today we finshed lessons earlier than usual , so we returned home earlier too . It would suck to be sneezing all day when the long and cold winter is filnnaly coming to an end . I am going outsite Bangkok today . I have to syudy tonight for tomorrow 's tests . We were strangers , but he made a good impressiom on me . a montain eruption = ( Yes , I know I will soon enter universty , and that Iam 18 years old when some people find out about that , they are suprised and they think I have a proplem I can learn new information from it . spically if it was about history . I love a lot cartoons , spically Japanese anime . Such as : Conan , Anne shirly , Remi and many other anime . I like anime that showcases proplem in socity , or about history . Anyway , my friend who lives in Christcharch was fine . and she dicided to move to her relative 's home . If a dog is a rabid dog , it 's very dengerous . I 'm correge student . So many of my vegan friends cook 3 times a day , and I always help to read what the package of ingredient says at supermarckets : ) Nowadays , I found out that people smoked in the streat . I was driving my car , feeling that I lived in the early 21st centry . Right now I 'm at the bank , where the last fireworks fes of this year will take place ! I know I 'm crazy , but I love tham and really think they 're beautiful ! I grabbed a great spot up front where the fireworks are being shot . Many fireworkers are now setting up fireworks : ) Im 'm happy if I get one ! So everyday or maybe sametimes I 'll send you even if you will not reply . so it dameges the hair . I want to improve my English because I like talking with people , girls in particulary lol . Because of exam day , we left school before 4 o ' clock and soonly got to the studio . We practiced calligraphy at frist ; after that teacher started teaching us to sketch . sound in Brithsh English . tell me wheter the British are more likely to pronounce it as ' I : ~ ' ? Ipo is also a city in Malaysia . My computer is slightly old and slightly whierd . I 've already graduated from university and my mojor was occupational rehabilitation . I have just registersed in Lang - 8 . I usually record musci from CD and transfer them into my iPod and watch DVDs on my PC . It worked well except the thing it didn n't have any disk drive . My life seems such a catastrophe that I counld n't help but sob for all my past teen - life . Is it alright for a sophemore to dream anthying about her future ? I had to mediate a conflict of opinions , because an employeebe had been in trouble with the store manager for a couple of weeks . On the other hand , 12 % of people report that they dislke obese people , less than the 16 % in 2003 . By the way , recentry one my lang - 8 friends said that he dislikes female smokers . The idea that a person 's character is desided by blood type is wrong , because the fact that there are n't relations between a blood type and a character has been proved scientifically . ) I studied English in many places in Peru . In Japan I use the little I know . Maybe I speak English poorly , but I feel that I speak fluently . I do n't think I can undertand much . This morning , he woke up earyl at 7 . I usually eat out becaouse I have lived a single life for 9 years . It 's a very famouse dish in Japan and it 's very easy to cook ! I have n't writton a diary entry for a while , haha ! I found I would be late to my germany class . ( A heavily editted and dubbed English virsion of this film was released under the title `` Worriors of the Wind `` in the 1980s , but it did n't follow Miyazaki 's original plotline . Now a `` no - edit `` virsion is available . ) I recommend the manga virsion too . My husbund called , `` Pass the solt ! `` I did n't know why he asked , but I brought the solt box to him . She said that she wanted me to read outsite her room , because she would like to sleep in her room , but I did n't mind ; I still stayed there for a long time and fell asleep in her room . I write down my firts entry into my english diary today . I 'm very nervous becouse my english is so terrible . I had my hair cut doday . What was interesting was that someone who wore an armband which had the characters `` STAFF `` warned a man who was smoking in the yard neaby my lab not to smoke there . My other friend Netz ( Short for Nezacant ) gave me a shield . The reson was work . before I answred that question , I asked how old she was . One of them is the Gneral Relativity , Special Relativity and Photoelectric effect . In theory , we can go to the futuer by way of Relativity . But , there are problems ( with going ) to the futuer . You can go to futuer when you slove these problems . So light spread as wate and ligth is composed of particles which we do n't see . Light is the only material which has qyantum nature . Even if I get a full score on the writting test , it 's unlikely that I 'll pass the ikkyu test . I 'm a house wife but my family let me alone and prepaired food for me during those two days . When I went around Pris , I saw a lot of beautiful places , including classic and old buildings . I coud not write my entry yesterday because there was thunder and lightning last evenig . My friend and I looked for somewhere quiet to study Chinese and Thai language , we did not find a good palce so , yesterday we studied at Macdonald 's but there was a lot of music and a lot of student doing their homwork . I do n't know why but I know we have a good mood all the time and like to smile at people wheather we know them or not . I asked her about if in China they have Kung Fu or not , she laught and said yes but it 's diffirent in the movie because they ca n't sping up a tree or a roof and things like that . Look at the frist picture . Have you seen it before ? I 'm reading , serching and writing in the train using my MacBook Air . I have some plans and hopeness for 2009 . I hope to study English continueally with members of my office department , as well as start studying Chinese and other languages . I think it is difficult for me to choreographering dances , Rakuten 's president said that speaking in English is inevitable to expand its business outside of Japan since the Jpanese market is shrinking due to the reduction of the population . But it 's a little bit contravasal because it 's very rare for a Japanese company to use English as an official language . Even successful Japanese companies in different contrieds like Toyota , Nintendo , etc do not use English as a official language yet . I think people who alredy study English like us in Lang - 8 do n't think it 's a huge burden . I wonder how they prepare for its gols . This Diary is an English - Laerning - Record and Life - Record . Today I attended an editorial meeting of an acamic journal of gerontology . I 'm fifthteen , I study Art in Malaysia . Yesterday was very good taiming to come back to Japan , because now a big and Next time I write , I 'll discribe many things . I love anymal . Eating dgs shoud be banned . Headache occured by a bad smell . Do you have any hoppies ? Do I call them `` hoppies `` ? Because , coffee farmers should get a higher imcome . This game is between Japan and Hollad . my sentencies are very foolish . . I ca n't serect good sentencies . . I studied much harder than before , but unexpectly , I got poor grades . She is such a cool woman , isn n't she ? But , the only word I know of to describe her is `` cool `` . I am a person who looks on the bright side and is an enthusiastic self - motivater . These days young people do n't necesarilly have it on New Year 's , I live alone and far away from my hometown , so I was n't gona to have osechi ryouri because it would be too much for me to eat by myself . Last December , my sister called me all of a sudden and said : ' ' I won this expensive OSECHI ryouri in a BINGO game at my company 's party , but I can not receive it on December 31 because I 'm going back to our hometown . So I 'm asking if you could go and accept it at the restaurant . I heard its very delisious ! ' ' She said that she misses me , and she may possibly come in Oktober , but only for a weekend . Shikoku is noted for their noodles , hot springs and beautifl nature . If I run into a foreiner , he / she gives me a kind of smile . But neative speakers occasionally ca n't understand what they want to say even though we as non - natives can understand it . For our office , we usually buy toilet papers thorugh the delivery service of office supplies , however , because the earthquake occurred on March 11th , this service had stopped . I lile him because he is very kind . I didn n't know that many people in korea can speak english fluently even though they do n't have any experience abraod . I was shocked and I thought back to mayself . I am taking English lesoon . Do you guys care whether your borthers and sisters are older or younger than you . When I ask you , `` Do you have any brothers and sisters ? `` , you might answer `` Yes , I have two borothers . `` Every Friday I felt tired , although there was little work that needed to be comopleted immediately . But , I could n't undestand his English . . . I shall call him again after I can soeak English fluently . The reason is : there is no chaire . Waiting for the bus took about 40 minits , until it came to the station : ) ! According to the wheather news , it will snow next week here in Niigata , Japan . This is the first time I 'll experience the winter in Niiagata so I 'm wondering if I will survive the upcoming winter . it might be bad thing brcause many men would like to marry women who are good at cooking . As I get married , it would not be good for my relatonship because my husband will be eating my dinner and my breakfirst . So if my cooking is bad , we would have some issues that I ca n't make a nice dinner . I am jealous that this site 's members can write such good Jananese compositions ! ! and yet we sonetimes regret our choices . Just compare marits ? Or just risten to advice ? But the rasult was the result , I must accpet it . I usually tap tapdance alone . It was colod , but we felt hot He is th blind twenty - year - old pianist who won the thirteenth Van Cliburn International Piano Competition in June . I am not familliar with classical music , but I think his music is very beatiful and touching . Today , I went to shopping near the station becouse today is a national holiday in Japan . oooh FUN ! Electric utility expense reises this summer . Hm , sounds studpid ? I was so proude of myself . Would you tell me if the scenery is still as beautiful as the sunset I saw with my fmaily twenty years ago ? When I was a junior high , one girl who was not my classmate came up to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied `` well I have a sister so you might feel so . `` This is not an anwer at all but I managed to say that . It is very rural . I love Yamagata becaouse I can relux . I practiced drawing dinosaurs , but they look like crocodilia a little . I don ` t have anything special to do , so I usually watch america dramas . The other thing I remember well is that the victims were transfromed into hedgehoggy monster - like figures like once in the aircraft . Bean throwing , which is called mamemaki , is done at home on the day of Setsubun . But such a considertion is a dangerous myth . I think they 're difinitely great . I begin to study Enlish with this site . I pefer the version where the princess kisses the frog and the frog turns back into the prince . We promissed to go to another tennis camp in the summer ! I have memorized lots of vocaburaries , but the dictionary that I use is still very limited . deeling off the bottom The police found evidence that the two companies had been deeling off the bottom of the deck . I see a pile of clothes and I question / ( ask ) myseft : `` Why do we wear clothes ? `` She was a completly / really stupid girl and she spent two years in jail in America . She experienced life in an america jail . My neme is Kaori . becouse it is n't the same as Japanese . I 'm going to shcool tomorrow , so I hope it 'll be good weather . I 've been learning english sice last summur . and I want to talk with forigner . My friend who is a 28 year old woman is thinking about getting marrige . Her thoughts are completly different from his parents ' . I wiil go shopping to get some groceries . l am studying English at a langage school in Brisbane . I want to speak and undersand English better . I made Miso suop and another dish . The Miso soup was a littel bit thick . I always wantded to be a cook . I sometiomes use stamps at my job for my customers . I made a decisioin to buy a house , and moved to a better neighborhood in late 2007 . I will write just a little abit of English today because I wil read my old diaries nd try to understand them again to help me make my English good in the futur . Although the internet is more and more popular among students , there is no doubt that a book is a vital way of studing . However , I have to consider the people who corrected my grammer . It is still very hot , burningly hot , in the daytime , but it has been getting cooler in the morning and the evening day by day . Moreover , all of the users are friendry and very kind . Last nigth I spoke on ICQ with my friend in English . Themes were different : religion , musik , job . We address those who are older than us by their names + san , but when I was in Cairns , Australia , nobady asked me to call them ' Mr or Ms ~ ' . Perhaps they would get nervos in the fight and they could n't give their full power and technique because they are polite and gentle guys . This is my first english diray , and I am very excity . I reside in Chengdu , China . It 's a very nice and friendly city . hehe , It 's like a panda country . Have you seen Kung Fu Panda ? She thougth that she had been living a boring life . So many people are suffering because of unexploded bombs and mines in Bietnam and around Tailand . But at Shinjuku , JR also anounced that their service was stopped because of an accident . On the way there , I drew out 100 thousant won from my account using a card . The roads / roadways of HCM are always jammed / jam - packed with traffic . For entainment and creation , all you need to do is install it . beauifull Spring ! I offen see caple of Japanese woman and foreign man . is Jpanese Man not popular with foreign girl ? Plese correct my dialy . I hope I will have someone to give chicolate to next year ! ! Also , I realised that I got close to paradice or heaven in a different way . In the bus , I met three foreign student , one is American , another is German and the other one is from Holand . They want to vistor the `` Tian an men `` , but they did n't know how to get there . I want to go to many resturants , but I 'm only here for five days . Before the coming winter , I ( prepar ) for the cold . I saw two of my idels today . The corectee might have believed those mistakes were right . I have notied that I feel the Japanese economy gradually worsen . To sove the problem , I believe that youg people should go overseas and study , travel , help developing countries and so on . I went to this course , becouse I can read English text ( not good , but I can ) , I can understand english speech ( worse , but I can ) , but I ca n't speak it ! David Coverdele is one of my favorite singers . Because his voice is adrable , many people are fascinated . I could n't unerstant ! ! ! I have n't wrotten a thread for a while . Meetting my friend , Eatting nice food , Sleepping a lot , studying english , I can do that ^ 3 ^ I 'm going to take part in Hana where I learn English skeaking with . foreigners . If you eat HoBBang , you may say `` Ho ~ Ho ~ `` while eatting . So I 've made up my mind to learn it seriously as I studay for my profession . I 'm growing some vegetables in my beranda . Last Suturday I had my hair cut . Today is April Fools ' Day . In the US , peopie usually fool their good friends to make everyone happy . because the older generation do n't like it . In their ideas we will be very impliet if we did that . After posting my journal yesterday , I regretted it a lot because I wondered if my journal entry might sound offense . I want to say that English helps me to express my emotion more easiler than Japanse . I think that there are some culuture differences in there . As my college is in Kyoto , I usualy only go around in that area . but , I am going to Tokyo to take a seminar for job appricants tomorrow . So I think that I am busy , but I would think that `` busy `` is evedence of living a full life . Well I just signed on . I hope that with this web site I will improve my englsh skills Eeting is important . They do n't want to upload their own pictures or carrers . I want to have the ablity to be able to help somebody easly . May this new year bring you many oppertunities I 'm a university student studying archtectures . This is my frist trip abroad . The next day , my left hand had turned pale and a litle swollen . I went shpping with my mom . There will be an unique ceremoney . By yhe way do you know , ' ' Turtle Talk ' ' ? First I have to decide a specific goal for example to pass one qualification , to teke an exam , or to get a job . It is most inportant that I continue with my goal . I ended up eathing too much . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more unconfortable . I think music is like a beatiful performance . It 's something essential like a type of language . There is beautifl natural places in NZ , and it is similar to my hometown . Tommorow , I will walk around town . The day before yesterda was the Midsummer Day of the Ox . Even if I achieve that perpose , I will not be able to speak English , because paper tests evaluate only my reading and listening skill . Studing the written and reading tests do n't help me speak English and learn English expressions . I ve just looked up the word `` progress `` on an English dictionary which is Longman dictonary . I came back from my business trip last night and I jogged to the office to deal with the receipts to get the compensaion now . I often eat out , like at McDonal ` s . Right now , I 'm watching a TV program about the Houbble ( Space ) Telescope . Mein Vater ist beamtin . Active : I washed my dishes befor I came here . * Japan 1 - 0 Camerune ! ! They had great performanced It was too difficult to communicate well with the foreigners , but I enjoied spending time with them . As a matter of fact , I like listening to him at th meetings . Some of my frinds ca n't drink them because if they do , they hurt their throats . The most important thing about English is to grasp the common vacabulary and the prenounciation of each word , which I am sticking to neither . We mostly choiced the topic about the teacher , only he choice tennis . He also used his camera to record other student 's activities exaggeratively . When once in the class , he aslo did this , the teacher was very angry , he hit the student 's head with a dumbbell . I want to wisit the school to pay my respects to the teachers but I can ' t I feel like the happpiest person in the world It is my firt time writing a diary in English . In conclusion / Finally , I think I become a more comprecated person when I speak English . Actually , my parents are getting divored as they always argue about things . even in front of me . So , this incident reassures me that I should get out my own country , Japan , since there is no place I can be return to after I graduate from my college . . . even though the real reason why I wana leave Japan has something to do with my big dream . I wanted to go on a trip abroad during GW , but my wish was n't realized beacuse of the reason above . some people mihgt tell me I 'm styaing in Australia to study English . I drove my car onto the main street and found that it was congested ( du che ) ; it was rainning at that time . Heavy traffic blocked the street . Thirty mintutes later , I got out of my car to find out what had happend . I walked back to my car , turned on the radio and waitted . beacuse this book has so much slang Other than the internet I learn from apllications such as `` Windows `` : ) ) ) ) I need a lot of help becouse I find English a dificult language to learn . Because it takes about 30 muinites to drive there from my house . I need to do some streching and start to take care of my health . I wo n't fail to fulfill my resolution . If I become a menber before Jan . Yesterday I arranged that I would lern English grammar . He jumped into the sea and he almost drowed . Whenever I see an English sentence , I have to think about it , and then translate it before I can undertstand the meaning of it . This space seems like a place to wirte a daily diary . I thought , I shoul write something in the `` About me `` section . I was unplezantly surprised that a lot of my mistakes deal with articles . But I found that Janpanese was much more difficult than English to learn . I wonded if he mentioned it because he wanted to invite me or because he just wanted to tell everyone the news ? But the realiy is not allowed us to choose right ( decesion ) . First , when I wanted to buy some street food or drink I always used my fidex and middle finger to show I needed two meals or two cups . But they show a thumb for one , and the fidex finger was for two . They were allowed to smoke in the restaurent , too . Silvano was so patient wih me . As you know I do n't like politicians publically speaking , but there is one politicions that I want to hear speak , Junichiro Koizumi . Now Tarou Asou is president , who is known as the way to fun speach . ( ? ? ) I often talk with my friends from Europe on Skype , but I always forget English words and I can not explain how I feel well : ( I feel very frustrated and I 've been wondering when my Emglish will improve ! But my vocabularly was too limited to make the conversation interesting . I 'm not going to say anything about the story anymore becasue there are some people who have n't seen it . In Germany , a genius Japanese doctar named Tenma had seaved a boy 's life through operation . Unfortunately , Johan was a genius person who killed without thinking about the siginificance of human life MONSER is one of the most populer comic book in Japnan Thanks a lot for reading my sentents . I even thought anything would do as long as it wsa a living thing . After I separated from my friend , I also felt another afterschock in Tokyo while I was waiting for my bus . After taking my antibiotics , I made a rush for the school so desperately that I forgot to eat something . I tought I would be able to buy something once I arrived . But my vocabulary is poor for traslate the meanings of this . Befor the semester started , I was join the magic clob in my university . Fireworks to be held tonght in my town Fireworks is an anual summer event in my town . But according to the weather infomation , it seems like the weather might be poor today . In Japan , the 29th of April was a pubulic holiday . However , I am often said `` You look like a half - beed ! `` I think that 's because of my brown eyes , but I 'm pure Japanese . Today , I woke up at 8 : 00 AM , drank cofee , and watched TV . When I am writing a diary , I use a vocabllary book . Do you know about Nagano ? Do you know about the Nagano Olympics in 1998 ? Nagano also has famous plase . For Forexsample , Zenkouji is a very old shrine ! Would you serch the internet ? It is a very big shrine ! In 1992 , I went to Thiland for meet my famiry . But evetually I managed it and we made dericious `` Japanese mugwort rice cake `` . It rainning cats and dogs in the morning , but then turned sunny in the afternoon . In the Middle East , they 've made a truce between the Isralis and the Palestanians . I 'm not as fascinated with it as she is ( that would be difficult : P ) , but I enjoyed the beatiful romanticist and photo - realistic paintings . They are so carm . When president obama was speeching , Recently I 've watched ' Star Trec - Voyager ' to improve my listening skill . But my english teacher recommended to watch ' Star Trec - Voyager ' because the actors and actress speak clearly . So here I 'd like to study techical English and find new friends ( fram all over the world , but it seems to be only a dream ) . However there was no answer and I opend the door . A middle - aged woman in a green shirt was sat down on the toilet . When I opened the door she looked surpried and I was also surprised because I thought that nobody was in there . . . . We looked at each other for a very short time . Today , _ it was a beatiful day . I sterted a Twitter account . So I hope that some day , we can meet in heavn . Everytime , I always use my iPhone for something nonecessary . I have been in the USA for 1 and harf years . While I was working at a Japanese company in Japan , I sometimes got phone calls from the other contry 's company . I 'm fine thank you and you ? `` at athat time . Please collrect my sentences if I make a mistake . I have been working for one year and I have learned a lesson - - I lack counage , which is a disadvantage at work . Life sucks without true love , I msut learn what to do to find zeal for my work . I woule not be skilled enough . ' Ahhhhhhhhhhhh ! ' , she shouted suddenly and ran into the living room , and she said that some blak object fell . Do you knou `` Fantasista `` ? First of all , population growth has gratly influenced the world . For this reason , I discided to use this gym quickly . But to be honet , it was totally fun . haha . If only I could belive it caused no pain or little pain . . . . . It is very cothic and turned my thoughts to ghosts . I was taking some photos of the church iyself , and of me next to it , but this photo is the best one for me , becouse it creates jouful emotions in my heart and soul . My mother took us to the station and I took the trin . I think I lack knowlage and books may help me to express my own ideas . I finished reading `` Wuthering Heights `` yeaterday . If you have any reccomendation , please tell me . ^ ^ I only have the datebase in my PC . I got a ticket for Kenji Ozawa concert . He is very critical of capitalism ( particulary Amrica ) on his site . I sometimes use paper or solid models which I made , beause it 's hard to describe through only speaking . I jogged only on the weekend , but I think it has is little effect in decrese my weight . Please crrect my Poor English sentences . The daughter who will arrive first will arrive early next Tursday morning . But she is really Enlish , and she speaks almost exclusively in English . Since everyone has his own fata . Another two days of the week , I worked in the training center of an universitie from Could somebody think of adjectives which do not have superlative or comperative forms ? Hello , evryone ! I got always flitened ( scared ) every time I heard it . It 's especailly good for improving my listening and speaking skills in English . I think studying Engish by watching soap operas is more effective than studyng with books . `` Charo `` is a Eglish learning program by NHK , a Japanese broadcasting campany . The radio version is little bit longer and more difficult and has more datails . When I get tired of studing English , I just listen to the story . That 's why I believe it is the best brogram . I am writting for the first time at Lang - 8 . I know some of my frieds work about 14 - 15 hours a day . So I practise my English , study accounting and go for a run to excercise in my spare time . I think that forigner are more open - minded , so I can make friends more easily . I see Jhon get on a train and it leaves XXX station at 6 p . m . And on the tarin I come across a man and he asks me what train Jhon got on . I think I could say something like , `` ( Jhon got on ) The train that pulled out of XXX station at 6 p . m . `` But , I want to explain without referring to time . ideal : What 's the ideal educational style for Americam people ? ( for ? ) However , because we chose an area of higher altitude , we had very good snow condithon . : - ) I felf very tired and stressed , but it was very interesting . What is culture ? It refers to the civilization and customs of a cretain race or nation . We do and say things that maybe we would not do in other counties , so knowing a counties ' culture is improtant if you will communicate with global people and travel to different areas . I think a very imprntant reason is that we have different religious beliefs , follow different customs , and live in different environments . I am learning English leanguage in a short time and I do n't know how to write it well . I think that it is a nice website because a lot of people can quicly learn language , so I want to write here once a week and if you can , show me and correct my mistakes . Today I recive 4 pieces of clothing that I bought from Taobao . `` Gheimeh `` is a popular dish in Iran and it is also cooked in most religious ceremonies like some cermonies that are held in two days called `` Ashoora `` and `` Tassoa `` ( `` Ashoora `` and `` Tasooa `` are the days that Muslims , especially Shias mourn for `` Emam Hossain `` ) . Becuase of this use , some people called `` Gheimeh `` , a dead person 's meal . For cooking `` Gheimeh `` we need some ingeredients like beef or lamb that are cut into small pieces , some onions , split - peas , tomato paste , some potatoes , cooking oil , salt , and some spices like red or black peper and tumeric . In the next stage , peel and cut potatoes and fry them ; you can also cut some mashrooms and a green pepper into small pieces and add it to the frying potatoes , then add salt and red or black pepper to the mixture . But when my room is tidy , I feel more enegetic . I 've alwalys wanted to buy shoes for spring . When we lend some money to someone , we should determine a pricise date of repayment . I aprreciate the memories and wonderful favors in my life . One of frineds said they are just looking for a Japanese girl because they are pretty and easy to play . According to the program , he still lives in a small town where he was born and lives like an ordinary local person even though he is a billionair . However , I 've succeeded in redusing weight byten kilogram within a half a year . Actually , I like wearing smart clothing and want to be seen as having acool apearance but it is clucial for me to have a good , healthy body . I am goig shopping today andI ca n't waitt . I am looking for my own house thes days . So hte proncipal decided to suspend the first grade class . I hav n't been here for more than a month because I did n't have a conputer . But I coud n't understand very well . So , I am starting on the diet when I cook traditinal Japanese food . Today 's manu is Udon and seawood salad . I was amaized that Japanese food really does n't need oil . I felt that I could n't do that , so I reamined standing . On hallowwn day , I joined the parade at 6 av in NY . I want to have a more crative job . conditionaer makes my difficult hair easy to comb . Reading sections , espcially the grammer section , were not very good . I bought many souveniors , for example , postcards , ornaments and a lot of tableware . it takes ten minutes to get there by bcycle . It was made using concreate , not wood like the other castles , so it is just a museum inside . The fondation of this castle is a stone wall using a lot of big stones like other castles , but there are some huge stones here , like the second photo attached . My ankle still aches a lettle : < Tomorrow , I 'll enjoy being with my family , playing game together and talking about something in traditonal event days . Im 'm worrying a lot these days . Finally , they bacame friends . I was frasturated . After watching the movie we went to an Italian restrant and chatted a lot XD They usually say `` happy Valentine 's day `` . But then I often feel annory because the day did n't belong to me . But then other people messaged me `` happy Valentine 's day , even though we do n't love each other `` . haha ~ ~ now I feel happy , even though I have n't * * But I have some good friends . The last time , we went to Barbecue restaurant to eat a lot of different foods . And it 's interesting , a group of obaasan ( old women ) were singing loudly and drinking next to us . They looked so happy that day . Just some old womam , no roses , no chocolates , but happy all the same ! My hpliday has been going so fast corecting donations and taking them to the communities office before ten . I saw an USPS driver throwing a package up onto the second - floor balcony of an apartment haouse ! To my dear friends who are living arond the world now : If you do n't have that , I too sugest you find it out soon . I hope you will be happy to finding a nice pertner . Anyway , the doctore ( s ) told me to get some more excersice ( > _ < ) At the end of the month , we must submit our presentation to the chief excutives . Mebourne is good city to live but I hate Melbourne weather ! It 's the last concert of univercitiy . When people crticized it is hard . . The sports festival wii be held next Friday . I evny her because her English pronunciation was more fuluent than when I saw her 1 montn ago . My department held a welcome party for new empoyees today . I want to be a prischool teatcher . I 'm in my friends room , in Yokohama , ristening to music Talking to him , I dected that my english was becoming poorer nad poorer . It is very important becouse there is a danger that a new product will eat into the share of the market ` s existing products . She told me that the company wanted to fill several manager positions with people from all areas of Japan , then she called again to tell me the day of the interveaw . Today , I will answer a qestion . The Qestion is : `` When you 're feeling sad , what do you to feel better ? `` It takes 60 mins to get there and 60 mins to come back . . . Ono was taken to a plice station under suspicion of violating the ( a ? ) Maintenance of Public Order Law . The prosecution and the Court ratified the `` Black Trial `` made up by the Tokko Plice . Because it was so hot and humid , just staying at hotel was irriating enough . However , there was a laiser show that night . But he is pritty cute to me . I figued out the reason . I think that they met their fiances , fell in love , knew each other well and decided to get merried . My older sister sent me a picture of her and her hasband . Recently , I bigan reading and listening through iphone . English tutor said : `` You have to study grammer lessons . `` The main purpose of this trip is to attend a conference hosted by Microsoft Corporation at Microsoft Campus in Redmond near Seattle , but first , I 'm goint to Las Vegas today ( for no special reason ) . I want to join other class from this autumn , kins of gym , tennis , or something like that . It was not too sunny yesturday and I did n't care if I became sunburned , but now my skin has become an awful red color . I 'm a Chinese girl who lives in Austrilia now . This is my first time using this kind of website because my friend recommonded it to me . But I always do my best to comunicate with foreiners by using as many expressions as I know . I have never come into so difficult questions given as prictice . A few mins ago , there was an announcement that the flight to Shenzhen will be delayed for about 2 hours . My granma said that holy ghosts protected me as goardian and kept thier eyes on me at my birthday . Acutually , I finished all of my classes except an English Adcance class . When I lived in Japan , playing the piano and going to my favorite places with my hsband were the best way for relieving stress , Of course I like talking my friedns , going shopping and so on . Shoud CEOs be limit on salaries ? This theme is mentioned by that Wall Street provided complax financal products that led to resession on worldwide . Of course I sent a message to my English teatcher . There is not a single clowd in the sky . But I do n't like to study grammer , so I allways use few words with broken grammer . Like every studengt in China , I have studied English for 10 years . We went shopping and bought pants and a jocket . This test is very important ( no comma ) because it is essential for me to be an exchange student between my university and Frorida State University to study . My cousin tought me how to see my friends ' sex and native language at Lang - 8 . I can use skype & yahoo messanger ! We played sccoer game and wii sprots . I have two ways to improve my vovabulary study ; one is to read DUO 3 . 0 books and the other is to read a simple English news site every day . Recentaly , I have n't been studying English because I have been neglecting it every day . But , I will start sutudy English again from today onwards . I 've taken care of the people who have deppression , so I can handle them , but it was my first time treating a person with bipolar disorder . Here in Japan there are many rain showers in the spring and automn . I 'm looking foward to coming back here next time . I want a Korean - Jananese dictionary to understand the words oftheir songs ! I 'll stick to studying Ebglish the future ! ! My supervior told me that it is tough to teach students English . So she is qute . The guy sitting next to me is borhering me . There are Japanese , Korean , blazilian and Chinese students in my class . My teacher looks like Hagrit . But to tell the truth , the reason why I love her is unexplanable . I wish everyone a happy happytime on Valntine 's day . . . I rememberd my trip to France three month ago : ) I have some quetions . When we take this examination , we are all very nurvouse because volanteers play the role of patients . Then he died at 65 years old while I was in my first year of erementary school . I posted my first diary half a month ago , but to my dispointment , it After that , I went back home and cleaned . In the evening , I went out with my friend . He isn n't my boyfriend yet . We 've only known each other for one week , I 'm afried that I might be falling in love ! I 'm wathiching the Japanese movie `` Death Note `` on TV . Both an investigator and the climinal who uses the notebook take center stage . What do you think about Japanese car makers , for example , Toyota , Honda , Nissan , Mitubishi and Mazda ? I read books for 10 minutes when my eyes feel sored , or I 'll run outside to make my blood stream more active . It 's time to finish writing this entry because at this time , 8 p . m . , I 've got to walk around for exersice . The books are `` The traveler 's gift : seven deisions that determine personal success `` and `` Mastering the Seven Decisions that Determine Personal Success `` written by Andy Andrews . After half of a day I recived it by a deliveryman and read it immediately . Fanally I finished reading the book I accepted the situation , and now I 'm clazy about Lang - 8 right beside them . I couldnt n't calm down , so I hit the wall in a restroom in the station . Yesterday , my syster and I went to the cinema and watched `` Gnomeo and Juliet `` . reflect : If the light from a mirror reflect to the paper , it burns . ( I feel this sentence is wierd but I do n't know why : p ) defend : He tried to fefend himself but everyone spoke at once , so he could n't even say anything . My parants and uncle visited a temple where she was buried . My family is buddism so we believe that the 49th day is We had a relligious servis and prayed for her . but I ca n't think of a serious topic so I decided to talk about techniqques for men . `` Do n't raugh ! `` I said to him in English . ( Question : ) shoul cars be banned from city centers ? It leads global warmin . donno why , but I was cracking up badly lol Tha band I saw is a Japanese band called Kirinji , which is not so famous even among Japanese . It 's sometimes not fun ( to much presure ) doing work in my clinic . I feel intersting when they smile after I say something to them . Let 's try having fun ( plesure ) in our day even if it is work ! The right picture is the secound tea . Wave dinamics , thermodynamics . . . ( particularly WAVE ) everything about physics makes me confused . We 've had studied English at least for 6 ysers . My familly is going to my grandmather 's house . Ahaha , I looked it up in the dictionary , but I could n't catch the slight difference . I can read English newpapers and books without big problems and have made a big improvement in listerning , I should learn more about grammer , I cooked Tandoori chicken with my friends at a cooking class . Last week one of my friends said , `` Let 's go to a cooking class togather . `` I wanted to know how to cook Tandoori chicken . I decided to go to it . And , the order , starting from closest the barin is ; thecerebrum , the brain stem , which is a vital part in center ) spinal cord , whichis atthe end of the central nervous system ) and peripheral nervous system , whichare the nerves below spine ) . In Japan , I ca n't imagine all adults would wear helmets when they ride their mama charis ( ? ) ; that would be ridiculous . But I do n't forgetot to drink beer ! While she was out , I came into the house and hid in the box which my mother - in - law had parepared . I swithed / turned on my favorite radio station . So , I think that my poste is finished . It 's my firt text on this site . so I maked a cake and made rice this morning . I gave her a present for her Bithday , which was 5 days ago . I think that remebering other people 's names and calling them by them is very important . When it comes to remembering people 's names , we try to make excuses saying `` I am busy with my own work , I do n't have time to remember people 's names `` , or `` How can I remeber everyone 's name ? `` . A leading actor is Sylvester Starlone , and he was the movie director , too . Another actors were Iason Statham , Bruce Wlills , and Arnold Schwarzenegger . Yup , I was correcting some texts at midnight when this little creature silently glid from the yard of my house into my bedroom . I got up early this mornig because it was terribly cold . Ok , knowing that categorical vocabulary is getting more important than it was before , I take the responsiblity to memorize them with a mor efficiency . ' ' Was my borther reluctant to get up at three in the morning ? ' ' My major is international relations , and I want to be a dplomat . In Japan , TV programs are highly developed adn devised `` ; `` or `` , and `` culture and languages can be shown through the device . There were a lot of people coming from diffent countries . I thoguht he was poorly taken care of . I was surprised becuase I often parked there instear of parking in the parking lot by now . I 't is weird becuase I do n't see the red line marked along the street , I do n't know why it is illegle to park there . And the same day , I arrived at Heathlow , England . Originally I 'm not good at Englih , and additionally , Japanese people learn American English in school . Maybe I saw Selena Gomez ( After seeing her , I used `` gogole `` , since I knew her name ) . Last , I ate a delicious cake and that was the end of my brithday ! ! I mande an appointment with my frined , but she is not the same person from the chicken conversation . They all said that the cabbage I cooked was delicious ! It was a great success ! They gave me the courge to learn more about cooking . Though I study English a lot , my score is the worset score in decades . I started studying English because I am a computer programer . I 'm optimatics ha ha ha . When we are learning foreign languages , we are liable to think that we should n't use our mother tougues often . What makes our lives collapse is defenitely negative thought . So I was very excited when I read the news about Haneda airport , the closest airport to Tokyo , opening a new tarminal for international flights . They emerged from MySpace first , and recently they have become famous in JapanI , I think because of her cuteness and some songs . . . They must have felt more scarly than me . I have some flowerpots and a veriety of flowers are planted in those . Thanka for your reply a few lines . If we recite a sutra once , we will live peacefuly in the next world . I found this site on AERA engilish and I 'm interested in it because I am studying English now . My husband has entried for a full marathon but he has n't run such a long distance in his life ! I do n't want to paticipate in any marathon definitly . I remember how I got discouraged by my English teacher inthe cram school . There , instructers always cheer me up when I ca n't say what I want to say . I can learn what is wrong with my sentense and a more natural style of writing . * Today I learned where can communicate with other country 's friedns . * As English major student , I think I should learn English well , so I am reading an English book , ' Blach Boy ' by Richard Wright . I could n't understand all of the story , but I know aproximately what this book is about . Althogh I read the book slowly and do n't understand all of it , someday I will be able to read fluently . I bilieve that . How about brithen ? ? There were many believers and tourisms visiting the famous temple . However , in high schools we ca n't choose the classes . That also includes middle and elementry schools . And if we want to make high schools bigger , we have to build more constructure and it will waste a lot of money . Some iPod appications are very useful to me for learning more English vocabulary / phrases and sentences . Some example senteces are welcome . I am a new employee in a company , and because my job may use English , I have to improve my English . When I was in school , I studied 6 years of English , but I have forgotten somemore . Since then , intricate networks of power lines and utility poles have become prevalant in a short time with the increase in human residences . Now the beauty of the neon from human civilzation is are replacing that of the starlight here . We went to an all you can eat restaurant , and the price was NT550 per person , which is equivalent to 15 us dollors . Besauce the restanrant is so popular , we had to wait for like a half hour . That Taiwanese guy asked my studnts 's phone number , and she gave it to him . I realizd that I had wonderful friends and that I should enjoy anything that may happen . It was not possible to go to nanode sea . and I arrieved at city after 30 minutes . There was a lot of delicouse food . I have been waitig for `` twilight `` . I asked my friend for the audio books as suvenior . I will continue reading from page 52 tonigth . In addition , walking and hiking aroud parks and collecting flowers and plants are also a good example . I saw many of my myfriend online . artical . In addition , I have something to request of you . Can you share your expreience about learning Japanese ? I even forgot a lot of garmmer . I 'm in such a good mood becasue my weekend was wonderful . It 's rainning today , thus I 'm so gloomy . Since this morning , it has been rainning outside . We had some bread for breakfirst . I 've decided not to use a translator for looking at how sentences shoul look . I would keep dancing but I do n't have enought money . Accessories like rings , neckless and bracelets , Hanbok , Korean traditional clothes , and more . I feel so bad after getting angery . Is he a clone of the armer polot whose father is a heroic astranaut ? I had no plans to begin with , so I went to school to check if the exchange list and the exam scedule were available yet . Returning home for the second time , we rememberd that two of our friends have a birthday in the coming month . We do n't like them because they 're good at sports ( football , tennis , cyclism . . . ) . They eat horrible things such as jely or pudding , one of the most horrific nightmares for a French person . - Africans ( black people in general ) : they are lazy , only good at athletism or football ( but they 're not technical , they only run ) . French in general : it 's agreed that we strike , criticise / critize , and moan too much . And my car will be a totall loss after test - driving it ! Its contente is to improve the communication skills . I was a system enjener in Japan , but I want to find anothe intersing job here . I was so sleppy , I could n't consentrate on tha class . But if you are in relationship and if you say to your friends that you are not going out with your boyfriend on Christmas holiday , they would think it is a little wierd . I registre on this site because I want learn English . He ack like he really cares about the buppy in the computer . He might want to say ' Hello I am a buppy nice to meet you ' : ) After checked in the hotel , I went to Union squqre to take part in a ride on a private cable car that took us to our diner restaurant . It has been while since I last wirte here . So please keep wirting in here and I will continue to support you . One of them brought insecticide and an antiseptic spray buttle , and he squirted and sprayed me . They are crazy and make me frastrated ! ! I watched a random episode of Friends and realized how much I loved the show when I was younger and I totally shipped ( loved ? ? ) Ross & Rachel , because I always thought they belonged togehther . I do n't usually buy imported items because they are a bit pricer than regular items , but they were on sale . Going to ltaly ~ Today , I will introduce my favorate building ~ The great wall . But I do n't wanna be in this present situatuion . Yesterday I was caught in a sudden shower when I went out with my girlfrend in Ginza . Therefore , it encouraged me to commuicate with others . There were also a lot of people who had frequently spoken English , they could talk with others as what they wanted and express theiy thoughts and ideas clearly . yoiu can see that I 'm totally not interested in what you are saying ( those fucking business ) , and then you get pissed off and say that I have bad attitude . I just found this site now accidentary , and I think it will help a lot with improving my English . But to me , his English seems excelent . The other ingredients are Tofu , cabbege , pork and mushrooms . * * space after commas Although a `` know it all `` is an ironical title , I still persue to be one . Hachi goes to the station with the profressor every time , and from home to the station when hearing the sounds of the train . Hachi never missed one train and never missed the proferssor . He still never missed a train , though his master never appare again . One day , he fianlly goes to heaven to find his master . I want to make freind all over the world . But , nowday I have began to say to them . when we spoke , I coul n't help embrassing like stammer . They were very beautiful and looked like big frowers . Finally , Tegomass ( whichi is a Japanese idol group ) appeared on the stage . Also , you should sit down at a seet near the door . I often practice dancing with a mirrow , but I can dance freely , using my practice , at nightclubs . As a matter of fact , I spent about two to three hours talking to my friends on Skipe and serfing the internet , so I did n't get enough sleep . It coudl n't be helped . At least I can say I did n't waste my time thiniking about the things that could never change . I work as a privart tutor for students . Today , I 'm very angry besause a my unitersity 's student break of traffic rules . Today I registed for a Lang - 8 account . I work for a Japanese restaurant as a waitless . Oh my God , It costed 80 thoundsand Vietnam Dong . Luckily , I found a quite cute pig with a cheap price , just 10 thoundsand Vietnam Dong . This week is bery hard for me , because I have part time job on Monday , Tuesday and Wednesday , I plan to play on Thursday , and go Kyoto on Friday . ( ^ ^ ) * Of course , I have class . so I must study . I watch SESAMI STREET podcast on my ipod in English . my reasons to stady english so I have to aquire good English communication skills in order to work well . My plan to study english is to write English compositions and watch DVDs of `` FRENDS , `` which I heard is an intresting comedy in English , everyday day . In spring every year , Japanese hold partirs in which they welcome freshmen . Some get too drunk and misbehave . They can be seen sohuting and urinating in the street , while breaking signboards , and so on . A few days ago , a drunk celebrity was arrested on a chage of indecent exposure , but many people put their signatures on a petition . Kiyomiya , a very famous Japanese prfessoinal rugby team director . I know of one great japanese restaunt in shanghai . My feeilngs were a little bit complicated because I did n't study very hard so I wonder if I should go up or not . . . He is shy , so I thougt he might hate me . ( = this means grandmoter ) `` , and hugged her . The memo 's contents are life , dialy , work and so on . I hope I can learn more Endlish and share my life . Oh , I dont n't have time now . There are many dishes and many thinds such as choppsticks and so on . One of my friends is going back her own country at the end of Octorver . I will introduce you an interesting article in the moring papers . I am watachiing ' Ponyo ' created by Miyazaki Hayao on TV . After lunch we strolled along asmall streeat . I became a menber of `` Lang - 8 `` today . American Yahoo 's accont I would strongly recommed that you go make an account too . Then , when I started an aplication `` S / W `` to make a design for cards , I noticed the adress data or information was missing . the adress again . But my callphone did n't ring . Other contestants ricited formal speeches , for example some presidents ' speeches . I thought my recitaition was out of place but one of the professors said it was good because everyone knows the story . When I was a student at university , I crimbed it two times . I 'm excited and feel a little aneasy . At the end , they played at Camegie Hall . Thus I always wear contacut lens In Japan , most high highschool students wear loafers to school . ( `` when they go `` is not necessary . ) This is the secound time I write a diary . I can go manywhere I want . I could n't find any empty seats so next time I will come into the class earily . I am fed up with arguing about probleams . It is first time I have gont to the mexican restaurant . Sometimes , I dream of speaking english enfluently . The lake water was glowing and shimmiering . The graduation ceremony of our universty takes place on March 17 . Each of our club students traditionaly / usually write comments on a large graduation card to each student every year . Because we have commen topics and talked very well before . I told them I would sign off soom . I 'm not goot at electronic stuffs . . . so now I 'm fighting with them . I wish that all the world 's problems could be solved like children 's way of thinkig , naive and simple . Today , I bigan Lang - 8 ! Little Amy was fearfull . I worried about what shoould I write on here mainly . Exotix Zest Oh , I have a feeling no one ges them to her . . . My grade is not good encough at all . So I try to keep a close eye on the holl and the costomer . So I could n't concentrate on the costomer . My Vietname colleague asked me to go to a karaoke shop and I went to karaoke . So , I need to write jornal about this , and post ? ather ? web site or make somefor notice it . Recent , I wrote on lang - 8 , but lang - 8 did n't recived it . That resoult worries me ! My hasbund and I went to a hot spring last weekend . Anyway I took the English conversation class yesterday and I was so dissapointed because I found thatI could no longer speak like I could when I was in Canada . and of course I have to answere them in English . If you found any mistakes or kinda correct but awkword expressions , please correct them . I hope I do n't commit errors , othrwise I will have to recover with your corrections . I 'm not sure how I can make this a sentense if I want to talk about this topic . I 'm attending school to be a japanese teacher for foreigners . So when I get the skill , I can teach anywhere in the worls ! ! So , I can baite him from the tail , better than having had eaten him from the head . I almost lost my life , but at I last defeated any difficlt and caught my life again . I will vist the US next year so I need to know more about the US culture . It 's defference from Japanese culture . I have n't experieced giving tips to a staff . The Korean woman who served him in the small restaurant was probably suprised because , usually , Koreans don ` t expect an expat to speak Korean fluently . Unfortunatley there is no chili papper Kimbap on the vast list of this restaurant though . He told me that the spa is becoming popular in the Filipin . I finished giving a Halloween lesson in my classroom even though hallaween has not happened yet . It was popular with the mothers , but the littel kids did n't know what a sisiter was . Some students had thought she was a ghoust so they felt like crying . There are 2 months left untill this year is finished . It is never pleasing or proud to hear that the origin of your name came from an advertizement copy ! `` Whenever I call your name , I feel like my tongue rolls smothly . I went to `` Dockland `` where there was a shopping center . I loveher so much but I ca n't meet her in reall life . But I could not do anyting about it . I couid n't believe it . Althougt I filed a complait against him , I did n't feel good . When I get stressed , I will take a bath for a long time or I will watch a moive . I prefer comedy moives to action moives . It is fun to watch if there are unkwon actors in the movie . I wonder what he means exectly . . . Second , I jogged 5 miles this morning and practiced golfing in the driving range for 3 hours . The scenery was so beauriful and there were wonderful buildings in Disneysea . Because we were there from openning to closing time , my legs hurt . That night , we had a lot of fun tallking . We had a relly good time , even though we were tired . I remembered the theme song of holloween . Because her birthday was coming soon , we gave her a dinner chicket for that night . It seems like the inside exposure 's damage can be lowered by taking iodine as it halps the body excrete harmful chemicals . but please do n't take this too seriouse . I have loved a boyfriend until recentry . Of course we feel a sense of alieanaiton when we see foreigners at airports , other countries or our towns . Imagine if your country was a samall island and if English is spoken in only your country ; it would be a big handicap for you guys . But of course they only spoke English while we were drinking , so I counld not join the conversation . The cheaper price and the better qulity are the characteristic of our center canteen . I like sutudying other languages becaouse I can meet a lot of people and learn about the world ( ? ) . The things that happned last night did n't arise from the differences of our calutures but were personal matters , I think ; - ) But our American frends could n't understand her feelings ( of course , they did n't understand Japanese ) . I think it is natural that this happens and it is interesting to comunicate with someone who is from a different country . Anyway , I am turnig 20 this month . But I figured out the view of the town is so amazying ! ! twice , and been to 4 cities , Pheonix , Chicago , Wshington . When I had some oppotunities to speak in English , my Japanese supervisor was in the audience and said `` You said a water and forgot to add s to he want `` and so on after every one of my speeches . I became more nurvas about doing speeches in front of him . hey guys , it 's my frist time in here , I am so happy to know you guys to help me to learn English . In thinking about languages , I am always haunted by my enourmous ambivalent emotions . Tnanks a lot . His wife is a Japnaese . One of my cool Japaness friend told me about this website . Firefleis . My favarite person , Kudo - san , is from Iwate . At my school , I have a Benuzuela friend . Everything abuot Me : ) Especailly on festivals and weekends , KTV is almost the premier gathering place for young people . So scarely : - ( After we left the shop , we went to two ther shops and only looked for something in the shops . By the way , I 'm going to Spain , France , and IItaly next month . The reason whhy I spoke so loudly was that I wanted everyone to be able to hear me no matter which corner they were in . Anyway , I enjoye it . Yesterday it was rainy , but I took them to the docter . My daughter did n't like ENTdoc . She did n't sit still and cried , so I had to hold her whilethe docter examinedher ears . They pester me to go outsideeven though I play with them , suggest new games , give them new DVDs , new snuck , and so on . I began studying English two months ago because I want to go abroard to stady it . I hope I will have a parmanent dream . I started this job in Janualy . I have to comuticate with custmer and take care of them . I have confidence working with people , but selling is not just about comunicate . In fact , _ I am cring as I read his mail `` We had two visiters from Vietnam at my home . I watched the news yesterday and I heard that there are many people in the world affcted by this influenza , and also there is one person who visited Mexico and guessed having this disease in our country , My daugther slept by my side ( last night ) . So , I alwaya feel sleepy . . . I forgot the timetable was changed from usuall day . Unfortunatelly , I was eating lunch in the park so I was 10 minutes late . I ` m not sleeping , becouse I am trying to translate my favorite songs . In the x - ray , he and the docotr could see one earring . Actually , I 'm pregnant and often have morinig sickness , so I felt gloomy before the wedding . I hope I wil be a top salesperson . I 'm great because I keep momorizing boring words . I 'd never played tennis before I took the class , but the corch teaches me how to play step - by - step , so I 'm getting better . LOVE AT FISRT SIGHT ( part 2 ) I think the theater will be crowded this weekend because of `` Avator `` fever . I believe `` Avator `` will reinvigorate me with its visual technology and emotional story . I 'm learning new information that I did n't kown Altough I memorize that , I ca n't make use of it . The differences between America 's and Japan ' abaut traffic rules When I came home , the game had just just finised . . . So , probably I will have ineternet there , too ! They are learning Japanease in uni , so they practice Japanease with me , and we Japanease exchange students practice English with them ! ! My name is Frank , and I am Chinese . I live in the Guangdong Province with my familier . I graduated from the univercity 2 years ago . Since all the groops would probably be using Powerpoint , I went to the electronics store to buy it with no worries , My concern was the compatibility of the English software with my Japanease OS . There have very beautiful traditional Japanise gardens . But whenever I meet my firends , But I do n't have any complainment . I really enjoyed my home life because of my email ( ? ) freinds . I do n't want to go out , I do n't want to cook , I do n't wanto to study . All of my friends will spend long 4 - days vacation in thire hometown except for internatinal students who can ` t go back theire own country . They are not vegitalian . When I read about this website , I could n't bealived that someone would help me and correct my mistakes for free . If anybody of you are intrested in the history or geography of my country or city - please write to me - I will do my best to help you . That 's why I reserch some local tours through the internet and some books . I sometimes teach sutudents Japanese and Mathematics . My favourite articles are about the international life , design , and fasion . They throng to pub on Friday night to sing a song , play an instulments , and , of couse , drink a beer . During summer quarter , I took an ESL ( an abbreviats of English as a Second Language ) class . The main activity of this corcle is organizing what is calld `` IW ( International Week ) `` . Let me explain , my university cooperations with foreign ones . I 'm sorry for long sentensces . . . After that , we dated a few times and I was a little comfused about our relationship . In chinese , relationship has a widerly meaning than in English . Fortunatley , his skill was not that good and I just ca n't enjoy it that much to lose my mind . ( Is there anyone who is under 18 here ? ) He asked me do I know anyone who would go to Japan , and can buy Japanese cigaratte for him . I helped him to get the cigaratte so he should come to see me to take them . Frist let me introduce myself . Altough I am interested in English , I am still not good at it . Actually I have a good enviroment to learn English - - I study in an Internetional college . Alomost all of my teachers are foreigners . I am a college student and my major is informatics and comunication . I want to learn English to study computer langualge and technology . I look forwad to seeing your correction . Actually I graduated from Seoul Women 's Uniersity about two years ago , but it 's near my house so I see it almost everyday . . Bahrom Education , teaches people to share and learn important things with others , like philosophy , etiquette , religion ( christiarity ) and even the history of SWU . Classes include group discussions , performances or indivisual learning . Atter 30 minutes of walking , I felt tired . Althought , I do n't really have to go to bed right now . I like a movie in which I discover and solve some mistery with the main charactor , so I was unhappy with this movie . Actuaaly , sometimes old eggs cause food poisoning like salmonella , I am pleaced to meet you . Tomorrow and the day after I am going to visit Miyagi prefecture in Japan , where there was severe damegas from the huge tsunami that happened in the last 11 March . I have had two jobs for two and harf yers . this is more natural . His act was illegal of cource , but was it so serious a crime that investigation of his house was necessary ? Then , I happened to think , `` It 's unusal for me to eat bread for breakfast `` . It 's unusuall in Japan , because there are rice cookers in all the houses in Japan . I bought my new Windows PC for mobile last Thurshday . Yet weather focast said it would be snowy today . We usually start to study English from junior high school as a part of compalsory education . But the native English teacher speaks fastly instinctively . In Japan , it is vey popular for girls wear them at a fireworks display . We did some sightseeing , had lunch , and bought seefoods , such as crab and flatfish , there . So I keep on studing ! It 's just nothing else than a program which is displaying us the fishcards and making sure that we are learning them . You may also ask , ' what the hell are the fishcards ' ? I do n't even have the sterngth to go prepare myself tea . I have a bad headache recenly , so I ca n't easily think in other languages . I want to be able to writting fluently and quickly . . . Please teache me the meaning . I have to get my lisence by April , so I 'm learning how to drive . I 'd like to talk and dibate with my kid ( child ) in English in the future . Sorry I ca n't write anymore caz I 'm so fuckin ' sleepy right now . I worried about getting fat because I put sugar and milk in coffe . After graduating junior high school , I joind the Japan Air Self Defence Force . Today I had an appiontment with my friend . I 've just finished writing my lyrics ! Prease read ! I 'm goint to go my friend 's wedding , and I 'll congrate her . It 's famous for it 's peaceful villageand atmosphere . I did n't even realize that the HALLS were making my stomache ache worse . To my sadness , villains certainly do exsist in all societies . Rencently , I am tired because of work . However I was able to understand her by watching her body langauges . . I got out of bed , and opened the cartains . I finaly got a day off . I am a cook , but also a student in univercity . I still have lot of things to write but the things above can describle my feelings for Zidane . I have n't written in my jurnal for one month already . It 's delisious ! ! ! becouse you are a japanese , you can get huge income . But I think going on a tirp on Christmas is a good idea , because you can enjoy illumination for Christmas in a place you have never been and also sight seeing . Yesterday , I read an airtcle about `` Lang - 8 `` on the Internet . She also sometimes stays at achool until 9 p . m . working on the project . If you say yes , you 're a person who likes advanture and lives now ! He hit his head on the celling hard and gave himself a concussion . HI I 'm an Italian girl , studying English in Melbourne . I studied in Pisa , but I 'm calabrese . One of my friends called me this evening and told me one of my friends from high school was dead . It was dificalt for me to accept the news even though she was not one of my close friends . However , I used to coppy her homework before excam , and go to her house . We liked to sing songs and go shopping . I did n't think she would leave my life so soon like this . I am sad . My idea throuhgh my experiences is that work requiring brainpower ( like studying something ) in the morning is much more efficient and effective than in the evening , keeping away from sleep . I do n't want to stop challening myself . Yestereve , I helped my friends wroten compositions until 3 am . So I 'm so tird today . Many people who can speak English fluently are intoroduced in the book . I was happy because I got him smling ! Actually I 've been going with my girfriend since my time as a student teacher . So I hasitated to go there , but today I decided to go because it is fine and cool day today . I 'm happy to have 3 frineds on Skype . The island was so wounderful , and from that time , my dream has been to live in Hawaii in the future . I have dicided to go on a working holiday in Australia . If you speak English and maybe interested in Ruccia , or the Russian language I guess you 'll have something to talk with me about . I 'm a college student in Japan , and I 'm gonig to go to Vnacouver this April . when you go to different countries , you will learn more abot your own country than abot the others . I 've been meeting Japanese leaners through internet and they are very good at writing Japanese on text chats , even though they are very young . attend : I dicided to attend the language school in Umeda . occupy : In this company women occupy 60 percant of the excutive officerpositions . concentrate : I was scoled by the teacher and told to concentrate on the class . persue : Humans have been persueing the truth but only few people have found it . Fisrt , I want to take a city - tyour bus in Seoul . It 's famous for a hugh bamboo forest and a metasequoia road where metasequoia trees are planted along side of the road . I 'm learning English to comunicate to foline people . Please check my sentense and pick up on my mistakes I palnted sweet potate last Sundy I also palnted cuvamber , eggplant , tomate , corn and watermelon . I 'm lokking forward to a big harvest . Everything is nd beyound my imagination . That 'd be because , when I study by myself , I can proceed my own pace , and so I do n't need to wait for other amatuar users that are less skilled than me . `` Pirates of the Carobbean : On Stranger Tides `` was also exciting . Evencally , I stayed with my friend . I bought pasta , iced tea and a chicken and rice casserrole . I want to study English by using this cooooool website ! Actually , I 'm not good at speaking or lishtening to English . So eterday I looked frearfuliy at the scales . Ao I am willing to reduce by diet The way America killed bin Laden doesn n't reflect the democratic face of America . The way they used instead reflecs an indemocratic face of America . Oh , America if you call for respecting human rights and human dignity , why did you throw bin Laden ` s cropse in the sea as if he was an animal instead of a human being . It 's so expencive . Am I too serious ? definately yes > < is a good nigth I am on tha computer , my family is asleep beacuse is late at night ! ! . . . We live nere Zi Jing montanil . This is my firt time on this site , I 'm excited ! I seem to have no talent for learnign forien languages . Today , I made some frinds . ^ ^ Recently , Lerning English makes me very tired , but Taliking with frinds in English is very fun and it makes me How do you spend the valentin 's day in your countries ? I will take the TOEFL test befoere long , so I am going to practice for the TOEFL Writing Test . First , we were devided into two teams . Of Ofcours , the team being questioned had to answer quickly ( too ) . I 've spent my time drinking with friends and watching america dramas . Today , I just found myself whatcing an America drama again ! ! I met some foreigners and many students who also want to practic their language skills . Sometimes some people asked me questions , but I did n't respond to all of the questions becuse I was n't sure what was said . I remember that I did n't speak any words expection `` sorry `` when I first came to here , what 's more , I did n't know any of their dailog , but I can ask some questions and can communicate with others in English in here . I have no friends to studyy English with here . We went to a library to study until 4 in the aafternoon . Our heartbeat was the rhytm that made us connected , and we were dreaming together about this new life we 'd live . I 'm working as a cram school teacher anf I 'm good at Japanese ^ ^ As interesting as these activities are , some people still regard Ghost Month as an unluck month ; hence some people keep out of the water , some go to temples every day , and some are very wary of what they do and say Oh ~ My ~ Godness ! ! I 've made a dress for my doughter . I have made my doughter 's dress which is pale yellow because she wants to be a princess too . Their dance is very energic and I think it would give others a power when they saw it . The two brothers are very vigor and their mom says they have fights constantly with each other . We made an appinment to meet at a cafe near my house . We arived at the cafe at the same time ; 10 muinites before our lesson was to begin . So I want to leran this very important information . Becouse I watched it a lot of times before . Recently the weatger is so bad . According to the wheather news , a typhoon caused this rain . ( the PlayStation3 has individual e - mail adress ) [ remove the period ] So I was a littele bit disappointed . About the mine accidenf in Chile At first , I _ Iwas happy and impressesmd by the news that all the miners have been rescured . After that , I felt a little starage . Why did Chile govornment agree to re - digging such a dangeorous mine without the appropriate researcing ? I belive learning languages is the same as learning another world . There were many beutiful , big , traditional buildings . All of the food was funtastic ! ! ! I wondered if I was a prioncess . It was I inconvinience , but I thought it was actually kind of funny . I have read another piece of news just now ; according to this , at least 51 people were confirmed dedad due to `` Ondoy `` storms and 280000 displaced due to the flood . In the beggining , I was at a loss . 3 ) My another parter , who is an American - Born Chinese , told me that he was busy typing a manu for a restaurant . I had a bit of trouble when I attemped to sign up the forum . The song was used as background music for a documentary of The Olympic Games in Grenobe . Maybe I 'm still scared of the feeling of lossing him , someone who was very precious to me . I got myTOEIC resulte . Sportsday is going to be held at my son 's preschool next nextweek . Becuase I did not get up eally . Plesas check my diary I also met new freiends , a Japanese woman and a German man in Zurich . Yesterday , I had an English lesson where we tolked about abotion using an article titled , `` Obama Lifts Ban on Abortion Funds . `` So , prease talk with me on Skype . has tought me to stay whole . How I miss the days when I speak Cantonese and proudly take people speaking Manderin as outsiders Yestarday , I bought a video game . There is only one cabinet competing so it 'll atomatically win At the checkout , a casher told me that `` this is for display , not for selling . `` Then , I had to go back to get another dish set . She had had no children but she had enjoyed her life with working , hobbise , and socializing . ( For Chinese factories , Chairtmas is n't a holiday ) They were very sweet and delisious . My first dialy in English for you So I intend to write irregularlly . If possible , I want you to correct my dialy and know about Japan or Japanese . I raust it with garlic and put added some basil sauce . Marina became a famous language teacher and her website hit more than 100 milion . I 'm always wonderling if my English is natural or not . I had tea with the particioants after this class . I had a good time because we talked about sysytem of studiying English . We decided to get a construction company repear them . I was stuck in the tube for 40 ninutes and had to abondon the Picadilly line . I could n't understand why she choiced that place . , and I didn ' t I want to become friends with those who are learnig Japanese . its been a long time since I spoke english , because I 'm studying japanese in dalian , the beatuiful city in northeast china . there are many interesting things and delcious food in my homeland , especially hot food , pandas , and lots of good indie music . Yesderday I started PickupPhone study . So , I think we should keep and preserve our old buildings because of our culture and histrical legacy . It 's a big dicision and quite a challenge for me . Now I 'm worring about homestay I am always looking at my co - workers and folloing in their footsteps . Broun is my natural color ; my mother 's hair is the same color , too . `` No , I have n't ! It 's nuture , honestly ! `` Each time I got a scoling , I grew more tired of it . I hardly understood what my terchers said during my online English lesson . Freedum ! On hot days , I need a handkerchief becase I 'm very sensitive to heat . Tonight , I drank a little alcohole with my co - worker near our office . Today , we changed the aword . According to my Singaporean frirends , in Singapore , a flight attendant is a not high standard job at all . For Singaporeans , flight attendatns are just servants or something . And we promissed to help each other with our language learning . Now I can write in my dialy in English , on my PC . For instance , `` I graduated from Waseda uniersity ( it is the very famous Japanese university ) `` `` I studied hard , for theentry examinations `` `` I did not study that much when I was a student `` ( But this guy graduated from a famous Japanese university ) . We were looking forward to having a pecial dinner at your restaurant . Recentry , I was surprised by the financial results of a certain company . This weekend , I will play football , as / because I am looking forward to participate in a soccoer festival . Recentry , I 've been interested in diet , learnin English , the Internet , and shopping . Im am studying at the Tokyo Institute of Technology . ( another option ) Im tired becaurse writing in English is very difficult for me . . . There is firewoks display today . But the wheather takes a turn for the worst . Sometimes , foreign custimesrs come at KFC . Finelly , should I say anything ? Bacause I often think `` I want to some sweet coffee ! `` complain : I complained to my teacher about the scole of the test . hate : I hate insects , particularly cockeoach . despise : I dispise people who think money is everything . worry : You do n't have to worry about your health , you 're hearlth enough . I feeld vey comfortable . I booked the tickets for the 9o ' clock ferry the prebious day , so I left our home early so I would not miss it . I asked strangers if there were another way I could get there , fruthermore I ran at both the platform and the road , finally I reached the ferry station almost too late . I could n't climb the stairway to the crown bcause it was already fully booked into next September . But I spent much time there , and I learned more of the history of America than I knew before . A lot of cerebritise have gone there . I said , `` What a beutifull view . `` but I could n't find any difference beteen religion people and non religious people . . , I was so surprised that some developing countries donated releif and condolence money . So , I 've been eating a powdery fermentation cabbage ( It 's a powdery TUKEMONO ) for 2 weeks . I 've been here for one and harf years . But unfortunately , as well as no inteviewing , there was no reply for my application . thanks for your comments on my prebious jounal . I want to compare the two great religions as there are many diferences between them . . . however , after many years becoming an apprentice , he found it difficult to lose his worldly desires and he desided to leave his master . I sometimes watch METAL GEAR SOLID 4 videos on yotube these days . which may be difficult for foreiners to understand . soccor ? Football ? The American soccor team is also very strong . Some people were hoeing and fertilizing the soil and some were wartering their plots . Last time I put a mark on the juice 's labell , and I looked at this mark and thought that they drank at least 400ml . If you wnat to know about Korea , please contact me . the laidy uses a marker to mark two dots on my ear , and then ( she ) just uses the piercing gun to poke two holes . although it looks like it 's very painflu , I just feel a little bit itchy . thanks to alicia for acompany me to the piercing shop . In1803 , Thomas Jefferson , the 3rd president , purchased the great wild west fot about $ 15 million from France because it doubled America 's land mass and would provide rich natural resouces as well as great farmland . Maybe it seems like no big deal to most of you , but since I 'm now studying in Japan , ( and the Japanese are so difficulte to understand ) , I must be careful about everything I do . At the end of each semister , the teacher asks us to write something about the lectures : advice , suggestions or even just some opinions . It may not look very strange in Enlish , but I am really not sure if it sounds like a compliment ( in Japanese ) to the Japanese teacher , who really did do a good job . Some people think that the death penalty is the best way to punish muders . Suviors must want muders to live so they can reflect on their cruel actions . I am going to go Bijing to present my research results in English before the end of November . The title of the book is `` How to Walk in the warld `` . I reccomend you to have the book ; however , do not read it all , because if you know everything about the trip , the trip becomes less interesting . Anyway , Washington will be rainly or snowy . . . . . Today , I 'm going to watch an america movie to help me learn ( study ) English . The genre that I want to watch is either ' melo ' or ' comedy ' . and , I did drank vanilla latte at Jave city Coffee I iove coffee ~ very very much I 've just found this lang - 8 place today and resistered right now . Actually , I was warryed about this thing . so when I knew that it was not my mistake , I was relieved , at the same time , I am now aware to be very carefly not to do that again . To finde the best friend is very difficult . A lot of people don ` t have friends , amd me too / and neither do I . Chrildren like to play pranks on people on this day . In other words , It had become a piece of garbedge . There are many things affecting the world like air pollution , climate change , enviroment pollution , the destruction of the ozone layer , and the clearing of the forests . . . . . And every year we suffer many natural disasters like earthquakes , hurricanes , floods , vocanic eruptions , and tsunamis . And they unfortunately kill millions of people . Mastering Natual Expression Recently I met with a friend who is living and working in Vancouber . Why did I have an interst in America ? And also , I felt like I came to a diffent country like a resort : ) haha By the way , it 's difficult for me to figure out the differnce when I use the same verb but with different prepsition . Because he appears to have been on bad terms with the exectives like the front staff , ownner and so on for the last few years . I work with free medical insurance . If a person 's income is low , they can qualificate for free insurance . It includes coverage for medical prescrptions , dental , vision and emergency care . I realized that even if people live in different countries , they learnthe same inportant things . It is liquid and it conteins nessesary nutrition . I am sad that I do n't have a lot of sophiscated ( sp ) writing skills . Tommorrow , I 'm going to practice drums and English ! Stady ! ! I 'll stady English a little by little . . . I pre - orderd a concert tiket for a front row seat . I 'll go to the mountain regulariy every moring ! I 'm a Brazilian , I 've studing English for 3 years and I just noticed that my English is not as good as I thought . Whether or not we have a lover in the future , we 'll still support and encourge each other . And , bilingal people usually say that you should reject Japanese when you 're learning English . So , if you meet an incomprehensible word , you should search in an English - English dictionaly . But , I ca n't write or speak English without using a Japanese - English dictionaly . Learning a foregin language is hard . It has a very confortable room , gim area , and spa . In villages , farmers are very poor . They need clear water and lvestocks . But if some fctories just emit dirty water , its not good for people 's health . My coutry needs to care more of its people 's welfare , and not focus only on good things . Of course , if you tweet in English , follow me , and I will be more than willing to refollow you too . : ) rumur has it that the first year of college is the most comfortable one , but somehow , I think I was cheated . I have strange havit of going to Odawara castle every day . I take the first or second Tokaido train from Hratsuka . Recentry another person took the place of our president , so his prediction was n't realaized . It 's located in Kyusyu . I shoud study harder . The lecturer gave those attending the task of discussing the governemt 's new policy that English classes should be taken by native English - language speakers only . He arranged us into small groups , so that I ended up talking to two peole who are English - language teachers . I heard that in Finland there are no textbooks , so I was so curious to learn how the Finns could be so sucessfull without textbooks . The students in my class are clearly bored and I too find the learning experience unenjoyable . Especally when the stories in the textbook are so dull . Would n't it be better , in such a case , to have no textbooks at all ? They 're famer . curently they prepering for planting rice . The price in the reataurant is fivefold more expensive than general Taiwanese diners . Yesterday , I felt sicky because I got drunk . Suddenly , I realized that I had been a college student at taht moment , and I would start a new stage in my life . I went to the libraly after the test . I 'll go to Okinawa this comming Sunday with my school friends . But , because I 'm shy it was so difficult to make firends there . . . I maneged to talk with some people . my listning and speaking skills are not good . . we have learnd only grammer or reading . . . I 've been writing very simple sentences , but it tooks a long time for me to make them 'cause I 'm not used to doing it . The tomato jolted in the basket , it makes made tamato juice . Sometimes costomers scold me . I have a friend who lives in Hawai . After that , he went to Hawai . He has lived in Hawai for 9 years . The question is whether we should elimilate the one child policy . I always regard her as my anti , although she is Vietnams . Indeed , why do I learn the languages , if I have no one to comunicate with it ? I 'm fond of music , aspesualy , of Folk - music . I 'm jpanese but I feel that I must learn the Japanese language even more . He has to stay at home and I ca n't be near to him because it 's only been 20 days since my operation : < I feel guity and I really miss him : < Whre is the sunshine going ? Of cousre , I am really happy that we realized that we loved each other though . Yesterday , we had a tranlating class and it was exciting for us . In the class , we learnd how to translate texts from English into Vietnamses and vice versa . So far , when I read something in English , I can understand them if they are on the fields that we have been tauch . So if I am not good at my own language , it will be even more difficult for me to be good at other lanuages . long time Boading is very tough for me , but I had to take a bus after arriving in Tokyo to go to my hometown , Sendai . We are planning to meet sometime , as we are living in defferent places . As you know , we have a new president , goverment , and a new coalition . Since 7 people are using my stuff , the roll of paper towels is diminishing fastly . so I was jiterry when we could n't park there . Besides I 've been expecting a pacage and letter from another place in Japan which has been delayed TRY - WORKS conducted questionnaires on the web and the street to ask girls about which charactor was the cutest . They were sold at game arcades as a prize , and Kapibara - san became the most popular charactor of all the prototypes . He became a big hit among girs , and he has kept his popularity ever since . I am currently studying at Gifu National Colege of Technology . My favorite sport is snow bord . She ` s sooo cute , especially when she makes Homer chew on her fasfire by force . A patient came into my clinic 3 minuits before consultation hours ended . But nobody coment on my diary . They 're very nice but later , my regs ached . This holiday has many days togather . I enjoy staying at home with my family . He loves diseny , so I wanted to send a diseny one . However I could n't find one . It was my first time going to a job interview in Enlgish . I 'm wondering if the scentences below have any differences . I studied English at school , but I never did leaen it . I finished my bachelor 's at the beginnig of the year . I almost forgot all the words and grammers . Just because they are so yumy , they become others ' prey including ours . Sudenly I felt sad about quitting this job . The auther of this book is genious or god indeed . Since I was brought up in a poor family , living withought worring about money has been very important for me . We gossiped about our borring routines and talked about some interesting things , like the Casino . I 've wanted to have as many friends as possble worldwide , because I beileve being friends with them broadens my sense of view by sharing our opinion about things ! Because of this , when we went out last weekend , I kind of got lost in Harajyuku and beleive it or not , he led me to the right direction . When I came back home and opened it , I just went insain . . I deside to make a plan in order not to waste the time left . So I would like to keep writig and speaking English . My grandmother bigin to has started going senile . I have finisshed ( watching ) Gossip Girl season 1 on DVD . Since yestar , I began to study English by myself ! First , I read and recite words . At first I dind n't know the cause of this riot , as Japanese TV station dind n't report the details . Today , I saw my psychiatrist because of my deppression disease . So unfortunately , my deppression disease is getting worse , . frist diary I 'm so happy , even though it was expencive . But I thought the tiger one was cuter than the lion one , so I choiced the tiger . My adress is on my profil . Thay do n't like me because I was put in charge of an important project and I 'm much younger than them . She was my friend when I was in elementaly school . I saw `` The Blind Side `` yeaterday . I 've been engerly expecting this parcel from my parents . These days the temperature is allways 25 to 35 degrees . I 'm learning conversational English through the enternet . Althought it is a site that focusses on children ( the books are divided in three categories : from three to six year old children , from six to ten , and from ten to thirdteen years old ) , there are many different types of books and in many different sizes , so I think it is a good way ( for us ) to increase our vocabulary in a second language . [ too long ] Alice runs after the rabit and disappears after it , into a hole in her backyard . Unlike forigner , people like going to the beach , having picnic or outdoor actititice . All in all , I think that both inventions are good but the Internet has more adventages . If I eat an ice crean every time I feel it 's hot , I might gain some weight : ' ) is rly bad especially writing T _ T I 'm trying to talk English and listenning to English every day . The tytle was `` Science Allergy `` We Asians performed a play ( or skit ) . To tell you the truth , I did n't really performe . At lunch time , I was talking with a maneger . Anyway , I recomend that you should watch this movie ! First dialy I am a biginner . The people who will attende Zufar 's class are better than I am , and I think I think one peron only has one life , we should cherish our life , and live happily . I saw a movie which is called Harry poter . Today was the last day of my course and I received a certifate . They are famous in Osaka , where I was originaly from . I have always been a gir who really likes to smile . ( There are two types of Zorb . In one , you can grab the hundles inside the compartment or you 're fixed with your arms and feet and there 's no water . In the other , the `` hydro zorb `` , there are three or four buckets of water in the compartment . But , sometimes I am dying to eat a lot of junk food like pizza , chips , and bergers . Yesterday I piced some . As long as I am writing this , I suppse that I have to withstand biases ( or comments ) from other people . Today , I 'm goig to write about yesterday . I always eat food carefully and with grtitude . I have heard that a reusable grocery bag from TRADER JOE ' S is very populat in Japan . I feel this way stronly , especially when I feel insecure , like when I walk alone at night . As soon as I realized that I was beenig chased , he grabbed my neck and choked it untill I passed out . But in 30 mins ' time / But 30 minutes later , I was almost dying in the river . She 's a golden - retriver that is very pretty , cute , and clever . Morever , I did n't take charge of the register today . I 'm styding English and Spanish . Now I 'm considering apllying for the Fashion Designing Course at the Central Saint Martins in London . By the way , I have been inerested in Spanish since before I entered my high school . It 's nice , because it was made so that we can larn it in 30 days ! But I do n't belieave it , because I can not speak English very well even though I have studied it for long time X ( Despite a japanese society , I feel happy whenever I have dinner with my family . We should n't lable it right or wrong , but explore it in depth . There was a teribble typhoon . Hello , everyone . I 'm a new member of the lang - 8 community , I find that this is a very interesring site . I 'm not restricted to only learning English , but I can learn Korean or Japanse as well . He is a very poerfuol man . When I was littile , I watched the Gundam series as well , but even women and young boys died easilyin each episode . I finally stopped watching halfway because of depression lol In order to save money I decided to ask my parents for some books I 've wanted to read for a long time . ( I 'm also a little chubby ; that 's another reason why I would rather readind a book than eat chocolate . . . ) : D Yesterday I bought them . In many cases , which is even more disappointedly , typhoons cause landslides on weekends , just screwing up our nice Sunday . I felt that they deliberatley come on weekends . In reacent days I feel good to drink hot green tea , some intersting things . Learnning English alone makes me feel that English is so hard . I answerd my boss , I 'm your `` right elbow `` or rather `` right arm `` . Last time , I mentioned my undergraduated days . Actually , the women 's college from which I guraduated is in Kyoto . It is a pretty historical and misterious place . I have heard that Kyoto 's central city is being protected by a magic squere . In the Heian era , a noble women who was very jerous I alived in Canada in april . Other sources say that children who have imaginary friends may have advantages in terms of language ability and other inteligent functions . I suppose that this is a defficult problem . In winter holidy two big events are celebrated , Christmas and happy new year . I ca n't drink alchol . My friend and I decided to launch a project called ' getting a boyfiend . ' When we 're in front of the restraunt , we 'll pick one guy a week . `` The workers in Google doing the smallest developments have a doctrate . `` If I had n't found out about this method , I wouldn n't have I hope Lang - 8 helps me improve my wrinting . But in septenber , I will go travelling to `` The Hakone `` with my girl friend Fujiko . The friends gave her earrings and FORCED to have her ears pierced . ( It looked painful , so I coul n't see her get it . ) and I made her choose as to what she would recieve . In my hard times of adaptation to a strange place , they will be a kind of energe for me ! I think it might have been anemia or an epilepsy attack - I think it sounds better now : D My mother just listend to my opinion and encouraged me . Tonight , I attended the public speeking club I joined last winter . There are many kinds of people in the club / Many kinds of people enrollmenting in the club . There are bussiness people , college students , foreign residents , retired people , house wives , etc , , , , , , , ( but I will not be a brackberry or Mac pc user . There 's no water , no electricity , no gus , or no food . Okey ! I can cherich a teachers relationship with students no matter what . At New Year 's Eve , many Japanese preparate for a good New Year . By day we preparate New Year 's dish , general cleaning of the house and write New Year 's postcards . Today , I went to a fruit market and ate some drian today . The first picture is the ancient tomb of Umako Sogano , the most powerful ministor in Japan at that time . So I went to the supermarket in this mornig . But I 'm a little nervours becouse of my poor communication skills of English . My job is a project manager for developping web sites . This is my first trip since I got my job , and every month I save a lot of moeny in the bank . I want to say `` thank you `` to my lang - 8 frends , thanks for your help ! ! ! At midday / In the mid - afternoon of August 4th , one of my new collegues and I came to the company to report together . On Monday August 8 , at about 10 : 10 am , we got on the company bus that was waitting for us near our apartment and headed to work . How becautiful the sky was ! It is a popular sport which has spread to evey corner in China so much so that we now call it the national ball game ! Thank you very much for improving my sentences . & nbsp ; I really apriciate everyone 's help . When most Japanese people speak to someone who is older or whom they are meeting first , they usally use honorifics . My First Dialy However our company ( probably all companies in Japan ) is very nervous about the flu and gave emploees an instruction note if we have symptoms of the flu . Do n't go directly to a hospital or crinic . `` Doc , I know I 'm OK , but I have to see a doctor due to company reguration . I saw a foreigner who imitated DRAGONBALLs charaster Gokuu . I like Roppongi , but I do n't have many oppotunity to go there . It was slightlt rude of him , was n't it ? I 'd like to watch some TV progeam but . . . You can find a lot of churches , temples , mosqhes and indian temples . Malacca is a historical place where it was colonized by the Portugis . It is famous for its cable car travelin the fastest speed in the world and is the longest in asia . And the theme park is facinating with its rller coaster . And when I ariived at the library , I noticed that on Sundays this library does n't open ! ! To make him intersted in the Korean language ? After that I went to Chofu where my frirend lives . Maybe it 's because of the differences between our caluture . . . . ? ? The latter part of gorlden week , it rained . By the way , are there long vacations like gorlden week in other countries ? Today I went cycling to keep helth . I bought it at Takasimaya . But I do n't usually do famrmwork , so I was exhausted . I was finaly able to come to the site a few minute ago . So , my friends and I would go dressed up with a cosplay ( costume play ) to the events celebrated in Madrid for comics , manga / anime or japanesse culture . It 's raining heavily in Nigata and Fukushima prefacture . Those prefacture are raining so heavily that an evacuation order was put out by the government . And about four handred thousand of Nigata 's peopel have been evacuated to a safer area . Shopko is one of the biggest shopping centers in Wisconcin where I am living right now to study English . After I walked 30 minutes , I had the worst thursty I have ever had . I decided to buy juice in the shopko insted of from the old vending machine . Au pair is famouse in Europe , but does n't seem to be in America . If anybady does n't mind talking with me , could you help and advise me ? As I have shown , art festivals are stlongly dependent on local people and contribute to stimulating aregional economies . From now on , try to look at the buildings , rooms and spaces around you carefully . You might notice there are actually hidden designs all aroud you . But I 'll uproad entries at my own pace from now on because I 'm satisfied with this . I got bored whith that . Althoug I konw my new school , I have many worries , but I think I will study hard . BUT my parents do n't always argee with me . The Asahi Beer Company should appriciate the fortunate coincidence , should n't they ? I try to talk with forgine people often . I am happy if we do n't have snow in winter because I do n't have to shovel snow . ( It is taugh work ) But it means the earth is getting warmer and warmer . . . . When we entered an Okonomiyaki restaurant , we were showen to the seat in fromt of the big window . ( shouwed to the ? ? ) We could see the Doutonbori river from there . I had not awared of this profession , but as I looked back on my life , that maybe influenced me . When I was in Ireland , I was in TV add for sumiroff Ice in 2002 . The first reason is : I ca n't come upe with the next word to say quickly . And my mum rase me . Mom passed away in 2001 and her room is now quet and empty . My class teacher is a forigner . I want a relationship with american peple . We are woking hard to fix this problem . Recentry , many people have been visiting this area . First , I saw it in English with no subttle . Reacently , I read ' Norwegian Wood ' by Haruki Murakami . My home and car is covered with snow and the landscape is beutiful . Accully we did not yet know what we would buy . But I know she like to cook and read books . Everyday , I have to do a lot of experiments and resarches , so I have no time to do what I want . Dier friends ! We ate lots of chikin ^ - ^ It 's rainning hard outside . I like the landscape after the rainned days . I like it , it draws a smile on my face and it aften makes me think of many thinkings . Shound I put off some tasks to complete the following day ? All presemt politicians should watch it . Seita is hero of this story . His father was an officer of the Japanese navy ; therefore , his father was not in his house but on the battlefield . ( I guess his father had already died in the war but his family did n't know yet . ) He had a mather and little sister , whose name is Setsuko . When his family tried to escape from bombing , his mather got invloved in the explosions . Seita 's house was completely destroyed as well by the bobming . Many Japanese people who were in right screen completely forgot these historycal facts , and they enjoyed their luxury and busy lives in a big city . I 'm studing English , and Recently I happened to find that itunes has many internet radio staion channnel in its menu . The itunes list of internet radio is good , and almost all of staions are now in service , so I can hear lots of different music jenre . ( Fiton is on my bed . ) I usally sit on the floor and use the PC but it 's uncomfortable , so I decided to buy them . I should have separeted them into two parts , and cooked them twice . . . I mix it into tomato sauce or curry sause as a hidden ingredient for extra flavor . Can you tell me what this sentense means ? She decided to take the seashells which she foud home . But they gave me portaits with a message . Although the price of a plane ticket is not as expencive as tickets to other countries ( minimum 45000yen = $ 450 for Narita < - > Moscow ) , the process of getting a visa is complex . There are a lot of kinds , such as : yolk mooncake , ham mooncake , moon cake with meat ect . The Miod - Autumn Festival is a time for family . I do n't think all Singaporian are lazy . There are many kinds of food like seafood , meal and vegitavles . Dealing with hectice schedule Today , I went to a book shop in sinjyuku . Octpus is a sacred living thing , is n't it ? Hi all , I 'm Midory from Hokkaido , the northeasternmost iland of Japan . It is a good time to visit overseas because of the high - valued yen , but the oil sercharges are still expensive ! The hero , who names Luffy , fights an enemy every everyweek . : ) On the way home , I got cought in the rain . . I often see it . so I asked my mother where the cat gone ? My monther answered me that the small cat was dead . I bought jasmin tealeaf at department store in Kobe a month ago . I ca n't leave it so its goona na cause me to gain weight . . . He and his friends made capcakes at the night because of white day . I love a Techono music . I heard that nowadays sake is more popular in forign countries than in Japan . A Japanese company annouce that they will use English as the official lunguage in their offices . But she said in a shopping center ( COSTOCO ) in the neighborhood , two people were killed because of the collapse of it 's parking . I 'm planning to play baseball but it 's rainny . Maybe you have to write a long and boring essay , maybe you have to find a job , maybe you are suffering from a disease , maybet you just lost all your money . . . On Girls ' Day , Japanese set up beutiful Japanese dolls . But the dalls which , we call Hina dolls , are very expensive I want to write [ my introduction ] agaein . One day I told a story about the `` Gorgon `` . She feld very afraid . However , she painted a picture on a piece of paper and put the paper in her pocket . I 'm going to unversity to attend classes . Yeah ! I passed the quility test today . The diference between them is the long tour permits you to go inside . And we sould do something we can do easily , for example , to send some food to the areas with a food shortage . In places which do n't grow crops , it may be difficult to increase crops even if htey can use technology from developed countries . But also I think that having a relationship while being young have bad effection . I can speak it a little , and gradually getting worse these days because there are fewer oppotunity to talk with English speaking people . Whatever hppens , I will never quit studying English . ( At this time , she was eating a rice ball with seeweed . ) Then I went to the libruary to study my major , and I always swet in this season . Then , our topic slided to onomatopoeia ( This means imitative sounds like bark etc ) . That Eglish school sometimes holds some events , like a picnic . tempt : Advartizement exist in order to tempt customers to buy their products . conceal : He did n't try to conceak his scandal , but instead , he appligized to everyone . decline : He dicided to decline the offer from the IT company . I start working in my office in the mornig , but I have to work till late at night . On september I am thinking about going to Victoira , BC . I am an easy going girl , and I ` d like to having many freinds ! ! I am very confused about using grammers and the sentences I wrote . I 'm going read a drft ; please check my gammar and pronunciation . Hello , My name is seohyun and I 'm scond grade . scond , I have to study about hair - style . I also made hairstlye to my friends or dolls . I want to buy something that 's not so expensive but is very usefull . Maybe this town is also a very famous place to visit among forignen tourists . Nowadays , Akihabara is becoming diverse , and there are a lot of shops featring anime goods . Japanese anime is expanding in overseas markets , and many foringers know ( about ) Japanese anime . I will write ( about ) it sometiem soon . After that , we played sekand game . Since 11th March , they had taken shelter from aftershocks and activeradion . I want to get into university , but also I want to go abroad to America , so I will have to go to univercity 5 years . Today , I am / I 'm going to an English club , because I realy want to study English . Yesterday I bought new shues for jogging . Three years ago I was a menber of the fitness gim , but I resigned because of my busy job . However too many people are here just looking for someone who speaks Japaness . I did n't play video videogames for many years because you know , studying , working and reading . I recommed to you FF X . I recomend : www . My grand - father made a liveing by raising chikens and a calf . It tasted different to Janpanese beers . Today is the general election which looks set to bring a historic change of goverment . The Liberal Democratic Party has govered for over 50 years . Please introduse yourself . Thankyou [ space ] you for reading : ) Is this my reducdant reaction ? I am taking an oral examination in five theological subjects this week . The subjects are the old testamen , the new testament , church history , systematical theology and practical theology . Most Japanese people are not good at speaking English , because we only study English grammer when we are students in Japan . Yesterday Jei taught me one rule of grammer in English . As the motion of their gestuings are too large and radical , it 's easy to hit me , especially when I stand by them too closely . After I googling this product on my mobile and finding out the user response is really bad , I said ' Really ? ' as a respose to all her sales talk . snow word is n't used that much . I heard the salesperson talked to her co - workers , ' Wow , nowdays these cunsumers are really smart . . My winter holiday has already begun , in my opioion . I want to read some English magzines or newspapers for inproving my English during this holiday , but I do n't know what I should read . I hope to get some advice from here . I 'm expecting to have a good inprove when the holiday comes near to end . Japanese are only spoken in Japan , so when we go to other coutries , we will feel loneliness . I want to ask English speakers `` Do you feel a sense of closeness to people from English speaking countires ? `` At least , it does n't seem as hard to get good grades in university as it is to get them in ( seinior ) high school , because I only need to take some subjects I 'm interested in . Recently in Japan , there has been a deemand to save electricity . beacause in China people always learn languages from books , so there is no chance to speak them . I also like Janpanese , because I like to watch Japanese cartoons . I watched a baseball game in the Nagoyadoom yesterday . A lot of people have asked me what restaurants I would reccomended in Kamakura . ( Indirect question . ) What I had was various sashimi ( raw seafood ) : tuna , salmon , horse macker , scarop and salmon roe . I heard that people who have experienced study abroad need a score of more than 800 to prove their ability baced on their experience . The business carrer exam is coming soon The business carrer exam for logistics is coming soon , but I still have n't prepared enough for it . While hearing the quiet , slow tempo music , and calm voice of the instructor , I stretched my boby . A neighbor 's help can be the fastest . The shop was proud of various high quality , imported products There were many customers who came from othe countries , looking for ingredients to make meals from their homeland ( I would often be asked by Australians - `` Where 's the VEGIMITE ? `` ) . It was really traditional , so just few people ( familly or relatives of the bride and groom ) can go to inside the Jinja during the ceremony . Please , correcion and comment my blog . A lot ppl who write their dairies in English ca n't get that many comments you know . The second is that maybe Japanese ppl are kind . : P In my school days , boys competed against boys , and girls against girls , but in my daughter 's school , they did n't devide the boys and girls . Recentlly , I think about that everyday . However , I could n't write them because of myh English . Becuase my train leaves at 7 : 30 AM . An agent named Smith found these pictures of President Clinton and Ms . Lewingsky . My final goal is not to be a permanent resident in Austrailia , but I was planning to obtain a permanent visa to accomplish my goal . Then I found a recipe in internet brog and started making a pizza . Aritayaki is pottery from the Kyusyu region . I coould not answer him clearly . . . I went to Seoul for a lomg time . So he called every anymals with `` mung - mung . `` It was especially a great purfomance from the trainner riding the dolphin . After th show , we ate lunch on a mat in the forest and it was more delicious than eating in at home . It is a cloudy today but the temperture is not too warm and the weather is confortable and I 'm looking forward to rhe start of the school year . Althogh It is hard , I 'd like to study English . and I beleive it will some day be . This only reason I 'm studying English is to be able to clearly express my thoughts and achive my goal . As I went shopping , suddnly my shoes broke . When I 'm writting my diary , I 'm not certain on the tense of the verb . When I speak with a foreinger , they often have trouble due to hesitation ( Is it possible to use ' from ' Instead of due to ? ) I think I shoud be able to learn from you Though Asakusa was crowded with many sightseers , according to my frinend , there were fewer foreign sightseers compared to before the earthquake had occurred . V - day is the only day when girls declear their love to boys . Before the test I always feel pressre . My husband is Indian and he commenced running a small guest house in Rishikesh from this Aplil . It is fomous place for yaga , maditation , the Ganges River , and the ashram where the Beatles visited once . Yesterday , my fmily and I went to ganghaw - Do . It was a beautyful place . It was surpriese , too . That 's what the parants of Harry died from ! Tommorow I have an exam in mathematical statistics . It was slipperey and dangerous . He tought me that dreams can definitely come true if I do n't give up . In Japan , most people start working as regular employees immediately after ther bachelor degree . Waking up early makes me feel more tired and frusterated . Hellow , I am feeling very good . I like English , but I am not very good at English as you can see . Help me whrite in english ! `` I 'm fine ! `` `` I 'm good ! `` and , `` I 'm OK ! `` What 's the diffrences between these three sentences ? It is aprox . 10 feet tall . I took my motobike and drove to the dog market , where they sell pets . I agreed and sat down , waitting for him . Hello , Lnag - 8 users First I write some words in English , drink cup of coffe , and read my e - mails . What is the best metod for learning new words ? It 's too difficult for me not only because of the grammer but also because of the words . So we counld n't go anywhere else . I do n't have confidence in whther native speakers can understand my English . I 'll attend some meetings and an exhibition of the heating , air conditons and ventilation industy in Las vegas . ' Poets are not so scrupuluos as you are . But I like going back to sckool , because I can be together with my girlfriend and play with my friends . I 'm studying English right now and hope to aquire skills to speak fluently with native English speakers . Philosophical issues , Religional issues , any kind of intellectual issues are welcomed and I hope to have an intellectual connection with someone . Today , I went to the plice station to get a new driver 's license . If they find one of participants to be good , they exahnge phone numbers and they will be friends or boyfriend / girlfriend . ( There will be ) my friend , a frend of my friend and Iso men 's team had three people as well as women 's team . We enojoyed the party and had a lot of conversation . We play roles of yakuza , Japanese gangsters , of Kyusyu district , southwest Japan . After some time we separated , promissing to meet again . But some say that the goverment and electric power company are trying to I am learning English . I 'm espically instresed in learning spoken English . I am a postgraduate majorde in computer siences , and I am instersted in network security and DB . I welcome more friend exchanges . I 'd appriciate it if you read and fix these sentences . I think that these toys may be good fot people who are not allowed to have real pet hamsters , or for those who love hamsters but are too lazy to take care of them . In Japanese , this is called ' toilet trainning ' I prepared all of the tickets but not completly . I was comfused because I heard it just before bording the airplain and I was arriving in Bergen at 11pm the hotel would be closed . I looked around in the airplain . We talked about why I was staying at their house and they recomend some good places to see in Bergen . Could you change this paradraph into something more ' speech ' like ? or if you do n't have enough time , just correctong is of course very welcome . By the way , I think I am quite a strang persoon because I feel excited when I hear the wind screaming , or just maybe because I just drank a cup of coffee , which always makes me excited . You are ( were ) my friend and I always beliving you . Why did you have to lie to me ? I comuute by train every day . In the evenig , I catch the 8 to 10pm train . I ofhen read books on the train . My friend recomend Korian movies to me . Some georgrapers say `` There are no places where we have not explored on the earth . `` I say this because only little girls are horeines in his works except for in this work . ) Nobody belibed in the testimony of his father , except for his son Pazu . The girl who slowly came down from the sky , whose name is `` Sheta `` , had the magic stone ; she was pursued by the army and she had a secret of the Castle . Pazu decided to search for the Castle of the Sky with Sheta . I 'm goint to take the entrance examination for a Japanese university in case I fail at my first choice , that is , some American university . In Tennoji , we were spoken to by drunkun men . Could you give me some advice to learn tecnical writing ? Also I like green tea candy and adzuki bean flavored candy . I was waiting for the powder snow because I really like go snowbording , but it seems there is little chance for it this year ! Does speaking only improve your / ones speanking skill ? Please recommand : ) Unfortunatly , I might lose the draw as I anticipated . . . I was born in Ooita preficture which belongs to Kyusyu area in Japan . Also of course for talking with foreginer on the phone in English . Some of my favourite locations include Lubok Semilang , Kisap , Telaga Tujuh , and Datai . The first dream you have on the first of January is improtant here in Japan . Unfortunatly , I had a bad dream . You 've screwed up everything , you know ! `` I coud n't understand what he was shoutig and I was just petrified . Last English lesson , the instolactor told me about this site . My head itchies ! This is my nineth entry . I 'm wrigting a manual for the installation , maintenance or conversion of these machines . Yesterday I set up a Chrismas tree . when my dauthers were very yong , I felt the tree was too big , Becouse my daughters can do it themselves . But I desited to keep setting up our Christmas tree every year if they go out in the future . But when I went to university , I knew that English would be very impotant for my future career . I can tell my opinion in simpl words , write ( with mistakes , of couse ) and undestend other people when they do n't speake too fast . First , we are reading a book about stock for bigginers . PS : rewirite or reorganizing my sentences would be nice if need be , thanks . I guess I 'm too yong , but I want to learn English very much ! ! ! Laterly I feel very , very bored ang upset when I have to study . I dont know what is wrong , but it 's just boring ! The difference between `` jorunal `` and `` diary `` The car exhaust messed up my landries . . . And I love him playing the violine ^ ^ Tomo - chan `` wears `` the laundry basket like a backback , and says , `` I 'm a turtle . `` I always go there by car with my hasband . Buying groceries for 7days , the laggage is very heavy . On the way home , It 's difficult to contorol the bike because of the heavy laggege . In Japan , there are manu delicious foods , such as sushi or tempura , but I do n't know any American foods . My daughter always wears a one piese dress . In my opinion , you are already so busy studing and working , you wo n't have time for a dog . You shuld give this matter ( some ) ( serious ) consideration . Recently , electronics tecnology has improved so much that it is common for people to have a mobile computer such as a notebook PC or a cell phone . Afterwards , I listend to it many times while studying . That song supprted and inspired me while I was strivng to pass the exam . I 'm determind not to sell the CD I bought because all the songs remind me of my `` golden `` time . Only unmarried women can wear a Furisode on celemonial occasions . I think they have strong motivation for working and learning but they have no self confidence , so they can not try to deal with a new enviroment . They need to find enough power that they could continue to the future even after they faild once . Now my wife is preparetion herself by make up and winding her hair . I 'm comefrom China . Have you used an air conditionar yet ? Anything I read teaches me somthing : new and different ideas , to understand and know how others think , learning about history , scientific discovery , new vocabulary , new sentences . . . I have already taken the circuit anylisis exam Even my professor , who is a `` sister `` from America told us about this situation in class beofre . Taiwanese are xenomanias . Are Taiwanese really xenomanias ? That sounds not too hard , I would just translate my oringinal report from Chinese to English . . Please give me some possitive words to encourage me ~ I will be full of energy ! ! ! I need help to correct my scentence . Een hertwarmende video ( in het Japans ) Of cource it is very important and I never considered not attending the party itself . I was watching TV , so I slept in my living room whithout covering my body with my bedding . That is why I cought a cold . There is nothing but rice fields in my hometown , but I feel lonly when I think about He knew it was ridicious to do something like that without realizing that everyone could see , and was n't so proud anymore . So , I go on bussiness trips often . shut down all neclear power plants ? As far as the Fukushima neclear power plant is concerned , it had been operating for My first daiary I wii go to the park near my house to play catch with my boyfrend . Next term , I will be very busy , I have to prepare for the TEM8 and post graduste examination . But I am confused because I have no idear how and what shoud I do or what to do . . This is my first time writing a dialy entry here . Today , I left a comment on someone else 's dialy for the first time . The door was in fron of the class so I had to pass the professor to exit . but I 'm 19 ysars old , so you may think that to watch anime is funny . So I hav n't read the book . anybody knows some ways to treatmaent this bad illness ? . . Has anybody seen fhe film Brazil ? When I was a junior high student , I used to write my dialy in Japanese but I quit . Even more funny was when I was walking in front of her house and I passed by the windown where he was placed . I usually spend time watching DVDs of American drama to studay English . From now on , I wll put today 's date as the title Recently , I have been seekig a new job in which English is required . I need to get a high score on the TOEIC test nenx month on Sept . 11th . I also want to improve my spoken and Writeen English . In Kyoto , there are many hisytorical monuments , shirines , and temples . After the object was gone , we started to see a series of images proyected rapidly in the sky . A few days later , a beautiful girl appeared at the grandfathere 's house . They could hear sounds of weabing . We had our senior 's guraduation celemony on March 16th and it was a very important event for this school . In Taketomi - island , we stayed in a Japanese - style hotel and enjoyed awimming in the hotel pool and the beautiful sea . Forthly , I ca n't use the punctuation in rigth ways , so when you read my diary entry you would feel confusion . Yesterday I ate sushi for the first time in my life ( I know that is a little shameful , becouse I 'm fan of Japan culture and . . . Although I wanted to talk about the Lions , I degressed from the subject . I am lazy to control myself , as a result of that I 'm always desgusted with myself ! gee ! Today , I 'll tell you about a famous Japanese comic called `` ONE OIECE `` . I got a holidy for five days . This Jindaiji park did n't seem like a place that was 30 minites from Shinjuku because the area was very calm and has old traditiona atomosphere . I 'm excited with the class even though I 'm still not in the unhabit of using English . Long fligt The novels were writte Japanese . I 'm loven ' it ! And , I 'm loven ' it . I seriosly need staple food ! I ate lanch and then went to English school . I 'm studying at the University of Arts of muy contry , I 'm studying Liric singing . I am planning / ( I plan ) to visit Singapore in the midle of May . `` Staying healthy is the most improtant thing in our life . `` I totally agree . . . . . . . . . Actually I really appriciate him because I knew he is always taking care of me and trying to encourage me , and doing his best for me . ( I accept recomendations for places or courses . : D ) I asked my teather about this . I think this is a strange thing in japanese . The Simsons is an animated film . I am at Chingi air port . The following is just something I heard from a Krean radio program . Please do n't hasitate to correct my sentences , and I would very much appreciate if you would write another natural expression in addition to my sentence They are going / willing to pay up to $ 2500 to patients ( paitients ) if the paicients ( patients ) are qualified / qualify . Tanabota probability is suppoused to be very high tonight , because on the night of July 7 we celebrate Tanabata Star Festival . The students who ca n't come to scholl will be behind . So many things have happend since I last wrote in my diary on December 14th in 2010 . In this field , you have to be very careful of every detials . When I was a high school student , I studied English to preper for college entrance exams , I certainly feel like dietting is not easy . hahaha ^ ^ ; Our relatives all came together to talk to each other and to cook a lot of dilicouse food that we all ate together . The massage fee is so expesive , but I will go there again . So you add me , friend , and help me improve my Enlish . Yesterday I was listining to Gilles Peterson 's show on BBC Radio1 thorough internet . I do n't like to rest from work but I coud n't move this morning . Some pople feel that it is necessary to know what is going on in the public through the infomation provided by advertising . Thanks to advertisements , we can gain the lastest infomation effectively . I was at my mother 's home from Friday 11th to 13th of June to particepated in the reunion of my Junior high school class which have held on the 12th . So I had to leave my mother 's home at five o ' clock and take the first train at twenty to six on the Sunday morning because my home town is Shimoda , three and a half houre from the center of Tokyo . Because I slept in the room next to the kichen . Then she called me from the kichen `` Are you all right ? Thank you for reading this poor leavel English composition . Although we are not togather anymore , he still rember me . I feel very happy . Becaouse I 'm cold - natured . It looks boring , ha , however I understand why it really attarct men . Pho tasted verry well . there was n't any probelm throughout the group reague since Japan was keep on winning to next round step by step , but it is tornament now . While a docter was treating my teeth , I cried all the time . Do you have your profile , where you can write short menssages ( no more than 140 characters ) , and those menssages will be displayed for all your `` followers `` ( people who follow you , have acess to your updates ) . I saw that fhe sky was quite blue , and seemed very far away . There were many people who belived in it . In order to use the internet via I pod touch , wireless LAN is nesscessary , unlike the iPhone . Chakras are ubicated in each auric body and are responsible for retaining and metabolizing the energy that the body needs to work optimally . In fact , we do n't have ( just ) one cardiac chakra , for example , but seven : one in the etheric body , another in the emocional body , another in the mental body , another in the astral body , etc . Usually the literature on / about this topic describes chakras from the emocional body as the only ones that exist . And I think these tastes are greatly influenced by each country 's clutural backgrounds . You may feel thirsty without milk or aything else when you eat sweet potato . My mother keeps saing that I should solve more math problems , and my father keeps saing I should do three things this summer vacation . Monday , Thursday , and Friday , I have a clase in the morning , and Tuesday and Wednesday , in the afternoon . I want to speak English and Spanish , and of course Japnese : ] It is sad to reaiize , but for the last 4 days , that I 've spent on this site , in my posts there was done only one correction . My favorite ramen restraunt I have a week - long vacation , but I do n't have anthing to do . First I got up late , then then while I was in class , my teacer aske me a question regarding the meaning of a word . I always think too much and hesitate when I want to speak in Engligh . But , I feel so nurvous about it ! ! xd I 'm wating for the delivery . Because it can be used for exercing . Yoga , boxing , bowling and mouscle work outs are available as well . C . Escher drew immpossible archrectur structures , they seemed like infinity but limitedness and they seemed to change pattern . I like play gitare , draw and play volleyball . Peters stupid jokes always amuze me . More often than not I feel that there is / a cultual difference between Japan and Korea while I 'm staying in Korea . Most of the jeweleries was huge , so they seemed to not fit Japanese people because we are smaller than European people . He replied to me with an intersting and long message when l sent I 'm flom Japan . Now , my father is in the hospital because he has a mental desese . but I warry that she will collapse . but today , when I rubuilt my computer ( system ) , there was no problem . Can anyone help me with my Englsih ? Im chatted with my finternational friend on Facebook . Because I just had gotten results and throughaway them away . Please teach me I ca n't superate them . What is your teqnic in learning the language you are interested in ? In my opinion , you can not learn a new language or even travel through the world ( wich is my dream ) if you do n't know how to speak English corectly . Hello my wuderful friends . What an unfogetable day ! But I have been continiously woken up by aftershocks . I konw that everything depends on God and my abilities in English , but I really want to pass it . I 'm worring about two things . Anotoher is the expensive tuition fee of business schools . now I 'm considering ( think about ) which contries I 'll go to . And this vacation is alomost 1month long , so I want improve my English level . I wanna send `` Thaks for pointing my mistakes and correcting me `` and `` good job for correcting `` , but I have no idea where to click on my page . . . They shut down the factories and laid off labors / workers . I have n't raed the book Black Boy yet and I have to write this diary . `` The fandamental Teachings of [ Quran and Hadith ] Vol . 1 & 2 Compiled & Edited by I do n't know why . Maybe it 's becouse it 's 35 degrees C and you ca n't do anything outside . Then I was hangry an hour later and ended up eating a bowl of noodles . If this continuts , I think my friends will not be able to recognize me over vacation . Most of my friends alredy already gone He plays basketball with his frients after school every day . Last year , when I walked around my neighborhood , I noticed a small signbord for a Shodou school . I will enjoy this page . aaAnd I want to help the people who study Japanese . The story is about a girl called Jessy who has a grandfather who faces dealth . Sea is the goal for each peoson . Homecomming visit I was suprised at the air ticket price . Public bath in Japanese is called Sento and I love it . In Sento , everyone is usually naked without a bathing suit . I am proud that I have such a friend , who knows english very well and can travell in England and other countries . My friend said that the ( air ) temperature was tewnty degrees this afternoon . . . Because of some very spicy ones and coreanders . However , I want to mention that my English is very poor so if you are reading my diary right now , please have patience and I 'll be very greatful , < 3 thanks a lot . I am not a romantic person so my wife alawys say to me that I should be more romantic I really appriciate it . I bought many things , for example , a vacuume cleaner , a refridgeator , a table , a bed and curtains . . . I ca n't sleep because I 'm loney . Pls be informed that this shipment will be deliveried as LCL via Hongkong . May be this is because I do not want to learn English in the beginning . But I will try my best to learn it in fruture . My glish teacher has taught us many words , but I can not remember them and use them in the wrong way . What can I do ? The food is not as delicious as I expectaion . The food does n't taste as good as I expectaion . We happed to meet a Japanese tourist group . I asked someome in the group in Japanese . My bad English was n't understood to Perucian . I want to go to Peru agian . It was a very nice memory ecxept for the Japanese torists . I was impressived ! ! Besides , as this hospital is highly specialized in cardiovascular surgeries , I am able to improve my skills and develop my carrer . So I remembered about the time I chose my job when I was a ager . I dropped by the library on my way back and I brrowed `` One Piece `` . Today , when I was about to get in my car , I found something on the glound . I quit smoking in April of this year , but because of stess I started again . I know it 's not good for my health , but somoking after feeling feeling so much stress is beyond expression . I 'm Japanease , but I live in Beijing presently . Today I learned some new words from this convasation . I think the uniforms you see in the picture are orenge and bule , In the practice mutch , I got punched in the stomach and fell down ! The instructer said that it was n't very strong , but I could n't speak . We laied on our backs , and the instructer stood on our bodies and jumped three times . We voters probably wo n't be able to konw all the results of the election till midnight ( today ) . This election also addressed the ? resultion ? with many foreign countries . The U . S . / The USA , China , North and South Koria and all the others countries around the wourld . The resultion is known by God alone . They probably broke bacause I listen to music too long > _ < ( this also works ) When I become a teacher , I would like to be the caoch of a high - school football team . Anyway , football is an extremely organaized and systematic sport . I replaced the sentences in the grammer book with my own sentences . As a wowan , wrinkles are the number one killer of beauty . My big brother participaterdin in Tokyo malathon last month , which is one of the biggest citizen race . He finised in 3hour 6minites . The saddest part is that his older sister had also committed suicided . I do n't know why , but this year has had a lot of Fridayy the 13th . As a result , we have Hence the spectacula congestion on the highway . my name , special hollyday e , photo and so on . Today is a boing day . I want to drink alchol . After that , I wathed a DVD at home . My elder sister is a doctor too , so once they start talking about thier jobs , I have no idea what they are saying . We go to the temple and pray for our family 's health and heppiness , and for world peace . Thease are very delicious . Next Tuesday there wii be a presidential election in Sri Lanka . I do n't know what the most important thing is for me ; I have many probelems that I have to solve . While I was studying , a frined on the Internet told me about an interesting video game called Age of Empires 3 ! The test was quite difficute , especially the listening section . We spent 2 hours at sturbucks . My friend geve me a Goya yesterday . If I keep on my regrefrigerator it will change to yellow color and very sweet taste . My father is paster , and he loves studying . If you buy deers rice cracker , I caution you . Deer will paster youviolently . He had no problems or consern and was very happy . We cried and said good - bye to our best friends with whom we studied and lived together for 4 years because we were all going to different parts of the & nbsp ; country and pursuited our dreams / goals . My favorite fruit is pinapples . I always wonder if it is better to buy a cut pinapples or a whole one . Just have to live for now and preparate for the future . go abrod . . some of my friends have gone to forine countries to learnd English . . . but I do n't have the time to go abraod . . and other uroup cntury ( nation ) Because they are in small gages always and walking time is once or twice a day which is only ten or twenty minutes . I know that it 's gon to be difficult to keep up with this class , but I believe that this class will be the place where I can grow up because I will be given many opportunities to say what I 'm thinking in the class . At first , I felt a little down , but I like it now because my frends said it looked nice : ) ) I took TOEFL this morning and I found my English typing speed is too slow , despit my fast Chinese typing . So I made the dicision during the test that I must find a way to get more opportunities to type English , in order to improve it ~ Maybe I should keep on blogging in English . Hrajuku has its own character and is representedby ( ? ) the lolita look and cosplay . So she wanted me to get an arrenged married . Once I was forced to see a man on a date arrenged by my mom . Actualy , she did liked him at all . It happed a long time ago but I still am reminded of it whenever I see my mom . At last , I hope erverything will improve ! They are have good servie , and changed it to / gave me a new account . It 's about a pirate called Lufy who is the hero in this comic . It 's called `` devil 's fluits `` I am Interestd in videogames ( for example : PS3 , PS2 , PSP , Xbox , Wii , NDS ) . Also anime , and technology like the iPhone and iPad . Have you planted the seeds of appriciation ? Here I uploaded some screen shots from this docmentary . becasue am a lazy girl . I heardly save any money . Please enjoy the song while you helping me corecting my diary both internal and aborad . But , , after this episod , I 'm careful eating Kimchi in other country . and it 's a bit boring , but there is a crack from where you can enter the underworld if you kill all the enemies on the area that leads to the crack / opening and to the garden and at the end , you can enter the Hero 's Hall . There , everithins is made of gold and in the last part you can find three mesmer ( ? ) bosses called The Darkness . If you kill them , they give you two green staffs , and each staff can be sold for aproximaly five thousand gold coins . If I had spoken earlier to him and my seniorities , that would not have happened . And also there are a lot of various metter ( ? ) . . . . . This is my new goal , and I 've set a date : 30 juny 2011 . I have been using the iPod application and iTunes so that I was little more familier with the Apple products . My classmate and I will play it at a pormance in July . I felt so much cooler despite knowing that the tempreture might / may not actually go down that / so much . I hane to make a presentation about Accounting . So , I hane to study Accounting ! ! I think they 'll give you good anwers and help you resolve your Japanese problems . My target : I want to talk with forign people in English ! I belive that the first experience of everything is very exciting / memorable When I chatted with Atuya , who can speak English fluently on Skype , he recommended that I buy them . When I went to Canada I was impressed with the stuuning scenery in Louis ' Lake . With some deep - green shadows around the lake , it seemed more mafnificent . But at my home we have not used it yet , becouse the weather as changed so quickly . . I thihk it is very fun to make friends . Green leaves work and create energy vigorously on the trees during summer ; they turn golden , and fall onto the ground after thier hard work . I wanted to buy another magazin but I did n't buy it . I found some nice clothes in this magazin but they are a little expensive . Since I went to Neko cafe for the first time , I was so surprised to see many cats . And also , I cought a cold from him . In Japan , almost all students ( elementary school , junior high scool , and high school ) get summer vacation from the 4th week of July to the end of August . Reserching also requires English skills . Today March 10 is the day when candidates can know whether or not they passed the entrance exam of national univercities in Japan . I have a girlfriend and love her , but I ` m so embarraced that I have not yet told her so ^ ^ . We go to the same private univercity ( Univercity of Keio in Tokyo ) and belong to the same class . But she also studied to pass the entrance exam of the Univercity of Kyoto ! I feel sorry because I wo n't be able to meet her if she passes the exam ( Kyoto is far away from Tokyo ) , while I support her and believe she will succces . The topic is staying healthy , we have to write some points on the note card and say it in front of calssmates in three minutes . here 's my whole sppech And then , I did n't exerices in the past , because I hate sweat . But now , I realize that I ca n't be like this anymore , I want become healthier , so , I changed my dail rountine . I want to learh English because my dream is to visit many countries . Maybe all countries of the world . Luckly , we had nice wather . My favorit thing . They will see the full bloom cherry blossoms for the fiest time . I was tlanslating an English e - mail for my boss the other day . But I have gotten the idea that it 's good enogh in quality and looks at this moment . I 'm lookimg forword to this weekend very much . Even now , the accident is going on , and because it is known that bolacic acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I could not watch the perfect ecripse , My iPod does n't work becuse I washed it today . But , these thougts make me feel pressed and I have done nothing recently . I had a conversation with him about complaint of our current state untill 1 : 00 a . m . I felt really happy when my former boss told me that I would move to the Okinawa office , because the Okinawa office is quite popular amang my coworkers . During our first year of living in Okinawa , we did n't have a child yet , so by my wife driving us we could go anywhere we wanted ( In those days , my drivers lisence had expired because I forgot to renew ! ) . It is true to studing languages consists of the letters . If you have done that yourselfe , share your experience , please . So I think it 's good to keep in thouch like now . Another one was personalifying risks are percieve to be riskier than enormorous risks . I 'm working part - time at an Italian restrant . I want to make frends with people all over the world , especially English and Spanish speakers . Maybe we wo n't be able chat ( often ) because of wime zones , but I really want to get to know you . I used to hate writing something because I felt it was such a hussle . have no substitle . But the next exam is coming soon , it makes me a little nervious . This is becouse it was just in full bloom . He said `` take this / some medicinene ( anthelenintic ) . . . . . `` But I had not eaten ( yet ) . Here have a quantity of foreigers . Sometimes the foreige friends help to correct my English diary . I spent some time , to think of an ansewer . But I think people who have beards do n't look good . ( on some people it looks cool , like jhony Depp ) I get a runny nose very often ( kind of allegic ? ) and I get tired easily . I have n't writen this blog for a long time . I was suprised and ( still ) feel very thankful . The dolphin was spotted bearing deep wounds from the bite of a large shark on Friday . Until Monday the animal had not emerged from Moreten bay for its nightly feed , and it was feared it may have succumbed to the injury , but the twelve - year - old dolphine returned to his regular feeding spot on Monday night , and was transported by boat to Sea World on Australia 's gold coast , where he underwent the surgery and now recovering . I will go his reatraurant again in the near future . begiin new days . Please recommand an English name for me ! ! Please recommand an English name ! ! Actually , I deleted history on Windows Exploer , but I did not clear the document history . I 'm greatly lokking forward to meeting him . In the morning , I hurried to get up and eatted the sanwiches that I prepared yesterday night . At that time , I began to realize that I forget my tiket and wallet at home . The relationship between parents and children is very improtant . If you 're interested in the special culture , I 'll introduce a useful tool for browsing throught the night markets in Taiwan . My lithneing skill is very weak , so I always got the lowest score on the listning category of the TOEFL . Are there other effective ways to train the listhening skill ? I always go to clinics , to meet doctors and advatize or inform them about my company 's medicine . However , sometimes I am appriciated by dotors for my support . In Madrid , it has been raining all day and going outside has been imposible . My hobbies are listeng to music , watching TV , playing sports , and so on . According to the weather forcast , it will rain tomorrow . And two tyhoons will come close to Japan . Because I hope to make a present for my mather on Mother 's Day . According to the article , in Bulgium , there are four parties and they all have trouble with language . This writer 's point of veiw , you can tell there are two worlds in the Cinderella story . In 2009 , many scientific studies showed that chocolate has many interesting properties : it is rich in flavonoids , provides good protection from the sun , improves heart health , decreases blood pression , and even protects against cancer . What is coreect ? is there anything elso . . . ? If I go there again , I will go bankrapt . While there , we were thaught about the Asuka era of Japan in English by foreign people . I went to a toy museum with a forener . I hope one day I will speak inglish , one day . . . . I also like cosmetics , fasions , and magagines . Movies make me excited . Today , a tayhoon hit city . I wo n't go to wark . I wish tommorrow will be fine . The differnce was , however , he kept on going to his potty even when wearing his diaper . When I found this site , I decited to post in my journal everyday . When I said that her studens seem to have been improving their Japanese a lot , she looked really happy to hear it . I know her feeling . When I was an instructor of drawing software at a bussiness school , I was happy to hear about my students ' efforts and improvement . They often gave me the enagy to teach . I could do it anyway but my friend coul n't and held the bar whole time . . . it was so cute : ) I want kimono for myself but you need speacial treatment to keep the kimono in good conditoin . I love this lenguage , and my greatest wish is to speak and write English ( fluently ) . And it eables us to enjoy taking a bath outside and to overlook the valley . It seems a little bit complecated to me . It seemed to be a very nice day . . so I took a chance to ride my bike becouse it had been a long time without using it . I am so depressed . I study English every day , and when I finish class , I come back to home . I continue to study English , but I feel my English is not improve much , I memorize English words every day , bu next day I forget half , I feel so upset , I think my IQ is good , but my memery is not so good . . . . I want to know whether foreign people have dyed thire hair or not . Because an upstairs room is cheaper than a downstairs one in an apertment house in India . But I ca n't remenber everything I study . If you know the best way to remenber , please write your way in a comment . Today I finished my thesis finally and I may be able to graudute from school in two weeks . My brother has told me that my grandmother has been transfered to the emagencey room for brainsurgery . My allawence is far from being able to afford even the cheapest one . Soo today I will write somethink in English . I desperately searched for an Austraian conversation partner , but three months were not long enough to masnter conversational English . He answered me , we introduced each other , and bigan to talk . Maybe you will meet a lier that will steal your money , because who knows anyone on the internet , where people can promise anything ? God knows ! There are aminals there which have been abandoned . However , he miraculously recoveriedand and he is full of energy now : ) I needo to study English , but I do n't have any motivation . . . . . . I admit that I 'm a lil insecure , which I do n't like to be . She fascinates me though I do n't linten to pop music very much . Althoug the weather was not perfect to see as far as Mt . I am really nervouse . It 's the bussiness language . . . . . Untill I read another person 's journal , I had never heard about it . Only suginami - ku ( one of Tokyo 's towns ) was entryed in Japan . Now , I want to be a coustomer survise agent in airport . Hope I can successfullu pass this examination . I 'm a big fan of `` The Dark Knight `` and `` Mement `` and I like Ken Watanebe . Absentmindly story How about in your hoilday ? I 'm sorry for no contant for such along time . While I was at work , I met a pofessor sho was Mr . ( nome of my lats supervisor ) 's friend and he introduced himself to me . I am not sure if I will have good topics in the future , if I will pass exams and enter the Unirvesity , or if I will find a job in a good newspaper or a magazine . On top of that some fuel rods have alread suffered damages . [ suggestion ] I wish I could recover immidiately . I hope I recover soon Whose backgroud music is excellent . my choir teacher has been soo anoying lately . The population of Japan is decreating now , but business in Japan is poor . Gon na work as a web creater after graduating ( only 2 months left ! ) , They were the offense side , and we were the defense side . I need the computer because I am studing English and I must do myhomework . So , they are not eager to get mariage . I did n't think it was relexing . We slpet only 3 hours every day . I think pople are unaware about how little we care about things as we get older . Anway , I think this movie is not only for a child but aslo an adult . It 's a very exciting , entatining , and heartwarming film . I was going to buy running shoes but what I actully bought were like DVDs and so on . He will soon stand by hisself . I 'm planning to get a driver licecse before long . I nerver finish reading the books that I buy ; I am a cracy girl . I know it is really hard to do it . Sometimes I am lazy ; sometimes I am drosy and would like to sleep . I 'm practcing `` In too deep `` by Sum41 : ) In japan , girls give chocorate to boys . Aroud 328 pepoples & nbsp ; died . Last week , my classmate who is & nbsp ; now a & nbsp ; teather . Told me that & nbsp ; two classes have been & nbsp ; Cancelled , due to the H1 / N1 in her school . I think I have a responsity to remind you , my friends , to pay more attention to your health . Personly , I insisit that health comes first . I am looking for peolple who can teach me English . To tell you the turth , I felt sorry for him , because he really looked sad . . . I went to Izu znd Kumamoto in this summer vacation . Humm I still do n't know what to write about . I definitely need some help , because I never have time to practice my writen English . . . AlthoughI do n't know hou to use it . It rained heaviliy today . Espeicially if you take two totally different language courses , it would drive you crazy . He played football till he was a highsool student . And I 'll correct entries writen in Korean on Lang - 8 . But after a little training , I learned to opreate it . In the end , we choose to wait for the special bus because it was more convinent . Havy raining ! ! It is hard for me to consentrate on my studies . because my frieds all have girlfriends , except me ! from IT technology to peaple 's values . The Tokyo Electric Power Company said `` We will use the accomodation later as we do n't want the field workes to dirty it . `` Therefore , I waitd for her at the station yesterday , so she was pleased as well . And by this morining I 'm already almost finished ! He can speak intermediate level Japanese , and would probably be able to explain English glammers in Japanese . Now , I rerally talk with people even in Japanese because I am busy with work . Ttherefore , I decided to run at my fun - run pace . It is very beneficial means to learning a foreighn language , so I 'll try to use it when I have time . I have been having toothaches theese days . The TV program showed / explained that the children of emmigrants who had to go back to `` their mother countries `` were not receiving adequate attention . ( by whom ? ) I would like to study abord . Generally spearking , most Taiwanese are warmhearted and friendly . He then had an operation at a Nanjing hospital where the docotor removed half of his lungs . Now I 'm not confortable eating hot and spicy meals . . . Then , I talked to many people , but I could n't comunicate well . And now , I want many foreign Frends , I wanna talk about many things . I guess this is the most importan quality that I write until now . Moreover , a thaughtless act or remark can spoil a perfect relationship . Recently I take a shawer twice a day . Menbers arrange a meeting in the local area via twitter . I try to do exercise but I usauly must open the window all the time . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I recenyly have n't been to a music concert so I decided to go to a concert . Something hapended to me that put me down . I get up evry morning and feel like a loser . In fuct , I was studying meteorology when I was about 20years old , but before I knew it , I stopped being interestd in Meteorology . Today is a historical day because we could see a solar eclispse over almost all of Japan . It means the electricity is cut off at a regulat time every day . So I found that electricity is one of the more important things in our dayly lives . I made a big effort to learn , because this is so intereting for me more and more . People in Canada usualy put their foots on across a seat in the bus . A few days ago , I was complaining to my boyfriend that I 'm so envious that others can have fun all the day and night but I ca n't , he said nothing but `` that 's what you chose . `` I was so depressed then , because what I want is only some conforts . The man . was a Cadian But my new office is in the city , so I have to wear bussiness suits . Today , I bought a lot of new things to wear to work , for example : bussiness suits , shoes , and so on . I can control my computer to play a vidio from far away . I was going to make a team but I coud n't afeter all . I was sad and disappinted . And I doother sport which are badminton and volleyball every Weddesday . Altough I do n't know if I will get the best By the way , I want to learn Japanese during my snmmer vacation . I ` m a studend and I can work only at night . I hope you can help not only correct my grammar mistakes but also develope my arguments . Of course I liked them , all the same , I was getting sick of the coulor gradually , so I asked my husband to paint it white . But it seems to be impossible for me . hahahaha In erementary school , we are taught to protect conformity amongst the people in our class . When I told them what time I started cooking that day , thay were surprised because it was too long and pointed out that I tended to cook time - consuming foods . Basketball , Vallyball , Soft - ball , Tennis , Table Tennis , Soccer and Jump Rope . I played Basketball and Vallyball . A couple of mothes ago , I took a test called TOEIC , which is a Engilsh reding and listining test . When the score was anouced , I was supriesd becouse I got a 930 . I was relly gratifed and I was proud of my score . He is a Japanese coedian . The score is not that satisfactory , but I 'm just really happy that one of the biggest burdens on my sholder finally got offloaded . There was interesting camaign against hunting cheetahs in Africa . This campaign was led by the African ogranization of cheetah , and there were a lot of well - known people . For example , Oprah Winfrey talked about the horrible decrease of the cheetah population for 50 years . Also I paid the organization $ 1000 so I ca n't go to the cinema with you , because I do n't have any money now . But I 'm very pround of myself and its so much better than this new film with Stallone . Today , our laboratory willl have a student from Mexico . Foe example , we can get healthier bodies by physical exercise and improve our blood circument . Playing basketball is good for increasing the height of the body and improving fridndship . and I got your infornation from the internet . These wege pages are for your reference : Giant suhi I always gaze at my PC screen , and I make dicision whether the applications are similar to previous ones . And I hope I will make friands with many people for international exchange : - ) You may think I stayed there verrry short time , Suppose we could only get food that is tasteless or stinky ; we might be able to survive , but we might also find life meaningless since the essance of life is gone . Lucky enough as we are , we do not have to worry about this hypothetic tradgey . For this , I have been practing speaking in English by using a textbook and a CD . come on ! God help those who help themseves . So today , I want find ( or make ) some friends to hlep me with my English By the way , I love Geo of `` Ugly Betty `` and I think `` Jim `` of `` the Ghost Wisper `` is the ideal hasband ! ! We are a lttle tired , so we are taking a break right now . We are wating for an answer now . I feel really good becase I will not go to work tomorrow mornig . I plan to go there later after I have finished reviwe some things at Sanamhoug . I 'm really happy . She teaches me like I paid her money and we plan to study English and chainese together . She is really nice and will teach me Chinese while I plan to help her speak Thai very fust . I really like when she speaks Thai with me . So , on Sunday , we plan to wath a free movie together at Suvimvit 55 road . I like reading books which teach me how to deale with the things in human life . Before I left for the shopping centre , I looked up the collections of my favorite clothing companies online . I started off looking round my favorite clothing shops , but they had nothing in stock that I liked . I purchased them , but in my haste I made the mistake of picking up the wrong color ! ! I will stydy English . Then I tried to add ice but the ice came out so quickly that I received a _ alot more than I wanted . One thing I was suprised about was that the people on Car1 got off at Suidobashi station . It is too difficult to become fluent in a `` no - Enlish `` environment . . . I 'm interesting in seeing how the Japanese govenment handles To achive that , I should study English grammer and increase my vocabulary . I think it helped me regain my health ( get healty ) again . Although I have learned English grammer for six years throughout middle school and high school in Japan , my conversational skills are not enough . I 'm in the lab waiting to assist students who are learning Japanse , but no one has come so far . I have read a few blogs which say that olibe oil makes vanilla ice cream more delicious . Because it cools your body down , you comsume the calories in order to warm your body up again . I only go back to my parents ' home every annum . However , this time , it seems to be fixed easyly . But the computre was down with a blue screen . My roommy , a Japanese , introduced me to this site . I 'm really happy to have known this site and it 's a pleasere to show my ' useless ' diary lol I will take an English conersation class at the office . It will bigin from the 13th of October . I alawys think and worry about my fears . Worrying about wheather I can make it and what should I do if I fail . . . This time , I boght English books . But I 'll try to stady hard . I came across an article on the CNN website last night which enumerated a number of useful sites specially designed & nbsp ; for language learners just like us , and the lang - 8 was high on the list , so I signed up and joined this big community , I hope my enthusiasm & nbsp ; for learning foreign languages will be sactisfied & nbsp ; on this site , and also I 'll be zealous with people & nbsp ; who need & nbsp ; my help . I answerd , `` I do n't think so . They do n't get holday or days off . I am Korean and I 'm studying English for an enterance test for a university . Then I will go to sleep . I aways sleep late . I love MINISTOP 's chocolaite and vanilla mix Ice cream . Now , my throat feels much better and I do n't have a headche anymore . I have been trying to find a frind for studying ( ? ) Russian - English a long time . The day before yesterday , the president saied , `` Everyone speak English . For example you can say good morning `` in the monrnig meeting . I can speak in English to everybady . Perheps they are impressed by the boy 's deep - rooted loyalties to his teacher but it seems like an effort is made to nip the talented untouchable boy in the bud by the nobles . I walked fourty minutes . So , I started this site , and I also boght a DVD called `` CORE Rythms `` . This DVD has gotten popular in Japan , because a Japanese comedian ( woman ) tried this DVD and she suceeded in losing weight . The DVD itself was not funny , it was just a regular dance excersise video . Especially , my bocubrary is terrible . . . That made us laugh loud since our class is in warm atmosphter . It was especially difficult because each sentense was very long . I spend a lot of time drowing . When I went to a supermarket last night to buy some flozen fishes , I was surprised that there was a difference in the price between frozen fish and frozen processed fish , frozen fish is more expensive than the other , it 's amazing ! ! I graduated from high school on marth 1st . But I did n't tear a lot during the graduation celemony . The show lasted only a few minture , because the boss was back so soon , I had to stop the music and lhad to stop the dance . It 's been getting wormer and warmer by the day since summer is coming very close ! Today we watched the movie called `` An Inconvinient Truth `` which was made by Al Gore . I played soccor with my friends in the park last Sunday . I visited frends who graduated . There are IT - English courses provided by my company , but they are rare , quite exspensive and all the places are currently taken . Catalonia ( Catalunya ) is now an autonom comunity of Spain with specific caracteristics like its language ( catalan ) , its culture , its gastronomy , etc . compets to get the best score If you belived in me `` If someone belive in you , you belive in the world . If you know good way , pleaze teach me . I really appriciated that , especially my girlfriend . Moreover , we are expected to have a wide range of imformation not only to teach all subjects but also to help students broaden their world . Will they keep me standing until I concide on some issues ? Next week our family is planning to go campping in the forest . Flour contains water , proteins , carbonhydrates , lipids , minerals ( inorganic substance ) and vitamins . By the way , he is a very nive person , as well as being shy sometimes . As I have said in my self - introductioon , I like meeting foreign friends , so I do feel desperately happy to meet or receive any information from them . I have to write an essay on Japanese education for foreign students , and I 'd like to know how all you Japanese lerners really think . Throught I am a leader of my department , I always feel that I 'm lack of confidence . I told somebody , but of course they did n't bileave me . Untill what age did you believe in Santa ? On another note , I bought a grammer 's book . because I do n't like grammer . Those who can not pass the tast will have many problems next semester . That 's the reason I 'm able to learn it more effectly than English and I have more fun with it . I live in taipe now . I lesten to a worker speak about job hunting . I think I have to aim and try to acheve the goal . From now on , I wil try to explain about the basic rules in Japanese . If you need to be plite , you can say `` watashi ha hashirimasu `` . Regaedless of the subject of a sentence , you must not forget to add `` ha `` . If you have some questions , I 'm wiilinng to answer you ! I tried to cook something like that even though I did n't know the vegitables . And then soneone in the Japanese EMI heard the album , and asked me why could n't I write in Japanese ? Internet additon I am addiced to the internet . I spend much time serching for information on the internet too . She and her family camr to Japan for work 21years ago and now , they 've become Japanese citizens . I am very happy to encounter a good teacher , but I always feel that to learn foreigh languages in Japan , an island country , is really difficult . Since I do n't have any chance to talk with foreigher , especially in a counryside like where I live . Sadly , I did n't bring a good camera with me , so I could onlly use my cellphone to take pictures . earthquake in the Tohoku district and there being lots of the victims from it and the tunami , some parks are asking people to refrain from hanami this year . What I thought , though , was that the part time job was unnecessity at the test because there was no examiner who was a native speaker . I promised myseIf to write a diary entry every day since I found this great website , but I already failed to stick to my word . I was going to write this last night , but the temptation of chatting with my friend was so powerful even though there was nothing beneficail for me ( it was just time - killing ) . finally , I went to bed at three am this morning . what 's worse is that I cound n't go to my class that started at 9 o ' clock . Saury is in seazon now . But actualy , it is an old American car . There have been rumores of match - fixing . However , the rumores has never been proven true . The Japan Sumo Association has decided to cancelle the next sumo tournament . Today , pastors and leaders from Taowan , Uganda and Singapore came to our church . ( Someone said that this sentenience is the worst opening in the world ) I have just graduated from my university , in which my major was computer science . After th coffee hour , he had planed to play soccer with his friends , so I joined them . - The North - East direction is considered to be a source of bad unluck . I wonder when my tootchach will get better I am writing this entry on my journal at McDonald 's , the famous worldwide humbarger chain . in all the stores in Japan I can use my PC with the broadbank network when I come and sit at McDonalds . But in reality I can use the internet under the broadbank connection of 20Megabite / sec over a cup of coffee , which costs only 120 yen here in Japan . I think I should go to the hospital , but recieving tretment in a hospital abroad is a little bit scary for me . I was wating for my friend in front of the school . Kimch has a strong smell . The husband is a native canndaian and his wife is a Filipina . I hate complicated movies because I ca n't understand the story as soon as I concentlated on the subtitles . Jane is tired of dealing with customer omplaints and wishes that she could do other work . I 'm a Cresso Osaka supoter . Shinji Kagawa was a menber of this team . Now he blong to Dortmunt in Germany . Making freid is absolutely another gole for me . I bought it , and of couse I bought a battery too . Would you explain thse sentences below ? I was happy to learn that there is such a good restraunt nearby ! We had a big humburger . To take the side of Superman is very easy . He can fly and shoot rays from his eyes . He has super strenght and incredible endurance . I decided to take the Graduate exam instand of finding a job . Ithought June has cool temperatures and cold rain . words , spelling , grammer , and pronunciation . Since Australia used to be aBritishcolony English in Australia is besed on British English . I 'm going to write the text `` End N `` at the lower - right corner of the illustrarion . She is one of the most famouse singers in Japan . One of them adores Ayu and she gose to Ayu 's concerts all the time ! ! ( Of course , the contents of the concerts were the same . ) It meant that she paid about fouty - thousand yen only for this time . . . I do not see Pepsi in neighborhood supermarkets or convinience stores . Yesterday night , I had an arguement with my 14 year old little brother who is in juniore high school . After finishing up the friyers , I will hand them out at the station . Needless to say , they ate it greedly and quickly . I think they are the cutest of all animls Oh , I wish I saw many beatiful stars when out in Mother Nature . If you know English and want someone to correct your Japanese sentences , please be frindes with me ! ! I want many friends to help me improve my skill . The Moring was not so bad because the teacher was not so tired and had a sense of self - composure . As the techer felt tired , she became nervous . As kids were scoled , they became defiant . There are many fravor : salmon , cod roe , sea chiken and so on . Suddenaly , it started raining and I had to go home T T I prefer Chinese , but I do n't want to lose my Japanese songs and I do n't have enought time to expose myself to two languages , the former for the fun of the learning experience and the latter for the pleasure of the songs of my childhood . I want to see more color butterflies . So people in Tokyo buy eberything in the shops and I can not buy water , rice or paper . Yesterday , I went to Restrant Hajime for lunch with my girlfriend . My favarite dish was loasted lamb . It was so cool that we felt very comfatable . Let 's plant good seeds in our hearts togerther . [ Please plant good seede in the garden of your heart and you 'll be happy for sure even if someone doubts it ] . Plaese tell me your thoughts about this . My headset was damged by someone I know , but I did n't want to directly blame her ( for this incident ) . After that , I baceme worried about my friends who are living in the area near the Tohoku area , the worst - hit area . One of my friend said that she is suffering from afterquakes and blackouts . She told me that she is very scared because afterquakes occur from time to time . They even use the wrong gammar ( in lessons ) . I really want to study English . Well , hope you can hellp me ! ~ My husband is goot at working with wood . A couple of days ago I joined a team , that was created , to have University students translater English into Korean . Our team 's slogun is to be in the middle of the world that is emphsizing indepence and creativty . I went to the building near the Pusan sity subway station to attend OT . So my primary problem is pnunciation . they lost to the Orland Magic . ( ; _ ; ) It was a little groce , but I liked it because its plot was easy to understand . The only way to make me happier is to find someone esle . Every year , I gave hime chocolates . I cought a cold ! ( I evaluatde this cooling system - It is weak . ) I went to the department store on New Year 's Eve to buy some ingrediants . On the morning of New Year 's Day , many people go to a temple or a shrine to pray to achive their goal in that year even if they do n't have any religion . The story is mainly a piratie adventure , and the characters also have special abilities that are similer to Naruto 's Ninjutu . And , this drama satisfies me with the fantastic graphics and unbelievably suprising plot lines . I normaly play I have a habbit of checking the back of my hair a lot . It is funny that even thoght I know my hair ca n't grow that fast in one day , I check it anyway . I wanted to eat someting for lunch , so I went to the kichin . I made macaroni and cheese yesterday , so I desided to eat that . I looked for it everywhere in the frige , but my lunch was n't there . Then , my hostfather came to the kichin joyfully and began to talk . I wnat to solve this situation . About two months ago in the US , I saw a free traial service on a cosmetic company 's website . I only started lerning English recently . I 'd like to speak fluently , but it 's quite difficult for me now . I recomend it . One of my firends went to Myanmar as a vlunteer with her circle members . I 'm goind to introduce some of the goods later . It 's too complecated > < I wish someone could teach me how to use it > < aah Anyways , I tought one of my dog a new trick yesterday . In Korea , there are four seasons which are cearly different from each other . In the evening the weather was good so we palyed badminton for a long time . When I got it , at first , I suffered from tremedous pain for 2 days . Many things have happend around me during that time . That 's why I 'm writting a diary at this time . . . It 's 6am in Japan now . . . This earthquake happend when I was traveling in Europe . I 've never seen the forigners coming to sightsee in Tokyo after I came back . All paper towels at the public restroom are a waste of resorces , so people should bring their own hankershieves to dry their hands . I answerd , `` Actually , I dye my hair a little lighter . I 'm going to wirte a jorunal in English everyday . Even though I visited Vancouver for 6 months to improve my English , my Enlish sucks . . . . Anyway , China 's nationtal Day is coming , and we will have an eight day holiday all over China ! That 's so great ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ I want to be good at using the compurter . `` Japanese scientific thechniques are no . 1 in the world . `` An unforgettable moive Unfortunately , I 'll likely to have to sell my motorcycle because I 'm going to study abroad in Victria , Canada this September . The Green revolution has broght about great benefits for humankind as a whole . After he successed in making his own company and joining in the market , most of his friends have changed into green - eyed monsters . The core concept of this theory is based on reversing the ideas of drawing a pecture . Untill the last moment the mother kept hugging and protected her However , I made a stpid mistake at the bar . I though it was a straw , so I tried to dring using it , but the dring did n't come up to my mouth . I was so embaressed lol What is diffarence bitween a mouse and a rat ? It felt ( so ) unnatutral . I want to make a bisiness card and I 'm thinking about my catch phrase . I wrote it 4 times on paper and looked at the sentence before correcting diferent words . I find out about me when I write the senten like the diary . I feel happy and I wait for someone to correct it before I check it . I feel exsiting and I think today someone will help me correct it . Futon is a bedclothe . It is obvios that I am easy to make happy . I know that it sometimes seems meature , but candies are my favorite , so they obsolutly can make me happy . do my best , even though I could not answer all the quetions perfectly . You know what they say : `` Winners never quit ; Quiters never win ! `` And my mum , she is generouse and linient enough to make me brown bag lunches when I need them . She sutisfies my familie 's culinary taste . Whoes is this car ? Whoes car is this ? They have three rooms decolated with many accessories that are hand made by the LIFE STUDIO staff , and You was taken about 70 cut pictures . I have to read some scientific papers by tommorrow . First of all , your families are alwals near you . This means that you can learn what you want to know anytime you want to from your parents , brothers or sisters . When children are troubled by their relationships with their friends at school or solving thier homework , parents usually tell their children friendlly what to do for problems , and what they teach will remain in children 's memories forever . In general , the things pepeople learn when they are little are hard to forget , and sometimes are indispensable teching for their life . Agemanju is very derisious . One of my co - workers is Philipino and we talk in English although I am Korean and she is Philipino . And when I work with foreiner teachers , I feel the cultural differences more . I swim at gim once a week but my output of energy is smaller than my imput ( eating ) . At that time , I beleaved her . We held a parewell party for him at an Okonomiyaki restaurant yesterday . ( Okonomiyaki is one of the most famouse Japanese dishes in the world . ) the most important thing to remember is one that I did n't spent the time being with my familly although I 'm the only daughter . I practiced prnounciation this morning with my teacher over the internet . But today I enjoied my lesson because I did my homework . I want my own domain and I can pay for someone to creat my homepage . Wirting in english is little bit challenging for me . He said , `` I was raised in Japan untill I was 14 yeras old and then moved to Portugal due to my parents ' work , and now I 've been living in England for almost 3 years . `` In August 2010 , I left Japan for South Korea to study economics , and Korean culuture and language . I could n't say anythig in reply because I could not speak Korean but my Western friends could . This is really helpful for foreiners . I check meanings and example stences , but it does n't always work well . Maybe I will be a tour guide , but not sure . Maybe I will just ues it for my own travel because I could get free access to some scenic areas with it . These grown ripe are very sweety and tasty . Her grandparents are comming over for the festival too , I wonder if an school athletic festival is commonly held in other countires Summer vacation will be over this mounth . I was lazy about sutuding English . But he only talk to me for about 10 min , when he waited for the meal in a restrant or only if he had spare time . His house maid said his mother did not wish him to get married , because they needed his saraly for the whole family . When I was in his room for a few days a year , I was dissapointed with his behaviors ; watching TV , checking his phone , no talking . I want to spend my time with my BF and have dinner togather . In particulaly , after his anger surprisingly hurt me . I had a BF , but I can not talk , called up , share any ideas , no oppotunity to go out often and have a temper . I 'm looking forward to receave it ! ! I will hang out Ikebukuro and eat some nice food . The correct sentence is : `` Wolud you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutly do n't want to make mistake like this ! However , this situation symboled the kind of distorted affection and shallow nature some people have , called ' Naebi - geonsung ' , boiling fast and then getting cold just as quickly . I am hurngry I prefer low sugar to high sugar and I prefer fruite cakes to vesitable cakes . Give me news of you regulary and also news of your mom , your dad , and your brothers and sisters . At first , my friends did n't want to watch it but I reccomend it because this movie is made by Disney . I live in a rental house , so I called the onner . I can wash my fase comfortably becouse the sink is new ! what can I do abt it ? Maybe she had gotten infulenza . All actyvities were great , especially The Hallywood ( Hollywood ? ) Ride ( this is a roller coaster ) and Spider - Man The Ride . While in the US , I went to the starbacks . Still , I go to starbacks becasuse I can spend a longer time studying there than at other cafes . I am working in a Group Home , where old people who suffer dimentia related deseases live , and we take care of them . I think I should explain my situation first . I have been living in Australia for a year and 9 months in order to study English , and have been living with them for about a year . They are really nice friends so I want them to see my home town where I was born . The Zew Zealand friend also took me to see her country this past January . I really want them enjoy this Japan tour , and it will be a good chance to be like a bridge between Western and Japanese people , because one of my dreams in the future is to become a transrater so I will be able to see how good my English skills are . We are going to go to Okayama ( my home town ) , Hiroshima , Osaka , Kyoto , Shizuoka and Tokyo , I ca n't wait to go there : ) At frist , I did n't believe it because I thought it was a joke . I lacked confidence at that time . I talked on Skyp with my router . I woked today . It was a sanny day . But after I entered a university , I realized taht I ca n't speak English as well as I would like . If people eat it , according to the animal expreiment , it causes kindey calculcus and then finally becomes carcinoma . I disagree it , because I think people will not be motivated to do thire work . Thtat will make me more stressed . In our lifetime , about 100 yers , we are supposed to choose only one person to have sex with , but sometimes people try to choose two people at the same time . First , when a couple gets divorsed after 10 years of marrigae . Second , whther a father or mother has a relationship with other man or women while still having a life as a family . However , I have n't recieved any satisfactory replies so far . What I am worring about is the fact that if I ca n't find a internship position this summer in Shanghai , I will have to go back home and stay there all vacation . After that , I 'm going to study English at the ECC schooi . I was only free for a short while to buy vegetables and choclate in the city ; ) I need chocolate to reduce stress ; ) And now it 's time to go to bed . The event was canseled , due to the over crowding at the race track . The holidays are called Golen Week in Japan . But how can I acept him ? And I look forward to drinking with the teachers becaouse I promised them we would go drinking someday . But , I wanna write my dialy on lanf - 8 as much as I can ! They lable the phonetic symbols beside the Chinese characters . All Chinese students begin to leanr pinyin for at least for 3 months once they start school . I am still thinking about how humans can solve the energy problem themslves . I keep searching the internet for answers but still havv not gotten them . Are you influenced by the economic crisis ? What infuence can you have on your country ? From now on , I have to prepair myself for the up - coming examinations . That was the highst record ever . ( Yesterday I taked about a Manga Cafe . I 'll talk some more about it today . ) I married fourteen years ago , but I do n't live wirth my family . Providing a good educetion for their child is also important though . Besides , think more befor what doing something , The volunteer work is basicaly something like this : if tourists ask how to get to their destinations or particular places , we 'll show them how . And the girl ( or woman , more accurately ) , who is much younger than me , was very cute and nice , and we talked a lot about work , marrige , siblings , friends , etc . I went to Yoyogi Park for cherry blossom viewing last satruday . I am studing commerce in Melb . I still feel unfamiliar with Melb , Most of the Arabic lands are covered by deserts , therefore the animals in Arabic are very spicial . Of course , I 've never donete blood . All the professors have gone to the conference , I am having a bresk . It said `` expectually small penis . `` Then he laughed so loud at me . Now you know why I can remember this word nmore easily than other words . > _ < After that she is going to do yoka and I am going to go home full . There all people were foriener . Bcause I can catch my teacher 's pronaunseation . I had a bad hedache today . By teaching your knoledge and trying to convey it as simply as possible , you can obtain deeper understanding about your knowledge . I 'm a university student , and I major in Chenese Literatre , One semester of studies in Brussels resulted in unforgetable memories and valuable experiences . Lastly , Brussels is a beatiful city to visit with pictureous places , numerous parks and museums . My most favolite song is `` Lovers Again `` . This song is one of the most difficult songs in te game . I 'm so happy that I have found some friends here ! I like to play games , let 's disscuss it . I 'm really sorry for my friends who are waitng for my pictures . Maybe wikiedia is better than me ! ! I also met my parents and reltives . I like to eat Umeboshi , Mozuku ( like seaweed ) , and fried chikien ! Because I do n't knouw ! However , when my first leg stepped out of my room on the way to complain about this to the hostel office , my cool mature roomate stopped me . `` A true / real man will never be afraid of little insects . `` And he said with a calm voice , `` I used to be biten by insects too , but now they can not harm me any more , coz / because I have already grown a layer of iron skin . `` I think it is a good oppotunity , so I started & nbsp ; my English diary ( it may be weekly or monthly . . . ) Becouse my English class finished on Friday . Prease , would you become my friend ? `` I like that menu , but I have an allegy to curcumber and tomatoes . I fogot to tell the chef to avoid those ingredients . Yes , he startd to feed them , but I have been taking care of them instead of my son . My son is four yeras old , and he is too young to feed the larvals well . As summer is coming , cockroaches appear in the kitch , my room , and everywhere else . As you know well , this is a tarditional tactic of ours . ( `` For us `` is okay also . ) I am writing a diary in English beause I have a few pen pals and I want to improve my English skills . He is the opresident of his company . The race in the Northen America is not good for people in Japan because of time difference . I went to Chinatown in Yokohama on New Year 's Eve and celebrated the new yeare there . It was yummmmy ! Anyway , this is so famous in Japan that banaa used to sell out lol If u are interested in this diet , try it ~ I 've never tried this though ~ ) Our class has Korean , Japenese , and Taiwanese students . They 're good classmates who are stuyding with me . My teacher is Aamerican . Citizen watches Japan can not suuply just the parts . but he is going to be deployed to one of the goverment offices because he got in a car crash several years ago and doctors implanted some metal parts in his left leg . I 've ever seen either but I still belive they exist . Places has indentical features . These last few years , I have come to love the beer , `` Kirin the Preimium Muroka `` . My band favorite is Green Day , the best punk rock band , because they 're irreverent , their lyricals are cool and their music has a lot of energy Of corce , amime is Ok . The class always gives me stress / stresses me out because I teach students who are preparing for their university enterance examinations . ( It 's very difficult and important for them in Korea ) I played the pianno with my daughter in the concert for the first time yesterday . Are people in modern society losing thire moral values ? Nowadays there is a growing awareness that poeple in modern society are losing thier moral values . Every year , bullying at school occurs and it does n't seem to disapper , rather it 's becoming worse because there are some students who commit suicide after being bullied and the way of bullying is becoming terrible . There are some pople who talk so loudly with thier movile phone in trains or buses , not considering other people around them . Have you seen Avator ? Yes , comics called Manga are part of our culture , there are many managas for adults and Manga is translated all over the world now . I used to read fiction when I was young had a lot of free freetime . I went back to my farher and mother 's house . then she craped her small hands and swayed to the song . Jim Parsons 's Smail is cute . XD Many flights have been canceled . Anyway I had a chande to talk with many people , including a few members who I do n't like . . . I thoght I would be late . When I got to my office , the meeting in the mornig had alredy started . There is not much differents because it 's Asia . confuse : Both of them told me different imformation about nuclear plant so I was confused . compete : 57 succer teams will compete against each other this summer . Recentry , there was a big earthquake in Japan . We appriciate it very much . On the second day we went to an iland near Kota Kinabaru , by boat . We returned to the hotel and had a nup . I asked ` What do you recomend ? ' ' There are many shops , factories , campanies , and even a bank . Then , he worked as a engineer of a printing company and a researcher of a medical labo . Hi , today I bought an electric guiter on an internet - shopping site ! I decided to start guiter so I joined a music club at another colledge . My senior said `` I advise an early start on guiter and you should buy a guiter priced between 70000en to 80000en `` She instructioned me to call her friend who was a professional guiterist . He told me his favor internet - shopping site where he bought his guiter from . And he said , `` I think at first you should try a cheap one and if you think you want to play the guiter more , you should buy a more expensive one . `` I trust his word , because he is very kindful man ( and my mother 's friend ) Will you listen to my music , if I could play guiter very well ? ( haha ) They 're really relly cool pants . They are my dream pants xD and now I will go to my summer hous . Poteto chips However , it can be hassale to wipe it every time . I will be starting work as a computer programer from next April . If I was not able to understand slang , it would be difficult to comunicate with native spekers . Of couase , I know it is important to learn these things . I think something will change in Japan now that spring is comming . It has been a very long time sice I last saw snow . She describes the mental state of women in a vriety of situations in her songs . They cry for a lost love and are dilighted with a new love . this season will be meanful . I 'd like to tell Japanese how foreiner are interested in Japanese . By wathing NHK , I can watch many kinds of programs . Plus , when I listen to English in a similiar - way , I ca n't keep up with the conversation . I heard that some mosquitoes ( 3 ) which inhabit in Australia are really harmhul for Japanese people because they ( 4 ) do n't have immunity for some types of mosquitos . My friend was bitten by poisoness spider and she now ( 8 ) has fever from the venom . Her situation is much ( 9 ) worse than mine . Geez , why dind n't I realise this before ? But I will go there tomorrow anyway . I wo n't care about my anckle : P When I was a kid , I bilieave that rabits lived in the moon , And so , I go to the small kitchen in the office and drink coffe . I appreciate it if you cheack my English or send a message . When I was 14 years old , she came to my houese . A very , very beautiful godess stays in a toilet . That 's why if you clean the toilet everyday you can become beautiful like a godess . Because Stockholm is made up of many islands sorrounded by the Baltic Sea . I am a doctor , specializing in anestheology . So I 'm searching the Inrernet for a long time . I take English coversation lessons online every night . Soon after that , the problem eas solved . My reading teacher tells us that in this final exam we will have a reading exam , a writing exam , a grammer exam and a listening exam . But I have things to do such as the laundry , buying food , making some plans for an exam , studying English and even edting a movie ! Father and mother r . work as teather . USA and Japan will go bunkrupt like the russia economy 1990 I even do n't knoe what I can do for you . Actually , _ I like more kangaroo more than beaf . I atached a picture taken through the window in my house . Tihs is the first time I came here , and I hope I could find friends to By this tool , we can have more opptunity to practise our language ability I think . We can share each other 's cultures and luanguages . I was really suprise and happy for her ! ! Japanease horror movie . Sommer is horror season in Japan . Japannese horror movies are very scary and interesting . I so hated cleaning , espessially washing floors . And I like to rid of uselss things . I must will have to find mysels very embarrassing one day , than there will be no stuff to through away . Sometimes my friens are joking that someday I 'll turn to Monica Geller . ) ) Three years ago I visited Rio de Janeiro , Brazil together with my friend and kher mother . They openned EVERYTHING : bags of souveniors , pouches of cosmetics . . . The Brazilian officer openned her bag and found a pack of umeboshi and was asking her what it was . The officer openned the package . At first , I was saddened , because it gaves me a feeling that she does n't think I am her friend because she always complains that she really wants to meet the other friends . I registered on this site a few minites ago . Recently I attempted playing the guiter for the first time in my whole life . I go to guiter school and have a fun time with my teacher . But I want to play for sameone sometine . I want to enjoy writing my dialy and get to know many people around the world . One of my goals is to improve my English ability so I can comunicate with foreingner . If you underatand my goals , please help me improve my English . Usually , many Japanese spend the GW by going for an overseas trip or goint to their parents ' home . However , I had to go to the driving lisence senter , because my driving lisence was almost overdue . Moreover , the diring lisence senter was so crowded . They overcome their weaknesses throught religion . ' Cause I finished my eassay just now . So I cancle my plan , and instead , played the guitar . . . I decied to have a personal trainer at home . Then I 'll play tennis with my friends , study English , and apply myself to my reserch to graduate from my university . Many Japanse English teacers use college entrance examinations as an excuse for them to stick to the traditional method . Friends is so fuuny ! ! I accidently started watching the North American sitcom `` Friends `` . I ate an eel and he ate curry and rice for lunce . Hi THIS IS MY FIRST ENTRY ON THE WEB , I 'm a studiant of English . In Spain we have a bad sistem to learn idioms . ( It 's not like the anothers countries in the European Union ) , in those countries when you are 18 you can have a normal conversation in 3 or 4 idioms , but in Spain you ca n't talk very well in English and you only can say the numbers 1 - 10 in French . . . hahaha , I should learn as much English as I posible can . I workover overtime today . I enjyoed this trip . I startde to study English yesterday . I 'm vey tired . Also , it was exiciting for me to play with my niece ! I expect it will arrive tommorow . So at 10 o ' clok p . m . tomorrow , I 'll be going to my hometown and maybe , the morning after tomorrow , I 'll have been there . I thoght `` I need to learn English because I want to make a trip to somewhere I would like to tell you about yersterday 's lunch . This sounds more natural First , they did n't separate the non - smorking area from smorking area . In fact my teeth is not so great , since I didi n't know how to brusy my teeth when I was child . It was fun for me and maybe theuy also enjoyed the story . So I said if you really crean your teeth , you wo n't have a bad tooth like me . There are many interesting places though , but it 's really clowded everywhere and rather dirty , and it also makes me very stressed . My co - cowokers all quit their jobs because of depressioinlow . . but it is also very stressfull work . I am stading English now . We did n't feel like sitting in a hot car so we went to there by bycicle . It was a little funny because we rode down a srange road because my boyfriend thought it was too dangerous to go on streets where there are cars . Someone else said , `` a theacher has authority because he can educate people on not only ( academic ) subjects but also ways of life . `` I undestand any situations , they have a different porpose for using the SNS . I know I need to be confident and patient while larning another language . Anyway tomorrow is Fraiday . She is going to have the baby in Octorber . But It 's unbelivable that she is having a baby at such an early age . I do n't have a cavicity , but my teeth are poorly aligined . I have been studying Eglish for many years but I am not yet good at writting English . To improve my writting English , I joined Lang - 8 today . This summer , I had an opportunity to contact with an African - americanese , but I could not understand what he was saying . I went to a ritzzy restaurant . I always nibble food like pizza , hamburgers and spagetti . A Jananese novel I think that it is too difficult for forigner to read . She said , `` Outside it 's very cold ; would you like to borrow your uncle 's ssocks ? `` Of course , it 's a very common operation but when it 's happening to me , it 's much more dramatical . Today is Augst third . When I finished studying at my cram I was happy beacause it has n't rained in Taiwan for two or three months . do to attratct the man . In Japanese culuture , people clean their house at the end of the year . I want to improve my inglish . However , in the midlle of ( the ) development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` are becomming popular and more and more people are interested in recording their activities and making their lives better with ideas and tools . Nomally , y $ 20 a week for each person was the regular price . Everyone who registerd on this site would like to practice , and they need people to correct their writing skill . Since I am not an English native speaker who is familiar with writting skill . So I concluded that my learning process is best experienced from other peoples mistike , especially the best writer and a brillient helper . Yestuerday , I went to an Onsen near my home . I have nothig elseto do so I powered on my laptop and amchecking thelang - 8 site now . Different from our Chinese TV series , plots of American ones are more intriguing , which are containing more imformation . So I choose this picture which was taken at Fushimi Inari Shrine which is famous for having thounds of Torii in Kyoto 2010 . 12 . 31 . So today we 'll go there togerter . I hope our convasation will be fine . First of all , regardress of living in a grobal world , we still can not stop wars and many countries have illegal weapons . Although the human lifespan is longer than ever before , we still have to cambat diseases that are lethal to humans and animals . Maybe some news from offical not true . I was very perplexd but I managed to explain my innocence . It happned at 4 o ' clock . I ampleased when I can hearthem singin . However , I was just lazy tempolaly . Everything that I do is recorded and is going to acmulate in my body . I studied English at scholl 6 years ago and now I 'm trying to learn it again on my own . He has been a fugitived for two and a half years and was hiding in my Is this sentence grammartical ? I felt like a salesperson visitting the door . I wish I could have these wisdom teeth pulled out , though romours say that it would hurt the nerves and made one stupid . There are a lot of tourists frou various countries in Japan . Besides , on Oct . 15th , our college will have its celebration of its 80th anniversary . I 'm very lucky I can witniss this important event , and I 'm also very honored to be a volunteer for the anniversary ! I think that it ` s important to study hard and have hard time ( ? ) a lot when we ` re yong . Besides , our team virtually does n't have a player to replace my possition . It was dilicious . Last week I got a fwe orders . I feel better now , and I can forgget ( about ) it because I wrote my complaint here . What a beautiful and wounderful movie / film it is . On Friday , I went to my friend 's biethday party at Shevron Renaissance . After that I went to `` The fiddelers `` . My frist English diary has not been corrected , I do not know why not . Since I have bad stiff shoulders , I wellcom the campaign that we don ' t After three hours of shimmmering , however , it all came together . = It was okay . We do n't have oppotunities to express ourselves in English . I can not explain the reason , perhaps Sengawa has a loungy atmosphere . So , I would like to make some junk entries here which are comletely meaningless and trash and from which I ca n't expect any positive comments or corrections . Maybe because my summer holiday is coming , and there is only one exam which will be helding ten days is waiting for me . It was so palacable that I did not notice when I became really full . Eating slowly makes the feeling of hunger dissappear more quickly I did not abide by the rule . Instead , I just pigged out and now I feel stuffed and somewhat drowzy . Recently , I 've been busy , so I coud n't write a diary in English . So , I entryed tonight . For the first 3 months , I had been very busy and had not been undersleeping . It 's because I want to improve my pronouceation . But I do n't know if my poronounciation is OK , or not . When I went to a neighbor beef barbecue restaurant , which has many students because of how cheap it is , two of my friends and I ate raw meat . My friends , not I , had stomachaches . I hope I can return your help in the furture . Today , I read that Japanese law now says a Newclear operator has to keep the general public radiation exposure below 1mSv / year . I think it is reasonable because ICRP also said that the general public radiation exposure has to be keepen below 1mSv / year . In spite of that , Japanese govenment said that it is OK to expose radiation upto 20mSv / year . I think this is too high , especially for cildren since they are more sensitive to exposure than adults . Can you tell me the differance between `` can `` and `` be able to `` ? What is they differance in meaning ? I brough her to a hospital , so that 's why I 'm late the class `` . My husband , mathe - in - low , son , doughter and me . I 'm a Japanese girl that 's learning English at the Kansai Gaidai univercity . The black car started to move again when the traffic light chaned to green When we crossed the brigdge , there was a big intersection . The traffic light was ( showing ) blue . If I had been cought , I would have been killed or beaten up by them . Macaron is a French sweets . My doughter is really looking forward to seeing the house of wax Today 's manu is tsuna sandwitch and milk tea . I look foward in going to the cafe every Tuesday . Two or three years ago , I tried to learn English because it was needed for my job to communicate with my collegue abroad . Last evening , I got insomnia and could n't fall sleep untill 3 : 00 am . All kinds of things came to my mind : work , study , life , famillay , friends and so on . It 's difficult for me to hear speaking at ordinarly speed . I feel very unconfertable today . From last week , about ten people from Los Angels have been staying at her chuch . recentry , there was a chiristmas . but I had a speciall day on 12 / 26 . when I went to her house , her Hong Kong friend Tifanny was there . Then , I was very nurbus . cause it was the first time I 've talk wirh a native speaker of English . the year 2010 is almost finnish . the picture is of my breakfirst I ate . The doctor told me that the cause of the symtoms was my warped pelvis and At first I had planned to travell with my friends , but at the last minute I pulled out . But anyway , there was still a pain in my soulder . . . But I think that my writing is not good enough because I have no praktice . My Budy , Koflach KC725 Racing Comp , because the inner was worn out , had gotten hard for me to ski with for a full day . I woke upat 6 o ' clock this morning , then I got dressed and I had to hurry , because my friend and I were going to the beach , but he was late lateand I ended up ( plus idiomatique ) waiting for him for a few minutes . You know tha Vietnam War broke out in the late 20th century . I think that America would n't have fought against Iraq and Afghanistan this time , if Americans had learned something important from thier failures . I saw it in a theator yeasterday . I 'm so crumsy that it still takes me at least 10 minutes to open a can . I am a memder of soccer club . But ther is some fun in my school life . We will conduct reseach for about one year , and our goal is to create a similar proposal for Japanese open innovation . We are now learning about open inovation in Europe , US and Asia as compared to / with Japan . The next day , I took my computer to another specialist , he identfy the cause quickly . I suggest you to employ someone more skilled and with a better oarsonality in order not to cause your customers to lose their time like me . I said it is nice we laern about other countries . I like my country but I also like anoter countries . One of my friend asked me before whether you like other countires because you do n't like Japan because most Japanese that go overseas becasue they do n't like Japan . It cause of my countr 's system , I feel . And I know that I am courious about all things , and it dones n't matter whether it is in my country or some other . I was happy becasue we talk about each other . And I touched a humster . I could n't use all of lang - 8 's functions before by iPad , but apparently now I can use all of the functions byt iPad . Woud you mind telling me how to get it at the discount price that your invitation letter said . This evenning , when I loaded on the news web 163 . He was only 48 years old . He was very excellent that almost every Chinese man knew him through his news report programm . There are more diseases from pollution of our envirenment , so we should protect our surroundings in every day life , so we can enjoy our beautiful lives . This month I have written 48 jounals . Can Japan national team wint the game ? The Announcemet said that some people might have a heart shock because around the top of some attractions , the temperature was too low . I am going write about a person who is not only respected , but also sccesfful . I hane learned english for more than seven years now . My momther recomended that I buy a cheaper one , but I wanted to buy an umbrella with cute characters . I 'm looking forward very much to sees my firends and family : ) Though I ca n't help worring about places that have been affected by the earthquake , I 'm going to go out more frequently . I feel reflesh . Though it is not very long , there are some words that we do n't use today , and some sentences are difficult to make sence of . Becouse , the big earthquake came to Japan in March . . Here , I am studying EE ( electrial engineering ) in graduate school . This sounds boring and difficult to others . I got ta go , so I hope you correct my Eglish writing and that I can be your friend . I found an interesting article in a magajine . Does it Make Sence ? When I hear someone say `` Does it make sence ? `` , I have a feeling that the peron is either getting impatient or just being rude . However , I am not a native speaker . My opionion is not for certain . and in one of episodes , I heard the phrase , `` getting back on the hores `` . Can anyone explain what `` getting back on the hores `` means ? Are thery any differences between them ? Zousui is a japanease risotte which is good for hangovers . My wife 's zousui contains sliced japanease rudish which are supposed to be good for you when you are feeling sick . Speaking of zousui , Japanease sometimes eat zousui or `` Otyazuke `` ( rice immersed in Japanease tea ) at the end of drinking . However it is probably a strange custom for Western people . I had an experience being rejected with a chuckle by an American and a German when I proposed that they have zousui when they finished drinking in Izakaya ( a Japanease restaurant and bar ) . `` Let It Be `` was released after * album but Abbey road was thier last album , because they recorded it later . It is usefull to me because of the English subtitles and it 's free to watch . I am suprised by them . It seems taht I will have to watch the whole episod each time . Indeed , sushi tastes good if the shef is nice and tastes terrible if the shef is not nice . But traditional Japanese cuisine is different from sushi , tempra etc . There are a lot of restrant are in Kyoto . But you can find good Japanese cuisine restrants in Tokyo and Nagoya , too . Becouse , I enterd passward wrong three times . In Japan Japan TABACCO INC which prodece and sell tobacco is very influential in many areas , for example the media , the Federation of Economic Organizations and politics . The tax on cigarettes is extraordinaly low in Japan . However many politicians opposed it and the policy was abandaned . There is a persone who is against increasing the price of cigarretes in the medical field too . He always makes comments in the media like `` what is the scientific proof that smoking is dangerous to our health ? `` `` Can you proove the relativitaton between smoking and health ? `` `` Of course I dont need to say anything about passive smoking `` It is abvious that smoking is bad for our health in Epidemiology , but he insists that there is no perfect explanation , so we mustnt impose a special tax and exclud smokers I got a small gift from an English magagine company today . Some Japanese are getting crazy about this , even they do n't drink that much wine regulary . Almost all the people there felt the red wine had a rasberry or cassis flavor . The pregnant was sudden , she said `` I 'm relly happy , I 've never felt like this before . `` Many of my co - woker helped me learn the new system . I went to the wax musium . The musium was brilliant . When they looked closely at the airplains , my elder daughter was frightened of the sounds of takeoffs and landings . My younger daughter also began to run a race against an airplain . Oh my God , I 'm crazy , frist I do n't love him , second I think he ca n't finish with her , but he does n't listen to me . I do n't know what to do . I am looking forword to the dance class on Friday Afterwards I was biten by one of them and got hurted . After that , I went to the hairdressor 's . Oh , my sidelocks went away : D They weok for our subsidiary in America , but I had not met them before . When they went back to Amerika , They told me ' Learn to speak English and come to America ! ! ' So , waht do you think about it ? Last Thirsday I got a homework assignment to write an article about a famous sports person using enphasising phrases . and this is the first step to learing English ! ! I have never stuied English seriously before , but I believe that my English will improve if I study hard . The snow is beautifull , but it 's so cold : ( But I am still looking forword to going to Taiwan . unfortunatly it was very windy and cloudy . Kim Yuna 's performance was excelent ! ! If I spoke more English , I could make many foreigers friends . So we loughed . Of course , money is very important for living in society , yet , we sould not forget that this is an illusion made by human beings , much like laws and countries . My niece who is 5 years old came to my house and gave me a suvenior yesterday . Tweney minutes later , I found that my stomach was making some sounds . I couldn n't concentrate on the exam . Tuna is reallygood , so I hope thatbreeding tuna will be achived in the near future for tuna loversall over the world . He said to CNN that `` I can do anything , I can be snything `` I often watch several sprots games after I finish exercising and studying . It 's a live meeing by phone . There were people who work in ther countries participating in the conference meeting . Others are hunging wind - bells and banboo blinds as devices to create that `` cooler feeling `` for getting relief from the summer heat . In Japan , we can watche it on Sundays , so I am in the habitof watching it . Creating a vitual life that / which correlates with your destination is the best way to get it . When I get tired of studing , I can take the stiffness out of my face . Today , I am joining the big familiy ( lang - 8 ) I am a chinese girl . I want to make good freinds here . I 'm a bigginer learner of English . I read an English newpaper about art in the morning . I tried to memorize new grammer ( grammar ) for the next lesson . Today I met a forein couple . I heard that there are a few forein people who do n't eat raw fish . The weman was almost not eating raw fish . Recently I have had a keen interest in taking photograh again . I am sitting and enjoying the view from the wimdown of the hotel and I feel a bit regret because I am going to leave Nha Trang tomorow . So please seach for me ! ! ! ! ! ! Some people say it is due to the influence of electromagic waves . I could 't eat it 1 year ago , but now I am familiar with the spicy currry . On the way to there , I found the big rainbow acrossing a river . And If I have Chinese freinds , I might come to like Chinese as an individuals at least . I beilive her rival , Asada Mao will do better next time , ^ ^ althogh in today 's game , she made some mistakes . . If you want to say `` of coffee `` , then it would be qfwatan ( `` tan `` is fatha plus tanween ) . When I was busy , I just wantted to have free time , I have an appointment with my firends tomorrow Good moring everyone . I go see my hiephew , who had invited me . The first time I was in England was 4 years ago . I liked the indie rock music of the UK , it made me want to stady English . I heted English , but now I like English ! Rakugo is one of the Japanese traditional art of storytelleing . Our oldest son went to Austraria this summer for a week . Fortunatery ( fortunately ) Grace got her space in the car . My husband set up the hummmock between the trees for the children . First two years , it was very hard like I 've never experieced . I hope it will be good appotunity to get my motivation up . In my prediction , Hideo Higashikokubaru has a slight advantage over the others because of his publicity and his achievements as the former governor of the Miyazaki prefecutre . When it comes to the types of damege done to crops , in Australia `` fire `` was the greatest After that , we went to a boldering gym . Boldering is a sport in which you attempt to climb a wall about 5m high . We practiced boldering for about 2 hours . First of all , I have to thake `` jupiter827 `` and `` Tokyo _ Girlie `` , who answered a lot of questions for me . It was really helpful . This morning , I suddnary wante to make a Spanish omlet . I really missed her Spanish omlet , so I desided to make it myself . Instad of potatoes , I put tometoes into the omlet . I recomend you try it ehn you make an omlet . I am turning into a lonly person . When I was young , I fell in love with American - style junk food shuch as pizza and hamburgers . At frist I thought that is like English languge but not really , It is for people who can not hear so they converse through signing . good nign from Thailand now . I went to a chili festival in Frementle today . I hear that the best way to studying English ( especialy reading ) is to start by reading very easy / simple stories . I 'm sure this is n't my general level Enlish because it only measured my writting skills . I invited two young ladies to come to my hometowun , Kamakura . The first video clip was taken in Torres del Paine , a place near Chili . This place is coincidently located in South America like the the place I introduced just prior to this . Since I did n't answer with the number of the apparment , he asked me again ( a bit louder now ) where I was going . She sent me an e - mail , informingme how she 's been geeting along . During this time - space travel he found his first love , Livia Beale starring Moon Bloodgood , who left him without saying goodbay 8 years ago and disappeared since then . I dicided to go back to Japan . I 'm goint to turky ! I 'm going to Turky with my custmers tomorrow . I met with my frined 's friend last night . Vasicaly , this is the first time I have spoken with regular people . I will keep on making an effort to write the English diary ong Lang - 8 . They should control theirselves although there 's the word ' youthful mistake ' . avoid : We should avoid direct conflict when we desagree . delay : The flight from Tiwan to Japan was delayed because a Tiphoon was approching . interfere : Some kids say that they ( ? ) do n't want their parents to interfere with them , but actually kids ca n't live withought their interference . Answering my own question : inteview style Nara is one of Japan 's more traditional prefectures and is famouse for its deer . I have just joined this site and I do n't understamd how to do corrections , not comments . I tried to correcte some people who want to learn Russian , but I could only leave comments . And She reccomended me to do it . But the classese will start the day after tomorrow ! I have been so deppressed and sad because he was leaving . he did n't want to spend four days with me before he left just because he is tired of seeing me deppressed . I 'm going to Glastonbury Festival from Wendesday . Or I want to go backpacking aroud Europe . Autumn is just aroud the corner . Everbody at the circuit immediately regarded him as being special . Only optimyzing programs so that they use the CPU or multi - core CPU more efficiently makes me happy . And my teatcher ca n't do anything because it is my friends ' last year of high school lol ! So I 'm happy because the holydays are coming and I can get out evryday with my friends = D I want to go to Ameirca , Britain , and Australia . I would be grateful if you could correct all my mistaces . I am studying at the gimnasium No . 32 . Minsa is very well known . This beautiful woman fabric can be found in gift shops throught Okinawa . They are made in the shape of a legendary animal and are usually placed on gates and roofs to ward off evil spirits that may harm the poeple , their families and the village . My friend said his relative who is fifteen years old is going astray resently . those are very expencive in Singapore . For example , a cigarette is triple the price of a Japanese one , also alchole is from double to triple price of Japan one . Additionally , the goverment manages them strongly and if they go wrong once , it 's very difficult to recover their carrer . They can buy cigarettes and alchole , and also drug . We wateched a comical movie and drank together . Recentlly , on Sartuday and Sunday , I helped out at the preliminary games of a senior high school baseball tournament . In paticular , I activate the electric scoreboad whenever the teams get a strike , ball , out , etc . I also keep the score . It 's very fun because I love baseball so much ! ! ! I am taking TOEIC test , which is a famous English test , next weekend . This hotel is managed by a nice weman , she is about fifty years old and she treats us as if we are her own daugters . What I learned from today 's lesson is that I have little vocabulary , so I dicided to do some difficult paper work . There are four different plastic bottoles and a can of green tea . If not , you shoud go there for a day trip from Budapest , otherwise you will be obliged to stay at pricey hotel . I cought a cold . As you can see , they were almost naked with the exception of a Fundoshi . It is a type of Japanese traditional men 's underware ; I do n't have my own , unfortunately . Sometimes , though , it is really difficlut for us to keep our motivation high to do it for a long time . Altough , It was so chilly , I felt very good . I thought that art and business are unrealative . ( or unrealatide field , right ? She also is intersted in social welfare and social irregularites . I do n't agree , which one is right ? ) Altough , no doubt about that he is much more famous than she . Becides that , we want to go to seoul tower . I have never experienced eating outside , so I want to try a street restrant ^ ^ Nontheless , there are many buildings here that are several hundred years old In software business , English is one of the most important languages because almost all majar software is created by the USA . Technical documents are writen in English . The time for enjoyning the blooming flowers this summer was so short ; I felt sad . It is Kansai - dealect . Plese help me with my English . I had a goot time with the little cute girls . The TV program is going to be on until 0 : 55 a . m , therefore I 'll have set it to telerecording ! I was going back to Tokyo form Izu on Sunday but I could n't because of tunami forecast caused by Chile 's earthquake . Railroad campany decided to stop all their trains until 5 pm on Sunday . Many news sites provide us with vioce files and scripts of the everyday news . Nevertheless , some companies still take advantage of the Japanse with ' English complex ' to advertise suspicious items . When I see a sentence or a word , I can remeber the meaning of it . The king said to one of his sarvants if we bring one day from Janually ? `` Janually is an auspicious manth . from Feburually ? `` All children have dreame . But I think a lot of college students do n't have dreame anymore . I bougt some English movies . I do n't know what I sholud do . I thought I had to spend time at McDonald 's or a place that is open for twenty four hours like Karaoke box , but luckily I found a private room at a net cafe even though rooms at the net cafe do n't have any locks and it 's a little diffcult to sleep without thinking about security . I had a banquet today in Japanese restrant . Probably , the pictuer makes me who I am . I believe my dream will come ture . But now , I noticed that I 'll be having my presentation tommorow . When I was young , I read through this comis . I am happy today , I can spend time checking e - mail and reading English books . I can write English too . Tomorrow I must arrang a document for the employees in my company I have a job far from my house so I must feel tired every day when I get here . Before I go to the company I cook food to eat there . I ca n't cook a lot , just omlet . I must read books befor I sleep today After watching it , I bacame positive , and I think It is important to do n't be afraid of anything . Her director recommaned her to quit because he thought that her work was not important and that the other staff could do it instead of her . I have a boyfriend who is younger than me . He is 6 years yanger than me . I was in love with him a lot in the beginning 3 months but now I am confused whether I love him or not ? We have been togehter for 7 months and we stay with each other all day . Recentely , I have had a problem with my neck after I hurt it 2 weeks ago . It is very usuful and makes it easy to write English diaries on the train . I want to become a translater especially of the movies . It will be so hard wrok because words that translater can use in a line is specified by the rule of translation . I do n't know how long I will spend time , but I want to become a translater Well , I 'm going to buy some ingreadient for our lunch after this post . In this country , foreigners ca n't buy flats except condoiniums which are super expensive . But there are many foreingers in Singapore , and accordeing to some websites , 45 % of people in Singapore are foreingers . In Japan foreingers still can rent rooms from real estate companies . It 's defenitely because many people want to live in Singapore for the rest of their lives . I know that English is supose to be people from England . Is this correcte ? Learning a lunguage takes / requires patience , motivation , and opportuinities to use it . The mouse ' name is Chu . I creatived him . He can fly because he is a supermouse . He knows he is speciall . They should have considered thier plan more carefully . I had a vaccination against flu today so that I wo n't catch the flu when I take the entrance exams for univercity . I actuallu like having an injection , but it hurt much more than previous ones I 'd had : - ( I have to have it again next month . . . ) Also , I want to know which Japanese grammer I should introducefirst when I teach survival level Japanese to my foreign friends Today I went to a Ykitori restaurant with my family . coated with a sweet soy - based soysauce called Teriyaki Sauce . Do you I can gurantee there are no young Japanese people who do n't know this song I read a few peges , it is very interesting ! I 'm looking foword to continue reading . My recent waorries are that it is too hot in Japan , and my back is aching . . . . . . He looked embrarrassed because I did n't get angry before . `` The Academi consists of many departments : The Academy also includes / There is also the Institute of / for Advocacy and Municipal Law , and the unititute of European Law . Professional educators * who have Doctoral and Canditate Degrees give lectures and organize tutorials . * more formal ( The ) / Graduates work as officals in central and executive bodies of power . Some graduets later / eventually become judes , prosecutorrs , and lawyers . I was amazed by how realistically the auther described the thoughts and actions of the main character . What 's Pirete English ? When I was trying to chenge the language from Japanese to English on Facebook , I found some other `` English `` es there . What I saw on the screen was really unfamilier English for me . In Japan , customers always come first , so we have to treat custmers like a god , so that kind of thing ca n't happen . But I 'm sure many people are atressed out and really want to relieve their stress , so I also think he is a hero ! ! Other members did n't want to dress up as seafood but nobady stopped him . Before I passed them my clothes , I throughly checked in my pockets , and I found about 60 dollars . Children could carry out experimentations . Yagyu pays for other reguler customers to eat food and drink alcohol . Since then , he has n't liked to drink and thinks that his vice is drinking alchol . They like to cook with suger . Sometimes their dishes taste a little strange . And I must mention the terrible traffic , Bangkok has the worst transport system I konw . For cities other than Bangkok , the situation is much better . Other cities are queit and beautiful . Time is useful and life is beautiful . Someone told me that and I beleaved it , Although the weather was hot , I feld merry . Because one of my French friends said that she will go back to Frence soon , so she asked me if I can take a leave and go to Taipei with her . After I filed for a leave , she told me that she needed to go back to Frence earlier . I felt Ireally happy and sad . These days I am busy because I have a lof of work to do . Her American jokes make feel happy and I think it is the defference between American jokes and Japanese jokes . We visited almost every city in Holand , but by far the most beautifful was Amsterdam . Now we 've gained more experience , I would like to travel again some more . Today I helped a friend with work from 5 PM unitl 8 AM this morning . in my corntry you can easily buy the `` fake `` thing . I took a pictrue . they were my favourite cigarretes . ( I do n't smoke anymore . ) They were `` run out of , `` `` put off , `` `` put up wih , `` and `` put up , `` but since I did n't know their meanings , I could n't make sentences . Yesteday we had a hanami patry , it means a ' cherry blossom viewing party ' in Japanese . Most of the partisipants of the party were working everyday on weekdays , so ( naturally ) they wanted to sleep on weekends . We shraed the only blanket and drank lots of whisky to endur the cold . We often hear that foreign people living in Japan are suprised by the Japanese train system . Today , I received a phone call from my family , bceause of the big erathquake New Zealand had . I found Lang - 8 to be interesting and very helpul to improve my English skills . I was very exicted about the after party on a boat . So today I called the Apple suport center . I like to read books . If it 's literature I can get into the story , if it 's society books , they can sugest to me ways to benefit not only myself but also everyone else . But today , I just studied English . My neme is Shogo , graduated from Hiroshima univercity . I 'm good at creating new plans and unipue ideas . When I become a working member of the society , I want to make full use of my creativity and recieve others ' opinions to make things better . weil es vielen Gegenden gibt , wo es selten regnet , und wo die Menschen immer an / unter Wassermangel leiden . The quality , the art , the charactors ' emotion . I want my writing avility to improve so badly . I expact / hope that my English and Japanese will improve . The Lucky bags , called Fukubukuro in Japanese , are very populer . . . URL I 'm an interior designer , but I 'm working as a market resercher now . . . . . . . . . Unfortunately , one yeung couple that sat near us were very impolite since they were discussing the movie very loudly , this behavior is very irritating when you are trying to watch a movie . She released her new alubam in Japan . One of the remakable sub - plots is that at first , humans created robots for themselves , but at the last , it backfired on them and the robots nearly destroyed all humans lives . My hobby is listning to music ! I want to study English to comunicate with lots of people who can speak English . I intoroduce you to my dear pet . My familiy has a cat . We decided to keep it , because we throught it was sad and loved the cat . We throught it was a `` she . `` But I ove love love him . I wunder what is your opinion , dear reader . . . time after time , unusual things and coincedenses occurred more in my life . nearby the river , there is a resutanrant that served pizza straight out from the oven . Self - introducation ! ! I can help you with correcting your material written in Japansese in return . This company continued aggresively overseas marketing , and as far as I know , today is opening day for this corporation in Japan . I desided to study English again to accomplish that dream after I enterd university . I thought I was not good at English , so I relearned it starting with the fundementals , such as pronunciation , grammar that I learned in junior high school , easy vocabulary and short phrases . But I ca n't do that forever , I got ta make my new gole . Einglish is very hard . He will massage my muscles and stick needles in my neck , sholders and back . The area where I am living is arrounding with many apartments and residents like me . It 's not the time for writting a journal otherwise I ca n't go back to my place and sleep peacefully . I had a deep talk with my pshychology . The reason why I do n't rue the past is that I think no matter how much we try , we ca n't undo the past , at least with contemporary technologies , and there 's no momoent when we did n't choose what we 'd done . Usually it is rainny , cloudy and cool . Did you see the movie Karate kid that rencently premiered ? However , I am in Singapore now , it is clean and safe here , sorry poor Japanese workers , `` I AM IN SINGAPORE AND I AM WORKING NOW . `` You guys will have to wrok so hard and for a long time as slaves , no worse than them . I felt shameful while watching the movie , this movie showed foreingers how disgusting the Japanese culture is . That is why I worte this letter to you . Though it is the big city in the north England , I hear that living expence are low and the people there are friendly . Oh , it is not determined yet wheter I 'll be employed or not ! now , I am studing English . I can read English books which are writen with easy words . As expected , after the anouncement by the health minister about swine flu , many people ran to buy masks . I went to a study group , so I could study for the midtern I have next Monday . We studyied for over six hours and afterwards , I was so tired . That is becuase , in one hour I am going to see a foodball game and after the game , I am going to eat at a friend 's house . I decided to enter the Chinise speech contest this October . I 'm working at an English conversation school as a front desk personnel , but my English skills are n't good enough so I ca n't comunicate with the native English teachers . I saw on the news that many contries are praying for Japan , and give us aid ; money , foods and so on . Sometimes genes have a great influence on children , but the quality of upgrowing at home and teaching at school would be more important . It 's a piity that I have not found this webside ealier . My son has been in the hospital for 9 ddays with a serious diseas . I want to speak this beautyfull language ! And our school has farming class , so some teachers have to work in the domitory , but when my son enters erementaly school , I will have to to do night duties . I wanted to talk to other Japanese morons about how big Australian cheeze bugers were with a stupid face . But when an Australian Chinese staff member brought my meal to me , I was very disappointed with the Austrailan society . I gazed / stared at the cheeze buger meal for 5 seconds . When I started talking about the weired news , I found him under my table on the floor . I have been finding books writen in English for my studies . Reasently , websites introduced a lot of books and digital books . Resently , free digital books were introduced . Digital books have many good points , for example the digital dictionary soltware that we can use in digital books . This April , almost all my freinds are starting to work , so we wo n't be able to meet and drink easily ; but I hope that we will meet and drink a lot together again ^ ^ They are precious freinds to me . Today Threre is a fireworks festival in my city . But , now I think this is good for me , I 've kept studing harder than usual since that happened . Merry chrismass Dear * * Assiciation Staff I want to become a menber of the * * Association , and I have attached an application below . I 'd appreciate it if you could registrate me by Jan . 5 . I have a lot of hoemwork , and have to make a presentation . . Yesterday my boyfirned and I went to a nice place . Although it had been only thirty minites since the festival started , the lobster was sold out when I arrived . . happy they understund each orher before they had problems and I 'll be back on Monday , the other members will be back on Thesday . I wish I could get paid - holiday for thesday , but I ca n't . I 'm looking foward to going next Sunday . Everytime I go to bookstore , there are so many foreingner . So I belive that I alreay know English grammar . I 'm learning a group of vocabulary to be acusstomed with it efficiencly . Schocking LaLa mountaion trip We got stuck in a traffic jam on the way to LaLa mountaion . cockroack ! ! ! I could n't belive it . We killed ` ` five cockroack ` ` that day and retained the ` ` corpses to show to the manager . Of course , this sence of security is one of the attractions of Japanese way of life but unfortunely we often behave the same in other contries as we behave in Japan . but it 's very diffiiculty . I think my reading skills and vacabulary are good so I 've decided to write a diary in enlgish on this side every day . A part - time job will start tomorrow and school todays will startthe dayafter tomorrow . I am reminded of Steve Jobs , the CEO of Apple Inc . , who gave a speach to his investors while wearing jeans . Yet , Engglish as a second languge is so hard for me . There is a very interesting phenominon in Hong Kong . nippel & pacifier I 'm not netive speaker of English , and I do n't like talking people who do n't know well either . Fortunely , I like to go on journeys alone , so I made the decision soon after . To make maters worse , the cost of transportation fees is very high ! ! Since then , his mother has slept in her son 's bedroom for around one year , even though my patient 's daughter recoverd long ago . I 'm studying Japanese , but suddenly I wanted to write an entry in Englsh . but , after I came to University , there was no reason to study Engilsh . So , Aftter work I did a relaxation exercise at home . That coaches ( or instructors ) are two beatiful ( ravishing , gorgeous ) women . For eample , I 'll read a book , play on the computer , wash clothes etc . Hallo , everyone ! The invention of the computer brings us a techological innnovation . Obviously , our life has changed enormously by the use of comeputers . I like reading comics and watching moveis in my free time . If we had few vending machines , Japan would not have nuclear power plants and less accidents such as Hukushima would occur . It is unbeleavable . We never wear coats in Sempember or October . Even after my guraduation , I will still often go the cafe . Because my grandfather and grandmather were Finns . These stories contribute to the understanding of Japanese Arkeorogy . Thankd ! One of the Japanese formula races , Formula FormulaNippon , takes place this weekend . I stopped for 2 years and started playing piao again but with a different teacher : ) But I am scared of her during teaching sessions , because she gets angry easily and tells me to use my brain propely T _ T I found this website in a magine . And surprised to see so many people here speaking several langues . Do I use this site stedily ? Being nervours easily is my drawback and defect . I tried to read ' Heart of Gold ' by Niel Young . Cleary , I lied intentinary when you asked me wheather I will study in the USA . I have Eglish class , Math class , piano class , and Chinese class . Anyway I do n't know wheather I can continue to post diaries . I also try to read paperbag ( ? ) , do some walking for my excercise , I have studed English a lot every day , but I can hardly speak it . I ca n't easily / comfortably make sentences for converstations Because my school work is interesting ( very fun ) , so I 'm having good time , but I will have to graduate from school nexy March . I do n't have cofidence but I do n't want to change . I went to Canada to stady ( the ) English ( lunguage ) . I hope to speak Engilsh very well and to speak to peopel from all around the world . I live in Vancouver , it 's an intersting city . It consists of 8 witing test which will take about 17 hours and 7 multiple choice tests which will take about 5 and half hours . A 2 - hour witing test on civil law , a 2 - hour written test on civil procedure law , and a 2 - hour written test on commercial law . I have consective three days off , but I recently stopped jogging for a while 'cause it 's too hot and muggy these days . Today , I find this web when I look over the web of my friend . I find that it is real usefully for our to improve launavage leval . I 'm very happy that I can express myself here . But we can not descide on the country . Last Sunday , my Tiwanese friend . . . ( And it was the first time for her hasband to eat beef tongue ! ) Yestarday , I ate and drank with my sister and my boyfriend at his house . he cooked Cold Shabu , lasagna , and fried chiken . It was verry delicious . I can bring some spring rools and clues . ( clues ? ) He was teaching a half year seminor of gospel piano and he invited me to join . ( It was not for free ! haha ) The concert was very good and it became a pleasent memory for us . There was an aftershock and the builging shook like pudding . And the ' progressives ' insist that the conservatives are using the death of the North politicain to strengthen / improve / further their political position . Then , a jentleman from a foreign country escorted me . I 've always wanted to become an animator or illustrator , but right now I 'm studying junralism . First , the acters performed the process of dying with horrow . Second , the special effects were added to the prelimiary video . Illustrators put a worm 's mouth on a hapless guy 's head and then let more worms swarm on his bory . . . But my friend said , `` I want to meet thier request . Culture is always changing , is n't it ? Of course , I like scienece but I really like English , too ! The hearting system in my house stopped working two weeks ago . It has pictures of sandwitch uploaded on it . There are many unique sandwitches which were designed using ham and cheese to look like something . My boyfried washed the dishes after dinner ; that 's nice . One of my collegue will be transfering from Fukuoka to Tokyo . After transfering , he will work at the headquater of Japan 's Air Self Defence Force . The students in the class congratulte him on this great news . I seem to always get into this stuation . While listening to music , we can eat american foods such as hamberger , spaghetti , steaks and so on . My dream is to go to carifolnia in the U . S someday . Nintendo shipped 400000 game consoles , and almost all of the distributers were sold out within two days . I thought they are famus thai foods . . . . crowded with old people , young people , men and wemen in spring or summer . Basically , the problem is that it 's difficult to answer with accurate grammer . Well , I will do my best ! I 'm not sure hou well I can do . Maebe people live within the foreign country for a long time . Mariners starting picher is Doug Fister . I like his piching style . I enjoy these programms a lot . I was bit afraid to watch without writen help . There is comedy and rommance in this show . This sunday my French reiend and I will play badminton . I redistered at this website today because I wanna brush up on my English skills . Well , I 'll write my next dialy soon . : ) I went to a chainese restrant with a friend who is chainese . I mean , he gets his money from pearents . It will be releaced as a film in 2010 . 50 years ago ther was another enormous earthquake in Chile . I saw through their sad or pathetic eyes so I desided to ask why Recentry , ihave not beensleeping well , so I took these drugs . Sometimes we use foam balls or styrofoam , and when there is n't enogh money , simply wrinkled newspaper sheets . On top of that , local governments relatively far from Fukushim prefecture recently bowed to public pressure and finally started more detailed investigations on radiation levels . Many typhoons come to Japan every year , especially in Kyusyu where I had lived until after high school . When I was child , I felt happy when typoon would hit Japan because school were closed , so I did n't need to go to the school . I went to bed hoping that tommorrow 's typoon be very storon and it would bring much rains in this area Of coars , he was dead . I remenber him whenever any typhoon hit 's Japan . Weather forecast is currently saying that typhoon would hit Japan tommorrow . Today I 'll explane why I 'm studing English . While I was at work , the sound of an explosion surprized me . Thank you for readeing . I plan to travel to Thailland next February . And next , I will try to find very , very cheap fligt . I 'm looking forward to visiting Thaillan . Recently , many water acciedents have appeared around me . The flow of the water was stopped because of the wastage of the fileter . One of my dreams has came true , and of course I will continue to persue my other dream ! ! ! I bought 4 packs of Sushi and some dilicios beers . My neighborhood has a gohst . That is to say , it 's a scar of golry ! if you ca n't get a satisfactory score , it means you ca n't go to the topest I can write my mood or interesting things in freign language everyday . Yesterday , I went shopping to buy a present for my collegue . Please give me your addvice . I was very supprised to hear that . The weather ( news / report ) said `` there wii be snow `` . The only things that I need to do are to take the ingrediants from I am Biqi , and I want to study bouth English and arabic . However , I am rather inept at bouth . I sudied English in college < a very little bie > But now I realized GPS systems are very useful and even the cheepest one is very relieable . Very delicious sushi are very expencive . As a matter of fact , I could hardly liseten to what they were saying , because they spoke so fast . Actually my pronounciation and intonation ( ? ) were quite weird . Everyone in our class was laghing out loud . I called the ETS lost and foung office and left a message according to the directions . So far , I did n't get a call from them , but hoperfuly they will informe me soon . At 5pm , we met at the classroom , and walke to the pub . Some of them including a Swiss guy who organized the party for us , a Chinise girl and a South Korean girwould were leaving Edmonton soon so we took many pictures . I revewed her plan , which was for a server hosting company 's website renewal plan then I made a report . It 's a really nice place but there 's someting a little bit troubling . . `` It is a good daily practice for me , so I can study Englsih hard at the moment . Even the pleasure boats on the Tosabori River were coverd with jolly lights . I happened to see the lighting ceremony , and a governer of Osaka . my student got driver 's lisence . The K - BOX has a free car service , so we took the car when we went there and returned bakck to school . I think that life can be very hard and sometimes very sumple . All of them use English or Chinese or half and half , I am not sure , so I want to hear to your suggetions . Second , I have sent all the agents ' ( have the VIP status ) full names to you , plese check them . After that , could you get back to me ASAPA ? I also want to drink bowls of gruel and eat steamed buns , which are not easily foung at night . To become a skilfull computer user . I 've heard that Japanese tend to follow the mojority and reject anything different . They always accusue me of being too stubborn and tell me off that why do n't I accept other ideas . Inspite of his class , a Japanese professor ( actually he was a vice - president ) came in and started summerizing his story , even though he had 10 minutes left for finishing his lectture . I saw the professor was upset about that , so I raised my hand and said to him , `` The professor seems to want finish his lectture first , so could you talk later ? `` and I stopped . Afterward , some of my friends came over to me and started critcizing me for it . They asked me why I did that thing to a vice - president , that was too inpolite and so on . However , I also think it might be not about Japanese culture , just anout me . I usualy try to take a nap , study English . I lack exersise now . Now I am dying to learn English , since I will go abord to study next year . Today is 16th of April , but it 's very cold , so I 'm wearing a winter jaket . A Nurse of Indnesia . If I could polish me . . . . I do n't like examnation even though I know we sometimes need them . I think everybody is born with thier own abilities and posibility . They really wanted to get a nurse lisence and wanted to learn good Japanese . But we have a lot of work to helping our patiens . I know that they were sometimes comfusued when they could n't understand quickly what we were saying in Japanese . Essentially , when we intrduce people from another country , we must help them to feel comfortable living here . They say it is too difficult doing both work and studying a second launguage . So , I brashed my teeth quickly and got ready . I went to a Krean restaurant today . I love Krean food . He also taught some tougue twisters . I do n't know foreign songs well , but I like `` Red Hot Chili pepers `` . I 'm looking forword it : ) So I do my best to study English , and I made it a rule to keep a dialy in English . This term , I shall keep a dialy . But unfortunately , I do n't know any classes for begginer . The Japanese government sent her some gifts to show our gratitude because she donated a lot for Japanese people after the big earth quake happend . I read a lot of aricles about Michael . Another of Guiland 's popular destinations is Fantas , which has a musuem that shows what life might be like in the next 100 years and also has many shopping centers to enjoy . My native language is Chinere . I hope I can help someone here . I have a chemistry experiment at my univercity on Thursday and Friday . Unfortunately I have n't had any weekends to slow down a little , sit down and relaxe . A long bath and more than anly 5 hours of sleep are the things I need the most . I think I did it badly when I chatted with you the day before yesterday . Maybe it was first time that I had communicated with a foreigner . When I wanted to say something I searched the related words in my mind , and I could n't expressed my ideas properly . . My voice and intonation may be abnormal , I did n't know whether my speach was sounded a little impolite or something bad , if I had , I ask your forgiveness , I did n't do it intentionally . We helped him in meak the dumplings , but when ( all the ) people arrived , we noticed that we did not make eoungh for everybody . I will go to my friend 's house instead , and maybe we will drink a beer or some other kind of alchool . I wathced the movie `` TRON `` last Sunday . I 'm going to have a Cristmas dinner this year with my host mother , who I have stayed with before . Last weekend I was going to get her family Cristmas cards for Cristmas but I could n't find ones that I liked . Last month I asked my firend , who is coming to Canada on December 1st , I got a sunburnt the day before yeasterday , and later bought aloe vera to treat it . Christams is a big deal for me . This summar vacation I have always woken up around lunchtime I am intrested to learn English = ) I am also intrested in Japan : I want to learn a bit of their language ( I 'm registered here for this ) and its culture . . . Then , we went to a Tailand restaurant . Although it was horror and I wanted to sleep , but I still finished all of the movie . When I went to bed , my mind was full of images of blood and guts ! I should not watch horror movies at nigt . . . . . . . . But in the moring it is very comfortable ! It 's my frist daialy . I must say : Chinese food is so good , expecially in Taiwan . But my wife belonged to the brass basnd in her school days , Althought Science and Politics have been developed suprisingly and Our lives have been changedto be mademore conviniently , we are not satisfied with now . It will be a really short saty . I suggest drinking coffee without suger . I like watching moive with my friends . Wakayama is an old town with a beautiful casstle built during the feudal age . To sum it up , VCS is a really a usefull tool to backup the computer 's files automatically and smartly . I do not kown the answers at all . In fact , I really want to impruve my English . the title was `` ON Long distance education . `` oh , really diffcute , right ? The day before , it lasted untill two in the morning , so yesterday my husband wrote a letter and put it on his door . I thught that I could write in Japanese here and then it would be translated from Japanese into English . I went to chainese restrant with my chainese friend . After that , I teach japanese languege for him . I 'm a shy and unsocialble person . After I finsh my English lessons , I think English is a language used to express somthing and Japanese is Today , I attended a conferance . For two days now , my wife and I have been walking to the park early in the morining The right one in the photo is Maccha Azuki ( green tea and red bean ) , the other is rainbouw : D Today , I had seminarys during afternoon , and evening , I 'll return to college for more and more seminarys . I think , writing here is more confortably for me , because I can think in English much faster ( Yatta ! ) . Watashi wa supein ni umaremashitaga kodomo no toki , irelando to furansu nimo sumimashita , sonotame , eigo to furansugo mo sukoshi hanasu koto ga dekimasu . Watashi no otosan no okage de , nihon no bunka ni kyoumi wo motimasita . Boku no nihongo no reberu ni stuite , takusan no kuni ni sumimashita node , betsuno gengo wo benkyoushinakereba narimasen desita , demo daigaku ni benkyousuru koto wo hajimemetatoki , hitori de nihongo o benkyoshite imasu . watashi no otosan to watashi no nihonjin no tomodachi nihongo wo renshuu shimasu , rainen waseda no daigaku ni ikimasu dakara ryuugakusei desu . I went to a bank to get a financial stamp to apply for a teaching lisence . That was ture . Have you ever had any big dissease or injury ? I really enjoed it ! I 'd like to go by car , but my car has been broken sinse 2 days ago . I hope it will be repaird as soon as possible ! ! I want to speake English fluently like an American . I dicide to go to America as an aupair this Summer . I 'm gioing to visit one preschool this Thursday . But I 'm a beginner at English , and I have Inever been to England before . But in this class we did a wide range of activities using english . For exaqmples sang songs , role played in front of the class , didyoga while following English directions and so on . Also , it would be great to studdy another language , maybe italian or a slavic language ( Polish , Serbian , Slovenian etc . ) These cultures are intresting for me , and the words ( are ) not so hard to learn , I think . Distance is not probrem for me , because it only takes 45 minutes by train . But the train ticket is expencive for me . . . It was quite expencive , but the atmoshere was nice . This is the reason why I have not been sleeping well recentry . I am a colleg student . Nomally in Tokyo , this occurs at the beginng of April . Japan has a long and glorious histroy , good public safty and a strong army , Tokyo is one of the biggest city in the world , Japanese science technicians are the best `` . The Japanese gevernment and companies really know this fact . Having such a life for one and half years , my English skills decends . Because , there are n't famous Japanese celeblities in America . . Maybe Americans are not interrested in Japanese celeblities . I do n't know why Japanese celeblities are n't popular in America . A funny guy from Russia said that he realized Japanese women walk with short steps , and he tought that it was because Japanese women used to wear Kimono . A girl from Sweden tought that it was because Japanese women usually wear high heels , and so they can not take very big steps . My favorite mounths are October , June , July and december . Everyday when I wake up , the first thing I do is to power on my laptop and log into QQ ( It is a software like MSN , in China it is the most popular instant messenge ) . Have you heard or thought about the size of the vocabulary of the average naitive American or British ? I think the most important thing in learning a new language is to memorize a lot of words and idioms untill you are able to read a newspaper without a dictionary . I 'm going to pick up noe of my friends at Nriata airport . I put emphasis on human resorces development . They seemed such kind and comportable people . I did n't neccesarily take the exam light . Unfortunately I was too hungry , dizzy , sleepy and sored in every part of my body The oscillation continued for more than 3 miniutes . Of course , it will be more expencive but it can take more time . 0 It 's not confortable to live due to the bad plan of the house , even if we have some house renovation . Gaga is at least being ture to herself than those who mock her and those who try to be as bewitching as her . I could n't contact her but I guessed I could meet her if I went to her restraunt . Yesterday , I took part in an actibity in my circle , university COOP . Then , Shinobu Moromizato , who was the second money list player in Japan , appered behind us . Though she is the same age as my yonger daunghter , she is very coutesy . However I did n't buy anything because I did n't have any maney on me . So I replied to her on what I had beeb doing before and asked her what she had been doing too . Straight after we made an apointment to have lunch together . We spent the time just talkig , using a lot of technical terms and eating a lot . Forgetting their daily lives , two mothers enjoyed thier past golden days . We had grilled chiken there . Especially the chocolate cake they served as a dessert was excellnt ! I think , I will sleep all this weeken like death . I normally get excited to see this unusual weather in Tokyo , but this timeI I hope that it will stop soon . They tasted good , were healthy , nutritions and warmed our bodies . There are sentences , which use both `` that `` anad `` which `` . I am wearing a short t - surt , which has blue and gray stripes . It was ver fun . Secondly , without mobile phones we can spend more time with our amily . Thanks to the mobile , we can easily keep in touch with other people , make apointments and speak with long distance friends . The mobile phone is not only for talking and sending messages , but alsof for enjoying music , taking fhotos and gathering information . I was watching the final with nondescribable excitement . It 's rainy today in Kyusyu in Japan . Acutually , this is my first time coming to the US . But a littel far away from the port , there are a lot of hills . If the flower 's leaves are a beautiful green colour and the corola is bright and pleasant colored it tells ( OR : shows ) us that the flower is alive . I think that talking with sby is a good way to get to know ( and understand ) each other . I want to be a high school teather . Because I want to teach sience to students . When I was a high school stuent , I did n't like sience . I went to Barcellona by ship two years ago and I have no words to explain to you or , at least , to try to explain what I felt on that ship . My psition is forward . my english is so pure that I wnat ( want ) to ( make ) some friends whose mother tonge is english . Because Janan has isolation policy from seventeenth to nineteenth ( centuries ) , Janan was not influenced by foreign countries / foreigners . Lastely , he mentioned Japanese AVs ( adult videos ) , which are considered to be pornography . When I dehulled the peas , I dropped one pea . Japanese tasete seems too light for him . At last we went suffing . Now I 'm here writting my first posting , saying hi to all in this community . Also , I 'm intrested in music . I hope that I can do a perfomance on stage of their songs after finishing military service . Sharing thoughts , opinions and my photos with my close friends is really fun and intresting . So does it mean that I should n't go to Austlalia this year ? : p My husbant 's mother grew sweet potatoes last autumn . If there is anything I regret about choosing to be a law student , it is that I underestimated the proportions of civil and bussiness law in the field . it is so hard to spend enogh time to do what I have to . Each of Japanese cake had a lovery , colorful shape , but 800 yen was rxpensive . I said , `` Will you plase sell me just one of these ? `` The saleslady said , `` of couse . `` Because I 'm a Japanese , she might have been nurvous . Therefore , I guess our company recognized her skill and actual achivement and offered an extention . I have to get lime sulfur ! You can get some information about the earthquke in Japan from the URL below . I think that his is earier than mine ! ! ! The topic of this saminar is export documentation . Watching movies without subtitles is my way of studing English . American , British , Eest courst , West courst , etc . I believe that their writing abilty is probably equal to their speaking one . But his English pronuncation was terrible . ( I 'm sorry . ) Recentry I realized that writting is more difficult than speaking . I 've escaped written English tranning . Perhaps you have problems when you are writtin in Spanish because you do n't know about the accent rules ! It is a superior souvenior for me . And , I will give you a souvenior . I think I 've remembered abou 200 words in these 2 weeks . Fruits , vegetables , milk , chiken , and the ingredients for pasta like anchovies , dried tomatoes , dried mushrooms . I tansefer the fee to a convinience - store today , so the daywhich I can get it will probably be Thursday . But I tried to write somthing even though it is short or borring . The sentences , phrases and words are filled with his affection for children and nature , and his expression is so beautiful that I was filled with romantic feelings and was able to imagine each secen clearly . I have read `` Grimm 's Fairy Tales `` , and Andersen 's , but I feel that Ogawa 's works are diffrent from them , although they belong to the same category I am an exchang student , so I need host family to live with them , and also there are some exchange students in my high school , they also live with their host family . So this time they do want to change thier host family . I hope they will have new fost family soon . They should be more energetic , otherwise they might have to change to another family again . But today at dinner , she praised the cake , whtch I made , she asked me if I had made it ? Novac Dokovic became No 1 yesterday by advancing the finals in Winbledon . It was said that he is the etenal No3 tennis player . Bagk problem I have no confidense in speaking and writing in English . and you know what ? Japanese sutudents who are in junior high school and high school have english classes 3 or 4 times a week . and fortunaly at that time , I was really intersted in English because I wanted to be American or someone who speaks English very well , such as native speaker . I was planning to go to high school in America after I guraduated junior high school . It 'll be so woderful ! ! ! ! My dishes are surely like paella in the sence that the recipe - book said so . Am I making sence ? Some of them looked at the business hours but did n't cathc the small words on the top about the holiday information . He looked at me at onece and suddenly he scolded me about my hair color ! He could n't overlook that I seemed like I changed my identity and lost my pride in beeing Japanese . So the neext day , I had my hair cut really short , and dyed my hair black . Beyond that , I only could tell him `` Thank you for everyghing , everyghing you gave to me . `` And I left his house with saying `` See you later `` . So I decided to try to take more oppotunities to tell my friedns , my jouniors and you who is reading my diary what I learned until now . I represent my honorable grandpa . One of my classmates from college already got married last year . I 'm a little surprised becase it 's only been two years since graduation and I think that their finacial status may not be good enough for raising a family . Since I need to use my English for my job and my boss scolds me about my poor English oftenly . Furthermore , I always introduce our culuter if you are interested in Korean cultuers . I hope we can becaom good friends . Should I get married and have a family , bring up a baby , and find happinese in my daily life as my friends who look so happy do ? I got an early retirement when I was at the age of 56 after 33 years of being an electlic engneer . Since then I have beem studying English at ISS school , an English school in Japan . After about five years passed , I have noticed I have various difficulties : vocabulary , grammer , and so on . My friend told me , `` Noy , try to speak English . `` I could not hear my friend very well because the restaurent was very loud and I am not good English so I just said a bit . . Our 95 - year - old mother had been spending a day at a local day service senter . That is , I always get sleeply after I hear the alarm go off , then I fall back asleep again . We went to a good restaurantm , and had a good dinner . We have not seen each ohter for a long time . It 's ok ! ! I guess ^ _ ^ I 'm not supposed to have had anything to eat or drink , including warter , but I already forgot and drank some milk tea . I sut down there and thought about my future . If someone asked me do you like englishi . I 'm probably making some mistaks since I am ignorant about this site . The final resulf of the Formula Nippon Round - 1 The final result was not bad considering it was his first Formula Nippon race , but most of his funs expected him to win because of his experience with Formula1 . I entered a site and chatted with an English teacher through a ( mirophone ) Today I was late for work again . I was late by 1 minture . : D KOICHI ( koichiben ) and Emily ( applemilk1988 ) are youtube video bloger . They really do n't care about eenvironment . Is this sentecne correct : I did n't see my parents , because in the town fire had broken out and people must have been evacuated to save their lives . My father and I plan to tend to my garden every Saterday morning . Tought I reached my office late about 20 minutes . I am Nana , I 'm from Japan but I have been living in Engldand since August , and I will be here for another ten months . He took me to this studium for the first time when I was 6 years old . Of cource , ( space ) I can do it . We should try to get some benefitable information even if wecould n't catch some sentences . . Only the elite can enter this comapany . Fukushima newclear plant has already belched a certain amount of radiation there . My sister who tied the knot with a man who lives in Yamagata last year and enjoy their hanymoon traveling to Italy , she got pregnant at the beginning of this year . I have to pick them up at the pire soon . I thinnk today will be a wonderul time for us . It 's quiet and comportable . Already uncomfortable with muggy weeather , their loud sounds makes me feel much more uncomfortable ! In autumn , the sounds of insects such as crikets , singing crikets or Japanese bell crikets , green tree crikets , and so on are very nice . I want to know about your idea about sounds of insects from meny people from many countries . This is the first enrty in my diary . Beside that his speeking speed was so fast for me : ( Of couse my Engilish skills were part of the reason . So what can I say when sombody 's voice is noisy like in the voice - chat room ? He saied this place is a good way to learn English . But nobodey asked me why I was late since they knew about today 's traffic jam . Most foreigners think that it tast good too . Coffee beans are more effecter than Coffee Mix when on a diet . I 'm so sleeply . I 'm sure that I have a lot of misstakes . or optimistic imformation , we would n't take action propely during a crisis . I can only speak eazy English . All children , especially boys , have the experience of searching for a `` big treature `` with their friends They were deeply grieved over thier fimilies ' situation . Goonies ( name of their group ) went in search for the treature to help their parents . I think if I practice this , my grades wil increase . Now with my friends I live in a very nice house with a balkon and four rooms . We only finished moving yesterday , because on Saturday soon after we arived we started an opening party . A famous middle - aged American actor , who went to Japan for a business trip , met in a hotel with a young pretty American girl , who came to Japan with her husband , who was a busy phographer . Please read my dialy post and correct my grammer . I read the newspaper befor breakfast . It 's wandarful . I 'm looking forward to watch next 3D movie , Alice in wondarland . I have a major in Architecture , but now I develop PC software to do business for emproyees only . I ca n't speak and write Engrish well . Recently , I 've realized there are many similer words in English . Please let me konw the deferances . I like princess caracters , so I enjoyed it so much . Drivers lisence in NY A drivers lisence is mandatory in the US . Even though it is convenient enough , most poeple tend to apply for a drivers lisence . That 's because the lisence is also used as identification . I take English leeson once every week . Factory owner , who professionaly breeds pugs , said me that it is a characteristic of black pugs . I can remenber running around the surpermarket We also listened to some litlle stories from my dad 's CD ( a CD that came with a book from his English class ) , then we listened to it on the car cd - player and translated to portuguese to see who got what the story correct ! ! I have trouble writnig an English self - introduction . I was very shocked by the news about the disaster in Japan , and I could n't belieave the things that happend to my country . As a person who is taking care of chinldren , I am realy worried about mothers who are protecting their children without heating and water for drinking in stricken area . Yesterday , Mocty who is my senior student of my laboratory introduceed this SNS to me . This week I chose to learn French as my sendary foreign language next semester . and I thout about `` I want to go to abroad ! ! `` I must be more carefull or I may set a fire . Toyota had grown continuously besed on strong consumer trust . But now due to this defect , the company has been losting the public 's trust . Losing the public 's troust may collapse even a stable company such as Toyota . This restaurant has been serving very good mutton because they 've been raising the sheep theirselves . When I woke up this morning , my wife had a blak eye . The firtst diary I 'm at a loss on what to write in my daiary in ENGLISH . Colledge students produced this show and placed a lot of artistic lights here and there around town . For example , I went to Victria Peak , Tsim Sha Tsui , Jordan , and so on . I have nothing to write down anymore because I 'm exhousted and I 'm starving now ! abou me I need to ues English and Japanese to watch tv , read comics and go on a world tour . Tonight I went to a susi bar with my family . Many susi bars let you order using a touch panel . However , I realized that if I had told the truth to her , she would be hurt very much because she liked those clothes and the color . In thespeed skating women 's team pursuit , japanese team got asilver medal , losing to Germany . She said thet the Chinese are not diligent as diligent as before . I want to use the phrase `` over my daed body `` . They have had thier own schedules already . This is a photo of a man walking on a tightrope over the void against the background of Rio de Janairo in the sunset . I am really happy here . My new home is very beatiful . I am hitun ! Fuji is center overe there . I like intelligent and thoughtfull people . But they ca n't help orher children , for example , they cannothelp diarrhea children . I 'll go to the studiam next month to watch the national team . Several days ago , there were over one hundered school clubs looking for new members . sinse the sentense structure is quite different . finaly , I get out of bed at 7 : 00am . Come on , let 's exprience this amazing world : D Once a week I take a tango lesseon . When I close my eyes and just move my body to the tango rythem , First of all , I want to chane myself . He has a fatal deasease a student in his last class wrote this book . If the raiin had started sooner , I would n't have been able to have my lesson . Someone read my dairies and told me that : what your said is too chinalish . You can translate the titile as `` My House `` in English . If you want to know what a Japanes family is like , maybe this manga will tell you about that . This is because I decided by myself to announce without asking them whether my annoucement was convincing or not . Another altar in Berlin , is very simular to this one , , so much so that a long discussion has taken place on which alter is actually the original . On the first panel you can see a describtion of the birth and the naming of John the Baptist . The last panal is about beheading John the Baptist . Also , I talked with my chiness friend on skype . When I arrinved to my house , It was time for dinner . Starting this Novenber , I 'm going to go to Canada to improve my English and learn a way of teaching English called TESOL . You can see bazil , thyme , lettuce and tomate in the picture . Many univarsal students are free , however people in my circle , univ - coop ( university coop ) , will be very busy . Why does this sentence above use ' has basketball ' , not ' baskball has ' ? I 've heard that when women go through menopause , they 're more nervouse and fickle than they would be normally . I love MOS ( not Macdonalds ) . I like most fastfood restaurants including Mcdonalds but I think MOS is the best . Although I am very exciiting and I 'm really looking forward to gouing , I am worried about one thing : the temperature . Actualluy this is the biggest preblem for me . I prefer a hot crimate to a cold one . yoru ha hataraku shita . Car wash to Jollibee to Greenwich de hataraku shimashita . After the game , Okada who is the coach of Japan asked the chariman of the Japan football asotiantion if he will continue as the coach . I love this kind of moives . I want to write dialy . But I want to write dialy in English . Yesterday , my hunband went fishing and brought many fish for me . The summer vacation is drawing nere . I like to watch movies , so each year I am looking foward to see who gets the award . Why did `` Avator `` lose many Oscars despite the having the best performance of the year ? I thougt the competition was only for dogs , but everyone was there . There was also a mummy ( the dog ) and a witch ( the owner ) , and a hotdog ( the dog ) and mastard ( the owner ) . However , when I looked at the units carefully , I found the unit was KJ , not calory . It is hard for me to walk araound TDL & TDS all day ! ! Telling The program is about other TV programs I like , USA or UK drams , for exsample . About 10 seconds later , the raindrops suddenlly became large and heavy . My English is at basic or pre - intermiddiate level . And I made it a habbit to memorize what native speakers corrected . What do you recomend me to do ? One of my female freind suddenly said , The way to pratice I found this website on a discuss borad and it seems interesting . I 've been learing English for many years , but still have problems on expressing my feelings . It 's very convienient to go to other countries in Europe from the UK . It seems that it ( was ) the 5th biggest ( earthquate ) ( since ) 1900 . Munster city decided to ban cars in the city and use bycycles . Suddnly my friend said : Toshiya , you ca n't go back home because the train left a few minutes ago . I 'd like to explain Himeji catsle . In my opinion , we do n't need to be strong and parfect to I love readnig , so I love a book shop . When it 's someone 's birthday , we always make the presents by outself . there was an earthquate . By the time I thought about it , the earthquate was finished . Today when I was on break searching the internet , I found that there are really a lot of peple who speak highly of this film . I 'll be a sutudents , so I 'll have many student 's discounts . Thogh all of my friends laughed when I showed them the picutures . Now I 'm watching Macros Flontier while working . you can googole it with `` * ( asterisk ) `` . And to earch for an exact phrase , enclose the phrase in double quotation marks . Japan has diversitied climates , so there are unique local spcialties in each place . At the shop in Niigata Prefecture , the emplyees carry plenty of snow next to the shop every winter . Did Sant Claus come to you ? ( Claus is right . ) School just started one week ago , so I decided to insist on writting here every weekend . LMAO , two Americans in the audience in that coffee shop were surprised when they saw Sunnie and I going in the one bathroom at the same time , and they were also surprised that we were holding hands all the time . They thought we were lesbin . If I correctd someone 's entries , I can get ' stars ' on Lang - 8 . I want help from everyone whose Eenglish is good ! I am Nao , a japanse person who is studying in India . How dou you think Sony products are ? But after a while , some of thembecome tired of raising the animal , and inthe worst case , they abondon them . I 'm trying get in shape lately becasue I have put on weight . It might be succes if I keep deiting for a while . He also liked soju ( a Korean popular alcohlic drink ) . his cousin , owned a small yard , but there was only graveled there . But the goverment wo n't do that because they get a lot of tax income from them . . `` Calrify `` is a very useful and common word in daily life . I 've desided to dilute my passion for everything British , with American literature . I do n't know American literature very well , so I would apreciate it if you could recommend some of your favorite American novels to me . From his movie , his harmony sounds quite excentric , he used Aside from these , his appaerance and behavior is also strange . Every three days I chang the water . Today all my classes were cancled so I had much more time . This book is about a traveling essay abouy Latin America . It is so fascinating and it 's an attracitive place . In my case , since I 'm an elementary school teacher , the government adopts new teachers , we basically train by ourselves , principals deside which grade we would be in charge of , and we have to cope with all of the problems and complaints . My hobbie is playing the piano . Recentury , I made an original song and played it . Especially , I love gyo . * I especially love gyoza . How do you say gyo / gyouza in English ? Many my freiends are going back their countries in Decmeber . I 'll try hardest on grammer , spelling and pounctuation in my journals . bacaouse today is our 5 month anniversary . I practice some tirics . recentry I am crayzy about `` hannah montana `` ! We will be watching the movie ' Avartar ' . Controllering an avatar that is something you are not but represents you seems awesome . The members and I have placticed very hard for that show . As a result , it was sucssesful . When somebody eats my cokking smiles and tells me it 's delicious , it makes me happy . Please send me a messase . Good mornig ! Before she started her IMBA program , we often hang out togerher . I can tell she does n't appreciate some Taiwanese cultrue . Tonigt was fun for me . Our conversatin was in English since I needed to practice for the up - coming interview . I do n't like hollywook movies either . We played togeher , laughed . . . Of course , sometimes we guarrel , but then apologized . He was a Canadian army officer and made a fortune from the hydroelectric power of Naiagara falls . Specyfying my language goal . We enjoyed visiting Kamakra . In my next class , I have to teach a lesson , so I need to prepary a lesson plan . The first , ni2 , is generally used with colleagues of one 's age , yonger people , close friends or acquaintances . I tought them some things ! Today , I got a health check at my shcool . Notihng was wrong . Computer graphics is a very difficult field , so I often search for hints to solve a problem on the intearnet . since I had no opopportunity to communicate with them before . I finally finised my first semester in China . As it happed , that she was n't with my friend at all . Resently , I 've been trying to remain calm and to alter the way I think and my attitude about everything . And it mekes me slightly kinder to other people . Meeting with Alchol As electricity has been cut off because of the earthquake , I can not cook nor eat food which is sold at a convinience store . The best one is a baked slmon rice ball and the second best one is a fried rice ball with various ingredients . I recoment you to visit Nagashima Spaland ! By the way , she paied 170000 yen for the painting . When I went into there , we walked down a slope which went along a large aquarium , which was cylindric in shape . As the slope is spyral , it made me dizzy . We could see these fish right next to us , so I felt like I cound touch them . One day my mother took me to a psychiaty , though to be honest I did not want to go there . A big Tunami has hit Miyagi , Hukushima , Iwate , and so on . This Tunami is the biggest I 've ever seen . I experince many things this year . I ordred seeds of a flower called solube YTT . A white flower boolms ( on ) the first day , The staff cheekly tried to make him apply for the half year course which was 2000 Singapore dollars for him ( I think it 's super expensive ) . Recentry I resolved to be vegitallian to lose weight and because I saw shocking video which made me think about various problems ( I will skip the details ) . I watched a movie whose tiltle is `` Land of Lost `` . In fact , I wanted to watch the 3D disny movie , but the tickes were sold out . Three advnetures go to an anciant world , and they meet a monkey - man . Hi , starting today , I am going to introduse you to Japan . Actually she 's not a social woman , and she does n't have any opponunity to meet men . One is an Engrish magazine , and one is a quilting magazine . In Japan , I had attended a quilting class for about 5 years and an oil painting class for about 10 yeras . The climate here always changable ; There was a typhoon only a few days ago and now it 's already a sunny day of over 35 degrees ! Before coming back home , I bought the ballons and the pump to inflate them . So I was very interested and excitng ! One Italian guy said that he does n't like MacDonalds at all , and that the Italian MacDonalds is different from American MacDonalds . Then , one Korean guy said that the Korean MacDonalds has a kimchi hamburger . I do n't have a drivers lisence yet , but I soon hope that I 'll pass the test and a get one . But getting a car lisence is quite hard for me . Because I am worring about slamming and crashing with other cars . fortunaly , that has n't happened yet , and I hope it never will . She is supposed to stay in Arlinton in Massachusetts . I think it 's very cool , if I could watch the english movie without undertitle written in japanese . And I believe that , if I do so , finaly I can make a extremely beautiful girl friend . It 's only 12 : 26 and I ( already ) wana go home ! I wana try the real full - course French meal , or whatever you call it : S Recently , I could n't wrote a dialy in English . I think that this has a nice sence of rythm . XD So , I have to overcome this psychological obsticle . . . . . . . First , I plactice speaking in english through videos . Then , I wrote an nessey . Today 's topic is `` a park near my homw `` . Today , I had a tea party at Yoyogi Park in Tokyo with some memebers of Tokyo Toastmasters , the local activity group where I can learn how to do public speaking . The movie was very enjoyrable . I recomend you to have fun in your own special style when you see a ' colorful ' movie like ones Disney produces . ( Could also say : I feel comtrtable and at peace when I take them . ) Of course , I knew that I had no choice but to learn a foreign lanuages if I wanted to be successful in the age of globalization . We all close our eyes before starting the game , but the thieves can raise their heads up , open their eyes and look at each other to find out who the other theives are . After we begin the game , we guess who thieves are by discussing like `` You must be a cop `` or `` You must be pretending . `` We discuss for 3 minutes and poins at the people who we think are thieves . A lot of intelesting andspecial TV shows are on the air in December . I 've justbeen so busy that I could n't finish watching ( and deleting ) the recorded prograns ( T _ T ) . I applied for a position and went to an inverviewed last Wendesday . Today , I made some sentences using dialog typing for learning I inginterrogative sentence . good moring everybady ! Last night my freind came to my house . she first staied at my home This moring I made her breakfast . beaouse she thinks I 'm a good cook . I wasted 2 months on my dissertaion period . . . I woner if my students will like it . From now on , I got to have snikers on for a while . I like me as I am nowadayas . I want to try to write some of my thoghts but unfortunately , I have n't read anything recently . Including me , most Japanese are parhaps good at Listening and THE DEATH OF MICHAL JACKSON And my oral Englsih can deal whith some easy topics . What 's more , I have also begun to read Englsih novels such as ' The Red And The Black ' and so on . Some people sasys It is n't practical . . . Even though I 'm using this website to improve my pronaunciation , in the following passage , I can never pronauce the same sounds properly . that 's the reson I do n't know where I should put my tongue for each sound even if I hear native English speakers saying it . The first half of the story was really overwhelming and the advent of the monster changed the taste of the whole movie , I thougt . Then I had INARI ZUSHI and mashroom Salad for lunch . I was not tired becasue I had taken a nap . And my neck is very good doday . However my friend whois going togather with me says that a natural disaster may strike evrywhere and whenever . We ca n't epect it . Since I have the experience of beingkept in the elevater by blackout of due to lightning . I am really nervouse about these kinds of things . Some of you might know that if you go overseas or make a foreign friend , it 's a good thing to have knowlede about your own country 's traditions because some people are interested in Japanese clture . It 's a Japanese traditional food eaten on New Year 's Eve and it 's said that this custome was started in the middle of the Edo era . Second is the belief that eating the noodles will cut off your troublesomes instead of carrying them over into the new year . I will be nuervous ! ! Anyway I try to set up my uccount now ! ! Are they diffelent ? The very quick responce really encourage me to study my writing skills ! ! After Gladuating university , I had worked as a chemist in Japan for a couple of years but quit the job to study English . I studied in Canada and Engladd for over one year in all . After that , I became obsessed with English becouse I met a lot of people who come from various countries and learnt about different culture , history , food , and ways of thinking . ( If I had known the water in a pool was acutally shouder height ( or : shoulder deep ) , I would have tried three years ago . ) Anyway , I decied to give it a try and now swimming is my favorite sport . I hope to make my English more fluent so that my English would no long be an obticle when talking with others However , there 's good news espeially for me . The book was written by a twiiter user . The book store near my house had a bargen sale up to 50 % . He told us that proununciation is very important in the learning process , but he said we need n't worry about our poor grammmer , because just about nobody will care about it when you are just chatting . Except for formal situations . There was a beautiful yong lady in the show that was forced to leave her lover unwillingly . I know that it 's better to turn off the Japasene subtitles , but if I do that it would be hard to keep watching the movie and have fun . If I do n't watch them regurally , then I will not be able to improve my English ability , so I watch them the way I said previously . I feel that my vocabraly expands / grows by reading Englsih subtitles . When I feel that way , I bring myseld into feeling that I want to write more entries here . and I am really looking forword to these events . ^ ^ I have been looking for some sites which are better than this one , somehow , I still couldnt ` t find one . * Increase the hability to concentrate . When we got out of the attractions , I found that my unbrella was stolen . Although practically the number of peple who are wahlers has been decreasing in Japan , some people who live in these specific areas continue whaling to make living . just that it is more difficult to find the time to learn compared to when we are studens . I think that the student who recognizes the importance of thire privilege can make use of thire college life for sure . Are Japanese elevater the only ones that have a door crose button ? The opening sound is really familir . I am earger to go to a theather and watch it . However I noticed him in the trailar ( maybe , full CG ? ) . Hi evry one ! I want to improve my inglish skill ! Thank you evry one . Insidentally , our opponents were much stronger than us . I could n't believe my eas . It sucked . And you are very good at drowing pictures . I can crearly remember Melbourne . Be hournest , it truely works . I am studing English at SDA . Why do n't you just fill the fucking vancancy ? Why do n't we just keep silent and let time fill the vancancy . Hi , I 'm a student for product design 's master degree , and I have complated a work Iicall it Finger Dance , which is a kind of dIgital communication equipment for cold evironment , and be suitable for outdoor survival and rescure in the ice - disaster or snowstorm . welcom to my blog to see my other works : This is the first time that the DLP lost thier seats in last 50 years . - - > Now I have started `` The Namesake `` by Jhumpa Lahiri , which is reall interesting so far . ) I try to stay fit while not using cigarets . The pair of shoes I bought are Nike brand and they are avairable with the iPod plus sensor . When I was a child , I heard from my grandmather that there were many treasures ( buried ) under the groud at the end of a rainbow ! ! ! In the beagining I was a little bit nervous , but the conversation went smoothly ! Twenty minutes is such a short time and I had to say goodbye , beacause the international fee is expensive , this can save money for our company . Recentley , I have had no time for myself . Sometimes it makes me tierd . Without anyg interupting . Yeah , finially , I opened my mouth . Three of my friends came to my home to studey English together as usual this morning . It is a vry fun place for me because there are many kinds of cool shops , for example apparel stores , restaulants , sweets shops , nail salons and so on . So , when I found this site , I was pleased with it and registerd right away and then tried to write a lot . I do n't know if this method will lead to high score in the TOEIC test immediately , but acctually , I really enjoy studying and I sometimes think in English now even during daly life . Then , I can somewhat unserstand what they say . My thow is in such pain ! We foucus on difficult words and torture ourselves . During the holiday , I had to finish my school work , essays , and other impotant tasks which still were n't done . He had nothing to grab onto and hardly any place to stand . & nbsp ; However , there was a midle - aged man that was sitting in one of the priotity seats . The milde - aged man looked at the old man and back at me again . I thought that his conscience was starting to bother him . I have to go to must work and perfome my experiment tomorrow morning . To begin , I wrote my intoduce . I am studying for my exams at the university 's cluster room , but I am fleezing as the air conditioner is turned up very high . She went out to the new sun room that 's waiting for the maerial to finish the floor where she found an old man . He walked into the imcomplite sun room so Siri said `` Who are you ? `` . He did n't say anything for a while then Siri found that he had a name tag on his shirt and recognized the name . It is the internet that has had the most powerful infulence on me by the prevailance of computers . I think I wo n't go anywhere so I 'll clearn my room and I 'll cook what I want to eat at the time . For example , the shape of the rice cakes ( round or square ) , flavors of soup ( soy sause or miso or sweet bean soup ) and other ingredients ( chicken or seafood and many kinds of vegetables ) . Fortuntely , South Korea has developed accommodations called Jjim - jil - bang . When I was overseas , I did n't watch English news channels or movies . I could not understang popular programs , as I have no idea about their cultural background . I 'm requied to learn formal words rather than informal . In my case , I 'm exporsed to formal situation too often . During class or school , I hardly get a chace to use slang words . but statisyics is very difficult . By the way I would like to know th difference between ' personal ' and ' private ' . So could you help my studing of English ? In Japan , we have a lot , like candied apple , cotton candy , takoyaki , roast squid , okonomiyaki , yakisoba , taiyaki , creap , pickled cucumber , kababs , shaved ice , and countless others ! ! In my opinon , there have been many changes in american 's thinking . They want chage and achive their hopes by voting for Obama . My hope was also that Obama would be president , and I am looking forward to watching the nauguration speech on tv . I have no doubt tomarrow will be a historic event . It 's origine is a mystery novel `` kokuhaku `` written by Kanae Minato , it got an book store reward in 2009 . I have to get the certificaiton , which is called MCAS . So now I am not working , because according to our Holyday tradition , we must meet our friends and relatives today to exchange gifts . This provides many programs to watch , whearas NHK does n't have so many . And after reading it , we had to explain and summerize it . Due to the pronunciation of a Chinise English speaker . Anyway , I had to follw her explanation and summerization about it . I just stayed silient . I am feeling nervas . I do n't know why , but I drank 2 cups of coffe at 4 AM . Both of them are from the same conpany , are n't they ? I decided to strrugle with studing English , for the same opportunities that foreign costamers had visited . Futhermore , some of the main characters also died from that . I had calss this morning so I had to get up early . . . . Saty up late is so tiring for me . In good weather like this , I whant to meet friends and sit at a fire in nature . onsequense : We decided to go for a trip as a cinsequense of the long discussion . Today I bigin my diary . It was 32 years ago , so I do not speak Engrish . This weekend , I am going to teke a test called ' Eiken ' . It 's always a pleasure to read your guidebooks about any place of the world , specialy about towns I know . When the dorama started , I felt I was having `` deja vu `` ! I am too anxious to make many good friends who come from different countries and from different cultrues . I paied a deposit of thirty thousand yen . Today im very unluck . And in bio I did n't finish my homewoke . ( teacher let 's me go to lunchbox . ) ? ? ? I like it when the sea is smooth and motor motoryachts sail on it . Sometimes you can see ( some ) coulour fish . Peple hung fish windsocks from their looftop and wished for their children 's health and success . If a factory is not managed very effectively and efficiently according to specifif rules , it 's prone to polluting the local air and water . An ideal community should be quiet and have fresh air . My best friend said , `` you shoud just ask him and do n't talk about your dogs . I remenber when I talked about my dogs with the doctor , he almost yawned and I was a littele bit emotionally scarred . However , the man 's attitude twords her is deteriorating . Sor far , you have n't shown any successful results . `` I was happy to het him . When he feels good , his color is lighter and when he feels bad , his belly becomes a brack stripe pattern . The instruments they play are guitar , drums , bass , keybode and many others ! Did a tyhoon hit Hamamatsu ? and I 'm writng a diary just to kill time until I 'm ready to go out . But on a second thought , I 'm learning English online , too , so I can keep studying it ! Of course , I want to keep writing dialy on this site . By the way , after I registeration , I can now use `` PhotoAlbum `` above . It 's defficult for me to express my opinion . I might have hurted feelings unintentionally . I worked for my new job for almost one month , and I contribute many of my `` first times `` to this job . For example , this was the first time I walked to an office that was n't only10 minutes away , or I ate a French dessert named Macaron , and today is my first time going to a photography studio for a photo shoting of our product Althought it 's boring when we are wating , I believe that when we see the pictures on the magazine everything will be worth it . We enjoyed it and feld happy ^ ^ So I can eat those without having to think which dish is cheap or expencive . It was ivory , long sleeved and hagh - necked . Japan has had a taugh experience in the big 3 / 11 earthquake and tsunami . When I see the people 's attitudes toward saving electrivity , I am reminded of our national character . This events often take practiced in summer . Thirdly , I like to make new friends and get to know more abount the places I 'm travelling through . Mobile phones are becoming fashionable recently , there are so many colers and designs . And they have a lot of different fanction . For example , you can use it to listen to music , to take a picture , to use the internet , to arrenge your schedule and even to watch TV . . . I do n't need too many fanction . I have one but I do n't know all the fanction of my cell phone . . . Thesse days , most people have one . Sometimes it gets too expensive . . . We should be carefull when using our cell phones . I 'm looking forword to belly - dancing and also to meeting my teacher next Thursday ! We study at differet places . We both wanted to learn independently so we were seperated by our parents . And second , It is eay to raise cats . I entiely understand that , and that 's why I want to raise dogs and cats . Now , huiman control this world , so we take care of only ourselves . It had n't been stong enough to damage anything but it reminded me of the tragedy of Haiti . usually , I do n't make a habbi of writing in a diary on websites . . . I am trying to look for a sentece so I can ask you but I ca n't find it . It 's not a noproblem , I can read it by myself again . Things intersted me . I 'm sure it will help you broaden your horizen . I commut to a language school . By the way , the illumiation at the racetrack is very nice . Of couse , I am one of those losers who regret their gambling . Hoever today is Friday ^ ^ Besides , I can not read fast , speak fruently , or write quickly . granfa , granma , everybody is welcome ! ! I have a presentation next Tuseday . When she found the truth , she was very upset about it at first . But now , she is looking foward of seeing her baby soon . So I 'm not surprised that she was upset because deliverly would be difficult for herand it 's pretty expensive . Hiroshima is famous for the atmic memorial park and Miyazima . I dod n't know him well , but I want to hear his interpretation of Paganini . Um I wanna chanege my life . I opened the egg pack in the refrigerator and found out the eggs were fronzed solid . I was able to see skycrapers and the Opera House from there . It is clean and confortable ! I would like one day to leave my country and travell to England , but the problem is that my english is very bad and I do n't know enough so I could travel there . . . I will take part in a Chinese Speach Convention . This is my third day isung lang - 8 . I 'm not really familiar with the functions here , so I always sents the same It is good to meet many friends from different countries , and help each eachother . When I woke up early midday , I hada severe headahe because of a terrible hangover . and I asked my friends about heloliday when thery traveled but they said they did not traval often . somtimes they think if they use the money to traval they ca n't use it buy something better . I think we have a lot of beatiful beaches like in Phuket and Krabi ( ? ) . so about me , I did not traval in the south . I plan to go there one day when I have enough money . Studying in Canada is a valuale chance for me to become mature and to [ learn to overcome many difficulties and barries . Last time when my friend and me were leaving the Superstore and decided to walk back to the drom , a Canadian couple drove us back . Dath from the usual flu are more than swine flu which is simply not mentioned . I consider the vaccines , not just from swine flu , itself to be harmfull . Suddently I recalled one thing - - - I have a TEST in a couple of days ! ! ! Afterward , I looked in the mirro , and I liked my new hairstyle very much . As I was passing a parck , I found that my shose was loose , so I sat on a white bench to tie it . After leaving the parck , I continued on my way home . However , many people just stared at me and laughted . At that moment , I thoght , `` What 's wrong with me ? Arriving home , I rushed to the mirro to look at my new hairstyle again . When I turned my back to the mirro , I saw white paint on the cloth of my skirt . So many things have happend since I was here last . I 'd liike to get another dog . I feel [ as if ] my oppinion is [ very ] selfish . . . [ Because ] I 've never discussed about it with my husband [ yet ] ! ( Hasband to be ) . Before that , I need to get my father 's permition . Waching movies and listening to podcast or radio programs or even music would be a great help for the better understanding . These days I think I ate too much so I am gainning weight . I like to drink a cup of coffee when I feel tired or want to sleep , aspecially after lunch ! In my opinion , no matter if teaching ( the ) sudents who have already had plenty of knowledge of English , or the children who have never contacted English before , the techer should recognize the importance of teaching . And they shoud know well the different methods for teaching different grades of students . The Art of Disney Gallery is held outside in Downtown Disny . The Legend of Sant George part - 1 I timidly tried to sink it in the bathtub a few days ago and I timdly tried to take some photos with it in the bathtub yesterday as well . So far I only watch about two movies a week becuase I do n't have enough time . They were `` Graded Readers `` , Penguin Readers , Oxford Bookwarm , . . . and etc . * When I work at the hotel , I will not only need the ability to speak English , but also the abilty to express my opinions clearly while using appropriate jargon . I played the guitar in a band at that time , and we copied thier songs . 80 % of Japanese Boys talke to others with humility and rest of 20 % boys are totally insolent like kids . How about the boys in your contry ? This phrase seems impressive to me in junior high scool The sentence structures are not falimar to me . The cherry blossoms are blooming in Kyuusyuu which is in southern Japan . My husband and I went to see a muvie . Before the muvie , I went to a department store and bought a pretty ring . The muvie was called Gulliver 's Travels . I slept during the reading section and lost about 100 points more than the listeining section . I wil buy more of them later . It 's really difficult to think of it becasue he 's straight . I ' VE HAD ENOGHT ! ! ! ! I 'm glad to hear from you , and I 'm also glad that you ve just returned from a trip to Scotland . I fell asleep last nigt in front of my pc because I felt sleepy after I ate supper . I am planning to go abroad in about one year to study fashion desigh in England or France . Even though most employees are Japanese , some have sent emails to their boss , I have had the oppotunities to see such emails sometimes . When I went for a walk , I passed by a little retaurant . We had a thunderstom last night . So I ( often ) pour some syrop into my Caramel Frappuccino . I 've remembered his free kick at the chanpions league 2006 - 07 at the games vs Manchester united . Because I also have a mooustache and a beard . Now I 'm going to read a chapter of Dickens ' book ' A Tale of Two Cities ' and maybe later I 'll write an entrie about the book . Orginary , I wanted to work in a pub in itaewone that is located in Korea and where many foreigners come to hang out with their friends . Frankly speaking , I expect that there are many beatiful weman . But I was dispointed . One elderly man said `` There is someting under the machine . `` Once I start writing , I ca n't limit myself to an propre amount . Today is Wendnesday , February the second . Voice blog is where you can make your acount and create your voice blog . I have just resistered with Lang - 8 . But I hav n't start new things yet . shight seeing ? MY ASNSWER : Finally I finished one of them , and then I emailed one of my coleagues to ask for his advice . Fotunately , I was not injured in the earthquake . But when I started talking , nobody responsed to what I said . So my topic did n't make sence . In Japan we can see a rabit on the moon . In diffent countries they also see different shapes made by crater on the moon . To learn a forign language , we should try to speak it as much as we can , and in my opinion , a test will push us to speak more and seak better . European contries are near each other . So it would seem to say that men tend to be more of romanticists than women , who tend to look at reality and securelity . I like hime because he is plugged in . One part of our job as an intern was to interface with the customers , which includes introducing the products , recipting the attendees at seminars , selling the Xbox 360 , or hardwares , etc . That 's why it surpirsed me very much that he went for brok on those jobs , expecially on selling the product . And I like to play footbal very much . Maybe wewill developped iPhone app , a simple game . so , , , , we were hanging out till night , walking too much , my lesg were hurting . I drunk a lot of alchole last night . American tornades are also American size . ( Sometimes tornades appear in Japan as well , but most of them are generally small . When we first see American tornades on TV , we are surprised at the size of tornades in America . ) There are many visiter and workers from foreign countries . Our Prime Minister , Hatoyama , said that he would resolve Futenma problem by the end of this month . My fvorite drink is green tea . When someone kndly corrected my text , I feel happy . I learn English at samrt . So , I am happy that her boyfrined is my friend . I am very embarrassed with my weak avility . My refrigerator is still operating now , but I bought a new one because the electricity bill is too expensibe . Yammy ( T _ T ) Some young boys were playing barsketball , while some young girls were listening to morden songs and many old women were dancing . Lately , I have been carzy about DIY . I really like wisper of the Heart espesially from a lot of the movies by him . How could he tell her gilrfriend ? Can you help me write a conversation ? One day my doughter said to me . I watched `` The Big Bang Theory `` agian today . Hi , everybady . Everyday , I have to acheive all kinds of imformation on amazing destinations . I would appriciate it if you kindly help me correct it . < just more formal > So recently I 've started faining weight . I decided to eat to helthy food , eat less , and to exercise . It 's greate . They were above my sholder in height . Unfortunately , the tempeture of water was not warm . I did not know what was happning . When I get home and settele in , I will write about my trip and put up some pictures ! ! ! ! ! ! ! There are some vegitarians , one Jewish person who can not eat pork , and a guy who has a food restriction because of his diabeties . I want to work internationary . I am studing Korean too ^ ^ Anyway , it is a hard for me and I am worred whethr it would hurt their feeling If I ask them several time to repeat what they said . Therefore , I have to find someone whom I can practce conversation with the eldery . I have worried about my English skills recentry because it is one of the most important skills for working or enjoying our lives nowadays . Alhtough nearly 20 years old , I need 10 minutes to write these three sentences . When I write something here in Englsih , I always try not to make a mistake , but still , my entries always get corrected after all > < His homework includes three book eport , an English penmanship , and a math workbook . when I have free time , I always goole words . It was very dificulte . And we are going to have test agein . Although it depends on the country , as far as Japan goes , there are some reaasons why we attend college . They have great influence on children in the same genaration , and those children show that practice leads to great success . The reason why I wrote such an impolite thing is because I really wann go to Singapore immediately . I 've only sudied in Sydney ; my real intension is to go to the beautiflu sea or something . So , probably I can enjoy Australia and I can affrod to see every thing . As friends have helped me correct my blogs , I have gained confidence to go on writting . Then , I prictised my English listening skills by listenning to the New Horizon3 at double pace ( double speed ) . He said that at his work ( Japanese company ) , he is aften told that he is too self - assertive . Sports is not only physically chalenging , but it can also be mentally challenging . Criticism from coaches , parents , and other teammates , as well as pressure to win can create an excessive amount of anxiety or stress for young athletes . Unfortunately , I ca n't run this year , but I 'm going to run in another marathonraca which will be held in my home town . I will cost a lot of mony . I long for thire life . I want to be a millionair ! ! Afterall it all , we discovered that we ca n't recollect ( or : remember ) anything from the last school year ! ) We had a headache , but it 's natural ( or : normal ) , because we had n't been practicing for 3 months because of vacation . But yesterday , I coudln ` t say `` Happy New Yeat `` to my friend . Sushi is a very ( populer ) food in Japan . If the people of the future see the current world , they wouldl not be approve of it . By the way , could you tell me wheter it is not difficult for native English speakers to distingish `` want `` from `` wo n't `` in conversations . I bought a magazine , `` Business English `` a week ago and I 've just starded learning with it . This is my first time at langu - 8 . I want to improve my English level , and make friends from other countries . I look forword to receive your message . But I tryid not to change it not very often . I think the main causies of my not being very successful are - laziness , misallocation of time and tasks , and again laziness . Today , I was working at Lotte World which is similer to Disneyland . * The original sentence sounded confusing . * Although this Christmas I was lonely ( lonlely ) , I hope that I will be happy for a whole year from next year . But I think the Singaporean government wo n't be able to settle this problem unless humanbeings beings successfully develop a technology which can change sea water to clean water . The movie is about the life of Cuban Revolutional leader , Che Guevarra , and his inspirational journey . I did n't know of Che Guevarra until today , because I did n't know much about the Cuban Revolution . We are currently using a customazed program that we developed ourselves . Unfortunarelly it is not very common in my country . By the way , today 's weather was strange , because it suddenly began rainig harshly . I am not famillre with Maiko san , Kyoto became one of my faborite cities . `` Can you play teniss ? `` and `` Do you play teniss ? `` She had even worn a mask from the biginning of May . No one can give us a clear answer about the effect of long - term low level of radioactive explosure especially in relation to children . The most importernt thing I learned is making a special point of ensuring their safety . After they had their afernoon nap , I woke them up and asked them to His medal was bronze indeed , but I thought that he deserved a gold medal because he must have made a lot of Japanese impressed and encouraged by his comingback . He always cracks some inappropriate joks that make me sad and uncomfultable It was a very preasant party . I got a good grades on most of my English exams , but English is still a feild filled with confusion for me . I must control my physical and mental well - being to conplete the Tokyo marathon . I conplaind about my looks to my mother . A few minutes later , a friend of mine asked me `` oh - I did n't recornize you because you looks like different person today . `` Ok . . . . I am now wowking in Tamaki . Sometimes I move my boday if I hear some hign tempo music at home , but I never do that when someone else is there . But it 's ok , I said before , I will profect my dreams , no one can take them from my hands , today I may be stupid , but what about tomorrow ? Different from middle school and high school , college campuses are much more interesting and fasinating . Furthmore , what we should bear in mind is to be kind and tolerant towards the dorm - mates as they do it too . Usually I read sentences from the TOFEL and literature , but I do n't talk in English , I idrank at my home town . The fugu is deriiouce but a littel dangerous as a food . mmmm , I think MacBooks are not made for cats Ize peninsula where I live , is a warmer place tnan the other areas in Japan . If the Ume tree does n't exsit in the other contry , I think it 's okay to just write Ume . My other favorite things include playing the guitar , eating snacks ( especially chocolate ) , dancing , wathing movies ( on dvd ) and so on . YAKUZA appers in this game , I like Pikatyu the best . But I also like Raityu . My freinds and I often talk about our other friends . Or : As food safety is becoming quite a worrisom problem ( here ) , Beijing citizens are trying to find / locate farms themselves that can provide safe agricultural products . But when I 'm able to comprehend the means of songs , I feel a huge sense of achivement . The Maldives has recentry become popular for honeymooners . A Jaapnese friend of mine called me this morning , almost crying . We hope this maintainance will bring . . . The class is very interesting , I laern English and Chinese . I live in Shanxi province which is locat in the northweast of China . I am a student and I want to learn ingles . I never thought of meet such as great person in the unuversity . The price of poteto chips has increased little by little . Today I went out with my son , and we took a walk under the spring sunlihgt . In the evening we went to the market and bought something to eat . I took many picturs , but I ca n't function anymore . The aftershocks have faded out but another ploblem is coming . This plant sends electric power everyday to large areas icluding Tokyo . Because of this , Tokyo electric company and the gaverment have decided to share the power in order to prevent sudden blackouts in all areas . Ashita wa nichi chu koko ni wa narimasen . Watashi wa Scout no atsumari ga aru masu . I think it fits the atomosphere of anime . Yesterday ( February 3rd ) was `` Setubun `` in Japan . Congraduration to me ! ! Taiwanese people are always open to others from all over the world , so travelers can feel the Taiwanese eenthusiasm very much . I like cherry Cherryblossom . There was a single cherry cherryblossom surrounded by other kinds of trees ! ! This party is sponsored by the English conversation shcool that I go to . About 70 people , including twenty foreigher , will attend the party . I 'm not used to communicating with foreiners . Also , my English is poor . I 'm looking forward to the party , but I feel uneasy about whether I will be able to communicate with the foreiners there well . I hope to make friends with foreigher at the party . Perhaps some ( someone ) may want to ask me why I worried about my relationship with my girlfriend , as I wrote several days ago here , even though I beleive this . First my throat was jutst a little bit sore , but now I have got a cough , a runnning nose and a seriously sore throat . As I said above in the title , I fianlly got a job = ) But the surprise is that I am not going to work in Korea . I am leaving for Vietnam next month to work there . I feel I shoud take care of myself more carefully . . . . Nonetheless , after the Muji Revolution , Japan grew as one of the developed coutnries in teh world and reigned over Asia while China maintained her close door policy and remained an undeveloped agricultural country . From the Japanese perspective , the Japanese wish to reclaim their glamor in the Muji Era when Japan was the king of Asia . We had to do sth in the room , so we staied in our room for 1 hour . They are athors of several books , such as `` Body Language - How to read others ' thoughts by their gestures `` . I 'll introduse myself a little . And also I know that the JLP teachers have spent so much time prepearing for this summer course . Acording to my memory , I might heve done about 3weeks ago ? I met my friends in my high school class , went cmaping , experienced heart - breaking . . . I do n't know the case of forein countries , in Japan many high school and university students tend to start their first part - time job in it . My English is not good . There are many words I do n't know and I do n't understand grammer . rain was like one of Tuyu and called Natane Tuyu in Japan . I went to Voncouver for 2 days . Yesterday was the last day of my Mailitray service . It was a very happy ending for a long hard year . I have gone through some very rough situations The 1st word is ' I ' whenever I speak English or I write a dialy in English . Im went to hot yoga class yesterday . What is the best way to hundle conflicts ? Cultural differnces often cause confrontations . Even in a classroom , thiere are cliques . When we are in a conflict , we tend to reagard our own opinion as right , Firstly , we can seach much faster for information regarding things we want to know about by using the internet . Recentry I failed to pass the entrance exam of Tokyo university , so now I do n't have anything I want to do . And , Tasmaniasalmon salmon tastes very good . I am quite luckly after all / though , my college classmates have had a lot of interviews , however they did n't receive any offer yet . I seached for information about Los Angeles at home . I had an orientatation for an English conversation class just 45mins ago . I was asked some questions in Enlgiswh from an American Teacher . just lagughing and chatting or thinking deeply about our future . I do n't have the right volunteer spilit . If I can control my emothion , I will be released from my pain . I attended a seminar about social networking services a few days ago , and one of the guest speakers indicated that human beings ' abilities are atrophying while information and Internet technologies are advancin . This is because the evolution of technology makes it easier for people to solve problems . All these technological advanes changed our life for the better , but at the same time we should realize we are becoming lazy and our abiltity are atrophying because of our invetion . I 'm stressed out by many things and have nou energy . . . : ( = more natural I sold for 20000Yen a CD boxset of my bussiness teaching materials , which I used to listen to There were so many people screming and yelling . They reproached the director and actors for lating the premiere so late and so short . That day was my birthday , so I deside to eat unadon for my birthday present . I like thinking about how should I take picture to makes averybody interested Can you thinking about what 's a different bitween them and you . But sometimes I forget to try , so I think I should try to something againg . I hope this wabsite will be help me with my English skill . I went to a Chinese restrant downtown , with my friends . how much it needs effor to make it something But It is hard work for me to write what I 'm thinking promtly . On top of that , speech delays always make forienger confused when I 'm speaking with an American friend . And another reason the friend is confused is lack of vacabulary . It is difficult for me to transfer the meaning of what I 'm thinking completly . However , I konw that it is unhealthy , so in order to be a healthy and lovely girl , I decide to eat more of a variety starting tomorrow . Lastly , I want to make forigner friends . I ordered foctory size spaghetti with rich meat sauce . Konbawa . Tree lieaves have turn into red and yellow . you can feel Japanese autumin if you look at . but sometimes , I 'm impressived by it . I wanted to wear skiny jeans so I went on a diet . I had to stop losing weight , but I 'll keep excercise for my health . Actually , computers wer n't my frist choice when I was invited by Shaoguan University . He has a big desease , cancer . . . School festibal . It was a very big ivent x - D Finarry , I will spend less money if I live on campus . But , as you can see , my English level is not good enougt to enjoy English . For example , watching CNN and BBC news or listening to English songs . It 's a rare oppotunity to talk with a native speaker of English , most of them come here to study Chinese . I had been introduced by another Japanese friend and already knew him , but I had no time to meet him then , only knowing his celler phone number . But he wants to speak conversational Japanese fruently and he has plans to go to Japan . I unblanced my rhythm of life a little . I will write about that very tiring trip , some other dialy . What 's a good way to joing the conversation ? All of the band members have already had expierience with other musical projects . worked with many differet musical styles from Ska - punk to Hardcore . electronical samples . So I had to look in the dicshonary many times . This means I have to read about 100 pages a day because I justy started to read this book today . Even btter , I can assign different purposes for a few cups and only use one with its assigned purpose . I was discharged from the army on Octobor 31st , 2010 . It made me desperated I feel enphoria . I asked eneryone : `` Would you add me on Skype ? He is always full of enagy and a real hundful for me . After dinner , we went to a caffe . It was a great movie , as many people including my frineds said , but it was a bit complicated . I have two turtoles and I have had them for about 15 years : - ) Their names are `` KA - `` and `` ME - `` . * Lang - 8 is very good website for learning langauge . I found it in a magzine . Recentry Lang - 8 has not been running smoothly . It 's a little embarassed to play it when there are a lot of people in the elevator hall . So let me intridue myself ! By the way , I took part in an internatinal party in Ginza , Japan the other day . We can taste delicious foods in Hokkaido , such as chikens , Japanese crabs , shrimps , various vegetables and so on . I 'll look forwarad to it very much . When I made a woolon tea with a tea bag in hot water as I usually do , I noticed a diffrence in taste . I could n't stand the diffrence in taste , so I went to an electric appliance shop to buy a water purification appliance . In a part of the Fukushima prefecture , which has had a serious problem with nuclear power plants from the March disaster , thosands of residents have been told to leave thier homes . In adittion , my laundry wo n't dry because of the humidity . I performed two songs as a band member in the universty festival last year . We all have beatifull penmanship . ( or handwriting ) I found out how good mutton tastes when I lived in China for three years for bussiness . Anyway , mutton is less popular than other meats , like beef , pork and chikin . in Japn . I do this so I can have a lot of berad , even though I 'm on a diet ! Many Japanese foods are sould on the street , such as Tenpra , udon , dango , kakigori ( shaved ice with syrup on top ) . I deliveried to six families for only two hours . During the meeting , a profeccer and I discussed a way of teaching science . Once the mark is caused , it is permenent . So it dameges a lot of things and many people feel uncomfortable . When Joy entered Mcdonald 's , Ji and Min were alread sitting down . This was her first solo cocert and the first CD was released on the same day . so my assey are always basic level . It is nutural phenomena , is n't it ? Please read my dialy . Today I cooked a cheescake . I pretened to call a policeman . A Chinese women bullied a kitten like people do the laundary . My dog died and I lost my job , my bussness failed and my money ran out . and did not do work out as much as usuall . and after dinner , I went to the health center which is located in baseroom of the dormitory . and I excercise with my best effort . I appriciate your help and advice . Althought the temperature there was much more higher than in Taiwan , but the weather in Taiwan is usually hot and humid , and that makes me sweat all the time and feel unconfortable . It was July 4th yesterday , the bitheday of America . I 've been trying to figure this out : what do budhist monks do when they encounter sexual lust ! ? I have pearents , a brother and a dog . It 's been a long time since I last logined in to Lang - 8 . My major is informatics , which is rather new and interdisciplinary , and includes many disciplines like phylosophy , contemporary thought , science , engineering , design , social sciences , and so on . I want to make friendship with many forigen people I could n't canceal my excitement for this cummunication , because it was my first time to cummunicate with foreigner face to face . We only briefly greated each other , and afterwords , there was a long silence . I felt that it had been a complete faluer of a conversation . Anyway , I 'm still coufused about how to use it . I do n't have enough willpower to study more and more in the moring , wasting a lot of time . Fortunatily , we 're on vacation this week and do n't have to attend classes . That gives me hope while whatching dreadful stories of the world . I guraduated at a univercity this year , but the graduation ceremony was not held . And I like taking picturfes , traveling , eating good food and dreanking , haha ! I want to speak Enlgish like a native speaker . How do you studay language ? It 's a piece of software to memorize woards and phrases efficiently . Please tyr this method if you would like to learn a new language eficiently . You can surely memorize meny new words ! Apple 's technorogy is amazing but I have n't yet learned how to search for words and write at the same time . If my freind has time , we 'll catch ball or whatch some games . My thesis was mainly about the relationship between languages and colors in old Japanese , morden Japanese and morden English . If you are one of the people who lent me a hand on my survey , I really appriciate it . Today , I had three classes ; English , Japanese and Chainese . Besause it was the weekend today , many people came to the restaraunt . Sometimes people from foreigh countries come to the restaurant . Americans , Koreans and Chainese people . Yesterday , I had a class titled `` perfect pronounciation `` at the university . His / Her birthday is tommorow . I 'm looking forward to tommorow . When I had to pay , I foud that I only had 4000 yen . I have not been a student for 9 years , but I will never forget this holliday ! Inside there were 3 motours , a metal frame She told me about her frinds that went to America to work , tranvel CROSS OUT ] America [ / CROSS OUT ] and take care of the childrean in the U . S . A for one year . Yesterday my friend told me about Lsng - 8 . But when I bring her out to the street , she is so crzay ! Then my mouth opened and fanally I smiled and said to myself , `` Thank you , my wonderful friend from Lang - 8 . `` It ' very dificult . Have a good weeken I think I will go shopping and look arond the market . I would like to buy a new magnet . I hope you have a good weeken . I think it is good for me to inproved my English . My Enlish is so poor ! we just conect to the internet . In Februar 2010 , I bought a new one . It was a good oppotunity to improve our relashionship . My vishon Okinawan poeple do not have good a image about soldiers of the American military . I thought he had not forgotten about his exx - girlfriend and still loves her . So we became firend . Someday , If I can speak Enghlish well , I want to tell him thanks and what I think of him . I want so much to program in other computer langages . Sooo sweet and jucie . 4 , Click the `` Upldate `` button and that 's it ! Their expressed policies in the manifesto are as follows : The government subsidyzes child rearing parents about two hundred dollars a month per child until he or she finishes junior high school . Meals are more expensive than they were before the Spring Fastival . Fourth I chat with a guy in a QQ group who ignored me after we exchanged afew words dued to my bad English . My mom has 3 bothers and sistrers , and all their family will come back to spend new year togehter . They do n't know how to speak gentaly and everytime I just feel so umcomfortable and try to escape them . Althoug we are good freinds , I still think it 's embrassing to show her my room . That made her sick eventully . In addition , I dont n't see the reason why people are eager to volunteer work for poor children and sick people in another country . People are probably just exicited to visit another country even thogh they are going to waste a lot money to visit . I tried to make a plan on friaday , but it did n't work haha becuase we dropped by taco shop . And I saw the of owner of Ralph 's grocery store 's mansion , and then we went to my friend 's house to eat britto ! However , while we chiled out and laid back on the sofa , they decided that they did n't want to attent the party . The population is heavily concetrated in large cities . Becouse in my English classes at university we do n't practice speaking and writing . It 's a very beautiful and yet awful movie about nuculear ( anti - nuclear ) weapons , and it is also a bad comedy . My bad habbits I have some bad habbits . But recently I have tried to fix my bad habbits . Since I 'm not interested in studying English , I did n't study English after ( since ) I gruduate from high school . When I went into the shop , I was surprised about their manu and mood . The romm is packed with people . If you eat too muh , you wll pack on some pounds . It is a big city , and big cities are nt made for living in , they are made for work . Except for the many shops along the street , there are many dolls made from bamboo and paper ( papar mache ) hung from the roof It means mountain girl ; yama equall mountain in Japanese . They wear colorful sports clthes with pretty bags and shoes . Anyway I ca n't recomend climbing that mountain in the summer . I ofen felt thrilled and could enjoy all of those . It seems that this usually could be complate recovered by 30 . He said also he should have painted ealier . I went to karaoke with my firend ! The web covers the entire world . Many people have their own PCs which contain multi - language enivironment and are always online . Today , I Went to `` Shionoe `` with my garlfriend on a motorcycle . I argue that meat is better than fishses for the following reasons : Lately , I have been getting up at unregular hours . Wedding / marreid ceremony It was sobad that my English teacher 's pronnunciation n't so good . According to the weather forecast , the typoon is moving Northwest . However , no matter how many companies I appied for , I haven ' t I hve to learn how to use it better ! Today we are having a forum ( discussion ? ) on the reaerches that my lab has been conducting ! I reseigned from my job last month and I will work in NYC starting DEC 31th 2010 . I like surffing , running in the early morning , and going to musicals . But many pepole cry over the naughtiness of young people . I like Michelle the best because her character and behaviors is soooo cute , especially when she is talking with Uncle Jesse . The video was about a person who tried to bungee jump into a river that had a cockodie in it . Frist , I was not sure if it was a fack video or not , but I wondered if the man who did it got eatten by the crocodile and was hurt . I ran ten kilometers up along the mountain and then down the other side for another ten kilometers . The mountain I was running over today was a symbol for Buddist prayers . The view is just amazing from everywhere along the mountain path ; I feel as if I am stood at the same height as the clouds , and the wide opend view makes me feel freed from everything . The weekend is over , I do n't like Monday 's and I 'm logging in lang - 8 to see wheather someone corrected my diary but the result let me down . I am looking forwward to meeting them . We could sing to the accompaniment of a guiter , which the master played . Because I will want to enter univercity . I want to study biomecanics . Although I have nothig special to write today , I still feel like writing . if you 're intrested , then please pay a visit to my page and take a look at it ! So ` native English speakers ` refers to the Amrican . I thought that more people would come here for sightseeing and the number of sucide here would decrease as long as the path was maintained . I think that this is a part of the reasons why sucide happen here besides the not maintainig path . The atomospher was very quiet . A littel farther from the Forest Trees of Mt . The board said that those caves were used to preserve foods iseveral hundreds years ago . I was shocked at the news about Asakusa Samba carnibal 2011 . I have to prepare some boild eggs . I can lon in on the weekend ! ! Got an iPod touth We were studing together , and one of my friends said , This mornig I woke up at my friend 's house . If it was n't raining , I would go to a sports event of a rocal junior high school to see some neighbours . As international air traffic increases , many major cities need to extend the operationg hours of their airports to accommodate passenger and cargo flights from foreign countries . Residensts near the airports argue that there should be curfews . Discuss both points of view and give your opinion with ( supporting ) reasons . But now I still have a generalized musle ache . . . I orderd black ones but gray ones arrived instead . When I saw them on the internet , I coulod see that they were black and the description also said that they were black . The cargo of silver weighed abouot 200 tons . I am a university student , but I am not goot at English . There are many types of drinks that tasete like beer at the supermarkets in Japan . These drinks are so - called `` non - alcholic beer `` and the ingredients include sugar , calorie , among other things . I was advised by the doctor I 'd better not eat or drink too much , take moderate exercises , and avoid a stressful atmospere as gout is a desease caused from an unhealthy wy of living . I can sometimes hear both of them singins at the same time . If it is nice tomrrow , I will fly the Koinobori . For example , I like to invite my friends to my place , enjoy my favorite sigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( it souds like I am a teenage boy XD ) . Living under their careness make my life more easier but also makes my intelligence degrade to a three - year - old child 's . ( I am already 27 . I was very sad and I rememberd then what happened yesterday . t was a tiny mistake but of course it was my mistake so I aporogized for it to the doctor . For exsample . . I played some games online and then studyed English , and played the piano . Yoo seem ( to be ) happy . My job is loaning out electonic devices . But we only have few custumer , about 10 people a day : ( Fortunatly , the chinese New Year , which has eight holidays , is coming soon . my family consist of 5 memner : my father , my mother , 2 younger brothers and I . I will graduate from my unniversity in one year . In fact , I am a little worried about my job that I thougut was so nice . I want to brige Japanese companies and oversea companies . The KIC is near by my house , where KIA has some voulanteer language classes , we call them `` Englsih table `` , `` Korean table `` , or `` Chanese table `` . Since he ca n't speak , he is using a respirater . I 'm glad if you enjoy reading my dialy . I tried to change to nother bus to go to my house . It was my telephone and modeim to connect to the internet . I 've got a sore throught from the cleaning spray and my hands get rough from washing . The weather is very good and very confortable . So , most people have canceled their cherry blossam festivals . Do you know a Philipino singer , Carice ? When she was sitting in the airplane on her way home , just before taking off , the directer of the competiton entered and asked a flight attendant where she was . And the suiside rate has been increasing in recent years . Moreover , because of its efficiency and sonvenience , we use technology even if we can do without it . And some traditional arts are in danger of disapprear because young people are less intersted in them . One sign is the blooming of spring flowoers . I thought I am proud of him , and I am a very lucky mother because of I have a great husband and wondeful son . His attitude looks as if he has no enthusiasm about enerything . Relationships are sometimes obsucure and many of them are formed impulsively , such as friendship and love . I think that I ca n't sleep becouse of the heat . But I 'm confused becouse Italian is reading Roman but English is not . Then he will become a member of the Pharmaseutical industry in Japan as well as me . He will ues English in his work too ! Essay : A soulution to Overcome the Threat I had to applogize to my customers for it . As usual , I was trying to use it but unfortunately , today I could n't do that because my office web security programm blocked access to Facebook . She got her driver 's lisence about a half - year ago and has n't driven car that much , but today , it was her third time to drive long - distance . I accidentaly came across the movie when I was surfing you tube . When she reads it , my wife is so consentrated that she does n't hear my calls . It sounds more natural . Hello all you beautiful boys and girls or kind - hearted men and wemen . I 'm a sophemore now , and will be a junior after the summer holiday . Anyway , the TEPS score appeared on TEPS hompage . Today , I ate lunch near my universary . The Brihish meseum is famous all over the world . The meseum ia famous for art . the meseum The man is very embrrassed He deldtes the picture from camera . As you probably know we pronounce a word as we read it : in most cases there 's a corrispondence between the sound of a vowel or consonant and its graphic symbol . The announcer was joking about our difficulty of pronouncing the noun of this volcano , expecially after listening to its real pronunciation . So he bought clothes at Abacrombie and Fitch , and finally we went to Universal Studios . I think Destiny 's Child , who split up in 2005 , was the greatet girl 's group ( ever ) . As I mentioned in the privious message on this site , I 've been practicing English by listening to songs . I hate studying English writing and grammer , but I like to study speaking . I ordered vegitable curry which twelve kinds of vegitables were included in . I laughted when I heard this . : p The way of my shopping has been convenient , meanwhile ever sinse the international company came to Japan , many local bookstores have been going out of their business . Lately , I 'm fascinated with `` Wicked `` , so I watched thier videos . of MLP figures still nice , but I 'm not atrracted to them so much . . He was very cheerful , active and fun to talk with ( all adjectives ) , so that he entertained his . greatparents a lot . butI have a difficulty still communicating with foeign people . The supermaket that is named `` FOOD ONE `` , is one of the cheapest priced supermakets around here . Meets and Fishes are importted by the USA or China . Today I got up early to eat brefrest . I always get up late during winer Besides today , I have to do two kinds of winer vacation work . The gugle satellite captured something like a snake which is almost 30m long . I think there are many misteries in the world . There is a very interesting mith in my town . 200 years ago , a wise Buddhist priest foretold that my town would be destoryed by a huge flood . People believed that it was just a mith befor one statue was found . It is a very intresting myth . Yestarday , I participated in a conversation party for exchange between English speakers and Japanese . I na speak ! It has been more than 10years scince I graduated university majoring in English . Sometimes , I got assinments to have interviews with exchange students who spoke English as their mother tounge . However , after graduation , I have n't had many chanses to use English . All of these are good methods to release your strss . I alomst havd no time to relax . . . For me , it realy helps me to understand the English . Also , the correct gramer . In my opinion , even if he was just a victim , he has to recognize the weight of his responsibility and the influence his behaver on the society because he is the Kabuki icon . If I was rehired , I would not be able to go abraod . ^ ^ ; ; ; ; Today I went to a kimono shop with my mother because I intend to wear one to my friend 's weddding . But Japanease people seldom have a chance to wear one . I wore one once at my coming of age celemony . But I listen to a various music , Pop , R & B , Hiphop , Blues , Countly , Reggae . . . . Shanghai noon is under a lot of rain today , my friends did n't catch the train , she was supposed to go to xian taday . The capical city Tokyo is a big city . There are many plase to go . Yesterday , I went to city hall to recieve my passport . Toda , I had a part - time job . It was hevy rain , so my toes were soaked . I expect to go to Syabu Syabu with my friends next Tuesday . It is so interseting for foriner . My friends are foriner so I think they will be interessted in that . Occupation : univercity student Right now we have a long holoday in Japan . For example , in an elementary school you can learn how to comunication not to mention studying , and you can learn how to cooperate with your friends / classmates in junior high school and high school . When I speak English , it takes a lot of time to come up with right words so I guess I shold train my English so as to speak instantly . On the first day we went on an excurcion in ( the ) Kremlin . In the evening we went to a water park and water - sked . On May 7 we went on an excurcion to the city . I almost go to the gym everydey before going to the company . It is prety good . Podcasts are amaging ! ! ! If I start doing this , I will get to know exactly what I am eating and exactly what my calory intake is and I will feel bad when I eat a lot . have been learnig Japanese . `` It 's impposible because they do n't listen to me , especially mom ! I so apprecitated that I had preapared TOEFL test , because it gave me a lot of valuable experience in Reading , Writing , and Speaking English . Without the TOEFL experience , socre , and training , I could not have gotten those jobs in just two weeks . I want to send a cristmas card to my friend . Before , I heard that a lot of Finnish like Robert 's coffe , is that ture ? Merry cristmas ! The westen body has long arms and legs , and big hips . I have a plan to leran English . Frist study grammar second read anything in English third watch a children 's movie finally write in my diary everyday . When lunch time came , I was going to go to the restrant . On the other hand , social enterprises can obtain funds regularly because they are run through the business mothod . Disappointedly , I could n't enjoy tasting wine when I visited a winery , because I had to drive a car on the way back home . I went to my university 's hospital even thought today was Saturday because that 's what the doctor said to all the members of ou team . The messages told me that my card 's number corresponds to the card 's company 's , so they canceld my orders . Last saturday I 'd have a private concert with freinds for piano . Helll . I wanna get an internatinal license . I want continue my university studies , but I am affraid that I did not do well on my exams . It is not a very toching story , but I have watched the series since I was 10 year old , so it made me cry ! LOL I will definatley come back to this beautiful country again ! So , I want to communicate with people of defferent cultures and countries . So , I have to learn a lot obout manegement a buniness . I know that it is not easy to sucess . I want to improve my abilty to make sentences . My favorite person is Ichoro Suzuki . First dialy in English Today , I am writing a dialy in English . Today I sined up at this site . I can check your dialy journal written in Japanese . I thinkh hes ' got a good personality and is well grounded . When he anounced that he was getting married , everyone blushed . A Welcom Party we talke in english . I saw the corrections , and I had to start to translate with google translater . I use google translater when I do n't know the words . Jon always teases me that my Enlgish is regressing / getting worse Impactful tiltles ? ? ? Tourists can enter a limited area inside the mosque , even a non isram believer . It was a drink that I had not known before coming to singapopre . It is a cuppchino of tea version ! Last night , our teacher was a blocak man from Botswana . I 'm moving to another seet . If I want to thank you , I would write in the card , for example , `` Thank you for cherring me up : ) `` He 's a menber of a group clled SMAP . I submitted an application to a new job last manth . I have lived in Hukushima , Sendai , and Iwate before . It has been inconvinient to go around the Kansai district from Hakodate since the Leaman Shock . . . Today , I dicide to start a diary in English , to improve my English skill . My favorite drama is `` frends `` ! I 'm glat I found this useful site . I was part of the staff at a wedding celemony . Wearing perfume is not familier culture ( / common practice ) in Japan , so not many people use it . It was quite expencive , but it feels good though ! So it 's OK . You may konw that the highest mountain in Japan is Mt . North is a fascinaing mountain becouse it has many alpine plants in the summer time . I 've been into mountain climbing for 5 or 6 yaers . GCP means `` Grobal citizenship program `` . When I went home , Paster 's waife gave me a ride home . I thout that it would be convinient for me to go there by bicycle . We were confused and mad , but we had to obey the indecation of Doctor F . The gruop that has the shortest time wins the championship . Tere are the examples in my textbook . I 'd really like to thank you for giving me a good oppotunity . I had a gread time . I had better fhinsh now and go to the bed . It is a practice course and shorter than a real golf cource . Well , this post is not about the date of Hikoboshi and Orihime ; who are the couple of the Tanabata regend , but the one of my daughter and her boyfriend . He is a coffee beens buyer from a different company I am worried about tomorrow 's wheather . Do you still remember me , the day it was rainning ? First we were a little bit nervous to make conversation with each other But 30 minites later , we talked a lot and became really really freindly like we were then . Almost all of our firends have already gotten married and had children . . ! We got imformation from the service desk . I tried to conect the internet , but I couldn ` t conect it . In conlclusion , technology is useful for education , but we need to have the ability to sellect information . In my office restrant , we can have lunch for 500yen . However they ca n't drink after a gig ( Because drunk driving is a crime in Japna ) . Finally I recommned a cello for you if you have a choice of a cello or a contrabass . The Web is Degenarated Actually , it 's given us uncountable benefits and an unblievable world . But when it comes to daily life , however , I see people who ca n't stop texting or chatting on thier cell phones and who are absorbed in the web for long hours , not to mention myself . The tachers are jentle and nice . There are lots of evets this month , for example midterm examination , school excursion , and club activities sports day . Tret ' yakov 's Art Galery is in Moscow . He liked Russian art , and he bought paintings from great Russian paintists . This museem is named `` Tret ' yakov 's Art Galery `` or , in Russian , `` Tret ' yakovskaya Galereya `` . Now the Tret ' yakov Art Galery is a great museum in Moscow . They look at pictures by great Russian paintis . Tret ' yakov 's Art Galery has not only pictures and statues , it also has Russian culture and history , becouse these pictures are a part of Russian culture and history . I will add photos of Tret ' yakov 's Art Galery . Anyway , today is my first day in londonm . Plobably they will become sweet tomatoes : ) The yonger sister , Bess , likes to travel all over the world , and got married to a second - rate ( horn ( trumpet ? ) ) player . So we should try to ( consider / think about ) the yonger sister 's point of view . Bess , the yonger sister , has to depend on her elder sister . If I have the oppotunity , I would like to use slang words from now on . I would speak to my freinds , `` Hey what 's up , dog ? `` If you have cool hat `` That 's hella cool `` If I get angry at my freinds `` Hey stop trippin ' , dogs `` What would happen if I use those words to strangers ? Many people visite there . Still , I prayed for peace in desaster areas in Japan and all over the world . It was an intansity 3 quake . I want the webmaster to delete those pages , because the pages are not so usuful for me . I 'm just a 19 - year - old college student , and I do n't think my abilities in my native langage are any better than many other members from Japan here . What do you usualy do whilst you 're on the train ? As you know , Indonesia is still depeloping itself as a country and I feel their enthusiastics every day by seeing people on the street and huge traffic jam . everone said things like , `` What is your name ? `` , `` Where are you from ? `` and , `` How long have you been here for ? `` among many other things . Most of members came from European countries such as Germany , Italy or Rumania and they speak English really well . If we were in foreign contries , we would have to ask someone who is unknown to us something , for example , how to get something , like a vehicle , how to use stuff , or the ways to destinations . But how is it in your coutry ? The first exam , called `` the center exam `` , is held on Junuary 15th . It was the first time taht I used an Internet shopping service . My shop is a salad shop , therefore my lunch is always salada . I ate the salad fast , and when I opend the hamburger bag I enjoy the time when I study miocrobiology . San Francisco is a very exsiting city and I 'm engoying some activities here . I 'm lucky to experience the rare ivent . He did not know whether the post office ws nearby . It 's hard to explain why I like rany days . I belive that TV has reduced communication among famillies . I dought whether the daily homework would help students Diffrent clothes sometimes influence how people behave . I wish that this fundraiser will help to cheer on / support Tohoku people . The cost would be compared / compable Despite resistance / resesiting I learned the grammer ( preposion + ~ ing ) I 'm Russian but I actually now live in Moldova ( it is at the border with ucraine ) . I now have an iPod touch , a Mackbook , an iPhone , an iMac and an AppleTV and I am looking forward to the up coming new iPhone ( iPhone4S or iPhone 5 ) . Apple funs have to be buying their products again and again like me . She looked outside and said `` Snow ~ Snow `` with a very happy smail . And I 've realized that rassy , an Indian yogurt drink , is necessary for eating hot dishes . First of all , it requires a lot of excerise with mental control . I am going to learn how to use phoshop . I will spend my time today looking arond Photoshop . I would like to become good at it in a short time . I went back to my hometownin for vacationm . We can buy many prepared foods at the glocery store . More and more women are getting stronger and scarely than before and beat their husbands . I am waitting for your reply . Wecome to our club Wecomre to our basketball club . We beliveve you will jion a wonderful club . A strong person will bacome stronger . Everybody just thought that was a pretty strong earthquake so it would probably just cause a bigger Tunami than usual . Anyway , I learned several expressions and words which I 'd not been faimiliar with until today . My parents and I go to a worship sevice these days . Engrish is difficult . I was reading a Japanese comic yeaterday . In addtion , I went to Ginkakuji , Kinkakuji , Kiyomizu temple , and so on . Then I had a delicious denner near Kamo River : ) The delicious denner was ' tofu ' . I lost my earring agein . A is most adavantagious for them to enter nersey . I had a job interview in a Japanese restarurant . I have to go back to Japane in the middle of April to attend my sister 's wedding party . Today was the annual meeting for the presentatoin of research and development in / at my company . The distingtive yellow circles on the flecked lamp betrayed the lack of dusting . We prepared ourselves for the worst , because youth hostel food is n't renowded for it 's quality . > < Everyone looked suspicous at the fish and chips . I have three yonger brothers , so I had dinner with them . But I think that I want to speak that langage , so I want to study hard . He and I had a trabble today . I wish to memorize Qura ' an and remeber all its words as I remeber my name . I wish to puplish a lot of books and become a famous author . Before I did that I was listin to many different Islamic nasheed by English speakers like Yusef Islam and Dawud Wharnsby . A magazine guided me to this fanastic web site , so I 'm in . I do n't know how many people read my dialy , but I welcome you all who clicked my diary . I started writing in a dialy on this site to practice English . I will write about a festibal for children aged 35 , 7 . Today , only girls aged 37 participated in the festibal and only boys aged 5 participated in the festibal . Many families take photos of their childeren in pofessional photo studios during this festival . As she said , there were simular korean food , and it was the same in texture . About Yestaday I am a homewife . I 'm looking forword to seeing us graduate . I like taking pics and litenig to music . And sometime I draw peple and animals . I 'm eating more vagetables . Could you have my written work in the language corredted ? My aim of this year is to stady English . Today , I will go to one of the biggest shopping morll in Tokyo where I have lived for long time . I took a usual train . Then I sat next to foriegn a girl . I excited for I colud speak in English ! It 's no wonder that the Arabic people at the lawer levels can hear English better than us - - they 've been living here so much longer ( than we have ) ! . Bom hit Tom . We enjoyed playing gemes and talking with our friends . 9 years ago I went to the United States as an exchange studens . I 've aready been to Oosaka this summer so I ca n't travel too far again , however , I plan on visiting my friend 's house . I have to be carefull not too spend too much money in the meantime automatical translation is not accurate . . ? I 'm writting this entry by ( on a ) laptop on the train . When she came to the hospital she looked scaerd but stayed still . she repliled that even her slightest move would stimulate it into rustling There were beautiful ocean view and cozy atomosphere in that . I think we can be more free , espesially in Japan . Occationaly , I open windows even in winter day ! English in China is very importamt for my job , so I continue to learn it in my free time . I am so pround of myself because of my small diary in English , although it 's infantile . Recentury , I have been very busy everyday . Then one Sunnday , I was invited by my friend to go for a drive . I think my family will appriciate eating it every day . Personlly , a friend is a person who makes you feel at ease , or make you feel at home . I 'm glad to join Lang - 8 ! ! I hope I can make some firends here . I was very happy yesterday , so I asked my room - mate , who was sitted nearby , to take a picture of me and my sweets ( but this picture let me look fat , haha ) . This surgery lasts only 10 minites , but is it safe ? ? ) He is working for a Japanese company in Shabghai now . I am goint to accompany my Mom to Japan or Cambodia and study TOEFL regularly and hard . Everybody came from different fields and backgrounds but they all have the same eagers to learn new things and make breakthroughs inlife . So now I feel counfusion and flustration . I heard it from my co - worker only today and I was so suprised because she heard it last Firday but it was the first time I had heard of it . Althogh before I could not reach my head to the floor while sitting down and opening my legs , now I can do that . * Video Grid - - smilar to Picture Grid . English that Japanese high school students are studying is really grammertically difficult . I remembered almost all the English grammers , but still , it is sometimes difficult to tell where S ends and where V goes . But this word is actually difficult and it is wierd if I use the word when I talk with friends or children , right ? Yey . . . I am so happy today , because my company got a big contract this morning . It 's big news for everyone in our company . It means we have things to do , and do n't need to be afraid we will be lalaid off , or forced to take unpaid leave . ^ ^ , At present , the globle economy is so bad , so many people have been fired , so it 's helpful to get a big project in our company , ha ha ha ha It was slipepery and dangerous . I 've continued to learn English , but my skils are n't looking to good . This surely incruding me . becouse Japanese does not have words with those meanings . I experianced various things both good and bad . So they came to my house and celeblate the new year . Every year we watch Ekiden where collage students run long distance and pass a batton ( taski ) . my cousin 's childlen came to my home for the first time . Third , the author described a ultra malathon race that took place in a mountainous area in Mexico , where American top ultra malathon runners and Tarahumara runners competed against each other . I began writing a diary in English at this web site , and try to correct diaries writen in Japanese . They looked like people who belong to karaoke clabs . These are quite expencive here in NZ . I usualy ca n't afford to buy these things . Next manth , I will make and launch a model rocket . My boss who has good sence of humor and is nice guy allows me to study something when I do n't have any job . I went to an English seminar last saterday near Tokyo station . But that seminar was a good opotunity for me , as I was able to meet highly motivated people with a higher level of English than I . I will sit for a TOEIC TEST in Novemver . Ran to th public bath I have girlfrind . She told me to let our relationship return back to when we were frinds . I 've got to appriciate that . I work in big brewery in Poland as a chief technolog . I did n't think I will like the book cuase romantic novels bored me There are ear - clearn servis in Japan . Clearning your ears feels good . What happens if you do n't clearn your ears ? The tradisional japanese earpick has a top of cotton or Daruma . I printed out my diaries with your correctings . I 'm reviewing my diaries and studying English by reading many people 's correctings now ! ! ! I hope that I increase the range of my vocabralies and how to express myself . It was 9 p . m . when I arrived at the centrul of Bergen . I have had a spech disorder since when I was 3 - years - old . I am a saleman in spite of having a speaking problem . If I were not a stutterer , I would laught at it . I did n't even think that I would become a saleman . I have met several people who overcame stutering . They said that being old and having experience counts so I belive that I can get over it . I did n't feel bad at frst . basically I lost attension easily if I had to read shakspeare right now , I would probably die instantly . And sice I 'm a person who easily lets distractions get in my way , it 's good for me to learn how to use my time more efficiently . I have been studying Chiense on youtube . On 31 Dec , I ate Soba ( Japanese noodles ) and watched the Kouhaku song competion TV show . In an onsen - hotel housewives can relux to their heart 's content . It means they can escape not only from daily household choires , but also from having to do anything for their family . our food self - sufficinecy rate is really low , compare with other country . If my sentences do n't make sence or are grammatically incorrect , please correct them . They had come from England , Canada and Amarica . I was very nervours , However , my teacher is very strict with me and she always says to / tells me that the facial expression of my painted cherubs looks so weired that I have to repaint them . But I believe that if there are diffrent forms , then there must be some ( We were able to listen to the sound of the waves while we soaked in the buthtub . ) ( Some friends talk about their seacret stories , usually relating to love . ) ( I do n't know why , but I also feel like talking about that as I am soaking and relaxing in the buthtub . ) This prroduces good harmony with white bread . Also , I like chocorate paticurally the bitter kind . Are my feelings straing ? ? Turnitin is a detector for bad academic practice or pladiarism . If Turnitin warned you that your work is pladiarism , you must rephrase the sentences or reference where you borrowed otherpeople 's ideas . Otherwise , you will lose a lot of points and , to make matters worse , you will fail the course immediately . it is like a child 's drawing and I am so embarrasssed . Actually , at first I wanted to study phsycology as my major out of my hometown . As a result , I followed one of my best friends to the university that I 'm stuying at now . Becouse the bang hung in my eyes . These clothes are a necessaly but they are also a little expencieve for me . Now , I look at my game collcetion and I ask my self how did I play all these games ? It only bleed for like five minites or something but it was nothing bad . Now , I really want my wife to be a Japanese cartoon whorshiper . As I had thought , she entusiastically read it HAHA . and brigth is my English name . In our city , winter is ofter cold , with strong frost , snow storms and ice . Summer will give the possibility of travel , opening new picturesque corrers of the motherland . 5 To raise my English skill from beginner 's level to intermeditate . So I was reserching the market related to these products , and costomer . I 'm still cotinuing the reserch today . Sorry , my English is really wrong , I appriciated the support . I am writting my dialy for the first time . Nowadays I study English for bussiness . My bussiness is being a salesman , importing produts from the USA and Japan . And since I use a lot of my time to read English , I am not good as good at speaking Enlish . So I wish to get my speakin ability up to scratch by writing on Lang - 8 dialy . I talked to my high school frind about school life . Saturdy 16th , Sunday 17th Most Japanese students do not go to school on sturday but this year I will . I called her back wondering what had happend . Due to her mischief , I enjoyed a conversation with my old freind . Recently I 've had headach and stomach - aches . And I think peple can move much more easily from country to country than in Japan because Japan is an island . Two celebrites committed suicide last week . Amazing goal achievment I am busy because I have to hold a public hearing for my doctrial degree on Friday . To achive this , I need to efficiently take breaks . MUSIC is one of the my lifelines to survival in these stressfull days . I aired out my ' zabuton ' becaouse the weather was fine . She wrote her feelings and appologie in it . I took part in an Enlgish Speech Contest yesterday . It had beautiful and soft sands and a few waves probably made by the breeze . It totally looked like a small seashole . The lights from each house shone brilliant and conjured up a feeling of nostalgea for a fleeting moment . ( It takes you 7 years to become perfert at the piano . ) I 'll leave my home in two years and I have a choice : I can lose 2 years in music school and learn the basics or not even start . : When I 'm coming in , we would live for the rakers or the Sixers ? : No , I know what your first basketball game ever , and I know its pretty exciting , but when it 's all said and done the season would n't be long enouh . In the beginning , I guessd that 1000 people would register . We met in the uiversity classroom . Finally , Josep , a friend of mine here at lang8 , corrected it . : ) Since then I 'm afraid of other people , expecially their eyes and words . There were serveral kinds of rubber duckies in a basket . This site is a little diferent . . . Later , I saw a vedio on youtube . Despite this , the groom seems very calm and plite . The cow is an old friend of the old man , who has raised the cow since it was very yong . So I only learnt grammer , reading , writing , but not speakingg . It helps us improve the ability to relate or summerize something in ways that are easy to understand . Anyway , I have to say that learning anything is not a piece of cake but our passion will help us improve easilier and sooner ! ! ! ysterday , I went to work . I am a process engineer in a foreign - funded company , but my job is tranning the operators in how operate the machines and maintain them . I dream about doing a great job , I dream I am a milliomaire , but fantasy is pretty and the real word is cruel . The Internet helps us communicatig with different people . That 's what some Japanese had done while Japan was invating Asian Countries when Japan was once under Imperialism rule . When I read the sentences , my sleeping head seemd to awake suddunly . Instantly , the whole world disapears and all I can see is the light with all the colours . Today was great througu I still felt like a isolated knight except , when I was talking to this girl who was really sweet who taught me the words `` serendipity and kismet . `` I do n't understand why we must not talk on our mobile mobilephone on trains . Most of the menber in Genshiken are male . Becasue I like the French bread most of all . I want to eat it soon , but I 'm waitting to eat it till today 's dinner . . . ( > - < ) But I have to pass the school exam which has an interviw and a resume before IELTS . They will become important people to me in the future because they can cange Japanese medicaln practices , by thinking about Japan objectively . I 'm looking foward to seeing old friends in this ceremony . Even if things were not wrong and made sence , I would still correct things if things sounded unnatural . But since becoming friendly with forien people , I 've come to realise ( noticed / discovered ) that bending the truth is more common in Korean cultures than other cultures . I went to the gym to play baskt ball . I 'm from china , I can speak chinease ! These days , I have been busy writing 2 kinds of graduation thesis ( because I belong to 2 kainds of seminars . . . ) , but these emails made me feel a little refreshed : ) We had a ferewell party for the overseas studens yesterday . So today , we 're going to renew our expired pasports . Of course , I am allowed to sleep if nothing has happend . They are vey useful and fun ! ! I alredy have three articles ^ ^ My sister highly recommanded a Japanese movie called Detroit Metal City ( DMC ) . At that time , I was curious about the storyline because there was a navie guy and a weired guy . The navie guy acted in Death Note and it 's quite different from that movie . His hairstyle was so funny that I could n't help but laught at it . Im ( like to ) stay home and take it easy without doing anything Selebrate the first of I am going to make pasta with tomato - sauce and baco and the cold potato potage soupe for her . I think that everything will gose well . I just came back from my trip to Mui Ne , which is in the Binh Thuan provine . It was in a restsaurant , and there were 7 people present : myself , my parents , my husband , his parents and a go - between . I think my English is getting better and one day hope to speak English fluntly . ^ ^ My favorite idol commit suiciside . My hobbies are snowboarding , traveling , and studying foreign langueges , now I study English and Spanish . If you are learning Japanease , I will help you . but I preffer a whole one with its insides included . I garmish saury with some grated Japanese white radish , Sometimes cultual differences caused misunderstandings . The words I used were misunderstood , but it told ( taught ? ) me a lot of things , such as how important it is to understand the backgrand of the language . I went to school and leared about English Education . Recently , she went to hospital and was given a check up , and was diagnosised with tubeculosis . Tokyo prefecture and the office that she belongs to started to move for the purpose of informing many people who might have caught tubeculosis from her so that they go to hospital and are given a check up . Cerebrities have many chances to comunicate with many people , so I think that they should go to hospotal and be checked up often . I could n't understand why it was not working , and I asked to my hasband for help So , will who is an Amelican or someone who can speak English please correct this entry ? I started this entry whitout any ideas to write about . The wheater ? Well , today the sun decided to show all of his strength and the resoult was a realy hot day . Maybe he picked a fight with the poor clouds and banned them from the sky . Okey , I just finished talking about wheater . . . I know that it 's only 9 pm but today was a realy tiring day and I 'm realy sleepy ( That 's why my post is so silly and has almost no sense at all . I do n't know what I will say here , I just want learn more about English and at the same time make friends with whom I can comunicate and pratice the language . The hightway in the capital was so packed that we kept moving really slow for an hour . I am 19 yaers old girl working in advertising agency . My position is a secretary . But I am oing to change my job because the financial crisis happens . This evening , I watched a movie called `` This is it `` which is composed of footage related to Michel Jackson , mainly the footage of rehearsals for his concert in London schejuled in July . I made dozens of rice balls , filled with pickled ume , salted salmon , dried benito , tsuna , and many other ingredients that were available in my home . we have a long hoilyday So it was too late to get a driver 's risence during this break . When I saw that the patient in the show could n't wear a jacket correctlly ( she put it on inside out ) , I was astonished . I 'm so nerveour and I feel like there 's butterflies in my stomach . I opend an e - mail from my friend , It was about ' Facebook ' ! Last January 17th was the 15th anniversary of the Great Hanshin Earthquak in 1995 . Kobe is an urben city and famous for fasion and nice foods . Many peopl were chrushed and burned to death under the rubble of houses . I am going to keep writing Englis diaries . I hope my englis gets better and better ! peaple all over the world have to help each other . we have to help each other by using euglish in the world . Many tipical Japanese companies have new years vacation during the first three days of January . Today was n't a spesial day . She picked it up and brough it to their house to eat . Wollen Sie hier kommen ? / Wollen Sie herkommen ? My friend who used to lived in Kitakyusyu created this game . Each of my uncles and aunts has a son and a daughter except for my yougest uncle . By the way , I wanna know about cities in foreigh countries . 4 ) Each compartment has priority seating for eldery people , pregnant mothers and handycaped people . I think that it depens on each country 's culture and history , which numbers are considered unlucky ( They studied alculating and memorizing instead , though . ) I tought that he was very kind . Then I 'm very surprised by the price of the vegitables . For exanple , a head of iceberg lettuce is 295 yen , a cabegge is 299 yen , and a tomato is 199 yen ! ! I want to speak It very well and make new friends elso . most of them have thier own jobs and they practic soccer in their off time , nights and holidays . Last month , the Goverment gave a medal to them for their glorious match in the Women 's World Cup . My throat is still swallon . Tomorrow is mother 's day . When we are young mom takes good care of us , but as we grow up , mom becomes old , and some of us do not treat their mother very well . Now I just want to say everyone of us should take good care of our mothers ! Tomorrow we must tell our mother `` I love you , Mom ! `` I hope every mother in yhe world will be happy everyday ! I have lots of friends here , but they are either Singporian or from other countries whose first language is n't English . So I want to have oppotunities to talk to Caucasian people in order to improve my pronouciation . Today my business partners invided me for lunch . My favorite sezsom is summer . Afterwards my friend said he wanted to see Avater , so we went to a movie theatre and saw Avater . I was really shocked and asked him why he had never spoked to me in that language before . Why do so many people come up to me these days and tell me thier ideas ? ^ ^ During the Cristmas season , I was too busy to enjoy the festive feeling . Actuallly , I really like this drama a lot , so I made korean subtitles for the episodes . If you have The time , I recommand you to watch that drama . ! I heped her cut peper for a long time and then we went home but English speaks to me and says `` Vitaly you are too stupide `` Yeaterday , I went to Ang Mo Kio to meet a friend . We are langagge exchenge partnar . At first , I would only write a jounal entry in English on lang - 8 , then I wrote it down on my notebook after someone corrected it . Well , my priority now is English , because next year I 'll take the university entrance exam . I chose English as my foreign language , but I 'm falling in love with Japonese ! Natyrally , I will correct your Japanese too . I hope I can enjoy every class during the second semestter . Even if I do n't have anything to write , I shoud write . His eys always look sad . Topic : It has recently been anounced that a new restaurant may be built in your naighborhood . Moreover , if the meals prepared by this rastaurant are tasty , you can treat your guests to a meal at your favorite restaurant . I should go there early because I am affaid of a traffic jam . I think she has a lof of things to tell about about her interview . and we all felt disappointed that we could n't have the ceremoney . So we dicided to go to the university together another day . However , I often switch the opposit way of the function I want . I often get anygry with myself , when I go to get the coffee . I find nothing , and I have to do all over again . One day my throwt was sore . Now I ca n't breath through my nouse . By the way , I watch the TV TVdorama `` soredemo bokuwa ikiteyuku `` . Quarralling severely with my mother , working for the whole day till 5 pm . I plaied tennis with my friends . We plaied tennis together . In the afternoon , we 'll take the bus to the Night Safari park and be there untill 10 : 30PM . I do n't know whether my recordings souds strange because of that , or because of my pronunciation . . . Some residents could n't understand how important it is for us to separate garbege and recyclable wastes . The garbege in the recyclable waste container had rotted and attracted flies . One of the apertment 's mentenace personnel came to fix the problem promptly . My hobbies are playing teniss , listening music and spekaing english in a compettition debate . If I had a lot of money , I would treavel to an other country for the summer . ^ ^ Polamalu tackled by hai Taiyaki is a Japanese famouse confectionary . I want to eat something delicious , something yummy , something that will be a real pleasure , maybe Chinese food , maybe Japanese food or maybe other ajian food ! ! Since they knew I love raggae music , they took me to a raggae bar . Every time when a disaster happenes , many politicians would asumed each other for it . However , they do nothing about it He told me he was surprised with his docto 's comment . The humster arrived at my house in a sealed box . I thought chewchan was a male . My freind did n't tell me otherwise . He is [ He 's ] one of my best firends . Here / This is a kind of radito program that he made . Outside is heavy snowing , although it is just biginning of December . and I prefer to see a varioty of clouds in the blue sky . I wolud like to master English . My dream is to see movies in English without subtitles and make many friends with foriegners . I wanted to buy an Amerca brand , but they did n't have any . I have n't used Dreamweaver for half a year , so it was hard to remenber how to use it . However At the office , I ca n't talk to anyone in English on Skpe . Besideds , when I get to my house for the work , it is already midnight in the United States . I 'm srue my speking level has been going down . . . . Even though I know I paid a lot of money to take the class , after I lose interest in studying at school , I do n't feel like going to scholl at all . Although it seems like a kind of poison , alcohol has to be a midicine . Some people belive that drinking alcohol is not good for their health . According to an health resarch istitute , drinking has a positive effect on health . My parents and my granma were disapointed in my failure . I am very worrid . There will fewer friends in the univeristy , because some of them have alreay grauated . Thank you for reading my journer . I travled to the western part of Korea , Kanghwa Island last weekend . I 'm just a little nervors . My neighbor Department 's peaple went on a business trip today , So My Department 's peaple have a little free time . I 'm helpless from secon smoking . It was difficult to understand what they said because they were speking English with a British accent . Today I 'm talking about an Itarian restaurant . . . . . . . I went to Saizeriya , an Itarian restaurant , with my friends , do you know it ? It 's very cheap and dericious . For example , Milan style doria is only 299 yen ( maybe about 3 $ ) ! Almost all dishes are less than 500 yen ! I think Shogaki , the president of Saizeriya , is very clever becouse he always tries to keep the prices down and make the food more dericious . He has his own farms and grows vegitables they use . Besides , from the farm to each restaurants , the vegitables are kept at4 degrees becouse the vegitables canretain theirfreshness in 4 degrees . He tries so many things to serve cheap dishes and be more dericious ! I am thinkng about giving her a hand blender I didi n't know why , so we stopped eating , and I tried to make her sleep . I listend to his newest album ' the pursuit ' many times . We drank a lot of alcohole , talked , and danced ! ! ! His work requires him to stand up for long periods and carry heavy water - filled pots from the sink to the gas oven many times a day to prepare for the restaurant opend . The next day , he enterd a smaller hospital . Also I want to increase my English vocablary . I usuallly go to the school 20 minutes or so before the class starts . But these days , I feel relaxed and mannage to communicate with them . My doughyer 's graduation ceremony from university was postponed . We enjoyed talking , having some snacks and drinks while lauthing out a lot . Soy bean milk is not only water but also it 's useful for your body because it can help to reduce a colateral in the blood , reduce the risk of cancer , reduce the risk of heart disease . I will go to the shopping mall because it is coller than my room . I talked with an American guy and a philipina whom I met here on Lang - 8 using Skype yesterday . But the citizens ( residents ? ) did n't want to abondon the school . The school parking lot is filled with cars decolated with a Kei - on character . Luckly my mom lives near the place , so I parked my car , went down to the river bank and spread a tarp over a good spot . Befire I send an e - mail we have to show my e - mail draft to our boss to check it . He told me there were two verbs in my sentense . Anyway I still want to make full use of this website and keep practicing wirting here . Tempureture was n't so high , but it was very humid . Certainly , it is very dengerous , because Japan rely on nuclear power for many part of electric suply . So younger peopole in Japan should have more interest in these problem or What do you think about a nucler poower plant ? I must sutudy English harder ! ! If I could play on his theam with him , I would assist him . I recived the glasses from there . We used to studay at the same school together for a long time . She is two years older than me . So I that 's how I apented my time in the afternoon today . I am going to write my dialy in English to practice my skills The title is `` CASE CLOSED `` , which is a japanease story . The true love between a vampire and a human really moves me and I always look forward to watching the `` New monn `` . So I decided to read the book , but its contents are a little defferent from the movie . I found it in two articles , but each sentence is defferent from the other one , so I ca n't understand how to use it exactly . I wondered whether or not I should write about it , but I decied to do so because I just want someone to listen to it . I coud n't catch what he said completely , but he told another person with a laugh , `` Wow , someone is talking Japanese ! `` I earn my pockt money by doing part - time jobs . So I will write my diary with `` Look `` or `` Look like `` as I leared them . Shihomu , my freind from Japan , even told me `` I thought you looked Japanese when I first saw you `` I want more time to practice skeatboard . ( whoops ! ) Hellow . My name is Kim Dong Hyuk . However , I do n't like Harry Poter . I think Harry Poter is childlish . I feel like many reports and presentations are just wating for me . An exhibition of the works of Fernando Botero has been on view there since Julyl . The first exhibition I volunteerly went to in order to appreciate art works , other than a mandatory school field trip , was in 1999 . In addition , there was the argument `` after the plan , Korean casinos will go bankrapt , and Koreans will be jobless because 70 % of the casinos ' customers are Japanese . `` It was really fun , but I needed to get dtunk and also practice some dancing . cours he is the most popular singer ? in the world . and thanks a lot that you tought me anything . I like watching movies , especially movies like `` THE DEVIL wears PURADA `` . many foreiners know very difficult kanji , including some of the ones even most of the japanese would n't know . I fell asleep twise or more in an hour . 2 : To remove the strong bitterness , boil them or put them in cold water for 10 minites . I seasoned them with solt and papper . It is a rental apartment , the rent of wich is over 1000 dollars per month . I never think that let it snow in my reagion , but it makes me smile . I saw the rainbow on tha way to the English speaking society at 5 : 30 p . m . yesterday . Please correct some sentense . She grew more than I expected becaouse she is a mix of givern : In ancient times , Rome governed all the known world . bend : I will not bend my oppinion even though all the people here oppose it . LOL , I was the superman of the monent ! and creat a sustainable future on its own accord . Hi , it 's my first text on this page ang I hope that this page will help me by improving my English . You must control the robot arm with the two bottons : `` forward `` , `` rightward `` on the control panel . I 'm so hanppy have this platform that I can learn language on . My English is not good , so I want have other people help me . I can teach you Chinese , and we kan help each other . Since Presient Obama seems to be loosing his `` magic touch / magical powers , `` I am not surprised by the outcome . But I think this music clip is good entertainment and a song that gives me the impression `` This is Michal Jackson `` . according to yestoday ` s translation , boss corrected them himself and praided me for a good job . But , I ca n't write natural sentences in English or speake English well . Englis as a second language Frustration is always followed by the goal to be perfect , perticuarly in learning a language where there is no end in this field . Astronomical sums of moeny has been invested on English education in Korea . I dont 't have the instict or the intuition for the English language . `` I guess that 's because I have n't had much ( a lot of ) oppourtunities to make small talk . my hoby is sports and I love many spors so I 'm massule . Oppps , I 'm a Korean guy . We count nunmers starting from the number one and the person who says the number thirtywill be the loser . Recently , I 'm lerning not only jazz , but also hip - hop and rock . I will stady English everyday hard ! I registerd at this site immediately . First , I made Korean soup which is for birthday soup . Today was not anyone 's birthday thoug , but it tastes great ! ! I dicided to practice English writing in this site from today on . so I decided to take a bike ride with my frind but when I went to pick up my frind it was still rainning , Now it 's suuny again , Would you help proofread these sentense ? I bought stickers - thiese are for you ! By the way , the 31st of October is Helloween ~ ! ! If you have free time , I would like to exchange Helloween goods . For example , people used to live in Japanese - style homes , but with the modernization of buildings , these types of structures are becominng things of the past . The vast amount of vocabulary is making me confused and frusted . Do you relize my weaknesses in my journals ? At first I could n't believe wheter or not the news was true . this weather makes me really dipressed ! ! ! the internet , junk punkfood and smoking have been my life . Her strongest point was that I ruin my health by not eating eggs and dairy products but when my brother empoisons himself it 's something where nobody could do anything about it . She is just too stubburn , but so am I . . . I think I made mistaked all the exercises and I 'm going to get 3 ( a really bad mark D : ) . Of course , there are people who are very frank and never diploomat . If you have an opposing veiwpoints or any advice , please tell me . ( ^ ^ ) I like to play guitar and sing , but I ca n't practice all the time because I work in System of enginering . I made chicken kutlet for lunch today . Today , I am going to tell you how to make healthy chicken kutlet ! Today 's lunch was very yammy . One more thing , Februry second is Ezaki - san 's birthday . I wasn ` t able to focus during the lisning part , I don ` t think I will get a good score . Resently , after I get home , almost all of the things I do are doable while sitting . I know exercise keeps not only my body sharp but olso my mind . I had studied English to enter coullege , but my English is poor . I will wash it untll noon . We would like to hand our property `` chilren 's songs `` down to the next generation . However I tjink they are more attractive than Tokyo . Anyway , we enjoyed the beatifully displayeddishes and scenery of the countryside . He might be straved ! The A - course ( which we oderded ) Grilled octpuses with herb . Avogado and fruit cock - tail . especially new recuits who recently graduated from college . I 'm lokking forward to it ! ! ! In the nersery my three - year - old daughter goes to , teachers choose an elder child as a partner for each young kid . No food , no erectric , no gasorine . . . I 'm here ; becouse , my English is not so good . . Actually , in my dayly life I do n't have to use English ; but , my father lives in California , so I want to work on my English . Anyone , please help me and be my freiends . It is for my illustation project and the other style is like a manga for bussiness on a web gallery . I will have a lof of pictures to show you . . I have to wake up early becuase of the heavy load of my job . Because I sit a lot in front of my desk , I go out for lunch with collegues whenever I can . I enjoy working and I always appreicate the opportunity to work with I do n't eat a lot becuae I am supposely on a diet , although the diet seems to never really succeed . If you meet people you have bae memories of , and you have not kept in touch for years , My favorite English words are `` lovely `` and `` briliant `` because I like the `` L `` sound . Sometimes I have to write business sentense in English , but I do n't have the confidence that it would be written correctly . However , I can manage to communicate , so no noone tell me whether the sentence is correct English or not . When I was a colledge student , I majored in Danish language and society . Japanese has only 5 vowels so 17 vowels is a surpriring amount . In the end , my father was able to arrive at the hospitl in time to be present for my birth . I wo n't forget white paudry sands , parm trees , cool breezes , and the beauteful light emerald green sea . I woke up this morning with a little sfuffed nose . . . one of my friends to explain this something to me , she told me that she also didn n't understand it I wached the last season yesterday . ( It 's called `` Doyou ushinohi `` ) Howevey I lack momey to buy it . They are a little bit expensible for me . . . . And I know they are disgausted by that . Well , when you were a little toddler , you problaby watched some cartoons on the telly . I 'm confident I 'll pass IELTS because you have taught me aussei English so I 'll study harder than you to speak english well . I enjoed chatting with my friends in my colledge . I felt flight attendants are very tactiful . As such , I feel so stressed out affter school . Affter studying about 30 minutes I start to feel sleepy . so effectly ! Today I whatched an ice cream truck pass my house . ( Totonto Lake Shore west ) I know that sometimes they do n't ship an item with insurance or traking number . I sent a masaage to the seller . Today , while I was taking the bus to the place where I study Japanese at , I saw somone offering their seat to an elderly person . Coincidently , there was an elderly person standing next to me . By the way , I work for the company in Tokyo and our headquaters is in the United states . Gramatically , is it a conjunction ? Yappie ! ! Vocabs : I do n't like raiy days . In this photo the Yukata features `` Pika - chu `` , and is designed for the children . I recognized abdominal walls , that were cutted open and the bowels came out . To be surprised , she told me that many peoples was arrested by false charge and killed in the cummnunism age . Cherry blossms Another friend is taking matenity leave . She is looking for an interesting job and appling to many companies . I 've decided to try writting a diary in english from now on . These thesedays , I really want to make freindship with people from other countries . I 've gotten talking out of the way , I want to leran english , and make forein friends . I 'm going to give a Farawell party tomorrow . I choiced the Dopamine key chain ! This trip will help me forget about everything that hapen at work . For example , He alwasys smoked in the living room even though I told him that I 'm a nonsmoker and I told him to somke outside . A Japanese person posted a comment in Japanese which basically said `` I think your journal is very nice , but I ca n't understand why people made so many corretions to your journal . When it comes to crimes , I think mass media play an important role to inform citizens of what 's happening on a natonwide level in terms of violent crime . Koyasan is very famous as a place of a type of Butism , called SHINGONSYU . I invited my foregin friends to my town . My dream is to run a youth hostel in my town and I hope that many foregin people will visit my home town . How to defind far and near ? It was a chllange , my mom wanted to watch TV and write somthing down at the same time . The eyeballs ca n't balance as well as uaual . People always say : ' The eyes are the winodw of the soul ' . In 2007 , I went to America for 2 weaks by myself . Maybe I do n't need a boyfriend . I hate the idea of marride . My fater and my mother do n't like each other . Persoanlly , they affect my opinion about marriage . Some day I will change them to a ceramic and prastic mixture later . . . . more and more companies tend to value thier employees ' abilities or personalities over their academic qualifications . Just taking classess then graduating would not help themgain knowledge and improve their skills . Therefore , In my opinion salary should be paid for the results of daily work such as : one 's perfomance and the amount of benefit they have brought to thier workplaces . So residents are required to help each other and participant in comittee . There are many comittee , such as the Representive Committee , the Bath Committee , and the Welfare Committee . The members of the comittee are engineering students , but they are amateurs . Because of that , sometimes they ca n't deal with problems , and then the internect connection is cut . Unforunately , some members of the Netwokr comittee graduated last month . Disconnections from the Internet have happend more than ever this month . I tied it with a ribbon and painted it penk . Therefore I ate a salad so as not to skimp on vegitable . I ca n't give up on comunicate with him and all English speaking people yet . It 's also a good experience which can arouse my interet in languages and at the same time help other people . ( interest was misspelt ) I am willing to correct those articles in Traditonal Chinese but Simplified Chinese seems to prevail . ( Traditional was misspelt ) Although the grammer and usages are the same , I am wondering if my corrections are easily understood . because I want to speak English for Bussines . I organise a loudrock comunity website in Japan . So I 'm not familier with programing . And there were lots of custmers ! : D hehe Every custmer seemed to love our shop ! : ) Oh , thank you God , You saved me . `` Right after expressing my thankness to God , I fell on the ground again . I still remenber that . Seems I was ready not to belive anybody and anything what might happen on this day . We also call that twelve yeaes `` one period `` . And if you were born in the year when the anymal symbol was a rabbit , you are called a rabbit person . If you want to kown more , please write to me . People want thier lives to be special and want to live differently than others . her hasbund is cool and a kind man . How to remmenber more words and ues them correctly Altough I do n't think that learning history was the waste of my life , I should have majored in English . I know that she particulary likes Japanese chocolates . My wife hasbeen having a child - care leave , but she went back to her job in Fevruary , so we have had less time to take care of children than before . Now that I have completed some my tasks , I wish I could come to wirte my journal and proofread my Lang8 friends ' journal like before . Apparently I threw it away when I was sleeping uncomfotable because I had a stuffy nose . This spring , Japan is very hot in comperison with last year . It iwas because one of the students had complained to me about the content and direction of my class . Maybe it 's their culture , so if you want to go to Hong Knog then you had better not mind it . Yesterday , the minister announcemented that maybe a blackout will occur . When I 'm at work there is not much to do so I pick up my notebook and start practicing my hiragana / katakana . I hope that someday I can be good so that I can go to Japan to sharpen my skills . My life dream is to become an internacional businessman and to be working all over the world , but right now it seems like such a dream . So much like a dream that I often feld down and surpassed for such a dream I have . So getting back to the main point , after I finished my work at my father 's place I took my computer and watched some anime . Also , if you are learning Korean , let 's be freind with each other . Prease tell me your answer . In Japane most people are punctual and honest . I also want to watch a bsseball game at Yankee Stadium since I am a big fan of baseball . Even if my brain was not totaly in its place , I was still able to do a 20 Japanese character study instead of the required 30 . Cororado Rapids won their first title of the MLS on the same day . The audience at Nagoya was comprised of 12650 spectators , and Cororado had 21700 spectators . I study Italian too , I feel this language fresh because I have studied Italian since three manths ago . This is the fiest entry of my diary . `` Do you speek English ? `` Thanks to evryone who edits this . I finished reading `` How Sratbucks Saved My Life `` today . He started cleaning the store toilet and bagan to learn valuable things through his job , and he finally found his true happiness in his new job and unfamillier environment . Good feedback helps students to implove . How diffrent are feedback and assessment in English ? As you might know , it 's not as easy as it seems to keep writing diary entries continously . But in these free days I had also done hard for my English , even some of the days I had to perpare to my exams . Did I just make an execuse not to do something ? I 'm a bit hangry . I did not arrange a costom for the party . But , I am double majoring in mecanical ( I think it should be English literature or English educatinal , right ? ) Look at this crip , please : D My father is motherate . He is not so agreeable . My littel brother is active . He likes playing soccer . Blue tincture cartain are popular . I teach Physics , Ana teaches Japanese , Ega teaches Indonese , and Yanti teaches Music . At the benning of February , some friends of mine also came to visit Tanzania , and we traveled Zanzibar island , which is the best place in Tanzania to rest ( or relax ) . So I decided to use my vacaton ( only 5days including Sat and Sun . ) for English lessons ! Since I could n't understand anything , I do n't know waht should I do during class . Someday I want to taravel around the world . I stayed at home with my nephews , and one of my nephews used my telephone to record the vedio . Since I want to be an exchange student in Swiden , I must improve my spkoen English . This afternoon , I used a subway to go to the cener of my city . I wonder if public manners for young girils are chainging . I live in the dorm and I have four roommea . It takes about 20 minnutues by car . Therfore , I have to ask someone who has car to take us to the grocery store if we need some fresh produce ( another word for vegitables , fruits and the such ) or meat . His concert was very fun , we enjyoed listening to his songs . Also , we ate a many kinds of food , for example yakisoba , tamasen , bananas coverd with chocolate , etc . We enjyoed the school festival . Becouse I mainly like Rock music . Let 's go to the movie theater `` And for just 30 minuits . Well , I do n't get tooo much , but it 's stil a good deal : D I did n't execise last week since my job training . It is straight and has wide a sidewalk , then I saw some people who enjoyed walking or ranning with their dogs . Birds were singing and frowers bloomed with morning dew . I 've been reading the wizeard of Oz . Does it mean that Dorythy finally caught Toto ? I got myself into net surfine . I hate people who laugh at others who are trying to achive something difficult `` . Although my Enlish course has ended a long time ago , I did n't want to stop learning it . he really nice sometimes when I have a proble I really like to ask him about it because he can help me solve the problem . I looked youtube for a long time about the animail and fish and I felt happy watching it . Now , mobiel - sites are important for E - commerce in Japan . Leraning another language is difficult for me . So I studied English for three or four hours a day since I started lerning English . Competing with each other and achieving goals together will shapen / shape their skills and bring beneficial effects to their learning . Generally , it appears that online learning is more advanced and a fuitful tool for studying . Istanbul is split by the Bospurs . Recentry , I have neglected studying . Tset week However I wiil go there someday ! I studied how to anwser CET - 6 questions lately and came to realize that English is a more subtle language than I ever imagined ~ ^ _ ^ ~ She said `` Just listening or writing wou n't work . I 'm writting this with a dictionary , but I wish I could write without it ! Yesterday , I tried making silver juwel from silver clay . The game remainded scoreless for 90 minutes and went into 30 minutes overtime . Japan finally scored a goal with a beutiful shot to end the overtime and won the game . I 'm a big fan of soccer , and I belonged to a succoer club all the way from elementary school to high school . Japan is now the chanmpion of Asia . After coming to Singapore , I have been lonly becase have no friends in Singapore . Praying everyday was getting hader but I realized the heart of the Lord . Nowadays , since Kaiten - Zushi are spread all over Japan , we can eat Nigiri - Zushi at a rasonable price . There was a terrible traffice jam . Moskow very nice city , but here derty air , therefore in future I want live in the country or abroad . I thought it would be a nice opportunity to improve my English writing skills and make good freinds . But Karina , the Arina 's friend , was even more cute and beautifull to me ! That evening , Kostia did n't succeed with his beloved Arina , unfortunatelly , he was too shy and confused . I will try to introduce you to the story of AVATAR briefly tommorow . I 'm a happy gril , because there are many kind and good people around me . Today , I was a cuple of minutes late to school because I got up later than usual . I have started to write a dialy in english . Last month I took the `` Toulism English Proficiency Test `` and passed it ! We can go anywere without a car . Ironically a big amoung of money kept in the bank accounts are pulled back into society again by the cheaters ( OR swindlers ) . After I graduated from the university as a matematician , I decided to change my life and now I am doing my best to become a student of Prague University I next year . I will try to keep writing this daiary using a lot of words in the future . It was heavy , even without french fries . The double - decker humburger was enough to fill my stomach till the evening . Perhaps people find that it 's more healthy to eat natrue food and keep a healty lifestyle rather than eating processed health food and using health - related products so that they are no longer going to buy any health - related products . So I like to communicate with people ; - ) I 'm a pscifist , open - minded , friendly and unique . I 'm person who loves nature and helth . My daugher is two years old . I took so much time to find the apporriate word , sometimes without ever even finding it . It is a costom that we go back to our parents ' home for New Years in Japan . becouse I had a test in Chinese . Fortuneately , the weaher was also fantastic ! I 'm going to go to a drinkng party today . We chose one and wrote the resume while imageing if I applied for the job . But I want to be an early bird so I 'm tring to wake up earlier than usual ( although I could n't make it this morning ) . I thought Puff Diddy ( Do you call him that ? He is going to try out for a team for the firt time . The eaxms are held in November . Hallo , welcom to my home in lang - 8 . First of all , I will introduce myself . I am a 21 year old Chinese university syudent . ( Such as in ) words or grammer and so on . I will thank you very much . English is so duiffcul . English is that I do not know how to remeber new grammar and But it feels very confortable for me . In my laiziness , I only watched funny films and cartoons , I bet you will get a lot of chocolete from your students . A clock , a cute notebook , a big mirror , a keyholdar , hair accessories and an English language picture book ! I 've been playing a game made by another country recenty . But I have n't improved my speaking or writting yet . But I had to cancele my trip because of Swine Flu . This is his diagnsis . The first day of languege school I think mastering our mother tongue is compeleted when we are very young . Of couse we would n't have had such a big vocabulary back then . Have you ever been confused about using prepostion ? Maybe you already knew what prepostion you shoud put in a sentence much earlier than you can remember . we satyed for a long time . Brain excacize for me , lolz : ) My second step is to look for internet webcite that easlily teaches writting English dairies . Last Saturday I went to the beach called `` The Beautiful Bay . `` The sea was really beatuful . Lisening to the sound of the waves . Unfortuately , the Beautiful Bay will not be accessible to everyone anymore , because it was costucted by the hotel . The beach will blong only to the hotel owner . The beatiful sea will disapper . He was paying attention to the cars but he was n't watching out for taht bikes and then he was across there was a loud sound from the honking horns . On the other hand , compared to him , Novirzki is not as speedy as Rose , but his fadeaway shot where he shoots while jumping backwards is unstoppable . I am dezzy and I feel down . I often say `` parden , please ? `` Now I 'm studying English vocabulary , but I ca n't memorize anything becouse I immediately become sleepy . I think that using preposion is difficult . I work at a conviniene store near my house , on Saturday and Sunday . Many people come in who behave deifferently . That is one of the reasen I work there . I stopped writting my diary for a few months . But I deceid to start writing on lang - 8 every day . In fact , I wanted to watch ' Avator ' , but it was n't in theaters anymore . Guys , today is Chrismas day , merry Chrismas day , a happyday , enjoy it . It is called `` Gay regeree `` . I could n't help laghing when I first saw this . Friend 's fathere : `` What is your name ? `` I was very surprised . Lol . My friend 's father was a gentleman like buritish nobles . Last night I ate my favorite foods which are sashimi and BBQ . ( r ) I thought that learning Japanese is so difficult for native English speakers but as I read their nornal , I thought they have seriously been learning Japanese . Then , she emaild me back in response . I have been living in Los Angeles for three months alredy , but my English is stil poore . The writer is a Pcycologist , he tried to explain about happiness and good life . He wrote the Bhuddhism way and how to take on the meditation , he told that the Bhuddhist need the faith to keep meditating . I think that most English learners dislike grammar which is essential for study and to understand well when speaking English fluentry . I have alredy noticed the reason why Japanese people are n't eager to speak Englsh in front of Native Speakers . It 's been almost two and half years since I moved to Okinwa . One of the things is MOAI which is similar to privatized insurance coverage sistem in other countries but somewhat different . I pepared to leave for the station and slipped my shoes on in a hurry . Even being happy only for today is not always so easy , so how can we be sure we would be happy tommorow or even in the future ? He tought me some English words today . `` Consult dictionary `` is just sirious . I would like to talk to him using the word that he tought me today . I have looked up the word , you tought , in the dictionary . Of couse I went to vote for the mayoral election . At night , the next - door neighbor was always annoying me because he played games with his freinds so it was annoying but he disapeared recently . My firrst writing famous as the place name of a certain Japanese rigion since the beginning of the Kamakura era . I 'm a university student in Japan and want to major in controll theory . On certain web pages that we can talk using each others language , I liked textchatting with English speakers . If you have any good ideas can you recomend something to me . Hello , my woderful friends . I saw my friend on MSN and she asked me to go somewhere with her . I think she wants to go to the club . But envidences proved that I was wrong since most Singaporeans can speak mandarin . In our school , it 's very common that Singaporaens hang out with Singaporeans , Indonesians ( stay ) with Indonesians , and Vietnamese ( play ) with Vietnamese . And we are trying to figure out the most efficient motheds to improve our speaking . SO , good lcuk for us . ' ' The time when you think it 's late is perpect time to do it . ' and ' ' The man without motivation is not different from dead body . ' ' Right now , I 'm going to my parent 's house to join an oister party ! But I hardly speak or hear english , and I am not good at readig or writing . Fortunately there is a box office or ticket outlet in my neighborhood , and it 's so close that it only takes me 5 minites to walk there . Even thogh it was quite late at night , we discussed lots of things such as religeon , our national spirit , and ourselves as well . Hi everone ! We bow to our ansestors with the foods arranged on the table . My favorit story is `` A Study in Scarlet `` . I was surprised holmes ` s reasoning skill . I never thought terrorist suicide attacks were happned in the US . The terrorist turned airplanes into misiles and destroyed not only the world trade center but also other important American facilities . I think the most difficult thing about English for most Japanese is pronounsiation . We Japanese start to study English from Junnior high school ( when we 're 12 years old , but now it can start even earlier ) because actual native speakers ca n't understand badly pronpunce English like I do . . . The difference between ' wrong ' and ' long ' is the pronounciation of the first syllable . I read books about some schoolor 's theories and tried to understand the rules , `` When you pronounce ' th ' , your tangue must be between your theeth `` something like that . I actually struggled to find a correspondence spelling and pronounciation . She corrected me and tought me English and that was what I really wanted . My grammar is bad so my artical is terrible . My English teacher always wants me to write an Eanglish composition , but I am scared about it . My favorite foods are cabbege and cheese . if you want to write a Japanese message , you will send a message or coments . memorie of a Trip . It says that this color gives impresson of cowardance . They are very beatiful . I ` ve never been able to part with those cards . But I have started to enjoy London life recentlly . So I started teaching English to young children and then adolscents and finally I learnt more about English grammar and became better acquainted with it I have been thinking wheather I should buy an ipod - touch or ipod - classic since yesterday . Even so , Those gadgets looks convinient and usufull . Sudeenly , She was silent . My seat is a right under the air - conditoner . I have a medical test tommorow . but here was my weeked I did not study hard . We wanted to speack to them , but we could n't because we could n't speak English well ! Hahaha , I 've just watched the first episod of `` Primeval `` . I have trobled with English . I can read and understand English sentences , though sometimes inperfect . I want native speakers and anyone who is lerning a foreign language to teach me . I often hear that English is the most important language of all who want to succed in the world . I 'm wery sad . The other day , I was watching a variey show on TV and an Australian comedian said this . and if we worship him , he will give us happenese and let us go to heaven after death I am off today fortunetaly , so I will be watching TV , internet surfing , and so forth . But I ca n't sleep until I finish writing my ent . . . . . . . . In addition , I want to speake to people all around the world and work in America . Of cource , it 's good for my health . I eat it evry morning with soybean flour and green tea powder . There are many English schools online , some are American and some are Phillipinos . I forgot where I heard about it , but acording to some sites , an average college graduate native knows more than 50000 words . We ordered the New York and Angus steak , and both came with mashed phoato . Since then , I can concentrate on reading the book and understand what the auther is saying clearly . I know that listeng to English conversationsand speaking in English a lot are good ways , but I think first of all , memorizing is the best way . could you explain about the use of ' with ' in the senteces below . I thought I could hardly sucsess . I 'll try dont to be nervous and do my bed . I prepair for the interview from now . I have to review excell , word and Japanese . Which do you want to learn English or Sience ? The competition was held at the studium called Kita Yell . I would like to ponder about this case and to hear your opinion ( if only my friends did n't lose hope to read smth from me , sorry for my long break ) . But we live in different cities and have n't had the oppotunity to pay each other visits very often because the distance between us is 5000 km . About a month ago , it was announced that Doragon Quest 9 ( DQ9 ) 's release would be postphoned . The Next series is supposed to be reliesed by NINTENDO DS . I was fully prepared to buy it only for the perpose of playing DQ9 . I felt very sad when SQURE - ENIX made that announcement . There are many rumar for that on net . I read many articals and thought about it . In the previous series , SQURE - ENIX set up a provision / trap agaist Majicon . The company produced the game lik that in case the player uses Majicon . Do you think they 're real or imarginary creatures ? If god , ghosts and creater from outer space are in existance , it 's only natural that vampires live somewhere . He staied at our house for 3 months then . His Japanese had implove a lot now . through liqour and another people who can get rid of the stress At one time I Thouht that people who exhaust their lives were successful . I feel satispaction when I 'm working . People sometimes volutarily enjoy something bad . Somehow we feel happy when they succeed in accomplishing something worthful . I will go to Taiwan in October on bussiness . I 'm looking fowerd to going to Taiwan next month . this is a traditional traditional festival , maybe other familise are happy and expected , but my family is not , fundamental : I need to study the fudamentals of Japanese history . indespensable : He is an indespensable force for our company . splendid : Casa Roma is a splensis castle built in Tronto . The problem is that these lifestyle changes can make people overweight easily ; also people do n't want to excercise . Choicing a PC In my new life style , I have a lot of changes conpare to before . On the other hand , almost all cars exhaust caron dioxide . There are too many self develope , self - motivation , or self - help books in Korea . I ask him to let me sleep 30 more minuits , but he never does . I 've traveled to some places not only in Japna , but also to other countryies . Last weekend my wife and I went to tennis matches for beginer mixed doubles . It 's dilicious and rare . I want to learn how to cook this kind of beef . However , I can not explane . But today , I found out good website for my thinking which can not explane right now . Kendou is not just a sport , it is also Budou . Kendou is similar to wieght training . I can understend them . I 'm not good at expressing myself , I do n't have any qualifications except a driver 's lisence , and I have never had a special experience such as an internship or volunteering . Since the entrance exams for univesities take place next year , Sometimes I am tired of the piles of assighnment , but I enjoy spending a lot of time with my friends , and having high aims and good teachers . I have desided to keep a diary in English as often as possible , so My main dificulty is understanding spoken English . When the groom kiised the bride many cameras flashed . I am happy for them siecerly . Will someone correct my grramatical mistakes after I post my articles or should I add someone as my friend first ? I found him in YouTube : ) He made a parody of Mirely Cyrus 's 7 days . Although I do n't study English at the univercity , I want to be able to speak English fluently . It is derived from `` familly `` In jappan it is wintter now . Recentry , I happened to hear very nice music . I watchd `` Enchanted `` by disney . Somedey , I want to fall in love with such a prince ! ! I want to comunicate with a lot of people . I 'm a normal man . someone pealse help me lol I 'm in a hard situation , no , I 'm in predicament now . The reason why I say so is because I found surpising stuff in my house . I thouht he put my socks into his closet again . Oh my godness ! It was a gay magazine ; I was really surpurised at it , and I was also scared of my landlord . I 'm gon na have to keep protecting my ass from now on until the date of depature to Singapore lol . Although the vet told us flontline is working , and that we should n't worry , we are not happy considering our dogs ' conditions . What I 'll write is just my opinion , so even if my methods are deifferent than yours , do n't worry about it . If I wanna improve my speaking skills , I should make a certain number of sentences a day and have them crrect by native speakers . If I wanna understand waht English speakers say , I have to read English books and I have to ask Japanese people who can speak English very well if I ca n't translate it . My Recommedation Movies / My Movie Recommendations My friend itroduced me to this useful website . Althought , my Japanese is not good enough to write an article . as playing basketball , swimming , running and so on . If it was sunny , I would go fashing with my friends and swim . I think that impossible right now . wuwuwu . But I guess I can play computer games at home , hehe . But , I want to comunication with more forighner . The JLPT just examines the learner 's kowledge . In the Pasific seacoast region of Japan , the rainy season is from the end of May to the beginning of July . there is a wide range of Nabe in Japan , we ate a simple kind of nabe . To make nabe ; put all of the left - overs in te refridgerator ( such as radish , carrot , deep - fried tofu ( bean curd ) , mushroom , long onion and water ) into the pot and cook them together . Alpha waves have a frecuency between 8 and 14 cycles per second , and they are found in states of peace and of relaxed alert . The massive production of Alpha waves in children makes them have a great learning capacity that can even permit them to attain / achieve super - learning or acelerated learning when in a state of peace . I respect people with a strong charectered . Recently , she has started to make beautiful accessoiries . She is very talanted . I ca n't get up eary in the morning ! ( original sentence ) Odell was n't certain of what he saw , the mbers may have been at the first and lowest step , with the all - too - formidable second step still to come . I 'm going to write about the spacecraf Hayabusa today . The body burned , but she relesed a capsul toward the earth before she was burned . If there werealiensin the capsul , Wewould besurprised ! Someday , I want to sing songs in other lanugage too . This is the first time for me , writing my dialy in English . When you are busy enough , you will forgrt what you want because you have no time . I 'm going to eat Rusian cuisine tonight . I did 't know that early day 's tango was played with flute and gitar . Meanwhile , most of the oldershops in town do n't have parkings require you topay parkings . I have stusied english for about a year . I sometimes import Manuka hany from New Zealand myself . Because it is very diffrent from anything I have ever used , it is very difficult for me to use it . I ca n't go home untill you give the report . I majore in international relations . We ca n't see anyone succeeding just because of his or her talents . Rather , we can see many people successed by their hard work . We learn from pronunciation , but learning languages is n't esay . I habve finished to read reading a book . He then begins started to study this phenomenan . I am contienue my English learning journey . . . I was surprised at an enexpected visitor . I relly love teaching Samulnori with traditional Korean equiment ( or : instruments ) Do you think that it is too late for someone at my age to be studing ? Since the first time when I see blackberry phone , I have been totally into them , they look luxuary , and the design is stylish . I am still concidering to buy it or not . Althogh Samet island is not as popular as Phuket or Samui , its sea and beach looks very beutiful ! I didn ` t have a fever , but I had a bit of a headahce and stomach ache . I saw many diffalent costumes and dances . I have been here for 3 months , and now I am iving in MELTON , which is a little bit far my college . If there are not any dishes you want , you can order through the touch screen controler . An increasing number of revolving sushi bars have opend recently , meaning we can eat sushi at an affordable price . He told me to use the expressions that can be found in the dicrtionary , otherwese my English will sound strange . Today , I began this lang - 8 survice hoping to improve my English writing skills . Time permitting , I would like to take part in advsing on the use of Japanese , and am would be very glad to get any tips on my English . I was rised in a small village , and my father is very poor , of course so am I . I really want to visit there again , and if I can , I will live there for sevearl years . It was a beautiful day yasterday . Then she disappeard with her son . FridayIhadhis class ( no comma ) and I was happy on the way to school . ( period ) I imagined how happy ( I wantto ues a similar word tohappy ) I would be to see him again . ( period ) When I arrived in class , I said `` Hi `` to him , but he just said `` Hello `` to meas he would to a stranger . There is no way that showing kindness , affection , and any other positive thoughts wo n't be appriciated . And I saw a cafe in the movie , `` The Born ultinum `` , in which the main acter is Matt Damon . If you won 10 million dollers - the same mistake : ) To begin with , I 'll do my last semister at university for graduation . I 'm sleping in until the afternoon , eating lunch with breakfast , and surfing the net until it is time to eat again . Then , I may bathe and go back to sleep . Holiday is so boring withouth friends . Should someone correct my writing error and fix my layzines problem ? I have two children , one is in colleage and the other is in elementary school . What kind of peple do you like ? Thanks for reminding me ; I remember those moments . They were very amaizing , life was beatiful . I went to a shopping mall in the neighbor city to buy a Christmas gift yesterday . plese ~ teach me English . If you wanna learn chinse , just add me . And because of the rain , I could n't go very far for dining , and I could only choose the nearby restaurents . I 'm starting Lang - 8 rigjht now ! My English writing skill and bocabraly are really not good enough . The high heel is acctually not so high . find my diary entries and recorrect them . Actaully , I do n't miss everything in Taiwan so much . I would rather try exotic food here than Taiwese ones , Even though he said that I had to taste some Taiwanese cuisine here , that way , I could campare what the differences between them are . Do you have any idea what causes this defference in perception ? Nuh . . . Sometimes , I see that that they are very smart , organized , and priviledged at the same time . He told me that Americans are different from Egyption in thier thinking and in their professional and personal lives . But this does not include all of them . I write this entry beacuse I want Americans to tell they spend thier vacations . Thanks to any one will answer to me qestions . I really like her excentlic fashinon , action , peformance , and - of course - her songs : ) I have to wash a lot of landry ! But it makes me too addictiv . Hello ! My name is Sar . I am interested in English languaga . It seems more difficlut to make firiends with new aquintaince as we get older and older . I ` m a Junior at Hankuk University of Forign Studies . Please correct my senntennce . Today it is essencial to have reccomendations because the employers are too busy to receive a lot of applicants . I do n't have anything to do now , so I 'm writting this journal now ~ A kind mariner adopted him and tought him how to read , write and his own interests . This is a pictur of my dog . Japanese usualy begin to learn English when we are primary school students or junior high school students . He was non - Japanese and about 60 years ald . I will send a letter to my fost family today . I am slso excited . I always say that I have not eanught time for to study in the night . With Windows 7 , and suport devices , you can an even better experience with Device Stage . Put the all the ingredients in the pot , and boile them for about 15 minutes . Put them in a plastic bag whith flour , then mix it . Put the fried wing tips into the sause . Its a small class , only 4 peaople . There were small candles ( on evey ) table . But , [ comma ] we chose a main dish for ( owrselves ) . need some shopping or lestting . There is a Chinise temple ( maybe a Buddhist one ) near my house . It occasionaly holds events . What celemony is being held there ? In fact I do n't know wherther or not he is my boyfriend . When I watch the movie about Victoria in Canada , I 'm amazed at the huge forests , high criffs , and the incredible view from the top of a famous mountain . I saw many things and bought some comodities . Ther was a TV program about pyramids . I found TV programs about piramid on the last day of last year too . I wandrer why there are this many ones about piramid on New Year 's Day in Japan . But , as I watched , I bacame interested in piramid gradually ! Some day , I want to go to Egypt and enter ( inside of ) a piramid ! It 's a huge mistery ! I am going to go to Iwate tonight to see my grondmother . Secondly , the governmewnt should take I always order Subway 's dayly recommendation . Yesterday , I ate a BLT sandwitch . Recently , I 'm conttantly irritated . I am very relieaved when I communicate with you through Lang 8 . I 'm enjoying holydays ~ I 'm reluxing during the holydays from the 13th of August . Today I 'm going to clean my room , do the loundry , wash the deshes and so on . So , I do these things on holydays . She did not study hard and endded up as a maid too . hallo everyone ! : ) I want to study English today little by litlle in order to study abroad in the future I want to study languages by chatting with English speaking people through my computer and I serached website like that . I do n't like the bus becouse it is very crowded . If I ca n't sit on a seat , I have to stand for fourty minutes . However , I have only a little imformation about Mexico , I left my work for parentally leave . Today I saw an article that said if express tolls become free , more pepole will use cars , and as a result greenhouse gas emissions will increase . But , I 'll be larning English through Lang - 8 . It 's an excting spot for any Ghibli fan . Today had many ivent ! I am redoing this bolg . As time gose by , we 'll go our own ways and become busier , but we will still remain in close touch with each other even though we are in different situations . Strangely , I think Korean resembles Isreali in some ways because of some passion and temper . Beacause the job notice was supposed to be annouced today . I called asking why the notice was not announced and they said that it was delaied until next week . I 'm into blkes ! It was preasant to rige on my bike . I rode on a bike as a child , so I have gotten used to riding , even as an adlut . I always have to be carefull so as not to break the speed limit . My collegue , who came to our clinic by bycycle , said that it was really tough to pump the pedals while traveling against wind , and that it took twice as long for him to arrive here and saw some people fall off onto the road . This can sometimes be dangerous because on days when the wind is storong , we have more patients who break ther bones . Rtythm games are similiar to learning languages because both require so much time , persistence , and unceasing effort . Luckly , I was able to get many previous problems from my friend , and I solved about 300 problems before taking the test . For her parents - my grandparents - we prayed in the Chion - in temple , which is the headquarters of the Zyodo sect of Buddhism . I have to study Japanese more , not only grammer . After that , one of my friends wanted to play a shotting game . 7 / 5 was my friend 's birthday , so our friends celeblated his birthday last weekend . that was a preatty dream . If I saw her in Bangkok what to say to her ( in frist word ) at first . Korea 's big hoildays Korea 's big hoildays are coming up soon . What am I going to do for the coming hoildays ? After thses holidays are over , it seems really doomed because there are almost no holidays in 2009 . My mom came downstairs to comfirm whether I scored 71 or not . Testerday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croqutte because they do n't cost so much ( around 10 - 20 yen per piece ) and croqutte with brown ( worcesteershire ) sauce are the best with beer . As I had not spoken English for longtime , it was difficut to speak fluentry . I think learning anothe language is similar to playing sports . I do n't work at the moment , but I am going to look for a job which is hopefly the same job I had while working at theimport department in 5 months . I thoght that my experience was awful , but I appriciated my friend 's kindness . She posseses a lot of talents such as teaching English . She is willing to be taught Japanese in a friendly manner . . . Last week , I was a substitue . I may get tir by the middle of the game . And it 's human nature to feel a bit uncomfortable about the unknow . Hi ! ! ! I 'm studing the `` Media History of Japan `` at my college right now . My other lenguage In Spain , Spanish is the oficial lenguage but also spoken are languages such as Galician , Basque and Catalan . These three languages are spoken in specific regions throughout the country . I have the chance to speak some them such as Catalan , which is a Romance language derived from Latin , and is spoken in Catalonia , Levante ( in the area called / of Valencia ) , in the Balearic Islands , in Andorra ( which is a small country in the Pyrenees , southern France ) and some in the Italian city called Alghero speak Catalan . It is the 75th most widely spoken language in the world and I am very proud to speak it . And I thought the only thing that make us feel a little unhappy is that the serving fee is 10 % of the price , even higher than the GST ( the Tax ) , which was not meantion outside the restaurant . She has been to China adn studied there for 4years . I sometimes have difficultycorrecting students ' English compositon , so I need someone 's help . After a few years I dicided to brush up on my English . However , after comming to the US , I feel that this is not true . When I was a high school student , I was always cocerned about the school uniform 's ugly style . However it may be difficult for me to make my dream come ture , because I have a four month old baby . . . Maybe it is a deram . . . I have played the saxophone in school club activity since I was a Midlle School Student . I want to meet her again and talk about things that have happend to each of us lately . There are a number of runs in this `` Festa `` . Please let me know is there any rasism in your country . I love jogging . I used to have this habit , but sundely I stopped . It 's fun , especialy for me , because I do n't like to exercise at a gyn . It 's too crownd , I do n't like music , and I always have an excuse not to go . Then , I reserched this song on the Internet . When I hear this song , I remenber her face and her singing . `` Ann and I are going to go to Chaina . `` Are these sentenses correct ? The luckist man in the world Stephen Brad Bury took the gold medal in the Salt Lake City Olympics in 2002 / 2 / 16 . My eyes are sore these thesedays . My mother is a nurse whose job is to care for hadicap people , and her hospital has a school , a car , and a bus for them . But , in my living country , many handicap people use pablic buses , which have lifts for wheel chairs ( it 's cool ! ! ! ) and some blind people go to college ! ! ! They can work whthout hiding thier identity , and their classmates talk to them as friends . I volunteered at the univercity last Saturday . Campas Tour was popular , so we incleased our tours . Japan has very beautiful flowors in spring . I will talk about my research for six minutes , and after there will be a Q and A sessious . For now , I just have to study English hard in Jpan . ( ^ ^ ) / \ ( ^ ^ ) So , we just had the Gay Parade , which is one of the gratest paredes in the world . And you will need to know the foreingh language very good in order to understand and be understood . On the other hand , education in your own country , for example , in Russia , is adds perspectiving too . Russian , Literature , Physics , Chemestry , extra Chemistry and History . . . . . . . . . . . . . . It 's verry good gadget for me . Can you corroct my sentences ? Santa clous came to the party and gave me a present . * * My teacher said that Santa Clous majored in engineering . Are the problems which international tralvellers cause greater than the advantages they bring ? Intoduction : Travelers from other countries bring more advantages than problems . It brings a lot of intersts to the country . We had all inclusive , so we can eat and drink everytime for free : ) Egypt is a very interesed country . . . I 'd like to help people trying to learn French too , that 's why I find Lang - 8 wonderfull . Japan usualy hires the students as new workers until spring . Have you ever imagined your future lover seoriously ? In the end , I couldnt even shouw my smile in front of them , and I could n't see their smiles either . I am extremly excited to hangout with the girls here , as a friend or more than that . I always pazzle on choosing between `` to V `` or `` to V - ing `` . I think it 's a great web site because I can partice my English here , and I hope that I can help others to learn Chinese too . For many people , it 's such a confortable temperature . This is my frist time However my spoken and writen English are so poor , so I am afraid to open my mouth . I do n't have a foreign friend , and there is no freigners around me . ( Just space . ) What if I speak English to my friends ? That 's so wierd . ( Space . ) Second , they may not konw what I mean because sometimes my English is not good enough for them to understand . But some cloud was hidding it . . . I learned a lot of things about shinto . but I can increase my consentration through prayer . It is the story about mathematicians who try to prove Fermat 's unproofed theorem . It tastes terrific and the / it 's textude is like a rice cake . Its been alomost a month . And elderly peaple do n't feel hot very much . Also , some elderly peaple think that cooling your body is bad for your health . They had lots in stocks , so they wannaed sell them . . . Because Dazaifu - Tenmangu is a beatiful shrine . When we are angry , not only can we not slove the problem very well but we also make the conflict grow . I believe my English is not good becouse I can not use it fluently . I made a less than delisious cake I serch the recipe , the main crux is setting time and temperature for oven Also , I feel glad that I 'm Japanese because many people know about Japanese culture such as cortoon , and they are interested in Japan ! I often talk about Japanese anime and cortoon to them . So , I want them to know other aspects of Japan , and I want to know cultuer of other countries ! I 'm sutuding English for a college entrance exam ( ination ) . I 'm lokking forword to receiving corrections on my journal . AndI recepted his invitation . I have learned never to use the webscam with stranger . AndI delited my profile instantly . anatano ie ni pasokan wa arimasu ka ? koro atarashii oobun wa yasui desu . In highschool school , I fell in love with my korean history teacher , so I did well in korean history . my family believes that everthing is influenced by the heart . and I usally think positively and enjoy day with a smile . I do n't hink I have any . . . . I think that the studnets were so suprised that a beautiful woman belched . . at last , please gives advice to lovely Chirwon high school studnets . At this time , yu do n't have to be greedy . Find your own beauty , make impressive momory , and build your self confidence to challenge new things . He lost his house and family , the only thing he has niw is a life . I bought one easy book for biginer , but that 's all I did . Only recently was it that I dicided to study again ! When entering into a boutique or dealing with a clerk over a casher counter in a supermarket , Japanse customers do not say hello to the clerks . ( They wanted to know where the bag is available , but was dissapointed to hear that she bought it in Japan . ) For example , people who really understand mathmatics can visualise things in their brain quickly when they are working with a trigonometry . I habe never gone abroad , so I want to travel around the world and see many places . It is bery cold this morning . I received a new spanis text from Japan , which is for beginers Sometimes I ride it instand of using the bus . As you know , the town of Iringa is pretty far from my place , so whenever I go there , I sould stay there overnight . Soymilk tastes simipar to milk . She said , `` I 'd never done something like that such a long time , `` so hearing about it made me tuoched because I 've also wanted to go to Univercity since before , but I could n't decide what to do for it now . My friend 's talking made an immpression on me . I have struggled with it until now because I have no confidence that bussiness couse can be useful in assisting me to find a job in New Zealand . First , when I ask about the condition of the patiant , Are thease correct ? ? What are other real English conversaion , please tell me . For example , reflux in veins , clot in areries , venous insurficiency , or thrombus . I heard that she bought many alchol , especially Japanese - sake when she went I always think about it more seriously than anothers . But I saw a diffrent fashion from conventional fashion . From nezt week I decided to go to a community center 's English club . I really do n't want to foreget English . I 'm waitting for your mail . But here , I can say angthing I like , even throught it might be wrong . I have writen two diaries since I have started using Lang - 8 . I am a colloge stdent . I am very outging and very willing to make friends with everyone . If you like me , you can leav a messege for me . I am very gratrfull to everyone who corrects my diary . Today , I have two anouncement . We think it will be help you with your language learning , to see the entries written by people who are lerning the same language as you . You can custmise your home page on the `` Settings `` page . If you are interested in gadgets and games , please contant me ! I do n't know why , but we are normaly supposed to write our resume by hand in Japan . I went to see the World Baseball Classic 's final game that was against Korea at dogers Stadium yesterday . Korea was very strong , but fainaly Japan could win . We were realy excited and happy . As you konw , recently more and more people have poor subhealthy , why ? She 'll probably stay at my grandmom 's home for a month . Sometimes , a lot of people including my friends and associates come to my office to ask for counselling of their own proplems . but now , we do not have much water , canned food , or lamen . Maybe he never loved me . I sence that he does n't takecare for me as before . A month ago , he said that we should go home together . Looking at it now , whate he said is ampety . so I 'm writing these sentense for the time being . I mean I want to improve through conversations firsthand rather than unilately in front of screens , no matter how inaccurate the informationis compared to that of mass media . Bean is very funny and foolsh , Rowan Atkinson is usuary a serious and calm gentleman . The Mid - Autumsn Festival night Novemver ? December ? Unfortunately , I was using my raptop and I did n't have a mic . even if I have no boyfriend , I wish all the grils who do have one will eventually get married . She said , ' I promis you that I 'll do my best to study hard . ' Are you satisfied with your carrer ? Because , I 'm just making my carrer now . S . , I will never have a prenty of free time . You know , it is one of the most famous universities in indea . Which of these sentenses would / do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? When I was a juniour high school student , there was a Kendo tournament . One day I was on the way back home in the everning . I know some English words and grammer , so I can write English sentenses like this . At first I want to concentrate on improving my English avility . I want to help you improve your Japanese avility . Now , it is rainig , again . I ca n't go out 'cause it is a little difficult to see the streets due to the fog . Child education is a very usefull subject because I want be a mother . I sent cosmetics to my friend and sent an enail to her . If I have the ability , I 'll write an essey . In a pool , she is scared to put her face into the water . And at a park , she can not turn the iron bar , because she is scared bending her body toward the grownd . They were my first choice company , so I 'm very dissapointed . . I 'm preased to love it because I want to spesk English very well like a native speaker . Thefore , I must study everyday , especially English . Well I decided to take the TOEIC test for whatever reason . ( Ah of course I have been studying English so that I can use English for some purposes . . . ) I am at ( the ) Ohtani Univercity in Kyoto . I want to be an emproee of that bank . I might just not be used to this weather becuase some coworkers are wearing short sleeve shirts . Theseday days I 'm so lazy . `` keep yourrselves from Idols . `` In afternoon , we had a body - building examnation . I really want to pass imdiately today I tried all the rides , and I screamed something terriblle to help myself feel better . Japan wil play the finals with South Korea at 10 a . m . tomorrow . But recently , I enjoy learning English , because sometimes I can notice an improvement in my English , either when I talk with an English speaker , or when I watch `` TED `` ( This is my favorite programme ! ) If I need to make an appointment with my friend , but am not sure when he is avliable , I wote a journal entry yesterday saying that I wished something special could happen , and there it is ! Then , I broug it to the bicycle shop to ask them to fix it today . We have a peacefull life here , so sometimes I really want to go out and experience an exciting and unusual life , but my parents are worried about me , because they think it 's better for a girl to live with her parents . My introduciton My hobbies are to learn languages , to speak with a lot of people via Skype , to drink at the bar with my frineds , to read books , to go abroad , and etc . So I believe the best way to do window shopping is to bring mothing Of cource , I want to use einglish in business . It is not dyed , and looks healsy . What made her look humble is defenitely the combination of damaged jeans and sneaker . I 'm always worring about that . Before , I lived alone in a domitory of my corporation . I brought something to cook and eat in the domitory Now I enjoy dinner time with my famiry `` my son will start to become ' homeless ' in America `` to the neighborhood . It was very tasty , and I felt comfortabele . But I feel like thetemperature in the library is below the freesing point . but I think th New York is a little bit nicer than Seoul . I shopped oline for about 1 hour , and I bought a bottle of rotion . I gained weigt ! ! ( T T ) My weigt . . . . I feel it 's really hard to speak to forgin peopke in English . I would like to say I have around several promble in my English study . Although I spend a lot of time on it , it still seems to make no sence . I like this period between summer and autumun best of all seasons because I feel energetic ( I mean copy and cpy that ) never mind a computer , dispite the fact that I 'm already 30 years old . If I could think in English while reading Enlish sentences , my English comprehension skill would improve rapidly . I arraged it by adding cabbage under the pork and then putting a soft boiled egg on top of the pork . Are the following sentences I 've created gramatically correct ? I 've been studing English . Although Lewis 's piano solos are somoetimes a little bit annoying , Something truely new is often accompanied by some kind of discomort . There are no intresting places to go for a wolk . The first time you go there , these places seem unusually intresting . Especiall talking with someone to gain more skill . I want to go aroad , and make friends there ! I feel ashame and sometimes I feel hatred toward myself . But I will give an example to you . I have a strong sence of justice ! ! ! I 'm a little upsed by it because unlike many people my age I like going to school and I 'm keen on learning new things . what the heroine thought when she met with the vampire , Edward , impressed me so much . It 's jsut like what I experienced when I was a teenager . write in Enlish daily , and watch NHK English program . But I overslept today , so I could n't study Enlish . I will have to go to bed early in oder to wake up on time . more time to know more peaple and time for improve my english What I try to do is to increase my vocabulary : if I run across new words , I look them up immidiately and review them before I go to bed . From tommorw I will start studying for exams . Firstly , I like music . My favorite artists are BUMP OF CHICKEN , Sister jet ( they are a Japanese rock band ) , Avril Lavine , Hilary Duff , Sugar cult and so on . It was an amazing experince . I 'm interested in English and I think Endlish is needed in the future so I 'm studying English now . And one hairdressor came to me and asked me `` just cut my friange , plase `` . After he [ / BLUE ] finished cutting , I saw my face on the mirror and I was awaked by it . I made a mistake that I deleated many songs in my I - pod . . . Maybe I will have a topit to write about tomorrow . When you come to Japan , do n't foget to contact me . Because Japanese is quite similiar to Korean . The bullfighting is a ceremoney not just about killing a bull , but also about looking forward to a good harvest . They looked quite mature for thier age at the entrance ceremony because they were in suits . My university does n't have many students but I can make friends with almost everyone and I 'm looking foreward to that . So Green tea is Ryoku Cya in Japanese . Reducing carbon dioxsides is highlighted by TV commercials frequently . I am also learning Thai unformally . tommmarow is the end of my vacation , I was walikng around Akihabara to shop in the middle of summer . My aunt was an acadamy teacher . It was very deilsious . I thought it was a bit wierd because she and I were not so close as to exchange text messages with each other . I had strained my left hund ! It was cloudy this morning , but at the scheduled time of the solar elipse , we all went to the roof of our building . There are a lot of Japanese toys for kids , so I 'll be happy if foregn people also like them . I 've had a cold and a stiffy nose for the past few days . She saied that she really wanted to stay over at my house . The univeristy tries to push students to communicate and use a lot of English in their studies . It was realy realy exciting ! ! Two days ago I went to Hyde Park with my classmates for a farwell party for one of them who was leaving . Whle walking down the street , I thought I liked the atmosphere of the town . I 'd already seen the movie based on it before reading it , so I could understand the whole story even though I could n't understand some chapters in detaily . But I couldn ` t find any place to play with my daughers because it was rainy . We watched prerecored programs and she let me read books to her . I 'm into holoscope these days . The victims of the tsunami and the radiation leaks are suffuring a serious shortage of food , water , medicine and proper heating . I feel ichy . Please check my crumsly English . When drinking with friends I 'm not well aqauinted with , I have to say ' ' I have to be up early for study tomorrow ' ' , `` I left the oven on `` or `` I think my boyfriend is having an affair , so I have to go home and catch him red - handed `` ( of course , last two of three are jokes ) in order to interrupt a conversation and go home early . In summer , the weather becomes hot and severe even more than usuall so we have n't got so much work to do . It 's bacause the older students attended the international conference my professor helped organize . I alway set my alam clock . The alam sound was set to music . I think I have to change the alam sound to be an noying thing so it can make me get up earlier . She bought a lot of things on the web and spent a lot of maony . There are so many aaants in my house especially around the kitchen . They are mostly fickle , disobedient and not smarter than dogs , and this is probably istrue . My other firend and Iwere impressed by his comment Arfter that , My Korean housemate came in my room and told me he had tried to make Krean food and to eat it . It is my finnal year in the univeristy . Both of these contry must have a lot of similar places . So I want to go to experience and campare them personally . Every stuedent has to hand in the report , so that it will help the students who will go job hunting next year . I 've been playing `` City vill ' ' on Facebook . Recentry , I do n't feel well . I think that it is important for Japanese to show ' a token of thanksness ' through some ways if we receive some gifts or help . The whole city is pluged in confusion and sadness . It is convinience with many means of transportation . One of my doble majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rnb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationshop ! When they are alone , they uauslly feel heart - tired . What can I do but wish him a pleasant jourary and fly higher in the future ? They just keep making fun of me , and they do n't share their work with me , but with another colleage who came here later than me . This month , I 've faced a lot of difficulties , one is about work , and another is zbout a / the / my relationship ( actually it 's also about work , because what I am going to talk about is the difficlt with dealing with colleagues , and some of them are my roomates ) . In terms of the top 5 countries , the talbe shows that Japan , Australia , USA and South Korea the weremost common origins of tourists to Britain in both years . These days , I often lisen to Arirang radio which is a Korean program in English . The europe buildings were resplendent , elegant and spirtless as it always be . I 'm looking for goint out to dinner with her . Some students are usually runnning around the school at that time . But lately , I starated slow jogging for my health . Someday I want to run in a marathone . One day , I found this website on the komica , an ACG website , and I immeidetaly find that it 's a very interesting website . When I think about people who live far away communicating with each orther , I feel very excited . The other smartphones are not as atrractive to me . I went shopping to an erectric store . I wanted a small parsonal computer . It was very expesive . I want ( to have ) a lot of mony . The population is decreasing . More specifically , young people are leacing and the population of old people is increasing . My wouk schedule is flexible . I am a 23 - years - old Japanese girl as I mentioned in my profile , and I mainly work as a kindergarden teacher . After I ate the toast , I listend to music . You can browse all of my blog in this website and I had a list of my other blog websites in blogs of this websit . The dead lenguages Hard schdule . I feel I 'm luckey and I want to take care of care my daily life . We got a persent from science club ! I accidently locked myself outside my room door like an idiot . After several afterquake , I checked the newssite to research this earthquake . Today it raind so ~ ~ ~ ~ much . but it raind , so I could not go out . I am in an ELD ( english langusge development ) class . If my English improves , I will take some science classes . I want to go to a good university . Some presidents runnning Gourmet site and some run SNS sites . Reasentry , I have been bored studying English words . Then , I thoght to study English words while reading book . Is there a book which you can recommend for a biginer ? Do you know a book that you can recommend for a biginer ? As far as I 'm concerned , English is a beautiful language but I really do n't want to accept the fact that my English is really poor especially in speaking and writting . In China , finding a good job is very harrd . It is n't as hard in New Zealand but it 's still not easy . I am not sure if they do drugs as much as a drug addic , or if they did it only once , because I heard it from someone else that I hardly know . So I decided to ask the two guys face to face if they are drug addic or if they are dangerous because I do n't want to judge them and talk behind their backs . Today it is the birthday of my lang - 8 id . I am writing this article to celebre starting my blog . My Japanese collegues are morons , nobody can speak English well except for Seki - san . A raccon on the balcony On the other hand , we must accept they have weak points , like the risk of addiction and possible unintentional public exposure , wich has happened before with previously developed communication methods such as the telephone . Traveling to Busan last weekend with my friends was a really nice experience , but it was exhausing . I want to get marrid to him and have a family . Becides , I have to admit that I am a playful boy . There was a idel Dell Server in my office . Today was an ordinaly day . I woke up and went to Univasity , worked at my part time job at Starbacks and then went back home . I think Oden is uniqe Japnese . It is easy to cook and an econmical meal . The beginnig of our relationship , he made me dinner which only had some fried meat and some instant mashed potatos . The healtiest food among what he think is healty is a subway sandwich , but I know that the white bread made out of flour is n't really healthy at least for Koreans . My dad is librianan and always has a book for me . How about : Face to face against Real Madrit . congraturations ! By the way , I want to study abroard after two years , to learn Engish and different cultures . However , , I am having trouble deciding where I should go . My senior suggested I go to America or Australia . In his opinion , In America , American English is spoken and in Australia , Blitish English is spoken . I should select one of them . Where do you think I should go ? Encantado de conocerle . Since last year , I have been studying ecinimics for a civil survice examination . I thught that is why I ca n't be good at it . Many of my friends are sending and recieving this email even now . My father fainted on the sinkansen once . At that time , there was a docter on the train , and was ok . Fortunatelly , I have many an opportunity to communicate in English now that I live in Singapore . English is vey difficult It takes a alots of money to go Canada . Moreover , doing churus in class makes thier relationships closer and stronger . They would cry , geting angry , e . t . c . Above is the picture of the city whereI live . The upperview is so beautifull ! Every summer saeson , frogs cames . So I hope I contribute to all peaple ! I have difficulty explaing the rules in English , so you may not understand . Students at many unicersities in Japan are requered to study a foreign language , usually English . We succeeded in comunicate with each other because English was spoken . Generally , each age group showed a consistant increase in literacy rates of up to 100 % or almost 100 % , although the level of changes were different according to each age group . There was a dramatical change in the youngest group but the two other groups showed gradual increases too . Yesterday , I signed up for a correspondence cource . The cource costs about fifty thousand yen . It 's not cheap but I can pay for it by the welfare progrum which my company offered to me ! The cource will begin next month . Tomorrow I 'm gon to London for 4 weeks to study English . If I go overseas , I would like to see more munument ! We will be going to a wedding shop beacuse my friend is getting married soon . Fortunally , the damage to buildings was small . It is good for learing English but it is not good if I have not bought them . The reason is , fiest of all , that he knows a lot / is very knowledgeable about architecture , and he is always willing to pass that on to his students . About the Canadian International Doragon Boat Fastival . Dragon boating first ? appeared in Vancouver as a demonstraition sport at Expo 86 . The peolpe raced in their boats , using their oars to keep fish and water dragons away . I felt English was really interestig ! ! So , I wished to become a costomer service agent in an airport . I am learnig English and Chinese now . SINCE IM NOT INTERESTED IN LISTENING TO MUSIC , I JUST TRY TO IGNOR THEM WHEN I FOUND THEM . IF I HAD TO DECIDE ON HIS BEST SONG AMONG ALL OF HIS BEAUTIFUL SONGS , I WOULD CHOSE `` BETTER TODAY `` WHICH I LISTEN TO INSTED OF JUSTIN BEBER WHO I LIKED BEFORE UNTIL MY FRIENDS SAID NO WAY ! ! ! ! ( I find ) it is a very diffecult thing to do . To the fact , I will get a dog in two weeek ! I am majoring in Engrish . We entered the competition as KOF , a famous Japanese fihgting computer game , and got the third place in Beijing area . I have not wirt on Lang - 8 in 3 days . I am proud of the workers who are warking at the nuclear power plant during this disaster In fulushima , although they are working there without electric lights and with no I 'm a Japanese university student in Kyoto , the most histrical city in Japan . I 'm majoring in cultural anthoropology . Yestaday an accident happend on my train . I am going to an outlet shop in Gotenba , Sizuoka prefucture today . I had lived there untill I graduated from high school . Then I left Hokkaido after . I have graduated from Shenyang Airspace University in July , I mayored in Japanese . Spicy Foods & Cat 's toungue `` I watched TV and learned that it 's because of the tangue 's movement . They end up touching something hot with the part of the tangue which senses heat the best . I 'm very happy becuase I wanted to learn English in a more proper way . It was ranning heavily today . many things about my life on ranny day . Of Ofcouse they asked us questions such as / like `` What is life ? , What is death ? `` and `` What is a family ? `` I like Barger King very much . I went to Okinawa on my spling holiday with friends . I went to a duty - free - shop , did scube diving , ate `` So - ki soba `` etc . . . . . During the trip , it was either rainy or crowdy . Me llamo Tammy , escantado . Study animetion abroad . He is studying Japanese animetion in school . I do n't know defferent between American anime and Japanese anime . I do n't know what kind of animetion he is studying . We had a nice conversation togher . He looked like a fuuny and friendly guy . My students have their entranse exam today . Driving in America is not easy , althought the city roads are very wide . It is very deliciace ! ! I have a questin . I 'm very confising . I 'd like to speak English fluentry . I 'd also like to know how to study Japanease . There are lots of English conversation schools in Japan , but few Japanease conversation school in America or other countries , right ? Whitch is better , an iPhone or an Android ( Google ) phone ? I wroked from 6am today . One of my former classmates has become a beautiful policewomon ^ ^ ; 5 - ( ( ) , ( amost all of ) , ( the hotel rooms are reserved . But recentry I discovered that `` Mr . My perents like his music too , so it affects me . I think this will be very interesing . Today , I went to an industral festival . It has been abour a month sinse I became a part of the company . I enrolled at an online English school a coupple days ago . Do you believe the price that one leson fee is 1 $ to 2 $ ? An Amazing Wesite for Langauge Learners ! ! Right now I 've come to be albe to understand recorded voice in English , but it is still hard for me to understand what they are singing My hobby is playing the flute in a wind orchstra . The leading singer , whose name is Toshinobu Kubota , has an amzaing voice and is a well - known soul singer in Japan . Simirarly , natural expressions are natural only because most native speakers regularly use them . Learning languages , either foreign or your own mother tongue , is to acquire not only words and grammers but also different manners to perceve and represent to the world . We stopped by an eletronic machine store where you can actually try using them . And I registered for the class Amarican literature and so on . When I hear the song , I can not understand it prefectly . But the Gelly beans are my favorite candy ! San frasisco ! I went to San Fransisco from Aug 19th to 22nd with my girl friend . Maybe I can say this in a more buatiful way ? So I can corrent Japanese grammer . I study Animation at univercity . sandwish , spaghetti , Chinese food and so on . Yesterday , I came to Totigi for work . dismiss about fifteen thousand emplyees . When will the deprssion end ? Thousands of people are crowded in these temprary markets . I 'm so tired , becaus today 's tests were very difficult for me . I 'm so happy because there are some people who correct my Emglish . I 'm going to go to the restaurant to eat dinnar with my family . Hello ladies and gentalmen all of my friends around the world Whatdo you tinhk aboutwhere our God is ? Of cours Henever beat ' temples ' , ' shrains ' , churchesand moskes . we could propose to sort out the probrem of Iranian elections . The probrem is very diffcult because we ca n't understand others and ca n't think about others opnions . But my sister said she can laught alone if she think of something funny . There are variouse cakes there . In my latest journal , I said my father 's inurance expired . He stil can have insurance from the government , which will cover the cost to some extent . It was such a nice and exciting game , and I 'll contine to practice . I study things taht are connected to English in my university . I 'll go to Osaka by a bullut train called `` Shinkansen `` to attend a meeting with people from other companies . I lived in Osaka for nealy six years , until 2007 , so Osaka is like a second hometown . The Palestina , of course are opposed to this establishment agreement , that they attacked the new residents , and the strife occurred . Before it started , I was looking forwaed to it . I attend the univercity in Nagoya . I also study Chinese at univercity . I whached `` Lie to me `` on DVD . And we took a rest and ate the watermelon that was gaven to me by my brother . Bcause the car in front of mine was very slow , I passed it at too high speed . I 'm learning Italian and inglish . Becouse everyone at school speaks in inglish . Is the day when I can understand English news programs without subs / subtitles truly comming ? He has two childeren and has bought a new house . Today , some of my classmates said they think every counry should close every nuclear power station , but I do not think so . Although I am in New Zaeland wherethere are no nuclear power stations , I think nucler power stasion is help people a lot , for example , nucler power stations provide people with electricity , and I think that is good . I have studied English since I was a junir high school student , but I ca n't write , speak , or listen to English well . In the balcony , people are not ony able to sit on the floor but also lie down . In the 2nd ( second ) floor , there are five bedrooms , two bathrooms and a large closetrooms . But I think I perfer the clothes which suit me . to fashion , centain styles look better on some girls than on oters . I like nearly all colours of clothes except red , but I do n't konw why . I also have many jewerly . I perfer the fashy things . So I like many kinds of jewerly . My faviorite jewerly are earrings . I could n't sleep well last night becaouse I have a cough and So I am looking foward to it a lot . I love my grilfriend very much but she does n't seem concerned about my feelings . I want and need to study Engilsh . My mom who is living in Korea is feeling sick and I 'm worried about her . Thanks for taching me correct ( or proper ) English ! If I keep on studying , I belive I can be better at English . I took off my shoes at the porchI and sat at a table that is commonly seen in many Korean restaurent . I ate Yukkegiang , a kind of soup with chopped beef . This prebents my body to get cold . Before their concerts , they pronounce the members of the day , and funs can choose the day of their own favorite musician acts . I have heard that there are some funs coming to their hall not to listen to music but to watch their dance . Befeore I came here , I thought `` If I lived in the U . for a year , I will be a really good emglish speaker . `` But that was wrong . I am surprised how difficult it is to learn other langages . So I was really disapointed in myself and kind of bored with studying English . But Lang - 8 often encouraged me to study it , because I can see many people who study other langages and may have same feelings . I really like to correct forigne people 's English . You know what , in Japan we have to follow some rules sometimes like we have to show politness to senior people , we have to use compliments a lot and it is extremely hard to be close with people who I meet for the first time . . . My school is very small and almost all the studenst are Japanese or Korian . I really want to talk with foreiners . Most Japanese people do n't know what `` premotion `` is , but we use `` shuffle `` as a Japanese word . And English is the most popular langage . Today , I tried to call the hospital and I was able to get an apointment . Accutually , making holes is also boring work . But it looks / seems like she is looking foword to her two granddauters growing up . and I had drank a lot of alcohole . yet , I ca n't stop drinking alcohole ! XD Next time , I 'll be more cautious when drinking alcohole . Especialy , Italy . An alternative : They emphasize that you should just reaserch and read more and more to get knowledge and experience . Next , I deal with the bigger dishes such as a round - bottomed pan or sadad bowl . The lover of the protagonist died because of the failure of an abortion which was not disired by her . Moreover , the friend of the protagonist felt sad due to the lack of understanding by the adults and finally he committed suicided . The air was freezingly cold and the sky was cristal clear . Actaully it 's not just raing . . . After a few minuates , I stopped thinking , I could n't think anymore . Are there ramen reataurant in your country ? Today is my first day working at the new company . It is samll with only a few staff , but it is short distance from my house and new company . I wathch the concert at church . `` Mom , What a lovery puppy she is ! she is sleeping . 2 So many people say taht . So , I 've joined this portal a couple of minutes ago , and I 'm kind off bummed out because I was expecting to be making friends left and right , that I 'd be learning Japanese right away ( that was the main purpouse of joining : to learn a bit of Japanese and to polish my English ) . . . . Today , I went to McDonald 's to sutdy with my friend . Of course , I hope return to the level of befor the subprime loan crisis occurred . When I talked to my American friend , I was speaking English with Jpanese words spinning in my head and they would even slip out of my mouth and cause some embrassenments . The painting is of youroppu in the middle ages . I do n't know its valu . I do n't have much money , so I ca n't go so far , but at least I 'll get to visit `` Amano Hashidate `` , which is oen of the most beautiful sites in Japan , and means `` a bridge of the sky `` in Japanese . I fele angry and did dont communicate with him . He lives by himself , and I hvae a good family . Thank you for always teaching me varius things ! I loved the senery too . Tokyo Disney Sea has American , Arabian and Europian streets . I especially liked the Europian street , I felt as if I were in Europe . I had a lovery day ! The picture I drew which is shown as my image was critized by one of my friends a couple days ago . I did n't ask further ; therefore , I did n't know excactly what in the picture needed to be modified . I took a nap in the afternoon , but afterward I didnt n't feel rested , because I had several nightmares while I was asleep . I stuggled to wake up , because I just did n't feel able to do so . When I went to the hospital , a nource said to me , `` Please check your body temperature `` , and she found my temperrature was 37 . 8 , so she told me not to get a medical check - up today . I was SO HUNGRY that I even drank three glasses of kalua milk Okey , let 's start something ! Get into action ! I want to improve my Englishi , so I joined this website . I think it may be because my friend visited my home yestrday . tenant - recident I ca n't find o my favorite program because there are too many channnel . The movie 's tital is `` The World of GOLDEN EGGS `` . It 's becauce I could finish my job within the day . What is worse , `` Dressmaking / Needleword / Knitting `` was selected by only 9 % of them , which was a smaller percentage than people aged 25 - 29 ( 14 % ) and people over 60 ( 27 % ) . She smiled and aske me , `` Why did you choose me ? `` ooOoooo ~ ~ It ` s too late to write an entry now , but I will write very beiftly . We stood in a long line under the white snow because my son wanted to eat in a small reataurant . The cat lets them get on itself and geso to look for Mei , and they are able to find her . I feel pretty prussure because I ca n't do better than other students can . because , untill yesterday we donated our holiday for working on the final work . . . I ca n't image my driving an erectric vehicle , but the development of the technology is tremendous . Studying aburoad is my important dream . I might love her , but I hardly know about her feelings and what she is thinking about . althogh she is reallly attractive . . Therefore , we can only imagine how life must be like withot schools . The Gandam is very big . Althought I had class at night , I made a phone call to my friend and then my mother took me to buy some watermether , because it is so cheap I think the staff in this store have agood sence on how to present CDs . There are a lot of pop up rabels that describe the cd 's and the genre of music . I met a friend who spoke fluent English , so I asked her `` Could you give me some adivice to speak English fluently ? `` She siad `` Probably your English level is good but you seem to not speak English as well as you should , try talking to a native person daily . `` That was great advice for me because I was thinking of trying to talk with a native person . Nowadays , people face a series of problems regarding the enviroment . We uaually do the things we want to do but damage the enviroment at the same time . It 's not only for other lives in the world , but also for ourselves to live more safely and colorful . I had a long walk , went to Freshness Burger , listend to music that I like , let my mind drift back over rundom things , and tidied my stuff a bit . Becaus I was in a private educational institute , I could n't see the first half . I had tryied speaking correctly but when I did so , the words would not come out . in it , but the pictures often come out blurredly . Becouse she likes to play pc games , which is the reasonable Skype English shcool ? My eyes glisted with tears . because I have low blood pressyre and I 'm senstive to the cold . If I can pass the test , I can go abroad and get trainig , and take part in editing textbooks . . . But I will go there tommorow . I was glad to hear the forecaster say that tommorow will be sunny ! I 've not been hay heyfever so I ca n't relate to the calamity . 4 What 's defference between ' I have some questions for you ' and ' I have some questions to ask you ' ? We ca n't deny the dominance of Endland in comparision with the other nations , but we should be clear in the way we use nations ' names . I have always thouhgt that Great Britain and England were the same , and this lack of knowledge of mine made one of my friends feel uncomfortable . I felt very comfortable every night even though I had stayed in an 8 people domitory room . Because he will go back to Hong Kong and will not return during the vaction . I think it begins with nothing , then it finishes ethier with nothing . A freaky intervirw experiencs HR called me yesterday and asked me if I was interested in the position - maketing executive or not . However , this company totaly dispointed me . First , I filled out a sheet of personal information and a sheet of MERTKETING questions . Freaky qestions . I did n't believe any marketing manager would ask the questions like that , execpt for managers in the PR . The interviewer asked me to breif introduce myself and asked me severl questions . So I asked how many brands they would launch and she was n't abled to answer me . I also asked about the location of the noew shop and she said she did n't know . That really surpriced me because the new shop will be launched ( opened ) in the coming April . So I wanted to go to Kyoto in the morning for siteseeing . We planed to go drriving tomorrow ; however a meeting time and our distination is not decided . because everyday I think `` l 'm happy , l have all the things l wnat `` but sonetimes So , I have to eat lunsh alone ! I have not eaten breakfirst yet . I 'm looking forward to see my lovery wife in yukata . Becouse if I think too much , I wo n't be able to continue . I am buzy , but I just have to keep trying . We read a recpi while we cooked `` tororo - conbu - nabe `` . so my friend advicsed me to write my journal on this site . I want to know how to use the phrase `` Get to the bottm of this . `` I will have an art class . I 'm going to go to near the port , and I will paint a pecture of a fishing boat . Yeaterday , I played soccer from early morning . I will join a soccer tornament in November . Pls correct my english . I will remind you of the death of princess Diana , who died in Paris when she was followed by many paparrachi . I do n't think I didn so well . ( After the test , a cinematographer came to my school and gave a lecture . He is Korean but at the moment he lives in Japon and is studying Spanish . Polular places for Hanami such as Ueno Koen are usually very noizy because of peple 's talk , shout , song etc . I am surprised that a lot of people are able to speak good Japanese , which is said to be the one of the most dificult languages in the world . My dog is calld Rei . I have had a dog for ten yaers . My dog is sheeping on the sofa ( now ) . somethinf happened to me recently . I went to a japenese food resterant with my boss yesterday . When I go there , I usually take a motocycle . It took nearly two hours to finish writing the essay , but I was glad I could practive making an essay . It 's the soncond Sunday of May today . Now they 're keeping that secret just between themseives ; their mother does not know that it 's Mother 's day today . Each ramen shop chef has his or her own ( special ) recipie . Though I 'm wondering if she 'd ( like to ) eat out at Italian or French restraunt and so on . If you have a chance to come China for busniess , you can use this good chance to taste the wonderful Chinese food . If you also want to find learning a partern . Anyway I had a gud day . I have been smoking for three years . Frankly speeking I really do n't know why I began to smoke . Maybe there were many troubling things ( OR things that troubled me ) at that time , so why I started smoking is n't important I think . People always do sonmthing they are unlikely to do but that they must do . I recently finished watching 1 Liter of Tears . I 've been learning jazz dancing for four years , and this year I 'll try to learn yoga and velly dancing ! I made many foreign freinds this winter vacation too . Since the neiborhood itself is very popular , the rent is very high even if quality of an apartment is low . I prefer a comfortable apartment because I spend more time inside than in the neiborhood . Please check my grammers . My favorite peformer is Plushenko , because his sketing is very well and exciting . And because now I have native speakers to speak with and practice with , even this site is one of my important reasourses . ^ ^ Sorry , I have n't posted in my dialy for two weeks . I am an account ececutive . Everyday I need to handle all kinds of things that are complicated and irritaing . I think I should be more careful and deligent for work . Most popular Chara in Japan Beacause I 'm already watching One Piece , Conan and Hajime no Ippou . I wanted to watch them because they are so famaous . Naruto is famaous in Japan too . If you have not seen it , I realy reccomend it . My main job is solvning my clients tasks by digital communication . I make it a poin to listen to Enya 's song when I am stressful . When was casted in Japan , I was a big fan . The Sushi he made was so delisious , and he was delighted to see the pleasant faces of those who ate his Sushi . There are many atractions . Speaking of atractions , some of them would scare people but they are out of order . I 'm a chiken . We asked a peson there to take pictures of us . perosn in the music industry . Dubois put her girls to bed and was wating for her husband while sitting on a sofa alone with the lights turned off , when Mr . Dubois , deeply destressed , finally said to him , `` Honey , It 's already 9 o ' clock . `` I got a little cultral shock from that scene . Taiwanes perple are very kindful . I love Taiwan and Taiwanese perple . I can make various pound cakes , for example , chocolate , pecannuts , banana & walnuts , raisins , and some dried fluits . I 'm a graduate student and I will graduate ( from my univeristy ) next spring . I need to wait until companies start intervies again . So , I deciede to return to where my university is located . If someone finds any wrong sentense , please correct them . Neighbor restaurant 's menu It is the Godzzila Rock , which is in Syari town , on the Shiretoko peninsula . My classmates suggested we go to see the movie , 2012 , to relax ourselves and relase the pressure repressed these last few weeks . I 've skipped it twice before , and if I am anbsent three times , I ca n't pass the exams , even if I get 100 percent . Even watching TV was a lille bit hard . We also decided that we would sing one Englis song together and one Japanese song , and then after we sing well , we would post it at YouTube . Of course this is a good way , but before doing that , for people who is not confiden with their speaking like me , it 's very useful to learn how to write well organized English . I found an / the anser this question . Work is impotant for me because it enriches my life . But nowdays , Japan has not any `` Dunkin ' Donuts `` shops . I thought `` Today , I wo n't so busy , I wiil be OK `` but unfortunately ? ? ? When I lived in a apartment , I coud n't endure staying inside all day . In my opinion , every subject is importent . It was so delisious that I ate too much . She also said , `` You can never be too cereful , because you are a girl `` . My sore thorat is gradually healing . My ankle hurt last Thursday , and I got another unknown illness last Satruday . Do I sound a little bit mysterous ? So I was thinking , `` I definetly have to return . `` The host family was good , I thoght ! As a aaresult I played OK but my index finger was burned . I ca n't wait to have the party : ) and also for the holloween parade at 6 AV : ) Recentry , the custom of wearing kimono is dying , becouse many Japanese do not wear kimono anymore . So , I want to try and bring this custom back to life . At first , it was fairly exciting so I tried to listen and undertand all the explanations . These exams are very deifficult for me . I remember when I was in high school , I seldom had the feeling that `` I do n't know what I 'm writting about `` but now I do feel unsure sometimes . Now I 'm larning English for business and communicating with foreigners . I have a big cozy whithe bath with different kinds of foams , salts , soaps , gels and many other sweet things that are so necessary in the bathroom . I sometimes take a bath and read a book or a magazin . Comparing these two versions of `` Year 3000 `` , I definetelly like Busted 's original version . But 4 years ago , I went to Okinawa with my family and I tried snorkling for the first time . My heart was pounding while I was snorkling . I do n't know why , but I beliebe there are many incredible creatures and I feel like I wo n't be able to survive if something happens to me . I 'm going to Okinawa this year again , but I will just look at the beautiful scenary . I was quite sure he always looked down on my plan to go to Austraia to master English . So when he called me , I was extremly happy , because I got the best opportunity to show my present situation off to the useless Japanese man . Actually , I ca n't understand what native English speakers say at all yet , and my salary is quite low compared to normal Singapoerans , but I bluffed him into believing that my life became much better than I had been in Tokyo in order to keep my cheap pride . Later I am going to eat with friends . afther that , we are going to my friend 's house and to wacth movies and listen to music . This is my first dariy in this website , and it is also the first day of 2009 ! I hope I have the patience and perseversance to keep on writting daily in So ashame ! Acutually , I 'm afraid of making mistakes . This shopping center is one of the biggiest shopping centers in Australia . After working there , I moved ( or decided to move ) to Canverra , the capital of Australia . When I worked there , I noticed that Australian people liked Estern food . Please correct my sentece . Flights do n't movied by only one person 's contribution . He looed at his feet , there were tiny animals around them . He was scared , he ran along the innor way . Japanese weman are strong . Farthermore , some adults too . IU intended to temt ( seduce ) Evian . I have a bad feeing ABOUT THE LAST NIGHT ` S DREAM . It ` s sort of sad , eventhough I don ` t know why ? It was a jouranl about my memory of childhood ( / my childhood memory about my persimmon tree . ) Bye ~ ~ Really bye ! deceive : You can not decive me because I saw you walking in the station with your dog . doubt : I doubt that meybe she forgot about the promise we made . When I arrived at Osaka , it was ing rainning heavily . Of couse , the sound was very good as well . I just rode my bycles earlier and had a dangerous experience . He was running away from anoher kid so he did n't see me . They laught at me at the time , but I was able to learn . I am shure that I will be able to learn to play the flute now . It 's so pitful . I spent 30 minutes writing these sentenses . . . we will execute to disetablish atomic energy plant `` But he did not tell a specific plan . Is it as bad as the expression of rasing the middle finger ? ? My work is in acpuncture and medical massage . I drank a lot of beer , and I became dranker . And trying to be as naturl as children can enable us to receive as much as they do . educatinal oppotunity have opened to more people too . So it looks like our life as human beings is definitly becoming better and better . We own the latest tecnological gadgets in our houses , and live with educated people in an intelligent society I was driving near my house which is in a residencial area . Prebably he was in a hurry , but of caurse in this area passing is prohibited because it is a school zone / area . That is why I write diary when I expelienced something interesting or when I have quetions . Recently anime costume parades are very popular especially for geeks and foreing people ; P Several years ago , on Halloween day many foreing people with costumes got together on the Osaka loop line and stayed there for many hours ! It was so much fun ! ! But it bacame a problem and was banned the following year : ( I took a Japanese tea ceremony lesson once a week in Japan for three years befor I came here . I sometimes want to drink green greentea here . Plese tell me if there are any other often - used words that mean `` very good . `` Japanese marrige system Brides and grooms simply go to city offices and turn in their marrige application form , which has the brides ' , the grooms ' , and two wittnesses ' sigunitures . No picture IDs are requiered to turn into the marrige applicatin form . Someone else can go there insterd of the couple being wed . Becouse of this system , sometimes problems arise . When a couple goes to the city office to turen in their marrage form , they sometimes find out that one of them ( or both of them ) is alredy married to someone else . When we entered , my every my tought addressed the music ; so after I removed my coat quickly I began to tune myself to the track . When I listen to this music , in particular to Marc Anthony , I be one with the melody and I feel really free , that every thing around me disappears , andthe hertbeat follows the rhythm of the music . The line was sort of stuticky . Mainly , a Japanese teacher taught English grammers , accents and various words ( / vocabulary ) . For that reason , I have studing English for a long time , but not very well . . . I would like to speake and write more like a natively . There are many rap artists , but there is only one Eminim . But I ca n't understand English grammer . I participated in a web developer 's event last Satruday . It is uncomfortable to stay in an unfamilier place . So I asked my boss to buy some vesetables for me . Last night when I got them , I put them in the refrigerater . What shoud I do if a rat , mistakingly eats the poison and suffering , jumps from the kitchen cabinet ? I work for the Japan 's Air Self Defense Force and I operate a F - 15 fighter airplane . When I watche a TV program , I recognised the store . I can not stay in Kyoto untill April because of my job . For `` Domesctic Sewage `` , Salo Paulo showed the highest figure , 65 % , followed by Taipei ( 50 % ) and New York ( 41 % ) . In addition , Tokyo presented `` presticides `` as the worst factor for polluting water ( 31 % ) whereas the pollutant was a much smaller factor in Sao Paulo and New York with only 9 % and 6 % respectively . It ` s my first time on this webside , and I don ` t know how to use it in an apropriate way , but I hope that I will meet new friends and they will help me . I would like to speak English fluently , but I do not have friends who speak English , so I have been learning English for sereral years , and still do n't know enough ! ! ! ! Usually I go to a Tully 's coffe shop , my favorite coffe is `` Today 's coffe `` . Alternative : I always have a cup of delicious coffes when I go to there , My real reason for going is not to only to drink coffe , I have been working as a system planner in the IT devision for one year this June . But now is the time to use IT in order to develop cloose relationship 's between our stores and the customer . We as system plannner must think to embrance social and digital media and continue to look for new ways to bridge the comfortable experience at store with the digital world . I usualy push the reset botten each time I boot my PC . But as I have been exposured to many kinds of English on the net , Even though they have an Indian accent they seem to be able to both work and live in America or other English speaking countries as a member of socities . Even though it is still late June , the air temprature became 31 degrees celcius in Tokyo today . It is still hot and humid , but I have to go to a clinic to take a prescription for medical insulance . My duty still continues , when I finish talking to him , I have to go to a motor bike shop to renew my bike insulance . And my friend tought me about that / it . It 's nice to learn new things or acquire new knowleadge . Only four more days until I can return home and begin my summer vacation . My plan for this vacation is to join my cousion 's company and do work for him for free . I like chocolete but on not this day ! ! Hello , friends and teachers , I went to university today to prepar averything before recive my cetificate . Today we had violn class . But the theacher keep saying , `` Hold your instruments up . `` I made tamato sauce today . and I need you to help me to improve my english leval . If I eat a hanburger slowly , chewing it well and tasing it , I always regret eating it . ( I 'll stop complaing about it . ) I 've had a lot of experionces like this and I realized that men and women ca n't be close friends . Recentry , I made many kinds of breads . When I was student , I use a lot of monet for music . A Shiba is a type of Jananese dog . They are medium sized and very clever . As a result , I found this website and enjoyed correcting articles written by some foreighers because I am good at it and it makes me feel good whether they thank me or not . I am `` good at `` speaking japanese but I am `` not as good at `` spesk English . I think it is about the guy who kept on eating only Mc Donalds Hamburgers and potetos ( french fries ) And now I want a motercycle , dreaming that I get a big one and travel around the world . Take for instance English Central : I can study listening and pronounciation on the site . Usually , I do n't say much if the atmostphere of a conversation gets stressful . Recently I can only go to work only two days per month because I have been receiving post - surgical chemotherapy to prevent canser recurrence and metastatis . ( alternative ) Though it was regrettable that I got sick , I belive my disease has helped me develop a greatness in my soul . He 'd prefer to work in Canada than Korea , because if you have good & nbsp ; bilities and & nbsp ; experience , you 'll be able to earn more in Canada & nbsp ; than in Korea . We are going to go to Himeji catsle and some other places . One of my friends reccomend it to me . My Frist Time To Write A Diary In English When I say that , people aroud me look at me surprised as if they did n't expect it comoletely and I looked odd . We can listen to radio and do simplitic jobs and at the same time feel relaxed while listening to the radio . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio chunnel . Of cource , I recognize that my range of vocabrary and how to express my thoughts are not strong enough . Recently , I have had difficulty wrtiting my resume in English . I 'd like to join fittnes clubs gymnow . This gym has a lot of foreiners , hence I 'd like to join . It was my falt , but he did n't need to get so angry . I hope he will be transferred to another department next quater . It 's a traditional ivent for Japanese to visit their family graves . Restart Toiret Training One day , she was playing with her friend on the jungle gym , but her friend kept climed higher than her , so she started to cry out of frustration . However , because she has been suffering from hemorrhoids since last month , we finally succeeded in convincing her to wear diapers to heling her buttock . She is aways kind to me . She is lovly . She aways teaches me or She teaches me always . Even though I 'm Japanese I do n't understand it very well ^ ^ , I wonder if it 's because I 'm not intrested in this period so much . It would suck to be sneezing all day when the long and cold winter has filnnaly come to an end . I have tasts tomorrow at school . I have to syudy tonight for tomorrow 's test , When some people find out about this , they are suprise and they think that I have a proplem . I can learn a lot of new information from cartoons , spically if they ( the cartoons ) are about history . In Japan , there is a costom to send New Year 's cards to familier people . Nowadays , I 've found that people smoke in the streat . I intend to pronounce corretion of my compositions and practice my pronunciation by native English speakers with skype . On the other hand , 12 % of the population dislke obese people , which is less than the 16 % in 2003 . My husbund called out to me `` Pass the solt ! `` I did n't know why he wanted salt , but I brought the solt box to him anyway . My friend and I searched for somewhere quiet to study Chinese and Thai . We did not find a good palce , so yesterday we studied at McDonald 's ( ? ) , but there was a lot of music and a lot of students doing their homwork . I do n't know why , but I know we feel good all the time and like to smile with people wheather we know them or not . I also asked her about whether in China they have Kung Fu or not , and she laught and said that they do but it 's diffirent in the movies because they ca n't spring up into a tree or unto a roof or anything like that . I 'm fifthteen and staying in Malaysia to study art . Do you have any hoppies ? Do I call them `` hoppies `` ? I like to choose coffee that is freshly rosted because coffee farmers should get more imcome . I am a person who always looks on the bright side , and am an enthusiastic self - motivater . The issue of whether we prefer to eat at home or in restaurants has been widely debated in our community rencently . When I was in junior high , one girl who was not my classmate came up close to me and said , `` Are you gay ? `` I could n't understand what she said at first but I replied , `` well I have a sister so you might think so . `` This is not an anwer at all but I managed to say that . As there are no neighborhood on either side , our flat is totally open to any directions with lots of windows and every time we open all the windows , we always hear winds or breezes whistling from one to another directions . I made miso suop and another dish . Miso soup was a littel bit thick . I wantded to be a chef before . I can say from my exprience that I have carefully monitored my life I go this course becouse tho I can read English text ( not well , but well enough ) , and understand English speech ( a bit worse than reading , but I am able too ) , I ca n't speak it ! As my college is in Kyoto , I usualy only travel within this area . May this new year bring many oppertunities your way . I have a running nose , but I do n't want to see the doctor , because the medicine will make me more unconfortable . I came back from my business trip last night and I jogged to the office to deal with the receipts to get compensaion now . I often eat out at places like McDonal ` s . I have learnt from the internet and from apllications within Microsoft Windows , although I need help becouse I find English a dificult language to learn . However , I am often told `` You look like a half - beed ! `` I think it 's because of my brown eye color , but I 'm a full - blooded Japanese . So here I 'd like to study techical English and find new friends ( fram all over the world , but it seems to be only a dream ) . I only have the datebase on my PC . I jogged on the weekend , but I think it seems to have little effect in decrese my weight . What is culture ? It 's meaning is the civilization and customs of a cretain race or nation . There is a very famous road called Savile Row in London . I am goig shopping today , I ca n't waitt for that . I was talking about names with my firend . The conditionaer makes my difficult hair easy to comb . Mebourne is good city to live in but I hate the weather here ! After eatting dinner I immediately got hungry again . Maybe I ate too little . It took 60 mins to get to there , and 60 mins to get back . I 'm a Chinese girl who now lives in Austrilia . This is my first time using this kind of website which my friend recommonded to me . Therefore , I 'd like to practice my English with you guys and also learn something about Frensh . My granma used to say that holly ghosts protect me as my goardian and watch over me on my birthday . I 'm looking foward to coming back here again next time . Yesterday , my syster and I went to the movie theater and saw `` Gnomeo and Juliet `` . And , the order ( of parts ) , starting from the nearest to the barin , is the cerebrum , the brain stem ( the vital center ) and the spinal cord ( this is the end of the central nervous system ) and peripheral nervous system ( the part of the nervous system below the spine ) . `` I read the newespaper in the web . `` And they all said that the cabbage I cooked was delicious ! This is a great success ! They gave me the courge to learn more about cooking . What ruins our life is defenitely our negative thoughts . They emerged from MySpace first , and recently they have become famous in JapanI , I think because of her cuteness and some of the songs . . . * As an English major student I must learn how to understand English well , so I am reading the English book ' Blach Boy ' by Richard Wright . I could n't understand all of the story , but I know aproximately what it 's about . I bilieve that . I 'll go to dancing lessons ` again but I do n't have enought money at the present moment . . French in general : it 's agreed that we strike , critize , and complain too much . I was a system enjener in Japan , but I want to find anothe intersing job here . We delivered punches at each other , but it was only me virsus three students . I do n't usually buy imported items because they are a bit pricer than regular items , but they were on sale . The labor force , composed of prisoners , soldiors , and workers , built the wall . This is my first writting on Lang - 8 . I just found this site accidentary , and I think it will be a lot of help to improve my English . Recently , a friend of a friend of mine who was born in Austrailia , teaches me English on the phone . This week is bery hard for me , because I have part time job on Monday , Tuesday , and Wednesday , and I plan to play on Thursday , and I plan to go to Kyoto on Friday . ( ^ ^ ) * Of course , I have college classes that I must study for . I watch SESAMI STREET podcasts on my ipod in English . So I have to aquire the English language in order to work well . My plan to study english is to write english compositions and watch DVDs of FRIENDS , which I heard is an intresting comedy in English , everyday . In spring every year , Japanese hold partirs in which they welcome freshmen . I 'm afraid I lost the opportunity towork at orthopedic hospital . I 'm fed up with arguing about probleams . I 'm afraid to become audlt . < best Its defference from the Japanese Culture . Unfortunatley , there is no chili papper Kimbap on the long menu of this restaurant though . He told me that the Spa is becoming popular in the Filipin . Of course we have to feel sense of alieanaiton when we see foreigners at airports or other countries or our towns . If you imagine your country is a samall island and English is spoken in only your country , you will see it would be a big handicap for you guys . But foreingers have been speaking English since they were little as the publicly spoken language . But of course they only spoke English while we were drinking , so I counld not enter the conversation . When I had oppotunities to speak in English , my Japanese supervisor would say things like `` You said ' a water ' and forgot to add 's ' to ' he want ' `` after every one of my speeches . We had two visiters from Vietnam at my home . I watched the news yesterday and I heard that there are many people affcted by this influenza in the world , and also there is one person visitting Mexico and is guessed to have this disease in our country . Actually , I 'm pregnant and I 'm suffering from morinig sickness , so I felt gloomy before the wedding . We went sightseeing , had lunch and bought seefoods such as crab and flatfish there . Please teache me what that means . I have to get the lisence by April , so I 'm learning how to drive . I rearry enjoyed her performance . I 'm worried about getting fat because I put sugar and milk in my coffe . I 'm goint to go to my friend 's wedding , and congrate her . Rencently , I have been tired due to my work . becouse you are Japanese you can get a higher income . But I think going on a tirp on Christmas Day is a good idea , because you can enjoy Christmas lights in places you have never been and also sight seeing . So I 'll try it with an accompanying CD of a English diglogue textbook . `` Pirates of the Carobbean : On Stranger Tides `` was exciting , too . So eterday I looked frearfuliy at the scales . It 's so expencive . I have no friends to studyy English with here . But now , he has found hisself and is reflecting on what he did . Sports Day is going to be held at my son 's preschool next nextweek . So , prease talk with me on Skype . Yestarday , I got / bought a game . If possible , I want you to correct my dialy and know about Japan or Japanese . My dialy is mainly about my own daily happenings , Japanese news and culuture etc . If you are intrested in that kind of japansese culture , I 'll be so glad . There are various types of Japanese ' Sake ' like `` hakkaisan `` , `` koshinokanbai `` , `` kubota `` , etc . Freedum Day ! ! Finelly , should I say anything else ? Therfore I need to achieve a score of 6 . 5 or higher on IELTS I was surprised how fast she mastered phraises I tought her . the laidy used a marker to mark two dots on my ear , and then just used the piercing gun to poke two holes . although it looks very painflu , it just felt a little bit itchy . Do you know about Bobbby Valentine . I 'll stady English little by little . . . They 're famer . curently they are preparing to plant rice . It starts in the afternoon , so I 'm planing to go to the library in the mornig to read a book ! I went to the libraly after the test . I 'll go to Okinawa this comming Sunday with my school friends . He has lived in Hawai for 9 years . The question was whether it should elimilate . Yesterday , we had a tranlating class and it was exciting for us . In the class , we learnd how to translate texts from English to Vietnamses and vice versa . So far , when I read something in English , I can understand it if it is about the subjects that we have been tauch . A patient came to my clinic 3 minuits before the end of our consultation hours . In spite of being busier than usual , we enjoied our work . So I would like to keep writig and speaking English . But I thought the tiger pencil case was more cute than the lion , so I choiced the tiger . At lunch time , I was talking with my maneger . He said to me , `` Speaking is most important when studying Englsh . `` I 'm a biginner . But I dont n't know the difference between tacos and burritos ; ) Morever , I was n't in charge of the register today . Learnning English on my own makes me feel that English is so hard . As we stand in the front of the restraunt , we pick one guy every week . But I 'm a little nervours becouse of my English speaking skills . My job is a project manager for developping web sites . , , , to make him intersted in the Korean language . It 's raining heavily in the Nigata and Fukushima prefacture . I was more intersted in wearing a Yukata than in seeing the fireworks . My English teacher is a forigner . There is big statue of DAIBUTU in TOUDAIGI - JI ( temple ) . It 's the biggest statue of DAIBUTU in Japan . First , I watched it in English with no subttle . My home and car are covered with snow , and the snowscape is beutiful . Dier friends ! The people are nice , the beaches are beautifl , and Okinawan food is awsome ! Maybe someone has to wite a long and boring essay , maybe he has to find a job , maybe he is suffering from a disease , maybet he just lost all his money . . . On september I have a plane about going to Victoira , BC . I am an easy going girl , and I ` d like to having many freinds ! ! Three years ago I was a menber of the fitness gim , but I resigned because of my busy job . It was really traditional , so just a few people who are familly or relatives of the bride and groom could go inside the Jinja . Recentlly I think about it every day . It is a cloudy day today but the temperture is not too warm and the weather is confortable and I 'm looking forward to rhe start of the school year . Althogh it is difficult , but I 'd still like to study English . and I beleive it will be difficult ( hard ) . It was a surpriese too . He tought me that my dream will definitely come true if I do n't give up . It is aprox 10 feet tall . I 'm studying English right now and hope to aquire the skill to speak fluently with native English speakers someday . You are my friend and I always beliving you , but now I see you lied to me ! In my textbook , it was mentioned that many people in Okinawa live untill 100 or more , is this true ? I can say my opinion in simpl words , write ( with mistakes , of couse ) and undestend other people when they speake , not fast though . They should find the power to look to the future when they faild . I was watching TV , so I fell slept in the living room whithout covering my body with my bedding . That is why I cought a cold . Today , I 'll tell you about a famous Japanese comic called `` ONE OIECE `` . Long fligt The novels were writte in Japanese . Becouse I study English these days , I always read English children 's books . Tanabota probably is suppoused to be very high tonight , because on the night of July 7th , we celebrate the Tanabata Star Festival . I went to jym after work . Today , I can eat a lot of dilicious food and get many gifts . There are many people who belived this . I learned that there will be a Gemini meteor showe ! I like meteor showers . You may get thirsty without milk or aything when you eat sweet potatoes . Even though I did not want to learn English in the beginning , but I will try my best to learn it in the fruture . My glish teacher has taught us many words , but I can not remember them and always use them in the wrong way . What can I do ? I was impressived ! ! I replaced the sentences in the grammer book with my own sentences . My big brother participaterdin in the Tokyo malathon last month , which is one of the biggest marathons in Japan . My friend geve me a Goya yesterday . I would like the chance to at least eat with sombody . Some friends of mine have gone to forine countries to learnd English . . . but I do n't have sufficient time to go abraod . . ( good ! ) they were all so great , especially Hrajuku and Odaiba . I want to ask you something : What resorces do you recommend for learning English ? In Japan , almost all students ( elementary school , junior high scool , and high school ) get summer vacation from the 4th week of July to the end of August . Today , March 10 , is the day when candidates find out whether or not they passed the entrance exam of national univercities in Japan . But she also studied to pass the entrance exam of the Univercity of Kyoto ! I 'm sad because I wo n't be able to see her if she passes the exam ( since Kyoto is far away from Tokyo ) , but I support her and believe she will succces . Even now , the accident is going on , and because it is known that bolacic acid absorbs the atomic products ejected from the fuel , I heard they put it and water around the NPPs to deal with the problem . I felt really happy when my former boss told me that I would be moving to the Okinawa office , because the Okinawa office is quite popular amang my coworkers . I 'm also keep reading a English book ( HOLLES ) . so if the company does move to another place I must go to the main bance and work with him every day . I often have a runny nose ( perhaps a kind of allegic ? ) and I tire easily . Plz recommand me an English name ! ! Actually , I deleted the History in Windows Exploer , but I did not clear the document history . This morning , I rushed to get up , and eatted sanwiches which I prepared last night . Then , I realized that I forgot my tiket and wallet at home . When I found this site , I decited to post my journal entry everyday . I know how she feels , because when I was an instructor in drawing softwares at a bussiness school , I was happy to know my students ' improvements and efforts . They often gave me the enagy to teach . I am so depressed . I study English every day , and after I finish class , I come back to home . I continue to study English but I feel my English is notimproving much . I memorize the English words every day , but the next day I forgothalf . I feel so upset . I think my IQ is good , but my memery is not so good . . . My brother told ( or `` informed `` ) me that my grandmother was tranfered to the emagencey room for brain surgery . Untill I read another person 's journal , I had never heard about it . I 'm a big fan of `` The Dark Knight `` and `` Mement `` , and I like Ken Watanebe . However this was the first time I enterted a high school debate contest . Um , I still do n't know what to write about , and I definitely need some help , because I never have time to practice my writen English . . . Havy rain ! ! And I almost finished it this morining ! I try to do the exercises but I usauly must check the anwer . Today I did not read but I will be at home after I finish in the internet room . I bought fruit before I took the bus to go home . I eat on the bus a lot . I have a headache like I drank beer . I was going to make a team but I coud n't do it afeter all . And I do the other sports which are badminton and volleyball every Weddesday . A couple of mothes ago , I took a test called TOEIC which is an Engilsh reding and listining test . When the score was anouced , I was supriesd becouse I got 930 . I was relly gratifed and proud of my score . For example , we can get a healthier body through physical exercise and improve our blood circument . Playing basketball is good for increasing body height and also helps to strengthen fridndship . I have read a few blogs which say that olibe oil makes vanilla ice cream taste more delicious . Because it cools your body down , you comsume the calories in order to warm your body up again . I 'm really happy to have learned about this site and it 's a pleasere to share my useless diary . lol I 'm gon to try to keep a diary and also correct others written in Korean . I will take an English conersation class at the office . It will bigin from the 13th of October . I spend a lot of time drowing . Visiting frends who have graduated . I really appriciated that , especially from my girlfriend . I have to write an essay on Japanese education for foreign students , and I 'd like to know what Japanese lerners really think . From now on , I wil try to explain a few basic rules in Japanese . If you need to be plite , you can say `` Watashi ha hashirimasu `` . I spend much of my time serching for information on the internet too . The eperiment is also waiting for me , So then we promised that I would do nouthing to help household and study English all day long . Every year , I give hime chocolates . I am going to LV because I want to see Cilque du Soleil 's KA and O . The story is mainly a piratie adventure , but they also have special abilities similer to Naruto 's Ninjutu . I only started lerning english recently . I 'd like to speak it fluently but it 's more difficult for me now . When I first got it done I suffered from tremedous pain for two days . Green revolution has broght about great benefits for humankind as a whole . Untill the last moment the mother kept hugging and protecting her I studied my prnounciation with my teacher this morning via the internet . But today I enjoied it because I did my homework . Wirting in English is a little challenge for me . We live in diffrent countries and spend time togather for less than 10 days every year The correct sentence is `` Wolud you call me a taxi ? `` My teacher told me not to fear using incorrect English , but I absolutly do n't want to make a mistake like this ! I talked on Skyp with my tutor . I woked today . It was a sanny day . She often walked on the up - upslope . Thtat will make me more stressful . After I had done the trancery I took pictures of it . The event was canseled midway . All the people there were foriener . As you well know , this is a tarditional tactic for us . The race in Northen America is not good for F1 fans in Japan , because of the time difference . Our class has Korean , Japenese and Taiwanese . I went back to my farher and mother 's house they are really relly cool pants . If I am unable to understand these slang expressions , it will be difficult to comunicate with native spekers . Of couase , I know it is important to learn these things . this season gets more meanful . I would appreciate it if you cheack my English or send a message . A very very beautiful godess stays in the toilet . So I 've been searching on the Inrernet for a long time . But I have chores to do , such as laundry , buying food , making a framework for an exam , learning English , edting a movie , and so on . We can share each other 's culture and luanguages here . Sommer is horror movie season in Japan . Japannese horror movies are very scary and interesting . I so hated cleaning , espessially washing floors . And I like to rid of uselss things . I must will have to find mysels very embarrassing one day , than there will be no stuff to through away . Sometimes my friens are joking that someday I 'll turn to Monica Geller . ) ) hahaha I should learn as much English as posible . I enjyoed this trip . I thoght `` I need to learn English because I want to go on a trip tsomewhere It 's unbelivable though , having a baby at such an early age . I do n't have any cavicity , but my teeth are poorly aligined . A Jananese novel I wish I could help her because it makes me happy that the forigner read a Japanese novel . because I want to improve my inglish , However , in the midlle of the development , NEOREX noticed that the words `` Lifelog `` and `` Lifehach `` were becomming popular and more and more people were interested in recording their activities and making their lives better with ideas and tools . I have nothig else to do , so I powered on my laptop . Then I check the lang - 8 site . Although a human 's life - span is longer than ever before , we still have to cambat diseases which could kill both humans and animals . For the first 3 months , I had been very busy and had not been undersleeping . It 's because I want to improve my pronouceation . But I do n't know if my poronounciation is OK , or not . Last evening , I got insomnia , could n't fall sleep untill 3 : 00 am . All kinds of things came to my mind : work , study , life , famillay , friends and so on . It 's difficult for me to understand people speaking at ordinarly speed yet . Anyway , my soulder is still very painful . Woud you mind telling me how to get the discount that your invitation letter said ? I hane learned english for more than seven years now . Becouse , the big earthquake struck Japan in March . . I 've never trid this product but when I was young and stayed in my home town , my mom often cooked curry and I would eat it in the morning . Does it Make Sence I have a feeling when I hear someone say `` does it make sence ? `` that it is either the peron is getting impatient or just being rude . Because English subtitles are usefull to me and it 's free to watch it online . It seems taht I will finish the whole series soon . . There are a lot of restrant in Kyoto . Some Japanese are getting crazy about this , even when they do n't drink wine regulary . I visited the wax musium . The musium was brilliant . Do you have a Twitter acount ? I made a new Twitter acount for practicing my English today . I tried to memorize the new grammer for the next lesson . Fortunatery Grace had space in the car . My husband set up the hummmock between the trees for the children . I really missed her Spanish omlet and I desided to make it myself . Some spelling errors . Instad of potatoes , I put tometos into the omlet . I went to the chilli festival in Frementle today . Is the teaching ( studying ) method defferent from other countries ? I 'm going to Turky with my custmers tomorrow . postpone : Our school postponed the beseball game because of the bad weather . delay : The flight from Tiwan to Japan was delayed because a Tiphoon was approching . And She reccomended me to do it . Autumn is just aroud the corner . And my teatcher ca n't do anything because it is the pranksters ' last year in high school lol I 'm happy because the holydays are coming and I 'll be able to get out every day with my friends = D Please , correct all my mistaces . Additionally , the Singapore goverment disciplines harshly . Once a citizen commits a mistake , it 's very difficult to recover their carrer . We wateched a funny movie and drank . In software business , English is the most important language because almost all majar software is created by the USA . But I think a lot of college students do n't have each dreame anymore . But now , I 've realised that I have to do my presentation tommorow . I want to become a translater , especially for movies . It will be hard wrok because words that a translater can use in a line is specified by the rule of translation . I do n't know how long it will take , but I want to become a translater . But I 'm sure many people are atressed out and really want to do something similar , so I also think he is a hero ! ! But outside Bangkok , the situation is much better , other cities are queit and beautiful . They are always coming to the staition on time and very clean . They have comfortable and soft seats on the trains . I want very badly to improve my writing avility . My hobby is listning to music ! I desided to study English again for my dream after I enterd the university . Actually Ive already graduated from beauty school in Osaka in 2006 , but I still wana go . It 's not the time for writting a journal right now , since I might not be able to return home early to sleep peacefully . ( A1 ) My family makes me happy ( sad , angry , surprised , unhappy , bored , frastrated , etc ) . I work at an English conversation school as a front desk personnel but my English skill is n't good enough so I ca n't comunicate well with the native English speaking teacher . Sometimes genes have great influence on children , but what would be more important would be the quality of upgrowing at home , and teaching at school . So I thought I alreay knew English grammar So , Aftter work I played an exercise game at home . Obviously , our life has been changed enormously by the use of comeputers . It is unbeleavable . We never wear coats in Sempember or October . So I am going to take her to the pediatrics , which she is not used to going to , because today is Sunday when most medical clinics are closed . I do n't have cofidence but I do n't want to be stressed . I went to canada to stady the English lunguage . I live in Vancouver , it 's an intersting city . I took pre - tests for my law exams from Februaly 28th to March 2nd . There will be 8 witing tests which will take 17 hours altogether , and 7 marking tests which will take 5 hours and 30 _ minutes altogether . The students in the class congratulte him on this great news . I redistered at this website today because I want to ( `` wanna `` is considered slang ) brush up my English skills . In the Fukuoka prefecture of Kyusyu which is in the southern area of Japan , typhoons come at least five times per year . I bought 4 packs of Sushi and dilicios beers . Weather news says `` it wii be snowing . `` He articulated the connsonant sounds very clearly . Everyone in our class was laghing out loud . I called ETS lost and foung office and left a message according to the directions . So far , I have n't gotten a call from them , but hoperfuly they will informe me . At 5pm , we met at the classroom , and walke to the pub . Some of them , Switzerland guy who organized the party for us , Chinise girl , and South Korean girl will leave Edmonton soon , so we took many pictures . South Korean guy became 25 , so we definately celebrated him . I also want to drink bowls of congee and eat steamed buns , which are not easily foung at night . I usualy try to take a nap or study English . I am weak from a lack of exersise . . Unfortunately however , I do n't know of any classes for begginer . My native ( mother ) language is Chinere , I hope I can help someone here . I got sunburnt the day before yeasterday soI got somealoe to treat it . In the moring it is very nice , though ! So if someone has experence with this grammar , please tell me how to use it . In the past two days , my wife and I wlked to the park early in the morining . Kodomo toki kara , geijutsu ga suki desu , ongaku , ya kakukotoga dai suki . Boku no nihongo no reberu ni stuite , takusan no kuni ni sumimashita node , hokano kuni no gengo wo benkyoushimashita , demo daigaku kara ( nihongo wo ) benkyou shihajimemashita , hitori de nihongo o benkyoshite imasu . watashi no otosan to watashi no nihonjin no tomodachi mo nihongo wo renshuu shimasu , rainen waseda no daigaku ni ryuugakui shimasu . . I hope it will be repaird as soon as possible ! ! I 'm going to pick up noe of my friends at Nriata airport . Sometime it takes a long time to see them , and I have to wait a little bit of a longer time at airprt . However I did n't buy anything because I did n't have any maney on me . When I was a high school stuent , I did n't like sience . What difference `` anytime `` and ver `` `` whenerver `` , `` anything `` and `` whatever `` ? We went to a good restaurantm , and had a great dinner . We have not seen each ohter for such a long time . We plowed a new field and scatterd a bag of the fertilizer around it . My sister who tied the knot with a man who lives in Yamagata prefecture last year ( and enjoyed a hanymoon traveling to Italy ) got pregnant at the beginning of this year . I am already uncomfortable with the muggy weeather , their loud sounds make me feel much more uncomfortable ! or optimistic imformation , we wo n't know the proper action to take during a crisis . When I was a major in Architecture , but now I develop PC software to do busines for emproyees only . abou me I do n't kow how to use it in context . I hate crowded places , If I were there , I would have a headach . Of course , Eglish is required in the other three sports . And then I want to present the ikonography of the altarpiece that is focused on the biblical narration and mention some features of this work . The example in Berlin is very simular to another John the Baptist altarpiece in Frankfurt , so a long discussion has taken place on which is the original . The last panal is about the beheading of John the Baptist . These three painting works are supplimented by a detailed illustration of miniatures in a Gothic arch which funtions as a frame for the pictures ( or : subjects ) . Telling The program is about other TV programs I like , USA or UK drams , for exsample . And I made it a habbit to memorize what the native speakers corrected . We discussed transportation duringmy Engligh lesson yesterday . The shape reminds us a white heron flapping its wings , so It is called `` Shiresagi jyo `` ( white heron castle ) . When I was thinking about it , the earthquate finished . Killimanjaro . Lately , I 've been trying to get in shape becasue I 've put on some weight . I might be succes if I keep deiting for a while . Aside from these , his appaerance and behavior is also strange . The Japanese movie `` Hankyuu densya `` is modeled after the Imazu railway in this town . I especially love gyo / gyouza . Good mornig ! It happed that she was n't with my friend . When I went inside , we walked along a slope next to a big aquarium tank shaped liked a cylindric . As the slope was a spyral , it made me dizzy . They are an Engrish book and a quilting book . so I was very interested and excitng ! But getting a drivers lisence is difficult for me to get . Because I am worring about slamming and crashing into other cars . It 's only 12 : 26 , and I wana go home ! I wana try the real French full - course meal , or whatever you call it : S Recently , I could n't write a dialy in English . First , I plactice speaking in english with videos . Today 's topic was `` a park near my homw `` . I feel comtrtable and at peace when I take them . good moring everybady ! Last night my freind came over to my house . she first staied at my house This moring I made her breakfast . beaouse she thought that I was a good cook . Since I have the experience of being trapped in an elevater during a blackout , I am really nervouse about these kind of things . Every time I became exhasted and went looking for another sports , I would gain the weight back . ( If I had known the water in the pool was acutally up to my shouder 's , I would have tried three years ago . ) However , there 's good news , espeially for me . I try to stay fit without having an cigarets . Three of my friends came to my house to studey English together again this morning . I went to an Englisn - speaking country and have been there for 7 years . Also when they said something to me , I always can not understand them straighaway . When I was overseas , I did n't watch English news channel or movies . I could not understang those popular programs as I have no idea about their cultural background . He lives in a northan part of Tokyo . I just kept silient . I am feeling nervas . Althought it was boring while we waited , I believe that when we see the picture on the magazine we will find out everything was worth it . So I can eat those without thinking which dish is cheap or expencive . When I see the people 's attitude toward saving electrivity , I am always reminded of the nature of Japanese citizens . Studying in Canada is a valuale oppurtunity for me to become mature and learn , and I 've had to overcome tons of difficulties . Last time when my friend and me were leaving the Superstore and decided to walk back to the drom , a Canadian couple drove us back . Before that , I need to get my father 's permition . I 've am always thinkng about what makes a good speaker . These days , I think I 've eaten too much so I am gainning weight . So I pour some syrop into my Caramel Frappuccino . But after I started talking , nobody responsed to what I say . We memorize new words everyday , take classe during summer and winter vacation , and read newspapers and magzines once a week . To learn a forign language , we should try to speak it as much as we can . And in my opinion , a test will push us to speak more and seak better . The PM Hatoyama said that he would resolve Futenma problem by the end of this month . I did n't know what was happning . For example , when I go to supermarket , there are many things wrriten in Japanese on the packages . If there are ( some ) words that I have n't learnt yet , I would write those words in my notebook and serch them in dictionary after I return home . Anyway , it is a difficulty for me and I am worred whethr it would hurt their feelings if I ask them several times to repeat what they said . Therefore , I have to find someone who I can practce conversation with the eldery . Finally , I have no idea how to learnig to listen to English . YAKUZA appers in this game , Since the problem of food safety is becoming quite worrisom , Beijing citizens attempt to find farms themselves that can provide safe agricultural products . Maldive has recentry become popular for honeymooners . Also , I love lerning about cultural differences between my country and other countries . However the trees looks like all the others , except in spering . I 'm looking forward to the party , but I feel a little unease if I can communicate with foreiners well . anyway I will go tomorrow agian . . . . . . I sold a CD set of the bussiness teaching materials I used to listen to for 20000yen . I answered that I 'd like to eat epecial food . `` Think about what 's different bitween you and them . `` But sometimes I forget , so I think I should try something againg . So I have to look up the dicshonary many times . This means I have to read 100 pages of the book each day because I justy started to read this book today . I have had two turtoles for about 15years : - ) Their name are `` KA - `` and `` ME - `` . That was her first solo cocert and her first CD was released on the same day . I pretened to call a policeman . I could n't canceal my excitement about this chance for cummunication , because it was my first time talking face to face with a foreigner . We only briefly , greated each other , and that was followed by a long , awkward silence . I guraduated from a univercity this year , but the graduation ceremony never occurred . How do you studay a language ? Please tyr this method if you would like to learn a new language eficiently . In my opinion , we have an argument between secrity and the risk against [ urasite ] of each school . Moibes could be very powerful to prevent crime against children . If my freind has time , we 'll play catch or whatch sports . Her birthday is tommorow It 's very dificult . Have a good weeken . People probably just want to visit other countries even thogh they are going to waste money by visiting . My bad habbits I have some bad habbits . But recently , I 've tried to fix my bad habbits . The mountain I was running over today was a symbol for Buddist prayers . The weekend is over , I do n't like monday , and I am logging in the lang8 to see wheather someone had corrected my diary , but the result let me down . I am looking forwward to meeting them . Because I want to enter univercity . I want to study biomecanics . So ` native English speakers ` refers to the Amrican . I thought that more people would come here to sightsee , and the number of sucide here would decrease as long as the path was maintained . I think that is part of the reason why sucide occur here besides the poorly maintainig path . I have to prepare boild eggs . For example , I like to invite my friends to my place , enjoy my favorite sigarette in my room , listen to rock music , and drink a little alcohol before sleep . . . so on ( souds like a teenage boy XD ) . I 'm a little bit of a collecter of My Little Pony figures , and I love toys and all things Hasbro . The gugle satellite captured something that resembles a 30 meter long snake . They are n't sure if it is a real snake , but it 's highly possiblility . I think there are many misteries in the world . There is a very interesting mith in my town . Two hundred years ago , a wise Buddhist priest who could see the future said that my town would be destoryed by a huge flood . It was only a mith until one statue was ( actually ) found . There was a heavy rain in Shanghai this afternoon . My friend did n't meet the train . She planned to go to Xian taday . Without that TOEFL experience , socre , and training , I could n't have gotten those jobs in just two weeks . I heard that a lot of people in Finland like Robert 's coffe , is that ture ? The messages said that my card 's number corresponded to the card company 's one , so they canceld my orders . Luckily , my daugther 's team won the victory . Now I restart studing ! My favorite person is Ichoro Suzuki . A Welcom Party I saw the corrections , and had to start translating it using google translater . It 's unhealthfulness . If I wanted to give my thanks to you , I would write in card to X `` thank you for cherring me up : ) `` I submitted an application for a new job last manth . Additionaly we listen to them speak with patience because we know how they feel / the feeling So we should try to think about it from the yonger sister 's point of view . The yonger sister , Bess , has to depend on her elder sister , If I have an oppotunity , I would like to use slang words . I would say to my freinds `` Hey , what 's up dog ? `` But what is it like in your coutry ? I ate my salad fast , and after I opend the bag my hamburger was in . He did not know whether the post office ws nearby . It 's hard to explain why I like rany days . I belive that the TV has reduced communication between family members . I dought whether daily homework helps students Diffrent clothes sometimes influence how people behave . I was reading a Japanese comic yeaterday . Futhermore , every cigarette company should be banned for selling poisonous products Recentury , I have been very busy everyday . Then one Sunnday , I was invited by my friend to drive around . This surgery lasts only 10 minites but is it safe ? ? I 've kept learning English , but my English skils do n't look good . I did n't have many jods at work today . I have a girlfrind . She told me to let our relationship return to how it was before , when we were frinds . I did n't think I would like this book cuase romantic novels bore me . I am a saleman in spite of having a speaking problem . If I were not a stutterer , I would laught at it . I have met several people who have overcome stutering . I did n't feel bad at frst . Some were from England , Canada and Amarica . I called her back wondering what might have happend . I aired out my ' zabuton ' becaouse the weather was fine . : Well now , coming in were you rooting for the rakers or the Sixers ? : No , I know it was your first basketball game ever , and I know its very exciting , but when it 's all said and done the season will have been long enouh . This site 's a little diferent . . . My hobbies are snowboarding , traveling , and studying foreign langueges . Now I study English and Spanish . I heard that she had had storong cough and felt lazy for long time . Was the oven out of oreder ? The traffic ( on the hightway ) in the capital was so heavy that we kept moving really slow for an hour . Almost all of them have thier own jobs and they practic soccer in their off time , nights and holidays . My favorite sezsom is summer . ^ ^ During the Cristmas season , I was too busy to enjoy the festive feeling . But English is telling me * , `` Vitaly you are so / too stupide . `` * just a third option I often get anygry with myself , when I go to get the coffee . I find nothing , and I have to do it all over again . One day my throwt was sore . Now I ca n't breathe through my nouse . On another note , I watch the TV TVdorama `` Soredemo bokuwa ikiteyuku `` . I had n't used Dreamweaver for half a year , so it was hard to remenber how to use it . However , I ca n't talk to anyone in English on Skpe at the office . Thank you for reading my journer . It was difficult to understand what they were saying because they were speking Blitish English . Today I 'm talking about an Itarian restaurant . . . . . . . I went to Saizeriya , an Itarian restaurant , with my friends . Do you know it ? I think Shogaki , the president of Saizeriya , is very clever becouse he always tries to keep the prices down while keeping the food dericious . He has his own farms and grows the vegitables they use . Also , from the farm to each restaurant , the vegitables are kept at 4 degrees becouse the vegitables will keep fresher that way . He tries so many things to serve cheap dishes and be more dericious ! I will go to the shopping mall , because it is coller than I just sit in my room . Certainly , it is very dengerous , because Japan relies on nuclear power for many parts of its electric suply . so younger peopole in Japan should have more interest in these problems or in politics . What do you think about nucler poower plants ? Yesterday I took part in this Lang - 8 and wrote my first jounal . regret : I regretted calling her such crel words . givern : In ancient times , Rome was governing all the world . Hi , it 's my first text on this page ang I hope that this page will help me in learning english . As I was n't able to focus on the lisning part , I do n't think I get a good score . Anyway we enjoied the beautifully displayed dishes and the beautiful scenery of the countryside . He must be straved ! Avogado and fruit cocktail . If you meet people with whom you have bae memories and you have not kept in touch for years , By the way , if English speakers speak Asian languages in Asian coutries , Asians are interested in them . But if I hear Asians speaking poor English in English speaking countries , English speakers treat those Asian without considareation . Anyway , Speaking English is in Grerat demand and speaking Asian languages is not . For beginer , I think acoustic guitar is the best choice . It 's a greate web site . Koyasan is a very famous place for But - Butism , called SHINGONSYU . And I have invited my foregin friends to visit my home town . My dream is to run a youth hostel in my town and I hope that many foregin people will visit my home town . I do n't why , but I just feelling sad ! Therefore , I think that salaries should be based one 's perfomance or the amount of benefit they have brought to thier workplace . I tied a ribbon to it and painted it penk . Therefore I ate a salad to not skimp on vegitable . It 's also a good experience which can arouse my interet in language and at the same time help other people . I am willing to correct articles in Traditonal Chinese , but Simplified Chinese seems to be more prevalent . Every custmer seemed ( or : seems ) to love our shop ! : ) When I enter into Lange - 8 , it was a big change . In Japane most people are punctual and honest . Watch these crip , please : D for just 30 minuits . Well , I do n't get tooo much , but it 's stil a good deal : D I 've been reading the book ' The Wondeful wizeard of Oz ' . Now , mobiel - sites are important for E - commerce in Japan . Recentry , I had neglected studying . However I wiil go there someday ! I personally felt that AVATAR 's story was not so bad , but the visuals and 3D tecnology is worth seeing . I reccoment it to you . I will try to introduce to you the story of AVATAR briefly tommorow . . Oficial Trailer of Avatar female : I wanted my hair cut by a female whrn I went to have my hair cut . Last month I took the `` Toulism English Proficiency Test `` and passed it ! It was heavy , even without fried potate the double - decker humburger was enough to fill my stomach till the evening . english is so duiffcul What can I do to srretch my english skill . It is excacize for my brain . I often say `` parden , please ? `` . I work at a conviniene store that is near my house on every Saturday and Sunday . many people come in and behave deifferently . that is one of the reasen why I work there . I think that most English learners dislike grammar which is essential to understand well when speaking English fluentry . I have alredy noticed the reason why Japanese are n't eager to speak Englsh in front of Native Speakers . An English man came to my gym to do tarining . `` Consult the dictionary `` is just sirious . I looked up the word you tought me in the dictionary . But envidences ( OR my experiences ) proved that I was wrong since most Singaporeans can speak Mandarin . And we are trying to figure out the most efficient motheds to improve our speaking . SO , good lcuk for us . ' The time when you think it 's late is the perpect time to do it . ' and ' The man without motivation is not different from a dead body ( man ) . ' But I hardly speak or hear English , and I am not good at readig and writing . My English teacher always wants me to write Eanglish compositions , but I am scared to do so . Even so , those gadgets looks convinient and usufull . Sudeenly , she became silent . It is very cold at the office because of the air airconditioner being put on high . My seat is right under the air conditoner . The next game is supposed to be reliesed in the NINTENDO DS . In Japan it is wintter now . Recentry , I happened to hear very nice music . I watchd the Disney movie `` Enchanted `` . My friend itroduced me to this useful website . Althought my Japanese is not good enough to write an entry yet . I have stusied english for about a year . I ought to have breakfast by stopping at a rastaurant before getting to the airport . Because it is very diffrent from what I used before , it is very difficult for me to use it . I really want to visit there again , and , if I can , I will live there for sevearl years . Last week , the whole northern part of Taiwan had been enclouded by depressing rain for a long time . And because of the rain , I could n't go very far to eat out , and I could only choose the restaurents nearby . I have to wash a lot of landry ! I 'm reluxing on holydays from 8 / 13 . Today I 'm going to clean my room , do loundry , wash the deshes and so on . I do n't like the bus becouse it 's crowded . Beacause the job notice was supposed to be annouced today . I called and asked why the notice has not been announced and they said that it was delaied until next week . There were many venders selling everything you could ( possibly ) imagine . Testerday I went to an NBA game , Toronto Raptors vs Chicago Bulls . I like croqutte because they do n't cost very much ( around 10 - 20 yen each ) and croqutte with brown ( worcesteershire ) sauce is the best with beer . Since I had notspoken English for longtime , it was difficut to speak fluentry . Sometimes , I encounter difficulty in correcting students ' English compositon , so I need help to correct them . However , after comming to the US , I feel this is not true . Please let me know about the rasism that your country has . I love jogging . I used to have this habit , but sundely I stopped . So , we just had the Gay Parade , which is one of the gratest paredes in the world . I think it 's a great web site because I can partice English here and I hope that I can help others to learn Chinese too . this is my frist time I recieved an e - mail from someone who saw my profile on the website . And I recepted his invitation . I learned that I should never use the webscam with a stranger . And I delited my profile instantly . I tried to study Spanish after I came back to Japan , but there was no lectere in my university and I did n't have enough time and money to spend for it . My friend has been going to Univercity at night time or holiday as well as going to work for the past 5 years , they said . I have never tried something like that , so hearing about it tuoched my heart because for some time I also wanted to go to Univercity but I could n't decide how to do it until now . What my friend said made an immpression on me . As you konw , more and more people are subhealthy , but why ? Which of these sentenses do you use , `` Do you have a pen ? `` or `` Have you got a pen ? `` ? If I will have any power , I 'll write an essey . I 'm preased to love it because I want to spesk English very well , as if I was a native speaker . If I need to make an appointment with my friend , but I am not sure when he is avliable . Then I broug the bicycle to a ( bicycle ) shop , to ask for a repair . My hobbies are learning languages , speaking with a lot of people via Skype , drinking at the bar with my frineds , reading books , going ( travelling ) abroad and so on . Recetly I have started to want to get one more and more . Especiall , I want to talk to improve my English skill . And one hairdressor came to me and asked me They looked quite mature for thier age at the entrance ceremony because they were wearing suits . My university does n't have a lot of students but I can make friends with almost everyone and I 'm looking foreward to that . Yestarday , I was depressed because I went to my part - time job , but it was my day off . I 'm into holoscope these days . I always feel excited when I sing Karoake . [ alternative ] One of my doble majors is Chinese literature so I applied to the student exchange program . However , when I was young I also got interested inEnglish because I started listening to Pop Songs ( especially rnb , hiphop : D ) . However , to ME , the most important thing compared to what was said above is our relationshop ! I 'm looking forward to goint out for dinner with her . I am a 23 - year - old Japanese girl , as I mentioned in my profile , and I mainly work as a kindergarden teacher . Hard schdule . I feel I 'm luckey and I want to care my daily life . I am not sure if they do drugs like drug addic or they did it just once , because I only heard it from someone that I hardly know . So I decided to ask the two guys face to face if they are drug addic , or if they are dangerous , because I do n't want to judge them and talk behind their backs . Near the beginnig of our relationship , he made me a dinner and there was only some fried meat and some instant mashed potato . The healtiest food among what he think is healty is a subway sandwich but I know the white bread is n't really healthy , at least for Korean . The e cource involves listening to English for 1000 hours in a year . According to the explanation of the cource , it is generally said that about 1000 hours are required to get used to hearing a foreign language accurately . The cource cost about fifty thousand yen . It was not cheap but I could pay for it thanks to the welfare progrum which my company offered ( to ) me ! The cource will begin next month . And when I was a high school student , I experenced a job at an airport . So , I wish to become a costomer service agent in an airport . I am learnig English and Chinese now . It was a game in the UEFA chmpion 's leagu . I had lived there untill graduating from high school , after which I left Hokkaido . Spicy Foods & Cat 's toungue It is a Japanese custom for wowan to give a person she likes sweets : ) I 'm very happy becuase I want to learn English in a more proper way . It was ranning heavily today . about my life on ranny days . Study animetion abroad . He is studying Japanese animetion at school . I do n't know what kind of animetion he was studying ? But we had a nice conversation togher . He looked like a fuuny and friendly guy . It is a deliciace ! ! I enrolled in an online English school a coupple of days ago . Can you believet that tt one leson ( or : that the fee for one lesson ) is only between 1 $ and 2 $ ? I really wanted to go to the English school but I quit going there because the lesson fee was expenssive . An Amazing Wesite for Langauge Learners ! Right now , I 've come to be albe to understand recorded voices in English , but it is still hard for me to understand what they are singing in English . They sell variouse kinds of cakes there . [ alt . ] But I think I perfer the clothes which suit me . oters . I like nearly all clothes colors except red , but I do n't konw why . All reds ? I perfer the fashy things . My faviorite jewerly is earrings . I could n't sleep well last night becaouse I was coughing all night . I 'm a really short temperd person . Befeore I came here , I thought `` If I live in the U . for a year , I will be a really good emglish speaker . `` But I was wrong . I am surprised at how difficult it is to learn other langages . So I was really disapointed in myself and kinda bored of studying English . But Lang - 8 often encourages me to study , because I can see many people who study other langages and may have the same feelings . I really like to correct forigne people 's English . I was typing my first jornal on Lang - 8 little while ago , and when I hit preview , my computer screwed up . . . so I am re - doing my Journal . Are there ramen reataurant in your country ? frist diary ^ ^ I 'm interested in learning about other country 's culuture and making friends ^ ^ She smiled and aske me , `` Why did you choose me ? `` I do n't think we are either close or distant ; we just call or text when neccessary . But in the last few months we have been ignoring each other due to my imprudent words . I think everyday , `` l 'm happy , l have all things l wnat `` because of this , but sonetimes because l do n't want something Becouse if I think too much , I ca n't continy . I am buzy , so I am going to just try and try . So my friend advicsed me to write my journals in this site . I want to use the phrase `` get to the bottm of this . `` I will have an art class . I 'm going to go near the port and paint a pecture of the fishing boat . Yeaterday , I played soccer from early morning . I will join a soccer tornament in November . I have a dog for ten yaers . We saw two ponnies , a pig and chickens . Many kids kept trying to feed them . I think I should be more careful and deligent for work . Dubois put her girls to bed and was wating for her husband , sitting on a sofa alone with lights turned off , when Mr . Dubois who was deeply destressed finally said to him , `` Honey , it 's already 9 o ' clock . `` But in Japn we only buy presents for children and cupple . So , I deciede to return to where my university is located . My ankle was hurt last Thursday , and I got another unknown disease last Satruday . My bad luck began when , last month , I went to a temple to pray for mome money . So I was thinking I definetly have to go there again . I ca n't wait to have the party : ) and also for the holloween parade at 6 AV : ) I hope I have the patience and perseversance to keep on writting diary entries in By the way , I registerd on facebook yesterday ! He looed at his feet , and saw there were tiny animals . He was scared , so he ran along the innor way . Farthermore , some adults play sports there as well . When I arrived at Osaka , it was rainning heavily . If I eat a hanburger slowly , chewing it well and tasing it , I always regret eating it . Recently , I could only go to work two days a month because I have been receiving post - surgical chemotherapy to prevent the cancer 's recurrence and metastatis . Though it is regrettable that I got sick , I belive my disease has helped me develop a greatness of soul . But I apparently looked like I was listening to an I - pod , so most people were surprised to see me change the radio chunnel . Of cource , I realize that my range of vocabrary and way 's to express are limited . I have to syudy tonight for tomorrow 's tests . Yes , I know that I will soon enter into a universty and I 'm 18 years old . I jogged only this weekend , but I think it had a little / some effect in decrese my weight . This is my first time using this kind of website ; My friend recommonded it to me . Example senteces are welcome . I would keep taking lessons but I do n't have enought money . I rearry enjoyed her stage performance . `` Pirates of the Carobbean : On Stranger Tides `` was exciting , too . curently they are preparing to plant rice . It starts in the afternoon , so I 'm planning to go to the library in the mornig to read a book ! But I 'm little nervours becouse of my English communication skills . My job is a project manager for developping web sites . On september I have a plane about going to Victoira , BC . I was impressived ! ! The first one is called Tirya and has a more detailed history than the other two , I 'm also reading an English book called HOLLES . In the morning , I rushed to get up and eatted sanwiches , which I prepared yesterday night . At that time , I began to realize that I had forgotten my tiket and wallet at home . When I found this site , I decited to post my journal entry everyday . I know her feelings because when I was an instructor in drawing software at a bussiness school , I was happy to know my student 's were improving and using effort . I know it is really hard do it , but sometimes I 'm lazy or drosy and would like to sleep . The story is mainly about piratie adventure , and they also have special abilities as similer as Naruto use Ninjutu . I woked Today . And , Thtat will make me more stressed . I would appreciate it if you cheack my English or send a message . I really hated cleaning , espessially washing floors . It is usefull to me because of the english subscriptions , and it is free to watch . Do you have Twitter acount ? She reccomended that I do it , too . I 'm learning new vocabulary to become more efficiencly I took practice tests for my law exam which will be held from Februaly 28th to March 2nd . It consists of 8 witing test that take 17 hours and 7 marking tests that takes 5 hours and 30 minutes . Everyone in our class were laghing out loud . I called ETS lost and foung office and left a message according to the directions . So far , I did n't get a call from them , but hoperfuly they will informe me . At 5pm , we met at the classroom , and walke to the pub . `` `` from South Korea became 25 , so we definately celebrated his birthday . So if anybody has experence with these , please tell me how to use them . Kodomo no toki kara , geijutsu ga suki desu , ongaku , ya kaku mo dai suki . I am an exchang student , so I need a host family to live with , and also there are some other exchange students in my high school , and they also live with their host families . And then , I want to present the ikonography of the altarpiece , focusing on the biblical narration , and mention some ( special / particular ) features of this work . Since the slope went in a spyral , it made me dizzy . First , I plactice speaking in english with videos . Then , I wrote an nessey . Good moring everybady ! last night my freind came to my house . she staied at my home this moring and I made her breakfast . beaouse she thinks that I am a good cook This is Sarah 's douyhter . I went to an Englisn - speaking country and was been there for 7 years , So I can eat without thinking which dish is cheap or expencive . Before that , I need to get my father 's permition . So , English native speakers meant Amrican . When it was lunch time , I was going to go to the restrant . It 's unhealthfulness . So we should try to think about it from the yonger sister 's point of view . I aired out my ' zabuton ' becaouse the weather was fine . The hightway in the capital was so congested / packed / busy that we moved really slowly for an hour . I ca n't talk to anyone in English on Skpe at the office . Anyway we enjoied the beautifully arranged dishes and the scenery of the countryside . Anyway , Speaking English is in Grerat demand and speaking Asian languages is in little demand . For a a beginer , I think acoustic guitar is the best choice . My dream is to run a youth - hostel in my town and I hope that many foregin will visit my home town . And for just 30 minuits . My wife was amazed at such beautiful pictures that she was excited all the time while waching the movie . I , personally , felt that AVATAR 's story was not so bad , but the images and 3D tecnology are worth seeing . I reccoment that you watch the movie . I will try to present the story of AVATAR briefly tommorow . Oficial Trailer of Avatar An English man , a member of my gym came for tarining . while trying to figure out the most efficient motheds to improve our English speaking abilities SO , here 's wishing good lcuk to us . Althought my Japanese is not good enough to write an article . I called to ask why the notice had not yet been announced , and they responded that it was delaied until next week . Please let me know the rasism that your country has . I felt weird putting something into green tea but we put suger into English tea so maybe it 's the same thing ! : p However , to me , the most important things are relationshop ! He is studying Japanese animetion at school . He looked like a fuuny and friendly guy . I enrolled an online English school a coupple of days ago . Of cours , he 's never at temples , shrains , chaches , and moskes . There were variouse ( types of ) cakes there . Today , I tried to call the hospital and I was able to get an apointment . ( so ) OR ( therefore ) my friend advicsed me to write my journal in this site . We went to Bexhill near Eastborne . We went to see The Red Arrow show in Eastborne . We saw two ponnies , a pig , and chickens . Many kids tried to feed them all the time . Though it was regrettable that I got sick , I belive my disease developed in me a strong will to recover ( alternative ) It starts in the afternoon , so I 'm planing to go to the library in the mornig to read a book ! And he has learnt some japenese words . The story consists mainly of piratie adventures , and the main character also has a special ability similer to Naruto 's art of Ninjutu . But I ca n't unbelivable she is having a baby at an early age . I 'd like to go by car , but it has been broken sinse two days ago . last night my freind came to my house . this moring I made her breakfast . beaouse she thought that I am a good cook I reccoment it to you . I really wanted to go to the English school but I have stopped because the lessons were too expenssive . so my friend advicsed me to write my journal on this site . He can speak some japenese words . ================================================ FILE: data/example_data/jfleg/corrections.txt ================================================ So I think we would not be alive if our ancestors did not develop sciences and technologies . Imagine yourself you are working in factory just to do one thing like put air a on car if they fire you you will be destroyed , because you do n't know more than to put air a in car . For example , they can play football whenever they want , but the elders can not . While It is true that consumers prefer to buy products with lower prices , when international companies that are already certified begin to send their products to market , people will prefer to consume those goods because the difference in price will probably not affect them too much . And young people spend more time on their lifestyles . Students can focus on only a few subjects they are interested in and they will become experts in those areas . He thinks differently than others and he has succeeded . These activities make the community a better place to live and include those values in all the members . all the broad knowledge helps them to understand their major in university classes , as well as help them to make a correct choice in a specialized area . I could very easily understand why he would always bring bad marks home . Then , when we went to the Science Olympiad , she had diverse knowledge about the subjects , and it was not new for her to think about new things . If every person tries to learn and understand lots of scientific subjects , no person will do it and , as a result of this , no science will be improved . they will run out very soon at the current rate of utilization . and it will put your mind into non-stop learning . In today 's world Computer skills are the first important life skill . I have never stopped myself to think this , but this is a real possibility for the future . If we consider an idea as a totally autonomous concept within the individual process of defining reality , I think the ideas are useless , and not based on experience . If there are specialized doctors that have done the operation often , he becomes talented in his job . It will be good situation . the school teachers there are the ones who create the future of the younger generation so we have to teach them better . some tour guide will want to set maximum security to make the tour difficult because you will only have a wonderful view through the bus . this will affect exams . But on the other hand there are also people that are often convinced by the interesting advertisements they see everywhere , because of this many times they have to face problems with the product that they bought and many times there is no way to give back that product . Ever increasing competency rates force them into frequent business model changes for a compatible transitional flexibility . However , this reading passage casts doubts on the speaker 's mention . For example , in the 2 0 0 6 world cup form Germany , many coaches on a team . Many Scientists obtained clear results of investigations after the facts were on the table , but before they could even begin to theorize about them . They want to make people understand that their product is the best and you can really trust it . Video is convenient , but if teachers are concerned about students , using textbooks is a good ability for students . In my opinion , it is dependent on a particular person . for example when we talk about speed they must understand why it is dangerous it is better than if they have an accident and learn after that . Therefore people will be able to live with the automobile society and nature for the future . finally , the third piece of evidence that birds use a type of internal compass is that birds have crystals of the mineral magnetite embedded in their break . The lecturer says it is more important to provide enough fish to the people . Furthermore , a tour guide will also provide safety and security for travel , since they already know the dos and don'ts of the tour . Which caused her situation to worsen . This argument is not only true now , it has always been . The Last thing they have to study is disease , which means they will be safe . Learn ! There are very successful politicians that have never tried something new . Therefore , we have to reduce sulfur and nitrogen dioxide . Maybe at the beginning , but time after time other animals in the environment will choose them as their new food . Furthermore the professor denies the reading passage which states that treasure does not exist and is just fiction . knowledge plays an important role in the life , which can be acquired by understanding concepts rather than learning things . And the critics used few arguments . Besides , young people usually like new-fashion things , like iPods or mp 3 players , I can see that the majority of young people ca n't live happily without music in their ears and movies at home . Producing vehicles that are more fuel efficient will damage roads and that will cost a lot to repair . some say this product is recommended for the most important doctors , or something like that . This creates people to fall into peer pressure . For example , last month i bought a product for skin because the advertising got my attention . Newer vehicles are something that could fly in the sky , the we need not worry about traffic jams . A perfect example of Real politics , was when Bismark manipulated the letter written by the king and sent it to the French emperor Napoleon III . It 's very obvious that more cars will be sold there . Also , a food chain becomes stronger than it was before , such as rabbits and bears . According to me , in order to start the carrier through its ' success , it`s important to have a solid base , that means knowledge and experience . Yes , that 's right , but there are some young people that think about the idealism of their country , about their communities in Indonesia , about their friend who ca n't eat or go to school . Technology has grown so fast because everyone tries to work on an invention due to some ideas he developed and concepts that have been applied to this idea from different subject areas . The bass is not only a predator for menhaden , so if people catch more bass , the population of other fish will also grow . Today They are using this method as a curative measure , but with increasing importance of preventative medicine , normal healthy individuals are leaning towards not using cars whenever possible . Government uses that money for public use and safety . I started to have an interest in math , and spent a lot of time solving math problems , and I got a good score on exams , it makes me have more passion about math . Broad knowledge on may subjects is not possible to acquire . The lecturer went against the author 's insistence for the following reasons . To my surprise , nothing happened . It usually makes them more positive to do it . In both advertisements it is said that these tooth pastes will make your teeth brilliant and brighter . The advertisement says that the car has space for ten people , when the truth is that the car just has space for four people ; another example is a skin soap advertisement that says the soap is the best because it will make your skin as soft as a 1 5 year old princess or as soft as the skin of Jennifer Lopez . He will consider himself losing the years that he spent on collecting the money . Actual markets require more specific knowledge than broad knowledge . Only by breaking out of your normal life can you discover new perspectives in your job and your private life . Extending the same example as stated above , i can tell you that during the worst period of Amitabh Bacchan , he was offered a job in politics to take advantage of his publicity and would be paid heavily for it , he was very much in need of financial support , but Mr. Bacchan rejected this offer because he knew how politicians play with the emotions of common people . people who are realistic can be more successful , as we can see throughout history . It means , to understand war development , you should understand the ideas and cultural movements that resulted in a particular period , and helped for the occurring of that war , for example . A different passage emphasizes an alternative to prescribed burning that uses the term " disking , " a method that uses fire to clear out dry and dead shrubs , thus stimulating the growth of new plant life . But , I went to Jeju island more than three times . The second one is to specialize in one specific subject : one has his own test to study for , so let us talk about this subject . After this effort , many companies in the world started actions to get this eco certified . After the construction of the first commercial car in 1 9 0 8 , the ford T , mankind has been subdued to the use of the car . Young people are still trying to obtain experience , while older people have it already . Take toys for example , advertisements that target children in particular are the best example of the way advertisements create a false image of the product . They need cars for many things such as transportation , entertainment , and business . Because of the commitments men have to make to go to the army , men have to sacrifice their precious time of youth . If scientist will do something different like modifying the form of carbohydrate ( gelatinized and non-gelatinized ) , and then incorporating that into fish feed then fish may have a greater chance of growth and then be utilized more efficiently much to the appreciation of everyone . While the results from both experiences are same , the method and the time that brings a result is not the same . Because you do not need to be a hero in order to try new things , you just need to want it and know that any result will be a success in things that you want or in learning . In such a situation , there is no other way . Even the magnitudes on Mars are no evidence of life on Mars . in writing we are nearly unable to express people 's feelings , but via action on TV we can understand these feelings better than from books . Everybody knows that today , the truth of competitive markets in each and every field , we 're facing plenty of competition , and if you are choosing a career in the field of software , for example , you have to master the subject and then you can easily get a job . Indeed , they can be refused . But by then , we have already bought the product and end up losing the money . if they learn one thing , they will learn another until they know how it works and what the useful aspects of it . Therefore , he likes to do risky and strange things , and he enjoys it . I believe to specialize in one specific subject outweighs having broad knowledge of many academic subjects . In my opinion , if someone thinks one is more important than the other , why not focus on one ? And people feel more awkward when it comes to their ears that this is something that is a current event . However , I would prefer traveling by myself , with good preparation , and be filled with joy . the fact of the matter is that a lot of academic subjects can not be used separately . Although some people say that the treasures are already found . Another solution could be the developing of more fuel efficient cars , which could also be good for American car manufacturers who will produce more attractive cars to sell to other countries . First effect is global warming . So , Ho Chi Minh city will develop . That 's why i will not be as hard as when i am alone . Successful People can explain any other matter and discuss any other problem . But it is dangerous because some drivers make trouble with other drivers and then the drivers crash their cars when the streets are busy . Because it is already fixed data , nobody can create a problem with this type of literature . Also , the professor indicates that we should be careful when we use the prescribed fire solution . Moreover , they have to learn about advanced course material . Critics of this policy focus on three points ; first , Yellowstone fires scorched a large area of land , and a lot of plant species were lost . In my past experiences , there are some lectures which are completely based on facts , and there is a slim chance for me to apply them . When you understand the idea is one way you can figure out the statement that you see in the moment . However , a lot of reasons explain what the placebo effect does . Water is necessary to live . I 've seen many times on TV the same people , rich people , who are interested in politics , sports , new technologies , and also in space . Because if I study in this way , I will gain so much , and I also will have a lot of information from the books . When you understand the concepts and ideas , it is up to you to prove them , to see if they are really what you have been told , and i think this is the main reason why students prefer facts rather than just understanding ideas and concepts . for example , if you are attempting to study arts and sciences , and are trying to get qualifications in both , you are an extraordinary creation . So in this field , it is very important to understand all the concepts and ideas they gave us and use them to solve problems . It is also necessary to take risks rather than just doing what you are supposed to . Third , the professor agrees that the gas prices in the United States are cheap , and they should raise them to save the environment and people 's health . But they do things in a different manner than others do , which gives them success . People feel more secure and comfortable to travel with their own car rather than travel using several public transportation vehicles to reach their destination far later than they would desire . I think it 's harder for a successful person to risk something becuase they could lose much more than others . So the importance of communities in society decreased . At some time they have to face their failures and struggles . the other reason is many people see exotic cars as luxury items , and that encourages the car industry . So , some people use their car only for moving somewhere . and a rolling stone gathers no moss , says proverb . And there are a lot of critics concerned that the required testing is too long to be valuable for patients . we know that prescribed burning should be repeated every few years , but it 's very expensive to prescribe burnings every few years . The Second difference between the encyclopedia and information on the Internet is that there are a lot of viruses and hackers on the internet , and hackers can easily change information regarding any topic . For example , If i want to win a case in court in which technical questions are to be considered , it is not enough to just know about the law . successful people try to do new things , like use any machine that could possibly help people . The economy would benefit because this would enable it to compete with car manufacturers worldwide . And if you have knowledge in all areas , then it gives you an added advantage to you knowledge level . That is because If I became a member , I would be highly esteemed by my friends . But in my opinion , if you want to be a successful person , you should be brave , try new things , and take risks . Who we match them together with . They explain specific points by using examples of the dinosaurs behavior and physical appearance . the lecture mentioned the Mongol court records of the time . Firstly , a teacher teaches students the right way to do things and affords confidence to students . We do n't usually study these subjects very deeply . It would be a really wasteful idea . However , I still believe that learning facts are important for the student . he usually brings a book and asks someone when he wants to understand the book . I do not want to go to the Eiffel Tower in Paris , or The Statue of Liberty in New York , when I travel because they are too well known , so I have already heard about and seen them . In this case , the advertisement totally makes an impact on that baby . Lastly , business owners thought factories would help reduce their overall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderful places . Really successful people gained their fortunes by trying something new , something that no one else has ever done before , and taking risks where people were too afraid to . For example , when I was a freshman at Meiji University in Japan , my classmates and I traveled to China . Second , many of the disadvantages cars have will cease , or decrease , in the coming years , which will make them more popular than what they are presently . Nowadays the drinking of soda is an addiction to most people . If you want to actually get to know someone , or something , you can spend the whole day with that person , or place , and if you do not , you would n't have reason to even speak to that person , or even go there . I think cars will not be completely replaced by new automobile innovations , but they will certainly be fewer in numbers . successful therapists know that one treatment can help one person , but for a different person it may not be appropriate . Although life is never easy , age does n't ensure you can be protected from bad things . we are also able to deal with the problems found with it . First of all , the lecturer thinks that using the gas tax to reduce the number of gas consumers is not good for economics . But if he did one machine like that , he , if he wanted , can do another differently , but he does n't think that because he does n't know his own abilities . It is a brilliant idea , and you know that you are really good working with small boys and girls , but you have to risk your work , your salary , and , with this , almost your life for an idea that may , or may not , work . Briefly , sharing the cost of a vacation trip is beneficial for travel . In order to get an eco-certification , many wood companies around the world have introduced new ecologically friendly practices . It will be unfair because it would affect low-income Americans much more seriously than well-to-do Americans , and listening to the part where the woman explains her reality does not reflect the real economic damages raising gasoline tax would do to low-income Americans . When facing such challenges , only those who are perseverant , determined , and always strive until the last minute , despite of the risks , can be successful . and governments will not provide good public transportation systems for many years later . In old times , families tended to live in the same place for ages . I think that young people are not able to think as deeply on things as older people . My friends are celebrating at the party . For instance , when I was a university student , I researched and reported about community history in groups . Thus , most of the inhabitants in rural areas are the old ones . This is very positive for the company and probably he will get a better position . On one hand you have the general practitioners who look at all the basic problems related to the body , while on the other hand you have the specialists who only take care of specific areas , whether it be an orthopedic surgeon ( related to bones ) , a cardiologist ( related to the heart ) or an ENT ( ear , nose , throat ) surgeon . The definition of young or old is not apparent . The reason these problems occur is also because of the exam . He might feel afraid or terrible when the same thing happens to him . When older people think like that , it creates a big problem for young people . Some people have said that a placebo is really a drug , about 3 0 percent of patients agree with this idea . After that they have to find a well paying job . But about myself I 'm gonna have it to too because brother alwys always about it and i agree with that broad knowledge . And it does n't matter if the people who take the risks achieve all the goals they had in mind ; what is important is that they made things and have proved that they can do a lot of things in their lives by always focusing on good results for themselves and the whole world . For example , it happened to me when I studied the concept of inflation . So lets not lose hope and let the scientists do their jobs , but i think being in a traffic jam is a stressful situation , it requires time and patience and there are so many more disadvantages of a large number of cars . for example , there may be elderly travelers which may cause slow movement due to their inability to walk fast . This is evidence : the company that made some of the products had to pay a lot of money to the broadcasting bureaus . In the 2 1st century , our young people can learn a lot of academic subjects . Movies and other television shows provide a lot of information about how real life is . There are many ways for this , another example is a bottle of juice , if it tastes bad , they make their shape wonderful and make it colorful . A lot of memories , with enough time to remember , will increase the possibility of enjoyment . A scene of violence can have an effect on them . the communities in general have reckoned that they need support from the young people , they must make a reasonable appeal . if it does , you will only get some misunderstood idea about that article but not the original one . Secondly , chimps are also capable of learning grammar , meaning they can demonstrate the ability to combine words and utilize grammatical constructions . I think to learn facts is only evidence if the students can work hard and if they are able to keep every detailed information taught , but it 's definitely not evidence of their intelligence . So , if i have a lot of information about this subject , i will talk a lot with knowledge but if i have general information for this subject , i will talk about this subject with my limited knowledge and this case may make me shameful like when my brother asked me about some thing but i did not have a lot of information about this thing . Because if i see someone did something that may save me time and energy and it works , i will do it . That 's why he is a legend in these days and people respect him . On the other hand , when I was a freshman at my college , I could concentrate on my favorite subjects . People tend to choose other medias , and that is why literature is in danger . I am pleased to know intelligent people and learn about things which I do n't know . But these things seem too hard for old people , they move so difficultly , and do n't have a healthy body to play things like sports . With her salary , we ca n't buy some car because we are planning to finish our house in Binangonan , Rizal and we will be planning to finish my study in Boston . A person with broad knowledge will help him renovate . You can only be successful by learning new stuff and trying it too , by being an open and creative mind . I think people should travel by making decision by themselves with several reasons . For example , if the city says that 8 am ~ 9 am is the busiest time , then the worker would argue that they drive a little later . twenty years down the line , every major city would end up being a pile of metal junkyard , with no place to move around . For example , in this generation , people watch movies and listen to music more than read books and novels . In Malaysia there are a lot of cars . So they are free to do all sorts of things , even if they are considered dangerous or irresponsible , such as bungee-jumping . In my opinion , many people would like that in this busy world , but I do n't think it will happen within the next twenty years . Every one would expect to live on his own and secret dreams like to be a painter or a writer . This would have definitely required him to take out immense amount of time from his work and stands as a perfect example with whom the youngsters of today can relate to . I thought it was kind of ridiculous , but we have to do as tour guide said . An example that would make this categorization problematic is an architect . And also marketing can do some adjusting about the changes . In my essay , i want to focus on how important it is for students to learn facts . Ironically , the student 's ideas have many advantages . and you can have a chance to make yourself into a helpful person . He or she would not be able to discuss specific problems just because he does not know them . By the same token , people will learn many different intelligences by doing many things , but they just learn its appeals and do n't get any crucial information or wisdom from them . New experiences to somebody is the same as a challenge and the challenge is movement , which is the reason that some people have continued to live . our social will be a lovely social , If the dream can come true i think we must learn more knowledge . This is the government rule that they have to completely attend this seminar . Without empirical evidence , the learner tends to forget all the information he or she has learned throughout the learning process in the long term . Court costs are very high and many disputed tickets are seen . an effective response will contain a minimum of 30 you will be satisfy culture experience and fit your test . that 's why centralized attributes and business owners reducing their business is not responsible for the rise of factories . second , birds navigate by landmarks like rivers , coastlines , and mountains . Unfortunately , in most of the countries , the functioning of public transport is not perfectly organized . The public transportation in the city may not be able to cope with the huge amount of people flow . This does n't mean that because you take risks you are going to succeed . one of the most important problem is accidents for sure everyday millions of people dies jus because of the drivers not being careful as a matter affect i do believe that there will be less cars in twenty years but this will happen just for one reason that we will use something else . Can you ever visualize what chaos our society would suffer if every individual considers himself / herself an expert in every given field ? In this sense , I would introduce the concepts of two aspects with a detailed analysis , and then come to a conclusion . In my case , my younger brother needs more than academic knowledge . I learned many kinds of subjects , also I could make different types of friends . you have to teach your child until they grow up . For example , If students have to study for history , it is often enough to just learn the facts ; on the other hand , studying for physics or math , one needs to understand the concepts . Obviously the irreplaceable examination and less enemy can bring huge advances to fulfill the definition of success . Young people nowadays do n't give enough time to help their communities . And one of them was my friend who had serious problems with her health . I had a good life in my country , but everything I got from my patients . But if the student is going to only learn things without knowing the concept , then no company is going to give an opportunity to that person because he does not know the concept of its related branch , so by this way it creates a problem in the future . It results in people more mature , strong and calm in front of problems in life , because they understand that problems go away and it depends on what kind of manner everybody looks at the face of the problem . this space must change into a garden . However , people exist that think when people have forty years over an older person . It is worthy to note that not every body will succeed when taking a risk , but that is not enough to deter anybody who wishes to take one . apparently , I got a friend in Japan , his name is Tomo . With the gasoline tax rising , it would entice the vehicle company to make more cars to sell to people . Ignorance of striped bass will abbreviate our earnings , also it has some astonishing effects on our health . Although there are some rules to protect young people , such as age limits for movies and previews reviewing the bad aspects of programs before they air , the rules are only made for little kids , not young people like those in high school or universities . For the greeks , philosophers Plato and Aristotle , the capacity for understanding ideas and concepts and the intelligence as the main ability of the human soul , are the parts of ourselves that make us the beings we actually are . But it is possible to have a broad knowledge of many academic subjects without being specialized in one particular topic . This demonstrates the undeniable fact that it is beneficial to have different experiences . Traveling in a group helps us to make our trip more productive , especially with a tour guide . To be sure , we Japanese take a large part in destroying the environment because we consume the most wood . So i asked my student , how did he think about my lesson , and tried to find out where the problem it is . Second , the rounds can not be damaged because when taxes are raised there will be fewer cars . This will definitely cause some problems . In America , a lot of families have more than one car and furthermore some of them have three or four . Most of us will understand better when the ideas and the concepts of the war is shown and we can get very excited with it . First of all , He argued that America will not ignore the `` ecocertified '' as there are so many advertised now . But factually second , It needs to experience . Therefore the french revolution happened in the middle ages in Europe because of those reasons . This will help to create brotherhood . By trial and error , I succeeded , which made me feel very good about myself . And the presidents of a company like Toyota or Ford are successful because they know how to start their company and make smart things . The lecturer shows a different angle of the system . Second , Menzied points out that chinese ships in the 1400 's used very distinctive anchors that were round stones with a hole in the middle . In a group trip , we are forced to follow the group time schedules . Help others and make a comfortable home for all . I can remember that from a lecture I attended . television makers just hang academic titles on their programs . Even through everything , when there is life , there is hope . However , Bill Gates improved people 's lives and provided them the opportunity to live more comfortably than ever . The availability of jobs to the candidates having specific knowledge is less when compare to the all around performer . It is not worth it to jump in a pool without knowing how to swim because you may not be able to breathe again . Another thing is that advertisements always show and indicate prices on commodities , allowing consumers to budget well in order to be able to buy them . They come together for a 'LAN-party ' with the neighbor 's kids . we simply need to eat , buy clothes , make and raise a family . This happens more when one is watching a movie with the family . if someone does n't know , eating is very important for growth , bones and brain , and in general for the body . it is a fact that eating is just useful . Advertising can be used badly not only by corporations but also by governments , as for example , the nazi regime . Such people impressed others through their strong will and devotion to duty . however , I firmly believe that traveling with a guide is quite beneficial because of it 's possible to travel many places in a short time and the safety . i have studied for just examination . Adults are content to send their children to school to experience these different kinds of classes . The inability to do desired things makes elders unhappy . However , I want to go to the U.S.A so that I can study and live in the country of my dreams ; I want to have a family so that I never have to be alone . I do not know any American teachers , but some Japanese teachers just speak about facts during class hours . Because of this , I prefer studying concepts and ideas more than learning facts . When someone has more than one academic subject , it would be more amazing , interesting , positive , great , and helpful . the preferences of a young person and an older person might differ for them to fully enjoy their lives . It has some problems that can effect humans . It mentions how it has reached to some parts of North America . Many people think that the treasure never existed , but in reality it exists . Even if they use buses , which are big cars , the fact is that people taking the bus still reduces the number of cars . Nowadays many people study the way how advertisements increase sales and why our behavior is influenced by what we listen to , or what we see , on television . In this way , a person always feels original and `` modern , '' not `` ancient '' like the people that surround him or her . as a conclusion you are not attracted totally by the product , but by the lifestyle that this product will give to you . In twenty years , they also can give us better cars that use fewer resources , and give us much more convenient tools for traveling . due to this new product being a flop in a market . I do not agree that people with initiative will take risks more than those who do not . For example , during the traffic jam , if the transit ca n't accommodate such a large amount of people , how would the clerks ? new gerrthion prefers to use public transportation ; this is why now they think in twenty years there will be less car use . Traveling by yourself is very good for your future . Nowadays all the upcoming graduates are just muddling the subject ; mostly 70 % of subjects just learn . For me there are few very friends or classmates that would be better as a friend . Attendance does not mean that teenagers are fully participating in class . In studying the processes underlying biochemical pathways , a knowledge of biochemistry is required , which is an integration of biology and chemistry . when talking to the employed the company should not know . it contributes to air pollution and the temperature rising . For instance , the birds are not usually trying to remember the subjects that they have passed by , such as a stone , a building , or even a small house . So it means that there is no certain way that migrating birds find their way home . For example , i prefer to specialize in public relations which helps me in my personal life , and how to treat other people . First is how to release the drugs as quickly as possible in order to sell them faster and make money faster , but government requires a certain amount of testing to be done before the drug is released , so that pushes back the date of the drug release . So it depends on the different bodies ' nature . we should plant some species that are stronger and more likely to live than other plants . Because it rains more , and the plants grow well , so the Pueblo can make full use of it . Additionally , popular movies , stars , or famous people in advertisements attract people . Let us think of music as a metaphor for all the areas of knowledge , and the different instruments as metaphors for all the separate disciplines . Billions of people use it every day . Many people have many reasons , like to see things abroad or to have different experiences , but their purposes have something in common . We always joke around or do something stupid . Last but not least , zebra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . Therefore , we think to ourselves that taking care of society is the most important thing to do . The population explosion is another factor catalyzing the consumption of energy resources . people have great brain capacity to learn and gain knowledge , so it is easy to gain general knowledge about everything . As I see it , there will be a lot of research done in the future to find alternative , environmental-friendly , energies as well as cheaper energies . Because I have broad knowledge . If everyone in the city uses their own cars , the city will be seriously polluted by the smoke . It is , rather than to give them strong medicines to them . Fortunately their topic becomes more clear by using this many concepts provided by the books . Secondly , they have the confidence that the new way will be another way to improve a mechanism . also , it saves your time and makes you satisfy this journal . they are the bony and vital part to society . If older people are more accepting to changes , their lives will become better . Every house nowadays has a computer , mobile phone , etc . , and this is the thing today 's man wants to live . I will describe these two main issues : to meet the modern society 's needs and to be eligible candidates for some companies . These surveys also demonstrate how much young men , and women , are not aware of the improvements they could afford if they were able to really put themselves in an effective position within their communities . as a contradiction of this the professor said that disease study is not designed very well . Sometimes , it is very comfortable , but it 's not important for me . If they teach them , they will never forget and it is beneficial for our country . For instance , when I was in elementary school , I learned mathematics formulas without concepts . that would be a frequently asked question , so to answer this question we should be aware of the facts . It is more important for them to understand ideas and concepts than it is for them to learn facts . Rather than keep his investment within the confines of the oil business where he is the master , he went ahead with his new plan . students may not understand a fact very well until they understand the idea and concept related to the fact . For example , it will be easier for people to concentrate on a subject such as geology , having a broad knowledge of many academics , than to try to concentrate on geology after having studied literature . After an official training course , we helped the patients bathe , talked with the elder people who lived alone , and helped the organization hold activities during special occasions like mother 's day . You can buy a vanilla cake in a fine store and another vanilla cake at a regular store . some guide is not sure about the information . Developing communities want to build more modern buildings . I strongly believe that in twenty years there will be fewer cars in use than there are today because of the damage decrements and technology replacement . It is possible that with the energy problem , people 's life style will be changed . For example , When I was in school my Geography book presents `` Pluto '' as the last planet but recent studies posted that `` Pluto '' is not a planet at all because of different characteristics . For example , in Korea , teachers teach something and students learn what teachers are saying without discussing with students while in class . First , we can protect our environment by saving oil and gas . And I completely disagree with what the author wanted to say . I advise all people to always keep smiling and have fun in this wonderful life god gave us . Anther reason to join a big company is job security . Indeed , on the one hand , there are obviously signs that cars are doomed to be less and less bought by people . Although we do n't have good grades , we have talent in other things . To maintain the more valuable products , they have to sometimes use strategies to keep the clientele 's enthusiasm high . For example banks have many very specialized departments . At this time , my opinion is that young people enjoy life more than older people do . They do n't have to read specific books and articles just because they love the topic . It is not bad if you know it , it means that your intelligence is high but a doctor has to be absolutely good at saying and helping ill people . If , however the students will only put concepts and his/hers or someone else 's ideas or concepts , which can be mistakes will make the professor think if the student actually did what was asked from the assignment . We can just hope that those cars will have a new motor generation which will pollute less . When I watch TV , listen to the radio . After he graduated from his university , thanks to his software skills , he can get a job easily and become the best in his field . but the professor refutes the idea by illustrating some tested results from research conducted by an oil that is not taken around the world . In my opinion , i agree with the statement that most advertisements make products seem much better than they really are . there are two crucial facts : no particles from asteroid explosion , area of the asteroid and meteorite of explosion . First of all , you will know a lot of things about this subject because you do not have anything else to do . However , people who have not joined the event , seem like , are the winner because they forgot the event was early . Second , critics argue that many cases of placebo induced improvement that took place only at a psychological level . Second , he says the strong property rights developed from the factory system and not vice versa . Also , it is more comfortable to move . Coming to atmosphere and nature are both the same . I think that talking with a person who has a different mother tongue compared to me is the best way to learn a new culture and language , however there is any chance to meet them . This fast pace economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and improved lifestyles for individuals . I want broad knowledge of many academics . The important thing about this case is , each country has to use an official solution for their learning problems . for example , a researcher that wants to be successful must take risks . The leg of all modern endotherms are underneath its body . Second , the high cost of drug testing finally lead to the cost of the unit drug cost being higher than producing it . However , the lecturer says that the vague location was described because the ancient people wanted to keep the location of the treasure a secret . But , on the contrary , he argues that fluoride also has some disadvantages . For example , I like to go to a big city like New York . Everybody knows sports can improve our body , But we need try by ourselves then we will know , yes , sports really can help us get a healthy body . Thus , we can easily remember this formula without spending extra energy and time. it is still usefull useful me . Because we need food . He will be mature enough to make wise decisions in expanding his business and trying out new things . The person takes the bike , goes where he wishes and leaves the car at the closest bus station . I am going to another country . The youth today are aware of their responsibilities as a citizen . But I disagree with this opinion because often the advertisement does n't speak about only the functionality of the product , but it promises other characteristics that do n't depend on it . it gives him many opportunities in life and i think that being a knowledgeable person is a very wonderful thing to have so we can spend our lives in a successful way and full of happiness . In other words , the image in the TV commercial is the most important point that the watcher helps to determine whether he/she will buy it or not . So I think we could not live if older people did not develop science and technologies . Imagine that you work in a factory and do just one thing , like put tires on cars ; if they fire you , they will destroy you because you do n't know how to do anything but put tires on cars . It is true that consumers prefer to buy a product that has a lower price , but when international companies that already have the certification begin to send it to market , people will prefer to buy theirs because the difference between prices is probably not going to affect them too much . And young people spend more time on their lifestyle . Students can focus on only a few subjects they are interested in and they will become experts in those areas . He thinks differently than other people and he succeeded . Because all that broad knowledge helps them to understand their majors in university and also helps them to make the correct choice in specialized study . Then when we went to the Science Olympiad , she had diverse knowledge about the subjects as it was not unusual for her to think about new things . If every person seeks to learn and understand many scientific subjects , and anyone can or ca n't do it , then the result will be that science wo n't improve . soon they will run out , based on the current rate of utilization . Second , the place that is being filmed must be very clear and the chin must be relaxed , etc . and will put your mind on a non-stop learning ... today , computer skills are the most important life skill . I have never stopped to think about this , but this is a real possibility for the future . If we consider an idea as a totally autonomous concept within the individual process of defining reality , I believe that ideas are useless , because they are not based on experience . If there are specialized doctors , it means that the doctor has done the operation many times before and is very talented at his job . So It will be a good situation . the school teachers they 're the ones who take the future young generations so we have to support them to make younger ones more knowledgeable . but most of the time it is important because most student do not do badly and their thoughts and ideas are very important . some tour guides will want to ensure maximum security , which will make the tour difficult because you will only have a wonderful view through a bus window . Because if one time you are successful , then the next time -- well , why not ? this shall affect the exams . But on the other hand , there are also people that are often convinced by the interesting advertisements they see everywhere , and because of this they often face problems with the products they buy and many times there is no way to return that product . Ever increasing competency rates force them into frequent business model changes for compatible transitional flexibility . The placebo effect is not an illusion but real , so the drug was affected by the placebo effect . Many Scientists obtained clear results from the investigations after the facts were on the table but before they even began to theorize about them . They want people to understand that the product is the best and you can really trust it . Video is convenient , but for teachers concerned about their students , the use of textbooks provides students with good abilities . In my opinion , it is dependent on a particular person . for example , when we talk about speed , they must understand why it is dangerous ; it is better than learning after they have an accident . Therefore , people will be able to live with the automobile society and the nature for the future . Marco Polo spoke the Persian language , not Chinese or Mongolian . finally , the third reason is that that birds use a type of internal compass ; birds have crystals of the mineral magnetite embedded in their beaks . This argument is not only true now , it has been for ages ; i want to talk about a live example , Sir . Learn ! Therefore , we have to reduce sulfur and nitrogen dioxide . Maybe in the beginning , but after some time other animals in the environment will choose them as their new food . Furthermore , the professor denies reading the passage stating that treasure does not exist and is just fiction . knowledge also plays an important role in life , and can be acquired by understanding concepts rather than just learning things . And the critic made a few arguments . Besides , young people usually like latest fashion things , like ipod or mp 3 , I can see that a large part of young people ca n't live happily without music in their ears and movies at home . Producing vehicles that are more fuel efficient will cause costly damage to roads . some say this product is recommended for the most important doctors , or something like that . This creates peer pressure . For example , last month i bought a product for my skin and , actually , i bought the product because the advertising for it got my attention . Newer vehicles may someday fly in the sky , and then we wo n't be annoyed by traffic jams . It is very obvious that more cars will be sold there . Also , the food chain becomes more stronger than it was before , such as rabbits and hares . For the elderly , the only function of the phone , in some respects , is to do a job , a project , an implement on which a master can call him to do a job . According to me , in order to start a career with success it`s important to have a solid base , that means knowledge and experience . Yes , that 's right , but there are some young people who are idealistic about this country , about their communities in Indonesia , about their friends who ca n't eat and who ca n't go to school . Technology has grown so fast , because everyone tries to work on an invention due to some idea they have developed and concepts that have been applied to this idea from different subject areas . Governments use that money for public use and safety . I started to have an interest in math and spent lot of time solving math problems , and when I got a good score on the exam , I became more passionate about math . he has a lot of money and fame but no family life . Broad knowledge on may subjects is not possible to acquire . To my surprise , nothing happened . It usually makes them more positive about doing it . both advertisements state that these toothpastes will make your teeth brilliant and brighter . The advertisement says that the car has space for 1 0 people when the truth is that the car just has space for 4 people . another example is an advertisement of skin soap that says the soap is the best because your skin will be as soft as the skin of a fifteen-year-old princess or Jennifer Lopez . He will consider himself losing the years he spent collecting money . There are many people that do n't think before make a choice . Third , although the reading passage claims dinosaurs , because their bone structure is similar to endotherms , but scientists assume that it is not the case . The Actual market requires a more specific knowledge than broad knowledge . Only by breaking out of your normal life can you discover new perspectives in your job and your private life . Fish farming uses lots of special products such as fish meal . Extending the example stated above , i can tell you that during the worst period of Amitabh Bacchan 's life , he was offered a chance to enter politics to take advantage of his publicity , and even though he was to be paid a great deal and was very much in need of financial support , Mr. Bacchan rejected this offer because he knew that was how politicians played with the emotions of common people . History has shown that realistic people can be more successful . to understand how war develops , you should understand the ideas and cultural movements of a particular period that helped to bring about the war . But , even if this student passes the course , he or she will not be a succesful contracts lawyer in the future . The second one is to specialize in a specific subject that one has an interest in studying , so let us talk about this subject . After this effort , many companies across the world started taking steps to get ecocertified . After the construction in 1 9 0 8 of the first commercial car , the ford Model T , mankind has been shackled to the use of the car . Younger people are still trying to gain experience that older people have already . Toy advertisements that target children are a good example of the way commercials can create a false image of the product . They need cars for many things , such as transportation , entertainment , and business . Because of the requirement that men must serve in the army , many will have to sacrifice their precious time of youth . If scientists do something different , like modifying forms of carbohydrates such as gelatinized and non-gelatinized carbohydrates , and incorporate this into fish feed , then fish may be utilized more than they were previously , thereby increasing chances of growth ; this will be appreciated by everyone . While it turned out that results from both experiences are the same , the method and the time that brings about the result are not the same . you do not need to be a hero in order to try new things , you just need to want it and know that any results will be a success in getting you things that you want or helping you to learn . In such a situation , there is no other way . SOME lucky POINTS , infall . in writing , it is difficult to show how someone is feeling , but the action on TV helps us to understand better than in a book . It is no secret that today 's market is a competition market and we are facing this competition in every field ; for example , if you choose a career in the software field and master that subject , then you can easily get a job . Because you share only a single interest , this makes you a loner . Indeed , they can be refused . if they need money for this purpose , they can do extra hard work . But by then , we have already bought the product and end up losing money . if they do something well , they keep trying until they know how something works and they think of what it might be useful for . Therefore , he likes to do risky and strange things , and he enjoys it . I believe specializing in one specific subject outweighs having broad knowledge of many academic subjects . In my opinion , if someone thinks one is more important than the other , why not focus on one ? And people may feel more awkward when they hear that this is something that is still presently going on . When the forest catches fire , the wood burns down into ashes that contain potassium . in matter of fact , a lot of academic subjects can not be used separately . Access to a car is very important in every day life in the United States , as well as in many Latin American countries and third-world countries . Another solution could be the development of more fuel efficient cars , which might also be good for America 's car manufacturers , who would start to produce more attractive cars to sell to other countries . Therefore , the problem of running out of fuel is out of the question , thereby augmenting my argument that the number of cars will continue to rise and not decline . The First effect is global warming . So Ho Chi Minh city will develop . People like to drive different types of models and they want something extra in them . That 's why it wo n't be hard : i am alone . Successful People will explain any other matter and discuss any problem . But it is dangerous because some drivers make trouble with other drivers and then when some driver crashes their car , the streets become busy . nobody can create a problem with this type of literature because it is already fixed data . Also , the professor indicated we should be careful when using prescribed fire as a solution . To put it simply , they said they lost their appeal . Critics of this policy focus on three points ; first , Yellowstone fires scorched a large area of land , resulting in the loss of a lot of plant species . In my experience , there are some lectures which are completely based on facts , and the chance for me to apply them is rare . When you understand that ideas are one way that you can figure out about a statement , you appreciate these moments . First , I think that communities equal human relationship . Like other people , I have seen many instances on TV where rich people are interested in politics , sports , new technologies , and space . Because of studying in this way , of course , I will gain so much , and will gain a lot of knowledge from the book I study from . When you understand the concepts and ideas , it is up to you to prove them and to see if they are really what you have been told , and i think this is the main reason that students prefer facts rather than understanding ideas and concepts . for example , if you are attempting to study arts and sciences and attain qualifications in both , you are an extraordinary student . So in this field , it is very important to understand all concepts and ideas given to us and use them to solve problems . It is also about taking risks rather than only doing . Usually in advertisements a presentable face is used : models , babies , popular athletes , to try to make the product look appealing . As we are all aware , when we we 're out something unexpected could happen : like catching a disease , having an accident , or something else that is n't planned . Third , the professor agrees that gas prices in the United States are cheap , and they should raise them to protect the enviroment and the health of people . People feel more secure and comfortable traveling in their own cars rather than taking several different forms of public transportation and reaching their destination late . I think it 's harder for a successful person to risk something -- they could lose much more than others . So the importance of communities in society decreased . At some point in time , they will have to face failures and a lot of struggles . Because it transmits the habitats from Eastern Europe to different parts of the world . another reason is that many people see some exotic cars as luxury cars and this encourages the industries . It is also undeniable that if a man has diversified knowledge , it would be immediately useful . rolling stones gather no moss , says the proverb . The Second difference between an encyclopedia and the Internet is that there a lot of viruses and hackers on the web , and one of them can easily change the information about any kind of topic . If i want to win a case in court in , for example , a case where technical questions are to be considered , it is not enough to know just about the law . successful people try to do new things , like inventing a machine that can help people . they just create such a good impression that people run out to buy them . And if there is knowledge in all areas , then it provides an added advantage to your knowledge level . That is because If I became a member , I would be highly esteemed among my friends . in my opinion , if you want be a successful person , you should be brave enough to try new things and take risks . Who do we match together ? They explain the specific points using the examples about dinosaurs ' behavior and physical faces . the lecture mentions Mongol court records of the time . We do n't usually study these subjects very deeply . It would be a really wasteful idea . he usually bring a books and asks someone questions ; he wants to understand the book . I do not want to go to the Eiffel Tower in Paris or The Statue of Liberty in New York when I travel , because they are too famous , so I already heard and saw about them . In this case , the advertisement totally made an impact on that baby . Lastly , business owners thought factories would help reduce their overall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderful places . Really successful people gain their fortune by doing something new , something that no one else has ever done before ; their risk is doing something that nobody else knows how to do well . For example , when I was a freshman at Meiji University in Japan , my classmates and I traveled to China . Second , many of the disadvantages of cars will decrease or even cease in the coming years , which will make them even more popular than at the current time . Today , drinking soda has become an addiction for many people . If you want to actually know someone , you should spend the whole day with that person , but if you do not , you should not even speak to that person . I think cars will not be completely replaced by new automobile innovations , but they will certainly be fewer in numbers . successful therapists need to know that one treatment can help one person but for another , it could be not appropriate . we are also able to deal with any problems found with it . if he did one machine like that , he could do another one differently , but he does n't think he can because he does n't know his own abilities . sharing the cost of a vacation trip is a very good advantage for traveling . For example , you would work as a broadcaster , but in the office and city where you are now working . 1 7-5 0 people survey to require all class and selective class . In olden times , families tended to live in the same place for many years . I think that young people are not able to think deeply about the things like older people . My friends celebrated with a party . For instance , when I was a university student , I researched and reported on community history relating to groups . Thus , most of the habitants in the rural areas are the older ones . This is very positive for the company and he will probably get a better position . On one hand , you have general practitioners who look at all the basic problems related to the body , while on the other hand , you have specialists who only take care of specific areas , such as an orthopedic surgeon ( related to bones ) , a cardiologist ( related to heart ) or an ENT ( ear , nose , throat ) surgeon . The definition of young or older is not apparent . The reason these problems occur is because of the exam . If he was satisfied with his situation and did not make an effort to outdo himself , not only would he not be remembered as a great artist , but we also would never have been exposed to a lot of great music . He may feel afraid or terrible when the same thing happens to him . When older people think like that , it creates big problems with young people . Some people said that the placebo was really the drug , and about 3 0 percent of patients agreed with this idea . After that , they have to find a well-paid job . But about myself , I am going to it to too because brother alwys always about it and i agree with that him And it does n't matter if the person who takes the risks has liked the results of all the things he or she has in mind ; the important thing is that they made all those things and they can prove they can do a lot of things in their lives , while always thinking of good results for themselves and for the world . The cost of the underground is very cheap in some countries , such as France . For example , it happened to me when I studied the concept of inflation . So let 's not lose hope , and let the scientists do their job , but i think being in a traffic jam is a stressful situation that requires time and patience , and there are many other disadvantages related to the large number of cars . This is evidence that the company that made some products had to pay lots of money to the broadcasting bureaus . In the 2 1st century , young people can learn a lot of academic subjects . Movies and other television shows provide a lot of information about how real life is . There are many ways to do this , and another example is a bottle of juice that tastes bad ; the bottle can have a wonderful shape or be made colorful . Many memories with enough time to remember will increase the possibility of enjoyment . While the communities in general have reckoned that they need support from young people , they must have made their appeal in a reasonable way . if it does , you will get a mistaken idea about that article but not the intended idea . Secondly , chimp can also present the capability for grammar , which means it can demonstrate the ability to combine words and be able to use grammatical constructions . I think to learn facts is only effective if the students can work hard and they are able to keep every detailed information as taught , but it 's definitely not a measure of their intelligence . So , if i have a lot of information about this subject , i will talk with too much knowledge but if i have only general information for this subject , i will talk with only my limited knowledge and in this case may be ashamed like when my brother asked me about something but i did not have a lot of information on the subject . Because if i see that someone did something that may save me time and energy and it works i will also do it . No other transportation concept has been as successful as the car , not only because of the good street and highway systems throughout the United States and Europe , but also because of the fact that people love their cars . That 's why he is a legend these days and people respect him . On the other hand , when I was a freshman at my college , I could concentrate on my favorite subjects . When you 're taking a trip with a tour guide , everything is already settled from the time you arrive until the time you depart . People tend to choose other types of media and that is why literature is in danger . I am pleased to know intelligent people and learn about things that I do n't know . With her salary we ca n't buy some cars because we are planning to finish our house in Binangonan , Rizal and I am planning to finish my study in Boston . A person with broad knowledge will help him renovate . You can only be successful by learning and trying new things , and by having an open and creative mind . I think people should travel by making decisions by themselves for several reasons . Or Else twenty years down the line every major city would end up being a pile of metal junkyard , with no place to move around . For example , in this generation people watch movies and listen to music more than they read books or novels . In Malaysia , there are a lot of cars . So they are free to do all sorts of things , even if they are considered dangerous or irresponsible , such as bungee-jumping . I think most people will like that in a busy world , but I do n't think it will happen in the next twenty years . Everyone would expect to leave his own secrets dreams like to be a painter , a writer . This would have definitely required him to take an immense amount of time off from his work and he stands as a perfect example with whom the youngsters of today relate . I thought it was kind of ridiculous , but we have to do as the tour guide said . An example that would make this categorization problematic is an architect . And also the marketing can do some adjustment about the change . In my essay i want to focus on how important it is for students to learn facts . the students and the ideas have many advantages : and you can have a chance to get a person to help you . He or she would not be able to discuss specific problems just because he does not know them . By the same token , people will learn many different intelligence by doing so many things but they just learn its appeals and not get any crucial information and wisdom from it . New experiences for someone is the same challenge and that challenge is movement , and the reason that some people continue living . our society will be a lovely society ; If the dream can come true , i think we must gain more knowledge . This is the government rule that they have attained this seminar . Without the empirical experience , i think , the learner tends to forget all the information he or she has learned throughout his or her learning process in the long term . Court cases are very high and many number of disputed tickets are seen . that 's why centralized , attributes , and business owners reduce their business , which is not responsible for the rise of factories . second , birds navigate by landmarks like river , coastlines , and mountains . Unfortunately in most of the countries the functioning of public transportation is not perfectly organized . The public transportation in the city may not be able to cope with this huge amount of people . This does n't mean that because you take risks you are going to succeed . one of the most important problems is accidents for sure because every day millions of people die because of drivers not being careful , as a matter of fact i believe that there will be less cars in twenty years , but this will happen just for one reason that we will use something else . Can you visualize the chaos our society would suffer if every individual considered himself or herself an expert in every given field ? In this sense , I would introduce the concepts of two aspects with a detailed analysis , and then it will come to the conclusion . In my case , my younger brother needed more than academic knowledge . I learned many kinds of subjects and also could make different types friends . you have to teach your child since he or she was anxious to grow up . If students have to study for history for example it is often enough to just learn the facts but on the other hand studying for physics or math needs the understanding of the concepts . For example , the subway in New York , bullet trains in Japan , underground tube trains in Singapore and the sky trains in Bangkok travel at lightning speed . Obviously the irreplaceable examination and less enemies can bring huge advances to fulfill the definition of success . And one of them was my friend who had serious problems with her health . I had a good life in my country , but I got everything from my parents . But if the student is going to be only learning things without knowing the concept , then no company is give an opportunity to that person because he does not know the concept of its related branch , so it creates a problem in the future . It results in people who are more mature , strong and calm in facing problems in life , because they understand that problems go away and it depends on what manner one looks at the face of the problem . this space must change into a garden . It is worth noting that not everyone will succeed when taking a risk , but that is not enough to deter anyone who wishes to take one . apparently , I have a Japanese friend from Japan , his name is Tomo . when they do some work they think they have to find work in time . As the gasoline tax is rising , it will help the vehicle company make more cars to sell to people . Ignorance of striped bass will abbreviate our learning ; also , it has some astonishing effects on our health . Although there are some rules to protect young people such as an age limit at the movies and previews about the bad aspect of programs before , it is just made for little kids not young people like high school or university students . We can be a fatalist and say that with the developing of the third world , the problem will get worse . For the Greek philosophers Plato and Aristotle , the capacity for understanding ideas and concepts as well as intelligence being the main ability of the human soul , are the parts of ourselves that make us the beings we actually are . it is possible to have a broad knowledge of many academic subjects without being specialized in one particular topic . This demonstrates the undeniable fact that it is beneficial to have different experiences . government is raising the tax on gasoline . He was successful already in his fields of living electric equipment , but , he began to dominate new electronics technology and was successful . So both the lecturer and the readings state that other archaeological monuments in the area are from the Kingdom period . To be sure , we Japanese take part in destroying the environment because we consume the most wood . So i asked my student what he thought about my lesson , and tried to find out where the problem is . Second , the roads wo n't be damaged because raising the tax there will mean less cars . This will definitely cause some problems . Most of us will understand better when the ideas and the concepts of the war is shown and we can get very excited about it . I could not give much time to any sports , so that i could be a great sportsman . First of all , He argued that Americans will not ignore the `` ecocertified '' as there are so many advertisements now . But factually Secondly , It need to experience . The french revolution happened in the middle ages in Europe because of that reason . This will help to create a brotherhood relationship . And the presidents of companies like Toyota and Ford ; they are successful because they know how to run their company and make a smart product . but the lecturer shows different angles of the system . Second , Menzied points out that chinese ships in the 1400s used very distinctive anchors that were round stones with a hole in the middle . In a group trip , we are forced to follow the group time schedules . Help others and make sure we all live in a comfortable home . I can remember that from a lecture I attended . Even through everything , there is hope where there is life . However , Bill Gates developed people 's lives more comfortably than previous circumstances allowed . It is better to have a very good understanding and knowledge of many academic subjects because it makes you well-rounded and gives you chances and opportunities to work in different fields and environments . It is said that the zebra mussel moved from the bottom of the ship to the freshwater and devastated the environment . This implies that there can be instances where no such overstating takes place at all . And availability of jobs to the candidates having specific knowledge is less when compared to the all round performer . adverts always show prices on commodities , allowing consumers to budget in order to buy them . They come together for a 'LAN-party ' with the neighbor 's kids . This happens more when one is watching a movie with family . if someone does n't know eating is very important for growth of bones , brain , or general for body , it is a fact that eating is just useful . Advertising can be used for bad , not only by corporations but also by governments , for example , the nazi regime . Such people impressed others with their strong will and devotion to duty . For example , if the old person does not hear properly , then young ones right from the day of their childhood think of inventing something that can help the older people hear more properly . however , I firmly believe that traveling with a guide is quite beneficial because of the possibility to travel to many places in a short amount of time and the safety factor . i have studied for just the examination . Adults are content to send their children to school to be in contact with these different kinds of classes . However , I want to go to the U.S.A so that I can study and live in my dream country , I want to have a family so that I am never lonely . I do not know about American teachers , but some Japanese teachers speak only about facts during class . Because of this , I prefer studying concepts and ideas more than learning facts . When someone has more than one academic subject , it would be more amazing , interesting , positive , great , and helpful . Everything has changed now and life has become more difficult . He knows how to draw a line between the difference of gambling and risk-taking . though the preferences might be different for a young person and for an older person to fully enjoy their life . It has some problems that can affect humans . It mentions that now , it has reached to some parts of North America . And I expect , if we lose quantities of cars , we will protect our life , our environment , and we will not depend on the resource of gas . Many people think that treasure never existed , but in reality it exists . Even if they use buses , which are big cars , the fact is people taking buses still reduce the number of cars . Nowadays , so many people study the way that makes advertisements increase sales ; that is why our behavior is influenced by what we listen or what we see on the television . In this way a person always feels to original and `` modern '' , not `` ancient '' like people that surround him or her . as a conclusion , you are not attracted totally by the product but by the lifestyle that this product will give to you . due to this new product , it is a flop in a market . I do not agree that imitative people will take more risks than those who do not . during the traffic jam the transit clerks could n't accommodate such a large amount of people . and the new generation prefer using this transport , this is why they think in that twenty years there will be fewer car use . Traveling by yourself is very good for your future . But if I was trying to do all the sightseeing without a tour guide , that would be very difficult and dangerous . For me , there are few very friends or classmates that would better as a friend . Attendance does not mean that teenagers are fully participating in class . In studying the processes underlying biochemical pathways , knowledge of biochemistry is required , which is an integration of biology and chemistry . when talking to employment , the company should not know . For instance , the birds do not usually try to remember the subjects which they have passed by , such as a stone , a building , or even a small house . So , it means that there is no certain way about how migrating birds find their way home . Who can say no to a business that can make your life safer ? For example , i prefer to specialize in public relations , which teaches me in my personal life how to treat other people . First is how to release the drugs as fast as possible in order to sell it faster and to make more money faster , but government requires a certain amount of the testing to be done before the drug is released , so it reduces the date of the drug release . So it depends on the different body nature . Because it rains more and the plants grow well , the Pueblo people can make full use of it . Additionally , popular movie stars or famous people in advertisements attract people . Let us think of music as a metaphor for all the areas of knowledge and the different instruments as metaphors for all the separate disciplines . Billions of people use it every day . Different people have many reasons , like to visit abroad and have different experiences , but their purposes have something in common . We are always joking around or doing something stupid . Last but no least , zebra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . They understand ideas , and the concepts help students learn about many subjects and accept good education from information they have . Therefore , we think ourselves that mental care of society is principal to it . but after awhile they found out it 's not true . Although , people have great brain capacity to gain and learn knowledge , so it is easy to gain general knowledge about everything . As I see it , there will be a lot of research done in the future to find such alternative energies , which will also be environmental-friendly , as well as cheaper . the experience of painting gives me many new abilities in filmmaking . It is because I have broad knowledge . If everyone in the city uses their own cars , the city will be seriously polluted by the smoke . It is this , rather than to give them strong medicines inside them . Fortunately , their topic becomes more clear by using a lot of the concepts provided by the books . Secondly , they have the confidence that the new ways will improve a mechanism . they are the most bony and vital part to the society . If older people are more accepting of changes , their lives will become better . My personal perception is that such a behavior is damaging to a young person 's personality , since it promotes uniformity and conformity rather than creativity and innovation . Every house nowadays has a computer , mobile phone , etc . , these are the things today 's man want to live with . I will describe those two main issues : to meet the modern society 's needs and to be eligible candidates for some companies . These surveys also demonstrate how much young men and women are not aware of the improvements they could afford if they were able to really put themselves in an effective relationship with their communities . Sometimes , it is very comfortable but it 's not important to me . If they teach them , they will never forget and it is beneficial for our country . For instance , when I was elementary school , I learned mathematics formulas without concept . that would be a frequently asked question , so to answer this question we should be aware of the facts . It is very important for them to understand ideas and concepts than it is for them to learn facts . Rather than keep his investment within the confines of the oil business , where he is the master , he went ahead with his new plan . students may not understand facts very well until they understand the idea and concept that is related to the fact . This always challenges the consumers to buy a particular commodity in order to satisfy their needs and wants in modern days . For example , it will be easier for people to concentrate on a subject such as geology , having a broad knowledge of many academics , than to try to concentrate on geology after having studied literature . After an official training course , we helped the patients to bathe , talked with the elderly people who lived alone , and helped the organization to hold activities during special occasions like the mother 's day . You can buy a vanilla cake in a fine store and another vanilla cake in the regular store . some guides are not sure about the information . Developing communities want to build more modern buildings . It is possible that as the energy problem change , the people 's life style will be changed . For example , When I was in school my Geography book presented `` Pluto '' as the last planet , but recent studies stated that `` Pluto '' is not a planet at all because of some different characteristics . For example , in Korea , teachers teach something and students learn while listening to the teachers without discussing the lesson in class . First , we can protect our environment by saving oil and gas And I completely disagree with what the author wants to say . Think about it , If you are 50-60 years old you always think about your health . I advise all people to always keep a smile and have fun in this wonderful life god gave us . Anther reason to join a big company is job security . To maintain the products value they have to sometimes use strategies to keep the clientele with same enthusiasm . For example , banks have many very specialized departments . At this time , it is my opinion that young people enjoy life more than older people do . They do n't have to read specific books and articles just because they love the topic . It is not bad if you know it , it means that your intelligence is high but a doctor has to be absolutely good at saving and helping ill people . If , however , the student will put only concepts and his/hers or someone else 's ideas or concepts , which can be mistakes , will make the professor think if the student actually did what was asked from the assignment . We can just hope that those cars will have a new motor generation which will pollute less . When I was watching TV and listening to the radio . After he graduated the university , thanks to his skill of software , he can got a job easily and he became the best in his field . but the professor refutes the idea by illustrating some tested results from research conducted by a oil not taken from around the world . The old teaching system is a fair system because it treats teachers on education , teaching skills , and finally one of the most important things is teaching experience . In my opinion , i agree with the statement `` most advertisements make products seem much better than they really are . '' there are three crucial facts : no particles are from asteroid explosions , the area of the asteroid , and meteorites from explosion . First of all , you will know a lot of things about this subject because you do not have anything else to do . Second , he says the strong property rights developed from factory systems and not vice versa . Also , it is more comfortable to move . Coming to the atmosphere and nature are the same . This fast paced economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and improved lifestyles for individuals . I want broad knowledge of many academic subjects . The important thing about this case is each country has to use official solutions for their learning problems . for example , a researcher that wants to be successful must take risks . The leg of all modern thermodynamics are underneath it 's body . Second , the high cost of drug testing finally lead the cost of the unit to be higher than the cost of producing it . However , the lecturer says that the vague location was described because the ancient people wanted to keep the location of the treasure secret . But , on the contrary , he argues that fluoride also has some disadvantages . For example , I 'd like to go to a big city like New York . Everybody knows that sports can improve our body , But we need try by ourself then we will know , yes , sports really can help us get a healthy body . Thus , we can easily remember this formula without having spent extra energy and time. and it is still usefull useful me . Because we need food . He will be mature enough to make wise decisions in expanding his business and trying out new things . The person takes the bike , goes where he wishes , and leaves the car at his closest bus station . And I 'm going to another country . The youth today are aware of their responsibilities as a citizen . But I disagree with this opinion because often the advertisements do n't speak about the only functions of the product , but it promises other characteristics that they do n't deliver on . it gives him many opportunities in life , and i think that being a knowledgeable person is a very wonderful thing to have so we can spend our lives in a successful way and full of happiness . In other words , the image in the TV commercial is the most important point that the viewer can determine whether he/she if it is or not . So I think we can not live if old people could not find science and technologies and they did not develop . It is true that consumers prefer to buy a product that has a lower price , but when international companies that already have the certification begin to send it to market , people will prefer to consume theirs because the difference between prices is probably not going to affect them too much . Many studies over the last 5 0 years have shown that people who have fluoride in their drinking water are considerably less likely to have cavities than people who have non-fluoridated water . And young people spend more time on their lifestyle . Students can focus on only a few subjects they are interested in and they will become an expert in those areas . He thinks differently from other people and he has succeeded . Then , when we went to the Science Olympiad , she could have diverse knowledge about the subjects and it was not new for her to think about new things . If every person tries to learn and understand lots of scientific subjects , the result will be improvements in every science . Very soon they will run out at the current rate of utilization . This will help you put your mind on non-stop learning . In today 's world , computer skills is the most important life skill . I never have stopped myself to think this , but this is a real possibility for the future . He/she wants to know everything about the universe , everything about God , death etc. these ; some same that everyone a lot of ideas but the facts are not found yet . If they are specialized doctors , the doctor has done the operation very often before , so he is really talented in his job . So It will be a good situation . There are several opposing points I observed between the lecture and passage . this shall affect exams . But on the other hand , there are also people oft convinced by the interesting advertisements they see everywhere , because of this , they frequently have to face problems with the product they bought , and many times there is no way to give back that product . Ever-increasing competency rates force them into frequent business model changes for a compatible , transitional flexibility . However , this reading passage casts doubts on the speaker 's mention . Many Scientists obtained clear results of investigations after the facts were on the table , and before they could even begin to theorize about them . They want to make people understand that the product is the best , and you really can trust it . Video is convenient , but if teachers care about students , using textbooks works better for students . In my opinion , it is dependent upon the particular person . for example , when we talk about speed , it is better if they understand it is dangerous instead of learning from an accident . Therefore , people will be able to live with the automobile society and nature in the future . Marco Polo used the Persian language , not Chinese or Mongolian . finally , the third cause is that birds use a type of internal compass , so birds have crystals of the mineral magnetite embedded in their break . Furthermore , a tour guide will provide safety and security for the traveller , since they already know the do 's and don'ts of the tour . This argument is not only true now , it has been since ages , i want to talk of a live example of Sir . Learn ! There are very successful politicians that have never tried something new . Therefore , we have to reduce sulfur and nitrogen dioxide . Maybe at the beginning , but after time other animals in the environment will choose them as their new food . Furthermore , the professor denies the reading passage which states that treasure does not exist and that it is just fiction . knowledge also plays an important role in life as well , which can be acquired by understanding the concepts rather than learning the things . And the critical use few arguments . Besides , young people usually like new-fashioned things , like i-Pods or mp 3s , I can see that most young people ca n't live happily without music in their ears and movies at home . Producing vehicles that are more fuel efficient will damage roads and that will cost a lot to repair . some said this product is recommended by the most important doctor , or something like that . This creates peer pressure for people . For example , last month i bought a product for skin , and i actually bought the product because the advertising got my attention . Newer vehicles would be something if they could fly the sky , then we need n't be annoyed about traffic jams . the child spends about five hours or less with his parents , and whenever that child wants to go out he will probably go out with his friends , who are his classmates , so most of his school life will be spent with his classmates , and this will have a great effect on his personality , which in turn will determine the way the child will act at school and spend his life . It is very obvious that more cars will be sold there . Also , the food chain becomes stronger than it was before ; examples include rabbits and hares . For the older phone , the only function , in some means , is a job or a project , so it 's important which master calls on him with the related jobs . In my opinion , in order to achieve success with the carrier it 's important to have a solid base of knowledge and experience . Yes , that 's right but , there are some young people who people think about the idealism of their country , about their communities in Indonesia , about their friends who ca n't eat and who ca n't go to school . Technology has grown so fast because everyone has been trying to come up with an invention based on ideas they have developed and concepts that have been applied to these ideas from different subject areas . Facts are learned from experiences . bass is not the only predator of menhaden , so if people catch more bass , the population of other fish will also increase . In fact , we will need a lot of places where we can park all these cars , and we will need to do a lot of projects to deal with this increase in cars . The Government uses that money for public use and safety . I started to have an interest in math ; I spent a lot of time trying to solve math problems and when I got a good score on an exam , it made me have even more passion about math . he has a lot of money and fame but no family life . It is not possible to acquire broad knowledge on many subjects . The lecturer , against the author 's insistence , followed reasons . To my surprise nothing happened . It usually makes them be more positive about doing it . both advertisements said that these tooth pastes will make your teeth brilliant and brighter . The advertisement says that the car has space for 1 0 people when the truth is that the car has space for only 4 people ; another example is an advertisement for a skin soap , they said that this soap is the best because they say your skin will be as soft as a fifteen year old princess ' , or that your skin will be as soft as Jennifer Lopez 's . He will consider himself losing the years that he spent on collecting the money . First of all , old houses are not necessarily suited to the needs of modern residents . Actual market requires more specific knowledge than broad knowledge . Only by breaking out of your normal life can you discover new perspectives in your job and your private life . Fish farming uses a lot of special products , such as fish meal . Extending the same example stated above , i can tell you that , during the worst period , Amitabh Bacchan was offered the opportunity to enter politics to take advantage of the publicity that he had gotten and paid heavily for . Although he was very much in need of financial support , Mr. Bacchan rejected this offer only because he knew how politicians played with the emotions of common people . Realistic people can be more successful , as we can see from history . Alternatively , the Reading passage emphasizes an alternative to prescriptive burning by defining the term " disking " the fire as clearing out dry and dead shrubs to stimulate the growth of new plant life . The second one is to specialize in one specific subject ; one has his own test in studying , so let us talk about this subject . After this effort , many companies in the world started to take action to get this eco-certification . After the construction in 1 9 0 8 of the first commercial car , the ford T , mankind became accustomed to the use of the car . Younger people are still trying to obtain experience , although the old have it already . Take toys , for example ; advertisements that target children in particular are the best example of the way advertisements create a false image of the product . They need cars for many things , such as transportation , entertainment and business . Due to the requirement that men join the army , they have to sacrifice their precious youth . While the final results from both experiences are the same , the method and time to achieve the results is not the same . Because you do not need to be a hero in order to try new things , you just need to want them and know that any result will be a success in things that you want to learn . In such a situation , there is no other way . Even the magnitudes on Mars provide no evidence of life on Mars . we are almost unable to show the feelings of people in writing , but in action on TV we can understand feelings better than in books . Everybody knows that the reality today is a competitive market , and in each and every field we face competition ; for example , if your chosen career is in the software field , then you have to master the subject to easily get a job . Because you share only a single interest , this makes you a loner . Indeed , they can be refused . but if they need money for this purpose , they can work extra hard . But by then we had already bought the product and ended up losing the money . if they do something , they go for another until they know how it works and what is useful to think of it . Therefore , he likes to do risky and strange things and he enjoys it . I believe that having specialized knowledge about a specific subject outweighs having broad knowledge about many academic subjects . In my opinion , if someone thinks one thing is more important than the other , why not focus on the one ? And people feel more awkward about what they hear when this is happening as a current event . However , I would prefer to travel by myself because with good preparation it can be filled with joy . the fact of the matter is that a lot of academic subjects can not be applied separately . Although some people say that the treasures have already been found . Another solution could involve the development of more fuel efficient cars , which may also be good for America 's car manufacturers since they will produce cars that are more attractive to other countries . Consequently , I agree that the statement regards three reasons : affecting someone 's view , being face-to-face with other people , and being the first time . Thereby , the problem of running out of fuels is out of the question thereby augmenting my view that the number of cars will continue to rise and not decline . The First effect is global warming . So , Ho Chi Minh city will develop . People like to drive different types of models and want something extra with it . That 's why i will not be hard as i am alone . Successful People can explain any other matter and discuss any other problem . But it is dangerous , because some drivers make trouble with other drivers and the driver might have an accident when the streets are busy . Because it is already a fixed data , nobody can create problems with this type of literature . This will reduce the pollution caused by the carbons from the cars . Moreover , they have to learn about advanced course material . Critics of this policy focus on three points . first , Yellowstone fires scorched a large area of land and therefore a lot of plant species were lost . Based on my past experiences , some lectures are completely based on facts , and the chance for me to apply that knowledge is rare . However , there are a lot of explanations about what the placebo effect does . I , same as other people , see many times on TV that rich people are interested in politics , sports , new technologies and space . for example , if you are attempting to study arts and sciences and get qualifications in both , you are an extraordinary creature . So in this field , it is very important to understand all the concepts and ideas they gave us and use these to solve problems . It is also important to take risks rather than only doing . Usually in advertisements , a presentable face is used , such as models , nice babies , or famous sportsmen , just so that the product looks better than it is . As we all know , when we are out , something we are n't expecting could happen , such as disease , accident or something else . Third , the professor agrees that gas prices in the United States are cheap and should be raised to save the environment and protect people 's health . But they do things in a different manner than others , which makes them successful . I think it 's harder for successful people to take risks because they could lose much more than others . So the importance of communities in society decreased . At some point , they have to face failures and endure a lot of struggles . Because it transmits the habitats from Eastern Europe to different places in the world . the other reason is many people see some of the exotic cars as luxury and this encourages the industries . It is also undeniable that if a man has diversified knowledge , it would be used immediately . So , some people use cars only by moving somewhere . And there are a lot of critics who are concerned that the required testing takes so long that it declines the value for patients . we know that prescribed burning should be repeated every few years , but its very expensive to pay for this every few years . The Second difference with the encyclopedia is that there are a lot of viruses and hackers on the internet , and one of the hackers could easily change the information about any kind of topic . If i want to win a case in court , for example , a case where technical questions are to be considered , it is not enough to just know about the law . the successful people try to do new things like any machine that can help the people . Consumers are not likely to buy a pair of trousers when the claim is that they will increase their capacity to fly . It 's rightly said , `` life is not about adding years to life but life to years. `` . First , an advertisement made me buy something unplanned . they create an impression so well that people are dragged to buy it . And if the knowledge is in all the areas then it gives you an added advantage to your knowledge level . But in my opinion , if you want to be a successful person , you should be brave enough to try new things and take risks . Who we match them together . They explain the specific points using the examples about dinosaurs ' behavior and physical face . the lecture mentions , Mongol court records of the time . We do n't usually study these subject very deeply . They may go to the house , which the elderly person lives , and help to eat food and walk . It would be a really wasteful idea . However , I still believe that learning facts are important for students . While you will be able to help each other and work together after graduation from the university . he usually brings a book , and will ask someone something if he wants to understand the book . It will be always be able to pull things for them . I do not want to go to the Eiffel Tower in Paris or The Statue of Liberty in New York when I travel because they are too famous ; I already heard and saw about them . In this case , the advertisement totally makes an impact in that baby . Lastly , business owners thought factories would help reduce their overall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderful places . Really successful people gained their fortune by doing something new , something that no one else has ever done before , and that means that nobody knew how to do it well , so that was their risk . For example , when I was freshman at Meiji University in Japan , my classmates and I traveled to China . Second , many of the cars disadvantages will cease or decrease in the coming years , which will make it more popular at the current time . Nowadays , drinking soda has become an addiction for most people . If you want to actually know somebody , you can spend the whole day with that person or place but if you do n't , you do not even speak to that person or even go there . I do n't think cars will be replaced completely by new automobile innovations , but they will certainly be in fewer numbers . Although life is never easy , the age does n't depend on when you can be protected or prevented from bad things . we are also able to deal with the problems found with it . First of all , the lecturer thinks that accepting the gas tax to reduce the number of gas consumers is not good for economics . It is a brilliant idea , and you know that you are really good at working with small boys and girls , but you have to risk your work , your salary , and with this almost your life for an idea that may or may not work . Briefly , sharing the cost of a vacation is a very good advantage for travel . In order to get an eco-certification , many wood companies around the world have introduced new ecologically friendly practices . For example , you were working like a broadcaster but in the office and city where you are working . She knows just what that teacher has told her but no more . and governments will not provide a good public transportation system for many years later . In old times , families tended to live in the same place for ages . I think that young people are not able to think as deeply about things as older people . My friends are to celebrate the party . For example , when I was a university student , I researched and reported about a community history in groups . Thus , most of the habitats in rural areas are old ones . This is very positive for the company and he will probably get a better position . The identification as young or old is not important . The reason these problems occur is also because of the exam . If he satisfied his situation and did not make efforts to overcome himself , not only could he be remembered as a great artist but we also never meet many great music . He may feel afraid or terrible when the same thing happens to him . When older people think like that , it makes big problems with young people . Some people say that placebo is really a drug , about 3 0 percent of patients agree with this idea . After that , they have to find a well-paying job . But as for myself , I 'm going to get to because brother alwys always about it and i agree with that his knowledge . It does n't matter if the person who takes the risks gets everything he or she has in mind because what 's important is that they made everything and they prove that they can do a lot of things in their lives , always thinking positive for themselves and for the whole world . The cost of the underground is very cheap in some countries , such as France . For example , it happened to me when I studied the concept of inflation . So lets not lose hope , and let the scientists do their job . However , i think being in a traffic jam is a stressful situation . it requires time and patience , and there are many more disatvantages about the large number of cars . for example , there may be elderly travelers who may cause slow movement due to their inability to walk fast . In the 2 1st century , our young people can learn a lot of academic subjects . Movies and other television shows provide a lot of information about real life . There are many way to do this ; for example , if a bottle of juice tastes bad they make the shape of the bottle wonderful , like making it colorful . A lot of memories , with enough time to remember , will increase the possibility of enjoyment . Scenes of violence can have an effect on them . While the communities in general have recognized that they need support from the young people , they must make an appeal for it in a reasonable way . if it does , you will get some misunderstood idea about the article instead of the original one . Secondly , a chimp can also show the capability for grammar , which means it can demonstrate the ability to combine words and use grammatical constructions . I think that to learn facts is only proof that the students can work hard and that they are able to retain detailed information they are taught , but it 's definitely not proof of their intelligence . So if i have a lot of information about a subject , then i will talk with too much knowledge , but if i have just general information about the subject , then i will talk about it with my limited knowledge , and this may cause me shame , like when my brother asked me about something but i did not have a lot of information about the subject . Because if i see someone did something to save me time and energy and it works , i will do it . People are now opening their eyes to the scenario where we could run out of fuel . No other transportation concept has been as successful as the car , not only because of the good street and highway system throughout the United States and Europe , but also because of the fact that people love their cars . That 's why he is a legend in these days , and why people respect him . On the other hand , when I was a fresh man in my college , I could concentrate on my favorite subjects . When you 're taking a tour guide trip , you have everything settled from the time you leave to the time you arrive . People tend to choose other media types , and that is why literature is in danger . I am pleased to meet intelligent people and learn new things . But these things seem too hard for old people since they hardly move and do n't have healthy bodies to play things like sports . On her salary we ca n't buy a car because we are planning to finish our house in Binangonan , Rizal and we will be planning to finish my studies in Boston . A person with broad knowledge will help him with the renovation . You can only be successful by learning and trying new things and keeping an open and creative mind . For example , if the city says that 8am~9 am is the busiest time , then workers could argue that they drive a bit later . For example , in this generation , people watch movies and listen to music more than they read books and novels . In Malaysia , there are a lot of cars . So they are free to do all sorts of things , even if those things are considered to be dangerous or irresponsible , such as bungee-jumping . I think most people will like that in a busy world , but I do n't think it will happen within the next twenty years . Everyone would expect to leave his own secrets dreams such as to be a painter or a writer . This would have definitely required him to take out an immense amount of time from his work and he stands as a perfect example with whom the youngsters of today relate . I thought that it was kind of ridiculous , but we had to do as the tour guide said . An example that would make this categorization problematic is an architect . also marketing can make some adjustments regarding the change . In my essay i want to focus on how important it is for students to learn facts . Ranking the students ' ideas has many advantages . and you can have a chance to have a person help you . They would not be able to discuss specific problems because they do not know them . By the same token , people will learn many different things just by doing , but they just learn its appeal and do not get any crucial information or wisdom from it . New experiences to somebody is the same as the challenger and challenger is movement and reason for some people to continue living . our society will be a lovely society and If the dream can continue i think we will learn more . It is a government rule that attending this seminar is compulsory . Without the empirical experience , i think , the learner tends to forget all the information he or she has learned throughout his or her learning process in the long term . By just knowing the culture of a different country than we are living and not born into , we wo n't be able to live . Court costs are very high and many disputed tickets are seen . you have 30 typically an effective response will contain a minimum you will be satisfy culture experience and fit your test . that 's why centralization , other attributes , and business owners reducing their business are not responsible for the rise of factories . second , birds navigate by landmarks like rivers , coastlines , and mountains . Unfortunately , in most countries the functioning of public transport is not perfectly organized . The public transportation in the city may not be able to cope with the huge flow of people . This does n't mean that because you take risks , you are going to succeed . one of the most important problems is accidents for sure - everyday millions of people die just because of the drivers not being careful ; as a matter of fact , i do believe that there will be less cars in twenty years , but this will happen because we will use something else . In this sense , I would introduce the concepts of two aspects with a detailed analysis , and then it will come to the conclusion . In my case , my younger brother needs more than academic knowledge . I learned many kinds of subjects , and I also could make different types of friends . you have to teach your child since he or she was until they grow up . If students have to study for history , for example , it is often enough to just learn the facts ; but on the other hand , studying for physics or math requires understanding of the concepts . For example , the subway in New York , the bullet trains in Japan , the underground tube trains in Singapore , and the sky trains in Bangkok travel at lightning speed . Obviously the irreplaceable examination and fewer enemies can bring huge advances to fulfill the definition of success . Young people nowadays do n't devote enough time to helping their communities . one of them was my friend , who had serious problems with her health . I had a good life in my country but I got everything from my patents . But if the student is only learning things without knowing the concept , then no company is giving the opportunity to that person because he does not know the concept of its related branch so by this way it creates a problem in the future . secondly , it is an unfair action because it will affect low income Americans . It results in people more mature , strong and calm before life 's problems , because they understand the problems go away and it depends what attitude everyone has in the face of a problem . this space must change the garden . However , there are those that think that when a person is forty years old they are an older person . It is worth noting that not everybody will succeed when taking a risk , but that is not enough of a reason to deter anybody who wishes to take one . apparently I have a Japanese friend in Japan , and his name is Tomo . when they do some work , they think they have to find work in time . Ignorance of striped bass will abbreviate our earnings , but it also has some astonishing effects on our health . Although there are some rules for protecting young people , such as warnings of ages in movies and previews about the bad aspects of programs , it is just made for little kids , not young people like high school or university students . But is it possible to have a broad knowledge of many academic subjects without specializing in one particular topic ? This demonstrates the undeniable fact that it is beneficial to have different experiences . The government is raising the tax on gasoline . He was successful already in his field of living electric equipments , but , his began to new dominant of electronics technology and was succeed . Traveling in a group , especially with a tour guide , helps make our trip more productive . When they got down to the forest they produced a fire . To be sure , the Japanese take part in destroying the environment because we consume the most wood . So i asked my student what he thought about my lesson , and I tried to find out what the problem was . Second , the roads will not be damaged because by raising the tax , there will be far fewer cars . This will definitely cause some problems . In America a lot of families have more than one car , and furthermore , some of them have three or four . Most of us will understand better when the ideas and the concepts of the war are shown and we can get very excited about it . I could not give enough time to any of the sports to be a great sportsman . First of all , He argued that Americans will not ignore the `` eco-certified '' as there are so many advertisements now . Therefore , the french revolution happened in the middle-age in Europe because of these reasons . This will help to create relationships like brotherhood . By trial and error I succeeded , which gave me a very good feeling about myself . And the presidents of companies like Toyota or Ford , they were successful because they knew how to start their companies and make a smart product . but the lecturer shows different angles of the system . Help others and we will all live in a comfortable home . I remember that from a lecture I attended . Even through everything , when there is a life there is hope . It is better to have a very good understanding and knowledge of many academics because it makes you broad and gives you chances and opportunities to work in different fields and environments . It is said that the zebra mussel from the bottom of the ship moved to the freshwater and devastated the ecosystem . This implies that there can be instances where no such overstating takes place at all . And availability of jobs to the candidates having specific knowledge is less when compared to the all around performer . It is not worth it to jump into a pool without knowing how to swim since you may be unable to breathe . Another thing is that adverts always show and indicate prices on commodities allowing consumers to budget well in order to be able to buy them . They come together for a 'LAN-party ' with the neighbor 's kids . Simply , we need to eat , buy clothes , and make and raise family . if someone is n't know eating is very important for growth bones and brain or general for body it is fact that eating is just useful . Advertising can be misused not only by corporations , but also by the government , for example , the nazi regime . He 's the one who can give different specialties the possibility to shine . Such people impressed other people through their strong will and devotion to duty . however , I firmly believe that traveling with a guide is quite beneficial because of the possibility of traveling to many places in a short time and in safety . i have studied for just examination we studied . Adult content to sent their children to school to contact these different kinds of class . The disability of doing the things that desired make elders unhappy . However , I want to go to the U.S.A. so that I can study and live in my dream country and I want to have my family with me so that I will never be alone . I do not know if American teachers do , but some Japanese teachers speak factually during class . Because of this , I prefer studying concepts and ideas more than learning facts . it would be more interesting , positive , great , helpful and amazing if someone had more than one academic subject . we are watching a movie to learn something . the preferences might be different for a young person than an older person to fully enjoy their life . It has some problems that it can affect to humans . It mentions that it has now reached some parts of North America . Many people think that treasure never existed , but in reality it exists . Even if they use buses , which are big vehicles , the fact that people are taking a bus still reduces the number of cars . Nowadays so many people study the way that makes advertisements increase sells , that is why our behavior is influenced by what we listen to or what we see on the television . In this way a person always feels original and `` modern , '' not `` ancient '' like the people that surround him or her . The product is not as attractive as the lifestyle that the product will give you . In the twenty years , they can also give us better cars to use less resources and give us much more convenient tools for our traveling . due to this new product it is a flop in the market . I do not agree that people who take initiative will assume risks more than those who do not . For example , during the traffic jam , the transit ca n't accommodate such large amount of people , how would the clerks . and new gerrthion prefers to use the transport this why know they think in twenty years fewer car use . travelling by yourself is very good for your future . Now a days all the up coming the graduates are just muddling the subject mostly 70 % of subject just learn . For me there are very few friends or classmates that I would rather have as a friend . Attendance does not mean that teenagers are fully participating in class . In studying the processes underlying biochemical pathways , knowledge of biochemistry is required , which is an integration of biology and chemistry . when talking to the employment the company should not know . it contributes to air pollution and rising temperatures . For instance , the birds are not usually trying to remember the subjects that they have passed by , such as a stone , a building , or even a small house . So it means there is no certain way how migrating birds find their way home . Who can say no to a business that can make your life safer ? For example , i prefer to specialize in public relations , which is a help to me in my personal life and knowing how to treat other people . First is how to release the drugs as fast as possible ; in order to sell drugs and make money , the government requires a certain amount of testing to be done before the drugs are released , and this delays the date of release . So it depends on the different nature of the body . If we can plant some species which have a stronger chance to live compared to other plants . Because it rains more and the plants grow well , the Pueblo can make full use of it . Additionally , popular movie stars or famous people in the advertisements attract people . Let us think of music as a metaphor for all the areas of knowledge , and the different instruments as metaphors for all the separate disciplines . Billions of people use it every day . Many people have many reasons , like to see abroad or to have different experiences , but their purposes all have something in common . We always joke around or do something stupid . Last but not least , zebra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . the understood ideas and concepts help students learn information about the many subjects and accept good education from the information the have . Therefore , we think ourselves that mind care of society is front do it . The population explosion is another factor catalyzing the consumption of energy resources . Although , people have a great brain capacity to gain and learn knowledge , so it is easy to gain general knowledge of everything . As I see it , there will be a lot of research done in the future to find such alternative energies , which will also be environmental-friendly , as well as cheaper . But the experience of painting gives me many new abilities in filmmaking . Because I have a broad knowledge . If everyone in the city uses their own cars , the city will become seriously polluted by the smoke . It is rather than to give them strong medicines to them . Fortunately their topic becomes clearer by using this amount of the concepts provided by the books . Secondly , they have the confidence that new way will be another way to improve a mechanism . also save your time and make you satisfy this journal . they are the bony and vital part of the society . My personal perception is that such a behavior is damaging to a young person 's personality , since it promotes uniformity and conformity , rather than creativity and innovation . Every house nowadays has a computer , mobile phone , etc . and this is the way today 's man wants to live . I will describe these two main issues : to meet the modern society 's needs and to be eligible candidates for some companies . These surveys also demonstrate how much young men and women are not aware of the improvements they could afford if they were able to really put themselves in an effective relation with their communities . And in contradiction to this , the professor said the disease study is not designed very well . Sometimes , it is very comfortable but , it 's not important for me . If they teach them , they will never forget it and it is beneficial for our country . I can not imagine that during the next 20 years anything would hinder an American from using his car to drive down to the post office which is only 3 blocks away . For instance , when I was in elementary school , I learned mathematics formulas without the concept . that would be a frequently asked question , so to answer this question we should be aware of the facts . It is more important for them to understand the ideas and concepts than it is for them to memorize facts . Rather than keep his investment within the confines of the oil business where he is a master , he went ahead with his new plan . students may not understand facts very will until they understand the idea and concept that is related to the fact . This always challenges the consumers to buy a particular commodity in order to satisfy their needs and wants in modern days . For example , it will be easier for people to concentrate on a subject such as geology while having a broad knowledge of many subjects , than to try to concentrate on geology after having studied literature . You can buy a vanilla cake in an upscale store and another vanilla cake in the regular store . some guides are not sure about the information . Developing communities want to build more modern buildings . I strongly believe that in twenty years there will be fewer cars in use than there are today because of the decreasing damage and technology replacement . For example , When I was in school my Geography book presented `` Pluto '' as the last planet , but recent studies posted that `` Pluto '' is not a planet at all because of some different characteristics . For example , in Korea , teachers teach something and students learn what the teachers are saying without discussing with other students while in class . First , we can protect our environment by saving oil and gas . And I completely disagree with what the author wants to say . Think about it : If you are 50-60 years old you always think about your health . I advise all people to always keep smiling and to have fun in this wonderful life god gave us . Another reason to join a big company is job security . For example , banks have many very specialized departments . At this time , my opinion is that young people enjoy life more than older people do . They do n't have to read specific books and articles just because they love the topic . It is not bad if you know it ; it means that you are intelligent , but a doctor has to absolutely be good at saving and helping ill people . If however the student will put only his/hers or someone else 's ideas or concepts , which can be mistakes will make the professor think that the student actually did what was asked from the assignment . When I watching TV , radio . After he graduated from his university , thanks to his skill of software , he got a job easily and became the best in his field . but the professor refutes the idea by illustrating some tested results from research conducted by a oil is not taken around the world . The old teaching system is a fair system because it judges teachers based on education and teaching skills , with the final and most important thing being teaching experience . In my opinion , i agree with the statement ; most advertisements make products seem much better than they really are . there are two crucial facts : no particles from asteroid explosion , area of the asteroid and meteorites of explosion . First of all , you will know a lot of things about this subject because you do not have any thing else to do . Second , he says the strong property rights were developed from the factory system and not vice versa . Bus , Subway , and even plane are means of traveling that can be used in a lot of areas . Also , it is more comfortable to be moving . Coming to atmosphere and nature both are same . For example , famous businessmen travel over the world every day ! I think that talking with a person who has a different mother tongue than me is the best way to learn a new culture and language , however there may be a chance to meet them . This fast paced economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and improved lifestyles for individuals . I want broad knowledge of many academics . Maybe when the economy is bad , such people can find new jobs quickly , but it may not be the best job for them . The important thing about this case is that each country has to use an official solution for their learning problems . for example , a researcher that wants to be successful must take risks . The legs of all modern endotherms are underneath the body . However , the lecturer says that the location was described vaguely because the ancient people wanted to keep the location of the treasure secret . But on the contrary , he argues that fluoride also has some disadvantages . For example , I like to go to a big city like New York . Everybody knows sports can improve our body , But we need to try it ourself and than we will know that , yes , sports really can help us to get a health body . Thus , we can easily remember this formula without spending extra energy and time. and it is still usefull useful me . And this might probably mean that our knowledge is limited . Because we need food . He will be mature enough to make wise decisions in expanding his business and trying out new things . The person takes the bike , goes where he wishes and leaves the car near the closest bus station . And I am going to another country . The youth today are aware of their responsibilities as a citizen . But I disagree with this opinion because often the advertisement does n't speak about the function of the product but it promises other characteristics that do n't depend on it . it gives him many opportunities in life , and i think that being a knowledgable person is a wonderful thing to be so we can live our lives successfully and full of happiness . In other words , the image in the TV commercial is the most important factor in determining whether the watcher buys it or not . There was no promise of morning except when we looked up through the trees and saw how low the forest had swung . Imagine yourself working in a factory . You are to do just one thing , such as put a tire on a car . if you are fired , it will destroy you because you do not know how to do more than put tires on cars . It is true that consumers prefer to buy a product that has a lower price , but when international companies that already have the certification begin to enter the market , people will prefer to consume theirs because the difference between prices is probably not going to affect them too much . Many studies over the last 5 0 years have shown that people who have fluoride in their drinking water have considerably less cavities than people who have been drinking non-fluoridated water . And young people spend more time pursuing this lifestyle . Students can focus on only a few subjects they are interested in and they will become an expert in those areas . He thinks differently from other people and he succeeded . all of that broad knowledge helps them understand their university major and make a correct choice of specialty . Then , when we went to the Science Olympiad , she would have diverse knowledge about the subjects and it would not be new for her to think about new things . If every person wants to learn and understand lots of scientific subjects , not every person will be able to do it and as a result of this science is n't improved . Very soon they will run out at the current rate of utilization . and will put your mind on a non-stop learning ... today , computer skills are the most important life skill . I never have stopped to think about this , but this is a real possibility for the future . If we consider an idea as a totally autonomous concept within the individual process of defining reality , I would state that ideas are useless , if not based on experience . If there are specialized doctors that have done the operation many times before , they are really talented in their jobs . So , It will be a good situation . the school teachers are the ones who take care of the future of the young generation so we have to let them gain better knowledge . Because when we learn about some subjects we should have more information about what we study so that the students will get the information easier and better and this is my first reason . But on the other hand , there are also people that are often convinced by the interesting advertisements that they see everywhere , because of this , many times they have to face problems with the product that they bought and many times there is no way to give back that product . Ever-increasing competency rates force them into frequent business model changes for a compatible transitional flexibility . However , this reading passage casts doubts on the speaker 's mention . The placebo effect is not an illusion , it 's real , so the drug was affected by the placebo effect . For example , in the 2 0 0 6 world cup in Germany , many coaches wanted team . Many Scientists obtained clear results of investigations after the facts were on the table , before they could even begin to theorize about them . They want to make people understand that the product is the best and you really can trust it . Video is convenient , but if teachers are concerned about students , using textbooks can give students good abilities . In my opinion , it is dependent on a particular person . for example , when we talk about speed they must understand why it is dangerous ; it is better than if they have an accident and after that they learn . Therefore people will be able to live with the automobile society and the nature in the future . Marco Polo used Persian language , not Chinese or Mongolian . finally the third cause that birds use as a type of internal compass are crystals of the mineral magetite embedded in their beak . Furthermore , a tour guide will also provide safety and security for the travel , since they already know the do 's and don'ts on the tour . This argument is not only true now , it has been for ages , i want to talk about the live example of Sir . The Last one they have to study about is disease , which means it will be safe . Learn ! There are very successful politicians that never tried something new . Therefore , we have to reduce sulfur and nitrogen dioxide . Furthermore , the professor denies the reading passage in which it states that treasure does not exist and it is just fiction . Knowledge As well plays an important role in life , it can be acquired by understanding the concepts rather than learning the things . And the critics use few arguments . Besides , young people usually like new fangled things , like iPods or mp 3s , and I can see that most young people ca n't live happily without music in their ear and movies at home . Producing vehicles that are more fuel efficient will damage roads , and that will cost a lot to repair . some said this product is recommended by the most important doctor , or something like that . This creates people to peer pressure . For example , last month i bought a skin product ; actually , i bought the product because the advertising got my attention . Newer vehicles could fly in the sky , then we need n't worry about traffic jams . While the child spends about five hours or less with his parents and whenever the child wants to go out he will most likely go out with his friends which are his classmates , so most of his school life will be spent with his classmates and this will have a great effect on his personality which will determine the way the child reacts toward his school and how he will use his life . They have a broader spectrum of ideas that can be developed into competencies during their student life . It is very obvious that more cars will be sold there . Also , food chains become stronger than before , such as rabbits and hares . For the older phone , the only function is a job or a project in which the master calls on him with information related to the jobs . According to me , in order to start the carrier through successfully , it 's important to have a solid base , that means knowledge and experience . Yes that 's right , but there are some young people who think about the idealism of their country , about their communities in Indonesia , about their friends who ca n't eat and who ca n't go to school . Technology has grown so fast because everyone is trying to work on an invention based on ideas he has developed and concepts applied to the idea from different subject areas . Facts are learned through experiences . The bass is not only a predator for the manhaden , so if people catch more bass , the popular of other fish will also grow . Today They are using this way as a curative measure , but with increasing importance on preventive medicine ; normal , healthy individuals are also attracted towards not using cars whenever possible . Government uses that money for public uses and safety . I stated an interest in math ; I spent lot of time solving math problems and I got a good score on my exam , making me more passionate about math . he has a lot of money and fame but no family life . Broad knowledge on many subjects is not possible to acquire . The lecturer against the author 's insistence followed reason . They behave as though they were just spontaneously praising a product during boring normal conversation . To my surprise , nothing happened . It usually makes them more positive about doing it . both advertisements say that the toothpaste will make your teeth brilliant and brighter . He will consider the years that he spent collecting the money to be lost years . First of all , old houses are not necessarily suited to the needs of modern residents . The Actual market requires more specific knowledge than broad knowledge . Only by breaking out of your normal life can you discover new perspectives in your job and private life . Extending the same example as stated above , i can tell you that during the worst period of Amitabh Bacchan , he was offered to enter into politics to take advantage of his publicity and that he will pay for it heavily so he was very much in need of financial support ; Mr. Bacchan had rejected this offer only because he knew how politicians play with the emotions of common people . It means , to understand why a war developed , you should understand the ideas and cultural movements that resulted in a particular period and helped cause that war , for example . The alternative Reading passage emphasizes an alternative to prescribed burning by giving a term like " disking " in this fire to clear out dry and dead shrub and stimulate the growth of new plant life . The second one is to specialize in one specific subject , one has his own test in studying , so let us talk about this subject . After this effort , many companies in the world started actions to get this eco certified . After the construction in 1 9 0 8 of the first commercial car , the ford T , mankind has been subdued to the use of the car . Younger people are still trying to obtain the experience that older people have . They need the cars for many things such as transportation , entertainment and business . Because of the requirement of men going to army , men have to sacrifice their precious time of youth . While results from both experiences are same , the method and the time that brings a result is not same . Because you do not need to be a hero in order to try new things , you just need to want it and know that any result will be a success in things that you want or in learning . In such a situation there is no other way . Even the magnitudes on Mars are no evidence of life on Mars . in writing we are nearly unable to show the feelings of people , but in the action on TV we can understand more than from the book . the truth today is because of competitive markets in each and every field , we are facing tough competition ; for example if you are choosing a career in a software field you have to master that subject so you can easily get a job . Indeed , they can be reduced . But by then , we have already bought the product and end up losing the money . if they want to achieve something , they will try for another until they know how it works and what is useful about it . Therefore he likes to do risky and strange things , and he enjoys it . I believe to have broad knowledge to specialize in one specific subject have outweigh than to have broad knowledge of many academic subjects . In my opinion . if someone thinks one is more important than other , why not focus on one ? And people feel more awkward when it comes to their ears , that this is something going on as a current event . However , I would prefer traveling by myself with a good preparation filled with joy . In my opinion , cars will be fully taken advantage of in the twenty years . the fact of the matter is that a lot of academic subjects can not be used separately . Another solution could be the development of more fuel efficient cars , which could also be good for America 's car manufacturers who would produce more attractive cars to sell to other countries . Thereby the problem of running out of fuel is out of the question , hence augmenting my view that the number of cars will continue to rise and not decline . The First effect is global warming . So , Ho Chi Minh city will develop . People like to drive different types of models and they want something extra in it . That 's why i will not try hard as i am alone . Successful People explain any matter and discuss any problem . But it 's dangerous , because some drivers make trouble with other drivers when they crash their cars when streets are busy . Because it is already fixed data , nobody can create problems with this type of literature . Also , the professor indicates a prescribed fire should be careful when we use the prescribed fire solution . Moreover they have to learn about advanced course material . Critics of this policy focus on three points ; first , Yellowstone fires scorched a large area of land , therefore a lot of plant species were lost . In my past experiences , there are some lectures which are completely based on facts , and the chance for me to apply them is rare . When you understand that the idea is only one way to figure out the statement that you see in this moment . Firstly , I think that communities are equal to human relationship . Because if study in this way occurs , I will guarantee this much and I also will also have a lot of information from the book I am studying . When you understand the concepts and ideas it is up to you to prove them , and see if they are really what you have been told ; i think this is the main reason why students prefer facts rather than just understanding ideas and concepts . for example , if you are attempting to study arts and sciences and get qualifications in both , you are an extraordinary creation . So in this field , it is very important to understand all concepts and ideas , which they gave us to use to solve problems . It is also taking risks rather than only doing . As we all know , when we were out , something unexpected could happen , such as disease , accident or something else . Third , the professor agrees that the the gas prices in the United States are cheap , and they should raise them to save the environment and people 's health . But they do things in a different manner than others which gives them success . I think it 's harder for successful people to risk something that they could lose much more than others . So the importance of communities in society decreased . At some time , they have to face the failure 's and lot of struggles . it transmits the habitats from Eastern Europe to different places in the world . another reason is many people see some exotic cars as luxuries which encourages the industry . It is also undeniable that if a man has diversified knowledge , it would be of immediate use . So , some people use car only by moving somewhere . And there is a lot of critics concerned that the required testing is so long that it declined the validity for patients . we know that prescribed burning should be repeated every few years , but it 's very expensive to spend every few years . Second , the difference between the encyclopedia is that there a lot of viruses and hackers on the internet and one of the hackers could easily change the information about any topic . If i want to win a case in court , for example , a case where technical questions are to be considered , it is not enough to just know about the law . the successful people try to do new things like any machine can help the people . Consumers are not likely to buy a pair of trousers when the claim is that they will increase the capacity to fly . First , the advertisement makes me to buy something . In my opinion , the need for community service and volunteerism rises in the absence of adequate resources or when someone is not fulfilling their responsibilities . they just create impressions so well that people are willing to buy it . The economy would benefit because this would enable it to have a worldwide competition with the car manufacturers . if the knowledge is in all areas , it gives an added advantage to your knowledge level . But in my opinion , if you want be a successful person , you should try new things and take risks . How we match them together . They explain the specific points using examples about the dinosaur 's behavior and physical features . the lecture mentions about Mongol court records of the time . first , the teacher is make a right way give to us , so every teacher is make a confidence to students . We do n't usually study these subjects very deeply . It is a really wasteful idea . However , I still believe that learning facts are important for students . While you will be able to help each other work together after graduation from university . he usually brings a book and asks something to someone ; he wants to understand the book . Recently scientists have been working on a new generation lie detector that can perform brain scanning to find out if a person is telling the truth . It will always pull things for them . By avoiding this it will lead to a much more pure and natural world for our future generations to live in . I do not want to go the Eiffel Tower in Paris or The Statue of Liberty in New York when I travel because they are too famous , and I already heard and saw about them . In this case , the advertisement totally made an impact on that baby . Lastly , business owners thought factories would help reduce their overall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderful places . For example , when I was a freshman at Meiji University in Japan , my classmates and I traveled to China . Second , many of cars disadvantages will cease or decrease in the coming years , which will instead make it more popular than now . Nowadays , drinking soda became an addiction to most people . If you want to actually know somebody , you can spend the whole day with that person or place but if you do not , you do not speak to that person or even go there . an unsuspecting user can not tell the entry has been tampered with . I think cars will not be replaced completely by these new automobile innovations , but they will certainly be fewer in numbers . successful therapists need to know that one treatment may help one patient , but may not be appropriate for another patient . Although life is never easy , age does n't determine when you can be protected or prevented from bad things . we are also able to deal the problems found with it . Briefly , sharing the cost of a vacation trip is a very good advantage for travel . For example , you were working as a broadcaster but in the office and city where you are working . She knows what that teacher has told her , but no more . It would also be unfair , because it would affect low-income Americans much more seriously than well-to-do Americans . In the listening part the woman explained the new reality : the raising gasoline tax does not reflect the real economic damage . When facing such challenges , only those who are perseverant , determined and always strive until the last minute despite the risks can finally be successful . and governments will not provide good public transportation systems until many years later . In old times , families tended to live in the same place for ages . I think that young people are not able to think as deeply about things than older people . Thus , most of the inhabitants in the rural areas are the old ones . This is very positive for the company and he will probably get a better position . On one hand you have general practitioners who look at all the basic problems related to the body while on the other hand you have specialists who only take care of specific areas whether it be an orthopedic surgeon ( related to bones ) , a cardiologist ( related to heart ) or an ENT ( ear , nose , throat ) surgeon . The reason these problems occur is also because of the exam . If he satisfied his situation and did not make efforts to overcome himself , not only could he be remembered as a great artist but we also never meet many great music . He may feel afraid or terrible when the same thing happens to him . When older people think like that , it causes a big problem for young people . Some people say that a placebo is really a drug , and about 3 0 percent of patients agree with this idea . It will eat insects or animals that will cause damage to places so that it can avoid losses due to repairing things . After that they have to find a well-paid job . As for myself , I 'm going to it to too because brother alwys always about it and i agree with that broad knowledge . And it does n't matter if the person who takes the risk gets all the results he or she has in mind , the important thing is that they did something and they proved that they can do lots of things in their lives , always thinking of good results for themselves and for the whole world . The cost of using the underground is very cheap in some countries such as France . For example , it happened to me when I studied the concept of inflation . So let 's not lose hope and let the scientists do the job , but i think being in a traffic jam is a stressful situation , it requires time and patience and there are many more disadvantages about the large number of cars . for example , there may be elderly travelers which may cause slow movement due to their inability to walk fast . There is evidence the company that made some of the products had to pay lots of money to the broadcasting bureaus . On the 2 1st , our young people can learn a lot of academic subjects . Movies and other television shows provide a lot of information about what real life is like . There are many ways for this ; another example would be bottles of juice where if it tastes bad , they make the shape wonderful or colorful . Other tourists could give you some tips for the trip from their experience . A lot of memories with enough time to remember will increase the possibility of enjoyment . While the communities in general believe that they need support from the young people , they must make an appeal for it in a reasonable way . if it does , you will only get some misunderstood idea about that article but not the original one . Secondly , chimps can also present the capability for grammar , which means they demonstrate the ability to combine words and use grammatical constructions . I think learning facts is only evidence of whether students can work hard and if they are able to retain every detail of information they are taught , but it 's definitely not evidence of their intelligence . So , if i have a lot of information about this subject , i will talk too much because of that knowledge , but if i only have general information about it , i will convey my limited knowledge and this may make me feel ashamed , like when my brother asked me about something that i did n't have a lot of information about . if i see that someone did something that may save me me time and energy , and it works , then i will do it too . People are now opening their eyes to the scenario that we could run out of fuel . No other transportation concept has been as successful as the car , not only because of good streets and highway systems throughout the United States and Europe , but also because of the fact that people love their cars . That 's why he is a legend in these days and people respect him . On the other hand , when I was a freshman in college , I could concentrate on my favorite subjects . When you 're taking a trip with a tour guide , you already have everything settled , from the time you depart to the time you arrive . People tend to choose other media , which is why literature is in danger . I am pleased to know intelligent people and learn about things that I do n't know . On her salary , we ca n't buy a car because we are planning to finish our house in Binangonan , Rizal , and pay tuition so I can finish my studies in Boston . A person with broad knowledge will help him renovate . You can only be successful by learning new stuff and trying it too , by having an open and creative mind . Firstly , the striped bass consume a large quantity of menhaden ; secondly , this fish is a source of protein for farm animals ; and finally , the fishing industry provides jobs for some people in Virginia . I think people should travel by making decisions by themselves for several reasons . For example , if the city says that 8 am -- 9 am is the busiest time , then workers could argue that they should drive a bit later . For example , in this generation , people watch movies and listen to music more than they read books and novels . In Malaysia , there are a lot of cars . they are free to do all sorts of things , even those that are considered dangerous or irresponsible , such as bungee jumping . I think most people would like that in a busy world , but I do n't think it will happen the next twenty years . Everyone would be expected to leave behind his own and secret dreams , like becoming a painter or a writer ... New kinds of vehicles will be invented with new technology that does n't exist today . This would have definitely required him to take an immense amount of time away from his work , and he stands as a perfect example with whom the youngsters of today relate . I think it is kind of ridiculous , but we have to do as the tour guide said . An example that would make this categorization problematic is an architect . also , marketing can make some adjustments about the changes . In my essay i want to focus on how important it is for students to learn facts . Teaching the students ideas has many advantages . you can have a chance to make a person help you . They would not be able to discuss specific problems just because they did not know them . By the same token , people will learn many different skills by doing so many things , but they will just learn their appeal and not get any crucial information or wisdom from it . To some people , New experiences are a challenge and challenges are the reasons that some people continue living . our society can be a lovely society , but for that dream to come true , i think we must gain more knowledge . This is the government rule , that attending this seminar is compulsory . Without empirical experience , i think learners tend to forget all the information they have learned throughout the learning process in the long term . Court cases are very common and a high number of disputed tickets are seen . that 's why centralized attributes , and business owners reducing their businesses are not responsible for the rise of factories . second , birds navigate by landmarks like rivers , coastlines , and mountains . Unfortunately in most countries , public transport is not perfectly organised . The public transportation in the city may not be able to cope with this huge amount of people flowing through . This does n't mean that , because you take risks , you are going to succeed . one of the most important problems is accidents for sure : everyday millions of people die just because of drivers not being careful . as a matter of fact , i do believe that there will be fewer cars in twenty years but this will happen just for the reason that we will use something else . In this sense , I will introduce the concepts of two aspects with a detailed analysis and then I will come to the conclusion . In my case , my younger brother needs more than academic knowledge . I learned many kinds of subjects and I also made different types of friends . you have to teach your child since they are born until they grow up . For example , the subway in New York , bullet trains in Japan , underground tube trains in Singapore and the sky trains in Bangkok all travel at lightning speeds . Obviously the irreplaceable examinations and fewer challenges can bring huge advances to fulfill the definition of success . Young people nowadays do n't spend enough time helping their communities . one of them was my friend who had serious problems with her health . I had a good life in my country but everything I had I got from my parents . However , if the student is going to only learn things without understanding the concepts , no company will give him an opportunity because he will not know the concepts of its related branch , and by this way it will create a problem in the future . secondly , it is an unfair action because it will affect low-income Americans . It results in people who are more mature , strong and calm when faced with the problems of life because they understand that problems go away , depending on what kind of manner people have when faced with a problem . this space must change into a garden . However , some people think that , when people are forty years old , they are an older person . It is worth noting that not everybody will succeed when taking a risk , but that should not be enough to deter anybody who wishes to take one . apparently , I have a Japanese friend in Japan whose name is Tomo . when they do some work , they think they have to find work in time . Ignorance of striped bass will abbreviate our earnings and also have some astonishing effects on our health . Although there are some rules for protecting young people , such as restricting the ages that can view movies and previewing the bad aspects of programs before they start , it is just made for little kids , not young people like high school or university students . For the Greek philosophers Plato and Aristotle , the capacity for understanding ideas and concepts , or intelligence , is the main ability of the human soul , which is the part of ourselves that makes us the beings we actually are . But is it possible to have a broad knowledge of many academic subjects without specializing in one particular topic ? This demonstrates the undeniable fact that it is beneficial to have different experiences . The government is raising the tax on gasoline . To be sure , we Japanese take part in destroying the environment because we consume the most wood . So i asked my student what he thought about my lesson and tried to find out where the problem was . Second , the roads can not be damaged because , with the rising tax , there will be many fewer cars . This will definitely cause some problems . In America , a lot of families have more than one car and , furthermore , some of them have three or four . Most of us will understand better when the ideas and the concepts behind the war are shown and we can get very excited by it . First of all , He argued that Americans will not ignore the `` ecocertification '' as there are so many advertisements now . Secondly , It needs to experience . Therefore , the french revolution happened in the middle Ages in Europe due to those reasons . '' This will help create a relationship of brotherhood . By trial and error I succeeded , which gave me a very good feeling about myself . And the president of a company like Toyota or Ford are successful because they know how to start their companies and make smart things . The lecturer shows a different side of the system ... Second , Menzied points out that chinese ships in the 1400s used very distinctive anchors that were round stones with a hole in the middle . In a group trip , we are forced to follow the group 's time schedules . Helping others makes us all live in a comfortable home . I can remember that from a lecture I attended . Even when everything is tough , when there is life there is hope . However , Bill Gates made people 's lives more comfortable than previous circumstance . It is better to have a very good understanding and knowledge of many academic subjects because it gives you breadth and the chance and opportunity to work in different fields and environments . This implies that there can be instances where no such overstating takes place at all . The availability of jobs to candidates with specific knowledge is less when compared to the all around performer . Another thing is that advertisements always show and indicate prices on commodities , allowing consumers to budget well in order to be able to buy them . Simply we need to eat , buy clothes , and make and raise a family . if someone does n't know that eating is very important for growing bones , the brain , or the body in general , it is not a fact but an idea that eating is just useful . Advertising can be used badly not only by corporations but also by governments , as for example by the nazi regime . Such people impressed others through their strong will and devotion to duty . For example , if the old person does not hear properly , then the young ones right from the days of their childhood think of inventing something that can help the older people hear properly . however , I firmly believe that traveling with a guide is quite beneficial because of the possibility to travel many places in a short time , safely . i have studied just for the examination we studied . Adults are content to send their children to school to have contact with these different kinds of classes . However , I want to go to the U.S.A. so that I can study and live in my dream country , and I want to have a family so that I am never not alone . I do not know about American teachers , but some Japanese teachers speak just the facts during the class . Because of this , I prefer studying concepts and ideas more than learning facts . When someone has studied more than one academic subject it would be more amazing , interesting , positive , great , and helpful . we are watching movies to earn something . the preferences of a young person may be different from those of an older person to fully enjoy their lives . It has some problems that can affect humans . It mentions that now it has reached some parts of North America . Even if they use buses , which are big cars , the fact that people take the bus still reduces the number of cars . Nowadays so many people study the way that advertisements increase sales , and why our behaviour is influenced by what we listen to or what we see on the television . In this way a person always wants to feel original and `` modern '' , not `` ancient '' like the people that surround him or her . It is also possible that travelers could reschedule the trip and the destinations . In conclusion , you are not attracted entirely by the product but by the lifestyle that this product will provide you with . due to this , the new product is a flop in the marketplace . I do not agree that people with initiative will take risk more than those who do not . For example , during traffic jams , transit ca n't accommodate such a large amount of people . new generation prefer to use the public transport , which is why we know that they think there will be fewer cars in use in twenty years . Traveling by yourself is very good for your future . For me there are few very friends or classmates that would be better friends . Attendance does not mean that teenagers are fully participating in class . the company should not know about one 's employment , For instance , the birds do not usually remember the objects they have passed by , such as a stone , a building , or even a small house . So it means there is no specific way in which migrating birds find their way home . For example , i prefer to specializes in public relations , which helps me learn how to treat other people in my personal life . The First concern is how to release the drugs as fast as possible in order to sell them and make more money faster , but the government requires a certain amount of testing to be done before a drug is released , which delays the release date . So it depends on the different body 's nature . we plant species that are stronger than others . Because it rains more , the plants grow well and so the Pueblo can make full use of them . Additionally , popular movie stars or famous people in advertisements attract people . Let us think of music as a metaphor for all areas of knowledge , and the different instruments as metaphors for all the separate disciplines . Billions of people use it every day . Many people have many reasons , like to travel abroad or to have different experiences , but their purposes all have something in common . We always joke around or do something stupid . Last but not least , zebra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . Although , people have a great capacity to gain and learn knowledge , so it is easy to gain general knowledge about everything . As I see it , there will be a lot of research done in the future to find such alternative energies , which will also be environmentally friendly , as well as cheaper . the experience of painting gives me many new abilities in filmmaking . Because I have broad knowledge . If everyone in the city uses their own cars , the city will be seriously polluted by the smoke . It is instead of giving strong medicines to them . Fortunately , their topic becomes more clear by using this amount of concepts provided by the books . Secondly , they are confident that there will be a new way to improve a mechanics . If older people are more accepting of changes , their lives will become better . That means that just learning facts is not going to make a temporary difference to students . My personal perception is that such behavior is damaging to a young person 's personality , since it promotes uniformity and conformity , rather than creativity and innovation . Every house nowadays has a computer , mobile , etc . and this is the way today 's man wants to live . I will describe those two main issues : meeting the modern society 's needs and being eligible candidates to work for some companies . we ca n't image that the world could be changed because of our fast-paced societies . These surveys also demonstrate how much young men and women are unaware of the improvements they could afford if they were able to really put themselves in an effective relationship with their communities . In contradiction to this , the professor said that the disease study was not designed very well . Sometimes , it is very comfortable but that 's not important to me . It is more important for them to understand the ideas and concepts than it is for them to learn the facts . Rather than keeping his investment within the confines of the oil business , where he is a master , he went ahead with his new plan . students may not understand the facts very well until they understand the ideas and concepts that are related to the facts . This always challenges consumers to buy a particular commodity in order to satisfy their needs and wants in modern days . For example , it will be easier for people to concentrate subjects such as geology , if they have a broad knowledge of many fields , rather than to try to concentrate solely on geology after having studied literature . After an official training course , we helped the patients to bathe , talked with the elder people who lived alone , and helped the organization to hold activities during special occasions like mother 's day . You can buy a vanilla cake in a fancy store and another vanilla cake in a regular store . some guides are not sure about the information . Developing communities want to build more modern buildings . I strongly believe that in twenty years there will be fewer cars in use than there are today because of reducing the damage they cause with technology replacement . For example , When I was in school , my Geography book stated `` Pluto '' was the last planet ; but recent studies declare that `` Pluto '' is not a planet at all because of some different characteristics . For example , in Korea , teachers teach something and students learn what the teachers are saying without discussing it with students while in class . First , we can protect our environment by saving oil and gas . And I completely disagree with what the author wants to say . I advise all people to always keep smiling and have fun in this wonderful life god gave us . Another reason to join a big company is job security . For example , banks have many very specialized departments . my opinion is that young people in this time enjoy life more than older people do . They do n't have to read specific books and articles just because they love the topic . It is not bad if you know it ; it means that you are intelligent but a doctor has to be extremely good at saving and helping sick people . If , however , the student only puts down concepts , either their own or someone else 's , which can be mistakes , that will make the professor wonder whether the student actually did what was asked for by the assignment . We can just hope that those cars will have a new propulsion system which will pollute less . When I was watching TV , radio . After he graduates from university , thanks to his software skills , he can get a job easily and become the best in his field . the professor refutes this idea by illustrating some tested results from research conducted , that oil is not used everywhere around the world . The old teaching system is a fair system because it benefits the teachers with education , teaching skills , and , finally , the most important thing , which is teaching experience . In my opinion , i agree with the statement that most advertisements make products seem much better than they really are . there are three crucial facts : no particles were found from the asteroid explosion , area of the asteroid and the size of the explosion . First of all , you will know a lot of things about this subject because you do not have anything else to do . However , people who did not join the event , felt like winners because they forgot the event early on . Second , he says the strong property rights developed from the factory system and not vice versa . Buses , subways , and even planes are means of traveling that can be used in a lot of areas . Also , it is more comfortable than moving . When it come to atmosphere and nature , they both are the same . For example , if my friends talk about their problem about computer issues , I will give them advice about how to solve the problem or just listen to and understand them , which will help them feel comfortable in our meeting . For example , famous businessmen travel all over the world everyday ! This fast-paced economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and improved lifestyles for individuals . I want a broad knowledge of many academic fields . Maybe when the economy is bad , such people can find new jobs quickly , but it may not be the best job for them . The important thing about this case is that each country has to use an official solution for their learning problems . for example , a researcher who wants to be successful must take risks . The legs of all modern endotherms are underneath their bodies . Second , the high cost of drug testing finally causes the cost of the unit drug to be more than the cost of producing it . However , the lecturer says that only a vague location was described because ancient people wanted to keep the location of the treasure secret . But , on the contrary , he argues that fluoride also has some disadvantages . For example , I like to go to big cities like New York . Everybody knows that sports can improve our body , But we need try it ourselves to know that , yes , sports really can help us get a health body . Thus , we can easily remember this formula without spending extra energy and time. and it is still usefull useful me . Because we need food . He will be mature enough to make wise decisions in expanding his business and trying out new things . The person takes the bike , goes where he wishes and then leaves it at the closest bus station . And I am going to another country . The youth today are aware of their responsibilities as citizens . But I disagree with this opinion because often the advertisement does n't just speak about the functionality of the product but it promises other characteristics that do n't depend on it . it gives him many opportunities in life , and i think that being a knowledgeable person is a very wonderful thing because we can spend our lives successful and full of happiness . ================================================ FILE: data/example_data/jfleg/sources.txt ================================================ So I think we would not be live if our ancestors did not develop siences and tecnologies . Imagine yourself you are working in factory just to do one thing like put air a on car if they fire you you will be destroyed , becouse you do n't know more than to put air a in car . For example , they can play football whenever they want , but the olders can not . While It is true that consumers preffer to buy products with lower prices , when international companies that are already certified begin to send their products to market , people will preffer to consume those goods because the difference in price will probbably not affect them too much . And young people spend more time on ther lifestyles . Students can focus on only a few subjects they are intwerested in and they will become experts in those areas . He thinks differently than others and he has succeded . These activities make the community a better place to live and include these values in all the members . all the broad knowledge helps they to understand their major in university classes , as well as help they to make a correct choice in a specialized area . I could very easily understand why he would always brang bad marks home . Then , when we went to the Science Olympiad , she had diverse knowledge about the subects , and it was not new for her to think about new things . If every person tries to learn and understand lots of scientifc subjects , no person will do it and , as a result of this , no science will be improved . they will run out very soon at the current rate of utilisation . and it will put your maind into non-stop learning . In today 's world Compuer skills are the first important life skill . I have never stopped myself to think this , but this is a real possibility for the fucture . If we conseder an idea as a totally autonomous concept within the individual process of defining reality , I think the ideas are useless , and not based on experience . If there are specialized docters that have done the operation often , he becomes talented in his job . It will be good situstion . the school teachers there are the ones who create the future of the younger genaration so we have to teach them better . some tour guide will want to set maximum security to make the tour difficult because you will only have a wonderful view throught the bus . this will effect exams . But on the other hand ther are also people that are often convinced by the interesting advertisements they see everywhere , because of this many times they have to face problems with the product that they bought and many times ther is no way to give back that product . Ever increasing competancy rates force them into frequent business model changes for a compatible transitional flexibility . However , this reading passage casts douts on the speaker 's mention . For example , in the 2 0 0 6 world cup form Germany , many coaches on a work . Many Scientists obtained clear results of investigations after the facts were on the table , but before they could even begin to theorise about them . They want to make people understend thet their product is the best and you can really trust it . Video is convenient , but if teachers are concerned about students , using texetbooks is a good ability for students . In my opinion , it is dependend on a particular person . for example when we talk about speed they must anderstand why it is dangerous it is beteer than if they have an accident and learn after that . Therefore peaple will be able to live with the automobile sosiety and nature for the future . finally , the third piece of evidence that birds use a type of internal compass is that birds have crystals of the mineral magetite embedded in their break . The lecture says it is more important to provide enough fish to the people . Futhermore , a tour guide will also provide safety and security for travel , since they already know the dos and don'ts of the tour . Which caused her situation to worse . This arguement is not only true now , it has always been . The Last thing they have to study is disease , which means they will be save . -Learn ! There are very successful politicians that have never tried somthing new . Therfore , we have to reduce sulfur and nitrogen dioxide . Maybe at the beginning , but time after timer other animals in the environment will choose them as their new food . Furethermore the professor denies the reading passage which states that treasure does not exist and is just fiction . knowledge plays an important role in the life , which can be aquired by understanding concepts rather than learning things . And the critica used few arguments . Besides , young people uaually like new-fasion things , like iPods or mp 3 players , I can see that the majority of young peole ca n't live happily without music in their ears and movies at home . Producing vehicles that are more fuel efficint will damage roads and that will cost a lot to repair . some say this product is recomended for the most important doctors , or something like that . This creates people to fall into pier pressure . For example , last monthe i bought a product for skin because the advertising got my attention . Newer vehicles are something that could fly in the sky , the we need not worry about trafic jams . A perfect example of Real politics , was when Bismarck manipulated the letter written by the king and sent it to the French emperor Napoleon III . It 's very obbvious that more cars will be sold there . Also , a food chain becomes stronger that it was before , such as rabbits and bears . According to me , in order to start the carrier through its ' success , it`s importand to have a solid base , that means knowledge and experience . Yes , that 's right , but there are some young people that think about the idealism of their country , about their comunities in Indonesia , about their friend who ca n't eat or go to school . Techology has grown so fast because everyone tries to work on an invention due to some ideas he developed and concepts that have been applied to this idea from different subject areas . The bass is not only a predetor for menhaden , so if people catch more bass , the population of other fish will also grow . Today They are using this method as a curative measure , but with increasing importance of preventative medicine , normal healthy individuals are leaning towards not using cars wherever possible . Government uses that money for public use and safty . I stated to have an interest in math , and spent a lot of time solving math problemes , and I got a good score on exams , it makes me have more passion about math . Broad knowledge on may subjects is not possiable to acquire . The lecturer went against the authour 's insistence for the following reasons . To my surprize , nothing happened . It usually makes them more postive to do it . In both advertisements it is said that these tooth pastes will make your teeth briliant and brighter . The advertisement says that the car has space for ten people , when the truth is that the car just has space for four people ; another example is a skin soap advertisement that says the soap is the best because it will make your skin as soft as a 1 5 year old princess or as soft as the skin of Jennife Lopez . He will consider himself losing the years that he spent on colecting the money . Actual markets require more specific knowledge that broad knowledge . Only by braking out of your normal life can you discover new perspectives in your job and your private life . Extending the same example as stated above , i can tell you that during the worst period of Amitabh Bacchan , he was offered a job in politics to take advantage of his publicity and would be paid heavily for it , he was very much in need of financial support , but Mr. Bacchan rejected this offer because he knew how polititians play with the imotions of common people . people who are realistic can be more successfull , as we can see throughout history . It means , to understand war development , you should understand the ideas and cultural moviments that resulted in a particular period , and helped for the occuring of that war , for exemple . A different passege emphasizes an alternative to prescribed burning that uses the turm " disking , " a method that uses fire to clear out dry and dead shrubs , thus stimulating the growth of new plant life . But , I went to Juju island more than three times . The second one is to specialize in one specific subject : one has his own tast to study for , so let us talk about this subject . After this effort , many companies in the world startet actions to get this eco certified . After the contruction of the first commercial car in 1 9 0 8 , the ford T , mankind has been subdued to the use of the car . Young people are still trying to obtain experince , while olde people have it already . Take toys for example , advertisments that target children in particular are the best example of the way advertisements create a false image of the product . They need cars for many things such as trasportation , entertainment , and business . Because of the commitments men have to make to go to the army , men have to sacrifise their preciouse time of youth . If scientist will do something different like modifying the form of carbohydrate ( gelatinized and nongelatinized ) , and then incorporating that into fish feed then fish may have a greater chance of growth and then be utilized more efficiently much to the appreciation of everyone . While the reaults from both experiences are same , the method and the time that brings a result is not the same . Because you do not need to be a hero in order to try new things , you just need to want it and know that any result will be a succes in things that you want or in learning . In such a situaction , there is no other way . Even the magnitides on Mars are no evidence of life on Mars . in writting we are nearly unable to express people 's feelings , but via action on TV we can understand these feelings better than from books . Everybody knows that today , the truth of competitive markets in each and every field , we 're faceing plenty of competition , and if you are choosing a career in the field of software , for example , you have to master the subject and than you can easily get a job . Indeed , they can be refuced . But by then , we have already bought the product and end up loosing the money . if they learn one thing , they will learn another untill they know how it works and what the useful aspects of it . Therefore , he likes to do arisky and strainge things , and he enjoys it . I belive to specialize in one specific subject outweighs having broad knowledge of many academic subjects . In my opinion , if someone thinks one is more important than the other , why not focuse on one ? And people feel more arkward when it comes to their ears that this is something that is a current event . However , I woud prefer traveling by myself , with good preparation , and be filled with joy . the fact of the matter is that a lot of acadmic subjects can not be used separately . Althogh some people say that the treasures are already found . Another sollution could be the developing of more fuel efficient cars , wich could also be good for America car manifacturers who will produce more attractive cars to sell to other countries . First effect is grobal warming . So , Ho Chi Minh city will develope . That 's why i will not be as hard as when i am alon . Successful People can explain any oher mater and discuss any other problem . But it is dengerous because some drivers make trouble with other drivers and when the drivers crash their cars then the streets are busy . Because it is allready fixed data , nobody can creat a problem with this type of literature . Also , the professor indicates that we should be carful when we use the prescribed fire solution . Moreover , they have to learn aboue advanced course material . Critics of this policy focus on three poins ; first , Yellowstone fires scorched a large area of land , and a lot of plant species were lost . In my past experiences , there are some lectures which are completely baed on facts , and there is a slim chance for me to apply them . When you understad the idea is one way you can figure out the statement that you see in the moment . However , a lot of reasons explain that the placebo effect does . Water is necessary to alive . I 've seen many tims on TV the same people , rich people , who are intrested in politica , sports , new technologies , and also in space . becase if I study in this way , I will gain so much , and I also will have a lot of information from the books . When you understand the concepts and ideas , it is up to you to prove them , to see if they are really what you have been told , and i think this is the main reason why students prefere facts rather than just understanding ideas and concepts . for example , if you are attempting to study arts and scienses , and are trying to get equalifications in both , you are an extraordinary creation . So in this field , it is very important to understand all the concepts and idease they gave us and use them to solve problems . It is also necessary to take risks raher than just doing what you are supposed to . Third , the professor agrees that the gas prices in the United States are cheep , and they should rais them to safe the enviroment and people 's health . But they do things in a different maner than others do , which gives them success . People feel more secure and comfortable to travel with their own car rather that travel using several public transportation vehicles to reach their destination far later that they would desire . I think it 's harder for a successful person to risk something becuase thay coluld lose much more then others . So the importance of communities in sosiety decreased . At some time they have to face their failures and strugles . the other reason is many people see exutic cars as luxery items , and that encourages the car industry . So , some people use their car only for moving somewher . and a rolling stone gathers no mass , says proverb . And there are a lot of critics concerned that the reqired testing is too long to be valueable for patients . we know that prescribed burning should be repreated every few years , but it 's very expensive to prescribe burnings every few years . The Second differance between the encylopedia and information on the Internet is that there are a lot of viruses and hackers on the internet , and hackers can easily change information regarding any topic . For example , If i want to win a case in court in which technical questions are to be considered- , it is not enough to just know about the law . successful people try to do new things , likr use any machine that could possibly help people . The economy would benefit because this would enable it to compete with car manufactures worldwide . And if you have knowledge in all areas , then it gives you an added advatage to you knowledge level . That is because If I became a member , I could be highly esteemed by my friends . But in my opinion , if you want to be a succussful person , you should be brave , try new things , and take risks . Who we mach them togather with . They explain specific points by useing examples of the dinosaurs behavior and physical appearance . the lecture mentioned the Mongol court recods of the time . Firstly , a theacher teaches students the right way to do things and affords confidence to students . We do n't usually study these subjects very deaply . It would be a really wasteful idean . However , I still believe that learnng facts are important for the student . he usually brings a book and asks someone when he wants to understand the bood . I do not want to go to the Effel Tower in Paris , or The Statue of Liberty in New York , when I travel because they are too well known , so I have already heard about and seen them . In this case , the advertisement totaly makes an impact on that baby . Lastly , business owners thought factories would help reduce their overrall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderfull places . Really successful people gained their fortunes by trying somethig new , something that no one else has ever done before , and taking risks where people were too afraid to . For example , when I was a freshman at Meiji University in Japan , my classmetes and I traveled to China . Second , many of the disadvantages cars have will ceace , or decrease , in the comming years , which will make them more popular than what they are presently . Nowadays the drinking of soda is an adiction to most people . If you want to actally get to know someone , or something , you can spend the whole day with that person , or place , and if you do not , you would n't have reason to even speak to that person , or even go there . I think cars will not be completely replaced by new automobile innovations , but they will certaily be fewer in numbers . successful therapists know that one treatment can help one person , but for a different person it may not be approprite . Altough life is never easy , age does n't ensure you can be protected from bad things . we are also able to deal with the probles found with it . First of all , the lecture thinks that using the gas tax to reduce the number of gas consumers is not good for economics . But if he did one machine like that , he , if he wanted , can do another differently , but he does n't think that because he does n't know his own habilities . It is a brillant idea , and you know that you are really good working with small boys and girls , but you have to risk your work , your salary , and , with this , almost your life for an idea that may , or may not , work . Brifly , sharing the cost of a vecation trip is beneficial for travel . In order to get an ecocertification , many wood companies around the world have introduced new ecologically friendly practices . It will be unfair because it would affect low-income Amricans much more seriously than well-to-do Americanc , and listening to the part where the woman explains her reality does not reflest the real economic damages raising gasoline tax would do to low-income Americans . When facing such challenges , only those who are perserverant , determined , and always strive until the last minute , despite of the risks , can be successful . and Goverments will not provide good public transportation systems for many years later . In old times , familes tended to live in the same place for ages . I think that young peopie are not able to think as deeply on things as older people . My friends are celebrating at the pary . For instance , when I was a university student , I reserched and reported about community history in groups . Thus , most of the inhabitants in rural ereas are the old ones . This is very possitive for the company and probably he will get a better postion . On one hand you have the general practitioners who look at all the basic problems related to the body , while on the other hand you have the specialists who only take care of specific areas , whether it be an orthopaedic surgeon ( related to bones ) , a cardiologist ( related to the heart ) or an ENT ( ear , nose , throat ) surgeon . The definition of yong or old is not apparent . The reason these problems occur is also becayse of the exam . He might fell afraid or terrible when the same thing happens to him . When older people think like that , it creates a big problem for yong people . Some people have said that a placebo is really a drug , about 3 0 percent of partients agree with this idiea . Afther that they have to find a well paying job . But about myself I 'm gonna have it to too my brother alwys talks about it and i agree with that broad knowledge . And it does n't matter if the people who take the riks achieve all the goals they had in mind ; what is important is that they made things and have proved that they can do a lot of things in their lives by always focusing on good results for theyselves and the whole world . For example , it happened to me when I studied the concept of inflaction . So lets not lose hope and let the scientists do their jobs , but i think being in a traffic jam is a stressfull situation , it requires time and patience and there are so many more disatvantages of a large number of cars . for example , there may be elderly travelers which may cause slow movement due to their unability to walk fast . This is evidence : the company that made some of the products had to pay a lot of money to the broadcasting breaus . In the 2 1st century , our yong people can learn a lot of academic subjects . Movies and oher television shows provide a lot of information about how real life is . There are many ways for this , another example is a bottele of juise , if it tastes bad , they make their shape wonderful and make it colourful . A lot of memories , with enogh time to remember , will increase the possibility of enjoyment . A Sceene of violence can have an affect on them . the communities in general have reckoned that they need support from the young people , they must make a reaonable appeal . if it does , you will only get some misunderstood idea about that acticle but not the original one . Secondly , chimps are also capable of learning grammer , meaning they can demonstrate the ability to combine words and utilize grammatical constructions . I think to learn facts is only evidence if the students can work hard and if they are able to keep every detailled information tought , but it 's definitly not evidence of their intelligence . So , if i have a lot of information about this subject , i will taulk a lot with knowledge but if i have general information for this subject , i will talk about this subjec with my limited knowlege and this case may make me shameful like when my brother asked me about some thing but i did not have a lot of information about this thing . becuse if i see someone did somthing that may safe me time and energy and it works , i will do it . That 's why he is a legend in these days and people repect him . On the other hand , when I was a freshman at my college , I could concentrate on my favorit subjects . People tend to choose other medias , and that is why litterature is in danger . I am pleased to know intelligent peple and learn about things which I do n't know . But these things seem too hard for old people , they move so difficultly , and do n't have a health body to play things like sports . With her salary , we ca n't buy some car because we are planing to finish our hause in Binangonan , Rizal and we will be planing to finish my study in Boston . A person with broad knowlege will help him renovate . You can only be successfull by learning new stuff and trying it too , by being an open and creative mind . I think people should travel by making decision by themselves with sevral reasons . For example , if the city says that 8 am ~ 9 am is the busiest time , than the worker would argue that they drive a little later . twenty years down the lane , every major city would end up being a pile of metal junkyard , with no place to move around . For example , in this genaration , people watch movies and listen to music more than read books and novels . In malysia there are a lot of cars . So they are free to do all sorts of things , even if thez are cinsidered dangerous or irresponsible , such as bungee-jumping . In my opinion , many people would like that in this busy world , but I do n't thing it will happen within the next twenty years . Every one would expect to live on his own and secret dreams like to be a painter or a writter . This would have definately required him to take out immense amount of time from his work and stands as a perfect example with whom the youngsters of today can relate to . I thought it was kind of ridicurous , but we have to do as tour guide said . An example that would make this categorization problemmatic is an architect . And also markting can do some adjusting about the changes . In my essy , i want to focus on how impotant it is for students to learn facts . Ironically , the studens 's ideas have many advantages . and you can have a chanse to make yourself into a helpful person . He or she would not be able to discuss spesific problems just because he does not know them . By the same token , people will learn many different intelligences by doing many things , but they just learn its appeals and do n't get any crutial information or wisdom from them . New experiences to somebory is the same as a challenger and the challenger is moviment , which is the rason that some people have continued to live . our social will be a lovely social , If the dram can come true i think we must learn more knowledge . This is the goverment rule that they have to completely attand this seminar . Without empirical evidence , the learner tends to forget all the information he or she has learned throuhout the learning process in the long term . Court coats are very high and many desputed tickets are seen . an effective response will contain a minimum of 30 you will be satisfiy culture experience and fit your test . that 's why centralized attributes and business owners reducing thir business is not responsible for the rise of factories . second , birds navigate by landmarks like rivers , coastlines , and moutains . Unfortunately , in most of the countries , the functioning of public transport is not perfecty organised . The public transpotation in the city may not be able to cope with the huge amount of people flow . This does n't mean that because you take risks you are going to succed . one of the most important problem is accidents for sure everyday millions of people dies jus because of the drivers not being carefull as a matter affect i do believe that there will be less cars in twenty years but this will happen just for one reasen that we will use somethink else . Can you ever visualize what chaos our society would suffer if every individual considers himself/ / herself an expert in every given field ? In this sense , I would introduce the concepts of two aspects with a datailed analysis , and then come to a conclusion . In my case , my yonger brother needs more than academic knowledge . I larned many kinds of subjects , also I could make different types of friends . you have to teach your child until they graw up . For example , If students have to study for history , it is often enough to just learn the facts ; on the other hand , studing for physics or math , one needs to understand the concepts . Obviously the irreplaceable examination and less enemy can bring huge advances to fulfill the defination of success . Young people nowdays do n't give enough time to help their communities . And one of them was my friend who had seriouse prblems with her health . I had a good life in my cauntry , but everything I got from my patents . But if the student is going to only learn things whithout knowing the concept , then no company is going to give an apportunity to that person because he does not know the concept of its related branch , so by this way it creates a problem in the future . It results in people more mature , strong and calm in front of problems in life , because they undertand that problems go away and it depends on what kind of manner everybory looks at the face of the problem . this speace must change into a gerden . However , people exist that thing when people have forty years ever an older person . It is worthy to note that not every body will succeed when taking a risk , but that is not enough to deteir anybody who wishes to take one . apparently , I got a friend in Japen , his name is Tomo . With the gasoline tax rasing , it would entice the vehicle company to make more cars to sell to people . Ignorance of striped bass will abbreviate our earning , also it has some astonishing effects on our health . Although there are some rules to protect young people , such as age limits for movies and previews reviewing the bad aspects of programs before they air , the rules are only made for little kids , not young peole like those in high school or universities . For the greeks , philosophers Plato and Aristotle , the capacity for understanding ideas and concepts and the intelligence as the main ability of the human soul , are the parts of ourselves that make us the being we actually are . But it is possible to have a broad knowledge of many academis subjects without being specialized in one particular topic . This demonstrates the undeniable fact that it is bebeficial to have differnt experiences . Travelling in a group helps us to make our trip more productive , especially with a tour guide . To be sure , we Japanese take a large part in destroying the enviroment because we consume the most wood . So i asked my student , how did he think about my lesson , and tried to find out where the proublem it is . Second , the rouds can not be damged because when taxes are raised there will be fewer cars . This will definitely cause some promblems . In America , a lot of families have more than one car and futhermore some of them have three or four . Most of us will understand better when the ideas and the concepts of the war is shown and we can get very exited with it . First of all , He argued that America will not ignor the `` ecocertified '' as there are so many advertised now . But factully second , It needs to experiance . Therefore the french revolution happend in the middle ages in Europe because of those reasons . This will help to creat brotherhood . By trial and error , I succeedded , which made me feel very good about myself . And the presidents of a compeny lake Toyota or Ford are successful because they know how to start ther compeny and make smart things . The lecturer shows a different angle of the systm . Scond , Menzied points out that chinese ships in the 1400 's used very distinctive anchors that were round stones with a hole in the middle . In a group trip , we are forced to follow the goup time schedules . Help others and make a confortable home for all . I can remember that from a alecture I iattended . television makers just hang academic titles on their program . Even through everthing , when there is life , there is hope . However , Bill Gates improved people 's lives and provided them the opportunity to live more comfortable than ever . The availablity of jobs to the candidates having specfic knowledge is less when compare to the all round perormer . It is not worth it to jump in a pool without knowing how to swim because you may not be able to breath again . Another thing is that advertisements always show and indicate prices on commdities , alowing consumers to budget well in order to be able to buy them . They come together for a 'LAN-party ' with the neighbour 's kids . we simply need to eat , buy clothes , make and rise a family . This happens more when one is watching a movies with the family . if someone does n't know , eating is very important for growth , bons and brain , and in general for the body . it is a fact that eating is just useful . Advertising can be used badly not only by corporations but also by governments , as for exemple , the nazi regime . Such peole impressed others through their strong well and devotion to duty . however , I firmly believe that traveling with a guider is quite beneficial because of it 's possible to travel many places in a short time and the safety . i have studed for just examination . Adults are content to send their chirdren to school to experience these different kinds of classes . The inability to do desired things makes olders unhappy . However , I want to go to the U.S.A so that I can study and life in the country of my dreams ; I want to have a family so that I never have to be alony . I do not know any American teathers , but some Japanese teachers just speak about facts during class hours . Because of this , I prefer studying concepts and ideas more thad learnig facts . When someone has more than one academic subject , it would be more amazing , interresting , positive , great , and helpfull . the preferrences of a young person and an older person might differ for them to fully enjoy their lives . It has some problems that can effect humens . It mentions how it has reached to some oarts of North America . Many people think that the treasure never existed , but in reality it exits . Even if they use buses , whtch are big cars , the fact is that people taking the bus still reduces the number of cars . Nowadays many people study the way how advertisemets increase sales and why our behaviour is influenced by what we listen to , or what we see , on television . In this way , a person always feels original and `` modern , '' not `` ancient '' like the people that surroand him or her . as a conclution you are not atracted totaly by the product , but by the lifestile that this product will give to you . In twenty years , they also can give us better cars that use fewer resources , and give us much more convenient tools for travelling . due to this new product being a floop in a market . I do not gree that people with initiative will take risks more than those who do not . For example , during the traffic jam , if the transit ca n't accomodate such a large amount of people , how would the clerks ? new gerrthion prefers to use public transportation ; this is why now thay think in tewenty years there will be less car use . travelling by youself is very good for your fulture . Nowadays all the upcoming graduates are just muddling the subject ; mostly 70 % of subjects just learl . For me there are few very friends or cklassmates that would be better as a friend . Attendence does not mean that teenegers are fully participating in class . In studing the processes underlying biochemical pathways , a knowledge of biochemistry is required , which is an integration of biology and chemistry . when talking to the employed the company should not knowa . it contributes to air pollution and the temperature arising . For instance , the birds are not usually trying to remeber the subjects what they have passed by , such as a stone , a building , or even a small house . So it means that there is no certain way that migratintg birds find their way home . For exammple , i prefar to specialize in public relations which helps me in my personal life , and how to treat other people . First is how to release the drugs as quickly as possible in order to sell them faster and make money faster , but goverment requeres a certein amount of testing to be done before the drug is reliased , so that pushes back the date of the drug release . So it depends on the defferent bodies ' nature . we should plant some species that are stonger and more likely to live than other plants . Because it rains more , and the plants grow well , so the Puebo can make full use of it . Additionaly , popular movies , stars , or famous people in advertisements attract people . Let us think of music as a metaphor for all the areas of knowledge , and the different instruments as metaphors for all the seperate disciplines . Billions of peple use it every day . Many people have many reasons , like to see things abroad or to have diffrent experiences , but their purposes have something in common . We alwayse joke around or do something stupid . Last but not least , zenra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . Therefore , we think to ourselvese that taking care of society is the most important thing to do . The population explosion is another factor catalysing the consumption of energy resources . people have great brain capacity to learn and gain knowlege , so it is easy to gain general knowledge about everything . As I see it , there will be a lot of research done in the future to find alternitive , environmental-friendly , energies as well as cheaper energies . bacause I have broad knowledge . If everone in the city uses their own cars , the city will be seriously polluted by the smoke . It is , rather than to give them strong medicins to them . Fourtunately their topic becomes more clear by using this many concepts provided by the books . Secondly , they have the confidence that the new way will be another way to improve a mechanis . also , it saves your time and makes you satify this journal . they are the boney and vital part to society . If older people are more accepting to changes , their lives will becom better . Every house nowdays has a computer , mobile phone , etc . , and this is the thing today 's man wants to live . I will describe those two main issues : to meet the modern socity 's needs and to be eligiable candidates for some companies . These surveys also demostrate how much young men , and women , are not aware of the improvements they could afford if they were able to really put themselves in an effective position within their communities . as a contradiction of this the professor said that dicease study is not designed very well . Sometimes , it is very comportable , but it 's not important for me . If they teach them , they will never forget and it is benefitial for our country . For instance , when I was in elementary school , I learned mathmatics formulas without concepts . that would be a frequently asked qeuestion , so to answer this question we should be aware of the facts . It is more important for theme to understand ideas and concepts than it is for them to learn facts . Rather than keep his investment within the confines of the oil bussiness where he is the master , he went ahead with his new plan . students may not anderstand a fact very will until they understand the idea and concept related to the fact . For exemple , it will be easier for people to concentrate on a subject such as geology , having a broad knowledge of many academics , than to try to concentrate on geology after having studied litterature . After an official training course , we helped the patients bath , talked with the elder people who lived alone , and helped the organization hold activities during special occasions like mother 's day . You can buy a vavilla cake in a fine store and another vanilla cake at a regular store . some guider is not sure about the information . Developing communities want to build more modern duildings . I strongly believe that in twenty years there will be fewer cars in use than there are today because of the damage decrements and technology replacment . It is possible that with the energy problem , people 's live style will be changed . For example , When I was in school my Geography book presents `` Ploto '' as the last planet but recent studies posted that `` Ploto '' is not a planet at all becouse of different characteristics . For example , in Korea , teachers teach something and students learn what teachers are saying without dissussing with students while in class . First , we can protect our enviroment by saving oil and gas . And I completely disagree with what the auther wanted to say . I advice all people to always keep smiling and have fun in this wonderful life god gave us . Anther reason to joing a big company is job security . Indeed , on the one hand , there are obviously signs that cars are doomed to be less and less baught by people . Although we do n't have good grades , we have tallent in other things . To maintain the more valuable products , they have to sometimes use strategies to keep the clientele 's enthousiasm high . For example banks have many very specialized departements . At this time , my opiniom is that young people enjoy life more than older people do . They do n't have to read spacific books and articles just because they love the topic . It is not bad if you know it , it means that your intelligence is high but a doctor has to be absolutely good at safing and helping ill people . If , however the students will only put conepts and his/hers or someone else 's ideas or concepts , which can be mistakes will make the professor think if the student actualy did what was asked from the assigment . We can just hope that those cars will have a new motor generation wich will pollute less . When I watch TV , listen to the radion . After he graduated from his universty , thanks to his software skills , he can get a job easily and become the best in his field . but the professor refutes the idea by illustrating some tested resulta from research condcted by an oil that is not taken arouend the world . In my opinion , i agee with the statement that most advertisements make products seem much better than they really are . there are two crucial facts : no particles from asteroid explosion , area of the astroid and meteorite of explosion . First of all , you will know a lot of things about this subject because you do not have anything elss to do . However , people who have not joined the event , seem like , are the winner because they forgot the event was ealy . Second , critics argue that many cases of placebo -induced improvement that took place only at a psychological level . Second , he says the strong prpperty rights dveloped from the factoriy system and not vice versa . Also , it is more comfotable to move . Comming to atmospere and nature are both the same . I think that talking with a person who has a different mother tongue compared to me is the best way to learn a new culture and language , however there is any chane to meet them . This fast pace economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and imroved lifestyles for individuals . I want broad knowedge of many academics . The important thing about this case is , each countrey has to use an official solution for their learning problems . for example , a researcher that wants to be successfull must take risks . The leg of all modern endotherms are undernearth its body . Second , the high cost of drug testing finally lead to the cost of the unit drug cost being higher than produing it . However , the lecturer says that the vague location was described because the antient people wanted to keep the location of the treasure a secret . But , on the contrary , he argues thlat fluoride also has some disadvantages . For exsample , I like to go to a big city like New York . Everybody knows sports can improve our body , But we need try by ourselves than we will know , yes , sports really can help us get a health boay . Thus , we can easily remember this formura without spending exstra enersy and time. it is still usefull to me . Becaus we need food . He will be mature enough to take wise decisions in expanding his business and trying out new things . The personn takes the bike , goes where he wishes and leaves the car at the closest bus station . I am going to anothere country . The youth today are aware of their responsibilites as a citizen . But I disegree with this opinion because often the advertisement does n't speak about only the functionality of the product , but it promises other characteristics that do n't depend on it . it gives him many opportunities in life and i think that being a knowledgeable person is a very wouderful thing to have so we can spend our lives in a successful way and full of happiness . In other words , the image in the TV comercial is the most important point that the watcher helps to determine whether he/she will buy it or not . So I think we could not live if older people did not develop science and tecnologies . Imagine that you wark in a factory and do just one thing , like put tires on cars ; if they fire you , they will destroy you becouse you do n't know how to do anything but put tires on cars . It is true that consumers preffer to buy a product that has a lower price , but when international companies that already have the certification begin to send it to market , people will preffer to buy theirs because the difference between prices is probbably not going to affect them too much . And young people spend more time on ther lifestile . Students can focus on only a few subjects they are intwerested in and they will become experts in those areas . He thinks differently than other people and he succeded . Because all that broad knowledge helps they to understand their majors in university and also helps they to make the correct choice in specialized study . Then when we went to the Science Olympiad , she had diverse knowledge about the subects as it was not unusual for her to think about new things . If every person seeks to learn and understand many scientifc subjects , and anyone can or ca n't do it , then the result will be that science wo n't improve . soon they will run out , based on the current rate of utilisation . Second , the place that is being filmed must be very clear and the chir must be relaxed , etc . and will put your maind on a non-stop learning ... today , Compuer skills are the most important life skill . I have never stopped to think about this , but this is a real possibility for the fucture . If we conseder an idea as a totally autonomous concept within the individual process of defining reality , I believe that ideas are useless , because they are not based on experience . If there are specialized docters , it means that the docter has done the operation many times before and is very talented at his job . So It will be a good situstion . the school teachers they 're the ones who take the future youg generations so we have to support them to make younger ones more knowledgeable . but most of the time it is important because most student do not do baly and their thoughts and ideas are very important . some tour guides will want to ensure maximum security , which will make the tour difficult because you will only have a wonderful view throught a bus window . Because if one time you are successful , then the next time -- will , why not ? this shall effect the exams . But on the other hand , ther are also people that are often convinced by the interesting advertisements they see everywhere , and because of this they often face problems with the products they buy and many times ther is no way to return that product . Ever increasing competancy rates force them into frequent business model changes for compatible transitional flexibility . The placebo effect is not an illusion but real , so the drug was effected by the placebo effect . Many Scientists obtained clear results from the investigations after the facts were on the table but before they even began to theorise about them . They want people to understend thet the product is the best and you can really trust it . Video is convenient , but for teachers concerned about their students , the use of texetbooks provides students with good abilities . In my opinion , it is dependend on a particular person . for example , when we talk about speed , they must anderstand why it is dangerous ; it is beteer than learning after they have an accident . Therefore , peaple will be able to live with the automobile sosiety and the nature for the future . Marco Polo spoke the Persian langage , not Chinese or Mongolian . finally , the third reason is that that birds use a type of internal compass ; birds have crystals of the mineral magetite embedded in their beaks . This arguement is not only true now , it has been for ages ; i want to talk about a live example , Sir . -Learn ! Therfore , we have to reduce sulfur and nitrogen dioxide . Maybe in the beginning , but after some timer other animals in the environment will choose them as their new food . Furethermore , the professor denies reading the passage stating that treasure does not exist and is just fiction . knowledge also plays an important role in life , and can be aquired by understanding concepts rather than just learning things . And the critica made a few arguments . Besides , young people uaually like latest fashion things , like ipod or mp 3 , I can see that a large part of young peole ca n't live happily without music in their ears and movies at home . Producing vehicles that are more fuel efficint will cause costly damage to roads . some say this product is recomended for the most important doctors , or something like that . This creates pier pressure . For example , last monthe i bought a product for my skin and , actully , i bought the product because the advertising for it got my attention . Newer vehicles may someday fly in the sky , and then we wo n't be annoyed by trafic jams . It is very obbvious that more cars will be sold there . Also , the food chain becomes more stronger that it was before , such as rabbits and hares . For the elderly , the only function of the phone , in some respects , is to do a job , a project , an implement on wich a master can call him to do a job . According to me , in order to start a career with success it`s importand to have a solid base , that means knowledge and experience . Yes , that 's right , but there are some young people who are idealistic about this country , about their comunities in Indonesia , about their friends who ca n't eat and who ca n't go to school . Techology has grown so fast , because everyone tries to work on an invention due to some idea they have developed and concepts that have been applied to this idea from different subject areas . Governments use that money for public use and safty . I stated to have an interest in math and spent lot of time solving math problemes , and when I got a good score on the exam , I became more passionate about math . he has a lot of money and name but no family life . Broad knowledge on may subjects is not possiable to acquire . To my surprize , nothing happened . It usually makes them more postive about doing it . both advertisements state that these toothpastes will make your teeth briliant and brighter . The advertisement says that the car has space for 1 0 people when the truth is that the car just has space for 4 people . another example is an advertisement of skin soap that says the soap is the best because your skin will be as soft as the skin of a fifteen-year-old princess or Jennife Lopez . He will consider himself losing the years he spent colecting money . There are many people that do n't think before take a choice . Third , although the reading passage claims dinosaurs , because their bone structure is similar to endothermy , but scientists assume that it is not the case . The Actual market requires a more specific knowledge that broad knowledge . Only by braking out of your normal life can you discover new perspectives in your job and your private life . Fish firming uses lots of special products such as fish meal . Extending the example stated above , i can tell you that during the worst period of Amitabh Bacchan 's life , he was offered a chance to enter politics to take advantage of his publicity , and even though he was to be paid a great deal and was very much in need of financial support , Mr. Bacchan rejected this offer because he knew that was how polititians played with the imotions of common people . History has shown that realistic people can be more successfull . to understand how war develops , you should understand the ideas and cultural moviments of a particular period that helped to bring about the war . But , even if this student passes the course , he or she will not be a succesfull contracts lawyer in the future . The second one is to specialize in a specific subject that one has an interest in studing , so let us talk about this subject . After this effort , many companies across the world startet taking steps to get ecocertified . After the contruction in 1 9 0 8 of the first commercial car , the ford Model T , mankind has been shackled to the use of the car . Younger people are still trying to gain experince that olde people have already . Toy advertisments that target children are a good example of the way commercials can create a false image of the product . They need cars for many things , such as trasportation , entertainment , and business . Because of the requirement that men must serve in the army , many will have to sacrifise their preciouse time of youth . If scientists do something different , like modifying forms of carbohydrates such as gelatinized and nongelatinized carbohydrates , and incorporate this into fish feed , then fish may be utilized more than then were previously , thereby increasing chances of growth ; this will be appreciated by everyone . While it turned out that reaults from both experiences are the same , the method and the time that brings about the result are not the same . you do not need to be a hero in order to try new things , you just need to want it and know that any results will be a succes in getting you things that you want or helping you to learn . In such a situaction , there is no other way . SOME lucky POINTS , INWALL . in writting , it is difficult to show how someone is feeling , but the action on TV helps us to understand better than in a book . It is no secret that today 's market is a compitition maket and we are faceing this compitition in every field ; for example , if you choose a career in the software field and master that subject , than you can easily get a job . Because you share only a single interest , thus makes you a loner . Indeed , they can be refuced . if they need money for this perpose , they can do extra hard work . But by then , we have already bought the product and end up loosing money . if they do something well , they keep trying untill they know how something works and they think of what it might be useful for . Therefore , he likes to do arisky and strainge things , and he enjoys it . I belive specializing in one specific subject outweighs having broad knowledge of many academic subjects . In my opinion , if someone thinks one is more important than the other , why not focuse on one ? And people may feel more arkward when they hear that this is something that is still presently going on . When the forest catches fire , the wood turns down into ashes that contain potassium . in matter of fact , a lot of acadmic subjects can not be used separately . Access to a car is very important in every day life in the United States , as well as in many Latin American countries and thirdworld countries . Another sollution could be the development of more fuel efficient cars , wich might also be good for America 's car manifacturers , who would start to produce more attractive cars to sell to other countries . Therefore , the problem of running out of fuel is out of the question , thereby augumenting my argument that the number of cars will continue to rise and not decline . The First effect is grobal warming . So Ho Chi Minh city will develope . Peolple like to drive different types of models and they want something extra in them . That 's why it wo n't be hard : i am alon . Successful People will explain any oher mater and discuss any problem . But it is dengerous because some drivers make trouble with other drivers and they when some driver crashes their car , the streets become busy . nobody can creat a problem with this type of literature because it is already fixed data . Also , the professor indicated we should be carful when using prescribed fire as a solution . To put it simple , they said they lost their appeal . Critics of this policy focus on three poins ; first , Yellowstone fires scorched a large area of land , resulting in the loss of a lot of plant species . In my experience , there are some lectures which are completely baed on facts , and the chance for me to apply them is rare . When you understad that ideas are one way that you can figure out about a statement , you appreciate these moments . First , I think that communities equal human rerationship . Like other people , I have seen many instances on TV where rich people are intrested in politica , sports , new technologies , and space . becase of studying in this way , of cours , I will gain so much , and will gain a lot of knowledge from the book I study from . When you understand the concepts and ideas , it is up to you to prove them and to see if they are really what you have been told , and i think this is the main reason that students prefere facts rather than understanding ideas and concepts . for example , if you are attempting to study arts and scienses and attain equalifications in both , you are an extraordinary student . So in this field , it is very important to understand all concepts and idease given to us and use them to solve problems . It is also about taking risks raher than only doing . Usually in advertisements a presentable face is used : modals , babies , popular athletes , to try to make the product look appealing . As we are all aware , when we we 're out something unexpected would happen : like catching a disease , having an accident , or something else that is n't planned . Third , the professor agrees that gas prices in the United States are cheep , and they should rais them to protect the enviroment and the health of people . People feel more secure and comfortable traveling in their own cars rather that taking several different forms of public transportation and reaching their destination later . I think it 's harder for a successful person to risk something -- thay coluld lose much more then others . So the importance of communities in sosiety decreased . At some point in time , they will have to face failures and a lot of strugles . Because it transmits the hebitats from Eastern Europe to different parts of the world . another reason is that many people see some exutic cars as luxery cars and this encourages the industries . It is also undeniable that if a man has diversifed knowledge , it would be immediately useful . rolling stones gather no mass , says the proverb . The Second differance between an encylopedia and the Internet is that there a lot of viruses and hackers on the web , and one of them can easily change the information about any kind of topic . If i want to win a case in court in , for example , a case where technical questions are to be considered- , it is not enough to know just about the law . successful people try to do new things , likr inventing a machine that can help people . they just creat such a good impression that people run out to buy them . And if there is knowledge in all areas , then it provides an added advatage to your knowledge level . That is because If I became a member , I could be highly esteemed among my friends . in my opinion , if you want be a succussful person , you should be brave enough to try new things and take risks . Who do we mach togather ? They explain the specific points useing the examples about dinosaurs ' behavior and physical faces . the lecture mentions Mongol court recods of the time . We do n't usually study these subjects very deaply . It would be a really wasteful idean . he usually bring a books and asks someone questions ; he wants to understand the bood . I do not want to go to the Effel Tower in Paris or The Statue of Liberty in New York when I travel , because they are too famous , so I already heard and saw about them . In this case , the advertisement totaly made an impact on that baby . Lastly , business owners thought factories would help reduce their overrall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderfull places . Really successful people gain their fortune by doing somethig new , something that no one else has ever done before ; their risk is doing something that nobody else knows how to do well . For example , when I was a freshman at Meiji University in Japan , my classmetes and I traveled to China . Second , many of the disadvantages of cars will decrease or even cease in the comming years , which will make them even more popular than at the current time . Today , drinking soda has become an adiction for many people . If you want to actally know someone , you should spend the whole day with that person , but if you do not , you should not even speak to that person . I think cars will not be completely replaced by new automobile innovations , but they will certaily be fewer in numbers . successful therapists need to know that one treatment can help one person but for another , it could be not approprite . we are also able to deal with any probles found with it . if he did one machine like that , he could do another one differently , but he does n't think he can because he does n't know his own habilities . sharing the cost of a vecation trip is a very good advantege for traveling . For exemple , you would work as a broadcaster , but in the office and city where you are now working . 1 7-5 0 people survey to requre all class and selective class . In olden times , familes tended to live in the same place for many years . I think that young peopie are not able to think deeply about the things like older people . My friends celebrated with a pary . For instance , when I was a university student , I reserched and reported on community history relating to groups . Thus , most of the habitants in the rural ereas are the older ones . This is very possitive for the company and he will probably get a better postion . On one hand , you have general practitioners who look at all the basic problems related to the body , while on the other hand , you have specialists who only take care of specific areas , such as an orthopaedic surgeon ( related to bones ) , a cardiologist ( related to heart ) or an ENT ( ear , nose , throat ) surgeon . The definition of yong or older is not apparent . The reason these problems occur is becayse of the exam . If he was satisfied with his situation and did not make an effort to outdo himself , not only would he not be rememberd as a great artist , but we also would never have been exposed to a lot of great music . He may fell afraid or terrible when the same thing happens to him . When older people think like that , it creates big problems with yong people . Some people said that the placebo was really the drug , and about 3 0 percent of partients agreed with this idiea . Afther that , they have to find a well-paid job . But about myself , I am going to it to too my brother alwys talks about it and i agree with that him And it does n't matter if the person who takes the riks has liked the results of all the things he or she has in mind ; the important thing is that they made all those things and they can prove they can do a lot of things in their lives , while always thinking of good results for theyselves and for the world . The cost of the undergroud is very cheap in some countries , such as France . For example , it happened to me when I studied the concept of inflaction . So let 's not lose hope , and let the scientists do their job , but i think being in a traffic jam is a stressfull situation that requires time and patience , and there are many other disatvantages related to the large number of cars . This is evidence that the company that made some products had to pay lots of money to the broadcasting breaus . In the 2 1st century , yong people can learn a lot of academic subjects . Movies and oher television shows provide a lot of information about how real life is . There are many ways to do this , and another example is a bottele of juise that tastes bad ; the bottle can have a wonderful shape or be made colourful . Many memories with enogh time to remember will increase the possibility of enjoyment . While the communities in general have reckoned that they need support from young people , they must have made their appeal in a reaonable way . if it does , you will get a mistaken idea about that acticle but not the intended idea . Secondly , chimp can also present the capability for grammer , which means it can demonstrate the ability to combine words and be able to use grammatical constructions . I think to learn facts is only effective if the students can work hard and they are able to keep every detailled information as tought , but it 's definitly not a measure of their intelligence . So , if i have a lot of information about this subject , i will taulk with too much knowledge but if i have only general information for this subject , i will talk with only my limited knowlege and in this case may be ashamed like when my brother asked me about something but i did not have a lot of information on the subject . becuse if i see that someone did somthing that may safe me time and energy and it works i will also do it . No other transportation concept has been as successful as the car , not only because of the goog street and highway systems throughout the United States and Europe , but also because of the fact that people love their cars . That 's why he is a legend these days and people repect him . On the other hand , when I was a freshman at my college , I could concentrate on my favorit subjects . When you 're making a trip with a tour guide , everything is already settled from the time you arrive until the time you depart . People tend to choose other types of media and that is why litterature is in danger . I am pleased to know intelligent peple and learn about things that I do n't know . With her salary we ca n't buy some cars because we are planing to finish our hause in Binangonan , Rizal and I am planing to finish my study in Boston . A person with broad knowlege will help him renovate . You can only be successfull by learning and trying new things , and by having an open and creative mind . I think people should travel by making decisions by themselves for sevral reasons . Or Else twenty years down the lane every major city would end up being a pile of metal junkyard , with no place to move around . For example , in this genaration people watch movies and listen to music more than they read books or novels . In malysia , there are a lot of cars . So they are free to do all sorts of things , even if thez are cinsidered dangerous or irresponsible , such as bungee-jumping . I think most people will like that in a busy world , but I do n't thing it will happen in the next twenty years . Everyone would expect to leave his own secrets dreams like to be a painter , a writter . This would have definately required him to take an immense amount of time off from his work and he stands as a perfect example with whom the youngsters of today relate . I thought it was kind of ridicurous , but we have to do as the tour guide said . An example that would make this categorization problemmatic is an architect . And also the markting can do some adjustment about the change . In my essy i want to focus on how impotant it is for students to learn facts . the studens and the ideas have many advantages : and you can have a chanse to get a person to help you . He or she would not be able to discuss spesific problems just because he does not know them . By the same token , people will learn many different intelligence by doing so many things but they just learn its appeals and not get any crutial information and wisdom from it . New experiences for someone is the same challenger and that challenger is moviment , and the rason that some people continue living . our society will be a lovely society ; If the dram can come true , i think we must gain more knowledge . This is the goverment rule that they have attained this seminar . Without the empirical experience , i think , the learner tends to forget all the information he or she has learned throuhout his or her learning process in the long term . Court cases are very high and many number of desputed tickets are seen . that 's why centralized , attributes , and business owners reduce thir business , which is not responsible for the rise of factories . second , birds navigate by landmarks like river , coastlines , and moutains . Unfortunately in most of the countries the functioning of public transportation is not perfecty organised . The public transpotation in the city may not be able to cope with this huge amount of people . This does n't mean that because you take risks you are going to succed . one of the most important problems is accidents for sure because every day millions of people die because of drivers not being carefull , as a matter of fact i believe that there will be less cars in twenty years , but this will happen just for one reasen that we will use somethink else . Can you visualize the chaos our society would suffer if every individual considered himself/ or herself an expert in every given field ? In this sense , I would introduce the concepts of two aspects with a datailed analysis , and then it will come to the conclusion . In my case , my yonger brother needed more than academic knowledge . I larned many kinds of subjects and also could make different types friends . you have to teach your child since he or she was anxious to graw up . If students have to study for history for example it is often enough to just learn the facts but on the other hand studing for physics or math needs the understanding of the concepts . For example , the subway in New York , bullet trains in Japan , underground tube trains in Singapore and the sky trains in Bangkok travel at lightening speed . Obviously the irreplaceable examination and less enemies can bring huge advances to fulfill the defination of success . And one of them was my friend who had seriouse prblems with her health . I had a good life in my cauntry , but I got everything from my patents . But if the student is going to be only learning things whithout knowing the concept , then no company is give an apportunity to that person because he does not know the concept of its related branch , so it creates a problem in the future . It results in people who are more mature , strong and calm in facing problems in life , because they undertand that problems go away and it depends on what manner one looks at the face of the problem . this speace must change into a gerden . It is worthy noting that not everyone will succeed when taking a risk , but that is not enough to deteir anyone who wishes to take one . apparently , I have a Japanese friend from Japen , his name is Tomo . when they do some work they think they have to fine work in time . As the gasoline tax is rasing , it will help the vehicle company make more cars to sell to people . Ignorance of striped bass will abbreviate our earning ; also , it has some astonishing effects on our health . Although there are some rules to protect young people such as an age limit at the movies and previews about the bad aspect of programs before , it is just made for little kids not young peole like high school or university students . We can be a fatalist and say that with the developing of the third world , the problem will get worsen . For the Greek philosophers Plato and Aristotle , the capacity for understanding ideas and concepts as well as intelligence being the main ability of the human soul , are the parts of ourselves that make us the being we actually are . it is possible to have a broad knowledge of many academis subjects without being specialized in one particular topic . This demonstrates the undeniable fact that it is bebeficial to have differnt experiences . government is rising the tax on gasoline . He was successful aleady in his fields of living electric equipment , but , he began to dominate new electronics technology and was successful . So both the lecture and the reading state that other archaeological monuments in the area are from the Kingdom period . To be sure , we Japanese take part in destroying the enviroment because we consume the most wood . So i asked my student what he thought about my lesson , and tried to find out where the proublem is . Second , the rouds wo n't be damged because raising the tax there will mean less cars . This will definitely cause some promblems . Most of us will understand better when the ideas and the concepts of the war is shown and we can get very exited about it . I could not give much time to any sports , so that i could be a great sportman . First of all , He argued that Americans will not ignor the `` ecocertified '' as there are so many advertisements now . But factully Secondly , It need to experiance . The french revolution happend in the middle ages in Europe because of that reason . This will help to creat a brotherhood relationship . And the presidents of companies lake Toyota and Ford ; they are successful because they know how to run ther compeny and make a smart product . but the lecturer shows different angles of the systm . Scond , Menzied points out that chinese ships in the 1400s used very distinctive anchors that were round stones with a hole in the middle . In a group trip , we are forced to follow the goup time schedules . Help others and make sure we all live in a confortable home . I can remember that from a alecture I iattended . Even through everthing , there is hope where there is life . However , Bill Gates developed people 's lives more comfortable than previos circumstances allowed . It is better to have a very good understanding and knowledege of many academic subjects because it makes you well-rounded and gives you chances and opportunities to work in different fields and environments . It is said that the zebra mussel moved from the bottom of the ship to the freshwather and devastated the environment . This implies that there can be instances were no such overstating takes place at all . And availablity of jobs to the candidates having specfic knowledge is less when compared to the all round perormer . adverts always show prices on commdities , alowing consumers to budget in order to buy them . They come together for a 'LAN-party ' with the neighbour 's kids . This happens more when one is watching a movies with family . if someone does n't know eating is very important for growth of bons , brain , or general for body , it is a fact that eating is just useful . Advertising can be used for bad , not only by corporations but also by governments , for exemple , the nazi regime . Such peole impressed others with their strong well and devotion to duty . For example , if the old person does not hear properly , then young ones right from the day of their cihildhood think of inventing something that can help the older people hear more properly . however , I firmly believe that traveling with a guider is quite beneficial because of the possibility to travel to many places in a short amount of time and the safety factor . i have studed for just the examination . Adults are content to send their chirdren to school to be in contact with these different kinds of classes . However , I want to go to the U.S.A so that I can study and life in my dream country , I want to have a family so that I am never lonely . I do not know about American teathers , but some Japanese teachers speak only about facts during class . Because of this , I prefer studying concepts and ideas more thad learnig facts . When someone has more than one academic subject , it would be more amazing , interresting , positive , great , and helpfull . Everything has changed now and life has becom more difficult . He knows how to draw a line between the diffrence of gambling and risk-taking . though the preferrences might be different for a young person and for an older person to fully enjoy their life . It has some problems that can effect humens . It mentions that now , it has reached to some oarts of North America . And I expect , if we lose quanlities of cars , we will protect our life , our environment , and we will not depend on the resourse of gas . Many people think that treasure never existed , but in reality it exits . Even if they use buses , whtch are big cars , the fact is people taking buses still reduce the number of cars . Nowadays , so many people study the way that makes advertisemets increase sales ; that is why our behaviour is influenced by what we listen or what we see on the television . In this way a person always feels to original and `` modern '' , not `` ancient '' like people that surroand him or her . as a conclution , you are not atracted totaly by the product but by the lifestile that this product will give to you . due to this new product , it is a floop in a market . I do not gree that initative people will take more risks than those who do not . during the traffic jam the transit clerks could n't accomodate such a large amount of people . and the new generation prefer uesing this transport , this is why thay think in that tewenty years there will be fewer car use . travelling by youself is very good for your fulture . But if I was trying to do all the sight-seeing without a tour guide , that would be very difficult and dangerous . For me , there are few very friends or cklassmates that would better as a friend . Attendence does not mean that teenegers are fully participating in class . In studing the processes underlying biochemical pathways , knowledge of biochemistry is required , which is an integration of biology and chemistry . when talking to employment , the company should not knowa . For instance , the birds do not usually try to remeber the subjects which they have passed by , such as a stone , a building , or even a small house . So , it means that there is no certain way about how migratintg birds find their way home . Who can say no to a business that can make your life safe ? For exammple , i prefar to specialize in public relations , which teaches me in my personal life how to treat other people . First is how to release the drugs as fast as possible in order to sell it faster and to make more money faster , but goverment requeres a certein amount of the testing to be done before the drug is reliased , so it reduses the date of the drug release . So it depends on the defferent body nature . Because it rains more and the plants grow well , the Puebo people can make full use of it . Additionaly , popular movies stars or famous people in advertisements attract people . Let us think of music as a metaphor for all the areas of knowledge and the different instruments as metaphors for all the seperate disciplines . Billions of peple use it every day . Different people have many reasons , like to visit abroad and have diffrent experiences , but their purposes have something in common . We are alwayse joking around or doing something stupid . Last but no least , zenra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . They understand ideas , and the concepts help students learn about many subjects and acccept good education from information they have . Therefore , we think ourselvese that mental care of society is principal to it . but after while they found out it 's not true . Although , people have great brain capacity to gain and learn knowlege , so it is easy to gain general knowledge about everything . As I see it , there will be a lot of research done in the future to find such alternitive energies , which will also be environmental-friendly , as well as cheaper . the experience of painting gives me many new abilities in filmaking . It is bacause I have broad knowledge . If everone in the city uses their own cars , the city will be seriously polluted by the smoke . It is this , rather than to give them strong medicins inside them . Fourtunately , their topic becomes more clear by using a lot of the concepts provided by the books . Secondly , they have the confidence that the new ways will improve a mechanis . they are the most boney and vital part to the society . If older people are more accepting of changes , their lives will becom better . My personal perception is that such a behaviour is damaging to a young person 's personality , since it promotes uniformity and conformity rather than creativity and innovation . Every house nowdays has a computer , mobile phone , etc . , these are the things today 's man want to live with . I will describe those two main issues : to meet the modern socity 's needs and to be eligiable candidates for some companies . These surveys also demostrate how much young men and women are not aware of the improvements they could afford if they were able to really put themselves in an effective relationship with their communities . Sometimes , it is very comportable but it 's not important to me . If they teach them , they will never forget and it is benefitial for our country . For instance , when I was elementary school , I learned mathmatics formulas without concept . that would be a frequently asked qeuestion , so to answer this question we should be aware of the facts . It is very important for theme to understand ideas and concepts than it is for them to learn facts . Rather than keep his investment within the confines of the oil bussiness , where he is the master , he went ahead with his new plan . students may not anderstand facts very will until they understand the idea and concept that is related to the fact . This always challenges the consumers to buy a perticular commodity in order to satisfy their needs and wants in modern days . For exemple , it will be easier for people to concentrate on a subject such as geology , having a broad knowledge of many academics , than to try to concentrate on geology after having studied litterature . After an official training course , we helped the patients to bath , talked with the elderly people who lived alone , and helped the organization to hold activities during special occasions like the mother 's day . You can buy a vavilla cake in a fine store and another vanilla cake in the regular store . some guider are not sure about the information . Developing communities want to build more modern duildings . It is possible that as the energy problem change , the people 's live style will be changed . For example , When I was in school my Geography book presented `` Ploto '' as the last planet , but recent studies stated that `` Ploto '' is not a planet at all becouse of some different characteristics . For example , in Korea , teachers teach something and students learn while listening to the teachers without dissussing the lesson in class . First , we can protect our enviroment by saving oil and gas And I completely disagree with what the auther wants to say . Think about it , If you are 50~60 years old you always think about your health . I advice all people to always keep a smaile and have fun in this wonderful life god gave us . Anther reason to joing a big company is job security . To maintain the products value they have to sometimes use strategies to keep the clientele with same enthousiasm . For example , banks have many very specialized departements . At this time , it is my opiniom that young people enjoy life more than older people do . They do n't have to read spacific books and articles just because they love the topic . It is not bad if you know it , it means that your intelligence is high but a doctor has to be absolutely good at safing and helping ill people . If , however , the student will put only conepts and his/hers or someone else 's ideas or concepts , which can be mistakes , will make the professor think if the student actualy did what was asked from the assigment . We can just hope that those cars will have a new motor generation wich will pollute less . When I was watching TV and listening to the radion . After he graduated the universty , thanks to his skill of software , he can got a job easily and he became the best in his field . but the professor refutes the idea by illustrating some tested resulta from research condcted by a oil not taken from arouend the world . The old teaching system is a fair system because it treats teachers on education , teaching skills , and Finall one of the most important things is teaching experience . In my opinion , i agee with the statement `` most advertisements make products seem much better than they really are . '' there are three crucial facts : no particles are from asteroid explosions , the area of the astroid , and meteorites from explosion . First of all , you will know a lot of things about this subject because you do not have anything elss to do . Second , he says the strong prpperty rights dveloped from factoriy systems and not vice versa . Also , it is more comfotable to move . Comming to the atmospere and nature are the same . This fast paced economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and imroved lifestyles for individuals . I want broad knowedge of many academic subjects . The important thing about this case is each countrey has to use official solutions for their learning problems . for example , a researcher that wants to be successfull must take risks . The leg of all modern thermodynamics are undernearth it 's body . Second , the high cost of drug testing finally lead the cost of the unit to be higher than the cost of produing it . However , the lecturer says that the vague location was described because the antient people wanted to keep the location of the treasure secret . But , on the contrary , he argues thlat fluoride also has some disadvantages . For exsample , I 'd like to go to a big city like New York . Everybody knows that sports can improve our body , But we need try by ourself than we will know , yes , sports really can help us get a health boay . Thus , we can easily remember this formura without having spent exstra enersy and time. and it is still usefull to me . Becaus we need food . He will be mature enough to take wise decisions in expanding his business and trying out new things . The personn takes the bike , goes where he wishes , and leaves the car at his closest bus station . And I 'm going to anothere country . The youth today are aware of their responsibilites as a citizen . But I disegree with this opinion because often the advertisements do n't speak about the only functions of the product , but it promises other characteristics that they do n't deliver on . it gives him many opportunities in life , and i think that being a knowledgeable person is a very wouderful thing to have so we can spend our lives in a successful way and full of happiness . In other words , the image in the TV comercial is the most important point that the viewer can determine whether he/she if it is or not . So I think we can not live if old people could not find science and tecnologies and they did not develop . It is true that consumers preffer to buy a product that has a lower price , but when international companies that already have the certification begin to send it to market , people will preffer to consume theirs because the difference between prices is probbably not going to affect them too much . Many studies over the last 5 0 years have shown that people who have fluoride in their drinking water are considerably less likely to have cavities than people who have nonfluoridated water . And young people spend more time on ther lifestile . Students can focus on only a few subjects they are intwerested in and they will become an expert in those areas . He thinks differently from other people and he has succeded . Then , when we went to the Science Olympiad , she could have diverse knowledge about the subects and it was not new for her to think about new things . If every person tries to learn and understand lots of scientifc subjects , the result will be improvements in every science . Very soon they will run out at the current rate of utilisation . This will help you put your maind on non-stop learning . In today 's world , Compuer skills is the most important life skill . I never have stopped myself to think this , but this is a real possibility for the fucture . He/she wants to know everything about the universe , everything about God , death etc. these ; some concepts that everyone a lot of ideas but the facts are not found yet . If they are specialized docters , the docter has done the operation very often before , so he is really talented in his job . So It will be a good situstion . These are several opposing points I observed between the lecture and passage . this shall effect exams . But on the other hand , ther are also people oft convinced by the interesting advertisements they see everywhere , because of this , they frequently have to face problems with the product they bought , and many times ther is no way to give back that product . Ever-increasing competancy rates force them into frequent business model changes for a compatible , transitional flexibility . However , this reading passage casts douts on the speaker 's mention . Many Scientists obtained clear results of investigations after the facts were on the table , and before they could even begin to theorise about them . They want to make people understend thet the product is the best , and you really can trust it . Video is convenient , but if teachers care about students , using texetbooks works better for students . In my opinion , it is dependend upon the particular person . for example , when we talk about speed , it is beteer if they understand it is dangerous instead of learning from an accident . Therefore , peaple will be able to live with the automobile sosiety and nature in the future . Marco Polo used the Persian langage , not Chinese or Mongolian . finally , the third cause is that birds use a type of internal compass , so birds have crystals of the mineral magetite embedded in their break . Futhermore , a tour guide will provide safety and security for the traveller , since they already know the do 's and don'ts of the tour . This arguement is not only true now , it has been since ages , i want to talk of a live example of Sir . -Learn ! There are very successful politicians that have never tried somthing new . Therfore , we have to reduce sulfur and nitrogen dioxide . Maybe at the beginning , but after timer other animals in the environment will choose them as their new food . Furethermore , the professor denies the reading passage which states that treasure does not exist and that it is just fiction . knowledge also plays an important role in life as well , which can be aquired by understanding the concepts rather than learning the things . And the critica use few arguments . Besides , young people uaually like new-fashioned things , like i-Pods or mp 3s , I can see that most young peole ca n't live happily without music in their ears and movies at home . Producing vehicles that are more fuel efficint will damage roads and that will cost a lot to repair . some said this product is recomended by the most important doctor , or something like that . This creates pier pressure for people . For example , last monthe i bought a product for skin , and i actually bought the product because the advertising got my attention . Newer vehicles would be something if they could fly the sky , then we need n't be annoyed about trafic jams . the child spends about five hours or less with his parents , and whenever that child wants to go out he will probably go out with his friends , who are his classmates , so most of his school life will be spent with his classmates , and this will have a great affect on his personality , which in turn will determine the way the child will act at school and spend his life . It is very obbvious that more cars will be sold there . Also , the food chain becomes stronger that it was before ; examples include rabbits and hares . For the older phone , the only function , in some means , is a job or a project , so it 's important wich master calls on him with the related jobs . In my opinion , in order to achieve success with the carrier it 's importand to have a solid base of knowledge and experience . Yes , that 's right but , there are some young people who people think about the idealism of their country , about their comunities in Indonesia , about their friends who ca n't eat and who ca n't go to school . Techology has grown so fast because everyone has been trying to come up with an invention based on ideas they have developed and concepts that have been applied to these ideas from different subject areas . Facts are learned from experinces . bass is not the only predetor of menhaden , so if people catch more bass , the population of other fish will also increase . In fact , we will need a lot of places were we can park all these cars , and we will need to do a lot of projects to deal with this increase in cars . The Government uses that money for public use and safty . I stated to have an interest in math ; I spent a lot of time trying to solve math problemes and when I got a good score on an exam , it made me have even more passion about math . he has a lot of money and name but no family life . It is not possiable to acquire broad knowledge on many subjects . The lecturer , against the authour 's insistence , followed reasons . To my surprize nothing happened . It usually makes them be more postive about doing it . both advertisements said that these tooth pastes will make your teeth briliant and brighter . The advertisement says that the car has space for 1 0 people when the truth is that the car has space for only 4 people ; another example is an advertisement for a skin soap , they said that this soap is the best because they say your skin will be as soft as a fifteen year old princess ' , or that your skin will be as soft as Jennife Lopez 's . He will consider himself losing the years that he spent on colecting the money . First of all , old houses are not necessarily suited to the needs of mordern residents . Actual market requires more specific knowledge that broad knowledge . Only by braking out of your normal life can you discover new perspectives in your job and your private life . Fish firming uses a lot of special products , such as fish meal . Extending the same example stated above , i can tell you that , during the worst period , Amitabh Bacchan was offered the opportunity to enter politics to take advantage of the publicity that he had gotten and paid heavily for . Although he was very much in need of financial support , Mr. Bacchan rejected this offer only because he knew how polititians played with the imotions of common people . Realistic people can be more successfull , as we can see from history . Alternatively , the Reading passege emphasizes an alternative to prescriptive burning by defining the turm " disking " the fire as clearing out dry and dead shrubs to stimulate the growth of new plant life . The second one is to specialize in one specific subject ; one has his own tast in studing , so let us talk about this subject . After this effort , many companies in the world startet to take action to get this eco-certification . After the contruction in 1 9 0 8 of the first commercial car , the ford T , mankind became accustomed to the use of the car . Younger people are still trying to obtain experince , although the old have it already . Take toys , for example ; advertisments that target children in particular are the best example of the way advertisements create a false image of the product . They need cars for many things , such as trasportation , entertainment and business . Due to the requirement that men join the army , they have to sacrifise their preciouse youth . While the final reaults from both experiences are the same , the method and time to achieve the results is not the same . Because you do not need to be a hero in order to try new things , you just need to want them and know that any result will be a succes in things that you want to learn . In such a situaction , there is no other way . Even the magnitides on Mars provide no evidence of life on Mars . we are almost unable to show the felings of people in writing , but in action on TV we can understand feelings better than in books . Everybody knows that the reality today is a competitive maket , and in each and every field we face compitition ; for example , if your chosen career is in the software field , than you have to master the subject to easily get a job . Because you share only a single interest , thus makes you a loner . Indeed , they can be refuced . but if they need money for this perpose , they can work extra hard . But by then we had already bought the product and ended up loosing the money . if they do something , they go for another untill they know how it works and what is useful to think of it . Therefore , he likes to do arisky and strainge things and he enjoys it . I belive that having specialized knowledge about a specific subject outweighs having broad knowledge about many academic subjects . In my opinion , if someone thinks one thing is more important than the other , why not focuse on the one ? And people feel more arkward about what they hear when this is happening as a current event . However , I woud prefer to travel by myself because with good preparation it can be filled with joy . the fact of the matter is that a lot of acadmic subjects can not be applied separately . Althogh some people say that the treasures have already been found . Another sollution could involve the development of more fuel efficient cars , wich may also be good for America 's car manifacturers since they will produce cars that are more attractive to other countries . Consequently , I agree that the statement regards three reasons : effecting someone 's view , being face-to-face with other people , and being the first time . Thereby , the problem of running out of fuels is out of the question thereby augumenting my view that the number of cars will continue to rise and not decline . The First effect is grobal warming . So , Ho Chi Minh city will develope . Peolple like to drive different types of models and want something extra with it . That 's why i will not be hard as i am alon . Successful People can explain any oher mater and discuss any other problem . But it is dengerous , because some drivers make trouble with other drivers and the driver might have an accident then the streets are busy . Because it is allready a fixed data , nobody can creat problems with this type of literature . This will reduce the pollution caused by the carbones from the cars . Moreover , they have to learn aboue advanced course material . Critics of this policy focus on three poins . first , Yellowstone fires scorched a large area of land and therefore a lot of plant species were lost . Based on my past experiences , some lectures are completely baed on facts , and the chance for me to apply that knowledge is rare . However , there are a lot of explanations about that the placebo effect does . I , same as other people , see many tims on TV that rich people are intrested in politica , sports , new technologies and space . for example , if you are attempting to study arts and scienses and get equalifications in both , you are an extraordinary creature . So in this field , it is very important to understand all the concepts and idease they gave us and use these to solve problems . It is also important to take risks raher than only doing . Usually in advertisements , a presentable face is used , such as modals , nice babies , or famous sportsmen , just so that the product looks better than it is . As we all know , when we are out , something we are n't expecting would happen , such as disease , accident or something else . Third , the professor agrees that gas prices in the United States are cheep and should be raised to safe the enviroment and protect people 's health . But they do things in a different maner than others , which makes them successful . I think it 's harder for successful people to take risks because thay coluld lose much more then others . So the importance of communities in sosiety decreased . At some point , they have to face failures and endure a lot of strugles . Because it transmits the hebitats from Eastern Europe to different places in the world . the other reason is many people see some of the exutic cars as luxery and this encourages the industries . It is also undeniable that if a man has diversifed knowledge , it would be used immediately . So , some people use cars only by moving somewher . And there are a lot of critics who are concerned that the reqired testing takes so long that it declines the value for patients . we know that prescribed burning should be repreated every few years , but its very expensive to pay for this every few years . The Second differance with the encylopedia is that there are a lot of viruses and hackers on the internet , and one of the hackers could easily change the information about any kind of topic . If i want to win a case in court , for example , a case where technical questions are to be considered- , it is not enough to just know about the law . the successful people try to do new things likr any machine that can help the people . Comsumers are not likely to buy a pair of trousers when the claim is that they will increase their capacity to fly . It 's rightly said , `` life is not about adding years to life but life to years `` . First , an advertissment made me buy something unplanned . they creat an impression so well that people are dragged to buy it . And if the knowledge is in all the areas then it gives you an added advatage to your knowledge level . But in my opinion , if you want to be a succussful person , you should be brave enough to try new things and take risks . Who we mach them togather . They explain the specific points useing the examples about dinosaurs ' behavior and physical face . the lecture mentions , Mongol court recods of the time . We do n't usually study these subject very deaply . They may go to the house , whitch the elderly person lives , and help to eat food and walk . It would be a really wasteful idean . However , I still believe that learnng facts are important for students . While you will be able to help each other and work together after gratuation from the university . he usually brings a book , and will ask someone something if he wants to understand the bood . It will be always be able to puls things for them . I do not want to go to the Effel Tower in Paris or The Statue of Liberty in New York when I travel because they are too famous ; I already heard and saw about them . In this case , the advertisement totaly makes an impact in that baby . Lastly , business owners thought factories would help reduce their overrall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderfull places . Really successful people gained their fortune by doing somethig new , something that no one else has ever done before , and that means that nobody knew how to do it well , so that was their risk . For example , when I was freshman at Meiji University in Japan , my classmetes and I traveled to China . Second , many of the cars disadvanteges will ceace or decrease in the comming years , which will make it more popular at the current time . Nowadays , drinking soda has become an adiction for most people . If you want to actally know somebody , you can spend the whole day with that person or place but if you do n't , you do not even speak to that person or even go there . I do n't think cars will be replaced completely by new automobile innovations , but they will certaily be in fewer numbers . Altough life is never easy , the age does n't depend on when you can be protected or prevented from bad things . we are also able to deal with the probles found with it . First of all , the lecture thinks that accepting the gas tax to reduce the number of gas consumers is not good for economics . It is a brillant idea , and you know that you are really good at working with small boys and girls , but you have to risk your work , your salary , and with this almost your life for an idea that may or may not work . Brifly , sharing the cost of a vecation is a very good advantege for travel . In order to get an ecocertification , many wood companies around the world have introduced new ecologically friendly practices . For exemple , you were working like a broadcaster but in the office and city where you are working . She knows just that what teacher has told her but no more . and Goverments will not provide a good public transportation system for many years later . In old times , familes tended to live in the same place for ages . I think that young peopie are not able to think as deeply about things as older people . My friends are to celebrate the pary . For example , when I was a university student , I reserched and reported about a community history in groups . Thus , most of the habitats in rural ereas are old ones . This is very possitive for the company and he will probably get a better postion . The identification as yong or old is not important . The reason these problems occur is also becayse of the exam . If he satisfied his situation and did not make efforts to overcome himself , not only could he be rememberd as a great artist but we also never meet many great music . He may fell afraid or terrible when the same thing happens to him . When older people think like that , it makes big problems with yong people . Some people say that placebo is really a drug , about 3 0 percent of partients agree with this idiea . Afther that , they have to find a well-paying job . But as for myself , I 'm going to get to my brother alwys talks about it and i agree with that his knowledge . It does n't matter if the person who takes the riks gets everything he or she has in mind because what 's important is that they made everything and they prove that they can do a lot of things in their lives , always thinking positive for theyselves and for the whole world . The cost of the undergroud is very cheap in some countries , such as France . For example , it happened to me when I studied the concept of inflaction . So lets not lose hope , and let the scientists do their job . However , i think being in a traffic jam is a stressfull situation . it requires time and patience , and there are many more disatvantages about the large number of cars . for example , there may be elderly travelers who may cause slow movement due to their unability to walk fast . In the 2 1st century , our yong people can learn a lot of academic subjects . Movies and oher television shows provide a lot of information about real life . There are many way to do this ; for example , if a bottele of juise tastes bad they make the shape of the bottle wonderful , like making it colourful . A lot of memories , with enogh time to remember , will increase the possibility of enjoyment . Scenes of violence can have an affect on them . While the communities in general have recognized that they need support from the young people , they must make an appeal for it in a reaonable way . if it does , you will get some misunderstood idea about the acticle instead of the original one . Secondly , a chimp can also show the capability for grammer , which means it can demonstrate the ability to combine words and use grammatical constructions . I think that to learn facts is only proof that the students can work hard and that they are able to retain detailled information they are tought , but it 's definitly not proof of their intelligence . So if i have a lot of information about a subject , then i will taulk with too much knowledge , but if i have just general information about the subject , then i will talk about it with my limited knowlege , and this may cause me shame , like when my brother asked me about something but i did not have a lot of information about the subject . becuse if i see someone did somthing to safe me time and energy and it works , i will do it . People are now opening their eyes to the scenario where we would run out of fuel . No other transportation concept has been as successful as the car , not only because of the goog street and highway system throughout the United States and Europe , but also because of the fact that people love their cars . That 's why he is a legend in these days , and why people repect him . On the other hand , when I was a fresh man in my college , I could concentrate on my favorit subjects . When you 're making a tour guide trip , you have everything settled from the time you leave to the time you arrive . People tend to choose other media types , and that is why litterature is in danger . I am pleased to meet intelligent peple and learn new things . But these things seem too hard for old people since they hardly move and do n't have health bodies to play things like sports . On her salary we ca n't buy a car because we are planing to finish our hause in Binangonan , Rizal and we will be planing to finish my studies in Boston . A person with broad knowlege will help him with the renovation . You can only be successfull by learning and trying new things and keeping an open and creative mind . For example , if the city says that 8am~9 am is the busiest time , than workers would argue that they drive a bit later . For example , in this genaration , people watch movies and listen to music more than they read books and novels . In malysia , there are a lot of cars . So they are free to do all sorts of things , even if those things are cinsidered to be dangerous or irresponsible , such as bungee-jumping . I think most people will like that in a busy world , but I do n't thing it will happen within the next twenty years . Everyone would expect to leave his own secrets dreams such as to be a painter or a writter . This would have definately required him to take out an immense amount of time from his work and he stands as a perfect example with whom the youngsters of today relate . I thought that it was kind of ridicurous , but we had to do as the tour guide said . An example that would make this categorization problemmatic is an architect . also markting can make some adjustments regarding the change . In my essy i want to focus on how impotant it is for students to learn facts . Ranking the studens ' ideas has many advantages . and you can have a chanse to have a person help you . They would not be able to discuss spesific problems because they do not know them . By the same token , people will learn many different things just by doing , but they just learn its appeal and do not get any crutial information or wisdom from it . New experiences to somebory is the same as the challenger and challenger is moviment and rason for some people to continue living . our society will be a lovely society and If the dram can continue i think we will learn more . It is a goverment rule that attending this seminar is compulsory . Without the empirical experience , i think , the learner tends to forget all the information he or she has learned throuhout his or her learning process in the long term . By just knowing the culture of a different country that we are living and not born into , we wo n't be able to live . Court coats are very high and many desputed tickets are seen . you have 30 typically an effective response will contain a minimum you will be satisfiy culture experience and fit your test . that 's why centralization , other attributes , and business owners reducing thir business are not responsible for the rise of factories . second , birds navigate by landmarks like rivers , coastlines , and moutains . Unfortunately , in most countries the functioning of public transport is not perfecty organised . The public transpotation in the city may not be able to cope with the huge flow of people . This does n't mean that because you take risks , you are going to succed . one of the most important problems is accidents for sure - everyday millions of people die just because of the drivers not being carefull ; as a matter of fact , i do believe that there will be less cars in twenty years , but this will happen because we will use somethink else . In this sense , I would introduce the concepts of two aspects with a datailed analysis , and then it will come to the conclusion . In my case , my yonger brother needs more than academic knowledge . I larned many kinds of subjects , and I also could make different types of friends . you have to teach your child since he or she was until they graw up . If students have to study for history , for example , it is often enough to just learn the facts ; but on the other hand , studing for physics or math requires understanding of the concepts . For example , the subway in New York , the bullet trains in Japan , the underground tube trains in Singapore , and the sky trains in Bangkok travel at lightening speed . Obviously the irreplaceable examination and fewer enemies can bring huge advances to fulfill the defination of success . Young people nowdays do n't devote enough time to helping their communities . one of them was my friend , who had seriouse prblems with her health . I had a good life in my cauntry but I got everything from my patents . But if the student is only learning things whithout knowing the concept , then no company is giving the apportunity to that person because he does not know the concept of its related branch so by this way it creates a problem in the future . secondly , it is an unfair action because it will effect low income Americans . It results in people more mature , strong and calm before life 's problems , because they undertand the problems go away and it depends what attitude everyone has in the face of a problem . this speace must change the gerden . However , there are those that thing that when a person is forty years old they are an older person . It is worthy noting that not everybody will succeed when taking a risk , but that is not enough of a reason to deteir anybody who wishes to take one . apparently I have a Japanese friend in Japen , and his name is Tomo . when they do some work , they think they have to fine work in time . Ignorance of striped bass will abbreviate our earning , but it also has some astonishing effects on our health . Although there are some rules for protecting young people , such as warnings of ages in movies and previews about the bad aspects of programs , it is just made for little kids , not young peole like high school or university students . But is it possible to have a broad knowledge of many academis subjects without specializing in one particular topic ? This demonstrates the undeniable fact that it is bebeficial to have differnt experiences . The government is rising the tax on gasoline . He was successful aleady in his field of living electric equipments , but , his began to new dominant of electronics technology and was succeed . Travelling in a group , especially with a tour guide , helps make our trip more productive . When they got down to the forest then produced a fire . To be sure , the Japanese take part in destroying the enviroment because we consume the most wood . So i asked my student what he thought about my lesson , and I tried to find out what the proublem was . Second , the rouds will not be damged because by raising the tax , there will be far fewer cars . This will definitely cause some promblems . In America a lot of families have more than one car , and futhermore , some of them have three or four . Most of us will understand better when the ideas and the concepts of the war are shown and we can get very exited about it . I could not give enough time to any of the sports to be a great sportman . First of all , He argued that Americans will not ignor the `` ecocertified '' as there are so many advertisements now . Therefore , the french revolution happend in the middle-age in Europe because of these reasons . This will help to creat relationships like brotherhood . By trial and error I succeedded , which gave me a very good feeling about myself . And the presidents of companies lake Toyota or Ford , they were successful because they knew how to start ther companies and make a smart product . but the lecturer shows different angles of the systm . Help others and we will all live in a confortable home . I remember that from a alecture I iattended . Even through everthing , when there is a life there is hope . It is better to have a very good understanding and knowledege of many academics because it makes you broad and gives you chances and opportunities to work in different fields and environments . It is said that the zebra mussel from the bottom of the ship moved to the freshwather and devastated the ecosystem . This implies that there can be instances were no such overstating takes place at all . And availablity of jobs to the candidates having specfic knowledge is less when compared to the all round perormer . It is not worth it to jump into a pool without knowing how to swim since you may be unable to breath . Another thing is that adverts always show and indicate prices on commdities alowing consumers to budget well in order to be able to buy them . They come together for a 'LAN-party ' with the neighbour 's kids . Simply , we need to eat , buy clothes , and make and rise family . if someone is n't know eating is very important for growth bons and brain or general for body it is fact that eating is just useful . Advertising can be misused not only by corporations , but also by the government , for exemple , the nazi regime . He 's the one who can give different specialities the possibility to shine . Such peole impressed other people through their strong well and devotion to duty . however , I firmly believe that traveling with a guider is quite beneficial because of the possibility of traveling to many places in a short time and in safety . i have studed for just examination we studed . Adult content to sent their chirdren to school to contact these different kinds of class . The disability of doing the things that desired make olders unhappy . However , I want to go to the U.S.A so that I can study and life in my dream country and I want to have my family with me so that I will never be alony . I do not know if American teathers do , but some Japanese teachers speak factually during class . Because of this , I prefer studying concepts and ideas more thad learnig facts . it would be more interresting , positive , great , helpful and amazing if someone had more than one academic subject . we are watching a movie to earn something . the preferrences might be different for a young person than an older person to fully enjoy their life . It has some problems that it can effect to humens . It mentions that it has now reached some oarts of North America . Many people think that treasure never existed , but in reality it exits . Even if they use buses , whtch are big vehicles , the fact that people are taking a bus still reduces the number of cars . Nowadays so many people study the way that makes advertisemets increase sells , that is why our behaviour is influenced by what we listen to or what we see on the television . In this way a person always feels original and `` modern , '' not `` ancient '' like the people that surroand him or her . The product is not as attractive as the lifestile that the product will give you . In the twenty years , they can also give us better cars to use less resources and give us much more convenient tools for our travelling . due to this new product it is a floop in the market . I do not gree that people who take initiative will assume risks more than those who do not . For example , during the traffic jam , the transit ca n't accomodate such large amount of people , how would the clerks . and new gerrthion prefers to use the transport this why know thay think in tewenty years fewer car use . travelling by youself is very good for your fulture . Now a days all the up coming the graduates are just muddling the subject mostly 70 % of subject just learl . For me there are very few friends or cklassmates that I would rather have as a friend . Attendence does not mean that teenegers are fully participating in class . In studing the processes underlying biochemical pathways , knowledge of biochemistry is required , which is an integration of biology and chemistry . when talking to the employment the company should not knowa . it contributes to air pollution and arising temperatures . For instance , the birds are not usually trying to remeber the subjects what they have passed by , such as a stone , a building , or even a small house . So it means there is no certain way how migratintg birds find their way home . Who can say no to a business that can make your life safe ? For exammple , i prefar to specialize in public relations , which is a help to me in my personal life and knowing how to treat other people . First is how to release the drugs as fast as possible ; in order to sell drugs and make money , the goverment requeres a certein amount of testing to be done before the drugs are reliased , and this delays the date of release . So it depends on the defferent nature of the body . If we can plant some species which have a stonger chance to live compared to other plants . Because it rains more and the plants grow well , the Puebo can make full use of it . Additionaly , popular movies stars or famous people in the advertisements attract people . Let us think of music as a metaphor for all the areas of knowledge , and the different instruments as metaphors for all the seperate disciplines . Billions of peple use it every day . Many people have many reasons , like to see abroad or to have diffrent experiences , but their purposes all have something in common . We alwayse joke around or do something stupid . Last but not least , zenra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . the understood ideas and concepts help students learn information about the many subjects and acccept good education from the information the have . Therefore , we think ourselvese that mind care of society is front do it . The population explosion is another factor catalysing the consumption of energy resources . Although , people have a great brain capacity to gain and learn knowlege , so it is easy to gain general knowledge of everything . As I see it , there will be a lot of research done in the future to find such alternitive energies , which will also be environmental-friendly , as well as cheaper . But the experience of painting gives me many new abilities in filmaking . bacause I have a broad knowledge . If everone in the city uses their own cars , the city will become seriously polluted by the smoke . It is rather than to give them strong medicins to them . Fourtunately their topic becomes clearer by using this amount of the concepts provided by the books . Secondly , they have the confidence that new way will be another way to improve a mechanis . also save your time and make you satify this journal . they are the boney and vital part of the society . My personal perception is that such a behaviour is damaging to a young person 's personality , since it promotes uniformity and conformity , rather than creativity and innovation . Every house nowdays has a computer , mobile phone , etc . and this is the way today 's man wants to live . I will describe those two main issues : to meet the modern socity 's needs and to be eligiable candidates for some companies . These surveys also demostrate how much young men and women are not aware of the improvements they could afford if they were able to really put themselves in an effective relation with their communities . And in contradiction to this , the professor said the dicease study is not designed very well . Sometimes , it is very comportable but , it 's not important for me . If they teach them , they will never forget it and it is benefitial for our country . I can not imagine that during the next 20 years anything could hinder an American from using his car to drive down to the post office which is only 3 blocks away . For instance , when I was in elementary school , I learned mathmatics formulas without the concept . that would be a frequently asked qeuestion , so to answer this question we should be aware of the facts . It is more important for theme to understand the ideas and concepts than it is for them to memorize facts . Rather than keep his investment within the confines of the oil bussiness where he is a master , he went ahead with his new plan . students may not anderstand facts very will until they understand the idea and concept that is related to the fact . This always challenges the consumers to buy a perticular commodity in order to satisfy their needs and wants in modern days . For exemple , it will be easier for people to concentrate on a subject such as geology while having a broad knowledge of many subjects , than to try to concentrate on geology after having studied litterature . You can buy a vavilla cake in an upscale store and another vanilla cake in the regular store . some guider are not sure about the information . Developing communities want to build more modern duildings . I strongly believe that in twenty years there will be fewer cars in use than there are today because of the decreasing damage and technology replacment . For example , When I was in school my Geography book presented `` Ploto '' as the last planet , but recent studies posted that `` Ploto '' is not a planet at all becouse of some different characteristics . For example , in Korea , teachers teach something and students learn what the teachers are saying without dissussing with other students while in class . First , we can protect our enviroment by saving oil and gas . And I completely disagree with what the auther wants to say . Think about it : If you are 50~60 years old you always think about your health . I advice all people to always keep smiling and to have fun in this wonderful life god gave us . Anther reason to joing a big company is job security . For example , banks have many very specialized departements . At this time , my opiniom is that young people enjoy life more than older people do . They do n't have to read spacific books and articles just because they love the topic . It is not bad if you know it ; it means that you are intelligent , but a doctor has to absolutely be good at safing and helping ill people . If however the student will put only his/hers or someone else 's ideas or concepts , which can be mistakes will make the professor think that the student actualy did what was asked from the assigment . When I watching TV , radion . After he graduated from his universty , thanks to his skill of software , he got a job easily and became the best in his field . but the professor refutes the idea by illustrating some tested resulta from research condcted by a oil is not taken arouend the world . The old teaching system is a fair system because it judges teachers based on education and teaching skills , with the Finall and most important thing being teaching experience . In my opinion , i agee with the statement ; most advertisements make products seem much better than they really are . there are two crucial facts : no particles from asteroid explosion , area of the astroid and meteorites of explosion . First of all , you will know a lot of things about this subject because you do not have any thing elss to do . Second , he says the strong prpperty rights were dveloped from the factoriy system and not vice versa . Bus , Subway , and even plane are means of travelling that can be used in a lot of areas . Also , it is more comfotable to be moving . Comming to atmospere and nature both are same . For example , famous businessman travel over the world every day ! I think that talking with a person who has a different mother tongue than me is the best way to learn a new culture and language , however there may be a chane to meet them . This fast paced economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and imroved lifestyles for individuals . I want broad knowedge of many academics . Maybe when the economy is bad , such people can find new jobs quickly , but it may not be the best job for they . The important thing about this case is that each countrey has to use an official solution for their learning problems . for example , a researcher that wants to be successfull must take risks . The legs of all modern endotherms are undernearth the body . However , the lecturer says that the location was described vaguely because the antient people wanted to keep the location of the treasure secret . But on the contrary , he argues thlat fluoride also has some disadvantages . For exsample , I like to go to a big city like New York . Everybody knows sports can improve our body , But we need to try it ourself and than we will know that , yes , sports really can help us to get a health boay . Thus , we can easily remember this formura without spending exstra enersy and time. and it is still usefull to me . And this might propably mean that our knowledge is limited . Becaus we need food . He will be mature enough to take wise decisions in expanding his business and trying out new things . The personn takes the bike , goes where he wishes and leaves the car near the closest bus station . And I am going to anothere country . The youth today are aware of their responsibilites as a citizen . But I disegree with this opinion because often the advertisement does n't speak about the function of the product but it promises other characteristics that do n't depend on it . it gives him many opportunities in life , and i think that being a knowledgable person is a wouderful thing to be so we can live our lives successfully and full of happiness . In other words , the image in the TV comercial is the most important factor in determining whether the watcher buys it or not . Here was no promise of morning except when we looked up through the trees and saw how low the forest had swung . Imagine yourself working in a factory . You are to do just one thing , such as put a taire on a car . if you are fired , it will destroy you becouse you do not know how to do more than put tires on cars . It is true that consumers preffer to buy a product that has a lower price , but when international companies that already have the certification begin to enter the market , people will preffer to consume theirs because the difference between prices is probbably not going to affect them too much . Many studies over the last 5 0 years have shown that people who have fluoride in their drinking water have considerably less cavities than people who have been drinking nonfluoridated water . And young people spend more time pursuing this lifestile . Students can focus on only a few subjects they are intwerested in and they will become an expert in those areas . He thinks differently from other people and he succeded . all of that broad knowledge helps they understand their university major and make a correct choice of specialty . Then , when we went to the Science Olympiad , she could have diverse knowledge about the subects and it would not be new for her to think about new things . If every person wants to learn and understand lots of scientifc subjects , not every person will be able to do it and as a result of this science is n't improved . Very soon they will run out at the current rate of utilisation . and will put your maind on a non-stop learning ... today , Compuer skills are the most important life skill . I never have stopped to think about this , but this is a real possibility for the fucture . If we conseder an idea as a totally autonomous concept within the individual process of defining reality , I would state that ideas are useless , if not based on experience . If there are specialized docters that have done the operation many times before , they are really talented in their jobs . So , It will be a good situstion . the school teachers are the ones who take care of the future of the youg genaration so we have to let them gain better knowledge . becaese when we learn about some subjects we should have more information about what we study so that the students will get the information easier and better and this is my first reason . But on the other hand , ther are also people that are often convinced by the interesting advertisements that they see everywhere , because of this , many times they have to face problems with the product that they bought and many times ther is no way to give back that product . Ever-increasing competancy rates force them into frequent business model changes for a compatible transitional flexibility . However , this reading passage casts douts on the speaker 's mention . The placebo effect is not an illusion , it 's real , so the drug was effected by the placebo effect . For example , in the 2 0 0 6 world cup in Germany , many coaches wanted work . Many Scientists obtained clear results of investigations after the facts were on the table , before they could even begin to theorise about them . They want to make people understend thet the product is the best and you really can trust it . Video is convenient , but if teachers are concerned about students , using texetbooks can give students good abilities . In my opinion , it is dependend on a particular person . for example , when we talk about speed they must anderstand why it is dangerous ; it is beteer than if they have an accident and after that they learn . Therefore peaple will be able to live with the automobile sosiety and the nature in the future . Marco Polo used Persian langage , not Chinese or Mongolian . finally the third cause that birds use as a type of internal compass are crystals of the mineral magetite embedded in their break . Futhermore , a tour guide will also provide safety and security for the travel , since they already know the do 's and don'ts on the tour . This arguement is not only true now , it has been for ages , i want to talk about the live example of Sir . The Last one they have to study about is disease , which means it will be save . -Learn ! There are very successful politicians that never tried somthing new . Therfore , we have to reduce sulfur and nitrogen dioxide . Furethermore , the professor denies the reading passage in which it states that treasure does not exist and it is just fiction . Knowledge As well plays an important role in life , it can be aquired by understanding the concepts rather than learning the things . And the critica use few arguments . Besides , young people uaually like new fangled things , like iPods or mp 3s , and I can see that most young peole ca n't live happily without music in their ear and movies at home . Producing vehicles that are more fuel efficint will damage roads , and that will cost a lot to repair . some said this product is recomended by the most important doctor , or something like that . This creates people to pier pressure . For example , last monthe i bought a skin product ; actually , i bought the product because the advertising got my attention . Newer vehicles could fly in the sky , then we need n't worry about trafic jams . While the child spends about five hours or less with his parents and whenever the child wants to go out he will most likely go out with his friends which are his classmates , so most of his school life will be spent with his classmates and this will have a great affect on his personality which will determine the way the child reacts toward his school and how he will use his life . They have a broader spectrum of ideas that can be developed into competences during their student life . It is very obbvious that more cars will be sold there . Also , food chains become stronger that before , such as rabbits and hares . For the older phone , the only function is a job or a project in wich the master calls on him with information related to the jobs . According to me , in order to start the carrier through successfully , it 's importand to have a solid base , that means knowledge and experience . Yes that 's right , but there are some young people who think about the idealism of their country , about their comunities in Indonesia , about their friends who ca n't eat and who ca n't go to school . Techology has grown so fast because everyone is trying to work on an invention based on ideas he has developed and concepts applied to the idea from different subject areas . Facts are learned through experinces . The bass is not only a predetor for the menhaden , so if people catch more bass , the popular of other fish will also grow . Today They are using this way as a curative measure , but with increasing importance on preventive medicine ; normal , healthy individuals are also attracted towards not using cars wherever possible . Government uses that money for public uses and safty . I stated an interest in math ; I spent lot of time solving math problemes and I got a good score on my exam , making me more passionate about math . he has a lot of money and name but no family life . Broad knowledge on many subjects is not possiable to acquire . The lecturer against the authour 's insistence followed reason . They behave as though they were just spontaneously praising a product during noring normal conversation . To my surprize , nothing happened . It usually makes them more postive about doing it . both advertisements say that the toothpaste will make your teeth briliant and brighter . He will consider the years that he spent colecting the money to be lost years . First of all , old houses are not necessarily suited to the needs of mordern residents . The Actual market requires more specific knowledge that broad knowledge . Only by braking out of your normal life can you discover new perspectives in your job and private life . Extending the same example as stated above , i can tell you that during the worst period of Amitabh Bacchan , he was offered to enter into politics to take advantage of his publicity and that he will pay for it heavily so he was very much in need of financial support ; Mr. Bacchan had rejected this offer only because he knew how polititians play with the imotions of common people . It means , to understand why a war developed , you should understand the ideas and cultural moviments that resulted in a particular period and helped cause that war , for exemple . The alternative Reading passege emphasizes an alternative to prescribed burning by giving a turm like " disking " in this fire to clear out dry and dead shrub and stimulate the growth of new plant life . The second one is to specialize in one specific subject , one has his own tast in studing , so let us talk about this subject . After this effort , many companies in the world startet actions to get this eco certified . After the contruction in 1 9 0 8 of the first commercial car , the ford T , mankind has been subdued to the use of the car . Younger people are still trying to obtain the experince that olde people have . They need the cars for many things such as trasportation , entertainment and business . Because of the requirement of men going to army , men have to sacrifise their preciouse time of youth . While reaults from both experiences are same , the method and the time that brings a result is not same . Because you do not need to be a hero in order to try new things , you just need to want it and know that any result will be a succes in things that you want or in learning . In such a situaction there is no other way . Even the magnitides on Mars are no evidence of life on Mars . in writting we are nearly unable to show the felings of people , but in the action on TV we can understand more than from the book . the trueth today is because of competitive markets in each and every field , we are faceing tough compitition ; for example if you are choosing a career in a software field you have to master that subject so you can easily get a job . Indeed , they can be refuced . But by then , we have already bought the product and end up loosing the money . if they want to achieve something , they will try for another untill they know how it works and what is useful about it . Therefore he likes to do arisky and strainge things , and he enjoys it . I belive to have broad knowledge to specialize in one specific subject have outweigh than to have broad knowledge of many academic subjects . In my opinion . if someone thinks one is more important than other , why not focuse on one ? And people feel more arkward when it comes to their ears , that this is something going on as a current event . However , I woud prefer traveling by myself with a good preparation filled with joy . In my opinion , cars will be full taken advantage of in the twenty years . the fact of the matter is that a lot of acadmic subjects can not be used separately . Another sollution could be the development of more fuel efficient cars , wich could also be good for America 's car manifacturers who would produce more attractive cars to sell to other countries . Thereby the problem of running out of fuel is out of the question , hence augumenting my view that the number of cars will continue to rise and not decline . The First effect is grobal warming . So , Ho Chi Minh city will develope . Peolple like to drive different types of models and they want something extra in it . That 's why i will not try hard as i am alon . Successful People explain any mater and discuss any problem . But it 's dengerous , because some drivers make trouble with other drivers when they crash their cars then streets are busy . Because it is allready fixed data , nobody can creat problems with this type of literature . Also , the professor indicates a prescribed fire should be carful when we use the prescribed fire solution . Moreover they have to learn aboue advanced course material . Critics of this policy focus on three poins ; first , Yellowstone fires scorched a large area of land , therefore a lot of plant species were lost . In my past experiences , there are some lectures which are completely baed on facts , and the chance for me to apply them is rare . When you understad that the idea is only one way to figure out the statement that you see in this moment . Firstly , I think that communities are equal to human rerationship . becase if study in this way occurs , I will guarantee this much and I also will also have a lot of information from the book I am studying . When you understand the concepts and ideas it is up to you to prove them , and see if they are really what you have been told ; i think this is the main reason why students prefere facts rather than just understanding ideas and concepts . for example , if you are attempting to study arts and scienses and get equalifications in both , you are an extraordinary creation . So in this field , it is very important to understand all concepts and idease , which they gave us to use to solve problems . It is also taking risks raher than only doing . As we all know , when we were out , something unexpected would happen , such as disease , accident or something else . Third , the professor agrees that the the gas prices in the United States are cheep , and they should rais them to safe the enviroment and people 's health . But they do things in a different maner than others which gives them success . I think it 's harder for successful people to risk something that thay coluld lose much more then others . So the importance of communities in sosiety decreased . At some time , they have to face the failure 's and lot of strugles . it transmits the hebitats from Eastern Europe to different places in the world . another reason is many people see some exutic cars as luxuries which encourages the industry . It is also undeniable that if a man has diversifed knowledge , it would be of immediate use . So , some people use car only by moving somewher . And there is a lot of critics concerned that the reqired testing is so long that it declined the validity for patients . we know that prescribed burning should be repreated every few years , but it 's very expensive to spend every few years . Second , the differance between the encylopedia is that there a lot of viruses and hackers on the internet and one of the hackers could easily change the information about any topic . If i want to win a case in court , for example , a case where technical questions are to be considered- , it is not enough to just know about the law . the successful people try to do new things likr any machine can help the people . Comsumers are not likely to buy a pair of trousers when the claim is that they will increase the capacity to fly . First , the advertissment makes me to buy something . In my opinion , the need for community service and volunteerism arises in the absence of adequate resources or when someone is not fulfilling their responsibilities . they just creat impressions so well that people are willing to buy it . The economy would benefit because this would enable it to have a worldwide competition with the car manufactures . if the knowledge is in all areas , it gives an added advatage to your knowledge level . But in my opinion , if you want be a succussful person , you should try new things and take risks . How we mach them togather . They explain the specific points useing examples about the dinosaur 's behavior and physical features . the lecture mentions about Mongol court recods of the time . first , the theacher is make a right way give to us , so every teacher is make a confidence to students . We do n't usually study these subjects very deaply . It is a really wasteful idean . However , I still believe that learnng facts are important for students . While you will be able to help each other work together after gratuation from university . he usually brings a book and asks something to someone ; he wants to understand the bood . Recently scientists have been working on a new generation lie detector that can perform brain- scanning to find out if a person is telling the truth . It will always puls things for them . By avoiding this it will lead to a much more purer and natural world for our future generations to live in . I do not want to go the Effel Tower in Paris or The Statue of Liberty in New York when I travel because they are too famous , and I already heard and saw about them . In this case , the advertisement totaly made an impact on that baby . Lastly , business owners thought factories would help reduce their overrall business expenses by reducing their transportation costs . This person guides you through paradise and takes you to wonderfull places . For example , when I was a freshman at Meiji University in Japan , my classmetes and I traveled to China . Second , many of cars disadvanteges will ceace or decrease in the comming years , which will instead make it more popular than now . Nowadays , drinking soda became an adiction to most people . If you want to actally know somebody , you can spend the whole day with that person or place but if you do not , you do not speak to that person or even go there . an unsuspecting user can not tell the entruy has been tampered with . I think cars will not be replaced completely by these new automobile innovations , but they will certaily be fewer in numbers . successful therapists need to know that one treatment may help one patient , but may not be approprite for another patient . Altough life is never easy , age does n't determine when you can be protected or prevented from bad things . we are also able to deal the probles found with it . Brifly , sharing the cost of a vecation trip is a very good advantege for travel . For exemple , you were working as a broadcaster but in the office and city where you are working . She knows that what teacher has told her , but no more . It would alsow be unfair , because it would affect low-income Amricans much more seriously than well-to-do Americanc . In the listenig part the woman explained the new reality : the raising gasoline tax does not reflest the real economic damage . When facing such challenges , only those who are perserverant , determined and always strive until the last minute despite the risks can finally be successful . and Goverments will not provide good public transportation systems until many years later . In old times , familes tended to live in the same place for ages . I think that young peopie are not able to think as deeply about things than older people . Thus , most of the inhabitants in the rural ereas are the old ones . This is very possitive for the company and he will probably get a better postion . On one hand you have general practitioners who look at all the basic problems related to the body while on the other hand you have specialists who only take care of specific areas whether it be an orthopaedic surgeon ( related to bones ) , a cardiologist ( related to heart ) or an ENT ( ear , nose , throat ) surgeon . The reason these problems occur is also becayse of the exam . If he satisfied his situation and did not make efforts to overcome himself , not only could he be rememberd as a great artist but we also never meet many great music . He may fell afraid or terrible when the same thing happens to him . When older people think like that , it causes a big problem for yong people . Some people say that a placebo is really a drug , and about 3 0 percent of partients agree with this idiea . It will eat insects or animals that will cause damage to places so that it can avoid loses due to repairing things . Afther that they have to find a well-paid job . As for myself , I 'm going to it to too my brother alwys talks about it and i agree with that broad knowledge . And it does n't matter if the person who takes the risk gets all the results he or she has in mind , the important thing is that they did something and they proved that they can do lots of things in their lives , always thinking of good results for theyselves and for the whole world . The cost of using the undergroud is very cheap in some countries such as France . For example , it happened to me when I studied the concept of inflaction . So let 's not lose hope and let the scientists do the job , but i think being in a traffic jam is a stressfull situation , it requires time and patience and there are many more disatvantages about the large number of cars . for example , there may be elderly travelers which may cause slow movement due to their unability to walk fast . There is evidence the company that made some of the products had to pay lots of money to the broadcasting breaus . On the 2 1st , our yong people can learn a lot of academic subjects . Movies and oher television shows provide a lot of information about what real life is like . There are many ways for this ; another example would be bottles of juise where if it tastes bad , they make the shape wonderful or colourful . Other tourists would give you some tips for the trip from their experience . A lot of memories with enogh time to remember will increase the possibility of enjoyment . While the communities in general believe that they need support from the young people , they must make an appeal for it in a reaonable way . if it does , you will only get some misunderstood idea about that acticle but not the original one . Secondly , chimps can also present the capability for grammer , which means they demonstrate the ability to combine words and use grammatical constructions . I think learning facts is only evidence of whether students can work hard and if they are able to retain every detail of information they are tought , but it 's definitly not evidence of their intelligence . So , if i have a lot of information about this subject , i will taulk too much because of that knowledge , but if i only have general information about it , i will convey my limited knowlege and this may make me feel ashamed , like when my brother asked me about something that i did n't have a lot of information about . if i see that someone did somthing that may safe me me time and energy , and it works , then i will do it too . People are now opening their eyes to the scenario that we would run out of fuel . No other transportation concept has been as successful as the car , not only because of goog streets and highway systems throughout the United States and Europe , but also because of the fact that people love their cars . That 's why he is a legend in these days and people repect him . On the other hand , when I was a freshman in college , I could concentrate on my favorit subjects . When you 're making a trip with a tour guide , you already have everything settled , from the time you depart to the time you arrive . People tend to choose other media , which is why litterature is in danger . I am pleased to know intelligent peple and learn about things that I do n't know . On her salary , we ca n't buy a car because we are planing to finish our hause in Binangonan , Rizal , and pay tuition so I can finish my studies in Boston . A person with broad knowlege will help him renovate . You can only be successfull by learning new stuff and trying it too , by having an open and creative mind . Firstly , the striped bass consume a large quantitiy of menhaden ; secondly , this fish is a source of protein for farm animals ; and finally , the fishing industry provides jobs for some people in Virginia . I think people should travel by making decisions by themselves for sevral reasons . For example , if the city says that 8 am -- 9 am is the busiest time , than workers would argue that they should drive a bit later . For example , in this genaration , people watch movies and listen to music more than they read books and novels . In malysia , there are a lot of cars . they are free to do all sorts of things , even those that are cinsidered dangerous or irresponsible , such as bungee jumping . I think most people would like that in a busy world , but I do n't thing it will happen the next twenty years . Everyone would be expected to leave behind his own and secret dreams , like becoming a painter or a writter ... New kinds of vehicles will be invented with new technology than does n't exist today . This would have definately required him to take an immense amount of time away from his work , and he stands as a perfect example with whom the youngsters of today relate . I think it is kind of ridicurous , but we have to do as the tour guide said . An example that would make this categorization problemmatic is an architect . also , markting can make some adjustments about the changes . In my essy i want to focus on how impotant it is for students to learn facts . Teaching the studens ideas has many advantages . you can have a chanse to make a person help you . They would not be able to discuss spesific problems just because they did not know them . By the same token , people will learn many different skills by doing so many things , but they will just learn their appeal and not get any crutial information or wisdom from it . To some people , New experiences are a challenger and challenger are the reasons that some people continue living . our society can be a lovely society , but for that dram to come true , i think we must gain more knowledge . This is the goverment rule , that attending this seminar is compulsory . Without empirical experience , i think learners tend to forget all the information they have learned throuhout the learning process in the long term . Court cases are very common and a high number of desputed tickets are seen . that 's why centralized attributes , and business owners reducing thir businesses are not responsible for the rise of factories . second , birds navigate by landmarks like rivers , coastlines , and moutains . Unfortunately in most countries , public transport is not perfecty organised . The public transpotation in the city may not be able to cope with this huge amount of people flowing through . This does n't mean that , because you take risks , you are going to succed . one of the most important problems is accidents for sure : everyday millions of people die just because of drivers not being carefull . as a matter of fact , i do believe that there will be fewer cars in twenty years but this will happen just for the reasen that we will use somethink else . In this sense , I will introduce the concepts of two aspects with a datailed analysis and then I will come to the conclusion . In my case , my yonger brother needs more than academic knowledge . I larned many kinds of subjects and I also made different types of friends . you have to teach your child since they are born until they graw up . For example , the subway in New York , bullet trains in Japan , underground tube trains in Singapore and the sky trains in Bangkok all travel at lightening speeds . Obviously the irreplaceable examinations and fewer challenges can bring huge advances to fulfill the defination of success . Young people nowdays do n't spend enough time helping their communities . one of them was my friend who had seriouse prblems with her health . I had a good life in my cauntry but everything I had I got from my patents . However , if the student is going to only learn things whithout understanding the concepts , no company will give him an opportunity because he will not know the concepts of its related branch , and by this way it will create a problem in the future . secondly , it is an unfair action because it will effect low-income Americans . It results in people who are more mature , strong and calm when faced with the problems of life because they undertand that problems go away , depending on what kind of manner people have when faced with a problem . this speace must change into a gerden . However , some people thing that , when people are forty years old , they are an older person . It is worthy noting that not everybody will succeed when taking a risk , but that should not be enough to deteir anybody who wishes to take one . apparently , I have a Japanese friend in Japen whose name is Tomo . when they do some work , they think they have to fine work in time . Ignorance of striped bass will abbreviate our earning and also have some astonishing effects on our health . Although there are some rules for protecting young people , such as restricting the ages that can view movies and previewing the bad aspects of programs before they start , it is just made for little kids , not young peole like high school or university students . For the Greek philosophers Plato and Aristotle , the capacity for understanding ideas and concepts , or intelligence , is the main ability of the human soul , which is the part of ourselves that makes us the being we actually are . But is it possible to have a broad knowledge of many academis subjects without specializing in one particular topic ? This demonstrates the undeniable fact that it is bebeficial to have differnt experiences . The government is rising the tax on gasoline . To be sure , we Japanese take part in destroying the enviroment because we consume the most wood . So i asked my student what he thought about my lesson and tried to find out where the proublem was . Second , the rouds can not be damged because , with the rising tax , there will be many fewer cars . This will definitely cause some promblems . In America , a lot of families have more than one car and , futhermore , some of them have three or four . Most of us will understand better when the ideas and the concepts behind the war are shown and we can get very exited by it . First of all , He argued that Americans will not ignor the `` ecocertification '' as there are so many advertisements now . Secondly , It needs to experiance . Therefore , the french revolution happend in the middle Ages in Europe due to those reasons . '' This will help creat a relationship of brotherhood . By trial and error I succeedded , which gave me a very good feeling about myself . And the president of a compeny lake Toyota or Ford are successful because they know how to start ther companies and make smart things . The lecturer shows a different side of the systm ... Scond , Menzied points out that chinese ships in the 1400s used very distinctive anchors that were round stones with a hole in the middle . In a group trip , we are forced to follow the goup 's time schedules . Helping others makes us all live in a confortable home . I can remember that from a alecture I iattended . Even when everthing is tough , when there is life there is hope . However , Bill Gates made people 's lives more comfortable than previos circumstance . It is better to have a very good understanding and knowledege of many academic subjects because it gives you breadth and the chance and oppurtunity to work in different fields and environments . This implies that there can be instances were no such overstating takes place at all . The availablity of jobs to candidates with specfic knowledge is less when compared to the all round perormer . Another thing is that advertisements always show and indicate prices on commdities , alowing consumers to budget well in order to be able to buy them . Simply we need to eat , buy clothes , and make and rise a family . if someone does n't know that eating is very important for growing bons , the brain , or the body in general , it is not a fact but an idea that eating is just useful . Advertising can be used badly not only by corporations but also by governments , as for exemple by the nazi regime . Such peole impressed others through their strong well and devotion to duty . For example , if the old person does not hear properly , then the young ones right from the days of their cihildhood think of inventing something that can help the older people hear properly . however , I firmly believe that traveling with a guider is quite beneficial because of the possibility to travel many places in a short time , safely . i have studed just for the examination we studed . Adults are content to send their chirdren to school to have contact with these different kinds of classes . However , I want to go to the U.S.A so that I can study and life in my dream country , and I want to have a family so that I am never not alony . I do not know about American teathers , but some Japanese teachers speak just the facts during the class . Because of this , I prefer studying concepts and ideas more thad learnig facts . When someone has studied more than one academic subject it would be more amazing , interresting , positive , great , and helpfull . we are watching movie to earn something . the preferrences of a young person may be different from those of an older person to fully enjoy their lives . It has some problems that can effect humens . It mentions that now it has reached some oarts of North America . Even if they use buses , whtch are big cars , the fact that people take the bus still reduces the number of cars . Nowadays so many people study the way that advertisemets increase sales , and why our behaviour is influenced by what we listen to or what we see on the television . In this way a person always wants to feel original and `` modern '' , not `` ancient '' like the people that surroand him or her . It is also possible that travelers could re-schedule the trip and the destinations . In conclution , you are not atracted entirely by the product but by the lifestile that this product will provide you with . due to this , the new product is a floop in the marketplace . I do not gree that people with initiative will take risk more than those who do not . For example , during traffic jams , transit ca n't accomodate such a large amount of people . new generation prefer to use the public transport , which is why we know that thay think there will be fewer cars in use in twenty years . travelling by youself is very good for your fulture . For me there are few very friends or cklassmates that would be better friends . Attendence does not mean that teenegers are fully participating in class . the company should not knowa about one 's employment , For instance , the birds do not usually remeber the objects they have passed by , such as a stone , a building , or even a small house . So it means there is no specific way in which migratintg birds find their way home . For exammple , i prefar to specializes in public relations , which helps me learn how to treat other people in my personal life . The First concern is how to release the drugs as fast as possible in order to sell them and make more money faster , but the goverment requeres a certein amount of testing to be done before a drug is reliased , which delays the release date . So it depends on the defferent body 's nature . we plant species that are stonger than others . Because it rains more , the plants grow well and so the Puebo can make full use of them . Additionaly , popular movies stars or famous people in advertisements attract people . Let us think of music as a metaphor for all areas of knowledge , and the different instruments as metaphors for all the seperate disciplines . Billions of peple use it every day . Many people have many reasons , like to travel abroad or to have diffrent experiences , but their purposes all have something in common . We alwayse joke around or do something stupid . Last but not least , zenra mussels are likely to cause a decline in the overall fish population in habitats where they become dominant . Although , people have a great capacity to gain and learn knowlege , so it is easy to gain general knowledge about everything . As I see it , there will be a lot of research done in the future to find such alternitive energies , which will also be environmentally friendly , as well as cheaper . the experience of painting gives me many new abilities in filmaking . bacause I have broad knowledge . If everone in the city uses their own cars , the city will be seriously polluted by the smoke . It is instead of giving strong medicins to them . Fourtunately , their topic becomes more clear by using this amount of concepts provided by the books . Secondly , they are confident that there will be a new way to improve a mechanis . If older people are more accepting of changes , their lives will becom better . That means that just learning facts is not going to make a temporaty difference to students . My personal perception is that such behaviour is damaging to a young person 's personality , since it promotes uniformity and conformity , rather than creativity and innovation . Every house nowdays has a computer , mobile , etc . and this is the way today 's man wants to live . I will describe those two main issues : meeting the modern socity 's needs and being eligiable candidates to work for some companies . we ca n't image what the world would be changed because of our fast-paced societies . These surveys also demostrate how much young men and women are unaware of the improvements they could afford if they were able to really put themselves in an effective relationship with their communities . In contradiction to this , the professor said that the dicease study was not designed very well . Sometimes , it is very comportable but that 's not important to me . It is more important for theme to understand the ideas and concepts than it is for them to learn the facts . Rather than keeping his investment within the confines of the oil bussiness , where he is a master , he went ahead with his new plan . students may not anderstand the facts very will until they understand the ideas and concepts that are related to the facts . This always challenges consumers to buy a perticular commodity in order to satisfy their needs and wants in modern days . For exemple , it will be easier for people to concentrate subjects such as geology , if they have a broad knowledge of many fields , rather than to try to concentrate solely on geology after having studied litterature . After an official training course , we helped the patients to bath , talked with the elder people who lived alone , and helped the organization to hold activities during special occasions like mother 's day . You can buy a vavilla cake in a fancy store and another vanilla cake in a regular store . some guider are not sure about the information . Developing communities want to build more modern duildings . I strongly believe that in twenty years there will be fewer cars in use than there are today because of reducing the damage they cause with technology replacment . For example , When I was in school , my Geography book stated `` Ploto '' was the last planet ; but recent studies declare that `` Ploto '' is not a planet at all becouse of some different characteristics . For example , in Korea , teachers teach something and students learn what the teachers are saying without dissussing it with students while in class . First , we can protect our enviroment by saving oil and gas . And I completely disagree with what the auther wants to say . I advice all people to always keep smiling and have fun in this wonderful life god gave us . Anther reason to joing a big company is job security . For example , banks have many very specialized departements . my opiniom is that young people in this time enjoy life more than older people do . They do n't have to read spacific books and articles just because they love the topic . It is not bad if you know it ; it means that you are intelligent but a doctor has to be extremely good at safing and helping sick people . If , however , the student only puts down conepts , either their own or someone else 's , which can be mistakes , that will make the professor wonder whether the student actualy did what was asked for by the assigment . We can just hope that those cars will have a new propulsion system wich will pollute less . When I was watching TV , radion . After he graduates from universty , thanks to his software skills , he can get a job easily and become the best in his field . the professor refutes this idea by illustrating some tested resulta from research condcted , that oil is not used everywhere arouend the world . The old teaching system is a fair system because it benefits the teachers with education , teaching skills , and , Finall , the most important thing , which is teaching experience . In my opinion , i agee with the statement that most advertisements make products seem much better than they really are . there are three crucial facts : no particles were found from the asteroid explosion , area of the astroid and the size of the explosion . First of all , you will know a lot of things about this subject because you do not have anything elss to do . However , people who did not join the event , felt like winners because they forgot the event ealy on . Second , he says the strong prpperty rights dveloped from the factoriy system and not vice versa . Buses , subways , and even planes are means of travelling that can be used in a lot of areas . Also , it is more comfotable than moving . When it come to atmospere and nature , they both are the same . For example , if my friends talk about their proplem about computer issues , I will give them advice about how to solve the problem or just listen to and understand them , which will help them feel comfortable in our meeting . For example , famous businessman travel all over the world everyday ! This fast-paced economic growth , which can also be observed in a large number of developing nations , has brought about an increase in per capita income and imroved lifestyles for individuals . I want a broad knowedge of many academic fields . Maybe when the economy is bad , such people can find new jobs quickly , but it may not be the best job for they . The important thing about this case is that each countrey has to use an official solution for their learning problems . for example , a researcher who wants to be successfull must take risks . The legs of all modern endotherms are undernearth their bodies . Second , the high cost of drug testing finally causes the cost of the unit drug to be more than the cost of produing it . However , the lecturer says that only a vague location was described because antient people wanted to keep the location of the treasure secret . But , on the contrary , he argues thlat fluoride also has some disadvantages . For exsample , I like to go to big cities like New York . Everybody knows that sports can improve our body , But we need try it ourselves to know that , yes , sports really can help us get a health boay . Thus , we can easily remember this formura without spending exstra enersy and time. and it is still usefull to me . Becaus we need food . He will be mature enough to take wise decisions in expanding his business and trying out new things . The personn takes the bike , goes where he wishes and then leaves it at the closest bus station . And I am going to anothere country . The youth today are aware of their responsibilites as citizens . But I disegree with this opinion because often the advertisement does n't just speak about the functionality of the product but it promises other characteristics that do n't depend on it . it gives him many opportunities in life , and i think that being a knowledgeable person is a very wouderful thing because we can spend our lives successful and full of happiness . ================================================ FILE: data/sanity_check_samples/RUSpellRU/corrections.txt ================================================ очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Апофеозом дня для меня сегодня стала фраза услышанная в новостях Ну не было поста так не было Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Поясним эту мысль она прямо бурлит у меня в крови тормошит какими-то советами смотрит на меня из глаз моей дочки что носит ее имя Получатся вот такие язычки Роспись была назначена на вторую половину дня поэтому время на прогулку и фотосессию было ограничено Иногда мне сложно понять как можно не любить своего ребенка в массе своей они конечно все очень милые Насчет Чавеса разве что не соглашусь Нужно просто захотеть что-то сделать ради того чтобы все стало так как того хочется тебе Многие сетуют на отсутствие живого взаимодействия между учеником и учителем а в чем оно по сути Основная цель мероприятия практическая отработка навыков по оказанию помощи гражданам попавшим в ДТП а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий сокращение временных показателей реагирования Напрасно выброшенные деньги на билет в кинотеатр А теперь я пойду профилактически рыдать в ванную как все толстые неудачницы в общем как вы знаете из моего недавнего поста я жаловался на пропажу писем с моего ящика на почте.ру Предлагаю поиграть в детскую игру Ассоциации Сегодняшнее утро выдалось просто волшебным хорошо что на выходных не было стен только деревья да ручьи Было тяжело переводил беседу карабахский армянин она сама придумала образ и как бы ни было думаю ей удалось передать атмосферу А Рите снятся сны в которых меня убивают потому что я пытаюсь всех спасти Лучше б этот бунт эритроцитов переждать в дубраве люминала У нас всегда достанет сил чтобы перенести несчастье ближнего Повтыкав в аэропорту поехали к билетным кассам где я взял билет на поезд Компьютерная программа для улучшения зрения а днем мама снится как будто мы с ней в ссоре и она мне что-то выговаривает Интересно что бы было если б этот фильм посмотрела бы с Димой И вот наступил сладостный момент я вышла из дома в шесть вечера против планируемого без пятнадцати и поспешила на встречу с Надей Мощный лазер в нерабочем состоянии 350 кредиток Так вот я боюсь подержанную потому что меня провести как нефиг делать хорошо когда каждый год как первый Особенно мне интересны Капулетти включая и прислужницу Кормилицу и молодежь которая будет участвовать в поединках сегодня должен был на работу притащиться программист и навешать всем оплеух причем большую часть на меня Ответственность за реализацию естественно лежит на контрактных пивоварах В принципе я к этому готова Ограничьте время между кликами что ли Кили открыл что недоступные наблюдению поля мозговые гравитационные магнитные и электрические состоят из трех потоков Эстония это конечно не Португалия но 4:0 тоже результат мы понимаем друг друга с полуслова но диалога никогда у нас не получается Начальник зажег по-взрослому всю предыдущую неделю ходил покрытый прыщами а с понедельника слег ветрянка Подсаживается женщина иностранка из Норвегии она приглашает меня танцевать оказывается что это место слишком крутое для меня я загруживаюсь и больше в этот вечер не танцую В мире на самом деле крайне мало действительно по-настоящему значимого И еще тут ряда на 4 назад какие-то малолетние наркоманы не понимая всю трагичность момента начинают хихикать потерянная молодежь Ощущаю себя с ними монголоидом я никогда так много не молчала как молчу тут и не потому что языковый барьер или еще что-то просто комментариев нет Ответственный редактор издания Юлия Потемкина прислала мне потрясающий ролик про триатлон Пополнил коллекцию шмотья от Fallen в связи с долгожданным завозом Отличный лотос у тебя Меня никто ни о чем не просил просто хочется поделиться Чем Дяченки и Олди мельче философов с мировыми именами Мы с Сашкой купили надо было что-то в бассейн на корпоративном отдыхе что ли а они нам обоим оказались неудобны дико высокий подъем у обоих а они по-моему на плоскостопых рассчитаны исключительно Такое ощущение как будто до этого видел сон а сейчас только просыпаешься но почему-то все адово болит и дышать трудно Объелись пиццы и всячески веселились Возможно все ограничится приятным знакомством а возможно и любовью на всю жизнь кто знает русским мог стать любой кто любил русскую культуру родину говорил по-русски кому подойдет инопланетянам или людям живущим за городом или владельцам ну очень большой квартиры с ну очень большой кладовкой куда это чудо технической мысли можно спрятать Расспрашивая иностранцев-гостей Питера о их впечатлении от русских частым комментарием был тот факт что все слишком сердитые и серьезные никто не улыбается на улице Библиография приведенная в конце книги впечатляет А про дырявую книгу я даже не знала спасибо что заинтересовали Зашел в какой-то сетевой европейский не помню название бренда магазин купить сыну игрушку из командировки lego цены Московские девчонки-продавцы по-русски говорят плохо Сегодня вот днем выдалось свободное время и я опять ходил кататься на коньках А она научилась справляться и жить дальше зная что близкие люди страдают чувствуя собственную боль Зубодробительная гребенка с острыми камнями на протяжении всех 50 км пути Слава богу на минуту мне показалось что я оглох придя в МГТУ я был удивлен никого не обнаружив там Профессиональная карьера Патрисии началась что вполне закономерно недалеко от родных мест но за пределами Франции и как Мишка сегодня сыграл и как тот самый ненавистный Олег им гол как забил а спустя три часа я зашел в серверную школы которую мы обслуживаем чтобы выяснить отчего же вчера не было у учителей интернета и хронографа Уилл был мастером прятаться но не мог воспользоваться своими талантами потому как не имел возможности обнаружить в темноте никаких укрытий давайте на эту вот самую тему побеседуем годов через 25 Но тут-то дело за малым написать ее Они были лучшими на автобанах и на гоночных трассах создав универсальный миф об идеальной спортивной машине и мне вновь хочется изводить пергамент на письмена обнаружиласть тут в залежах Я вчера чуть не купила такие же в супермаркете золотые и серебряные но решила что дороговато по 160 р штучка Расшифровать аудио мне так и не удалось Любителям политических боев на цветных карандашах можно не читать Самой-то в разы дешевле сделать Хоть я слушаю тут недавно и вообще только полтора альбома успел послушать мне все это нравится Едем дальше на север проехали город Бовен и к вечеру уже были в Таунсвилл Наверное поэтому мне мечталось о сынишке Игрушку Покорми меня очень давно хотела сшить но доделала только сегодня Яся стала плохо спать по ночам а днем я от нее стараюсь не особо отвлекаться поэтому времени мало Варикозная болезнь матки симптомы Вопрос в том как совместить все эти векторы ника прости меня пожалуйста я очень виноват определяет правила взаимоотношений вас и их и даже как-то легитимизирует ваш забор как же так надолго артисты отпускают Все желающие могли в любой момент совершить паломничество на кухню за добавкой Мужчину очень озаботил фон точнее надпись Ближе к полуночи когда станция совсем опустела он все-таки решился Никогда не пить очень знакомо и эту Радугу Вы рисуете своими мечтами фантазиями елочными игрушками украшениями Не люблю рассказывать о себе Симпатическая система наоборот отключает все железы внешней секреции как потовые так и слюнные Результаты моего длительного сотрудничества с компанией Nettrader Съездить что ль в музей какой коли они все сегодня бесплатные Перспектива купания в ледяной воде никого не радовала Это основной курс в рамках которого есть еще несколько но о них позже и дальше Препараты от варикоза Съездили два раза с подругой за билетами вечером в расчете на то что купим чуть раньше и пойдем приехали Тогда я возмущался что некто непонятно как получил архив диссертаций РГБ и барыжит ими Странно как-то поиск в ЖЖ работает А вообще пришла в голову мысль вроде не весна Очень славный ребенок настоящий ангел Пришлось идти в обход Приветствуется знание технических основ принципы построения БД опыт программирования на Navision Axapta опыт работы на стороне заказчика Провожаем жизнь мы с тобой Опасался ли он своих снов Разжился на выходных экземпляром сабжа Однажды обезумевшая старуха Людмила Ивановна раскидала все наши зубные щетки Военные в целях безопасности оцепили пирамиды а также Каирский музей и другие достопримечательности Пользоваться сервисом проще простого Железная машина поломалась об православную духовность Не было бы универа и одинаковых прохожих колясочников с детьми блонди в розовом и голубом нелепых гоп возле игровых автоматов и самих игровых автоматов гламурных перцев реалити дом-2 партии КПРФ алкогольных напитков однообразия на прилавках магазинов отсутствия скейтпарка запорожцев разбитых лиц и т.д Сочувствующие тут же бросились развивать тему и так достаточно бредовую и доев свой грибной завтрак и покатавшись на радуге ребята засели за креатив Их творения могли казаться странными непонятными Если не ошибаюсь в первом томе Экономикса изложен но когда сажусь писать мне начинает казаться что не следует об этом писать Но зато были и болезни и паразиты и полное отсутствие представлений о гигиене да к тому же численность населения контролировалась тогда не современными контрацептивами а саблезубыми тиграми и всякими прочими хищниками Однако статуи выполненные им всегда лишены глаз что воспринимается с трудом даже теми кто ценит многие другие аспекты его творчества Его рождение самое таинственное и непередаваемое земное чудо Челка отросла лезет в глаза и уже мне мешает но идти стричься естественно некогда Теперь сюжет еще круче Джефф Гордон известный автогонщик взял баночку пепси со скрытой камерой и разыграл менеджера автосалона Слишком много тоже плохо но и какой-то постоянный минимум абсолютно необходим Обнимает хорошую девушку его знакомую Все подруги всегда курили я нет еще нет Основные же беды от злой Эриды от нее же война а не трудолюбие Когда что-то не получается падает самооценка разрушается идеальный образ Кто-то выкладывал в контакте про медикаменты смысл был в том что существуют российские аналоги которые намного дешевле иностранных и приводился список лекарств Координирует движение специальный человек идущий спереди и как правило задом наперед После этого греки завладели преимуществом и вскоре отыгрались а затем и вышли вперед даешь больше ножек кстати можно немного и позагорать Рассказчик бодрый понятный а главное компетентный говорят у него был шок когда мы приехали Не ссорьтесь на людях и не показывайте недовольство тем или другим образом Выдали студенческий билет по нему она жила годы учебы Прочитал удивленные отзывы о православном нисхождении огня в общем когда-то год назад по сети ходила запись звонка в техподдержку некого пользователя СТРИМ которого довели до пены у рта с криков разрывы Но что ты с ними сможешь сделать Сейчас более известен его сын Максим Кантор художник и писатель Я могу есть немного но очень начинаю тосковать от однообразия Открываю книгу про детские инфекции там все написано и про слабость и про капризы и про резкий подъем температуры на второй день после которого и начинается высыпание Пересказывать содержание спектакля не буду он как и все елки довольно забавен он тряпки убирает там человек полуживой в хламину пьяный фотка классная кстати хоть и не по теме Разговор что-то зашел про роботов и я долго и с увлечением рассказывал ей о философско-антропологической подоплеке многих фильмов типа Иск разум Валли Иногда даже приятно что выходные закончились и можно вздохнуть спокойно D И если им вдруг хочется дать оценку то чаще всего эта оценка касается именно этих шаблонов а не реального человека вот например не зря же нас поделили на мальчиков и девочек ведь девочки берут то что не дано мальчикам и наоборот Ну вот сегодня дружно находились в каком-никаком напряге по метро каталась много ну и собственно ничего не было Как-то раз было подобное с одной знакомой но вроде бы инцидент был быстро исчерпан Я б и на такой состав бы сходил если б билеты стоили раз в 5 дешевле Он становится безупречнее день ото дня вот о чем я Сегодня мрачная погода По-моему в челябинской транспортной реформе никогда не было головы Священнослужители ходят в белой или голубой рясах без всяких золотых ОГРОМЕННЫХ золотых крестов Неосознанно стал вспоминать этот стих сначала отдельные строфы потом куски Сохраню на память кое-что по этой теме все говорят что интернет-блогосфера начинает как-то влиять и в чем-то рулить the sims 3 увеличить грудь Но анализируем публичного человека чьи высказывания по одному из самых болезненных вопросов современной России тиражируются прессой в качестве авторитетной почти официальной точки зрения Поэтому возникло недопонимание и весь этот фильм отпуск на носу не знаю как его применить Свобода сознания это отсутствие устойчивой психологической зависимости от чего бы то ни было но сыро очень и вообще ад полный Для меня было очень важно приходить поздно домой Воинственный и могучий бог войны воплощает в себе страсть и чувственность По-прежнему есть молодые люди делающие записи в свои записные книжки В общем я и так уже собирался ставить игру а после такого Хороших всем выходных и веселого праздника Песах Первый день автобусная экскурсия до биг бена не доехали никогда не угадаете что это кстати Создатели рюкзака учли что бедра человека выдерживают бОльшую нагрузку чем плечи поэтому шестичасовое таскание сына в рюкзаке никак не отразилось на моем теле Позже буду выбираться в сторону центра Я очень рада что вам мои посты нравятся каждый атом Вашего тела был когда-то материей ближайшей звезды Вполне себе нормальный лагер Улица Кирова теперь пешеходная давайте переименуем ее в Пермскую Отдала долг маме и выдала денег на прокорм Но вообще конечно хочу Джойстер Я тебе ничего рассказывать не буду про меня ты и так все знаешь Сань я про себя вообще молчу Диктатура одной партии была заменена диктатурой военной хунты столкнувшей страну в пропасть гражданской войны продолжавшейся 10 лет Препараты для похудения на заказ Это конечно цветные иллюстрации никакие не фотографии А еще там на митинге вроде бы выступали местные музыканты насчет Гулливера детям читать невозможно Самый прикол в том что делая дела в своей жизни мы этими делами показываем отношение к близким своим а когда много гадости сделано на попятную уже никак слишком многих обидели В этот момент я определяю что нахожусь под властью этого наслаждения Странным стал институт наш мировой Рекомендации к жизни в этом сценарии следующие Проблема в том что я вообще не знаю кто мог бы это прочитать Напроектировали различные модели горок решили сделать ее разноцветной Удалить анкету на одноклассниках возможно последнее что я скажу кого-то немного обидит но это ж дневник блин и в нем я должен писать то что думаю Селайя считает что против военных намеренно выдвинуты обвинения в незначительных преступлениях Ремонт это просто полная жесть Руки-ноги раскину и сплю а еще пальцы растопырить вообще снежинка а еще хочу застрелиться сразу из двух пистолетов и почувствовать как две пули расплющиваются друг о друга внутри черепа Всю голову я сломал не знаю уже ничего вообще не хочу Об этом так стыдно писать но я только в начале пути Асфальтоукладчик с проясненным лицом улыбаясь Но для большинства людей новые нормы по всей видимости не угроза налоговики и валютные контролеры просто не узнают о счетах уверен Кандыба Короче полный бойцовский клуб Он спит пару часов в сутки и короче он вообще крутой чел Читай книги с телефонов и компьютеров Температура в выходные флуктуировала в районе 37 короче нормальный рабочий процесс Правило земледелия Все взаимоотношения можно и нужно культивировать Сделайте дыхательную гимнастику медленно глубоко вдохните на шесть секунд задержите дыхание затем в течение шести секунд постепенно выдыхайте Качество вроде ничего друг не жаловался Симптомы зажатия пупковой грыжи Потому что это от Аллаха Разве что бегущая вода Пришлось ответить что случайно не я Из особенностей стоит выделить то что мне пришлось вести занятия по математике Осколки зубристые непослушные дни ночи вечера Прямо на храме обвивая корнями его башни растут большие деревья Я вежливо отвечаю что они ошиблись номером и Зинаида Васильевна тут не проживает Результат на лице налицо Хорошо что Гошу успели унести и Гошины родители не стали свидетелями моего позорного открытия Завал короче но я не унываю Я знаю где живет хорошее настроение Прикольные статусы для одноклассников Много места если не основное в романе уделяется внутренним переживаниям героев Вчера в восемь договорилась встретиться у Мака с подругой откуда собственно двинуться гулять Вообще врать намного сложнее это ж все надо будет запомнить Кому и Чего ляпнул а у меня на оперативке объем не очень Новая жизнь как таковая ее особо не заботит Вы меня извините но я опять про своих Как бы лично наблюдал сейчас И то ли погода была мрачная то ли еще что в общем случилась со мной паническая атака такая жесткая вот атака Тяжело писать письма школьной учительнице русского Только мне даже себе самой это признавать не хочется Посмотреть на меня красивую можно тут Я сомневаюсь что белое золото лет через пять не начнет меня бесить Наступила зима хочется играть в снежки Спасибо милые мои за ваши поздравления комплименты улыбки подарки цветы Профессор хотел сдать рукопись в полицию и проверить чернила на рукописи но патриарх не разрешил а нужные листы вскоре были вырваны тебя мы в первую очередь возьмем ты умный и у тебя располагающая внешность Прикольные статусы в одноклассниках Каждый райтер или группа райтеров старались внести в свои рисунки что-то новое Хотя возможно подобная неинформативность связана с новым Регламентом Премьер-лиги Начните питаться ПРАВИЛЬНО ну в смысле еще одно солнышко помимо меня а вот как-то в коридоре встретил-таки и припер Ты бесстрашная кошка которая неожиданно может выкинуть все что угодно Проснулась в ожидании чего-то чистого и свежего Все три монеты можно приобрести в едином наборе по цене 1020 евро Он выгребает ее из-под костей которые лежат у его ног машет своими хвостами сворачивает и закрывает четыре глаза В такой светлый праздник хочется иметь хотя бы небольшую книжку о вере доброте и собственно Пасхе Смешать апельсиновый сок уксус горчицу мед и масло заправить салат посолить поперчить разложить по тарелкам Приехали мы уже ближе к вечеру пока заселились стемнело либо и не было никогда любви-то либо действительно нам без них МУЖИКОВ никуда Теоретиков тоже в мире больше чем надо Сегодняшние утренние планы умеренно пострадали к сожалению Наверное он сейчас уже проклинает нехорошими словами меня Не мог долго уснуть этой ночью Поскольку отчет деловито и весело уже написан не буду ничего переписывать а линк вот он Так ли влияет на качество напитка распечатывание Мы включились в проект на той стадии когда автоматизированные системы в компании уже существовали на разных стадиях внедрения Компьютерные мониторы для людей с плохим зрением Дольше можно делать и булки и ватрушки и пироги и пирожки с любой начинкой А на самом деле просто начальник активно со мной дружился а начальнице его жене это сильно не понравилось Рассмотрим все необходимые составляющие революционного процесса Зайти вконтакт без смс Ресторан оказался очень достойным по-настоящему итальянское место Я категорически отказалась сочинять скорбные строки о живом человеке ведь и за здравие умерших нельзя молиться а уж за упокой здравствующих вообще кощунство и грех Потеряна последняя надежда на общение Однако и в последние дни бархатного сезона в городе еще есть чем полюбоваться и чему удивиться Перед сном записывайте по одной вещи за которую вы благодарны Если раньше несколько лет назад я друзьями называла всех кто мне доброжелательно улыбнется то сейчас Ненавидишь бардов независимо мыслящая личность не думаю что я его опережу и выключу ноут потому что он долго ищет Убрать мишуру быть просто собой Как раз перед ним был километровый столб Процедура отбеливания зубов в Краснодаре Придя домой не верилось что такое произошло и не верилось что все обошлось Вот интересно австралиец Мердок критикует вопросы политической жизни США Атаман свистнул своим ребятам хлопчика тут же подхватили и понесли в госпиталь а мы с Любашей побежали следом Коммунисты неплохо креативят в Волгограде накануне выборов в гордуму Я даже припоминаю картинку из советских учебников истории Мы миpные люди мы миp беpежем Но сегодня свредничала заставила продавщицу 2 раза перевешивать Вижазисты комментируют что в этой работе трудностей нет никаких лицо выбеленное слезки невнятные Итак завтра защита диплома после которой я мечтаю навсегда распрощаться со своей научной руководительницей А какому стилю музыки вы сами отдаете предпочтение Об Аввакуме узнал из постов Булочникова и до сих пор он иногда репостит материалы Олега Не зная отдыха и сна слова сплетая грамматику не упуская поэт творил Ответственно заявляю Установила словарик Lingvo на компьютер Все сложно и очень бесит Так уж получается что эти люди встают между тобой и твоей смертью в общем любую моральную поддержку в виде живой души в тот момент в общем будет тебе кофе и какао с чаем Причем так сильно что я даже ахнула потому что конъюнктивит может настигнуть не только Уму Турман и моего соседа по даче А потом можно увольняться и хоть в Патагонию хоть в Гондурас Спокойно и не торопясь расселись едут молчат мне нравится мужик в серой накидке с рисунком Скачать дополнение для оперы чтобы скачивать в контакте И если б не этот год в моей жизни никогда б не было таких замечательно теплых Вовки и Аси Ольги Мишани и ежика Дюши и еще многих других Мальчик читал с упоением Сухинова продолжение Волшебника Изумрудного города имхо бякость страшная но читал Тебя ощущала в тебе растворяясь А в подземельях замка выставлены различные орудия пыток существуют люди у которых не голова а непонятно что Тогда соответственно говорят о язычной гортанной или носоглоточной ангине Разврат-то каков За то что щеки не могут улыбаться уже потому что болят И соглашаешься с ними что ветер живой что его сила безгранична и только когда ты на вершине мира ты не боишься его ты часть ветра и ветер часть тебя мы единое целое Потому и взываю к опыту сообщников Спасибо тебе за внимание к моему ЖЖ В центре очень много магазинов где можно купить марионетки разных размеров от спичечного коробка до почти человеческого роста и персонажей Тасовать карты ни в коем случае нельзя скорее потому что выглядит это странно В следующий раз будет лучше Лучше молчать и слыть идиотом чем заговорить и развеять все сомнения Как ни удивительно но я сумела побороть свою лень и взять-таки с собой форму на физкультуру Из сообщения местных властей нельзя сделать вывод является ли список окончательным Обидно что на многих фотках я в куртке т.к. было довольно прохладно Ладно я разрешаю тебе какие-то силы допустим 100 легких лучников иметь в своем распоряжении для поддержания внутреннего порядка Не знаю нужно ли тебе сказать спасибо что ты предвидела этот момент Основной причиной по которой я сделал такой выбор является то что я очень хочу стабильности в стране Одна из функций рекламы образовательная значит она как и искусство является способом познания пусть и ну очень особым такой вообще не существует причины ну то есть она лежит с вытащенным языком К сожалению по большей части это нецензурная брань или откровенное нытье Победители и призеры награждаются дипломами и ценными подарками а ведь часто так и бывает свободного времени мало становится дети работа и все такое Ты не видела где мои носки Ошибочно считать что раздача ключей ведется только в одном направлении от сервера к пользователю Опаздываю сегодня на работу страшно Расстраиваться от мысли что плохо снюсь во снах твоих бред просто показалось что за ночь он как-то поменялся то ли подушкой я его придавила Но сегодня мне снилось что я ей звонил А ночи сейчас хорошие какие-то странные мистические они мне нравятся В отличие от рассмотренных выше проектов крупных порталов этот специализированный ресурс занимается только фотохостингом На завтрак меня ждали Вначале мы с полчаса стояли в здании пока нас не отвели на площадку Я пришла домой на час раньше чем следовало бы потому что я просто уже замерзла не ну ни один обогреватель не помогает окромя мужчины конечно Компания превратит ваших близких в урны алмазы фарш листья ясеня Праздник жуть но пусть будет повод встретиться с друзьями и подругами Нахожусь в непонятном состоянии настроение то ли прекрасное то ли паршивое Конечно же не обойдется без конкурсов с призами от спонсоров Следующей после джо в книжке идет точка закипания Электронная система Сайлау покажет тот процент ЗА который будет заложен в нее комитетом нацбезопасности где стоит параллельный центральный сервер Завтрак вполне приличный не знаю кому он кажется скудным несколько видов йогуртов колбасы сыра булок пирогов джемов И вообще интернет почти как телевизор наркотикоподобен Организмы тут же затеяли возню стали брыкаться визжать и медитировать мешали Обычно она воду пытается пить из кружки в которой я мою стеки и руки Долго шли солнце уже садиться стало в лесу слышны залпы тревога в княжестве ищут нас беглянок некоторые ничего не соображали вообще с небольшой затратой времени удалось доиграть Полиция сказала что на Карловом мосту нет видеокамер наверное чтобы не портить исторический вид Только сегодня работала с клиенткой про переживание того что непонятные неожидаемые собственные чувства и переживания непонятные их истоки означают будто меня нет На Серебряном дожде я слушала периодически его программу про джаз Однажды в этот мелкий город приедет какая-нибудь старая рок-звезда настоящий талант прошлых поколений и поскольку моя группа будет единственной в городе не придется разбираться кто выступит на разогреве Считала сегодня по календарику и теперь зачеркиваю крестики в ожидании весны Мало того что они ходят только вперед так еще дойдя до конца становятся королевой Написал коммент а он куда-то пропал Выводок чудябриков по-любому будет со мной я их в мастерскую отвозить буду Я сплавлю вас вместе на все времена ну в общем признаков нет и беременности нет Ну была еще одна заменить что ли Реклама Пепси советует нам помнить о прошлом но жить здесь и сейчас В интернете более общительный чем в реальной жизни Ослуживание безупречное а цена как раз такая что вы ищете А раз есть о чем мечтать значит есть к чему стремиться ты с какого района объясни сначала Продолжительность занятий небольшая всего 3 дня Хочу завтра прикупить какой-нибудь симпатичный удобный блокнот или тетрадь Всегда чувствовать себя у черты что ведет к счастью и никогда не переступить этой черты Всякий кто выжил героем продул этот бой Не знаю кто оказался главным редактором а совет его был похожим на мамин Мужчина и женщина не могут жить друг без друга но частенько случается что и друг с другом им становится тяжеловато Желаю чтоб на твоем жизненном пути не было вообще никаких неприятностей Довольно большая цифра для 15 квадратов на которых эти милые звери живут Уж не знаю кто ей порекомендовал для такой роли меня наверное кто-то в Спорткомитете но чувствую что-то не то в этой газели А то последнее время раньше восьми встать не получалось а в универ необходимо к 9.30 прибыть Угощали вчера своей едой Открыл для себя лыжный сезон наконец-то Подделанная подпись по определению неаутентична даже если мы не можем подделку распознать Подробный отчет в новом году Нам нужно признать и отучиться от нашей внутренней мизогинии так чтобы мы смогли преуспеть и спасти этот больной мир Последователи Тантры скажут вам что если у вас нет времени изучить своего партнера вы никогда его не узнаете Я наверно никогда не чувствовала себя такой защищенной Эти люди очень принципиальны и готовы преодолеть многие трудности во имя своих идеалов Город можно расценивать по его ритму в Киеве самый высокий ритм а когда я приезжаю в Х то кажется что город стоит на паузе В зале на одной из стен находятся надписи сделанные якобы классиками Обдумываю что с ним делать и как постинги комментарии оформление Вечером мы снова вкусно ели и долго спали все исключительно для того чтобы проснуться к вкусному завтраку кто-то жертвует всем ради любви и идет на преступление а кто то совершает подвиги во имя любви кто-то отторгает себя и посвящается любимому человеку а кто-то заставляет ради нее же посвящаться ему Жигули она же классика стоят на конвейере 30 с лишним лет являясь по существу убогой копией Фиата середины 60-х Приора с Калиной унылые образцы дизайна 15-летней и технологий 40-летней давности Суп проще вылить в последний день и сказать что да было очень вкусно Отечественные банки в основном работали с корпоративным сектором а его состояние сейчас мягко говоря не блестящее Ваш партнер не является вашим врагом в общем вижу цель препятствий не вижу Снова подборка светильников по личному вкусу Даже детей своих угомонили что само по себе редкость Начала свою карьеру ди-джея в 2007 году Вадим во время важных совещаний прячется под столом зачитываясь медицинскими журналами Врут зеркала что красота померкла врут зеркала что молодость ушла Отметил новый год в больнице подарив старому свой аппендикс не знаю честно говоря как правильно пишется это слово не казнить Приведем примеры полного несоответствия проекта многим параметрам что и вызвало социальную напряженность на Загорянке Приятно познакомиться Мой босс бывает крайне неадекватен а иногда и более того зачем ему вдруг понадобился мой приезд я так и не могу понять ну окей я буду Монастырь был очень большой и красивый В деревне жил старик очень бедный но даже короли завидовали ему так как у него был прекрасный белый конь Православная Церковь является единой и соборной а потому никого из ее членов не может не волновать судьба своих братьев-единоверцев где бы они ни находились Это же не развалины средневекового замка где можно найти если повезет сундук пиастров или череп бедного Йорика Отжимания от медбола 3х10 кстати баня загорелась как шульга с зимариным уехали Конкурс проводится одновременно в России и в Италии не знаю ходить на море делать ремонт кого-нибудь встретить Бывали случаи что за день заливало весь подъезд Творческий потенциал может увеличиться Проблема есть даже кот у меня насмотрелся и научился периодически мимо попадает он же здоровый у меня лосяра Особливо это чувствуется на премьере фильма когда есть с кем поздороваться Я вообще горжусь как за себя не гордилась сроду Муж уже вернулся и Ваське спать пора Боже как глупо все вышло Осчастливленный новым альбомом выхожу на просторы ночного города и решаем мы с Левонтием и Анжелой идти гулять по оным по пути втариваясь коньяком и колой Сергей Викторович благополучно улетел в отпуск а значит что вижу тряпки лежат на полке у друга спрашиваю что это И естественно разрешили взять со мной девушку Ну в общем она имеет Женское счастье Особенный человек естественно виделись по полтора часа минимум каждую неделю на протяжении 8 лет Кто-нибудь сталкивался с такой ситуацией Поведайте плиз а какой предмет она ведет Рад рад за тебя теперь только экзамены сдай Мне ничего вот пока не понятно Вот только это по-свински и совершенно нагло Обычным мылом лучше не мыть тело т.к. мыло сушит используйте гель для душа И никого из моих а те что наполовину естественно притянулись к другому полюсу С ним можно говорить на любые темы кроме конечно отношений с другими мужчинами чтобы просто напросто не ранить его он естественно за ним нагибается и вдруг в глазах появляется иконка Чего же они так испугались все эти римляне всего-то книга всего-то о любви в общем питаюсь окрошкой пью минералку смотрю уже 5 сезон клиники Потому что время еще есть и деньги тоже Спасибо огромное за репортаж Выходные выдались на редкость и радость долгими и прямо скажем отдыхательными Сегодня в мои выходные мне позвонил начальник и вызвал завтра на разговор Если Вы полетели самолетом Аэрофлота то никогда не сдавайте в багаж ценные вещи Поднимать надо не читаемость а культуру прежде всего Предположительно основан в XII веке в период правления династии Неманичей Неожиданный у вас мальчики для меня диалог Спасатель от него зависят человеческие жизни а общем и судьбы людей Хорошее такое кино классическое смотреть приятно и легко Ну а больше я ничего не могу советовать потому что очень от секреции зависит к себе его забрать не можем т.к. с моей собакой не сживется ни одно живое существо Изданный в 1368 году этот устав определял горное право порядок трудоустройства регулировал добычу и торговлю солью в общем о Йоте я услышал впервые из уст очень продвинутого студента-экономиста Артура который вместо книжек и тетрадок носит с собой маленький ноутбук Работодатели не должны платить государству Присоединяюсь к справедливому негодованию Ваш цветок всегда должен быть рядом чтобы защитить от обмана и зависти и ослабить приступы ревности которым вы подвержены Собственно я им заинтересовалась не только из-за статьи а вспомнила что мы как-то заказали его в каком-то кафе в Амстердаме Попугай с удовольствием любуется своим отражением надувает щеки ставит гребень Вот хоть бы раз она чего-нибудь ответила Последние две номинации не слишком оптимистичны но если даже мы хотя бы в одной из трех номинаций получим первое место тоже неплохо пиар как-никак Но это хорошо так как затем из отколотых зубов удаляются нервы На данный момент внутренняя валюта сети употребляется для покупок виртуальных товаров в играх Facebook в некоторых интернет-магазинах работающих в социальной сети а также для расчетов в скидочном сервисе социальной сети Facebook Deals крем детский нет Я не перепутала со вчерашним днем Я и сегодня купила вместо лосьончИка для тела буду пользовать его только она не желто-красная а невзрачного цвета и сухая Сидела разбирала почему в момент когда я сдаю экзамен уже 4 раз кто-то разговаривает и я теряю концентрацию Вот это-то вкупе с духовными скрепами на что списать Но сейчас я точно знаю на вашу поддержку в беде я могу рассчитывать Очень скучала по нему все лето ну кстати девкам было не 13 лет когда им в руки дали инструмент а 16-17 Сложно на самом деле объяснить то что происходит в моей душе Парламентский принцип формирования правительства двухполюсная поляризация политического спектра наличие у партии политической позиции сильного лидера и известных имен с репутацией профессионалов дают этому правительству массу преимуществ уже на старте Не особенно честолюбив но не терпит когда его обходят по службе из того же чувства справедливости пожилая девица сестра князя Иосифа Венцеля постоянно живущая в Саксонии Привезла мне чудище Просвистевшая над головой пуля заставила его обернуться Некоторым изменениям прямо скажем удивлена Это перевод фрагмента воспоминаний о жизни в Англии в провинциальном шахтерском городке рубежа 50-х и 60-х годов Это была единственная экскурсия на гору Монсерат о которой я расскажу в следующий раз в нужный нам день и он на удивление пришел раньше обычно он опаздывает на 10-15 минут и я его матерю потом но сегодня он меня лишил этого удовольствия Мы так много говорим о любви и так мало любим Я узнала об этом давно но меня до сих пор приводит в ужас эта мысль Постарайтесь теперь найти и отсканировать все законы касаемо авторского права ну и гражданский и налоговый кодекс так за компанию Он станет пилотным проектом в рамках туристического кластера на Северном Кавказе Пройдя еще немного он понял что идти дальше сегодня не сможет и остановился в Эрендзи ну то есть ничего конкретного а в целом обо всем этом После изъятия Рожновым у меня диктофона сопровождающееся ударами в спину я понял что таким же образом могу лишиться и фотоаппарата и надо спасать хотя бы имеющиеся кадры Зачем мы пишем дневники Если очень хочется спать вздремните Хочется жить отдельно от этого сумасшедшего стада извините не в обиду сказано Он подразумевает следующую логику исследования полностью просеквенировать несколько десятков геномов высокогорных жителей и путем многовариантного анализа по сравнению с геномами обитателей равнинных областей выявить различия в генных характеристиках Чувствовалась рука тренера Хранительница домашнего очага должна быть верной мужчине иначе ее дети окажутся без добытчика Норнштейн это человек которым мы можем гордиться что живем с ним в одно время и в одной стране в общем пока не прочитаете не поймете Низкая интегpиpованность следует своим побуждениям малоконтpолиpуем вообще не знаю чем занять себя этим вечером Кстати что-то не все цифры видны Поссорилась с фотофайлом как подружусь еще с каким-нибудь ресурсом хранения картинок кроме лж плюс то выложу все сюда еще Поэтому если я случайно начну истерично хихикать или неуместно шутить или неуправляемо объясняться в привязанностях это нервы Сначала купила пластырь Никоретте Представьте себе какой-нибудь офис на территории бывшего СССР не отмечающий 8 Марта Новый год или День защитника Рюкзак часто добавляется к последнему варианту А к тому что исключительно на мой субъективный взгляд ребенок и сам может сообразить как слепить елку или дедушку Мороза Даже не знаю что сложнее про нотную грамоту молчу вообще Он говорит о том что есть иная действительность и стоит ее постичь как эта так называемая реальность просто блекнет становится нереальной Официальное фото от организаторов Я возмущалась ну как это как-то это так звучит нехорошо И я безумно рада что я здоровая а не инвалид Рабочий день длинный потому что здесь наконец много дел По-моему не одна я испытала эстетический шок потому что область в радиусе предполагаемого эпицентра в случае падения этой биопирамиды в считанные секунды зазияла неинтеллигентной пустотой Мозаика из сплетенных пальцев наших рук чуть ближе друг к другу ощущение сказочного спокойствия и защищенности в его объятиях Ударение всегда на первый слог две гласных означают более долгий звук Про вас можно сказать что вы любите алкоголь без всяких задних мыслей Любое внедрение в тончайшую паутину энергоинформационных нитей человека может принести огромный вред И у меня кстати тоже в машине аккумулятор внезапно сдох Непридуманная история из сети Я купил весы с ними время летит незаметно Так что как сказал Поль Валери Если кто-то лижет тебе подошвы прижми его ногой прежде чем он начнет кусаться Пересказываю со слов не знаю насколько точно но постараюсь это ж простите не кольчатые черви и не растения которые размножаются почкованием Подгрузился список контактов Основная часть архитектурного ансамбля если так можно выразиться состоит из самолета Boeing 727 Набирала скорость еще в горах Папа откуда ты черпаешь эту информацию Сочувстсвую и желаю чтобы все решилось а как помочь в таких ситуациях вообще себе не представляю Девчонки завизжали при первых аккордах первой песни сыгранной нашим бэндом Вот пишет замечательный издатель журнал с вашими стихами напечатан Чувствовать принадлежность что ли Невозможно свести Православие лишь к индивидуальным убеждениям оставив при этом в стороне практику жизни Пишите мне чтобы я смогла убедиться что мои сообщения вообще где-то видно Неоднозначное чувство у меня осталось после просмотра фильма с одной стороны чувствуется тяжелая атмосфера в которой принимаются важные решения происходит изменение сознания героев рушится внутренний мир строятся новые ценности Наглядно привожу еще один расчет чешский писатель-постмодернист известный широкой публике по роману Невыносимая легкость бытия Поэтому для взаимности у нас должны быть хоть какие-то общие интересы Как я понял это изначально сделано Строгость задаваемой им системы координат загоняет человека в созерцательность Эмоциональная перегрузка В первых строках своего письма спешу сообщить что я девушка Кинокомпанией DreamWorks планируется выпуск планшета специально для детской аудитории Это как раз та развилка до которой мы потом НЕ дойдем То что пристегиваться необходимо и нужно вопрос понятен но то что ты будешь нести ответственность и за тех кто не пристегнут в машине вообще наводит на мысли Всеми правдами и неправдами пускают социальную пыль в глаза Сами убрались или с чьей-то помощью во время гололеда и теперь залечивают раны Приклеенный скользяк или нет это точно не угадаю И в очередной раз думала о том как легко естественно просто Преинтереснейшее положение у нас сложилось на рынке платежных систем Сегодня улыбнуло шла в поликлинику менять полис долго тянула с этим делом так долго что дело стало похоже на французский батон такой же длинное и нелепое проходила мимо какой-то пятиэтажки а там вовсю трудятся славные граждане Таджикистана я первый раз каталась на таких креплениях Благодаря моей довольно набожной бабушке я привыкла отмечать еще один праздник а именно именины Я морально уже готова произвести на свет название для такси Следующие 3 часа мы были заняты преодолеванием трудностей протискивались в узкие щели спускались поднимались ползли на карачках шли по колено в холодной воде отбивались от летучих мышей и филиппинских школьников на прогулке Приспособление электрокалорифера установленного с поддержкой винтов в дно корпуса состоит из осевого вентилятора и спирального электронагревателя Причем у них очень много заказов ах да в завершение я сегодня еще сходила в бассейн и наплавалась вдоволь В книге приведены практические советы как справляться с реальными и часто встречающимися проблемами внутри фирмы а некоторые фразы так вообще убивали Чтоб глаза у ней счастьем светились Спасибо за твои записи в ЖЖ которые я иногда залезаю перечитывать Теперь я знаю что бомжи дерущиеся на улице это не бомжи а РЕСТЛЕРЫ Баклажаны перец помидоры запек на открытом огне почистил шкуру нарезал и смешал с чесноком и кинзой Единственный минус Тельцов это упрямство даже когда они неправы Ваше отношение к идее равенства мужчины и женщины Много букв сначала хотел сделать из него юпик но в миниатюре совсем не то После войны в Ливии около миллиона египтян вернулись на родину пополнив без того огромную армию безработных Мне только кажется потому что я в них совсем не разбираюсь Эффективность способа напрямую зависит от скорости его применения Осталось понять что же все-таки сдохло мать проц видюха или ну пусть будет так пожалуйста блок питания И то еще минут сорок наша четверка ждала когда подготовится машина инструктора А я читаю все молитвы на ночь я книжку в церкви купила а вот Отче Наш не могу наизусть выучить Статусы для одноклассников смешные Я верю что браки заключаются на небесах а значит мы уже записаны в бортовом журнале на места рядом друг с другом Сейчас в моей голове происходит примерно такое Однокурсница в аське ошарашила предложением написать мою фамилию на ее лабораторках типа мы вдвоем сделали Когда Белка в очередной раз пришла ко мне и подставила мне пузо я постелила пеленку у нее под боком и положила туда Лилового Червяка Забыла в доме джинсы а джинсовые бриджи найденные с прошлого лета естественно с меня свалились Ну а космодромы понятное дело должны охраняться Всего в этих категориях от России участвовали около 60 работ Оно тоже прекрасно оно настоящее живое правдивое А в 8.30 я пошагала на пары а вечером дописывала курсовую Однако подходы к решению одних и тех же правовых вопросов иногда разнятся Это привело к девальвации духовных ценностей апатии и аполитичности Я уже подумала что это насовсем Потом искренне удивляются и бранятся когда им откажешь И мерное биение пульсара сжатыми кольцами магнитного поля отсчитывающего тысячелетия жизни огромной вселенной окружающей нас Мозг готов треснуть Ну и слегка фотки пейзажей вокруг моей теперешней берлоги в смысле института Я как пешеход буду вас бояться как и всех машин В ночь с 7 на 8 декабря Финикс уступил Сент-Луису со счетом 3:4 В прошлую субботу разбили на кухне пустую пивную бутылку в пятом часу утра Кто заменит Деппа на посту исполнителя главной роли пока неизвестно так что Дима давайте сначала вы в Тарусу а потом к нам в Одессу Коды к играм в контакте Нашла троллейбус расположилась в совершенно пустом салоне естественно сейчас мало охотников ездить в Эстонию долго созерцала пейзажи за окном Завтра попробую выручить новый В общем-то любая посвященная спорту новость для меня как владельца этого блога можно сказать сюрприз вот кажется приведенная ниже класснее и не пожелаешь Совершенно измученная спазмами ознобом и слабостью я зарылась в одеяло и пролежала так до вечера Начал читать с конца и поэтому уже был морально готов в концовке у птенцов кстати нету мышц Вот и получается теперь что женщина действительно неделимое целое с мужчиной если в Киеве маршрутки не будут брать стоячих людей битком то ехать на работу и с работы многим придется не час-полтора а два-три У меня так же как у пациента было много непонятного но игра состояла в том что я врач а он пациент Позавчера пересматривал Горбатую гору и в памяти всплыло сразу 2 человека А все же с огромным удовольствием я бы поехала в Москву но невозможно В общем берешь картинки из журналов вырезаешь интересующие темы делаешь из них коллаж и направляешь энергию для реализации желаний Наконец-то мои ручонки добрались на кнопочки написать в профайле и вот решительно собираюсь накатать несколько постов о том что наслучалось за это время День прошел полностью одухотворенно Прикладываем к разбитому лобику извлеченное из холодильника мясо пытаемся успокоить и попутно осматриваем Ну а если что пойдет не так как надо обращаться к семейному врачу Следите за нашими репортажами Итак что вы можете подарить мне если не знаете что Пассажирам задержанного рейса выдали лежаки и огородили территорию вокруг них красными лентами Теперь ты снова будешь писать добрые сказки а я всегда буду рядом Любопытства у них побольше чем у нашей легендарной Варвары за небольшие деньги или даже просто так в умелые руки отдаются замечательные книги Практически никакой информации извне вот это у меня пробел пока насчет струй Народные рецепты отбеливания зубов в общем срочно надо в сберкассу завтра днем еще будем тут уедем скорее всего на трехчасовой электричке Ручниками я считаю любителей которые тоже знают все фотографические азы но при этом снимают исключительно в ручном режиме Сегодня согласно всем кодексам и сводам правил заверив у всех заверителей и проставив все печати официально поздравляю товарища хорошо быть слепым и глухим и на всякий случай немым Мы не сразу отыскали инструктора но сильно обрадовались когда нас нашел доброжелательный мужчина с очень накачанными руками Я уже забыла что это такое идти в обуви без каблуков Настроение непонятное какое-то солено-сладкое с одной стороны жалко расставаться с родителями и другими близкими людьми с другой радость от наконец-то сбывающейся мечты можно и так это назвать хотя скорее стремление к более спокойной жизни ну и для меня лично есть огромная доля приключения в этом всем это как минимум интересно я всегда мечтал о таком путешествии вот так сижу обуреваемый чувствами Прагматично так подумайте если охота будет Недавно говорила с одним человеком на эту тему и он мне поведал что его родственники вообще не общаются друг с другом Соедините две получившиеся смеси в одну И вход в дом каждый хозяин обустраивает с таким размахом Это еще хорошо что ты в рыбном журнале работаешь Хюлькенберг квалифицировался девятым но на старте у него возникли проблемы в общем снится мне что я нашел-таки артефакт позволяющий видеть что там у людей внутри Что белому человеку кажется моральным для японцев аморально Просмотреть скрытую информацию в контакте Практически минуя сознание ощущение этого постоянства уходит куда-то внутрь и волна за волной ложится где-то очень глубоко Мне нравится что он кладет мне голову на плечо и это естественно Не торопясь и на низкой температуре печь безе Мир не шибко справедлив Если сравнить площадь крыши и нашей квартиры даже только кухни с прихожей потому как теперь сволочи выселены туда так на крыше места явно больше мы с Денисом вместе рисовали он мне очень помогал и поддерживал это доя меня очень важно Это где такое случилось Подхожу к тому дому где скребут лопатами таджики и слышу Вот опять она Сегодня поперлась в поликлинику близ дома полчаса блуждала потом набрела мне дали от ворот поворот дескать я ни по прописке не подхожу им ни по универу Сегодня гоняли с любимой на стрельбище в Манчестер в общем уезжали в печали и тоске когда еще предстоит эта поездка но с огромным желанием приехать сюда летом страшно как-то теперь домой поздно возвращаться Если она этого не дождется или Вы ей не напомните о Ваших отличиях то она будет действовать строго наоборот Я наливаю воду в кулере как обычно смешиваю холодную с горячей а он мне Осторожно вода очень холодная А гостиная она для того и делалась а то в РД Урала уже вообще ничего святого не осталось А потом я долго-долго-долго их юстировал Потихоньку-полегоньку бюрократические инициативы приобретали маразматично-параноидальные оттенки но бисмиля многие инициативы так и остались инициативами не получив материального воплощения И как он с остальными членами семьи Да что с тобой говорить ты ж наполовину в земле В очередное пробуждение я застаю рассвет небо набирает все больше светлых тонов Нехотя поднявшись я переоделась и побрела на кухню Но на деле Марк никогда не умрет в каком-то там лесу Не о визите же к элитному пульмонологу насчет обструктивной эмфиземы Под надзором нескольких учителей они проводят сутки в этом центре играют читают проводят дискуссии Правда я его как раз с 80-х и люблю Но как и в любом парке там естественно были экскурсоводы Значит в субботу покажут кино про кидал Кидалы Потому что рисовать на себе я не могу раздеваться без рисунка как-то тупо а красивая я и так ПАСЕ это всего лишь ассамблея парламентов Стоит возвысить мозг над остальными органами и ему останется только критиковать то есть выхолостится его основное предназначение Всего диалога я не помню но посмеялись от души Подскажите мне темному чего зазырить перед сном типа можно без мяса можно даже без кровищи Он был молчаливым симпатичным брюнетом а я рядом с ним была невыносимой болтушкой Предлагаю вашему вниманию похожие по смыслу но разные по содержанию два фильма о любви на всю жизнь Никогда не думала что меня могут поставить в тупик такие вопросы как Какие мне нравятся фильмы или актеры Хотите разъехаться так есть же обочины И нужно ли вообще спрашивать разрешения работодателя на добавление материалов в собственное портфолио В октябре 2001 года он попросил помилования за примерное поведение в тюрьме однако суд отказал ему в освобождении У двери валяется серая тряпка Суббота прошла под эгидой хорошего настроения Покопаться в песке одно из любимейших занятий забавное обстоятельство в эти выхи был день города и пьяного люда на улицах было ну очень много У нас все выкосили нещадно Сентябрьский семинар продолжение встреч целью которых является исследование истории диктатуры и протеста против тоталитаризма Рекомендую к сотрудничеству Промозгло и муторно Вот такая вот история в общем-то из статьи понятно что наши власти исполнительные теперь могут в пьяном виде делать чего захотят и отвечать они будут только перед своим начальством Распределить по пекарской бумаге натертый имбирь и цедру и сушить 30 минут А Фея стояла на балконе и думала о стрижах которые стремительно проносились перед ее глазами кстати вам финдиректор не нужен случайненько Собственно вторая наша экскурсия Есть дача а это оба выходных плюс вечер пятницы На следующей неделе в четверг 11.08.11 вечером собираюсь в Магнитогоск своим ходом Согласно поверью есть минуты когда пожелания выраженные вслух исполняются Далее хочу отметить что моя работа связана с постоянным общением с людьми Длился этап чуть более часа Как открыть одноклассники через секретный вопрос Напьешься в хлам и станет противно соратникам и друзьям Обязательно хочу миссию с дирижаблями обожаю эти летательные аппараты Акинфеев вовремя вышел из ворот и не позволил бразильцу открыть счет однако на добивании первым оказался Ибсон который и расстрелял пустые ворота ЦСКА 1:0 Как вы полагаете справедливы ли эти упреки Насущного много и оно разное но мне хочется вернуться к теме о которой не говорил бы только ленивый наш кризис Ты специально синхронизируешься со мной по выходным когда меня нет Теоретизированное мышление необходимо для решения проблем В общем вся дорога туда-обратно заняла общим счетом часа два с половиной Пряный аромат гвоздики способствует укреплению памяти Или просто не считает нужным замечать собеседника Хотя по виду о тебе такого не скажешь но в тихом омуте Масс-старт в биатлоне впереди еще например Я же говорила что счастие грядет Теперь таких кинотеатров в Москве не существует И к своим проблемам просто присмотритесь чтобы больно не было когда ешь то что нельзя Так возникла вторая после Ассирии мировая держава собственно это почти в одно и то же время снято просто облака плывут Да мне интересно как люди живут и что у них происходит пройдем или нет не знаю и судить не берусь Созерцать красоту бытия и наверное хорошо что я там был один И сетевые библиотеки больно бьют прежде всего по авторам Самыми древними памятниками Синопа являются крепостные укрепления построенные при понтийском царе Митридате IV Провинция с замашками большого города Следует отдать должное заказчику очень четко очерчено техническое задание на производство дизайна Написание Бедных людей это если кто не знает первое известное произведение писателя сопровождалось бы очень полезными комментариями от читателей блога Но тут вспоминается что например пару лет назад в Кельне в связи со строительством мечети когда едва не дошло до побоища между сторонниками и противниками этого мероприятия с обеих сторон присутствовали сплошь вполне европеоидные господа с левого и правого края политического спектра В свою очередь газета Гаарец утверждает что французский министр обвинила палестинских боевиков в бесчеловечности и потребовала немедленного освобождения пленного У меня нет новогоднего настроения одна апатия Рауль тоже не кантерано как любят считать многие Рита ходит в коридоре разговаривает по телефону на попытки загнать ее в чемодан не реагирует В общем моя мысль Классика РУЛИТ О точно пойду с сентября на занятия йогой Третий год подряд я благодаря маме уезжаю на свой день рождения в другой город в другую страну Скульптура Медведь и земляничное дерево символ Мадрида Разгадать вновь ту загадку черт неужели я после своего черноморского лагеря тоже был так импульсивен в общем я вообще без загадочной улыбки об этом фильме вспоминать не могу Какая татуировка бы вам подошла В летние месяцы Роспотребнадзор запрещает жителям края купаться в реке Традиционно правильная инвестиция классический кашемировый джемпер цвета беж с V-образным вырезом а так хочется что-то мочь менять в этом мире не обязательно менять но обязательно быть способным это сделать Привезли кучу фотографий впечатлений и средиземноморский загар И я должен подчеркнуть что настоящий танец это одна из самых прекрасных вещей которые парень может поделить с девушкой Общая топография Южной Пристани Коссово город расположенный недалеко от районного центра Ивацевичи известен памятником архитектуры дворцом Пусловских Он у меня живет в очень маленьком горшке примерно с два моих кулака Да и в любом случае нужно найти какое-нибудь безопасное место для ребенка Однако есть несколько нюансов о которых хотелось бы написать Нет ничего хуже адски болящих зубов От всей души желаю каждому вновь обрести потерянные светлые и добрые качества Я как душа Тома Рэддла разбросана по сторонам света Google прекрасно справляется с тем за что берется Иногда стоит постараться чтобы не упустить действительно милого мальчика В перуанском городе Ило местный житель Рамон Санчес разграбил древнее захоронение и жестоко поплатился за совершенное кощунство Способность не завидовать это величайший дар Несколько дней назад я потеряла паспорт ТОЛЬКО ВМЕСТЕ Заключительный аккорд экономическая интеграция РФ Украины и Белоруссии Территория обитания зверьков а это достаточно высокогорное плато в Андах была обнесена колючей проволокой и охранялась военными а сами животные объявлены национальным достоянием страны перекрыли сайт одноклассники как быть Каждая фотография несет немалую частичку души этого красивейшего места а каждую вторую можно отбирать и продавать как открытку Мы пошли в Художественный нас встретила приятная неожиданность в афише сего не было но мы оказались на 3D версии Мамочки только что получила список вопросов для ГОСов Я в таких ситуациях за конкретные предложения Я не c читаю нужным с Вами полемизировать Сейчас же я дома мне все здесь нравится Не считая этого запрос розыска раздачи осложнен тем что программка ориентирует его к поисковой системе в браузере Ну клятвы давать Бог запрещает Большая просьба приходить на занятия со сменной обувью Опять качает головой и улыбается Пресловутая подкованная блоха оказалась почти самой простой Извините если ярко выразился Ну во первых начальник чисто в теории видит проблему шире Напомнило старый анекдот Из-под плаката выглядывают очаровательные ножки дерева Пока не знаю поеду до Львова или нет да и вообще не могу сказать поеду ли придя в квартиру мы помыли руки начали ставить мне ирокез А мы пили китайское сливовое вино обалденно вкусное Обман зрения это не прикол просто смотрите в центр то есть вы придете с паспортами и будете канючить не хочу не хочу Объехав таким образом две-три фермы и заменив при этом пустые фляги на полные грузовик наконец часам к 12 дня въехал в долгожданное Сандово ни ля-ля так не получается а если получается то ни капельки не искренне и даже очень натянуто Половозрелые и не очень парни и девушки одевают алые ленты и мегаплатья а потом идут пить Взрывом уничтожил шесть автомобилей саму автомастерскую ну и естественно нашего дарвиновского номинанта Кроме того частные средства пойдут на строительство пяти новых стадионов ладно когда он как бы из-под полы Муж включал телевизор ложился на диван и открывал бутылку пива 37-летний форвард заявлял об окончании карьеры еще в конце прошлого сезона но согласился остаться еще на год дабы помочь Арминии вернуться в Бундеслигу Насчет вечерних не знаю но бегущего мужчину лет 70 сегодня в 11 на аллее видел Но теоретизировать тут бессмысленно Собственно он и от дождя очень пригодился На удивление я увидел интуитивно понятный графический интерфейс установка прошла успешно да вообще по сути дела с огнем ИГРАТЬ не нужно Новозаветная модель рулит Не говоря про то чтобы попасть в ангар с танками тоже надо было отстоять очередь при этом явно торопился уйти и одновременно кому-то писал смску Как вы знаете у нас в фонде есть множество самых различных программ помощи детям проживающим в казенных учреждениях Интересно как там работа объективов регулируется На следующей неделе будет новый список игр со скидками Сердобольные женщины которые приносили мамке каждый день немного еды различали их только по масти Потом нас загрузили в машину инструктора и повезли сдавать экзамен в городе Это моя бывшая за это спасибо Обычные буддисты просто шаблоны негодные Иначе происходит развитие у более частого вероятно более чистого и настоящего типа женщины Рассчитан на определенную аудиторию адаптирован под ее восприятие На днях перед сном рассказал мне Я не люблю кефир Оплата в контакте через терминал Очень поразило меня обилие всяких чаев на кухне в новом офисе в особенности факт присутствия моего на данный момент любимого чая который пахнет глинтвейном Потратить средства они смогут на любые цели Расчетов мало одна логика Имбирь активизирует защитные силы помогает сохранить молодость и здоровье до глубокой старости очень уж он неприглядно выглядел непредставительно как-то да и вообще опустился парень ниже некуда а про бабешку я его вообще промолчу что-то даже не хочется подводить итоги вспоминать этот дурдом Без изображения хорошо пойдет никакого бамбука не понадобится Энергосистема Южного Урала относится к дефицитной то есть нагрузка потребителей превышает нагрузку электростанций однако благодаря строительству новых объектов в том числе Южноуральской ГРЭС-2 генерация получит дополнительные мощности и потребность в электроэнергии будет закрыта собственными ресурсами Низкий срок службы 1000 часов но некоторые служат дольше На блогах очень много трепа но иногда среди этих залежей выходит нарыть реальные жемчужинки И честно говоря это не я его это он меня таранил Постарее дедуля был придя на репу выяснилось что мы сегодня опять неполным составом сачков свалил на дачу Сколько стоит домик на острове в Таиланде Семантическая поисковая система используют семантическую науку изучающую смысл слов чтобы производить более релевантный поиск И это ведь есть в каждой нации А то у меня номеров почти нет в связи с восстановлением симки Превратиться в кляксу смяться разжижиться стечь горестными капельками Кстати можно ли сразу запилить международные права чтобы я стала совсем крутая и могла сбежать с миллионами за границу Вообще обычно когда мы ссоримся у меня нет ощущения своей полной правоты то есть я думаю что наверное все-таки права но можно было здесь сделать вот так а здесь лучше а здесь помягче Я сомневаюсь что мне нравится это кольцо а не то два магазина назад Предчувствия его не обманули Чтобы каждый день этой жизни приносил тебе столько радости величины которой хватило бы на то чтобы полюбить ее без памяти эту нашу такую непростую жизнь Если б кто быстро сообразил бы можно было бы выпустить семечки в упаковке как обычно в магазинах продают и штамповать на них бренд баревреволюция Я вам покажу как будить Колдуна Как вы представляете свое положение через 3-5 лет и как собираетесь его добиться Нечувствительны к пониженному напряжению могут применяться в светильниках с регулятором очень удобно Давно хотел выложить некоторые фотки вот лапы наконец-то и дошли Какие смачные фотографии хоть и поела а аппетит разыгрался люблю ужастики но не смотрю теперь и так темноты боюсь а если посмотрю потом вообще спать не могу Фактически по этой же модели он строит свою дальнейшую жизнь Ну вот наконец-то забрал часть фоток у Боди их там много залил сюда штук 25 Ой а что это он делает Но вообще единственное что не люблю мат и про детей Надо дописывать книгу всего чуть-чуть осталось но как всегда лень Я не знала что моя правая нога не особо меня слушает да и вся координация хромает Любое дело направленное на помощь жертвам насилия и несправедливости вдохновляло его Утешаюсь мыслью что двое детей это нормально науке известны случаи выживания взаимоотношений в таких условиях Это я два года назад за пару месяцев до беременности на банкете в честь юбилея одного папиного коллеги Хотя она вроде бы относится к психике мне хочется назвать это оценкой способности воспринимать окружающий мир во всем его многообразии Одобрен был только один карандаш для глаз который я как раз не любила за излишнюю кислотность и крикливость все остальное было отвергнуто Обмороженных больше чем ошпаренных Пытаюсь успокоить руки слезы загоняю обратно и пулей из универа Отпраздную затем отвечу на комменты уж простите Начали с Капитана Моргана и Текилки Порой мне хочется тебя убить И кстати очень зря некоторые убеждены что жизнь не сказка и не фильм в котором все красиво не знаю как у них это получилось но факт В Темрюке есть так называемая военная горка где под открытым небом находится выставка настоящих самолетов и вертолетов пушек и кораблей танков и поездов Но черт возьми где-то есть семьи где родители помогают детям в том что действительно нужно детям а не в том что как считают родители им нужно Полетим все вместе по возможности одной в тишине слушая звуки дома быть и думать о своем читать или просто валяться в задумчивости на матрасе чтобы молчать наедине с собой Она сказала чтобы я съездила туда сегодня Сочетание магическое и очень нам понравилось Родителям малолетних детей советую обратить внимания на новую обувь Сейчас Айгуль находится в третьей городской больнице А потом со временем стало так что я вообще не хочу ничего рассказывать До свиданья Оля мы разошлись как в море корабли Спасибо но сегодня должен аванс упасть на карточку и тогда гуляй рванина Приятно общаться со старыми но давно не встречавшимися приятелями Ничего себе бред Сейчас такое мясо грех не пользоваться не помню где читала теорию что дольше всех живут те кто является самыми большими поставщиками на тот свет то есть все кто имеет отношение к оружию довольно милый и летом и зимой обогреваемый теплым солнышком Поэтому все остальные раздражающие факторы усиленно не понимают моего сопротивления и делают все что в их силах чтобы затянуть меня туда подальше мне даже раскладывать не надо так помещаюсь Мы сняли уже студию в другом месте там правда не поживешь особо Не смотря на дороговизну домов двери до сих пор простые Насчет мира ты уверен что мир так сильно меняется а может это мы меняемся Оказывается можно быть счастливой и несчастной одновременно Пронзительно холодный ветер мчится по пустоши В первый день после большой грозы озеро было серым и непривлекательным на пляже безлюдно Лампочку-то намеренно изобретали Все что я хочу сказать это то что я все равно рядом Именно так большими буквами и с грохотом на всю Одессу Так хочется чтобы таких семей как наша было больше чтобы люди не разменивали свои чувства по мелочам чтобы встречались со своими половинками и живя в любви и согласии растили замечательных детей А столько женщин в джинсах а-ля заниженная талия так и хочется подойти и подтянуть Поводом стал очередной асфальтовый скандал И у нас много общих знакомых например теперешний мой начальник Слава Козлов который Борман А в чем дело-то собственно паспорт я сегодня получила с прописочкой питерской все очень так законно и официально Потому что бесящиеся с жиру госслужбы нужно ставить на место Чудесный ребенок и я таки дошутилась но мы ждем второго Обязательно на него посматривайте Я вообще неспособна понять что руководит человеком когда он делает то что он делает я кое-чем другим занимаюсь интриги плету в общем и мне это нравится у меня теперь плечи накачанные так что бойтесь Напыщенные домики стискивают углы зрения и формат ощущений Понедельник выглядел примерно вот так Продолжаем выбирать красивое мыло на подарки нашим близким и друзьям Надеюсь наш случайный встречный добрался до надежного ночлега Солнце ушло Вспомнила только сегодня утром в автобусе Можно нормально и не вовлекаясь переносить вызовы внешнего мира ну на работе там не ладится или погода плохая или вообще как-то жить сложно и бессмысленно А если б ты оба кеда между собой зашнуровала То есть она не будет пронзительно-красиво прямо в точку и как будто про тебя Наподобие слоеного теста Растерянный я медленно слез с подоконника и подгоняемый недовольным стариком устремился вниз по лестнице Сегодня первый раз пошла со всеми дружно играть в пинг-понг за что кстати всем спасибо Предыстория разгребала гардероб ага Одним словом темные и страшные дела творятся в наших вересковых пустошах было ну очень жарко такое ощущение что на вентиляции сэкономили на все Совсем недавно поняла что значит быть собой Пришлось повозиться Благо народу пришло сегодня больше обычного развеселилась Чурикова и Киркоров как ведущие полное извращение Символизирует стремление мужчин все в этой жизни делать ради женщин Они представляете зовут какую-нибудь назовем ее условно Лаурой на балкон Буду получать третье высшее образование Психология Стоило это все очень недорого Остается ловить глюки и слушать музыку в общем ты добрее чем я Когда наша семья переехала из Душанбе зеленого солнечного гостеприимного города в степной пыльный мещанский Оренбург полюбить новый город было трудно Я просто решила пояснить так как добавляю периодически друзей Мясные блюда не дороже 50 Этот телевизионный коктейль смешан таким образом что с утра нам вдалбливают о проблемах со здоровьем потом о проблемах на планете а тут еще и свои запары вдобавок Летела под елку жестоко отдирала бантики и разворачивала цветную бумажку а там открытка следующего содержания Извини что не черная и не шелковая но желаем чтобы нашелся тот кто будет исполнять все твои замысловатые желания Отдыхаем от институтов садиков ну и вообще на самом деле фильм пустой какой-то Лизенок это набор слов я не знаю что это значит Вспомни наконец что ты женщина прикольно конечно но теперь мне надо срочняком на права сдавать чтоб потом не стыдно было Создается такое впечатление что это иллюзия самовнушение Да и какая разница Доктор Кто это окей и я рад был смотреть все 4 сезона однажды по-любому пересмотрю Согласно древней традиции на поле необходимо оставлять несжатую полоску шеАр остаток чтобы бедные могли собирать колосья Результат комплименты одобрительные ого-го Просто остаться наедине с собой задуматься Захожу я значит в пятницу в лифт там стоит сосед снизу и какая-то вообще незнакомая девчонка Вот погода установится хорошая и все доделаю Рекомендуемо для просмотра любителям отечественных военных фильмов равно как и следующий сериал Осталось только определить куда-то старую но дорогую сердцу моей родни тахту и стеллаж Приехала вчера в Самару Я периодически появляюсь на чужих страницах с комментариями Та что сидит резко вскакивает и пихает той что стоит свою сумку в лицо Шкварчать умеет только свиное сало все остальное тупо жарится Ничего не понимаю я в парикмахерском искусстве Слушает все даже то чего слышать не хочет лишь бы ты улыбалась Тогда может и решения были бы более справедливыми по поручению главы Чечни была создана межведомственная комиссия Комплексное рекламное обслуживание Жидкость для мытья окон не берет Понимаю если б счет был 4-5 но такой разгром это звиздец Слезятся глаза и плачет дождь И если там сказано что иноверцев надо убивать он будет убивать когда прикажут Как просмотреть в контакте кто оставил мнение Окружающие считают их ненадежными самовлюбленными и ограниченными И мне сразу подумалось что при таких условиях пролетарии нарочно будут затягивать ремонт дабы получать побольше денег Льет страшно где-то в небесной канцелярии прорвало трубы предупредили будет лить целый день и ухудшение ждать после обеда то есть сейчас Но в слайдшоу на мой взгляд очень быстро сменяются Я надеюсь что с каждым годом участников акции будет становиться больше а фобий у людей все меньше далее хорошо бы все таки консультацию гастроэнтеролога хотя бы чтобы узнать какова секреция желудочного сока и по итогам пропишут диету острое конечно запретят но я на это уже 18 лет кладу с прибором вносить сюда можно что-то окончательно вызревшее законченное на что уже невозможно и не нужно как-то влиять разве что Вася Воронов да Пашка Пескин знаешь его Получилась смесь бытовой городской новеллы и протокола заседания профкома Найдутся те кто сможет написать стихи это возможность родителям контролировать и помогать чадам Я прижалась к нему подхватив под руку такому теплому и желанному практически родному Экспериментируя с различными музыкальными традициями он создает очень привлекательные музыкальные произведения Рассматривает все в черно-белых тонах как правильное или неправильное не видит всю сложность событий Все немного или много великовато а вот у этой кофты буду удлинять манжеты т.к. очень она мне понравилась а максимальный размер был 18-24М у меня правда очень болит сердце вот о чем мама была верующим человеком нам помогала и помогает Богородица однако я не знаю была ли мама крещеная Раскрытие двух основных понятий пути воина безупречности и самоотражения Ремонт компьютеров в районе метро Коломенская Каширская Тульская Варшавская Автозаводская Не отображается видео в контакте Однако я поняла одно кажется я нашла свое полноценное хобби Ну и ладно а зато в века предшествующие человек был столь бесправен что нынешнее состояние дел в родных широтах может показаться райскими кущами Нашел совсем случайно прикольный сайт А на нем паршивая экранная копия что легко определить по качеству и сигаретным прожигам периодически мелькающим в правом верхнем углу А впереди еще очень много разных социальных ролей Капелька надежды через водопровод проникла в ванную повисела на кране и раскачавшись запрыгнула на полотенце Мужчина был с зализанными волосами и в свитере А мы с ней вчера встречались опоздала на работу потому что заговорилась о сочетании майонеза с другими блюдами Самое смешное что мне эта ситуация напоминает от нефиг делать спать не хотелось так пусть теперь и Вам не хочется так эгоистично так нелепо Потому что на него переводов много Но в общем чего гадать главное что настроение поднимает немерено особенно с утра в общем ближе к концу он умудрялся так вспотеть что с него пот ручьями лился прямо на меня разумеется Я люблю тебя и небо только небо и тебя Продажа кондиционеров в кредит Присоединишься к нам Учительница остановилась и спросила Как вы Добравшись до подходящего по всем приметам места наши рыбаки принялись разматывать удочки по всем правилам рыболовной науки Спасибо не за что рада поделиться Эх столько впечатлений осталось за кадром Получить блогосферный гороскоп для Вашего знака Зодиака нам достаточно факта что мы можем это сделать всегда эмоционально мертвая я приезжаю к Тане которая кормит меня чем-то вроде паэльи с морепродуктами и виски с колой не согласна была на девичнике там девчонки изображали стриптизеров было очень смешно Раньше на такие должности мы взращивали кадров с самого детского сада до серьезных вакансий Продажа путевок в Таиланд в Новокузнецке Пейзажи за окном какие-то незнакомые Поздравляю его и всех вас с этим событием по пути к самой лучшей выборгской бане нам встретилась хореограф по имени Лона попросившая рубля три даже уже не помню на что Первый такой вопрос я знаю что сейчас подобного рода инновационные площадки инновационные города делаются не только в России Может пока я вырубаюсь на пару секунд кто-то роняет на меня бетонную плиту Ей в общем-то все равно было на кого учиться лишь бы мама с папой не переживали что у них девочка не пристроена Никогда больших приколов не было Здесь ветер жуткий холод дикий В общем с наступающим Днем учителя Смирительную рубаху напялят и никак иначе Работать не хочется хочу учиться и радоваться жизни Легкие и элегантные они создают прекрасный образ можешь поговорить с военкомом и дав ему денег как-то получить отсрочку Ну и конечно Мак покатился с ним чтобы оценить ситуацию со стороны На самом деле ты удивительно многогранна и умеешь неожиданно предстать в абсолютно необычном образе Охранник с непроницаемым лицом изрекает самое клевое в столовой это по-любому сортир Ясно что сказать ему особенно нечего Отогревшись и заодно пообедав в столовой отправилась я домой Сегодня была с Антоном на выставке на Винзаводе И вдруг хочется написать из темной аллеи на меня вышла удивительная случайная здесь пара жених и невеста ты главное не отчаивайся если все будет двигаться ну очень медленно Hа следующий день все черепахи сбежали Я пережил то что чувствует море колышимое бурей принимая на себя каждую пощечину ветра Не расстаюсь с мечтой поехать на Байкал на поезде Утром по новостям объявили что на сегодняшний день в ЗАГСах рекордное количество свадеб раз в пять-семь больше чем в обычную пятницу Но это не такой уж большой недостаток если учесть что Телец обычно все тщательно обдумывает перед тем как принять ту или иную точку зрения дергаю дверь закрыто пока ключи нашел минут 10 прошло В общем люди которые меня знают и важно звонят мне на мобильник в курсе что раньше 12 связи со мной нет и вообще Выскажу свое мнение но оно предвзятое фотки с тобой почему-то в большинстве не нравятся Кто бы мог взволноваться случайно наткнувшись на дневниковые записи бабушки о том как она грешила вовсе не с отцом зачиная ребенка Я последний раз нечто подобное видела в отдаленных городишках нашей родины в конце девяностых примерно Она ждала меня около университета или политехнического института чтобы первой узнать как я сдал экзамен Но почему же мне снова хочется с ними встретиться Помощник шерифа получивший не так давно повышение в местном полицейском участке Грин Горча сейчас стоя рядом с ней думал лишь о том как они вместе будут строить свою жизнь На работе так вообще все были очень дружны из-за этого Миллиарды живут по правилу трех заветных п попса пепси и пошлость В их реальности вполне возможно никаких сигналов и не было кроме зова сердца Он прекрасен снаружи и великолепен внутри изукрашен резьбой по камню Анекдоты конечно вещь хорошая но становится ни капли не смешно когда вспоминаешь что провалы в экономике страны как нельзя лучше компенсировались с помощью дармовой рабочей силы каторжников Я уверена точно только в одном в мужчине за которого собираюсь замуж Тратишь на это усилия пусть и некоторые потом и играют против тебя и часто ощущается угнетение в душе Кроме того нужно учитывать исторический контекст версия сказки Шарля Перро появляется во время большого голода бывшего в правление Людовика XIV и высвечивает неустойчивость крестьянской жизни и положение детей которыми первыми жертвовали в случае бедствий Хотя его возили в Москву на операцию тогда всех мало-мальски высокопоставленных чиновников возили лечиться в Москву но было уже поздно Тогда мы были в полной уверенности почему-то что это дело рук барсеточников Для строительства одного гнезда требуется около 35 дней ну поздравляю желаю не умереть а если и умереть то достойно Высказали все это дело манагеру так чисто случайно под настроение попал и пригласил он нас на любой сеанс в МДМ Православие больше не преследуется Плавать на каяке в одиночку не рекомендуется Пассажир Екатерина Леонидовна Лепнина 23 года работала официанткой в баре XXXX В начале XVI века замок станет основным оборонным пунктом от московских войск точно так же как до этого он оборонял Беларусь от тевтонского ордена Опять завела ту же пластинку больница врачи жировик хрен знает что за болезнь рак Почему не выкладываются фотографии в контакт Обмыли дома с мамой и сестрой права Было явно видно что наша поездка откладывается что ребята настроены серьезно и зарплату отрабатывают добросовестно Набрал он в легкие воздуха побольше верхнее ля выдал и смотрит вверх испугается шарик или нет Недавно обнаружила замечательное место для прогулок Скучно было ужас Наконец еще более прогрессивная идея это пропагандировать идею что главное в детях чтобы они были здоровыми и красивыми а не на вас похожими ибо что такое похожесть именно на вас Дирижер маэстро Кацман беря в расчет встречу знакомых стояние с ними минут так по десять остановку у метро была на шпильках и устала Она не отрываясь прочла весь рассказ о своем вчерашнем возвращении в город Транспортировка ковшей с чугуном в конвертерный цех Ура я сделала себе выходной правда провела его как-то странно на улице супер просто а я целый день проспала потом уборкой занималась ну в общем как обычно Низкокалорийное питание диета умные начитанные с пластичным мышлением ну в общем золото а не дети обещаю загладить свою вину с меня очень что-нибудь приятное пиши мне а ничего не делать В обзорах равнозначно будет уделяться внимание двум направлениям документальной и арт-фотографии Удивительно видеть от Ховарда столь халтурную работу Сейчас она победила на конкурсе русского языка в Японии и получила бесплатный билет в Россию Посмотри летние фотографии выпей вкусного чаю позови интересных гостей И ни разу ни разу этой зимой не встал на лыжи Только Танюха куда-то запропала Наркотиков не нашли попросили сдать анализ в баночку и обнаружили в анализе следы марихуаны Подкачал только неожиданно тусклый и однообразный свет а для фотографа плохой свет как страшный сон Расчеты и описание местности убедительно показывают что все чиновничьи стенания об исключительности выпавших ливней лишены всякого под собой основания Ну а потом годы полетели и не останавливались пока мои родители не познакомились но как-то все это было подозрительно Проверку первого запуска тоже сделал не самым лучшим образом но тем не менее уже немного работает Подискутировали надо сказать от души После нашумевшего шпионского скандала фамилия Щербаков в СВР приравнена к ругательству Дома я была почти в одиннадцать часов до трех потом писала отчет и дело тут не в кривоте или прямоте рук просто в горах надо побывать Люблю изо всех сил и счастлив что мы на одной волне Буфетчица нервно курила включались красные огни орали сирены а однажды даже приезжали пожарные Сей пост рассчитан на тех кто еще эту информацию не читал конечно же если читали и вам до лампочки можете пролистнуть мимо этот текст не тратьте мое на чтение вашего творчества и ваше время на его написание спасибо не скажу ибо мальчик большой Президент вызывает к себе генералов Рассказик на сопельки потянет самое то для прожженных романтиков Где можно скачать программу вконтакте не в онлайн Серега который сдержанно и цивилизованно пил безалкогольное пиво беспокоит нашу молодую семью А то больно хочется зазырить Новости страницы не отображаются в контакте 27 февраля была захвачена крепость Санто-Доминго и провозглашена независимость Доминиканской Республики Перезванивает мне Дмитрий Николаевич через мгновение и говорит ну ты понимаешь люди солидные сивуху не пьют возьми нормальный коньяк Он вечной жадностью ведом такой у нас народ послезавтра играть по-любому нужно успеть за завтра найти пласт Любимый и ласкаемый ребенок примет мир добрым и миролюбивым к себе Хотелось бы более подробно узнать о Алексее Шинкоренко опыт работы в области фотографии опыт работы в преподавателем желатьльно со ссылкой на портфолио На прошлой неделе впервые делал интервью по Скайпу Получилось совсем незаметно но надежно В один непрекрасный совершенно день Не знаю зачем но все утро разглядывала свадебные платья в общем за день до ДР Елизавета впала в состояние постоянной пены и пара и слезок Нечаянно запомнили одноклассники как их удалить С особенным волнением я следила за судьбой Дэйнерис потому что это уникальный случай в сериальной практике герой который развивается Правильная форма наслаждение от встречи с Дающим Пространство это сверхтекучая жидкость Прогулялся по парку в очередной раз убедился что живу в самом лучшем районе Москвы плюс ко всем удовольствиям что тут были нашел стрелковую базу по тарелочкам летящим пулять из ружей Живи так чтобы ему было интересно Продукты для диабетиков А вот высказаться на более широкую аудиторию наверное все боятся в общем так как я пользователь анлима ЮТК то мне вроде как надо требовать от провайдера качества услуги Учитесь смаковать жизнь небольшими кусочками и находить приятные моменты в окружающем вас мире И погода чудная и вечер вчерашний вспомнить приятно и птички поют именно поют а не орут дурными голосами Прошли почти весь пляж и наконец-то остановились Лекарственные препараты от варикоза Опосля всех философских бесед различных маневров и экивоков выяснилось что посуду должна мыть опять-таки Левостороннее движение отсутствие перекрестков вместо них кольца просто сводит с ума Я думала он был поваром потому что сейчас он готовит Центральная его часть увенчана двумя башенками на одной из которых даже остался флюгер в виде петушка Хочу выразить благодарность незнакомцу читающему мой жж Не знающие границ сами позвонили поздоровались уведомили что посылка на таможне и поинтересовались когда мне будет удобно ее получить И взор мой весел и стопы мои легки Если до Нового Года не выпадет снег то в ближайшие два года человечество вымрет из-за необратимого изменения климата Можете дарить книги только помните я многое читал я его люблю а он здесь лазает Проблема сама глубже в неудовлетворенности жизнью пустота депрессии В детстве на Украине мы говядину практически не кушали Российская компания приобрела авиабилет у иностранной компании Излишняя трепетность к деталям вынуждает нас видеть зазор на завитке синего цвета упуская при этом огромную мозаику пестреющую всеми цветами спектра Напротив сидела пара веселая Угораздило ехать туда ночью зимой Проблемы проблемы а потом случается настоящая проблема только уже со здоровьем и все остальные как-то сами собой отпадают Зарубежные представительства Госкорпорации действуют в 50 странах мира и играют основную роль во внешнеэкономической деятельности Ростеха кстати да говорят что самое опасное падать не на крутом склоне а на ровном месте А еще первое время контента может быть достаточно много Есть кротон декабрист и еще какой-то лопух который живет и процветает у нас уже Бог знает сколько лет Намазываем уже остывший корж кремом фромаж блан или творог риккота протертые сквозь мелкое сито даже густая сметана подойдет совсем немного только чтобы ягоды потом прилипли здесь я прибежала на крики и пронзительный визг а Яся всего лишь радовалась тому что Варя спит под одеялом и она действительно спала несмотря на бурные эмоции вокруг и не совсем нежные обнимания Ну и естественно большая часть пути прошла по встречке и полоса была сплошная Ей было очень грустно и одиноко От моей дочери которая приезжала к моим родителям на пару недель в поселок Коридоры казались огромными было довольно пусто мы бродили по лестницам этажам Посылая шутки к черту я от всей души горячо поздравляю Вас Одним словом нудный донельзя несколько ранее есть пост об этом и даже фотки сажусь обратно за комп и начинаю что-то себе рыться в интернете Я позвала официанта ну хз наверное надо было убрать волос и все но я позвала официанта и показала ему свою вилку а он сказал что ничего не знает у поваров светлых и длинных волос нет Не прошло и полугода как они заметили что у статуэтки выпуклое основание Не стыдитесь мечтать загадывайте желания и бережно храните семейные традиции Вот только мерилами этой эффективности вы назначили сами себя Разве это не функция премьера Эксперты пока не установили причины катастрофы не всегда хочется вспоминать людей Методологическое брюзжание в ответ ни Бурятия ни Европа нациями не являются соответственно национальных кухонь не имеют Но в связи с волнениями я вижу активизацию сил националистических и хотя острие атаки направлено не на нас я клянусь Богом что до нас дело дойдет обязательно историю не учат только идиоты которых у нас хвала небесам Хотела посчитать сколько Я за сегодня выпила воды У Зайчика кстати сегодня опухли два пальца так как девчонки приземлились на нее а целоваться не перестали На выходных какие-то неудачники ограбили квартиру В четверг 24 октября на заводе прошло выездное заседание комитета по экономической политике и собственности краевого Законодательного собрания в рамках которого депутатам рассказали о прошлом завода его настоящем и будущих проектах Всем руководит золотозубая родня надеюсь мамуля меня простит за мое вранье и обман не позволяй всяким идиотищам портить себе настрой ведь их так много а хорошего настроения всегда нехватка Спать аккурат в семь захотелось Блин А мальчик-то симпатичный смуглый черноглазый Определенно определенно Новый Год нужно праздновать с друзьями Ленится ни в коем случае нельзя Погуляем летом обязательно Послезавтра классная вечерняя тусовка на набережной Открыла утром окна и оставила их открытыми на целый день Обещанные новости В общем иностранцы 3 курс дети вообще в массе своей элитные как в социальном так и в интеллектуальном плане Четвертая вообще меня не возрадовала В любом случае я не думаю что ты имел в виду именно это может перефразируешь Да только прибежала невесть откуда из подпола понятно то есть из подземного царства шустрая мышка Остановились на совместном походе в театр типа это моя инициатива Вот сейчас с родителями собираемся к нему в гости возник вопрос что ему подарить Месяц не сидела за рулем наконец еду Потому что невозможно добровольно отдать желание жить Некоторые из нас могут со временем начать делиться сокровенным с девочками-подругами но первый поцелуй Ира скинь номер аськи свой пожалуйста да и смс написать можно Это было настолько душевно что порой мне кажется жаль что уже так с ним не поговорить А дальше в гости к батьке потом на незалежную и может еще в Молдавию наверное надпись была сделана с любовью и вся любовь ушла только в слово Очередная дурацкая ЖЖ-игра Рассчитаны на разный уровень подготовки и разный возраст Только из-за него стоит сходить развела в воде гадость редкая но ему и она понравилась смолотил больше чем нужно для первого раза В 1635 году маньчжурский хан обнаружил что его солдаты продают собственное оружие в обмен на табак Короче красотка та еще и это все счастье держалось и не спадало с моего лица в течение часов так двенадцати Как известно каждому Одесса невероятно крута Этот щенок йорка см ниже оказался на станции отлова животных в Малаге и был бы усыплен если бы финны его оттуда не вызволили Помилуйте боги уставших кого-то любить Разочарование я отмел сразу разрушить все надежды последнего полугода это слишком Недавно стала снова ловить от Ксюхи запах молока Во-вторых попытки народных демонстраций которые распространились не только географически но и затронули разные социально-экономические классы Этот фильм лучшее лекарство от подобных разговоров короче если кто-то видел мое потерявшееся чудо шлите его ко мне Пришла в офис в чуть более легком варианте чем традиционная моя одежда Ранее сообщалось что Душанбе настаивает на заключении договора сроком на 10 20 или 29 лет но никак не на 49 Предыдущий день первое декабря сего года был для меня полон событий и смены эмоций Опсомания привязанность к определенному блюду Много позже когда я его увидел я решил что из него можно сделать хорошую детскую книгу Папилломавирусы вызывают дисплазии шейки матки что может стать причиной рака они приводят к росту кондилом половых органов кондилом мочевых путей любое движение это прогресс Потому как то что ты перечислил здесь это все правда естественно но это все хрень по сравнению с семейной жизнью Приятного аппетита За трактором шагом марш прокаркал комендант и резво вскочил на подножку машины Хотя хуже чем на физике недели две-три назад вряд ли будет Я думала кстати что даже у маленьких утят перья не волосатые Если ваша работа связана с общением около вас всегда должны быть 3 цветка ириса в высокой узкой вазе Продавцы просто адски выводят из себя Сегодня закончил уборку всех записей в личное Да и вообще мы помрем и никаких предыдущих-последующих жизней не будет я и так в платье похожа на праздничный тортик теперь я только и могу что улыбаться мстительно тетечке с пирожками Я вот как раз про это хотела спросить отдельным постом но раз уж разговор зашел Патологически не умеют принимать решения Миллионов не дарил но жить помогал пока на ноги не встала Пожелайте мне удачи пожалуйста Познакомились со всеми барменами на нашей улочке Представьте Excel если бы каждую функцию пришлось скачивать и устанавливать отдельно Оба с задумчивым видом курят трубки и ведут беседу Лань прекрасное и пугливое создание грациозное в своих плавных и осторожных движениях Мы слушали ее за кулисами какой-то площадки При варикозе вен нижних конечностей появились синяки я не знаю почему может это перед концом света но Вселенная в этом году решила выдать мне компенсацию за все годы проведенные в родном городе в виде путешествий к центрам моей Родины Москву летом и Питер осенью Вот что за чудо изображено на обложке книги Ну как же без дочери Попадались также привлекательные на мой взгляд закусочные Съездил в центр купил билет на Дельфина касса в переходе на углу со стороны больницы Разделенный на две части рекой представляет из себя старую и новую часть Немного думаю о том банальном что если человек твой он непременно вернется так или иначе рано или поздно да и дел поважнее у меня сейчас хватает а если серьезно настраивайся что все будет хорошо Только он помогает и решает все вопросы Вообще мамалыга имеет более древние корни в докукурузные времена по той же технологии варили пшенку Я одно время засыпала под Мастера и Маргариту Это пособие помогает развивать речь и учиться пересказывать тексты как опираясь на дополнительные вопросы так и только на свою память ты начинаешь думать а что неплохо можно и тут жить Смущение одолевает меня конечно хочется назвать их имена Корпорация IBM поделилась информацией о выпущенном процике z196 который выступает в роли чипа эксплуатируемого в стандартном режиме на мегапиковой частоте ну да ничего пять дней и снова пятница из-за реального запарного периода вчера был первый вечер когда села за комп с момента нашего прошлого сеанса Полный текст статьи об этом исследовании можно найти на сайте журнала Nature Напроситесь на дачу к друзьям оказывается в книгомире сегодня есть купил и уже главы три прочитал Как установить веб-камеру чтобы общаться через одноклассники Подойдите ко мне Поселения представляют опасность только для людей которые говорят Мне плевать что делают арабы а вот от евреев я требую исключительной порядочности Террористический акт в Лондоне Я рисовал очередной чертеж который надо было еще недели две назад сдать естественно это не занимает весь день но у таких лентяев как я это занимает недели К тому же многие люди смотрят аниме сутками и читать сутками субтитры не очень хочу и животная суть не позволяет им не занять место старшего Скачать программу для бесплатных подарков в контакте Профессиональные средства для отбеливания зубов Какая она была эта уходящая осень эта грустная незнакомка в длинном плаще и берете Стартапу нужны основатели но не очень-то нужны сотрудники Он отметил что летом ему это еще не удалось толком сделать из-за череды кризисных ситуаций передает телеканал Sky News Мачо все местного производства то есть к отдыхающим отношения не имеют в принципе ничего менять не буду Соответственно дома у меня книги везде и как следствие катастрофически не хватает места В Ярославской области повышается стоимость проезда в пригородных поездах И неудобно уже другой кофе брать не хочется их путать а то ведь в центре города сколько народу к ним заходит поди всех по имени запомни и кто что пьет При достижении загустения соуса добавляем галушки Часто мы сталкиваемся с каскадом свалившихся на нас неудач и решаем что так будет продолжаться и дальше Причисляя себя к какому-нибудь направлению увы приходится расплачиваться за его грехи С ним хочется проводить время дома наедине забывая все заботы и неприятности Счастье привалило короче По сути интереса никакого моему многотысячному другу не представляет однако некоторые один-два человека проникнутся слезами Романтические комедии мелодрамы это нам вообще не надо Настоящая теплая зеленая солнечная и наконец-то можно будет на себя одеть то что хочется а не то что надо Журналисты всегда все нагло беспардонно переврут вспомнил что с прошлого года остались некоторые дела которые можно было откладывать и далее Еще Ясна научилась обижаться когда что-то не по ней и выражает это сразу очень громким криком начинающимся беззвучным сморщиванием и багровением лица Меня вон завтра в суд под расписку сегодня полночи спал с включенной водой затопил косяк весь но сегодня так получилось не потому что я проспала ваши одноклассники и однокурсники рядом с вами Святослав великий князь киевский сын Игоря и Ольги в значительной мере правившей при сыне государством до ее смерти в 969 году поскольку князь все время проводил в военных походах в общем было задание составить краткий конспект истории становления спецпсихологии у нас и за рубежом Понятно что во всех странах мира они похожи но вдруг кто не знает что тут у нас он тоже есть и очень неплохой Она попросила об этом лично меня и сказала что ничего из этого ей больше не нужно и что забрать с собой ничего не сможет нет проблем просто вопрос такой в смысле для тех кто его блога не знает Я до того вблизи не видела мне это было неожиданно Могрен уже забит отдыхающими поэтому базируемся ближе к камням я сажусь дописывать отчет об отдыхе Гоша купается потом решает дойти до утеса с которого отчаянная молодежь прыгает в море Не могу попасть на страничку в контакте что-то с системой подскажите да и вообще усы иметь смелый шаг один букет стоит рядом с кроватью вся комната наполнена цветочным ароматом Здесь часто проводятся различные выставки посвященные современному искусству фотографии и музыкальной тематике Сходили на новый кошмар на улице вязов Когда австpалийские готы добpались наконец до Италии они устали от гpабежа и нуждались в отдыхе Постарайтесь встать сразу же после того как прозвонил будильник раскройте окна сделайте легкую зарядку Произошли поистине революционные изменения в личной жизни и подрос скилл рабочий Поручение же Федотову взять ситуацию с музеем под контроль смотрится странно т.к. нет никаких сомнений что он и без того опекает данный проект с самого начала Радикальные инновационные проекты предлагают разрубить этот узел переориентацией школы на своего заказчика Предположительная цена клиентской базы если она ведется что бывает крайне редко 240 000 рублей Мужик был в трансе и тихо повторял меня в городе не было квартира закрыта была А посмотреть ой как хочется Плюс хаус мьюзик не мое еще хореограф сегодня меня взбесила шажочки прыжочки еще разочек тьфу Те кто был сегодня в универе расскажите что там происходит С людьми уже давно развела жизнь или ты даже и не знаешь их совсем а тут почти вся их жизнь словно на ладони будто интереснейший роман читаешь Перед ними бабулька с вот таким пакетом разных конфет кстати из 4-х фоток что ты сделала 1-я отрезан один кусочек пальца ноги 2-я отрезаны ноги и кусочек макушки головы 3-я отрезаны первые фаланги пальцев левой руки 4-я ничего не отрезано но брюки смотрятся плохо и освещение не с той стороны Удалить страницу в одноклассниках Отпустили аж в 3 часа с информатики С плато был вынужден вернуться на дорогу из-за сильного обстрела из танковых и орудий гаубичного калибра В такие дни ничегонехотения лучше всего идти гулять голова проветрится и с утра с удвоенной силой захочется работать Вчера на искусствоведческой сборке услышала два замечательных выражения от ученых дам и сердце мое уязвлено стало он очень недобрый человек а я когда стрелял знал что это он но подумал что далеко и никто не может заподозрить меня в том что я его убил специально Отбеливание зубов от курения Однако любви куда более серьезной чем у Анакреонта скорее похожей на лирику Сапфо То ли настроение у нее было не то обычно то ли что-то поменялось в общем общалась последние 2 раза она со мной очень мило в среду вот пойду выписываться Обожаю кривляться перед фотообъективом в компании приятных девушек Полку мировых религий основанных на передернутых умозаключениях отдельных индивидуумов прибыло бывают такие моменты когда хочется сделать что-то сумасшедшее И что бы было если его не нашли а он с нами поехал Кому мы доверяем тайны Сказали что плохо но не сказали почему Скоро приедет мое солнце и будем смотреть фильм Самодостаточность как правило ассоциируется с субъектностью разве ты не хочешь быть гламурненьким Пожалуй пора готовить ужин и идти на прогулку Современной педагогической теории эта омонимия кажется периферийной и случайной Что продается в таиландских аптеках То ли металла не хватило то ли скульптор что-то задумал но никому не сказал Молдавская группа Zdob Si Zdub собирается летом или осенью выпустить новый англоязычный альбом если бы было за все время а не за последний год то было бы больше ведь АEP у меня уже 4.29 кстати это был один из самых удачных гигов на мой взгляд А может оно и к счастью А мне от этих супных дел борща захотелось сил нет Транспортная система будет серьезно парализована на один день на 18.02.2012 c 4 утра до 7 вечера Продолжение следует ну думаю что случилось что-то странное И маски для волос у них есть достойные Сегодня вечер кончился в квартире около камергерки в гостях у тети Лены которую мне очень хочется назвать художницей Приближается облако гнева не давайте ему приблизиться но еще на далеком расстоянии разворачиваете его и направляйте в другую сторону Помню момент я сидела в прогулочной коляске значит года 2,5 мне было к нам подошла бабулина приятельница Анна Васильевна нависла надо мной и принялась нечеловеческим голосом вопрошать ну как обычно Ой ты ж кто ж такой маленький тут у нас сидит Ненавижу безысходность Нельзя верить и прощать всего лишь от одного красивого жеста не хочу учить тебя злости и неверию но все же Почти с самого рождения Яси меня сопровождает Агата Кристи обычно я скачиваю все собрание сочинений понравившегося автора а эта тетя была ну очень плодовита на свои рассказы и романы и вот теперь они подходят к концу и меня ожидает Станислав Лем и цитология с гистологией то ли депрессняк то ли от погоды в общем настроение совсем паршивое Любой человек может сам того не ожидая стать преступником или жертвой преступления в любую минуту и в любом месте Пришла сегодня утром на свои танцульки Ну все сегодня будут вещать про природные катаклизмы свои отпуска хотя об этом и нельзя писать и прочий позитив Террористы пытаются напугать нас А Амстердам потому что тоже мокрый по идее мне должно быть очень стыдно Обтереть грудь живот и для ускорения обмахать потом спину Претендент депонирует на определенном счете сумму достаточную на покрытие затрат государства на его участие в выборах а что случилось-то Если очень повезет ну 65 С сегодняшнего дня точно могу вам сказать что метро это священное место для тех кто замерз Проклятые буржуи будут морить меня незнанием результатов еще недели три минимум ближе Кембриджа не нашлось никого согласного все это проверять конечно же Объяснил по телефону куда надо кликать мышкой чтобы найти его несчастный файл скачанный по умолчанию во временное хранилище К северу же от Пафоса мы посетили грот богини Афродиты где купаясь в знойный полдень она однажды познакомилась с отдыхавшем на соседнем пляже Адонисом Опять же змей он и есть змей и я весь день куда-нибудь да ходила то с Ясей на развивашки то в универ чтобы оценку по философии в ведомость проставить короче очень много по улице пешком Создавалась полная иллюзия лета и очень тянуло искупаться Фотография которая не занимала бы тут места если бы не Дима который умудрился сфоткать обычный ряд картин так необычно Ловите ниже идет и в общем обещанная долгожданная статья получайте удовольствие Когда краска высохла карандашом наметили имя Ну в общем засыпала я эту геркулесовую смесь на яблочную Повел свое чудо сегодня погулять на юго-запад прокатились на подъемнике потом долго смотрели на город с воробьевых в общем было здорово С которым я опосля цигуна занимался шагистикой Первые личные деньги появились в начальных классах школы с завтраков Первые деньги я заработал в 12 лет землекопом в археологических экспедициях и спасибо родителям за то что они мне сказали оставь их себе Монастырь был заложен в 1183 году пфальцграфом Рудольфом фон Тюбинген А написать я хотела вот что на районе сегодня подошла ко мне женщина то ли Азербайджан то ли узбечка Можете мне не поверить сейчас но потом поймете И еще желаю переводить во много раз лучше чем безымянные господа о которых я так часто упоминаю в своих постах Приятно когда их две и есть с кем разделить этот восхитительный напиток Почему-то я ненавижу серую ветку метро там жуть как некрасиво и вообще какие-то чегеря кошмарные какой-то производственный район некрасиво уродские дома Поскользнулся юзер и грохнул пентиум об асфальт тот на куски и развалился В натуре по-настоящему рвет на кусочки из-за того насколько мегапозитивные новости публикуют в интернете на сегодняшний день Кстати хочу сказать об профессиональном хирурге Тигране Алексаняне Так начинать тренироваться надо во дворе а у нас вокруг одни девчонки рождаются Так что я решила не просить всех сесть а отнестись к укладыванию как к ресурсу Так что все хорошо и хочется в макдональдс или просто съесть какой-нибудь гадости Они слегка кисловаты на вкус но это их не портит есть можно если конечно не страшно соседство с химическими складами нам было не страшно и мы ели Неделя отдыха прошла незаметно собственно как всегда Вчера имела неосторожность очень сильно порезаться срезала овощерезкой 0.5 ногтя и подушечку пальца под ним То есть размещение в пространстве таково что преподаватель ниже Я чувствую своих ушей запах гнилой Надо чаще встречаться пока не перестали улыбаться Игорь Зеленский отметил что партию Кармен на премьерном показе будет танцевать одна из ведущих артисток труппы Анна Жарова Посмотрела Влияние Бурлака Что-нибудь строительно-магазинное не знаю в общем Ну то есть вот он по лестнице идет как она его последний раз видела и идет мертвец Поклонники ее творчества обратите внимание первые три и самый нижний очень-очень Видать придется уже сегодня написать про этот чертов этикет Онтогенетически подобное расхождение между благими намерениями психозащиты и ее высокой себестоимостью для всякого жизненного пути не только сохраняется но и усиливается Затем мы своим ходом дошли до здания ГИБДД долго ждали внизу потом ждали наверху и наконец нас отвели фотографироваться на права Растолкала детей и сфоткалась Но и грустить из-за этого вряд ли стоит В Европе с 1618 по 1648 год бушевала ужасающая война между католиками и протестантами охватившая практически весь континент на сайте администрации есть какая-то бумажка еще за 2008 год Ничто не сравнится с разворачиванием ста пятидесяти подарочков подряд хоть бейте меня камнями Еще не догадались в чем засада Купец решил что она родственница его любимицы и весьма огорчился считая себя виновником ее смерти А у нас своя локальная зона нестабильности район Сенной площади и Апраксина двора Ягоды винограда вышиваются специальным швом несколькими оттенками в том числе и смешанными Выдав дочь замуж мать автоматически забывала бы о ее существовании Не буду говорить что нечего написать что ничего не пишется Приметы прыщи на бороде кстати завтра в вудсток едем со съемочной группой продолжение съемок для мегаблокбастера Зарегистрироваться в контакте Напрашиваются всякие нездоровые мысли относительно того что сдают в этот ломбард Людей уйма штормило во все стороны собственно только так я и передвигалась по залу Еще летом я купила очень ну очень красивые срезы агатов Продолжение следует Тащусь от ее скромности Может выберешь из моих дайревых его не было с 1993 года В общем остается пережить английский в пятницу Спасибо всем френдам которые не отфрендили Любой жест который не был перечислен в настоящих правилах и таким образом не может быть воспринят в качестве камня ножниц или бумаги считается недопустимым и соответственно запрещен Особо провидящие могут даже составы команд угадать в общем пишите все что вам когда-либо снилось являлось и т.д. по поводу этого матча я никогда не вела дневник но нужно худеть и хочу попробовать и вообще у меня подход как у Вас в точности но без дневника поэтому и заинтересовалась Бывший оливетанский монастырь отдан Перуджинскому университету одному из старейших в Европе 1307 Я теперь понимаю почему у всех этих мужиков руководителей есть девочка личный ассистент Маршрут пролегал вот так в чем дело вообще не понимаю Движок-программу нужно поддерживать развивать интегрировать с новыми трендами Сети и основными браузерами кто ж этот человечек вызывающий в тебе ту миленькую девчушку А в те времена на это оставалось мало времени На фоне серого неба это было завораживающим Злостный подонок в костюме дьявола измывается над людишками Неопределенное московское лето растянулось на такое же неопределенное южное Будьте способным на поступки сюрпризы Не понравилось повальное пьянство некоторые допивались до того что с трудом держали карты Продолжение следует Начался день с того что я все-таки встала в семь часов утра несмотря на то что легла в начале третьего Очень талантливый московский музыкант перкуссионист диджей и вокалист Не могу зайти на одноклассники другим логином А естественная смерть от старости равнозначна пешему способу передвижения Мы не опаздываем нас задерживают важные дела Насчет фильма посмотрел первые тридцать восемь минут а потом он почему-то завис в общем фильм так себе правда сегодня я его попытаюсь посмотреть полностью Организм пытается ликвидировать эту клетку Кстати если глава района потратится на пожарные вопросы это нецелевое использование средств преступление А в общем-то мужчину спросили Ну в общем вот такой вот футбол моими глазами К моей великой досаде на второй половине пары несмотря на проектор и отлично видные на стенке кадры я засыпала Отрисовала заново своего дндшного игрового персонажа и теперь не могу налюбоваться никогда не мог подумать что и на таком огромном расстоянии кто-то умудрится так смачно раздразнить аппетит Они про социализм знают все лучше тебя Потом сглотни ведь белки все-таки Я многого не могу и не берусь Решила с пользой провести время дома обдумать все что было в этом году и разобраться в себе Ребенок естественно тоже не в курсе что здоровенная собачка опасна Получается что Пресня оторвана от остальной части кольца с двух сторон Аленка у меня такая молодец Противоречие в том что ЖЖ изначально подразумевал предельную честность и где-то даже эксгибиционизм но когда дело касается конкретных людей начинаются вопросы В каких случаях необходимо поддерживать голову малышу Поэтому ее танец был во многом основан на свободной импровизации Фотоаппарат хотелось выкинуть потому что просто НЕВОЗМОЖНО все это вместить в карточку ну никак ни при каких условиях Накатило что-то повспоминать прошлое Наверху было написано мы больше не поддерживаем ту версию Пожалеть его проявить сочувствие нужно успокоить человека А сегодня Чернова позвонимши спустя миллион лет очень весело обсудили мою болезнь и вообще текущие происшествия Творите добро Я ведь когда-то и не думала о машине а теперь уверенно хочу сначала сдать на права Завтра с утреца еду в офис разруливать рабочие вопросы в связи с возрастающей в середине месяца конкуренцией из-за начинающихся специальных акций в частности в сегменте гидромассажа Впрочем официальные портреты не всегда высокого качества увы востребованы и другими менее именитыми особами Школа была частная и я был единственным выпускником своего года и класса это наложило отпечаток на моей личности Мы напрыгались наорались напились и вообще отлично провели время Предлагаю для избежания эффекта поломанного телефона зайти самостоятельно на сайт и изучить все платформы Я заметила за собой то что уже начинаю в красках представлять нашу вполне возможно скорую встречу Проржавшись мы рассказали ему всю историю Позже по произведению поставили телевизионный сериал Хоть водитель периодически открывал окно и было жутко холодно все же я мечтала о том чтобы пробка подольше не рассасывалась и я могла еще подрыхнуть Мне в штабе посоветовали расписываться на местах стыков переносных урн при опечатывании правда не нашел норму закона которая явно разрешает расписываться и делать фотографии этих урн или короткие видео я иду на работу потому что надо кому-то а не потому что мне интересно Неорганизованная преступность собственных эмоций Путь второй был неуниверсален школа когда-то закупила ноуты с 7 стартер с лицензиями ОЕМ которая была снесена но сами-то буковки кодов остались Как можно посмотреть кто в контакте заходил мне на страницу Организм не выдержал откровенных издевательств Первый мультик очень смешной здорово нарисован и озвучен а второй пластилиновый по типу Вороны в общем когда-то Петр I гениальный и безумный решил для блага России построить именно тут город Сможем ли мы реально глядя на вещи при нынешней демографической экономической политической ситуации удержать огромные слабозаселенные территории по соседству с полуторамиллиардным наращивающим промышленную и военную мощь Китаем высокая вибрация от которой голова становится ватной Ученики предлагали свои ответы но ни один из них не устроил Учителя В роли маньяка Роберт Дауни-младший ему идет вроде уже уложил в голове все по полочкам а тебе вдруг как покажут что все иллюзия и будет совсем по-другому Наверно придет время когда придется снова скрестить нам мечи Раньше я всегда чувствовала чужие стены что это его дом не мой а я в метро без книжек не умею Сегодня при попытке перегонки Жанны в формат более подходящий для прослушивания на компе и в машине в приводе раздался взрыв Следующий шаг как ни удивительно 2048 Ответственность за этот теракт власти США возложили на террористическую группировку Осамы бин Ладена Аль-Каеда хорошо что там не было обрыва вниз а то бы слетел точно Представители семей встретились поздно ночью и заверили друг друга что никаких претензий друг к другу не имеют что весь конфликт молодых офицеров исчерпан между прочим у них есть вакансия могу побаловать себя сладким но потом от него мне же хуже организм отвык от таких доз сахара Рязань и Сочи не в счет это были командировки в общем есть в хорошем качестве 3 и 6 сезон Папилломовирус именно тем и опасен что может быть онкогенного типа Чувствую я себя гораздо лучше если кому интересно Смотрела давно и плевалась страшно Превосходный символ сенсорной и психической ценности естественного тела ковер-самолет И я там немножко собираюсь замуж За это время подготовила журнал к югу сейчас буду любоваться может голова успокоится Разве горю такому помогут рыданья живых Я иногда думаю откуда почему и для чего есть люди которые маньяки Я думаю что молодой человек должен жить в реальности которая ничего так а девушка где жуткий диктатор отгрызает головы младенцам Вечером не было инета посидел с мобилки А что происходит в твоей голове Вообще кхмерская цивилизация в свое время была очень крупной и влиятельной контролировавшей огромные территории в юго-восточной азии открыл там дыма полно начали тушить вызвали пожарных на работе мне сегодня учинили адский квест в результате очень уж сильно захотелось убивать Миллиардер Адольф Меркле из-за мирового финансового кризиса потерял сотни миллионов долларов А мой периодически ночью начинает меня будить ласками потом одел старые AKG K-100 уже что-то чувствуется Все полицейские выступают в поддержку права на организацию общественного собрания Сегодня Геныч полдня ползал на карачках под своим столом пытаясь подключить колонки Предлагаю следующее как всегда почти бесплатное решение проблемы Я конечно пыталась реабилитироваться оправдывалась что я вовсе не про вылет а про этаж разговор вела Страшно видеть как стареют самые близкие люди Отчетность которая официально публикуется в СМИ делается совсем не для того чтобы в ней было легко разобраться Там же был построен первый в стране буер Метель что положило начало к развитию буерного спорта в России Несколько солидных частников Ничего не поняла но все очень умно и круто вот такая тарабарщина мне Вова сильно по нраву вообще фонетику я затейливую люблю ужасно Почувствовала себя моральным уродом но тем не менее все выкинула Не лезьте в его кошелек не считайте его доходы и не пытайтесь управлять расходами Режиссеру удалось создать такую атмосферу что зритель полностью включается в происходящее на экране бредятина а 3 рубля с тебя про что взяли или расплата за то что вы ее когда-то курили Вальс в 5 па внимание будет под другую музыку с переходом местами на обычный вальс подробная схема будет выложена На Родине естественно имя предателя не вспоминалось Начинался он с того что меня в начале двенадцатого разбудила мама чтобы сказать противным как мне спросонья показалось голосом что мне необходимо срочно встать и пойти завтракать Что случается когда из наших уст звучит то или иное слово Я согласна с таким положением вещей но А утром шла в универ мимо главного всегда закрытого входа и буквально в метре впереди меня с козырька свалилась пустая скомканная банка из-под колы кажется Удовольствие от проведенного времени и классные фотографии гарантируются А еще после некоторых приблизительных подсчетов я поняла что мне нужно ограбить банк ихние депутаты горсобрания дабы покрыть долг от банкротства организации бывшей когда-то на месте сочитеплоэнгерго приняли в 2008 список нормативов потребления всего и вся в том числе тепловой энергии Процветание аббатства продолжалось до войны Кипра с генуэзцами а я была сегодня в зоопарке Будет новый человек счастливый и гордый Они как их не назови терпеливо ждали своего часа Министерство культуры Франции официально признало что фрески могли быть вывезены из Египта незаконно Но есть и более интересные фильмы авторские и еропейские которых тут просто нет И именно это отличает классический средний класс бюргерство от тех для кого все эти вещи непринципиальны наемников для которых главным является количество благ и уровень потребления в обмен на которые они готовы променять свою свободу и самостоятельность открыть форточку нельзя из-за простуды Придется подходить Получать любовь в том форме которую считаю приемлемой для себя на данный момент Как обидно порой знать очевидную вещь в которой невозможно убедить того кто не видит ее в упор За это время доходим до моего дома Мне на глаза снова попалась та самая фэнтезийная история Дети растут очень быстро на прошлой фотке она совсем младенчиком была Ненавижу всех визжащих девок с умилением тискающих очередную книжку с прыщавым очкариком Постараюсь не очень поздно лечь У меня уже появились в этом направлении кое-какие идеи но конечно нужно ждать лета вот сижу и обзваниваю все автошколы ищу приемлемый вариант да и вообще надо пока полгода не ввели Это должно сказать вам о том что я сейчас состою процентов на тридцать из неуправляемой сентиментальности и на семьдесят из нервов Только что позвонил товарищ с которым я о чем-то договорился А еще сегодня меня загребла служба безопасности за то что я пронесла на фабрику электрокнигу Как Ванька-Встанька была то прилягу то присяду Как гаркнет разгоряченным подгулявшим молодцем Пива Ну очень кушать хочется Как только я просыпаюсь я отбрасываю чары сна ложную тождественность и понимаю кто я на самом деле и понимаю что весь мир моего сновидения это лишь моя собственная фантазия Усиленно ударить по двум направлениям что примечательно перед нами выступали мои знакомые с репбазы которые оказались крайне близкими друзьями нежданным в общем море позитива и рок-н-ролла А впрочем она-то сама заглавная героиня сказки кто такая Одна региональная организация ОДКБ работает на вовлечение в зону своей ответственности другой региональной организации Может если все сказали то сработает это в общем жуткий курс об особенностях развития психики детей и взрослых в условиях стесненного или нарушенного функционирования организма Кстати тема про правило буравчика есть в катином ЖЖ с этой позиции все же мой любимый фильм про любовь был более реалистичной картиной Староста неосторожно что-то сказал естественно неспроста Проанализировали мои энергетические затраты и правильно их распределили Кто-то там наверху услышал мои молитвы ругань и угрозы и сделал мне ливень ты трать себя все равно не зря а так впустую проживешь может и веселей но пустота будет Викуся моя маленькая хихикающая бусинка ее все время хочется обнимать и заботиться Собранное и натянутое полотнище зажмите коленями Оказалось столько же просто нужно было добавить окно в список пожеланий при заказе в общем вот две лучших фотки из всего того что получилось с завидной периодичностью перемещаясь по толковым спортивным internet ресурсам я постоянно налетаю на гору таких же тем но все же далеко не многие считаю возможным выложить туточки на страничке боже упаси если хоть кто-нибудь из вас самаритяне потратит хоть шиллинг на эту пластинку знать бы еще что это такое Но все же жизнь периодично сталкивала нас лбами и довольно-таки болезненно В первый раз вообще-то узнал про такую вот штуковину Фантастические ощущения пироги были с яйцами рисом и луком и с капустой ничего вкуснее горячих пирожков на Пасху не помню из раннего детства За последние годы у нас сложились очень сложные отношения периодами отношений вообще не было Состояние невменяемое руки не слушаются ноги тоже не совсем адекватно реагируют но голова страстно захотела написать об этом Ответить на него можно вполне определенно критерием уничтожения целостного процесса является прекращение существенного процесса И это очень сложно особенно когда надо слушаться человека который сам только учится и жутко не уверен в себе Еще варианты Партенит Симеиз или что-то в ту степь В первую очередь внутри произведения где неоднократно повторяется базовый кубический модуль в следующий раз обещаю в шлеме Вот с параллельной парковкой у меня и были проблемы это были просто мысли про одну личность Родители пришли к православию года три назад а сестра пару лет как крестилась Но про воду которая камень точит это ее главное оружие Так что ждем новых фотографий и более точных данных Ярким примером здесь может служить отечественная история прошлого столетия Я одиночка не люблю шумные сборища но порой мне так одиноко без дружеской поддержки А еще в последнее время периодически всплывают люди с которыми я уже очень давно не общаюсь Открытки бесплатно в одноклассниках очень долго ехали на нем Люблю тебя читающего эту запись просто потому что любви переполняющей меня хватит на всех мне не жалко Если разбирать по пунктам возможно и да кто ж спорит Друзья мои друзья что бы я без вашей с готовностью протянутой руки делала У меня парикмахер в отпуск ушел Следующий раз я в штате Нью-Мексико я хочу встретиться с навахо индейцами сегодня впервые в жизни то есть впервые за 34 года жизни в моем доме я сам Получилось 4 по 5 и пятый подход вообще черт-те что Спасибо вам дорогие мои и отдельное нежное рано уезжающим в Москву вот уж вранье насчет некрасивой тебя вот уж вранье Хорошо что это были разные недели В 1863 году с согласия семьи Раецких костел был освящен как православный храм вот мне кажется что если б я женилась на тихой домашней девушке то моя жизнь расцвела бы новыми красками Ему предложили деньги уход и всяческую заботу но он не соблазнился этим Ездил тут провожать и встречать любимую Люблю дождь когда тепло Опять-таки рядом с вильнюсским универом А про Мисфитс я плохо обосновал естественно это панк но его также можно считать доготикой они нереально повлияли на эту культуру хоть сами ее частью не являлись А мышцы все-таки болят уже чувствую Наконец-то мы скооперировались собрались и на этих выходных сходили в музыкальный магазин за флейтой Мане на 24-летие педагог обладает огромным запасом хлестких выражений любит черный юмор и естественно сливает это во время урока Многое в этом спектакле удалось молодой тогда еще актрисе Через иллюминатор была видна Родина-мать Вот и сейчас спустили его на землю и кот пополз на полусогнутых на исследования Поскорее бы эта мода с интернетом прошла Мне еще тридцати нет а я уже ночью не сплю а слушаю свое сердце Сворачиваю гамак и на баррикады Обещают в местной газете участие порядка 200 тысяч человек что для 25-тысячного городка многовато имхо После того как вы ушли у меня к вам никаких претензий больше нет Ужасные отношения между братьями-сестрами в маминой семье родителей они лишились очень давно самым трагическим образом мама осталась самой младшей А сегодня пришел товарищ вроде как будем искренне надеяться помог мне с компом Я кстати сам пришел из христианства Можешь в двух словах сказать от чего зависит качество текстур и виза Привет всем в этот пасмурный и ветреный день Определяешься окончательно ан нет очередной самообман Теперь я твердо уверена что вам можно доверять Эту подставку для журалов я делала для своей подруги-одногруппницы с которой мы учились вместе в университете Ребенок у нас резко полюбил фотографироваться требовал чтобы я его сфотографировала чуть ли не у каждого столба Сообщите всем кому можете Преподаватель Да безусловно но я не знаю что такое Боженька Но коль таковые имеются пойдем дальше Программа Космос является одной из самых масштабных программ по изучению космической эволюции Я приехал через час а работы так и не начались правда воду удалось как-то перекрыть Наберешься наглости позвонишь еще В 70-е годы в институте мне естественно пришлось сдавать госэкзамен по научному коммунизму Тварь Арагонес такую ситуацию создал Вчера сходила на Клик ничего так фильмец Когда мы только начали жить вместе у меня периодично возникало навязчивое желание закрыть руками уши и орать А самую важную точку в нашей прогулке поставил вот этот вот товарищ еще можно в бикини ходить зимой по системе Иванова Конечно все те же взрослые люди в чудесной стране Америка в 45 годах своими запретами создали этот стереотип Расставаньям и потерям я не верю я не верю в общем если бы не желтый носорожка то возможно я бы сейчас была балериной Стали пешеходы переходить дорогу в общей сложности было всего 3 девчонки Давай мы просто потанцуем для себя Спускаюсь в метро и ложусь на лавку Можно ли кушать после 18:00 а что тут писать и не знаю Поскольку мы закупили основное оборудование нам уже не придется делать такие капитальные вложения мы можем направлять основную часть средств на реактивы материалы чтобы увеличить производство товарищ говорит мол убери ты что себе за извращения поставила По всему выходило что это просто много теток в разных кабинетах различных организаций с пишущими машинками и календарями на стенах Ну в общем много обкуренных тараканов Еще один вопрос волнует меня почему в одном из магазинов он стоит 13 тысяч когда везде 16-18 Но Уилл Смит видимо продавший душу дьяволу чтобы не стареть каждой своей гримасой и ироничными замечаниями усердно напоминает как сильно нам его не хватало последние годы на большом экране Но хоть праздник домашний но все-таки праздник Померили давление оказалось очень низкое давление и очень высокий пульс Поздравляю Вас с Рождеством по утрам не хочет вставать и устраивает такие сны в которых я не то чтобы спасаю мир но если проснусь будут неприятности другим Давно ничего не писал Посмотрели друг на друга улыбнулись и кивнули как старые знакомые Проблемная кожа угри черные точки расширенные поры А вокруг какое-то непонятное что-то не дает мне этого сделать Так что теперь можете смело обзывать водителем как объяснил потом А зачем тебе было знать На площади вокруг фонарного столба разместилось шесть солидных матрон Приехали в Сяньян где и узнали что из этого города прямых маршрутов до достопримечательностей нет но добраться можно различными рейсовыми маршруточками конечно видя ее понимаешь что в принципе и не для кого ему себя в порядок приводить В частности оттуда пошла байка взятая на вооружение Шиллером о том что жена Филиппа изменяла ему с молодым Доном Карлосом И одиночество мое вовсе не надуманное а реальное завтра после 9-ти к инспектору Называется Наташа собралась приехать Показать рецепт кремлевской диеты Одни отправляют почему-то в таксопарк типа там и только там меняют стекла Кто-то купил права и накропал бездарное продолжение Отечественные чаи и коктейль для похудения А в Питере у меня родилась племяшка и я уже очень хочу увидеть этого маленького гномика и на правах единственной родной тети ищу ей самый замечательный подарок Высадив троих в машину довозки к экзаменуемому сел гаишник Усовершенствованный алгоритм по сравнению с встроенным но работает только с английскими словами Он устал после работы случается что его обижали большие мальчишки в суровом бизнесе и ругал злой дядька-начальник По вертикали чтоб весь спектр был типа радуга Профилактика и лечение рака легких желудка печени восстановление после химиотерапии Именно так номер выглядит на визитной карточке Но это была моя философская присказка Мне так кажется что вообще идея равенства свободы людей не имеет отношения к социуму некоторые вещи в моей жизни начинают не радовать Все импульсные микросхемы которые знал там нашел Хотелось бы чтобы была вся палитра цветовой гаммы а Елка светилась буйством Вашей фантазии и Вашего воображения Отдельный совет прочтите хотя бы одну желательно серьезную книгу по композиции А это не есть хорошо ибо обязательно в самый последний момент что-то случится и увидеть их не получится Скриншот с Космополитеном видела Последние года два пожалуй самое тяжелое что со мной было это разделение на две жизни непонимание того чего в общем надо Красиво домики комнатки озера искусственные горы деревья Сложно двинуться в такой очереди перевалиться с ноги на ногу не зацепив сзади и спереди стоящих Вот Черный Лимузин и ожил и действительно стал самым лучшим и удивительным автомобилем в Мире он был самым быстрым самым мощным в общем самым-самым Кто бы о таком мог вообще подумать Иногда то что происходит в любви кажется очень жестоким Вместо этого ты просто обращаешься к прошлому опыту В российском правительстве изданию подтвердили факт получения письма от госсекретаря США но отказались раскрыть его содержание А о чем могут говорить две хорошие подруги учащиеся в одном вузе и встретившиеся для похода на концерт Так что у нас будет теперь где культурно отдохнуть а вообще Жень я оказывается убежденный урбанист Некоторые люди считают стакан наполовину полным некоторые наполовину пустым Посочувствовали бы а то накинулись на старого чела Но то что сейчас вы испытываете неприязнь друг к другу это естественно потом через две пары курю на порожке охранник выходит я его про милиционершу спрашиваю чего говорю девушку не пускали а он мне вообще откровение а у нее пистолет У нас тоже солнышко но еще очень холодно Но став старше она осознала что точность и четкость ее все На выезде из Клина бдительные гайцы на посту решили проверить актуальность моих транзитов ссылка на статистику liveinternet по сайтам рунета А вы помните свою первую любовь С ним ничего не сделаешь от него никак не избавишься как в бомбежку бомбардировщик из рогатки не собьешь Ну ты сама в общем в курсе Грабитель поехал в сторону Краснознаменной улицы по встречной полосе и по дороге задел три автомобиля Через 10 шагов история повторилась но уже с другим человеком и тут до меня дошло в общем мелочь а приятно раз пять я так наверное на ВДНХ и здоровалась Мне ничего не оставалось делать как основывать еще один город дабы заделать дыру в державе и производить длиннолуков с катапультами Вам только кажется что вы выигрываете деля покупку на платежи в итоге они накапливаются вы теряете контроль и платите в месяц больше чем можете себе позволить Поспишь тут в большой комнате что как проходной двор для всяких непонятных мне лиц мужского пола Объясняла моей начальнице что я заболела и больше не могла быть на работе Раньше только наличие зубной щетки и всяких других мелочей выдавало мое присутствие в этом доме а сейчас здесь моя энергия моя любовь мое приятие этого места Едешь и не знаешь что в Норвегии расстреливают людей Появились новые военные угрозы против которых как показывает практика США не очень-то способны защитить характер угроз таков что с другого континента их не решить Наверное почувствовать что-то точно можно а то бы почему эта старушка с таким осуждением на меня смотрела в общем для обычных людей занятие тоже было найдено Вернется напишет заявление об увольнении Серебряные звезды нашептывали ему слова а ночной шутник-ветер играючи вплетал в эти слова ритм и размер Медленно-медленно просыпаться под приятную музыку Теоретически за счет валютно-обменных операций банкиры могли бы компенсировать недостаток наличных средств Соответственно вы получите просто массу предложений На огонь реагируют достаточно выборочно тупо на источник тепла не кидаются то есть если развести огонь то видимо их внимание привлечь можно но из-за облаков они просто так не покажутся В тебе ценят доброту и отзывчивость лето 2011 если возвращаться к этому куску моей жизни началось и вроде недавно и вообще как-то давно Теперь мы не бомжи теперь мы банкроты но абсолютно счастливые Он будет знать что вы тоже что-то можете сделать в этой жизни и уважение к вам только приумножится Не юзаю и надеюсь не придется юзать Кто составит компанию в бассейн завтра А пока нужно наслаждаться тем что нам дано и присматриваться к календарику когда и куда можно выехать для кратковременного отдыха Меня не было дома когда она умерла Стесняюсь спросить что такое ирригатор Вчера меня насильно затащили в Коломенское потом стемнело и похолодало скачать одноклассники на мобильный телефон бесплатно Есть такой капиталист в тюрьме сейчас сидит и похоже долго еще будет сидеть Он бесследно исчез в восемьдесят девятом Остается смириться и бороться Дома ждет еще одна книга подобного плана даже не знаю начать ее завтра читать или разбавить чем-то романтическим или фантастическим Последняя фраза явно впечатление на тебя не произвела Но все же это мелочи по сравнению с тем что могло вызвать у Крысы такой силы беспокойство Готовится видео-репортаж о конкурсе Мисс Латина 2012 власть и управление конструкции человеческого ума лежащие в основе его теории объяснения Соответственно наша звезда прыжков с шестом с результатом 4.60 первая На последних звонках девочки плачут почти все как многие наверное слышали в некоторых европейских странах нужно платить за проезд по дорогам По моему мнению это самый ужасный сбор из всех что у нас было От нее особый кайф можно постоянно регулировать толщину и форму линий Разве нормальный человек отправит в ТАКОЕ заведение родных людей На полнеба растянулся черный дымный след Мультики Ты вернулась Я тебе так рaда Немало достижений было и в развитии электровозной тяги Представьте себе что это сотни килограмм муки распыленные в воздухе Формулы правда ему приходилось зачитывать вслух или записывать Если ты не возьмешь ответственность за написание картины то за тебя ее напишут другие Он принес новый флакон духов или туалетной воды уж не знаю но раз в несколько часов ей весь обрызгивается Подливает масло в огонь активность одного гипермаркета который пользуясь жадностью и или бедностью наших односельчан как будто специально создает давки и очереди за дешевыми мандаринами Права мне жизненно необходимы и я не понимаю как могла жить без них столько лет и самое главное как я буду жить без них дальше работать начинаем потихоньку но планируем развиться межгалактическими темпами с вашей помощью кстати Сказали подождать как-то жалобно отвечает мужчина остальные молчат Параллельно проверяю написанное на смысл активный процесс Как место захоронений эта территория использовалась уже с 30-х годов и было засекречено вплоть до 1989 года по вполне понятным причинам Аутоагонистофилия Autagonistophilia сексуальное возбуждение от того что являешься предметом всеобщего внимания или от создания условий при которых такое публичное наблюдение возможно Надоело закапывать талант в землю Утро самое удачное время для беспокойства и депрессии когда все представляется в самом мрачном и черном свете Очень часто мне нравилось что мне прощается тот или иной поступок потому что я маленькая Ограниченность в 160 символов латиницей придает им емкость брошенного слова иногда необдуманного горячего случайного а электронный формат долгую непредвзятую память Мужчины которые свято верят что цветы это лишняя трата денег и вообще они бесполезны Сегодня я обзавелась новой пломбой в верхнем зубе Постарайтесь отличить аборигенку от приезжей старую деву от матери семейства Слушай ты как-то подозрительно сложно живешь Объявили что автобус уйдет через полчаса На детальное изучение документа и предложений участников может потребоваться год Небольшой мороз сильный ветер увеличивает градусов на 5-10 Всех воспитателей поздравляю с их профессиональным праздником Феликс сказал насчет грабель это как надо было устать в своей Москве оставшийся отрезок дня был всецело отдан ежеминутным изменениям планов на дальнейшую деятельность Да и много других образов главное в одном из них не остаться на долгий срок иначе скука-мука Почувствовав себя готовыми к новым свершениям на третий день пошли в Лагуну 69 одно из красивейших мест в Cordillera Blanca Можно еще понять почему допустим Михаил Булгаков опережает Льва Толстого а Александр Блок оказался за два пункта до конца списка Поешьте грецких орехов Пробег составил 560 км за которые было скушано примерно 55 литров бензина а это вообще насчет чувств верующих дело по местным обычаям иудейским неправильное В ARD сочли такие расходы неоправданными отметив что для зарубежного вещания существует Deutsche Welle Немецкая волна Под колеса состава с локомотивом yкладываются тоpмозные башмаки число котоpых ни машинист ни помощник не знают Нельзя считать пару попыток в незапамятные времена умением кататься Эти люди приближают земную жизнь к гармонии но дается им все только тяжелым трудом Господи помоги мне не напиться Люди невероятно часто отвлекаются на незначительные мелочи теряя способность видеть картину в целом Полагаю драка и выпивка тоже в комплекте Сегодняшний ответ на вопрос про холод А у меня солнце на футболке Артурчик тоже весьма ответственно подошел к вопросу отправки сестрицы в учебное заведение не пискнул и вообще предпочел поспать на мамином плече не появлялась тут уже очень долго представьте что вы сидите тихо-тихо и работаете с документами а рядом на пороге слышимости работает двигатель вертолета Потрясающая серия Преподавательница резко попросила замолчать или сдать работу и покинуть аудиторию Не спросишь у командования что за ерунда У меня в жизни сейчас есть два молодых человека которые мне именно что нравятся прибежишь уставшая и убитая а она и помучает и насмешит и в общем выходишь почти и человеком с дозой позитивных мыслей Счастливая кошка сразу видно что ее никогда не мыли Вообще разглядывание фотографий это такое дело при беглом взгляде нам может понравиться снимок с более яркими цветами но при более внимательном разглядывании яркие цвета в каком-то случае надоедают и больше нравится снимок с цветами приглушенными но с более богатой и естественной палитрой Мягче я тут становлюсь и человеколюбивее черт Правда большинство на зарплате а не на контракте Объективно говоря становится уже очень тяжело За синие горы где мрак и снега да и в конце концов всегда есть кто-то глупее тебя кто-то умнее тебя и кто-то умнее того кто умнее тебя Как будто тебя аккуратно взяли на руки и очень бережно несли все это время боясь уронить Удачи хорошего настроения денежек побольше и чтоб полегче доставались ну всего в общем хорошего и чтоб петух не клевался Естественно и понятно телятина без грамма жира но в первый раз побоялась незнания пароварки потому все делала по рецепту в общем Господа с нового года опять все подорожало и вы возможно неприятно удивились цифре денег которые вы должны заплатить за полутеплые и ну даже пусть очень теплые батареи в вашем доме и все утратит прежний запах даже чай бумага шоколадка сегодня я даже не стала спускаться с кровати ты ж обещал что можно тебя называть блондинчик Принципы аналогичные применяю правда иногда срываюсь на нравоучения и читаю краткие лекции Сейчас естественно почки как никогда и не болели Одиночеством блеклым безумным желаньем напиться И вот в одном из них мы обнаружили потрясающую юбку Только на память оставила записку и фотку Просмотр скрытых страниц в контакте если бы была не простуда а что-то серьезное ну или даже простуда но действительно сильная с температурой 39 и выше я бы естественно никуда не поперлась Ответьте мне на вопрос адресую пострадавшим А что вам мешало бросить вашу барракуду на этапе избы Очень красивая и добрая фотография Звонит подружка она на другом острове живет не виделись 3 года но периодически созваниваемся тебе можно и нужно его продавать Но у меня на этой почве начинает болеть живот в общем это был прекрасный день Первым же выхватом стала дорога ну естественно не без успевания по пробкам на автобус успели к двум минутам до но опоздал сам автобус и какое-то количество минут его пришлось ждать я б матюгнулся пару раз да толку-то Это конечно достижение такого не было в нашей школе давно Сегодня вообще был цирк сначала зашли какие-то плотники объясняя экзаменатору что связались с ней через емайл говорилось о заборе который не закрывается затем зашла не знаю кто с мобильным телефоном и разговаривала в полный голос За них хочется ухватиться смотреть на них учиться-учиться-учиться Флоренция встретила нас небольшим дождиком и толпами туристов Следующая тушь которая составила список моих тестов это тушь от CHANEL INIMITABLE что-то в инете ничего не нашла Скажи честно ты ж его такой игрушечный купила да Куча тематичного народу в общем втерся и научился прыгать довольно оперативно На берегу стоял PR а рядом с ним катамаран Оказывается зеленый чай без сахара вполне идет с зефирчиком в шоколаде Ну вот у всех наверное так бывает вот была какая-то вещь ну вот точно же помнится была а хватишься и пропала Егоров оперирует понятием боевых действий в фехтовании У каждого из нас есть даты которые являются для нас счастливыми и мы помним их не из-за каких-то там цифр а потому что Мировая история была разделена на три века Отца Сына и Святого Духа Муж Феи был уверен что женщина ни что иное как тень мужчины Это никак не скажется на качестве дальнейших ваших отношений просто придется немного подождать Совпали действительно замечательно на стекле были крупные капли тайского дождя а за стеклом был невероятный закат А вот если мотать данный фильм с помощью волшебной кнопки Fwd быстро-быстро то получилось бы просто отличнейшее кино где все как надо Важнейшие моменты нашей жизни мы связываем с Богом вдруг забывая что еще вчера мы не заботились о его существовании когда-то он предположил что я специально заразил кафедральные компы вирусом который вместо запятых вставлял матерные слова Тебе возразят что зато он хочет продать бизнес а деньги пустить на благо он красивый и умно рассуждает и отменит ЕГЭ и еще что-то там он такое с медициной сделать обещает от программы правда медики воют но они ж просто корыстные ублюдки и всем сразу станет хорошо Позаботьтесь о хорошей обуви для своих детей Относитесь к непониманию с двойной иронией ты смеешься над тем что цигун глупое занятие а я над тем что только глупец не занимается цигун ты смеешься над тем что всегда будешь больным а я от радости что могу быть здоровым и жить долго Пофотографировав то к чему можно было добраться мы вернулись в пространство колокольни Ну попробуйте же угадать какая это может быть часть из всех выдвинутых кандидатов Очищенный батат превращаем в пюре Но стоит ли так быстро поддаваться унынию и пессимистическому настроению Но игру в итоге как и год назад наши девушки проиграли Даже и не знаем что вам сказать Новогоднее настроение прямо какое-то Идя в сторону метро мы даже начали сочинять стихотворение начало приведу но в этот раз он изменит своим принципам и с удовольствием через секретаря ответит на все волнующие молодежь злободневные вопросы кроме анонимных естественно Это же надо быть такими наглыми чтобы делать такой конкурс с такой ужасной саморекламой Звонит просто для того чтобы поболтать с тобой ни о чем Кто воспримет форекс как игру случая того ждет сплошной крах А это уже само собой как-то случится Опрошены все до кого смог добраться по поводу лучших путей погоды и прочего-прочего-прочего а недавно у нас его вообще отключили Постебался еще и первый Как зайти на страницу закрытую от всех одноклассников Потому что в Воронеже все перечисленные тобою улицы находятся рядом Сногсшибательной ей удается быть но только благодаря удивительно едкому аромату духов даже на улице мне пришлось бежать в другую сторону и переходить проспект лишь бы не попасть в штабель Понятно что его никто не оставит Книга вот об этом как бы и есть о непостижимости в общем это известие подлило масла Хотя некоторые вещи я могу делать в столице для своих близких невзирая на их протесты Если кто-то еще хочет первести деньги мне на счет в Израиле у вас есть пара дней пишите мне в личку К ночи облака истончились и круглая луна тускло просвечивала сквозь белесую кисею озаряя одну сторону улицы сероватым светом Затык заключался раньше в том что мне нужна была крыша дома а зимой на них не проберешься да и весной не очень-то это нам так просто повезло Она любит играть поэтому если она веселая это вовсе не означает что ей действительно весело И она работает намного более сильно чем вся муть НЛП Замечания и уточнения к этому посту приветствуются Кто ж знал поедая котлеты с картошкой заботливо приготовленные мамой они у меня вообще супер что вечер намечается насыщенным на приключения извините за сумбур это от волнения Оказалось что надо сделать видео переконвертить и слепить в одно Проверка перед сдачей 1-го тома День субботы 6 декабря начинался вполне обыкновенно Все они жили когда-то все мечтали о тепле девчонки в индии все на премьере слезами заливаюсь какие они счастливые уже глянули что за шедевр выпустил Шах Чем отличается спасательная археология от любой другой так это тем что для нее не существует времени года Написать что ли завтра Стасу спросить нет ли у них ливня Ведь время нисколько не ждет Совершенно случайно оказывается что сей текст существует в отправленных на мыле Пытаюсь подобрать свой труп однако он по всей видимости все еще находится в теперь невидимой подводной лодке и нарезает круги над бездной в середине локации Им всего-то и надо ножницами в насильника за непристойные предложения ткнуть посильнее и бежать дальше маникюр доделывая Непредвиденные обстоятельства требующие решений Не говоря про то что в самом музее толкучка несусветная чтобы получить порцию каши надо было отстоять около часа мы так и не дождались Поздравляю с очередной публикацией да еще в японском издании класс Взрослея мы забываем о радости магии волшебстве удивительном и неповторимом очаровании снежного праздника довольно слабый фильм который спасают только милые нашим сердцам пейзажи Самуи и Ко Тао а также звукоряд Я говорю да ничего я тоже из офиса тебе пишу Некоторые в домашние сады отдают вроде такой эконом-выход Мама нас с Мишей когда мы втроем называет общим ребята после Др мне как-то особенно стало не хотеться жить Убиться веником ребенок знает что он тупой находится в самом низу социального плинтуса и ему это нравится Поздравляю с ДР камрад Если вас освистывают болельщики значит вы морально не готовы выступать за клуб который любят в Петербурге и который так поддерживают спонсоры А Ясна рыбок очень любит может подолгу их ловить сквозь стекло аквариума Попыталась жить без жалоб А некоторые мои знакомые мущщины держат свое лицо а также подмышки на безопасном расстоянии от лезвия бритвы Чувствовать себя его частью здоровое отношение и к себе и к этой общности Погода вроде разошлась но уже все выглядит по осеннему блекло Завтра как надену их и как все увижу а если есть общение то оно очень поверхностное зачастую неискреннее Ну это ладно а дело в том что эта прекрасная девочка сейчас болеет и не может принять участие в этих мастер-классах мое счастье Единственный положительный момент мне сделали укол от столбняка Мне нравится быть женщиной за двадцать Стал похож на зажравшегося престарелого европейца Краска облупилась замки на калитках сорваны заборчики покосились во дворе стоит разруха и запустение и вот на столь позитивно-пьяной ноте меня в два ночи привезли домой Меня хватило на один раз после чего я на неделю решительно выпала из виртуального мира в реальный Из одежды особенно актуальны носки шерстяные платки теплые А мой отец довольно рано усвоил что красивая жизнь никому не проходит даром Поэтому может быть кому-то моя открытка покажется перегруженной но я очень за нее горда Ты никогда не хотел стать журналистом Как у обиженной стороны у меня есть право выбирать оружие Даже самая незначительная ошибка может существенно бить по бюджету сейчас самое время их исправить и единственно чего хочется так это уснуть уснуть как можно глубже Аромат ванили наполняет сердца гармонией обладает удивительной способностью растворить суету и создать теплую располагающую к отдыху атмосферу сегодня сдала документы в ОВИР на загранпаспорт Съездила в саб общалась с подругами пару раз сходила в кино пару раз в пиццерию тройку раз погуляла с кампанией Понаобещал бедным девушкам а они ждали надеялись а он Очень не люблю когда матом ругаются в систематическом порядке когда на нем разговаривают когда мат через слово просто чтоб было и тепрь следы от этих кулаков по всему тела я кстати слышал что человек должен менять не менее 5 профессий за свою жизнь чтобы не запариваться Неуравновешенно очень мостик который мог бы быть смысловым центром спрятан за деревом и смещен сильно влево справа много черного стволы у меня возникает чувство дискомфорта Цезарь делал это не по злобе а потому что расходы его были велики и ему предстояли еще большие траты на войско триумфы и другие роскошества И сразу стало легче когда я поняла что не все были против меня Расскажу немножко про свой сон Покажи фото Один из немногих работающий в ПОНЕДЕЛЬНИК Музей микроминиатюры Русский Левша находится очень близко к вокзалу это я так на заметку и в общем-то весьма интересен Проблемы не в смысле что мы неплатежеспособны а в смысле как теперь сделать все это за счет арестовавших нас канадцев Умом сознаю что народы царства и цари умирают или гибнут Негативные эмоции оказывают разрушительное воздействие на психику поэтому лучше с этим фактом видимо смириться Пожинаем плоды веселой пятницы С рюкзаком забегаю на работу весело болтаю с девчонками вся в радужном настроении и в уверенности что от Черной речки ходят маршрутки до Финбана и толкаться с этой торбой в 2/3 моего роста по метро мне не придется Некоторым вещам очень много лет а меня это не парит Общению с большинством предпочитаю чтение книг Смотрите это и в общем обещанная хорошая новость получайте удовольствие Действие картины происходит в 1930-ые годы Лекарствами здоровье гробить Вот куда надо вести ребенка перед тем как отправить в музыкальную школу выбирай дружок что нравится причем очень забавно у них есть юридический департамент руководитель Кузнецова Оглядываюсь назад и кажется что настолько долгого месяца у меня давно не было Все меня теперь здесь больше не живет На века поставленную цепь не развести И теперь собственно по поводу несанкционированного торможения Пионеров Мужчины и женщины могут находиться только на своей территории Эта задача во много раз сложнее чем исполнять выученный текст поскольку артисту при прямом контакте с аудиторией нужно быть готовым к любому развитию событий и обладать мгновенной реакцией Самый простой способ получить белый и ровный потолок провести его выравнивание с помощью штукатурных смесей Прямо зуб на зуб не попадает Самые известные столбы как я понял это Перья и Дед Для меня эта работа потеряла как-то изюминку и мне уже очень лениво вставать рано Опять мне будешь приключения свои описывать Клубец весьма себе неформальный отсюда вполне приемлемые цены для центра Москвы и при этом как ни странно довольно вкусно готовят Велосипедисты лыжники и бегуны чаще всего замедляют ход возле собак и все проходит спокойно Кто-нибудь что-нибудь понял И ему по-настоящему повезло чтоб всегда любимая команда была Чемпионом Сабурово в расчет не берем сам понимаешь Муж конечно не Ален Делон зато и в зеркало так часто не смотрится Все это от того что мы сами создали высокие требования для себя и компании ну ведь совсем ничего сложного казалось бы Совладав с собой он дал клятву Вот собственно такими космическими цветами с загадочными переливами это стекло и привлекло меня и заставило искать и копать дальше жду когда он отойдет достаточно далеко чтобы мои передвижения его не пугали Мудрейший тот кто знает о других Спутник позволит наблюдать за потенциально опасными явлениями в атмосфере Земли Некоторые моменты перекликались с его выступлением два года назад Пусть тусуется дальше И никакие мольбы просьбы и уговоры не способны растопить их ледяных сердец Прочитала тут новость что 21 июля то есть в день выхода седьмой книги начнет работать телефон доверия чтобы прочитавшие поттероманы туда звонили и их смогли убедить что жизнь еще не кончилась Я тоже очень люблю их иначе бы задача тети провалилась Никуда не денется Неожиданно из подворотни в Олега ударил яркий прожектор патрульный трактор с лязгом выкатился и остановился возле мальчика Прекратите этот дождь из событий но обижать его неохота поэтому молчу Ну и собственно готовься к кризису 2018 примерно года опять жилье подешевеет квартирку или еще что-то можно проапгрейдить если во всеоружии забавно что танцует не исполнительница песни я как-то к такому подходу не привыкла В общем я отлично провел время а если еще учитывать 26 рублей в кошельке то вообще все клево Надо у них спросить рецептик Какой-то период времени мы вообще не общались Каковы ваши любимые и наименее любимые слова Сегодня яичницей никто не завтракал как впрочем и вчера на ближайшем к нам рынке мы ели фруктовый салат со свежевыжатым соком как в старые добрые времена в Бразилии Особое место занимает чудотворная икона Лобзание Христа Иудою Так как эти яйца жалко есть а хочется все больше любоваться их можно покрыть лаком даже прозрачным лаком для ногтей ================================================ FILE: data/sanity_check_samples/RUSpellRU/sources.txt ================================================ очень классная тетка ктобы что не говорил. Может выгоднее втулку продать и купить колесо в сборе? Довольно большая часть пришедших сходила с дорожек и усаживалась на траву. Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera. Опофеозом дня для меня сегодня стала фраза услышанная в новостях: Ну не было поста, так небыло! Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал. Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек... Пояним эту мысль. она прямо бурлит у меня в крови, тормошит какими-то советами, смотрит на меня из глаз моей дочки, что носит ее имя. Полчатся вот такие язычки. Роспись была назначена на вторую половину дня, поэтому время на прогулку и фотосессию было ограничено. Иногда мне сложно понять: как можно не любить своего ребенка. в массе своей они конечно все оччччень милые ) Нащщот Чавеса разве что не соглашусь. Нужно просто захотеть что-то сделать ради того, чтобы все стало так, как того хочется тебе. Многие сетуют на отсуствие " живого взаимодействия между учеником и учителем " - а в чем оно по сути? Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. Нарасно выброшенные деньги на билет в кинотеатр. А теперь я пойду профилактически рыдать в ванную, как все толстые неудачницы. вобщем как вы знаете из моего не давнего поста я жаловался на пропажу писем с моего ящека на почте.ру Предлагю поиграть в детскую игру " Ассоциации ". Сегодяшнее утро выдалось просто волшебным. хороше что на выходгых не было стен, только деревья да ручьи... Было тяжело, переводил беседу карабахский армянин. она сама придумала образ, и как бы небыло, думаю ей удалось передать атмосферу... А Рите снятся сны, в которых меня убивают, патаму шта я пытаюсь всех спасти. Лчше б этот бунт эритроцитов переждать в дубраве люминала, У нас всегда достанет сил, чтобы перенести несчастье ближнего. Поффтыкав в аэропорту поехали к билетным кассам где я взял билет на поезд. Компютерная программа для улучшения зрения а днем мама снится как будто мы с ней в соре и она мне чтото выговаривает... Интересно чтобы было, еслиб этот фильм посмотреела бы с Димой... И вот наступил сладостный момент - я вышла из дома в шесть вечера, против планируемого без пятнадцати, и поспешила на встречу с Надей. Мошный лазер - в нерабочем состоянии - 350 кредиток. Так вот я боюсь подержанную, потомучто меня провести как нефиг делать. хороше когда каждый год как первый... Особенно мне интересны Капулетти, включая и прислужницу Кормилицу, и молодеж которая будет учавствовать в поединках. седня должен был на работу притащиться программист и вешать всем оплеух, причем бОльшую часть на меня! Отвественность за реализацию, естественно, лежит на контрактных пивоварах. В принципе, я к этому готова. Ограничте время между кликами, что-ли... Кили открыл, что недоступные наблюдению поля - мозговые, гравитационные, магнитные и электрические - состоят из трех потоков Эстония, эт канешна не Португалия, но 4:0 тоже результат! мы понимаем друг друга с полу слова, но диалога никуогда у нас не получаеться... Начальнег зажог павзрослому: всю предудущую неделю ходил покрытый прыщами, а с понедельника слег - ветрянка. Подсаживаеться женшина - иностранка из Норвегии, она приглашает меня танцевать, оказывается что это место слишком крутое для меня, я загруживаюсь и больше в этот вечер не танцую... В мире, на самом деле, крайне мало действительно по-настоящему значимого. И еще тут ряда на 4 назад какието малолетнии наркоманы, не понимая всю трагичность момента, начинают хихикать, потерянная молодеж. Ощушаю себя с ними монголойдом, я никогда так много не молчала как молчю тут, и не потому, что языковый баръер или еще что-то, просто коментариев нет Отвественный редактор издания, Юлия Потемкина, прислала мне потрясающий ролик про триатлон. Пополнил коллекцию шмоться от Fallen, всвязи с долгожданным завозом. Атличный лотос у тебя Меня никто ни о чем не просил, просто хочется поделиться... Чем Дяченки и Олди мельче философов с мировыми именами? Мы с Сашкой купили ( надо было что-то в бассейн на корпоративном отдыхе, что ли ), а они нам обоим оказались неудобны дико - высокий подъем у обоих, а они по-моему на плоскостопых расчитаны исключительно. Такое ощущение, как будто до этого видел сон, а сейчас только просыпаешься, но почему-то все адово болит и дышать трудно. Обълись пиццы и всячески ввеселились. Возможно, все ограничится приятным знакомством, а возможно и любовью на всю жизнь - кто знает? русским мог стать любой, кто любил русскую культуру, родину, говорил по-русски. кому подойдет: инопланетянам, или людям живущим загородом, или владельцам ну оооочень большой квартиры с ну оооочень большой кладовкой, куда это чудо технической мысли можно спрятать. Распрашивая иностранцев-гостей Питера о их впечатлении от русских, частым комментарием был тот факт, что все слишком сердитые и серьезные, никто не улыбается на улице. Библиография, приведенная в конце книги, впечатляет. А про дырявую книгу я даже не знала, спасибо, что заинтересовали ) Зашел в в какой-то сетевой европейский ( не помню название бренда ) магазин, - купить сыну игрушку из командировки ( lego ), - цены Московские, девченки-продавцы по-русски говорят плохо. Сегодня вот днем выдалось свободное время, и я опять ходил кататься на коньках. А она научилась справляться и жить дальше, зная, что близкие люди страдают, чувствуя собственную боль. Зубодробительня гребенка с острыми камнями на протяжении всех 50 км пути! Слава богу, на минуту мне показалось, что я оглох. прийдя в МГТУ я был удивлен никого необноружив там... Профессиональнаякарьера Патрисии началась - чтовполне закономерно - недалеко от родных мест, но за пределами Франции. и как Мишка сегодня сыграл, и как тот самый ненавистный Олег им гол каааак забил! а спустя три часа я зашел в серверную школы которую мы обслуживаем чтобы выяснить отчегоже всера небыло у учителей интернета и хронографа... Уилл был мастером прятаться, но не мог воспользоваться своими талантами, потому как не имел возможности обнаружить в темноте никаких укрытий. давайте на эту вот самую тему побеседуем годов через 25 :) Но тут-то дело за малым - написать ее. Онибыли лучшими наавтобанах инагоночных трассах, создав универсальный миф обидеальной спортивной машине. и мне вновь хочеться изводить пергамент на писмена... Обнаружиласть тут в залежах. Я вчера чуть не купила такие же в супер-маркете - золотые и серебрянные, но решила, что дороговато ( по 160 р штучка ) Расщифровать аудио мне так и не удалось. Любителям политических " боев на цветных карандашах " можно не читать. Самойто в разы дешевле сделать... Хоть я слушаю тул недавно, и ваще тока полтора альбома успел послушать, мне все это нравится. Едем дальше на север, проехали город Бовен и к вечеру уже были в Таунсвилл. Навернео поэтому мне мечталось о сынишке. Игрушку " Покорми меня " ооочень давно хотела сшить, но доделала только сегодня ( Яся стала плохо спать по ночам, а днем я от нее стараюсь не особо отвлекаться, поэтому времени мало ). Варикозная болезньматки симптомы Вопрос в том, как совместить все эти векторы. ника прости меня пожалуй ста я очень виноват определяет правила взаимоотношений вас и их и даже както легитимизирует ваш забор. как же так надолго артисты отпускают? Все желающие могли в любой момент совершить паломничество на кухню за добавкой. Мущщину очень озаботил фон ( точнее, надпись ). Ближе к полуночи, когда станция совсем опустела, он все-таки решился. никада не пить - оооочень знакомо! и эту Радугу Вы рисуете своими мечтами, фантазиями, елочными игрушками, украшениями. Не люблю рассказывать о себе. Симаатическая система наоборот отключает все железы внешней секреции: как потовые, так и слюнные. Разультаты моего длительного сотрудничества с компанией Nettrader. Съездеть чтоль в музей какой, коли они все сегодня бесплатные. Першпектива купания в ледяной воде никого не радовала. Это основной курс, в рамках которого есть еще несколько, но о них позже и дальше. Припораты от варикоза Съездели два раза с подругой за билетами, вечером в рассчете на то, что купим чуть раньше и пойдем, приехали... Тогдя я возмущался, что некто, не понятно как, получил архив диссертаций РГБ и барыжит ими. Сранно как-то поиск в ЖЖ работает. А вобще пришла в голову мысль: вроде не весна... Оченьславный ребенок, настоящий ангел! Пришлесь идти в обход... Приветствутется знание технических основ ( принципы построения БД, опыт программирования на Navision Axapta ), опыт работы на стороне заказчика. Провожаем жизнь мы с тобой. Опаслася ли он своих снов? Расжился на выходных экземпляром сабжа. Однажэды обезумевшая старуха Людмила Ивановна, раскидала все наши зуные щетки... Военные в целях безопасности оцепили пирамиды, а также Каирский музей и другие достопримечательности. Пользоваццо сервисом проще простогО! Железная машина поломалась об православную духовность. Небыло бы универа и одинаковых прохожих, калясочников с детьми, блонди в розовом и голубом, нелепых гоп возле игровых автоматов, и самих игровых автоматов, гламурных перцев, реалити дом2, партии КПРФ, алкогольных напитков, однообразия на прилавках магазинов, отсутствия скейтпарка, запорожцев ), разбитых лиц и т.д.... Сочуствующие тут же бросились развивать тему, ( и так достаточно бредовую ), и доев свой грибной завтрак и покатавшись на радуге ребята засели за КРЕАТИФФ. Их творения могли казаться странными, непонятными. Нсли не ошибаюсь - в первом томе Экономикса изложен. но когда сажусь писать, мне начинает казаться, что не следует об этом писать. Но зато были и болезни, и паразиты, и полное отсутствие представлений о гигиене, да к тому же численность населения контролировалась тогда не современными контрацептивами, а саблезубыми тиграми и всякими прочими хищниками. Однако статуи, выполненные им, всегда лишены глаз, - что воспринимается с трудом даже теми, кто ценит многие другие аспекты его творчества. Его рождение - самое таинственное и непередаваемое земное чудо. Челка отросла, лезет в глаза и уже мне мешает - но идти стричься, естесственно, некогда. Теперь сюжет еще круче: Джефф Гордон ( известный автогонщик ) взял баночку пепси со скрытой камерой и разыграл менеджера автосалона Слишклм много тоже плохо, но и какой-то постоянный минимум абсолютно необходим. Однимает хорошую девушку, его знакомую Все подруги всегда курили, я - нет, еще нет. Основыные же беды от злой Эриды, от нее же война, а не трудолюбие. Когда что-то не получаеться, падает самооценка, разрушаеться идеальный образ. Ктото выкладывал вконтактепро медикаменты смысл был в том что существуют российские аналоги которые намного дешевле иностранныхи приводился список лекарств Кроординирует движениие специальный человек, идущий спереди и, как правила, задом наперед. После этого греки завладели преимуществом и вскоре отыгрались, а затем и вышли вперед. даешь больше ножек, кстате можно немного и позагорать! Расказчик бодрый, понятный, а главное - компетентный. говорят у него был шок когда мы прихали. Не ссорьтесь на людях, и не показывайте недовольство тем или другим образом. Выдали студенческий билет, по нему она жила годы учебы. Проичитал удивленные отзывы о православном нисхождении огня. вобщем когдато год назад по сети ходила записо звонка в техпотдержку некого пользователя СТРИМ которого довели до пены у рта с криков " разрывы " Но, что ты с ними сможешь сделать? Сейчас более известен его сын, Максим Кантор, художник и писатель. Я могу есть нмного, но очень начинаю тосковать от однообразия. Открыывю книгу про детские инфекции, там все написанно и про слабость, и про капризы и про резкий подъем температуры на второй день, после которого и начинается высыпвние! Перессказывать содержание спектакля не буду - он ( как и все елки ) довольно забавен. он тряпки убирает там человек полуживой в хламину пяный!! фотка классная кстате, хоть и не по теме Разговор чтото зашел про роботов и я долго и с увлечением рассказывал ей о философско-антропологической подоплеке многих фильмов типа Иск разум, Валли. Иногда даже приятно, что выходные закончились и можно вздохнуть спокойно: D И если им вдруг хочется дать оценку, то чаще всего эта оценка касается именно этих шаблонов, а не реального человека. вот например незря же нас поделили на мальчиков и девочек, ведь девочки берут то, что не дано мальчикам и наоборот... Ну вот, сегодня дружно находились в каком-никаком напряге, по метро каталась много, ну и, собстно, ничего не было. Как-то раз было подобное с одной знакомой, но вроде бы инцидент был быстро исчерпан. Я б и на такой состав бы сходил, еслиб билеты стоили раз в 5 дешевле. Он становится безупречнее день ото дня, вот о чем я. Сегоднямрачная погода. Помоему в челябинской транспортной реформе никогда небыло головы. Священослужители ходят в белой или голубой рясах, без всяких золотых ОГРОМЕННЫХ золотых крестов. Неососознанно стал вспоминать этот стих, сначала отдельные строфы, потом куски... Сохраю на память кое-что по этой теме. все говорят что интернет-блогосфера - начинает както влиять и в чемторулить... the sims 3 увеличить грудь Но анализируем публичного человека, чьи высказывания по одному из самых болезненных вопросов современной России тиражируются прессой в качестве авторитетной, почти официальной точки зрения. Поэтаму возникло не допонемание и весь этот фильм. отпуск на носу - незнаю как его применить ) Свободя сознания - это отсутствие устойчивой психологической зависимости от чегобы то ни было. но сыро очень и ваще ат полный. Для меня было очень важно приходить поздно домой! Воинственный и могучий бог войны воплощает в себе страсть и чувственность Попрежнему есть молодые люди, делающие записи в свои записные книжки. В общем, я и так уже собирался ставить игру, а после такого... Хороших всем выходных и веселого праздника Песах! Первй день автобусная экскурсия, до биг бена не доехали. никада не угадаете что это кстате Создатели рюкзака учли, что бедра человека выдерживают бОльшую нагрузку, чем плечи, поэтому шестичасовое таскание сына в рюкзаке никак не отразилось на моем теле. Пожже буду выбираться в сторону центра. Я очень рада, что вам мои посты нравятся :) каждый атом Вашего тела был когдато материей ближайшей звезды Вполне себе нормальный лагер. Улица Кирова теперь пешеходная, давайте переименуем ее в Пермскую. Отадала долг маме и выдала денег на прокорм. Но ваще, конечно, хочу Джойстер. Я тебе ничего рассказывать не буду, про меня ты и так фсе знаешь... Сань, я про себя вобще молчу. Диктатура одной партии была заменена диктатурой военной хунты, столкнувшей страну в пропасть гражданской войны, продолжавшейся 10 лет. Препораты для похудения на заказ Это, конечно, цветные иллюстрации, никакие не фотографии. А еще там на митинге вроде бы выступали местные музыканты. нащет гуливера - детям читать невозможно. Самыи прикол в том что делая дела в своеи жизни мы этими делами показываем отношение к близким своим а когда много гадости сделано но попятную уже не-как слишком многих обидели. В этот момент я определяю, что нахожусь под властью этого наслаждения. Страныым стал институт наш мировой Рекоммендация к жизни в этом сценарии следующие. Проблема в том, что я вообще не знаю, кто мог бы это прочитать. Напректировали различные модели горок, решили сделать ее разноцветной. Удалитъ анкету на однокласниках возможно, последнее, что я скажу кого-то немного обидит, но этож дневник, блин, и в нем я должен писать то, что думаю. Селайя считает, что против военных намеренно выдвинуты обвинения в незначительных преступлениях. Рэмонт это просто полная жесть... Руки-ноги раскину и сплю, а еще пальцы растопырить - ваще снежинка! а еше хочу застрелиться сразу из двух пистолетов и почувствовать, как две пули расплющиваются друг о друга внутри черепа. Всю голвоу я сломал незнаю уже ничего вобоще нихочу Об этом так стыдно писать, но я только в начале пути... Афальтоукладчик с проясненным лицом, улыбаясь: Но для большинства людей новые нормы, по всей видимости, не угроза - налоговики и валютные контролеры просто не узнают о счетах, уверен Кандыба. Короче полный бойцовский клуб: " Он спит пару часов в сутки ", и кароче он вообще крутой чел... Читай книги с телефонов и компьютеров. Тепература в выходные флуктуировала в районе 37, короче нормальный рабочий процесс. Правило земледелия: Все взаимоотношения можно и нужно культивировать. Сделайте дыхательную гимнастику: медленно, глубоко вдохните, на шесть секунд задержите дыхание, затем в течение шести секунд постепенно выдыхайте. Кчакчество вроде ничего -- друг не жаловался. Симтомы зажатия пупковой грыжи Потму что это - от Аллаха. Разьве что бегущая вода... Прищлось ответить, что " случайно не я ". Из особенностей стоит выделить то, что мне пришлось вести занятия по математике. Осколки -- зубристые, непослушные -- дни, ночи, вечера. Прямо на храме, обвивая корнями его башни, растут большие деревья. Я вежливо отвечаю, что они ошиблись номером и Зинаида Васильевна тут не проживает. Результат на лице налицо ) Хорошо, что Гошу успели унести, и Гошины родители не стали свидетелями моего позорного открытия. Завал кароче, но я не унываю. Я знаю, где живет хорошее настроение! Прикодьные статусы для однокласников Много места, если не основное, в романе уделяется внутренним переживаниям героев. Вчера в восемь договорилась встретиться у Мака с подругой, откуда, собстно, двинуться гулять. Вообще врать намного сложнее, этож все надо будет запомнить Кому и Чего ляпнул, а у меня на оперативке объем не очень... Новая жизнь, как таковая, ее особо не заботит. Вы меня извините, но я опять про своих Какбе лично наблюдал щаз. И толи погода была мрачная тьоли еще что вобщем случилася со мной паническая отака, такая жесткая вот атака... Тяжело писать письма школьной учительнице русского! Только мне даже себе самой это признавать не хочеться. Помотрть на меня красивую можно тут: Я сомневаюсь, что белое золото лет через пять не начнет меня бесить. Наступила зима, хочеться играть в снежки. Спасибо милые мои за ваши поздравления, комплименты, улыбки, подарки, цветы. Професор хотел сдать рукопись в полицию и проверить чернила на рукописи, но патриарх не разрешил, а нужные листы вскоре были вырваны... тебя мы в первую очередь возьмем - ты умный и у тебя располагающая внешность! Пприкольные статусы в одноклассниках Каждый райтер или группа райтеров старались внести в свои рисунки что-то новое. Хотя, возможно, подобная неинформативность связана с новым Регламентом Премьер-лиги. Начьните питаться ПРАВИЛЬНО! ну всмысле еще одно солнышко, помимо меня: ) а вот както у коридоре встретил таки и припер. Ты -- бесстрашная кошка, которая неожиданно может выкинуть все, что угодно. Прснулась в ожидании чего-то чистогои свежего ) ) Все три монеты можно приобрести в едином наборе по цене 1020 евро Онвыгребает ее из под костей, которые лежат у его ног, машет своими хвостами, сворачивает и закрывает четыре глаза. В такой светлый праздник хочется иметь хотя бы небольшую книжку о вере, доброте и собственно Пасхе. Смешать апельсиновый сок, уксус, горчицу, мед и масло, заправить салат, посолить, поперчить, разложить по тарелкам. Приехали мы уже ближе к вечеру, пока заселились - стемнело. либо и небыло никогда любви то, либо действительно нам без них - МУЖУКОВ никуда!!! Теоретиков тоже в мире больше, чем надо. Сегодяшние утренние планы умеренно пострадали, к сожалению. Навверное он сейчас уже проклинает не хорошими словами меня... Немог долго уснуть этой ночью. Посколько отчет деловито и весело уже написан, не буду ничего переписывать, а линк вот он Так ли влияет на качество напитка распечатывание? Мывключились впроект натой стадии, когда автоматизированные системы вкомпании уже существовали наразных стадиях внедрения. Компьюьерные мониторы для людей с плохим зрением Дольше можно делать и булки, и ватрушки, и пироги, и пирожки с любой начинкой. А на самом деле, просто начальнег активно со мной дружился, а начальнице - его жене, это сильно не понравилось. Расмотрим все необходимые составляющие " революционного процесса ". Заити вконтакт без смс Рестаран оказался очень достойным, по настоящему итальянское место. Я категорически отказалась сочинять скорбные строки о живом человеке; ведь и за здравие умерших нельзя молиться, а уж за упокой здравствующих - вообще кощунство и грех. Потреяна последняя надежда на общение. Однако и в последние дни бархатного сезона в городе еще есть, чем полюбоваться и чему удивиться. Перед сном записывайте по одной вещи, за которую вы благодарны. Если раньше, несколько лет назад я друзьями называла всех, кто мне доброжелательно улыбнется, то сейчас... Ненавидшь бардов - независимо мыслящаю личность. неее, думаю что я его опереЖУ - и выключу ноут - патамушта он долго ищет ) Убрть мишуру, быть просто собой. Как раз перед ним был километровый столб. Процедудура отбеливания зубов в краснодаре Прийдя домой не верилось, что ТАКОЕ произошло и неверилось, что все обошлось! Вот интересно, австралиец Мердок критикует вопросы политической жизни США. Атаман свистнул своим ребятам, хлопчика тут же подхватили и понесли в госпиталь, а мы с Любашей побежали следом. Коммуниисты неплохо креативят в Волгограде накануне выборов в гордуму. Я даже припоминаю картинку из советских учебников истории. Мы миpные люди, мы миp беpежем, Но седня свредничала - заставила продавщицу 2 раза перевешивать! Вижазисты комментируют, что в этой работе трудностей нет никаких: лицо выбеленное, слезки невнятные. Итак, завтра защита диплома, после которой я мечтаю навсегда распрощаться со своей научной руководительницей. А какому стилю музыки вы сами отдаете предпочтение? Об Аввакуме узнал из постов Булочникова и до сих пор он иногда репостит материалы Олега. Незная отдыха и сна, слова сплетая, граматику не упаская, поэт творил. Ответсвенно заявляю. Установила словарик Lingvo на компьютер. Все сложно и оооочень бесит. Так уж получаеться что Эти люди встают между тобой и твоей Смертью. вобщем любую моральную поддержку, в виде живой души, в тот момент. вопщем будет тебе кофэ и какава с чаем ) Причем так сильно что я даже ахнула. потомучто коньюктевит может настигнуть не только Уму Турман и моего соседа по даче ;) А потом можна увольняться и хоть в Патагонию, хоть в Гондурас. Спокойно и неторопясь расселись, едут, молчат. мне нравится мужик в сером накидке с рисунко... Скачать дополнение для оперы што бы скачивать в контакте И если б не этот год в моей жизни никогда б небыло таких замечательно теплых Вовки и Аси, Ольги, Мишани и ежика, Дюши и еще многих других! Малчик читал с упоением Сухинова -- продолжения " Волшебника Изумрудного города ", имхо, бякость страшная, но читал. Тебя ощущала, в тебе растворяясь. А в подземельях замка выставлены различные орудия пыток. существуют люди у которых не голова, а непонятно что. Тогдасоответственно говорят о язычной, гортанной или носоглоточной ангине. Розврат то каков! За то, что щеки не могут улыбаться уже, потомучто болят. И соглашаешься с ними, что ветер живой, что его сила безгранична, и только когда ты на вершине мира, ты не боишься его, ты часть ветра и ветер часть тебя, мы единое целое. Потоиу и взываю к опыту сообщников Сапсибо тебе за внимание к моему ЖЖ! В центре очень много магазинов, где можна купить марионетки разных размеров ( от спичечного коробка до почти человеческого роста ) и персонажей. Тасовоать карты ни в коем случае нельзя, скорее потому что выглядит это странно. В следущий раз будет лучше. Лучше молчать и слыть идиотом, чем заговорить и развеять все сомнения. Как ни удивительно, но я сумела побороть свою лень, и взять-таки с собой форму на физкультуру... Из сообщения местных властей нельзя сделать вывод, является ли список окончательным. Обидно, что на многих фотках я в куртке, т.к. было довольно прохладно. Ладно, я разрешаю тебе какие-то силы ( допустим 100 легких лучников ) иметь в своем распоряжении - для поддержания внутреннего порядка. Не знаю, нужно ли тебе сказать " спасибо ", что ты предвидела этот момент... Основныой причиной по которой я сделал такой выбор, является то, что я очень хочу стабильности в стране... Одна из функций рекламы - образовательная, значит она, как и искусство, является способом познания ( пусть и ну оочень особым ). такой вобще не существует причины ну тоесть она лежит с вытащенным языком! К сожалению, по большей части, это нецензурная брань или откровенное нытье. Победители и призеры награждаются дипломами и ценными подарками. а ведь часто так и бывает, свободного времени мало становится, дети, работа и фсе такое... " Ты не видела, где мои носки? Ошибчно считать, что раздача ключей ведется только в одном направлении - от сервера к пользователю. Опаздываю седня на работу страааашно. Раасстраиваться от мысли, что плохо снюсь во снах твоих-бред! просто показалось, что за ночь он както поменялся, толи подушкой я его придавила! Но сегодня мне снилось, что я ей звонил. А ночи сейчас хорошие, какие-то странные, мистические, они мне нравяться... В отличие от рассмотренных выше проектов крупных порталов этот специализированный ресурс занимается только фотохостингом. На завтрак меня ждали... Вначале мы с полчаса стояли в здании, пока нас не отвели на площадку. Я пришла домой на час раньше, чем следовало бы... потому, что я просто уже замерзла - не, ну ни один обогреватель не помогает ( окромя мужчины канешна )!!! Компнаия превратит ваших близких в урны, алмазы, фарш, листья ясеня. Празнег жуть но пусть будет - повод встретицца с друзьями и подругами... Нажусь в непонятном состоянии, настроение - то ли прекрасное, то ли паршивое. Конечно же, не обойдется без конкурсов с призами от спонсоров! Следуюшей после джо в книжке идет точка закипания. Электонная система Сайлау покажет тот процент " ЗА ", который будет заложен в нее комитетом нацбезопасности, где стоит параллельный центральный сервер. Завтрак вполне приличный, незнаю кому он кажется скудным: несколько видов йогуртов, колбасы, сыра, булок, пирогов, джемов. И ваще, интернет - почти как телевизор - наркотикоподобен. Огранизмы тут же затеяли возню, стали брыкаться, визжать и медитировать мешали. Обучно она воду пытается пить из кружки, в которой я мою стеки и руки. Дооолго шли, солнце уже садится стало, в лесу слышны залпы - тревога в княжестве, ищут нас - беглянок. некотрые ничево не соображали вообще с небольшой затратой време ни удалось доиграть... Полиция сказала, что на Карловом мосту нет видеокамер ( наверное, чтобы не портить исторический вид ). Только сегодня работала с клиенткой про переживание того, что " непонятные неожидаемые собственные чувства и переживания, непонятные их истоки означают, будто меня нет ". На Серебрянном дожде я слушала переодически его программу про джаз. Однажды в этот мелкий город приедет какая-нибудь старая рок звезда, настоящий талант прошлых поколений, и поскольку моя группа будет единственной в городе, не прийдется разбираться, кто выступит на разогреве. Считала седня по календарику и теперь зачеркиваю крестики, в ожидании весны! Мало того, что они ходят только вперед, так еще дойдя до конца, становятся королевой. Написпл коммента он куда-то пропал... Выводок чудябриков полюбому будет со мной, я их в мастерскую отвозить буду. Я сплавлю вас вместе на все времена! ну вобщем признаков нет и беременности нет! Ну, была еше одна, заменить, что ли? Реклма Пепси советует нам помнить о прошлом, но жить здесь и сейчас. В интернете более общительный, чем в реальной жизни. Ослуживание безупречноне, а цена - как раз такая, что вы ищите. А раз есть о чем мечтать, значит есть к чему стремиться. ты с какова раена объясни сначало! Пролжительность занятий небльшая, всего 3 дня. Хочу завтра прикупить какой-нибудь симпотичный удобный блокнот или тетрадь. Всегда чувствовать себя у черты, что ведет к счастью и никогда не переступить этой черты. Всякый кто выжил героем продул этот бой Незнаюкто оказался главным редактором, а совет его был похожим на мамин. Мужчинаи женщина не могут жить друг без друга, но частенько случается, что идруг с другом им становится тяжеловато. Желаю чтоб на твоем жизненном пути небыло вообще никаких неприятностей. Давольно большая цифра для 15 квадратов, на которых эти милые звери живут. Уж не знаю, кто ей порекомендовал для такой роли меня, наверное, кто-то в Спорткомитете. но чувствую чтото нето в этой газели. А то последнее время раньше восьми встать не получалось, а в универ необходимо к 9.30 прибыть... Угошали вчера своей едой. Отркрыл для себя лыжный сезон ( наконец-то ). Подделаная подпись по определению неаутентична даже если мы не можем подделку распознать. Подрбный отчет в новом году! Нам нужно признать и отучиться от нашей внутренней мизогинии, так чтобы мы смогли преуспеть и спасти этот больной мир. Последователи Тантры скажут вам, что если у вас нет времени изучить своего партнера, вы никогда его не узнаете. Я наверно никогда не чувствовала себя такой защищенной. Эти люди очень принципиальны и готовы преодолеть многие трудности во имя своих идеалов. Город можно расценивать по его ритму, в Киеве самый высокий ритм, а когда я приезжаю в Х, то кажется что город стоит на паузе. В зале на одной из стен находятся надписи, сделанные якобы классиками. Обдумывю что с ним делать и как, постинги, комментарии, оформление... Вечром мы снова вкусно ели и долго спали, все исключительно для того чтобы проснуться к вкусному завтраку. ктото жертвует всем ради любви и идет на престуление, а кто то совершает подвиги во имя любви, кто то отторгает себя и посвящается любимому человеку а кто то заставляте ради нее же посвящаться ему. Жыгули ( она же классика ) стоят на конвейере 30 с лишним лет, являясь, по существу, убогой копией Фиата середины 60х, Приора с Калиной - унылые образцы дизайна 15 летней и технологий 40 летней давности. Суп проще вылить в последний день и сказать, что да, было очень вкусно. Отечетсвенные банки в основном работали с корпоративным сектором, а его состояние сейчас, мягко говоря, не блестящее. Ваш партнер не является вашим врагом. вобщем, вижу цель, препятствий не вижу ) Снова подборка светильников по личному вкусу. Даже детей своих угомонили, что само по себе редкость. Началасвою карьеру ди-джея в 2007 году. Вадим во время важных совещаний прячется под столом, зачитываясь медицинскими журналами. Врут зеркала, что красота померкла, врут зеркала, что молодость ушла. Отметил новый год в больнице, подарив старому свой апендикс ( незнаю, честно говоря как правильно пишется это слово - не казнить ). Приведемпримеры полного несоответствия проекта многим параметрам, что и вызвало социальную напряженность на Загорянке. Прыятно познакомицца! Моий бос бывает крайне неадекватен, а иногда и более того, зачем ему вдруг понадобился мой приезд, я так и немогу понять, ну окей я буду. Монастрырь был очень большое и красивый. В деревне жил старик, очень бедный, но даже короли завидовали ему, так как у него был прекрасный белый конь. Правосланая Церковь - является единой и соборной, а потому ни кого из ее членов не может не волновать судьба своих братьев-единоверцев, где бы они не находились. Это же не развалины средневекового замка, где можно найти, если повезет, сундук пиастров или череп бедного Йорика. Отжимания от медбола 3х10 кстате баня загорелась как шульга с зимариным уехали ) Конкурс проводится одновременно в России и в Италии. - незнаю, ходить на море, делать ремонт, кого нибудь встретить... Бывали случаи, что за день заливало весь подъезд. Творческий потенциал может увеличиться. Проблема есть, даже кот у меня насмотрелся и научился - переодически мимо попадает ( он же здоровый у меня лосяра ). Особливо это чувствуется на премьере фильма, когда есть с кем поздороваться. Я вобще горжусь, как за себя не гордилась сроду. Муж уже вернулся, и Ваське спать пора, - Боже, как глупо все вышло! Ощастливленный новым альбомом, выхожу на просторы ночного города, и решаем мы с Левонтием и Анжелой идти гулять по оным, по пути втариваясь коньяком и колой. Сергейвикторович благополучно улетел в отпуск, а значит что? вижу тряпки лежат на полке у друга спрашиваю чть это И естесственно разрешили взять со мной девушку. Ну вобщем она имеет - Женское счастье! Особенный человек, естесственно - виделись по полтора часа минимум каждую неделю на протяжении 8 лет. Кто-нибудь сталкивался с такой ситуацией? Поведйте плиз, а какой предмет она ведет? Рад, рад за тебя, теперь тока экзамены сдай... Мне ничо вот пока непонятно. Вот только это по-свински и совершенно нагло. Обчным мылом лучше не мыть тело, т.к. мыло сушит, используйте гель для душа. И - никого из " моих ", а " те, что наполовину " - естесственно, притянулись к другому полюсу. С ним можно говорить на любые темы, кроме конечно отношений с другими мужчинами, чтобы просто напросто не ранить его. он естесственно за ним нагибается и вдруг в глазах появляется иконка. Чего же они так испугались все эти римляне, всего-то книга, всего-то о любви... вобщем питаюсь окрошкой, пиу минералку, смотрю уже 5 сезон клиники. Потмушто время еще есть, и деньги тоже. Спапсибо огромное за репортаж! Выходные выдались на редкость - и радость - долгими и, прямо скажем, отдыхательными. Сегодня в мои выходные, мне позвонил начальнег и вызвал завтра на " разговор ". Если Вы полетели самолетом Аэрофлота, то никогда не сдавайте в багаж ценные вещи. Поднмать надо не читаемсоть, а культуру прежде всего. Предпложительно основан в XII веке, в период правления династии Неманичей. Неожыданный у вас, мальчеги, для меня диалог. Спасатель - от него зависят человеческие жизни, а общем и судьбы людей. Хооршее такое кино классическое, смотреть приятно и легко. Ну а больше я ничего не могу советовать, потмоу что очень от секреции зависит: ) к себе его забрать не можем, т.к. с моей собакой не сживется ни одно живое существо. Изданный в 1368 году, этот устав определял горное право, порядок трудоустройства, регулировал добычу и торговлю солью. вобщем о Йоте я услышал впервые из уст оченьпродвинутого стулента-экономиста Артура который вместо книжек и тетрадок носит с собой маленький ноутбук. Работадатели не должны платить государству ) Присоединаюсь к справедливому негодованию. Ваш цветок всегда должен быть рядом, чтобы защитить от обмана и зависти и ослабить приступы ревности, которым вы подвержены Собственно, я им заинтересовалась не только из-за статьи, а вспомнила, что мы как-то заказали его в каком-то кафе в Амстердаме. Попугай с удовольствием любуется своим отражением, надувает щеки, ставит гребень. Вот хоть бы раз она чего-нибудь ответила. Посследнии две номинации не слишком оптимистичны, но если даже, мы хотя бы в одной ( из трех ) номинаций получим первое место - тоже не плохо, пиар как-никак. Но ето хорошо, так как затем из отколотых зубов удаляются нервы. На данный момент внутренняя валюта сети употребляется для покупок виртуальных товаров в играх Facebook, в некоторых интернет-магазинах, работающих в социальной сети, а также для расчетов в скидочном сервисе социальной сети Facebook Deals. крем детский ( нет, Я не перепутала со вчерашним днем - Я и седня купила, вместо лосьончЕка для тела буду пользовать его ) только она не желто-красная, а невзрачного цвета и сухая Сидела разбирала почему в момент, когда я сдаю экзамен уже 4 раз кто то разговаривает и я теряю концентрацию. Вот это-то вкупе с духовными скрепами на что списать? Но сейчас я точно знаю - на вашу поддержку в беде я могу рассчитывать. Очнеь скучала по нему все лето. ну кстате девкам было не 13 лет когда им в руки дали инструмент, а 16-17. Сложно на самом деле обяснить то, что происходит в моей душе. Парламентський принцип формирования правительства, двухполюсная поляризация политического спектра, наличие у партии политической позиции, сильного лидера и известных имен с репутацией профессионалов дают этому " правительству " массу преимуществ уже на старте. Не особенно честолюбив, но не терпит, когда его обходят по службе, из того же чувства справедливости. пожилая девица, сестра князя Иосифа Венцеля, постоянно живущая в Саксонии. Приезла мне чудище? Просвестевшая над головой пуля заставила его оберутся. Некотрым изменениям, прям скажем, удивлена... Этоперевод фрагмента воспоминаний о жизни в Англии, в провинциальномшахтерском городке рубежа 50-х и 60-х годов. Это была единственная экскурсия на гору Монсерат ( о которой я расскажу в следущий раз ) в нужный нам день. и он на удивление пришел раньше, обычно он опаздывает на 10-15 минут и я его матерю потом, но седня он меня лешил этого удовольствия ) Мы так много говорим о любви и так мало любим. Я узнала об этом давно, но меня до сих пор приводит в ужас эта мысль. Постарайтеь теперь найти и отсканировать все законы касаемо авторского права, ну и гражданский и налоговый кодекс - так, за компанию. Он станет пилотным проектом в рамках " туристического кластера " на Северном Кавказе. Проыдя еще немного, он понял, что идти дальше сегодня не сможет и остановился в Эрендзи. ну тоесть ничего конкретного, а в целом обо всем этом. После изъятия Рожновым у меня диктофона, сопровождающееся ударами в спину, я понял, что таким же образом могу лишиться и фотоаппарата и надо спасать хотя бы имеющиеся кадры. Зачем мы пишем дневники? Если очень хочется спать, вздремните. Хочется жить отдельно от этого сумашедшего стада, извените, не в обиду сказано. Он подразумевает следующую логику исследования: полностью просеквенировать несколько десятков геномов высокогорных жителей и - путем многовариантного анализа по сравнению с геномами обитателей равнинных областей - выявить различия в генных характеристиках. Чувстовалась рука тренера. Хранительница домашнего очага должна быть верной мужчине, иначе ее дети окажутся без добытчика. Норнштейн - это человек, которым мы можем гордится, что живем с ним в одно время и в одной стране. вообщем пока не прочитаете не поймете ) Низкая интегpиpованность: следует своим побуждениям, малоконтpолиpуем. вообще незнаю чем занять себя этим вечером. Кстати, что-то не все цифры видны. Посорилась с фотофайлом, как подружусь еще с какимнить ресурсом хранения картинок кроме лж плюс, то выложу все сюда еще ) Поэтому если я случайно начну истерично хихикать, или неуместно шутить, или неуправляемо объясняться в привязанностях - это нервы. Сначла купила пластырь Никоретте... Представье себе какой нибудь офис на территории бывшего СССР не отмечающий 8 Марта, Новый год или День защитника ?????? Рюкзазк часто добавляется к последнему варианту. А к тому, что ( исключительно на мой субъективный взгляд ) ребенок и сам может сообразить, как слепить елку или дедушку Мороза. Дае не знаю, что сложнее, про нотную грамоту молчу ваще ) Он говорит о том, что есть иная действительность, и стоит ее постичь, как эта так называемая реальность просто блекнет, становится нереальной. Офицыальное фото, от организаторов Я возмущалась - ну как это, как-то это так звучит нехорошо. И я безумно рада, что я здоровая, а не инвалид. Рабочный день длинный потому что здесь на конец много дел. По-моему, не одна я испытала эстетический шок, потомучто область в радиусе предполагаемого эпицентра в случае падения этой биопирамиды в считаные секунды зазияла неинтеллигентной пустотой. Мозайка из сплетенных пальцев наших рук, чуть ближе друг к другу, ощущение сказочного спокойствия и защищенности в его объятиях... Уударение всегда напервый слог, две гласных означают более долгий звук. Про вас можно сказать, что вы любите алкоголь - без всяких задних мыслей. Любоее внедрение в тончайшую паути энергоинформационных нитей человека может принести огромный вред. И у меня, кстати, тоже в машине аккумулятор внезапно сдох. Неридуманная истоиря из сети: Я купил весы, с ними время летит незаметно. Так что, как сказал Поль Валери: " Если кто-то лижет тебе подошвы, прижми его ногой, прежде чем он начнет кусаться ". Перессказываю со слов, не знаю, насколько точно, но постараюсь. этож простите не кольчатые черви и не растения, которые размножаются пучкованием; ) Подргрузился список контактов. Основвная часть архитектурного ансамбля, если так можно выразиться, состоит из самолета Boeing 727. Наберала скорость еще в горах... Папа, откуда ты черпаешь эту информацию? Сочувстсвую и желаю чтобы все решилось, а как помочь в таких ситуациях - вообще себе не представляю: ( Девченки завижжали при первых аккордах первой песни сыгранной нашим бэндом. Вот пишет замечательный издатель « журнал с вашими стихами напечатан ». Чувстовать принадлшежность, чтоли. Невозмозможно свести Православие лишь к индивидуальным убеждениям, оставив при этом в стороне практику жизни. Пишиите мне, чтобы я смогла убедиться, что мои сообщения вообще где-то видно... Неодназначное чувство у меня осталось после просмотра фильма, с одной стороны чувствуется тяжелая атмосфера в которой принимаются важные решения, происходит изменение сознания героев, рушится внутрениий мир, стороятся новые ценности. Нагладно привожу еще один рассчет чешский писатель-постмодернист, известный широкой публике по роману " Невыносимая легкость бытия ". Поетому для взаимности у нас должны быть хоть какие-то общие интересы. Как я понял, это изначально сделано. Строгость задаваемой им системы координат загоняет человека в созерцательность. Эмоциональаня перегрузка. В первых строках своего письма спешу сообщить, что я девушка. Кинопокмпанией DreamWorks планируется выпуск планшета специально для детской аудитории. Это как раз та развилка, до которой мы потом НЕ дойдем. То что пристегиваться необходимо и нужно вопрос понятен, но то что ты будеш нести ответственность и за тех кто не пристегнут в мащине вобще, наводит на мысли. Всеми правдами и неправдами пускают социальную пыль в глаза. Сами убрались или с чьей-то помощью во время гололеда и теперь залечивают раны? Приклееный скользяк или нет-это точно не угадаю. И в очередной раз думала о том, как легко, естесственно, просто. Преинтерснейшее положение у нас сложилось на рынке платежных систем. Сегодня улыбнуло: шла в поликлинику менять полис ( дооолго тянула с этим делом, так долго, что дело стало похоже на французский батон - такой же длинное и нелепое ), проходила мимо какой-то пятиэтажки, а там вовсю трудятся славные граждане Таджикистана. я первый раз каталась на таких креплениях ) Благодоря моей давольно набожной бабушке, мя привыкла отмечать еще один праздник, а именно - именины... Я морально уже готова произвести на свет название для такси. Следущие 3 часа мы были заняты преодолеванием трудностей, протискивались в узкие щели, спускались, поднимались, ползли на карачках, шли по колено в холодной воде, отбивались от летучих мышей и филиппинских школьников на прогулке. Преспособление электрокалорифера, установленного с поддержкой винтов в дно корпуса, состоит из осевого вентилятора и спирального электронагревателя. Причем, у них оооочень много заказов. ах да, в завершение, я седня еще сходила в бассейн и наплавалась вдоволь ) В книге приведены практические советы как справляться с реальными и часто встречающимися проблемами внутри фирмы. а некотрые фразы так вообще убивали. Чтоб глаза у ней счастьем светились Спасибо за твои записи в ЖЖ, которые я иногда залезаю перечитывать. Теперь я знаю што бомжи дерущиеся на улице - это не бомжи а РЕСТЛЕРЫ !!!! Баклажаны, перец, помидоры запек на открытом огне, почистил шкуру, нарезал и смешал с чесноком и кинзой. Единственный минус Тельцов - это упрямство, даже когда они неправы. Ваше отношение к идее равенства мужчины и женщины? Многабуков, сначала хотел сделать из него юпик, но в миниатюре совсем не то ( После войны в Ливии около миллиона египтян вернулись на родину, пополнив без того огромную армию безработных. Мне только кажется, потому что я в них совсем не разбираюсь. Эффективность способа напрямую зависит от скорости его применения. Осталалось понять что же все-таки сдохло: мать, проц, видюха или ( ну пусть будет так, пожалуйста !!! ) блок питания. И то еще минут сорок наша четверка ждала, когда подготовится машина инструктора. А я читаю все молитвы на ночь, я книжку в церкви купила, а вот Отче Наш не могу наизусть выучить. Стратусы для одноклассников смшные Я верю, что браки заключаются на небесах, а значит мы уже записаны в бортовом журнале на места рядом друг с другом. Сейчас в моей голове происходит примерно такое: Однокурссница в аське ошарашила предложением написать мою фамилию на ее лабораторках, типа мы вдвоем сделали. Когад Белка в очередной раз пришла ко мне и подставила мне пузо, япостелила пеленку у нее под боком и положила туда Лилового Червяка. Забыла в доме джинсы, а джинсовые бриджи, найденные с прошлого лета, естесственно, с меня свалились. Ну а космодромы, понятное дело, должны охраняться Всего в этих категориях от России участвовали около 60 работ. Оно тоже прекрасно, оно настоящее, живое, правдивое. А в 8.30 я пошагала на пары, а вечером дописывала курсовую. Однако подходы к решению одних и тех же правовых вопросов иногда разнятся. Это привело к девальвации духовных ценностей, апатии и аполитичности. Я уже подумала, что это насовсем... Потом искренне удивляются и бранятся, когда им откажешь. И мерное биение пульсара, сжатыми кольцами магнитного поля, отсчитывающего тысячелетия жизни огромной вселенной, окружающей нас. Мозк готов треснуть. Ну и слегка фотки пейзажей вокруг моей теперешней берлоги ( всмысле института ). Я как пешеход буду вас бояться, как и всех машин ) В ночь с 7 на 8 декабря " Финикс " уступил " Сент-Луису " со счетом 3:4. В прошлую субботу разбили на кухне пустую пивную бутылку в пятом часу утра. Кто заменит Деппа на посту исполнителя главной роли, пока неизвестно. так что, Дима, давайте сначало вы в Тарусу, а потом к нам в Одессу? Коы к играм вконтакте Нашла троллейбус, расположилась в совершенно пустом салоне ( ессно, сейчас мало охотников ездить в Эстонию ), долго созерцала пейзажи за окном. Заффтра попробую выручить новый. Вообщемто любая посвященная спорту новость для меня как владельца этого блога можно сказать сюрприз, вот кажется приведенная ниже класнее и не пожелаешь ) ) ) Совршенно измученная спазмами, ознобом и слабостью, я зарылась в одеяло, и пролежала так до вечера. Начал читать с конца и поэтому уже был морально готов в концовке. у птенцов кстате, нету мышц!! Вот и получаеться теперь что женщина действительно неделимое целое с мужчиной. если в Киеве маршрутки не будут брать " стоячих " людей битком - то ехать на работу и с работы многим придеться не час-полтора, а два-три... У меня, так же, как у пациента, было много непонятного, но игра состояла в том, что я - врач, а он - пациент. Позаввчера пересматривал " Горбатую гору " и в памяти всплыло сразу 2 человека... А все же с огромным удовольствием я бы поехала в Москву, но - невозможно... Вобщем береш картинки из журналов, вырезаешь интересующие темы, делаешь из них коллаж и направляешь энергию для реализации желаний. Наконецто мои рученки добрались на кнопачки написать в профайле и вот решительно собираюсь накатать несколько постов о том что наслучалось за это время... День прошел полностью одухотворенно. Прикладывам к разбитому лобику извлеченное из холодильника мясо, пытаемся успокоить и попутно осматриваем. Ну а если что пойдет не так, как надо, обращаться к семейному врачу. Следеите за нашими репортажами. Итак, что вы можете подарить мне, если не знаете что. Пасажирам задержанного рейса выдали лежаки и огородили территроию вокруг них красными лентами Теперь ты снова будешь писать добрые сказки, а я всегда буду рядом. Любопатства у них побольше, чем у нашей легендарной Варвары. за небольшие денги или даже просто так в умелые руки отдаються замечаельные книги Практичекси никакой информации из вне. вот это у меня пробел пока - нащет струй. Нородные рецепты отбеливание зубов вобщем срочно надо в сберкассу. завтра днем еше будем тут, уедем, скорее всего, на 3хчасовой электричке. Ручниками я считаю любителей, которые тоже знают все фотографические азы, но при этом снимают исключительно в ручном режиме. Сегодня, согласно всем кодексам и сводам правил, заверив у всех заверителей и проставив все печати, оффициально поздравляю товарища хороше быть слепым и глухим, и на всякий случай немым... Мы не сразу отыскали инструктора, но сильно обрадовались, когда нас нашел доброжелательный мужчина с ооочень накачанными руками. Я уже забыла, что это такое - идти в обуви без каблуков. Настроене не понятное какоето солено-сладкое с одной стороны жалко расставаться с родителями и другими близкими людьми, с другой радость от наконецто сбывающеся мечты, можно и так это назвать, хотя скорее стремление к более спокойной жизни, ну и для меня лично есть огромная доля приключения в этом всем, это как минимум интересно, я всегда мечтал о таком путешествии, вот так сижу обуреваемый чувствами ) ) ) Прогматично так подумайте, если охота будет. Недавно говорила с одним человеком на эту тему, и он мне поведал, что его родственники вобще не общаються друг с другом Соедените две получившиеся смеси в одну. И вход в дом каждый хозяин обустраивает с таким размахом! Это еще хорошо, что ты в рыбном журнале работаешь. Хюлькенберг квалифицировался девятым, но на старте у него возникли проблемы. вобщем сниццо мне что я нашел таки артефакт позволяющий видеть что там у людей внутри... Что белому человеку кажется моральным, для японцев аморально. Просматреть скрытую информацию вконтакте Практичнески минуя сознание, ощущение этого постоянства уходит куда-то внутрь и, волна за волной, ложится где-то очень глубоко. Мне нравится, что он кладет мне голову на плечо, и это - естесственно. Неторопясь и на низкой температуре печь безе. Мир не шибко справедлив. Если сравнить площадь крыши и нашей квартиры, даже только кухни с прихожей, потому как теперь сволачи выселены туда, так на крыше места явно больше. мы с Денисом вместе рисовали, он мне очень помогал и поддерживал, это доя меня очень важно Это где такое случилось? Подхожу к тому дому, где скребут лопатами таджики, и слышу: " Вот апять ана!!! Сегодня поперлась в поликлинику близ дома, полчаса блуждала, потом набрела, мне дали от ворот поворот, дескать, я ни по прописке не подхожу им, ни по универу... Сгодня гоняли с любимой на стельбище в Манчестер вообщем уезжали в печале и тоске, когда еще предстоит эта поездка, но с огромным желанием приехать сюда летом!! страшно както теперь домой поздно возвращаться! Если она этого не дождется, или Вы ей не напомните о Ваших отличиях, то она будет действовать строго наоборот. Я наливаю воду в кулере, как обычно, смешиваю холодную с горячей, а он мне " Осторожно, вода оооочень холооодная! А гостинная она для того и делалась, а то в РД Урала уже ваще ничего святого не осталось. А потом я доолго-дооолго-доооолго их юстировал. Потохоньку полегоньку бюрократические иннициативы приобретали маразматично-параноидальные оттенки, но, бисмиля, многие иннициативы так и остались инициативами не получив материального воплощения. И как он с остальными членами семьи? Да что с тобой говорить, ты ж наполовину в земле... В очередное пробуждение, я застаю рассвет - небо набирает все больше светлых тонов. Нехотя поднявшись, я переоделась и побрела на кухню... Но на деле Марк никогда не умрет в каком-то там лесу. Не о визите же к элитному пульмонологу нащет обструктивной эмфиземы. Под надзором нескольких учителей они проводят сутки в этом центре: играют, читают, проводят дискуссии. Правда я его как раз с 80-х и люблю. Но как и в любом парке там ессно были эксурсоводы. Значет в субодту покажунт кено про кедал Кедалы ( ПатамучтА рисовать на себе я не могу, раздеваться без рисунка как-то тупо, а красивая я итак ) ПАСЕ это всего лишь ассамблея парламентов. Стоит возвысить мозг над остальными органами, и ему останется только критиковать, то есть выхолостится его основное предназначение. всего диалога мя непомню, но посмеялись от души ) Подскажыте мне темному, чего зазырить перед сном, типа можно без мяса, можно даже без кровищщи. Он был молчаливым симпатичным брюнетом, а я рядом с ним была невыносимой болтушкой. Прердлагаю вашему вниманию, похожие по смыслу, но разные по содержанию два фильма о любви на всю жизнь Никогда не думала, что меня могут поставить в тупик такие вопросы как: " Какие мне нравяться фильмы или актеры? " Хотите разъехаться - так есть же обочины! И нужно ли вообще спрашивать разрешения работодателя на добавление материалов в собственное портфолио? В октябре 2001 года он попросил помилования за примерное поведение в тюрьме, однако суд отказал ему в освобождении. У двери валяется серая тряпка. Суббота прошла под эгидой хорошего настроения! Покапаться в песке - одно из любимейших занятий. забавное обстоятельство - в эти выхи был день города и пьяного люда на улицах было ну ооочень много. У нас все выкосили нещадно. Сентябрский семинар - продолжение встреч, целю которых является исследование истории диктатуры и протеста против тоталитаризма. Рекокомендую к сотрудничеству. Проморзгло и муторно. Вот такая вот история, вообщем то из статьи понятно, что наши власти исполнительные теперь могут в пьяном виде делать чего захотят, и отвечать они будут только перед своим начальством. Рапредилить по пекарской бумаге натертый имбирь и цедру и сушить 30 минут. А Фея стояла на балконе и думала о стрижах, которые стремительно проносились перед ее глазами. кстате, вам финдиректор не нужен случайненько ) Србственно вторая наша экскурсия Есть дача, а это оба выходных плюс вечер пятницы. На следующей неделе в четверг 11.08.11 вечером собираюсь в Магнитогоск своим ходом. Согласно поверью, есть минуты, когда пожелания, выраженные вслух, исполняются. Далее хочу отметить, что моя работа связана с постоянным общением с людьми. Длился этап чуть более часа. Как открыть однаклассники через секретный вопрос Напьешся в хлам и станет противно соратникам и друзьям !!! Обязательно хочу миссию с дирижаблями, обажаю эти летательные аппараты. Акинфеев вовремя вышел из ворот и не позволил бразильцу открыть счет, однако на добивании первым оказался Ибсон, который и расстрелял пустые ворота ЦСКА ( 1:0 ). Как вы полагаете, справедливы ли эти упреки? Нсущного много и оно разное, но мне хочется вернуться к теме, о которой не говорил бы только ленивый - наш кризис. Ты специально синхронизируешься со мной по выходным, когда меня нет. Теоретизированое мышление необходимо для решения проблем. Вообщем вся дорого туда-обратно заняла общим счетов часа два с половиной ( Пряный аромат гвоздики способствует укреплению памяти. Или просто не считает нужным замечать собеседника? Хотя по виду о тебе такого не скажешь - но в тихом омуте... Масс-старт в биатлоне впереди еще, например... Я же говорила, что счастие грядет ) Теперь таких кинотеатров в Москве не существует. И к своим проблемам просто присмотритесь... что бы больно небыло, когда ешь то, что нельзя ) Так возникла вторая после Ассирии мировая держава. собсна это почти в одно и тоже время снято, просто облака плывут Да, мне интересно, как люди живут, и что у них происходит. пройдем или нет - незнаю и судить не берусь. Соцерцать красоту бытия. и наверное хороше, что я там был один... И сетевые библиотеки больно бьют прежде всего по авторам. Самымидревними памятниками Синопа являются крепостные укрепления, построенные при понтийском царе Митридате IV. Провниция с замашками большого города. Следует отдать должное заказчику - очень четко очерчено техническое задание на производство дизайна Написание " Бедных людей " ( это, если кто не знает, первое известное произведение писателя ) сопровождалось бы очень полезными комментариями от читателей блога. Но тут вспоминается, что, например, пару лет назад в Кельне, в связи со строительством мечети, когда едва не дошло до побоища между сторонниками и противниками этого мероприятия, с обеих сторон присутствовали сплошь вполне " европеоидные " господа - с левого и правого края политического спектра. В свою очередь газета " Гаарец " утверждает, что французский министр обвинила палестинских боевиков в бесчеловечности и потребовала немедленного освобождения пленного. У меня нет новогоднего настроения, одна апатия... Рауль тоже не кантерано, как любят считать многие ) Рита ходит в коридоре, разговаривает по телефону, на попытки загнать ее в чемодан не реагирует. Воопщим моя мысль - Классика РУЛИТ... О, точно пойду с сентября на занятия йогой. Третий год подряд я, благодаря маме, уезжаю на свой день рождения в другой город, в другую страну. Сульптура " Медведь и земляничное дерево " символ Мадрида. Разгодать вновь ту загадку черт, неужели я после своего черноморского лагеря тоже был так импульсивен? вобщем я вобще без загадочной улыбки об этом фильм вспоминать не могу ) Какая татуировка бы вам подошла? В летние месяцы Роспотребнадзор запрещает жителям края купаться в реке. Традиционно правильная инвестиция - классический кашемировый джемпер цвета беж с V-образным вырезом. а так хочеться что-то мочь менять в этом мире, не обезательно менять, но обязательно быть способным это зделать... Привезли кучу фотографий, впечатлений и средиземноморский загар. И я должен подчеркнуть, что настояший танец ето одно из самых прекрасных вешей, которые парень может поделить с девушкой! Обшая топография Южной Пристани Коссово - город, расположенный недалеко от районного центра Ивацевичи, известен памятником архитектуры - дворцом Пусловских. Он у меня живет в оооочень маленьком горшке ( примерно с два моих кулака ). Да и в любом случае, нужно найти какое-нибудь безопасное место для ребенка. Однако есть несколько нюансов, о которых хотелось бы написать. Нет ничего хуже аццки болящих зубов. От всей души желаю каждому вновь обрести потерянные светлые и добрые качества, Я как душа Тома Рэддла: разбросана по сторонам света. Google прекрасно справляется с тем, за что берется. Иногда стоит постараться, чтобы не упустить действительно милого мальчика. В перуанском городе Ило местный житель Рамон Санчес разграбил древнее захоронение и жестоко поплатился за совершенное кошунство. Спаособность не завидовать - это величайший дар. Нескольнко дней назад я потеряла паспорт. ТОЛЬКО ВМЕСТЕ Заключительный аккорд: экономическая интеграция РФ, Украины и Белоруссии. Терртория обитания зверьков, а это достаточно высокогорное плато в Андах, была обнесена колючей проволокой и охранялась военными, а сами животные объявлены национальным достоянием страны. перекрыли сайт однаклассники как быть Каждая фотография несет немалую частичку души этого красивейшего места, а каждую вторую можно отбирать и продавать, как открытку. Мы пошли в " Художественный ", нас встретила приятная неожиданность, в афише сего небыло, но мы оказались на 3D версии! Мааааммоооочкииии !!!! только что получила список вопросов для ГОСов... Я в таких ситуациях за конкретные предложения. Я не c читаю нужным с Вами полемизировать. Сейчас же - я дома, мне все сдесь нравиться. Не считая этого, запрос розыска раздачи осложнен тем, что програмка ориентирует его к поисковой системе в браузере. Ну, клятвы давать Бог запрещает. Большая просьба: приходить на занятия со сменной обувью. Опять качает головой и улыбается. Преславутая подкованная блоха, оказалась, почти самой простой! Извените если ярко вырозился. Ну во первых начальник чисто в теории видит проблему шире. Напоменило стааарый анекдот... Из-под плаката выглядывают очаровательные ножки дерева ) Пока не знаю, поеду до Львова или нет, да и вообще не могу сказать, поеду ли. прийдя в квартиру мы помыли руки, начали ставить мне иракез... А мы пили китайское сливовое вино, обалденно вкусное... Обман зрения ето не прекол просто смотрите в центр тоесть вы придете с паспортами и будете канючить - нихачуу нихачууу... Обьехав таким образом две-три фермы, и заменив при этом пустые фляги на полные, грузовик наконец часам к 12 дня вьехал в долгожданное Сандово. ни ля-ля так не получаеться, а если получаеться, то ни капельки ни искренне, и даже очень натянуто... Половозрлые и не очень парни и девушки одевают алые ленты и мегаплатья, а потом идут пить. Взрывом уничтожил шесть автомобилей, саму автомастерскую, ну и, естесственно, нашего дарвиновского номинанта. Кроме того, частные средства пойдут на строительство пяти новых стадионов. ладно когда он какбы из под полы. Муж включал телевизор, ложился на диван и открывал бутылку пива. 37-летний форвард заявлял об окончании карьеры еще в конце прошлого сезона, но согласился остаться еще на год, дабы помочь « Арминии » вернуться в Бундеслигу. Насчет вечерних незнаю, но бегущего мужчину лет 70 сегодня в 11, на аллее видел ) Но теоретизировать тут бессмысленно. Собственно он и от дождя ооочень пригодился: - ) Наудивление я увидел интуитивно понятный графический интерфейс, установка прошла успешно. да вобще по сути дела с огнем ИГРАТЬ не нужно; ) Новозаветняя модель рулит! Неговоря про то чтобы попасть в ангар с танками тоже надо было отстоять очередь... при этом явно торопился уйти и одновременно кому-то писал смску... Как вы знаете, у нас в фонде есть множество самых различных программ помощи детям проживающим в казенных учреждениях. Интересно, как там работа объективов регулируется? На следующей неделе будет новый список игр со скидками. Сердобольные женщины, которые приносили мамке каждый день немного еды, различали их только по масти. Потом нас загрузили в машину инструктора, и повезли сдавать экзамен в городе... ето моя бывшая за ето спасибо, Обычныэ буддисты, просто шаблоны негодныэ. Иначе происходит развитие у более частого, вероятно, более чистого и настоящего типа женщины. Расчитан на определенную аудиторию, адаптирован под ее восприятие, На днях перед сном рассказал мне: " Я не любю кефир ". Оплаьа в контакте через терминал Очинь поразило меня обилие всяких чаев на кухне в новом офисе, в особенности факт присутствия моего на данный момент любимого чая, который пахнет глинтвейном ) ) Потртатить средства они смогут на любые цели. Рассчетов мало, одна логика. Имбирь активизирует защитные силы, помогает сохранить молодость и здоровье до глубокой старости. очень уж он неприглядно выглядел, непредставительно както, да и ваще опустился парень ниже некуда, а про бабежку я его вообще промолчу! что то даже не хочеться подводить итоги, вспоминать этот дурдом Без изображения хорошо пойдет, никакого бамбука не понадобится. Энергосистема Южного Урала относится к дефицитной, то есть нагрузка потребителей превышает нагрузку электростанций, однако, благодаря строительству новых объектов, в том числе Южноуральской ГРЭС-2, генерация получит дополнительные мощности, и потребность в электроэнергии будет закрыта собственными ресурсами. Низкий срок службы - 1000 часов, но некоторые служат дольше. На блогах очень много трепа но иногда среди этих залежей выходит нарыть ральные жемчуженки ;) И честно говоря это не я его это он меня таранил... Постраее дедуля был ) прийдя на репу выяснилось, что мы сегодня опять неполным составом - сачков свалил на дачу. Сколкьо стоит домик на острое в тайланде Семантческая поисковая система ( используют семантическую науку, изучающую смысл слов, чтобы производить более релевантный поиск ): И это ведь есть в каждой нации. А то у меня номеров почти нет всвязи с восстановлением симки... Превратититься в кляксу, смяться, разжижиться, стечь горестными капельками, Кстати, можно ли сразу запилить международные права, чтобы я стала совсем крутая и могла сбежать с миллионами за границу? Вообще, обычно, когда мы ссоримся, у меня нет ощущения своей полной правоты, то есть я думаю, что, наверное, все-таик права, но можно было сдесь сделать вот так, а здесь - лучше, а здесь - помягче. Я сомневаюсь, что мне нравится это кольцо, а не то, два магазина назад. Предчувствия его не обманули. Чтобы каждый день этой жизни приносил тебе столько радости, величины которой хватило бы на то, чтобы полюбить ее без памяти эту нашу, такую непростую, жизнь. Еслиб кто быстро сообразил бы, можно было бы выпустить семечки в упаковке, как обычно в магазинах продают, и штамповать на ни бренд " баревреволюция ". Я вам покажу, как будить Колдуна! Как вы представляете свое положение через 3-5 лет и как собираетесь его добиться? Нечуствительны к пониженному напряжению, могут применяться с в светильниках с регулятором, очень удобно. Давно хотел выложить некоторые фотки, вот лапы наконецто и дошли... Какие смачные фотографии, хоть и поела, а аппетит разыгрался! люблю ужастики, но не смотрю теперь итак темноты боюсь, а если посмотрю потом ваще спать не могу ) Фактически, по этой же модели он строит свою дальнейшую жизнь. Ну вот наконецто забрал чать фоток у Боди, их там много залил сюда штук 25... Ой, а че ето он делает? Но вобще единственное, что не люблю мат и про детей. Надо дописывать книгу, всего чуть-чуть осталось, но, как всегда, лень. Я не знала, что моя правая нога не особо меня слушает, да и вся координация хромает. Любое дело, направленное на помощь жертвам насилия и несправедливости, вдохновляло его. Утешюсь мыслью, что двое детей это нормально, науке известны случаи выживания взаимоотношений в таких условиях ) ) ) ) Это я два года назад, за пару месяцев до беременности, на банкете в честь юбилея одного папиного коллеги. Хотя она вроде бы относится к психике, мне хочется назвать это оценкой способности воспринимать окружающий мир во всем его многообразии. Одобрен был только один карандаш для глаз, который я как раз не любила за излишнюю « кислотность » и крикливость, все остальное было отвергнуто. Обмороженых больше, чем ошпареных. Пыттаюсь успокоить руки, слезы загоняю обратно и - пулей из универа. Отпразную - затем отвечу на комменты, уж проостите... Начаили с Капитана Моргана и Текилки. Порой мне хочеться тебя убить... И кстате очень зря некоторые убеждены, что жизнь не сказка и не фильм в котором все красиво; ) незнаю как у них это получилось но факт! В Темрюке есть так называемая военная горка, где под открытым небом находится выставка настоящих самолетов и вертолетов, пушек и кораблей, танков и поездов... Но, черт возьми, где-то есть семьи, где родители помогают детям в том, что действительно нужно детям, а не в том, что, как считают родители, им нужно. Поелетим все вместе. по возможности одной в тишине, слушая звуки дома, быть и думать о своем, читать, или просто валяться в задумчивости на матрасе, чтобы молчать наедине с собой. Она скзала чтобы я съездила туда сегодня! Сочетаие магическое и очень нам понравилось. Родитялям малолетних детей советую обратить внимания на новую обувь СейчасАйгуль находится в третьей городской больнице. А потом, со временем, стало так, что я вобще не хочу ничего рассказывать. До свиданья, Оля, мы разошлись, как в море корабли. Пасиб, но седня должен аванс упасть на карточку и тогда гуляй рванина! Прияно общаться сос тарыми, но давно не встречавщимися приятелями Ничегосеб бред... Сейцас такое мясо, грех не пользоваться. не помню где читала теорию, что дольше всех живут те, ктоя является самыми большими поставщиками на тот свет, тоесть все, кто имеет отношение к оружию. давольно милый и летом и зимой обогреваемый теплым солнушком Поэтмоу все остальные раздражающие факторы усиленно не понмают моего сопротивления и делают все что в их силах, чтоы затянуть меня туда подальше. мне даже раскладывать не надо - так помещаюсь ) Мы сняли уже студию в другом месте, там правда не поживешь особо. Не смотря на дороговизну домов двери до сих пор простые. Насчт мира: ты уверен, что мир так сильно меняется, а может это мы меняемся? Оказавается можно быть счастливой и несчастной одновременно... Пронизтельно холодный ветер мчится по пустоши... В первый день после большой грозы озеро было серым и непривлекательным, на пляже безлюдно! Лапмочку то намеренно изобретали... Все что я хочу сказать это то что я все равно рядом... Именно так, большими буквами и с грохотом на всю Одессу. Так хочется, чтобы таких семей, как наша, было больше, чтобы люди не разменивали свои чувства по мелочам, чтобы встречались со своими половинками и, живя в любви и согласии, растили замечательных детей! - А столько женщин в джинсах а-ля " заниженная талия " так и хочеться подойти и подтянуть. Поводом стал очередной асфальтовый скандал. И у нас много общих знакомых, например, теперешний мой начальнег Слава Козлов, который Борман. А в чем дело то собсна? пачпорт я седня получила с прописочкой питерской, все очень так законно и официально!!! Потомучто бесящиеся с жиру гос-службы нужно ставить на место. Чудестный ребенок и я таки дошутилась, но мы ждем второго! Обязательно на него посматривайте. Я вообще неспособна понять, что руководит человеком, когда он делает то, что он делает. я кое-чем дуругим занимаюсь, интриги плету вообщем и мне это нравиться... у меня теперь плечи накачанные, так что бойтесь ) Напыщеные домики стискивают углы зрения и формат ощущений. Понедельнег выглядел примерно вот так: Прдолжаем выбирать красивое мыло на подарки нашим близким и друзьям. Надеюсь, наш случайный встречный добрался до надежного ночлега... Солцне ушло. Вспомнила тока седня утром в автобусе! Можно нормально и не вовлекаясь переносить вызовы внешнего мира - ну на работе там неладится или погода плохая или вообще както жить сложно и бессмысленно. А еслиб ты оба кеда между собой зашнуровала? То есть она не будет пронзительно-красиво " пррямо в точку " и " как будто про тебя ". Наподобии слоеного теста. Растерянный, я медленно слез с подоконника и, подгоняемый недовольным стариком, устремился вниз по лестнице. Сегодня первый раз пошла со всеми дружно играть в пингу-понгу, за что кстати всем пасибо. Предъистория - разгребала гардероб - ага... Однем словом - темные и страшные дела творятся в наших вересковых пустошах !!! было ну ооочень жарко, такое ощущение, что на вентиляции сэкономили на все ) Совсем недавно поняла, что значет " быть собой ". Пришлсь повозиться. Благо народу пришло седня больше обычного, развеселилась. Чурикова и Киркоров как ведущие - полное извращение Символизируэт стремление мужчин все в этой жизни делать ради женщин. Они, представляете, зовут какую-нибудь, назовем ее условно Лаурой, на балкон. Буду получать третье высшее образование " Психология ". Стоило это все оочень недорого ) Остется ловить глюки и слушать музыку. вообщем, ты добрее чем я ) Когдя наша семья переехала из Душанбе, зеленого, солнечного, гостеприимного города в степной пыльный мещанский Оренбург, полюбить новый город было трудно. Я просто решила пояснить, так как добавляю переодически друзей... Мысные блюда не дороже 50. Этот телевизионный коктейль смешан таким образом что с утра нам вдалбливают о проблемах со здоровьем, потом о проблемах на планете, а тут еще и свои запары вдобавок. Летела под елку, жестоко отдирла бантики и разворачивала цветную бумажку, а там открытка, следущего содержания: " Извини, что не черная и не шелковая, но желаем чтобы нашелся тот, кто будет исполнять все твои замысловатые желания! " Отыхаем от институтов, садиков... ну и вобще на самом деле фильм пустой какой-то... ( Лизенок это набор слов я незнаю что это значит ) Вспомни, наконец, что ты женщина! прикольно канешно, но теперь мне надо срочняком на права сдавать, чтоб потом не стыдно было Создается такое впечатление, что это иллюзия, самовнушение. Да и какая разница, Доктор Кто, это окей, и я рад был смотреть все 4 сезона, однажды полюбому пересмотрю. Согласно древней традиции на поле необходимо оставлять несжатую полоску - шеАр - остаток, чтобы бедные могли собирать колосья. Разультат - комплименты, одобрительные огого Просто остаться наедине с собой, задуматься. Захожу я значит в пятницу в лифт, там стоит сосед снизу и какая-то ваще низакомая дивченка... Вот погда установится хорошая и все доделаю. Рекомундуемо для просмотра любителям отечественных военных фильмов, ровно как и следующий сериал Осталомь только определить куда-то старую, но дорогую сердцу моей родни тахту и стеллаж. Приехпла вчера в Самару. Я переодически появляюсь на чужих страницах с комментариями. Тачтосидит резко вскакивает и пихает тойчтостоит свою сумку в лицо. Шкворчать умеет только свиное сало все остально тупо жарится. Ниччего не понимаю я в парикмахерском икусстве: ) ) Слушает все, даже то чего слышать не хочет, лишь бы ты улыбалась! Огда может и решения были бы более саправедливыми, по поручению главы Чечни была создана межведомственная комиссия. Комлексное рекламное обслуживание. Жидкость для мытья окон не берет. Понимаю еслиб счет был 4-5, но такой разгром - это звиздец Слезяться глаза и плачет дождь, И если там сказано, что иноверцев надо убивать, он будет убивать - когда прикажут. Как просмотрет в контакте кто оставил мнение Окружающие считают их ненадежными, самовлюбленными и ограниченными. И мне сразу подумалось, что при таких условиях, пролетарии нарочно будут затягивать ремонт, дабы получать побольше денег. Льет страшно, где то в небесной канцелярии прорвало трубы, предупредили будет лить целый день и ухудшение ждать после обеда, то есть сейчас. Но в слайдшоу, на мой взгляд, оочень быстро сменяются! Я надеюсь, что с каждым годом участников акции будет становиться больше, а фобий у людей - все меньше. далее, хорошо бы все-таки консультацию гастроэнтеролога, хотя бы, чтобы узнать, какова секреция желудочного сока и по итогам пропишут диету ( острое, конечно, запретят, но я на это уже 18 лет кладу с прибором ) вносить сюда можно чтото окончательно вызревшее, законченное, на что уже невозможно и не нужно както влиять. разьве что Вася Воронов да Пашка Пескин, знаешь его? Получилсась смесь бытовой городской новеллы и протокола заседания профкома. Найдуться те кто сможет написать стихи, это возможность родителям контролировать и помогать чадам. Я прижалась к нему, подхватив под руку, такому теплому и желанному, практически родному. Эксперементируя с различными музыкальными традициями он создает очень привлекательные музыкальные произведения. Рассматирвает все в черно-белых тонах, как правильное или неправильное, не видит всю сложность событий. Все немного ( или много ) великовато, а вот у этой кофты буду удлинять манжеты, т.к. ооочень она мне понравилась, а максимальный размер был 18-24М. у меня правда очень болит сердце вот о чем - мама была верующим человеком, нам помогала и помогает Богородица, однако я незнаю была ли мама крещенная. Расскрытие двух основных понятий пути воина: безупречности и самоотражения. Ремонт компьютеров в районе метро Коломенская, Каширская, Тульская, Варшавская, Автозаводская Неротоброжается видео в контакте Однако, я поняла одно - кажется я нашла свое полноценное хобби. Ну и ладно, а зато в века предшествующие человек был столь бесправен, что нынешнее состояние дел в родных широтах может показаться райскими кущами. Нашол сосвсем случайно прикольный сайт А на нем паршивая экранная копия, что легко определить по качеству и сигаретным прожегам переодически мелькающим в правом верхнем углу... А впреди еще ооочень много разных социальных ролей. Капелька надежды через водопровод проникла в ванную, повисела на кране и, раскачавшись, запрыгнула на полотенце. Мущщина был с зализанными волосами и в свитере... А мы с ней вчера встречались. опаздпла на работу, потомучто заговорилась о сочитании майонеза с другими блюдами ) Самое смешное, что мне эта ситуация напоминает " от нефиг делать ", спать не хотелось так пусть теперь и Вам не хочеться, так егоистично, так нелепо. Потому что на него переводов многа. Но вообщем чего гадать, главное, что настроение поднимает немерянно, особенно с утра. вобщем, ближе к концу он умудрялся так вспотеть, что с него пот ручьями лился - прямо на меня, разумеется. Я люблю тебя и небо, только небо и тебя. Прадажа кондиционеров в кредит Присоеденишься к нам? Учительнида остановилась, и спросила: " Как вы Добравшись до подходящего по всем приметам места, наши рыбаки принялись разматывать удочки по всем правилам рыболовной науки. Спасибо, незачто рада поделиться ) ЭЭээххх столько впечатлений осталось за кадром... Получить блогосферный гороскоп для Вашего знака Зодиака нам достаточно факта что мы можем это сделать всегда эмоционально мертвая я приезжаю к Тане, которая кормит меня чем-то вроде паэльи с морепродуктами и виски с колой. не согласна была на девичнике, там девчонки изображали стриптизеров - было оочень смешно ) Раньше на такие должности мы взращивали кадров с самого " детского сада " до серьезных вакансий. Продаа путевок в тайланд в новокузнецке Пейзажы за окном какие-то незнакомые. Поздравяю его и всех вас с этим событием! по пути к самой лучшей выборгской бане нам встретилась хореограф по имени Лона, попросившая рубля три даже уже непомню на что. Первый такой вопрос: я знаю, что сейчас подобного рода инновационные площадки, инновационные города делаются не только в России. Может, пока я вырубаюсь на пару секунд, кто-то роняет на меня бетонную плиту? Ей в общем-то все равно было, на кого учиться, лишь бы мама с папой не переживали, что у них девочка не пристроена. Никоглда больших " приколов " не было... Сдесь ветер жуткий, холод дикий, В общем, с наступающим Днем учителя! Смерительную рубаху напялят и никак иначе. Работатьне хочется, хочу учиться и радоваться жизни! Легкие и элегантные они создают прекрасный образ. можешь поговорить с военкомом и даф ему денег както получить осрочку... Ну и конечно Мак покатился с ним, чтобы оценить ситуацию со стороны. На самом деле ты удивительно многогранна и умеешь неожиданно предстать в абсолютно необычном образе. Охраниик с непроницаемым лицом изрекает: самое клевое в столовой это полюбому сортир. Ясно, что сказать ему особенно нечего. Отогревшись и заодно пообедав в столовой, отправилась я домой... Седня была с Антоном на выставке на Винзаводе. И вдруг ( хочется написать из темной аллеи ) на меня вышла удивительная случайная здесь пара, жених и невеста. ты главное - не отчаивайся, если все будет двигаться ну, ооооочень медленно. Hа следущий день все чеpепахи сбежали. Я пережил то, что чувствует море, колышимое бурей, принимая на себя каждую пощечину ветра. Не расстаюсь с мечтой поехать на Байкал на поезде. Утром по новостям объявили, что на сегодняшний день в ЗАГСах - рекордное количество свадеб, - раз в пять-семь болше, чем в обычную пятницу. Но это не такой уж большой недостаток, если учесть, что Телец обычно все тщательно обдумывает перед тем, как принять ту или иную точку зрения. дергаю дверь закрыто пока ключи нашол минут 10 прошло вобщем люди которые меня знают и ( важно ) звонят мне на мобильник в курсе что раньше 12 связи со мной нет и вообщеее... Выскажу свое мнение - но оно предвзятое - фотк стобой почемуто в большинстве не нравяться. Ктобы мог взволноваться, случайно наткнувшись на дневниковые записи бабушки, о том, как она грешила вовсе не с отцом зачиная ребенка? Я последний раз нечто подобное видела в отдаленных городишках нашей родины в конце девяностых примерно. Она ждала меня около университета или политехнического института, чтобы первой узнать, как я сдал экзамен. Но почему же мне снова хочеться с ними встретиться??? Помошник шерифа, получивший не так давно повышение в местном полицейском участке Грин Горча сейчас, стоя рядом с ней, думал лишь о том, как они вместе будут строить свою жизнь. На работе так ваще все были очень дружны из-за этого: ) Милиардны живут по правилу 3ех заветных п: попса, пепси и пошлость. В их реальности, вполне возможно, никаких сигналов и небыло, кроме зова сердца. Он прекрасен снаружи и великолепен внутри, изукрашен резьбой по камню. Анекдоты, конечно вещь хорошая, но становится ни капли не смешно, когда вспоминаешь, что провалы в экономике страны как нельзя лучше компенсировались с помощью дармовой рабочей силы - каторжников. Я уверена точно только в одном - в мужчине, за которого собираюсь замуж. Тратиш на это усилия пусти некоторые потом и играют против тебя и часто ощущается угнетение в душе Кроме того, нужно учитывать исторический контекст: версия сказки Шарля Перро появляется во время большого голода, бывшего в правление Людовика XIV и высвечивает неустойчивость крестьянской жизни и положение детей, которыми первыми жертвовали в случае бедствий. Хотя его возили в Москву на операцию, тогда всех мало-мальски высокопоставленных чиновников возили лечиться в Москву, но было уже поздно. Тогда мы были в полной уверенности, почему-то, что это дело рук " барсеточников ". Для строительства одного гнезда требуется около 35 дней. ну паздравляю желаю не умереть, а если и умереть, то достойно! Высказали все ето дело манагеру, так, чисто случайно, под настроение попал, и пригласил он нас на любой сеанс в МДМ. Православие больше не преследуется. Плавать на каяке в одиночку не рекомендуется. Пассижир - Екатерина Леонидовна Лепнина, 23 года, работала официанткой в баре " XXXX ". В начале XVI века замок станет основным оборонным пунктом от московских войск, точно так же, как до этого он оборонял Беларусь от тевтонского ордена. Опяь завела ту же пластинку: больница, врачи, жировик ( хрень знает что за болезнь ), рак... Пучему не выкладываются фотографии в контакт Обмыли дома с мамой и сестрой права ) Было явно видно, что наша поездка откладывается, что ребята настроены серьезно и зарплату отрабатывают добросовестно. Набрал он в легкие воздуха побольше, верхнее ля выдал и смотрит вверх: испугается шарик или нет? Недавно обнаружила замечательное место для прогулок. Скууучнооо было - ужыс. Неконец еще более прогрессивная идея, это пропагандировать идею, что главное в детях чтобы они были здоровыми и красивыми, а не на вас похожими ибо что такое похожесть именно на вас? Дерижер - маэстро Кацман. беря в рассчет встречу знакомых, стояние с ними минут так по десять, остановку у метро - была на шпильках и устала ) ) Она не отрываясь прочла весь рассказ о своем вчерашнем возвращении в город. Траспортировка ковшей с чугуном в конвертерный цех Ура я сделала себе выходной, правда провела его как то странно, на улице супер просто, а я целый день проспала, потом уборкой занималась ну вобщем как обычно!!! Низкоколлорийное питание диета умные начитанные с пластичным мышлением, ну вобщем золото а не дети. обещаю загладить свою вину с меня очень што нить приятное пиши мне ) а ничо не делать ) В обзорах равнозначно будет уделяться внимание двум направлениям - документальной и арт-фотографии. Удивительо видеть от Ховарда столь халтурную работу. Сейчас она победила на конкурсе русского языка в Японии и получила бесплатный билет в Россию. Посмоти летние фотографии, выпей вкусного чаю, позови интересных гостей. И ни разу, ни разу этой зимой не встал на лыжи. Тллько Танюха куда-то запрапала. Накотиков не нашли, попросили сдать анализ в баночку и обнаружили в анализе следы марихуаны. Подкачал только неожиданно тусклый и однообразный свет, а для фотографа плохой свет - как страшный сон... Рассчеты и описание местности убедительно показывают, что все чиновничьи стенания " об исключительности выпавших ливней " лишены всякого под собой основания. Ну а потом годы полетели и не останавливались, пока мои родители не познакомились. но както все это было подощрительно... Прверку первого запуска тоже сделал не самым лучшим образом, но тем не менее уже немного работает. Подисскутировали надо сказать от души. После нашумевшего шпионского скандала фамилия Щербаков в СВР приравнена к ругательству. Дома я была почти в одиннадцать, часов до трех потом писала отчет... и дело тут не в кривоте или прямоте рук, порсто в горах надо побывать! Люблюд изо всех сил и счастлифф, что мы на одной волне! Буфетчица нервно курила, включались красные огни, орали сирены, а однажды даже приезжали пожарные Сей пост расчитан на тех кто еще эту информацию не читал конечно же, если читали и вам до лампочки - можете пролистнуть мимо этот текст, не тратьте мое ( на чтение вашего творчества ) и ваше время ( на его написание ), спасибо не скажу ибо мальчик большой. Прензидент вызывает к себе генералов. Рассказег на сопельки потянет - самое то для прожженных романтиков... Гнде можна скачать програму вконтакте не в онлайн Серега, который сдержанно и цивилизованно пил безалкогольное пиво, беспокоит нашу молодую семью! А то больно хочеться зазырить Новости страницы не отображаются в контакте 27 февраля была захвачена крепость Санто-Доминго, и провозглашена независимость Доминиканской Республики. Презванивает мне Дмитрий Николаевич через мгновение и говрит: ну ты понимаешь, люди солидные, сивуху не пьют, возьми нормальный коньяк. Он вечной жадностью ведом - такой у нас народ. послезавтра играть - полюбому нужно успеть за завтра найти пласт. Любимоый и ласкаемый ребенок примет мир добрым и миролюбивым к себе. Хотелось бы более подробно узнать о Алексее Шинкоренко: опыт работы в области фотографии, опыт работы в преподавателем, желатьльно со ссылкой на портфолио. На прошлой неделе впервые делал интервью по Скайпу. Прлучилось совсем незаметно, но надежно! В один непрекрасный совершенно день. Не знаю, зачем, но все утро разглядывала свадебные платья. вобщем за день до ДР Елизаветн впало в состояние постояной пены и пара и слезок... Нечайнно запомнили одноклассники как их удалить С особенным волнением я следила за судьбой Дэйнерис, потому что это уникальный случай в сериальной практике - герой, который развивается. Правльная форма - наслаждение от встречи с Дающим. Постранство - это сверхтекучая жидкость. Пррогулялся по парку, в очередной раз убедился что живу в самом лучшем районе Москвы: плюс ко всем удовольствиям что тут были, нашел стрелковую базу - по тарелочкам летящим пулять из ружей. Живи так, чтобы ему было интересно! Продкты для диабетиков А вот высказаться на более широкую аудиторию наверное все боятся. вобщем так как я пользователь анлима ЮТК то мне вроде как надо требовать от провайдера качества услуги. Учитесь смаковать жизнь небольшими кусочками и находить приятные моменты в окружающем вас мире. И погода чудная, и вечер вчерашний вспомнить приятно, и птички поют - именно поют, а не орут дурными голосами. Прошли почти весь пляж и наконецто остановились... Лекартсвенные препараты от варикоза Опопсля всех философских бесед, различных маневров и экивоков выяснилось, что посуду должна мыть опять-таки... Левостроннее движение, отсутствие перекрестков ( вместо них кольца ) просто сводит с ума. Я думала, он был поваром, потому что сейчас он готовит. Центральная его часть увенчана двумя башенками, на одной из которых даже остался флюгер в виде петушка. Хочу выразить благодарность незнакомцу, читающему мой жж. Незанающиеграниц сами позвонили, поздоровались, уведомили, что посылка на таможне, и поинтересовались, когда мне будет удобно ее получить. И взор мой весел, и стопы мои легки. Если до Нового Года не выпадет снег, то в ближайшие два года человечество вымрет изза необратимого изменения климата. Можете дарить книги, только помните - я многое читал. я его люблю, а он сдесь лазает !!!!!!! Проблема сама глубже - в неудовлетворенности жизнью, пустота, депрессии. В детстве на Украине мы говядину практически не кушали... Россиская компания приобрела авиабилет у иностранной компании Излишняя трепетность к деталям вынуждает нас видеть зазор на завитке синего цвета, упуская при этом огромную мозаику, пестреющую всеми цветами спектра. Напрортив сидела пара веселая! Угараздило ехать туда ночью зимой. Пробелмы проблемы, а потом случается настоящая проблема, только уже со зодровьем и все остальные как то сами собой отпадают. Зарубежные представительства Госкорпорации действуют в 50 странах мира и играют основную роль во внешнеэкономической деятельности Ростеха. кстате да, говорят, что самое опасное падать не на крутом склоне, а на ровном месте... А еще первое время контента может быть достаточно много. Есть кротон, декабрист и еще какой-то лопух, который живет и процветает у нас уже Бог знает сколько лет. Намазывем уже остывший корж " кремом " ( " фромаж блан " или творог, риккота, протертые сквозь мелкое сито, даже густая сметана подойдет ), совсем немного, только, чтобы ягоды потом прилипли. десь я прибежала на крики и пронзительный визг, а Яся всего лишь радовалась тому, что Варя спит под одеялом - и она действительно спала, не смотря на бурные эмоции вокруг и не совсем нежные обнимания. Ну и естессно большая часть пути прошла по встречке, и полоса была сплошная... Ей было очень грустно и одиноко. От моей дочери, которая приезжала к моим родителям на пару недель в поселок. Корридоры казались огромными, было довольно пусто, мы бродили по лестницам, этажам... Посылая шутки к черту, я от всей души горячо поздравляю Вас. Одиним словом нудный до нельзя. несколько раннее есть псто об этом и даже фотки ) сажусь обатно за комп и начинаю чтото себе рыццо в интернете. Я позвала официанта, ну хз, наверное надо было убрать волос и все, но я позвала официанта и показала ему свою вилку, а он сказал, что ничо не знает, у поваров светлых и длинных волос нет. Не прошло и полугода, как они заметили, что у статуэтки выпуклое основание! Не стыдитесь мечтать, загадывайте желания и бережно храните семейные традиции. Вот только мерилами этой « эффективности » вы назначили сами себя. Разве это не функция премьера? Экперты пока не установили причины катастрофы. не всегда хочеться вспоминать людей... Методолгическое брюзжание в ответ: ни Бурятия, ни Европа нациями не являются, соответственно, национальных кухонь не имеют! Но всвязи с волнениями я вижу активизацию сил националистических, и, хотя острие атаки направлено не на нас, я клянусь Богом, что до нас дело дойдет обязательно, историю не учат только идиоты, которых у нас, хвала небесам. Хотела посчитать скока Я за седня выпила воды. У Зайчика, кстати, сегодня опухли два пальца, так как девченки призимлились на нее ( а целоваццо не перестали ). На выходных какие-то неудачнеги ограбили квартиру. В четверг, 24 октября, на заводе прошло выездное заседание комитета по экономической политике и собственности краевого Законодательного собрания, в рамках которого депутатам рассказали о прошлом завода, его настоящем и будущих проектах. Всем руководит золотозубая родня. ндеюсь мамуля меня простит за мое вранье и обман. не позволяй всяким идиотищам портить себе настрой, ведь их так много, а хорошего настроения всегда нехватка ) Сппать аккурат в семь захотелось: ) ) ) Блин! А мальчик-то симпотичный, смуглый, черноглазый... Определенно, определенно Новый Год нужно праздновать с друзьями. Ленится ни в коем случае нельзя. Погкуляем летом обязаательно! Послезафтра - классная вечерняя туссовка на набережной. Отркыла утром окна и оставила их открытыми на целый день. Обесчанные новости. вобщем иностранцы 3 курс - дети вообще в массе своей элитные как в социальном так и в интеллектуальном плане. Четвртая вообще меня не возрадовала. Влюбом случае я не думаю что ты имел ввиду именно это, может перефразируеш? Да только прибежала невесть откуда - из подпола понятно ( то есть из подземного царства ) - шустрая мышка. Отсановились на совместном походе в театр, типа это моя инициатива. Вот сейчас с родителями собираемся к нему в гости, возник вопрос что ему подарить. Месяц не сидела за рулем, наконец еду... Птому что невозможно добровольно отдать желание жить. Некторые из нас могут со временем начать делиться сокровенным с девочками-подругами, но первый поцелуй... Ира скинь номер аськи сво пожалуйсто да и смс написать можна!!! Это было настолько душевно, что порой мне кажется жаль, что уже так с ним не поговорить. А дальше в гости к батьке, потом на незалежную и можт еще в Молдавию. наверное надпись была сделана с любовью, и вся любовь ушла только в слово... Очеренданя дурацкая ЖЖ-игра. Расчитаны на разный уровень подготовки и разный возраст. Только из-за него стоит сходить. развела в воде, гадость редкая, но ему и она понравилась, смолотил больше, чем нужно для первого раза. В 1635 году маньчжурский хан обнаружил, что его солдаты продают собственное оружие в обмен на табак. Короче, красотка та еще, и это все счастье держалось и не спадало с моего лица в течение часов так двенадцати. Как известно каждому, Одесса - невероятно крута. Этот щенок йорка ( см. ниже ) оказался на станции отлова животных в Малаге и был бы усыплен, если бы финны его отуда не вызволили. Помилуйте, боги, уставших кого-то любить. Разочарование я отмел сразу - разрушить все надежды последнего полугода это слишком. Недаво стала снова ловить от Ксюхи запах молока. Во-вторых, попытки народных демонстраций, которые распространились не только географически, но и затронули разные социально-экономические классы. Этот фильм лучшее лекарство от подобных разговоров. короче, если ктото видел мое потерявшееся чудо, шлите его ко мне !!! Пришла в офис в чуть более легком варианте, чем традиционная моя одежда. Ранее сообщалось, что Душанбе настаивает на заключении договора сроком на 10, 20 или 29 лет, но никак не на 49. Предыдущий день, первое декабря сего года был для меня полон событий и смены эмоций... Опсомания - првязанность к определенному блюду. Много позже, когдя я его увидел, я решил, что из него можно сделать хорошую детскую книгу. Папиломавирусы вызывают дисплазии шейки матки, что может стать причиной рака, они приводят к росту кондилом половых органов, кондилом мочевых путей. любое движение - это прогресс. Потому как то, что ты перечислил здеся, это все правда, естессно, но это все хрень по сравнению с семейной жизнью. Прияного аппетита. " За трактором шагом марш " прокаркал коммендант и резво вскочил на подножку машины. Хотя хуже, чем на физике недели две-три назад вряд ли будет. Я думала, кстате, что даже у маленбких утят перья не волосатые... Если ваша работа связана с общением, около вас всегда должны быть 3 цветка ириса в высокой, узкой вазе. Проавцы просто ацки выводят из себя. Сегдьня закончил уборку всех записей в " личное "... Да и ваще мы памрем, и не каких предыдущих-оследующих жизненй не будет... я и так в платье похожа на праздничный тортик, теперь я только и могу, что улыбаться мстительно тетечке с пирожками. Я вот как раз про это хотела спросить, отдельным постом, но раз уж разговор зашел... Паталогически не умеют принимать решения Миллионов не дарил, но жить помогал, пока на ноги не встала. Пожалайте мне удачи, пожалуйста! Познакомиись со всеми барменами на нашей улочке. Представитьте Excel - если бы каждую функцию пришлось скачивать и устанавливать отдельно. Оба с задумчивым видом курят трубки и ведут беседу. ЛаньПрекрасное и пугливое создание, грациозное в своих плавных и осторожных движениях. Мы слушали ее за кулисами какой-то площадки. Приварикозе вен нижних конечностей появились синяки я незнаю почему, может это перед концом света но Вселенная в этом году решила выдать мне компенсацию за все годы проведенные в родном городе в виде путешествий к центрам моей Родины - Москву летом и Питер осенью... Вот что за чудо изображено на обложке книги? Ну как же без дочери. Попадлись также привлекательные, на мой взгляд, " закусочные ". Сьездил в центр, купил билет на Дельфина ( касса в переходе на углу со стороны больницы ) Разделеннный на две части рекой, представляет из себя струю и новую часть. Нмного думаю о том банальном, что если человек " твой " - он непременно вернется, так или иначе, рано или поздно. да и дел поважнее у меня сейчас хватает. а если серьезно, настраивайся, что все будет хорошо. Толькго он помогает и решает все вопросы! Вообще, мамалыга имеет более древние корни - в докукурузные времена по той же технологии варили пшенку. Я одно время засыпала под " Мастера и Маргариту ". Это пособие помагает развивать речь и учиться пересказывать тексты, как опираясь на дополнительные вопросы, так и только на свою память. ты начинаешь думать а што неплохо можно и тут жить ) Смушение одолевает меня. конечно хочеться назвать их имена. Корпарация IBM поделилась информацией о выпущенном процике z196, который выступает в роли чипа, эксплуатируемого в стандартном режиме на мега пиковой частоте. ну да ничо, пять дней и снова пятницца изза реального запарного периода в4ера был первый ве4ер когда села за комп с момента нашего прошлого сеанса. Полный текст статьи об этом исследовании можно найти на сайте журнала Nature. Напрситесь на дачу к друзьям. оказуеться в книгомире седня есть -- купил и уже главы три прочитал... Как установить веб камеру чтобы общаться через однаклассники Подойтите ко мне. Поселеия представляют опасность только для людей, которые говорят: " Мне плевать, что делают арабы, а вот от евреев я требую исключительной порядочности ". Террорестический акт в Лондоне. Я рисовал очередной чертеж ( который надо было еще недели две назад сдать ); естесственно это не занимает весь день, но у таких лентяев как я это занимает недели ) Ктомуже многие люди смотрят аниме сутками, и читать сутками субтитру неоч хочу. и животная суть не позволяет им не занять место старшего. Скачатьпрограмму для бесплатных подарков в контакте Проффессиональные средства для отбеливания зубов Какя она была, эта уходящая осень, эта грустная незнакомка в длинном плаще и берете? Страртапу нужны основатели, но не очень-то нужны сотрудники ( Он отметил, что летом ему это еще не удалось толком сделать из-за череды кризисных ситуаций, передает телеканал Sky News. Мачовсе местного производства, то есть к отдыхающим отношения не имеют. в принципе, ничего менять не буду. Соотвественно дома у меня книги везде и как следствие катострофически не хватает места В Ярославской области повышается стоимость проезда в пригородных поездах И неудобно уже другой кофе брать, не хочется их путать, а то ведь в центре города, сколько народу к ним заходит, поди всех по имени запомни и кто што пьет. При достижении загустения соуса, добавляем галушки. Часто мы сталкиваемся с каскадом свалившихся на нас неудач и решаем, что так будет продолжаться и дальше. Причесляя себя к какому-нибудь нарпавлению, увы, приходиться расплачиваться за его " грехи ". С ним хочется проводить время дома - наедине, забывая все заботы и неприятности. Шчастье привалило короче По сути, интереса никакого моему многотысячному другу не представляет, однако, некоторые один-два человека проникнутся слезами. Романтические комедии, мелодрамми - это нам вобще не надо. Настоящая, теплая, зеленая, солнечная и наконецто можно будет на себя одеть то, что хочется, а не то что надо! Журнолисты всегда все нагло, беспардонно переврут. вспомнил, что с прошлого года остались некторые дела, которые можно было откладывать и далее Еще Ясна научилась обижаться, когда что-то не по ней, и выражает это сразу ооооочень громким криком, начинающимся беззвучным сморщиванием и багровением лица. Меня вон зафтра в суд под расписку, сегодня полночи спал с включенной водой - затопил косяк весь ) но сегодня так получилось не потомучто я проспала... ваши однаклассники и однокурсники рядом с вами Святослав, великий князь киевский, - сын Игоря и Ольги, в значительной мере правившей при сыне государством ( до ее смерти в 969 году ), поскольку князь все время проводил в военных походах. вобщем было задание - составитьт краткий конспект историистановления спец психологии унас и зарубежем. Понятно, что во всех странах мира они похожи, но вдруг кто не знает, что тут у нас он тоже есть - и очень неплохой. Она попросила об этом лично меня, и сказала, что ничего из этого ей больше не нужно, и что забрать с собой ничего не сможет. нет проблем просто вопрос такой всмысле для тех кто его блога не знает? Я до того вблизи не видела, мне это было неожидано. Могрен уже забит отдыхающими, поэтому базируемся ближе к камням, я сажусь дописывать отчет об отдыхе, Гоша купается, потом решает дойти до утеса, с которого отчаянная молодеж прыгает в море. Не могу попасть на страничку в контакте чтото с системой подскажите да и вобще, усы иметь- смелый шаг! один букет стоит рядом с кроватью, вся комната наполнена цветочным ароматом... Здесь часто проводятся различные выставки, посвященные современному искусству, фотографии и музыкальной тематике. Схходили на новый кошмар на улице вязов. Когда австpалийские готы добpались, наконец, до Италии, они устали от гpабежа и нуждались в отдыхе. Постарайтесь встать сразу же после того, как прозвонил будильник, раскройте окна, сделайте легкую зарядку. Проиошли поистине революционные изменения в личной жизни и подрос скилл рабочий. Поручение же Федотову взять ситуацию с музеем под контроль смотрится странно, т.к. нет никаких сомнений, что он и без того опекает данный проект с самого начала. Радикальные инновационные проекты предлагают разрубить этот узел переориентацией школы на своего заказчика. Предположительная цена клиентской базы, если она ведется, что бывает крайне редко: 240 000 рублей Мужык был в транче и тихо повторял - " меня в городе небыло квартира закрыта была... А посмотреть ой как хочеться ) Плюс хаус мьюзик - не мое; еще хореограф седня меня взбесила - шажочки, прыжочки, еще разочек, тьфу. Те, кто был седня в универе, расскажите, че там происходит. С людьми уже давно развела жизнь или ты даже и не знаешь их совсем, а тут почти вся их жизнь - словно на ладони, будто интереснейший роман читаешь. Перед ними бабулька с вооот таким пакетом разных конфет. кстате, из 4х фоток, что ты сделала: 1-я: отрезан один кусочек пальца ноги 2-я: отрезаны ноги и кусочек макушки головы 3-я: отрезаны первые фалаги пальцев левой руки 4-я: ничего не отрезано, но брюки смотряться плохо, и освещение не с той стороны... Удаплить страницу в одноклассниках Отпуслили аж в 3 часа с информатики... С плато был вынужден вернуться на дорогу изза сильного обстрела из танковых и орудий гаубичного калибра. В такие дни ничегонехотения лушче всего идти гулять, голова проветрится и с утра с удвоенной силой захочется работать. Вчера на искусствоведческой сборке услышала два замечательных выражения от ученых дам: и серце мое уязвлено стало - он очень недобрый человек. а я когда стрелял, знал, что это он, но подумал, что далеко и никто не может заподозрить меня в том, что я его убил специально... Отбеливанее зубов от курения Однао лбви куда более серьезной, чем у Анакреонта, скорее похожей на лирику Сапфо. То ли настроение у нее было не то обычно, то ли что-то поменялось, вобщем общалась последние 2 раза она со мной очень мило, в среду вот пойду выписываться. Обажаю кривлятся перед фотообъективом в компании приятных девушек. Прлку мировых религий, основанных на передернутых умозаключениях отдельных индивидуумов, прибыло. бывают такие моменты, когда хочеться зделать что-то сумасшедшее... И что бы было, если его не нашли, а он с нами поехал. Кому мы доверяем тайны? Сказали, что плохо, но не сказали почему. Скоро приедет мое солнце и будем смотреть фильм. Самоодостаточность как правило ассоциируется с субъектностью разьве ты не хочешь быть гламурненьким? Пожалуй, пора готовить ужин и идти на прогулку. Современнойпедагогической теории эта омонимия кажется периферийной и случайной. Чтопродается в тайландских аптеках То ли металла не хватило, то ли скульптор что-то задумал, но никому не сказал... Молдавская группа Zdob Si Zdub собирается летом или осенью выпустить новый англоязычный альбом. если бы было за все время, а не за последный год, то было бы больше ведь АEP у меня уже 4.29 кстате это был один из самых удачных гигов на мой взгляд. А может оно и к счастью? А мне от этих супных дел борща захотелось - сил нет. Траспортная система будет серьезно парализованна на один день - на 18.02.2012 c 4 утра до 7 вечера. Продолжние следует... ну думаю - чтот случилось чтото странное... И маски для волос у них есть достойные. Сегодня вечер кончился в квартире около камергерки, у гостях у тети Лены, которую мне ооочень хочется назвать художницей. Приближается облако гнева - не давайте ему приблизиться, но еще на далеком расстоянии разворачиваете его и направляйте в другую сторону. Помню момент, я сидела в прогулочной коляске, значит года 2,5 мне было, к нам подошла бабулина приятельница, Анна Васильна, нависла надо мной и принялась нечеловеческим голосом вопрошать, ну как обычно: " Ой тыж кто ж такой маленький тут у нас сидит? Неневижу бузысходность! Нельязя верить и прощать всего лишь от одного красивого жеста, не хочу учить тебя злости и неверию, но все же... Почти с самого рождения Яси меня сопровождает Агата Кристи ( обычно я скачиваю все собрание сочинений понравившегося автора, а эта тетя была ну ооооочень плодовита на свои рассказы и романы ), и вот теперь они подходят к концу, и меня ожидает Станислав Лем ( и цитология с гистологией ). тольи депресняк, толи от погоды, вобщем настроение совсем поршивое. Любой человек может, сам того не ожидая, стать преступником или жертвой преступления в любую минуту и в любом месте. Пришла седня утром на свои танцульки. Ну все седня будут вещать про природные катаклизмы, свои отпуска ( хотя об этом и нельзя писать ) и прочий пазитив. Терраристы пытаются напугать нас. А Амстердам - патамушта тоже мокрый. по идее мне должно быть оооочень стыдно. Обтиреть грудь, живот и для ускорения обмахать, потом спину. Претендет депонирует на определенном счете сумму, достаточную на покрытие затрат государства на его участие в выборах. а что случилось-то? Если ооооочень повезет - ну, 65. С сегодняшнего дня точно могу вам сказать, что метро - это священное место для тех, кто замерз... Прррроклятые буржуи будут морить меня незнанием результатов еще недели три минимум - ближе Кембриджа не нашлось никого, согласного все это проверять, конечно же. Обьяснил по телефону куда надо кликать мышкой, чтобы найти его несчастный файл, скачанный по умолчанию во временное хранилище. К северу же от Пафоса мы посетили грот богини Афродиты, где, купаясь в знойный полдень, она однажды познакомилась с отдыхавшем на соседнем пляже Адонисом. Опять же змей - он и есть змей. и я весь день куда-нибудь да ходила: то с Ясей на развивашки, то в универ, чтобы оценку по философии в ведомость проставить, короче ооочень много по улице пешком. Создвалась полная иллюзия лета, и очень тянуло искупаться. Фотография, которая не занимала бы тут места, если бы не Дима, который умудрился сфоткать обычный ряд картин так необычно Ловите, ниже идет и вобщем обещанная долгожданная статья, получейте удовольствие. Когда краска высохла, карандашом наметили имя. Ну вобщем засыпала я эту геркулесовую смесь на яблочную. Повел свое чудо сегодня погулять на юго-запад, прокатились на подеъмнике, потом долго смотрели на город с воробьевых, вообщем было здорово. С которым я опосля цигуна занимался шагистикой. Первые личные деньги появились в начальных классах школы, с завтраков. Первые деньги я заработал в 12 лет, землекопом в археологических экспедициях и спасибо родителям за то, что они мне сказали " оставь их себе ". Монастырь был заложен в 1183 году пфальцграфом Рудольфом фон Тюбинген. А написать я хотела вот что - на районе седня подошла ко мне женщина - то ли Азейрбаджан, то ли узбечка. Можете мне не поверить сейчас, но потом поймете. И еще желаю переводить во много раз лучше, чем безымянные господа, о которых я так часто упоминаю в своих постах... Притно когда их две и есть с кем разделить этот восхетительный напиток. Почему-то я ненавижу серую ветку метро, там жуть как некрасиво и ваще какие-то чегеря кошмарные, какой-то производственный район, некрасиво, уродские дома. Поскользулся юзер и грохнул пентиум об асфальт - тот на куски и развалился. В натуре по настоящему рвет на кусочки изза того насколько мега позитивные новости публикуют интернете на сегодняшний день. Кстити хочу сказать об профессиональном хирурге Тигране Алексаняне. Так начинать тренироваться надо во дворе, а у нас вокруг одни девченки рождаются. Так что я решила не просить всех сесть, а отнестись к укладыванию как к ресурсу ) Такчто - все хорошо и хочется в макдональдс, или просто съесть какой-нибудь гадости... Они слегка кисловаты на вкус, но это их не портит - есть можно ( если, конечно, не страшно соседство с химическими складами; нам было не страшно и мы ели ). Неделя отдыха прошла незаметно - собстно, как всегда. Вчера имела неосторожность очень сильно порезаться: срезала овощерезкой 0.5 ногтя и подушечку пальца под ним. То есть размещение в пространстве таково, что преподаватель ниже. Я чувствую своих ушей запах гнилой Надо чаще встречаться, пока не перестали улыбаться!! Игорь Зеленский отметил, что партию Кармен на премьерном показе будет танцевать одна из ведущих артисток труппы Анна Жарова. Поссмотрела " Влияние " Бурлака... Что-нибудь строительно магазинное, незнаю вобщем. Ну то есть вот он по лестнице идет - как она его последний раз видела - и идет мертвец. Поклониики ее творчества - обратите внимание первые три и сааамый нижний - ооочень-очень! Видать придеться уже сегодня написать про этот чОртов этикет. Онтогинетически подобное расхождение между благими намерениями психозащиты и ее высокой себестоимостью для всякого жизненного пути не только сохраняется, но и усиливается. Затем мы своим ходом дошли до здания ГИБДД, долго ждали внизу, потом ждали наверху, и наконец нас отвели фотографироваться на права. Расталкала детей и сфоткалась ) Но и грустить из-за этого вряд ли стоит. В Европе с 1618 по 1648 год бушевала ужасающая война между католиками и протестантами, охватившая практически весь континент. на сайте администрации есть какаято бумажка еще за 2008 год... Ничто не сравнится с разворачиванием ста пятидесяти подарочков подряд, хоть бейте меня камнями. Еще не догадались, в чем засада? Купец решил, что она родственница его любимицы, и весьма огорчился, считая себя виновником ее смерти. А у нас своя локальная " зона нестабильности " - район Сенной площади и Апраксина двора. Ягоды винограда вышиваются специальным швом несколькими оттенками, в том числе и смешанными. Выдав дочь замуж, мать автоматически забывала бы о ее существовании. Не буду говорить, что нечего написать, что ничего не пишеться... Прметы прыщи на бороде кстате завтра в вудсток едем со съемолчной группой, продолжение съемок для мегаблокбастера ) Зарегистрироаться в контакте Напрашиваюттся всякие нездоровые мысли относительно того, что сдают в этот ломбард. Людей уйма, штормило во все стороны ( собстно, только так я и передвигалась по залу ). Еще летом, я купила ооочень, ну очень красивые срезы агатов. Прдолжение следует... Ташшусь от ее скромности. Можеть выберешь из моих дайревых? его небыло с 1993 года !!!!!!!!!!!!!!!! Вообщем остаецца пережить английский в пятницу. Спасмбо всем френдам, которые не отфрендили! Любой жест, который не был перечислен в настоящих правилах, и, таким образом, не может быть воспринят в качестве камня, ножниц или бумаги, считается недопустимым и, соответсвенно, запрещен. Особо провидящие могут даже составы команд угадать, вобщем пишите все что вам когда-либо снилось, являлось и т.д. по поводу этого матча. я никогда не вела дневник, но нужно худеть и хочу попробовать и вобще у меня подход как у Вас в точности, но без дневника, поэтому и заинтересовалась ) Бывший оливетанский монастырь отдан Перуджинскому университету, одному из старейших в Европе ( 1307 ). Я теперь понимаю, почему у всех этих мужиков руководителей есть девочка - личный ассистент. Маршурт пролегал вот так: в чем дело ващще не понимаю... Движок-программу нужно поддерживать, развивать, интегрировать с новыми трендами Сети и основными браузерами. ктож этот человечек вызывающий в тебе ту миленькую дефчушку? А в те времена на это оставалось мало времени. На фоне серого неба это было завораживающим. Злостный падонаг в костюме дьявола измывается над людишками. Неопределнное московское лето растянулось на такое же неопределенное южное. Будьте способным на поступки, сюрпризы. Непонравилось повальное пьянство, некоторые допивались до того, что с трудом держали карты. Продолженое следует... Начался день с того, что я все-таки встала в семь часов утра, несмотря на то, что легла в начале третьего... Очеь талантливый московский музыкант перкуссинист, диджей и вокалист! Не могу зайти на однокласники другим логином А естественная смерть от старости равнозначна пешему способу передвижения. Мы не опаздываем -- нас задерживают важные дела. Насчет фильма - посмотрел первые тридцать восемь минут, а потом он почему то завис, вообщем фильм так себе, правда сегодня я его попытаюсь посмотреть полностью. Организм пытается ликвидировать эту клетку. Кстатиесли глава района потратится на пожарные вопросыэто нецелевое использование средствпреступление. А вообщем то мужчину спросили... Ну, вообщем, вот такой вот футбол моими глазами. К моей великой досаде, на второй половине пары, несмотря на проектор и отлично видные на стенке кадры, я засыпала. Отрисавала заново своего дндшного игрового персонажа и теперь не могу налюбоваться. никогда не мог подумать что и на таком огромном растоянии ктото умудрится так смачно раздразнить аппетит... Они про социализм знают все лчше тебя. Потом сглотни, веть белки фсе-таки... Я многого не могу и не берусь. Решила с пользой провести время дома, обдумать все, что было в этом году и разобраться в себе. Ребенок, естессно, тоже не в курсе, что здоровенная " собачка " опасна. Получаеться что Пресня оторвана от остальной части кольца с двух сторон? Аленка у меня такая молодец! Противречие в том, что ЖЖ изначально подразумевал предельную честность и где-то даже эксгибиционизм, но когда дело касается конкретных людей, начинаются вопросы... В каких случаях необходимо поддерживать голову малышу? Поэтомуее танец был во-многом основан на свободной импровизации. Фотоаппарат хотелось выкинуть, потомучто просто НЕВОЗМОЖНО все это выместить в карточку, ну ни как, ни при каких условиях Нактило что-то повспоминать прошлое... Нверху было написано, мы больше не поддерживаем ту версию... Пажалеть иво, праявить сачуствие, нужно успакоить чилавека. А седня Чернова позвонимши спустя мильон лет, очень весело обсудили мою болезнь и ваще текущие происшествия. Тварите добро. Я ведь когда-то и не думала о машине, а терь уверенно хочу сначало сдать на права... Зафтра с утреца еду в офис разруливать рабочие вопросы, в связи с возростающей в середине месяца конкуренцией, из-за начинающихся специальных акций, в частности, в сегменте гидромассажа. Впрочем, " официальные " портреты ( не всегда высокого качества, увы ) востребованы и другими, менее именитыми особами. Школа была частная, и я был единственным выпускником своего года и класса - это наложило отпечаток на моей личности. Мы напрыгались, наорались, напились и ваще атлична провели время. Предлогаю для избежания эффекта поломанного телефона зайти самостоятельно на сайт и изучить все платформы. Я заметила за собой то, что уже начинаю в красках представлять нашу вполне возможно скорую встречу. Проржавшись, мы рассказали ему всю историю. Позже по произведению поставили телевизионный сериал. Хоть водитель переодически открывал окно и было жутко холодно, все же я мечтала о том, что бы пробка подольше не розсасывалась и я могла еще подрыхнуть. Мне в штабе посоветовали расписываться на местах стыков переносных урн при опечатывании ( правда, не нашел норму закона, которая явно разрешает расписываться ) и делать фотографии этих урн ( или короткие видео ). я иду на работу потому что надо комуто а не потмоу что мне интересно Неорганизованая преступность собственных эмоций... Путь второй был неуниверсален - школа когдато закупила ноуты с 7 стартер с лицензиями ОЕМ которая была снесена но сами то буковки кодов остались. Как можна посмотреть кто в контакте заходил мне на страницу ОрганизЬм не выдержал откровенных издевательств. Певрый мультик очень смешной, здорово нарисован и озвучен, а второй пластилиновый, по типу " Вороны ". вобщем когдато Петр I гениальный и безумные решил для блага России построить именно тут город. Сможем ли мы, реально глядя на вещи, при нынешней демографической, экономической, политической ситуации, удержать огромные слабозаселенные территории по соседству с полуторамиллиардным, наращивающим промышленную и военную мощь Китаем? высокая вибрация от которой голова становиццо ватной ) Ученики предлагали свои ответы, но ни один из них не устроил Учителя. Вроле моньяка роперд Дауни-млатший ( ему идет ). вроде уже уложил в голове все по полочкам, а тебе вдруг каааак покажут, что все иллюзия и будет совсем по другому ) Наврено придет время когда придется снова скрестить нам мячи. Раньше я всегда чувствовала чужие стены, что это его дом, не мой. а я в метро без книжек не умею. Сегододня при попытки перегонки " Жанны " в формат, более подходящий для прослушивания на компе и в машине, в приводе раздался взрыв. Следуюий шаг, как ни удивительно, 2048. Ответствтенность за этот теракт власти США возложили на террористическую группировку Осамы бин Ладена " Аль-Каеда ". хорошо что там не было обрыва вниз, а то бы члетел точно, Предствители семей встретились поздно ночью и заверили друг друга, что никаких претензий друг к другу не имеют, что весь конфликт молодых офицеров исчерпан. между прочим у них есть вакансия: могу побаловать себя сладким, но потом от него мне же хуже - организм отвык от таких доз сахара. Рязнань и Сочи не в счет, это были командировки. вобщем есть в хорошщем качестве 3 и 6 сезон Папиломовирус именно тем и опасен, что может быть онкогенного типа. Чувсвую я себя гораздо луче, если кому интерстно. Сомтрела давнои плевалась страшно! Превосходный символ сенсорной и психической ценности естественного тела - ковер-самолет. И я там немножко собираюсь замуж. За это время подготовила журнал к югу, ща буду любоваться, можт голова успокоится. Разве горю такому помогут рыданья живых? Я иногда думаю, откуда, почему и для чего есть люди, которые маньяки. Я думаю, что молодой человек должен жить в реальности, которая ничо так, а девушка - где жуткий диктатор отгрызает головы младенцам. Вечером небыло инета, посидел с мобилки. А что происходит в твоей голове? Вообще, кхмерская цивилизация в свое время была очень крупной и влиятельной, контролировавшей огромные территории в юго-восточной азии. оькрыл там дыма полно начали тушить вызвали пожарных на работе мне сегодня учинили аццкий квест, в результате очень уж сильно захотелось убивать. Милиардер Адольф Меркле из-за мирового финансового кризиса потерял сотни миллионов долларов. А мой переодически ночью начинает меня будить ласками! потом одел старые AKG K-100, уже чтото чувствуеться. Все полицейские выступают в поддержку права на организацию общественного собрания. седня геныч полдня ползал на корачках под своим столом, пытаясь подключить колонки ) Предалагаю следущее, как всегда, почти бесплатное решение проблемы: Я, канешна, пыталась реабилитироваться, оправдывалась, что я вовсе не про вылет, а про этаж разговор вела... Страшно видеть, как стареют самые близкие люди. Отчетность, которая официально публикуется в СМИ делается совсем не для того, чтобы в ней было легко разобраться. Там же был построен первый в стране буер « Метель », что положило начало к развитию буерного спорта в России. Несколко солидных частников НичО нне поняла, но все очень умно и круто! вот такая тарабарщина мне, Вова, сильно по нраву, вобще фонетику я затейливую люблю ужасно. Почувстовала себя моральным уродом, но тем не менее все выкинула. Нелезьте в его кошелек, не считайте его доходы и не пытайтесь управлятьрасходами. Режисеру удалось создать такую атмосферу, что зритель полностью включается в происходящее на экране. бредятина, а 3 рубля с тебя про што взяли? или расплата, за то, то вы ее когдато курили... Вальс в 5 па ( внимание, будет под другую музыку с переходом местами на обычный вальс, подробная схема будет выложена ) На Родине, естесственно, имя предателя не вспоминалось. Начинался он с того, что меня в начале двенадцатого разбудила мама, чтобы сказать противным, как мне спросонья показалось, голосом, что мне необходимо срочно встать, и пойти завтракать. Что случается, когда из наших уст звучит то или иное слово? Я согласна с таким положением вещей - но! А утром шла в универ мимо главного всегда закрытого входа, и буквально в метре впереди меня с козырька свалилась пустая скомканная банка из-под колы кажется... Удоволствие от проведенного времени и классные фотографии гарантируются !!!!! А еще, после некоторых приблизительных подсчетов, я поняла, что мне нужно ограбить банк. ихнеи депутаты гор собрания дабы покрыть долг от банкротства организации бывшей когдато на месте сочитеплоэнгерго пиняли в 2008 список нормативов потребления всего и вся в том числе тепловой энергии. Прочветание аббатства продолжалось до войны Кипра с генуэзцами. а я была седня в зоопарке :) Будет новый человек, счастливый и гордый. Они, как их не назови, терпеливо ждали своего часа. Министерство культуры Франции официально признало, что фрески могли быть вывезены из Египта незаконно. Но есть и более интересные фильмы авторские и еропейские, которых тут просто нет... И именно это отличает классический средний класс, бюргерство от тех, для кого все эти вещи непринципиальны - наемников, для которых главным является количество благ и уровень потребления, в обмен на которые они готовы променять свою свободу и самостоятельность. открыть форточку нельзя изза простуды. Прийдется подходить. Получать любовь в том форме, которую считаю приемлемой для себя на данный момент. Как обидно порой знать очевидную вещь, в которой невозможно убедить того, кто не видит ее в упор... За это время доходим до моего дома. Мне на глаза снова попалась та самая фэнтезийная история. Дети растут ооочень быстро, на прошлой фотке она совсем младенчиком была ) Нинавижу всех визжащих девак с умилением тискающих очередную книжку с прыщавым очкариком Постарюсь не очень поздно лечь. У меня уже появились в этом направлении кое-какие идеи, но, конечно, нужно ждать лета. вот сижу и обзваниваю все автошколы, ищу приемлимый вариант, да и ваще надо, пока полгода не ввели!!! Это должно сказать вам о том, что я сейчас состою процентов на тридцать из неуправляемой сентиментальности и на семьдесят из нервов. Только что позвонил товарисч, с которым я о чем-то договорился. А еще седня меня загребла служба безопасности за то, что я пронесла на фабрику электрогнигу. Как Ванька-Встанька была, то прилягу, то присяду. Каааак гаркнет разгоряченным подгулявшим молодцем: " Пива! Ну оооочень кушать хочеца ) Как только я просыпаюсь, я отбрасываю чары сна, ложную тождественность, и понимаю кто я на самом деле, и понимаю, что весь мир моего сновидения - это лишь моя собственная фантазия. Усиленено ударить по двум направлениям... что примечательно перед нами выступали мои знакомые с реп базы, которые оказались крайне близкими друзьями нежданным, вобщем море позитива и рокенрола. А впрочем, она-то сама, заглавная героиня сказки, кто такая? Одна региональная организация, ОДКБ, работает на вовлечение в зону своей ответственности другой региональной организации! Может если все сказали, то сработает? это вобщем жуткий курс о особеностях развития психики детей и взрослых в условиях " стесненного " или нарушенного функционирования организма. кстате тема про правило буравчика есть в Катином ЖЖ с этой позиции все же мой любимый фильм " про любоффь " был более реалистичной картиной. Староста неосторожно что-то сказал - естесственно, неспроста. Проаализировали мои энергетические затраты и правильно их распределили. Кто-то там, наверху, услышал мои молитвы, ругань и угрозы, и сделал мне ливень. ты трать себя все равно не зря а так в пустую проживеш может и веселеи но пустота будет. Викуся - моя маленькая хихикающая бусинка, ее все время хочеться обнимать и заботиться. Собьранное и натянутое полотнище зажмите коленями. Оказалалось - столько же, просто нужно было добавить окно в список пожеланий при заказе. вообщем вот две лучших фотки из всего того, что получилось... с завидной периодичностью перемещаясь по толковым спортивным internet ресурсам я постоянно налетаю на гору такиж же тем, но всеже далеко не многие считаю возможным выложить туточки на страничке божеупаси если хоть ктонибудь из вас самаритяне потратит хоть шилинг на эту пластинку. знать бы еще, че ето такое ) Но все же жизнь переодично сталкивала нас лбами и довольно таки болезнено. В первый раз вобще-то узнал про такую вот штуковину. Фантаститечские ощущения: пироги были с яйцами, рисом и луком и с капустой, ничего вкуснее горячих пирожков на Пасху не помню из раннего детства. За последние годы у нас сложились очень сложные отношения, периодами отношений вобще не было. Сосотояние невменяемое, руки не слушаются, ноги тоэе не совсем адекватно реагирует, но голова страстно заъотела напсиать об этом. Ответить на него можно вполне определенно: критерием уничтожения целостного процесса является прекращение существенного процесса. И это ооооочень сложно, особенно когда надо слушаться человека, который сам только учится и жутко не уверен в себе. Ишшо варианты: Партенит, Симеиз или что-то в ту степь. В первую очередь - внутри произведения, где неоднократно повторяется базовый кубический модуль. в следущий раз обещаю в шлеме. Вот с параллельной парковкой у меня и были проблемы... ето были просто мысли про одну личность, Родители пришли к православию года три назад, а сестра пару лет, как крестилась. Но про воду, которая камень точит, это ее главное оружие! Так что ждем новых фотографий и более точных данных. Ярким примером здесь может служить отечественная история прошлого столетия. Я одиночка, не люблю шумные сборища, но порой мне так одиноко без дружеской поддержки... А еще, в последнее время, периодически всплывают люди, с которыми я уже очень давно не общаюсь. Откпытки бесплатно в одноклассниках оооочень долго ехали на нем. Люблю тебя, читающего эту запись, просто потому, что любви, переполняющей меня, хватит на всех - мне не жалко. Если разбирать по пунктам - возможно, и да, кто ж спорит. Друзья мои, друзья, что бы я без вашей с готовностью протянутой руки делала? У меня парикмахер в отпуск ушел. Следуюший раз я в штате Нью-Мексико, я хочу встретиться с навахо индейцами. сегодня впервые в жизни - тоесть впервые за 34 года жизни в моем доме я сам! Получилось 4 по 5 и пятый подход ваще черти что. Спаааасиб вам дорогие мои !!! и одтельное нежное рано уезжающим в Москву ) вот уж вранье нащет некрасивой тебя, вот уж вранье! Хорошо, что это были разные недели. В 1863 году с согласия семьи Раецких костел был освящен как православный храм. вот мне кажется, что еслиб я женилась на тихой домашней девушке, то моя жизнь расцвела бы новыме краскаме. Ему предложили деньги, уход и всяческую заботу, но он не соблазнился этим. Ездил тут провожать и встречать любимую Любю дождь, когда тепло !!!! Оптять таки рядом с вильнюсским универом А про Мисфитс я плохо обосновал: естесственно это панк, но его также можно считать ДОготикой, они нереально повлияли на эту культуру, хоть сами ее частью не являлись. А мышцы все-таки болят, уже чувствую. НАконецто мы скооперировались, собрались и на этих выходных сходили в музыкальный магазин за флейтой, Мане не 24х летие педагог обладает огромным запасом хлестких выражений, любит черный юмор и, естессно, сливает это во время урока. Многое в этом спектакле удалось молодой тогда еще актрисе. Через иллюминатор была видна Родина-мать: Вот и сейчас - спустили его на землю и кот пополз на полусогнутых на исследования... Поскореебы эта мода с интернетом прошла. Мне еще тридцати нет, а я уже ночью не сплю, а слушаю свое сердце. Сварачиваю гамак и на барикады... Обешают в местной газете участие порядка 200 тысяч человек, что для 25-тысячного городка многовато, имхо. После того, как вы ушли, у меня к вам никаких претензий больше нет. Ужасные отношения между братьями-сестрами в маминой семье: родителей они лишились оооочень давно самым трагическим образом, мама осталась самой младшей. А сегодня пришел товарисч, вроде как ( будем искренне надеяться ), помог мне с компом. Я кстати сам пришел из христианства. Можешьв двохсловах сказать отчего зависит качество текстур и виза? Привет всем в этот пасмурный и ветреный день. Определяешся окончательно, ан нет, очередной самообман. Теперь я твердо уверена, что вам можно доверять. Эту подставку для журалов я делала для своей подруги-одногруппницы, с которой мы учились вместе в университете. Ребенок у нас резко полюбил фотографироваться: требовал, чтобы я его сфотографировала чуть ли не у каждого столба. Сообщете всем кому можете! Преподаватель: Да, безусловно, но я незнаю что какое Боженька Но, коль таковые имеются, пойдем дальше! Программа " Космос " является одной из самых масштабных программ по изучению космической эволюции. Я приехал через час а работы так и не начались, правда воду удалось както перекрыть. Наберешся наглости, позвонишь еще ( В 70-е годы в институте мне, естественно, пршлось сдавать госэкзамен по научному коммунизму. Тварррь Арагонес, такую ситуацию создал !!! Вчера сходила на Клик ( ничо так фильмец ) Когда мы только начали жить вместе, у меня периодично возникало навязчивое желание закрыть руками уши и орать. А самую важную точку в нашей прогулке поставил вот этот вот товарисч. еще можнго в бикини ходить зимой по системе Иванова Конешно все теже " взрослые " люди в " чудесной " стране америка в 45 годах своими запретами создали этот стереотип. Раставаньям и потерям, я не верю, я не верю ) вобщем если бы не желтый носорожка, то возможно я бы сейчас бюыла балериной... Стали пешеходы переходить дорогу ( в общей сложности было всего 3 девченки ). Давай мы просто потанцуем для себя. Спускюсь в метро и ложусь на лавку. Можно ли кушать после 18:00? а что тут писать и незнаю... Поскольку мы закупили основное оборудование, нам уже не придется делать такие капитальные вложения, мы можем направлять основную часть средств на реактивы, материалы, чтобы увеличить производство. товарисч говорит, мол убери, ты че себе за извращения поставила. Повсему выходило, что это просто много теток в разных кабинетах различных организаций, с пишущими машинками и календарями на стенах. Ну вообщем, много обкуренных тараканов. Ещее один вопрос волнует меня: почему в одном из магазинов он стоит 13 тыш, когда везде - 16-18? Но Уилл Смит видимо продавший душу дьяволу, чтобы не стареть, каждой своей гримасой и ироничными замечаниями усердно напоминает как сильно нам его не хватало последние годы на большом экране. Но, хоть праздник домашний, но все-таки - праздник! Померели давление, оказаолсь оч.низкое давлениеи оч.высокий пульс. Поздравлдяю Вас с Рождеством! по утрам не хочет вставать и устраивает такие сны, в которых я не то чтобы спасаю мир, но если проснусь, будут неприятности другим. Давнооо ничего не писал. Пасмарели друг на друга, улыбнулись и кивнули как старые знакомые. Проблемнная кожа, угри, черные точки, расширенные поры А вокруг какой то непонятное чтото не дает мне этого сделать. Так что теперь можете смело обзывать водителем ) как объяснил потом: " А зачем тебе было знать? " На площади вокруг фонарного столба разместилось шесть солидных матрон. Прихали в Сяньян, где и узнали, что из этого города прямых маршрутов до достопримечательностей нет, но добраться можно различными рейсовыми маршруточками. конешно, видя ее понимаешь, что в принципе и не для кого ему себя в порядок приводить! В частности отуда пошла байка ( взятая на вооружение Шиллером ) о том, что жена Филиппа изменяла ему с молодым Доном Карлосом. И одиночество мое вовсе не надуманное, а реальное. зафтра после 9-ти к инспектору. Называетсо наташа собралась приехать. Покозать рецелт кремлевской диеты Оджни отправляют почему то в таксопарк, типа там и только там меняют стекла !! Кто-то купил права - и накропал бездарное продолжение. Отечественне чаи ии коктель для похудения. А в Питере у меня родилась племяшка и я уже очень хочу увидеть этого маленького гномика и на правах единственной родной тети ищу ей самый замечательный подарок. Высадив троих в машину довозки, к экзаменуемому сел гаишник. Усовершенстваванный алгоритм, по сравнению с встроенным, но работает только с английскими словами Онустал после работы, случается, что его обижали " большие мальчишки " всуровом бизнесе и ругал злой « дядька-начальник ». Повертикали чтоб весь спектр был, типа, радуга. Профилиактика и лечение рака легких, желудка, печени, восстановление после химиотерпии. Именно так номер выглядит на визитной карточке. Но это была моя философская присказка. Мне так кажется, что вообще идея равенства, свободы людей не имеет отношения к социуму. некотрые вещи в моей жизни начинают не радовать Все импульсные микросхемы которые знал там нашел! Хотелось бы, чтобы была вся палитра цветовой гаммы, а Елка светилась буйством Вашей фантазии и Вашего воображения. Отдельный совет: прочтите хотя бы одну, желательно серьезную книгу по композиции. А это не есть хорошо, ибо обязательно в самый последний момент что-то случится, и увидеть их не получится... Скришнот с Космополитеном видела ) Последние года два, пожалуй, самое тяжелое, что со мной было - это разделение на две жизни, непонимание того, чего, вообщем надо. Кравиво - домики, комнатки, озера, искусственные горы, деревья Сложно двинуться в такой очереди, перевалиться с ноги на ногу не зацепив сзади и спереди стоящих. Вот Черный Лимузин и ожил и действительно стал самым лучшым и удивительным автомобилем в Мире - он был самым быстрым, самым мощным, вобщем, самым-самым. Ктобы о таком мог ващще подум... Иногда, то что происходит в любви кажется очень жестоким. Вместо этого ты просто обращаешься к прошлому опыту. В российском правительстве изданию подтвердили факт получения письма от госсекретаря США, но отказались раскрыть его содержание. А о чем могут говорить две хорошие подруги, учащиеся в одном вузе, и встретившиеся для похода на концерт? Так что, у нас будет теперь где культурно отдохнуть ) а ваще, Жень, я, оказываецца, убежденный урбанист. Некоторые люди считают стакан наполовину полным, некоторые - наполовину пустым. Посочуствовали бы, а то накинулись на старого чела. Но то, что сейчас вы испытываете неприязнь друг к другу, - это естественно. потом через две пары курю на порожке, охраниик выходит - я его про милиционершу спрашиваю - чего говорю девушку не пускали - а он мне вооще откровение - а у нее пистолет! У нас тоже солнышко, но еще ооочень холодно. Но став старше, она осознала, что точность и четкость - ее все. На выезде из Клина бдительные гайцы на посту решили проверить актуальность моих транзитов. сцылка на статистику liveinternet по " сайтам рунета " А вы помните свою первую любовь??? С ним ничего не сделаешь, от него никак не избавишься, как в бомбежку - бомбардировщик из рогатки не собьешь. Ну ты сама, вообщем, вкурсе. Грабитель поехал в сторону Краснознаменной улицы по встречной полосе и по дороге задел три автомобиля. Через 10 шагов история повторилась, но уже с дургим человеком и тут до меня дошло, вообщем мелочь, а приятно, раз пять я так наверное на ВДНХ и здоровалась. Мне ничего не оставалось делать, как основывать еще один город, дабы заделать дыру в державе и производить длиннолуков с катапультами. Вам только кажется, что вы выигрываете, деля покупку на платежи: в итоге они накапливаются, вы теряете контроль и платите в месяц больше, чем можете себе позволить. Поспшь тут в большой комнате, что как проходной двор для всяких непонятнх мне лиц мужского пола... Объяснала моей началнице что, я заболела и больше не могла быть на работе. Раньше, только наличие зубной щетки и всяких других мелочей выдавало мое присутствие в этом доме, а сейчас сдесь моя енергия, моя любовь, мое приятие этого места. Едешь и не знаешь, что в Норвегии расстреливают людей. Появилиь новые военные угрозы, против которых, как показывает практика, США не очень то способно защитить - характер угроз таков, что с другого континента их не решить. Наверное почувствовать что-то точно можно, а то бы почему эта старушка с таким осуждением на меня смотрела. вообщем для " обычных людей " занятие тоже было найдено. Вернется, напишет заявление об увольнении. Серебрянные звезды нашептывали ему слова, а ночной шутник-ветер играючи вплетал в эти слова ритм и размер. Мееедленно - мееедленно просыпаться под приятную музыку. Теоретически за счет валютно-обменных операций банкиры могли бы компенсировать недостаток наличных средств. Сообветственно вы получите просто массу предложений. На огонь реагируют достаточно выборочно, тупо на источник тепла не кидаются, то есть если развести огонь, то видимо их внимание привлечь можно, но изза облаков они просто так не покажутся. В тебе ценят доброту и отзывчивость. лето 2011 если возвращаться к этому куску моей жизни началось и вроде недавно и вообще както давно. Тепреь мы не бомжи, теперь мы банкроты, но абсолютно счастливые! Онбудет знать, что вы тоже что-то можете сделать в этой жизни, и уважениек вам только приумножится. Не юзаю, и надеюсь не придеться юзать. Кто составит компанию в бассейн зафтра? А пока нужно наслаждаться тем, что нам дано, и присматриваться к календарику - когда и куда можно выехать для кратковременного отдыха. Меня небыло дома когда она умерла. Стисняюсь спросить что такое ирригатор? Вчера меня насильно затащили в Коломнеское, потмо стемнело и похолодало. скачать однаклассники на мобильный телефон бесплатно Есть такой капиталист, в тюрьме сейчас сидит и, похоже дооолго еще будет сидеть... Он бесследно исчез в восемьдесят девятом. Остаецца смириццо и бороццо... Дома ждет еще одна книга подобного плана, даже незнаю начать ее завтра читать или разбавить чем-то романтическим или фанатастическим. Поседняя фраза явно впечталение на тебя не произвела. Но все же, это мелочи по сравнению с тем, что могло вызвать у Крысы такой силы беспокойство. Говтовится видео репортаж о конкурсе Мисс Латина 2012 власть и управление - конструкции человеческого ума, лежащие в основе его " теории объяснения ". Соответсвенно наша звезда прыжков с шестом с результатом 4.60 первая. На последних звонках девочки плачут почти все. как многие наверное слышали, в некоторых европейских странах нужно платить за проезд по дорогам. По моему мнению это самый ужасный сбор из всех што у нас было. От нее особый кайф: можно постоянно регулировать толщину и форму линий. Разве нормальный человек отправит в ТАКОЕ заведение родных людей? На полнеба растянулся чорный дымный след Мууультики !!! Ты вернууулась !!! Я тебе так рааада !!! Немало достижений было и в развитии электровозной тяги. Представте себе, что это сотни килограмм муки распыленные в воздухе. Формулы, правда, ему приходилось зачитывать вслух или записывать. Если ты не возьмешь отвественность за написание картины, то за тебя ее напишут другие. Он принес новый флакон духов или туалетной воды уж не знаю но раз в несколько часов ей весь оббрызгивается !! Подливет масло в огонь активность одного гипермаркета, который пользуясь жадностью и ( или ) бедностью наших " односельчан " как будто специально создает давки и очереди за дешевыми мандаринами. Права мне жизненно необходимы и я не понимаю, как могла жить без них столько лет и, самое главное, как я буду жить без них дальше. работать начинаем по-тихоньку, но планируем развицо межгалактическими темпами, с вашей помощью кстате ) Сказали подождать, - как-то жалобно отвечает мущщина, остальные молчат. Паралелльно проверяю написанное на смысл - активный процесс Как место захоронений, эта территория использовалась уже с 30-х годов, и было засекречено, вплоть до 1989 года ( по вполне понятным причинам ). Аутоагонистофилия( Autagonistophilia ) - сексуальное возбуждение от того, что являешься предметом всеобщего внимания или от создания условий, при которых такое публичное наблюдение возможно Надоело закапывать талант в землю. Утро - самое удачное время для беспокойства и депрессии, когда все представляется в самом мрачном и черном свете. Очень часто мне нравилось, что мне прощается тот или иной поступок, потомучто я маленькая. Ограниченность в 160 символов латиницей придает им емкость брошенного слова, иногда необдуманного, горячего, случайного, а электронный формат - долгую непредвзятую память. Мужчины, которые свято верят, что цветы это лишняя трата денег и вобще они бесполезны... Сегодня я обзавелась новой пломбой в верхнем зубе. Прстарайтесь отличить абоpигенку от пpиезжей, старую деву от матери семейства. Слушай, ты как-то подозрительно сложно живешь. Объяявили что автобус уйдет через пол часа. На детальное изучение документа и предложений участников может потребоваться год. Небольшой мороз сильный ветер увеличивает градусов на 5-10. Всех воспитателей поздравляю с их профессиональным праздником!! Феликс сказал нащет грабель " это как надо было устать в своей Москве! " оставшийся отрезок дня был всецело отдан ежеминутным изменениям планов на дальнейшую деятельность. да и многа других образов, главное в одном из них не остаться на долгий срок, иначе скука-мука... Почувстовав себя готовыми к новым свершениям, на третий день пошли в " Лагуну 69 ", одно из красивейших мест в Cordillera Blanca. Можно еще понять, почему, допустим, Михаил Булгаков опережает Льва Толстого, а Александр Блок оказался за два пункта до конца списка. Поеште грецких орехов. Пробег составил 560 км, за которые было скушано примерно 55 литров бензина. а это вообще ( нащет чувств верующих ) дело по местным обычаям иудейским неправильное. В ARD сочли такие расходы неоправданными, отметив, что для зарубежного вещания существует Deutsche Welle ( Немецкая волна ). Под колеса состава с локомотивом yкладываются тоpмозные башмаки, число котоpых ни машинист, ни помошник не знают. Нельзя считать пару попыток в незапамятные времена умением кататься. Эти люди приближают земную жизнь к гармонии, но дается им все только тяжелым трудом. Господи, помоги мне не напиться! Люди невероятно часто отвлекаются на незначительные мелочи, теряя способность видеть картину в целом. Полагаюдрака и выпивка тоже в комплекте. Сегодняшнй ответ на вопрос про холод: " А у меня солнце на футболке " Артурчик тоже весьма ответственно подошел к вопросу отправки сестрицы в учебное заведение - ни пискнул и вобще предпочел поспать на мамином плече. не появлялась тут уже ооочень долго... представте что вы сидите тихо тихо и работаете с документами а рядом на дороге слышимости работает двигатель вертолета Потресающия серия! Преподовательница резко попросила замолчать или сдать работу и покинуть аудиторию. Не спросишь у командования, что за ерунда? У меня в жизни сейчас есть два молодых человека, которые мне именно что нравяться. прибежишь уставшая и убитая, а она и помучает и насмешит, и вообщем выходишь почти и человеком, с дозой позитивных мыслей. Счастлиывая кошшшшка: сразу видно, что ее никогда не мыли. Вообще, разглядывание фотографий это такое дело: при беглом взгляде нам может понравиться снимок с более яркими цветами, но при более внимательном разглядывании яркие цвета, в каком-то случае надоедают и больше нравится снимок с цветами приглушенными, но с более богатой и естественной палитрой. Мягше я тут становлюсь, и человеколюбивее, черт! Правда большинство на зарплате, а не на контракте. Обьективно говоря, становится уже очень тяжело. За синие горы, где мрак и снега, да и в конце концов всегда есть ктото глупее тебя, ктото умнее тебя, и ктото умнее того кто умнее тебя. Как будто тебя аккуратно взяли на руки и очень бережно несли все это время, боясь уронить. Удачи, хорошего настроения, денежки побольше и чтоб полегче доставалась, ну всего вопщем хорошего и чтоб петух не клевался! Естесственно и понятно: телятина без грамма жира, но в первый раз побоялась незнания пароварки, потому все делала по рецепту... вобщем Господа с нового года опять все подорожало и вы возможно неприятно удивились цыфре денег которые вы должны заплатить за полутеплые и ну даже пусть оч теплые батареи в вашем доме. и все утратит прежний запах, даже чай, бумага, шоколадка, седня я даже не стала спускаться с кровати. тыж обещал, что можно тебя называть " блондинчик "... Приниципы аналогичные применяю, правда иногда срываюсь на нравоучения и читаю краткие лекции... Сейчас, естесственно, почки как никогда и не болели ) Одночеством блеклым, безумным желаньем напиться. И вот в одном из них мы обнаружили потрясающую юбку. Только на память оставила записку и фотку. Просмотер скрытых страниц в контакти если бы была не простуда, а что-то серьезное, ну или даже простуда, но действительно сильная, с температурой 39 и выше, я бы, естесственно, нукда не поперлась. Ответтье мне на вопрос ( адресую пострадавшим ): А что вам мешало бросить вашу барракуду на этапе избы? Очень красивая и добрая фотография! Звонит подружка, она на другом острове живет, не виделись 3 года, но переодически созваниваемся. тебе можно и нужно его продавать!!! Но у меня на этой почве начинает болеть живот... вообщем это был прекрасный день... первым же выхватом стала дорога - ну естесственно не без успевания по пробкам на автобус; успели к двум минутам до, но опоздал сам автобус и какое-то количество минут его пришлось ждать. я б матюгнулся пару раз, да толку-то. Это, конечно, достижение, такого небыло в нашей школе давно. Сегодня вообще был цирк, сначала зашли какие то плотники, объясняя экзаменатору, что связались с ней через емайл, говорилось о заборе который не закрывается, затем зашла незнаю кто с мобильным телефоном и разговаривала в полный голос За них хочется ухватиться, смотреть на них, учиться-учиться-учиться. Флоренция встретила нас небольшим дождиком и толпами туристов. Следуюшая тушь которая составила список моих тестов, это тушь от CHANEL INIMITABLE. чо-то в инете ничо не нашла. Сцкажи честно - ты ж иво такой игрушечный купила, да? Куча тематичного народу, вообщем втерся и научился прыгать довольно оперативно. Наберегу стоял PR, а рядом с ним катамаран. Оказвается зеленый чай без сахара вполне идет с зефирчиком в шоколаде. Ну вот у всех наверное так бывает: вот была какая-то вещь, ну вот точно же помнится - была, а хватишься, и пропала. Егоров оперирует понятием боевых действий в фехтовании. У каждого из нас есть даты, которые являются для нас " счастливыми ", и мы помним их не из-за каких-то там цифр, а патамушта. Мировая история была разделена на три века - Отца, Сына и Святого Духа. Муж Феи был уверен, что женщина ни что иное, как тень мужчины. Это никак не скажется на качестве дальнейших ваших отношений, просто прийдется немного подождать. Срвпали действительно замечательно! на стекле были крупные капли тайского дождя, а за стеклом был невероятный закат. А вот если мотать данный фильм с помощью волшебной кнопки " Fwd " быстро-быстро, то получилось бы просто отличнейшее кино, где все как надо. Важейшие моменты нашей жизни мы связываем с Богом, вдруг забывая, что еще вчера мы не забоились о его существовании. когдато он предположил что я специально заразил кафедральные компы вирусом который вместо запятых встявлял матерные слова. Тебе возразят что зато он хочет продать бизнес а деньги пустить на благо, он красивый и умно рассуждает и отменит ЕГЭ и еще чтототам он такое с медициной сделать обещает ( от проограммы правда медики воют, но они ж просто корыстные ублюдки ) - и всем сразу станет хорошо. Позабодтесь о хорошей обуви для своих детей. Относитесь к непониманию с двойной иронией: ты смеешься над тем, что цигун - глупое занятие, а я - над тем, что только глупец не занимается цигун; ты смеешься над тем, что всегда будешь больным, а я - от радости, что могу быть здоровым и жить долго. Пофоторафировав то к чему можно было добраться, мы вернулись в пространство колокольни. Ну попробуйте же угадать, какая это может быть часть из всех выдвинутых кандидатов? Очищеный батат превращаем в пюре Но стоит ли так быстро поддаваться унынию и пессимистическому настроению? Но игру в итоге, как и год назад, наши девушки проиграли. Даже и не знаем, что вам сказать. Навогоднее настроение прям какое-то ) Идя в сторону метро, мы даже начали сочинять стихотворение, начало приведу: но в этот раз он изменит своим принципам и с удовольствием через секретаря ответит на все волнующие молодежь злободневные вопросы, кроме анонимных, ессно. Этоже надо быть такими наглыми, чтобы делать такой конкурс с такой ужасной саморекламой. Звонит просто для того, чтобы поболтать с тобой ни о чем. Кто воспримет форекс как игру случая, того ждет сплошной крах. А это уже само собой как-то случится :) Опрошеы все до кого смог добраться по поводу лучших путей погоды и прочего прочего прочего! а недавно у нас его ваще отключили ) Постибалса еще и первый ) Как зайти на страницу закрытую от всех одноклассников Потсому что в Воронеже все перечисленные тобою улицы находятся рядом: ) Сногсшибальной ей удеается быть, но только бплгодаря удивительно едкому аромату духов, даже на улице мне пришлось бежать в другую сторону и переходить проспект, лишь бы не попасть в штабель... Понятно, что его никто не оставит. Книга вот об этом как бы и есть - о непостижимости. вобщем это известие подлио масла... Хотя некоторые вещи я могу делать в столице. для своих близких, невзирая на их протесты. Если кто-то еще хочет первести деньги мне на счет в Израиле, у вас есть пара дней - пишите мне в личку. К ночи облака истончились, и круглая луна тускло просвечивала сквозь белесую кисею, озаряя одну сторону улицы сероватым светом. Затык заключался раньше в том, что мне нужна была крыша дома, а зимой на них не проберешься, да и весной не очень-то, это нам так просто повезло ) Она любит играть, поэтому если она веселая, это вовсе не означает, что ей действительно весело. И она работает намного более сильно, чем вся муть НЛП. Замечания и уточнения к этому посту приветствуются! Ктож знал поедая котлеты с картошкой, заботливо приготовленные мамой ( они у меня вообще суппир ) что вечер намечается насыщенным на приключения... ( извените за сумбур эта от волнения ) Оказалось, что надо сделать видео: переконвертить и слепить в одно. Провекрка перед сдачей 1-го тома День субботы 6 декабря начинался вполне обыкновенно... Все они жили когдато все мечтали о тепле. девченки в индии все на премьере, слезами заливаюсь какие они счастливые уже глянули что за шедевр выпустил Шах!!! Чем отличается спасательная археология от любой другой, так это тем, что для нее не существует времени года. Напистаь что ли завтра Стасу, спросить, нет ли у них ливня. Ведь время нисколько не ждет... Севершенно случайно оказывается, что сей текст существует в отправленных на мыле. Пыраюсь подобрать свой труп, однако он, по всей видимости, все еще находится в теперь невидимой подводной лодке и нарезает круги над бездной в середине локации. Им всего-то и надо ножницами в насильника за непристойные предложения ткнуть посильнее и бежать дальше, маникюр доделывая. Непридвиденные обстоятельства, требующие решений. Неговоря про то что в самом музее толкучка несусветная, чтобы получить порцию каши надо было отстоять около часа ( мы так и не дождались ) Поздрваляю с очередной публикацией, да еще в японском издании - класс! Взрослея, мы забываем о радости, магии, волшебстве, удивительном и неповторимом очаровании снежного праздника. довольно слабый фильм, который спасают только милые нашим сердцам пейзажи Самуи и Ко Тао, а также звукоряд. Я грю, да ничо, я тоже из офиса тебе пишу. Некотрые в домашниесады отдают - вроде такой эконом-выход. Мама нас с Мишей, погда мы втроем, называет общим " ребята ". после Др мне както особенно стало не хотеццо жить. Убиться веником, ребенок знает, что он тупой, находится в самом низу социального плинтуса - и ему это нравиццо! Посдравляю с ДР, камрад! Если вас освистывают болельщики, значит, вы морально не готовы выступать за клуб, который любят в Петербурге и который так поддерживают спонсоры. А Ясна рыбок ооочень любит - может подолгу их ловить сквозь стекло аквариума. Плпыталась жить без жалоб. А некоторые мои знакомые мущщины держат свое лицо ( а также подмышки ) на безопасном расстоянии от лезвия бритвы. Чувстоввать себя его частью - здоровое отношение и к себе, и к этой общности. Погда вроде разошлась, но уже все выглядит по осеннему блекло. Завтра кааак надену их и каааак все увижу ) а если есть общение то оно очень поверхносное, зачастую неискренное. Ну это ладно, а дело в том, что эта прекрасная девочка сейчас болеет и не может принять участие в этих мастре-классах( мое счастье ) Единственный положительный момент, мне сделали укол от столбняка. Мне нравится быть женщиной за двадцать: Стал похож на зажравшегося престарелого европейца. Краска облупилась, замки на калитках сорваны, заборчики покосились, во дворе стоит разруха и запустение. и воооот на столь позитивно-пьяной ноте меня в два ночи привезли домой. Меня хватило на один раз, после чего я на неделю решительно выпала из виртуального мира в реальный. Из одежды особенно актуальны носки шерстяные, платки теплые. А мой отец довольно рано усвоил, что красивая жизнь никому не проходит даром Поэтому может быть кому-то моя открытка покажется перегруженной, но я очень за нее горда. Ты никогда не хотел стать журналистом? Как у обиженной стороны, у меня есть право выбирать оружие. Даже самая незначительная ошибка может существенно бить по бюджету, сейчас самое время их исправить. и единственно, чего хочеться, так это уснуть, уснуть как можно глубже... Аромат ванили наполняет сердца гармонией, обладает удивительной способностью растворить суету и создать теплую, располагающую к отдыху атмосферу. седня сдала документы в ОВИР на загран паспорт! Съездела в саб, общалась с подругами, пару раз сходила в кино, пару раз в пиццерию, тройку раз погуляла с кампанией. Понаобещщал бедным девушкам, а они ждали, надеялись, а он... Очень не люблю, когда матом ругаются ( в систематическом порядке ), когда " на нем разговаривают ", когда мат через слово просто " чтоб было ". и тепрь следы от этих кулаков по всему тела ) я кстате слышал, что человек должен менять не менее 5 профессий за свою жизнь, чтобы не запариваться. Неуравновешено очен -- мостик, который мог бы быть смысловым центрм -- спрятан за деревом и смещен вильно влева, справа -- много черного ( стволы ) -- у меня возникает чувство дискомфорта. Цезарь делал это не по злобе, а потому, что расходы его были велики и ему предстояли еще большие траты на войско, триумфы и другие роскошества. И сразу стало легче, когда я поняла, что не все были против меня... Рассказжу немножко про свой сон. Покажиииии фото? Один из немногих, работающий в ПОНЕДЕЛЬНИК Музей микроминиатюры " Русский Левша " находится очень близко к вокзалу ( это я так, на заметку ) и вобщем-то весьма интересен. Проблемы не в смысле, что мы неплатежеспособны, а всмысле как теперь сделать все это за счет арестовавших нас канадцев. Умом сознаю, что « народы, царства и цари » умирают ( или гибнут ). Негативные эмоции оказывают разрушительное воздействие на психику, поэтому лучше с этим фактом, видимо смириться. Поженаем плоды веселой пятницы! С рюкзаком забегаю на работу, весело болтаю с девочнками, вся в радужном настроении и в уверенности, что от Черной речки ходят маршрутки до Финбана, и толкаться с этой торбой ( в 2/3 моего роста ), по метро мне не придеться. Некотороым вещам очень много лет, а меня это не парит... Общению с большинством предпочитаю чтение книг. Смотрите, это и вобщем обещанная хорошая новость, получейте удовольствие... Дейстиве картины происходит в 1930-ые годы. Лекарствоми здоровье гробить Вот куда надо вести ребенка перед тем, как отправить в музыкальную школу: выбирай, дружок, что нравится. причем очень забавно у них есть юридический департамент - руководитель Кузнецова Оглядываюсь назад и кажется что настолько долгого месяца у меня давно небыло. Все меня теперь сдесь больше не живет. Навека поставленную цепь не развести И теперь, собсно, по поводу несанкционированного торможения Пионеров. Мужчиты и женщины могут находиться только на своей территории! Эта задача во много раз сложнее, чем исполнять выученный текст, поскольку артисту при прямом контакте с аудиторией нужно быть готовым к любому развитию событий и обладать мгновенной реакцией. Самый простой способ получить белый и ровный потолок - провести его выравнивание с помощью штукатурных смесей. Пррямо ззуб на ззуб не поппадает. Саиые известные столбы, как я понял - это Перья и Дед. Для меня эта работа потеряла какето изуминку и мне уже очень лениво вставать рано Апять мной будеш приключения сваи аписывать? Клубец весьма себе наформальный, от сюда вполне приемлемые цены для центра Москвы и при этом, как ни странно, давольно вкусно готовят. Велосипедисты, лыжники и бегуны чаще всего замедляют ход возле собак и все проходит спокойно. Ктонибудь что нибуь понял? И ему по-настоящему повезло. шоб всегда любимая команда была Чемпионом ( Сабурово в рассчет не берем, сам понимаешь ) ) Муж, конечно, не Ален Делон, зато и в зеркало так часто не смотрится. Все это от того, что мы сами создали высокие требования для себя и компании. ну ведь совсем ничо сложного казалось бы... Совлаладав с собой, он дал клятву. Вот, собственно, такими космическими цветами с загадочными переливами это стекло и привлекло меня, и заставило искать и копать дальше. жду когда он отойдет достаточно далеко чтобы мои пережвижения егоне пугали Мудреший тот, кто знает о других Спутник позволит наблюдать за потенциально опасными явлениями в атмосфере Земли. Неоторые моменты перекликались с его выступлением два года назад. Пусьь тусуется дальше! И никакие мольбы, просьбы и уговоры не способны растопить их ледяных сердец. Прочтала тут новость, что 21 июля, то есть в день выхода седьмой книги начнет работать телефон доверия, чтобы прочитавшие поттероманы туда звонили и их смогли убедить, что жизни еще не кончилась. Я тоже оччень люблю их, иначе бы задача тети провалилась. Никуде не денется Неожиданнго из подворотни в Олега ударил яркий прожектор, патрульный трактор с лязгом выкатился и остановился возле мальчика. Прератите этот дождь из событий но обижать его не охота, поетому молчу!!! Ну и, собссно, готовься к кризису 2018 примерно года, опять жилье подешевеет, квартирку или еще что-то можно проапгрейдить, если во всеоружии. забавно, что танцует не исполнительница песни, я как-то к такому подходу не привыкла Вообщем я отлично провел время, а если еще учитывать 26 рублей в кошельке, то ваще все клево. Надо у них спросить рецептик ) Какой-то период времени мы вобще не общались... Каковы ваши любимые и наименее любимые слова? Сегодня яичницей никто не завтракал ( как, впрочем и вчера ), на ближайшем к нам рынке мы ели фруктовый салат со свежевыжатым соком, как в старые добрые времена в Бразилии. Особое место занимает чудотворная икона « Лобзание Христа Иудою ». Так как эти яйца жалко есть, а хочеться все больше любоваться, их можно покрыть лаком ( даже прозрачным лаком для ногтей ). ================================================ FILE: data/sanity_check_samples/corrected_sents.txt ================================================ очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Апофеозом дня для меня сегодня стала фраза услышанная в новостях Ну не было поста так не было Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Поясним эту мысль она прямо бурлит у меня в крови тормошит какими-то советами смотрит на меня из глаз моей дочки что носит ее имя Получатся вот такие язычки Роспись была назначена на вторую половину дня поэтому время на прогулку и фотосессию было ограничено Иногда мне сложно понять как можно не любить своего ребенка в массе своей они конечно все очень милые Насчет Чавеса разве что не соглашусь Нужно просто захотеть что-то сделать ради того чтобы все стало так как того хочется тебе Многие сетуют на отсутствие живого взаимодействия между учеником и учителем а в чем оно по сути Основная цель мероприятия практическая отработка навыков по оказанию помощи гражданам попавшим в ДТП а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий сокращение временных показателей реагирования Напрасно выброшенные деньги на билет в кинотеатр А теперь я пойду профилактически рыдать в ванную как все толстые неудачницы в общем как вы знаете из моего недавнего поста я жаловался на пропажу писем с моего ящика на почте.ру Предлагаю поиграть в детскую игру Ассоциации Сегодняшнее утро выдалось просто волшебным хорошо что на выходных не было стен только деревья да ручьи Было тяжело переводил беседу карабахский армянин она сама придумала образ и как бы ни было думаю ей удалось передать атмосферу А Рите снятся сны в которых меня убивают потому что я пытаюсь всех спасти Лучше б этот бунт эритроцитов переждать в дубраве люминала У нас всегда достанет сил чтобы перенести несчастье ближнего Повтыкав в аэропорту поехали к билетным кассам где я взял билет на поезд Компьютерная программа для улучшения зрения а днем мама снится как будто мы с ней в ссоре и она мне что-то выговаривает Интересно что бы было если б этот фильм посмотрела бы с Димой И вот наступил сладостный момент я вышла из дома в шесть вечера против планируемого без пятнадцати и поспешила на встречу с Надей Мощный лазер в нерабочем состоянии 350 кредиток Так вот я боюсь подержанную потому что меня провести как нефиг делать хорошо когда каждый год как первый Особенно мне интересны Капулетти включая и прислужницу Кормилицу и молодежь которая будет участвовать в поединках сегодня должен был на работу притащиться программист и навешать всем оплеух причем большую часть на меня Ответственность за реализацию естественно лежит на контрактных пивоварах В принципе я к этому готова Ограничьте время между кликами что ли Кили открыл что недоступные наблюдению поля мозговые гравитационные магнитные и электрические состоят из трех потоков Эстония это конечно не Португалия но 4:0 тоже результат мы понимаем друг друга с полуслова но диалога никогда у нас не получается Начальник зажег по-взрослому всю предыдущую неделю ходил покрытый прыщами а с понедельника слег ветрянка Подсаживается женщина иностранка из Норвегии она приглашает меня танцевать оказывается что это место слишком крутое для меня я загруживаюсь и больше в этот вечер не танцую В мире на самом деле крайне мало действительно по-настоящему значимого И еще тут ряда на 4 назад какие-то малолетние наркоманы не понимая всю трагичность момента начинают хихикать потерянная молодежь Ощущаю себя с ними монголоидом я никогда так много не молчала как молчу тут и не потому что языковый барьер или еще что-то просто комментариев нет Ответственный редактор издания Юлия Потемкина прислала мне потрясающий ролик про триатлон Пополнил коллекцию шмотья от Fallen в связи с долгожданным завозом Отличный лотос у тебя Меня никто ни о чем не просил просто хочется поделиться Чем Дяченки и Олди мельче философов с мировыми именами Мы с Сашкой купили надо было что-то в бассейн на корпоративном отдыхе что ли а они нам обоим оказались неудобны дико высокий подъем у обоих а они по-моему на плоскостопых рассчитаны исключительно Такое ощущение как будто до этого видел сон а сейчас только просыпаешься но почему-то все адово болит и дышать трудно Объелись пиццы и всячески веселились Возможно все ограничится приятным знакомством а возможно и любовью на всю жизнь кто знает русским мог стать любой кто любил русскую культуру родину говорил по-русски кому подойдет инопланетянам или людям живущим за городом или владельцам ну очень большой квартиры с ну очень большой кладовкой куда это чудо технической мысли можно спрятать Расспрашивая иностранцев-гостей Питера о их впечатлении от русских частым комментарием был тот факт что все слишком сердитые и серьезные никто не улыбается на улице Библиография приведенная в конце книги впечатляет А про дырявую книгу я даже не знала спасибо что заинтересовали Зашел в какой-то сетевой европейский не помню название бренда магазин купить сыну игрушку из командировки lego цены Московские девчонки-продавцы по-русски говорят плохо Сегодня вот днем выдалось свободное время и я опять ходил кататься на коньках А она научилась справляться и жить дальше зная что близкие люди страдают чувствуя собственную боль Зубодробительная гребенка с острыми камнями на протяжении всех 50 км пути Слава богу на минуту мне показалось что я оглох придя в МГТУ я был удивлен никого не обнаружив там Профессиональная карьера Патрисии началась что вполне закономерно недалеко от родных мест но за пределами Франции и как Мишка сегодня сыграл и как тот самый ненавистный Олег им гол как забил а спустя три часа я зашел в серверную школы которую мы обслуживаем чтобы выяснить отчего же вчера не было у учителей интернета и хронографа Уилл был мастером прятаться но не мог воспользоваться своими талантами потому как не имел возможности обнаружить в темноте никаких укрытий давайте на эту вот самую тему побеседуем годов через 25 Но тут-то дело за малым написать ее Они были лучшими на автобанах и на гоночных трассах создав универсальный миф об идеальной спортивной машине и мне вновь хочется изводить пергамент на письмена обнаружиласть тут в залежах Я вчера чуть не купила такие же в супермаркете золотые и серебряные но решила что дороговато по 160 р штучка Расшифровать аудио мне так и не удалось Любителям политических боев на цветных карандашах можно не читать Самой-то в разы дешевле сделать Хоть я слушаю тут недавно и вообще только полтора альбома успел послушать мне все это нравится Едем дальше на север проехали город Бовен и к вечеру уже были в Таунсвилл Наверное поэтому мне мечталось о сынишке Игрушку Покорми меня очень давно хотела сшить но доделала только сегодня Яся стала плохо спать по ночам а днем я от нее стараюсь не особо отвлекаться поэтому времени мало Варикозная болезнь матки симптомы Вопрос в том как совместить все эти векторы ника прости меня пожалуйста я очень виноват определяет правила взаимоотношений вас и их и даже как-то легитимизирует ваш забор как же так надолго артисты отпускают Все желающие могли в любой момент совершить паломничество на кухню за добавкой Мужчину очень озаботил фон точнее надпись Ближе к полуночи когда станция совсем опустела он все-таки решился Никогда не пить очень знакомо и эту Радугу Вы рисуете своими мечтами фантазиями елочными игрушками украшениями Не люблю рассказывать о себе Симпатическая система наоборот отключает все железы внешней секреции как потовые так и слюнные Результаты моего длительного сотрудничества с компанией Nettrader Съездить что ль в музей какой коли они все сегодня бесплатные Перспектива купания в ледяной воде никого не радовала Это основной курс в рамках которого есть еще несколько но о них позже и дальше Препараты от варикоза Съездили два раза с подругой за билетами вечером в расчете на то что купим чуть раньше и пойдем приехали Тогда я возмущался что некто непонятно как получил архив диссертаций РГБ и барыжит ими Странно как-то поиск в ЖЖ работает А вообще пришла в голову мысль вроде не весна Очень славный ребенок настоящий ангел Пришлось идти в обход Приветствуется знание технических основ принципы построения БД опыт программирования на Navision Axapta опыт работы на стороне заказчика Провожаем жизнь мы с тобой Опасался ли он своих снов Разжился на выходных экземпляром сабжа Однажды обезумевшая старуха Людмила Ивановна раскидала все наши зубные щетки Военные в целях безопасности оцепили пирамиды а также Каирский музей и другие достопримечательности Пользоваться сервисом проще простого Железная машина поломалась об православную духовность Не было бы универа и одинаковых прохожих колясочников с детьми блонди в розовом и голубом нелепых гоп возле игровых автоматов и самих игровых автоматов гламурных перцев реалити дом-2 партии КПРФ алкогольных напитков однообразия на прилавках магазинов отсутствия скейтпарка запорожцев разбитых лиц и т.д Сочувствующие тут же бросились развивать тему и так достаточно бредовую и доев свой грибной завтрак и покатавшись на радуге ребята засели за креатив Их творения могли казаться странными непонятными Если не ошибаюсь в первом томе Экономикса изложен но когда сажусь писать мне начинает казаться что не следует об этом писать Но зато были и болезни и паразиты и полное отсутствие представлений о гигиене да к тому же численность населения контролировалась тогда не современными контрацептивами а саблезубыми тиграми и всякими прочими хищниками Однако статуи выполненные им всегда лишены глаз что воспринимается с трудом даже теми кто ценит многие другие аспекты его творчества Его рождение самое таинственное и непередаваемое земное чудо Челка отросла лезет в глаза и уже мне мешает но идти стричься естественно некогда Теперь сюжет еще круче Джефф Гордон известный автогонщик взял баночку пепси со скрытой камерой и разыграл менеджера автосалона Слишком много тоже плохо но и какой-то постоянный минимум абсолютно необходим Обнимает хорошую девушку его знакомую Все подруги всегда курили я нет еще нет Основные же беды от злой Эриды от нее же война а не трудолюбие Когда что-то не получается падает самооценка разрушается идеальный образ Кто-то выкладывал в контакте про медикаменты смысл был в том что существуют российские аналоги которые намного дешевле иностранных и приводился список лекарств Координирует движение специальный человек идущий спереди и как правило задом наперед После этого греки завладели преимуществом и вскоре отыгрались а затем и вышли вперед даешь больше ножек кстати можно немного и позагорать Рассказчик бодрый понятный а главное компетентный говорят у него был шок когда мы приехали Не ссорьтесь на людях и не показывайте недовольство тем или другим образом Выдали студенческий билет по нему она жила годы учебы Прочитал удивленные отзывы о православном нисхождении огня в общем когда-то год назад по сети ходила запись звонка в техподдержку некого пользователя СТРИМ которого довели до пены у рта с криков разрывы Но что ты с ними сможешь сделать Сейчас более известен его сын Максим Кантор художник и писатель Я могу есть немного но очень начинаю тосковать от однообразия Открываю книгу про детские инфекции там все написано и про слабость и про капризы и про резкий подъем температуры на второй день после которого и начинается высыпание Пересказывать содержание спектакля не буду он как и все елки довольно забавен он тряпки убирает там человек полуживой в хламину пьяный фотка классная кстати хоть и не по теме Разговор что-то зашел про роботов и я долго и с увлечением рассказывал ей о философско-антропологической подоплеке многих фильмов типа Иск разум Валли Иногда даже приятно что выходные закончились и можно вздохнуть спокойно D И если им вдруг хочется дать оценку то чаще всего эта оценка касается именно этих шаблонов а не реального человека вот например не зря же нас поделили на мальчиков и девочек ведь девочки берут то что не дано мальчикам и наоборот Ну вот сегодня дружно находились в каком-никаком напряге по метро каталась много ну и собственно ничего не было Как-то раз было подобное с одной знакомой но вроде бы инцидент был быстро исчерпан Я б и на такой состав бы сходил если б билеты стоили раз в 5 дешевле Он становится безупречнее день ото дня вот о чем я Сегодня мрачная погода По-моему в челябинской транспортной реформе никогда не было головы Священнослужители ходят в белой или голубой рясах без всяких золотых ОГРОМЕННЫХ золотых крестов Неосознанно стал вспоминать этот стих сначала отдельные строфы потом куски Сохраню на память кое-что по этой теме все говорят что интернет-блогосфера начинает как-то влиять и в чем-то рулить the sims 3 увеличить грудь Но анализируем публичного человека чьи высказывания по одному из самых болезненных вопросов современной России тиражируются прессой в качестве авторитетной почти официальной точки зрения Поэтому возникло недопонимание и весь этот фильм отпуск на носу не знаю как его применить Свобода сознания это отсутствие устойчивой психологической зависимости от чего бы то ни было но сыро очень и вообще ад полный Для меня было очень важно приходить поздно домой Воинственный и могучий бог войны воплощает в себе страсть и чувственность По-прежнему есть молодые люди делающие записи в свои записные книжки В общем я и так уже собирался ставить игру а после такого Хороших всем выходных и веселого праздника Песах Первый день автобусная экскурсия до биг бена не доехали никогда не угадаете что это кстати Создатели рюкзака учли что бедра человека выдерживают бОльшую нагрузку чем плечи поэтому шестичасовое таскание сына в рюкзаке никак не отразилось на моем теле Позже буду выбираться в сторону центра Я очень рада что вам мои посты нравятся каждый атом Вашего тела был когда-то материей ближайшей звезды Вполне себе нормальный лагер Улица Кирова теперь пешеходная давайте переименуем ее в Пермскую Отдала долг маме и выдала денег на прокорм Но вообще конечно хочу Джойстер Я тебе ничего рассказывать не буду про меня ты и так все знаешь Сань я про себя вообще молчу Диктатура одной партии была заменена диктатурой военной хунты столкнувшей страну в пропасть гражданской войны продолжавшейся 10 лет Препараты для похудения на заказ Это конечно цветные иллюстрации никакие не фотографии А еще там на митинге вроде бы выступали местные музыканты насчет Гулливера детям читать невозможно Самый прикол в том что делая дела в своей жизни мы этими делами показываем отношение к близким своим а когда много гадости сделано на попятную уже никак слишком многих обидели В этот момент я определяю что нахожусь под властью этого наслаждения Странным стал институт наш мировой Рекомендации к жизни в этом сценарии следующие Проблема в том что я вообще не знаю кто мог бы это прочитать Напроектировали различные модели горок решили сделать ее разноцветной Удалить анкету на одноклассниках возможно последнее что я скажу кого-то немного обидит но это ж дневник блин и в нем я должен писать то что думаю Селайя считает что против военных намеренно выдвинуты обвинения в незначительных преступлениях Ремонт это просто полная жесть Руки-ноги раскину и сплю а еще пальцы растопырить вообще снежинка а еще хочу застрелиться сразу из двух пистолетов и почувствовать как две пули расплющиваются друг о друга внутри черепа Всю голову я сломал не знаю уже ничего вообще не хочу Об этом так стыдно писать но я только в начале пути Асфальтоукладчик с проясненным лицом улыбаясь Но для большинства людей новые нормы по всей видимости не угроза налоговики и валютные контролеры просто не узнают о счетах уверен Кандыба Короче полный бойцовский клуб Он спит пару часов в сутки и короче он вообще крутой чел Читай книги с телефонов и компьютеров Температура в выходные флуктуировала в районе 37 короче нормальный рабочий процесс Правило земледелия Все взаимоотношения можно и нужно культивировать Сделайте дыхательную гимнастику медленно глубоко вдохните на шесть секунд задержите дыхание затем в течение шести секунд постепенно выдыхайте Качество вроде ничего друг не жаловался Симптомы зажатия пупковой грыжи Потому что это от Аллаха Разве что бегущая вода Пришлось ответить что случайно не я Из особенностей стоит выделить то что мне пришлось вести занятия по математике Осколки зубристые непослушные дни ночи вечера Прямо на храме обвивая корнями его башни растут большие деревья Я вежливо отвечаю что они ошиблись номером и Зинаида Васильевна тут не проживает Результат на лице налицо Хорошо что Гошу успели унести и Гошины родители не стали свидетелями моего позорного открытия Завал короче но я не унываю Я знаю где живет хорошее настроение Прикольные статусы для одноклассников Много места если не основное в романе уделяется внутренним переживаниям героев Вчера в восемь договорилась встретиться у Мака с подругой откуда собственно двинуться гулять Вообще врать намного сложнее это ж все надо будет запомнить Кому и Чего ляпнул а у меня на оперативке объем не очень Новая жизнь как таковая ее особо не заботит Вы меня извините но я опять про своих Как бы лично наблюдал сейчас И то ли погода была мрачная то ли еще что в общем случилась со мной паническая атака такая жесткая вот атака Тяжело писать письма школьной учительнице русского Только мне даже себе самой это признавать не хочется Посмотреть на меня красивую можно тут Я сомневаюсь что белое золото лет через пять не начнет меня бесить Наступила зима хочется играть в снежки Спасибо милые мои за ваши поздравления комплименты улыбки подарки цветы Профессор хотел сдать рукопись в полицию и проверить чернила на рукописи но патриарх не разрешил а нужные листы вскоре были вырваны тебя мы в первую очередь возьмем ты умный и у тебя располагающая внешность Прикольные статусы в одноклассниках Каждый райтер или группа райтеров старались внести в свои рисунки что-то новое Хотя возможно подобная неинформативность связана с новым Регламентом Премьер-лиги Начните питаться ПРАВИЛЬНО ну в смысле еще одно солнышко помимо меня а вот как-то в коридоре встретил-таки и припер Ты бесстрашная кошка которая неожиданно может выкинуть все что угодно Проснулась в ожидании чего-то чистого и свежего Все три монеты можно приобрести в едином наборе по цене 1020 евро Он выгребает ее из-под костей которые лежат у его ног машет своими хвостами сворачивает и закрывает четыре глаза В такой светлый праздник хочется иметь хотя бы небольшую книжку о вере доброте и собственно Пасхе Смешать апельсиновый сок уксус горчицу мед и масло заправить салат посолить поперчить разложить по тарелкам Приехали мы уже ближе к вечеру пока заселились стемнело либо и не было никогда любви-то либо действительно нам без них МУЖИКОВ никуда Теоретиков тоже в мире больше чем надо Сегодняшние утренние планы умеренно пострадали к сожалению Наверное он сейчас уже проклинает нехорошими словами меня Не мог долго уснуть этой ночью Поскольку отчет деловито и весело уже написан не буду ничего переписывать а линк вот он Так ли влияет на качество напитка распечатывание Мы включились в проект на той стадии когда автоматизированные системы в компании уже существовали на разных стадиях внедрения Компьютерные мониторы для людей с плохим зрением Дольше можно делать и булки и ватрушки и пироги и пирожки с любой начинкой А на самом деле просто начальник активно со мной дружился а начальнице его жене это сильно не понравилось Рассмотрим все необходимые составляющие революционного процесса Зайти вконтакт без смс Ресторан оказался очень достойным по-настоящему итальянское место Я категорически отказалась сочинять скорбные строки о живом человеке ведь и за здравие умерших нельзя молиться а уж за упокой здравствующих вообще кощунство и грех Потеряна последняя надежда на общение Однако и в последние дни бархатного сезона в городе еще есть чем полюбоваться и чему удивиться Перед сном записывайте по одной вещи за которую вы благодарны Если раньше несколько лет назад я друзьями называла всех кто мне доброжелательно улыбнется то сейчас Ненавидишь бардов независимо мыслящая личность не думаю что я его опережу и выключу ноут потому что он долго ищет Убрать мишуру быть просто собой Как раз перед ним был километровый столб Процедура отбеливания зубов в Краснодаре Придя домой не верилось что такое произошло и не верилось что все обошлось Вот интересно австралиец Мердок критикует вопросы политической жизни США Атаман свистнул своим ребятам хлопчика тут же подхватили и понесли в госпиталь а мы с Любашей побежали следом Коммунисты неплохо креативят в Волгограде накануне выборов в гордуму Я даже припоминаю картинку из советских учебников истории Мы миpные люди мы миp беpежем Но сегодня свредничала заставила продавщицу 2 раза перевешивать Вижазисты комментируют что в этой работе трудностей нет никаких лицо выбеленное слезки невнятные Итак завтра защита диплома после которой я мечтаю навсегда распрощаться со своей научной руководительницей А какому стилю музыки вы сами отдаете предпочтение Об Аввакуме узнал из постов Булочникова и до сих пор он иногда репостит материалы Олега Не зная отдыха и сна слова сплетая грамматику не упуская поэт творил Ответственно заявляю Установила словарик Lingvo на компьютер Все сложно и очень бесит Так уж получается что эти люди встают между тобой и твоей смертью в общем любую моральную поддержку в виде живой души в тот момент в общем будет тебе кофе и какао с чаем Причем так сильно что я даже ахнула потому что конъюнктивит может настигнуть не только Уму Турман и моего соседа по даче А потом можно увольняться и хоть в Патагонию хоть в Гондурас Спокойно и не торопясь расселись едут молчат мне нравится мужик в серой накидке с рисунком Скачать дополнение для оперы чтобы скачивать в контакте И если б не этот год в моей жизни никогда б не было таких замечательно теплых Вовки и Аси Ольги Мишани и ежика Дюши и еще многих других Мальчик читал с упоением Сухинова продолжение Волшебника Изумрудного города имхо бякость страшная но читал Тебя ощущала в тебе растворяясь А в подземельях замка выставлены различные орудия пыток существуют люди у которых не голова а непонятно что Тогда соответственно говорят о язычной гортанной или носоглоточной ангине Разврат-то каков За то что щеки не могут улыбаться уже потому что болят И соглашаешься с ними что ветер живой что его сила безгранична и только когда ты на вершине мира ты не боишься его ты часть ветра и ветер часть тебя мы единое целое Потому и взываю к опыту сообщников Спасибо тебе за внимание к моему ЖЖ В центре очень много магазинов где можно купить марионетки разных размеров от спичечного коробка до почти человеческого роста и персонажей Тасовать карты ни в коем случае нельзя скорее потому что выглядит это странно В следующий раз будет лучше Лучше молчать и слыть идиотом чем заговорить и развеять все сомнения Как ни удивительно но я сумела побороть свою лень и взять-таки с собой форму на физкультуру Из сообщения местных властей нельзя сделать вывод является ли список окончательным Обидно что на многих фотках я в куртке т.к. было довольно прохладно Ладно я разрешаю тебе какие-то силы допустим 100 легких лучников иметь в своем распоряжении для поддержания внутреннего порядка Не знаю нужно ли тебе сказать спасибо что ты предвидела этот момент Основной причиной по которой я сделал такой выбор является то что я очень хочу стабильности в стране Одна из функций рекламы образовательная значит она как и искусство является способом познания пусть и ну очень особым такой вообще не существует причины ну то есть она лежит с вытащенным языком К сожалению по большей части это нецензурная брань или откровенное нытье Победители и призеры награждаются дипломами и ценными подарками а ведь часто так и бывает свободного времени мало становится дети работа и все такое Ты не видела где мои носки Ошибочно считать что раздача ключей ведется только в одном направлении от сервера к пользователю Опаздываю сегодня на работу страшно Расстраиваться от мысли что плохо снюсь во снах твоих бред просто показалось что за ночь он как-то поменялся то ли подушкой я его придавила Но сегодня мне снилось что я ей звонил А ночи сейчас хорошие какие-то странные мистические они мне нравятся В отличие от рассмотренных выше проектов крупных порталов этот специализированный ресурс занимается только фотохостингом На завтрак меня ждали Вначале мы с полчаса стояли в здании пока нас не отвели на площадку Я пришла домой на час раньше чем следовало бы потому что я просто уже замерзла не ну ни один обогреватель не помогает окромя мужчины конечно Компания превратит ваших близких в урны алмазы фарш листья ясеня Праздник жуть но пусть будет повод встретиться с друзьями и подругами Нахожусь в непонятном состоянии настроение то ли прекрасное то ли паршивое Конечно же не обойдется без конкурсов с призами от спонсоров Следующей после джо в книжке идет точка закипания Электронная система Сайлау покажет тот процент ЗА который будет заложен в нее комитетом нацбезопасности где стоит параллельный центральный сервер Завтрак вполне приличный не знаю кому он кажется скудным несколько видов йогуртов колбасы сыра булок пирогов джемов И вообще интернет почти как телевизор наркотикоподобен Организмы тут же затеяли возню стали брыкаться визжать и медитировать мешали Обычно она воду пытается пить из кружки в которой я мою стеки и руки Долго шли солнце уже садиться стало в лесу слышны залпы тревога в княжестве ищут нас беглянок некоторые ничего не соображали вообще с небольшой затратой времени удалось доиграть Полиция сказала что на Карловом мосту нет видеокамер наверное чтобы не портить исторический вид Только сегодня работала с клиенткой про переживание того что непонятные неожидаемые собственные чувства и переживания непонятные их истоки означают будто меня нет На Серебряном дожде я слушала периодически его программу про джаз Однажды в этот мелкий город приедет какая-нибудь старая рок-звезда настоящий талант прошлых поколений и поскольку моя группа будет единственной в городе не придется разбираться кто выступит на разогреве Считала сегодня по календарику и теперь зачеркиваю крестики в ожидании весны Мало того что они ходят только вперед так еще дойдя до конца становятся королевой Написал коммент а он куда-то пропал Выводок чудябриков по-любому будет со мной я их в мастерскую отвозить буду Я сплавлю вас вместе на все времена ну в общем признаков нет и беременности нет Ну была еще одна заменить что ли Реклама Пепси советует нам помнить о прошлом но жить здесь и сейчас В интернете более общительный чем в реальной жизни Ослуживание безупречное а цена как раз такая что вы ищете А раз есть о чем мечтать значит есть к чему стремиться ты с какого района объясни сначала Продолжительность занятий небольшая всего 3 дня Хочу завтра прикупить какой-нибудь симпатичный удобный блокнот или тетрадь Всегда чувствовать себя у черты что ведет к счастью и никогда не переступить этой черты Всякий кто выжил героем продул этот бой Не знаю кто оказался главным редактором а совет его был похожим на мамин Мужчина и женщина не могут жить друг без друга но частенько случается что и друг с другом им становится тяжеловато Желаю чтоб на твоем жизненном пути не было вообще никаких неприятностей Довольно большая цифра для 15 квадратов на которых эти милые звери живут Уж не знаю кто ей порекомендовал для такой роли меня наверное кто-то в Спорткомитете но чувствую что-то не то в этой газели А то последнее время раньше восьми встать не получалось а в универ необходимо к 9.30 прибыть Угощали вчера своей едой Открыл для себя лыжный сезон наконец-то Подделанная подпись по определению неаутентична даже если мы не можем подделку распознать Подробный отчет в новом году Нам нужно признать и отучиться от нашей внутренней мизогинии так чтобы мы смогли преуспеть и спасти этот больной мир Последователи Тантры скажут вам что если у вас нет времени изучить своего партнера вы никогда его не узнаете Я наверно никогда не чувствовала себя такой защищенной Эти люди очень принципиальны и готовы преодолеть многие трудности во имя своих идеалов Город можно расценивать по его ритму в Киеве самый высокий ритм а когда я приезжаю в Х то кажется что город стоит на паузе В зале на одной из стен находятся надписи сделанные якобы классиками Обдумываю что с ним делать и как постинги комментарии оформление Вечером мы снова вкусно ели и долго спали все исключительно для того чтобы проснуться к вкусному завтраку кто-то жертвует всем ради любви и идет на преступление а кто то совершает подвиги во имя любви кто-то отторгает себя и посвящается любимому человеку а кто-то заставляет ради нее же посвящаться ему Жигули она же классика стоят на конвейере 30 с лишним лет являясь по существу убогой копией Фиата середины 60-х Приора с Калиной унылые образцы дизайна 15-летней и технологий 40-летней давности Суп проще вылить в последний день и сказать что да было очень вкусно Отечественные банки в основном работали с корпоративным сектором а его состояние сейчас мягко говоря не блестящее Ваш партнер не является вашим врагом в общем вижу цель препятствий не вижу Снова подборка светильников по личному вкусу Даже детей своих угомонили что само по себе редкость Начала свою карьеру ди-джея в 2007 году Вадим во время важных совещаний прячется под столом зачитываясь медицинскими журналами Врут зеркала что красота померкла врут зеркала что молодость ушла Отметил новый год в больнице подарив старому свой аппендикс не знаю честно говоря как правильно пишется это слово не казнить Приведем примеры полного несоответствия проекта многим параметрам что и вызвало социальную напряженность на Загорянке Приятно познакомиться Мой босс бывает крайне неадекватен а иногда и более того зачем ему вдруг понадобился мой приезд я так и не могу понять ну окей я буду Монастырь был очень большой и красивый В деревне жил старик очень бедный но даже короли завидовали ему так как у него был прекрасный белый конь Православная Церковь является единой и соборной а потому никого из ее членов не может не волновать судьба своих братьев-единоверцев где бы они ни находились Это же не развалины средневекового замка где можно найти если повезет сундук пиастров или череп бедного Йорика Отжимания от медбола 3х10 кстати баня загорелась как шульга с зимариным уехали Конкурс проводится одновременно в России и в Италии не знаю ходить на море делать ремонт кого-нибудь встретить Бывали случаи что за день заливало весь подъезд Творческий потенциал может увеличиться Проблема есть даже кот у меня насмотрелся и научился периодически мимо попадает он же здоровый у меня лосяра Особливо это чувствуется на премьере фильма когда есть с кем поздороваться Я вообще горжусь как за себя не гордилась сроду Муж уже вернулся и Ваське спать пора Боже как глупо все вышло Осчастливленный новым альбомом выхожу на просторы ночного города и решаем мы с Левонтием и Анжелой идти гулять по оным по пути втариваясь коньяком и колой Сергей Викторович благополучно улетел в отпуск а значит что вижу тряпки лежат на полке у друга спрашиваю что это И естественно разрешили взять со мной девушку Ну в общем она имеет Женское счастье Особенный человек естественно виделись по полтора часа минимум каждую неделю на протяжении 8 лет Кто-нибудь сталкивался с такой ситуацией Поведайте плиз а какой предмет она ведет Рад рад за тебя теперь только экзамены сдай Мне ничего вот пока не понятно Вот только это по-свински и совершенно нагло Обычным мылом лучше не мыть тело т.к. мыло сушит используйте гель для душа И никого из моих а те что наполовину естественно притянулись к другому полюсу С ним можно говорить на любые темы кроме конечно отношений с другими мужчинами чтобы просто напросто не ранить его он естественно за ним нагибается и вдруг в глазах появляется иконка Чего же они так испугались все эти римляне всего-то книга всего-то о любви в общем питаюсь окрошкой пью минералку смотрю уже 5 сезон клиники Потому что время еще есть и деньги тоже Спасибо огромное за репортаж Выходные выдались на редкость и радость долгими и прямо скажем отдыхательными Сегодня в мои выходные мне позвонил начальник и вызвал завтра на разговор Если Вы полетели самолетом Аэрофлота то никогда не сдавайте в багаж ценные вещи Поднимать надо не читаемость а культуру прежде всего Предположительно основан в XII веке в период правления династии Неманичей Неожиданный у вас мальчики для меня диалог Спасатель от него зависят человеческие жизни а общем и судьбы людей Хорошее такое кино классическое смотреть приятно и легко Ну а больше я ничего не могу советовать потому что очень от секреции зависит к себе его забрать не можем т.к. с моей собакой не сживется ни одно живое существо Изданный в 1368 году этот устав определял горное право порядок трудоустройства регулировал добычу и торговлю солью в общем о Йоте я услышал впервые из уст очень продвинутого студента-экономиста Артура который вместо книжек и тетрадок носит с собой маленький ноутбук Работодатели не должны платить государству Присоединяюсь к справедливому негодованию Ваш цветок всегда должен быть рядом чтобы защитить от обмана и зависти и ослабить приступы ревности которым вы подвержены Собственно я им заинтересовалась не только из-за статьи а вспомнила что мы как-то заказали его в каком-то кафе в Амстердаме Попугай с удовольствием любуется своим отражением надувает щеки ставит гребень Вот хоть бы раз она чего-нибудь ответила Последние две номинации не слишком оптимистичны но если даже мы хотя бы в одной из трех номинаций получим первое место тоже неплохо пиар как-никак Но это хорошо так как затем из отколотых зубов удаляются нервы На данный момент внутренняя валюта сети употребляется для покупок виртуальных товаров в играх Facebook в некоторых интернет-магазинах работающих в социальной сети а также для расчетов в скидочном сервисе социальной сети Facebook Deals крем детский нет Я не перепутала со вчерашним днем Я и сегодня купила вместо лосьончИка для тела буду пользовать его только она не желто-красная а невзрачного цвета и сухая Сидела разбирала почему в момент когда я сдаю экзамен уже 4 раз кто-то разговаривает и я теряю концентрацию Вот это-то вкупе с духовными скрепами на что списать Но сейчас я точно знаю на вашу поддержку в беде я могу рассчитывать Очень скучала по нему все лето ну кстати девкам было не 13 лет когда им в руки дали инструмент а 16-17 Сложно на самом деле объяснить то что происходит в моей душе Парламентский принцип формирования правительства двухполюсная поляризация политического спектра наличие у партии политической позиции сильного лидера и известных имен с репутацией профессионалов дают этому правительству массу преимуществ уже на старте Не особенно честолюбив но не терпит когда его обходят по службе из того же чувства справедливости пожилая девица сестра князя Иосифа Венцеля постоянно живущая в Саксонии Привезла мне чудище Просвистевшая над головой пуля заставила его обернуться Некоторым изменениям прямо скажем удивлена Это перевод фрагмента воспоминаний о жизни в Англии в провинциальном шахтерском городке рубежа 50-х и 60-х годов Это была единственная экскурсия на гору Монсерат о которой я расскажу в следующий раз в нужный нам день и он на удивление пришел раньше обычно он опаздывает на 10-15 минут и я его матерю потом но сегодня он меня лишил этого удовольствия Мы так много говорим о любви и так мало любим Я узнала об этом давно но меня до сих пор приводит в ужас эта мысль Постарайтесь теперь найти и отсканировать все законы касаемо авторского права ну и гражданский и налоговый кодекс так за компанию Он станет пилотным проектом в рамках туристического кластера на Северном Кавказе Пройдя еще немного он понял что идти дальше сегодня не сможет и остановился в Эрендзи ну то есть ничего конкретного а в целом обо всем этом После изъятия Рожновым у меня диктофона сопровождающееся ударами в спину я понял что таким же образом могу лишиться и фотоаппарата и надо спасать хотя бы имеющиеся кадры Зачем мы пишем дневники Если очень хочется спать вздремните Хочется жить отдельно от этого сумасшедшего стада извините не в обиду сказано Он подразумевает следующую логику исследования полностью просеквенировать несколько десятков геномов высокогорных жителей и путем многовариантного анализа по сравнению с геномами обитателей равнинных областей выявить различия в генных характеристиках Чувствовалась рука тренера Хранительница домашнего очага должна быть верной мужчине иначе ее дети окажутся без добытчика Норнштейн это человек которым мы можем гордиться что живем с ним в одно время и в одной стране в общем пока не прочитаете не поймете Низкая интегpиpованность следует своим побуждениям малоконтpолиpуем вообще не знаю чем занять себя этим вечером Кстати что-то не все цифры видны Поссорилась с фотофайлом как подружусь еще с каким-нибудь ресурсом хранения картинок кроме лж плюс то выложу все сюда еще Поэтому если я случайно начну истерично хихикать или неуместно шутить или неуправляемо объясняться в привязанностях это нервы Сначала купила пластырь Никоретте Представьте себе какой-нибудь офис на территории бывшего СССР не отмечающий 8 Марта Новый год или День защитника Рюкзак часто добавляется к последнему варианту А к тому что исключительно на мой субъективный взгляд ребенок и сам может сообразить как слепить елку или дедушку Мороза Даже не знаю что сложнее про нотную грамоту молчу вообще Он говорит о том что есть иная действительность и стоит ее постичь как эта так называемая реальность просто блекнет становится нереальной Официальное фото от организаторов Я возмущалась ну как это как-то это так звучит нехорошо И я безумно рада что я здоровая а не инвалид Рабочий день длинный потому что здесь наконец много дел По-моему не одна я испытала эстетический шок потому что область в радиусе предполагаемого эпицентра в случае падения этой биопирамиды в считанные секунды зазияла неинтеллигентной пустотой Мозаика из сплетенных пальцев наших рук чуть ближе друг к другу ощущение сказочного спокойствия и защищенности в его объятиях Ударение всегда на первый слог две гласных означают более долгий звук Про вас можно сказать что вы любите алкоголь без всяких задних мыслей Любое внедрение в тончайшую паутину энергоинформационных нитей человека может принести огромный вред И у меня кстати тоже в машине аккумулятор внезапно сдох Непридуманная история из сети Я купил весы с ними время летит незаметно Так что как сказал Поль Валери Если кто-то лижет тебе подошвы прижми его ногой прежде чем он начнет кусаться Пересказываю со слов не знаю насколько точно но постараюсь это ж простите не кольчатые черви и не растения которые размножаются почкованием Подгрузился список контактов Основная часть архитектурного ансамбля если так можно выразиться состоит из самолета Boeing 727 Набирала скорость еще в горах Папа откуда ты черпаешь эту информацию Сочувстсвую и желаю чтобы все решилось а как помочь в таких ситуациях вообще себе не представляю Девчонки завизжали при первых аккордах первой песни сыгранной нашим бэндом Вот пишет замечательный издатель журнал с вашими стихами напечатан Чувствовать принадлежность что ли Невозможно свести Православие лишь к индивидуальным убеждениям оставив при этом в стороне практику жизни Пишите мне чтобы я смогла убедиться что мои сообщения вообще где-то видно Неоднозначное чувство у меня осталось после просмотра фильма с одной стороны чувствуется тяжелая атмосфера в которой принимаются важные решения происходит изменение сознания героев рушится внутренний мир строятся новые ценности Наглядно привожу еще один расчет чешский писатель-постмодернист известный широкой публике по роману Невыносимая легкость бытия Поэтому для взаимности у нас должны быть хоть какие-то общие интересы Как я понял это изначально сделано Строгость задаваемой им системы координат загоняет человека в созерцательность Эмоциональная перегрузка В первых строках своего письма спешу сообщить что я девушка Кинокомпанией DreamWorks планируется выпуск планшета специально для детской аудитории Это как раз та развилка до которой мы потом НЕ дойдем То что пристегиваться необходимо и нужно вопрос понятен но то что ты будешь нести ответственность и за тех кто не пристегнут в машине вообще наводит на мысли Всеми правдами и неправдами пускают социальную пыль в глаза Сами убрались или с чьей-то помощью во время гололеда и теперь залечивают раны Приклеенный скользяк или нет это точно не угадаю И в очередной раз думала о том как легко естественно просто Преинтереснейшее положение у нас сложилось на рынке платежных систем Сегодня улыбнуло шла в поликлинику менять полис долго тянула с этим делом так долго что дело стало похоже на французский батон такой же длинное и нелепое проходила мимо какой-то пятиэтажки а там вовсю трудятся славные граждане Таджикистана я первый раз каталась на таких креплениях Благодаря моей довольно набожной бабушке я привыкла отмечать еще один праздник а именно именины Я морально уже готова произвести на свет название для такси Следующие 3 часа мы были заняты преодолеванием трудностей протискивались в узкие щели спускались поднимались ползли на карачках шли по колено в холодной воде отбивались от летучих мышей и филиппинских школьников на прогулке Приспособление электрокалорифера установленного с поддержкой винтов в дно корпуса состоит из осевого вентилятора и спирального электронагревателя Причем у них очень много заказов ах да в завершение я сегодня еще сходила в бассейн и наплавалась вдоволь В книге приведены практические советы как справляться с реальными и часто встречающимися проблемами внутри фирмы а некоторые фразы так вообще убивали Чтоб глаза у ней счастьем светились Спасибо за твои записи в ЖЖ которые я иногда залезаю перечитывать Теперь я знаю что бомжи дерущиеся на улице это не бомжи а РЕСТЛЕРЫ Баклажаны перец помидоры запек на открытом огне почистил шкуру нарезал и смешал с чесноком и кинзой Единственный минус Тельцов это упрямство даже когда они неправы Ваше отношение к идее равенства мужчины и женщины Много букв сначала хотел сделать из него юпик но в миниатюре совсем не то После войны в Ливии около миллиона египтян вернулись на родину пополнив без того огромную армию безработных Мне только кажется потому что я в них совсем не разбираюсь Эффективность способа напрямую зависит от скорости его применения Осталось понять что же все-таки сдохло мать проц видюха или ну пусть будет так пожалуйста блок питания И то еще минут сорок наша четверка ждала когда подготовится машина инструктора А я читаю все молитвы на ночь я книжку в церкви купила а вот Отче Наш не могу наизусть выучить Статусы для одноклассников смешные Я верю что браки заключаются на небесах а значит мы уже записаны в бортовом журнале на места рядом друг с другом Сейчас в моей голове происходит примерно такое Однокурсница в аське ошарашила предложением написать мою фамилию на ее лабораторках типа мы вдвоем сделали Когда Белка в очередной раз пришла ко мне и подставила мне пузо я постелила пеленку у нее под боком и положила туда Лилового Червяка Забыла в доме джинсы а джинсовые бриджи найденные с прошлого лета естественно с меня свалились Ну а космодромы понятное дело должны охраняться Всего в этих категориях от России участвовали около 60 работ Оно тоже прекрасно оно настоящее живое правдивое А в 8.30 я пошагала на пары а вечером дописывала курсовую Однако подходы к решению одних и тех же правовых вопросов иногда разнятся Это привело к девальвации духовных ценностей апатии и аполитичности Я уже подумала что это насовсем Потом искренне удивляются и бранятся когда им откажешь И мерное биение пульсара сжатыми кольцами магнитного поля отсчитывающего тысячелетия жизни огромной вселенной окружающей нас Мозг готов треснуть Ну и слегка фотки пейзажей вокруг моей теперешней берлоги в смысле института Я как пешеход буду вас бояться как и всех машин В ночь с 7 на 8 декабря Финикс уступил Сент-Луису со счетом 3:4 В прошлую субботу разбили на кухне пустую пивную бутылку в пятом часу утра Кто заменит Деппа на посту исполнителя главной роли пока неизвестно так что Дима давайте сначала вы в Тарусу а потом к нам в Одессу Коды к играм в контакте Нашла троллейбус расположилась в совершенно пустом салоне естественно сейчас мало охотников ездить в Эстонию долго созерцала пейзажи за окном Завтра попробую выручить новый В общем-то любая посвященная спорту новость для меня как владельца этого блога можно сказать сюрприз вот кажется приведенная ниже класснее и не пожелаешь Совершенно измученная спазмами ознобом и слабостью я зарылась в одеяло и пролежала так до вечера Начал читать с конца и поэтому уже был морально готов в концовке у птенцов кстати нету мышц Вот и получается теперь что женщина действительно неделимое целое с мужчиной если в Киеве маршрутки не будут брать стоячих людей битком то ехать на работу и с работы многим придется не час-полтора а два-три У меня так же как у пациента было много непонятного но игра состояла в том что я врач а он пациент Позавчера пересматривал Горбатую гору и в памяти всплыло сразу 2 человека А все же с огромным удовольствием я бы поехала в Москву но невозможно В общем берешь картинки из журналов вырезаешь интересующие темы делаешь из них коллаж и направляешь энергию для реализации желаний Наконец-то мои ручонки добрались на кнопочки написать в профайле и вот решительно собираюсь накатать несколько постов о том что наслучалось за это время День прошел полностью одухотворенно Прикладываем к разбитому лобику извлеченное из холодильника мясо пытаемся успокоить и попутно осматриваем Ну а если что пойдет не так как надо обращаться к семейному врачу Следите за нашими репортажами Итак что вы можете подарить мне если не знаете что Пассажирам задержанного рейса выдали лежаки и огородили территорию вокруг них красными лентами Теперь ты снова будешь писать добрые сказки а я всегда буду рядом Любопытства у них побольше чем у нашей легендарной Варвары за небольшие деньги или даже просто так в умелые руки отдаются замечательные книги Практически никакой информации извне вот это у меня пробел пока насчет струй Народные рецепты отбеливания зубов в общем срочно надо в сберкассу завтра днем еще будем тут уедем скорее всего на трехчасовой электричке Ручниками я считаю любителей которые тоже знают все фотографические азы но при этом снимают исключительно в ручном режиме Сегодня согласно всем кодексам и сводам правил заверив у всех заверителей и проставив все печати официально поздравляю товарища хорошо быть слепым и глухим и на всякий случай немым Мы не сразу отыскали инструктора но сильно обрадовались когда нас нашел доброжелательный мужчина с очень накачанными руками Я уже забыла что это такое идти в обуви без каблуков Настроение непонятное какое-то солено-сладкое с одной стороны жалко расставаться с родителями и другими близкими людьми с другой радость от наконец-то сбывающейся мечты можно и так это назвать хотя скорее стремление к более спокойной жизни ну и для меня лично есть огромная доля приключения в этом всем это как минимум интересно я всегда мечтал о таком путешествии вот так сижу обуреваемый чувствами Прагматично так подумайте если охота будет Недавно говорила с одним человеком на эту тему и он мне поведал что его родственники вообще не общаются друг с другом Соедините две получившиеся смеси в одну И вход в дом каждый хозяин обустраивает с таким размахом Это еще хорошо что ты в рыбном журнале работаешь Хюлькенберг квалифицировался девятым но на старте у него возникли проблемы в общем снится мне что я нашел-таки артефакт позволяющий видеть что там у людей внутри Что белому человеку кажется моральным для японцев аморально Просмотреть скрытую информацию в контакте Практически минуя сознание ощущение этого постоянства уходит куда-то внутрь и волна за волной ложится где-то очень глубоко Мне нравится что он кладет мне голову на плечо и это естественно Не торопясь и на низкой температуре печь безе Мир не шибко справедлив Если сравнить площадь крыши и нашей квартиры даже только кухни с прихожей потому как теперь сволочи выселены туда так на крыше места явно больше мы с Денисом вместе рисовали он мне очень помогал и поддерживал это доя меня очень важно Это где такое случилось Подхожу к тому дому где скребут лопатами таджики и слышу Вот опять она Сегодня поперлась в поликлинику близ дома полчаса блуждала потом набрела мне дали от ворот поворот дескать я ни по прописке не подхожу им ни по универу Сегодня гоняли с любимой на стрельбище в Манчестер в общем уезжали в печали и тоске когда еще предстоит эта поездка но с огромным желанием приехать сюда летом страшно как-то теперь домой поздно возвращаться Если она этого не дождется или Вы ей не напомните о Ваших отличиях то она будет действовать строго наоборот Я наливаю воду в кулере как обычно смешиваю холодную с горячей а он мне Осторожно вода очень холодная А гостиная она для того и делалась а то в РД Урала уже вообще ничего святого не осталось А потом я долго-долго-долго их юстировал Потихоньку-полегоньку бюрократические инициативы приобретали маразматично-параноидальные оттенки но бисмиля многие инициативы так и остались инициативами не получив материального воплощения И как он с остальными членами семьи Да что с тобой говорить ты ж наполовину в земле В очередное пробуждение я застаю рассвет небо набирает все больше светлых тонов Нехотя поднявшись я переоделась и побрела на кухню Но на деле Марк никогда не умрет в каком-то там лесу Не о визите же к элитному пульмонологу насчет обструктивной эмфиземы Под надзором нескольких учителей они проводят сутки в этом центре играют читают проводят дискуссии Правда я его как раз с 80-х и люблю Но как и в любом парке там естественно были экскурсоводы Значит в субботу покажут кино про кидал Кидалы Потому что рисовать на себе я не могу раздеваться без рисунка как-то тупо а красивая я и так ПАСЕ это всего лишь ассамблея парламентов Стоит возвысить мозг над остальными органами и ему останется только критиковать то есть выхолостится его основное предназначение Всего диалога я не помню но посмеялись от души Подскажите мне темному чего зазырить перед сном типа можно без мяса можно даже без кровищи Он был молчаливым симпатичным брюнетом а я рядом с ним была невыносимой болтушкой Предлагаю вашему вниманию похожие по смыслу но разные по содержанию два фильма о любви на всю жизнь Никогда не думала что меня могут поставить в тупик такие вопросы как Какие мне нравятся фильмы или актеры Хотите разъехаться так есть же обочины И нужно ли вообще спрашивать разрешения работодателя на добавление материалов в собственное портфолио В октябре 2001 года он попросил помилования за примерное поведение в тюрьме однако суд отказал ему в освобождении У двери валяется серая тряпка Суббота прошла под эгидой хорошего настроения Покопаться в песке одно из любимейших занятий забавное обстоятельство в эти выхи был день города и пьяного люда на улицах было ну очень много У нас все выкосили нещадно Сентябрьский семинар продолжение встреч целью которых является исследование истории диктатуры и протеста против тоталитаризма Рекомендую к сотрудничеству Промозгло и муторно Вот такая вот история в общем-то из статьи понятно что наши власти исполнительные теперь могут в пьяном виде делать чего захотят и отвечать они будут только перед своим начальством Распределить по пекарской бумаге натертый имбирь и цедру и сушить 30 минут А Фея стояла на балконе и думала о стрижах которые стремительно проносились перед ее глазами кстати вам финдиректор не нужен случайненько Собственно вторая наша экскурсия Есть дача а это оба выходных плюс вечер пятницы На следующей неделе в четверг 11.08.11 вечером собираюсь в Магнитогоск своим ходом Согласно поверью есть минуты когда пожелания выраженные вслух исполняются Далее хочу отметить что моя работа связана с постоянным общением с людьми Длился этап чуть более часа Как открыть одноклассники через секретный вопрос Напьешься в хлам и станет противно соратникам и друзьям Обязательно хочу миссию с дирижаблями обожаю эти летательные аппараты Акинфеев вовремя вышел из ворот и не позволил бразильцу открыть счет однако на добивании первым оказался Ибсон который и расстрелял пустые ворота ЦСКА 1:0 Как вы полагаете справедливы ли эти упреки Насущного много и оно разное но мне хочется вернуться к теме о которой не говорил бы только ленивый наш кризис Ты специально синхронизируешься со мной по выходным когда меня нет Теоретизированное мышление необходимо для решения проблем В общем вся дорога туда-обратно заняла общим счетом часа два с половиной Пряный аромат гвоздики способствует укреплению памяти Или просто не считает нужным замечать собеседника Хотя по виду о тебе такого не скажешь но в тихом омуте Масс-старт в биатлоне впереди еще например Я же говорила что счастие грядет Теперь таких кинотеатров в Москве не существует И к своим проблемам просто присмотритесь чтобы больно не было когда ешь то что нельзя Так возникла вторая после Ассирии мировая держава собственно это почти в одно и то же время снято просто облака плывут Да мне интересно как люди живут и что у них происходит пройдем или нет не знаю и судить не берусь Созерцать красоту бытия и наверное хорошо что я там был один И сетевые библиотеки больно бьют прежде всего по авторам Самыми древними памятниками Синопа являются крепостные укрепления построенные при понтийском царе Митридате IV Провинция с замашками большого города Следует отдать должное заказчику очень четко очерчено техническое задание на производство дизайна Написание Бедных людей это если кто не знает первое известное произведение писателя сопровождалось бы очень полезными комментариями от читателей блога Но тут вспоминается что например пару лет назад в Кельне в связи со строительством мечети когда едва не дошло до побоища между сторонниками и противниками этого мероприятия с обеих сторон присутствовали сплошь вполне европеоидные господа с левого и правого края политического спектра В свою очередь газета Гаарец утверждает что французский министр обвинила палестинских боевиков в бесчеловечности и потребовала немедленного освобождения пленного У меня нет новогоднего настроения одна апатия Рауль тоже не кантерано как любят считать многие Рита ходит в коридоре разговаривает по телефону на попытки загнать ее в чемодан не реагирует В общем моя мысль Классика РУЛИТ О точно пойду с сентября на занятия йогой Третий год подряд я благодаря маме уезжаю на свой день рождения в другой город в другую страну Скульптура Медведь и земляничное дерево символ Мадрида Разгадать вновь ту загадку черт неужели я после своего черноморского лагеря тоже был так импульсивен в общем я вообще без загадочной улыбки об этом фильме вспоминать не могу Какая татуировка бы вам подошла В летние месяцы Роспотребнадзор запрещает жителям края купаться в реке Традиционно правильная инвестиция классический кашемировый джемпер цвета беж с V-образным вырезом а так хочется что-то мочь менять в этом мире не обязательно менять но обязательно быть способным это сделать Привезли кучу фотографий впечатлений и средиземноморский загар И я должен подчеркнуть что настоящий танец это одна из самых прекрасных вещей которые парень может поделить с девушкой Общая топография Южной Пристани Коссово город расположенный недалеко от районного центра Ивацевичи известен памятником архитектуры дворцом Пусловских Он у меня живет в очень маленьком горшке примерно с два моих кулака Да и в любом случае нужно найти какое-нибудь безопасное место для ребенка Однако есть несколько нюансов о которых хотелось бы написать Нет ничего хуже адски болящих зубов От всей души желаю каждому вновь обрести потерянные светлые и добрые качества Я как душа Тома Рэддла разбросана по сторонам света Google прекрасно справляется с тем за что берется Иногда стоит постараться чтобы не упустить действительно милого мальчика В перуанском городе Ило местный житель Рамон Санчес разграбил древнее захоронение и жестоко поплатился за совершенное кощунство Способность не завидовать это величайший дар Несколько дней назад я потеряла паспорт ТОЛЬКО ВМЕСТЕ Заключительный аккорд экономическая интеграция РФ Украины и Белоруссии Территория обитания зверьков а это достаточно высокогорное плато в Андах была обнесена колючей проволокой и охранялась военными а сами животные объявлены национальным достоянием страны перекрыли сайт одноклассники как быть Каждая фотография несет немалую частичку души этого красивейшего места а каждую вторую можно отбирать и продавать как открытку Мы пошли в Художественный нас встретила приятная неожиданность в афише сего не было но мы оказались на 3D версии Мамочки только что получила список вопросов для ГОСов Я в таких ситуациях за конкретные предложения Я не c читаю нужным с Вами полемизировать Сейчас же я дома мне все здесь нравится Не считая этого запрос розыска раздачи осложнен тем что программка ориентирует его к поисковой системе в браузере Ну клятвы давать Бог запрещает Большая просьба приходить на занятия со сменной обувью Опять качает головой и улыбается Пресловутая подкованная блоха оказалась почти самой простой Извините если ярко выразился Ну во первых начальник чисто в теории видит проблему шире Напомнило старый анекдот Из-под плаката выглядывают очаровательные ножки дерева Пока не знаю поеду до Львова или нет да и вообще не могу сказать поеду ли придя в квартиру мы помыли руки начали ставить мне ирокез А мы пили китайское сливовое вино обалденно вкусное Обман зрения это не прикол просто смотрите в центр то есть вы придете с паспортами и будете канючить не хочу не хочу Объехав таким образом две-три фермы и заменив при этом пустые фляги на полные грузовик наконец часам к 12 дня въехал в долгожданное Сандово ни ля-ля так не получается а если получается то ни капельки не искренне и даже очень натянуто Половозрелые и не очень парни и девушки одевают алые ленты и мегаплатья а потом идут пить Взрывом уничтожил шесть автомобилей саму автомастерскую ну и естественно нашего дарвиновского номинанта Кроме того частные средства пойдут на строительство пяти новых стадионов ладно когда он как бы из-под полы Муж включал телевизор ложился на диван и открывал бутылку пива 37-летний форвард заявлял об окончании карьеры еще в конце прошлого сезона но согласился остаться еще на год дабы помочь Арминии вернуться в Бундеслигу Насчет вечерних не знаю но бегущего мужчину лет 70 сегодня в 11 на аллее видел Но теоретизировать тут бессмысленно Собственно он и от дождя очень пригодился На удивление я увидел интуитивно понятный графический интерфейс установка прошла успешно да вообще по сути дела с огнем ИГРАТЬ не нужно Новозаветная модель рулит Не говоря про то чтобы попасть в ангар с танками тоже надо было отстоять очередь при этом явно торопился уйти и одновременно кому-то писал смску Как вы знаете у нас в фонде есть множество самых различных программ помощи детям проживающим в казенных учреждениях Интересно как там работа объективов регулируется На следующей неделе будет новый список игр со скидками Сердобольные женщины которые приносили мамке каждый день немного еды различали их только по масти Потом нас загрузили в машину инструктора и повезли сдавать экзамен в городе Это моя бывшая за это спасибо Обычные буддисты просто шаблоны негодные Иначе происходит развитие у более частого вероятно более чистого и настоящего типа женщины Рассчитан на определенную аудиторию адаптирован под ее восприятие На днях перед сном рассказал мне Я не люблю кефир Оплата в контакте через терминал Очень поразило меня обилие всяких чаев на кухне в новом офисе в особенности факт присутствия моего на данный момент любимого чая который пахнет глинтвейном Потратить средства они смогут на любые цели Расчетов мало одна логика Имбирь активизирует защитные силы помогает сохранить молодость и здоровье до глубокой старости очень уж он неприглядно выглядел непредставительно как-то да и вообще опустился парень ниже некуда а про бабешку я его вообще промолчу что-то даже не хочется подводить итоги вспоминать этот дурдом Без изображения хорошо пойдет никакого бамбука не понадобится Энергосистема Южного Урала относится к дефицитной то есть нагрузка потребителей превышает нагрузку электростанций однако благодаря строительству новых объектов в том числе Южноуральской ГРЭС-2 генерация получит дополнительные мощности и потребность в электроэнергии будет закрыта собственными ресурсами Низкий срок службы 1000 часов но некоторые служат дольше На блогах очень много трепа но иногда среди этих залежей выходит нарыть реальные жемчужинки И честно говоря это не я его это он меня таранил Постарее дедуля был придя на репу выяснилось что мы сегодня опять неполным составом сачков свалил на дачу Сколько стоит домик на острове в Таиланде Семантическая поисковая система используют семантическую науку изучающую смысл слов чтобы производить более релевантный поиск И это ведь есть в каждой нации А то у меня номеров почти нет в связи с восстановлением симки Превратиться в кляксу смяться разжижиться стечь горестными капельками Кстати можно ли сразу запилить международные права чтобы я стала совсем крутая и могла сбежать с миллионами за границу Вообще обычно когда мы ссоримся у меня нет ощущения своей полной правоты то есть я думаю что наверное все-таки права но можно было здесь сделать вот так а здесь лучше а здесь помягче Я сомневаюсь что мне нравится это кольцо а не то два магазина назад Предчувствия его не обманули Чтобы каждый день этой жизни приносил тебе столько радости величины которой хватило бы на то чтобы полюбить ее без памяти эту нашу такую непростую жизнь Если б кто быстро сообразил бы можно было бы выпустить семечки в упаковке как обычно в магазинах продают и штамповать на них бренд баревреволюция Я вам покажу как будить Колдуна Как вы представляете свое положение через 3-5 лет и как собираетесь его добиться Нечувствительны к пониженному напряжению могут применяться в светильниках с регулятором очень удобно Давно хотел выложить некоторые фотки вот лапы наконец-то и дошли Какие смачные фотографии хоть и поела а аппетит разыгрался люблю ужастики но не смотрю теперь и так темноты боюсь а если посмотрю потом вообще спать не могу Фактически по этой же модели он строит свою дальнейшую жизнь Ну вот наконец-то забрал часть фоток у Боди их там много залил сюда штук 25 Ой а что это он делает Но вообще единственное что не люблю мат и про детей Надо дописывать книгу всего чуть-чуть осталось но как всегда лень Я не знала что моя правая нога не особо меня слушает да и вся координация хромает Любое дело направленное на помощь жертвам насилия и несправедливости вдохновляло его Утешаюсь мыслью что двое детей это нормально науке известны случаи выживания взаимоотношений в таких условиях Это я два года назад за пару месяцев до беременности на банкете в честь юбилея одного папиного коллеги Хотя она вроде бы относится к психике мне хочется назвать это оценкой способности воспринимать окружающий мир во всем его многообразии Одобрен был только один карандаш для глаз который я как раз не любила за излишнюю кислотность и крикливость все остальное было отвергнуто Обмороженных больше чем ошпаренных Пытаюсь успокоить руки слезы загоняю обратно и пулей из универа Отпраздную затем отвечу на комменты уж простите Начали с Капитана Моргана и Текилки Порой мне хочется тебя убить И кстати очень зря некоторые убеждены что жизнь не сказка и не фильм в котором все красиво не знаю как у них это получилось но факт В Темрюке есть так называемая военная горка где под открытым небом находится выставка настоящих самолетов и вертолетов пушек и кораблей танков и поездов Но черт возьми где-то есть семьи где родители помогают детям в том что действительно нужно детям а не в том что как считают родители им нужно Полетим все вместе по возможности одной в тишине слушая звуки дома быть и думать о своем читать или просто валяться в задумчивости на матрасе чтобы молчать наедине с собой Она сказала чтобы я съездила туда сегодня Сочетание магическое и очень нам понравилось Родителям малолетних детей советую обратить внимания на новую обувь Сейчас Айгуль находится в третьей городской больнице А потом со временем стало так что я вообще не хочу ничего рассказывать До свиданья Оля мы разошлись как в море корабли Спасибо но сегодня должен аванс упасть на карточку и тогда гуляй рванина Приятно общаться со старыми но давно не встречавшимися приятелями Ничего себе бред Сейчас такое мясо грех не пользоваться не помню где читала теорию что дольше всех живут те кто является самыми большими поставщиками на тот свет то есть все кто имеет отношение к оружию довольно милый и летом и зимой обогреваемый теплым солнышком Поэтому все остальные раздражающие факторы усиленно не понимают моего сопротивления и делают все что в их силах чтобы затянуть меня туда подальше мне даже раскладывать не надо так помещаюсь Мы сняли уже студию в другом месте там правда не поживешь особо Не смотря на дороговизну домов двери до сих пор простые Насчет мира ты уверен что мир так сильно меняется а может это мы меняемся Оказывается можно быть счастливой и несчастной одновременно Пронзительно холодный ветер мчится по пустоши В первый день после большой грозы озеро было серым и непривлекательным на пляже безлюдно Лампочку-то намеренно изобретали Все что я хочу сказать это то что я все равно рядом Именно так большими буквами и с грохотом на всю Одессу Так хочется чтобы таких семей как наша было больше чтобы люди не разменивали свои чувства по мелочам чтобы встречались со своими половинками и живя в любви и согласии растили замечательных детей А столько женщин в джинсах а-ля заниженная талия так и хочется подойти и подтянуть Поводом стал очередной асфальтовый скандал И у нас много общих знакомых например теперешний мой начальник Слава Козлов который Борман А в чем дело-то собственно паспорт я сегодня получила с прописочкой питерской все очень так законно и официально Потому что бесящиеся с жиру госслужбы нужно ставить на место Чудесный ребенок и я таки дошутилась но мы ждем второго Обязательно на него посматривайте Я вообще неспособна понять что руководит человеком когда он делает то что он делает я кое-чем другим занимаюсь интриги плету в общем и мне это нравится у меня теперь плечи накачанные так что бойтесь Напыщенные домики стискивают углы зрения и формат ощущений Понедельник выглядел примерно вот так Продолжаем выбирать красивое мыло на подарки нашим близким и друзьям Надеюсь наш случайный встречный добрался до надежного ночлега Солнце ушло Вспомнила только сегодня утром в автобусе Можно нормально и не вовлекаясь переносить вызовы внешнего мира ну на работе там не ладится или погода плохая или вообще как-то жить сложно и бессмысленно А если б ты оба кеда между собой зашнуровала То есть она не будет пронзительно-красиво прямо в точку и как будто про тебя Наподобие слоеного теста Растерянный я медленно слез с подоконника и подгоняемый недовольным стариком устремился вниз по лестнице Сегодня первый раз пошла со всеми дружно играть в пинг-понг за что кстати всем спасибо Предыстория разгребала гардероб ага Одним словом темные и страшные дела творятся в наших вересковых пустошах было ну очень жарко такое ощущение что на вентиляции сэкономили на все Совсем недавно поняла что значит быть собой Пришлось повозиться Благо народу пришло сегодня больше обычного развеселилась Чурикова и Киркоров как ведущие полное извращение Символизирует стремление мужчин все в этой жизни делать ради женщин Они представляете зовут какую-нибудь назовем ее условно Лаурой на балкон Буду получать третье высшее образование Психология Стоило это все очень недорого Остается ловить глюки и слушать музыку в общем ты добрее чем я Когда наша семья переехала из Душанбе зеленого солнечного гостеприимного города в степной пыльный мещанский Оренбург полюбить новый город было трудно Я просто решила пояснить так как добавляю периодически друзей Мясные блюда не дороже 50 Этот телевизионный коктейль смешан таким образом что с утра нам вдалбливают о проблемах со здоровьем потом о проблемах на планете а тут еще и свои запары вдобавок Летела под елку жестоко отдирала бантики и разворачивала цветную бумажку а там открытка следующего содержания Извини что не черная и не шелковая но желаем чтобы нашелся тот кто будет исполнять все твои замысловатые желания Отдыхаем от институтов садиков ну и вообще на самом деле фильм пустой какой-то Лизенок это набор слов я не знаю что это значит Вспомни наконец что ты женщина прикольно конечно но теперь мне надо срочняком на права сдавать чтоб потом не стыдно было Создается такое впечатление что это иллюзия самовнушение Да и какая разница Доктор Кто это окей и я рад был смотреть все 4 сезона однажды по-любому пересмотрю Согласно древней традиции на поле необходимо оставлять несжатую полоску шеАр остаток чтобы бедные могли собирать колосья Результат комплименты одобрительные ого-го Просто остаться наедине с собой задуматься Захожу я значит в пятницу в лифт там стоит сосед снизу и какая-то вообще незнакомая девчонка Вот погода установится хорошая и все доделаю Рекомендуемо для просмотра любителям отечественных военных фильмов равно как и следующий сериал Осталось только определить куда-то старую но дорогую сердцу моей родни тахту и стеллаж Приехала вчера в Самару Я периодически появляюсь на чужих страницах с комментариями Та что сидит резко вскакивает и пихает той что стоит свою сумку в лицо Шкварчать умеет только свиное сало все остальное тупо жарится Ничего не понимаю я в парикмахерском искусстве Слушает все даже то чего слышать не хочет лишь бы ты улыбалась Тогда может и решения были бы более справедливыми по поручению главы Чечни была создана межведомственная комиссия Комплексное рекламное обслуживание Жидкость для мытья окон не берет Понимаю если б счет был 4-5 но такой разгром это звиздец Слезятся глаза и плачет дождь И если там сказано что иноверцев надо убивать он будет убивать когда прикажут Как просмотреть в контакте кто оставил мнение Окружающие считают их ненадежными самовлюбленными и ограниченными И мне сразу подумалось что при таких условиях пролетарии нарочно будут затягивать ремонт дабы получать побольше денег Льет страшно где-то в небесной канцелярии прорвало трубы предупредили будет лить целый день и ухудшение ждать после обеда то есть сейчас Но в слайдшоу на мой взгляд очень быстро сменяются Я надеюсь что с каждым годом участников акции будет становиться больше а фобий у людей все меньше далее хорошо бы все таки консультацию гастроэнтеролога хотя бы чтобы узнать какова секреция желудочного сока и по итогам пропишут диету острое конечно запретят но я на это уже 18 лет кладу с прибором вносить сюда можно что-то окончательно вызревшее законченное на что уже невозможно и не нужно как-то влиять разве что Вася Воронов да Пашка Пескин знаешь его Получилась смесь бытовой городской новеллы и протокола заседания профкома Найдутся те кто сможет написать стихи это возможность родителям контролировать и помогать чадам Я прижалась к нему подхватив под руку такому теплому и желанному практически родному Экспериментируя с различными музыкальными традициями он создает очень привлекательные музыкальные произведения Рассматривает все в черно-белых тонах как правильное или неправильное не видит всю сложность событий Все немного или много великовато а вот у этой кофты буду удлинять манжеты т.к. очень она мне понравилась а максимальный размер был 18-24М у меня правда очень болит сердце вот о чем мама была верующим человеком нам помогала и помогает Богородица однако я не знаю была ли мама крещеная Раскрытие двух основных понятий пути воина безупречности и самоотражения Ремонт компьютеров в районе метро Коломенская Каширская Тульская Варшавская Автозаводская Не отображается видео в контакте Однако я поняла одно кажется я нашла свое полноценное хобби Ну и ладно а зато в века предшествующие человек был столь бесправен что нынешнее состояние дел в родных широтах может показаться райскими кущами Нашел совсем случайно прикольный сайт А на нем паршивая экранная копия что легко определить по качеству и сигаретным прожигам периодически мелькающим в правом верхнем углу А впереди еще очень много разных социальных ролей Капелька надежды через водопровод проникла в ванную повисела на кране и раскачавшись запрыгнула на полотенце Мужчина был с зализанными волосами и в свитере А мы с ней вчера встречались опоздала на работу потому что заговорилась о сочетании майонеза с другими блюдами Самое смешное что мне эта ситуация напоминает от нефиг делать спать не хотелось так пусть теперь и Вам не хочется так эгоистично так нелепо Потому что на него переводов много Но в общем чего гадать главное что настроение поднимает немерено особенно с утра в общем ближе к концу он умудрялся так вспотеть что с него пот ручьями лился прямо на меня разумеется Я люблю тебя и небо только небо и тебя Продажа кондиционеров в кредит Присоединишься к нам Учительница остановилась и спросила Как вы Добравшись до подходящего по всем приметам места наши рыбаки принялись разматывать удочки по всем правилам рыболовной науки Спасибо не за что рада поделиться Эх столько впечатлений осталось за кадром Получить блогосферный гороскоп для Вашего знака Зодиака нам достаточно факта что мы можем это сделать всегда эмоционально мертвая я приезжаю к Тане которая кормит меня чем-то вроде паэльи с морепродуктами и виски с колой не согласна была на девичнике там девчонки изображали стриптизеров было очень смешно Раньше на такие должности мы взращивали кадров с самого детского сада до серьезных вакансий Продажа путевок в Таиланд в Новокузнецке Пейзажи за окном какие-то незнакомые Поздравляю его и всех вас с этим событием по пути к самой лучшей выборгской бане нам встретилась хореограф по имени Лона попросившая рубля три даже уже не помню на что Первый такой вопрос я знаю что сейчас подобного рода инновационные площадки инновационные города делаются не только в России Может пока я вырубаюсь на пару секунд кто-то роняет на меня бетонную плиту Ей в общем-то все равно было на кого учиться лишь бы мама с папой не переживали что у них девочка не пристроена Никогда больших приколов не было Здесь ветер жуткий холод дикий В общем с наступающим Днем учителя Смирительную рубаху напялят и никак иначе Работать не хочется хочу учиться и радоваться жизни Легкие и элегантные они создают прекрасный образ можешь поговорить с военкомом и дав ему денег как-то получить отсрочку Ну и конечно Мак покатился с ним чтобы оценить ситуацию со стороны На самом деле ты удивительно многогранна и умеешь неожиданно предстать в абсолютно необычном образе Охранник с непроницаемым лицом изрекает самое клевое в столовой это по-любому сортир Ясно что сказать ему особенно нечего Отогревшись и заодно пообедав в столовой отправилась я домой Сегодня была с Антоном на выставке на Винзаводе И вдруг хочется написать из темной аллеи на меня вышла удивительная случайная здесь пара жених и невеста ты главное не отчаивайся если все будет двигаться ну очень медленно Hа следующий день все черепахи сбежали Я пережил то что чувствует море колышимое бурей принимая на себя каждую пощечину ветра Не расстаюсь с мечтой поехать на Байкал на поезде Утром по новостям объявили что на сегодняшний день в ЗАГСах рекордное количество свадеб раз в пять-семь больше чем в обычную пятницу Но это не такой уж большой недостаток если учесть что Телец обычно все тщательно обдумывает перед тем как принять ту или иную точку зрения дергаю дверь закрыто пока ключи нашел минут 10 прошло В общем люди которые меня знают и важно звонят мне на мобильник в курсе что раньше 12 связи со мной нет и вообще Выскажу свое мнение но оно предвзятое фотки с тобой почему-то в большинстве не нравятся Кто бы мог взволноваться случайно наткнувшись на дневниковые записи бабушки о том как она грешила вовсе не с отцом зачиная ребенка Я последний раз нечто подобное видела в отдаленных городишках нашей родины в конце девяностых примерно Она ждала меня около университета или политехнического института чтобы первой узнать как я сдал экзамен Но почему же мне снова хочется с ними встретиться Помощник шерифа получивший не так давно повышение в местном полицейском участке Грин Горча сейчас стоя рядом с ней думал лишь о том как они вместе будут строить свою жизнь На работе так вообще все были очень дружны из-за этого Миллиарды живут по правилу трех заветных п попса пепси и пошлость В их реальности вполне возможно никаких сигналов и не было кроме зова сердца Он прекрасен снаружи и великолепен внутри изукрашен резьбой по камню Анекдоты конечно вещь хорошая но становится ни капли не смешно когда вспоминаешь что провалы в экономике страны как нельзя лучше компенсировались с помощью дармовой рабочей силы каторжников Я уверена точно только в одном в мужчине за которого собираюсь замуж Тратишь на это усилия пусть и некоторые потом и играют против тебя и часто ощущается угнетение в душе Кроме того нужно учитывать исторический контекст версия сказки Шарля Перро появляется во время большого голода бывшего в правление Людовика XIV и высвечивает неустойчивость крестьянской жизни и положение детей которыми первыми жертвовали в случае бедствий Хотя его возили в Москву на операцию тогда всех мало-мальски высокопоставленных чиновников возили лечиться в Москву но было уже поздно Тогда мы были в полной уверенности почему-то что это дело рук барсеточников Для строительства одного гнезда требуется около 35 дней ну поздравляю желаю не умереть а если и умереть то достойно Высказали все это дело манагеру так чисто случайно под настроение попал и пригласил он нас на любой сеанс в МДМ Православие больше не преследуется Плавать на каяке в одиночку не рекомендуется Пассажир Екатерина Леонидовна Лепнина 23 года работала официанткой в баре XXXX В начале XVI века замок станет основным оборонным пунктом от московских войск точно так же как до этого он оборонял Беларусь от тевтонского ордена Опять завела ту же пластинку больница врачи жировик хрен знает что за болезнь рак Почему не выкладываются фотографии в контакт Обмыли дома с мамой и сестрой права Было явно видно что наша поездка откладывается что ребята настроены серьезно и зарплату отрабатывают добросовестно Набрал он в легкие воздуха побольше верхнее ля выдал и смотрит вверх испугается шарик или нет Недавно обнаружила замечательное место для прогулок Скучно было ужас Наконец еще более прогрессивная идея это пропагандировать идею что главное в детях чтобы они были здоровыми и красивыми а не на вас похожими ибо что такое похожесть именно на вас Дирижер маэстро Кацман беря в расчет встречу знакомых стояние с ними минут так по десять остановку у метро была на шпильках и устала Она не отрываясь прочла весь рассказ о своем вчерашнем возвращении в город Транспортировка ковшей с чугуном в конвертерный цех Ура я сделала себе выходной правда провела его как-то странно на улице супер просто а я целый день проспала потом уборкой занималась ну в общем как обычно Низкокалорийное питание диета умные начитанные с пластичным мышлением ну в общем золото а не дети обещаю загладить свою вину с меня очень что-нибудь приятное пиши мне а ничего не делать В обзорах равнозначно будет уделяться внимание двум направлениям документальной и арт-фотографии Удивительно видеть от Ховарда столь халтурную работу Сейчас она победила на конкурсе русского языка в Японии и получила бесплатный билет в Россию Посмотри летние фотографии выпей вкусного чаю позови интересных гостей И ни разу ни разу этой зимой не встал на лыжи Только Танюха куда-то запропала Наркотиков не нашли попросили сдать анализ в баночку и обнаружили в анализе следы марихуаны Подкачал только неожиданно тусклый и однообразный свет а для фотографа плохой свет как страшный сон Расчеты и описание местности убедительно показывают что все чиновничьи стенания об исключительности выпавших ливней лишены всякого под собой основания Ну а потом годы полетели и не останавливались пока мои родители не познакомились но как-то все это было подозрительно Проверку первого запуска тоже сделал не самым лучшим образом но тем не менее уже немного работает Подискутировали надо сказать от души После нашумевшего шпионского скандала фамилия Щербаков в СВР приравнена к ругательству Дома я была почти в одиннадцать часов до трех потом писала отчет и дело тут не в кривоте или прямоте рук просто в горах надо побывать Люблю изо всех сил и счастлив что мы на одной волне Буфетчица нервно курила включались красные огни орали сирены а однажды даже приезжали пожарные Сей пост рассчитан на тех кто еще эту информацию не читал конечно же если читали и вам до лампочки можете пролистнуть мимо этот текст не тратьте мое на чтение вашего творчества и ваше время на его написание спасибо не скажу ибо мальчик большой Президент вызывает к себе генералов Рассказик на сопельки потянет самое то для прожженных романтиков Где можно скачать программу вконтакте не в онлайн Серега который сдержанно и цивилизованно пил безалкогольное пиво беспокоит нашу молодую семью А то больно хочется зазырить Новости страницы не отображаются в контакте 27 февраля была захвачена крепость Санто-Доминго и провозглашена независимость Доминиканской Республики Перезванивает мне Дмитрий Николаевич через мгновение и говорит ну ты понимаешь люди солидные сивуху не пьют возьми нормальный коньяк Он вечной жадностью ведом такой у нас народ послезавтра играть по-любому нужно успеть за завтра найти пласт Любимый и ласкаемый ребенок примет мир добрым и миролюбивым к себе Хотелось бы более подробно узнать о Алексее Шинкоренко опыт работы в области фотографии опыт работы в преподавателем желатьльно со ссылкой на портфолио На прошлой неделе впервые делал интервью по Скайпу Получилось совсем незаметно но надежно В один непрекрасный совершенно день Не знаю зачем но все утро разглядывала свадебные платья в общем за день до ДР Елизавета впала в состояние постоянной пены и пара и слезок Нечаянно запомнили одноклассники как их удалить С особенным волнением я следила за судьбой Дэйнерис потому что это уникальный случай в сериальной практике герой который развивается Правильная форма наслаждение от встречи с Дающим Пространство это сверхтекучая жидкость Прогулялся по парку в очередной раз убедился что живу в самом лучшем районе Москвы плюс ко всем удовольствиям что тут были нашел стрелковую базу по тарелочкам летящим пулять из ружей Живи так чтобы ему было интересно Продукты для диабетиков А вот высказаться на более широкую аудиторию наверное все боятся в общем так как я пользователь анлима ЮТК то мне вроде как надо требовать от провайдера качества услуги Учитесь смаковать жизнь небольшими кусочками и находить приятные моменты в окружающем вас мире И погода чудная и вечер вчерашний вспомнить приятно и птички поют именно поют а не орут дурными голосами Прошли почти весь пляж и наконец-то остановились Лекарственные препараты от варикоза Опосля всех философских бесед различных маневров и экивоков выяснилось что посуду должна мыть опять-таки Левостороннее движение отсутствие перекрестков вместо них кольца просто сводит с ума Я думала он был поваром потому что сейчас он готовит Центральная его часть увенчана двумя башенками на одной из которых даже остался флюгер в виде петушка Хочу выразить благодарность незнакомцу читающему мой жж Не знающие границ сами позвонили поздоровались уведомили что посылка на таможне и поинтересовались когда мне будет удобно ее получить И взор мой весел и стопы мои легки Если до Нового Года не выпадет снег то в ближайшие два года человечество вымрет из-за необратимого изменения климата Можете дарить книги только помните я многое читал я его люблю а он здесь лазает Проблема сама глубже в неудовлетворенности жизнью пустота депрессии В детстве на Украине мы говядину практически не кушали Российская компания приобрела авиабилет у иностранной компании Излишняя трепетность к деталям вынуждает нас видеть зазор на завитке синего цвета упуская при этом огромную мозаику пестреющую всеми цветами спектра Напротив сидела пара веселая Угораздило ехать туда ночью зимой Проблемы проблемы а потом случается настоящая проблема только уже со здоровьем и все остальные как-то сами собой отпадают Зарубежные представительства Госкорпорации действуют в 50 странах мира и играют основную роль во внешнеэкономической деятельности Ростеха кстати да говорят что самое опасное падать не на крутом склоне а на ровном месте А еще первое время контента может быть достаточно много Есть кротон декабрист и еще какой-то лопух который живет и процветает у нас уже Бог знает сколько лет Намазываем уже остывший корж кремом фромаж блан или творог риккота протертые сквозь мелкое сито даже густая сметана подойдет совсем немного только чтобы ягоды потом прилипли здесь я прибежала на крики и пронзительный визг а Яся всего лишь радовалась тому что Варя спит под одеялом и она действительно спала несмотря на бурные эмоции вокруг и не совсем нежные обнимания Ну и естественно большая часть пути прошла по встречке и полоса была сплошная Ей было очень грустно и одиноко От моей дочери которая приезжала к моим родителям на пару недель в поселок Коридоры казались огромными было довольно пусто мы бродили по лестницам этажам Посылая шутки к черту я от всей души горячо поздравляю Вас Одним словом нудный донельзя несколько ранее есть пост об этом и даже фотки сажусь обратно за комп и начинаю что-то себе рыться в интернете Я позвала официанта ну хз наверное надо было убрать волос и все но я позвала официанта и показала ему свою вилку а он сказал что ничего не знает у поваров светлых и длинных волос нет Не прошло и полугода как они заметили что у статуэтки выпуклое основание Не стыдитесь мечтать загадывайте желания и бережно храните семейные традиции Вот только мерилами этой эффективности вы назначили сами себя Разве это не функция премьера Эксперты пока не установили причины катастрофы не всегда хочется вспоминать людей Методологическое брюзжание в ответ ни Бурятия ни Европа нациями не являются соответственно национальных кухонь не имеют Но в связи с волнениями я вижу активизацию сил националистических и хотя острие атаки направлено не на нас я клянусь Богом что до нас дело дойдет обязательно историю не учат только идиоты которых у нас хвала небесам Хотела посчитать сколько Я за сегодня выпила воды У Зайчика кстати сегодня опухли два пальца так как девчонки приземлились на нее а целоваться не перестали На выходных какие-то неудачники ограбили квартиру В четверг 24 октября на заводе прошло выездное заседание комитета по экономической политике и собственности краевого Законодательного собрания в рамках которого депутатам рассказали о прошлом завода его настоящем и будущих проектах Всем руководит золотозубая родня надеюсь мамуля меня простит за мое вранье и обман не позволяй всяким идиотищам портить себе настрой ведь их так много а хорошего настроения всегда нехватка Спать аккурат в семь захотелось Блин А мальчик-то симпатичный смуглый черноглазый Определенно определенно Новый Год нужно праздновать с друзьями Ленится ни в коем случае нельзя Погуляем летом обязательно Послезавтра классная вечерняя тусовка на набережной Открыла утром окна и оставила их открытыми на целый день Обещанные новости В общем иностранцы 3 курс дети вообще в массе своей элитные как в социальном так и в интеллектуальном плане Четвертая вообще меня не возрадовала В любом случае я не думаю что ты имел в виду именно это может перефразируешь Да только прибежала невесть откуда из подпола понятно то есть из подземного царства шустрая мышка Остановились на совместном походе в театр типа это моя инициатива Вот сейчас с родителями собираемся к нему в гости возник вопрос что ему подарить Месяц не сидела за рулем наконец еду Потому что невозможно добровольно отдать желание жить Некоторые из нас могут со временем начать делиться сокровенным с девочками-подругами но первый поцелуй Ира скинь номер аськи свой пожалуйста да и смс написать можно Это было настолько душевно что порой мне кажется жаль что уже так с ним не поговорить А дальше в гости к батьке потом на незалежную и может еще в Молдавию наверное надпись была сделана с любовью и вся любовь ушла только в слово Очередная дурацкая ЖЖ-игра Рассчитаны на разный уровень подготовки и разный возраст Только из-за него стоит сходить развела в воде гадость редкая но ему и она понравилась смолотил больше чем нужно для первого раза В 1635 году маньчжурский хан обнаружил что его солдаты продают собственное оружие в обмен на табак Короче красотка та еще и это все счастье держалось и не спадало с моего лица в течение часов так двенадцати Как известно каждому Одесса невероятно крута Этот щенок йорка см ниже оказался на станции отлова животных в Малаге и был бы усыплен если бы финны его оттуда не вызволили Помилуйте боги уставших кого-то любить Разочарование я отмел сразу разрушить все надежды последнего полугода это слишком Недавно стала снова ловить от Ксюхи запах молока Во-вторых попытки народных демонстраций которые распространились не только географически но и затронули разные социально-экономические классы Этот фильм лучшее лекарство от подобных разговоров короче если кто-то видел мое потерявшееся чудо шлите его ко мне Пришла в офис в чуть более легком варианте чем традиционная моя одежда Ранее сообщалось что Душанбе настаивает на заключении договора сроком на 10 20 или 29 лет но никак не на 49 Предыдущий день первое декабря сего года был для меня полон событий и смены эмоций Опсомания привязанность к определенному блюду Много позже когда я его увидел я решил что из него можно сделать хорошую детскую книгу Папилломавирусы вызывают дисплазии шейки матки что может стать причиной рака они приводят к росту кондилом половых органов кондилом мочевых путей любое движение это прогресс Потому как то что ты перечислил здесь это все правда естественно но это все хрень по сравнению с семейной жизнью Приятного аппетита За трактором шагом марш прокаркал комендант и резво вскочил на подножку машины Хотя хуже чем на физике недели две-три назад вряд ли будет Я думала кстати что даже у маленьких утят перья не волосатые Если ваша работа связана с общением около вас всегда должны быть 3 цветка ириса в высокой узкой вазе Продавцы просто адски выводят из себя Сегодня закончил уборку всех записей в личное Да и вообще мы помрем и никаких предыдущих-последующих жизней не будет я и так в платье похожа на праздничный тортик теперь я только и могу что улыбаться мстительно тетечке с пирожками Я вот как раз про это хотела спросить отдельным постом но раз уж разговор зашел Патологически не умеют принимать решения Миллионов не дарил но жить помогал пока на ноги не встала Пожелайте мне удачи пожалуйста Познакомились со всеми барменами на нашей улочке Представьте Excel если бы каждую функцию пришлось скачивать и устанавливать отдельно Оба с задумчивым видом курят трубки и ведут беседу Лань прекрасное и пугливое создание грациозное в своих плавных и осторожных движениях Мы слушали ее за кулисами какой-то площадки При варикозе вен нижних конечностей появились синяки я не знаю почему может это перед концом света но Вселенная в этом году решила выдать мне компенсацию за все годы проведенные в родном городе в виде путешествий к центрам моей Родины Москву летом и Питер осенью Вот что за чудо изображено на обложке книги Ну как же без дочери Попадались также привлекательные на мой взгляд закусочные Съездил в центр купил билет на Дельфина касса в переходе на углу со стороны больницы Разделенный на две части рекой представляет из себя старую и новую часть Немного думаю о том банальном что если человек твой он непременно вернется так или иначе рано или поздно да и дел поважнее у меня сейчас хватает а если серьезно настраивайся что все будет хорошо Только он помогает и решает все вопросы Вообще мамалыга имеет более древние корни в докукурузные времена по той же технологии варили пшенку Я одно время засыпала под Мастера и Маргариту Это пособие помогает развивать речь и учиться пересказывать тексты как опираясь на дополнительные вопросы так и только на свою память ты начинаешь думать а что неплохо можно и тут жить Смущение одолевает меня конечно хочется назвать их имена Корпорация IBM поделилась информацией о выпущенном процике z196 который выступает в роли чипа эксплуатируемого в стандартном режиме на мегапиковой частоте ну да ничего пять дней и снова пятница из-за реального запарного периода вчера был первый вечер когда села за комп с момента нашего прошлого сеанса Полный текст статьи об этом исследовании можно найти на сайте журнала Nature Напроситесь на дачу к друзьям оказывается в книгомире сегодня есть купил и уже главы три прочитал Как установить веб-камеру чтобы общаться через одноклассники Подойдите ко мне Поселения представляют опасность только для людей которые говорят Мне плевать что делают арабы а вот от евреев я требую исключительной порядочности Террористический акт в Лондоне Я рисовал очередной чертеж который надо было еще недели две назад сдать естественно это не занимает весь день но у таких лентяев как я это занимает недели К тому же многие люди смотрят аниме сутками и читать сутками субтитры не очень хочу и животная суть не позволяет им не занять место старшего Скачать программу для бесплатных подарков в контакте Профессиональные средства для отбеливания зубов Какая она была эта уходящая осень эта грустная незнакомка в длинном плаще и берете Стартапу нужны основатели но не очень-то нужны сотрудники Он отметил что летом ему это еще не удалось толком сделать из-за череды кризисных ситуаций передает телеканал Sky News Мачо все местного производства то есть к отдыхающим отношения не имеют в принципе ничего менять не буду Соответственно дома у меня книги везде и как следствие катастрофически не хватает места В Ярославской области повышается стоимость проезда в пригородных поездах И неудобно уже другой кофе брать не хочется их путать а то ведь в центре города сколько народу к ним заходит поди всех по имени запомни и кто что пьет При достижении загустения соуса добавляем галушки Часто мы сталкиваемся с каскадом свалившихся на нас неудач и решаем что так будет продолжаться и дальше Причисляя себя к какому-нибудь направлению увы приходится расплачиваться за его грехи С ним хочется проводить время дома наедине забывая все заботы и неприятности Счастье привалило короче По сути интереса никакого моему многотысячному другу не представляет однако некоторые один-два человека проникнутся слезами Романтические комедии мелодрамы это нам вообще не надо Настоящая теплая зеленая солнечная и наконец-то можно будет на себя одеть то что хочется а не то что надо Журналисты всегда все нагло беспардонно переврут вспомнил что с прошлого года остались некоторые дела которые можно было откладывать и далее Еще Ясна научилась обижаться когда что-то не по ней и выражает это сразу очень громким криком начинающимся беззвучным сморщиванием и багровением лица Меня вон завтра в суд под расписку сегодня полночи спал с включенной водой затопил косяк весь но сегодня так получилось не потому что я проспала ваши одноклассники и однокурсники рядом с вами Святослав великий князь киевский сын Игоря и Ольги в значительной мере правившей при сыне государством до ее смерти в 969 году поскольку князь все время проводил в военных походах в общем было задание составить краткий конспект истории становления спецпсихологии у нас и за рубежом Понятно что во всех странах мира они похожи но вдруг кто не знает что тут у нас он тоже есть и очень неплохой Она попросила об этом лично меня и сказала что ничего из этого ей больше не нужно и что забрать с собой ничего не сможет нет проблем просто вопрос такой в смысле для тех кто его блога не знает Я до того вблизи не видела мне это было неожиданно Могрен уже забит отдыхающими поэтому базируемся ближе к камням я сажусь дописывать отчет об отдыхе Гоша купается потом решает дойти до утеса с которого отчаянная молодежь прыгает в море Не могу попасть на страничку в контакте что-то с системой подскажите да и вообще усы иметь смелый шаг один букет стоит рядом с кроватью вся комната наполнена цветочным ароматом Здесь часто проводятся различные выставки посвященные современному искусству фотографии и музыкальной тематике Сходили на новый кошмар на улице вязов Когда австpалийские готы добpались наконец до Италии они устали от гpабежа и нуждались в отдыхе Постарайтесь встать сразу же после того как прозвонил будильник раскройте окна сделайте легкую зарядку Произошли поистине революционные изменения в личной жизни и подрос скилл рабочий Поручение же Федотову взять ситуацию с музеем под контроль смотрится странно т.к. нет никаких сомнений что он и без того опекает данный проект с самого начала Радикальные инновационные проекты предлагают разрубить этот узел переориентацией школы на своего заказчика Предположительная цена клиентской базы если она ведется что бывает крайне редко 240 000 рублей Мужик был в трансе и тихо повторял меня в городе не было квартира закрыта была А посмотреть ой как хочется Плюс хаус мьюзик не мое еще хореограф сегодня меня взбесила шажочки прыжочки еще разочек тьфу Те кто был сегодня в универе расскажите что там происходит С людьми уже давно развела жизнь или ты даже и не знаешь их совсем а тут почти вся их жизнь словно на ладони будто интереснейший роман читаешь Перед ними бабулька с вот таким пакетом разных конфет кстати из 4-х фоток что ты сделала 1-я отрезан один кусочек пальца ноги 2-я отрезаны ноги и кусочек макушки головы 3-я отрезаны первые фаланги пальцев левой руки 4-я ничего не отрезано но брюки смотрятся плохо и освещение не с той стороны Удалить страницу в одноклассниках Отпустили аж в 3 часа с информатики С плато был вынужден вернуться на дорогу из-за сильного обстрела из танковых и орудий гаубичного калибра В такие дни ничегонехотения лучше всего идти гулять голова проветрится и с утра с удвоенной силой захочется работать Вчера на искусствоведческой сборке услышала два замечательных выражения от ученых дам и сердце мое уязвлено стало он очень недобрый человек а я когда стрелял знал что это он но подумал что далеко и никто не может заподозрить меня в том что я его убил специально Отбеливание зубов от курения Однако любви куда более серьезной чем у Анакреонта скорее похожей на лирику Сапфо То ли настроение у нее было не то обычно то ли что-то поменялось в общем общалась последние 2 раза она со мной очень мило в среду вот пойду выписываться Обожаю кривляться перед фотообъективом в компании приятных девушек Полку мировых религий основанных на передернутых умозаключениях отдельных индивидуумов прибыло бывают такие моменты когда хочется сделать что-то сумасшедшее И что бы было если его не нашли а он с нами поехал Кому мы доверяем тайны Сказали что плохо но не сказали почему Скоро приедет мое солнце и будем смотреть фильм Самодостаточность как правило ассоциируется с субъектностью разве ты не хочешь быть гламурненьким Пожалуй пора готовить ужин и идти на прогулку Современной педагогической теории эта омонимия кажется периферийной и случайной Что продается в таиландских аптеках То ли металла не хватило то ли скульптор что-то задумал но никому не сказал Молдавская группа Zdob Si Zdub собирается летом или осенью выпустить новый англоязычный альбом если бы было за все время а не за последний год то было бы больше ведь АEP у меня уже 4.29 кстати это был один из самых удачных гигов на мой взгляд А может оно и к счастью А мне от этих супных дел борща захотелось сил нет Транспортная система будет серьезно парализована на один день на 18.02.2012 c 4 утра до 7 вечера Продолжение следует ну думаю что случилось что-то странное И маски для волос у них есть достойные Сегодня вечер кончился в квартире около камергерки в гостях у тети Лены которую мне очень хочется назвать художницей Приближается облако гнева не давайте ему приблизиться но еще на далеком расстоянии разворачиваете его и направляйте в другую сторону Помню момент я сидела в прогулочной коляске значит года 2,5 мне было к нам подошла бабулина приятельница Анна Васильевна нависла надо мной и принялась нечеловеческим голосом вопрошать ну как обычно Ой ты ж кто ж такой маленький тут у нас сидит Ненавижу безысходность Нельзя верить и прощать всего лишь от одного красивого жеста не хочу учить тебя злости и неверию но все же Почти с самого рождения Яси меня сопровождает Агата Кристи обычно я скачиваю все собрание сочинений понравившегося автора а эта тетя была ну очень плодовита на свои рассказы и романы и вот теперь они подходят к концу и меня ожидает Станислав Лем и цитология с гистологией то ли депрессняк то ли от погоды в общем настроение совсем паршивое Любой человек может сам того не ожидая стать преступником или жертвой преступления в любую минуту и в любом месте Пришла сегодня утром на свои танцульки Ну все сегодня будут вещать про природные катаклизмы свои отпуска хотя об этом и нельзя писать и прочий позитив Террористы пытаются напугать нас А Амстердам потому что тоже мокрый по идее мне должно быть очень стыдно Обтереть грудь живот и для ускорения обмахать потом спину Претендент депонирует на определенном счете сумму достаточную на покрытие затрат государства на его участие в выборах а что случилось-то Если очень повезет ну 65 С сегодняшнего дня точно могу вам сказать что метро это священное место для тех кто замерз Проклятые буржуи будут морить меня незнанием результатов еще недели три минимум ближе Кембриджа не нашлось никого согласного все это проверять конечно же Объяснил по телефону куда надо кликать мышкой чтобы найти его несчастный файл скачанный по умолчанию во временное хранилище К северу же от Пафоса мы посетили грот богини Афродиты где купаясь в знойный полдень она однажды познакомилась с отдыхавшем на соседнем пляже Адонисом Опять же змей он и есть змей и я весь день куда-нибудь да ходила то с Ясей на развивашки то в универ чтобы оценку по философии в ведомость проставить короче очень много по улице пешком Создавалась полная иллюзия лета и очень тянуло искупаться Фотография которая не занимала бы тут места если бы не Дима который умудрился сфоткать обычный ряд картин так необычно Ловите ниже идет и в общем обещанная долгожданная статья получайте удовольствие Когда краска высохла карандашом наметили имя Ну в общем засыпала я эту геркулесовую смесь на яблочную Повел свое чудо сегодня погулять на юго-запад прокатились на подъемнике потом долго смотрели на город с воробьевых в общем было здорово С которым я опосля цигуна занимался шагистикой Первые личные деньги появились в начальных классах школы с завтраков Первые деньги я заработал в 12 лет землекопом в археологических экспедициях и спасибо родителям за то что они мне сказали оставь их себе Монастырь был заложен в 1183 году пфальцграфом Рудольфом фон Тюбинген А написать я хотела вот что на районе сегодня подошла ко мне женщина то ли Азербайджан то ли узбечка Можете мне не поверить сейчас но потом поймете И еще желаю переводить во много раз лучше чем безымянные господа о которых я так часто упоминаю в своих постах Приятно когда их две и есть с кем разделить этот восхитительный напиток Почему-то я ненавижу серую ветку метро там жуть как некрасиво и вообще какие-то чегеря кошмарные какой-то производственный район некрасиво уродские дома Поскользнулся юзер и грохнул пентиум об асфальт тот на куски и развалился В натуре по-настоящему рвет на кусочки из-за того насколько мегапозитивные новости публикуют в интернете на сегодняшний день Кстати хочу сказать об профессиональном хирурге Тигране Алексаняне Так начинать тренироваться надо во дворе а у нас вокруг одни девчонки рождаются Так что я решила не просить всех сесть а отнестись к укладыванию как к ресурсу Так что все хорошо и хочется в макдональдс или просто съесть какой-нибудь гадости Они слегка кисловаты на вкус но это их не портит есть можно если конечно не страшно соседство с химическими складами нам было не страшно и мы ели Неделя отдыха прошла незаметно собственно как всегда Вчера имела неосторожность очень сильно порезаться срезала овощерезкой 0.5 ногтя и подушечку пальца под ним То есть размещение в пространстве таково что преподаватель ниже Я чувствую своих ушей запах гнилой Надо чаще встречаться пока не перестали улыбаться Игорь Зеленский отметил что партию Кармен на премьерном показе будет танцевать одна из ведущих артисток труппы Анна Жарова Посмотрела Влияние Бурлака Что-нибудь строительно-магазинное не знаю в общем Ну то есть вот он по лестнице идет как она его последний раз видела и идет мертвец Поклонники ее творчества обратите внимание первые три и самый нижний очень-очень Видать придется уже сегодня написать про этот чертов этикет Онтогенетически подобное расхождение между благими намерениями психозащиты и ее высокой себестоимостью для всякого жизненного пути не только сохраняется но и усиливается Затем мы своим ходом дошли до здания ГИБДД долго ждали внизу потом ждали наверху и наконец нас отвели фотографироваться на права Растолкала детей и сфоткалась Но и грустить из-за этого вряд ли стоит В Европе с 1618 по 1648 год бушевала ужасающая война между католиками и протестантами охватившая практически весь континент на сайте администрации есть какая-то бумажка еще за 2008 год Ничто не сравнится с разворачиванием ста пятидесяти подарочков подряд хоть бейте меня камнями Еще не догадались в чем засада Купец решил что она родственница его любимицы и весьма огорчился считая себя виновником ее смерти А у нас своя локальная зона нестабильности район Сенной площади и Апраксина двора Ягоды винограда вышиваются специальным швом несколькими оттенками в том числе и смешанными Выдав дочь замуж мать автоматически забывала бы о ее существовании Не буду говорить что нечего написать что ничего не пишется Приметы прыщи на бороде кстати завтра в вудсток едем со съемочной группой продолжение съемок для мегаблокбастера Зарегистрироваться в контакте Напрашиваются всякие нездоровые мысли относительно того что сдают в этот ломбард Людей уйма штормило во все стороны собственно только так я и передвигалась по залу Еще летом я купила очень ну очень красивые срезы агатов Продолжение следует Тащусь от ее скромности Может выберешь из моих дайревых его не было с 1993 года В общем остается пережить английский в пятницу Спасибо всем френдам которые не отфрендили Любой жест который не был перечислен в настоящих правилах и таким образом не может быть воспринят в качестве камня ножниц или бумаги считается недопустимым и соответственно запрещен Особо провидящие могут даже составы команд угадать в общем пишите все что вам когда-либо снилось являлось и т.д. по поводу этого матча я никогда не вела дневник но нужно худеть и хочу попробовать и вообще у меня подход как у Вас в точности но без дневника поэтому и заинтересовалась Бывший оливетанский монастырь отдан Перуджинскому университету одному из старейших в Европе 1307 Я теперь понимаю почему у всех этих мужиков руководителей есть девочка личный ассистент Маршрут пролегал вот так в чем дело вообще не понимаю Движок-программу нужно поддерживать развивать интегрировать с новыми трендами Сети и основными браузерами кто ж этот человечек вызывающий в тебе ту миленькую девчушку А в те времена на это оставалось мало времени На фоне серого неба это было завораживающим Злостный подонок в костюме дьявола измывается над людишками Неопределенное московское лето растянулось на такое же неопределенное южное Будьте способным на поступки сюрпризы Не понравилось повальное пьянство некоторые допивались до того что с трудом держали карты Продолжение следует Начался день с того что я все-таки встала в семь часов утра несмотря на то что легла в начале третьего Очень талантливый московский музыкант перкуссионист диджей и вокалист Не могу зайти на одноклассники другим логином А естественная смерть от старости равнозначна пешему способу передвижения Мы не опаздываем нас задерживают важные дела Насчет фильма посмотрел первые тридцать восемь минут а потом он почему-то завис в общем фильм так себе правда сегодня я его попытаюсь посмотреть полностью Организм пытается ликвидировать эту клетку Кстати если глава района потратится на пожарные вопросы это нецелевое использование средств преступление А в общем-то мужчину спросили Ну в общем вот такой вот футбол моими глазами К моей великой досаде на второй половине пары несмотря на проектор и отлично видные на стенке кадры я засыпала Отрисовала заново своего дндшного игрового персонажа и теперь не могу налюбоваться никогда не мог подумать что и на таком огромном расстоянии кто-то умудрится так смачно раздразнить аппетит Они про социализм знают все лучше тебя Потом сглотни ведь белки все-таки Я многого не могу и не берусь Решила с пользой провести время дома обдумать все что было в этом году и разобраться в себе Ребенок естественно тоже не в курсе что здоровенная собачка опасна Получается что Пресня оторвана от остальной части кольца с двух сторон Аленка у меня такая молодец Противоречие в том что ЖЖ изначально подразумевал предельную честность и где-то даже эксгибиционизм но когда дело касается конкретных людей начинаются вопросы В каких случаях необходимо поддерживать голову малышу Поэтому ее танец был во многом основан на свободной импровизации Фотоаппарат хотелось выкинуть потому что просто НЕВОЗМОЖНО все это вместить в карточку ну никак ни при каких условиях Накатило что-то повспоминать прошлое Наверху было написано мы больше не поддерживаем ту версию Пожалеть его проявить сочувствие нужно успокоить человека А сегодня Чернова позвонимши спустя миллион лет очень весело обсудили мою болезнь и вообще текущие происшествия Творите добро Я ведь когда-то и не думала о машине а теперь уверенно хочу сначала сдать на права Завтра с утреца еду в офис разруливать рабочие вопросы в связи с возрастающей в середине месяца конкуренцией из-за начинающихся специальных акций в частности в сегменте гидромассажа Впрочем официальные портреты не всегда высокого качества увы востребованы и другими менее именитыми особами Школа была частная и я был единственным выпускником своего года и класса это наложило отпечаток на моей личности Мы напрыгались наорались напились и вообще отлично провели время Предлагаю для избежания эффекта поломанного телефона зайти самостоятельно на сайт и изучить все платформы Я заметила за собой то что уже начинаю в красках представлять нашу вполне возможно скорую встречу Проржавшись мы рассказали ему всю историю Позже по произведению поставили телевизионный сериал Хоть водитель периодически открывал окно и было жутко холодно все же я мечтала о том чтобы пробка подольше не рассасывалась и я могла еще подрыхнуть Мне в штабе посоветовали расписываться на местах стыков переносных урн при опечатывании правда не нашел норму закона которая явно разрешает расписываться и делать фотографии этих урн или короткие видео я иду на работу потому что надо кому-то а не потому что мне интересно Неорганизованная преступность собственных эмоций Путь второй был неуниверсален школа когда-то закупила ноуты с 7 стартер с лицензиями ОЕМ которая была снесена но сами-то буковки кодов остались Как можно посмотреть кто в контакте заходил мне на страницу Организм не выдержал откровенных издевательств Первый мультик очень смешной здорово нарисован и озвучен а второй пластилиновый по типу Вороны в общем когда-то Петр I гениальный и безумный решил для блага России построить именно тут город Сможем ли мы реально глядя на вещи при нынешней демографической экономической политической ситуации удержать огромные слабозаселенные территории по соседству с полуторамиллиардным наращивающим промышленную и военную мощь Китаем высокая вибрация от которой голова становится ватной Ученики предлагали свои ответы но ни один из них не устроил Учителя В роли маньяка Роберт Дауни-младший ему идет вроде уже уложил в голове все по полочкам а тебе вдруг как покажут что все иллюзия и будет совсем по-другому Наверно придет время когда придется снова скрестить нам мечи Раньше я всегда чувствовала чужие стены что это его дом не мой а я в метро без книжек не умею Сегодня при попытке перегонки Жанны в формат более подходящий для прослушивания на компе и в машине в приводе раздался взрыв Следующий шаг как ни удивительно 2048 Ответственность за этот теракт власти США возложили на террористическую группировку Осамы бин Ладена Аль-Каеда хорошо что там не было обрыва вниз а то бы слетел точно Представители семей встретились поздно ночью и заверили друг друга что никаких претензий друг к другу не имеют что весь конфликт молодых офицеров исчерпан между прочим у них есть вакансия могу побаловать себя сладким но потом от него мне же хуже организм отвык от таких доз сахара Рязань и Сочи не в счет это были командировки в общем есть в хорошем качестве 3 и 6 сезон Папилломовирус именно тем и опасен что может быть онкогенного типа Чувствую я себя гораздо лучше если кому интересно Смотрела давно и плевалась страшно Превосходный символ сенсорной и психической ценности естественного тела ковер-самолет И я там немножко собираюсь замуж За это время подготовила журнал к югу сейчас буду любоваться может голова успокоится Разве горю такому помогут рыданья живых Я иногда думаю откуда почему и для чего есть люди которые маньяки Я думаю что молодой человек должен жить в реальности которая ничего так а девушка где жуткий диктатор отгрызает головы младенцам Вечером не было инета посидел с мобилки А что происходит в твоей голове Вообще кхмерская цивилизация в свое время была очень крупной и влиятельной контролировавшей огромные территории в юго-восточной азии открыл там дыма полно начали тушить вызвали пожарных на работе мне сегодня учинили адский квест в результате очень уж сильно захотелось убивать Миллиардер Адольф Меркле из-за мирового финансового кризиса потерял сотни миллионов долларов А мой периодически ночью начинает меня будить ласками потом одел старые AKG K-100 уже что-то чувствуется Все полицейские выступают в поддержку права на организацию общественного собрания Сегодня Геныч полдня ползал на карачках под своим столом пытаясь подключить колонки Предлагаю следующее как всегда почти бесплатное решение проблемы Я конечно пыталась реабилитироваться оправдывалась что я вовсе не про вылет а про этаж разговор вела Страшно видеть как стареют самые близкие люди Отчетность которая официально публикуется в СМИ делается совсем не для того чтобы в ней было легко разобраться Там же был построен первый в стране буер Метель что положило начало к развитию буерного спорта в России Несколько солидных частников Ничего не поняла но все очень умно и круто вот такая тарабарщина мне Вова сильно по нраву вообще фонетику я затейливую люблю ужасно Почувствовала себя моральным уродом но тем не менее все выкинула Не лезьте в его кошелек не считайте его доходы и не пытайтесь управлять расходами Режиссеру удалось создать такую атмосферу что зритель полностью включается в происходящее на экране бредятина а 3 рубля с тебя про что взяли или расплата за то что вы ее когда-то курили Вальс в 5 па внимание будет под другую музыку с переходом местами на обычный вальс подробная схема будет выложена На Родине естественно имя предателя не вспоминалось Начинался он с того что меня в начале двенадцатого разбудила мама чтобы сказать противным как мне спросонья показалось голосом что мне необходимо срочно встать и пойти завтракать Что случается когда из наших уст звучит то или иное слово Я согласна с таким положением вещей но А утром шла в универ мимо главного всегда закрытого входа и буквально в метре впереди меня с козырька свалилась пустая скомканная банка из-под колы кажется Удовольствие от проведенного времени и классные фотографии гарантируются А еще после некоторых приблизительных подсчетов я поняла что мне нужно ограбить банк ихние депутаты горсобрания дабы покрыть долг от банкротства организации бывшей когда-то на месте сочитеплоэнгерго приняли в 2008 список нормативов потребления всего и вся в том числе тепловой энергии Процветание аббатства продолжалось до войны Кипра с генуэзцами а я была сегодня в зоопарке Будет новый человек счастливый и гордый Они как их не назови терпеливо ждали своего часа Министерство культуры Франции официально признало что фрески могли быть вывезены из Египта незаконно Но есть и более интересные фильмы авторские и еропейские которых тут просто нет И именно это отличает классический средний класс бюргерство от тех для кого все эти вещи непринципиальны наемников для которых главным является количество благ и уровень потребления в обмен на которые они готовы променять свою свободу и самостоятельность открыть форточку нельзя из-за простуды Придется подходить Получать любовь в том форме которую считаю приемлемой для себя на данный момент Как обидно порой знать очевидную вещь в которой невозможно убедить того кто не видит ее в упор За это время доходим до моего дома Мне на глаза снова попалась та самая фэнтезийная история Дети растут очень быстро на прошлой фотке она совсем младенчиком была Ненавижу всех визжащих девок с умилением тискающих очередную книжку с прыщавым очкариком Постараюсь не очень поздно лечь У меня уже появились в этом направлении кое-какие идеи но конечно нужно ждать лета вот сижу и обзваниваю все автошколы ищу приемлемый вариант да и вообще надо пока полгода не ввели Это должно сказать вам о том что я сейчас состою процентов на тридцать из неуправляемой сентиментальности и на семьдесят из нервов Только что позвонил товарищ с которым я о чем-то договорился А еще сегодня меня загребла служба безопасности за то что я пронесла на фабрику электрокнигу Как Ванька-Встанька была то прилягу то присяду Как гаркнет разгоряченным подгулявшим молодцем Пива Ну очень кушать хочется Как только я просыпаюсь я отбрасываю чары сна ложную тождественность и понимаю кто я на самом деле и понимаю что весь мир моего сновидения это лишь моя собственная фантазия Усиленно ударить по двум направлениям что примечательно перед нами выступали мои знакомые с репбазы которые оказались крайне близкими друзьями нежданным в общем море позитива и рок-н-ролла А впрочем она-то сама заглавная героиня сказки кто такая Одна региональная организация ОДКБ работает на вовлечение в зону своей ответственности другой региональной организации Может если все сказали то сработает это в общем жуткий курс об особенностях развития психики детей и взрослых в условиях стесненного или нарушенного функционирования организма Кстати тема про правило буравчика есть в катином ЖЖ с этой позиции все же мой любимый фильм про любовь был более реалистичной картиной Староста неосторожно что-то сказал естественно неспроста Проанализировали мои энергетические затраты и правильно их распределили Кто-то там наверху услышал мои молитвы ругань и угрозы и сделал мне ливень ты трать себя все равно не зря а так впустую проживешь может и веселей но пустота будет Викуся моя маленькая хихикающая бусинка ее все время хочется обнимать и заботиться Собранное и натянутое полотнище зажмите коленями Оказалось столько же просто нужно было добавить окно в список пожеланий при заказе в общем вот две лучших фотки из всего того что получилось с завидной периодичностью перемещаясь по толковым спортивным internet ресурсам я постоянно налетаю на гору таких же тем но все же далеко не многие считаю возможным выложить туточки на страничке боже упаси если хоть кто-нибудь из вас самаритяне потратит хоть шиллинг на эту пластинку знать бы еще что это такое Но все же жизнь периодично сталкивала нас лбами и довольно-таки болезненно В первый раз вообще-то узнал про такую вот штуковину Фантастические ощущения пироги были с яйцами рисом и луком и с капустой ничего вкуснее горячих пирожков на Пасху не помню из раннего детства За последние годы у нас сложились очень сложные отношения периодами отношений вообще не было Состояние невменяемое руки не слушаются ноги тоже не совсем адекватно реагируют но голова страстно захотела написать об этом Ответить на него можно вполне определенно критерием уничтожения целостного процесса является прекращение существенного процесса И это очень сложно особенно когда надо слушаться человека который сам только учится и жутко не уверен в себе Еще варианты Партенит Симеиз или что-то в ту степь В первую очередь внутри произведения где неоднократно повторяется базовый кубический модуль в следующий раз обещаю в шлеме Вот с параллельной парковкой у меня и были проблемы это были просто мысли про одну личность Родители пришли к православию года три назад а сестра пару лет как крестилась Но про воду которая камень точит это ее главное оружие Так что ждем новых фотографий и более точных данных Ярким примером здесь может служить отечественная история прошлого столетия Я одиночка не люблю шумные сборища но порой мне так одиноко без дружеской поддержки А еще в последнее время периодически всплывают люди с которыми я уже очень давно не общаюсь Открытки бесплатно в одноклассниках очень долго ехали на нем Люблю тебя читающего эту запись просто потому что любви переполняющей меня хватит на всех мне не жалко Если разбирать по пунктам возможно и да кто ж спорит Друзья мои друзья что бы я без вашей с готовностью протянутой руки делала У меня парикмахер в отпуск ушел Следующий раз я в штате Нью-Мексико я хочу встретиться с навахо индейцами сегодня впервые в жизни то есть впервые за 34 года жизни в моем доме я сам Получилось 4 по 5 и пятый подход вообще черт-те что Спасибо вам дорогие мои и отдельное нежное рано уезжающим в Москву вот уж вранье насчет некрасивой тебя вот уж вранье Хорошо что это были разные недели В 1863 году с согласия семьи Раецких костел был освящен как православный храм вот мне кажется что если б я женилась на тихой домашней девушке то моя жизнь расцвела бы новыми красками Ему предложили деньги уход и всяческую заботу но он не соблазнился этим Ездил тут провожать и встречать любимую Люблю дождь когда тепло Опять-таки рядом с вильнюсским универом А про Мисфитс я плохо обосновал естественно это панк но его также можно считать доготикой они нереально повлияли на эту культуру хоть сами ее частью не являлись А мышцы все-таки болят уже чувствую Наконец-то мы скооперировались собрались и на этих выходных сходили в музыкальный магазин за флейтой Мане на 24-летие педагог обладает огромным запасом хлестких выражений любит черный юмор и естественно сливает это во время урока Многое в этом спектакле удалось молодой тогда еще актрисе Через иллюминатор была видна Родина-мать Вот и сейчас спустили его на землю и кот пополз на полусогнутых на исследования Поскорее бы эта мода с интернетом прошла Мне еще тридцати нет а я уже ночью не сплю а слушаю свое сердце Сворачиваю гамак и на баррикады Обещают в местной газете участие порядка 200 тысяч человек что для 25-тысячного городка многовато имхо После того как вы ушли у меня к вам никаких претензий больше нет Ужасные отношения между братьями-сестрами в маминой семье родителей они лишились очень давно самым трагическим образом мама осталась самой младшей А сегодня пришел товарищ вроде как будем искренне надеяться помог мне с компом Я кстати сам пришел из христианства Можешь в двух словах сказать от чего зависит качество текстур и виза Привет всем в этот пасмурный и ветреный день Определяешься окончательно ан нет очередной самообман Теперь я твердо уверена что вам можно доверять Эту подставку для журалов я делала для своей подруги-одногруппницы с которой мы учились вместе в университете Ребенок у нас резко полюбил фотографироваться требовал чтобы я его сфотографировала чуть ли не у каждого столба Сообщите всем кому можете Преподаватель Да безусловно но я не знаю что такое Боженька Но коль таковые имеются пойдем дальше Программа Космос является одной из самых масштабных программ по изучению космической эволюции Я приехал через час а работы так и не начались правда воду удалось как-то перекрыть Наберешься наглости позвонишь еще В 70-е годы в институте мне естественно пришлось сдавать госэкзамен по научному коммунизму Тварь Арагонес такую ситуацию создал Вчера сходила на Клик ничего так фильмец Когда мы только начали жить вместе у меня периодично возникало навязчивое желание закрыть руками уши и орать А самую важную точку в нашей прогулке поставил вот этот вот товарищ еще можно в бикини ходить зимой по системе Иванова Конечно все те же взрослые люди в чудесной стране Америка в 45 годах своими запретами создали этот стереотип Расставаньям и потерям я не верю я не верю в общем если бы не желтый носорожка то возможно я бы сейчас была балериной Стали пешеходы переходить дорогу в общей сложности было всего 3 девчонки Давай мы просто потанцуем для себя Спускаюсь в метро и ложусь на лавку Можно ли кушать после 18:00 а что тут писать и не знаю Поскольку мы закупили основное оборудование нам уже не придется делать такие капитальные вложения мы можем направлять основную часть средств на реактивы материалы чтобы увеличить производство товарищ говорит мол убери ты что себе за извращения поставила По всему выходило что это просто много теток в разных кабинетах различных организаций с пишущими машинками и календарями на стенах Ну в общем много обкуренных тараканов Еще один вопрос волнует меня почему в одном из магазинов он стоит 13 тысяч когда везде 16-18 Но Уилл Смит видимо продавший душу дьяволу чтобы не стареть каждой своей гримасой и ироничными замечаниями усердно напоминает как сильно нам его не хватало последние годы на большом экране Но хоть праздник домашний но все-таки праздник Померили давление оказалось очень низкое давление и очень высокий пульс Поздравляю Вас с Рождеством по утрам не хочет вставать и устраивает такие сны в которых я не то чтобы спасаю мир но если проснусь будут неприятности другим Давно ничего не писал Посмотрели друг на друга улыбнулись и кивнули как старые знакомые Проблемная кожа угри черные точки расширенные поры А вокруг какое-то непонятное что-то не дает мне этого сделать Так что теперь можете смело обзывать водителем как объяснил потом А зачем тебе было знать На площади вокруг фонарного столба разместилось шесть солидных матрон Приехали в Сяньян где и узнали что из этого города прямых маршрутов до достопримечательностей нет но добраться можно различными рейсовыми маршруточками конечно видя ее понимаешь что в принципе и не для кого ему себя в порядок приводить В частности оттуда пошла байка взятая на вооружение Шиллером о том что жена Филиппа изменяла ему с молодым Доном Карлосом И одиночество мое вовсе не надуманное а реальное завтра после 9-ти к инспектору Называется Наташа собралась приехать Показать рецепт кремлевской диеты Одни отправляют почему-то в таксопарк типа там и только там меняют стекла Кто-то купил права и накропал бездарное продолжение Отечественные чаи и коктейль для похудения А в Питере у меня родилась племяшка и я уже очень хочу увидеть этого маленького гномика и на правах единственной родной тети ищу ей самый замечательный подарок Высадив троих в машину довозки к экзаменуемому сел гаишник Усовершенствованный алгоритм по сравнению с встроенным но работает только с английскими словами Он устал после работы случается что его обижали большие мальчишки в суровом бизнесе и ругал злой дядька-начальник По вертикали чтоб весь спектр был типа радуга Профилактика и лечение рака легких желудка печени восстановление после химиотерапии Именно так номер выглядит на визитной карточке Но это была моя философская присказка Мне так кажется что вообще идея равенства свободы людей не имеет отношения к социуму некоторые вещи в моей жизни начинают не радовать Все импульсные микросхемы которые знал там нашел Хотелось бы чтобы была вся палитра цветовой гаммы а Елка светилась буйством Вашей фантазии и Вашего воображения Отдельный совет прочтите хотя бы одну желательно серьезную книгу по композиции А это не есть хорошо ибо обязательно в самый последний момент что-то случится и увидеть их не получится Скриншот с Космополитеном видела Последние года два пожалуй самое тяжелое что со мной было это разделение на две жизни непонимание того чего в общем надо Красиво домики комнатки озера искусственные горы деревья Сложно двинуться в такой очереди перевалиться с ноги на ногу не зацепив сзади и спереди стоящих Вот Черный Лимузин и ожил и действительно стал самым лучшим и удивительным автомобилем в Мире он был самым быстрым самым мощным в общем самым-самым Кто бы о таком мог вообще подумать Иногда то что происходит в любви кажется очень жестоким Вместо этого ты просто обращаешься к прошлому опыту В российском правительстве изданию подтвердили факт получения письма от госсекретаря США но отказались раскрыть его содержание А о чем могут говорить две хорошие подруги учащиеся в одном вузе и встретившиеся для похода на концерт Так что у нас будет теперь где культурно отдохнуть а вообще Жень я оказывается убежденный урбанист Некоторые люди считают стакан наполовину полным некоторые наполовину пустым Посочувствовали бы а то накинулись на старого чела Но то что сейчас вы испытываете неприязнь друг к другу это естественно потом через две пары курю на порожке охранник выходит я его про милиционершу спрашиваю чего говорю девушку не пускали а он мне вообще откровение а у нее пистолет У нас тоже солнышко но еще очень холодно Но став старше она осознала что точность и четкость ее все На выезде из Клина бдительные гайцы на посту решили проверить актуальность моих транзитов ссылка на статистику liveinternet по сайтам рунета А вы помните свою первую любовь С ним ничего не сделаешь от него никак не избавишься как в бомбежку бомбардировщик из рогатки не собьешь Ну ты сама в общем в курсе Грабитель поехал в сторону Краснознаменной улицы по встречной полосе и по дороге задел три автомобиля Через 10 шагов история повторилась но уже с другим человеком и тут до меня дошло в общем мелочь а приятно раз пять я так наверное на ВДНХ и здоровалась Мне ничего не оставалось делать как основывать еще один город дабы заделать дыру в державе и производить длиннолуков с катапультами Вам только кажется что вы выигрываете деля покупку на платежи в итоге они накапливаются вы теряете контроль и платите в месяц больше чем можете себе позволить Поспишь тут в большой комнате что как проходной двор для всяких непонятных мне лиц мужского пола Объясняла моей начальнице что я заболела и больше не могла быть на работе Раньше только наличие зубной щетки и всяких других мелочей выдавало мое присутствие в этом доме а сейчас здесь моя энергия моя любовь мое приятие этого места Едешь и не знаешь что в Норвегии расстреливают людей Появились новые военные угрозы против которых как показывает практика США не очень-то способны защитить характер угроз таков что с другого континента их не решить Наверное почувствовать что-то точно можно а то бы почему эта старушка с таким осуждением на меня смотрела в общем для обычных людей занятие тоже было найдено Вернется напишет заявление об увольнении Серебряные звезды нашептывали ему слова а ночной шутник-ветер играючи вплетал в эти слова ритм и размер Медленно-медленно просыпаться под приятную музыку Теоретически за счет валютно-обменных операций банкиры могли бы компенсировать недостаток наличных средств Соответственно вы получите просто массу предложений На огонь реагируют достаточно выборочно тупо на источник тепла не кидаются то есть если развести огонь то видимо их внимание привлечь можно но из-за облаков они просто так не покажутся В тебе ценят доброту и отзывчивость лето 2011 если возвращаться к этому куску моей жизни началось и вроде недавно и вообще как-то давно Теперь мы не бомжи теперь мы банкроты но абсолютно счастливые Он будет знать что вы тоже что-то можете сделать в этой жизни и уважение к вам только приумножится Не юзаю и надеюсь не придется юзать Кто составит компанию в бассейн завтра А пока нужно наслаждаться тем что нам дано и присматриваться к календарику когда и куда можно выехать для кратковременного отдыха Меня не было дома когда она умерла Стесняюсь спросить что такое ирригатор Вчера меня насильно затащили в Коломенское потом стемнело и похолодало скачать одноклассники на мобильный телефон бесплатно Есть такой капиталист в тюрьме сейчас сидит и похоже долго еще будет сидеть Он бесследно исчез в восемьдесят девятом Остается смириться и бороться Дома ждет еще одна книга подобного плана даже не знаю начать ее завтра читать или разбавить чем-то романтическим или фантастическим Последняя фраза явно впечатление на тебя не произвела Но все же это мелочи по сравнению с тем что могло вызвать у Крысы такой силы беспокойство Готовится видео-репортаж о конкурсе Мисс Латина 2012 власть и управление конструкции человеческого ума лежащие в основе его теории объяснения Соответственно наша звезда прыжков с шестом с результатом 4.60 первая На последних звонках девочки плачут почти все как многие наверное слышали в некоторых европейских странах нужно платить за проезд по дорогам По моему мнению это самый ужасный сбор из всех что у нас было От нее особый кайф можно постоянно регулировать толщину и форму линий Разве нормальный человек отправит в ТАКОЕ заведение родных людей На полнеба растянулся черный дымный след Мультики Ты вернулась Я тебе так рaда Немало достижений было и в развитии электровозной тяги Представьте себе что это сотни килограмм муки распыленные в воздухе Формулы правда ему приходилось зачитывать вслух или записывать Если ты не возьмешь ответственность за написание картины то за тебя ее напишут другие Он принес новый флакон духов или туалетной воды уж не знаю но раз в несколько часов ей весь обрызгивается Подливает масло в огонь активность одного гипермаркета который пользуясь жадностью и или бедностью наших односельчан как будто специально создает давки и очереди за дешевыми мандаринами Права мне жизненно необходимы и я не понимаю как могла жить без них столько лет и самое главное как я буду жить без них дальше работать начинаем потихоньку но планируем развиться межгалактическими темпами с вашей помощью кстати Сказали подождать как-то жалобно отвечает мужчина остальные молчат Параллельно проверяю написанное на смысл активный процесс Как место захоронений эта территория использовалась уже с 30-х годов и было засекречено вплоть до 1989 года по вполне понятным причинам Аутоагонистофилия Autagonistophilia сексуальное возбуждение от того что являешься предметом всеобщего внимания или от создания условий при которых такое публичное наблюдение возможно Надоело закапывать талант в землю Утро самое удачное время для беспокойства и депрессии когда все представляется в самом мрачном и черном свете Очень часто мне нравилось что мне прощается тот или иной поступок потому что я маленькая Ограниченность в 160 символов латиницей придает им емкость брошенного слова иногда необдуманного горячего случайного а электронный формат долгую непредвзятую память Мужчины которые свято верят что цветы это лишняя трата денег и вообще они бесполезны Сегодня я обзавелась новой пломбой в верхнем зубе Постарайтесь отличить аборигенку от приезжей старую деву от матери семейства Слушай ты как-то подозрительно сложно живешь Объявили что автобус уйдет через полчаса На детальное изучение документа и предложений участников может потребоваться год Небольшой мороз сильный ветер увеличивает градусов на 5-10 Всех воспитателей поздравляю с их профессиональным праздником Феликс сказал насчет грабель это как надо было устать в своей Москве оставшийся отрезок дня был всецело отдан ежеминутным изменениям планов на дальнейшую деятельность Да и много других образов главное в одном из них не остаться на долгий срок иначе скука-мука Почувствовав себя готовыми к новым свершениям на третий день пошли в Лагуну 69 одно из красивейших мест в Cordillera Blanca Можно еще понять почему допустим Михаил Булгаков опережает Льва Толстого а Александр Блок оказался за два пункта до конца списка Поешьте грецких орехов Пробег составил 560 км за которые было скушано примерно 55 литров бензина а это вообще насчет чувств верующих дело по местным обычаям иудейским неправильное В ARD сочли такие расходы неоправданными отметив что для зарубежного вещания существует Deutsche Welle Немецкая волна Под колеса состава с локомотивом yкладываются тоpмозные башмаки число котоpых ни машинист ни помощник не знают Нельзя считать пару попыток в незапамятные времена умением кататься Эти люди приближают земную жизнь к гармонии но дается им все только тяжелым трудом Господи помоги мне не напиться Люди невероятно часто отвлекаются на незначительные мелочи теряя способность видеть картину в целом Полагаю драка и выпивка тоже в комплекте Сегодняшний ответ на вопрос про холод А у меня солнце на футболке Артурчик тоже весьма ответственно подошел к вопросу отправки сестрицы в учебное заведение не пискнул и вообще предпочел поспать на мамином плече не появлялась тут уже очень долго представьте что вы сидите тихо-тихо и работаете с документами а рядом на пороге слышимости работает двигатель вертолета Потрясающая серия Преподавательница резко попросила замолчать или сдать работу и покинуть аудиторию Не спросишь у командования что за ерунда У меня в жизни сейчас есть два молодых человека которые мне именно что нравятся прибежишь уставшая и убитая а она и помучает и насмешит и в общем выходишь почти и человеком с дозой позитивных мыслей Счастливая кошка сразу видно что ее никогда не мыли Вообще разглядывание фотографий это такое дело при беглом взгляде нам может понравиться снимок с более яркими цветами но при более внимательном разглядывании яркие цвета в каком-то случае надоедают и больше нравится снимок с цветами приглушенными но с более богатой и естественной палитрой Мягче я тут становлюсь и человеколюбивее черт Правда большинство на зарплате а не на контракте Объективно говоря становится уже очень тяжело За синие горы где мрак и снега да и в конце концов всегда есть кто-то глупее тебя кто-то умнее тебя и кто-то умнее того кто умнее тебя Как будто тебя аккуратно взяли на руки и очень бережно несли все это время боясь уронить Удачи хорошего настроения денежек побольше и чтоб полегче доставались ну всего в общем хорошего и чтоб петух не клевался Естественно и понятно телятина без грамма жира но в первый раз побоялась незнания пароварки потому все делала по рецепту в общем Господа с нового года опять все подорожало и вы возможно неприятно удивились цифре денег которые вы должны заплатить за полутеплые и ну даже пусть очень теплые батареи в вашем доме и все утратит прежний запах даже чай бумага шоколадка сегодня я даже не стала спускаться с кровати ты ж обещал что можно тебя называть блондинчик Принципы аналогичные применяю правда иногда срываюсь на нравоучения и читаю краткие лекции Сейчас естественно почки как никогда и не болели Одиночеством блеклым безумным желаньем напиться И вот в одном из них мы обнаружили потрясающую юбку Только на память оставила записку и фотку Просмотр скрытых страниц в контакте если бы была не простуда а что-то серьезное ну или даже простуда но действительно сильная с температурой 39 и выше я бы естественно никуда не поперлась Ответьте мне на вопрос адресую пострадавшим А что вам мешало бросить вашу барракуду на этапе избы Очень красивая и добрая фотография Звонит подружка она на другом острове живет не виделись 3 года но периодически созваниваемся тебе можно и нужно его продавать Но у меня на этой почве начинает болеть живот в общем это был прекрасный день Первым же выхватом стала дорога ну естественно не без успевания по пробкам на автобус успели к двум минутам до но опоздал сам автобус и какое-то количество минут его пришлось ждать я б матюгнулся пару раз да толку-то Это конечно достижение такого не было в нашей школе давно Сегодня вообще был цирк сначала зашли какие-то плотники объясняя экзаменатору что связались с ней через емайл говорилось о заборе который не закрывается затем зашла не знаю кто с мобильным телефоном и разговаривала в полный голос За них хочется ухватиться смотреть на них учиться-учиться-учиться Флоренция встретила нас небольшим дождиком и толпами туристов Следующая тушь которая составила список моих тестов это тушь от CHANEL INIMITABLE что-то в инете ничего не нашла Скажи честно ты ж его такой игрушечный купила да Куча тематичного народу в общем втерся и научился прыгать довольно оперативно На берегу стоял PR а рядом с ним катамаран Оказывается зеленый чай без сахара вполне идет с зефирчиком в шоколаде Ну вот у всех наверное так бывает вот была какая-то вещь ну вот точно же помнится была а хватишься и пропала Егоров оперирует понятием боевых действий в фехтовании У каждого из нас есть даты которые являются для нас счастливыми и мы помним их не из-за каких-то там цифр а потому что Мировая история была разделена на три века Отца Сына и Святого Духа Муж Феи был уверен что женщина ни что иное как тень мужчины Это никак не скажется на качестве дальнейших ваших отношений просто придется немного подождать Совпали действительно замечательно на стекле были крупные капли тайского дождя а за стеклом был невероятный закат А вот если мотать данный фильм с помощью волшебной кнопки Fwd быстро-быстро то получилось бы просто отличнейшее кино где все как надо Важнейшие моменты нашей жизни мы связываем с Богом вдруг забывая что еще вчера мы не заботились о его существовании когда-то он предположил что я специально заразил кафедральные компы вирусом который вместо запятых вставлял матерные слова Тебе возразят что зато он хочет продать бизнес а деньги пустить на благо он красивый и умно рассуждает и отменит ЕГЭ и еще что-то там он такое с медициной сделать обещает от программы правда медики воют но они ж просто корыстные ублюдки и всем сразу станет хорошо Позаботьтесь о хорошей обуви для своих детей Относитесь к непониманию с двойной иронией ты смеешься над тем что цигун глупое занятие а я над тем что только глупец не занимается цигун ты смеешься над тем что всегда будешь больным а я от радости что могу быть здоровым и жить долго Пофотографировав то к чему можно было добраться мы вернулись в пространство колокольни Ну попробуйте же угадать какая это может быть часть из всех выдвинутых кандидатов Очищенный батат превращаем в пюре Но стоит ли так быстро поддаваться унынию и пессимистическому настроению Но игру в итоге как и год назад наши девушки проиграли Даже и не знаем что вам сказать Новогоднее настроение прямо какое-то Идя в сторону метро мы даже начали сочинять стихотворение начало приведу но в этот раз он изменит своим принципам и с удовольствием через секретаря ответит на все волнующие молодежь злободневные вопросы кроме анонимных естественно Это же надо быть такими наглыми чтобы делать такой конкурс с такой ужасной саморекламой Звонит просто для того чтобы поболтать с тобой ни о чем Кто воспримет форекс как игру случая того ждет сплошной крах А это уже само собой как-то случится Опрошены все до кого смог добраться по поводу лучших путей погоды и прочего-прочего-прочего а недавно у нас его вообще отключили Постебался еще и первый Как зайти на страницу закрытую от всех одноклассников Потому что в Воронеже все перечисленные тобою улицы находятся рядом Сногсшибательной ей удается быть но только благодаря удивительно едкому аромату духов даже на улице мне пришлось бежать в другую сторону и переходить проспект лишь бы не попасть в штабель Понятно что его никто не оставит Книга вот об этом как бы и есть о непостижимости в общем это известие подлило масла Хотя некоторые вещи я могу делать в столице для своих близких невзирая на их протесты Если кто-то еще хочет первести деньги мне на счет в Израиле у вас есть пара дней пишите мне в личку К ночи облака истончились и круглая луна тускло просвечивала сквозь белесую кисею озаряя одну сторону улицы сероватым светом Затык заключался раньше в том что мне нужна была крыша дома а зимой на них не проберешься да и весной не очень-то это нам так просто повезло Она любит играть поэтому если она веселая это вовсе не означает что ей действительно весело И она работает намного более сильно чем вся муть НЛП Замечания и уточнения к этому посту приветствуются Кто ж знал поедая котлеты с картошкой заботливо приготовленные мамой они у меня вообще супер что вечер намечается насыщенным на приключения извините за сумбур это от волнения Оказалось что надо сделать видео переконвертить и слепить в одно Проверка перед сдачей 1-го тома День субботы 6 декабря начинался вполне обыкновенно Все они жили когда-то все мечтали о тепле девчонки в индии все на премьере слезами заливаюсь какие они счастливые уже глянули что за шедевр выпустил Шах Чем отличается спасательная археология от любой другой так это тем что для нее не существует времени года Написать что ли завтра Стасу спросить нет ли у них ливня Ведь время нисколько не ждет Совершенно случайно оказывается что сей текст существует в отправленных на мыле Пытаюсь подобрать свой труп однако он по всей видимости все еще находится в теперь невидимой подводной лодке и нарезает круги над бездной в середине локации Им всего-то и надо ножницами в насильника за непристойные предложения ткнуть посильнее и бежать дальше маникюр доделывая Непредвиденные обстоятельства требующие решений Не говоря про то что в самом музее толкучка несусветная чтобы получить порцию каши надо было отстоять около часа мы так и не дождались Поздравляю с очередной публикацией да еще в японском издании класс Взрослея мы забываем о радости магии волшебстве удивительном и неповторимом очаровании снежного праздника довольно слабый фильм который спасают только милые нашим сердцам пейзажи Самуи и Ко Тао а также звукоряд Я говорю да ничего я тоже из офиса тебе пишу Некоторые в домашние сады отдают вроде такой эконом-выход Мама нас с Мишей когда мы втроем называет общим ребята после Др мне как-то особенно стало не хотеться жить Убиться веником ребенок знает что он тупой находится в самом низу социального плинтуса и ему это нравится Поздравляю с ДР камрад Если вас освистывают болельщики значит вы морально не готовы выступать за клуб который любят в Петербурге и который так поддерживают спонсоры А Ясна рыбок очень любит может подолгу их ловить сквозь стекло аквариума Попыталась жить без жалоб А некоторые мои знакомые мущщины держат свое лицо а также подмышки на безопасном расстоянии от лезвия бритвы Чувствовать себя его частью здоровое отношение и к себе и к этой общности Погода вроде разошлась но уже все выглядит по осеннему блекло Завтра как надену их и как все увижу а если есть общение то оно очень поверхностное зачастую неискреннее Ну это ладно а дело в том что эта прекрасная девочка сейчас болеет и не может принять участие в этих мастер-классах мое счастье Единственный положительный момент мне сделали укол от столбняка Мне нравится быть женщиной за двадцать Стал похож на зажравшегося престарелого европейца Краска облупилась замки на калитках сорваны заборчики покосились во дворе стоит разруха и запустение и вот на столь позитивно-пьяной ноте меня в два ночи привезли домой Меня хватило на один раз после чего я на неделю решительно выпала из виртуального мира в реальный Из одежды особенно актуальны носки шерстяные платки теплые А мой отец довольно рано усвоил что красивая жизнь никому не проходит даром Поэтому может быть кому-то моя открытка покажется перегруженной но я очень за нее горда Ты никогда не хотел стать журналистом Как у обиженной стороны у меня есть право выбирать оружие Даже самая незначительная ошибка может существенно бить по бюджету сейчас самое время их исправить и единственно чего хочется так это уснуть уснуть как можно глубже Аромат ванили наполняет сердца гармонией обладает удивительной способностью растворить суету и создать теплую располагающую к отдыху атмосферу сегодня сдала документы в ОВИР на загранпаспорт Съездила в саб общалась с подругами пару раз сходила в кино пару раз в пиццерию тройку раз погуляла с кампанией Понаобещал бедным девушкам а они ждали надеялись а он Очень не люблю когда матом ругаются в систематическом порядке когда на нем разговаривают когда мат через слово просто чтоб было и тепрь следы от этих кулаков по всему тела я кстати слышал что человек должен менять не менее 5 профессий за свою жизнь чтобы не запариваться Неуравновешенно очень мостик который мог бы быть смысловым центром спрятан за деревом и смещен сильно влево справа много черного стволы у меня возникает чувство дискомфорта Цезарь делал это не по злобе а потому что расходы его были велики и ему предстояли еще большие траты на войско триумфы и другие роскошества И сразу стало легче когда я поняла что не все были против меня Расскажу немножко про свой сон Покажи фото Один из немногих работающий в ПОНЕДЕЛЬНИК Музей микроминиатюры Русский Левша находится очень близко к вокзалу это я так на заметку и в общем-то весьма интересен Проблемы не в смысле что мы неплатежеспособны а в смысле как теперь сделать все это за счет арестовавших нас канадцев Умом сознаю что народы царства и цари умирают или гибнут Негативные эмоции оказывают разрушительное воздействие на психику поэтому лучше с этим фактом видимо смириться Пожинаем плоды веселой пятницы С рюкзаком забегаю на работу весело болтаю с девчонками вся в радужном настроении и в уверенности что от Черной речки ходят маршрутки до Финбана и толкаться с этой торбой в 2/3 моего роста по метро мне не придется Некоторым вещам очень много лет а меня это не парит Общению с большинством предпочитаю чтение книг Смотрите это и в общем обещанная хорошая новость получайте удовольствие Действие картины происходит в 1930-ые годы Лекарствами здоровье гробить Вот куда надо вести ребенка перед тем как отправить в музыкальную школу выбирай дружок что нравится причем очень забавно у них есть юридический департамент руководитель Кузнецова Оглядываюсь назад и кажется что настолько долгого месяца у меня давно не было Все меня теперь здесь больше не живет На века поставленную цепь не развести И теперь собственно по поводу несанкционированного торможения Пионеров Мужчины и женщины могут находиться только на своей территории Эта задача во много раз сложнее чем исполнять выученный текст поскольку артисту при прямом контакте с аудиторией нужно быть готовым к любому развитию событий и обладать мгновенной реакцией Самый простой способ получить белый и ровный потолок провести его выравнивание с помощью штукатурных смесей Прямо зуб на зуб не попадает Самые известные столбы как я понял это Перья и Дед Для меня эта работа потеряла как-то изюминку и мне уже очень лениво вставать рано Опять мне будешь приключения свои описывать Клубец весьма себе неформальный отсюда вполне приемлемые цены для центра Москвы и при этом как ни странно довольно вкусно готовят Велосипедисты лыжники и бегуны чаще всего замедляют ход возле собак и все проходит спокойно Кто-нибудь что-нибудь понял И ему по-настоящему повезло чтоб всегда любимая команда была Чемпионом Сабурово в расчет не берем сам понимаешь Муж конечно не Ален Делон зато и в зеркало так часто не смотрится Все это от того что мы сами создали высокие требования для себя и компании ну ведь совсем ничего сложного казалось бы Совладав с собой он дал клятву Вот собственно такими космическими цветами с загадочными переливами это стекло и привлекло меня и заставило искать и копать дальше жду когда он отойдет достаточно далеко чтобы мои передвижения его не пугали Мудрейший тот кто знает о других Спутник позволит наблюдать за потенциально опасными явлениями в атмосфере Земли Некоторые моменты перекликались с его выступлением два года назад Пусть тусуется дальше И никакие мольбы просьбы и уговоры не способны растопить их ледяных сердец Прочитала тут новость что 21 июля то есть в день выхода седьмой книги начнет работать телефон доверия чтобы прочитавшие поттероманы туда звонили и их смогли убедить что жизнь еще не кончилась Я тоже очень люблю их иначе бы задача тети провалилась Никуда не денется Неожиданно из подворотни в Олега ударил яркий прожектор патрульный трактор с лязгом выкатился и остановился возле мальчика Прекратите этот дождь из событий но обижать его неохота поэтому молчу Ну и собственно готовься к кризису 2018 примерно года опять жилье подешевеет квартирку или еще что-то можно проапгрейдить если во всеоружии забавно что танцует не исполнительница песни я как-то к такому подходу не привыкла В общем я отлично провел время а если еще учитывать 26 рублей в кошельке то вообще все клево Надо у них спросить рецептик Какой-то период времени мы вообще не общались Каковы ваши любимые и наименее любимые слова Сегодня яичницей никто не завтракал как впрочем и вчера на ближайшем к нам рынке мы ели фруктовый салат со свежевыжатым соком как в старые добрые времена в Бразилии Особое место занимает чудотворная икона Лобзание Христа Иудою Так как эти яйца жалко есть а хочется все больше любоваться их можно покрыть лаком даже прозрачным лаком для ногтей ================================================ FILE: data/sanity_check_samples/corruptor_tests/broken_csv_file_columns/data.csv ================================================ source,corrections очень классная тетка ктобы что не говорил.,очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе?,Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.,Довольно большая часть пришедших сходила с дорожек и усаживалась на траву "Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera.",Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Опофеозом дня для меня сегодня стала фраза услышанная в новостях:,Апофеозом дня для меня сегодня стала фраза услышанная в новостях "Ну не было поста, так небыло!",Ну не было поста так не было "Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.",Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал "Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.",Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно "Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек...",Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Пояним эту мысль.,Поясним эту мысль ================================================ FILE: data/sanity_check_samples/corruptor_tests/broken_csv_file_nans/data.csv ================================================ source,correction очень классная тетка ктобы что не говорил.,очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе?,Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.,Довольно большая часть пришедших сходила с дорожек и усаживалась на траву "Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera.",Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Опофеозом дня для меня сегодня стала фраза услышанная в новостях:,Апофеозом дня для меня сегодня стала фраза услышанная в новостях "Ну не было поста, так небыло!",Ну не было поста так не было "Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.",Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал "Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.",Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно "Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек...",Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек , ================================================ FILE: data/sanity_check_samples/corruptor_tests/broken_csv_file_opening/data.csv ================================================ source,correction очень классная тетка ктобы что не говорил.,очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе?,Может выгоднее втулку продать и купить колесо в сборе,asdf Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.,Довольно большая часть пришедших сходила с дорожек и усаживалась на траву "Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera.",Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Опофеозом дня для меня сегодня стала фраза услышанная в новостях:,Апофеозом дня для меня сегодня стала фраза услышанная в новостях "Ну не было поста, так небыло!",Ну не было поста так не было "Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.",Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал "Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.",Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно "Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек...",Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Пояним эту мысль.,Поясним эту мысль ================================================ FILE: data/sanity_check_samples/corruptor_tests/broken_text_files/corrections.txt ================================================ очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Апофеозом дня для меня сегодня стала фраза услышанная в новостях Ну не было поста так не было Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек ================================================ FILE: data/sanity_check_samples/corruptor_tests/broken_text_files/sources.txt ================================================ очень классная тетка ктобы что не говорил. Может выгоднее втулку продать и купить колесо в сборе? Довольно большая часть пришедших сходила с дорожек и усаживалась на траву. Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera. Опофеозом дня для меня сегодня стала фраза услышанная в новостях: Ну не было поста, так небыло! Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал. Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек... Пояним эту мысль. ================================================ FILE: data/sanity_check_samples/corruptor_tests/corrections.txt ================================================ очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Апофеозом дня для меня сегодня стала фраза услышанная в новостях Ну не было поста так не было Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Поясним эту мысль ================================================ FILE: data/sanity_check_samples/corruptor_tests/csv/data.csv ================================================ source,correction очень классная тетка ктобы что не говорил.,очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе?,Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.,Довольно большая часть пришедших сходила с дорожек и усаживалась на траву "Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera.",Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Опофеозом дня для меня сегодня стала фраза услышанная в новостях:,Апофеозом дня для меня сегодня стала фраза услышанная в новостях "Ну не было поста, так небыло!",Ну не было поста так не было "Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.",Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал "Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.",Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно "Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек...",Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Пояним эту мысль.,Поясним эту мысль ================================================ FILE: data/sanity_check_samples/corruptor_tests/sources.txt ================================================ очень классная тетка ктобы что не говорил. Может выгоднее втулку продать и купить колесо в сборе? Довольно большая часть пришедших сходила с дорожек и усаживалась на траву. Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera. Опофеозом дня для меня сегодня стала фраза услышанная в новостях: Ну не было поста, так небыло! Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал. Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек... Пояним эту мысль. ================================================ FILE: data/sanity_check_samples/corruptor_tests/wrong_names/corrections_.txt ================================================ очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Апофеозом дня для меня сегодня стала фраза услышанная в новостях Ну не было поста так не было Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Поясним эту мысль ================================================ FILE: data/sanity_check_samples/corruptor_tests/wrong_names/data_.csv ================================================ source,correction очень классная тетка ктобы что не говорил.,очень классная тетка кто бы что ни говорил Может выгоднее втулку продать и купить колесо в сборе?,Может выгоднее втулку продать и купить колесо в сборе Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.,Довольно большая часть пришедших сходила с дорожек и усаживалась на траву "Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera.",Симпатичнейшее шпионское устройство такой себе гламурный фотоаппарат девушки Бонда миниатюрная модель камеры Superheadz Clap Camera Опофеозом дня для меня сегодня стала фраза услышанная в новостях:,Апофеозом дня для меня сегодня стала фраза услышанная в новостях "Ну не было поста, так небыло!",Ну не было поста так не было "Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.",Хотя странно когда я забирала к себе на выходные старого кота который живет у родителей да и собаку в придачу то такого концерта мой кот не устраивал "Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.",Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно "Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек...",Зато я считаю что это будет полезно и для меня и для всех тех кто меня окружает ведь когда расстаешься с человеком на какое-то время то многое становится прозрачным я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек Пояним эту мысль.,Поясним эту мысль ================================================ FILE: data/sanity_check_samples/corruptor_tests/wrong_names/sources_.txt ================================================ очень классная тетка ктобы что не говорил. Может выгоднее втулку продать и купить колесо в сборе? Довольно большая часть пришедших сходила с дорожек и усаживалась на траву. Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera. Опофеозом дня для меня сегодня стала фраза услышанная в новостях: Ну не было поста, так небыло! Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал. Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек... Пояним эту мысль. ================================================ FILE: data/sanity_check_samples/source_sents.txt ================================================ очень классная тетка ктобы что не говорил. Может выгоднее втулку продать и купить колесо в сборе? Довольно большая часть пришедших сходила с дорожек и усаживалась на траву. Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera. Опофеозом дня для меня сегодня стала фраза услышанная в новостях: Ну не было поста, так небыло! Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал. Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек... Пояним эту мысль. она прямо бурлит у меня в крови, тормошит какими-то советами, смотрит на меня из глаз моей дочки, что носит ее имя. Полчатся вот такие язычки. Роспись была назначена на вторую половину дня, поэтому время на прогулку и фотосессию было ограничено. Иногда мне сложно понять: как можно не любить своего ребенка. в массе своей они конечно все оччччень милые ) Нащщот Чавеса разве что не соглашусь. Нужно просто захотеть что-то сделать ради того, чтобы все стало так, как того хочется тебе. Многие сетуют на отсуствие " живого взаимодействия между учеником и учителем " - а в чем оно по сути? Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. Нарасно выброшенные деньги на билет в кинотеатр. А теперь я пойду профилактически рыдать в ванную, как все толстые неудачницы. вобщем как вы знаете из моего не давнего поста я жаловался на пропажу писем с моего ящека на почте.ру Предлагю поиграть в детскую игру " Ассоциации ". Сегодяшнее утро выдалось просто волшебным. хороше что на выходгых не было стен, только деревья да ручьи... Было тяжело, переводил беседу карабахский армянин. она сама придумала образ, и как бы небыло, думаю ей удалось передать атмосферу... А Рите снятся сны, в которых меня убивают, патаму шта я пытаюсь всех спасти. Лчше б этот бунт эритроцитов переждать в дубраве люминала, У нас всегда достанет сил, чтобы перенести несчастье ближнего. Поффтыкав в аэропорту поехали к билетным кассам где я взял билет на поезд. Компютерная программа для улучшения зрения а днем мама снится как будто мы с ней в соре и она мне чтото выговаривает... Интересно чтобы было, еслиб этот фильм посмотреела бы с Димой... И вот наступил сладостный момент - я вышла из дома в шесть вечера, против планируемого без пятнадцати, и поспешила на встречу с Надей. Мошный лазер - в нерабочем состоянии - 350 кредиток. Так вот я боюсь подержанную, потомучто меня провести как нефиг делать. хороше когда каждый год как первый... Особенно мне интересны Капулетти, включая и прислужницу Кормилицу, и молодеж которая будет учавствовать в поединках. седня должен был на работу притащиться программист и вешать всем оплеух, причем бОльшую часть на меня! Отвественность за реализацию, естественно, лежит на контрактных пивоварах. В принципе, я к этому готова. Ограничте время между кликами, что-ли... Кили открыл, что недоступные наблюдению поля - мозговые, гравитационные, магнитные и электрические - состоят из трех потоков Эстония, эт канешна не Португалия, но 4:0 тоже результат! мы понимаем друг друга с полу слова, но диалога никуогда у нас не получаеться... Начальнег зажог павзрослому: всю предудущую неделю ходил покрытый прыщами, а с понедельника слег - ветрянка. Подсаживаеться женшина - иностранка из Норвегии, она приглашает меня танцевать, оказывается что это место слишком крутое для меня, я загруживаюсь и больше в этот вечер не танцую... В мире, на самом деле, крайне мало действительно по-настоящему значимого. И еще тут ряда на 4 назад какието малолетнии наркоманы, не понимая всю трагичность момента, начинают хихикать, потерянная молодеж. Ощушаю себя с ними монголойдом, я никогда так много не молчала как молчю тут, и не потому, что языковый баръер или еще что-то, просто коментариев нет Отвественный редактор издания, Юлия Потемкина, прислала мне потрясающий ролик про триатлон. Пополнил коллекцию шмоться от Fallen, всвязи с долгожданным завозом. Атличный лотос у тебя Меня никто ни о чем не просил, просто хочется поделиться... Чем Дяченки и Олди мельче философов с мировыми именами? Мы с Сашкой купили ( надо было что-то в бассейн на корпоративном отдыхе, что ли ), а они нам обоим оказались неудобны дико - высокий подъем у обоих, а они по-моему на плоскостопых расчитаны исключительно. Такое ощущение, как будто до этого видел сон, а сейчас только просыпаешься, но почему-то все адово болит и дышать трудно. Обълись пиццы и всячески ввеселились. Возможно, все ограничится приятным знакомством, а возможно и любовью на всю жизнь - кто знает? русским мог стать любой, кто любил русскую культуру, родину, говорил по-русски. кому подойдет: инопланетянам, или людям живущим загородом, или владельцам ну оооочень большой квартиры с ну оооочень большой кладовкой, куда это чудо технической мысли можно спрятать. Распрашивая иностранцев-гостей Питера о их впечатлении от русских, частым комментарием был тот факт, что все слишком сердитые и серьезные, никто не улыбается на улице. Библиография, приведенная в конце книги, впечатляет. А про дырявую книгу я даже не знала, спасибо, что заинтересовали ) Зашел в в какой-то сетевой европейский ( не помню название бренда ) магазин, - купить сыну игрушку из командировки ( lego ), - цены Московские, девченки-продавцы по-русски говорят плохо. Сегодня вот днем выдалось свободное время, и я опять ходил кататься на коньках. А она научилась справляться и жить дальше, зная, что близкие люди страдают, чувствуя собственную боль. Зубодробительня гребенка с острыми камнями на протяжении всех 50 км пути! Слава богу, на минуту мне показалось, что я оглох. прийдя в МГТУ я был удивлен никого необноружив там... Профессиональнаякарьера Патрисии началась - чтовполне закономерно - недалеко от родных мест, но за пределами Франции. и как Мишка сегодня сыграл, и как тот самый ненавистный Олег им гол каааак забил! а спустя три часа я зашел в серверную школы которую мы обслуживаем чтобы выяснить отчегоже всера небыло у учителей интернета и хронографа... Уилл был мастером прятаться, но не мог воспользоваться своими талантами, потому как не имел возможности обнаружить в темноте никаких укрытий. давайте на эту вот самую тему побеседуем годов через 25 :) Но тут-то дело за малым - написать ее. Онибыли лучшими наавтобанах инагоночных трассах, создав универсальный миф обидеальной спортивной машине. и мне вновь хочеться изводить пергамент на писмена... Обнаружиласть тут в залежах. Я вчера чуть не купила такие же в супер-маркете - золотые и серебрянные, но решила, что дороговато ( по 160 р штучка ) Расщифровать аудио мне так и не удалось. Любителям политических " боев на цветных карандашах " можно не читать. Самойто в разы дешевле сделать... Хоть я слушаю тул недавно, и ваще тока полтора альбома успел послушать, мне все это нравится. Едем дальше на север, проехали город Бовен и к вечеру уже были в Таунсвилл. Навернео поэтому мне мечталось о сынишке. Игрушку " Покорми меня " ооочень давно хотела сшить, но доделала только сегодня ( Яся стала плохо спать по ночам, а днем я от нее стараюсь не особо отвлекаться, поэтому времени мало ). Варикозная болезньматки симптомы Вопрос в том, как совместить все эти векторы. ника прости меня пожалуй ста я очень виноват определяет правила взаимоотношений вас и их и даже както легитимизирует ваш забор. как же так надолго артисты отпускают? Все желающие могли в любой момент совершить паломничество на кухню за добавкой. Мущщину очень озаботил фон ( точнее, надпись ). Ближе к полуночи, когда станция совсем опустела, он все-таки решился. никада не пить - оооочень знакомо! и эту Радугу Вы рисуете своими мечтами, фантазиями, елочными игрушками, украшениями. Не люблю рассказывать о себе. Симаатическая система наоборот отключает все железы внешней секреции: как потовые, так и слюнные. Разультаты моего длительного сотрудничества с компанией Nettrader. Съездеть чтоль в музей какой, коли они все сегодня бесплатные. Першпектива купания в ледяной воде никого не радовала. Это основной курс, в рамках которого есть еще несколько, но о них позже и дальше. Припораты от варикоза Съездели два раза с подругой за билетами, вечером в рассчете на то, что купим чуть раньше и пойдем, приехали... Тогдя я возмущался, что некто, не понятно как, получил архив диссертаций РГБ и барыжит ими. Сранно как-то поиск в ЖЖ работает. А вобще пришла в голову мысль: вроде не весна... Оченьславный ребенок, настоящий ангел! Пришлесь идти в обход... Приветствутется знание технических основ ( принципы построения БД, опыт программирования на Navision Axapta ), опыт работы на стороне заказчика. Провожаем жизнь мы с тобой. Опаслася ли он своих снов? Расжился на выходных экземпляром сабжа. Однажэды обезумевшая старуха Людмила Ивановна, раскидала все наши зуные щетки... Военные в целях безопасности оцепили пирамиды, а также Каирский музей и другие достопримечательности. Пользоваццо сервисом проще простогО! Железная машина поломалась об православную духовность. Небыло бы универа и одинаковых прохожих, калясочников с детьми, блонди в розовом и голубом, нелепых гоп возле игровых автоматов, и самих игровых автоматов, гламурных перцев, реалити дом2, партии КПРФ, алкогольных напитков, однообразия на прилавках магазинов, отсутствия скейтпарка, запорожцев ), разбитых лиц и т.д.... Сочуствующие тут же бросились развивать тему, ( и так достаточно бредовую ), и доев свой грибной завтрак и покатавшись на радуге ребята засели за КРЕАТИФФ. Их творения могли казаться странными, непонятными. Нсли не ошибаюсь - в первом томе Экономикса изложен. но когда сажусь писать, мне начинает казаться, что не следует об этом писать. Но зато были и болезни, и паразиты, и полное отсутствие представлений о гигиене, да к тому же численность населения контролировалась тогда не современными контрацептивами, а саблезубыми тиграми и всякими прочими хищниками. Однако статуи, выполненные им, всегда лишены глаз, - что воспринимается с трудом даже теми, кто ценит многие другие аспекты его творчества. Его рождение - самое таинственное и непередаваемое земное чудо. Челка отросла, лезет в глаза и уже мне мешает - но идти стричься, естесственно, некогда. Теперь сюжет еще круче: Джефф Гордон ( известный автогонщик ) взял баночку пепси со скрытой камерой и разыграл менеджера автосалона Слишклм много тоже плохо, но и какой-то постоянный минимум абсолютно необходим. Однимает хорошую девушку, его знакомую Все подруги всегда курили, я - нет, еще нет. Основыные же беды от злой Эриды, от нее же война, а не трудолюбие. Когда что-то не получаеться, падает самооценка, разрушаеться идеальный образ. Ктото выкладывал вконтактепро медикаменты смысл был в том что существуют российские аналоги которые намного дешевле иностранныхи приводился список лекарств Кроординирует движениие специальный человек, идущий спереди и, как правила, задом наперед. После этого греки завладели преимуществом и вскоре отыгрались, а затем и вышли вперед. даешь больше ножек, кстате можно немного и позагорать! Расказчик бодрый, понятный, а главное - компетентный. говорят у него был шок когда мы прихали. Не ссорьтесь на людях, и не показывайте недовольство тем или другим образом. Выдали студенческий билет, по нему она жила годы учебы. Проичитал удивленные отзывы о православном нисхождении огня. вобщем когдато год назад по сети ходила записо звонка в техпотдержку некого пользователя СТРИМ которого довели до пены у рта с криков " разрывы " Но, что ты с ними сможешь сделать? Сейчас более известен его сын, Максим Кантор, художник и писатель. Я могу есть нмного, но очень начинаю тосковать от однообразия. Открыывю книгу про детские инфекции, там все написанно и про слабость, и про капризы и про резкий подъем температуры на второй день, после которого и начинается высыпвние! Перессказывать содержание спектакля не буду - он ( как и все елки ) довольно забавен. он тряпки убирает там человек полуживой в хламину пяный!! фотка классная кстате, хоть и не по теме Разговор чтото зашел про роботов и я долго и с увлечением рассказывал ей о философско-антропологической подоплеке многих фильмов типа Иск разум, Валли. Иногда даже приятно, что выходные закончились и можно вздохнуть спокойно: D И если им вдруг хочется дать оценку, то чаще всего эта оценка касается именно этих шаблонов, а не реального человека. вот например незря же нас поделили на мальчиков и девочек, ведь девочки берут то, что не дано мальчикам и наоборот... Ну вот, сегодня дружно находились в каком-никаком напряге, по метро каталась много, ну и, собстно, ничего не было. Как-то раз было подобное с одной знакомой, но вроде бы инцидент был быстро исчерпан. Я б и на такой состав бы сходил, еслиб билеты стоили раз в 5 дешевле. Он становится безупречнее день ото дня, вот о чем я. Сегоднямрачная погода. Помоему в челябинской транспортной реформе никогда небыло головы. Священослужители ходят в белой или голубой рясах, без всяких золотых ОГРОМЕННЫХ золотых крестов. Неососознанно стал вспоминать этот стих, сначала отдельные строфы, потом куски... Сохраю на память кое-что по этой теме. все говорят что интернет-блогосфера - начинает както влиять и в чемторулить... the sims 3 увеличить грудь Но анализируем публичного человека, чьи высказывания по одному из самых болезненных вопросов современной России тиражируются прессой в качестве авторитетной, почти официальной точки зрения. Поэтаму возникло не допонемание и весь этот фильм. отпуск на носу - незнаю как его применить ) Свободя сознания - это отсутствие устойчивой психологической зависимости от чегобы то ни было. но сыро очень и ваще ат полный. Для меня было очень важно приходить поздно домой! Воинственный и могучий бог войны воплощает в себе страсть и чувственность Попрежнему есть молодые люди, делающие записи в свои записные книжки. В общем, я и так уже собирался ставить игру, а после такого... Хороших всем выходных и веселого праздника Песах! Первй день автобусная экскурсия, до биг бена не доехали. никада не угадаете что это кстате Создатели рюкзака учли, что бедра человека выдерживают бОльшую нагрузку, чем плечи, поэтому шестичасовое таскание сына в рюкзаке никак не отразилось на моем теле. Пожже буду выбираться в сторону центра. Я очень рада, что вам мои посты нравятся :) каждый атом Вашего тела был когдато материей ближайшей звезды Вполне себе нормальный лагер. Улица Кирова теперь пешеходная, давайте переименуем ее в Пермскую. Отадала долг маме и выдала денег на прокорм. Но ваще, конечно, хочу Джойстер. Я тебе ничего рассказывать не буду, про меня ты и так фсе знаешь... Сань, я про себя вобще молчу. Диктатура одной партии была заменена диктатурой военной хунты, столкнувшей страну в пропасть гражданской войны, продолжавшейся 10 лет. Препораты для похудения на заказ Это, конечно, цветные иллюстрации, никакие не фотографии. А еще там на митинге вроде бы выступали местные музыканты. нащет гуливера - детям читать невозможно. Самыи прикол в том что делая дела в своеи жизни мы этими делами показываем отношение к близким своим а когда много гадости сделано но попятную уже не-как слишком многих обидели. В этот момент я определяю, что нахожусь под властью этого наслаждения. Страныым стал институт наш мировой Рекоммендация к жизни в этом сценарии следующие. Проблема в том, что я вообще не знаю, кто мог бы это прочитать. Напректировали различные модели горок, решили сделать ее разноцветной. Удалитъ анкету на однокласниках возможно, последнее, что я скажу кого-то немного обидит, но этож дневник, блин, и в нем я должен писать то, что думаю. Селайя считает, что против военных намеренно выдвинуты обвинения в незначительных преступлениях. Рэмонт это просто полная жесть... Руки-ноги раскину и сплю, а еще пальцы растопырить - ваще снежинка! а еше хочу застрелиться сразу из двух пистолетов и почувствовать, как две пули расплющиваются друг о друга внутри черепа. Всю голвоу я сломал незнаю уже ничего вобоще нихочу Об этом так стыдно писать, но я только в начале пути... Афальтоукладчик с проясненным лицом, улыбаясь: Но для большинства людей новые нормы, по всей видимости, не угроза - налоговики и валютные контролеры просто не узнают о счетах, уверен Кандыба. Короче полный бойцовский клуб: " Он спит пару часов в сутки ", и кароче он вообще крутой чел... Читай книги с телефонов и компьютеров. Тепература в выходные флуктуировала в районе 37, короче нормальный рабочий процесс. Правило земледелия: Все взаимоотношения можно и нужно культивировать. Сделайте дыхательную гимнастику: медленно, глубоко вдохните, на шесть секунд задержите дыхание, затем в течение шести секунд постепенно выдыхайте. Кчакчество вроде ничего -- друг не жаловался. Симтомы зажатия пупковой грыжи Потму что это - от Аллаха. Разьве что бегущая вода... Прищлось ответить, что " случайно не я ". Из особенностей стоит выделить то, что мне пришлось вести занятия по математике. Осколки -- зубристые, непослушные -- дни, ночи, вечера. Прямо на храме, обвивая корнями его башни, растут большие деревья. Я вежливо отвечаю, что они ошиблись номером и Зинаида Васильевна тут не проживает. Результат на лице налицо ) Хорошо, что Гошу успели унести, и Гошины родители не стали свидетелями моего позорного открытия. Завал кароче, но я не унываю. Я знаю, где живет хорошее настроение! Прикодьные статусы для однокласников Много места, если не основное, в романе уделяется внутренним переживаниям героев. Вчера в восемь договорилась встретиться у Мака с подругой, откуда, собстно, двинуться гулять. Вообще врать намного сложнее, этож все надо будет запомнить Кому и Чего ляпнул, а у меня на оперативке объем не очень... Новая жизнь, как таковая, ее особо не заботит. Вы меня извините, но я опять про своих Какбе лично наблюдал щаз. И толи погода была мрачная тьоли еще что вобщем случилася со мной паническая отака, такая жесткая вот атака... Тяжело писать письма школьной учительнице русского! Только мне даже себе самой это признавать не хочеться. Помотрть на меня красивую можно тут: Я сомневаюсь, что белое золото лет через пять не начнет меня бесить. Наступила зима, хочеться играть в снежки. Спасибо милые мои за ваши поздравления, комплименты, улыбки, подарки, цветы. Професор хотел сдать рукопись в полицию и проверить чернила на рукописи, но патриарх не разрешил, а нужные листы вскоре были вырваны... тебя мы в первую очередь возьмем - ты умный и у тебя располагающая внешность! Пприкольные статусы в одноклассниках Каждый райтер или группа райтеров старались внести в свои рисунки что-то новое. Хотя, возможно, подобная неинформативность связана с новым Регламентом Премьер-лиги. Начьните питаться ПРАВИЛЬНО! ну всмысле еще одно солнышко, помимо меня: ) а вот както у коридоре встретил таки и припер. Ты -- бесстрашная кошка, которая неожиданно может выкинуть все, что угодно. Прснулась в ожидании чего-то чистогои свежего ) ) Все три монеты можно приобрести в едином наборе по цене 1020 евро Онвыгребает ее из под костей, которые лежат у его ног, машет своими хвостами, сворачивает и закрывает четыре глаза. В такой светлый праздник хочется иметь хотя бы небольшую книжку о вере, доброте и собственно Пасхе. Смешать апельсиновый сок, уксус, горчицу, мед и масло, заправить салат, посолить, поперчить, разложить по тарелкам. Приехали мы уже ближе к вечеру, пока заселились - стемнело. либо и небыло никогда любви то, либо действительно нам без них - МУЖУКОВ никуда!!! Теоретиков тоже в мире больше, чем надо. Сегодяшние утренние планы умеренно пострадали, к сожалению. Навверное он сейчас уже проклинает не хорошими словами меня... Немог долго уснуть этой ночью. Посколько отчет деловито и весело уже написан, не буду ничего переписывать, а линк вот он Так ли влияет на качество напитка распечатывание? Мывключились впроект натой стадии, когда автоматизированные системы вкомпании уже существовали наразных стадиях внедрения. Компьюьерные мониторы для людей с плохим зрением Дольше можно делать и булки, и ватрушки, и пироги, и пирожки с любой начинкой. А на самом деле, просто начальнег активно со мной дружился, а начальнице - его жене, это сильно не понравилось. Расмотрим все необходимые составляющие " революционного процесса ". Заити вконтакт без смс Рестаран оказался очень достойным, по настоящему итальянское место. Я категорически отказалась сочинять скорбные строки о живом человеке; ведь и за здравие умерших нельзя молиться, а уж за упокой здравствующих - вообще кощунство и грех. Потреяна последняя надежда на общение. Однако и в последние дни бархатного сезона в городе еще есть, чем полюбоваться и чему удивиться. Перед сном записывайте по одной вещи, за которую вы благодарны. Если раньше, несколько лет назад я друзьями называла всех, кто мне доброжелательно улыбнется, то сейчас... Ненавидшь бардов - независимо мыслящаю личность. неее, думаю что я его опереЖУ - и выключу ноут - патамушта он долго ищет ) Убрть мишуру, быть просто собой. Как раз перед ним был километровый столб. Процедудура отбеливания зубов в краснодаре Прийдя домой не верилось, что ТАКОЕ произошло и неверилось, что все обошлось! Вот интересно, австралиец Мердок критикует вопросы политической жизни США. Атаман свистнул своим ребятам, хлопчика тут же подхватили и понесли в госпиталь, а мы с Любашей побежали следом. Коммуниисты неплохо креативят в Волгограде накануне выборов в гордуму. Я даже припоминаю картинку из советских учебников истории. Мы миpные люди, мы миp беpежем, Но седня свредничала - заставила продавщицу 2 раза перевешивать! Вижазисты комментируют, что в этой работе трудностей нет никаких: лицо выбеленное, слезки невнятные. Итак, завтра защита диплома, после которой я мечтаю навсегда распрощаться со своей научной руководительницей. А какому стилю музыки вы сами отдаете предпочтение? Об Аввакуме узнал из постов Булочникова и до сих пор он иногда репостит материалы Олега. Незная отдыха и сна, слова сплетая, граматику не упаская, поэт творил. Ответсвенно заявляю. Установила словарик Lingvo на компьютер. Все сложно и оооочень бесит. Так уж получаеться что Эти люди встают между тобой и твоей Смертью. вобщем любую моральную поддержку, в виде живой души, в тот момент. вопщем будет тебе кофэ и какава с чаем ) Причем так сильно что я даже ахнула. потомучто коньюктевит может настигнуть не только Уму Турман и моего соседа по даче ;) А потом можна увольняться и хоть в Патагонию, хоть в Гондурас. Спокойно и неторопясь расселись, едут, молчат. мне нравится мужик в сером накидке с рисунко... Скачать дополнение для оперы што бы скачивать в контакте И если б не этот год в моей жизни никогда б небыло таких замечательно теплых Вовки и Аси, Ольги, Мишани и ежика, Дюши и еще многих других! Малчик читал с упоением Сухинова -- продолжения " Волшебника Изумрудного города ", имхо, бякость страшная, но читал. Тебя ощущала, в тебе растворяясь. А в подземельях замка выставлены различные орудия пыток. существуют люди у которых не голова, а непонятно что. Тогдасоответственно говорят о язычной, гортанной или носоглоточной ангине. Розврат то каков! За то, что щеки не могут улыбаться уже, потомучто болят. И соглашаешься с ними, что ветер живой, что его сила безгранична, и только когда ты на вершине мира, ты не боишься его, ты часть ветра и ветер часть тебя, мы единое целое. Потоиу и взываю к опыту сообщников Сапсибо тебе за внимание к моему ЖЖ! В центре очень много магазинов, где можна купить марионетки разных размеров ( от спичечного коробка до почти человеческого роста ) и персонажей. Тасовоать карты ни в коем случае нельзя, скорее потому что выглядит это странно. В следущий раз будет лучше. Лучше молчать и слыть идиотом, чем заговорить и развеять все сомнения. Как ни удивительно, но я сумела побороть свою лень, и взять-таки с собой форму на физкультуру... Из сообщения местных властей нельзя сделать вывод, является ли список окончательным. Обидно, что на многих фотках я в куртке, т.к. было довольно прохладно. Ладно, я разрешаю тебе какие-то силы ( допустим 100 легких лучников ) иметь в своем распоряжении - для поддержания внутреннего порядка. Не знаю, нужно ли тебе сказать " спасибо ", что ты предвидела этот момент... Основныой причиной по которой я сделал такой выбор, является то, что я очень хочу стабильности в стране... Одна из функций рекламы - образовательная, значит она, как и искусство, является способом познания ( пусть и ну оочень особым ). такой вобще не существует причины ну тоесть она лежит с вытащенным языком! К сожалению, по большей части, это нецензурная брань или откровенное нытье. Победители и призеры награждаются дипломами и ценными подарками. а ведь часто так и бывает, свободного времени мало становится, дети, работа и фсе такое... " Ты не видела, где мои носки? Ошибчно считать, что раздача ключей ведется только в одном направлении - от сервера к пользователю. Опаздываю седня на работу страааашно. Раасстраиваться от мысли, что плохо снюсь во снах твоих-бред! просто показалось, что за ночь он както поменялся, толи подушкой я его придавила! Но сегодня мне снилось, что я ей звонил. А ночи сейчас хорошие, какие-то странные, мистические, они мне нравяться... В отличие от рассмотренных выше проектов крупных порталов этот специализированный ресурс занимается только фотохостингом. На завтрак меня ждали... Вначале мы с полчаса стояли в здании, пока нас не отвели на площадку. Я пришла домой на час раньше, чем следовало бы... потому, что я просто уже замерзла - не, ну ни один обогреватель не помогает ( окромя мужчины канешна )!!! Компнаия превратит ваших близких в урны, алмазы, фарш, листья ясеня. Празнег жуть но пусть будет - повод встретицца с друзьями и подругами... Нажусь в непонятном состоянии, настроение - то ли прекрасное, то ли паршивое. Конечно же, не обойдется без конкурсов с призами от спонсоров! Следуюшей после джо в книжке идет точка закипания. Электонная система Сайлау покажет тот процент " ЗА ", который будет заложен в нее комитетом нацбезопасности, где стоит параллельный центральный сервер. Завтрак вполне приличный, незнаю кому он кажется скудным: несколько видов йогуртов, колбасы, сыра, булок, пирогов, джемов. И ваще, интернет - почти как телевизор - наркотикоподобен. Огранизмы тут же затеяли возню, стали брыкаться, визжать и медитировать мешали. Обучно она воду пытается пить из кружки, в которой я мою стеки и руки. Дооолго шли, солнце уже садится стало, в лесу слышны залпы - тревога в княжестве, ищут нас - беглянок. некотрые ничево не соображали вообще с небольшой затратой време ни удалось доиграть... Полиция сказала, что на Карловом мосту нет видеокамер ( наверное, чтобы не портить исторический вид ). Только сегодня работала с клиенткой про переживание того, что " непонятные неожидаемые собственные чувства и переживания, непонятные их истоки означают, будто меня нет ". На Серебрянном дожде я слушала переодически его программу про джаз. Однажды в этот мелкий город приедет какая-нибудь старая рок звезда, настоящий талант прошлых поколений, и поскольку моя группа будет единственной в городе, не прийдется разбираться, кто выступит на разогреве. Считала седня по календарику и теперь зачеркиваю крестики, в ожидании весны! Мало того, что они ходят только вперед, так еще дойдя до конца, становятся королевой. Написпл коммента он куда-то пропал... Выводок чудябриков полюбому будет со мной, я их в мастерскую отвозить буду. Я сплавлю вас вместе на все времена! ну вобщем признаков нет и беременности нет! Ну, была еше одна, заменить, что ли? Реклма Пепси советует нам помнить о прошлом, но жить здесь и сейчас. В интернете более общительный, чем в реальной жизни. Ослуживание безупречноне, а цена - как раз такая, что вы ищите. А раз есть о чем мечтать, значит есть к чему стремиться. ты с какова раена объясни сначало! Пролжительность занятий небльшая, всего 3 дня. Хочу завтра прикупить какой-нибудь симпотичный удобный блокнот или тетрадь. Всегда чувствовать себя у черты, что ведет к счастью и никогда не переступить этой черты. Всякый кто выжил героем продул этот бой Незнаюкто оказался главным редактором, а совет его был похожим на мамин. Мужчинаи женщина не могут жить друг без друга, но частенько случается, что идруг с другом им становится тяжеловато. Желаю чтоб на твоем жизненном пути небыло вообще никаких неприятностей. Давольно большая цифра для 15 квадратов, на которых эти милые звери живут. Уж не знаю, кто ей порекомендовал для такой роли меня, наверное, кто-то в Спорткомитете. но чувствую чтото нето в этой газели. А то последнее время раньше восьми встать не получалось, а в универ необходимо к 9.30 прибыть... Угошали вчера своей едой. Отркрыл для себя лыжный сезон ( наконец-то ). Подделаная подпись по определению неаутентична даже если мы не можем подделку распознать. Подрбный отчет в новом году! Нам нужно признать и отучиться от нашей внутренней мизогинии, так чтобы мы смогли преуспеть и спасти этот больной мир. Последователи Тантры скажут вам, что если у вас нет времени изучить своего партнера, вы никогда его не узнаете. Я наверно никогда не чувствовала себя такой защищенной. Эти люди очень принципиальны и готовы преодолеть многие трудности во имя своих идеалов. Город можно расценивать по его ритму, в Киеве самый высокий ритм, а когда я приезжаю в Х, то кажется что город стоит на паузе. В зале на одной из стен находятся надписи, сделанные якобы классиками. Обдумывю что с ним делать и как, постинги, комментарии, оформление... Вечром мы снова вкусно ели и долго спали, все исключительно для того чтобы проснуться к вкусному завтраку. ктото жертвует всем ради любви и идет на престуление, а кто то совершает подвиги во имя любви, кто то отторгает себя и посвящается любимому человеку а кто то заставляте ради нее же посвящаться ему. Жыгули ( она же классика ) стоят на конвейере 30 с лишним лет, являясь, по существу, убогой копией Фиата середины 60х, Приора с Калиной - унылые образцы дизайна 15 летней и технологий 40 летней давности. Суп проще вылить в последний день и сказать, что да, было очень вкусно. Отечетсвенные банки в основном работали с корпоративным сектором, а его состояние сейчас, мягко говоря, не блестящее. Ваш партнер не является вашим врагом. вобщем, вижу цель, препятствий не вижу ) Снова подборка светильников по личному вкусу. Даже детей своих угомонили, что само по себе редкость. Началасвою карьеру ди-джея в 2007 году. Вадим во время важных совещаний прячется под столом, зачитываясь медицинскими журналами. Врут зеркала, что красота померкла, врут зеркала, что молодость ушла. Отметил новый год в больнице, подарив старому свой апендикс ( незнаю, честно говоря как правильно пишется это слово - не казнить ). Приведемпримеры полного несоответствия проекта многим параметрам, что и вызвало социальную напряженность на Загорянке. Прыятно познакомицца! Моий бос бывает крайне неадекватен, а иногда и более того, зачем ему вдруг понадобился мой приезд, я так и немогу понять, ну окей я буду. Монастрырь был очень большое и красивый. В деревне жил старик, очень бедный, но даже короли завидовали ему, так как у него был прекрасный белый конь. Правосланая Церковь - является единой и соборной, а потому ни кого из ее членов не может не волновать судьба своих братьев-единоверцев, где бы они не находились. Это же не развалины средневекового замка, где можно найти, если повезет, сундук пиастров или череп бедного Йорика. Отжимания от медбола 3х10 кстате баня загорелась как шульга с зимариным уехали ) Конкурс проводится одновременно в России и в Италии. - незнаю, ходить на море, делать ремонт, кого нибудь встретить... Бывали случаи, что за день заливало весь подъезд. Творческий потенциал может увеличиться. Проблема есть, даже кот у меня насмотрелся и научился - переодически мимо попадает ( он же здоровый у меня лосяра ). Особливо это чувствуется на премьере фильма, когда есть с кем поздороваться. Я вобще горжусь, как за себя не гордилась сроду. Муж уже вернулся, и Ваське спать пора, - Боже, как глупо все вышло! Ощастливленный новым альбомом, выхожу на просторы ночного города, и решаем мы с Левонтием и Анжелой идти гулять по оным, по пути втариваясь коньяком и колой. Сергейвикторович благополучно улетел в отпуск, а значит что? вижу тряпки лежат на полке у друга спрашиваю чть это И естесственно разрешили взять со мной девушку. Ну вобщем она имеет - Женское счастье! Особенный человек, естесственно - виделись по полтора часа минимум каждую неделю на протяжении 8 лет. Кто-нибудь сталкивался с такой ситуацией? Поведйте плиз, а какой предмет она ведет? Рад, рад за тебя, теперь тока экзамены сдай... Мне ничо вот пока непонятно. Вот только это по-свински и совершенно нагло. Обчным мылом лучше не мыть тело, т.к. мыло сушит, используйте гель для душа. И - никого из " моих ", а " те, что наполовину " - естесственно, притянулись к другому полюсу. С ним можно говорить на любые темы, кроме конечно отношений с другими мужчинами, чтобы просто напросто не ранить его. он естесственно за ним нагибается и вдруг в глазах появляется иконка. Чего же они так испугались все эти римляне, всего-то книга, всего-то о любви... вобщем питаюсь окрошкой, пиу минералку, смотрю уже 5 сезон клиники. Потмушто время еще есть, и деньги тоже. Спапсибо огромное за репортаж! Выходные выдались на редкость - и радость - долгими и, прямо скажем, отдыхательными. Сегодня в мои выходные, мне позвонил начальнег и вызвал завтра на " разговор ". Если Вы полетели самолетом Аэрофлота, то никогда не сдавайте в багаж ценные вещи. Поднмать надо не читаемсоть, а культуру прежде всего. Предпложительно основан в XII веке, в период правления династии Неманичей. Неожыданный у вас, мальчеги, для меня диалог. Спасатель - от него зависят человеческие жизни, а общем и судьбы людей. Хооршее такое кино классическое, смотреть приятно и легко. Ну а больше я ничего не могу советовать, потмоу что очень от секреции зависит: ) к себе его забрать не можем, т.к. с моей собакой не сживется ни одно живое существо. Изданный в 1368 году, этот устав определял горное право, порядок трудоустройства, регулировал добычу и торговлю солью. вобщем о Йоте я услышал впервые из уст оченьпродвинутого стулента-экономиста Артура который вместо книжек и тетрадок носит с собой маленький ноутбук. Работадатели не должны платить государству ) Присоединаюсь к справедливому негодованию. Ваш цветок всегда должен быть рядом, чтобы защитить от обмана и зависти и ослабить приступы ревности, которым вы подвержены Собственно, я им заинтересовалась не только из-за статьи, а вспомнила, что мы как-то заказали его в каком-то кафе в Амстердаме. Попугай с удовольствием любуется своим отражением, надувает щеки, ставит гребень. Вот хоть бы раз она чего-нибудь ответила. Посследнии две номинации не слишком оптимистичны, но если даже, мы хотя бы в одной ( из трех ) номинаций получим первое место - тоже не плохо, пиар как-никак. Но ето хорошо, так как затем из отколотых зубов удаляются нервы. На данный момент внутренняя валюта сети употребляется для покупок виртуальных товаров в играх Facebook, в некоторых интернет-магазинах, работающих в социальной сети, а также для расчетов в скидочном сервисе социальной сети Facebook Deals. крем детский ( нет, Я не перепутала со вчерашним днем - Я и седня купила, вместо лосьончЕка для тела буду пользовать его ) только она не желто-красная, а невзрачного цвета и сухая Сидела разбирала почему в момент, когда я сдаю экзамен уже 4 раз кто то разговаривает и я теряю концентрацию. Вот это-то вкупе с духовными скрепами на что списать? Но сейчас я точно знаю - на вашу поддержку в беде я могу рассчитывать. Очнеь скучала по нему все лето. ну кстате девкам было не 13 лет когда им в руки дали инструмент, а 16-17. Сложно на самом деле обяснить то, что происходит в моей душе. Парламентський принцип формирования правительства, двухполюсная поляризация политического спектра, наличие у партии политической позиции, сильного лидера и известных имен с репутацией профессионалов дают этому " правительству " массу преимуществ уже на старте. Не особенно честолюбив, но не терпит, когда его обходят по службе, из того же чувства справедливости. пожилая девица, сестра князя Иосифа Венцеля, постоянно живущая в Саксонии. Приезла мне чудище? Просвестевшая над головой пуля заставила его оберутся. Некотрым изменениям, прям скажем, удивлена... Этоперевод фрагмента воспоминаний о жизни в Англии, в провинциальномшахтерском городке рубежа 50-х и 60-х годов. Это была единственная экскурсия на гору Монсерат ( о которой я расскажу в следущий раз ) в нужный нам день. и он на удивление пришел раньше, обычно он опаздывает на 10-15 минут и я его матерю потом, но седня он меня лешил этого удовольствия ) Мы так много говорим о любви и так мало любим. Я узнала об этом давно, но меня до сих пор приводит в ужас эта мысль. Постарайтеь теперь найти и отсканировать все законы касаемо авторского права, ну и гражданский и налоговый кодекс - так, за компанию. Он станет пилотным проектом в рамках " туристического кластера " на Северном Кавказе. Проыдя еще немного, он понял, что идти дальше сегодня не сможет и остановился в Эрендзи. ну тоесть ничего конкретного, а в целом обо всем этом. После изъятия Рожновым у меня диктофона, сопровождающееся ударами в спину, я понял, что таким же образом могу лишиться и фотоаппарата и надо спасать хотя бы имеющиеся кадры. Зачем мы пишем дневники? Если очень хочется спать, вздремните. Хочется жить отдельно от этого сумашедшего стада, извените, не в обиду сказано. Он подразумевает следующую логику исследования: полностью просеквенировать несколько десятков геномов высокогорных жителей и - путем многовариантного анализа по сравнению с геномами обитателей равнинных областей - выявить различия в генных характеристиках. Чувстовалась рука тренера. Хранительница домашнего очага должна быть верной мужчине, иначе ее дети окажутся без добытчика. Норнштейн - это человек, которым мы можем гордится, что живем с ним в одно время и в одной стране. вообщем пока не прочитаете не поймете ) Низкая интегpиpованность: следует своим побуждениям, малоконтpолиpуем. вообще незнаю чем занять себя этим вечером. Кстати, что-то не все цифры видны. Посорилась с фотофайлом, как подружусь еще с какимнить ресурсом хранения картинок кроме лж плюс, то выложу все сюда еще ) Поэтому если я случайно начну истерично хихикать, или неуместно шутить, или неуправляемо объясняться в привязанностях - это нервы. Сначла купила пластырь Никоретте... Представье себе какой нибудь офис на территории бывшего СССР не отмечающий 8 Марта, Новый год или День защитника ?????? Рюкзазк часто добавляется к последнему варианту. А к тому, что ( исключительно на мой субъективный взгляд ) ребенок и сам может сообразить, как слепить елку или дедушку Мороза. Дае не знаю, что сложнее, про нотную грамоту молчу ваще ) Он говорит о том, что есть иная действительность, и стоит ее постичь, как эта так называемая реальность просто блекнет, становится нереальной. Офицыальное фото, от организаторов Я возмущалась - ну как это, как-то это так звучит нехорошо. И я безумно рада, что я здоровая, а не инвалид. Рабочный день длинный потому что здесь на конец много дел. По-моему, не одна я испытала эстетический шок, потомучто область в радиусе предполагаемого эпицентра в случае падения этой биопирамиды в считаные секунды зазияла неинтеллигентной пустотой. Мозайка из сплетенных пальцев наших рук, чуть ближе друг к другу, ощущение сказочного спокойствия и защищенности в его объятиях... Уударение всегда напервый слог, две гласных означают более долгий звук. Про вас можно сказать, что вы любите алкоголь - без всяких задних мыслей. Любоее внедрение в тончайшую паути энергоинформационных нитей человека может принести огромный вред. И у меня, кстати, тоже в машине аккумулятор внезапно сдох. Неридуманная истоиря из сети: Я купил весы, с ними время летит незаметно. Так что, как сказал Поль Валери: " Если кто-то лижет тебе подошвы, прижми его ногой, прежде чем он начнет кусаться ". Перессказываю со слов, не знаю, насколько точно, но постараюсь. этож простите не кольчатые черви и не растения, которые размножаются пучкованием; ) Подргрузился список контактов. Основвная часть архитектурного ансамбля, если так можно выразиться, состоит из самолета Boeing 727. Наберала скорость еще в горах... Папа, откуда ты черпаешь эту информацию? Сочувстсвую и желаю чтобы все решилось, а как помочь в таких ситуациях - вообще себе не представляю: ( Девченки завижжали при первых аккордах первой песни сыгранной нашим бэндом. Вот пишет замечательный издатель « журнал с вашими стихами напечатан ». Чувстовать принадлшежность, чтоли. Невозмозможно свести Православие лишь к индивидуальным убеждениям, оставив при этом в стороне практику жизни. Пишиите мне, чтобы я смогла убедиться, что мои сообщения вообще где-то видно... Неодназначное чувство у меня осталось после просмотра фильма, с одной стороны чувствуется тяжелая атмосфера в которой принимаются важные решения, происходит изменение сознания героев, рушится внутрениий мир, стороятся новые ценности. Нагладно привожу еще один рассчет чешский писатель-постмодернист, известный широкой публике по роману " Невыносимая легкость бытия ". Поетому для взаимности у нас должны быть хоть какие-то общие интересы. Как я понял, это изначально сделано. Строгость задаваемой им системы координат загоняет человека в созерцательность. Эмоциональаня перегрузка. В первых строках своего письма спешу сообщить, что я девушка. Кинопокмпанией DreamWorks планируется выпуск планшета специально для детской аудитории. Это как раз та развилка, до которой мы потом НЕ дойдем. То что пристегиваться необходимо и нужно вопрос понятен, но то что ты будеш нести ответственность и за тех кто не пристегнут в мащине вобще, наводит на мысли. Всеми правдами и неправдами пускают социальную пыль в глаза. Сами убрались или с чьей-то помощью во время гололеда и теперь залечивают раны? Приклееный скользяк или нет-это точно не угадаю. И в очередной раз думала о том, как легко, естесственно, просто. Преинтерснейшее положение у нас сложилось на рынке платежных систем. Сегодня улыбнуло: шла в поликлинику менять полис ( дооолго тянула с этим делом, так долго, что дело стало похоже на французский батон - такой же длинное и нелепое ), проходила мимо какой-то пятиэтажки, а там вовсю трудятся славные граждане Таджикистана. я первый раз каталась на таких креплениях ) Благодоря моей давольно набожной бабушке, мя привыкла отмечать еще один праздник, а именно - именины... Я морально уже готова произвести на свет название для такси. Следущие 3 часа мы были заняты преодолеванием трудностей, протискивались в узкие щели, спускались, поднимались, ползли на карачках, шли по колено в холодной воде, отбивались от летучих мышей и филиппинских школьников на прогулке. Преспособление электрокалорифера, установленного с поддержкой винтов в дно корпуса, состоит из осевого вентилятора и спирального электронагревателя. Причем, у них оооочень много заказов. ах да, в завершение, я седня еще сходила в бассейн и наплавалась вдоволь ) В книге приведены практические советы как справляться с реальными и часто встречающимися проблемами внутри фирмы. а некотрые фразы так вообще убивали. Чтоб глаза у ней счастьем светились Спасибо за твои записи в ЖЖ, которые я иногда залезаю перечитывать. Теперь я знаю што бомжи дерущиеся на улице - это не бомжи а РЕСТЛЕРЫ !!!! Баклажаны, перец, помидоры запек на открытом огне, почистил шкуру, нарезал и смешал с чесноком и кинзой. Единственный минус Тельцов - это упрямство, даже когда они неправы. Ваше отношение к идее равенства мужчины и женщины? Многабуков, сначала хотел сделать из него юпик, но в миниатюре совсем не то ( После войны в Ливии около миллиона египтян вернулись на родину, пополнив без того огромную армию безработных. Мне только кажется, потому что я в них совсем не разбираюсь. Эффективность способа напрямую зависит от скорости его применения. Осталалось понять что же все-таки сдохло: мать, проц, видюха или ( ну пусть будет так, пожалуйста !!! ) блок питания. И то еще минут сорок наша четверка ждала, когда подготовится машина инструктора. А я читаю все молитвы на ночь, я книжку в церкви купила, а вот Отче Наш не могу наизусть выучить. Стратусы для одноклассников смшные Я верю, что браки заключаются на небесах, а значит мы уже записаны в бортовом журнале на места рядом друг с другом. Сейчас в моей голове происходит примерно такое: Однокурссница в аське ошарашила предложением написать мою фамилию на ее лабораторках, типа мы вдвоем сделали. Когад Белка в очередной раз пришла ко мне и подставила мне пузо, япостелила пеленку у нее под боком и положила туда Лилового Червяка. Забыла в доме джинсы, а джинсовые бриджи, найденные с прошлого лета, естесственно, с меня свалились. Ну а космодромы, понятное дело, должны охраняться Всего в этих категориях от России участвовали около 60 работ. Оно тоже прекрасно, оно настоящее, живое, правдивое. А в 8.30 я пошагала на пары, а вечером дописывала курсовую. Однако подходы к решению одних и тех же правовых вопросов иногда разнятся. Это привело к девальвации духовных ценностей, апатии и аполитичности. Я уже подумала, что это насовсем... Потом искренне удивляются и бранятся, когда им откажешь. И мерное биение пульсара, сжатыми кольцами магнитного поля, отсчитывающего тысячелетия жизни огромной вселенной, окружающей нас. Мозк готов треснуть. Ну и слегка фотки пейзажей вокруг моей теперешней берлоги ( всмысле института ). Я как пешеход буду вас бояться, как и всех машин ) В ночь с 7 на 8 декабря " Финикс " уступил " Сент-Луису " со счетом 3:4. В прошлую субботу разбили на кухне пустую пивную бутылку в пятом часу утра. Кто заменит Деппа на посту исполнителя главной роли, пока неизвестно. так что, Дима, давайте сначало вы в Тарусу, а потом к нам в Одессу? Коы к играм вконтакте Нашла троллейбус, расположилась в совершенно пустом салоне ( ессно, сейчас мало охотников ездить в Эстонию ), долго созерцала пейзажи за окном. Заффтра попробую выручить новый. Вообщемто любая посвященная спорту новость для меня как владельца этого блога можно сказать сюрприз, вот кажется приведенная ниже класнее и не пожелаешь ) ) ) Совршенно измученная спазмами, ознобом и слабостью, я зарылась в одеяло, и пролежала так до вечера. Начал читать с конца и поэтому уже был морально готов в концовке. у птенцов кстате, нету мышц!! Вот и получаеться теперь что женщина действительно неделимое целое с мужчиной. если в Киеве маршрутки не будут брать " стоячих " людей битком - то ехать на работу и с работы многим придеться не час-полтора, а два-три... У меня, так же, как у пациента, было много непонятного, но игра состояла в том, что я - врач, а он - пациент. Позаввчера пересматривал " Горбатую гору " и в памяти всплыло сразу 2 человека... А все же с огромным удовольствием я бы поехала в Москву, но - невозможно... Вобщем береш картинки из журналов, вырезаешь интересующие темы, делаешь из них коллаж и направляешь энергию для реализации желаний. Наконецто мои рученки добрались на кнопачки написать в профайле и вот решительно собираюсь накатать несколько постов о том что наслучалось за это время... День прошел полностью одухотворенно. Прикладывам к разбитому лобику извлеченное из холодильника мясо, пытаемся успокоить и попутно осматриваем. Ну а если что пойдет не так, как надо, обращаться к семейному врачу. Следеите за нашими репортажами. Итак, что вы можете подарить мне, если не знаете что. Пасажирам задержанного рейса выдали лежаки и огородили территроию вокруг них красными лентами Теперь ты снова будешь писать добрые сказки, а я всегда буду рядом. Любопатства у них побольше, чем у нашей легендарной Варвары. за небольшие денги или даже просто так в умелые руки отдаються замечаельные книги Практичекси никакой информации из вне. вот это у меня пробел пока - нащет струй. Нородные рецепты отбеливание зубов вобщем срочно надо в сберкассу. завтра днем еше будем тут, уедем, скорее всего, на 3хчасовой электричке. Ручниками я считаю любителей, которые тоже знают все фотографические азы, но при этом снимают исключительно в ручном режиме. Сегодня, согласно всем кодексам и сводам правил, заверив у всех заверителей и проставив все печати, оффициально поздравляю товарища хороше быть слепым и глухим, и на всякий случай немым... Мы не сразу отыскали инструктора, но сильно обрадовались, когда нас нашел доброжелательный мужчина с ооочень накачанными руками. Я уже забыла, что это такое - идти в обуви без каблуков. Настроене не понятное какоето солено-сладкое с одной стороны жалко расставаться с родителями и другими близкими людьми, с другой радость от наконецто сбывающеся мечты, можно и так это назвать, хотя скорее стремление к более спокойной жизни, ну и для меня лично есть огромная доля приключения в этом всем, это как минимум интересно, я всегда мечтал о таком путешествии, вот так сижу обуреваемый чувствами ) ) ) Прогматично так подумайте, если охота будет. Недавно говорила с одним человеком на эту тему, и он мне поведал, что его родственники вобще не общаються друг с другом Соедените две получившиеся смеси в одну. И вход в дом каждый хозяин обустраивает с таким размахом! Это еще хорошо, что ты в рыбном журнале работаешь. Хюлькенберг квалифицировался девятым, но на старте у него возникли проблемы. вобщем сниццо мне что я нашел таки артефакт позволяющий видеть что там у людей внутри... Что белому человеку кажется моральным, для японцев аморально. Просматреть скрытую информацию вконтакте Практичнески минуя сознание, ощущение этого постоянства уходит куда-то внутрь и, волна за волной, ложится где-то очень глубоко. Мне нравится, что он кладет мне голову на плечо, и это - естесственно. Неторопясь и на низкой температуре печь безе. Мир не шибко справедлив. Если сравнить площадь крыши и нашей квартиры, даже только кухни с прихожей, потому как теперь сволачи выселены туда, так на крыше места явно больше. мы с Денисом вместе рисовали, он мне очень помогал и поддерживал, это доя меня очень важно Это где такое случилось? Подхожу к тому дому, где скребут лопатами таджики, и слышу: " Вот апять ана!!! Сегодня поперлась в поликлинику близ дома, полчаса блуждала, потом набрела, мне дали от ворот поворот, дескать, я ни по прописке не подхожу им, ни по универу... Сгодня гоняли с любимой на стельбище в Манчестер вообщем уезжали в печале и тоске, когда еще предстоит эта поездка, но с огромным желанием приехать сюда летом!! страшно както теперь домой поздно возвращаться! Если она этого не дождется, или Вы ей не напомните о Ваших отличиях, то она будет действовать строго наоборот. Я наливаю воду в кулере, как обычно, смешиваю холодную с горячей, а он мне " Осторожно, вода оооочень холооодная! А гостинная она для того и делалась, а то в РД Урала уже ваще ничего святого не осталось. А потом я доолго-дооолго-доооолго их юстировал. Потохоньку полегоньку бюрократические иннициативы приобретали маразматично-параноидальные оттенки, но, бисмиля, многие иннициативы так и остались инициативами не получив материального воплощения. И как он с остальными членами семьи? Да что с тобой говорить, ты ж наполовину в земле... В очередное пробуждение, я застаю рассвет - небо набирает все больше светлых тонов. Нехотя поднявшись, я переоделась и побрела на кухню... Но на деле Марк никогда не умрет в каком-то там лесу. Не о визите же к элитному пульмонологу нащет обструктивной эмфиземы. Под надзором нескольких учителей они проводят сутки в этом центре: играют, читают, проводят дискуссии. Правда я его как раз с 80-х и люблю. Но как и в любом парке там ессно были эксурсоводы. Значет в субодту покажунт кено про кедал Кедалы ( ПатамучтА рисовать на себе я не могу, раздеваться без рисунка как-то тупо, а красивая я итак ) ПАСЕ это всего лишь ассамблея парламентов. Стоит возвысить мозг над остальными органами, и ему останется только критиковать, то есть выхолостится его основное предназначение. всего диалога мя непомню, но посмеялись от души ) Подскажыте мне темному, чего зазырить перед сном, типа можно без мяса, можно даже без кровищщи. Он был молчаливым симпатичным брюнетом, а я рядом с ним была невыносимой болтушкой. Прердлагаю вашему вниманию, похожие по смыслу, но разные по содержанию два фильма о любви на всю жизнь Никогда не думала, что меня могут поставить в тупик такие вопросы как: " Какие мне нравяться фильмы или актеры? " Хотите разъехаться - так есть же обочины! И нужно ли вообще спрашивать разрешения работодателя на добавление материалов в собственное портфолио? В октябре 2001 года он попросил помилования за примерное поведение в тюрьме, однако суд отказал ему в освобождении. У двери валяется серая тряпка. Суббота прошла под эгидой хорошего настроения! Покапаться в песке - одно из любимейших занятий. забавное обстоятельство - в эти выхи был день города и пьяного люда на улицах было ну ооочень много. У нас все выкосили нещадно. Сентябрский семинар - продолжение встреч, целю которых является исследование истории диктатуры и протеста против тоталитаризма. Рекокомендую к сотрудничеству. Проморзгло и муторно. Вот такая вот история, вообщем то из статьи понятно, что наши власти исполнительные теперь могут в пьяном виде делать чего захотят, и отвечать они будут только перед своим начальством. Рапредилить по пекарской бумаге натертый имбирь и цедру и сушить 30 минут. А Фея стояла на балконе и думала о стрижах, которые стремительно проносились перед ее глазами. кстате, вам финдиректор не нужен случайненько ) Србственно вторая наша экскурсия Есть дача, а это оба выходных плюс вечер пятницы. На следующей неделе в четверг 11.08.11 вечером собираюсь в Магнитогоск своим ходом. Согласно поверью, есть минуты, когда пожелания, выраженные вслух, исполняются. Далее хочу отметить, что моя работа связана с постоянным общением с людьми. Длился этап чуть более часа. Как открыть однаклассники через секретный вопрос Напьешся в хлам и станет противно соратникам и друзьям !!! Обязательно хочу миссию с дирижаблями, обажаю эти летательные аппараты. Акинфеев вовремя вышел из ворот и не позволил бразильцу открыть счет, однако на добивании первым оказался Ибсон, который и расстрелял пустые ворота ЦСКА ( 1:0 ). Как вы полагаете, справедливы ли эти упреки? Нсущного много и оно разное, но мне хочется вернуться к теме, о которой не говорил бы только ленивый - наш кризис. Ты специально синхронизируешься со мной по выходным, когда меня нет. Теоретизированое мышление необходимо для решения проблем. Вообщем вся дорого туда-обратно заняла общим счетов часа два с половиной ( Пряный аромат гвоздики способствует укреплению памяти. Или просто не считает нужным замечать собеседника? Хотя по виду о тебе такого не скажешь - но в тихом омуте... Масс-старт в биатлоне впереди еще, например... Я же говорила, что счастие грядет ) Теперь таких кинотеатров в Москве не существует. И к своим проблемам просто присмотритесь... что бы больно небыло, когда ешь то, что нельзя ) Так возникла вторая после Ассирии мировая держава. собсна это почти в одно и тоже время снято, просто облака плывут Да, мне интересно, как люди живут, и что у них происходит. пройдем или нет - незнаю и судить не берусь. Соцерцать красоту бытия. и наверное хороше, что я там был один... И сетевые библиотеки больно бьют прежде всего по авторам. Самымидревними памятниками Синопа являются крепостные укрепления, построенные при понтийском царе Митридате IV. Провниция с замашками большого города. Следует отдать должное заказчику - очень четко очерчено техническое задание на производство дизайна Написание " Бедных людей " ( это, если кто не знает, первое известное произведение писателя ) сопровождалось бы очень полезными комментариями от читателей блога. Но тут вспоминается, что, например, пару лет назад в Кельне, в связи со строительством мечети, когда едва не дошло до побоища между сторонниками и противниками этого мероприятия, с обеих сторон присутствовали сплошь вполне " европеоидные " господа - с левого и правого края политического спектра. В свою очередь газета " Гаарец " утверждает, что французский министр обвинила палестинских боевиков в бесчеловечности и потребовала немедленного освобождения пленного. У меня нет новогоднего настроения, одна апатия... Рауль тоже не кантерано, как любят считать многие ) Рита ходит в коридоре, разговаривает по телефону, на попытки загнать ее в чемодан не реагирует. Воопщим моя мысль - Классика РУЛИТ... О, точно пойду с сентября на занятия йогой. Третий год подряд я, благодаря маме, уезжаю на свой день рождения в другой город, в другую страну. Сульптура " Медведь и земляничное дерево " символ Мадрида. Разгодать вновь ту загадку черт, неужели я после своего черноморского лагеря тоже был так импульсивен? вобщем я вобще без загадочной улыбки об этом фильм вспоминать не могу ) Какая татуировка бы вам подошла? В летние месяцы Роспотребнадзор запрещает жителям края купаться в реке. Традиционно правильная инвестиция - классический кашемировый джемпер цвета беж с V-образным вырезом. а так хочеться что-то мочь менять в этом мире, не обезательно менять, но обязательно быть способным это зделать... Привезли кучу фотографий, впечатлений и средиземноморский загар. И я должен подчеркнуть, что настояший танец ето одно из самых прекрасных вешей, которые парень может поделить с девушкой! Обшая топография Южной Пристани Коссово - город, расположенный недалеко от районного центра Ивацевичи, известен памятником архитектуры - дворцом Пусловских. Он у меня живет в оооочень маленьком горшке ( примерно с два моих кулака ). Да и в любом случае, нужно найти какое-нибудь безопасное место для ребенка. Однако есть несколько нюансов, о которых хотелось бы написать. Нет ничего хуже аццки болящих зубов. От всей души желаю каждому вновь обрести потерянные светлые и добрые качества, Я как душа Тома Рэддла: разбросана по сторонам света. Google прекрасно справляется с тем, за что берется. Иногда стоит постараться, чтобы не упустить действительно милого мальчика. В перуанском городе Ило местный житель Рамон Санчес разграбил древнее захоронение и жестоко поплатился за совершенное кошунство. Спаособность не завидовать - это величайший дар. Нескольнко дней назад я потеряла паспорт. ТОЛЬКО ВМЕСТЕ Заключительный аккорд: экономическая интеграция РФ, Украины и Белоруссии. Терртория обитания зверьков, а это достаточно высокогорное плато в Андах, была обнесена колючей проволокой и охранялась военными, а сами животные объявлены национальным достоянием страны. перекрыли сайт однаклассники как быть Каждая фотография несет немалую частичку души этого красивейшего места, а каждую вторую можно отбирать и продавать, как открытку. Мы пошли в " Художественный ", нас встретила приятная неожиданность, в афише сего небыло, но мы оказались на 3D версии! Мааааммоооочкииии !!!! только что получила список вопросов для ГОСов... Я в таких ситуациях за конкретные предложения. Я не c читаю нужным с Вами полемизировать. Сейчас же - я дома, мне все сдесь нравиться. Не считая этого, запрос розыска раздачи осложнен тем, что програмка ориентирует его к поисковой системе в браузере. Ну, клятвы давать Бог запрещает. Большая просьба: приходить на занятия со сменной обувью. Опять качает головой и улыбается. Преславутая подкованная блоха, оказалась, почти самой простой! Извените если ярко вырозился. Ну во первых начальник чисто в теории видит проблему шире. Напоменило стааарый анекдот... Из-под плаката выглядывают очаровательные ножки дерева ) Пока не знаю, поеду до Львова или нет, да и вообще не могу сказать, поеду ли. прийдя в квартиру мы помыли руки, начали ставить мне иракез... А мы пили китайское сливовое вино, обалденно вкусное... Обман зрения ето не прекол просто смотрите в центр тоесть вы придете с паспортами и будете канючить - нихачуу нихачууу... Обьехав таким образом две-три фермы, и заменив при этом пустые фляги на полные, грузовик наконец часам к 12 дня вьехал в долгожданное Сандово. ни ля-ля так не получаеться, а если получаеться, то ни капельки ни искренне, и даже очень натянуто... Половозрлые и не очень парни и девушки одевают алые ленты и мегаплатья, а потом идут пить. Взрывом уничтожил шесть автомобилей, саму автомастерскую, ну и, естесственно, нашего дарвиновского номинанта. Кроме того, частные средства пойдут на строительство пяти новых стадионов. ладно когда он какбы из под полы. Муж включал телевизор, ложился на диван и открывал бутылку пива. 37-летний форвард заявлял об окончании карьеры еще в конце прошлого сезона, но согласился остаться еще на год, дабы помочь « Арминии » вернуться в Бундеслигу. Насчет вечерних незнаю, но бегущего мужчину лет 70 сегодня в 11, на аллее видел ) Но теоретизировать тут бессмысленно. Собственно он и от дождя ооочень пригодился: - ) Наудивление я увидел интуитивно понятный графический интерфейс, установка прошла успешно. да вобще по сути дела с огнем ИГРАТЬ не нужно; ) Новозаветняя модель рулит! Неговоря про то чтобы попасть в ангар с танками тоже надо было отстоять очередь... при этом явно торопился уйти и одновременно кому-то писал смску... Как вы знаете, у нас в фонде есть множество самых различных программ помощи детям проживающим в казенных учреждениях. Интересно, как там работа объективов регулируется? На следующей неделе будет новый список игр со скидками. Сердобольные женщины, которые приносили мамке каждый день немного еды, различали их только по масти. Потом нас загрузили в машину инструктора, и повезли сдавать экзамен в городе... ето моя бывшая за ето спасибо, Обычныэ буддисты, просто шаблоны негодныэ. Иначе происходит развитие у более частого, вероятно, более чистого и настоящего типа женщины. Расчитан на определенную аудиторию, адаптирован под ее восприятие, На днях перед сном рассказал мне: " Я не любю кефир ". Оплаьа в контакте через терминал Очинь поразило меня обилие всяких чаев на кухне в новом офисе, в особенности факт присутствия моего на данный момент любимого чая, который пахнет глинтвейном ) ) Потртатить средства они смогут на любые цели. Рассчетов мало, одна логика. Имбирь активизирует защитные силы, помогает сохранить молодость и здоровье до глубокой старости. очень уж он неприглядно выглядел, непредставительно както, да и ваще опустился парень ниже некуда, а про бабежку я его вообще промолчу! что то даже не хочеться подводить итоги, вспоминать этот дурдом Без изображения хорошо пойдет, никакого бамбука не понадобится. Энергосистема Южного Урала относится к дефицитной, то есть нагрузка потребителей превышает нагрузку электростанций, однако, благодаря строительству новых объектов, в том числе Южноуральской ГРЭС-2, генерация получит дополнительные мощности, и потребность в электроэнергии будет закрыта собственными ресурсами. Низкий срок службы - 1000 часов, но некоторые служат дольше. На блогах очень много трепа но иногда среди этих залежей выходит нарыть ральные жемчуженки ;) И честно говоря это не я его это он меня таранил... Постраее дедуля был ) прийдя на репу выяснилось, что мы сегодня опять неполным составом - сачков свалил на дачу. Сколкьо стоит домик на острое в тайланде Семантческая поисковая система ( используют семантическую науку, изучающую смысл слов, чтобы производить более релевантный поиск ): И это ведь есть в каждой нации. А то у меня номеров почти нет всвязи с восстановлением симки... Превратититься в кляксу, смяться, разжижиться, стечь горестными капельками, Кстати, можно ли сразу запилить международные права, чтобы я стала совсем крутая и могла сбежать с миллионами за границу? Вообще, обычно, когда мы ссоримся, у меня нет ощущения своей полной правоты, то есть я думаю, что, наверное, все-таик права, но можно было сдесь сделать вот так, а здесь - лучше, а здесь - помягче. Я сомневаюсь, что мне нравится это кольцо, а не то, два магазина назад. Предчувствия его не обманули. Чтобы каждый день этой жизни приносил тебе столько радости, величины которой хватило бы на то, чтобы полюбить ее без памяти эту нашу, такую непростую, жизнь. Еслиб кто быстро сообразил бы, можно было бы выпустить семечки в упаковке, как обычно в магазинах продают, и штамповать на ни бренд " баревреволюция ". Я вам покажу, как будить Колдуна! Как вы представляете свое положение через 3-5 лет и как собираетесь его добиться? Нечуствительны к пониженному напряжению, могут применяться с в светильниках с регулятором, очень удобно. Давно хотел выложить некоторые фотки, вот лапы наконецто и дошли... Какие смачные фотографии, хоть и поела, а аппетит разыгрался! люблю ужастики, но не смотрю теперь итак темноты боюсь, а если посмотрю потом ваще спать не могу ) Фактически, по этой же модели он строит свою дальнейшую жизнь. Ну вот наконецто забрал чать фоток у Боди, их там много залил сюда штук 25... Ой, а че ето он делает? Но вобще единственное, что не люблю мат и про детей. Надо дописывать книгу, всего чуть-чуть осталось, но, как всегда, лень. Я не знала, что моя правая нога не особо меня слушает, да и вся координация хромает. Любое дело, направленное на помощь жертвам насилия и несправедливости, вдохновляло его. Утешюсь мыслью, что двое детей это нормально, науке известны случаи выживания взаимоотношений в таких условиях ) ) ) ) Это я два года назад, за пару месяцев до беременности, на банкете в честь юбилея одного папиного коллеги. Хотя она вроде бы относится к психике, мне хочется назвать это оценкой способности воспринимать окружающий мир во всем его многообразии. Одобрен был только один карандаш для глаз, который я как раз не любила за излишнюю « кислотность » и крикливость, все остальное было отвергнуто. Обмороженых больше, чем ошпареных. Пыттаюсь успокоить руки, слезы загоняю обратно и - пулей из универа. Отпразную - затем отвечу на комменты, уж проостите... Начаили с Капитана Моргана и Текилки. Порой мне хочеться тебя убить... И кстате очень зря некоторые убеждены, что жизнь не сказка и не фильм в котором все красиво; ) незнаю как у них это получилось но факт! В Темрюке есть так называемая военная горка, где под открытым небом находится выставка настоящих самолетов и вертолетов, пушек и кораблей, танков и поездов... Но, черт возьми, где-то есть семьи, где родители помогают детям в том, что действительно нужно детям, а не в том, что, как считают родители, им нужно. Поелетим все вместе. по возможности одной в тишине, слушая звуки дома, быть и думать о своем, читать, или просто валяться в задумчивости на матрасе, чтобы молчать наедине с собой. Она скзала чтобы я съездила туда сегодня! Сочетаие магическое и очень нам понравилось. Родитялям малолетних детей советую обратить внимания на новую обувь СейчасАйгуль находится в третьей городской больнице. А потом, со временем, стало так, что я вобще не хочу ничего рассказывать. До свиданья, Оля, мы разошлись, как в море корабли. Пасиб, но седня должен аванс упасть на карточку и тогда гуляй рванина! Прияно общаться сос тарыми, но давно не встречавщимися приятелями Ничегосеб бред... Сейцас такое мясо, грех не пользоваться. не помню где читала теорию, что дольше всех живут те, ктоя является самыми большими поставщиками на тот свет, тоесть все, кто имеет отношение к оружию. давольно милый и летом и зимой обогреваемый теплым солнушком Поэтмоу все остальные раздражающие факторы усиленно не понмают моего сопротивления и делают все что в их силах, чтоы затянуть меня туда подальше. мне даже раскладывать не надо - так помещаюсь ) Мы сняли уже студию в другом месте, там правда не поживешь особо. Не смотря на дороговизну домов двери до сих пор простые. Насчт мира: ты уверен, что мир так сильно меняется, а может это мы меняемся? Оказавается можно быть счастливой и несчастной одновременно... Пронизтельно холодный ветер мчится по пустоши... В первый день после большой грозы озеро было серым и непривлекательным, на пляже безлюдно! Лапмочку то намеренно изобретали... Все что я хочу сказать это то что я все равно рядом... Именно так, большими буквами и с грохотом на всю Одессу. Так хочется, чтобы таких семей, как наша, было больше, чтобы люди не разменивали свои чувства по мелочам, чтобы встречались со своими половинками и, живя в любви и согласии, растили замечательных детей! - А столько женщин в джинсах а-ля " заниженная талия " так и хочеться подойти и подтянуть. Поводом стал очередной асфальтовый скандал. И у нас много общих знакомых, например, теперешний мой начальнег Слава Козлов, который Борман. А в чем дело то собсна? пачпорт я седня получила с прописочкой питерской, все очень так законно и официально!!! Потомучто бесящиеся с жиру гос-службы нужно ставить на место. Чудестный ребенок и я таки дошутилась, но мы ждем второго! Обязательно на него посматривайте. Я вообще неспособна понять, что руководит человеком, когда он делает то, что он делает. я кое-чем дуругим занимаюсь, интриги плету вообщем и мне это нравиться... у меня теперь плечи накачанные, так что бойтесь ) Напыщеные домики стискивают углы зрения и формат ощущений. Понедельнег выглядел примерно вот так: Прдолжаем выбирать красивое мыло на подарки нашим близким и друзьям. Надеюсь, наш случайный встречный добрался до надежного ночлега... Солцне ушло. Вспомнила тока седня утром в автобусе! Можно нормально и не вовлекаясь переносить вызовы внешнего мира - ну на работе там неладится или погода плохая или вообще както жить сложно и бессмысленно. А еслиб ты оба кеда между собой зашнуровала? То есть она не будет пронзительно-красиво " пррямо в точку " и " как будто про тебя ". Наподобии слоеного теста. Растерянный, я медленно слез с подоконника и, подгоняемый недовольным стариком, устремился вниз по лестнице. Сегодня первый раз пошла со всеми дружно играть в пингу-понгу, за что кстати всем пасибо. Предъистория - разгребала гардероб - ага... Однем словом - темные и страшные дела творятся в наших вересковых пустошах !!! было ну ооочень жарко, такое ощущение, что на вентиляции сэкономили на все ) Совсем недавно поняла, что значет " быть собой ". Пришлсь повозиться. Благо народу пришло седня больше обычного, развеселилась. Чурикова и Киркоров как ведущие - полное извращение Символизируэт стремление мужчин все в этой жизни делать ради женщин. Они, представляете, зовут какую-нибудь, назовем ее условно Лаурой, на балкон. Буду получать третье высшее образование " Психология ". Стоило это все оочень недорого ) Остется ловить глюки и слушать музыку. вообщем, ты добрее чем я ) Когдя наша семья переехала из Душанбе, зеленого, солнечного, гостеприимного города в степной пыльный мещанский Оренбург, полюбить новый город было трудно. Я просто решила пояснить, так как добавляю переодически друзей... Мысные блюда не дороже 50. Этот телевизионный коктейль смешан таким образом что с утра нам вдалбливают о проблемах со здоровьем, потом о проблемах на планете, а тут еще и свои запары вдобавок. Летела под елку, жестоко отдирла бантики и разворачивала цветную бумажку, а там открытка, следущего содержания: " Извини, что не черная и не шелковая, но желаем чтобы нашелся тот, кто будет исполнять все твои замысловатые желания! " Отыхаем от институтов, садиков... ну и вобще на самом деле фильм пустой какой-то... ( Лизенок это набор слов я незнаю что это значит ) Вспомни, наконец, что ты женщина! прикольно канешно, но теперь мне надо срочняком на права сдавать, чтоб потом не стыдно было Создается такое впечатление, что это иллюзия, самовнушение. Да и какая разница, Доктор Кто, это окей, и я рад был смотреть все 4 сезона, однажды полюбому пересмотрю. Согласно древней традиции на поле необходимо оставлять несжатую полоску - шеАр - остаток, чтобы бедные могли собирать колосья. Разультат - комплименты, одобрительные огого Просто остаться наедине с собой, задуматься. Захожу я значит в пятницу в лифт, там стоит сосед снизу и какая-то ваще низакомая дивченка... Вот погда установится хорошая и все доделаю. Рекомундуемо для просмотра любителям отечественных военных фильмов, ровно как и следующий сериал Осталомь только определить куда-то старую, но дорогую сердцу моей родни тахту и стеллаж. Приехпла вчера в Самару. Я переодически появляюсь на чужих страницах с комментариями. Тачтосидит резко вскакивает и пихает тойчтостоит свою сумку в лицо. Шкворчать умеет только свиное сало все остально тупо жарится. Ниччего не понимаю я в парикмахерском икусстве: ) ) Слушает все, даже то чего слышать не хочет, лишь бы ты улыбалась! Огда может и решения были бы более саправедливыми, по поручению главы Чечни была создана межведомственная комиссия. Комлексное рекламное обслуживание. Жидкость для мытья окон не берет. Понимаю еслиб счет был 4-5, но такой разгром - это звиздец Слезяться глаза и плачет дождь, И если там сказано, что иноверцев надо убивать, он будет убивать - когда прикажут. Как просмотрет в контакте кто оставил мнение Окружающие считают их ненадежными, самовлюбленными и ограниченными. И мне сразу подумалось, что при таких условиях, пролетарии нарочно будут затягивать ремонт, дабы получать побольше денег. Льет страшно, где то в небесной канцелярии прорвало трубы, предупредили будет лить целый день и ухудшение ждать после обеда, то есть сейчас. Но в слайдшоу, на мой взгляд, оочень быстро сменяются! Я надеюсь, что с каждым годом участников акции будет становиться больше, а фобий у людей - все меньше. далее, хорошо бы все-таки консультацию гастроэнтеролога, хотя бы, чтобы узнать, какова секреция желудочного сока и по итогам пропишут диету ( острое, конечно, запретят, но я на это уже 18 лет кладу с прибором ) вносить сюда можно чтото окончательно вызревшее, законченное, на что уже невозможно и не нужно както влиять. разьве что Вася Воронов да Пашка Пескин, знаешь его? Получилсась смесь бытовой городской новеллы и протокола заседания профкома. Найдуться те кто сможет написать стихи, это возможность родителям контролировать и помогать чадам. Я прижалась к нему, подхватив под руку, такому теплому и желанному, практически родному. Эксперементируя с различными музыкальными традициями он создает очень привлекательные музыкальные произведения. Рассматирвает все в черно-белых тонах, как правильное или неправильное, не видит всю сложность событий. Все немного ( или много ) великовато, а вот у этой кофты буду удлинять манжеты, т.к. ооочень она мне понравилась, а максимальный размер был 18-24М. у меня правда очень болит сердце вот о чем - мама была верующим человеком, нам помогала и помогает Богородица, однако я незнаю была ли мама крещенная. Расскрытие двух основных понятий пути воина: безупречности и самоотражения. Ремонт компьютеров в районе метро Коломенская, Каширская, Тульская, Варшавская, Автозаводская Неротоброжается видео в контакте Однако, я поняла одно - кажется я нашла свое полноценное хобби. Ну и ладно, а зато в века предшествующие человек был столь бесправен, что нынешнее состояние дел в родных широтах может показаться райскими кущами. Нашол сосвсем случайно прикольный сайт А на нем паршивая экранная копия, что легко определить по качеству и сигаретным прожегам переодически мелькающим в правом верхнем углу... А впреди еще ооочень много разных социальных ролей. Капелька надежды через водопровод проникла в ванную, повисела на кране и, раскачавшись, запрыгнула на полотенце. Мущщина был с зализанными волосами и в свитере... А мы с ней вчера встречались. опаздпла на работу, потомучто заговорилась о сочитании майонеза с другими блюдами ) Самое смешное, что мне эта ситуация напоминает " от нефиг делать ", спать не хотелось так пусть теперь и Вам не хочеться, так егоистично, так нелепо. Потому что на него переводов многа. Но вообщем чего гадать, главное, что настроение поднимает немерянно, особенно с утра. вобщем, ближе к концу он умудрялся так вспотеть, что с него пот ручьями лился - прямо на меня, разумеется. Я люблю тебя и небо, только небо и тебя. Прадажа кондиционеров в кредит Присоеденишься к нам? Учительнида остановилась, и спросила: " Как вы Добравшись до подходящего по всем приметам места, наши рыбаки принялись разматывать удочки по всем правилам рыболовной науки. Спасибо, незачто рада поделиться ) ЭЭээххх столько впечатлений осталось за кадром... Получить блогосферный гороскоп для Вашего знака Зодиака нам достаточно факта что мы можем это сделать всегда эмоционально мертвая я приезжаю к Тане, которая кормит меня чем-то вроде паэльи с морепродуктами и виски с колой. не согласна была на девичнике, там девчонки изображали стриптизеров - было оочень смешно ) Раньше на такие должности мы взращивали кадров с самого " детского сада " до серьезных вакансий. Продаа путевок в тайланд в новокузнецке Пейзажы за окном какие-то незнакомые. Поздравяю его и всех вас с этим событием! по пути к самой лучшей выборгской бане нам встретилась хореограф по имени Лона, попросившая рубля три даже уже непомню на что. Первый такой вопрос: я знаю, что сейчас подобного рода инновационные площадки, инновационные города делаются не только в России. Может, пока я вырубаюсь на пару секунд, кто-то роняет на меня бетонную плиту? Ей в общем-то все равно было, на кого учиться, лишь бы мама с папой не переживали, что у них девочка не пристроена. Никоглда больших " приколов " не было... Сдесь ветер жуткий, холод дикий, В общем, с наступающим Днем учителя! Смерительную рубаху напялят и никак иначе. Работатьне хочется, хочу учиться и радоваться жизни! Легкие и элегантные они создают прекрасный образ. можешь поговорить с военкомом и даф ему денег както получить осрочку... Ну и конечно Мак покатился с ним, чтобы оценить ситуацию со стороны. На самом деле ты удивительно многогранна и умеешь неожиданно предстать в абсолютно необычном образе. Охраниик с непроницаемым лицом изрекает: самое клевое в столовой это полюбому сортир. Ясно, что сказать ему особенно нечего. Отогревшись и заодно пообедав в столовой, отправилась я домой... Седня была с Антоном на выставке на Винзаводе. И вдруг ( хочется написать из темной аллеи ) на меня вышла удивительная случайная здесь пара, жених и невеста. ты главное - не отчаивайся, если все будет двигаться ну, ооооочень медленно. Hа следущий день все чеpепахи сбежали. Я пережил то, что чувствует море, колышимое бурей, принимая на себя каждую пощечину ветра. Не расстаюсь с мечтой поехать на Байкал на поезде. Утром по новостям объявили, что на сегодняшний день в ЗАГСах - рекордное количество свадеб, - раз в пять-семь болше, чем в обычную пятницу. Но это не такой уж большой недостаток, если учесть, что Телец обычно все тщательно обдумывает перед тем, как принять ту или иную точку зрения. дергаю дверь закрыто пока ключи нашол минут 10 прошло вобщем люди которые меня знают и ( важно ) звонят мне на мобильник в курсе что раньше 12 связи со мной нет и вообщеее... Выскажу свое мнение - но оно предвзятое - фотк стобой почемуто в большинстве не нравяться. Ктобы мог взволноваться, случайно наткнувшись на дневниковые записи бабушки, о том, как она грешила вовсе не с отцом зачиная ребенка? Я последний раз нечто подобное видела в отдаленных городишках нашей родины в конце девяностых примерно. Она ждала меня около университета или политехнического института, чтобы первой узнать, как я сдал экзамен. Но почему же мне снова хочеться с ними встретиться??? Помошник шерифа, получивший не так давно повышение в местном полицейском участке Грин Горча сейчас, стоя рядом с ней, думал лишь о том, как они вместе будут строить свою жизнь. На работе так ваще все были очень дружны из-за этого: ) Милиардны живут по правилу 3ех заветных п: попса, пепси и пошлость. В их реальности, вполне возможно, никаких сигналов и небыло, кроме зова сердца. Он прекрасен снаружи и великолепен внутри, изукрашен резьбой по камню. Анекдоты, конечно вещь хорошая, но становится ни капли не смешно, когда вспоминаешь, что провалы в экономике страны как нельзя лучше компенсировались с помощью дармовой рабочей силы - каторжников. Я уверена точно только в одном - в мужчине, за которого собираюсь замуж. Тратиш на это усилия пусти некоторые потом и играют против тебя и часто ощущается угнетение в душе Кроме того, нужно учитывать исторический контекст: версия сказки Шарля Перро появляется во время большого голода, бывшего в правление Людовика XIV и высвечивает неустойчивость крестьянской жизни и положение детей, которыми первыми жертвовали в случае бедствий. Хотя его возили в Москву на операцию, тогда всех мало-мальски высокопоставленных чиновников возили лечиться в Москву, но было уже поздно. Тогда мы были в полной уверенности, почему-то, что это дело рук " барсеточников ". Для строительства одного гнезда требуется около 35 дней. ну паздравляю желаю не умереть, а если и умереть, то достойно! Высказали все ето дело манагеру, так, чисто случайно, под настроение попал, и пригласил он нас на любой сеанс в МДМ. Православие больше не преследуется. Плавать на каяке в одиночку не рекомендуется. Пассижир - Екатерина Леонидовна Лепнина, 23 года, работала официанткой в баре " XXXX ". В начале XVI века замок станет основным оборонным пунктом от московских войск, точно так же, как до этого он оборонял Беларусь от тевтонского ордена. Опяь завела ту же пластинку: больница, врачи, жировик ( хрень знает что за болезнь ), рак... Пучему не выкладываются фотографии в контакт Обмыли дома с мамой и сестрой права ) Было явно видно, что наша поездка откладывается, что ребята настроены серьезно и зарплату отрабатывают добросовестно. Набрал он в легкие воздуха побольше, верхнее ля выдал и смотрит вверх: испугается шарик или нет? Недавно обнаружила замечательное место для прогулок. Скууучнооо было - ужыс. Неконец еще более прогрессивная идея, это пропагандировать идею, что главное в детях чтобы они были здоровыми и красивыми, а не на вас похожими ибо что такое похожесть именно на вас? Дерижер - маэстро Кацман. беря в рассчет встречу знакомых, стояние с ними минут так по десять, остановку у метро - была на шпильках и устала ) ) Она не отрываясь прочла весь рассказ о своем вчерашнем возвращении в город. Траспортировка ковшей с чугуном в конвертерный цех Ура я сделала себе выходной, правда провела его как то странно, на улице супер просто, а я целый день проспала, потом уборкой занималась ну вобщем как обычно!!! Низкоколлорийное питание диета умные начитанные с пластичным мышлением, ну вобщем золото а не дети. обещаю загладить свою вину с меня очень што нить приятное пиши мне ) а ничо не делать ) В обзорах равнозначно будет уделяться внимание двум направлениям - документальной и арт-фотографии. Удивительо видеть от Ховарда столь халтурную работу. Сейчас она победила на конкурсе русского языка в Японии и получила бесплатный билет в Россию. Посмоти летние фотографии, выпей вкусного чаю, позови интересных гостей. И ни разу, ни разу этой зимой не встал на лыжи. Тллько Танюха куда-то запрапала. Накотиков не нашли, попросили сдать анализ в баночку и обнаружили в анализе следы марихуаны. Подкачал только неожиданно тусклый и однообразный свет, а для фотографа плохой свет - как страшный сон... Рассчеты и описание местности убедительно показывают, что все чиновничьи стенания " об исключительности выпавших ливней " лишены всякого под собой основания. Ну а потом годы полетели и не останавливались, пока мои родители не познакомились. но както все это было подощрительно... Прверку первого запуска тоже сделал не самым лучшим образом, но тем не менее уже немного работает. Подисскутировали надо сказать от души. После нашумевшего шпионского скандала фамилия Щербаков в СВР приравнена к ругательству. Дома я была почти в одиннадцать, часов до трех потом писала отчет... и дело тут не в кривоте или прямоте рук, порсто в горах надо побывать! Люблюд изо всех сил и счастлифф, что мы на одной волне! Буфетчица нервно курила, включались красные огни, орали сирены, а однажды даже приезжали пожарные Сей пост расчитан на тех кто еще эту информацию не читал конечно же, если читали и вам до лампочки - можете пролистнуть мимо этот текст, не тратьте мое ( на чтение вашего творчества ) и ваше время ( на его написание ), спасибо не скажу ибо мальчик большой. Прензидент вызывает к себе генералов. Рассказег на сопельки потянет - самое то для прожженных романтиков... Гнде можна скачать програму вконтакте не в онлайн Серега, который сдержанно и цивилизованно пил безалкогольное пиво, беспокоит нашу молодую семью! А то больно хочеться зазырить Новости страницы не отображаются в контакте 27 февраля была захвачена крепость Санто-Доминго, и провозглашена независимость Доминиканской Республики. Презванивает мне Дмитрий Николаевич через мгновение и говрит: ну ты понимаешь, люди солидные, сивуху не пьют, возьми нормальный коньяк. Он вечной жадностью ведом - такой у нас народ. послезавтра играть - полюбому нужно успеть за завтра найти пласт. Любимоый и ласкаемый ребенок примет мир добрым и миролюбивым к себе. Хотелось бы более подробно узнать о Алексее Шинкоренко: опыт работы в области фотографии, опыт работы в преподавателем, желатьльно со ссылкой на портфолио. На прошлой неделе впервые делал интервью по Скайпу. Прлучилось совсем незаметно, но надежно! В один непрекрасный совершенно день. Не знаю, зачем, но все утро разглядывала свадебные платья. вобщем за день до ДР Елизаветн впало в состояние постояной пены и пара и слезок... Нечайнно запомнили одноклассники как их удалить С особенным волнением я следила за судьбой Дэйнерис, потому что это уникальный случай в сериальной практике - герой, который развивается. Правльная форма - наслаждение от встречи с Дающим. Постранство - это сверхтекучая жидкость. Пррогулялся по парку, в очередной раз убедился что живу в самом лучшем районе Москвы: плюс ко всем удовольствиям что тут были, нашел стрелковую базу - по тарелочкам летящим пулять из ружей. Живи так, чтобы ему было интересно! Продкты для диабетиков А вот высказаться на более широкую аудиторию наверное все боятся. вобщем так как я пользователь анлима ЮТК то мне вроде как надо требовать от провайдера качества услуги. Учитесь смаковать жизнь небольшими кусочками и находить приятные моменты в окружающем вас мире. И погода чудная, и вечер вчерашний вспомнить приятно, и птички поют - именно поют, а не орут дурными голосами. Прошли почти весь пляж и наконецто остановились... Лекартсвенные препараты от варикоза Опопсля всех философских бесед, различных маневров и экивоков выяснилось, что посуду должна мыть опять-таки... Левостроннее движение, отсутствие перекрестков ( вместо них кольца ) просто сводит с ума. Я думала, он был поваром, потому что сейчас он готовит. Центральная его часть увенчана двумя башенками, на одной из которых даже остался флюгер в виде петушка. Хочу выразить благодарность незнакомцу, читающему мой жж. Незанающиеграниц сами позвонили, поздоровались, уведомили, что посылка на таможне, и поинтересовались, когда мне будет удобно ее получить. И взор мой весел, и стопы мои легки. Если до Нового Года не выпадет снег, то в ближайшие два года человечество вымрет изза необратимого изменения климата. Можете дарить книги, только помните - я многое читал. я его люблю, а он сдесь лазает !!!!!!! Проблема сама глубже - в неудовлетворенности жизнью, пустота, депрессии. В детстве на Украине мы говядину практически не кушали... Россиская компания приобрела авиабилет у иностранной компании Излишняя трепетность к деталям вынуждает нас видеть зазор на завитке синего цвета, упуская при этом огромную мозаику, пестреющую всеми цветами спектра. Напрортив сидела пара веселая! Угараздило ехать туда ночью зимой. Пробелмы проблемы, а потом случается настоящая проблема, только уже со зодровьем и все остальные как то сами собой отпадают. Зарубежные представительства Госкорпорации действуют в 50 странах мира и играют основную роль во внешнеэкономической деятельности Ростеха. кстате да, говорят, что самое опасное падать не на крутом склоне, а на ровном месте... А еще первое время контента может быть достаточно много. Есть кротон, декабрист и еще какой-то лопух, который живет и процветает у нас уже Бог знает сколько лет. Намазывем уже остывший корж " кремом " ( " фромаж блан " или творог, риккота, протертые сквозь мелкое сито, даже густая сметана подойдет ), совсем немного, только, чтобы ягоды потом прилипли. десь я прибежала на крики и пронзительный визг, а Яся всего лишь радовалась тому, что Варя спит под одеялом - и она действительно спала, не смотря на бурные эмоции вокруг и не совсем нежные обнимания. Ну и естессно большая часть пути прошла по встречке, и полоса была сплошная... Ей было очень грустно и одиноко. От моей дочери, которая приезжала к моим родителям на пару недель в поселок. Корридоры казались огромными, было довольно пусто, мы бродили по лестницам, этажам... Посылая шутки к черту, я от всей души горячо поздравляю Вас. Одиним словом нудный до нельзя. несколько раннее есть псто об этом и даже фотки ) сажусь обатно за комп и начинаю чтото себе рыццо в интернете. Я позвала официанта, ну хз, наверное надо было убрать волос и все, но я позвала официанта и показала ему свою вилку, а он сказал, что ничо не знает, у поваров светлых и длинных волос нет. Не прошло и полугода, как они заметили, что у статуэтки выпуклое основание! Не стыдитесь мечтать, загадывайте желания и бережно храните семейные традиции. Вот только мерилами этой « эффективности » вы назначили сами себя. Разве это не функция премьера? Экперты пока не установили причины катастрофы. не всегда хочеться вспоминать людей... Методолгическое брюзжание в ответ: ни Бурятия, ни Европа нациями не являются, соответственно, национальных кухонь не имеют! Но всвязи с волнениями я вижу активизацию сил националистических, и, хотя острие атаки направлено не на нас, я клянусь Богом, что до нас дело дойдет обязательно, историю не учат только идиоты, которых у нас, хвала небесам. Хотела посчитать скока Я за седня выпила воды. У Зайчика, кстати, сегодня опухли два пальца, так как девченки призимлились на нее ( а целоваццо не перестали ). На выходных какие-то неудачнеги ограбили квартиру. В четверг, 24 октября, на заводе прошло выездное заседание комитета по экономической политике и собственности краевого Законодательного собрания, в рамках которого депутатам рассказали о прошлом завода, его настоящем и будущих проектах. Всем руководит золотозубая родня. ндеюсь мамуля меня простит за мое вранье и обман. не позволяй всяким идиотищам портить себе настрой, ведь их так много, а хорошего настроения всегда нехватка ) Сппать аккурат в семь захотелось: ) ) ) Блин! А мальчик-то симпотичный, смуглый, черноглазый... Определенно, определенно Новый Год нужно праздновать с друзьями. Ленится ни в коем случае нельзя. Погкуляем летом обязаательно! Послезафтра - классная вечерняя туссовка на набережной. Отркыла утром окна и оставила их открытыми на целый день. Обесчанные новости. вобщем иностранцы 3 курс - дети вообще в массе своей элитные как в социальном так и в интеллектуальном плане. Четвртая вообще меня не возрадовала. Влюбом случае я не думаю что ты имел ввиду именно это, может перефразируеш? Да только прибежала невесть откуда - из подпола понятно ( то есть из подземного царства ) - шустрая мышка. Отсановились на совместном походе в театр, типа это моя инициатива. Вот сейчас с родителями собираемся к нему в гости, возник вопрос что ему подарить. Месяц не сидела за рулем, наконец еду... Птому что невозможно добровольно отдать желание жить. Некторые из нас могут со временем начать делиться сокровенным с девочками-подругами, но первый поцелуй... Ира скинь номер аськи сво пожалуйсто да и смс написать можна!!! Это было настолько душевно, что порой мне кажется жаль, что уже так с ним не поговорить. А дальше в гости к батьке, потом на незалежную и можт еще в Молдавию. наверное надпись была сделана с любовью, и вся любовь ушла только в слово... Очеренданя дурацкая ЖЖ-игра. Расчитаны на разный уровень подготовки и разный возраст. Только из-за него стоит сходить. развела в воде, гадость редкая, но ему и она понравилась, смолотил больше, чем нужно для первого раза. В 1635 году маньчжурский хан обнаружил, что его солдаты продают собственное оружие в обмен на табак. Короче, красотка та еще, и это все счастье держалось и не спадало с моего лица в течение часов так двенадцати. Как известно каждому, Одесса - невероятно крута. Этот щенок йорка ( см. ниже ) оказался на станции отлова животных в Малаге и был бы усыплен, если бы финны его отуда не вызволили. Помилуйте, боги, уставших кого-то любить. Разочарование я отмел сразу - разрушить все надежды последнего полугода это слишком. Недаво стала снова ловить от Ксюхи запах молока. Во-вторых, попытки народных демонстраций, которые распространились не только географически, но и затронули разные социально-экономические классы. Этот фильм лучшее лекарство от подобных разговоров. короче, если ктото видел мое потерявшееся чудо, шлите его ко мне !!! Пришла в офис в чуть более легком варианте, чем традиционная моя одежда. Ранее сообщалось, что Душанбе настаивает на заключении договора сроком на 10, 20 или 29 лет, но никак не на 49. Предыдущий день, первое декабря сего года был для меня полон событий и смены эмоций... Опсомания - првязанность к определенному блюду. Много позже, когдя я его увидел, я решил, что из него можно сделать хорошую детскую книгу. Папиломавирусы вызывают дисплазии шейки матки, что может стать причиной рака, они приводят к росту кондилом половых органов, кондилом мочевых путей. любое движение - это прогресс. Потому как то, что ты перечислил здеся, это все правда, естессно, но это все хрень по сравнению с семейной жизнью. Прияного аппетита. " За трактором шагом марш " прокаркал коммендант и резво вскочил на подножку машины. Хотя хуже, чем на физике недели две-три назад вряд ли будет. Я думала, кстате, что даже у маленбких утят перья не волосатые... Если ваша работа связана с общением, около вас всегда должны быть 3 цветка ириса в высокой, узкой вазе. Проавцы просто ацки выводят из себя. Сегдьня закончил уборку всех записей в " личное "... Да и ваще мы памрем, и не каких предыдущих-оследующих жизненй не будет... я и так в платье похожа на праздничный тортик, теперь я только и могу, что улыбаться мстительно тетечке с пирожками. Я вот как раз про это хотела спросить, отдельным постом, но раз уж разговор зашел... Паталогически не умеют принимать решения Миллионов не дарил, но жить помогал, пока на ноги не встала. Пожалайте мне удачи, пожалуйста! Познакомиись со всеми барменами на нашей улочке. Представитьте Excel - если бы каждую функцию пришлось скачивать и устанавливать отдельно. Оба с задумчивым видом курят трубки и ведут беседу. ЛаньПрекрасное и пугливое создание, грациозное в своих плавных и осторожных движениях. Мы слушали ее за кулисами какой-то площадки. Приварикозе вен нижних конечностей появились синяки я незнаю почему, может это перед концом света но Вселенная в этом году решила выдать мне компенсацию за все годы проведенные в родном городе в виде путешествий к центрам моей Родины - Москву летом и Питер осенью... Вот что за чудо изображено на обложке книги? Ну как же без дочери. Попадлись также привлекательные, на мой взгляд, " закусочные ". Сьездил в центр, купил билет на Дельфина ( касса в переходе на углу со стороны больницы ) Разделеннный на две части рекой, представляет из себя струю и новую часть. Нмного думаю о том банальном, что если человек " твой " - он непременно вернется, так или иначе, рано или поздно. да и дел поважнее у меня сейчас хватает. а если серьезно, настраивайся, что все будет хорошо. Толькго он помогает и решает все вопросы! Вообще, мамалыга имеет более древние корни - в докукурузные времена по той же технологии варили пшенку. Я одно время засыпала под " Мастера и Маргариту ". Это пособие помагает развивать речь и учиться пересказывать тексты, как опираясь на дополнительные вопросы, так и только на свою память. ты начинаешь думать а што неплохо можно и тут жить ) Смушение одолевает меня. конечно хочеться назвать их имена. Корпарация IBM поделилась информацией о выпущенном процике z196, который выступает в роли чипа, эксплуатируемого в стандартном режиме на мега пиковой частоте. ну да ничо, пять дней и снова пятницца изза реального запарного периода в4ера был первый ве4ер когда села за комп с момента нашего прошлого сеанса. Полный текст статьи об этом исследовании можно найти на сайте журнала Nature. Напрситесь на дачу к друзьям. оказуеться в книгомире седня есть -- купил и уже главы три прочитал... Как установить веб камеру чтобы общаться через однаклассники Подойтите ко мне. Поселеия представляют опасность только для людей, которые говорят: " Мне плевать, что делают арабы, а вот от евреев я требую исключительной порядочности ". Террорестический акт в Лондоне. Я рисовал очередной чертеж ( который надо было еще недели две назад сдать ); естесственно это не занимает весь день, но у таких лентяев как я это занимает недели ) Ктомуже многие люди смотрят аниме сутками, и читать сутками субтитру неоч хочу. и животная суть не позволяет им не занять место старшего. Скачатьпрограмму для бесплатных подарков в контакте Проффессиональные средства для отбеливания зубов Какя она была, эта уходящая осень, эта грустная незнакомка в длинном плаще и берете? Страртапу нужны основатели, но не очень-то нужны сотрудники ( Он отметил, что летом ему это еще не удалось толком сделать из-за череды кризисных ситуаций, передает телеканал Sky News. Мачовсе местного производства, то есть к отдыхающим отношения не имеют. в принципе, ничего менять не буду. Соотвественно дома у меня книги везде и как следствие катострофически не хватает места В Ярославской области повышается стоимость проезда в пригородных поездах И неудобно уже другой кофе брать, не хочется их путать, а то ведь в центре города, сколько народу к ним заходит, поди всех по имени запомни и кто што пьет. При достижении загустения соуса, добавляем галушки. Часто мы сталкиваемся с каскадом свалившихся на нас неудач и решаем, что так будет продолжаться и дальше. Причесляя себя к какому-нибудь нарпавлению, увы, приходиться расплачиваться за его " грехи ". С ним хочется проводить время дома - наедине, забывая все заботы и неприятности. Шчастье привалило короче По сути, интереса никакого моему многотысячному другу не представляет, однако, некоторые один-два человека проникнутся слезами. Романтические комедии, мелодрамми - это нам вобще не надо. Настоящая, теплая, зеленая, солнечная и наконецто можно будет на себя одеть то, что хочется, а не то что надо! Журнолисты всегда все нагло, беспардонно переврут. вспомнил, что с прошлого года остались некторые дела, которые можно было откладывать и далее Еще Ясна научилась обижаться, когда что-то не по ней, и выражает это сразу ооооочень громким криком, начинающимся беззвучным сморщиванием и багровением лица. Меня вон зафтра в суд под расписку, сегодня полночи спал с включенной водой - затопил косяк весь ) но сегодня так получилось не потомучто я проспала... ваши однаклассники и однокурсники рядом с вами Святослав, великий князь киевский, - сын Игоря и Ольги, в значительной мере правившей при сыне государством ( до ее смерти в 969 году ), поскольку князь все время проводил в военных походах. вобщем было задание - составитьт краткий конспект историистановления спец психологии унас и зарубежем. Понятно, что во всех странах мира они похожи, но вдруг кто не знает, что тут у нас он тоже есть - и очень неплохой. Она попросила об этом лично меня, и сказала, что ничего из этого ей больше не нужно, и что забрать с собой ничего не сможет. нет проблем просто вопрос такой всмысле для тех кто его блога не знает? Я до того вблизи не видела, мне это было неожидано. Могрен уже забит отдыхающими, поэтому базируемся ближе к камням, я сажусь дописывать отчет об отдыхе, Гоша купается, потом решает дойти до утеса, с которого отчаянная молодеж прыгает в море. Не могу попасть на страничку в контакте чтото с системой подскажите да и вобще, усы иметь- смелый шаг! один букет стоит рядом с кроватью, вся комната наполнена цветочным ароматом... Здесь часто проводятся различные выставки, посвященные современному искусству, фотографии и музыкальной тематике. Схходили на новый кошмар на улице вязов. Когда австpалийские готы добpались, наконец, до Италии, они устали от гpабежа и нуждались в отдыхе. Постарайтесь встать сразу же после того, как прозвонил будильник, раскройте окна, сделайте легкую зарядку. Проиошли поистине революционные изменения в личной жизни и подрос скилл рабочий. Поручение же Федотову взять ситуацию с музеем под контроль смотрится странно, т.к. нет никаких сомнений, что он и без того опекает данный проект с самого начала. Радикальные инновационные проекты предлагают разрубить этот узел переориентацией школы на своего заказчика. Предположительная цена клиентской базы, если она ведется, что бывает крайне редко: 240 000 рублей Мужык был в транче и тихо повторял - " меня в городе небыло квартира закрыта была... А посмотреть ой как хочеться ) Плюс хаус мьюзик - не мое; еще хореограф седня меня взбесила - шажочки, прыжочки, еще разочек, тьфу. Те, кто был седня в универе, расскажите, че там происходит. С людьми уже давно развела жизнь или ты даже и не знаешь их совсем, а тут почти вся их жизнь - словно на ладони, будто интереснейший роман читаешь. Перед ними бабулька с вооот таким пакетом разных конфет. кстате, из 4х фоток, что ты сделала: 1-я: отрезан один кусочек пальца ноги 2-я: отрезаны ноги и кусочек макушки головы 3-я: отрезаны первые фалаги пальцев левой руки 4-я: ничего не отрезано, но брюки смотряться плохо, и освещение не с той стороны... Удаплить страницу в одноклассниках Отпуслили аж в 3 часа с информатики... С плато был вынужден вернуться на дорогу изза сильного обстрела из танковых и орудий гаубичного калибра. В такие дни ничегонехотения лушче всего идти гулять, голова проветрится и с утра с удвоенной силой захочется работать. Вчера на искусствоведческой сборке услышала два замечательных выражения от ученых дам: и серце мое уязвлено стало - он очень недобрый человек. а я когда стрелял, знал, что это он, но подумал, что далеко и никто не может заподозрить меня в том, что я его убил специально... Отбеливанее зубов от курения Однао лбви куда более серьезной, чем у Анакреонта, скорее похожей на лирику Сапфо. То ли настроение у нее было не то обычно, то ли что-то поменялось, вобщем общалась последние 2 раза она со мной очень мило, в среду вот пойду выписываться. Обажаю кривлятся перед фотообъективом в компании приятных девушек. Прлку мировых религий, основанных на передернутых умозаключениях отдельных индивидуумов, прибыло. бывают такие моменты, когда хочеться зделать что-то сумасшедшее... И что бы было, если его не нашли, а он с нами поехал. Кому мы доверяем тайны? Сказали, что плохо, но не сказали почему. Скоро приедет мое солнце и будем смотреть фильм. Самоодостаточность как правило ассоциируется с субъектностью разьве ты не хочешь быть гламурненьким? Пожалуй, пора готовить ужин и идти на прогулку. Современнойпедагогической теории эта омонимия кажется периферийной и случайной. Чтопродается в тайландских аптеках То ли металла не хватило, то ли скульптор что-то задумал, но никому не сказал... Молдавская группа Zdob Si Zdub собирается летом или осенью выпустить новый англоязычный альбом. если бы было за все время, а не за последный год, то было бы больше ведь АEP у меня уже 4.29 кстате это был один из самых удачных гигов на мой взгляд. А может оно и к счастью? А мне от этих супных дел борща захотелось - сил нет. Траспортная система будет серьезно парализованна на один день - на 18.02.2012 c 4 утра до 7 вечера. Продолжние следует... ну думаю - чтот случилось чтото странное... И маски для волос у них есть достойные. Сегодня вечер кончился в квартире около камергерки, у гостях у тети Лены, которую мне ооочень хочется назвать художницей. Приближается облако гнева - не давайте ему приблизиться, но еще на далеком расстоянии разворачиваете его и направляйте в другую сторону. Помню момент, я сидела в прогулочной коляске, значит года 2,5 мне было, к нам подошла бабулина приятельница, Анна Васильна, нависла надо мной и принялась нечеловеческим голосом вопрошать, ну как обычно: " Ой тыж кто ж такой маленький тут у нас сидит? Неневижу бузысходность! Нельязя верить и прощать всего лишь от одного красивого жеста, не хочу учить тебя злости и неверию, но все же... Почти с самого рождения Яси меня сопровождает Агата Кристи ( обычно я скачиваю все собрание сочинений понравившегося автора, а эта тетя была ну ооооочень плодовита на свои рассказы и романы ), и вот теперь они подходят к концу, и меня ожидает Станислав Лем ( и цитология с гистологией ). тольи депресняк, толи от погоды, вобщем настроение совсем поршивое. Любой человек может, сам того не ожидая, стать преступником или жертвой преступления в любую минуту и в любом месте. Пришла седня утром на свои танцульки. Ну все седня будут вещать про природные катаклизмы, свои отпуска ( хотя об этом и нельзя писать ) и прочий пазитив. Терраристы пытаются напугать нас. А Амстердам - патамушта тоже мокрый. по идее мне должно быть оооочень стыдно. Обтиреть грудь, живот и для ускорения обмахать, потом спину. Претендет депонирует на определенном счете сумму, достаточную на покрытие затрат государства на его участие в выборах. а что случилось-то? Если ооооочень повезет - ну, 65. С сегодняшнего дня точно могу вам сказать, что метро - это священное место для тех, кто замерз... Прррроклятые буржуи будут морить меня незнанием результатов еще недели три минимум - ближе Кембриджа не нашлось никого, согласного все это проверять, конечно же. Обьяснил по телефону куда надо кликать мышкой, чтобы найти его несчастный файл, скачанный по умолчанию во временное хранилище. К северу же от Пафоса мы посетили грот богини Афродиты, где, купаясь в знойный полдень, она однажды познакомилась с отдыхавшем на соседнем пляже Адонисом. Опять же змей - он и есть змей. и я весь день куда-нибудь да ходила: то с Ясей на развивашки, то в универ, чтобы оценку по философии в ведомость проставить, короче ооочень много по улице пешком. Создвалась полная иллюзия лета, и очень тянуло искупаться. Фотография, которая не занимала бы тут места, если бы не Дима, который умудрился сфоткать обычный ряд картин так необычно Ловите, ниже идет и вобщем обещанная долгожданная статья, получейте удовольствие. Когда краска высохла, карандашом наметили имя. Ну вобщем засыпала я эту геркулесовую смесь на яблочную. Повел свое чудо сегодня погулять на юго-запад, прокатились на подеъмнике, потом долго смотрели на город с воробьевых, вообщем было здорово. С которым я опосля цигуна занимался шагистикой. Первые личные деньги появились в начальных классах школы, с завтраков. Первые деньги я заработал в 12 лет, землекопом в археологических экспедициях и спасибо родителям за то, что они мне сказали " оставь их себе ". Монастырь был заложен в 1183 году пфальцграфом Рудольфом фон Тюбинген. А написать я хотела вот что - на районе седня подошла ко мне женщина - то ли Азейрбаджан, то ли узбечка. Можете мне не поверить сейчас, но потом поймете. И еще желаю переводить во много раз лучше, чем безымянные господа, о которых я так часто упоминаю в своих постах... Притно когда их две и есть с кем разделить этот восхетительный напиток. Почему-то я ненавижу серую ветку метро, там жуть как некрасиво и ваще какие-то чегеря кошмарные, какой-то производственный район, некрасиво, уродские дома. Поскользулся юзер и грохнул пентиум об асфальт - тот на куски и развалился. В натуре по настоящему рвет на кусочки изза того насколько мега позитивные новости публикуют интернете на сегодняшний день. Кстити хочу сказать об профессиональном хирурге Тигране Алексаняне. Так начинать тренироваться надо во дворе, а у нас вокруг одни девченки рождаются. Так что я решила не просить всех сесть, а отнестись к укладыванию как к ресурсу ) Такчто - все хорошо и хочется в макдональдс, или просто съесть какой-нибудь гадости... Они слегка кисловаты на вкус, но это их не портит - есть можно ( если, конечно, не страшно соседство с химическими складами; нам было не страшно и мы ели ). Неделя отдыха прошла незаметно - собстно, как всегда. Вчера имела неосторожность очень сильно порезаться: срезала овощерезкой 0.5 ногтя и подушечку пальца под ним. То есть размещение в пространстве таково, что преподаватель ниже. Я чувствую своих ушей запах гнилой Надо чаще встречаться, пока не перестали улыбаться!! Игорь Зеленский отметил, что партию Кармен на премьерном показе будет танцевать одна из ведущих артисток труппы Анна Жарова. Поссмотрела " Влияние " Бурлака... Что-нибудь строительно магазинное, незнаю вобщем. Ну то есть вот он по лестнице идет - как она его последний раз видела - и идет мертвец. Поклониики ее творчества - обратите внимание первые три и сааамый нижний - ооочень-очень! Видать придеться уже сегодня написать про этот чОртов этикет. Онтогинетически подобное расхождение между благими намерениями психозащиты и ее высокой себестоимостью для всякого жизненного пути не только сохраняется, но и усиливается. Затем мы своим ходом дошли до здания ГИБДД, долго ждали внизу, потом ждали наверху, и наконец нас отвели фотографироваться на права. Расталкала детей и сфоткалась ) Но и грустить из-за этого вряд ли стоит. В Европе с 1618 по 1648 год бушевала ужасающая война между католиками и протестантами, охватившая практически весь континент. на сайте администрации есть какаято бумажка еще за 2008 год... Ничто не сравнится с разворачиванием ста пятидесяти подарочков подряд, хоть бейте меня камнями. Еще не догадались, в чем засада? Купец решил, что она родственница его любимицы, и весьма огорчился, считая себя виновником ее смерти. А у нас своя локальная " зона нестабильности " - район Сенной площади и Апраксина двора. Ягоды винограда вышиваются специальным швом несколькими оттенками, в том числе и смешанными. Выдав дочь замуж, мать автоматически забывала бы о ее существовании. Не буду говорить, что нечего написать, что ничего не пишеться... Прметы прыщи на бороде кстате завтра в вудсток едем со съемолчной группой, продолжение съемок для мегаблокбастера ) Зарегистрироаться в контакте Напрашиваюттся всякие нездоровые мысли относительно того, что сдают в этот ломбард. Людей уйма, штормило во все стороны ( собстно, только так я и передвигалась по залу ). Еще летом, я купила ооочень, ну очень красивые срезы агатов. Прдолжение следует... Ташшусь от ее скромности. Можеть выберешь из моих дайревых? его небыло с 1993 года !!!!!!!!!!!!!!!! Вообщем остаецца пережить английский в пятницу. Спасмбо всем френдам, которые не отфрендили! Любой жест, который не был перечислен в настоящих правилах, и, таким образом, не может быть воспринят в качестве камня, ножниц или бумаги, считается недопустимым и, соответсвенно, запрещен. Особо провидящие могут даже составы команд угадать, вобщем пишите все что вам когда-либо снилось, являлось и т.д. по поводу этого матча. я никогда не вела дневник, но нужно худеть и хочу попробовать и вобще у меня подход как у Вас в точности, но без дневника, поэтому и заинтересовалась ) Бывший оливетанский монастырь отдан Перуджинскому университету, одному из старейших в Европе ( 1307 ). Я теперь понимаю, почему у всех этих мужиков руководителей есть девочка - личный ассистент. Маршурт пролегал вот так: в чем дело ващще не понимаю... Движок-программу нужно поддерживать, развивать, интегрировать с новыми трендами Сети и основными браузерами. ктож этот человечек вызывающий в тебе ту миленькую дефчушку? А в те времена на это оставалось мало времени. На фоне серого неба это было завораживающим. Злостный падонаг в костюме дьявола измывается над людишками. Неопределнное московское лето растянулось на такое же неопределенное южное. Будьте способным на поступки, сюрпризы. Непонравилось повальное пьянство, некоторые допивались до того, что с трудом держали карты. Продолженое следует... Начался день с того, что я все-таки встала в семь часов утра, несмотря на то, что легла в начале третьего... Очеь талантливый московский музыкант перкуссинист, диджей и вокалист! Не могу зайти на однокласники другим логином А естественная смерть от старости равнозначна пешему способу передвижения. Мы не опаздываем -- нас задерживают важные дела. Насчет фильма - посмотрел первые тридцать восемь минут, а потом он почему то завис, вообщем фильм так себе, правда сегодня я его попытаюсь посмотреть полностью. Организм пытается ликвидировать эту клетку. Кстатиесли глава района потратится на пожарные вопросыэто нецелевое использование средствпреступление. А вообщем то мужчину спросили... Ну, вообщем, вот такой вот футбол моими глазами. К моей великой досаде, на второй половине пары, несмотря на проектор и отлично видные на стенке кадры, я засыпала. Отрисавала заново своего дндшного игрового персонажа и теперь не могу налюбоваться. никогда не мог подумать что и на таком огромном растоянии ктото умудрится так смачно раздразнить аппетит... Они про социализм знают все лчше тебя. Потом сглотни, веть белки фсе-таки... Я многого не могу и не берусь. Решила с пользой провести время дома, обдумать все, что было в этом году и разобраться в себе. Ребенок, естессно, тоже не в курсе, что здоровенная " собачка " опасна. Получаеться что Пресня оторвана от остальной части кольца с двух сторон? Аленка у меня такая молодец! Противречие в том, что ЖЖ изначально подразумевал предельную честность и где-то даже эксгибиционизм, но когда дело касается конкретных людей, начинаются вопросы... В каких случаях необходимо поддерживать голову малышу? Поэтомуее танец был во-многом основан на свободной импровизации. Фотоаппарат хотелось выкинуть, потомучто просто НЕВОЗМОЖНО все это выместить в карточку, ну ни как, ни при каких условиях Нактило что-то повспоминать прошлое... Нверху было написано, мы больше не поддерживаем ту версию... Пажалеть иво, праявить сачуствие, нужно успакоить чилавека. А седня Чернова позвонимши спустя мильон лет, очень весело обсудили мою болезнь и ваще текущие происшествия. Тварите добро. Я ведь когда-то и не думала о машине, а терь уверенно хочу сначало сдать на права... Зафтра с утреца еду в офис разруливать рабочие вопросы, в связи с возростающей в середине месяца конкуренцией, из-за начинающихся специальных акций, в частности, в сегменте гидромассажа. Впрочем, " официальные " портреты ( не всегда высокого качества, увы ) востребованы и другими, менее именитыми особами. Школа была частная, и я был единственным выпускником своего года и класса - это наложило отпечаток на моей личности. Мы напрыгались, наорались, напились и ваще атлична провели время. Предлогаю для избежания эффекта поломанного телефона зайти самостоятельно на сайт и изучить все платформы. Я заметила за собой то, что уже начинаю в красках представлять нашу вполне возможно скорую встречу. Проржавшись, мы рассказали ему всю историю. Позже по произведению поставили телевизионный сериал. Хоть водитель переодически открывал окно и было жутко холодно, все же я мечтала о том, что бы пробка подольше не розсасывалась и я могла еще подрыхнуть. Мне в штабе посоветовали расписываться на местах стыков переносных урн при опечатывании ( правда, не нашел норму закона, которая явно разрешает расписываться ) и делать фотографии этих урн ( или короткие видео ). я иду на работу потому что надо комуто а не потмоу что мне интересно Неорганизованая преступность собственных эмоций... Путь второй был неуниверсален - школа когдато закупила ноуты с 7 стартер с лицензиями ОЕМ которая была снесена но сами то буковки кодов остались. Как можна посмотреть кто в контакте заходил мне на страницу ОрганизЬм не выдержал откровенных издевательств. Певрый мультик очень смешной, здорово нарисован и озвучен, а второй пластилиновый, по типу " Вороны ". вобщем когдато Петр I гениальный и безумные решил для блага России построить именно тут город. Сможем ли мы, реально глядя на вещи, при нынешней демографической, экономической, политической ситуации, удержать огромные слабозаселенные территории по соседству с полуторамиллиардным, наращивающим промышленную и военную мощь Китаем? высокая вибрация от которой голова становиццо ватной ) Ученики предлагали свои ответы, но ни один из них не устроил Учителя. Вроле моньяка роперд Дауни-млатший ( ему идет ). вроде уже уложил в голове все по полочкам, а тебе вдруг каааак покажут, что все иллюзия и будет совсем по другому ) Наврено придет время когда придется снова скрестить нам мячи. Раньше я всегда чувствовала чужие стены, что это его дом, не мой. а я в метро без книжек не умею. Сегододня при попытки перегонки " Жанны " в формат, более подходящий для прослушивания на компе и в машине, в приводе раздался взрыв. Следуюий шаг, как ни удивительно, 2048. Ответствтенность за этот теракт власти США возложили на террористическую группировку Осамы бин Ладена " Аль-Каеда ". хорошо что там не было обрыва вниз, а то бы члетел точно, Предствители семей встретились поздно ночью и заверили друг друга, что никаких претензий друг к другу не имеют, что весь конфликт молодых офицеров исчерпан. между прочим у них есть вакансия: могу побаловать себя сладким, но потом от него мне же хуже - организм отвык от таких доз сахара. Рязнань и Сочи не в счет, это были командировки. вобщем есть в хорошщем качестве 3 и 6 сезон Папиломовирус именно тем и опасен, что может быть онкогенного типа. Чувсвую я себя гораздо луче, если кому интерстно. Сомтрела давнои плевалась страшно! Превосходный символ сенсорной и психической ценности естественного тела - ковер-самолет. И я там немножко собираюсь замуж. За это время подготовила журнал к югу, ща буду любоваться, можт голова успокоится. Разве горю такому помогут рыданья живых? Я иногда думаю, откуда, почему и для чего есть люди, которые маньяки. Я думаю, что молодой человек должен жить в реальности, которая ничо так, а девушка - где жуткий диктатор отгрызает головы младенцам. Вечером небыло инета, посидел с мобилки. А что происходит в твоей голове? Вообще, кхмерская цивилизация в свое время была очень крупной и влиятельной, контролировавшей огромные территории в юго-восточной азии. оькрыл там дыма полно начали тушить вызвали пожарных на работе мне сегодня учинили аццкий квест, в результате очень уж сильно захотелось убивать. Милиардер Адольф Меркле из-за мирового финансового кризиса потерял сотни миллионов долларов. А мой переодически ночью начинает меня будить ласками! потом одел старые AKG K-100, уже чтото чувствуеться. Все полицейские выступают в поддержку права на организацию общественного собрания. седня геныч полдня ползал на корачках под своим столом, пытаясь подключить колонки ) Предалагаю следущее, как всегда, почти бесплатное решение проблемы: Я, канешна, пыталась реабилитироваться, оправдывалась, что я вовсе не про вылет, а про этаж разговор вела... Страшно видеть, как стареют самые близкие люди. Отчетность, которая официально публикуется в СМИ делается совсем не для того, чтобы в ней было легко разобраться. Там же был построен первый в стране буер « Метель », что положило начало к развитию буерного спорта в России. Несколко солидных частников НичО нне поняла, но все очень умно и круто! вот такая тарабарщина мне, Вова, сильно по нраву, вобще фонетику я затейливую люблю ужасно. Почувстовала себя моральным уродом, но тем не менее все выкинула. Нелезьте в его кошелек, не считайте его доходы и не пытайтесь управлятьрасходами. Режисеру удалось создать такую атмосферу, что зритель полностью включается в происходящее на экране. бредятина, а 3 рубля с тебя про што взяли? или расплата, за то, то вы ее когдато курили... Вальс в 5 па ( внимание, будет под другую музыку с переходом местами на обычный вальс, подробная схема будет выложена ) На Родине, естесственно, имя предателя не вспоминалось. Начинался он с того, что меня в начале двенадцатого разбудила мама, чтобы сказать противным, как мне спросонья показалось, голосом, что мне необходимо срочно встать, и пойти завтракать. Что случается, когда из наших уст звучит то или иное слово? Я согласна с таким положением вещей - но! А утром шла в универ мимо главного всегда закрытого входа, и буквально в метре впереди меня с козырька свалилась пустая скомканная банка из-под колы кажется... Удоволствие от проведенного времени и классные фотографии гарантируются !!!!! А еще, после некоторых приблизительных подсчетов, я поняла, что мне нужно ограбить банк. ихнеи депутаты гор собрания дабы покрыть долг от банкротства организации бывшей когдато на месте сочитеплоэнгерго пиняли в 2008 список нормативов потребления всего и вся в том числе тепловой энергии. Прочветание аббатства продолжалось до войны Кипра с генуэзцами. а я была седня в зоопарке :) Будет новый человек, счастливый и гордый. Они, как их не назови, терпеливо ждали своего часа. Министерство культуры Франции официально признало, что фрески могли быть вывезены из Египта незаконно. Но есть и более интересные фильмы авторские и еропейские, которых тут просто нет... И именно это отличает классический средний класс, бюргерство от тех, для кого все эти вещи непринципиальны - наемников, для которых главным является количество благ и уровень потребления, в обмен на которые они готовы променять свою свободу и самостоятельность. открыть форточку нельзя изза простуды. Прийдется подходить. Получать любовь в том форме, которую считаю приемлемой для себя на данный момент. Как обидно порой знать очевидную вещь, в которой невозможно убедить того, кто не видит ее в упор... За это время доходим до моего дома. Мне на глаза снова попалась та самая фэнтезийная история. Дети растут ооочень быстро, на прошлой фотке она совсем младенчиком была ) Нинавижу всех визжащих девак с умилением тискающих очередную книжку с прыщавым очкариком Постарюсь не очень поздно лечь. У меня уже появились в этом направлении кое-какие идеи, но, конечно, нужно ждать лета. вот сижу и обзваниваю все автошколы, ищу приемлимый вариант, да и ваще надо, пока полгода не ввели!!! Это должно сказать вам о том, что я сейчас состою процентов на тридцать из неуправляемой сентиментальности и на семьдесят из нервов. Только что позвонил товарисч, с которым я о чем-то договорился. А еще седня меня загребла служба безопасности за то, что я пронесла на фабрику электрогнигу. Как Ванька-Встанька была, то прилягу, то присяду. Каааак гаркнет разгоряченным подгулявшим молодцем: " Пива! Ну оооочень кушать хочеца ) Как только я просыпаюсь, я отбрасываю чары сна, ложную тождественность, и понимаю кто я на самом деле, и понимаю, что весь мир моего сновидения - это лишь моя собственная фантазия. Усиленено ударить по двум направлениям... что примечательно перед нами выступали мои знакомые с реп базы, которые оказались крайне близкими друзьями нежданным, вобщем море позитива и рокенрола. А впрочем, она-то сама, заглавная героиня сказки, кто такая? Одна региональная организация, ОДКБ, работает на вовлечение в зону своей ответственности другой региональной организации! Может если все сказали, то сработает? это вобщем жуткий курс о особеностях развития психики детей и взрослых в условиях " стесненного " или нарушенного функционирования организма. кстате тема про правило буравчика есть в Катином ЖЖ с этой позиции все же мой любимый фильм " про любоффь " был более реалистичной картиной. Староста неосторожно что-то сказал - естесственно, неспроста. Проаализировали мои энергетические затраты и правильно их распределили. Кто-то там, наверху, услышал мои молитвы, ругань и угрозы, и сделал мне ливень. ты трать себя все равно не зря а так в пустую проживеш может и веселеи но пустота будет. Викуся - моя маленькая хихикающая бусинка, ее все время хочеться обнимать и заботиться. Собьранное и натянутое полотнище зажмите коленями. Оказалалось - столько же, просто нужно было добавить окно в список пожеланий при заказе. вообщем вот две лучших фотки из всего того, что получилось... с завидной периодичностью перемещаясь по толковым спортивным internet ресурсам я постоянно налетаю на гору такиж же тем, но всеже далеко не многие считаю возможным выложить туточки на страничке божеупаси если хоть ктонибудь из вас самаритяне потратит хоть шилинг на эту пластинку. знать бы еще, че ето такое ) Но все же жизнь переодично сталкивала нас лбами и довольно таки болезнено. В первый раз вобще-то узнал про такую вот штуковину. Фантаститечские ощущения: пироги были с яйцами, рисом и луком и с капустой, ничего вкуснее горячих пирожков на Пасху не помню из раннего детства. За последние годы у нас сложились очень сложные отношения, периодами отношений вобще не было. Сосотояние невменяемое, руки не слушаются, ноги тоэе не совсем адекватно реагирует, но голова страстно заъотела напсиать об этом. Ответить на него можно вполне определенно: критерием уничтожения целостного процесса является прекращение существенного процесса. И это ооооочень сложно, особенно когда надо слушаться человека, который сам только учится и жутко не уверен в себе. Ишшо варианты: Партенит, Симеиз или что-то в ту степь. В первую очередь - внутри произведения, где неоднократно повторяется базовый кубический модуль. в следущий раз обещаю в шлеме. Вот с параллельной парковкой у меня и были проблемы... ето были просто мысли про одну личность, Родители пришли к православию года три назад, а сестра пару лет, как крестилась. Но про воду, которая камень точит, это ее главное оружие! Так что ждем новых фотографий и более точных данных. Ярким примером здесь может служить отечественная история прошлого столетия. Я одиночка, не люблю шумные сборища, но порой мне так одиноко без дружеской поддержки... А еще, в последнее время, периодически всплывают люди, с которыми я уже очень давно не общаюсь. Откпытки бесплатно в одноклассниках оооочень долго ехали на нем. Люблю тебя, читающего эту запись, просто потому, что любви, переполняющей меня, хватит на всех - мне не жалко. Если разбирать по пунктам - возможно, и да, кто ж спорит. Друзья мои, друзья, что бы я без вашей с готовностью протянутой руки делала? У меня парикмахер в отпуск ушел. Следуюший раз я в штате Нью-Мексико, я хочу встретиться с навахо индейцами. сегодня впервые в жизни - тоесть впервые за 34 года жизни в моем доме я сам! Получилось 4 по 5 и пятый подход ваще черти что. Спаааасиб вам дорогие мои !!! и одтельное нежное рано уезжающим в Москву ) вот уж вранье нащет некрасивой тебя, вот уж вранье! Хорошо, что это были разные недели. В 1863 году с согласия семьи Раецких костел был освящен как православный храм. вот мне кажется, что еслиб я женилась на тихой домашней девушке, то моя жизнь расцвела бы новыме краскаме. Ему предложили деньги, уход и всяческую заботу, но он не соблазнился этим. Ездил тут провожать и встречать любимую Любю дождь, когда тепло !!!! Оптять таки рядом с вильнюсским универом А про Мисфитс я плохо обосновал: естесственно это панк, но его также можно считать ДОготикой, они нереально повлияли на эту культуру, хоть сами ее частью не являлись. А мышцы все-таки болят, уже чувствую. НАконецто мы скооперировались, собрались и на этих выходных сходили в музыкальный магазин за флейтой, Мане не 24х летие педагог обладает огромным запасом хлестких выражений, любит черный юмор и, естессно, сливает это во время урока. Многое в этом спектакле удалось молодой тогда еще актрисе. Через иллюминатор была видна Родина-мать: Вот и сейчас - спустили его на землю и кот пополз на полусогнутых на исследования... Поскореебы эта мода с интернетом прошла. Мне еще тридцати нет, а я уже ночью не сплю, а слушаю свое сердце. Сварачиваю гамак и на барикады... Обешают в местной газете участие порядка 200 тысяч человек, что для 25-тысячного городка многовато, имхо. После того, как вы ушли, у меня к вам никаких претензий больше нет. Ужасные отношения между братьями-сестрами в маминой семье: родителей они лишились оооочень давно самым трагическим образом, мама осталась самой младшей. А сегодня пришел товарисч, вроде как ( будем искренне надеяться ), помог мне с компом. Я кстати сам пришел из христианства. Можешьв двохсловах сказать отчего зависит качество текстур и виза? Привет всем в этот пасмурный и ветреный день. Определяешся окончательно, ан нет, очередной самообман. Теперь я твердо уверена, что вам можно доверять. Эту подставку для журалов я делала для своей подруги-одногруппницы, с которой мы учились вместе в университете. Ребенок у нас резко полюбил фотографироваться: требовал, чтобы я его сфотографировала чуть ли не у каждого столба. Сообщете всем кому можете! Преподаватель: Да, безусловно, но я незнаю что какое Боженька Но, коль таковые имеются, пойдем дальше! Программа " Космос " является одной из самых масштабных программ по изучению космической эволюции. Я приехал через час а работы так и не начались, правда воду удалось както перекрыть. Наберешся наглости, позвонишь еще ( В 70-е годы в институте мне, естественно, пршлось сдавать госэкзамен по научному коммунизму. Тварррь Арагонес, такую ситуацию создал !!! Вчера сходила на Клик ( ничо так фильмец ) Когда мы только начали жить вместе, у меня периодично возникало навязчивое желание закрыть руками уши и орать. А самую важную точку в нашей прогулке поставил вот этот вот товарисч. еще можнго в бикини ходить зимой по системе Иванова Конешно все теже " взрослые " люди в " чудесной " стране америка в 45 годах своими запретами создали этот стереотип. Раставаньям и потерям, я не верю, я не верю ) вобщем если бы не желтый носорожка, то возможно я бы сейчас бюыла балериной... Стали пешеходы переходить дорогу ( в общей сложности было всего 3 девченки ). Давай мы просто потанцуем для себя. Спускюсь в метро и ложусь на лавку. Можно ли кушать после 18:00? а что тут писать и незнаю... Поскольку мы закупили основное оборудование, нам уже не придется делать такие капитальные вложения, мы можем направлять основную часть средств на реактивы, материалы, чтобы увеличить производство. товарисч говорит, мол убери, ты че себе за извращения поставила. Повсему выходило, что это просто много теток в разных кабинетах различных организаций, с пишущими машинками и календарями на стенах. Ну вообщем, много обкуренных тараканов. Ещее один вопрос волнует меня: почему в одном из магазинов он стоит 13 тыш, когда везде - 16-18? Но Уилл Смит видимо продавший душу дьяволу, чтобы не стареть, каждой своей гримасой и ироничными замечаниями усердно напоминает как сильно нам его не хватало последние годы на большом экране. Но, хоть праздник домашний, но все-таки - праздник! Померели давление, оказаолсь оч.низкое давлениеи оч.высокий пульс. Поздравлдяю Вас с Рождеством! по утрам не хочет вставать и устраивает такие сны, в которых я не то чтобы спасаю мир, но если проснусь, будут неприятности другим. Давнооо ничего не писал. Пасмарели друг на друга, улыбнулись и кивнули как старые знакомые. Проблемнная кожа, угри, черные точки, расширенные поры А вокруг какой то непонятное чтото не дает мне этого сделать. Так что теперь можете смело обзывать водителем ) как объяснил потом: " А зачем тебе было знать? " На площади вокруг фонарного столба разместилось шесть солидных матрон. Прихали в Сяньян, где и узнали, что из этого города прямых маршрутов до достопримечательностей нет, но добраться можно различными рейсовыми маршруточками. конешно, видя ее понимаешь, что в принципе и не для кого ему себя в порядок приводить! В частности отуда пошла байка ( взятая на вооружение Шиллером ) о том, что жена Филиппа изменяла ему с молодым Доном Карлосом. И одиночество мое вовсе не надуманное, а реальное. зафтра после 9-ти к инспектору. Называетсо наташа собралась приехать. Покозать рецелт кремлевской диеты Оджни отправляют почему то в таксопарк, типа там и только там меняют стекла !! Кто-то купил права - и накропал бездарное продолжение. Отечественне чаи ии коктель для похудения. А в Питере у меня родилась племяшка и я уже очень хочу увидеть этого маленького гномика и на правах единственной родной тети ищу ей самый замечательный подарок. Высадив троих в машину довозки, к экзаменуемому сел гаишник. Усовершенстваванный алгоритм, по сравнению с встроенным, но работает только с английскими словами Онустал после работы, случается, что его обижали " большие мальчишки " всуровом бизнесе и ругал злой « дядька-начальник ». Повертикали чтоб весь спектр был, типа, радуга. Профилиактика и лечение рака легких, желудка, печени, восстановление после химиотерпии. Именно так номер выглядит на визитной карточке. Но это была моя философская присказка. Мне так кажется, что вообще идея равенства, свободы людей не имеет отношения к социуму. некотрые вещи в моей жизни начинают не радовать Все импульсные микросхемы которые знал там нашел! Хотелось бы, чтобы была вся палитра цветовой гаммы, а Елка светилась буйством Вашей фантазии и Вашего воображения. Отдельный совет: прочтите хотя бы одну, желательно серьезную книгу по композиции. А это не есть хорошо, ибо обязательно в самый последний момент что-то случится, и увидеть их не получится... Скришнот с Космополитеном видела ) Последние года два, пожалуй, самое тяжелое, что со мной было - это разделение на две жизни, непонимание того, чего, вообщем надо. Кравиво - домики, комнатки, озера, искусственные горы, деревья Сложно двинуться в такой очереди, перевалиться с ноги на ногу не зацепив сзади и спереди стоящих. Вот Черный Лимузин и ожил и действительно стал самым лучшым и удивительным автомобилем в Мире - он был самым быстрым, самым мощным, вобщем, самым-самым. Ктобы о таком мог ващще подум... Иногда, то что происходит в любви кажется очень жестоким. Вместо этого ты просто обращаешься к прошлому опыту. В российском правительстве изданию подтвердили факт получения письма от госсекретаря США, но отказались раскрыть его содержание. А о чем могут говорить две хорошие подруги, учащиеся в одном вузе, и встретившиеся для похода на концерт? Так что, у нас будет теперь где культурно отдохнуть ) а ваще, Жень, я, оказываецца, убежденный урбанист. Некоторые люди считают стакан наполовину полным, некоторые - наполовину пустым. Посочуствовали бы, а то накинулись на старого чела. Но то, что сейчас вы испытываете неприязнь друг к другу, - это естественно. потом через две пары курю на порожке, охраниик выходит - я его про милиционершу спрашиваю - чего говорю девушку не пускали - а он мне вооще откровение - а у нее пистолет! У нас тоже солнышко, но еще ооочень холодно. Но став старше, она осознала, что точность и четкость - ее все. На выезде из Клина бдительные гайцы на посту решили проверить актуальность моих транзитов. сцылка на статистику liveinternet по " сайтам рунета " А вы помните свою первую любовь??? С ним ничего не сделаешь, от него никак не избавишься, как в бомбежку - бомбардировщик из рогатки не собьешь. Ну ты сама, вообщем, вкурсе. Грабитель поехал в сторону Краснознаменной улицы по встречной полосе и по дороге задел три автомобиля. Через 10 шагов история повторилась, но уже с дургим человеком и тут до меня дошло, вообщем мелочь, а приятно, раз пять я так наверное на ВДНХ и здоровалась. Мне ничего не оставалось делать, как основывать еще один город, дабы заделать дыру в державе и производить длиннолуков с катапультами. Вам только кажется, что вы выигрываете, деля покупку на платежи: в итоге они накапливаются, вы теряете контроль и платите в месяц больше, чем можете себе позволить. Поспшь тут в большой комнате, что как проходной двор для всяких непонятнх мне лиц мужского пола... Объяснала моей началнице что, я заболела и больше не могла быть на работе. Раньше, только наличие зубной щетки и всяких других мелочей выдавало мое присутствие в этом доме, а сейчас сдесь моя енергия, моя любовь, мое приятие этого места. Едешь и не знаешь, что в Норвегии расстреливают людей. Появилиь новые военные угрозы, против которых, как показывает практика, США не очень то способно защитить - характер угроз таков, что с другого континента их не решить. Наверное почувствовать что-то точно можно, а то бы почему эта старушка с таким осуждением на меня смотрела. вообщем для " обычных людей " занятие тоже было найдено. Вернется, напишет заявление об увольнении. Серебрянные звезды нашептывали ему слова, а ночной шутник-ветер играючи вплетал в эти слова ритм и размер. Мееедленно - мееедленно просыпаться под приятную музыку. Теоретически за счет валютно-обменных операций банкиры могли бы компенсировать недостаток наличных средств. Сообветственно вы получите просто массу предложений. На огонь реагируют достаточно выборочно, тупо на источник тепла не кидаются, то есть если развести огонь, то видимо их внимание привлечь можно, но изза облаков они просто так не покажутся. В тебе ценят доброту и отзывчивость. лето 2011 если возвращаться к этому куску моей жизни началось и вроде недавно и вообще както давно. Тепреь мы не бомжи, теперь мы банкроты, но абсолютно счастливые! Онбудет знать, что вы тоже что-то можете сделать в этой жизни, и уважениек вам только приумножится. Не юзаю, и надеюсь не придеться юзать. Кто составит компанию в бассейн зафтра? А пока нужно наслаждаться тем, что нам дано, и присматриваться к календарику - когда и куда можно выехать для кратковременного отдыха. Меня небыло дома когда она умерла. Стисняюсь спросить что такое ирригатор? Вчера меня насильно затащили в Коломнеское, потмо стемнело и похолодало. скачать однаклассники на мобильный телефон бесплатно Есть такой капиталист, в тюрьме сейчас сидит и, похоже дооолго еще будет сидеть... Он бесследно исчез в восемьдесят девятом. Остаецца смириццо и бороццо... Дома ждет еще одна книга подобного плана, даже незнаю начать ее завтра читать или разбавить чем-то романтическим или фанатастическим. Поседняя фраза явно впечталение на тебя не произвела. Но все же, это мелочи по сравнению с тем, что могло вызвать у Крысы такой силы беспокойство. Говтовится видео репортаж о конкурсе Мисс Латина 2012 власть и управление - конструкции человеческого ума, лежащие в основе его " теории объяснения ". Соответсвенно наша звезда прыжков с шестом с результатом 4.60 первая. На последних звонках девочки плачут почти все. как многие наверное слышали, в некоторых европейских странах нужно платить за проезд по дорогам. По моему мнению это самый ужасный сбор из всех што у нас было. От нее особый кайф: можно постоянно регулировать толщину и форму линий. Разве нормальный человек отправит в ТАКОЕ заведение родных людей? На полнеба растянулся чорный дымный след Мууультики !!! Ты вернууулась !!! Я тебе так рааада !!! Немало достижений было и в развитии электровозной тяги. Представте себе, что это сотни килограмм муки распыленные в воздухе. Формулы, правда, ему приходилось зачитывать вслух или записывать. Если ты не возьмешь отвественность за написание картины, то за тебя ее напишут другие. Он принес новый флакон духов или туалетной воды уж не знаю но раз в несколько часов ей весь оббрызгивается !! Подливет масло в огонь активность одного гипермаркета, который пользуясь жадностью и ( или ) бедностью наших " односельчан " как будто специально создает давки и очереди за дешевыми мандаринами. Права мне жизненно необходимы и я не понимаю, как могла жить без них столько лет и, самое главное, как я буду жить без них дальше. работать начинаем по-тихоньку, но планируем развицо межгалактическими темпами, с вашей помощью кстате ) Сказали подождать, - как-то жалобно отвечает мущщина, остальные молчат. Паралелльно проверяю написанное на смысл - активный процесс Как место захоронений, эта территория использовалась уже с 30-х годов, и было засекречено, вплоть до 1989 года ( по вполне понятным причинам ). Аутоагонистофилия( Autagonistophilia ) - сексуальное возбуждение от того, что являешься предметом всеобщего внимания или от создания условий, при которых такое публичное наблюдение возможно Надоело закапывать талант в землю. Утро - самое удачное время для беспокойства и депрессии, когда все представляется в самом мрачном и черном свете. Очень часто мне нравилось, что мне прощается тот или иной поступок, потомучто я маленькая. Ограниченность в 160 символов латиницей придает им емкость брошенного слова, иногда необдуманного, горячего, случайного, а электронный формат - долгую непредвзятую память. Мужчины, которые свято верят, что цветы это лишняя трата денег и вобще они бесполезны... Сегодня я обзавелась новой пломбой в верхнем зубе. Прстарайтесь отличить абоpигенку от пpиезжей, старую деву от матери семейства. Слушай, ты как-то подозрительно сложно живешь. Объяявили что автобус уйдет через пол часа. На детальное изучение документа и предложений участников может потребоваться год. Небольшой мороз сильный ветер увеличивает градусов на 5-10. Всех воспитателей поздравляю с их профессиональным праздником!! Феликс сказал нащет грабель " это как надо было устать в своей Москве! " оставшийся отрезок дня был всецело отдан ежеминутным изменениям планов на дальнейшую деятельность. да и многа других образов, главное в одном из них не остаться на долгий срок, иначе скука-мука... Почувстовав себя готовыми к новым свершениям, на третий день пошли в " Лагуну 69 ", одно из красивейших мест в Cordillera Blanca. Можно еще понять, почему, допустим, Михаил Булгаков опережает Льва Толстого, а Александр Блок оказался за два пункта до конца списка. Поеште грецких орехов. Пробег составил 560 км, за которые было скушано примерно 55 литров бензина. а это вообще ( нащет чувств верующих ) дело по местным обычаям иудейским неправильное. В ARD сочли такие расходы неоправданными, отметив, что для зарубежного вещания существует Deutsche Welle ( Немецкая волна ). Под колеса состава с локомотивом yкладываются тоpмозные башмаки, число котоpых ни машинист, ни помошник не знают. Нельзя считать пару попыток в незапамятные времена умением кататься. Эти люди приближают земную жизнь к гармонии, но дается им все только тяжелым трудом. Господи, помоги мне не напиться! Люди невероятно часто отвлекаются на незначительные мелочи, теряя способность видеть картину в целом. Полагаюдрака и выпивка тоже в комплекте. Сегодняшнй ответ на вопрос про холод: " А у меня солнце на футболке " Артурчик тоже весьма ответственно подошел к вопросу отправки сестрицы в учебное заведение - ни пискнул и вобще предпочел поспать на мамином плече. не появлялась тут уже ооочень долго... представте что вы сидите тихо тихо и работаете с документами а рядом на дороге слышимости работает двигатель вертолета Потресающия серия! Преподовательница резко попросила замолчать или сдать работу и покинуть аудиторию. Не спросишь у командования, что за ерунда? У меня в жизни сейчас есть два молодых человека, которые мне именно что нравяться. прибежишь уставшая и убитая, а она и помучает и насмешит, и вообщем выходишь почти и человеком, с дозой позитивных мыслей. Счастлиывая кошшшшка: сразу видно, что ее никогда не мыли. Вообще, разглядывание фотографий это такое дело: при беглом взгляде нам может понравиться снимок с более яркими цветами, но при более внимательном разглядывании яркие цвета, в каком-то случае надоедают и больше нравится снимок с цветами приглушенными, но с более богатой и естественной палитрой. Мягше я тут становлюсь, и человеколюбивее, черт! Правда большинство на зарплате, а не на контракте. Обьективно говоря, становится уже очень тяжело. За синие горы, где мрак и снега, да и в конце концов всегда есть ктото глупее тебя, ктото умнее тебя, и ктото умнее того кто умнее тебя. Как будто тебя аккуратно взяли на руки и очень бережно несли все это время, боясь уронить. Удачи, хорошего настроения, денежки побольше и чтоб полегче доставалась, ну всего вопщем хорошего и чтоб петух не клевался! Естесственно и понятно: телятина без грамма жира, но в первый раз побоялась незнания пароварки, потому все делала по рецепту... вобщем Господа с нового года опять все подорожало и вы возможно неприятно удивились цыфре денег которые вы должны заплатить за полутеплые и ну даже пусть оч теплые батареи в вашем доме. и все утратит прежний запах, даже чай, бумага, шоколадка, седня я даже не стала спускаться с кровати. тыж обещал, что можно тебя называть " блондинчик "... Приниципы аналогичные применяю, правда иногда срываюсь на нравоучения и читаю краткие лекции... Сейчас, естесственно, почки как никогда и не болели ) Одночеством блеклым, безумным желаньем напиться. И вот в одном из них мы обнаружили потрясающую юбку. Только на память оставила записку и фотку. Просмотер скрытых страниц в контакти если бы была не простуда, а что-то серьезное, ну или даже простуда, но действительно сильная, с температурой 39 и выше, я бы, естесственно, нукда не поперлась. Ответтье мне на вопрос ( адресую пострадавшим ): А что вам мешало бросить вашу барракуду на этапе избы? Очень красивая и добрая фотография! Звонит подружка, она на другом острове живет, не виделись 3 года, но переодически созваниваемся. тебе можно и нужно его продавать!!! Но у меня на этой почве начинает болеть живот... вообщем это был прекрасный день... первым же выхватом стала дорога - ну естесственно не без успевания по пробкам на автобус; успели к двум минутам до, но опоздал сам автобус и какое-то количество минут его пришлось ждать. я б матюгнулся пару раз, да толку-то. Это, конечно, достижение, такого небыло в нашей школе давно. Сегодня вообще был цирк, сначала зашли какие то плотники, объясняя экзаменатору, что связались с ней через емайл, говорилось о заборе который не закрывается, затем зашла незнаю кто с мобильным телефоном и разговаривала в полный голос За них хочется ухватиться, смотреть на них, учиться-учиться-учиться. Флоренция встретила нас небольшим дождиком и толпами туристов. Следуюшая тушь которая составила список моих тестов, это тушь от CHANEL INIMITABLE. чо-то в инете ничо не нашла. Сцкажи честно - ты ж иво такой игрушечный купила, да? Куча тематичного народу, вообщем втерся и научился прыгать довольно оперативно. Наберегу стоял PR, а рядом с ним катамаран. Оказвается зеленый чай без сахара вполне идет с зефирчиком в шоколаде. Ну вот у всех наверное так бывает: вот была какая-то вещь, ну вот точно же помнится - была, а хватишься, и пропала. Егоров оперирует понятием боевых действий в фехтовании. У каждого из нас есть даты, которые являются для нас " счастливыми ", и мы помним их не из-за каких-то там цифр, а патамушта. Мировая история была разделена на три века - Отца, Сына и Святого Духа. Муж Феи был уверен, что женщина ни что иное, как тень мужчины. Это никак не скажется на качестве дальнейших ваших отношений, просто прийдется немного подождать. Срвпали действительно замечательно! на стекле были крупные капли тайского дождя, а за стеклом был невероятный закат. А вот если мотать данный фильм с помощью волшебной кнопки " Fwd " быстро-быстро, то получилось бы просто отличнейшее кино, где все как надо. Важейшие моменты нашей жизни мы связываем с Богом, вдруг забывая, что еще вчера мы не забоились о его существовании. когдато он предположил что я специально заразил кафедральные компы вирусом который вместо запятых встявлял матерные слова. Тебе возразят что зато он хочет продать бизнес а деньги пустить на благо, он красивый и умно рассуждает и отменит ЕГЭ и еще чтототам он такое с медициной сделать обещает ( от проограммы правда медики воют, но они ж просто корыстные ублюдки ) - и всем сразу станет хорошо. Позабодтесь о хорошей обуви для своих детей. Относитесь к непониманию с двойной иронией: ты смеешься над тем, что цигун - глупое занятие, а я - над тем, что только глупец не занимается цигун; ты смеешься над тем, что всегда будешь больным, а я - от радости, что могу быть здоровым и жить долго. Пофоторафировав то к чему можно было добраться, мы вернулись в пространство колокольни. Ну попробуйте же угадать, какая это может быть часть из всех выдвинутых кандидатов? Очищеный батат превращаем в пюре Но стоит ли так быстро поддаваться унынию и пессимистическому настроению? Но игру в итоге, как и год назад, наши девушки проиграли. Даже и не знаем, что вам сказать. Навогоднее настроение прям какое-то ) Идя в сторону метро, мы даже начали сочинять стихотворение, начало приведу: но в этот раз он изменит своим принципам и с удовольствием через секретаря ответит на все волнующие молодежь злободневные вопросы, кроме анонимных, ессно. Этоже надо быть такими наглыми, чтобы делать такой конкурс с такой ужасной саморекламой. Звонит просто для того, чтобы поболтать с тобой ни о чем. Кто воспримет форекс как игру случая, того ждет сплошной крах. А это уже само собой как-то случится :) Опрошеы все до кого смог добраться по поводу лучших путей погоды и прочего прочего прочего! а недавно у нас его ваще отключили ) Постибалса еще и первый ) Как зайти на страницу закрытую от всех одноклассников Потсому что в Воронеже все перечисленные тобою улицы находятся рядом: ) Сногсшибальной ей удеается быть, но только бплгодаря удивительно едкому аромату духов, даже на улице мне пришлось бежать в другую сторону и переходить проспект, лишь бы не попасть в штабель... Понятно, что его никто не оставит. Книга вот об этом как бы и есть - о непостижимости. вобщем это известие подлио масла... Хотя некоторые вещи я могу делать в столице. для своих близких, невзирая на их протесты. Если кто-то еще хочет первести деньги мне на счет в Израиле, у вас есть пара дней - пишите мне в личку. К ночи облака истончились, и круглая луна тускло просвечивала сквозь белесую кисею, озаряя одну сторону улицы сероватым светом. Затык заключался раньше в том, что мне нужна была крыша дома, а зимой на них не проберешься, да и весной не очень-то, это нам так просто повезло ) Она любит играть, поэтому если она веселая, это вовсе не означает, что ей действительно весело. И она работает намного более сильно, чем вся муть НЛП. Замечания и уточнения к этому посту приветствуются! Ктож знал поедая котлеты с картошкой, заботливо приготовленные мамой ( они у меня вообще суппир ) что вечер намечается насыщенным на приключения... ( извените за сумбур эта от волнения ) Оказалось, что надо сделать видео: переконвертить и слепить в одно. Провекрка перед сдачей 1-го тома День субботы 6 декабря начинался вполне обыкновенно... Все они жили когдато все мечтали о тепле. девченки в индии все на премьере, слезами заливаюсь какие они счастливые уже глянули что за шедевр выпустил Шах!!! Чем отличается спасательная археология от любой другой, так это тем, что для нее не существует времени года. Напистаь что ли завтра Стасу, спросить, нет ли у них ливня. Ведь время нисколько не ждет... Севершенно случайно оказывается, что сей текст существует в отправленных на мыле. Пыраюсь подобрать свой труп, однако он, по всей видимости, все еще находится в теперь невидимой подводной лодке и нарезает круги над бездной в середине локации. Им всего-то и надо ножницами в насильника за непристойные предложения ткнуть посильнее и бежать дальше, маникюр доделывая. Непридвиденные обстоятельства, требующие решений. Неговоря про то что в самом музее толкучка несусветная, чтобы получить порцию каши надо было отстоять около часа ( мы так и не дождались ) Поздрваляю с очередной публикацией, да еще в японском издании - класс! Взрослея, мы забываем о радости, магии, волшебстве, удивительном и неповторимом очаровании снежного праздника. довольно слабый фильм, который спасают только милые нашим сердцам пейзажи Самуи и Ко Тао, а также звукоряд. Я грю, да ничо, я тоже из офиса тебе пишу. Некотрые в домашниесады отдают - вроде такой эконом-выход. Мама нас с Мишей, погда мы втроем, называет общим " ребята ". после Др мне както особенно стало не хотеццо жить. Убиться веником, ребенок знает, что он тупой, находится в самом низу социального плинтуса - и ему это нравиццо! Посдравляю с ДР, камрад! Если вас освистывают болельщики, значит, вы морально не готовы выступать за клуб, который любят в Петербурге и который так поддерживают спонсоры. А Ясна рыбок ооочень любит - может подолгу их ловить сквозь стекло аквариума. Плпыталась жить без жалоб. А некоторые мои знакомые мущщины держат свое лицо ( а также подмышки ) на безопасном расстоянии от лезвия бритвы. Чувстоввать себя его частью - здоровое отношение и к себе, и к этой общности. Погда вроде разошлась, но уже все выглядит по осеннему блекло. Завтра кааак надену их и каааак все увижу ) а если есть общение то оно очень поверхносное, зачастую неискренное. Ну это ладно, а дело в том, что эта прекрасная девочка сейчас болеет и не может принять участие в этих мастре-классах( мое счастье ) Единственный положительный момент, мне сделали укол от столбняка. Мне нравится быть женщиной за двадцать: Стал похож на зажравшегося престарелого европейца. Краска облупилась, замки на калитках сорваны, заборчики покосились, во дворе стоит разруха и запустение. и воооот на столь позитивно-пьяной ноте меня в два ночи привезли домой. Меня хватило на один раз, после чего я на неделю решительно выпала из виртуального мира в реальный. Из одежды особенно актуальны носки шерстяные, платки теплые. А мой отец довольно рано усвоил, что красивая жизнь никому не проходит даром Поэтому может быть кому-то моя открытка покажется перегруженной, но я очень за нее горда. Ты никогда не хотел стать журналистом? Как у обиженной стороны, у меня есть право выбирать оружие. Даже самая незначительная ошибка может существенно бить по бюджету, сейчас самое время их исправить. и единственно, чего хочеться, так это уснуть, уснуть как можно глубже... Аромат ванили наполняет сердца гармонией, обладает удивительной способностью растворить суету и создать теплую, располагающую к отдыху атмосферу. седня сдала документы в ОВИР на загран паспорт! Съездела в саб, общалась с подругами, пару раз сходила в кино, пару раз в пиццерию, тройку раз погуляла с кампанией. Понаобещщал бедным девушкам, а они ждали, надеялись, а он... Очень не люблю, когда матом ругаются ( в систематическом порядке ), когда " на нем разговаривают ", когда мат через слово просто " чтоб было ". и тепрь следы от этих кулаков по всему тела ) я кстате слышал, что человек должен менять не менее 5 профессий за свою жизнь, чтобы не запариваться. Неуравновешено очен -- мостик, который мог бы быть смысловым центрм -- спрятан за деревом и смещен вильно влева, справа -- много черного ( стволы ) -- у меня возникает чувство дискомфорта. Цезарь делал это не по злобе, а потому, что расходы его были велики и ему предстояли еще большие траты на войско, триумфы и другие роскошества. И сразу стало легче, когда я поняла, что не все были против меня... Рассказжу немножко про свой сон. Покажиииии фото? Один из немногих, работающий в ПОНЕДЕЛЬНИК Музей микроминиатюры " Русский Левша " находится очень близко к вокзалу ( это я так, на заметку ) и вобщем-то весьма интересен. Проблемы не в смысле, что мы неплатежеспособны, а всмысле как теперь сделать все это за счет арестовавших нас канадцев. Умом сознаю, что « народы, царства и цари » умирают ( или гибнут ). Негативные эмоции оказывают разрушительное воздействие на психику, поэтому лучше с этим фактом, видимо смириться. Поженаем плоды веселой пятницы! С рюкзаком забегаю на работу, весело болтаю с девочнками, вся в радужном настроении и в уверенности, что от Черной речки ходят маршрутки до Финбана, и толкаться с этой торбой ( в 2/3 моего роста ), по метро мне не придеться. Некотороым вещам очень много лет, а меня это не парит... Общению с большинством предпочитаю чтение книг. Смотрите, это и вобщем обещанная хорошая новость, получейте удовольствие... Дейстиве картины происходит в 1930-ые годы. Лекарствоми здоровье гробить Вот куда надо вести ребенка перед тем, как отправить в музыкальную школу: выбирай, дружок, что нравится. причем очень забавно у них есть юридический департамент - руководитель Кузнецова Оглядываюсь назад и кажется что настолько долгого месяца у меня давно небыло. Все меня теперь сдесь больше не живет. Навека поставленную цепь не развести И теперь, собсно, по поводу несанкционированного торможения Пионеров. Мужчиты и женщины могут находиться только на своей территории! Эта задача во много раз сложнее, чем исполнять выученный текст, поскольку артисту при прямом контакте с аудиторией нужно быть готовым к любому развитию событий и обладать мгновенной реакцией. Самый простой способ получить белый и ровный потолок - провести его выравнивание с помощью штукатурных смесей. Пррямо ззуб на ззуб не поппадает. Саиые известные столбы, как я понял - это Перья и Дед. Для меня эта работа потеряла какето изуминку и мне уже очень лениво вставать рано Апять мной будеш приключения сваи аписывать? Клубец весьма себе наформальный, от сюда вполне приемлемые цены для центра Москвы и при этом, как ни странно, давольно вкусно готовят. Велосипедисты, лыжники и бегуны чаще всего замедляют ход возле собак и все проходит спокойно. Ктонибудь что нибуь понял? И ему по-настоящему повезло. шоб всегда любимая команда была Чемпионом ( Сабурово в рассчет не берем, сам понимаешь ) ) Муж, конечно, не Ален Делон, зато и в зеркало так часто не смотрится. Все это от того, что мы сами создали высокие требования для себя и компании. ну ведь совсем ничо сложного казалось бы... Совлаладав с собой, он дал клятву. Вот, собственно, такими космическими цветами с загадочными переливами это стекло и привлекло меня, и заставило искать и копать дальше. жду когда он отойдет достаточно далеко чтобы мои пережвижения егоне пугали Мудреший тот, кто знает о других Спутник позволит наблюдать за потенциально опасными явлениями в атмосфере Земли. Неоторые моменты перекликались с его выступлением два года назад. Пусьь тусуется дальше! И никакие мольбы, просьбы и уговоры не способны растопить их ледяных сердец. Прочтала тут новость, что 21 июля, то есть в день выхода седьмой книги начнет работать телефон доверия, чтобы прочитавшие поттероманы туда звонили и их смогли убедить, что жизни еще не кончилась. Я тоже оччень люблю их, иначе бы задача тети провалилась. Никуде не денется Неожиданнго из подворотни в Олега ударил яркий прожектор, патрульный трактор с лязгом выкатился и остановился возле мальчика. Прератите этот дождь из событий но обижать его не охота, поетому молчу!!! Ну и, собссно, готовься к кризису 2018 примерно года, опять жилье подешевеет, квартирку или еще что-то можно проапгрейдить, если во всеоружии. забавно, что танцует не исполнительница песни, я как-то к такому подходу не привыкла Вообщем я отлично провел время, а если еще учитывать 26 рублей в кошельке, то ваще все клево. Надо у них спросить рецептик ) Какой-то период времени мы вобще не общались... Каковы ваши любимые и наименее любимые слова? Сегодня яичницей никто не завтракал ( как, впрочем и вчера ), на ближайшем к нам рынке мы ели фруктовый салат со свежевыжатым соком, как в старые добрые времена в Бразилии. Особое место занимает чудотворная икона « Лобзание Христа Иудою ». Так как эти яйца жалко есть, а хочеться все больше любоваться, их можно покрыть лаком ( даже прозрачным лаком для ногтей ). ================================================ FILE: docs/Makefile ================================================ # Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = source BUILDDIR = build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) ================================================ FILE: docs/make.bat ================================================ @ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set BUILDDIR=build if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% :end popd ================================================ FILE: docs/requirements.txt ================================================ sphinx==7.1.2 sphinx-rtd-theme==1.3.0rc1 docutils==0.18.1 sphinxemoji Levenshtein git+https://github.com/Askinkaty/errant/@4183e57 https://huggingface.co/spacy/ru_core_news_lg/resolve/main/ru_core_news_lg-any-py3-none-any.whl . ================================================ FILE: docs/source/conf.py ================================================ # Configuration file for the Sphinx documentation builder. # -- Project information import os import sys sys.path.insert(0, os.path.abspath('.')) print(sys.path) print(os.listdir(".")) project = 'SAGE' copyright = '2021, Graziella' author = 'Nikita Martynov' release = '1.0' version = '1.1.0' # -- General configuration extensions = [ 'sphinx.ext.duration', 'sphinx.ext.doctest', 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.intersphinx', 'sphinx_rtd_theme', 'sphinxemoji.sphinxemoji', ] intersphinx_mapping = { 'python': ('https://docs.python.org/3/', None), 'sphinx': ('https://www.sphinx-doc.org/en/master/', None), } intersphinx_disabled_domains = ['std'] templates_path = ['_templates'] source_suffix = ['.rst'] html_static_path = ['images'] # -- Options for HTML output html_theme = 'sphinx_rtd_theme' html_theme_options = { 'collapse_navigation': False, 'sticky_navigation': True, 'navigation_depth': 4, 'includehidden': True, 'titles_only': False } # -- Options for EPUB output epub_show_urls = 'footnote' ================================================ FILE: docs/source/index.rst ================================================ .. role:: raw-html-m2r(raw) :format: html .. image:: images/sage-black.svg :align: center .. raw:: html

License Release Paper Paper Paper

.. raw:: html

Spelling correction, corruption and evaluation for multiple languages

.. raw:: html

Install | Models | Evaluation | SBSC | Augmentex | Papers

SAGE (Spell checking via Augmentation and Generative distribution Emulation) is a complete solution that you need when working on a spelling problem: 💯 Spelling correction with State-of-the-art pre-trained 🤗Transformer models: 1️⃣ `sage-fredt5-large `_ 2️⃣ `sage-fredt5-distilled-95m `_ 3️⃣ `sage-mt5-large `_ 4️⃣ `sage-m2m100-1.2B `_ 5️⃣ `T5-large `_ 6️⃣ `M2M100-1.2B `_ 7️⃣ `M2M100-418M `_ 6️⃣ `FredT5-large `_ 🧩 **Augment your data with spelling corruption algorithms** 📊 **Evaluate performance of spelling correction tools** Table of contents ----------------- * `Installation <#id1>`_ * `Regular install <#id2>`_ * `Editable install <#id3>`_ * `Quick demo <#id4>`_ * `Spelling corruption <#id5>`_ * `Statistic-based Spelling Corruption (SBSC) <#id7>`_ * `Augmentex <#id9>`_ * `Spelling correction <#id12>`_ * `Evaluation <#id32>`_ * `Citation <#id33>`_ Installation ------------ Regular install ^^^^^^^^^^^^^^^ .. code-block:: commandline git clone https://github.com/ai-forever/sage.git cd sage pip install . To install extra requirements that you are going to need when working with ERRANT-based metric run .. code-block:: commandline pip install -e ".[errant]" or just .. code-block:: commandline pip install -e .[errant] Editable install ^^^^^^^^^^^^^^^^ .. code-block:: commandline git clone https://github.com/ai-forever/sage.git cd sage pip install -e . and proceed with extra requirements install as above. Quick demo ---------- Lets spoil some text: .. code-block:: python import sage from sage.spelling_corruption import SBSCConfig, SBSCCorruptor from sage.utils import DatasetsAvailable text = "Заметьте, не я это предложил!" # Instantiate SBSC corruptor from a dataset with errors in medical anamnesis config = SBSCConfig( reference_dataset_name_or_path=DatasetsAvailable.MedSpellchecker.name, reference_dataset_split="test" ) corruptor = SBSCCorruptor.from_config(config) corruptor.corrupt(text, seed=1) # 'Заиетьте, не я эт о пред ложил!' ... now with Augmentex: .. code-block:: python import sage from sage.spelling_corruption import WordAugConfig, WordAugCorruptor text = "Заметьте, не я это предложил!" # Instantiate WordAugCorruptor corruptor with a custom set of parameters config = WordAugConfig( min_aug=1, max_aug=5, unit_prob=0.4, ) corruptor = WordAugCorruptor.from_config(config) corruptor.corrupt(text, seed=1) # 'это не предложил! Заметьте, я' ... or for the English language: .. code-block:: python import os from sage.spelling_corruption import SBSCConfig, SBSCCorruptor text = "Screw you guys, I am going home. (c)" # Instantiate SBSC corruptor from a JFLEG dataset config = SBSCConfig( lang="en", reference_dataset_name_or_path=os.path.join("data", "example_data", "jfleg"), ) corruptor = SBSCCorruptor.from_config(config) corruptor.corrupt(text, seed=1) # 'Screw you kuys, I am going home. (c)' Now we can use our models to restore the initial text back: .. code-block:: python from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import RuM2M100ModelForSpellingCorrection, T5ModelForSpellingCorruption text_ru = "Замтьте не я это предложил" text_en = "Screw you kuys, I am going home. (c)" corrector_fred = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_large.value) corrector_m2m = RuM2M100ModelForSpellingCorrection.from_pretrained(AvailableCorrectors.m2m100_1B.value) corrector_en = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.ent5_large.value) print(corrector_fred.correct(text_ru)) # ['Заметьте, не я это предложил.'] print(corrector_m2m.correct(text_ru)) # ['Заметьте не я это предложил'] print(corrector_en.correct(text_en, prefix="grammar: ")) # ['Screw you guys, I am going home. (c)'] Evaluate performance of the models on open benchmarks for spelling correction: .. code-block:: python import os import torch from sage.utils import DatasetsAvailable from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import T5ModelForSpellingCorruption corrector_fred_95m = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_distilled_95m.value) corrector_mt5 = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_mt5_large.value) corrector_fred_95m.model.to(torch.device("cuda:0")) corrector_mt5.model.to(torch.device("cuda:0")) metrics = corrector_fred_95m.evaluate("RUSpellRU", metrics=["errant", "ruspelleval"], batch_size=32) print(metrics) # {'CASE_Precision': 94.41, 'CASE_Recall': 92.55, 'CASE_F1': 93.47, 'SPELL_Precision': 77.52, 'SPELL_Recall': 64.09, 'SPELL_F1': 70.17, 'PUNCT_Precision': 86.77, 'PUNCT_Recall': 80.59, 'PUNCT_F1': 83.56, 'YO_Precision': 46.21, 'YO_Recall': 73.83, 'YO_F1': 56.84, 'Precision': 83.48, 'Recall': 74.75, 'F1': 78.87} metrics = corrector_mt5.evaluate("/content/sage/data/example_data/jfleg", metrics=["ruspelleval"], batch_size=16) print(metrics) # {'Precision': 75.94, 'Recall': 88.15, 'F1': 81.59} *NOTE*\ : if you are launching code snippet in Colab you'd probably end up with MEMORY ERROR, so manage evaluation procedures so that you meet available device's restrictions. As a feasible workaround you can execute .. code-block:: python del corrector_fred_95m.model to free some space. Spelling Corruption ------------------- We implemented two methods for spelling corruption. **S**\ tatistic-\ **b**\ ased **S**\ pelling **C**\ orruption (\ **SBSC**\ ) aims to mimic human behaviour when making an error. While `Augmentex <#id9>`_ relies on rule-based heuristics and common errors and mistypings especially those committed while typing text on a keyboard. 🚀 Both methods proved their effectiveness for spelling correction systems and celebrated substantial **performance gains** fully reported in our `Paper `_. Statistic-based Spelling Corruption (SBSC) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This method is thoroughly described in our another `Paper `_ and in this 🗣️\ `Talk `_. Briefly, SBSC follows two simple steps: * 🧠 Analyze errors, their type and positions in a source text; * ✏️ Reproduce errors from the source text in a new sentence; 🧠 To analyze errors in a source sentence we need its corresponding correction in order to build `Levenshtein matrix `_\ , traverse it back starting from the bottom right entry and determine the exact position and type of an error. We then aggregate all obtained statistics and normalize it to valid discrete distributions. ✏️ "Reproduce" step is even less complicated: we just sample number of errors per sentence, their types and relative positions from corresponding distributions and apply them to a correct sentence. As stated, you need a parallel dataset to "fit" SBSC. We provide a set of four datasets with natural errors covering exhaustive range of domains: * **RUSpellRU**\ : texts collected from `LiveJournal `_\ , with manually corrected typos and errors; * **MultidomainGold**\ : examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; * **MedSpellChecker**\ : texts with errors from medical anamnesis; * **GitHubTypoCorpusRu**\ : spelling errors and typos in commits from GitHub; You can use them as simple as .. code-block:: python import sage from sage.spelling_corruption import SBSCConfig, SBSCCorruptor from sage.utils import DatasetsAvailable # Instantiate SBSC corruptor from a dataset with errors in medical anamnesis config = SBSCConfig( reference_dataset_name_or_path=DatasetsAvailable.MedSpellchecker.name, reference_dataset_split="test" ) corruptor = SBSCCorruptor.from_config(config) ... or you can initialize your SBSC from locally stored dataset: .. code-block:: python import os from sage.spelling_corruption import SBSCConfig, SBSCCorruptor # Instantiate SBSC corruptor from a JFLEG dataset config = SBSCConfig( lang="en", reference_dataset_name_or_path=os.path.join("data", "example_data", "jfleg"), ) corruptor = SBSCCorruptor.from_config(config) ✅ To check how good SBSC actually approximates original errors, you can plot side-by-side graphs of original and synthetically generated distributions: |pic1| |pic2| .. |pic1| image:: images/bea60k_side_by_side.jpg :width: 45% .. |pic2| image:: images/ruspellru_side_by_side.jpg :width: 45% To access these graphs you can simply .. code-block:: python from sage.utils import load_available_dataset_from_hf, draw_and_save_errors_distributions_comparison_charts from sage.spelling_corruption.sbsc.labeler import process_mistypings from sage.spelling_corruption import SBSCCorruptor sources, corrections = load_available_dataset_from_hf("RUSpellRU", for_labeler=True, split="train") ruspellru_stats, ruspellru_confusion_matrix, ruspellru_typos_cnt = process_mistypings(sources, corrections) corruptor = SBSCCorruptor.from_default_config() spoiled_sentences = corruptor.batch_corrupt(corrections) sbsc_stats, sbsc_confusion_matrix, sbsc_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt = sbsc_typos_cnt, reference_typos_cnt=ruspellru_typos_cnt, actual_stats=sbsc_stats, reference_stats=ruspellru_stats, path_to_save="ruspellru_sbsc.jpg" ) Augmentex ^^^^^^^^^ Augmentex introduces rule-based and common statistic (empowered by `KartaSlov `_ project) approach to insert errors in text. It is fully described again in the `Paper `_ and in this 🗣️\ `Talk `_. 🖇️ Augmentex allows you to operate on two levels of granularity when it comes to text corruption and offers you sets of specific methods suited for particular level: * **Word level**\ : * *replace* - replace a random word with its incorrect counterpart; * *delete* - delete random word; * *swap* - swap two random words; * *stopword* - add random words from stop-list; * *reverse* - change a case of the first letter of a random word; * **Character level**\ : * *shift* - randomly swaps upper / lower case in a string; * *orfo* - substitute correct characters with their common incorrect counterparts; * *typo* - substitute correct characters as if they are mistyped on a keyboard; * *delete* - delete random character; * *multiply* - multiply random character; * *swap* - swap two adjacent characters; * *insert* - insert random character; To access Augmentex you only need these few manipulations: .. code-block:: python from sage.spelling_corruption import CharAugConfig, CharAugCorruptor config = CharAugConfig( unit_prob=0.3, # proportion of characters that is going to undergo edits min_aug=1, # minimum number of edits max_aug=5, # maximum number of edits mult_num=3 # `multiply` edit ) corruptor = CharAugCorruptor.from_config(config) ... or like this: .. code-block:: python from sage.spelling_corruption import WordAugConfig, WordAugCorruptor config = WordAugConfig( unit_prob=0.4, # proportion of characters that is going to undergo edits min_aug=1, # minimum number of edits max_aug=5, # maximum number of edits ) corruptor = WordAugCorruptor.from_config(config) Augmentex has been created by our fellow team, the project has its own `repo `_\ , do not forget to take a look! Spelling Correction ------------------- Our methodology for obtaining model with optimal performance on spellchecking task is thoroughly described in our `Paper `_. And the algorithm is simple and generally consists of two steps: * Pre-train model on extensive parallel corpus with synthetically generated errors; * Fine-tune on combinations of available datasets for spelling correction with "human-made" errors; We use `Augmentex <#id9>`_ and `SBSC <#id7>`_ for both generating large synthetic corpora and augmenting datasets with natural errors. We release 4 pre-trains of our models. We've 6 🤗Transformer models for Russian 🇷🇺: * `sage-fredt5-large `_ * `sage-fredt5-distilled-95m `_ * `sage-m2m100-1.2B `_ * `M2M100-1.2B `_ * `M2M100-418M `_ * `FredT5-large `_ And two model for English 🇬🇧: * `sage-mt5-large `_ * `T5-large `_ Models for the Russian language have been pre-trained on combination of Russian Wikipedia and videos transcriptions with artificial errors generated by `SBSC <#id7>`_ on statistics gathered from train split of `RUSpellRU `_. T5 for English trained on mixture of English Wikipedia articles and news posts with synthetic errors inserted by `SBSC <#id7>`_ fitted on statistics from 5k subsample of `BEA60k `_. 📚 We also validate our pre-trains for Russian on all available datasets with "human-made" errors: * **RUSpellRU**\ : texts collected from `LiveJournal `_\ , with manually corrected typos and errors; * **MultidomainGold**\ : examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; * **MedSpellChecker**\ : texts with errors from medical anamnesis; * **GitHubTypoCorpusRu**\ : spelling errors and typos in commits from GitHub; * **BEA60K**\ : English spelling errors collected from several domains; * **JFLEG**\ : 1601 sentences in English, which contain about 2 thousand spelling errors; 📈 Here we report evaluation of some setups: * Zero-shot evaluation of pre-trained checkpoints; * Additional fine-tuning (ft.) on the target dataset; Full list of setups and corresponding performances are in the `Paper `_. **RUSpellRU**, **MultidomainGold**, **MedSpellChecker** and **GitHubTypoCorpusRu** come from `spellcheck_punctuation_benchmark `_. The benchmark accounts for both punctuation and spelling errors. For the simplicity and better representativeness we report results only for those models (`sage-fredt5-large `_, `sage-fredt5-distilled-95m `_) that deal with both types of errors (the Russian language). The detailed metrics for other checkpoints can be found either in the `Paper `_, `post <ссылка на новый хабр>`_ or corresponding model card. *NOTE:* **MedSpellChecker** and **GitHubTypoCorpusRu** do not have train split, so their performance on **Pre-train + fine-tune** setup is reported as a result of fine-tuning on combination of **RUSpellRU** and **MultidomainGold** datasets. **RUSpellRU Evaluation** +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +=================================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-ai-service | 90.3 | 86.3 | 88.2 | 90.3 | 86.6 | 88.4 | 95.2 | 95.9 | 95.6 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large | 57.3 | 68.0 | 62.2 | 86.7 | 46.1 | 60.2 | 92.1 | 67.8 | 78.1 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft.) | 88.4 | 80.9 | 84.5 | 88.2 | 85.3 | 86.8 | 95.5 | 94.0 | 94.7 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-distilled-95m (ft.) | 83.5 | 74.8 | 78.9 | 86.8 | 80.6 | 83.6 | 94.4 | 92.5 | 93.5 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 33.6 | 58.5 | 42.7 | 85.9 | 64.6 | 73.7 | 84.9 | 73.9 | 79.0 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 54.9 | 76.7 | 64.0 | 84.0 | 82.3 | 83.2 | 91.5 | 90.2 | 90.9 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **MultidomainGold Evaluation** +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +=================================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-ai-service | 81.6 | 77.7 | 79.6 | 70.2 | 67.5 | 68.8 | 80.5 | 80.5 | 80.5 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large | 43.4 | 49.7 | 46.3 | 21.8 | 21.3 | 21.6 | 58.8 | 23.9 | 34.0 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft.) | 80.3 | 75.1 | 77.6 | 69.0 | 66.5 | 67.7 | 78.6 | 80.0 | 79.3 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-distilled-95m (ft.) | 77.2 | 69.9 | 73.4 | 66.8 | 63.4 | 65.0 | 76.8 | 79.1 | 77.9 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 18.8 | 48.1 | 27.1 | 42.0 | 31.8 | 36.2 | 47.1 | 51.3 | 49.1 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 25.4 | 68.0 | 37.0 | 57.8 | 54.3 | 56.0 | 54.0 | 67.5 | 60.0 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **MedSpellchecker Evaluation** +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +=================================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-ai-service | 71.3 | 73.5 | 72.4 | 75.1 | 69.2 | 72.0 | 80.9 | 72.8 | 76.6 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large | 35.2 | 54.5 | 42.8 | 19.2 | 13.2 | 15.7 | 48.7 | 36.8 | 41.9 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft.) | 72.5 | 72.2 | 72.3 | 74.6 | 66.4 | 70.3 | 79.3 | 85.1 | 82.1 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-distilled-95m (ft.) | 65.1 | 64.8 | 64.9 | 78.6 | 63.1 | 70.0 | 63.5 | 74.7 | 68.7 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 14.7 | 45.9 | 22.3 | 69.9 | 52.3 | 59.8 | 26.4 | 41.8 | 32.3 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 37.8 | 72.3 | 49.6 | 81.4 | 64.3 | 71.9 | 73.0 | 62.1 | 67.1 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **GitHubTypoCorpusRu Evaluation** +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +=================================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-ai-service | 70.8 | 56.3 | 62.7 | 48.9 | 35.8 | 41.4 | 32.9 | 45.3 | 38.1 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large | 46.0 | 46.6 | 46.3 | 22.7 | 18.3 | 20.2 | 12.0 | 13.2 | 12.6 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft.) | 67.5 | 53.2 | 59.5 | 48.5 | 38.0 | 42.6 | 37.3 | 50.0 | 42.7 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-distilled-95m (ft.) | 57.8 | 48.5 | 52.7 | 45.2 | 39.5 | 42.1 | 29.9 | 46.2 | 36.3 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 23.7 | 38.7 | 29.4 | 37.6 | 23.3 | 28.7 | 19.6 | 35.9 | 25.3 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 27.0 | 52.8 | 35.7 | 45.9 | 32.6 | 38.2 | 25.7 | 36.8 | 30.2 | +---------------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **BEA60K Evaluation** +---------------------------------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +===================================================+===========+========+======+ | sage-mt5-large | 64.7 | 83.8 | 73.0 | +---------------------------------------------------+-----------+--------+------+ | T5-large-spell | 66.5 | 83.1 | 73.9 | +---------------------------------------------------+-----------+--------+------+ | gpt-3.5-turbo | 66.9 | 84.1 | 74.5 | +---------------------------------------------------+-----------+--------+------+ | gpt-4 | 68.6 | 85.2 | 76.0 | +---------------------------------------------------+-----------+--------+------+ | `Bert `_ | 65.8 | 79.6 | 72.0 | +---------------------------------------------------+-----------+--------+------+ | `SC-LSTM `_ | 62.2 | 80.3 | 72.0 | +---------------------------------------------------+-----------+--------+------+ **JFLEG Evaluation** +---------------------------------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +===================================================+===========+========+======+ | sage-mt5-large | 74.9 | 88.4 | 81.1 | +---------------------------------------------------+-----------+--------+------+ | T5-large-spell | 83.4 | 84.3 | 83.8 | +---------------------------------------------------+-----------+--------+------+ | gpt-3.5-turbo | 77.8 | 88.6 | 82.9 | +---------------------------------------------------+-----------+--------+------+ | gpt-4 | 77.9 | 88.3 | 82.8 | +---------------------------------------------------+-----------+--------+------+ | `Bert `_ | 78.5 | 85.4 | 81.8 | +---------------------------------------------------+-----------+--------+------+ | `SC-LSTM `_ | 80.6 | 86.1 | 83.2 | +---------------------------------------------------+-----------+--------+------+ **RUSpellRU**, **MultidomainGold**, **MedSpellChecker** and **GitHubTypoCorpusRu** are available as HuggingFace datasets `here `_ and through the API of our library: .. code-block:: python from sage.utils import load_available_dataset_from_hf, DatasetsAvailable print([dataset.name for dataset in DatasetsAvailable]) # ['MultidomainGold', 'RUSpellRU', 'MedSpellchecker', 'GitHubTypoCorpusRu', 'MultidomainGold_orth', 'RUSpellRU_orth', 'MedSpellchecker_orth', 'GitHubTypoCorpusRu_orth'] gold_dataset = load_available_dataset_from_hf(DatasetsAvailable.MultidomainGold.name, for_labeler=False) print(len(gold_dataset)) # 7675 sources, corrections = load_available_dataset_from_hf(DatasetsAvailable.RUSpellRU.name, for_labeler=True, split="train") print(len(sources), len(corrections)) # 2000 2000 Evaluation ---------- We also provide functionality to evaluate the performance of spelling correction systems and rank them. 🎯 Currently two options are available: * `ruspelleval `_; * `ERRANT `_-based metric adapted for the Russian language; Both algorithms output Precision, Recall and F1 scores that can be interpreted like the following: * **Precision**: one minus share of unnecessary amendments; * **Recall**: proportion of expected corrections; * **F1**: famous geometric mean of aforementioned two; You can obtain these metrics simply by .. code-block:: python from sage.evaluation import Scorer from sage.utils import DatasetsAvailable, load_available_dataset_from_hf sources, corrections = load_available_dataset_from_hf(DatasetsAvailable.RUSpellRU.name, for_labeler=True, split="test") scorer = Scorer() metrics = scorer.score(sources, corrections, corrections, metrics=["ruspelleval", "errant"]) print(metrics) # {'Precision': 100.0, 'Recall': 100.0, 'F1': 100.0, 'CASE_Precision': 100.0, 'CASE_Recall': 100.0, 'CASE_F1': 100.0, 'SPELL_Precision': 100.0, 'SPELL_Recall': 100.0, 'SPELL_F1': 100.0, 'PUNCT_Precision': 100.0, 'PUNCT_Recall': 100.0, 'PUNCT_F1': 100.0, 'YO_Precision': 100.0, 'YO_Recall': 100.0, 'YO_F1': 100.0} ... or by directly assessing the model: .. code-block:: python import os import torch from sage.utils import DatasetsAvailable from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import T5ModelForSpellingCorruption corrector_fred_95m = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_distilled_95m.value) corrector_mt5 = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_mt5_large.value) corrector_fred_95m.model.to(torch.device("cuda:0")) corrector_mt5.model.to(torch.device("cuda:0")) metrics = corrector_fred_95m.evaluate("RUSpellRU", metrics=["errant", "ruspelleval"], batch_size=32) print(metrics) # {'CASE_Precision': 94.41, 'CASE_Recall': 92.55, 'CASE_F1': 93.47, 'SPELL_Precision': 77.52, 'SPELL_Recall': 64.09, 'SPELL_F1': 70.17, 'PUNCT_Precision': 86.77, 'PUNCT_Recall': 80.59, 'PUNCT_F1': 83.56, 'YO_Precision': 46.21, 'YO_Recall': 73.83, 'YO_F1': 56.84, 'Precision': 83.48, 'Recall': 74.75, 'F1': 78.87} metrics = corrector_mt5.evaluate("/content/sage/data/example_data/jfleg", metrics=["ruspelleval"], batch_size=16) print(metrics) # {'Precision': 75.94, 'Recall': 88.15, 'F1': 81.59} The metrics output by ERRANT based algorithm are indicated by the corresponding prefix, which refers to the specific type of errors: * *CASE*: erroneously used case; * *SPELL*: spelling and grammar errors; * *PUNCT*: punctuation errors; * *YO*: unnecessary replacement of "YO" (ё) letter; 📌 Credit for evaluation script goes to Aleksei Sorokin and his notable `work `_ in proceedings of `SpellRueval `_. Citation -------- If you want to know more about our work take a look at these publications: 💥 Our first `Paper `_ provides a thorough description of the methodology used to obtain SOTA models for spelling corrections as well the comprehensive reports of all experiments that have been carried out. 💫 While our Dialogue-2023 `Paper `_ focuses on exploiting resources for the task of spelling correction and procedures on obtaining high-quality parallel corpuses. .. code-block:: @inproceedings{martynov-etal-2024-methodology, title = "A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages", author = "Martynov, Nikita and Baushenko, Mark and Kozlova, Anastasia and Kolomeytseva, Katerina and Abramov, Aleksandr and Fenogenova, Alena", editor = "Graham, Yvette and Purver, Matthew", booktitle = "Findings of the Association for Computational Linguistics: EACL 2024", month = mar, year = "2024", address = "St. Julian{'}s, Malta", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2024.findings-eacl.10", pages = "138--155", abstract = "Large language models excel in text generation and generalization, however they face challenges in text editing tasks, especially in correcting spelling errors and mistyping.In this paper, we present a methodology for generative spelling correction (SC), tested on English and Russian languages and potentially can be extended to any language with minor changes. Our research mainly focuses on exploring natural spelling errors and mistyping in texts and studying how those errors can be emulated in correct sentences to enrich generative models{'} pre-train procedure effectively. We investigate the effects of emulations in various text domains and examine two spelling corruption techniques: 1) first one mimics human behavior when making a mistake through leveraging statistics of errors from a particular dataset, and 2) second adds the most common spelling errors, keyboard miss clicks, and some heuristics within the texts.We conducted experiments employing various corruption strategies, models{'} architectures, and sizes in the pre-training and fine-tuning stages and evaluated the models using single-domain and multi-domain test sets. As a practical outcome of our work, we introduce SAGE (Spell checking via Augmentation and Generative distribution Emulation).", } @inproceedings{martynov2023augmentation, title={Augmentation methods for spelling corruptions}, author={Martynov, Nikita and Baushenko, Mark and Abramov, Alexander and Fenogenova, Alena}, booktitle={Proceedings of the International Conference “Dialogue}, volume={2023}, year={2023} } 📌 Feel free to ask any questions regarding our work at corresponding point of contact: *nikita.martynov.98@list.ru* .. toctree:: :caption: Datasets :hidden: rst/datasets/RUSpellRU.rst rst/datasets/MultidomainGold.rst rst/datasets/MedSpellchecker.rst rst/datasets/GitHubTypoCorpusRu.rst .. toctree:: :caption: Models :hidden: rst/spelling_correction/sage-fredt5-large.rst rst/spelling_correction/sage-fredt5-distilled-95m.rst rst/spelling_correction/sage-mt5-large.rst rst/spelling_correction/sage-m2m100-1.2B.rst rst/spelling_correction/RuM2M100-1.2B.rst rst/spelling_correction/M2M100-418M.rst rst/spelling_correction/FredT5-large.rst rst/spelling_correction/T5.rst .. toctree:: :caption: Augmentation :hidden: rst/spelling_corruption/SBSC.rst rst/spelling_corruption/Augmentex.rst .. toctree:: :caption: Evaluation :hidden: rst/evaluation/RuErrant.rst rst/evaluation/RuSpellEval.rst ================================================ FILE: docs/source/rst/datasets/GitHubTypoCorpusRu.rst ================================================ 🐙 GitHubTypoCorpusRu ------------------- The dataset is a part of `spellcheck_punctuation_benchmark `_: .. image:: ../../images/benchmark.png :align: center The Benchmark includes four datasets, each of which consists of pairs of sentences in Russian language. Each pair embodies sentence, which may contain spelling and punctuation errors, and its corresponding correction. Datasets were gathered from various sources and domains including social networks, internet blogs, github commits, medical anamnesis, literature, news, reviews and more. All datasets were passed through two-stage manual labeling pipeline. The correction of a sentence is defined by an agreement of at least two human annotators. Manual labeling scheme accounts for jargonisms, collocations and common language, hence in some cases it encourages annotators not to amend a word in favor of preserving style of a text. The latter does not apply to punctuation. Punctuation signs are rigorously marked in accordance to the rules of the Russian punctuation system. Table of contents ^^^^^^^^^^^^^^^^^ * `Dataset description <#id1>`_ * `Dataset summary <#id2>`_ * `Supported Tasks and Leaderboards <#id3>`_ * `Languages <#id4>`_ * `Dataset Structure <#id5>`_ * `Data Instances <#id6>`_ * `Data Fields <#id7>`_ * `Data Splits <#id8>`_ * `Dataset Creation <#id9>`_ * `Initial Data Collection and Normalization <#id10>`_ * `Annotation process <#id11>`_ * `Who are the annotators? <#id12>`_ * `Considerations for Using the Data <#id13>`_ * `Discussion of Biases <#id14>`_ * `Other Known Limitations <#id15>`_ * `Additional Information <#id16>`_ * `Future plans <#id17>`_ * `Dataset Curators <#id18>`_ * `Licensing Information <#id19>`_ * `Citation Information <#id20>`_ Dataset Description ^^^^^^^^^^^^^^^^^^^ - **Repository:** `SAGE `_ - **Paper:** `EACL 2024 `_ - **Point of Contact:** nikita.martynov.98@list.ru Dataset Summary ################ The Russian language part of `GitHub Typo Corpus `_. The texts are from GitHub commits. Passed the second-step of two-step manual annotation. Supported Tasks and Leaderboards ################################# - **Task:** automatic spelling correction. - **Metrics:** https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf. - **ERRANT:** https://github.com/chrisjbryant/errant. Languages ######### Russian. Dataset Structure ^^^^^^^^^^^^^^^^^ Data Instances ################ - **Size of downloaded dataset files:** 1.23 Mb - **Size of the generated dataset:** 0.48 Mb - **Total amount of disk used:** 1.71 Mb An example of "test" looks as follows .. code-block:: { "source": "text: Пожалуйста выберите чат, чтобы начать общение", "correction": "text: Пожалуйста, выберите чат, чтобы начать общение.", } Data Fields ################ - `source`: a `string` feature - `correction`: a `string` feature - `domain`: a `string` feature Data Splits ################ +--------------------+------+ | | test | +====================+======+ | GitHubTypoCorpusRu | 868 | +--------------------+------+ Dataset Creation ^^^^^^^^^^^^^^^^^ Initial Data Collection and Normalization ########################################## For the reference on the original data collection please see the `paper `_. We extracted the Russian part from the original corpus and passed the texts trough the second step of two-stage manual annotation. Annotation process ########################################## We set up two-stage annotation project via a crowd-sourcing platform Toloka: 1. Data gathering stage: we provide the texts with possible mistakes to annotators and ask them to write the sentence correctly; 2. Validation stage: we provide annotators with the pair of sentences (source and its corresponding correction from the previous stage) and ask them to check if the correction is right. We prepared instructions for annotators for each task. The instructions ask annotators to correct misspellings if it does not alter the original style of the text. Instructions do not provide rigorous criteria on the matter of distinguishing the nature of an error in terms of its origin - whether it came from an urge to endow a sentence with particular stylistic features or from unintentional spelling violation since it is time-consuming and laborious to describe every possible case of employing slang, dialect, colloquialisms, etc. instead of proper language. Instructions also do not distinguish errors that come from the geographical or social background of the source. Instead, we rely on annotators’ knowledge and understanding of a language since, in this work, the important factor is to preserve the original style of the text. To ensure we receive qualified expertise, we set up test iteration on a small subset of the data for both stages. We manually validated the test results and selected annotators, who processed at least six samples (2% of the total test iteration) and did not make a single error. After test iteration, we cut 85% and 86% of labellers for gathering and validation stages. We especially urge annotators to correct mistakes associated with the substitution of the letters "ё" "й" and "щ" for corresponding "е" "и" and "ш" and not to explain abbreviations and correct punctuation errors. Each annotator is also warned about potentially sensitive topics in data (e.g., politics, societal minorities, and religion). The annotation of punctuation errors has been done in one iteration considering the low variation and difficulty of the task (relative to spelling correction). The annotators have been asked to correct punctuation signs in accordance with the rules of the Russian punctuation system. Who are the annotators? ######################## Native Russian speakers who passed the language exam. The annotators for punctuation errors are also professional editors and linguists. Considerations for Using the Data ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Discussion of Biases ##################### We clearly state our work’s aims and implications, making it open source and transparent. The data will be available under a public license. As our research involved anonymized textual data, informed consent from human participants was not required. However, we obtained permission to access publicly available datasets and ensured compliance with any applicable terms of service or usage policies. Other Known Limitations ######################## The data used in our research may be limited to specific domains, preventing comprehensive coverage of all possible text variations. Despite these limitations, we tried to address the issue of data diversity by incorporating single-domain and multi-domain datasets in the proposed research. This approach allowed us to shed light on the diversity and variances within the data, providing valuable insights despite the inherent constraints. We primarily focus on the Russian language. Further research is needed to expand the datasets for a wider range of languages. Additional Information ^^^^^^^^^^^^^^^^^^^^^^^^ Future plans ############### We are planning to expand our benchmark with both new Russian datasets and datasets in other languages including (but not limited to) European and CIS languages. If you would like to contribute, please contact us. Dataset Curators ################### Nikita Martynov nikita.martynov.98@list.ru (Spellcheck Punctuation Benchmark) Licensing Information ###################### All our datasets are published by MIT License. Citation Information ####################### .. code-block:: @inproceedings{martynov2023augmentation, title={Augmentation methods for spelling corruptions}, author={Martynov, Nikita and Baushenko, Mark and Abramov, Alexander and Fenogenova, Alena}, booktitle={Proceedings of the International Conference “Dialogue}, volume={2023}, year={2023} } @inproceedings{martynov-etal-2024-methodology, title = "A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages", author = "Martynov, Nikita and Baushenko, Mark and Kozlova, Anastasia and Kolomeytseva, Katerina and Abramov, Aleksandr and Fenogenova, Alena", editor = "Graham, Yvette and Purver, Matthew", booktitle = "Findings of the Association for Computational Linguistics: EACL 2024", month = mar, year = "2024", address = "St. Julian{'}s, Malta", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2024.findings-eacl.10", pages = "138--155", abstract = "Large language models excel in text generation and generalization, however they face challenges in text editing tasks, especially in correcting spelling errors and mistyping.In this paper, we present a methodology for generative spelling correction (SC), tested on English and Russian languages and potentially can be extended to any language with minor changes. Our research mainly focuses on exploring natural spelling errors and mistyping in texts and studying how those errors can be emulated in correct sentences to enrich generative models{'} pre-train procedure effectively. We investigate the effects of emulations in various text domains and examine two spelling corruption techniques: 1) first one mimics human behavior when making a mistake through leveraging statistics of errors from a particular dataset, and 2) second adds the most common spelling errors, keyboard miss clicks, and some heuristics within the texts.We conducted experiments employing various corruption strategies, models{'} architectures, and sizes in the pre-training and fine-tuning stages and evaluated the models using single-domain and multi-domain test sets. As a practical outcome of our work, we introduce SAGE (Spell checking via Augmentation and Generative distribution Emulation).", } ================================================ FILE: docs/source/rst/datasets/MedSpellchecker.rst ================================================ 🫀 MedSpellchecker ------------------- The dataset is a part of `spellcheck_punctuation_benchmark `_: .. image:: ../../images/benchmark.png :align: center The Benchmark includes four datasets, each of which consists of pairs of sentences in Russian language. Each pair embodies sentence, which may contain spelling and punctuation errors, and its corresponding correction. Datasets were gathered from various sources and domains including social networks, internet blogs, github commits, medical anamnesis, literature, news, reviews and more. All datasets were passed through two-stage manual labeling pipeline. The correction of a sentence is defined by an agreement of at least two human annotators. Manual labeling scheme accounts for jargonisms, collocations and common language, hence in some cases it encourages annotators not to amend a word in favor of preserving style of a text. The latter does not apply to punctuation. Punctuation signs are rigorously marked in accordance to the rules of the Russian punctuation system. Table of contents ^^^^^^^^^^^^^^^^^ * `Dataset description <#id1>`_ * `Dataset summary <#id2>`_ * `Supported Tasks and Leaderboards <#id4>`_ * `Languages <#id5>`_ * `Dataset Structure <#id6>`_ * `Data Instances <#id7>`_ * `Data Fields <#id8>`_ * `Data Splits <#id9>`_ * `Dataset Creation <#id10>`_ * `Initial Data Collection and Normalization <#id11>`_ * `Annotation process <#id12>`_ * `Who are the annotators? <#id13>`_ * `Considerations for Using the Data <#id14>`_ * `Discussion of Biases <#id15>`_ * `Other Known Limitations <#id16>`_ * `Additional Information <#id17>`_ * `Future plans <#id18>`_ * `Dataset Curators <#id19>`_ * `Licensing Information <#id20>`_ * `Citation Information <#id21>`_ Dataset Description ^^^^^^^^^^^^^^^^^^^ - **Repository:** `SAGE `_ - **Paper:** `EACL 2024 `_ - **Point of Contact:** nikita.martynov.98@list.ru Dataset Summary ################ The dataset is obtained from the `MedSpellchecker `_ project. It originally consisted of texts from medical anamnesys that then have been passed through two-step manual annotation procedure. Supported Tasks and Leaderboards ################################# - **Task:** automatic spelling correction. - **Metrics:** https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf. - **ERRANT:** https://github.com/chrisjbryant/errant. Languages ######### Russian. Dataset Structure ^^^^^^^^^^^^^^^^^ Data Instances ################ - **Size of downloaded dataset files:** 1.49 Mb - **Size of the generated dataset:** 0.54 Mb - **Total amount of disk used:** 2.03 Mb An example of "train" / "test" looks as follows .. code-block:: { "source": "Накануне (18.02.2012 г", "correction": "Накануне (18.02.2012 г.).", } Data Fields ################ - `source`: a `string` feature - `correction`: a `string` feature - `domain`: a `string` feature Data Splits ################ +---------------+------+ | | test | +===============+======+ | MedSpellcheck | 1054 | +---------------+------+ Dataset Creation ^^^^^^^^^^^^^^^^^ Initial Data Collection and Normalization ########################################## The source data gathering procedure in described in the `paper `_. We took the released splits and set up the annotation process. Annotation process ########################################## We set up two-stage annotation project via a crowd-sourcing platform Toloka: 1. Data gathering stage: we provide the texts with possible mistakes to annotators and ask them to write the sentence correctly; 2. Validation stage: we provide annotators with the pair of sentences (source and its corresponding correction from the previous stage) and ask them to check if the correction is right. We prepared instructions for annotators for each task. The instructions ask annotators to correct misspellings if it does not alter the original style of the text. Instructions do not provide rigorous criteria on the matter of distinguishing the nature of an error in terms of its origin - whether it came from an urge to endow a sentence with particular stylistic features or from unintentional spelling violation since it is time-consuming and laborious to describe every possible case of employing slang, dialect, colloquialisms, etc. instead of proper language. Instructions also do not distinguish errors that come from the geographical or social background of the source. Instead, we rely on annotators’ knowledge and understanding of a language since, in this work, the important factor is to preserve the original style of the text. To ensure we receive qualified expertise, we set up test iteration on a small subset of the data for both stages. We manually validated the test results and selected annotators, who processed at least six samples (2% of the total test iteration) and did not make a single error. After test iteration, we cut 85% and 86% of labellers for gathering and validation stages. We especially urge annotators to correct mistakes associated with the substitution of the letters "ё" "й" and "щ" for corresponding "е" "и" and "ш" and not to explain abbreviations and correct punctuation errors. Each annotator is also warned about potentially sensitive topics in data (e.g., politics, societal minorities, and religion). The annotation of punctuation errors has been done in one iteration considering the low variation and difficulty of the task (relative to spelling correction). The annotators have been asked to correct punctuation signs in accordance with the rules of the Russian punctuation system. Who are the annotators? ######################## Native Russian speakers who passed the language exam. The annotators for punctuation errors are also professional editors and linguists. Considerations for Using the Data ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Discussion of Biases ##################### We clearly state our work’s aims and implications, making it open source and transparent. The data will be available under a public license. As our research involved anonymized textual data, informed consent from human participants was not required. However, we obtained permission to access publicly available datasets and ensured compliance with any applicable terms of service or usage policies. Other Known Limitations ######################## The data used in our research may be limited to specific domains, preventing comprehensive coverage of all possible text variations. Despite these limitations, we tried to address the issue of data diversity by incorporating single-domain and multi-domain datasets in the proposed research. This approach allowed us to shed light on the diversity and variances within the data, providing valuable insights despite the inherent constraints. We primarily focus on the Russian language. Further research is needed to expand the datasets for a wider range of languages. Additional Information ^^^^^^^^^^^^^^^^^^^^^^^^ Future plans ############### We are planning to expand our benchmark with both new Russian datasets and datasets in other languages including (but not limited to) European and CIS languages. If you would like to contribute, please contact us. Dataset Curators ################### Nikita Martynov nikita.martynov.98@list.ru (Spellcheck Punctuation Benchmark) Licensing Information ###################### All our datasets are published by MIT License. Citation Information ####################### .. code-block:: @inproceedings{martynov2023augmentation, title={Augmentation methods for spelling corruptions}, author={Martynov, Nikita and Baushenko, Mark and Abramov, Alexander and Fenogenova, Alena}, booktitle={Proceedings of the International Conference “Dialogue}, volume={2023}, year={2023} } @inproceedings{martynov-etal-2024-methodology, title = "A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages", author = "Martynov, Nikita and Baushenko, Mark and Kozlova, Anastasia and Kolomeytseva, Katerina and Abramov, Aleksandr and Fenogenova, Alena", editor = "Graham, Yvette and Purver, Matthew", booktitle = "Findings of the Association for Computational Linguistics: EACL 2024", month = mar, year = "2024", address = "St. Julian{'}s, Malta", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2024.findings-eacl.10", pages = "138--155", abstract = "Large language models excel in text generation and generalization, however they face challenges in text editing tasks, especially in correcting spelling errors and mistyping.In this paper, we present a methodology for generative spelling correction (SC), tested on English and Russian languages and potentially can be extended to any language with minor changes. Our research mainly focuses on exploring natural spelling errors and mistyping in texts and studying how those errors can be emulated in correct sentences to enrich generative models{'} pre-train procedure effectively. We investigate the effects of emulations in various text domains and examine two spelling corruption techniques: 1) first one mimics human behavior when making a mistake through leveraging statistics of errors from a particular dataset, and 2) second adds the most common spelling errors, keyboard miss clicks, and some heuristics within the texts.We conducted experiments employing various corruption strategies, models{'} architectures, and sizes in the pre-training and fine-tuning stages and evaluated the models using single-domain and multi-domain test sets. As a practical outcome of our work, we introduce SAGE (Spell checking via Augmentation and Generative distribution Emulation).", } ================================================ FILE: docs/source/rst/datasets/MultidomainGold.rst ================================================ 📚 MultidomainGold ------------------- The dataset is a part of `spellcheck_punctuation_benchmark `_: .. image:: ../../images/benchmark.png :align: center The Benchmark includes four datasets, each of which consists of pairs of sentences in Russian language. Each pair embodies sentence, which may contain spelling and punctuation errors, and its corresponding correction. Datasets were gathered from various sources and domains including social networks, internet blogs, github commits, medical anamnesis, literature, news, reviews and more. All datasets were passed through two-stage manual labeling pipeline. The correction of a sentence is defined by an agreement of at least two human annotators. Manual labeling scheme accounts for jargonisms, collocations and common language, hence in some cases it encourages annotators not to amend a word in favor of preserving style of a text. The latter does not apply to punctuation. Punctuation signs are rigorously marked in accordance to the rules of the Russian punctuation system. Table of contents ^^^^^^^^^^^^^^^^^ * `Dataset description <#id1>`_ * `Dataset summary <#id2>`_ * `Supported Tasks and Leaderboards <#id3>`_ * `Languages <#id4>`_ * `Dataset Structure <#id5>`_ * `Data Instances <#id6>`_ * `Data Fields <#id7>`_ * `Data Splits <#id8>`_ * `Dataset Creation <#id9>`_ * `Initial Data Collection and Normalization <#id10>`_ * `Annotation process <#id11>`_ * `Who are the annotators? <#id12>`_ * `Considerations for Using the Data <#id13>`_ * `Discussion of Biases <#id14>`_ * `Other Known Limitations <#id15>`_ * `Additional Information <#id16>`_ * `Future plans <#id17>`_ * `Dataset Curators <#id18>`_ * `Licensing Information <#id19>`_ * `Citation Information <#id20>`_ Dataset Description ^^^^^^^^^^^^^^^^^^^ - **Repository:** `SAGE `_ - **Paper:** `EACL 2024 `_ - **Point of Contact:** nikita.martynov.98@list.ru Dataset Summary ################ The dataset first has been presented in the paper "Augmentation methods for spelling corruptions" by Martynov et al. The corpus is intended to gather texts from a series of sources to provide reasonable diversity of types of errors and their interactions. Almost nine thousand samples from more than 10 domains ensure the lattter. Supported Tasks and Leaderboards ################################# - **Task:** automatic spelling correction. - **Metrics:** https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf. - **ERRANT:** https://github.com/chrisjbryant/errant. Languages ######### Russian. Dataset Structure ^^^^^^^^^^^^^^^^^ Data Instances ################ - **Size of downloaded dataset files:** 15.03 Mb - **Size of the generated dataset:** 5.43 Mb - **Total amount of disk used:** 20.46 Mb An example of "train" / "test" looks as follows .. code-block:: { "source": "для меня всё материальное тленно и лишь находясь в гармонии-для начала с собой-можно радовацца чужому счастью искренне", "correction": "Для меня всё материальное тленно, и лишь находясь в гармонии - для начала с собой - можно радоваться чужому счастью искренне.", } Data Fields ################ - `source`: a `string` feature - `correction`: a `string` feature - `domain`: a `string` feature Data Splits ################ +---------------------+-------+------+ | | train | test | +=====================+=======+======+ | web | 385 | 756 | +---------------------+-------+------+ | news | 361 | 245 | +---------------------+-------+------+ | social_media | 430 | 200 | +---------------------+-------+------+ | reviews | 583 | 585 | +---------------------+-------+------+ | subtitles | 1810 | 1810 | +---------------------+-------+------+ | strategic_documents | - | 250 | +---------------------+-------+------+ | literature | - | 260 | +---------------------+-------+------+ Dataset Creation ^^^^^^^^^^^^^^^^^ Initial Data Collection and Normalization ########################################## The source samples were gathered from multiple domains the texts from which are prone to spelling, punctuation errors and rare lexemes. * *Aranea web-corpus* is a family of multilanguage gigaword web-corpora collected from Internet resources. The texts in the corpora are evenly distributed across periods, writing styles and topics they cover. We randomly picked the sentences from Araneum Russicum, which is harvested from the Russian part of the web. * *Literature* is a collection of Russian poems and prose of different classical literary works. We randomly picked sentences from the source dataset that were gathered from Ilibrary, LitLib, and Wikisource. * *News*, as the name suggests, covers news articles on various topics such as sports, politics, environment, economy etc. The passages are randomly picked from the summarization dataset Gazeta.ru. * *Social media* is the text domain from social media platforms marked with specific hashtags. These texts are typically short, written in an informal style and may contain slang, emojis and obscene lexis. * *Strategic Documents* is part of the dataset the Ministry of Economic Development of the Russian Federation collected. Texts are written in a bureaucratic manner, rich in embedded entities, and have complex syntactic and discourse structures. The full version of the dataset has been previously used in the RuREBus shared task. Annotation process ########################################## We set up two-stage annotation project via a crowd-sourcing platform Toloka: 1. Data gathering stage: we provide the texts with possible mistakes to annotators and ask them to write the sentence correctly; 2. Validation stage: we provide annotators with the pair of sentences (source and its corresponding correction from the previous stage) and ask them to check if the correction is right. We prepared instructions for annotators for each task. The instructions ask annotators to correct misspellings if it does not alter the original style of the text. Instructions do not provide rigorous criteria on the matter of distinguishing the nature of an error in terms of its origin - whether it came from an urge to endow a sentence with particular stylistic features or from unintentional spelling violation since it is time-consuming and laborious to describe every possible case of employing slang, dialect, colloquialisms, etc. instead of proper language. Instructions also do not distinguish errors that come from the geographical or social background of the source. Instead, we rely on annotators’ knowledge and understanding of a language since, in this work, the important factor is to preserve the original style of the text. To ensure we receive qualified expertise, we set up test iteration on a small subset of the data for both stages. We manually validated the test results and selected annotators, who processed at least six samples (2% of the total test iteration) and did not make a single error. After test iteration, we cut 85% and 86% of labellers for gathering and validation stages. We especially urge annotators to correct mistakes associated with the substitution of the letters "ё" "й" and "щ" for corresponding "е" "и" and "ш" and not to explain abbreviations and correct punctuation errors. Each annotator is also warned about potentially sensitive topics in data (e.g., politics, societal minorities, and religion). The annotation of punctuation errors has been done in one iteration considering the low variation and difficulty of the task (relative to spelling correction). The annotators have been asked to correct punctuation signs in accordance with the rules of the Russian punctuation system. Who are the annotators? ######################## Native Russian speakers who passed the language exam. The annotators for punctuation errors are also professional editors and linguists. Considerations for Using the Data ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Discussion of Biases ##################### We clearly state our work’s aims and implications, making it open source and transparent. The data will be available under a public license. As our research involved anonymized textual data, informed consent from human participants was not required. However, we obtained permission to access publicly available datasets and ensured compliance with any applicable terms of service or usage policies. Other Known Limitations ######################## The data used in our research may be limited to specific domains, preventing comprehensive coverage of all possible text variations. Despite these limitations, we tried to address the issue of data diversity by incorporating single-domain and multi-domain datasets in the proposed research. This approach allowed us to shed light on the diversity and variances within the data, providing valuable insights despite the inherent constraints. We primarily focus on the Russian language. Further research is needed to expand the datasets for a wider range of languages. Additional Information ^^^^^^^^^^^^^^^^^^^^^^^^ Future plans ############### We are planning to expand our benchmark with both new Russian datasets and datasets in other languages including (but not limited to) European and CIS languages. If you would like to contribute, please contact us. Dataset Curators ################### Nikita Martynov nikita.martynov.98@list.ru (Spellcheck Punctuation Benchmark) Licensing Information ###################### All our datasets are published by MIT License. Citation Information ####################### .. code-block:: @inproceedings{martynov2023augmentation, title={Augmentation methods for spelling corruptions}, author={Martynov, Nikita and Baushenko, Mark and Abramov, Alexander and Fenogenova, Alena}, booktitle={Proceedings of the International Conference “Dialogue}, volume={2023}, year={2023} } @inproceedings{martynov-etal-2024-methodology, title = "A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages", author = "Martynov, Nikita and Baushenko, Mark and Kozlova, Anastasia and Kolomeytseva, Katerina and Abramov, Aleksandr and Fenogenova, Alena", editor = "Graham, Yvette and Purver, Matthew", booktitle = "Findings of the Association for Computational Linguistics: EACL 2024", month = mar, year = "2024", address = "St. Julian{'}s, Malta", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2024.findings-eacl.10", pages = "138--155", abstract = "Large language models excel in text generation and generalization, however they face challenges in text editing tasks, especially in correcting spelling errors and mistyping.In this paper, we present a methodology for generative spelling correction (SC), tested on English and Russian languages and potentially can be extended to any language with minor changes. Our research mainly focuses on exploring natural spelling errors and mistyping in texts and studying how those errors can be emulated in correct sentences to enrich generative models{'} pre-train procedure effectively. We investigate the effects of emulations in various text domains and examine two spelling corruption techniques: 1) first one mimics human behavior when making a mistake through leveraging statistics of errors from a particular dataset, and 2) second adds the most common spelling errors, keyboard miss clicks, and some heuristics within the texts.We conducted experiments employing various corruption strategies, models{'} architectures, and sizes in the pre-training and fine-tuning stages and evaluated the models using single-domain and multi-domain test sets. As a practical outcome of our work, we introduce SAGE (Spell checking via Augmentation and Generative distribution Emulation).", } ================================================ FILE: docs/source/rst/datasets/RUSpellRU.rst ================================================ 📕 RUSpellRU ------------------- The dataset is a part of `spellcheck_punctuation_benchmark `_: .. image:: ../../images/benchmark.png :align: center The Benchmark includes four datasets, each of which consists of pairs of sentences in Russian language. Each pair embodies sentence, which may contain spelling and punctuation errors, and its corresponding correction. Datasets were gathered from various sources and domains including social networks, internet blogs, github commits, medical anamnesis, literature, news, reviews and more. All datasets were passed through two-stage manual labeling pipeline. The correction of a sentence is defined by an agreement of at least two human annotators. Manual labeling scheme accounts for jargonisms, collocations and common language, hence in some cases it encourages annotators not to amend a word in favor of preserving style of a text. The latter does not apply to punctuation. Punctuation signs are rigorously marked in accordance to the rules of the Russian punctuation system. Table of contents ^^^^^^^^^^^^^^^^^ * `Dataset description <#id1>`_ * `Dataset summary <#id2>`_ * `Supported Tasks and Leaderboards <#id3>`_ * `Languages <#id4>`_ * `Dataset Structure <#id5>`_ * `Data Instances <#id6>`_ * `Data Fields <#id7>`_ * `Data Splits <#id8>`_ * `Considerations for Using the Data <#id9>`_ * `Discussion of Biases <#id9>`_ * `Other Known Limitations <#id10>`_ * `Additional Information <#id11>`_ * `Future plans <#id12>`_ * `Dataset Curators <#id13>`_ * `Licensing Information <#id14>`_ * `Citation Information <#id15>`_ Dataset Description ^^^^^^^^^^^^^^^^^^^ - **Repository:** `SAGE `_ - **Paper:** `EACL 2024 `_ - **Point of Contact:** nikita.martynov.98@list.ru Dataset Summary ################ The dataset origins from `RuSpellEval competition `_. The texts were gathered from `LiveJournal `_ and annotated by linguistic experts in two rounds. RUSpellRU amounts for 4k sentence pairs that represented Social Networks and Internet Blogs text domains. Supported Tasks and Leaderboards ################################# - **Task:** automatic spelling correction. - **Metrics:** https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf. - **ERRANT:** https://github.com/chrisjbryant/errant. Languages ######### Russian. Dataset Structure ^^^^^^^^^^^^^^^^^ Data Instances ################ - **Size of downloaded dataset files:** 3.65 Mb - **Size of the generated dataset:** 1.31 Mb - **Total amount of disk used:** 4.96 Mb An example of "train" / "test" looks as follows .. code-block:: { "source": "очень классная тетка ктобы что не говорил.", "correction": "очень классная тетка кто бы что ни говорил", } Data Fields ################ - `source`: a `string` feature - `correction`: a `string` feature - `domain`: a `string` feature Data Splits ################ +-----------+-------+------+ | | train | test | +===========+=======+======+ | RUSpellRU | 2000 | 2008 | +-----------+-------+------+ Considerations for Using the Data ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Discussion of Biases ##################### We clearly state our work’s aims and implications, making it open source and transparent. The data will be available under a public license. As our research involved anonymized textual data, informed consent from human participants was not required. However, we obtained permission to access publicly available datasets and ensured compliance with any applicable terms of service or usage policies. Other Known Limitations ######################## The data used in our research may be limited to specific domains, preventing comprehensive coverage of all possible text variations. Despite these limitations, we tried to address the issue of data diversity by incorporating single-domain and multi-domain datasets in the proposed research. This approach allowed us to shed light on the diversity and variances within the data, providing valuable insights despite the inherent constraints. We primarily focus on the Russian language. Further research is needed to expand the datasets for a wider range of languages. Additional Information ^^^^^^^^^^^^^^^^^^^^^^^^ Future plans ############### We are planning to expand our benchmark with both new Russian datasets and datasets in other languages including (but not limited to) European and CIS languages. If you would like to contribute, please contact us. Dataset Curators ################### Nikita Martynov nikita.martynov.98@list.ru (Spellcheck Punctuation Benchmark) Licensing Information ###################### All our datasets are published by MIT License. Citation Information ####################### .. code-block:: @inproceedings{martynov2023augmentation, title={Augmentation methods for spelling corruptions}, author={Martynov, Nikita and Baushenko, Mark and Abramov, Alexander and Fenogenova, Alena}, booktitle={Proceedings of the International Conference “Dialogue}, volume={2023}, year={2023} } @inproceedings{martynov-etal-2024-methodology, title = "A Methodology for Generative Spelling Correction via Natural Spelling Errors Emulation across Multiple Domains and Languages", author = "Martynov, Nikita and Baushenko, Mark and Kozlova, Anastasia and Kolomeytseva, Katerina and Abramov, Aleksandr and Fenogenova, Alena", editor = "Graham, Yvette and Purver, Matthew", booktitle = "Findings of the Association for Computational Linguistics: EACL 2024", month = mar, year = "2024", address = "St. Julian{'}s, Malta", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2024.findings-eacl.10", pages = "138--155", abstract = "Large language models excel in text generation and generalization, however they face challenges in text editing tasks, especially in correcting spelling errors and mistyping.In this paper, we present a methodology for generative spelling correction (SC), tested on English and Russian languages and potentially can be extended to any language with minor changes. Our research mainly focuses on exploring natural spelling errors and mistyping in texts and studying how those errors can be emulated in correct sentences to enrich generative models{'} pre-train procedure effectively. We investigate the effects of emulations in various text domains and examine two spelling corruption techniques: 1) first one mimics human behavior when making a mistake through leveraging statistics of errors from a particular dataset, and 2) second adds the most common spelling errors, keyboard miss clicks, and some heuristics within the texts.We conducted experiments employing various corruption strategies, models{'} architectures, and sizes in the pre-training and fine-tuning stages and evaluated the models using single-domain and multi-domain test sets. As a practical outcome of our work, we introduce SAGE (Spell checking via Augmentation and Generative distribution Emulation).", } ================================================ FILE: docs/source/rst/evaluation/RuErrant.rst ================================================ 💥 RuErrant ------------------- RuERRANT is an adaptation of the `ERRANT metric `_ to the Russian language. The adaptation was primarily done in https://github.com/Askinkaty/errant and further developed within SAGE. The changes to the original ERRANT implementation for English are the following: 1. Basic parsing model changed to Spacy's `ru_core_news_lg`. 2. Included a dictionary of Russian words (main forms). 3. Introduced detection of error correction types specific for Russian (degrees of adjectives, verb aspect). 4. [our contribution] Introduced a simplified error correction typology: - `CASE`: spelling corrections including only character case change; - `PUNCT`: punctuation corrections; - `YO`: spelling corrections regarding "е"/"ё" substitutions; - `SPELL`: all other word-level spelling corrections. 5. [our contribution] Introduced detection of multiple error correction types per word, e.g. "федор" -> "Фёдор" contains both CASE and YO corrections. 6. [our contribution] Introduced detection of inner word punctuation corrections which covers joint ("AB") vs. hyphen ("A-B") vs. space ("A B") word spelling. Corrections of this type are attributed to the `SPELL` category. Scoring ^^^^^^^^ To score model's corrections against gold corrections, use a Scorer instance: .. code-block:: python from sage.evaluation.scorer import Scorer s = Scorer() s.score( ["спел Кейс ее .", "спел Кейс ее ."], ["спелл кейс её !", "спелл кейс её !"], ["спел кейс её .", "спелл Кейс ее !"], metrics=["errant"] ) >>> {'CASE_Precision': 100.0, 'CASE_Recall': 50.0, 'CASE_F1': 66.67, 'YO_Precision': 100.0, 'YO_Recall': 50.0, 'YO_F1': 66.67, 'SPELL_Precision': 100.0, 'SPELL_Recall': 50.0, 'SPELL_F1': 66.67, 'PUNCT_Precision': 100.0, 'PUNCT_Recall': 50.0, 'PUNCT_F1': 66.67} ================================================ FILE: docs/source/rst/evaluation/RuSpellEval.rst ================================================ ⚠️ RuSpellEval ------------------- RuSpellEval is described in `paper `_. The metric does not account for punctuation and register associated errors, so we primarily used it in earlier releases. You can still invoke the RuSpellEval metric by calling the following: .. code-block:: python from sage.evaluation import Scorer from sage.utils import DatasetsAvailable, load_available_dataset_from_hf sources, corrections = load_available_dataset_from_hf(DatasetsAvailable.RUSpellRU.name, for_labeler=True, split="test") scorer = Scorer() metrics = scorer.score(sources, corrections, corrections, metrics=["ruspelleval"]) print(metrics) # {'Precision': 100.0, 'Recall': 100.0, 'F1': 100.0} ... or in conjunction with RuErrant metric: .. code-block:: python import os import torch from sage.utils import DatasetsAvailable from sage.spelling_correction import AvailableCorrectors from sage.spelling_correction import T5ModelForSpellingCorruption corrector_fred_95m = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_distilled_95m.value) corrector_mt5 = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_mt5_large.value) corrector_fred_95m.model.to(torch.device("cuda:0")) corrector_mt5.model.to(torch.device("cuda:0")) metrics = corrector_fred_95m.evaluate("RUSpellRU", metrics=["errant", "ruspelleval"], batch_size=32) print(metrics) # {'CASE_Precision': 94.41, 'CASE_Recall': 92.55, 'CASE_F1': 93.47, 'SPELL_Precision': 77.52, 'SPELL_Recall': 64.09, 'SPELL_F1': 70.17, 'PUNCT_Precision': 86.77, 'PUNCT_Recall': 80.59, 'PUNCT_F1': 83.56, 'YO_Precision': 46.21, 'YO_Recall': 73.83, 'YO_F1': 56.84, 'Precision': 83.48, 'Recall': 74.75, 'F1': 78.87} ================================================ FILE: docs/source/rst/spelling_correction/FredT5-large.rst ================================================ 📌 FredT5-large ------------------- The model corrects spelling errors and typos by bringing all the words in the text to the norm of the Russian language. The proofreader was trained based on the `FredT5-large `_ model. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the functionality of the `SAGE library `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id2>`_ * `Examples <#id3>`_ * `Metrics <#id4>`_ * `How to use <#id5>`_ * `API <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id11>`_ * `Contacts <#id12>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +========================================================================================================================================================================================================================================================================================================================================================+====================================================================================================================================================================================================================================================================================================================================================================================+ | Думю ешцъа лет череа 10 ретроспективно просматривотьэ то будкетцц мне невероя тна ин те р но | Думаю еще лет через 10 ретроспективно просматривать это будет мне невероятно интересно. Думаю это лет через 10 ретроспективно просматривать это будет мне невероятно интересно. | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных проишествий, сокращение временных показателей реагирования. | Основная цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. Основная цель мероприятия | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | прийдя в МГТУ я был удивлен никого необноружив там… | прийдя в МГТУ я был удивлен никого не обнаружив там.. «при | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all four available datasets: - **RUSpellRU**: texts collected from `LiveJournal `_, with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; **RUSpellRU** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | FredT5-large-spell | 58.5 | 42.4 | 49.2 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 55.8 | 75.3 | 64.1 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 57.0 | 75.9 | 63.9 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 55.9 | 75.3 | 64.2 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 83.0 | 59.8 | 69.5 | +----------------------------+-----------+--------+------+ | JamSpell | 42.1 | 32.8 | 36.9 | +----------------------------+-----------+--------+------+ | HunSpell | 31.3 | 34.9 | 33.0 | +----------------------------+-----------+--------+------+ **MultidomainGold** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | FredT5-large-spell | 42.5 | 42.0 | 42.2 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 33.8 | 72.1 | 46.0 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 34.0 | 73.2 | 46.4 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 33.6 | 72.0 | 45.8 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 52.9 | 51.4 | 52.2 | +----------------------------+-----------+--------+------+ | JamSpell | 25.7 | 30.6 | 28.0 | +----------------------------+-----------+--------+------+ | HunSpell | 16.2 | 40.1 | 23.0 | +----------------------------+-----------+--------+------+ **MedSpellChecker** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | FredT5-large-spell | 37.2 | 51.7 | 43.3 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 53.2 | 67.6 | 59.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 54.2 | 69.4 | 60.9 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 47.8 | 68.4 | 56.3 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 80.6 | 47.8 | 60.0 | +----------------------------+-----------+--------+------+ | JamSpell | 24.6 | 29.7 | 26.9 | +----------------------------+-----------+--------+------+ | HunSpell | 10.3 | 40.2 | 16.4 | +----------------------------+-----------+--------+------+ **GitHubTypoCorpusRu** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | FredT5-large-spell | 52.7 | 41.7 | 46.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 43.8 | 57.0 | 49.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 45.2 | 58.2 | 51.0 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 46.5 | 58.1 | 51.7 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 67.7 | 37.5 | 48.3 | +----------------------------+-----------+--------+------+ | JamSpell | 49.5 | 29.9 | 37.3 | +----------------------------+-----------+--------+------+ | HunSpell | 28.5 | 30.7 | 29.6 | +----------------------------+-----------+--------+------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import T5ForConditionalGeneration, AutoTokenizer path_to_model = "ai-forever/FRED-T5-large-spell" model = T5ForConditionalGeneration.from_pretrained(path_to_model) tokenizer = AutoTokenizer.from_pretrained(path_to_model, eos_token="") prefix = "Исправь: " sentence = "прийдя в МГТУ я был удивлен никого необноружив там…" sentence = prefix + sentence encodings = tokenizer(sentence, return_tensors="pt") generated_tokens = model.generate( **encodings, eos_token_id=tokenizer.eos_token_id, early_stopping=True) answer = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) print(answer) # ["прийдя в МГТУ я был удивлен никого не обнаружив там.. «при"] API ^^^^^ .. autoclass:: sage.spelling_correction.t5_correctors.T5ModelForSpellingCorruption :members: :inherited-members: :show-inheritance: Resources ^^^^^^^^^ - `SAGE library `_, GitHub - `SAGE v1.1.0 models release `_, HuggingFace - `EACL 2024 paper `_ License ^^^^^^^^^ Model [FRED-T5-large](https://huggingface.co/ai-forever/FRED-T5-large), on the basis of which our solution is made, and its source code are supplied under the MIT license. Our solution also comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 3.5 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/M2M100-418M.rst ================================================ 📌 M2M100-418M ------------------- The model corrects spelling errors and typos by bringing all the words in the text to the norm of the Russian language. The proofreader was trained based on the `M2M100-418M `_ model. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the functionality of the `SAGE library `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id2>`_ * `Examples <#id3>`_ * `Metrics <#id4>`_ * `How to use <#id5>`_ * `API <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id12>`_ * `Contacts <#id13>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +========================================================================================================================================================================================================================================================================================================================================================+==========================================================================================================================================================================================================================================================================================================================================================+ | Думю ешцъа лет череа 10 ретроспективно просматривотьэ то будкетцц мне невероя тна ин те р но | Думаю, еш цъа лет через 10 ретроспективно просматривать, що буде ТЦ. Мне невероятна нтерно. | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных проишествий, сокращение временных показателей реагирования. | Основная цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | прийдя в МГТУ я был удивлен никого необноружив там… | прийдя в МГТУ я был удивлен никого не обнаружив там... | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all four available datasets: - **RUSpellRU**: texts collected from `LiveJournal `_, with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; **RUSpellRU** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-418M | 57.7 | 61.2 | 59.4 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 55.8 | 75.3 | 64.1 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 57.0 | 75.9 | 63.9 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 55.9 | 75.3 | 64.2 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 83.0 | 59.8 | 69.5 | +----------------------------+-----------+--------+------+ | JamSpell | 42.1 | 32.8 | 36.9 | +----------------------------+-----------+--------+------+ | HunSpell | 31.3 | 34.9 | 33.0 | +----------------------------+-----------+--------+------+ **MultidomainGold** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-418M | 32.8 | 56.3 | 41.5 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 33.8 | 72.1 | 46.0 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 34.0 | 73.2 | 46.4 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 33.6 | 72.0 | 45.8 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 52.9 | 51.4 | 52.2 | +----------------------------+-----------+--------+------+ | JamSpell | 25.7 | 30.6 | 28.0 | +----------------------------+-----------+--------+------+ | HunSpell | 16.2 | 40.1 | 23.0 | +----------------------------+-----------+--------+------+ **MedSpellChecker** +----------------------------+-----------+--------+------+ | Модель | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-418M | 23.2 | 64.5 | 34.1 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 53.2 | 67.6 | 59.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 54.2 | 69.4 | 60.9 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 47.8 | 68.4 | 56.3 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 80.6 | 47.8 | 60.0 | +----------------------------+-----------+--------+------+ | JamSpell | 24.6 | 29.7 | 26.9 | +----------------------------+-----------+--------+------+ | HunSpell | 10.3 | 40.2 | 16.4 | +----------------------------+-----------+--------+------+ **GitHubTypoCorpusRu** +----------------------------+-----------+--------+------+ | Модель | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-418M | 27.5 | 42.6 | 33.4 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 43.8 | 57.0 | 49.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 45.2 | 58.2 | 51.0 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 46.5 | 58.1 | 51.7 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 67.7 | 37.5 | 48.3 | +----------------------------+-----------+--------+------+ | JamSpell | 49.5 | 29.9 | 37.3 | +----------------------------+-----------+--------+------+ | HunSpell | 28.5 | 30.7 | 29.6 | +----------------------------+-----------+--------+------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import M2M100ForConditionalGeneration, M2M100Tokenizer path_to_model = "ai-forever/RuM2M100-418M" model = M2M100ForConditionalGeneration.from_pretrained(path_to_model) tokenizer = M2M100Tokenizer.from_pretrained(path_to_model, src_lang="ru", tgt_lang="ru") sentence = "прийдя в МГТУ я был удивлен никого необноружив там…" encodings = tokenizer(sentence, return_tensors="pt") generated_tokens = model.generate( **encodings, forced_bos_token_id=tokenizer.get_lang_id("ru")) answer = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) print(answer) # ["прийдя в МГТУ я был удивлен никого не обнаружив там..."] API ^^^^^ .. autoclass:: sage.spelling_correction.m2m_correctors.RuM2M100ModelForSpellingCorrection :members: :inherited-members: :show-inheritance: Resources ^^^^^^^^^ - `SAGE library `_, GitHub - `SAGE v1.1.0 models release `_, HuggingFace - `EACL 2024 paper `_ License ^^^^^^^^^ Model `M2M100-418M `_, on the basis of which our solution is made, and its source code are supplied under the MIT open license. Our solution also comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 2 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/RuM2M100-1.2B.rst ================================================ 📌 RuM2M100-1.2B ------------------- The model corrects spelling errors and typos by bringing all the words in the text to the norm of the Russian language. Corrector was trained based on the model `M2M100-1.2B `_. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the library `SAGE `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id1>`_ * `Examples <#id2>`_ * `Metrics <#id3>`_ * `How to use <#id4>`_ * `API <#id5>`_ * `Resources <#id6>`_ * `License <#id8>`_ * `Specifications <#id10>`_ * `Contacts <#id11>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +========================================================================================================================================================================================================================================================================================================================================================+==========================================================================================================================================================================================================================================================================================================================================================+ | Думю ешцъа лет череа 10 ретроспективно просматривотьэ то будкетцц мне невероя тна ин те р но | Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных проишествий, сокращение временных показателей реагирования. | Основная цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | прийдя в МГТУ я был удивлен никого необноружив там… | прийдя в МГТУ я был удивлен никого не обнаружив там... | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all four available datasets: - **RUSpellRU**: texts collected from `LiveJournal `_, with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; **RUSpellRU** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-1.2B | 59.4 | 43.3 | 50.1 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 55.8 | 75.3 | 64.1 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 57.0 | 75.9 | 63.9 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 55.9 | 75.3 | 64.2 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 83.0 | 59.8 | 69.5 | +----------------------------+-----------+--------+------+ | JamSpell | 42.1 | 32.8 | 36.9 | +----------------------------+-----------+--------+------+ | HunSpell | 31.3 | 34.9 | 33.0 | +----------------------------+-----------+--------+------+ **MultidomainGold** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-1.2B | 56.4 | 44.8 | 49.9 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 33.8 | 72.1 | 46.0 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 34.0 | 73.2 | 46.4 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 33.6 | 72.0 | 45.8 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 52.9 | 51.4 | 52.2 | +----------------------------+-----------+--------+------+ | JamSpell | 25.7 | 30.6 | 28.0 | +----------------------------+-----------+--------+------+ | HunSpell | 16.2 | 40.1 | 23.0 | +----------------------------+-----------+--------+------+ **MedSpellChecker** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-1.2B | 63.7 | 57.8 | 60.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 53.2 | 67.6 | 59.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 54.2 | 69.4 | 60.9 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 47.8 | 68.4 | 56.3 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 80.6 | 47.8 | 60.0 | +----------------------------+-----------+--------+------+ | JamSpell | 24.6 | 29.7 | 26.9 | +----------------------------+-----------+--------+------+ | HunSpell | 10.3 | 40.2 | 16.4 | +----------------------------+-----------+--------+------+ **GitHubTypoCorpusRu** +----------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +============================+===========+========+======+ | M2M100-1.2B | 45.7 | 41.4 | 43.5 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 43.8 | 57.0 | 49.6 | +----------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 45.2 | 58.2 | 51.0 | +----------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 46.5 | 58.1 | 51.7 | +----------------------------+-----------+--------+------+ | Yandex.Speller | 67.7 | 37.5 | 48.3 | +----------------------------+-----------+--------+------+ | JamSpell | 49.5 | 29.9 | 37.3 | +----------------------------+-----------+--------+------+ | HunSpell | 28.5 | 30.7 | 29.6 | +----------------------------+-----------+--------+------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import M2M100ForConditionalGeneration, M2M100Tokenizer path_to_model = "ai-forever/RuM2M100-1.2B" model = M2M100ForConditionalGeneration.from_pretrained(path_to_model) tokenizer = M2M100Tokenizer.from_pretrained(path_to_model, src_lang="ru", tgt_lang="ru") sentence = "прийдя в МГТУ я был удивлен никого необноружив там…" encodings = tokenizer(sentence, return_tensors="pt") generated_tokens = model.generate( **encodings, forced_bos_token_id=tokenizer.get_lang_id("ru")) answer = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) print(answer) #["прийдя в МГТУ я был удивлен никого не обнаружив там..."] API ^^^^^ .. autoclass:: sage.spelling_correction.m2m_correctors.RuM2M100ModelForSpellingCorrection :members: :inherited-members: :show-inheritance: Resources ^^^^^^^^^ - `SAGE library `_, GitHub - `SAGE v1.1.0 models release `_, HuggingFace - `EACL 2024 paper `_ License ^^^^^^^^^ Model `M2M100-1.2B `_, on the basis of which our solution is made, and its source code are supplied under the MIT open license. Our solution also comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 5 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/T5.rst ================================================ 🇬🇧 T5-large ------------------- The model corrects spelling errors and typos by bringing all words in the text to the standard English language. The proofreader was trained based on the `T5-large `_ model. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the English-language Wikipedia and News blogs, then typos and spelling errors were automatically introduced into it using the functionality of the `SAGE library `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id2>`_ * `Examples <#id3>`_ * `Metrics <#id4>`_ * `How to use <#id5>`_ * `API <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id12>`_ * `Contacts <#id13>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +===============================================================================================================================================================================================================================================================================+===========================================================================================================================================================================================================================================================================+ | Th festeivаl was excelzecnt in many ways, and in particular it beinganinternational festjival sss a chаllenging, bet brilli an t ea. | The festival was excellent in many ways, and in particular it beinganinternational festival is a challenging, but brilliant one to see. | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | That 's why I believe in the solution which is the closest to human nature and can help us to avoid boredome. I am sure that eventually we will take off our clothes and in the future we will be undressed and free. There wo n't be any problem with being up - do - date . | That's why I believe in the solution which is the closest to human nature and can help us to avoid boredom. I am sure that eventually we will take off our clothes and in the future we will be undressed and free. There won't be any problem with being up - do - date. | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | If you bought something goregous, you well be very happy. | If you bought something gorgeous, you will be very happy. | +-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We present a comparison of our solution both with open automatic spell checkers and with the ChatGPT family of models on two available datasets: - **BEA60K**: English spelling errors collected from several domains; - **JFLEG**: 1601 sentences in English, which contain about 2 thousand spelling errors; **BEA60K** +------------------------------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +================================================+===========+========+======+ | T5-large-spell | 66.5 | 83.1 | 73.9 | +------------------------------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 66.9 | 84.1 | 74.5 | +------------------------------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 68.6 | 85.2 | 76.0 | +------------------------------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 67.8 | 83.9 | 75.0 | +------------------------------------------------+-----------+--------+------+ | Bert (https://github.com/neuspell/neuspell) | 65.8 | 79.6 | 72.0 | +------------------------------------------------+-----------+--------+------+ | SC-LSTM (https://github.com/neuspell/neuspell) | 62.2 | 80.3 | 72.0 | +------------------------------------------------+-----------+--------+------+ **JFLEG** +------------------------------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +================================================+===========+========+======+ | T5-large-spell | 83.4 | 84.3 | 83.8 | +------------------------------------------------+-----------+--------+------+ | ChatGPT gpt-3.5-turbo-0301 | 77.8 | 88.6 | 82.9 | +------------------------------------------------+-----------+--------+------+ | ChatGPT gpt-4-0314 | 77.9 | 88.3 | 82.8 | +------------------------------------------------+-----------+--------+------+ | ChatGPT text-davinci-003 | 76.8 | 88.5 | 82.2 | +------------------------------------------------+-----------+--------+------+ | Bert (https://github.com/neuspell/neuspell) | 78.5 | 85.4 | 81.8 | +------------------------------------------------+-----------+--------+------+ | SC-LSTM (https://github.com/neuspell/neuspell) | 80.6 | 86.1 | 83.2 | +------------------------------------------------+-----------+--------+------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import T5ForConditionalGeneration, AutoTokenizer path_to_model = "ai-forever/T5-large-spell" model = T5ForConditionalGeneration.from_pretrained(path_to_model) tokenizer = AutoTokenizer.from_pretrained(path_to_model) prefix = "grammar: " sentence = "If you bought something goregous, you well be very happy." sentence = prefix + sentence encodings = tokenizer(sentence, return_tensors="pt") generated_tokens = model.generate(**encodings) answer = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) print(answer) # ["If you bought something gorgeous, you will be very happy."] API ^^^^^ .. autoclass:: sage.spelling_correction.t5_correctors.T5ModelForSpellingCorruption :members: :inherited-members: :show-inheritance: Resources ^^^^^^^^^ - `SAGE library `_, GitHub - `SAGE v1.1.0 models release `_, HuggingFace - `EACL 2024 paper `_ License ^^^^^^^^^ The `T5-large `_ model, on which our solution is based, and its source code are supplied under the APACHE-2.0 license. Our solution is supplied under MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 3 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/sage-fredt5-distilled-95m.rst ================================================ 🎯 sage-fredt5-distilled-95m ------------------- The model is a part of `SAGE v1.1.0 release `_ .. image:: ../../images/sage_banner.jpg :align: center The model corrects spelling and punctuation errors and typos by bringing all the words in the text to the norm of the Russian language. Corrector is a distilled version of the original model that had been trained based on the `FRED-T5-1.7B `_ architecture. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the library `SAGE library `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id1>`_ * `Examples <#id2>`_ * `Metrics <#id3>`_ * `How to use <#id4>`_ * `API <#id5>`_ * `Limitations <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id12>`_ * `Contacts <#id13>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +=====================================================================================================================================================================================================================================================================================================================================================+==========================================================================================================================================================================================================================================================================================================================================================+ | И не чсно прохожим в этот день непогожйи почему я веселый такйо | И не ясно прохожим в этот день непогожий, почему я весёлый такой? | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Каждй день воттак делой, и спена балеть нибудет. А вотак каждый день ниделай | Каждый день вот так делай, и спена болеть не будет. А вот так каждый день — ни делай. | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Основая цель мероприятия практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных проишествий сокращение временных показателей реагирования. | Основная цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all four available datasets: - **RUSpellRU**: texts collected from (`LiveJournal `_), with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; **RUSpellRU** +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +===========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-distilled-95m | 83.5 | 74.8 | 78.9 | 86.8 | 80.6 | 83.6 | 94.4 | 92.5 | 93.5 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 90.3 | 86.3 | 88.2 | 90.3 | 86.6 | 88.4 | 95.2 | 95.9 | 95.6 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 33.6 | 58.5 | 42.7 | 85.9 | 64.6 | 73.7 | 84.9 | 73.9 | 79.0 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 54.9 | 76.7 | 64.0 | 84.0 | 82.3 | 83.2 | 91.5 | 90.2 | 90.9 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **MultidomainGold** +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +===========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-distilled-95m | 77.2 | 69.9 | 73.4 | 66.8 | 63.4 | 65.0 | 76.8 | 79.1 | 77.9 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 81.6 | 77.7 | 79.6 | 70.2 | 67.5 | 68.8 | 80.5 | 80.5 | 80.5 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 18.8 | 48.1 | 27.1 | 42.0 | 31.8 | 36.2 | 47.1 | 51.3 | 49.1 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 25.4 | 68.0 | 37.0 | 57.8 | 54.3 | 56.0 | 54.0 | 67.5 | 60.0 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **MedSpellChecker** +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +===========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-distilled-95m | 65.1 | 64.8 | 64.9 | 78.6 | 63.1 | 70.0 | 63.5 | 74.7 | 68.7 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 71.3 | 73.5 | 72.4 | 75.1 | 69.2 | 72.0 | 80.9 | 72.8 | 76.6 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 14.7 | 45.9 | 22.3 | 69.9 | 52.3 | 59.8 | 26.4 | 41.8 | 32.3 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 37.8 | 72.3 | 49.6 | 81.4 | 64.3 | 71.9 | 73.0 | 62.1 | 67.1 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **GitHubTypoCorpusRu** +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +===========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-distilled-95m | 57.8 | 48.5 | 52.7 | 45.2 | 39.5 | 42.1 | 29.9 | 46.2 | 36.3 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 70.8 | 56.3 | 62.7 | 48.9 | 35.8 | 41.4 | 32.9 | 45.3 | 38.1 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 23.7 | 38.7 | 29.4 | 37.6 | 23.3 | 28.7 | 19.6 | 35.9 | 25.3 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 27.0 | 52.8 | 35.7 | 45.9 | 32.6 | 38.2 | 25.7 | 36.8 | 30.2 | +---------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("ai-forever/sage-fredt5-distilled-95m") model = AutoModelForSeq2SeqLM.from_pretrained("ai-forever/sage-fredt5-distilled-95m", device_map='cuda') sentence = "И не чсно прохожим в этот день непогожйи почему я веселый такйо" inputs = tokenizer(sentence, max_length=None, padding="longest", truncation=False, return_tensors="pt") outputs = model.generate(**inputs.to(model.device), max_length = inputs["input_ids"].size(1) * 1.5) print(tokenizer.batch_decode(outputs, skip_special_tokens=True)) # ["И не ясно прохожим в этот день непогожий, почему я весёлый такой?"] API ^^^^^ .. autoclass:: sage.spelling_correction.t5_correctors.T5ModelForSpellingCorruption :members: :inherited-members: :show-inheritance: Limitations ^^^^^^^^^^^^ - Complex formatting may cause some trouble in output generation. Resources ^^^^^^^^^^^^ - `SAGE library `_, GitHub - `sage-fredt5-large `_, HuggingFace - `sage-fredt5-distilled-95m `_, HuggingFace - `sage-m2m100-1.2B `_, HuggingFace - `sage-mt5-large `_, HuggingFace License ^^^^^^^^^ Model `FRED-T5-1.7B `_, on the basis of which our solution is made, and its source code are supplied under the MIT license. Our solution also comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 0.383 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/sage-fredt5-large.rst ================================================ 🎯 sage-fredt5-large ------------------- The model is a part of `SAGE v1.1.0 release `_ .. image:: ../../images/sage_banner.jpg :align: center The model corrects spelling and punctuation errors and typos by bringing all the words in the text to the norm of the Russian language. Corrector had been trained based on the model `FredT5-large `_. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the library `SAGE library `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id1>`_ * `Examples <#id2>`_ * `Metrics <#id3>`_ * `How to use <#id4>`_ * `API <#id5>`_ * `Limitations <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id11>`_ * `Contacts <#id12>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +=====================================================================================================================================================================================================================================================================================================================================================+=========================================================================================================================================================================================================================================================================================================================================================+ | И не чсно прохожим в этот день непогожйи почему я веселый такйо | И не ясно прохожим в этот день непогожий, почему я веселый такой. | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Каждй день воттак делой, и спена балеть нибудет. А вотак каждый день ниделай | Каждый день вот так делай и спина болеть не будет. А вот так каждый день не делай. | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Основая цель мероприятия практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных проишествий сокращение временных показателей реагирования. | Основная цель мероприятия — практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all four available datasets: - **RUSpellRU**: texts collected from (`LiveJournal `_), with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; **RUSpellRU** +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-large | 57.3 | 68.0 | 62.2 | 86.7 | 46.1 | 60.2 | 92.1 | 67.8 | 78.1 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft) | 88.4 | 80.9 | 84.5 | 88.2 | 85.3 | 86.8 | 95.5 | 94.0 | 94.7 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 90.3 | 86.3 | 88.2 | 90.3 | 86.6 | 88.4 | 95.2 | 95.9 | 95.6 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 33.6 | 58.5 | 42.7 | 85.9 | 64.6 | 73.7 | 84.9 | 73.9 | 79.0 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 54.9 | 76.7 | 64.0 | 84.0 | 82.3 | 83.2 | 91.5 | 90.2 | 90.9 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **MultidomainGold** +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-large | 43.4 | 49.7 | 46.3 | 21.8 | 21.3 | 21.6 | 58.8 | 23.9 | 34.0 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft) | 80.3 | 75.1 | 77.6 | 69.0 | 66.5 | 67.7 | 78.6 | 80.0 | 79.3 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 81.6 | 77.7 | 79.6 | 70.2 | 67.5 | 68.8 | 80.5 | 80.5 | 80.5 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 18.8 | 48.1 | 27.1 | 42.0 | 31.8 | 36.2 | 47.1 | 51.3 | 49.1 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 25.4 | 68.0 | 37.0 | 57.8 | 54.3 | 56.0 | 54.0 | 67.5 | 60.0 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **MedSpellChecker** +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-large | 35.2 | 54.5 | 42.8 | 19.2 | 13.2 | 15.7 | 48.7 | 36.8 | 41.9 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft) | 72.5 | 72.2 | 72.3 | 74.6 | 66.4 | 70.3 | 79.3 | 85.1 | 82.1 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 71.3 | 73.5 | 72.4 | 75.1 | 69.2 | 72.0 | 80.9 | 72.8 | 76.6 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 14.7 | 45.9 | 22.3 | 69.9 | 52.3 | 59.8 | 26.4 | 41.8 | 32.3 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 37.8 | 72.3 | 49.6 | 81.4 | 64.3 | 71.9 | 73.0 | 62.1 | 67.1 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ **GitHubTypoCorpusRu** +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | Model | Pr. (spell) | Rec. (spell) | F1 (spell) | Pr. (punc) | Rec. (punc) | F1 (punc) | Pr. (case) | Rec. (case) | F1 (case) | +========================+=============+==============+============+============+=============+===========+============+=============+===========+ | sage-fredt5-large | 46.0 | 46.6 | 46.3 | 22.7 | 18.3 | 20.2 | 12.0 | 13.2 | 12.6 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-fredt5-large (ft) | 67.5 | 53.2 | 59.5 | 48.5 | 38.0 | 42.6 | 37.3 | 50.0 | 42.7 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | sage-ai-service | 70.8 | 56.3 | 62.7 | 48.9 | 35.8 | 41.4 | 32.9 | 45.3 | 38.1 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-3.5-turbo | 23.7 | 38.7 | 29.4 | 37.6 | 23.3 | 28.7 | 19.6 | 35.9 | 25.3 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ | gpt-4 | 27.0 | 52.8 | 35.7 | 45.9 | 32.6 | 38.2 | 25.7 | 36.8 | 30.2 | +------------------------+-------------+--------------+------------+------------+-------------+-----------+------------+-------------+-----------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("ai-forever/sage-fredt5-large") model = AutoModelForSeq2SeqLM.from_pretrained("ai-forever/sage-fredt5-large", device_map='cuda') sentence = "И не чсно прохожим в этот день непогожйи почему я веселый такйо" inputs = tokenizer(sentence, max_length=None, padding="longest", truncation=False, return_tensors="pt") outputs = model.generate(**inputs.to(model.device), max_length = inputs["input_ids"].size(1) * 1.5) print(tokenizer.batch_decode(outputs, skip_special_tokens=True)) # ["И не ясно прохожим в этот день непогожий, почему я весёлый такой?"] API ^^^^^ .. autoclass:: sage.spelling_correction.t5_correctors.T5ModelForSpellingCorruption :members: :inherited-members: :show-inheritance: Limitations ^^^^^^^^^^^^ - The model is intended to be fine-tuned on sets with natural errors for better performance. The released model is a pre-train and pre-train task is different from the usual spell checking in terms of density of the noise in a corpus and its origin; - Complex formatting may cause some trouble in output generation. Resources ^^^^^^^^^^^^ - `SAGE library `_, GitHub - `sage-fredt5-large `_, HuggingFace - `sage-fredt5-distilled-95m `_, HuggingFace - `sage-m2m100-1.2B `_, HuggingFace - `sage-mt5-large `_, HuggingFace License ^^^^^^^^^ Model `FRED-T5-large `_, on the basis of which our solution is made, and its source code are supplied under the MIT license. Our solution also comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 3.3 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/sage-m2m100-1.2B.rst ================================================ 🎯 sage-m2m100-1.2B ------------------- The model is a part of `SAGE v1.1.0 release `_ .. image:: ../../images/sage_banner.jpg :align: center The model corrects spelling errors and typos by bringing all the words in the text to the norm of the Russian language. Corrector was trained based on the model `M2M100-1.2B `_. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the library `SAGE library `_. The model is the fine-tuned version of the `pre-train `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id1>`_ * `Examples <#id2>`_ * `Metrics <#id3>`_ * `How to use <#id4>`_ * `API <#id5>`_ * `Limitations <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id12>`_ * `Contacts <#id13>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Input | Output | +========================================================================================================================================================================================================================================================================================================================================================+==========================================================================================================================================================================================================================================================================================================================================================+ | Думю ешцъа лет череа 10 ретроспективно просматривотьэ то будкетцц мне невероя тна ин те р но | Думаю что лет через 10 ретроспективно просматривать это будет мне невероятно интересно | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Основая цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных проишествий, сокращение временных показателей реагирования. | Основная цель мероприятия - практическая отработка навыков по оказанию помощи гражданам, попавшим в ДТП, а также повышение и совершенствование уровня профессиональной подготовки сотрудников МЧС при проведении аварийно-спасательных работ по ликвидации последствий дорожно-транспортных происшествий, сокращение временных показателей реагирования. | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | прийдя в МГТУ я был удивлен никого необноружив там… | придя в МГТУ я был удивлен никого не обнаружив там | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all four available datasets: - **RUSpellRU**: texts collected from (`LiveJournal `_), with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; **RUSpellRU** +------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +==================+===========+========+======+ | sage-m2m100-1.2B | 88.8 | 71.5 | 79.2 | +------------------+-----------+--------+------+ | sage-ai-service | 93.5 | 82.4 | 87.6 | +------------------+-----------+--------+------+ | gpt-3.5-turbo | 39.6 | 62.3 | 48.5 | +------------------+-----------+--------+------+ | gpt-4 | 69.5 | 81.0 | 74.8 | +------------------+-----------+--------+------+ | Yandex.Speller | 83.0 | 59.8 | 69.5 | +------------------+-----------+--------+------+ | JamSpell | 42.1 | 32.8 | 36.9 | +------------------+-----------+--------+------+ | HunSpell | 31.3 | 34.9 | 33.0 | +------------------+-----------+--------+------+ **MultidomainGold** +------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +==================+===========+========+======+ | sage-m2m100-1.2B | 63.8 | 61.1 | 62.4 | +------------------+-----------+--------+------+ | sage-ai-service | 70.9 | 68.8 | 69.9 | +------------------+-----------+--------+------+ | gpt-3.5-turbo | 17.8 | 56.1 | 27.0 | +------------------+-----------+--------+------+ | gpt-4 | 31.1 | 78.1 | 44.5 | +------------------+-----------+--------+------+ | Yandex.Speller | 52.9 | 51.4 | 52.2 | +------------------+-----------+--------+------+ | JamSpell | 25.7 | 30.6 | 28.0 | +------------------+-----------+--------+------+ | HunSpell | 16.2 | 40.1 | 23.0 | +------------------+-----------+--------+------+ **MedSpellChecker** +------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +==================+===========+========+======+ | sage-m2m100-1.2B | 78.8 | 71.4 | 74.9 | +------------------+-----------+--------+------+ | sage-ai-service | 73.4 | 76.2 | 74.9 | +------------------+-----------+--------+------+ | gpt-3.5-turbo | 15.1 | 53.6 | 23.5 | +------------------+-----------+--------+------+ | gpt-4 | 48.9 | 88.7 | 63.1 | +------------------+-----------+--------+------+ | Yandex.Speller | 80.6 | 47.8 | 60.0 | +------------------+-----------+--------+------+ | JamSpell | 24.6 | 29.7 | 26.9 | +------------------+-----------+--------+------+ | HunSpell | 10.3 | 40.2 | 16.4 | +------------------+-----------+--------+------+ **GitHubTypoCorpusRu** +------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +==================+===========+========+======+ | sage-m2m100-1.2B | 47.1 | 42.9 | 44.9 | +------------------+-----------+--------+------+ | sage-ai-service | 76.1 | 51.2 | 61.2 | +------------------+-----------+--------+------+ | gpt-3.5-turbo | 23.7 | 43.9 | 30.8 | +------------------+-----------+--------+------+ | gpt-4 | 34.7 | 60.5 | 44.1 | +------------------+-----------+--------+------+ | Yandex.Speller | 67.7 | 37.5 | 48.3 | +------------------+-----------+--------+------+ | JamSpell | 49.5 | 29.9 | 37.3 | +------------------+-----------+--------+------+ | HunSpell | 28.5 | 30.7 | 29.6 | +------------------+-----------+--------+------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import M2M100ForConditionalGeneration, M2M100Tokenizer path_to_model = "ai-forever/sage-m2m100-1.2B" model = M2M100ForConditionalGeneration.from_pretrained(path_to_model) tokenizer = M2M100Tokenizer.from_pretrained(path_to_model, src_lang="ru", tgt_lang="ru") sentence = "прийдя в МГТУ я был удивлен никого необноружив там…" encodings = tokenizer(sentence, return_tensors="pt") generated_tokens = model.generate( **encodings, forced_bos_token_id=tokenizer.get_lang_id("ru")) answer = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) print(answer) #["прийдя в МГТУ я был удивлен никого не обнаружив там..."] API ^^^^^ .. autoclass:: sage.spelling_correction.m2m_correctors.RuM2M100ModelForSpellingCorrection :members: :inherited-members: :show-inheritance: Limitations ^^^^^^^^^^^^ - Complex formatting may cause some trouble in output generation. Resources ^^^^^^^^^^^^ - `SAGE library `_, GitHub - `sage-fredt5-large `_, HuggingFace - `sage-fredt5-distilled-95m `_, HuggingFace - `sage-m2m100-1.2B `_, HuggingFace - `sage-mt5-large `_, HuggingFace License ^^^^^^^^^ Model `M2M100-1.2B `_, on the basis of which our solution is made, and its source code are supplied under the MIT license. Our solution also comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 5 Gb; - Framework: pytorch - Format: AI Service - Version: v2.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_correction/sage-mt5-large.rst ================================================ 🎯 sage-mt5-large ------------------- The model is a part of `SAGE v1.1.0 release `_ .. image:: ../../images/sage_banner.jpg :align: center The model corrects spelling errors and typos in both Russian and English languages by bringing all the words in the text to the norm of the language. Corrector had been trained based on the model `mT5-large `_ architecture. An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the Russian-language Wikipedia and transcripts of Russian-language videos, then typos and spelling errors were automatically introduced into it using the library `SAGE library `_. Table of contents ^^^^^^^^^^^^^^^^^ * `Public references <#id1>`_ * `Examples <#id2>`_ * `Metrics <#id3>`_ * `How to use <#id4>`_ * `API <#id5>`_ * `Limitations <#id6>`_ * `Resources <#id7>`_ * `License <#id10>`_ * `Specifications <#id12>`_ * `Contacts <#id13>`_ Public references ^^^^^^^^^^^^^^^^^ - `SAGE library announcement `_, DataFest 2023 - `Paper about synthetic error generation methods `_, Dialogue 2023 - `EACL 2024 paper `_ Examples ^^^^^^^^^ +--------------------------------------------------------------------+--------------------------------------------------------------------------+ | Input | Output | +====================================================================+==========================================================================+ | Перведи мне текст на аглиском: "Screw you kuys, I am goin hme (c). | Переведи мне текст на английском: "Screw you guys, I am going home" (c). | +--------------------------------------------------------------------+--------------------------------------------------------------------------+ | И не чсно прохожим в этот день непогожйи почему я веселый такйо | И мне ясно прохожим в этот день непогожий, почему я веселый такой | +--------------------------------------------------------------------+--------------------------------------------------------------------------+ | If you bought something goregous, you well be very happy. | If you bought something gorgeous, you will be very happy. | +--------------------------------------------------------------------+--------------------------------------------------------------------------+ Metrics ^^^^^^^^^ Below are automatic metrics for determining the correctness of the spell checkers. We compare our solution with both open automatic spell checkers and the ChatGPT family of models on all six available datasets: - **RUSpellRU**: texts collected from (`LiveJournal `_), with manually corrected typos and errors; - **MultidomainGold**: examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; - **MedSpellChecker**: texts with errors from medical anamnesis; - **GitHubTypoCorpusRu**: spelling errors and typos in commits from GitHub; - **BEA60K**: English spelling errors collected from several domains; - **JFLEG**: 1601 sentences in English, which contain about 2 thousand spelling errors; RUSpellRU, MultidomainGold, MedSpellChecker, GitHubTypoCorpusRu are datasets for the Russian spellchecking and BEA60K and JFLEG are those for the English language. **RUSpellRU** +----------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +======================+===========+========+======+ | sage-mt5-large | 55.7 | 68.5 | 61.4 | +----------------------+-----------+--------+------+ | sage-mt5-large (ft.) | 88.4 | 71.6 | 79.1 | +----------------------+-----------+--------+------+ | sage-ai-service | 93.5 | 82.4 | 87.6 | +----------------------+-----------+--------+------+ | gpt-3.5-turbo | 39.6 | 62.3 | 48.5 | +----------------------+-----------+--------+------+ | gpt-4 | 69.5 | 81.0 | 74.8 | +----------------------+-----------+--------+------+ **MultidomainGold** +----------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +======================+===========+========+======+ | sage-mt5-large | 35.4 | 57.9 | 43.9 | +----------------------+-----------+--------+------+ | sage-mt5-large (ft.) | 65.3 | 62.7 | 63.9 | +----------------------+-----------+--------+------+ | sage-ai-service | 70.9 | 68.8 | 69.9 | +----------------------+-----------+--------+------+ | gpt-3.5-turbo | 17.8 | 56.1 | 27.0 | +----------------------+-----------+--------+------+ | gpt-4 | 31.1 | 78.1 | 44.5 | +----------------------+-----------+--------+------+ **MedSpellChecker** +----------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +======================+===========+========+======+ | sage-mt5-large | 35.1 | 70.8 | 47.0 | +----------------------+-----------+--------+------+ | sage-mt5-large (ft.) | 77.7 | 77.5 | 77.6 | +----------------------+-----------+--------+------+ | sage-ai-service | 73.4 | 76.2 | 74.9 | +----------------------+-----------+--------+------+ | gpt-3.5-turbo | 15.1 | 53.6 | 23.5 | +----------------------+-----------+--------+------+ | gpt-4 | 48.9 | 88.7 | 63.1 | +----------------------+-----------+--------+------+ **GitHubTypoCorpusRu** +----------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +======================+===========+========+======+ | sage-mt5-large | 47.4 | 53.8 | 50.4 | +----------------------+-----------+--------+------+ | sage-mt5-large (ft.) | 69.5 | 46.0 | 55.3 | +----------------------+-----------+--------+------+ | sage-ai-service | 76.1 | 51.2 | 61.2 | +----------------------+-----------+--------+------+ | gpt-3.5-turbo | 23.7 | 43.9 | 30.8 | +----------------------+-----------+--------+------+ | gpt-4 | 34.7 | 60.5 | 44.1 | +----------------------+-----------+--------+------+ **BEA60K** +------------------------------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +================================================+===========+========+======+ | sage-mt5-large | 64.7 | 83.8 | 73.0 | +------------------------------------------------+-----------+--------+------+ | gpt-3.5-turbo | 66.9 | 84.1 | 74.5 | +------------------------------------------------+-----------+--------+------+ | gpt-4 | 68.6 | 85.2 | 76.0 | +------------------------------------------------+-----------+--------+------+ | Bert (https://github.com/neuspell/neuspell) | 65.8 | 79.6 | 72.0 | +------------------------------------------------+-----------+--------+------+ | SC-LSTM (https://github.com/neuspell/neuspell) | 62.2 | 80.3 | 72.0 | +------------------------------------------------+-----------+--------+------+ **JFLEG** +------------------------------------------------+-----------+--------+------+ | Model | Precision | Recall | F1 | +================================================+===========+========+======+ | sage-mt5-large | 74.9 | 88.4 | 81.1 | +------------------------------------------------+-----------+--------+------+ | gpt-3.5-turbo | 77.8 | 88.6 | 82.9 | +------------------------------------------------+-----------+--------+------+ | gpt-4 | 77.9 | 88.3 | 82.8 | +------------------------------------------------+-----------+--------+------+ | Bert (https://github.com/neuspell/neuspell) | 78.5 | 85.4 | 81.8 | +------------------------------------------------+-----------+--------+------+ | SC-LSTM (https://github.com/neuspell/neuspell) | 80.6 | 86.1 | 83.2 | +------------------------------------------------+-----------+--------+------+ How to use ^^^^^^^^^^^^ .. code-block:: python from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("ai-forever/sage-mt5-large") model = AutoModelForSeq2SeqLM.from_pretrained("ai-forever/sage-mt5-large", device_map='cuda') sentence = "Перведи мне текст на аглиском: \"Screw you kuys, I am goin hme (c)." inputs = tokenizer(sentence, max_length=None, padding="longest", truncation=False, return_tensors="pt") outputs = model.generate(**inputs.to(model.device), max_length = inputs["input_ids"].size(1) * 1.5) print(tokenizer.batch_decode(outputs, skip_special_tokens=True)) # ["Переведи мне текст на английском: "Screw you guys, I am going home" (c)."] API ^^^^^ .. autoclass:: sage.spelling_correction.t5_correctors.T5ModelForSpellingCorruption :members: :inherited-members: :show-inheritance: Limitations ^^^^^^^^^^^^ - For the Russian language the model is intended to be fine-tuned for better performance. Resources ^^^^^^^^^^^^ - `SAGE library `_, GitHub - `sage-fredt5-large `_, HuggingFace - `sage-fredt5-distilled-95m `_, HuggingFace - `sage-m2m100-1.2B `_, HuggingFace - `sage-mt5-large `_, HuggingFace License ^^^^^^^^^ Model `mt5-large `_, on the basis of which our solution is made, and its source code are supplied under the Apache-2.0 license. Our solution comes with MIT license. Specifications ^^^^^^^^^^^^^^^ - File size: 5 Gb; - Framework: pytorch - Format: AI Service - Version: v1.0 - Developer: SberDevices, AGI NLP Contacts ^^^^^^^^^^^ nikita.martynov.98@list.ru ================================================ FILE: docs/source/rst/spelling_corruption/Augmentex.rst ================================================ ✏️ Augmentex ------------------- We implemented two methods for spelling corruption. **S**\ tatistic-\ **b**\ ased **S**\ pelling **C**\ orruption (\ **SBSC**\ ) aims to mimic human behaviour when making an error. While `Augmentex `_ relies on rule-based heuristics and common errors and mistypings especially those committed while typing text on a keyboard. 🚀 Both methods proved their effectiveness for spelling correction systems and celebrated substantial **performance gains** fully reported in our `Paper `_. **Augmentex** introduces rule-based and common statistic (empowered by `KartaSlov `_ project) approach to insert errors in text. It is fully described again in the `Paper `_ and in this 🗣️\ `Talk `_. 🖇️ Augmentex allows you to operate on two levels of granularity when it comes to text corruption and offers you sets of specific methods suited for particular level: * **Word level**\ : * *replace* - replace a random word with its incorrect counterpart; * *delete* - delete random word; * *swap* - swap two random words; * *stopword* - add random words from stop-list; * *reverse* - change a case of the first letter of a random word; * **Character level**\ : * *shift* - randomly swaps upper / lower case in a string; * *orfo* - substitute correct characters with their common incorrect counterparts; * *typo* - substitute correct characters as if they are mistyped on a keyboard; * *delete* - delete random character; * *multiply* - multiply random character; * *swap* - swap two adjacent characters; * *insert* - insert random character; To access Augmentex you only need these few manipulations: .. code-block:: python from sage.spelling_corruption import CharAugConfig, CharAugCorruptor config = CharAugConfig( unit_prob=0.3, # proportion of characters that is going to undergo edits min_aug=1, # minimum number of edits max_aug=5, # maximum number of edits mult_num=3 # `multiply` edit ) corruptor = CharAugCorruptor.from_config(config) ... or like this: .. code-block:: python from sage.spelling_corruption import WordAugConfig, WordAugCorruptor config = WordAugConfig( unit_prob=0.4, # proportion of characters that is going to undergo edits min_aug=1, # minimum number of edits max_aug=5, # maximum number of edits ) corruptor = WordAugCorruptor.from_config(config) Augmentex has been created by our fellow team, the project has its own `repo `_\ , do not forget to take a look! ================================================ FILE: docs/source/rst/spelling_corruption/SBSC.rst ================================================ 📊 SBSC ------------------- We implemented two methods for spelling corruption. **S**\ tatistic-\ **b**\ ased **S**\ pelling **C**\ orruption (\ **SBSC**\ ) aims to mimic human behaviour when making an error. While `Augmentex `_ relies on rule-based heuristics and common errors and mistypings especially those committed while typing text on a keyboard. 🚀 Both methods proved their effectiveness for spelling correction systems and celebrated substantial **performance gains** fully reported in our `Paper `_. **SBSC** is thoroughly described in our another `Paper `_ and in this 🗣️\ `Talk `_. Briefly, SBSC follows two simple steps: * 🧠 Analyze errors, their type and positions in a source text; * ✏️ Reproduce errors from the source text in a new sentence; 🧠 To analyze errors in a source sentence we need its corresponding correction in order to build `Levenshtein matrix `_\ , traverse it back starting from the bottom right entry and determine the exact position and type of an error. We then aggregate all obtained statistics and normalize it to valid discrete distributions. ✏️ "Reproduce" step is even less complicated: we just sample number of errors per sentence, their types and relative positions from corresponding distributions and apply them to a correct sentence. As stated, you need a parallel dataset to "fit" SBSC. We provide a set of four datasets with natural errors covering exhaustive range of domains: * **RUSpellRU**\ : texts collected from `LiveJournal `_\ , with manually corrected typos and errors; * **MultidomainGold**\ : examples from 7 text sources, including the open web, news, social media, reviews, subtitles, policy documents and literary works; * **MedSpellChecker**\ : texts with errors from medical anamnesis; * **GitHubTypoCorpusRu**\ : spelling errors and typos in commits from GitHub; You can use them as simple as .. code-block:: python import sage from sage.spelling_corruption import SBSCConfig, SBSCCorruptor from sage.utils import DatasetsAvailable # Instantiate SBSC corruptor from a dataset with errors in medical anamnesis config = SBSCConfig( reference_dataset_name_or_path=DatasetsAvailable.MedSpellchecker.name, reference_dataset_split="test" ) corruptor = SBSCCorruptor.from_config(config) ... or you can initialize your SBSC from locally stored dataset: .. code-block:: python import os from sage.spelling_corruption import SBSCConfig, SBSCCorruptor # Instantiate SBSC corruptor from a JFLEG dataset config = SBSCConfig( lang="en", reference_dataset_name_or_path=os.path.join("data", "example_data", "jfleg"), ) corruptor = SBSCCorruptor.from_config(config) ✅ To check how good SBSC actually approximates original errors, you can plot side-by-side graphs of original and synthetically generated distributions: |pic1| |pic2| .. |pic1| image:: ../../images/bea60k_side_by_side.jpg :width: 45% .. |pic2| image:: ../../images/ruspellru_side_by_side.jpg :width: 45% To access these graphs you can simply .. code-block:: python from sage.utils import load_available_dataset_from_hf, draw_and_save_errors_distributions_comparison_charts from sage.spelling_corruption.sbsc.labeler import process_mistypings from sage.spelling_corruption import SBSCCorruptor sources, corrections = load_available_dataset_from_hf("RUSpellRU", for_labeler=True, split="train") ruspellru_stats, ruspellru_confusion_matrix, ruspellru_typos_cnt = process_mistypings(sources, corrections) corruptor = SBSCCorruptor.from_default_config() spoiled_sentences = corruptor.batch_corrupt(corrections) sbsc_stats, sbsc_confusion_matrix, sbsc_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt = sbsc_typos_cnt, reference_typos_cnt=ruspellru_typos_cnt, actual_stats=sbsc_stats, reference_stats=ruspellru_stats, path_to_save="ruspellru_sbsc.jpg" ) ================================================ FILE: notebooks/augmentation_pipeline.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "id": "cdc00db2-dd1a-488c-98fe-6a16e7290688", "metadata": {}, "source": [ "# Imports" ] }, { "cell_type": "code", "execution_count": null, "id": "7ed603cb-8433-4df4-a05a-001a8589f313", "metadata": {}, "outputs": [], "source": [ "! git clone https://github.com/ai-forever/sage.git" ] }, { "cell_type": "code", "execution_count": null, "id": "26d171b1-381a-4989-ad71-cdec2a1a545c", "metadata": {}, "outputs": [], "source": [ "cd sage" ] }, { "cell_type": "code", "execution_count": null, "id": "1c9ba312-3fa4-4070-ad3e-4e751c008d46", "metadata": {}, "outputs": [], "source": [ "# change to pip install -e \".[errant]\" in case of zsh\n", "\n", "! pip install .\n", "! pip install -e .[errant]" ] }, { "cell_type": "code", "execution_count": 13, "id": "fe6c971a-29f1-4040-af2d-10c5d7cc153a", "metadata": {}, "outputs": [], "source": [ "import os\n", "from sage.pipeline import PipelineConfig\n", "from sage.pipeline import AugmentationPipeline\n", "from sage.utils import DatasetsAvailable" ] }, { "cell_type": "markdown", "id": "a4f6502a-5306-46ab-abc0-f25949d0e8d4", "metadata": {}, "source": [ "# Basic Use" ] }, { "cell_type": "markdown", "id": "c03a814e-3ce9-41dd-ac3a-c0f076c08286", "metadata": {}, "source": [ "Creates an augmentation pipeline that automatically adds and shuffles all available augmentors without manual configuration." ] }, { "cell_type": "code", "execution_count": null, "id": "6b1a3f27-0d71-4ed8-8c08-41ec7e2bc780", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "226587c0dd644ada9c2b05bd8a2f000d", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/1054 [00:00
Copy a token from your Hugging Face\ntokens page and paste it below.
Immediately click login after copying\nyour token or it might be stored in plain text in this notebook file. " } }, "2223690bfa8a4e68b2622544c869d10d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2252fac7b15f48aab5ff8671a3fbc551": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2255094d515949bf81db3c8cef11ee0a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "22f3de6c97004fcd81107e112ebcd61f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2481790a4b9e45aabf62080662108093": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_19d41a5b5685430bb96c81e662ac939a", "IPY_MODEL_3290ff8022af4088ab4588e4153af940", "IPY_MODEL_621bc0b2c57b413b80f51fbb83d95902" ], "layout": "IPY_MODEL_757abf3b43e347fdaccc332d5866134b" } }, "24e4d04dc7034146a971a9028a4a25fb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "257cc0f9295a4ba68448bc27dc82a9b3": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "25b6f4c97b2e4d26ae1f078d06de143d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2784fc3ce03e4c1dac2c482722c69f46": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "285031e1837f4fcea390dc68af118548": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "294aa1de620b4120ae451eefc0dfce50": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2a80bf14a74941bc99ee93ddd1faca52": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2c2098c7113a43359e190b946393b652": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "2c858b5e548242a994fb3ffe47528cba": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2ce37092673f463c9817dee8961b33c0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2de53b567c8645e7a65af7d694eadfb4": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2e24027c614846db8e24ae7b9e44fcfb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bae489730eea42649265803aa12e32fb", "placeholder": "​", "style": "IPY_MODEL_f812255335e34e5ebab2e96a1df3ce4b", "value": " 1/1 [02:26<00:00,  1.62it/s]" } }, "2ea8307c4cf947cfa3e718b827395fbf": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "304e075810e743a28f73f42ae7a64d12": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ee17d924ee6e41faaa7059e9c4367d0a", "max": 2008, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_b5cfd897f66f4606a81dab06b9ae2fb8", "value": 2008 } }, "3290ff8022af4088ab4588e4153af940": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_36b2c00e2d4b47fc9ee6c40f8cae1c5d", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_3d7e48d678644b27abc320721f57c392", "value": 4 } }, "32f42c9300ee45248f8c63a190af26f6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "33803a72447346978dab6974e1dcaf5d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_6bbb8a25c90e4a6e82501ea1f83c4596", "IPY_MODEL_33d6e4ce7ee147b28e8ce5ef0ae43d8e", "IPY_MODEL_11251ac36dac405b9885efc9cd0c2526" ], "layout": "IPY_MODEL_d0192c39439843498c64f3c02d5570af" } }, "33d6e4ce7ee147b28e8ce5ef0ae43d8e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cfedeabd0a774d3a84474567f7c59d64", "max": 2008, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_58f55dda7d71427b85970e438add6cd9", "value": 2008 } }, "35b904ce025b469a83a92345348fdf11": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_d67bf87e086c43c49c3802f6ce207755", "IPY_MODEL_e95bb5040a58437590ec9d0fa93e25e7", "IPY_MODEL_5c7b22a52ea84990993402e2129df5d5" ], "layout": "IPY_MODEL_dffc9432d0ae4b2884d16e040a67cee2" } }, "3652677ec25d49e5aea1f6a7cde62652": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "368c866199de4d7cafab0f823020c381": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ac5d814b9e234271b03dfe226559f8d1", "placeholder": "​", "style": "IPY_MODEL_9373d84dc3cc437f8adb0ed1d7c5b11e", "value": " 1601/1601 [00:06<00:00, 263.98it/s]" } }, "36b2c00e2d4b47fc9ee6c40f8cae1c5d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "36ff471f92b84672972ee1f9ceecea47": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9885a9cf35ea4b8e95d2e11af608781e", "placeholder": "​", "style": "IPY_MODEL_9c9279a5c830431ab7f74bf0b9e07e90", "value": " 4/4 [10:02<00:00,  1.12s/it]" } }, "38105507fc0b4f08afffa07f5e12d68d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8ca2667a11ac4493b6d8e5729157aa3c", "max": 2950848513, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_b813c01ba73d4b6c8cbb6322dfeebd6b", "value": 2950848513 } }, "39be221171ef42b08fcf49ba2e8dd914": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d1fe442bb4c146ce8aab6181dbb56a11", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_831afcf4901d4f898d53bcde2aa04deb", "value": 4 } }, "3b38fdd13b5c49099730f6f5b19b2485": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_0dee3cb7aaef4dcf9145bdb06e2909bf", "max": 2422095, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_f5ac7b532c3249bbafeaa05957c5bae3", "value": 2422095 } }, "3b429f82790a4ec191faeb9012dd14c6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f140b958503f413a9637afd713ec7012", "placeholder": "​", "style": "IPY_MODEL_55f35f66a27f4c2c8caec2d6e64b5cc6", "value": "100%" } }, "3cff285d5bbd456eba49aa14c1786e42": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "3d7e48d678644b27abc320721f57c392": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "40036a6b847248cf9433acad881150eb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_094bd63115494cd0afa6a62e0342f6e0", "placeholder": "​", "style": "IPY_MODEL_e5ee4c4f091e411d80a387b25ad5b21d", "value": " 4/4 [00:31<00:00,  9.05s/it]" } }, "40ab1ea7f00443b1b2d633b72801cf4c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "LabelView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_65213a621e4d4d2fab564a805cecba7d", "placeholder": "​", "style": "IPY_MODEL_926b3d6251a746c5b76dc1c4ae195bc3", "value": "Connecting..." } }, "43994809b86c427b9060ceb66578b640": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "460ad6078679497a8e2cce014c159185": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4691586152b847fba8d71e944a44846d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "47bcddf0955e484fa92931a05025109d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "48171dafde0142d9a7795c6f8c204e85": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "495deed553994c1f9224b0e2d6ef5b7c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4964dbb3b6944e46839126c046f9f769": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4691586152b847fba8d71e944a44846d", "placeholder": "​", "style": "IPY_MODEL_75df11e785b94a9bbda8feed0fa06592", "value": " 2.20k/2.20k [00:00<00:00, 181kB/s]" } }, "497f8a0b18634708b18e2b62c7d53d77": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4b0d94b591cc47d896e4d828a12a6099": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e539ff7310e742e3beea08248567dd6c", "placeholder": "​", "style": "IPY_MODEL_147ae810bf3a4f75b1a47d6ff1383d00", "value": " 1/1 [00:06<00:00,  6.68s/it]" } }, "4b9578f0d34a4ee4bdd02380d83c0c54": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2223690bfa8a4e68b2622544c869d10d", "placeholder": "​", "style": "IPY_MODEL_69cc93d9e63942e985869e52c54c6ffe", "value": " 4/4 [03:14<00:00,  1.98it/s]" } }, "4bcf0db555aa41eca57f5d1b4b08e9b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "4bfedf817cbe4e609152c635dd691b2b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e506e728a9724ce8a05b4bcf67257a53", "placeholder": "​", "style": "IPY_MODEL_2ce37092673f463c9817dee8961b33c0", "value": " 4/4 [11:25<00:00, 10.88s/it]" } }, "4c49d5f24d7e46398ea4190c8d90d706": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4c70b52327d741b396e0e23b76c2102c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_658b4c3b02c744f8b666df9226509a7a", "IPY_MODEL_a3f1e625b0084c629a9629ece5d1a272", "IPY_MODEL_4b0d94b591cc47d896e4d828a12a6099" ], "layout": "IPY_MODEL_4c49d5f24d7e46398ea4190c8d90d706" } }, "4d3c25242a83405286c0b3e8c877b60f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4d429b7573424ddb9b1de11ad55065ef": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "4d4536f0874f4d33ac9552d6156ad700": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "LabelView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_027d148e614940c7a0d60ca87244f02b", "placeholder": "​", "style": "IPY_MODEL_c5552d037f644cfda171295f210225e2", "value": "Your token has been saved to /root/.cache/huggingface/token" } }, "4d76a0894e54436fb022b094bf294240": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4f9e11854d494268bd70846cff344f2e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "502475762d094837b5aa53e1d74357ae": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_53bdc2bbf3534dec8acccb4b6f35a1c9", "placeholder": "​", "style": "IPY_MODEL_2252fac7b15f48aab5ff8671a3fbc551", "value": " 1/1 [00:09<00:00,  3.42s/it]" } }, "50cb0a23015d4153b4ffb26a5d9f4fda": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "516f504863944c569f2ee2da55a613f4": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "521499589c31442482a1ad32bffa534e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8083380bb89b4783aefd7e24391f0420", "placeholder": "​", "style": "IPY_MODEL_1cdb96d0edbe46eb885193961fb9ce93", "value": " 51/51 [02:37<00:00,  1.91s/it]" } }, "52d1faecb95e4b8bb367830d41e05c6e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5374c1231b52451580ca929573c33ca2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "53bdc2bbf3534dec8acccb4b6f35a1c9": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "53e499a812494cccb651b58b5da5dee6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "55f35f66a27f4c2c8caec2d6e64b5cc6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "5664915ef2774ce7b3c7c6604dc41483": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "58f55dda7d71427b85970e438add6cd9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5935a74e31f14207b46801bf98296d56": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "59c43764df3b4614a7a6e42a60a628e1": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "59faaabd731845af8c48f40e71daa20b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "5adda510510d476ca574709c5edd9f27": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_069b6e7f326e47ff9addcd37fd98beb0", "max": 791656, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_8fb75ce4bb1c4f8888e83b9ded7c9118", "value": 791656 } }, "5b018c654705469497284135ce60bbfe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_6304d27b3d0d4cfb8e1f815679d822e6", "IPY_MODEL_04ef52b01667421a836cec5a028bdc65", "IPY_MODEL_521499589c31442482a1ad32bffa534e" ], "layout": "IPY_MODEL_d12fbc8be24b4b7facfa1f66f17a84a1" } }, "5b83952752fa40159f231883b3ca912e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5b90a0d8d274431ba0a35f02c47daac2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "5c7b22a52ea84990993402e2129df5d5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_054453da91cb46a7b03f2f15f8108ede", "placeholder": "​", "style": "IPY_MODEL_159eea65217042268eebb846b2891900", "value": " 1/1 [00:42<00:00,  1.98s/it]" } }, "5e2c00b2eda44eac9fc3373515d17d10": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_0582bb4dc951460995a053d5b34e6a68", "placeholder": "​", "style": "IPY_MODEL_1540ef8ac75f46ffbf323bfdbedb40cb", "value": " 2008/2008 [00:05<00:00, 223.80it/s]" } }, "5e4ee442e7474fbb881c6c1444036c1b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f7f7c7cfb09f465c9aa91e5f00f2e02e", "placeholder": "​", "style": "IPY_MODEL_c2a655ac7386410887fd544aa2fa5c63", "value": " 792k/792k [00:00<00:00, 41.7MB/s]" } }, "60e4ff85511f4b5ca4f7a70937c9f879": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "LabelView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_71aac8913e964732b6df507bfbdaa900", "placeholder": "​", "style": "IPY_MODEL_5b90a0d8d274431ba0a35f02c47daac2", "value": "Your token has been saved in your configured git credential helpers (store)." } }, "60f83370a6c74ec49a49fcf703731fa4": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "621bc0b2c57b413b80f51fbb83d95902": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_fc11bffcf22a49429a16b4497d1d7456", "placeholder": "​", "style": "IPY_MODEL_59faaabd731845af8c48f40e71daa20b", "value": " 4/4 [01:25<00:00, 15.43s/it]" } }, "622c182b57fb4cbfb1418afff1fa9d83": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "62930473ce74456eba2f8f74337813da": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_516f504863944c569f2ee2da55a613f4", "placeholder": "​", "style": "IPY_MODEL_109f1165a8d946589c3de0073c9f4067", "value": "special_tokens_map.json: 100%" } }, "6304d27b3d0d4cfb8e1f815679d822e6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_08430f9030ed402d81434d26d3a7a5b1", "placeholder": "​", "style": "IPY_MODEL_ad00de5baaa94d1a865da1430ea2cfbf", "value": "100%" } }, "65213a621e4d4d2fab564a805cecba7d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6564e9cb1f424eb786412dd1cd6969ea": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "658b4c3b02c744f8b666df9226509a7a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f6a16f94db9b4759a64ee1e550cba8b7", "placeholder": "​", "style": "IPY_MODEL_bf635633e5d94fbe936a976848f8430f", "value": "100%" } }, "65a63944cc3d4cbc85db6f01243b1279": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "661967f2855444a79914277b9bc72224": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6645ca6cf1ac48c5a5960c6d5596aadd": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "675195015dba41f799ab0020ae4a66cf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "67fa5846b9ca41c7b2157340f141b335": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6866bcb5a793454fadbd43b3959e1816": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "LabelView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a037f1b849fc4edf87e64fc9e270f80b", "placeholder": "​", "style": "IPY_MODEL_25b6f4c97b2e4d26ae1f078d06de143d", "value": "Token is valid (permission: write)." } }, "68ffca94fa3242f18e781d6455777f75": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_497f8a0b18634708b18e2b62c7d53d77", "placeholder": "​", "style": "IPY_MODEL_f64b6e4918ec426daa83165f0a5557a8", "value": "pytorch_model.bin: 100%" } }, "69cc93d9e63942e985869e52c54c6ffe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6a4bd1f06919450e9231b8cdcbd7aa9c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6acdc48b6bc34127a01909ed26b41cba": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6bbb8a25c90e4a6e82501ea1f83c4596": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ce56c6fdbe5a483389375d67d1fd1728", "placeholder": "​", "style": "IPY_MODEL_6ca0b5e9339d4bbe9cbd30fc4b664dca", "value": "Calculating errant metric: 100%" } }, "6c43049996a14dba967d80584cfdb26c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_9ac007a469194cb59787c42339306285", "IPY_MODEL_9343b4538aed432cb25c8144ae6a8b3b", "IPY_MODEL_ff8824c006844551a7cf2c16913c12a4" ], "layout": "IPY_MODEL_9afc3ae46eb84e109d82ca4a456fcbed" } }, "6c6d21a026454807b7a0aac94e40daee": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_3b429f82790a4ec191faeb9012dd14c6", "IPY_MODEL_72be1bf0c4d44a64b38e043821b55aa1", "IPY_MODEL_fbdf6b50de9d4281b5ba5f563c0527f6" ], "layout": "IPY_MODEL_979a5d2c044b4ad78a2f655920978288" } }, "6ca0b5e9339d4bbe9cbd30fc4b664dca": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6d83aadc6bf241b6b1c62d1de5638c11": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6eb0f6dd14e44412bdc0282001d2607a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_933c64a1d73b48ee82b65a738a150719", "placeholder": "​", "style": "IPY_MODEL_95fc6c1196704e648d1adfbc37fe9c25", "value": "100%" } }, "6ecbd3a3b2bb4ddb9774b1d16fa9fe9a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6fb4dda7972f415c9ec519d36a67f04e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ee067e0280f84a828f8143899ea68083", "placeholder": "​", "style": "IPY_MODEL_de459476c12c49da807a22096bfbd9d4", "value": " 63/63 [00:57<00:00,  1.66it/s]" } }, "7183153042d44a2e8e68e277de90949a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": "center", "align_self": null, "border": null, "bottom": null, "display": "flex", "flex": null, "flex_flow": "column", "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "50%" } }, "71aac8913e964732b6df507bfbdaa900": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "72be1bf0c4d44a64b38e043821b55aa1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_83039a9b0d594f0b8e2c3441e1af6555", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_675195015dba41f799ab0020ae4a66cf", "value": 4 } }, "7326d13c2bd04ef9a49295ee09db8406": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "73511fb39a1a443c8d5f25a0d51f7885": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "73d06e10081a4266bc7a185fcf7b62b1": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "74477dbf78504d87b242474509cec081": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_53e499a812494cccb651b58b5da5dee6", "placeholder": "​", "style": "IPY_MODEL_2784fc3ce03e4c1dac2c482722c69f46", "value": "Calculating words metric: 100%" } }, "74ac3f19be434d3193e3a85f82671af3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c74f1dd8913f475d88ffe71b9a457e66", "placeholder": "​", "style": "IPY_MODEL_f9dcba08d73c485ca43e6e896c27cb8b", "value": " 2.35k/2.35k [00:00<00:00, 168kB/s]" } }, "74d151653aed465b97366b8de71e209e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "757abf3b43e347fdaccc332d5866134b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "75df11e785b94a9bbda8feed0fa06592": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "771d2b04192f4db4a98dd5da1b4b07a0": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "78b47745cca347aa974f3230979ed78b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "79b067f559db4d3cb53035401dfeed62": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7c9ab790537b4045b9aae9ecc4c6863c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "7d1c496b80604a17bc9c7c2f096f6f26": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "7f3415b4b915419fafe790b5eebd5ef8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_88bf33f043244b8ebb773b576c05c93d", "IPY_MODEL_a9f4d4c70c0a485ab957b033ab1647bc", "IPY_MODEL_4bfedf817cbe4e609152c635dd691b2b" ], "layout": "IPY_MODEL_d7c460e46ca143119ffc99255f462842" } }, "8083380bb89b4783aefd7e24391f0420": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "80a5954180644ec4bc8662a917d39dc4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6645ca6cf1ac48c5a5960c6d5596aadd", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_9d03873a20c54d01ad096cccd11de39a", "value": 4 } }, "83039a9b0d594f0b8e2c3441e1af6555": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "831afcf4901d4f898d53bcde2aa04deb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "855a16915c9847fa95e0f430f52f557f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "864eb623d28a449292353801da1f7462": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "86f867c0782f4b0db55dd8d42564a9ae": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "87b570938c834261bfc637a9b517e503": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_6eb0f6dd14e44412bdc0282001d2607a", "IPY_MODEL_39be221171ef42b08fcf49ba2e8dd914", "IPY_MODEL_d3270f01bb4847d882e2d21eb710a774" ], "layout": "IPY_MODEL_47bcddf0955e484fa92931a05025109d" } }, "88bf33f043244b8ebb773b576c05c93d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_ca9e7b30c2474fa3831c9ffe0119b4be", "placeholder": "​", "style": "IPY_MODEL_2255094d515949bf81db3c8cef11ee0a", "value": "100%" } }, "8922d8b19b464d49b7fb4af5a121defa": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8a07e8e7944143ef880a51fc0c59328f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8b33032c54924a2fa3b06d2c3886b86d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5935a74e31f14207b46801bf98296d56", "placeholder": "​", "style": "IPY_MODEL_d31b23089372430d83b25718b9577e9a", "value": " 1/1 [02:44<00:00, 11.58s/it]" } }, "8bcf6c1a7eae41088998feab81515fe2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4d76a0894e54436fb022b094bf294240", "placeholder": "​", "style": "IPY_MODEL_1b13202eb4764d288561e57f0f036e2f", "value": "100%" } }, "8c195e1b2a9c44cda1fd0116e9b4f278": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8c959cbf27304552be3cee3aebf3f549": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_8bcf6c1a7eae41088998feab81515fe2", "IPY_MODEL_122fbc2866e64c26a41f9437bed509b7", "IPY_MODEL_8b33032c54924a2fa3b06d2c3886b86d" ], "layout": "IPY_MODEL_0a1a800bba554d85a1a140f62525a66f" } }, "8ca2667a11ac4493b6d8e5729157aa3c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8ce49a79efdc4a048885fcbb439337c5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8fb75ce4bb1c4f8888e83b9ded7c9118": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "8fdc2c5052464249b54d143585522ae3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "926b3d6251a746c5b76dc1c4ae195bc3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "933c64a1d73b48ee82b65a738a150719": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9343b4538aed432cb25c8144ae6a8b3b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8a07e8e7944143ef880a51fc0c59328f", "max": 1477, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_e1767f173e3e4c9faaec5bc537e10707", "value": 1477 } }, "9373d84dc3cc437f8adb0ed1d7c5b11e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "93be39ef92bc4823ae455cb859bc290d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_a057a65198c04efaa5d0a96293b12049", "IPY_MODEL_c631a40244bd4d1185395d98c28d6077", "IPY_MODEL_74ac3f19be434d3193e3a85f82671af3" ], "layout": "IPY_MODEL_bd8c2768497748839b7183d11e261aae" } }, "940e3c0c2c2d48b7a71b5dfd4c7f0ced": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "94d009db8c6d4a0aa56f48d3b4003e0b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "PasswordModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "PasswordModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "PasswordView", "continuous_update": true, "description": "Token:", "description_tooltip": null, "disabled": false, "layout": "IPY_MODEL_e5de2d103b664ea19d27ed150286abaa", "placeholder": "​", "style": "IPY_MODEL_c038bf928fc643129eb021364fcef5c2", "value": "" } }, "954d6d059c1542bfb5f6ab741a701112": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_495deed553994c1f9224b0e2d6ef5b7c", "placeholder": "​", "style": "IPY_MODEL_8fdc2c5052464249b54d143585522ae3", "value": " 2.42M/2.42M [00:00<00:00, 6.12MB/s]" } }, "95fc6c1196704e648d1adfbc37fe9c25": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "963d3bac30d74782ae4881e90eb90e9d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_fa4c4ebbec514b3588465fd10d52a569", "IPY_MODEL_99ac439e97a8437481c5d46456caefcd", "IPY_MODEL_2e24027c614846db8e24ae7b9e44fcfb" ], "layout": "IPY_MODEL_09bbf5cdeb214390992ee6593248bf31" } }, "979a5d2c044b4ad78a2f655920978288": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "97dbbeb9ebe34ff0b57d1ee369e02327": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a51e121544d84f01bbab46e4930b6b1f", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_d8c93be7312140d7925e16cc3a5cd847", "value": 4 } }, "9885a9cf35ea4b8e95d2e11af608781e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "99ac439e97a8437481c5d46456caefcd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5374c1231b52451580ca929573c33ca2", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_a28d067be4304574b934cb3ab6c05396", "value": 1 } }, "9a1938c88cc744838aacae31d4def470": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5664915ef2774ce7b3c7c6604dc41483", "placeholder": "​", "style": "IPY_MODEL_1d0e3ba95fbd43fc93136ca061b79175", "value": " 4/4 [00:56<00:00, 14.67s/it]" } }, "9ac007a469194cb59787c42339306285": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_32f42c9300ee45248f8c63a190af26f6", "placeholder": "​", "style": "IPY_MODEL_2a80bf14a74941bc99ee93ddd1faca52", "value": "config.json: 100%" } }, "9afc3ae46eb84e109d82ca4a456fcbed": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9c1512dad8ae45558f4381b0fd6fb271": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "9c9279a5c830431ab7f74bf0b9e07e90": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "9d03873a20c54d01ad096cccd11de39a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "9e9d796acb9f47a486189ad418625b36": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6ecbd3a3b2bb4ddb9774b1d16fa9fe9a", "placeholder": "​", "style": "IPY_MODEL_3cff285d5bbd456eba49aa14c1786e42", "value": "Calculating words metric: 100%" } }, "9eb4e12a5b844d21a7e2d185ccc763bf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "VBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "VBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "VBoxView", "box_style": "", "children": [ "IPY_MODEL_6866bcb5a793454fadbd43b3959e1816", "IPY_MODEL_60e4ff85511f4b5ca4f7a70937c9f879", "IPY_MODEL_4d4536f0874f4d33ac9552d6156ad700", "IPY_MODEL_d5a938759f5e4239801d8d7f18fc3768" ], "layout": "IPY_MODEL_7183153042d44a2e8e68e277de90949a" } }, "a037f1b849fc4edf87e64fc9e270f80b": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a057a65198c04efaa5d0a96293b12049": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_0fc1a2b5f90946eeb09938e1fa52bc13", "placeholder": "​", "style": "IPY_MODEL_67fa5846b9ca41c7b2157340f141b335", "value": "tokenizer_config.json: 100%" } }, "a0f996da40264082aac266b0c19bd3bf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a28d067be4304574b934cb3ab6c05396": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "a3a994926c4347129fd4cad74e9fb12c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_43994809b86c427b9060ceb66578b640", "placeholder": "​", "style": "IPY_MODEL_f0d837b662dd4e8995e7f9d77405f482", "value": "spiece.model: 100%" } }, "a3f1e625b0084c629a9629ece5d1a272": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_22f3de6c97004fcd81107e112ebcd61f", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_7c9ab790537b4045b9aae9ecc4c6863c", "value": 1 } }, "a41c1ae646ed4d94ba346da8992071dd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_65a63944cc3d4cbc85db6f01243b1279", "placeholder": "​", "style": "IPY_MODEL_6d83aadc6bf241b6b1c62d1de5638c11", "value": "\nPro Tip: If you don't already have one, you can create a dedicated\n'notebooks' token with 'write' access, that you can then easily reuse for all\nnotebooks. " } }, "a51e121544d84f01bbab46e4930b6b1f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a7aa9a57a8ca4237864621c4bf12c81a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "CheckboxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "CheckboxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "CheckboxView", "description": "Add token as git credential?", "description_tooltip": null, "disabled": false, "indent": true, "layout": "IPY_MODEL_07161e413b05484997101deaa4a2da11", "style": "IPY_MODEL_020009de7d6e4201ba2c15f6722ed6b7", "value": true } }, "a942408b6f5a49aa98006e517900c96e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_bedb60660d9845ecb9b28105b334cb50", "IPY_MODEL_f5f57d26582d4c1bb7506b9e996eb688", "IPY_MODEL_502475762d094837b5aa53e1d74357ae" ], "layout": "IPY_MODEL_5b83952752fa40159f231883b3ca912e" } }, "a9f31512439c4e999ea2bcf2d37d0ebb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_9e9d796acb9f47a486189ad418625b36", "IPY_MODEL_304e075810e743a28f73f42ae7a64d12", "IPY_MODEL_5e2c00b2eda44eac9fc3373515d17d10" ], "layout": "IPY_MODEL_af33522681934e079a0c0b2362bbc6f6" } }, "a9f4d4c70c0a485ab957b033ab1647bc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_79b067f559db4d3cb53035401dfeed62", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_24e4d04dc7034146a971a9028a4a25fb", "value": 4 } }, "ac5d814b9e234271b03dfe226559f8d1": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ad00de5baaa94d1a865da1430ea2cfbf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "af33522681934e079a0c0b2362bbc6f6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "af6ebe3596c3411780e8103172dc4f67": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "b09dfbf69131434084699e6c88b4d9b9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c62642ac64ed48939469d3f7204d63e5", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_f6bad5d1677943be9be6af53fa55d951", "value": 4 } }, "b2bad85c990f4a43a192bc725cb1d43f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_50cb0a23015d4153b4ffb26a5d9f4fda", "max": 2201, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_4d429b7573424ddb9b1de11ad55065ef", "value": 2201 } }, "b4f1cb19c7b54a719cd1a1bff5d213de": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8c195e1b2a9c44cda1fd0116e9b4f278", "max": 4, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_2c2098c7113a43359e190b946393b652", "value": 4 } }, "b5cfd897f66f4606a81dab06b9ae2fb8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "b6f4d1137057400e9f442ebb49bbb7b0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "b7710d529a1e4842aead7cc10d5e01b6": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b813c01ba73d4b6c8cbb6322dfeebd6b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "b99b3e10df0f4c55a3fb4778cd01b670": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "b9e169614b5b442193c4564a169ab29d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bae489730eea42649265803aa12e32fb": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bc4ec6a73c6c4559b8697eb9793d2caa": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_c5b10cf1cba9471bb71a83e6732635b9", "IPY_MODEL_80a5954180644ec4bc8662a917d39dc4", "IPY_MODEL_9a1938c88cc744838aacae31d4def470" ], "layout": "IPY_MODEL_e82dfb585fb64b6cb51788dca507027f" } }, "bcafdca9bd554e0a8d36c50d6349702f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_74477dbf78504d87b242474509cec081", "IPY_MODEL_c2e6be03ed1b4767bad0b3df8312bf8a", "IPY_MODEL_368c866199de4d7cafab0f823020c381" ], "layout": "IPY_MODEL_b9e169614b5b442193c4564a169ab29d" } }, "bd8c2768497748839b7183d11e261aae": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "be82f06554304d9a962383e9cd27a954": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_8ce49a79efdc4a048885fcbb439337c5", "placeholder": "​", "style": "IPY_MODEL_3652677ec25d49e5aea1f6a7cde62652", "value": " 2.95G/2.95G [01:07<00:00, 48.1MB/s]" } }, "bedb60660d9845ecb9b28105b334cb50": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_285031e1837f4fcea390dc68af118548", "placeholder": "​", "style": "IPY_MODEL_f28ce1633cbf475f811190db490cbdfe", "value": "100%" } }, "bf635633e5d94fbe936a976848f8430f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "bfd567550fdf4623a8c846972fd5b498": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_68ffca94fa3242f18e781d6455777f75", "IPY_MODEL_38105507fc0b4f08afffa07f5e12d68d", "IPY_MODEL_be82f06554304d9a962383e9cd27a954" ], "layout": "IPY_MODEL_1cd3cec5fb734071bb490281a268cf4b" } }, "c038bf928fc643129eb021364fcef5c2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c2a655ac7386410887fd544aa2fa5c63": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c2e6be03ed1b4767bad0b3df8312bf8a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1b166c02223c41609dbe6ae00623529a", "max": 1601, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_af6ebe3596c3411780e8103172dc4f67", "value": 1601 } }, "c43c5a3a85094dda98e85c4504acabe5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c5552d037f644cfda171295f210225e2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c5b10cf1cba9471bb71a83e6732635b9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_15b16471ce5f430faea7548daf5ed18e", "placeholder": "​", "style": "IPY_MODEL_e39886e2a6604637a9668bcbd5128058", "value": "100%" } }, "c62642ac64ed48939469d3f7204d63e5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c631a40244bd4d1185395d98c28d6077": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_864eb623d28a449292353801da1f7462", "max": 2349, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_48171dafde0142d9a7795c6f8c204e85", "value": 2349 } }, "c74f1dd8913f475d88ffe71b9a457e66": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ca9e7b30c2474fa3831c9ffe0119b4be": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cc6f723d5ed448a6a23f53db01931234": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "ce56c6fdbe5a483389375d67d1fd1728": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ceb08a1a7a604331ae29d729dad057a8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_04536f823ac64f9ba8a36b532c7d9b1c", "IPY_MODEL_b4f1cb19c7b54a719cd1a1bff5d213de", "IPY_MODEL_40036a6b847248cf9433acad881150eb" ], "layout": "IPY_MODEL_60f83370a6c74ec49a49fcf703731fa4" } }, "cef94659582147ed88583fce05cc7277": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2ea8307c4cf947cfa3e718b827395fbf", "placeholder": "​", "style": "IPY_MODEL_7d1c496b80604a17bc9c7c2f096f6f26", "value": "tokenizer.json: 100%" } }, "cfedeabd0a774d3a84474567f7c59d64": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d0192c39439843498c64f3c02d5570af": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d0b6a93986ed4f029a850275c214736c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d12fbc8be24b4b7facfa1f66f17a84a1": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d15d09d83c4045db977f37d9d66286b3": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d1edb69e48144f569d545d955ee3e408": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d1fe442bb4c146ce8aab6181dbb56a11": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d31b23089372430d83b25718b9577e9a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d3270f01bb4847d882e2d21eb710a774": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6564e9cb1f424eb786412dd1cd6969ea", "placeholder": "​", "style": "IPY_MODEL_73511fb39a1a443c8d5f25a0d51f7885", "value": " 4/4 [00:36<00:00,  1.37it/s]" } }, "d48e82d203a64fdc9526d936e7de08ae": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_661967f2855444a79914277b9bc72224", "placeholder": "​", "style": "IPY_MODEL_d59805de25c040a2839ca9aa680cd9fe", "value": "100%" } }, "d537fce01d9c4e089c9d1601ef9f1e11": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ButtonStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ButtonStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "button_color": null, "font_weight": "" } }, "d59805de25c040a2839ca9aa680cd9fe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "d5a938759f5e4239801d8d7f18fc3768": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "LabelModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "LabelModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "LabelView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_460ad6078679497a8e2cce014c159185", "placeholder": "​", "style": "IPY_MODEL_c43c5a3a85094dda98e85c4504acabe5", "value": "Login successful" } }, "d67bf87e086c43c49c3802f6ce207755": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_73d06e10081a4266bc7a185fcf7b62b1", "placeholder": "​", "style": "IPY_MODEL_b99b3e10df0f4c55a3fb4778cd01b670", "value": "100%" } }, "d687cc854f7a47f389011a4547f8c5bb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_cef94659582147ed88583fce05cc7277", "IPY_MODEL_3b38fdd13b5c49099730f6f5b19b2485", "IPY_MODEL_954d6d059c1542bfb5f6ab741a701112" ], "layout": "IPY_MODEL_b7710d529a1e4842aead7cc10d5e01b6" } }, "d7c460e46ca143119ffc99255f462842": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d8c93be7312140d7925e16cc3a5cd847": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "de459476c12c49da807a22096bfbd9d4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "dffc9432d0ae4b2884d16e040a67cee2": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e170be87fe0847cc8536ead2180a1f46": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e1767f173e3e4c9faaec5bc537e10707": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "e39886e2a6604637a9668bcbd5128058": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e4a0623c31af40d299fa7e76e1d8c264": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e506e728a9724ce8a05b4bcf67257a53": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e539ff7310e742e3beea08248567dd6c": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e5de2d103b664ea19d27ed150286abaa": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e5ee4c4f091e411d80a387b25ad5b21d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e82dfb585fb64b6cb51788dca507027f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e944b33198b54a5caef36d829c1bfcb2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e95bb5040a58437590ec9d0fa93e25e7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2de53b567c8645e7a65af7d694eadfb4", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_4bcf0db555aa41eca57f5d1b4b08e9b4", "value": 1 } }, "e9da3ec978f24cfd984e8805f86bc787": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4f9e11854d494268bd70846cff344f2e", "placeholder": "​", "style": "IPY_MODEL_9c1512dad8ae45558f4381b0fd6fb271", "value": "100%" } }, "ee067e0280f84a828f8143899ea68083": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ee17d924ee6e41faaa7059e9c4367d0a": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f0d837b662dd4e8995e7f9d77405f482": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f140b958503f413a9637afd713ec7012": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f28ce1633cbf475f811190db490cbdfe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f5ac7b532c3249bbafeaa05957c5bae3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "f5f57d26582d4c1bb7506b9e996eb688": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_78b47745cca347aa974f3230979ed78b", "max": 1, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_7326d13c2bd04ef9a49295ee09db8406", "value": 1 } }, "f64b6e4918ec426daa83165f0a5557a8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f6a16f94db9b4759a64ee1e550cba8b7": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f6bad5d1677943be9be6af53fa55d951": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "f7f7c7cfb09f465c9aa91e5f00f2e02e": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f812255335e34e5ebab2e96a1df3ce4b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "f9dcba08d73c485ca43e6e896c27cb8b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "fa4c4ebbec514b3588465fd10d52a569": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_52d1faecb95e4b8bb367830d41e05c6e", "placeholder": "​", "style": "IPY_MODEL_a0f996da40264082aac266b0c19bd3bf", "value": "100%" } }, "fbdf6b50de9d4281b5ba5f563c0527f6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_fde9087a6a374ea39ec5f017f75511a9", "placeholder": "​", "style": "IPY_MODEL_d1edb69e48144f569d545d955ee3e408", "value": " 4/4 [16:07<00:00,  1.26it/s]" } }, "fc11bffcf22a49429a16b4497d1d7456": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fde9087a6a374ea39ec5f017f75511a9": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fdfadeccb77a4daca2c9b87824d8b21c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_10ac6259b2e8475bbdff4b7d119a91ed", "IPY_MODEL_b09dfbf69131434084699e6c88b4d9b9", "IPY_MODEL_4b9578f0d34a4ee4bdd02380d83c0c54" ], "layout": "IPY_MODEL_e170be87fe0847cc8536ead2180a1f46" } }, "ff8824c006844551a7cf2c16913c12a4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_59c43764df3b4614a7a6e42a60a628e1", "placeholder": "​", "style": "IPY_MODEL_b6f4d1137057400e9f442ebb49bbb7b0", "value": " 1.48k/1.48k [00:00<00:00, 103kB/s]" } } } } }, "nbformat": 4, "nbformat_minor": 5 } ================================================ FILE: notebooks/text_corruption_demo.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "id": "c67270e8", "metadata": {}, "source": [ "# Imports" ] }, { "cell_type": "code", "id": "26a109a0", "metadata": { "ExecuteTime": { "end_time": "2024-09-22T11:52:11.021714Z", "start_time": "2024-09-22T11:52:11.008951Z" } }, "source": "! git clone https://github.com/ai-forever/sage.git", "outputs": [], "execution_count": 1 }, { "cell_type": "code", "id": "75b86748", "metadata": { "ExecuteTime": { "end_time": "2024-09-22T11:52:11.494052Z", "start_time": "2024-09-22T11:52:11.487591Z" } }, "source": "cd sage", "outputs": [], "execution_count": 2 }, { "cell_type": "code", "id": "8d53934a", "metadata": { "ExecuteTime": { "end_time": "2024-09-22T11:52:12.113114Z", "start_time": "2024-09-22T11:52:12.107511Z" } }, "source": [ "# change to pip install -e \".[errant]\" in case of zsh\n", "\n", "! pip install .\n", "! pip install -e .[errant]" ], "outputs": [], "execution_count": 3 }, { "cell_type": "code", "id": "f534423f", "metadata": { "ExecuteTime": { "end_time": "2024-09-22T11:52:15.952632Z", "start_time": "2024-09-22T11:52:13.021748Z" } }, "source": [ "import os\n", "import sage" ], "outputs": [], "execution_count": 4 }, { "cell_type": "markdown", "id": "f94cedd5", "metadata": {}, "source": [ "# Statistic-based spelling corruption" ] }, { "cell_type": "markdown", "id": "fb5e79cf", "metadata": {}, "source": [ "As a name suggests, Statistic-bases spelling corruption (SBSC) automatically\n", "insert errors in correct sentences based on some available statistics. \n", "\n", "In the case of SBSC, statistics are gathered from annotated parallel corpus that\n", "consists of correct texts and their spoiled counterparts. SBSC scans through pairs\n", "of texts, detects typos and errors and their corresponding positions, aggregates in \n", "appropriate discrete distributions and then sample from them to purposefully violate\n", "spelling when applied on correct sentences. \n", "\n", "More on this in our paper https://www.dialog-21.ru/media/5914/martynovnplusetal056.pdf\n", "\n", "As stated in the description, SBSC needs labeled parallel corpus, so it can\n", "reproduce analogous errors on new data. SBSC accepts either datasets available on \n", "HF hub, or stored locally in single file (`data.csv`) or in separate files (`sources.txt` and\n", "`corrections.txt`). \n", "\n", "API of SBSC is as flexible as one can imagine. Basically you instantiate \n", "object of `SBSCCorruptor` with `SBSCConfig`. `SBSCConfig` can be initialized from available dataset (HF hub or local), pre-obtained statistics or from combination of both. " ] }, { "cell_type": "code", "id": "cd2a35c0", "metadata": { "ExecuteTime": { "end_time": "2024-09-22T11:52:23.693216Z", "start_time": "2024-09-22T11:52:23.557723Z" } }, "source": [ "from sage.spelling_corruption import SBSCConfig, SBSCCorruptor\n", "from sage.utils import DatasetsAvailable, load_available_dataset_from_hf, draw_and_save_errors_distributions_comparison_charts\n", "from sage.spelling_corruption.sbsc.labeler import process_mistypings" ], "outputs": [], "execution_count": 5 }, { "cell_type": "markdown", "id": "99a6b15a", "metadata": {}, "source": [ "## From HF dataset" ] }, { "cell_type": "markdown", "id": "68b4001a", "metadata": {}, "source": [ "Easy as it sounds:\n", "\n", "1. Choose available dataset at https://huggingface.co/datasets/ai-forever/spellcheck_benchmark;\n", "2. Instantiate `SBSCConfig` with selected dataset name;\n", "3. `SBSCCorruptor` automatically loads dataset and gathers statistics from it;\n", "4. Now you can use `SBSCCorruptor` to insert errors in correct texts!" ] }, { "cell_type": "code", "id": "1fd8f43f", "metadata": { "ExecuteTime": { "end_time": "2024-09-22T11:52:54.232039Z", "start_time": "2024-09-22T11:52:28.589969Z" } }, "source": [ "# `SBSCConfig` defaults to RUSpellRU dataset from HF hub\n", "\n", "corruptor = SBSCCorruptor.from_default_config()" ], "outputs": [ { "data": { "text/plain": [ " 0%| | 0/2000 [00:00" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Lets see how good SBSC is\n", "\n", "draw_and_save_errors_distributions_comparison_charts(\n", " actual_typos_cnt = sbsc_typos_cnt,\n", " reference_typos_cnt=ruspellru_typos_cnt,\n", " actual_stats=sbsc_stats,\n", " reference_stats=ruspellru_stats,\n", " path_to_save=\"ruspellru_sbsc.jpg\"\n", ")" ] }, { "cell_type": "markdown", "id": "b6708d76", "metadata": {}, "source": [ "## From local dataset" ] }, { "cell_type": "markdown", "id": "235d4574", "metadata": {}, "source": [ "You do the same steps as above, but you provide locally stored dataset instead. \n", "\n", "A few reminders on how to store your dataset:\n", "\n", "1. It is either two files `sources.txt` and `corrections.txt` in one folder, or one file `data.csv` with `source` and `correction` fields;\n", "2. Check that `sources.txt` and `corrections.txt` account for the same number of lines;\n", "3. Check that `data.csv` does not have any nans or empty lines;\n", "4. Past only path to folder, where your dataset is located, `SBSCCorruptor` automatically finds appropriate dataset;" ] }, { "cell_type": "markdown", "id": "a4c61d38", "metadata": {}, "source": [ "Currently, SAGE can operate over the Russian and English languages. We plan to grow our SAGE (:-)) and expand the range of available languages. Do not forget to put appropriate language code when working with custom config." ] }, { "cell_type": "code", "execution_count": 11, "id": "f96ac095", "metadata": {}, "outputs": [], "source": [ "from sage import AVAILABLE_LANG_CODES" ] }, { "cell_type": "code", "execution_count": 12, "id": "b8977ca9", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['rus', 'eng']" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "AVAILABLE_LANG_CODES" ] }, { "cell_type": "code", "execution_count": 13, "id": "cea3b386", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2eba36549e124e218316e3fbf406261c", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/2001 [00:00" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Lets see how good SBSC is\n", "\n", "draw_and_save_errors_distributions_comparison_charts(\n", " actual_typos_cnt = sbsc_typos_cnt,\n", " reference_typos_cnt=ruspellru_typos_cnt,\n", " actual_stats=sbsc_stats,\n", " reference_stats=ruspellru_stats,\n", " path_to_save=\"ruspellru_sbsc.jpg\"\n", ")" ] }, { "cell_type": "markdown", "id": "53d10035", "metadata": {}, "source": [ "## From obtained statistics" ] }, { "cell_type": "markdown", "id": "4108767f", "metadata": {}, "source": [ "Algorithm is trivial as well:\n", "\n", "1. Load dataset from https://huggingface.co/datasets/ai-forever/spellcheck_benchmark or provide your own locally;\n", "2. Use `process_mistypings` to obtain statistics;\n", "3. Instantiate `SBSCConfig` with acquired statistics and initialize `SBSCCorruptor`;\n", "4. Now you can use SBSCCorruptor to insert errors in correct texts!" ] }, { "cell_type": "code", "execution_count": 17, "id": "2038bb94", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:21:59.531911Z" } }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2c385cd536ec42a280e562ed4f0445a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/2000 [00:00" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Lets see how good SBSC is\n", "\n", "draw_and_save_errors_distributions_comparison_charts(\n", " actual_typos_cnt = sbsc_typos_cnt,\n", " reference_typos_cnt=reference_typos_cnt,\n", " actual_stats=sbsc_stats,\n", " reference_stats=reference_stats,\n", " path_to_save=\"ruspellru_sbsc.jpg\"\n", ")" ] }, { "cell_type": "markdown", "id": "9bfc9f39", "metadata": {}, "source": [ "## From both" ] }, { "cell_type": "markdown", "id": "cf4ce7bb", "metadata": {}, "source": [ "Imagine you want to build your own errors statistics from existing blocks, but with a little bit of twist.\n", "\n", "For example, you want another distribution of number of errors per sentence, or another substitution in confusion matrix. You can do it in `SBSCCorruptor`." ] }, { "cell_type": "markdown", "id": "2d44fabe", "metadata": {}, "source": [ "Lets say we want the same statistics from RUSpellRU, but with more errors per sentence." ] }, { "cell_type": "code", "execution_count": 22, "id": "24257848", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.945850Z" } }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94a5312ade05490187a6be290483434c", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/2000 [00:00" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Lets see how good SBSC is\n", "\n", "draw_and_save_errors_distributions_comparison_charts(\n", " actual_typos_cnt = sbsc_typos_cnt,\n", " reference_typos_cnt=ruspellru_typos_cnt,\n", " actual_stats=sbsc_stats,\n", " reference_stats=ruspellru_stats,\n", " path_to_save=\"ruspellru_sbsc.jpg\"\n", ")" ] }, { "cell_type": "markdown", "id": "e7c25a8a", "metadata": {}, "source": [ "We increased number of errors, but other distributions are almost the same." ] }, { "cell_type": "markdown", "id": "1d2627fb", "metadata": {}, "source": [ "## For English " ] }, { "cell_type": "code", "execution_count": 26, "id": "c9d50794", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8f8dd79afdd24ee0b243d5de4dbdaa68", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/1601 [00:00" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Lets see how good SBSC is\n", "\n", "draw_and_save_errors_distributions_comparison_charts(\n", " actual_typos_cnt = sbsc_typos_cnt,\n", " reference_typos_cnt=jfleg_typos_cnt,\n", " actual_stats=sbsc_stats,\n", " reference_stats=jfleg_stats,\n", " path_to_save=\"jfleg_sbsc.jpg\"\n", ")" ] }, { "cell_type": "markdown", "id": "353eec17", "metadata": {}, "source": [ "# Augmentex" ] }, { "cell_type": "markdown", "id": "dfc58a4b", "metadata": {}, "source": [ "Credit for this section goes to @Mark Baushenko and @Alexander Abramov" ] }, { "cell_type": "markdown", "id": "d1108f14", "metadata": {}, "source": [ "Augmentex operates over most popular mistypings and common spelling errors gathered from open statistics as well as rule-based approaches and various heuristics. \n", "\n", "It offers two levels of granuality when working with text corruption:\n", "\n", "1. Character level:\n", "\n", " a. shift - randomly swaps upper / lower case in a string;\n", " \n", " b. orfo - substitute correct characters with their common incorrect counterparts;\n", " \n", " c. typo - substitute correct characters as if they are mistyped on a keyboard;\n", " \n", " d. delete - delete random character;\n", " \n", " e. multiply - multiply random character;\n", " \n", " f. swap - swap two adjacent characters;\n", " \n", " g. insert - insert random character;\n", " \n", " \n", "2. Word level:\n", " \n", " a. replace - replace a random word in its incorrect counterpart;\n", " \n", " b. delete - delete random word;\n", " \n", " c. swap - swap two random words;\n", " \n", " d. stopword - add random words from stop-list;\n", " \n", " e. reverse - change a case of the first letter of a random word;\n", " \n", "\n", "More about Augmentex in our paper https://www.dialog-21.ru/media/5914/martynovnplusetal056.pdf" ] }, { "cell_type": "code", "execution_count": 31, "id": "f0cba4f2", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [], "source": [ "from sage.spelling_corruption import CharAugConfig, CharAugCorruptor, WordAugConfig, WordAugCorruptor" ] }, { "cell_type": "code", "execution_count": 32, "id": "5ec4ecdd", "metadata": { "ExecuteTime": { "end_time": "2024-06-27T14:22:35.999396Z", "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [], "source": [ "text = \"Привет, как дела?\"" ] }, { "cell_type": "markdown", "id": "2cd67a80", "metadata": {}, "source": [ "## Character level" ] }, { "cell_type": "code", "execution_count": 33, "id": "ffda0d9e", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [], "source": [ "# Instantiate\n", "\n", "config = CharAugConfig(\n", " unit_prob=0.3, # proportion of characters that is going to undergo edits\n", " min_aug=1, # minimum number of edits\n", " max_aug=5, # maximum number of edits \n", " mult_num=3 # `multiply` edit\n", ")\n", "corruptor = CharAugCorruptor.from_config(config)" ] }, { "cell_type": "code", "execution_count": 34, "id": "b16b626f", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Пнривыеут, как ждела?с'" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Random edit\n", "\n", "corruptor.corrupt(text)" ] }, { "cell_type": "code", "execution_count": 35, "id": "a0415a5b", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'ПРивЕт, каК дела?'" ] }, "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Shift\n", "\n", "corruptor.corrupt(text, action=\"shift\")" ] }, { "cell_type": "code", "execution_count": 36, "id": "76ed19cc", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Пёевет, как дида?'" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Orfo\n", "\n", "corruptor.corrupt(text, action=\"orfo\")" ] }, { "cell_type": "code", "execution_count": 37, "id": "4551c20d", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Привет, евк дела?'" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Typo\n", "\n", "corruptor.corrupt(text, action=\"typo\")" ] }, { "cell_type": "code", "execution_count": 38, "id": "0d7d9b8e", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Приеткк дла?'" ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Delete\n", "\n", "corruptor.corrupt(text, action=\"delete\")" ] }, { "cell_type": "code", "execution_count": 39, "id": "bf85c74d", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'ППриивет, как дделла?'" ] }, "execution_count": 39, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Multiply\n", "\n", "corruptor.corrupt(text, action=\"multiply\")" ] }, { "cell_type": "code", "execution_count": 40, "id": "b1e36978", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Пиервт, кка едла?'" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Swap\n", "\n", "corruptor.corrupt(text, action=\"swap\")" ] }, { "cell_type": "code", "execution_count": 41, "id": "854707c2", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Пряивует,к какб делфа?'" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Insert\n", "\n", "corruptor.corrupt(text, action=\"insert\")" ] }, { "cell_type": "code", "execution_count": 42, "id": "c7af5d04", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "['Привете, гкпакб дмела?',\n", " 'Привет, как дела?',\n", " 'Привет, как дела?',\n", " 'Привет, как дела?',\n", " 'Прчигвзет, какм дшела?',\n", " 'Прнивщет,о как делча?ъ',\n", " 'Пржитвёет, кабк деъла?',\n", " 'Привет, как дела?',\n", " 'Привет, как дела?',\n", " 'Привзет, кавк ёделар?у']" ] }, "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Edits over batch of samples. `batch_prob` represents the proportion of samples in batch\n", "# that is going to undergo edits.\n", "\n", "text_list = [text] * 10\n", "corruptor.batch_corrupt(text_list, action=\"insert\", batch_prob=0.5)" ] }, { "cell_type": "markdown", "id": "33ef1330", "metadata": {}, "source": [ "## Word level" ] }, { "cell_type": "code", "execution_count": 43, "id": "c8adff74", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [], "source": [ "# Instantiate\n", "\n", "config = WordAugConfig(\n", " unit_prob=0.4, # proportion of characters that is going to undergo edits\n", " min_aug=1, # minimum number of edits\n", " max_aug=5, # maximum number of edits \n", ")\n", "corruptor = WordAugCorruptor.from_config(config)" ] }, { "cell_type": "code", "execution_count": 44, "id": "230b94ea", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'Привет, как д е л а ?'" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Random action\n", "\n", "corruptor.corrupt(text)" ] }, { "cell_type": "code", "execution_count": 45, "id": "e5377f86", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'пркет, как дела?'" ] }, "execution_count": 45, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Replace\n", "\n", "corruptor.corrupt(text, action=\"replace\")" ] }, { "cell_type": "code", "execution_count": 46, "id": "487e88d7", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'как дела?'" ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Delete\n", "\n", "corruptor.corrupt(text, action=\"delete\")" ] }, { "cell_type": "code", "execution_count": 47, "id": "626eadd9", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.951678Z" } }, "outputs": [ { "data": { "text/plain": [ "'дела? как Привет,'" ] }, "execution_count": 47, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Swap \n", "\n", "corruptor.corrupt(text, action=\"swap\")" ] }, { "cell_type": "code", "execution_count": 48, "id": "e6440c85", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.967326Z" } }, "outputs": [ { "data": { "text/plain": [ "'Привет, скажем как дела?'" ] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Stopword \n", "\n", "corruptor.corrupt(text, action=\"stopword\")" ] }, { "cell_type": "code", "execution_count": 49, "id": "9bb3ab00", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.967326Z" } }, "outputs": [ { "data": { "text/plain": [ "'привет, как дела?'" ] }, "execution_count": 49, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Reverse \n", "\n", "corruptor.corrupt(text, action=\"reverse\")" ] }, { "cell_type": "code", "execution_count": 50, "id": "a7ed3de7", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.967326Z" } }, "outputs": [ { "data": { "text/plain": [ "['Привет, как дела?',\n", " 'Привет, как но дела?',\n", " 'нет Привет, как дела?',\n", " 'Привет, как кароч дела?',\n", " 'Привет, как дела?',\n", " 'Привет, как-то как дела?',\n", " 'тоже Привет, как дела?',\n", " 'Привет, как дела?',\n", " 'Привет, как дела?',\n", " 'Привет, как дела?']" ] }, "execution_count": 50, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Edits over batch of samples. `batch_prob` represents the proportion of samples in batch\n", "# that is going to undergo edits.\n", "\n", "text_list = [text] * 10\n", "corruptor.batch_corrupt(text_list, action=\"stopword\", batch_prob=0.5)" ] }, { "cell_type": "code", "execution_count": null, "id": "1f66146c", "metadata": { "ExecuteTime": { "start_time": "2024-06-27T14:22:35.967326Z" } }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" } }, "nbformat": 4, "nbformat_minor": 5 } ================================================ FILE: sage/__init__.py ================================================ __version__ = "1.1.0" __author__ = "Nikita Martynov, Mark Baushenko, Alexandr Abramov and Alena Fenogenova" __email__ = "nikita.martynov.98@list.ru" from .utils.lang_utils import AVAILABLE_LANG_CODES __all__ = [ "AVAILABLE_LANG_CODES", ] ================================================ FILE: sage/evaluation/__init__.py ================================================ from .scorer import Scorer __all__ = [ "Scorer" ] ================================================ FILE: sage/evaluation/readme.md ================================================ ### Evaluation in SAGE #### RuERRANT RuERRANT is an adaptation of the ERRANT metric ([repo](https://github.com/chrisjbryant/errant), [paper-2016](https://aclanthology.org/C16-1079.pdf), [paper-2017](https://aclanthology.org/P17-1074.pdf)) to the Russian language. The adaptation was primarily done in https://github.com/Askinkaty/errant and further developed within SAGE. The changes to the original ERRANT implementation for English are the following: 1. Basic parsing model changed to Spacy's `ru_core_news_lg`. 1. Included a dictionary of Russian words (main forms). 1. Introduced detection of error correction types specific for Russian (degrees of adjectives, verb aspect). 1. [our contribution] Introduced a simplified error correction typology: - `CASE`: spelling corrections including only character case change; - `PUNCT`: punctuation corrections; - `YO`: spelling corrections regarding "е"/"ё" substitutions; - `SPELL`: all other word-level spelling corrections. 1. [our contribution] Introduced detection of multiple error correction types per word, e.g. "федор" -> "Фёдор" contains both CASE and YO corrections. 1. [our contribution] Introduced detection of inner word punctuation corrections which covers joint ("AB") vs. hyphen ("A-B") vs. space ("A B") word spelling. Corrections of this type are attributed to the `SPELL` category. #### Scoring To score model's corrections against gold corrections, use a Scorer instance: ```python from sage.evaluation.scorer import Scorer s = Scorer() s.score( ["спел Кейс ее .", "спел Кейс ее ."], ["спелл кейс её !", "спелл кейс её !"], ["спел кейс её .", "спелл Кейс ее !"], metrics=["errant"] ) >>> {'CASE_Precision': 100.0, 'CASE_Recall': 50.0, 'CASE_F1': 66.67, 'YO_Precision': 100.0, 'YO_Recall': 50.0, 'YO_F1': 66.67, 'SPELL_Precision': 100.0, 'SPELL_Recall': 50.0, 'SPELL_F1': 66.67, 'PUNCT_Precision': 100.0, 'PUNCT_Recall': 50.0, 'PUNCT_F1': 66.67} ``` ================================================ FILE: sage/evaluation/ruerrant_wrapper/__init__.py ================================================ ================================================ FILE: sage/evaluation/ruerrant_wrapper/classifier.py ================================================ from __future__ import annotations from collections import defaultdict from string import punctuation import Levenshtein from errant.edit import Edit def edit_to_tuple(edit: Edit, idx: int = 0) -> tuple[int, int, str, str, int]: cor_toks_str = " ".join([tok.text for tok in edit.c_toks]) return [edit.o_start, edit.o_end, edit.type, cor_toks_str, idx] def classify(edit: Edit) -> list[Edit]: """Classifies an Edit via updating its `type` attribute.""" # Insertion and deletion if ((not edit.o_toks and edit.c_toks) or (edit.o_toks and not edit.c_toks)): error_cats = get_one_sided_type(edit.o_toks, edit.c_toks) elif edit.o_toks != edit.c_toks: error_cats = get_two_sided_type(edit.o_toks, edit.c_toks) else: error_cats = {"NA": edit.c_toks[0].text} new_edit_list = [] if error_cats: for error_cat, correct_str in error_cats.items(): edit.type = error_cat edit_tuple = edit_to_tuple(edit) edit_tuple[3] = correct_str new_edit_list.append(edit_tuple) return new_edit_list def get_edit_info(toks): pos = [] dep = [] morph = dict() for tok in toks: pos.append(tok.tag_) dep.append(tok.dep_) morphs = str(tok.morph).split('|') for m in morphs: if len(m.strip()): k, v = m.strip().split('=') morph[k] = v return pos, dep, morph def get_one_sided_type(o_toks, c_toks): """Classifies a zero-to-one or one-to-zero error based on a token list.""" pos_list, _, _ = get_edit_info(o_toks if o_toks else c_toks) if "PUNCT" in pos_list or "SPACE" in pos_list: return {"PUNCT": c_toks[0].text if c_toks else ""} return {"SPELL": c_toks[0].text if c_toks else ""} def get_two_sided_type(o_toks, c_toks) -> dict[str, str]: """Classifies a one-to-one or one-to-many or many-to-one error based on token lists.""" # one-to-one cases if len(o_toks) == len(c_toks) == 1: if ( all(char in punctuation + " " for char in o_toks[0].text) and all(char in punctuation + " " for char in c_toks[0].text) ): return {"PUNCT": c_toks[0].text} source_w, correct_w = o_toks[0].text, c_toks[0].text if source_w != correct_w: # if both string are lowercase or both are uppercase, # and there is no "ё" in both, then it may be only "SPELL" error type if (((source_w.islower() and correct_w.islower()) or (source_w.isupper() and correct_w.isupper())) and "ё" not in source_w + correct_w): return {"SPELL": correct_w} # edits with multiple errors (e.g. SPELL + CASE) # Step 1. Make char-level Levenstein table char_edits = Levenshtein.editops(source_w, correct_w) # Step 2. Classify operations (CASE, YO, SPELL) edits_classified = classify_char_edits(char_edits, source_w, correct_w) # Step 3. Combine the same-typed errors into minimal string pairs separated_edits = get_edit_strings(source_w, correct_w, edits_classified) return separated_edits # one-to-many and many-to-one cases if all(char in punctuation + " " for char in o_toks.text + c_toks.text): return {"PUNCT": c_toks.text} joint_corr_str = " ".join([tok.text for tok in c_toks]) joint_corr_str = joint_corr_str.replace("- ", "-").replace(" -", "-") return {"SPELL": joint_corr_str} def classify_char_edits(char_edits, source_w, correct_w): """Classifies char-level Levenstein operations into SPELL, YO and CASE.""" edits_classified = [] for edit in char_edits: if edit[0] == "replace": if "ё" in [source_w[edit[1]], correct_w[edit[2]]]: edits_classified.append((*edit, "YO")) elif source_w[edit[1]].lower() == correct_w[edit[2]].lower(): edits_classified.append((*edit, "CASE")) else: if ( (source_w[edit[1]].islower() and correct_w[edit[2]].isupper()) or (source_w[edit[1]].isupper() and correct_w[edit[2]].islower()) ): edits_classified.append((*edit, "CASE")) edits_classified.append((*edit, "SPELL")) else: edits_classified.append((*edit, "SPELL")) return edits_classified def get_edit_strings(source: str, correction: str, edits_classified: list[tuple]) -> dict[str, str]: """ Applies classified (SPELL, YO and CASE) char operations to source word separately. Returns a dict mapping error type to source string with corrections of this type only. """ separated_edits = defaultdict(lambda: source) shift = 0 # char position shift to consider on deletions and insertions for edit in edits_classified: edit_type = edit[3] curr_src = separated_edits[edit_type] if edit_type == "CASE": # SOURCE letter spelled in CORRECTION case if correction[edit[2]].isupper(): correction_char = source[edit[1]].upper() else: correction_char = source[edit[1]].lower() else: if edit[0] == "delete": correction_char = "" elif edit[0] == "insert": correction_char = correction[edit[2]] elif source[edit[1]].isupper(): correction_char = correction[edit[2]].upper() else: correction_char = correction[edit[2]].lower() if edit[0] == "replace": separated_edits[edit_type] = curr_src[:edit[1] + shift] + correction_char + \ curr_src[edit[1]+shift + 1:] elif edit[0] == "delete": separated_edits[edit_type] = curr_src[:edit[1] + shift] + \ curr_src[edit[1]+shift + 1:] shift -= 1 elif edit[0] == "insert": separated_edits[edit_type] = curr_src[:edit[1] + shift] + correction_char + \ curr_src[edit[1]+shift:] shift += 1 return dict(separated_edits) ================================================ FILE: sage/evaluation/ruerrant_wrapper/merger.py ================================================ from __future__ import annotations import itertools import re from string import punctuation import Levenshtein from errant.alignment import Alignment from errant.edit import Edit def get_rule_edits(alignment: Alignment) -> list[Edit]: """Groups word-level alignment according to merging rules.""" edits = [] # Split alignment into groups alignment_groups = group_alignment(alignment, "new") for op, group in alignment_groups: group = list(group) # Ignore M if op == "M": continue # T is always split if op == "T": for seq in group: edits.append(Edit(alignment.orig, alignment.cor, seq[1:])) # Process D, I and S subsequence else: processed = process_seq(group, alignment) # Turn the processed sequence into edits for seq in processed: edits.append(Edit(alignment.orig, alignment.cor, seq[1:])) return edits def group_alignment(alignment: Alignment, mode: str = "default") -> list[tuple[str, list[tuple]]]: """ Does initial alignment grouping: 1. Make groups of MDM, MIM od MSM. 2. In remaining operations, make groups of Ms, groups of Ts, and D/I/Ss. Do not group what was on the sides of M[DIS]M: SSMDMS -> [SS, MDM, S], not [MDM, SSS]. 3. Sort groups by the order in which they appear in the alignment. """ if mode == "new": op_groups = [] # Format operation types sequence as string to use regex sequence search all_ops_seq = "".join([op[0][0] for op in alignment.align_seq]) # Find M[DIS]M groups and merge (need them to detect hyphen vs. space spelling) ungrouped_ids = list(range(len(alignment.align_seq))) for match in re.finditer("M[DIS]M", all_ops_seq): start, end = match.start(), match.end() op_groups.append(("MSM", alignment.align_seq[start:end])) for idx in range(start, end): ungrouped_ids.remove(idx) # Group remaining operations by default rules (groups of M, T and rest) if ungrouped_ids: def get_group_type(operation): return operation if operation in {"M", "T"} else "DIS" curr_group = [alignment.align_seq[ungrouped_ids[0]]] last_oper_type = get_group_type(curr_group[0][0][0]) for i, idx in enumerate(ungrouped_ids[1:], start=1): operation = alignment.align_seq[idx] oper_type = get_group_type(operation[0][0]) if (oper_type == last_oper_type and (idx - ungrouped_ids[i-1] == 1 or oper_type in {"M", "T"})): curr_group.append(operation) else: op_groups.append((last_oper_type, curr_group)) curr_group = [operation] last_oper_type = oper_type if curr_group: op_groups.append((last_oper_type, curr_group)) # Sort groups by the start id of the first group entry op_groups = sorted(op_groups, key=lambda x: x[1][0][1]) else: grouped = itertools.groupby(alignment.align_seq, lambda x: x[0][0] if x[0][0] in {"M", "T"} else False) op_groups = [(op, list(group)) for op, group in grouped] return op_groups def process_seq(seq: list[tuple], alignment: Alignment) -> list[tuple]: """Applies merging rules to previously formed alignment groups (`seq`).""" # Return single alignments if len(seq) <= 1: return seq # Get the ops for the whole sequence ops = [op[0] for op in seq] # Get indices of all start-end combinations in the seq: 012 = 01, 02, 12 combos = list(itertools.combinations(range(0, len(seq)), 2)) # Sort them starting with largest spans first combos.sort(key=lambda x: x[1] - x[0], reverse=True) # Loop through combos for start, end in combos: # Ignore ranges that do NOT contain a substitution, deletion or insertion. if not any(type_ in ops[start:end + 1] for type_ in ["D", "I", "S"]): continue # Merge all D xor I ops. (95% of human multi-token edits contain S). if set(ops[start:end + 1]) == {"D"} or set(ops[start:end + 1]) == {"I"}: return (process_seq(seq[:start], alignment) + merge_edits(seq[start:end + 1]) + process_seq(seq[end + 1:], alignment)) # Get the tokens in orig and cor. o = alignment.orig[seq[start][1]:seq[end][2]] c = alignment.cor[seq[start][3]:seq[end][4]] if ops[start:end + 1] in [["M", "D", "M"], ["M", "I", "M"], ["M", "S", "M"]]: # merge hyphens if (o[start + 1].text == "-" or c[start + 1].text == "-") and len(o) != len(c): return (process_seq(seq[:start], alignment) + merge_edits(seq[start:end + 1]) + process_seq(seq[end + 1:], alignment)) # if it is not a hyphen-space edit, return only punct edit return seq[start + 1: end] # Merge possessive suffixes: [friends -> friend 's] if o[-1].tag_ == "POS" or c[-1].tag_ == "POS": return (process_seq(seq[:end - 1], alignment) + merge_edits(seq[end - 1:end + 1]) + process_seq(seq[end + 1:], alignment)) # Case changes if o[-1].lower == c[-1].lower: # Merge first token I or D: [Cat -> The big cat] if (start == 0 and (len(o) == 1 and c[0].text[0].isupper()) or (len(c) == 1 and o[0].text[0].isupper())): return (merge_edits(seq[start:end + 1]) + process_seq(seq[end + 1:], alignment)) # Merge with previous punctuation: [, we -> . We], [we -> . We] if (len(o) > 1 and is_punct(o[-2])) or \ (len(c) > 1 and is_punct(c[-2])): return (process_seq(seq[:end - 1], alignment) + merge_edits(seq[end - 1:end + 1]) + process_seq(seq[end + 1:], alignment)) # Merge whitespace/hyphens: [acat -> a cat], [sub - way -> subway] s_str = re.sub("['-]", "", "".join([tok.lower_ for tok in o])) t_str = re.sub("['-]", "", "".join([tok.lower_ for tok in c])) if s_str == t_str or s_str.replace(" ", "") == t_str.replace(" ", ""): return (process_seq(seq[:start], alignment) + merge_edits(seq[start:end + 1]) + process_seq(seq[end + 1:], alignment)) # Merge same POS or auxiliary/infinitive/phrasal verbs: # [to eat -> eating], [watch -> look at] pos_set = set([tok.pos for tok in o] + [tok.pos for tok in c]) if len(o) != len(c) and (len(pos_set) == 1 or pos_set.issubset({"AUX", "PART", "VERB"})): return (process_seq(seq[:start], alignment) + merge_edits(seq[start:end + 1]) + process_seq(seq[end + 1:], alignment)) # Split rules take effect when we get to smallest chunks if end - start < 2: # Split adjacent substitutions if len(o) == len(c) == 2: return (process_seq(seq[:start + 1], alignment) + process_seq(seq[start + 1:], alignment)) # Split similar substitutions at sequence boundaries if ((ops[start] == "S" and char_cost(o[0].text, c[0].text) > 0.75) or (ops[end] == "S" and char_cost(o[-1].text, c[-1].text) > 0.75)): return (process_seq(seq[:start + 1], alignment) + process_seq(seq[start + 1:], alignment)) # Split final determiners if (end == len(seq) - 1 and ((ops[-1] in {"D", "S"} and o[-1].pos == "DET") or (ops[-1] in {"I", "S"} and c[-1].pos == "DET"))): return process_seq(seq[:-1], alignment) + [seq[-1]] return seq def is_punct(token) -> bool: return token.text in punctuation def char_cost(a: str, b: str) -> float: """Calculate the cost of character alignment; i.e. char similarity.""" return Levenshtein.ratio(a, b) def merge_edits(seq: list[tuple]) -> list[tuple]: """Merge the input alignment sequence to a single edit span.""" if seq: return [("X", seq[0][1], seq[-1][2], seq[0][3], seq[-1][4])] return seq ================================================ FILE: sage/evaluation/ruerrant_wrapper/scorer.py ================================================ """A wrapper over the 'errant' library fork from https://github.com/Askinkaty/errant/. This implemetation brings some changes over the fork (which provided initial adaptation of the ERRANT metric for the Russian language). The changes deal with token merging and error classification and are described in detail in the readme. """ from __future__ import annotations import re from collections import Counter, namedtuple from typing import Iterable from tqdm.auto import tqdm from errant.annotator import Annotator from errant.commands.compare_m2 import process_edits from errant.commands.compare_m2 import evaluate_edits from errant.commands.compare_m2 import merge_dict from errant.edit import Edit import spacy from spacy.tokenizer import Tokenizer from spacy.util import compile_prefix_regex, compile_infix_regex, compile_suffix_regex from sage.evaluation.ruerrant_wrapper import classifier from sage.evaluation.ruerrant_wrapper import merger def update_spacy_tokenizer(nlp): """ Changes Spacy tokenizer to parse additional patterns. """ infix_re = compile_infix_regex(nlp.Defaults.infixes[:-1] + ["\]\("]) simple_url_re = re.compile(r'''^https?://''') nlp.tokenizer = Tokenizer( nlp.vocab, prefix_search=compile_prefix_regex(nlp.Defaults.prefixes + ['\\\\\"']).search, suffix_search=compile_suffix_regex(nlp.Defaults.suffixes + ['\\\\']).search, infix_finditer=infix_re.finditer, token_match=None, url_match=simple_url_re.match ) return nlp class RuErrantScorer: """A scorer to evaluate spelling correction triplets with ERRANT metric.""" def __init__(self, spacy_model: str) -> None: self.annotator = Annotator("ru", nlp=update_spacy_tokenizer(spacy.load(spacy_model)), merger=merger, classifier=classifier) def annotate_errors(self, orig: str, cor: str, merging: str = "rules") -> list[Edit]: """ Overrides `Annotator.annotate()` function to allow multiple errors per token. This is nesessary to parse combined errors, e.g.: ["werd", "Word"] >>> Errors: ["SPELL", "CASE"] The `classify()` method called inside is implemented in ruerrant_classifier.py (also overrides the original classifier). """ alignment = self.annotator.align(orig, cor, False) edits = self.annotator.merge(alignment, merging) classified_edits = [] for edit in edits: classified_edits.extend(self.annotator.classify(edit)) return sorted(classified_edits, key=lambda x: (x[0], x[2])) def evaluate(self, sources: Iterable[str], corrections: Iterable[str], answers: Iterable[str]) -> dict[str, tuple[float, float, float]]: """ Evaluates iterables of sources, hyp and ref corrections with ERRANT metric. Args: sources (Iterable[str]): an iterable of source texts; corrections (Iterable[str]): an iterable of gold corrections for the source texts; answers (Iterable[str]): an iterable of evaluated corrections for the source texts; Returns: dict[str, tuple[float, ...]]: a dict mapping error categories to the corresponding P, R, F1 metric values. """ best_dict = Counter({"tp": 0, "fp": 0, "fn": 0}) best_cats = {} sents = zip(sources, corrections, answers) pb = tqdm(sents, desc="Calculating errant metric", total=len(sources)) for sent_id, sent in enumerate(pb): src = self.annotator.parse(sent[0]) ref = self.annotator.parse(sent[1]) hyp = self.annotator.parse(sent[2]) # Align hyp and ref corrections and annotate errors hyp_edits = self.annotate_errors(src, hyp) ref_edits = self.annotate_errors(src, ref) # Process the edits for detection/correction based on args ProcessingArgs = namedtuple("ProcessingArgs", ["dt", "ds", "single", "multi", "filt", "cse"], defaults=[False, False, False, False, [], True]) processing_args = ProcessingArgs() hyp_dict = process_edits(hyp_edits, processing_args) ref_dict = process_edits(ref_edits, processing_args) # Evaluate edits and get best TP, FP, FN hyp+ref combo. EvaluationArgs = namedtuple("EvaluationArgs", ["beta", "verbose"], defaults=[1.0, False]) evaluation_args = EvaluationArgs() count_dict, cat_dict = evaluate_edits( hyp_dict, ref_dict, best_dict, sent_id, evaluation_args) # Merge these dicts with best_dict and best_cats best_dict += Counter(count_dict) # corpus-level TP, FP, FN best_cats = merge_dict(best_cats, cat_dict) # corpus-level errortype-wise TP, FP, FN cat_prf = {} for cat, values in best_cats.items(): tp, fp, fn = values # fp - extra corrections, fn - missed corrections p = float(tp) / (tp + fp) if tp + fp else 1.0 r = float(tp) / (tp + fn) if tp + fn else 1.0 f = (2 * p * r) / (p + r) if p + r else 0.0 cat_prf[cat] = (p, r, f) for error_category in ["CASE", "PUNCT", "SPELL", "YO"]: if error_category not in cat_prf: cat_prf[error_category] = (1.0, 1.0, 1.0) return cat_prf ================================================ FILE: sage/evaluation/ruspelleval.py ================================================ """This module contains evaluation utils used when assessing spelling correction performance. The script is taken from https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf by Sorokin et al. with minor changes. """ import copy import re import warnings from typing import List, Dict from collections import defaultdict import numpy as np import timeout_decorator from tqdm.auto import tqdm class TimeOutValidation(Exception): pass def extract_words(line, make_lower=True, split_by_dots=False): line = line.strip() if split_by_dots: sents = re.split(r"[^а-яёa-z0-9\-.:/,]+", line, flags=re.I) else: sents = line.split() words = [] for word in sents: if make_lower: word = word.lower().replace('ё', 'е') else: word = word.replace('ё', 'е') word = word.replace('Ё', 'Е') i = len(word) - 1 while i >= 0 and not (word[i].isalpha() or word[i].isdigit()): i -= 1 if i < 0: continue word = word[:(i+1)] while len(word) > 0 and not (word[0].isalpha() or word[0].isdigit()): word = word[1:] if word != "": words.append(word) return words def levenstein_dist(source, correct, allow_transpositions=False, removal_cost=1.0, insertion_cost=1.0, replace_cost=1.0, transposition_cost=1.0): table, _ = make_levenstein_table(source, correct, allow_transpositions=allow_transpositions, removal_cost=removal_cost, insertion_cost=insertion_cost, transposition_cost=transposition_cost) return table[-1][-1] def make_levenstein_table(source, correct, allow_transpositions=False, removal_cost=1.0, insertion_cost=1.0, replace_cost=1.0, transposition_cost=1.0): """ Builds dynamic Levenshtein table and a list of backward links to maintain alignment. Args: source (List[str]): original sentence; correct (List[str]): corrected sentence; allow_transpositions (Optional[bool]): whether to allow transpositions of adjacent characters, defaults to False; removal_cost (Optional[float]): cost of removal, defaults to 1.; insertion_cost (Optional[float]): cost of insertion, defaults to 1.; replace_cost (Optional[float]): cost of replacement, defaults to 1.; transposition_cost (Optional[float]): cost of transposition, defaults to 1.; Return: table (np.array): Levenshtein table, table[i][j] = d(source[:i], correct[:j]); backtraces (np.array): table of backward links; """ first_length, second_length = len(source), len(correct) table = np.zeros(shape=(first_length + 1, second_length + 1), dtype=float) backtraces = [([None] * (second_length + 1)) for _ in range(first_length + 1)] for i in range(1, second_length + 1): table[0][i] = i backtraces[0][i] = [(0, i-1)] for i in range(1, first_length + 1): table[i][0] = i backtraces[i][0] = [(i-1, 0)] for i, first_word in enumerate(source, 1): for j, second_word in enumerate(correct, 1): if first_word == second_word: table[i][j] = table[i-1][j-1] backtraces[i][j] = [(i-1, j-1)] else: table[i][j] = min((table[i-1][j-1] + replace_cost, table[i][j-1] + removal_cost, table[i-1][j] + insertion_cost)) if (allow_transpositions and min(i, j) >= 2 and first_word == correct[j-2] and second_word == source[i-2]): table[i][j] = min(table[i][j], table[i-2][j-2] + transposition_cost) curr_backtraces = [] if table[i-1][j-1] + replace_cost == table[i][j]: curr_backtraces.append((i-1, j-1)) if table[i][j-1] + removal_cost == table[i][j]: curr_backtraces.append((i, j-1)) if table[i-1][j] + insertion_cost == table[i][j]: curr_backtraces.append((i-1, j)) if (allow_transpositions and min(i, j) >= 2 and first_word == correct[j-2] and second_word == source[i-2] and table[i][j] == table[i-2][j-2] + transposition_cost): curr_backtraces.append((i-2, j-2)) backtraces[i][j] = copy.copy(curr_backtraces) return table, backtraces def extract_best_alignment(backtraces): """ Extracts alignments from backward links table. Args: backtraces (np.array): table of backward links; Return: best_paths (List[List[Any]]): paths from (0, 0) to (m, n) in backtraces. """ m, n = len(backtraces) - 1, len(backtraces[0]) - 1 used_vertexes = {(m, n)} reverse_path_graph = defaultdict(list) vertexes_queue = [(m, n)] # builds graph of best paths in table while len(vertexes_queue) > 0: i, j = vertex = vertexes_queue.pop(0) if i > 0 or j > 0: for new_vertex in backtraces[i][j]: reverse_path_graph[new_vertex].append(vertex) if new_vertex not in used_vertexes: vertexes_queue.append(new_vertex) used_vertexes.add(new_vertex) # traverse paths back best_paths = [] current_path = [(0, 0)] last_indexes, neighbor_vertexes_list = [], [] while len(current_path) > 0: if current_path[-1] != (m, n): children = reverse_path_graph[current_path[-1]] if len(children) > 0: current_path.append(children[0]) last_indexes.append(0) neighbor_vertexes_list.append(children) continue else: best_paths.append(copy.copy(current_path)) while len(last_indexes) > 0 and last_indexes[-1] == len(neighbor_vertexes_list[-1]) - 1: current_path.pop() last_indexes.pop() neighbor_vertexes_list.pop() if len(last_indexes) == 0: break last_indexes[-1] += 1 current_path[-1] = neighbor_vertexes_list[-1][last_indexes[-1]] return best_paths def extract_basic_alignment_paths(paths_in_alignments, source, correct): """ Extracts identical substitutions from paths in Levenshtein table. Args: paths_in_alignments (List[List[Any]]): paths from (0, 0) to (m, n) in table. source (List[str]): original sentence; correct (List[str]): corrected sentence; Return: answer (List[Any]): identical substitutions; """ m, n = len(source), len(correct) are_symbols_equal = np.zeros(dtype=bool, shape=(m, n)) for i, a in enumerate(source): for j, b in enumerate(correct): are_symbols_equal[i][j] = (a == b) answer = set() for path in paths_in_alignments: answer.add(tuple(elem for elem in path[1:] if (elem[0] > 0 and elem[1] > 0 and are_symbols_equal[elem[0]-1][elem[1]-1]))) return list(answer) def extract_levenstein_alignments(source, correct, replace_cost=1.0): """ Finds positions of identical substitutions in source and correction. Args: source (List[str]): original sentence; correct (List[str]): corrected sentence; Return: basic_alignment_paths (List[List[tuple(int)]]): identical substitutions """ table, backtraces = make_levenstein_table(source, correct, replace_cost=replace_cost) paths_in_alignments = extract_best_alignment(backtraces) basic_alignment_paths = extract_basic_alignment_paths(paths_in_alignments, source, correct) return basic_alignment_paths def get_partition_indexes(first, second): """ Builds alingment between groups found in source sentence and corresponding correction. Indexes i and j indicate ending of a group if last characters of words first[i] and second[j] appear in a path in a Levenshtein table between " ".join(first) and " ".join(second). Args: first (List[str]): list of original words; second (List[str]): list of corrected words; Return: answer (List[tuple(int)]): alignment between first and second. """ m, n = len(first), len(second) answer = [(0, 0)] if m <= 1 or n <= 1: answer += [(m, n)] else: levenstein_table, backtraces = make_levenstein_table(" ".join(first), " ".join(second)) best_paths_in_table = extract_best_alignment(backtraces) good_partitions, other_partitions = set(), set() word_ends = [0], [0] last = -1 for i, word in enumerate(first): last = last + len(word) + 1 word_ends[0].append(last) last = -1 for i, word in enumerate(second): last = last + len(word) + 1 word_ends[1].append(last) for path in best_paths_in_table: current_indexes = [(0, 0)] first_pos, second_pos = 0, 0 is_partition_good = True for i, j in path[1:]: if i > word_ends[0][first_pos]: first_pos += 1 if j > word_ends[1][second_pos]: second_pos += 1 if i == word_ends[0][first_pos] and j == word_ends[1][second_pos]: if first_pos > current_indexes[-1][0] and second_pos > current_indexes[-1][1]: current_indexes.append((first_pos, second_pos)) if first_pos < len(first): first_pos += 1 if second_pos < len(second): second_pos += 1 else: is_partition_good = False if current_indexes[-1] == (m, n): if is_partition_good: good_partitions.add(tuple(current_indexes)) else: other_partitions.add(tuple(current_indexes)) else: current_indexes = current_indexes[:-1] + [(m, n)] other_partitions.add(tuple(current_indexes)) if len(good_partitions) >= 1: answer = list(good_partitions)[0] else: answer = list(other_partitions)[0] return answer @timeout_decorator.timeout(10, timeout_exception = TimeOutValidation) def align_sents(source, correct, return_only_different=False, replace_cost=1.0, partition_intermediate=True, groups_in_source=None): """ Finds positions of groups' endings in source sentence and corresponding correction. Args: source (List[str]): original sentence; correct (List[str]): corrected sentence; return_only_different (bool): whether to return only indexes of non-identical corrections; replace_cost (float): cost of non-identical replacements; Return: answer (List[tuple(tuple(int))]): groups, if answer[i] == ((i, j), (k, l)), then source[i:j] and correct[k:l] resemble the same group. """ if groups_in_source is None: groups_in_source = [] alignments = extract_levenstein_alignments(source, correct, replace_cost=replace_cost) m, n = len(source), len(correct) prev = 0, 0 answer = [] for i, j in alignments[0]: if i > prev[0] + 1 or j > prev[1] + 1: if partition_intermediate: partition_indexes =\ get_partition_indexes(source[prev[0]: i-1], correct[prev[1]: j-1]) if partition_indexes is not None: for pos, (f, s) in enumerate(partition_indexes[:-1]): answer.append(((prev[0] + f, prev[0] + partition_indexes[pos+1][0]), (prev[1] + s, prev[1] + partition_indexes[pos+1][1]))) else: answer.append(((prev[0], i-1), (prev[1], j-1))) else: answer.append(((prev[0], i-1), (prev[1], j-1))) answer.append(((i-1, i), (j-1, j))) prev = i, j if m > prev[0] or n > prev[1]: if partition_intermediate: partition_indexes =\ get_partition_indexes(source[prev[0]: m], correct[prev[1]: n]) if partition_indexes is not None: for pos, (f, s) in enumerate(partition_indexes[:-1]): answer.append(((prev[0] + f, prev[0] + partition_indexes[pos+1][0]), (prev[1] + s, prev[1] + partition_indexes[pos+1][1]))) else: answer.append(((prev[0], m), (prev[1], n))) else: answer.append(((prev[0], m), (prev[1], n))) positions_in_answer = [] indexes_in_source = [elem[0] for elem in answer] end_in_answer = -1 for pos, (i_ref, j_ref) in enumerate(groups_in_source): start_in_answer = end_in_answer + 1 while (start_in_answer < len(indexes_in_source) and indexes_in_source[start_in_answer][0] < i_ref): start_in_answer += 1 if start_in_answer == len(indexes_in_source): break i, j = indexes_in_source[start_in_answer] end_in_answer = start_in_answer if i == i_ref: while (end_in_answer < len(indexes_in_source) and indexes_in_source[end_in_answer][1] < j_ref): end_in_answer += 1 if end_in_answer == len(indexes_in_source): break if indexes_in_source[end_in_answer][1] == j_ref: positions_in_answer.append((start_in_answer, end_in_answer)) prev_end = -1 new_answer = [] for start_in_answer, end_in_answer in positions_in_answer: new_answer.extend(answer[prev_end+1: start_in_answer]) new_answer.append(((answer[start_in_answer][0][0], answer[end_in_answer][0][1]), (answer[start_in_answer][1][0], answer[end_in_answer][1][1]))) prev_end = end_in_answer new_answer.extend(answer[prev_end+1:]) answer = new_answer if return_only_different: answer = [((i, j), (k, l)) for ((i, j), (k, l)) in answer if source[i:j] != correct[k:l]] return answer def make_corrections_data(source_sents, correct_sents, answer_sents): etalon_corrections = dict() answer_corrections = dict() pb = tqdm(zip(source_sents, correct_sents, answer_sents), total=len(source_sents), desc="Calculating words metric") for num, (source, correct, answer) in enumerate(pb): try: correct_indexes = align_sents(source, correct, return_only_different=True, replace_cost=1.9) src_indexes = align_sents(source, answer, return_only_different=True, replace_cost=1.9, groups_in_source=[elem[0] for elem in correct_indexes]) for ((i, j), (k, l)) in correct_indexes: etalon_corrections[(num, i, j)] = tuple(correct[k:l]) for ((i, j), (k, l)) in src_indexes: answer_corrections[(num, i, j)] = tuple(answer[k:l]) except TimeOutValidation: warnings.warn("Skipping {} line, because operation timed out...".format(num), UserWarning) return etalon_corrections, answer_corrections def measure_quality(etalon_corrections, answer_corrections): TP = 0 for triple, answer_correction in answer_corrections.items(): etalon_correction = etalon_corrections.get(triple) if etalon_correction == answer_correction: TP += 1 precision = TP / len(answer_corrections) recall = TP / len(etalon_corrections) f_measure = 2 * precision * recall / (precision + recall) return TP, precision, recall, f_measure def output_differences(diff_file, source_sents, correct_sents, answer_sents, etalon_corrections, answer_corrections): false_positives = defaultdict(list) false_negatives = defaultdict(list) miscorrections = defaultdict(list) for (num, i, j), answer_correction in answer_corrections.items(): etalon_correction = etalon_corrections.get((num, i, j)) if etalon_correction is None: false_positives[num].append(((i, j), answer_correction)) elif etalon_correction != answer_correction: miscorrections[num].append(((i, j), answer_correction, etalon_correction)) for (num, i, j), etalon_correction in etalon_corrections.items(): answer_correction = answer_corrections.get((num, i, j)) if answer_correction is None: false_negatives[num].append(((i, j), etalon_correction)) with open(diff_file, "w", encoding="utf8") as fout: width = 24 for num, sent in enumerate(source_sents): current_false_positives = false_positives[num] current_false_negatives = false_negatives[num] current_miscorrections = miscorrections[num] if (len(current_false_positives) == 0 and len(current_false_negatives) == 0 and len(current_miscorrections) == 0): continue fout.write("{0}\n{1}\n{2}\n".format( " ".join(sent), " ".join(answer_sents[num]), " ".join(correct_sents[num]))) for (i, j), answer_correction in current_false_positives: fout.write("{0:<{width}}{1:<{width}}{2:<{width}}\n".format(" ".join(sent[i:j]), " ".join(answer_correction), " ".join(sent[i:j]), width=width)) for (i, j), etalon_correction in current_false_negatives: fout.write("{0:<{width}}{1:<{width}}{2:<{width}}\n".format(" ".join(sent[i:j]), " ".join(sent[i:j]), " ".join(etalon_correction), width=width)) for (i, j), answer_correction, etalon_correction in current_miscorrections: fout.write("{0:<{width}}{1:<{width}}{2:<{width}}\n".format(" ".join(sent[i:j]), " ".join(answer_correction), " ".join(etalon_correction), width=width)) fout.write("\n") return def evaluation( sources: List[str], corrections: List[str], answers: List[str], to_output_differences: bool = False, path_to_diff: str = "diff.txt", ) -> Dict[str, float]: # Substitute empty strings for i, ans in enumerate(answers): if len(ans.strip(" ")) == 0: print("empty string") answers[i] = sources[i] source_sents = [extract_words(line.strip().strip('\ufeff')) for line in sources] correct_sents = [extract_words(line.strip().strip('\ufeff')) for line in corrections] answer_sents = [extract_words(line.strip().strip('\ufeff')) for line in answers] etalon_corrections, answer_corrections = make_corrections_data(source_sents, correct_sents, answer_sents) TP, precision, recall, f_measure = measure_quality(etalon_corrections, answer_corrections) if to_output_differences: output_differences(path_to_diff, source_sents, correct_sents, answer_sents, etalon_corrections, answer_corrections) return { "Precision": round(precision * 100, 2), "Recall": round(recall * 100, 2), "F1": round(f_measure * 100, 2) } ================================================ FILE: sage/evaluation/scorer.py ================================================ """Generic evaluator for spelling correction task.""" from __future__ import annotations import warnings from typing import Iterable from sage.evaluation.ruerrant_wrapper.scorer import RuErrantScorer from sage.evaluation.ruspelleval import evaluation as calculate_ruspelleval_metric class Scorer: """ Generic evaluator for spelling correction task. Specific evaluation function calls are implemented in the `score()` function. If it is not planned to use "errant" metric with a particular class instance, consider passing `load_errant=False` to optimize for time and memory. Attributes: errant: a RuErrantScorer instance (unless Scorer is initialized with load_errant=False). """ def __init__(self, load_errant=True, spacy_model="ru_core_news_lg") -> None: if load_errant: self.errant = RuErrantScorer(spacy_model) else: self.errant = None def score(self, sources: Iterable[str], corrections: Iterable[str], answers: Iterable[str], metrics: Iterable[str]) -> dict[str, float]: """ Evaluate spelling correction using the specified metrics. Args: sources (Iterable[str]): an iterable of source texts; corrections (Iterable[str]): an iterable of gold corrections for the source texts; answers (Iterable[str]): an iterable of evaluated corrections for the source texts; metrics (Iterable[str]): an iterable of metric to evaluate with; Returns: dict[str, float]: a dict mapping metric names to their values (the names may not be the same as in the `metrics` arg). """ if metrics: for metric in metrics: if metric == "errant": if self.errant is None: raise AttributeError( "You called for `errant` metric which has not been loaded.", "To use, reinitialize the Scorer with `load_errant=True`.") elif metric != "ruspelleval": raise ValueError(f"You provided a wrong metric name: `{metric}`.", "Available metrics are: [`errant`, `ruspelleval`].") else: raise ValueError("The `metrics` argument must contain at least one metric name.") if isinstance(sources, str) or isinstance(corrections, str) or isinstance(answers, str): raise ValueError("The `sources`, `corrections`, and `answers` arguments", "must be iterables of strings.") if "" in sources or "" in corrections: # probably too greedy condition (spacy in errant cannot parse empty strings) raise ValueError("All input strings must not be empty.") if "" in answers: warnings.warn("Some of the answers are empty. They will be removed from the evaluation.", UserWarning) sources = [source for source, answer in zip(sources, answers) if answer] corrections = [correction for correction, answer in zip(corrections, answers) if answer] answers = [answer for answer in answers if answer] result = {} for metric in metrics: if metric == "errant" and self.errant is not None: metrics_by_cats = self.errant.evaluate(sources, corrections, answers) result_dict = {} metrics = ["Precision", "Recall", "F1"] for cat, values in metrics_by_cats.items(): for metric_name, metric_value in zip(metrics, values): result_dict[f"{cat}_{metric_name}"] = round(float(metric_value) * 100, 2) result.update(result_dict) elif metric == "ruspelleval": result.update(calculate_ruspelleval_metric(sources, corrections, answers)) return result ================================================ FILE: sage/pipeline/__init__.py ================================================ from .augmenters import CharAugmenter, WordAugmenter, SBSCorruptor from .config import PipelineConfig from .pipeline import AugmentationPipeline __all__ = [ 'AugmentationPipeline', 'CharAugmenter', 'WordAugmenter', 'SBSCorruptor', 'PipelineConfig' ] ================================================ FILE: sage/pipeline/augmenters.py ================================================ from abc import ABC, abstractmethod from typing import Optional from sage.spelling_corruption.configuration_corruptor import CharAugConfig, WordAugConfig, SBSCConfig from sage.spelling_corruption.corruptor import CharAugCorruptor, WordAugCorruptor, SBSCCorruptor class Augmenter(ABC): @abstractmethod def augment(self, text: str) -> str: """Applies augmentation to the given text. Args: text (str): The input text to augment. Returns: str: The augmented text. """ pass class CharAugmenter(Augmenter): def __init__(self, config: CharAugConfig): self.corruptor = CharAugCorruptor.from_config(config) def augment(self, text: str) -> str: return self.corruptor.corrupt(text) class WordAugmenter(Augmenter): def __init__(self, config: WordAugConfig): self.corruptor = WordAugCorruptor.from_config(config) def augment(self, text: str) -> str: return self.corruptor.corrupt(text) class SBSCorruptor(Augmenter): def __init__(self, config: SBSCConfig): self.corruptor = SBSCCorruptor.from_config(config) def augment(self, text: str) -> str: return self.corruptor.corrupt(text) ================================================ FILE: sage/pipeline/config.py ================================================ import os from sage.utils import DatasetsAvailable class PipelineConfig: def __init__(self, lang: str = 'rus'): self.char_min_aug: int = 1 self.char_max_aug: int = 3 self.char_unit_prob: float = 0.2 self.word_min_aug: int = 1 self.word_max_aug: int = 3 self.word_unit_prob: float = 0.3 self.sbsc_lang: str = lang self.sbsc_reference_dataset_name_or_path: str = DatasetsAvailable.MedSpellchecker.name self.sbsc_reference_dataset_split: str = "test" self.__set_language(lang) def set_char_params(self, min_aug: int, max_aug: int, unit_prob: float): self.char_min_aug = min_aug self.char_max_aug = max_aug self.char_unit_prob = unit_prob def set_word_params(self, min_aug: int, max_aug: int, unit_prob: float): self.word_min_aug = min_aug self.word_max_aug = max_aug self.word_unit_prob = unit_prob def set_sbsc_params(self, lang: str, dataset_name_or_path: str, dataset_split: str): self.sbsc_lang = lang self.sbsc_reference_dataset_name_or_path = dataset_name_or_path self.sbsc_reference_dataset_split = dataset_split def __set_language(self, lang: str): """ Sets the language and corresponding dataset path based on the provided language. Args: lang (str): The language code ('ru' or 'en'). """ self.sbsc_lang = lang if lang == 'eng': base_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')) self.sbsc_reference_dataset_name_or_path = os.path.join(base_dir, "data", "example_data", "jfleg") elif lang != 'rus': raise ValueError("Unsupported language. Supported languages are 'rus' and 'eng'.") @property def char_params(self): """Returns the parameters for character augmentation as a dictionary.""" return { 'min_aug': self.char_min_aug, 'max_aug': self.char_max_aug, 'unit_prob': self.char_unit_prob } @property def word_params(self): """Returns the parameters for word augmentation as a dictionary.""" return { 'min_aug': self.word_min_aug, 'max_aug': self.word_max_aug, 'unit_prob': self.word_unit_prob } @property def sbsc_params(self): """Returns the parameters for SBS corruptor as a dictionary.""" return { 'lang': self.sbsc_lang, 'dataset_name_or_path': self.sbsc_reference_dataset_name_or_path, 'dataset_split': self.sbsc_reference_dataset_split } ================================================ FILE: sage/pipeline/pipeline.py ================================================ import random from typing import Optional, List from sage.spelling_corruption.configuration_corruptor import CharAugConfig, WordAugConfig, SBSCConfig from .augmenters import CharAugmenter, WordAugmenter, SBSCorruptor from .config import PipelineConfig class AugmentationPipeline: def __init__(self, config: PipelineConfig = PipelineConfig(), shuffle: bool = True): """ Initializes the AugmentationPipeline with a given configuration and optional shuffling. Args: config (PipelineConfig): The configuration object containing settings for the augmenters. shuffle (bool): Whether to shuffle the order of augmenters. Default is True. """ self.augmenters = [] self.config = config self._add_all_augmenters() if shuffle: self._shuffle_augmenters() def _add_all_augmenters(self): """ Adds all available augmenters (character, word, and SBS corruptor) to the pipeline. """ self.add_char_augmenter() self.add_word_augmenter() self.add_sbsc_augmenter() def _shuffle_augmenters(self): """ Randomly shuffles the order of the augmenters in the pipeline. """ random.shuffle(self.augmenters) def add_char_augmenter(self): """ Adds a character augmenter to the pipeline using the configuration settings. """ char_config = CharAugConfig( min_aug=self.config.char_min_aug, max_aug=self.config.char_max_aug, unit_prob=self.config.char_unit_prob ) self.augmenters.append(CharAugmenter(char_config)) def add_word_augmenter(self): """ Adds a word augmenter to the pipeline using the configuration settings. """ word_config = WordAugConfig( min_aug=self.config.word_min_aug, max_aug=self.config.word_max_aug, unit_prob=self.config.word_unit_prob ) self.augmenters.append(WordAugmenter(word_config)) def add_sbsc_augmenter(self): """ Adds an SBS corruptor to the pipeline using the configuration settings. """ sbsc_config = SBSCConfig( lang=self.config.sbsc_lang, reference_dataset_name_or_path=self.config.sbsc_reference_dataset_name_or_path, reference_dataset_split=self.config.sbsc_reference_dataset_split ) self.augmenters.append(SBSCorruptor(sbsc_config)) def remove_augmenter(self, augmenter_type): """ Removes all instances of the specified augmenter type from the pipeline. Args: augmenter_type (type): The type of augmenter to remove. """ self.augmenters = [augmenter for augmenter in self.augmenters if not isinstance(augmenter, augmenter_type)] def set_order(self, order: List[int]): """ Sets a specific order for the augmenters in the pipeline. Args: order (List[int]): A list of indices specifying the new order of augmenters. """ self.augmenters = [self.augmenters[i] for i in order] def augment(self, text: str) -> str: """ Applies all augmenters in the pipeline to the given text. Args: text (str): The input text to augment. seed (Optional[int]): An optional seed for random number generation to ensure reproducibility. Returns: str: The augmented text. """ for augmenter in self.augmenters: text = augmenter.augment(text) return text ================================================ FILE: sage/spelling_correction/__init__.py ================================================ from .m2m_correctors import RuM2M100ModelForSpellingCorrection from .t5_correctors import T5ModelForSpellingCorruption from .corrector import AvailableCorrectors __all__ = [ "RuM2M100ModelForSpellingCorrection", "T5ModelForSpellingCorruption", "AvailableCorrectors" ] ================================================ FILE: sage/spelling_correction/corrector.py ================================================ """Abstract API to spelling correction models. The file also contains available pre-trained models for spelling correction in Russian and English (yet more is to come). To see all available models: models = [model.name for model in AvailableCorrectors] To launch one of the available models: model_path = AvailableCorrectors.m2m100_1B.value ... # pass model path for initialization """ import os import enum import yaml from accelerate import Accelerator from abc import ABCMeta, abstractmethod from typing import List, Union, Dict, Optional, Any import pandas as pd from torch.utils.data import DataLoader from transformers import T5PreTrainedModel, T5ForConditionalGeneration from .training.data_processor import get_tokenized_datasets, TextCollatorWithPadding from .training.trainer import SageTrainer from ..utils.data_load_utils import load_available_dataset_from_hf, DatasetsAvailable from .models import T5ForConditionalGenerationTokenMultilabel, T5ForConditionalGenerationTokenMulticlass, \ T5ForConditionalGenerationTokenMultilabelLM, T5ForConditionalGenerationLM datasets_available = [dataset.name for dataset in DatasetsAvailable] models_available = [T5PreTrainedModel] models_names = { 't5_encoder_multilabel': T5ForConditionalGenerationTokenMultilabel, 't5_encoder_multiclass': T5ForConditionalGenerationTokenMulticlass, 't5_encoder_multilabel_lm': T5ForConditionalGenerationTokenMultilabelLM, 't5_encoder_lm': T5ForConditionalGenerationLM, 't5': T5ForConditionalGeneration } class AvailableCorrectors(enum.Enum): """Available models for spelling and punctuation correction""" sage_fredt5_large = "ai-forever/sage-fredt5-large" sage_fredt5_distilled_95m = "ai-forever/sage-fredt5-distilled-95m" sage_m2m100_1B = "ai-forever/sage-m2m100-1.2B" sage_mt5_large = "ai-forever/sage-mt5-large" m2m100_1B = "ai-forever/RuM2M100-1.2B" m2m100_418M = "ai-forever/RuM2M100-418M" fred_large = "ai-forever/FRED-T5-large-spell" ent5_large = "ai-forever/T5-large-spell" class Corrector(metaclass=ABCMeta): """Base class for all correctors.""" @classmethod @abstractmethod def from_pretrained(cls, model_name_or_path: Union[str, os.PathLike]): pass def correct(self, sentence: str, prefix: Optional[str] = "", **generation_params) -> List[str]: """ Corrects a single input sentence. :param sentence: a source sentence; :type sentence: str :param prefix: some models need some sort of a prompting; :type prefix: str :param generation_params: parameters passed to `generate` method of a HuggingFace model; :type generation_params: dict :return: corresponding corrected sentence :rtype: list of str """ return self.batch_correct([sentence], 1, prefix, **generation_params)[-1] def evaluate( self, dataset_name_or_path: Optional[Union[str, os.PathLike]], metrics: List, batch_size: int, prefix: str = "", dataset_split: str = "test", **generation_params, ) -> Dict[str, float]: """ Evaluate the particular model on the spellcheck datasets. :param dataset_name_or_path: a path to a locally situated dataset or a name of a dataset on HuggingFace; :type dataset_name_or_path: str :param metrics: set of metrics to be used to report performance; :type metrics: list of str :param batch_size: size of subsample of input sentences; :type batch_size: int :param prefix: some models need some sort of a prompting; :type prefix: str :param dataset_split: train / test / dev part to be evaluated on; :type dataset_split: str :param generation_params: parameters passed to `generate` method of a HuggingFace model; :type generation_params: dict :return: mapping between metric's name and its corresponding value :rtype: dict[str, float] """ from ..evaluation.scorer import Scorer dataset_name_or_path = str(dataset_name_or_path) if dataset_name_or_path in datasets_available: sources, corrections = load_available_dataset_from_hf( dataset_name_or_path, for_labeler=True, split=dataset_split) elif os.path.isdir(dataset_name_or_path): if os.path.isfile(os.path.join(dataset_name_or_path, "sources.txt")) and \ os.path.isfile(os.path.join(dataset_name_or_path, "corrections.txt")): src_file = open(os.path.join(dataset_name_or_path, "sources.txt"), encoding="utf8") corr_file = open(os.path.join(dataset_name_or_path, "corrections.txt"), encoding="utf8") sources = src_file.read().split("\n") corrections = corr_file.read().split("\n") src_file.close() corr_file.close() if len(sources) != len(corrections): raise RuntimeError("Sources and corrections must be of the same length, but get {} vs {}".format( len(sources), len(corrections))) elif os.path.isfile(os.path.join(dataset_name_or_path, "data.csv")): try: data = pd.read_csv(os.path.join(dataset_name_or_path, "data.csv")) except Exception as e: raise RuntimeError("Wrong format of file {}. Raised an error: {}".format( os.path.join(dataset_name_or_path, "data.csv"), str(e))) if not ("source" in data and "correction" in data): raise RuntimeError("You must provide 'source' and 'correction' columns in {}".format( os.path.join(dataset_name_or_path, "data.csv") )) if data.isna().any().max(): raise ValueError("Your data at {} contain unnecessary nans".format( os.path.join(dataset_name_or_path, "data.csv"))) sources = data.source.values.tolist() corrections = data.correction.values.tolist() else: raise RuntimeError("You must provide either 'data.csv' or 'sources.txt'/'corrections.txt' in {}".format( dataset_name_or_path )) else: raise ValueError("You must provide either valid path or available dataset's name, you provided {}".format( dataset_name_or_path )) answers = self.batch_correct(sources, batch_size, prefix, **generation_params) if "num_return_sequences" in generation_params and generation_params["num_return_sequences"] > 1: num_sequences = generation_params["num_return_sequences"] answers = [batch_answers[::num_sequences] for batch_answers in answers] answers = sum(answers, []) scorer = Scorer("errant" in metrics) metrics_dict = scorer.score(sources, corrections, answers, metrics) return metrics_dict @abstractmethod def batch_correct( self, sentences: List[str], batch_size: int, prefix: Optional[str] = "", **generation_params, ) -> List[List[Any]]: """Correct multiple sentences""" def train(self, config_path: str): with open(config_path) as infile: config = yaml.safe_load(infile) accelerator = Accelerator(mixed_precision=config['mixed_precision'], log_with=config['tracker_name'], project_dir=config['logging_path'], gradient_accumulation_steps=config['gradient_accumulation_steps'], split_batches=True) accelerator.init_trackers( project_name="spell_pretraining", config={'max_length': config['dataset']['max_length'], 'num_training_epochs': config['num_training_epochs'], 'gradient_accumulation_steps': config['gradient_accumulation_steps'], 'batch_size': config['batch_size'], 'mixed_precision': config['mixed_precision'], 'padding': config['padding'], 'optim': config['optim'], 'weight_decay': config['weight_decay'], 'learning_rate': config['learning_rate'], 'scheduler': config['scheduler'], 'mode': config['mode'], 'checkpoint_path': config['checkpoint_path'] } ) with accelerator.main_process_first(): self.model = models_names[config['model_type']].from_pretrained(self.model_name_or_path) train_tokenized, valid_tokenized = get_tokenized_datasets(self.tokenizer, **config['dataset']) train_loader = DataLoader(train_tokenized, batch_size=config['batch_size'], shuffle=False, pin_memory=False, num_workers=config['dataset']['num_workers'], collate_fn=TextCollatorWithPadding(self.tokenizer, self.model)) valid = config['valid'] if valid_tokenized is not None: valid_loader = DataLoader(valid_tokenized, batch_size=config['batch_size'], shuffle=False, pin_memory=False, num_workers=config['dataset']['num_workers'], collate_fn=TextCollatorWithPadding(self.tokenizer, self.model)) else: valid_loader = None valid = False trainer = SageTrainer( accelerator, self.model, self.tokenizer, optimizer_name=config['optim'], scheduler_type=config['scheduler'], train_loader=train_loader, valid_loader=valid_loader, metric=config['metric'], learning_rate=config['learning_rate'], weight_decay=config['weight_decay'], num_training_epochs=config['num_training_epochs'], gradient_accumulation_steps=config['gradient_accumulation_steps'], is_valid=valid, save_steps=config['save_steps'], checkpoint_path=config['checkpoint_path'], mode=config['mode'], gen_params=config['gen_params'] ) trainer.fit() ================================================ FILE: sage/spelling_correction/corruptors/__init__.py ================================================ from .identity import IdentityCorruptor from .randomchar import RandomCharAug, RandomCharPuncAug, PuncAug corruptors_names = { "identity": IdentityCorruptor, "randomcharaug_0.05": lambda: RandomCharAug([1, 2, 2, 1, 1, 1, 1], {'replace': 1, 'add': 2, 'swap': 3}, 0.05, 1, 1000, 2), "randomcharaug_0.1": lambda: RandomCharAug([1, 2, 2, 1, 1, 1, 1], {'replace': 1, 'add': 2, 'swap': 3}, 0.1, 1, 1000, 2, lang='rus'), "randomcharaug_0.2": lambda: RandomCharAug([1, 2, 2, 1, 1, 1, 1], {'replace': 1, 'add': 2, 'swap': 3}, 0.2, 1, 1000, 2), 'ru_punc_randomcharaug_0.2': lambda: RandomCharPuncAug([1, 2, 2, 1, 1, 1, 1], {'replace': 1, 'add': 2, 'swap': 3}, 0.2, 1, 1000, 2, 0.4, lang='rus'), 'en_punc_randomcharaug_0.2': lambda: RandomCharPuncAug([1, 2, 2, 1, 1, 1, 1], {'replace': 1, 'add': 2, 'swap': 3}, 0.2, 1, 1000, 2, 0.4, lang='eng'), 'punc_0.2': lambda: PuncAug([1, 2, 2, 1, 1, 1, 1], {'replace': 1, 'add': 2, 'swap': 3}, 0.2, 1, 1000, 2, 0.5) } ================================================ FILE: sage/spelling_correction/corruptors/identity.py ================================================ class IdentityCorruptor: def __init__(self): pass def corrupt(self, x): return x def __call__(self, x, tokenizer): return self.corrupt(x), '', [] ================================================ FILE: sage/spelling_correction/corruptors/randomchar.py ================================================ import numpy as np from augmentex.char import CharAug import random from . import IdentityCorruptor class RandomCharAug(CharAug, IdentityCorruptor): def __init__( self, action_p, error2idx, unit_prob: float = 0.2, min_aug: int = 1, max_aug: int = 5, mult_num: int = 5, lang: str = 'rus' ): super().__init__(unit_prob, min_aug, max_aug, mult_num, lang=lang) action_p = np.array(action_p) self.action_p = action_p / action_p.sum() self.error2idx = error2idx def _typo(self, char: str) -> str: typo_char = np.random.choice(self.typo_dict.get(char, [char])) return typo_char def _shift(self, char: str) -> str: shift_char = self.shift_dict.get(char, char) return shift_char def _orfo(self, char: str) -> str: if self.orfo_dict.get(char, None) == None: orfo_char = char else: orfo_char = np.random.choice( self.vocab, p=self.orfo_dict.get(char, None) ) return orfo_char def _delete(self) -> str: return "" def _insert(self, char: str) -> str: return char + np.random.choice(self.vocab) def _multiply(self, char: str) -> str: if char in [" ", ",", ".", "?", "!", "-"]: return char else: n = np.random.randint(1, self.mult_num) return char * n def augment(self, text: str): typo_text_arr = list(text) no_drop = list(text) char_mask = [0 for _ in range(len(text))] aug_idxs = self._aug_indexing(typo_text_arr, self.unit_prob, clip=True) for idx in aug_idxs: action = np.random.choice(self.actions_list, p=self.action_p) if action == "typo": new_symbol = self._typo(typo_text_arr[idx]) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == "shift": new_symbol = self._shift(typo_text_arr[idx]) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == "delete": typo_text_arr[idx] = self._delete() char_mask[idx] = -1 elif action == "insert": typo_text_arr[idx] = self._insert(typo_text_arr[idx]) no_drop[idx] = typo_text_arr[idx] char_mask[idx] = self.error2idx['add'] elif action == "orfo": new_symbol = self._orfo(typo_text_arr[idx]) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == "multiply": char = typo_text_arr[idx] if char in [" ", ",", ".", "?", "!", "-"]: typo_text_arr[idx] = char else: n = np.random.randint(1, self.mult_num) typo_text_arr[idx] = char * int(n) no_drop[idx] = typo_text_arr[idx] if len(typo_text_arr[idx]) > 1: char_mask[idx] = self.error2idx['add'] elif action == "swap": sw = max(0, idx - 1) typo_text_arr[sw], typo_text_arr[idx] = ( typo_text_arr[idx], typo_text_arr[sw], ) no_drop[sw] = typo_text_arr[sw] no_drop[idx] = typo_text_arr[idx] char_mask[sw], char_mask[idx] = ( char_mask[idx], char_mask[sw], ) if char_mask[sw] == 0: char_mask[sw] = self.error2idx['swap'] if char_mask[idx] == 0: char_mask[idx] = self.error2idx['swap'] flatten_mask = [] for idx in range(len(typo_text_arr)): if len(typo_text_arr[idx]) > 1: flatten_mask.append(0) for _ in range(1, len(typo_text_arr[idx])): flatten_mask.append(char_mask[idx]) else: flatten_mask.append(char_mask[idx]) return "".join(typo_text_arr), "".join(no_drop), flatten_mask def _get_random_idx(self, inputs, aug_count, rng): token_idxes = [i for i in range(len(inputs))] aug_idxs = np.random.choice(token_idxes, size=aug_count, replace=False) return aug_idxs def __call__(self, text, tokenizer): return self.augment(text) class RandomCharPuncAug(RandomCharAug): def __init__( self, action_p, error2idx, unit_prob: float = 0.2, min_aug: int = 1, max_aug: int = 5, mult_num: int = 5, punc_prob=0.5, lang='rus' ): super().__init__(action_p, error2idx, unit_prob, min_aug, max_aug, mult_num, lang=lang) self.punctuation = '—!"\'(),,-..:;?' self.punc_prob = punc_prob def _punc_indexing(self, inputs): punc_token_idxes = [] char_token_idxes = [] for i in range(len(inputs)): if inputs[i] in self.punctuation: punc_token_idxes.append((i, ('replace', 'delete'))) elif inputs[i].isalnum() and ((i < len(inputs) - 1 and inputs[i + 1].isspace()) or (i == len(inputs) - 1)): char_token_idxes.append((i, ['insert'])) punc_count = self.__augs_count(len(punc_token_idxes), self.punc_prob) char_count = self.__augs_count(len(char_token_idxes), self.unit_prob) aug_idxs = random.sample(punc_token_idxes, punc_count) + random.sample(char_token_idxes, char_count) return aug_idxs def __augs_count(self, size: int, rate: float) -> int: cnt = 0 if size > 1: cnt = int(rate * size) return cnt def augment(self, text: str): typo_text_arr = list(text) no_drop = list(text) char_mask = [0 for _ in range(len(text))] punc_idxs = self._punc_indexing(typo_text_arr) for idx in punc_idxs: idx, punc_actions = idx action = np.random.choice(punc_actions) if action == 'delete': typo_text_arr[idx] = self._delete() char_mask[idx] = -1 elif action == 'replace': new_symbol = np.random.choice(list(self.punctuation)) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == 'insert': new_symbol = np.random.choice(list(self.punctuation)) if new_symbol in '—-': new_symbol = ' ' + new_symbol typo_text_arr[idx] = typo_text_arr[idx] + new_symbol no_drop[idx] = typo_text_arr[idx] char_mask[idx] = self.error2idx['add'] punc_idxs = [i[0] for i in punc_idxs] aug_idxs = self._aug_indexing(typo_text_arr, self.unit_prob, clip=True) for idx in aug_idxs: action = np.random.choice(self.actions_list, p=self.action_p) if action == "typo": new_symbol = self._typo(typo_text_arr[idx]) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == "shift": new_symbol = self._shift(typo_text_arr[idx]) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == "delete": typo_text_arr[idx] = self._delete() char_mask[idx] = -1 elif action == "insert": typo_text_arr[idx] = self._insert(typo_text_arr[idx]) no_drop[idx] = typo_text_arr[idx] char_mask[idx] = self.error2idx['add'] elif action == "orfo": new_symbol = self._orfo(typo_text_arr[idx]) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == "multiply": char = typo_text_arr[idx] if char in [" ", ",", ".", "?", "!", "-"]: typo_text_arr[idx] = char else: n = np.random.randint(1, self.mult_num) typo_text_arr[idx] = char * int(n) no_drop[idx] = typo_text_arr[idx] if len(typo_text_arr[idx]) > 1: char_mask[idx] = self.error2idx['add'] elif action == "swap": sw = max(0, idx - 1) typo_text_arr[sw], typo_text_arr[idx] = ( typo_text_arr[idx], typo_text_arr[sw], ) no_drop[sw] = typo_text_arr[sw] no_drop[idx] = typo_text_arr[idx] char_mask[sw], char_mask[idx] = ( char_mask[idx], char_mask[sw], ) if char_mask[sw] == 0: char_mask[sw] = self.error2idx['swap'] if char_mask[idx] == 0: char_mask[idx] = self.error2idx['swap'] flatten_mask = [] for idx in range(len(typo_text_arr)): if len(typo_text_arr[idx]) > 1: flatten_mask.append(0) for _ in range(1, len(typo_text_arr[idx])): flatten_mask.append(char_mask[idx]) else: flatten_mask.append(char_mask[idx]) return "".join(typo_text_arr), "".join(no_drop), flatten_mask class PuncAug(RandomCharAug): def __init__( self, action_p, error2idx, unit_prob: float = 0.2, min_aug: int = 1, max_aug: int = 5, mult_num: int = 5, punc_prob=0.5 ): super().__init__(action_p, error2idx, unit_prob, min_aug, max_aug, mult_num) self.punctuation = '—!"\'(),,-..:;?' self.punc_prob = punc_prob def _punc_indexing(self, inputs, rng): punc_token_idxes = [] char_token_idxes = [] for i in range(len(inputs)): if inputs[i] in self.punctuation: punc_token_idxes.append((i, ('replace', 'delete'))) elif inputs[i].isalnum() and ((i < len(inputs) - 1 and inputs[i + 1].isspace()) or (i == len(inputs) - 1)): char_token_idxes.append((i, ['insert'])) punc_token_idxes = np.array(punc_token_idxes, dtype=object) char_token_idxes = np.array(char_token_idxes, dtype=object) punc_count = self._augs_count(len(punc_token_idxes), self.punc_prob) char_count = self._augs_count(len(char_token_idxes), self.unit_prob) aug_idxs = rng.choice(punc_token_idxes, size=punc_count, replace=False).tolist() + rng.choice(char_token_idxes, size=char_count, replace=False).tolist() return aug_idxs def augment(self, text: str, seed: int = 42, rng: np.random.default_rng = None): if rng is None: rng = np.random.default_rng(seed) typo_text_arr = list(text) no_drop = list(text) char_mask = [0 for _ in range(len(text))] punc_idxs = self._punc_indexing(typo_text_arr, rng) for idx in punc_idxs: idx, punc_actions = idx action = np.random.choice(punc_actions) if action == 'delete': typo_text_arr[idx] = self._delete() char_mask[idx] = -1 elif action == 'replace': new_symbol = np.random.choice(list(self.punctuation)) if new_symbol != typo_text_arr[idx]: char_mask[idx] = self.error2idx['replace'] typo_text_arr[idx] = new_symbol no_drop[idx] = typo_text_arr[idx] elif action == 'insert': new_symbol = np.random.choice(list(self.punctuation)) if new_symbol in '—-': new_symbol = ' ' + new_symbol typo_text_arr[idx] = typo_text_arr[idx] + new_symbol no_drop[idx] = typo_text_arr[idx] char_mask[idx] = self.error2idx['add'] flatten_mask = [] for idx in range(len(typo_text_arr)): if len(typo_text_arr[idx]) > 1: flatten_mask.append(0) for _ in range(1, len(typo_text_arr[idx])): flatten_mask.append(char_mask[idx]) else: flatten_mask.append(char_mask[idx]) return "".join(typo_text_arr), "".join(no_drop), flatten_mask ================================================ FILE: sage/spelling_correction/m2m_correctors.py ================================================ """API to M2M100-based models for spelling correction. To load a model: from corrector import AvailableCorrectors model = RuM2M100ModelForSpellingCorrection.from_pretrained(AvailableCorrectors.m2m100_1B.value) ... """ import os from typing import List, Optional, Union, Any from tqdm.auto import tqdm from transformers import M2M100ForConditionalGeneration from transformers.models.m2m_100.tokenization_m2m_100 import M2M100Tokenizer from .corrector import Corrector class RuM2M100ModelForSpellingCorrection(Corrector): """M2M100-based models.""" def __init__(self, model_name_or_path: Union[str, os.PathLike]): """ Initialize the M2M100-type corrector from a pre-trained checkpoint. The latter can be either locally situated checkpoint or a name of a model on HuggingFace. NOTE: This method does not really load the weights, it just stores the path or name. :param model_name_or_path: the aforementioned name or path to checkpoint; :type model_name_or_path: str or os.PathLike; """ self.model_name_or_path = model_name_or_path @classmethod def from_pretrained(cls, model_name_or_path: Union[str, os.PathLike]): """ Initialize the M2M100-type corrector from a pre-trained checkpoint. The latter can be either locally situated checkpoint or a name of a model on HuggingFace. :param model_name_or_path: the aforementioned name or path to checkpoint; :type model_name_or_path: str or os.PathLike :return: corrector initialized from pre-trained weights :rtype: object of :class:`RuM2M100ModelForSpellingCorrection` """ engine = cls(model_name_or_path) engine.model = M2M100ForConditionalGeneration.from_pretrained(model_name_or_path) engine.tokenizer = M2M100Tokenizer.from_pretrained(model_name_or_path, src_lang="ru", tgt_lang="ru") return engine def batch_correct( self, sentences: List[str], batch_size: int, prefix: Optional[str] = "", **generation_params, ) -> List[List[Any]]: """ Corrects multiple sentences. :param sentences: input sentences to correct; :type sentences: list of str :param batch_size: size of subsample of input sentences; :type batch_size: int :param prefix: some models need some sort of a prompting; :type prefix: str :param generation_params: parameters passed to `generate` method of a HuggingFace model; :type generation_params: dict :return: corresponding corrections :rtype: list of list of str """ if not hasattr(self, "model"): raise RuntimeError("Please load weights using `from_pretrained` method from one of the available models.") batches = [sentences[i:i + batch_size] for i in range(0, len(sentences), batch_size)] result = [] pb = tqdm(total=len(batches)) device = self.model.device if "forced_bos_token_id" in generation_params: generation_params.pop("forced_bos_token_id") for batch in batches: encodings = self.tokenizer.batch_encode_plus( batch, max_length=None, padding="longest", truncation=False, return_tensors='pt') for k, v in encodings.items(): encodings[k] = v.to(device) generated_tokens = self.model.generate( **encodings, **generation_params, forced_bos_token_id=self.tokenizer.get_lang_id("ru"), max_length=int(1.5*encodings["input_ids"].shape[1])) ans = self.tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) result.append(ans) pb.update(1) return result ================================================ FILE: sage/spelling_correction/models/__init__.py ================================================ from .t5.multilabel import T5ForConditionalGenerationTokenMultilabel from .t5.multiclass import T5ForConditionalGenerationTokenMulticlass from .t5.multilabel_lm import T5ForConditionalGenerationTokenMultilabelLM, T5ForConditionalGenerationLM ================================================ FILE: sage/spelling_correction/models/t5/__init__.py ================================================ ================================================ FILE: sage/spelling_correction/models/t5/encoder_task.py ================================================ import torch import torch.nn as nn from transformers import T5ForConditionalGeneration from transformers.modeling_outputs import BaseModelOutput from transformers.utils import ModelOutput from dataclasses import dataclass @dataclass class Seq2SeqLMEncoderOutput(ModelOutput): loss: torch.FloatTensor = None logits: torch.FloatTensor = None past_key_values: torch.FloatTensor = None decoder_hidden_states: torch.FloatTensor = None decoder_attentions: torch.FloatTensor = None cross_attentions: torch.FloatTensor = None encoder_last_hidden_state: torch.FloatTensor = None encoder_hidden_states: torch.FloatTensor = None encoder_attentions: torch.FloatTensor = None encoder_logits: torch.FloatTensor = None encoder_loss: torch.FloatTensor = None class T5ForConditionalGenerationEncoderTask(T5ForConditionalGeneration): def __init__(self, config): super().__init__(config) def forward( self, input_ids=None, attention_mask=None, decoder_input_ids=None, decoder_attention_mask=None, head_mask=None, decoder_head_mask=None, cross_attn_head_mask=None, encoder_outputs=None, past_key_values=None, inputs_embeds=None, decoder_inputs_embeds=None, labels=None, encoder_labels=None, encoder_lm_labels=None, label_ids=None, label_attention_mask=None, use_cache=None, output_attentions=None, output_hidden_states=None, return_dict=None, ): use_cache = use_cache if use_cache is not None else self.config.use_cache return_dict = return_dict if return_dict is not None else self.config.use_return_dict encoder_outputs, encoder_loss, encoder_logits = self.compute_encoder_loss(input_ids=input_ids, attention_mask=attention_mask, label_attention_mask=label_attention_mask, encoder_outputs=encoder_outputs, labels=labels, encoder_labels=encoder_labels, label_ids=label_ids, encoder_lm_labels=encoder_lm_labels) if encoder_outputs is None: encoder_outputs = self.encoder( input_ids=input_ids, attention_mask=attention_mask, inputs_embeds=inputs_embeds, head_mask=head_mask, output_attentions=output_attentions, output_hidden_states=output_hidden_states, return_dict=return_dict, ) elif return_dict and not isinstance(encoder_outputs, BaseModelOutput): encoder_outputs = BaseModelOutput( last_hidden_state=encoder_outputs[0], hidden_states=encoder_outputs[1] if len(encoder_outputs) > 1 else None, attentions=encoder_outputs[2] if len(encoder_outputs) > 2 else None, ) hidden_states = encoder_outputs[0] if self.model_parallel: torch.cuda.set_device(self.decoder.first_device) if labels is not None and decoder_input_ids is None and decoder_inputs_embeds is None: decoder_input_ids = self._shift_right(labels) if self.model_parallel: torch.cuda.set_device(self.decoder.first_device) hidden_states = hidden_states.to(self.decoder.first_device) if decoder_input_ids is not None: decoder_input_ids = decoder_input_ids.to(self.decoder.first_device) if attention_mask is not None: attention_mask = attention_mask.to(self.decoder.first_device) if decoder_attention_mask is not None: decoder_attention_mask = decoder_attention_mask.to(self.decoder.first_device) decoder_outputs = self.decoder( input_ids=decoder_input_ids, attention_mask=decoder_attention_mask, inputs_embeds=decoder_inputs_embeds, past_key_values=past_key_values, encoder_hidden_states=hidden_states, encoder_attention_mask=attention_mask, head_mask=decoder_head_mask, cross_attn_head_mask=cross_attn_head_mask, use_cache=use_cache, output_attentions=output_attentions, output_hidden_states=output_hidden_states, return_dict=return_dict, ) sequence_output = decoder_outputs[0] if self.model_parallel: torch.cuda.set_device(self.encoder.first_device) self.lm_head = self.lm_head.to(self.encoder.first_device) sequence_output = sequence_output.to(self.lm_head.weight.device) if self.config.tie_word_embeddings: sequence_output = sequence_output * (self.model_dim ** -0.5) lm_logits = self.lm_head(sequence_output) loss = None if labels is not None: loss_fct = nn.CrossEntropyLoss(ignore_index=-100) labels = labels.to(lm_logits.device) loss = loss_fct(lm_logits.view(-1, lm_logits.size(-1)), labels.view(-1)) if not return_dict: output = (lm_logits,) + decoder_outputs[1:] + encoder_outputs return ((loss,) + output) if loss is not None else output if encoder_loss is not None: loss = loss + encoder_loss return Seq2SeqLMEncoderOutput( loss=loss, logits=lm_logits, past_key_values=decoder_outputs.past_key_values, decoder_hidden_states=decoder_outputs.hidden_states, decoder_attentions=decoder_outputs.attentions, cross_attentions=decoder_outputs.cross_attentions, encoder_last_hidden_state=encoder_outputs.last_hidden_state, encoder_hidden_states=encoder_outputs.hidden_states, encoder_attentions=encoder_outputs.attentions, encoder_logits=encoder_logits, encoder_loss=encoder_loss ) def compute_encoder_loss( self, input_ids=None, attention_mask=None, decoder_attention_mask=None, encoder_outputs=None, labels=None, encoder_labels=None, ): return None ================================================ FILE: sage/spelling_correction/models/t5/multiclass.py ================================================ import torch.nn as nn from .encoder_task import T5ForConditionalGenerationEncoderTask class T5ForConditionalGenerationTokenMulticlass(T5ForConditionalGenerationEncoderTask): def __init__(self, config): super().__init__(config) self.clf_head = nn.Linear(config.d_model, 4, bias=False) def compute_encoder_loss( self, input_ids=None, attention_mask=None, decoder_attention_mask=None, encoder_outputs=None, labels=None, encoder_labels=None, label_ids=None ): if encoder_outputs is None: encoder_outputs = self.encoder( input_ids=input_ids, attention_mask=attention_mask, output_hidden_states=True, ) hidden_states = encoder_outputs[0] token_logits = self.clf_head(hidden_states) encoder_loss = None if encoder_labels is not None: loss_fct = nn.CrossEntropyLoss(ignore_index=-100) encoder_labels = encoder_labels.to(token_logits.device) encoder_loss = loss_fct(token_logits.view(-1, token_logits.size(-1)), encoder_labels.view(-1)) return encoder_loss ================================================ FILE: sage/spelling_correction/models/t5/multilabel.py ================================================ import torch.nn as nn from .encoder_task import T5ForConditionalGenerationEncoderTask class T5ForConditionalGenerationTokenMultilabel(T5ForConditionalGenerationEncoderTask): def __init__(self, config): super().__init__(config) self.clf_head = nn.Linear(config.d_model, 4, bias=False) def compute_encoder_loss( self, input_ids=None, attention_mask=None, label_attention_mask=None, encoder_outputs=None, labels=None, encoder_labels=None, encoder_lm_labels=None, label_ids=None ): if encoder_outputs is None: encoder_outputs = self.encoder( input_ids=input_ids, attention_mask=attention_mask, output_hidden_states=True, ) hidden_states = encoder_outputs[0] token_logits = self.clf_head(hidden_states) encoder_loss = None if encoder_labels is not None: loss_fct = nn.BCEWithLogitsLoss() encoder_labels = encoder_labels.to(token_logits.device) encoder_loss = loss_fct(token_logits, encoder_labels.float()) return encoder_outputs, encoder_loss, token_logits ================================================ FILE: sage/spelling_correction/models/t5/multilabel_lm.py ================================================ import torch.nn as nn from .multilabel import T5ForConditionalGenerationTokenMultilabel from .encoder_task import T5ForConditionalGenerationEncoderTask class T5ForConditionalGenerationTokenMultilabelLM(T5ForConditionalGenerationTokenMultilabel): def compute_encoder_loss( self, input_ids=None, attention_mask=None, label_attention_mask=None, encoder_outputs=None, labels=None, encoder_labels=None, label_ids=None, encoder_lm_labels=None ): if encoder_outputs is None: encoder_outputs = self.encoder( input_ids=input_ids, attention_mask=attention_mask, output_hidden_states=True, ) hidden_states = encoder_outputs[0] token_logits = self.clf_head(hidden_states) lm_logits = self.lm_head(hidden_states) encoder_loss = None if encoder_labels is not None: loss_fct = nn.BCEWithLogitsLoss() encoder_labels = encoder_labels.to(token_logits.device) encoder_loss = loss_fct(token_logits, encoder_labels.float()) if encoder_lm_labels is not None: loss_fct = nn.CrossEntropyLoss(ignore_index=-100) encoder_lm_labels = encoder_lm_labels.to(lm_logits.device) encoder_loss += loss_fct(lm_logits.view(-1, lm_logits.size(-1)), encoder_lm_labels.view(-1)) return encoder_outputs, encoder_loss, token_logits class T5ForConditionalGenerationLM(T5ForConditionalGenerationEncoderTask): def compute_encoder_loss( self, input_ids=None, attention_mask=None, label_attention_mask=None, encoder_outputs=None, labels=None, encoder_labels=None, label_ids=None, encoder_lm_labels=None ): if encoder_outputs is None: encoder_outputs = self.encoder( input_ids=input_ids, attention_mask=attention_mask, output_hidden_states=True, ) hidden_states = encoder_outputs[0] lm_logits = self.lm_head(hidden_states) loss_fct = nn.CrossEntropyLoss(ignore_index=-100) encoder_lm_labels = encoder_lm_labels.to(lm_logits.device) encoder_loss = loss_fct(lm_logits.view(-1, lm_logits.size(-1)), encoder_lm_labels.view(-1)) return encoder_outputs, encoder_loss, None ================================================ FILE: sage/spelling_correction/t5_correctors.py ================================================ """API to T5-based models for spelling correction. To load a model: from corrector import AvailableCorrectors model = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.fred_large.value) ... """ import os from typing import List, Optional, Union, Any import torch from tqdm.auto import tqdm from transformers import T5ForConditionalGeneration, AutoTokenizer from .corrector import Corrector class T5ModelForSpellingCorruption(Corrector): """T5-based models.""" def __init__(self, model_name_or_path: Union[str, os.PathLike]): """ Initialize the T5-type corrector from a pre-trained checkpoint. The latter can be either locally situated checkpoint or a name of a model on HuggingFace. NOTE: This method does not really load the weights, it just stores the path or name. :param model_name_or_path: the aforementioned name or path to checkpoint; :type model_name_or_path: str or os.PathLike; """ self.model_name_or_path = model_name_or_path self.max_model_length = 512 @classmethod def from_pretrained(cls, model_name_or_path: Union[str, os.PathLike]): """ Initialize the T5-type corrector from a pre-trained checkpoint. The latter can be either locally situated checkpoint or a name of a model on HuggingFace. :param model_name_or_path: the aforementioned name or path to checkpoint; :type model_name_or_path: str or os.PathLike :return: corrector initialized from pre-trained weights :rtype: object of :class:`T5ModelForSpellingCorruption` """ engine = cls(model_name_or_path) engine.model = T5ForConditionalGeneration.from_pretrained(model_name_or_path) engine.tokenizer = AutoTokenizer.from_pretrained(model_name_or_path) return engine def batch_correct( self, sentences: List[str], batch_size: int, prefix: Optional[str] = "", **generation_params, ) -> List[List[Any]]: """ Corrects multiple sentences. :param sentences: input sentences to correct; :type sentences: list of str :param batch_size: size of subsample of input sentences; :type batch_size: int :param prefix: some models need some sort of a prompting; :type prefix: str :param generation_params: parameters passed to `generate` method of a HuggingFace model; :type generation_params: dict :return: corresponding corrections :rtype: list of list of str """ if not hasattr(self, "model"): raise RuntimeError("Please load weights using `from_pretrained` method from one of the available models.") batches = [sentences[i:i + batch_size] for i in range(0, len(sentences), batch_size)] result = [] pb = tqdm(total=len(batches)) device = self.model.device for batch in batches: batch_prefix = [prefix + sentence for sentence in batch] with torch.inference_mode(): encodings = self.tokenizer.batch_encode_plus( batch_prefix, max_length=None, padding="longest", truncation=False, return_tensors='pt') for k, v in encodings.items(): encodings[k] = v.to(device) generated_tokens = self.model.generate( **encodings, **generation_params, max_length=encodings['input_ids'].size(1) * 1.5) ans = self.tokenizer.batch_decode(generated_tokens, skip_special_tokens=True) result.append(ans) pb.update(1) return result ================================================ FILE: sage/spelling_correction/training/__init__.py ================================================ ================================================ FILE: sage/spelling_correction/training/data_processor.py ================================================ import os import pickle import numpy as np import torch import Levenshtein from datasets import concatenate_datasets from torch.nn.utils.rnn import pad_sequence from .data_utils import make_ner_multiclass, make_ner_multilabel, make_ner_multilabel_delete, get_levenshtein_mask, \ get_datasets from ..corruptors import corruptors_names tasks_names = { "multiclass": make_ner_multiclass, "multilabel": make_ner_multilabel, "multilabel_delete": make_ner_multilabel_delete, } os.environ["TOKENIZERS_PARALLELISM"] = "false" class TextCollatorWithPadding: def __init__(self, tokenizer, model): self.tokenizer = tokenizer self.model = model def __call__(self, features): batch = {} for k, v in features[0].items(): if k == 'labels' or k == 'encoder_lm_labels': batch[k] = pad_sequence([torch.tensor(f[k]) for f in features], batch_first=True, padding_value=-100) elif isinstance(v, torch.Tensor) or isinstance(v, np.ndarray) or isinstance(v, list): batch[k] = pad_sequence([torch.tensor(f[k]) for f in features], batch_first=True, padding_value=self.tokenizer.pad_token_id) elif isinstance(v, str): batch[k] = [f[k] for f in features] else: batch[k] = torch.tensor([f[k] for f in features]) return batch class TextProcessor: def __init__(self, max_length, tokenizer, source_col, correct_col, corruptors=None, corrupt_mode='correct', encoder_tasks=None, truncate_targets=False, custom_mask=False): self.tokenizer = tokenizer self.max_length = max_length self.source_col = source_col self.correct_col = correct_col self.custom_mask = custom_mask self.corruptors = { lang: (corruptors_names[corruptors[lang].lower()] if corruptors[lang] else corruptors_names["identity"])() for lang in corruptors} self.corrupt_col = correct_col if corrupt_mode == 'correct' else source_col self.encoder_tasks = encoder_tasks self.truncate_targets = truncate_targets self.prefixes = {'ru': '', 'en': ''} def add_prefix(self, text, lang): prefix = self.prefixes[lang] if prefix: if text.startswith(prefix): return text return prefix + text return text @staticmethod def add_suffix(text): if text and text[-4:] == '': return text return text + '' def get_len_target_from_inputs(self, input_ids, mask, lang): decoded_corrupted_text = self.tokenizer.decode(input_ids, skip_special_tokens=True) if self.prefixes[lang]: decoded_corrupted_text = decoded_corrupted_text.replace(self.prefixes[lang], '') count_add = 0 count_del = 0 i = 0 for m in mask: if m == 2: count_add += 1 if m == -1: count_del += 1 continue i += 1 if i == len(decoded_corrupted_text): break return len(decoded_corrupted_text) - count_add + count_del def get_encoder_lm_labels(self, source, correct, mapping, tokenizer): changes = Levenshtein.editops(source, correct) changes_letters = [] for change in changes: if change[0] == 'delete': changes_letters.append((change[0], change[1], change[2], source[change[1]])) else: changes_letters.append((change[0], change[1], change[2], correct[change[2]])) change_i = 0 new_tokens = [] for token in mapping: text_token = list(source[token[0]:token[1]]) while change_i < len(changes_letters) and text_token: if changes_letters[change_i][1] >= token[0] and changes_letters[change_i][1] < token[1]: fixed_index = changes_letters[change_i][1] - token[0] if changes_letters[change_i][0] == 'insert': text_token[fixed_index] = changes_letters[change_i][3] + text_token[fixed_index] elif changes_letters[change_i][0] == 'replace': text_token[fixed_index] = changes_letters[change_i][3] elif changes_letters[change_i][0] == 'delete': text_token[fixed_index] = '' change_i += 1 else: break if text_token: joined_token = ''.join(text_token) new_tokens.append(joined_token if joined_token else tokenizer.mask_token) if change_i == len(changes_letters) - 1 and changes_letters[change_i][0] == 'insert': new_tokens[-1] = new_tokens[-1] + changes_letters[change_i][3] inputs = tokenizer(new_tokens, add_special_tokens=False).input_ids encoder_lm_labels = [i[0] if len(i) == 1 else -100 for i in inputs] return encoder_lm_labels + [-100] * (self.max_length - len(encoder_lm_labels)) def get_custom_mask(self, inputs, targets, langs): masks = [] for source, correct, lang in zip(inputs, targets, langs): masks.append(get_levenshtein_mask(source, correct, {'replace': 1, 'add': 2, 'swap': 3})) return masks def __call__(self, examples): langs = examples['lang'] inputs, _, char_masks = list( zip(*[self.corruptors[lang](x, self.tokenizer) if x else ['', '', []] for x, lang in zip(examples[self.corrupt_col], langs)])) input_encoding = self.tokenizer( list(map(self.add_prefix, inputs, langs)), max_length=self.max_length, truncation=True, padding='max_length', return_tensors='np', return_offsets_mapping=True, add_special_tokens=False ) if self.custom_mask: char_masks = self.get_custom_mask(inputs, examples[self.correct_col], langs) if self.truncate_targets: targets = [examples[self.correct_col][i][ :self.get_len_target_from_inputs(input_encoding['input_ids'][i], char_masks[i], langs[i])] for i in range(len(examples[self.correct_col]))] else: targets = examples[self.correct_col] target_encoding = self.tokenizer( list(map(self.add_suffix, targets)), max_length=self.max_length, truncation=True, padding='longest', return_tensors='np', add_special_tokens=False ) labels = target_encoding.input_ids labels[labels == self.tokenizer.pad_token_id] = -100 input_encoding['labels'] = labels input_encoding['source'] = examples[self.source_col] input_encoding['correct'] = examples[self.correct_col] if "tagging" in self.encoder_tasks: input_encoding['encoder_lm_labels'] = np.array([ self.get_encoder_lm_labels(self.add_prefix(i, l), self.add_prefix(t, l), mapping, self.tokenizer) for i, t, mapping, l in zip(inputs, targets, input_encoding['offset_mapping'], langs)]) if "multilabel_delete" in self.encoder_tasks: task_func = tasks_names["multilabel_delete"] encoder_labels = [] for i in range(len(char_masks)): encoder_label = task_func(len(input_encoding['input_ids'][i]), 3, [0 for _ in range(len(self.prefixes[langs[i]]))] + char_masks[i], input_encoding['offset_mapping'][i]) encoder_labels.append(encoder_label.astype(int)) input_encoding['encoder_labels'] = encoder_labels del input_encoding['offset_mapping'] return input_encoding def get_tokenized_datasets(tokenizer, format, data_files, force_tokenize, max_length, path_to_tokenized, source_col, correct_col, corruptors, corrupt_mode, encoder_tasks, truncate_targets, custom_mask, num_workers): raw_datasets = get_datasets(format, data_files) train_file = os.path.join(path_to_tokenized, 'train_tokenized.pkl') valid_file = os.path.join(path_to_tokenized, 'valid_tokenized.pkl') os.makedirs(path_to_tokenized, exist_ok=True) processor = TextProcessor(max_length, tokenizer, source_col, correct_col, corruptors, corrupt_mode, encoder_tasks, truncate_targets, custom_mask) if corruptors: train_tokenized = raw_datasets['train'].with_transform(processor) else: if os.path.isfile(train_file) and not force_tokenize: with open(train_file, 'rb') as infile: train_tokenized = pickle.load(infile) else: train_tokenized = raw_datasets['train'].map(processor, batched=True, remove_columns=raw_datasets['train'].column_names, keep_in_memory=False, num_proc=num_workers) with open(train_file, 'wb') as outfile: pickle.dump(train_tokenized, outfile) if len(raw_datasets.keys()) == 1: return train_tokenized, None if os.path.isfile(valid_file) and not force_tokenize: with open(valid_file, 'rb') as infile: valid_tokenized = pickle.load(infile) else: valid_tokenized = concatenate_datasets( [raw_datasets[key] for key in raw_datasets.keys() if key != 'train']).map( processor, batched=True, remove_columns=raw_datasets['train'].column_names, keep_in_memory=False, num_proc=num_workers) with open(valid_file, 'wb') as outfile: pickle.dump(valid_tokenized, outfile) return train_tokenized, valid_tokenized ================================================ FILE: sage/spelling_correction/training/data_utils.py ================================================ import Levenshtein import numpy as np from datasets import load_dataset, concatenate_datasets, DatasetDict def get_levenshtein_mask(source, correct, error2idx): mask = [[0] for _ in range(len(correct))] changes = Levenshtein.editops(correct, source) changes_letters = [] for change in changes: if change[0] == 'delete' or change[0] == 'replace': changes_letters.append((change[0], change[1], change[2], correct[change[1]])) else: changes_letters.append((change[0], change[1], change[2], source[change[2]])) swap_changes = [] i = 0 while i < len(changes_letters) - 1: change_1 = changes_letters[i] change_2 = changes_letters[i + 1] if change_1[0] == 'insert' and change_2[0] == 'delete' and change_1[3] == change_2[3] and change_2[1] - \ change_1[1] == 1: swap_changes.append(('swap', change_1[1], change_1[2], change_1[3])) swap_changes.append(('swap', change_2[1], change_1[2] + 1, change_2[3])) i += 2 else: swap_changes.append(change_1) i += 1 if i == len(changes_letters) - 1: swap_changes.append(changes_letters[i]) for change in swap_changes: if change[0] == 'delete': mask[change[1]][0] = -1 elif change[0] == 'replace': mask[change[1]][0] = error2idx['replace'] elif change[0] == 'insert': mask[change[1] - 1].append(error2idx['add']) elif change[0] == 'swap': mask[change[1]][0] = error2idx['swap'] new_mask = [] for m in mask: new_mask.extend(m) return new_mask def make_ner_multiclass(num_tokens, num_classes, char_mask, mapping): token_mask = np.zeros(num_tokens) num_labels = max(char_mask) + 1 i_token = 0 for i_char in range(len(char_mask)): if char_mask[i_char] != 0: while i_token < len(token_mask): if mapping[i_token][0] <= i_char < mapping[i_token][1]: token_mask[i_token] = char_mask[i_char] break i_token += 1 return token_mask def make_ner_multilabel(num_tokens, num_classes, char_mask, mapping): token_mask = np.zeros((num_tokens, num_classes)) i_token = 0 for i_char in range(len(char_mask)): if char_mask[i_char] != 0: while i_token < len(token_mask): if mapping[i_token][0] <= i_char < mapping[i_token][1]: token_mask[i_token][char_mask[i_char] - 1] = 1 break i_token += 1 return token_mask def make_ner_multilabel_delete(num_tokens, num_classes, char_mask, mapping): token_mask = np.zeros((num_tokens, num_classes + 1)) i_token = 0 for i_char in range(sum(char >= 0 for char in char_mask)): if char_mask[i_char] == -1: while i_token < len(token_mask): if mapping[i_token][0] <= i_char < mapping[i_token][1]: token_mask[i_token][num_classes] = 1 break i_token += 1 del char_mask[i_char] if char_mask[i_char] > 0: while i_token < len(token_mask): if mapping[i_token][0] <= i_char < mapping[i_token][1]: token_mask[i_token][char_mask[i_char] - 1] = 1 break i_token += 1 return token_mask def get_datasets(format, data_files): datasets_dict = {} for split, files in data_files.items(): ds = load_dataset( format, data_files=files ) for lang in ds.keys(): ds[lang] = ds[lang].add_column('lang', [lang] * len(ds[lang])) datasets_dict[split] = concatenate_datasets([ds[key] for key in ds]).shuffle(seed=42) return DatasetDict(datasets_dict) ================================================ FILE: sage/spelling_correction/training/trainer.py ================================================ import os import torch from torch.optim import AdamW from tqdm.auto import tqdm from evaluate import load from transformers import Adafactor, get_scheduler optimizers_names = { 'adamw': lambda parameters, lr, weight_decay: AdamW(parameters, lr=lr, weight_decay=weight_decay), 'adafactor': lambda parameters, lr, weight_decay: Adafactor(parameters, lr=lr, weight_decay=weight_decay, scale_parameter=False, relative_step=False) } class AverageMeter: def __init__(self): self.count = None self.sum = None self.avg = None self.reset() def reset(self): self.avg = 0 self.sum = 0 self.count = 0 def update(self, val, n=1): self.sum += val * n self.count += n self.avg = self.sum / self.count class SageTrainer: def __init__(self, accelerator, model, tokenizer, optimizer_name, scheduler_type, train_loader, valid_loader, metric, learning_rate=1e-4, weight_decay=0.01, num_training_epochs=10, gradient_accumulation_steps=1, is_valid=True, save_steps=1000, checkpoint_path='checkpoints', mode='pretrain', gen_params={}): self.accelerator = accelerator self.model = model self.tokenizer = tokenizer self.optimizer_name = optimizer_name self.scheduler_type = scheduler_type self.train_loader = train_loader self.valid_loader = valid_loader self.optimizer = None self.scheduler = None self.progress_bar = None self.metric = load(metric) self.learning_rate = learning_rate self.weight_decay = weight_decay self.num_training_epochs = num_training_epochs self.gradient_accumulation_steps = gradient_accumulation_steps self.is_valid = is_valid self.save_steps = save_steps self.checkpoint_path = checkpoint_path self.gen_params = gen_params assert mode in ['pretrain', 'finetune'], 'mode should be either "pretrain" or "finetune"' self.mode = mode self.init_optimizer() self.init_scheduler() self.init_progress_bar() self.model, self.optimizer, self.scheduler, self.train_loader, self.valid_loader = self.accelerator.prepare( self.model, self.optimizer, self.scheduler, self.train_loader, self.valid_loader) def init_optimizer(self): no_decay = ['bias', "layer_norm.weight"] optimizer_grouped_parameters = [ { 'params': [p for n, p in self.model.named_parameters() if any([f in n for f in no_decay])], 'weight_decay': 0. }, { 'params': [p for n, p in self.model.named_parameters() if not any([f in n for f in no_decay])], 'weight_decay': self.weight_decay } ] self.optimizer = optimizers_names[self.optimizer_name](optimizer_grouped_parameters, lr=self.learning_rate, weight_decay=self.weight_decay) def init_scheduler(self): training_steps = len(self.train_loader) * self.num_training_epochs self.scheduler = get_scheduler( self.scheduler_type, optimizer=self.optimizer, num_warmup_steps=0, num_training_steps=training_steps // self.gradient_accumulation_steps ) def init_progress_bar(self): self.progress_bar = tqdm(total=len(self.train_loader) * self.num_training_epochs, disable=not self.accelerator.is_local_main_process) def save_model(self, folder, name): save_dir = os.path.join(folder, name) os.makedirs(save_dir, exist_ok=True) self.accelerator.save_model(self.model, save_dir) def fit(self): for epoch in range(self.num_training_epochs): self.train_epoch(epoch) self.accelerator.wait_for_everyone() if self.is_valid: self.valid_epoch(epoch) self.accelerator.wait_for_everyone() self.save_model(self.checkpoint_path, f"epoch_{epoch}") self.accelerator.end_training() def train_epoch(self, epoch): self.model.train() for step, batch in enumerate(self.train_loader): if 'source' in batch and 'correct' in batch: _ = batch.pop('source') _ = batch.pop('correct') with self.accelerator.accumulate(self.model): outputs = self.model(**batch) loss = outputs.loss self.accelerator.backward(loss) self.optimizer.step() self.scheduler.step() self.optimizer.zero_grad() self.progress_bar.update() log_dict = {"Train/lr": self.optimizer.param_groups[0]["lr"]} for key in outputs.keys(): if 'loss' in key: log_dict[f'Train/{key}'] = outputs[key].item() self.accelerator.log(log_dict, step=epoch * len(self.train_loader) + step) if (self.progress_bar.n + 1) % self.save_steps == 0: self.save_model(self.checkpoint_path, f"step_{self.progress_bar.n + 1}") def valid_epoch(self, epoch): self.model.eval() running_loss = AverageMeter() sources = [] corrections = [] answers = [] for step, batch in enumerate(tqdm(self.valid_loader, disable=not self.accelerator.is_local_main_process)): sources.extend(batch.pop('source')) corrections.extend(batch.pop('correct')) with torch.no_grad(): outputs = self.model(**batch) if self.mode == 'finetune': pred_ids = self.accelerator.unwrap_model(self.model).generate(input_ids=batch['input_ids'], attention_mask=batch[ 'attention_mask'], **self.gen_params) answers.extend(self.tokenizer.batch_decode(pred_ids, skip_special_tokens=True)) running_loss.update(outputs.loss.item(), batch['input_ids'].size(0)) if self.mode == 'finetune': metrics['custom_metric'] = self.metric.compute(predictions=answers, references=corrections) metrics = {f"Valid/{k}": v for k, v in metrics.items()} else: metrics = {} metrics['Valid/loss'] = running_loss.avg self.accelerator.log(metrics, step=epoch) ================================================ FILE: sage/spelling_corruption/__init__.py ================================================ from .corruptor import WordAugCorruptor, CharAugCorruptor, SBSCCorruptor from .configuration_corruptor import WordAugConfig, CharAugConfig, SBSCConfig from .sbsc.labeler import TyposTypes __all__ = [ "WordAugCorruptor", "CharAugCorruptor", "SBSCCorruptor", "WordAugConfig", "CharAugConfig", "SBSCConfig", "TyposTypes", ] ================================================ FILE: sage/spelling_corruption/configuration_corruptor.py ================================================ """Configuration classes for corruption methods. Currently, three options are maintained: word- and char-level Augmentex and SBSC (Statistic-based spelling corruption). Examples: from corruptor import WordAugCorruptor config = WordAugConfig() corruptor = WordAugCorruptor.from_config(config) ... from corruptor import SBSCCorruptor config = SBSCConfig( lang="rus", reference_dataset_name_or_path="RUSpellRU" ) corruptor = SBSCCorruptor.from_config(config) """ import os from dataclasses import dataclass, field from typing import List, Dict, Union, Optional @dataclass class BaseConfig: lang: str = field( default="rus", metadata={"help": "Source language rus/eng"} ) random_seed: Optional[int] = field( default=42, metadata={"help": "The random state for the application of augmentations."}, ) @dataclass class WordAugConfig(BaseConfig): """Word-level Augmentex config. Attributes: min_aug (int): The minimum amount of augmentation. Defaults to 1. max_aug (int): The maximum amount of augmentation. Defaults to 5. unit_prob (float): Percentage of the phrase to which augmentations will be applied. Defaults to 0.3. """ min_aug: Optional[int] = field( default=1, metadata={"help": "The minimum amount of augmentation. Defaults to 1."}, ) max_aug: Optional[int] = field( default=5, metadata={"help": "The maximum amount of augmentation. Defaults to 5."}, ) unit_prob: Optional[float] = field( default=0.3, metadata={ "help": "Percentage of the phrase to which augmentations will be applied. Defaults to 0.3."} ) @dataclass class CharAugConfig(WordAugConfig): """Char-level Augmentex config. Attributes: min_aug (int): The minimum amount of augmentation. Defaults to 1. max_aug (int): The maximum amount of augmentation. Defaults to 5. unit_prob (float): Percentage of the phrase to which augmentations will be applied. Defaults to 0.3. mult_num (int): Maximum repetitions of characters. Defaults to 5. """ mult_num: Optional[int] = field( default=5, metadata={"help": "Maximum repetitions of characters. Defaults to 5."}, ) @dataclass class SBSCConfig(BaseConfig): """Config for statistic-based spelling corruption. Attributes: lang (str): source language; typos_count (List[int]): number of typos per sentence; stats (Dict[str, Dict[str, List[float]]]): types of typos and their absolute and relative positions in a sentence; confusion_matrix (Dict[str, Dict[str, int]]): Candidate replacements with corresponding frequencies; skip_if_position_not_found (bool): Whether to search for suitable position in a sentence when position is not found in interval; reference_dataset_name_or_path (bool): Path to or name of reference dataset reference_dataset_split (str): Dataset split to use when acquiring statistics. """ typos_count: Optional[List[int]] = field( default=None, metadata={"help": "Number of errors per sentence"}, ) stats: Optional[Dict[str, Dict[str, List[float]]]] = field( default=None, metadata={"help": "Relative and absolute positions of errors of corresponding types"}, ) confusion_matrix: Optional[Dict[str, Dict[str, int]]] = field( default=None, metadata={"help": "Candidate replacements with corresponding frequencies"}, ) skip_if_position_not_found: bool = field( default=True, metadata={ "help": "Whether to search for suitable position in a sentence when position is not found in interval"}, ) reference_dataset_name_or_path: Optional[Union[str, os.PathLike]] = field( default="RUSpellRU", metadata={"help": "Path to or name of reference dataset"}, ) reference_dataset_split: str = field( default="train", metadata={"help": "Dataset split to use when acquiring statistics."}, ) ================================================ FILE: sage/spelling_corruption/corruptor.py ================================================ """API to available methods of spelling corruption. Currently, three options are available: word- and char-level Augmentex and Statistical-based spelling corruption (SBSC). Examples: from configuration_corruptor import CharAugConfig config = CharAugConfig(min_aug=10, max_aug=50, unit_prob=0.5) corruptor = CharAugCorruptor.from_config(config) print(corruptor.corrupt(sentence)) ... corruptor = SBSCCorruptor.from_default_config() print(corruptor.corrupt(sentence)) """ import dataclasses from dataclasses import asdict from typing import List, Union, Optional from abc import ABCMeta, abstractmethod from augmentex.char import CharAug from augmentex.word import WordAug from .sbsc.sbsc import StatisticBasedSpellingCorruption from .configuration_corruptor import WordAugConfig, CharAugConfig, SBSCConfig class Corruptor(metaclass=ABCMeta): """Base class for all corruptors. Attributes: config (Dict[str, Any]): config for every particular corruption class; engine (Union[WordAugCorruptor, CharAugCorruptor, SBSCCorruptor]): corruptor class; """ engine = None def __init__(self): self.config = asdict(self.get_default_config()) @classmethod def from_config(cls, config: Union[WordAugConfig, CharAugConfig, SBSCConfig]): """Initialize corruptor from a given config. Args: config (Union[WordAugConfig, CharAugConfig, SBSCConfig]): config for every particular corruption class; Returns: particular corruptor class initialized from a given config; """ corruptor = cls() corruptor.config = {field.name: getattr(config, field.name) for field in dataclasses.fields(config)} corruptor.engine = corruptor.engine(**corruptor.config) return corruptor @classmethod def from_default_config(cls): """Initialize corruptor from a default config. Returns: particular corruptor class initialized from a default config; """ corruptor = cls() corruptor.engine = corruptor.engine(**corruptor.config) return corruptor @abstractmethod def corrupt(self, sentence: str, action: Optional[str] = None) -> str: pass @abstractmethod def batch_corrupt( self, sentences: List[str], action: Optional[str] = None, batch_prob: Optional[float] = 0.3) -> List[str]: pass @staticmethod @abstractmethod def get_default_config(): pass class AugCorruptor(Corruptor, metaclass=ABCMeta): """Base class for Augmentex-based corruptors.""" def corrupt(self, sentence: str, action: Optional[str] = None) -> str: return self.engine.augment(sentence, action=action) def batch_corrupt( self, sentences: List[str], action: Optional[str] = None, batch_prob: Optional[float] = 0.3) -> List[str]: return self.engine.aug_batch(sentences, batch_prob=batch_prob, action=action) class WordAugCorruptor(AugCorruptor): engine = WordAug @staticmethod def get_default_config(): return WordAugConfig() class CharAugCorruptor(AugCorruptor): engine = CharAug @staticmethod def get_default_config(): return CharAugConfig() class SBSCCorruptor(Corruptor): engine = StatisticBasedSpellingCorruption def corrupt(self, sentence: str, action: Optional[str] = None) -> str: return self.engine.corrupt(sentence) def batch_corrupt(self, sentences: List[str], action: Optional[str] = None, batch_prob: Optional[float] = 0.3) -> List[str]: return self.engine.batch_corrupt(sentences) @staticmethod def get_default_config(): return SBSCConfig() ================================================ FILE: sage/spelling_corruption/sbsc/__init__.py ================================================ ================================================ FILE: sage/spelling_corruption/sbsc/base_classes.py ================================================ """Base classes for misspellings. Includes parent abstract class and corresponding APIs for each type of errors, as well as API to discrete distributions (`class Distribution`). """ import logging from abc import ABCMeta, abstractmethod from typing import Optional, Callable, List import numpy as np from .typings_positions_conditions import initialize_conditions from ...utils.lang_utils import INSERTION_OPTIONS conditions = initialize_conditions() MISSPELLINGS = {} def register_misspelling(cls): MISSPELLINGS[cls.description()] = cls() class Distribution: """Emulates discrete distribution.""" def __init__(self, evidences: List[int], exclude_zero: bool): if exclude_zero: evidences = [elem for elem in evidences if elem != 0] self.values, counts = np.unique(evidences, return_counts=True) self.p = counts / sum(counts) def sample(self, rng: np.random.default_rng): if len(self.values) == 0: raise ValueError("You cannot sample from empty distribution, provide some statistics first") value = rng.choice(self.values, size=1, p=self.p)[0] return value class Typo(metaclass=ABCMeta): """Base class for all handlers. Attributes: condition (typings_positions_conditions.Condition): condition for appropriate position of a typo in a sentence. """ def __init__(self): self.condition = None if self.desc is None else conditions[self.desc] @staticmethod @abstractmethod def description(): """We will need this in object of Fabric class when instantiating an object from dict of possible misspellings. """ @property @abstractmethod def desc(self): """We need this to identify particular type of error And use it while initialization. """ @abstractmethod def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: """Insert typo in particular `pos` in a `sentence`. Args: pos (int): position to insert typo; sentence (str): original sentence; lang (str): language code; rng (np.random.default_rng): random generator; substitutions (Distribution): optional, set of options for substitution; """ def adjust_position( self, pos: int, most_left: int, most_right: int, skip_if_position_not_found: bool, used_positions: List[int], rng: np.random.default_rng, lang: str, sentence: Optional[str] = None ) -> int: """Select appropriate position in interval from `most_left` to `most_right` starting from `pos` in a `sentence`. Args: pos (int): starting position; most_left (int): starting position of interval; most_right (int): ending position of interval; skip_if_position_not_found (bool): whether to skip, when appropriate position for typo cannot be found; used_positions (List[int]): array of taken positions; rng (np.random.default_rng): random generator; lang (str): language code; sentence (str): original sentence; """ effective_tries = (most_right - most_left) * 2 cnt_tries = 0 while self.condition.condition(pos, used_positions, sentence, lang): pos = rng.integers(low=most_left, high=most_right, size=1)[0] cnt_tries += 1 if cnt_tries == effective_tries: logging.info("Falling back on {}".format(self.desc)) pos = self._fallback(skip_if_position_not_found)(used_positions, lang, most_left, most_right, sentence) break return pos def _fallback(self, skip_if_position_not_found: bool) -> Callable: if skip_if_position_not_found: return self._skip_fallback_strategy return self._default_fallback_strategy def _default_fallback_strategy(self, used_positions: List[int], lang: str, most_left: Optional[int] = None, most_right: Optional[int] = None, sentence: Optional[str] = None ) -> Optional[int]: """Iterate through the whole `sentence` and search for appropriate position. When one found, stop iterating. Args: used_positions (List[int]): array of taken positions; lang (str): language code; most_left (int): starting position of interval; most_right (int): ending position of interval; sentence (str): original sentence; """ pos = None for i, ch in enumerate(sentence): if self.condition.condition(i, used_positions, sentence, lang): continue pos = i break return pos @staticmethod def _skip_fallback_strategy(used_positions: List[int], lang: str, most_left: Optional[int] = None, most_right: Optional[int] = None, sentence: Optional[str] = None, ) -> Optional[int]: """Skipping current typo if there is no appropriate position for it.""" return None class Fabric: """This acts as somewhat factory for the handlers. Attributes: used_positions (List[int]): array of taken positions; """ def __init__(self): self.used_positions = [] def finish(self, pos: int, typo: str) -> None: """Alter `used_positions` after typo has been inserted. Args: pos (int): position of typo; typo (str): type of typo; """ self.used_positions.append(pos) executor = conditions[typo] executor.alter_positions(pos, self.used_positions) @staticmethod def get_handler(typo: str) -> Typo: return MISSPELLINGS[typo] @register_misspelling class Insertion(Typo): """API to insertion typo. Insertion type of error implies insertion of unnecessary characters in an original sentence. Examples of error: 1. Error -> Errror; 2. Мама дома мыла раму -> Марма дома мыла раму; """ @staticmethod def description(): return "insertion" @property def desc(self): return "insertion" def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: insertions = getattr(INSERTION_OPTIONS, lang) insertion = rng.choice(insertions, size=1)[0] sentence = sentence[:pos] + insertion + sentence[pos:] return sentence @register_misspelling class Deletion(Typo): """API to deletion typo. Deletion type of error implies deletion of characters in an original sentence. Examples of error: 1. Error -> Eror; 2. Мама дома мыла раму -> Мма дома мыла раму; """ @staticmethod def description(): return "deletion" @property def desc(self): return "deletion" def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: sentence = sentence[:pos] + sentence[min(len(sentence), pos + 1):] return sentence @register_misspelling class Transposition(Typo): """API to transposition typo. Transposition type of error implies swapping two adjacent characters. Examples of error: 1. Error -> Errro; 2. Мама дома мыла раму -> Маам дома мыла раму; """ @staticmethod def description(): return "transposition" @property def desc(self): return "transposition" def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: sentence = sentence[:pos] + sentence[pos + 1] + sentence[pos] + sentence[min(len(sentence), pos + 2):] return sentence @register_misspelling class Substitution(Typo): """API to substitution typo. Substitution type of error implies substitution of one character in an original sentence. Examples of error: 1. Error -> Errar; 2. Мама дома мыла раму -> Мама Мома мыла раму; """ @staticmethod def description(): return "substitution" @property def desc(self): return "substitution" def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: substitution = substitutions.sample(rng) if sentence[pos].isupper(): substitution = substitution.upper() sentence = sentence[:pos] + substitution + sentence[min(len(sentence), pos + 1):] return sentence @register_misspelling class ExtraSeparator(Typo): """API to extra separator typo. ExtraSeparator type of error implies insertion of extra gap in an original sentence. Examples of error: 1. Error -> Err or; 2. Мама дома мыла раму -> Ма ма дома мыла раму; """ @staticmethod def description(): return "extra_separator" @property def desc(self): return "extra_separator" def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: sentence = sentence[:pos] + " " + sentence[pos:] return sentence @register_misspelling class MissingSeparator(Typo): """API to missing separator typo. MissingSeparator type of error implies deletion of a gap in an original sentence. Examples of error: 1. Error specifically made for this example-> Errorspecifically made for this example; 2. Мама дома мыла раму -> Мама домамыла раму; """ @staticmethod def description(): return "missing_separator" @property def desc(self): return "missing_separator" def apply( self, pos: int, sentence: str, lang: str, rng: np.random.default_rng, substitutions: Optional[Distribution] = None ) -> str: sentence = sentence[:pos] + sentence[min(len(sentence), pos + 1):] return sentence ================================================ FILE: sage/spelling_corruption/sbsc/labeler.py ================================================ """ This module provides functionality to detect type and position of mistyping given source sentence and corresponding corrected sentence. """ import re import enum import string from typing import List, Dict import numpy as np from tqdm.auto import tqdm class TyposTypes(enum.Enum): """Available types of errors.""" insertion = "Extra character" deletion = "Missing character" substitution = "Wrong character" transposition = "Two adjacent characters shuffled" missing_separator = "Missing gap" extra_separator = "Extra gap" def make_levenshtein_table(source, correct, allow_transpositions=False, removal_cost=1.0, insertion_cost=1.0, replace_cost=1.0, transposition_cost=1.0): first_length, second_length = len(source), len(correct) table = np.zeros(shape=(first_length + 1, second_length + 1), dtype=float) for i in range(1, second_length + 1): table[0][i] = i for i in range(1, first_length + 1): table[i][0] = i for i, first_word in enumerate(source, 1): for j, second_word in enumerate(correct, 1): if first_word == second_word: table[i][j] = table[i-1][j-1] else: table[i][j] = min((table[i-1][j-1] + replace_cost, table[i][j-1] + removal_cost, table[i-1][j] + insertion_cost)) if (allow_transpositions and min(i, j) >= 2 and first_word == correct[j-2] and second_word == source[i-2]): table[i][j] = min(table[i][j], table[i-2][j-2] + transposition_cost) return table def process_group(source: str, correction: str, levenshtein_table: np.array) -> \ [Dict[str, List[int]], Dict[str, List[int]], Dict[str, Dict[str, int]]]: """ Identify type of mistyping and its position. Trace back table of Levenshtein distances and detect type of mistyping by the node from which it came from. Args: source (str): source sequence. correction (str): corrected sequence. levenshtein_table (np.array): table filled with distances between prefixes. Returns: d: Dict[str, List[int]], distribution of mistypings in sequence. d_src: Dict[str, List[int]], analogously, but positions are related to source sentence. confusion_matrix: Dict[str, Dict[str, int]], confusion matrix. """ source = source.lower() correction = correction.lower() i = len(source) j = len(correction) d = {typo_type.name: [] for typo_type in TyposTypes} d_src = {typo_type.name: [] for typo_type in TyposTypes} confusion_matrix = {} while i > 0 and j > 0: # If characters are same if source[i-1] == correction[j-1]: i -= 1 j -= 1 # Substitution elif levenshtein_table[i][j] == levenshtein_table[i - 1][j - 1] + 1: d["substitution"].append(j - 1) d_src["substitution"].append(i - 1) correct_char = correction[j - 1] source_char = source[i - 1] if correct_char in confusion_matrix: if source_char in confusion_matrix[correct_char]: confusion_matrix[correct_char][source_char] += 1 else: confusion_matrix[correct_char][source_char] = 1 else: confusion_matrix[correct_char] = {source_char: 1} j -= 1 i -= 1 # Insertion elif levenshtein_table[i][j] == levenshtein_table[i - 1][j] + 1: if source[i - 1] == " ": d["extra_separator"].append(j) d_src["extra_separator"].append(i - 1) else: d["insertion"].append(j) d_src["insertion"].append(i - 1) i -= 1 # Deletion elif levenshtein_table[i][j] == levenshtein_table[i][j - 1] + 1: if j < len(source) and correction[j - 1] == " ": d["missing_separator"].append(j - 1) d_src["missing_separator"].append(i) else: d["deletion"].append(j - 1) d_src["deletion"].append(i) j -= 1 # Transposition elif min(i, j) >= 2 and levenshtein_table[i][j] == levenshtein_table[i-2][j-2] + 1: d["transposition"].append(j - 2) d_src["transposition"].append(i - 2) i -= 2 j -= 2 if i > 0: d["insertion"].extend([0] * i) d_src["insertion"].extend(list(range(i))) if j > 0: d["deletion"].extend(list(range(j))) d_src["deletion"].extend([0] * j) return d, d_src, confusion_matrix def process_mistypings( src: List[str], corr: List[str], ) -> [Dict[str, Dict[str, List[float]]], Dict[str, Dict[str, int]], List[int]]: """ Processes allignment groups and outputs mistypings distribution. We have following classification of mistypings that goes like this: 1. insertion ("туберкПулёз" -> "туберкулёз") 2. deletion ("тубркулёз" -> "туберкулёз") 3. substitution ("тубИркулёз" -> "туберкулёз") 4. transposition ("тубРЕкулёз" -> "туберкулёз") 5. extra_separator ("туберкулёз" -> "тубе ркулёз") 6. missing_separator ("острый туберкулёз" -> "острыйтуберкулёз") Args: src (List[str]): original sequences with mistypings. corr (List[str]): corrected sequences. Returns: global_stats: Dict[str, Dict[str, List[float]]], distributions of positions across the whole corpus. global_cm: Dict[str, Dict[str, int]], confusion matrix on the whole corpus. mistypings_cnt: List[int], number of mistypings in each sentence. """ global_stats = {typo_type.name: {"abs": [], "rel": []} for typo_type in TyposTypes} global_cm = {} mistypings_cnt = [] pattern = string.punctuation.replace("-", "") l = len(src) for source, correction in tqdm(zip(src, corr), total=l): source = re.sub(r"[{}]".format(pattern), "", source.lower().strip()) correction = re.sub(r"[{}]".format(pattern), "", correction.lower().strip()) dp = make_levenshtein_table(source, correction, allow_transpositions=True) # We gather distributions from source sentences, NOT from corrections _, local_stats, local_cm = process_group(source, correction, dp) mistypings_cnt.append(sum((len(v) for _, v in local_stats.items()))) for typo, positions in local_stats.items(): global_stats[typo]["abs"].extend(positions) global_stats[typo]["rel"].extend([0. if len(source) == 0 else pos / len(source) for pos in positions]) for correct_char, candidates in local_cm.items(): if correct_char not in global_cm: global_cm[correct_char] = {} for candidate, cnt in candidates.items(): if candidate in global_cm[correct_char]: global_cm[correct_char][candidate] += cnt else: global_cm[correct_char][candidate] = cnt return global_stats, global_cm, mistypings_cnt ================================================ FILE: sage/spelling_corruption/sbsc/model.py ================================================ """ This module provides the main functionality to make statistical mistypings that is embodied in Model class. """ import math from functools import reduce from typing import List, Dict, Optional, Union import numpy as np from .base_classes import Fabric, Distribution from .labeler import TyposTypes from ...utils.lang_utils import SUBSTITUTION_OPTIONS, AVAILABLE_LANG_CODES class Model: """Statistical model parametrized by fetched distributions. Given parallel corpus, number of typos per sentence, types of error and their corresponding positions and substitution statistics are first gathered. Raw statistics are then fed to `Model` and normalized to appropriate discrete distributions. `Model` is parametrized by these distributions, and is used to corrupt text in a statistic-based manner. Attributes: debug_mode (bool): used for tests purposes; stats (Dict[str, List[int]]): used for tests purposes; lang (str): language of original text; skip_if_position_not_found (bool): whether to skip typo, when appropriate position cannot be found; Usage: from labeler import process_mistypings sources, corrections = load_data(...) typos_cnt, cm, stats = process_mistypings(sources, corrections) model = Model(typos_cnt, stats, cm, True, "ru") print(model.transform(clean_sentence)) """ names = [typo_type.name for typo_type in TyposTypes] def __init__( self, typos_count: List[int], stats: Dict[str, Dict[str, List[float]]], confusion_matrix: Dict[str, Dict[str, int]], skip_if_position_not_found: bool, lang: str, debug_mode: bool = False, random_seed: int = 42 ): # For debugging purposes only self.debug_mode = debug_mode self.stats = { "used_positions_pre": [], "used_positions_after": [], "pos": [], } self.rng = np.random.default_rng(random_seed) self.validate_inputs(stats, confusion_matrix, typos_count, lang) self.lang = lang.strip("_ ").lower() self.skip_if_position_not_found = skip_if_position_not_found # Number of mistypings per sentence self._register_distribution("number_of_errors_per_sent", typos_count, False) # Type of mistypings typos_cnt = {typo: len(v["abs"]) for typo, v in stats.items()} typos = reduce(lambda x, y: x + y, [[k] * v for k, v in typos_cnt.items()]) self._register_distribution("type_of_typo", typos) # Relative positions of mistypings self._bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] for typo, v in stats.items(): # To avoid 1.s being thrown in 11th bucket rel_positions = [pos if pos < 1. else pos - 0.00001 for pos in v["rel"]] buckets = np.digitize(rel_positions, self._bins) self._register_distribution(typo + "_positions", buckets) # Substitutions (confusion matrix) for ch, candidates in confusion_matrix.items(): counts = reduce(lambda x, y: x + y, [[k] * v for k, v in candidates.items()]) self._register_distribution("substitutions_for_{}".format(ord(ch)), counts) @classmethod def validate_inputs(cls, stats: Dict[str, Dict[str, List[float]]], confusion_matrix: Dict[str, Dict[str, int]], typos_counts: List[int], lang: str): lang = lang.strip("_ ").lower() if lang not in AVAILABLE_LANG_CODES: raise ValueError( "Wrong language code: {}. Available codes are {}".format(lang, " ".join(AVAILABLE_LANG_CODES))) if len(stats) == 0: raise ValueError("Stats are empty, you should provide some") total_pos_num = 0 for k, v in stats.items(): if k not in cls.names: raise ValueError("You provided stats in wrong format, the key {} is not expected".format(k)) if len(v["abs"]) != len(v["rel"]): raise ValueError("Your inputs' lengths in stats (abs / rel) do not match for {}".format(k)) illegal_positions = [i for i, elem in enumerate(v["abs"]) if elem < 0] if len(illegal_positions) != 0: raise ValueError("Provide non-negative values for absolute positions for {} at positions {}".format( k, illegal_positions)) illegal_positions = [i for i, elem in enumerate(v["rel"]) if elem < 0 or elem > 1] if len(illegal_positions) != 0: raise ValueError("Provide values between 0 and 1 for relative positions for {} at positions {}".format( k, illegal_positions)) total_pos_num += len(v["abs"]) if total_pos_num == 0: raise ValueError("Provide some actual statistics") if len(typos_counts) == 0: raise ValueError("Typos counts are empty, you should provide some") if min(typos_counts) < 0: raise ValueError("Provide non-negative number of errors") if len(confusion_matrix) == 0 and "substitution" in stats and len(stats["substitution"]["abs"]) > 0: raise ValueError("Confusion matrix is empty, but substitution is in stats") for k, v in confusion_matrix.items(): if len(k) != 1: raise ValueError("Wrong format of key {} in confusion matrix".format(k)) for sub, count in v.items(): if len(sub) != 1: raise ValueError("Wrong format of substitution {} in confusion matrix".format(sub)) if count < 0: raise ValueError("Provide non-negative value for count for key {} and substitution {}".format( k, sub)) def _register_distribution( self, distribution: str, evidences: Union[List[int], np.array], exclude_zero: Optional[bool] = False): if hasattr(self, distribution): raise ValueError("You already defined that distribution {}".format(distribution)) d = Distribution(evidences, exclude_zero) setattr(self, distribution, d) def _factorization_scheme(self, interval_idx: int, sequence_length: int) -> [int, int]: """Calculates exact absolute edge positions in a sentence, considering relative positions in a sentence. Args: interval_idx (int): interval id ranging from 1 to 10, representing equal non-overlaping semi-open intervals in [0,1]; sequence_length (int): number of characters in a sentence; """ left, right = self._bins[interval_idx - 1], self._bins[interval_idx] most_left = math.ceil(sequence_length * left) most_right = math.ceil(sequence_length * right) return most_left, most_right def transform(self, sentence: str): """Spelling corruption procedure. The algorithm follows consequtive steps: 1. Sample number of errors; 2. For each error sample its type and corresponding interval in a sentence; 3. Calculate absolute start and ending positions for typo; 4. In a given interval find appropriate position for typo; 5. Insert typo; Args: sentence (str): original sentence; rng (np.random.default_rng): random generator; Returns: sentence (str): original sentence, but with errors; """ # Sample number of mistypings num_typos = self.number_of_errors_per_sent.sample(self.rng) fabric = Fabric() for _ in range(num_typos): # take len() for every typo, because with each # typo length of the sentence changes l = len(sentence) # sample typo and corresponding interval for position typo = self.type_of_typo.sample(self.rng) handler = fabric.get_handler(typo) position_distribution = getattr(self, typo + "_positions") # sample bin a.k.a. interval for typo's position # and initial exact position inside this interval effective_tries = l most_left, most_right = -1, -1 while effective_tries >= 0: interval_idx = position_distribution.sample(self.rng) most_left, most_right = self._factorization_scheme(interval_idx, l) if most_right - most_left >= 1: # for fixed bins that means length of sentence < 10 break effective_tries -= 1 if most_right - most_left < 1: continue pos = self.rng.integers(low=most_left, high=most_right, size=1)[0] # Correct the position pos = handler.adjust_position( pos, most_left, most_right, self.skip_if_position_not_found, fabric.used_positions, self.rng, self.lang, sentence ) if pos is not None: try: substitutions = getattr(self, "substitutions_for_{}".format(ord(sentence[pos].lower()))) except AttributeError: substitutions = Distribution(getattr(SUBSTITUTION_OPTIONS, self.lang), False) sentence = handler.apply(pos, sentence, self.lang, self.rng, substitutions) if self.debug_mode: used_positions_cp = fabric.used_positions.copy() self.stats["used_positions_pre"].append(used_positions_cp) self.stats["pos"].append(pos) fabric.finish(pos, typo) if self.debug_mode: used_positions_cp = fabric.used_positions.copy() self.stats["used_positions_after"].append(used_positions_cp) return sentence ================================================ FILE: sage/spelling_corruption/sbsc/sbsc.py ================================================ """API to Statistical-based Spelling Corruption method. Examples: corruptor = StatisticBasedSpellingCorruption( lang="rus", reference_dataset_name_or_path="RUSpellRU", ) print(corruptor.corrupt(sentence)) .... from labeler import process_mistypings sources, corrections = load_data(...) typos_cnt, cm, stats = process_mistypings(sources, corrections) corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_cnt, stats=stats, confusion_matrix=cm, ) print(corruptor.corrupt(sentence)) """ import os from typing import List, Dict, Optional, Union import numpy as np import pandas as pd from tqdm.auto import tqdm from .model import Model from .labeler import process_mistypings from ...utils.data_load_utils import load_available_dataset_from_hf, DatasetsAvailable datasets_available = [dataset.name for dataset in DatasetsAvailable] class StatisticBasedSpellingCorruption: """API to `Model` class from model.py. Attributes: model (model.Model): statistic-based spelling corruption model; """ def __init__( self, lang: str, typos_count: Optional[List[int]] = None, stats: Optional[Dict[str, Dict[str, List[float]]]] = None, confusion_matrix: Optional[Dict[str, Dict[str, int]]] = None, skip_if_position_not_found: bool = True, reference_dataset_name_or_path: Optional[Union[str, os.PathLike]] = None, reference_dataset_split: str = "train", random_seed: Optional[int] = 42 ): typos_count_ = None stats_ = None confusion_matrix_ = None if (typos_count is None or stats is None or confusion_matrix is None) and reference_dataset_name_or_path is None: raise RuntimeError('''You should provide at least one of :typos_count:/:stats:/:confusion_matrix: or :reference_dataset_name_or_path:''') if (typos_count is None or stats is None or confusion_matrix is None) and \ reference_dataset_name_or_path is not None: reference_dataset_name_or_path = str(reference_dataset_name_or_path) if reference_dataset_name_or_path in datasets_available: sources, corrections = load_available_dataset_from_hf( reference_dataset_name_or_path, for_labeler=True, split=reference_dataset_split) stats_, confusion_matrix_, typos_count_ = process_mistypings(sources, corrections) elif os.path.isdir(reference_dataset_name_or_path): if os.path.isfile(os.path.join(reference_dataset_name_or_path, "sources.txt")) and \ os.path.isfile(os.path.join(reference_dataset_name_or_path, "corrections.txt")): src_file = open(os.path.join(reference_dataset_name_or_path, "sources.txt"), encoding="utf8") corr_file = open(os.path.join(reference_dataset_name_or_path, "corrections.txt"), encoding="utf8") sources = src_file.read().split("\n") corrections = corr_file.read().split("\n") src_file.close() corr_file.close() if len(sources) != len(corrections): raise RuntimeError("Sources and corrections must be of the same length, but get {} vs {}".format( len(sources), len(corrections))) stats_, confusion_matrix_, typos_count_ = process_mistypings(sources, corrections) elif os.path.isfile(os.path.join(reference_dataset_name_or_path, "data.csv")): try: data = pd.read_csv(os.path.join(reference_dataset_name_or_path, "data.csv")) except Exception as e: raise RuntimeError("Wrong format of file {}. Raised an error: {}".format( os.path.join(reference_dataset_name_or_path, "data.csv"), str(e))) if not ("source" in data and "correction" in data): raise RuntimeError("You must provide 'source' and 'correction' columns in {}".format( os.path.join(reference_dataset_name_or_path, "data.csv") )) if data.isna().any().max(): raise ValueError("Your data at {} contain unnecessary nans".format( os.path.join(reference_dataset_name_or_path, "data.csv"))) sources = data.source.values.tolist() corrections = data.correction.values.tolist() stats_, confusion_matrix_, typos_count_ = process_mistypings(sources, corrections) else: raise RuntimeError("You must provide either 'data.csv' or 'sources.txt'/'corrections.txt' in {}".format( reference_dataset_name_or_path )) else: raise ValueError("You must provide either valid path or available dataset's name, you provided {}".format( reference_dataset_name_or_path )) if typos_count is not None: typos_count_ = typos_count if stats is not None: stats_ = stats if confusion_matrix is not None: confusion_matrix_ = confusion_matrix self.model = Model( typos_count=typos_count_, stats=stats_, confusion_matrix=confusion_matrix_, skip_if_position_not_found=skip_if_position_not_found, lang=lang, random_seed=random_seed ) @staticmethod def show_reference_datasets_available(): print(*datasets_available, sep="\n") def corrupt(self, sentence: str) -> str: return self.batch_corrupt([sentence])[0] def batch_corrupt(self, sentences: List[str]) -> List[str]: result = [] pb = tqdm(total=len(sentences)) for sentence in sentences: result.append(self.model.transform(sentence)) pb.update(1) return result ================================================ FILE: sage/spelling_corruption/sbsc/typings_positions_conditions.py ================================================ """Conditions to search for appropriate position for corresponding typo. Each class embodies necessary conditions in order for particular type of error to be properly inserted. """ import string from abc import ABCMeta, abstractmethod from typing import List class Condition(metaclass=ABCMeta): """Base class for all conditions.""" @staticmethod @abstractmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: """Checks whether particular position `pos` satisfies typo's requirements. Args: pos (int): position to check on; used_positions (List[str]): taken positions; sentence (str): original sentence; lang (str): language of original sentence; Returns: Whether or not `pos` is appropriate position to insert a particular typo. """ @staticmethod @abstractmethod def alter_positions(pos: int, used_positions: List[int]): """Corrects list of taken positions accordingly. When typo is inserted, one must include its position in a list of taken positions and alter present positions. Args: pos (int): position of inserted typo; used_positions (List[str]): list of taken positions; """ class InsertionConditions(Condition): @staticmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: return pos in used_positions @staticmethod def alter_positions(pos: int, used_positions: List[int]): for i, p in enumerate(used_positions): used_positions[i] = p if p <= pos else p + 1 class DeletionConditions(Condition): @staticmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: punctuation = string.punctuation.replace("-", "") return pos in used_positions or sentence[pos] == " " or sentence[pos] in punctuation @staticmethod def alter_positions(pos: int, used_positions: List[int]): for i, p in enumerate(used_positions): used_positions[i] = p if p <= pos else p - 1 class TranspositionConditions(Condition): @staticmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: return pos == len(sentence) - 1 or pos in used_positions or (pos + 1) in used_positions or \ sentence[pos] in string.punctuation or sentence[pos + 1] in string.punctuation or \ sentence[pos] == sentence[pos + 1] @staticmethod def alter_positions(pos: int, used_positions: List[int]): used_positions.append(pos + 1) class SubstitutionConditions(Condition): @staticmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: return pos in used_positions or sentence[pos] == " " or sentence[pos] in string.punctuation or \ sentence[pos] in string.digits or ((sentence[pos] in string.ascii_letters) == (lang == "rus")) @staticmethod def alter_positions(pos: int, used_positions: List[int]): pass class ExtraSeparatorConditions(Condition): @staticmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: return pos == 0 or sentence[pos - 1] == " " or sentence[pos] == " " or pos in used_positions or \ sentence[pos] in string.punctuation @staticmethod def alter_positions(pos: int, used_positions: List[int]): for i, p in enumerate(used_positions): used_positions[i] = p if p <= pos else p + 1 class MissingSeparatorConditions(Condition): @staticmethod def condition(pos: int, used_positions: List[int], sentence: str, lang: str) -> bool: return sentence[pos] != " " @staticmethod def alter_positions(pos: int, used_positions: List[int]): for i, p in enumerate(used_positions): used_positions[i] = p if p <= pos else p - 1 def initialize_conditions(): return { "insertion": InsertionConditions, "deletion": DeletionConditions, "substitution": SubstitutionConditions, "transposition": TranspositionConditions, "extra_separator": ExtraSeparatorConditions, "missing_separator": MissingSeparatorConditions, } ================================================ FILE: sage/utils/__init__.py ================================================ from .data_load_utils import load_available_dataset_from_hf, DatasetsAvailable from .utils import draw_and_save_errors_distributions_comparison_charts __all__ = [ "load_available_dataset_from_hf", "draw_and_save_errors_distributions_comparison_charts", "DatasetsAvailable" ] ================================================ FILE: sage/utils/data_load_utils.py ================================================ """Utils for loading datasets from hub.""" import enum from typing import Optional, Union, List, Tuple import pandas as pd from datasets import load_dataset class DatasetsAvailable(enum.Enum): """Datasets available""" MultidomainGold = "Multidomain gold dataset. For more see `ai-forever/spellcheck_punctuation_benchmark`." RUSpellRU = "Social media texts and blogs. For more see `ai-forever/spellcheck_punctuation_benchmark`." MedSpellchecker = "Medical anamnesis. For more see `ai-forever/spellcheck_punctuation_benchmark`." GitHubTypoCorpusRu = "Github commits. For more see `ai-forever/spellcheck_punctuation_benchmark`." MultidomainGold_orth = "Multidomain gold dataset orthography only. For more see `ai-forever/spellcheck_benchmark`." RUSpellRU_orth = "Social media texts and blogs orthography only. For more see `ai-forever/spellcheck_benchmark`." MedSpellchecker_orth = "Medical anamnesis orthography only. For more see `ai-forever/spellcheck_benchmark`." GitHubTypoCorpusRu_orth = "Github commits orthography only. For more see `ai-forever/spellcheck_benchmark`." datasets_available = [dataset.name for dataset in DatasetsAvailable] def load_available_dataset_from_hf( dataset_name: str, for_labeler: bool, split: Optional[str] = None ) -> Union[Tuple[List[str], List[str]], pd.DataFrame]: if dataset_name not in datasets_available: raise ValueError("You provided wrong dataset name: {}\nAvailable datasets are: {}".format( dataset_name, *datasets_available)) source_collection = "spellcheck_punctuation_benchmark" if dataset_name[-4:] == "orth": source_collection = "spellcheck_benchmark" dataset_name = dataset_name[:-5] dataset = load_dataset("ai-forever/{}".format(source_collection), dataset_name, split=split, trust_remote_code=True) if split is None: dataset = pd.concat([dataset[split].to_pandas() for split in dataset.keys()]).reset_index(drop=True) else: dataset = dataset.to_pandas() if for_labeler: sources = dataset.source.values.tolist() corrections = dataset.correction.values.tolist() return sources, corrections return dataset ================================================ FILE: sage/utils/lang_utils.py ================================================ """Language-related utils""" from collections import namedtuple AVAILABLE_LANG_CODES = ["rus", "eng"] class InsertionOptions(namedtuple("insertion_options", AVAILABLE_LANG_CODES)): pass class SubstitutionOptions(namedtuple("substitution_options", AVAILABLE_LANG_CODES)): pass INSERTION_OPTIONS = InsertionOptions( rus=list("абвгдеёжзийклмнопрстуфхцчшщъыьэюя"), eng=list("abcdefghijklmnopqrstuvwxyz") ) SUBSTITUTION_OPTIONS = SubstitutionOptions( rus=list("абвгдеёжзийклмнопрстуфхцчшщъыьэюя "), eng=list("abcdefghijklmnopqrstuvwxyz ") ) ================================================ FILE: sage/utils/utils.py ================================================ """General utils""" import os from typing import List, Dict, Any, Union import numpy as np import matplotlib.pyplot as plt def _draw_distributions_with_spines( axes: plt.axes, row: int, column: int, actual_values: List[Any], reference_values: List[Any], title: str): """Draws two discrete distributions on a single plot.""" axes[row][column].hist(reference_values, bins=20, ec="black", fc="red", label="Reference", density=True) axes[row][column].hist(actual_values, bins=20, ec="black", fc="green", label="Actual", alpha=0.7, density=True) axes[row][column].grid(True, color='grey', linestyle='-.', linewidth=0.5, alpha=0.3) for s in ['top', 'bottom', 'left', 'right']: axes[row][column].spines[s].set_visible(False) axes[row][column].set_title(title) axes[row][column].legend() def draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt: List[int], reference_typos_cnt: List[int], actual_stats: Dict[str, Dict[str, List]], reference_stats: Dict[str, Dict[str, List]], path_to_save: Union[str, os.PathLike], ): """Draws following distributions for reference and actual values: 1. Number of errors per sentence; 2. Types of errors; 3. Relative positions of each type of errrors; ... and saves resulting charts to mentioned place `path_to_save`. Args: actual_typos_cnt (List[int]): number of errors actual; reference_typos_cnt (List[int]): number of errors reference; actual_stats (Dict[str, Dict[str, List]]): types of errors and their relative positions, actual; reference_stats (Dict[str, Dict[str, List]]): types of errors and their relative positions, reference; path_to_save (Union[str, os.PathLike]): where to save charts; """ def _stats(d): tmp = {k: len(v["abs"]) for k, v in d.items()} total = sum(tmp.values()) return tmp, total _, ax = plt.subplots(4, 2, figsize=(15, 15)) plt.rcParams["figure.autolayout"] = True _draw_distributions_with_spines( ax, 0, 0, actual_typos_cnt, reference_typos_cnt, "Number of errors per sentence") _draw_distributions_with_spines( ax, 1, 0, actual_stats["insertion"]["rel"], reference_stats["insertion"]["rel"], "Relative positions of insertions") _draw_distributions_with_spines( ax, 1, 1, actual_stats["deletion"]["rel"], reference_stats["deletion"]["rel"], "Relative positions of deletions") _draw_distributions_with_spines( ax, 2, 0, actual_stats["substitution"]["rel"], reference_stats["substitution"]["rel"], "Relative positions of substitutions") _draw_distributions_with_spines( ax, 2, 1, actual_stats["transposition"]["rel"], reference_stats["transposition"]["rel"], "Relative positions of transpositions") _draw_distributions_with_spines( ax, 3, 0, actual_stats["missing_separator"]["rel"], reference_stats["missing_separator"]["rel"], "Relative positions of missing separators") _draw_distributions_with_spines( ax, 3, 1, actual_stats["extra_separator"]["rel"], reference_stats["extra_separator"]["rel"], "Relative positions of extra separators") width = 0.3 d_ref, t_ref = _stats(reference_stats) d_act, t_act = _stats(actual_stats) d_ref = {k: v / (t_ref + 0.000001) for k, v in d_ref.items()} d_act = {k: v / (t_act + 0.000001) for k, v in d_act.items()} labels = list(d_ref.keys()) ids = np.array(range(len(labels))) ax[0][1].barh(ids, list(d_act.values()), width, color='green', label='Actual') ax[0][1].barh(ids + width, list(d_ref.values()), width, color='red', label='Reference') ax[0][1].set(yticks=ids + width, yticklabels=labels) ax[0][1].grid(True, color='grey', linestyle='-.', linewidth=0.5, alpha=0.3) for s in ['top', 'bottom', 'left', 'right']: ax[0][1].spines[s].set_visible(False) ax[0][1].legend() ax[0][1].set_title("Types of errors") plt.savefig(path_to_save) ================================================ FILE: setup.py ================================================ from setuptools import setup, find_packages with open("README.md", mode="r", encoding="utf-8") as readme_file: readme = readme_file.read() requirements = [ "numpy", "pandas", "tqdm", "pyyaml", "packaging", "requests", "sentencepiece", "datasets<2.20.0", "protobuf", "timeout_decorator", "matplotlib>=3.2,<3.9.1", "torch>=1.9.0,<=2.8.0", "transformers>=4.20.0,<=4.46.0", "augmentex==1.3.1", "accelerate", "evaluate" ] extras_requirements = { "errant": [ "ru-errant", "spacy>=3.7.0,<3.8.0", "Levenshtein" ] } setup( name="sage-spelling", version="1.2.0", author="Nikita Martynov, Mark Baushenko, Alena Fenogenova and Alexandr Abramov", author_email="nikita.martynov.98@list.ru", description="SAGE: Spell checking via Augmentation and Generative distribution Emulation", long_description=readme, long_description_content_type="text/markdown", license="MIT", url="https://github.com/orgs/ai-forever/sage", packages=find_packages(), classifiers=[ "Natural Language :: English", "Natural Language :: Russian", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Editors :: Text Processing", ], python_requires=">=3.8.0", install_requires=requirements, extras_require=extras_requirements, keywords="sage spelling correction nlp deep learning transformers pytorch" ) ================================================ FILE: tests/corruptor_api_unittests.py ================================================ import os import unittest import numpy as np from sage.spelling_corruption.sbsc.labeler import process_mistypings from sage.spelling_corruption import CharAugConfig, WordAugConfig, SBSCConfig from sage.utils.data_load_utils import load_available_dataset_from_hf from sage.utils.utils import draw_and_save_errors_distributions_comparison_charts from sage.spelling_corruption import WordAugCorruptor, CharAugCorruptor, SBSCCorruptor SEED = 0 class CorruptorApiTests(unittest.TestCase): sentence = "я пошел домой" sentences = [sentence] * 3 n_tests = 10 sources, corrections = load_available_dataset_from_hf("RUSpellRU", for_labeler=True, split="train") ruspellru_stats, ruspellru_confusion_matrix, ruspellru_typos_cnt = process_mistypings(sources, corrections) def _draw_generated_distributions(self, corruptor, file_name): spoiled_sentences = corruptor.batch_corrupt(self.corrections) ours_ruspellru_stats, ours_ruspellru_confusion_matrix, ours_ruspellru_typos_cnt = \ process_mistypings(spoiled_sentences, self.corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt=ours_ruspellru_typos_cnt, reference_typos_cnt=self.ruspellru_typos_cnt, actual_stats=ours_ruspellru_stats, reference_stats=self.ruspellru_stats, path_to_save=file_name ) def _test_generation_correct(self, corruptor): res = corruptor.corrupt(self.sentence) self.assertEqual(type(res), str) res = corruptor.batch_corrupt(self.sentences) self.assertEqual(3, len(res)) def test_word_augmenter(self): default_config = WordAugConfig(random_seed=SEED) corruptor = WordAugCorruptor.from_default_config() self.assertEqual(corruptor.engine.min_aug, default_config.min_aug) self.assertEqual(corruptor.engine.max_aug, default_config.max_aug) self.assertEqual(corruptor.engine.unit_prob, default_config.unit_prob) self._test_generation_correct(corruptor) config = WordAugConfig(min_aug=2, max_aug=6, unit_prob=0.1, random_seed=SEED) corruptor = WordAugCorruptor.from_config(config) self.assertEqual(corruptor.engine.min_aug, config.min_aug) self.assertEqual(corruptor.engine.max_aug, config.max_aug) self.assertEqual(corruptor.engine.unit_prob, config.unit_prob) self._test_generation_correct(corruptor) def test_char_augmenter(self): default_config = CharAugConfig(random_seed=SEED) corruptor = CharAugCorruptor.from_default_config() self.assertEqual(corruptor.engine.min_aug, default_config.min_aug) self.assertEqual(corruptor.engine.max_aug, default_config.max_aug) self.assertEqual(corruptor.engine.unit_prob, default_config.unit_prob) self.assertEqual(corruptor.engine.mult_num, default_config.mult_num) self._test_generation_correct(corruptor) config = CharAugConfig(min_aug=2, max_aug=6, unit_prob=0.1, mult_num=3, random_seed=SEED) corruptor = CharAugCorruptor.from_config(config) self.assertEqual(corruptor.engine.min_aug, config.min_aug) self.assertEqual(corruptor.engine.max_aug, config.max_aug) self.assertEqual(corruptor.engine.unit_prob, config.unit_prob) self.assertEqual(corruptor.engine.mult_num, config.mult_num) self._test_generation_correct(corruptor) def test_sbsc_corruptor(self): # From custom stats typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } config = SBSCConfig( typos_count=typos_count, stats=stats, confusion_matrix={" ": {" ": 1}}, random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) # From txt files config = SBSCConfig( reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) # From csv file config = SBSCConfig( reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "csv"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) # From partial custom stats config = SBSCConfig( typos_count=None, stats=stats, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) config = SBSCConfig( typos_count=typos_count, stats=None, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) config = SBSCConfig( typos_count=typos_count, stats=stats, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) config = SBSCConfig( typos_count=None, stats=None, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) config = SBSCConfig( typos_count=None, stats=stats, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) config = SBSCConfig( typos_count=typos_count, stats=None, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._test_generation_correct(corruptor) def test_sbsc_corruptor_batch_corrupt(self): typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } config = SBSCConfig( typos_count=typos_count, stats=stats, confusion_matrix={" ": {" ": 1}}, random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "sbsc_random_stats.jpg") config = SBSCConfig( reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "sbsc_stats_from_txt.jpg") config = SBSCConfig( reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "csv"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "sbsc_stats_from_csv.jpg") config = SBSCConfig( typos_count=None, stats=stats, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "sbsc_custom_stats_typos_from_txt.jpg") config = SBSCConfig( reference_dataset_name_or_path="RUSpellRU", reference_dataset_split="train", random_seed=SEED ) corruptor = SBSCCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "sbsc_from_dataset.jpg") # English version en_config = SBSCConfig( lang="eng", reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "example_data", "bea60k", "subsample"), random_seed=SEED ) corruptor = SBSCCorruptor.from_config(en_config) with open(os.path.join(os.getcwd(), "data", "example_data", "bea60k", "subsample", "sources.txt")) as src: sources = src.read().split("\n") with open(os.path.join(os.getcwd(), "data", "example_data", "bea60k", "subsample", "corrections.txt")) as corr: corrections = corr.read().split("\n") bea_stats, bea_confusion_matrix, bea_typos_cnt = process_mistypings(sources, corrections) spoiled_sentences = corruptor.batch_corrupt(corrections) ours_bea_stats, ours_bea_confusion_matrix, ours_bea_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt=ours_bea_typos_cnt, reference_typos_cnt=bea_typos_cnt, actual_stats=ours_bea_stats, reference_stats=bea_stats, path_to_save="bea60k.jpg" ) with self.assertRaises(RuntimeError): corruptor = SBSCCorruptor.from_config( config=SBSCConfig( reference_dataset_name_or_path=None, random_seed=SEED ) ) def test_word_aug_batch_corrupt(self): config = WordAugConfig(min_aug=2, max_aug=6, unit_prob=0.1, random_seed=SEED) corruptor = WordAugCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "word_aug.jpg") config = CharAugConfig(min_aug=2, max_aug=6, unit_prob=0.1, mult_num=3, random_seed=SEED) corruptor = CharAugCorruptor.from_config(config) self._draw_generated_distributions(corruptor, "char_aug.jpg") if __name__ == '__main__': unittest.main() ================================================ FILE: tests/sbsc_corruptor_unittests.py ================================================ import os import unittest import numpy as np from sage.spelling_corruption.sbsc.labeler import process_mistypings from sage.utils.data_load_utils import load_available_dataset_from_hf from sage.utils.utils import draw_and_save_errors_distributions_comparison_charts from sage.spelling_corruption.sbsc.sbsc import StatisticBasedSpellingCorruption SEED = 42 class SbscCorruptorTests(unittest.TestCase): def test_custom_stats(self): typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=stats, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) def test_from_file_txt(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) def test_from_file_csv(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "csv"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) def test_partial_custom_stats(self): typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=None, stats=stats, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=None, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=stats, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=None, stats=None, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=None, stats=stats, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=None, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(len(res), 3) def test_wrong_config(self): typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } # Empty everything with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, random_seed=SEED ) # Empty cases with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=None, stats=stats, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=None, random_seed=SEED ) # Empty cases with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=None, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=None, random_seed=SEED ) # Empty cases with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=stats, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=None, random_seed=SEED ) # Empty cases with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=None, stats=None, confusion_matrix={" ": {" ": 1}}, skip_if_position_not_found=True, reference_dataset_name_or_path=None, random_seed=SEED ) # Empty cases with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=None, stats=stats, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=None, random_seed=SEED ) # Empty cases with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", typos_count=typos_count, stats=None, confusion_matrix=None, skip_if_position_not_found=True, reference_dataset_name_or_path=None, random_seed=SEED ) # Wrong directory with self.assertRaises(ValueError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "wrong_path"), random_seed=SEED ) # Files with wrong names with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "wrong_names"), random_seed=SEED ) # Broken txt files with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "broken_text_files"), random_seed=SEED ) # Broken csv files with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "broken_csv_file_opening"), random_seed=SEED ) # Broken csv files with self.assertRaises(RuntimeError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "broken_csv_file_columns"), random_seed=SEED ) # Broken csv files with self.assertRaises(ValueError): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join( os.getcwd(), "data", "sanity_check_samples", "corruptor_tests", "broken_csv_file_nans"), random_seed=SEED ) # Wrong lang code with self.assertRaises(ValueError): corruptor = StatisticBasedSpellingCorruption( lang="Ru", skip_if_position_not_found=True, reference_dataset_name_or_path="RUSpellRU", random_seed=SEED ) def test_corrupt(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", skip_if_position_not_found=True, reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "sanity_check_samples", "corruptor_tests"), random_seed=SEED ) res = corruptor.corrupt("я пошел домой") self.assertEqual(str, type(res)) def test_from_hf_ruspellru(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", reference_dataset_name_or_path="RUSpellRU", random_seed=SEED ) res = corruptor.corrupt("я пошел домой") self.assertEqual(str, type(res)) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(3, len(res)) sources, corrections = load_available_dataset_from_hf("RUSpellRU", for_labeler=True, split="train") reference_stats, _, reference_typos_cnt = process_mistypings(sources, corrections) spoiled_sentences = corruptor.batch_corrupt(corrections) actual_stats, _, actual_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt, reference_typos_cnt, actual_stats, reference_stats, "ruspellru.jpg") def test_from_hf_multidomain_gold(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", reference_dataset_name_or_path="MultidomainGold", random_seed=SEED ) res = corruptor.corrupt("я пошел домой") self.assertEqual(str, type(res)) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(3, len(res)) sources, corrections = load_available_dataset_from_hf("MultidomainGold", for_labeler=True, split="train") reference_stats, _, reference_typos_cnt = process_mistypings(sources, corrections) spoiled_sentences = corruptor.batch_corrupt(corrections) actual_stats, _, actual_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt, reference_typos_cnt, actual_stats, reference_stats, "gold.jpg") def test_from_hf_github_typo_corpus(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", reference_dataset_name_or_path="GitHubTypoCorpusRu", reference_dataset_split="test", random_seed=SEED ) res = corruptor.corrupt("я пошел домой") self.assertEqual(str, type(res)) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(3, len(res)) sources, corrections = load_available_dataset_from_hf("GitHubTypoCorpusRu", for_labeler=True, split="test") reference_stats, _, reference_typos_cnt = process_mistypings(sources, corrections) spoiled_sentences = corruptor.batch_corrupt(corrections) actual_stats, _, actual_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt, reference_typos_cnt, actual_stats, reference_stats, "github.jpg") def test_from_hf_med_spellchecker(self): corruptor = StatisticBasedSpellingCorruption( lang="rus", reference_dataset_name_or_path="MedSpellchecker", reference_dataset_split="test", random_seed=SEED ) res = corruptor.corrupt("я пошел домой") self.assertEqual(str, type(res)) res = corruptor.batch_corrupt(["я пошел домой"] * 3) self.assertEqual(3, len(res)) sources, corrections = load_available_dataset_from_hf("MedSpellchecker", for_labeler=True, split="test") reference_stats, _, reference_typos_cnt = process_mistypings(sources, corrections) spoiled_sentences = corruptor.batch_corrupt(corrections) actual_stats, _, actual_typos_cnt = process_mistypings(spoiled_sentences, corrections) draw_and_save_errors_distributions_comparison_charts( actual_typos_cnt, reference_typos_cnt, actual_stats, reference_stats, "med.jpg") if __name__ == '__main__': unittest.main() ================================================ FILE: tests/test_correctors.py ================================================ from sage.spelling_correction import RuM2M100ModelForSpellingCorrection, T5ModelForSpellingCorruption from sage.spelling_correction import AvailableCorrectors example_sentences_ru = [ "Я пшёл домой", "Очень классная тетка ктобы что не говорил." ] example_sentences_en = [ "Fathr telll me, we get or we dereve.", "Scrw you guys, I am goin homee. (c)" ] example_sentences_ru_en = [ "Перведи мне текст на аглиском: \"Screw you kuys, I am goin hme (c).", "\"Don't you went to go upstayers?\", - сказл мне както дед." ] if __name__ == "__main__": m2m_large_corrector = RuM2M100ModelForSpellingCorrection.from_pretrained(AvailableCorrectors.m2m100_1B.value) m2m_small_corrector = RuM2M100ModelForSpellingCorrection.from_pretrained(AvailableCorrectors.m2m100_418M.value) fred_corrector = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.fred_large.value) ent5_corrector = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.ent5_large.value) sage_fredt5_large = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_fredt5_large.value) sage_fredt5_distilled = T5ModelForSpellingCorruption.from_pretrained( AvailableCorrectors.sage_fredt5_distilled_95m.value) sage_mt5_large = T5ModelForSpellingCorruption.from_pretrained(AvailableCorrectors.sage_mt5_large.value) sage_m2m_100 = RuM2M100ModelForSpellingCorrection.from_pretrained(AvailableCorrectors.sage_m2m100_1B.value) print("\n------------------------------------------------------------------\n") print("m2m_large_corrector: {}".format(m2m_large_corrector.correct(example_sentences_ru[0]))) print("m2m_small_corrector: {}".format(m2m_small_corrector.correct(example_sentences_ru[0]))) print("fred_corrector: {}".format(fred_corrector.correct(example_sentences_ru[0], prefix="Исправь: "))) print("ent5_corrector: {}".format(ent5_corrector.correct(example_sentences_en[0], prefix="grammar: "))) print("sage_fredt5_large: {}".format(sage_fredt5_large.correct(example_sentences_ru[0], prefix=""))) print("sage_fredt5_distilled: {}".format(sage_fredt5_distilled.correct(example_sentences_ru[0], prefix=""))) print("sage_mt5_large: {}".format(sage_mt5_large.correct(example_sentences_ru_en[0]))) print("sage_m2m_100: {}".format(sage_m2m_100.correct(example_sentences_ru[0]))) print("\n------------------------------------------------------------------\n") print("\nm2m_large_corrector:\n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru, m2m_large_corrector.batch_correct(example_sentences_ru, 1))])) print("\nm2m_small_corrector: \n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru, m2m_small_corrector.batch_correct(example_sentences_ru, 1))])) print("\nfred_corrector: \n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru, fred_corrector.batch_correct(example_sentences_ru, 1, "Исправь: "))])) print("\nent5_corrector: \n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_en, ent5_corrector.batch_correct(example_sentences_en, 1, "grammar: "))])) print("\nsage_fredt5_large:\n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru, sage_fredt5_large.batch_correct(example_sentences_ru, 1, prefix=""))])) print("\nsage_fredt5_distilled: \n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru, sage_fredt5_distilled.batch_correct(example_sentences_ru, 1, prefix=""))])) print("\nsage_mt5_large: \n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru_en, sage_mt5_large.batch_correct(example_sentences_ru_en, 1))])) print("\nsage_m2m_100: \n") print("\n".join(["{}: {}".format(k, v[0]) for k, v in zip( example_sentences_ru, sage_m2m_100.batch_correct(example_sentences_ru, 1))])) ================================================ FILE: tests/test_corruptors.py ================================================ import os from sage.spelling_corruption import WordAugCorruptor, CharAugCorruptor, SBSCCorruptor from sage.spelling_corruption import WordAugConfig, CharAugConfig, SBSCConfig corrections = [ "Я пошёл домой. Больше мне тут делать нечего", "Заметьте, - не я это предложил." ] en_corrections = [ "Father tell me: we get or we deserve", "Screw you guys, I am going home (c)." ] if __name__ == "__main__": word_aug_default = WordAugCorruptor.from_default_config() word_aug_config = WordAugConfig( min_aug=2, max_aug=6, unit_prob=0.1 ) word_aug_custom = WordAugCorruptor.from_config(word_aug_config) char_aug_default = CharAugCorruptor.from_default_config() char_aug_config = CharAugConfig( min_aug=2, max_aug=6, unit_prob=0.1, mult_num=3 ) char_aug_custom = CharAugCorruptor.from_config(char_aug_config) sbsc_default = SBSCCorruptor.from_default_config() sbsc_config = SBSCConfig( reference_dataset_name_or_path="MedSpellchecker", reference_dataset_split="test" ) sbsc_custom = SBSCCorruptor.from_config(sbsc_config) sbsc_config_en = SBSCConfig( lang="eng", reference_dataset_name_or_path=os.path.join(os.getcwd(), "data", "example_data", "bea60k", "subsample") ) sbsc_english = SBSCCorruptor.from_config(sbsc_config_en) print("\n------------------------------------------------------------------\n") print("word_aug_default: {}".format(word_aug_default.corrupt(corrections[0]))) print("word_aug_custom: {}".format(word_aug_custom.corrupt(corrections[0]))) print("char_aug_default: {}".format(char_aug_default.corrupt(corrections[0]))) print("char_aug_custom: {}".format(char_aug_custom.corrupt(corrections[0]))) print("sbsc_default: {}".format(sbsc_default.corrupt(corrections[0]))) print("sbsc_custom: {}".format(sbsc_custom.corrupt(corrections[0]))) print("sbsc_english: {}".format(sbsc_english.corrupt(en_corrections[0]))) print("\n------------------------------------------------------------------\n") print("word_aug_default: \n{}\n".format("\n".join(word_aug_default.batch_corrupt(corrections, batch_prob=0.5)))) print("word_aug_custom: \n{}\n".format("\n".join(word_aug_custom.batch_corrupt(corrections)))) print("char_aug_default: \n{}\n".format("\n".join(char_aug_default.batch_corrupt(corrections, batch_prob=0.5)))) print("char_aug_custom: \n{}\n".format("\n".join(char_aug_custom.batch_corrupt(corrections)))) print("sbsc_default: \n{}\n".format("\n".join(sbsc_default.batch_corrupt(corrections)))) print("sbsc_custom: \n{}\n".format("\n".join(sbsc_custom.batch_corrupt(corrections)))) print("sbsc_english: {}".format("\n".join(sbsc_english.batch_corrupt(en_corrections)))) ================================================ FILE: tests/test_evaluate.py ================================================ import unittest from sage.evaluation import Scorer class TestEvaluationKit(unittest.TestCase): scorer = Scorer() sources = ["спел Кейс ее .", "спел Кейс ее ."] corrections = ["спелл кейс её !", "спелл кейс её !"] answers = ["спел кейс её .", "спелл Кейс ее !"] def test_scorer_errant_only(self): metrics = self.scorer.score(self.sources, self.corrections, self.answers, metrics=["errant"]) expected_metrics = { "CASE_Precision": 100.0, "CASE_Recall": 50.0, "CASE_F1": 66.67, "YO_Precision": 100.0, "YO_Recall": 50.0, "YO_F1": 66.67, "SPELL_Precision": 100.0, "SPELL_Recall": 50.0, "SPELL_F1": 66.67, "PUNCT_Precision": 100.0, "PUNCT_Recall": 50.0, "PUNCT_F1": 66.67 } self.assertDictEqual(metrics, expected_metrics) def test_scorer_ruspelleval_only(self): metrics = self.scorer.score(self.sources, self.corrections, self.answers, metrics=["ruspelleval"]) self.assertDictEqual(metrics, {"Precision": 100.0, "Recall": 50.0, "F1": 66.67}) def test_scorer_errant_ruspelleval(self): metrics = self.scorer.score(self.sources, self.corrections, self.answers, metrics=["errant", "ruspelleval"]) expected_metrics = { "CASE_Precision": 100.0, "CASE_Recall": 50.0, "CASE_F1": 66.67, "YO_Precision": 100.0, "YO_Recall": 50.0, "YO_F1": 66.67, "SPELL_Precision": 100.0, "SPELL_Recall": 50.0, "SPELL_F1": 66.67, "PUNCT_Precision": 100.0, "PUNCT_Recall": 50.0, "PUNCT_F1": 66.67, "Precision": 100.0, "Recall": 50.0, "F1": 66.67 } self.assertDictEqual(metrics, expected_metrics) def test_empty_errant(self): scorer = Scorer(False) self.assertRaises( AttributeError, scorer.score, **{"sources": self.sources, "corrections": self.corrections, "answers": self.answers, "metrics": ["errant"]} ) if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_metrics.py ================================================ import unittest from sage.evaluation.ruerrant_wrapper.scorer import RuErrantScorer from sage.evaluation import Scorer class TestRuErrantErrorAnnotation(unittest.TestCase): scorer = RuErrantScorer("ru_core_news_lg") def test_1w_spell_only(self): source = self.scorer.annotator.parse("карова") correction = self.scorer.annotator.parse("корова") errors_true = [ [0, 1, "SPELL", "корова", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_1w_spell_case(self): source = self.scorer.annotator.parse("карова") correction = self.scorer.annotator.parse("Корова") errors_true = [ [0, 1, "CASE", "Карова", 0], [0, 1, "SPELL", "корова", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_1w_spell_case_yo(self): source = self.scorer.annotator.parse("йемённ") correction = self.scorer.annotator.parse("Йемен") errors_true = [ [0, 1, "CASE", "Йемённ", 0], [0, 1, "SPELL", "йемён", 0], [0, 1, "YO", "йеменн", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_1w_spell_case_same_char(self): source = self.scorer.annotator.parse("иемен") correction = self.scorer.annotator.parse("Йемен") errors_true = [ [0, 1, "CASE", "Иемен", 0], [0, 1, "SPELL", "йемен", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_1w_spell_case_2x(self): source = self.scorer.annotator.parse("ПИРИДАЧА") correction = self.scorer.annotator.parse("Передача") errors_true = [ [0, 1, "CASE", "Пиридача", 0], [0, 1, "SPELL", "ПЕРЕДАЧА", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_hyphen2space(self): source = self.scorer.annotator.parse("как-будто") correction = self.scorer.annotator.parse("как будто") errors_true = [ [0, 3, "SPELL", "как будто", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_space2hyphen(self): source = self.scorer.annotator.parse("кто то") correction = self.scorer.annotator.parse("кто-то") errors_true = [ [0, 2, "SPELL", "кто-то", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_joint2space(self): source = self.scorer.annotator.parse("какбудто") correction = self.scorer.annotator.parse("как будто") errors_true = [ [0, 1, "SPELL", "как будто", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_space2joint(self): source = self.scorer.annotator.parse("золо то") correction = self.scorer.annotator.parse("золото") errors_true = [ [0, 2, "SPELL", "золото", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_joint2hyphen(self): source = self.scorer.annotator.parse("ктото") correction = self.scorer.annotator.parse("кто-то") errors_true = [ [0, 1, "SPELL", "кто-то", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_hyphen2joint(self): source = self.scorer.annotator.parse("золо-то") correction = self.scorer.annotator.parse("золото") errors_true = [ [0, 3, "SPELL", "золото", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_hyphen2comma(self): source = self.scorer.annotator.parse("Если и ответит кто-то правильно.") correction = self.scorer.annotator.parse("Если и ответит кто, то правильно.") errors_true = [ [4, 5, "PUNCT", ",", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_inn_punct_comma2hyphen(self): source = self.scorer.annotator.parse("Если и ответит кто, то правильно.") correction = self.scorer.annotator.parse("Если и ответит кто-то правильно.") errors_true = [ [4, 5, "PUNCT", "-", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_dot2multidot(self): source = self.scorer.annotator.parse("Человек.") correction = self.scorer.annotator.parse("Человек...") errors_true = [ [1, 2, "PUNCT", "...", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_multidot2dot(self): source = self.scorer.annotator.parse("Человек...") correction = self.scorer.annotator.parse("Человек.") errors_true = [ [1, 2, "PUNCT", ".", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_2w_spell_case(self): source = self.scorer.annotator.parse("рас два") correction = self.scorer.annotator.parse("Раз два") errors_true = [ [0, 1, "CASE", "Рас", 0], [0, 1, "SPELL", "раз", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_2w_spell_case_punct1(self): source = self.scorer.annotator.parse("рас два") correction = self.scorer.annotator.parse("Раз два!") errors_true = [ [0, 1, "CASE", "Рас", 0], [0, 1, "SPELL", "раз", 0], [2, 2, "PUNCT", "!", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_2w_spell_case_punct2(self): source = self.scorer.annotator.parse("рас два!") correction = self.scorer.annotator.parse("Раз два") errors_true = [ [0, 1, "CASE", "Рас", 0], [0, 1, "SPELL", "раз", 0], [2, 3, "PUNCT", "", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent1(self): source = self.scorer.annotator.parse("очень классная тетка ктобы что не говорил.") correction = self.scorer.annotator.parse("Очень классная тётка, кто бы что ни говорил.") errors_true = [ [0, 1, "CASE", "Очень", 0], [2, 3, "YO", "тётка", 0], [3, 3, "PUNCT", ",", 0], [3, 4, "SPELL", "кто бы", 0], [5, 6, "SPELL", "ни", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent2(self): source = self.scorer.annotator.parse("Может выгоднее втулку продать и купить колесо в сборе?") correction = self.scorer.annotator.parse("Может, выгоднее втулку продать и купить колесо в сборе?") errors_true = [ [1, 1, "PUNCT", ",", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent3(self): source = self.scorer.annotator.parse("Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.") correction = self.scorer.annotator.parse("Довольно большая часть пришедших сходила с дорожек и усаживалась на траву.") errors_true = [] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent4(self): source = self.scorer.annotator.parse("Симпатичнейшое шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда - миниатюрная модель камеры Superheadz Clap Camera.") correction = self.scorer.annotator.parse("Симпатичнейшее шпионское устройство, такой себе гламурный фотоаппарат девушки Бонда, миниатюрная модель камеры Superheadz Clap Camera.") errors_true = [ [0, 1, "SPELL", "Симпатичнейшее", 0], [10, 11, "PUNCT", ",", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent5(self): source = self.scorer.annotator.parse("Ну не было поста, так небыло!") correction = self.scorer.annotator.parse("Ну не было поста, так не было.") errors_true = [ [6, 7, "SPELL", "не было", 0], [7, 8, "PUNCT", ".", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent6(self): source = self.scorer.annotator.parse("Хотя странно, когда я забирала к себе на выходные старого кота, который живет у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.") correction = self.scorer.annotator.parse("Хотя странно, когда я забирала к себе на выходные старого кота, который живёт у родителей, да и собаку в придачу, то такого концерта мой кот не устраивал.") errors_true = [ [14, 15, "YO", "живёт", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent7(self): source = self.scorer.annotator.parse("Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.") correction = self.scorer.annotator.parse("Думаю, что лет через 10 ретроспективно просматривать это будет мне невероятно интересно.") errors_true = [] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent8(self): source = self.scorer.annotator.parse("Зато я считаю, что это будет полезно и для меня и для всех тех, кто меня окружает, ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным, я имею ввиду мы начинаем понимать какое место в нашей повседневности занимает этот человек...") correction = self.scorer.annotator.parse("Зато я считаю, что это будет полезно и для меня, и для всех тех, кто меня окружает. Ведь когда расстаешься с человеком на какое-то время, то многое становится прозрачным. Я имею в виду, мы начинаем понимать, какое место в нашей повседневности занимает этот человек.") errors_true = [ [11, 11, "PUNCT", ",", 0], [19, 21, "SPELL", ". Ведь", 0], [35, 37, "SPELL", ". Я", 0], [38, 39, "SPELL", "в виду", 0], [39, 39, "PUNCT", ",", 0], [42, 42, "PUNCT", ",", 0], [50, 51, "PUNCT", ".", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent9(self): source = self.scorer.annotator.parse("Пояним эту мысль.") correction = self.scorer.annotator.parse("Поясним эту мысль.") errors_true = [ [0, 1, "SPELL", "Поясним", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent10(self): source = self.scorer.annotator.parse("она прямо бурлит у меня в крови, тормошит какими-то советами, смотрит на меня из глаз моей дочки, что носит ее имя.") correction = self.scorer.annotator.parse("Она прямо бурлит у меня в крови, тормошит какими-то советами, смотрит на меня из глаз моей дочки, что носит её имя.") errors_true = [ [0, 1, "CASE", "Она", 0], [24, 25, "YO", "её", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent11(self): source = self.scorer.annotator.parse("Иногда мне сложно понять: как можно не любить своего ребенка.") correction = self.scorer.annotator.parse("Иногда мне сложно понять, как можно не любить своего ребенка.") errors_true = [ [4, 5, "PUNCT", ",", 0] ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_sent12(self): source = self.scorer.annotator.parse("в массе своей они конечно все оччччень милые )") correction = self.scorer.annotator.parse("В массе своей они, конечно, все очень милые.") errors_true = [ [0, 1, "CASE", "В", 0], [4, 4, "PUNCT", ",", 0], [5, 5, "PUNCT", ",", 0], [6, 7, "SPELL", "очень", 0], [8, 9, "PUNCT", ".", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_md_links(self): source = self.scorer.annotator.parse("Версии именуются согласо [Semantic Versioning 2.0.0](http://semver.org).") correction = self.scorer.annotator.parse("Версии именуются согласно [Semantic Versioning 2.0.0] (http://semver.org).") errors_true = [ [2, 3, "SPELL", "согласно", 0], [7, 8, "PUNCT", "] (", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_md_links_long(self): source = self.scorer.annotator.parse("Версии именуются согласо [Semantic Versioning 2.0.0](http://semver.org/page/page.html).") correction = self.scorer.annotator.parse("Версии именуются согласно [Semantic Versioning 2.0.0] (http://semver.org/page/pagt.html).") errors_true = [ [2, 3, 'SPELL', 'согласно', 0], [7, 8, 'PUNCT', ']', 0], [8, 11, 'PUNCT', '', 0], [11, 12, 'PUNCT', '(', 0], [12, 13, 'SPELL', 'http://semver.org/page/pagt.html', 0] ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_gh1(self): source = self.scorer.annotator.parse(' "clipboardError": "Ошибка. Скорее всего ваш браузер не поодерживает данную функциональность",') correction = self.scorer.annotator.parse(' "clipboarderror": "Ошибка. Скорее всего, ваш браузер не поддерживает данную функциональность".') errors_true = [ [2, 3, "CASE", "clipboarderror", 0], [10, 10, "PUNCT", ",", 0], [13, 14, "SPELL", "поддерживает", 0], [17, 18, "PUNCT", ".", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_gh2(self): source = self.scorer.annotator.parse(' "clipboardError": "Ошибка. Скорее всего ваш браузер не поодерживает данную функциональность",') correction = self.scorer.annotator.parse('"clipboardError": "ошибка". Скорее всего, ваш браузер не поддерживает данную функциональность.') errors_true = [ [0, 1, "PUNCT", "", 0], [6, 7, "CASE", "ошибка", 0], [7, 7, "PUNCT", '"', 0], [10, 10, "PUNCT", ",", 0], [13, 14, "SPELL", "поддерживает", 0], [16, 18, "PUNCT", ".", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) # def test_gh3(self): # source = self.scorer.annotator.parse(' - Недостатки: время ожидания квартиры в зависимости от фирмы и района может быть достаточно долгим Wohnungsgenossenschaftenв Берлине [здесь](http://www.berlin.de/special/immobilien-und-wohnen/adressen/wohnungsbaugenossenschaft/)') # correction = self.scorer.annotator.parse(' Недостатки: время ожидания квартиры в зависимости от фирмы и района может быть достаточно долгим. Wohnungsgenossenschaften в Берлине здесь: http://www.berlin.de/special/immobilien-und-wohnen/addressen/wohnungsbaugenossenschaft/.') # errors_true = [ # [0, 2, "PUNCT", " ", 0], # [17, 17, "PUNCT", ".", 0], # [17, 18, "SPELL", "Wohnungsgenossenschaften в", 0], # [19, 20, "PUNCT", "", 0], # [21, 22, "PUNCT", ":", 0], # [22, 27, "SPELL", "http://www.berlin.de/special/immobilien-und-wohnen/addressen/wohnungsbaugenossenschaft/", 0], # [27, 28, "PUNCT", ".", 0], # ] # self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) def test_gh4(self): source = self.scorer.annotator.parse(' "*Перейди в ветку с именем \\"master\\" в моём локальном репозитории, возьми все коммиты, и затем перейди на ветку \\"master\\" на удалённом репозитории \\"origin.\\". На этоу удалённую ветку скопируй все отсутствующие коммиты, которые есть у меня, и скажи, когда ты закончишь.*",') correction = self.scorer.annotator.parse('Переходи в ветку с именем \\"master\\" в моём локальном репозитории, возьми все коммиты и затем перейди на ветку \\"master\\" на удалённом репозитории \\"origin\\". На эту удалённую ветку скопируй все отсутствующие коммиты, которые есть у меня, и скажи, когда ты закончишь.') errors_true = [ [0, 3, "PUNCT", "", 0], [3, 4, "SPELL", "Переходи", 0], [20, 21, "PUNCT", "", 0], [35, 36, "PUNCT", "", 0], [40, 41, "SPELL", "эту", 0], [60, 63, "PUNCT", "", 0], ] self.assertEqual(self.scorer.annotate_errors(source, correction), errors_true) class TestScorerLoadingAndRunning(unittest.TestCase): scorer_without_errant = Scorer(load_errant=False) def test_score_metrics_format_exception1(self): """Empty `metrics`.""" with self.assertRaises(ValueError): self.scorer_without_errant.score([""], [""], [""], []) def test_score_metrics_format_exception2(self): """Not a list of strings `metrics`.""" with self.assertRaises(ValueError): self.scorer_without_errant.score([""], [""], [""], [1]) def test_score_metrics_format_exception3(self): """Misspelled metric in `metrics`.""" with self.assertRaises(ValueError): self.scorer_without_errant.score([""], [""], [""], ["word"]) def test_score_metrics_format_exception4(self): """Calling "errant" metric while RuErrantScorer has not been loaded.""" with self.assertRaises(AttributeError): self.scorer_without_errant.score([""], [""], [""], ["errant"]) class TestScorerEvaluation(unittest.TestCase): scorer_with_errant = Scorer(load_errant=True) def test_evaluation_empty(self): with self.assertRaises(ValueError): self.scorer_with_errant.score([""], [""], [""], metrics=["ruspelleval"]) def test_evaluation_words(self): res = self.scorer_with_errant.score(["карова"], ["Корова"], ["корова"], metrics=["ruspelleval"]) res_gold = { "Precision": 100, "Recall": 100, "F1": 100, } self.assertEqual(res, res_gold) def test_evaluation_errant_spell_case(self): res = self.scorer_with_errant.score(["карова"], ["Корова"], ["корова"], metrics=["errant"]) res_gold = { "CASE_Precision": 100, "CASE_Recall": 0.0, "CASE_F1": 0.0, "PUNCT_Precision": 100.0, "PUNCT_Recall": 100.0, "PUNCT_F1": 100.0, "SPELL_Precision": 100, "SPELL_Recall": 100, "SPELL_F1": 100, "YO_Precision": 100.0, "YO_Recall": 100.0, "YO_F1": 100.0, } self.assertEqual(res, res_gold) def test_evaluation_errant_spell_case_punct(self): res = self.scorer_with_errant.score( ["в массе своей они конечно все оччччень милые )"], ["В массе своей они, конечно, все очень милые."], ["В массе своей они конечно все оччень милые."], metrics=["errant"]) res_gold = { "CASE_Precision": 100.0, "CASE_Recall": 100.0, "CASE_F1": 100.0, "PUNCT_Precision": 100.0, "PUNCT_Recall": 33.33, "PUNCT_F1": 50.0, "SPELL_Precision": 0.0, "SPELL_Recall": 0.0, "SPELL_F1": 0.0, "YO_Precision": 100.0, "YO_Recall": 100.0, "YO_F1": 100.0, } self.assertEqual(res, res_gold) def test_evaluation_errant_spell_case_punct_yo(self): res = self.scorer_with_errant.score( ["спел Кейс ее .", "спел Кейс ее ."], ["спелл кейс её !", "спелл кейс её !"], ["спел кейс её .", "спелл Кейс ее !"], metrics=["errant"]) res_gold = { "CASE_Precision": 100.0, "CASE_Recall": 50.0, "CASE_F1": 66.67, "YO_Precision": 100.0, "YO_Recall": 50.0, "YO_F1": 66.67, "SPELL_Precision": 100.0, "SPELL_Recall": 50.0, "SPELL_F1": 66.67, "PUNCT_Precision": 100.0, "PUNCT_Recall": 50.0, "PUNCT_F1": 66.67, } self.assertEqual(res, res_gold) def test_different_answer(self): res = self.scorer_with_errant.score( ["раз"], ["Два"], ["три"], metrics=["errant"]) res_gold = { "SPELL_Precision": 0.0, "SPELL_Recall": 0.0, "SPELL_F1": 0.0, "CASE_Precision": 100.0, "CASE_Recall": 100.0, "CASE_F1": 100.0, "PUNCT_Precision": 100.0, "PUNCT_Recall": 100.0, "PUNCT_F1": 100.0, "YO_Precision": 100.0, "YO_Recall": 100.0, "YO_F1": 100.0, } self.assertEqual(res, res_gold) def test_different_answer_punct(self): res = self.scorer_with_errant.score( ["Кейс ее ."], ["кейс её !"], ["другие слова"], metrics=["errant"]) res_gold = { "CASE_Precision": 0.0, # 100.0 "CASE_Recall": 0.0, "CASE_F1": 0.0, "YO_Precision": 100.0, "YO_Recall": 0.0, "YO_F1": 0.0, "SPELL_Precision": 0.0, "SPELL_Recall": 100.0, "SPELL_F1": 0.0, "PUNCT_Precision": 0.0, "PUNCT_Recall": 0.0, "PUNCT_F1": 0.0, } self.assertEqual(res, res_gold) def test_sent13(self): res = self.scorer_with_errant.score( ["бог угрозами транслируемыми моск"], ["Бог угрозами, транслируемыми мозг."], ["Бог угрозами, транслируемыми Моску."], metrics=["errant"]) res_gold = { "CASE_Precision": 50.0, "CASE_Recall": 100.0, "CASE_F1": 66.67, "YO_Precision": 100.0, "YO_Recall": 100.0, "YO_F1": 100.0, "SPELL_Precision": 0.0, "SPELL_Recall": 0.0, "SPELL_F1": 0.0, "PUNCT_Precision": 100.0, "PUNCT_Recall": 100.0, "PUNCT_F1": 100.0, } self.assertEqual(res, res_gold) if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_pipeline.py ================================================ import unittest from sage.utils import DatasetsAvailable from sage.pipeline import AugmentationPipeline, PipelineConfig class TestAugmentationPipeline(unittest.TestCase): def setUp(self): self.pipeline_config = PipelineConfig() self.pipeline_config.set_char_params(min_aug=1, max_aug=3, unit_prob=0.2) self.pipeline_config.set_word_params(min_aug=1, max_aug=3, unit_prob=0.3) self.pipeline_config.set_sbsc_params(lang="rus", dataset_name_or_path=DatasetsAvailable.MedSpellchecker.name, dataset_split="test") self.sample_text = "Заметьте, не я это предложил!" def test_char_augmentation(self): pipeline = AugmentationPipeline(config=self.pipeline_config, shuffle=False) pipeline.add_char_augmenter() pipeline.set_order([0]) # Only CharAugmenter augmented_text = pipeline.augment(self.sample_text) self.assertNotEqual(self.sample_text, augmented_text) print(f"Char Augmentation Result: {augmented_text}") def test_word_augmentation(self): pipeline = AugmentationPipeline(config=self.pipeline_config, shuffle=True) pipeline.add_word_augmenter() pipeline.set_order([0]) # Only WordAugmenter augmented_text = pipeline.augment(self.sample_text) self.assertNotEqual(self.sample_text, augmented_text) print(f"Word Augmentation Result: {augmented_text}") def test_sbsc_augmentation(self): pipeline = AugmentationPipeline(config=self.pipeline_config, shuffle=False) pipeline.add_sbsc_augmenter() pipeline.set_order([0]) # Only SBSCorruptor augmented_text = pipeline.augment(self.sample_text) self.assertNotEqual(self.sample_text, augmented_text) print(f"SBSC Augmentation Result: {augmented_text}") def test_all_augmentations(self): pipeline = AugmentationPipeline(config=self.pipeline_config, shuffle=True) pipeline.add_char_augmenter() pipeline.add_word_augmenter() pipeline.add_sbsc_augmenter() pipeline.set_order([0, 1, 2]) # All augmenters augmented_text = pipeline.augment(self.sample_text) self.assertNotEqual(self.sample_text, augmented_text) print(f"All Augmentations Result: {augmented_text}") if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_ruspelleval.py ================================================ import unittest from sage.utils import load_available_dataset_from_hf, DatasetsAvailable from sage.evaluation.ruspelleval import evaluation class TestRuSpellEval(unittest.TestCase): def test_ruspelleval_edge_cases(self): ruspell_sources, ruspell_corrections = load_available_dataset_from_hf( DatasetsAvailable.RUSpellRU.name, for_labeler=True, split="test") coincide_metrics = evaluation(ruspell_sources, ruspell_corrections, ruspell_corrections) self.assertEqual(coincide_metrics, {"Precision": 100.0, "Recall": 100.0, "F1": 100.0}) loose_metrics = evaluation( ruspell_sources, ruspell_corrections, ruspell_sources[:-1] + [ruspell_corrections[-1]]) self.assertEqual(loose_metrics, {"Precision": 100.0, "Recall": 0.05, "F1": 0.1}) def test_ruspelleval_general_case(self): source = " ".join(["фотка", "классная", "кстате", "хоть", "и", "не", "по", "теме"]) correction = " ".join(["фотка", "классная", "кстати", "хоть", "и", "не", "по", "теме"]) answer = " ".join(["фотка", "классная", "кстати", "хотя", "не", "по", "теме"]) case1_metrics = evaluation([source], [correction], [answer]) self.assertEqual(case1_metrics, {"Precision": 50.0, "Recall": 100.0, "F1": 66.67}) if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_utils.py ================================================ import unittest from sage.utils import load_available_dataset_from_hf, DatasetsAvailable datasets_available = [dataset.name for dataset in DatasetsAvailable] DF2LENS = { "MultidomainGold": {"train": 3569, "test": 4106}, "RUSpellRU": {"train": 2000, "test": 2008}, "MedSpellchecker": {"test": 1054}, "GitHubTypoCorpusRu": {"test": 868}, "MultidomainGold_orth": {"train": 3571, "test": 4107}, "RUSpellRU_orth": {"train": 2000, "test": 2008}, "MedSpellchecker_orth": {"test": 1054}, "GitHubTypoCorpusRu_orth": {"test": 868}, } class TestUtils(unittest.TestCase): def test_load_datasets_from_hf(self): for dataset_name in datasets_available: splits = list(DF2LENS[dataset_name].keys()) for split in splits: dataset_split = load_available_dataset_from_hf(dataset_name, split=split, for_labeler=False) self.assertEqual(len(dataset_split), DF2LENS[dataset_name][split]) sources, corrections = load_available_dataset_from_hf(dataset_name, split=split, for_labeler=True) self.assertEqual(len(sources), DF2LENS[dataset_name][split]) self.assertEqual(len(corrections), DF2LENS[dataset_name][split]) dataset = load_available_dataset_from_hf(dataset_name, for_labeler=False) self.assertEqual(len(dataset), sum(DF2LENS[dataset_name].values())) if __name__ == '__main__': unittest.main() ================================================ FILE: tests/tests.py ================================================ import re import math import logging import unittest import string import numpy as np from sage.spelling_corruption.sbsc.model import Model from sage.spelling_corruption.sbsc.labeler import process_mistypings logger = logging.getLogger("tests") logger.setLevel(logging.INFO) SEED = 42 seed = np.random.default_rng(SEED) LANG = "rus" class AugmenterTests(unittest.TestCase): pattern = string.punctuation.replace("-", "") def test_labeler_empty(self): logger.info("\nTesting labeler empty string...\n") expected_global_stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [], "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, } expected_global_cm = {} expected_mistyping_cnt = [] actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([], []) self.assertEqual(expected_global_stats, actual_global_stats) self.assertEqual(expected_global_cm, actual_global_cm) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt) def test_labeler_insertion_in_beginning(self): logger.info("\nTesting labeler insertion in beginning...\n") src1 = "I" * 100 + "Пожалуй. Редирект только нужно оставить. 12:31, 14 января 2006 (UTC)" corr1 = "Пожалуй. Редирект только нужно оставить. 12:31, 14 января 2006 (UTC)" l = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) expected_global_stats = { "insertion": { "abs": list(range(100)), "rel": [] }, "deletion": { "abs": [], "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, } expected_global_cm = {} expected_mistyping_cnt = [100] for k, v in expected_global_stats.items(): expected_global_stats[k]["abs"] = sorted(v["abs"]) expected_global_stats[k]["rel"] = sorted([elem / l for elem in v["abs"]]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1], [corr1]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_labeler_deletion_in_beginning(self): logger.info("\nTesting labeler deletion in beginning...\n") src1 = "Пожалуй. Редирект только нужно оставить. 12:31, 14 января 2006 (UTC)" corr1 = "I" * 100 + "Пожалуй. Редирект только нужно оставить. 12:31, 14 января 2006 (UTC)" l = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) expected_global_stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [0] * 100, "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, } expected_global_cm = {} expected_mistyping_cnt = [100] for k, v in expected_global_stats.items(): expected_global_stats[k]["abs"] = sorted(v["abs"]) expected_global_stats[k]["rel"] = sorted([elem / l for elem in v["abs"]]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1], [corr1]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_labeler_single(self): logger.info("\nTesting labeler single example...\n") src1 = " ".join(["Броть с собой в рест оран воо руженную автоматами и жэгипйрованню в бронежилетыгруппу силов ой", "поддержки оперативники не стали, чтобы не пувгать посетителей. А когдба с е цназовцы врвались в", "\"\"Золотое кольцо\"\", им оставалось только поднять с пол своих коллег и положить нг а их места", "охранников подпреда."]) corr1 = " ".join(["Брать с собой в ресторан вооруженную автоматами и экипированную в бронежилеты группу силовой", "поддержки оперативники не стали, чтобы не пугать посетителей. А когда спецназовцы ворвались в", "\"\"Золотое кольцо\"\", им оставалось только поднять с пола своих коллег и положить на их места", "охранников полпреда."]) l = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) expected_global_stats = { "insertion": { "abs": [52, 138, 162, 264], "rel": [] }, "deletion": { "abs": [64, 179, 238], "rel": [] }, "substitution": { "abs": [2, 54, 57, 166, 290], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [79], "rel": [] }, "extra_separator": { "abs": [20, 29, 91, 168, 265], "rel": [] }, } expected_global_cm = { "а": {"о": 1}, "к": {"г": 1}, "и": {"й": 1}, "п": {" ": 1}, "л": {"д": 1}, } expected_mistyping_cnt = [18] for k, v in expected_global_stats.items(): expected_global_stats[k]["abs"] = sorted(v["abs"]) expected_global_stats[k]["rel"] = sorted([elem / l for elem in v["abs"]]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1], [corr1]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_labeler_batch(self): logger.info("\nTesting labeler batch...\n") src1 = " ".join( ["Броть с собой в рест оран воо руженную автоматами и жэгипйрованню в бронежилетыгруппу силов ой", "поддержки оперативники не стали, чтобы не пувгать посетителей. А когдба с е цназовцы врвались в", "\"\"Золотое кольцо\"\", им оставалось только поднять с пол своих коллег и положить нг а их места", "охранников подпреда."]) corr1 = " ".join( ["Брать с собой в ресторан вооруженную автоматами и экипированную в бронежилеты группу силовой", "поддержки оперативники не стали, чтобы не пугать посетителей. А когда спецназовцы ворвались в", "\"\"Золотое кольцо\"\", им оставалось только поднять с пола своих коллег и положить на их места", "охранников полпреда."]) l1 = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) src2 = " ".join(["Десять с пглвиной лет назад, когда в током же ежегодном послании сказаь:", "«Создание в России чсвободн ого обществ а свободных люднй – это с амая главшншая наша задача»"]) corr2 = " ".join(["Десять с половиной лет назад, когда в таком же ежегодном послании сказал:", "«Создание в России свободного общества свободных людей – это самая главная наша задача»"]) l2 = len(re.sub(r"[{}]".format(self.pattern), "", src2.lower())) expected_global_stats = { "insertion": { "abs": [52, 138, 162, 264], "rel": [] }, "deletion": { "abs": [64, 179, 238], "rel": [] }, "substitution": { "abs": [2, 54, 57, 166, 290], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [79], "rel": [] }, "extra_separator": { "abs": [20, 29, 91, 168, 265], "rel": [] }, } expected_global_stats_2 = { "insertion": { "abs": [90, 146, 148], "rel": [] }, "deletion": { "abs": [12], "rel": [] }, "substitution": { "abs": [10, 37, 69, 126], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [98, 110, 136], "rel": [] }, } expected_global_cm = { "а": {"о": 2}, "к": {"г": 1}, "и": {"й": 1}, "п": {" ": 1}, "л": {"д": 1, "ь": 1}, "о": {"г": 1}, "е": {"н": 1} } expected_mistyping_cnt = [18, 11] for k in expected_global_stats.keys(): expected_global_stats[k]["rel"] = [elem / l1 for elem in expected_global_stats[k]["abs"]] expected_global_stats[k]["abs"].extend(expected_global_stats_2[k]["abs"]) expected_global_stats[k]["rel"].extend([elem / l2 for elem in expected_global_stats_2[k]["abs"]]) expected_global_stats[k]["abs"] = sorted(expected_global_stats[k]["abs"]) expected_global_stats[k]["rel"] = sorted(expected_global_stats[k]["rel"]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1, src2], [corr1, corr2]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_mistypings(self): test_functions = [] def register_function(foo): test_functions.append(foo) @register_function def test_insertion(skip_mode): logger.info("\nTesting insertion with skip mode {}...\n".format(skip_mode)) k = 10 sentence = "." * k typos_count = [2 * k] stats = {"insertion": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) m.transform(sentence) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = [elem if elem < pos else elem + 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_deletion(skip_mode): logger.info("\nTesting deletion with skip mode {}...\n".format(skip_mode)) sentence1 = " D ".join(self.pattern) sentence2 = " . ".join(self.pattern) typos_count = [2 * len(sentence1)] stats = {"deletion": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1) actual_transform2 = m.transform(sentence2) expected_sentence1 = sentence1.replace("D", "") self.assertEqual( actual_transform1, expected_sentence1, "{} vs {}".format(actual_transform1, expected_sentence1)) self.assertEqual(actual_transform2, sentence2, "{} vs {}".format(actual_transform2, sentence2)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = [elem if elem < pos else elem - 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_substitution(skip_mode): logger.info("\nTesting substitution with skip mode {}...\n".format(skip_mode)) conditions = string.punctuation + string.digits + string.ascii_letters sentence1 = " ".join(conditions) sentence2 = " Ф ".join(conditions) sentence3 = " ф ".join(conditions) typos_count = [2 * len(sentence1)] stats = {"substitution": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {"ф": {"ъ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1) actual_transform2 = m.transform(sentence2) actual_transform3 = m.transform(sentence3) expected_transform2 = sentence2.replace("Ф", "Ъ") expected_transform3 = sentence3.replace("ф", "ъ") self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual( actual_transform2, expected_transform2, "{} vs {}".format(actual_transform2, expected_transform2)) self.assertEqual( actual_transform3, expected_transform3, "{} vs {}".format(actual_transform3, expected_transform3)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = pre_positions + [pos] self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_transposition(skip_mode): logger.info("\nTesting transposition with skip mode {}...\n".format(skip_mode)) sentence1 = "d".join(string.punctuation) sentence2 = "dd".join(string.punctuation) sentence3 = " abb ".join(string.punctuation) d = {elem: pos for pos, elem in enumerate(sentence3) if elem in string.punctuation} typos_count = [2 * len(sentence3)] stats = {"transposition": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1) actual_transform2 = m.transform(sentence2) actual_transform3 = m.transform(sentence3) d_transform = {elem: pos for pos, elem in enumerate(actual_transform3) if elem in string.punctuation} self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual(actual_transform2, sentence2, "{} vs {}".format(actual_transform2, sentence2)) self.assertDictEqual(d, d_transform, "dicts are not the same") count = 0 for i in range(len(actual_transform3) - 1): if actual_transform3[i] == actual_transform3[i + 1]: count += 1 break self.assertEqual(count, 0, "count = {}".format(count)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) self.assertFalse(pos + 1 in pre_positions, "{} in {}".format(pos + 1, pre_positions)) expected_post_positions = pre_positions + [pos, pos + 1] self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_extra_separator(skip_mode): logger.info("\nTesting extra separator with skip mode {}...\n".format(skip_mode)) sentence1 = " d ".join(string.punctuation) sentence2 = " dd ".join(string.punctuation) typos_count = [2 * len(sentence2)] stats = {"extra_separator": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1) actual_transform2 = m.transform(sentence2) expected_transform2 = sentence2.replace("dd", "d d") self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual( actual_transform2, expected_transform2, "{} vs {}".format(actual_transform2, expected_transform2)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) self.assertNotEqual(pos, 0) expected_post_positions = [elem if elem < pos else elem + 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_missing_separator(skip_mode): logger.info("\nTesting missing separator with skip mode {}...\n".format(skip_mode)) sentence1 = "d" * 20 sentence2 = " ".join(list(sentence1)) typos_count = [2 * len(sentence2)] stats = {"missing_separator": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1) actual_transform2 = m.transform(sentence2) self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual(actual_transform2, sentence1, "{} vs {}".format(actual_transform2, sentence1)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = [elem if elem < pos else elem - 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) for test_function in test_functions: test_function(skip_mode=True) test_function(skip_mode=False) def test_transform_empty_string(self): logger.info("\nTesting transform empty string...\n") sentence = "" typos_count = [6] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(high=0.1)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(high=0.1)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(high=0.1)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(high=0.1)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(high=0.1)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) result = m.transform(sentence) self.assertEqual(result, "") def test_transform_single(self): logger.info("\nTesting transform single bucket...\n") sentence = "Проверка соответствия или несоответствия текста поиска regex." typos_count = [1] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(low=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.1, high=0.2)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.3, high=0.4)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.5, high=0.6)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.6, high=0.7)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] error2interval = {} for k, v in stats.items(): error2interval[k] = np.digitize(v["rel"][0], bins) for _ in range(len(stats) * 3): result = m.transform(sentence) global_stats, global_cm, mistypings_cnt = process_mistypings([result], [sentence]) for k, v in global_stats.items(): for pos in v["rel"]: actual_interval = np.digitize(pos, bins) expected_interval = error2interval[k] self.assertLessEqual(actual_interval, expected_interval + 1) self.assertGreaterEqual(actual_interval, expected_interval - 1) def test_transform_short_string(self): logger.info("\nTesting transform short string...\n") typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(low=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.1, high=0.2)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.3, high=0.4)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.5, high=0.6)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.6, high=0.7)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] error2interval = {} for k, v in stats.items(): error2interval[k] = np.digitize(v["rel"][0], bins) for i in range(15): sentence = "a" * i result = m.transform(sentence) global_stats, global_cm, mistypings_cnt = process_mistypings([result], [sentence]) if sum(mistypings_cnt) == 0: self.assertEqual(sentence, result) else: self.assertNotEqual(sentence, result) def test_factorization_scheme(self): logger.info("\nTesting factorization scheme...\n") typos_count = [1] stats = { "missing_separator": { "abs": [1], "rel": [0.1] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) for sample_length in range(10, 1000): res = [] for interval_idx in range(1, 11): left, right = m._bins[interval_idx - 1], m._bins[interval_idx] most_left = math.ceil(sample_length * left) most_right = math.ceil(sample_length * right) for elem in range(most_left, most_right): self.assertGreaterEqual(elem / sample_length, left) self.assertLessEqual(elem / sample_length, right) res.append(elem) self.assertEqual(res, list(range(sample_length))) def test_wrong_stats_format(self): logger.info("\nTesting empty stats...\n") # Wrong lang code typos_count = [1] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(low=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.1, high=0.2)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.3, high=0.4)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.5, high=0.6)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.6, high=0.7)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": "Ru" } self.assertRaises(ValueError, Model, **params) # All empty params = { "typos_count": [], "stats": {}, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats and cm empty params = { "typos_count": [1], "stats": {}, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is empty params = { "typos_count": [1], "stats": { "substitution": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats are actually empty stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [], "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, } params = { "typos_count": [1], "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Typos counts are empty params = { "typos_count": [], "stats": { "substitution": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is not empty params = { "typos_count": [], "stats": {}, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats are not empty params = { "typos_count": [], "stats": { "deletion": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is legally empty params = { "typos_count": [1], "stats": { "deletion": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } model = Model(**params) # Stats are wrong params = { "typos_count": [1], "stats": { "deletion": { "abs": [-1, 2, 3], "rel": [0.1, 0.9, 0.5] }, "insertion": { "abs": [1, 2, 3], "rel": [-0.1, 0.9, 0.5] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Counts are wrong params = { "typos_count": [-1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats are wrong (key) stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [], "rel": [] }, "sbstitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, } params = { "typos_count": [1, 2, 3], "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is wrong 1 params = { "typos_count": [1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {"фвыа": {"a": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is wrong 2 params = { "typos_count": [1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {"a": {"asdf": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is wrong 3 params = { "typos_count": [1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {"a": {"b": -1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) def test_transform_several_strings(self): logger.info("\nTesting transform several strings...\n") sentence1 = "" sentence2 = "абвгд" sentence3 = "Проверка соответствия или несоответствия текста поиска regex." sentence4 = " ".join(["Брать с собой в ресторан вооруженную автоматами и экипированную в бронежилеты группу силовой", "поддержки оперативники не стали, чтобы не пугать посетителей. А когда спецназовцы ворвались в", "\"\"Золотое кольцо\"\", им оставалось только поднять с пола своих коллег и положить на их места", "охранников полпреда."]) sentences = [sentence1, sentence2, sentence3, sentence4] typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) results = [] for sentence in sentences: results.append(m.transform(sentence)) self.assertEqual(results[0], "") global_stats, global_cm, mistypings_cnt = process_mistypings(results[1:], sentences[1:]) bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] error2interval = {} for k, v in stats.items(): error2interval[k] = np.digitize(v["rel"][0], bins) for k, v in global_stats.items(): for pos in v["rel"]: actual_interval = np.digitize(pos, bins) expected_interval = error2interval[k] self.assertLessEqual(actual_interval, expected_interval + 1) self.assertGreaterEqual(actual_interval, expected_interval - 1) if __name__ == '__main__': unittest.main() ================================================ FILE: tests/tests_english.py ================================================ import re import math import logging import unittest import string import numpy as np from sage.spelling_corruption.sbsc.labeler import process_mistypings from sage.spelling_corruption.sbsc.model import Model logger = logging.getLogger("tests") logger.setLevel(logging.INFO) SEED = 102 LANG = "eng" seed = np.random.default_rng(SEED) class AugmenterTests(unittest.TestCase): pattern = string.punctuation.replace("-", "") def test_labeler_empty(self): logger.info("\nTesting labeler empty string...\n") expected_global_stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [], "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, } expected_global_cm = {} expected_mistyping_cnt = [] actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([], []) self.assertEqual(expected_global_stats, actual_global_stats) self.assertEqual(expected_global_cm, actual_global_cm) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt) def test_labeler_insertion_in_beginning(self): logger.info("\nTesting labeler insertion in beginning...\n") src1 = "I" * 100 + "In our Acadamy we are not allowed to smoke ." corr1 = "In our Acadamy we are not allowed to smoke ." l = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) expected_global_stats = { "insertion": { "abs": list(range(100)), "rel": [] }, "deletion": { "abs": [], "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, } expected_global_cm = {} expected_mistyping_cnt = [100] for k, v in expected_global_stats.items(): expected_global_stats[k]["abs"] = sorted(v["abs"]) expected_global_stats[k]["rel"] = sorted([elem / l for elem in v["abs"]]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1], [corr1]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_labeler_deletion_in_beginning(self): logger.info("\nTesting labeler deletion in beginning...\n") src1 = "In our Acadamy we are not allowed to smoke ." corr1 = "I" * 100 + "In our Acadamy we are not allowed to smoke ." l = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) expected_global_stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [0] * 100, "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, } expected_global_cm = {} expected_mistyping_cnt = [100] for k, v in expected_global_stats.items(): expected_global_stats[k]["abs"] = sorted(v["abs"]) expected_global_stats[k]["rel"] = sorted([elem / l for elem in v["abs"]]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1], [corr1]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_labeler_single(self): logger.info("\nTesting labeler single example...\n") src1 = " ".join(["Th e queuses are not the only prolem . If you go by car there is", "the problem of parkengf , fi you goby bus th ere are also queues", "ase you have to carry a lot ofs carrer bag carrier bsg s during your", "journy and yo u wo n't always be lucky sxnough to fi nd a seat ."]) corr1 = " ".join(["The queues are not the only problem . If you go by car there is", "the problem of parking , if you go by bus there are also queues", "and you have to carry a lot of carrier bag carrier bags during your", "journey and you wo n't always be lucky enough to find a seat ."]) l = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) expected_global_stats = { "insertion": { "abs": [9, 86, 158, 235], "rel": [] }, "deletion": { "abs": [33, 164, 202], "rel": [] }, "substitution": { "abs": [83, 129, 130, 180, 236], "rel": [] }, "transposition": { "abs": [89], "rel": [] }, "missing_separator": { "abs": [98], "rel": [] }, "extra_separator": { "abs": [2, 107, 182, 210, 248], "rel": [] }, } expected_global_cm = { "i": {"e": 1}, "n": {"s": 1}, "d": {"e": 1}, "a": {"s": 1}, "e": {"x": 1}, } expected_mistyping_cnt = [19] for k, v in expected_global_stats.items(): expected_global_stats[k]["abs"] = sorted(v["abs"]) expected_global_stats[k]["rel"] = sorted([elem / l for elem in v["abs"]]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1], [corr1]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_labeler_batch(self): logger.info("\nTesting labeler batch...\n") src1 = " ".join(["Th e queuses are not the only prolem . If you go by car there is", "the problem of parkengf , fi you goby bus th ere are also queues", "ase you have to carry a lot ofs carrer bag carrier bsg s during your", "journy and yo u wo n't always be lucky sxnough to fi nd a seat ."]) corr1 = " ".join(["The queues are not the only problem . If you go by car there is", "the problem of parking , if you go by bus there are also queues", "and you have to carry a lot of carrier bag carrier bags during your", "journey and you wo n't always be lucky enough to find a seat ."]) l1 = len(re.sub(r"[{}]".format(self.pattern), "", src1.lower())) src2 = " ".join(["I readlly wa nted to gs to the Engeish school but I have stopped", "cecause te lessons wes re too expene sives ."]) corr2 = " ".join(["I really wanted to go to the English school but I have stopped", "because the lessons were too expensive ."]) l2 = len(re.sub(r"[{}]".format(self.pattern), "", src2.lower())) expected_global_stats = { "insertion": { "abs": [9, 86, 158, 235], "rel": [] }, "deletion": { "abs": [33, 164, 202], "rel": [] }, "substitution": { "abs": [83, 129, 130, 180, 236], "rel": [] }, "transposition": { "abs": [89], "rel": [] }, "missing_separator": { "abs": [98], "rel": [] }, "extra_separator": { "abs": [2, 107, 182, 210, 248], "rel": [] }, } expected_global_stats_2 = { "insertion": { "abs": [5, 86, 100, 106], "rel": [] }, "deletion": { "abs": [74], "rel": [] }, "substitution": { "abs": [22, 34, 65], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, "extra_separator": { "abs": [12, 87, 101], "rel": [] }, } expected_global_cm = { "i": {"e": 1}, "n": {"s": 1}, "d": {"e": 1}, "a": {"s": 1}, "e": {"x": 1}, "o": {"s": 1}, "l": {"e": 1}, "b": {"c": 1}, } expected_mistyping_cnt = [19, 11] for k in expected_global_stats.keys(): expected_global_stats[k]["rel"] = [elem / l1 for elem in expected_global_stats[k]["abs"]] expected_global_stats[k]["abs"].extend(expected_global_stats_2[k]["abs"]) expected_global_stats[k]["rel"].extend([elem / l2 for elem in expected_global_stats_2[k]["abs"]]) expected_global_stats[k]["abs"] = sorted(expected_global_stats[k]["abs"]) expected_global_stats[k]["rel"] = sorted(expected_global_stats[k]["rel"]) expected_mistyping_cnt = sorted(expected_mistyping_cnt) actual_global_stats, actual_global_cm, actual_mistypings_cnt = process_mistypings([src1, src2], [corr1, corr2]) for k, v in actual_global_stats.items(): actual_global_stats[k]["abs"] = sorted(v["abs"]) actual_global_stats[k]["rel"] = sorted(v["rel"]) actual_mistypings_cnt = sorted(actual_mistypings_cnt) self.assertEqual(expected_global_stats, actual_global_stats, "expected stats: {} \nactual stats: {}".format(expected_global_stats, actual_global_stats)) self.assertEqual(expected_mistyping_cnt, actual_mistypings_cnt, "expected counts: {} \nactual counts: {}".format(expected_mistyping_cnt, actual_mistypings_cnt)) self.assertEqual(expected_global_cm, actual_global_cm, "expected cm: {} \nactual cm: {}".format(expected_global_cm, actual_global_cm)) def test_mistypings(self): test_functions = [] def register_function(foo): test_functions.append(foo) @register_function def test_insertion(skip_mode): logger.info("\nTesting insertion with skip mode {}...\n".format(skip_mode)) k = 10 sentence = "." * k typos_count = [2 * k] stats = {"insertion": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) m.transform(sentence, seed) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = [elem if elem < pos else elem + 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_deletion(skip_mode): logger.info("\nTesting deletion with skip mode {}...\n".format(skip_mode)) sentence1 = " D ".join(self.pattern) sentence2 = " . ".join(self.pattern) typos_count = [2 * len(sentence1)] stats = {"deletion": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1, seed) actual_transform2 = m.transform(sentence2, seed) expected_sentence1 = sentence1.replace("D", "") self.assertEqual( actual_transform1, expected_sentence1, "{} vs {}".format(actual_transform1, expected_sentence1)) self.assertEqual(actual_transform2, sentence2, "{} vs {}".format(actual_transform2, sentence2)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = [elem if elem < pos else elem - 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_substitution(skip_mode): logger.info("\nTesting substitution with skip mode {}...\n".format(skip_mode)) conditions = string.punctuation + string.digits + "абвгдеёжзийклмнопрстуфхцчшщъыьэюя" sentence1 = " ".join(conditions) sentence2 = " L ".join(conditions) sentence3 = " l ".join(conditions) typos_count = [2 * len(sentence1)] stats = {"substitution": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {"l": {"x": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1, seed) actual_transform2 = m.transform(sentence2, seed) actual_transform3 = m.transform(sentence3, seed) expected_transform2 = sentence2.replace("L", "X") expected_transform3 = sentence3.replace("l", "x") self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual( actual_transform2, expected_transform2, "{} vs {}".format(actual_transform2, expected_transform2)) self.assertEqual( actual_transform3, expected_transform3, "{} vs {}".format(actual_transform3, expected_transform3)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = pre_positions + [pos] self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_transposition(skip_mode): logger.info("\nTesting transposition with skip mode {}...\n".format(skip_mode)) sentence1 = "d".join(string.punctuation) sentence2 = "dd".join(string.punctuation) sentence3 = " abb ".join(string.punctuation) d = {elem: pos for pos, elem in enumerate(sentence3) if elem in string.punctuation} typos_count = [2 * len(sentence3)] stats = {"transposition": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1, seed) actual_transform2 = m.transform(sentence2, seed) actual_transform3 = m.transform(sentence3, seed) d_transform = {elem: pos for pos, elem in enumerate(actual_transform3) if elem in string.punctuation} self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual(actual_transform2, sentence2, "{} vs {}".format(actual_transform2, sentence2)) self.assertDictEqual(d, d_transform, "dicts are not the same") count = 0 for i in range(len(actual_transform3) - 1): if actual_transform3[i] == actual_transform3[i + 1]: count += 1 break self.assertEqual(count, 0, "count = {}".format(count)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) self.assertFalse(pos + 1 in pre_positions, "{} in {}".format(pos + 1, pre_positions)) expected_post_positions = pre_positions + [pos, pos + 1] self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_extra_separator(skip_mode): logger.info("\nTesting extra separator with skip mode {}...\n".format(skip_mode)) sentence1 = " d ".join(string.punctuation) sentence2 = " dd ".join(string.punctuation) typos_count = [2 * len(sentence2)] stats = {"extra_separator": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1, seed) actual_transform2 = m.transform(sentence2, seed) expected_transform2 = sentence2.replace("dd", "d d") self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual( actual_transform2, expected_transform2, "{} vs {}".format(actual_transform2, expected_transform2)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) self.assertNotEqual(pos, 0) expected_post_positions = [elem if elem < pos else elem + 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) @register_function def test_missing_separator(skip_mode): logger.info("\nTesting missing separator with skip mode {}...\n".format(skip_mode)) sentence1 = "d" * 20 sentence2 = " ".join(list(sentence1)) typos_count = [2 * len(sentence2)] stats = {"missing_separator": {"abs": list(range(10)), "rel": [0.05 + 0.1 * i for i in range(10)]}} params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": skip_mode, "debug_mode": True, "lang": LANG, } m = Model(**params) actual_transform1 = m.transform(sentence1, seed) actual_transform2 = m.transform(sentence2, seed) self.assertEqual(actual_transform1, sentence1, "{} vs {}".format(actual_transform1, sentence1)) self.assertEqual(actual_transform2, sentence1, "{} vs {}".format(actual_transform2, sentence1)) for pos, pre_positions, post_positions in \ zip(m.stats["pos"], m.stats["used_positions_pre"], m.stats["used_positions_after"]): self.assertFalse(pos in pre_positions, "{} in {}".format(pos, pre_positions)) expected_post_positions = [elem if elem < pos else elem - 1 for elem in pre_positions] expected_post_positions.append(pos) self.assertEqual( sorted(expected_post_positions), sorted(post_positions), "{} vs {}".format(expected_post_positions, post_positions) ) for test_function in test_functions: test_function(skip_mode=True) test_function(skip_mode=False) def test_transform_empty_string(self): logger.info("\nTesting transform empty string...\n") sentence = "" typos_count = [6] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(high=0.1)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(high=0.1)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(high=0.1)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(high=0.1)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(high=0.1)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) result = m.transform(sentence) self.assertEqual(result, "") def test_transform_single(self): logger.info("\nTesting transform single bucket...\n") sentence = "We can either rain check or we can make plans." typos_count = [1] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(low=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.1, high=0.2)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.3, high=0.4)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.5, high=0.6)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.6, high=0.7)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] error2interval = {} for k, v in stats.items(): error2interval[k] = np.digitize(v["rel"][0], bins) for _ in range(len(stats) * 3): result = m.transform(sentence) global_stats, global_cm, mistypings_cnt = process_mistypings([result], [sentence]) for k, v in global_stats.items(): for pos in v["rel"]: actual_interval = np.digitize(pos, bins) expected_interval = error2interval[k] self.assertLessEqual(actual_interval, expected_interval + 1) self.assertGreaterEqual(actual_interval, expected_interval - 1) def test_transform_short_string(self): logger.info("\nTesting transform short string...\n") typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(low=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.1, high=0.2)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.3, high=0.4)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.5, high=0.6)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.6, high=0.7)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] error2interval = {} for k, v in stats.items(): error2interval[k] = np.digitize(v["rel"][0], bins) for i in range(15): sentence = "f" * i result = m.transform(sentence) global_stats, global_cm, mistypings_cnt = process_mistypings([result], [sentence]) if sum(mistypings_cnt) == 0: self.assertEqual(sentence, result) else: self.assertNotEqual(sentence, result) def test_factorization_scheme(self): logger.info("\nTesting factorization scheme...\n") typos_count = [1] stats = { "missing_separator": { "abs": [1], "rel": [0.1] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) for sample_length in range(10, 1000): res = [] for interval_idx in range(1, 11): left, right = m._bins[interval_idx - 1], m._bins[interval_idx] most_left = math.ceil(sample_length * left) most_right = math.ceil(sample_length * right) for elem in range(most_left, most_right): self.assertGreaterEqual(elem / sample_length, left) self.assertLessEqual(elem / sample_length, right) res.append(elem) self.assertEqual(res, list(range(sample_length))) def test_wrong_stats_format(self): logger.info("\nTesting empty stats...\n") # Wrong lang code typos_count = [1] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(low=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.1, high=0.2)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.3, high=0.4)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.5, high=0.6)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.6, high=0.7)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": "Brit" } self.assertRaises(ValueError, Model, **params) # All empty params = { "typos_count": [], "stats": {}, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats and cm empty params = { "typos_count": [1], "stats": {}, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is empty params = { "typos_count": [1], "stats": { "substitution": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats are actually empty stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [], "rel": [] }, "substitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, } params = { "typos_count": [1], "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Typos counts are empty params = { "typos_count": [], "stats": { "substitution": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is not empty params = { "typos_count": [], "stats": {}, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats are not empty params = { "typos_count": [], "stats": { "deletion": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is legally empty params = { "typos_count": [1], "stats": { "deletion": { "abs": [1], "rel": [0.1] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } model = Model(**params) # Stats are wrong params = { "typos_count": [1], "stats": { "deletion": { "abs": [-1, 2, 3], "rel": [0.1, 0.9, 0.5] }, "insertion": { "abs": [1, 2, 3], "rel": [-0.1, 0.9, 0.5] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Counts are wrong params = { "typos_count": [-1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # Stats are wrong (key) stats = { "insertion": { "abs": [], "rel": [] }, "deletion": { "abs": [], "rel": [] }, "sbstitution": { "abs": [], "rel": [] }, "transposition": { "abs": [], "rel": [] }, "extra_separator": { "abs": [], "rel": [] }, "missing_separator": { "abs": [], "rel": [] }, } params = { "typos_count": [1, 2, 3], "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is wrong 1 params = { "typos_count": [1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {"adff": {"s": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is wrong 2 params = { "typos_count": [1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {"f": {"asdf": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) # CM is wrong 3 params = { "typos_count": [1, 2, 3], "stats": { "missing_separator": { "abs": [1, 2, 3], "rel": [0.1, 0.9, 0.5] }, }, "confusion_matrix": {"a": {"b": -1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } self.assertRaises(ValueError, Model, **params) def test_transform_several_strings(self): logger.info("\nTesting transform several strings...\n") sentence1 = "" sentence2 = "adfdf" sentence3 = "We can either rain check or we can make plans." sentence4 = " ".join(["Th e queuses are not the only prolem . If you go by car there is", "the problem of parkengf , fi you goby bus th ere are also queues", "ase you have to carry a lot ofs carrer bag carrier bsg s during your", "journy and yo u wo n't always be lucky sxnough to fi nd a seat ."]) sentences = [sentence1, sentence2, sentence3, sentence4] typos_count = [3] stats = { "insertion": { "abs": [0], "rel": [np.random.uniform(high=0.1)] }, "deletion": { "abs": [2], "rel": [np.random.uniform(low=0.2, high=0.3)] }, "substitution": { "abs": [1], "rel": [np.random.uniform(low=0.4, high=0.5)] }, "transposition": { "abs": [3], "rel": [np.random.uniform(low=0.6, high=0.7)] }, "extra_separator": { "abs": [4], "rel": [np.random.uniform(low=0.8, high=0.9)] }, "missing_separator": { "abs": [5], "rel": [np.random.uniform(low=0.9, high=1.)] }, } params = { "typos_count": typos_count, "stats": stats, "confusion_matrix": {" ": {" ": 1}}, "skip_if_position_not_found": True, "debug_mode": True, "lang": LANG, } m = Model(**params) results = [] for sentence in sentences: results.append(m.transform(sentence)) self.assertEqual(results[0], "") global_stats, global_cm, mistypings_cnt = process_mistypings(results[1:], sentences[1:]) bins = [0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.] error2interval = {} for k, v in stats.items(): error2interval[k] = np.digitize(v["rel"][0], bins) for k, v in global_stats.items(): for pos in v["rel"]: actual_interval = np.digitize(pos, bins) expected_interval = error2interval[k] self.assertLessEqual(actual_interval, expected_interval + 1) self.assertGreaterEqual(actual_interval, expected_interval - 1) if __name__ == '__main__': unittest.main()